diff --git "a/part-3/\347\256\241\347\220\206 Elasticsearch\351\233\206\347\276\244.pdf" "b/part-3/\347\256\241\347\220\206 Elasticsearch\351\233\206\347\276\244.pdf" new file mode 100644 index 0000000..afa26f5 Binary files /dev/null and "b/part-3/\347\256\241\347\220\206 Elasticsearch\351\233\206\347\276\244.pdf" differ diff --git "a/part-3/\347\256\241\347\220\206Elasticsearch\351\233\206\347\276\244.pdf" "b/part-3/\347\256\241\347\220\206Elasticsearch\351\233\206\347\276\244.pdf" deleted file mode 100755 index 3926d2c..0000000 Binary files "a/part-3/\347\256\241\347\220\206Elasticsearch\351\233\206\347\276\244.pdf" and /dev/null differ diff --git "a/part-4/14.3\347\224\250\346\234\272\345\231\250\345\255\246\344\271\240\345\256\236\347\216\260\346\227\266\345\272\217\346\225\260\346\215\256\347\232\204\345\274\202\345\270\270\346\243\200\346\265\213-\344\270\212/server_metrics/server_metrics.tar.gz" "b/part-4/14.3\347\224\250\346\234\272\345\231\250\345\255\246\344\271\240\345\256\236\347\216\260\346\227\266\345\272\217\346\225\260\346\215\256\347\232\204\345\274\202\345\270\270\346\243\200\346\265\213-\344\270\212/server_metrics/server_metrics.tar.gz" deleted file mode 100644 index 2f05cea..0000000 Binary files "a/part-4/14.3\347\224\250\346\234\272\345\231\250\345\255\246\344\271\240\345\256\236\347\216\260\346\227\266\345\272\217\346\225\260\346\215\256\347\232\204\345\274\202\345\270\270\346\243\200\346\265\213-\344\270\212/server_metrics/server_metrics.tar.gz" and /dev/null differ diff --git "a/part-4/14.5-\347\224\250ELK\350\277\233\350\241\214\346\227\245\345\277\227\347\256\241\347\220\206/README.md" "b/part-4/14.5-\347\224\250ELK\350\277\233\350\241\214\346\227\245\345\277\227\347\256\241\347\220\206/README.md" new file mode 100644 index 0000000..fa44be5 --- /dev/null +++ "b/part-4/14.5-\347\224\250ELK\350\277\233\350\241\214\346\227\245\345\277\227\347\256\241\347\220\206/README.md" @@ -0,0 +1,17 @@ +# 用 ELK 来做日志管理 +## 课程demo +``` +./filebeat modules list +./filebeat modules enable system +./filebeat modules enable elasticsearch + + +## 进 modules.d 编辑相应的文件,修改log路径 + +./filebeat setup –dashboards + +./filebeat export template | more + +./filebeat -e + +``` \ No newline at end of file diff --git "a/part-4/14.6-\347\224\250Canvas\345\201\232\346\225\260\346\215\256\346\274\224\347\244\272/README.md" "b/part-4/14.6-\347\224\250Canvas\345\201\232\346\225\260\346\215\256\346\274\224\347\244\272/README.md" new file mode 100644 index 0000000..acad90e --- /dev/null +++ "b/part-4/14.6-\347\224\250Canvas\345\201\232\346\225\260\346\215\256\346\274\224\347\244\272/README.md" @@ -0,0 +1,12 @@ +POST elasticoffee/_search +{ + "size": 0, + "aggs": { + "by": { + "terms": { + "field": "beverage.keyword", + "size": 10 + } + } + } +} \ No newline at end of file diff --git "a/part-4/\345\210\251\347\224\250ELK\345\201\232\345\244\247\346\225\260\346\215\256\345\210\206\346\236\220 .pdf" "b/part-4/\345\210\251\347\224\250ELK\345\201\232\345\244\247\346\225\260\346\215\256\345\210\206\346\236\220 .pdf" new file mode 100644 index 0000000..8a9454b Binary files /dev/null and "b/part-4/\345\210\251\347\224\250ELK\345\201\232\345\244\247\346\225\260\346\215\256\345\210\206\346\236\220 .pdf" differ diff --git "a/part-5/\345\244\207\346\210\230Elastic\350\256\244\350\257\201/backup_restore/README.md" b/part-5/backup_restore/README.md similarity index 52% rename from "part-5/\345\244\207\346\210\230Elastic\350\256\244\350\257\201/backup_restore/README.md" rename to part-5/backup_restore/README.md index b8d82ce..f844b2a 100644 --- "a/part-5/\345\244\207\346\210\230Elastic\350\256\244\350\257\201/backup_restore/README.md" +++ b/part-5/backup_restore/README.md @@ -1,6 +1,11 @@ # 集群Backup & Restore ## 课程demo ``` + +#在 elasticsearch.yml 加入相关的配置 +path.repo: ["/Users/yiruan/geektime/mount/my_backup"] + +#创建一个 repositoty PUT /_snapshot/my_fs_backup { "type": "fs", @@ -10,18 +15,44 @@ PUT /_snapshot/my_fs_backup } } +# 创建一个snapshot +PUT /_snapshot/my_fs_backup/snapshot_1?wait_for_completion=true -PUT /_snapshot/my_fs_backup/snapshot_5?wait_for_completion=true -DELETE /_snapshot/my_fs_backup/snapshot_2 +DELETE test +PUT test/_doc/1 +{ + "key":"value1" +} + + +#指定索引创建快照 +PUT /_snapshot/my_fs_backup/snapshot_2?wait_for_completion=true +{ + "indices": "test", + "ignore_unavailable": true, + "include_global_state": false, + "metadata": { + "taken_by": "yiming", + "taken_because": "backup before upgrading" + } +} +#查看所有的快照 GET /_snapshot/my_fs_backup/_all -GET /_snapshot/my_fs_backup/_current +# 删除快照 +DELETE /_snapshot/my_fs_backup/snapshot_2 POST /_snapshot/my_fs_backup/snapshot_1/_restore { - "indices": "testxxx", + +} + +# 指定索引进行 restore +POST /_snapshot/my_fs_backup/snapshot_1/_restore +{ + "indices": "test", "index_settings": { "index.number_of_replicas": 5 }, @@ -30,21 +61,11 @@ POST /_snapshot/my_fs_backup/snapshot_1/_restore ] } -GET testxxx/_settings +DELETE test -DELETE testxxx +# 删除快照 +DELETE /_snapshot/my_fs_backup -GET testxxx -PUT /_snapshot/my_fs_backup/snapshot_3?wait_for_completion=true -{ - "indices": "testxxx", - "ignore_unavailable": true, - "include_global_state": false, - "metadata": { - "taken_by": "yiming", - "taken_because": "backup before upgrading" - } -} ``` \ No newline at end of file diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/README.md" b/part-5/java-es/README.md similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/README.md" rename to part-5/java-es/README.md diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/.gitignore" b/part-5/java-es/sample-springboot-elasticsearch/.idea/.gitignore similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/.gitignore" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/.gitignore diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/codeStyles/codeStyleConfig.xml" b/part-5/java-es/sample-springboot-elasticsearch/.idea/codeStyles/codeStyleConfig.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/codeStyles/codeStyleConfig.xml" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/codeStyles/codeStyleConfig.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/compiler.xml" b/part-5/java-es/sample-springboot-elasticsearch/.idea/compiler.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/compiler.xml" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/compiler.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/encodings.xml" b/part-5/java-es/sample-springboot-elasticsearch/.idea/encodings.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/encodings.xml" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/encodings.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/google-java-format.xml" b/part-5/java-es/sample-springboot-elasticsearch/.idea/google-java-format.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/google-java-format.xml" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/google-java-format.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/misc.xml" b/part-5/java-es/sample-springboot-elasticsearch/.idea/misc.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/misc.xml" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/misc.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/vcs.xml" b/part-5/java-es/sample-springboot-elasticsearch/.idea/vcs.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/vcs.xml" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/vcs.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/workspace.xml" b/part-5/java-es/sample-springboot-elasticsearch/.idea/workspace.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/.idea/workspace.xml" rename to part-5/java-es/sample-springboot-elasticsearch/.idea/workspace.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/docker-compose/6.2.2/docker-compose.yaml" b/part-5/java-es/sample-springboot-elasticsearch/docker-compose/6.2.2/docker-compose.yaml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/docker-compose/6.2.2/docker-compose.yaml" rename to part-5/java-es/sample-springboot-elasticsearch/docker-compose/6.2.2/docker-compose.yaml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/docker-compose/7.1.0/docker-compose.yaml" b/part-5/java-es/sample-springboot-elasticsearch/docker-compose/7.1.0/docker-compose.yaml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/docker-compose/7.1.0/docker-compose.yaml" rename to part-5/java-es/sample-springboot-elasticsearch/docker-compose/7.1.0/docker-compose.yaml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/pom.xml" b/part-5/java-es/sample-springboot-elasticsearch/pom.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/pom.xml" rename to part-5/java-es/sample-springboot-elasticsearch/pom.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/readme.md" b/part-5/java-es/sample-springboot-elasticsearch/readme.md similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/readme.md" rename to part-5/java-es/sample-springboot-elasticsearch/readme.md diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/Constants.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/Constants.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/Constants.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/Constants.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleApplication.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleApplication.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleApplication.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleApplication.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleDataSet.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleDataSet.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleDataSet.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/SampleDataSet.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/controller/EmployeeController.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/controller/EmployeeController.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/controller/EmployeeController.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/controller/EmployeeController.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Department.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Department.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Department.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Department.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Employee.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Employee.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Employee.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Employee.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Organization.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Organization.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Organization.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/model/Organization.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/repository/EmployeeRepository.java" b/part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/repository/EmployeeRepository.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/repository/EmployeeRepository.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/java/geektime/demo/services/elasticsearch/repository/EmployeeRepository.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/resources/application.yml" b/part-5/java-es/sample-springboot-elasticsearch/src/main/resources/application.yml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/main/resources/application.yml" rename to part-5/java-es/sample-springboot-elasticsearch/src/main/resources/application.yml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/test/java/geektime/demo/services/elasticsearch/EmployeeRepositoryTest.java" b/part-5/java-es/sample-springboot-elasticsearch/src/test/java/geektime/demo/services/elasticsearch/EmployeeRepositoryTest.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/test/java/geektime/demo/services/elasticsearch/EmployeeRepositoryTest.java" rename to part-5/java-es/sample-springboot-elasticsearch/src/test/java/geektime/demo/services/elasticsearch/EmployeeRepositoryTest.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/test/resources/application.yml" b/part-5/java-es/sample-springboot-elasticsearch/src/test/resources/application.yml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/sample-springboot-elasticsearch/src/test/resources/application.yml" rename to part-5/java-es/sample-springboot-elasticsearch/src/test/resources/application.yml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.classpath" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.classpath similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.classpath" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.classpath diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.factorypath" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.factorypath similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.factorypath" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.factorypath diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.gitignore" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.gitignore similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.gitignore" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.gitignore diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.project" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.project similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.project" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.project diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.core.resources.prefs" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.core.resources.prefs similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.core.resources.prefs" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.core.resources.prefs diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.apt.core.prefs" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.apt.core.prefs similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.apt.core.prefs" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.apt.core.prefs diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.core.prefs" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.core.prefs similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.core.prefs" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.jdt.core.prefs diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.m2e.core.prefs" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.m2e.core.prefs similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.m2e.core.prefs" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/.settings/org.eclipse.m2e.core.prefs diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/Dockerfile" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/Dockerfile similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/Dockerfile" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/Dockerfile diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw.cmd" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw.cmd similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw.cmd" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/mvnw.cmd diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/pom.xml" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/pom.xml similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/pom.xml" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/pom.xml diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/Application.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/Application.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/Application.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/Application.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/config/ElasticsearchConfig.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/config/ElasticsearchConfig.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/config/ElasticsearchConfig.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/config/ElasticsearchConfig.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/controller/ProfileController.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/controller/ProfileController.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/controller/ProfileController.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/controller/ProfileController.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/document/ProfileDocument.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/document/ProfileDocument.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/document/ProfileDocument.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/document/ProfileDocument.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/model/Technologies.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/model/Technologies.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/model/Technologies.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/model/Technologies.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/service/ProfileService.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/service/ProfileService.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/service/ProfileService.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/service/ProfileService.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/util/Constant.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/util/Constant.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/util/Constant.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/java/com/geektime/elasticsearch/demo/util/Constant.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/resources/application.properties" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/resources/application.properties similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/resources/application.properties" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/main/resources/application.properties diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/test/java/com/geektime/elasticsearch/demo/ApplicationTests.java" b/part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/test/java/com/geektime/elasticsearch/demo/ApplicationTests.java similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/test/java/com/geektime/elasticsearch/demo/ApplicationTests.java" rename to part-5/java-es/spring-boot-java-highlevel-rest-client-elasticsearch/src/test/java/com/geektime/elasticsearch/demo/ApplicationTests.java diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/README.md" "b/part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/README.md" similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/README.md" rename to "part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/README.md" diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/.python-version" "b/part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/.python-version" similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/.python-version" rename to "part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/.python-version" diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/README.md" "b/part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/README.md" similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/README.md" rename to "part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/README.md" diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/ingest_tmdb_to_appserarch.py" "b/part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/ingest_tmdb_to_appserarch.py" similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/ingest_tmdb_to_appserarch.py" rename to "part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/ingest_tmdb_to_appserarch.py" diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/requirements.txt" "b/part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/requirements.txt" similarity index 100% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/requirements.txt" rename to "part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/requirements.txt" diff --git "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/tmdb.json" "b/part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/tmdb.json" similarity index 99% rename from "part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/tmdb.json" rename to "part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/tmdb.json" index 56bcc29..1785677 100644 --- "a/part-5/\345\256\236\346\210\2301-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/tmdb.json" +++ "b/part-5/part-1-\347\224\265\345\275\261\346\220\234\347\264\242\346\234\215\345\212\241/movie-search/tmdb.json" @@ -1 +1 @@ -{"93837": {"poster_path": "/mfMndRWFbzXbTx0g3rHUXFAxyOh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the FBI hires her to go undercover at a college sorority, Molly Morris (Miley Cyrus) must transform herself from a tough, streetwise private investigator to a refined, sophisticated university girl to help protect the daughter of a one-time Mobster. With several suspects on her list, Molly unexpectedly discovers that not everyone is who they appear to be, including herself.", "video": false, "id": 93837, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "So Undercover", "tagline": "Meet the FBI's new secret weapon", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1766094", "adult": false, "backdrop_path": "/o4Tt60z94Hbgk8adeZG9WE4S2im.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}], "release_date": "2012-01-01", "popularity": 0.345124796829192, "original_title": "So Undercover", "budget": 0, "cast": [{"name": "Miley Cyrus", "character": "Molly", "id": 76594, "credit_id": "52fe49419251416c750c21c9", "cast_id": 10, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 0}, {"name": "Joshua Bowman", "character": "Nicholas", "id": 139835, "credit_id": "52fe49419251416c750c21cd", "cast_id": 11, "profile_path": "/FOSRcKOJqCZzpFhBCzlEphp5F.jpg", "order": 1}, {"name": "Eloise Mumford", "character": "Sasha", "id": 222130, "credit_id": "52fe49419251416c750c21d1", "cast_id": 12, "profile_path": "/6yT9OjHcnG55iGjq7XFvd2qpYT2.jpg", "order": 2}, {"name": "Jeremy Piven", "character": "Armon", "id": 12799, "credit_id": "52fe49419251416c750c21d5", "cast_id": 13, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 3}, {"name": "Autumn Reeser", "character": "Bizzy", "id": 74607, "credit_id": "52fe49419251416c750c21d9", "cast_id": 14, "profile_path": "/vZlZQkQzQ0PSCnQT77vqEFnYsoO.jpg", "order": 4}, {"name": "Alexis Knapp", "character": "Taylor", "id": 999790, "credit_id": "52fe49419251416c750c21dd", "cast_id": 15, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 5}, {"name": "Matthew Settle", "character": "Professor Talloway", "id": 33286, "credit_id": "52fe49419251416c750c21e1", "cast_id": 16, "profile_path": "/neODd3vTVEb7TXOWEZC44ZZu1yk.jpg", "order": 6}, {"name": "Megan Park", "character": "Cotton", "id": 55615, "credit_id": "52fe49419251416c750c21e5", "cast_id": 17, "profile_path": "/AjIaQKbjMgYcJxalCBM4MGREss0.jpg", "order": 7}, {"name": "Mike O'Malley", "character": "Sam", "id": 87192, "credit_id": "52fe49419251416c750c21e9", "cast_id": 18, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 8}, {"name": "Kelly Osbourne", "character": "Becky", "id": 178425, "credit_id": "52fe49419251416c750c21ed", "cast_id": 19, "profile_path": "/ub2UobCm9Fe4PYWgerPQkdXMSQA.jpg", "order": 9}, {"name": "Lauren McKnight", "character": "Alex", "id": 560298, "credit_id": "52fe49419251416c750c21f1", "cast_id": 20, "profile_path": null, "order": 10}], "directors": [{"name": "Tom Vaughan", "department": "Directing", "job": "Director", "credit_id": "52fe49419251416c750c2195", "profile_path": "/opDMR3lConDBNSiVmqt4h6TMFBF.jpg", "id": 56717}], "vote_average": 5.9, "runtime": 94}, "8193": {"poster_path": "/s0yuDUKiAJNl5XkO9OT4aFwnA3I.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46118097, "overview": "A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.", "video": false, "id": 8193, "genres": [{"id": 35, "name": "Comedy"}], "title": "Napoleon Dynamite", "tagline": "He's out to prove he's got nothing to prove.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0374900", "adult": false, "backdrop_path": "/Ac1DJFbYXWANxO59l1uabUcYQT0.jpg", "production_companies": [{"name": "Access Films", "id": 2339}, {"name": "Napoleon Pictures Limited", "id": 2340}, {"name": "Carnival Films", "id": 6196}], "release_date": "2004-06-11", "popularity": 1.05771531941715, "original_title": "Napoleon Dynamite", "budget": 400000, "cast": [{"name": "Jon Heder", "character": "Napoleon Dynamite", "id": 53926, "credit_id": "52fe4494c3a36847f809e21d", "cast_id": 2, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 0}, {"name": "Aaron Ruell", "character": "Kip Dynamite", "id": 53927, "credit_id": "52fe4494c3a36847f809e221", "cast_id": 3, "profile_path": "/8YM46p3eUBOSqkFRkRu7Tp0ZooW.jpg", "order": 1}, {"name": "Jon Gries", "character": "Uncle Rico", "id": 9629, "credit_id": "52fe4494c3a36847f809e225", "cast_id": 4, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 2}, {"name": "Efren Ramirez", "character": "Pedro Sanchez", "id": 20190, "credit_id": "52fe4494c3a36847f809e229", "cast_id": 5, "profile_path": "/6VqjTlLm469PDyNbATyqyuSvIw0.jpg", "order": 3}, {"name": "Shondrella Avery", "character": "LaFawnduh", "id": 53928, "credit_id": "52fe4494c3a36847f809e22d", "cast_id": 6, "profile_path": "/tTRyVWKBCmZR0Eq3XQHMG682kUJ.jpg", "order": 4}, {"name": "Haylie Duff", "character": "Summer", "id": 53929, "credit_id": "52fe4494c3a36847f809e231", "cast_id": 7, "profile_path": "/6ZNv9nQKD50nuED7MTKECzdx48G.jpg", "order": 5}, {"name": "Tina Majorino", "character": "Deb", "id": 53930, "credit_id": "52fe4494c3a36847f809e235", "cast_id": 8, "profile_path": "/kGzCUaPddOm84cRlExLKOvZEoqP.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Rex", "id": 5727, "credit_id": "52fe4494c3a36847f809e239", "cast_id": 9, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Sandy Martin", "character": "Grandma", "id": 53931, "credit_id": "52fe4494c3a36847f809e23d", "cast_id": 10, "profile_path": "/WfdT2V1DxUvoBlgUzeCVq340IH.jpg", "order": 8}, {"name": "Trevor Snarr", "character": "Don", "id": 53932, "credit_id": "52fe4494c3a36847f809e241", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Emily Dunn", "character": "Trisha", "id": 53933, "credit_id": "52fe4494c3a36847f809e245", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Ellen Dubin", "character": "Ilene", "id": 53934, "credit_id": "52fe4494c3a36847f809e249", "cast_id": 13, "profile_path": "/nyOs1itoxJxF2PN6fSQy00rCT0f.jpg", "order": 11}], "directors": [{"name": "Jared Hess", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a36847f809e219", "profile_path": "/sQsIDQEpPl1ZAUcK6nqRSj4RSZ9.jpg", "id": 53925}], "vote_average": 6.5, "runtime": 82}, "8195": {"poster_path": "/UoFUXemMYGKuCN01Y111JlPjjr.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41610884, "overview": "A briefcase with undisclosed contents -- sought by Irish terrorists and the Russian mob -- makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or ronin, charged with the thorny task of recovering the case. But the team, led by an ex-CIA agent, mistrusts one another. Can they accomplish their mission?", "video": false, "id": 8195, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ronin", "tagline": "Your ally could become your enemy.", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0122690", "adult": false, "backdrop_path": "/6BU1yZnoL1LeC6lKiDFUfXLkcgH.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "United Artists Corporation", "id": 8213}, {"name": "FGM Entertainment", "id": 2347}], "release_date": "1998-09-12", "popularity": 0.942588485027931, "original_title": "Ronin", "budget": 55000000, "cast": [{"name": "Robert De Niro", "character": "Sam", "id": 380, "credit_id": "52fe4494c3a36847f809e317", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Jean Reno", "character": "Vincent", "id": 1003, "credit_id": "52fe4494c3a36847f809e31b", "cast_id": 2, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Natascha McElhone", "character": "Deirdre", "id": 11317, "credit_id": "52fe4494c3a36847f809e31f", "cast_id": 3, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Gregor", "id": 1640, "credit_id": "52fe4494c3a36847f809e323", "cast_id": 4, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Sean Bean", "character": "Spence", "id": 48, "credit_id": "52fe4494c3a36847f809e327", "cast_id": 5, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "Seamus O'Rourke", "id": 378, "credit_id": "52fe4494c3a36847f809e32b", "cast_id": 6, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Skipp Sudduth", "character": "Larry", "id": 33658, "credit_id": "52fe4494c3a36847f809e32f", "cast_id": 7, "profile_path": "/yFBPLy1jYDvkXyT5vEBbkRREciz.jpg", "order": 6}, {"name": "Katarina Witt", "character": "Natacha Kirilova", "id": 53955, "credit_id": "52fe4494c3a36847f809e333", "cast_id": 9, "profile_path": "/4YFB0EQxxSGyEe5R1wfFEfRi52D.jpg", "order": 7}, {"name": "Michael Lonsdale", "character": "Jean-Pierre", "id": 2369, "credit_id": "52fe4494c3a36847f809e34f", "cast_id": 15, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 8}, {"name": "Jan T\u0159\u00edska", "character": "Dapper Gent", "id": 61151, "credit_id": "52fe4494c3a36847f809e397", "cast_id": 32, "profile_path": "/pg2DHi92xJwJ8KoQq8UfuNkAdtT.jpg", "order": 9}, {"name": "Ron Perkins", "character": "Man with the Newspaper", "id": 125024, "credit_id": "52fe4494c3a36847f809e353", "cast_id": 18, "profile_path": "/mlmdELJA9yAwIIOh7JhxYW2hJtM.jpg", "order": 10}, {"name": "F\u00e9odor Atkine", "character": "Mikhi", "id": 20285, "credit_id": "52fe4494c3a36847f809e357", "cast_id": 19, "profile_path": "/cf50q5tFxLlp6rlSyG96AlhZrfi.jpg", "order": 11}, {"name": "Bernard Bloch", "character": "Sergi", "id": 32948, "credit_id": "52fe4494c3a36847f809e35b", "cast_id": 20, "profile_path": "/jaHWM6MTjNTiJ6lfiNKPpjkrGuN.jpg", "order": 12}, {"name": "Dominic Gugliametti", "character": "Clown Ice Skater", "id": 1056214, "credit_id": "52fe4494c3a36847f809e35f", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Alan Beckworth", "character": "Clown Ice Skater", "id": 1056215, "credit_id": "52fe4494c3a36847f809e363", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Daniel Breton", "character": "Sergi's Accomplice", "id": 185257, "credit_id": "52fe4494c3a36847f809e367", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Amidou", "character": "Man at Exchange (as Amidou Ben Messaoud)", "id": 20115, "credit_id": "52fe4494c3a36847f809e36b", "cast_id": 24, "profile_path": "/2G97iTsBjF2cudFBjUdQhPuQvCC.jpg", "order": 16}, {"name": "L\u00e9opoldine Serre", "character": "Arles Little Girl", "id": 37189, "credit_id": "52fe4494c3a36847f809e393", "cast_id": 31, "profile_path": "/A3cYx44kfCk1LNMRR7NEkyH6sBy.jpg", "order": 17}], "directors": [{"name": "John Frankenheimer", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a36847f809e339", "profile_path": "/2RvRtSTRoRgkNJOOJoxJpTp6Gak.jpg", "id": 13776}], "vote_average": 6.5, "runtime": 122}, "5": {"poster_path": "/zbwxBgGO9wtauX8dDfG16ZYZdn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4300000, "overview": "It's Ted the Bellhop's first night on the job...and the hotel's very unusual guests are about to place him in some outrageous predicaments. It seems that this evening's room service is serving up one unbelievable happening after another.", "video": false, "id": 5, "genres": [{"id": 35, "name": "Comedy"}], "title": "Four Rooms", "tagline": "Twelve outrageous guests. Four scandalous requests. And one lone bellhop, in his first day on the job, who's in for the wildest New year's Eve of his life.", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113101", "adult": false, "backdrop_path": "/3EqYpbGCE9S5GddU2K4cYzP5UmI.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}], "release_date": "1995-12-25", "popularity": 0.666914647537022, "original_title": "Four Rooms", "budget": 4000000, "cast": [{"name": "Quentin Tarantino", "character": "Chester Rush", "id": 138, "credit_id": "52fe420dc3a36847f80001a7", "cast_id": 38, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 0}, {"name": "Antonio Banderas", "character": "Man", "id": 3131, "credit_id": "52fe420dc3a36847f800018b", "cast_id": 31, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 1}, {"name": "Jennifer Beals", "character": "Angela", "id": 3130, "credit_id": "52fe420dc3a36847f8000183", "cast_id": 29, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 2}, {"name": "Sammi Davis", "character": "Jezebel", "id": 3122, "credit_id": "52fe420dc3a36847f8000167", "cast_id": 22, "profile_path": "/1h6J7f0AZBGtn1kmfoipQVFZBaQ.jpg", "order": 4}, {"name": "Amanda de Cadenet", "character": "Diana", "id": 3123, "credit_id": "52fe420dc3a36847f800016b", "cast_id": 23, "profile_path": "/m6poxt6GFglku6yregZH7NxElET.jpg", "order": 5}, {"name": "Valeria Golino", "character": "Athena", "id": 3124, "credit_id": "52fe420dc3a36847f800016f", "cast_id": 24, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 8}, {"name": "Lili Taylor", "character": "Raven", "id": 3127, "credit_id": "52fe420dc3a36847f800017b", "cast_id": 27, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 9}, {"name": "Patricia Vonne", "character": "Corpse", "id": 3133, "credit_id": "52fe420dc3a36847f8000193", "cast_id": 33, "profile_path": "/hQ5YETklKKI8FwTZoDREDYJ0K4I.jpg", "order": 11}, {"name": "Madonna", "character": "Elspeth", "id": 3125, "credit_id": "52fe420dc3a36847f8000173", "cast_id": 25, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 12}, {"name": "Bruce Willis", "character": "Leo", "id": 62, "credit_id": "52fe420dc3a36847f80001bb", "cast_id": 43, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 13}, {"name": "Lawrence Bender", "character": "Long Hair Yuppy Scum", "id": 2545, "credit_id": "52fe420dc3a36847f80001ab", "cast_id": 39, "profile_path": "/5EzlP8qdCYQrhqEYB2MTmY74KFB.jpg", "order": 14}, {"name": "Tim Roth", "character": "Ted the Bellhop", "id": 3129, "credit_id": "52fe420dc3a36847f80001b7", "cast_id": 42, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 14}, {"name": "Ione Skye", "character": "Eva", "id": 3126, "credit_id": "52fe420dc3a36847f8000177", "cast_id": 26, "profile_path": "/qHXZJXqrSNUW4XGXm78K7arMAJp.jpg", "order": 15}, {"name": "Alicia Witt", "character": "Kiva", "id": 3128, "credit_id": "52fe420dc3a36847f800017f", "cast_id": 28, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 16}, {"name": "David Proval", "character": "Siegfried", "id": 2555, "credit_id": "52fe420dc3a36847f8000187", "cast_id": 30, "profile_path": "/ujBzP61tYlwqWpB3oOxknl1XuEg.jpg", "order": 16}, {"name": "Lana McKissack", "character": "Sarah", "id": 3132, "credit_id": "52fe420dc3a36847f800018f", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Marisa Tomei", "character": "Margaret", "id": 3141, "credit_id": "52fe420dc3a36847f80001b3", "cast_id": 41, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 17}, {"name": "Tamlyn Tomita", "character": "Wife", "id": 3134, "credit_id": "52fe420dc3a36847f8000197", "cast_id": 34, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 18}, {"name": "Kathy Griffin", "character": "Betty", "id": 3138, "credit_id": "52fe420dc3a36847f80001af", "cast_id": 40, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 19}, {"name": "Danny Verduzco", "character": "Juancho", "id": 3135, "credit_id": "52fe420dc3a36847f800019b", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Salma Hayek", "character": "TV Dancing Girl", "id": 3136, "credit_id": "52fe420dc3a36847f800019f", "cast_id": 36, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 20}, {"name": "Paul Calderon", "character": "Norman", "id": 3137, "credit_id": "52fe420dc3a36847f80001a3", "cast_id": 37, "profile_path": "/uS3RyQ6QWr5P6bwHDJWc4UeTnvG.jpg", "order": 21}, {"name": "Kimberly Blair", "character": "Hooker", "id": 37336, "credit_id": "52fe420dc3a36847f80001bf", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Marc Lawrence", "character": "Sam the Bellhop", "id": 3140, "credit_id": "52fe420dc3a36847f80001c3", "cast_id": 45, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 23}], "directors": [{"name": "Allison Anders", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f800012d", "profile_path": "/wpD5RgO4vPMilRDxU6eQgWuI3qz.jpg", "id": 3110}, {"name": "Alexandre Rockwell", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f8000133", "profile_path": null, "id": 3111}, {"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f8000139", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}, {"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f800013f", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 6.4, "runtime": 98}, "8202": {"poster_path": "/3rKw2QInyaACZ6wnqSg4nAXgKal.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52000000, "overview": "400 years into the future, disease has wiped out the majority of the world's population, except one walled city, Bregna, ruled by a congress of scientists. When \u00c6on Flux, the top operative in the underground 'Monican' rebellion, is sent on a mission to kill a government leader, she uncovers a world of secrets.", "video": false, "id": 8202, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "\u00c6on Flux", "tagline": "The Perfect World Meets The Perfect Assassin", "vote_count": 216, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402022", "adult": false, "backdrop_path": "/3c7e0IywQOmPKyVRPwNe2uys0MZ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "MTV Films", "id": 746}, {"name": "MTV Productions", "id": 11534}, {"name": "Colossal Pictures", "id": 6041}], "release_date": "2005-12-01", "popularity": 1.05344995975567, "original_title": "\u00c6on Flux", "budget": 62000000, "cast": [{"name": "Charlize Theron", "character": "\u00c6on Flux", "id": 6885, "credit_id": "52fe4495c3a36847f809e68d", "cast_id": 1, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 0}, {"name": "Marton Csokas", "character": "Trevor Goodchild", "id": 20982, "credit_id": "52fe4495c3a36847f809e691", "cast_id": 2, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 1}, {"name": "Jonny Lee Miller", "character": "Oren Goodchild", "id": 9012, "credit_id": "52fe4495c3a36847f809e695", "cast_id": 3, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 2}, {"name": "Sophie Okonedo", "character": "Sithandra", "id": 2598, "credit_id": "52fe4495c3a36847f809e699", "cast_id": 4, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 3}, {"name": "Caroline Chikezie", "character": "Freya", "id": 25448, "credit_id": "52fe4495c3a36847f809e69d", "cast_id": 5, "profile_path": "/qXHS3UhFx2dd6tSuBpPqfSbAy3.jpg", "order": 4}, {"name": "Pete Postlethwaite", "character": "Keeper", "id": 4935, "credit_id": "52fe4495c3a36847f809e6a1", "cast_id": 6, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 5}, {"name": "Yangzom Brauen", "character": "Inari", "id": 54023, "credit_id": "52fe4495c3a36847f809e6a5", "cast_id": 7, "profile_path": "/zkfnDTHu7zU1Qwq2LIktdYTt7k1.jpg", "order": 6}, {"name": "Frances McDormand", "character": "Handler", "id": 3910, "credit_id": "52fe4495c3a36847f809e6a9", "cast_id": 8, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 7}, {"name": "Amelia Warner", "character": "Una Flux", "id": 23496, "credit_id": "52fe4495c3a36847f809e6ad", "cast_id": 9, "profile_path": "/yXhwlM0dnrvtdpGExCCtT5tfvoB.jpg", "order": 8}, {"name": "Nikolai Kinski", "character": "Claudius", "id": 54024, "credit_id": "52fe4495c3a36847f809e6b1", "cast_id": 10, "profile_path": "/3DlkCTEX5iFfWkgAbfUBswwjZKR.jpg", "order": 9}, {"name": "Milton Welsh", "character": "Monican Man", "id": 902, "credit_id": "52fe4495c3a36847f809e6fd", "cast_id": 23, "profile_path": "/n3BYt4bbPey6UwMGRyhlRCaaFkB.jpg", "order": 10}, {"name": "Paterson Joseph", "character": "Giroux", "id": 19868, "credit_id": "52fe4495c3a36847f809e737", "cast_id": 33, "profile_path": "/8UipvAExpG59oYeQ8LZ5xJD4VSq.jpg", "order": 11}, {"name": "Aoibheann O'Hara", "character": "Scientist", "id": 1120509, "credit_id": "52fe4495c3a36847f809e73b", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Thomas Huber", "character": "Scientist", "id": 43170, "credit_id": "52fe4495c3a36847f809e73f", "cast_id": 35, "profile_path": "/4R09DYiilcDylGjTcCCxtgikhHL.jpg", "order": 13}, {"name": "Weijian Liu", "character": "Scientist", "id": 1120510, "credit_id": "52fe4495c3a36847f809e743", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Karyn Kusama", "department": "Directing", "job": "Director", "credit_id": "52fe4495c3a36847f809e6b7", "profile_path": "/6KlEWWO7aZE6MZtExVZKoQ6Ddzs.jpg", "id": 54025}], "vote_average": 5.4, "runtime": 93}, "11": {"poster_path": "/tvSlBzAdRE29bZe5yYWrJ2ds137.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 775398007, "overview": "Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.", "video": false, "id": 11, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode IV - A New Hope", "tagline": "A long time ago in a galaxy far, far away...", "vote_count": 2463, "homepage": "http://www.starwars.com", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076759", "adult": false, "backdrop_path": "/4iJfYYoQzZcONB9hNzg0J0wWyPH.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1977-05-25", "popularity": 4.20012290861386, "original_title": "Star Wars: Episode IV - A New Hope", "budget": 11000000, "cast": [{"name": "Mark Hamill", "character": "Luke Skywalker", "id": 2, "credit_id": "52fe420dc3a36847f8000441", "cast_id": 3, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Han Solo", "id": 3, "credit_id": "52fe420dc3a36847f8000445", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Leia Organa", "id": 4, "credit_id": "52fe420dc3a36847f8000449", "cast_id": 5, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "Peter Cushing", "character": "Grand Moff Tarkin", "id": 5, "credit_id": "52fe420dc3a36847f800044d", "cast_id": 6, "profile_path": "/iFE9Xi5B0eZcNFqvCx78UUzmUfI.jpg", "order": 3}, {"name": "Alec Guinness", "character": "Obi-Wan Kenobi", "id": 12248, "credit_id": "52fe420dc3a36847f8000477", "cast_id": 14, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe420dc3a36847f8000451", "cast_id": 7, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe420dc3a36847f8000455", "cast_id": 8, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 6}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "52fe420dc3a36847f800047b", "cast_id": 15, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 7}, {"name": "David Prowse", "character": "Darth Vader", "id": 24342, "credit_id": "52fe420dc3a36847f800047f", "cast_id": 16, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 8}, {"name": "Phil Brown", "character": "Uncle Owen", "id": 33032, "credit_id": "52fe420dc3a36847f8000487", "cast_id": 18, "profile_path": "/exkyN66HiZWJDmpcOza2hWoswOo.jpg", "order": 9}, {"name": "Shelagh Fraser", "character": "Aunt Beru", "id": 131625, "credit_id": "52fe420dc3a36847f800048b", "cast_id": 19, "profile_path": "/xNfiibBvknHztEnL0g7dcdrxOKq.jpg", "order": 10}, {"name": "Jack Purvis", "character": "Chief Jawa", "id": 132538, "credit_id": "52fe420dc3a36847f800049f", "cast_id": 24, "profile_path": "/tuFTY1jhlEgZm3vM80KdAEvHwNI.jpg", "order": 11}, {"name": "Alex McCrindle", "character": "General Dodonna", "id": 216087, "credit_id": "52fe420dc3a36847f80004a3", "cast_id": 25, "profile_path": "/6Q1m79FMq444Q6VpmdERSqvwxpX.jpg", "order": 12}, {"name": "Eddie Byrne", "character": "General Willard", "id": 69249, "credit_id": "52fe420dc3a36847f80004a7", "cast_id": 26, "profile_path": "/mSwNawI6Ou8m99Y05WjctoTWYUK.jpg", "order": 13}, {"name": "Drewe Henley", "character": "Red Leader (as Drewe Hemley)", "id": 47401, "credit_id": "52fe420dc3a36847f800049b", "cast_id": 23, "profile_path": "/C28FmnpDyhI9BwD6YjagAe1U53.jpg", "order": 14}, {"name": "Denis Lawson", "character": "Red Two (Wedge) (as Dennis Lawson)", "id": 47698, "credit_id": "52fe420dc3a36847f80004ab", "cast_id": 27, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 15}, {"name": "Garrick Hagon", "character": "Red Three (Biggs)", "id": 17356, "credit_id": "52fe420dc3a36847f80004af", "cast_id": 28, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 16}, {"name": "Jack Klaff", "character": "Red Four (John D.)", "id": 162432, "credit_id": "52fe420dc3a36847f80004b3", "cast_id": 29, "profile_path": "/6l21oFayFKyyuBEELJEaj3veo21.jpg", "order": 17}, {"name": "William Hootkins", "character": "Jek Tono Porkins (Red Six)", "id": 663, "credit_id": "52fe420dc3a36847f8000493", "cast_id": 21, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 18}, {"name": "James Earl Jones", "character": "Darth Vader (voice)", "id": 15152, "credit_id": "52fe420dc3a36847f8000483", "cast_id": 17, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 19}, {"name": "Malcolm Tierney", "character": "Lt. Shann Childsen", "id": 166258, "credit_id": "52fe420dc3a36847f8000497", "cast_id": 22, "profile_path": "/fe7Cz6sxTLt9qSQANRpAAaYcPlV.jpg", "order": 21}, {"name": "Angus MacInnes", "character": "Gold Leader (as Angus Mcinnis)", "id": 58475, "credit_id": "52fe420dc3a36847f80004b7", "cast_id": 30, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 22}, {"name": "Jeremy Sinden", "character": "Gold Two", "id": 1212896, "credit_id": "52fe420dc3a36847f80004bb", "cast_id": 31, "profile_path": "/zW7H2n3IE5Ozt0ITffIJbIWpGxU.jpg", "order": 23}, {"name": "Graham Ashley", "character": "Gold Five", "id": 202276, "credit_id": "52fe420dc3a36847f80004bf", "cast_id": 32, "profile_path": "/wp02ruOjX8AiGMrRD8QEBljgnlA.jpg", "order": 24}, {"name": "Don Henderson", "character": "General Taggi", "id": 42570, "credit_id": "52fe420dc3a36847f80004c3", "cast_id": 33, "profile_path": "/qeOAWEiZ4cXddRziyaJQ2Mt5Mpm.jpg", "order": 25}, {"name": "Richard LeParmentier", "character": "General Motti", "id": 12829, "credit_id": "52fe420dc3a36847f80004c7", "cast_id": 34, "profile_path": "/u0xNmE4QAS5EUbn7tG44EfYUkib.jpg", "order": 26}, {"name": "Leslie Schofield", "character": "Commander #1", "id": 79489, "credit_id": "52fe420dc3a36847f80004cb", "cast_id": 35, "profile_path": "/r1WQsrbi1XkbfpORgrWTDNGQCKD.jpg", "order": 27}, {"name": "David Ankrum", "character": "Red Two (voice) (uncredited)", "id": 1216947, "credit_id": "52fe420dc3a36847f80004cf", "cast_id": 36, "profile_path": "/vo6JMA38exMSSbyQ3K0YCBwBrWT.jpg", "order": 28}, {"name": "Mark Austin", "character": "Boba Fett (special edition) (uncredited)", "id": 1271058, "credit_id": "52fe420dc3a36847f80004d3", "cast_id": 37, "profile_path": "/3Zocn38GPVYwWSgVEE3jKJvKyNT.jpg", "order": 29}, {"name": "Scott Beach", "character": "Stormtrooper (voice) (uncredited)", "id": 3044, "credit_id": "52fe420dc3a36847f80004d7", "cast_id": 38, "profile_path": "/gkt4TpoRR75eTddsny3Qvofe6TY.jpg", "order": 30}, {"name": "Lightning Bear", "character": "Stormtrooper (uncredited)", "id": 1271059, "credit_id": "52fe420ec3a36847f80004db", "cast_id": 39, "profile_path": "/RWJgw1QvH1rgIzGTM6QYwRiQRC.jpg", "order": 31}, {"name": "Jon Berg", "character": "Cantina Alien (uncredited)", "id": 1271060, "credit_id": "52fe420ec3a36847f80004df", "cast_id": 40, "profile_path": "/q4IxPRLu82E3ppEw02GeejaNGeJ.jpg", "order": 32}, {"name": "Doug Beswick", "character": "Cantina Alien (uncredited)", "id": 1271061, "credit_id": "52fe420ec3a36847f80004e3", "cast_id": 41, "profile_path": "/iKnyfUrS410O4yQShOAqVTw2SyU.jpg", "order": 33}, {"name": "Paul Blake", "character": "Greedo (uncredited)", "id": 199356, "credit_id": "52fe420ec3a36847f80004e7", "cast_id": 42, "profile_path": "/WSO4C7YdURE1thtj2MPkWSKD6o.jpg", "order": 34}, {"name": "Janice Burchette", "character": "Nabrun Leids (uncredited)", "id": 1271062, "credit_id": "52fe420ec3a36847f80004eb", "cast_id": 43, "profile_path": null, "order": 35}, {"name": "Ted Burnett", "character": "Wuher (uncredited)", "id": 1271063, "credit_id": "52fe420ec3a36847f80004ef", "cast_id": 44, "profile_path": "/A1GOhCu6LH4fg1VlyOT08NjWmJU.jpg", "order": 36}, {"name": "John Chapman", "character": "Drifter (Red 12) (uncredited)", "id": 1271064, "credit_id": "52fe420ec3a36847f80004f3", "cast_id": 45, "profile_path": "/oqqR2ylj8CyjlIaSizHlhQlZ1PV.jpg", "order": 37}, {"name": "Gilda Cohen", "character": "Cantina Patron (uncredited)", "id": 1271065, "credit_id": "52fe420ec3a36847f80004f7", "cast_id": 46, "profile_path": "/uSByRJBieeMpIwg4SeqB8XFCy7x.jpg", "order": 38}, {"name": "Tim Condren", "character": "Stormtrooper (uncredited)", "id": 1178140, "credit_id": "52fe420ec3a36847f80004fb", "cast_id": 47, "profile_path": "/b2LuPeiNkiN7YT0mpJ1O0C2BV58.jpg", "order": 39}, {"name": "Barry Copping", "character": "Wioslea (uncredited)", "id": 186229, "credit_id": "52fe420ec3a36847f80004ff", "cast_id": 48, "profile_path": null, "order": 40}, {"name": "Alfie Curtis", "character": "Dr. Evazan (uncredited)", "id": 1271066, "credit_id": "52fe420ec3a36847f8000503", "cast_id": 49, "profile_path": "/5jKHKbIF1cEWeG2sPAzHScgGW7n.jpg", "order": 41}, {"name": "Robert Davies", "character": "Cantina Patron (uncredited)", "id": 1271067, "credit_id": "52fe420ec3a36847f8000507", "cast_id": 50, "profile_path": null, "order": 42}, {"name": "Maria De Aragon", "character": "Greedo (uncredited)", "id": 104149, "credit_id": "52fe420ec3a36847f800050b", "cast_id": 51, "profile_path": "/rnaslrjV5ui6cKphksSni3K0TVQ.jpg", "order": 43}, {"name": "Robert A. Denham", "character": "Hrchek Kal Fas (uncredited)", "id": 1271068, "credit_id": "52fe420ec3a36847f800050f", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "Frazer Diamond", "character": "Jawa (uncredited)", "id": 1271069, "credit_id": "52fe420ec3a36847f8000513", "cast_id": 53, "profile_path": "/9e3i9TJ0pp5zbUnDljNuvkjhgCW.jpg", "order": 45}, {"name": "Peter Diamond", "character": "Stormtrooper / Tusken Raider / Death Star Trooper / Garouf Lafoe (uncredited)", "id": 53587, "credit_id": "52fe420ec3a36847f8000517", "cast_id": 54, "profile_path": "/rIf04LU2CsdzdvUJghFVVjdWcm6.jpg", "order": 46}, {"name": "Warwick Diamond", "character": "Jawa (uncredited)", "id": 1271070, "credit_id": "52fe420ec3a36847f800051b", "cast_id": 55, "profile_path": "/3E5Ktz0o6k4Xz6iTq2zCVHsxleX.jpg", "order": 47}, {"name": "Sadie Eden", "character": "Garindan (uncredited)", "id": 1271071, "credit_id": "52fe420ec3a36847f800051f", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Kim Falkinburg", "character": "Djas Puhr (uncredited)", "id": 1271072, "credit_id": "52fe420ec3a36847f8000523", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "Harry Fielder", "character": "Death Star Trooper (uncredited)", "id": 202402, "credit_id": "52fe420ec3a36847f8000527", "cast_id": 58, "profile_path": "/tVA1eKmQk3RXMLCuDP0cO5r5txJ.jpg", "order": 50}, {"name": "Ted Gagliano", "character": "Stormtrooper with Binoculars (uncredited)", "id": 1271073, "credit_id": "52fe420ec3a36847f800052b", "cast_id": 59, "profile_path": "/jpfBK5PYsY13c1gey5HdojwWW8i.jpg", "order": 51}, {"name": "Salo Gardner", "character": "Cantina Patron (uncredited)", "id": 1271074, "credit_id": "52fe420ec3a36847f800052f", "cast_id": 60, "profile_path": "/dEDmkjjpqaNcadl2vVwO6osg8Yv.jpg", "order": 52}, {"name": "Steve Gawley", "character": "Death Star Trooper (uncredited)", "id": 1195602, "credit_id": "52fe420ec3a36847f8000533", "cast_id": 61, "profile_path": "/q0XmjHBKRdWsZfMnP3ks30NdzXb.jpg", "order": 53}, {"name": "Barry Gnome", "character": "Kabe (uncredited)", "id": 1271075, "credit_id": "52fe420ec3a36847f8000537", "cast_id": 62, "profile_path": null, "order": 54}, {"name": "Rusty Goffe", "character": "Kabe / Jawa / GONK Droid (uncredited)", "id": 252527, "credit_id": "52fe420ec3a36847f800053b", "cast_id": 63, "profile_path": "/3PE20IWLMKv1r4nIdkLj65ljv28.jpg", "order": 55}, {"name": "Isaac Grand", "character": "Cantina Patron (uncredited)", "id": 1271076, "credit_id": "52fe420ec3a36847f800053f", "cast_id": 64, "profile_path": null, "order": 56}, {"name": "Nelson Hall", "character": "Stormtrooper (special edition) (uncredited)", "id": 1271077, "credit_id": "52fe420ec3a36847f8000543", "cast_id": 65, "profile_path": "/8t1Fx7haF4OYN7ah57FitSeQDLf.jpg", "order": 57}, {"name": "Reg Harding", "character": "Stormtrooper (uncredited)", "id": 1271078, "credit_id": "52fe420ec3a36847f8000547", "cast_id": 66, "profile_path": "/2saprCiNLI7rpGmNSPjEVvlkxXA.jpg", "order": 58}, {"name": "Alan Harris", "character": "Leia's Rebel Escort (uncredited)", "id": 964699, "credit_id": "52fe420ec3a36847f800054b", "cast_id": 67, "profile_path": "/t7bLuzCIGJWn7FRUVoHHQGzijWo.jpg", "order": 59}, {"name": "Frank Henson", "character": "Stormtrooper (uncredited)", "id": 1271079, "credit_id": "52fe420ec3a36847f800054f", "cast_id": 68, "profile_path": "/dFYRMa53HVxrHahfMMgutssxsMP.jpg", "order": 60}, {"name": "Christine Hewett", "character": "Brea Tonnika (uncredited)", "id": 1271080, "credit_id": "52fe420ec3a36847f8000553", "cast_id": 69, "profile_path": "/67ZqL2PGP2o6uLBOOwzZLikwHHp.jpg", "order": 61}, {"name": "Arthur Howell", "character": "Stormtrooper (uncredited)", "id": 1271081, "credit_id": "52fe420ec3a36847f8000557", "cast_id": 70, "profile_path": "/rQU7GbmvonJN8SGjcbusEb9M1aG.jpg", "order": 62}, {"name": "Tommy Ilsley", "character": "Ponda Baba (uncredited)", "id": 1271082, "credit_id": "52fe420ec3a36847f800055b", "cast_id": 71, "profile_path": null, "order": 63}, {"name": "Joe Johnston", "character": "Death Star Trooper (uncredited)", "id": 4945, "credit_id": "52fe420ec3a36847f800055f", "cast_id": 72, "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "order": 64}, {"name": "Annette Jones", "character": "Mosep (uncredited)", "id": 1271083, "credit_id": "52fe420ec3a36847f8000563", "cast_id": 73, "profile_path": null, "order": 65}, {"name": "Linda Jones", "character": "Chall Bekan (uncredited)", "id": 1148750, "credit_id": "52fe420ec3a36847f8000567", "cast_id": 74, "profile_path": null, "order": 66}, {"name": "Joe Kaye", "character": "Solomohal (uncredited)", "id": 201344, "credit_id": "52fe420ec3a36847f800056b", "cast_id": 75, "profile_path": null, "order": 67}, {"name": "Colin Michael Kitchens", "character": "Stormtrooper (voice) (uncredited)", "id": 1271085, "credit_id": "52fe420ec3a36847f800056f", "cast_id": 76, "profile_path": null, "order": 68}, {"name": "Melissa Kurtz", "character": "Jawa (uncredited)", "id": 1271086, "credit_id": "52fe420ec3a36847f8000573", "cast_id": 77, "profile_path": "/8KFIcrGTYoI7twjwerAnQH1eaum.jpg", "order": 69}, {"name": "Tiffany L. Kurtz", "character": "Jawa (uncredited)", "id": 1190780, "credit_id": "52fe420ec3a36847f8000577", "cast_id": 78, "profile_path": "/8ic5gMUYR5MBtv6FxoFTAZK9OEB.jpg", "order": 70}, {"name": "Al Lampert", "character": "Daine Jir (uncredited)", "id": 190453, "credit_id": "52fe420ec3a36847f800057b", "cast_id": 79, "profile_path": "/8YLrP1AQTVtP6G1FJnPsiQOOOO5.jpg", "order": 71}, {"name": "Anthony Lang", "character": "BoShek (uncredited)", "id": 1012562, "credit_id": "52fe420ec3a36847f800057f", "cast_id": 80, "profile_path": "/xdrvGrXLIVw65PTdozxHUPDRgFQ.jpg", "order": 72}, {"name": "Laine Liska", "character": "Muftak / Cantina Band Member (uncredited)", "id": 1271091, "credit_id": "52fe420ec3a36847f8000583", "cast_id": 81, "profile_path": null, "order": 73}, {"name": "Derek Lyons", "character": "Temple Guard / Medal Bearer (uncredited)", "id": 1271092, "credit_id": "52fe420ec3a36847f8000587", "cast_id": 82, "profile_path": "/oO7dJlNLJhYyqdTsoUQAFXp1UQS.jpg", "order": 74}, {"name": "Mahjoub", "character": "Jawa (uncredited)", "id": 1271095, "credit_id": "52fe420ec3a36847f800058b", "cast_id": 83, "profile_path": null, "order": 75}, {"name": "Alf Mangan", "character": "Takeel (uncredited)", "id": 1271096, "credit_id": "52fe420ec3a36847f800058f", "cast_id": 84, "profile_path": "/yZ1jthofTE7NCwcJkGMCSjrFpz6.jpg", "order": 76}, {"name": "Rick McCallum", "character": "Stormtrooper (special edition) (uncredited)", "id": 19801, "credit_id": "52fe420ec3a36847f8000593", "cast_id": 85, "profile_path": "/iEA5hgOu02fKjfrsrxvvW5ub6q1.jpg", "order": 77}, {"name": "Grant McCune", "character": "Death Star Gunner (uncredited)", "id": 1271102, "credit_id": "52fe420ec3a36847f8000597", "cast_id": 86, "profile_path": "/dyYcw0CDPRWZP0upMV0UPdCVTZw.jpg", "order": 78}, {"name": "Geoffrey Moon", "character": "Cantina Patron (uncredited)", "id": 1271104, "credit_id": "52fe420ec3a36847f800059b", "cast_id": 87, "profile_path": "/mmSpFa7i6gJVBxETLHyiMLx54ay.jpg", "order": 79}, {"name": "Mandy Morton", "character": "Swilla Corey (uncredited)", "id": 1271106, "credit_id": "52fe420ec3a36847f800059f", "cast_id": 88, "profile_path": "/2lmVJN1qV5zAYDy4DYwRxvW8nCb.jpg", "order": 80}, {"name": "Lorne Peterson", "character": "Massassi Base Rebel Scout (uncredited)", "id": 1271107, "credit_id": "52fe420ec3a36847f80005a3", "cast_id": 89, "profile_path": "/xCIzR3kH76oNJga9gRNAwxPm2yu.jpg", "order": 81}, {"name": "Marcus Powell", "character": "Rycar Ryjerd (uncredited)", "id": 1183443, "credit_id": "52fe420ec3a36847f80005a7", "cast_id": 90, "profile_path": "/cNIpsCHwTl5CCtzaqVSfNjsHQe5.jpg", "order": 82}, {"name": "Shane Rimmer", "character": "InCom Engineer (uncredited)", "id": 10657, "credit_id": "52fe420ec3a36847f80005ab", "cast_id": 91, "profile_path": "/ctrIOcWLjOB5rocS0vVHEjbS1Sx.jpg", "order": 83}, {"name": "Pam Rose", "character": "Leesub Sirln (uncredited)", "id": 1271116, "credit_id": "52fe420ec3a36847f80005af", "cast_id": 92, "profile_path": "/uaFDw1Ksx9ctyDKhoxTw4aFRRtu.jpg", "order": 84}, {"name": "George Roubicek", "character": "Cmdr. Praji (Imperial Officer #2 on rebel ship) (uncredited)", "id": 110319, "credit_id": "52fe420ec3a36847f80005b3", "cast_id": 93, "profile_path": "/ru7WxtpEOkWADyemk3XlK61v5GS.jpg", "order": 85}, {"name": "Erica Simmons", "character": "Tawss Khaa (uncredited)", "id": 1271121, "credit_id": "52fe420ec3a36847f80005b7", "cast_id": 94, "profile_path": null, "order": 86}, {"name": "Angela Staines", "character": "Senni Tonnika (uncredited)", "id": 1271122, "credit_id": "52fe420ec3a36847f80005bb", "cast_id": 95, "profile_path": "/ydiU1ozqqeWuSXYMEKyLattGUr0.jpg", "order": 87}, {"name": "George Stock", "character": "Cantina Patron (uncredited)", "id": 1271123, "credit_id": "52fe420ec3a36847f80005bf", "cast_id": 96, "profile_path": null, "order": 88}, {"name": "Roy Straite", "character": "Cantina Patron (uncredited)", "id": 1271124, "credit_id": "52fe420ec3a36847f80005c3", "cast_id": 97, "profile_path": "/iTTVUQwq9Jit8BmrDYN0dmZXQjG.jpg", "order": 89}, {"name": "Peter Sturgeon", "character": "Sai'torr Kal Fas (uncredited)", "id": 1271125, "credit_id": "52fe420ec3a36847f80005c7", "cast_id": 98, "profile_path": null, "order": 90}, {"name": "Peter Sumner", "character": "Lt. Pol Treidum (uncredited)", "id": 187398, "credit_id": "52fe420ec3a36847f80005cb", "cast_id": 99, "profile_path": "/3BiflFG5cnHYI1Ehn85PhTyCZaf.jpg", "order": 91}, {"name": "John Sylla", "character": "Cantina Voices (voice) (uncredited)", "id": 1271126, "credit_id": "52fe420ec3a36847f80005cf", "cast_id": 100, "profile_path": "/46ef2FOF35ieIFM14A8F8nch85t.jpg", "order": 92}, {"name": "Tom Sylla", "character": "Massassi Outpost Announcer / Various Voices (voice) (uncredited)", "id": 390158, "credit_id": "52fe420ec3a36847f80005d3", "cast_id": 101, "profile_path": "/7oKTyEfvDwS7zOz3wsMU5z51P4P.jpg", "order": 93}, {"name": "Phil Tippett", "character": "Cantina Alien (uncredited)", "id": 7727, "credit_id": "52fe420ec3a36847f80005d7", "cast_id": 102, "profile_path": "/2uQ0B7fN5cDQk17J1X3pxDSf9y.jpg", "order": 94}, {"name": "Burnell Tucker", "character": "Del Goren (uncredited)", "id": 184980, "credit_id": "52fe420ec3a36847f80005db", "cast_id": 103, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 95}, {"name": "Morgan Upton", "character": "Stormtrooper (voice) (uncredited)", "id": 160947, "credit_id": "52fe420ec3a36847f80005df", "cast_id": 104, "profile_path": "/c6cHfJSxRl6Z9D2BcYNELq9ZwEZ.jpg", "order": 96}, {"name": "Jerry Walter", "character": "Stormtrooper (voice) (uncredited)", "id": 161301, "credit_id": "52fe420ec3a36847f80005e3", "cast_id": 105, "profile_path": "/kxMyDTBi2DpgVnzPgbOJTokpMUy.jpg", "order": 97}, {"name": "Hal Wamsley", "character": "Jawa (uncredited)", "id": 1271127, "credit_id": "52fe420ec3a36847f80005e7", "cast_id": 106, "profile_path": "/4nRNQyY5TyKNpNIUK6Z9JRr3xWw.jpg", "order": 98}, {"name": "Larry Ward", "character": "Greedo (voice) (uncredited)", "id": 159108, "credit_id": "52fe420ec3a36847f80005eb", "cast_id": 107, "profile_path": "/zRqHcr0ySV1IJiDVmpciCokzn3h.jpg", "order": 99}, {"name": "Diana Sadley Way", "character": "Thuku (uncredited)", "id": 1271128, "credit_id": "52fe420ec3a36847f80005ef", "cast_id": 108, "profile_path": null, "order": 100}, {"name": "Harold Weed", "character": "Ketwol / Melas (uncredited)", "id": 1271129, "credit_id": "52fe420ec3a36847f80005f3", "cast_id": 109, "profile_path": "/ysocn4XckZRUqZsUp4qwldLCgZk.jpg", "order": 101}, {"name": "Bill Weston", "character": "Stormtrooper (uncredited)", "id": 24278, "credit_id": "52fe420ec3a36847f80005f7", "cast_id": 110, "profile_path": "/apVNA3SRNIrB6gu88nGTEhPewI2.jpg", "order": 102}, {"name": "Steve 'Spaz' Williams", "character": "Mos Eisley Citizen (special edition) (uncredited)", "id": 60207, "credit_id": "52fe420ec3a36847f80005fb", "cast_id": 111, "profile_path": "/zD0Qyhjjg87fDdEDJbqOFsSMtjm.jpg", "order": 103}, {"name": "Fred Wood", "character": "Cantina Patron (uncredited)", "id": 1271131, "credit_id": "52fe420ec3a36847f80005ff", "cast_id": 112, "profile_path": "/iSUYytTzBokyqKhCw4tvQAL74vn.jpg", "order": 104}, {"name": "Eddie Eddon", "character": "Pello Scrambas", "id": 1452480, "credit_id": "55287b2592514111c600070a", "cast_id": 113, "profile_path": null, "order": 105}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f8000437", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 7.7, "runtime": 121}, "12": {"poster_path": "/zjqInUwldOBa0q07fOyohYCWxWX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 864625978, "overview": "A tale which follows the comedic and eventful journeys of two fish, the fretful Marlin and his young son Nemo, who are separated from each other in the Great Barrier Reef when Nemo is unexpectedly taken from his home and thrust into a fish tank in a dentist's office overlooking Sydney Harbor. Buoyed by the companionship of a friendly but forgetful fish named Dory, the overly cautious Marlin embarks on a dangerous trek and finds himself the unlikely hero of an epic journey to rescue his son.", "video": false, "id": 12, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Finding Nemo", "tagline": "There are 3.7 trillion fish in the ocean, they're looking for one.", "vote_count": 2308, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2hC8HHRUvwRljYKIcQDMyMbLlxz.jpg", "poster_path": "/dzs7PHZnJPCJoNnX03aswviXprM.jpg", "id": 137697, "name": "Finding Nemo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0266543", "adult": false, "backdrop_path": "/n2vIGWw4ezslXjlP0VNxkp9wqwU.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Pixar Animation Studios", "id": 3}], "release_date": "2003-05-30", "popularity": 2.79949840464601, "original_title": "Finding Nemo", "budget": 94000000, "cast": [{"name": "Albert Brooks", "character": "Marlin (voice)", "id": 13, "credit_id": "52fe420ec3a36847f8000679", "cast_id": 8, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 0}, {"name": "Ellen DeGeneres", "character": "Dory (voice)", "id": 14, "credit_id": "52fe420ec3a36847f800067d", "cast_id": 9, "profile_path": "/b6XNecDpyRZQAuBDYTMsW6McFSp.jpg", "order": 1}, {"name": "Alexander Gould", "character": "Nemo (voice)", "id": 12, "credit_id": "52fe420ec3a36847f8000675", "cast_id": 7, "profile_path": "/c4EHOhxzwx7uDBxC8zODvKAEFGX.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Gill (voice)", "id": 5293, "credit_id": "52fe420ec3a36847f8000699", "cast_id": 16, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Brad Garrett", "character": "Bloat (voice)", "id": 18, "credit_id": "52fe420ec3a36847f8000681", "cast_id": 10, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 4}, {"name": "Allison Janney", "character": "Peach (voice)", "id": 19, "credit_id": "52fe420ec3a36847f8000685", "cast_id": 11, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 5}, {"name": "Austin Pendleton", "character": "Gurgle (voice)", "id": 6168, "credit_id": "52fe420ec3a36847f80006c1", "cast_id": 23, "profile_path": "/pxcdhd4oAsnhvUg0BalmiiKJyXg.jpg", "order": 6}, {"name": "Stephen Root", "character": "Bubbles (voice)", "id": 17401, "credit_id": "52fe420ec3a36847f80006c5", "cast_id": 24, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 7}, {"name": "Vicki Lewis", "character": "Deb / Flo (voice)", "id": 14723, "credit_id": "52fe420ec3a36847f80006c9", "cast_id": 25, "profile_path": "/4IYuDOZKW9XxSahF1QsxwU4a0p4.jpg", "order": 8}, {"name": "Joe Ranft", "character": "Jacques (voice)", "id": 7911, "credit_id": "52fe420ec3a36847f80006cd", "cast_id": 26, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 9}, {"name": "Geoffrey Rush", "character": "Nigel (voice)", "id": 118, "credit_id": "52fe420ec3a36847f80006d1", "cast_id": 27, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 10}, {"name": "Andrew Stanton", "character": "Crush (voice)", "id": 7, "credit_id": "52fe420ec3a36847f8000689", "cast_id": 12, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 11}, {"name": "Elizabeth Perkins", "character": "Coral (voice)", "id": 20, "credit_id": "52fe420ec3a36847f800068d", "cast_id": 13, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 12}, {"name": "Nicholas Bird", "character": "Squirt (voice)", "id": 981048, "credit_id": "52fe420ec3a36847f80006d5", "cast_id": 28, "profile_path": "/1LW8FJgEqfa9EoFroYofTquZDx0.jpg", "order": 13}, {"name": "Bob Peterson", "character": "Mr. Ray (voice)", "id": 10, "credit_id": "52fe420ec3a36847f80006d9", "cast_id": 29, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 14}, {"name": "Barry Humphries", "character": "Bruce (voice)", "id": 22, "credit_id": "52fe420ec3a36847f8000691", "cast_id": 14, "profile_path": "/bBXWmZtFbKy6Wzk1fHOCE8j6KfS.jpg", "order": 15}, {"name": "Eric Bana", "character": "Anchor (voice)", "id": 8783, "credit_id": "52fe420ec3a36847f80006e9", "cast_id": 33, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 16}, {"name": "Bill Hunter", "character": "Phillip Sherman (voice)", "id": 23, "credit_id": "52fe420ec3a36847f8000695", "cast_id": 15, "profile_path": "/fDYf8bxLtyy3vnSFX27QBe3mG8d.jpg", "order": 17}, {"name": "Bruce Spence", "character": "Chum (voice)", "id": 27752, "credit_id": "52fe420ec3a36847f80006ed", "cast_id": 34, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 21}, {"name": "LuLu Ebeling", "character": "Darla (voice)", "id": 981049, "credit_id": "52fe420ec3a36847f80006f1", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Jordan Ranft", "character": "Tad (voice)", "id": 1211731, "credit_id": "52fe420ec3a36847f80006f5", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Erica Beck", "character": "Pearl (voice)", "id": 1372790, "credit_id": "5438598cc3a36825ba001f32", "cast_id": 39, "profile_path": "/naleEkxyWI3Ldy4bcEY28zV6kl0.jpg", "order": 24}, {"name": "Erik Per Sullivan", "character": "Sheldon (voice)", "id": 17190, "credit_id": "52fe420ec3a36847f80006f9", "cast_id": 37, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 25}, {"name": "John Ratzenberger", "character": "Fish School (voice)", "id": 7907, "credit_id": "52fe420ec3a36847f80006fd", "cast_id": 38, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 26}], "directors": [{"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000653", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}, {"name": "Lee Unkrich", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000659", "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "id": 8}], "vote_average": 7.2, "runtime": 100}, "13": {"poster_path": "/y3EsNpMFwvpcucLmx4HiiRRhCXV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 677945399, "overview": "A man with a low IQ has accomplished great things in his life and been present during significant historic events - in each case, far exceeding what anyone imagined he could do. Yet, despite all the things he has attained, his one true love eludes him. 'Forrest Gump' is the story of a man who rose above his challenges, and who proved that determination, courage, and love are more important than ability.", "video": false, "id": 13, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Forrest Gump", "tagline": "The world will never be the same, once you've seen it through the eyes of Forrest Gump.", "vote_count": 2635, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109830", "adult": false, "backdrop_path": "/ctOEhQiFIHWkiaYp7b0ibSTe5IL.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1994-06-22", "popularity": 2.82167270569693, "original_title": "Forrest Gump", "budget": 55000000, "cast": [{"name": "Tom Hanks", "character": "Forrest Gump", "id": 31, "credit_id": "52fe420ec3a36847f800074f", "cast_id": 7, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Sally Field", "character": "Mrs. Gump", "id": 35, "credit_id": "52fe420ec3a36847f800075f", "cast_id": 11, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "Robin Wright", "character": "Jenny Curran", "id": 32, "credit_id": "52fe420ec3a36847f8000753", "cast_id": 8, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Mykelti Williamson", "character": "Pvt. Benjamin Buford 'Bubba' Blue", "id": 34, "credit_id": "52fe420ec3a36847f800075b", "cast_id": 10, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 3}, {"name": "Gary Sinise", "character": "Lt. Dan Taylor", "id": 33, "credit_id": "52fe420ec3a36847f8000757", "cast_id": 9, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 4}, {"name": "Michael Conner Humphreys", "character": "Young Forrest Gump", "id": 37821, "credit_id": "540b61f0c3a368799f001e2b", "cast_id": 38, "profile_path": "/vMEHkoxaJ7sn6rFYwfPLw2h6sb5.jpg", "order": 5}, {"name": "Hanna Hall", "character": "Young Jenny Curran", "id": 204997, "credit_id": "52fe420ec3a36847f8000785", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "Haley Joel Osment", "character": "Forrest Gump Jr.", "id": 9640, "credit_id": "52fe420ec3a36847f8000775", "cast_id": 25, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 7}, {"name": "Siobhan Fallon", "character": "School Bus Driver", "id": 6751, "credit_id": "52fe420ec3a36847f8000789", "cast_id": 34, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 8}, {"name": "Afemo Omilami", "character": "Drill Sergeant", "id": 37825, "credit_id": "52fe420ec3a36847f800078d", "cast_id": 35, "profile_path": "/bHluEOsKBKajFbk2cnxESo1nSCY.jpg", "order": 9}, {"name": "Peter Dobson", "character": "Young Elvis Presley", "id": 37822, "credit_id": "5517d886c3a36862ff003646", "cast_id": 105, "profile_path": "/3laM5gryWnG2tfjE2jt0UuPTFlp.jpg", "order": 10}, {"name": "Sonny Shroyer", "character": "College Football Coach", "id": 37823, "credit_id": "5517d8dd9251412c1e001eb4", "cast_id": 106, "profile_path": null, "order": 11}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f800072d", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 7.8, "runtime": 142}, "14": {"poster_path": "/3UBQGKS8c1dxRnDiu5kUK6ej3pP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 356296601, "overview": "Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.", "video": false, "id": 14, "genres": [{"id": 18, "name": "Drama"}], "title": "American Beauty", "tagline": "Look closer.", "vote_count": 782, "homepage": "http://www.dreamworks.com/ab/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0169547", "adult": false, "backdrop_path": "/z5J18ByLeOZ68iORfMXmxeFuwyL.jpg", "production_companies": [{"name": "DreamWorks Pictures", "id": 7293}, {"name": "Jinks/Cohen Company", "id": 2721}], "release_date": "1999-09-14", "popularity": 1.75251246964661, "original_title": "American Beauty", "budget": 15000000, "cast": [{"name": "Kevin Spacey", "character": "Lester Burnham", "id": 1979, "credit_id": "52fe420ec3a36847f80007db", "cast_id": 6, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Annette Bening", "character": "Carolyn Burnham", "id": 516, "credit_id": "52fe420ec3a36847f80007cf", "cast_id": 3, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Thora Birch", "character": "Jane Burnham", "id": 2155, "credit_id": "52fe420ec3a36847f80007d7", "cast_id": 5, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 2}, {"name": "Wes Bentley", "character": "Ricky Fitts", "id": 8210, "credit_id": "52fe420ec3a36847f80007df", "cast_id": 7, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 3}, {"name": "Mena Suvari", "character": "Angela Hayes", "id": 8211, "credit_id": "52fe420ec3a36847f80007e3", "cast_id": 8, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 4}, {"name": "Chris Cooper", "character": "Colonel Frank Fitts", "id": 2955, "credit_id": "52fe420ec3a36847f80007e7", "cast_id": 9, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 5}, {"name": "Scott Bakula", "character": "Jim Olmeyer", "id": 2154, "credit_id": "52fe420ec3a36847f80007d3", "cast_id": 4, "profile_path": "/o0lOdRjvFe0DEjquR1miMnjUUzt.jpg", "order": 6}, {"name": "Peter Gallagher", "character": "Buddy Kane", "id": 8212, "credit_id": "52fe420ec3a36847f80007eb", "cast_id": 10, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 7}, {"name": "Allison Janney", "character": "Barbara Fitts", "id": 19, "credit_id": "52fe420ec3a36847f80007ef", "cast_id": 11, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 8}, {"name": "Sam Robards", "character": "Jim Berkley", "id": 8213, "credit_id": "52fe420ec3a36847f80007f3", "cast_id": 12, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 9}, {"name": "Barry Del Sherman", "character": "Brad Dupree", "id": 8214, "credit_id": "52fe420ec3a36847f80007f7", "cast_id": 13, "profile_path": "/8uUOdG0fTnPYNkSgPpQDhzxSrjw.jpg", "order": 10}, {"name": "Ara Celi", "character": "Sale House Woman #1", "id": 64189, "credit_id": "549729c6c3a3686ae9006c28", "cast_id": 25, "profile_path": "/v5ejFjsfIX4gBeBzoEo5LCejCgq.jpg", "order": 11}, {"name": "Erin Cathryn Strubbe", "character": "Young Jane", "id": 1448568, "credit_id": "551cbac99251416a21001742", "cast_id": 26, "profile_path": null, "order": 12}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f80007c5", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 7.3, "runtime": 122}, "15": {"poster_path": "/n8wfFsQ5vtm6dM8vdgXb6OLv2GY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23217674, "overview": "Following the death of a publishing tycoon, news reporters scramble to discover the meaning of his final utterance.", "video": false, "id": 15, "genres": [{"id": 18, "name": "Drama"}], "title": "Citizen Kane", "tagline": "It's Terrific!", "vote_count": 269, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0033467", "adult": false, "backdrop_path": "/xqDfLC7XbiaVN5XxZBWOJCX0hU7.jpg", "production_companies": [{"name": "Mercury Productions", "id": 11447}], "release_date": "1941-05-01", "popularity": 0.444289916555205, "original_title": "Citizen Kane", "budget": 839727, "cast": [{"name": "Orson Welles", "character": "Charles Foster Kane", "id": 40, "credit_id": "52fe420ec3a36847f8000893", "cast_id": 5, "profile_path": "/pZz07JqawZP3eKUwpaAZq63vEmF.jpg", "order": 0}, {"name": "William Alland", "character": "Jerry Thompson", "id": 11030, "credit_id": "52fe420ec3a36847f80008ab", "cast_id": 11, "profile_path": null, "order": 1}, {"name": "Joseph Cotten", "character": "Jedediah Leland", "id": 7664, "credit_id": "52fe420ec3a36847f800088f", "cast_id": 4, "profile_path": "/bTUTrTnzacCQV4F0rs1xH4QaETf.jpg", "order": 2}, {"name": "Agnes Moorehead", "character": "Mutter", "id": 11025, "credit_id": "52fe420ec3a36847f8000897", "cast_id": 6, "profile_path": "/5FzeKtI94nExMbdY9GCsLVJUMgf.jpg", "order": 3}, {"name": "Ruth Warrick", "character": "Emily Norton Kane", "id": 11026, "credit_id": "52fe420ec3a36847f800089b", "cast_id": 7, "profile_path": "/zb6SLWE9PFCy1ZEEDznuVbYmoio.jpg", "order": 4}, {"name": "Everett Sloane", "character": "Mr. Bernstein", "id": 11027, "credit_id": "52fe420ec3a36847f800089f", "cast_id": 8, "profile_path": "/7TRtzy6BzV8SF0k6eny1jpizx8H.jpg", "order": 5}, {"name": "George Coulouris", "character": "Mr. Thatcher", "id": 11028, "credit_id": "52fe420ec3a36847f80008a3", "cast_id": 9, "profile_path": "/6lZrP9zhuFyL0uOHYJU09FpUV9.jpg", "order": 6}, {"name": "Dorothy Comingore", "character": "Susan Alexander Kane", "id": 11029, "credit_id": "52fe420ec3a36847f80008a7", "cast_id": 10, "profile_path": "/uUPQOYeLIzTucPd4Hn96tCqGSv1.jpg", "order": 7}, {"name": "Philip Van Zandt", "character": "Mr. Rawlston", "id": 11031, "credit_id": "52fe420ec3a36847f80008af", "cast_id": 12, "profile_path": "/6gvimJ7WbMTMfczOtPyzbWNUCDk.jpg", "order": 8}, {"name": "Buddy Swan", "character": "Kane als Kind", "id": 11032, "credit_id": "52fe420ec3a36847f80008b3", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Paul Stewart", "character": "Raymond", "id": 11033, "credit_id": "52fe420ec3a36847f80008b7", "cast_id": 14, "profile_path": "/8tKdcrxfykUgevbWTz8kuK7neQZ.jpg", "order": 10}, {"name": "Harry Shannon", "character": "Kane's Father", "id": 4077, "credit_id": "52fe420ec3a36847f80008eb", "cast_id": 23, "profile_path": "/7Js8vAjzKzM5eXcu6THDzWM7j5P.jpg", "order": 11}, {"name": "Ray Collins", "character": "James W. Gettys", "id": 14518, "credit_id": "52fe420ec3a36847f800090d", "cast_id": 29, "profile_path": "/gJe4Jfdzi01MoQ9eRTr9v4FyD76.jpg", "order": 12}, {"name": "Erskine Sanford", "character": "Mr. Bernstein", "id": 14364, "credit_id": "52fe420ec3a36847f8000911", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Fortunio Bonanova", "character": "Matiste", "id": 14979, "credit_id": "52fe420ec3a36847f8000915", "cast_id": 31, "profile_path": "/3oTAUQDI95m13EmADN6HI9pws8v.jpg", "order": 14}, {"name": "Gus Schilling", "character": "The Headwaiter", "id": 33743, "credit_id": "52fe420ec3a36847f8000919", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Georgia Backus", "character": "Miss Anderson", "id": 105021, "credit_id": "52fe420ec3a36847f800091d", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Sonny Bupp", "character": "Kane III", "id": 1198371, "credit_id": "52fe420ec3a36847f8000921", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Don Ackerman", "character": "Man at Party in Everglades (uncredited)", "id": 945285, "credit_id": "52fe420ec3a36847f8000925", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Danny Borzage", "character": "Man Singing at Inquirer Party (uncredited)", "id": 1404180, "credit_id": "549d3b73c3a3682f23005862", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Nat 'King' Cole", "character": "Pianist in 'El Rancho' (uncredited)", "id": 70261, "credit_id": "549d3b9192514131230055af", "cast_id": 37, "profile_path": "/4S9QCY5sbr2sCinticzPZq28Al4.jpg", "order": 20}, {"name": "Gino Corrado", "character": "Gino (uncredited)", "id": 9096, "credit_id": "549d3ba2c3a3682f1e0056a6", "cast_id": 38, "profile_path": "/s9WKkWJFUNgbPhczUP4sD0OA4I4.jpg", "order": 21}, {"name": "Maurice Costello", "character": "Extra (uncredited)", "id": 1142371, "credit_id": "549d3bbcc3a3682f16005694", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Alan Ladd", "character": "Reporter Smoking Pipe at End (uncredited)", "id": 30510, "credit_id": "549d3bf7c3a3682f1e0056af", "cast_id": 40, "profile_path": "/1DuDOljdykH8HmiKFvO05HB68UP.jpg", "order": 23}, {"name": "Herman J. Mankiewicz", "character": "Newspaperman (uncredited)", "id": 30012, "credit_id": "549d3c129251413129005a01", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Gregg Toland", "character": "Interviewer in 1935 Newsreel (uncredited)", "id": 8504, "credit_id": "549d3c50c3a3682f1b005666", "cast_id": 42, "profile_path": "/6DKcT5fCniS4gIEEEqsLkZC6QeK.jpg", "order": 25}], "directors": [{"name": "Orson Welles", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000885", "profile_path": "/pZz07JqawZP3eKUwpaAZq63vEmF.jpg", "id": 40}], "vote_average": 7.5, "runtime": 119}, "16": {"poster_path": "/dbSXueAo31UnHuEwKtjZ4oviTLu.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 40031879, "overview": "Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings.", "video": false, "id": 16, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Dancer in the Dark", "tagline": "You don't need eyes to see.", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9TSxhVABUzJqUv0dINNT91ymdyk.jpg", "poster_path": "/cwrmUIVzOuR9FdqKBfERkMHdde0.jpg", "id": 498, "name": "Heart of Gold Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0168629", "adult": false, "backdrop_path": "/2PaYKVhagjRwZ4KU914Ohmo1uOO.jpg", "production_companies": [{"name": "Fine Line Features", "id": 8}, {"name": "Zentropa Entertainments", "id": 76}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Blind Spot Pictures Oy", "id": 7330}, {"name": "France 3 Cin\u00e9ma", "id": 591}, {"name": "Danmarks Radio (DR)", "id": 119}, {"name": "Arte France Cin\u00e9ma", "id": 6916}, {"name": "Angel films", "id": 2996}, {"name": "Canal+", "id": 5358}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "TV 1000", "id": 4524}, {"name": "Vrijzinnig Protestantse Radio Omroep (VPRO)", "id": 8659}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Yleisradio (YLE)", "id": 5975}, {"name": "Memfis Film", "id": 321}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Film4", "id": 9349}], "release_date": "2000-09-22", "popularity": 0.400029061250287, "original_title": "Dancer in the Dark", "budget": 12800000, "cast": [{"name": "Bj\u00f6rk", "character": "Selma Jezkova", "id": 47, "credit_id": "52fe420fc3a36847f8000a17", "cast_id": 33, "profile_path": "/dzCbf8FyuUF2VBO7a0ytmV6ktfK.jpg", "order": 0}, {"name": "Catherine Deneuve", "character": "Kathy", "id": 50, "credit_id": "52fe420ec3a36847f8000985", "cast_id": 2, "profile_path": "/5xkwq8GelCwOIVtyZ15LVA0UJGJ.jpg", "order": 1}, {"name": "David Morse", "character": "Bill Houston", "id": 52, "credit_id": "52fe420ec3a36847f8000989", "cast_id": 3, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Peter Stormare", "character": "Jeff", "id": 53, "credit_id": "52fe420ec3a36847f800098d", "cast_id": 4, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 3}, {"name": "Joel Grey", "character": "Oldrich Novy", "id": 6748, "credit_id": "52fe420ec3a36847f800099d", "cast_id": 7, "profile_path": "/yCLwC64GVp96bNi7eTPT0VPmjON.jpg", "order": 4}, {"name": "Cara Seymour", "character": "Linda Houston", "id": 2617, "credit_id": "52fe420ec3a36847f80009a1", "cast_id": 8, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 5}, {"name": "Vladica Kostic", "character": "Gene Jezkova", "id": 6749, "credit_id": "52fe420ec3a36847f80009a5", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Jean-Marc Barr", "character": "Norman", "id": 1642, "credit_id": "52fe420ec3a36847f80009a9", "cast_id": 10, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 7}, {"name": "Vincent Paterson", "character": "Samuel", "id": 6750, "credit_id": "52fe420ec3a36847f80009ad", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Siobhan Fallon", "character": "Brenda", "id": 6751, "credit_id": "52fe420ec3a36847f80009b1", "cast_id": 12, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 9}, {"name": "\u017deljko Ivanek", "character": "District Attorney", "id": 6752, "credit_id": "52fe420ec3a36847f80009b5", "cast_id": 13, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 10}, {"name": "Udo Kier", "character": "Dr. Porkorny", "id": 1646, "credit_id": "52fe420ec3a36847f80009b9", "cast_id": 14, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 11}, {"name": "Jens Albinus", "character": "Morty", "id": 6121, "credit_id": "52fe420ec3a36847f80009bd", "cast_id": 15, "profile_path": "/9CgGf30xp3hreseXoQd3qCQV1cY.jpg", "order": 12}, {"name": "Reathel Bean", "character": "Judge", "id": 6753, "credit_id": "52fe420ec3a36847f80009c1", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Mette Berggreen", "character": "Receptionist", "id": 6754, "credit_id": "52fe420ec3a36847f80009c5", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Lars Michael Dinesen", "character": "Defense Attorney", "id": 6755, "credit_id": "52fe420ec3a36847f80009c9", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Katrine Falkenberg", "character": "Suzan", "id": 6756, "credit_id": "52fe420ec3a36847f80009cd", "cast_id": 19, "profile_path": "/vHpgl8FBvEadVJYQfMsWKNTR635.jpg", "order": 16}, {"name": "Michael Flessas", "character": "Angry Man", "id": 6757, "credit_id": "52fe420ec3a36847f80009d1", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "John Randolph Jones", "character": "Detective", "id": 6758, "credit_id": "52fe420ec3a36847f80009d5", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Stellan Skarsg\u00e5rd", "character": "Doctor", "id": 1640, "credit_id": "52fe420ec3a36847f80009d9", "cast_id": 22, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 19}, {"name": "Paprika Steen", "character": "Woman on Night Shift", "id": 4458, "credit_id": "52fe420ec3a36847f80009dd", "cast_id": 23, "profile_path": "/7iz6g2gXDCVL9LFjqmVV8KwGvNP.jpg", "order": 20}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000981", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 7.5, "runtime": 140}, "18": {"poster_path": "/zaFa1NRZEnFgRTv5OVXkNIZO78O.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 263920180, "overview": "It\u2019s the year 2257 and a taxi driver has been unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity. The Fifth Element takes place in a futuristic metropolitan city and is filmed in a French comic book aesthetic by a British, French and American lineup.", "video": false, "id": 18, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Fifth Element", "tagline": "There is no future without it.", "vote_count": 1684, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0119116", "adult": false, "backdrop_path": "/15yszF6DeZD9zUzh89WtY5pnnRD.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1997-05-09", "popularity": 1.35074637569714, "original_title": "The Fifth Element", "budget": 90000000, "cast": [{"name": "Bruce Willis", "character": "Korben Dallas", "id": 62, "credit_id": "52fe420fc3a36847f8000b53", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Milla Jovovich", "character": "Leeloo", "id": 63, "credit_id": "52fe420fc3a36847f8000b57", "cast_id": 6, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Jean-Baptiste Emmanuel Zorg", "id": 64, "credit_id": "52fe420fc3a36847f8000b5b", "cast_id": 7, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Ian Holm", "character": "Father Vito Cornelius", "id": 65, "credit_id": "52fe420fc3a36847f8000b5f", "cast_id": 8, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 3}, {"name": "Chris Tucker", "character": "Ruby Rhod", "id": 66, "credit_id": "52fe420fc3a36847f8000bcf", "cast_id": 36, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 4}, {"name": "Luke Perry", "character": "Billy", "id": 8395, "credit_id": "52fe420fc3a36847f8000bd3", "cast_id": 37, "profile_path": "/gs74eTwX2Qpp5uG7vSoibZpHUOL.jpg", "order": 5}, {"name": "Brion James", "character": "General Munro", "id": 591, "credit_id": "52fe420fc3a36847f8000bd7", "cast_id": 38, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 6}, {"name": "Tommy Lister", "character": "President Lindberg", "id": 8396, "credit_id": "52fe420fc3a36847f8000bdb", "cast_id": 39, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 7}, {"name": "Lee Evans", "character": "Fog", "id": 7400, "credit_id": "52fe420fc3a36847f8000bdf", "cast_id": 40, "profile_path": "/oMMGnjjU9bPxtaS4swZ4dxkifwX.jpg", "order": 8}, {"name": "Charlie Creed-Miles", "character": "David", "id": 8397, "credit_id": "52fe420fc3a36847f8000be3", "cast_id": 41, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 9}, {"name": "John Bluthal", "character": "Professor Pacoli", "id": 8398, "credit_id": "52fe420fc3a36847f8000be7", "cast_id": 42, "profile_path": null, "order": 10}, {"name": "Mathieu Kassovitz", "character": "Mugger", "id": 2406, "credit_id": "52fe420fc3a36847f8000beb", "cast_id": 43, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 11}, {"name": "Christopher Fairbank", "character": "Mactilburgh", "id": 8399, "credit_id": "52fe420fc3a36847f8000bef", "cast_id": 44, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 12}, {"name": "Kim Chan", "character": "Mr. Kim", "id": 8400, "credit_id": "52fe420fc3a36847f8000bf3", "cast_id": 45, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 13}, {"name": "Tricky", "character": "Right Arm", "id": 183500, "credit_id": "52fe420fc3a36847f8000bf7", "cast_id": 46, "profile_path": "/qz8g8XPQ2NQC1rmd4j06nbVDKh5.jpg", "order": 14}, {"name": "Indra Ov\u00e9", "character": "VIP Stewardess", "id": 232174, "credit_id": "52fe420fc3a36847f8000bfb", "cast_id": 47, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 15}, {"name": "John Neville", "character": "General Staedert", "id": 12642, "credit_id": "52fe420fc3a36847f8000bff", "cast_id": 48, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 16}, {"name": "Ma\u00efwenn", "character": "Diva Plavalaguna", "id": 64210, "credit_id": "52fe420fc3a36847f8000c03", "cast_id": 49, "profile_path": "/4w26lbGWf1sZtGem2KOI89F5TPu.jpg", "order": 17}, {"name": "Al Matthews", "character": "General Tudor", "id": 10208, "credit_id": "5506e93b92514179fb00200e", "cast_id": 107, "profile_path": null, "order": 18}, {"name": "Julie T. Wallace", "character": "Major Iceborg", "id": 28897, "credit_id": "5506e966c3a36805810035c6", "cast_id": 108, "profile_path": null, "order": 19}, {"name": "Mac McDonald", "character": "Flying Cop", "id": 33403, "credit_id": "550c90c49251414691003fae", "cast_id": 109, "profile_path": "/cRKziKEi6eucP7EjV4t24Gyf7Ck.jpg", "order": 20}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe420fc3a36847f8000b43", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.9, "runtime": 126}, "19": {"poster_path": "/hnj1AptUFmYYZNjrbIHgNjgt3ZX.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 650422, "overview": "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.", "video": false, "id": 19, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Metropolis", "tagline": "There can be no understanding between the hands and the brain unless the heart acts as mediator.", "vote_count": 170, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0017136", "adult": false, "backdrop_path": "/gmH0N0bdlYGN1EUr8U2cMQYyg78.jpg", "production_companies": [{"name": "Universum Film", "id": 811}], "release_date": "1927-01-10", "popularity": 0.794940218869626, "original_title": "Metropolis", "budget": 92620000, "cast": [{"name": "Brigitte Helm", "character": "Maria", "id": 75, "credit_id": "52fe420fc3a36847f8000c87", "cast_id": 10, "profile_path": "/gHCAWZxoYMUMfT1yQFG0WqdmAnU.jpg", "order": 0}, {"name": "Alfred Abel", "character": "Johann 'Joh' Fredersen", "id": 73, "credit_id": "52fe420fc3a36847f8000cdb", "cast_id": 28, "profile_path": null, "order": 1}, {"name": "Gustav Fr\u00f6hlich", "character": "Freder Fredersen", "id": 74, "credit_id": "52fe420fc3a36847f8000c83", "cast_id": 9, "profile_path": "/z8fMRjarFtxAeLsI9rurs3v1R9D.jpg", "order": 2}, {"name": "Rudolf Klein-Rogge", "character": "C.A. Rotwang, the inventor", "id": 77, "credit_id": "52fe420fc3a36847f8000c8b", "cast_id": 11, "profile_path": "/dz2NKTrM06vyg4iQN9vHQ3a7bDR.jpg", "order": 3}, {"name": "Fritz Rasp", "character": "Der Schmale", "id": 78, "credit_id": "52fe420fc3a36847f8000c8f", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Theodor Loos", "character": "Josaphat - Joseph", "id": 79, "credit_id": "52fe420fc3a36847f8000c93", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Erwin Biswanger", "character": "No. 11811", "id": 80, "credit_id": "52fe420fc3a36847f8000c97", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Heinrich George", "character": "Grot", "id": 81, "credit_id": "52fe420fc3a36847f8000c9b", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Olaf Storm", "character": "Jan", "id": 82, "credit_id": "52fe420fc3a36847f8000c9f", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Hanns Leo Reich", "character": "Marinus", "id": 83, "credit_id": "52fe420fc3a36847f8000ca3", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Helene Weigel", "character": "Arbeiterfrau", "id": 2350, "credit_id": "52fe420fc3a36847f8000cad", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Fritz Alberti", "character": "Kreativer Mensch", "id": 20535, "credit_id": "52fe420fc3a36847f8000cb9", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Heinrich Gotho", "character": "Zeremonienmeister", "id": 20533, "credit_id": "52fe420fc3a36847f8000cb1", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Margarete Lanner", "character": "Frau im Wagen", "id": 20534, "credit_id": "52fe420fc3a36847f8000cb5", "cast_id": 21, "profile_path": null, "order": 13}], "directors": [{"name": "Fritz Lang", "department": "Directing", "job": "Director", "credit_id": "52fe420fc3a36847f8000c61", "profile_path": "/iq0KqfkJzEGGHx9MupllyJoCush.jpg", "id": 68}], "vote_average": 7.9, "runtime": 153}, "22": {"poster_path": "/tkt9xR1kNX5R9rCebASKck44si2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 655011224, "overview": "Jack Sparrow, a freewheeling 17th-century pirate who roams the Caribbean Sea butts heads with a rival pirate bent on pillaging the village of Port Royal. When the governor's daughter is kidnapped, Sparrow decides to help the girl's love save her. But their seafaring mission is hardly simple.", "video": false, "id": 22, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: The Curse of the Black Pearl", "tagline": "Prepare to be blown out of the water.", "vote_count": 2522, "homepage": "http://disney.go.com/disneyvideos/liveaction/pirates/main_site/main.html", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0325980", "adult": false, "backdrop_path": "/jpRpigNQUjNlfx0gYRBJ30tQIOl.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-07-09", "popularity": 2.43148449658197, "original_title": "Pirates of the Caribbean: The Curse of the Black Pearl", "budget": 140000000, "cast": [{"name": "Johnny Depp", "character": "Jack Sparrow", "id": 85, "credit_id": "52fe420fc3a36847f8000ecb", "cast_id": 12, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Geoffrey Rush", "character": "Barbossa", "id": 118, "credit_id": "52fe420fc3a36847f8000ea3", "cast_id": 5, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 1}, {"name": "Orlando Bloom", "character": "Will Turner", "id": 114, "credit_id": "52fe420fc3a36847f8000e8f", "cast_id": 1, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 2}, {"name": "Keira Knightley", "character": "Elizabeth Swann", "id": 116, "credit_id": "52fe420fc3a36847f8000e9f", "cast_id": 4, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 3}, {"name": "Jack Davenport", "character": "Norrington", "id": 1709, "credit_id": "52fe420fc3a36847f8000ecf", "cast_id": 13, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 4}, {"name": "Kevin McNally", "character": "Joshamee Gibbs", "id": 2449, "credit_id": "52fe4210c3a36847f8000f33", "cast_id": 36, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 5}, {"name": "Zoe Saldana", "character": "Anamaria", "id": 8691, "credit_id": "52fe4210c3a36847f8000f1b", "cast_id": 31, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 6}, {"name": "Jonathan Pryce", "character": "Governor Weatherby Swann", "id": 378, "credit_id": "52fe420fc3a36847f8000ed3", "cast_id": 14, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 7}, {"name": "Lee Arenberg", "character": "Pintel", "id": 1710, "credit_id": "52fe420fc3a36847f8000ed7", "cast_id": 15, "profile_path": "/ziQH86o2BInPEUF7VW0gYte35Tw.jpg", "order": 8}, {"name": "Mackenzie Crook", "character": "Ragetti", "id": 1711, "credit_id": "52fe420fc3a36847f8000edb", "cast_id": 16, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 9}, {"name": "Damian O'Hare", "character": "Lt. Gillette", "id": 1712, "credit_id": "52fe420fc3a36847f8000edf", "cast_id": 17, "profile_path": "/fKpaczsKihsuEPWInNENp1WVtwg.jpg", "order": 10}, {"name": "Giles New", "character": "Murtogg", "id": 1713, "credit_id": "52fe420fc3a36847f8000ee3", "cast_id": 18, "profile_path": "/I9X3rsueDsvAqq0LneLU8mEgJw.jpg", "order": 11}, {"name": "Angus Barnett", "character": "Mullroy", "id": 1714, "credit_id": "52fe420fc3a36847f8000ee7", "cast_id": 19, "profile_path": "/usYsWRccdM4Y00RycsQFFOdNVe.jpg", "order": 12}, {"name": "David Bailie", "character": "Cotton", "id": 1715, "credit_id": "52fe420fc3a36847f8000eeb", "cast_id": 20, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 13}, {"name": "Michael Berry Jr.", "character": "Twigg", "id": 1716, "credit_id": "52fe420fc3a36847f8000eef", "cast_id": 21, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 14}, {"name": "Isaac C. Singleton Jr.", "character": "Bo'sun", "id": 1717, "credit_id": "52fe420fc3a36847f8000ef3", "cast_id": 22, "profile_path": "/CV8zy42A8Bn76IoibLVmFdYkiU.jpg", "order": 15}, {"name": "Treva Etienne", "character": "Koehler", "id": 12802, "credit_id": "52fe4210c3a36847f8000f3b", "cast_id": 38, "profile_path": "/wIHXwmb2aFBNIT9aJHahtlHMrto.jpg", "order": 16}, {"name": "Guy Siner", "character": "Harbormaster", "id": 9298, "credit_id": "52fe4210c3a36847f8000f3f", "cast_id": 39, "profile_path": "/qlEznv2uAbN46pmVaAuWNTULdVh.jpg", "order": 17}, {"name": "Ralph P. Martin", "character": "Mr. Brown", "id": 155955, "credit_id": "52fe4210c3a36847f8000f43", "cast_id": 40, "profile_path": "/gZThHsCXovn1KrB0f0IToSx8i4f.jpg", "order": 18}, {"name": "Paula J. Newman", "character": "Estrella (as Paula Jane Newman)", "id": 59056, "credit_id": "52fe4210c3a36847f8000f47", "cast_id": 41, "profile_path": "/u3HCFYLWPR2tnkNLmohldgxc2Sb.jpg", "order": 19}, {"name": "Paul Keith", "character": "Butler", "id": 116234, "credit_id": "52fe4210c3a36847f8000f4b", "cast_id": 42, "profile_path": "/ln0ACkzDK4xRbLuanja3RKUqpYP.jpg", "order": 20}, {"name": "Dylan Smith", "character": "Young Will", "id": 1172661, "credit_id": "52fe4210c3a36847f8000f37", "cast_id": 37, "profile_path": "/z2PRKKGdq0P8tbFmW97KCI2yPgq.jpg", "order": 21}, {"name": "Lucinda Dryzek", "character": "Young Elizabeth Swann", "id": 82143, "credit_id": "52fe4210c3a36847f8000f2f", "cast_id": 35, "profile_path": "/oI6MJR0X9g1ay8iRsNps6lq2UHt.jpg", "order": 22}, {"name": "Luke de Woolfson", "character": "Frightened Sailor", "id": 82636, "credit_id": "52fe4210c3a36847f8000f1f", "cast_id": 32, "profile_path": "/lsJ51EAV14lf0F39nGnlHz7CdM8.jpg", "order": 23}, {"name": "Michael Sean Tighe", "character": "Seedy Looking Prisoner", "id": 74578, "credit_id": "52fe4210c3a36847f8000f4f", "cast_id": 43, "profile_path": "/pCnyL2emYr3eo1kYw8B6diH8nkk.jpg", "order": 24}, {"name": "Greg Ellis", "character": "Officer", "id": 4031, "credit_id": "52fe4210c3a36847f8000f53", "cast_id": 44, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 25}, {"name": "Dustin Seavey", "character": "Sentry", "id": 106514, "credit_id": "52fe4210c3a36847f8000f57", "cast_id": 45, "profile_path": "/bunBp2hQCBykaZUQypGrPmedxXF.jpg", "order": 26}, {"name": "Christian Martin", "character": "Steersman", "id": 1269546, "credit_id": "52fe4210c3a36847f8000f5b", "cast_id": 46, "profile_path": "/cyM7aZ4RtH5kiNWH6nj5af6AYSA.jpg", "order": 27}, {"name": "Trevor Goddard", "character": "Grapple", "id": 57252, "credit_id": "52fe4210c3a36847f8000f63", "cast_id": 48, "profile_path": "/5qctMNVCJeJ8RO6W03GGDeRNxJG.jpg", "order": 28}, {"name": "Vince Lozano", "character": "Jacoby", "id": 88032, "credit_id": "52fe4210c3a36847f8000f67", "cast_id": 49, "profile_path": "/ne8tZvqhhTbFWoQIpp4yaf7bclX.jpg", "order": 29}, {"name": "Ben Wilson", "character": "Seedy Prisoner #2", "id": 60941, "credit_id": "52fe4210c3a36847f8000f6b", "cast_id": 50, "profile_path": "/aEoSC2MLB8X5I9v6hscth0th3Ex.jpg", "order": 30}, {"name": "Antonio Valentino", "character": "Seedy Prisoner #3", "id": 1269548, "credit_id": "52fe4210c3a36847f8000f6f", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Lauren Maher", "character": "Scarlett", "id": 2450, "credit_id": "52fe4210c3a36847f8000f73", "cast_id": 52, "profile_path": "/6lOXL14xydRIplYqVv6KBdNs9MG.jpg", "order": 32}, {"name": "Matthew Bowyer", "character": "Sailor / Edinburgh", "id": 1077834, "credit_id": "52fe4210c3a36847f8000f77", "cast_id": 53, "profile_path": "/sEfjY9lBchn6kHYMa17aCzLyXHY.jpg", "order": 33}, {"name": "Brye Cooper", "character": "Mallot", "id": 931645, "credit_id": "52fe4210c3a36847f8000f7b", "cast_id": 54, "profile_path": "/aHsDAj8jotUgpeMi7WfHpMwpSc2.jpg", "order": 34}, {"name": "Mike Babcock", "character": "Seedy Prisoner #4", "id": 1269549, "credit_id": "52fe4210c3a36847f8000f7f", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Owen Finnegan", "character": "Town Clerk", "id": 1269550, "credit_id": "52fe4210c3a36847f8000f83", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Ian McIntyre", "character": "Sailor", "id": 1269551, "credit_id": "52fe4210c3a36847f8000f87", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Vanessa Branch", "character": "Giselle", "id": 2452, "credit_id": "52fe4210c3a36847f8000f8b", "cast_id": 58, "profile_path": "/we5DEoTqeJznGe8m7ssRgmVXmwB.jpg", "order": 38}, {"name": "Sam Roberts", "character": "Crying Boy", "id": 1269553, "credit_id": "52fe4210c3a36847f8000f8f", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Ben Roberts", "character": "Crying Boy", "id": 1269554, "credit_id": "52fe4210c3a36847f8000f93", "cast_id": 60, "profile_path": "/6QeKEBGVTnlAWfGx2rVFzyPd9dH.jpg", "order": 40}, {"name": "Martin Klebba", "character": "Marty", "id": 4030, "credit_id": "52fe4210c3a36847f8000f97", "cast_id": 61, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 41}, {"name": "F\u00e9lix Castro", "character": "Moises: Jack's Crew", "id": 1269555, "credit_id": "52fe4210c3a36847f8000f9b", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Mike Haberecht", "character": "Kursar: Jack's Crew", "id": 1269556, "credit_id": "52fe4210c3a36847f8000f9f", "cast_id": 63, "profile_path": "/dUyuOhs3URvFLznnVsBiOzwnyjv.jpg", "order": 43}, {"name": "Rudolph McCollum", "character": "Matelot: Jack's Crew", "id": 1269557, "credit_id": "52fe4210c3a36847f8000fa3", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Gerard J. Reyes", "character": "Tearlach: Jack's Crew (as Gerard Reyes)", "id": 1269559, "credit_id": "52fe4210c3a36847f8000fa7", "cast_id": 65, "profile_path": "/mkb3O3DIwuxDzcRozEttr6nOeWq.jpg", "order": 45}, {"name": "M. Scott Shields", "character": "Duncan: Jack's Crew", "id": 1269560, "credit_id": "52fe4210c3a36847f8000fab", "cast_id": 66, "profile_path": "/vLxsphyxszicGYbwmSUrJ3MHGTu.jpg", "order": 46}, {"name": "Christopher Sullivan", "character": "Ladbroc: Jack's Crew (as Chris 'Sully' Sullivan)", "id": 1269561, "credit_id": "52fe4210c3a36847f8000faf", "cast_id": 67, "profile_path": null, "order": 47}, {"name": "Craig Thomson", "character": "Crimp: Jack's Crew", "id": 1269562, "credit_id": "52fe4210c3a36847f8000fb3", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Fred Toft", "character": "Quartetto: Jack's Crew", "id": 1269602, "credit_id": "52fe4210c3a36847f8000fb7", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "D.P. FitzGerald", "character": "Weatherby: Barbossa's Crew", "id": 1269603, "credit_id": "52fe4210c3a36847f8000fbb", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Jerry Gauny", "character": "Ketchum: Barbossa's Crew", "id": 1269604, "credit_id": "52fe4210c3a36847f8000fbf", "cast_id": 71, "profile_path": "/l4R9AqAJ4LAoTKKqascCttOoNgT.jpg", "order": 51}, {"name": "Maxie J. Santillan Jr.", "character": "Maximo: Barbossa's Crew", "id": 145555, "credit_id": "52fe4210c3a36847f8000fc3", "cast_id": 72, "profile_path": "/iajY9C4fEv47S5PL1eA32UTaiEE.jpg", "order": 52}, {"name": "Michael Earl Lane", "character": "Monk: Barbossa's Crew (as Michael Lane)", "id": 1269605, "credit_id": "52fe4210c3a36847f8000fc7", "cast_id": 73, "profile_path": "/ztu6mVqL4Fm7iIXFXbKTEdUINaw.jpg", "order": 53}, {"name": "Tobias McKinney", "character": "Dog Ear: Barbossa's Crew", "id": 1269606, "credit_id": "52fe4210c3a36847f8000fcb", "cast_id": 74, "profile_path": null, "order": 54}, {"name": "David Patykewich", "character": "Clubba: Barbossa's Crew", "id": 1269607, "credit_id": "52fe4210c3a36847f8000fcf", "cast_id": 75, "profile_path": "/jVOAdvckgprtJrfW41XSg5Az3Ny.jpg", "order": 55}, {"name": "Tommy Schooler", "character": "Scarus: Barbossa's Crew", "id": 1269608, "credit_id": "52fe4210c3a36847f8000fd3", "cast_id": 76, "profile_path": "/jlQEUTpejFbazxyl97PM1d5hKZv.jpg", "order": 56}, {"name": "Michael A. Thompson", "character": "Simbakka: Barbossa's Crew", "id": 1269609, "credit_id": "52fe4210c3a36847f8000fd7", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Michael W. Williams", "character": "Hawksmoor: Barbossa's Crew", "id": 1196317, "credit_id": "52fe4210c3a36847f8000fdb", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Jose Zelaya", "character": "Katracho: Barbossa's Crew", "id": 180394, "credit_id": "52fe4210c3a36847f8000fdf", "cast_id": 79, "profile_path": null, "order": 59}, {"name": "Finneus Egan", "character": "Scratch: Barbossa's Crew", "id": 182212, "credit_id": "52fe4210c3a36847f8000fe3", "cast_id": 80, "profile_path": "/d5auyJjoO88yJ6xJ96A7ywxBHUh.jpg", "order": 60}, {"name": "Don LaDaga", "character": "Nipperkin: Barbossa's Crew", "id": 1269610, "credit_id": "52fe4210c3a36847f8000fe7", "cast_id": 81, "profile_path": null, "order": 61}, {"name": "LeJon", "character": "Lejon (as LeJon Stewart)", "id": 1269611, "credit_id": "52fe4210c3a36847f8000feb", "cast_id": 82, "profile_path": "/9V0WQsy3aj6I8iTW3eyLy3cpYpL.jpg", "order": 62}, {"name": "Christopher S. Capp", "character": "Parrot Voice (voice)", "id": 21700, "credit_id": "52fe4210c3a36847f8000fef", "cast_id": 83, "profile_path": null, "order": 63}, {"name": "Gregory Alosio", "character": "Pirate (uncredited)", "id": 1269612, "credit_id": "52fe4210c3a36847f8000ff3", "cast_id": 84, "profile_path": "/tV1nWYs1tsm1qbvbvm2Se4iKgeE.jpg", "order": 64}, {"name": "Jordi Caballero", "character": "Pirate (uncredited)", "id": 59215, "credit_id": "52fe4210c3a36847f8000ff7", "cast_id": 85, "profile_path": "/6LJPfa9Pt4zhrGl1phkCb3F6mU2.jpg", "order": 65}, {"name": "Paul Gagn\u00e9", "character": "Sailor (uncredited)", "id": 74666, "credit_id": "52fe4210c3a36847f8000ffb", "cast_id": 86, "profile_path": "/cx0gtawr9FNG3ZQwNsQQwUcct9G.jpg", "order": 66}, {"name": "Joe Grisaffi", "character": "Marine (uncredited)", "id": 1146942, "credit_id": "52fe4210c3a36847f8000fff", "cast_id": 87, "profile_path": "/2QQcjENUjpp5xpCJ2mpFobiczOo.jpg", "order": 67}, {"name": "James McAuley", "character": "Barbossa's Crew (uncredited)", "id": 1269613, "credit_id": "52fe4210c3a36847f8001003", "cast_id": 88, "profile_path": "/mAke047ruqikk5vQzKm4Opu1llk.jpg", "order": 68}, {"name": "Israel Aduramo", "character": "Crippled Man", "id": 67147, "credit_id": "53091444c3a3687b57000f41", "cast_id": 90, "profile_path": "/mYBMfXnhlWDFx28okomf3VpBCEg.jpg", "order": 69}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe420fc3a36847f8000ea9", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 7.1, "runtime": 143}, "24": {"poster_path": "/vdENJAPObttowMtIwe9jgtbsEnq.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180949000, "overview": "An assassin is shot at the altar by her ruthless employer, Bill, and other members of their assassination circle. But \"The Bride\" lives to plot her vengeance. Setting out for some payback, she makes a death list and hunts down those who wronged her, saving Bill for last.", "video": false, "id": 24, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Kill Bill: Vol. 1", "tagline": "Go for the kill.", "vote_count": 1352, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oCLKNACMNrEf4T1EP6BpMXDl5m1.jpg", "poster_path": "/tf1nUtw3LJGUGv1EFFi23iz6ngr.jpg", "id": 2883, "name": "Kill Bill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0266697", "adult": false, "backdrop_path": "/kkS8PKa8c134vXsj2fQkNqOaCXU.jpg", "production_companies": [{"name": "Super Cool ManChu", "id": 39121}, {"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}], "release_date": "2003-10-09", "popularity": 1.41990748742006, "original_title": "Kill Bill: Vol. 1", "budget": 55000000, "cast": [{"name": "Uma Thurman", "character": "Beatrix 'The Bride' Kiddo", "id": 139, "credit_id": "52fe4210c3a36847f800104d", "cast_id": 3, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "Lucy Liu", "character": "O-Ren Ishii", "id": 140, "credit_id": "52fe4210c3a36847f8001051", "cast_id": 4, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Vivica A. Fox", "character": "Vernita Green", "id": 2535, "credit_id": "52fe4210c3a36847f800106d", "cast_id": 10, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 2}, {"name": "Daryl Hannah", "character": "Elle Driver", "id": 589, "credit_id": "52fe4210c3a36847f8001069", "cast_id": 9, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 3}, {"name": "David Carradine", "character": "Bill", "id": 141, "credit_id": "52fe4210c3a36847f8001055", "cast_id": 5, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 4}, {"name": "Chiaki Kuriyama", "character": "Gogo Yubari", "id": 2538, "credit_id": "52fe4210c3a36847f8001075", "cast_id": 12, "profile_path": "/ccaYcabNnxA4MPItZdKAMdqEqTk.jpg", "order": 5}, {"name": "Julie Dreyfus", "character": "Sofie Fatale", "id": 2539, "credit_id": "52fe4210c3a36847f800107d", "cast_id": 14, "profile_path": "/vkUvcV6oFkZXcIv4SGeW66LUoqC.jpg", "order": 6}, {"name": "Michael Madsen", "character": "Budd", "id": 147, "credit_id": "52fe4210c3a36847f8001059", "cast_id": 6, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 7}, {"name": "Sonny Chiba", "character": "Hattori Hanzo", "id": 2537, "credit_id": "52fe4210c3a36847f8001079", "cast_id": 13, "profile_path": "/9VduIlJK3bujNX0Gv0WvZ2cFxrK.jpg", "order": 8}, {"name": "Gordon Liu Chia-Hui", "character": "Johnny Mo", "id": 240171, "credit_id": "52fe4210c3a36847f80010c3", "cast_id": 35, "profile_path": "/yTI36A27P9YdFbzrCwjpmEpDGbR.jpg", "order": 9}, {"name": "Michael Bowen", "character": "Buck", "id": 2234, "credit_id": "53adbe460e0a265986002691", "cast_id": 38, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 10}, {"name": "Michael Parks", "character": "Earl McGraw", "id": 2536, "credit_id": "52fe4210c3a36847f8001071", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 11}, {"name": "James Parks", "character": "Edgar McGraw", "id": 87312, "credit_id": "53adbf1f0e0a26597500281c", "cast_id": 39, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 12}, {"name": "Sakichi Sat\u00f4", "character": "Charlie Brown", "id": 58616, "credit_id": "52fe4210c3a36847f80010af", "cast_id": 30, "profile_path": "/s3slnuF2U18zAPJi0yovdzZPIQF.jpg", "order": 13}, {"name": "Ambrosia Kelley", "character": "Nikki Bell", "id": 4026, "credit_id": "52fe4210c3a36847f80010a5", "cast_id": 25, "profile_path": "/8y5vikbwYbNcBfWt1hIjrgwEYYN.jpg", "order": 14}, {"name": "Jun Kunimura", "character": "Tanaka", "id": 2541, "credit_id": "53e23f3a0e0a262b9100123a", "cast_id": 40, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 15}, {"name": "Akaji Maro", "character": "Boss Ozawah", "id": 2544, "credit_id": "5475b93bc3a36859b90018da", "cast_id": 56, "profile_path": "/b28JIJMTwtVPiuz6TtOiFh5gNzs.jpg", "order": 16}, {"name": "Goro Daimon", "character": "Boss Honda", "id": 1369182, "credit_id": "5475b970c3a368364c0028ad", "cast_id": 57, "profile_path": null, "order": 17}, {"name": "Shun Sugata", "character": "Boss Benta", "id": 9193, "credit_id": "5475b98bc3a368364c0028b6", "cast_id": 58, "profile_path": "/9Ntziepdp2P2xsLGHdy0rchVJ3G.jpg", "order": 18}, {"name": "Zhang Jin Zhan", "character": "Boss Orgami", "id": 1389612, "credit_id": "5475b9cfc3a3684df2000487", "cast_id": 59, "profile_path": null, "order": 19}, {"name": "Sachiko Fujii", "character": "The 5, 6, 7, 8's", "id": 1314989, "credit_id": "5475dc2992514166ba0009b1", "cast_id": 84, "profile_path": null, "order": 20}, {"name": "Kazuki Kitamura", "character": "Crazy 88", "id": 2542, "credit_id": "5475dc75c3a368764e000ff3", "cast_id": 85, "profile_path": "/2DefK5vG0JquPJ1UdcckaPRcy96.jpg", "order": 21}, {"name": "Y\u00f4ji Tanaka", "character": "Crazy 88", "id": 115659, "credit_id": "5475dc8d92514152730028f1", "cast_id": 86, "profile_path": "/xPpE9vinviRqjewLsnMQ5X5Dx9B.jpg", "order": 22}, {"name": "Issei Takahashi", "character": "Crazy 88", "id": 115657, "credit_id": "5475dca29251412c3b004666", "cast_id": 87, "profile_path": null, "order": 23}, {"name": "S\u00f4 Yamanaka", "character": "Crazy 88", "id": 121751, "credit_id": "5475dcb7c3a368364c002e02", "cast_id": 88, "profile_path": null, "order": 24}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4210c3a36847f8001049", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.2, "runtime": 111}, "25": {"poster_path": "/kmbyO0XUHRHcMyxVSZAWDdrpxIu.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96900000, "overview": "Jarhead is a film about a US Marine Anthony Swofford\u2019s experience in the Gulf War. After putting up with an arduous boot camp, Swafford and his unit are sent to the Persian Gulf where they are earger to fight but are forced to stay back from the action. Meanwhile Swofford gets news of his girlfriend is cheating on him. Desperately he wants to kill someone and finally put his training to use.", "video": false, "id": 25, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Jarhead", "tagline": "Welcome to the suck.", "vote_count": 204, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4AIiITFKoM99NJbzxGkxYSWjTtw.jpg", "poster_path": "/dHiKGct4c6k0h4L9ftjPRhcR2cS.jpg", "id": 285564, "name": "Jarhead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0418763", "adult": false, "backdrop_path": "/shg7ZGAGVxhM9ZfOtV6bp93QZwt.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Neal Street Productions", "id": 1522}, {"name": "Motion Picture KAPPA Produktionsgesellschaft", "id": 19934}], "release_date": "2005-11-04", "popularity": 1.05432833340949, "original_title": "Jarhead", "budget": 70000000, "cast": [{"name": "Jamie Foxx", "character": "Staff Sgt. Sykes", "id": 134, "credit_id": "52fe4210c3a36847f8001103", "cast_id": 1, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Anthony Swofford", "id": 131, "credit_id": "52fe4210c3a36847f8001107", "cast_id": 2, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Scott MacDonald", "character": "D.I. Fitch", "id": 132, "credit_id": "52fe4210c3a36847f800110b", "cast_id": 3, "profile_path": "/8GPZZWgiGPgpOOz6BRqNhNZej5W.jpg", "order": 1}, {"name": "Lucas Black", "character": "Kruger", "id": 155, "credit_id": "52fe4210c3a36847f800114f", "cast_id": 15, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 3}, {"name": "Peter Sarsgaard", "character": "Alan Troy", "id": 133, "credit_id": "52fe4210c3a36847f800110f", "cast_id": 4, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 4}, {"name": "Laz Alonso", "character": "Ramon Escobar", "id": 10964, "credit_id": "52fe4210c3a36847f8001153", "cast_id": 16, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 5}, {"name": "Chris Cooper", "character": "Lt. Col. Kazinski", "id": 2955, "credit_id": "52fe4210c3a36847f8001157", "cast_id": 17, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 6}, {"name": "Brian Geraghty", "character": "Fergus O'Donnell", "id": 49271, "credit_id": "52fe4210c3a36847f800115b", "cast_id": 18, "profile_path": "/3risyyYIFDQaz0EHRVqNOCToaDe.jpg", "order": 7}, {"name": "Damion Poitier", "character": "Poitier", "id": 150194, "credit_id": "52fe4210c3a36847f800115f", "cast_id": 19, "profile_path": "/zBoq4SAauhVmbHSyWZXYXvA36Ky.jpg", "order": 8}, {"name": "John Krasinski", "character": "Corporal Harrigan", "id": 17697, "credit_id": "52fe4210c3a36847f8001163", "cast_id": 20, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 9}, {"name": "Jocko Sims", "character": "Julius", "id": 107939, "credit_id": "52fe4210c3a36847f8001167", "cast_id": 21, "profile_path": "/14jDiruPZn8euVRYt0D3pjqTF6C.jpg", "order": 10}, {"name": "Ming Lo", "character": "Bored Gunny", "id": 1226506, "credit_id": "52fe4210c3a36847f800116b", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Kevin Foster", "character": "Branded Marine", "id": 95698, "credit_id": "52fe4210c3a36847f800116f", "cast_id": 23, "profile_path": "/9YZigxSi9V4mdpzxvs6G1nVRPbC.jpg", "order": 12}, {"name": "Riad Galayini", "character": "Nurse", "id": 1291645, "credit_id": "52fe4210c3a36847f8001173", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Craig Coyne", "character": "Young Mr. Swofford", "id": 1172840, "credit_id": "52fe4210c3a36847f8001177", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Katherine Randolph", "character": "Young Mrs. Swofford", "id": 557545, "credit_id": "52fe4210c3a36847f800117b", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Honorine Bell", "character": "Swoff's Sister", "id": 1291646, "credit_id": "52fe4210c3a36847f800117f", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Dendrie Taylor", "character": "Mrs. Swofford", "id": 81462, "credit_id": "52fe4210c3a36847f8001183", "cast_id": 28, "profile_path": "/mGFSoz0U4wkGGrt8ZFeEXnLOYr6.jpg", "order": 17}, {"name": "James Morrison", "character": "Mr. Swofford", "id": 62003, "credit_id": "53262c0e925141143900245a", "cast_id": 29, "profile_path": "/1i72tqL3kSv4BbOvsu8CyDwkKJ0.jpg", "order": 18}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe4210c3a36847f8001115", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.3, "runtime": 125}, "122906": {"poster_path": "/fjy3OdcYqe4dq3Ypa3NLtLG2Kdk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The night after another unsatisfactory New Year party, Tim's father (Bill Nighy) tells his son that the men in his family have always had the ability to travel through time. Tim can't change history, but he can change what happens and has happened in his own life---so he decides to make his world a better place...by getting a girlfriend. Sadly, that turns out not to be as easy as you might think.", "video": false, "id": 122906, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "About Time", "tagline": "A new funny film about love. With a bit of time travel.", "vote_count": 549, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2194499", "adult": false, "backdrop_path": "/u6ydjtF1epBmGBGAPoa8SG5EnLm.jpg", "production_companies": [{"name": "Translux", "id": 14384}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-11-08", "popularity": 2.20599006273647, "original_title": "About Time", "budget": 0, "cast": [{"name": "Rachel McAdams", "character": "Mary", "id": 53714, "credit_id": "52fe4a87c3a368484e15883f", "cast_id": 5, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Bill Nighy", "character": "Dad", "id": 2440, "credit_id": "52fe4a87c3a368484e158843", "cast_id": 6, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 1}, {"name": "Domhnall Gleeson", "character": "Tim", "id": 93210, "credit_id": "52fe4a87c3a368484e158847", "cast_id": 7, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Harry", "id": 2441, "credit_id": "52fe4a87c3a368484e15884f", "cast_id": 9, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Margot Robbie", "character": "Charlotte", "id": 234352, "credit_id": "52fe4a87c3a368484e158853", "cast_id": 10, "profile_path": "/cdc4z3uOFUoM7VNq7FqLUVDalwf.jpg", "order": 4}, {"name": "Lindsay Duncan", "character": "Mum", "id": 30083, "credit_id": "52fe4a87c3a368484e158857", "cast_id": 11, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 5}, {"name": "Lee Asquith-Coe", "character": "Bin Man", "id": 531772, "credit_id": "52fe4a87c3a368484e15884b", "cast_id": 8, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 6}, {"name": "Vanessa Kirby", "character": "Joanna", "id": 556356, "credit_id": "52fe4a87c3a368484e15885b", "cast_id": 13, "profile_path": "/ndrtjCvIXEuHerMBOz8sLyxgIlc.jpg", "order": 7}, {"name": "Lisa Eichhorn", "character": "Mary's Mother, Jean", "id": 28950, "credit_id": "52fe4a87c3a368484e15885f", "cast_id": 14, "profile_path": "/bXHlVhxhpBUztRTxLPbDH97kNy5.jpg", "order": 8}, {"name": "Lydia Wilson", "character": "Kit Kat", "id": 1095524, "credit_id": "52fe4a87c3a368484e158887", "cast_id": 22, "profile_path": "/ndlya4VREXguyeZYLP7OB3HHjzu.jpg", "order": 9}, {"name": "Matthew C. Martino", "character": "Commuter", "id": 1186080, "credit_id": "52fe4a87c3a368484e15888b", "cast_id": 23, "profile_path": "/5wtp4SjBr3e6zvxIHrWHKKxWR1w.jpg", "order": 10}], "directors": [{"name": "Richard Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a368484e158829", "profile_path": "/uLjkovqtUtM4SckCFtrevZKKJNM.jpg", "id": 7018}], "vote_average": 7.6, "runtime": 123}, "28": {"poster_path": "/l8dn7rKbjP36PtHsViHGpzf5ey7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83471511, "overview": "At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \"does not exist, nor will it ever exist.\" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.", "video": false, "id": 28, "genres": [{"id": 10752, "name": "War"}], "title": "Apocalypse Now", "tagline": "This is the end...", "vote_count": 453, "homepage": "http://www.apocalypsenow.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "km", "name": ""}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0078788", "adult": false, "backdrop_path": "/k91Dag8AZbhjIJqrtf7F1bQnGPg.jpg", "production_companies": [{"name": "Zoetrope Studios", "id": 26663}], "release_date": "1979-08-15", "popularity": 1.30312860862308, "original_title": "Apocalypse Now", "budget": 31500000, "cast": [{"name": "Martin Sheen", "character": "Captain Benjamin L. Willard", "id": 8349, "credit_id": "52fe4210c3a36847f800135b", "cast_id": 29, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 0}, {"name": "Marlon Brando", "character": "Colonel Walter E. Kurtz", "id": 3084, "credit_id": "52fe4210c3a36847f800135f", "cast_id": 30, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 1}, {"name": "Robert Duvall", "character": "Lieutenant Colonel Bill Kilgore", "id": 3087, "credit_id": "52fe4210c3a36847f8001363", "cast_id": 31, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 2}, {"name": "Laurence Fishburne", "character": "Tyrone 'Clean' Miller", "id": 2975, "credit_id": "52fe4210c3a36847f8001367", "cast_id": 32, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 3}, {"name": "Sam Bottoms", "character": "Lance B. Johnson", "id": 8350, "credit_id": "52fe4210c3a36847f800136b", "cast_id": 33, "profile_path": "/4J8AQtnLV8OFIyTl3p0YnxZoPsi.jpg", "order": 4}, {"name": "Frederic Forrest", "character": "Jay 'Chef' Hicks", "id": 8351, "credit_id": "52fe4210c3a36847f800136f", "cast_id": 34, "profile_path": "/fCHsWrGcgfREM7e9POq6FCFGvR9.jpg", "order": 5}, {"name": "Albert Hall", "character": "Chief Phillips", "id": 8354, "credit_id": "52fe4210c3a36847f8001373", "cast_id": 35, "profile_path": "/yHGN2pIdBcBk19sAu0EchOxfYMY.jpg", "order": 6}, {"name": "Harrison Ford", "character": "Colonel Lucas", "id": 3, "credit_id": "52fe4210c3a36847f8001377", "cast_id": 36, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 7}, {"name": "Dennis Hopper", "character": "Photojournalist", "id": 2778, "credit_id": "52fe4210c3a36847f800137b", "cast_id": 38, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 8}, {"name": "G. D. Spradlin", "character": "General Corman", "id": 3173, "credit_id": "52fe4210c3a36847f800137f", "cast_id": 39, "profile_path": "/lyk0Fo343PJJ5gItBqGGl7oG112.jpg", "order": 9}, {"name": "Jerry Ziesmer", "character": "Jerry, Civilian", "id": 8346, "credit_id": "52fe4210c3a36847f8001383", "cast_id": 40, "profile_path": "/TCrODTVTktmyXk4PrD5fWvMJye.jpg", "order": 10}, {"name": "Francis Ford Coppola", "character": "Director (cameo)", "id": 1776, "credit_id": "52fe4210c3a36847f800138d", "cast_id": 42, "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "order": 11}, {"name": "Tom Mason", "character": "Supply Sergeant", "id": 80874, "credit_id": "52fe4210c3a36847f8001391", "cast_id": 43, "profile_path": "/lWPITFNNJOoJprOoatAgfVRV9pH.jpg", "order": 12}, {"name": "Scott Glenn", "character": "Lieutenant Richard M. Colby", "id": 349, "credit_id": "52fe4210c3a36847f8001395", "cast_id": 44, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 13}, {"name": "Colleen Camp", "character": "Miss May", "id": 13023, "credit_id": "52fe4211c3a36847f800139f", "cast_id": 46, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 14}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4210c3a36847f80012c7", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 7.4, "runtime": 153}, "9562": {"poster_path": "/A6tzqXzlUjCOZT035zYOLqfYFSr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19480739, "overview": "A group of archaeological students become trapped in the past when they go there to retrieve their professor. The group must survive in 14th century France long enough to be rescued.", "video": false, "id": 9562, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Timeline", "tagline": "In 6 hours they'll be history!", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0300556", "adult": false, "backdrop_path": "/6PIQKisHu0oIvNpOGNoUHgxEJ0.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "Donners' Company", "id": 431}, {"name": "Cobalt Media Group", "id": 18619}, {"name": "Artists Production Group (APG)", "id": 18620}], "release_date": "2003-11-26", "popularity": 1.31618319188983, "original_title": "Timeline", "budget": 80000000, "cast": [{"name": "Paul Walker", "character": "Chris Johnston", "id": 8167, "credit_id": "52fe450ac3a36847f80b8c55", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Frances O'Connor", "character": "Kate Ericson", "id": 1518, "credit_id": "52fe450ac3a36847f80b8c59", "cast_id": 2, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 1}, {"name": "Gerard Butler", "character": "Andre Marek", "id": 17276, "credit_id": "52fe450ac3a36847f80b8c5d", "cast_id": 3, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 2}, {"name": "Billy Connolly", "character": "Professor E.A. Johnston", "id": 9188, "credit_id": "52fe450ac3a36847f80b8c61", "cast_id": 4, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 3}, {"name": "David Thewlis", "character": "Robert Doniger", "id": 11207, "credit_id": "52fe450ac3a36847f80b8c65", "cast_id": 5, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 4}, {"name": "Anna Friel", "character": "Lady Claire", "id": 58016, "credit_id": "52fe450ac3a36847f80b8c69", "cast_id": 6, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 5}, {"name": "Neal McDonough", "character": "Frank Gordon", "id": 2203, "credit_id": "52fe450ac3a36847f80b8c6d", "cast_id": 7, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 6}, {"name": "Matt Craven", "character": "Steven Kramer", "id": 13525, "credit_id": "52fe450ac3a36847f80b8c71", "cast_id": 8, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 7}, {"name": "Ethan Embry", "character": "Josh Stern", "id": 58019, "credit_id": "52fe450ac3a36847f80b8c75", "cast_id": 9, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 8}, {"name": "Michael Sheen", "character": "Lord Oliver", "id": 3968, "credit_id": "52fe450ac3a36847f80b8c79", "cast_id": 10, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 9}, {"name": "Lambert Wilson", "character": "Lord Arnaut", "id": 2192, "credit_id": "52fe450ac3a36847f80b8c7d", "cast_id": 11, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 10}, {"name": "Marton Csokas", "character": "Sir William De Kere / William Decker", "id": 20982, "credit_id": "52fe450ac3a36847f80b8c81", "cast_id": 12, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 11}, {"name": "Rossif Sutherland", "character": "Fran\u00e7ois Dontelle", "id": 58014, "credit_id": "52fe450ac3a36847f80b8c85", "cast_id": 13, "profile_path": "/pKDCSFxZF4Fe8xLIFidaZQYmnNF.jpg", "order": 12}, {"name": "David La Haye", "character": "Arnaut's Deputy", "id": 58012, "credit_id": "52fe450ac3a36847f80b8c89", "cast_id": 15, "profile_path": "/8JQT0LMz3LMc4soF2uhTEfK7KMs.jpg", "order": 14}, {"name": "Steve Kahan", "character": "Baker", "id": 14328, "credit_id": "52fe450ac3a36847f80b8ce7", "cast_id": 32, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 15}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe450ac3a36847f80b8c8f", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 5.1, "runtime": 116}, "8224": {"poster_path": "/oEgBIcIJb1Z5sperKxE8Pb4tTr0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96618699, "overview": "A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.", "video": false, "id": 8224, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "8MM", "tagline": "You can't prepare for where the truth will take you.", "vote_count": 117, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bfiFGeaSaMRJLvDY8USyeoylnh2.jpg", "poster_path": "/AqSVDVjICt4CHqH3NIjuCbO8rFT.jpg", "id": 226833, "name": "8MM Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134273", "adult": false, "backdrop_path": "/7mg6NTzvqpMDHtatxA36jFhXvdT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-02-25", "popularity": 0.711558805327077, "original_title": "8MM", "budget": 40000000, "cast": [{"name": "Nicolas Cage", "character": "Tom Welles", "id": 2963, "credit_id": "52fe4498c3a36847f809f195", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Max California", "id": 73421, "credit_id": "52fe4498c3a36847f809f199", "cast_id": 4, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Eddie Poole", "id": 4691, "credit_id": "52fe4498c3a36847f809f19d", "cast_id": 5, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Chris Bauer", "character": "George Higgins", "id": 4445, "credit_id": "52fe4498c3a36847f809f1a1", "cast_id": 6, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 3}, {"name": "Anthony Heald", "character": "Daniel Longdale", "id": 16293, "credit_id": "52fe4498c3a36847f809f1a5", "cast_id": 7, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Dino Velvet", "id": 53, "credit_id": "52fe4498c3a36847f809f1a9", "cast_id": 8, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Catherine Keener", "character": "Amy Welles", "id": 2229, "credit_id": "52fe4498c3a36847f809f1ad", "cast_id": 9, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 6}, {"name": "Norman Reedus", "character": "Warren Anderson", "id": 4886, "credit_id": "52fe4498c3a36847f809f1b1", "cast_id": 10, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 7}, {"name": "Amy Morton", "character": "Janet Mathews", "id": 26930, "credit_id": "52fe4498c3a36847f809f1b5", "cast_id": 11, "profile_path": "/cf0V37Bw9BX2jlBCxrVETz0jkcl.jpg", "order": 8}, {"name": "Jenny Powell", "character": "Mary Ann Mathews", "id": 26919, "credit_id": "52fe4498c3a36847f809f1b9", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Claudia Aros", "character": "Miami Girlfriend", "id": 27003, "credit_id": "52fe4498c3a36847f809f1bd", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Mario Ernesto S\u00e1nchez", "character": "Taxi Driver", "id": 26651, "credit_id": "52fe4498c3a36847f809f1c1", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Suzy Nakamura", "character": "Computer Wizard", "id": 26998, "credit_id": "52fe4498c3a36847f809f1c5", "cast_id": 15, "profile_path": "/rymamRd9wzjZquxMBKWOkylD5wN.jpg", "order": 12}, {"name": "William Lawrence Mack", "character": "Larry", "id": 26972, "credit_id": "52fe4498c3a36847f809f1c9", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Myra Carter", "character": "Mrs. Christian", "id": 54159, "credit_id": "52fe4498c3a36847f809f1cd", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Torsten Voges", "character": "Stick", "id": 1238, "credit_id": "54dc86af92514101bf000136", "cast_id": 29, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 15}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a36847f809f18b", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.9, "runtime": 123}, "33": {"poster_path": "/9oPodyvCWyPMZJDjg29tBfFRwtG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159157447, "overview": "William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.", "video": false, "id": 33, "genres": [{"id": 37, "name": "Western"}], "title": "Unforgiven", "tagline": "", "vote_count": 298, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105695", "adult": false, "backdrop_path": "/nKYH8DaWjKE3RhEyaa0Ue01kPCp.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1992-08-07", "popularity": 1.6754713804049, "original_title": "Unforgiven", "budget": 14000000, "cast": [{"name": "Clint Eastwood", "character": "Bill Munny", "id": 190, "credit_id": "52fe4211c3a36847f8001447", "cast_id": 4, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Little Bill Daggett", "id": 193, "credit_id": "52fe4211c3a36847f800144b", "cast_id": 6, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Ned Logan", "id": 192, "credit_id": "52fe4211c3a36847f80014a5", "cast_id": 25, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Richard Harris", "character": "English Bob", "id": 194, "credit_id": "52fe4211c3a36847f800144f", "cast_id": 7, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 3}, {"name": "Jaimz Woolvett", "character": "The Schofield Kid", "id": 3710, "credit_id": "52fe4211c3a36847f8001459", "cast_id": 9, "profile_path": "/psrj817qm3RPBzF2VzPFgL8qdwq.jpg", "order": 4}, {"name": "Anna Thomson", "character": "Delilah Fitzgerald", "id": 3711, "credit_id": "52fe4211c3a36847f800145d", "cast_id": 10, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 5}, {"name": "Saul Rubinek", "character": "W.W. Beauchamp", "id": 3712, "credit_id": "52fe4211c3a36847f8001461", "cast_id": 11, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 6}, {"name": "Frances Fisher", "character": "Strawberry Alice", "id": 3713, "credit_id": "52fe4211c3a36847f8001465", "cast_id": 12, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 7}, {"name": "David Mucci", "character": "Quick Mike", "id": 3714, "credit_id": "52fe4211c3a36847f8001469", "cast_id": 13, "profile_path": "/qD1Acd4PngkCtUl2qmPAFdlyACM.jpg", "order": 8}, {"name": "Rob Campbell", "character": "Davey Bunting", "id": 2843, "credit_id": "52fe4211c3a36847f800146d", "cast_id": 14, "profile_path": "/hRJihsQgFfm86htdiM6xL4BpZE9.jpg", "order": 9}, {"name": "Anthony James", "character": "Skinny Dubois", "id": 3715, "credit_id": "52fe4211c3a36847f8001471", "cast_id": 15, "profile_path": "/IovpB0rm77GljLMLP5S3VW6AAi.jpg", "order": 10}, {"name": "Ron White", "character": "Clyde Ledbetter", "id": 1242148, "credit_id": "5468f5b4eaeb816b4f001312", "cast_id": 28, "profile_path": "/wwct4MqN4iEMJQk27qeMj4qMoUR.jpg", "order": 11}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f8001437", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.4, "runtime": 131}, "35": {"poster_path": "/eCytnEriVur3rT47NWfkgPXD9qs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 527068851, "overview": "After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.", "video": false, "id": 35, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Simpsons Movie", "tagline": "See our family. And feel better about yours.", "vote_count": 566, "homepage": "http://www.simpsonsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462538", "adult": false, "backdrop_path": "/4RaoQCwliLvbokgpFzMXvSznC0h.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gracie Films", "id": 18}], "release_date": "2007-07-27", "popularity": 1.042271596986, "original_title": "The Simpsons Movie", "budget": 75000000, "cast": [{"name": "Dan Castellaneta", "character": "Homer / Itchy / Barney / Grampa / Stage Manager / Krusty the Clown / Mayor Quimby / Mayor's Aide / Multi-Eyed Squirrel / Panicky Man / Sideshow Mel / Mr. Teeny / EPA Official / Kissing Cop / Bear / Boy on Phone / NSA Worker / Officer / Santa's Little Helper / Squeaky-Voiced Teen (voice)", "id": 198, "credit_id": "52fe4211c3a36847f8001525", "cast_id": 2, "profile_path": "/dmId1hAL2tluhrgVPChDabeoA0n.jpg", "order": 0}, {"name": "Julie Kavner", "character": "Marge Simpson / Selma / Patty (voice)", "id": 199, "credit_id": "52fe4211c3a36847f8001529", "cast_id": 3, "profile_path": "/AuhOCpsQwr09nBvTtaqArggLNd7.jpg", "order": 1}, {"name": "Nancy Cartwright", "character": "Bart Simpson / Maggie Simpson / Ralph / Nelson / Todd Flanders / TV Daughter / Woman on Phone (voice)", "id": 200, "credit_id": "52fe4211c3a36847f800152d", "cast_id": 4, "profile_path": "/wb8RZu3vw7gDZoRFWNNpsbznRWC.jpg", "order": 2}, {"name": "Yeardley Smith", "character": "Lisa Simpson (voice)", "id": 5586, "credit_id": "52fe4211c3a36847f8001531", "cast_id": 5, "profile_path": "/g2LYM8XqkFiPsupUgky6PNuIenL.jpg", "order": 3}, {"name": "Hank Azaria", "character": "Professor Frink / Comic Book Guy / Moe / Chief Wiggum / Lou / Carl / Cletus / Bumblebee Man / Male EPA Worker / Dome Depot Announcer / Kissing Cop / Carnival Barker / Counter Man / Apu / Drederick Tatum / Sea Captain / EPA Passenger / Robot / Dr. Nick / Wise Guy (voice)", "id": 5587, "credit_id": "52fe4211c3a36847f8001535", "cast_id": 10, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Harry Shearer", "character": "Scratchy / Mr. Burns / Rev. Lovejoy / Ned Flanders / Lenny / Skull / President Arnold Schwarzenegger / Kent Brockman / Principal Skinner / Dr. Hibbert / Smithers / Toll Booth Man / Guard / Otto / Kang (voice)", "id": 6008, "credit_id": "52fe4211c3a36847f8001539", "cast_id": 13, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 5}, {"name": "Kelsey Grammer", "character": "Sideshow Bob (voice)", "id": 7090, "credit_id": "52fe4211c3a36847f800153d", "cast_id": 15, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 6}, {"name": "Maile Flanagan", "character": "Colin (voice)", "id": 23211, "credit_id": "52fe4211c3a36847f8001541", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Pamela Hayden", "character": "Milhouse Van Houten / Jimbo Jones / Rod Flanders (voice)", "id": 6009, "credit_id": "52fe4211c3a36847f8001545", "cast_id": 17, "profile_path": "/ugtzqXDJcI5SomOb3eNKVULbgqE.jpg", "order": 8}, {"name": "Marcia Wallace", "character": "Mrs. Krabappel (voice)", "id": 6036, "credit_id": "52fe4211c3a36847f8001549", "cast_id": 20, "profile_path": "/y0l14sNEvc1qaoQwwb5UGQuwOVM.jpg", "order": 9}, {"name": "Joe Mantegna", "character": "Fat Tony (voice)", "id": 3266, "credit_id": "52fe4211c3a36847f800154d", "cast_id": 21, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 10}, {"name": "Tom Hanks", "character": "Himself (voice)", "id": 31, "credit_id": "52fe4211c3a36847f8001551", "cast_id": 22, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 11}, {"name": "Billie Joe Armstrong", "character": "Green Day (voice)", "id": 95866, "credit_id": "52fe4211c3a36847f800160f", "cast_id": 60, "profile_path": "/pSHyO9ykNdjq1tSOAp0ukikPlR9.jpg", "order": 12}, {"name": "Tre Cool", "character": "Green Day (voice)", "id": 95868, "credit_id": "52fe4211c3a36847f8001613", "cast_id": 61, "profile_path": null, "order": 13}, {"name": "Tress MacNeille", "character": "Sweet Old Lady / Colin / Mrs. Skinner / Nelson's Mother / Pig / Cat Lady / Female EPA Worker / G.P.S. Woman / Cookie Kwan / Lindsey Naegle / TV Son / Medicine Woman / Girl on Phone (voice)", "id": 34983, "credit_id": "52fe4211c3a36847f8001617", "cast_id": 62, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 14}, {"name": "Albert Brooks", "character": "Russ Cargill (voice)", "id": 13, "credit_id": "52fe4211c3a36847f800161b", "cast_id": 63, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 15}, {"name": "Russi Taylor", "character": "Martin (voice)", "id": 6035, "credit_id": "52fe4211c3a36847f800161f", "cast_id": 64, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 16}, {"name": "Karl Wiedergott", "character": "Man / EPA Driver (voice)", "id": 156910, "credit_id": "52fe4211c3a36847f8001623", "cast_id": 65, "profile_path": null, "order": 17}, {"name": "Maggie Roswell", "character": "Helen Lovejoy (voice)", "id": 6007, "credit_id": "52fe4211c3a36847f8001627", "cast_id": 66, "profile_path": null, "order": 18}, {"name": "Philip Rosenthal", "character": "TV Dad (voice)", "id": 179632, "credit_id": "52fe4211c3a36847f800162b", "cast_id": 67, "profile_path": "/5ZTtVJ1tKI6OUamavdiohpyg3w9.jpg", "order": 19}], "directors": [{"name": "David Silverman", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f8001521", "profile_path": "/oatUUj2riEaUSoncMv1Ulheffog.jpg", "id": 197}], "vote_average": 6.8, "runtime": 87}, "122917": {"poster_path": "/qrFwjJ5nvFnpBCmXLI4YoeHJNBH.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 955119788, "overview": "Mere seconds after the events of \"Desolation\", Bilbo and Company continue to claim a mountain of treasure that was guarded long ago: But with Gandalf the Grey also facing some formidable foes of his own, the Hobbit is outmatched when the brutal army of orcs led by Azog the Defiler returns. But with other armies such as the elves and the men of Lake-Town, which are unsure to be trusted, are put to the ultimate test when Smaug's wrath, Azog's sheer strength, and Sauron's force of complete ends attack. All in all, the trusted armies have two choices: unite or die. But even worse, Bilbo gets put on a knife edge and finds himself fighting with Hobbit warfare with all of his might for his dwarf-friends, as the hope for Middle-Earth is all put in Bilbo's hands. The one \"precious\" thing to end it all.", "video": false, "id": 122917, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Hobbit: The Battle of the Five Armies", "tagline": "Witness the defining chapter of the Middle-Earth saga", "vote_count": 1229, "homepage": "http://www.thehobbit.com/", "belongs_to_collection": {"backdrop_path": "/7wO7MSnP5UcwR2cTHdJFF1vP4Ie.jpg", "poster_path": "/hQghXOjSS2xfzx9XnMyZqt8brCF.jpg", "id": 121938, "name": "The Hobbit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2310332", "adult": false, "backdrop_path": "/qhH3GyIfAnGv1pjdV3mw03qAilg.jpg", "production_companies": [{"name": "3Foot7", "id": 7413}, {"name": "WingNut Films", "id": 11}, {"name": "New Line Cinema", "id": 12}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}], "release_date": "2014-12-17", "popularity": 31.890486423754, "original_title": "The Hobbit: The Battle of the Five Armies", "budget": 250000000, "cast": [{"name": "Martin Freeman", "character": "Bilbo Baggins", "id": 7060, "credit_id": "52fe4a87c3a368484e158b93", "cast_id": 10, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf", "id": 1327, "credit_id": "52fe4a87c3a368484e158bb7", "cast_id": 20, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Richard Armitage", "character": "Thorin Oakenshield", "id": 30315, "credit_id": "52fe4a87c3a368484e158bab", "cast_id": 17, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 2}, {"name": "Ken Stott", "character": "Balin", "id": 25136, "credit_id": "52fe4a88c3a368484e158bdf", "cast_id": 30, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 3}, {"name": "Graham McTavish", "character": "Dwalin", "id": 95047, "credit_id": "52fe4a87c3a368484e158bd3", "cast_id": 27, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 4}, {"name": "William Kircher", "character": "Bifur", "id": 67123, "credit_id": "52fe4a88c3a368484e158bf3", "cast_id": 35, "profile_path": "/pgSkxH8LeJhNWKwG3D5690ZTLbs.jpg", "order": 5}, {"name": "James Nesbitt", "character": "Bofur", "id": 34715, "credit_id": "52fe4a87c3a368484e158bcf", "cast_id": 26, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 6}, {"name": "Stephen Hunter", "character": "Bombur", "id": 1193834, "credit_id": "52fe4a88c3a368484e158bf7", "cast_id": 36, "profile_path": "/xGKavu5mcGBOQMSawk9voZeEzN6.jpg", "order": 7}, {"name": "Dean O'Gorman", "character": "Fili", "id": 152566, "credit_id": "52fe4a87c3a368484e158b73", "cast_id": 4, "profile_path": "/lSXxMaASqm9TfnKaDNaxolEOW3A.jpg", "order": 8}, {"name": "Aidan Turner", "character": "Kili", "id": 207558, "credit_id": "52fe4a87c3a368484e158bbb", "cast_id": 21, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 9}, {"name": "John Callen", "character": "Ori", "id": 534336, "credit_id": "52fe4a88c3a368484e158bff", "cast_id": 38, "profile_path": "/k6JoHrkyGMH0b13yZxtLKtW1npz.jpg", "order": 10}, {"name": "Peter Hambleton", "character": "Gloin", "id": 1193832, "credit_id": "52fe4a88c3a368484e158be7", "cast_id": 32, "profile_path": "/jcsOAVVLyAnJpnZRAWoGtuI4nlk.jpg", "order": 11}, {"name": "Jed Brophy", "character": "Nori", "id": 173451, "credit_id": "52fe4a88c3a368484e158bef", "cast_id": 34, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 12}, {"name": "Mark Hadlow", "character": "Dori", "id": 81877, "credit_id": "52fe4a88c3a368484e158bfb", "cast_id": 37, "profile_path": "/qNBpe4BKgKrLF6yZrCtCjFMRFJv.jpg", "order": 13}, {"name": "Adam Brown", "character": "Ori", "id": 1193833, "credit_id": "52fe4a88c3a368484e158beb", "cast_id": 33, "profile_path": "/54iHvIA8ZTNfvKpb2ZxRY73A5MZ.jpg", "order": 14}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe4a87c3a368484e158b9f", "cast_id": 14, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 15}, {"name": "Evangeline Lilly", "character": "Tauriel", "id": 19034, "credit_id": "52fe4a88c3a368484e158c0b", "cast_id": 41, "profile_path": "/lsXb0Qt9WyYDJUdON26vmtKVkE6.jpg", "order": 16}, {"name": "Lee Pace", "character": "Thranduil", "id": 72095, "credit_id": "52fe4a87c3a368484e158b8f", "cast_id": 9, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 17}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe4a87c3a368484e158ba3", "cast_id": 15, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 18}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe4a87c3a368484e158baf", "cast_id": 18, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 19}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe4a87c3a368484e158bbf", "cast_id": 22, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 20}, {"name": "Ian Holm", "character": "Old Bilbo", "id": 65, "credit_id": "52fe4a87c3a368484e158bcb", "cast_id": 25, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 21}, {"name": "Mikael Persbrandt", "character": "Beorn", "id": 52398, "credit_id": "52fe4a88c3a368484e158be3", "cast_id": 31, "profile_path": "/yr557miX4IwMLqPfLQs3kWQZTMq.jpg", "order": 22}, {"name": "Sylvester McCoy", "character": "Radagast", "id": 80112, "credit_id": "52fe4a88c3a368484e158bdb", "cast_id": 29, "profile_path": "/hgM7jEkkwI0HHx3K44UE48gBbfa.jpg", "order": 23}, {"name": "Luke Evans", "character": "Bard", "id": 114019, "credit_id": "52fe4a87c3a368484e158b9b", "cast_id": 13, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 24}, {"name": "Stephen Fry", "character": "Master of Laketown", "id": 11275, "credit_id": "5507081c9251411db4002d9b", "cast_id": 58, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 25}, {"name": "John Bell", "character": "Bain", "id": 126667, "credit_id": "52fe4a87c3a368484e158b6f", "cast_id": 3, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 26}, {"name": "Ryan Gage", "character": "Alfrid", "id": 60349, "credit_id": "52fe4a88c3a368484e158c03", "cast_id": 39, "profile_path": "/fFn1u2WnYuRMBuCxxW661ppttsk.jpg", "order": 27}, {"name": "Peggy Nesbitt", "character": "Sigrid", "id": 1359824, "credit_id": "55070872c3a36862e500488c", "cast_id": 59, "profile_path": "/ArwjGFXBsUvLxMvI1VHc0eCkUys.jpg", "order": 28}, {"name": "Mary Nesbitt", "character": "Tilda", "id": 1359823, "credit_id": "550708b8c3a3683d78000b5b", "cast_id": 60, "profile_path": "/vgiEo4KYAIoLWECsVBWebRBnwnr.jpg", "order": 29}, {"name": "Manu Bennett", "character": "Azog", "id": 41782, "credit_id": "52fe4a87c3a368484e158bb3", "cast_id": 19, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 30}, {"name": "John Tui", "character": "Bolg", "id": 205406, "credit_id": "55070921c3a368262e004994", "cast_id": 61, "profile_path": "/7ZBf1x5SFm8iFiKG5trd5VaQCIO.jpg", "order": 31}, {"name": "Billy Connolly", "character": "Dain", "id": 9188, "credit_id": "52fe4a87c3a368484e158bc3", "cast_id": 23, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 32}, {"name": "Benedict Cumberbatch", "character": "Smaug / Necromancer (voice)", "id": 71580, "credit_id": "52fe4a87c3a368484e158b97", "cast_id": 11, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 33}, {"name": "Kelly Kilgour", "character": "Soury", "id": 986734, "credit_id": "55070b4c92514174b6004612", "cast_id": 62, "profile_path": "/43zuUGlaHIOMak260qMH6wUVkb2.jpg", "order": 34}, {"name": "Sarah Peirse", "character": "Hilda Bianca", "id": 15092, "credit_id": "55070b7192514174b6004617", "cast_id": 63, "profile_path": "/dILxeuQbDxtSxMCL863X4qum29X.jpg", "order": 35}, {"name": "Nick Blake", "character": "Percy", "id": 240024, "credit_id": "55070bb5c3a36862e9004f2d", "cast_id": 64, "profile_path": "/7rtqlDb4WnqvL069OA5yZx5yOS8.jpg", "order": 36}, {"name": "Simon London", "character": "Feren", "id": 1440652, "credit_id": "55070c77c3a36862e9004f40", "cast_id": 65, "profile_path": "/nlUl5QPRQal4Q58bI9As9l34egx.jpg", "order": 37}, {"name": "Conan Stevens", "character": "Keeper of the Dungeons", "id": 127453, "credit_id": "52fe4a87c3a368484e158bd7", "cast_id": 28, "profile_path": "/8mlrCTSXDInF15w6CO4IYgbPKg7.jpg", "order": 38}, {"name": "Elijah Wood", "character": "Frodo", "id": 109, "credit_id": "52fe4a87c3a368484e158ba7", "cast_id": 16, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 39}, {"name": "Bret McKenzie", "character": "Lindir", "id": 105584, "credit_id": "52fe4a87c3a368484e158bc7", "cast_id": 24, "profile_path": "/tEP4b5bTpSxJUHOYItg5xrZh43F.jpg", "order": 40}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a368484e158b65", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.3, "runtime": 144}, "38": {"poster_path": "/gutwXkVChJkpIrclokNESybj0GC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72000000, "overview": "A man, Joel Barish, heartbroken that his girlfriend Clementine underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realizes that he still loves her, and may be too late to correct his mistake.", "video": false, "id": 38, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Eternal Sunshine of the Spotless Mind", "tagline": "I already forget how I used to feel about you.", "vote_count": 875, "homepage": "http://www.eternalsunshine.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338013", "adult": false, "backdrop_path": "/1dXTsaFxHoF9cas08UjAqE8NqOW.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Anonymous Content", "id": 10039}, {"name": "This Is That Productions", "id": 10059}], "release_date": "2004-03-19", "popularity": 1.29747481538596, "original_title": "Eternal Sunshine of the Spotless Mind", "budget": 20000000, "cast": [{"name": "Jim Carrey", "character": "Joel Barish", "id": 206, "credit_id": "52fe4211c3a36847f800167f", "cast_id": 5, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Clementine Kruczynski", "id": 204, "credit_id": "52fe4211c3a36847f8001673", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Patrick", "id": 109, "credit_id": "52fe4211c3a36847f8001677", "cast_id": 3, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Stan", "id": 103, "credit_id": "52fe4211c3a36847f800167b", "cast_id": 4, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Kirsten Dunst", "character": "Mary", "id": 205, "credit_id": "52fe4211c3a36847f8001683", "cast_id": 6, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "Dr. Howard Mierzwiak", "id": 207, "credit_id": "52fe4211c3a36847f8001687", "cast_id": 7, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "Ryan Whitney", "character": "Young Joel", "id": 208, "credit_id": "52fe4211c3a36847f800168b", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Jane Adams", "character": "Carrie", "id": 209, "credit_id": "52fe4211c3a36847f800168f", "cast_id": 9, "profile_path": "/HbQfL01xmV1psnh0WvldIBzDg3.jpg", "order": 7}, {"name": "Debbon Ayer", "character": "Joel's mother", "id": 211, "credit_id": "52fe4211c3a36847f8001693", "cast_id": 10, "profile_path": "/uWqRVvIotKf6MOnkW0qf2AcoVNq.jpg", "order": 8}, {"name": "David Cross", "character": "Rob", "id": 212, "credit_id": "52fe4211c3a36847f8001697", "cast_id": 11, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 9}, {"name": "Gerry Robert Byrne", "character": "Train Conducter", "id": 213, "credit_id": "52fe4211c3a36847f800169b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Brian Price", "character": "Young Bully", "id": 214, "credit_id": "52fe4211c3a36847f800169f", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Josh Flitter", "character": "Young Bully", "id": 216, "credit_id": "52fe4211c3a36847f80016a3", "cast_id": 14, "profile_path": "/6RCA8tDWBxIVk9N3IqUjJEAzYGv.jpg", "order": 12}, {"name": "Paul Litowsky", "character": "Young Bully", "id": 217, "credit_id": "52fe4211c3a36847f80016a7", "cast_id": 15, "profile_path": "/dMcbqtmt6hPbGr6wiHpuaFziJmP.jpg", "order": 13}, {"name": "Lola Daehler", "character": "Young Clementine", "id": 220, "credit_id": "52fe4211c3a36847f80016ab", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Amir Ali Said", "character": "Young Bully", "id": 210, "credit_id": "52fe4211c3a36847f80016af", "cast_id": 18, "profile_path": "/pRMk72kpTkYaDEjZKcEzUB9Jx0d.jpg", "order": 15}, {"name": "Deirdre O'Connell", "character": "Hollis", "id": 77013, "credit_id": "52fe4211c3a36847f80016ed", "cast_id": 29, "profile_path": "/1dPJbDo3ghv7eTqNSeiTCWBwnWz.jpg", "order": 16}, {"name": "Lauren Adler", "character": "Rollerblader", "id": 221, "credit_id": "52fe4211c3a36847f80016b3", "cast_id": 19, "profile_path": null, "order": 17}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f800166f", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 7.6, "runtime": 108}, "46429": {"poster_path": "/1FKOhUUdkXlh7g9jiU0jl7suP9p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a nun broke her covenant with God to save the life of Aman, her unborn son, he was cursed for life. As an adult, Aman (Snipes) has killed those who have crossed him. But his curse brings his victims back to life, and as the undead, they pursue him endlessly for revenge. Forever suffering this curse, Aman enlists Fabulos (Smith), a young gunman, to fight by his side against his undead victims.", "video": false, "id": 46429, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 37, "name": "Western"}], "title": "Gallowwalkers", "tagline": "Live by the gun. Die by the gun. Come back for more.", "vote_count": 81, "homepage": "http://www.gallowwalker.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0829176", "adult": false, "backdrop_path": "/uih89zQNhmywCQw8a61nZpoHGPL.jpg", "production_companies": [{"name": "Boundless Pictures", "id": 15948}], "release_date": "2013-08-06", "popularity": 0.409674557446708, "original_title": "Gallowwalkers", "budget": 17000000, "cast": [{"name": "Wesley Snipes", "character": "Aman", "id": 10814, "credit_id": "52fe46f6c3a36847f811c22f", "cast_id": 1, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Riley Smith", "character": "Fabulos", "id": 67850, "credit_id": "52fe46f6c3a36847f811c233", "cast_id": 2, "profile_path": "/pef2GeUoMY1ECORr0n3ev6EO6m2.jpg", "order": 1}, {"name": "Tanit Phoenix", "character": "Angel", "id": 37769, "credit_id": "52fe46f6c3a36847f811c237", "cast_id": 3, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 2}, {"name": "Simona Brhlikova", "character": "Kisscut", "id": 136136, "credit_id": "52fe46f6c3a36847f811c23b", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Steven Elder", "character": "Apollo Jones", "id": 80371, "credit_id": "52fe46f6c3a36847f811c23f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jenny Gago", "character": "Mistress", "id": 129872, "credit_id": "52fe46f6c3a36847f811c247", "cast_id": 8, "profile_path": "/pflr8vyv1CF9024D8cnUCZpZfwb.jpg", "order": 7}, {"name": "Kevin Howarth", "character": "Kansa", "id": 92996, "credit_id": "52fe46f6c3a36847f811c24b", "cast_id": 9, "profile_path": "/lOP0DxOBXhvh9KC5Yba5X2L4UJS.jpg", "order": 8}, {"name": "Alyssa Pridham", "character": "Sueno", "id": 136137, "credit_id": "52fe46f6c3a36847f811c24f", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Alex Avant", "character": "Forty Bold", "id": 136138, "credit_id": "52fe46f6c3a36847f811c253", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Hector Hank", "character": "Hool", "id": 136139, "credit_id": "52fe46f6c3a36847f811c257", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Jack Bowyer", "character": "Bubis", "id": 136140, "credit_id": "52fe46f6c3a36847f811c25b", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Patrick Bergin", "character": "Marshall Gaza", "id": 29459, "credit_id": "52fe46f6c3a36847f811c271", "cast_id": 17, "profile_path": "/wmwtMCZsFTlckrsCpuz0jtuWu35.jpg", "order": 13}], "directors": [{"name": "Andrew Goth", "department": "Directing", "job": "Director", "credit_id": "52fe46f6c3a36847f811c261", "profile_path": null, "id": 136141}], "vote_average": 4.2, "runtime": 90}, "98357": {"poster_path": "/pYDj2b15p4YdNz88XvO7QmBoHgD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19701164, "overview": "In a broken city rife with injustice, ex-cop Billy Taggart (Mark Wahlberg) seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor (Russell Crowe). Billy's relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force - and the mayor's worst nightmare.", "video": false, "id": 98357, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Broken City", "tagline": "Proof Can Be a Powerful Weapon.", "vote_count": 295, "homepage": "http://www.brokencitymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1235522", "adult": false, "backdrop_path": "/5VsPAeiXGy7PhvYlbQFPO2FO3H4.jpg", "production_companies": [{"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Inferno International", "id": 7415}, {"name": "Regency Enterprises", "id": 508}, {"name": "Black Bear Pictures", "id": 22146}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Closest to the Hole Productions", "id": 8537}, {"name": "Leverage Communications", "id": 25790}, {"name": "Envision Entertainment Corporation", "id": 11030}], "release_date": "2013-01-18", "popularity": 0.489398387059845, "original_title": "Broken City", "budget": 56000000, "cast": [{"name": "Mark Wahlberg", "character": "Billy Taggart", "id": 13240, "credit_id": "52fe4a0f9251416c750dc4dd", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Nicholas Hostetler", "id": 934, "credit_id": "52fe4a0f9251416c750dc4e1", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Cathleen Hostetler", "id": 1922, "credit_id": "52fe4a0f9251416c750dc4e5", "cast_id": 5, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "Jeffrey Wright", "character": "Carl Fairbanks", "id": 2954, "credit_id": "52fe4a0f9251416c750dc4ef", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 3}, {"name": "Barry Pepper", "character": "Jack Valliant", "id": 12834, "credit_id": "52fe4a0f9251416c750dc4f3", "cast_id": 8, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 4}, {"name": "Alona Tal", "character": "Katy Bradshaw", "id": 203096, "credit_id": "52fe4a0f9251416c750dc4f7", "cast_id": 9, "profile_path": "/k32JlDCKKItwaxqJn6qA6bbZE7H.jpg", "order": 5}, {"name": "Natalie Martinez", "character": "Natalie Barrow", "id": 76511, "credit_id": "52fe4a0f9251416c750dc4fb", "cast_id": 10, "profile_path": "/9F8hCTTuDfPn5DPjsSuwxaJVwT4.jpg", "order": 6}, {"name": "Michael Beach", "character": "Tony Jansen", "id": 87118, "credit_id": "52fe4a0f9251416c750dc4ff", "cast_id": 11, "profile_path": "/lOlWhURNKyZHn71dvq7qC7fiwN6.jpg", "order": 7}, {"name": "Kyle Chandler", "character": "Paul Andrews", "id": 3497, "credit_id": "52fe4a0f9251416c750dc503", "cast_id": 12, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 8}, {"name": "James Ransone", "character": "Todd Lancaster", "id": 5296, "credit_id": "52fe4a0f9251416c750dc507", "cast_id": 13, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 9}, {"name": "Griffin Dunne", "character": "Sam Lancaster", "id": 2171, "credit_id": "52fe4a0f9251416c750dc50b", "cast_id": 14, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 10}, {"name": "Britney Theriot", "character": "Valerie", "id": 1141737, "credit_id": "52fe4a0f9251416c750dc50f", "cast_id": 15, "profile_path": "/6LGLryrGdvwJcnBiUpea98YOZOY.jpg", "order": 11}, {"name": "Odessa Sykes", "character": "Secretary", "id": 586270, "credit_id": "52fe4a0f9251416c750dc513", "cast_id": 16, "profile_path": "/oxuXS981jmkUbaqog7UmKLVgmVL.jpg", "order": 12}, {"name": "Luis Tolentino", "character": "Mikey Tavarez", "id": 1273242, "credit_id": "52fe4a0f9251416c750dc517", "cast_id": 17, "profile_path": "/2oTbyi1HoSMKUEuJSYTIivyC4Hy.jpg", "order": 13}, {"name": "Tony Bentley", "character": "Judge", "id": 120253, "credit_id": "52fe4a0f9251416c750dc51b", "cast_id": 18, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 14}, {"name": "Andrea Frankle", "character": "Prosecutor", "id": 946356, "credit_id": "52fe4a0f9251416c750dc51f", "cast_id": 19, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 15}, {"name": "William Ragsdale", "character": "Mr. Davies", "id": 31467, "credit_id": "52fe4a0f9251416c750dc523", "cast_id": 20, "profile_path": "/njtQMv0vm9uNzSdVTqjYTu1TzNd.jpg", "order": 16}, {"name": "Chance Kelly", "character": "Murdock", "id": 17194, "credit_id": "52fe4a0f9251416c750dc587", "cast_id": 37, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 17}, {"name": "Justin Chambers", "character": "Ryan Blake", "id": 20746, "credit_id": "53387e4ac3a3680e9f003e9f", "cast_id": 38, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 18}, {"name": "Ric Reitz", "character": "Mitch Rappaport", "id": 118595, "credit_id": "53a807350e0a26143f005bbd", "cast_id": 52, "profile_path": "/oxskVXgWJ8EkbCxuuF7OeHPxeaA.jpg", "order": 19}, {"name": "Lydia Hull", "character": "Mitch Rapapport's Wife", "id": 1042684, "credit_id": "53a807620e0a261432005904", "cast_id": 53, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 20}], "directors": [{"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4a0f9251416c750dc4d3", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}], "vote_average": 5.7, "runtime": 109}, "55": {"poster_path": "/8gEXmIzw1tDnBfOaCFPimkNIkmm.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 21000000, "overview": "Three interconnected stories about the different strata of life in Mexico City all resolve with a fatal car accident. Octavio is trying to raise enough money to run away with his sister-in-law, and decides to enter his dog Cofi into the world of dogfighting. After a dogfight goes bad, Octavio flees in his car, running a red light and causing the accident. Daniel and Valeria's new-found bliss is prematurely ended when she loses her leg in the accident. El Chivo is a homeless man who cares for stray dogs and is there to witness the collision. Amores Perros is the first film in I\u00f1\u00e1rritu's \"Death Trilogy\".", "video": false, "id": 55, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Love's a Bitch", "tagline": "Love. Betrayal. Death.", "vote_count": 113, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0245712", "adult": false, "backdrop_path": "/rGQ5S7T4u1VHRx9yZ11ff8sz2TT.jpg", "production_companies": [{"name": "Altavista Films", "id": 5084}, {"name": "Zeta Film", "id": 11230}], "release_date": "2000-03-14", "popularity": 0.45696492894152, "original_title": "Amores perros", "budget": 2000000, "cast": [{"name": "Gael Garc\u00eda Bernal", "character": "Octavio", "id": 258, "credit_id": "52fe4211c3a36847f8001741", "cast_id": 2, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 0}, {"name": "Vanessa Bauche", "character": "Susana", "id": 259, "credit_id": "52fe4211c3a36847f8001745", "cast_id": 3, "profile_path": "/uO2cH3HN7avXrW5pJw0MqvNvuGd.jpg", "order": 1}, {"name": "Goya Toledo", "character": "Valeria", "id": 261, "credit_id": "52fe4211c3a36847f8001749", "cast_id": 4, "profile_path": "/rskTnamfwea5xhtEelpRlqo1tCD.jpg", "order": 2}, {"name": "Alvaro Guerrero", "character": "Daniel", "id": 262, "credit_id": "52fe4211c3a36847f800174d", "cast_id": 5, "profile_path": "/d2k2Z0XgSIkBJxAuedS5yOF9O1U.jpg", "order": 3}, {"name": "Emilio Echevarr\u00eda", "character": "El Chivo", "id": 263, "credit_id": "52fe4211c3a36847f8001751", "cast_id": 6, "profile_path": "/iGgExtFoyuIAmll19gEmorWQAPX.jpg", "order": 4}, {"name": "Jorge Salinas", "character": "Luis", "id": 264, "credit_id": "52fe4211c3a36847f8001755", "cast_id": 7, "profile_path": "/jE1rqg8ZvYC0q6oEjCOYCvLrXLt.jpg", "order": 5}, {"name": "Rodrigo Murray", "character": "Gustavo", "id": 265, "credit_id": "52fe4211c3a36847f8001759", "cast_id": 8, "profile_path": "/qNUDwOV5TiEcKnugCBMofIIhgvV.jpg", "order": 6}, {"name": "Humberto Busto", "character": "Jorge", "id": 266, "credit_id": "52fe4211c3a36847f800175d", "cast_id": 9, "profile_path": "/u9Y1oxHrkj6J69HDTWPCgtMcIrp.jpg", "order": 7}, {"name": "Gerardo Campbell", "character": "Mauricio", "id": 267, "credit_id": "52fe4211c3a36847f8001761", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Rosa Mar\u00eda Bianchi", "character": "T\u00eda Luisa", "id": 268, "credit_id": "52fe4211c3a36847f8001765", "cast_id": 11, "profile_path": "/qZkZhM3fa0IH5qgMOArHtZ0K6pH.jpg", "order": 9}, {"name": "Dunia Sald\u00edvar", "character": "Mama Susana", "id": 269, "credit_id": "52fe4211c3a36847f8001769", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Adriana Barraza", "character": "Mama Octavio", "id": 270, "credit_id": "52fe4211c3a36847f800176d", "cast_id": 13, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 11}, {"name": "Jos\u00e9 Sefami", "character": "Leonardo", "id": 271, "credit_id": "52fe4211c3a36847f8001771", "cast_id": 14, "profile_path": "/3HBwhHXeCBOkf4Cx0jO5MEOmaf6.jpg", "order": 12}, {"name": "Lourdes Echevarr\u00eda", "character": "Maru", "id": 272, "credit_id": "52fe4211c3a36847f8001775", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Marco P\u00e9rez", "character": "Ramiro", "id": 260, "credit_id": "52fe4211c3a36847f80017a9", "cast_id": 24, "profile_path": "/348xOvXxkEiKXa5PMSWgBBzkHyw.jpg", "order": 14}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f800173d", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 7.5, "runtime": 154}, "58": {"poster_path": "/iwvyZBRD7qfDQ8ylRmf5NbLC5Oi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1065659812, "overview": "The high-seas adventures of happy-go-lucky troublemaker Captain Jack Sparrow, young Will Turner and headstrong beauty Elizabeth Swann continues as Sparrow works his way out of a blood debt with the ghostly Davey Jones, he also attempts to avoid eternal damnation.", "video": false, "id": 58, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: Dead Man's Chest", "tagline": "Jack is back!", "vote_count": 1981, "homepage": "http://disney.go.com/disneypictures/pirates/", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0383574", "adult": false, "backdrop_path": "/hdHgIcljPHli4xaJGt0INz8Gn3J.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Second Mate Productions", "id": 19936}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-07-07", "popularity": 1.58940686733895, "original_title": "Pirates of the Caribbean: Dead Man's Chest", "budget": 200000000, "cast": [{"name": "Johnny Depp", "character": "Captain Jack Sparrow", "id": 85, "credit_id": "52fe4212c3a36847f80018c3", "cast_id": 37, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Will Turner", "id": 114, "credit_id": "52fe4211c3a36847f8001823", "cast_id": 3, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Elizabeth Swann", "id": 116, "credit_id": "52fe4211c3a36847f800181f", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Davy Jones", "id": 2440, "credit_id": "52fe4211c3a36847f8001831", "cast_id": 6, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Jack Davenport", "character": "James Norrington", "id": 1709, "credit_id": "52fe4211c3a36847f8001827", "cast_id": 4, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 4}, {"name": "Stellan Skarsg\u00e5rd", "character": "Bootstrap Bill", "id": 1640, "credit_id": "52fe4211c3a36847f8001835", "cast_id": 7, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 5}, {"name": "Tom Hollander", "character": "Lord Beckett", "id": 2441, "credit_id": "52fe4211c3a36847f8001839", "cast_id": 8, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 6}, {"name": "Jonathan Pryce", "character": "Governor Weatherby Swann", "id": 378, "credit_id": "52fe4212c3a36847f80018bf", "cast_id": 36, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 7}, {"name": "Naomie Harris", "character": "Tia Dalma", "id": 2038, "credit_id": "52fe4211c3a36847f800183d", "cast_id": 9, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 8}, {"name": "Geoffrey Rush", "character": "Captain Barbossa", "id": 118, "credit_id": "52fe4212c3a36847f800189b", "cast_id": 26, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 9}, {"name": "Kevin McNally", "character": "Joshamee Gibbs", "id": 2449, "credit_id": "52fe4212c3a36847f800189f", "cast_id": 27, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 10}, {"name": "Lee Arenberg", "character": "Pintel", "id": 1710, "credit_id": "52fe4212c3a36847f80018a3", "cast_id": 29, "profile_path": "/ziQH86o2BInPEUF7VW0gYte35Tw.jpg", "order": 11}, {"name": "Mackenzie Crook", "character": "Ragetti", "id": 1711, "credit_id": "52fe4212c3a36847f80018a7", "cast_id": 30, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 12}, {"name": "David Bailie", "character": "Cotton", "id": 1715, "credit_id": "52fe4212c3a36847f80018ab", "cast_id": 31, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 13}, {"name": "Lauren Maher", "character": "Scarlet", "id": 2450, "credit_id": "52fe4212c3a36847f80018af", "cast_id": 32, "profile_path": "/6lOXL14xydRIplYqVv6KBdNs9MG.jpg", "order": 14}, {"name": "Alex Norton", "character": "Captain Bellamy", "id": 2451, "credit_id": "52fe4212c3a36847f80018b3", "cast_id": 33, "profile_path": "/yqmwlDs8CDxCJNa72lNxNwRKoSa.jpg", "order": 15}, {"name": "Vanessa Branch", "character": "Giselle", "id": 2452, "credit_id": "52fe4212c3a36847f80018b7", "cast_id": 34, "profile_path": "/we5DEoTqeJznGe8m7ssRgmVXmwB.jpg", "order": 16}, {"name": "Luke de Woolfson", "character": "Frightened Sailor", "id": 82636, "credit_id": "52fe4212c3a36847f80018bb", "cast_id": 35, "profile_path": "/lsJ51EAV14lf0F39nGnlHz7CdM8.jpg", "order": 17}, {"name": "Jonathan Kite", "character": "Black Pearl Pirate", "id": 1254626, "credit_id": "52fe4212c3a36847f80018d3", "cast_id": 40, "profile_path": "/yjCvcUO8DnhlFcLVzIQsbBrbxsV.jpg", "order": 18}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f800182d", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.6, "runtime": 151}, "59": {"poster_path": "/pHl0rnnd4RyNNUKVt7blQdtaAbd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60740827, "overview": "An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.", "video": false, "id": 59, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A History of Violence", "tagline": "Tom Stall had the perfect life... until he became a hero.", "vote_count": 162, "homepage": "http://wwws.warnerbros.de/historyofviolence/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0399146", "adult": false, "backdrop_path": "/8rbvmhGmUqEjLmo2mDycTazEaAc.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "New Line Cinema", "id": 12}, {"name": "BenderSpink", "id": 6363}], "release_date": "2005-09-23", "popularity": 0.691873883783024, "original_title": "A History of Violence", "budget": 32000000, "cast": [{"name": "Viggo Mortensen", "character": "Tom Stall", "id": 110, "credit_id": "52fe4212c3a36847f8001927", "cast_id": 2, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Maria Bello", "character": "Edie Stall", "id": 49, "credit_id": "52fe4212c3a36847f800192b", "cast_id": 3, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 1}, {"name": "Heidi Hayes", "character": "Sarah Stall", "id": 226, "credit_id": "52fe4212c3a36847f800192f", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Ashton Holmes", "character": "Jack Stall", "id": 225, "credit_id": "52fe4212c3a36847f8001933", "cast_id": 5, "profile_path": "/glpPD22Zk2b7bGSOAFoy9ucPDmj.jpg", "order": 3}, {"name": "William Hurt", "character": "Richie Cusack", "id": 227, "credit_id": "52fe4212c3a36847f8001937", "cast_id": 6, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 4}, {"name": "Ed Harris", "character": "Carl Fogerty", "id": 228, "credit_id": "52fe4212c3a36847f800193b", "cast_id": 7, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 5}, {"name": "Peter MacNeill", "character": "Sheriff Sam Carney", "id": 229, "credit_id": "52fe4212c3a36847f800193f", "cast_id": 8, "profile_path": "/wNBsE9FqylAdCwzRvZtkvZJCfVI.jpg", "order": 6}, {"name": "Stephen McHattie", "character": "Leland", "id": 230, "credit_id": "52fe4212c3a36847f8001943", "cast_id": 9, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 7}, {"name": "Greg Bryk", "character": "Billy", "id": 231, "credit_id": "52fe4212c3a36847f8001947", "cast_id": 10, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 8}, {"name": "Kyle Schmid", "character": "Bobby", "id": 232, "credit_id": "52fe4212c3a36847f800194b", "cast_id": 11, "profile_path": "/d0BikewdLHSo6gjNMlBU7m7ePdG.jpg", "order": 9}, {"name": "Sumela Kay", "character": "Judy Danvers", "id": 233, "credit_id": "52fe4212c3a36847f800194f", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Gerry Quigley", "character": "Mick", "id": 234, "credit_id": "52fe4212c3a36847f8001953", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Deborah Drakeford", "character": "Charlotte", "id": 235, "credit_id": "52fe4212c3a36847f8001957", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Bill MacDonald", "character": "Frank Mulligan", "id": 236, "credit_id": "52fe4212c3a36847f800195b", "cast_id": 15, "profile_path": "/k9FyefziPLUSfawSQq7M0med6R6.jpg", "order": 13}, {"name": "Aidan Devine", "character": "Charlie Roarke", "id": 237, "credit_id": "52fe4212c3a36847f800195f", "cast_id": 16, "profile_path": "/8RyUP2FYu4xuEkpJZFFlf2204Si.jpg", "order": 14}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001923", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.4, "runtime": 96}, "62": {"poster_path": "/rT9w3tzk25jA8vl7KyvzUP5gHJV.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56715371, "overview": "Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.", "video": false, "id": 62, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "2001: A Space Odyssey", "tagline": "An epic drama of adventure and exploration", "vote_count": 835, "homepage": "", "belongs_to_collection": {"backdrop_path": "/15FumSExI9SRoL7QJWZAsA0b10c.jpg", "poster_path": "/i1WdRtc6aObiwGz5NU8WWPW3r1N.jpg", "id": 4438, "name": "The Space Odyssey Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0062622", "adult": false, "backdrop_path": "/pckdZ29bHj11hBsV3SbVVfmCB6C.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Stanley Kubrick Productions", "id": 385}], "release_date": "1968-04-05", "popularity": 2.22301837144001, "original_title": "2001: A Space Odyssey", "budget": 10500000, "cast": [{"name": "Keir Dullea", "character": "Dr. Dave Bowman", "id": 245, "credit_id": "52fe4212c3a36847f8001a1b", "cast_id": 6, "profile_path": "/vRkyWW3p2Xd1FfMBKZWV2LQZlkR.jpg", "order": 0}, {"name": "Douglas Rain", "character": "HAL 9000 (voice)", "id": 253, "credit_id": "52fe4212c3a36847f8001a3b", "cast_id": 14, "profile_path": null, "order": 1}, {"name": "Gary Lockwood", "character": "Dr. Frank Poole", "id": 246, "credit_id": "52fe4212c3a36847f8001a1f", "cast_id": 7, "profile_path": "/93PNFjRuV3u4SRFwmvaAMZ4HNna.jpg", "order": 2}, {"name": "William Sylvester", "character": "Dr. Heywood R. Floyd", "id": 247, "credit_id": "52fe4212c3a36847f8001a23", "cast_id": 8, "profile_path": "/iz3JAVIColzTaQ3PFvxdlFaCzfW.jpg", "order": 3}, {"name": "Daniel Richter", "character": "Moon-Watcher", "id": 248, "credit_id": "52fe4212c3a36847f8001a27", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Leonard Rossiter", "character": "Dr. Andrei Smyslov", "id": 249, "credit_id": "52fe4212c3a36847f8001a2b", "cast_id": 10, "profile_path": "/a9AKQbnY69kRwwBgkL3wqfJgQru.jpg", "order": 5}, {"name": "Margaret Tyzack", "character": "Elena", "id": 250, "credit_id": "52fe4212c3a36847f8001a2f", "cast_id": 11, "profile_path": "/gZgVXY3WszU2dcEL0CwmdKAf7Vd.jpg", "order": 6}, {"name": "Robert Beatty", "character": "Dr. Ralph Halvorsen", "id": 251, "credit_id": "52fe4212c3a36847f8001a33", "cast_id": 12, "profile_path": "/nQrvFDN5pIo4y5qHRgsCJ3zpoQM.jpg", "order": 7}, {"name": "Sean Sullivan", "character": "Dr. Bill Michaels", "id": 252, "credit_id": "52fe4212c3a36847f8001a37", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Bill Weston", "character": "Astronaut", "id": 24278, "credit_id": "52fe4212c3a36847f8001a6f", "cast_id": 24, "profile_path": "/apVNA3SRNIrB6gu88nGTEhPewI2.jpg", "order": 9}, {"name": "Ed Bishop", "character": "Aries-1B Lunar Shuttle Captain", "id": 108277, "credit_id": "52fe4212c3a36847f8001a73", "cast_id": 25, "profile_path": "/v5jVNLCSACz9yC0mhD4akfXPtc6.jpg", "order": 10}, {"name": "Alan Gifford", "character": "Poole's Father", "id": 93948, "credit_id": "52fe4212c3a36847f8001a77", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Ann Gillis", "character": "Poole's Mother", "id": 107445, "credit_id": "52fe4212c3a36847f8001a7b", "cast_id": 28, "profile_path": "/pj9tiEfMxDe4vedKtmlGu5oMB9m.jpg", "order": 12}, {"name": "Edwina Carroll", "character": "Aries-1B Stewardess", "id": 117540, "credit_id": "52fe4212c3a36847f8001a7f", "cast_id": 29, "profile_path": "/h0MjcnyMU2KvlhX21AHmf33zJGS.jpg", "order": 13}, {"name": "Frank Miller", "character": "Mission Controller (voice)", "id": 102573, "credit_id": "52fe4212c3a36847f8001a83", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Glenn Beck", "character": "Astronaut", "id": 948173, "credit_id": "52fe4212c3a36847f8001a87", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Penny Brahms", "character": "Stewardess", "id": 127363, "credit_id": "539d3d53c3a3683b2a002a98", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Heather Downham", "character": "Stewardess", "id": 1102076, "credit_id": "539d3d76c3a3683b50002997", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Mike Lovell", "character": "Astronaut", "id": 1330785, "credit_id": "539d3da9c3a3683b500029a3", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "John Ashley", "character": "Ape", "id": 1330786, "credit_id": "539d3df0c3a3683b37002a8b", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Jimmy Bell", "character": "Ape", "id": 1330787, "credit_id": "539d3e13c3a3683b37002a92", "cast_id": 43, "profile_path": null, "order": 20}, {"name": "David Charkham", "character": "Ape", "id": 1330788, "credit_id": "539d3e2ec3a3683b590029db", "cast_id": 44, "profile_path": null, "order": 21}, {"name": "Simon Davis", "character": "Ape", "id": 1330789, "credit_id": "539d3e44c3a3683b41002a7e", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Jonathan Daw", "character": "Ape", "id": 1330790, "credit_id": "539d3e6ac3a3683b23002b57", "cast_id": 46, "profile_path": null, "order": 23}, {"name": "P\u00e9ter Delm\u00e1r", "character": "Ape", "id": 1330791, "credit_id": "539d3e80c3a3683b310029ff", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "Terry Duggan", "character": "Ape Attacked by Leopard", "id": 1330792, "credit_id": "539d3ec4c3a3683b23002b81", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "David Fleetwood", "character": "Ape", "id": 1330793, "credit_id": "539d3eeac3a3683b23002b88", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "Danny Grover", "character": "Ape", "id": 1330794, "credit_id": "539d3f04c3a3683b2a002ad4", "cast_id": 50, "profile_path": null, "order": 27}, {"name": "Brian Hawley", "character": "Ape", "id": 1330795, "credit_id": "539d3f25c3a3683b23002ba3", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "David Hines", "character": "Ape", "id": 1330796, "credit_id": "539d3f42c3a3683b50002a01", "cast_id": 52, "profile_path": null, "order": 29}, {"name": "Tony Jackson", "character": "Ape", "id": 1330797, "credit_id": "539d3f81c3a3683b50002a27", "cast_id": 53, "profile_path": null, "order": 30}, {"name": "John Jordan", "character": "Ape", "id": 1330798, "credit_id": "539d3f9ec3a3683b31002a89", "cast_id": 54, "profile_path": null, "order": 31}, {"name": "Scott MacKee", "character": "Ape", "id": 1330799, "credit_id": "539d3fb4c3a3683b41002b14", "cast_id": 55, "profile_path": null, "order": 32}, {"name": "Laurence Marchant", "character": "Ape", "id": 1330800, "credit_id": "539d3fcbc3a3683b59002a74", "cast_id": 56, "profile_path": null, "order": 33}, {"name": "Darryl Paes", "character": "Ape", "id": 1330801, "credit_id": "539d3fe5c3a3683b31002ab7", "cast_id": 57, "profile_path": null, "order": 34}, {"name": "Joe Refalo", "character": "Ape", "id": 1330802, "credit_id": "539d3fffc3a3683b50002a65", "cast_id": 58, "profile_path": null, "order": 35}, {"name": "Andy Wallace", "character": "Ape", "id": 1330803, "credit_id": "539d4011c3a3683b48002a0b", "cast_id": 59, "profile_path": null, "order": 36}, {"name": "Bob Wilyman", "character": "Ape", "id": 1330804, "credit_id": "539d4024c3a3683b23002c27", "cast_id": 60, "profile_path": null, "order": 37}, {"name": "Richard Woods", "character": "Ape Killed by Moon-Watcher", "id": 1330805, "credit_id": "539d4048c3a3683b50002a82", "cast_id": 61, "profile_path": null, "order": 38}, {"name": "Martin Amor", "character": "Interviewer (uncredited)", "id": 1330806, "credit_id": "539d4069c3a3683b48002a28", "cast_id": 62, "profile_path": null, "order": 39}, {"name": "S. Newton Anderson", "character": "Young Man (uncredited)", "id": 1330807, "credit_id": "539d407ec3a3683b41002b55", "cast_id": 63, "profile_path": null, "order": 40}, {"name": "Sheraton Blount", "character": "(uncredited)", "id": 1330808, "credit_id": "539d4092c3a3683b50002a8b", "cast_id": 64, "profile_path": null, "order": 41}, {"name": "Ann Bormann", "character": "(uncredited)", "id": 1330809, "credit_id": "539d40a6c3a3683b41002b5c", "cast_id": 65, "profile_path": null, "order": 42}, {"name": "John Clifford", "character": "TMA-1 Site Technician #2 (uncredited)", "id": 1330810, "credit_id": "539d40dfc3a3683b50002a92", "cast_id": 66, "profile_path": null, "order": 43}, {"name": "Julie Croft", "character": "(uncredited)", "id": 1330811, "credit_id": "539d4177c3a3683b48002a75", "cast_id": 67, "profile_path": null, "order": 44}, {"name": "Penny Francis", "character": "(uncredited)", "id": 1330812, "credit_id": "539d418fc3a3683b41002baf", "cast_id": 68, "profile_path": null, "order": 45}, {"name": "Kenneth Kendall", "character": "BBC-12 Announcer (uncredited)", "id": 1330813, "credit_id": "539d41b9c3a3683b50002b1f", "cast_id": 69, "profile_path": null, "order": 46}, {"name": "Vivian Kubrick", "character": "Squirt - Floyd's Daughter (uncredited)", "id": 8645, "credit_id": "539d41d2c3a3683b41002bee", "cast_id": 70, "profile_path": null, "order": 47}, {"name": "Marcella Markham", "character": "(uncredited)", "id": 1330814, "credit_id": "539d41e5c3a3683b23002ce1", "cast_id": 71, "profile_path": null, "order": 48}, {"name": "Irena Marr", "character": "Russian Scientist (uncredited)", "id": 1330815, "credit_id": "539d41f9c3a3683b50002b54", "cast_id": 72, "profile_path": null, "order": 49}, {"name": "Krystyna Marr", "character": "Russian Scientist (uncredited)", "id": 1330816, "credit_id": "539d420bc3a3683b23002d11", "cast_id": 73, "profile_path": null, "order": 50}, {"name": "Kim Neil", "character": "(uncredited)", "id": 1330817, "credit_id": "539d421ec3a3683b59002b72", "cast_id": 74, "profile_path": null, "order": 51}, {"name": "Jane Pearl", "character": "(uncredited)", "id": 1330818, "credit_id": "539d4230c3a3683b37002c2f", "cast_id": 75, "profile_path": null, "order": 52}, {"name": "Penny Pearl", "character": "(uncredited)", "id": 1330819, "credit_id": "539d4244c3a3683b48002b19", "cast_id": 76, "profile_path": null, "order": 53}, {"name": "Kevin Scott", "character": "Miller (uncredited)", "id": 1330820, "credit_id": "539d427dc3a3683b23002d36", "cast_id": 77, "profile_path": null, "order": 54}, {"name": "John Swindells", "character": "TMA-1 Site Technician #1 (uncredited)", "id": 1330821, "credit_id": "539d42bfc3a3683b23002d3e", "cast_id": 78, "profile_path": null, "order": 55}, {"name": "Burnell Tucker", "character": "TMA-1 Site Photographer (uncredited)", "id": 184980, "credit_id": "539d43ea0e0a261328003623", "cast_id": 79, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 56}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001a6b", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.4, "runtime": 149}, "63": {"poster_path": "/6Sj9wDu3YugthXsU0Vry5XFAZGg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 168840000, "overview": "In the year 2035, convict James Cole (Bruce Willis) reluctantly volunteers to be sent back in time to discover the origin of a deadly virus that wiped out nearly all of the earth's population and forced the survivors into underground communities. But when Cole is mistakenly sent to 1990 instead of 1996, he's arrested and locked up in a mental hospital. There he meets psychiatrist Dr. Kathryn Railly (Madeleine Stowe), and patient Jeffrey Goines (Brad Pitt), the son of a famous virus expert, who may hold the key to the mysterious rogue group, the Army of the 12 Monkeys, thought to be responsible for unleashing the killer disease.", "video": false, "id": 63, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Twelve Monkeys", "tagline": "The future is history", "vote_count": 813, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0114746", "adult": false, "backdrop_path": "/6KXbhaxkgExC5EdDqAzRinhmoZ8.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Classico", "id": 17031}], "release_date": "1995-12-27", "popularity": 1.22867641112124, "original_title": "Twelve Monkeys", "budget": 29500000, "cast": [{"name": "Bruce Willis", "character": "James Cole", "id": 62, "credit_id": "52fe4212c3a36847f8001b31", "cast_id": 41, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Madeleine Stowe", "character": "Dr. Kathryn Railly", "id": 289, "credit_id": "52fe4212c3a36847f8001b35", "cast_id": 42, "profile_path": "/jqd70MNVUs3nTbxn3B3G6UNV4Oc.jpg", "order": 1}, {"name": "Brad Pitt", "character": "Jeffrey Goines", "id": 287, "credit_id": "52fe4212c3a36847f8001b39", "cast_id": 43, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "Dr. Goines", "id": 290, "credit_id": "52fe4212c3a36847f8001b3d", "cast_id": 44, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "David Morse", "character": "Dr. Peters", "id": 52, "credit_id": "52fe4212c3a36847f8001b41", "cast_id": 45, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 4}, {"name": "Jon Seda", "character": "Jose", "id": 288, "credit_id": "52fe4212c3a36847f8001b45", "cast_id": 46, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 5}, {"name": "Frank Gorshin", "character": "Dr. Fletcher", "id": 291, "credit_id": "52fe4212c3a36847f8001b49", "cast_id": 47, "profile_path": "/1hfi3gAMouvfXzrnrbJLHqYHHVP.jpg", "order": 6}, {"name": "Joseph Melito", "character": "young Cole", "id": 975569, "credit_id": "52fe4212c3a36847f8001b4d", "cast_id": 48, "profile_path": "/rPgGtrcKQsV9wlDW91kgjGm39K5.jpg", "order": 7}, {"name": "Aaron Michael Lacey", "character": "WWI Sergeant", "id": 1273540, "credit_id": "52fe4212c3a36847f8001b51", "cast_id": 49, "profile_path": "/6cBXtAhaqQfT14WLIgGXqmEQ12j.jpg", "order": 8}, {"name": "Christopher Meloni", "character": "Lt. Halperin", "id": 22227, "credit_id": "52fe4212c3a36847f8001b55", "cast_id": 50, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 9}, {"name": "Joey Perillo", "character": "Det. Franki", "id": 1318900, "credit_id": "54064688c3a3682d98007531", "cast_id": 51, "profile_path": null, "order": 10}, {"name": "LisaGay Hamilton", "character": "Teddy", "id": 534231, "credit_id": "540646a2c3a3685b74004731", "cast_id": 52, "profile_path": "/4K8SwWpmwGX1EwJcYX2IJoMbWHZ.jpg", "order": 11}, {"name": "Matt Ross", "character": "Bee", "id": 11154, "credit_id": "540646b0c3a3685b74004733", "cast_id": 53, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 12}, {"name": "Annie Golden", "character": "woman cabbie", "id": 66094, "credit_id": "540646dcc3a36816af003fb5", "cast_id": 54, "profile_path": "/2onk2YDUlJIQdJKhfRRNyuNjzu7.jpg", "order": 13}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001ac7", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.0, "runtime": 129}, "64": {"poster_path": "/zxRaFJyxvomX3uPCfAh35BdZy5e.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 51001550, "overview": "Two men share an odd friendship while they care for two women who are both in deep comas.", "video": false, "id": 64, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Talk to Her", "tagline": "", "vote_count": 50, "homepage": "http://www.clubcultura.com/clubcine/clubcineastas/almodovar/hableconella/hableconella.htm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0287467", "adult": false, "backdrop_path": "/9GruQLprYzRnT72vQNF92tcUUQJ.jpg", "production_companies": [{"name": "V\u00eda Digital", "id": 357}, {"name": "Good Machine", "id": 10565}, {"name": "El Deseo S.A.", "id": 11736}, {"name": "Antena 3 Televisi\u00f3n", "id": 11737}], "release_date": "2002-03-14", "popularity": 0.351836714783365, "original_title": "Hable con ella", "budget": 9285469, "cast": [{"name": "Leonor Watling", "character": "Alicia", "id": 101, "credit_id": "52fe4212c3a36847f8001ba9", "cast_id": 4, "profile_path": "/6M9s0VigBmmVOBbkRTQz1K0LbN4.jpg", "order": 0}, {"name": "Rosario Flores", "character": "Lydia", "id": 398, "credit_id": "52fe4212c3a36847f8001bad", "cast_id": 5, "profile_path": "/bWK2h9obFbPjMpq7oOnwbd7oIW.jpg", "order": 1}, {"name": "Javier C\u00e1mara", "character": "Benigno", "id": 1610, "credit_id": "52fe4212c3a36847f8001bbd", "cast_id": 8, "profile_path": "/pbS8PFYTSh2LqODPUuygKLmytVu.jpg", "order": 2}, {"name": "Dar\u00edo Grandinetti", "character": "Marco", "id": 3618, "credit_id": "52fe4212c3a36847f8001bc7", "cast_id": 10, "profile_path": "/UQN0TZJyEsxP06yAlS1OuAZEoL.jpg", "order": 3}, {"name": "Mariola Fuentes", "character": "Rosa", "id": 399, "credit_id": "52fe4212c3a36847f8001bcb", "cast_id": 11, "profile_path": "/79y7ii3WPe8y6yV2hqLKYbYXLnL.jpg", "order": 4}, {"name": "Geraldine Chaplin", "character": "Katerina Bilova", "id": 400, "credit_id": "52fe4212c3a36847f8001bcf", "cast_id": 12, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 5}, {"name": "Pina Bausch", "character": "Bailarine", "id": 402, "credit_id": "52fe4212c3a36847f8001bd3", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Malou Airaudo", "character": "Bailarine", "id": 3619, "credit_id": "52fe4212c3a36847f8001bd7", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Caetano Veloso", "character": "Singer at Party", "id": 3620, "credit_id": "52fe4212c3a36847f8001bdb", "cast_id": 15, "profile_path": "/onHlrk9FN5KkDkxfO70XW9X6qGt.jpg", "order": 8}, {"name": "Roberto Alvarez", "character": "Doctor", "id": 3621, "credit_id": "52fe4212c3a36847f8001bdf", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Elena Anaya", "character": "\u00c1ngela", "id": 3623, "credit_id": "52fe4212c3a36847f8001be3", "cast_id": 17, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 10}, {"name": "Lola Due\u00f1as", "character": "Matilde", "id": 2759, "credit_id": "52fe4212c3a36847f8001be7", "cast_id": 18, "profile_path": "/r5rHHPDV7flRGF2qQ885VsKTp5K.jpg", "order": 11}, {"name": "Adolfo Fern\u00e1ndez", "character": "Ni\u00f1o de Valencia", "id": 3624, "credit_id": "52fe4212c3a36847f8001beb", "cast_id": 19, "profile_path": "/fbfwl2MSG7s4SqaxOhXV1mCKKkn.jpg", "order": 12}, {"name": "Ana Fern\u00e1ndez", "character": "Lydia's Sister", "id": 3625, "credit_id": "52fe4212c3a36847f8001bef", "cast_id": 20, "profile_path": "/o8NIVZ6Q3F4aLExbbyP0BvbODzS.jpg", "order": 13}, {"name": "Chus Lampreave", "character": "Concierge", "id": 3482, "credit_id": "52fe4212c3a36847f8001bf3", "cast_id": 21, "profile_path": "/dwoyRWC5Nyo2UgE7M6AjqJWSAAD.jpg", "order": 14}, {"name": "Helio Pedregal", "character": "Alicia's Father", "id": 3626, "credit_id": "52fe4212c3a36847f8001bf7", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Paz Vega", "character": "Amparo", "id": 3627, "credit_id": "52fe4212c3a36847f8001bfb", "cast_id": 23, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 16}, {"name": "Fele Mart\u00ednez", "character": "Alfredo", "id": 1602, "credit_id": "52fe4212c3a36847f8001bff", "cast_id": 24, "profile_path": "/7Hccxji7taf2NmfNBiXBnQLCyHk.jpg", "order": 17}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001b99", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 7.1, "runtime": 112}, "65": {"poster_path": "/dXzTrKwpbLpCqn8O70FUUhNbYQT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215000000, "overview": "The setting is Detroit in 1995. The city is divided by 8 Mile, a road that splits the town in half along racial lines. A young white rapper, Jimmy \"B-Rabbit\" Smith Jr summons strength within himself to cross over these arbitrary boundaries to fulfill his dream of success in hip hop. With future and the three one third all he has to do is not choke.", "video": false, "id": 65, "genres": [{"id": 18, "name": "Drama"}], "title": "8 Mile", "tagline": "Every moment is another chance.", "vote_count": 286, "homepage": "http://movies.uip.de/8mile/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298203", "adult": false, "backdrop_path": "/4uJZvmEMX6Z6ag3bzym5exLY9wI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2002-11-08", "popularity": 1.15778230917123, "original_title": "8 Mile", "budget": 41000000, "cast": [{"name": "Eminem", "character": "Jimmy B. \"Rabbit\" Smith", "id": 325, "credit_id": "52fe4212c3a36847f8001c53", "cast_id": 3, "profile_path": "/mKPPGlIZ2EiKb6LSC46cSzK2NEU.jpg", "order": 0}, {"name": "Mekhi Phifer", "character": "David 'Future' Porter", "id": 327, "credit_id": "52fe4212c3a36847f8001c57", "cast_id": 4, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 1}, {"name": "Brittany Murphy", "character": "Alex", "id": 328, "credit_id": "52fe4212c3a36847f8001c5f", "cast_id": 6, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 2}, {"name": "Kim Basinger", "character": "Stephanie Smith", "id": 326, "credit_id": "52fe4212c3a36847f8001c5b", "cast_id": 5, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 3}, {"name": "Michael Shannon", "character": "Greg Buehl", "id": 335, "credit_id": "52fe4212c3a36847f8001c7b", "cast_id": 13, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 4}, {"name": "Taryn Manning", "character": "Janeane", "id": 343, "credit_id": "52fe4212c3a36847f8001c8b", "cast_id": 21, "profile_path": "/vgLUb0mjZqJsDCnZZ3I9VKeyo9J.jpg", "order": 5}, {"name": "Anthony Mackie", "character": "Papa Doc", "id": 53650, "credit_id": "52fe4212c3a36847f8001c8f", "cast_id": 22, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 6}, {"name": "De'Angelo Wilson", "character": "DJ IZ", "id": 341, "credit_id": "54ebba54c3a3686d64000057", "cast_id": 26, "profile_path": "/59cfQidcF39uWLlVgqrGwj5GpJi.jpg", "order": 7}, {"name": "Evan Jones", "character": "Cheddar Bob", "id": 333, "credit_id": "53615f92c3a368394e00031c", "cast_id": 23, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 8}, {"name": "Omar Benson Miller", "character": "Sol George", "id": 334, "credit_id": "54ebba71925141796500005e", "cast_id": 28, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 9}, {"name": "Eugene Byrd", "character": "Wink", "id": 342, "credit_id": "54ebba7a925141795f000044", "cast_id": 29, "profile_path": "/ab4zEcqdBSjpaz4CPQ2Z6q4rLmO.jpg", "order": 10}, {"name": "Mike Bell", "character": "Shorty Mike", "id": 217173, "credit_id": "536161d2c3a368395d000326", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Xzibit", "character": "Mike", "id": 336, "credit_id": "54ebba899251417971000050", "cast_id": 30, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 12}, {"name": "Proof", "character": "Lil'Tic", "id": 1069291, "credit_id": "53616364c3a368397600034f", "cast_id": 25, "profile_path": null, "order": 13}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001c49", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}], "vote_average": 6.6, "runtime": 110}, "68": {"poster_path": "/fbaxxLP6PztGwLrHO0lBDquof0d.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Brazil is a Terry Gilliam dystopic black comedy film that reflects the melancholy, dreamlike quality of a famous Brazilian song that\u2019s been translated into English. The film parodies the mostly dysfunctional bureaucratic world we live in and takes us to a post-apocalyptic world in the future yet with our present day attitudes in mind.", "video": false, "id": 68, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Brazil", "tagline": "It's only a state of mind.", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088846", "adult": false, "backdrop_path": "/bYgN55xPNQWUy9xzKwA9pVbGxeE.jpg", "production_companies": [{"name": "Embassy International Pictures", "id": 10214}], "release_date": "1985-02-20", "popularity": 0.786259103513953, "original_title": "Brazil", "budget": 15000000, "cast": [{"name": "Jonathan Pryce", "character": "Sam Lowry", "id": 378, "credit_id": "52fe4213c3a36847f8001e8f", "cast_id": 7, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Archibald 'Harry' Tuttle", "id": 380, "credit_id": "52fe4213c3a36847f8001e93", "cast_id": 8, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Katherine Helmond", "character": "Mrs. Ida Lowry", "id": 381, "credit_id": "52fe4213c3a36847f8001e97", "cast_id": 9, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 2}, {"name": "Ian Holm", "character": "Mr. M. Kurtzmann", "id": 65, "credit_id": "52fe4213c3a36847f8001e9b", "cast_id": 10, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 3}, {"name": "Bob Hoskins", "character": "Spoor", "id": 382, "credit_id": "52fe4213c3a36847f8001e9f", "cast_id": 11, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 4}, {"name": "Michael Palin", "character": "Jack Lint", "id": 383, "credit_id": "52fe4213c3a36847f8001ea3", "cast_id": 12, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 5}, {"name": "Ian Richardson", "character": "Mr. Warrenn", "id": 385, "credit_id": "52fe4213c3a36847f8001ea7", "cast_id": 13, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 6}, {"name": "Peter Vaughan", "character": "Mr. Helpmann", "id": 386, "credit_id": "52fe4213c3a36847f8001eab", "cast_id": 14, "profile_path": "/z9ZplbTA1ojYhgZ8kJUKKhsJ7Gs.jpg", "order": 7}, {"name": "Kim Greist", "character": "Jill Layton", "id": 387, "credit_id": "52fe4213c3a36847f8001eaf", "cast_id": 15, "profile_path": "/1qLn5aQeL02ysauDs1hJhL0ozfs.jpg", "order": 8}, {"name": "Jim Broadbent", "character": "Dr. Jaffe", "id": 388, "credit_id": "52fe4213c3a36847f8001eb3", "cast_id": 16, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 9}, {"name": "Terry Gilliam", "character": "Smoking Man (uncredited)", "id": 280, "credit_id": "52fe4213c3a36847f8001eb7", "cast_id": 17, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 10}, {"name": "Barbara Hicks", "character": "Mrs. Alma Terrain", "id": 97167, "credit_id": "52fe4213c3a36847f8001ee5", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Charles McKeown", "character": "Harvey Lime", "id": 374, "credit_id": "52fe4213c3a36847f8001ee9", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Derrick O'Connor", "character": "Dowser", "id": 14325, "credit_id": "52fe4213c3a36847f8001eed", "cast_id": 29, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 13}, {"name": "Kathryn Pogson", "character": "Shirley", "id": 177594, "credit_id": "52fe4213c3a36847f8001ef1", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Bryan Pringle", "character": "Spiro", "id": 22171, "credit_id": "52fe4213c3a36847f8001ef5", "cast_id": 31, "profile_path": null, "order": 15}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8001e6d", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.4, "runtime": 132}, "69": {"poster_path": "/nUsaYt9Wk4fVP8jp1ncfQe7Io7t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170000000, "overview": "A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.", "video": false, "id": 69, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Walk the Line", "tagline": "Love is a burning thing.", "vote_count": 201, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0358273", "adult": false, "backdrop_path": "/gti33Idw0SqTH6wFzRlGmdjnLxs.jpg", "production_companies": [{"name": "Tree Line Films", "id": 84}, {"name": "Konrad Pictures", "id": 85}, {"name": "Catfish Productions", "id": 86}], "release_date": "2005-09-13", "popularity": 0.429567689954736, "original_title": "Walk the Line", "budget": 28000000, "cast": [{"name": "Joaquin Phoenix", "character": "Johnny Cash", "id": 73421, "credit_id": "52fe4213c3a36847f8001f43", "cast_id": 2, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "June Carter", "id": 368, "credit_id": "52fe4213c3a36847f8001f47", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Ginnifer Goodwin", "character": "Vivian", "id": 417, "credit_id": "52fe4213c3a36847f8001f63", "cast_id": 10, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 2}, {"name": "Robert Patrick", "character": "Ray Cash", "id": 418, "credit_id": "52fe4213c3a36847f8001f67", "cast_id": 11, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 3}, {"name": "Tyler Hilton", "character": "Elvis Presley", "id": 419, "credit_id": "52fe4213c3a36847f8001f6b", "cast_id": 12, "profile_path": "/6CKulnmKgIuKB455pHd0m8hWeFm.jpg", "order": 4}, {"name": "Johnathan Rice", "character": "Roy Orbison", "id": 420, "credit_id": "52fe4213c3a36847f8001f6f", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Shooter Jennings", "character": "Waylon Jennings", "id": 421, "credit_id": "52fe4213c3a36847f8001f73", "cast_id": 14, "profile_path": "/oWn81H5SLIYQikUkeRFrnVnwL9M.jpg", "order": 6}, {"name": "Waylon Payne", "character": "Jerry Lee Lewis", "id": 422, "credit_id": "52fe4213c3a36847f8001f77", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Dallas Roberts", "character": "Sam Phillips", "id": 424, "credit_id": "52fe4213c3a36847f8001f7b", "cast_id": 16, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 8}, {"name": "Dan John Miller", "character": "Luther Perkins", "id": 425, "credit_id": "52fe4213c3a36847f8001f7f", "cast_id": 17, "profile_path": "/vqCkSeRyFK90Y578eSU4zeKMC4I.jpg", "order": 9}, {"name": "Larry Bagby", "character": "Marshall Grant", "id": 426, "credit_id": "52fe4213c3a36847f8001f83", "cast_id": 18, "profile_path": "/zBXOdQkskwkYCK34RnVKTVaI8DR.jpg", "order": 10}, {"name": "Sandra Ellis Lafferty", "character": "Maybelle Carter", "id": 427, "credit_id": "52fe4213c3a36847f8001f87", "cast_id": 19, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 11}, {"name": "Dan Beene", "character": "Ezra Carter", "id": 428, "credit_id": "52fe4213c3a36847f8001f8b", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Lucas Till", "character": "Young Johnny Cash", "id": 429, "credit_id": "52fe4213c3a36847f8001f8f", "cast_id": 21, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 13}, {"name": "Victoria Hester", "character": "Carlene Carter", "id": 431, "credit_id": "52fe4213c3a36847f8001f93", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Hailey Anne Nelson", "character": "Rosanne Cash", "id": 430, "credit_id": "52fe4213c3a36847f8001f97", "cast_id": 23, "profile_path": "/g3P0V4D6g4wYlhTxakTaAQC7DW2.jpg", "order": 15}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8001f3f", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.7, "runtime": 136}, "70": {"poster_path": "/h4VZKi2Jt4VoBYJmtC4c3bO8KqM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 216763646, "overview": "Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.", "video": false, "id": 70, "genres": [{"id": 18, "name": "Drama"}], "title": "Million Dollar Baby", "tagline": "Beyond his silence, there is a past. Beyond her dreams, there is a feeling. Beyond hope, there is a memory. Beyond their journey, there is a love.", "vote_count": 548, "homepage": "http://www.milliondollarbaby-derfilm.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405159", "adult": false, "backdrop_path": "/o4OSztAvDYNDXkn9PJGbaQAO8VG.jpg", "production_companies": [{"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Malpaso Productions", "id": 171}, {"name": "Albert S. Ruddy Productions", "id": 16311}], "release_date": "2004-12-14", "popularity": 1.09643309460655, "original_title": "Million Dollar Baby", "budget": 30000000, "cast": [{"name": "Clint Eastwood", "character": "Frankie Dunn", "id": 190, "credit_id": "52fe4213c3a36847f8002015", "cast_id": 4, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Hilary Swank", "character": "Maggie Fitzgerald", "id": 448, "credit_id": "52fe4213c3a36847f8002079", "cast_id": 24, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Eddie Scrap-Iron Dupris", "id": 192, "credit_id": "52fe4213c3a36847f8002083", "cast_id": 26, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Danger Barch", "id": 449, "credit_id": "52fe4213c3a36847f8002019", "cast_id": 6, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Mike Colter", "character": "Big Willie Little", "id": 450, "credit_id": "52fe4213c3a36847f800201d", "cast_id": 7, "profile_path": "/eP0RelLOZrlMH2W3qFVx87VG9ij.jpg", "order": 4}, {"name": "Br\u00edan F. O'Byrne", "character": "Father Horvak", "id": 31713, "credit_id": "52fe4213c3a36847f8002091", "cast_id": 30, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 5}, {"name": "Anthony Mackie", "character": "Shawrelle Berry", "id": 53650, "credit_id": "52fe4213c3a36847f8002087", "cast_id": 28, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 6}, {"name": "Margo Martindale", "character": "Earline Fitzgerald", "id": 452, "credit_id": "52fe4213c3a36847f8002025", "cast_id": 9, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 7}, {"name": "Riki Lindhome", "character": "Mardell Fitzgerald", "id": 453, "credit_id": "52fe4213c3a36847f8002029", "cast_id": 10, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 8}, {"name": "Michael Pe\u00f1a", "character": "Omar", "id": 454, "credit_id": "52fe4213c3a36847f800202d", "cast_id": 11, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 9}, {"name": "Lucia Rijker", "character": "Billie 'The Blue Bear'", "id": 451, "credit_id": "52fe4213c3a36847f8002021", "cast_id": 8, "profile_path": "/dNKQK7uLrdG1g8ETKF9SxbXHGNQ.jpg", "order": 10}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f800200b", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.3, "runtime": 132}, "71": {"poster_path": "/x0ySHQPAxQYD0D79BeDY2XhPzXg.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 110000000, "overview": "Set against the background of the 1984 Miner's Strike, Billy Elliot is an 11 year old boy who stumbles out of the boxing ring and onto the ballet floor. He faces many trials and triumphs as he strives to conquer his family's set ways, inner conflict, and standing on his toes!", "video": false, "id": 71, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Billy Elliot", "tagline": "Inside every one of us is a special talent waiting to come out. The trick is finding it.", "vote_count": 127, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0249462", "adult": false, "backdrop_path": "/xZ5qlcdZPyUKnoAugPE58XQyPXz.jpg", "production_companies": [{"name": "Arts Council of England", "id": 718}, {"name": "BBC Films", "id": 288}, {"name": "Studio Canal", "id": 5870}, {"name": "Tiger Aspect Productions", "id": 686}, {"name": "WT2 Productions", "id": 10462}, {"name": "Working Title Films", "id": 10163}], "release_date": "2000-05-18", "popularity": 0.561863222982333, "original_title": "Billy Elliot", "budget": 5000000, "cast": [{"name": "Jamie Bell", "character": "Billy Elliot", "id": 478, "credit_id": "52fe4213c3a36847f800211d", "cast_id": 16, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 0}, {"name": "Julie Walters", "character": "Mrs. Wilkinson", "id": 477, "credit_id": "52fe4213c3a36847f8002119", "cast_id": 15, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 1}, {"name": "Jean Heywood", "character": "Grandmother", "id": 481, "credit_id": "52fe4213c3a36847f8002129", "cast_id": 19, "profile_path": null, "order": 2}, {"name": "Jamie Draven", "character": "Tony Elliot", "id": 479, "credit_id": "52fe4213c3a36847f8002121", "cast_id": 17, "profile_path": "/tC1EJV652XHWPDITZfKe1JrH7Ii.jpg", "order": 3}, {"name": "Gary Lewis", "character": "Jackie Elliot", "id": 480, "credit_id": "52fe4213c3a36847f8002125", "cast_id": 18, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 4}, {"name": "Stuart Wells", "character": "Michael Caffrey", "id": 482, "credit_id": "52fe4213c3a36847f800212d", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Nicola Blackwell", "character": "Debbie Wilkinson", "id": 483, "credit_id": "52fe4213c3a36847f8002131", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Janine Birkett", "character": "Billy's mother", "id": 487, "credit_id": "52fe4213c3a36847f8002135", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Joe Renton", "character": "Gary Poulson", "id": 107381, "credit_id": "536910720e0a2647c400865d", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Colin MacLachlan", "character": "Mr. Tom Wilkinson", "id": 116991, "credit_id": "536910820e0a2647c80086a5", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Trevor Fox", "character": "PC Jeff Peverly", "id": 938824, "credit_id": "536910960e0a2647d1008161", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Charlie Hardwick", "character": "Sheila Briggs", "id": 1041491, "credit_id": "536910a40e0a2647d4008162", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f80020eb", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 7.1, "runtime": 110}, "73": {"poster_path": "/fXepRAYOx1qC3wju7XdDGx60775.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23875127, "overview": "Derek Vineyard is paroled after serving 3 years in prison for killing two thugs who tried to break into/steal his truck. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.", "video": false, "id": 73, "genres": [{"id": 18, "name": "Drama"}], "title": "American History X", "tagline": "Some Legacies Must End.", "vote_count": 733, "homepage": "http://www.historyx.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120586", "adult": false, "backdrop_path": "/i9A0UMFg1hI2kLyCCwnmSbpT2cd.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Savoy Pictures", "id": 11308}, {"name": "The Turman-Morrissey Company", "id": 924}], "release_date": "1998-10-30", "popularity": 1.93401745649286, "original_title": "American History X", "budget": 10000000, "cast": [{"name": "Edward Norton", "character": "Derek Vinyard", "id": 819, "credit_id": "52fe4213c3a36847f8002187", "cast_id": 4, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Edward Furlong", "character": "Danny Vinyard", "id": 820, "credit_id": "52fe4213c3a36847f800218b", "cast_id": 5, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 1}, {"name": "Beverly D'Angelo", "character": "Doris Vinyard", "id": 821, "credit_id": "52fe4213c3a36847f800218f", "cast_id": 6, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 2}, {"name": "Avery Brooks", "character": "Dr. Bob Sweeney", "id": 822, "credit_id": "52fe4213c3a36847f8002193", "cast_id": 7, "profile_path": "/rlxoULLYfqGCsHGMly2yYW9Hf6x.jpg", "order": 3}, {"name": "Jennifer Lien", "character": "Davina Vinyard", "id": 823, "credit_id": "52fe4213c3a36847f8002197", "cast_id": 8, "profile_path": "/szHZKvsa4SDo6ZfqYZA1qr77vE4.jpg", "order": 4}, {"name": "Ethan Suplee", "character": "Seth Ryan", "id": 824, "credit_id": "52fe4213c3a36847f800219b", "cast_id": 9, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 5}, {"name": "Stacy Keach", "character": "Cameron Alexander", "id": 825, "credit_id": "52fe4213c3a36847f800219f", "cast_id": 10, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 6}, {"name": "Fairuza Balk", "character": "Stacey", "id": 826, "credit_id": "52fe4213c3a36847f80021a3", "cast_id": 11, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 7}, {"name": "Elliott Gould", "character": "Murray", "id": 827, "credit_id": "52fe4213c3a36847f80021a7", "cast_id": 12, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 8}, {"name": "Guy Torry", "character": "Lamont", "id": 828, "credit_id": "52fe4213c3a36847f80021ab", "cast_id": 13, "profile_path": "/aNpthnwYd2oHN8KhYBUAhzViNzT.jpg", "order": 9}, {"name": "William Russ", "character": "Dennis Vinyard", "id": 829, "credit_id": "52fe4213c3a36847f80021af", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Joe Cortese", "character": "Rasmussen (as Joe Cortese)", "id": 830, "credit_id": "52fe4213c3a36847f80021b3", "cast_id": 15, "profile_path": "/gIE0CB1FVMGP8cG7qEyCYz0nkqY.jpg", "order": 11}, {"name": "Jason Bose Smith", "character": "Little Henry (as Jason Bose-Smith)", "id": 831, "credit_id": "52fe4213c3a36847f80021b7", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Antonio David Lyons", "character": "Lawrence", "id": 832, "credit_id": "52fe4213c3a36847f80021bb", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Alex Sol", "character": "Mitch McCormick", "id": 833, "credit_id": "52fe4213c3a36847f80021bf", "cast_id": 18, "profile_path": "/r5ILaD7d10x3W3f6rhJXeQEgq0i.jpg", "order": 14}, {"name": "Giuseppe Andrews", "character": "Jason", "id": 4133, "credit_id": "52fe4213c3a36847f80021e1", "cast_id": 24, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 15}, {"name": "Keram Malicki-S\u00e1nchez", "character": "Chris", "id": 4134, "credit_id": "52fe4213c3a36847f80021e5", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Jonathan Fowler Jr.", "character": "Jerome", "id": 1332231, "credit_id": "53a422590e0a2667c6001314", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Christopher Masterson", "character": "Daryl Dawson", "id": 35769, "credit_id": "53a422710e0a2667cd001388", "cast_id": 29, "profile_path": "/gz0GFQmLLjo6Q9Gvf1rKdZd2XhM.jpg", "order": 18}, {"name": "Nicholas R. Oleson", "character": "Huge Aryan", "id": 1332233, "credit_id": "53a422840e0a2667c200131e", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Ala\u00efs Zo\u00eb Ang\u00e9lique Adell", "character": "Lizzy", "id": 1332230, "credit_id": "53a422450e0a2667c2001317", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Jordan Marder", "character": "Curtis", "id": 1332234, "credit_id": "53a422af0e0a2667d9001281", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Paul Le Mat", "character": "McMahon", "id": 12406, "credit_id": "53a422c40e0a2667d000124f", "cast_id": 32, "profile_path": "/lVFnr0ErI5A2ONotKRaAGE6xzAf.jpg", "order": 22}, {"name": "Thomas L. Bellissimo", "character": "Cop #2", "id": 1280435, "credit_id": "53a422d80e0a2667d9001289", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Cherish Lee", "character": "Kammi", "id": 112997, "credit_id": "53a422ec0e0a2667d0001252", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Sam Vlahos", "character": "Dr. Aguilar", "id": 157567, "credit_id": "53a423000e0a2667c90012c6", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Tara Blanchard", "character": "Ally Vinyard", "id": 1332235, "credit_id": "53a423160e0a2667c90012c9", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Anne Lambton", "character": "Cassandra", "id": 40310, "credit_id": "53a423250e0a2667c6001322", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Steve Wolford", "character": "Reporter", "id": 1332236, "credit_id": "53a423360e0a2667c90012cf", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Richard Noyce", "character": "Desk Sergeant", "id": 1332238, "credit_id": "53a4234c0e0a2667d50012f0", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Danso Gordon", "character": "Buddy #1", "id": 67453, "credit_id": "53a4235f0e0a2667d50012f6", "cast_id": 40, "profile_path": "/rgASd05kYCFjItn9dNk9Qj99Z5F.jpg", "order": 30}, {"name": "David Basulto", "character": "Guard", "id": 170730, "credit_id": "53a4239c0e0a2667d9001299", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "Alexis Rose Coen", "character": "Young Ally Vinyard", "id": 1332240, "credit_id": "53a423ae0e0a2667bf00126d", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Kiante Elam", "character": "Lawrence's Partner", "id": 1332241, "credit_id": "53a423c20e0a2667d5001303", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Paul Hopkins", "character": "Student", "id": 102853, "credit_id": "53a423d80e0a2667bf00127f", "cast_id": 45, "profile_path": "/bETrIuwlbd37J2Ljye4n5yjPjTj.jpg", "order": 34}, {"name": "Keith Odett", "character": "Random Skinhead", "id": 1332242, "credit_id": "53a423ee0e0a2667d0001263", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Jim Norton", "character": "Randy", "id": 14950, "credit_id": "53a43c84c3a3682a3f001146", "cast_id": 64, "profile_path": "/lndFtmSwtCzoeWkgjqJBqVRKGk2.jpg", "order": 36}, {"name": "Paul E. Short", "character": "Stocky Buddy", "id": 1331794, "credit_id": "53a424040e0a2667d0001267", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Nigel Miguel", "character": "Basketball Player", "id": 134770, "credit_id": "53a43d59c3a3682a4b001111", "cast_id": 65, "profile_path": null, "order": 38}, {"name": "Darrell Britt", "character": "White Supremicist (uncredited)", "id": 1332243, "credit_id": "53a424580e0a2667cd0013ae", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Robert 'Duckie' Carpenter", "character": "Skinhead (uncredited)", "id": 1332244, "credit_id": "53a4246a0e0a2667c90012eb", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Sydney 'Big Dawg' Colston", "character": "Prison Gang Leader (uncredited)", "id": 202080, "credit_id": "53a4247c0e0a2667c90012ef", "cast_id": 51, "profile_path": null, "order": 41}, {"name": "Hans Cozzens", "character": "Police officer #2 (uncredited)", "id": 1332246, "credit_id": "53a424920e0a2667d500131a", "cast_id": 52, "profile_path": null, "order": 42}, {"name": "John Embry", "character": "Parking Lot Skinhead (uncredited)", "id": 1332247, "credit_id": "53a424a80e0a2667cd0013ba", "cast_id": 53, "profile_path": null, "order": 43}, {"name": "Maximillian Kesmodel", "character": "Young Danny Vinyard (uncredited)", "id": 1332248, "credit_id": "53a424bc0e0a2667d000127c", "cast_id": 54, "profile_path": null, "order": 44}, {"name": "Barbie Marie", "character": "Student (uncredited)", "id": 40072, "credit_id": "53a424ce0e0a2667c90012f8", "cast_id": 55, "profile_path": null, "order": 45}, {"name": "Allie Moss", "character": "Skinhead Girlfriend (uncredited)", "id": 104619, "credit_id": "53a424df0e0a2667c90012fb", "cast_id": 56, "profile_path": null, "order": 46}, {"name": "Louis E. Rosas", "character": "Jail Inmate (uncredited)", "id": 1332249, "credit_id": "53a425280e0a2667d90012bb", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Sam Sarpong", "character": "Jail Inmate (uncredited)", "id": 146008, "credit_id": "53a43e92c3a3682a4e000fcd", "cast_id": 66, "profile_path": "/sTwCo10iZpyOq5SGP7NkGb58b6Y.jpg", "order": 48}, {"name": "Jeremy Sweet", "character": "Skinhead (uncredited)", "id": 1332252, "credit_id": "53a425980e0a2667bf0012aa", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Selwyn Ward", "character": "High School Student Leaving Bathroom (uncredited)", "id": 1229751, "credit_id": "53a425af0e0a2667d90012c7", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Denney Pierce", "character": "Arresting Officer (uncredited)", "id": 159264, "credit_id": "53a424f20e0a2667d90012b5", "cast_id": 57, "profile_path": null, "order": 51}, {"name": "Glendon Rich", "character": "Deputy Sheriff (uncredited)", "id": 1274297, "credit_id": "53a43ed8c3a3682a420011d4", "cast_id": 67, "profile_path": null, "order": 52}], "directors": [{"name": "Tony Kaye", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8002177", "profile_path": "/JCcF3JbptET0eF44w3sfMJw5E4.jpg", "id": 814}], "vote_average": 7.8, "runtime": 119}, "74": {"poster_path": "/xXMM9KY2eq1SDOQif9zO91YOBA8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 591739379, "overview": "The extraordinary battle for the future of humankind through the eyes of one American family fighting to survive it. Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop of his teenage son Robbie and young daughter Rachel for a rare weekend visit, a strange and powerful lightning storm touches down.", "video": false, "id": 74, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "War of the Worlds", "tagline": "They're already here.", "vote_count": 570, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0407304", "adult": false, "backdrop_path": "/hozzH6DHXjqSVx9LyipyQiWc7MA.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2005-06-28", "popularity": 1.32935476562618, "original_title": "War of the Worlds", "budget": 132000000, "cast": [{"name": "Tom Cruise", "character": "Ray Ferrier", "id": 500, "credit_id": "52fe4213c3a36847f800226b", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Dakota Fanning", "character": "Rachel Ferrier", "id": 501, "credit_id": "52fe4213c3a36847f800226f", "cast_id": 14, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 1}, {"name": "Miranda Otto", "character": "Mary-Ann", "id": 502, "credit_id": "52fe4213c3a36847f8002273", "cast_id": 15, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 2}, {"name": "Justin Chatwin", "character": "Robbie Ferrier", "id": 503, "credit_id": "52fe4213c3a36847f8002277", "cast_id": 16, "profile_path": "/rG5aYePsnpDf3H5NS6iH0F63WIy.jpg", "order": 3}, {"name": "Tim Robbins", "character": "Harlan Ogilvy", "id": 504, "credit_id": "52fe4213c3a36847f800227b", "cast_id": 17, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 4}, {"name": "Camillia Sanes", "character": "News Producer", "id": 505, "credit_id": "52fe4213c3a36847f800227f", "cast_id": 18, "profile_path": "/vXcl0AppqxNOezulogepdhiDos9.jpg", "order": 5}, {"name": "John Scurti", "character": "Ferry Captain", "id": 506, "credit_id": "52fe4213c3a36847f8002283", "cast_id": 19, "profile_path": "/eX86aQIuaZORhGRpf7TiGdZ2K6g.jpg", "order": 6}, {"name": "Morgan Freeman", "character": "Narrator (Voice)", "id": 192, "credit_id": "52fe4213c3a36847f8002287", "cast_id": 20, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 7}, {"name": "Takayo Fischer", "character": "Older Woman", "id": 33500, "credit_id": "52fe4214c3a36847f800229d", "cast_id": 24, "profile_path": "/gNIFc8rWnFzplkisEonefyxjmG1.jpg", "order": 8}, {"name": "Yul Vazquez", "character": "Julio", "id": 75604, "credit_id": "52fe4214c3a36847f80022a1", "cast_id": 25, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 9}, {"name": "Ann Robinson", "character": "Grandmother", "id": 103079, "credit_id": "530a66539251411108003d2a", "cast_id": 27, "profile_path": "/bsA08Ny0XnOvQvW0IVCi0jRo6XV.jpg", "order": 10}, {"name": "Gene Barry", "character": "Grandfather", "id": 56442, "credit_id": "530a66419251411111003f15", "cast_id": 26, "profile_path": "/q2DQGsyA5hxyKDEiLeR3yVGmcqM.jpg", "order": 11}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8002225", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 5.8, "runtime": 116}, "180299": {"poster_path": "/egBhIDn9P9Pw3z0UFL3ylHikdzJ.jpg", "production_countries": [{"iso_3166_1": "ID", "name": "Indonesia"}], "revenue": 6600000, "overview": "After fighting his way through an apartment building populated by an army of dangerous criminals and escaping with his life, SWAT team member Rama goes undercover, joining a powerful Indonesian crime syndicate to protect his family and uncover corrupt members of his own force.", "video": false, "id": 180299, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Raid 2", "tagline": "It's Not Over Yet", "vote_count": 264, "homepage": "http://www.sonyclassics.com/theraid2/", "belongs_to_collection": {"backdrop_path": "/oRQ7INsPDVon7U2jphXDr7LSP3H.jpg", "poster_path": "/eAlYfpNmZ2BFjdamgXvy96kt3WG.jpg", "id": 257960, "name": "The Raid Collection"}, "original_language": "id", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "id", "name": "Bahasa indonesia"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2265171", "adult": false, "backdrop_path": "/1UVnDeeiN6IoJqgCJDfa1XTzB4N.jpg", "production_companies": [{"name": "XYZ Films", "id": 12142}, {"name": "Pt. Merantau Films", "id": 12141}], "release_date": "2014-03-28", "popularity": 0.629084271753696, "original_title": "The Raid 2: Berandal", "budget": 4500000, "cast": [{"name": "Iko Uwais", "character": "Rama", "id": 113732, "credit_id": "52fe4c449251416c7511520d", "cast_id": 3, "profile_path": "/5unOYIpJUl35q5Q7dG1A6tJF2Jk.jpg", "order": 0}, {"name": "Arifin Putra", "character": "Ucok", "id": 1290939, "credit_id": "52fe4c449251416c75115217", "cast_id": 5, "profile_path": "/271wW3kxeiQgnXiLAXs3QzfXsmd.jpg", "order": 1}, {"name": "Tio Pakusodewo", "character": "Bangun", "id": 1155281, "credit_id": "52fe4c449251416c7511521b", "cast_id": 6, "profile_path": "/odGJFwM9KrsmR6JQabv8SfWA3KE.jpg", "order": 2}, {"name": "Oka Antara", "character": "Eka", "id": 1154465, "credit_id": "52fe4c449251416c7511521f", "cast_id": 7, "profile_path": "/2BY3OgPWwbpGN7rQEXGlm1muqtQ.jpg", "order": 3}, {"name": "Julie Estelle", "character": "Hammer Girl", "id": 145882, "credit_id": "52fe4c449251416c75115223", "cast_id": 8, "profile_path": "/AtX1IFI7ionpsKuTVr4gOWqEnhz.jpg", "order": 4}, {"name": "Ken'ichi End\u00f4", "character": "Hideaki Goto", "id": 35642, "credit_id": "52fe4c449251416c7511522b", "cast_id": 10, "profile_path": "/aifZwBDDgNNhBiz8UfzppwhX5Zf.jpg", "order": 6}, {"name": "Kazuki Kitamura", "character": "Ryuichi", "id": 2542, "credit_id": "52fe4c449251416c7511522f", "cast_id": 11, "profile_path": "/2DefK5vG0JquPJ1UdcckaPRcy96.jpg", "order": 7}, {"name": "Donny Alamsyah", "character": "Andi", "id": 1202416, "credit_id": "532c53bec3a3684bc6001943", "cast_id": 12, "profile_path": "/r0nj2yPF760NEgj2tVT5TCY2HjG.jpg", "order": 8}, {"name": "Alek Abbad", "character": "Bejo", "id": 1304641, "credit_id": "5331b0fec3a3686a9d001f36", "cast_id": 13, "profile_path": "/cK6IXZP6PKpgw95QE5dv3jeNBRZ.jpg", "order": 9}, {"name": "Very Tri Yulisman", "character": "Baseball Bat Man", "id": 1304642, "credit_id": "5331b118c3a3686aa5001e1a", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Yayan Ruhian", "character": "Prakoso", "id": 142019, "credit_id": "5367d730c3a3681231004d5f", "cast_id": 15, "profile_path": "/dt6EJRqA4UMHWIEDddbkONXaz4k.jpg", "order": 11}, {"name": "Ryuhei Matsuda", "character": "Keiichi", "id": 72932, "credit_id": "53712646c3a3687012000448", "cast_id": 16, "profile_path": "/h5LaFzOmcIufsD0i0nv12AG00Mo.jpg", "order": 12}, {"name": "Roy Marten", "character": "Reza", "id": 1307923, "credit_id": "537d9566c3a36805a8000ac2", "cast_id": 17, "profile_path": "/2SmtBdoYo1B7Ap0tvaD5Bs5Tcph.jpg", "order": 13}, {"name": "Epy Kusnandar", "character": "Topan", "id": 1180616, "credit_id": "5452d6370e0a265f2e0004db", "cast_id": 39, "profile_path": "/epfkHCgeWv4QErSoU6jMyTJKrPO.jpg", "order": 14}, {"name": "Cok Simbara", "character": "Bunawar", "id": 1379748, "credit_id": "5452d65b0e0a265f2800055e", "cast_id": 40, "profile_path": "/9qXG4YMRXtAfQqzruqndQl0fFYU.jpg", "order": 15}, {"name": "Cecep Arif Rahman", "character": "The Assassin", "id": 1379749, "credit_id": "5452d6830e0a265f1e00052c", "cast_id": 41, "profile_path": null, "order": 16}], "directors": [{"name": "Gareth Evans", "department": "Directing", "job": "Director", "credit_id": "52fe4c449251416c75115203", "profile_path": "/alW7ScKUxyiI2TOBYOZkACsLD7c.jpg", "id": 142013}], "vote_average": 7.7, "runtime": 150}, "76": {"poster_path": "/4sDmI88gUAInHitaTkGej90Q3Z7.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5535405, "overview": "A dialogue marathon of a film, this fairytale love story of an American boy and French girl. During a day and a night together in Vienna their two hearts collide.", "video": false, "id": 76, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Before Sunrise", "tagline": "Can the greatest moment of your life last only one night?", "vote_count": 277, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wtNugZq8ZzBYwPIh3VoNUJdkBWG.jpg", "poster_path": "/fYSKN1tV1gdiTMfzRpZpKspGAHp.jpg", "id": 123800, "name": "Before... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0112471", "adult": false, "backdrop_path": "/x2M8mp6wSU4iFPECacHJkQuuvYx.jpg", "production_companies": [{"name": "Detour Film Production", "id": 98}], "release_date": "1995-01-27", "popularity": 0.903404068682618, "original_title": "Before Sunrise", "budget": 2500000, "cast": [{"name": "Ethan Hawke", "character": "Jesse", "id": 569, "credit_id": "52fe4214c3a36847f80023e5", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Julie Delpy", "character": "C\u00e9line", "id": 1146, "credit_id": "52fe4214c3a36847f800241b", "cast_id": 16, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Andrea Eckert", "character": "Wife on Train", "id": 571, "credit_id": "52fe4214c3a36847f80023e9", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Hanno P\u00f6schl", "character": "Husband on Train", "id": 572, "credit_id": "52fe4214c3a36847f80023ed", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Karl Bruckschwaiger", "character": "Guy on Bridge", "id": 573, "credit_id": "52fe4214c3a36847f80023f1", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Tex Rubinowitz", "character": "Guy on Bridge", "id": 574, "credit_id": "52fe4214c3a36847f80023f5", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Erni Mangold", "character": "Palm Reader", "id": 146859, "credit_id": "52fe4214c3a36847f8002457", "cast_id": 28, "profile_path": "/rPeOwfbWBeuNWHvc2UoMPrHyOQl.jpg", "order": 6}, {"name": "Dominik Castell", "character": "Street Poet", "id": 3735, "credit_id": "52fe4214c3a36847f8002437", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Haymon Maria Buttinger", "character": "Bartender", "id": 3738, "credit_id": "52fe4214c3a36847f8002443", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Harold Waiglein", "character": "Guitar Player in Club", "id": 3737, "credit_id": "52fe4214c3a36847f800243f", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Bilge Jeschim", "character": "Belly Dancer", "id": 3736, "credit_id": "52fe4214c3a36847f800243b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Kurti", "character": "Percussionist", "id": 3739, "credit_id": "52fe4214c3a36847f8002447", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Hans Weingartner", "character": "Cafe Patron", "id": 3722, "credit_id": "52fe4214c3a36847f8002417", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Liese Lyon", "character": "Cafe Patron", "id": 1265413, "credit_id": "52fe4214c3a36847f800245b", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Peter Ily Huemer", "character": "Cafe Patron", "id": 1265414, "credit_id": "52fe4214c3a36847f800245f", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Otto Reiter", "character": "Cafe Patron", "id": 1265415, "credit_id": "52fe4214c3a36847f8002463", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Hubert Fabian Kulterer", "character": "Cafe Patron", "id": 1265416, "credit_id": "52fe4214c3a36847f8002467", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Branko Andric", "character": "Cafe Patron", "id": 1265417, "credit_id": "52fe4214c3a36847f800246b", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Constanze Schweiger", "character": "Cafe Patron", "id": 1265418, "credit_id": "52fe4214c3a36847f800246f", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "John Sloss", "character": "Cafe Patron", "id": 3727, "credit_id": "52fe4214c3a36847f8002473", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Alexandra Seibel", "character": "Cafe Patron", "id": 1265419, "credit_id": "52fe4214c3a36847f8002477", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Georg Sch\u00f6llhammer", "character": "Cafe Patron", "id": 1265420, "credit_id": "52fe4214c3a36847f800247b", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Christian Ankowitsch", "character": "Cafe Patron", "id": 1265421, "credit_id": "52fe4214c3a36847f800247f", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Wilbirg Reiter", "character": "Cafe Patron", "id": 1265422, "credit_id": "52fe4214c3a36847f8002483", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Barbara Klebel", "character": "Musician on Boat", "id": 1265423, "credit_id": "52fe4214c3a36847f8002487", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Wolfgang Staribacher", "character": "Musician on Boat", "id": 1265424, "credit_id": "52fe4214c3a36847f800248b", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Wolfgang Gl\u00fcxam", "character": "Harpsichord Player", "id": 1265425, "credit_id": "52fe4214c3a36847f800248f", "cast_id": 42, "profile_path": null, "order": 26}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f80023e1", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.4, "runtime": 105}, "77": {"poster_path": "/fQMSaP88cf1nz4qwuNEEFtazuDM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39723096, "overview": "Suffering short-term memory loss after a head injury, Leonard Shelby embarks on a grim quest to find the lowlife who murdered his wife in this gritty, complex thriller that packs more knots than a hangman's noose. To carry out his plan, Shelby snaps Polaroids of people and places, jotting down contextual notes on the backs of photos to aid in his search and jog his memory. He even tattoos his own body in a desperate bid to remember.", "video": false, "id": 77, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Memento", "tagline": "Some memories are best forgotten.", "vote_count": 1074, "homepage": "http://www.otnemem.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0209144", "adult": false, "backdrop_path": "/oBUznaSdjkY3HtQUzAxgdIZqh4w.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Newmarket Capital Group", "id": 506}, {"name": "Team Todd", "id": 598}, {"name": "I Remember Productions", "id": 34446}], "release_date": "2000-10-11", "popularity": 1.58227714442313, "original_title": "Memento", "budget": 9000000, "cast": [{"name": "Guy Pearce", "character": "Leonard", "id": 529, "credit_id": "52fe4214c3a36847f80024db", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Natalie", "id": 530, "credit_id": "52fe4214c3a36847f80024df", "cast_id": 5, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Joe Pantoliano", "character": "Teddy Gammell", "id": 532, "credit_id": "52fe4214c3a36847f80024e3", "cast_id": 6, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 2}, {"name": "Mark Boone Junior", "character": "Burt", "id": 534, "credit_id": "52fe4214c3a36847f80024e7", "cast_id": 7, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 3}, {"name": "Russ Fega", "character": "Waiter", "id": 535, "credit_id": "52fe4214c3a36847f80024eb", "cast_id": 8, "profile_path": "/7JFQueMbXqGIz16wKBlok7WfNNz.jpg", "order": 4}, {"name": "Jorja Fox", "character": "Leonard's Wife", "id": 536, "credit_id": "52fe4214c3a36847f80024ef", "cast_id": 9, "profile_path": "/KmCnCaOutfi5tWlgD9U2AZHpqi.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Sammy", "id": 537, "credit_id": "52fe4214c3a36847f80024f3", "cast_id": 10, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Harriet Sansom Harris", "character": "Mrs. Jankis", "id": 538, "credit_id": "52fe4214c3a36847f80024f7", "cast_id": 11, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 7}, {"name": "Thomas Lennon", "character": "Doctor", "id": 539, "credit_id": "52fe4214c3a36847f80024fb", "cast_id": 12, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 8}, {"name": "Callum Keith Rennie", "character": "Dodd", "id": 540, "credit_id": "52fe4214c3a36847f80024ff", "cast_id": 13, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 9}, {"name": "Kimberly Campbell", "character": "Blonde", "id": 542, "credit_id": "52fe4214c3a36847f8002503", "cast_id": 14, "profile_path": "/sgIVwvbipevAf9SplOOctJRuP36.jpg", "order": 10}, {"name": "Marianne Muellerleile", "character": "Tattooist", "id": 543, "credit_id": "52fe4214c3a36847f8002507", "cast_id": 15, "profile_path": "/5Qex2uBzsjqSRUFeeW4sT7FhuYH.jpg", "order": 11}, {"name": "Larry Holden", "character": "Jimmy", "id": 544, "credit_id": "52fe4214c3a36847f800250b", "cast_id": 16, "profile_path": "/8yV3Rfvt0iWJZwO6jt2YnkdzdzL.jpg", "order": 12}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f80024cb", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.7, "runtime": 113}, "78": {"poster_path": "/p64TtbZGCElxQHpAMWmDHkWJlH2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32768670, "overview": "In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to kill a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.", "video": false, "id": 78, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blade Runner", "tagline": "Man has made his match... now it's his problem.", "vote_count": 1182, "homepage": "http://bladerunnerthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0083658", "adult": false, "backdrop_path": "/tv8J6uCTKsTlASa8luJqrFiJlBX.jpg", "production_companies": [{"name": "Shaw Brothers", "id": 5798}, {"name": "The Ladd Company", "id": 7965}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1982-06-25", "popularity": 1.65418683462246, "original_title": "Blade Runner", "budget": 28000000, "cast": [{"name": "Harrison Ford", "character": "Rick Deckard", "id": 3, "credit_id": "52fe4214c3a36847f800259f", "cast_id": 6, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Rutger Hauer", "character": "Roy Batty", "id": 585, "credit_id": "52fe4214c3a36847f80025a3", "cast_id": 7, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 1}, {"name": "Sean Young", "character": "Rachael", "id": 586, "credit_id": "52fe4214c3a36847f80025a7", "cast_id": 8, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 2}, {"name": "Edward James Olmos", "character": "Gaff", "id": 587, "credit_id": "52fe4214c3a36847f80025ab", "cast_id": 9, "profile_path": "/i7zKqsFqL5L1HPmAMeSA1xZzlD5.jpg", "order": 3}, {"name": "Daryl Hannah", "character": "Pris", "id": 589, "credit_id": "52fe4214c3a36847f80025b3", "cast_id": 11, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 5}, {"name": "William Sanderson", "character": "J.F. Sebastian", "id": 590, "credit_id": "52fe4214c3a36847f80025b7", "cast_id": 12, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 6}, {"name": "Brion James", "character": "Leon Kowalski", "id": 591, "credit_id": "52fe4214c3a36847f80025bb", "cast_id": 13, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 7}, {"name": "Joe Turkel", "character": "Eldon Tyrell", "id": 592, "credit_id": "52fe4214c3a36847f80025bf", "cast_id": 14, "profile_path": "/8d16GA57SnVXP3WGB0fbkFCKily.jpg", "order": 8}, {"name": "Joanna Cassidy", "character": "Zhora", "id": 593, "credit_id": "52fe4214c3a36847f80025c3", "cast_id": 15, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 9}, {"name": "James Hong", "character": "Hannibal Chew", "id": 20904, "credit_id": "52fe4214c3a36847f8002615", "cast_id": 29, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 10}, {"name": "Morgan Paull", "character": "Holden", "id": 58495, "credit_id": "52fe4214c3a36847f8002625", "cast_id": 33, "profile_path": "/k8EaOIcEWYrWknWyR4zfQbansPN.jpg", "order": 11}, {"name": "Kevin Thompson", "character": "Bear", "id": 53760, "credit_id": "52fe4214c3a36847f8002629", "cast_id": 34, "profile_path": "/pUKpoqEjQg7Isu0dJFBtootlWad.jpg", "order": 12}, {"name": "John Edward Allen", "character": "Kaiser", "id": 943481, "credit_id": "52fe4214c3a36847f800262d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Hy Pyke", "character": "Taffey Lewis", "id": 107074, "credit_id": "52fe4214c3a36847f8002631", "cast_id": 36, "profile_path": "/b7DfZgPV2lOvPJZNRrvMoAzxJ0t.jpg", "order": 14}, {"name": "Kimiko Hiroshige", "character": "Cambodian Lady", "id": 951333, "credit_id": "52fe4214c3a36847f8002635", "cast_id": 37, "profile_path": "/1WPGIg7JzUSGviTjH8vorQ4xG69.jpg", "order": 15}, {"name": "Carolyn DeMirjian", "character": "Saleslady", "id": 949610, "credit_id": "52fe4214c3a36847f8002639", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Bob Okazaki", "character": "Howie Lee", "id": 1221198, "credit_id": "52fe4214c3a36847f8002643", "cast_id": 41, "profile_path": "/ke2y5GnDnVR2BQ6y8Z8B4TXq2aj.jpg", "order": 17}, {"name": "M. Emmet Walsh", "character": "Bryant", "id": 588, "credit_id": "5402bd1bc3a3684360004649", "cast_id": 42, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 18}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f8002595", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.6, "runtime": 117}, "79": {"poster_path": "/xkJnow23eDxwQXB0iIWAWkBF47y.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 177394432, "overview": "One man defeated three assassins who sought to murder the most powerful warlord in pre-unified China.", "video": false, "id": 79, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Hero", "tagline": "One man's strength will unite an empire.", "vote_count": 165, "homepage": "", "belongs_to_collection": null, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0299977", "adult": false, "backdrop_path": "/xC9DRxpKgqJKDYLa9mkNa74eX4q.jpg", "production_companies": [{"name": "Beijing New Picture Film Co. Ltd.", "id": 724}, {"name": "China Film Co-Production Corporation", "id": 2269}], "release_date": "2002-12-19", "popularity": 0.97129713594225, "original_title": "\u82f1\u96c4", "budget": 31000000, "cast": [{"name": "Jet Li", "character": "Nameless", "id": 1336, "credit_id": "52fe4214c3a36847f8002697", "cast_id": 6, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Tony Leung Chiu-Wai", "character": "Broken Sword", "id": 1337, "credit_id": "52fe4214c3a36847f800269b", "cast_id": 7, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 1}, {"name": "Maggie Cheung", "character": "Flying Snow", "id": 1338, "credit_id": "52fe4214c3a36847f800269f", "cast_id": 8, "profile_path": "/qDkqRF3SwuopbT2bw6B4amEwQzO.jpg", "order": 2}, {"name": "Zhang Ziyi", "character": "Moon", "id": 1339, "credit_id": "52fe4214c3a36847f80026a3", "cast_id": 9, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 3}, {"name": "Chen Dao-Ming", "character": "King of Qin", "id": 1340, "credit_id": "52fe4214c3a36847f80026a7", "cast_id": 10, "profile_path": "/scPOGddPDvmN46v2uJ2vRubm65c.jpg", "order": 4}, {"name": "Donnie Yen", "character": "Sky", "id": 1341, "credit_id": "52fe4214c3a36847f80026ab", "cast_id": 11, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 5}, {"name": "Liu Zhong Yuan", "character": "Scholar", "id": 1342, "credit_id": "52fe4214c3a36847f80026af", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Zheng Tia Yong", "character": "Old Servant", "id": 1343, "credit_id": "52fe4214c3a36847f80026b3", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Yan Qin", "character": "Prime Minister", "id": 1344, "credit_id": "52fe4214c3a36847f80026b7", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Chang Xiao Yang", "character": "General", "id": 1345, "credit_id": "52fe4214c3a36847f80026bb", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "James Hong", "character": "Qin Emperor (voice)", "id": 20904, "credit_id": "549af481c3a3680b27001556", "cast_id": 30, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 10}, {"name": "Xia Bin", "character": "Qin Guard #4", "id": 1403596, "credit_id": "549af4c2925141311f001d2d", "cast_id": 31, "profile_path": null, "order": 11}], "directors": [{"name": "Zhang Yimou", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f8002709", "profile_path": "/rXancm9GMRLQlGc4dz6o5BFtnRy.jpg", "id": 607}], "vote_average": 6.6, "runtime": 99}, "80": {"poster_path": "/cIj6yWJKUjdCCO7vuZQKl0NqCQe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15992615, "overview": "Nine years ago two strangers met by chance and spent a night in Vienna that ended before sunrise. They are about to meet for the first time since. Now they have one afternoon to find out if they belong together.", "video": false, "id": 80, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Before Sunset", "tagline": "What if you had a second chance with the one that got away?", "vote_count": 203, "homepage": "http://www.warnerbros.com/?site=beforesunset#/page=movies&pid=f-57b53b9e/BEFORE_SUNSET&asset=059437/Before_Sunset_-_Trailer_1A&type=video/", "belongs_to_collection": {"backdrop_path": "/wtNugZq8ZzBYwPIh3VoNUJdkBWG.jpg", "poster_path": "/fYSKN1tV1gdiTMfzRpZpKspGAHp.jpg", "id": 123800, "name": "Before... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0381681", "adult": false, "backdrop_path": "/tNOf61ltTMg8UD1Hi9yQravElFF.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Detour Film Production", "id": 98}], "release_date": "2004-02-10", "popularity": 0.471635829726755, "original_title": "Before Sunset", "budget": 2700000, "cast": [{"name": "Ethan Hawke", "character": "Jesse", "id": 569, "credit_id": "52fe4214c3a36847f800276b", "cast_id": 8, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Julie Delpy", "character": "C\u00e9line", "id": 1146, "credit_id": "52fe4214c3a36847f800276f", "cast_id": 13, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Vernon Dobtcheff", "character": "Bookstore Manager", "id": 649, "credit_id": "52fe4214c3a36847f80027a3", "cast_id": 26, "profile_path": "/lcPki2IDdmRvqiBbv2RUBfgm3IH.jpg", "order": 2}, {"name": "Louise Lemoine Torr\u00e8s", "character": "Journalist #1", "id": 651, "credit_id": "52fe4214c3a36847f80027a7", "cast_id": 27, "profile_path": null, "order": 3}, {"name": "Rodolphe Pauly", "character": "Journalist #2", "id": 1275639, "credit_id": "52fe4214c3a36847f80027ab", "cast_id": 28, "profile_path": null, "order": 4}, {"name": "Mariane Plasteig", "character": "Waitress", "id": 657, "credit_id": "52fe4215c3a36847f80027af", "cast_id": 29, "profile_path": null, "order": 5}, {"name": "Diabolo", "character": "Philippe", "id": 3728, "credit_id": "52fe4215c3a36847f80027b3", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "Denis Evrard", "character": "Boat Attendant", "id": 3729, "credit_id": "52fe4215c3a36847f80027b7", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Albert Delpy", "character": "Man at Grill", "id": 3730, "credit_id": "52fe4215c3a36847f80027bb", "cast_id": 32, "profile_path": "/eydDphfX1BM7Q0HvLKFGhAIJGlW.jpg", "order": 8}, {"name": "Marie Pillet", "character": "Woman in Courtyard", "id": 3731, "credit_id": "52fe4215c3a36847f80027bf", "cast_id": 33, "profile_path": "/39EBKcbGa8PUIRL2q0dF31LZ4fQ.jpg", "order": 9}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f8002743", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.4, "runtime": 77}, "81": {"poster_path": "/y2rl0OkMfZHpBaQYPfSJmLMOxwp.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 3301446, "overview": "Nausica\u00e4, a gentle young princess, has an empathetic bond with the giant mutated insects that evolved in the wake of the destruction of the ecosystem. Traveling by cumbersome flying ship, on the backs of giant birds, and perched atop her beloved glider, Nausica\u00e4 and her allies must negotiate peace between kingdoms battling over the last of the world's precious natural resources.", "video": false, "id": 81, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Nausica\u00e4 of the Valley of the Wind", "tagline": "", "vote_count": 289, "homepage": "http://disneydvd.disney.go.com/nausicaa-of-the-valley-of-the-wind.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0087544", "adult": false, "backdrop_path": "/qKIldRZ3jy3uGWdrNIt3P7QA5J3.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Nibariki", "id": 12516}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "Topcraft", "id": 29}], "release_date": "1984-03-11", "popularity": 1.1239258259499, "original_title": "\u98a8\u306e\u8c37\u306e\u30ca\u30a6\u30b7\u30ab", "budget": 1000000, "cast": [{"name": "Sumi Shimamoto", "character": "Nausica\u00e4 (Voice)", "id": 613, "credit_id": "52fe4215c3a36847f800281f", "cast_id": 5, "profile_path": "/cB1JXMD6Eyb1ONKfsj32Lai4AfV.jpg", "order": 0}, {"name": "Mahito Tsujimura", "character": "Jihl (Voice)", "id": 614, "credit_id": "52fe4215c3a36847f8002823", "cast_id": 6, "profile_path": "/dqVhQYTCYWOCuEofBZ5O3Xdgd3y.jpg", "order": 1}, {"name": "Hisako Ky\u014dda", "character": "Oh-Baba (Voice)", "id": 615, "credit_id": "52fe4215c3a36847f8002827", "cast_id": 7, "profile_path": "/3HC0RARybfpcA1D0vS349UHwCea.jpg", "order": 2}, {"name": "Gor\u014d Naya", "character": "Yupa (Voice)", "id": 616, "credit_id": "52fe4215c3a36847f800282b", "cast_id": 8, "profile_path": "/emnvHXMyXPnJteqypnp5LreX4YG.jpg", "order": 3}, {"name": "Ichir\u014d Nagai", "character": "Mito (Voice)", "id": 617, "credit_id": "52fe4215c3a36847f800282f", "cast_id": 9, "profile_path": "/dI7cAwwF6LJ9uQs0BB6jbr8mghm.jpg", "order": 4}, {"name": "K\u014dhei Miyauchi", "character": "Goru (Voice)", "id": 618, "credit_id": "52fe4215c3a36847f8002833", "cast_id": 10, "profile_path": "/AeGLykfdziKEpQ8NY2uTfE5Lril.jpg", "order": 5}, {"name": "J\u00f4ji Yanami", "character": "Gikkuri (Voice)", "id": 619, "credit_id": "52fe4215c3a36847f8002837", "cast_id": 11, "profile_path": "/6PgJcEz2RgGcZ1TwfkIIuhrUaXz.jpg", "order": 6}, {"name": "Minoru Yada", "character": "Niga (Voice)", "id": 620, "credit_id": "52fe4215c3a36847f800283b", "cast_id": 12, "profile_path": "/ou7xfpY5ao7uKfFAWLpJAIr6bHm.jpg", "order": 7}, {"name": "Rihoko Yoshida", "character": "Teto / Girl C (Voice)", "id": 621, "credit_id": "52fe4215c3a36847f800283f", "cast_id": 13, "profile_path": "/qnb5bWs7wdiVCLpTggIZId5Pj2q.jpg", "order": 8}, {"name": "Y\u014dji Matsuda", "character": "Asbel (Voice)", "id": 622, "credit_id": "52fe4215c3a36847f8002843", "cast_id": 14, "profile_path": "/wZijOHyaFIVKJY9yfyIsusamFbv.jpg", "order": 9}, {"name": "M\u00eena Tominaga", "character": "Rastel (Voice)", "id": 623, "credit_id": "52fe4215c3a36847f8002847", "cast_id": 15, "profile_path": "/yTdkX8n81mdhY8YZtuEVRihoYKB.jpg", "order": 10}, {"name": "Yoshiko Sakakibara", "character": "Kushana (Voice)", "id": 624, "credit_id": "52fe4215c3a36847f800284b", "cast_id": 16, "profile_path": "/aocre8nV2T4VpIHasdguw1W7edM.jpg", "order": 11}, {"name": "Iemasa Kayumi", "character": "Kurotowa (Voice)", "id": 625, "credit_id": "52fe4215c3a36847f800284f", "cast_id": 17, "profile_path": "/doji21RoWXS4gjWkBLyClNicHKW.jpg", "order": 12}, {"name": "Tetsuo Mizutori", "character": "Commando (Voice)", "id": 626, "credit_id": "52fe4215c3a36847f8002853", "cast_id": 18, "profile_path": "/wi0ufCIpj2go4LVLQ71tiDjPG6Z.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002815", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.8, "runtime": 117}, "82": {"poster_path": "/3BsNsigWcET4tKLZZhJegw7eOjF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163794509, "overview": "Miami Vice is a feature film based on the 1980's action drama TV series. The film tells the story of vice detectives Crockett and Tubbs and how their personal and professional lives are dangerously getting mixed.", "video": false, "id": 82, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Miami Vice", "tagline": "No Law. No Rules. No Order.", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0430357", "adult": false, "backdrop_path": "/cxiwBBPdBAFV1SbMCRt7CMgLhLi.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-07-27", "popularity": 0.869194007424346, "original_title": "Miami Vice", "budget": 135000000, "cast": [{"name": "Jamie Foxx", "character": "Detective Ricardo \"Rico\" Tubbs", "id": 134, "credit_id": "52fe4215c3a36847f800291f", "cast_id": 5, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Detective James \"Sonny\" Crockett", "id": 72466, "credit_id": "52fe4215c3a36847f8002977", "cast_id": 25, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Gong Li", "character": "Isabella", "id": 643, "credit_id": "52fe4215c3a36847f8002923", "cast_id": 7, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 2}, {"name": "Luis Tosar", "character": "Montoya", "id": 16867, "credit_id": "52fe4215c3a36847f800292d", "cast_id": 9, "profile_path": "/tRNvw26QeN80JwWHoamk262hjjq.jpg", "order": 3}, {"name": "Naomie Harris", "character": "Trudy Joplin", "id": 2038, "credit_id": "52fe4215c3a36847f8002931", "cast_id": 10, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 4}, {"name": "Justin Theroux", "character": "Zito", "id": 15009, "credit_id": "52fe4215c3a36847f8002935", "cast_id": 11, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 5}, {"name": "Ciar\u00e1n Hinds", "character": "FBI Agent Fujima", "id": 8785, "credit_id": "52fe4215c3a36847f8002939", "cast_id": 12, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 6}, {"name": "John Ortiz", "character": "Jose Yero", "id": 40543, "credit_id": "52fe4215c3a36847f800293d", "cast_id": 13, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 7}, {"name": "Elizabeth Rodriguez", "character": "Gina Calabrese", "id": 65421, "credit_id": "52fe4215c3a36847f8002941", "cast_id": 14, "profile_path": "/lwJXQ7DDRY9W4pdzQzJKdeKuCFl.jpg", "order": 8}, {"name": "Domenick Lombardozzi", "character": "Switek", "id": 17941, "credit_id": "52fe4215c3a36847f8002945", "cast_id": 15, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 9}, {"name": "Eddie Marsan", "character": "Nicholas", "id": 1665, "credit_id": "52fe4215c3a36847f8002949", "cast_id": 16, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 10}, {"name": "John Hawkes", "character": "Alonzo Stevens", "id": 16861, "credit_id": "52fe4215c3a36847f800294d", "cast_id": 17, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 11}, {"name": "Vivienne Sendaydiego", "character": "ER Doctor", "id": 65422, "credit_id": "52fe4215c3a36847f8002951", "cast_id": 18, "profile_path": "/b3JChYQNrdQKMsqscShvEwPWsGe.jpg", "order": 12}, {"name": "Mike Pniewski", "character": "ER Doctor", "id": 65423, "credit_id": "52fe4215c3a36847f8002955", "cast_id": 19, "profile_path": "/6oJOSX84GXwuR9HA9RXTOeTeiKC.jpg", "order": 13}, {"name": "Isaach De Bankol\u00e9", "character": "Neptune", "id": 4812, "credit_id": "53565f050e0a262861002f4a", "cast_id": 26, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 14}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "53e53d870e0a2628d1000034", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 5.8, "runtime": 134}, "8275": {"poster_path": "/uIqZ7Pt0xMAcQAXUc2nziZc4T47.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The movie will shift its focus on Erik Stifler, the cousin of Matt and Steve, a youngster who is nothing like his wild relations. Peer pressure starts to turn him to live up to the legacy of the other Stiflers when he attends the Naked Mile, a naked run across the college campus. Things get worse when he finds that his cousin Dwight is the life of the party down at the campus", "video": false, "id": 8275, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: The Naked Mile", "tagline": "the most outrageous slice of pie!", "vote_count": 119, "homepage": "http://www.americanreunionmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808146", "adult": false, "backdrop_path": "/pOGdj63Szvtyf1nYa5h8hZ1vDFm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-12-21", "popularity": 0.760579610354926, "original_title": "American Pie Presents: The Naked Mile", "budget": 0, "cast": [{"name": "Christopher McDonald", "character": "Mr. Stifler", "id": 4443, "credit_id": "52fe449ac3a36847f809fa53", "cast_id": 2, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 0}, {"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe449ac3a36847f809fa57", "cast_id": 3, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 1}, {"name": "John White", "character": "Erik Stifler", "id": 26973, "credit_id": "52fe449ac3a36847f809fa5b", "cast_id": 4, "profile_path": "/8zB8P7zyTTftK1acA5UhwWb4jMU.jpg", "order": 2}, {"name": "Jessy Schram", "character": "Tracey", "id": 26974, "credit_id": "52fe449ac3a36847f809fa5f", "cast_id": 5, "profile_path": "/xIU2h01K7fL46RdjZ1mqY9Hvtxm.jpg", "order": 3}, {"name": "Steve Talley", "character": "Dwight Stifler", "id": 26975, "credit_id": "52fe449ac3a36847f809fa63", "cast_id": 6, "profile_path": "/k0T00nPOY7K0Wocd5l7gfjoTJHF.jpg", "order": 4}, {"name": "Jordan Prentice", "character": "Rock", "id": 54476, "credit_id": "52fe449ac3a36847f809fa67", "cast_id": 7, "profile_path": "/6h6zFtJapmtixIenZJV0UYDzCNc.jpg", "order": 5}, {"name": "Jake Siegel", "character": "Mike Coozeman", "id": 54598, "credit_id": "52fe449ac3a36847f809fa6b", "cast_id": 8, "profile_path": "/58L1doLjmEJxxfA23qeu2QjNt4C.jpg", "order": 6}], "directors": [{"name": "Joe Nussbaum", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809fa4f", "profile_path": "/sQR3t4gOVvI58k4fA2YbxnL5ygI.jpg", "id": 54597}], "vote_average": 5.7, "runtime": 97}, "85": {"poster_path": "/44sKJOGP3fTm4QXBcIuqu0RkdP7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 389925971, "overview": "When Dr. Indiana Jones \u2013 the tweed-suited professor who just happens to be a celebrated archaeologist \u2013 is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.", "video": false, "id": 85, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Raiders of the Lost Ark", "tagline": "Indiana Jones - the new hero from the creators of JAWS and STAR WARS.", "vote_count": 1673, "homepage": "http://www.indianajones.com", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "ne", "name": ""}], "imdb_id": "tt0082971", "adult": false, "backdrop_path": "/dU1CArBM4YsKLfG8YvhtuTJJaGR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lucasfilm", "id": 1}], "release_date": "1981-06-12", "popularity": 2.33004170472407, "original_title": "Raiders of the Lost Ark", "budget": 18000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4215c3a36847f8002a05", "cast_id": 2, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Karen Allen", "character": "Marion Ravenwood", "id": 650, "credit_id": "52fe4215c3a36847f8002a09", "cast_id": 3, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 1}, {"name": "Paul Freeman", "character": "Dr. Rene Belloq", "id": 652, "credit_id": "52fe4215c3a36847f8002a0d", "cast_id": 4, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 2}, {"name": "Ronald Lacey", "character": "Major Toht", "id": 653, "credit_id": "52fe4215c3a36847f8002a11", "cast_id": 5, "profile_path": "/nQTtqJP7Go9cnvq9252IXqY9dMM.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "Sallah", "id": 655, "credit_id": "52fe4215c3a36847f8002a15", "cast_id": 6, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Denholm Elliott", "character": "Dr. Marcus Brody", "id": 656, "credit_id": "52fe4215c3a36847f8002a19", "cast_id": 7, "profile_path": "/lpDIKHwg1ttp03i3fKWcSuQ8MfY.jpg", "order": 5}, {"name": "Wolf Kahler", "character": "Colonel Dietrich", "id": 659, "credit_id": "52fe4215c3a36847f8002a1d", "cast_id": 8, "profile_path": "/uqHI2PLeGFxdjlw0qIk1D17NjWb.jpg", "order": 6}, {"name": "Anthony Higgins", "character": "Gobler", "id": 660, "credit_id": "52fe4215c3a36847f8002a21", "cast_id": 9, "profile_path": "/1cjZmBBVlUCZlLqX4Jn1EOdVulw.jpg", "order": 7}, {"name": "Vic Tablian", "character": "Barranca / Monkey Man", "id": 661, "credit_id": "52fe4215c3a36847f8002a25", "cast_id": 10, "profile_path": "/2QHEhXgTbp4BvRw1tiQeduqaXxP.jpg", "order": 8}, {"name": "Don Fellows", "character": "Col. Musgrove", "id": 662, "credit_id": "52fe4215c3a36847f8002a29", "cast_id": 11, "profile_path": "/sQgCr3xz2LVomGMKCvb7rLD9dMX.jpg", "order": 9}, {"name": "William Hootkins", "character": "Major Eaton", "id": 663, "credit_id": "52fe4215c3a36847f8002a2d", "cast_id": 12, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Alfred Molina", "character": "Satipo", "id": 658, "credit_id": "52fe4215c3a36847f8002a31", "cast_id": 13, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 11}, {"name": "Eddie Tagoe", "character": "Messenger Pirate", "id": 55909, "credit_id": "52fe4215c3a36847f8002a95", "cast_id": 30, "profile_path": "/1J9ujNEgWVupIxTJ8NouIRbblvn.jpg", "order": 12}, {"name": "George Harris", "character": "Katanga", "id": 2247, "credit_id": "52fe4215c3a36847f8002a99", "cast_id": 31, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 13}, {"name": "Bill Reimbold", "character": "Bureaucrat", "id": 1402694, "credit_id": "54982fa29251417315003497", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Fred Sorenson", "character": "Jock", "id": 1402695, "credit_id": "549830409251415447001607", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Patrick Durkin", "character": "Australian Climber", "id": 1402696, "credit_id": "5498313b9251416e1e0079c2", "cast_id": 34, "profile_path": "/sGzsiLgMbYl3tJPdofVCHOg8eoK.jpg", "order": 16}, {"name": "Matthew Scurfield", "character": "2nd. Nazi", "id": 134116, "credit_id": "5498537292514130fc006f20", "cast_id": 35, "profile_path": "/o2khvP0opODBIf6X6zvrFPUJ2SH.jpg", "order": 17}, {"name": "Malcolm Weaver", "character": "Ratty Nepalese", "id": 1402756, "credit_id": "54985429c3a3680ff50071e9", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Sonny Caldinez", "character": "Mean Mongolian", "id": 1230490, "credit_id": "54985531c3a3680ff50071fd", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Anthony Chinn", "character": "Mohan", "id": 1211876, "credit_id": "5498965492514150330002e7", "cast_id": 38, "profile_path": "/vDan4SUtiJ8HXD4GWREqg090Vjv.jpg", "order": 20}, {"name": "Pat Roach", "character": "Giant Sherpa / 1st Mechanic", "id": 10942, "credit_id": "549896c5c3a3681cff00024b", "cast_id": 39, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 21}, {"name": "Christopher Frederick", "character": "Otto", "id": 1402807, "credit_id": "5498982492514150360002ef", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Tutte Lemkow", "character": "Imam", "id": 1231662, "credit_id": "5498996cc3a3681ce9000357", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Ishaq Bux", "character": "Omar", "id": 1220322, "credit_id": "54989ab0c3a3681ce900036a", "cast_id": 42, "profile_path": "/jKK0Gw3rKQoA7IRNpYARisQNS2c.jpg", "order": 24}, {"name": "Kiran Shah", "character": "Abu", "id": 5531, "credit_id": "54989b9c92514150390002f8", "cast_id": 43, "profile_path": "/oQer3lBnxD8gKFHoz7o7eJMF6od.jpg", "order": 25}, {"name": "Souad Messaoudi", "character": "Fayah", "id": 1402821, "credit_id": "54989c3f9251415036000326", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Terry Richards", "character": "Arab Swordsman", "id": 1229106, "credit_id": "54989e6f9251415033000360", "cast_id": 45, "profile_path": "/y8UKK34LF8dFbSA6ALCvaADGIiT.jpg", "order": 27}, {"name": "Steve Hanson", "character": "German Agent", "id": 1402823, "credit_id": "54989ef2c3a3681cef0003d1", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Frank Marshall", "character": "Pilot", "id": 664, "credit_id": "5498a2439251415039000389", "cast_id": 47, "profile_path": "/iZrDellT1OWf1syKzBgQHjY2hJe.jpg", "order": 29}, {"name": "Martin Kreidt", "character": "Young Soldier", "id": 1402828, "credit_id": "5498a2ee925141502d000351", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "John Rees", "character": "Sergeant", "id": 145876, "credit_id": "5498a6cd925141502600041d", "cast_id": 49, "profile_path": null, "order": 31}, {"name": "Tony Vogel", "character": "Tall Captain", "id": 24714, "credit_id": "5498a7b4c3a3681cef000477", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Ted Grossman", "character": "Peruvian Porter", "id": 8591, "credit_id": "5498a8f492514150390003e0", "cast_id": 51, "profile_path": null, "order": 33}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002a01", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.2, "runtime": 115}, "4474": {"poster_path": "/aP7lAuOywcuUVk9kVMdj2FNDQy7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60896147, "overview": "When New York architect Matt Saunders dumps his new girlfriend Jenny Johnson - a smart, sexy and reluctant superhero known as G-Girl - she uses her powers to make his life a living hell!", "video": false, "id": 4474, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "My Super Ex-Girlfriend", "tagline": "Hell hath no fury like a superwoman scorned.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465624", "adult": false, "backdrop_path": "/jr4LERW2A5MjWi7wJyvVq1NHfRX.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-06-20", "popularity": 0.38240598661818, "original_title": "My Super Ex-Girlfriend", "budget": 0, "cast": [{"name": "Uma Thurman", "character": "Jenny Johnson", "id": 139, "credit_id": "52fe43c4c3a36847f806e085", "cast_id": 3, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "Luke Wilson", "character": "Matt Saunders", "id": 36422, "credit_id": "52fe43c4c3a36847f806e089", "cast_id": 4, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Anna Faris", "character": "Hannah", "id": 1772, "credit_id": "52fe43c4c3a36847f806e08d", "cast_id": 5, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Eddie Izzard", "character": "Professor Bedlam", "id": 1926, "credit_id": "52fe43c4c3a36847f806e091", "cast_id": 6, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 3}, {"name": "Rainn Wilson", "character": "Vaughn Haige", "id": 11678, "credit_id": "52fe43c4c3a36847f806e095", "cast_id": 7, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 4}, {"name": "Stelio Savante", "character": "Leo", "id": 37403, "credit_id": "52fe43c4c3a36847f806e099", "cast_id": 8, "profile_path": "/eumJP3cImfBBH1cNSPi6N85bz15.jpg", "order": 5}, {"name": "Big Guido", "character": "Lenny", "id": 37404, "credit_id": "52fe43c4c3a36847f806e09d", "cast_id": 9, "profile_path": "/dO9LFUCpUy2k4Fq6pl0nBRqELxS.jpg", "order": 6}, {"name": "Wanda Sykes", "character": "Carla Dunkirk", "id": 27102, "credit_id": "52fe43c4c3a36847f806e0a1", "cast_id": 10, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 7}, {"name": "Margaret Anne Florence", "character": "Bartender", "id": 37405, "credit_id": "52fe43c4c3a36847f806e0a5", "cast_id": 11, "profile_path": "/hHdAas8A7aQQ42sIdUsszDO1FE6.jpg", "order": 8}, {"name": "Catherine Reitman", "character": "TV News Reporter", "id": 154826, "credit_id": "530378d6c3a3680a095a0140", "cast_id": 24, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 9}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806e07b", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.2, "runtime": 95}, "87": {"poster_path": "/f2nTRKk2zGdUTE7tLJ5EGGSuKA6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 333000000, "overview": "After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees, and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.", "video": false, "id": 87, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Indiana Jones and the Temple of Doom", "tagline": "If adventure has a name... it must be Indiana Jones.", "vote_count": 1067, "homepage": "http://www.indianajones.com", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "si", "name": ""}], "imdb_id": "tt0087469", "adult": false, "backdrop_path": "/uG6AChg2FA3EmRuJDezDqoIpQzB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lucasfilm", "id": 1}], "release_date": "1984-05-22", "popularity": 1.4912321678831, "original_title": "Indiana Jones and the Temple of Doom", "budget": 28000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4215c3a36847f8002c09", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Kate Capshaw", "character": "Wilhelmina \"Willie\" Scott", "id": 689, "credit_id": "52fe4215c3a36847f8002c0d", "cast_id": 5, "profile_path": "/qhrU9F2xcMd9ZHBQZxth8P6FpLF.jpg", "order": 1}, {"name": "Jonathan Ke Quan", "character": "Short Round", "id": 690, "credit_id": "52fe4215c3a36847f8002c11", "cast_id": 6, "profile_path": "/1cKtw6cBhWPHtjUBiY3si8odVIE.jpg", "order": 2}, {"name": "Amrish Puri", "character": "Mola Ram", "id": 691, "credit_id": "52fe4215c3a36847f8002c15", "cast_id": 7, "profile_path": "/9WsIjfAyhYgkT4Nvbffn98NLvio.jpg", "order": 3}, {"name": "Roshan Seth", "character": "Chattar Lal", "id": 693, "credit_id": "52fe4215c3a36847f8002c19", "cast_id": 8, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 4}, {"name": "Philip Stone", "character": "Captain Blumburtt", "id": 694, "credit_id": "52fe4215c3a36847f8002c1d", "cast_id": 9, "profile_path": "/qtaBPJZC7MpoyWfcyXJ1zdEfYwU.jpg", "order": 5}, {"name": "Roy Chiao", "character": "Lao Che", "id": 695, "credit_id": "52fe4215c3a36847f8002c21", "cast_id": 10, "profile_path": "/6gBxdImc8eGHeDDEJGFiGrIwx6O.jpg", "order": 6}, {"name": "David Yip", "character": "Wu Han", "id": 696, "credit_id": "52fe4215c3a36847f8002c25", "cast_id": 11, "profile_path": "/s2ApWZ620ZMe8nwvKM2y8TwjenE.jpg", "order": 7}, {"name": "Ric Young", "character": "Kao Kan", "id": 11397, "credit_id": "52fe4215c3a36847f8002c29", "cast_id": 12, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 8}, {"name": "Chua Kah Joo", "character": "Chen", "id": 699, "credit_id": "52fe4215c3a36847f8002c2d", "cast_id": 13, "profile_path": "/sVJUeMRFGYuCTD3jvrf4hRpteky.jpg", "order": 9}, {"name": "Rex Ngui", "character": "Maitre d'", "id": 701, "credit_id": "52fe4215c3a36847f8002c31", "cast_id": 14, "profile_path": "/y2FC7QT3jcT7YfzZ0ac5eLaDqad.jpg", "order": 10}, {"name": "Philip Tan", "character": "Chief Henchman", "id": 702, "credit_id": "52fe4215c3a36847f8002c35", "cast_id": 15, "profile_path": "/dJP4kbCF2f8dg88BROfRukd67H1.jpg", "order": 11}, {"name": "Dan Aykroyd", "character": "Earl Weber", "id": 707, "credit_id": "52fe4215c3a36847f8002c39", "cast_id": 16, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 12}, {"name": "Akio Mitamura", "character": "Chinese Pilot", "id": 1402218, "credit_id": "5496e97f9251417315001633", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Michael Yama", "character": "Chinese Co-Pilot", "id": 80123, "credit_id": "5496eb479251416e2b006625", "cast_id": 33, "profile_path": "/pLgUpZWV5iOxHkQW7kLKkhHT4WJ.jpg", "order": 14}, {"name": "D.R. Nanayakkara", "character": "Shaman", "id": 1055317, "credit_id": "5496f4c4c3a368115300450b", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Dharmadasa Kuruppu", "character": "Chieftain", "id": 1402258, "credit_id": "5496f51192514130fc004f7f", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Stany De Silva", "character": "Sajnu", "id": 1402260, "credit_id": "5496f55c92514130fc004f89", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Ruby de Mel", "character": "Village Woman", "id": 1402261, "credit_id": "5496f5ef925141731500177c", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Denavaka Hamine", "character": "Village Woman", "id": 1402263, "credit_id": "5496f6d89251416e2b0067ac", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Iranganie Serasinghe", "character": "Village Woman", "id": 1402266, "credit_id": "5496f81392514171620016bb", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Dharshana Panangala", "character": "Village Child", "id": 1402267, "credit_id": "5496f92bc3a3686ae900680b", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Raj Singh", "character": "Little Maharaja", "id": 1402268, "credit_id": "549707fbc3a3686ae1006eb7", "cast_id": 41, "profile_path": "/pmLAWqfc1U0L5ru8WwK6pgwzk9s.jpg", "order": 22}, {"name": "Frank Olegario", "character": "Merchant #1", "id": 977657, "credit_id": "549709f09251413f75004b98", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Ahmed El Shenawi", "character": "Merchant #2", "id": 1402269, "credit_id": "54970a3692514132ed004ba6", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Arthur F. Repola", "character": "Eel Eater", "id": 735, "credit_id": "5497f1319251416e2b007e9b", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Nizwar Karanj", "character": "Sacrifice Victim", "id": 213391, "credit_id": "5497f1e0c3a3680fc6005cd4", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Pat Roach", "character": "Chief Guard", "id": 10942, "credit_id": "5497f351c3a3686af3007337", "cast_id": 46, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 27}, {"name": "Moti Makan", "character": "Guard", "id": 1402504, "credit_id": "5497f3e2c3a3686af3007342", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Mellan Mitchell", "character": "Temple Guard", "id": 215400, "credit_id": "5497f4fdc3a3680511001102", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Bhasker Patel", "character": "Temple Guard", "id": 119792, "credit_id": "5497f6b3c3a3680fc6005d4d", "cast_id": 49, "profile_path": "/yL95vZesZfDXIaRDsX94w2BzkFZ.jpg", "order": 30}, {"name": "Arjun Pandher", "character": "1st Boy in Cell", "id": 1402509, "credit_id": "5497f6e3c3a368054b001224", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Zia Gelani", "character": "2nd Boy in Cell", "id": 1402514, "credit_id": "5497f776c3a3681153005b2a", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Debbie Astell", "character": "Dancer", "id": 1402517, "credit_id": "5497f8519251417a810058ca", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Maureen Bacchus", "character": "Dancer", "id": 1402521, "credit_id": "5497f8ef9251415447001055", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Corinne Barton", "character": "Dancer", "id": 1402523, "credit_id": "5497f93ac3a368054b00126a", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Carol Beddington", "character": "Dancer", "id": 1402527, "credit_id": "5497f9b69251416e2b007f96", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Sharon Boone", "character": "Dancer", "id": 1402528, "credit_id": "5497fa35c3a36802a9000f30", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Elizabeth Burville", "character": "Dancer", "id": 1402609, "credit_id": "54980f109251413f75006298", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "Marisa Campbell", "character": "Dancer", "id": 1402610, "credit_id": "54980f8092514130fc0068f6", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Christine Cartwright", "character": "Dancer", "id": 1402613, "credit_id": "54981215c3a3686ae900840a", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Andrea Chance", "character": "Dancer", "id": 1402614, "credit_id": "5498127092514132ed00636b", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Jan Colton", "character": "Dancer", "id": 1402615, "credit_id": "549812cd92514132ed006379", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Louise Dalgleish", "character": "Dancer", "id": 1402616, "credit_id": "54981328c3a36802a90011a2", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Lorraine Doyle", "character": "Dancer", "id": 563900, "credit_id": "549813fc925141544700135b", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Vanessa Fieldwright", "character": "Dancer", "id": 1402617, "credit_id": "5498143a9251417315003222", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Brenda Glassman", "character": "Dancer", "id": 1402618, "credit_id": "54981490c3a368051100146b", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Elaine Gough", "character": "Dancer", "id": 1402619, "credit_id": "549814d8c3a3680511001477", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "Sue Hadleigh", "character": "Dancer", "id": 1402620, "credit_id": "5498153b92514132ed0063ae", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Sarah-Jane Hassell", "character": "Dancer", "id": 1402632, "credit_id": "549815fa9251417a81005ba6", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Samantha Hughes", "character": "Dancer", "id": 1402641, "credit_id": "549816bbc3a36805110014af", "cast_id": 69, "profile_path": null, "order": 50}, {"name": "Julie Kirk", "character": "Dancer", "id": 1402664, "credit_id": "549817db9251413f75006372", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Deirdre Laird", "character": "Dancer", "id": 1402666, "credit_id": "54981853c3a3680fc60060b6", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Vicki McDonald", "character": "Dancer", "id": 1402669, "credit_id": "549818afc3a3680fc60060c0", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Nina McMahon", "character": "Dancer", "id": 1402670, "credit_id": "549818fb92514132ed006415", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Julia Marstand", "character": "Dancer", "id": 1402672, "credit_id": "54981948c3a3680ff5006ce4", "cast_id": 74, "profile_path": null, "order": 55}, {"name": "Gaynor Martine", "character": "Dancer", "id": 1402675, "credit_id": "549819fe9251417a81005c14", "cast_id": 75, "profile_path": null, "order": 56}, {"name": "Lisa Mulidore", "character": "Dancer", "id": 1402676, "credit_id": "54981a6ac3a3680fc60060f7", "cast_id": 76, "profile_path": null, "order": 57}, {"name": "Dawn Reddall", "character": "Dancer", "id": 1402677, "credit_id": "54981ac292514132ed006443", "cast_id": 77, "profile_path": null, "order": 58}, {"name": "Rebekkah Sekyi", "character": "Dancer", "id": 1402678, "credit_id": "54981b00c3a3680fc600610b", "cast_id": 78, "profile_path": null, "order": 59}, {"name": "Clare Smalley", "character": "Dancer", "id": 1402682, "credit_id": "54981b7cc3a368054b001671", "cast_id": 79, "profile_path": null, "order": 60}, {"name": "Lee Sprintall", "character": "Dancer", "id": 1402684, "credit_id": "54981be5c3a3680fc6006122", "cast_id": 80, "profile_path": null, "order": 61}, {"name": "Jenny Turnock", "character": "Dancer", "id": 1402685, "credit_id": "54981c24c3a3681153005ef2", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Ruth Welby", "character": "Dancer", "id": 1402686, "credit_id": "54981c68c3a3681153005f04", "cast_id": 82, "profile_path": null, "order": 63}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002bf9", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.7, "runtime": 118}, "88": {"poster_path": "/zMHIZHxKv6kdE3JFQqZFqj7OswK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213954274, "overview": "Expecting the usual tedium that accompanies a summer in the Catskills with her family, 17-year-old Frances \"Baby\" Houseman is surprised to find herself stepping into the shoes of a professional hoofer -- and unexpectedly falling in love. The object of her affection? The resort's free-spirited dance instructor.", "video": false, "id": 88, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Dirty Dancing", "tagline": "Have the time of your life.", "vote_count": 276, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qR6POAKwCL8VwuK8ZjSAdRRFNj9.jpg", "poster_path": "/gkrOvdbCFuGlxVwCYmczw7aw6Ku.jpg", "id": 86058, "name": "Dirty Dancing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092890", "adult": false, "backdrop_path": "/ngDmpFRzNGr9XMtKchhBZjt4DLH.jpg", "production_companies": [{"name": "Great American Films Limited Partnership", "id": 137}, {"name": "Vestron Pictures", "id": 12360}], "release_date": "1987-08-20", "popularity": 1.03239297211051, "original_title": "Dirty Dancing", "budget": 6000000, "cast": [{"name": "Jennifer Grey", "character": "Baby (Frances) Houseman", "id": 722, "credit_id": "52fe4215c3a36847f8002d0f", "cast_id": 7, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 0}, {"name": "Patrick Swayze", "character": "Johnny Castle", "id": 723, "credit_id": "52fe4216c3a36847f8002d13", "cast_id": 8, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 1}, {"name": "Cynthia Rhodes", "character": "Penny Johnson", "id": 724, "credit_id": "52fe4216c3a36847f8002d17", "cast_id": 9, "profile_path": "/zt0z8Mj1aQC8SHeYAo6vph9Hd6.jpg", "order": 2}, {"name": "Jerry Orbach", "character": "Dr. Jake Houseman", "id": 725, "credit_id": "52fe4216c3a36847f8002d1b", "cast_id": 10, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 3}, {"name": "Jack Weston", "character": "Max Kellerman", "id": 726, "credit_id": "52fe4216c3a36847f8002d1f", "cast_id": 11, "profile_path": "/1y2ohASYY91i4hDrkhZVuyb1uVD.jpg", "order": 4}, {"name": "Jane Brucker", "character": "Lisa Houseman", "id": 727, "credit_id": "52fe4216c3a36847f8002d23", "cast_id": 12, "profile_path": "/ll7qdMGtJS10sxJs3eYEj9TrALn.jpg", "order": 5}, {"name": "Kelly Bishop", "character": "Marjorie Houseman", "id": 728, "credit_id": "52fe4216c3a36847f8002d27", "cast_id": 13, "profile_path": "/rXjKYHafK17IiqgjWvmZYdmpdo9.jpg", "order": 6}, {"name": "Lonny Price", "character": "Neil Kellerman", "id": 729, "credit_id": "52fe4216c3a36847f8002d2b", "cast_id": 14, "profile_path": "/lC6huJbgseVOA35LNeXy2e2cgOY.jpg", "order": 7}, {"name": "Max Cantor", "character": "Robbie Gould", "id": 730, "credit_id": "52fe4216c3a36847f8002d2f", "cast_id": 15, "profile_path": "/x0ETedhRTA21vCrvlPxh97s1rjH.jpg", "order": 8}, {"name": "Alvin Myerovich", "character": "Mr. Schumacher", "id": 733, "credit_id": "52fe4216c3a36847f8002d33", "cast_id": 16, "profile_path": "/l7lzg6gG389TIl7QGHrJeEA5s0e.jpg", "order": 9}, {"name": "Paula Trueman", "character": "Mrs. Schumacher", "id": 734, "credit_id": "52fe4216c3a36847f8002d37", "cast_id": 17, "profile_path": "/qXZAw0uswXslggmg5hJmeC0iAAL.jpg", "order": 10}, {"name": "Charles 'Honi' Coles", "character": "Tito Suarez", "id": 4198, "credit_id": "52fe4216c3a36847f8002d5f", "cast_id": 25, "profile_path": "/4nD8ff4h8WMdacWKQjPJZlcVlVZ.jpg", "order": 11}, {"name": "Neal Jones", "character": "Billy Kostecki", "id": 4199, "credit_id": "52fe4216c3a36847f8002d63", "cast_id": 26, "profile_path": "/c86o0FZyiksJW3p90wvhtmMVykL.jpg", "order": 12}, {"name": "Wayne Knight", "character": "Stan", "id": 4201, "credit_id": "52fe4216c3a36847f8002d67", "cast_id": 28, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 13}, {"name": "Miranda Garrison", "character": "Vivian Pressman", "id": 4202, "credit_id": "52fe4216c3a36847f8002d6b", "cast_id": 29, "profile_path": "/vwRsn3kEdudFaZTDLWnkOu2GhZq.jpg", "order": 14}, {"name": "Garry Goodrow", "character": "Moe Pressman", "id": 4203, "credit_id": "52fe4216c3a36847f8002d6f", "cast_id": 30, "profile_path": "/wqoBQvY6HGhYA3VvG9iDoKzpz6t.jpg", "order": 15}, {"name": "Antone Pagan", "character": "Staff Kid", "id": 4204, "credit_id": "52fe4216c3a36847f8002d73", "cast_id": 31, "profile_path": "/8Jpc1xDU1BS1t7TKaEXQpu7dWnt.jpg", "order": 16}, {"name": "Thomas Cannold", "character": "Bus Boy", "id": 4205, "credit_id": "52fe4216c3a36847f8002d77", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Heather Lea Gerdes", "character": "Dirty Dancer", "id": 4206, "credit_id": "52fe4216c3a36847f8002d7b", "cast_id": 33, "profile_path": "/ytyeUreMJLFprK76XngfjdE7Xce.jpg", "order": 18}, {"name": "Jesus Fuentes", "character": "Dirty Dancer", "id": 4207, "credit_id": "52fe4216c3a36847f8002d7f", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "M.R. Fletcher", "character": "Dirty Dancer", "id": 4208, "credit_id": "52fe4216c3a36847f8002d83", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Karen Getz", "character": "Dirty Dancer", "id": 4209, "credit_id": "52fe4216c3a36847f8002d87", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Andrew Charles Koch", "character": "Dirty Dancer", "id": 4210, "credit_id": "52fe4216c3a36847f8002d8b", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "D.A. Pauley", "character": "Dirty Dancer", "id": 4211, "credit_id": "52fe4216c3a36847f8002d8f", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Jennifer Stahl", "character": "Dirty Dancer", "id": 4212, "credit_id": "52fe4216c3a36847f8002d93", "cast_id": 39, "profile_path": "/AjBPZ4q98aXo16E5RF4uK9rdWUx.jpg", "order": 24}, {"name": "Dorian Sanchez", "character": "Dirty Dancer", "id": 4213, "credit_id": "52fe4216c3a36847f8002d97", "cast_id": 40, "profile_path": "/2gWA8NvEIrCMWJhP7WccDC4GSCC.jpg", "order": 25}, {"name": "Cousin Brucie Morrow", "character": "Magician", "id": 1022730, "credit_id": "52fe4216c3a36847f8002da7", "cast_id": 43, "profile_path": "/bT4Re8WJTujPPXzKK8RhXzXeW1h.jpg", "order": 26}], "directors": [{"name": "Emile Ardolino", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002ced", "profile_path": "/h4LqsmRshajyuggfxR3wj7aNqyi.jpg", "id": 716}], "vote_average": 6.7, "runtime": 100}, "89": {"poster_path": "/4p1N2Qrt8j0H8xMHMHvtRxv9weZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 474171806, "overview": "When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana Jones must team up with Marcus Brody, Sallah, and Elsa Schneider to follow in his father's footsteps and stop the Nazis from recovering the power of eternal life.", "video": false, "id": 89, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Indiana Jones and the Last Crusade", "tagline": "The man with the hat is back. And this time, he's bringing his Dad.", "vote_count": 1343, "homepage": "http://www.indianajones.com/crusade", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097576", "adult": false, "backdrop_path": "/m3bEQlir8IWpmFocQBXWM5fkHri.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1989-05-24", "popularity": 1.46340568907959, "original_title": "Indiana Jones and the Last Crusade", "budget": 48000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4216c3a36847f8002e1d", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Sean Connery", "character": "Professor Henry Jones", "id": 738, "credit_id": "52fe4216c3a36847f8002e21", "cast_id": 9, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Denholm Elliott", "character": "Dr. Marcus Brody", "id": 656, "credit_id": "52fe4216c3a36847f8002e25", "cast_id": 10, "profile_path": "/lpDIKHwg1ttp03i3fKWcSuQ8MfY.jpg", "order": 2}, {"name": "Alison Doody", "character": "Dr. Elsa Schneider", "id": 739, "credit_id": "52fe4216c3a36847f8002e29", "cast_id": 11, "profile_path": "/rF2Ai6QVb2WeDwrFMhtbOOfUule.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "Sallah", "id": 655, "credit_id": "52fe4216c3a36847f8002e2d", "cast_id": 12, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Julian Glover", "character": "Walter Donovan", "id": 740, "credit_id": "52fe4216c3a36847f8002e31", "cast_id": 13, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 5}, {"name": "River Phoenix", "character": "Indiana Jones (young)", "id": 741, "credit_id": "52fe4216c3a36847f8002e35", "cast_id": 14, "profile_path": "/qfokbmRwRvmIVsLHScshxLPAB3C.jpg", "order": 6}, {"name": "Michael Byrne", "character": "Vogel", "id": 742, "credit_id": "52fe4216c3a36847f8002e39", "cast_id": 15, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 7}, {"name": "Kevork Malikyan", "character": "Kazim", "id": 743, "credit_id": "52fe4216c3a36847f8002e3d", "cast_id": 16, "profile_path": "/aq3elIciFeSrvbVyDNeoozQqLnm.jpg", "order": 8}, {"name": "Robert Eddison", "character": "Grail Knight", "id": 744, "credit_id": "52fe4216c3a36847f8002e41", "cast_id": 17, "profile_path": "/oONf8tM0Kxvg8CaLfpT7sx09Iug.jpg", "order": 9}, {"name": "Richard Young", "character": "Fedora", "id": 745, "credit_id": "52fe4216c3a36847f8002e45", "cast_id": 18, "profile_path": "/WAnB3iXDZ5eOWOpDQBHr04ifiX.jpg", "order": 10}, {"name": "Alexei Sayle", "character": "Sultan", "id": 746, "credit_id": "52fe4216c3a36847f8002e49", "cast_id": 19, "profile_path": "/xZ45YRSZi6rDbCo6iWgDu7WeFWQ.jpg", "order": 11}, {"name": "Paul Maxwell", "character": "Panama Hat", "id": 748, "credit_id": "52fe4216c3a36847f8002e4d", "cast_id": 20, "profile_path": "/vioUXrSIz2OV0yWCPIJNZqHI9n0.jpg", "order": 12}, {"name": "Isla Blair", "character": "Mrs. Donovan", "id": 749, "credit_id": "52fe4216c3a36847f8002e51", "cast_id": 21, "profile_path": "/aqHLIxtiB7TfFVp68vcQLVEdRNu.jpg", "order": 13}, {"name": "Vernon Dobtcheff", "character": "Butler", "id": 649, "credit_id": "52fe4216c3a36847f8002e97", "cast_id": 33, "profile_path": "/lcPki2IDdmRvqiBbv2RUBfgm3IH.jpg", "order": 14}, {"name": "Alex Hyde-White", "character": "Young Henry", "id": 747, "credit_id": "549936699251411f400008bc", "cast_id": 36, "profile_path": "/n51gvejj2jPn2rLLPC0mO47uGTL.jpg", "order": 15}, {"name": "J. J. Hardy", "character": "Herman", "id": 1402876, "credit_id": "54993af79251411f4300095c", "cast_id": 37, "profile_path": "/oqT6ak0uvKHxdF2P5eZmYeRAkTx.jpg", "order": 16}, {"name": "Bradley Gregg", "character": "Roscoe", "id": 3039, "credit_id": "54993c9ec3a368270a000943", "cast_id": 38, "profile_path": "/l4vc0U4XQ7t07pqekPPVehzs0R.jpg", "order": 17}, {"name": "Jeff O'Haco", "character": "Half Breed", "id": 1020340, "credit_id": "54993e09c3a3682703000902", "cast_id": 39, "profile_path": "/jxzZd6t8KhDx5aKkRJyBxgXWBM0.jpg", "order": 18}, {"name": "Vince Deadrick Sr.", "character": "Rough Rider", "id": 1402879, "credit_id": "54994086c3a368270a0009a0", "cast_id": 40, "profile_path": "/vZQrgFgmMZShbOAg9WjulBGMWzo.jpg", "order": 19}, {"name": "Marc Miles", "character": "Sheriff", "id": 1402887, "credit_id": "549942979251411f400009ca", "cast_id": 41, "profile_path": "/bAggC0KaaITXJ7daVaGDOcjZimy.jpg", "order": 20}, {"name": "Ted Grossman", "character": "Deputy Sheriff", "id": 8591, "credit_id": "549943629251411f400009e2", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Tim Hiser", "character": "Young Panama Hat", "id": 1402890, "credit_id": "549944019251411f450009d0", "cast_id": 43, "profile_path": "/9b9QRZF3XmCTMAG7uWA7t78xpM.jpg", "order": 22}, {"name": "Larry Sanders", "character": "Scout Master", "id": 1402891, "credit_id": "549944ce9251411f40000a03", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Will Miles", "character": "Scout #1", "id": 1402892, "credit_id": "549945789251411f5400098a", "cast_id": 45, "profile_path": "/2CN88cENaO3LsEdGHbBVJJVU4kr.jpg", "order": 24}, {"name": "David Murray", "character": "Scout #2", "id": 1402893, "credit_id": "5499464cc3a36826f8000b47", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Frederick Jaeger", "character": "World War One Ace", "id": 1212166, "credit_id": "5499491dc3a36826fc000b1f", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Jerry Harte", "character": "Professor Stanton", "id": 1270880, "credit_id": "54994d0a9251411f43000aed", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Billy J. Mitchell", "character": "Dr. Mulbray", "id": 55911, "credit_id": "54994e259251411f54000a2b", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Martin Gordon", "character": "Man at Hitler Rally", "id": 1402913, "credit_id": "54994f179251411f45000a9f", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Paul Humpoletz", "character": "German Officer at Hitler Rally", "id": 158674, "credit_id": "549950519251411f40000ab3", "cast_id": 51, "profile_path": "/mXHgh2NQvtktfYvHYwAHbTuEJHa.jpg", "order": 30}, {"name": "Tom Branch", "character": "Hatay Soldier in Temple", "id": 1402917, "credit_id": "549950c0c3a3682703000a7f", "cast_id": 52, "profile_path": null, "order": 31}, {"name": "Graeme Crowther", "character": "Zeppelin Crewman", "id": 1402919, "credit_id": "5499518fc3a36826f8000c22", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Luke Hanson", "character": "Principal SS Officer at Castle", "id": 1402922, "credit_id": "549952679251411f43000b60", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Chris Jenkinson", "character": "Officer at Castle", "id": 1402925, "credit_id": "549952fb9251411f52000b48", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Nicola Scott", "character": "Female Officer at Castle", "id": 1402957, "credit_id": "549961a59251411f43000ce0", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Louis Sheldon", "character": "Young Officer at Castle", "id": 1402960, "credit_id": "5499627a9251411f45000c54", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Stefan Kalipha", "character": "Hatay Tank Gunner", "id": 25079, "credit_id": "549964e39251411f54000c2e", "cast_id": 58, "profile_path": "/g1mNJ1eTrVi5wD1d76kRnFWbn2h.jpg", "order": 37}, {"name": "Peter Pacey", "character": "Hatay Tank Driver", "id": 81030, "credit_id": "5499673dc3a368270e000bbc", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Pat Roach", "character": "Gestapo", "id": 10942, "credit_id": "5499677a9251411f43000d89", "cast_id": 60, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 39}, {"name": "Suzanne Roquette", "character": "Film Director", "id": 43496, "credit_id": "549968649251411f4b000cd6", "cast_id": 61, "profile_path": "/cXcwUFYOusOgSF1q25PIBE2YQgz.jpg", "order": 40}, {"name": "Eugene Lipinski", "character": "G-Man", "id": 28871, "credit_id": "54996a4bc3a36826f8000e69", "cast_id": 62, "profile_path": "/rhpOJsibsqA4SG71GcH0LMfnygd.jpg", "order": 41}, {"name": "George Malpas", "character": "Man on Zeppelin", "id": 1229130, "credit_id": "54996cc09251411f54000cde", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Julie Eccles", "character": "Irene", "id": 1402970, "credit_id": "54996d069251411f4b000d5a", "cast_id": 64, "profile_path": null, "order": 43}, {"name": "Nina Armstrong", "character": "Flower Girl", "id": 1032068, "credit_id": "54996e31c3a3682707000c58", "cast_id": 65, "profile_path": null, "order": 44}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f8002df5", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.3, "runtime": 127}, "90": {"poster_path": "/s7n0rS2Ff85SuSpqYG3ndkmdQf4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 316360478, "overview": "Tough-talking Detroit cop Axel Foley heads to the rarified world of Beverly Hills in his beat-up Chevy Nova to investigate a friend's murder. But soon, he realizes he's stumbled onto something much more complicated. Bungling rookie detective Billy Rosewood joins the fish-out-of-water Axel and shows him the West Los Angeles ropes.", "video": false, "id": 90, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Beverly Hills Cop", "tagline": "The Heat Is On!", "vote_count": 294, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lhZQuT76B9YcxZIudXZMhhWCKcl.jpg", "poster_path": "/ty7zsl0xkVDUlibYkFUjRAYUkvE.jpg", "id": 85861, "name": "Beverly Hills Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086960", "adult": false, "backdrop_path": "/38aEFo3chy25jobknuIX0WTF0Xl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Eddie Murphy Productions", "id": 30}], "release_date": "1984-11-30", "popularity": 1.23876064969208, "original_title": "Beverly Hills Cop", "budget": 15000000, "cast": [{"name": "Eddie Murphy", "character": "Det. Axel Foley", "id": 776, "credit_id": "52fe4216c3a36847f8002f03", "cast_id": 6, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Judge Reinhold", "character": "Det. William 'Billy' Rosewood", "id": 777, "credit_id": "52fe4216c3a36847f8002f07", "cast_id": 7, "profile_path": "/oN7TsF0yFJhsoKe9KzxXEOhheci.jpg", "order": 1}, {"name": "John Ashton", "character": "Det. Sgt. John Taggart", "id": 778, "credit_id": "52fe4216c3a36847f8002f0b", "cast_id": 8, "profile_path": "/omfIdOt1F8LDkb7AMZTtLDiyJ3O.jpg", "order": 2}, {"name": "Lisa Eilbacher", "character": "Jeannette 'Jenny' Summers", "id": 779, "credit_id": "52fe4216c3a36847f8002f0f", "cast_id": 9, "profile_path": "/kyiePU42bPqcGCRJfta1Ev2m7if.jpg", "order": 3}, {"name": "Ronny Cox", "character": "Lt. Andrew Bogomil", "id": 780, "credit_id": "52fe4216c3a36847f8002f13", "cast_id": 10, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 4}, {"name": "Paul Reiser", "character": "Jeffrey", "id": 781, "credit_id": "52fe4216c3a36847f8002f17", "cast_id": 11, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 5}, {"name": "Steven Berkoff", "character": "Victor Maitland", "id": 782, "credit_id": "52fe4216c3a36847f8002f1b", "cast_id": 12, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 6}, {"name": "Jonathan Banks", "character": "Zack, Maitland's Thug", "id": 783, "credit_id": "52fe4216c3a36847f8002f1f", "cast_id": 13, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 7}, {"name": "Bronson Pinchot", "character": "Serge", "id": 4689, "credit_id": "52fe4216c3a36847f8002f23", "cast_id": 14, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 8}, {"name": "James Russo", "character": "Mikey Tandino", "id": 785, "credit_id": "52fe4216c3a36847f8002f27", "cast_id": 15, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 9}, {"name": "Stephen Elliott", "character": "Police Chief Hubbard", "id": 786, "credit_id": "52fe4216c3a36847f8002f2b", "cast_id": 16, "profile_path": "/pKD6zR7MJW6gHc9ewxaSJeNBrQi.jpg", "order": 10}, {"name": "Gilbert R. Hill", "character": "Insp. Douglas Todd", "id": 787, "credit_id": "52fe4216c3a36847f8002f2f", "cast_id": 17, "profile_path": "/9kgwJTs4hT9oJuRiC4zj4zxwn68.jpg", "order": 11}, {"name": "Art Kimbro", "character": "Det. Foster", "id": 788, "credit_id": "52fe4216c3a36847f8002f33", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Joel Bailey", "character": "Det. McCabe", "id": 789, "credit_id": "52fe4216c3a36847f8002f37", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Michael Champion", "character": "Casey", "id": 790, "credit_id": "52fe4216c3a36847f8002f3b", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Martin Brest", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f8002ee7", "profile_path": null, "id": 769}], "vote_average": 6.4, "runtime": 105}, "245775": {"poster_path": "/sfaZHepyrq6C4AxW9kOOntK9ihm.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 21026290, "overview": "A look at the life of French designer Yves Saint Laurent from the beginning of his career in 1958 when he met his lover and business partner, Pierre Berge.", "video": false, "id": 245775, "genres": [{"id": 18, "name": "Drama"}], "title": "Yves Saint Laurent", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt2707858", "adult": false, "backdrop_path": "/zpskODYa543GxzPAU5ALb0nUNCT.jpg", "production_companies": [{"name": "WY Productions", "id": 3304}, {"name": "SND", "id": 2902}, {"name": "H\u00e9rodiade", "id": 7673}, {"name": "Umedia", "id": 19037}], "release_date": "2014-06-25", "popularity": 1.44656149146695, "original_title": "Yves Saint Laurent", "budget": 12000000, "cast": [{"name": "Pierre Niney", "character": "Yves Saint Laurent", "id": 145121, "credit_id": "52fe4f0bc3a36847f82b968d", "cast_id": 1, "profile_path": "/g84J44XjdrOsJ9zplB4ClAZpeaB.jpg", "order": 0}, {"name": "Guillaume Gallienne", "character": "Pierre Berg\u00e9", "id": 6554, "credit_id": "52fe4f0bc3a36847f82b9691", "cast_id": 2, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 1}, {"name": "Nikolai Kinski", "character": "Karl Lagerfeld", "id": 54024, "credit_id": "52fe4f0bc3a36847f82b9695", "cast_id": 3, "profile_path": "/3DlkCTEX5iFfWkgAbfUBswwjZKR.jpg", "order": 2}, {"name": "Charlotte Le Bon", "character": "Victoire Doutreleau", "id": 1021684, "credit_id": "52fe4f0bc3a36847f82b96c3", "cast_id": 11, "profile_path": "/vozgdySw0fnS3ue6AFcTsfHRbYq.jpg", "order": 3}, {"name": "Xavier Lafitte", "character": "Jacques De Bascher", "id": 133091, "credit_id": "52fe4f0bc3a36847f82b96c7", "cast_id": 12, "profile_path": "/vSgVdtC6jJD0kZRfMWZxeGZuEqt.jpg", "order": 4}, {"name": "Laura Smet", "character": "Loulou de la Falaise", "id": 149223, "credit_id": "52fe4f0bc3a36847f82b96cb", "cast_id": 13, "profile_path": "/pz6qoS8c5YSu6UoxgvbM9FbPX7l.jpg", "order": 5}, {"name": "Marie de Villepin", "character": "Betty Catroux", "id": 1156455, "credit_id": "536176cdc3a36839470004c8", "cast_id": 14, "profile_path": "/8kboVTA3cw0SObWNtK6pygyPnbG.jpg", "order": 6}, {"name": "Ruben Alves", "character": "Fernando Sanchez", "id": 212080, "credit_id": "5361793ec3a3683965000472", "cast_id": 15, "profile_path": "/9ihi5Y7iGLAp4PWRf3813LzsXOc.jpg", "order": 7}, {"name": "Astrid Whettnall", "character": "Yvonne de Peyerimhoff", "id": 1167748, "credit_id": "53617a42c3a368397600050d", "cast_id": 16, "profile_path": "/w5p3rsdapJ86RiReVPg615mLU6Y.jpg", "order": 8}, {"name": "Marianne Basler", "character": "Lucienne Saint Laurent", "id": 15481, "credit_id": "53617ba9c3a368396e000519", "cast_id": 17, "profile_path": "/7o0p5kukWtfkp4sxfKwVQaPI778.jpg", "order": 9}, {"name": "Adeline D'Hermy", "character": "Anne-Marie Munoz", "id": 1315534, "credit_id": "53617d92c3a3683947000552", "cast_id": 18, "profile_path": "/vtHW6ltQXaiv4IbZkckhrVTt1DZ.jpg", "order": 10}, {"name": "Jean-\u00c9douard Bodziak", "character": "Bernard Buffet", "id": 1315535, "credit_id": "53617ea7c3a368395600052e", "cast_id": 19, "profile_path": "/puhXcIwTGWmkLugFXUHhUr8EPDs.jpg", "order": 11}, {"name": "Alexandre Steiger", "character": "Jean-Pierre Debord", "id": 549333, "credit_id": "53617f48c3a3683947000568", "cast_id": 20, "profile_path": "/yuG97dPaco4rXfUkLkq8wNatWiY.jpg", "order": 12}, {"name": "Mich\u00e8le Garcia", "character": "Raymonde Zehnacker", "id": 26401, "credit_id": "53617fa8c3a368395d000582", "cast_id": 21, "profile_path": "/m0zVOSGtLCKOn6uRSvGYR2QLSNI.jpg", "order": 13}, {"name": "Olivier Pajot", "character": "Charles", "id": 267603, "credit_id": "536180b3c3a368397e000586", "cast_id": 22, "profile_path": "/5ZKHDEruX9p9fe3M8nU2rM9W26D.jpg", "order": 14}], "directors": [{"name": "Jalil Lespert", "department": "Directing", "job": "Director", "credit_id": "52fe4f0bc3a36847f82b969b", "profile_path": "/e0iU7swcVCQtSPzwipTJDkh3t8h.jpg", "id": 72327}], "vote_average": 6.2, "runtime": 101}, "8285": {"poster_path": "/4TlzgL6yW9zI4Y0rGY0LjpmWWKJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39031337, "overview": "Down these mean streets a man must come. A hero born, murdered, and born again. When a Rookie cop named Denny Colt returns from the beyond as The Spirit, a hero whose mission is to fight against the bad forces from the shadows of Central City, the Octopus who kills anyone unfortunate enough to see his face who has other plans. He's going to wipe out the entire city.", "video": false, "id": 8285, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Spirit", "tagline": "I'm gonna kill you all kinds of dead.", "vote_count": 92, "homepage": "http://www.mycityscreams.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0831887", "adult": false, "backdrop_path": "/p0fMUR7ZFjsfpaLxqAAt62y1i4r.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Lionsgate", "id": 1632}, {"name": "Dark Lot Entertainment", "id": 7375}, {"name": "Continental Entertainment Group (CEG)", "id": 7376}, {"name": "Odd Lot Entertainment", "id": 3263}, {"name": "Media Magik Entertainment", "id": 5627}], "release_date": "2008-12-25", "popularity": 0.450278054649003, "original_title": "The Spirit", "budget": 60000000, "cast": [{"name": "Gabriel Macht", "character": "The Spirit/Denny Colt", "id": 16856, "credit_id": "52fe449cc3a36847f809fee1", "cast_id": 6, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Silken Floss", "id": 1245, "credit_id": "52fe449cc3a36847f809fecb", "cast_id": 1, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Octopuss", "id": 2231, "credit_id": "52fe449cc3a36847f809fecf", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Eva Mendes", "character": "Sand Saref", "id": 8170, "credit_id": "52fe449cc3a36847f809fed3", "cast_id": 3, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 3}, {"name": "Paz Vega", "character": "Plaster of Paris", "id": 3627, "credit_id": "52fe449cc3a36847f809fed7", "cast_id": 4, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 4}, {"name": "Jaime King", "character": "Lorelei Rox", "id": 5915, "credit_id": "52fe449cc3a36847f809feeb", "cast_id": 9, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 5}, {"name": "Dan Lauria", "character": "Dolan", "id": 29774, "credit_id": "52fe449cc3a36847f809feef", "cast_id": 10, "profile_path": "/ov3F6ddfjgw3SpvEuuHUxhh4yom.jpg", "order": 6}, {"name": "Sarah Paulson", "character": "Ellen Dolan", "id": 34490, "credit_id": "52fe449cc3a36847f809fef3", "cast_id": 11, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 7}, {"name": "Stana Katic", "character": "Morgenstern", "id": 34408, "credit_id": "52fe449cc3a36847f809fef7", "cast_id": 12, "profile_path": "/5Uv6wssCvAZfSTaXbiEiySQquHC.jpg", "order": 8}, {"name": "Frank Miller", "character": "Liebowitz", "id": 2293, "credit_id": "52fe449cc3a36847f809fefb", "cast_id": 13, "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "order": 9}, {"name": "Eric Balfour", "character": "Mahmoud", "id": 34489, "credit_id": "52fe449cc3a36847f809feff", "cast_id": 14, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 10}], "directors": [{"name": "Frank Miller", "department": "Directing", "job": "Director", "credit_id": "52fe449cc3a36847f809fedd", "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "id": 2293}], "vote_average": 4.9, "runtime": 103}, "193893": {"poster_path": "/8GVU8AaYpxiIS462SZgAtjh02pm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136621271, "overview": "It's the ultimate buddy cop movie except for one thing: they're not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted \u201cheroes\u201d get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.", "video": false, "id": 193893, "genres": [{"id": 35, "name": "Comedy"}], "title": "Let's Be Cops", "tagline": "Fake Cops. Real Trouble.", "vote_count": 373, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1924435", "adult": false, "backdrop_path": "/43GrPpAeBUOvOCZ8L1A3MLuDnkc.jpg", "production_companies": [{"name": "WideAwake", "id": 28787}, {"name": "Genre Films", "id": 28788}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2014-08-13", "popularity": 6.28753720260726, "original_title": "Let's Be Cops", "budget": 17000000, "cast": [{"name": "Nina Dobrev", "character": "Josie", "id": 19961, "credit_id": "52fe4cdc9251416c91102901", "cast_id": 2, "profile_path": "/7YM2mqfrO9mrNJ6GwBNmSSiWNTR.jpg", "order": 0}, {"name": "Jake M. Johnson", "character": "Ryan Davis", "id": 543505, "credit_id": "52fe4cdc9251416c91102905", "cast_id": 3, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 1}, {"name": "Damon Wayans Jr.", "character": "Justin Chang", "id": 87822, "credit_id": "52fe4cdc9251416c91102909", "cast_id": 4, "profile_path": "/wOYJdq19v0rnUTY9vC0BZJowQiC.jpg", "order": 2}, {"name": "James D'Arcy", "character": "Porter", "id": 19655, "credit_id": "52fe4cdc9251416c9110290d", "cast_id": 5, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 3}, {"name": "Andy Garc\u00eda", "character": "Brolin", "id": 1271, "credit_id": "52fe4cdc9251416c9110291d", "cast_id": 8, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 4}, {"name": "Angela Kerecz", "character": "Sunset Strip Girl (uncredited)", "id": 1285499, "credit_id": "52fe4cdc9251416c91102921", "cast_id": 9, "profile_path": "/pTsh8auk8614t2rghDD4waA6l7A.jpg", "order": 5}, {"name": "Rob Riggle", "character": "Officer Segars", "id": 71403, "credit_id": "52fe4cdc9251416c91102925", "cast_id": 10, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 6}, {"name": "Keegan-Michael Key", "character": "Pupa", "id": 298410, "credit_id": "52fe4cdc9251416c91102929", "cast_id": 11, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 7}, {"name": "Anna Colwell", "character": "", "id": 118593, "credit_id": "52fe4cdc9251416c91102931", "cast_id": 13, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 8}, {"name": "Natasha Leggero", "character": "Annie", "id": 1214835, "credit_id": "542718f9c3a3680b370005ab", "cast_id": 16, "profile_path": "/xLHMLRHRrQ03zHukUNi1q5yroxt.jpg", "order": 9}, {"name": "Jon Lajoie", "character": "Todd Cutler", "id": 1251286, "credit_id": "5457c09e0e0a2652780034b8", "cast_id": 17, "profile_path": "/z516v78jbhrreNiiHFCud69hLwc.jpg", "order": 10}, {"name": "Tom Mardirosian", "character": "Georgie", "id": 118754, "credit_id": "5457cda40e0a266fc0001f3b", "cast_id": 18, "profile_path": "/xWLZyxA7oEjGIbu6pFn2nrO2Ux6.jpg", "order": 11}, {"name": "Rebecca Koon", "character": "Lydia", "id": 1229201, "credit_id": "5457cf45c3a3686075002f0b", "cast_id": 19, "profile_path": "/xLQkjmx7lK7QN6hyS1cW3VmXDq4.jpg", "order": 12}, {"name": "Joshua Ormond", "character": "Little Joey", "id": 1094160, "credit_id": "5457cf99c3a36869020038b2", "cast_id": 20, "profile_path": "/bmLtTIulHbUbDSdut3WBnSOlrmp.jpg", "order": 13}, {"name": "L. Warren Young", "character": "Jackson", "id": 80618, "credit_id": "5457d154c3a368209f002046", "cast_id": 21, "profile_path": "/mS5jEWRaWXJfzDDjPuVzs4HcYGm.jpg", "order": 14}, {"name": "Nelson Bonilla", "character": "Pasha", "id": 232749, "credit_id": "5457d2bcc3a3681473009a60", "cast_id": 22, "profile_path": "/5LtJKIaeBtzm9u64bIIvYP3cUFc.jpg", "order": 15}, {"name": "Brian Oerly", "character": "Goran", "id": 1381388, "credit_id": "5457d3aec3a3686902003940", "cast_id": 23, "profile_path": "/zaBG1TgdRxsAgVsg3M2KDTrQnNd.jpg", "order": 16}, {"name": "Jeff Chase", "character": "Leka", "id": 56448, "credit_id": "5457d51b0e0a2648c200a142", "cast_id": 24, "profile_path": "/x7W1nwnsITcPdODJ5OEP0HF71BH.jpg", "order": 17}, {"name": "Alec Rayme", "character": "Misha", "id": 1381389, "credit_id": "5457d646c3a3681473009aa6", "cast_id": 25, "profile_path": "/iYVNYYIJTtdPWFfAcujmhoZ3bs.jpg", "order": 18}, {"name": "Randall P. Havens", "character": "Dave", "id": 1381393, "credit_id": "5457d86ac3a3681473009af4", "cast_id": 26, "profile_path": "/rSs4RR2sDJSp8hWj6bNbSTwwSio.jpg", "order": 19}, {"name": "Chas Harvey", "character": "Creative Executive #1 (as Chas Robert Skees)", "id": 1381394, "credit_id": "5457d973c3a36869020039e4", "cast_id": 27, "profile_path": "/2taIxqmnBHENQKZSlIz1WqpF6fE.jpg", "order": 20}, {"name": "Dane Davenport", "character": "Creative Executive #2", "id": 1371098, "credit_id": "5457db4f0e0a265278003770", "cast_id": 28, "profile_path": "/6DEdP1h8MlbCibQgut0EqpazXDe.jpg", "order": 21}, {"name": "Raven-Danielle Baker", "character": "Creative Executive #3 (as Raven Baker)", "id": 1381396, "credit_id": "5457dbf2c3a368209f00216f", "cast_id": 29, "profile_path": "/3iDPYiBIaD1TIcNhqUosLXLLXnp.jpg", "order": 22}, {"name": "Chelsea Hayes", "character": "Female Kiss-Ass Executive", "id": 1381406, "credit_id": "5457dcfc0e0a2648d600a0d1", "cast_id": 30, "profile_path": "/wHfseKDKrubOfDhq3tlOdpmyRg2.jpg", "order": 23}, {"name": "Kara Michele Wilder", "character": "Gorgeous Woman", "id": 1381473, "credit_id": "545811230e0a261155000479", "cast_id": 31, "profile_path": "/mlq6f3r4XXfkFGCpEKTrnEqpn81.jpg", "order": 24}, {"name": "Briana Venskus", "character": "Precious", "id": 1381474, "credit_id": "545812a1c3a36839a70004a8", "cast_id": 32, "profile_path": "/rt3p1sLRbDu06xh4CLF5eUp9TyN.jpg", "order": 25}, {"name": "Jwaundace Candece", "character": "JaQuandae", "id": 1370799, "credit_id": "5458156d0e0a26115e0004e0", "cast_id": 33, "profile_path": "/s7qJp6vIXJWf8ASpsTydwdUJZER.jpg", "order": 26}, {"name": "Sam Medina", "character": "Tough Guy", "id": 1044954, "credit_id": "5458169b0e0a26115e000516", "cast_id": 34, "profile_path": "/5erle4K8m7QbK8ITKnY7F4PMMAp.jpg", "order": 27}, {"name": "Americus Abesamis", "character": "Samoan Guy", "id": 1381475, "credit_id": "5458175fc3a368398f00051f", "cast_id": 35, "profile_path": "/sZefgkttso3M6Rg63y0I0iYwXC4.jpg", "order": 28}, {"name": "Wilson Schwarz", "character": "Mississippi Kid", "id": 1381476, "credit_id": "545818b80e0a26116f000573", "cast_id": 36, "profile_path": "/xDiBQdzrzIqcQnHlYeqKJpkqvUw.jpg", "order": 29}, {"name": "Andrew Kochman", "character": "Upset Kid", "id": 1381477, "credit_id": "545819adc3a36839970005a7", "cast_id": 37, "profile_path": "/eKejGIPxzcJbxl5SAfEbpNKTKw7.jpg", "order": 30}, {"name": "Hoke Faser", "character": "8th Grader", "id": 1381478, "credit_id": "54581a880e0a2611580005be", "cast_id": 38, "profile_path": null, "order": 31}, {"name": "Ron Caldwell", "character": "Ron", "id": 1272952, "credit_id": "54581bb7c3a36839ac000551", "cast_id": 39, "profile_path": "/ar318YF8fBHuUw9Cvzo25DKv32Z.jpg", "order": 32}, {"name": "Ted Huckabee", "character": "Father", "id": 97845, "credit_id": "54581cee0e0a26115500061a", "cast_id": 40, "profile_path": "/sLkpSWB86TBC3XRHkTwmJwUOB9F.jpg", "order": 33}, {"name": "Jackie Costello", "character": "Wife #1", "id": 1381479, "credit_id": "54581d500e0a26115500062e", "cast_id": 41, "profile_path": null, "order": 34}, {"name": "Joy Glover Walters", "character": "Wife #2", "id": 1381480, "credit_id": "545820ba0e0a26116a000665", "cast_id": 42, "profile_path": "/qTHAeMHLl0BfI8cYk8YxO61eUNp.jpg", "order": 35}, {"name": "Daniel Parvis", "character": "Husband #1", "id": 1381481, "credit_id": "54582207c3a368398f000721", "cast_id": 43, "profile_path": null, "order": 36}, {"name": "Justin Miles", "character": "Husband #2", "id": 1381491, "credit_id": "5458253bc3a368398f0007c0", "cast_id": 44, "profile_path": "/lI6F1rwXrQ65FgbHlC6btSwHUUq.jpg", "order": 37}, {"name": "Michael Scialabba", "character": "Old Teammate #1", "id": 1381492, "credit_id": "545827080e0a2611620007f1", "cast_id": 45, "profile_path": "/o3p4pmpoXOdVwXNVkrIzcSOhSLM.jpg", "order": 38}, {"name": "Matt Mangum", "character": "Old Teammate #2", "id": 1381493, "credit_id": "5458284e0e0a26115800084f", "cast_id": 46, "profile_path": "/xDrLNsZtzBmNUXzhFpNR7HAd8HW.jpg", "order": 39}, {"name": "Desmond Phillips", "character": "Mike", "id": 558899, "credit_id": "54582a43c3a368399d00082b", "cast_id": 47, "profile_path": "/5lyZ3OIHBaivlJB8ce4DGxXN4Xd.jpg", "order": 40}, {"name": "Corey James Wright", "character": "Paul", "id": 1381494, "credit_id": "54582acec3a368399d000847", "cast_id": 48, "profile_path": "/hsRaM5wVFk3QMZz8SGugb1A4aBn.jpg", "order": 41}, {"name": "Rebecca Galarza", "character": "Hot Bachelorette", "id": 1205578, "credit_id": "5458af7f0e0a26115b0018d0", "cast_id": 49, "profile_path": "/jxGs5h2RRLEoV77Ip0gVTbzqNC5.jpg", "order": 42}, {"name": "Katie Deal", "character": "Frozen Wife", "id": 1381627, "credit_id": "5458aff3c3a368398f001841", "cast_id": 50, "profile_path": null, "order": 43}, {"name": "Ryan Girard", "character": "Frozen Husband", "id": 1381628, "credit_id": "5458b087c3a36839a700196f", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Jamie Moore", "character": "Frozen Guy #1", "id": 1381630, "credit_id": "5458b26f0e0a26116a0017f4", "cast_id": 52, "profile_path": "/vpvSx7rmn320bAApwJS9EHDvl7P.jpg", "order": 45}, {"name": "Jamie Renell", "character": "Frozen Guy #2", "id": 1083987, "credit_id": "5458b43a0e0a2611550019ce", "cast_id": 53, "profile_path": "/bdGhyb8657S8vW8gEtw0bvH475u.jpg", "order": 46}, {"name": "Michael McCormick", "character": "Punk Skateboarder", "id": 163839, "credit_id": "5458b861c3a368399d0019a1", "cast_id": 54, "profile_path": null, "order": 47}, {"name": "Adam Rosenberg", "character": "Dude #1", "id": 1381649, "credit_id": "5458b8d60e0a261158001a75", "cast_id": 55, "profile_path": "/hriGvPG3xiTfTglInenSPPnJQFc.jpg", "order": 48}, {"name": "Elliott Dixon", "character": "Dude #2", "id": 1381651, "credit_id": "5458bac30e0a261158001ac1", "cast_id": 56, "profile_path": "/xou7PoVVIGLd0Jcl1eMDzmNWzM9.jpg", "order": 49}, {"name": "Allie O'Neill", "character": "Bachelorette #1 (as Allie Brown)", "id": 1381663, "credit_id": "5458bfc7c3a36839a4001a5c", "cast_id": 57, "profile_path": "/qdc34BDdMq9NBImIzWPHwN9zfpp.jpg", "order": 50}, {"name": "Brittany Susko", "character": "Bachelorette #2", "id": 1381665, "credit_id": "5458c1d3c3a36839a4001aa4", "cast_id": 58, "profile_path": null, "order": 51}, {"name": "Jennifer Allison Chavez", "character": "Bachelorette #3", "id": 1381670, "credit_id": "5458c41e0e0a261155001bad", "cast_id": 59, "profile_path": null, "order": 52}, {"name": "Caroline Kiger", "character": "Bachelorette #4", "id": 1381671, "credit_id": "5458c52e0e0a26116a0019ba", "cast_id": 60, "profile_path": null, "order": 53}, {"name": "Rose Locke", "character": "Bachelorette #5 (as Jennifer Rose Locke)", "id": 1381672, "credit_id": "5458c5e20e0a26115e001b86", "cast_id": 61, "profile_path": null, "order": 54}, {"name": "Courtney Patterson", "character": "Receptionist", "id": 1381673, "credit_id": "5458c8aac3a36839ac0018ab", "cast_id": 62, "profile_path": "/xqd47Gqy4MpAwCkFaJACksol3Ch.jpg", "order": 55}, {"name": "Marc Farley", "character": "Random Neighbor", "id": 1381675, "credit_id": "5458cad50e0a261155001c56", "cast_id": 63, "profile_path": "/trkKfG4OydjGmstukjOaAtNkUXI.jpg", "order": 56}, {"name": "Patricia Taylor", "character": "Random Neighbor's Wife", "id": 1381688, "credit_id": "5458cdc60e0a26115e001c40", "cast_id": 64, "profile_path": "/XXiEJ1k9T0Ob1sjTr7K3oCoUen.jpg", "order": 57}, {"name": "Patricia French", "character": "Angie", "id": 128207, "credit_id": "5458cfd2c3a36839a4001bc3", "cast_id": 65, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 58}, {"name": "Matthew Wiese", "character": "Pupa's Rival (as Matt 'Horshu' Wiese)", "id": 983700, "credit_id": "5459de07c3a36839ac00338c", "cast_id": 80, "profile_path": "/8eowxpdU650dByrmMFKzS9h7BsQ.jpg", "order": 59}, {"name": "Bob Jennings", "character": "Basement Sergeant", "id": 113506, "credit_id": "5458d55bc3a3683993001cea", "cast_id": 67, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 60}, {"name": "Jessica Luza", "character": "Clipboard Girl", "id": 1381695, "credit_id": "5458d6590e0a261155001d2f", "cast_id": 68, "profile_path": "/yjp7XSwCVffZjQJzs1NeiDsFTq9.jpg", "order": 61}, {"name": "Jason Pendergraft", "character": "Officer Thomas", "id": 1381698, "credit_id": "5458d85dc3a36839a7001d19", "cast_id": 69, "profile_path": "/w3YXbqY0n1Ljlo04aqfksi8ifUZ.jpg", "order": 62}, {"name": "Patch Darragh", "character": "Officer Kaplan", "id": 172156, "credit_id": "5458db990e0a261155001dac", "cast_id": 70, "profile_path": "/ozrGFV2Ffv5erGlXvWKRPCNmpu9.jpg", "order": 63}, {"name": "Bill Pankow", "character": "Police Captain", "id": 1264, "credit_id": "5458ddc4c3a36839a0001d26", "cast_id": 71, "profile_path": "/3cX0GVPg9YnqRFKFoZ5Xa7fjSX5.jpg", "order": 64}, {"name": "Michael Flores", "character": "Tattooed Gangster", "id": 1381706, "credit_id": "5458e3acc3a36839a4001d5b", "cast_id": 72, "profile_path": "/58Z9sJA6hQOeAUW2R3SBn6x7dCi.jpg", "order": 65}, {"name": "Antwan Mills", "character": "Commercial Actor #1", "id": 1381712, "credit_id": "5458e5810e0a261155001e95", "cast_id": 73, "profile_path": "/58nvO2Se7TS0ETUEzHHjJ0MLH5U.jpg", "order": 66}, {"name": "Jennifer Stearns", "character": "Commercial Actor #2", "id": 1381720, "credit_id": "5458e99b0e0a261155001efa", "cast_id": 74, "profile_path": null, "order": 67}, {"name": "Sal Verena", "character": "Commercial Actor #3", "id": 1381721, "credit_id": "5458ea0d0e0a261158001eb4", "cast_id": 75, "profile_path": null, "order": 68}, {"name": "Mary Jo Catlett", "character": "Old Lady", "id": 80634, "credit_id": "5458ebc90e0a26115e001ebe", "cast_id": 76, "profile_path": "/iC6TbqiOEAYhZ9mcOoXIaRuiSDp.jpg", "order": 69}, {"name": "Colin Dennard", "character": "Pizza Guy", "id": 1254366, "credit_id": "5458ec91c3a368398f001de3", "cast_id": 77, "profile_path": "/uGKX5nNtTfVtqkaCodfTz59XBFk.jpg", "order": 70}, {"name": "Damon Sementilli", "character": "Expensive Car Guy", "id": 1381725, "credit_id": "5458ed2ac3a3683997001f0b", "cast_id": 78, "profile_path": "/8QeVaslr2SxILzQ7ybpw9Eipsk8.jpg", "order": 71}, {"name": "Chen Tang", "character": "The Real Chang", "id": 1381726, "credit_id": "5458f0690e0a261165001e8c", "cast_id": 79, "profile_path": "/cWdfBw0FMjA7yJ5aPZVNDhOMIQ4.jpg", "order": 72}, {"name": "Vickie Eng", "character": "Asian Tourist (uncredited)", "id": 208316, "credit_id": "54f09d4a925141796e0083c0", "cast_id": 81, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 73}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe4cdc9251416c911028fd", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 6.6, "runtime": 104}, "96": {"poster_path": "/2y1z1baxKT0coTTRlnkI6McnR9f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 299965036, "overview": "Axel Foley is back and as funny as ever in this fast-paced sequel to the original smash hit. This time, the Detroit cop heads for the land of sunshine and palm trees to find out who shot police Captain Andrew Bogomil. Thanks to a couple of old friends, Axel's investigation uncovers a series of robberies masterminded by a heartless weapons kingpin, and the chase is on!", "video": false, "id": 96, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Beverly Hills Cop II", "tagline": "The Heat's Back On!", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lhZQuT76B9YcxZIudXZMhhWCKcl.jpg", "poster_path": "/ty7zsl0xkVDUlibYkFUjRAYUkvE.jpg", "id": 85861, "name": "Beverly Hills Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092644", "adult": false, "backdrop_path": "/mXenFohxCO4jQ0e1bJf4e9gebxL.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1987-05-18", "popularity": 0.664007210450233, "original_title": "Beverly Hills Cop II", "budget": 20000000, "cast": [{"name": "Eddie Murphy", "character": "Det. Axel Foley", "id": 776, "credit_id": "52fe4217c3a36847f80032a9", "cast_id": 17, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Judge Reinhold", "character": "Det. William 'Billy' Rosewood", "id": 777, "credit_id": "52fe4217c3a36847f80032ad", "cast_id": 18, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 1}, {"name": "John Ashton", "character": "Det. Sgt. John Taggart", "id": 778, "credit_id": "52fe4217c3a36847f80032b1", "cast_id": 19, "profile_path": "/omfIdOt1F8LDkb7AMZTtLDiyJ3O.jpg", "order": 2}, {"name": "J\u00fcrgen Prochnow", "character": "Maxwell Dent", "id": 920, "credit_id": "52fe4217c3a36847f80032b5", "cast_id": 20, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 3}, {"name": "Ronny Cox", "character": "Capt./Chief Andrew Bogomil", "id": 780, "credit_id": "52fe4217c3a36847f80032b9", "cast_id": 21, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 4}, {"name": "Brigitte Nielsen", "character": "Karla Fry", "id": 921, "credit_id": "52fe4217c3a36847f80032bd", "cast_id": 22, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 5}, {"name": "Dean Stockwell", "character": "Charles 'Chip' Cain", "id": 923, "credit_id": "52fe4217c3a36847f80032c1", "cast_id": 23, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 6}, {"name": "Paul Reiser", "character": "Det. Jeffrey Friedman", "id": 781, "credit_id": "52fe4217c3a36847f80032c5", "cast_id": 24, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 7}, {"name": "Gilbert R. Hill", "character": "Insp. Douglas Todd (as Gil Hill)", "id": 787, "credit_id": "52fe4217c3a36847f80032c9", "cast_id": 25, "profile_path": "/9kgwJTs4hT9oJuRiC4zj4zxwn68.jpg", "order": 8}, {"name": "Paul Guilfoyle", "character": "Nikos Thomopolis", "id": 925, "credit_id": "52fe4217c3a36847f80032cd", "cast_id": 26, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 9}, {"name": "Ola Ray", "character": "Playboy Playmate", "id": 926, "credit_id": "52fe4217c3a36847f80032d1", "cast_id": 27, "profile_path": "/9GSKZj7Hfg4Wee00etJwd18Zakb.jpg", "order": 10}, {"name": "Rebecca Ferratti", "character": "Playboy Playmate", "id": 928, "credit_id": "52fe4217c3a36847f80032d5", "cast_id": 28, "profile_path": "/jkj9xVFHEftdPfuDTxqLF1WgoZr.jpg", "order": 11}, {"name": "Allen Garfield", "character": "Police Chief Harold Lutz", "id": 922, "credit_id": "52fe4217c3a36847f80032d9", "cast_id": 29, "profile_path": "/wa8WAH20QGm1fLPR5Wrbja5C5rx.jpg", "order": 12}, {"name": "Chris Rock", "character": "Playboy Mansion Valet", "id": 2632, "credit_id": "52fe4217c3a36847f80032dd", "cast_id": 30, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 13}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f800324b", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.1, "runtime": 100}, "97": {"poster_path": "/cTF8lpXvAwT1SLH9kVFZZl0AO0D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33000000, "overview": "As Kevin Flynn searches for proof that he invented a hit video game, he is \"digitalized\" by a laser and finds himself inside The Grid, where programs suffer under the tyrannical rule of the Master Control Program. With the help of TRON, a security program, Flynn seeks to free The Grid from the MCP.", "video": false, "id": 97, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "TRON", "tagline": "A world inside the computer where man has never been. Until now.", "vote_count": 245, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o8NBfffQPE9tHTR9l7FuWbdVPHu.jpg", "poster_path": "/cvFlDIfOwhYe4ouAAfdyq9E5zlZ.jpg", "id": 63043, "name": "TRON Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084827", "adult": false, "backdrop_path": "/rRTMdhZ7kxMdJIqykz0t4p0HABA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Lisberger/Kushner", "id": 558}], "release_date": "1982-07-09", "popularity": 0.812611122738359, "original_title": "TRON", "budget": 17000000, "cast": [{"name": "Jeff Bridges", "character": "Kevin Flynn/Clu", "id": 1229, "credit_id": "52fe4217c3a36847f800332b", "cast_id": 1, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Bruce Boxleitner", "character": "Alan Bradley/Tron", "id": 2547, "credit_id": "52fe4217c3a36847f800332f", "cast_id": 2, "profile_path": "/8CWvXiTru0EPH0M9ecLQ84E0YWA.jpg", "order": 1}, {"name": "David Warner", "character": "Ed Dillinger/Sark/Voice of Master Control Program", "id": 2076, "credit_id": "52fe4217c3a36847f8003333", "cast_id": 3, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 2}, {"name": "Cindy Morgan", "character": "Lora/Yori", "id": 2548, "credit_id": "52fe4217c3a36847f8003337", "cast_id": 4, "profile_path": "/iv7FOx6sann9O0SqLmHs5OFlWCz.jpg", "order": 3}, {"name": "Barnard Hughes", "character": "Dr. Walter Gibbs/Dumont", "id": 2549, "credit_id": "52fe4217c3a36847f800333b", "cast_id": 5, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 4}, {"name": "Dan Shor", "character": "Ram/Popcorn Co-Worker", "id": 2550, "credit_id": "52fe4217c3a36847f800333f", "cast_id": 6, "profile_path": "/3howkcUGMpjGL2uyON5AlUnFJG8.jpg", "order": 5}, {"name": "Peter Jurasik", "character": "Crom", "id": 12876, "credit_id": "52fe4217c3a36847f80033b5", "cast_id": 26, "profile_path": "/jk1UwljHvhFTyVqJQuj1jMj6WeD.jpg", "order": 6}, {"name": "Tony Stephano", "character": "Peter/Sark's Lieutenant", "id": 12877, "credit_id": "52fe4217c3a36847f80033b9", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Craig Chudy", "character": "Warrior #1", "id": 12878, "credit_id": "52fe4217c3a36847f80033bd", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Vince Deadrick Jr.", "character": "Warrior #2", "id": 12879, "credit_id": "52fe4217c3a36847f80033c1", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Sam Schatz", "character": "Expert Disc Warrior", "id": 12880, "credit_id": "52fe4217c3a36847f80033c5", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Michael Dudikoff", "character": "Conscript #2", "id": 21259, "credit_id": "53dbbdc3c3a368434100006e", "cast_id": 31, "profile_path": "/oUsn5aUJ4f9V4a5mcucTVbQMRj1.jpg", "order": 11}], "directors": [{"name": "Steven Lisberger", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f800334b", "profile_path": "/ixjKUmGCNjA0dkeGI1pqKtNEolj.jpg", "id": 12859}], "vote_average": 6.6, "runtime": 96}, "98": {"poster_path": "/6WBIzCgmDCYrqh64yDREGeDk9d3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 457640427, "overview": "Gladiator is an epic film of love, death and betrayal set in the Roman Empire. General Maximus' success in battle earns the favour of an elderly Emperor at the expense of the Emperor's son. In a fit of jealous rage the son slays his father before turning his anger towards Maximus. Now reduced to a slave, his family dead, Maximus must fight as a gladiator to gain his freedom, and his revenge.", "video": false, "id": 98, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Gladiator", "tagline": "A Hero Will Rise.", "vote_count": 2284, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0172495", "adult": false, "backdrop_path": "/5vZw7ltCKI0JiOYTtRxaIC3DX0e.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Mill Film", "id": 21904}, {"name": "C & L", "id": 21905}, {"name": "Dawliz", "id": 21906}], "release_date": "2000-05-01", "popularity": 3.29709474884894, "original_title": "Gladiator", "budget": 103000000, "cast": [{"name": "Russell Crowe", "character": "Maximus", "id": 934, "credit_id": "52fe4217c3a36847f8003435", "cast_id": 8, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Commodus", "id": 73421, "credit_id": "52fe4217c3a36847f8003439", "cast_id": 9, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "Connie Nielsen", "character": "Lucilla", "id": 935, "credit_id": "52fe4217c3a36847f800343d", "cast_id": 10, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 2}, {"name": "Oliver Reed", "character": "Proximo", "id": 936, "credit_id": "52fe4217c3a36847f8003441", "cast_id": 11, "profile_path": "/we10IusqRV1NHRtA68ftyck2N33.jpg", "order": 3}, {"name": "Richard Harris", "character": "Marcus Aurelius", "id": 194, "credit_id": "52fe4217c3a36847f8003445", "cast_id": 12, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 4}, {"name": "Derek Jacobi", "character": "Gracchus", "id": 937, "credit_id": "52fe4217c3a36847f8003449", "cast_id": 13, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 5}, {"name": "Djimon Hounsou", "character": "Juba", "id": 938, "credit_id": "52fe4217c3a36847f800344d", "cast_id": 14, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 6}, {"name": "David Schofield", "character": "Falco", "id": 939, "credit_id": "52fe4217c3a36847f8003451", "cast_id": 15, "profile_path": "/6FdYsGTI85M5s5QDbFCogmQWsOR.jpg", "order": 7}, {"name": "John Shrapnel", "character": "Gaius", "id": 940, "credit_id": "52fe4217c3a36847f8003455", "cast_id": 16, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 8}, {"name": "Tomas Arana", "character": "Quintus", "id": 941, "credit_id": "52fe4217c3a36847f8003459", "cast_id": 17, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 9}, {"name": "Ralf M\u00f6ller", "character": "Hagen", "id": 942, "credit_id": "52fe4217c3a36847f800345d", "cast_id": 18, "profile_path": "/hkeBpMT7UAPTARD6fPsG10Ob5Cr.jpg", "order": 10}, {"name": "Tommy Flanagan", "character": "Cicero", "id": 2478, "credit_id": "52fe4217c3a36847f8003491", "cast_id": 28, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 11}, {"name": "Spencer Treat Clark", "character": "Lucius", "id": 4012, "credit_id": "52fe4217c3a36847f8003495", "cast_id": 29, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 12}, {"name": "David Hemmings", "character": "Cassius", "id": 15196, "credit_id": "52fe4217c3a36847f8003499", "cast_id": 30, "profile_path": "/k2M6UrbkWYF8FewmKQm3TWu6KMX.jpg", "order": 13}, {"name": "Sven-Ole Thorsen", "character": "Tigris", "id": 20761, "credit_id": "52fe4217c3a36847f800349d", "cast_id": 31, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 14}, {"name": "Giannina Facio", "character": "Maximus' Wife", "id": 58787, "credit_id": "52fe4217c3a36847f80034a5", "cast_id": 33, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 15}, {"name": "Alun Raglan", "character": "Praetorian Guard #1", "id": 1052482, "credit_id": "52fe4217c3a36847f80034a1", "cast_id": 32, "profile_path": "/7HOO5qPFBRAKCEgsqXZltaEyB4Z.jpg", "order": 16}, {"name": "Giorgio Cantarini", "character": "Maximus' Son", "id": 9236, "credit_id": "55338bc39251415295004f7b", "cast_id": 106, "profile_path": "/kqS0xt0oPSjAA54S1wWk118ALgA.jpg", "order": 17}, {"name": "David Bailie", "character": "Engineer", "id": 1715, "credit_id": "55338c25c3a368221f004b9c", "cast_id": 107, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 18}, {"name": "Omid Djalili", "character": "Slave Trader", "id": 41379, "credit_id": "55338c68925141101400343c", "cast_id": 108, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 19}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f800340d", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.4, "runtime": 155}, "100": {"poster_path": "/9WObtE3uqnVAt9hLSK0qtwh9Izd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 3897569, "overview": "A fast paced comedy about a card sharp and his unwillingly enlisted friends, who need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door. Lots of British humor, off the wall characters, and a line up of unbelievable scenes put director Guy Ritchie on the map.", "video": false, "id": 100, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Lock, Stock and Two Smoking Barrels", "tagline": "A Disgrace to Criminals Everywhere.", "vote_count": 817, "homepage": "http://www.universalstudiosentertainment.com/lock-stock-and-two-smoking-barrels/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120735", "adult": false, "backdrop_path": "/lBpl3aIprl25iOPqjc2JiOSd7eT.jpg", "production_companies": [{"name": "Handmade Films Ltd.", "id": 146}, {"name": "Summit Entertainment", "id": 491}, {"name": "The Steve Tisch Company", "id": 21920}, {"name": "SKA Films", "id": 13419}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1998-03-05", "popularity": 0.48290347868943, "original_title": "Lock, Stock and Two Smoking Barrels", "budget": 1350000, "cast": [{"name": "Jason Flemyng", "character": "Tom", "id": 973, "credit_id": "52fe4217c3a36847f80035fb", "cast_id": 12, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 0}, {"name": "Dexter Fletcher", "character": "Soap", "id": 974, "credit_id": "52fe4217c3a36847f80035ff", "cast_id": 13, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 1}, {"name": "Nick Moran", "character": "Eddie", "id": 975, "credit_id": "52fe4217c3a36847f8003603", "cast_id": 14, "profile_path": "/q5As2X1Idd34ma9qXHhH5OvR7mE.jpg", "order": 2}, {"name": "Jason Statham", "character": "Bacon", "id": 976, "credit_id": "52fe4217c3a36847f8003607", "cast_id": 15, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 3}, {"name": "Steven Mackintosh", "character": "Winston", "id": 978, "credit_id": "52fe4217c3a36847f800360b", "cast_id": 16, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 4}, {"name": "Vinnie Jones", "character": "Big Chris", "id": 980, "credit_id": "52fe4217c3a36847f800360f", "cast_id": 17, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 5}, {"name": "Sting", "character": "JD", "id": 982, "credit_id": "52fe4217c3a36847f8003613", "cast_id": 18, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 6}, {"name": "Nicholas Rowe", "character": "J", "id": 984, "credit_id": "52fe4217c3a36847f8003617", "cast_id": 19, "profile_path": "/iA32qMujonoTzU1DdlnTRemBvRQ.jpg", "order": 7}, {"name": "Nick Marcq", "character": "Charles", "id": 985, "credit_id": "52fe4217c3a36847f800361b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Charles Forbes", "character": "Willie", "id": 986, "credit_id": "52fe4217c3a36847f800361f", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Lenny McLean", "character": "Barry the Baptist", "id": 987, "credit_id": "52fe4217c3a36847f8003623", "cast_id": 22, "profile_path": "/A3WqhQxdL7fZJ5ZcVHoLlksG4Np.jpg", "order": 10}, {"name": "Peter McNicholl", "character": "Little Chris", "id": 988, "credit_id": "52fe4217c3a36847f8003627", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "P. H. Moriarty", "character": "'Hatchet' Harry Lonsdale", "id": 989, "credit_id": "52fe4217c3a36847f800362b", "cast_id": 24, "profile_path": "/hbe7K1D6RDGErosR7C8erdN3ODR.jpg", "order": 12}, {"name": "Frank Harper", "character": "Dog", "id": 990, "credit_id": "52fe4217c3a36847f800362f", "cast_id": 25, "profile_path": "/6MaOt1Q6Js7jiA3qsHIcSGY1bbf.jpg", "order": 13}, {"name": "Steve Sweeney", "character": "Plank", "id": 991, "credit_id": "52fe4217c3a36847f8003633", "cast_id": 26, "profile_path": "/uxp1OyyGnzZW9m5ZqJ7v9b7RYPQ.jpg", "order": 14}, {"name": "Huggy Leaver", "character": "Paul", "id": 992, "credit_id": "52fe4217c3a36847f8003637", "cast_id": 27, "profile_path": "/xcfx1ELLNth5UZIM4lOpMK3GG0k.jpg", "order": 15}, {"name": "Tony McMahon", "character": "John", "id": 993, "credit_id": "52fe4217c3a36847f800363b", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Stephen Marcus", "character": "Nick the Greek", "id": 994, "credit_id": "52fe4217c3a36847f800363f", "cast_id": 29, "profile_path": "/hG6deNAV6EWvhJ1EFEh4XjXzfNK.jpg", "order": 17}, {"name": "Vas Blackwood", "character": "Rory Breaker", "id": 995, "credit_id": "52fe4217c3a36847f8003643", "cast_id": 30, "profile_path": "/h9JfWxJyG38n2JZFJ6LmUU3kG4k.jpg", "order": 18}, {"name": "Jake Abraham", "character": "Dean", "id": 4317, "credit_id": "52fe4217c3a36847f8003647", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Victor McGuire", "character": "Gary", "id": 4318, "credit_id": "52fe4217c3a36847f800364b", "cast_id": 32, "profile_path": "/czEQ0XdYIURxBfdiAdGXS6KAWea.jpg", "order": 20}, {"name": "Danny John-Jules", "character": "Barfly Jack", "id": 115787, "credit_id": "550c8bc89251413443001cbb", "cast_id": 35, "profile_path": "/d9yIjilG7BdiPYIsXyZBV0hCuyv.jpg", "order": 21}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f80035c1", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 7.2, "runtime": 105}, "101": {"poster_path": "/6fpIIUc0cbfSlsDzkf1m1XCiIAc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45284974, "overview": "Leon, the top hit man in New York, has earned a rep as an effective \"cleaner\". But when his next-door neighbors are wiped out by a loose-cannon DEA agent, he becomes the unwilling custodian of 12-year-old Mathilda. Before long, Mathilda's thoughts turn to revenge, and she considers following in Leon's footsteps.", "video": false, "id": 101, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Leon: The Professional", "tagline": "If you want a job done well, hire a professional.", "vote_count": 1304, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110413", "adult": false, "backdrop_path": "/mGN0lH2phYfesyEVqP2xvGUaxAQ.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1994-09-14", "popularity": 2.28859538590716, "original_title": "L\u00e9on", "budget": 16000000, "cast": [{"name": "Jean Reno", "character": "L\u00e9on", "id": 1003, "credit_id": "52fe4217c3a36847f80036b3", "cast_id": 12, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Mathilda", "id": 524, "credit_id": "52fe4217c3a36847f80036c3", "cast_id": 21, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Stansfield", "id": 64, "credit_id": "52fe4217c3a36847f80036b7", "cast_id": 13, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Danny Aiello", "character": "Tony", "id": 1004, "credit_id": "52fe4217c3a36847f80036bb", "cast_id": 15, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 2}, {"name": "Peter Appel", "character": "Malky", "id": 1005, "credit_id": "52fe4217c3a36847f80036bf", "cast_id": 16, "profile_path": "/wrAf4TGgtKE1mXWVtm1baTBDh6F.jpg", "order": 4}, {"name": "Willi One Blood", "character": "1St Stansfield Man", "id": 1006, "credit_id": "5300b1e19251416ae430779f", "cast_id": 23, "profile_path": "/v6CKo0DWpTkJt47aWiBuiCp7lH.jpg", "order": 5}, {"name": "Don Creech", "character": "2nd Stansfield man", "id": 1007, "credit_id": "5300b2139251416ade300c61", "cast_id": 24, "profile_path": "/sI2hA8u4BiMfqtMLaKwLgeH5vGy.jpg", "order": 6}, {"name": "Keith A. Glascoe", "character": "3rd Stansfield man (Benny)", "id": 1008, "credit_id": "5300b2399251416ade300f87", "cast_id": 25, "profile_path": "/d466DzS2wLqEz7FAHOfLpCmSpF0.jpg", "order": 7}, {"name": "Michael Badalucco", "character": "Mathilda's Father", "id": 1010, "credit_id": "5300b31e9251416ad830d36a", "cast_id": 26, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 8}, {"name": "Ellen Greene", "character": "Mathilda's Mother", "id": 13420, "credit_id": "5300b3529251416ade3049d4", "cast_id": 27, "profile_path": "/1EHwrl4PzPJzVbheXoqW6uzhMos.jpg", "order": 9}, {"name": "Elizabeth Regen", "character": "Mathilda's Sister", "id": 122230, "credit_id": "5300b3809251412a162ced41", "cast_id": 28, "profile_path": "/g53E398tOGW1wkgFtRxzVicVSOL.jpg", "order": 10}, {"name": "Carl J. Matusovich", "character": "Mathilda's Brother", "id": 977543, "credit_id": "5300b4a99251416ae431227f", "cast_id": 29, "profile_path": "/yTldUVHfjZ6EETmqTu96p3DlUaB.jpg", "order": 11}, {"name": "Frank Senger", "character": "Fatman", "id": 138401, "credit_id": "5300b53f9251416adb30e489", "cast_id": 31, "profile_path": "/jJXwj06VHdc7evwWq9kbcfsTZtQ.jpg", "order": 13}, {"name": "Stuart Rudin", "character": "Leon's Taxi driver", "id": 94435, "credit_id": "541193a5c3a3680207000f14", "cast_id": 32, "profile_path": "/7UOKyx48mPGHXl6HzQkCpCkEcn0.jpg", "order": 14}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f8003679", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 7.8, "runtime": 110}, "103": {"poster_path": "/yxq4pk1xGmro8tQABuQIrWrvdaE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21100000, "overview": "Robert De Niro stars as Travis Bickle in this oppressive psychodrama about a Vietnam veteran who rebels against the decadence and immorality of big city life in New York while working the nightshift as a taxi driver.", "video": false, "id": 103, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Taxi Driver", "tagline": "On every street in every city, there's a nobody who dreams of being a somebody.", "vote_count": 500, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0075314", "adult": false, "backdrop_path": "/hjmJKAVoZ3n2KWbKgasbfdugwhu.jpg", "production_companies": [{"name": "Italo/Judeo Productions", "id": 46059}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Bill/Phillips", "id": 46060}], "release_date": "1976-02-08", "popularity": 1.4152518096347, "original_title": "Taxi Driver", "budget": 1300000, "cast": [{"name": "Robert De Niro", "character": "Travis Bickle", "id": 380, "credit_id": "52fe4218c3a36847f80037d7", "cast_id": 5, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Cybill Shepherd", "character": "Betsy", "id": 1036, "credit_id": "52fe4218c3a36847f80037db", "cast_id": 6, "profile_path": "/iWlt5Xba1z9oFqL8MHo110I6qZ5.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "'Sport' Matthew", "id": 1037, "credit_id": "52fe4218c3a36847f80037df", "cast_id": 7, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Jodie Foster", "character": "Iris Steensma", "id": 1038, "credit_id": "52fe4218c3a36847f80037e3", "cast_id": 8, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 3}, {"name": "Peter Boyle", "character": "Wizard", "id": 1039, "credit_id": "52fe4218c3a36847f80037e7", "cast_id": 9, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 4}, {"name": "Leonard Harris", "character": "Senator Charles Palantine", "id": 1040, "credit_id": "52fe4218c3a36847f80037eb", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Albert Brooks", "character": "Tom", "id": 13, "credit_id": "52fe4218c3a36847f80037ef", "cast_id": 11, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 6}, {"name": "Diahnne Abbott", "character": "Concession Girl", "id": 1041, "credit_id": "52fe4218c3a36847f80037f3", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Gino Ardito", "character": "Policeman al rally", "id": 1043, "credit_id": "52fe4218c3a36847f80037f7", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Martin Scorsese", "character": "Man in cab", "id": 1032, "credit_id": "52fe4218c3a36847f800384f", "cast_id": 29, "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "order": 9}, {"name": "Murray Moston", "character": "Iris' Time Keeper", "id": 77255, "credit_id": "52fe4218c3a36847f8003853", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Richard Higgs", "character": "Secret Service Agent", "id": 1274408, "credit_id": "52fe4218c3a36847f8003857", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Bill Minkin", "character": "Tom's Assistant", "id": 1274409, "credit_id": "52fe4218c3a36847f800385b", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Bob Maroff", "character": "Mafioso", "id": 169093, "credit_id": "52fe4218c3a36847f800385f", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Victor Argo", "character": "Melio, Delicatessen Owner", "id": 2561, "credit_id": "52fe4218c3a36847f8003863", "cast_id": 39, "profile_path": "/kYwuOpT59qqJnssl9R4226yHSAG.jpg", "order": 14}, {"name": "Joe Spinell", "character": "Personell Officer", "id": 16525, "credit_id": "53bb26ac0e0a2619780006b7", "cast_id": 40, "profile_path": "/wzZZO8xXn9OgljCmrGGR4L6wBdg.jpg", "order": 15}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f80037c1", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.4, "runtime": 113}, "104": {"poster_path": "/oTvbjW6NPVHswwiYrzqqC8GEzRL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Lola receives a phone call from her boyfriend Manny. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manny. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.", "video": false, "id": 104, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Run Lola Run", "tagline": "Every second of every day you're faced with a decision that can change your life.", "vote_count": 213, "homepage": "http://www.lolarennt.de/", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0130827", "adult": false, "backdrop_path": "/xzbAey8RrRNKOe6JZMuxbIRc1UE.jpg", "production_companies": [{"name": "X-Filme Creative Pool", "id": 1972}], "release_date": "1998-08-20", "popularity": 0.714455900911701, "original_title": "Lola rennt", "budget": 1530000, "cast": [{"name": "Franka Potente", "character": "Lola", "id": 679, "credit_id": "52fe4218c3a36847f80038df", "cast_id": 11, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 0}, {"name": "Moritz Bleibtreu", "character": "Manni", "id": 677, "credit_id": "52fe4218c3a36847f80038e3", "cast_id": 12, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 1}, {"name": "Herbert Knaup", "character": "Lola's Father", "id": 1081, "credit_id": "52fe4218c3a36847f80038e7", "cast_id": 13, "profile_path": "/cH0TG69o6Sc6of7ZaZP9BwQ3tHX.jpg", "order": 2}, {"name": "Nina Petri", "character": "Frau Hansen", "id": 1082, "credit_id": "52fe4218c3a36847f80038eb", "cast_id": 14, "profile_path": "/2P0ExPJn2ko62BwuVA7Ify4vRjm.jpg", "order": 3}, {"name": "Armin Rohde", "character": "Herr Schuster", "id": 1083, "credit_id": "52fe4218c3a36847f80038ef", "cast_id": 15, "profile_path": "/jUOdSGDo9az8rtpZnP4AzzgydQj.jpg", "order": 4}, {"name": "Joachim Kr\u00f3l", "character": "Homeless Man", "id": 1084, "credit_id": "52fe4218c3a36847f80038f3", "cast_id": 16, "profile_path": "/swED4GruvGgMdqpbshKKdzLIm1e.jpg", "order": 5}, {"name": "Heino Ferch", "character": "Ronnie", "id": 1086, "credit_id": "52fe4218c3a36847f80038f7", "cast_id": 18, "profile_path": "/dZFdmRr4Ohm5WXZstv7X0lMyd8m.jpg", "order": 6}, {"name": "Lars Rudolph", "character": "Herr Kruse", "id": 1087, "credit_id": "52fe4218c3a36847f80038fb", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Ludger Pistor", "character": "Herr Meier", "id": 1088, "credit_id": "52fe4218c3a36847f80038ff", "cast_id": 20, "profile_path": "/bhtJu7xvac15bcGGf7e6nwGOeI7.jpg", "order": 8}, {"name": "Sebastian Schipper", "character": "Mike", "id": 3702, "credit_id": "52fe4218c3a36847f8003915", "cast_id": 25, "profile_path": "/fzRs9csoyl9uE5aybQ9bqe1SGuc.jpg", "order": 10}, {"name": "Ute Lubosch", "character": "Mother", "id": 3703, "credit_id": "52fe4218c3a36847f8003919", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Julia Lindig", "character": "Doris", "id": 3704, "credit_id": "52fe4218c3a36847f800391d", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Andreas Petri", "character": "Cleaning Person", "id": 3705, "credit_id": "52fe4218c3a36847f8003921", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Klaus M\u00fcller", "character": "Croupier", "id": 3706, "credit_id": "52fe4218c3a36847f8003925", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Utz Krause", "character": "Casino Manager", "id": 3707, "credit_id": "52fe4218c3a36847f8003929", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Volkart Buff", "character": "Ambulance Driver", "id": 3708, "credit_id": "52fe4218c3a36847f800392d", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Monica Bleibtreu", "character": "Blind Woman", "id": 16782, "credit_id": "52fe4218c3a36847f8003937", "cast_id": 33, "profile_path": "/bAiztxeF4MXJmBFso5YJukNn0Y9.jpg", "order": 17}, {"name": "Suzanne von Borsody", "character": "Frau J\u00e4ger", "id": 142653, "credit_id": "52fe4218c3a36847f8003941", "cast_id": 35, "profile_path": "/nbL9bTK6hnGPSZtCccR85GT3bDs.jpg", "order": 18}], "directors": [{"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f80038ab", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 7.1, "runtime": 81}, "105": {"poster_path": "/pTpxQB1N0waaSc3OSn0e9oc8kx9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 381109762, "overview": "Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.", "video": false, "id": 105, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Back to the Future", "tagline": "He's the only kid ever to get into trouble before he was born.", "vote_count": 2224, "homepage": "http://www.bttfmovie.com/", "belongs_to_collection": {"backdrop_path": "/c9C9Pg2QctyjZHRmS0P8rZg1OTA.jpg", "poster_path": "/51J1AroyQ45V8DCJnfItFUaKFxL.jpg", "id": 264, "name": "Back to the Future Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088763", "adult": false, "backdrop_path": "/x4N74cycZvKu5k3KDERJay4ajR3.jpg", "production_companies": [{"name": "U-Drive Productions", "id": 20448}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1985-07-03", "popularity": 2.87794700675633, "original_title": "Back to the Future", "budget": 19000000, "cast": [{"name": "Michael J. Fox", "character": "Marty McFly / Marty McFly Jr / Marlene McFly", "id": 521, "credit_id": "52fe4218c3a36847f8003a13", "cast_id": 14, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Dr. Emmett Brown", "id": 1062, "credit_id": "52fe4218c3a36847f8003a17", "cast_id": 15, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Lorraine Baines McFly", "id": 1063, "credit_id": "52fe4218c3a36847f8003a1b", "cast_id": 16, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Crispin Glover", "character": "George McFly", "id": 1064, "credit_id": "52fe4218c3a36847f8003a1f", "cast_id": 17, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 3}, {"name": "Thomas F. Wilson", "character": "Biff Tannen", "id": 1065, "credit_id": "52fe4218c3a36847f8003a23", "cast_id": 18, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 4}, {"name": "Claudia Wells", "character": "Jennifer Parker", "id": 1066, "credit_id": "52fe4218c3a36847f8003a27", "cast_id": 19, "profile_path": "/lQWUidwPartKLzV3NYMVrkxooRO.jpg", "order": 5}, {"name": "Marc McClure", "character": "Dave McFly", "id": 1067, "credit_id": "52fe4218c3a36847f8003a2b", "cast_id": 20, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 6}, {"name": "Wendie Jo Sperber", "character": "Linda McFly", "id": 1068, "credit_id": "52fe4218c3a36847f8003a2f", "cast_id": 21, "profile_path": "/nadvO9Q24eNrGAznKmlOwV6E6Wb.jpg", "order": 7}, {"name": "George DiCenzo", "character": "Sam Baines", "id": 1069, "credit_id": "52fe4218c3a36847f8003a33", "cast_id": 22, "profile_path": "/u5pQL3gkcGcnpkc9NPuyiBB3e8f.jpg", "order": 8}, {"name": "Frances Lee McCain", "character": "Stella Baines", "id": 1070, "credit_id": "52fe4218c3a36847f8003a37", "cast_id": 23, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 9}, {"name": "James Tolkan", "character": "Mr. Strickland", "id": 1072, "credit_id": "52fe4218c3a36847f8003a3b", "cast_id": 24, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 10}, {"name": "Harry Waters, Jr.", "character": "Marvin Berry", "id": 1074, "credit_id": "52fe4218c3a36847f8003a3f", "cast_id": 25, "profile_path": "/lDpuXzAeqfoYbxV0QxidKPXoYfV.jpg", "order": 11}, {"name": "Billy Zane", "character": "Match", "id": 1954, "credit_id": "52fe4218c3a36847f8003a43", "cast_id": 26, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 12}, {"name": "J.J. Cohen", "character": "Skinhead", "id": 11673, "credit_id": "52fe4218c3a36847f8003a47", "cast_id": 27, "profile_path": "/cEmMWxPQ1PfpEYU1NjNb2F4XSJo.jpg", "order": 13}, {"name": "Casey Siemaszko", "character": "3-D", "id": 1953, "credit_id": "52fe4218c3a36847f8003a4b", "cast_id": 28, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 14}, {"name": "Donald Fullilove", "character": "Goldie Wilson", "id": 84494, "credit_id": "52fe4218c3a36847f8003a4f", "cast_id": 29, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 15}, {"name": "Lisa Freeman", "character": "Babs", "id": 97708, "credit_id": "52fe4218c3a36847f8003a53", "cast_id": 30, "profile_path": "/spwZaVY8ufKeT0Kkb02a8HgAr9i.jpg", "order": 16}, {"name": "Cristen Kauffman", "character": "Betty", "id": 1116544, "credit_id": "52fe4218c3a36847f8003a57", "cast_id": 31, "profile_path": "/b8mpdSwVGQqdZo37BDAeseCcQB0.jpg", "order": 17}, {"name": "Elsa Raven", "character": "Clocktower Lady", "id": 172280, "credit_id": "52fe4218c3a36847f8003a5b", "cast_id": 32, "profile_path": "/4pxbeI6yZyAMmeikbM7DzPex4z4.jpg", "order": 18}, {"name": "Will Hare", "character": "Pa Peabody", "id": 97718, "credit_id": "52fe4218c3a36847f8003a5f", "cast_id": 33, "profile_path": "/ucBDiQeJBnrwPvTCYiH194lRru5.jpg", "order": 19}, {"name": "Ivy Bethune", "character": "Ma Peabody", "id": 129319, "credit_id": "52fe4218c3a36847f8003a63", "cast_id": 34, "profile_path": "/9I1oyF0Fee3pQABnADhG0Kq73Vw.jpg", "order": 20}, {"name": "Jason Marin", "character": "Sherman Peabody", "id": 184030, "credit_id": "52fe4218c3a36847f8003a67", "cast_id": 35, "profile_path": "/vt8OeZi93AlWkVGZ3yazBqh4jWx.jpg", "order": 21}, {"name": "Katherine Britton", "character": "Daughter Peabody", "id": 1200788, "credit_id": "52fe4218c3a36847f8003a6b", "cast_id": 36, "profile_path": "/s4w5tbvGWrFkRCvNZ9AgNV9xse5.jpg", "order": 22}, {"name": "Jason Hervey", "character": "Milton Baines", "id": 94500, "credit_id": "52fe4218c3a36847f8003a6f", "cast_id": 37, "profile_path": "/1bFPRMePCwHTICLbUN3PN0k3dI5.jpg", "order": 23}, {"name": "Maia Brewton", "character": "Sally Baines", "id": 139044, "credit_id": "52fe4218c3a36847f8003a73", "cast_id": 38, "profile_path": "/zKdpmkcRGCo4Zs9mdfc8ZkSOVtN.jpg", "order": 24}, {"name": "Courtney Gains", "character": "Dixon", "id": 18708, "credit_id": "52fe4218c3a36847f8003a77", "cast_id": 39, "profile_path": "/7u8dTzgr4ODfpKwdYoUlTwptoCq.jpg", "order": 25}, {"name": "Richard L. Duran", "character": "Terrorist", "id": 238572, "credit_id": "52fe4218c3a36847f8003a7b", "cast_id": 40, "profile_path": "/iRdAaP2YNnhWk0iTfyTVzLkP8VU.jpg", "order": 26}, {"name": "Jeff O'Haco", "character": "Terrorist Van Driver", "id": 1020340, "credit_id": "52fe4218c3a36847f8003a7f", "cast_id": 41, "profile_path": "/jxzZd6t8KhDx5aKkRJyBxgXWBM0.jpg", "order": 27}, {"name": "Johnny Green", "character": "Scooter Kid #1", "id": 21065, "credit_id": "52fe4218c3a36847f8003a83", "cast_id": 42, "profile_path": "/wjx2eWoZ3GVuu4Po2gXGIdXbICn.jpg", "order": 28}, {"name": "Jamie Abbott", "character": "Scooter Kid #2", "id": 158713, "credit_id": "52fe4218c3a36847f8003a87", "cast_id": 43, "profile_path": null, "order": 29}, {"name": "Read Morgan", "character": "Cop", "id": 99725, "credit_id": "52fe4218c3a36847f8003a8f", "cast_id": 45, "profile_path": "/stXkSnEaGj9cSLIdiqlCWzasV0O.jpg", "order": 31}, {"name": "Sachi Parker", "character": "Bystander #1", "id": 77874, "credit_id": "52fe4218c3a36847f8003a93", "cast_id": 46, "profile_path": "/mGdbHzoQ7ToJ7mLIvKLAoDLExS2.jpg", "order": 32}, {"name": "Robert Krantz", "character": "Bystander #2", "id": 160343, "credit_id": "52fe4218c3a36847f8003a97", "cast_id": 47, "profile_path": "/8zrLA17q7BcACYbTRwCcs1xYyKi.jpg", "order": 33}, {"name": "Gary Riley", "character": "Guy #1", "id": 3038, "credit_id": "52fe4218c3a36847f8003a9b", "cast_id": 48, "profile_path": "/d1TZEZcWxyTnqLdop06MOKWMvm8.jpg", "order": 34}, {"name": "Karen Petrasek", "character": "Girl #1", "id": 175060, "credit_id": "52fe4218c3a36847f8003a9f", "cast_id": 49, "profile_path": null, "order": 35}, {"name": "George Buck Flower", "character": "Red Thomas - the Bum", "id": 54564, "credit_id": "52fe4218c3a36847f8003aa3", "cast_id": 50, "profile_path": "/xHzW4GszCLTZLNxvTcKL9ICuLIc.jpg", "order": 36}, {"name": "Tommy Thomas", "character": "Starlighter", "id": 1200791, "credit_id": "52fe4218c3a36847f8003aa7", "cast_id": 51, "profile_path": null, "order": 37}, {"name": "Granville 'Danny' Young", "character": "Starlighter", "id": 1200792, "credit_id": "52fe4218c3a36847f8003aab", "cast_id": 52, "profile_path": null, "order": 38}, {"name": "David Harold Brown", "character": "Starlighter", "id": 1200793, "credit_id": "52fe4218c3a36847f8003aaf", "cast_id": 53, "profile_path": null, "order": 39}, {"name": "Lloyd L. Tolbert", "character": "Starlighter", "id": 1200794, "credit_id": "52fe4218c3a36847f8003ab3", "cast_id": 54, "profile_path": "/5q81Ro5P2nonxEHq1L6kAebMVWV.jpg", "order": 40}, {"name": "Paul Hanson", "character": "Pinhead", "id": 964124, "credit_id": "52fe4218c3a36847f8003ab7", "cast_id": 55, "profile_path": "/3rdsCqjVoLEZpO5iqVrQbZHOsyp.jpg", "order": 41}, {"name": "Lee Brownfield", "character": "Pinhead", "id": 1200796, "credit_id": "52fe4218c3a36847f8003abb", "cast_id": 56, "profile_path": null, "order": 42}, {"name": "Robert DeLapp", "character": "Pinhead", "id": 180468, "credit_id": "52fe4218c3a36847f8003abf", "cast_id": 57, "profile_path": null, "order": 43}, {"name": "Walter Scott", "character": "Man driving jeep - 1985", "id": 16474, "credit_id": "52fe4218c3a36847f8003ac3", "cast_id": 58, "profile_path": "/l8uXZW6xypNY7e4wd7a0HqzP6iA.jpg", "order": 44}, {"name": "Charles L. Campbell", "character": "1955 Radio Announcer (voice) (uncredited)", "id": 9971, "credit_id": "52fe4218c3a36847f8003ac7", "cast_id": 59, "profile_path": "/1MoCPekZ23I9uyq6VPFka6o9Zkz.jpg", "order": 45}, {"name": "Deborah Harmon", "character": "TV Newscaster (uncredited)", "id": 100600, "credit_id": "52fe4218c3a36847f8003acb", "cast_id": 60, "profile_path": "/f9zq9wnb7y9QzdseVz7TiiERRRb.jpg", "order": 46}, {"name": "Janine King", "character": "High School Girl (uncredited)", "id": 1200797, "credit_id": "52fe4218c3a36847f8003acf", "cast_id": 61, "profile_path": "/lr97zuxxGlLivxcQbSbNGiliesE.jpg", "order": 47}, {"name": "Huey Lewis", "character": "High School Band Audition Judge (uncredited)", "id": 168702, "credit_id": "52fe4218c3a36847f8003ad3", "cast_id": 62, "profile_path": "/5x30rIs9NnV4r1AUMpPIhw9UhgQ.jpg", "order": 48}, {"name": "Tom Tangen", "character": "Student (uncredited)", "id": 553735, "credit_id": "52fe4218c3a36847f8003ad7", "cast_id": 63, "profile_path": "/3IhcC4FmrgBtcCZpl85amgVaVRy.jpg", "order": 49}, {"name": "Norman Alden", "character": "Lou", "id": 7139, "credit_id": "530a6612c3a36863b1003f64", "cast_id": 64, "profile_path": "/8UZtACb7u0JEOKh9IzFTi5FC4NH.jpg", "order": 50}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f80039c7", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 7.5, "runtime": 116}, "106": {"poster_path": "/sa8OiwfkGLeQ3HDXf8BwXUx6pZV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98235548, "overview": "Dutch and his group of commandos are hired by the CIA to rescue downed airmen from guerillas in a Central American jungle. The mission goes well but as they return they find that something is hunting them. Nearly invisible, it blends in with the forest, taking trophies from the bodies of its victims as it goes along. Occasionally seeing through its eyes, the audience sees it is an intelligent alien hunter, hunting them for sport, killing them off one at a time.", "video": false, "id": 106, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predator", "tagline": "If it bleeds, we can kill it...", "vote_count": 580, "homepage": "", "belongs_to_collection": {"backdrop_path": "/e8ycFoI8vGoZSOY7KmxFzZA1dkE.jpg", "poster_path": "/6Z7lASptoiRVxiCFvZaFgH9qp7u.jpg", "id": 399, "name": "Predator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0093773", "adult": false, "backdrop_path": "/cN8V7Hc40SthRI60J2myfqhHCBQ.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Amercent Films", "id": 5263}, {"name": "American Entertainment Partners II L.P.", "id": 21451}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1987-06-11", "popularity": 1.70521667538356, "original_title": "Predator", "budget": 18000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Major Alan 'Dutch' Schaeffer", "id": 1100, "credit_id": "52fe4218c3a36847f8003b53", "cast_id": 13, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Carl Weathers", "character": "Major George Dillon", "id": 1101, "credit_id": "52fe4218c3a36847f8003b57", "cast_id": 14, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 1}, {"name": "Elpidia Carrillo", "character": "Anna", "id": 1102, "credit_id": "52fe4218c3a36847f8003b5b", "cast_id": 15, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 2}, {"name": "Bill Duke", "character": "Sergeant 'Mac' Eliot", "id": 1103, "credit_id": "52fe4218c3a36847f8003b5f", "cast_id": 16, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 3}, {"name": "Jesse Ventura", "character": "Blain", "id": 1104, "credit_id": "52fe4218c3a36847f8003b63", "cast_id": 17, "profile_path": "/25AzScRxybPMRxEfv9iB116jj7a.jpg", "order": 4}, {"name": "Sonny Landham", "character": "Billy", "id": 1105, "credit_id": "52fe4218c3a36847f8003b67", "cast_id": 18, "profile_path": "/dmOpsfsz56FtcrQMfyiivmoEXXP.jpg", "order": 5}, {"name": "Richard Chaves", "character": "Poncho Ramirez", "id": 1106, "credit_id": "52fe4218c3a36847f8003b6b", "cast_id": 19, "profile_path": "/5vt3CgYIAPFXwYvFXea4p2GlhIH.jpg", "order": 6}, {"name": "R. G. Armstrong", "character": "General Phillips", "id": 1107, "credit_id": "52fe4218c3a36847f8003b6f", "cast_id": 20, "profile_path": "/lRGoPhebBnPFzZQvcmnUokjGL7L.jpg", "order": 7}, {"name": "Shane Black", "character": "Hawkins", "id": 1108, "credit_id": "52fe4218c3a36847f8003b73", "cast_id": 21, "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "order": 8}, {"name": "Kevin Peter Hall", "character": "Helicopter Pilot / Predator", "id": 1109, "credit_id": "52fe4218c3a36847f8003b7b", "cast_id": 23, "profile_path": "/lxlubrzo3np1mU0ML7G12zuy654.jpg", "order": 10}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f8003b0d", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 7.0, "runtime": 107}, "107": {"poster_path": "/on9JlbGEccLsYkjeEph2Whm1DIp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83557872, "overview": "The second film from British director Guy Ritchie. Snatch tells an obscure story similar to his first fast-paced crazy character-colliding filled film \u201cLock, Stock & Two Smoking Barrels.\u201d There are two overlapping stories here \u2013 one is the search for a stolen diamond, and the other about a boxing promoter who\u2019s having trouble with a psychotic gangster.", "video": false, "id": 107, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Snatch", "tagline": "Stealin' Stones and Breakin' Bones.", "vote_count": 1288, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0208092", "adult": false, "backdrop_path": "/w6Ecdh1Erq285jEVVKmjnkFUIdj.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "SKA Films", "id": 13419}], "release_date": "2000-09-01", "popularity": 1.95796349398208, "original_title": "Snatch", "budget": 10000000, "cast": [{"name": "Jason Statham", "character": "Turkish", "id": 976, "credit_id": "52fe4218c3a36847f8003be1", "cast_id": 10, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Mickey O'Neil", "id": 287, "credit_id": "52fe4218c3a36847f8003be5", "cast_id": 11, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Stephen Graham", "character": "Tommy", "id": 1115, "credit_id": "52fe4218c3a36847f8003be9", "cast_id": 12, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 2}, {"name": "Vinnie Jones", "character": "Bullet Tooth Tony", "id": 980, "credit_id": "52fe4218c3a36847f8003bed", "cast_id": 13, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 3}, {"name": "Alan Ford", "character": "Brick Top Polford", "id": 1116, "credit_id": "52fe4218c3a36847f8003bf1", "cast_id": 14, "profile_path": "/3HtCLGRkuLmObyp1oJNJzplxOkI.jpg", "order": 4}, {"name": "Dennis Farina", "character": "Abraham 'Cousin Avi' Denovitz", "id": 1117, "credit_id": "52fe4219c3a36847f8003bf5", "cast_id": 15, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 5}, {"name": "Rade \u0160erbed\u017eija", "character": "Boris 'The Blade' Yurinov (as Rade Serbedgia)", "id": 1118, "credit_id": "52fe4219c3a36847f8003bf9", "cast_id": 16, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 6}, {"name": "Robbie Gee", "character": "Vincent", "id": 1119, "credit_id": "52fe4219c3a36847f8003bfd", "cast_id": 17, "profile_path": "/sNjG7yCwwF6gMChC6gNfNuPUbwE.jpg", "order": 7}, {"name": "Lennie James", "character": "Sol", "id": 1120, "credit_id": "52fe4219c3a36847f8003c01", "cast_id": 18, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 8}, {"name": "Benicio del Toro", "character": "Franky Four Fingers", "id": 1121, "credit_id": "52fe4219c3a36847f8003c05", "cast_id": 19, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 9}, {"name": "Mike Reid", "character": "Doug 'The Head' Denovitz", "id": 1122, "credit_id": "52fe4219c3a36847f8003c09", "cast_id": 20, "profile_path": "/j9ULDYBKDQEbVC33IWsElHE1cLm.jpg", "order": 10}, {"name": "Jason Flemyng", "character": "Darren", "id": 973, "credit_id": "52fe4219c3a36847f8003c0d", "cast_id": 21, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 11}, {"name": "Andy Beckwith", "character": "Errol", "id": 1123, "credit_id": "52fe4219c3a36847f8003c11", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "William Beck", "character": "Neil", "id": 1124, "credit_id": "52fe4219c3a36847f8003c15", "cast_id": 23, "profile_path": "/jVGePQQAy2gY9zmIBxzRILPEadU.jpg", "order": 13}, {"name": "Ewen Bremner", "character": "Mullet", "id": 1125, "credit_id": "52fe4219c3a36847f8003c19", "cast_id": 24, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 14}, {"name": "Guy Ritchie", "character": "Man Reading Newspaper (uncredited)", "id": 956, "credit_id": "52fe4219c3a36847f8003c1d", "cast_id": 25, "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "order": 15}, {"name": "Adam Fogerty", "character": "Gorgeous George", "id": 2302, "credit_id": "52fe4219c3a36847f8003c21", "cast_id": 26, "profile_path": "/atUrQzMNfGgcbFcdCLw9YklohS7.jpg", "order": 16}, {"name": "Ade", "character": "Tyrone", "id": 2627, "credit_id": "52fe4219c3a36847f8003c25", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f8003bb9", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 7.4, "runtime": 103}, "24684": {"poster_path": "/n0mH5BgPjlMWJLWKhjtf5MDRrm9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A coming-of-age story about a teenage girl in 1960s suburban London, and how her life changes with the arrival of a playboy nearly twice her age.", "video": false, "id": 24684, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "An Education", "tagline": "Innocence of the Young.", "vote_count": 89, "homepage": "http://www.sonyclassics.com/aneducation/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1174732", "adult": false, "backdrop_path": "/aTmb50x9TfOfBGGMaeRr7M1Riui.jpg", "production_companies": [{"name": "BBC Films", "id": 288}], "release_date": "2009-10-29", "popularity": 0.592929106585063, "original_title": "An Education", "budget": 7500000, "cast": [{"name": "Carey Mulligan", "character": "Jenny", "id": 36662, "credit_id": "52fe44a4c3a368484e02e853", "cast_id": 3, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 0}, {"name": "Olivia Williams", "character": "Miss Stubbs", "id": 11616, "credit_id": "52fe44a4c3a368484e02e857", "cast_id": 4, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "David", "id": 133, "credit_id": "52fe44a4c3a368484e02e863", "cast_id": 7, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Jack", "id": 658, "credit_id": "52fe44a4c3a368484e02e85b", "cast_id": 5, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Cara Seymour", "character": "Majorie", "id": 2617, "credit_id": "52fe44a4c3a368484e02e85f", "cast_id": 6, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 4}, {"name": "Dominic Cooper", "character": "Danny", "id": 55470, "credit_id": "52fe44a4c3a368484e02e867", "cast_id": 8, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 5}, {"name": "Rosamund Pike", "character": "Helen", "id": 10882, "credit_id": "52fe44a4c3a368484e02e86b", "cast_id": 9, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 6}, {"name": "Sally Hawkins", "character": "Sarah Goldman", "id": 39658, "credit_id": "52fe44a4c3a368484e02e873", "cast_id": 11, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 7}, {"name": "Amanda Fairbank-Hynes", "character": "Hattie", "id": 235837, "credit_id": "52fe44a4c3a368484e02e86f", "cast_id": 10, "profile_path": "/127xlkSaLK92NaYdStJQxWkqR1I.jpg", "order": 8}, {"name": "William Melling", "character": "Small Boy #1", "id": 568374, "credit_id": "52fe44a4c3a368484e02e877", "cast_id": 12, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 9}, {"name": "Connor Catchpole", "character": "Small Boy #2", "id": 1205266, "credit_id": "52fe44a4c3a368484e02e87b", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Matthew Beard", "character": "Graham", "id": 213394, "credit_id": "52fe44a4c3a368484e02e87f", "cast_id": 14, "profile_path": "/1Cbv1JWSg4RJ385OZrS3lnlo7eu.jpg", "order": 11}, {"name": "Ellie Kendrick", "character": "Tina", "id": 220290, "credit_id": "52fe44a4c3a368484e02e883", "cast_id": 15, "profile_path": "/xggl7GihLGxqyd1i8lPL5Aj5qp2.jpg", "order": 12}, {"name": "Nick Sampson", "character": "Auctioneer", "id": 1205267, "credit_id": "52fe44a4c3a368484e02e887", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Kate Duchene", "character": "Latin Teacher", "id": 1036345, "credit_id": "52fe44a4c3a368484e02e88b", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Bel Parker", "character": "Small Girl", "id": 1205268, "credit_id": "52fe44a4c3a368484e02e88f", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Emma Thompson", "character": "Headmistress", "id": 7056, "credit_id": "52fe44a4c3a368484e02e893", "cast_id": 19, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 16}, {"name": "Luis Soto", "character": "Rachman", "id": 59091, "credit_id": "52fe44a4c3a368484e02e897", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Olenka Wrzesniewski", "character": "Shakespeare Girl #1", "id": 1205269, "credit_id": "52fe44a4c3a368484e02e89b", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Bryony Wadsworth", "character": "Shakespeare Girl #2", "id": 1205270, "credit_id": "52fe44a4c3a368484e02e89f", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Ashley Taylor-Rhys", "character": "Petrol Attendant", "id": 1205271, "credit_id": "52fe44a4c3a368484e02e8a3", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Beth Rowley", "character": "Nightclub Singer", "id": 1205272, "credit_id": "52fe44a4c3a368484e02e8a7", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Ben Castle", "character": "Nightclub Band", "id": 1205273, "credit_id": "52fe44a4c3a368484e02e8ab", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Mark Edwards", "character": "Nightclub Band", "id": 177024, "credit_id": "52fe44a4c3a368484e02e8af", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Tom Rees-Roberts", "character": "Nightclub Band", "id": 1205274, "credit_id": "52fe44a4c3a368484e02e8b3", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Arne Somogyi", "character": "Nightclub Band", "id": 1205275, "credit_id": "52fe44a4c3a368484e02e8b7", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Paul Pilot", "character": "Nightclub Band", "id": 1205276, "credit_id": "52fe44a4c3a368484e02e8bb", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Phil Wilkinson", "character": "Nightclub Band", "id": 1205277, "credit_id": "52fe44a4c3a368484e02e8bf", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "James Norton", "character": "Student", "id": 1205278, "credit_id": "52fe44a4c3a368484e02e8c3", "cast_id": 31, "profile_path": "/rseiJUwdoDe1yNXgRROyAPo8NEA.jpg", "order": 28}, {"name": "Charlee Hall", "character": "Baby 1 (uncredited)", "id": 1205279, "credit_id": "52fe44a4c3a368484e02e8c7", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Neo Hall", "character": "Baby 2 (uncredited)", "id": 1205280, "credit_id": "52fe44a4c3a368484e02e8cb", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "David Wayman", "character": "Man in Cafe (uncredited)", "id": 1085939, "credit_id": "52fe44a4c3a368484e02e8cf", "cast_id": 34, "profile_path": null, "order": 31}], "directors": [{"name": "Lone Scherfig", "department": "Directing", "job": "Director", "credit_id": "52fe44a4c3a368484e02e849", "profile_path": "/zJDZjeBfJxVUslaOU2lI9zfsU3F.jpg", "id": 1176}], "vote_average": 6.7, "runtime": 100}, "111": {"poster_path": "/xYZjUGOhks1PFZm8sZ6PkIq6wni.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65884703, "overview": "Tony Montana is an exiled Cuban criminal who goes to work for Miami drug lord Robert Loggia. Montana rises to the top of Florida's crime chain, appropriating Loggia's cokehead mistress in the process.", "video": false, "id": 111, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Scarface", "tagline": "The world is yours...", "vote_count": 784, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0086250", "adult": false, "backdrop_path": "/ux2nVfA689N1phsRMtj76Ona65M.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1983-12-08", "popularity": 1.40082313583044, "original_title": "Scarface", "budget": 25000000, "cast": [{"name": "Al Pacino", "character": "Tony Montana", "id": 1158, "credit_id": "52fe4219c3a36847f8003e47", "cast_id": 9, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Steven Bauer", "character": "Manny Ribera", "id": 1159, "credit_id": "52fe4219c3a36847f8003e4b", "cast_id": 10, "profile_path": "/2wbrq8xIKbIAQAgtxsftJT5XgVs.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Elvira Hancock", "id": 1160, "credit_id": "52fe4219c3a36847f8003e4f", "cast_id": 11, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Mary Elizabeth Mastrantonio", "character": "Gina Montana", "id": 1161, "credit_id": "52fe4219c3a36847f8003e53", "cast_id": 12, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 3}, {"name": "Robert Loggia", "character": "Frank Lopez", "id": 1162, "credit_id": "52fe4219c3a36847f8003e57", "cast_id": 13, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 4}, {"name": "Miriam Colon", "character": "Mama Montana", "id": 1163, "credit_id": "52fe4219c3a36847f8003e5b", "cast_id": 14, "profile_path": "/vNKUyJKVIvAmXT6pv0vWrZXazlS.jpg", "order": 5}, {"name": "F. Murray Abraham", "character": "Omar Suarez", "id": 1164, "credit_id": "52fe4219c3a36847f8003e5f", "cast_id": 15, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 6}, {"name": "Paul Shenar", "character": "Alejandro Sosa", "id": 1165, "credit_id": "52fe4219c3a36847f8003e63", "cast_id": 16, "profile_path": "/pKKAqHEVKXLFVik1zWT59vaXRbk.jpg", "order": 7}, {"name": "Harris Yulin", "character": "Mel Bernstein", "id": 1166, "credit_id": "52fe4219c3a36847f8003e67", "cast_id": 17, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 8}, {"name": "\u00c1ngel Salazar", "character": "Chi Chi", "id": 1167, "credit_id": "52fe4219c3a36847f8003e6b", "cast_id": 18, "profile_path": "/cEVKX5UXroRG9yPNrxbcFUSk22Y.jpg", "order": 9}, {"name": "Arnaldo Santana", "character": "Ernie", "id": 1168, "credit_id": "52fe4219c3a36847f8003e6f", "cast_id": 19, "profile_path": "/oJqpEjkzsAaPdp7P0ZStQiNzMix.jpg", "order": 10}, {"name": "Pepe Serna", "character": "Angel", "id": 1169, "credit_id": "52fe4219c3a36847f8003e73", "cast_id": 20, "profile_path": "/geQdZHiHobopH86AKxCRVIn5kga.jpg", "order": 11}, {"name": "Michael P. Moran", "character": "Nick The Pig", "id": 1170, "credit_id": "52fe4219c3a36847f8003e77", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Al Israel", "character": "Hector The Toad", "id": 1171, "credit_id": "52fe4219c3a36847f8003e7b", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Dennis Holahan", "character": "Jerry The Banker", "id": 1172, "credit_id": "52fe4219c3a36847f8003e7f", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Mark Margolis", "character": "Alberto The Shadow", "id": 1173, "credit_id": "52fe4219c3a36847f8003e83", "cast_id": 24, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 15}, {"name": "John Carter", "character": "Vic Phillips", "id": 1070996, "credit_id": "52fe4219c3a36847f8003e87", "cast_id": 25, "profile_path": null, "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4219c3a36847f8003e1f", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 7.5, "runtime": 170}, "114": {"poster_path": "/4ufvm0uwtvilabyUP5Zo6QeraB2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 463000000, "overview": "When millionaire wheeler-dealer Edward Lewis enters a business contract with Hollywood hooker Vivian Ward, he loses his heart in the bargain in this charming romantic comedy. After Edward hires Vivian as his date for a week and gives her a Cinderella makeover, she returns the favor by mellowing the hardnosed tycoon's outlook. Can the poor prostitute and the rich capitalist live happily ever after?", "video": false, "id": 114, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Pretty Woman", "tagline": "Who knew it was so much fun to be a hooker?", "vote_count": 434, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100405", "adult": false, "backdrop_path": "/fztlIPN1EAO2kFVdJhKaXjAgjhH.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners IV", "id": 10282}], "release_date": "1990-03-23", "popularity": 0.780429280326036, "original_title": "Pretty Woman", "budget": 14000000, "cast": [{"name": "Julia Roberts", "character": "Vivian Ward", "id": 1204, "credit_id": "52fe4219c3a36847f8004051", "cast_id": 5, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Richard Gere", "character": "Edward Lewis", "id": 1205, "credit_id": "52fe4219c3a36847f8004055", "cast_id": 6, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Ralph Bellamy", "character": "James Morse", "id": 1208, "credit_id": "52fe4219c3a36847f800405d", "cast_id": 8, "profile_path": "/fjRvQxfzPw77TUMDaJHnPKirpG0.jpg", "order": 2}, {"name": "Jason Alexander", "character": "Philip Stuckey", "id": 1206, "credit_id": "52fe4219c3a36847f8004059", "cast_id": 7, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 3}, {"name": "H\u00e9ctor Elizondo", "character": "Barney Thompson", "id": 1210, "credit_id": "52fe4219c3a36847f8004061", "cast_id": 9, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 4}, {"name": "Larry Miller", "character": "Mr. Hollister", "id": 1211, "credit_id": "52fe4219c3a36847f8004065", "cast_id": 10, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 5}, {"name": "Laura San Giacomo", "character": "Kit De Luca", "id": 1212, "credit_id": "52fe4219c3a36847f8004069", "cast_id": 11, "profile_path": "/uGHG7OO1DtBWz0uztjE1MDtd0DU.jpg", "order": 6}, {"name": "Alex Hyde-White", "character": "David Morse", "id": 747, "credit_id": "52fe4219c3a36847f8004085", "cast_id": 16, "profile_path": "/n51gvejj2jPn2rLLPC0mO47uGTL.jpg", "order": 7}, {"name": "Elinor Donahue", "character": "Bridget", "id": 1209, "credit_id": "52fe4219c3a36847f8004089", "cast_id": 17, "profile_path": "/mEsZ2YLvmni9S1dUS1pTeQYhdf3.jpg", "order": 8}, {"name": "Amy Yasbeck", "character": "Elizabeth Stuckey", "id": 1219, "credit_id": "52fe4219c3a36847f800408d", "cast_id": 18, "profile_path": "/p2wXpK7wRwLre2e37Z6QQ6BvcUg.jpg", "order": 9}, {"name": "Judith Baldwin", "character": "Susan", "id": 1220, "credit_id": "52fe4219c3a36847f8004091", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Hank Azaria", "character": "Detective", "id": 5587, "credit_id": "52fe4219c3a36847f80040a1", "cast_id": 22, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 11}, {"name": "John David Carson", "character": "Mark", "id": 42162, "credit_id": "52fe4219c3a36847f80040a5", "cast_id": 23, "profile_path": "/jhw8E71tHB6fYO6wyqZdiW4KRzY.jpg", "order": 12}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4219c3a36847f800403b", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 6.6, "runtime": 119}, "115": {"poster_path": "/aHaVjVoXeNanfwUwQ92SG7tosFM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27739163, "overview": "Jeffrey \"The Dude\" Lebowski, a Los Angeles slacker who only wants to bowl and drink white Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.", "video": false, "id": 115, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Big Lebowski", "tagline": "They figured he was a lazy time wasting slacker. They were right.", "vote_count": 898, "homepage": "http://www.biglebowskibluray.com/splash.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0118715", "adult": false, "backdrop_path": "/okbbgki0sUFgDHWSInMIQgC86Pc.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1998-03-06", "popularity": 1.50286389053851, "original_title": "The Big Lebowski", "budget": 15000000, "cast": [{"name": "Jeff Bridges", "character": "The Dude", "id": 1229, "credit_id": "52fe421ac3a36847f8004131", "cast_id": 12, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "John Goodman", "character": "Walter Sobchak", "id": 1230, "credit_id": "52fe421ac3a36847f8004135", "cast_id": 13, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Theodore Donald Kerabatsos", "id": 884, "credit_id": "52fe421ac3a36847f800413d", "cast_id": 15, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Maude Lebowski", "id": 1231, "credit_id": "52fe421ac3a36847f8004139", "cast_id": 14, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "David Huddleston", "character": "Jeffrey Lebowski - The Big Lebowski", "id": 1232, "credit_id": "52fe421ac3a36847f8004141", "cast_id": 16, "profile_path": "/6cXqGzHB0zJautJVPCtbEsCtsCQ.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Brandt", "id": 1233, "credit_id": "52fe421ac3a36847f8004145", "cast_id": 17, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Tara Reid", "character": "Bunny Lebowski", "id": 1234, "credit_id": "52fe421ac3a36847f8004149", "cast_id": 18, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 6}, {"name": "Philip Moon", "character": "Woo, Treehorn Thug", "id": 1235, "credit_id": "52fe421ac3a36847f800414d", "cast_id": 19, "profile_path": "/7IB8OtD4L3k3hxzrPeBSpucODyI.jpg", "order": 7}, {"name": "Mark Pellegrino", "character": "Blond Treehorn Thug", "id": 1236, "credit_id": "52fe421ac3a36847f8004151", "cast_id": 20, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 8}, {"name": "Peter Stormare", "character": "Nihilist #1, Uli Kunkel/'Karl Hungus'", "id": 53, "credit_id": "52fe421ac3a36847f8004155", "cast_id": 21, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 9}, {"name": "Flea", "character": "Nihilist #2, Kieffer", "id": 1237, "credit_id": "52fe421ac3a36847f8004159", "cast_id": 22, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 10}, {"name": "Torsten Voges", "character": "Nihilist #3, Franz", "id": 1238, "credit_id": "52fe421ac3a36847f800415d", "cast_id": 23, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 11}, {"name": "Jimmie Dale Gilmore", "character": "Smokey", "id": 1239, "credit_id": "52fe421ac3a36847f8004161", "cast_id": 24, "profile_path": "/ylyEf3lESzWWYZMMCIoaWzfaSmY.jpg", "order": 12}, {"name": "Jack Kehler", "character": "Marty", "id": 1240, "credit_id": "52fe421ac3a36847f8004165", "cast_id": 25, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 13}, {"name": "John Turturro", "character": "Jesus Quintana", "id": 1241, "credit_id": "52fe421ac3a36847f8004169", "cast_id": 26, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 14}, {"name": "James G. Hoosier", "character": "Liam O'Brien, Quintana's Partner", "id": 1242, "credit_id": "52fe421ac3a36847f800416d", "cast_id": 27, "profile_path": "/onaoCjwtPZF7W0pIXQV2SEQcvJP.jpg", "order": 15}, {"name": "Ben Gazzara", "character": "Jackie Treehorn", "id": 856, "credit_id": "52fe421ac3a36847f8004171", "cast_id": 28, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 16}, {"name": "Sam Elliott", "character": "The Stranger", "id": 16431, "credit_id": "52fe421ac3a36847f800417b", "cast_id": 30, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 17}, {"name": "David Thewlis", "character": "Knox Harrington", "id": 11207, "credit_id": "54dae86ac3a368123b000e88", "cast_id": 38, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 18}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4219c3a36847f80040f1", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "544a99b80e0a267480004938", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.5, "runtime": 117}, "116": {"poster_path": "/cUaA5DFV8mg50O8bU9XlGe4N1i0.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "LU", "name": "Luxembourg"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85306374, "overview": "Match Point is Woody Allen\u2019s satire of the British High Society and the ambition of a young tennis instructor to enter into it. Yet when he must decide between two women - one assuring him his place in high society, and the other that would bring him far from it - palms start to sweat and a dark psychological match in his head begins.", "video": false, "id": 116, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Match Point", "tagline": "Passion Temptation Obsession", "vote_count": 247, "homepage": "http://www.matchpoint.dreamworks.com/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416320", "adult": false, "backdrop_path": "/40gCaXoyT75wuLbz1t5BwpLm0w4.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}], "release_date": "2005-05-12", "popularity": 0.927684806026164, "original_title": "Match Point", "budget": 15000000, "cast": [{"name": "Jonathan Rhys Meyers", "character": "Chris Wilton", "id": 1244, "credit_id": "530633d692514134912c121e", "cast_id": 16, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Nola Rice", "id": 1245, "credit_id": "5306347792514134972b7868", "cast_id": 17, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Chloe Hewett Wilton", "id": 1246, "credit_id": "530634b3925141348b2dd441", "cast_id": 18, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Brian Cox", "character": "Alec Hewett", "id": 1248, "credit_id": "530634cf92514134972b89f1", "cast_id": 19, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Penelope Wilton", "character": "Eleanor Hewett", "id": 1249, "credit_id": "5306357192514134942b82ca", "cast_id": 21, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 5}, {"name": "James Nesbitt", "character": "Detective Banner", "id": 34715, "credit_id": "5306371a925141348528300b", "cast_id": 23, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 6}, {"name": "Ewen Bremner", "character": "Inspector Dowd", "id": 1125, "credit_id": "5306379292514134912c7e4b", "cast_id": 24, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 7}, {"name": "Miranda Raison", "character": "Heather", "id": 195525, "credit_id": "530636ff92514134a2286ae9", "cast_id": 22, "profile_path": "/A3UbPTpbDkvM1L1UoPSvhpzJvn8.jpg", "order": 8}, {"name": "Margaret Tyzack", "character": "Mrs. Eastby", "id": 250, "credit_id": "53063905c3a3685a8f294651", "cast_id": 25, "profile_path": "/gZgVXY3WszU2dcEL0CwmdKAf7Vd.jpg", "order": 9}, {"name": "Rupert Penry-Jones", "character": "Henry", "id": 42276, "credit_id": "530b670f92514168dc000f90", "cast_id": 26, "profile_path": "/8WoMM6UnqbZuSV46uCDBqJK3Hd7.jpg", "order": 10}, {"name": "Toby Kebbell", "character": "Policeman", "id": 20286, "credit_id": "530b6754925141111700508e", "cast_id": 27, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 11}, {"name": "Alexander Armstrong", "character": "Mr. Townsend", "id": 1250, "credit_id": "530b677c925141111a004c90", "cast_id": 28, "profile_path": "/xLmK4CvFRMxsRwyvV4L5Y9fRfDy.jpg", "order": 12}, {"name": "Matthew Goode", "character": "Tom Hewett", "id": 1247, "credit_id": "532897609251413d860002b9", "cast_id": 29, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 13}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f80041b9", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.0, "runtime": 124}, "117": {"poster_path": "/qx4CDBhJDX5LQoVZ8UXPxQy5pt7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76270454, "overview": "Young Treasury Agent Elliot Ness arrives in Chicago and is determined to take down Al Capone but it's not going to be easy, because Capone has the police in his pocket. Ness meets Jimmy Malone a veteran patrolman and probably the most honorable one in the force. He asks Malone to help him get Capone but Malone warns him that if he goes after Capone, he is going to war.", "video": false, "id": 117, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "The Untouchables", "tagline": "What are you prepared to do?", "vote_count": 291, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094226", "adult": false, "backdrop_path": "/4cJv0cghFaJfepzGdOyqeNaJWYb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1987-06-02", "popularity": 0.824148742948873, "original_title": "The Untouchables", "budget": 25000000, "cast": [{"name": "Kevin Costner", "character": "Eliot Ness", "id": 1269, "credit_id": "52fe421ac3a36847f800427d", "cast_id": 14, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Sean Connery", "character": "Jim Malone", "id": 738, "credit_id": "52fe421ac3a36847f8004281", "cast_id": 15, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Al Capone", "id": 380, "credit_id": "52fe421ac3a36847f800428d", "cast_id": 18, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Andy Garc\u00eda", "character": "Agent George Stone/Giuseppe Petri", "id": 1271, "credit_id": "52fe421ac3a36847f8004289", "cast_id": 17, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 3}, {"name": "Charles Martin Smith", "character": "Agent Oscar Wallace", "id": 1270, "credit_id": "52fe421ac3a36847f8004285", "cast_id": 16, "profile_path": "/fahfWqqrdJwajrfEGmEOXQ1p9bm.jpg", "order": 4}, {"name": "Richard Bradford", "character": "Police Chief Mike Dorsett", "id": 1272, "credit_id": "52fe421ac3a36847f8004291", "cast_id": 19, "profile_path": "/fmMEdEgPa7tmPvQodngVpPRznRt.jpg", "order": 5}, {"name": "Jack Kehoe", "character": "Walter Payne", "id": 1273, "credit_id": "52fe421ac3a36847f8004295", "cast_id": 20, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 6}, {"name": "Brad Sullivan", "character": "George", "id": 1274, "credit_id": "52fe421ac3a36847f8004299", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Billy Drago", "character": "Frank Nitti", "id": 1275, "credit_id": "52fe421ac3a36847f800429d", "cast_id": 22, "profile_path": "/sAC4lsuhdueS3sBXjnlNsZbdYEq.jpg", "order": 8}, {"name": "Patricia Clarkson", "character": "Catherine Ness", "id": 1276, "credit_id": "52fe421ac3a36847f80042a1", "cast_id": 23, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 9}, {"name": "Vito D'Ambrosio", "character": "Bowtie Driver", "id": 1277, "credit_id": "52fe421ac3a36847f80042a5", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Steven Goldstein", "character": "Scoop", "id": 1278, "credit_id": "52fe421ac3a36847f80042a9", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Peter Aylward", "character": "Lt. Anderson", "id": 1279, "credit_id": "52fe421ac3a36847f80042ad", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Don Harvey", "character": "Officer Preseuski", "id": 1280, "credit_id": "52fe421ac3a36847f80042b1", "cast_id": 27, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 13}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f800423d", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 7.3, "runtime": 119}, "118": {"poster_path": "/dvHl1dYvaZRhj9Gk0ITcCHr4DIJ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 474968763, "overview": "A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.", "video": false, "id": 118, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Charlie and the Chocolate Factory", "tagline": "Willy Wonka is semi-sweet and nuts.", "vote_count": 694, "homepage": "http://chocolatefactorymovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367594", "adult": false, "backdrop_path": "/1za2EfHEdwhYE2MzbpHgmdYRgdA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2005-07-09", "popularity": 2.36367815478998, "original_title": "Charlie and the Chocolate Factory", "budget": 150000000, "cast": [{"name": "Johnny Depp", "character": "Willy Wonka", "id": 85, "credit_id": "52fe421ac3a36847f80042ff", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Freddie Highmore", "character": "Charlie Bucket", "id": 1281, "credit_id": "52fe421ac3a36847f8004303", "cast_id": 3, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 1}, {"name": "AnnaSophia Robb", "character": "Violet Beauregarde", "id": 1285, "credit_id": "52fe421ac3a36847f8004313", "cast_id": 7, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 2}, {"name": "Julia Winter", "character": "Veruca Salt", "id": 1286, "credit_id": "52fe421ac3a36847f8004317", "cast_id": 8, "profile_path": "/tOmLJwV53aSxRHxidQUQ8MhLtWC.jpg", "order": 3}, {"name": "David Kelly", "character": "Grandpa Joe", "id": 1282, "credit_id": "52fe421ac3a36847f8004307", "cast_id": 4, "profile_path": "/jxPBAzbia65yJAsNxoyGQri5Bah.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Mrs. Bucket", "id": 1283, "credit_id": "52fe421ac3a36847f800430b", "cast_id": 5, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Noah Taylor", "character": "Mr. Bucket", "id": 1284, "credit_id": "52fe421ac3a36847f800430f", "cast_id": 6, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 6}, {"name": "Jordan Fry", "character": "Mike Teavee", "id": 1290, "credit_id": "52fe421ac3a36847f800431b", "cast_id": 9, "profile_path": "/9mr4LKxtlSFLFTgQ0eFlD6yHtdI.jpg", "order": 7}, {"name": "Philip Wiegratz", "character": "Augustus Glupsch", "id": 1291, "credit_id": "52fe421ac3a36847f800431f", "cast_id": 10, "profile_path": "/KXDK5MJ7juz7H1EzEe2pDdljDP.jpg", "order": 8}, {"name": "James Fox", "character": "Mr. Salt", "id": 1292, "credit_id": "52fe421ac3a36847f8004323", "cast_id": 11, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 9}, {"name": "Franziska Troegner", "character": "Mrs. Glupsch", "id": 1293, "credit_id": "52fe421ac3a36847f8004327", "cast_id": 12, "profile_path": "/lCuV1knsruWXG3JEsyJPJkFpjII.jpg", "order": 10}, {"name": "Missi Pyle", "character": "Mrs. Beauregard", "id": 1294, "credit_id": "52fe421ac3a36847f800432b", "cast_id": 13, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 11}, {"name": "Christopher Lee", "character": "Dr. Wonka", "id": 113, "credit_id": "52fe421ac3a36847f800432f", "cast_id": 14, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 12}, {"name": "Deep Roy", "character": "Oompa Loompa", "id": 1295, "credit_id": "52fe421ac3a36847f8004333", "cast_id": 15, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 13}, {"name": "Oscar James", "character": "Shopkeeper", "id": 184997, "credit_id": "52fe421ac3a36847f8004385", "cast_id": 30, "profile_path": "/eHxVJu08olDzW8eYok6U5ETNlBk.jpg", "order": 14}, {"name": "Liz Smith", "character": "Grandma Georgina", "id": 7320, "credit_id": "52fe421ac3a36847f8004389", "cast_id": 31, "profile_path": "/rFmFjKTl9Drjv7tA687miEyn1tG.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f80042fb", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.3, "runtime": 115}, "120": {"poster_path": "/9HG6pINW1KoFTAKY3LdybkoOKAm.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 871368364, "overview": "Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.", "video": false, "id": 120, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Lord of the Rings: The Fellowship of the Ring", "tagline": "One ring to rule them all", "vote_count": 4046, "homepage": "http://www.lordoftherings.net/", "belongs_to_collection": {"backdrop_path": "/bccR2CGTWVVSZAG0yqmy3DIvhTX.jpg", "poster_path": "/p4UokEk2XnjjRTdXGe6DLYXlbI1.jpg", "id": 119, "name": "The Lord of the Rings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120737", "adult": false, "backdrop_path": "/pIUvQ9Ed35wlWhY2oU6OmwEsmzG.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "WingNut Films", "id": 11}, {"name": "The Saul Zaentz Company", "id": 5237}], "release_date": "2001-12-19", "popularity": 3.6413444075881, "original_title": "The Lord of the Rings: The Fellowship of the Ring", "budget": 93000000, "cast": [{"name": "Elijah Wood", "character": "Frodo Baggins", "id": 109, "credit_id": "52fe421ac3a36847f800448f", "cast_id": 28, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf the Grey", "id": 1327, "credit_id": "52fe421ac3a36847f8004493", "cast_id": 29, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Aragorn", "id": 110, "credit_id": "52fe421ac3a36847f8004497", "cast_id": 30, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Arwen Evenstar", "id": 882, "credit_id": "52fe421ac3a36847f800449b", "cast_id": 31, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe421ac3a36847f800449f", "cast_id": 32, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 4}, {"name": "John Rhys-Davies", "character": "Gimli", "id": 655, "credit_id": "52fe421ac3a36847f80044a3", "cast_id": 33, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 5}, {"name": "Sean Bean", "character": "Boromir", "id": 48, "credit_id": "52fe421ac3a36847f80044a7", "cast_id": 34, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 6}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe421ac3a36847f80044ab", "cast_id": 35, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 7}, {"name": "Billy Boyd", "character": "Peregrin 'Pippin' Took", "id": 1329, "credit_id": "52fe421ac3a36847f80044b3", "cast_id": 37, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 8}, {"name": "Dominic Monaghan", "character": "Meriadoc 'Merry' Brandybuck", "id": 1330, "credit_id": "52fe421ac3a36847f80044b7", "cast_id": 38, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 9}, {"name": "Sean Astin", "character": "Samwise 'Sam' Gamgee", "id": 1328, "credit_id": "52fe421ac3a36847f80044af", "cast_id": 36, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 10}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe421ac3a36847f80044d3", "cast_id": 46, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 11}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe421ac3a36847f80044bb", "cast_id": 39, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 12}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe421ac3a36847f80044bf", "cast_id": 40, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 13}, {"name": "Ian Holm", "character": "Bilbo Baggins", "id": 65, "credit_id": "52fe421ac3a36847f80044c3", "cast_id": 41, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 14}, {"name": "Craig Parker", "character": "Haldir", "id": 1332, "credit_id": "52fe421ac3a36847f80044c7", "cast_id": 42, "profile_path": "/amJPcZnpWIABjbaN5FzW5vvTIEk.jpg", "order": 15}, {"name": "Lawrence Makoare", "character": "Lurtz", "id": 1365, "credit_id": "52fe421ac3a36847f80044cb", "cast_id": 43, "profile_path": "/yVHInaWXU4ynUnNE3qa59hvsFAJ.jpg", "order": 16}, {"name": "Sala Baker", "character": "Sauron", "id": 1366, "credit_id": "52fe421ac3a36847f80044cf", "cast_id": 44, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 17}, {"name": "Sarah McLeod", "character": "Rose 'Rosie' Cotton", "id": 965278, "credit_id": "52fe421ac3a36847f80044d7", "cast_id": 47, "profile_path": "/8BFVSAmPX0sjyqelYCtJktF0Vk6.jpg", "order": 18}, {"name": "Marton Csokas", "character": "Celeborn", "id": 20982, "credit_id": "52fe421ac3a36847f80044db", "cast_id": 49, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 19}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f80043ef", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.6, "runtime": 178}, "121": {"poster_path": "/5o5fv1dHG7vWoH2hmqwihVPBoBm.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 926287400, "overview": "Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.", "video": false, "id": 121, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Lord of the Rings: The Two Towers", "tagline": "A New Power Is Rising.", "vote_count": 3346, "homepage": "http://www.lordoftherings.net/", "belongs_to_collection": {"backdrop_path": "/bccR2CGTWVVSZAG0yqmy3DIvhTX.jpg", "poster_path": "/p4UokEk2XnjjRTdXGe6DLYXlbI1.jpg", "id": 119, "name": "The Lord of the Rings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167261", "adult": false, "backdrop_path": "/dG4BmM32XJmKiwopLDQmvXEhuHB.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "WingNut Films", "id": 11}, {"name": "The Saul Zaentz Company", "id": 5237}], "release_date": "2002-12-18", "popularity": 2.99562881744059, "original_title": "The Lord of the Rings: The Two Towers", "budget": 79000000, "cast": [{"name": "Elijah Wood", "character": "Frodo Baggins", "id": 109, "credit_id": "52fe421ac3a36847f8004589", "cast_id": 13, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf the White", "id": 1327, "credit_id": "52fe421ac3a36847f800458d", "cast_id": 14, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Aragorn", "id": 110, "credit_id": "52fe421ac3a36847f8004591", "cast_id": 15, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Arwen Evenstar", "id": 882, "credit_id": "52fe421ac3a36847f8004595", "cast_id": 16, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe421ac3a36847f8004599", "cast_id": 17, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 4}, {"name": "John Rhys-Davies", "character": "Gimli / Voice of Treebeard", "id": 655, "credit_id": "52fe421ac3a36847f800459d", "cast_id": 18, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 5}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe421ac3a36847f80045a1", "cast_id": 19, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 6}, {"name": "Sean Astin", "character": "Sam Gamgee", "id": 1328, "credit_id": "52fe421ac3a36847f80045a5", "cast_id": 20, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 7}, {"name": "Billy Boyd", "character": "Peregrin 'Pippin' Took", "id": 1329, "credit_id": "52fe421ac3a36847f80045a9", "cast_id": 21, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 8}, {"name": "Dominic Monaghan", "character": "Meriadoc 'Merry' Brandybuck", "id": 1330, "credit_id": "52fe421ac3a36847f80045ad", "cast_id": 22, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 9}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe421ac3a36847f80045bd", "cast_id": 26, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 10}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe421ac3a36847f80045b1", "cast_id": 23, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 11}, {"name": "Craig Parker", "character": "Haldir", "id": 1332, "credit_id": "52fe421ac3a36847f80045b5", "cast_id": 24, "profile_path": "/amJPcZnpWIABjbaN5FzW5vvTIEk.jpg", "order": 12}, {"name": "Bernard Hill", "character": "Th\u00e9oden", "id": 1369, "credit_id": "52fe421ac3a36847f80045b9", "cast_id": 25, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 13}, {"name": "Brad Dourif", "character": "Gr\u00edma Wormtongue", "id": 1370, "credit_id": "52fe421ac3a36847f80045c1", "cast_id": 27, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 14}, {"name": "Miranda Otto", "character": "\u00c9owyn", "id": 502, "credit_id": "52fe421ac3a36847f80045c5", "cast_id": 28, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 15}, {"name": "David Wenham", "character": "Faramir", "id": 1371, "credit_id": "52fe421ac3a36847f80045c9", "cast_id": 29, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 16}, {"name": "Karl Urban", "character": "\u00c9omer", "id": 1372, "credit_id": "52fe421ac3a36847f80045cd", "cast_id": 30, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 17}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe421bc3a36847f800463d", "cast_id": 49, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 18}, {"name": "Olivia Tennet", "character": "Freda", "id": 941439, "credit_id": "52fe421bc3a36847f8004647", "cast_id": 52, "profile_path": "/hv8zCPSiju8YpVXXjv17osV2pV7.jpg", "order": 19}, {"name": "Sean Bean", "character": "Boromir", "id": 48, "credit_id": "52fe421bc3a36847f800464b", "cast_id": 53, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 20}, {"name": "Jed Brophy", "character": "Sharku / Snaga", "id": 173451, "credit_id": "534107bd0e0a2679a7001901", "cast_id": 54, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 21}, {"name": "Calum Gittins", "character": "Halteh", "id": 1356914, "credit_id": "53fb60b3c3a3687355004d0b", "cast_id": 57, "profile_path": null, "order": 22}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f8004643", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.6, "runtime": 179}, "122": {"poster_path": "/50LoR9gJhbWZ5PpoHgi8MNTYgzd.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1118888979, "overview": "Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam bring the ring closer to the heart of Mordor, the dark lord's realm.", "video": false, "id": 122, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Lord of the Rings: The Return of the King", "tagline": "The eye of the enemy is moving.", "vote_count": 3806, "homepage": "http://www.lordoftherings.net", "belongs_to_collection": {"backdrop_path": "/bccR2CGTWVVSZAG0yqmy3DIvhTX.jpg", "poster_path": "/p4UokEk2XnjjRTdXGe6DLYXlbI1.jpg", "id": 119, "name": "The Lord of the Rings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167260", "adult": false, "backdrop_path": "/8BPZO0Bf8TeAy8znF43z8soK3ys.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "WingNut Films", "id": 11}], "release_date": "2003-12-01", "popularity": 3.59737139139034, "original_title": "The Lord of the Rings: The Return of the King", "budget": 94000000, "cast": [{"name": "Elijah Wood", "character": "Frodo Baggins", "id": 109, "credit_id": "52fe421bc3a36847f80046f7", "cast_id": 12, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf the White", "id": 1327, "credit_id": "52fe421bc3a36847f80046fb", "cast_id": 13, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Aragorn", "id": 110, "credit_id": "52fe421bc3a36847f80046ff", "cast_id": 14, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Arwen Evenstar", "id": 882, "credit_id": "52fe421bc3a36847f8004703", "cast_id": 15, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe421bc3a36847f8004707", "cast_id": 16, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 4}, {"name": "John Rhys-Davies", "character": "Gimli & Treebeard (Voice)", "id": 655, "credit_id": "52fe421bc3a36847f800470b", "cast_id": 17, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 5}, {"name": "Sean Astin", "character": "Sam Gamgee", "id": 1328, "credit_id": "52fe421bc3a36847f800470f", "cast_id": 18, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 6}, {"name": "Billy Boyd", "character": "Peregrin 'Pippin' Took", "id": 1329, "credit_id": "52fe421bc3a36847f8004713", "cast_id": 19, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 7}, {"name": "Dominic Monaghan", "character": "Meriadoc 'Merry' Brandybuck", "id": 1330, "credit_id": "52fe421bc3a36847f8004717", "cast_id": 20, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 8}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe421bc3a36847f8004723", "cast_id": 23, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 9}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe421bc3a36847f800471b", "cast_id": 21, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 10}, {"name": "Ian Holm", "character": "Bilbo Baggins", "id": 65, "credit_id": "52fe421bc3a36847f8004737", "cast_id": 28, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 11}, {"name": "Bernard Hill", "character": "Th\u00e9oden, King of Rohan", "id": 1369, "credit_id": "52fe421bc3a36847f800471f", "cast_id": 22, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 12}, {"name": "Miranda Otto", "character": "\u00c9owyn", "id": 502, "credit_id": "52fe421bc3a36847f8004727", "cast_id": 24, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 13}, {"name": "David Wenham", "character": "Faramir", "id": 1371, "credit_id": "52fe421bc3a36847f800472b", "cast_id": 25, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 14}, {"name": "Karl Urban", "character": "\u00c9omer", "id": 1372, "credit_id": "52fe421bc3a36847f800472f", "cast_id": 26, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 15}, {"name": "John Noble", "character": "Denethor", "id": 1381, "credit_id": "52fe421bc3a36847f8004733", "cast_id": 27, "profile_path": "/4A2mSS9Bea5I2bNur8ZlQZXu0H9.jpg", "order": 16}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe421bc3a36847f800473b", "cast_id": 29, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 17}, {"name": "Lawrence Makoare", "character": "Gothmog & Witchking of Angmar", "id": 1365, "credit_id": "52fe421bc3a36847f800473f", "cast_id": 30, "profile_path": "/yVHInaWXU4ynUnNE3qa59hvsFAJ.jpg", "order": 18}, {"name": "Paul Norell", "character": "King of the Dead", "id": 1382, "credit_id": "52fe421bc3a36847f8004743", "cast_id": 31, "profile_path": "/dLjsu7vVkgXLLQ8QfqRb6iDRxvH.jpg", "order": 19}, {"name": "Thomas Robins", "character": "Deagol", "id": 1383, "credit_id": "52fe421bc3a36847f8004747", "cast_id": 32, "profile_path": "/p8AQeI7SXxAIjUpVEpv9q8ZxGD0.jpg", "order": 20}, {"name": "Sarah McLeod", "character": "Rosie Cotton", "id": 965278, "credit_id": "52fe421bc3a36847f80047a5", "cast_id": 49, "profile_path": "/8BFVSAmPX0sjyqelYCtJktF0Vk6.jpg", "order": 21}, {"name": "Sean Bean", "character": "Boromir", "id": 48, "credit_id": "52fe421bc3a36847f80047a9", "cast_id": 50, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 22}, {"name": "Marton Csokas", "character": "Celeborn", "id": 20982, "credit_id": "52fe421bc3a36847f80047ad", "cast_id": 58, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 23}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f80046b7", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.7, "runtime": 201}, "252607": {"poster_path": "/8wbxCF4B1ftmKEX3V7sJxxe3n1A.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": null, "video": false, "id": 252607, "genres": [{"id": 35, "name": "Comedy"}], "title": "Fiston", "tagline": null, "vote_count": 60, "homepage": null, "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2836252", "adult": false, "backdrop_path": "/5kqh2VGDh6RdwNwYPa6kFEiZXrn.jpg", "production_companies": [{"name": "uFilm", "id": 8676}, {"name": "Monkey Pack Films", "id": 8906}], "release_date": "2014-03-12", "popularity": 0.246232305255289, "original_title": "Fiston", "budget": 0, "cast": [{"name": "Kev Adams", "character": "Alex", "id": 1165008, "credit_id": "52fe4e4a9251416c9112cb27", "cast_id": 1, "profile_path": "/TxOlDGfAdsfoRd3ZmzVokK524B.jpg", "order": 0}, {"name": "Franck Dubosc", "character": "Antoine", "id": 24893, "credit_id": "52fe4e4a9251416c9112cb2b", "cast_id": 2, "profile_path": "/4YV7cy1mBF48wdrf9Std7a94Dv2.jpg", "order": 1}, {"name": "Nora Arnezeder", "character": "Sandra", "id": 453272, "credit_id": "52fe4e4a9251416c9112cb2f", "cast_id": 3, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 2}, {"name": "Val\u00e9rie Benguigui", "character": "Sophie", "id": 136489, "credit_id": "52fe4e4a9251416c9112cb33", "cast_id": 4, "profile_path": "/tHh7G038Hh9KXREgNYpTKtuZc9f.jpg", "order": 3}, {"name": "H\u00e9l\u00e9na Noguerra", "character": "Monica", "id": 587159, "credit_id": "52fe4e4a9251416c9112cb37", "cast_id": 5, "profile_path": "/lc85sxTP2Y5O83QQHpUD0Y5IoTH.jpg", "order": 4}, {"name": "Alice Isaaz", "character": "Elie", "id": 1288047, "credit_id": "52fe4e4a9251416c9112cb3b", "cast_id": 6, "profile_path": "/eh96lNQPKcwhRG38GmETkve3DzA.jpg", "order": 5}, {"name": "Laurent Bateau", "character": "Benoit Legrand", "id": 78479, "credit_id": "52fe4e4a9251416c9112cb3f", "cast_id": 7, "profile_path": "/2zrgonxMwGTMTivBUlHs6MzCMZD.jpg", "order": 6}], "directors": [{"name": "Pascal Bourdiaux", "department": "Directing", "job": "Director", "credit_id": "52fe4e4a9251416c9112cb45", "profile_path": null, "id": 113609}], "vote_average": 5.9, "runtime": 0}, "128": {"poster_path": "/gzlJkVfWV5VEG5xK25cvFGJgkDz.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 159375308, "overview": "Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", "video": false, "id": 128, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Princess Mononoke", "tagline": "The Fate Of The World Rests On The Courage Of One Warrior.", "vote_count": 574, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0119698", "adult": false, "backdrop_path": "/dB2rATwfCbsPGfRLIoluBnKdVHb.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1997-07-12", "popularity": 0.967050440382068, "original_title": "\u3082\u306e\u306e\u3051\u59eb", "budget": 26500000, "cast": [{"name": "Y\u014dji Matsuda", "character": "Ashitaka", "id": 622, "credit_id": "52fe421bc3a36847f800499d", "cast_id": 3, "profile_path": "/wZijOHyaFIVKJY9yfyIsusamFbv.jpg", "order": 0}, {"name": "Yuriko Ishida", "character": "San", "id": 20330, "credit_id": "52fe421bc3a36847f80049a1", "cast_id": 4, "profile_path": "/w2EcOwlQ9q8cfW9RQBA2RkAFtHr.jpg", "order": 1}, {"name": "Y\u016bko Tanaka", "character": "Eboshi-gozen", "id": 20331, "credit_id": "52fe421bc3a36847f80049a5", "cast_id": 5, "profile_path": "/k32uD3NkzeJHPaALp0amspIqVzc.jpg", "order": 2}, {"name": "Kaoru Kobayashi", "character": "Jiko-b\u00f4", "id": 20332, "credit_id": "52fe421bc3a36847f80049a9", "cast_id": 6, "profile_path": "/ao6ahEACiVZuQAQ2ysL7DSbRwfS.jpg", "order": 3}, {"name": "Masahiko Nishimura", "character": "Kouroku", "id": 20333, "credit_id": "52fe421bc3a36847f80049ad", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Tsunehiko Kamij\u00f4", "character": "Gonza", "id": 20334, "credit_id": "52fe421bc3a36847f80049b1", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Sumi Shimamoto", "character": "Toki", "id": 613, "credit_id": "52fe421bc3a36847f80049b5", "cast_id": 9, "profile_path": "/cB1JXMD6Eyb1ONKfsj32Lai4AfV.jpg", "order": 6}, {"name": "Tetsu Watanabe", "character": "Yama-inu", "id": 20335, "credit_id": "52fe421bc3a36847f80049b9", "cast_id": 10, "profile_path": "/6dlabJPfVvTARfd7ZWEdncfJ3SI.jpg", "order": 7}, {"name": "Mitsuru Sat\u00f4", "character": "Tatari-gami", "id": 20336, "credit_id": "52fe421bc3a36847f80049bd", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Akira Nagoya", "character": "Usi-kai", "id": 20337, "credit_id": "52fe421bc3a36847f80049c1", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Akihiro Miwa", "character": "Moro-no-kimi", "id": 20338, "credit_id": "52fe421bc3a36847f80049c5", "cast_id": 13, "profile_path": "/xQaxWhOqAZmRecv6ZratXzJVZzs.jpg", "order": 10}, {"name": "Mitsuko Mori", "character": "Hii-sama", "id": 20339, "credit_id": "52fe421bc3a36847f80049c9", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Hisaya Morishige", "character": "Okkoto-nusi", "id": 20340, "credit_id": "52fe421bc3a36847f80049cd", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Takako Fuji", "character": "Woman in Iron Town", "id": 20329, "credit_id": "52fe421bc3a36847f8004999", "cast_id": 2, "profile_path": "/nLSke54TL1eIF9LfdNsJzfwmOWv.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f8004995", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 8.0, "runtime": 134}, "129": {"poster_path": "/dL11DBPcRhWWnJcFXl9A07MrqTI.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 274925095, "overview": "Spirited Away is an Oscar winning Japanese animated film about a ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?", "video": false, "id": 129, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Spirited Away", "tagline": "The tunnel led Chihiro to a mysterious town...", "vote_count": 1131, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0245429", "adult": false, "backdrop_path": "/mnpRKVSXBX6jb56nabvmGKA0Wig.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "DENTSU Music And Entertainment", "id": 2752}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Tohokushinsha Film", "id": 12387}, {"name": "Buena Vista International", "id": 25646}, {"name": "Mitsubishi Commercial Affairs", "id": 33024}], "release_date": "2001-07-20", "popularity": 2.16478392679707, "original_title": "\u5343\u3068\u5343\u5c0b\u306e\u795e\u96a0\u3057", "budget": 15000000, "cast": [{"name": "Rumi Hiiragi", "character": "Chihiro", "id": 19587, "credit_id": "52fe421bc3a36847f8004a97", "cast_id": 3, "profile_path": "/gAjyBxRsQKYeZMkYQ6cmEj5DmHD.jpg", "order": 0}, {"name": "Miyu Irino", "character": "Haku", "id": 19588, "credit_id": "52fe421bc3a36847f8004a9b", "cast_id": 4, "profile_path": "/ietPOr7aiarxikxZE3772c9aScq.jpg", "order": 1}, {"name": "Mari Natsuki", "character": "Yubaba", "id": 19589, "credit_id": "52fe421bc3a36847f8004a9f", "cast_id": 5, "profile_path": "/oPCV2XYAJ4D1tK0OdJ2PPQbug5I.jpg", "order": 2}, {"name": "Takashi Nait\u00f4", "character": "Chihiro's Father", "id": 19590, "credit_id": "52fe421bc3a36847f8004aa3", "cast_id": 6, "profile_path": "/ljbNlt6v9a7E9uvnph2qAJ6ba55.jpg", "order": 3}, {"name": "Yasuko Sawaguchi", "character": "Chihiro's Mother", "id": 19591, "credit_id": "52fe421bc3a36847f8004aa7", "cast_id": 7, "profile_path": "/biQ1OczU65gZDVfH2ItCdjaGn7S.jpg", "order": 4}, {"name": "Tatsuya Gash\u00fbin", "character": "Aogaeru", "id": 19592, "credit_id": "52fe421bc3a36847f8004aab", "cast_id": 8, "profile_path": "/dZ5KJLxLmoXIYrG7JcXuphGESIv.jpg", "order": 5}, {"name": "Yumi Tamai", "character": "Lin", "id": 19594, "credit_id": "52fe421bc3a36847f8004aaf", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Yo Oizumi", "character": "Bandai-gaeru", "id": 40450, "credit_id": "52fe421bc3a36847f8004b07", "cast_id": 25, "profile_path": "/avSKuYQiEHYY0eJoCFiKCyhGvcL.jpg", "order": 7}, {"name": "Koba Hayashi", "character": "Kawa no Kami", "id": 554423, "credit_id": "52fe421bc3a36847f8004b0b", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Tsunehiko Kamij\u00f4", "character": "Chichiyaku", "id": 20334, "credit_id": "52fe421bc3a36847f8004b0f", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Takehiko Ono", "character": "Aniyaku", "id": 544088, "credit_id": "52fe421bc3a36847f8004b13", "cast_id": 28, "profile_path": "/kqeS1AuvIoDtJo4ZvAlbNBhtNAU.jpg", "order": 10}, {"name": "Ryunosuke Kamiki", "character": "B\u00f4h", "id": 225730, "credit_id": "52fe421bc3a36847f8004b17", "cast_id": 30, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 12}, {"name": "Bunta Sugawara", "character": "Kamaj\u00ee", "id": 119243, "credit_id": "52fe421bc3a36847f8004b1b", "cast_id": 31, "profile_path": "/w3J8EkYDHi0UQ3JPradqKBfa22V.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f8004a8d", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.9, "runtime": 125}, "245891": {"poster_path": "/sq2MmFv9sanl9PFMfbdaBLveSJ8.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73600000, "overview": "After the sudden death of his beloved wife, John Wick receives one last gift from her, a beagle puppy named Daisy, and a note imploring him not to forget how to love. But John's mourning is interrupted when his 1969 Boss Mustang catches the eye of sadistic thug Iosef Tarasov who breaks into his house and steals it, beating John unconscious in the process. Unwittingly, he has just reawakened one of the most brutal assassins the underworld has ever known.", "video": false, "id": 245891, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "John Wick", "tagline": "Don't set him off.", "vote_count": 741, "homepage": "http://www.johnwickthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2911666", "adult": false, "backdrop_path": "/mFb0ygcue4ITixDkdr7wm1Tdarx.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "87Eleven", "id": 23008}, {"name": "DefyNite Films", "id": 36259}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2014-10-24", "popularity": 7.64166781035436, "original_title": "John Wick", "budget": 20000000, "cast": [{"name": "Keanu Reeves", "character": "John Wick", "id": 6384, "credit_id": "52fe4f0cc3a36847f82b9c41", "cast_id": 6, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Michael Nyqvist", "character": "Viggo Tarasov", "id": 6283, "credit_id": "544b95150e0a2630f9000dc0", "cast_id": 20, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 1}, {"name": "Alfie Allen", "character": "Iosef Tarasov", "id": 71586, "credit_id": "52fe4f0cc3a36847f82b9c59", "cast_id": 12, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Marcus", "id": 5293, "credit_id": "52fe4f0cc3a36847f82b9c4d", "cast_id": 9, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Dean Winters", "character": "Avi", "id": 68763, "credit_id": "544ab7dec3a3680fb4004dbb", "cast_id": 14, "profile_path": "/l6yaRWtG1yjkdKo4oGk2SMBx64x.jpg", "order": 4}, {"name": "Adrianne Palicki", "character": "Ms. Perkins", "id": 88995, "credit_id": "52fe4f0cc3a36847f82b9c45", "cast_id": 7, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 5}, {"name": "Omer Barnea", "character": "Gregori", "id": 968977, "credit_id": "544b95460e0a267486006b42", "cast_id": 21, "profile_path": "/oBNeyaNaZ5hoh84XISKWt4RteLV.jpg", "order": 6}, {"name": "Toby Leonard Moore", "character": "Victor", "id": 1377438, "credit_id": "544b955bc3a3680fb4006e27", "cast_id": 22, "profile_path": "/mNmFB7OxcwLIQm3ovnHFL0PNtsN.jpg", "order": 7}, {"name": "Daniel Bernhardt", "character": "Kirill", "id": 9452, "credit_id": "544b9572c3a3686ac1000873", "cast_id": 23, "profile_path": "/gsIWvByH4lzQdTgMswQWqiAQOql.jpg", "order": 8}, {"name": "Bridget Moynahan", "character": "Helen Wick", "id": 18354, "credit_id": "52fe4f0cc3a36847f82b9c51", "cast_id": 10, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 9}, {"name": "John Leguizamo", "character": "Aureilo", "id": 5723, "credit_id": "544ab810c3a3680fbb004280", "cast_id": 19, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 10}, {"name": "Ian McShane", "character": "Winston", "id": 6972, "credit_id": "544b9592c3a3686ac1000876", "cast_id": 24, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 11}, {"name": "Bridget Regan", "character": "Addy", "id": 1222298, "credit_id": "52fe4f0cc3a36847f82b9c49", "cast_id": 8, "profile_path": "/uzVNdcPD2drMUKmT73xuKKYXBzB.jpg", "order": 12}, {"name": "Lance Reddick", "character": "Hotel Manager / Charon", "id": 129101, "credit_id": "544b95bac3a3680fb1006fd5", "cast_id": 26, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 15}, {"name": "David Patrick Kelly", "character": "Charlie", "id": 1737, "credit_id": "545198220e0a2642c2002280", "cast_id": 28, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 17}, {"name": "Clarke Peters", "character": "Harry", "id": 61011, "credit_id": "54519830c3a3680239004fbd", "cast_id": 29, "profile_path": "/7a3OTcJlncY32LDvdTjLS6bTMxh.jpg", "order": 18}, {"name": "Kevin Nash", "character": "Francis", "id": 135352, "credit_id": "5451983a0e0a263a1000545c", "cast_id": 30, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 19}, {"name": "Thomas Sadoski", "character": "Officer Jimmy", "id": 1218218, "credit_id": "552506f2c3a3687e03001016", "cast_id": 49, "profile_path": "/76x2G7gyY25krEc3OBMUWaEzgnB.jpg", "order": 20}], "directors": [{"name": "Chad Stahelski", "department": "Directing", "job": "Director", "credit_id": "52fe4f0cc3a36847f82b9c2b", "profile_path": null, "id": 40644}, {"name": "David Leitch", "department": "Directing", "job": "Director", "credit_id": "54532a3b0e0a2648cf00085b", "profile_path": "/eVSgvAIsP6mwuVbbhVb4HkVvmsu.jpg", "id": 40684}], "vote_average": 7.2, "runtime": 101}, "134": {"poster_path": "/vWGpHTmkZdKJJWpZ0ngPVHsq68l.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71000000, "overview": "In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them. On their journey they come across many comical characters and incredible situations. Based upon Homer's 'Odyssey'.", "video": false, "id": 134, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "O Brother, Where Art Thou?", "tagline": "They have a plan...but not a clue.", "vote_count": 325, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0190590", "adult": false, "backdrop_path": "/s4SmtlX13p1E2laSQqmVZQ8sYbe.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}], "release_date": "2000-12-21", "popularity": 1.34979690816522, "original_title": "O Brother, Where Art Thou?", "budget": 26000000, "cast": [{"name": "George Clooney", "character": "Everett Ulysses McGill", "id": 1461, "credit_id": "52fe421cc3a36847f8004ccb", "cast_id": 3, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "John Turturro", "character": "Pete", "id": 1241, "credit_id": "52fe421cc3a36847f8004ccf", "cast_id": 4, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Tim Blake Nelson", "character": "Delmar", "id": 1462, "credit_id": "52fe421cc3a36847f8004cd3", "cast_id": 5, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 2}, {"name": "John Goodman", "character": "Big Dan Teague", "id": 1230, "credit_id": "52fe421cc3a36847f8004cd7", "cast_id": 6, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Holly Hunter", "character": "Penny", "id": 18686, "credit_id": "52fe421cc3a36847f8004cdb", "cast_id": 7, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 4}, {"name": "Chris Thomas King", "character": "Tommy Johnson", "id": 1465, "credit_id": "52fe421cc3a36847f8004cdf", "cast_id": 8, "profile_path": "/hUeI7GRVoOqpqOeEYObuGIYTuIi.jpg", "order": 5}, {"name": "Charles Durning", "character": "Pappy O'Daniel", "id": 1466, "credit_id": "52fe421cc3a36847f8004ce3", "cast_id": 9, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 6}, {"name": "Del Pentecost", "character": "Junior O'Daniel", "id": 1467, "credit_id": "52fe421cc3a36847f8004ce7", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Michael Badalucco", "character": "George Nelson", "id": 1010, "credit_id": "52fe421cc3a36847f8004ceb", "cast_id": 11, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 8}, {"name": "J.R. Horne", "character": "Pappy's Staff", "id": 1468, "credit_id": "52fe421cc3a36847f8004cef", "cast_id": 12, "profile_path": "/kwXWf5gEZGWyqRDu5VjXAoll1Hw.jpg", "order": 9}, {"name": "Brian Reddy", "character": "Pappy's Staff", "id": 1469, "credit_id": "52fe421cc3a36847f8004cf3", "cast_id": 13, "profile_path": "/6AOxOUfyU3iDQabWL6EipPZ5DAM.jpg", "order": 10}, {"name": "Wayne Duvall", "character": "Homer Stokes", "id": 1470, "credit_id": "52fe421cc3a36847f8004cf7", "cast_id": 14, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 11}, {"name": "Ed Gale", "character": "The Little Man", "id": 1471, "credit_id": "52fe421cc3a36847f8004cfb", "cast_id": 15, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 12}, {"name": "Ray McKinnon", "character": "Vernon T. Waldrip", "id": 1472, "credit_id": "52fe421cc3a36847f8004cff", "cast_id": 16, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 13}, {"name": "Daniel von Bargen", "character": "Sheriff Cooley", "id": 1473, "credit_id": "52fe421cc3a36847f8004d03", "cast_id": 17, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 14}, {"name": "Mia Tate", "character": "Siren", "id": 1474, "credit_id": "52fe421cc3a36847f8004d07", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Musetta Vander", "character": "Siren", "id": 1475, "credit_id": "52fe421cc3a36847f8004d0b", "cast_id": 19, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 16}, {"name": "Christy Taylor", "character": "Siren", "id": 1476, "credit_id": "52fe421cc3a36847f8004d0f", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Millford Fortenberry", "character": "Pomade Vendor", "id": 1478, "credit_id": "52fe421cc3a36847f8004d13", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Frank Collison", "character": "Wash Hogwallop", "id": 1479, "credit_id": "52fe421cc3a36847f8004d17", "cast_id": 22, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 19}, {"name": "Quinn Gasaway", "character": "Boy Hogwallop", "id": 1480, "credit_id": "52fe421cc3a36847f8004d1b", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Lee Weaver", "character": "Blind Seer", "id": 1481, "credit_id": "52fe421cc3a36847f8004d1f", "cast_id": 24, "profile_path": "/8XnZM7YOWSqdUgPXNLZBWuDQ6Nl.jpg", "order": 21}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe421cc3a36847f8004cc1", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe421cc3a36847f8004cc7", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.1, "runtime": 106}, "8328": {"poster_path": "/5SwoeOUyfkS8s6aGB2bLYAL5jKR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58017783, "overview": "When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.", "video": false, "id": 8328, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up 2: The Streets", "tagline": "It's not where you're from. It's where you're at.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1023481", "adult": false, "backdrop_path": "/fGq48GZp2PLVgx9IwW5lBf4DBYJ.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Summit Entertainment", "id": 491}, {"name": "Offspring Entertainment", "id": 2378}], "release_date": "2008-02-14", "popularity": 1.20767395109235, "original_title": "Step Up 2: The Streets", "budget": 17500000, "cast": [{"name": "Briana Evigan", "character": "Andie West", "id": 54499, "credit_id": "52fe449fc3a36847f80a097b", "cast_id": 1, "profile_path": "/aCNDUEvMJYofz9EzIguET7KRfqT.jpg", "order": 0}, {"name": "Robert Hoffman", "character": "Chase Collins", "id": 58368, "credit_id": "52fe449fc3a36847f80a0a1b", "cast_id": 31, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 1}, {"name": "Will Kemp", "character": "Blake Collins", "id": 54500, "credit_id": "52fe449fc3a36847f80a097f", "cast_id": 3, "profile_path": "/cQAKDIsxoZlzp8OmEiXGUCFjxre.jpg", "order": 2}, {"name": "Cassie Ventura", "character": "Sophie Donovan", "id": 54502, "credit_id": "52fe449fc3a36847f80a0983", "cast_id": 4, "profile_path": "/ymVzJ7n4ZLuMjC9oG4S7H3htwFC.jpg", "order": 3}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "52fe449fc3a36847f80a0987", "cast_id": 5, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 4}, {"name": "Danielle Polanco", "character": "Missy", "id": 54504, "credit_id": "52fe449fc3a36847f80a098b", "cast_id": 6, "profile_path": "/uerNcZ5L350k7MAWhxMyD0kdJEn.jpg", "order": 5}, {"name": "Telisha Shaw", "character": "Felicia", "id": 54505, "credit_id": "52fe449fc3a36847f80a098f", "cast_id": 7, "profile_path": "/5cFsHGqdjpCgnTmRFDSDWNCb9E.jpg", "order": 6}, {"name": "Black Thomas", "character": "Tuck", "id": 54506, "credit_id": "52fe449fc3a36847f80a0993", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Mari Koda", "character": "Jenny Kido", "id": 1189078, "credit_id": "52fe449fc3a36847f80a0a1f", "cast_id": 32, "profile_path": "/oFrTgN8bhNmHSFY2PN5MISLa2IL.jpg", "order": 8}, {"name": "Harry Shum Jr.", "character": "Cable", "id": 232499, "credit_id": "52fe449fc3a36847f80a0a23", "cast_id": 33, "profile_path": "/aNnMmND0UYiE1J2yDA3QzHgHYdY.jpg", "order": 9}, {"name": "Hi-Hat", "character": "Businesswoman on Subway", "id": 54515, "credit_id": "54aff29bc3a3683fba0044a3", "cast_id": 34, "profile_path": "/9KIBPhKOxizRBH3YPLSSVaL2PYW.jpg", "order": 10}], "directors": [{"name": "Jon M. Chu", "department": "Directing", "job": "Director", "credit_id": "52fe449fc3a36847f80a0999", "profile_path": "/h80Zf0GR4jdmURx32hjvckJE8o5.jpg", "id": 54507}], "vote_average": 6.5, "runtime": 98}, "137": {"poster_path": "/vXjVd0Vu0MXRZnga7wEnHIIhO5B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70906973, "overview": "A narcissistic TV weatherman, along with his attractive-but-distant producer and mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.", "video": false, "id": 137, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Groundhog Day", "tagline": "He's having the worst day of his life... over, and over...", "vote_count": 546, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0107048", "adult": false, "backdrop_path": "/dTUH9xO3w6vQjcN2ictxgpnAhKm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1993-02-11", "popularity": 1.50364939814854, "original_title": "Groundhog Day", "budget": 14600000, "cast": [{"name": "Bill Murray", "character": "Phil Connors", "id": 1532, "credit_id": "52fe421dc3a36847f8004f01", "cast_id": 11, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Andie MacDowell", "character": "Rita", "id": 1533, "credit_id": "52fe421dc3a36847f8004f05", "cast_id": 12, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 1}, {"name": "Chris Elliott", "character": "Larry", "id": 1534, "credit_id": "52fe421dc3a36847f8004f09", "cast_id": 13, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 2}, {"name": "Stephen Tobolowsky", "character": "Ned Ryerson", "id": 537, "credit_id": "52fe421dc3a36847f8004f0d", "cast_id": 14, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 3}, {"name": "Brian Doyle-Murray", "character": "Buster Green", "id": 1535, "credit_id": "52fe421dc3a36847f8004f11", "cast_id": 15, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 4}, {"name": "Angela Paton", "character": "Mrs. Lancaster", "id": 1537, "credit_id": "52fe421dc3a36847f8004f15", "cast_id": 17, "profile_path": "/eJZpJyEuMT4mQ8d8tbU0addZ1kD.jpg", "order": 5}, {"name": "Rick Ducommun", "character": "Gus", "id": 1538, "credit_id": "52fe421dc3a36847f8004f19", "cast_id": 18, "profile_path": "/d1tBYjxG2VuLX6ryj5BrrGQJ0UL.jpg", "order": 6}, {"name": "Rick Overton", "character": "Ralph", "id": 1539, "credit_id": "52fe421dc3a36847f8004f1d", "cast_id": 19, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 7}, {"name": "Robin Duke", "character": "Doris, the Waitress", "id": 1540, "credit_id": "52fe421dc3a36847f8004f21", "cast_id": 20, "profile_path": "/40Jb4K4fkgwZJYy3mu55WBjAprZ.jpg", "order": 8}, {"name": "Willie Garson", "character": "Kenny", "id": 1542, "credit_id": "52fe421dc3a36847f8004f25", "cast_id": 22, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 9}, {"name": "Ken Hudson Campbell", "character": "Man in Hallway", "id": 236327, "credit_id": "52fe421dc3a36847f8004f5f", "cast_id": 34, "profile_path": "/lN9e975UkER6sRu9tKpeL2XyU5D.jpg", "order": 10}, {"name": "Michael Shannon", "character": "Fred", "id": 335, "credit_id": "52fe421dc3a36847f8004f75", "cast_id": 38, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 11}, {"name": "Harold Ramis", "character": "Neurologist", "id": 1524, "credit_id": "530ce988925141143500140b", "cast_id": 42, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 12}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe421cc3a36847f8004ec7", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 7.0, "runtime": 101}, "16523": {"poster_path": "/h6obMSAV3yi5TL3Srh8tiXpre1a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99771364, "overview": "Max imagines running away from his mom and sailing to a far-off land where large talking beasts -- Ira, Carol, Douglas, the Bull, Judith and Alexander -- crown him as their king, play rumpus, build forts and discover secret hideaways.", "video": false, "id": 16523, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Where the Wild Things Are", "tagline": "There's one in all of us.", "vote_count": 147, "homepage": "http://wherethewildthingsare.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386117", "adult": false, "backdrop_path": "/4li3yPTAwc64iGdGR2GMafLxPvF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Playtone", "id": 4171}, {"name": "Wild Things Productions", "id": 5289}], "release_date": "2009-10-16", "popularity": 0.722827217455587, "original_title": "Where the Wild Things Are", "budget": 115000000, "cast": [{"name": "Max Records", "character": "Max", "id": 80576, "credit_id": "52fe46d89251416c7508571f", "cast_id": 4, "profile_path": "/ggqpknWzy80JUgQRNPUspihCy6V.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Connie", "id": 2229, "credit_id": "52fe46d89251416c7508571b", "cast_id": 3, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "Lauren Ambrose", "character": "KW (voice)", "id": 54470, "credit_id": "52fe46d89251416c75085723", "cast_id": 5, "profile_path": "/zEdW3X6MHTDVG4jizKfVebVTmCH.jpg", "order": 2}, {"name": "James Gandolfini", "character": "Carol (voice)", "id": 4691, "credit_id": "52fe46d89251416c75085727", "cast_id": 6, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 3}, {"name": "Catherine O'Hara", "character": "Judith (voice)", "id": 11514, "credit_id": "52fe46d89251416c7508572b", "cast_id": 7, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 4}, {"name": "Forest Whitaker", "character": "Ira (voice)", "id": 2178, "credit_id": "52fe46d89251416c7508572f", "cast_id": 8, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 5}, {"name": "Mark Ruffalo", "character": "Connie's boyfriend", "id": 103, "credit_id": "52fe46d89251416c7508575d", "cast_id": 16, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 6}, {"name": "Pepita Emmerichs", "character": "Claire", "id": 113495, "credit_id": "52fe46d89251416c75085761", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Max Pfeiffer", "character": "Claire's Friend", "id": 225293, "credit_id": "52fe46d89251416c75085765", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Madeleine Greaves", "character": "Claire's Friend", "id": 187406, "credit_id": "52fe46d89251416c75085769", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Joshua Jay", "character": "Claire's Friend", "id": 187281, "credit_id": "52fe46d89251416c7508576d", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Steve Mouzakis", "character": "Teacher", "id": 187494, "credit_id": "52fe46d89251416c75085775", "cast_id": 22, "profile_path": "/z5GjGHH4h5UQOof7bfyPR05Fwl8.jpg", "order": 11}, {"name": "Paul Dano", "character": "Alexander (voice)", "id": 17142, "credit_id": "52fe46d89251416c75085779", "cast_id": 23, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 12}, {"name": "Michael Berry Jr.", "character": "The Bull (voice)", "id": 1716, "credit_id": "52fe46d89251416c7508577d", "cast_id": 24, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 13}, {"name": "Chris Cooper", "character": "Douglas (voice)", "id": 2955, "credit_id": "52fe46d89251416c75085781", "cast_id": 25, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 14}, {"name": "Ryan Corr", "character": "Claire's Friend", "id": 1213279, "credit_id": "530b1a09c3a36841f00055b8", "cast_id": 26, "profile_path": "/mK9GfkUDfu3YDcPVU4fvafKqzqW.jpg", "order": 15}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe46d89251416c75085711", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 6.4, "runtime": 101}, "141": {"poster_path": "/dGcIsUfeatHYqgp9gX6KOcYT427.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1270522, "overview": "A troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes, after narrowly escaping a bizarre accident.", "video": false, "id": 141, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Donnie Darko", "tagline": "Dark. Darker. Darko.", "vote_count": 778, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hja7IzXp6how8eD1WHriI386TGY.jpg", "poster_path": "/4Oj6ctBucsLvkbKsQMDaDXXR5cu.jpg", "id": 178106, "name": "Darko Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0246578", "adult": false, "backdrop_path": "/mqMGZIMKg2tGEkcuSduAxWAL7UF.jpg", "production_companies": [{"name": "Pandora Cinema", "id": 185}, {"name": "Flower Films", "id": 2214}, {"name": "Adam Fields Productions", "id": 3334}], "release_date": "2001-10-26", "popularity": 1.30087470628827, "original_title": "Donnie Darko", "budget": 6000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Donnie Darko", "id": 131, "credit_id": "52fe421dc3a36847f80051fb", "cast_id": 3, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Patrick Swayze", "character": "Jim Cunningham", "id": 723, "credit_id": "52fe421dc3a36847f8005217", "cast_id": 10, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Karen Pomeroy", "id": 69597, "credit_id": "52fe421dc3a36847f800526d", "cast_id": 27, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Maggie Gyllenhaal", "character": "Elizabeth Darko", "id": 1579, "credit_id": "52fe421dc3a36847f8005203", "cast_id": 5, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 3}, {"name": "Holmes Osborne", "character": "Eddie Darko", "id": 1578, "credit_id": "52fe421dc3a36847f80051ff", "cast_id": 4, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 4}, {"name": "Daveigh Chase", "character": "Samantha Darko", "id": 1580, "credit_id": "52fe421dc3a36847f8005207", "cast_id": 6, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 5}, {"name": "Mary McDonnell", "character": "Mrs. Rose Darko", "id": 1581, "credit_id": "52fe421dc3a36847f800520b", "cast_id": 7, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 6}, {"name": "James Duval", "character": "Frank", "id": 1582, "credit_id": "52fe421dc3a36847f800520f", "cast_id": 8, "profile_path": "/ydlb3Rp5vkle9codpcfBWxFmUYr.jpg", "order": 7}, {"name": "Arthur Taxier", "character": "Dr. Fisher", "id": 1583, "credit_id": "52fe421dc3a36847f8005213", "cast_id": 9, "profile_path": "/35r49niniBCW1h7lYyUYJSgma5t.jpg", "order": 8}, {"name": "Mark Hoffman", "character": "Police Officer", "id": 1584, "credit_id": "52fe421dc3a36847f800521b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Patience Cleveland", "character": "Roberty Sparrow / Grandma Death", "id": 1585, "credit_id": "52fe421dc3a36847f800521f", "cast_id": 12, "profile_path": "/hPGnL3LRYhlusBDic0M6tpqsW2J.jpg", "order": 10}, {"name": "David St. James", "character": "Bob Garland", "id": 1598, "credit_id": "52fe421dc3a36847f8005265", "cast_id": 25, "profile_path": "/cOJhnH9pJph2snOgpTMgWcWY5kz.jpg", "order": 11}, {"name": "Jazzie Mahannah", "character": "Joanie James", "id": 1599, "credit_id": "52fe421dc3a36847f8005269", "cast_id": 26, "profile_path": "/uhw5q0UlGEpaolUUODL8CKNjy8F.jpg", "order": 12}, {"name": "Jolene Purdy", "character": "Cherita Chen", "id": 20088, "credit_id": "52fe421dc3a36847f8005271", "cast_id": 28, "profile_path": "/9Tc4JXy9SrXt8NIhNwzTR9khfoq.jpg", "order": 13}, {"name": "Beth Grant", "character": "Kitty Farmer", "id": 5151, "credit_id": "52fe421dc3a36847f8005275", "cast_id": 29, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 14}, {"name": "Jena Malone", "character": "Gretchen Ross", "id": 20089, "credit_id": "52fe421dc3a36847f8005279", "cast_id": 30, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 15}, {"name": "David Moreland", "character": "Principal Cole", "id": 20090, "credit_id": "52fe421dc3a36847f800527d", "cast_id": 31, "profile_path": "/5vDvT3mBrTLE8PvU6fV4cZcCH4r.jpg", "order": 16}, {"name": "Noah Wyle", "character": "Prof. Kenneth Monnitoff", "id": 13526, "credit_id": "52fe421dc3a36847f8005281", "cast_id": 32, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 17}, {"name": "Kristina Malota", "character": "Susie Bates", "id": 20091, "credit_id": "52fe421dc3a36847f8005285", "cast_id": 33, "profile_path": "/x8kF5QFvQk5ilD9ll5QDdgmSNjN.jpg", "order": 18}, {"name": "Marina Malota", "character": "Emily Bates", "id": 20092, "credit_id": "52fe421dc3a36847f8005289", "cast_id": 34, "profile_path": "/9RuSfaUoY4lCMise2m2Z5f4Dghv.jpg", "order": 19}, {"name": "Katharine Ross", "character": "Dr. Lilian Thurman", "id": 9594, "credit_id": "52fe421dc3a36847f800528d", "cast_id": 35, "profile_path": "/KtXzfeLdU8NtwjSPOQ9dvBqQeS.jpg", "order": 20}, {"name": "Scotty Leavenworth", "character": "David", "id": 20093, "credit_id": "52fe421dc3a36847f8005291", "cast_id": 36, "profile_path": "/fMlu6DxBCqTT2lYJ8WKtNGMhPVG.jpg", "order": 21}, {"name": "Phyllis Lyons", "character": "Anne Fisher", "id": 10383, "credit_id": "52fe421dc3a36847f8005295", "cast_id": 37, "profile_path": "/gShHL20sIsP5AS2w6ZGPvGb10Hz.jpg", "order": 22}, {"name": "Gary Lundy", "character": "Sean Smith", "id": 20094, "credit_id": "52fe421dc3a36847f8005299", "cast_id": 38, "profile_path": "/oo0Ptsl4R5Bk4PibnIt6w4bTDau.jpg", "order": 23}, {"name": "Alex Greenwald", "character": "Seth Devlin", "id": 20095, "credit_id": "52fe421dc3a36847f800529d", "cast_id": 39, "profile_path": "/vQtO9O4obyCEodeJ8zNXBa6TUPJ.jpg", "order": 24}, {"name": "Stuart Stone", "character": "Ronald Fisher", "id": 156011, "credit_id": "536558890e0a2647ce001aeb", "cast_id": 42, "profile_path": "/xLAtmUL0GtXMnwCrendFcXSu1Eq.jpg", "order": 25}, {"name": "Seth Rogen", "character": "Ricky Danforth", "id": 19274, "credit_id": "54f8c79992514151c60051f1", "cast_id": 43, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 26}], "directors": [{"name": "Richard Kelly", "department": "Directing", "job": "Director", "credit_id": "52fe421dc3a36847f80051f1", "profile_path": "/nHmIALlzcsSu7Uuc4kO34mFb7k2.jpg", "id": 1577}], "vote_average": 7.4, "runtime": 113}, "142": {"poster_path": "/hmBG09xDFK1n1czJ74BvfnSlxDI.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 178043761, "overview": "Brokeback Mountain is an Ang Lee film about two modern day cowboys who meet on a shepherding job in the summer of \u201963. The two share a raw and powerful summer together that turns into a life long relationship conflicting with the lives they are supposed to live.", "video": false, "id": 142, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Brokeback Mountain", "tagline": "Love is a force of nature.", "vote_count": 304, "homepage": "http://www.brokebackmountain.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0388795", "adult": false, "backdrop_path": "/1fuUoZfDVHTFIDTl1cJKDKwRlzM.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2005-09-02", "popularity": 1.0540591199248, "original_title": "Brokeback Mountain", "budget": 14000000, "cast": [{"name": "Heath Ledger", "character": "Ennis Del Mar", "id": 1810, "credit_id": "52fe421dc3a36847f8005317", "cast_id": 11, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Jack Twist", "id": 131, "credit_id": "52fe421dc3a36847f800531b", "cast_id": 12, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Randy Quaid", "character": "Joe Aguirre", "id": 1811, "credit_id": "52fe421dc3a36847f800531f", "cast_id": 13, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 2}, {"name": "Michelle Williams", "character": "Alma Beers del Mar", "id": 1812, "credit_id": "52fe421dc3a36847f8005323", "cast_id": 14, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 3}, {"name": "Anne Hathaway", "character": "Lureen Newsome", "id": 1813, "credit_id": "52fe421dc3a36847f8005327", "cast_id": 15, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 4}, {"name": "Larry Reese", "character": "Jolly Minister", "id": 1814, "credit_id": "52fe421dc3a36847f800532b", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Valerie Planche", "character": "Waitress", "id": 1815, "credit_id": "52fe421dc3a36847f800532f", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Marty Antonini", "character": "Timmy", "id": 1816, "credit_id": "52fe421dc3a36847f8005333", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Linda Cardellini", "character": "Cassie Cartwright", "id": 1817, "credit_id": "52fe421dc3a36847f8005337", "cast_id": 19, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 8}, {"name": "Anna Faris", "character": "LaShawn", "id": 1772, "credit_id": "52fe421dc3a36847f800533b", "cast_id": 20, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 9}, {"name": "Kate Mara", "character": "Alma Jr. (Age 19)", "id": 51072, "credit_id": "52fe421dc3a36847f800533f", "cast_id": 22, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 10}, {"name": "Dave Trimble", "character": "Basque", "id": 1081513, "credit_id": "54b91926c3a36814210014c9", "cast_id": 24, "profile_path": null, "order": 11}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe421dc3a36847f80052dd", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 6.8, "runtime": 134}, "123025": {"poster_path": "/t1UAqk1Yej8rfxEUqNLFyKkcny1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Batman has not been seen for ten years. A new breed of criminal ravages Gotham City, forcing 55-year-old Bruce Wayne back into the cape and cowl. But, does he still have what it takes to fight crime in a new era?", "video": false, "id": 123025, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}], "title": "Batman: The Dark Knight Returns, Part 1", "tagline": "Old heroes never die. They just get darker.", "vote_count": 136, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/9OMTLs9efR8UYLoAD7JhGbmEurm.jpg", "id": 248534, "name": "Batman: The Dark Knight Returns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2313197", "adult": false, "backdrop_path": "/a6pB1w4lwp0WeTRQk9Q2K1F9W34.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Premiere", "id": 4811}, {"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2012-09-25", "popularity": 0.569725477696637, "original_title": "Batman: The Dark Knight Returns, Part 1", "budget": 3500000, "cast": [{"name": "Peter Weller", "character": "Batman / Bruce Wayne", "id": 27811, "credit_id": "52fe4a8bc3a368484e159843", "cast_id": 6, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Ariel Winter", "character": "Robin / Carrie Kelley", "id": 42160, "credit_id": "52fe4a8bc3a368484e159847", "cast_id": 7, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 1}, {"name": "David Selby", "character": "James Gordon", "id": 56930, "credit_id": "52fe4a8bc3a368484e15985f", "cast_id": 13, "profile_path": "/31FZf0TdcYm53S9R9q1KWNNxVaH.jpg", "order": 2}, {"name": "Wade Williams", "character": "Harvey Dent / Two-Face", "id": 51930, "credit_id": "52fe4a8bc3a368484e15984b", "cast_id": 8, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 3}, {"name": "Michael McKean", "character": "Dr. Bartholomew Wolper (voice)", "id": 21731, "credit_id": "52fe4a8bc3a368484e15984f", "cast_id": 9, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 4}, {"name": "Rob Paulsen", "character": "Jeff Adams (voice)", "id": 43125, "credit_id": "52fe4a8bc3a368484e159853", "cast_id": 10, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 5}, {"name": "Maurice LaMarche", "character": "Newscaster (voice)", "id": 34521, "credit_id": "52fe4a8bc3a368484e159857", "cast_id": 11, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 6}, {"name": "Gary Anthony Williams", "character": "Mutant Leader / Anchor Bill (voice)", "id": 54043, "credit_id": "549badddc3a3682cd700131e", "cast_id": 38, "profile_path": "/2aS1bHnkEnQErbnJl8ZzQQJSzBM.jpg", "order": 7}, {"name": "Gary Anthony Sturgis", "character": "Silk / Other Spike / Young Mutant (voice)", "id": 74614, "credit_id": "52fe4a8bc3a368484e159863", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Paget Brewster", "character": "Lana Lang (voice)", "id": 15423, "credit_id": "52fe4a8bc3a368484e159867", "cast_id": 15, "profile_path": "/rnOb1bTjYVSj868mXNWJoQYq8Rn.jpg", "order": 9}, {"name": "Carlos Alazraqui", "character": "Hernando / TV Host (voice)", "id": 59784, "credit_id": "52fe4a8bc3a368484e15986b", "cast_id": 16, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 10}, {"name": "Dee Bradley Baker", "character": "Don / Fat Mutant / Additional Voices (voice)", "id": 23680, "credit_id": "52fe4a8bc3a368484e15986f", "cast_id": 17, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 11}, {"name": "Maria Canals-Barrera", "character": "Yindel (voice)", "id": 85759, "credit_id": "52fe4a8bc3a368484e159873", "cast_id": 18, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 12}, {"name": "Catherine Cavadini", "character": "Joanie / Woman with Hot Dog (voice)", "id": 64948, "credit_id": "52fe4a8bc3a368484e159877", "cast_id": 19, "profile_path": "/o2wULQltvbzCTCJitNeT72AjklR.jpg", "order": 13}, {"name": "Townsend Coleman", "character": "Morrie / Civilian (voice)", "id": 35035, "credit_id": "52fe4a8bc3a368484e15987b", "cast_id": 20, "profile_path": "/j7PvxQ7XuOQc1ggSRHWRP6CB8CU.jpg", "order": 14}, {"name": "Grey DeLisle", "character": "Anchor Carla / Female Mutant (voice)", "id": 15761, "credit_id": "52fe4a8bc3a368484e15987f", "cast_id": 21, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 15}, {"name": "Richard Doyle", "character": "The Mayor (voice)", "id": 51063, "credit_id": "52fe4a8bc3a368484e159883", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Greg Eagles", "character": "Mackie (voice)", "id": 154106, "credit_id": "52fe4a8bc3a368484e159887", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Michael Emerson", "character": "Joker (voice)", "id": 2136, "credit_id": "52fe4a8bc3a368484e15988b", "cast_id": 24, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 18}, {"name": "Michael A. Jackson", "character": "Alfred Pennyworth (voice)", "id": 159572, "credit_id": "52fe4a8bc3a368484e15988f", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Maurice LaMarche", "character": "Dr. Willing / News Anchor (voice)", "id": 34521, "credit_id": "52fe4a8bc3a368484e159893", "cast_id": 27, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 20}, {"name": "Sam McMurray", "character": "Anchor Ted (voice)", "id": 5176, "credit_id": "52fe4a8bc3a368484e15989b", "cast_id": 29, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 22}, {"name": "Andrea Romano", "character": "Woman / Police Dispatch (voice)", "id": 34945, "credit_id": "52fe4a8bc3a368484e15989f", "cast_id": 30, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 23}, {"name": "Tara Strong", "character": "Michelle / Young Bruce Wayne / Kevin Ridley / Anchor Trish / Additional Voices (voice)", "id": 15762, "credit_id": "52fe4a8bc3a368484e1598a3", "cast_id": 31, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 24}, {"name": "James Patrick Stuart", "character": "Murray (voice)", "id": 105641, "credit_id": "52fe4a8bc3a368484e1598a7", "cast_id": 32, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 25}, {"name": "James Arnold Taylor", "character": "Mr. Hudson / Spud / Additional Voices (voice)", "id": 19506, "credit_id": "52fe4a8bc3a368484e1598ab", "cast_id": 33, "profile_path": "/rAtyfY0diWt078qQIg0IX9xxG9F.jpg", "order": 26}, {"name": "Bruce Timm", "character": "Thomas Wayne (voice)", "id": 34934, "credit_id": "52fe4a8bc3a368484e1598af", "cast_id": 34, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 27}, {"name": "Jim Wise", "character": "Femur (voice)", "id": 162630, "credit_id": "52fe4a8bc3a368484e1598b3", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Gwendoline Yeo", "character": "Lola Chong (voice)", "id": 46774, "credit_id": "52fe4a8bc3a368484e1598b7", "cast_id": 36, "profile_path": "/mTd2DqE4zDcfLDBcy6DdT6nZKyv.jpg", "order": 29}, {"name": "Danny Jacobs", "character": "Merkel (voice)", "id": 62389, "credit_id": "52fe4a8bc3a368484e1598bb", "cast_id": 37, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 30}, {"name": "Yuri Lowenthal", "character": "", "id": 127387, "credit_id": "54e73251c3a3685af9001490", "cast_id": 39, "profile_path": "/d5vbYEkrPYAiVdTee8e4xCm7Fg1.jpg", "order": 31}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4a8bc3a368484e159827", "profile_path": null, "id": 105643}], "vote_average": 7.4, "runtime": 76}, "146": {"poster_path": "/2D7kikHUHbecJGoRAspBYiqoxd6.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "TW", "name": "Taiwan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209000000, "overview": "Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.", "video": false, "id": 146, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Crouching Tiger, Hidden Dragon", "tagline": "A timeless story of strength, secrets and two warriors who would never surrender.", "vote_count": 309, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 290973, "name": "Crouching Tiger, Hidden Dragon (Collection)"}, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0190332", "adult": false, "backdrop_path": "/kgUVeWLZnBTmHwXORqOSVW5btTv.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "Columbia Pictures Film Production Asia", "id": 2798}, {"name": "Good Machine", "id": 10565}, {"name": "EDKO Film", "id": 12205}, {"name": "Asia Union Film & Entertainment Ltd.", "id": 20289}, {"name": "United China Vision", "id": 20290}, {"name": "Zoom Hunt International Productions Company Ltd.", "id": 20291}], "release_date": "2000-10-01", "popularity": 0.803993449422241, "original_title": "Wo hu cang long", "budget": 15000000, "cast": [{"name": "Michelle Yeoh", "character": "Yu Shu Lien", "id": 1620, "credit_id": "52fe421ec3a36847f80055c3", "cast_id": 7, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 0}, {"name": "Zhang Ziyi", "character": "Jen Yu (Mandarin) / Jiao Long (English)", "id": 1339, "credit_id": "52fe421ec3a36847f80055c7", "cast_id": 8, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 1}, {"name": "Chang Chen", "character": "Lo 'Dark Cloud' / Luo Xiao Hu", "id": 1622, "credit_id": "52fe421ec3a36847f80055cb", "cast_id": 9, "profile_path": "/RccYC6G6bhz3Mjpm9wGvsyKsoY.jpg", "order": 2}, {"name": "Sihung Lung", "character": "Sir Te", "id": 1623, "credit_id": "52fe421ec3a36847f80055cf", "cast_id": 10, "profile_path": "/aBb0V4IUGhu477uMS2dSONC4fHW.jpg", "order": 3}, {"name": "Cheng Pei-pei", "character": "Jade Fox", "id": 1624, "credit_id": "52fe421ec3a36847f80055d3", "cast_id": 11, "profile_path": "/m3kfKB2jsPF6Veq2WgyMq8QGu6V.jpg", "order": 4}, {"name": "Fa Zeng Li", "character": "Governor Yu", "id": 1625, "credit_id": "52fe421ec3a36847f80055d7", "cast_id": 12, "profile_path": "/rxUXIO3JdmLeDq1JTxAsc4xRdRp.jpg", "order": 5}, {"name": "Xian Gao", "character": "Bo", "id": 1626, "credit_id": "52fe421ec3a36847f80055db", "cast_id": 13, "profile_path": "/7MLWYmR9HWEJhzihA1b9ZxLJqNV.jpg", "order": 6}, {"name": "Yan Hai", "character": "Madame Yu", "id": 1627, "credit_id": "52fe421ec3a36847f80055df", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "De Ming Wang", "character": "Police Inspector Tsai", "id": 1628, "credit_id": "52fe421ec3a36847f80055e3", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Li Li", "character": "May", "id": 1629, "credit_id": "52fe421ec3a36847f80055e7", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Chow Yun-Fat", "character": "Master Li Mu Bai", "id": 1619, "credit_id": "52fe421ec3a36847f8005615", "cast_id": 25, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 10}, {"name": "Su Ying Huang", "character": "Auntie Wu", "id": 1268919, "credit_id": "5497c7eac3a3686af3006f96", "cast_id": 26, "profile_path": "/1T2cLnq1WAnptzZVFp9KH3Im0cf.jpg", "order": 11}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe421ec3a36847f80055a7", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 6.7, "runtime": 120}, "10947": {"poster_path": "/nJPhjD6HCE6vPokWKuJtc9yX196.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Troy (Zac Efron), the popular captain of the basketball team, and Gabriella (Vanessa Anne Hudgens), the brainy and beautiful member of the academic club, break all the rules of East High society when they secretly audition for the leads in the school's musical. As they reach for the stars and follow their dreams, everyone learns about acceptance, teamwork, and being yourself. And it's all set to fun tunes and very cool dance moves!", "video": false, "id": 10947, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "High School Musical", "tagline": "", "vote_count": 168, "homepage": "http://tv.disney.go.com/disneychannel/originalmovies/highschoolmusical/index.html", "belongs_to_collection": {"backdrop_path": "/t1mwGPJi3NkwMeyeUHr9zlQhlTo.jpg", "poster_path": "/dXIgM9sEWIkUfRH8GZUKHv1t5n.jpg", "id": 87253, "name": "High School Musical Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0475293", "adult": false, "backdrop_path": "/fY4SLH4MLU8D2XPqV4jjTBW6dmV.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2006-01-20", "popularity": 0.920504216581989, "original_title": "High School Musical", "budget": 4200000, "cast": [{"name": "Zac Efron", "character": "Troy Bolton", "id": 29222, "credit_id": "52fe43d79251416c75020297", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Gabriella Montez", "id": 67599, "credit_id": "52fe43d79251416c7502029b", "cast_id": 2, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "Ashley Tisdale", "character": "Sharpay Evans", "id": 67600, "credit_id": "52fe43d79251416c7502029f", "cast_id": 3, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 2}, {"name": "Lucas Grabeel", "character": "Ryan Evans", "id": 67601, "credit_id": "52fe43d79251416c750202a3", "cast_id": 4, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 3}, {"name": "Corbin Bleu", "character": "Chad", "id": 67602, "credit_id": "52fe43d79251416c750202a7", "cast_id": 5, "profile_path": "/1fTGgTuAa2EdvVJEj8Vu5PGifAn.jpg", "order": 4}, {"name": "Monique Coleman", "character": "Taylor McKessie", "id": 180279, "credit_id": "5449940ac3a3680fb4002680", "cast_id": 14, "profile_path": "/phGefy73dHXXisjZi0Egb0zUS3h.jpg", "order": 5}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c750202ad", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 5.6, "runtime": 98}, "149": {"poster_path": "/8Pt7hlu7fkc5IIR0VZ2kNGY8sT4.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Childhood friends Tetsuo and Kaneda are pulled into the post-apocalyptic underworld of Neo-Tokyo and forced to fight for their very survival. Kaneda is a bike gang leader, and Tetsuo is a member of a tough motorcycle crew who becomes involved in a covert government project called Akira. But a bloody battle ensues when Kaneda sets out to save his friend.", "video": false, "id": 149, "genres": [{"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Akira", "tagline": "Neo-Tokyo is about to E.X.P.L.O.D.E.", "vote_count": 243, "homepage": "http://www.bandaivisual.co.jp/akira/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0094625", "adult": false, "backdrop_path": "/wtwn4pSFZhm665cQIHFmBjmgMEC.jpg", "production_companies": [{"name": "Bandai Visual Company", "id": 528}, {"name": "TMS Entertainment", "id": 10919}, {"name": "Akira Committee Company Ltd.", "id": 10920}, {"name": "Kodansha", "id": 6999}, {"name": "Mainichi Broadcasting System (MBS)", "id": 3363}, {"name": "Sumitomo Corporation", "id": 10921}, {"name": "Toho Company", "id": 882}, {"name": "Tokyo Movie Shinsha (TMS)", "id": 9155}], "release_date": "1988-07-16", "popularity": 0.589984920977884, "original_title": "Akira", "budget": 10000000, "cast": [{"name": "Mitsuo Iwata", "character": "Sh\u00f4tar\u00f4 Kaneda (voice)", "id": 1678, "credit_id": "52fe421ec3a36847f80057b3", "cast_id": 4, "profile_path": "/uiCp6G7TR3kHtxQQNNLiVEiXadU.jpg", "order": 0}, {"name": "Nozomu Sasaki", "character": "Tetsuo Shima (voice)", "id": 1679, "credit_id": "52fe421ec3a36847f80057b7", "cast_id": 5, "profile_path": "/8U9bbTScsKpicR2piN4GsLfbOsh.jpg", "order": 1}, {"name": "Mami Koyama", "character": "Kei (voice)", "id": 1680, "credit_id": "52fe421ec3a36847f80057bb", "cast_id": 6, "profile_path": "/vqdcJrnO2VMMxyvg7j5Pft0dhmn.jpg", "order": 2}, {"name": "Tessh\u014d Genda", "character": "Ry\u00fbsaku (voice)", "id": 1681, "credit_id": "52fe421ec3a36847f80057bf", "cast_id": 7, "profile_path": "/ahCru7z0zyaV6RV1uCP0HBNLRoC.jpg", "order": 3}, {"name": "Hiroshi Ohtake", "character": "Nezu (voice)", "id": 1682, "credit_id": "52fe421ec3a36847f80057c3", "cast_id": 8, "profile_path": "/kjPYDilt85Zcuhrg89nhyaQoXv5.jpg", "order": 4}, {"name": "K\u014dichi Kitamura", "character": "Priestess Miyako, Council A (voice)", "id": 1683, "credit_id": "52fe421ec3a36847f80057c7", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Yuriko Fuchizaki", "character": "Kaori (voice)", "id": 1314101, "credit_id": "535ceed8c3a36830a9003d65", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Masaaki \u014ckura", "character": "Yamagata (voice)", "id": 1685, "credit_id": "52fe421ec3a36847f80057cf", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Takeshi Kusao", "character": "Kai (voice)", "id": 1686, "credit_id": "52fe421ec3a36847f80057d3", "cast_id": 12, "profile_path": "/8IG3iCbOJGQPINr2Xud3ple1cVQ.jpg", "order": 9}, {"name": "Kazuhiro Kamifuji", "character": "Masaru (No. 27) (voice)", "id": 1687, "credit_id": "52fe421ec3a36847f80057d7", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Tatsuhiko Nakamura", "character": "Takashi (No. 26) (voice)", "id": 1688, "credit_id": "52fe421ec3a36847f80057db", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Fukue It\u00f4", "character": "Kiyoko (No. 25) (voice)", "id": 1689, "credit_id": "52fe421ec3a36847f80057df", "cast_id": 15, "profile_path": null, "order": 12}], "directors": [{"name": "Katsuhiro \u014ctomo", "department": "Directing", "job": "Director", "credit_id": "52fe421ec3a36847f80057a3", "profile_path": "/d3TPHQkTqAe3NeZZ280TqBa2x43.jpg", "id": 185}], "vote_average": 7.8, "runtime": 124}, "106646": {"poster_path": "/wAgdJRx4uZ0u4uzu34NOMvtjLAR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 392000694, "overview": "A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.", "video": false, "id": 106646, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Wolf of Wall Street", "tagline": "EARN. SPEND. PARTY.", "vote_count": 1765, "homepage": "http://www.thewolfofwallstreet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0993846", "adult": false, "backdrop_path": "/dYtAyg4vD88hIfrR1VKDnVGhnE6.jpg", "production_companies": [{"name": "EMJAG Productions", "id": 14654}, {"name": "Paramount Pictures", "id": 4}, {"name": "Red Granite Pictures", "id": 19177}, {"name": "Appian Way", "id": 562}, {"name": "Sikelia Productions", "id": 23243}], "release_date": "2013-12-25", "popularity": 3.50738078676463, "original_title": "The Wolf of Wall Street", "budget": 100000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Jordan Belfort", "id": 6193, "credit_id": "52fe4a6dc3a36847f81cd4e7", "cast_id": 8, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Donnie Azoff", "id": 21007, "credit_id": "52fe4a6dc3a36847f81cd4eb", "cast_id": 9, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Margot Robbie", "character": "Naomi Lapaglia", "id": 234352, "credit_id": "52fe4a6dc3a36847f81cd519", "cast_id": 20, "profile_path": "/cdc4z3uOFUoM7VNq7FqLUVDalwf.jpg", "order": 2}, {"name": "Kyle Chandler", "character": "Agent Patrick Denham", "id": 3497, "credit_id": "52fe4a6dc3a36847f81cd4ff", "cast_id": 14, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 3}, {"name": "Rob Reiner", "character": "Max Belfort", "id": 3026, "credit_id": "52fe4a6dc3a36847f81cd50b", "cast_id": 17, "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "order": 4}, {"name": "Matthew McConaughey", "character": "Mark Hanna", "id": 10297, "credit_id": "52fe4a6dc3a36847f81cd4ef", "cast_id": 10, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 5}, {"name": "Jon Bernthal", "character": "Brad", "id": 19498, "credit_id": "52fe4a6dc3a36847f81cd4f3", "cast_id": 11, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 6}, {"name": "Kenneth Choi", "character": "Chester Ming", "id": 41561, "credit_id": "52fe4a6dc3a36847f81cd535", "cast_id": 29, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 7}, {"name": "P. J. Byrne", "character": "Nicky Koskoff ('Rugrat')", "id": 1211946, "credit_id": "52fe4a6dc3a36847f81cd561", "cast_id": 39, "profile_path": "/n0j7SKO9rcmAPrcB5LrHafSzZG1.jpg", "order": 8}, {"name": "Brian Sacca", "character": "Robbie Feinberg ('Pinhead')", "id": 1332746, "credit_id": "53a5e796c3a3687a2b001aa2", "cast_id": 41, "profile_path": "/s1SW3C6Ge1drV1b1yewW19oPJrV.jpg", "order": 9}, {"name": "Henry Zebrowski", "character": "Alden Kupferberg ('Sea Otter')", "id": 1332747, "credit_id": "53a5e7bbc3a3687a2b001aa8", "cast_id": 42, "profile_path": "/n8Zc31Jzv8qdT9cfQBih3lGofsM.jpg", "order": 10}, {"name": "Jon Favreau", "character": "Manny Riskin", "id": 15277, "credit_id": "52fe4a6dc3a36847f81cd4f7", "cast_id": 12, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 11}, {"name": "Cristin Milioti", "character": "Teresa Petrillo", "id": 204392, "credit_id": "52fe4a6dc3a36847f81cd4fb", "cast_id": 13, "profile_path": "/mf0qpQCRYkWc17CTA03Ar5ELpHj.jpg", "order": 12}, {"name": "Joanna Lumley", "character": "Aunt Emma", "id": 34901, "credit_id": "52fe4a6dc3a36847f81cd529", "cast_id": 24, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 13}, {"name": "Jake Hoffman", "character": "Steve Madden", "id": 134235, "credit_id": "52fe4a6dc3a36847f81cd539", "cast_id": 31, "profile_path": "/6WdRhZyEk8S0stnzdAFtbhEVEms.jpg", "order": 14}, {"name": "Ethan Suplee", "character": "Toby Welch", "id": 824, "credit_id": "52fe4a6dc3a36847f81cd503", "cast_id": 15, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 15}, {"name": "Jean Dujardin", "character": "Jean-Jacques Handali", "id": 56024, "credit_id": "52fe4a6dc3a36847f81cd50f", "cast_id": 18, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 16}, {"name": "Jon Bernthal", "character": "Brad", "id": 19498, "credit_id": "5496dfa49251416e1e005c80", "cast_id": 43, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 17}, {"name": "Christine Ebersole", "character": "Leah Belfort", "id": 4003, "credit_id": "5496dff692514130fc004d66", "cast_id": 44, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 18}, {"name": "Shea Whigham", "character": "Captain Ted Beecham", "id": 74242, "credit_id": "5496e0669251417162001463", "cast_id": 45, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 19}, {"name": "Katarina Cas", "character": "Chantalle", "id": 549981, "credit_id": "5496e092c3a3681153004320", "cast_id": 46, "profile_path": "/bgbjA8ZkmN3CGXo24Lgd5TInHDP.jpg", "order": 20}, {"name": "P. J. Byrne", "character": "Rugrat", "id": 1211946, "credit_id": "5496e0b792514132ed0047b7", "cast_id": 47, "profile_path": "/n0j7SKO9rcmAPrcB5LrHafSzZG1.jpg", "order": 21}, {"name": "Kenneth Choi", "character": "Chester Ming", "id": 41561, "credit_id": "5496e0d19251413f750047be", "cast_id": 48, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 22}, {"name": "Bo Dietl", "character": "Bo Dietl", "id": 131119, "credit_id": "5496e171c3a3686ae90064d9", "cast_id": 53, "profile_path": "/p4g45Hu2GX8YgzMsAv4DnPvVZjt.jpg", "order": 27}, {"name": "Jon Spinogatti", "character": "Nicholas the Butler", "id": 191278, "credit_id": "5496e1b79251417a81003f52", "cast_id": 54, "profile_path": null, "order": 28}, {"name": "Aya Cash", "character": "Janet", "id": 133451, "credit_id": "5496e1cbc3a3686af3005ba9", "cast_id": 55, "profile_path": "/ihZqcurACgV6NDy95pkwQ29OawL.jpg", "order": 29}, {"name": "Rizwan Manji", "character": "Kalil", "id": 1223718, "credit_id": "5496e1db9251413f750047d6", "cast_id": 56, "profile_path": "/yB9w540vNe4pwa3ptvO1haDUKWy.jpg", "order": 30}, {"name": "Stephanie Kurtzuba", "character": "Kimmie Belzer", "id": 204651, "credit_id": "5496e1f5925141716200148a", "cast_id": 57, "profile_path": "/r7qC9kiDXwXnvTeDB6ULg0lkNI0.jpg", "order": 31}, {"name": "J.C. MacKenzie", "character": "Lucas Solomon", "id": 63296, "credit_id": "5496e21b9251416e1e005cae", "cast_id": 58, "profile_path": "/wnwpYi4jKbYZeWTFI8bVorTp9aA.jpg", "order": 32}, {"name": "Ashlie Atkinson", "character": "Rochelle Applebaum", "id": 77264, "credit_id": "5496e23092514130fc004da8", "cast_id": 59, "profile_path": "/h0ykP84QXTDLxfzizdQaFXZzzY8.jpg", "order": 33}, {"name": "Stephen Kunken", "character": "Jerry Fogel", "id": 79991, "credit_id": "5496e2519251413f750047e6", "cast_id": 60, "profile_path": "/a0phhoaFskKNICOLjniYpIO9072.jpg", "order": 34}, {"name": "Ted Griffin", "character": "Agent Hughes", "id": 1886, "credit_id": "5496e26f9251417162001497", "cast_id": 61, "profile_path": null, "order": 35}, {"name": "Sandra Nelson", "character": "Aliyah Farran", "id": 78017, "credit_id": "5496e292c3a368115300433f", "cast_id": 62, "profile_path": "/jkotsFvrKWWanvlZbU0vwpyUGxc.jpg", "order": 36}, {"name": "Dan Bittner", "character": "Rothschild Broker #1", "id": 1152008, "credit_id": "54c4151192514124c8006064", "cast_id": 63, "profile_path": null, "order": 37}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4a6dc3a36847f81cd4bf", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.9, "runtime": 180}, "152": {"poster_path": "/dlQxDFDj6crYfDWRuoK7bq6Q2bF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139000000, "overview": "When a destructive space entity is spotted approaching Earth, Admiral Kirk resumes command of the Starship Enterprise in order to intercept, examine, and hopefully stop it.", "video": false, "id": 152, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek: The Motion Picture", "tagline": "The human adventure is just beginning.", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079945", "adult": false, "backdrop_path": "/w9iSKX1GSlaPPASW7jSFkFkkDnz.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1979-12-06", "popularity": 0.889925001604088, "original_title": "Star Trek: The Motion Picture", "budget": 35000000, "cast": [{"name": "William Shatner", "character": "Captain James T. Kirk", "id": 1748, "credit_id": "52fe421fc3a36847f8005a69", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Mr. Spock", "id": 1749, "credit_id": "52fe421fc3a36847f8005a6d", "cast_id": 6, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "George Takei", "character": "Lt. Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe421fc3a36847f8005a79", "cast_id": 9, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe421fc3a36847f8005a75", "cast_id": 8, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "Walter Koenig", "character": "Lt. Pavel Chekov", "id": 1754, "credit_id": "52fe421fc3a36847f8005a81", "cast_id": 11, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Lt. Cmdr. Uhura", "id": 1753, "credit_id": "52fe421fc3a36847f8005a7d", "cast_id": 10, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe421fc3a36847f8005a71", "cast_id": 7, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 6}, {"name": "Majel Barrett", "character": "Dr. Christine Chapel", "id": 1755, "credit_id": "52fe421fc3a36847f8005a85", "cast_id": 12, "profile_path": "/6esZeIlIdrCnoGkAggRAJ8FWs7Z.jpg", "order": 7}, {"name": "Stephen Collins", "character": "Capt./Cmdr. Willard Decker", "id": 1756, "credit_id": "52fe421fc3a36847f8005a89", "cast_id": 13, "profile_path": "/eYUtj7K9pzgvARQlU8Fn4ybyGAj.jpg", "order": 8}, {"name": "Persis Khambatta", "character": "Lieutenant Ilia", "id": 1757, "credit_id": "52fe421fc3a36847f8005a8d", "cast_id": 14, "profile_path": "/fpXboRL524smwVeEtOBSKx62Gz3.jpg", "order": 9}, {"name": "Grace Lee Whitney", "character": "CPO Janice Rand", "id": 1759, "credit_id": "52fe421fc3a36847f8005a91", "cast_id": 15, "profile_path": "/h1uisJQaVHhNCYqvxgx3VevGNtA.jpg", "order": 10}, {"name": "Mark Lenard", "character": "Klingon Captain", "id": 1820, "credit_id": "52fe421fc3a36847f8005add", "cast_id": 28, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 11}, {"name": "Billy Van Zandt", "character": "Alien Boy", "id": 168423, "credit_id": "52fe421fc3a36847f8005ae1", "cast_id": 29, "profile_path": "/14Pk9JIIjNdu0d3vxBWsBRzjrSy.jpg", "order": 12}, {"name": "Roger Aaron Brown", "character": "Epsilon Technician", "id": 44054, "credit_id": "52fe421fc3a36847f8005ae5", "cast_id": 30, "profile_path": "/mQ2mEx7EteO2zdOFUzu1shDi7E.jpg", "order": 13}, {"name": "Gary Faga", "character": "Airlock Technician", "id": 178145, "credit_id": "52fe421fc3a36847f8005ae9", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Franklyn Seales", "character": "Crew Member", "id": 72658, "credit_id": "52fe421fc3a36847f8005aed", "cast_id": 32, "profile_path": null, "order": 15}], "directors": [{"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005a53", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 6.0, "runtime": 132}, "153": {"poster_path": "/5T8VvuFTdaawKLJk34i69Utaw7o.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9, "overview": "Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.", "video": false, "id": 153, "genres": [{"id": 18, "name": "Drama"}], "title": "Lost in Translation", "tagline": "Everyone wants to be found.", "vote_count": 495, "homepage": "http://www.lost-in-translation.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0335266", "adult": false, "backdrop_path": "/iJP2ogeM5YpZyUOkmCiZ5UXWyBf.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}], "release_date": "2003-09-18", "popularity": 1.18134242607306, "original_title": "Lost in Translation", "budget": 4000000, "cast": [{"name": "Bill Murray", "character": "Bob Harris", "id": 1532, "credit_id": "52fe421fc3a36847f8005b35", "cast_id": 2, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Charlotte", "id": 1245, "credit_id": "52fe421fc3a36847f8005b39", "cast_id": 3, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Anna Faris", "character": "Kelly", "id": 1772, "credit_id": "52fe421fc3a36847f8005b45", "cast_id": 6, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "John", "id": 1771, "credit_id": "52fe421fc3a36847f8005b41", "cast_id": 5, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "Akiko Takeshita", "character": "Ms. Kawasaki", "id": 1770, "credit_id": "52fe421fc3a36847f8005b3d", "cast_id": 4, "profile_path": "/d9JbzYZJIwXdd5DEuGqwJv6HUwR.jpg", "order": 4}, {"name": "Kazuyoshi Minamimagoe", "character": "Press Agent", "id": 1773, "credit_id": "52fe421fc3a36847f8005b49", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Kazuko Shibata", "character": "Press Agent", "id": 1774, "credit_id": "52fe421fc3a36847f8005b4d", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Take", "character": "Press Agent", "id": 1775, "credit_id": "52fe421fc3a36847f8005b51", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Fumihiro Hayashi", "character": "Charlie", "id": 1785, "credit_id": "52fe421fc3a36847f8005b97", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Hiroko Kawasaki", "character": "Hiroko", "id": 1786, "credit_id": "52fe421fc3a36847f8005b9b", "cast_id": 22, "profile_path": "/vSZDgzRwCsJeC6YTjX35GeVlMSy.jpg", "order": 9}, {"name": "Daikon", "character": "Bambie", "id": 1787, "credit_id": "52fe421fc3a36847f8005b9f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Catherine Lambert", "character": "Jazz Singer", "id": 75491, "credit_id": "52fe421fc3a36847f8005baf", "cast_id": 26, "profile_path": "/luN3iUUebKCnjjKiOXQtC6v7Jnx.jpg", "order": 11}, {"name": "Daiamondo Yukai", "character": "Commercial Director", "id": 1276607, "credit_id": "52fe421fc3a36847f8005bb3", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Akiko Mon\u00f4", "character": "", "id": 237167, "credit_id": "54c1d182c3a368792c002a5b", "cast_id": 28, "profile_path": null, "order": 13}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005b31", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 7.2, "runtime": 102}, "154": {"poster_path": "/7VKpj4Xl3hTzgAS3xpVuOyqNnSv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96800000, "overview": "Admiral James T. Kirk is feeling old; the prospect of accompanying his old ship the Enterprise on a two week cadet cruise is not making him feel any younger. But the training cruise becomes a a life or death struggle when Khan escapes from years of exile and captures the power of creation itself.", "video": false, "id": 154, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek II: The Wrath of Khan", "tagline": "At the end of the universe lies the beginning of vengeance.", "vote_count": 216, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084726", "adult": false, "backdrop_path": "/gih4L6m9u1yB3PGwyJxB5wjzbqR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1982-06-03", "popularity": 0.815742308032791, "original_title": "Star Trek II: The Wrath of Khan", "budget": 12000000, "cast": [{"name": "William Shatner", "character": "Admiral James T. Kirk", "id": 1748, "credit_id": "52fe421fc3a36847f8005c03", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Captain Spock", "id": 1749, "credit_id": "52fe421fc3a36847f8005c07", "cast_id": 6, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe421fc3a36847f8005c0b", "cast_id": 7, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe421fc3a36847f8005c0f", "cast_id": 8, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe421fc3a36847f8005c13", "cast_id": 9, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe421fc3a36847f8005c17", "cast_id": 10, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Cmdr. Pavel Chekov", "id": 1754, "credit_id": "52fe421fc3a36847f8005c1b", "cast_id": 11, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "Ricardo Montalban", "character": "Khan Noonien Singh", "id": 1793, "credit_id": "52fe421fc3a36847f8005c1f", "cast_id": 12, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 7}, {"name": "Bibi Besch", "character": "Dr. Carol Marcus", "id": 1794, "credit_id": "52fe421fc3a36847f8005c23", "cast_id": 13, "profile_path": "/3Np4qyewSj56jbYgqQnHcl7C7xT.jpg", "order": 8}, {"name": "Merritt Butrick", "character": "Dr. David Marcus", "id": 1795, "credit_id": "52fe421fc3a36847f8005c27", "cast_id": 14, "profile_path": "/mczHE9Z15Uo7C1VCiwaB9yP1DBD.jpg", "order": 9}, {"name": "Kirstie Alley", "character": "Lt. Saavik", "id": 1796, "credit_id": "52fe421fc3a36847f8005c2b", "cast_id": 15, "profile_path": "/fQ1EOV3dazf05uhrEVqMN2S3T0U.jpg", "order": 10}, {"name": "Paul Winfield", "character": "Captain Clark Terrell", "id": 1818, "credit_id": "52fe421fc3a36847f8005c65", "cast_id": 25, "profile_path": "/6oc80tWtRg8pRAPXOhV3FQBvBR5.jpg", "order": 11}], "directors": [{"name": "Nicholas Meyer", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005bed", "profile_path": "/iDQ5NP10dTa7e0WyY16cELdAid4.jpg", "id": 1788}], "vote_average": 7.1, "runtime": 113}, "155": {"poster_path": "/1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1001921825, "overview": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", "video": false, "id": 155, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Dark Knight", "tagline": "Why So Serious?", "vote_count": 5490, "homepage": "http://thedarkknight.warnerbros.com/dvdsite/", "belongs_to_collection": {"backdrop_path": "/xfKot7lqaiW4XpL5TtDlVBA9ei9.jpg", "poster_path": "/bqS2lMgGkuodIXtDILFWTSWDDpa.jpg", "id": 263, "name": "The Dark Knight Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0468569", "adult": false, "backdrop_path": "/nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Legendary Pictures", "id": 923}, {"name": "DC Comics", "id": 429}, {"name": "Syncopy", "id": 9996}], "release_date": "2008-07-18", "popularity": 5.03367286532616, "original_title": "The Dark Knight", "budget": 185000000, "cast": [{"name": "Christian Bale", "character": "Bruce Wayne", "id": 3894, "credit_id": "52fe4220c3a36847f8005d17", "cast_id": 35, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Heath Ledger", "character": "Joker", "id": 1810, "credit_id": "52fe421fc3a36847f8005cbf", "cast_id": 3, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "Harvey Dent", "id": 6383, "credit_id": "52fe4220c3a36847f8005cf1", "cast_id": 15, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Michael Caine", "character": "Alfred", "id": 3895, "credit_id": "52fe4220c3a36847f8005cf9", "cast_id": 17, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Maggie Gyllenhaal", "character": "Rachel Dawes", "id": 1579, "credit_id": "52fe421fc3a36847f8005cd5", "cast_id": 8, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 4}, {"name": "Gary Oldman", "character": "Lt. James Gordon", "id": 64, "credit_id": "52fe4220c3a36847f8005cf5", "cast_id": 16, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 5}, {"name": "Morgan Freeman", "character": "Lucius Fox", "id": 192, "credit_id": "52fe4220c3a36847f8005d13", "cast_id": 34, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 6}, {"name": "Ron Dean", "character": "Wuertz", "id": 57597, "credit_id": "52fe4220c3a36847f8005d65", "cast_id": 228, "profile_path": "/a910oOgeYR0IxutHf3GeyDNw3qY.jpg", "order": 7}, {"name": "Cillian Murphy", "character": "Scarecrow", "id": 2037, "credit_id": "52fe4220c3a36847f8005cfd", "cast_id": 20, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 8}, {"name": "Chin Han", "character": "Lau", "id": 101015, "credit_id": "52fe4220c3a36847f8005d61", "cast_id": 227, "profile_path": "/xvMCVDvrQ2WlAB2LmkG6HAzlYag.jpg", "order": 9}, {"name": "Nestor Carbonell", "character": "Mayor of Gotham", "id": 21316, "credit_id": "52fe4220c3a36847f8005d59", "cast_id": 225, "profile_path": "/yALf2koeUAc2UNoT5o0hQO6Akzn.jpg", "order": 10}, {"name": "Eric Roberts", "character": "Salvatore Maroni", "id": 21315, "credit_id": "52fe4220c3a36847f8005d69", "cast_id": 229, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 11}, {"name": "Ritchie Coster", "character": "Chechen", "id": 13939, "credit_id": "52fe4220c3a36847f8005d71", "cast_id": 232, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 12}, {"name": "Anthony Michael Hall", "character": "Engel", "id": 1904, "credit_id": "52fe4220c3a36847f8005d55", "cast_id": 224, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 13}, {"name": "Keith Szarabajka", "character": "Stephen", "id": 87957, "credit_id": "52fe4220c3a36847f8005d75", "cast_id": 233, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 14}, {"name": "Colin McFarlane", "character": "Loeb", "id": 128386, "credit_id": "52fe4220c3a36847f8005d79", "cast_id": 234, "profile_path": "/7jzQFnBDALhTclwIohM78bGoFzF.jpg", "order": 15}, {"name": "Melinda McGraw", "character": "Barbara Gordon", "id": 58692, "credit_id": "52fe4220c3a36847f8005d6d", "cast_id": 230, "profile_path": "/6FlZftxpIQ0PoJKvtEL9lSbgI63.jpg", "order": 16}, {"name": "William Fichtner", "character": "The bank manager", "id": 886, "credit_id": "52fe4220c3a36847f8005d5d", "cast_id": 226, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 17}, {"name": "David Dastmalchian", "character": "Joker's henchman", "id": 83854, "credit_id": "52fe4220c3a36847f8005d51", "cast_id": 223, "profile_path": "/kl4bxkrd9yc6oPYZGs4jKHLI3f2.jpg", "order": 18}, {"name": "William Smillie", "character": "Happy", "id": 1334139, "credit_id": "53aa62f00e0a2646c2001238", "cast_id": 235, "profile_path": "/peKlOZUvgfeA9lBVzYTnS1GBCIv.jpg", "order": 19}, {"name": "Danny Goldring", "character": "Grumpy", "id": 16477, "credit_id": "53aa63a00e0a2646d20011d3", "cast_id": 236, "profile_path": "/nufdKuciAuJ1vzwXnVQcUDeAsoA.jpg", "order": 20}, {"name": "Michael Stoyanov", "character": "Dopey", "id": 1196130, "credit_id": "53aa63de0e0a2646d80030b5", "cast_id": 237, "profile_path": "/hywQ6MpqibcyS0h5HaOek39tEn1.jpg", "order": 21}, {"name": "Beatrice Rosen", "character": "Natascha", "id": 101014, "credit_id": "53aa646e0e0a2646d20011ec", "cast_id": 238, "profile_path": "/897MnsgQUwXuN0OfMwY19BMFULl.jpg", "order": 22}, {"name": "Matthew Leitch", "character": "Prisoner on Ferry", "id": 141770, "credit_id": "53d7244c0e0a260337000c0c", "cast_id": 239, "profile_path": "/94OPadjJLEp4FzeXndx24mUyF0o.jpg", "order": 23}, {"name": "Amit Shah", "character": "Party Guest (uncredited)", "id": 1209046, "credit_id": "551bf00d9251414af6003148", "cast_id": 240, "profile_path": null, "order": 24}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005cbb", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.9, "runtime": 152}, "245916": {"poster_path": "/zVFVvN2AHXQi3AwHLXauoraMXA3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A reporter becomes the target of a vicious smear campaign that drives him to the point of suicide after he exposes the CIA's role in arming Contra rebels in Nicaragua and importing cocaine into California. Based on the true story of journalist Gary Webb.", "video": false, "id": 245916, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Kill the Messenger", "tagline": "Can you keep a National Secret?", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1216491", "adult": false, "backdrop_path": "/4DDTUMwQpq0Qli6IYPTqSV5GNb7.jpg", "production_companies": [{"name": "The Combine", "id": 27450}, {"name": "Bluegrass Films", "id": 27451}], "release_date": "2014-10-10", "popularity": 1.91669955925239, "original_title": "Kill the Messenger", "budget": 0, "cast": [{"name": "Jeremy Renner", "character": "Gary Webb", "id": 17604, "credit_id": "52fe4f0dc3a36847f82b9e91", "cast_id": 8, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Mary Elizabeth Winstead", "character": "Anna Simons", "id": 17628, "credit_id": "52fe4f0dc3a36847f82b9e8d", "cast_id": 7, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 1}, {"name": "Michael Sheen", "character": "Fred Weil", "id": 3968, "credit_id": "52fe4f0dc3a36847f82b9e95", "cast_id": 9, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 2}, {"name": "Ray Liotta", "character": "John Cullen", "id": 11477, "credit_id": "52fe4f0dc3a36847f82b9e99", "cast_id": 10, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Robert Patrick", "character": "Ronny Quail", "id": 418, "credit_id": "52fe4f0dc3a36847f82b9ea1", "cast_id": 12, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 4}, {"name": "Andy Garc\u00eda", "character": "Norwin Meneses", "id": 1271, "credit_id": "52fe4f0dc3a36847f82b9ea5", "cast_id": 13, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 5}, {"name": "Paz Vega", "character": "Coral Baca", "id": 3627, "credit_id": "52fe4f0dc3a36847f82b9ea9", "cast_id": 14, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 6}, {"name": "Michael Kenneth Williams", "character": "Ricky Ross", "id": 39390, "credit_id": "54a070e8925141212700220a", "cast_id": 15, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 7}, {"name": "Rosemarie DeWitt", "character": "Sue Webb", "id": 14892, "credit_id": "54b1a22c925141747200292a", "cast_id": 16, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 8}, {"name": "Tim Blake Nelson", "character": "Alan Fenster", "id": 1462, "credit_id": "54b1a2559251412ae7001be6", "cast_id": 17, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 9}, {"name": "Barry Pepper", "character": "Russell Dodson", "id": 12834, "credit_id": "54b1a2759251417472002931", "cast_id": 18, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 10}, {"name": "Oliver Platt", "character": "Jerry Ceppos", "id": 17485, "credit_id": "54b1a565c3a3684138002309", "cast_id": 19, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 11}, {"name": "Richard Schiff", "character": "Richard Zuckerman", "id": 31028, "credit_id": "54f0aefbc3a3686b9a006350", "cast_id": 20, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 12}, {"name": "Jena Sims", "character": "Quail's Girlfriend", "id": 1081736, "credit_id": "54f0af4e92514179680085d5", "cast_id": 21, "profile_path": "/gZ6aRQG9IoSuxCpNs3fazk0dcZi.jpg", "order": 13}, {"name": "Joshua Close", "character": "Rich Kline (as Josh Close)", "id": 81096, "credit_id": "54f0afb2c3a3686d5e007e10", "cast_id": 22, "profile_path": "/3JirJGndNoladUiIACKyMLlAzSE.jpg", "order": 14}, {"name": "Yul Vazquez", "character": "Danilo Blandon", "id": 75604, "credit_id": "54f0b013c3a36869e5005fae", "cast_id": 23, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 15}], "directors": [{"name": "Michael Cuesta", "department": "Directing", "job": "Director", "credit_id": "52fe4f0dc3a36847f82b9e6b", "profile_path": "/n3iTN6e1Bq13WlalqddULpsnEUn.jpg", "id": 84931}], "vote_average": 6.6, "runtime": 112}, "157": {"poster_path": "/uSIdBRd6YfAkTN6kNR9nin6xQ9u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87000000, "overview": "Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock's body.", "video": false, "id": 157, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek III: The Search for Spock", "tagline": "A dying planet. A fight for life.", "vote_count": 130, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0088170", "adult": false, "backdrop_path": "/tkdgoNMc0yaQnsCPYZms6zMT8nN.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1984-05-31", "popularity": 0.732902028429522, "original_title": "Star Trek III: The Search for Spock", "budget": 18000000, "cast": [{"name": "William Shatner", "character": "Admiral James T. Kirk", "id": 1748, "credit_id": "52fe4220c3a36847f8005e6d", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Capt. Spock/Elevator Voice", "id": 1749, "credit_id": "52fe4220c3a36847f8005e71", "cast_id": 6, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4220c3a36847f8005e75", "cast_id": 7, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4220c3a36847f8005e79", "cast_id": 8, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Hikaru Sulu", "id": 1752, "credit_id": "52fe4220c3a36847f8005e7d", "cast_id": 9, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe4220c3a36847f8005e81", "cast_id": 10, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Pavel Chekov", "id": 1754, "credit_id": "52fe4220c3a36847f8005e85", "cast_id": 11, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "Merritt Butrick", "character": "Dr. David Marcus", "id": 1795, "credit_id": "52fe4220c3a36847f8005e89", "cast_id": 12, "profile_path": "/mczHE9Z15Uo7C1VCiwaB9yP1DBD.jpg", "order": 7}, {"name": "Christopher Lloyd", "character": "Cmdr. Kruge", "id": 1062, "credit_id": "52fe4220c3a36847f8005e8d", "cast_id": 13, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 8}, {"name": "Robin Curtis", "character": "Lt. Saavik", "id": 1819, "credit_id": "52fe4220c3a36847f8005e91", "cast_id": 14, "profile_path": "/pHOmW0od8GD3PUC1Yd1jBDr2aD4.jpg", "order": 9}, {"name": "Mark Lenard", "character": "Ambassador Sarek", "id": 1820, "credit_id": "52fe4220c3a36847f8005e95", "cast_id": 15, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 10}, {"name": "Carl Steven", "character": "Spock...Age 9", "id": 1829, "credit_id": "52fe4220c3a36847f8005ecf", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Vadia Potenza", "character": "Spock...Age 13", "id": 1830, "credit_id": "52fe4220c3a36847f8005ed3", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Stephen Manley", "character": "Spock...Age 17", "id": 1831, "credit_id": "52fe4220c3a36847f8005ed7", "cast_id": 27, "profile_path": "/71TPGLlBDPLm3KRZEF74Dxj4zIE.jpg", "order": 13}, {"name": "Joe W. Davis", "character": "Spock at age 25", "id": 1832, "credit_id": "52fe4220c3a36847f8005edb", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Judith Anderson", "character": "Vulcan High Priestess", "id": 3362, "credit_id": "52fe4220c3a36847f8005edf", "cast_id": 29, "profile_path": "/ryTVWN7XI2WejLsFhicfx3yJ6y9.jpg", "order": 15}], "directors": [{"name": "Leonard Nimoy", "department": "Directing", "job": "Director", "credit_id": "52fe4220c3a36847f8005e57", "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "id": 1749}], "vote_average": 6.3, "runtime": 105}, "161": {"poster_path": "/o0h76DVXvk5OKjmNez5YY0GODC2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 450717150, "overview": "Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.", "video": false, "id": 161, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ocean's Eleven", "tagline": "Are you in or out?", "vote_count": 1859, "homepage": "http://www.warnerbros.co.uk/movies/oceans11/index.html", "belongs_to_collection": {"backdrop_path": "/vxmFb03PyjycekffLqXqFibbCzx.jpg", "poster_path": "/CZs07c4vgMdPXqtVu7y8yhCdFx.jpg", "id": 304, "name": "Ocean's Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240772", "adult": false, "backdrop_path": "/wrI5n29GgneQvgFOd79V1FxTBHb.jpg", "production_companies": [{"name": "WV Films II", "id": 24939}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Section Eight", "id": 129}], "release_date": "2001-12-06", "popularity": 1.36997113121475, "original_title": "Ocean's Eleven", "budget": 85000000, "cast": [{"name": "George Clooney", "character": "Danny Ocean", "id": 1461, "credit_id": "52fe4220c3a36847f8006167", "cast_id": 11, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Rusty Ryan", "id": 287, "credit_id": "52fe4220c3a36847f800616b", "cast_id": 12, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Matt Damon", "character": "Linus Caldwell", "id": 1892, "credit_id": "52fe4220c3a36847f800616f", "cast_id": 13, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 2}, {"name": "Andy Garc\u00eda", "character": "Terry Benedict", "id": 1271, "credit_id": "52fe4220c3a36847f8006173", "cast_id": 14, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 3}, {"name": "Julia Roberts", "character": "Tess Ocean", "id": 1204, "credit_id": "52fe4220c3a36847f8006177", "cast_id": 15, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 4}, {"name": "Casey Affleck", "character": "Virgil Malloy", "id": 1893, "credit_id": "52fe4220c3a36847f800617b", "cast_id": 16, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 5}, {"name": "Scott Caan", "character": "Turk Malloy", "id": 1894, "credit_id": "52fe4220c3a36847f800617f", "cast_id": 17, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "Carl Reiner", "character": "Saul Bloom", "id": 1895, "credit_id": "52fe4220c3a36847f8006183", "cast_id": 18, "profile_path": "/mG0YcJ72Dw0jwFvg44lncv21mut.jpg", "order": 7}, {"name": "Don Cheadle", "character": "Basher Tarr (uncredited)", "id": 1896, "credit_id": "52fe4220c3a36847f8006187", "cast_id": 19, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 8}, {"name": "Bernie Mac", "character": "Frank Catton", "id": 1897, "credit_id": "52fe4220c3a36847f800618b", "cast_id": 20, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 9}, {"name": "Elliott Gould", "character": "Reuben Tishkoff", "id": 827, "credit_id": "52fe4220c3a36847f800618f", "cast_id": 21, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 10}, {"name": "Eddie Jemison", "character": "Livingston Dell", "id": 1898, "credit_id": "52fe4220c3a36847f8006193", "cast_id": 22, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 11}, {"name": "Shaobo Qin", "character": "Yen", "id": 1900, "credit_id": "52fe4220c3a36847f8006197", "cast_id": 23, "profile_path": "/d12Ni5dBctraHwkPsmLl6gPt3PR.jpg", "order": 12}, {"name": "Scott L. Schwartz", "character": "Bulldog, the Bruiser", "id": 1906, "credit_id": "52fe4220c3a36847f800619b", "cast_id": 24, "profile_path": "/7bm9Ra2DHkEu9NqHfAi0PcGQBz0.jpg", "order": 13}, {"name": "Scott Beringer", "character": "Head Goon", "id": 240770, "credit_id": "52fe4220c3a36847f800619f", "cast_id": 25, "profile_path": "/d18wj4LWoN1za5EfvNz3zZwaMnl.jpg", "order": 14}, {"name": "Henry Silva", "character": "Boxing Spectator", "id": 14731, "credit_id": "52fe4220c3a36847f80061a3", "cast_id": 26, "profile_path": "/bIQ27e769EbNtMBdU1xSoaGgNd3.jpg", "order": 15}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4220c3a36847f800612d", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.9, "runtime": 116}, "162": {"poster_path": "/kgLTB53HinftRRwhft7yrUOclDC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53000000, "overview": "Edward Scissorhands is a classic Tim Burton and Johnny Depp film about a small suburban town that receives a visit from a castaway unfinished science experiment named Edward. A satire on the normality of Middle-America and their fear of outsiders. A magical fairytale story of loneliness, learning, and love; that will make you laugh, curse, and cry.", "video": false, "id": 162, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Edward Scissorhands", "tagline": "His scars run deep.", "vote_count": 720, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099487", "adult": false, "backdrop_path": "/8XVovs4mLYZmmr2pgU5KYXkohcP.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1990-12-05", "popularity": 1.10481055583641, "original_title": "Edward Scissorhands", "budget": 20000000, "cast": [{"name": "Johnny Depp", "character": "Edward Scissorhands", "id": 85, "credit_id": "52fe4221c3a36847f80061f9", "cast_id": 5, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Kim", "id": 1920, "credit_id": "52fe4221c3a36847f8006253", "cast_id": 25, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Dianne Wiest", "character": "Peg", "id": 1902, "credit_id": "52fe4221c3a36847f80061fd", "cast_id": 6, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 2}, {"name": "Alan Arkin", "character": "Bill", "id": 1903, "credit_id": "52fe4221c3a36847f8006201", "cast_id": 7, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 3}, {"name": "Anthony Michael Hall", "character": "Jim", "id": 1904, "credit_id": "52fe4221c3a36847f8006205", "cast_id": 8, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 4}, {"name": "Vincent Price", "character": "The Inventor", "id": 1905, "credit_id": "52fe4221c3a36847f8006209", "cast_id": 9, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 5}, {"name": "Kathy Baker", "character": "Joyce", "id": 1907, "credit_id": "52fe4221c3a36847f8006213", "cast_id": 11, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 6}, {"name": "Robert Oliveri", "character": "Kevin", "id": 1908, "credit_id": "52fe4221c3a36847f8006217", "cast_id": 12, "profile_path": "/hakmz3osPPPI1zPXaQjXxkj2avn.jpg", "order": 7}, {"name": "Conchata Ferrell", "character": "Helen", "id": 1909, "credit_id": "52fe4221c3a36847f800621b", "cast_id": 13, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 8}, {"name": "Caroline Aaron", "character": "Marge", "id": 1910, "credit_id": "52fe4221c3a36847f800621f", "cast_id": 14, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 9}, {"name": "Dick Anthony Williams", "character": "Officer Allen", "id": 1911, "credit_id": "52fe4221c3a36847f8006223", "cast_id": 15, "profile_path": "/daCKfIQ0iOgWIGQLiuxpVgNqXL4.jpg", "order": 10}, {"name": "O-Lan Jones", "character": "Esmeralda", "id": 1912, "credit_id": "52fe4221c3a36847f8006227", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Susan Blommaert", "character": "Tinka", "id": 1913, "credit_id": "52fe4221c3a36847f800622b", "cast_id": 17, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 12}, {"name": "Linda Perri", "character": "Cissy", "id": 1914, "credit_id": "52fe4221c3a36847f800622f", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "John Davidson", "character": "Host TV", "id": 1915, "credit_id": "52fe4221c3a36847f8006233", "cast_id": 19, "profile_path": "/4XH4wdu5JLHtaFDWKsZizNsj7kW.jpg", "order": 14}, {"name": "Biff Yeager", "character": "George", "id": 1916, "credit_id": "52fe4221c3a36847f8006237", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Donna Pieroni", "character": "Blonde / TV", "id": 181154, "credit_id": "52fe4221c3a36847f8006263", "cast_id": 28, "profile_path": "/q3Utf3piRYRrQs7ZSjpjxUB9zQn.jpg", "order": 16}, {"name": "Nick Carter", "character": "", "id": 82602, "credit_id": "55221aba92514171cb002411", "cast_id": 29, "profile_path": "/EwGA9BeBp31GxS6ZzHnOIMFGVZ.jpg", "order": 17}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4220c3a36847f80061e3", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 7.0, "runtime": 105}, "8355": {"poster_path": "/crAf8b9gFpcdvY7majL8xWzTbem.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 886686817, "overview": "Times are changing for moody mammoth Manny, motor mouthed sloth Sid and crafty saber-toothed tiger Diego in this third installment of the beloved computer-animated children's franchise. Life heats up for our heroes when they meet some new and none-too-friendly neighbors: the mighty dinosaurs.", "video": false, "id": 8355, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age: Dawn of the Dinosaurs", "tagline": "The sub-zero heroes are back, on an incredible adventure... for the ages.", "vote_count": 758, "homepage": "http://www.iceagemovie.com/us/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1080016", "adult": false, "backdrop_path": "/2ZkYXWejAwpkFkNnOY6nQYcJSPn.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 26162}, {"name": "Twentieth Century Fox Animation", "id": 11749}], "release_date": "2009-07-01", "popularity": 1.9521165414639, "original_title": "Ice Age: Dawn of the Dinosaurs", "budget": 90000000, "cast": [{"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe44a2c3a36847f80a13a5", "cast_id": 2, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe44a2c3a36847f80a13a9", "cast_id": 3, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe44a2c3a36847f80a13ad", "cast_id": 4, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Ellie (voice)", "id": 15758, "credit_id": "52fe44a2c3a36847f80a13b1", "cast_id": 5, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Simon Pegg", "character": "Buck (voice)", "id": 11108, "credit_id": "52fe44a2c3a36847f80a13b5", "cast_id": 6, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 4}, {"name": "Seann William Scott", "character": "Crash (voice)", "id": 57599, "credit_id": "52fe44a2c3a36847f80a13b9", "cast_id": 7, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 5}, {"name": "Karen Disher", "character": "Scratte (voice)", "id": 87055, "credit_id": "52fe44a2c3a36847f80a13cd", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Chris Wedge", "character": "Scrat (voice)", "id": 5713, "credit_id": "52fe44a2c3a36847f80a13d1", "cast_id": 12, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 7}, {"name": "Kristen Wiig", "character": "Pudgy Beaver Mom (voice)", "id": 41091, "credit_id": "52fe44a2c3a36847f80a13d5", "cast_id": 13, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 8}, {"name": "Eunice Cho", "character": "Madison (Diatryma Girl) (voice)", "id": 1239793, "credit_id": "53aebf0f0e0a265989004741", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Harrison Fahn", "character": "Glypto Boy (voice)", "id": 60734, "credit_id": "53aebf4e0e0a26598c004728", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Maile Flanagan", "character": "Aardvark Mom (voice)", "id": 23211, "credit_id": "53aebf850e0a265989004754", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Jason Fricchione", "character": "Adult Molehog Male (voice)", "id": 1214603, "credit_id": "53aebf9a0e0a265980004707", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Bill Hader", "character": "Gazelle (voice)", "id": 19278, "credit_id": "53aebfb60e0a26598000470d", "cast_id": 20, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 13}, {"name": "Kelly Keaton", "character": "Molehog Mom / Shovelmouth Mom (voice)", "id": 95691, "credit_id": "53aebfce0e0a26598000470f", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Joey King", "character": "Beaver Girl (voice)", "id": 125025, "credit_id": "53aebfe50e0a265983004689", "cast_id": 22, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 15}, {"name": "Lucas Leguizamo", "character": "Aardvark Boy / Beaver Kid #2 (voice)", "id": 1335112, "credit_id": "53aec01d0e0a26597500475c", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Clea Lewis", "character": "Start Mom (voice)", "id": 186319, "credit_id": "53aec03a0e0a265975004762", "cast_id": 24, "profile_path": "/ypjVHbVYASpArT9NjU3B8q9aLyT.jpg", "order": 17}, {"name": "Jane Lynch", "character": "Diatryma Mom (voice)", "id": 43775, "credit_id": "53aec0510e0a26597900472c", "cast_id": 25, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 18}, {"name": "Regan Mizrahi", "character": "additional voices (adr loop group)", "id": 451877, "credit_id": "52fe44a2c3a36847f80a13c9", "cast_id": 10, "profile_path": "/cFrnYQzSNiPPGQtrgOzb0dXeVwa.jpg", "order": 19}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe44a2c3a36847f80a13a1", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.4, "runtime": 94}, "164": {"poster_path": "/c95lbDwL5WT8PV9DZsdSvRtXKNA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9500000, "overview": "Fortune hunter Holly Golightly finds herself captivated by aspiring writer Paul Varjak, who's moved into her building on a wealthy woman's dime. As romance blooms between Paul and Holly, Doc Golightly shows up on the scene, revealing Holly's past.", "video": false, "id": 164, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Breakfast at Tiffany's", "tagline": "Audrey Hepburn plays that daring, darling Holly Golightly to a new high in entertainment delight!", "vote_count": 233, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054698", "adult": false, "backdrop_path": "/haHULz59jdG4OVmqHjZ01z7HEit.jpg", "production_companies": [{"name": "Jurow-Shepherd", "id": 11355}], "release_date": "1961-10-05", "popularity": 1.1137074730196, "original_title": "Breakfast at Tiffany's", "budget": 2500000, "cast": [{"name": "Audrey Hepburn", "character": "Holly Golightly", "id": 1932, "credit_id": "52fe4221c3a36847f8006399", "cast_id": 6, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 0}, {"name": "George Peppard", "character": "Paul \u201eFred\u201c Varjak", "id": 1933, "credit_id": "52fe4221c3a36847f800639d", "cast_id": 7, "profile_path": "/by01dePJ5Q0UXZu5eYvQD1kAwZ4.jpg", "order": 1}, {"name": "Patricia Neal", "character": "2-E (Mrs. Failenson)", "id": 1934, "credit_id": "52fe4221c3a36847f80063a1", "cast_id": 8, "profile_path": "/1VPdXeUnI6RcCzLtKv8uTHNB690.jpg", "order": 2}, {"name": "Buddy Ebsen", "character": "Doc Golightly", "id": 1935, "credit_id": "52fe4221c3a36847f80063a5", "cast_id": 9, "profile_path": "/7tgVdVH4mXqOgTeazYAZYL2zQMk.jpg", "order": 3}, {"name": "Martin Balsam", "character": "O. J. Berman", "id": 1936, "credit_id": "52fe4221c3a36847f80063a9", "cast_id": 10, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 4}, {"name": "Mickey Rooney", "character": "Mr. Yunioshi", "id": 1937, "credit_id": "52fe4221c3a36847f80063ad", "cast_id": 11, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 5}, {"name": "Jos\u00e9 Luis de Villalonga", "character": "Jos\u00e9 da Silva Pereira", "id": 1942, "credit_id": "52fe4221c3a36847f80063c9", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "John McGiver", "character": "Tiffany's salesman", "id": 1943, "credit_id": "52fe4221c3a36847f80063cd", "cast_id": 17, "profile_path": "/4SPN4He1egZ60aIMNuh7tArx21x.jpg", "order": 7}, {"name": "Alan Reed", "character": "Sally Tomato", "id": 1944, "credit_id": "52fe4221c3a36847f80063d1", "cast_id": 18, "profile_path": "/8s1O9NJNM8kZQCmlvfYdFUiyODt.jpg", "order": 8}, {"name": "Dorothy Whitney", "character": "Mag Wildwood", "id": 1945, "credit_id": "52fe4221c3a36847f80063d5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Beverly Powers", "character": "Dancer at nightclub", "id": 1946, "credit_id": "52fe4221c3a36847f80063d9", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Stanley Adams", "character": "Rusty Trawler", "id": 1947, "credit_id": "52fe4221c3a36847f80063dd", "cast_id": 21, "profile_path": "/lHMryF9N5VfyLj6fx07haIaD6mH.jpg", "order": 11}, {"name": "Claude Stroud", "character": "Sid Arbuck", "id": 1948, "credit_id": "52fe4221c3a36847f80063e1", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Elvia Allman", "character": "Librarian", "id": 1949, "credit_id": "52fe4221c3a36847f80063e5", "cast_id": 23, "profile_path": "/nHTxHcykh8mjEUq2xv7ce2KIzx.jpg", "order": 13}, {"name": "Orangey", "character": "Cat", "id": 1950, "credit_id": "52fe4221c3a36847f80063e9", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Blake Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f800637d", "profile_path": "/tQ13izDBcErAV2qSz9KGjQbV5p9.jpg", "id": 1927}], "vote_average": 7.1, "runtime": 110}, "165": {"poster_path": "/k5dzvCQkXU2CAhLtlj9BHE7xmyK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 332000000, "overview": "Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.", "video": false, "id": 165, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Back to the Future Part II", "tagline": "Roads? Where we're going, we don't need roads!", "vote_count": 1275, "homepage": "http://www.bttf.com/", "belongs_to_collection": {"backdrop_path": "/c9C9Pg2QctyjZHRmS0P8rZg1OTA.jpg", "poster_path": "/51J1AroyQ45V8DCJnfItFUaKFxL.jpg", "id": 264, "name": "Back to the Future Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096874", "adult": false, "backdrop_path": "/snLFUFzWUZCdYkAbhZlaGJxiY3I.jpg", "production_companies": [{"name": "U-Drive Productions", "id": 20448}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1989-11-20", "popularity": 0.937353095010958, "original_title": "Back to the Future Part II", "budget": 40000000, "cast": [{"name": "Michael J. Fox", "character": "Marty McFly Sr. / Marty McFly Jr. / Marlene McFly", "id": 521, "credit_id": "52fe4221c3a36847f80064b3", "cast_id": 25, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Dr. Emmett Brown", "id": 1062, "credit_id": "52fe4221c3a36847f800648f", "cast_id": 15, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Lorraine", "id": 1063, "credit_id": "52fe4221c3a36847f8006493", "cast_id": 16, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Elisabeth Shue", "character": "Jennifer Parker / Jennifer McFly", "id": 1951, "credit_id": "52fe4221c3a36847f8006497", "cast_id": 18, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 3}, {"name": "James Tolkan", "character": "Mr. Strickland", "id": 1072, "credit_id": "52fe4221c3a36847f800649b", "cast_id": 19, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 4}, {"name": "Jeffrey Weissman", "character": "George McFly", "id": 1952, "credit_id": "52fe4221c3a36847f800649f", "cast_id": 20, "profile_path": "/rJJ066KTyGPNmu13eu2279DQrAw.jpg", "order": 5}, {"name": "Casey Siemaszko", "character": "3-D", "id": 1953, "credit_id": "52fe4221c3a36847f80064a3", "cast_id": 21, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 6}, {"name": "Billy Zane", "character": "Match", "id": 1954, "credit_id": "52fe4221c3a36847f80064a7", "cast_id": 22, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 7}, {"name": "Darlene Vogel", "character": "Spike", "id": 1955, "credit_id": "52fe4221c3a36847f80064ab", "cast_id": 23, "profile_path": "/2drohDdLkHY2K8lMG4b79DGXFdp.jpg", "order": 8}, {"name": "Elijah Wood", "character": "Video Game Boy", "id": 109, "credit_id": "52fe4221c3a36847f80064af", "cast_id": 24, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 9}, {"name": "Jason Scott Lee", "character": "Whitey", "id": 58319, "credit_id": "52fe4221c3a36847f80064c3", "cast_id": 28, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 10}, {"name": "Ricky Dean Logan", "character": "Data", "id": 68851, "credit_id": "52fe4221c3a36847f80064c7", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Charles Fleischer", "character": "Terry", "id": 12826, "credit_id": "52fe4221c3a36847f80064cb", "cast_id": 30, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 12}, {"name": "J.J. Cohen", "character": "Skinhead", "id": 11673, "credit_id": "52fe4221c3a36847f80064cf", "cast_id": 31, "profile_path": "/cEmMWxPQ1PfpEYU1NjNb2F4XSJo.jpg", "order": 13}, {"name": "Flea", "character": "Needles", "id": 1237, "credit_id": "52fe4221c3a36847f80064d3", "cast_id": 32, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 14}, {"name": "Joe Flaherty", "character": "Western Union Man", "id": 59196, "credit_id": "52fe4221c3a36847f80064d7", "cast_id": 33, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 15}, {"name": "Neil Ross", "character": "Biff Tannen Museum Narrator (voice)", "id": 64951, "credit_id": "52fe4221c3a36847f80064db", "cast_id": 34, "profile_path": "/dgcStU8y6YccpzuLeG0U0bC5xvC.jpg", "order": 16}, {"name": "Al White", "character": "Dad", "id": 73337, "credit_id": "5407d0bac3a368581b00054a", "cast_id": 50, "profile_path": "/61EO8MnW7KNjjawBykQrFMxwZWX.jpg", "order": 17}, {"name": "Thomas F. Wilson", "character": "Biff Tannen / Griff", "id": 1065, "credit_id": "54f75bff9251412405002bc6", "cast_id": 51, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 18}, {"name": "E. Casanova Evans", "character": "'Michael Jackson' Video Waiter", "id": 1434975, "credit_id": "54f75c7ac3a36833bb0024d5", "cast_id": 52, "profile_path": null, "order": 19}, {"name": "Jay Koch", "character": "'Ronald Reagan' Video Waiter", "id": 1434976, "credit_id": "54f75ca0c3a36834a20020ff", "cast_id": 53, "profile_path": null, "order": 20}, {"name": "Charles Gherardi", "character": "'Ayatollah Khomeini' Video Waiter", "id": 1434978, "credit_id": "54f75cc2c3a36833dc00200f", "cast_id": 54, "profile_path": null, "order": 21}, {"name": "John Thornton", "character": "Video Game Boy", "id": 1024268, "credit_id": "54f75d40c3a36833bb0024eb", "cast_id": 55, "profile_path": null, "order": 22}, {"name": "Theo Schwartz", "character": "Hoverboard Girl #1", "id": 1434979, "credit_id": "54f75d649251416ebf001f93", "cast_id": 56, "profile_path": null, "order": 23}, {"name": "Lindsey Whitney Barry", "character": "Hoverboard Girl #2", "id": 1434980, "credit_id": "54f75d86c3a3683a57002cf9", "cast_id": 57, "profile_path": null, "order": 24}, {"name": "Judy Ovitz", "character": "Antique Store Saleswoman", "id": 1379150, "credit_id": "54f75dbac3a36833dc00202c", "cast_id": 58, "profile_path": null, "order": 25}, {"name": "Stephanie Williams", "character": "Officer Foley (as Stephanie E. Williams)", "id": 169769, "credit_id": "54f75e679251416f37002237", "cast_id": 59, "profile_path": null, "order": 26}, {"name": "Marty Levy", "character": "Cab Driver", "id": 1434981, "credit_id": "54f75e879251416e46002257", "cast_id": 60, "profile_path": null, "order": 27}, {"name": "Jim Ishida", "character": "Fujitsu (as James Ishida)", "id": 1217015, "credit_id": "54f760aec3a36833dc002083", "cast_id": 62, "profile_path": null, "order": 29}, {"name": "Nikki Birdsong", "character": "Loretta", "id": 1434984, "credit_id": "54f760df9251416f6e0022f6", "cast_id": 63, "profile_path": null, "order": 30}, {"name": "Junior Fann", "character": "Mom", "id": 1434985, "credit_id": "54f761649251412411002ced", "cast_id": 64, "profile_path": null, "order": 31}, {"name": "Shaun Hunter", "character": "Harold", "id": 1434986, "credit_id": "54f76189c3a3683a69002b3d", "cast_id": 65, "profile_path": null, "order": 32}, {"name": "George Buck Flower", "character": "Bum (as Buck Flower)", "id": 54564, "credit_id": "54f761ad9251416f370022b4", "cast_id": 66, "profile_path": "/xHzW4GszCLTZLNxvTcKL9ICuLIc.jpg", "order": 33}, {"name": "Tamara Carrera", "character": "Jacuzzi Girl #1", "id": 1434987, "credit_id": "54f761df92514151c6002c3d", "cast_id": 67, "profile_path": null, "order": 34}, {"name": "Tracy Dali", "character": "Jacuzzi Girl #2 (as Tracy D'Aldia)", "id": 37623, "credit_id": "54f7622ec3a36833dc00209f", "cast_id": 68, "profile_path": null, "order": 35}, {"name": "Jennifer Brown", "character": "Basketball Kid #1", "id": 1434988, "credit_id": "54f7627ec3a3683a69002b75", "cast_id": 69, "profile_path": null, "order": 36}, {"name": "Irina Cashen", "character": "Basketball Kid #2", "id": 1434990, "credit_id": "54f762adc3a36834a20021c6", "cast_id": 70, "profile_path": null, "order": 37}, {"name": "Angela Greenblatt", "character": "Basketball Kid #3", "id": 1434991, "credit_id": "54f762d192514151c6002c6f", "cast_id": 71, "profile_path": null, "order": 38}, {"name": "Cameron Moore", "character": "Basketball Kid #4", "id": 1434992, "credit_id": "54f762f8c3a36834a50023a7", "cast_id": 72, "profile_path": null, "order": 39}, {"name": "Justin Mosley Spink", "character": "Basketball Kid #5", "id": 1434994, "credit_id": "54f7631b9251416e4600230c", "cast_id": 73, "profile_path": null, "order": 40}, {"name": "Lisa Freeman", "character": "Babs", "id": 97708, "credit_id": "54f7637b9251416e4600231e", "cast_id": 74, "profile_path": "/spwZaVY8ufKeT0Kkb02a8HgAr9i.jpg", "order": 41}, {"name": "John Erwin", "character": "Radio Sportscaster (voice)", "id": 176053, "credit_id": "54f7d12792514124110039a7", "cast_id": 75, "profile_path": null, "order": 42}, {"name": "Harry Waters, Jr.", "character": "Marvin Berry", "id": 1074, "credit_id": "54f7d152c3a368126c0006fc", "cast_id": 76, "profile_path": "/lDpuXzAeqfoYbxV0QxidKPXoYfV.jpg", "order": 43}, {"name": "David Harold Brown", "character": "Starlighter", "id": 1200793, "credit_id": "54f7d1dac3a36833bb003430", "cast_id": 77, "profile_path": null, "order": 44}, {"name": "Tommy Thomas", "character": "Tommy Thomas", "id": 1200791, "credit_id": "54f7d1f9c3a368351d003058", "cast_id": 78, "profile_path": null, "order": 45}, {"name": "Tommy Thomas", "character": "Starlighter", "id": 1200791, "credit_id": "54f7d20ec3a3683a57003a04", "cast_id": 79, "profile_path": null, "order": 46}, {"name": "Lloyd L. Tolbert", "character": "Starlighter", "id": 1200794, "credit_id": "54f7d23bc3a3683a57003a09", "cast_id": 80, "profile_path": "/5q81Ro5P2nonxEHq1L6kAebMVWV.jpg", "order": 47}, {"name": "Granville 'Danny' Young", "character": "Starlighter", "id": 1200792, "credit_id": "54f7d261c3a368126c00070f", "cast_id": 81, "profile_path": null, "order": 48}, {"name": "Wesley Mann", "character": "CPR Kid", "id": 1214023, "credit_id": "54f7d2b6c3a368131c0005b5", "cast_id": 82, "profile_path": null, "order": 49}, {"name": "Freddie", "character": "Einstein", "id": 2459, "credit_id": "54f7d2f09251416f6e003076", "cast_id": 83, "profile_path": "/4JeX5W2IKzZyRvqwb4LfT30YIDz.jpg", "order": 50}, {"name": "Crispin Glover", "character": "George McFly (archive footage)", "id": 1064, "credit_id": "54f7d319c3a368126c000721", "cast_id": 84, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 51}, {"name": "Todd Blood", "character": "Dance Extra (uncredited)", "id": 1435060, "credit_id": "54f7d342c3a36834a50031b8", "cast_id": 85, "profile_path": null, "order": 52}, {"name": "Sean Michael Fish", "character": "King Neptune (uncredited)", "id": 1435061, "credit_id": "54f7d390c3a3683a57003a24", "cast_id": 87, "profile_path": null, "order": 54}, {"name": "Donald Fullilove", "character": "Goldie Wilson III (uncredited)", "id": 84494, "credit_id": "54f7d3bcc3a36833dc002dc6", "cast_id": 88, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 55}, {"name": "Annette May", "character": "(uncredited)", "id": 1435062, "credit_id": "54f7d3e6c3a36834a50031cd", "cast_id": 89, "profile_path": null, "order": 56}, {"name": "Mary Ellen Trainor", "character": "Officer Reese (uncredited)", "id": 23967, "credit_id": "54f7d41bc3a368131c0005d7", "cast_id": 90, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 57}, {"name": "Gian Maria Volont\u00e9", "character": "Ramon Rojo (archive footage) (uncredited)", "id": 14276, "credit_id": "54f7d4449251416f37003006", "cast_id": 91, "profile_path": "/fnluody7boW6FHuhXoUmO141BeU.jpg", "order": 58}, {"name": "Flea", "character": "Needles", "id": 1237, "credit_id": "551d9c7f9251413756000b03", "cast_id": 93, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 59}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f8006443", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.9, "runtime": 108}, "8358": {"poster_path": "/w515BrZvczKIxbHurG6HIiYYrba.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 429632142, "overview": "Chuck, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia ditches at sea during a terrible storm. He's the only survivor, and he washes up on a tiny island with nothing but some flotsam and jetsam from the aircraft's cargo. Can he survive in this tropical wasteland? Will he ever return to woman he loves?", "video": false, "id": 8358, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Cast Away", "tagline": "At the edge of the world, his journey begins.", "vote_count": 809, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0162222", "adult": false, "backdrop_path": "/aMfCoafOGcU1KpHIyZZdwsaWcrH.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "DreamWorks SKG", "id": 27}, {"name": "ImageMovers", "id": 11395}, {"name": "Playtone", "id": 4171}], "release_date": "2000-12-07", "popularity": 1.15555351861634, "original_title": "Cast Away", "budget": 90000000, "cast": [{"name": "Tom Hanks", "character": "Chuck Noland", "id": 31, "credit_id": "52fe44a2c3a36847f80a14df", "cast_id": 3, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Kelly Frears", "id": 9994, "credit_id": "52fe44a2c3a36847f80a14e3", "cast_id": 4, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "Chris Noth", "character": "Jerry Lovett", "id": 38026, "credit_id": "52fe44a2c3a36847f80a14e7", "cast_id": 5, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 2}, {"name": "Paul Sanchez", "character": "Ramon", "id": 11892, "credit_id": "52fe44a2c3a36847f80a1515", "cast_id": 13, "profile_path": "/jKUbLQHM8FTDmLqK7OlIJxqoenc.jpg", "order": 3}, {"name": "Lari White", "character": "Bettina Peterson", "id": 55433, "credit_id": "52fe44a2c3a36847f80a1519", "cast_id": 14, "profile_path": "/rKSreViOljFVpMqKMrl3gNdreTe.jpg", "order": 4}, {"name": "Leonid Citer", "character": "Fyodor", "id": 55434, "credit_id": "52fe44a2c3a36847f80a151d", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "David Allen Brooks", "character": "Dick Peterson", "id": 55435, "credit_id": "52fe44a2c3a36847f80a1521", "cast_id": 16, "profile_path": "/406xWYihza21XRKOZV3PYyWTXxg.jpg", "order": 6}, {"name": "Semion Sudarikov", "character": "Nicolai", "id": 55436, "credit_id": "52fe44a2c3a36847f80a1525", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Peter von Berg", "character": "Yuri", "id": 55437, "credit_id": "52fe44a2c3a36847f80a1529", "cast_id": 18, "profile_path": "/ekmjFccWDzaEprBSZdxF4Obgz1x.jpg", "order": 8}, {"name": "Dmitri S. Boudrine", "character": "Lev", "id": 55438, "credit_id": "52fe44a2c3a36847f80a152d", "cast_id": 19, "profile_path": "/iHhdB3qOE1G60ucCdnslZjlNEbw.jpg", "order": 9}, {"name": "Nick Searcy", "character": "Stan", "id": 12538, "credit_id": "52fe44a2c3a36847f80a1531", "cast_id": 20, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 10}, {"name": "Fran\u00e7ois Duhamel", "character": "French FedEx Loader", "id": 1177850, "credit_id": "52fe44a2c3a36847f80a154d", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Michael Forest", "character": "Pilot Jack", "id": 1007561, "credit_id": "52fe44a2c3a36847f80a1551", "cast_id": 26, "profile_path": "/2q5tzl9eFG5GgXmoQCGjHQI3icW.jpg", "order": 12}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe44a2c3a36847f80a14d5", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 7.1, "runtime": 143}, "167": {"poster_path": "/pCZxl9Si7i46nduSqUSzFdHYiEO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50315140, "overview": "Prot is a patient at a mental hospital who claims to be from a far away Planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.", "video": false, "id": 167, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "K-PAX", "tagline": "Change the way you look at the world.", "vote_count": 151, "homepage": "http://www.k-pax.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0272152", "adult": false, "backdrop_path": "/yrPhUxZcTo68CFjsVCdHXYm8emP.jpg", "production_companies": [{"name": "Intermedia Films", "id": 763}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Path\u00e9 Pictures International", "id": 1178}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}], "release_date": "2001-10-22", "popularity": 0.734795464217852, "original_title": "K-PAX", "budget": 48000000, "cast": [{"name": "Jeff Bridges", "character": "Dr. Mark Powell", "id": 1229, "credit_id": "52fe4221c3a36847f80065cf", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Prot", "id": 1979, "credit_id": "52fe4221c3a36847f80065d3", "cast_id": 3, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Mary McCormack", "character": "Rachel Powell", "id": 1980, "credit_id": "52fe4221c3a36847f80065d7", "cast_id": 4, "profile_path": "/vMS1VGv0Cd2PMo2cuceNBPsd1GH.jpg", "order": 2}, {"name": "Alfre Woodard", "character": "Claudia Villars", "id": 1981, "credit_id": "52fe4221c3a36847f80065db", "cast_id": 5, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 3}, {"name": "Ajay Naidu", "character": "Dr. Chakaraborty", "id": 1982, "credit_id": "52fe4221c3a36847f80065df", "cast_id": 6, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 4}, {"name": "Vincent Laresca", "character": "Navarro", "id": 1983, "credit_id": "52fe4221c3a36847f80065e3", "cast_id": 7, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 5}, {"name": "Kimberly Scott", "character": "Joyce Trexler", "id": 1984, "credit_id": "52fe4221c3a36847f80065e7", "cast_id": 8, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 6}, {"name": "Conchata Ferrell", "character": "Betty McAllister", "id": 1909, "credit_id": "52fe4221c3a36847f80065eb", "cast_id": 9, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 7}, {"name": "Saul Williams", "character": "Ernie", "id": 1985, "credit_id": "52fe4221c3a36847f80065ef", "cast_id": 10, "profile_path": "/cV8sC60M089WHKvu7hQVxHhUfBl.jpg", "order": 8}, {"name": "Peter Gerety", "character": "Sal", "id": 1986, "credit_id": "52fe4221c3a36847f80065f3", "cast_id": 11, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 9}, {"name": "David Patrick Kelly", "character": "Howie", "id": 1737, "credit_id": "52fe4221c3a36847f80065f7", "cast_id": 12, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 10}, {"name": "Melanee Murray", "character": "Bess", "id": 1987, "credit_id": "52fe4221c3a36847f80065fb", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Tracey Vilar", "character": "Maria", "id": 1988, "credit_id": "52fe4221c3a36847f80065ff", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Celia Weston", "character": "Mrs. Archer", "id": 1989, "credit_id": "52fe4221c3a36847f8006603", "cast_id": 15, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 13}, {"name": "Brian Howe", "character": "Steve Becker", "id": 1990, "credit_id": "52fe4221c3a36847f8006607", "cast_id": 16, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 14}, {"name": "Tess McCarthy", "character": "Natalie Powell", "id": 1991, "credit_id": "52fe4221c3a36847f800660b", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Natasha Dorfhuber", "character": "Gabby Powell", "id": 1992, "credit_id": "52fe4221c3a36847f800660f", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f80065cb", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.8, "runtime": 120}, "168": {"poster_path": "/62nATuMKuaLhd5VHKumHOrJnCZa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 133000000, "overview": "Fugitives of the Federation for their daring rescue of Spock from the doomed Genesis Planet, Admiral Kirk (William Shatner) and his crew begin their journey home to face justice for their actions. But as they near Earth, they find it at the mercy of a mysterious alien presence whose signals are slowly destroying the planet. In a desperate attempt to answer the call of the probe, Kirk and his crew race back to the late twentieth century. However they soon find the world they once knew to be more alien than anything they've encountered in the far reaches of the galaxy!", "video": false, "id": 168, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek IV: The Voyage Home", "tagline": "The key to saving the future can only be found in the past.", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fi", "name": "suomi"}], "imdb_id": "tt0092007", "adult": false, "backdrop_path": "/2SmriSA5l4WE40KnZ8mA0GuqtEJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-11-25", "popularity": 1.01780590029031, "original_title": "Star Trek IV: The Voyage Home", "budget": 24000000, "cast": [{"name": "William Shatner", "character": "Admiral/Captain James T. Kirk", "id": 1748, "credit_id": "52fe4221c3a36847f80066a7", "cast_id": 7, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Captain Spock", "id": 1749, "credit_id": "52fe4221c3a36847f80066ab", "cast_id": 8, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4221c3a36847f80066af", "cast_id": 9, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4221c3a36847f80066b3", "cast_id": 10, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe4221c3a36847f80066b7", "cast_id": 11, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Walter Koenig", "character": "Cmdr. Pavel Chekov", "id": 1754, "credit_id": "52fe4221c3a36847f80066bb", "cast_id": 12, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 5}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe4221c3a36847f80066bf", "cast_id": 13, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 6}, {"name": "Jane Wyatt", "character": "Amanda", "id": 2021, "credit_id": "52fe4221c3a36847f80066c3", "cast_id": 14, "profile_path": "/eovluFbKVmsVjFnlHoYvzKjwXMw.jpg", "order": 7}, {"name": "Catherine Hicks", "character": "Dr. Gillian Taylor", "id": 2022, "credit_id": "52fe4221c3a36847f80066c7", "cast_id": 15, "profile_path": "/pAqwxZ5AgpgsExQC79fDVtFdvhe.jpg", "order": 8}, {"name": "Mark Lenard", "character": "Ambassador Sarek", "id": 1820, "credit_id": "52fe4221c3a36847f80066cb", "cast_id": 16, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 9}, {"name": "Robin Curtis", "character": "Lt. Saavik", "id": 1819, "credit_id": "52fe4221c3a36847f80066cf", "cast_id": 17, "profile_path": "/pHOmW0od8GD3PUC1Yd1jBDr2aD4.jpg", "order": 10}, {"name": "Robert Ellenstein", "character": "Federation Council President", "id": 2647, "credit_id": "546237880e0a2672a000271f", "cast_id": 29, "profile_path": "/hOyTZHJx2ZrbsQusSHsfEolORv0.jpg", "order": 11}, {"name": "John Schuck", "character": "Klingon Ambassador", "id": 24046, "credit_id": "546237950e0a2672b60025b5", "cast_id": 30, "profile_path": "/liBIO7P3HMO4Nil7ZsW7OFNChvb.jpg", "order": 12}, {"name": "Brock Peters", "character": "Admiral Cartwright", "id": 2112, "credit_id": "546237a30e0a2672a0002722", "cast_id": 31, "profile_path": "/iFSHbqBaOKiqsZFpUteqbCJQmR7.jpg", "order": 13}, {"name": "Michael Snyder", "character": "Starfleet Communications Officer", "id": 1219391, "credit_id": "546237ae0e0a2672b60025bd", "cast_id": 32, "profile_path": null, "order": 14}], "directors": [{"name": "Leonard Nimoy", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f8006685", "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "id": 1749}], "vote_average": 6.7, "runtime": 119}, "169": {"poster_path": "/4cAQgbIPislEeBJahLO5BsqAUZN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57120318, "overview": "Ten years after a band of mercenaries first battled a vicious alien, the invisible creature from another world has returned to Earth -- and this time, it's drawn to the gang-ruled and ravaged city of Los Angeles. When it starts murdering drug dealers, detective-lieutenant Mike Harrigan and his police force set out to capture the creature, ignoring warnings from a mysterious government agent to stay away.", "video": false, "id": 169, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predator 2", "tagline": "Silent. Invisible. Invincible. He's in town with a few days to kill.", "vote_count": 190, "homepage": "", "belongs_to_collection": {"backdrop_path": "/e8ycFoI8vGoZSOY7KmxFzZA1dkE.jpg", "poster_path": "/6Z7lASptoiRVxiCFvZaFgH9qp7u.jpg", "id": 399, "name": "Predator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100403", "adult": false, "backdrop_path": "/vlfYYFavD87DNnwuNBsOyf8xzOs.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1990-11-20", "popularity": 0.836934211210548, "original_title": "Predator 2", "budget": 35000000, "cast": [{"name": "Kevin Peter Hall", "character": "The Predator", "id": 1109, "credit_id": "52fe4222c3a36847f800679f", "cast_id": 14, "profile_path": "/lxlubrzo3np1mU0ML7G12zuy654.jpg", "order": 0}, {"name": "Danny Glover", "character": "Lieutenant Mike Harrigan", "id": 2047, "credit_id": "52fe4222c3a36847f80067a3", "cast_id": 15, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Gary Busey", "character": "Peter Keyes", "id": 2048, "credit_id": "52fe4222c3a36847f80067a7", "cast_id": 16, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Rub\u00e9n Blades", "character": "Danny Archuleta", "id": 2049, "credit_id": "52fe4222c3a36847f80067ab", "cast_id": 17, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 3}, {"name": "Mar\u00eda Conchita Alonso", "character": "Leona Cantrell", "id": 2051, "credit_id": "52fe4222c3a36847f80067af", "cast_id": 18, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 4}, {"name": "Bill Paxton", "character": "Jerry Lambert", "id": 2053, "credit_id": "52fe4222c3a36847f80067b3", "cast_id": 19, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 5}, {"name": "Adam Baldwin", "character": "Garber", "id": 2059, "credit_id": "52fe4222c3a36847f80067bb", "cast_id": 21, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 6}, {"name": "Robert Davi", "character": "Captain Phil Heinemann", "id": 2055, "credit_id": "52fe4222c3a36847f80067b7", "cast_id": 20, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 7}, {"name": "Kent McCord", "character": "Captain B. Pilgrim", "id": 2062, "credit_id": "52fe4222c3a36847f80067bf", "cast_id": 22, "profile_path": "/9ZrPhRZvwQEhrURXLfM4mRqbFXC.jpg", "order": 8}, {"name": "Morton Downey, Jr.", "character": "Tony Pope", "id": 2064, "credit_id": "52fe4222c3a36847f80067c3", "cast_id": 23, "profile_path": "/vvaBkpr0r6az3DtOSKojVKfiBBc.jpg", "order": 9}, {"name": "Calvin Lockhart", "character": "King Willie", "id": 2067, "credit_id": "52fe4222c3a36847f80067c7", "cast_id": 24, "profile_path": "/3yJrPwyFScLuBukMb5BMJ8lDk1m.jpg", "order": 10}, {"name": "Corey Rand", "character": "Ramon Vega", "id": 2069, "credit_id": "52fe4222c3a36847f80067cb", "cast_id": 26, "profile_path": "/7LVuh2T13rt0vEKPxqRQ5Wv3G0O.jpg", "order": 12}, {"name": "Elpidia Carrillo", "character": "Anna", "id": 1102, "credit_id": "52fe4222c3a36847f80067cf", "cast_id": 27, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 13}, {"name": "Lilyan Chauvin", "character": "Irene Edwards", "id": 2072, "credit_id": "52fe4222c3a36847f80067d3", "cast_id": 28, "profile_path": "/cL03vrPlSc4RwqydPnPvyCqZpAm.jpg", "order": 14}, {"name": "Michael Mark Edmondson", "character": "Gold Tooth", "id": 2074, "credit_id": "52fe4222c3a36847f80067d7", "cast_id": 29, "profile_path": "/bsxNiOjeHGdW9P7BgxgeRh5L9Q5.jpg", "order": 15}, {"name": "Henry Kingi", "character": "El Scorpio", "id": 24969, "credit_id": "52fe4222c3a36847f80067db", "cast_id": 30, "profile_path": "/7NfbNpe2PQZI5BcdvBxAfVfmroi.jpg", "order": 16}], "directors": [{"name": "Stephen Hopkins", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006753", "profile_path": "/zHwFIL63LbeSS83FMC8J6TAgDNL.jpg", "id": 2042}], "vote_average": 5.7, "runtime": 108}, "170": {"poster_path": "/xaYdxi1PBEAYvqknvAmMPK5Eff3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 82000000, "overview": "Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.", "video": false, "id": 170, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "28 Days Later...", "tagline": "His fear began when he woke up alone. His terror began when he realised he wasn't.", "vote_count": 513, "homepage": "http://kino.20thcenturyfox.de/filmarchiv/28dayslater/set.html", "belongs_to_collection": {"backdrop_path": "/oLT5tHDNzb5LfytO2g7q6dF0QkC.jpg", "poster_path": "/52KVqdsEJTYzDpUvOMvP0Bbfq5E.jpg", "id": 1565, "name": "28 Days Later Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289043", "adult": false, "backdrop_path": "/yUztTrOARxj1lgcPyrSCeGWigZO.jpg", "production_companies": [{"name": "DNA Films", "id": 284}, {"name": "British Film Council", "id": 10889}], "release_date": "2002-11-01", "popularity": 1.26412635832391, "original_title": "28 Days Later...", "budget": 5000000, "cast": [{"name": "Cillian Murphy", "character": "Jim", "id": 2037, "credit_id": "52fe4222c3a36847f800681f", "cast_id": 4, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 0}, {"name": "Naomie Harris", "character": "Selena", "id": 2038, "credit_id": "52fe4222c3a36847f8006823", "cast_id": 5, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 1}, {"name": "Brendan Gleeson", "character": "Frank", "id": 2039, "credit_id": "52fe4222c3a36847f8006827", "cast_id": 6, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 2}, {"name": "Christopher Eccleston", "character": "Major Henry West", "id": 2040, "credit_id": "52fe4222c3a36847f800682b", "cast_id": 7, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 3}, {"name": "Noah Huntley", "character": "Mark", "id": 2050, "credit_id": "52fe4222c3a36847f800682f", "cast_id": 8, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 4}, {"name": "Christopher Dunne", "character": "Jim's father", "id": 2052, "credit_id": "52fe4222c3a36847f8006833", "cast_id": 9, "profile_path": "/8ky6LE3YTH0I9wFNEEvYQhmJ9vu.jpg", "order": 5}, {"name": "Emma Hitching", "character": "Jim's mother", "id": 2054, "credit_id": "52fe4222c3a36847f8006837", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Alexander Delamere", "character": "Mr. Bridges", "id": 2056, "credit_id": "52fe4222c3a36847f800683b", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Kim McGarrity", "character": "Mr. Bridges\u2019 Daughter", "id": 2057, "credit_id": "52fe4222c3a36847f800683f", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Megan Burns", "character": "Hannah", "id": 2058, "credit_id": "52fe4222c3a36847f8006843", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Alex Palmer", "character": "Aktivist", "id": 2060, "credit_id": "52fe4222c3a36847f8006847", "cast_id": 14, "profile_path": "/leOXZpYLgCFgQoBb6vuHYoPbA5J.jpg", "order": 10}, {"name": "Bindu De Stoppani", "character": "Aktivist", "id": 2061, "credit_id": "52fe4222c3a36847f800684b", "cast_id": 15, "profile_path": "/MYCVwqxWTRhFomPvlniNckBCiu.jpg", "order": 11}, {"name": "Jukka Hiltunen", "character": "Aktivist", "id": 2063, "credit_id": "52fe4222c3a36847f800684f", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "David Schneider", "character": "Scientist", "id": 2065, "credit_id": "52fe4222c3a36847f8006853", "cast_id": 17, "profile_path": "/dwnUaApf65LPIKUndH4VkznA5Lv.jpg", "order": 13}, {"name": "Toby Sedgwick", "character": "Infected Priest", "id": 2066, "credit_id": "52fe4222c3a36847f8006857", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Stuart McQuarrie", "character": "Seargent Farrell", "id": 2258, "credit_id": "52fe4222c3a36847f8006873", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006815", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.8, "runtime": 113}, "8363": {"poster_path": "/w5LPpLZvlNblrW90HAT6lJmQoGS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 169860655, "overview": "High school best buddies are facing separation anxiety as they prepare to go off to college. While attempting to score alcohol for a party with help from their fake ID-toting friend, \"McLovin\", the guys' evening takes a turn into chaotic territory.", "video": false, "id": 8363, "genres": [{"id": 35, "name": "Comedy"}], "title": "Superbad", "tagline": "Come and Get Some!", "vote_count": 514, "homepage": "http://www.areyousuperbad.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0829482", "adult": false, "backdrop_path": "/kQzcHOxcjZ8hG0bF0tMNPghAFe0.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2007-08-17", "popularity": 1.00328809664001, "original_title": "Superbad", "budget": 20000000, "cast": [{"name": "Jonah Hill", "character": "Seth", "id": 21007, "credit_id": "52fe44a2c3a36847f80a1667", "cast_id": 1, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Michael Cera", "character": "Evan", "id": 39995, "credit_id": "52fe44a2c3a36847f80a166b", "cast_id": 2, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 1}, {"name": "Christopher Mintz-Plasse", "character": "Fogell", "id": 54691, "credit_id": "52fe44a2c3a36847f80a166f", "cast_id": 3, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 2}, {"name": "Bill Hader", "character": "Officer Slater", "id": 19278, "credit_id": "52fe44a2c3a36847f80a1673", "cast_id": 4, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 3}, {"name": "Seth Rogen", "character": "Officer Michaels", "id": 19274, "credit_id": "52fe44a2c3a36847f80a1677", "cast_id": 5, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 4}, {"name": "Martha MacIsaac", "character": "Becca", "id": 54692, "credit_id": "52fe44a2c3a36847f80a167b", "cast_id": 6, "profile_path": "/iohyyedpbE1sZcJjYU00f8DnLLJ.jpg", "order": 5}, {"name": "Emma Stone", "character": "Jules", "id": 54693, "credit_id": "52fe44a2c3a36847f80a167f", "cast_id": 7, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 6}, {"name": "Aviva", "character": "Nicola", "id": 53208, "credit_id": "52fe44a2c3a36847f80a1683", "cast_id": 8, "profile_path": "/kpoOjIzGaEYWwZTgAwqLCMthl6C.jpg", "order": 7}, {"name": "Joe Lo Truglio", "character": "Francis", "id": 21131, "credit_id": "52fe44a2c3a36847f80a1687", "cast_id": 9, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Kevin Corrigan", "character": "Mark", "id": 18472, "credit_id": "52fe44a2c3a36847f80a168b", "cast_id": 10, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 9}, {"name": "Clement Blake", "character": "Homeless Guy (Obdachloser)", "id": 54694, "credit_id": "52fe44a2c3a36847f80a168f", "cast_id": 11, "profile_path": "/tO2XVokGDHJqSxoIVKjsV2JGWvz.jpg", "order": 10}, {"name": "Erica Vittina Phillips", "character": "Mindy", "id": 54695, "credit_id": "52fe44a2c3a36847f80a1693", "cast_id": 12, "profile_path": "/h8HdJfM2Ajutj5QokjQIEA7mVG4.jpg", "order": 11}, {"name": "Joe Nunez", "character": "Liquor Store Clerk (Mitarbeiter Getr\u00e4nkeladen)", "id": 54696, "credit_id": "52fe44a2c3a36847f80a1697", "cast_id": 13, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 12}, {"name": "Dave Franco", "character": "Greg (Soccer Player / Fu\u00dfballspieler)", "id": 54697, "credit_id": "52fe44a2c3a36847f80a169b", "cast_id": 14, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 13}, {"name": "Marcella Lentz-Pope", "character": "Gaby", "id": 54698, "credit_id": "52fe44a2c3a36847f80a169f", "cast_id": 15, "profile_path": "/eMxlMzKb1qRLr1fnjORhwAJCNL4.jpg", "order": 14}, {"name": "Scott Gerbacia", "character": "Jesse", "id": 54699, "credit_id": "52fe44a2c3a36847f80a16a3", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Laura Seay", "character": "Shirley", "id": 54700, "credit_id": "52fe44a2c3a36847f80a16a7", "cast_id": 17, "profile_path": "/o4l4jdZk3C1OelS1HgkUnJbfdRJ.jpg", "order": 16}, {"name": "Roger Iwami", "character": "Miroki", "id": 54701, "credit_id": "52fe44a2c3a36847f80a16ab", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Clint Mabry", "character": "Prosthetic Leg Kid (Kind mit Beinprothese)", "id": 54702, "credit_id": "52fe44a2c3a36847f80a16af", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Stacy Edwards", "character": "Evan's Mom (Evans Mutter)", "id": 43372, "credit_id": "52fe44a2c3a36847f80a16b3", "cast_id": 20, "profile_path": "/3FBtBFrmjUx0W0bbKYqW2gpgIkI.jpg", "order": 19}, {"name": "Mark Rogen", "character": "Father with Bat", "id": 54703, "credit_id": "52fe44a2c3a36847f80a16b7", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Charlie Hartsock", "character": "Good Shopper Cashier", "id": 54704, "credit_id": "52fe44a2c3a36847f80a16bb", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Donna Hardy", "character": "Old Lady", "id": 54705, "credit_id": "52fe44a2c3a36847f80a16bf", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Charley Rossman", "character": "Good Shopper Security", "id": 54706, "credit_id": "52fe44a2c3a36847f80a16c3", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Carla Gallo", "character": "Period Blood Girl", "id": 54708, "credit_id": "52fe44a2c3a36847f80a16c7", "cast_id": 26, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 24}, {"name": "Ben Best", "character": "Quince Danbury", "id": 54709, "credit_id": "52fe44a2c3a36847f80a16cb", "cast_id": 27, "profile_path": "/39Rn6j5zFapIadjoA5l5AbpE0pu.jpg", "order": 25}, {"name": "Jody Hill", "character": "Tut Long John Silver", "id": 54710, "credit_id": "52fe44a2c3a36847f80a16cf", "cast_id": 28, "profile_path": "/vVQbPkXeRBsZxA45tNa7sXyNGct.jpg", "order": 26}, {"name": "Kevin Breznahan", "character": "Patrick Manchester", "id": 54711, "credit_id": "52fe44a2c3a36847f80a16d3", "cast_id": 29, "profile_path": "/lF0rs9N5qBsXN68BNksZYEiVnAQ.jpg", "order": 27}, {"name": "David Krumholtz", "character": "Benji Austin", "id": 38582, "credit_id": "52fe44a2c3a36847f80a16d7", "cast_id": 30, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 28}, {"name": "Mousa Kraish", "character": "Billy Baybridge", "id": 54712, "credit_id": "52fe44a2c3a36847f80a16db", "cast_id": 31, "profile_path": "/bATns500G3T6he2yBeIVQSFRpiU.jpg", "order": 29}, {"name": "Nicholas Jasenovec", "character": "Coffee Fairmount", "id": 54713, "credit_id": "52fe44a2c3a36847f80a16df", "cast_id": 32, "profile_path": null, "order": 30}, {"name": "Martin Starr", "character": "James Masselin", "id": 41089, "credit_id": "52fe44a2c3a36847f80a16e3", "cast_id": 33, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 31}, {"name": "Keith Loneker", "character": "Wild Bill Cherry", "id": 54714, "credit_id": "52fe44a2c3a36847f80a16e7", "cast_id": 34, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 32}, {"name": "Matthew McKane", "character": "Kane Cloverdale", "id": 54715, "credit_id": "52fe44a2c3a36847f80a16eb", "cast_id": 35, "profile_path": null, "order": 33}, {"name": "Lauren Miller", "character": "Scarlett Brighton", "id": 54716, "credit_id": "52fe44a2c3a36847f80a16ef", "cast_id": 36, "profile_path": "/baHXpn6DK8ai7Pg7lsywD642uT2.jpg", "order": 34}, {"name": "Peter Salett", "character": "Tiger Greendragon", "id": 53607, "credit_id": "52fe44a2c3a36847f80a16f3", "cast_id": 37, "profile_path": null, "order": 35}, {"name": "Rakefet Abergel", "character": "Muffin Selby", "id": 54717, "credit_id": "52fe44a2c3a36847f80a16f7", "cast_id": 38, "profile_path": "/yg3i1dWluH66d1pfMgfaEpJisiC.jpg", "order": 36}, {"name": "Brooke Dillman", "character": "Mrs. Hayworth", "id": 54718, "credit_id": "52fe44a2c3a36847f80a16fb", "cast_id": 39, "profile_path": "/d75GJILbWQv8c96At9lflDWwGxY.jpg", "order": 37}, {"name": "Michael Naughton", "character": "Gym Teacher", "id": 54719, "credit_id": "52fe44a2c3a36847f80a16ff", "cast_id": 40, "profile_path": null, "order": 38}, {"name": "Steve Bannos", "character": "Math Teacher", "id": 54720, "credit_id": "52fe44a2c3a36847f80a1703", "cast_id": 41, "profile_path": "/xiapg97am8zqjcB60lRGBIQeFqA.jpg", "order": 39}, {"name": "Casey Margolis", "character": "Young Seth", "id": 54721, "credit_id": "52fe44a2c3a36847f80a1707", "cast_id": 42, "profile_path": null, "order": 40}, {"name": "Laura Marano", "character": "Young Becca", "id": 54722, "credit_id": "52fe44a2c3a36847f80a170b", "cast_id": 43, "profile_path": "/bP5xvXStD7JFScGZx959FLPmD9S.jpg", "order": 41}, {"name": "Matthew Bass", "character": "Vagtastic Voyager", "id": 54723, "credit_id": "52fe44a3c3a36847f80a170f", "cast_id": 44, "profile_path": null, "order": 42}, {"name": "Aurora Snow", "character": "Vagtastic Voyage Girl #1", "id": 54724, "credit_id": "52fe44a3c3a36847f80a1713", "cast_id": 45, "profile_path": "/ygB33djUOKlBIW235yD3qgKfoNM.jpg", "order": 43}, {"name": "Jenna Haze", "character": "Vagtastic Voyage Girl #2", "id": 54725, "credit_id": "52fe44a3c3a36847f80a1717", "cast_id": 46, "profile_path": "/zhCjA1ldivu2yO7C6BwUowBd6bC.jpg", "order": 44}, {"name": "Ted Haigh", "character": "Bartender", "id": 54726, "credit_id": "52fe44a3c3a36847f80a171b", "cast_id": 47, "profile_path": null, "order": 45}, {"name": "Michael Fennessey", "character": "Bus Driver", "id": 54727, "credit_id": "52fe44a3c3a36847f80a171f", "cast_id": 48, "profile_path": null, "order": 46}, {"name": "Brian Huskey", "character": "Elementary Principal", "id": 54728, "credit_id": "52fe44a3c3a36847f80a1723", "cast_id": 49, "profile_path": "/krewoXz2qgDdIAB2PTGRuilX0K5.jpg", "order": 47}, {"name": "Clark Duke", "character": "Party Teenager #1", "id": 54729, "credit_id": "52fe44a3c3a36847f80a1727", "cast_id": 50, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 48}, {"name": "Stephen Borrello IV", "character": "Party Teenager #2", "id": 54730, "credit_id": "52fe44a3c3a36847f80a172b", "cast_id": 51, "profile_path": null, "order": 49}, {"name": "Naathan Phan", "character": "Party Teenager #3", "id": 54731, "credit_id": "52fe44a3c3a36847f80a172f", "cast_id": 52, "profile_path": null, "order": 50}, {"name": "Pamella D'Pella", "character": "Teacher", "id": 54732, "credit_id": "52fe44a3c3a36847f80a1733", "cast_id": 53, "profile_path": null, "order": 51}], "directors": [{"name": "Greg Mottola", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a1739", "profile_path": "/dC1BKEyTzgTqqy8c5MmSZrRLhNR.jpg", "id": 54733}], "vote_average": 6.8, "runtime": 113}, "172": {"poster_path": "/pV68KIKhlMneCnnopBzDTYgqonC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70200000, "overview": "Capt. Kirk and his crew must deal with Mr. Spock's half brother who kidnaps three diplomats and hijacks the Enterprise in his obsessive search for God.", "video": false, "id": 172, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek V: The Final Frontier", "tagline": "Adventure and imagination will meet at the final frontier.", "vote_count": 112, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098382", "adult": false, "backdrop_path": "/nNH43KDwtiXJIie6oviBIEwE8xd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1989-06-09", "popularity": 0.722928163062144, "original_title": "Star Trek V: The Final Frontier", "budget": 30000000, "cast": [{"name": "William Shatner", "character": "Captain James T. Kirk", "id": 1748, "credit_id": "52fe4222c3a36847f8006975", "cast_id": 4, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Captain Spock", "id": 1749, "credit_id": "52fe4222c3a36847f8006979", "cast_id": 5, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4222c3a36847f800697d", "cast_id": 6, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4222c3a36847f8006981", "cast_id": 7, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe4222c3a36847f8006985", "cast_id": 8, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe4222c3a36847f8006989", "cast_id": 9, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Cmdr. Pavel Chekov", "id": 1754, "credit_id": "52fe4222c3a36847f800698d", "cast_id": 10, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "David Warner", "character": "St. John Talbot", "id": 2076, "credit_id": "52fe4222c3a36847f8006991", "cast_id": 11, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 7}, {"name": "Laurence Luckinbill", "character": "Sybok", "id": 2077, "credit_id": "52fe4222c3a36847f8006995", "cast_id": 12, "profile_path": "/34t57JO6Tidp3AKgzfH4rXxbYI4.jpg", "order": 8}, {"name": "Charles Cooper", "character": "Gen. Korrd", "id": 2078, "credit_id": "52fe4222c3a36847f8006999", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Cynthia Gouw", "character": "Caithlin Dar", "id": 2079, "credit_id": "52fe4222c3a36847f800699d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Todd Bryant", "character": "Capt. Klaa", "id": 2080, "credit_id": "52fe4222c3a36847f80069a1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "George Murdock", "character": "God", "id": 2081, "credit_id": "52fe4222c3a36847f80069a5", "cast_id": 16, "profile_path": "/6FsCrzj86JjQJsEMYWnDBdPa0kw.jpg", "order": 12}, {"name": "Jonathan Simpson", "character": "Young Sarek", "id": 1444735, "credit_id": "5510cdd69251415c32000756", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "William Shatner", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006965", "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "id": 1748}], "vote_average": 5.4, "runtime": 107}, "174": {"poster_path": "/5PvIZAOFDe63M1oByFEFDoQobkc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96900000, "overview": "The crews of the Enterprise and the Excelsior must stop a plot to prevent a peace treaty between the Klingon Empire and the Federation", "video": false, "id": 174, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek VI: The Undiscovered Country", "tagline": "The battle for peace has begun.", "vote_count": 128, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102975", "adult": false, "backdrop_path": "/qzrOCLviAseY5WOmsgkNVIAHQea.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1991-12-05", "popularity": 0.423690007434451, "original_title": "Star Trek VI: The Undiscovered Country", "budget": 27000000, "cast": [{"name": "William Shatner", "character": "James Tiberius Kirk", "id": 1748, "credit_id": "52fe4222c3a36847f8006acb", "cast_id": 6, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Spock", "id": 1749, "credit_id": "52fe4222c3a36847f8006acf", "cast_id": 7, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4222c3a36847f8006ad3", "cast_id": 8, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4222c3a36847f8006ad7", "cast_id": 9, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Hikaru Sulu", "id": 1752, "credit_id": "52fe4222c3a36847f8006adb", "cast_id": 10, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Uhura", "id": 1753, "credit_id": "52fe4222c3a36847f8006adf", "cast_id": 11, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Pavel Chekov", "id": 1754, "credit_id": "52fe4222c3a36847f8006ae3", "cast_id": 12, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "Christopher Plummer", "character": "General Chang", "id": 290, "credit_id": "52fe4222c3a36847f8006ae7", "cast_id": 13, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 7}, {"name": "Kim Cattrall", "character": "Lieutenant Valeris", "id": 2109, "credit_id": "52fe4222c3a36847f8006aeb", "cast_id": 14, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 8}, {"name": "David Warner", "character": "Chancellor Gorkon", "id": 2076, "credit_id": "52fe4222c3a36847f8006aef", "cast_id": 15, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 9}, {"name": "Rosanna DeSoto", "character": "Azetbur", "id": 2111, "credit_id": "52fe4222c3a36847f8006af3", "cast_id": 16, "profile_path": "/ppAz1PLGnuxTgXYDVWblLgXKkqp.jpg", "order": 10}, {"name": "Brock Peters", "character": "Admiral Cartwright", "id": 2112, "credit_id": "52fe4222c3a36847f8006af7", "cast_id": 17, "profile_path": "/iFSHbqBaOKiqsZFpUteqbCJQmR7.jpg", "order": 11}, {"name": "Kurtwood Smith", "character": "Federation President", "id": 2115, "credit_id": "52fe4222c3a36847f8006afb", "cast_id": 18, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 12}, {"name": "Iman", "character": "Martia", "id": 2124, "credit_id": "52fe4222c3a36847f8006b35", "cast_id": 28, "profile_path": "/4HAfEFjc7XkJSGeL7nKiQzntHuw.jpg", "order": 13}, {"name": "Mark Lenard", "character": "Sarek", "id": 1820, "credit_id": "52fe4222c3a36847f8006b39", "cast_id": 29, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 14}, {"name": "Grace Lee Whitney", "character": "Excelsior Communications Officer", "id": 1759, "credit_id": "52fe4222c3a36847f8006b3d", "cast_id": 30, "profile_path": "/h1uisJQaVHhNCYqvxgx3VevGNtA.jpg", "order": 15}, {"name": "Leon Russom", "character": "Chief in Command", "id": 169920, "credit_id": "52fe4222c3a36847f8006b41", "cast_id": 31, "profile_path": "/kITkYMh1VZgHSAMlMxsZ6jaUF7C.jpg", "order": 16}, {"name": "John Schuck", "character": "Klingon Ambassador", "id": 24046, "credit_id": "52fe4222c3a36847f8006b45", "cast_id": 32, "profile_path": "/liBIO7P3HMO4Nil7ZsW7OFNChvb.jpg", "order": 17}, {"name": "Michael Dor", "character": "Klingon Defense Attorney", "id": 1054307, "credit_id": "52fe4222c3a36847f8006b49", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Paul Rossilli", "character": "Kerla", "id": 160414, "credit_id": "52fe4222c3a36847f8006b4d", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Robert Easton", "character": "Klingon Judge", "id": 32494, "credit_id": "52fe4222c3a36847f8006b51", "cast_id": 35, "profile_path": "/1FtmmVRUFFepaE5ovwfwcSId8Ka.jpg", "order": 20}, {"name": "Michael Dorn", "character": "Klingon Defense Attorney", "id": 2391, "credit_id": "52fe4222c3a36847f8006b55", "cast_id": 36, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 21}], "directors": [{"name": "Nicholas Meyer", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006aaf", "profile_path": "/iDQ5NP10dTa7e0WyY16cELdAid4.jpg", "id": 1788}], "vote_average": 6.6, "runtime": 113}, "175": {"poster_path": "/w4TWqa7SiXP0Hm4rkRnCfXwIeRK.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two men answer the call of the ocean in this romantic fantasy-adventure. Jacques (Jean-Marc Barr) and Enzo (Jean Reno) are a pair of friends who have been close since childhood, and who share a passion for the dangerous sport of free diving. Professional diver Jacques opted to follow in the footsteps of his father, who died at sea when Jacques was a boy; to the bewilderment of scientists, Jacques harbors a remarkable ability to adjust his heart rate and breathing pattern in the water, so that his vital signs more closely resemble that of dolphins than men (he even considers a school of dolphins as his extended family). As Enzo persuades a reluctant Jacques to compete against him in a free diving contest -- determining who can dive deeper and longer without scuba gear -- Jacques meets Johana (Rosanna Arquette), a beautiful insurance investigator from America, and he finds that he must choose between his love for her and his love of the sea.", "video": false, "id": 175, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Big Blue", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095250", "adult": false, "backdrop_path": "/eSZUjmpNSnQZ2Wp1IRdlbUpSAuz.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1988-05-11", "popularity": 0.60814737800591, "original_title": "Le Grand Bleu", "budget": 0, "cast": [{"name": "Jean-Marc Barr", "character": "Jacques Mayol", "id": 1642, "credit_id": "52fe4222c3a36847f8006bbd", "cast_id": 8, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 0}, {"name": "Jean Reno", "character": "Enzo Molinari", "id": 1003, "credit_id": "52fe4222c3a36847f8006bc1", "cast_id": 9, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Rosanna Arquette", "character": "Johana Baker", "id": 2165, "credit_id": "52fe4222c3a36847f8006bc5", "cast_id": 10, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 2}, {"name": "Paul Shenar", "character": "Dr. Laurence", "id": 1165, "credit_id": "52fe4222c3a36847f8006bc9", "cast_id": 11, "profile_path": "/pKKAqHEVKXLFVik1zWT59vaXRbk.jpg", "order": 3}, {"name": "Sergio Castellitto", "character": "Novelli", "id": 2166, "credit_id": "52fe4222c3a36847f8006bcd", "cast_id": 12, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 4}, {"name": "Jean Bouise", "character": "Uncle Louis", "id": 2168, "credit_id": "52fe4222c3a36847f8006bd1", "cast_id": 13, "profile_path": "/rBFl7KVzK2tax2CUbLtJBFFcBzm.jpg", "order": 5}, {"name": "Marc Duret", "character": "Roberto", "id": 2170, "credit_id": "52fe4222c3a36847f8006bd5", "cast_id": 14, "profile_path": "/yZu9GrdnBYT0nEwPNPKvbXN9DfE.jpg", "order": 6}, {"name": "Griffin Dunne", "character": "Duffy", "id": 2171, "credit_id": "52fe4222c3a36847f8006bd9", "cast_id": 15, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 7}, {"name": "Andr\u00e9as Voutsinas", "character": "Priest", "id": 2172, "credit_id": "52fe4222c3a36847f8006bdd", "cast_id": 16, "profile_path": "/ydBwnErUYKKLDdQGRWbGkb6bWdo.jpg", "order": 8}, {"name": "Valentina Vargas", "character": "Bonita", "id": 2173, "credit_id": "52fe4222c3a36847f8006be1", "cast_id": 17, "profile_path": "/rG1QVgI2giG46XiYL0coozKzJ2H.jpg", "order": 9}, {"name": "Kimberly Beck", "character": "Sally", "id": 2174, "credit_id": "52fe4222c3a36847f8006be5", "cast_id": 18, "profile_path": "/wt7KIBun88QLlxlXnPj7Tp9lwkB.jpg", "order": 10}, {"name": "Bruce Guerre-Berthelot", "character": "Young Jacques", "id": 2175, "credit_id": "52fe4222c3a36847f8006be9", "cast_id": 19, "profile_path": "/tHED9FH3QOFmTODqA9RKJVLzviH.jpg", "order": 11}, {"name": "Gregory Forstner", "character": "Young Enzo", "id": 2180, "credit_id": "52fe4222c3a36847f8006bed", "cast_id": 20, "profile_path": "/kgQ03l0Qz1fjrRl9VV9VyibmqCM.jpg", "order": 12}, {"name": "Claude Besson", "character": "Jacques Father", "id": 2181, "credit_id": "52fe4223c3a36847f8006bf1", "cast_id": 21, "profile_path": "/1Oaqgi9aM72jSsYi2UNEHQ6xvST.jpg", "order": 13}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006b95", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 7.8, "runtime": 168}, "176": {"poster_path": "/dHYvIgsax8ZFgkz1OslE4V6Pnf5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102000000, "overview": "Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying...", "video": false, "id": 176, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Saw", "tagline": "Live or die. Make your choice.", "vote_count": 520, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387564", "adult": false, "backdrop_path": "/fLL6WfUXvdQee1fD4xuzNnWfVBk.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}, {"name": "Evolution Entertainment", "id": 23019}], "release_date": "2004-01-19", "popularity": 1.57181116421567, "original_title": "Saw", "budget": 1200000, "cast": [{"name": "Leigh Whannell", "character": "Adam", "id": 2128, "credit_id": "52fe4223c3a36847f8006c61", "cast_id": 3, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 0}, {"name": "Cary Elwes", "character": "Dr. Lawrence Gordon", "id": 2130, "credit_id": "52fe4223c3a36847f8006c65", "cast_id": 4, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 1}, {"name": "Danny Glover", "character": "Detective David Tapp", "id": 2047, "credit_id": "52fe4223c3a36847f8006c69", "cast_id": 5, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Ken Leung", "character": "Detective Steven Sing", "id": 2131, "credit_id": "52fe4223c3a36847f8006c6d", "cast_id": 6, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 3}, {"name": "Dina Meyer", "character": "Kerry", "id": 2133, "credit_id": "52fe4223c3a36847f8006c71", "cast_id": 7, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 4}, {"name": "Mike Butters", "character": "Paul", "id": 2134, "credit_id": "52fe4223c3a36847f8006c75", "cast_id": 8, "profile_path": "/vinnp0V36UVVoMIEKaV6T1pzzhe.jpg", "order": 5}, {"name": "Paul Gutrecht", "character": "Mark", "id": 2135, "credit_id": "52fe4223c3a36847f8006c79", "cast_id": 9, "profile_path": "/jAv8rTrhNtbxKK4t0QlpVP9gtBW.jpg", "order": 6}, {"name": "Michael Emerson", "character": "Zep Hindle", "id": 2136, "credit_id": "52fe4223c3a36847f8006c7d", "cast_id": 10, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 7}, {"name": "Benito Martinez", "character": "Brett", "id": 2137, "credit_id": "52fe4223c3a36847f8006c81", "cast_id": 11, "profile_path": "/6cMiGYgjFFYY8sWITXiE0SrEnt8.jpg", "order": 8}, {"name": "Shawnee Smith", "character": "Amanda", "id": 2138, "credit_id": "52fe4223c3a36847f8006c85", "cast_id": 12, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 9}, {"name": "Makenzie Vega", "character": "Diana Gordon", "id": 2139, "credit_id": "52fe4223c3a36847f8006c89", "cast_id": 13, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 10}, {"name": "Monica Potter", "character": "Alison Gordon", "id": 2140, "credit_id": "52fe4223c3a36847f8006c8d", "cast_id": 14, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 11}, {"name": "Ned Bellamy", "character": "Jeff", "id": 2141, "credit_id": "52fe4223c3a36847f8006c91", "cast_id": 15, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 12}, {"name": "Alexandra Bokyun Chun", "character": "Carla", "id": 2142, "credit_id": "52fe4223c3a36847f8006c95", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Avner Garbi", "character": "Father", "id": 2143, "credit_id": "52fe4223c3a36847f8006c99", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Tobin Bell", "character": "John", "id": 2144, "credit_id": "52fe4223c3a36847f8006c9d", "cast_id": 18, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 15}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006c57", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 7.0, "runtime": 103}, "177": {"poster_path": "/x93W5WrOOr3PCia1cANnWmAtUwQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41895491, "overview": "Two troubled men face their terrible destinies and events of their past as they join together on a mission to find the Holy Grail and thus to save themselves.", "video": false, "id": 177, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Fisher King", "tagline": "A Modern Day Tale About The Search For Love, Sanity, Ethel Merman And The Holy Grail.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101889", "adult": false, "backdrop_path": "/tWw7e5Sn7M0aKfhDGdf2qK1GdMc.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1991-09-20", "popularity": 0.490886097062057, "original_title": "The Fisher King", "budget": 24000000, "cast": [{"name": "Jeff Bridges", "character": "Jack Lucas", "id": 1229, "credit_id": "52fe4223c3a36847f8006d0f", "cast_id": 1, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Robin Williams", "character": "Henry Sagan 'Parry'", "id": 2157, "credit_id": "52fe4223c3a36847f8006d19", "cast_id": 3, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Mercedes Ruehl", "character": "Anne Napolitano", "id": 2167, "credit_id": "52fe4223c3a36847f8006d2f", "cast_id": 7, "profile_path": "/nPsSRaDQxiviOVY8ouqTBLGaui6.jpg", "order": 2}, {"name": "Amanda Plummer", "character": "Lydia", "id": 99, "credit_id": "52fe4223c3a36847f8006d33", "cast_id": 8, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 3}, {"name": "Michael Jeter", "character": "Homeless Cabaret Singer", "id": 2169, "credit_id": "52fe4223c3a36847f8006d37", "cast_id": 9, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 4}, {"name": "Lara Harris", "character": "Sondra", "id": 11073, "credit_id": "52fe4223c3a36847f8006d4d", "cast_id": 13, "profile_path": "/8LDep1yHwovQjutfBiet0D8Azto.jpg", "order": 5}, {"name": "Kathy Najimy", "character": "Crazy video customer", "id": 11074, "credit_id": "52fe4223c3a36847f8006d51", "cast_id": 14, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 6}, {"name": "Paul Lombardi", "character": "Radio Engineer", "id": 11075, "credit_id": "52fe4223c3a36847f8006d55", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "David Hyde Pierce", "character": "Lou Rosen", "id": 11076, "credit_id": "52fe4223c3a36847f8006d59", "cast_id": 16, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 8}, {"name": "John de Lancie", "character": "TV Executive", "id": 11077, "credit_id": "52fe4223c3a36847f8006d5d", "cast_id": 17, "profile_path": "/bb3j02gYvgs5ApK2l2qKCweYW5z.jpg", "order": 9}, {"name": "Lisa Blades", "character": "Parry's Wife", "id": 11078, "credit_id": "52fe4223c3a36847f8006d61", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Adam Bryant", "character": "Radio Engineer", "id": 981542, "credit_id": "52fe4223c3a36847f8006d77", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Ted Ross", "character": "Limo Bum", "id": 57357, "credit_id": "52fe4223c3a36847f8006d7b", "cast_id": 23, "profile_path": "/d9zdWKzAwNalU0BLwOM0aM2xlww.jpg", "order": 12}, {"name": "Warren Olney", "character": "TV Anchorman", "id": 1075039, "credit_id": "52fe4223c3a36847f8006d7f", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Frazer Smith", "character": "News Reporter", "id": 170237, "credit_id": "52fe4223c3a36847f8006d83", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Harry Shearer", "character": "Sitcom Actor Ben Starr", "id": 6008, "credit_id": "52fe4223c3a36847f8006d87", "cast_id": 26, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 15}, {"name": "Melinda Culea", "character": "Sitcom Wife", "id": 105704, "credit_id": "52fe4223c3a36847f8006d8b", "cast_id": 27, "profile_path": "/7rfhpMYQBDA8YGMSaUTp0oQYLiF.jpg", "order": 16}, {"name": "James Remini", "character": "Bum at Hotel", "id": 1075040, "credit_id": "52fe4223c3a36847f8006d8f", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Mark Bowden", "character": "Doorman", "id": 12782, "credit_id": "52fe4223c3a36847f8006d93", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "John Ottavino", "character": "Father at Hotel", "id": 171301, "credit_id": "52fe4223c3a36847f8006d97", "cast_id": 30, "profile_path": null, "order": 19}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006d15", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.1, "runtime": 137}, "62835": {"poster_path": "/tJIWuZC4ZVUJdVHXJfefUDzS2BX.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 64856065, "overview": "Zoe Saldana plays a young woman who, after witnessing her parents\u2019 murder as a child in Bogota, grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.", "video": false, "id": 62835, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Colombiana", "tagline": "Revenge is beautiful.", "vote_count": 293, "homepage": "http://www.colombiana-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1657507", "adult": false, "backdrop_path": "/uo5krr5i4q33TlHhTHI3PmpVjJu.jpg", "production_companies": [{"name": "A.J.O.Z. Films", "id": 11473}, {"name": "EuropaCorp", "id": 6896}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Grive Productions", "id": 6877}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2011-08-26", "popularity": 1.23969225371948, "original_title": "Colombiana", "budget": 40000000, "cast": [{"name": "Zoe Saldana", "character": "Cataleya Restrepo", "id": 8691, "credit_id": "52fe468fc3a368484e097593", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 0}, {"name": "Cliff Curtis", "character": "Emilio", "id": 7248, "credit_id": "52fe468fc3a368484e097597", "cast_id": 4, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 1}, {"name": "Callum Blue", "character": "Richard", "id": 68287, "credit_id": "52fe468fc3a368484e09759b", "cast_id": 5, "profile_path": "/jEeLPZg7GlNhdkAmtPQXLGqOMZF.jpg", "order": 2}, {"name": "Michael Vartan", "character": "Danny Delanay", "id": 15424, "credit_id": "52fe468fc3a368484e09759f", "cast_id": 6, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 3}, {"name": "Lennie James", "character": "Special Agent Ross", "id": 1120, "credit_id": "52fe468fc3a368484e0975a3", "cast_id": 7, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 4}, {"name": "Amandla Stenberg", "character": "Cataleya Restrepo (Age10)", "id": 561869, "credit_id": "52fe468fc3a368484e0975ad", "cast_id": 9, "profile_path": "/zbsIVoRHTw3VmQ18O7xUaSfIQBE.jpg", "order": 5}, {"name": "Graham McTavish", "character": "Head Marshall Warren", "id": 95047, "credit_id": "52fe468fc3a368484e0975b1", "cast_id": 11, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 6}, {"name": "Jesse Borrego", "character": "Fabio", "id": 58647, "credit_id": "52fe468fc3a368484e0975b5", "cast_id": 12, "profile_path": "/cJkz421gRMJPWWMd7nLxgSuUZfY.jpg", "order": 7}, {"name": "Beto Benites", "character": "Don Luis", "id": 1023670, "credit_id": "52fe468fc3a368484e0975d1", "cast_id": 19, "profile_path": "/gWQq2vej5Q1EXjrTGNR8oggr2rg.jpg", "order": 8}, {"name": "Cynthia Addai-Robinson", "character": "Alicia", "id": 182272, "credit_id": "52fe468fc3a368484e0975d5", "cast_id": 21, "profile_path": "/sVHW4dPZFiLjtYUnxmennc47d0l.jpg", "order": 9}, {"name": "Angel Garnica", "character": "Pepe", "id": 1023671, "credit_id": "52fe468fc3a368484e0975d9", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Ofelia Medina", "character": "Mama", "id": 104982, "credit_id": "52fe468fc3a368484e0975dd", "cast_id": 23, "profile_path": "/5vFhaAtxmbNnpacSRCPkLvOxGY2.jpg", "order": 11}, {"name": "Sam Douglas", "character": "William Woodgard", "id": 17072, "credit_id": "52fe468fc3a368484e0975e1", "cast_id": 24, "profile_path": "/5ZcldKZ1PDmf2gzTL3LA671PNZL.jpg", "order": 12}, {"name": "Graham McTavish", "character": "Head Marshall Warren", "id": 95047, "credit_id": "52fe468fc3a368484e0975e5", "cast_id": 25, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 13}, {"name": "Charles Maquignon", "character": "Sergeant Bill Attwood", "id": 185296, "credit_id": "52fe468fc3a368484e0975e9", "cast_id": 26, "profile_path": "/eHOiahagStCC3TssKOEpvulstY9.jpg", "order": 14}, {"name": "Jordi Moll\u00e0", "character": "Marco", "id": 31384, "credit_id": "52fe468fc3a368484e0975ed", "cast_id": 27, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 15}, {"name": "Affif Ben Badra", "character": "Genarro Rizzo", "id": 54807, "credit_id": "52fe468fc3a368484e0975f1", "cast_id": 28, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 16}, {"name": "Mark De Alessandro", "character": "SWAT", "id": 16500, "credit_id": "53b7236fc3a3685eb1002df7", "cast_id": 76, "profile_path": null, "order": 17}, {"name": "Max Martini", "character": "Agent Robert Williams", "id": 94864, "credit_id": "53b72398c3a3685ebd002e60", "cast_id": 77, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 18}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "52fe468fc3a368484e097589", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 6.4, "runtime": 108}, "180": {"poster_path": "/7Sr9kOW70nxR9CreAozC7KaNP9y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 358372926, "overview": "John Anderton is a top \"Precrime\" cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge. Can Anderton find a glitch in the system and prove his innocence before it's too late?", "video": false, "id": 180, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Minority Report", "tagline": "The system is perfect until it comes after you.", "vote_count": 876, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0181689", "adult": false, "backdrop_path": "/u8BvwuiiQ0uLFuXviKJU0cCHXIW.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Ronald Shusett/Gary Goldman", "id": 26265}], "release_date": "2002-06-20", "popularity": 1.55606656793976, "original_title": "Minority Report", "budget": 102000000, "cast": [{"name": "Tom Cruise", "character": "Chief John Anderton", "id": 500, "credit_id": "52fe4223c3a36847f8006f53", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Max von Sydow", "character": "Pre-Crime Director Lamar Burgess", "id": 2201, "credit_id": "52fe4223c3a36847f8006f57", "cast_id": 6, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 1}, {"name": "Steve Harris", "character": "Jad", "id": 2202, "credit_id": "52fe4223c3a36847f8006f5b", "cast_id": 7, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 2}, {"name": "Neal McDonough", "character": "Officer Gordon 'Fletch' Fletcher", "id": 2203, "credit_id": "52fe4223c3a36847f8006f5f", "cast_id": 8, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 3}, {"name": "Jessica Capshaw", "character": "Evanna", "id": 2205, "credit_id": "52fe4223c3a36847f8006f63", "cast_id": 10, "profile_path": "/iQL4ePgdr4sPXlvmotUieHrrGWF.jpg", "order": 4}, {"name": "Colin Farrell", "character": "Danny Witwer", "id": 72466, "credit_id": "52fe4223c3a36847f8006f67", "cast_id": 11, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 5}, {"name": "Samantha Morton", "character": "Agatha", "id": 2206, "credit_id": "52fe4223c3a36847f8006f6b", "cast_id": 12, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 6}, {"name": "Lois Smith", "character": "Dr. Iris Hineman", "id": 2207, "credit_id": "52fe4223c3a36847f8006f6f", "cast_id": 13, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 7}, {"name": "Kathryn Morris", "character": "Lara Clarke Anderton", "id": 2208, "credit_id": "52fe4223c3a36847f8006f73", "cast_id": 14, "profile_path": "/kacv3Og9yU1bp6RJGb4Asnhsavt.jpg", "order": 8}, {"name": "Peter Stormare", "character": "Dr. Solomon Eddie", "id": 53, "credit_id": "52fe4223c3a36847f8006f77", "cast_id": 15, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 9}, {"name": "Paul Wesley", "character": "Nathan with Bicycle", "id": 83141, "credit_id": "52fe4223c3a36847f8006fc9", "cast_id": 29, "profile_path": "/arhkjiCDzV9GxwKWIqBt095tnna.jpg", "order": 10}, {"name": "Patrick Kilpatrick", "character": "Officer Jeff Knott", "id": 32286, "credit_id": "52fe4223c3a36847f8006fcd", "cast_id": 30, "profile_path": "/wEu61ecaSkCN1mD4vXf5WlrUKTV.jpg", "order": 11}, {"name": "Keith Campbell", "character": "Pre-Crime Cop", "id": 15318, "credit_id": "53b95639c3a3685eba005605", "cast_id": 32, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 12}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006f3d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.6, "runtime": 145}, "8373": {"poster_path": "/kVISXAXDYhjQCfu50QZeCCzzbPv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 836297228, "overview": "Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.", "video": false, "id": 8373, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers: Revenge of the Fallen", "tagline": "Revenge is coming.", "vote_count": 1399, "homepage": "http://www.transformersmovie.com/", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1055369", "adult": false, "backdrop_path": "/tg7UGXaUROpzY5ppPh7dnvy4l7P.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Paramount Pictures", "id": 4}, {"name": "Hasbro", "id": 2598}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2009-06-23", "popularity": 0.643275289443288, "original_title": "Transformers: Revenge of the Fallen", "budget": 150000000, "cast": [{"name": "Shia LaBeouf", "character": "Sam Witwicky", "id": 10959, "credit_id": "52fe44a3c3a36847f80a19f3", "cast_id": 5, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Megan Fox", "character": "Mikaela Banes", "id": 19537, "credit_id": "52fe44a3c3a36847f80a19f7", "cast_id": 6, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 1}, {"name": "Josh Duhamel", "character": "Captain Lennox", "id": 19536, "credit_id": "52fe44a3c3a36847f80a19fb", "cast_id": 7, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 2}, {"name": "Rainn Wilson", "character": "College Professor", "id": 11678, "credit_id": "52fe44a3c3a36847f80a19ff", "cast_id": 8, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 3}, {"name": "Tyrese Gibson", "character": "USAF Tech Sergeant Epps", "id": 8169, "credit_id": "52fe44a3c3a36847f80a1a03", "cast_id": 9, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 4}, {"name": "John Turturro", "character": "Agent Simmons", "id": 1241, "credit_id": "52fe44a3c3a36847f80a1a07", "cast_id": 10, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 5}, {"name": "Kevin Dunn", "character": "Ron Witwicky", "id": 14721, "credit_id": "52fe44a3c3a36847f80a1a1d", "cast_id": 14, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 6}, {"name": "Julie White", "character": "Judy Witwicky", "id": 24305, "credit_id": "52fe44a3c3a36847f80a1a21", "cast_id": 15, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 7}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Leo Spitz", "id": 72985, "credit_id": "52fe44a3c3a36847f80a1a25", "cast_id": 16, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 8}, {"name": "Isabel Lucas", "character": "Alice", "id": 103554, "credit_id": "52fe44a3c3a36847f80a1a29", "cast_id": 17, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 9}, {"name": "Glenn Morshower", "character": "General Morshower", "id": 12797, "credit_id": "52fe44a3c3a36847f80a1a2d", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 10}, {"name": "Hugo Weaving", "character": "Megatron (voice)", "id": 1331, "credit_id": "52fe44a3c3a36847f80a1a31", "cast_id": 19, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 11}, {"name": "Marc Evan Jackson", "character": "Commander, US Central Command", "id": 141956, "credit_id": "530580e2c3a36816bc0e90ce", "cast_id": 20, "profile_path": "/739YCwcRkcTnbyCHD0Qo526bTrG.jpg", "order": 12}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a19dd", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.1, "runtime": 150}, "8374": {"poster_path": "/fg6fhyKg3vbdGtnf9Hq27Q5gS3r.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30471, "overview": "With a God-inspired moral obligation to act against evil, twin brothers Conner and Murphy set out to rid Boston of criminals. However, rather than working within the system, these Irish Americans decide to take swift retribution into their own hands.", "video": false, "id": 8374, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Boondock Saints", "tagline": "Thy Kingdom Come. Thy Will Be Done.", "vote_count": 231, "homepage": "http://www.theboondocksaints.com", "belongs_to_collection": {"backdrop_path": "/9VUPq4aFG5VVTFGkv9z5pCD3GSn.jpg", "poster_path": "/u4hp2I1DgWw2ZnkX2VTZDixGP87.jpg", "id": 87186, "name": "The Boondock Saints Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0144117", "adult": false, "backdrop_path": "/zL6GpSqaEyRwNMkqKVXsROinzSa.jpg", "production_companies": [{"name": "Franchise Pictures", "id": 1403}, {"name": "Brood Syndicate", "id": 11342}, {"name": "B.D.S. Productions Inc.", "id": 20088}], "release_date": "1999-01-22", "popularity": 0.828773777254972, "original_title": "The Boondock Saints", "budget": 6000000, "cast": [{"name": "Willem Dafoe", "character": "Paul Smecker", "id": 5293, "credit_id": "52fe44a3c3a36847f80a1a6b", "cast_id": 1, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 0}, {"name": "Norman Reedus", "character": "Murphy McManus", "id": 4886, "credit_id": "52fe44a3c3a36847f80a1a6f", "cast_id": 2, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 1}, {"name": "Sean Patrick Flanery", "character": "Connor McManus", "id": 54789, "credit_id": "52fe44a3c3a36847f80a1a73", "cast_id": 3, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 2}, {"name": "David Della Rocco", "character": "Rocco", "id": 54790, "credit_id": "52fe44a3c3a36847f80a1a77", "cast_id": 4, "profile_path": "/pgzIf45tq5R58K9ZWMlrAa9J62Z.jpg", "order": 3}, {"name": "David Ferry", "character": "Detective Dolly", "id": 54791, "credit_id": "52fe44a3c3a36847f80a1a7b", "cast_id": 5, "profile_path": "/bzz3Vx2QavSL6ODXDLubvFR3L54.jpg", "order": 4}, {"name": "Brian Mahoney", "character": "Detective Duffy", "id": 54792, "credit_id": "52fe44a3c3a36847f80a1a7f", "cast_id": 6, "profile_path": "/v6pTsqgOHE5TldFV63Kr44idQNe.jpg", "order": 5}, {"name": "Billy Connolly", "character": "II Duce", "id": 9188, "credit_id": "52fe44a3c3a36847f80a1a83", "cast_id": 7, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 6}, {"name": "Carlo Rota", "character": "Yakavetta", "id": 54793, "credit_id": "52fe44a3c3a36847f80a1a87", "cast_id": 8, "profile_path": "/arfSlKjQqBWV77Tyu0jjASnvFII.jpg", "order": 7}, {"name": "Ron Jeremy", "character": "Vincenzo Lipazzi", "id": 42545, "credit_id": "52fe44a3c3a36847f80a1a8b", "cast_id": 9, "profile_path": "/l4aDQlLafsG3N4pJ3W6YjpMXWI3.jpg", "order": 8}, {"name": "Bob Marley", "character": "Detective Greenly", "id": 105776, "credit_id": "52fe44a4c3a36847f80a1ae9", "cast_id": 25, "profile_path": "/qtvL2i75yqBZ0kpUgbHfR11OVwG.jpg", "order": 9}, {"name": "Richard Fitzpatrick", "character": "The Chief", "id": 44103, "credit_id": "52fe44a4c3a36847f80a1aed", "cast_id": 26, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 10}], "directors": [{"name": "Troy Duffy", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a1a91", "profile_path": "/2Rsz5SXZruHG5LqswvEeD62pXLl.jpg", "id": 54795}], "vote_average": 6.9, "runtime": 108}, "184": {"poster_path": "/5AiK0vIBuhC6sXlDMLEyHOc8Laj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39673162, "overview": "Jackie Brown is a flight attendant who gets caught in the middle of smuggling cash into the country for her gunrunner boss. When the cops try to use Jackie to get to her boss, she hatches a plan\u2014with help from a bail bondsman\u2014to keep the money for herself. Based on Elmore Leonard's novel \u201cRum Punch\u201d.", "video": false, "id": 184, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Jackie Brown", "tagline": "Six players on the trail of a half a million in Cash. There's only one question... Who's playing who?", "vote_count": 288, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119396", "adult": false, "backdrop_path": "/oT8RNPVSaZzEhimXcWihQxQPxKy.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "1997-12-24", "popularity": 0.801363197361493, "original_title": "Jackie Brown", "budget": 12000000, "cast": [{"name": "Pam Grier", "character": "Jackie Brown", "id": 2230, "credit_id": "52fe4223c3a36847f80070ef", "cast_id": 2, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Ordell Robbie", "id": 2231, "credit_id": "52fe4223c3a36847f80070f3", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Robert Forster", "character": "Max Cherry", "id": 5694, "credit_id": "52fe4224c3a36847f800710f", "cast_id": 10, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 2}, {"name": "Bridget Fonda", "character": "Melanie Ralston", "id": 2233, "credit_id": "52fe4224c3a36847f800713b", "cast_id": 18, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 3}, {"name": "Michael Keaton", "character": "Ray Nicolette", "id": 2232, "credit_id": "52fe4223c3a36847f80070f7", "cast_id": 5, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 4}, {"name": "Robert De Niro", "character": "Louis Gara", "id": 380, "credit_id": "52fe4224c3a36847f8007147", "cast_id": 22, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 5}, {"name": "Michael Bowen", "character": "Mark Dargus", "id": 2234, "credit_id": "52fe4223c3a36847f80070fb", "cast_id": 6, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 6}, {"name": "Chris Tucker", "character": "Beaumont Livingston", "id": 66, "credit_id": "52fe4223c3a36847f80070ff", "cast_id": 7, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 7}, {"name": "Lisa Gay Hamilton", "character": "Sheronda", "id": 64908, "credit_id": "52fe4224c3a36847f800713f", "cast_id": 19, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 8}, {"name": "Tommy Lister", "character": "Winston", "id": 8396, "credit_id": "52fe4224c3a36847f8007143", "cast_id": 20, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 9}, {"name": "Sid Haig", "character": "Judge", "id": 5695, "credit_id": "52fe4224c3a36847f8007113", "cast_id": 11, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 10}, {"name": "Aimee Graham", "character": "Amy, Billingsley Sales Girl", "id": 35545, "credit_id": "52fe4224c3a36847f800714b", "cast_id": 23, "profile_path": "/nWcKO2LokRckgnRWywWlRfyIUyX.jpg", "order": 11}, {"name": "Ellis Williams", "character": "Cockatoo Bartender", "id": 169705, "credit_id": "52fe4224c3a36847f800714f", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Tangie Ambrose", "character": "Billingsley Sales Girl #2", "id": 97260, "credit_id": "52fe4224c3a36847f8007153", "cast_id": 25, "profile_path": "/xyNaxHNwD3ZXx74jRRIqHXCDaW7.jpg", "order": 13}, {"name": "T'Keyah Crystal Keymah", "character": "Raynelle, Ordell's Junkie Friend", "id": 534301, "credit_id": "52fe4224c3a36847f8007157", "cast_id": 26, "profile_path": "/10xtbGjEHEmxxUlfEVe5d1O1bQx.jpg", "order": 14}, {"name": "Vanessia Valentino", "character": "Cabo Flight Attendant", "id": 1265427, "credit_id": "52fe4224c3a36847f800715b", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Diana Uribe", "character": "Anita Lopez", "id": 1214957, "credit_id": "52fe4224c3a36847f800715f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Renee Kelly", "character": "Cocktail Waitress", "id": 1265428, "credit_id": "52fe4224c3a36847f8007163", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Elizabeth McInerney", "character": "Bartender at Sam's", "id": 1265429, "credit_id": "52fe4224c3a36847f8007167", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Colleen Mayne", "character": "Girl at Security Gate", "id": 1265430, "credit_id": "52fe4224c3a36847f800716b", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Laura Lovelace", "character": "Steakhouse Waitress", "id": 11807, "credit_id": "52fe4224c3a36847f800716f", "cast_id": 32, "profile_path": "/hty1tWzaBThqc6AwuBlpanIeT4x.jpg", "order": 20}, {"name": "Christine Lydon", "character": "Tec-9 Sidney - Chicks Who Love Guns", "id": 106886, "credit_id": "52fe4224c3a36847f8007173", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Julia Ervin", "character": "Steyr AUG Cindy - Chicks Who Love Guns", "id": 1265431, "credit_id": "52fe4224c3a36847f8007177", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Juliet Long", "character": "AK-47 Gloria - Chicks Who Love Guns", "id": 1265432, "credit_id": "52fe4224c3a36847f800717b", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Michelle Berube", "character": "Baretta 12S Brittany - Chicks Who Love Guns", "id": 1265433, "credit_id": "52fe4224c3a36847f800717f", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Gillian Iliana-Waters", "character": "Mossberg 500 Tammy Jo - Chicks Who Love Guns", "id": 1265434, "credit_id": "52fe4224c3a36847f8007183", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Candice Briese", "character": "The Deputy", "id": 1265435, "credit_id": "52fe4224c3a36847f8007187", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Gary Mann", "character": "The Deputy", "id": 1265436, "credit_id": "52fe4224c3a36847f800718b", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Jeffrey Deedrick", "character": "The Sheriff", "id": 1265437, "credit_id": "52fe4224c3a36847f800718f", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Roy Nesvold", "character": "The Sheriff", "id": 1265438, "credit_id": "52fe4224c3a36847f8007193", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Herbert Hans Wilmsen", "character": "The Sheriff", "id": 1265439, "credit_id": "52fe4224c3a36847f8007197", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Hattie Winston", "character": "Simone", "id": 1212688, "credit_id": "52fe4224c3a36847f800719b", "cast_id": 43, "profile_path": "/dwiglObCKhTDJsp6Rn8KsHfFWmz.jpg", "order": 31}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f80070eb", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 6.9, "runtime": 154}, "185": {"poster_path": "/hJYwfHxh9O7lyF7hTIT7ZoP8FYQ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26589000, "overview": "The head of a gang of toughs, in an insensitive futuristic society, is conditioned to become physically ill at sex and violence during a prison sentence. When he is released, he's brutally beaten by all of his old adversaries.", "video": false, "id": 185, "genres": [{"id": 18, "name": "Drama"}], "title": "A Clockwork Orange", "tagline": "Being the adventures of a young man whose principal interests are rape, ultra-violence and Beethoven. Money isn't everything!", "vote_count": 825, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066921", "adult": false, "backdrop_path": "/cuajHs7j41RiENdWMjimuGyna9A.jpg", "production_companies": [{"name": "Hawk Films", "id": 88}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1971-12-18", "popularity": 1.64134279980176, "original_title": "A Clockwork Orange", "budget": 2200000, "cast": [{"name": "Malcolm McDowell", "character": "Alexander de Large", "id": 56890, "credit_id": "52fe4224c3a36847f80071e5", "cast_id": 4, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 0}, {"name": "Patrick Magee", "character": "Mr. Alexander", "id": 2264, "credit_id": "52fe4224c3a36847f80071e9", "cast_id": 5, "profile_path": "/97RYoo5XQj0R8rr5Fvua9HlB55E.jpg", "order": 1}, {"name": "Adrienne Corri", "character": "Mrs. Alexander", "id": 2265, "credit_id": "52fe4224c3a36847f80071ed", "cast_id": 6, "profile_path": "/fEO6V3zvvyWpviIvEdJ8jSLkTL1.jpg", "order": 2}, {"name": "Michael Bates", "character": "Chief Guard", "id": 2267, "credit_id": "52fe4224c3a36847f80071f1", "cast_id": 7, "profile_path": "/ftE2KiyBW8inxUWhJqnv4iPhGik.jpg", "order": 3}, {"name": "Warren Clarke", "character": "Dim", "id": 2268, "credit_id": "52fe4224c3a36847f80071f5", "cast_id": 8, "profile_path": "/baucXNIzHXSMxIZfsKzr8P0xiXI.jpg", "order": 4}, {"name": "James Marcus", "character": "Georgie", "id": 2270, "credit_id": "52fe4224c3a36847f80071f9", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Michael Tarn", "character": "Pete", "id": 2271, "credit_id": "52fe4224c3a36847f80071fd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Carl Duering", "character": "Dr. Brodsky", "id": 2272, "credit_id": "52fe4224c3a36847f8007201", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Paul Farrell", "character": "Tramp", "id": 2273, "credit_id": "52fe4224c3a36847f8007205", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Miriam Karlin", "character": "Catlady", "id": 2274, "credit_id": "52fe4224c3a36847f8007209", "cast_id": 13, "profile_path": "/8X7n8x3IOFjIj7BbZAIetywbuyU.jpg", "order": 9}, {"name": "Sheila Raynor", "character": "Mum", "id": 2276, "credit_id": "52fe4224c3a36847f800720d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Aubrey Morris", "character": "Mr. P. R. Deltoid", "id": 2278, "credit_id": "52fe4224c3a36847f8007211", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Godfrey Quigley", "character": "Prison Chaplain", "id": 2279, "credit_id": "52fe4224c3a36847f8007215", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Clive Francis", "character": "Lodger", "id": 2280, "credit_id": "52fe4224c3a36847f8007219", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Richard Connaught", "character": "Billy Boy (gang leader)", "id": 2290, "credit_id": "52fe4224c3a36847f800723b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Pauline Taylor", "character": "Psychiatrist", "id": 2292, "credit_id": "52fe4224c3a36847f800723f", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Philip Stone", "character": "Dad", "id": 694, "credit_id": "52fe4224c3a36847f8007243", "cast_id": 27, "profile_path": "/qtaBPJZC7MpoyWfcyXJ1zdEfYwU.jpg", "order": 16}, {"name": "David Prowse", "character": "Bodyguard", "id": 24342, "credit_id": "54cc705ec3a3687f8f000b6f", "cast_id": 34, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 17}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f80071db", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.3, "runtime": 136}, "186": {"poster_path": "/jtKq0EtothAzWlnRBBWGCA8uFuu.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56308881, "overview": "Slevin is mistakenly put in the middle of a personal war between the city\u2019s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma. A film with many twists and turns.", "video": false, "id": 186, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Lucky Number Slevin", "tagline": "Wrong Time. Wrong Place. Wrong Number.", "vote_count": 402, "homepage": "http://www.slevin-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425210", "adult": false, "backdrop_path": "/8nvayG5l0urcjvvpszoECDqLWzD.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "FilmEngine", "id": 816}, {"name": "Capitol Films", "id": 826}, {"name": "Ascendant Pictures", "id": 1204}, {"name": "VIP Medienfonds 4", "id": 2116}, {"name": "The Complex Studio", "id": 21962}], "release_date": "2006-04-07", "popularity": 0.648597155386775, "original_title": "Lucky Number Slevin", "budget": 27000000, "cast": [{"name": "Josh Hartnett", "character": "Slevin", "id": 2299, "credit_id": "52fe4224c3a36847f80072b5", "cast_id": 7, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Bruce Willis", "character": "Mr. Goodkat", "id": 62, "credit_id": "52fe4224c3a36847f80072ab", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 1}, {"name": "Lucy Liu", "character": "Lindsey", "id": 140, "credit_id": "52fe4224c3a36847f800729f", "cast_id": 2, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "The Boss", "id": 192, "credit_id": "52fe4224c3a36847f800729b", "cast_id": 1, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Ben Kingsley", "character": "The Rabbi", "id": 2282, "credit_id": "52fe4224c3a36847f80072a3", "cast_id": 3, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 4}, {"name": "Michael Rubenfeld", "character": "Yitzchok", "id": 205104, "credit_id": "52fe4224c3a36847f8007301", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Peter Outerbridge", "character": "Dumbrowski", "id": 12978, "credit_id": "52fe4224c3a36847f8007305", "cast_id": 21, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Det. Brikowski", "id": 2283, "credit_id": "52fe4224c3a36847f80072a7", "cast_id": 4, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Kevin Chamberlin", "character": "Marty", "id": 34395, "credit_id": "52fe4224c3a36847f8007309", "cast_id": 22, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 8}, {"name": "Dorian Missick", "character": "Elvis", "id": 26718, "credit_id": "52fe4224c3a36847f800730d", "cast_id": 23, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 9}, {"name": "Mykelti Williamson", "character": "Sloe", "id": 34, "credit_id": "52fe4224c3a36847f8007311", "cast_id": 24, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 10}, {"name": "Scott Gibson", "character": "Max", "id": 63859, "credit_id": "52fe4224c3a36847f8007315", "cast_id": 25, "profile_path": "/7eyU1bC6wrXs9D1O67HlfufCpfN.jpg", "order": 11}, {"name": "Corey Stoll", "character": "Saul", "id": 74541, "credit_id": "52fe4224c3a36847f800731d", "cast_id": 27, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 12}, {"name": "Robert Forster", "character": "Murphy", "id": 5694, "credit_id": "52fe4224c3a36847f8007319", "cast_id": 26, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 13}, {"name": "Sam Jaeger", "character": "Nick Fisher", "id": 65727, "credit_id": "52fe4224c3a36847f8007321", "cast_id": 28, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 14}, {"name": "Danny Aiello", "character": "Roth", "id": 1004, "credit_id": "52fe4224c3a36847f8007325", "cast_id": 29, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 15}], "directors": [{"name": "Paul McGuigan", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f80072b1", "profile_path": "/6p6uzaEtKfx7ota7AdQXlantt5W.jpg", "id": 2291}], "vote_average": 7.1, "runtime": 110}, "187": {"poster_path": "/n6vLv4kg6VNpi2tQVIo9vyAVMjU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 158733820, "overview": "Sin City is a neo-noir crime thriller based on Frank Miller's graphic novel series of the same name.The film is primarily based on three of Miller's works: The Hard Goodbye, about a man who embarks on a brutal rampage in search of his one-time sweetheart's killer; The Big Fat Kill, which focuses on a street war between a group of prostitutes and a group of mercenaries; and That Yellow Bastard, which follows an aging police officer who protects a young woman from a grotesquely disfigured serial killer.", "video": false, "id": 187, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Sin City", "tagline": "Walk down the right back alley in Sin City and you can find anything...", "vote_count": 918, "homepage": "http://hd24hr.blogspot.com/2014/08/sin-city.html", "belongs_to_collection": {"backdrop_path": "/qs200GlvLNIQKUns6AIeLcJWtPT.jpg", "poster_path": "/aGgHxGVmjssn7lw1ZucY5U2gI8K.jpg", "id": 135179, "name": "Sin City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0401792", "adult": false, "backdrop_path": "/my81Hjt7NpZhaMX9bHi4wVhFy0v.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Troublemaker Studios", "id": 10807}], "release_date": "2005-03-31", "popularity": 1.63379361714434, "original_title": "Sin City", "budget": 40000000, "cast": [{"name": "Bruce Willis", "character": "Hartigan", "id": 62, "credit_id": "52fe4224c3a36847f800737f", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Mickey Rourke", "character": "Marv", "id": 2295, "credit_id": "52fe4224c3a36847f8007383", "cast_id": 6, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 1}, {"name": "Clive Owen", "character": "Dwight", "id": 2296, "credit_id": "52fe4224c3a36847f8007387", "cast_id": 7, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 2}, {"name": "Jessica Alba", "character": "Nancy Callahan", "id": 56731, "credit_id": "52fe4224c3a36847f800738b", "cast_id": 8, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 3}, {"name": "Elijah Wood", "character": "Kevin", "id": 109, "credit_id": "52fe4224c3a36847f800738f", "cast_id": 9, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 4}, {"name": "Josh Hartnett", "character": "The Salesman", "id": 2299, "credit_id": "52fe4224c3a36847f8007393", "cast_id": 10, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 5}, {"name": "Jaime King", "character": "Goldie/Wendy", "id": 5915, "credit_id": "52fe4224c3a36847f80073c7", "cast_id": 19, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 6}, {"name": "Rutger Hauer", "character": "Cardinal Roark", "id": 585, "credit_id": "52fe4224c3a36847f80073cb", "cast_id": 20, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 7}, {"name": "Benicio del Toro", "character": "Jackie Boy", "id": 1121, "credit_id": "52fe4224c3a36847f80073cf", "cast_id": 21, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 8}, {"name": "Rosario Dawson", "character": "Gail", "id": 5916, "credit_id": "52fe4224c3a36847f80073d3", "cast_id": 22, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 9}, {"name": "Michael Clarke Duncan", "character": "Manute", "id": 61981, "credit_id": "52fe4224c3a36847f80073d7", "cast_id": 23, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 10}, {"name": "Devon Aoki", "character": "Miho", "id": 6278, "credit_id": "52fe4224c3a36847f80073db", "cast_id": 24, "profile_path": "/mytZpvb5lykocoOCDelFy8Eqezm.jpg", "order": 11}, {"name": "Alexis Bledel", "character": "Becky", "id": 6279, "credit_id": "52fe4224c3a36847f80073df", "cast_id": 25, "profile_path": "/soIlyGwryTHV4Y7LNn1tDejT4TC.jpg", "order": 12}, {"name": "Brittany Murphy", "character": "Shellie", "id": 328, "credit_id": "52fe4224c3a36847f80073f7", "cast_id": 31, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 13}, {"name": "Powers Boothe", "character": "Senator Roark", "id": 6280, "credit_id": "52fe4224c3a36847f80073e3", "cast_id": 26, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 14}, {"name": "Marley Shelton", "character": "The Customer", "id": 6407, "credit_id": "52fe4224c3a36847f80073e7", "cast_id": 27, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 15}, {"name": "Nick Stahl", "character": "Roark Jr./The Yellow Bastard", "id": 6408, "credit_id": "52fe4224c3a36847f80073eb", "cast_id": 28, "profile_path": "/2QYVx2D71lY2MfRbluC8PPyLMlH.jpg", "order": 16}, {"name": "Michael Madsen", "character": "Bob", "id": 147, "credit_id": "52fe4224c3a36847f80073ef", "cast_id": 29, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 17}, {"name": "Carla Gugino", "character": "Lucille", "id": 17832, "credit_id": "52fe4224c3a36847f80073fb", "cast_id": 32, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 18}, {"name": "Makenzie Vega", "character": "Nancy (11 Years)", "id": 2139, "credit_id": "52fe4224c3a36847f80073f3", "cast_id": 30, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 19}, {"name": "Frank Miller", "character": "Priest", "id": 2293, "credit_id": "52fe4224c3a36847f8007405", "cast_id": 34, "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "order": 20}, {"name": "Nick Offerman", "character": "Shlubb", "id": 17039, "credit_id": "54caacc9925141678c01242f", "cast_id": 37, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 21}], "directors": [{"name": "Frank Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f800736f", "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "id": 2293}, {"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f8007375", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 7.1, "runtime": 124}, "189": {"poster_path": "/k80qKrJ0qQ6ocVo5N932stNSg6j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39407616, "overview": "Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.", "video": false, "id": 189, "genres": [{"id": 80, "name": "Crime"}], "title": "Sin City: A Dame to Kill For", "tagline": "There is no justice without sin.", "vote_count": 413, "homepage": "http://sincity-2.com/", "belongs_to_collection": {"backdrop_path": "/qs200GlvLNIQKUns6AIeLcJWtPT.jpg", "poster_path": "/aGgHxGVmjssn7lw1ZucY5U2gI8K.jpg", "id": 135179, "name": "Sin City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458481", "adult": false, "backdrop_path": "/khzRw7ZDE3NIrYpe0RYyB864FPT.jpg", "production_companies": [{"name": "Residaco", "id": 41658}, {"name": "Miramax Films", "id": 14}, {"name": "Troublemaker Studios", "id": 10807}, {"name": "Aldamisa Entertainment", "id": 11006}, {"name": "Demarest Films", "id": 13241}, {"name": "Solipsist Film", "id": 29076}, {"name": "AR Films", "id": 11005}], "release_date": "2014-08-22", "popularity": 3.86485611134035, "original_title": "Sin City: A Dame to Kill For", "budget": 65000000, "cast": [{"name": "Mickey Rourke", "character": "Marv", "id": 2295, "credit_id": "52fe4224c3a36847f800744d", "cast_id": 5, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Nancy", "id": 56731, "credit_id": "52fe4224c3a36847f8007443", "cast_id": 3, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Dwight", "id": 16851, "credit_id": "52fe4224c3a36847f8007471", "cast_id": 16, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Joseph Gordon-Levitt", "character": "Johnny", "id": 24045, "credit_id": "52fe4224c3a36847f8007465", "cast_id": 13, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 3}, {"name": "Rosario Dawson", "character": "Gail", "id": 5916, "credit_id": "52fe4224c3a36847f8007459", "cast_id": 8, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 4}, {"name": "Bruce Willis", "character": "Hartigan", "id": 62, "credit_id": "52fe4224c3a36847f8007491", "cast_id": 24, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 5}, {"name": "Eva Green", "character": "Ava", "id": 10912, "credit_id": "52fe4224c3a36847f8007479", "cast_id": 18, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 6}, {"name": "Powers Boothe", "character": "Senator Roark", "id": 6280, "credit_id": "52fe4224c3a36847f8007475", "cast_id": 17, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 7}, {"name": "Dennis Haysbert", "character": "Manute", "id": 352, "credit_id": "52fe4224c3a36847f8007469", "cast_id": 14, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 8}, {"name": "Ray Liotta", "character": "Joey", "id": 11477, "credit_id": "52fe4224c3a36847f8007481", "cast_id": 20, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 9}, {"name": "Christopher Meloni", "character": "Mort", "id": 22227, "credit_id": "52fe4224c3a36847f8007485", "cast_id": 21, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 10}, {"name": "Jeremy Piven", "character": "Bob", "id": 12799, "credit_id": "53fc02300e0a267a78009402", "cast_id": 27, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 11}, {"name": "Christopher Lloyd", "character": "Kroenig", "id": 1062, "credit_id": "53fc02390e0a267a720097b3", "cast_id": 28, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 12}, {"name": "Jaime King", "character": "Goldie / Wendy", "id": 5915, "credit_id": "52fe4224c3a36847f8007455", "cast_id": 7, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 13}, {"name": "Juno Temple", "character": "Sally", "id": 36594, "credit_id": "52fe4224c3a36847f800748d", "cast_id": 23, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 14}, {"name": "Stacy Keach", "character": "Wallenquist", "id": 825, "credit_id": "52fe4224c3a36847f800747d", "cast_id": 19, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 15}, {"name": "Marton Csokas", "character": "Damien Lord", "id": 20982, "credit_id": "53fc024a0e0a267a720097b6", "cast_id": 29, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 16}, {"name": "Jude Ciccolella", "character": "Lt. Liebowitz", "id": 8693, "credit_id": "53fc02560e0a267a6f00976f", "cast_id": 30, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 17}, {"name": "Jamie Chung", "character": "Miho", "id": 78324, "credit_id": "52fe4224c3a36847f800746d", "cast_id": 15, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 18}, {"name": "Lady Gaga", "character": "Bertha", "id": 237405, "credit_id": "53fc02670e0a267a75009824", "cast_id": 31, "profile_path": "/uPlzD1ARsApOsU20eeWradHpWjr.jpg", "order": 19}, {"name": "Alexa PenaVega", "character": "Gilda", "id": 57674, "credit_id": "53fc02730e0a267a6f009774", "cast_id": 32, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 20}, {"name": "Julia Garner", "character": "Marcie", "id": 936970, "credit_id": "54301ee2c3a36831b8000a4f", "cast_id": 43, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 21}, {"name": "Billy Blair", "character": "Louie", "id": 968889, "credit_id": "54466ae10e0a2661af002422", "cast_id": 44, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 22}, {"name": "Patricia Vonne", "character": "Dallas", "id": 3133, "credit_id": "54a32775c3a3680b2700dfa4", "cast_id": 104, "profile_path": "/hQ5YETklKKI8FwTZoDREDYJ0K4I.jpg", "order": 23}, {"name": "Bart Fletcher", "character": "Flint", "id": 84791, "credit_id": "54a3293092514117dd00284b", "cast_id": 105, "profile_path": "/xVFZcLk4XeYcaeZjTnF7km5DioA.jpg", "order": 24}, {"name": "Alejandro Rose-Garcia", "character": "Buzz", "id": 90553, "credit_id": "54a32a229251412127006c25", "cast_id": 106, "profile_path": "/3cvFQ9jbMYfuOAxqygwYsU5gk3R.jpg", "order": 25}, {"name": "Samuel Davis", "character": "Frat Boy #3", "id": 1129413, "credit_id": "54a32b63c3a368764f00ca48", "cast_id": 107, "profile_path": "/aAOyhZjymZhIvh2HM6qL6M7P7dw.jpg", "order": 26}, {"name": "Mike Davis", "character": "Frat Boy #4", "id": 1406568, "credit_id": "54a32ba79251414d2700aace", "cast_id": 108, "profile_path": null, "order": 27}, {"name": "Kimberly Cox", "character": "Lillian", "id": 1406570, "credit_id": "54a32c549251412127006c58", "cast_id": 109, "profile_path": "/4E72wzQugid2H5W0iGN1UCriRrS.jpg", "order": 28}, {"name": "Alcides Dias", "character": "Tony", "id": 60674, "credit_id": "54a32df8c3a3684d8f0029bc", "cast_id": 110, "profile_path": "/2bPSN1PUdMBHjWbFSRuS27gCFoT.jpg", "order": 29}, {"name": "Vincent Fuentes", "character": "Abdul", "id": 1393520, "credit_id": "54a382819251412127007988", "cast_id": 111, "profile_path": "/aVkkvyAEON8lZuFhwDLAYRHPJp5.jpg", "order": 30}, {"name": "Rob Franco", "character": "Luigi", "id": 1406674, "credit_id": "54a385949251411d5300b60e", "cast_id": 112, "profile_path": "/yfwiwHx3FU2KIZFw6JPeBjYD6Ic.jpg", "order": 31}, {"name": "Daylon Walton", "character": "Gordo", "id": 1025370, "credit_id": "54a386959251414d2700b7c1", "cast_id": 113, "profile_path": "/f7DPspglqeE05HQ7vSDv3ZT1iCe.jpg", "order": 32}, {"name": "Eloise DeJoria", "character": "Joey's Wife", "id": 55269, "credit_id": "54a3889a925141236b0080b6", "cast_id": 114, "profile_path": "/7aExA8zxIaGJmltoEc82yPEmegr.jpg", "order": 33}, {"name": "Bob Schreck", "character": "Mulgrew", "id": 1406676, "credit_id": "54a38a6b925141198b0057b8", "cast_id": 115, "profile_path": "/4aYbES7IJueeE4DQz0wv7hG9KDK.jpg", "order": 34}, {"name": "Lawrence Varnado", "character": "Boogaard", "id": 61566, "credit_id": "54a38d0d925141198b005809", "cast_id": 116, "profile_path": "/3cPbqZFTRALAEzv23IXbzU7vfSz.jpg", "order": 35}, {"name": "Jimmy Gonzales", "character": "Jacoby", "id": 1091423, "credit_id": "54a38e949251411860003c8b", "cast_id": 117, "profile_path": "/xHKgZYPiteLS9hCvM1mL11d6bRe.jpg", "order": 36}, {"name": "Tommy Townsend", "character": "Wino Old Timer", "id": 1406685, "credit_id": "54a38f36c3a3682f1e010bf5", "cast_id": 118, "profile_path": null, "order": 37}, {"name": "Robert Lott", "character": "Cowboy", "id": 101981, "credit_id": "54a39771925141236b0082c2", "cast_id": 119, "profile_path": "/8fOS3wrYuR88aAeKCNZ5nE3Bdtf.jpg", "order": 38}, {"name": "Gregory Kelly", "character": "Godzilla", "id": 1375035, "credit_id": "54a399bfc3a368764f00dc10", "cast_id": 120, "profile_path": null, "order": 39}, {"name": "Patrick Sane", "character": "Gorgo", "id": 1268114, "credit_id": "54a39afec3a3682f210112cd", "cast_id": 121, "profile_path": "/cQp14aYzC8OLUVFZQiLUCcG1QG3.jpg", "order": 40}, {"name": "Greg Ingram", "character": "Mothra", "id": 1358928, "credit_id": "54a39ca8c3a368554200e698", "cast_id": 122, "profile_path": "/vjaq2FOpxzj4ZyqJmruMdnuZpmu.jpg", "order": 41}, {"name": "Will Beinbrink", "character": "Lawyer", "id": 58942, "credit_id": "54a39d429251411d5300b9e0", "cast_id": 123, "profile_path": "/ppLJLsXKF8PsxuiVKx194M4GuNW.jpg", "order": 42}, {"name": "Dimitrius Pulido", "character": "Maitre D", "id": 1094233, "credit_id": "54a39e9ec3a3682f1b0110c5", "cast_id": 124, "profile_path": "/gxVznhH0n2D1eHGu5h0ZQvGAFxM.jpg", "order": 43}, {"name": "John Wirt", "character": "Heavy", "id": 1406693, "credit_id": "54a39fc59251412127007dec", "cast_id": 125, "profile_path": null, "order": 44}, {"name": "Emmy Robbin", "character": "Flamethower", "id": 1155321, "credit_id": "54a3a266c3a368642800225d", "cast_id": 126, "profile_path": "/8i6hZN1TUxqu3wnfsbu07E5jkL5.jpg", "order": 45}, {"name": "Luis Albert Acevedo Jr.", "character": "Security Guard #1", "id": 1406695, "credit_id": "54a3a3ff9251414d2700bb6b", "cast_id": 127, "profile_path": "/qCipaHiSAQ6vViqYiVtDhla3yk5.jpg", "order": 46}, {"name": "Christian Bowman", "character": "The Man", "id": 1226245, "credit_id": "54a3a5e992514118600040a4", "cast_id": 128, "profile_path": "/koKY6HydRnAQXo2DRW8bNqvOd58.jpg", "order": 47}, {"name": "Johnny Reno", "character": "Weevil", "id": 96007, "credit_id": "54a3a73fc3a3680b2700f197", "cast_id": 129, "profile_path": null, "order": 48}], "directors": [{"name": "Frank Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f8007439", "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "id": 2293}, {"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f800743f", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.4, "runtime": 102}, "192": {"poster_path": "/dk3Vmp86t4lacnI3sQuU9ihOCUh.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 77200000, "overview": "In this adaptation of Umberto Eco's best-selling novel, 14th-century Franciscan monk William of Baskerville and his young novice arrive at a conference to find that several monks have been murdered under mysterious circumstances. To solve the crimes, William must rise up against the Church's authority and fight the shadowy conspiracy of monastery monks using only his intelligence -- which is considerable.", "video": false, "id": 192, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Name of the Rose", "tagline": "Who, in the name of God, is getting away with murder?", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091605", "adult": false, "backdrop_path": "/qthiIjX8Lt4Jg6hqPAdp2EIyJss.jpg", "production_companies": [{"name": "RAI Radiotelevisione Italiana", "id": 20091}, {"name": "Cristaldifilm", "id": 45693}, {"name": "Les Films Ariane", "id": 7110}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}], "release_date": "1986-09-24", "popularity": 0.679921469290689, "original_title": "The Name of the Rose", "budget": 20000000, "cast": [{"name": "Sean Connery", "character": "William of Baskerville", "id": 738, "credit_id": "52fe4225c3a36847f800763d", "cast_id": 16, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Christian Slater", "character": "Adso of Melk", "id": 2224, "credit_id": "52fe4225c3a36847f8007641", "cast_id": 17, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 1}, {"name": "Helmut Qualtinger", "character": "Remigio de Varagine", "id": 2367, "credit_id": "52fe4225c3a36847f8007645", "cast_id": 18, "profile_path": "/sgSX0fYUBre1dqGgbsTC4Vi0BZf.jpg", "order": 2}, {"name": "Elya Baskin", "character": "Severinus", "id": 2368, "credit_id": "52fe4225c3a36847f8007649", "cast_id": 19, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 3}, {"name": "Feodor Chaliapin Jr.", "character": "Jorge de Burgos", "id": 2371, "credit_id": "52fe4225c3a36847f800764d", "cast_id": 20, "profile_path": "/fB2wL1MEqOmNrlJ7gDM9pgRvocq.jpg", "order": 4}, {"name": "Valentina Vargas", "character": "The Girl", "id": 2173, "credit_id": "52fe4225c3a36847f8007651", "cast_id": 21, "profile_path": "/rG1QVgI2giG46XiYL0coozKzJ2H.jpg", "order": 5}, {"name": "Ron Perlman", "character": "Salvatore", "id": 2372, "credit_id": "52fe4225c3a36847f8007655", "cast_id": 22, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 6}, {"name": "Lucien Bodard", "character": "Cardinal Bertrand", "id": 2373, "credit_id": "52fe4225c3a36847f8007659", "cast_id": 23, "profile_path": "/32E18j61qgCTSljV2OBz2eD7ORr.jpg", "order": 7}, {"name": "F. Murray Abraham", "character": "Bernardo Gui", "id": 1164, "credit_id": "52fe4225c3a36847f800765d", "cast_id": 24, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 8}, {"name": "Dwight Weist", "character": "Adso as Old Man (voice)", "id": 2374, "credit_id": "52fe4225c3a36847f8007661", "cast_id": 25, "profile_path": "/beXKkE6tJ3DXtepD463yjcDcznJ.jpg", "order": 9}, {"name": "Michael Lonsdale", "character": "The Abbot", "id": 2369, "credit_id": "52fe4225c3a36847f8007665", "cast_id": 26, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 10}, {"name": "Volker Prechtel", "character": "Malachias", "id": 2370, "credit_id": "52fe4225c3a36847f8007669", "cast_id": 27, "profile_path": "/phEHxCDidfdrCWoZ7Cj8rxCiFVv.jpg", "order": 11}, {"name": "Lars Bodin-Jorgensen", "character": "Adelmo", "id": 2375, "credit_id": "52fe4225c3a36847f800766d", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Urs Althaus", "character": "Venantius", "id": 2376, "credit_id": "52fe4225c3a36847f8007671", "cast_id": 29, "profile_path": "/eOFu7foiVOX5ydZ5Lwop0Uwuj77.jpg", "order": 13}, {"name": "Michael Habeck", "character": "Berengar", "id": 2377, "credit_id": "52fe4225c3a36847f8007675", "cast_id": 30, "profile_path": "/aZ3RjWeBf7oULzw02F4KMPpBN7q.jpg", "order": 14}], "directors": [{"name": "Jean-Jacques Annaud", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f80075e5", "profile_path": "/wWECpMbiIcKZF8VXsNfxJVeW2Rr.jpg", "id": 2352}], "vote_average": 7.0, "runtime": 130}, "193": {"poster_path": "/wjrXjlNpDq9U8vYmAwf420yDFtn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120000000, "overview": "Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.", "video": false, "id": 193, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: Generations", "tagline": "Boldly go.", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111280", "adult": false, "backdrop_path": "/mmwQBfWmEqJBOwfsjIBJPchXlSP.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1994-11-17", "popularity": 0.407379298224961, "original_title": "Star Trek: Generations", "budget": 38000000, "cast": [{"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4225c3a36847f80076d9", "cast_id": 5, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Jonathan Frakes", "character": "Commander William T. Riker", "id": 2388, "credit_id": "52fe4225c3a36847f80076dd", "cast_id": 6, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 1}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4225c3a36847f800774f", "cast_id": 30, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 2}, {"name": "LeVar Burton", "character": "Lt. Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4225c3a36847f80076e1", "cast_id": 8, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 3}, {"name": "Michael Dorn", "character": "Lt. Commander Worf", "id": 2391, "credit_id": "52fe4225c3a36847f80076e5", "cast_id": 9, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 4}, {"name": "Gates McFadden", "character": "Dr. Beverly Crusher", "id": 2392, "credit_id": "52fe4225c3a36847f80076e9", "cast_id": 10, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 5}, {"name": "Marina Sirtis", "character": "Commander Deanna Troi", "id": 2393, "credit_id": "52fe4225c3a36847f80076ed", "cast_id": 11, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 6}, {"name": "William Shatner", "character": "James T. Kirk", "id": 1748, "credit_id": "52fe4225c3a36847f80076f1", "cast_id": 12, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 7}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4225c3a36847f80076f5", "cast_id": 13, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 8}, {"name": "Walter Koenig", "character": "Pavel Chekov", "id": 1754, "credit_id": "52fe4225c3a36847f80076f9", "cast_id": 14, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 9}, {"name": "Malcolm McDowell", "character": "Dr. Tolian Soran", "id": 56890, "credit_id": "52fe4225c3a36847f80076fd", "cast_id": 15, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 10}, {"name": "Alan Ruck", "character": "Capt. John Harriman", "id": 2394, "credit_id": "52fe4225c3a36847f8007701", "cast_id": 16, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 11}, {"name": "Whoopi Goldberg", "character": "Guinan", "id": 2395, "credit_id": "52fe4225c3a36847f8007705", "cast_id": 17, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 12}, {"name": "Thomas Dekker", "character": "Picard's Kid", "id": 34199, "credit_id": "52fe4225c3a36847f800774b", "cast_id": 29, "profile_path": "/1wDz8UVkG7rx6t96QKuMrKCo9wj.jpg", "order": 13}, {"name": "Cameron Oppenheimer", "character": "Ensign Kellogg", "id": 1368723, "credit_id": "54298c9c0e0a260a2a000072", "cast_id": 31, "profile_path": "/twMoDAIlapicAjBYe0s5hf1Isd5.jpg", "order": 14}, {"name": "Jenette Goldstein", "character": "Science Officer", "id": 3981, "credit_id": "54c494e5c3a368789b0076fb", "cast_id": 32, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 15}, {"name": "Tim Russ", "character": "Lieutenant", "id": 55538, "credit_id": "54c494fe9251416eae00fe0b", "cast_id": 33, "profile_path": "/a6t2lHZHePoUOWz1aHotrAEgz7v.jpg", "order": 16}], "directors": [{"name": "David Carson", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f80076c3", "profile_path": "/bErwoKKZwUuYz77micPIwjhHFyx.jpg", "id": 2380}], "vote_average": 6.5, "runtime": 118}, "194": {"poster_path": "/azmIGygncm5t5iAMiKnjRgVIlac.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 174000000, "overview": "At a tiny Parisian caf\u00e9, the adorable yet painfully shy Am\u00e9lie (Audrey Tautou) accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?", "video": false, "id": 194, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Am\u00e9lie", "tagline": "One person can change your life forever.", "vote_count": 869, "homepage": "http://www.die-fabelhafte-welt-der-amelie.de", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0211915", "adult": false, "backdrop_path": "/nxhfenC1jb5EcTI5GYxqnjYZMId.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Claudie Ossard Productions", "id": 592}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique (UGC)", "id": 30994}, {"name": "Victoires Productions", "id": 25020}, {"name": "Tapioca Films", "id": 12000}, {"name": "France 3 Cinema", "id": 16804}, {"name": "MMC Independent", "id": 4411}, {"name": "Sofica Sofinergie 5", "id": 23446}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 27897}], "release_date": "2001-04-25", "popularity": 1.83733335744234, "original_title": "Le fabuleux destin d'Am\u00e9lie Poulain", "budget": 11400000, "cast": [{"name": "Audrey Tautou", "character": "Am\u00e9lie Poulain", "id": 2405, "credit_id": "52fe4225c3a36847f800779b", "cast_id": 4, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 0}, {"name": "Mathieu Kassovitz", "character": "Nino Quincampoix", "id": 2406, "credit_id": "52fe4225c3a36847f8007805", "cast_id": 28, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 1}, {"name": "Rufus", "character": "Rapha\u00ebl Poulain", "id": 2407, "credit_id": "52fe4225c3a36847f800779f", "cast_id": 6, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 2}, {"name": "Jamel Debbouze", "character": "Lucien", "id": 2408, "credit_id": "52fe4225c3a36847f80077a3", "cast_id": 7, "profile_path": "/rnXlFlIAbCnQqQUyTdBCt7B0H5L.jpg", "order": 3}, {"name": "Claire Maurier", "character": "Suzanne", "id": 1654, "credit_id": "52fe4225c3a36847f80077b3", "cast_id": 11, "profile_path": "/cP1n7zMsMKr77xJeR3CncomxEZ0.jpg", "order": 4}, {"name": "Isabelle Nanty", "character": "Georgette", "id": 2412, "credit_id": "52fe4225c3a36847f80077b7", "cast_id": 12, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 5}, {"name": "Dominique Pinon", "character": "Joseph", "id": 2413, "credit_id": "52fe4225c3a36847f80077bb", "cast_id": 13, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 6}, {"name": "Artus de Penguern", "character": "Hipolito", "id": 2414, "credit_id": "52fe4225c3a36847f80077bf", "cast_id": 14, "profile_path": "/xDoI1YT3J4hBvJaa9lGxtNUjTKK.jpg", "order": 7}, {"name": "Yolande Moreau", "character": "Madeleine Wallace", "id": 2415, "credit_id": "52fe4225c3a36847f80077c3", "cast_id": 15, "profile_path": "/9FTIYqBRisPqgT4HV30EjRg4hkb.jpg", "order": 8}, {"name": "Lorella Cravotta", "character": "Amandine Poulain", "id": 2409, "credit_id": "52fe4225c3a36847f80077a7", "cast_id": 8, "profile_path": "/ogcgzecaUkJrnSjhXt1GMrOfzvU.jpg", "order": 9}, {"name": "Serge Merlin", "character": "Raymond Dufayel", "id": 2410, "credit_id": "52fe4225c3a36847f80077ab", "cast_id": 9, "profile_path": "/w07o6hg3hUxoWtgUBJ87VXilKzu.jpg", "order": 10}, {"name": "Clotilde Mollet", "character": "Gina", "id": 2411, "credit_id": "52fe4225c3a36847f80077af", "cast_id": 10, "profile_path": "/8aXYC2plPTD48hhTnpZSZs3KoSX.jpg", "order": 11}, {"name": "Urbain Cancelier", "character": "Collignon", "id": 2416, "credit_id": "52fe4225c3a36847f80077c7", "cast_id": 16, "profile_path": "/lbxlNBsenBuAL4l2p97BBY30HEM.jpg", "order": 12}, {"name": "Maurice B\u00e9nichou", "character": "Dominique Bretodeau", "id": 2417, "credit_id": "52fe4225c3a36847f80077cb", "cast_id": 17, "profile_path": "/wHyw6K7H5e1hExFixTrZDmlivC1.jpg", "order": 13}, {"name": "Michel Robin", "character": "M. Collignon", "id": 32092, "credit_id": "53b1a9dec3a3682ef1006789", "cast_id": 29, "profile_path": "/1eANJ5aDxh3SRYvXtRcO8ugxM5H.jpg", "order": 14}, {"name": "Andr\u00e9e Damant", "character": "Mme. Collignon", "id": 231607, "credit_id": "53b1aa37c3a3682eea0068e9", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Claude Perron", "character": "Eva", "id": 119199, "credit_id": "53b1aa52c3a3682eea0068eb", "cast_id": 31, "profile_path": "/1D6C2zz3bkO6KZBwrfKJwddYGT3.jpg", "order": 16}, {"name": "Armelle", "character": "Philom\u00e8ne", "id": 77736, "credit_id": "53b1aa68c3a3682ef1006794", "cast_id": 32, "profile_path": "/wM36ChCOpQ2jTwXGjcw7yKvtTW5.jpg", "order": 17}, {"name": "Ticky Holgado", "character": "L'homme dans la photo", "id": 13689, "credit_id": "53b1aa7cc3a3682eee0068cc", "cast_id": 33, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 18}, {"name": "Marc Amyot", "character": "L'inconnu des photomatons", "id": 1336073, "credit_id": "53b1aab2c3a3682ee6006899", "cast_id": 34, "profile_path": null, "order": 19}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f8007801", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 7.5, "runtime": 122}, "196": {"poster_path": "/6DmgPTZYaug7QNDjOhUDWyjOQDl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244527583, "overview": "The final installment of the Back to the Future trilogy finds Marty digging the trusty DeLorean out of a mineshaft and looking up Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.", "video": false, "id": 196, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Back to the Future Part III", "tagline": "They've saved the best trip for last... But this time they may have gone too far.", "vote_count": 966, "homepage": "http://www.bttf.com/", "belongs_to_collection": {"backdrop_path": "/c9C9Pg2QctyjZHRmS0P8rZg1OTA.jpg", "poster_path": "/51J1AroyQ45V8DCJnfItFUaKFxL.jpg", "id": 264, "name": "Back to the Future Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099088", "adult": false, "backdrop_path": "/pP2a4MBQbIeZMbErBWMjxTT5Npb.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}, {"name": "U-Drive Productions", "id": 20448}], "release_date": "1990-05-25", "popularity": 1.03339967308452, "original_title": "Back to the Future Part III", "budget": 40000000, "cast": [{"name": "Michael J. Fox", "character": "Marty McFly / Seamus McFly", "id": 521, "credit_id": "52fe4225c3a36847f80078fd", "cast_id": 14, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Dr. Emmett Brown", "id": 1062, "credit_id": "52fe4225c3a36847f8007901", "cast_id": 15, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Mary Steenburgen", "character": "Clara Clayton", "id": 2453, "credit_id": "52fe4225c3a36847f8007905", "cast_id": 16, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 2}, {"name": "Thomas F. Wilson", "character": "Buford 'Mad Dog' Tannen/Biff Tannen", "id": 1065, "credit_id": "52fe4225c3a36847f8007909", "cast_id": 17, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 3}, {"name": "Lea Thompson", "character": "Maggie McFly / Lorraine McFly", "id": 1063, "credit_id": "52fe4225c3a36847f800790d", "cast_id": 18, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 4}, {"name": "Elisabeth Shue", "character": "Jennifer Parker", "id": 1951, "credit_id": "52fe4225c3a36847f8007911", "cast_id": 19, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 5}, {"name": "James Tolkan", "character": "Marshal James Strickland", "id": 1072, "credit_id": "52fe4225c3a36847f8007915", "cast_id": 20, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 6}, {"name": "Matt Clark", "character": "Chester the Bartender", "id": 2454, "credit_id": "52fe4225c3a36847f8007919", "cast_id": 21, "profile_path": "/hDNQhAEns3nl9cgQJ4udgCdBABI.jpg", "order": 7}, {"name": "Christopher Wynne", "character": "Buford Tannen's Gang / Needles' Gang", "id": 2455, "credit_id": "52fe4225c3a36847f800791d", "cast_id": 22, "profile_path": "/krcB4LZlqK4txPZeNcuvJ7qUm0g.jpg", "order": 8}, {"name": "Sean Sullivan", "character": "Buford Tannen's Gang (as Sean Gregory Sullivan)", "id": 2456, "credit_id": "52fe4225c3a36847f8007921", "cast_id": 23, "profile_path": "/stYTM5pmC6SH9iTcz8hSoF6Te0h.jpg", "order": 9}, {"name": "Mike Watson", "character": "Buford Tannen's Gang", "id": 2457, "credit_id": "52fe4225c3a36847f8007925", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Foster", "character": "Copernicus", "id": 2458, "credit_id": "52fe4225c3a36847f8007929", "cast_id": 25, "profile_path": "/cP5z7pTlHnTZAVzuhQVGpiJlJYg.jpg", "order": 11}, {"name": "Freddie", "character": "Einstein", "id": 2459, "credit_id": "52fe4225c3a36847f800792d", "cast_id": 26, "profile_path": "/4JeX5W2IKzZyRvqwb4LfT30YIDz.jpg", "order": 12}, {"name": "Marc McClure", "character": "Dave McFly", "id": 1067, "credit_id": "52fe4225c3a36847f8007931", "cast_id": 27, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 13}, {"name": "Wendie Jo Sperber", "character": "Linda McFly", "id": 1068, "credit_id": "52fe4225c3a36847f8007935", "cast_id": 28, "profile_path": "/nadvO9Q24eNrGAznKmlOwV6E6Wb.jpg", "order": 14}, {"name": "Jeffrey Weissman", "character": "George McFly", "id": 1952, "credit_id": "52fe4225c3a36847f8007939", "cast_id": 29, "profile_path": "/rJJ066KTyGPNmu13eu2279DQrAw.jpg", "order": 15}, {"name": "Flea", "character": "Douglas J. Needles", "id": 1237, "credit_id": "52fe4225c3a36847f8007949", "cast_id": 32, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 16}, {"name": "J.J. Cohen", "character": "Needles' Gang", "id": 11673, "credit_id": "52fe4225c3a36847f800794d", "cast_id": 33, "profile_path": "/cEmMWxPQ1PfpEYU1NjNb2F4XSJo.jpg", "order": 17}, {"name": "Ricky Dean Logan", "character": "Needles' Gang", "id": 68851, "credit_id": "52fe4225c3a36847f8007951", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Dean Cundey", "character": "Photographer", "id": 1060, "credit_id": "52fe4225c3a36847f8007955", "cast_id": 35, "profile_path": "/xunb0FZLZLhca2F5OJcKzV1mjR0.jpg", "order": 19}, {"name": "Richard Dysart", "character": "Barbwire Salesman", "id": 15413, "credit_id": "52fe4225c3a36847f8007959", "cast_id": 36, "profile_path": "/rUCGqsBUOb1d7OsEVJo7BITfMIL.jpg", "order": 20}, {"name": "Pat Buttram", "character": "Saloon Old Timer", "id": 21460, "credit_id": "52fe4225c3a36847f800795d", "cast_id": 37, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 21}, {"name": "Harry Carey, Jr.", "character": "Saloon Old Timer", "id": 4316, "credit_id": "52fe4225c3a36847f8007961", "cast_id": 38, "profile_path": "/7Via2uVuYnnz8gJ5qx0zXqIKTkz.jpg", "order": 22}, {"name": "Dub Taylor", "character": "Saloon Old Timer", "id": 6463, "credit_id": "52fe4225c3a36847f8007965", "cast_id": 39, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 23}, {"name": "Hugh Gillin", "character": "Mayor Hubert", "id": 73349, "credit_id": "54f7da9092514151c6003a4f", "cast_id": 52, "profile_path": null, "order": 24}, {"name": "Burton Gilliam", "character": "Colt Gun Salesman", "id": 133952, "credit_id": "54f7df4cc3a36833bb0035c3", "cast_id": 53, "profile_path": "/vy97LXXW4hRjwJa4h9IbTBwuGN5.jpg", "order": 25}, {"name": "Bill McKinney", "character": "Engineer", "id": 16555, "credit_id": "54f7df8792514118ba00081a", "cast_id": 54, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 26}, {"name": "Donovan Scott", "character": "Deputy", "id": 57350, "credit_id": "54f7dfad92514118ba000827", "cast_id": 55, "profile_path": "/8Gd1PcWF5Qapvzia8pxnsnQrdba.jpg", "order": 27}, {"name": "Marvin J. McIntyre", "character": "Mortician", "id": 13003, "credit_id": "54f7e026c3a36833dc002f16", "cast_id": 57, "profile_path": null, "order": 28}, {"name": "Kaleb Henley", "character": "Strickland's Son", "id": 1096552, "credit_id": "54f7e063c3a368131c000710", "cast_id": 58, "profile_path": null, "order": 29}, {"name": "Todd Cameron Brown", "character": "Jules Brown", "id": 1435064, "credit_id": "54f7e097c3a36833dc002f2f", "cast_id": 59, "profile_path": null, "order": 30}, {"name": "Dannel Evans", "character": "Verne Brown", "id": 1435065, "credit_id": "54f7e11dc3a36834a2003084", "cast_id": 60, "profile_path": null, "order": 31}, {"name": "Leslie A. Prickett", "character": "Celebration Man", "id": 1435066, "credit_id": "54f7e1429251416f6e0031ff", "cast_id": 61, "profile_path": null, "order": 32}, {"name": "Jo B. Cummings", "character": "Pie Lady", "id": 1435067, "credit_id": "54f7e17cc3a36834a2003096", "cast_id": 62, "profile_path": null, "order": 33}, {"name": "Steve McArthur", "character": "Festival Man #1", "id": 1435068, "credit_id": "54f7e1a5c3a36833bb003602", "cast_id": 63, "profile_path": null, "order": 34}, {"name": "John Ickes", "character": "Festival Man #2", "id": 1435069, "credit_id": "54f7e1ca92514118df000791", "cast_id": 64, "profile_path": null, "order": 35}, {"name": "James A. Rammel", "character": "Festival Dance Caller", "id": 1435070, "credit_id": "54f7e1f492514118120007d0", "cast_id": 65, "profile_path": null, "order": 36}, {"name": "Michael Klastorin", "character": "Townsman #1", "id": 14336, "credit_id": "54f7e239c3a36834a20030a4", "cast_id": 66, "profile_path": null, "order": 37}, {"name": "Michael Mills", "character": "Townsman #2 (as Michael John Mills)", "id": 1435071, "credit_id": "54f7e3b392514151c6003b3c", "cast_id": 67, "profile_path": null, "order": 38}, {"name": "Flea", "character": "Needles", "id": 1237, "credit_id": "551d9ca39251413748000b2c", "cast_id": 82, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 39}, {"name": "Kenny Myers", "character": "Townsman #3", "id": 579077, "credit_id": "54f7e491c3a36834a5003373", "cast_id": 68, "profile_path": null, "order": 40}, {"name": "Brad McPeters", "character": "Eyepatch", "id": 1435072, "credit_id": "54f7e4af92514118df0007da", "cast_id": 69, "profile_path": null, "order": 41}, {"name": "Phinnaes D.", "character": "Toothless", "id": 1435073, "credit_id": "54f7e4cac3a36833bb00366b", "cast_id": 70, "profile_path": null, "order": 42}, {"name": "Rod Kuehne", "character": "Ticket Agent", "id": 1435074, "credit_id": "54f7e4f79251416f370031de", "cast_id": 71, "profile_path": null, "order": 43}, {"name": "Leno Fletcher", "character": "Conductor", "id": 1435075, "credit_id": "54f7e5259251412411003baa", "cast_id": 72, "profile_path": null, "order": 44}, {"name": "Joey Newington", "character": "Joey", "id": 1435076, "credit_id": "54f7e546c3a368351d00325e", "cast_id": 73, "profile_path": null, "order": 45}, {"name": "Larry Ingold", "character": "Train Fireman", "id": 1435077, "credit_id": "54f7e5649251411812000833", "cast_id": 74, "profile_path": null, "order": 46}, {"name": "Tim Konrad", "character": "Barbwire Salesman's Companion", "id": 1435078, "credit_id": "54f7e583c3a368126c000925", "cast_id": 75, "profile_path": null, "order": 47}, {"name": "Glenn Fox", "character": "Boy with Gun", "id": 1435079, "credit_id": "54f7e5a7c3a36834a5003399", "cast_id": 76, "profile_path": null, "order": 48}, {"name": "Frank Beard", "character": "Party Band Member #1 (uncredited)", "id": 105629, "credit_id": "54f7e6129251411812000848", "cast_id": 77, "profile_path": "/eeqfHOibpgPtdPBqh69MBVXqu4T.jpg", "order": 49}, {"name": "Billy Gibbons", "character": "Party Band Member #2 (uncredited)", "id": 105630, "credit_id": "54f7e63b9251416f6e00328b", "cast_id": 78, "profile_path": "/1iqr6yGZyQX4IZmPa9xoBpSV9K0.jpg", "order": 50}, {"name": "Dorothy Hack", "character": "Townswoman (uncredited)", "id": 1435080, "credit_id": "54f7e65bc3a36833bb00369e", "cast_id": 79, "profile_path": null, "order": 51}, {"name": "Dusty Hill", "character": "Party Band Member #3 (uncredited)", "id": 105628, "credit_id": "54f7e67ec3a3683a57003beb", "cast_id": 80, "profile_path": "/gWJfkKxPyce9aYfnttxpjWglAKP.jpg", "order": 52}, {"name": "Marion Tumen", "character": "Prostitute at Palace Saloon (uncredited)", "id": 1338840, "credit_id": "54f7e6abc3a368351d003281", "cast_id": 81, "profile_path": null, "order": 53}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f80078b1", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.8, "runtime": 118}, "197": {"poster_path": "/2qAgGeYdLjelOEqjW9FYvPHpplC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 210000000, "overview": "Enraged at the slaughter of Murron, his new bride and childhood love, legendary Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.", "video": false, "id": 197, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Braveheart", "tagline": "Every man dies. Not every man truly lives.", "vote_count": 1465, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "gd", "name": ""}], "imdb_id": "tt0112573", "adult": false, "backdrop_path": "/mXJnEzFHmchkMkuvaJ25eV4qWL5.jpg", "production_companies": [{"name": "Icon Entertainment International", "id": 4564}, {"name": "The Ladd Company", "id": 7965}, {"name": "B.H. Finance C.V.", "id": 11353}], "release_date": "1995-05-24", "popularity": 1.42422793241696, "original_title": "Braveheart", "budget": 72000000, "cast": [{"name": "Mel Gibson", "character": "William Wallace", "id": 2461, "credit_id": "52fe4225c3a36847f80079d7", "cast_id": 5, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Catherine McCormack", "character": "Murron MacClannough", "id": 2462, "credit_id": "52fe4225c3a36847f80079db", "cast_id": 6, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 1}, {"name": "Sophie Marceau", "character": "Princess Isabelle", "id": 1957, "credit_id": "52fe4225c3a36847f80079df", "cast_id": 7, "profile_path": "/5pJ16f9QxzZMzcr9CpSnr6dTwGG.jpg", "order": 2}, {"name": "Patrick McGoohan", "character": "King Edward", "id": 2463, "credit_id": "52fe4225c3a36847f80079e3", "cast_id": 8, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 3}, {"name": "Angus Macfadyen", "character": "Robert the Bruce", "id": 2464, "credit_id": "52fe4225c3a36847f80079e7", "cast_id": 9, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "Hamish Campbell", "id": 2039, "credit_id": "52fe4225c3a36847f80079eb", "cast_id": 10, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "James Robinson", "character": "Young William Wallace", "id": 2465, "credit_id": "52fe4225c3a36847f80079ef", "cast_id": 11, "profile_path": "/jmTg4EX5xVy5m2fOGgWs2xigNkr.jpg", "order": 6}, {"name": "James Cosmo", "character": "Campbell", "id": 2467, "credit_id": "52fe4225c3a36847f80079f3", "cast_id": 12, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 7}, {"name": "Sean McGinley", "character": "MacClannough", "id": 2468, "credit_id": "52fe4225c3a36847f80079f7", "cast_id": 13, "profile_path": "/1Kt6KJ2g6JLwpV7tfLOFExJJ6TZ.jpg", "order": 8}, {"name": "Gerda Stevenson", "character": "Mother MacClannough", "id": 2469, "credit_id": "52fe4225c3a36847f80079fb", "cast_id": 14, "profile_path": "/guyKVZEsD4GLj2h6gDgUNmbBLyG.jpg", "order": 9}, {"name": "Mhairi Calvey", "character": "Young Murron MacClannough", "id": 2470, "credit_id": "52fe4225c3a36847f80079ff", "cast_id": 15, "profile_path": "/yqhUNZdhGIQdpY1eNjj0nXkG5ea.jpg", "order": 10}, {"name": "Jeanne Marine", "character": "Nicolette", "id": 2471, "credit_id": "52fe4225c3a36847f8007a03", "cast_id": 16, "profile_path": "/1OteArXdpe89FGkQcOqaHZm8lOx.jpg", "order": 11}, {"name": "Sean Lawlor", "character": "Malcolm Wallace", "id": 2472, "credit_id": "52fe4225c3a36847f8007a07", "cast_id": 17, "profile_path": "/ehCSI4ZfmHRB59mZtrUs6xLo47I.jpg", "order": 12}, {"name": "Sandy Nelson", "character": "John Wallace", "id": 2473, "credit_id": "52fe4225c3a36847f8007a0b", "cast_id": 18, "profile_path": "/6RksAX6zUs5gPwlO0R2AXMiuAUx.jpg", "order": 13}, {"name": "Alan Tall", "character": "Elder Stewart", "id": 2474, "credit_id": "52fe4225c3a36847f8007a0f", "cast_id": 19, "profile_path": "/7eXUt2XAFrNXWUT6LyS6L3mj8PV.jpg", "order": 14}, {"name": "Andrew Weir", "character": "Young Hamish Campbell", "id": 2475, "credit_id": "52fe4225c3a36847f8007a13", "cast_id": 20, "profile_path": "/cif5yxGkTmLyOuN9E2ICStN7yqd.jpg", "order": 15}, {"name": "Brian Cox", "character": "Argyle Wallace", "id": 1248, "credit_id": "52fe4225c3a36847f8007a17", "cast_id": 21, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 16}, {"name": "Peter Hanly", "character": "Edward, Prince of Wales", "id": 2476, "credit_id": "52fe4225c3a36847f8007a1b", "cast_id": 22, "profile_path": "/cV4IiHHY7XtxONMpr1nJwFmj5TL.jpg", "order": 17}, {"name": "Stephen Billington", "character": "Phillip", "id": 2477, "credit_id": "52fe4225c3a36847f8007a1f", "cast_id": 23, "profile_path": "/fWuIZcI6syFBM9UuNOj2OY4b3Yi.jpg", "order": 18}, {"name": "Tommy Flanagan", "character": "Morrison", "id": 2478, "credit_id": "52fe4225c3a36847f8007a23", "cast_id": 24, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 19}, {"name": "Rupert Vansittart", "character": "Lord Bottoms", "id": 2479, "credit_id": "52fe4225c3a36847f8007a27", "cast_id": 25, "profile_path": "/Adw0Z2bT8qU5H6S0swuUWrBKDDs.jpg", "order": 20}, {"name": "Tam White", "character": "MacGregor", "id": 2480, "credit_id": "52fe4225c3a36847f8007a2b", "cast_id": 26, "profile_path": "/jk1UaBYHiiEm6BXLhlHtG50NDLc.jpg", "order": 21}, {"name": "Ian Bannen", "character": "Robert Bruce Sr.", "id": 2481, "credit_id": "52fe4225c3a36847f8007a2f", "cast_id": 27, "profile_path": "/o1M55VhFgRimGz9cNjadt8fWlXE.jpg", "order": 22}, {"name": "David O'Hara", "character": "Stephen, Irish Fighter", "id": 2482, "credit_id": "52fe4225c3a36847f8007a33", "cast_id": 28, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 23}, {"name": "Peter Mullan", "character": "Veteran", "id": 3064, "credit_id": "52fe4225c3a36847f8007a81", "cast_id": 43, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 24}, {"name": "David Gant", "character": "Chief Justice/Executioner", "id": 21431, "credit_id": "52fe4225c3a36847f8007a77", "cast_id": 41, "profile_path": "/hDrKggQ1lYc8bjiEHBKVKAS5QDi.jpg", "order": 25}, {"name": "Malcolm Tierney", "character": "Magistrate", "id": 166258, "credit_id": "52fe4225c3a36847f8007a61", "cast_id": 37, "profile_path": "/fe7Cz6sxTLt9qSQANRpAAaYcPlV.jpg", "order": 26}, {"name": "Martin Murphy", "character": "Lord Talmadge", "id": 1333582, "credit_id": "53a7e8a90e0a26143c005413", "cast_id": 51, "profile_path": null, "order": 27}, {"name": "Gerard McSorley", "character": "Cheltham", "id": 43131, "credit_id": "53a7e9af0e0a26143200570d", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Bernard Horsfall", "character": "Balliol", "id": 10174, "credit_id": "53a7ea740e0a26143600570d", "cast_id": 53, "profile_path": "/gAWAqff7bQ9RVf34nFd8dmxJy6u.jpg", "order": 29}, {"name": "Richard Leaf", "character": "Governor of York", "id": 16792, "credit_id": "53a7eac40e0a261449005708", "cast_id": 54, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 30}, {"name": "Liam Carney", "character": "Sean", "id": 1333583, "credit_id": "53a7eb070e0a261439005740", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Ralph Riach", "character": "Priest No. 1", "id": 17788, "credit_id": "53accf700e0a26597d000d82", "cast_id": 56, "profile_path": "/k30uy8kibmGQ1UE5Al7X74Kqa49.jpg", "order": 32}], "directors": [{"name": "Mel Gibson", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f80079c7", "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "id": 2461}], "vote_average": 7.3, "runtime": 177}, "8390": {"poster_path": "/26U9CeCwH63P0n4jrYnhxnlfKWs.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55447968, "overview": "When Will decides to tell his daughter the story of how he met her mother, he discovers that a second look at the past might also give him a second chance at the future.", "video": false, "id": 8390, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Definitely, Maybe", "tagline": "Three relationships. Three disasters. One last chance.", "vote_count": 160, "homepage": "http://www.definitelymaybemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0832266", "adult": false, "backdrop_path": "/nFs9hEgQKEsmhaItx11Qv9Ubnz.jpg", "production_companies": [{"name": "Ringerike Erste Filmproduktion", "id": 49123}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}], "release_date": "2008-02-08", "popularity": 0.734713085745122, "original_title": "Definitely, Maybe", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Will Hayes", "id": 10859, "credit_id": "52fe44a4c3a36847f80a1dab", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Abigail Breslin", "character": "Maya Hayes", "id": 17140, "credit_id": "52fe44a4c3a36847f80a1daf", "cast_id": 2, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Emily", "id": 9281, "credit_id": "52fe44a4c3a36847f80a1db3", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Isla Fisher", "character": "April", "id": 52848, "credit_id": "52fe44a4c3a36847f80a1db7", "cast_id": 4, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 3}, {"name": "Rachel Weisz", "character": "Summer Hartley", "id": 3293, "credit_id": "52fe44a4c3a36847f80a1dbb", "cast_id": 5, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 4}, {"name": "Kevin Kline", "character": "Hampton Roth", "id": 8945, "credit_id": "52fe44a4c3a36847f80a1dbf", "cast_id": 6, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 5}, {"name": "Derek Luke", "character": "Russell McCormack", "id": 15543, "credit_id": "52fe44a4c3a36847f80a1dc3", "cast_id": 7, "profile_path": "/8aWVcw4JDB76dhKRvUQgDGxInvN.jpg", "order": 6}, {"name": "Liane Balaban", "character": "Kelly", "id": 54817, "credit_id": "52fe44a4c3a36847f80a1dc7", "cast_id": 8, "profile_path": "/way8YUaXSxxJ5PYg0tM92savRMD.jpg", "order": 7}, {"name": "Annie Parisse", "character": "Anne", "id": 24291, "credit_id": "52fe44a4c3a36847f80a1dcb", "cast_id": 9, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 8}, {"name": "Nestor Serrano", "character": "Arthur", "id": 14331, "credit_id": "52fe44a4c3a36847f80a1dcf", "cast_id": 10, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 9}, {"name": "Kevin Corrigan", "character": "Rafael", "id": 18472, "credit_id": "52fe44a4c3a36847f80a1dd3", "cast_id": 11, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 10}, {"name": "An Nguyen", "character": "Ad Exec", "id": 1142303, "credit_id": "52fe44a4c3a36847f80a1e2b", "cast_id": 26, "profile_path": "/e46MsI3zoQRsfRSMdQYRXbbFs4p.jpg", "order": 11}, {"name": "Adam Brooks", "character": "Bookstore Owner", "id": 16328, "credit_id": "53e9ee48c3a3680ec1000bad", "cast_id": 28, "profile_path": "/yUyhsz2KZ87ePFxyQGeW9FjoGZ6.jpg", "order": 13}, {"name": "Emily Wickersham", "character": "1998 Intern", "id": 204679, "credit_id": "5417240ac3a3684cf7005b31", "cast_id": 29, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 14}], "directors": [{"name": "Adam Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe44a4c3a36847f80a1e21", "profile_path": "/yUyhsz2KZ87ePFxyQGeW9FjoGZ6.jpg", "id": 16328}], "vote_average": 6.1, "runtime": 112}, "199": {"poster_path": "/qhVB8eUGwkdVvd8Fezk0AgcMPDH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150000000, "overview": "The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.", "video": false, "id": 199, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: First Contact", "tagline": "Resistance is futile.", "vote_count": 271, "homepage": "http://www.startrek.com/startrek/view/series/MOV/008/index.html", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117731", "adult": false, "backdrop_path": "/welkOTUozJ968u1KLx33vPpo7aS.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1996-11-21", "popularity": 0.948535719122159, "original_title": "Star Trek: First Contact", "budget": 46000000, "cast": [{"name": "James Cromwell", "character": "Dr. Zefram Cochrane", "id": 2505, "credit_id": "52fe4226c3a36847f8007b57", "cast_id": 5, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 0}, {"name": "Alfre Woodard", "character": "Lily Sloane", "id": 1981, "credit_id": "52fe4226c3a36847f8007b5b", "cast_id": 6, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 1}, {"name": "Alice Krige", "character": "Borg Queen", "id": 2506, "credit_id": "52fe4226c3a36847f8007b5f", "cast_id": 7, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 2}, {"name": "Neal McDonough", "character": "Lieutenant Hawk", "id": 2203, "credit_id": "52fe4226c3a36847f8007b63", "cast_id": 8, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 3}, {"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4226c3a36847f8007ba3", "cast_id": 19, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 4}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4226c3a36847f8007bbf", "cast_id": 27, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 5}, {"name": "LeVar Burton", "character": "Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4226c3a36847f8007ba7", "cast_id": 21, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 6}, {"name": "Michael Dorn", "character": "Lieutenant Commander Worf", "id": 2391, "credit_id": "52fe4226c3a36847f8007bab", "cast_id": 22, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 7}, {"name": "Gates McFadden", "character": "Commander Beverly Crusher", "id": 2392, "credit_id": "52fe4226c3a36847f8007baf", "cast_id": 23, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 8}, {"name": "Marina Sirtis", "character": "Ships Counselor Commander Deanna Troi", "id": 2393, "credit_id": "52fe4226c3a36847f8007bb3", "cast_id": 24, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 9}, {"name": "Jonathan Frakes", "character": "Commander William Riker", "id": 2388, "credit_id": "52fe4226c3a36847f8007bb7", "cast_id": 25, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 10}, {"name": "Dwight Schultz", "character": "Lt. Barclay", "id": 28248, "credit_id": "52fe4226c3a36847f8007bbb", "cast_id": 26, "profile_path": "/lvhnIeUHMUvjfxRS2xWeF6xbsJc.jpg", "order": 11}, {"name": "Cameron Oppenheimer", "character": "Ensign Kellogg", "id": 1368723, "credit_id": "54298c6d0e0a260a30000073", "cast_id": 32, "profile_path": "/twMoDAIlapicAjBYe0s5hf1Isd5.jpg", "order": 12}], "directors": [{"name": "Jonathan Frakes", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007b41", "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "id": 2388}], "vote_average": 6.9, "runtime": 111}, "8392": {"poster_path": "/2i0OOjvi7CqNQA6ZtYJtL65P9oZ.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.", "video": false, "id": 8392, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "My Neighbor Totoro", "tagline": "", "vote_count": 528, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0096283", "adult": false, "backdrop_path": "/p2yfO8o9lpegOu3w3gXMljPGGkP.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Nibariki", "id": 12516}, {"name": "Tokuma Japan Communications Co. Ltd.", "id": 12523}], "release_date": "1988-04-16", "popularity": 1.56955723154865, "original_title": "Tonari no Totoro", "budget": 0, "cast": [{"name": "Noriko Hidaka", "character": "Satsuki (voz)", "id": 55662, "credit_id": "52fe44a5c3a36847f80a1ec5", "cast_id": 2, "profile_path": "/yswUeNWfjrWhqGyMB3QDSP8D8v.jpg", "order": 0}, {"name": "Hitoshi Takagi", "character": "Totoro (voz)", "id": 55663, "credit_id": "52fe44a5c3a36847f80a1ec9", "cast_id": 3, "profile_path": "/ckNvu6uLIjRXULtinh7e1BPp3kp.jpg", "order": 1}, {"name": "Chika Sakamoto", "character": "Mei (voz)", "id": 55664, "credit_id": "52fe44a5c3a36847f80a1ecd", "cast_id": 4, "profile_path": "/b84KZUb7zjrXP21aYLSJXcJoRTC.jpg", "order": 2}, {"name": "Shigesato Itoi", "character": "Tatsuo Kusakabe (voz)", "id": 55665, "credit_id": "52fe44a5c3a36847f80a1ed1", "cast_id": 5, "profile_path": "/2H5QFmY4CysInJd7WCDpAPbvGsp.jpg", "order": 3}, {"name": "Sumi Shimamoto", "character": "Yasuko Kusakabe (voz)", "id": 613, "credit_id": "52fe44a5c3a36847f80a1ed5", "cast_id": 6, "profile_path": "/cB1JXMD6Eyb1ONKfsj32Lai4AfV.jpg", "order": 4}, {"name": "Tanie Kitabayashi", "character": "Kanta no ob\u00e2san (voz)", "id": 55666, "credit_id": "52fe44a5c3a36847f80a1ed9", "cast_id": 7, "profile_path": "/wPPlvuRZQWuEEG6bT83c1sn0MqJ.jpg", "order": 5}, {"name": "Akiko Hiramatsu", "character": "(voz)", "id": 143502, "credit_id": "52fe44a5c3a36847f80a1f23", "cast_id": 20, "profile_path": "/v0F4QOBvuwoAbQKxdBVBBai4hEb.jpg", "order": 7}, {"name": "Masashi Hirose", "character": "Kanta no ot\u00f4san (voz)", "id": 553286, "credit_id": "52fe44a5c3a36847f80a1f27", "cast_id": 21, "profile_path": "/jCVmC2Ov8c7p9kyKbx05uGcXfii.jpg", "order": 8}, {"name": "Chie K\u00f4jiro", "character": "(voz)", "id": 1132636, "credit_id": "52fe44a5c3a36847f80a1f2b", "cast_id": 22, "profile_path": "/atSmFWDPOQx6Vv8uUwnFnTCCQVR.jpg", "order": 9}, {"name": "Y\u00fbko Maruyama", "character": "Kanta no ok\u00e2san (voz)", "id": 552603, "credit_id": "52fe44a5c3a36847f80a1f2f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Y\u00fbko Mizutani", "character": "(voz)", "id": 112138, "credit_id": "52fe44a5c3a36847f80a1f33", "cast_id": 24, "profile_path": "/n7zoT3w5pkorKvIBrFBhqjAamW2.jpg", "order": 11}, {"name": "Tomohiro Nishimura", "character": "(voz)", "id": 554867, "credit_id": "52fe44a5c3a36847f80a1f3b", "cast_id": 26, "profile_path": "/6Th9GLzkwoL4CxnCPmjkkeoGiv9.jpg", "order": 13}, {"name": "Shigeru Chiba", "character": "Kusakari-Otoko (voz)", "id": 105816, "credit_id": "53083cd192514111020017c4", "cast_id": 27, "profile_path": "/23GASkx3cOtzgtBkrDTj44nbpVg.jpg", "order": 14}, {"name": "Daiki Nakamura", "character": "(voz)", "id": 81866, "credit_id": "5308416e925141111700181d", "cast_id": 28, "profile_path": "/z6EgWIVXYFs1VztcOxwBUU2d0C7.jpg", "order": 15}, {"name": "Toshiyuki Amagasa", "character": "Kanta (voice)", "id": 1011400, "credit_id": "5353f6850e0a265603004ed4", "cast_id": 29, "profile_path": null, "order": 16}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe44a5c3a36847f80a1ec1", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.9, "runtime": 86}, "8393": {"poster_path": "/yDTZtfKT0SHoXSzEHMHS0pMI1IN.jpg", "production_countries": [{"iso_3166_1": "BW", "name": "Botswana"}], "revenue": 0, "overview": "Misery is brought to a small group of Sho in the Kalahari desert in the form of a cola bottle. In his quest to throw the evil object over the edge of the earth, Xixo encounters Western \"civilization,\" a haphazard doctor and a tyranical despot.", "video": false, "id": 8393, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Gods Must Be Crazy", "tagline": "The critics are raving... the natives are restless... and the laughter is non-stop!", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/3KAJpE2OOimXE5Z15LHARbeA0eC.jpg", "id": 87805, "name": "The Gods Must Be Crazy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080801", "adult": false, "backdrop_path": "/iVxo0Qy4FMIEF9LhBJtJwwvsuIU.jpg", "production_companies": [{"name": "CAT Films", "id": 22284}, {"name": "Mimosa Films", "id": 22285}], "release_date": "1980-09-10", "popularity": 0.502524511912552, "original_title": "The Gods Must Be Crazy", "budget": 0, "cast": [{"name": "N!xau", "character": "Xixo", "id": 55674, "credit_id": "52fe44a5c3a36847f80a1f81", "cast_id": 5, "profile_path": "/r340m1PXJoz4YxprkA6fHRGwKEJ.jpg", "order": 0}, {"name": "Michael Thys", "character": "Mpudi", "id": 55675, "credit_id": "52fe44a5c3a36847f80a1f85", "cast_id": 6, "profile_path": null, "order": 1}, {"name": "Marius Weyers", "character": "Andrew Steyn", "id": 16758, "credit_id": "52fe44a5c3a36847f80a1f89", "cast_id": 7, "profile_path": "/xhUgoqJQOPzi2XoKVpVlJPcrcC3.jpg", "order": 2}, {"name": "Sandra Prinsloo", "character": "Kate Thompson", "id": 55676, "credit_id": "52fe44a5c3a36847f80a1f8d", "cast_id": 8, "profile_path": "/qpfBiTfNiOWzv2fbc1Zg0Ud693y.jpg", "order": 3}, {"name": "Louw Verwey", "character": "Sam Boga", "id": 55677, "credit_id": "52fe44a5c3a36847f80a1f91", "cast_id": 9, "profile_path": "/zCjDTEgmnNZwQq8EmQnyO2TQcWQ.jpg", "order": 4}, {"name": "Nic De Jager", "character": "Jack Hind", "id": 1099025, "credit_id": "52fe44a5c3a36847f80a1fb3", "cast_id": 16, "profile_path": "/aw0SWxL9fe3ToGEGNU5xAbTmYHU.jpg", "order": 5}, {"name": "Fanyana H. Sidumo", "character": "Card 1", "id": 1099026, "credit_id": "52fe44a5c3a36847f80a1fb7", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Joe Seakatsie", "character": "Card 2", "id": 1099027, "credit_id": "52fe44a5c3a36847f80a1fbb", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Brian O'Shaughnessy", "character": "Mr. Thompson", "id": 33718, "credit_id": "52fe44a5c3a36847f80a1fbf", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Ken Gampu", "character": "President", "id": 59804, "credit_id": "52fe44a5c3a36847f80a1fc3", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Jamie Uys", "department": "Directing", "job": "Director", "credit_id": "52fe44a5c3a36847f80a1f6b", "profile_path": "/aJOs1gdY5WQwaS8E6xf5LQAwsWh.jpg", "id": 55668}], "vote_average": 7.4, "runtime": 109}, "205": {"poster_path": "/ux6TRpqIOv6h8VJAiDVQBy2LBBH.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 38000000, "overview": "Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.", "video": false, "id": 205, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Hotel Rwanda", "tagline": "When the world closed its eyes, he opened his arms.", "vote_count": 209, "homepage": "http://www.metrofilms.com/hotelrwanda/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0395169", "adult": false, "backdrop_path": "/dQCTuhrP8bgsctRYeHSX21ceNX1.jpg", "production_companies": [{"name": "Sixth Sense Productions", "id": 7495}, {"name": "United Artists", "id": 60}, {"name": "Lions Gate Films", "id": 35}, {"name": "Industrial Development Corporation of South Africa", "id": 564}, {"name": "Miracle Pictures", "id": 2760}, {"name": "Inside Track Films", "id": 19834}, {"name": "Mikado Film", "id": 11912}, {"name": "Endgame Entertainment", "id": 1205}], "release_date": "2004-12-22", "popularity": 0.902627811562843, "original_title": "Hotel Rwanda", "budget": 17500000, "cast": [{"name": "Don Cheadle", "character": "Paul Rusesabagina", "id": 1896, "credit_id": "52fe4226c3a36847f8007f07", "cast_id": 10, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 0}, {"name": "Nick Nolte", "character": "Colonel Oliver", "id": 1733, "credit_id": "52fe4226c3a36847f8007f0b", "cast_id": 11, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 1}, {"name": "Sophie Okonedo", "character": "Tatiana Rusesabagina", "id": 2598, "credit_id": "52fe4226c3a36847f8007f0f", "cast_id": 12, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 2}, {"name": "Joaquin Phoenix", "character": "Jack Daglish", "id": 73421, "credit_id": "52fe4226c3a36847f8007f13", "cast_id": 13, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 3}, {"name": "Jean Reno", "character": "Sabena Airlines President, Mr. Tillens", "id": 1003, "credit_id": "52fe4226c3a36847f8007f17", "cast_id": 14, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Ofentse Modiselle", "character": "Roger Rusesabagina", "id": 2599, "credit_id": "52fe4226c3a36847f8007f1b", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Mathabo Pieterson", "character": "Diane Rusesabagina", "id": 2600, "credit_id": "52fe4226c3a36847f8007f1f", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Neil McCarthy", "character": "Jean Jacques", "id": 2601, "credit_id": "52fe4226c3a36847f8007f23", "cast_id": 17, "profile_path": "/sNQxZARN2qUtNzL28oyJnmuZWGe.jpg", "order": 7}, {"name": "Desmond Dube", "character": "Dube", "id": 2602, "credit_id": "52fe4226c3a36847f8007f27", "cast_id": 18, "profile_path": "/tT23u6yoJdVwbvA4RV20WmFMud8.jpg", "order": 8}, {"name": "Hakeem Kae-Kazim", "character": "George Rutaganda", "id": 2603, "credit_id": "52fe4226c3a36847f8007f2b", "cast_id": 19, "profile_path": "/cYHDYQbnvju1g8XIAnvwRr0bWSB.jpg", "order": 9}, {"name": "Tony Kgoroge", "character": "Gregoire", "id": 2606, "credit_id": "52fe4226c3a36847f8007f2f", "cast_id": 20, "profile_path": "/6SYs40gVJNmzKjz4kFQOwXG5BH6.jpg", "order": 10}, {"name": "Fana Mokoena", "character": "General Bizimungu", "id": 2607, "credit_id": "52fe4226c3a36847f8007f33", "cast_id": 21, "profile_path": "/skuKjL1Ep1SHrZuNl0lYVfZ9VM0.jpg", "order": 11}, {"name": "Lebo Mashile", "character": "Odette", "id": 2608, "credit_id": "52fe4226c3a36847f8007f37", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Antonio David Lyons", "character": "Thomas Mirama", "id": 832, "credit_id": "52fe4226c3a36847f8007f3b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Leleti Khumalo", "character": "Fedens", "id": 2609, "credit_id": "52fe4226c3a36847f8007f3f", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Terry George", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007ed9", "profile_path": "/bQDk9TM3y1pswHHKLoeb9bV88S9.jpg", "id": 2589}], "vote_average": 7.0, "runtime": 121}, "207": {"poster_path": "/3Ri2GReavqSHqWemlP6HYn8i2P9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 235860116, "overview": "At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.", "video": false, "id": 207, "genres": [{"id": 18, "name": "Drama"}], "title": "Dead Poets Society", "tagline": "He was their inspiration. He made their lives extraordinary.", "vote_count": 481, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097165", "adult": false, "backdrop_path": "/1K4KlYAfz1qSd8tZx720hlI58EY.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners IV", "id": 10282}], "release_date": "1989-06-09", "popularity": 1.49251569431807, "original_title": "Dead Poets Society", "budget": 16400000, "cast": [{"name": "Robin Williams", "character": "John Keating", "id": 2157, "credit_id": "52fe4227c3a36847f8007feb", "cast_id": 3, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "Todd Anderson", "id": 569, "credit_id": "52fe4227c3a36847f8007fef", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Robert Sean Leonard", "character": "Neil Perry", "id": 2692, "credit_id": "52fe4227c3a36847f8007ff3", "cast_id": 5, "profile_path": "/90xoBVpR2LzaFdo83KmcxjXR7Dg.jpg", "order": 2}, {"name": "Gale Hansen", "character": "Charlie Dalton", "id": 2693, "credit_id": "52fe4227c3a36847f8007ff7", "cast_id": 6, "profile_path": "/ecgoxKjYTjdyqhGiPdLyDIagoii.jpg", "order": 3}, {"name": "Josh Charles", "character": "Knox Overstreet", "id": 2694, "credit_id": "52fe4227c3a36847f8007ffb", "cast_id": 7, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 4}, {"name": "Dylan Kussman", "character": "Richard Cameron", "id": 2695, "credit_id": "52fe4227c3a36847f8007fff", "cast_id": 8, "profile_path": "/1qxGjFfkYGiEpM6QriVo4gjTTWz.jpg", "order": 5}, {"name": "Allelon Ruggiero", "character": "Steven Meeks", "id": 2696, "credit_id": "52fe4227c3a36847f8008003", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "James Waterston", "character": "Gerard Pitts", "id": 2697, "credit_id": "52fe4227c3a36847f8008007", "cast_id": 10, "profile_path": "/4uJlnCbWtcFWjUJf264WkfL05Ri.jpg", "order": 7}, {"name": "Norman Lloyd", "character": "Mr. Nolan", "id": 2698, "credit_id": "52fe4227c3a36847f800800b", "cast_id": 11, "profile_path": "/k4ofwRHZPeMSm8M3YWLeyoNvWTN.jpg", "order": 8}, {"name": "Kurtwood Smith", "character": "Mr. Perry", "id": 2115, "credit_id": "52fe4227c3a36847f800800f", "cast_id": 12, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 9}, {"name": "Carla Belver", "character": "Mrs. Perry", "id": 2699, "credit_id": "52fe4227c3a36847f8008013", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Leon Pownall", "character": "McAllister", "id": 2700, "credit_id": "52fe4227c3a36847f8008017", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "George Martin", "character": "Dr. Hager", "id": 2701, "credit_id": "52fe4227c3a36847f800801b", "cast_id": 15, "profile_path": "/lax77fIWSWrMYuS9zJi7VquNOeI.jpg", "order": 12}, {"name": "Alexandra Powers", "character": "Chris Noel", "id": 131183, "credit_id": "53af20edc3a3682ed8003d67", "cast_id": 25, "profile_path": "/bcZFHTddjsAR73j0rlRetktvEIE.jpg", "order": 13}, {"name": "Lara Flynn Boyle", "character": "Ginny Danburry", "id": 6684, "credit_id": "53af2114c3a3682edb003f20", "cast_id": 26, "profile_path": "/m6yHSVEjItgFkMAKB3zOdOoLITy.jpg", "order": 14}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f8007fe1", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 7.6, "runtime": 129}, "73937": {"poster_path": "/kBnR6jbFRnbSQTqLEcDpKd7FxK5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7, "overview": "Three avid bird watchers compete to spot the rarest birds in North America at a prestigious annual event.", "video": false, "id": 73937, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Big Year", "tagline": "Everyone is searching for something", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1053810", "adult": false, "backdrop_path": "/mP8q3nQIWPsj3NEQs8PKssvwPSk.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Deuce Three Productions", "id": 812}], "release_date": "2011-10-14", "popularity": 0.927311842437273, "original_title": "The Big Year", "budget": 41, "cast": [{"name": "Owen Wilson", "character": "Kenny Bostick", "id": 887, "credit_id": "52fe48b3c3a368484e10667b", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Steve Martin", "character": "Stu Preissler", "id": 67773, "credit_id": "52fe48b3c3a368484e10667f", "cast_id": 2, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 1}, {"name": "Jack Black", "character": "Brad Harris", "id": 70851, "credit_id": "52fe48b3c3a368484e106683", "cast_id": 3, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 2}, {"name": "Rashida Jones", "character": "Ellie", "id": 80591, "credit_id": "52fe48b3c3a368484e106687", "cast_id": 4, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 3}, {"name": "Jim Parsons", "character": "Crane", "id": 5374, "credit_id": "52fe48b3c3a368484e106697", "cast_id": 7, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 4}, {"name": "Anjelica Huston", "character": "Annie Auklet", "id": 5657, "credit_id": "52fe48b3c3a368484e10669b", "cast_id": 8, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Fuchs", "id": 1462, "credit_id": "52fe48b3c3a368484e10669f", "cast_id": 9, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "Kevin Pollak", "character": "Jim Gittelson", "id": 7166, "credit_id": "52fe48b3c3a368484e1066a3", "cast_id": 10, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 7}, {"name": "Rosamund Pike", "character": "Jessica", "id": 10882, "credit_id": "52fe48b3c3a368484e1066a7", "cast_id": 11, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 8}, {"name": "Joel McHale", "character": "Barry Loomis", "id": 74949, "credit_id": "52fe48b3c3a368484e1066ab", "cast_id": 12, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 9}, {"name": "Dianne Wiest", "character": "Brenda Harris", "id": 1902, "credit_id": "52fe48b3c3a368484e1066af", "cast_id": 13, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 10}, {"name": "Anthony Anderson", "character": "Bill Clemont", "id": 18471, "credit_id": "52fe48b3c3a368484e1066b3", "cast_id": 14, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 11}, {"name": "Brian Dennehy", "character": "Raymond Harris", "id": 6197, "credit_id": "52fe48b3c3a368484e1066b7", "cast_id": 15, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 12}, {"name": "June Squibb", "character": "Old Lady", "id": 35515, "credit_id": "52fe48b3c3a368484e1066bb", "cast_id": 16, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 13}, {"name": "Zahf Paroo", "character": "Prasad", "id": 58902, "credit_id": "54e658cd9251416f49000145", "cast_id": 17, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 14}, {"name": "Stacey Scowley", "character": "Vicki", "id": 98818, "credit_id": "54e658ea9251416f430000ec", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Michael Karl Richards", "character": "Vicki's Fianc\u00e9e", "id": 172833, "credit_id": "54e659039251416f4f000139", "cast_id": 19, "profile_path": "/t3JFAyGzTadJ8sB7F5BtC80YxXx.jpg", "order": 16}, {"name": "Paul Campbell", "character": "Tony", "id": 62909, "credit_id": "54e659299251416f4f00013e", "cast_id": 20, "profile_path": "/gmMt9mKExBd796rsfTuRvrP2SAu.jpg", "order": 17}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe48b3c3a368484e10668d", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 5.3, "runtime": 100}, "212": {"poster_path": "/9E0JXBuFkSCe2k3CPynUBFEpTnO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mortimer Brewster is a newspaperman and author known for his diatribes against marriage. We watch him being married at city hall in the opening scene. Now all that is required is a quick trip home to tell Mortimer's two maiden aunts. While trying to break the news, he finds out his aunts' hobby; killing lonely old men and burying them in the cellar. It gets worse.", "video": false, "id": 212, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Arsenic and Old Lace", "tagline": "She Passed Out On Cary! No Wonder . . . She's just discovered his favorite aunts have poisoned their 13th gentleman friend!", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0036613", "adult": false, "backdrop_path": "/cFZ45bhZRLI2fY08ULMe6NTd8e1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1944-09-23", "popularity": 0.443100210709386, "original_title": "Arsenic and Old Lace", "budget": 1120175, "cast": [{"name": "Cary Grant", "character": "Mortimer Brewster", "id": 2638, "credit_id": "52fe4227c3a36847f8008113", "cast_id": 7, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Priscilla Lane", "character": "Elaine Harper", "id": 2670, "credit_id": "52fe4227c3a36847f8008127", "cast_id": 12, "profile_path": "/29ry8Ct4sqs1dht9rn80TBPmuUA.jpg", "order": 1}, {"name": "Raymond Massey", "character": "Jonathan Brewster", "id": 2669, "credit_id": "52fe4227c3a36847f800811f", "cast_id": 10, "profile_path": "/hGum9pfA0NOSD1CYXyG4TYc3upQ.jpg", "order": 2}, {"name": "Jack Carson", "character": "Officer Patrick O'Hara", "id": 2672, "credit_id": "52fe4227c3a36847f800812b", "cast_id": 13, "profile_path": "/7Ys9ZSd9vspOkmWrFJkVDnknRCi.jpg", "order": 3}, {"name": "Edward Everett Horton", "character": "Mr. Witherspoon", "id": 2437, "credit_id": "52fe4227c3a36847f8008133", "cast_id": 17, "profile_path": "/yf4MoiK7wnb2dafruUvnVgtuxSN.jpg", "order": 4}, {"name": "Peter Lorre", "character": "Dr. Einstein", "id": 2094, "credit_id": "52fe4227c3a36847f8008123", "cast_id": 11, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 5}, {"name": "James Gleason", "character": "Lt. Rooney", "id": 30537, "credit_id": "52fe4227c3a36847f8008137", "cast_id": 18, "profile_path": "/7wG5IWZnaAObGJbdUPmJWNjS54s.jpg", "order": 6}, {"name": "Josephine Hull", "character": "Aunt Abby Brewster", "id": 2667, "credit_id": "52fe4227c3a36847f8008117", "cast_id": 8, "profile_path": "/zlT2oyVqCIwYF7v21bO6qIU67mA.jpg", "order": 7}, {"name": "Jean Adair", "character": "Aunt Martha Brewster", "id": 2668, "credit_id": "52fe4227c3a36847f800811b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "John Alexander", "character": "'Teddy Roosevelt' Brewster", "id": 2671, "credit_id": "52fe4227c3a36847f800812f", "cast_id": 16, "profile_path": "/pRfrSsL3exXrj0rjvx8CG2xhhuX.jpg", "order": 9}, {"name": "Grant Mitchell", "character": "Reverend Harper", "id": 30215, "credit_id": "52fe4227c3a36847f800813b", "cast_id": 19, "profile_path": "/cDZpWgH0qOF4L5nmZJzGIHE5xo3.jpg", "order": 10}, {"name": "Edward McNamara", "character": "Sergeant Brophy", "id": 2674, "credit_id": "52fe4227c3a36847f800813f", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Garry Owen", "character": "Taxi Cab Driver", "id": 117772, "credit_id": "52fe4227c3a36847f8008143", "cast_id": 21, "profile_path": "/mnRNfqFfQAUNxqfotr6T32iWWf2.jpg", "order": 12}, {"name": "John Ridgely", "character": "Officer Saunders", "id": 2673, "credit_id": "52fe4227c3a36847f8008147", "cast_id": 22, "profile_path": "/438JXIe6hZKXcao3X7mfYdcPOOc.jpg", "order": 13}, {"name": "Vaughan Glaser", "character": "Judge Cullman", "id": 247639, "credit_id": "52fe4227c3a36847f800814b", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Chester Clute", "character": "Dr. Gilchrist", "id": 30280, "credit_id": "52fe4227c3a36847f800814f", "cast_id": 24, "profile_path": "/9ZlAACiCnepfZS0dTAqqkdqWGse.jpg", "order": 15}, {"name": "Charles Lane", "character": "Reporter", "id": 29579, "credit_id": "52fe4227c3a36847f8008153", "cast_id": 25, "profile_path": "/wu5fTupk5atyJlCsHhXPGcdf8Mg.jpg", "order": 16}, {"name": "Edward McWade", "character": "Gibbs", "id": 96069, "credit_id": "52fe4227c3a36847f8008157", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Spencer Charters", "character": "Marriage License Clerk (uncredited)", "id": 34280, "credit_id": "52fe4227c3a36847f800815b", "cast_id": 27, "profile_path": "/67wOC0rjJG6tpXVQLZsOj6s7clP.jpg", "order": 18}, {"name": "Hank Mann", "character": "Photographer at Marriage License Office (uncredited)", "id": 13856, "credit_id": "52fe4227c3a36847f8008171", "cast_id": 31, "profile_path": null, "order": 19}], "directors": [{"name": "Frank Capra", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f8008103", "profile_path": "/hvPrtfKnJs9arck1zKGnG8uRkBC.jpg", "id": 2662}], "vote_average": 7.3, "runtime": 118}, "213": {"poster_path": "/rEHP8ylmL3pcsDUEA6Z5qhajYui.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13275000, "overview": "An advertising man is mistaken for a spy, triggering a deadly cross-country chase.", "video": false, "id": 213, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "North by Northwest", "tagline": "It's a deadly game of 'tag' and Cary Grant is 'it'...", "vote_count": 320, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053125", "adult": false, "backdrop_path": "/AplR1QRswlXiM65GoifX8sDadME.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1959-07-17", "popularity": 0.920950020112408, "original_title": "North by Northwest", "budget": 4000000, "cast": [{"name": "Cary Grant", "character": "Roger O. Thornhill", "id": 2638, "credit_id": "52fe4227c3a36847f80081cb", "cast_id": 3, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Eva Marie Saint", "character": "Eve Kendall", "id": 2639, "credit_id": "52fe4227c3a36847f80081cf", "cast_id": 4, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 1}, {"name": "James Mason", "character": "Phillip Vandamm", "id": 2091, "credit_id": "52fe4227c3a36847f80081d3", "cast_id": 5, "profile_path": "/b0ebmboBdaYvk8fn2CFCQl4TaW9.jpg", "order": 2}, {"name": "Jessie Royce Landis", "character": "Clara Thornhill", "id": 2640, "credit_id": "52fe4227c3a36847f80081d7", "cast_id": 6, "profile_path": "/o7NngdQPrvEfN3m3UVcjVPwC3Co.jpg", "order": 3}, {"name": "Philip Coolidge", "character": "Dr. Cross", "id": 2649, "credit_id": "52fe4227c3a36847f80081fb", "cast_id": 15, "profile_path": "/bjJ436taU3waod9H5PvTUHB1t6B.jpg", "order": 4}, {"name": "Doreen Lang", "character": "Maggie - Thornhill's Secretary", "id": 2745, "credit_id": "52fe4227c3a36847f800824d", "cast_id": 30, "profile_path": "/1t2LDiPbR4FHdEoCRgQnqDmV1Jv.jpg", "order": 5}, {"name": "Josephine Hutchinson", "character": "Vandamm's Sister aka Mrs. Townsend", "id": 2643, "credit_id": "52fe4227c3a36847f80081e3", "cast_id": 9, "profile_path": "/d394ymYaSSxTMlZY8d2S8brpWHz.jpg", "order": 6}, {"name": "Leo G. Carroll", "character": "The Professor", "id": 2642, "credit_id": "52fe4227c3a36847f80081df", "cast_id": 8, "profile_path": "/xTxzUMrwj00ZXa3iWOqP5w1xgO5.jpg", "order": 7}, {"name": "Philip Ober", "character": "Lester Townsend", "id": 2644, "credit_id": "52fe4227c3a36847f80081e7", "cast_id": 10, "profile_path": "/ney8KQ445hFtsb0fu3apsleKWmh.jpg", "order": 8}, {"name": "Adam Williams", "character": "Valerian", "id": 2645, "credit_id": "52fe4227c3a36847f80081eb", "cast_id": 11, "profile_path": "/eGdsCvVnd66A57JOEQ2SghzSBJi.jpg", "order": 9}, {"name": "Edward Platt", "character": "Victor Larrabee", "id": 2646, "credit_id": "52fe4227c3a36847f80081ef", "cast_id": 12, "profile_path": "/3ZEEg2FwYjDxJVzNU4nR03l0K2h.jpg", "order": 10}, {"name": "Robert Ellenstein", "character": "Licht", "id": 2647, "credit_id": "52fe4227c3a36847f80081f3", "cast_id": 13, "profile_path": "/hOyTZHJx2ZrbsQusSHsfEolORv0.jpg", "order": 11}, {"name": "Martin Landau", "character": "Leonard", "id": 2641, "credit_id": "52fe4227c3a36847f80081db", "cast_id": 7, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 12}, {"name": "Les Tremayne", "character": "Auctioneer", "id": 2648, "credit_id": "52fe4227c3a36847f80081f7", "cast_id": 14, "profile_path": "/4CN7uxPFPf1Kt2hB9f2kDcuM0za.jpg", "order": 13}, {"name": "Patrick McVey", "character": "Sergeant Flamm", "id": 2650, "credit_id": "52fe4227c3a36847f80081ff", "cast_id": 16, "profile_path": "/gkMUnuHc2oYtoj4HfXjVceC4eV2.jpg", "order": 14}, {"name": "Edward Binns", "character": "Captain Junket", "id": 2651, "credit_id": "52fe4227c3a36847f8008203", "cast_id": 17, "profile_path": "/uTPEszrP1ZgDVo1nkRIYwAeYHnO.jpg", "order": 15}, {"name": "Ken Lynch", "character": "Charley - Chicago Policeman", "id": 2652, "credit_id": "52fe4227c3a36847f8008207", "cast_id": 18, "profile_path": "/6zrOWruN0LoolGOSNdzKdJMiVkd.jpg", "order": 16}, {"name": "Nora Marlowe", "character": "Menacing housekeeper", "id": 153241, "credit_id": "52fe4227c3a36847f8008257", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Maudie Prickett", "character": "Hotel maid Elsie", "id": 151503, "credit_id": "52fe4227c3a36847f800825b", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Ned Glass", "character": "Ticket seller", "id": 18870, "credit_id": "52fe4227c3a36847f800825f", "cast_id": 34, "profile_path": "/dwfC6rmH6JkaNxuYEgi2Yh55n4w.jpg", "order": 19}, {"name": "Malcolm Atterbury", "character": "Man waiting for bus", "id": 115460, "credit_id": "52fe4227c3a36847f8008263", "cast_id": 35, "profile_path": "/A5bi0v9WuSt1Y6KyUnHvq6XKNHk.jpg", "order": 20}, {"name": "Bess Flowers", "character": "Plaza Hotel lounge patron", "id": 121323, "credit_id": "52fe4227c3a36847f8008267", "cast_id": 36, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 21}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f80081c1", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.3, "runtime": 136}, "214": {"poster_path": "/anWZLD1GS4oumMkf20o2xIMnvlp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163876815, "overview": "Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scramble to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.", "video": false, "id": 214, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Saw III", "tagline": "Suffering? You Haven't Seen Anything Yet...", "vote_count": 217, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489270", "adult": false, "backdrop_path": "/1AG4zhL1MPdJGwAp3GODLG1j1LY.jpg", "production_companies": [{"name": "Twisted Pictures", "id": 2061}, {"name": "Evolution Entertainment", "id": 23019}, {"name": "Lions Gate Films", "id": 35}], "release_date": "2006-10-27", "popularity": 0.761691864480091, "original_title": "Saw III", "budget": 10000000, "cast": [{"name": "Tobin Bell", "character": "John Kramer", "id": 2144, "credit_id": "52fe4227c3a36847f8008297", "cast_id": 3, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Angus Macfadyen", "character": "Jeff Reinhart", "id": 2464, "credit_id": "52fe4227c3a36847f800829b", "cast_id": 4, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 1}, {"name": "Dina Meyer", "character": "Kerry", "id": 2133, "credit_id": "52fe4227c3a36847f800829f", "cast_id": 5, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 2}, {"name": "Kim Roberts", "character": "Deborah", "id": 2676, "credit_id": "52fe4227c3a36847f80082a3", "cast_id": 6, "profile_path": "/buXKE9uKIjT4u0TZXv32zgqDCOR.jpg", "order": 3}, {"name": "Shawnee Smith", "character": "Amanda Young", "id": 2138, "credit_id": "52fe4227c3a36847f80082a7", "cast_id": 7, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 4}, {"name": "Bahar Soomekh", "character": "Dr. Lynn Denlon", "id": 2677, "credit_id": "52fe4227c3a36847f80082ab", "cast_id": 8, "profile_path": "/l3tlQiTmny4jjWidesht3nlt6sW.jpg", "order": 5}, {"name": "Donnie Wahlberg", "character": "Eric Matthews", "id": 2680, "credit_id": "54c3d40bc3a368789b0062f0", "cast_id": 19, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 6}, {"name": "Leigh Whannell", "character": "Adam", "id": 2128, "credit_id": "54c3d43f92514124ed005f65", "cast_id": 20, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 7}, {"name": "J. Larose", "character": "Troy", "id": 139631, "credit_id": "54c3d45c9251412446005e60", "cast_id": 21, "profile_path": "/fhWAhpZ1wpfO0tRI6NVxWzP3ci4.jpg", "order": 8}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "54c3d46ec3a3687c400105ec", "cast_id": 22, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 9}, {"name": "Costas Mandylor", "character": "Forensic Hoffman", "id": 36055, "credit_id": "54c3d4ae9251416e6000f72d", "cast_id": 23, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 10}], "directors": [{"name": "Darren Lynn Bousman", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f800828d", "profile_path": "/83Q6TkXPsq1VAqRPYb2NrqN3lI7.jpg", "id": 2675}], "vote_average": 6.1, "runtime": 108}, "215": {"poster_path": "/vC7ggR8njwtQOZRmrSvMtHqy9hx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152925093, "overview": "When a new murder victim is discovered with all the signs of Jigsaw's hand, Detective Eric Matthews begins a full investigation and apprehends Jigsaw with little effort. But for Jigsaw, getting caught is just another part of his plan. Eight more of his victims are already fighting for their lives and now it's time for Matthews to join the game...", "video": false, "id": 215, "genres": [{"id": 27, "name": "Horror"}], "title": "Saw II", "tagline": "Oh Yes... There Will Be Blood.", "vote_count": 252, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0432348", "adult": false, "backdrop_path": "/aVrbpwcyWffkeicKhB7h21M6A4I.jpg", "production_companies": [{"name": "Evolution Entertainment", "id": 23019}, {"name": "Twisted Pictures", "id": 2061}, {"name": "Lions Gate Films", "id": 35}, {"name": "Got Films", "id": 1053}], "release_date": "2005-10-28", "popularity": 1.12708186077459, "original_title": "Saw II", "budget": 4000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw", "id": 2144, "credit_id": "52fe4227c3a36847f8008325", "cast_id": 4, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Shawnee Smith", "character": "Amanda", "id": 2138, "credit_id": "52fe4227c3a36847f8008329", "cast_id": 5, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 1}, {"name": "Donnie Wahlberg", "character": "Eric Matthews", "id": 2680, "credit_id": "52fe4227c3a36847f800832d", "cast_id": 6, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 2}, {"name": "Erik Knudsen", "character": "Daniel Matthews", "id": 2681, "credit_id": "52fe4227c3a36847f8008331", "cast_id": 7, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 3}, {"name": "Franky G", "character": "Xavier", "id": 2682, "credit_id": "52fe4227c3a36847f8008335", "cast_id": 8, "profile_path": "/2C6BTj03PQlbCIzb1zAv9gcMr5l.jpg", "order": 4}, {"name": "Glenn Plummer", "character": "Jonas", "id": 2683, "credit_id": "52fe4227c3a36847f8008339", "cast_id": 9, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 5}, {"name": "Emmanuelle Vaugier", "character": "Addison", "id": 2684, "credit_id": "52fe4227c3a36847f800833d", "cast_id": 10, "profile_path": "/k8bjOJmREhKUHeUj33Sihnk89V9.jpg", "order": 6}, {"name": "Beverley Mitchell", "character": "Laura", "id": 2685, "credit_id": "52fe4227c3a36847f8008341", "cast_id": 11, "profile_path": "/y2Ewc5yedkG3ZjsturrY6CfMHSC.jpg", "order": 7}, {"name": "Tim Burd", "character": "Obi", "id": 2686, "credit_id": "52fe4227c3a36847f8008345", "cast_id": 12, "profile_path": "/inSi2m7IYXK7pUlEk2bPEvnri4J.jpg", "order": 8}, {"name": "Dina Meyer", "character": "Kerry", "id": 2133, "credit_id": "52fe4227c3a36847f8008349", "cast_id": 13, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 9}, {"name": "Lyriq Bent", "character": "Rigg", "id": 2687, "credit_id": "52fe4227c3a36847f800834d", "cast_id": 14, "profile_path": "/sPiFZOViNCGM9jWNDSr4G9FpWvD.jpg", "order": 10}, {"name": "Noam Jenkins", "character": "Michael", "id": 33668, "credit_id": "52fe4227c3a36847f800838d", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Tony Nappo", "character": "Gus", "id": 76528, "credit_id": "52fe4227c3a36847f8008391", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Kelly Jones", "character": "SWAT Member Pete", "id": 76529, "credit_id": "52fe4227c3a36847f8008395", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Vincent Rother", "character": "SWAT Member Joe", "id": 76530, "credit_id": "52fe4227c3a36847f8008399", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Darren Lynn Bousman", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f8008315", "profile_path": "/83Q6TkXPsq1VAqRPYb2NrqN3lI7.jpg", "id": 2675}], "vote_average": 6.2, "runtime": 92}, "8409": {"poster_path": "/l9UIm6rCHzfbMy6KY8ynjV4kLHX.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44350926, "overview": "When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.", "video": false, "id": 8409, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "A Man Apart", "tagline": "Love changes a man. Revenge tears him apart.", "vote_count": 76, "homepage": "http://www.newline.com/properties/manaparta.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0266465", "adult": false, "backdrop_path": "/3pAQqMg1bGPKA3OlPl8u8n1glcn.jpg", "production_companies": [{"name": "Newman/Tooley Films", "id": 16791}, {"name": "\"DIA\" Productions GmbH & Co. KG", "id": 37103}, {"name": "Joseph Nittolo Entertainment", "id": 21975}, {"name": "New Line Cinema", "id": 12}], "release_date": "2003-04-04", "popularity": 0.908304338694091, "original_title": "A Man Apart", "budget": 36000000, "cast": [{"name": "Vin Diesel", "character": "Sean Vetter", "id": 12835, "credit_id": "52fe44a5c3a36847f80a216f", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Larenz Tate", "character": "Demetrius Hicks", "id": 18291, "credit_id": "52fe44a5c3a36847f80a2173", "cast_id": 2, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 1}, {"name": "Timothy Olyphant", "character": "Hollywood Jack", "id": 18082, "credit_id": "52fe44a5c3a36847f80a2177", "cast_id": 3, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 2}, {"name": "Geno Silva", "character": "Memo Lucero", "id": 54864, "credit_id": "52fe44a5c3a36847f80a217b", "cast_id": 4, "profile_path": "/K9Nban8CdJltJqn8GXgnZbgTLc.jpg", "order": 3}, {"name": "Jacqueline Obradors", "character": "Stacy Vetter", "id": 49818, "credit_id": "52fe44a5c3a36847f80a217f", "cast_id": 5, "profile_path": "/p7QydGjTdM6sya62gSvMNMEqMT4.jpg", "order": 4}, {"name": "Steve Eastin", "character": "Ty Frost", "id": 9276, "credit_id": "52fe44a5c3a36847f80a2183", "cast_id": 6, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 5}, {"name": "Juan Fern\u00e1ndez", "character": "Mateo Santos", "id": 1607, "credit_id": "52fe44a5c3a36847f80a2187", "cast_id": 7, "profile_path": "/kA5I0SunYlTP9YJYwOrs4aCarCH.jpg", "order": 6}, {"name": "Jeff Kober", "character": "Pomona Joe", "id": 54865, "credit_id": "52fe44a5c3a36847f80a218b", "cast_id": 8, "profile_path": "/eMp9ZsC77yddwW4SMiuZ7xOd0GS.jpg", "order": 7}, {"name": "Marco Rodr\u00edguez", "character": "Hondo", "id": 73132, "credit_id": "5455e6960e0a2648d6006768", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Mike Moroff", "character": "Gustavo Leon", "id": 100260, "credit_id": "5455e6a8c3a3680b76001e05", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Emilio Rivera", "character": "Garza", "id": 53257, "credit_id": "5455e6bdc3a3681473006522", "cast_id": 30, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 10}, {"name": "George Sharperson", "character": "Big Sexy", "id": 157058, "credit_id": "5455e6d00e0a2648cf0069cd", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Malieek Straughter", "character": "Overdose", "id": 130689, "credit_id": "5455e6e40e0a2648cb006891", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Alice Amter", "character": "Marta", "id": 61081, "credit_id": "5455e6f5c3a368147c006738", "cast_id": 33, "profile_path": "/4E9f0lK8u91WpS9tEZfZFWyCxcz.jpg", "order": 13}, {"name": "Jim Boeke", "character": "Bad Cop", "id": 1380680, "credit_id": "5455e7070e0a2648c5006afe", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe44a5c3a36847f80a21df", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 6.0, "runtime": 109}, "65754": {"poster_path": "/voxRWFTtagLiqnJQs9tWQLB0MN.jpg", "production_countries": [{"iso_3166_1": "NO", "name": "Norway"}, {"iso_3166_1": "SE", "name": "Sweden"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102515793, "overview": "This English-language adaptation of the Swedish novel by Stieg Larsson follows a disgraced journalist, Mikael Blomkvist, as he investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.", "video": false, "id": 65754, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl with the Dragon Tattoo", "tagline": "Evil shall with evil be expelled.", "vote_count": 877, "homepage": "http://dragontattoo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1568346", "adult": false, "backdrop_path": "/1fk2xS5hRkblBuag5JXZkmE8pg6.jpg", "production_companies": [{"name": "Ground Control", "id": 47479}, {"name": "Columbia Pictures", "id": 5}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Film Rites", "id": 8083}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Yellow Bird", "id": 33817}], "release_date": "2011-12-21", "popularity": 1.09154150658762, "original_title": "The Girl with the Dragon Tattoo", "budget": 100000000, "cast": [{"name": "Daniel Craig", "character": "Mikael Blomkvist", "id": 8784, "credit_id": "52fe4718c3a368484e0b4c4d", "cast_id": 2, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Rooney Mara", "character": "Lisbeth Salander", "id": 108916, "credit_id": "52fe4718c3a368484e0b4c55", "cast_id": 4, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Henrik Vanger", "id": 290, "credit_id": "52fe4718c3a368484e0b4c5d", "cast_id": 6, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Martin Vanger", "id": 1640, "credit_id": "52fe4718c3a368484e0b4c51", "cast_id": 3, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Robin Wright", "character": "Erika Berger", "id": 32, "credit_id": "52fe4718c3a368484e0b4c59", "cast_id": 5, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 4}, {"name": "Steven Berkoff", "character": "Dirch Frode", "id": 782, "credit_id": "52fe4718c3a368484e0b4c6d", "cast_id": 9, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 5}, {"name": "Joely Richardson", "character": "Anita Vanger", "id": 20810, "credit_id": "52fe4718c3a368484e0b4c71", "cast_id": 10, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 6}, {"name": "Embeth Davidtz", "character": "Annika Blomkvist Giannini", "id": 6368, "credit_id": "533983189251417d9b004a73", "cast_id": 28, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 7}, {"name": "Geraldine James", "character": "Cecilia Vanger", "id": 11855, "credit_id": "52fe4718c3a368484e0b4c75", "cast_id": 11, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 8}, {"name": "Goran Vi\u0161nji\u0107", "character": "Dragan Armansky", "id": 5725, "credit_id": "52fe4718c3a368484e0b4c79", "cast_id": 12, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 9}, {"name": "Elodie Yung", "character": "Miriam Wu", "id": 78147, "credit_id": "52fe4718c3a368484e0b4c7d", "cast_id": 13, "profile_path": "/pbhMOW06QNPujrHM2aNX2TS0eXH.jpg", "order": 10}, {"name": "Julian Sands", "character": "Young Henrik Vanger", "id": 6104, "credit_id": "52fe4718c3a368484e0b4c81", "cast_id": 14, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 11}, {"name": "Ulf Friberg", "character": "Hans-Erik Wennerstr\u00f6m", "id": 255653, "credit_id": "52fe4718c3a368484e0b4c91", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Gustaf Hammarsten", "character": "Young Harald Vanger", "id": 11040, "credit_id": "52fe4718c3a368484e0b4c95", "cast_id": 18, "profile_path": "/zG4x2kuRTS3bx5l4cATSk98WMof.jpg", "order": 13}, {"name": "David Dencik", "character": "Young Gustaf Morell", "id": 93236, "credit_id": "52fe4718c3a368484e0b4c99", "cast_id": 19, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 14}, {"name": "Alan Dale", "character": "Detective Isaksson", "id": 52760, "credit_id": "52fe4718c3a368484e0b4c9d", "cast_id": 20, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 15}, {"name": "Yorick van Wageningen", "character": "Nils Bjurman", "id": 31387, "credit_id": "53beb3180e0a26157f0045da", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Donald Sumpter", "character": "Detective Inspector Gustaf Morell", "id": 20425, "credit_id": "53beb35f0e0a26158f004297", "cast_id": 30, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 17}, {"name": "Bengt C.W. Carlsson", "character": "Holger Palmgren", "id": 111786, "credit_id": "53beb3850e0a26158f00429d", "cast_id": 31, "profile_path": "/9QKuOwCNh3SBcKIbnxAqinhIIia.jpg", "order": 18}, {"name": "Tony Way", "character": "Plague", "id": 147255, "credit_id": "53beb39a0e0a26158f0042a1", "cast_id": 32, "profile_path": "/uk8OCXbEGXnkmKvf7EgVzfKq918.jpg", "order": 19}, {"name": "Inga Landgr\u00e9", "character": "Isabella Vanger", "id": 6661, "credit_id": "53beb3b90e0a26157c004359", "cast_id": 33, "profile_path": "/tTMBmDtvEBNOGl9JpvV9WXAqYw2.jpg", "order": 20}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4718c3a368484e0b4c49", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.8, "runtime": 158}, "219": {"poster_path": "/3FCPHBd0F5Hva2SaUZMVj7Qj8XZ.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 85582407, "overview": "Raimunda (Pen\u00e9lope Cruz) works and lives Madrid with her husband Paco and daughter Paula. Her sister Sole (Lola Due\u00f1as) lives nearby and they both miss their mother Irene (Carmen Maura), who died several years ago in a house fire along with their father. A former neighbor from their hometown reports that she has seen the ghost of Irene and both daughters do not believe her. After a murder and a family tragedy, Irene's spirit materializes around her daughters to help comfort them.", "video": false, "id": 219, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Volver", "tagline": "Return.", "vote_count": 84, "homepage": "http://www.volver-lapelicula.com", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0441909", "adult": false, "backdrop_path": "/2ZqUuollwvBiNvGHdxBVngiP0YG.jpg", "production_companies": [{"name": "El Deseo", "id": 49}], "release_date": "2006-03-16", "popularity": 0.286243308524025, "original_title": "Volver", "budget": 12899867, "cast": [{"name": "Pen\u00e9lope Cruz", "character": "Raimunda", "id": 955, "credit_id": "52fe4228c3a36847f80085d7", "cast_id": 3, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 0}, {"name": "Carmen Maura", "character": "Abuela Irene", "id": 2744, "credit_id": "52fe4228c3a36847f80085db", "cast_id": 4, "profile_path": "/vVFMLSBC9c817FGGoS4ZHLdwyKE.jpg", "order": 1}, {"name": "Lola Due\u00f1as", "character": "Sole", "id": 2759, "credit_id": "52fe4228c3a36847f80085df", "cast_id": 5, "profile_path": "/r5rHHPDV7flRGF2qQ885VsKTp5K.jpg", "order": 2}, {"name": "Blanca Portillo", "character": "Agustina", "id": 3480, "credit_id": "52fe4228c3a36847f80085e3", "cast_id": 6, "profile_path": "/i07cqKKYOi1MydmthPnFNpzmkx.jpg", "order": 3}, {"name": "Yohana Cobo", "character": "Paula", "id": 3481, "credit_id": "52fe4228c3a36847f80085e7", "cast_id": 7, "profile_path": "/AaSEX1BHvIAw13LiJnPMkb4CiFj.jpg", "order": 4}, {"name": "Chus Lampreave", "character": "T\u00eda Paula", "id": 3482, "credit_id": "52fe4228c3a36847f80085eb", "cast_id": 8, "profile_path": "/dwoyRWC5Nyo2UgE7M6AjqJWSAAD.jpg", "order": 5}, {"name": "Antonio de la Torre", "character": "Paco", "id": 3483, "credit_id": "52fe4228c3a36847f80085ef", "cast_id": 9, "profile_path": "/6gLwqdiKMB2s7ymeRAaHZlvGjvR.jpg", "order": 6}, {"name": "Carlos Blanco", "character": "Emilio", "id": 4363, "credit_id": "52fe4228c3a36847f80085f3", "cast_id": 10, "profile_path": "/obYflQjJ1LUCSETiBfoE8HCCnNC.jpg", "order": 7}, {"name": "Mar\u00eda Isabel D\u00edaz", "character": "Regina", "id": 4364, "credit_id": "52fe4228c3a36847f80085f7", "cast_id": 11, "profile_path": "/1emMA2qcYTa8ysOUJ8j99C0kvSb.jpg", "order": 8}, {"name": "Neus Sanz", "character": "In\u00e9s", "id": 4365, "credit_id": "52fe4228c3a36847f80085fb", "cast_id": 12, "profile_path": "/lIbDFkhcWaDnX8awmKcIuaLfvaq.jpg", "order": 9}, {"name": "Leandro Rivera", "character": "Auxiliar", "id": 4366, "credit_id": "52fe4228c3a36847f80085ff", "cast_id": 13, "profile_path": "/p1i0CY0lsr6mckL6Q4BWNdOx7RY.jpg", "order": 10}, {"name": "Yolanda Ramos", "character": "Presentadora TV", "id": 4367, "credit_id": "52fe4228c3a36847f8008603", "cast_id": 14, "profile_path": "/7vZc4FXla6k3jFxKjvR9QduH4W6.jpg", "order": 11}, {"name": "Carlos Garc\u00eda Cambero", "character": "Carlos", "id": 4368, "credit_id": "52fe4228c3a36847f8008607", "cast_id": 15, "profile_path": "/osxvC4fT68MtQioV7c3LWTJTNVV.jpg", "order": 12}, {"name": "Natalia Roig", "character": "Vecina", "id": 4369, "credit_id": "52fe4228c3a36847f800860b", "cast_id": 16, "profile_path": "/dwXB0OgcQ63a9AbCIZxxygQtECC.jpg", "order": 13}, {"name": "Eli Iranzo", "character": "Vecina", "id": 4370, "credit_id": "52fe4228c3a36847f800860f", "cast_id": 17, "profile_path": "/bvgII5PnGAOpnQN2Y57lREGVFYs.jpg", "order": 14}, {"name": "Fanny de Castro", "character": "Vecina", "id": 4371, "credit_id": "52fe4228c3a36847f8008613", "cast_id": 18, "profile_path": "/lEZydmsCWbAfNPHgYw5t00B58Ab.jpg", "order": 15}, {"name": "Concha Gal\u00e1n", "character": "Vecina", "id": 4372, "credit_id": "52fe4228c3a36847f8008617", "cast_id": 19, "profile_path": "/m2XgSzCTbgPLCI7C2qfRDsBGMnq.jpg", "order": 16}, {"name": "Magdalena Brotto", "character": "Vecina", "id": 4373, "credit_id": "52fe4228c3a36847f800861b", "cast_id": 20, "profile_path": "/mcJA4kPJtxjzsiYBgSHTDxVEOT1.jpg", "order": 17}, {"name": "Pepa Aniorte", "character": "Vecina", "id": 4374, "credit_id": "52fe4228c3a36847f800861f", "cast_id": 21, "profile_path": "/AuEBh4Nec1ERu714NmChwpp3ta7.jpg", "order": 18}, {"name": "Isabel Ay\u00facar", "character": "Vecina", "id": 4375, "credit_id": "52fe4228c3a36847f8008623", "cast_id": 22, "profile_path": "/Awt03qgWvCCrF67G2SEYe5yFTuF.jpg", "order": 19}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe4228c3a36847f80085cd", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 7.3, "runtime": 121}, "8413": {"poster_path": "/vo02iJLsem3VCJ2TNvSzRiJMpAE.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47073851, "overview": "In the year 2047 a group of astronauts are sent to investigate and salvage the long lost starship \"Event Horizon\". The ship disappeared mysteriously 7 years before on its maiden voyage and with its return comes even more mystery as the crew of the \"Lewis and Clark\" discover the real truth behind its disappearance and something even more terrifying.", "video": false, "id": 8413, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Event Horizon", "tagline": "Infinite Space - Infinite Terror", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0119081", "adult": false, "backdrop_path": "/kOO8XuIjhfhinxVKMFiAgs91k0F.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Paramount Pictures", "id": 4}, {"name": "Golar Productions", "id": 2484}], "release_date": "1997-08-14", "popularity": 1.09688328272271, "original_title": "Event Horizon", "budget": 60000000, "cast": [{"name": "Laurence Fishburne", "character": "Captain Miller", "id": 2975, "credit_id": "52fe44a6c3a36847f80a22b1", "cast_id": 8, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 0}, {"name": "Sam Neill", "character": "Dr. William Weir", "id": 4783, "credit_id": "52fe44a6c3a36847f80a22b5", "cast_id": 9, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 1}, {"name": "Kathleen Quinlan", "character": "Peters, Med Tech", "id": 8183, "credit_id": "52fe44a6c3a36847f80a22b9", "cast_id": 10, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 2}, {"name": "Joely Richardson", "character": "Lt. Starck", "id": 20810, "credit_id": "52fe44a6c3a36847f80a22bd", "cast_id": 11, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 3}, {"name": "Richard T. Jones", "character": "Cooper", "id": 55755, "credit_id": "52fe44a6c3a36847f80a22c1", "cast_id": 12, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 4}, {"name": "Jack Noseworthy", "character": "Justin", "id": 22133, "credit_id": "52fe44a6c3a36847f80a22c5", "cast_id": 13, "profile_path": "/g30R5ax6RSN8OSdsWZnG2IhLDFT.jpg", "order": 5}, {"name": "Jason Isaacs", "character": "D.J.", "id": 11355, "credit_id": "52fe44a6c3a36847f80a22c9", "cast_id": 14, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 6}, {"name": "Sean Pertwee", "character": "Smith", "id": 28848, "credit_id": "52fe44a6c3a36847f80a22cd", "cast_id": 15, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 7}, {"name": "Peter Marinker", "character": "Captain John Kilpack", "id": 93477, "credit_id": "52fe44a6c3a36847f80a22d1", "cast_id": 16, "profile_path": "/yY3zB4Jof1tfDcr4hJLqdHeEQZK.jpg", "order": 8}, {"name": "Holley Chant", "character": "Claire", "id": 1052953, "credit_id": "52fe44a6c3a36847f80a22d5", "cast_id": 17, "profile_path": "/rX4ofv9ogqXl3cm6t1tmvCj3l37.jpg", "order": 9}, {"name": "Barclay Wright", "character": "Denny Peters", "id": 575916, "credit_id": "52fe44a6c3a36847f80a22d9", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Noah Huntley", "character": "Burning Man / Edward Corrick", "id": 2050, "credit_id": "52fe44a6c3a36847f80a22dd", "cast_id": 19, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 11}, {"name": "Robert Jezek", "character": "Rescue 1 Technician", "id": 189445, "credit_id": "52fe44a6c3a36847f80a22e1", "cast_id": 20, "profile_path": null, "order": 12}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44a6c3a36847f80a228f", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 6.5, "runtime": 96}, "223": {"poster_path": "/eIkJjEbQcPasYvoNHKueFrfgpX4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43455, "overview": "A self-conscious bride is tormented by the memory of her husband's dead first wife.", "video": false, "id": 223, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Rebecca", "tagline": "The shadow of this woman darkened their love.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032976", "adult": false, "backdrop_path": "/ao0OWpQPMy3lagLwksWyciO6Iaj.jpg", "production_companies": [{"name": "Selznick International Pictures", "id": 1553}], "release_date": "1940-04-12", "popularity": 0.59804072628585, "original_title": "Rebecca", "budget": 1288000, "cast": [{"name": "Laurence Olivier", "character": "'Maxim' de Winter", "id": 3359, "credit_id": "52fe4228c3a36847f80088b3", "cast_id": 10, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 0}, {"name": "Joan Fontaine", "character": "Mrs. de Winter (2nd)", "id": 3360, "credit_id": "52fe4228c3a36847f80088b7", "cast_id": 11, "profile_path": "/qvmpsYyTlLrqet22UnOjAweSPd8.jpg", "order": 1}, {"name": "George Sanders", "character": "Jack Favell", "id": 3361, "credit_id": "52fe4228c3a36847f80088bb", "cast_id": 12, "profile_path": "/6fvK8vUTgSMRvuw77PjjuIOMl6.jpg", "order": 2}, {"name": "Judith Anderson", "character": "Mrs. Danvers", "id": 3362, "credit_id": "52fe4228c3a36847f80088bf", "cast_id": 13, "profile_path": "/ryTVWN7XI2WejLsFhicfx3yJ6y9.jpg", "order": 3}, {"name": "Nigel Bruce", "character": "Major Giles Lacy", "id": 3363, "credit_id": "52fe4228c3a36847f80088c3", "cast_id": 14, "profile_path": "/ljpZKxRAHC2GE2HiBqtaKCWtXPf.jpg", "order": 4}, {"name": "Reginald Denny", "character": "Frank Crawley", "id": 3364, "credit_id": "52fe4228c3a36847f80088c7", "cast_id": 15, "profile_path": "/s8YBz4bSkFkLDvVLJeZcbrLCff8.jpg", "order": 5}, {"name": "Gladys Cooper", "character": "Beatrice Lacy", "id": 3366, "credit_id": "52fe4228c3a36847f80088cb", "cast_id": 17, "profile_path": "/muj0IC75UJn841IME4LILMMFwtc.jpg", "order": 6}, {"name": "Florence Bates", "character": "Mrs. Edythe Van Hopper", "id": 3367, "credit_id": "52fe4228c3a36847f80088cf", "cast_id": 18, "profile_path": "/88b2ljcVKqcIiInibVvQWriXRLP.jpg", "order": 7}, {"name": "Leo G. Carroll", "character": "Dr. Baker", "id": 2642, "credit_id": "52fe4228c3a36847f80088d3", "cast_id": 19, "profile_path": "/xTxzUMrwj00ZXa3iWOqP5w1xgO5.jpg", "order": 8}, {"name": "Leonard Carey", "character": "Ben", "id": 3368, "credit_id": "52fe4228c3a36847f80088d7", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Lumsden Hare", "character": "Tabbs", "id": 3369, "credit_id": "52fe4228c3a36847f80088db", "cast_id": 21, "profile_path": "/26Yga7CHRIbYzFWXB3K3wWSz9YY.jpg", "order": 10}, {"name": "Edward Fielding", "character": "Frith", "id": 3370, "credit_id": "52fe4228c3a36847f80088df", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Forrester Harvey", "character": "Chalcroft", "id": 3371, "credit_id": "52fe4228c3a36847f80088e3", "cast_id": 23, "profile_path": "/fmvJQjFEgDY8fVTl9zCO5QxZRxR.jpg", "order": 12}, {"name": "Philip Winter", "character": "Robert", "id": 3372, "credit_id": "52fe4228c3a36847f80088e7", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Alfred Hitchcock", "character": "Man outside phone booth", "id": 2636, "credit_id": "52fe4228c3a36847f80088f7", "cast_id": 27, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 14}, {"name": "C. Aubrey Smith", "character": "Colonel Julyan", "id": 2438, "credit_id": "52fe4228c3a36847f8008907", "cast_id": 30, "profile_path": "/u00cKiTSCbCeFLaTPL6ykgqB5AB.jpg", "order": 15}, {"name": "Billy Bevan", "character": "Policeman", "id": 100763, "credit_id": "52fe4228c3a36847f800891d", "cast_id": 34, "profile_path": "/aDXzvZ1h8IGTPNO01WEEyjMpSwS.jpg", "order": 16}, {"name": "Gino Corrado", "character": "Manager, Princesse Hotel", "id": 9096, "credit_id": "52fe4228c3a36847f8008921", "cast_id": 35, "profile_path": "/s9WKkWJFUNgbPhczUP4sD0OA4I4.jpg", "order": 17}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4228c3a36847f8008885", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.1, "runtime": 130}, "16608": {"poster_path": "/tfDvfeCRdwQ1XwQ7o1FotVuAxje.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 1900725, "overview": "Set in the Australian outback in the 1880s, the movie follows the series of events following the horrific rape and murder of the Hopkins family, allegedly committed by the infamous Burns brothers gang. Captain Morris Stanley captures Charlie Burns and gives him 9 days to kill his older dangerous psychopathic brother, or else they'll hang his younger mentally slow brother on Christmas Day.", "video": false, "id": 16608, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "The Proposition", "tagline": "This land will be civilized.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421238", "adult": false, "backdrop_path": "/wVlW9mO5ffW5J9eXB0XkQc0GNTo.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "Surefire Film Productions", "id": 3205}, {"name": "Autonomous", "id": 2326}, {"name": "Pictures in Paradise", "id": 3207}, {"name": "Pacific Film and Television Commission", "id": 4024}, {"name": "Film Consortium", "id": 20455}, {"name": "National Lottery through UK Film Council", "id": 20456}], "release_date": "2005-10-06", "popularity": 0.602781688618359, "original_title": "The Proposition", "budget": 2000000, "cast": [{"name": "Guy Pearce", "character": "Charlie Burns", "id": 529, "credit_id": "52fe46dd9251416c75086245", "cast_id": 1, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Ray Winstone", "character": "Captain Morris Stanley", "id": 5538, "credit_id": "52fe46dd9251416c75086249", "cast_id": 2, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 1}, {"name": "Emily Watson", "character": "Martha Stanley", "id": 1639, "credit_id": "52fe46dd9251416c7508624d", "cast_id": 3, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 2}, {"name": "Danny Huston", "character": "Arthur Burns", "id": 6413, "credit_id": "52fe46de9251416c75086251", "cast_id": 4, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "David Wenham", "character": "Eden Fletcher", "id": 1371, "credit_id": "52fe46de9251416c75086255", "cast_id": 5, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 4}, {"name": "John Hurt", "character": "Jellon Lamb", "id": 5049, "credit_id": "52fe46de9251416c75086259", "cast_id": 7, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 5}, {"name": "Richard Wilson", "character": "Mike Burns", "id": 1093948, "credit_id": "54143213c3a3687dc5001a7f", "cast_id": 46, "profile_path": null, "order": 6}, {"name": "Noah Taylor", "character": "Brian O'Leary", "id": 1284, "credit_id": "530f4bc19251417378000bec", "cast_id": 31, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 7}, {"name": "Jeremy Madrona", "character": "Asian Prostitute", "id": 1297074, "credit_id": "530f4bd6925141734a000c25", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Jae Mamuyac", "character": "Asian Prostitute", "id": 1297075, "credit_id": "530f4be69251417384000b2b", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Mick Roughan", "character": "Mad Jack Bradshaw", "id": 152537, "credit_id": "530f4bfe9251417332000cad", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Shane Watt", "character": "John Gordon", "id": 1297078, "credit_id": "530f4c0d925141733e000bc8", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Robert Morgan", "character": "Sergeant Lawrence", "id": 126200, "credit_id": "530f4c2b925141734a000c30", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "David Gulpilil", "character": "Jacko", "id": 53023, "credit_id": "530f4c3b9251417332000cb9", "cast_id": 37, "profile_path": "/pns5wVD4GNEPo0FwtZHrjGX6j5n.jpg", "order": 13}, {"name": "Bryan Probets", "character": "Officer Dunn", "id": 1014587, "credit_id": "530f4c4d9251417390000bc6", "cast_id": 38, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 14}, {"name": "Oliver Ackland", "character": "Patrick Hopkins", "id": 191661, "credit_id": "530f4c61925141739b000bc9", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Danny Huston", "character": "Arthur Burns", "id": 6413, "credit_id": "530f4c749251417390000bca", "cast_id": 40, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 16}, {"name": "David Vallon", "character": "Tom Cox", "id": 1262385, "credit_id": "530f4c889251417384000b40", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Daniel Parker", "character": "Henry Clark", "id": 128661, "credit_id": "530f4c96925141736c000c1a", "cast_id": 42, "profile_path": null, "order": 18}], "directors": [{"name": "John Hillcoat", "department": "Directing", "job": "Director", "credit_id": "52fe46de9251416c7508625f", "profile_path": "/4VqHE3mBPSUpR2ep7vpx27arFiY.jpg", "id": 53333}], "vote_average": 7.3, "runtime": 104}, "123105": {"poster_path": "/qEQRsxwgHNDVkbiihdCSlK0dc4U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two million fish washed ashore. One thousand blackbirds dropped from the sky. On July 4, 2009 a deadly menace swept through the quaint seaside town of Claridge, Maryland, but the harrowing story of what happened that Independence Day has never been told\u2014until now. The authorities believed they had buried the truth about the tragedy that claimed over 700 human lives. Now, three years later, a reporter has emerged with footage revealing the cover-up and an unimaginable killer: a mysterious parasitic outbreak. Told from the perspective of those who were there and saw what happened, The Bay unfolds over 24 hours through people's iPhones, Androids, 911 calls, webcams, and whatever else could be used to document the nightmare in Claridge. What follows is a nerve-shredding tale of a small town plunged into absolute terror.", "video": false, "id": 123105, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Bay", "tagline": "Panic feeds on fear.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1713476", "adult": false, "backdrop_path": "/n0To46rlvlFkSGxrDbFkwDDdYWl.jpg", "production_companies": [{"name": "Baltimore Pictures", "id": 11407}, {"name": "Hydraulx", "id": 10936}, {"name": "Automatik Entertainment", "id": 7625}], "release_date": "2012-11-02", "popularity": 0.297987580995118, "original_title": "The Bay", "budget": 0, "cast": [{"name": "Kristen Connolly", "character": "Stephanie", "id": 210824, "credit_id": "52fe4a8dc3a368484e159ea1", "cast_id": 3, "profile_path": "/lP7rReayiC5hDhJJjCwUy3IFfTC.jpg", "order": 0}, {"name": "Will Rogers", "character": "Alex", "id": 1188239, "credit_id": "53725071c3a368436e00129f", "cast_id": 21, "profile_path": "/aVnWDzEc9z6Kb8Ou5dQ1KRoazXL.jpg", "order": 1}, {"name": "Michael Beasley", "character": "Officer Jimson", "id": 143261, "credit_id": "52fe4a8dc3a368484e159ea9", "cast_id": 5, "profile_path": "/mk8jUlzVPUsKSQjHi6ATtaCtb47.jpg", "order": 2}, {"name": "Christopher Denham", "character": "Sam", "id": 61510, "credit_id": "52fe4a8dc3a368484e159ead", "cast_id": 6, "profile_path": "/oPnHnLW51n9qFtCxh4phejRm6xe.jpg", "order": 3}, {"name": "Kenny Alfonso", "character": "Doctor Michaels", "id": 1088939, "credit_id": "52fe4a8dc3a368484e159eb5", "cast_id": 8, "profile_path": "/eNWxCXO908YNdhFNQ3INyka5p4J.jpg", "order": 4}, {"name": "Kether Donohue", "character": "Donna Thompson", "id": 588972, "credit_id": "52fe4a8dc3a368484e159eb9", "cast_id": 9, "profile_path": "/v2wtqKngHKHzeASddJWpFShWVtq.jpg", "order": 5}, {"name": "Jane McNeill", "character": "Victim #1", "id": 1078610, "credit_id": "52fe4a8dc3a368484e159ea5", "cast_id": 4, "profile_path": "/r8ss9Gv9zABNrc3pz4k06THuhw6.jpg", "order": 6}, {"name": "Anthony Reynolds", "character": "Steve Slattery - Homeland Security Officer", "id": 1088938, "credit_id": "52fe4a8dc3a368484e159eb1", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Frank Deal", "character": "Mayor Stockman", "id": 171886, "credit_id": "53725067c3a3684343001348", "cast_id": 20, "profile_path": "/k0Gn9ZgMuUQ0jFeVuvK6Vyh14ZU.jpg", "order": 8}, {"name": "Kimberly Campbell", "character": "Nurse Rebecca", "id": 542, "credit_id": "5372507dc3a36843510013a9", "cast_id": 22, "profile_path": "/sgIVwvbipevAf9SplOOctJRuP36.jpg", "order": 9}, {"name": "Lamya Jezek", "character": "Ms. Rosenblatt", "id": 1331647, "credit_id": "53a163ab0e0a2665470028cb", "cast_id": 29, "profile_path": null, "order": 10}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe4a8dc3a368484e159e97", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 5.3, "runtime": 84}, "226": {"poster_path": "/3qHZtLvPDgdSBxyrIXgYgbiib63.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11540607, "overview": "Female born, Teena Brandon adopts his male identity of Brandon Teena and attempts to find himself and love in Nebraska.", "video": false, "id": 226, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Boys Don't Cry", "tagline": "A true story about finding the courage to be yourself.", "vote_count": 61, "homepage": "http://www.foxsearchlight.com/boysdontcry/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0171804", "adult": false, "backdrop_path": "/nriBinb7Y3Bm6LdbmOC0mFxSm8d.jpg", "production_companies": [{"name": "IFC Films", "id": 307}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "The Independent Film Channel Productions", "id": 54}, {"name": "Killer Films", "id": 1422}, {"name": "Hart-Sharp Entertainment", "id": 11351}], "release_date": "1999-09-02", "popularity": 0.761935828078014, "original_title": "Boys Don't Cry", "budget": 2000000, "cast": [{"name": "Hilary Swank", "character": "Brandon Teena", "id": 448, "credit_id": "52fe4229c3a36847f8008a9d", "cast_id": 4, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 0}, {"name": "Chlo\u00eb Sevigny", "character": "Lana Tisdel", "id": 2838, "credit_id": "52fe4229c3a36847f8008aa1", "cast_id": 5, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "John Lotter", "id": 133, "credit_id": "52fe4229c3a36847f8008aa5", "cast_id": 6, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Brendan Sexton III", "character": "Tom Nissen", "id": 2839, "credit_id": "52fe4229c3a36847f8008aa9", "cast_id": 7, "profile_path": "/kQsOIQuGcqwdpolSEzLV7RfYVsV.jpg", "order": 3}, {"name": "Alicia Goranson", "character": "Candace", "id": 1346644, "credit_id": "53d48515c3a3686b8b002db0", "cast_id": 44, "profile_path": null, "order": 4}, {"name": "Alison Folland", "character": "Kate", "id": 2841, "credit_id": "52fe4229c3a36847f8008aad", "cast_id": 8, "profile_path": "/j4LkS9pycdpKECqZ4bCTqMtZrHA.jpg", "order": 5}, {"name": "Jeannetta Arnette", "character": "Lana's Mom", "id": 2842, "credit_id": "52fe4229c3a36847f8008ab1", "cast_id": 9, "profile_path": "/uVaqZLhpTh5OmJDFSv7wim63sV1.jpg", "order": 6}, {"name": "Rob Campbell", "character": "Brian", "id": 2843, "credit_id": "52fe4229c3a36847f8008ab5", "cast_id": 10, "profile_path": "/hRJihsQgFfm86htdiM6xL4BpZE9.jpg", "order": 7}, {"name": "Matt McGrath", "character": "Lonny", "id": 2844, "credit_id": "52fe4229c3a36847f8008ab9", "cast_id": 11, "profile_path": "/zrw8HWHNWvNmBGHBYZkicaNJg9A.jpg", "order": 8}, {"name": "Cheyenne Rushing", "character": "Nicole", "id": 2845, "credit_id": "52fe4229c3a36847f8008abd", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Robert Prentiss", "character": "Trucker", "id": 2846, "credit_id": "52fe4229c3a36847f8008ac1", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Josh Ridgway", "character": "Kwik Stop Cashier", "id": 2847, "credit_id": "52fe4229c3a36847f8008ac5", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Craig Erickson", "character": "Trucker in Kwik Stop", "id": 2848, "credit_id": "52fe4229c3a36847f8008ac9", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Stephanie Sechrist", "character": "April", "id": 2849, "credit_id": "52fe4229c3a36847f8008acd", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Jerry Haynes", "character": "Judge", "id": 2850, "credit_id": "52fe4229c3a36847f8008ad1", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Lou Perryman", "character": "Sheriff", "id": 2851, "credit_id": "52fe4229c3a36847f8008ad5", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Lisa Renee Wilson", "character": "Pam (as Lisa Wilson)", "id": 2852, "credit_id": "52fe4229c3a36847f8008ad9", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Jackson D. Kane", "character": "Sam Phillips (as Jackson Kane)", "id": 2853, "credit_id": "52fe4229c3a36847f8008add", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Joseph Gibson", "character": "Tom", "id": 2854, "credit_id": "52fe4229c3a36847f8008ae1", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Michael Tripp", "character": "Nerdy Teen", "id": 2855, "credit_id": "52fe4229c3a36847f8008ae5", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Shana McClendon", "character": "Girl in Car", "id": 2856, "credit_id": "52fe4229c3a36847f8008ae9", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Libby Villari", "character": "Nurse", "id": 2857, "credit_id": "52fe4229c3a36847f8008aed", "cast_id": 24, "profile_path": "/dGSRIXHG4er86LBk4HAKK4TGWL0.jpg", "order": 21}, {"name": "Paige Carl Griggs", "character": "Dave (Deputy)", "id": 2858, "credit_id": "52fe4229c3a36847f8008af1", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Gail Cronauer", "character": "Clerk", "id": 2859, "credit_id": "52fe4229c3a36847f8008af5", "cast_id": 26, "profile_path": "/tDfitFZcmJ9DTnJBMNuiWLPTkbp.jpg", "order": 23}], "directors": [{"name": "Kimberly Peirce", "department": "Directing", "job": "Director", "credit_id": "52fe4229c3a36847f8008a8d", "profile_path": null, "id": 2836}], "vote_average": 7.0, "runtime": 118}, "227": {"poster_path": "/35K8ItoRuD7i0VBqjj8bEX0Ct6E.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25697647, "overview": "When two poor greasers, Johnny, and Ponyboy are assaulted by a vicious gang, the socs, and Johnny kills one of the attackers, tension begins to mount between the two rival gangs, setting off a turbulent chain of events.", "video": false, "id": 227, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Outsiders", "tagline": "They grew up on the outside of society. They weren't looking for a fight. They were looking to belong.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086066", "adult": false, "backdrop_path": "/2Y9Zb61gL4w0eUgyla4IELWqzGh.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "American Zoetrope", "id": 70}], "release_date": "1983-03-25", "popularity": 1.08173160541477, "original_title": "The Outsiders", "budget": 10000000, "cast": [{"name": "Matt Dillon", "character": "Dallas 'Dally' Winston", "id": 2876, "credit_id": "52fe4229c3a36847f8008bd5", "cast_id": 11, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 0}, {"name": "Ralph Macchio", "character": "Johnny Cade", "id": 2877, "credit_id": "52fe4229c3a36847f8008bd9", "cast_id": 12, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 1}, {"name": "C. Thomas Howell", "character": "Ponyboy Curtis", "id": 2878, "credit_id": "52fe4229c3a36847f8008bdd", "cast_id": 13, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 2}, {"name": "Patrick Swayze", "character": "Darrel 'Darry' Curtis", "id": 723, "credit_id": "52fe4229c3a36847f8008be1", "cast_id": 14, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 3}, {"name": "Rob Lowe", "character": "Sodapop Curtis", "id": 2879, "credit_id": "52fe4229c3a36847f8008be5", "cast_id": 15, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 4}, {"name": "Emilio Estevez", "character": "Keith 'Two-Bit' Mathews", "id": 2880, "credit_id": "52fe4229c3a36847f8008be9", "cast_id": 16, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 5}, {"name": "Tom Cruise", "character": "Steve Randle", "id": 500, "credit_id": "52fe4229c3a36847f8008bed", "cast_id": 17, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 6}, {"name": "Glenn Withrow", "character": "Tim Shepard", "id": 2881, "credit_id": "52fe4229c3a36847f8008bf1", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Diane Lane", "character": "Sherri 'Cherry' Valance", "id": 2882, "credit_id": "52fe4229c3a36847f8008bf5", "cast_id": 19, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 8}, {"name": "Leif Garrett", "character": "Bob Sheldon", "id": 2883, "credit_id": "52fe4229c3a36847f8008bf9", "cast_id": 20, "profile_path": "/bjzqSgp3vfbpMSBR1p4Q1D5CDFp.jpg", "order": 9}, {"name": "Darren Dalton", "character": "Randy Anderson", "id": 2884, "credit_id": "52fe4229c3a36847f8008bfd", "cast_id": 21, "profile_path": "/ilvaY9lSWPWMPXxRmrDBTl3xbWm.jpg", "order": 10}, {"name": "Michelle Meyrink", "character": "Marcia", "id": 2885, "credit_id": "52fe4229c3a36847f8008c01", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Gailard Sartain", "character": "Jerry Wood", "id": 2886, "credit_id": "52fe4229c3a36847f8008c05", "cast_id": 23, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 12}, {"name": "Tom Waits", "character": "Buck Merrill", "id": 2887, "credit_id": "52fe4229c3a36847f8008c09", "cast_id": 24, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 13}, {"name": "Sofia Coppola", "character": "Little Girl (as Domino)", "id": 1769, "credit_id": "52fe4229c3a36847f8008c0d", "cast_id": 25, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 14}, {"name": "William Smith", "character": "Store Clerk", "id": 98102, "credit_id": "52fe4229c3a36847f8008c17", "cast_id": 27, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 15}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4229c3a36847f8008b9b", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 6.3, "runtime": 91}, "16614": {"poster_path": "/hjSN69srPDuFeUkrChIgZ0Vh3i0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17164377, "overview": "In the summer of 1987, a college graduate takes a 'nowhere' job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.", "video": false, "id": 16614, "genres": [{"id": 35, "name": "Comedy"}], "title": "Adventureland", "tagline": "Nothing brings people together like a crappy summer job.", "vote_count": 163, "homepage": "http://www.adventurelandthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1091722", "adult": false, "backdrop_path": "/q98RIq2DdJragrWAM5wWOxd5Qni.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "This Is That Productions", "id": 10059}], "release_date": "2009-04-03", "popularity": 1.24005027773108, "original_title": "Adventureland", "budget": 9500000, "cast": [{"name": "Jesse Eisenberg", "character": "James Brennan", "id": 44735, "credit_id": "52fe46de9251416c7508634f", "cast_id": 1, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Kristen Stewart", "character": "Em Lewin", "id": 37917, "credit_id": "52fe46de9251416c75086363", "cast_id": 6, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 1}, {"name": "Martin Starr", "character": "Joel", "id": 41089, "credit_id": "52fe46de9251416c75086383", "cast_id": 17, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 2}, {"name": "Kristen Wiig", "character": "Paulette", "id": 41091, "credit_id": "52fe46de9251416c75086357", "cast_id": 3, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 3}, {"name": "Bill Hader", "character": "Bobby", "id": 19278, "credit_id": "52fe46de9251416c7508635b", "cast_id": 4, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 4}, {"name": "Ryan Reynolds", "character": "Mike Connell", "id": 10859, "credit_id": "52fe46de9251416c7508635f", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 5}, {"name": "Margarita Levieva", "character": "Lisa P.", "id": 59237, "credit_id": "52fe46de9251416c75086373", "cast_id": 12, "profile_path": "/5YDkouUZf4khoFfNoWps3PK5JQf.jpg", "order": 6}, {"name": "Kelsey Ford", "character": "Arlene", "id": 129022, "credit_id": "52fe46de9251416c75086367", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Michael Zegen", "character": "Eric", "id": 80661, "credit_id": "52fe46de9251416c75086353", "cast_id": 2, "profile_path": "/cTe8u7HNzkQvuaY4spCU3KxKKdl.jpg", "order": 8}, {"name": "Ryan McFarland", "character": "Brad", "id": 136030, "credit_id": "52fe46de9251416c7508636b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Jack Gilpin", "character": "Mr. Brennan", "id": 77023, "credit_id": "52fe46de9251416c7508636f", "cast_id": 11, "profile_path": "/cYaMYTd4TawSeF9eUSwXR1rP3th.jpg", "order": 10}, {"name": "Matt Bush", "character": "Tommy Frigo", "id": 130227, "credit_id": "52fe46de9251416c75086377", "cast_id": 14, "profile_path": "/kyBLgeVnvnsx3zOZXlZwSF5BFEE.jpg", "order": 11}, {"name": "Todd Cioppa", "character": "Velvet Touch Manager", "id": 136032, "credit_id": "52fe46de9251416c7508637b", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Stephen Mast", "character": "Rich", "id": 136033, "credit_id": "52fe46de9251416c7508637f", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Adam Kroloff", "character": "Adult Contestant", "id": 136034, "credit_id": "52fe46de9251416c75086387", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Wendie Malick", "character": "Mrs. Brennan", "id": 61980, "credit_id": "52fe46de9251416c750863c7", "cast_id": 29, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 15}, {"name": "Dan Bittner", "character": "Pete O'Malley", "id": 1152008, "credit_id": "54c4141292514124320065f9", "cast_id": 30, "profile_path": null, "order": 16}], "directors": [{"name": "Greg Mottola", "department": "Directing", "job": "Director", "credit_id": "52fe46de9251416c7508638d", "profile_path": "/dC1BKEyTzgTqqy8c5MmSZrRLhNR.jpg", "id": 54733}], "vote_average": 6.1, "runtime": 107}, "231": {"poster_path": "/ArLpoafsdFhs5USOn2AUsEIImxI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94000000, "overview": "The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.", "video": false, "id": 231, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Syriana", "tagline": "Everything is connected.", "vote_count": 121, "homepage": "http://syrianamovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0365737", "adult": false, "backdrop_path": "/urovI2vLKwXPHd2OUFEs8aU8UOp.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Participant Media", "id": 6735}, {"name": "4M", "id": 20665}, {"name": "Section Eight", "id": 129}, {"name": "FilmWorks", "id": 7786}, {"name": "MID Foundation", "id": 20666}], "release_date": "2005-11-23", "popularity": 0.686958552182492, "original_title": "Syriana", "budget": 50000000, "cast": [{"name": "George Clooney", "character": "Bob Barnes", "id": 1461, "credit_id": "52fe4229c3a36847f8008e65", "cast_id": 16, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Matt Damon", "character": "Bryan Woodman", "id": 1892, "credit_id": "52fe4229c3a36847f8008e69", "cast_id": 17, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Jeffrey Wright", "character": "Bennett Holiday", "id": 2954, "credit_id": "52fe4229c3a36847f8008e6d", "cast_id": 18, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 2}, {"name": "Chris Cooper", "character": "Jimmy Pope", "id": 2955, "credit_id": "52fe4229c3a36847f8008e71", "cast_id": 19, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 3}, {"name": "Amanda Peet", "character": "Julie Woodman", "id": 2956, "credit_id": "52fe4229c3a36847f8008e75", "cast_id": 20, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 4}, {"name": "William Hurt", "character": "Stan", "id": 227, "credit_id": "52fe4229c3a36847f8008e79", "cast_id": 21, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 5}, {"name": "Christopher Plummer", "character": "Dean Whiting", "id": 290, "credit_id": "52fe4229c3a36847f8008e7d", "cast_id": 22, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 6}, {"name": "Alexander Siddig", "character": "Prince Nasir Al-Subaai", "id": 2957, "credit_id": "52fe4229c3a36847f8008e81", "cast_id": 23, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 7}, {"name": "Kayvan Novak", "character": "Arash", "id": 2959, "credit_id": "52fe4229c3a36847f8008e85", "cast_id": 24, "profile_path": "/frOXuqWJXzFlcTQx2fuILD50ODE.jpg", "order": 8}, {"name": "Amr Waked", "character": "Mohammed Sheik Agiza", "id": 2960, "credit_id": "52fe4229c3a36847f8008e89", "cast_id": 25, "profile_path": "/am80pES7tfN6RgWqmuQg6e7pkiD.jpg", "order": 9}, {"name": "Robert Foxworth", "character": "Tommy Barton", "id": 2962, "credit_id": "52fe4229c3a36847f8008e8d", "cast_id": 26, "profile_path": "/ofBWY1UDjnYMCSjrSXARlKs4yn9.jpg", "order": 10}, {"name": "Nicky Henson", "character": "Sydney Hewitt", "id": 2964, "credit_id": "52fe422ac3a36847f8008e91", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Nicholas Art", "character": "Riley Woodman", "id": 2965, "credit_id": "52fe422ac3a36847f8008e95", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Steven Hinkle", "character": "Max Woodman", "id": 2966, "credit_id": "52fe422ac3a36847f8008e99", "cast_id": 29, "profile_path": "/cawNiWCqwdvPSeXFKcrtj04CLgf.jpg", "order": 13}, {"name": "Daisy Torm\u00e9", "character": "Rebecca", "id": 2967, "credit_id": "52fe422ac3a36847f8008e9d", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Peter Gerety", "character": "Leland \"Lee\" Janus", "id": 1986, "credit_id": "52fe422ac3a36847f8008ea1", "cast_id": 31, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 15}, {"name": "Richard Lintern", "character": "Bryan's Boss", "id": 2968, "credit_id": "52fe422ac3a36847f8008ea5", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Mazhar Munir", "character": "Wasim Khan", "id": 2971, "credit_id": "52fe422ac3a36847f8008ead", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Jocelyn Quivrin", "character": "Vincent", "id": 2970, "credit_id": "52fe422ac3a36847f8008ea9", "cast_id": 33, "profile_path": "/bRA811QtMSH8JAu2gdZ6Cjta9Br.jpg", "order": 18}, {"name": "Shahid Ahmed", "character": "Saleem Ahmed Khan", "id": 2972, "credit_id": "52fe422ac3a36847f8008eb1", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Bikram Singh Bhamra", "character": "Pakistani Translator", "id": 2973, "credit_id": "52fe422ac3a36847f8008eb5", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Roger Yuan", "character": "Chinese Engineer", "id": 2974, "credit_id": "52fe422ac3a36847f8008eb9", "cast_id": 37, "profile_path": "/mocNZK4KHv3j9os7tsS7b9B9ecK.jpg", "order": 21}, {"name": "Jamey Sheridan", "character": "Division Chief", "id": 2977, "credit_id": "52fe422ac3a36847f8008ebd", "cast_id": 38, "profile_path": "/jpyh4Wd6AZ1oBCsbIxB72otXtcy.jpg", "order": 22}, {"name": "Max Minghella", "character": "Robby Barnes", "id": 2978, "credit_id": "52fe422ac3a36847f8008ec1", "cast_id": 39, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 23}, {"name": "Nadim Sawalha", "character": "Emir Hamed Al-Subaai", "id": 2980, "credit_id": "52fe422ac3a36847f8008ec5", "cast_id": 40, "profile_path": "/94kMNtU2FYXruX4BOOjWrWkoe2x.jpg", "order": 24}, {"name": "Akbar Kurtha", "character": "Prince Meshal Al-Subaai", "id": 2981, "credit_id": "52fe422ac3a36847f8008ec9", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Sonnell Dadral", "character": "Farooq", "id": 2982, "credit_id": "52fe422ac3a36847f8008ecd", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Tim Blake Nelson", "character": "Danny Dalton", "id": 1462, "credit_id": "52fe422ac3a36847f8008ed1", "cast_id": 43, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 27}, {"name": "Mark Strong", "character": "Mussawi", "id": 2983, "credit_id": "52fe422ac3a36847f8008ed5", "cast_id": 44, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 28}, {"name": "Badria Timimi", "character": "Nasir's Wife", "id": 2984, "credit_id": "52fe422ac3a36847f8008ed9", "cast_id": 45, "profile_path": null, "order": 29}], "directors": [{"name": "Stephen Gaghan", "department": "Directing", "job": "Director", "credit_id": "52fe4229c3a36847f8008e0d", "profile_path": "/wNv62DVAoCLRsw7nEcGZaetFJmc.jpg", "id": 2945}], "vote_average": 6.0, "runtime": 128}, "8424": {"poster_path": "/1LdSjHC9MwRQios1zdXYL7SweRc.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "As adults, best friends Julien and Sophie continue the odd game they started as children -- a fearless competition to outdo one another with daring and outrageous stunts. While they often act out to relieve one another's pain, their game might be a way to avoid the fact that they are truly meant for one another", "video": false, "id": 8424, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Love Me If You Dare", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0364517", "adult": false, "backdrop_path": "/91VZyRZgykMvTFbhlQymZ2u9MOJ.jpg", "production_companies": [{"name": "Nord Ouest Production", "id": 615}, {"name": "StudioCanal", "id": 694}], "release_date": "2003-09-17", "popularity": 0.450899759053029, "original_title": "Jeux d'enfants", "budget": 0, "cast": [{"name": "Guillaume Canet", "character": "Julien", "id": 19866, "credit_id": "52fe44a7c3a36847f80a26af", "cast_id": 2, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 0}, {"name": "Marion Cotillard", "character": "Sophie", "id": 8293, "credit_id": "52fe44a7c3a36847f80a26b3", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 1}, {"name": "Thibault Verhaeghe", "character": "Julien \u00e0 8 ans", "id": 55384, "credit_id": "52fe44a7c3a36847f80a26cb", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "Jos\u00e9phine Lebas-Joly", "character": "Sophie \u00e0 8 ans", "id": 550027, "credit_id": "52fe44a7c3a36847f80a26ff", "cast_id": 19, "profile_path": "/118UJ3wOdTA0Cw2yUgdsYdHVZKS.jpg", "order": 3}, {"name": "Emmanuelle Gr\u00f6nvold", "character": "M\u00e8re de Julien", "id": 55383, "credit_id": "52fe44a7c3a36847f80a26c7", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Fr\u00e9d\u00e9ric Geerts", "character": "Igor", "id": 55380, "credit_id": "52fe44a7c3a36847f80a26b7", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Isabelle Delval", "character": "Clothilde", "id": 55381, "credit_id": "52fe44a7c3a36847f80a26bb", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Jean-Michel Flagothier", "character": "Dorzac", "id": 55382, "credit_id": "52fe44a7c3a36847f80a26bf", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Gilles Lellouche", "character": "Sergei Nimov Nimovitch", "id": 54291, "credit_id": "52fe44a7c3a36847f80a26c3", "cast_id": 7, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 8}, {"name": "\u00c9lodie Navarre", "character": "Aur\u00e9lie", "id": 142443, "credit_id": "52fe44a7c3a36847f80a2703", "cast_id": 20, "profile_path": "/hLTiIyutbtih9JxISMO3tOPE4zD.jpg", "order": 9}, {"name": "G\u00e9rard Watkins", "character": "Julien's Father", "id": 49947, "credit_id": "54a42ac3c3a368764f00efe0", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Julia Faure", "character": "Sophie's Sister", "id": 946511, "credit_id": "54b7e2e1c3a3686c71001fbd", "cast_id": 22, "profile_path": "/pAaZ59df9XcT6DFKwhHF0QbH0qV.jpg", "order": 11}], "directors": [{"name": "Yann Samuell", "department": "Directing", "job": "Director", "credit_id": "52fe44a7c3a36847f80a26ab", "profile_path": null, "id": 55379}], "vote_average": 7.3, "runtime": 93}, "16617": {"poster_path": "/95AVerEgqrWhvGJxPfwiVsGd4c1.jpg", "production_countries": [{"iso_3166_1": "FI", "name": "Finland"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21148829, "overview": "Trainees in the FBI's psychological profiling program must put their training into practice when they discover a killer in their midst.", "video": false, "id": 16617, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mindhunters", "tagline": "For seven elite profilers, finding a serial killer is a process of elimination. Their own.", "vote_count": 72, "homepage": "http://www.mindhunters-thefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0297284", "adult": false, "backdrop_path": "/6lMzEzEx3JjIOtcqHlycACB7BtL.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Intermedia Films", "id": 763}, {"name": "Avenue Pictures Productions", "id": 251}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Egmond Film & Television", "id": 4588}, {"name": "Tonna Oy", "id": 19510}, {"name": "Outlaw Victoria Productions Inc.", "id": 19511}, {"name": "Mindhunters (UK) Limited", "id": 19508}, {"name": "Mindhunters Productie BV", "id": 19509}], "release_date": "2004-03-19", "popularity": 0.59846698312343, "original_title": "Mindhunters", "budget": 27000000, "cast": [{"name": "LL Cool J", "character": "Gabe Jensen", "id": 36424, "credit_id": "52fe46de9251416c750864bb", "cast_id": 8, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 0}, {"name": "Jonny Lee Miller", "character": "Lucas Harper", "id": 9012, "credit_id": "52fe46de9251416c750864af", "cast_id": 5, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 1}, {"name": "Kathryn Morris", "character": "Sara Moore", "id": 2208, "credit_id": "52fe46de9251416c750864b3", "cast_id": 6, "profile_path": "/kacv3Og9yU1bp6RJGb4Asnhsavt.jpg", "order": 2}, {"name": "Patricia Vel\u00e1squez", "character": "Nicole Willis", "id": 18920, "credit_id": "52fe46de9251416c750864bf", "cast_id": 9, "profile_path": "/dRD0tYxrtxPZ11mJCN0O3nLd1Mx.jpg", "order": 3}, {"name": "Clifton Collins, Jr.", "character": "Vince Sherman", "id": 5365, "credit_id": "52fe46de9251416c750864a7", "cast_id": 2, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 4}, {"name": "Eion Bailey", "character": "Bobby Whitman", "id": 7498, "credit_id": "52fe46de9251416c750864a3", "cast_id": 1, "profile_path": "/4MnRgrwuiJvHsfoiJrIUL4TkfoC.jpg", "order": 5}, {"name": "Will Kemp", "character": "Rafe Perry", "id": 54500, "credit_id": "52fe46e09251416c750866fd", "cast_id": 108, "profile_path": "/cQAKDIsxoZlzp8OmEiXGUCFjxre.jpg", "order": 6}, {"name": "Val Kilmer", "character": "Jake Harris", "id": 5576, "credit_id": "52fe46de9251416c750864ab", "cast_id": 4, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 7}, {"name": "Christian Slater", "character": "J.D. Reston", "id": 2224, "credit_id": "52fe46de9251416c750864b7", "cast_id": 7, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 8}, {"name": "Cassandra Bell", "character": "Jen", "id": 128290, "credit_id": "52fe46e09251416c75086701", "cast_id": 109, "profile_path": null, "order": 9}, {"name": "Dani\u00ebl Boissevain", "character": "Second Man in the Bar", "id": 117200, "credit_id": "52fe46de9251416c750864c3", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Antonie Kamerling", "character": "Man in the Bar", "id": 27957, "credit_id": "52fe46de9251416c750864c7", "cast_id": 12, "profile_path": "/85uavBfxcIfjMYm5RNK1f6l33yc.jpg", "order": 11}, {"name": "Jasmine Sendar", "character": "Friend of Jen", "id": 117201, "credit_id": "52fe46de9251416c750864cb", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Trevor White", "character": "Attacker", "id": 158484, "credit_id": "52fe46e09251416c75086705", "cast_id": 110, "profile_path": "/oFIH3JRRp4Iulq9lqqoPhJ7ALk8.jpg", "order": 13}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe46e09251416c750866e7", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.7, "runtime": 106}, "235": {"poster_path": "/98qQLkTKEdWo3UVBzzeaetwNeQD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52287000, "overview": "The film's name comes from the song \"Stand By Me\" by Ben E. King from 1961. The song was also the theme song. This film was modeled from a novella by Stephen King called \"The Body\" and was the ninth filmed story from the author. The film tells the story of a group of 10-year-old friends out on their own and the trials and tribulation they are confronted with along the journey.", "video": false, "id": 235, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Stand by Me", "tagline": "For some, it's the last real taste of innocence, and the first real taste of life.", "vote_count": 293, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092005", "adult": false, "backdrop_path": "/abLeo89r15NBTFfosXveyosBrHE.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1986-08-07", "popularity": 1.17959397788271, "original_title": "Stand by Me", "budget": 8000000, "cast": [{"name": "Wil Wheaton", "character": "Gordie Lachance", "id": 3033, "credit_id": "52fe422ac3a36847f8009147", "cast_id": 8, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 0}, {"name": "River Phoenix", "character": "Chris Chambers", "id": 741, "credit_id": "52fe422ac3a36847f800914b", "cast_id": 9, "profile_path": "/qfokbmRwRvmIVsLHScshxLPAB3C.jpg", "order": 1}, {"name": "Corey Feldman", "character": "Teddy Duchamp", "id": 3034, "credit_id": "52fe422ac3a36847f800914f", "cast_id": 10, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 2}, {"name": "Jerry O'Connell", "character": "Vern Tessio", "id": 3035, "credit_id": "52fe422ac3a36847f8009153", "cast_id": 11, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "Ace Merrill", "id": 2628, "credit_id": "52fe422ac3a36847f8009157", "cast_id": 12, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "John Cusack", "character": "Denny Lachance", "id": 3036, "credit_id": "52fe422ac3a36847f800915b", "cast_id": 13, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 5}, {"name": "Richard Dreyfuss", "character": "Gordon Lachance (Adult)", "id": 3037, "credit_id": "52fe422ac3a36847f800915f", "cast_id": 14, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 6}, {"name": "Casey Siemaszko", "character": "Billy Tessio", "id": 1953, "credit_id": "52fe422ac3a36847f8009163", "cast_id": 15, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 7}, {"name": "Gary Riley", "character": "Charlie Hogan", "id": 3038, "credit_id": "52fe422ac3a36847f8009167", "cast_id": 16, "profile_path": "/d1TZEZcWxyTnqLdop06MOKWMvm8.jpg", "order": 8}, {"name": "Bradley Gregg", "character": "Eyeball Chambers", "id": 3039, "credit_id": "52fe422ac3a36847f800916b", "cast_id": 17, "profile_path": "/l4vc0U4XQ7t07pqekPPVehzs0R.jpg", "order": 9}, {"name": "Jason Oliver", "character": "Vince Desjardins", "id": 3040, "credit_id": "52fe422ac3a36847f800916f", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Marshall Bell", "character": "Mr. Lachance", "id": 3041, "credit_id": "52fe422ac3a36847f8009173", "cast_id": 19, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 11}, {"name": "Frances Lee McCain", "character": "Mrs. Lachance", "id": 1070, "credit_id": "52fe422ac3a36847f8009177", "cast_id": 20, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 12}, {"name": "Bruce Kirby", "character": "Mr. Quidacioluo", "id": 3042, "credit_id": "52fe422ac3a36847f800917b", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "William Bronder", "character": "Milo Pressman", "id": 3043, "credit_id": "52fe422ac3a36847f800917f", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Scott Beach", "character": "Mayor Grundy", "id": 3044, "credit_id": "52fe422ac3a36847f8009183", "cast_id": 26, "profile_path": "/gkt4TpoRR75eTddsny3Qvofe6TY.jpg", "order": 15}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe422ac3a36847f8009137", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.2, "runtime": 89}, "238": {"poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245066411, "overview": "The story spans the years from 1945 to 1955 and chronicles the fictional Italian-American Corleone crime family. When organized crime family patriarch Vito Corleone barely survives an attempt on his life, his youngest son, Michael, steps in to take care of the would-be killers, launching a campaign of bloody revenge.", "video": false, "id": 238, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Godfather", "tagline": "An offer you can't refuse.", "vote_count": 2371, "homepage": "http://www.thegodfather.com/", "belongs_to_collection": {"backdrop_path": "/3WZTxpgscsmoUk81TuECXdFOD0R.jpg", "poster_path": "/msRyKgqWJWGSprcagItruC8mfL3.jpg", "id": 230, "name": "The Godfather Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0068646", "adult": false, "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Alfran Productions", "id": 10211}], "release_date": "1972-03-15", "popularity": 3.08618272815224, "original_title": "The Godfather", "budget": 6000000, "cast": [{"name": "Marlon Brando", "character": "Don Vito Corleone", "id": 3084, "credit_id": "52fe422bc3a36847f8009357", "cast_id": 5, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 0}, {"name": "Al Pacino", "character": "Michael Corleone", "id": 1158, "credit_id": "52fe422bc3a36847f800935b", "cast_id": 6, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "James Caan", "character": "Santino 'Sonny' Corleone", "id": 3085, "credit_id": "52fe422bc3a36847f800935f", "cast_id": 7, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 2}, {"name": "Richard S. Castellano", "character": "Pete Clemenza", "id": 3086, "credit_id": "52fe422bc3a36847f8009363", "cast_id": 8, "profile_path": "/uBNqpxmlNSX7FJeubO1g3nlrrkF.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Tom Hagen", "id": 3087, "credit_id": "52fe422bc3a36847f8009367", "cast_id": 9, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Sterling Hayden", "character": "Capt. Mark McCluskey", "id": 3088, "credit_id": "52fe422bc3a36847f800936b", "cast_id": 10, "profile_path": "/aE85Dzwaf5rTbjLnMgOtpw47BSY.jpg", "order": 5}, {"name": "John Marley", "character": "Jack Woltz", "id": 3142, "credit_id": "52fe422bc3a36847f800938b", "cast_id": 33, "profile_path": "/ecteroI3S9feBlkxm33HJbPotHt.jpg", "order": 6}, {"name": "Richard Conte", "character": "Emilio Barzini", "id": 3090, "credit_id": "52fe422bc3a36847f800936f", "cast_id": 11, "profile_path": "/5682H8oxwIezxImi7HiFnBYLL4V.jpg", "order": 7}, {"name": "Al Lettieri", "character": "Virgil 'Der T\u00fcrke' Sollozzo", "id": 3091, "credit_id": "52fe422bc3a36847f8009373", "cast_id": 12, "profile_path": "/uTzNiDToGv513rvxQMx37mz0q9V.jpg", "order": 8}, {"name": "Diane Keaton", "character": "Kay Adams", "id": 3092, "credit_id": "52fe422bc3a36847f8009377", "cast_id": 13, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 9}, {"name": "Abe Vigoda", "character": "Salvatore \"Sally\" Tessio", "id": 3093, "credit_id": "52fe422bc3a36847f800937b", "cast_id": 14, "profile_path": "/pUgFgNhow9niMPfTvj3mOzwtfRk.jpg", "order": 10}, {"name": "Talia Shire", "character": "Connie Corleone Rizzi", "id": 3094, "credit_id": "52fe422bc3a36847f800937f", "cast_id": 15, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 11}, {"name": "Gianni Russo", "character": "Carlo Rizzi", "id": 3095, "credit_id": "52fe422bc3a36847f8009383", "cast_id": 16, "profile_path": "/ttNwx2hFyQ7RkhAFhcfXtOYr6md.jpg", "order": 12}, {"name": "John Cazale", "character": "Fredo Corleone", "id": 3096, "credit_id": "52fe422bc3a36847f8009387", "cast_id": 17, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 13}, {"name": "Rudy Bond", "character": "Carmine Cuneo", "id": 3143, "credit_id": "52fe422bc3a36847f800938f", "cast_id": 34, "profile_path": "/wNpO0orqR8rWz7tf11iKN0UhvGg.jpg", "order": 14}, {"name": "Al Martino", "character": "Johnny Fontane", "id": 3144, "credit_id": "52fe422bc3a36847f8009393", "cast_id": 35, "profile_path": "/4rdC1Ezms99xSDrQnqHZDDpdZiW.jpg", "order": 15}, {"name": "Morgana King", "character": "Mama Corleone", "id": 933716, "credit_id": "52fe422bc3a36847f80093a7", "cast_id": 42, "profile_path": "/k9PLB28bm1oylZGAyzkWbIrZioM.jpg", "order": 16}, {"name": "Lenny Montana", "character": "Luca Brasi", "id": 106811, "credit_id": "52fe422bc3a36847f80093b3", "cast_id": 45, "profile_path": "/6rCsufBnJAj57mJ7PVaAFpIzm3j.jpg", "order": 17}, {"name": "John Martino", "character": "Paulie", "id": 99724, "credit_id": "52fe422bc3a36847f80093bb", "cast_id": 47, "profile_path": "/pq72Duoc6F6fP5rlVYE2nTU9mFH.jpg", "order": 18}, {"name": "Salvatore Corsitto", "character": "Bonasera", "id": 1195877, "credit_id": "52fe422bc3a36847f80093b7", "cast_id": 46, "profile_path": "/grnzoe9ElGN0qgcFZDQjMN0w6oq.jpg", "order": 19}, {"name": "Alex Rocco", "character": "Moe Greene", "id": 20752, "credit_id": "52fe422bc3a36847f80093a3", "cast_id": 41, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 20}, {"name": "Tony Giorgio", "character": "Bruno Tattaglia", "id": 3414, "credit_id": "52fe422bc3a36847f800939f", "cast_id": 38, "profile_path": "/oqR33f9gT5ODA8U8h2y05myM7dj.jpg", "order": 21}, {"name": "Victor Rendina", "character": "Philip Tattaglia", "id": 3413, "credit_id": "52fe422bc3a36847f800939b", "cast_id": 37, "profile_path": "/g4syFwXi60P1ID3aLTyxup4EXbT.jpg", "order": 22}, {"name": "Simonetta Stefanelli", "character": "Apollonia Vitelli-Corleone", "id": 3145, "credit_id": "52fe422bc3a36847f8009397", "cast_id": 36, "profile_path": "/oNH6iH1IkMvWJevQRtnVnXygd8b.jpg", "order": 23}, {"name": "Saro Urz\u00ec", "character": "Vitelli", "id": 119431, "credit_id": "52fe422bc3a36847f80093bf", "cast_id": 48, "profile_path": "/JjUgH6kyEyZ4kgfusXENCkhlk8.jpg", "order": 24}, {"name": "Sofia Coppola", "character": "Baby in baptism scene", "id": 1769, "credit_id": "52fe422bc3a36847f80093ab", "cast_id": 43, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 25}, {"name": "Louis Guss", "character": "Don Zaluchi", "id": 20973, "credit_id": "52fe422bc3a36847f80093af", "cast_id": 44, "profile_path": "/ndDIYrXz2catGlP01JUwuHi2nFU.jpg", "order": 26}, {"name": "Gabriele Torrei", "character": "Enzo, the baker", "id": 138211, "credit_id": "52fe422bc3a36847f80093c3", "cast_id": 49, "profile_path": "/sDwZ0sbq1AHGZGuUr9IlumiVzgf.jpg", "order": 27}, {"name": "Tony King", "character": "Tony - Stablehand (uncredited)", "id": 55672, "credit_id": "54de315fc3a3685446001351", "cast_id": 69, "profile_path": null, "order": 28}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f80093c9", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 8.1, "runtime": 175}, "239": {"poster_path": "/pxc9EFCMYkItESpqqrI783yl8Gh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl band as they leave on a tour. To make their getaway they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate and a very determined suitor.", "video": false, "id": 239, "genres": [{"id": 35, "name": "Comedy"}], "title": "Some Like It Hot", "tagline": "The movie too HOT for words!", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053291", "adult": false, "backdrop_path": "/tzdIslFViohCTLkNS1eI7qyUjVh.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1959-03-29", "popularity": 0.500287542138781, "original_title": "Some Like It Hot", "budget": 3500000, "cast": [{"name": "Marilyn Monroe", "character": "Sugar Kane Kowalczyk", "id": 3149, "credit_id": "52fe422bc3a36847f8009465", "cast_id": 15, "profile_path": "/AjIAEUq6JrsTG6vTFNEEmzFZVca.jpg", "order": 0}, {"name": "Tony Curtis", "character": "Joe (Josephine)", "id": 3150, "credit_id": "52fe422bc3a36847f8009437", "cast_id": 5, "profile_path": "/y2y6QFlLkbDzNbAaKKa8mSH3Lde.jpg", "order": 1}, {"name": "Jack Lemmon", "character": "Jerry (Daphne)", "id": 3151, "credit_id": "52fe422bc3a36847f800943b", "cast_id": 6, "profile_path": "/1Y3wQsqRALOL3LZQtKmulmN3qff.jpg", "order": 2}, {"name": "George Raft", "character": "Spats Colombo", "id": 3152, "credit_id": "52fe422bc3a36847f8009469", "cast_id": 16, "profile_path": "/ftXWCxlAF1n4AyiZLLPWpHQQauL.jpg", "order": 3}, {"name": "Joe E. Brown", "character": "Osgood Fielding III", "id": 3156, "credit_id": "52fe422bc3a36847f800943f", "cast_id": 7, "profile_path": "/sFU0iVNQrDRA5TYi3WJQHoAbUya.jpg", "order": 4}, {"name": "Nehemiah Persoff", "character": "Little Bonaparte", "id": 3160, "credit_id": "52fe422bc3a36847f800944f", "cast_id": 10, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 5}, {"name": "Joan Shawlee", "character": "Sweet Sue", "id": 3161, "credit_id": "52fe422bc3a36847f8009453", "cast_id": 11, "profile_path": "/1KSTHsyQsyuIAaj4k1BLmdpMaEc.jpg", "order": 6}, {"name": "Barbara Drew", "character": "Nellie", "id": 3168, "credit_id": "52fe422bc3a36847f8009457", "cast_id": 12, "profile_path": "/v6S957xjM9g36qdlS3CUTgEiSxl.jpg", "order": 7}, {"name": "Edward G. Robinson Jr.", "character": "Johnny Paradise", "id": 81501, "credit_id": "52fe422bc3a36847f8009461", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Pat O'Brien", "character": "Det. Mulligan", "id": 3155, "credit_id": "52fe422bc3a36847f800946d", "cast_id": 17, "profile_path": "/nRd6AufixcDcptqRSJwq1pTLArX.jpg", "order": 9}, {"name": "George E. Stone", "character": "Toothpick Charlie", "id": 3163, "credit_id": "52fe422bc3a36847f8009471", "cast_id": 18, "profile_path": "/zTW4BPeu6LpCHuNXhNVz2pYL5tk.jpg", "order": 10}, {"name": "Mike Mazurki", "character": "Spats' henchman", "id": 84229, "credit_id": "52fe422bc3a36847f8009475", "cast_id": 19, "profile_path": "/s1alibwL5JiBhBNZQGiN91Hccc3.jpg", "order": 11}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f8009421", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.5, "runtime": 122}, "240": {"poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47542841, "overview": "The continuing saga of the Corleone crime family tells the story of a young Vito Corleone growing up in Sicily and in 1910s New York; and follows Michael Corleone in the 1950s as he attempts to expand the family business into Las Vegas, Hollywood and Cuba", "video": false, "id": 240, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Godfather: Part II", "tagline": "I don't feel I have to wipe everybody out, Tom. Just my enemies.", "vote_count": 1222, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3WZTxpgscsmoUk81TuECXdFOD0R.jpg", "poster_path": "/msRyKgqWJWGSprcagItruC8mfL3.jpg", "id": 230, "name": "The Godfather Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0071562", "adult": false, "backdrop_path": "/xUU1melxrkb7IXl1F7PXrtZAWWl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "The Coppola Company", "id": 536}], "release_date": "1974-12-20", "popularity": 2.38857591784702, "original_title": "The Godfather: Part II", "budget": 13000000, "cast": [{"name": "Al Pacino", "character": "Don Michael Corleone", "id": 1158, "credit_id": "52fe422bc3a36847f8009505", "cast_id": 8, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Tom Hagen", "id": 3087, "credit_id": "52fe422bc3a36847f8009509", "cast_id": 9, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Diane Keaton", "character": "Kay Corleone", "id": 3092, "credit_id": "52fe422bc3a36847f800950d", "cast_id": 10, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 2}, {"name": "Robert De Niro", "character": "Vito Corleone", "id": 380, "credit_id": "52fe422bc3a36847f8009511", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 3}, {"name": "John Cazale", "character": "Fredo Corleone", "id": 3096, "credit_id": "52fe422bc3a36847f8009515", "cast_id": 12, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 4}, {"name": "Talia Shire", "character": "Connie Corleone", "id": 3094, "credit_id": "52fe422bc3a36847f8009519", "cast_id": 13, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 5}, {"name": "Lee Strasberg", "character": "Hyman Roth", "id": 3171, "credit_id": "52fe422bc3a36847f800951d", "cast_id": 14, "profile_path": "/ygEiIBPmoDfv4T8f4jL3EDn4cm3.jpg", "order": 6}, {"name": "Michael V. Gazzo", "character": "Frankie Pentangeli", "id": 3172, "credit_id": "52fe422bc3a36847f8009521", "cast_id": 15, "profile_path": "/z50tLgbtVvIEI05uHO6udwOgwe3.jpg", "order": 7}, {"name": "G. D. Spradlin", "character": "Senator Pat Geary", "id": 3173, "credit_id": "52fe422bc3a36847f8009525", "cast_id": 16, "profile_path": "/lyk0Fo343PJJ5gItBqGGl7oG112.jpg", "order": 8}, {"name": "Richard Bright", "character": "Al Neri", "id": 3174, "credit_id": "52fe422bc3a36847f8009529", "cast_id": 17, "profile_path": "/k2P17sxGhh7Dafidxn9Ub5YbF7n.jpg", "order": 9}, {"name": "Francesca De Sapio", "character": "die Mutter des jungen Vito", "id": 3279, "credit_id": "52fe422bc3a36847f8009581", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Oreste Baldini", "character": "junger Vito Andolini", "id": 3280, "credit_id": "52fe422bc3a36847f8009585", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Gastone Moschin", "character": "Don Fanucci", "id": 3281, "credit_id": "52fe422bc3a36847f8009589", "cast_id": 34, "profile_path": "/dlzOimu2std73cyi7S2RVb84XQg.jpg", "order": 12}, {"name": "Giuseppe Sillato", "character": "Don Francesco Ciccio", "id": 3333, "credit_id": "52fe422bc3a36847f800958d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Bruno Kirby", "character": "Young Clemenza (as B. Kirby Jr.)", "id": 9257, "credit_id": "52fe422bc3a36847f8009597", "cast_id": 37, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 14}, {"name": "Frank Sivero", "character": "Genco", "id": 11480, "credit_id": "52fe422bc3a36847f800959b", "cast_id": 38, "profile_path": "/jszCGdc8p9d42K8e7qvVpzaQa5b.jpg", "order": 15}, {"name": "Morgana King", "character": "Mama Corleone", "id": 933716, "credit_id": "52fe422bc3a36847f800959f", "cast_id": 39, "profile_path": "/k9PLB28bm1oylZGAyzkWbIrZioM.jpg", "order": 16}, {"name": "Marianna Hill", "character": "Deanna Corleone (as Mariana Hill)", "id": 15659, "credit_id": "52fe422bc3a36847f80095a3", "cast_id": 40, "profile_path": "/h3X58tFp2a7Tgt7gNW2sbM6N2EH.jpg", "order": 17}, {"name": "Leopoldo Trieste", "character": "Signor Roberto", "id": 14151, "credit_id": "52fe422bc3a36847f80095a7", "cast_id": 41, "profile_path": "/yPdmZwmCW4cvmENFKMBj63NCFCq.jpg", "order": 18}, {"name": "Dominic Chianese", "character": "Johnny Ola", "id": 68186, "credit_id": "52fe422bc3a36847f80095ab", "cast_id": 42, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 19}, {"name": "Fay Spain", "character": "Mrs. Marcia Roth", "id": 116739, "credit_id": "52fe422bc3a36847f80095af", "cast_id": 43, "profile_path": "/6Dk7IjVZDZJ0v4oF63q7w49PaP4.jpg", "order": 20}, {"name": "Harry Dean Stanton", "character": "F.B.I. Man #1", "id": 5048, "credit_id": "52fe422bc3a36847f80095b3", "cast_id": 44, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 21}, {"name": "Danny Aiello", "character": "Tony Rosato", "id": 1004, "credit_id": "52fe422bc3a36847f80095b7", "cast_id": 45, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 22}, {"name": "Roger Corman", "character": "Senator #2", "id": 102429, "credit_id": "52fe422bc3a36847f80095bb", "cast_id": 46, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 23}, {"name": "William Bowers", "character": "Senate Committee Chairman", "id": 69948, "credit_id": "52fe422bc3a36847f80095bf", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "James Caan", "character": "Sonny Corleone", "id": 3085, "credit_id": "52fe422bc3a36847f80095c3", "cast_id": 48, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 25}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f80094dd", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 8.0, "runtime": 200}, "241": {"poster_path": "/w5sruoTQ87PFAGRJQyyaCOM1C4A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two victims of traumatized childhoods become lovers and psychopathic serial murderers irresponsibly glorified by the mass media.", "video": false, "id": 241, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Natural Born Killers", "tagline": "The Media Made Them Superstars.", "vote_count": 218, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "nv", "name": ""}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0110632", "adult": false, "backdrop_path": "/ozpp9xeOzMz7GglNvcUy841T5pQ.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1994-08-25", "popularity": 0.829108765450684, "original_title": "Natural Born Killers", "budget": 34000000, "cast": [{"name": "Woody Harrelson", "character": "Mickey Knox", "id": 57755, "credit_id": "52fe422bc3a36847f800967d", "cast_id": 49, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Juliette Lewis", "character": "Mallory Knox", "id": 3196, "credit_id": "52fe422bc3a36847f8009681", "cast_id": 50, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 1}, {"name": "Robert Downey Jr.", "character": "Wayne Gale", "id": 3223, "credit_id": "52fe422bc3a36847f8009685", "cast_id": 51, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 2}, {"name": "Tommy Lee Jones", "character": "Warden Dwight McClusky", "id": 2176, "credit_id": "52fe422bc3a36847f8009689", "cast_id": 52, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 3}, {"name": "Tom Sizemore", "character": "Det. Jack Scagnetti", "id": 3197, "credit_id": "52fe422bc3a36847f800968d", "cast_id": 53, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 4}, {"name": "Rodney Dangerfield", "character": "Mallory's Dad", "id": 3198, "credit_id": "52fe422bc3a36847f8009691", "cast_id": 54, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 5}, {"name": "Edie McClurg", "character": "Mallory's Mom", "id": 3202, "credit_id": "52fe422bc3a36847f8009695", "cast_id": 55, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 6}, {"name": "Russell Means", "character": "Old Indian", "id": 3203, "credit_id": "52fe422bc3a36847f8009699", "cast_id": 56, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 7}, {"name": "Maria Pitillo", "character": "Deborah", "id": 3208, "credit_id": "52fe422bc3a36847f800969d", "cast_id": 57, "profile_path": "/ihaCNZzuR7P06OFqOf1aHmAIDna.jpg", "order": 8}, {"name": "Sean Stone", "character": "Kevin", "id": 3210, "credit_id": "52fe422bc3a36847f80096a1", "cast_id": 58, "profile_path": "/kSvY7qVOiNilpf13bI3quoNyLKo.jpg", "order": 9}, {"name": "Everett Quinton", "character": "Deputy Warden Wurlitzer", "id": 3199, "credit_id": "54971aec92514130fc0052d8", "cast_id": 59, "profile_path": null, "order": 10}, {"name": "Jared Harris", "character": "London Boy", "id": 15440, "credit_id": "54971b40c3a36831b800434b", "cast_id": 61, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 12}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f8009607", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.7, "runtime": 119}, "242": {"poster_path": "/uzaP0L7BEprcJHCuwbaHiYT0UYX.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136766062, "overview": "In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.", "video": false, "id": 242, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Godfather: Part III", "tagline": "All the power on earth can't change destiny.", "vote_count": 475, "homepage": "http://www.imdb.com/title/tt0099674/", "belongs_to_collection": {"backdrop_path": "/3WZTxpgscsmoUk81TuECXdFOD0R.jpg", "poster_path": "/msRyKgqWJWGSprcagItruC8mfL3.jpg", "id": 230, "name": "The Godfather Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0099674", "adult": false, "backdrop_path": "/Aj9SXKV2OUXXAQUqmsJXDgub39H.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1990-12-24", "popularity": 1.10626001119713, "original_title": "The Godfather: Part III", "budget": 54000000, "cast": [{"name": "Al Pacino", "character": "Don Michael Corleone", "id": 1158, "credit_id": "52fe422bc3a36847f8009721", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Kay Adams Michelson", "id": 3092, "credit_id": "52fe422bc3a36847f8009725", "cast_id": 2, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Andy Garc\u00eda", "character": "Don Vincent 'Vinnie' Mancini-Corleone", "id": 1271, "credit_id": "52fe422bc3a36847f8009729", "cast_id": 3, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 2}, {"name": "Talia Shire", "character": "Connie Corleone-Rizzi", "id": 3094, "credit_id": "52fe422bc3a36847f800972d", "cast_id": 4, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 3}, {"name": "Sofia Coppola", "character": "Mary Corleone", "id": 1769, "credit_id": "52fe422bc3a36847f8009731", "cast_id": 5, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 4}, {"name": "Eli Wallach", "character": "Don Altobello", "id": 3265, "credit_id": "52fe422bc3a36847f800977d", "cast_id": 18, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 5}, {"name": "Joe Mantegna", "character": "Joey Zasa", "id": 3266, "credit_id": "52fe422bc3a36847f8009781", "cast_id": 19, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 6}, {"name": "George Hamilton", "character": "B.J. Harrison", "id": 3267, "credit_id": "52fe422bc3a36847f8009785", "cast_id": 20, "profile_path": "/vvQPSTNPezjzu92lfUagUXpayGG.jpg", "order": 7}, {"name": "Bridget Fonda", "character": "Grace Hamilton", "id": 2233, "credit_id": "52fe422bc3a36847f8009789", "cast_id": 21, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 8}, {"name": "Raf Vallone", "character": "Cardinal Lamberto", "id": 3268, "credit_id": "52fe422bc3a36847f800978d", "cast_id": 22, "profile_path": "/kmXprY5YSYc5ubCVzDjGTK0lntq.jpg", "order": 9}, {"name": "Franc D'Ambrosio", "character": "Anthony Vito Corleone/Turiddu (auch 'Cavalleria Rusticana')", "id": 3269, "credit_id": "52fe422bc3a36847f8009791", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Donal Donnelly", "character": "Archbishop Gilday", "id": 168632, "credit_id": "52fe422cc3a36847f80097d7", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Richard Bright", "character": "Al Neri", "id": 3174, "credit_id": "52fe422cc3a36847f80097db", "cast_id": 36, "profile_path": "/k2P17sxGhh7Dafidxn9Ub5YbF7n.jpg", "order": 12}, {"name": "Helmut Berger", "character": "Frederick Keinszig", "id": 32058, "credit_id": "52fe422cc3a36847f80097df", "cast_id": 37, "profile_path": "/1ZzAyXQhlnWiBkxMYrc4uV4yAsn.jpg", "order": 13}, {"name": "Don Novello", "character": "Dominic Abbandando", "id": 161860, "credit_id": "52fe422cc3a36847f80097e3", "cast_id": 38, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 14}, {"name": "John Savage", "character": "Father Andrew Hagen", "id": 47879, "credit_id": "52fe422cc3a36847f80097e7", "cast_id": 39, "profile_path": "/ddGrvKHqhziYw9r6U1wu0VDLPYn.jpg", "order": 15}, {"name": "Franco Citti", "character": "Calo", "id": 44860, "credit_id": "52fe422cc3a36847f80097eb", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Mario Donatone", "character": "Mosca", "id": 103060, "credit_id": "52fe422cc3a36847f80097ef", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Vittorio Duse", "character": "Don Tommasino", "id": 32676, "credit_id": "52fe422cc3a36847f80097f3", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Enzo Robutti", "character": "Don Licio Lucchesi", "id": 122022, "credit_id": "52fe422cc3a36847f80097f7", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Michele Russo", "character": "Spara", "id": 982447, "credit_id": "52fe422cc3a36847f80097fb", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Al Martino", "character": "Johnny Fontane", "id": 3144, "credit_id": "52fe422cc3a36847f80097ff", "cast_id": 45, "profile_path": "/4rdC1Ezms99xSDrQnqHZDDpdZiW.jpg", "order": 21}, {"name": "Robert Cicchini", "character": "Lou Pennino", "id": 156431, "credit_id": "52fe422cc3a36847f8009803", "cast_id": 46, "profile_path": "/nvrzmogQGwWeULp8kzjG8EM1lsQ.jpg", "order": 22}, {"name": "Rogerio Miranda", "character": "Twin Bodyguard Armand", "id": 982212, "credit_id": "52fe422cc3a36847f8009807", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "Carlos Miranda", "character": "Twin Bodyguard Francesco", "id": 39007, "credit_id": "52fe422cc3a36847f800980b", "cast_id": 48, "profile_path": "/4AaU3V2VYU9SLZpt11Mv7BONbgG.jpg", "order": 24}, {"name": "Vito Antuofermo", "character": "Anthony 'The Ant' Squigliaro", "id": 1169885, "credit_id": "52fe422cc3a36847f800980f", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Robert Vento", "character": "Father John", "id": 1169886, "credit_id": "52fe422cc3a36847f8009813", "cast_id": 50, "profile_path": null, "order": 26}, {"name": "Willie Brown", "character": "Party Politician", "id": 196286, "credit_id": "52fe422cc3a36847f8009817", "cast_id": 51, "profile_path": null, "order": 27}, {"name": "Jeannie Linero", "character": "Lucy Mancini", "id": 167363, "credit_id": "52fe422cc3a36847f800981b", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Jeanne Savarino Pesch", "character": "Francesca Corleone", "id": 1169887, "credit_id": "52fe422cc3a36847f800981f", "cast_id": 53, "profile_path": null, "order": 29}, {"name": "Janet Savarino Smith", "character": "Kathryn Corleone", "id": 1169888, "credit_id": "52fe422cc3a36847f8009823", "cast_id": 54, "profile_path": null, "order": 30}, {"name": "Tere Livrano", "character": "Teresa Hagen (as Tere L. Baker)", "id": 982089, "credit_id": "52fe422cc3a36847f8009827", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Carmine Caridi", "character": "Albert Volpe", "id": 133853, "credit_id": "52fe422cc3a36847f800982b", "cast_id": 56, "profile_path": "/1BQ7WLUtywjSWoH2G08VixhJXLG.jpg", "order": 32}, {"name": "Don Costello", "character": "Frank Romano", "id": 1209294, "credit_id": "52fe422cc3a36847f800983f", "cast_id": 63, "profile_path": null, "order": 33}, {"name": "Al Ruscio", "character": "Leo Cuneo", "id": 37254, "credit_id": "52fe422cc3a36847f800982f", "cast_id": 58, "profile_path": null, "order": 34}, {"name": "Mickey Knox", "character": "Marty Parisi", "id": 46418, "credit_id": "52fe422cc3a36847f8009833", "cast_id": 59, "profile_path": "/5tyGEyr0PwKt9tFhDySAFekOj7S.jpg", "order": 35}, {"name": "Michael Bowen", "character": "Mask #2", "id": 2234, "credit_id": "52fe422cc3a36847f8009837", "cast_id": 61, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 36}, {"name": "Brett Halsey", "character": "Douglas Michelson", "id": 31896, "credit_id": "52fe422cc3a36847f800983b", "cast_id": 62, "profile_path": "/2YlRV09Bz4QM9C8gX1FDLpVKbmW.jpg", "order": 37}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f8009737", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 7.0, "runtime": 162}, "243": {"poster_path": "/sEZKCUFU6Ozf7hZ3UuaKWUqHLTZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47126295, "overview": "When record store owner Rob Gordon gets dumped by his girlfriend, Laura, because he hasn't changed since they met, he revisits his top five breakups of all time in an attempt to figure out what went wrong. As Rob seeks out his former lovers to find out why they left, he keeps up his efforts to win Laura back.", "video": false, "id": 243, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "High Fidelity", "tagline": "A comedy about fear of commitment, hating your job, falling in love and other pop favorites.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146882", "adult": false, "backdrop_path": "/7DbIcmNxYgivKq5R4xgje3xSuqp.jpg", "production_companies": [{"name": "Buena Vista", "id": 32}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2000-03-17", "popularity": 0.366449211095441, "original_title": "High Fidelity", "budget": 30000000, "cast": [{"name": "John Cusack", "character": "Rob Gordon", "id": 3036, "credit_id": "52fe422cc3a36847f80098e7", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Iben Hjejle", "character": "Laura", "id": 1562, "credit_id": "52fe422cc3a36847f80098eb", "cast_id": 8, "profile_path": "/t0areKrmJIoopPaKzPCY7ILuUze.jpg", "order": 1}, {"name": "Todd Louiso", "character": "Dick", "id": 3230, "credit_id": "52fe422cc3a36847f80098ef", "cast_id": 9, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 2}, {"name": "Jack Black", "character": "Barry", "id": 70851, "credit_id": "52fe422cc3a36847f80098f3", "cast_id": 10, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "Lisa Bonet", "character": "Marie DeSalle", "id": 3232, "credit_id": "52fe422cc3a36847f80098f7", "cast_id": 11, "profile_path": "/wP9edkzvr5vIIVaocRf70vdRcdW.jpg", "order": 4}, {"name": "Catherine Zeta-Jones", "character": "Charlie Nicholson", "id": 1922, "credit_id": "52fe422cc3a36847f80098fb", "cast_id": 12, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 5}, {"name": "Joan Cusack", "character": "Liz", "id": 3234, "credit_id": "52fe422cc3a36847f80098ff", "cast_id": 13, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 6}, {"name": "Tim Robbins", "character": "Ian 'Ray' Raymond", "id": 504, "credit_id": "52fe422cc3a36847f8009903", "cast_id": 14, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 7}, {"name": "Chris Rehmann", "character": "Vince", "id": 3235, "credit_id": "52fe422cc3a36847f8009907", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Ben Carr", "character": "Justin", "id": 3236, "credit_id": "52fe422cc3a36847f800990b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Lili Taylor", "character": "Sarah Kendrew", "id": 3127, "credit_id": "52fe422cc3a36847f800990f", "cast_id": 17, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 10}, {"name": "Joelle Carter", "character": "Penny Hardwick", "id": 3237, "credit_id": "52fe422cc3a36847f8009913", "cast_id": 18, "profile_path": "/zdu1LYyKidGrqqSnUkkQ9blMO83.jpg", "order": 11}, {"name": "Natasha Gregson Wagner", "character": "Caroline Fortis", "id": 3270, "credit_id": "52fe422cc3a36847f8009929", "cast_id": 22, "profile_path": "/jjzEhU1kxnHnwDBq4CtNDRxS1f6.jpg", "order": 12}, {"name": "Shannon Stillo", "character": "Alison Jr. High", "id": 3271, "credit_id": "52fe422cc3a36847f800992d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Drake Bell", "character": "Rob Jr. High", "id": 3272, "credit_id": "52fe422cc3a36847f8009931", "cast_id": 24, "profile_path": "/5GqFeFdNXRzb9DwlFSfBef8Pmb0.jpg", "order": 14}, {"name": "Laura Whyte", "character": "Laura's Mom", "id": 3273, "credit_id": "52fe422cc3a36847f8009935", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Sara Gilbert", "character": "Anaugh", "id": 3282, "credit_id": "52fe422cc3a36847f8009939", "cast_id": 26, "profile_path": "/pNimJ9cfqe9OeOLFl0k1pXkQ7SY.jpg", "order": 16}, {"name": "Rich Talarico", "character": "Barry's Customer", "id": 1051450, "credit_id": "52fe422cc3a36847f8009963", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Matthew O'Neill", "character": "Beta Band Customer (as Matt O'Neill)", "id": 1208967, "credit_id": "52fe422cc3a36847f8009967", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Brian Powell", "character": "Middle Aged Customer", "id": 189758, "credit_id": "52fe422cc3a36847f800996b", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Margaret Travolta", "character": "Rob's Mom", "id": 3283, "credit_id": "52fe422cc3a36847f800993d", "cast_id": 27, "profile_path": "/igwSgzjk8Hxe0BZk1GQZUzLKvUw.jpg", "order": 20}, {"name": "Bruce Springsteen", "character": "Himself", "id": 3284, "credit_id": "52fe422cc3a36847f8009941", "cast_id": 28, "profile_path": "/fhp9cMGFvminiYc1uFN1MvHnQaP.jpg", "order": 21}, {"name": "Jill Peterson", "character": "Laura's Sister Jo", "id": 554631, "credit_id": "52fe422cc3a36847f800996f", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Dick Cusack", "character": "Minister", "id": 933416, "credit_id": "52fe422cc3a36847f8009973", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Susan Yoo", "character": "Girl - 19 year old", "id": 1273201, "credit_id": "52fe422cc3a36847f8009977", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Chris Bauer", "character": "Paul", "id": 4445, "credit_id": "52fe422cc3a36847f800997b", "cast_id": 40, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 25}, {"name": "K. K. Dodds", "character": "Miranda", "id": 6945, "credit_id": "52fe422cc3a36847f800997f", "cast_id": 41, "profile_path": "/n9d6ovtwlfZ5Xvvo2oaJd3rUGvp.jpg", "order": 26}, {"name": "Marilyn Dodds Frank", "character": "Alison's Mom", "id": 142333, "credit_id": "52fe422cc3a36847f8009983", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Duke Doyle", "character": "Kevin Bannister", "id": 1273202, "credit_id": "52fe422cc3a36847f8009987", "cast_id": 43, "profile_path": null, "order": 28}, {"name": "Aaron Himelstein", "character": "Boy In Park", "id": 43373, "credit_id": "52fe422cc3a36847f800998b", "cast_id": 44, "profile_path": "/dx7qDc6tMxsfP9jAYkCVClX6p8q.jpg", "order": 29}, {"name": "Jonathan Herrington", "character": "Chris Thompson", "id": 1273203, "credit_id": "52fe422cc3a36847f800998f", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Daniel Lee Smith", "character": "Rock Guy", "id": 1273204, "credit_id": "52fe422cc3a36847f8009993", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Leah Gale", "character": "Mourner", "id": 1273205, "credit_id": "52fe422cc3a36847f8009997", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "David Darlow", "character": "Mourner", "id": 35022, "credit_id": "52fe422cc3a36847f800999b", "cast_id": 48, "profile_path": null, "order": 33}, {"name": "Erik Gundersen", "character": "Marco", "id": 1273206, "credit_id": "52fe422cc3a36847f800999f", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Alex D\u00e9sert", "character": "Louis (as Alex Desert)", "id": 110141, "credit_id": "52fe422cc3a36847f80099a3", "cast_id": 50, "profile_path": "/gewcwADaymdJpV88kwEbYQqHP6F.jpg", "order": 35}, {"name": "Alan S. Johnson", "character": "Man In Store", "id": 1273207, "credit_id": "52fe422cc3a36847f80099a7", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "Ian Belknap", "character": "Party Guest", "id": 204293, "credit_id": "52fe422cc3a36847f80099ab", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Andrew Micheli", "character": "Party Guest", "id": 1084579, "credit_id": "52fe422cc3a36847f80099af", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Polly Noonan", "character": "Party Guest", "id": 86561, "credit_id": "52fe422cc3a36847f80099b3", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Philip Rayburn Smith", "character": "Party Guest", "id": 1226311, "credit_id": "52fe422cc3a36847f80099b7", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Michele Graff", "character": "Party Guest", "id": 181502, "credit_id": "52fe422cc3a36847f80099bb", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Susie Cusack", "character": "Party Guest", "id": 146281, "credit_id": "52fe422cc3a36847f80099bf", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Liam Hayes", "character": "Piano Player", "id": 1141597, "credit_id": "52fe422cc3a36847f80099c3", "cast_id": 58, "profile_path": null, "order": 43}, {"name": "Damian Rogers", "character": "Greenday Girl", "id": 1273209, "credit_id": "52fe422cc3a36847f80099c7", "cast_id": 59, "profile_path": null, "order": 44}, {"name": "Robert A. Villanueva", "character": "Skateboarder", "id": 1273210, "credit_id": "52fe422cc3a36847f80099cb", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Joe Spaulding", "character": "Flea Market Musician", "id": 1273211, "credit_id": "52fe422cc3a36847f80099cf", "cast_id": 61, "profile_path": null, "order": 46}, {"name": "Scott A. Martin", "character": "Bartender", "id": 1055739, "credit_id": "52fe422cc3a36847f80099d3", "cast_id": 62, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 47}, {"name": "Heather Norris", "character": "Laura's Friend", "id": 1273212, "credit_id": "52fe422cc3a36847f80099d7", "cast_id": 63, "profile_path": null, "order": 48}], "directors": [{"name": "Stephen Frears", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f80098c5", "profile_path": "/n95XJkCqkKkWqc2swPsqXYpxxaQ.jpg", "id": 3224}], "vote_average": 6.8, "runtime": 113}, "98548": {"poster_path": "/lMAHB1r1vSUOZRKCYR143mm6VMk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It tells the story of a struggling man who, after flying home to L.A. for the funeral of his estranged record-producer father, discovers that the will stipulates that he must deliver $150,000 in cash to a 30-year-old alcoholic sister he never knew existed, and her troubled 12-year-old son.", "video": false, "id": 98548, "genres": [{"id": 18, "name": "Drama"}], "title": "People Like Us", "tagline": "Find your family.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1716777", "adult": false, "backdrop_path": "/lDxexgNTafPaGUwDOXQWa6RQ2OG.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2012-06-29", "popularity": 0.3625576999018, "original_title": "People Like Us", "budget": 16000000, "cast": [{"name": "Chris Pine", "character": "Sam", "id": 62064, "credit_id": "52fe4a179251416c750dd571", "cast_id": 11, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Frankie", "id": 9281, "credit_id": "52fe4a179251416c750dd575", "cast_id": 12, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Hannah", "id": 59315, "credit_id": "52fe4a179251416c750dd579", "cast_id": 13, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Lillian", "id": 1160, "credit_id": "52fe4a179251416c750dd57d", "cast_id": 14, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Mark Duplass", "character": "Ted", "id": 45407, "credit_id": "52fe4a179251416c750dd581", "cast_id": 15, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 4}, {"name": "Jon Morgan Woodward", "character": "John AA menber", "id": 1018659, "credit_id": "52fe4a179251416c750dd585", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Devin Brochu", "character": "Simon", "id": 202949, "credit_id": "52fe4a179251416c750dd589", "cast_id": 17, "profile_path": "/kxyh9XX1rAtaI02bJxmVDAeFaWv.jpg", "order": 6}, {"name": "Barbara Eve Harris", "character": "Mrs. Haney", "id": 157146, "credit_id": "52fe4a179251416c750dd58d", "cast_id": 18, "profile_path": "/dEiJziN5TPJU5LQjeN95tL3lrNk.jpg", "order": 7}, {"name": "Dean Chekvala", "character": "Jerry", "id": 209573, "credit_id": "52fe4a179251416c750dd591", "cast_id": 19, "profile_path": "/pipG4OPM8ZDEf9RMsdsebz2HPPb.jpg", "order": 8}, {"name": "Sara Mornell", "character": "Dr. Amanda Goldstein", "id": 156785, "credit_id": "52fe4a179251416c750dd595", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Alex Kurtzman", "department": "Directing", "job": "Director", "credit_id": "52fe4a179251416c750dd543", "profile_path": "/5cO0ug7TtRqzbYU4ukKzUzfuUk.jpg", "id": 15345}], "vote_average": 6.8, "runtime": 114}, "245": {"poster_path": "/1kz4Q2v7cxwNnTfkjrujzWAVCne.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129000000, "overview": "Will Freeman is a hip Londoner who one day realizes that his friends are all involved with the responsibilities of married life and that leaves him alone in the cold. Passing himself off as a single father, he starts to meet a string of single mums, confident in his ability to leave them behind when they start to ask for a commitment. But Will's hope of a continued bachelorhood is interrupted when he meets 12-year old Marcus, in many ways his complete opposite.", "video": false, "id": 245, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "About a Boy", "tagline": "One ordinary couple. One little white lie.", "vote_count": 148, "homepage": "http://movies.uip.de/aboutaboy/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0276751", "adult": false, "backdrop_path": "/90eJYj2PxtE9Lu2AiwTsaSWt94Z.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2002-04-26", "popularity": 0.568526374465225, "original_title": "About a Boy", "budget": 27000000, "cast": [{"name": "Hugh Grant", "character": "Will", "id": 3291, "credit_id": "52fe422cc3a36847f8009b23", "cast_id": 7, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Nicholas Hoult", "character": "Marcus Brewer", "id": 3292, "credit_id": "52fe422cc3a36847f8009b27", "cast_id": 8, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 1}, {"name": "Toni Collette", "character": "Fiona Brewer", "id": 3051, "credit_id": "52fe422cc3a36847f8009b2b", "cast_id": 9, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Rachel Weisz", "character": "Rachel", "id": 3293, "credit_id": "52fe422cc3a36847f8009b2f", "cast_id": 10, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 3}, {"name": "Sharon Small", "character": "Christine", "id": 3294, "credit_id": "52fe422cc3a36847f8009b33", "cast_id": 11, "profile_path": "/3hYpwSpiARkKVXGaeq9r6Ji03oI.jpg", "order": 4}, {"name": "Madison Cook", "character": "Imogen", "id": 3295, "credit_id": "52fe422cc3a36847f8009b37", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Jordan Cook", "character": "Imogen", "id": 3296, "credit_id": "52fe422cc3a36847f8009b3b", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Nicholas Hutchison", "character": "John", "id": 3297, "credit_id": "52fe422cc3a36847f8009b3f", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Ryan Speechley", "character": "Barney", "id": 3298, "credit_id": "52fe422cc3a36847f8009b43", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Joseph Speechley", "character": "Barney", "id": 3299, "credit_id": "52fe422cc3a36847f8009b47", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Natalia Tena", "character": "Ellie", "id": 3300, "credit_id": "52fe422cc3a36847f8009b4b", "cast_id": 17, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 10}, {"name": "Isabel Brook", "character": "Angie", "id": 3301, "credit_id": "52fe422cc3a36847f8009b4f", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Orlando Thor Newman", "character": "Louie, Angie's Kid", "id": 3302, "credit_id": "52fe422cc3a36847f8009b53", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Russell Barr", "character": "Maitre D'", "id": 3303, "credit_id": "52fe422cc3a36847f8009b57", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Denise Stephenson", "character": "Lindsey", "id": 3306, "credit_id": "52fe422cc3a36847f8009b79", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Peter Roy", "character": "Will's Dad", "id": 3307, "credit_id": "52fe422cc3a36847f8009b7d", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Rosalind Knight", "character": "Lindsey's Mum", "id": 3308, "credit_id": "52fe422cc3a36847f8009b81", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Augustus Prew", "character": "Ali", "id": 3309, "credit_id": "52fe422cc3a36847f8009b85", "cast_id": 29, "profile_path": "/k3pRpdfeHZq0BGBAYqhXyKjDuic.jpg", "order": 17}, {"name": "Victoria Smurfit", "character": "Suzie", "id": 3315, "credit_id": "52fe422cc3a36847f8009ba7", "cast_id": 35, "profile_path": "/aNPzf4S9WNIF60HTkTuGHvE8JqO.jpg", "order": 18}, {"name": "Sian Martin", "character": "", "id": 1328285, "credit_id": "53b17de70e0a26598c0085d3", "cast_id": 37, "profile_path": null, "order": 19}], "directors": [{"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f8009b01", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}, {"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f8009b07", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 6.3, "runtime": 101}, "246": {"poster_path": "/xNFaRG30R3IiVFMgX8X8kAFGxCP.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Zat\u00f4ichi is a 19th century blind nomad who makes his living as a gambler and masseur. However, behind this humble facade, he is a master swordsman gifted with a lightning-fast draw and breathtaking precision. While wandering, Zat\u00f4ichi discovers a remote mountain village at the mercy of Ginzo, a ruthless gang-leader. Ginzo disposes of anyone who gets in his way, especially after hiring the mighty samurai ronin, Hattori, as a bodyguard. After a raucous night of gambling in town, Zat\u00f4ichi encounters a pair of geishas--as dangerous as they are beautiful--who've come to avenge their parents' murder. As the paths of these and other colorful characters intertwine, Ginzo's henchmen are soon after Zat\u00f4ichi. With his legendary cane sword at his side, the stage is set for a riveting showdown.", "video": false, "id": 246, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Zatoichi: The Blind Swordsman", "tagline": "His sword made him a hero... his courage made him a legend.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0363226", "adult": false, "backdrop_path": "/qvtzzhdr8ne2eb6lMaoCeXWye09.jpg", "production_companies": [{"name": "Office Kitano", "id": 567}, {"name": "Saito Entertainment", "id": 568}, {"name": "Tokyo FM Broadcasting Company", "id": 569}, {"name": "Bandai Visual Company (JAPAN)", "id": 570}], "release_date": "2003-09-06", "popularity": 0.516689612892227, "original_title": "Zat\u00f4ichi", "budget": 0, "cast": [{"name": "Takeshi Kitano", "character": "Zat\u00f4ichi", "id": 3317, "credit_id": "52fe422cc3a36847f8009c27", "cast_id": 13, "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "order": 0}, {"name": "Tadanobu Asano", "character": "Hattori, der Leibw\u00e4chter", "id": 13275, "credit_id": "52fe422cc3a36847f8009c2b", "cast_id": 14, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 1}, {"name": "Michiyo Ohkusu", "character": "Tante O-Ume", "id": 1050798, "credit_id": "54b2100992514107e000238e", "cast_id": 24, "profile_path": null, "order": 2}, {"name": "Gadarukanaru Taka", "character": "Shinkichi", "id": 13277, "credit_id": "52fe422cc3a36847f8009c33", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Daigor\u014d Tachibana", "character": "Geisha O-Sei", "id": 13278, "credit_id": "52fe422cc3a36847f8009c37", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Y\u00fbko Daike", "character": "Geisha O-Kinu", "id": 13257, "credit_id": "52fe422cc3a36847f8009c4b", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Yui Natsukawa", "character": "Hattoris Frau", "id": 13280, "credit_id": "52fe422cc3a36847f8009c3b", "cast_id": 18, "profile_path": "/y49Kk0dslXP0zXJjUYKB9X7Jbk9.jpg", "order": 6}, {"name": "Ittoku Kishibe", "character": "Ginzo", "id": 13281, "credit_id": "52fe422cc3a36847f8009c3f", "cast_id": 19, "profile_path": "/zisEtz9j0k1AjExiSsgxMdhOYMh.jpg", "order": 7}, {"name": "Saburo Ishikura", "character": "Ogi", "id": 13282, "credit_id": "52fe422cc3a36847f8009c43", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Akira Emoto", "character": "Kneipenbesitzer", "id": 13283, "credit_id": "52fe422cc3a36847f8009c47", "cast_id": 21, "profile_path": "/9jh1u0EGmIoeAuXgTWE76lB0DDr.jpg", "order": 9}], "directors": [{"name": "Takeshi Kitano", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f8009be1", "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "id": 3317}], "vote_average": 7.1, "runtime": 111}, "262391": {"poster_path": "/bdSB0XqFB0cu0z9TkMQHKErtiU2.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A catholic French couple sees their life upside down when their four daughters get married to men of different religion and origins.", "video": false, "id": 262391, "genres": [{"id": 35, "name": "Comedy"}], "title": "Serial (Bad) Weddings", "tagline": "4 marriages, 2 long-faces", "vote_count": 248, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2800240", "adult": false, "backdrop_path": "/umRJ4di4xbpv6jAddHczdt1723S.jpg", "production_companies": [{"name": "UGC", "id": 581}], "release_date": "2014-04-16", "popularity": 2.11367285294911, "original_title": "Qu'est-ce qu'on a fait au Bon Dieu", "budget": 0, "cast": [{"name": "Christian Clavier", "character": "Claude Verneuil", "id": 28781, "credit_id": "5339b71dc3a3680e70006520", "cast_id": 1, "profile_path": "/1VB7ls5ibtsklup67akj6bLbgp.jpg", "order": 1}, {"name": "Chantal Lauby", "character": "Marie Verneuil", "id": 82119, "credit_id": "5339b77dc3a3680e6900663d", "cast_id": 6, "profile_path": "/jjAqj8DtfVD4F4jJOn2ZUEfp0Qm.jpg", "order": 6}, {"name": "Ary Abittan", "character": "David Benichou", "id": 83969, "credit_id": "5339b839c3a3680e9f00625a", "cast_id": 7, "profile_path": "/icnoi1nE54NtAjkM671iisoz08Y.jpg", "order": 7}, {"name": "Medi Sadoun", "character": "Rachid Benassem", "id": 1077538, "credit_id": "5339b859c3a3680e760065f5", "cast_id": 8, "profile_path": "/exreP1BqQICDw5I0ozdyv8TnKKd.jpg", "order": 8}, {"name": "Fr\u00e9d\u00e9ric Chau", "character": "Chao Ling", "id": 226021, "credit_id": "5339b880c3a3680e760065f8", "cast_id": 9, "profile_path": "/9QRFgZqIv08TxaR19ouomv8FgWs.jpg", "order": 9}, {"name": "Noom Diawara", "character": "Charles Koffi", "id": 131403, "credit_id": "5339b896c3a3680e7f0064dd", "cast_id": 10, "profile_path": "/hc7SjF5THPJrik6LtItNXYeqyN3.jpg", "order": 10}, {"name": "Fr\u00e9d\u00e9rique Bel", "character": "Isabelle Verneuil", "id": 65572, "credit_id": "5339b8b8c3a3680e760065fe", "cast_id": 11, "profile_path": "/5iZ1art3eLMcBTZmbXgSFG4c3Yx.jpg", "order": 11}, {"name": "Julia Piaton", "character": "Odile Verneuil", "id": 1074716, "credit_id": "5339b8d5c3a3680e8f0066dd", "cast_id": 12, "profile_path": "/cEc2DScbXfp1UjQN1jnPox1YG81.jpg", "order": 12}, {"name": "Emilie Caen", "character": "S\u00e9gol\u00e8ne Verneuil", "id": 999406, "credit_id": "5339b8fbc3a3680e69006661", "cast_id": 13, "profile_path": "/5uHAZnWJj7HFHtJl72kS3qSMJA1.jpg", "order": 13}, {"name": "Elodie Fontan", "character": "Laure Verneuil", "id": 146630, "credit_id": "5339b91ec3a3680e9f00626e", "cast_id": 14, "profile_path": "/2NjUCEsgyPOnxKepprszrDSZT31.jpg", "order": 14}], "directors": [{"name": "Philippe de Chauveron", "department": "Directing", "job": "Director", "credit_id": "5339b6f8c3a3680e70006518", "profile_path": null, "id": 225142}], "vote_average": 7.2, "runtime": 94}, "182219": {"poster_path": "/8XsytWmkZmF6QG1mFgKG4RkK1xj.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "With only 12 percent of its pupils obtaining their baccalaureate, Jules Ferry High School is the worst school in France. The Inspector of Schools has already exhausted all the conventional means to raise standards at the school and he has no choice but to take the advice of his deputy. It is a case of having to fight fire with fire: the worst pupils must be taught by the worst teachers...", "video": false, "id": 182219, "genres": [{"id": 35, "name": "Comedy"}], "title": "Serial Teachers", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2276778", "adult": false, "backdrop_path": "/dc46nZwoHAKmnfoR0TMrTlGMeel.jpg", "production_companies": [{"name": "UGC", "id": 581}], "release_date": "2013-04-17", "popularity": 0.000871890323546716, "original_title": "Les profs", "budget": 0, "cast": [{"name": "Christian Clavier", "character": "Cutiro / Serge Tirocul", "id": 28781, "credit_id": "52fe4c7d9251416c7511c16d", "cast_id": 1, "profile_path": "/1VB7ls5ibtsklup67akj6bLbgp.jpg", "order": 0}, {"name": "Isabelle Nanty", "character": "Gladys", "id": 2412, "credit_id": "52fe4c7d9251416c7511c171", "cast_id": 2, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 1}, {"name": "Pierre-Fran\u00e7ois Martin-Laval", "character": "Antoine Polochon", "id": 35968, "credit_id": "52fe4c7d9251416c7511c175", "cast_id": 3, "profile_path": "/fPjMhzeUglQVqWZptkhnCfO7ust.jpg", "order": 2}, {"name": "Kev Adams", "character": "Boulard", "id": 1165008, "credit_id": "52fe4c7d9251416c7511c179", "cast_id": 4, "profile_path": "/TxOlDGfAdsfoRd3ZmzVokK524B.jpg", "order": 3}, {"name": "Fran\u00e7ois Morel", "character": "L'inspecteur adjoint", "id": 77929, "credit_id": "52fe4c7d9251416c7511c17d", "cast_id": 5, "profile_path": "/k22m9DV2EjTho6IL3TMpVeIU2Bf.jpg", "order": 4}, {"name": "Arnaud Ducret", "character": "Eric, prof d'EPS", "id": 1069634, "credit_id": "52fe4c7d9251416c7511c181", "cast_id": 6, "profile_path": "/liOdX5nSYxxtKsIbVM5fqAYBN4B.jpg", "order": 5}, {"name": "Stefi Celma", "character": "Amina, prof de Fran\u00e7ais", "id": 1145003, "credit_id": "52fe4c7d9251416c7511c185", "cast_id": 7, "profile_path": "/yer0PSxVCrXEfNAlYyVGRcp3J1z.jpg", "order": 6}, {"name": "Raymond Bouchard", "character": "Maurice, prof de Philo", "id": 46275, "credit_id": "52fe4c7d9251416c7511c189", "cast_id": 8, "profile_path": "/kgu87sGNqOGa0O4EbujWGZhThlX.jpg", "order": 7}, {"name": "Fred Tousch", "character": "Albert, prof de chimie", "id": 1169052, "credit_id": "52fe4c7e9251416c7511c1c9", "cast_id": 19, "profile_path": null, "order": 8}], "directors": [{"name": "Pierre-Fran\u00e7ois Martin-Laval", "department": "Directing", "job": "Director", "credit_id": "52fe4c7d9251416c7511c18f", "profile_path": "/fPjMhzeUglQVqWZptkhnCfO7ust.jpg", "id": 35968}], "vote_average": 5.1, "runtime": 88}, "41210": {"poster_path": "/cikOGh4sUstWitAS3BTEpXsJ1vr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49830607, "overview": "An unmarried 40-year-old woman turns to a turkey baster in order to become pregnant. Seven years later, she reunites with her best friend, who has been living with a secret: he replaced her preferred sperm sample with his own.", "video": false, "id": 41210, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Switch", "tagline": "The most unexpected comedy ever conceived.", "vote_count": 179, "homepage": "http://theswitch-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0889573", "adult": false, "backdrop_path": "/4UnmIN6aJhUiCIw8JlQuxUJ9vzR.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Bona Fide Productions", "id": 2570}, {"name": "Echo Films", "id": 7382}], "release_date": "2010-05-11", "popularity": 1.11761579727789, "original_title": "The Switch", "budget": 19000000, "cast": [{"name": "Jason Bateman", "character": "Wally Mars", "id": 23532, "credit_id": "52fe45bcc3a36847f80d7815", "cast_id": 1, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Kassie Larson", "id": 4491, "credit_id": "52fe45bcc3a36847f80d7819", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Jeff Goldblum", "character": "Leonard", "id": 4785, "credit_id": "52fe45bcc3a36847f80d781d", "cast_id": 3, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Debbie", "id": 3196, "credit_id": "52fe45bcc3a36847f80d7821", "cast_id": 4, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Todd Louiso", "character": "Artie", "id": 3230, "credit_id": "52fe45bcc3a36847f80d7825", "cast_id": 6, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 4}, {"name": "Jason Jones", "character": "Climbing Wall Guide", "id": 185805, "credit_id": "530023cec3a368400f1b1253", "cast_id": 11, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 5}, {"name": "Scott Elrod", "character": "Declan", "id": 108532, "credit_id": "530023e1c3a3683ff21a0b79", "cast_id": 12, "profile_path": "/b7nV383fAzIcygOAsuvcDukJlK1.jpg", "order": 6}, {"name": "Patrick Wilson", "character": "Roland", "id": 17178, "credit_id": "530023eac3a3683fe21b55d3", "cast_id": 13, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 7}, {"name": "Kelli Barrett", "character": "Jessica", "id": 968851, "credit_id": "530023f7c3a3683ffe1bfaf1", "cast_id": 14, "profile_path": "/hAzAP92FgiGXJgvrl8lWuqN23lT.jpg", "order": 8}, {"name": "Thomas Robinson", "character": "Sebastian", "id": 965224, "credit_id": "53002406c3a3683fcf1cc2a3", "cast_id": 15, "profile_path": "/duhdLnjGG7s05T4xjXDu7ISYKeN.jpg", "order": 9}, {"name": "Victor Pagan", "character": "Knit Hat Guy", "id": 59280, "credit_id": "5335534bc3a3682ab50046ba", "cast_id": 16, "profile_path": "/5HEuGK2u5cA3DK30sySmxwJHCDo.jpg", "order": 10}, {"name": "Jeremy J. Mohler", "character": "Party Guest #2", "id": 1305257, "credit_id": "53355376c3a3682ab50046c0", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Will Swenson", "character": "Actor on Stage", "id": 1022885, "credit_id": "5335538ac3a3680a1e00411a", "cast_id": 18, "profile_path": "/tDjLvhLQilz2lqlYR3qQC8uT80g.jpg", "order": 12}, {"name": "Edward James Hyland", "character": "Man in Theater", "id": 91453, "credit_id": "5335539ec3a3682a870048fc", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Caroline Dhavernas", "character": "Pauline", "id": 31383, "credit_id": "533553abc3a3682aac00464f", "cast_id": 20, "profile_path": "/nLj1IbeBb3aYPcfJKMuE0JHzhcy.jpg", "order": 14}, {"name": "Brian Podnos", "character": "Waiter", "id": 1305264, "credit_id": "533553c2c3a3682a9c0045a0", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "Josh Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d782b", "profile_path": "/g316UVVZWfD4cXQpxYirnhgop7U.jpg", "id": 60922}, {"name": "Will Speck", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d7831", "profile_path": "/mrTboVxXv4LnVuPoBdQvU1cMD4l.jpg", "id": 60923}], "vote_average": 5.8, "runtime": 101}, "41211": {"poster_path": "/fECaEIjjvozG1dGoi6cgTevIae5.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "MC", "name": "Monaco"}], "revenue": 34900000, "overview": "Alex and his sister run a business designed to break up relationships. They are hired by a rich man to break up the wedding of his daughter. The only problem is that they only have one week to do so.", "video": false, "id": 41211, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Heartbreaker", "tagline": "He's broken every heart except his own... until now.", "vote_count": 65, "homepage": "http://www.heartbreakermovie.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1465487", "adult": false, "backdrop_path": "/hM11OEjhNdWzohu77wN7T0vxAK9.jpg", "production_companies": [{"name": "Quad Productions", "id": 7038}, {"name": "Script Associ\u00e9s", "id": 19957}, {"name": "Focus Features", "id": 17301}, {"name": "Chaocorp", "id": 7766}, {"name": "A Plus Image", "id": 19959}, {"name": "Banque Populaire Images 10", "id": 12609}, {"name": "Orange Cin\u00e9ma S\u00e9ries", "id": 11620}], "release_date": "2010-03-17", "popularity": 0.493264081282725, "original_title": "L'arnacoeur", "budget": 42041529, "cast": [{"name": "Romain Duris", "character": "Alex Lippi", "id": 17497, "credit_id": "52fe45bcc3a36847f80d787f", "cast_id": 5, "profile_path": "/buU0mFOX7PvSr50F6H8SrN71W08.jpg", "order": 0}, {"name": "Vanessa Paradis", "character": "Juliette Van Der Beck", "id": 65007, "credit_id": "52fe45bcc3a36847f80d7883", "cast_id": 6, "profile_path": "/zPwmGEC7nN43bRIb4eovuTWEE18.jpg", "order": 1}, {"name": "Julie Ferrier", "character": "M\u00e9lanie", "id": 54292, "credit_id": "52fe45bcc3a36847f80d7887", "cast_id": 7, "profile_path": "/lDyve5gGt5KM4hWLeCCYY6XNUcg.jpg", "order": 2}, {"name": "Fran\u00e7ois Damiens", "character": "Marc", "id": 24041, "credit_id": "52fe45bcc3a36847f80d788f", "cast_id": 9, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 3}, {"name": "Andrew Lincoln", "character": "Jonathan Alcott", "id": 7062, "credit_id": "52fe45bcc3a36847f80d788b", "cast_id": 8, "profile_path": "/b4KqT3vy3MFurEp7q2ni1PRyDxL.jpg", "order": 4}, {"name": "H\u00e9l\u00e9na Noguerra", "character": "Sophie", "id": 587159, "credit_id": "52fe45bcc3a36847f80d7893", "cast_id": 10, "profile_path": "/lc85sxTP2Y5O83QQHpUD0Y5IoTH.jpg", "order": 5}, {"name": "Jacques Frantz", "character": "Van Der Beck", "id": 39884, "credit_id": "52fe45bcc3a36847f80d7897", "cast_id": 11, "profile_path": "/sxXM4WGSwqbjjxRJ7JqaP6qabmG.jpg", "order": 6}, {"name": "Jean-Yves Lafesse", "character": "Dutour", "id": 544566, "credit_id": "52fe45bcc3a36847f80d789b", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Jean-Marie Paris", "character": "Goran", "id": 1291809, "credit_id": "52fe45bcc3a36847f80d789f", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Elodie Frenck", "character": "Karine", "id": 42718, "credit_id": "52fe45bcc3a36847f80d78a3", "cast_id": 14, "profile_path": "/dMJTta8394RTt4MzqErwNHu2V96.jpg", "order": 9}, {"name": "Tarek Boudali", "character": "Le manager Montecarlo Bay", "id": 1186075, "credit_id": "52fe45bcc3a36847f80d78a7", "cast_id": 15, "profile_path": "/kxZDvHShgONqXNyZzdeOGm4Wq47.jpg", "order": 10}, {"name": "Philippe Lacheau", "character": "Le compagnon (as Philippe Lacheau dit \u00ab Fifi \u00bb)", "id": 1186076, "credit_id": "52fe45bcc3a36847f80d78ab", "cast_id": 16, "profile_path": "/c7uygPak9MLfOa6WCTv46ir7muW.jpg", "order": 11}, {"name": "Julien Arruti", "character": "Fr\u00e8re de Florence", "id": 1291810, "credit_id": "52fe45bcc3a36847f80d78af", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Geoffrey Bateman", "character": "Le beau-p\u00e8re de Juliette", "id": 185391, "credit_id": "52fe45bcc3a36847f80d78b3", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Pascal Chaumeil", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d7869", "profile_path": null, "id": 8392}], "vote_average": 6.8, "runtime": 105}, "252": {"poster_path": "/b94qXd1FcIwgzv0NYMUe2bjrzJR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4000000, "overview": "Eccentric candy man Willy Wonka prompts a worldwide frenzy when he announces that golden tickets hidden inside five of his delicious candy bars will admit their lucky holders into his top-secret confectionary. But does Wonka have an agenda hidden amid a world of Oompa Loompas and chocolate rivers?", "video": false, "id": 252, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Willy Wonka & the Chocolate Factory", "tagline": "It's Scrumdiddlyumptious!", "vote_count": 218, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0067992", "adult": false, "backdrop_path": "/nyqiCFF3pjcdwG2KmOwvM6CCLKA.jpg", "production_companies": [{"name": "David L. Wolper Productions", "id": 3434}], "release_date": "1971-06-29", "popularity": 0.639126665162848, "original_title": "Willy Wonka & the Chocolate Factory", "budget": 2900000, "cast": [{"name": "Gene Wilder", "character": "Willy Wonka", "id": 3460, "credit_id": "52fe422dc3a36847f800a019", "cast_id": 11, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 0}, {"name": "Jack Albertson", "character": "Grandpa Joe", "id": 3461, "credit_id": "52fe422dc3a36847f800a01d", "cast_id": 12, "profile_path": "/k9oqFrLhgd6v1hGG8Jg2mluM1XL.jpg", "order": 1}, {"name": "Peter Ostrum", "character": "Charlie Bucket", "id": 3462, "credit_id": "52fe422dc3a36847f800a021", "cast_id": 13, "profile_path": "/2P3JRXYxuY0Ynoj1uVnX9zqlZCg.jpg", "order": 2}, {"name": "Roy Kinnear", "character": "Mr. Henry Salt", "id": 3463, "credit_id": "52fe422dc3a36847f800a025", "cast_id": 14, "profile_path": "/llKNI5XTjF35oy22cdFO4bhkxYG.jpg", "order": 3}, {"name": "Julie Dawn Cole", "character": "Veruca Salt", "id": 3464, "credit_id": "52fe422dc3a36847f800a029", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Leonard Stone", "character": "Mr. Sam Beauregarde", "id": 3467, "credit_id": "52fe422dc3a36847f800a02d", "cast_id": 16, "profile_path": "/2tastJvF2MWzj1yhbnEI88ZH9a.jpg", "order": 5}, {"name": "Denise Nickerson", "character": "Violet Beauregarde", "id": 3468, "credit_id": "52fe422dc3a36847f800a031", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Nora Denney", "character": "Mrs. Teevee", "id": 3469, "credit_id": "52fe422dc3a36847f800a035", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Paris Themmen", "character": "Mike Teevee", "id": 3470, "credit_id": "52fe422dc3a36847f800a039", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Ursula Reit", "character": "Mrs. Gloop", "id": 3471, "credit_id": "52fe422dc3a36847f800a03d", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Diana Sowle", "character": "Mrs. Bucket", "id": 3473, "credit_id": "52fe422dc3a36847f800a041", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Aubrey Woods", "character": "Bill, Candy Shop Owner", "id": 3474, "credit_id": "52fe422dc3a36847f800a045", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "David Battley", "character": "Mr. Turkentine", "id": 3475, "credit_id": "52fe422dc3a36847f800a049", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Peter Capell", "character": "The Tinker", "id": 3476, "credit_id": "52fe422dc3a36847f800a04d", "cast_id": 24, "profile_path": "/kwAOpbL1SeDxvQXkKLDkm8ZeTY0.jpg", "order": 13}, {"name": "Pat Coombs", "character": "Henrietta Salt", "id": 3478, "credit_id": "52fe422dc3a36847f800a051", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "G\u00fcnter Meisner", "character": "Mr. Slugworth", "id": 3617, "credit_id": "52fe422dc3a36847f800a067", "cast_id": 29, "profile_path": null, "order": 15}], "directors": [{"name": "Mel Stuart", "department": "Directing", "job": "Director", "credit_id": "52fe422dc3a36847f8009fe5", "profile_path": "/w1R95d86v3YDWDrAtpETSeMGF5X.jpg", "id": 3451}], "vote_average": 7.1, "runtime": 100}, "253": {"poster_path": "/xuuoqXxhUDS1o417edMilIvGa88.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JM", "name": "Jamaica"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161777836, "overview": "James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.", "video": false, "id": 253, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Live and Let Die", "tagline": "Roger Moore is James Bond.", "vote_count": 151, "homepage": "http://www.mgm.com/view/movie/1130/Live-and-Let-Die/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0070328", "adult": false, "backdrop_path": "/gY5D80kK6QBgHa8c9aL3tx0aTEb.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1973-07-05", "popularity": 1.03720508791402, "original_title": "Live and Let Die", "budget": 7000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe422ec3a36847f800a117", "cast_id": 19, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Yaphet Kotto", "character": "Kananga/Mr. Big", "id": 5050, "credit_id": "52fe422ec3a36847f800a11b", "cast_id": 20, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 1}, {"name": "Jane Seymour", "character": "Solitaire", "id": 10223, "credit_id": "52fe422ec3a36847f800a11f", "cast_id": 21, "profile_path": "/tBWYbLSieHshqVhy1EXlv12mBjs.jpg", "order": 2}, {"name": "Clifton James", "character": "Sheriff J.W. Pepper", "id": 10224, "credit_id": "52fe422ec3a36847f800a123", "cast_id": 22, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 3}, {"name": "Julius Harris", "character": "Tee Hee", "id": 6772, "credit_id": "52fe422ec3a36847f800a127", "cast_id": 23, "profile_path": "/vhyuxFmam4SQSjTOLPStOVYMgbb.jpg", "order": 4}, {"name": "Geoffrey Holder", "character": "Baron Samedi", "id": 10225, "credit_id": "52fe422ec3a36847f800a12b", "cast_id": 24, "profile_path": "/bmNg7Ld2H1V3Sqz2PmxvOJOof8z.jpg", "order": 5}, {"name": "David Hedison", "character": "Felix Leiter", "id": 10226, "credit_id": "52fe422ec3a36847f800a12f", "cast_id": 25, "profile_path": "/1Wp1EV1Kcpr85imqCEkFvqCMYDZ.jpg", "order": 6}, {"name": "Gloria Hendry", "character": "Rosie Carver", "id": 10227, "credit_id": "52fe422ec3a36847f800a133", "cast_id": 26, "profile_path": "/pjEOcZSMyVouzpCvVk9DyY43C5x.jpg", "order": 7}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe422ec3a36847f800a137", "cast_id": 27, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 8}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe422ec3a36847f800a13b", "cast_id": 28, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 9}, {"name": "Tommy Lane", "character": "Adam", "id": 10228, "credit_id": "5405a5dbc3a3685b74003bb8", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Earl Jolly Brown", "character": "Whisper", "id": 141270, "credit_id": "5405a5f2c3a36816af0034f0", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Lon Satton", "character": "Strutter", "id": 19617, "credit_id": "5405a608c3a3684366008313", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Madeline Smith", "character": "Miss Caruso", "id": 30577, "credit_id": "5405a64dc3a3684363007f7f", "cast_id": 32, "profile_path": "/3X8F6o4uPt7mrQvs66dkn1W9wiw.jpg", "order": 13}, {"name": "Roy Stewart", "character": "Quarrel", "id": 1350577, "credit_id": "54ad6a3bc3a3682870000025", "cast_id": 33, "profile_path": "/4b4vCgdVQLAghAWU785nuF0HVVv.jpg", "order": 14}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe422dc3a36847f800a0ad", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 5.9, "runtime": 121}, "254": {"poster_path": "/ueMFrWi2NTqvpDAUWh5lSewai8Q.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 550000000, "overview": "In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with leading lady Ann Darrow.", "video": false, "id": 254, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "King Kong", "tagline": "The eighth wonder of the world.", "vote_count": 583, "homepage": "http://movies.uip.de/kingkong/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0360717", "adult": false, "backdrop_path": "/lWnPz1EvXUWMvXK1plZMA1I2XMV.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "WingNut Films", "id": 11}, {"name": "Big Primate Pictures", "id": 68}, {"name": "MFPV Film", "id": 69}], "release_date": "2005-12-14", "popularity": 1.0637451159188, "original_title": "King Kong", "budget": 207000000, "cast": [{"name": "Naomi Watts", "character": "Ann Darrow", "id": 3489, "credit_id": "52fe422ec3a36847f800a19f", "cast_id": 5, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Jack Black", "character": "Carl Denham", "id": 70851, "credit_id": "52fe422ec3a36847f800a1a3", "cast_id": 6, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 1}, {"name": "Adrien Brody", "character": "Jack Driscoll", "id": 3490, "credit_id": "52fe422ec3a36847f800a1a7", "cast_id": 7, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Captain Englehorn", "id": 3491, "credit_id": "52fe422ec3a36847f800a1ab", "cast_id": 8, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Colin Hanks", "character": "Preston", "id": 3492, "credit_id": "52fe422ec3a36847f800a1af", "cast_id": 9, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 4}, {"name": "Andy Serkis", "character": "Kong/Lumpy", "id": 1333, "credit_id": "52fe422ec3a36847f800a1b3", "cast_id": 10, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 5}, {"name": "Evan Parke", "character": "Hayes", "id": 3493, "credit_id": "52fe422ec3a36847f800a1b7", "cast_id": 11, "profile_path": "/kHzILtL1BS7bGFuoTTufqt78sOD.jpg", "order": 6}, {"name": "Jamie Bell", "character": "Jimmy", "id": 478, "credit_id": "52fe422ec3a36847f800a1bb", "cast_id": 12, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 7}, {"name": "Lobo Chan", "character": "Choy", "id": 3494, "credit_id": "52fe422ec3a36847f800a1bf", "cast_id": 13, "profile_path": "/hxZPJaRW6SGhc5MFXuPd3LQlaMz.jpg", "order": 8}, {"name": "John Sumner", "character": "Herb", "id": 3495, "credit_id": "52fe422ec3a36847f800a1c3", "cast_id": 14, "profile_path": "/9b3RL7HRtPeqUrnCkO12bevK85a.jpg", "order": 9}, {"name": "Craig Hall", "character": "Mike", "id": 3496, "credit_id": "52fe422ec3a36847f800a1c7", "cast_id": 15, "profile_path": "/e18KUAquVXJcEl9uPC0InR9BLyu.jpg", "order": 10}, {"name": "Kyle Chandler", "character": "Bruce Baxter", "id": 3497, "credit_id": "52fe422ec3a36847f800a1cb", "cast_id": 16, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 11}, {"name": "William Johnson", "character": "Manny", "id": 1166385, "credit_id": "52fe422ec3a36847f800a239", "cast_id": 36, "profile_path": "/b5cYHL0BJ8DlMML18ZlrSF6ZlMp.jpg", "order": 12}, {"name": "David Pittu", "character": "Weston", "id": 3541, "credit_id": "52fe422ec3a36847f800a235", "cast_id": 35, "profile_path": "/8LIOzw0A9K3D0XKdtuamQZx1bES.jpg", "order": 13}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe422ec3a36847f800a189", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.3, "runtime": 187}, "41215": {"poster_path": "/t5ltTHRIyr4ARgyNIb7DytMEOLQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 242764, "overview": "As the plague decimates medieval Europe, rumors circulate of a village immune from the plague. There is talk of a necromancer who leads the village and is able to raise the dead. A fearsome knight joined by a cohort of soldiers and a young monk are charged by the church to investigate. Their journey is filled with danger, but it's upon entering the village that their true horror begins.", "video": false, "id": 41215, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Black Death", "tagline": "In an age of darkness one man will face the ultimate battle against evil.", "vote_count": 51, "homepage": "http://www.blackdeathmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1181791", "adult": false, "backdrop_path": "/qqmi8TAsSSOdi1pgHYtTA05W7OB.jpg", "production_companies": [{"name": "Egoli Tossell Film AG", "id": 2254}, {"name": "The Post Republic", "id": 11009}, {"name": "Ecosse Films", "id": 1267}, {"name": "Zephyr Films", "id": 16923}, {"name": "HanWay Films", "id": 2395}], "release_date": "2010-06-11", "popularity": 0.449548861414505, "original_title": "Black Death", "budget": 0, "cast": [{"name": "Sean Bean", "character": "Ulric", "id": 48, "credit_id": "52fe45bcc3a36847f80d7981", "cast_id": 2, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 0}, {"name": "Eddie Redmayne", "character": "Osmund", "id": 37632, "credit_id": "52fe45bcc3a36847f80d7985", "cast_id": 4, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 2}, {"name": "Carice van Houten", "character": "Langiva", "id": 23229, "credit_id": "52fe45bcc3a36847f80d7989", "cast_id": 5, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 3}, {"name": "Kimberley Nixon", "character": "Averill", "id": 124828, "credit_id": "52fe45bcc3a36847f80d798d", "cast_id": 6, "profile_path": "/frdqvlqCWK76ERBB9cMVeRCKcHv.jpg", "order": 4}, {"name": "John Lynch", "character": "Wolfstan", "id": 28743, "credit_id": "52fe45bcc3a36847f80d7991", "cast_id": 7, "profile_path": "/2OHQ4Hck4QlCqDjQ4mK6OMW65n3.jpg", "order": 5}, {"name": "Tim McInnerny", "character": "Hob", "id": 41043, "credit_id": "52fe45bcc3a36847f80d7995", "cast_id": 8, "profile_path": "/wxO1c0e5N1WHn2wLHmEbvrfqnnX.jpg", "order": 6}, {"name": "Andy Nyman", "character": "Dalywag", "id": 22810, "credit_id": "52fe45bcc3a36847f80d7999", "cast_id": 9, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 7}, {"name": "Daniel Steiner", "character": "Monk", "id": 1064525, "credit_id": "52fe45bcc3a36847f80d79a3", "cast_id": 11, "profile_path": "/o4IfD5CslMvI0WKUYzOHTKBuBCw.jpg", "order": 8}, {"name": "David Warner", "character": "Abbot", "id": 2076, "credit_id": "52fe45bcc3a36847f80d79a7", "cast_id": 12, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 9}, {"name": "Tobias Kasimirowicz", "character": "Grimbold", "id": 69094, "credit_id": "52fe45bcc3a36847f80d79ab", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Emun Elliott", "character": "Swire", "id": 228968, "credit_id": "52fe45bcc3a36847f80d79af", "cast_id": 14, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 11}, {"name": "Tygo Gernandt", "character": "Ivo", "id": 43646, "credit_id": "53a2fb78c3a36832080016d1", "cast_id": 30, "profile_path": "/4JyTkQEbHf4RZBTwfGusmvQEUds.jpg", "order": 12}, {"name": "Jamie Ballard", "character": "Griff", "id": 1321621, "credit_id": "53a2fba9c3a36831f9001708", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Keith Dunphy", "character": "Witch Finder", "id": 1278499, "credit_id": "53a2fc11c3a36831f9001715", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Marianne Graffam", "character": "Suspected Witch", "id": 84067, "credit_id": "53a2fc65c3a36831f9001721", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Ines Marie Westernstr\u00f6er", "character": "Bel", "id": 1331980, "credit_id": "53a2fca1c3a36832020016a3", "cast_id": 34, "profile_path": null, "order": 16}], "directors": [{"name": "Christopher Smith", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d797d", "profile_path": null, "id": 41041}], "vote_average": 5.7, "runtime": 102}, "41216": {"poster_path": "/mgkRaVtdrOAZT2cFZi9Ihh9QpuL.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140073390, "overview": "Soren, a young barn owl, is kidnapped by owls of St. Aggie's, ostensibly an orphanage, where owlets are brainwashed into becoming soldiers. He and his new friends escape to the island of Ga'Hoole, to assist its noble, wise owls who fight the army being created by the wicked rulers of St. Aggie's. The film is based on the first three books in the series.", "video": false, "id": 41216, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Legend of the Guardians: The Owls of Ga'Hoole", "tagline": "On his way to finding a legend...he will become one.", "vote_count": 257, "homepage": "http://legendoftheguardians.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1219342", "adult": false, "backdrop_path": "/6lwiZ1v5n3F0oY9ouCLlI9LgRRm.jpg", "production_companies": [{"name": "Animal Logic", "id": 8089}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2010-09-24", "popularity": 1.11990766829067, "original_title": "Legend of the Guardians: The Owls of Ga'Hoole", "budget": 80000000, "cast": [{"name": "Emily Barclay", "character": "Gylfie (voice)", "id": 15577, "credit_id": "52fe45bcc3a36847f80d7a25", "cast_id": 1, "profile_path": "/pkG190C7XoMN9rCASsgHE0Avjtc.jpg", "order": 0}, {"name": "Abbie Cornish", "character": "Otulissa (voice)", "id": 37260, "credit_id": "52fe45bcc3a36847f80d7a29", "cast_id": 2, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 1}, {"name": "Essie Davis", "character": "Marella (voice)", "id": 33449, "credit_id": "52fe45bcc3a36847f80d7a2d", "cast_id": 3, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Metalbeak (voice)", "id": 33192, "credit_id": "52fe45bcc3a36847f80d7a43", "cast_id": 7, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Deborra-Lee Furness", "character": "Barran (voice)", "id": 28745, "credit_id": "52fe45bcc3a36847f80d7a47", "cast_id": 8, "profile_path": "/f851hK50kZ98JOKO1cPO3fGYFSS.jpg", "order": 4}, {"name": "Ryan Kwanten", "character": "Kludd (voice)", "id": 133212, "credit_id": "52fe45bcc3a36847f80d7a4b", "cast_id": 9, "profile_path": "/gbAhDfCKKUtGJhQJIukkiZGgQBW.jpg", "order": 5}, {"name": "Anthony LaPaglia", "character": "Twilight (voice)", "id": 57829, "credit_id": "52fe45bcc3a36847f80d7a4f", "cast_id": 10, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 6}, {"name": "Helen Mirren", "character": "Nyra (voice)", "id": 15735, "credit_id": "52fe45bcc3a36847f80d7a53", "cast_id": 11, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 7}, {"name": "Sam Neill", "character": "Allomere (voice)", "id": 4783, "credit_id": "52fe45bcc3a36847f80d7a57", "cast_id": 12, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 8}, {"name": "Richard Roxburgh", "character": "Boron (voice)", "id": 12206, "credit_id": "52fe45bcc3a36847f80d7a5b", "cast_id": 13, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 9}, {"name": "Adrienne DeFaria", "character": "Eglantine (voice)", "id": 1077326, "credit_id": "52fe45bcc3a36847f80d7a89", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Sacha Horler", "character": "Strix Struma (voice)", "id": 79713, "credit_id": "52fe45bcc3a36847f80d7a8d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Bill Hunter", "character": "Bubo (voice)", "id": 23, "credit_id": "52fe45bcc3a36847f80d7a91", "cast_id": 23, "profile_path": "/fDYf8bxLtyy3vnSFX27QBe3mG8d.jpg", "order": 12}, {"name": "Miriam Margolyes", "character": "Mrs. Plithiver (voice)", "id": 6199, "credit_id": "52fe45bcc3a36847f80d7a95", "cast_id": 24, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 13}, {"name": "Barry Otto", "character": "Echidna (voice)", "id": 150536, "credit_id": "52fe45bcc3a36847f80d7a99", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Geoffrey Rush", "character": "Ezylryb (voice)", "id": 118, "credit_id": "52fe45bcc3a36847f80d7a9d", "cast_id": 26, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 15}, {"name": "Angus Sampson", "character": "Jutt (voice)", "id": 59117, "credit_id": "52fe45bcc3a36847f80d7aa1", "cast_id": 27, "profile_path": "/jbUAdNqytgyuPPpEBvM4onQWt3Q.jpg", "order": 16}, {"name": "Jim Sturgess", "character": "Soren (voice)", "id": 38941, "credit_id": "52fe45bcc3a36847f80d7aa5", "cast_id": 28, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 17}, {"name": "Hugo Weaving", "character": "Noctus / Grimble (voice)", "id": 1331, "credit_id": "52fe45bcc3a36847f80d7aa9", "cast_id": 29, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 18}, {"name": "David Wenham", "character": "Digger (voice)", "id": 1371, "credit_id": "52fe45bcc3a36847f80d7aad", "cast_id": 30, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 19}, {"name": "Leigh Whannell", "character": "Jatt (voice)", "id": 2128, "credit_id": "52fe45bcc3a36847f80d7ab1", "cast_id": 31, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 20}, {"name": "Gareth Young", "character": "Pete (voice)", "id": 1077327, "credit_id": "52fe45bcc3a36847f80d7ab5", "cast_id": 32, "profile_path": null, "order": 21}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d7a33", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.4, "runtime": 97}, "90369": {"poster_path": "/pnVbqegDYPfZjuhXUV3CMybAtgk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Tessa, a girl who is dying of leukaemia and tries to enjoy her remaining life as much as she possibly can.\r She compiles a list of things she'd like to do before passing away. Topping the list is her desire to lose her virginity.", "video": false, "id": 90369, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Now Is Good", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1937264", "adult": false, "backdrop_path": "/zWoPfrYoFE1SbimmuFi8DAOEQRM.jpg", "production_companies": [{"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2012-05-25", "popularity": 0.426309054957667, "original_title": "Now Is Good", "budget": 0, "cast": [{"name": "Dakota Fanning", "character": "Tessa Scott", "id": 501, "credit_id": "52fe48a69251416c750aee89", "cast_id": 2, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 0}, {"name": "Jeremy Irvine", "character": "Adam", "id": 225692, "credit_id": "52fe48a69251416c750aee8d", "cast_id": 3, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 1}, {"name": "Kaya Scodelario", "character": "Zoey", "id": 115150, "credit_id": "52fe48a69251416c750aee91", "cast_id": 4, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 2}, {"name": "Olivia Williams", "character": "Mother", "id": 11616, "credit_id": "52fe48a79251416c750aee95", "cast_id": 5, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Father", "id": 14887, "credit_id": "52fe48a79251416c750aee99", "cast_id": 6, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Rose Leslie", "character": "Fiona", "id": 1223793, "credit_id": "52fe48a79251416c750aee9d", "cast_id": 7, "profile_path": "/yWFmxrAfLtXePzVRatiAMv1KDQS.jpg", "order": 5}], "directors": [{"name": "Ol Parker", "department": "Directing", "job": "Director", "credit_id": "52fe48a69251416c750aee85", "profile_path": null, "id": 17510}], "vote_average": 7.0, "runtime": 103}, "196867": {"poster_path": "/hkvKhuUUgjJ4jrXKkvqoQ5JnQx5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Annie is a young, happy foster kid who's also tough enough to make her way on the streets of New York in 2014. Originally left by her parents as a baby with the promise that they'd be back for her someday, it's been a hard knock life ever since with her mean foster mom Miss Hannigan. But everything's about to change when the hard-nosed tycoon and New York mayoral candidate Will Stacks - advised by his brilliant VP, Grace and his shrewd and scheming campaign advisor, Guy - makes a thinly-veiled campaign move and takes her in. Stacks believes he's her guardian angel, but Annie's self-assured nature and bright, sun-will-come-out-tomorrow outlook on life just might mean it's the other way around.", "video": false, "id": 196867, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Annie", "tagline": "It's a Hard Knock Life", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1823664", "adult": false, "backdrop_path": "/hqNff5zochp9hzo299wC4Uoy8M9.jpg", "production_companies": [{"name": "Overbrook Entertainment", "id": 12485}, {"name": "Sony Pictures Entertainment (SPE)", "id": 7431}], "release_date": "2014-12-19", "popularity": 3.6590924714178, "original_title": "Annie", "budget": 0, "cast": [{"name": "Quvenzhan\u00e9 Wallis", "character": "Annie Beckett", "id": 1055235, "credit_id": "52fe4d3c9251416c9110f439", "cast_id": 6, "profile_path": "/khaGuAENEdm1gnfszBJjyGuN0jl.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "William \"Will\" Stacks", "id": 134, "credit_id": "52fe4d3c9251416c9110f43d", "cast_id": 7, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Grace Farell", "id": 9827, "credit_id": "531754c4c3a36813a60029dd", "cast_id": 8, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Cameron Diaz", "character": "Miss Hannigan", "id": 6941, "credit_id": "531754d4c3a36813c20029d8", "cast_id": 9, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 3}, {"name": "Bobby Cannavale", "character": "Guy", "id": 21127, "credit_id": "54fc3b8d9251413aa000448a", "cast_id": 10, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 4}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Nash", "id": 31164, "credit_id": "54fc3ba59251412329001c34", "cast_id": 11, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 5}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe4d3c9251416c9110f41d", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.4, "runtime": 119}, "8452": {"poster_path": "/6pBUekwhnjW99V0cLphx7dZE2Wx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34543701, "overview": "Futuristic action about a man who meets a clone of himself and stumbles into a grand conspiracy about clones taking over the world.", "video": false, "id": 8452, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The 6th Day", "tagline": "Are You Who You Think You Are", "vote_count": 149, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0216216", "adult": false, "backdrop_path": "/s6bKy6vSDy8qJ76qLw7cSX4yooG.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Phoenix Pictures", "id": 11317}], "release_date": "2000-11-17", "popularity": 1.1701367726147, "original_title": "The 6th Day", "budget": 82000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Adam Gibson", "id": 1100, "credit_id": "52fe44aac3a36847f80a32b1", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Michael Rapaport", "character": "Hank Morgan", "id": 4688, "credit_id": "52fe44aac3a36847f80a32b5", "cast_id": 2, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 1}, {"name": "Tony Goldwyn", "character": "Michael Drucker", "id": 3417, "credit_id": "52fe44aac3a36847f80a32b9", "cast_id": 3, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 2}, {"name": "Michael Rooker", "character": "Robert Marshall", "id": 12132, "credit_id": "52fe44aac3a36847f80a32c3", "cast_id": 5, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 3}, {"name": "Sarah Wynter", "character": "Talia Elsworth", "id": 41819, "credit_id": "52fe44aac3a36847f80a32c7", "cast_id": 6, "profile_path": "/5eRmuhTtlhJBOmOl5Cam2eBcAHW.jpg", "order": 4}, {"name": "Robert Duvall", "character": "Dr. Griffin Weir", "id": 3087, "credit_id": "52fe44aac3a36847f80a32cb", "cast_id": 7, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Natalie", "id": 19957, "credit_id": "52fe44aac3a36847f80a32db", "cast_id": 10, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}, {"name": "Taylor-Anne Reid", "character": "Clara", "id": 378849, "credit_id": "52fe44aac3a36847f80a32df", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Andrew McIlroy", "character": "Scott Moore", "id": 158456, "credit_id": "52fe44aac3a36847f80a32e3", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Alexandra Castillo", "character": "Reporter", "id": 190944, "credit_id": "52fe44aac3a36847f80a32e7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Steve Bacic", "character": "Johnny Phoenix", "id": 33355, "credit_id": "547dd4889251412d7c005ca3", "cast_id": 64, "profile_path": "/pQEALNHNqEs1je9rFCA59kif3Rz.jpg", "order": 10}, {"name": "Wanda Cannon", "character": "Katherine Weir", "id": 117085, "credit_id": "547dd4b4c3a3685afd005bca", "cast_id": 65, "profile_path": "/btdp9evoMcWO7V6oIiwa2QEjsv0.jpg", "order": 11}], "directors": [{"name": "Roger Spottiswoode", "department": "Directing", "job": "Director", "credit_id": "52fe44aac3a36847f80a32bf", "profile_path": "/hH8tIBh0RI7VwI4jQgphtB0qABR.jpg", "id": 1724}], "vote_average": 5.6, "runtime": 123}, "98566": {"poster_path": "/oDL2ryJ0sV2bmjgshVgJb3qzvwp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 477200000, "overview": "The city needs heroes. Darkness has settled over New York City as Shredder and his evil Foot Clan have an iron grip on everything from the police to the politicians. The future is grim until four unlikely outcast brothers rise from the sewers and discover their destiny as Teenage Mutant Ninja Turtles. The Turtles must work with fearless reporter April and her wise-cracking cameraman Vern Fenwick to save the city and unravel Shredder's diabolical plan.", "video": false, "id": 98566, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Teenage Mutant Ninja Turtles", "tagline": "Mysterious. Dangerous. Reptilious. You've never seen heroes like this.", "vote_count": 795, "homepage": "http://www.teenagemutantninjaturtlesmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1291150", "adult": false, "backdrop_path": "/OqCXGt5nl1cHPeotxCDvXLLe6p.jpg", "production_companies": [{"name": "Nickelodeon Movies", "id": 2348}, {"name": "Paramount Pictures", "id": 4}, {"name": "Platinum Dunes", "id": 2481}], "release_date": "2014-08-08", "popularity": 8.53317228142136, "original_title": "Teenage Mutant Ninja Turtles", "budget": 125000000, "cast": [{"name": "Megan Fox", "character": "April O'Neil", "id": 19537, "credit_id": "52fe4a199251416c750dd9db", "cast_id": 12, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 0}, {"name": "Will Arnett", "character": "Vernon Fenwick", "id": 21200, "credit_id": "52fe4a199251416c750dd9ef", "cast_id": 17, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 1}, {"name": "William Fichtner", "character": "Eric Sacks", "id": 886, "credit_id": "52fe4a199251416c750dd9f7", "cast_id": 19, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 2}, {"name": "Alan Ritchson", "character": "Raphael", "id": 64295, "credit_id": "52fe4a199251416c750dd9df", "cast_id": 13, "profile_path": "/aCyp11i8yTFqa8vOAksarDkRfR7.jpg", "order": 3}, {"name": "Noel Fisher", "character": "Michelangelo", "id": 80352, "credit_id": "52fe4a199251416c750dd9e3", "cast_id": 14, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 4}, {"name": "Pete Ploszek", "character": "Leonardo", "id": 1163622, "credit_id": "52fe4a199251416c750dd9eb", "cast_id": 16, "profile_path": "/wFnyDjQkPURu8qjLpqnYoYzs2Dc.jpg", "order": 5}, {"name": "Johnny Knoxville", "character": "Leonardo (voice)", "id": 9656, "credit_id": "53f98be1c3a3687352002750", "cast_id": 24, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 6}, {"name": "Jeremy Howard", "character": "Donatello", "id": 15034, "credit_id": "52fe4a199251416c750dd9e7", "cast_id": 15, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 7}, {"name": "Danny Woodburn", "character": "Master Splinter", "id": 13645, "credit_id": "52fe4a199251416c750dd9f3", "cast_id": 18, "profile_path": "/mT7jSNAoZjB7zlRhWxcnRrFla7d.jpg", "order": 8}, {"name": "Tony Shalhoub", "character": "Splinter (voice)", "id": 4252, "credit_id": "53f98bffc3a36873580026e6", "cast_id": 25, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 9}, {"name": "Tohoru Masamune", "character": "Shredder", "id": 173212, "credit_id": "53f98c13c3a368735e0026ed", "cast_id": 26, "profile_path": "/hCevJsAh0RByhKzRZwrGXlW64Oo.jpg", "order": 10}, {"name": "Whoopi Goldberg", "character": "Bernadette Thompson", "id": 2395, "credit_id": "52fe4a199251416c750dd9fb", "cast_id": 21, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 11}, {"name": "Minae Noji", "character": "Karai", "id": 177525, "credit_id": "530029bd9251416ad81ceb1e", "cast_id": 23, "profile_path": "/AhG78OBpLJJP59U4PQMQAa9zzFU.jpg", "order": 12}, {"name": "Abby Elliott", "character": "Taylor", "id": 1240486, "credit_id": "52fe4a199251416c750dd9ff", "cast_id": 22, "profile_path": "/pYjlIPsmbkI5A6obFcLSkaZxU8.jpg", "order": 13}, {"name": "Madison Mason", "character": "Councilman", "id": 118756, "credit_id": "53f98c36c3a368735b00272a", "cast_id": 27, "profile_path": "/t3FdfHpAVx7wYcZFWk1WmowsKBv.jpg", "order": 14}, {"name": "Derek Mears", "character": "Dojo Ninja", "id": 51300, "credit_id": "53f98c48c3a3687355002884", "cast_id": 28, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 15}, {"name": "Malina Weissman", "character": "Young April O'Neil", "id": 1394686, "credit_id": "548149569251416e7e0052ce", "cast_id": 36, "profile_path": "/zrQ2ZkR4ioXw1QwyAguM77va2D7.jpg", "order": 16}, {"name": "Taran Killam", "character": "McNaughton", "id": 1213573, "credit_id": "54b3f3c3c3a368783b000149", "cast_id": 37, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 17}, {"name": "K. Todd Freeman", "character": "Dr. Baxter Stockman", "id": 143328, "credit_id": "54b3f508925141746c0062d0", "cast_id": 38, "profile_path": "/2L7Qh4hA2dsCIPZAVfgerax7i2q.jpg", "order": 18}, {"name": "Paul Fitzgerald", "character": "Dr. O'Neil", "id": 1232623, "credit_id": "54b3f6f5c3a368094e0071a4", "cast_id": 39, "profile_path": "/Wb6Qzm4r95vjUHNmY7l8SoTyAU.jpg", "order": 19}, {"name": "Venida Evans", "character": "Subway Hostage", "id": 1232607, "credit_id": "54b3fa0a9251417472006c38", "cast_id": 40, "profile_path": "/jAV8n1n0uIvRnYsL0UvjmT3I82h.jpg", "order": 20}, {"name": "Mikal Vega", "character": "Sacks Bodyguard", "id": 1412782, "credit_id": "54b3fb8f92514115e1000270", "cast_id": 41, "profile_path": "/vPmQPAWRCbxGfM4aN3RIiTOnQLX.jpg", "order": 21}, {"name": "Harley Pasternak", "character": "Himself", "id": 1412784, "credit_id": "54b3fd17c3a368028700192b", "cast_id": 42, "profile_path": "/A9IeK4LkuwhQfDfCH2CrN2dH7uZ.jpg", "order": 22}, {"name": "Braeson Herold", "character": "Reporter", "id": 1412785, "credit_id": "54b3fec892514114a200418c", "cast_id": 43, "profile_path": "/qhipjPiGHqeB69kzIug494zOfGA.jpg", "order": 23}, {"name": "Chris Wylde", "character": "Reporter", "id": 1233909, "credit_id": "54b3ffbcc3a368094e007259", "cast_id": 44, "profile_path": "/k8GeKsnKyHxaYQRW9N3JOpp3Nvi.jpg", "order": 24}, {"name": "Chance Kelly", "character": "Mr. Rivetti", "id": 17194, "credit_id": "54b40067c3a3680940006f51", "cast_id": 45, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 25}, {"name": "Rick Chambers", "character": "News Anchor", "id": 1412789, "credit_id": "54b4014cc3a368094e007273", "cast_id": 46, "profile_path": "/mqmyYDML2mdHZgjtOYc4y0vsi8W.jpg", "order": 26}, {"name": "Leyna Nguyen", "character": "News Anchor", "id": 1215973, "credit_id": "54b402d5c3a368094e00728b", "cast_id": 47, "profile_path": "/oNBDs5GFG83IiwTfwODqs9ZOdsh.jpg", "order": 27}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe4a199251416c750dd99b", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 6.1, "runtime": 101}, "98567": {"poster_path": "/qUo6fIvNPRZTIBOT4vTSFi3pWHP.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Asian Hawk (Jackie Chan) leads a mercenary team to recover several lost artifacts from the Old Summer Palace, the bronze heads of the 12 Chinese Zodiac animals which were sacked by the French and British armies from the imperial Summer Palace in Beijing in 1860. Assisted by a Chinese student and a Parisian lady, Hawk stops at nothing to accomplish the mission.", "video": false, "id": 98567, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Chinese Zodiac", "tagline": "His mission is to recover their heads, before they take his", "vote_count": 129, "homepage": "http://hbpictures.ayomovie.com/12shengxiao//", "belongs_to_collection": {"backdrop_path": "/mQIeZScwbZx35bnQsZFUVFdvq.jpg", "poster_path": "/3Uy9OGhej5jq9bCvKJNjmdjOibN.jpg", "id": 146136, "name": "Armour of God Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1424310", "adult": false, "backdrop_path": "/fb2JuqsTqub0fm6akn3mNjK9KWT.jpg", "production_companies": [{"name": "JCE Movies", "id": 5649}, {"name": "Emperor Motion Pictures", "id": 2726}], "release_date": "2012-12-20", "popularity": 0.772107239359007, "original_title": "Chinese Zodiac", "budget": 48000000, "cast": [{"name": "Jackie Chan", "character": "Jackie / Asian Hawk", "id": 18897, "credit_id": "52fe4a199251416c750dda33", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Yao Xing-Tong", "character": "Coco", "id": 1110519, "credit_id": "52fe4a199251416c750dda65", "cast_id": 17, "profile_path": "/oOh5XmkVqVZ0IwzIA1wrfWF7HQ1.jpg", "order": 1}, {"name": "Shu Qi", "character": "David's Wife", "id": 21911, "credit_id": "539bebf3c3a36810b500111f", "cast_id": 38, "profile_path": "/kmTErFq6lKQww2Yk9AfpR2Q5YWx.jpg", "order": 2}, {"name": "Kwon Sang-Woo", "character": "Simon", "id": 1073360, "credit_id": "52fe4a199251416c750dda59", "cast_id": 12, "profile_path": "/5PWjQNDgcbJCTPSv5hk13DDYF9i.jpg", "order": 3}, {"name": "Zhang Lan-Xin", "character": "Bonnie", "id": 1110520, "credit_id": "52fe4a199251416c750dda6d", "cast_id": 19, "profile_path": "/zDK83qjIFdeA1grENypMZTA3H5A.jpg", "order": 4}, {"name": "Liao Fan", "character": "David Liao", "id": 99692, "credit_id": "52fe4a199251416c750dda5d", "cast_id": 13, "profile_path": "/3FcmZYC3XtYfQ9F6kSaW4XNOJfp.jpg", "order": 5}, {"name": "Laura Weissbecker", "character": "Catherine de Sichel", "id": 1110517, "credit_id": "52fe4a199251416c750dda61", "cast_id": 14, "profile_path": "/qJ4Xw2tDVNyRn2I0sMCvG7uNQZn.jpg", "order": 6}, {"name": "Rosario Amedeo", "character": "Pierre Marceau", "id": 1192651, "credit_id": "52fe4a199251416c750dda75", "cast_id": 23, "profile_path": "/b9Y3lxesLHaCd5BhXnSbSjxrYCc.jpg", "order": 7}, {"name": "Vincent Sze", "character": "Michael Morgan", "id": 228614, "credit_id": "52fe4a199251416c750dda55", "cast_id": 8, "profile_path": "/kmoI6PuP64AYheVW78hrITe7P4U.jpg", "order": 8}, {"name": "Oliver Platt", "character": "Lawrence Morgan", "id": 17485, "credit_id": "52fe4a199251416c750dda69", "cast_id": 18, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 9}, {"name": "Jonathan Lee Chung-Shing", "character": "Jonathan", "id": 1192656, "credit_id": "52fe4a199251416c750dda79", "cast_id": 24, "profile_path": "/xfZO4lFndBXKxS4kzEPqxh2sl4q.jpg", "order": 10}, {"name": "Alaa Safi", "character": "Vulture", "id": 126802, "credit_id": "52fe4a199251416c750dda7d", "cast_id": 25, "profile_path": "/8umFHsHqbZoPD4kvcamXJ2Gg9e4.jpg", "order": 11}, {"name": "Caitlin Dechelle", "character": "Katie", "id": 1110521, "credit_id": "52fe4a199251416c750dda71", "cast_id": 20, "profile_path": "/hAWbwDeiSE7y2DBgU7ScfZwtLr3.jpg", "order": 12}, {"name": "Bolin Chen", "character": "Wu Qing", "id": 64440, "credit_id": "52fe4a199251416c750dda81", "cast_id": 26, "profile_path": "/eRDmuLHY4mSOEsB6lHeisfVO951.jpg", "order": 13}, {"name": "Daniel Wu", "character": "Hospital doctor", "id": 64436, "credit_id": "52fe4a199251416c750dda85", "cast_id": 31, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 14}, {"name": "Ken Lo", "character": "Thai Pirate", "id": 70690, "credit_id": "52fe4a199251416c750dda89", "cast_id": 33, "profile_path": "/3cxY30w6S6hraBUpCtY7S8PQhDq.jpg", "order": 15}], "directors": [{"name": "Jackie Chan", "department": "Directing", "job": "Director", "credit_id": "52fe4a199251416c750dda39", "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "id": 18897}], "vote_average": 6.3, "runtime": 120}, "8456": {"poster_path": "/6vT35MJ67U3llfi6W7MbM5r2dav.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41627431, "overview": "Rebellious Jake Tyler is lured into an ultimate underground fight Scene at his new high school, after receiving threats to the safety of his friends and family Jake decides to seek the mentoring of a veteran fighter who trains him for one final no-holds-barred elimination fight with his nemesis and local martial arts champion Ryan McCarthy.", "video": false, "id": 8456, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Never Back Down", "tagline": "Win or lose... Everyone has their fight.", "vote_count": 98, "homepage": "http://www.neverbackdownthemovie.com/", "belongs_to_collection": {"backdrop_path": "/f069jw6rYHIWfypDjzQvODuGSz8.jpg", "poster_path": "/2srb1k1nAPHk7lzpheLK8e76Clp.jpg", "id": 96676, "name": "Never Back Down Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1023111", "adult": false, "backdrop_path": "/yG5Woj34Hjj9OKCaVSHE6cRGeLX.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Mandalay Pictures", "id": 551}, {"name": "Baumgarten Management and Productions (BMP)", "id": 23423}], "release_date": "2008-03-04", "popularity": 0.62062945640514, "original_title": "Never Back Down", "budget": 20000000, "cast": [{"name": "Sean Faris", "character": "Jake Tyler", "id": 55084, "credit_id": "52fe44abc3a36847f80a33c7", "cast_id": 12, "profile_path": "/aUyhN5GjPxRJSSHeaVk0QbYFe2i.jpg", "order": 0}, {"name": "Amber Heard", "character": "Baja Miller", "id": 55085, "credit_id": "52fe44abc3a36847f80a33cb", "cast_id": 13, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Cam Gigandet", "character": "Ryan McCarthy", "id": 55086, "credit_id": "52fe44abc3a36847f80a33cf", "cast_id": 14, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 2}, {"name": "Djimon Hounsou", "character": "Jean Roqua", "id": 938, "credit_id": "52fe44abc3a36847f80a33c3", "cast_id": 11, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 3}, {"name": "Evan Peters", "character": "Max Cooperman", "id": 55089, "credit_id": "52fe44abc3a36847f80a33d7", "cast_id": 16, "profile_path": "/2a1XA1ynmbZZj2nauwsc03OzRB.jpg", "order": 4}, {"name": "Leslie Hope", "character": "Margot Tyler", "id": 25834, "credit_id": "52fe44abc3a36847f80a33d3", "cast_id": 15, "profile_path": "/uJsgXloczXpFaRSZTB7FnkiijGi.jpg", "order": 5}, {"name": "Wyatt Smith", "character": "Charlie Tyler", "id": 55090, "credit_id": "52fe44abc3a36847f80a33db", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Neil Brown Jr.", "character": "Aaron", "id": 55091, "credit_id": "52fe44abc3a36847f80a33df", "cast_id": 18, "profile_path": "/mv2DgT9RABBYCxOY4ZHYalYBiUt.jpg", "order": 7}, {"name": "Lauren Leech", "character": "Jenny", "id": 55092, "credit_id": "52fe44abc3a36847f80a33e3", "cast_id": 19, "profile_path": null, "order": 8}], "directors": [{"name": "Jeff Wadlow", "department": "Directing", "job": "Director", "credit_id": "52fe44abc3a36847f80a338f", "profile_path": null, "id": 55075}], "vote_average": 6.8, "runtime": 115}, "8457": {"poster_path": "/rc1lPbKX1JPQiqqOsoQMr3tXA8J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three kids hire a low-budget bodyguard to protect them from the playground bully, not realising he is just a homeless beggar and petty thief looking for some easy cash.", "video": false, "id": 8457, "genres": [{"id": 35, "name": "Comedy"}], "title": "Drillbit Taylor", "tagline": "You get what you pay for", "vote_count": 57, "homepage": "http://www.drillbittaylor.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0817538", "adult": false, "backdrop_path": "/qERtpJ6t8LR0fMbyoQcfgyk7XHc.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-03-20", "popularity": 0.486408968902074, "original_title": "Drillbit Taylor", "budget": 40000000, "cast": [{"name": "Owen Wilson", "character": "Drillbit Taylor", "id": 887, "credit_id": "52fe44abc3a36847f80a342f", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Lisa", "id": 41087, "credit_id": "52fe44abc3a36847f80a3433", "cast_id": 2, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Josh Peck", "character": "Ronnie", "id": 15760, "credit_id": "52fe44abc3a36847f80a3437", "cast_id": 4, "profile_path": "/mLQ9fKG7E1PLErgPWRMfIccwOTM.jpg", "order": 2}, {"name": "David Dorfman", "character": "Emmit", "id": 26292, "credit_id": "52fe44abc3a36847f80a343b", "cast_id": 5, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 3}, {"name": "Nate Hartley", "character": "Wade", "id": 55097, "credit_id": "52fe44abc3a36847f80a343f", "cast_id": 6, "profile_path": "/AtqrlvIIQVEQCSMranOewGtCxt8.jpg", "order": 4}, {"name": "Alex Frost", "character": "Filkins", "id": 19195, "credit_id": "52fe44abc3a36847f80a3443", "cast_id": 7, "profile_path": "/ip1ABnG49oeE5bOS78bAu8whdeI.jpg", "order": 5}, {"name": "Troy Gentile", "character": "Ryan", "id": 55673, "credit_id": "52fe44abc3a36847f80a3489", "cast_id": 19, "profile_path": "/qX6Py6V8sGMC004CIjqitPssrM.jpg", "order": 6}, {"name": "Casey Boersma", "character": "Chuck", "id": 71726, "credit_id": "52fe44abc3a36847f80a3493", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Dylan Boersma", "character": "Nick", "id": 181553, "credit_id": "52fe44abc3a36847f80a3497", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Lisa Ann Walter", "character": "Dolores", "id": 4494, "credit_id": "52fe44abc3a36847f80a349b", "cast_id": 25, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 9}, {"name": "Beth Littleford", "character": "Barbara", "id": 79024, "credit_id": "52fe44abc3a36847f80a349f", "cast_id": 26, "profile_path": "/fENKh8l0qV6EPS6chqT6ijYwHJt.jpg", "order": 10}, {"name": "David Koechner", "character": "Frightened Dad", "id": 28638, "credit_id": "52fe44abc3a36847f80a34a3", "cast_id": 27, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 11}, {"name": "Matt Walsh", "character": "Not for Pot Driver", "id": 59841, "credit_id": "52fe44abc3a36847f80a34bf", "cast_id": 35, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 12}, {"name": "Janet Varney", "character": "Attractive Woman Driver", "id": 204462, "credit_id": "52fe44abc3a36847f80a34a7", "cast_id": 29, "profile_path": "/3eX3p6CB4T6FFIKrK77X8DKcXd2.jpg", "order": 13}, {"name": "Lisa Lampanelli", "character": "Ronnie's Mom", "id": 105788, "credit_id": "52fe44abc3a36847f80a34ab", "cast_id": 30, "profile_path": "/w5PhZCcS6kqNn4u086ZzHshgRML.jpg", "order": 14}, {"name": "Bill O'Neill", "character": "Dean", "id": 1061111, "credit_id": "52fe44abc3a36847f80a34af", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Shaun Weiss", "character": "Bus Driver", "id": 147499, "credit_id": "52fe44abc3a36847f80a34b3", "cast_id": 32, "profile_path": "/asBOiROZPLezU9YYjvp9qsaA0LK.jpg", "order": 16}, {"name": "Jordan Valacich", "character": "Cute Girl on Stairs", "id": 1074686, "credit_id": "52fe44abc3a36847f80a34b7", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Danny McBride", "character": "Don", "id": 62862, "credit_id": "52fe44abc3a36847f80a34bb", "cast_id": 34, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 18}, {"name": "Ian Roberts", "character": "Jim", "id": 13101, "credit_id": "52fe44abc3a36847f80a34c3", "cast_id": 36, "profile_path": "/yVLXoRloTMZGoZIoaFLcyPrp1yV.jpg", "order": 19}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe44abc3a36847f80a3449", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.6, "runtime": 102}, "268": {"poster_path": "/kBf3g9crrADGMc2AMAMlLBgSm2h.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 411348924, "overview": "The Dark Knight of Gotham City begins his war on crime with his first major enemy being the clownishly homicidal Joker, who has seized control of Gotham's underworld.", "video": false, "id": 268, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Batman", "tagline": "Have you ever danced with the devil in the pale moonlight?", "vote_count": 642, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0096895", "adult": false, "backdrop_path": "/2blmxp2pr4BhwQr74AdCfwgfMOb.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Guber-Peters Company", "id": 4357}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1989-06-23", "popularity": 1.52136127948877, "original_title": "Batman", "budget": 35000000, "cast": [{"name": "Michael Keaton", "character": "Batman", "id": 2232, "credit_id": "52fe422fc3a36847f800aa01", "cast_id": 4, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Jack Nicholson", "character": "Joker", "id": 514, "credit_id": "52fe422fc3a36847f800aa05", "cast_id": 5, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 1}, {"name": "Kim Basinger", "character": "Vicki Vale", "id": 326, "credit_id": "52fe422fc3a36847f800aa09", "cast_id": 6, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 2}, {"name": "Michael Gough", "character": "Alfred", "id": 3796, "credit_id": "52fe422fc3a36847f800aa0d", "cast_id": 7, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 3}, {"name": "Pat Hingle", "character": "Commissioner James Gordon", "id": 3798, "credit_id": "52fe422fc3a36847f800aa11", "cast_id": 8, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 4}, {"name": "Billy Dee Williams", "character": "Harvey Dent", "id": 3799, "credit_id": "52fe422fc3a36847f800aa15", "cast_id": 9, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 5}, {"name": "Jack Palance", "character": "Carl Grissom", "id": 3785, "credit_id": "52fe422fc3a36847f800aa19", "cast_id": 10, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 6}, {"name": "Jerry Hall", "character": "Alicia Grissom", "id": 3800, "credit_id": "52fe422fc3a36847f800aa1d", "cast_id": 11, "profile_path": "/nOs4mbm0Y7KGpmmom29sVizAUrP.jpg", "order": 7}, {"name": "Tracey Walter", "character": "Bob the Goon", "id": 3801, "credit_id": "52fe422fc3a36847f800aa21", "cast_id": 12, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 8}, {"name": "Lee Wallace", "character": "Mayor", "id": 3802, "credit_id": "52fe422fc3a36847f800aa25", "cast_id": 13, "profile_path": "/k2rVcgalJ4oJqxL2XykvR58lm9D.jpg", "order": 9}, {"name": "William Hootkins", "character": "Eckhardt", "id": 663, "credit_id": "52fe422fc3a36847f800aa29", "cast_id": 14, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Edwin Craig", "character": "Rotelli", "id": 3803, "credit_id": "52fe422fc3a36847f800aa2d", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Robert Wuhl", "character": "Alexander Knox", "id": 4040, "credit_id": "52fe4230c3a36847f800aa61", "cast_id": 24, "profile_path": "/ibDgbYtVwOwTuClvFclLybMk24T.jpg", "order": 12}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe422fc3a36847f800a9f1", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.6, "runtime": 126}, "8461": {"poster_path": "/cB1U1fbL4oTX1LH1zhlSK5YQjdD.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7938872, "overview": "When Ann, husband George and son Georgie arrive at their holiday home they are visited by a pair of polite and seemingly pleasant young men. Armed with deceptively sweet smiles and some golf clubs, they proceed to terrorize and torture the tight-knit clan, giving them until the next day to survive.", "video": false, "id": 8461, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Funny Games", "tagline": "Let the games begin...", "vote_count": 73, "homepage": "http://wip.warnerbros.com/funnygames/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808279", "adult": false, "backdrop_path": "/x0IvYeF88qYoKkigRjJ9CiyfY6b.jpg", "production_companies": [{"name": "Halcyon Pictures", "id": 2457}, {"name": "Kinematograf Wien", "id": 2459}], "release_date": "2007-10-20", "popularity": 0.52855046715835, "original_title": "Funny Games", "budget": 15000000, "cast": [{"name": "Naomi Watts", "character": "Ann", "id": 3489, "credit_id": "52fe44abc3a36847f80a35a5", "cast_id": 18, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Tim Roth", "character": "George", "id": 3129, "credit_id": "52fe44abc3a36847f80a35a9", "cast_id": 19, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 1}, {"name": "Michael Pitt", "character": "Paul", "id": 10692, "credit_id": "52fe44abc3a36847f80a35ad", "cast_id": 20, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 2}, {"name": "Brady Corbet", "character": "Peter", "id": 55493, "credit_id": "52fe44abc3a36847f80a35b1", "cast_id": 21, "profile_path": "/cnlvcYJP4UyeKdbCCuTKvFkjWSH.jpg", "order": 3}, {"name": "Devon Gearhart", "character": "Georgie", "id": 55494, "credit_id": "52fe44abc3a36847f80a35b5", "cast_id": 22, "profile_path": "/q8wiqc1euz0nXmijFlgaRsnio1g.jpg", "order": 4}, {"name": "Boyd Gaines", "character": "Fred", "id": 32389, "credit_id": "52fe44abc3a36847f80a35b9", "cast_id": 23, "profile_path": "/aEGL2lbzrwmTEirxKm8xGm1F9xC.jpg", "order": 5}, {"name": "Robert LuPone", "character": "Robert", "id": 55496, "credit_id": "52fe44abc3a36847f80a35bd", "cast_id": 25, "profile_path": "/hIVQjz4iP4JJ5c8euwVjEsG9SiO.jpg", "order": 7}, {"name": "Susanne C. Hanke", "character": "Betsys Schw\u00e4gerin", "id": 55497, "credit_id": "52fe44abc3a36847f80a35c1", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Linda Moran", "character": "Eve", "id": 7433, "credit_id": "52fe44abc3a36847f80a35c5", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Siobhan Fallon", "character": "Betsy", "id": 6751, "credit_id": "52fe44abc3a36847f80a35c9", "cast_id": 28, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 10}], "directors": [{"name": "Michael Haneke", "department": "Directing", "job": "Director", "credit_id": "52fe44abc3a36847f80a3547", "profile_path": "/xxHw9hBEXL4BrktfG3Q3vVZBx2D.jpg", "id": 6011}], "vote_average": 6.0, "runtime": 112}, "266285": {"poster_path": "/pzKXVk5NZH8Uw1tBS9YE1dLva6x.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 0, "overview": "In 1870s America, a peaceful American settler kills his family's murderer which unleashes the fury of a notorious gang leader. His cowardly fellow townspeople then betray him, forcing him to hunt down the outlaws alone.", "video": false, "id": 266285, "genres": [{"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "The Salvation", "tagline": "Bad men will bleed.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "da", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2720680", "adult": false, "backdrop_path": "/vNNWdSVML7sXSzf4N4BLgVVKNFu.jpg", "production_companies": [{"name": "Zentropa Productions", "id": 1880}, {"name": "Forward Films", "id": 17748}, {"name": "Spier Films", "id": 8275}], "release_date": "2014-05-22", "popularity": 0.890095125535158, "original_title": "The Salvation", "budget": 10500000, "cast": [{"name": "Eva Green", "character": "Madelaine", "id": 10912, "credit_id": "5357d3e9c3a36855f9002c7e", "cast_id": 0, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Mads Mikkelsen", "character": "John", "id": 1019, "credit_id": "5357d3f3c3a3685601002c59", "cast_id": 1, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 2}, {"name": "Jeffrey Dean Morgan", "character": "Delarue", "id": 47296, "credit_id": "5357d403c3a36855f2002c77", "cast_id": 2, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 3}, {"name": "Eric Cantona", "character": "Corsican", "id": 37758, "credit_id": "53de67ccc3a3686c510014d2", "cast_id": 13, "profile_path": "/tevcJNgEMt8ZDbXFvnWBidrxxek.jpg", "order": 4}, {"name": "Mikael Persbrandt", "character": "Peter", "id": 52398, "credit_id": "53de67dec3a3686c56001435", "cast_id": 14, "profile_path": "/yr557miX4IwMLqPfLQs3kWQZTMq.jpg", "order": 5}, {"name": "Douglas Henshall", "character": "Mallick", "id": 35862, "credit_id": "53de67fac3a3686c450014cc", "cast_id": 15, "profile_path": "/liGX3t9DqAXK6vdq3SromuJYcqE.jpg", "order": 6}, {"name": "Michael Raymond-James", "character": "Paul", "id": 53259, "credit_id": "53de680bc3a3686c4d0015af", "cast_id": 16, "profile_path": "/35kiFPR1MhaoNbBJYg8wWi187TW.jpg", "order": 7}, {"name": "Jonathan Pryce", "character": "Keane", "id": 378, "credit_id": "53de6819c3a3686c6000140a", "cast_id": 17, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 8}], "directors": [{"name": "Kristian Levring", "department": "Directing", "job": "Director", "credit_id": "5357d416c3a3685621002c09", "profile_path": "/9BoGTgDyRyRW51JgXaCl5gmVNYC.jpg", "id": 65879}], "vote_average": 6.1, "runtime": 100}, "272": {"poster_path": "/xiosOeLfzPbfLfqui41kSWnO0sZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 374218673, "overview": "Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.", "video": false, "id": 272, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Batman Begins", "tagline": "Evil fears the knight.", "vote_count": 3114, "homepage": "http://www2.warnerbros.com/batmanbegins/index.html", "belongs_to_collection": {"backdrop_path": "/xfKot7lqaiW4XpL5TtDlVBA9ei9.jpg", "poster_path": "/bqS2lMgGkuodIXtDILFWTSWDDpa.jpg", "id": 263, "name": "The Dark Knight Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0372784", "adult": false, "backdrop_path": "/65JWXDCAfwHhJKnDwRnEgVB411X.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Syncopy", "id": 9996}, {"name": "Legendary Pictures", "id": 923}, {"name": "Patalex III Productions Limited", "id": 19231}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2005-06-15", "popularity": 4.04093447866989, "original_title": "Batman Begins", "budget": 150000000, "cast": [{"name": "Christian Bale", "character": "Bruce Wayne / Batman", "id": 3894, "credit_id": "52fe4230c3a36847f800ac3d", "cast_id": 13, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Michael Caine", "character": "Alfred Pennyworth", "id": 3895, "credit_id": "52fe4230c3a36847f800ac41", "cast_id": 14, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Liam Neeson", "character": "Henri Ducard", "id": 3896, "credit_id": "52fe4230c3a36847f800ac45", "cast_id": 15, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 2}, {"name": "Katie Holmes", "character": "Rachel Dawes", "id": 3897, "credit_id": "52fe4230c3a36847f800ac49", "cast_id": 16, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 3}, {"name": "Gary Oldman", "character": "Jim Gordon", "id": 64, "credit_id": "52fe4230c3a36847f800ac35", "cast_id": 8, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 4}, {"name": "Cillian Murphy", "character": "Dr. Jonathan Crane / The Scarecrow", "id": 2037, "credit_id": "52fe4230c3a36847f800ac39", "cast_id": 9, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 5}, {"name": "Tom Wilkinson", "character": "Carmine Falcone", "id": 207, "credit_id": "52fe4230c3a36847f800ac71", "cast_id": 29, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 6}, {"name": "Morgan Freeman", "character": "Lucius Fox", "id": 192, "credit_id": "52fe4230c3a36847f800ac75", "cast_id": 31, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 7}, {"name": "Rutger Hauer", "character": "Earle", "id": 585, "credit_id": "52fe4230c3a36847f800ac79", "cast_id": 32, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 8}, {"name": "Ken Watanabe", "character": "Ra's Al Ghul", "id": 3899, "credit_id": "52fe4230c3a36847f800ac7d", "cast_id": 33, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 9}, {"name": "Mark Boone Junior", "character": "Flass", "id": 534, "credit_id": "52fe4230c3a36847f800ac81", "cast_id": 34, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 10}, {"name": "Linus Roache", "character": "Thomas Wayne", "id": 3900, "credit_id": "52fe4230c3a36847f800ac85", "cast_id": 35, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 11}, {"name": "Larry Holden", "character": "Finch", "id": 544, "credit_id": "52fe4230c3a36847f800ac89", "cast_id": 36, "profile_path": "/8yV3Rfvt0iWJZwO6jt2YnkdzdzL.jpg", "order": 12}, {"name": "Gerard Murphy", "character": "Judge Faden", "id": 151943, "credit_id": "52fe4230c3a36847f800ac8d", "cast_id": 37, "profile_path": "/onkF4igAmOiiKl2wxXm8eSgLgFd.jpg", "order": 13}, {"name": "Colin McFarlane", "character": "Loeb", "id": 128386, "credit_id": "52fe4230c3a36847f800ac91", "cast_id": 38, "profile_path": "/7jzQFnBDALhTclwIohM78bGoFzF.jpg", "order": 14}, {"name": "Jack Gleeson", "character": "Little Boy", "id": 489467, "credit_id": "52fe4230c3a36847f800ac95", "cast_id": 39, "profile_path": "/7v7nLA9VKj5roujZgcj69A1mRUv.jpg", "order": 15}, {"name": "T.J. Ramini", "character": "Crane Thug #1", "id": 1317397, "credit_id": "536a31870e0a2647c400a14d", "cast_id": 40, "profile_path": "/yGbVvKLGxS8j6mnYn3k89w2NQV4.jpg", "order": 16}, {"name": "Catherine Porter", "character": "Blonde Female Reporter / Assassin", "id": 1334124, "credit_id": "53aa4d4ac3a3684cfb000d93", "cast_id": 41, "profile_path": "/myHS5mkAYBRXQ5b4mWv8M4VBAlw.jpg", "order": 17}, {"name": "Gus Lewis", "character": "Bruce Wayne als Kind", "id": 1172371, "credit_id": "54e27de7c3a368087b0023dd", "cast_id": 42, "profile_path": "/xuvrpe9q9oAzrJHTcfK07LIsm9o.jpg", "order": 18}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800ac0d", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.2, "runtime": 140}, "41233": {"poster_path": "/q8Pm7UpAqDdxo1Xnt29EHHAl2u2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159291809, "overview": "A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world's best hip hop dancers in a high-stakes showdown that will change their lives forever.", "video": false, "id": 41233, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Step Up 3D", "tagline": "Two Worlds. One Dream.", "vote_count": 139, "homepage": "http://stepupmovie.com/", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1193631", "adult": false, "backdrop_path": "/3CbUdwyKnEcLSLkQYWJfi8H6gPO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2010-08-06", "popularity": 2.09126133858858, "original_title": "Step Up 3D", "budget": 30000000, "cast": [{"name": "Rick Malambri", "character": "Luke", "id": 138009, "credit_id": "52fe45bec3a36847f80d7dd7", "cast_id": 5, "profile_path": "/19UVd9VCfNcKlhEqjH9cFVK5UwE.jpg", "order": 0}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "52fe45bec3a36847f80d7ddb", "cast_id": 6, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 1}, {"name": "Joe Slaughter", "character": "Julien", "id": 1338420, "credit_id": "53ba219f0e0a2676cf00adfa", "cast_id": 12, "profile_path": "/pFVzAIAvQH50xGsUcgHuKrD3SSW.jpg", "order": 2}, {"name": "Sharni Vinson", "character": "Natalie", "id": 138010, "credit_id": "52fe45bec3a36847f80d7ddf", "cast_id": 7, "profile_path": "/u7TgXhZhSZwtRMuuPOIjkiAqxik.jpg", "order": 3}, {"name": "Alyson Stoner", "character": "Camille", "id": 58965, "credit_id": "52fe45bec3a36847f80d7de3", "cast_id": 8, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 4}, {"name": "Keith Stallworth", "character": "Jacob", "id": 138011, "credit_id": "52fe45bec3a36847f80d7de7", "cast_id": 9, "profile_path": "/zwdHFSK1cqrv6XG10zgfS5sKcBV.jpg", "order": 5}, {"name": "Kendra Andrews", "character": "Anala", "id": 138012, "credit_id": "52fe45bec3a36847f80d7deb", "cast_id": 10, "profile_path": "/lUuz8TVkl5FFfsszzZylwtZJ4IY.jpg", "order": 6}, {"name": "Stephen Boss", "character": "Jason", "id": 110743, "credit_id": "52fe45bec3a36847f80d7def", "cast_id": 11, "profile_path": "/5mGP9IXwtmCFAK8dSiOVaFxjSRM.jpg", "order": 7}, {"name": "Mart\u00edn Lombard", "character": "The Santiago Twins", "id": 1397768, "credit_id": "548c264d92514122f200154b", "cast_id": 13, "profile_path": "/90JgwlpMJK0YMvK1GC9pL93phe9.jpg", "order": 8}, {"name": "Facundo Lombard", "character": "The Santiago Twins", "id": 1397762, "credit_id": "548c2661c3a36820c200165c", "cast_id": 14, "profile_path": "/dixi9Cn16IUpAHR8pV1jamMVEjw.jpg", "order": 9}, {"name": "Oren Michaeli", "character": "Carlos", "id": 1398472, "credit_id": "548c2735c3a36820be0012da", "cast_id": 15, "profile_path": "/1e8BRQsCFFDOJyXtDfO3KrVKJOo.jpg", "order": 10}, {"name": "Daniel 'Cloud' Campos", "character": "Kid Darkness", "id": 568652, "credit_id": "548c2c3492514122ef00170c", "cast_id": 16, "profile_path": "/8VhkmmiLaAqNd68ELkTJNXa2Vnq.jpg", "order": 11}, {"name": "Aja George", "character": "The Ticks", "id": 1398477, "credit_id": "548c2e03c3a36820ba0015ba", "cast_id": 17, "profile_path": "/aAHMJ9VPLhYcZQnv49y7kizxnE9.jpg", "order": 12}, {"name": "Straphanio 'Shonnie' Solomon", "character": "The Ticks", "id": 1398521, "credit_id": "548c51b1c3a36820c2001aef", "cast_id": 18, "profile_path": "/h6qAq6qKw0XEorGQeJARgIHxxrZ.jpg", "order": 13}, {"name": "Terence Dickson", "character": "The Ticks", "id": 1148759, "credit_id": "548c5428c3a36820be00175d", "cast_id": 19, "profile_path": "/36Ba9N0SxSOrnvgMn1HRuEToaGR.jpg", "order": 14}, {"name": "Chadd Smith", "character": "Vladd", "id": 1341648, "credit_id": "548c548492514122ea001bca", "cast_id": 20, "profile_path": "/aAFFe4w9TbPTjfuBRt3rZAR96bG.jpg", "order": 15}, {"name": "Britney 'B' Thomas", "character": "B.", "id": 1398544, "credit_id": "548c553192514122ed001bb0", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Terrance Harrison", "character": "Radius", "id": 1398550, "credit_id": "548c565492514122ea001bff", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Jonathan 'Legacy' Perez", "character": "Legz", "id": 1093497, "credit_id": "548c57b0c3a36820c2001b8c", "cast_id": 23, "profile_path": "/nyv6OjlSOXCx3bGIKuf0g1AAjOb.jpg", "order": 18}, {"name": "Jaime Burgos III", "character": "Mohawk", "id": 1398554, "credit_id": "548c5820c3a36820b5001e0f", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Ivan 'Flipz' Velez", "character": "Spinz", "id": 1046144, "credit_id": "548c5b3ac3a3684eb9001804", "cast_id": 25, "profile_path": "/adXcwdqNqC1gmYYxLda9ZIUjBmU.jpg", "order": 20}, {"name": "Ashlee Nino", "character": "Stix", "id": 1398593, "credit_id": "548c6625c3a36820c5001fed", "cast_id": 26, "profile_path": "/kPpuK5wJCA9yX3zTS3toGf3NGhQ.jpg", "order": 21}, {"name": "Tamara Levinson", "character": "Bend", "id": 568659, "credit_id": "548c6c02c3a36820b5002060", "cast_id": 27, "profile_path": "/rszBSN45sRNOBs60CtY5JOIRh4L.jpg", "order": 22}, {"name": "Ricardo 'Boogie Frantick' Rodriguez Jr.", "character": "Wave", "id": 1398614, "credit_id": "548c6d51c3a36820ba001cb0", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Mari Koda", "character": "Jenny Kido", "id": 1189078, "credit_id": "548c6ddf92514122f2001d27", "cast_id": 29, "profile_path": "/oFrTgN8bhNmHSFY2PN5MISLa2IL.jpg", "order": 24}, {"name": "Christopher Scott", "character": "Hair", "id": 1341649, "credit_id": "548c7359c3a36820b8002126", "cast_id": 31, "profile_path": "/xqIgvt7rqj1Id0wPiCz8wh41z3s.jpg", "order": 26}, {"name": "Luis Rosado", "character": "Monster", "id": 1148762, "credit_id": "548c73a7c3a36820b500216f", "cast_id": 32, "profile_path": "/3WQyLA5js8eioERwZBNdCLlejdd.jpg", "order": 27}, {"name": "LaJon Dantzler", "character": "Smiles", "id": 1398617, "credit_id": "548c743792514122f2001dcd", "cast_id": 33, "profile_path": "/7ZJHdIlTy0MjRz5F7oqSDYzXFDo.jpg", "order": 28}, {"name": "Janelle Cambridge", "character": "Fly", "id": 1398618, "credit_id": "548c798592514122ff001d56", "cast_id": 34, "profile_path": null, "order": 29}, {"name": "Anjelo 'Lil Demon' Baligad", "character": "Arcade Rats", "id": 1398619, "credit_id": "548c7a17c3a36820b8002224", "cast_id": 35, "profile_path": null, "order": 30}, {"name": "Jalen Testerman", "character": "Arcade Rats", "id": 1398621, "credit_id": "548c7bb992514122fc001eeb", "cast_id": 36, "profile_path": "/rr8mFLdRKHJNAsegfyNf90KaKfF.jpg", "order": 31}, {"name": "Jose 'Boy Boi' Tena", "character": "Arcade Rats", "id": 1398623, "credit_id": "548c7f0492514122f5001f26", "cast_id": 37, "profile_path": "/clnF0yYgMEGJP0AhKLTbn313Ypf.jpg", "order": 32}, {"name": "Simrin C. Player", "character": "Arcade Rats", "id": 1398626, "credit_id": "548c7ff592514122f5001f45", "cast_id": 38, "profile_path": "/7TR8xMsgJM6FY8TFIohho6bpaLQ.jpg", "order": 33}, {"name": "Joshua Allen", "character": "House of Samurai", "id": 1290629, "credit_id": "548cbb1292514122ea0028a5", "cast_id": 39, "profile_path": "/6H0W8ZmTY3hBi3jlFpL2ljBpihp.jpg", "order": 34}, {"name": "Jeffrey 'Machine' McCann", "character": "House of Samurai", "id": 1398124, "credit_id": "548cbdbf92514122fc00267e", "cast_id": 40, "profile_path": null, "order": 35}, {"name": "Casper Smart", "character": "House of Samurai", "id": 559646, "credit_id": "548cbfbf92514122ef002833", "cast_id": 41, "profile_path": "/lLESgQOmlKWSqunwWMWAfiIYlsf.jpg", "order": 36}, {"name": "Joshua Lee Ayers", "character": "House of Samurai", "id": 1071483, "credit_id": "548cc6d992514122ef0028dd", "cast_id": 42, "profile_path": "/j74Y9HfMhLnklFGVfVTXWmFN8dV.jpg", "order": 37}, {"name": "Philip Albuquerque", "character": "House of Samurai", "id": 1398741, "credit_id": "548cc770c3a36820b5002d07", "cast_id": 43, "profile_path": null, "order": 38}, {"name": "Richard Steelo Vasquez", "character": "House of Samurai", "id": 1398742, "credit_id": "548cc83892514122ef002914", "cast_id": 44, "profile_path": null, "order": 39}, {"name": "John 'J-Rock' Nelson", "character": "House of Samurai", "id": 1398825, "credit_id": "548d334ec3a36820b5003c71", "cast_id": 45, "profile_path": null, "order": 40}, {"name": "Aaron 'Deuce' Cooke", "character": "House of Samurai", "id": 1398826, "credit_id": "548d35c5c3a36820b8003b0a", "cast_id": 46, "profile_path": null, "order": 41}, {"name": "Moises Rivas", "character": "House of Samurai", "id": 1398827, "credit_id": "548d3657c3a36820be002f7f", "cast_id": 47, "profile_path": null, "order": 42}, {"name": "Zahra 'Jeskilz' Hamani", "character": "The House of Samurais", "id": 1398828, "credit_id": "548d3761c3a36820c500398d", "cast_id": 48, "profile_path": null, "order": 43}, {"name": "Ivan Koumaev", "character": "House of Samurai", "id": 1290640, "credit_id": "548d399a92514122ff003329", "cast_id": 49, "profile_path": null, "order": 44}, {"name": "Sharya Howell", "character": "House of Samurai", "id": 1398829, "credit_id": "548d3a12c3a36820be002fe9", "cast_id": 50, "profile_path": null, "order": 45}, {"name": "Carly Lang", "character": "House of Samurai", "id": 1398830, "credit_id": "548d3b92c3a3681d4b001417", "cast_id": 51, "profile_path": "/vzj5KsnHJPnHTTqNP4oawTdsX2I.jpg", "order": 46}, {"name": "Nick Wilson", "character": "House of Samurai", "id": 1398831, "credit_id": "548d3c8692514122f2003627", "cast_id": 52, "profile_path": null, "order": 47}, {"name": "Nick DeMoura", "character": "House of Samurai", "id": 1398832, "credit_id": "548d3d1ec3a36820ba003580", "cast_id": 53, "profile_path": null, "order": 48}, {"name": "Bailey Hanks", "character": "NYU Tour Guide", "id": 1398833, "credit_id": "548d404f92514122f9003a27", "cast_id": 55, "profile_path": "/dAK9zEZmzd2HVTM3BaB28cpOBlH.jpg", "order": 50}, {"name": "Robin Lord Taylor", "character": "Punk Kid", "id": 59262, "credit_id": "548d41dcc3a368153b00133e", "cast_id": 56, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 51}, {"name": "Alex Zelenty", "character": "Emo Skater", "id": 1398835, "credit_id": "548d424fc3a36820b5003e66", "cast_id": 57, "profile_path": null, "order": 52}, {"name": "Jimmy Smagula", "character": "Balloon Vendor", "id": 1398836, "credit_id": "548d434ac3a36820be0030bd", "cast_id": 58, "profile_path": "/pzx8qt8yh4EVUTICPjaQ2xMTpKI.jpg", "order": 53}, {"name": "Christopher Place", "character": "Police Officer", "id": 204339, "credit_id": "548d4568c3a36820ba003652", "cast_id": 59, "profile_path": "/nHSXl6Y8ZNyv7noxTrh1uXHp0tE.jpg", "order": 54}, {"name": "Mark Blum", "character": "NYU Professor", "id": 14103, "credit_id": "548d45dd92514122ff003476", "cast_id": 60, "profile_path": "/mXRMbyyUtZ0JBs8aagC5Gn3omnE.jpg", "order": 55}, {"name": "Alex Charak", "character": "Silence D. Class", "id": 1398837, "credit_id": "548d4648c3a368153b0013c1", "cast_id": 61, "profile_path": "/1FjjbaDLl4T6c9fuJsOQqEUbTdK.jpg", "order": 56}, {"name": "Carolina Ravassa", "character": "Kristin", "id": 1398838, "credit_id": "548d485092514122fc00361f", "cast_id": 62, "profile_path": "/tauK5sqjI1JIIEXkco8XNbZ3QGB.jpg", "order": 57}, {"name": "Ally Maki", "character": "Jenny", "id": 209596, "credit_id": "548d49fd92514122f9003b66", "cast_id": 63, "profile_path": "/fZK27EmQkDTtUayLX38XhLBZE9h.jpg", "order": 58}, {"name": "Jamal Sims", "character": "Red Hook Announcer", "id": 29215, "credit_id": "548d4b3e92514122fc003684", "cast_id": 64, "profile_path": "/9GagwrpYPzSgEPppIEcMFugsU5I.jpg", "order": 59}, {"name": "Kevin Chew", "character": "Gwai Announcer", "id": 230163, "credit_id": "548d4be5c3a368153b001487", "cast_id": 65, "profile_path": null, "order": 60}, {"name": "Ken Marks", "character": "Walter", "id": 1398851, "credit_id": "548d5a47c3a3681d4b001887", "cast_id": 66, "profile_path": "/1eXMVRWlgd8dDQ8rb0W8IvbxZBw.jpg", "order": 61}, {"name": "Mark Tallman", "character": "Door Person", "id": 1344380, "credit_id": "548d5b59c3a36820c5003de3", "cast_id": 67, "profile_path": "/k5jAH1JuANNRi3qbjCnpRPLzoEb.jpg", "order": 62}, {"name": "Jennifer Van Dyck", "character": "Natalie's Mom", "id": 88755, "credit_id": "548d5c879251415568001735", "cast_id": 68, "profile_path": "/iil0xqgJbuXdEohG1vqz7KDWxVg.jpg", "order": 63}, {"name": "Kylie Goldstein", "character": "Ice Cream Girl", "id": 979342, "credit_id": "548d5d83c3a3681d4b001917", "cast_id": 69, "profile_path": "/wxtm2b6YrqCmlfC516peKZV8WOw.jpg", "order": 64}, {"name": "David Brown", "character": "Ice Cream Man", "id": 1260146, "credit_id": "548d604992514122fc0038d4", "cast_id": 70, "profile_path": "/rS11US9Th9grQlTN0NdK7Q2VrI1.jpg", "order": 65}, {"name": "Rhapsody James", "character": "Woman Watering Plants", "id": 1400904, "credit_id": "5492fd4bc3a3683cf80019a4", "cast_id": 71, "profile_path": null, "order": 66}, {"name": "Dylan Hartigan", "character": "Scooter boy", "id": 60015, "credit_id": "5492fedcc3a3683cfa0013d0", "cast_id": 72, "profile_path": "/8Te5OtZD4Dq1ILvktsMhGnmetc7.jpg", "order": 67}, {"name": "Sal Mistretta", "character": "Diner Customer", "id": 1400907, "credit_id": "5492ffbd925141090e001ab7", "cast_id": 73, "profile_path": "/yFkb1ZjzzeKGQ9YqKgtUg3afhye.jpg", "order": 68}, {"name": "Sonnie Brown", "character": "Mrs. Kido", "id": 1400908, "credit_id": "54930139925141090c001ba0", "cast_id": 74, "profile_path": "/ficJnMtw0f4fSXRyDnSru3ZUrsr.jpg", "order": 69}, {"name": "Akira Takayama", "character": "Mr. Kido", "id": 1333696, "credit_id": "5493029ec3a3683d04001bbf", "cast_id": 75, "profile_path": "/wxPcSoz4KThwbwE3fnEPJCNBRGj.jpg", "order": 70}, {"name": "Grandmaster Caz", "character": "World Jam Announcer", "id": 1096823, "credit_id": "549305ad92514118f2001a12", "cast_id": 76, "profile_path": "/7ivGQGf8by40XUSpp4qOn0hSPod.jpg", "order": 71}, {"name": "Hi-Hat", "character": "World Jam Judge", "id": 54515, "credit_id": "54930740c3a3683d00001a70", "cast_id": 77, "profile_path": "/9KIBPhKOxizRBH3YPLSSVaL2PYW.jpg", "order": 72}, {"name": "Raymond Del Barrio", "character": "World Jam Judge", "id": 1400927, "credit_id": "549307f592514118f2001a64", "cast_id": 78, "profile_path": "/bzJG3FyGuaNXMAzgj1ODNmCHakb.jpg", "order": 73}, {"name": "Marley Marl", "character": "World Jam Judge", "id": 1400978, "credit_id": "54935502925141092100202c", "cast_id": 79, "profile_path": null, "order": 74}, {"name": "Dan Ziskie", "character": "NYU Dean", "id": 61323, "credit_id": "549357b49251410896000001", "cast_id": 80, "profile_path": "/c4TZVcVFAmsqDUSPNhEQ73LFn4s.jpg", "order": 75}, {"name": "Ryan Daniel Beck", "character": "Mover Dancer", "id": 1400979, "credit_id": "549357fe925141089f00000d", "cast_id": 81, "profile_path": null, "order": 76}, {"name": "Sawandi Wilson", "character": "Mover Dancer", "id": 1400980, "credit_id": "54935966c3a36871bf000029", "cast_id": 82, "profile_path": "/rDSj3wSqSN5Mr3wmrIhlqO1iDSD.jpg", "order": 77}, {"name": "Noel Rodriguez", "character": "Club Dancer", "id": 1401031, "credit_id": "5493ba7c9251416e1c000872", "cast_id": 83, "profile_path": null, "order": 78}, {"name": "Marie 'Pandora' Medina", "character": "House of Red Hook", "id": 1401040, "credit_id": "5493bc42c3a3686af30007de", "cast_id": 84, "profile_path": "/cBNUw59XUVCR0TGMHdFLsXU5Uh6.jpg", "order": 79}, {"name": "Tyrell Washington", "character": "House of Red Hook", "id": 1401048, "credit_id": "5493be42c3a3686ae7000818", "cast_id": 85, "profile_path": null, "order": 80}, {"name": "Anthony Carr", "character": "House of Red Hook", "id": 1401053, "credit_id": "5493bf139251416e280008f5", "cast_id": 86, "profile_path": null, "order": 81}, {"name": "Adrian Wiltshire", "character": "House of Red Hook", "id": 1401057, "credit_id": "5493bfb0c3a3686ae700083e", "cast_id": 87, "profile_path": null, "order": 82}, {"name": "Dave Scott", "character": "House of Red Hook", "id": 54516, "credit_id": "5493c1c29251416e240008c2", "cast_id": 88, "profile_path": "/hKC4qqXAzEpfQNADXZlkjn3sqsn.jpg", "order": 83}, {"name": "Cedric Gardner", "character": "House of Red Hook", "id": 1401068, "credit_id": "5493c22b9251416e2200092f", "cast_id": 89, "profile_path": null, "order": 84}, {"name": "Josue Anthony", "character": "House of Red Hook", "id": 1398070, "credit_id": "5493c2b9c3a3686ae30008d1", "cast_id": 90, "profile_path": null, "order": 85}, {"name": "Richie Soto", "character": "House of Red Hook", "id": 1401073, "credit_id": "5493c35fc3a3686adc000bb8", "cast_id": 91, "profile_path": null, "order": 86}, {"name": "Cheryl Alessio", "character": "Arcade Player", "id": 1343738, "credit_id": "5493c4fd9251416e2400092f", "cast_id": 92, "profile_path": "/7414QDtXpvIz2PZS30BfzyHRhJS.jpg", "order": 87}, {"name": "George Alexander", "character": "World Jam Dancer", "id": 1401076, "credit_id": "5493c654c3a3686ae70008e4", "cast_id": 93, "profile_path": "/sQymX0JZ91wCZCGOqeIF9ImTVNv.jpg", "order": 88}, {"name": "Shawn Breathwaite", "character": "Dancer", "id": 1401077, "credit_id": "5493c740c3a3686aed000a15", "cast_id": 94, "profile_path": null, "order": 89}, {"name": "Leon C. Carswell", "character": "House of Gwai", "id": 1099849, "credit_id": "5493c9abc3a3686ae9000987", "cast_id": 95, "profile_path": null, "order": 90}, {"name": "Bryan Dechart", "character": "Anton", "id": 1349554, "credit_id": "5493cb43c3a3686ae30009d8", "cast_id": 96, "profile_path": "/kUa4juzzxV6MMJeFNvG6trEkJBi.jpg", "order": 91}, {"name": "Monique Dupree", "character": "Hip Hop Girl", "id": 98214, "credit_id": "5493cd83c3a3686af3000a44", "cast_id": 97, "profile_path": "/vSlP5d56aKJlCrHRTEe3grKVNSp.jpg", "order": 92}, {"name": "Jason Etter", "character": "Preppy Kid", "id": 1401078, "credit_id": "5493cdf49251416e1e00097c", "cast_id": 98, "profile_path": "/66nMYnLVjRML2AxhaYtPyAjcF5L.jpg", "order": 93}, {"name": "Ruby Feliciano", "character": "Mimi", "id": 1401079, "credit_id": "5493cfe8c3a3686ae1000af8", "cast_id": 99, "profile_path": "/sQ3VwAD8SSomahSIh2Sr86YeB6l.jpg", "order": 94}, {"name": "Moe Hindi", "character": "Grand Central Passenger", "id": 1401080, "credit_id": "5493d1589251416e1c000bd6", "cast_id": 100, "profile_path": null, "order": 95}, {"name": "Jeremy Hudson", "character": "Tango Dancer", "id": 1290608, "credit_id": "5493d30f9251416e24000b83", "cast_id": 101, "profile_path": null, "order": 96}, {"name": "Morris Isby", "character": "House of Gwai", "id": 1401081, "credit_id": "5493d3659251416e1e000b08", "cast_id": 102, "profile_path": null, "order": 97}, {"name": "Joseph Charles Kaye", "character": "House of Germany", "id": 1401084, "credit_id": "5493d4049251416e18000d3d", "cast_id": 103, "profile_path": null, "order": 98}, {"name": "Kristen Kress Parness", "character": "Backround", "id": 1401089, "credit_id": "5493d4f69251416e28000c0b", "cast_id": 104, "profile_path": "/3kZP4l8jOEe3Gw1dn2iJWUrnGF.jpg", "order": 99}, {"name": "Chris Kulanusorstit", "character": "Dance Battle Spectator", "id": 1401090, "credit_id": "5493d656c3a3686ae7000c14", "cast_id": 105, "profile_path": null, "order": 100}, {"name": "Zachary McElderry", "character": "Bill", "id": 1401091, "credit_id": "5493d6b79251416e18000dac", "cast_id": 106, "profile_path": null, "order": 101}, {"name": "Shauna Mitchell", "character": "Tango Dancer", "id": 1401092, "credit_id": "5493d7179251416e1c000d01", "cast_id": 107, "profile_path": null, "order": 102}, {"name": "Owen J. Murphy", "character": "Engineering Student", "id": 1401093, "credit_id": "5493d7a89251416e2b000cd1", "cast_id": 108, "profile_path": null, "order": 103}, {"name": "Kathy Najimy", "character": "Moose's Mom", "id": 11074, "credit_id": "5493d89b9251416e22000c47", "cast_id": 109, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 104}, {"name": "Stefanie Paige", "character": "College Freshman", "id": 1401094, "credit_id": "5493d90d9251416e22000c56", "cast_id": 110, "profile_path": null, "order": 105}, {"name": "Danielle Polanco", "character": "Missy", "id": 54504, "credit_id": "5493db249251411e5e000a33", "cast_id": 111, "profile_path": "/uerNcZ5L350k7MAWhxMyD0kdJEn.jpg", "order": 106}, {"name": "Alicia Qui\u00f1ones", "character": "World Jam Exhibition Dacner", "id": 1401095, "credit_id": "5493dbc09251416e18000e2e", "cast_id": 112, "profile_path": null, "order": 107}, {"name": "Tony Styles", "character": "House of Gwai", "id": 1401096, "credit_id": "5493dc359251411e5e000a52", "cast_id": 113, "profile_path": null, "order": 108}, {"name": "Ashley Sugarman", "character": "Dance Battle Spectator", "id": 1401099, "credit_id": "5493dd109251416e2b000d57", "cast_id": 114, "profile_path": "/fB8oMBPVd14FPCEifuy5qOZXjUx.jpg", "order": 109}, {"name": "Michael Trobiano", "character": "Hipster", "id": 1401100, "credit_id": "5493dda79251416e18000e6d", "cast_id": 115, "profile_path": null, "order": 110}, {"name": "Uzimann", "character": "Hot Dog Vendor", "id": 1401102, "credit_id": "5493de349251416e1e000c4f", "cast_id": 116, "profile_path": "/8WVXLqjnBf431l55CuhgQwNHvJJ.jpg", "order": 111}, {"name": "Sean Van der Wilt", "character": "Tango Dancer", "id": 1401103, "credit_id": "5493df2d9251416e2b000d8d", "cast_id": 117, "profile_path": null, "order": 112}, {"name": "Penelope Vazquez", "character": "Tango Dancer", "id": 1401104, "credit_id": "5493dfb7c3a3686ae1000d16", "cast_id": 118, "profile_path": null, "order": 113}, {"name": "Harry Shum Jr.", "character": "Cable", "id": 232499, "credit_id": "55185eff9251416f0d004b02", "cast_id": 119, "profile_path": "/aNnMmND0UYiE1J2yDA3QzHgHYdY.jpg", "order": 114}], "directors": [{"name": "Jon M. Chu", "department": "Directing", "job": "Director", "credit_id": "52fe45bec3a36847f80d7dc1", "profile_path": "/h80Zf0GR4jdmURx32hjvckJE8o5.jpg", "id": 54507}], "vote_average": 6.7, "runtime": 107}, "274": {"poster_path": "/qjAyTj2BSth1EQ89vNfo0JYVPFN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 272742922, "overview": "FBI trainee Clarice Starling ventures into a maximum-security asylum to pick the diseased brain of Hannibal Lecter, a psychiatrist turned homicidal cannibal. Starling needs clues to help her capture a serial killer. Unfortunately, her Faustian relationship with Lecter soon leads to his escape, and now two deranged killers are on the loose.", "video": false, "id": 274, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Silence of the Lambs", "tagline": "To enter the mind of a killer she must challenge the mind of a madman.", "vote_count": 1230, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102926", "adult": false, "backdrop_path": "/upTn8UYt1n92opIEIyzh8HljB0F.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}, {"name": "Strong Heart Productions", "id": 801}], "release_date": "1991-02-13", "popularity": 0.469661466081179, "original_title": "The Silence of the Lambs", "budget": 19000000, "cast": [{"name": "Anthony Hopkins", "character": "Hannibal Lecter", "id": 4173, "credit_id": "52fe4230c3a36847f800ada7", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Clarice Starling", "id": 1038, "credit_id": "52fe4230c3a36847f800ada3", "cast_id": 1, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Jack Crawford", "id": 349, "credit_id": "52fe4230c3a36847f800adaf", "cast_id": 4, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Ted Levine", "character": "Jame 'Buffalo Bill' Gumb", "id": 15854, "credit_id": "52fe4230c3a36847f800adb3", "cast_id": 5, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 3}, {"name": "Anthony Heald", "character": "Dr. Frederick Chilton", "id": 16293, "credit_id": "52fe4230c3a36847f800adab", "cast_id": 3, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 4}, {"name": "Brooke Smith", "character": "Catherine Martin", "id": 31649, "credit_id": "52fe4230c3a36847f800ade3", "cast_id": 16, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 5}, {"name": "Diane Baker", "character": "Senator Ruth Martin", "id": 6930, "credit_id": "52fe4230c3a36847f800adf7", "cast_id": 21, "profile_path": "/pExT2sv2tCRBxNzGKKNf2cdYI2q.jpg", "order": 6}, {"name": "Kasi Lemmons", "character": "Ardelia Mapp", "id": 51864, "credit_id": "52fe4230c3a36847f800addf", "cast_id": 15, "profile_path": "/dO8h85dpcoVFkKwa8MMOacRro4F.jpg", "order": 7}, {"name": "Frankie Faison", "character": "Barney Matthews", "id": 13936, "credit_id": "52fe4230c3a36847f800adb7", "cast_id": 6, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 8}, {"name": "Tracey Walter", "character": "Lamar", "id": 3801, "credit_id": "52fe4230c3a36847f800adef", "cast_id": 19, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 9}, {"name": "Charles Napier", "character": "Lt. Boyle", "id": 16119, "credit_id": "52fe4230c3a36847f800adff", "cast_id": 23, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 10}, {"name": "Danny Darst", "character": "Sgt. Tate", "id": 183640, "credit_id": "52fe4230c3a36847f800aea5", "cast_id": 62, "profile_path": null, "order": 11}, {"name": "Alex Coleman", "character": "Sgt. Pembry", "id": 1280997, "credit_id": "52fe4230c3a36847f800aeb1", "cast_id": 65, "profile_path": null, "order": 12}, {"name": "Dan Butler", "character": "Roden", "id": 76470, "credit_id": "52fe4230c3a36847f800ae81", "cast_id": 53, "profile_path": "/1JpxhswGPAkx3prXVZUpc7aM0uD.jpg", "order": 13}, {"name": "Paul Lazar", "character": "Pilcher", "id": 138988, "credit_id": "52fe4230c3a36847f800ae85", "cast_id": 54, "profile_path": "/8Aj1kAid7DQoLx76v7yn0pQdo90.jpg", "order": 14}, {"name": "Ron Vawter", "character": "Paul Krendler", "id": 32592, "credit_id": "52fe4230c3a36847f800ae95", "cast_id": 58, "profile_path": null, "order": 15}, {"name": "Roger Corman", "character": "FBI Director Hayden Burke", "id": 102429, "credit_id": "52fe4230c3a36847f800adfb", "cast_id": 22, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 16}, {"name": "Lawrence A. Bonney", "character": "FBI Instructor", "id": 1280985, "credit_id": "52fe4230c3a36847f800ae49", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Lawrence T. Wrentz", "character": "Agent Burroughs", "id": 192268, "credit_id": "52fe4230c3a36847f800ae4d", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Don Brockett", "character": "Friendly Psychopath", "id": 31118, "credit_id": "52fe4230c3a36847f800ade7", "cast_id": 17, "profile_path": null, "order": 19}, {"name": "Fank Seals Jr.", "character": "Brooding Psychopath", "id": 1280986, "credit_id": "52fe4230c3a36847f800ae51", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Stuart Rudin", "character": "Miggs", "id": 94435, "credit_id": "52fe4230c3a36847f800ae55", "cast_id": 41, "profile_path": "/7UOKyx48mPGHXl6HzQkCpCkEcn0.jpg", "order": 21}, {"name": "Masha Skorobogatov", "character": "Young Clarice", "id": 1280987, "credit_id": "52fe4230c3a36847f800ae59", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Jeffrie Lane", "character": "Clarice's Father", "id": 1280988, "credit_id": "52fe4230c3a36847f800ae5d", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Leib Lensky", "character": "Mr. Lang", "id": 68927, "credit_id": "52fe4230c3a36847f800ae61", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "George 'Red' Schwartz", "character": "Mr. Lang's Driver (as Red Schwartz)", "id": 68926, "credit_id": "52fe4230c3a36847f800ae65", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Jim Roche", "character": "TV Evangelist", "id": 1280989, "credit_id": "52fe4230c3a36847f800ae69", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "James B. Howard", "character": "Boxing Instructor", "id": 1280990, "credit_id": "52fe4230c3a36847f800ae6d", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Bill Miller", "character": "Mr. Brigham", "id": 174914, "credit_id": "52fe4230c3a36847f800ae71", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Chuck Aber", "character": "Agent Terry", "id": 102805, "credit_id": "52fe4230c3a36847f800adeb", "cast_id": 18, "profile_path": null, "order": 29}, {"name": "Gene Borkan", "character": "Oscar", "id": 152638, "credit_id": "52fe4230c3a36847f800ae75", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Pat McNamara", "character": "Sheriff Perkins", "id": 1174793, "credit_id": "52fe4230c3a36847f800ae79", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Kenneth Utt", "character": "Dr. Akin", "id": 16298, "credit_id": "52fe4230c3a36847f800ae7d", "cast_id": 52, "profile_path": "/8zXlrOU5Yjq0EHOjE5LDUOYH3Rs.jpg", "order": 32}, {"name": "Darla", "character": "\"Precious\" (as \"Darla\")", "id": 1280991, "credit_id": "52fe4230c3a36847f800ae89", "cast_id": 55, "profile_path": null, "order": 33}, {"name": "Adelle Lutz", "character": "TV Anchor Woman", "id": 1041787, "credit_id": "52fe4230c3a36847f800ae8d", "cast_id": 56, "profile_path": null, "order": 34}, {"name": "Obba Babatunde", "character": "TV Anchor Man", "id": 52057, "credit_id": "52fe4230c3a36847f800adf3", "cast_id": 20, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 35}, {"name": "George Michael", "character": "TV Sportscaster", "id": 1280992, "credit_id": "52fe4230c3a36847f800ae91", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Jim Dratfield", "character": "Sen. Martin's Aide", "id": 175082, "credit_id": "52fe4230c3a36847f800ae99", "cast_id": 59, "profile_path": null, "order": 37}, {"name": "Stanton-Miranda", "character": "1st Reporter", "id": 1280995, "credit_id": "52fe4230c3a36847f800ae9d", "cast_id": 60, "profile_path": null, "order": 38}, {"name": "Rebecca Saxon", "character": "2nd Reporter", "id": 1280996, "credit_id": "52fe4230c3a36847f800aea1", "cast_id": 61, "profile_path": null, "order": 39}, {"name": "Cynthia Ettinger", "character": "Officer Jacobs", "id": 1212913, "credit_id": "52fe4230c3a36847f800aea9", "cast_id": 63, "profile_path": null, "order": 40}, {"name": "Brent Hinkley", "character": "Officer Murray", "id": 7134, "credit_id": "52fe4230c3a36847f800ae03", "cast_id": 24, "profile_path": null, "order": 41}, {"name": "Steve Wyatt", "character": "Airport Flirt", "id": 1111682, "credit_id": "52fe4230c3a36847f800aead", "cast_id": 64, "profile_path": null, "order": 42}, {"name": "David Early", "character": "Spooked Memphis Cop", "id": 15074, "credit_id": "52fe4230c3a36847f800ae07", "cast_id": 25, "profile_path": null, "order": 43}, {"name": "Andre B. Blake", "character": "Tall Memphis Cop (as Andre Blake)", "id": 552526, "credit_id": "52fe4230c3a36847f800aeb5", "cast_id": 66, "profile_path": null, "order": 44}, {"name": "Bill Dalzell", "character": "Distraught Memphis Cop (as Bill Dalzell III)", "id": 1280998, "credit_id": "52fe4230c3a36847f800aeb9", "cast_id": 67, "profile_path": null, "order": 45}, {"name": "Chris Isaak", "character": "SWAT Commander", "id": 6591, "credit_id": "52fe4230c3a36847f800ae0b", "cast_id": 26, "profile_path": "/zL7bz7RQM2iVe45CZyYhM8fAi1U.jpg", "order": 46}, {"name": "Daniel von Bargen", "character": "SWAT Communicator", "id": 1473, "credit_id": "52fe4230c3a36847f800ae0f", "cast_id": 27, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 47}, {"name": "Tommy Lafitte", "character": "SWAT Shooter (as Tommy LaFitte)", "id": 1219514, "credit_id": "52fe4230c3a36847f800aebd", "cast_id": 68, "profile_path": "/6aMEXcJtuHoAkPy8Oub1xVYjo6V.jpg", "order": 48}, {"name": "Josh Broder", "character": "EMS Attendant", "id": 1280999, "credit_id": "52fe4230c3a36847f800aec1", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Buzz Kilman", "character": "EMS Driver", "id": 59329, "credit_id": "52fe4230c3a36847f800aec5", "cast_id": 70, "profile_path": "/pDwywHDHEwWlkxd3vkg6A7h6S9f.jpg", "order": 50}, {"name": "Harry Northup", "character": "Mr. Bimmel", "id": 127738, "credit_id": "52fe4230c3a36847f800aec9", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Lauren Roselli", "character": "Stacy Hubka", "id": 1281000, "credit_id": "52fe4230c3a36847f800aecd", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Lamont Arnold", "character": "Flower Delivery Man", "id": 1281001, "credit_id": "52fe4230c3a36847f800aed1", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "John Hall", "character": "State Trooper (uncredited)", "id": 102809, "credit_id": "52fe4230c3a36847f800ae13", "cast_id": 28, "profile_path": null, "order": 54}, {"name": "Ted Monte", "character": "FBI Agent (uncredited)", "id": 97902, "credit_id": "52fe4230c3a36847f800ae1b", "cast_id": 30, "profile_path": null, "order": 55}, {"name": "George A. Romero", "character": "FBI Agent in Memphis (uncredited)", "id": 14999, "credit_id": "52fe4230c3a36847f800ae17", "cast_id": 29, "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "order": 56}, {"name": "Maria Skorobogatov", "character": "Young Clarice", "id": 1447788, "credit_id": "5519b9c5c3a36830ce000085", "cast_id": 78, "profile_path": null, "order": 57}], "directors": [{"name": "Jonathan Demme", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800adbd", "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "id": 16294}], "vote_average": 7.5, "runtime": 118}, "275": {"poster_path": "/aZeX4XNSqa08TdMHRB1gDLO6GOi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60611975, "overview": "Jerry, a small-town Minnesota car salesman is bursting at the seams with debt... but he's got a plan. He's going to hire two thugs to kidnap his wife in a scheme to collect a hefty ransom from his wealthy father-in-law. It's going to be a snap and nobody's going to get hurt... until people start dying. Enter Police Chief Marge, a coffee-drinking, parka-wearing - and extremely pregnant - investigator who'll stop at nothing to get her man. And if you think her small-time investigative skills will give the crooks a run for their ransom... you betcha!", "video": false, "id": 275, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fargo", "tagline": "A lot can happen in the middle of nowhere.", "vote_count": 478, "homepage": "http://www.themoviefargo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116282", "adult": false, "backdrop_path": "/lGAaaOzqw8nc14HOgSP58TWWo1y.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1996-04-05", "popularity": 2.29497683959813, "original_title": "Fargo", "budget": 7000000, "cast": [{"name": "William H. Macy", "character": "Jerry Lundegaard", "id": 3905, "credit_id": "52fe4230c3a36847f800af23", "cast_id": 7, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Marge Gunderson", "id": 3910, "credit_id": "52fe4230c3a36847f800af37", "cast_id": 12, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Carl Showalter", "id": 884, "credit_id": "52fe4230c3a36847f800af1b", "cast_id": 5, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Peter Stormare", "character": "Gaear Grimsrud", "id": 53, "credit_id": "52fe4230c3a36847f800af1f", "cast_id": 6, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 3}, {"name": "Kristin Rudr\u00fcd", "character": "Jean Lundegaard", "id": 3906, "credit_id": "52fe4230c3a36847f800af27", "cast_id": 8, "profile_path": "/oZFXHbANc2MsFgB2VXR8UOsDqDM.jpg", "order": 4}, {"name": "Harve Presnell", "character": "Wade Gustafson", "id": 3907, "credit_id": "52fe4230c3a36847f800af2b", "cast_id": 9, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 5}, {"name": "Tony Denman", "character": "Scotty Lundegaard", "id": 3908, "credit_id": "52fe4230c3a36847f800af2f", "cast_id": 10, "profile_path": "/8W0gxnfQyeWATYKOdQhjFtWLsft.jpg", "order": 6}, {"name": "Gary Houston", "character": "Irate Customer", "id": 3909, "credit_id": "52fe4230c3a36847f800af33", "cast_id": 11, "profile_path": "/sHnbRD3qic7ndwrYB3qRRPSiEFE.jpg", "order": 7}, {"name": "John Carroll Lynch", "character": "Norm Gunderson", "id": 3911, "credit_id": "52fe4230c3a36847f800af3b", "cast_id": 13, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 8}, {"name": "Sally Wingert", "character": "Irate Customer's Wife", "id": 3912, "credit_id": "52fe4231c3a36847f800af57", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Steve Reevis", "character": "Shep Proudfoot", "id": 4024, "credit_id": "52fe4231c3a36847f800af5b", "cast_id": 19, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 10}, {"name": "Steve Park", "character": "Mike Yanagita", "id": 4025, "credit_id": "52fe4231c3a36847f800af5f", "cast_id": 20, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 11}, {"name": "Larry Brandenburg", "character": "Stan Grossman", "id": 92119, "credit_id": "53a625340e0a261439002638", "cast_id": 28, "profile_path": "/3TGsmGFwJps4dmVncOZIO3p6ToO.jpg", "order": 12}, {"name": "Kurt Schweickhardt", "character": "Car Salesman", "id": 1332890, "credit_id": "53a624400e0a2614360025eb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Larissa Kokernot", "character": "Hooker #1", "id": 1332891, "credit_id": "53a6245f0e0a26143200256c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Melissa Peterman", "character": "Hooker #2", "id": 145816, "credit_id": "53a625050e0a26143f002506", "cast_id": 27, "profile_path": "/yDgJvUVNVBqHATiAluIjqsUjYCT.jpg", "order": 15}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800af05", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800af0b", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.4, "runtime": 98}, "8469": {"poster_path": "/AuJkgAh7zAGsm7Oo3CGyDtYvzg0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141000000, "overview": "At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.", "video": false, "id": 8469, "genres": [{"id": 35, "name": "Comedy"}], "title": "Animal House", "tagline": "We got to do something...You know what we are gonna do ? Toga party !", "vote_count": 121, "homepage": "http://www.animalhouse.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077975", "adult": false, "backdrop_path": "/3A4xKsa3EYk9ohlkTRlrcNZGXg2.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Oregon Film Factory", "id": 13298}, {"name": "Stage III Productions", "id": 13300}], "release_date": "1978-07-28", "popularity": 0.346287993735879, "original_title": "Animal House", "budget": 2700000, "cast": [{"name": "John Belushi", "character": "John Blutarski", "id": 7171, "credit_id": "52fe44acc3a36847f80a38cf", "cast_id": 1, "profile_path": "/xVD48zqKxJWBOMYouWlnNExhM3g.jpg", "order": 0}, {"name": "Tim Matheson", "character": "Eric Stratton", "id": 21561, "credit_id": "52fe44acc3a36847f80a38d3", "cast_id": 2, "profile_path": "/iQQCtIS9bQJlQ8OMOzeidsJptAQ.jpg", "order": 1}, {"name": "John Vernon", "character": "Dean Vernon Wormer", "id": 17580, "credit_id": "52fe44acc3a36847f80a38d7", "cast_id": 3, "profile_path": "/8jESb02RChcuBEh4yZrLHElNhWa.jpg", "order": 2}, {"name": "Tom Hulce", "character": "Larry Kroger", "id": 3999, "credit_id": "52fe44acc3a36847f80a3a39", "cast_id": 82, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 3}, {"name": "Verna Bloom", "character": "Marion Wormer", "id": 55192, "credit_id": "52fe44acc3a36847f80a38db", "cast_id": 4, "profile_path": "/nNQMSCdsTE2sA3FzMOshdYr5RU5.jpg", "order": 4}, {"name": "Donald Sutherland", "character": "Dave Jennings", "id": 55636, "credit_id": "52fe44acc3a36847f80a38df", "cast_id": 6, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 5}, {"name": "Kevin Bacon", "character": "Chip Diller", "id": 4724, "credit_id": "52fe44acc3a36847f80a38e3", "cast_id": 7, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 6}, {"name": "Bruce McGill", "character": "Daniel Simpson Day", "id": 14888, "credit_id": "52fe44acc3a36847f80a38e7", "cast_id": 8, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 7}, {"name": "Mark Metcalf", "character": "Doug Neidermeyer", "id": 55194, "credit_id": "52fe44acc3a36847f80a38eb", "cast_id": 9, "profile_path": "/qjxCggGQH99OkXjDxm33QPIJZcl.jpg", "order": 8}, {"name": "Peter Riegert", "character": "Donald Schoenstein", "id": 20899, "credit_id": "52fe44acc3a36847f80a38ef", "cast_id": 10, "profile_path": "/szAJjIZY23cRhPUKLb6X3IbGEc5.jpg", "order": 9}, {"name": "James Widdoes", "character": "Robert Hoover", "id": 55195, "credit_id": "52fe44acc3a36847f80a38f3", "cast_id": 11, "profile_path": "/kNJqBzJCQ9mHD1ahAgqyhLYEMIE.jpg", "order": 10}, {"name": "Karen Allen", "character": "Katy", "id": 650, "credit_id": "52fe44acc3a36847f80a38f7", "cast_id": 12, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 11}, {"name": "Stephen Furst", "character": "Kent Dorfman", "id": 52304, "credit_id": "52fe44acc3a36847f80a3901", "cast_id": 15, "profile_path": "/omZKqkF9PrOS4mNyFPpu5iZcdAL.jpg", "order": 12}, {"name": "Mary Louise Weller", "character": "Mandy Pepperidge", "id": 55196, "credit_id": "52fe44acc3a36847f80a3905", "cast_id": 16, "profile_path": "/t6LjRfsu9Z1F2rPsM1XyX5wTPOi.jpg", "order": 13}, {"name": "Martha Smith", "character": "Babs Jansen", "id": 55197, "credit_id": "52fe44acc3a36847f80a3909", "cast_id": 17, "profile_path": "/mjAJaFrlaPBbvpyKSQiksvcqf7b.jpg", "order": 14}, {"name": "James Daughton", "character": "Greg Marmalard", "id": 55198, "credit_id": "52fe44acc3a36847f80a390d", "cast_id": 18, "profile_path": "/vXLuYRdzAy2NkZa0BQjAEAVDS21.jpg", "order": 15}, {"name": "Douglas Kenney", "character": "Stork", "id": 55199, "credit_id": "52fe44acc3a36847f80a3911", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Chris Miller", "character": "Hardbar", "id": 55200, "credit_id": "52fe44acc3a36847f80a3915", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Bruce Bonnheim", "character": "B.B.", "id": 55201, "credit_id": "52fe44acc3a36847f80a3919", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Joshua Daniel", "character": "Mothball", "id": 55202, "credit_id": "52fe44acc3a36847f80a391d", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Cesare Danova", "character": "Mayor Carmine DePasto", "id": 2558, "credit_id": "52fe44acc3a36847f80a3921", "cast_id": 23, "profile_path": "/8TZCVyWtXAT1PhALPASgS8RSiBr.jpg", "order": 20}, {"name": "Sunny Johnson", "character": "Otter's Co-Ed", "id": 31116, "credit_id": "52fe44acc3a36847f80a3925", "cast_id": 24, "profile_path": "/mKFoSy6SFZzaXKcEy6guoqu9gWU.jpg", "order": 21}, {"name": "Sarah Holcomb", "character": "Clorette DePasto", "id": 55203, "credit_id": "52fe44acc3a36847f80a3929", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Stacy Grooman", "character": "Sissy", "id": 55204, "credit_id": "52fe44acc3a36847f80a392d", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Otis Day", "character": "Otis Day", "id": 55206, "credit_id": "52fe44acc3a36847f80a3931", "cast_id": 28, "profile_path": "/rmxOhvzry0IFA3DZDroRHRrk2iV.jpg", "order": 24}, {"name": "Eliza Roberts", "character": "Brunella", "id": 55207, "credit_id": "52fe44acc3a36847f80a3935", "cast_id": 29, "profile_path": "/twTgZzVk2hT4KHHfNQ7AnkCJ371.jpg", "order": 25}, {"name": "Lisa Baur", "character": "Shelly", "id": 55208, "credit_id": "52fe44acc3a36847f80a3939", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "Aseneth Jurgenson", "character": "Beth", "id": 55209, "credit_id": "52fe44acc3a36847f80a393d", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Katherine Denning", "character": "Noreen", "id": 55210, "credit_id": "52fe44acc3a36847f80a3941", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Raymone Robinson", "character": "Mean Dude", "id": 55211, "credit_id": "52fe44acc3a36847f80a3945", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Robert Elliott", "character": "Meaner Dude", "id": 55212, "credit_id": "52fe44acc3a36847f80a3949", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Reginald Farmer", "character": "Meanest Dude", "id": 55213, "credit_id": "52fe44acc3a36847f80a394d", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Jebidiah R. Dumas", "character": "Gigantic Dude", "id": 55214, "credit_id": "52fe44acc3a36847f80a3951", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Priscilla Lauris", "character": "Dean's Secretary", "id": 55215, "credit_id": "52fe44acc3a36847f80a3955", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Rick Eby", "character": "Omega", "id": 55216, "credit_id": "52fe44acc3a36847f80a3959", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "John Freeman", "character": "Man On Street", "id": 55217, "credit_id": "52fe44acc3a36847f80a395d", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Sean McCartin", "character": "Lucky Boy", "id": 55218, "credit_id": "52fe44acc3a36847f80a3961", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Helen Vick", "character": "Sorority Girl", "id": 55219, "credit_id": "52fe44acc3a36847f80a3965", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Rick Greenough", "character": "Mongol", "id": 55220, "credit_id": "52fe44acc3a36847f80a3969", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Stephen Bishop", "character": "Charming Guy with Guitar", "id": 938558, "credit_id": "52fe44acc3a36847f80a3a55", "cast_id": 87, "profile_path": "/uhUDLWO1QDTyYmnByPyzqYKiLXh.jpg", "order": 39}, {"name": "John Landis", "character": "Cafeteria Dishwasher", "id": 4610, "credit_id": "530e0396c3a3685c2f002a4b", "cast_id": 88, "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "order": 40}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a38fd", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.7, "runtime": 109}, "278": {"poster_path": "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28341469, "overview": "Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", "video": false, "id": 278, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Shawshank Redemption", "tagline": "Fear can hold you prisoner. Hope can set you free.", "vote_count": 3745, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111161", "adult": false, "backdrop_path": "/xBKGJQsAIeweesB79KC89FpBrVr.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}], "release_date": "1994-09-14", "popularity": 3.10687249487982, "original_title": "The Shawshank Redemption", "budget": 25000000, "cast": [{"name": "Tim Robbins", "character": "Andy Dufresne", "id": 504, "credit_id": "52fe4231c3a36847f800b131", "cast_id": 3, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Ellis Boyd 'Red' Redding", "id": 192, "credit_id": "52fe4231c3a36847f800b135", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Warden Samuel Norton", "id": 4029, "credit_id": "52fe4231c3a36847f800b139", "cast_id": 5, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "William Sadler", "character": "Heywood", "id": 6573, "credit_id": "52fe4231c3a36847f800b13d", "cast_id": 7, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 3}, {"name": "Clancy Brown", "character": "Captain Byron T. Hadley", "id": 6574, "credit_id": "52fe4231c3a36847f800b141", "cast_id": 8, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 4}, {"name": "Gil Bellows", "character": "Tommy", "id": 6575, "credit_id": "52fe4231c3a36847f800b145", "cast_id": 9, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 5}, {"name": "Mark Rolston", "character": "Bogs Diamond", "id": 6576, "credit_id": "52fe4231c3a36847f800b149", "cast_id": 10, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 6}, {"name": "James Whitmore", "character": "Brooks Hatlen", "id": 6577, "credit_id": "52fe4231c3a36847f800b14d", "cast_id": 11, "profile_path": "/r1xOgXFjqhn2fonn78rlXKPZGFw.jpg", "order": 7}, {"name": "Jeffrey DeMunn", "character": "1946 D.A.", "id": 12645, "credit_id": "540dc040c3a36879b200546e", "cast_id": 28, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 8}, {"name": "Larry Brandenburg", "character": "Skeet", "id": 92119, "credit_id": "542eb4a5c3a3680439000009", "cast_id": 29, "profile_path": "/3TGsmGFwJps4dmVncOZIO3p6ToO.jpg", "order": 9}, {"name": "Neil Giuntoli", "character": "Jigger", "id": 168323, "credit_id": "542eb4b1c3a3680436000003", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Brian Libby", "character": "Floyd", "id": 6580, "credit_id": "542eb4bd0e0a2625a6000004", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "David Proval", "character": "Snooze", "id": 2555, "credit_id": "542eb4c90e0a2625a6000007", "cast_id": 32, "profile_path": "/ujBzP61tYlwqWpB3oOxknl1XuEg.jpg", "order": 12}, {"name": "Joseph Ragno", "character": "Ernie", "id": 5063, "credit_id": "542eb4d50e0a2625a3000005", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Jude Ciccolella", "character": "Guard Mert", "id": 8693, "credit_id": "542eb4ecc3a368043d00000f", "cast_id": 34, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 14}], "directors": [{"name": "Frank Darabont", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b127", "profile_path": "/9KVvZtDyy8DXacw2TTsjC9VLxQi.jpg", "id": 4027}], "vote_average": 8.2, "runtime": 142}, "279": {"poster_path": "/flnoqdC38mbaulAeptjynOFO7yi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51564280, "overview": "The incredible story of genius musician Wolfgang Amadeus Mozart, told in flashback by his peer and secret rival Antonio Salieri - now confined to an insane asylum.", "video": false, "id": 279, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10402, "name": "Music"}], "title": "Amadeus", "tagline": "...Everything you've heard is true", "vote_count": 280, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086879", "adult": false, "backdrop_path": "/sHsPEij3nojL34xcnaLdnuKEfmH.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Saul Zaentz Company", "id": 5237}], "release_date": "1984-10-26", "popularity": 1.37937065347243, "original_title": "Amadeus", "budget": 18000000, "cast": [{"name": "F. Murray Abraham", "character": "Antonio Salieri", "id": 1164, "credit_id": "52fe4231c3a36847f800b1cb", "cast_id": 4, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 0}, {"name": "Tom Hulce", "character": "Wolfgang Amadeus Mozart", "id": 3999, "credit_id": "52fe4231c3a36847f800b1cf", "cast_id": 5, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 1}, {"name": "Elizabeth Berridge", "character": "Constanze Mozart", "id": 4000, "credit_id": "52fe4231c3a36847f800b1d3", "cast_id": 6, "profile_path": "/vMNx6L9z19KELydCq6oQdzPlwyM.jpg", "order": 2}, {"name": "Roy Dotrice", "character": "Leopold Mozart", "id": 4002, "credit_id": "52fe4231c3a36847f800b1db", "cast_id": 8, "profile_path": "/5lEq1zJbdKO9KmhNiYxqEeiHgqT.jpg", "order": 3}, {"name": "Simon Callow", "character": "Emanuel Schikaneder", "id": 4001, "credit_id": "52fe4231c3a36847f800b1d7", "cast_id": 7, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 4}, {"name": "Christine Ebersole", "character": "Katerina Cavalieri", "id": 4003, "credit_id": "52fe4231c3a36847f800b1df", "cast_id": 9, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 5}, {"name": "Jeffrey Jones", "character": "Emperor Joseph II", "id": 4004, "credit_id": "52fe4231c3a36847f800b1e3", "cast_id": 10, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 6}, {"name": "Barbara Bryne", "character": "Mrs. Weber", "id": 4005, "credit_id": "52fe4231c3a36847f800b1e7", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Cynthia Nixon", "character": "Lorl", "id": 38024, "credit_id": "52fe4231c3a36847f800b215", "cast_id": 19, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 8}, {"name": "Douglas Seale", "character": "Count Arco", "id": 15833, "credit_id": "52fe4231c3a36847f800b219", "cast_id": 20, "profile_path": "/1Tbu7xnv3iwiLtKIJg1taQITbKC.jpg", "order": 9}, {"name": "Charles Kay", "character": "Count Orsini-Rosenberg", "id": 138413, "credit_id": "52fe4231c3a36847f800b21d", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Kenny Baker", "character": "Parody Commendatore", "id": 130, "credit_id": "52fe4231c3a36847f800b221", "cast_id": 22, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 11}, {"name": "Lisabeth Bartlett", "character": "Papagena in 'The Magic Flute'", "id": 948105, "credit_id": "52fe4231c3a36847f800b225", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Martin Cavina", "character": "Young Salieri", "id": 1077244, "credit_id": "52fe4231c3a36847f800b229", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Roderick Cook", "character": "Count Von Strack", "id": 1217752, "credit_id": "52fe4231c3a36847f800b235", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Milan Demjanenko", "character": "Karl Mozart", "id": 1077245, "credit_id": "52fe4231c3a36847f800b22d", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Peter DiGesu", "character": "Francesco Salieri", "id": 1077246, "credit_id": "52fe4231c3a36847f800b231", "cast_id": 27, "profile_path": null, "order": 16}], "directors": [{"name": "Milo\u0161 Forman", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b1bb", "profile_path": "/nKnsrK9h02F1QlMetkyr9R45VGM.jpg", "id": 3974}], "vote_average": 7.1, "runtime": 160}, "280": {"poster_path": "/2y4dmgWYRMYXdD1UyJVcn2HSd1D.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 520000000, "overview": "Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son, John, the future leader of the resistance, is the target for a newer, more deadly terminator. Once again, the resistance has managed to send a protector back to attempt to save John and his mother Sarah.", "video": false, "id": 280, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Terminator 2: Judgment Day", "tagline": "It's nothing personal.", "vote_count": 1779, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0103064", "adult": false, "backdrop_path": "/d9AqtruwS8nljKjL5aYzM42hQJr.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Le Studio Canal+", "id": 183}, {"name": "Lightstorm Entertainment", "id": 574}, {"name": "Pacific Western Production", "id": 7746}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1991-07-01", "popularity": 2.68411727316206, "original_title": "Terminator 2: Judgment Day", "budget": 100000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "The Terminator", "id": 1100, "credit_id": "52fe4231c3a36847f800b283", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Linda Hamilton", "character": "Sarah Connor", "id": 2713, "credit_id": "52fe4231c3a36847f800b28d", "cast_id": 3, "profile_path": "/bxsVrRYOpAL0vI6X7nnEsyLvZ8H.jpg", "order": 1}, {"name": "Edward Furlong", "character": "John Connor", "id": 820, "credit_id": "52fe4231c3a36847f800b297", "cast_id": 5, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 2}, {"name": "Robert Patrick", "character": "T-1000", "id": 418, "credit_id": "52fe4231c3a36847f800b29b", "cast_id": 6, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 3}, {"name": "Earl Boen", "character": "Dr. Peter Silberman", "id": 2716, "credit_id": "52fe4231c3a36847f800b29f", "cast_id": 7, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 4}, {"name": "Joe Morton", "character": "Dr. Miles Bennett Dyson", "id": 3977, "credit_id": "52fe4231c3a36847f800b2a3", "cast_id": 8, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "S. Epatha Merkerson", "character": "Tarissa Dyson", "id": 3978, "credit_id": "52fe4231c3a36847f800b2a7", "cast_id": 9, "profile_path": "/wuzhs2DR1ImE3Y8kuMoCXpFaHVK.jpg", "order": 6}, {"name": "Castulo Guerra", "character": "Enrique Salceda", "id": 3979, "credit_id": "52fe4231c3a36847f800b2ab", "cast_id": 10, "profile_path": "/njap7gZlVKHMKFb0aMQB17kMUNh.jpg", "order": 7}, {"name": "Danny Cooksey", "character": "Tim", "id": 3980, "credit_id": "52fe4231c3a36847f800b2af", "cast_id": 11, "profile_path": "/4jrP2XHLUOx4l2RWunuhp3mfBCW.jpg", "order": 8}, {"name": "Jenette Goldstein", "character": "Janelle Voight", "id": 3981, "credit_id": "52fe4231c3a36847f800b2b3", "cast_id": 12, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 9}, {"name": "Xander Berkeley", "character": "Todd Voight", "id": 3982, "credit_id": "52fe4231c3a36847f800b2b7", "cast_id": 13, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 10}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b289", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.2, "runtime": 137}, "281": {"poster_path": "/rXvy5hG9OeVmgnv9w4IhQxhqEKD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Lenny Nero, a retired police officer turned street-hustler, accidentally uncovers a conspiracy on New Years' Eve.", "video": false, "id": 281, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Strange Days", "tagline": "You know you want it.", "vote_count": 59, "homepage": "http://www.strange-days.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114558", "adult": false, "backdrop_path": "/4PuvZmLtwKQ8eejyfKf51NWTG13.jpg", "production_companies": [{"name": "Lightstorm Entertainment", "id": 574}, {"name": "20th Century Fox", "id": 25}], "release_date": "1995-10-13", "popularity": 0.299616760483177, "original_title": "Strange Days", "budget": 42000000, "cast": [{"name": "Ralph Fiennes", "character": "Lenny Nero", "id": 5469, "credit_id": "52fe4231c3a36847f800b3a1", "cast_id": 9, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Angela Bassett", "character": "Lornette 'Mace' Mason", "id": 9780, "credit_id": "52fe4231c3a36847f800b3a5", "cast_id": 10, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 1}, {"name": "Tom Sizemore", "character": "Max Peltier", "id": 3197, "credit_id": "52fe4231c3a36847f800b3a9", "cast_id": 11, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Faith Justin", "id": 3196, "credit_id": "52fe4231c3a36847f800b3ad", "cast_id": 12, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Vincent D'Onofrio", "character": "Burton Steckler", "id": 7132, "credit_id": "52fe4231c3a36847f800b3b1", "cast_id": 13, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 4}, {"name": "William Fichtner", "character": "Dwayne Engelman", "id": 886, "credit_id": "52fe4231c3a36847f800b3b5", "cast_id": 14, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 5}, {"name": "Michael Wincott", "character": "Philo Gant", "id": 7486, "credit_id": "52fe4231c3a36847f800b3b9", "cast_id": 15, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 6}, {"name": "Glenn Plummer", "character": "Jeriko One", "id": 2683, "credit_id": "52fe4231c3a36847f800b3bd", "cast_id": 16, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 7}, {"name": "Brigitte Bako", "character": "Iris", "id": 14607, "credit_id": "52fe4231c3a36847f800b3c1", "cast_id": 17, "profile_path": "/1D7yfHTpFEc8nQmsHHJiFE5yvwe.jpg", "order": 8}, {"name": "Kelly Hu", "character": "Anchor Woman", "id": 11024, "credit_id": "52ffb8429251416ae4097e20", "cast_id": 22, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 9}, {"name": "Josef Sommer", "character": "Palmer Strickland", "id": 14792, "credit_id": "536fd9a40e0a2647cb012eb6", "cast_id": 23, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 10}, {"name": "Joe Urla", "character": "Keith", "id": 151433, "credit_id": "536fd9ffc3a368124100ee4d", "cast_id": 24, "profile_path": "/92uDSmkBkgcVXDO8DBr3iInd62H.jpg", "order": 11}, {"name": "Michael Jace", "character": "Wade Beemer", "id": 46921, "credit_id": "536fda36c3a36839c1004db4", "cast_id": 25, "profile_path": "/7iTtCeZZnAPeE4x5TiXtinb0izJ.jpg", "order": 12}, {"name": "Kelly Hu", "character": "Anchor Woman", "id": 11024, "credit_id": "536fdafc0e0a2647d1012a1a", "cast_id": 26, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 13}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b373", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 6.9, "runtime": 145}, "284": {"poster_path": "/8nrQKQjD6z0SJouKHQapXzmjFc6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25000000, "overview": "Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he's left with a major problem to solve.", "video": false, "id": 284, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Apartment", "tagline": "Movie-wise, there has never been anything like it - laugh-wise, love-wise, or otherwise-wise", "vote_count": 92, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053604", "adult": false, "backdrop_path": "/ataq3FgceLuNQy5C8xUyLnVEWz.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "The Mirisch Company", "id": 11241}], "release_date": "1960-06-15", "popularity": 1.1536676292809, "original_title": "The Apartment", "budget": 3000000, "cast": [{"name": "Jack Lemmon", "character": "C.C. Baxter", "id": 3151, "credit_id": "52fe4232c3a36847f800b417", "cast_id": 1, "profile_path": "/1Y3wQsqRALOL3LZQtKmulmN3qff.jpg", "order": 0}, {"name": "Shirley MacLaine", "character": "Fran Kubelik", "id": 4090, "credit_id": "52fe4232c3a36847f800b41b", "cast_id": 2, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 1}, {"name": "Fred MacMurray", "character": "Jeff D. Sheldrake", "id": 4091, "credit_id": "52fe4232c3a36847f800b41f", "cast_id": 3, "profile_path": "/3TQjxCbV4xaILVSd0biqfKXt50u.jpg", "order": 2}, {"name": "Ray Walston", "character": "Joe Dobisch", "id": 4093, "credit_id": "52fe4232c3a36847f800b423", "cast_id": 4, "profile_path": "/KzlcoLq3s2I3ogQAdbE1eUcXsb.jpg", "order": 3}, {"name": "Jack Kruschen", "character": "Dr. Dreyfuss", "id": 4094, "credit_id": "52fe4232c3a36847f800b427", "cast_id": 5, "profile_path": "/wV2cXcwJGwtySHjGKnjhSN0usq7.jpg", "order": 4}, {"name": "Naomi Stevens", "character": "Mrs. Mildred Dreyfuss", "id": 4096, "credit_id": "52fe4232c3a36847f800b42b", "cast_id": 6, "profile_path": "/xN6uGfzCot414AALXKcC0wL9vJl.jpg", "order": 5}, {"name": "Hope Holiday", "character": "Mrs. Margie MacDougall", "id": 4097, "credit_id": "52fe4232c3a36847f800b42f", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Edie Adams", "character": "Miss Olsen", "id": 4098, "credit_id": "52fe4232c3a36847f800b433", "cast_id": 8, "profile_path": "/nR9nzWhHMZeRrk5EeJhOVhxILbk.jpg", "order": 7}, {"name": "Joan Shawlee", "character": "Sylvia", "id": 3161, "credit_id": "52fe4232c3a36847f800b437", "cast_id": 9, "profile_path": "/1KSTHsyQsyuIAaj4k1BLmdpMaEc.jpg", "order": 8}, {"name": "Johnny Seven", "character": "Karl Matuschka", "id": 4099, "credit_id": "52fe4232c3a36847f800b43b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "David Lewis", "character": "Al Kirkeby", "id": 571911, "credit_id": "52fe4232c3a36847f800b4a5", "cast_id": 28, "profile_path": "/hi8Y2vwvTw8FhclgwS1w2mOKvO4.jpg", "order": 10}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe4232c3a36847f800b489", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.9, "runtime": 125}, "285": {"poster_path": "/llx7OTBy7BvflJzoFSStmBcdegy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 961000000, "overview": "Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with brave Will Turner and feisty Elizabeth Swann. And what of Jack Sparrow? Nothing is as it seems.", "video": false, "id": 285, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: At World's End", "tagline": "At the end of the world, the adventure begins.", "vote_count": 1516, "homepage": "http://disney.go.com/disneypictures/pirates/", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449088", "adult": false, "backdrop_path": "/8ZgpAftUiYTU76IhUADITa3Ur9n.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Second Mate Productions", "id": 19936}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2007-05-19", "popularity": 1.63879798031733, "original_title": "Pirates of the Caribbean: At World's End", "budget": 300000000, "cast": [{"name": "Johnny Depp", "character": "Jack Sparrow", "id": 85, "credit_id": "52fe4232c3a36847f800b50d", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Will Turner", "id": 114, "credit_id": "52fe4232c3a36847f800b511", "cast_id": 5, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Elizabeth Swann", "id": 116, "credit_id": "52fe4232c3a36847f800b515", "cast_id": 6, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Chow Yun-Fat", "character": "Captain Sao Feng", "id": 1619, "credit_id": "52fe4232c3a36847f800b525", "cast_id": 10, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 3}, {"name": "Geoffrey Rush", "character": "Barbossa", "id": 118, "credit_id": "52fe4232c3a36847f800b519", "cast_id": 7, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "Governor Weatherby Swann", "id": 378, "credit_id": "52fe4232c3a36847f800b51d", "cast_id": 8, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Bill Nighy", "character": "Davy Jones", "id": 2440, "credit_id": "52fe4232c3a36847f800b521", "cast_id": 9, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 6}, {"name": "Tom Hollander", "character": "Lord Cutler Beckett", "id": 2441, "credit_id": "52fe4232c3a36847f800b529", "cast_id": 11, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 7}, {"name": "Stellan Skarsg\u00e5rd", "character": "Bootstrap' Bill Turner", "id": 1640, "credit_id": "52fe4232c3a36847f800b52d", "cast_id": 12, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 8}, {"name": "Kevin McNally", "character": "Joshamee Gibbs", "id": 2449, "credit_id": "52fe4232c3a36847f800b531", "cast_id": 13, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 9}, {"name": "Jack Davenport", "character": "Admiral James Norrington", "id": 1709, "credit_id": "52fe4232c3a36847f800b535", "cast_id": 14, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 10}, {"name": "Mackenzie Crook", "character": "Ragetti", "id": 1711, "credit_id": "52fe4232c3a36847f800b539", "cast_id": 15, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 11}, {"name": "Lee Arenberg", "character": "Pintel", "id": 1710, "credit_id": "52fe4232c3a36847f800b53d", "cast_id": 16, "profile_path": "/ziQH86o2BInPEUF7VW0gYte35Tw.jpg", "order": 12}, {"name": "Martin Klebba", "character": "Marty", "id": 4030, "credit_id": "52fe4232c3a36847f800b541", "cast_id": 17, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 13}, {"name": "Greg Ellis", "character": "Lieutenant Groves", "id": 4031, "credit_id": "52fe4232c3a36847f800b545", "cast_id": 18, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 14}, {"name": "Naomie Harris", "character": "Tia Dalma", "id": 2038, "credit_id": "52fe4232c3a36847f800b549", "cast_id": 19, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 15}, {"name": "Keith Richards", "character": "Teague Sparrow", "id": 1430, "credit_id": "52fe4232c3a36847f800b5b3", "cast_id": 37, "profile_path": "/uGF4AHKqaTI8K98n1lzqtRfv4N2.jpg", "order": 16}, {"name": "Takayo Fischer", "character": "Mistress Ching", "id": 33500, "credit_id": "52fe4232c3a36847f800b5bd", "cast_id": 39, "profile_path": "/gNIFc8rWnFzplkisEonefyxjmG1.jpg", "order": 17}, {"name": "David Meunier", "character": "Lieutenant Greitzer", "id": 1224149, "credit_id": "52fe4232c3a36847f800b5c1", "cast_id": 40, "profile_path": "/bBCXP8UmTHjwqAJRO3Nk3UBftBt.jpg", "order": 18}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4232c3a36847f800b4fd", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.6, "runtime": 169}, "288": {"poster_path": "/fFoojluLQb7UDgR6VEdizbvmgrY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "High Noon is about a recently freed leader of a gang of bandits in the desert who is looking to get revenge on the Sheriff who put him in jail. A legendary western film from the Austrian director Fred Zinnemann.", "video": false, "id": 288, "genres": [{"id": 37, "name": "Western"}], "title": "High Noon", "tagline": "The story of a man who was too proud to run", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0044706", "adult": false, "backdrop_path": "/6AH0BpiEaLz3NMTaBhqgHdA4YJ6.jpg", "production_companies": [{"name": "Stanley Kramer Productions", "id": 893}, {"name": "United Artists", "id": 60}], "release_date": "1952-07-24", "popularity": 0.5106276345046, "original_title": "High Noon", "budget": 750000, "cast": [{"name": "Gary Cooper", "character": "Marshal Will Kane", "id": 4068, "credit_id": "52fe4232c3a36847f800b767", "cast_id": 4, "profile_path": "/zVUK71x5IoBaJ5H9dTgE2CRmLKy.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Amy Fowler Kane", "id": 4070, "credit_id": "52fe4232c3a36847f800b777", "cast_id": 8, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Thomas Mitchell", "character": "Mayor Jonas Henderson", "id": 3383, "credit_id": "52fe4232c3a36847f800b76b", "cast_id": 5, "profile_path": "/b0WAgmbZjTX99prApnSMdiYOhRK.jpg", "order": 2}, {"name": "Lloyd Bridges", "character": "Deputy Marshal Harvey Pell", "id": 2177, "credit_id": "52fe4232c3a36847f800b76f", "cast_id": 6, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 3}, {"name": "Katy Jurado", "character": "Helen Ram\u00edrez", "id": 4069, "credit_id": "52fe4232c3a36847f800b773", "cast_id": 7, "profile_path": "/3BtMJxRUWLuUFUPn3bNHsPTo6th.jpg", "order": 4}, {"name": "Otto Kruger", "character": "Judge Percy Mettrick", "id": 4071, "credit_id": "52fe4232c3a36847f800b77b", "cast_id": 9, "profile_path": "/i7S1SCl57AapOJ70S24HOjkHarZ.jpg", "order": 5}, {"name": "Lon Chaney, Jr.", "character": "Martin Howe", "id": 4072, "credit_id": "52fe4232c3a36847f800b77f", "cast_id": 10, "profile_path": "/jcMINaWTeyY8FyRE5pnk2ZkWPw7.jpg", "order": 6}, {"name": "Harry Morgan", "character": "Sam Fuller", "id": 4073, "credit_id": "52fe4232c3a36847f800b783", "cast_id": 11, "profile_path": "/xQlBwecEQEz84k7jDLPGi6FqxRJ.jpg", "order": 7}, {"name": "Ian MacDonald", "character": "Frank Miller", "id": 4074, "credit_id": "52fe4232c3a36847f800b787", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Eve McVeagh", "character": "Mildred Fuller", "id": 4075, "credit_id": "52fe4232c3a36847f800b78b", "cast_id": 13, "profile_path": "/y41JZxTVZDOtKBXk9uA7zOFdtzO.jpg", "order": 9}, {"name": "Morgan Farley", "character": "Dr. Mahin, minister", "id": 4076, "credit_id": "52fe4232c3a36847f800b78f", "cast_id": 14, "profile_path": "/94yu6kY3TVj60OV7gUxTFvFUJDD.jpg", "order": 10}, {"name": "Harry Shannon", "character": "Cooper", "id": 4077, "credit_id": "52fe4232c3a36847f800b793", "cast_id": 15, "profile_path": "/7Js8vAjzKzM5eXcu6THDzWM7j5P.jpg", "order": 11}, {"name": "Lee Van Cleef", "character": "Jack Colby", "id": 4078, "credit_id": "52fe4232c3a36847f800b797", "cast_id": 16, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 12}, {"name": "Robert J. Wilke", "character": "Jim Pierce", "id": 2096, "credit_id": "52fe4232c3a36847f800b79b", "cast_id": 17, "profile_path": "/3VL03wavl7fUGuVtayjft9eYAua.jpg", "order": 13}, {"name": "Sheb Wooley", "character": "Ben Miller", "id": 4080, "credit_id": "52fe4232c3a36847f800b79f", "cast_id": 18, "profile_path": "/wngAcuEA3AslnYxoJSonPcaLJ3f.jpg", "order": 14}, {"name": "Jack Elam", "character": "Charlie - Drunk in Jail (uncredited)", "id": 4965, "credit_id": "52fe4233c3a36847f800b7e5", "cast_id": 30, "profile_path": "/viH168AYhlsKm4jCT0zrWWAFr94.jpg", "order": 15}, {"name": "John Doucette", "character": "Trumbull (uncredited)", "id": 34130, "credit_id": "52fe4233c3a36847f800b7e9", "cast_id": 31, "profile_path": "/2J6UfUe9nNkd6wjtIF5Yp3ilnZ8.jpg", "order": 16}, {"name": "Ted Stanhope", "character": "Station Master (uncredited)", "id": 137203, "credit_id": "52fe4233c3a36847f800b7ed", "cast_id": 32, "profile_path": "/w1YfFPc56XQIPYsRtCg9nCUqlPJ.jpg", "order": 17}], "directors": [{"name": "Fred Zinnemann", "department": "Directing", "job": "Director", "credit_id": "52fe4232c3a36847f800b757", "profile_path": "/1761Z9Javs1OTYFmrdE4Hy7HDVw.jpg", "id": 4065}], "vote_average": 7.0, "runtime": 85}, "289": {"poster_path": "/sm1QVZu5RKe1vXVHZooo4SZyHMx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10462500, "overview": "Casablanca is a classic and one of the most revered films of all time. Starring Humphrey Bogart and Ingrid Bergman in a love triangle in the city of Casablanca which is a refuge for many fleeing foreigners looking for a new life during the war. Political romance with a backdrop of war conflict between democracy and totalitarianism. A landmark in film history.", "video": false, "id": 289, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Casablanca", "tagline": "They had a date with fate in Casablanca!", "vote_count": 429, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0034583", "adult": false, "backdrop_path": "/nhHsH7qUySVTY57mxf231xO7Fga.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1942-11-26", "popularity": 1.30983983134836, "original_title": "Casablanca", "budget": 950000, "cast": [{"name": "Humphrey Bogart", "character": "Rick Blaine", "id": 4110, "credit_id": "52fe4233c3a36847f800b83f", "cast_id": 2, "profile_path": "/pxJrZluJHhbWRo2QXAG99FvXUi7.jpg", "order": 0}, {"name": "Ingrid Bergman", "character": "Ilsa Lund", "id": 4111, "credit_id": "52fe4233c3a36847f800b843", "cast_id": 3, "profile_path": "/iwU6mXNKj6VFvsGIEnNKu4UbXUL.jpg", "order": 1}, {"name": "Paul Henreid", "character": "Victor Laszlo", "id": 4112, "credit_id": "52fe4233c3a36847f800b847", "cast_id": 4, "profile_path": "/eWRFO86IttlVeHAlrWLyig8pm2m.jpg", "order": 2}, {"name": "Claude Rains", "character": "Capt. Renault", "id": 4113, "credit_id": "52fe4233c3a36847f800b84b", "cast_id": 5, "profile_path": "/Ai8dxQY9p90n3YO9o3J6iEqxZ04.jpg", "order": 3}, {"name": "Conrad Veidt", "character": "Maj. Strasser", "id": 3001, "credit_id": "52fe4233c3a36847f800b84f", "cast_id": 6, "profile_path": "/dfOSkNseKWva6mNItPMvM1RB05E.jpg", "order": 4}, {"name": "Sydney Greenstreet", "character": "Signor Ferrari", "id": 4114, "credit_id": "52fe4233c3a36847f800b853", "cast_id": 7, "profile_path": "/tXSc0cmUmsMqbR3A3xbevNfp3N7.jpg", "order": 5}, {"name": "Peter Lorre", "character": "Ugarte", "id": 2094, "credit_id": "52fe4233c3a36847f800b857", "cast_id": 8, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 6}, {"name": "Madeleine Lebeau", "character": "Yvonne", "id": 4116, "credit_id": "52fe4233c3a36847f800b85b", "cast_id": 9, "profile_path": "/tYUnGiQEBJLG1OfeqHvdcANgm2I.jpg", "order": 7}, {"name": "Dooley Wilson", "character": "Sam", "id": 4117, "credit_id": "52fe4233c3a36847f800b85f", "cast_id": 10, "profile_path": "/vAeLJujyXIn3fUve3foqpU6O18X.jpg", "order": 8}, {"name": "Joy Page", "character": "Annina Brandel", "id": 4118, "credit_id": "52fe4233c3a36847f800b863", "cast_id": 11, "profile_path": "/n7ZgvALY8nlQSXJkSozgqsWV95M.jpg", "order": 9}, {"name": "John Qualen", "character": "Berger", "id": 4119, "credit_id": "52fe4233c3a36847f800b867", "cast_id": 12, "profile_path": "/nbXFHZo4TUpNnFGnADXfPwQIvEn.jpg", "order": 10}, {"name": "Leonid Kinskey", "character": "Sascha", "id": 4120, "credit_id": "52fe4233c3a36847f800b86b", "cast_id": 13, "profile_path": "/fM1pWZWlFdJZjyEOKSILNjbTYFn.jpg", "order": 11}, {"name": "Curt Bois", "character": "Pickpocket", "id": 2313, "credit_id": "52fe4233c3a36847f800b86f", "cast_id": 14, "profile_path": "/uw8SYxoA546jt0Or2pAFJbkJR1B.jpg", "order": 12}, {"name": "Marcel Dalio", "character": "Emil", "id": 4121, "credit_id": "52fe4233c3a36847f800b873", "cast_id": 15, "profile_path": "/1lrGhscbhXoqVHOAI8Iv1hNQMAd.jpg", "order": 13}, {"name": "Helmut Dantine", "character": "Jan Brandel", "id": 4122, "credit_id": "52fe4233c3a36847f800b877", "cast_id": 16, "profile_path": "/a8wCT6fpQMxZ855rIrkItrtUQ1B.jpg", "order": 14}, {"name": "Hans Heinrich von Twardowski", "character": "German officer with Yvonne", "id": 3007, "credit_id": "52fe4233c3a36847f800b8e1", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "S.Z. Sakall", "character": "Carl", "id": 94110, "credit_id": "52fe4233c3a36847f800b8e5", "cast_id": 35, "profile_path": "/9dV6JB48tQKlXUzeqyI12r0xrD8.jpg", "order": 16}, {"name": "Norma Varden", "character": "Wife of Pickpocketed Englishman (uncredited)", "id": 10926, "credit_id": "53a183a70e0a26653a002fe8", "cast_id": 36, "profile_path": "/2Ypt67es6XciWAyihkcG2MSjUzT.jpg", "order": 17}, {"name": "Gino Corrado", "character": "Waiter at Rick's (uncredited)", "id": 9096, "credit_id": "53a183da0e0a26654b002f7b", "cast_id": 37, "profile_path": "/s9WKkWJFUNgbPhczUP4sD0OA4I4.jpg", "order": 18}, {"name": "Enrique Acosta", "character": "Guest at Rick's (uncredited)", "id": 1331750, "credit_id": "53a1b40bc3a3687ba6002f78", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Ed Agresti", "character": "Bar Patron (uncredited)", "id": 121320, "credit_id": "53a1b428c3a3687bb000309d", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Louis V. Arco", "character": "Refugee at Rick's (uncredited)", "id": 1224787, "credit_id": "53a1b445c3a3687bab003073", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Frank Arnold", "character": "Overseer (uncredited)", "id": 1331753, "credit_id": "53a1b4aec3a3685b2c001752", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Leon Belasco", "character": "Dealer at Rick's (uncredited)", "id": 95054, "credit_id": "53a1b4cec3a3687b9b002fa3", "cast_id": 42, "profile_path": "/f5zHwIwjSqsyWuia82cDUcocd6N.jpg", "order": 23}, {"name": "Nino Bellini", "character": "Gendarme (uncredited)", "id": 1331754, "credit_id": "53a1b4e0c3a3687b98002f20", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Oliver Blake", "character": "Waiter at the Blue Parrot (uncredited)", "id": 114402, "credit_id": "53a1b516c3a3687b9e0030b4", "cast_id": 45, "profile_path": "/68AmFqZCnccFJzzSh9S8hp7jRZr.jpg", "order": 26}, {"name": "Monte Blue", "character": "American (uncredited)", "id": 90074, "credit_id": "53a1b530c3a3687ba6002fb4", "cast_id": 46, "profile_path": "/u5eHdofzXRQu08r0YFS5LwXoc3E.jpg", "order": 27}, {"name": "Eugene Borden", "character": "Policeman (uncredited)", "id": 120545, "credit_id": "53a1b54bc3a3685b2c00178e", "cast_id": 47, "profile_path": "/2Wa7jN88fwPQyQ3IIoCmq88iif1.jpg", "order": 28}, {"name": "Dick Botiller", "character": "Native Officer (uncredited)", "id": 981271, "credit_id": "53a1b55ec3a3687bbc002e69", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Maurice Brierre", "character": "Baccarat Dealer at Rick's (uncredited)", "id": 1044381, "credit_id": "53a1b578c3a3687bb000310c", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Sebastian Cabot", "character": "Bearded man in street watching plane in flight to Lisbon. (uncredited)", "id": 21877, "credit_id": "53a1b593c3a3687ba6002fe7", "cast_id": 50, "profile_path": "/x4xosGUCYnuUQntxgbcZryWaKH6.jpg", "order": 31}, {"name": "Anita Camargo", "character": "Woman Companion (uncredited)", "id": 1276330, "credit_id": "53a1b5aac3a3687b98002f6f", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "George M. Carleton", "character": "American (uncredited)", "id": 120066, "credit_id": "53a1b5bdc3a3687b98002f76", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Spencer Chan", "character": "Guest at Rick's (uncredited)", "id": 1047407, "credit_id": "53a1b5d2c3a3687b9b003004", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Melie Chang", "character": "Oriental at Rick's (uncredited)", "id": 1331756, "credit_id": "53a1b5f2c3a3687bbc002e9c", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Franco Corsaro", "character": "French Police Officer (uncredited)", "id": 1228104, "credit_id": "53a1b60fc3a3685b2c0017db", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Adrienne D'Ambricourt", "character": "Concierge (uncredited)", "id": 120778, "credit_id": "53a1b629c3a3687b98002f9d", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Jean De Briac", "character": "Orderly (uncredited)", "id": 588565, "credit_id": "53a1b64fc3a3687bb0003154", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "George Dee", "character": "Lt. Casselle (uncredited)", "id": 1331757, "credit_id": "53a1b665c3a3687b98002fac", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Jean Del Val", "character": "Police Officer (uncredited)", "id": 22099, "credit_id": "53a1b67ec3a3687bab003122", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Carl Deloro", "character": "Arab Guest with Fez (uncredited)", "id": 1331758, "credit_id": "53a1b69dc3a3685b2c0017ee", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Joseph DeVillard", "character": "Moroccan (uncredited)", "id": 1263504, "credit_id": "53a1b6b2c3a3687b98002fb5", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Arthur Dulac", "character": "News Vendor (uncredited)", "id": 1331759, "credit_id": "53a1b6cac3a3687bbc002ed7", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "William Edmunds", "character": "Second Contact Man at Rick's (uncredited)", "id": 95967, "credit_id": "53a1b70fc3a3687bbc002ee0", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Herbert Evans", "character": "Englishman Questioning Casino's Honesty (uncredited)", "id": 121095, "credit_id": "53a1b73dc3a3685b2c001807", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Fred Farrell", "character": "Singing Frenchman (uncredited)", "id": 121331, "credit_id": "53a1b752c3a3687bb0003171", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Adolph Faylauer", "character": "Gambler at Rick's (uncredited)", "id": 121322, "credit_id": "53a1b768c3a3687bbc002ef0", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "O.K. Ford", "character": "Conspirator (uncredited)", "id": 1331760, "credit_id": "53a1b779c3a3687bb000317c", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Martin Garralaga", "character": "Headwaiter at Rick's (uncredited)", "id": 94401, "credit_id": "53a1b78ec3a368417a00000d", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Gregory Gaye", "character": "German Banker Refused by Rick (uncredited)", "id": 19551, "credit_id": "53a1b7b9c3a368418300000f", "cast_id": 69, "profile_path": "/4vbSFPENXcaF2yBRB8FpjHiy6ou.jpg", "order": 50}, {"name": "Gregory Golubeff", "character": "Cashier at Rick's (uncredited)", "id": 1331761, "credit_id": "53a1b7cfc3a368417d000012", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Ilka Gr\u00fcning", "character": "Mrs. Leuchtag - Carl's Immigrating Friend (uncredited)", "id": 100898, "credit_id": "53a1b7ecc3a3684189000014", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Creighton Hale", "character": "Customer (uncredited)", "id": 97981, "credit_id": "53a1b80dc3a368418300001a", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Winifred Harris", "character": "Englishwoman (uncredited)", "id": 977271, "credit_id": "53a1b81ec3a368418000001e", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Jamiel Hasson", "character": "Muezzini (uncredited)", "id": 1331762, "credit_id": "53a1b834c3a368417a00002d", "cast_id": 74, "profile_path": null, "order": 55}, {"name": "Arthur Stuart Hull", "character": "Elderly Admirer (uncredited)", "id": 1144743, "credit_id": "53a1b854c3a368417a000034", "cast_id": 75, "profile_path": null, "order": 56}, {"name": "Olaf Hytten", "character": "Pickpocketed Prosperous Man (uncredited)", "id": 32192, "credit_id": "53a1b8c0c3a3684189000032", "cast_id": 76, "profile_path": "/uCuFf8QMmSerIkvFlveQzFg7lr7.jpg", "order": 57}, {"name": "Paul Irving", "character": "Prosperous Tourist (uncredited)", "id": 1331763, "credit_id": "53a1b8dbc3a3684189000035", "cast_id": 77, "profile_path": null, "order": 58}, {"name": "Charles La Torre", "character": "Italian Officer Tonnelli (uncredited)", "id": 125808, "credit_id": "53a1b8f5c3a3684174000030", "cast_id": 78, "profile_path": null, "order": 59}, {"name": "George J. Lewis", "character": "Haggling Arab Monkey Seller (uncredited)", "id": 120061, "credit_id": "53a1b911c3a3684189000039", "cast_id": 79, "profile_path": "/mkHEoLawjJEqi053JrVuAa9tQBM.jpg", "order": 60}, {"name": "Manuel Lopez", "character": "Policeman (uncredited)", "id": 1331764, "credit_id": "53a1b9fa0e0a266ffa00006b", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Jacques Lory", "character": "Moor Buying Diamonds (uncredited)", "id": 121330, "credit_id": "53a1ba140e0a266fef000074", "cast_id": 82, "profile_path": null, "order": 63}, {"name": "Lou Marcelle", "character": "Narrator (voice) (uncredited)", "id": 1331765, "credit_id": "53a1ba2d0e0a266ff3000067", "cast_id": 83, "profile_path": null, "order": 64}, {"name": "Michael Mark", "character": "Vendor (uncredited)", "id": 1331766, "credit_id": "53a1ba670e0a266fe600006e", "cast_id": 84, "profile_path": null, "order": 65}, {"name": "Tony Martelli", "character": "Bartender (uncredited)", "id": 1331767, "credit_id": "53a1ba7f0e0a266fef000081", "cast_id": 85, "profile_path": null, "order": 66}, {"name": "George Meeker", "character": "Rick's Friend (uncredited)", "id": 99330, "credit_id": "53a1bab70e0a266ffe000090", "cast_id": 86, "profile_path": "/ikKH7sIl6XaOcUdGLzx7XDpzr6O.jpg", "order": 67}, {"name": "Lal Chand Mehra", "character": "Policeman (uncredited)", "id": 32195, "credit_id": "53a1bad20e0a266ff700008e", "cast_id": 87, "profile_path": null, "order": 68}, {"name": "Hercules Mendez", "character": "Arab Guest with Fez (uncredited)", "id": 1331768, "credit_id": "53a1bae30e0a266fef000096", "cast_id": 88, "profile_path": null, "order": 69}, {"name": "Louis Mercier", "character": "Conspirator (uncredited)", "id": 120700, "credit_id": "53a1bb0a0e0a266ffe00009b", "cast_id": 89, "profile_path": null, "order": 70}, {"name": "Torben Meyer", "character": "Dutch Banker at Cafe Table (uncredited)", "id": 12153, "credit_id": "53a1bb200e0a266ffa00009a", "cast_id": 90, "profile_path": null, "order": 71}, {"name": "Alberto Morin", "character": "French Officer Insulting Yvonne (uncredited)", "id": 70939, "credit_id": "53a1bb390e0a266fef0000a1", "cast_id": 91, "profile_path": "/oT6SkjHlUpOxOFpzJwBdbWi2eNM.jpg", "order": 72}, {"name": "Leo Mostovoy", "character": "Fydor (uncredited)", "id": 1331769, "credit_id": "53a1bb4c0e0a266fec0000a2", "cast_id": 92, "profile_path": null, "order": 73}, {"name": "Corinna Mura", "character": "Singer with Guitar (uncredited)", "id": 82803, "credit_id": "53a1bb610e0a266ffe0000a1", "cast_id": 93, "profile_path": null, "order": 74}, {"name": "Barry Norton", "character": "Gambler at Rick's (uncredited)", "id": 148852, "credit_id": "53a1bb820e0a266ff700009d", "cast_id": 94, "profile_path": null, "order": 75}, {"name": "Lotte Palfi Andor", "character": "Woman Selling Her Diamonds (uncredited)", "id": 94325, "credit_id": "53a1bb970e0a266ffa0000a8", "cast_id": 95, "profile_path": null, "order": 76}, {"name": "Paul Panzer", "character": "Paul - Waiter at Rick's (uncredited)", "id": 931793, "credit_id": "53a1bbb30e0a266fe600009d", "cast_id": 96, "profile_path": null, "order": 77}, {"name": "Manuel Par\u00eds", "character": "Guest at Rick's (uncredited)", "id": 1331770, "credit_id": "53a1bbf20e0a266fe60000a4", "cast_id": 97, "profile_path": null, "order": 78}, {"name": "Alexander Pollard", "character": "Croupier (uncredited)", "id": 1278060, "credit_id": "53a1bc0e0e0a266ff30000a7", "cast_id": 98, "profile_path": null, "order": 79}, {"name": "Frank Puglia", "character": "Arab Vendor (uncredited)", "id": 89691, "credit_id": "53a1bc410e0a266fec0000db", "cast_id": 100, "profile_path": "/cC89EI595bAz4SPIE1JKIOkdVU.jpg", "order": 81}, {"name": "Georges Renavent", "character": "Conspirator (uncredited)", "id": 120702, "credit_id": "53a1bc560e0a266fe60000d4", "cast_id": 101, "profile_path": null, "order": 82}, {"name": "Dewey Robinson", "character": "Bouncer at Rick's (uncredited)", "id": 120046, "credit_id": "53a1bc700e0a266ffa0000df", "cast_id": 102, "profile_path": "/7jbd6WBzj7mgNqTVqSraifT09UE.jpg", "order": 83}, {"name": "Richard Ryen", "character": "Col. Heinz - Strasser's Aide (uncredited)", "id": 33074, "credit_id": "53a1bd1dc3a36841830000f3", "cast_id": 104, "profile_path": null, "order": 85}, {"name": "Dan Seymour", "character": "Abdul (uncredited)", "id": 85943, "credit_id": "53a1bd52c3a36841890000d8", "cast_id": 105, "profile_path": null, "order": 86}, {"name": "Lester Sharpe", "character": "Refugee (uncredited)", "id": 975881, "credit_id": "53a1bd65c3a36841740000db", "cast_id": 106, "profile_path": null, "order": 87}, {"name": "Dina Smirnova", "character": "Woman Customer (uncredited)", "id": 1331774, "credit_id": "53a1bd75c3a36841890000e8", "cast_id": 107, "profile_path": null, "order": 88}, {"name": "Gerald Oliver Smith", "character": "Pickpocketed Englishman (uncredited)", "id": 1039630, "credit_id": "53a1bd89c3a36841860000e6", "cast_id": 108, "profile_path": null, "order": 89}, {"name": "George Sorel", "character": "Native Officer (uncredited)", "id": 1331775, "credit_id": "53a1bdc2c3a36841890000fc", "cast_id": 109, "profile_path": null, "order": 90}, {"name": "Geoffrey Steele", "character": "Customer (uncredited)", "id": 388490, "credit_id": "53a1bddec3a36841860000ee", "cast_id": 110, "profile_path": null, "order": 91}, {"name": "Ludwig St\u00f6ssel", "character": "Mr. Leuchtag (uncredited)", "id": 31209, "credit_id": "53a1bdf6c3a36841800000f2", "cast_id": 111, "profile_path": "/7qFEZlL8vkrm4E3aJZy1rVWVK9m.jpg", "order": 92}, {"name": "Mike Tellegen", "character": "Gambler (uncredited)", "id": 1132779, "credit_id": "53a1be14c3a36841860000fa", "cast_id": 112, "profile_path": null, "order": 93}, {"name": "Rafael Trujillo", "character": "Man Turning Propeller at Airport (uncredited)", "id": 1331777, "credit_id": "53a1be46c3a368417a0000f4", "cast_id": 113, "profile_path": null, "order": 94}, {"name": "Jacques Vanaire", "character": "Frenchman (uncredited)", "id": 1015446, "credit_id": "53a1be5cc3a368417d00012f", "cast_id": 114, "profile_path": null, "order": 95}, {"name": "Ellinor Vanderveer", "character": "Woman Gambler at Rick's Next to Croupier (uncredited)", "id": 1269196, "credit_id": "53a1be70c3a368417a000115", "cast_id": 115, "profile_path": null, "order": 96}, {"name": "Ellinor Vanderveer", "character": "Emile - Waiter (uncredited)", "id": 1269196, "credit_id": "53a1bea7c3a368417a000121", "cast_id": 116, "profile_path": null, "order": 97}, {"name": "Jack Wise", "character": "Waiter (uncredited)", "id": 1331779, "credit_id": "53a1bebec3a3684183000156", "cast_id": 117, "profile_path": null, "order": 98}, {"name": "Wolfgang Zilzer", "character": "Man with Expired Papers (uncredited)", "id": 29124, "credit_id": "53a1bed4c3a368418000012f", "cast_id": 118, "profile_path": null, "order": 99}, {"name": "Trude Berliner", "character": "Baccarat Player at Rick's (uncredited)", "id": 590709, "credit_id": "53e5fdea0e0a2628c700185e", "cast_id": 119, "profile_path": null, "order": 100}, {"name": "Paul Porcasi", "character": "Native Introducing Ferrari (uncredited)", "id": 115770, "credit_id": "549d5442c3a3682f23005b18", "cast_id": 120, "profile_path": null, "order": 101}], "directors": [{"name": "Michael Curtiz", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800b83b", "profile_path": "/6I1ChzgQvAV3RR48K40hdi3okFX.jpg", "id": 4109}], "vote_average": 7.4, "runtime": 102}, "290": {"poster_path": "/e0YvBTPwIL6Jb29glF3LE9n8GH2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6153939, "overview": "A renowned New York playwright is enticed to California to write for the movies and discovers the hellish truth of Hollywood.", "video": false, "id": 290, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Barton Fink", "tagline": "There's only one thing stranger than what's going on inside his head. What's going on outside.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101410", "adult": false, "backdrop_path": "/kptmPB0rwfLqf1yQPCWewCoyiiq.jpg", "production_companies": [{"name": "Circle Films", "id": 11273}, {"name": "Working Title Films", "id": 10163}], "release_date": "1991-08-01", "popularity": 0.869729601059424, "original_title": "Barton Fink", "budget": 9000000, "cast": [{"name": "John Turturro", "character": "Barton Fink", "id": 1241, "credit_id": "52fe4233c3a36847f800b965", "cast_id": 13, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 0}, {"name": "John Goodman", "character": "Charlie Meadows", "id": 1230, "credit_id": "52fe4233c3a36847f800b969", "cast_id": 14, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Judy Davis", "character": "Audrey Taylor", "id": 351, "credit_id": "52fe4233c3a36847f800b96d", "cast_id": 15, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 2}, {"name": "Michael Lerner", "character": "Jack Lipnick", "id": 4250, "credit_id": "52fe4233c3a36847f800b971", "cast_id": 16, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 3}, {"name": "John Mahoney", "character": "W.P. Mayhew", "id": 4251, "credit_id": "52fe4233c3a36847f800b975", "cast_id": 17, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 4}, {"name": "Jon Polito", "character": "Lou Breeze", "id": 4253, "credit_id": "52fe4233c3a36847f800b979", "cast_id": 18, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 5}, {"name": "Steve Buscemi", "character": "Chet", "id": 884, "credit_id": "52fe4233c3a36847f800b97d", "cast_id": 19, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 6}, {"name": "David Warrilow", "character": "Garland Stanford", "id": 4254, "credit_id": "52fe4233c3a36847f800b981", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Richard Portnow", "character": "Detective Mastrionotti", "id": 4255, "credit_id": "52fe4233c3a36847f800b985", "cast_id": 21, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 8}, {"name": "Christopher Murney", "character": "Detective Deutsch", "id": 4256, "credit_id": "52fe4233c3a36847f800b989", "cast_id": 22, "profile_path": "/vY73eTjQcvArvLzsxousmIgk1CP.jpg", "order": 9}, {"name": "I.M. Hobson", "character": "Derek", "id": 4257, "credit_id": "52fe4233c3a36847f800b98d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Harry Bugin", "character": "Pete", "id": 4510, "credit_id": "52fe4233c3a36847f800b991", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Lance Davis", "character": "Richard St. Claire", "id": 157607, "credit_id": "52fe4233c3a36847f800b9c5", "cast_id": 33, "profile_path": null, "order": 12}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800b92b", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800b931", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.3, "runtime": 116}, "49444": {"poster_path": "/9wCrh57WO3mPmn1hWnJRcvdFtIb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 570569112, "overview": "Po is now living his dream as The Dragon Warior, protecting the Valley of Peace alongside his friends and fellow kung fu masters, The Furious Five - Tigress, Crane, Mantis, Viper and Monkey. But Po\u2019s new life of awesomeness is threatened by the emergence of a formidable villain, who plans to use a secret, unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.", "video": false, "id": 49444, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Kung Fu Panda 2", "tagline": "Prepare for the Year of Awesomeness!", "vote_count": 681, "homepage": "http://www.kungfupanda.com/", "belongs_to_collection": {"backdrop_path": "/uDosHOFFWtF5YteBRygHALFqLw2.jpg", "poster_path": "/2QT6PuYXY0T2Ry9rX0JKQYTrbwx.jpg", "id": 77816, "name": "Kung Fu Panda Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1302011", "adult": false, "backdrop_path": "/eyiE1vuizMKVu8MoZkg2xsramFl.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2011-05-25", "popularity": 1.71575853844773, "original_title": "Kung Fu Panda 2", "budget": 150000000, "cast": [{"name": "Jack Black", "character": "Po (voice)", "id": 70851, "credit_id": "52fe4795c3a36847f813d913", "cast_id": 5, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Tigress (voice)", "id": 11701, "credit_id": "52fe4795c3a36847f813d90b", "cast_id": 3, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Shifu (voice)", "id": 4483, "credit_id": "52fe4795c3a36847f813d91b", "cast_id": 7, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Gary Oldman", "character": "Lord Shen (voice)", "id": 64, "credit_id": "52fe4795c3a36847f813d90f", "cast_id": 4, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 3}, {"name": "Jackie Chan", "character": "Monkey (voice)", "id": 18897, "credit_id": "52fe4795c3a36847f813d91f", "cast_id": 8, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 4}, {"name": "Seth Rogen", "character": "Mantis (voice)", "id": 19274, "credit_id": "52fe4795c3a36847f813d907", "cast_id": 2, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 5}, {"name": "Lucy Liu", "character": "Viper (voice)", "id": 140, "credit_id": "52fe4795c3a36847f813d923", "cast_id": 9, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 6}, {"name": "David Cross", "character": "Crane (voice)", "id": 212, "credit_id": "52fe4795c3a36847f813d917", "cast_id": 6, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 7}, {"name": "James Hong", "character": "Mr. Ping (voice)", "id": 20904, "credit_id": "52fe4795c3a36847f813d92f", "cast_id": 12, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 8}, {"name": "Michelle Yeoh", "character": "The Soothsayer (voice)", "id": 1620, "credit_id": "52fe4795c3a36847f813d92b", "cast_id": 11, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 9}, {"name": "Danny McBride", "character": "Wolf Boss (voice)", "id": 62862, "credit_id": "543c1fc90e0a26499e0062b0", "cast_id": 19, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 10}, {"name": "Dennis Haysbert", "character": "Master Storming Ox (voice)", "id": 352, "credit_id": "52fe4795c3a36847f813d94b", "cast_id": 17, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 11}, {"name": "Jean-Claude Van Damme", "character": "Master Croc (voice)", "id": 15111, "credit_id": "52fe4795c3a36847f813d927", "cast_id": 10, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 12}, {"name": "Victor Garber", "character": "Master Thundering Rhino (voice)", "id": 8536, "credit_id": "543c201cc3a368199c005ecf", "cast_id": 20, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 13}, {"name": "Mike Bell", "character": "Gorilla Guard 1 (voice) (as Michael Patrick Bell)", "id": 346, "credit_id": "55293ad0925141034600129d", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Jason Bertsch", "character": "Antelope Driver (voice)", "id": 1453780, "credit_id": "552be2bcc3a36830d40034e1", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Michael DeMaio", "character": "Happy Bunny (voice)", "id": 1453781, "credit_id": "552be2d1c3a36858d6006531", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Shane Glick", "character": "Wolf Soldier 4 (voice)", "id": 1453782, "credit_id": "552be2e6c3a3681f5c00736d", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Lena Golia", "character": "Pig Fan / Bunny (voice)", "id": 1453784, "credit_id": "552be2fd925141288b0029f1", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "April Hong", "character": "Mop Bunny (voice)", "id": 1453786, "credit_id": "552be327c3a3681f5c007385", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Joseph Izzo", "character": "Wolf Soldier 1 (voice)", "id": 1453790, "credit_id": "552be3b7c3a36859cf007771", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Alexandra Gold Jourden", "character": "Bunny Fan (voice) (as Alexandra Jourden)", "id": 38668, "credit_id": "552be3fbc3a36877de000010", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Stephen Kearin", "character": "Musician Pig / Awesome Pig (voice)", "id": 1448984, "credit_id": "552be41f92514121d6003ff4", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Liam Knight", "character": "Baby Po (voice)", "id": 1453793, "credit_id": "552be443c3a36843cd000b96", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Paul Mazursky", "character": "Musician Bunny (voice)", "id": 47773, "credit_id": "552be4acc3a36877de000037", "cast_id": 32, "profile_path": "/6YUp0e6fM0OmrB6STNY1ESwHcdG.jpg", "order": 25}, {"name": "Dan O'Connor", "character": "Stain Pig / Wolf Soldier 2 (voice)", "id": 1232325, "credit_id": "552be4f19251417c290025d5", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Jeremy Shipp", "character": "Dumpling Bunny (voice)", "id": 1448987, "credit_id": "552be506c3a36877de000054", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Maury Sterling", "character": "Wolf Soldier 3 (voice)", "id": 65726, "credit_id": "552be5689251413851000c3f", "cast_id": 36, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 29}, {"name": "Fred Tatasciore", "character": "Panda Dad / Gorilla Guard 2 (voice)", "id": 60279, "credit_id": "552be589925141265f004b5e", "cast_id": 37, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 30}, {"name": "Lauren Tom", "character": "Market Sheep (voice)", "id": 15100, "credit_id": "552be5a9c3a36859cf0077f5", "cast_id": 38, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 31}, {"name": "Romy Rosemont", "character": "Pig Mother (voice)", "id": 156342, "credit_id": "552be712c3a36843cd000c64", "cast_id": 39, "profile_path": "/yFYavAUr15Q4Z3H4p7IoNmul9TM.jpg", "order": 32}, {"name": "Conrad Vernon", "character": "Boar (voice)", "id": 12080, "credit_id": "552be792925141288b002b25", "cast_id": 40, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 33}], "directors": [{"name": "Jennifer Yuh", "department": "Directing", "job": "Director", "credit_id": "52fe4795c3a36847f813d903", "profile_path": null, "id": 142312}], "vote_average": 6.6, "runtime": 91}, "293": {"poster_path": "/wMCEbmbblsi8cqet9FcqzxfDRCu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43440294, "overview": "A River Runs Through is a cinematographically stunning true story of Norman Maclean. The story follows Norman and his brother Paul through the experiences of life and growing up, and how their love of fly fishing keeps them together despite varying life circumstances in the untamed west of Montana in the 1920's.", "video": false, "id": 293, "genres": [{"id": 18, "name": "Drama"}], "title": "A River Runs Through It", "tagline": "The Story of an American Family.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105265", "adult": false, "backdrop_path": "/n4qxvNA6u7UpeYE5n93MVxjMHZi.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1992-10-09", "popularity": 0.539115021095121, "original_title": "A River Runs Through It", "budget": 0, "cast": [{"name": "Brad Pitt", "character": "Paul Maclean", "id": 287, "credit_id": "52fe4233c3a36847f800bb79", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Craig Sheffer", "character": "Norman Maclean", "id": 4138, "credit_id": "52fe4233c3a36847f800bb7d", "cast_id": 5, "profile_path": "/izAHksLjKOhOUMJmOPkwcNs6Kls.jpg", "order": 1}, {"name": "Tom Skerritt", "character": "Rev. Maclean", "id": 4139, "credit_id": "52fe4233c3a36847f800bb81", "cast_id": 6, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 2}, {"name": "Brenda Blethyn", "character": "Mrs. Maclean", "id": 4154, "credit_id": "52fe4233c3a36847f800bbf7", "cast_id": 26, "profile_path": "/wp0tIM7dGDmc9TOrm9fgL7JkzQQ.jpg", "order": 3}, {"name": "Edie McClurg", "character": "Mrs. Burns", "id": 3202, "credit_id": "52fe4233c3a36847f800bbfb", "cast_id": 27, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 4}, {"name": "Stephen Shellen", "character": "Neal Burns", "id": 4156, "credit_id": "52fe4233c3a36847f800bbff", "cast_id": 28, "profile_path": "/2noNmjpB9gKpKTUjRpM9uQX8qln.jpg", "order": 5}, {"name": "Vann Gravage", "character": "Young Paul", "id": 4157, "credit_id": "52fe4233c3a36847f800bc03", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Susan Traylor", "character": "Rawhide", "id": 4158, "credit_id": "52fe4233c3a36847f800bc07", "cast_id": 30, "profile_path": "/A3ZpoAui1ure4Nx2b83wUMI8lvv.jpg", "order": 7}, {"name": "Nicole Burdette", "character": "Mabel", "id": 4159, "credit_id": "52fe4233c3a36847f800bc0b", "cast_id": 31, "profile_path": "/uhbivJXrZ4y7n3S3BuBQnfk8uG0.jpg", "order": 8}, {"name": "Emily Lloyd", "character": "Jessie Burns", "id": 18017, "credit_id": "52fe4233c3a36847f800bc0f", "cast_id": 32, "profile_path": "/5RcJwRweZkGVcLFBBRk2LDVN1JR.jpg", "order": 9}, {"name": "William Hootkins", "character": "Murphy", "id": 663, "credit_id": "52fe4233c3a36847f800bc13", "cast_id": 33, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Joseph Gordon-Levitt", "character": "Young Norman", "id": 24045, "credit_id": "54f2896dc3a3681b71000d4c", "cast_id": 34, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 11}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800bb69", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.7, "runtime": 123}, "8487": {"poster_path": "/uqoluoavY8US144kUu9lb4mZpD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222104681, "overview": "Legless Southern inventor Dr. Arliss Loveless plans to rekindle the Civil War by assassinating President U.S. Grant. Only two men can stop him: gunfighter James West and master-of-disguise and inventor Artemus Gordon. The two must team up to thwart Loveless' plans.", "video": false, "id": 8487, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 37, "name": "Western"}], "title": "Wild Wild West", "tagline": "It's a whole new west.", "vote_count": 282, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120891", "adult": false, "backdrop_path": "/2SyU1SFcHyAuP0Af8mAsjpj0JkC.jpg", "production_companies": [{"name": "Todman, Simon, LeMasters Productions", "id": 2507}], "release_date": "1999-06-29", "popularity": 0.99141927237941, "original_title": "Wild Wild West", "budget": 170000000, "cast": [{"name": "Will Smith", "character": "Capt. James West", "id": 2888, "credit_id": "52fe44adc3a36847f80a3bdb", "cast_id": 25, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Kevin Kline", "character": "U.S. Marshal Artemus Gordon", "id": 8945, "credit_id": "52fe44adc3a36847f80a3b67", "cast_id": 2, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 1}, {"name": "Kenneth Branagh", "character": "Dr. Arliss Loveless", "id": 11181, "credit_id": "52fe44adc3a36847f80a3b6b", "cast_id": 3, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 2}, {"name": "Salma Hayek", "character": "Rita Escobar", "id": 3136, "credit_id": "52fe44adc3a36847f80a3b6f", "cast_id": 4, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 3}, {"name": "M. Emmet Walsh", "character": "Coleman", "id": 588, "credit_id": "52fe44adc3a36847f80a3b73", "cast_id": 5, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 4}, {"name": "Ted Levine", "character": "General 'Bloodbath' McGrath", "id": 15854, "credit_id": "52fe44adc3a36847f80a3b77", "cast_id": 6, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 5}, {"name": "Frederique van der Wal", "character": "Amazonia", "id": 55254, "credit_id": "52fe44adc3a36847f80a3b7b", "cast_id": 7, "profile_path": "/lFA4IynHv2KXo8bziJoNXocHQT1.jpg", "order": 6}, {"name": "Musetta Vander", "character": "Munitia", "id": 1475, "credit_id": "52fe44adc3a36847f80a3b7f", "cast_id": 8, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 7}, {"name": "Sofia Eng", "character": "Miss Lippenrieder", "id": 55255, "credit_id": "52fe44adc3a36847f80a3b83", "cast_id": 9, "profile_path": "/bsK56atqQ3JtxE0I6jqdORIPvdT.jpg", "order": 8}, {"name": "Garcelle Beauvais", "character": "Belle", "id": 31647, "credit_id": "52fe44adc3a36847f80a3b87", "cast_id": 10, "profile_path": "/fuZx5JL2VeMM1nwrZw2pkAMxuVt.jpg", "order": 9}, {"name": "Mike H. McGaughy", "character": "Big reb", "id": 16163, "credit_id": "52fe44adc3a36847f80a3b8b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Bai Ling", "character": "Miss East", "id": 39126, "credit_id": "52fe44adc3a36847f80a3bd7", "cast_id": 24, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 11}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe44adc3a36847f80a3b91", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 5.3, "runtime": 106}, "8488": {"poster_path": "/wY1AsrhhymgxVruhkPtfBoLnUA3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368100420, "overview": "Dating coach Alex \"Hitch\" Hitchens (Will Smith) mentors a bumbling client, Albert (Kevin James), who hopes to win the heart of the glamorous Allegra Cole (Amber Valletta). While Albert makes progress, Hitchens faces his own romantic setbacks when proven techniques fail to work on Sara Melas (Eva Mendes), a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitchens' connection to Albert -- now Allegra's boyfriend -- it threatens to destroy both relationships.", "video": false, "id": 8488, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Hitch", "tagline": "The cure for the common man.", "vote_count": 439, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386588", "adult": false, "backdrop_path": "/4aur0Sum8KnL5XZU0tNDjRJDUtC.jpg", "production_companies": [{"name": "Overbrook Entertainment", "id": 12485}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2005-02-10", "popularity": 1.17086998518352, "original_title": "Hitch", "budget": 70000000, "cast": [{"name": "Will Smith", "character": "Alex 'Hitch' Hitchens", "id": 2888, "credit_id": "52fe44adc3a36847f80a3c4f", "cast_id": 17, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Sara Melas", "id": 8170, "credit_id": "52fe44adc3a36847f80a3c07", "cast_id": 2, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Kevin James", "character": "Albert Brennaman", "id": 32895, "credit_id": "52fe44adc3a36847f80a3c4b", "cast_id": 16, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 2}, {"name": "Amber Valletta", "character": "Allegra Cole", "id": 38425, "credit_id": "52fe44adc3a36847f80a3c0b", "cast_id": 4, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Julie Ann Emery", "character": "Casey Sedgewick", "id": 55256, "credit_id": "52fe44adc3a36847f80a3c0f", "cast_id": 5, "profile_path": "/9E6kRGO5gWoZ8NQOwkOXw5roe3U.jpg", "order": 4}, {"name": "Adam Arkin", "character": "Max", "id": 55257, "credit_id": "52fe44adc3a36847f80a3c13", "cast_id": 6, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 5}, {"name": "Robinne Lee", "character": "Cressida Baylor", "id": 55258, "credit_id": "52fe44adc3a36847f80a3c17", "cast_id": 7, "profile_path": "/dkt0s7GjQ2fEJGHYVd1T2pTqBET.jpg", "order": 6}, {"name": "Ryan Cross", "character": "Charles Wellington", "id": 237885, "credit_id": "52fe44adc3a36847f80a3c53", "cast_id": 18, "profile_path": "/tNtnLYzWY5mnHjVy4MolGZjIJzU.jpg", "order": 7}, {"name": "Michael Rapaport", "character": "Ben", "id": 4688, "credit_id": "52fe44adc3a36847f80a3c57", "cast_id": 19, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 8}, {"name": "Jeffrey Donovan", "character": "Vance", "id": 52886, "credit_id": "52fe44adc3a36847f80a3c5b", "cast_id": 20, "profile_path": "/5i47zZDpnAjLBtQdlqhg5AIYCuT.jpg", "order": 9}, {"name": "Ato Essandoh", "character": "Tanis", "id": 5377, "credit_id": "52fe44adc3a36847f80a3c5f", "cast_id": 21, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 10}, {"name": "Nathan Lee Graham", "character": "Geoff", "id": 203809, "credit_id": "53e0dd3c0e0a265a99006b50", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Paula Patton", "character": "Mandy", "id": 52851, "credit_id": "53e0dd800e0a265a90006f87", "cast_id": 23, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 12}, {"name": "Philip Bosco", "character": "Mr. O'Brian", "id": 6541, "credit_id": "53e0ddc00e0a265a90006f8e", "cast_id": 24, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 13}, {"name": "Navia Nguyen", "character": "Mika", "id": 19856, "credit_id": "53e0de11c3a3683fc000179f", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Matt Malloy", "character": "Pete", "id": 19208, "credit_id": "53e0de32c3a3686c5a003988", "cast_id": 26, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 15}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44adc3a36847f80a3c1d", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.3, "runtime": 118}, "297": {"poster_path": "/nlxPnkZY3vY1iehJriKMQcT6eua.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 142940100, "overview": "When the grim reaper comes to collect the soul of megamogul Bill Parrish, he arrives with a proposition: Host him for a \"vacation\" among the living in trade for a few more days of existence. Parrish agrees, and using the pseudonym Joe Black, Death begins taking part in Parrish's daily agenda and falls in love with the man's daughter. Yet when Black's holiday is over, so is Parrish's life.", "video": false, "id": 297, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Meet Joe Black", "tagline": "He's Expecting You.", "vote_count": 313, "homepage": "http://www.meetjoeblack.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119643", "adult": false, "backdrop_path": "/5SmEl42nLab7WOVpvbPuVKmy4uK.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "City Light Films", "id": 136}], "release_date": "1998-11-12", "popularity": 0.709747946254098, "original_title": "Meet Joe Black", "budget": 90000000, "cast": [{"name": "Brad Pitt", "character": "Joe Black", "id": 287, "credit_id": "52fe4234c3a36847f800bdbb", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "William Parrish", "id": 4173, "credit_id": "52fe4234c3a36847f800bdbf", "cast_id": 3, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Claire Forlani", "character": "Susan Parrish", "id": 4174, "credit_id": "52fe4234c3a36847f800bdc3", "cast_id": 4, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 2}, {"name": "Jeffrey Tambor", "character": "Quince", "id": 4175, "credit_id": "52fe4234c3a36847f800bdc7", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 3}, {"name": "Marcia Gay Harden", "character": "Allison Parrish", "id": 4726, "credit_id": "52fe4234c3a36847f800bdcb", "cast_id": 6, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 4}, {"name": "Jake Weber", "character": "Drew", "id": 4177, "credit_id": "52fe4234c3a36847f800bdcf", "cast_id": 7, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 5}, {"name": "David S. Howard", "character": "Eddie Sloane", "id": 4192, "credit_id": "52fe4234c3a36847f800be4b", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Lois Kelly-Miller", "character": "Jamaican Woman", "id": 4193, "credit_id": "52fe4234c3a36847f800be4f", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "Jahnni St. John", "character": "Jamaican Woman's Daughter", "id": 4194, "credit_id": "52fe4234c3a36847f800be53", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Richard Clarke", "character": "The Parrish's Butler", "id": 4195, "credit_id": "52fe4234c3a36847f800be57", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "June Squibb", "character": "Helen", "id": 35515, "credit_id": "52fe4234c3a36847f800be61", "cast_id": 34, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 10}], "directors": [{"name": "Martin Brest", "department": "Directing", "job": "Director", "credit_id": "52fe4234c3a36847f800be5d", "profile_path": null, "id": 769}], "vote_average": 6.7, "runtime": 178}, "298": {"poster_path": "/kJKPcrRZ49ug5xSgs6z1VADRV1E.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 311312624, "overview": "Danny Ocean's team of criminals are back and are composing a plan more personal than ever. When ruthless casino owner Willy Bank double-crosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that him and his team will do anything to bring Willy Bank and everything he's got down. Even if it includes hiring help from one of their own enemies, Terry Benedict.", "video": false, "id": 298, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ocean's Thirteen", "tagline": "What are the odds of getting even? 13 to one.", "vote_count": 857, "homepage": "http://oceans13.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/vxmFb03PyjycekffLqXqFibbCzx.jpg", "poster_path": "/CZs07c4vgMdPXqtVu7y8yhCdFx.jpg", "id": 304, "name": "Ocean's Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0496806", "adult": false, "backdrop_path": "/7ytb78OyijteFpFKKoZsYSvPw2u.jpg", "production_companies": [{"name": "Section Eight Productions", "id": 14315}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2007-06-07", "popularity": 0.902999603241554, "original_title": "Ocean's Thirteen", "budget": 85000000, "cast": [{"name": "George Clooney", "character": "Daniel Ocean", "id": 1461, "credit_id": "52fe4234c3a36847f800bea1", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Robert \u201cRusty\u201d Charles Ryan", "id": 287, "credit_id": "52fe4234c3a36847f800bf0f", "cast_id": 26, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Matt Damon", "character": "Linus Caldwell", "id": 1892, "credit_id": "52fe4234c3a36847f800bea5", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 2}, {"name": "Al Pacino", "character": "Willie Banks", "id": 1158, "credit_id": "52fe4234c3a36847f800bea9", "cast_id": 4, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 3}, {"name": "Bernie Mac", "character": "Frank Catton", "id": 1897, "credit_id": "52fe4234c3a36847f800bead", "cast_id": 5, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 4}, {"name": "Andy Garc\u00eda", "character": "Terry Benedict", "id": 1271, "credit_id": "52fe4234c3a36847f800beb1", "cast_id": 6, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 5}, {"name": "Casey Affleck", "character": "Virgil Malloy", "id": 1893, "credit_id": "52fe4234c3a36847f800beb5", "cast_id": 7, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 6}, {"name": "Scott Caan", "character": "Turk Malloy", "id": 1894, "credit_id": "52fe4234c3a36847f800beb9", "cast_id": 8, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 7}, {"name": "Carl Reiner", "character": "Saul Bloom", "id": 1895, "credit_id": "52fe4234c3a36847f800bebd", "cast_id": 9, "profile_path": "/mG0YcJ72Dw0jwFvg44lncv21mut.jpg", "order": 8}, {"name": "Don Cheadle", "character": "Basher Tarr", "id": 1896, "credit_id": "52fe4234c3a36847f800bec1", "cast_id": 10, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 9}, {"name": "Shaobo Qin", "character": "\u2018The Amazing\u2019 Yen", "id": 1900, "credit_id": "52fe4234c3a36847f800bec5", "cast_id": 11, "profile_path": "/d12Ni5dBctraHwkPsmLl6gPt3PR.jpg", "order": 10}, {"name": "Eddie Jemison", "character": "Livingston Dell", "id": 1898, "credit_id": "52fe4234c3a36847f800bec9", "cast_id": 12, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 11}, {"name": "Elliott Gould", "character": "Reuben Tishkoff", "id": 827, "credit_id": "52fe4234c3a36847f800becd", "cast_id": 13, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 12}, {"name": "Ellen Barkin", "character": "Abigail Sponder", "id": 6913, "credit_id": "52fe4234c3a36847f800bed1", "cast_id": 14, "profile_path": "/rjo0S9uJ9pIEZenvYVCEdqcR8Qu.jpg", "order": 13}, {"name": "Eddie Izzard", "character": "Roman Nagel", "id": 1926, "credit_id": "52fe4234c3a36847f800bed5", "cast_id": 15, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 14}, {"name": "Vincent Cassel", "character": "Fran\u00e7ois \u201cThe Nightfox\u201d Toulour", "id": 1925, "credit_id": "52fe4234c3a36847f800bed9", "cast_id": 16, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 15}, {"name": "Bob Einstein", "character": "FBI Agent", "id": 16302, "credit_id": "52fe4234c3a36847f800bedd", "cast_id": 17, "profile_path": "/rEssSY7Naj3xAEWqZ0xYEtubdns.jpg", "order": 16}, {"name": "Celine Dion", "character": "C\u00e9line Dion", "id": 16303, "credit_id": "52fe4234c3a36847f800bee1", "cast_id": 18, "profile_path": "/truzhpeyIihZWO7B9ZOON1CefxK.jpg", "order": 17}, {"name": "Nancy Stelle", "character": "Cocktail Waitress", "id": 1115997, "credit_id": "53022bbd92514161a207a27e", "cast_id": 28, "profile_path": "/31yKCmHc7ArQhDDxGMIbQXVkmyH.jpg", "order": 18}, {"name": "Tim Conlon", "character": "Agent Caldwell's 'Deputy'", "id": 1212249, "credit_id": "550429bdc3a36862e5000d23", "cast_id": 29, "profile_path": null, "order": 19}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4234c3a36847f800bee7", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.4, "runtime": 122}, "300": {"poster_path": "/8juTRqn5o43mnlVacp1IzZSd11N.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 9524340, "overview": "A man entranced by his dreams and imagination is lovestruck with a French woman and feels he can show her his world.", "video": false, "id": 300, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Science of Sleep", "tagline": "Close your eyes. Open your heart.", "vote_count": 51, "homepage": "http://www.lasciencedesreves-lefilm.com/accueil.htm", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0354899", "adult": false, "backdrop_path": "/h5ILYBMAYAlZbMypIImmSr2NGqZ.jpg", "production_companies": [{"name": "Partizan Films", "id": 11911}, {"name": "Gaumont", "id": 9}, {"name": "France 3 Cin\u00e9ma", "id": 591}, {"name": "Canal+", "id": 5358}, {"name": "TPS Star", "id": 6586}, {"name": "Mikado Film", "id": 11912}], "release_date": "2006-02-11", "popularity": 0.68534955233264, "original_title": "La science des r\u00eaves", "budget": 6000000, "cast": [{"name": "Gael Garc\u00eda Bernal", "character": "St\u00e9phane", "id": 258, "credit_id": "52fe4234c3a36847f800bfe9", "cast_id": 1, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 0}, {"name": "Charlotte Gainsbourg", "character": "St\u00e9phanie", "id": 4273, "credit_id": "52fe4234c3a36847f800bfed", "cast_id": 2, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Miou-Miou", "character": "Christine Miroux", "id": 4274, "credit_id": "52fe4234c3a36847f800bff1", "cast_id": 3, "profile_path": "/oqTRzZm0h7KDTQEy5K4DSskaBrm.jpg", "order": 2}, {"name": "Alain Chabat", "character": "Guy", "id": 4275, "credit_id": "52fe4234c3a36847f800bff5", "cast_id": 4, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 3}, {"name": "Emma de Caunes", "character": "Zo\u00e9", "id": 4286, "credit_id": "52fe4234c3a36847f800c041", "cast_id": 17, "profile_path": "/xKHtjT3A8Y5tpmxDs7PddlMP6M1.jpg", "order": 4}, {"name": "Aur\u00e9lia Petit", "character": "Martine", "id": 4287, "credit_id": "52fe4234c3a36847f800c045", "cast_id": 18, "profile_path": "/4a5lhGwOEOjM1WyTjALPe7cNzxK.jpg", "order": 5}, {"name": "Sacha Bourdo", "character": "Serge", "id": 4288, "credit_id": "52fe4234c3a36847f800c049", "cast_id": 19, "profile_path": "/atkezsosmJoUhIODou4cDdYLw0U.jpg", "order": 6}, {"name": "Pierre Vaneck", "character": "Mr. Pouchet", "id": 4289, "credit_id": "52fe4234c3a36847f800c04d", "cast_id": 20, "profile_path": "/ssRQynR6SHmDFtTNHey5FEB15vL.jpg", "order": 7}, {"name": "St\u00e9phane Metzger", "character": "Sylvain", "id": 4290, "credit_id": "52fe4234c3a36847f800c051", "cast_id": 21, "profile_path": "/lrQthI3W6FkNQ4W4dFiD5QykHM6.jpg", "order": 8}, {"name": "Alain de Moyencourt", "character": "G\u00e9rard", "id": 4291, "credit_id": "52fe4234c3a36847f800c055", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Inigo Lezzi", "character": "M. Persinnet", "id": 4292, "credit_id": "52fe4234c3a36847f800c059", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Yvette Petit", "character": "Ivana", "id": 4293, "credit_id": "52fe4234c3a36847f800c05d", "cast_id": 24, "profile_path": "/l4fbrnmLZUiMXEgfmVKCN7KedpX.jpg", "order": 11}, {"name": "Jean-Michel Bernard", "character": "Policier qui joue au piano", "id": 4278, "credit_id": "52fe4234c3a36847f800c061", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Bertrand Delpierre", "character": "Pr\u00e9sentateur JT", "id": 4294, "credit_id": "52fe4234c3a36847f800c065", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Eric Mariotto", "character": "Policier", "id": 4295, "credit_id": "52fe4234c3a36847f800c069", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe4234c3a36847f800bffb", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 7.2, "runtime": 105}, "303": {"poster_path": "/khQmkzBibHzTRIKSwsnVqR4GYxc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "Released shortly after the war, this classic Hitchcock film illustrates the battle between German Nazis and American spies in Rio de Janeiro where a German businessman keeps a wine cellar with uranium ore.", "video": false, "id": 303, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Notorious", "tagline": "Notorious woman of affairs... Adventurous man of the world", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0038787", "adult": false, "backdrop_path": "/tnpGBhOXnhJ0W2wW1wSNS8jbluC.jpg", "production_companies": [{"name": "RKO Radio Pictures", "id": 6}], "release_date": "1946-08-15", "popularity": 0.200179990954229, "original_title": "Notorious", "budget": 2000000, "cast": [{"name": "Cary Grant", "character": "T.R. Devlin", "id": 2638, "credit_id": "52fe4235c3a36847f800c21f", "cast_id": 4, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Ingrid Bergman", "character": "Alicia Huberman", "id": 4111, "credit_id": "52fe4235c3a36847f800c215", "cast_id": 2, "profile_path": "/iwU6mXNKj6VFvsGIEnNKu4UbXUL.jpg", "order": 1}, {"name": "Claude Rains", "character": "Alexander Sebastian", "id": 4113, "credit_id": "52fe4235c3a36847f800c223", "cast_id": 5, "profile_path": "/Ai8dxQY9p90n3YO9o3J6iEqxZ04.jpg", "order": 2}, {"name": "Louis Calhern", "character": "Captain Paul Prescott", "id": 4343, "credit_id": "52fe4235c3a36847f800c22b", "cast_id": 7, "profile_path": "/k0uuHPK8XgKO7D7iOF2SrxVeE69.jpg", "order": 3}, {"name": "Leopoldine Konstantin", "character": "Madame Anna Sebastian", "id": 4342, "credit_id": "52fe4235c3a36847f800c227", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Reinhold Sch\u00fcnzel", "character": "Dr. Anderson", "id": 4344, "credit_id": "52fe4235c3a36847f800c22f", "cast_id": 8, "profile_path": "/3XLrHa6YZ02vQjdqB9Bh3EoDgWX.jpg", "order": 5}, {"name": "Ivan Triesault", "character": "Eric Mathis", "id": 5041, "credit_id": "52fe4235c3a36847f800c281", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Alex Minotis", "character": "Joseph, Sebastian's Butler", "id": 5042, "credit_id": "52fe4235c3a36847f800c285", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Eberhard Krumschmidt", "character": "Emil Hupka", "id": 5043, "credit_id": "52fe4235c3a36847f800c289", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Fred Nurney", "character": "John Huberman", "id": 5044, "credit_id": "52fe4235c3a36847f800c28d", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Moroni Olsen", "character": "Walter Beardsley", "id": 18586, "credit_id": "52fe4235c3a36847f800c291", "cast_id": 26, "profile_path": "/20iaFC3qnVA9t77SFYnjVuJas1P.jpg", "order": 10}, {"name": "Wally Brown", "character": "Mr. Hopkins", "id": 96142, "credit_id": "52fe4235c3a36847f800c295", "cast_id": 27, "profile_path": "/6nTMECYTJx3UhbRvqWd3hDn5UB.jpg", "order": 11}, {"name": "Charles Mendl", "character": "Commodore (as Sir Charles Mendl)", "id": 96143, "credit_id": "52fe4235c3a36847f800c299", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Ricardo Costa", "character": "Dr. Julio Barbosa", "id": 96144, "credit_id": "52fe4235c3a36847f800c29d", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4235c3a36847f800c211", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.7, "runtime": 102}, "16690": {"poster_path": "/zRyjRf64k9GVQnZ6hxtAr2s1upj.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109862682, "overview": "The classic tale of 'Peter Pan' continues in Disney's sequel 'Return to Never Land'. In 1940 on a world besieged by World War II, Wendy, now grown up, has two children, one of them is her daughter, Jane.", "video": false, "id": 16690, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Return to Never Land", "tagline": "The Classic Continues", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AnhKboZjfeGuHI6qg7pp9RCesTF.jpg", "poster_path": "/t0mINaIut2aDKdGseQtC7UcbRNW.jpg", "id": 55422, "name": "Peter Pan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0280030", "adult": false, "backdrop_path": "/4yN4gLc0mZNORp9hQwj5kwdxw3q.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "Walt Disney Animation Canada", "id": 12402}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2002-02-14", "popularity": 1.05526008768092, "original_title": "Return to Never Land", "budget": 20000000, "cast": [{"name": "Harriet Owen", "character": "Jane / Young Wendy (Voice)", "id": 107358, "credit_id": "52fe46e59251416c7508729b", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Blayne Weaver", "character": "Peter Pan (Voice)", "id": 77885, "credit_id": "52fe46e59251416c7508729f", "cast_id": 2, "profile_path": "/iKR3Abk1B0Y3xHyLf7cvtZafzQH.jpg", "order": 1}, {"name": "Jeff Bennett", "character": "Smee (Voice)", "id": 34982, "credit_id": "52fe46e59251416c750872a3", "cast_id": 3, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 2}, {"name": "Kath Soucie", "character": "Wendy Darling (voice)", "id": 60739, "credit_id": "52fe46e59251416c750872a7", "cast_id": 4, "profile_path": "/urLkA155Yc19TKyeCUYGwzEt2PO.jpg", "order": 3}, {"name": "Corey Burton", "character": "Captain Hook (voice)", "id": 35219, "credit_id": "5459558a0e0a26115b0025a2", "cast_id": 8, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 4}, {"name": "Corey Burton", "character": "Wendy Darling (voice)", "id": 35219, "credit_id": "54595632c3a36839a0002612", "cast_id": 9, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 5}, {"name": "Andrew McDonough", "character": "Danny (voice)", "id": 1381842, "credit_id": "545956df0e0a26116500262d", "cast_id": 10, "profile_path": "/g2F6DMt6tI4ulZaqNBMm9pAFdJq.jpg", "order": 6}, {"name": "Roger Rees", "character": "Edward (voice)", "id": 16407, "credit_id": "545956f70e0a261165002637", "cast_id": 11, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 7}, {"name": "Spencer Breslin", "character": "Cubby (voice)", "id": 35654, "credit_id": "5459570ac3a36839a000262b", "cast_id": 12, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 8}, {"name": "Bradley Pierce", "character": "Nibs (voice)", "id": 145151, "credit_id": "545957260e0a2611620026a3", "cast_id": 13, "profile_path": "/rukciCbfBZWWvyJELZqxQWzSqnS.jpg", "order": 9}, {"name": "Quinn Beswick", "character": "Slightly (voice)", "id": 1381843, "credit_id": "54595746c3a368399d002681", "cast_id": 14, "profile_path": "/lXrNnHsPVTyWk3U7rpNNaVCR7z3.jpg", "order": 10}, {"name": "Aaron Spann", "character": "Twins (voice)", "id": 91785, "credit_id": "54595845c3a368398f0025b8", "cast_id": 15, "profile_path": "/40aZRhkPjKsdJ2cBlzMTSe6K30y.jpg", "order": 11}], "directors": [{"name": "Robin Budd", "department": "Directing", "job": "Director", "credit_id": "52fe46e59251416c750872ad", "profile_path": null, "id": 1027737}, {"name": "Donovan Cook", "department": "Directing", "job": "Director", "credit_id": "52fe46e59251416c750872b3", "profile_path": null, "id": 1027738}], "vote_average": 6.2, "runtime": 72}, "77875": {"poster_path": "/eOBekVFBGK4TwETQSwfuk22B41o.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A former sports star who's fallen on hard times starts coaching his son's soccer team in an attempt to get his life together.", "video": false, "id": 77875, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Playing for Keeps", "tagline": "", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1540128", "adult": false, "backdrop_path": "/cWHOiGw3JxKok3BdqFlxSmLKZ1O.jpg", "production_companies": [{"name": "Eclectic pictures", "id": 8056}], "release_date": "2012-12-07", "popularity": 0.895015883491753, "original_title": "Playing for Keeps", "budget": 35000000, "cast": [{"name": "Gerard Butler", "character": "George", "id": 17276, "credit_id": "52fe4980c3a368484e12ea5d", "cast_id": 8, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Stacie", "id": 10860, "credit_id": "52fe4980c3a368484e12ea61", "cast_id": 9, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Uma Thurman", "character": "Patti", "id": 139, "credit_id": "52fe4980c3a368484e12ea65", "cast_id": 10, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 2}, {"name": "Catherine Zeta-Jones", "character": "Denise", "id": 1922, "credit_id": "52fe4980c3a368484e12ea69", "cast_id": 11, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 3}, {"name": "Iqbal Theba", "character": "Param", "id": 154182, "credit_id": "52fe4980c3a368484e12ea6d", "cast_id": 12, "profile_path": "/gIkJnIfmX6JBKR8oYUERsy1Sy4v.jpg", "order": 4}, {"name": "Sean O'Bryan", "character": "Coach Jacob", "id": 33836, "credit_id": "52fe4980c3a368484e12ea71", "cast_id": 16, "profile_path": "/doVNkZLo1aqfRVfUymkjuTpyUYa.jpg", "order": 5}, {"name": "Dennis Quaid", "character": "Carl", "id": 6065, "credit_id": "52fe4980c3a368484e12ea81", "cast_id": 21, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 6}, {"name": "Judy Greer", "character": "Barb", "id": 20750, "credit_id": "52fe4980c3a368484e12ea85", "cast_id": 22, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 7}, {"name": "Noah Lomax", "character": "Lewis", "id": 524503, "credit_id": "52fe4980c3a368484e12ea89", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "James Tupper", "character": "Matt", "id": 119807, "credit_id": "52fe4980c3a368484e12ea8d", "cast_id": 24, "profile_path": "/eRl6B6WlnxPztKksIpnIp3votlL.jpg", "order": 9}], "directors": [{"name": "Gabriele Muccino", "department": "Directing", "job": "Director", "credit_id": "52fe4980c3a368484e12ea7d", "profile_path": "/uU23lwEwz3TnHl0DvvyePpaGuEG.jpg", "id": 20646}], "vote_average": 5.6, "runtime": 106}, "308": {"poster_path": "/pvtdRUpJE6YjIi8BLEZ7jhEdeN1.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45742101, "overview": "As the devoutly single Don Johnston is dumped by his latest girlfriend, he receives an anonymous pink letter informing him that he has a son who may be looking for him. The situation causes Don to examine his relationships with women instead of moving on to the next one, and he embarks on a cross-country search for his old flames who might possess clues to the mystery at hand.", "video": false, "id": 308, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Broken Flowers", "tagline": "Sometimes life brings some strange surprises.", "vote_count": 74, "homepage": "http://brokenflowersmovie.com/broken_flowers", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0412019", "adult": false, "backdrop_path": "/mQGEByVNnKiOVoAMDJ9KhvlCtgz.jpg", "production_companies": [{"name": "Focus Features", "id": 17301}, {"name": "Five Roses", "id": 22456}, {"name": "Bac Films", "id": 208}], "release_date": "2005-08-05", "popularity": 0.538683401105756, "original_title": "Broken Flowers", "budget": 10000000, "cast": [{"name": "Bill Murray", "character": "Don Johnston", "id": 1532, "credit_id": "52fe4235c3a36847f800c495", "cast_id": 2, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Julie Delpy", "character": "Sherry", "id": 1146, "credit_id": "52fe4235c3a36847f800c499", "cast_id": 3, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Sharon Stone", "character": "Laura", "id": 4430, "credit_id": "52fe4235c3a36847f800c49d", "cast_id": 4, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 2}, {"name": "Tilda Swinton", "character": "Penny", "id": 3063, "credit_id": "52fe4235c3a36847f800c4a1", "cast_id": 5, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 3}, {"name": "Jessica Lange", "character": "Carmen", "id": 4431, "credit_id": "52fe4235c3a36847f800c4a5", "cast_id": 6, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 4}, {"name": "Jeffrey Wright", "character": "Winston", "id": 2954, "credit_id": "52fe4235c3a36847f800c4a9", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 5}, {"name": "Frances Conroy", "character": "Dora", "id": 4432, "credit_id": "52fe4235c3a36847f800c4ad", "cast_id": 8, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 6}, {"name": "Alexis Dziena", "character": "Lolita", "id": 4433, "credit_id": "52fe4235c3a36847f800c4b1", "cast_id": 9, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 7}, {"name": "Heather Simms", "character": "Mona", "id": 4439, "credit_id": "52fe4235c3a36847f800c4df", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Brea Frazier", "character": "Rita", "id": 4440, "credit_id": "52fe4235c3a36847f800c4e3", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Pell James", "character": "Sun Green", "id": 4441, "credit_id": "52fe4235c3a36847f800c4e7", "cast_id": 19, "profile_path": "/dUDHtnP8dmGI4pV0S2fjuFQ5XzS.jpg", "order": 10}, {"name": "Ryan Donowho", "character": "Young Man on Bus", "id": 4442, "credit_id": "52fe4235c3a36847f800c4eb", "cast_id": 20, "profile_path": "/uSOlRTo6n605f1aPZJXGCseNcFr.jpg", "order": 11}, {"name": "Christopher McDonald", "character": "Ron", "id": 4443, "credit_id": "52fe4235c3a36847f800c4ef", "cast_id": 21, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 12}, {"name": "Chris Bauer", "character": "Dan", "id": 4445, "credit_id": "52fe4235c3a36847f800c4f3", "cast_id": 23, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 14}, {"name": "Chlo\u00eb Sevigny", "character": "Carmen's Assistant", "id": 2838, "credit_id": "52fe4235c3a36847f800c51b", "cast_id": 30, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 15}, {"name": "Mark Webber", "character": "The Kid", "id": 4451, "credit_id": "52fe4235c3a36847f800c51f", "cast_id": 31, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 16}, {"name": "Homer Murray", "character": "Kid in Car", "id": 4878, "credit_id": "52fe4235c3a36847f800c523", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Larry Fessenden", "character": "Will", "id": 31268, "credit_id": "52fe4235c3a36847f800c527", "cast_id": 33, "profile_path": "/ry1FD2hv1mop8QzPCVHzpDeCX1z.jpg", "order": 18}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe4235c3a36847f800c491", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 6.9, "runtime": 105}, "310": {"poster_path": "/lgYKHifMMLT8OxYObMKa8b4STsr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 484572835, "overview": "Bruce Nolan toils as a \"human interest\" television reporter in Buffalo, N.Y. Despite his high ratings and the love of his beautiful girlfriend, Grace, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God -- and the Almighty responds, endowing Bruce with all of His divine powers.", "video": false, "id": 310, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Bruce Almighty", "tagline": "In Bruce we trust", "vote_count": 894, "homepage": "http://www.brucealmighty.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8DWF5nzKeZvwC4Fi7iacobtMlbU.jpg", "id": 124949, "name": "Almighty Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0315327", "adult": false, "backdrop_path": "/bhEudqWbWsiEBdnl0kCIwFp5Hay.jpg", "production_companies": [{"name": "Pit Bull Productions", "id": 160}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Universal Pictures", "id": 33}, {"name": "Shady Acres Entertainment", "id": 159}], "release_date": "2003-05-21", "popularity": 2.18725935164958, "original_title": "Bruce Almighty", "budget": 80000000, "cast": [{"name": "Jim Carrey", "character": "Bruce Nolan", "id": 206, "credit_id": "52fe4235c3a36847f800c645", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Grace Connelly", "id": 4491, "credit_id": "52fe4235c3a36847f800c64f", "cast_id": 3, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Philip Baker Hall", "character": "Jack Baylor", "id": 4492, "credit_id": "52fe4236c3a36847f800c653", "cast_id": 4, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 2}, {"name": "Catherine Bell", "character": "Susan Ortega", "id": 4493, "credit_id": "52fe4236c3a36847f800c657", "cast_id": 5, "profile_path": "/7fLeVjQMTGbsbd0WfgaZSZ4wan2.jpg", "order": 3}, {"name": "Lisa Ann Walter", "character": "Debbie", "id": 4494, "credit_id": "52fe4236c3a36847f800c65b", "cast_id": 6, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 4}, {"name": "Steve Carell", "character": "Evan Baxter", "id": 4495, "credit_id": "52fe4236c3a36847f800c65f", "cast_id": 7, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 5}, {"name": "Nora Dunn", "character": "Ally Loman", "id": 4496, "credit_id": "52fe4236c3a36847f800c663", "cast_id": 8, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 6}, {"name": "Paul Satterfield", "character": "Dallas Coleman", "id": 4498, "credit_id": "52fe4236c3a36847f800c667", "cast_id": 10, "profile_path": "/cpGi1KJVDAcG4eVN4yWCPurKeZe.jpg", "order": 8}, {"name": "Morgan Freeman", "character": "God", "id": 192, "credit_id": "52fe4236c3a36847f800c6d1", "cast_id": 28, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 9}, {"name": "Eddie Jemison", "character": "Bobby", "id": 1898, "credit_id": "52fe4236c3a36847f800c6d5", "cast_id": 29, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 10}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4236c3a36847f800c66d", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 6.2, "runtime": 101}, "311": {"poster_path": "/fqP3Q7DWMFqW7mh11hWXbNwN9rz.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Though Sergio Leone is primarily known for his westerns, his final film is a sweeping gangster epic with meditations on friendship, loyalty, and the passage of time. Spanning decades, the film follows a group of Jewish gangsters from childhood into their glory years of prohibition, and their eventual reunion in later years.", "video": false, "id": 311, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Once Upon a Time in America", "tagline": "Crime, passion and lust for power - Sergio Leone's explosive saga of gangland America.", "vote_count": 283, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087843", "adult": false, "backdrop_path": "/vnT6HzjLSDrAweHn9xWykb8Ii6T.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "The Ladd Company", "id": 7965}], "release_date": "1984-02-17", "popularity": 0.986783058895811, "original_title": "Once Upon a Time in America", "budget": 30000000, "cast": [{"name": "Robert De Niro", "character": "David 'Noodles' Aaronson", "id": 380, "credit_id": "52fe4236c3a36847f800c749", "cast_id": 3, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "James Woods", "character": "Maximilian 'Max' Bercovicz", "id": 4512, "credit_id": "52fe4236c3a36847f800c74d", "cast_id": 4, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 1}, {"name": "Elizabeth McGovern", "character": "Deborah Gelly", "id": 4513, "credit_id": "52fe4236c3a36847f800c751", "cast_id": 5, "profile_path": "/oECBsmiZ8OWxm6iQCV5o0eViLRg.jpg", "order": 2}, {"name": "Tuesday Weld", "character": "Carol", "id": 4514, "credit_id": "52fe4236c3a36847f800c755", "cast_id": 6, "profile_path": "/wLVlljfTvppkfdQz9fNDizNpSuK.jpg", "order": 3}, {"name": "Treat Williams", "character": "James Conway O'Donnell", "id": 4515, "credit_id": "52fe4236c3a36847f800c759", "cast_id": 7, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 4}, {"name": "James Hayden", "character": "Patrick 'Patsy' Goldberg", "id": 4516, "credit_id": "52fe4236c3a36847f800c75d", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Joe Pesci", "character": "Frankie Minaldi", "id": 4517, "credit_id": "52fe4236c3a36847f800c761", "cast_id": 9, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 6}, {"name": "Larry Rapp", "character": "'Fat' Moe Gelly", "id": 4518, "credit_id": "52fe4236c3a36847f800c765", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Danny Aiello", "character": "Police Chief Vincent Aiello", "id": 1004, "credit_id": "52fe4236c3a36847f800c809", "cast_id": 47, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 8}, {"name": "William Forsythe", "character": "Philip 'Cockeye' Stein", "id": 4520, "credit_id": "52fe4236c3a36847f800c769", "cast_id": 11, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 9}, {"name": "Franco Ferrini", "character": "", "id": 4668, "credit_id": "52fe4236c3a36847f800c7a7", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Burt Young", "character": "Joe", "id": 4521, "credit_id": "52fe4236c3a36847f800c76d", "cast_id": 12, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 11}, {"name": "Scott Schutzman Tiler", "character": "Young Noodles", "id": 4750, "credit_id": "52fe4236c3a36847f800c7e7", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Rusty Jacobs", "character": "Young Max / David Bailey", "id": 4751, "credit_id": "52fe4236c3a36847f800c7eb", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Adrian Curran", "character": "Young Cockeye", "id": 4752, "credit_id": "52fe4236c3a36847f800c7ef", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Brian Bloom", "character": "Young Patsy", "id": 4753, "credit_id": "52fe4236c3a36847f800c7f3", "cast_id": 39, "profile_path": "/5Pc6tCfeVZFkBMQACRA318jqwph.jpg", "order": 15}, {"name": "Noah Moazezi", "character": "Dominic", "id": 4754, "credit_id": "52fe4236c3a36847f800c7f7", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Darlanne Fluegel", "character": "Eve", "id": 4761, "credit_id": "52fe4236c3a36847f800c7fb", "cast_id": 41, "profile_path": "/bhZdjbtZ71fsdYztrsq3KCC94F.jpg", "order": 17}, {"name": "Mike Monetti", "character": "Young 'Fat' Moe Gelly", "id": 4773, "credit_id": "52fe4236c3a36847f800c7ff", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Jennifer Connelly", "character": "Young Deborah", "id": 6161, "credit_id": "52fe4236c3a36847f800c849", "cast_id": 66, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 19}, {"name": "Clem Caserta", "character": "Al Capuano", "id": 17921, "credit_id": "543d06290e0a2653540016d5", "cast_id": 69, "profile_path": "/sXh8zi1BVBe0q9Hza3GhNvdTJsv.jpg", "order": 20}, {"name": "Frank Gio", "character": "Beefy", "id": 1373773, "credit_id": "543d09530e0a265357001729", "cast_id": 70, "profile_path": null, "order": 21}, {"name": "James Russo", "character": "Bugsy", "id": 785, "credit_id": "543d0e560e0a2653440017fa", "cast_id": 71, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 22}, {"name": "Richard Bright", "character": "Chicken Joe", "id": 3174, "credit_id": "543d0e8cc3a36815ea0015f6", "cast_id": 72, "profile_path": "/k2P17sxGhh7Dafidxn9Ub5YbF7n.jpg", "order": 23}, {"name": "Gerard Murphy", "character": "Crowning", "id": 151943, "credit_id": "543d0f8fc3a36815f600170d", "cast_id": 73, "profile_path": "/onkF4igAmOiiKl2wxXm8eSgLgFd.jpg", "order": 24}, {"name": "Margherita Pace", "character": "doublure de Jennifer Connelly", "id": 1373775, "credit_id": "543d138e0e0a265341001899", "cast_id": 74, "profile_path": null, "order": 25}, {"name": "Frank Sisto", "character": "Fred Capuano", "id": 1373776, "credit_id": "543d14afc3a36815ea001696", "cast_id": 75, "profile_path": null, "order": 26}, {"name": "Mike Gendel", "character": "Irving Gold", "id": 1373778, "credit_id": "543d1500c3a36815f60017a1", "cast_id": 76, "profile_path": null, "order": 27}, {"name": "Jerry Strivelli", "character": "Johnny Capuano", "id": 61236, "credit_id": "543d15660e0a265347001888", "cast_id": 77, "profile_path": null, "order": 28}, {"name": "Sandra Solberg", "character": "l'ami de Deborah jeune", "id": 1373779, "credit_id": "543d15a5c3a36815ed0018f2", "cast_id": 78, "profile_path": null, "order": 29}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4236c3a36847f800c745", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.6, "runtime": 229}, "314": {"poster_path": "/3E1XPZ2lZmL4lJV1KSUi1jaSx3w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82102379, "overview": "Liquidated after discovering a corporate conspiracy, mild-mannered graphic artist Patience Phillips washes up on an island, where she's resurrected and endowed with the prowess of a cat -- and she's eager to use her new skills ... as a vigilante. Before you can say \"cat and mouse,\" handsome gumshoe Tom Lone is on her tail.", "video": false, "id": 314, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Catwoman", "tagline": "CATch Her In IMAX", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327554", "adult": false, "backdrop_path": "/p7Q8RuElbCsVEb6TZ3vTXY5M5ev.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-07-23", "popularity": 0.899396687066679, "original_title": "Catwoman", "budget": 100000000, "cast": [{"name": "Halle Berry", "character": "Patience Phillips", "id": 4587, "credit_id": "52fe4236c3a36847f800ca9b", "cast_id": 2, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 0}, {"name": "Benjamin Bratt", "character": "Tom Lone", "id": 4589, "credit_id": "52fe4236c3a36847f800cab7", "cast_id": 7, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 1}, {"name": "Sharon Stone", "character": "Laurel Hedare", "id": 4430, "credit_id": "52fe4236c3a36847f800cabb", "cast_id": 8, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 2}, {"name": "Lambert Wilson", "character": "George Hedare", "id": 2192, "credit_id": "52fe4236c3a36847f800cabf", "cast_id": 9, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 3}, {"name": "Frances Conroy", "character": "Ophelia", "id": 4432, "credit_id": "52fe4236c3a36847f800cac3", "cast_id": 10, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 4}, {"name": "Alex Borstein", "character": "Sally", "id": 24357, "credit_id": "52fe4236c3a36847f800cac7", "cast_id": 11, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 5}, {"name": "Michael Massee", "character": "Armando", "id": 9289, "credit_id": "52fe4236c3a36847f800cacb", "cast_id": 12, "profile_path": "/qbM7GWc86Lw5y6E6eCnokgVaHia.jpg", "order": 6}, {"name": "Byron Mann", "character": "Wesley", "id": 57748, "credit_id": "52fe4236c3a36847f800cacf", "cast_id": 13, "profile_path": "/fF6ZlpZ8Jj5iiI5LQjSlaemeNe5.jpg", "order": 7}, {"name": "Kim Smith", "character": "Drina", "id": 141446, "credit_id": "52fe4236c3a36847f800cad3", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Christopher Heyerdahl", "character": "Rocker", "id": 32887, "credit_id": "52fe4236c3a36847f800cad7", "cast_id": 15, "profile_path": "/imu1EK0I8J5xesKxLweLqqhKq8q.jpg", "order": 9}, {"name": "Peter Wingfield", "character": "Dr. Ivan Slavicky", "id": 60462, "credit_id": "52fe4236c3a36847f800cadb", "cast_id": 16, "profile_path": "/usy4BEnrZ4b8WOTFPDYxlTSHBvS.jpg", "order": 10}, {"name": "Berend McKenzie", "character": "Lance", "id": 141447, "credit_id": "52fe4236c3a36847f800cadf", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Pitof", "department": "Directing", "job": "Director", "credit_id": "52fe4236c3a36847f800ca97", "profile_path": "/vsMggmTlZENErMCdw5fKtrCKAJp.jpg", "id": 4586}], "vote_average": 4.5, "runtime": 104}, "147773": {"poster_path": "/sXYsltqKCYbwKsquuswWAiycEBv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23198652, "overview": "Over the course of his summer break, a teenager comes into his own thanks in part to the friendship he strikes up with one of the park's managers.", "video": false, "id": 147773, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Way Way Back", "tagline": "We've all been there.", "vote_count": 233, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1727388", "adult": false, "backdrop_path": "/rMtDntmRmkXGSK7apEMe1OrVbOG.jpg", "production_companies": [{"name": "What Just Happened Productions", "id": 36208}, {"name": "Sycamore Pictures", "id": 14319}, {"name": "The Walsh Company", "id": 14320}, {"name": "OddLot Entertainment", "id": 36209}], "release_date": "2013-07-05", "popularity": 0.962327952727496, "original_title": "The Way Way Back", "budget": 4600000, "cast": [{"name": "Steve Carell", "character": "Trent", "id": 4495, "credit_id": "52fe4bb39251416c7510b383", "cast_id": 5, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Toni Collette", "character": "Pam", "id": 3051, "credit_id": "52fe4bb39251416c7510b38f", "cast_id": 13, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 1}, {"name": "AnnaSophia Robb", "character": "Susanna", "id": 1285, "credit_id": "52fe4bb39251416c7510b39f", "cast_id": 17, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "Owen", "id": 6807, "credit_id": "52fe4bb39251416c7510b387", "cast_id": 7, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Allison Janney", "character": "Betty", "id": 19, "credit_id": "52fe4bb39251416c7510b39b", "cast_id": 16, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 4}, {"name": "Liam James", "character": "Duncan", "id": 83852, "credit_id": "52fe4bb39251416c7510b38b", "cast_id": 12, "profile_path": "/heAbNsKPFDCFIrzy7zDeZm6w2xd.jpg", "order": 5}, {"name": "Amanda Peet", "character": "Joan", "id": 2956, "credit_id": "52fe4bb39251416c7510b393", "cast_id": 14, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 6}, {"name": "Maya Rudolph", "character": "Caitlyn", "id": 52792, "credit_id": "52fe4bb39251416c7510b397", "cast_id": 15, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 7}, {"name": "Rob Corddry", "character": "Kip", "id": 52997, "credit_id": "52fe4bb39251416c7510b3c3", "cast_id": 24, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 8}, {"name": "Nat Faxon", "character": "Roddy", "id": 105648, "credit_id": "52fe4bb39251416c7510b3bb", "cast_id": 22, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 9}, {"name": "Jim Rash", "character": "Lewis", "id": 161932, "credit_id": "52fe4bb39251416c7510b3bf", "cast_id": 23, "profile_path": "/eWBHlcgATCzoAqNDI7xiAPi7g1d.jpg", "order": 10}, {"name": "Zoe Levin", "character": "Steph", "id": 1190917, "credit_id": "52fe4bb39251416c7510b3c7", "cast_id": 25, "profile_path": "/uhJnIakHRrW30r1H8ljVUiTWR4E.jpg", "order": 11}, {"name": "River Alexander", "character": "Peter", "id": 1190919, "credit_id": "52fe4bb39251416c7510b3cb", "cast_id": 26, "profile_path": "/q5MzLpJWd0eafrBqQtnwHRh1Bmr.jpg", "order": 12}], "directors": [{"name": "Jim Rash", "department": "Directing", "job": "Director", "credit_id": "52fe4bb39251416c7510b373", "profile_path": "/eWBHlcgATCzoAqNDI7xiAPi7g1d.jpg", "id": 161932}, {"name": "Nat Faxon", "department": "Directing", "job": "Director", "credit_id": "52fe4bb39251416c7510b379", "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "id": 105648}], "vote_average": 7.2, "runtime": 103}, "319": {"poster_path": "/xBO8R3CZfrJ9rrwrZoJ68PgJyAR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12281551, "overview": "Clarence marries hooker Alabama, steals cocaine from her pimp, and tries to sell it in Hollywood, while the owners of the coke try to reclaim it.", "video": false, "id": 319, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "True Romance", "tagline": "Stealing, Cheating, Killing. Who said romance was dead?", "vote_count": 176, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0108399", "adult": false, "backdrop_path": "/f7EbIN1bMf8tOtoSmiqd6mO5p4P.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Davis-Films", "id": 342}, {"name": "August Entertainment", "id": 3322}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1993-09-09", "popularity": 0.914961858275389, "original_title": "True Romance", "budget": 12500000, "cast": [{"name": "Christian Slater", "character": "Clarence Worley", "id": 2224, "credit_id": "52fe4237c3a36847f800cdb7", "cast_id": 4, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Alabama Whitman", "id": 4687, "credit_id": "52fe4237c3a36847f800cdbb", "cast_id": 5, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Michael Rapaport", "character": "Dick Ritchie", "id": 4688, "credit_id": "52fe4237c3a36847f800cdbf", "cast_id": 6, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 2}, {"name": "Bronson Pinchot", "character": "Elliot Blitzer", "id": 4689, "credit_id": "52fe4237c3a36847f800cdc3", "cast_id": 7, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 3}, {"name": "Gary Oldman", "character": "Drexl Spivey", "id": 64, "credit_id": "52fe4237c3a36847f800cdc7", "cast_id": 8, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 4}, {"name": "Dennis Hopper", "character": "Clifford Worley", "id": 2778, "credit_id": "52fe4237c3a36847f800cdcb", "cast_id": 9, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 5}, {"name": "Christopher Walken", "character": "Vincenzo Coccotti", "id": 4690, "credit_id": "52fe4237c3a36847f800cdcf", "cast_id": 10, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 6}, {"name": "Brad Pitt", "character": "Floyd", "id": 287, "credit_id": "52fe4237c3a36847f800cdd3", "cast_id": 11, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 7}, {"name": "Tom Sizemore", "character": "Cody Nicholson", "id": 3197, "credit_id": "52fe4237c3a36847f800cdd7", "cast_id": 12, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 8}, {"name": "Samuel L. Jackson", "character": "Big Don", "id": 2231, "credit_id": "52fe4237c3a36847f800cddb", "cast_id": 13, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 9}, {"name": "Saul Rubinek", "character": "Lee Donowitz", "id": 3712, "credit_id": "52fe4237c3a36847f800cddf", "cast_id": 14, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 10}, {"name": "James Gandolfini", "character": "Virgil", "id": 4691, "credit_id": "52fe4237c3a36847f800cde3", "cast_id": 15, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 11}, {"name": "Frank Adonis", "character": "Frankie", "id": 4692, "credit_id": "52fe4237c3a36847f800cde7", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Paul Bates", "character": "Marty", "id": 4693, "credit_id": "52fe4237c3a36847f800cdeb", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Val Kilmer", "character": "Mentor", "id": 5576, "credit_id": "52fe4237c3a36847f800ce91", "cast_id": 46, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 14}, {"name": "Chris Penn", "character": "Nicky Dimes", "id": 2969, "credit_id": "52fe4237c3a36847f800ce95", "cast_id": 47, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 15}, {"name": "Anna Thomson", "character": "Lucy", "id": 3711, "credit_id": "54dcd141c3a3681233004837", "cast_id": 48, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 16}, {"name": "Eric Allan Kramer", "character": "Boris", "id": 41125, "credit_id": "54f366c99251416b3800459f", "cast_id": 49, "profile_path": "/dHXrTKp6Ksa4TzC2SJCGHzKKzpI.jpg", "order": 17}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4237c3a36847f800cda7", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 7.1, "runtime": 120}, "320": {"poster_path": "/zb0D3vfjcPFvuyHp1mFPOIcYJWH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67000000, "overview": "Two Los Angeles homicide detectives are dispatched to a northern town where the sun doesn't set to investigate the methodical murder of a local teen.", "video": false, "id": 320, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Insomnia", "tagline": "A tough cop. A brilliant killer. An unspeakable crime.", "vote_count": 224, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0278504", "adult": false, "backdrop_path": "/5ezMAWNO5ybkrEnxrgCy74krBa6.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Witt/Thomas Productions", "id": 1089}, {"name": "Section Eight", "id": 129}], "release_date": "2002-05-24", "popularity": 0.972766515814363, "original_title": "Insomnia", "budget": 46000000, "cast": [{"name": "Al Pacino", "character": "Will Dormer", "id": 1158, "credit_id": "52fe4237c3a36847f800cedd", "cast_id": 3, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Robin Williams", "character": "Walter Finch", "id": 2157, "credit_id": "52fe4237c3a36847f800cee1", "cast_id": 4, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Maura Tierney", "character": "Rachel Clement", "id": 16307, "credit_id": "52fe4237c3a36847f800cee5", "cast_id": 5, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 2}, {"name": "Hilary Swank", "character": "Ellie Burr", "id": 448, "credit_id": "52fe4237c3a36847f800ced9", "cast_id": 2, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 3}, {"name": "Martin Donovan", "character": "Hap Eckhart", "id": 42993, "credit_id": "52fe4237c3a36847f800cee9", "cast_id": 6, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 4}, {"name": "Oliver 'Ole' Zemen", "character": "Pilot", "id": 1075149, "credit_id": "52fe4237c3a36847f800ceed", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Paul Dooley", "character": "Chief Nyback", "id": 15900, "credit_id": "52fe4237c3a36847f800cef1", "cast_id": 8, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 6}, {"name": "Nicky Katt", "character": "Fred Duggar", "id": 18070, "credit_id": "52fe4237c3a36847f800cef5", "cast_id": 9, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 7}, {"name": "Larry Holden", "character": "Farrell", "id": 544, "credit_id": "52fe4237c3a36847f800cef9", "cast_id": 10, "profile_path": "/8yV3Rfvt0iWJZwO6jt2YnkdzdzL.jpg", "order": 8}, {"name": "Jay Brazeau", "character": "Francis", "id": 63791, "credit_id": "52fe4237c3a36847f800cefd", "cast_id": 11, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 9}, {"name": "Lorne Cardinal", "character": "Rich", "id": 179495, "credit_id": "52fe4237c3a36847f800cf01", "cast_id": 12, "profile_path": "/kYdEcebOBXPYloeZUeFvyARXkC9.jpg", "order": 10}, {"name": "James Hutson", "character": "Officer #1", "id": 65800, "credit_id": "52fe4237c3a36847f800cf05", "cast_id": 13, "profile_path": "/3JmDtYG87RaXBLVcMJ5CAwRgXIB.jpg", "order": 11}, {"name": "Andrew Campbell", "character": "Officer #2", "id": 169723, "credit_id": "52fe4237c3a36847f800cf09", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Paula Shaw", "character": "Coroner", "id": 99841, "credit_id": "52fe4237c3a36847f800cf0d", "cast_id": 15, "profile_path": "/bqVe6fyo0qtD5ra9KzLTcjm8tF0.jpg", "order": 13}, {"name": "Crystal Lowe", "character": "Kay Connell", "id": 58393, "credit_id": "52fe4237c3a36847f800cf11", "cast_id": 16, "profile_path": "/qnD1hQSJNrKPWZaiYFrUGUfZLBV.jpg", "order": 14}, {"name": "Tasha Simms", "character": "Mrs. Connell", "id": 83211, "credit_id": "52fe4237c3a36847f800cf15", "cast_id": 17, "profile_path": "/rUpxBaMRBei6jyyRTiUqszw566I.jpg", "order": 15}, {"name": "Jonathan Jackson", "character": "Randy Stetz", "id": 23495, "credit_id": "52fe4237c3a36847f800cf1f", "cast_id": 19, "profile_path": "/duZP6q1JQ1Is797xsZplydvgsRL.jpg", "order": 16}, {"name": "Malcolm Boddington", "character": "Principal", "id": 1089889, "credit_id": "52fe4237c3a36847f800cf23", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Katharine Isabelle", "character": "Tanya Francke", "id": 27136, "credit_id": "52fe4237c3a36847f800cf27", "cast_id": 21, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 18}, {"name": "Kerry Sandomirsky", "character": "Trish Eckhart", "id": 152410, "credit_id": "52fe4237c3a36847f800cf2b", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Chris Gauthier", "character": "Uniformed Officer", "id": 53119, "credit_id": "52fe4237c3a36847f800cf2f", "cast_id": 23, "profile_path": "/tzXtw8Mwdfv5Ofy6U9l27YZjZ0v.jpg", "order": 20}, {"name": "Ian Tracey", "character": "Warfield (voice)", "id": 25386, "credit_id": "52fe4237c3a36847f800cf33", "cast_id": 24, "profile_path": "/p2JEHCudpbZNOeNo3lYpLPOCaCD.jpg", "order": 21}, {"name": "Kate Robbins", "character": "Woman on the Road", "id": 162445, "credit_id": "52fe4237c3a36847f800cf37", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Emily Perkins", "character": "Girl at Funeral", "id": 64914, "credit_id": "52fe4237c3a36847f800cf3b", "cast_id": 26, "profile_path": "/z9XbUJ83nKoHjvdvbzrQFrQVx7R.jpg", "order": 23}, {"name": "Dean Wray", "character": "Ticket Taker", "id": 117997, "credit_id": "52fe4237c3a36847f800cf3f", "cast_id": 27, "profile_path": "/1Bk0OKpzgvKlHsbrGnLaVybltiY.jpg", "order": 24}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4237c3a36847f800ced5", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 6.6, "runtime": 118}, "322": {"poster_path": "/qeHasONCKH5sR9HcTWquXI5ZN5y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156822020, "overview": "A thriller about friendship and loyalty, guilt and vengeance, and the fateful affect the past has on the present. Sean Penn won an Oscar for his multifaceted performance as a father who lost his daughter.", "video": false, "id": 322, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mystic River", "tagline": "We bury our sins, we wash them clean.", "vote_count": 317, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327056", "adult": false, "backdrop_path": "/77SSqcbjWooVLUndqjhGugA8eln.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2003-10-07", "popularity": 1.61666706461608, "original_title": "Mystic River", "budget": 25000000, "cast": [{"name": "Sean Penn", "character": "Jimmy Markum", "id": 2228, "credit_id": "52fe4238c3a36847f800d061", "cast_id": 4, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Tim Robbins", "character": "Dave Boyle", "id": 504, "credit_id": "52fe4238c3a36847f800d065", "cast_id": 5, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Sean Devine", "id": 4724, "credit_id": "52fe4238c3a36847f800d069", "cast_id": 6, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Marcia Gay Harden", "character": "Celeste Boyle", "id": 4726, "credit_id": "52fe4238c3a36847f800d06d", "cast_id": 7, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 3}, {"name": "Kevin Chapman", "character": "Val Savage", "id": 4728, "credit_id": "52fe4238c3a36847f800d071", "cast_id": 8, "profile_path": "/7uhnHTZ8W4FsSTtbBSCuyeGGqlK.jpg", "order": 4}, {"name": "Tom Guiry", "character": "Brendan Harris", "id": 4729, "credit_id": "52fe4238c3a36847f800d075", "cast_id": 9, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 5}, {"name": "Emmy Rossum", "character": "Katie Markum", "id": 4730, "credit_id": "52fe4238c3a36847f800d079", "cast_id": 10, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 6}, {"name": "Spencer Treat Clark", "character": "Silent Ray Harris", "id": 4012, "credit_id": "52fe4238c3a36847f800d07d", "cast_id": 11, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 7}, {"name": "Andrew Mackin", "character": "John O'Shea", "id": 4731, "credit_id": "52fe4238c3a36847f800d081", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Adam Nelson", "character": "Nick Savage", "id": 4732, "credit_id": "52fe4238c3a36847f800d085", "cast_id": 13, "profile_path": "/wKAaHygc4o4Mr2HwBxPELm1ysqg.jpg", "order": 9}, {"name": "Robert Wahlberg", "character": "Kevin Savage", "id": 4733, "credit_id": "52fe4238c3a36847f800d089", "cast_id": 14, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 10}, {"name": "Jenny O'Hara", "character": "Esther Harris", "id": 4734, "credit_id": "52fe4238c3a36847f800d08d", "cast_id": 15, "profile_path": "/yyr6dyBOP1BQedXbQ3RDsvoLicb.jpg", "order": 11}, {"name": "John Doman", "character": "Driver", "id": 4735, "credit_id": "52fe4238c3a36847f800d091", "cast_id": 16, "profile_path": "/xfcSluMohRbnMySSlosFmlZyLLy.jpg", "order": 12}, {"name": "Cameron Bowen", "character": "Young Dave", "id": 4736, "credit_id": "52fe4238c3a36847f800d095", "cast_id": 17, "profile_path": "/c6Gy2DzAPE3fRW8IwFp9ING3DlM.jpg", "order": 13}, {"name": "Jason Kelly", "character": "Young Jimmy", "id": 4737, "credit_id": "52fe4238c3a36847f800d099", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Connor Paolo", "character": "Young Sean", "id": 4738, "credit_id": "52fe4238c3a36847f800d09d", "cast_id": 19, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 15}, {"name": "T. Bruce Page", "character": "Jimmy's Father", "id": 4739, "credit_id": "52fe4238c3a36847f800d0a1", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Miles Herter", "character": "Sean's Father", "id": 4740, "credit_id": "52fe4238c3a36847f800d0a5", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Cayden Boyd", "character": "Michael Boyle", "id": 4741, "credit_id": "52fe4238c3a36847f800d0a9", "cast_id": 22, "profile_path": "/fUs3Q321AELBrSxxm0W3OZlIhi.jpg", "order": 18}, {"name": "Tori Davis", "character": "Lauren Devine", "id": 4742, "credit_id": "52fe4238c3a36847f800d0ad", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Jonathan Togo", "character": "Pete", "id": 4743, "credit_id": "52fe4238c3a36847f800d0b1", "cast_id": 24, "profile_path": "/6TqThthkj9pND8ABuVHzgVOQbiL.jpg", "order": 20}, {"name": "Laurence Fishburne", "character": "Sergeant Whitey Powers", "id": 2975, "credit_id": "52fe4238c3a36847f800d0e5", "cast_id": 34, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 21}, {"name": "Laura Linney", "character": "Annabeth Markum", "id": 350, "credit_id": "52fe4238c3a36847f800d0e9", "cast_id": 35, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 22}, {"name": "Eli Wallach", "character": "Mr. Loonie - Liquor Store Owner (uncredited)", "id": 3265, "credit_id": "52fe4238c3a36847f800d0f3", "cast_id": 37, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 23}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4237c3a36847f800d051", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.2, "runtime": 138}, "41283": {"poster_path": "/xaHojTGfidOUfON6DGY14qUqATj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23081726, "overview": "Driver (Dwayne Johnson) has spent the last 10 years in prison planning revenge for the murder of his brother. Now that Driver is free to carry out his deadly plan only two men stand in his way- Billy Bob Thornton plays a veteran cop and Oliver Jackson-Cohen, a crazy hitman. With those two close on his trail, Driver races to carry out his mission as the mystery surrounding his brothers murder deepens.", "video": false, "id": 41283, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Faster", "tagline": "Slow Justice is No Justice", "vote_count": 207, "homepage": "http://www.fasterthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1433108", "adult": false, "backdrop_path": "/oSEq6TrGiGHo1p0gsY1rox2MTSg.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "State Street Pictures", "id": 3356}, {"name": "CBS Films", "id": 5490}], "release_date": "2010-11-23", "popularity": 0.854181353590194, "original_title": "Faster", "budget": 24000000, "cast": [{"name": "Dwayne Johnson", "character": "Driver", "id": 18918, "credit_id": "52fe45c0c3a36847f80d8817", "cast_id": 20, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Billy Bob Thornton", "character": "Cop", "id": 879, "credit_id": "52fe45c0c3a36847f80d87eb", "cast_id": 9, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 1}, {"name": "Maggie Grace", "character": "Lily", "id": 11825, "credit_id": "52fe45c0c3a36847f80d8807", "cast_id": 17, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 3}, {"name": "Carla Gugino", "character": "Cicero", "id": 17832, "credit_id": "52fe45c0c3a36847f80d87f7", "cast_id": 12, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 4}, {"name": "Tom Berenger", "character": "Warden", "id": 13022, "credit_id": "52fe45c0c3a36847f80d87df", "cast_id": 6, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 5}, {"name": "Jan Hoag", "character": "Receptionist", "id": 143204, "credit_id": "52fe45c0c3a36847f80d87e3", "cast_id": 7, "profile_path": "/k8KZOdJKwo3MXeohtsWLvzgxc2a.jpg", "order": 6}, {"name": "Courtney Gains", "character": "Telemarketer", "id": 18708, "credit_id": "52fe45c0c3a36847f80d87e7", "cast_id": 8, "profile_path": "/7u8dTzgr4ODfpKwdYoUlTwptoCq.jpg", "order": 7}, {"name": "Michael Irby", "character": "Vaquero", "id": 124304, "credit_id": "52fe45c0c3a36847f80d87ef", "cast_id": 10, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 8}, {"name": "Josh Clark", "character": "Uniform", "id": 143205, "credit_id": "52fe45c0c3a36847f80d87f3", "cast_id": 11, "profile_path": "/5MfUFuksjtkJVmWqiDmIfsKIWH.jpg", "order": 9}, {"name": "Michael Blain-Rozgay", "character": "TV Anchor", "id": 143206, "credit_id": "52fe45c0c3a36847f80d87fb", "cast_id": 13, "profile_path": "/9NxAdcXilvTJ3BUVhwDxio57U5I.jpg", "order": 10}, {"name": "Mike Epps", "character": "Roy Grone", "id": 51944, "credit_id": "52fe45c0c3a36847f80d87ff", "cast_id": 14, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 11}, {"name": "Sidney S. Liufau", "character": "Kenny", "id": 143208, "credit_id": "52fe45c0c3a36847f80d8803", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Moon Bloodgood", "character": "Marina", "id": 56455, "credit_id": "52fe45c0c3a36847f80d8821", "cast_id": 23, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 13}, {"name": "Adewale Akinnuoye-Agbaje", "character": "The Evangelist", "id": 31164, "credit_id": "52fe45c0c3a36847f80d8855", "cast_id": 32, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 14}, {"name": "Oliver Jackson-Cohen", "character": "Killer", "id": 551020, "credit_id": "52fe45c0c3a36847f80d8859", "cast_id": 33, "profile_path": "/qRtqkOYzm26zsZ9lRp8GQ1qO8ft.jpg", "order": 15}, {"name": "Jennifer Carpenter", "character": "Woman", "id": 53828, "credit_id": "53f710a4c3a36833f4005060", "cast_id": 35, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 16}, {"name": "Geraldine Keams", "character": "Preacher's Wife", "id": 1173474, "credit_id": "54d7a783c3a368439a005f64", "cast_id": 36, "profile_path": "/6UwlPREttyRXJNTyJNtWf7lvGU1.jpg", "order": 17}, {"name": "Buzz Belmondo", "character": "Preacher", "id": 1225650, "credit_id": "54d7a793c3a368439a005f66", "cast_id": 37, "profile_path": null, "order": 18}], "directors": [{"name": "George Tillman, Jr.", "department": "Directing", "job": "Director", "credit_id": "52fe45c0c3a36847f80d87db", "profile_path": "/np4Q1q68M8ejWmkUpChXTIVrQRO.jpg", "id": 66121}], "vote_average": 6.2, "runtime": 98}, "326": {"poster_path": "/dbt9YEAPZjd0LbaK1r8UnOZp2Uv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62022014, "overview": "America is on the search for the murderer Eddie Kim (Bryon Lawson). Sean Jones (Nathan Philips) must fly to L.A. to testify in a hearing against Kim. Accompanied by FBI agent Neville Flynn, the flight receives some unexpected visitors.", "video": false, "id": 326, "genres": [{"id": 28, "name": "Action"}], "title": "Snakes on a Plane", "tagline": "At 30,000 feet, snakes aren't the deadliest thing on this plane.", "vote_count": 109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0417148", "adult": false, "backdrop_path": "/iF5ix0kDBBdcJpMTAwa41znmxC1.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2006-08-18", "popularity": 0.461685755340521, "original_title": "Snakes on a Plane", "budget": 33000000, "cast": [{"name": "Samuel L. Jackson", "character": "Neville Flynn", "id": 2231, "credit_id": "52fe4238c3a36847f800d127", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Julianna Margulies", "character": "Claire Miller", "id": 25654, "credit_id": "52fe4238c3a36847f800d12b", "cast_id": 3, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 1}, {"name": "Kenan Thompson", "character": "Troy", "id": 77330, "credit_id": "52fe4238c3a36847f800d12f", "cast_id": 4, "profile_path": "/4mHHu3XXTOQ9yPKOQ3V8jsQyupT.jpg", "order": 2}, {"name": "Nathan Phillips", "character": "Sean Jones", "id": 60005, "credit_id": "52fe4238c3a36847f800d133", "cast_id": 5, "profile_path": "/mgR2JHtOp9sjvdj2me1p7wyJV4d.jpg", "order": 3}, {"name": "Rachel Blanchard", "character": "Mercedes", "id": 52478, "credit_id": "52fe4238c3a36847f800d137", "cast_id": 6, "profile_path": "/b8C355lKxrfwqHmCD3N22BjXMxz.jpg", "order": 4}, {"name": "Flex Alexander", "character": "Three G's", "id": 109686, "credit_id": "52fe4238c3a36847f800d13b", "cast_id": 7, "profile_path": "/s0KtM2EuM8k35bpep4sh5efzzCf.jpg", "order": 5}, {"name": "Keith Dallas", "character": "Troy", "id": 55788, "credit_id": "52fe4238c3a36847f800d13f", "cast_id": 8, "profile_path": "/4Qhhzd4DxOhKYnhxlrrpCzb5Tio.jpg", "order": 6}, {"name": "Lin Shaye", "character": "Grace", "id": 7401, "credit_id": "52fe4238c3a36847f800d143", "cast_id": 9, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 7}, {"name": "Bruce James", "character": "Ken", "id": 1154165, "credit_id": "52fe4238c3a36847f800d147", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Sunny Mabrey", "character": "Tiffany", "id": 58707, "credit_id": "52fe4238c3a36847f800d14b", "cast_id": 11, "profile_path": "/fKPc0yMFKIMJmvXH8yJcse22BmV.jpg", "order": 9}, {"name": "Casey Dubois", "character": "Curtis", "id": 132347, "credit_id": "52fe4238c3a36847f800d14f", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Gerard Plunkett", "character": "Paul", "id": 27124, "credit_id": "52fe4238c3a36847f800d153", "cast_id": 13, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 11}, {"name": "Terry Chen", "character": "Chen Leong", "id": 11677, "credit_id": "52fe4238c3a36847f800d157", "cast_id": 14, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "Elsa Pataky", "character": "Maria", "id": 73269, "credit_id": "52fe4238c3a36847f800d15b", "cast_id": 15, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 13}, {"name": "Emily Holmes", "character": "Ashley", "id": 37979, "credit_id": "52fe4238c3a36847f800d15f", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Emily Holmes", "character": "Tyler", "id": 37979, "credit_id": "52fe4238c3a36847f800d163", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Mark Houghton", "character": "John Sanders", "id": 26782, "credit_id": "52fe4238c3a36847f800d167", "cast_id": 18, "profile_path": "/cNXgbzlsbucTlj0w3PHhMDCLe0K.jpg", "order": 16}, {"name": "David Koechner", "character": "Rick", "id": 28638, "credit_id": "52fe4238c3a36847f800d16b", "cast_id": 19, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 17}, {"name": "Bobby Cannavale", "character": "Hank Harris", "id": 21127, "credit_id": "52fe4238c3a36847f800d16f", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 18}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d123", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 5.2, "runtime": 105}, "329": {"poster_path": "/c414cDeQ9b6qLPLeKmiJuLDUREJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 920100000, "overview": "A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.", "video": false, "id": 329, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Jurassic Park", "tagline": "An adventure 65 million years in the making.", "vote_count": 1784, "homepage": "http://www.jurassicpark.com/", "belongs_to_collection": {"backdrop_path": "/pJjIH9QN0OkHFV9eue6XfRVnPkr.jpg", "poster_path": "/aQR4VLVxfrTZedr5fml385PFRzI.jpg", "id": 328, "name": "Jurassic Park Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0107290", "adult": false, "backdrop_path": "/8LZ0r7r2SdJIApRvGo2k6CXHq8x.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1993-06-08", "popularity": 5.0912095520141, "original_title": "Jurassic Park", "budget": 63000000, "cast": [{"name": "Sam Neill", "character": "Dr. Alan Grant", "id": 4783, "credit_id": "52fe4238c3a36847f800d295", "cast_id": 4, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 0}, {"name": "Laura Dern", "character": "Dr. Ellie Sattler", "id": 4784, "credit_id": "52fe4238c3a36847f800d299", "cast_id": 5, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 1}, {"name": "Jeff Goldblum", "character": "Dr. Ian Malcolm", "id": 4785, "credit_id": "52fe4238c3a36847f800d29d", "cast_id": 6, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 2}, {"name": "Richard Attenborough", "character": "John Hammond", "id": 4786, "credit_id": "52fe4238c3a36847f800d2a1", "cast_id": 7, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 3}, {"name": "Bob Peck", "character": "Robert Muldoon", "id": 4789, "credit_id": "52fe4238c3a36847f800d2ad", "cast_id": 10, "profile_path": "/rZDQGYzVIHr78B86q3rgHffCJFZ.jpg", "order": 4}, {"name": "Martin Ferrero", "character": "Donald Gennaro", "id": 4790, "credit_id": "52fe4238c3a36847f800d2b5", "cast_id": 12, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 5}, {"name": "Joseph Mazzello", "character": "Tim Murphy", "id": 4787, "credit_id": "52fe4238c3a36847f800d2a5", "cast_id": 8, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 6}, {"name": "Ariana Richards", "character": "Lex Murphy", "id": 4788, "credit_id": "52fe4238c3a36847f800d2a9", "cast_id": 9, "profile_path": "/b4S0q3uSDIophwYcPlBABgJObSX.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Ray Arnold", "id": 2231, "credit_id": "52fe4238c3a36847f800d2b1", "cast_id": 11, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "BD Wong", "character": "Henry Wu", "id": 14592, "credit_id": "52fe4238c3a36847f800d2f7", "cast_id": 25, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 9}, {"name": "Wayne Knight", "character": "Dennis Nedry", "id": 4201, "credit_id": "52fe4238c3a36847f800d2b9", "cast_id": 13, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 10}, {"name": "Gerald R. Molen", "character": "Gerry Harding", "id": 2211, "credit_id": "52fe4238c3a36847f800d2fb", "cast_id": 26, "profile_path": "/ih3yLiYixeQuW2Zp545aHtD5nq.jpg", "order": 11}, {"name": "Miguel Sandoval", "character": "Juanito Rostagno", "id": 30488, "credit_id": "52fe4238c3a36847f800d2ff", "cast_id": 27, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 12}, {"name": "Cameron Thor", "character": "Lewis Dodgson", "id": 176312, "credit_id": "52fe4238c3a36847f800d303", "cast_id": 28, "profile_path": "/kOguY8OMOOBs2L9IyL6OzGvdxJ0.jpg", "order": 13}, {"name": "Christopher John Fields", "character": "Volunteer #1", "id": 145531, "credit_id": "52fe4238c3a36847f800d307", "cast_id": 29, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 14}, {"name": "Greg Burson", "character": "Mr. D.N.A. (voice)", "id": 4791, "credit_id": "52fe4238c3a36847f800d2bd", "cast_id": 14, "profile_path": "/A8sRcbpxZ5ft9UN8nRTc51DNWxS.jpg", "order": 15}, {"name": "Whit Hertford", "character": "Volunteer Boy (as Whitby Hertford)", "id": 166298, "credit_id": "52fe4238c3a36847f800d31d", "cast_id": 33, "profile_path": "/8jhUyJUXdXKh4RJPk2T9NMU5bWP.jpg", "order": 16}, {"name": "Dean Cundey", "character": "Mate", "id": 1060, "credit_id": "52fe4238c3a36847f800d321", "cast_id": 34, "profile_path": "/xunb0FZLZLhca2F5OJcKzV1mjR0.jpg", "order": 17}, {"name": "Jophery C. Brown", "character": "Worker in Raptor Pen (as Jophery Brown)", "id": 9559, "credit_id": "52fe4238c3a36847f800d325", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Tom Mishler", "character": "Helicopter Pilot", "id": 1278538, "credit_id": "52fe4238c3a36847f800d329", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Adrian Escober", "character": "Worker at Amber Mine", "id": 1278539, "credit_id": "52fe4238c3a36847f800d32d", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Richard Kiley", "character": "Jurassic Park Tour Voice (voice)", "id": 26660, "credit_id": "52fe4238c3a36847f800d331", "cast_id": 38, "profile_path": "/jqyhpE74uT5F2H1Ey8LllbKpdAK.jpg", "order": 21}, {"name": "Brad M. Bucklin", "character": "Lab Technician (uncredited)", "id": 1278540, "credit_id": "52fe4238c3a36847f800d335", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Laura Burnett", "character": "Archeologist (uncredited)", "id": 1278541, "credit_id": "52fe4238c3a36847f800d339", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Gary A. Rodriguez", "character": "Miner - Dug Out Mosquito (uncredited)", "id": 1004156, "credit_id": "52fe4238c3a36847f800d33d", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Brian Smrz", "character": "Driver of Grant, Sattler & Malcolm's Jeep (uncredited)", "id": 15335, "credit_id": "52fe4238c3a36847f800d341", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Robert 'Bobby Z' Zajonc", "character": "InGen Helicopter Pilot (uncredited)", "id": 1278542, "credit_id": "52fe4238c3a36847f800d345", "cast_id": 43, "profile_path": null, "order": 26}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d291", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.0, "runtime": 127}, "330": {"poster_path": "/u1fXmEQUCI9CjyHCCYOPBSq2DYo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 229074524, "overview": "Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that Hammond has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.", "video": false, "id": 330, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Lost World: Jurassic Park", "tagline": "Something has survived.", "vote_count": 1036, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pJjIH9QN0OkHFV9eue6XfRVnPkr.jpg", "poster_path": "/aQR4VLVxfrTZedr5fml385PFRzI.jpg", "id": 328, "name": "Jurassic Park Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119567", "adult": false, "backdrop_path": "/6KOPTlgmEb6MkKYTcDA1QAN6vGJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1997-05-19", "popularity": 3.37665076971257, "original_title": "The Lost World: Jurassic Park", "budget": 73000000, "cast": [{"name": "Jeff Goldblum", "character": "Dr. Ian Malcolm", "id": 4785, "credit_id": "52fe4238c3a36847f800d383", "cast_id": 1, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Dr. Sarah Harding", "id": 1231, "credit_id": "52fe4238c3a36847f800d387", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Pete Postlethwaite", "character": "Roland Tembo", "id": 4935, "credit_id": "52fe4238c3a36847f800d38b", "cast_id": 3, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 2}, {"name": "Richard Attenborough", "character": "John Hammond", "id": 4786, "credit_id": "52fe4238c3a36847f800d38f", "cast_id": 4, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 3}, {"name": "Vince Vaughn", "character": "Nick Van Owen", "id": 4937, "credit_id": "52fe4238c3a36847f800d393", "cast_id": 5, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 4}, {"name": "Arliss Howard", "character": "Peter Ludlow", "id": 3229, "credit_id": "52fe4238c3a36847f800d397", "cast_id": 6, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 5}, {"name": "Vanessa Lee Chester", "character": "Kelly Curtis Malcolm", "id": 4938, "credit_id": "52fe4238c3a36847f800d39b", "cast_id": 7, "profile_path": "/7MISWIcns6CLagoPnKGzRXchoMz.jpg", "order": 6}, {"name": "Joseph Mazzello", "character": "Tim Murphy", "id": 4787, "credit_id": "52fe4238c3a36847f800d39f", "cast_id": 8, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 7}, {"name": "Ariana Richards", "character": "Lex Murphy", "id": 4788, "credit_id": "52fe4238c3a36847f800d3a3", "cast_id": 9, "profile_path": "/b4S0q3uSDIophwYcPlBABgJObSX.jpg", "order": 8}, {"name": "Steven Spielberg", "character": "Popcorn-Eating Man", "id": 488, "credit_id": "52fe4238c3a36847f800d3a7", "cast_id": 10, "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "order": 9}, {"name": "Peter Stormare", "character": "Dieter Stark", "id": 53, "credit_id": "52fe4238c3a36847f800d3e7", "cast_id": 22, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 10}, {"name": "Camilla Belle", "character": "Cathy Bowman", "id": 38670, "credit_id": "52fe4238c3a36847f800d3f1", "cast_id": 24, "profile_path": "/dbfyIG91T5ROjDKRjWN8FpMcTay.jpg", "order": 11}, {"name": "Thomas Rosales, Jr.", "character": "Carter", "id": 43010, "credit_id": "52fe4238c3a36847f800d3f5", "cast_id": 25, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 12}, {"name": "Thomas F. Duffy", "character": "Dr. Robert Burke", "id": 46919, "credit_id": "52fe4238c3a36847f800d3f9", "cast_id": 26, "profile_path": "/jLANWUvY91SUNcBfB4z7PQUieE7.jpg", "order": 13}, {"name": "Richard Schiff", "character": "Eddie Carr", "id": 31028, "credit_id": "52fe4238c3a36847f800d3fd", "cast_id": 28, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 14}, {"name": "Harvey Jason", "character": "Ajay Sidhu", "id": 113935, "credit_id": "52fe4238c3a36847f800d401", "cast_id": 29, "profile_path": "/8wgzBygmr51OnXS2uJFZMerIzXT.jpg", "order": 15}, {"name": "Ian Abercrombie", "character": "Butler", "id": 11764, "credit_id": "52fe4238c3a36847f800d405", "cast_id": 30, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 16}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d3ad", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.0, "runtime": 129}, "32823": {"poster_path": "/a3HJGSFuFbaVAK3l8IqdVYchF0B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90029656, "overview": "Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.", "video": false, "id": 32823, "genres": [{"id": 35, "name": "Comedy"}], "title": "Get Him to the Greek", "tagline": "Aaron Green has 72 hours to get a Rock Star from London to L.A. Pray for him.", "vote_count": 179, "homepage": "http://www.gethimtothegreek.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1226229", "adult": false, "backdrop_path": "/5vEJkHXYDYW3RDZD31cQsQ0hoeF.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}], "release_date": "2010-06-04", "popularity": 1.00250919544375, "original_title": "Get Him to the Greek", "budget": 40000000, "cast": [{"name": "Jonah Hill", "character": "Aaron Green", "id": 21007, "credit_id": "52fe44e89251416c9102106d", "cast_id": 1, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Russell Brand", "character": "Aldous Snow", "id": 59919, "credit_id": "52fe44e89251416c91021071", "cast_id": 2, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Jackie Q", "id": 9827, "credit_id": "52fe44e89251416c91021075", "cast_id": 3, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Colm Meaney", "character": "Jonathan Snow", "id": 17782, "credit_id": "52fe44e89251416c91021079", "cast_id": 4, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 3}, {"name": "Sean Combs", "character": "Sergio Roma", "id": 16450, "credit_id": "52fe44e89251416c9102107d", "cast_id": 5, "profile_path": "/hbiHQv0Mz5hrFEMbcVxClSPV8FU.jpg", "order": 4}, {"name": "Tom Felton", "character": "Himself", "id": 10993, "credit_id": "52fe44e89251416c91021081", "cast_id": 6, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 5}, {"name": "Christina Aguilera", "character": "Herself", "id": 53397, "credit_id": "52fe44e89251416c91021085", "cast_id": 7, "profile_path": "/syaj20GgGkFaHtt0khpCZaJD5DJ.jpg", "order": 6}, {"name": "Katy Perry", "character": "Herself", "id": 111455, "credit_id": "52fe44e89251416c91021089", "cast_id": 8, "profile_path": "/mXSbYNKFessbuimdMIxccdRC8ph.jpg", "order": 7}, {"name": "Pink", "character": "Herself", "id": 77271, "credit_id": "52fe44e89251416c9102108d", "cast_id": 9, "profile_path": "/A4tOzacgaBltm522XYxLodG3ImX.jpg", "order": 8}, {"name": "Elisabeth Moss", "character": "Daphne Binks", "id": 32798, "credit_id": "52fe44e99251416c910210c7", "cast_id": 23, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 9}, {"name": "Christine Nguyen", "character": "Lap Dancer in Vegas", "id": 97906, "credit_id": "52fe44e99251416c910210d1", "cast_id": 25, "profile_path": "/46XQZRVaaPQwAwt6guNHxW7VIRM.jpg", "order": 10}, {"name": "Kali Hawk", "character": "Kali", "id": 89462, "credit_id": "52fe44e99251416c910210d5", "cast_id": 26, "profile_path": "/kx8aBd8FcC1gqWQ2OMV63hFza2Z.jpg", "order": 11}, {"name": "Lino Facioli", "character": "Naples", "id": 1014926, "credit_id": "52fe44e99251416c910210d9", "cast_id": 27, "profile_path": "/5OqKQqQBBu8TAEkw5y3rMlvKoS9.jpg", "order": 12}, {"name": "Ato Essandoh", "character": "Smiling African Drummer", "id": 5377, "credit_id": "52fe44e99251416c910210dd", "cast_id": 28, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 13}, {"name": "Derek Theler", "character": "Standard Guest", "id": 1057442, "credit_id": "52fe44e99251416c910210ff", "cast_id": 34, "profile_path": "/qMJWaezGr68GWOSciUXjVtU1sC4.jpg", "order": 14}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe44e89251416c91021093", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 5.9, "runtime": 109}, "332": {"poster_path": "/ii4W1UfRR9o4iBvqVn7xLQhAg3Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nebbish rent-a-cop John Brown clings to life after he's mangled in an explosion perpetrated by the iniquitous Dr. Claw. But robotics expert Brenda Bradford comes to his rescue and replaces his limbs with a cornucopia of gadgets. Transformed into crime-fighting machine, the newly-created Inspector Gadget vows revenge -- and he'll need all his mettle -- and metal -- to bring down Dr. Claw.", "video": false, "id": 332, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Inspector Gadget", "tagline": "The greatest hero ever assembled.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 237445, "name": "Inspector Gadget Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0141369", "adult": false, "backdrop_path": "/St6SHtq38JODJRcCN4G3BWvqJt.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Caravan Pictures", "id": 175}], "release_date": "1999-07-23", "popularity": 0.706168583767152, "original_title": "Inspector Gadget", "budget": 75000000, "cast": [{"name": "Matthew Broderick", "character": "Inspector Gadget / Robo Gadget / John Brown", "id": 4756, "credit_id": "52fe4238c3a36847f800d52d", "cast_id": 2, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Rupert Everett", "character": "Sanford Scolex", "id": 4757, "credit_id": "52fe4238c3a36847f800d531", "cast_id": 3, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 1}, {"name": "Joely Fisher", "character": "Brenda / Robobrenda", "id": 4758, "credit_id": "52fe4238c3a36847f800d535", "cast_id": 4, "profile_path": "/riZ02fz5sKs5X4MHpEoahk9Kl8h.jpg", "order": 2}, {"name": "Michelle Trachtenberg", "character": "Penny", "id": 49961, "credit_id": "52fe4239c3a36847f800d539", "cast_id": 5, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 3}, {"name": "Andy Dick", "character": "Kramer", "id": 43120, "credit_id": "52fe4239c3a36847f800d53d", "cast_id": 6, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 4}, {"name": "Cheri Oteri", "character": "Mayor Wilson", "id": 60252, "credit_id": "52fe4239c3a36847f800d541", "cast_id": 7, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 5}, {"name": "Mike Hagerty", "character": "Sikes", "id": 15105, "credit_id": "52fe4239c3a36847f800d551", "cast_id": 12, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 6}, {"name": "Dabney Coleman", "character": "Chief Quimby", "id": 12850, "credit_id": "52fe4239c3a36847f800d555", "cast_id": 13, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 7}, {"name": "D. L. Hughley", "character": "Gadgetmobile (voice)", "id": 85931, "credit_id": "52fe4239c3a36847f800d559", "cast_id": 14, "profile_path": "/72VEmMvVirWPpiPDWcMNIQswEoT.jpg", "order": 8}, {"name": "Rene Auberjonois", "character": "Artemus Bradford", "id": 9807, "credit_id": "52fe4239c3a36847f800d55d", "cast_id": 15, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 9}, {"name": "Frances Bay", "character": "Thelma", "id": 11794, "credit_id": "52fe4239c3a36847f800d561", "cast_id": 16, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 10}, {"name": "Mr. T", "character": "Himself", "id": 16619, "credit_id": "52fe4239c3a36847f800d565", "cast_id": 17, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 11}, {"name": "Richard Kiel", "character": "Famous Big Guy with Silver Teeth", "id": 10460, "credit_id": "52fe4239c3a36847f800d569", "cast_id": 18, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 12}, {"name": "Richard Lee-Sung", "character": "Famous Villain with Deadly Hat", "id": 61709, "credit_id": "52fe4239c3a36847f800d56d", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Bobby Bell", "character": "Famous Identifier of Sea Planes", "id": 81414, "credit_id": "52fe4239c3a36847f800d571", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "David Kellogg", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d529", "profile_path": "/8CqtSRR1QoLQGD1cbtoA1HwOF2u.jpg", "id": 4759}], "vote_average": 4.4, "runtime": 78}, "334": {"poster_path": "/jxkHxPiMfGiFvxSOduNV4oIKJI5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48451803, "overview": "An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.", "video": false, "id": 334, "genres": [{"id": 18, "name": "Drama"}], "title": "Magnolia", "tagline": "Things fall down. People look up. And when it rains, it pours.", "vote_count": 186, "homepage": "http://www.magnoliamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0175880", "adult": false, "backdrop_path": "/9In3XGQSdr2yfgUoEdCpqxEGAOO.jpg", "production_companies": [{"name": "Ghoulardi Film Company", "id": 178}, {"name": "The Magnolia Project", "id": 179}, {"name": "New Line Cinema", "id": 12}], "release_date": "1999-12-08", "popularity": 1.25854140637684, "original_title": "Magnolia", "budget": 37000000, "cast": [{"name": "Julianne Moore", "character": "Linda Partridge", "id": 1231, "credit_id": "52fe4239c3a36847f800d681", "cast_id": 3, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "William H. Macy", "character": "Donnie Smith", "id": 3905, "credit_id": "52fe4239c3a36847f800d6f3", "cast_id": 26, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 1}, {"name": "John C. Reilly", "character": "Jim Kurring", "id": 4764, "credit_id": "52fe4239c3a36847f800d685", "cast_id": 4, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 2}, {"name": "Tom Cruise", "character": "Frank T.J. Mackey", "id": 500, "credit_id": "52fe4239c3a36847f800d689", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 3}, {"name": "Philip Baker Hall", "character": "Jimmy Gator", "id": 4492, "credit_id": "52fe4239c3a36847f800d68d", "cast_id": 6, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Phil Parma", "id": 1233, "credit_id": "52fe4239c3a36847f800d691", "cast_id": 7, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Jason Robards", "character": "Earl Partridge", "id": 4765, "credit_id": "52fe4239c3a36847f800d695", "cast_id": 8, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 6}, {"name": "Alfred Molina", "character": "Solomon Solomon", "id": 658, "credit_id": "52fe4239c3a36847f800d699", "cast_id": 9, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 7}, {"name": "Melora Walters", "character": "Claudia Wilson Gator", "id": 4766, "credit_id": "52fe4239c3a36847f800d69d", "cast_id": 10, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 8}, {"name": "Michael Bowen", "character": "Rick Spector", "id": 2234, "credit_id": "52fe4239c3a36847f800d6a1", "cast_id": 11, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 9}, {"name": "Jeremy Blackman", "character": "Stanley Spector", "id": 4779, "credit_id": "52fe4239c3a36847f800d6ef", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Emmanuel Johnson", "character": "Dixon", "id": 4777, "credit_id": "52fe4239c3a36847f800d6e7", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Melinda Dillon", "character": "Rose Gator", "id": 4778, "credit_id": "52fe4239c3a36847f800d6eb", "cast_id": 24, "profile_path": "/f4DU3lNCJqNVgwDZmHMlNV96rKV.jpg", "order": 12}, {"name": "April Grace", "character": "Gwenovier", "id": 10691, "credit_id": "52fe4239c3a36847f800d6f7", "cast_id": 27, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 13}, {"name": "Felicity Huffman", "character": "Cynthia", "id": 7427, "credit_id": "52fe4239c3a36847f800d6fb", "cast_id": 28, "profile_path": "/wtFoENVM5jo4NhcWx9qFWuvFuXC.jpg", "order": 14}, {"name": "Orlando Jones", "character": "Worm", "id": 18270, "credit_id": "52fe4239c3a36847f800d6ff", "cast_id": 29, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 15}, {"name": "Ricky Jay", "character": "Narrator/Burt Ramsey", "id": 10743, "credit_id": "52fe4239c3a36847f800d703", "cast_id": 30, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 16}, {"name": "Patton Oswalt", "character": "Delmer Darion", "id": 10872, "credit_id": "52fe4239c3a36847f800d707", "cast_id": 31, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 17}, {"name": "Neil Flynn", "character": "Stanley Berry", "id": 43776, "credit_id": "52fe4239c3a36847f800d70b", "cast_id": 32, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 18}, {"name": "Henry Gibson", "character": "Thurston Howell", "id": 19439, "credit_id": "52fe4239c3a36847f800d72d", "cast_id": 38, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 19}, {"name": "Miriam Margolyes", "character": "Faye Barringer", "id": 6199, "credit_id": "53071373c3a368518100005a", "cast_id": 39, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 20}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4239c3a36847f800d677", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 7.3, "runtime": 188}, "335": {"poster_path": "/rVAHRtAMhV8QVXQMQ8NxNbZXCDp.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5321508, "overview": "This classic western masterpiece is an epic film about a widow whose land and life are in danger as the railroad is getting closer and closer to taking them over. A mysterious harmonica player joins forces with a desperado to protect the woman and her land.", "video": false, "id": 335, "genres": [{"id": 28, "name": "Action"}, {"id": 37, "name": "Western"}], "title": "Once Upon a Time in the West", "tagline": "There were three men in her life. One to take her... one to love her... and one to kill her.", "vote_count": 376, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064116", "adult": false, "backdrop_path": "/lagdbLlNPVVbFczUgRnGjdeKeQC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Finanzia San Marco", "id": 11386}, {"name": "Rafran Cinematografica", "id": 218}], "release_date": "1969-08-10", "popularity": 0.807393807533725, "original_title": "C'era una volta il West", "budget": 5000000, "cast": [{"name": "Henry Fonda", "character": "Frank", "id": 4958, "credit_id": "52fe4239c3a36847f800d781", "cast_id": 9, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 0}, {"name": "Claudia Cardinale", "character": "Jill McBain", "id": 4959, "credit_id": "52fe4239c3a36847f800d785", "cast_id": 10, "profile_path": "/tV3oboOm0Iix0AEtQKGPnPE2hbF.jpg", "order": 1}, {"name": "Jason Robards", "character": "Cheyenne", "id": 4765, "credit_id": "52fe4239c3a36847f800d789", "cast_id": 11, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 2}, {"name": "Charles Bronson", "character": "Harmonica", "id": 4960, "credit_id": "52fe4239c3a36847f800d78d", "cast_id": 12, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 3}, {"name": "Gabriele Ferzetti", "character": "Morton (railroad baron)", "id": 4961, "credit_id": "52fe4239c3a36847f800d791", "cast_id": 13, "profile_path": "/gpiJIBogUvPgKIwf65BXu37NDY1.jpg", "order": 4}, {"name": "Paolo Stoppa", "character": "Sam", "id": 4962, "credit_id": "52fe4239c3a36847f800d795", "cast_id": 14, "profile_path": "/clvCKNVh6NIMsTCFcgRWSCHuGwd.jpg", "order": 5}, {"name": "Woody Strode", "character": "Stony (member of Frank's gang)", "id": 4963, "credit_id": "52fe4239c3a36847f800d799", "cast_id": 15, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 6}, {"name": "Jack Elam", "character": "Snaky (member of Frank's gang)", "id": 4965, "credit_id": "52fe4239c3a36847f800d79d", "cast_id": 16, "profile_path": "/viH168AYhlsKm4jCT0zrWWAFr94.jpg", "order": 7}, {"name": "Keenan Wynn", "character": "Sheriff", "id": 4966, "credit_id": "52fe4239c3a36847f800d7a1", "cast_id": 17, "profile_path": "/6DcmPzaBXRrlgi75r2RK6yVWEMM.jpg", "order": 8}, {"name": "Frank Wolff", "character": "Brett McBain", "id": 4968, "credit_id": "52fe4239c3a36847f800d7a5", "cast_id": 18, "profile_path": "/iVv0TkXmoHNhJqM4fUdCWMRgXF9.jpg", "order": 9}, {"name": "Lionel Stander", "character": "Barman", "id": 4969, "credit_id": "52fe4239c3a36847f800d7a9", "cast_id": 19, "profile_path": "/gDbj1eKxhXraVY36m1q4ypAdegJ.jpg", "order": 10}, {"name": "Al Mulock", "character": "Knuckles - Member of Frank's Gang (uncredited)", "id": 129314, "credit_id": "53c6acacc3a36862600023e8", "cast_id": 32, "profile_path": "/80ibJHwEbjS6Wnb9DbkennzKLBL.jpg", "order": 11}, {"name": "Aldo Sambrell", "character": "Cheyenne's Lieutenant (uncredited)", "id": 49895, "credit_id": "53c6acc1c3a36862550022fb", "cast_id": 33, "profile_path": "/AuDVbzviUIWEi9PJAeilFWTf5Xq.jpg", "order": 12}, {"name": "Fabio Testi", "character": "Member of Frank's Gang with Black Hat at Auction (uncredited)", "id": 21181, "credit_id": "53c6acdac3a368624b0022c2", "cast_id": 34, "profile_path": "/qqE1Vh8guRCoIGkfNRuE0mXx0vL.jpg", "order": 13}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4239c3a36847f800d76b", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.8, "runtime": 175}, "338": {"poster_path": "/2YTTkqdiuQea07s1nMPGQTR58tt.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 79384880, "overview": "Good Bye Lenin was the biggest box-office hit for Germany in 2003. An affectionate and refreshing East/West-Germany comedy about a boy who\u2019s mother was in a coma while the Berlin wall fell and when she wakes up he must try to keep her from learning what happen (since she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.", "video": false, "id": 338, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Good Bye, Lenin!", "tagline": "The German Democratic Republic lives on -- in 79 square meters!", "vote_count": 144, "homepage": "http://www.good-bye-lenin.de/index2.php", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0301357", "adult": false, "backdrop_path": "/ihrwADHDVr0gj6FPbHDv8DZJn2I.jpg", "production_companies": [{"name": "WDR", "id": 46}, {"name": "X Filme", "id": 96}, {"name": "Arte", "id": 201}], "release_date": "2003-02-13", "popularity": 0.614069457270114, "original_title": "Good Bye, Lenin!", "budget": 4800000, "cast": [{"name": "Daniel Br\u00fchl", "character": "Alexander 'Alex' Kerner", "id": 3872, "credit_id": "52fe4239c3a36847f800d971", "cast_id": 4, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 0}, {"name": "Katrin Sass", "character": "Christiane Kerner", "id": 4792, "credit_id": "52fe4239c3a36847f800d975", "cast_id": 5, "profile_path": "/xnXEz2KIzZGn0P46LAWYpW2iYdf.jpg", "order": 1}, {"name": "Chulpan Khamatova", "character": "Lara", "id": 4793, "credit_id": "52fe4239c3a36847f800d979", "cast_id": 6, "profile_path": "/5bH3nmaZuHhQ0M1VIx4NfoUXZUA.jpg", "order": 2}, {"name": "Maria Simon", "character": "Ariane Kerner", "id": 4794, "credit_id": "52fe4239c3a36847f800d97d", "cast_id": 7, "profile_path": "/rTCZcZwtXZM23n3zmy7tO1XxwHC.jpg", "order": 3}, {"name": "Florian Lukas", "character": "Denis", "id": 4795, "credit_id": "52fe4239c3a36847f800d981", "cast_id": 8, "profile_path": "/g3AW6IIUEjmjCLTnS0Q5SfjcsUd.jpg", "order": 4}, {"name": "Alexander Beyer", "character": "Rainer", "id": 4796, "credit_id": "52fe4239c3a36847f800d985", "cast_id": 9, "profile_path": "/krl8hF4VBmbizQuddEoG6KvDW0o.jpg", "order": 5}, {"name": "Burghart Klau\u00dfner", "character": "Robert Kerner", "id": 3934, "credit_id": "52fe4239c3a36847f800d989", "cast_id": 10, "profile_path": "/uH3aUfhfgQy4eJvi5otRMKgIbme.jpg", "order": 6}, {"name": "Michael Gwisdek", "character": "Klapprath", "id": 697, "credit_id": "52fe4239c3a36847f800d98d", "cast_id": 11, "profile_path": "/rjOU3IAEkL7tjrcFjLtKurF5jD0.jpg", "order": 7}, {"name": "Christine Schorn", "character": "Frau Sch\u00e4fer", "id": 4797, "credit_id": "52fe4239c3a36847f800d991", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "J\u00fcrgen Holtz", "character": "Herr Ganske", "id": 4798, "credit_id": "52fe4239c3a36847f800d995", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Jochen Stern", "character": "Herr Mehlert", "id": 210570, "credit_id": "53e13dfcc3a3686c510040cd", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Stefan Walz", "character": "Taxifahrer / Sigmund J\u00e4hn", "id": 1350135, "credit_id": "53e13e42c3a3686c56004080", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Eberhard Kirchberg", "character": "Dr. Wagner", "id": 13746, "credit_id": "53e13e60c3a3686c5d0041f7", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Hans-Uwe Bauer", "character": "Dr. Mewes", "id": 8200, "credit_id": "53e13e77c3a3686c4d00418f", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "J\u00fcrgen Vogel", "character": "Das K\u00fcken", "id": 17373, "credit_id": "52fe4239c3a36847f800d9d5", "cast_id": 24, "profile_path": "/6YSNLd5gKHqDua5Qm2kCNOoU6GL.jpg", "order": 14}, {"name": "Elke Werner", "character": "Verk\u00e4uferin HO-Markt", "id": 17411, "credit_id": "52fe4239c3a36847f800d9d9", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Wolfgang Becker", "department": "Directing", "job": "Director", "credit_id": "52fe4239c3a36847f800d961", "profile_path": null, "id": 4780}], "vote_average": 7.2, "runtime": 121}, "183011": {"poster_path": "/kde98IJmR3HBh5B366dYlVE4BNK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When time travel allows a past wrong to be righted for The Flash and his family, the ripples of the event prove disastrous as a fractured, alternate reality now exists where a Justice League never formed, and even Superman is nowhere to be found. Teaming with a grittier, more violent Dark Knight and Cyborg, Flash races to restore the continuity of his original timeline while this new world is ravaged by a fierce war between Wonder Woman's Amazons and Aquaman\u2019s Atlanteans.", "video": false, "id": 183011, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Justice League: The Flashpoint Paradox", "tagline": "Fight the future.", "vote_count": 217, "homepage": "http://www.dccomics.com/movies/justice-league-the-flashpoint-paradox-2013", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2820466", "adult": false, "backdrop_path": "/zHKslz6juyOQdv8mKbOk6I4cZJj.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2013-07-28", "popularity": 0.640695163394888, "original_title": "Justice League: The Flashpoint Paradox", "budget": 3500000, "cast": [{"name": "Kevin Conroy", "character": "Bruce Wayne / Batman (voice)", "id": 34947, "credit_id": "52fe4c929251416c7511eb4b", "cast_id": 1, "profile_path": "/oWfPFRH65zNdeV46zSTXD0jVr8q.jpg", "order": 0}, {"name": "Vanessa Marshall", "character": "Wonder Woman (voice)", "id": 81663, "credit_id": "52fe4c929251416c7511eb4f", "cast_id": 2, "profile_path": "/wOXilt4TVOd0LuTw6RbWhe5DUy4.jpg", "order": 1}, {"name": "Ron Perlman", "character": "Slade Wilson / Deathstroke (voice)", "id": 2372, "credit_id": "52fe4c929251416c7511eb53", "cast_id": 3, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 2}, {"name": "Dana Delany", "character": "Lois Lane (voice)", "id": 65002, "credit_id": "52fe4c929251416c7511eb57", "cast_id": 4, "profile_path": "/dCvBuRdn2h4GpAfdJIzvl6MUqIG.jpg", "order": 3}, {"name": "C. Thomas Howell", "character": "Eobard Thawne / Reverse-Flash (voice)", "id": 2878, "credit_id": "52fe4c929251416c7511eb5b", "cast_id": 5, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 4}, {"name": "Kevin McKidd", "character": "Thomas Wayne / Flashpoint Batman (voice)", "id": 9013, "credit_id": "52fe4c939251416c7511eb83", "cast_id": 15, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 5}, {"name": "Michael B. Jordan", "character": "Cyborg (voice)", "id": 135651, "credit_id": "52fe4c939251416c7511eb87", "cast_id": 16, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 6}, {"name": "Sam Daly", "character": "Superman (voice)", "id": 1169115, "credit_id": "52fe4c939251416c7511eb8b", "cast_id": 17, "profile_path": "/gAHep3xTh4VfMZqeDtFvAjv5rcR.jpg", "order": 7}, {"name": "Justin Chambers", "character": "Barry Allen / The Flash (voice)", "id": 20746, "credit_id": "52fe4c939251416c7511eb8f", "cast_id": 18, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 8}, {"name": "Danny Huston", "character": "General Lane (voice)", "id": 6413, "credit_id": "52fe4c939251416c7511eb93", "cast_id": 19, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 9}, {"name": "Cary Elwes", "character": "Aquaman (voice)", "id": 2130, "credit_id": "52fe4c939251416c7511eb97", "cast_id": 21, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 10}, {"name": "Nathan Fillion", "character": "Hal Jordan / Green Lantern (voice)", "id": 51797, "credit_id": "52fe4c939251416c7511ebad", "cast_id": 25, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 11}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4c939251416c7511eb79", "profile_path": null, "id": 105643}], "vote_average": 7.0, "runtime": 75}, "340": {"poster_path": "/d83IUUdA8mbenp5RaEuC02MbN6f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2697930, "overview": "A film based on the semi-autobiographical novel of the same name by American writer Jonathan Safran Foer, in which a young Jewish American man endeavors\u2014with the help of eccentric, distant relatives\u2014to find the woman who saved his grandfather during World War II, in a Ukrainian village which was ultimately razed by the Nazis.", "video": false, "id": 340, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Everything is Illuminated", "tagline": "Leave Normal Behind.", "vote_count": 56, "homepage": "http://wip.warnerbros.com/everythingisilluminated/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404030", "adult": false, "backdrop_path": "/pHs2A0WLP64aumBsmyHulYiYKce.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Big Beach Productions", "id": 188}], "release_date": "2005-09-16", "popularity": 0.264998012931176, "original_title": "Everything is Illuminated", "budget": 7000000, "cast": [{"name": "Elijah Wood", "character": "Jonathan Safran Foer", "id": 109, "credit_id": "52fe423ac3a36847f800db5d", "cast_id": 5, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Eugene Hutz", "character": "Alex", "id": 4846, "credit_id": "52fe423ac3a36847f800db59", "cast_id": 4, "profile_path": "/6PaFzCej5B31OAv31t7L3ZTp2qn.jpg", "order": 1}, {"name": "Boris Leskin", "character": "Grandfather", "id": 4852, "credit_id": "52fe423ac3a36847f800db9d", "cast_id": 18, "profile_path": "/sYTOrRfehOEdYgyv0w1LLknbpOZ.jpg", "order": 2}, {"name": "Jana Hrabetova", "character": "Jonathan's Grandmother", "id": 4858, "credit_id": "52fe423ac3a36847f800db89", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Jonathan Safran Foer", "character": "Leaf Blower", "id": 4853, "credit_id": "52fe423ac3a36847f800db85", "cast_id": 12, "profile_path": "/cJwo2CO2B5PnAkCwHN6kej5ja3x.jpg", "order": 4}, {"name": "Stephen Samudovsky", "character": "Jonathan's Grandfather Safran", "id": 4861, "credit_id": "52fe423ac3a36847f800db8d", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Oleksandr Choroshko", "character": "Alexander Perchov, Father", "id": 4862, "credit_id": "52fe423ac3a36847f800db91", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Gil Kazimirov", "character": "Igor", "id": 4863, "credit_id": "52fe423ac3a36847f800db95", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Zuzana Hodkova", "character": "Alex's Mother", "id": 4860, "credit_id": "52fe423ac3a36847f800db99", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Ljubomir Dezera", "character": "Young Jonathan", "id": 4864, "credit_id": "52fe423ac3a36847f800dba1", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Laryssa Lauret", "character": "Lista", "id": 4879, "credit_id": "52fe423ac3a36847f800dbc9", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Tereza Veselkova", "character": "Augustine", "id": 4880, "credit_id": "52fe423ac3a36847f800dbcd", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Vera Sindelarova", "character": "Young Grandfather", "id": 4881, "credit_id": "52fe423ac3a36847f800dbd1", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Lukas Kral", "character": "Young Lista", "id": 4882, "credit_id": "52fe423ac3a36847f800dbd5", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Liev Schreiber", "department": "Directing", "job": "Director", "credit_id": "52fe423ac3a36847f800db49", "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "id": 23626}], "vote_average": 7.6, "runtime": 106}, "9614": {"poster_path": "/pG5edeKkntnt5A799Y0UNI5hi9W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41205099, "overview": "Failed hockey player-turned-golf whiz Happy Gilmore -- whose unconventional approach and antics on the grass courts the ire of rival Shooter McGavin -- is determined to win a PGA tournament so he can save his granny's house with the prize money. Meanwhile, an attractive tour publicist tries to soften Happy's image.", "video": false, "id": 9614, "genres": [{"id": 35, "name": "Comedy"}], "title": "Happy Gilmore", "tagline": "He doesn't play golf... he destroys it.", "vote_count": 216, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116483", "adult": false, "backdrop_path": "/z5qwh317CANMZO7KMPAEepwxlyq.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Brillstein-Grey Entertainment", "id": 1606}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "1996-02-16", "popularity": 0.492802350785399, "original_title": "Happy Gilmore", "budget": 10000000, "cast": [{"name": "Adam Sandler", "character": "Happy Gilmore", "id": 19292, "credit_id": "52fe4511c3a36847f80ba93d", "cast_id": 11, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Christopher McDonald", "character": "Shooter McGavin", "id": 4443, "credit_id": "52fe4511c3a36847f80ba941", "cast_id": 12, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 1}, {"name": "Julie Bowen", "character": "Virginia Venit", "id": 31171, "credit_id": "52fe4511c3a36847f80ba945", "cast_id": 13, "profile_path": "/fbELrYxMYvUftgceh0KXnw2mQ8r.jpg", "order": 2}, {"name": "Frances Bay", "character": "Grandma Gilmore", "id": 11794, "credit_id": "52fe4511c3a36847f80ba949", "cast_id": 14, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 3}, {"name": "Carl Weathers", "character": "Chubbs", "id": 1101, "credit_id": "52fe4511c3a36847f80ba94d", "cast_id": 15, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 4}, {"name": "Richard Kiel", "character": "Mr. Larson", "id": 10460, "credit_id": "52fe4511c3a36847f80ba951", "cast_id": 16, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 5}, {"name": "Bob Barker", "character": "Himself", "id": 170802, "credit_id": "52fe4511c3a36847f80ba955", "cast_id": 17, "profile_path": "/4ex3lzv9LEibpLibFkqSdWiRBMz.jpg", "order": 6}, {"name": "Allen Covert", "character": "Otto", "id": 20818, "credit_id": "52fe4511c3a36847f80ba959", "cast_id": 18, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 7}, {"name": "Joe Flaherty", "character": "Jeering Fan", "id": 59196, "credit_id": "52fe4511c3a36847f80ba95d", "cast_id": 19, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 8}, {"name": "Lee Trevino", "character": "Himself", "id": 392685, "credit_id": "52fe4511c3a36847f80ba961", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Robert Smigel", "character": "IRS Agent", "id": 53684, "credit_id": "52fe4511c3a36847f80ba965", "cast_id": 21, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 10}, {"name": "Dennis Dugan", "character": "Doug Thompson", "id": 17494, "credit_id": "52fe4511c3a36847f80ba969", "cast_id": 22, "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "order": 11}, {"name": "Kevin Nealon", "character": "Potter", "id": 58478, "credit_id": "52fe4511c3a36847f80ba96d", "cast_id": 23, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 12}, {"name": "Verne Lundquist", "character": "Announcer", "id": 1024638, "credit_id": "52fe4511c3a36847f80ba971", "cast_id": 24, "profile_path": "/AkUVqg2rkExTneawEUSYFjYnv8O.jpg", "order": 13}, {"name": "Jared Van Snellenberg", "character": "Happy's Waterbury Caddy", "id": 191857, "credit_id": "52fe4511c3a36847f80ba975", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Ken Camroux", "character": "Coach", "id": 106789, "credit_id": "52fe4511c3a36847f80ba979", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe4511c3a36847f80ba903", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.4, "runtime": 92}, "49494": {"poster_path": "/1e3SKFIEy8zPYICzQXBqeKM6xx8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27122040, "overview": "In 140 AD, twenty years after the unexplained disappearance of the entire Ninth Legion in the mountains of Scotland, young centurion Marcus Aquila (Tatum) arrives from Rome to solve the mystery and restore the reputation of his father, the commander of the Ninth. Accompanied only by his British slave Esca (Bell), Marcus sets out across Hadrian's Wall into the uncharted highlands of Caledonia - to confront its savage tribes, make peace with his father's memory, and retrieve the lost legion's golden emblem, the Eagle of the Ninth.", "video": false, "id": 49494, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "The Eagle", "tagline": "The destiny of a soldier. The honour of a slave. The fate of an empire.", "vote_count": 118, "homepage": "http://focusfeatures.com/the_eagle", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034389", "adult": false, "backdrop_path": "/aRL0VSl58stheyPRVDRtgbq1TEx.jpg", "production_companies": [{"name": "Prime Focus", "id": 15357}, {"name": "Toledo Productions", "id": 6326}, {"name": "Film4", "id": 9349}, {"name": "Focus Features", "id": 10146}, {"name": "Twins Financing", "id": 20899}], "release_date": "2011-02-08", "popularity": 0.550334844370062, "original_title": "The Eagle", "budget": 25000000, "cast": [{"name": "Channing Tatum", "character": "Marcus Aquila", "id": 38673, "credit_id": "52fe4797c3a36847f813de9d", "cast_id": 1, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Mark Strong", "character": "Guern", "id": 2983, "credit_id": "52fe4797c3a36847f813dea1", "cast_id": 2, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Esca", "id": 478, "credit_id": "52fe4797c3a36847f813dea5", "cast_id": 3, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Donald Sutherland", "character": "Aquila", "id": 55636, "credit_id": "52fe4797c3a36847f813dea9", "cast_id": 4, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 3}, {"name": "Denis O'Hare", "character": "Lotorius", "id": 81681, "credit_id": "52fe4797c3a36847f813dead", "cast_id": 5, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 4}, {"name": "Tahar Rahim", "character": "Seal Prince", "id": 81051, "credit_id": "53272edbc3a3684133004c70", "cast_id": 15, "profile_path": "/wXKlcceUG1aRzisnL2nxbQVe18w.jpg", "order": 5}, {"name": "Dakin Matthews", "character": "Claudius Marcellus", "id": 43364, "credit_id": "53272ef2c3a368572500bdd3", "cast_id": 16, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 6}, {"name": "Douglas Henshall", "character": "Cradoc", "id": 35862, "credit_id": "53272f03c3a36824af00446b", "cast_id": 17, "profile_path": "/liGX3t9DqAXK6vdq3SromuJYcqE.jpg", "order": 7}, {"name": "Paul Ritter", "character": "Galba", "id": 52888, "credit_id": "53272f15c3a36824b500b170", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Pip Carter", "character": "Servius Placidus", "id": 230681, "credit_id": "53272f25c3a36824b500b176", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Ned Dennehy", "character": "Seal Chief / The Horned One", "id": 63362, "credit_id": "53272f36c3a36813c2004843", "cast_id": 20, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 10}, {"name": "Istv\u00e1n G\u00f6z", "character": "Cohort Centurion", "id": 143576, "credit_id": "53272f48c3a3682378004c04", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bence Ger\u00f6", "character": "Celt Boy / Young Marcus", "id": 1301674, "credit_id": "53272f57c3a3683dbf004b8f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Zsolt L\u00e1szl\u00f3", "character": "Paulus", "id": 125381, "credit_id": "53272f63c3a36813c2004848", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Julian Lewis Jones", "character": "Cassius", "id": 109650, "credit_id": "53272f7ac3a36824af004474", "cast_id": 24, "profile_path": "/yYB4vsidFakP6oAfeXU3PZvDpM6.jpg", "order": 14}, {"name": "Brian Gleeson", "character": "Traveller #1", "id": 63364, "credit_id": "54b536d0c3a368783b002425", "cast_id": 25, "profile_path": "/o0Zic3R5sz2Mmrnz2CfvRuZYulY.jpg", "order": 15}, {"name": "Jon Campling", "character": "Traveller #2", "id": 1140635, "credit_id": "54b536dd9251417369004c7c", "cast_id": 26, "profile_path": "/u5Iu5PzbcJpiZTIbrg0z3tvJH3e.jpg", "order": 16}, {"name": "Alad\u00e1r Lakl\u00f3th", "character": "Flavius Aquila", "id": 1413152, "credit_id": "54b536eac3a3685fbd001cf6", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe4797c3a36847f813deb3", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 6.0, "runtime": 114}, "8536": {"poster_path": "/d8bydymAcNHwya3pHMyP62TL2re.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108185706, "overview": "Three escaped criminals from the planet Krypton test the Man of Steel's mettle. Led by Gen. Zod, the Kryptonians take control of the White House and partner with Lex Luthor to destroy Superman and rule the world. But Superman, who attempts to make himself human in order to get closer to Lois, realizes he has a responsibility to save the planet.", "video": false, "id": 8536, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman II", "tagline": "The Man of Steel meets his match!", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0081573", "adult": false, "backdrop_path": "/1d0bPDy0Ud7g7vZ5qnKI6HsduLE.jpg", "production_companies": [{"name": "International Film Productions", "id": 2039}, {"name": "Dovemead Films", "id": 51861}, {"name": "Film Export A.G.", "id": 51862}], "release_date": "1980-12-04", "popularity": 1.27619998162416, "original_title": "Superman II", "budget": 54000000, "cast": [{"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe44aec3a36847f80a3f33", "cast_id": 1, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 0}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe44aec3a36847f80a3f37", "cast_id": 2, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 1}, {"name": "Gene Hackman", "character": "Lex Luthor", "id": 193, "credit_id": "52fe44aec3a36847f80a3f3b", "cast_id": 3, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 2}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe44aec3a36847f80a3f3f", "cast_id": 4, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 3}, {"name": "Marc McClure", "character": "Jimmy Olsen", "id": 1067, "credit_id": "52fe44aec3a36847f80a3f43", "cast_id": 5, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 4}, {"name": "Ned Beatty", "character": "Otis", "id": 13726, "credit_id": "52fe44aec3a36847f80a3f47", "cast_id": 6, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 5}, {"name": "Sarah Douglas", "character": "Ursa", "id": 31364, "credit_id": "52fe44aec3a36847f80a3f4b", "cast_id": 7, "profile_path": "/als2MT3X28mDol3e5uEy25agNRM.jpg", "order": 6}, {"name": "Jack O'Halloran", "character": "Non", "id": 41224, "credit_id": "52fe44aec3a36847f80a3f4f", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Valerie Perrine", "character": "Eve Teschmacher", "id": 26483, "credit_id": "52fe44aec3a36847f80a3f53", "cast_id": 9, "profile_path": "/1Er0uPPTmQ7perH3hZmozvbYDX.jpg", "order": 8}, {"name": "Susannah York", "character": "Lara", "id": 13326, "credit_id": "52fe44aec3a36847f80a3f57", "cast_id": 10, "profile_path": "/uVWQdc4Oae7JlhewHYmxysOnORl.jpg", "order": 9}, {"name": "Terence Stamp", "character": "General Zod", "id": 28641, "credit_id": "52fe44aec3a36847f80a3f5b", "cast_id": 11, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 10}, {"name": "E.G. Marshall", "character": "US President", "id": 5249, "credit_id": "52fe44aec3a36847f80a3f5f", "cast_id": 12, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 11}, {"name": "Clifton James", "character": "Sheriff", "id": 10224, "credit_id": "52fe44aec3a36847f80a3f63", "cast_id": 13, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 12}, {"name": "Michael Shannon", "character": "President's Aide", "id": 1184168, "credit_id": "548090de9251416e6c002add", "cast_id": 31, "profile_path": "/iIKbgOWkiyDTT1ip3mSUxWRZTWZ.jpg", "order": 13}], "directors": [{"name": "Richard Lester", "department": "Directing", "job": "Director", "credit_id": "52fe44aec3a36847f80a3f69", "profile_path": "/2H4PFCd4G8BLHK34lTsUs3cn2tM.jpg", "id": 10586}], "vote_average": 6.2, "runtime": 127}, "345": {"poster_path": "/c8X6UIbzbhBBuyuHRrzVzaCMbkZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162091208, "overview": "After Dr. Bill Hartford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.", "video": false, "id": 345, "genres": [{"id": 18, "name": "Drama"}], "title": "Eyes Wide Shut", "tagline": "Cruise. Kidman. Kubrick.", "vote_count": 266, "homepage": "http://eyeswideshut.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120663", "adult": false, "backdrop_path": "/nTBRgAF4lWzGZ1GWOqsKkbBNWT.jpg", "production_companies": [{"name": "Pole Star", "id": 195}, {"name": "Warner Bros.", "id": 6194}, {"name": "Stanley Kubrick Productions", "id": 385}, {"name": "Hobby Films", "id": 194}], "release_date": "1999-07-16", "popularity": 0.670469302228305, "original_title": "Eyes Wide Shut", "budget": 65000000, "cast": [{"name": "Tom Cruise", "character": "Dr. William 'Bill' Harford", "id": 500, "credit_id": "52fe423ac3a36847f800df1b", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Alice Harford", "id": 2227, "credit_id": "52fe423ac3a36847f800df1f", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Madison Eginton", "character": "Helena Harford", "id": 5006, "credit_id": "52fe423ac3a36847f800df23", "cast_id": 3, "profile_path": "/jenk3RaSLnX2tI2YP2rTfDKC3J4.jpg", "order": 2}, {"name": "Jackie Sawiris", "character": "Roz", "id": 5007, "credit_id": "52fe423ac3a36847f800df27", "cast_id": 4, "profile_path": "/cLss5E3ZOCoSlT8mEhSsiJzCeio.jpg", "order": 3}, {"name": "Sydney Pollack", "character": "Victor Ziegler", "id": 2226, "credit_id": "52fe423ac3a36847f800df2b", "cast_id": 5, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 4}, {"name": "Leslie Lowe", "character": "Illona Ziegler", "id": 5008, "credit_id": "52fe423ac3a36847f800df2f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Peter Benson", "character": "Bandleader", "id": 1292351, "credit_id": "53f1c816c3a3685af2004554", "cast_id": 29, "profile_path": "/ws1BahUp7EybJ7u1ovhRFubsjpX.jpg", "order": 6}, {"name": "Todd Field", "character": "Nick Nightingale", "id": 5010, "credit_id": "52fe423ac3a36847f800df37", "cast_id": 8, "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "order": 7}, {"name": "Michael Doven", "character": "Ziegler's Secretary", "id": 5011, "credit_id": "52fe423bc3a36847f800df3b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Sky du Mont", "character": "Sandor Szavost", "id": 5012, "credit_id": "52fe423bc3a36847f800df3f", "cast_id": 10, "profile_path": "/8BEBOXP0BToOi4m9KBWAcWPGPlr.jpg", "order": 9}, {"name": "Julienne Davis", "character": "Amanda 'Mandy' Curran", "id": 5023, "credit_id": "52fe423bc3a36847f800df97", "cast_id": 25, "profile_path": "/wwNoWvD5sdDAnRoVaj6jqYjLsRu.jpg", "order": 10}, {"name": "Marie Richardson", "character": "Marion Nathanson", "id": 5024, "credit_id": "52fe423bc3a36847f800df9b", "cast_id": 26, "profile_path": "/c7lcHFTxgHarcgOZqACZ1a7hTEK.jpg", "order": 11}, {"name": "Vinessa Shaw", "character": "Domino", "id": 5025, "credit_id": "52fe423bc3a36847f800df9f", "cast_id": 27, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 12}, {"name": "Leelee Sobieski", "character": "Milich's Daughter", "id": 22290, "credit_id": "52fe423bc3a36847f800dfa3", "cast_id": 28, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 13}, {"name": "Alan Cumming", "character": "Desk Clerk", "id": 10697, "credit_id": "5482496a9251414efa0075ff", "cast_id": 30, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 14}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800df45", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 6.7, "runtime": 159}, "346": {"poster_path": "/5hqbJSmtAimbaP3XcYshCixuUtk.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 269061, "overview": "A veteran samurai, who has fallen on hard times, answers a village's request for protection from bandits. He gathers 6 other samurai to help him, and they teach the townspeople how to defend themselves, and they supply the samurai with three small meals a day. The film culminates in a giant battle when 40 bandits attack the village.", "video": false, "id": 346, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Seven Samurai", "tagline": "Will Take Its Place With the Seven Greatest Films of All Time!", "vote_count": 250, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0047478", "adult": false, "backdrop_path": "/61vLiK96sbXeHpQiMxI4CuqBA3z.jpg", "production_companies": [{"name": "Toho Company", "id": 882}], "release_date": "1954-04-26", "popularity": 1.19199337171272, "original_title": "\u4e03\u4eba\u306e\u4f8d", "budget": 500000, "cast": [{"name": "Toshir\u014d Mifune", "character": "Kikuchiyo", "id": 7450, "credit_id": "52fe423bc3a36847f800e015", "cast_id": 13, "profile_path": "/32nCFJneAfmZxYTQsaF5bcmCB7e.jpg", "order": 0}, {"name": "Takashi Shimura", "character": "Kambei Shimada", "id": 7453, "credit_id": "52fe423bc3a36847f800dff3", "cast_id": 5, "profile_path": "/k8Ff4Nq2peKfiUpd8IILrSBM0ts.jpg", "order": 1}, {"name": "Yoshio Inaba", "character": "Gorobei Katayama", "id": 20828, "credit_id": "52fe423bc3a36847f800dff7", "cast_id": 6, "profile_path": "/3q3nR6a0aeBOBi84712ZX04dC1O.jpg", "order": 2}, {"name": "Seiji Miyaguchi", "character": "Kyuzo", "id": 20829, "credit_id": "52fe423bc3a36847f800dffb", "cast_id": 7, "profile_path": "/q2I5eEnqGK1A2AmCvYaPF8pMDtf.jpg", "order": 3}, {"name": "Minoru Chiaki", "character": "Heihachi Hayashida", "id": 7454, "credit_id": "52fe423bc3a36847f800dfff", "cast_id": 8, "profile_path": "/yuHeTk3R9XGrPo1i1EbR3kfQibd.jpg", "order": 4}, {"name": "Daisuke Kat\u00f4", "character": "Shichiroji", "id": 7457, "credit_id": "52fe423bc3a36847f800e003", "cast_id": 9, "profile_path": "/rZGOg4xRkDTVMdGCzMhswioT4pU.jpg", "order": 5}, {"name": "Isao Kimura", "character": "Katsushiro Okamoto", "id": 20830, "credit_id": "52fe423bc3a36847f800e007", "cast_id": 10, "profile_path": "/iL2XYnzkEZkXXx9tcoHMBDe9Ymu.jpg", "order": 6}, {"name": "Keiko Tsushima", "character": "Shino", "id": 20831, "credit_id": "52fe423bc3a36847f800e00b", "cast_id": 11, "profile_path": "/7IDKNmGI1sPUV2bFsav9uRAM9aF.jpg", "order": 7}, {"name": "Yukiko Shimazaki", "character": "Rikichi's Wife", "id": 554250, "credit_id": "52fe423bc3a36847f800e019", "cast_id": 14, "profile_path": "/3Fh32fFAAIYLnYiRqt7huqQb5iX.jpg", "order": 8}, {"name": "Kamatari Fujiwara", "character": "Manz\u00f4 - Father of Shino", "id": 96552, "credit_id": "52fe423bc3a36847f800e01d", "cast_id": 15, "profile_path": "/detxCmyJe9W1WqGCCYJQC7U5Tgq.jpg", "order": 9}, {"name": "Yoshio Kosugi", "character": "Mosuke", "id": 134272, "credit_id": "52fe423bc3a36847f800e021", "cast_id": 16, "profile_path": "/pZrCexgS1ewpgjsEhXijZ2mmuSF.jpg", "order": 10}, {"name": "Bokuzen Hidari", "character": "Yohei", "id": 34377, "credit_id": "52fe423bc3a36847f800e025", "cast_id": 17, "profile_path": "/xvYih2QuKWfCoAId3WFEyrKXfIN.jpg", "order": 11}, {"name": "Yoshio Tsuchiya", "character": "Rikichi", "id": 17540, "credit_id": "52fe423bc3a36847f800e029", "cast_id": 18, "profile_path": "/d5p1jSAUVJJbtWSJCAEpR3PmMDJ.jpg", "order": 12}, {"name": "Kokuten K\u00f4d\u00f4", "character": "Gisaku, the Old Man", "id": 108028, "credit_id": "52fe423bc3a36847f800e02d", "cast_id": 19, "profile_path": "/eoP753m4oPzYrYhwfs983n5d1dr.jpg", "order": 13}, {"name": "Eijir\u00f4 T\u00f4no", "character": "Kidnapper", "id": 106165, "credit_id": "52fe423bc3a36847f800e031", "cast_id": 20, "profile_path": "/5wb61i8W4r9On3FkwUbaTkWqfdb.jpg", "order": 14}, {"name": "Jun Tatara", "character": "Coolie A", "id": 228547, "credit_id": "52fe423bc3a36847f800e039", "cast_id": 22, "profile_path": "/xzUlQEvQgTDt7939OhQH3Rf7vHN.jpg", "order": 16}, {"name": "Atsushi Watanabe", "character": "Bun Seller", "id": 134294, "credit_id": "52fe423bc3a36847f800e03d", "cast_id": 23, "profile_path": "/iInI90DbSCtBj3x9rKD60Jhqx0a.jpg", "order": 17}, {"name": "Toranosuke Ogawa", "character": "Grandfather of Kidnapped Girl", "id": 134406, "credit_id": "52fe423bc3a36847f800e041", "cast_id": 24, "profile_path": "/tMF1gb5bkyvjJVPMP9aDWUpUlOA.jpg", "order": 18}, {"name": "Isao Yamagata", "character": "Samurai", "id": 134020, "credit_id": "52fe423bc3a36847f800e045", "cast_id": 25, "profile_path": "/wXFb1lDj5WvQlfPcmDBv6zEyxRI.jpg", "order": 19}, {"name": "Kichijir\u00f4 Ueda", "character": "Bandit Scout", "id": 7455, "credit_id": "53028093925141218f3d1e9e", "cast_id": 26, "profile_path": "/ieTlJVanMpV2eiYTm3D5kKbYM3T.jpg", "order": 20}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800dfdd", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 8.1, "runtime": 207}, "348": {"poster_path": "/uU9R1byS3USozpzWJ5oz7YAkXyk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104931801, "overview": "During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.", "video": false, "id": 348, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Alien", "tagline": "In space no one can hear you scream.", "vote_count": 1664, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0078748", "adult": false, "backdrop_path": "/vMNl7mDS57vhbglfth5JV7bAwZp.jpg", "production_companies": [{"name": "Brandywine Productions", "id": 19747}, {"name": "Twentieth Century-Fox Productions", "id": 11865}], "release_date": "1979-05-25", "popularity": 2.60606201376055, "original_title": "Alien", "budget": 11000000, "cast": [{"name": "Sigourney Weaver", "character": "Ripley", "id": 10205, "credit_id": "52fe423bc3a36847f800e125", "cast_id": 4, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Tom Skerritt", "character": "Dallas", "id": 4139, "credit_id": "52fe423bc3a36847f800e121", "cast_id": 3, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 1}, {"name": "Veronica Cartwright", "character": "Lambert", "id": 5047, "credit_id": "52fe423bc3a36847f800e129", "cast_id": 5, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 2}, {"name": "Harry Dean Stanton", "character": "Brett", "id": 5048, "credit_id": "52fe423bc3a36847f800e12d", "cast_id": 6, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 3}, {"name": "John Hurt", "character": "Kane", "id": 5049, "credit_id": "52fe423bc3a36847f800e131", "cast_id": 7, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Ian Holm", "character": "Ash", "id": 65, "credit_id": "52fe423bc3a36847f800e135", "cast_id": 8, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 5}, {"name": "Yaphet Kotto", "character": "Parker", "id": 5050, "credit_id": "52fe423bc3a36847f800e139", "cast_id": 9, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 6}, {"name": "Bolaji Badejo", "character": "Alien", "id": 5051, "credit_id": "52fe423bc3a36847f800e13d", "cast_id": 10, "profile_path": "/83NFKY9rgC5Pnx5hRJtHj0KkpnT.jpg", "order": 7}, {"name": "Helen Horton", "character": "Mother (voice)", "id": 5052, "credit_id": "52fe423bc3a36847f800e141", "cast_id": 11, "profile_path": "/90ruMVGVYNS6dUYj6zCa7XIw8eG.jpg", "order": 8}, {"name": "Eddie Powell", "character": "Alien", "id": 1077325, "credit_id": "52fe423bc3a36847f800e1b1", "cast_id": 30, "profile_path": null, "order": 9}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800e117", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.3, "runtime": 117}, "350": {"poster_path": "/8unCRm0LeiO0fM6skWAZy3ZfXR1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 326551094, "overview": "The Devil Wears Prada is about a young journalist who moves to New York to work in the fashion industry. Her boss however is extremely demanding and cruel and won\u2019t let her succeed if she doesn\u2019t fit into the high class elegant look of their magazine when all she really wants to be a good journalist.", "video": false, "id": 350, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Devil Wears Prada", "tagline": "Meet Andy Sachs. A million girls would kill to have her job. She's not one of them.", "vote_count": 537, "homepage": "http://www.devilwearspradamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0458352", "adult": false, "backdrop_path": "/2veJf7wcs1hvJGCQRFTwm37djMW.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Dune Entertainment", "id": 444}, {"name": "Major Studio Partners", "id": 445}, {"name": "Peninsula Films", "id": 682}], "release_date": "2006-06-30", "popularity": 1.21834970083119, "original_title": "The Devil Wears Prada", "budget": 35000000, "cast": [{"name": "Meryl Streep", "character": "Miranda Priestly", "id": 5064, "credit_id": "5301f30492514121a7269b59", "cast_id": 25, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Andrea Sachs", "id": 1813, "credit_id": "5301f31a925141219b257c3c", "cast_id": 26, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Emily", "id": 5081, "credit_id": "53b520c90e0a2676cb001fc0", "cast_id": 44, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Nigel", "id": 2283, "credit_id": "5301f34192514121a127c44a", "cast_id": 28, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Simon Baker", "character": "Christian Thompson", "id": 1284159, "credit_id": "5301f35e92514121a726a907", "cast_id": 29, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 4}, {"name": "Adrian Grenier", "character": "Nate Cooper", "id": 5090, "credit_id": "5301f37092514161a2003466", "cast_id": 30, "profile_path": "/rZ0y8mxadSJexY2c3DDo6yzGHnr.jpg", "order": 5}, {"name": "Tracie Thoms", "character": "Lily", "id": 10580, "credit_id": "5301f38492514121a127cbcc", "cast_id": 31, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 6}, {"name": "Rich Sommer", "character": "Doug", "id": 10581, "credit_id": "5301f39b92514121a726b50e", "cast_id": 32, "profile_path": "/nRN8lyfq1gOdCfTwstuK1eZZIaZ.jpg", "order": 7}, {"name": "Daniel Sunjata", "character": "James Holt", "id": 10582, "credit_id": "5301f3c8925141218f2945c5", "cast_id": 33, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 8}, {"name": "David Marshall Grant", "character": "Richard Sachs", "id": 24535, "credit_id": "5301f3ef925141219829baf7", "cast_id": 34, "profile_path": "/tKe6LIoceX8738rIELToYMuefCH.jpg", "order": 9}, {"name": "Rebecca Mader", "character": "Jocelyn", "id": 54679, "credit_id": "5301f47392514121a726d4be", "cast_id": 36, "profile_path": "/rzeCT8nG6KvvjlNKapdfcEvHOQz.jpg", "order": 10}, {"name": "Gisele B\u00fcndchen", "character": "Serena", "id": 10583, "credit_id": "5301f48b92514161a20067e0", "cast_id": 37, "profile_path": "/j3Lm6iGXPE57990A8DKW563BzYt.jpg", "order": 11}, {"name": "Heidi Klum", "character": "herself", "id": 10584, "credit_id": "5301f4b192514161a200893a", "cast_id": 38, "profile_path": "/paqUEfaU9ERt0y0bLtD4vHa9oYl.jpg", "order": 12}, {"name": "Alyssa Sutherland", "character": "Clacker", "id": 220620, "credit_id": "5301f4ec92514121a4299d7a", "cast_id": 39, "profile_path": "/t053QTudyPg1rpzOeBKFV7gEJJf.jpg", "order": 13}, {"name": "Ines Rivero", "character": "Clacker in Elevator", "id": 1248824, "credit_id": "5301f50692514121922c5589", "cast_id": 40, "profile_path": "/vIlaZdvUuWnza2TMWcbBvjI2oJB.jpg", "order": 14}, {"name": "Stephanie Szostak", "character": "Jacqueline Follet", "id": 121953, "credit_id": "5301f523925141219526ff7a", "cast_id": 41, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 15}, {"name": "Ivanka Trump", "character": "herself", "id": 1224937, "credit_id": "5301f54992514121a7270991", "cast_id": 42, "profile_path": "/5HwNHdEEnieD2VFnuUeMVQU6xTH.jpg", "order": 16}, {"name": "Tibor Feldman", "character": "Irv Ravitz", "id": 1192389, "credit_id": "53413799c3a36814f9001838", "cast_id": 43, "profile_path": "/6NR8t0gDsgoQKtL8mYUYmuEjRq6.jpg", "order": 17}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800e2c5", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 6.6, "runtime": 109}, "172385": {"poster_path": "/3U5aKvnnZcAmDm9VMK4eWuERSRV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29100000, "overview": "It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.", "video": false, "id": 172385, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Rio 2", "tagline": "He's villainous, she's venomous.", "vote_count": 346, "homepage": "http://www.riomovies.com/", "belongs_to_collection": {"backdrop_path": "/9Rgf0Lcp0bZ0ik3r93ACleL1GJp.jpg", "poster_path": "/pT6r9PuRyIldckN9mKDIkT21nCA.jpg", "id": 229932, "name": "Rio Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt2357291", "adult": false, "backdrop_path": "/zWVBctXkUYyi5ezjEVOLT3tiSqT.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2014-04-11", "popularity": 2.26608092533381, "original_title": "Rio 2", "budget": 0, "cast": [{"name": "Jesse Eisenberg", "character": "Blu (voice)", "id": 44735, "credit_id": "52fe4d1fc3a36847f824fae1", "cast_id": 5, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Jewel (voice)", "id": 1813, "credit_id": "52fe4d1fc3a36847f824fad5", "cast_id": 2, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Linda (voice)", "id": 41087, "credit_id": "52fe4d1fc3a36847f824fad9", "cast_id": 3, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Jamie Foxx", "character": "Nico (voice)", "id": 134, "credit_id": "52fe4d1fc3a36847f824fadd", "cast_id": 4, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 3}, {"name": "Andy Garc\u00eda", "character": "Eduardo (voice)", "id": 1271, "credit_id": "52fe4d1fc3a36847f824fafd", "cast_id": 12, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 4}, {"name": "Bruno Mars", "character": "Roberto (voice)", "id": 969218, "credit_id": "52fe4d1fc3a36847f824fb0d", "cast_id": 16, "profile_path": "/535a6grD6XtGwnVQA6OypLjUQvB.jpg", "order": 5}, {"name": "Jemaine Clement", "character": "Nigel (voice)", "id": 55936, "credit_id": "52fe4d1fc3a36847f824fae5", "cast_id": 6, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 6}, {"name": "Rodrigo Santoro", "character": "Tulio (voice)", "id": 17289, "credit_id": "52fe4d1fc3a36847f824fae9", "cast_id": 7, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 7}, {"name": "Jake T. Austin", "character": "Fernando (voice)", "id": 60255, "credit_id": "52fe4d1fc3a36847f824faed", "cast_id": 8, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 8}, {"name": "Amandla Stenberg", "character": "Bia (voice)", "id": 561869, "credit_id": "52fe4d1fc3a36847f824faf1", "cast_id": 9, "profile_path": "/zbsIVoRHTw3VmQ18O7xUaSfIQBE.jpg", "order": 9}, {"name": "Pierce Gagnon", "character": "Tiago (voice)", "id": 992427, "credit_id": "52fe4d1fc3a36847f824fb01", "cast_id": 13, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 10}, {"name": "Rita Moreno", "character": "Aunt Mimi (voice)", "id": 13299, "credit_id": "52fe4d1fc3a36847f824fb09", "cast_id": 15, "profile_path": "/A5IKvjUTdwexp4l5Bi6vaH8Hypc.jpg", "order": 11}, {"name": "Kristin Chenoweth", "character": "Gabi (voice)", "id": 52775, "credit_id": "533d578392514176000027bc", "cast_id": 21, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 12}, {"name": "Tracy Morgan", "character": "Luiz (voice)", "id": 56903, "credit_id": "53b079fec3a3682eea0054ad", "cast_id": 22, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 13}, {"name": "Will.i.am", "character": "Pedro (voice)", "id": 82092, "credit_id": "53b07a39c3a3682ee600538e", "cast_id": 23, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 14}, {"name": "George Lopez", "character": "Rafael (voice)", "id": 41798, "credit_id": "53b07a73c3a3682ed8005295", "cast_id": 24, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 15}, {"name": "Rachel Crow", "character": "Carla (voice)", "id": 1335646, "credit_id": "53b07b2fc3a3682eee005361", "cast_id": 25, "profile_path": "/iX4QfD8jynd0M5vlYBMMdgr43xe.jpg", "order": 16}, {"name": "Bebel Gilberto", "character": "Eva (voice)", "id": 1335647, "credit_id": "53b07b61c3a3682ed80052a3", "cast_id": 26, "profile_path": "/zssPpJcU8Eumk4JZcLKH7AqcJoX.jpg", "order": 17}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe4d1fc3a36847f824fad1", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.7, "runtime": 102}, "9559": {"poster_path": "/5RhCpfiZcEWhKhuoGw9XaqtCgHG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A kidnapped boy strikes up a friendship with his captor: an escaped convict on the run from the law, headed by an honorable U.S. Marshal.", "video": false, "id": 9559, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Perfect World", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107808", "adult": false, "backdrop_path": "/pBz7T9KYTEbZoGlrynHT43QxNwE.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1993-11-24", "popularity": 0.460312391279203, "original_title": "A Perfect World", "budget": 0, "cast": [{"name": "Kevin Costner", "character": "Robert 'Butch' Haynes", "id": 1269, "credit_id": "52fe4509c3a36847f80b8ad1", "cast_id": 10, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Chief Red Garnett", "id": 190, "credit_id": "52fe4509c3a36847f80b8add", "cast_id": 14, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Laura Dern", "character": "Sally Gerber", "id": 4784, "credit_id": "52fe4509c3a36847f80b8ad5", "cast_id": 12, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 2}, {"name": "T.J. Lowther", "character": "Phillip 'Buzz' Perry", "id": 64025, "credit_id": "52fe4509c3a36847f80b8ad9", "cast_id": 13, "profile_path": "/efL2QLud60j87EJQ2VG1pFrYtD7.jpg", "order": 3}, {"name": "Bradley Whitford", "character": "Bobby Lee", "id": 11367, "credit_id": "52fe4509c3a36847f80b8ae1", "cast_id": 15, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 4}, {"name": "Keith Szarabajka", "character": "Terry Pugh", "id": 87957, "credit_id": "52fe4509c3a36847f80b8ae5", "cast_id": 16, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 5}, {"name": "Leo Burmester", "character": "Tom Adler", "id": 30151, "credit_id": "52fe4509c3a36847f80b8ae9", "cast_id": 17, "profile_path": "/8V3Ev6pKP8VBRIjDONJW5cgi5Zc.jpg", "order": 6}, {"name": "Paul Hewitt", "character": "Dick Suttle", "id": 177049, "credit_id": "52fe4509c3a36847f80b8aed", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ray McKinnon", "character": "Bradley", "id": 1472, "credit_id": "52fe450ac3a36847f80b8af1", "cast_id": 19, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 8}, {"name": "Jennifer Griffin", "character": "Gladys Perry", "id": 159381, "credit_id": "52fe450ac3a36847f80b8af5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Leslie Flowers", "character": "Naomi Perry", "id": 1079606, "credit_id": "52fe450ac3a36847f80b8af9", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Belinda Flowers", "character": "Ruth Perry", "id": 1079607, "credit_id": "52fe450ac3a36847f80b8afd", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Darryl Cox", "character": "Mr. Hughes", "id": 97391, "credit_id": "52fe450ac3a36847f80b8b01", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Jay Whiteaker", "character": "Billy Reeves", "id": 1079608, "credit_id": "52fe450ac3a36847f80b8b05", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Taylor Suzanna McBride", "character": "Tinkerbell", "id": 1079609, "credit_id": "52fe450ac3a36847f80b8b09", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Christopher Reagan Ammons", "character": "Dancing Skeleton", "id": 1079610, "credit_id": "52fe450ac3a36847f80b8b0d", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Mark Voges", "character": "Larry Billings", "id": 35652, "credit_id": "52fe450ac3a36847f80b8b11", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Vernon Grote", "character": "Prison Guard", "id": 974854, "credit_id": "52fe450ac3a36847f80b8b15", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "James Jeter", "character": "Oldtimer", "id": 79646, "credit_id": "52fe450ac3a36847f80b8b19", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Ed Geldart", "character": "Fred Cummings", "id": 981812, "credit_id": "52fe450ac3a36847f80b8b1d", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Bruce McGill", "character": "Paul Saunders", "id": 14888, "credit_id": "52fe450ac3a36847f80b8b21", "cast_id": 31, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 20}, {"name": "Nik Hagler", "character": "General Store Manager", "id": 20912, "credit_id": "52fe450ac3a36847f80b8b25", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Gary Moody", "character": "Local Sheriff", "id": 194353, "credit_id": "52fe450ac3a36847f80b8b29", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Mary Alice", "character": "Lottie", "id": 9572, "credit_id": "52fe450ac3a36847f80b8b2d", "cast_id": 34, "profile_path": "/2h20nF8gvhqhgVDV6Lru55dKB44.jpg", "order": 23}, {"name": "Wayne Dehart", "character": "Mack", "id": 1193431, "credit_id": "52fe450ac3a36847f80b8b31", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Kevin Woods", "character": "Cleveland", "id": 1193432, "credit_id": "52fe450ac3a36847f80b8b35", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Linda Hart", "character": "Eileen", "id": 53602, "credit_id": "52fe450ac3a36847f80b8b39", "cast_id": 37, "profile_path": "/9gzrHfKwWcwVYikfWhqsOWitpnZ.jpg", "order": 26}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4509c3a36847f80b8a9d", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.9, "runtime": 138}, "262500": {"poster_path": "/aBBQSC8ZECGn6Wh92gKDOakSC8p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 263523571, "overview": "Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.", "video": false, "id": 262500, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Insurgent", "tagline": "One Choice Can Destroy You", "vote_count": 305, "homepage": "http://www.thedivergentseries.com/", "belongs_to_collection": {"backdrop_path": "/uExS9jcaFBM1wJhkn1Q1P0MFpv6.jpg", "poster_path": "/2tVtmjJTwkieDf4c42SMzKEOyXF.jpg", "id": 283579, "name": "Divergent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2908446", "adult": false, "backdrop_path": "/L5QRL1O3fGs2hH1LbtYyVl8Tce.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Red Wagon Entertainment", "id": 14440}], "release_date": "2015-03-20", "popularity": 18.9431183306122, "original_title": "Insurgent", "budget": 110000000, "cast": [{"name": "Shailene Woodley", "character": "Beatrice 'Tris' Prior", "id": 94185, "credit_id": "533a707a9251417d9b005bc5", "cast_id": 0, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Theo James", "character": "Four", "id": 587020, "credit_id": "533a70d0c3a3680e69007788", "cast_id": 1, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 1}, {"name": "Ansel Elgort", "character": "Caleb", "id": 1159982, "credit_id": "5431e1d3c3a36831a9004134", "cast_id": 11, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 2}, {"name": "Miles Teller", "character": "Peter", "id": 996701, "credit_id": "5431e1dc0e0a265834002cef", "cast_id": 12, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 3}, {"name": "Naomi Watts", "character": "Evelyn", "id": 3489, "credit_id": "5431e1e50e0a265915002ca7", "cast_id": 13, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 4}, {"name": "Maggie Q", "character": "Tori Wu", "id": 21045, "credit_id": "5431e217c3a36831a60043ea", "cast_id": 17, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 5}, {"name": "Kate Winslet", "character": "Jeanine", "id": 204, "credit_id": "5431e1f80e0a265915002cae", "cast_id": 15, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 6}, {"name": "Jai Courtney", "character": "Eric", "id": 224181, "credit_id": "5431e1efc3a36811ef002cf0", "cast_id": 14, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 7}, {"name": "Zo\u00eb Kravitz", "character": "Christina", "id": 37153, "credit_id": "5431e20cc3a36825d3000148", "cast_id": 16, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 8}, {"name": "Ray Stevenson", "character": "Marcus Eaton", "id": 56614, "credit_id": "5431e2230e0a2658b2002c9d", "cast_id": 18, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 10}, {"name": "Octavia Spencer", "character": "Johanna", "id": 6944, "credit_id": "5431e22d0e0a2658b2002ca0", "cast_id": 19, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 11}, {"name": "Suki Waterhouse", "character": "Marlene", "id": 1325961, "credit_id": "5431e25cc3a368258a00017a", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Rosa Salazar", "character": "Lynn", "id": 973667, "credit_id": "54642eea0e0a26293b000bfb", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Daniel Dae Kim", "character": "Jack Kang", "id": 18307, "credit_id": "5431e238c3a36811ef002cfe", "cast_id": 20, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 14}, {"name": "Mekhi Phifer", "character": "Max", "id": 327, "credit_id": "5431e244c3a36831a9004165", "cast_id": 21, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 15}, {"name": "Ben Lloyd-Hughes", "character": "Will", "id": 1173230, "credit_id": "550afbd0925141467e0017ea", "cast_id": 28, "profile_path": "/mGCcNsBdIb4rngbWs7mK94YGuzA.jpg", "order": 16}, {"name": "Tony Goldwyn", "character": "Andrew", "id": 3417, "credit_id": "550afbe5c3a3684877001b32", "cast_id": 29, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 17}, {"name": "Ashley Judd", "character": "Natalie", "id": 15852, "credit_id": "550afbf7c3a3684883001cbc", "cast_id": 30, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 18}, {"name": "Keiynan Lonsdale", "character": "Uriah", "id": 1251875, "credit_id": "550afc2ac3a3684877001b36", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Emjay Anthony", "character": "Hector", "id": 1259762, "credit_id": "550afc4dc3a3684872001bdb", "cast_id": 33, "profile_path": "/vGuvafo0ZFRlmv77gxODfY3lCpx.jpg", "order": 20}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "533a71a6c3a3680e7000765e", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 7.3, "runtime": 119}, "364": {"poster_path": "/jX5THE1yW3zTdeD9dupcIyQvKiG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 280000000, "overview": "Having defeated the Joker, Batman now faces the Penguin - a warped and deformed individual who is intent on being accepted into Gotham society. Crooked businessman Max Schreck is coerced into helping him become Mayor of Gotham and they both attempt to expose Batman in a different light. Selina Kyle, Max's secretary, is thrown from the top of a building and is transformed into Catwoman - a mysterious figure who has the same personality disorder as Batman. Batman must attempt to clear his name, all the time deciding just what must be done with the Catwoman.", "video": false, "id": 364, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Batman Returns", "tagline": "The Bat, the Cat, the Penguin.", "vote_count": 430, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103776", "adult": false, "backdrop_path": "/wNIE5dpkiHU2csDRptMutFjAGiV.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1992-06-19", "popularity": 1.11154721722933, "original_title": "Batman Returns", "budget": 80000000, "cast": [{"name": "Michael Keaton", "character": "Batman/Bruce Wayne", "id": 2232, "credit_id": "52fe423cc3a36847f800e57d", "cast_id": 22, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Penguin/Oswald Cobblepot", "id": 518, "credit_id": "52fe423cc3a36847f800e529", "cast_id": 5, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Catwoman/Selina Kyle", "id": 1160, "credit_id": "52fe423cc3a36847f800e52d", "cast_id": 6, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Max Shreck", "id": 4690, "credit_id": "52fe423cc3a36847f800e531", "cast_id": 7, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Michael Gough", "character": "Alfred", "id": 3796, "credit_id": "52fe423cc3a36847f800e535", "cast_id": 8, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 4}, {"name": "Pat Hingle", "character": "Commissioner James Gordon", "id": 3798, "credit_id": "52fe423cc3a36847f800e539", "cast_id": 9, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 5}, {"name": "Paul Reubens", "character": "Mr. Cobblepot/ Penguin's Father", "id": 5129, "credit_id": "52fe423cc3a36847f800e53d", "cast_id": 10, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 6}, {"name": "Michael Murphy", "character": "Mayor", "id": 4776, "credit_id": "52fe423cc3a36847f800e541", "cast_id": 11, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 7}, {"name": "Diane Salinger", "character": "Mrs. Cobblepot/Penguin's Mother", "id": 5131, "credit_id": "52fe423cc3a36847f800e549", "cast_id": 13, "profile_path": "/kJkPiBp9tSBxlX4h1OZ1I82Q5Vi.jpg", "order": 8}, {"name": "Cristi Conaway", "character": "Ice Princess", "id": 5130, "credit_id": "52fe423cc3a36847f800e545", "cast_id": 12, "profile_path": "/5bbfOgGXmNf2MHQn0f6q7aY12bx.jpg", "order": 9}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e513", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.4, "runtime": 126}, "49517": {"poster_path": "/ggu2lYqxSAObuK82wk1TmEyyWGr.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "George Smiley, a recently retired MI6 agent, is doing his best to adjust to a life outside the secret service. However, when a disgraced agent reappears with information concerning a mole at the heart of the service, Smiley is drawn back into the murky field of espionage. Tasked with investigating which of his trusted former colleagues has chosen to betray him and their country, Smiley narrows his search to four suspects - all experienced, skilled and successful agents - but past histories, rivalries and friendships make it far from easy to pinpoint the man who is eating away at the heart of the British establishment.", "video": false, "id": 49517, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Tinker Tailor Soldier Spy", "tagline": "How do you find an enemy who is hidden right before your eyes?", "vote_count": 240, "homepage": "http://www.tinker-tailor-soldier-spy.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt1340800", "adult": false, "backdrop_path": "/5oS5Qx6yAkdQCzLMXl5BQSCFhBI.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Karla Films", "id": 23697}, {"name": "Kinowelt Filmproduktion", "id": 2051}, {"name": "Working Title Films", "id": 10163}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2011-12-09", "popularity": 1.30616584202585, "original_title": "Tinker Tailor Soldier Spy", "budget": 30000000, "cast": [{"name": "John Hurt", "character": "Control", "id": 5049, "credit_id": "52fe4799c3a36847f813e47b", "cast_id": 18, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 0}, {"name": "Gary Oldman", "character": "George Smiley", "id": 64, "credit_id": "52fe4798c3a36847f813e467", "cast_id": 13, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Kathy Burke", "character": "Connie Sachs", "id": 37759, "credit_id": "52fe4799c3a36847f813e48f", "cast_id": 23, "profile_path": "/3VjQaOV0Wyy1tzwxKI5Os5ZqID8.jpg", "order": 2}, {"name": "Benedict Cumberbatch", "character": "Peter Guillam", "id": 71580, "credit_id": "52fe4799c3a36847f813e46b", "cast_id": 14, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 3}, {"name": "Colin Firth", "character": "Bill Haydon", "id": 5472, "credit_id": "52fe4798c3a36847f813e45b", "cast_id": 10, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 4}, {"name": "Mark Strong", "character": "Jim Prideaux", "id": 2983, "credit_id": "52fe4798c3a36847f813e45f", "cast_id": 11, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 5}, {"name": "Toby Jones", "character": "Percy Alleline", "id": 13014, "credit_id": "52fe4799c3a36847f813e46f", "cast_id": 15, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 6}, {"name": "Stephen Graham", "character": "Jerry Westerby", "id": 1115, "credit_id": "52fe4799c3a36847f813e493", "cast_id": 24, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 7}, {"name": "Ciar\u00e1n Hinds", "character": "Roy Bland", "id": 8785, "credit_id": "52fe4799c3a36847f813e477", "cast_id": 17, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 8}, {"name": "Simon McBurney", "character": "Oliver Lacon", "id": 16358, "credit_id": "52fe4799c3a36847f813e49b", "cast_id": 26, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 9}, {"name": "David Dencik", "character": "Toby Esterhase", "id": 93236, "credit_id": "52fe4799c3a36847f813e473", "cast_id": 16, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 10}, {"name": "Tom Hardy", "character": "Ricki Tarr", "id": 2524, "credit_id": "52fe4798c3a36847f813e463", "cast_id": 12, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 11}, {"name": "Svetlana Khodchenkova", "character": "Irina", "id": 94064, "credit_id": "52fe4799c3a36847f813e4b9", "cast_id": 32, "profile_path": "/jiWZn9daZUVYudPBsuQNQQAg0lT.jpg", "order": 12}, {"name": "Arthur Nightingale", "character": "Bryant", "id": 186275, "credit_id": "52fe4799c3a36847f813e497", "cast_id": 25, "profile_path": "/rmHgVma3jk8snCVkIO7MKCtzxlF.jpg", "order": 13}, {"name": "Zolt\u00e1n Mucsi", "character": "Magyar", "id": 42069, "credit_id": "52fe4799c3a36847f813e47f", "cast_id": 19, "profile_path": "/z4S9Bg4f8gDvBtduEV3vdieHQey.jpg", "order": 14}, {"name": "Amanda Fairbank-Hynes", "character": "Belinda", "id": 235837, "credit_id": "52fe4799c3a36847f813e49f", "cast_id": 27, "profile_path": "/127xlkSaLK92NaYdStJQxWkqR1I.jpg", "order": 15}, {"name": "Laura Carmichael", "character": "Sal", "id": 224194, "credit_id": "52fe4799c3a36847f813e4a3", "cast_id": 28, "profile_path": "/6hSmDvghHqZp1CMsFnmdiRXQil8.jpg", "order": 16}, {"name": "Konstantin Khabenskiy", "character": "Polyakov", "id": 23440, "credit_id": "53527a43c3a3681d81002832", "cast_id": 35, "profile_path": "/dSZhT7njGfcOCqvRhWrX2WANVOt.jpg", "order": 17}, {"name": "Ilona Kassai", "character": "Woman in Window", "id": 933031, "credit_id": "52fe4799c3a36847f813e487", "cast_id": 21, "profile_path": "/7jSXaSoldlwA8TtN0LRUcPyc0xX.jpg", "order": 18}, {"name": "Imre Csuja", "character": "KGB Agent", "id": 82364, "credit_id": "52fe4799c3a36847f813e48b", "cast_id": 22, "profile_path": "/7Fhtm6tPuWB1hnyBXHEVv5xlvqU.jpg", "order": 19}, {"name": "P\u00e9ter K\u00e1lloy Moln\u00e1r", "character": "Hungarian Waiter", "id": 89645, "credit_id": "52fe4799c3a36847f813e483", "cast_id": 20, "profile_path": null, "order": 20}], "directors": [{"name": "Tomas Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe4798c3a36847f813e445", "profile_path": "/sRl6QzCtO7SlLspfFSvnv8u7ITi.jpg", "id": 74396}], "vote_average": 6.6, "runtime": 127}, "49519": {"poster_path": "/bued85CL5MRd02dkyt7HGbkKAuy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 585178928, "overview": "The Croods is a prehistoric comedy adventure that follows the world's first family as they embark on a journey of a lifetime when the cave that has always shielded them from danger is destroyed. Traveling across a spectacular landscape, the Croods discover an incredible new world filled with fantastic creatures -- and their outlook is changed forever.", "video": false, "id": 49519, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Croods", "tagline": "Meet the first modern family.", "vote_count": 1105, "homepage": "http://www.thecroodsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481499", "adult": false, "backdrop_path": "/kYY4CKjjknT1GY45ZueZs556Mnl.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2013-03-21", "popularity": 1.49760485690196, "original_title": "The Croods", "budget": 135000000, "cast": [{"name": "Nicolas Cage", "character": "Grug (voice)", "id": 2963, "credit_id": "52fe4799c3a36847f813e4f7", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Emma Stone", "character": "Eep (voice)", "id": 54693, "credit_id": "52fe4799c3a36847f813e4fb", "cast_id": 4, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Ryan Reynolds", "character": "Guy (voice)", "id": 10859, "credit_id": "52fe4799c3a36847f813e4ff", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 2}, {"name": "Catherine Keener", "character": "Ugga (voice)", "id": 2229, "credit_id": "52fe4799c3a36847f813e503", "cast_id": 6, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 3}, {"name": "Cloris Leachman", "character": "Gran (voice)", "id": 9599, "credit_id": "52fe4799c3a36847f813e513", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 4}, {"name": "Clark Duke", "character": "Thunk (voice)", "id": 54729, "credit_id": "52fe4799c3a36847f813e517", "cast_id": 11, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 5}, {"name": "Chris Sanders", "character": "Belt (voice)", "id": 66193, "credit_id": "53ad0e7d0e0a26597d0014cb", "cast_id": 19, "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "order": 6}, {"name": "Randy Thom", "character": "Sandy (voice)", "id": 42267, "credit_id": "53ad0e900e0a2659750014df", "cast_id": 20, "profile_path": "/gENCvbLHHHtxeZcPJIHcSq6Y4BW.jpg", "order": 7}], "directors": [{"name": "Kirk De Micco", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e4ed", "profile_path": "/kqknILDV0ZOIeFOZnA8zMQ8NxC5.jpg", "id": 71267}, {"name": "Chris Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e4f3", "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "id": 66193}], "vote_average": 6.9, "runtime": 98}, "49520": {"poster_path": "/vvouEsB13kZN0NcV4vvFJwwhrs1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75450437, "overview": "Dave is a married man with two kids and a loving wife , and Mitch is a single man who is at the prime of his sexual life. One fateful night while Mitch and Dave are peeing in a fountain when lightning strikes and they switch bodies.", "video": false, "id": 49520, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Change-Up", "tagline": "Who says men can't change?", "vote_count": 201, "homepage": "http://www.thechangeupmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1488555", "adult": false, "backdrop_path": "/vX5Leufgvw6Hy1KMF3bhoUfcvPc.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "Big Kid Pictures", "id": 8406}], "release_date": "2011-08-05", "popularity": 0.490175364966145, "original_title": "The Change-Up", "budget": 52000000, "cast": [{"name": "Olivia Wilde", "character": "Sabrina McArdle", "id": 59315, "credit_id": "52fe4799c3a36847f813e555", "cast_id": 2, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Mitch Planko", "id": 10859, "credit_id": "52fe4799c3a36847f813e559", "cast_id": 3, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Jason Bateman", "character": "Dave Lockwood", "id": 23532, "credit_id": "52fe4799c3a36847f813e55d", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 2}, {"name": "Leslie Mann", "character": "Jamie Lockwood", "id": 41087, "credit_id": "52fe4799c3a36847f813e561", "cast_id": 5, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 3}, {"name": "Mircea Monroe", "character": "Tatiana", "id": 83352, "credit_id": "52fe4799c3a36847f813e565", "cast_id": 6, "profile_path": "/b27UZlc4VBwVbOiJSbkyfnfLWZP.jpg", "order": 4}, {"name": "Alan Arkin", "character": "Mitch's Dad", "id": 1903, "credit_id": "52fe4799c3a36847f813e569", "cast_id": 7, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 5}, {"name": "TJ Hassan", "character": "Kinkabe Lawyer", "id": 1000822, "credit_id": "52fe4799c3a36847f813e579", "cast_id": 10, "profile_path": "/6A0n3eZSvtBBtxgEW03cEEmAJQZ.jpg", "order": 6}, {"name": "Mircea Monroe", "character": "Tatiana", "id": 83352, "credit_id": "532c2a009251416e9c000e57", "cast_id": 11, "profile_path": "/b27UZlc4VBwVbOiJSbkyfnfLWZP.jpg", "order": 7}, {"name": "Gregory Itzin", "character": "Flemming Steel", "id": 21142, "credit_id": "532c2a1b9251416e95000d92", "cast_id": 12, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 8}, {"name": "Ned Schmidtke", "character": "Ted Norton", "id": 173739, "credit_id": "532c2a2c9251416e89000e8a", "cast_id": 13, "profile_path": "/nCZ1y7sre7m7pVurBwKoR6mzmrc.jpg", "order": 9}, {"name": "Ming Lo", "character": "Ken Kinkabe", "id": 945062, "credit_id": "532c2a3b9251416e95000d95", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sydney Rouviere", "character": "Cara Lockwood", "id": 123065, "credit_id": "532c2a4a9251416e98000e2b", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Craig Bierko", "character": "Valtan", "id": 14886, "credit_id": "532c2a579251416e89000e92", "cast_id": 16, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 12}, {"name": "Dax Griffin", "character": "Blow-Dried Goon", "id": 1224311, "credit_id": "532c2a649251416e98000e30", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Andrea Moore", "character": "Sophia", "id": 1046200, "credit_id": "532c2a729251416e92000f55", "cast_id": 18, "profile_path": "/q4AfAMZTLSCtsqWEjfSRoXewc6p.jpg", "order": 14}, {"name": "Matt Cornwell", "character": "Parks Foreman", "id": 1068811, "credit_id": "532c2a849251416e9f000e10", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Taaffe O'Connell", "character": "Mona", "id": 102335, "credit_id": "532c2a919251416e95000d9f", "cast_id": 20, "profile_path": null, "order": 16}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e551", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 6.0, "runtime": 112}, "49521": {"poster_path": "/6HQT7R0tiWGxi7CA1zb58j28OTM.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 662845518, "overview": "A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.", "video": false, "id": 49521, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Man of Steel", "tagline": "You will believe that a man can fly.", "vote_count": 3250, "homepage": "http://www.manofsteel.com/", "belongs_to_collection": {"backdrop_path": "/csERw2A3XIsGegkzil6UGpyhqfw.jpg", "poster_path": "/oOHKVVQkaDvc5R5vM0NjhZPYfKc.jpg", "id": 209131, "name": "Man of Steel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0770828", "adult": false, "backdrop_path": "/jYLh4mdOqkt30i7LTFs3o02UcGF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Syncopy", "id": 9996}], "release_date": "2013-06-14", "popularity": 3.84921134506416, "original_title": "Man of Steel", "budget": 225000000, "cast": [{"name": "Henry Cavill", "character": "Clark Kent / Kal-El", "id": 73968, "credit_id": "52fe4799c3a36847f813e605", "cast_id": 2, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 0}, {"name": "Amy Adams", "character": "Lois Lane", "id": 9273, "credit_id": "52fe4799c3a36847f813e609", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Michael Shannon", "character": "General Zod", "id": 335, "credit_id": "52fe4799c3a36847f813e61b", "cast_id": 9, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 2}, {"name": "Diane Lane", "character": "Martha Kent", "id": 2882, "credit_id": "52fe4799c3a36847f813e60d", "cast_id": 4, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 3}, {"name": "Russell Crowe", "character": "Jor-El", "id": 934, "credit_id": "52fe4799c3a36847f813e617", "cast_id": 8, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 4}, {"name": "Antje Traue", "character": "Faora-Ul", "id": 43202, "credit_id": "52fe4799c3a36847f813e637", "cast_id": 17, "profile_path": "/xWbtFJyN8ynIpdKNCB0KpsKldM7.jpg", "order": 5}, {"name": "Kevin Costner", "character": "Jonathan Kent", "id": 1269, "credit_id": "52fe4799c3a36847f813e61f", "cast_id": 10, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 6}, {"name": "Christopher Meloni", "character": "Colonel Hardy", "id": 22227, "credit_id": "52fe4799c3a36847f813e623", "cast_id": 11, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 7}, {"name": "Laurence Fishburne", "character": "Perry White", "id": 2975, "credit_id": "52fe4799c3a36847f813e627", "cast_id": 12, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 8}, {"name": "Jadin Gould", "character": "Lana Lang", "id": 213049, "credit_id": "52fe4799c3a36847f813e62b", "cast_id": 13, "profile_path": "/xC07rBx6DTXzclGMy7fOzYM2Q6S.jpg", "order": 9}, {"name": "Tahmoh Penikett", "character": "Emerson", "id": 77223, "credit_id": "52fe4799c3a36847f813e62f", "cast_id": 15, "profile_path": "/uHnfPSFXdJJTaE0rjwj3I2b91I8.jpg", "order": 10}, {"name": "Ayelet Zurer", "character": "Lara Lor-Van", "id": 8786, "credit_id": "52fe4799c3a36847f813e633", "cast_id": 16, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 11}, {"name": "Richard Schiff", "character": "Dr. Emil Hamilton", "id": 31028, "credit_id": "52fe4799c3a36847f813e63b", "cast_id": 18, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 12}, {"name": "Dylan Sprayberry", "character": "Clark Kent at 13", "id": 236302, "credit_id": "52fe4799c3a36847f813e63f", "cast_id": 19, "profile_path": "/pBVSPaXOFZqhwt2COhkLaOq9MSW.jpg", "order": 13}, {"name": "Michael Kelly", "character": "Steve Lombard", "id": 50217, "credit_id": "52fe4799c3a36847f813e643", "cast_id": 20, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 14}, {"name": "Carla Gugino", "character": "Kelor (voice)", "id": 17832, "credit_id": "52fe4799c3a36847f813e70d", "cast_id": 54, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 15}, {"name": "Richard Cetrone", "character": "Tor-An", "id": 12371, "credit_id": "52fe4799c3a36847f813e711", "cast_id": 55, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 16}, {"name": "Mackenzie Gray", "character": "Jax-Ur", "id": 37698, "credit_id": "52fe4799c3a36847f813e715", "cast_id": 56, "profile_path": "/rYkz9NRfhVzgDbpXHRWqLkvjlgh.jpg", "order": 17}, {"name": "Julian Richings", "character": "Lor-Em", "id": 2320, "credit_id": "52fe4799c3a36847f813e719", "cast_id": 57, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 18}, {"name": "Mary Black", "character": "Ro-Zar", "id": 11831, "credit_id": "52fe4799c3a36847f813e71d", "cast_id": 58, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 19}, {"name": "Samantha Jo", "character": "Car-Vex", "id": 1272968, "credit_id": "52fe4799c3a36847f813e721", "cast_id": 59, "profile_path": "/aHUB2vNo5ZbOVnlmqJ4SkUpDXrk.jpg", "order": 20}, {"name": "Rebecca Buller", "character": "Jenny", "id": 1272969, "credit_id": "52fe4799c3a36847f813e725", "cast_id": 60, "profile_path": "/2e4eLghYs2jXxnoy4gG0TOSsyVA.jpg", "order": 21}, {"name": "Christina Wren", "character": "Major Carrie Farris", "id": 1272970, "credit_id": "52fe4799c3a36847f813e729", "cast_id": 61, "profile_path": "/8nLwMjNuL9FU9lVGXZBBZpMWLGk.jpg", "order": 22}, {"name": "David Lewis", "character": "Major Laramore", "id": 571911, "credit_id": "52fe4799c3a36847f813e72d", "cast_id": 62, "profile_path": "/hi8Y2vwvTw8FhclgwS1w2mOKvO4.jpg", "order": 23}, {"name": "Doug Abrahams", "character": "Heraldson", "id": 27138, "credit_id": "52fe4799c3a36847f813e731", "cast_id": 63, "profile_path": "/l1WXHzijnXtsZs5xcPk3yVLURgX.jpg", "order": 24}, {"name": "Brad Kelly", "character": "Byrne", "id": 172809, "credit_id": "52fe4799c3a36847f813e735", "cast_id": 64, "profile_path": "/wNZGxPawhdulAVq5Ud4m7mAwmrk.jpg", "order": 25}, {"name": "Alessandro Juliani", "character": "Officer Sekowsky", "id": 59312, "credit_id": "52fe4799c3a36847f813e739", "cast_id": 65, "profile_path": "/eTF7C0HA5M31J9gvoupyPt3sedX.jpg", "order": 26}, {"name": "Jack Foley", "character": "Teenage Pete Ross", "id": 1272971, "credit_id": "52fe4799c3a36847f813e73d", "cast_id": 66, "profile_path": "/cCoJMPYTALWvrlpzpAFcEFAqsh0.jpg", "order": 27}, {"name": "Robert Gerdisch", "character": "Whitney Fordman", "id": 1025970, "credit_id": "52fe4799c3a36847f813e741", "cast_id": 67, "profile_path": "/lDyXyHQcRK21hcSO8oEJqlmvKQG.jpg", "order": 28}, {"name": "Tom Nagel", "character": "A-10 Pilot", "id": 64294, "credit_id": "550ea1f2c3a3681db2008ed7", "cast_id": 68, "profile_path": null, "order": 29}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e601", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.6, "runtime": 143}, "9619": {"poster_path": "/6wBlgo0xqja56OMfQoxsdLmcR76.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Volcanologist Harry Dalton comes to the sleepy town of Dante's Peak to investigate the recent rumblings of the dormant volcano the burg is named for. Before long, his worst fears are realized when a massive eruption hits, and immediately, Harry, the mayor and the townspeople find themselves fighting for their lives amid a catastrophic nightmare.", "video": false, "id": 9619, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Dante's Peak", "tagline": "Whatever you do, don't look back.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118928", "adult": false, "backdrop_path": "/6TSzmESfh0LVOBnDcktcRMI6Wnk.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1997-02-06", "popularity": 1.08266674450858, "original_title": "Dante's Peak", "budget": 116000000, "cast": [{"name": "Pierce Brosnan", "character": "Harry Dalton", "id": 517, "credit_id": "52fe4512c3a36847f80babe9", "cast_id": 8, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Linda Hamilton", "character": "Rachel Wando", "id": 2713, "credit_id": "52fe4512c3a36847f80babed", "cast_id": 9, "profile_path": "/bxsVrRYOpAL0vI6X7nnEsyLvZ8H.jpg", "order": 1}, {"name": "Charles Hallahan", "character": "Paul Dreyfus", "id": 15414, "credit_id": "52fe4512c3a36847f80babf1", "cast_id": 10, "profile_path": "/bXRE5dfHZZhovEbXgQCXDTw9ZHY.jpg", "order": 2}, {"name": "Jamie Ren\u00e9e Smith", "character": "Lauren Wando", "id": 58727, "credit_id": "52fe4512c3a36847f80babf5", "cast_id": 11, "profile_path": null, "order": 3}, {"name": "Grant Heslov", "character": "Greg", "id": 31511, "credit_id": "52fe4512c3a36847f80babf9", "cast_id": 12, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 4}, {"name": "Jeremy Foley", "character": "Graham Wando", "id": 108939, "credit_id": "52fe4512c3a36847f80babfd", "cast_id": 13, "profile_path": "/uQn7bDcWyFtF4En85nj6eOkeB2t.jpg", "order": 5}, {"name": "Elizabeth Hoffman", "character": "Ruth", "id": 172559, "credit_id": "52fe4512c3a36847f80bac01", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Kirk Trutner", "character": "Terry Furlong", "id": 174794, "credit_id": "52fe4512c3a36847f80bac05", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Arabella Field", "character": "Nancy", "id": 14722, "credit_id": "52fe4512c3a36847f80bac09", "cast_id": 16, "profile_path": "/aDhXyY1fwrS0gRdOJSc0uQPb3h5.jpg", "order": 8}, {"name": "Tzi Ma", "character": "Stan", "id": 21629, "credit_id": "52fe4512c3a36847f80bac0d", "cast_id": 17, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 9}, {"name": "Brian Reddy", "character": "Les Worrell", "id": 1469, "credit_id": "52fe4512c3a36847f80bac11", "cast_id": 18, "profile_path": "/6AOxOUfyU3iDQabWL6EipPZ5DAM.jpg", "order": 10}, {"name": "Lee Garlington", "character": "Dr. Jane Fox", "id": 23975, "credit_id": "52fe4512c3a36847f80bac15", "cast_id": 19, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 11}, {"name": "Bill Bolender", "character": "Sheriff Turner", "id": 105649, "credit_id": "52fe4512c3a36847f80bac19", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Carole Androsky", "character": "Mary Kelly", "id": 183404, "credit_id": "52fe4512c3a36847f80bac1d", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Peter Jason", "character": "Norman Gates", "id": 6916, "credit_id": "52fe4512c3a36847f80bac21", "cast_id": 22, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 14}, {"name": "Christopher Murray", "character": "Pilot", "id": 122491, "credit_id": "53d8ea7d0e0a261c8400243e", "cast_id": 23, "profile_path": "/5yTwriS5a7Tg2xiMT8B2kMYrIkY.jpg", "order": 15}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80babc1", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.4, "runtime": 108}, "49524": {"poster_path": "/ldBBulVDkifYnT501PWXIvtCgmO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61648500, "overview": "A recently slain cop joins a team of undead police officers working for the Rest in Peace Department and tries to find the man who murdered him. Based on the comic by Peter M. Lenkov.", "video": false, "id": 49524, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}], "title": "R.I.P.D.", "tagline": "To protect and serve the living", "vote_count": 505, "homepage": "http://www.ripd.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790736", "adult": false, "backdrop_path": "/aTjMXroOL6f3FObPvwcA5hpWtXm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Original Film", "id": 333}], "release_date": "2013-07-19", "popularity": 1.39985875943551, "original_title": "R.I.P.D.", "budget": 130000000, "cast": [{"name": "Jeff Bridges", "character": "Roy Pulsipher", "id": 1229, "credit_id": "52fe4799c3a36847f813e7f3", "cast_id": 3, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Nick Walker", "id": 10859, "credit_id": "52fe4799c3a36847f813e7f7", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Bobby Hayes", "id": 4724, "credit_id": "52fe4799c3a36847f813e807", "cast_id": 8, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Stephanie Szostak", "character": "Julia", "id": 121953, "credit_id": "52fe4799c3a36847f813e80b", "cast_id": 9, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 3}, {"name": "Mary-Louise Parker", "character": "Proctor", "id": 18248, "credit_id": "52fe4799c3a36847f813e80f", "cast_id": 10, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 4}, {"name": "Marisa Miller", "character": "Roy's Avatar", "id": 209197, "credit_id": "52fe4799c3a36847f813e813", "cast_id": 11, "profile_path": "/sEZfAdodSzQ6OATRYLSAAlRxYnB.jpg", "order": 5}, {"name": "Robert Knepper", "character": "Nawlicki", "id": 17343, "credit_id": "52fe4799c3a36847f813e817", "cast_id": 12, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 6}, {"name": "James Hong", "character": "Nick's Avatar / Jerry Chen", "id": 20904, "credit_id": "52fe4799c3a36847f813e81b", "cast_id": 13, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 7}, {"name": "Mike O'Malley", "character": "Elliot", "id": 87192, "credit_id": "52fe4799c3a36847f813e81f", "cast_id": 14, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 8}, {"name": "Devin Ratray", "character": "Pulaski", "id": 11516, "credit_id": "52fe4799c3a36847f813e823", "cast_id": 15, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 9}, {"name": "Kachina Dechert", "character": "Goth Chick", "id": 1186622, "credit_id": "52fe4799c3a36847f813e827", "cast_id": 16, "profile_path": "/jnHj9TUQou7Gt4Vxgd7vIrihCPi.jpg", "order": 10}, {"name": "Catherine Kresge", "character": "Female TV Reporter", "id": 92877, "credit_id": "52fe4799c3a36847f813e82b", "cast_id": 17, "profile_path": "/A19KrrPWpXbozWNRzzT2rP8QOwg.jpg", "order": 11}, {"name": "Larry Joe Campbell", "character": "Murphy", "id": 118590, "credit_id": "52fe4799c3a36847f813e82f", "cast_id": 18, "profile_path": "/91kXO2XCIv8B9bP3720QIrTJNfs.jpg", "order": 12}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e7ef", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 5.4, "runtime": 96}, "156022": {"poster_path": "/2eQfjqlvPAxd9aLDs8DvsKLnfed.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 192330738, "overview": "In The Equalizer, Denzel Washington plays McCall, a man who believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when McCall meets Teri (Chlo\u00eb Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he can\u2019t stand idly by \u2013 he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.", "video": false, "id": 156022, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Equalizer", "tagline": "What do you see when you look at me?", "vote_count": 839, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455944", "adult": false, "backdrop_path": "/rKESeEePWWu4rATQDJOktllaDDv.jpg", "production_companies": [{"name": "Lonetree Entertainment", "id": 41096}, {"name": "Columbia Pictures", "id": 5}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Escape Artists", "id": 1423}, {"name": "LStar Capital", "id": 34034}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "2014-09-26", "popularity": 5.59452185739035, "original_title": "The Equalizer", "budget": 55000000, "cast": [{"name": "Denzel Washington", "character": "Robert McCall", "id": 5292, "credit_id": "52fe4b919251416c910dec1d", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Marton Csokas", "character": "Teddy", "id": 20982, "credit_id": "52fe4b919251416c910dec31", "cast_id": 5, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 1}, {"name": "Chlo\u00eb Grace Moretz", "character": "Teri", "id": 56734, "credit_id": "52fe4b919251416c910dec2d", "cast_id": 4, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "David Harbour", "character": "Masters", "id": 35029, "credit_id": "54311ab10e0a264643002d7d", "cast_id": 13, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 3}, {"name": "Haley Bennett", "character": "Mandy", "id": 58754, "credit_id": "54311a8cc3a368117b001719", "cast_id": 12, "profile_path": "/wYmPPXn61F1ecMwIFF8AGla8pKQ.jpg", "order": 4}, {"name": "Bill Pullman", "character": "Brian Plummer", "id": 8984, "credit_id": "5428486cc3a3680b37002a37", "cast_id": 11, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 5}, {"name": "Melissa Leo", "character": "Susan Plummer", "id": 6832, "credit_id": "5371ca08c3a368436e000a88", "cast_id": 7, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 6}, {"name": "David Meunier", "character": "Slavi", "id": 1224149, "credit_id": "54311adbc3a368117b001724", "cast_id": 14, "profile_path": "/bBCXP8UmTHjwqAJRO3Nk3UBftBt.jpg", "order": 7}, {"name": "Johnny Skourtis", "character": "Ralphie", "id": 1399659, "credit_id": "548f2fe192514122ff006e91", "cast_id": 37, "profile_path": "/A6nlgGgziBwzVPjOYFfhBgjfdCD.jpg", "order": 8}, {"name": "Alex Veadov", "character": "Tevi", "id": 20563, "credit_id": "54311b1a0e0a2658b2001693", "cast_id": 15, "profile_path": "/5MNUwSmCYGFQ9ytVRYzKGZcadVq.jpg", "order": 9}, {"name": "Vladimir Kulich", "character": "Vladimir Pushkin", "id": 19898, "credit_id": "548f3000c3a36820b800800c", "cast_id": 38, "profile_path": "/A2g8P9LbEhi34s4I5my4Soo5Y30.jpg", "order": 10}, {"name": "E. Roger Mitchell", "character": "Lead Investigator", "id": 41020, "credit_id": "548f304e9251415568005364", "cast_id": 39, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 11}, {"name": "James Wilcox", "character": "Pederson", "id": 151278, "credit_id": "548f3079c3a3681d4b005a74", "cast_id": 40, "profile_path": "/uIWOVeYs4Vb1QQLOmnugug7yScs.jpg", "order": 12}, {"name": "Mike O'Dea", "character": "Remar", "id": 1399660, "credit_id": "548f30d3c3a3685c3f00246b", "cast_id": 41, "profile_path": "/tXvPtl0QPph3xoAKrv8UbuBk2It.jpg", "order": 13}, {"name": "Anastasia Sanidopoulos Mousis", "character": "Jenny", "id": 1371550, "credit_id": "548f30ef92514122ed00797a", "cast_id": 42, "profile_path": "/20VHqPMLLh98c7Uk36FKudS28sd.jpg", "order": 14}, {"name": "Andrew Farazi", "character": "Gangster", "id": 1195813, "credit_id": "52fe4b919251416c910dec35", "cast_id": 6, "profile_path": "/7gFtpexZvebaeXlNpbBFyojtQ5V.jpg", "order": 15}, {"name": "Allen Maldonado", "character": "Marcus", "id": 141432, "credit_id": "54c7667cc3a36874ae001739", "cast_id": 100, "profile_path": "/yjVKDl9IMrkOUk0ANyFZtOkdM05.jpg", "order": 16}, {"name": "Matt Lasky", "character": "Marat", "id": 101088, "credit_id": "54c766ad92514167910016d3", "cast_id": 101, "profile_path": "/yFJpwI2zeZiyHdzrdVaZueIe0Hc.jpg", "order": 17}, {"name": "Vitaliy Shtabnoy", "character": "Andri", "id": 1419121, "credit_id": "54c766cc925141678e001835", "cast_id": 102, "profile_path": "/6cUY7w39VuLoWjE0OUZM1smR0rn.jpg", "order": 18}, {"name": "Timothy John Smith", "character": "Detective Gilly", "id": 1419122, "credit_id": "54c766e592514167870017b5", "cast_id": 103, "profile_path": "/fQ7VIw071hRRW82yiN2eJ62BVyZ.jpg", "order": 19}, {"name": "Robert Wahlberg", "character": "Detective Harris", "id": 4733, "credit_id": "54c76701c3a36874b40017f9", "cast_id": 104, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 20}, {"name": "Rhet Kidd", "character": "Jay", "id": 1435189, "credit_id": "54f8413a925141241100441a", "cast_id": 105, "profile_path": "/og8pce2BWcfqLV6tsCtn1GH5GZ4.jpg", "order": 21}, {"name": "Mike Morrell", "character": "HM Brian", "id": 1435196, "credit_id": "54f84760c3a36834a2003a58", "cast_id": 106, "profile_path": null, "order": 22}, {"name": "Shawn Fitzgibbon", "character": "Little John Looney", "id": 1435747, "credit_id": "54f9dd409251414b65001a93", "cast_id": 107, "profile_path": "/ddo9U3H6NQCTeUzZmrhwSSL2hNP.jpg", "order": 23}, {"name": "Steve Sweeney", "character": "Counterman", "id": 1435796, "credit_id": "54f9ef0a9251411c4d0000ed", "cast_id": 108, "profile_path": "/4QYaBIVybBU9glR88TnIbhUIepr.jpg", "order": 24}, {"name": "Owen Burke", "character": "Thief", "id": 133068, "credit_id": "54f9f1e49251411c4b00015e", "cast_id": 109, "profile_path": "/qZvzQhocdmrjU6wnQXdCV155G3i.jpg", "order": 25}, {"name": "Luz Mery Sanchez", "character": "Ralphie's Mom", "id": 1435802, "credit_id": "54f9f5669251411c4d0001aa", "cast_id": 110, "profile_path": null, "order": 26}, {"name": "John Romualdi", "character": "Agent Mosley", "id": 1435805, "credit_id": "54f9f600c3a368579600019b", "cast_id": 111, "profile_path": "/eybvc8tmGOWFPxoVMC22sPUZPVu.jpg", "order": 27}, {"name": "Johnny Messner", "character": "P&E Worker", "id": 21798, "credit_id": "54f9fa3ec3a36811c9000059", "cast_id": 112, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 28}, {"name": "Patrick Coppola", "character": "Homeowner", "id": 51666, "credit_id": "54f9fd4fc3a36811c3000069", "cast_id": 113, "profile_path": "/nTgQkkcAM5TXzOlIsIcZbBrNysn.jpg", "order": 29}, {"name": "William Xifaras", "character": "Laborer", "id": 1360002, "credit_id": "54f9fe93c3a36811cf000087", "cast_id": 114, "profile_path": "/cpZ0yxGtal0Qw3A9dzENfCL14pL.jpg", "order": 30}, {"name": "Jenny Johnson", "character": "Reporter", "id": 1435827, "credit_id": "54f9fedec3a36811d2000089", "cast_id": 115, "profile_path": null, "order": 31}, {"name": "Peter Haydu", "character": "Bank Officer", "id": 1435832, "credit_id": "54f9ffa4c3a36811da0000c8", "cast_id": 116, "profile_path": "/yhliTlZS0TQMgqj9tdLAePfd3rd.jpg", "order": 32}, {"name": "Tait Fletcher", "character": "Teddy's Guy", "id": 1105706, "credit_id": "54fa01a7c3a36811d20000e0", "cast_id": 117, "profile_path": "/b70bowmWAiXqlSCBXy0IFC1Mcw4.jpg", "order": 33}, {"name": "Mark Stefanich", "character": "Teddy's Guy", "id": 955406, "credit_id": "54fa030bc3a36811da000136", "cast_id": 118, "profile_path": "/vQyKeuQtJYSdEjP8Zu0r4T6m5c8.jpg", "order": 34}, {"name": "Dan Bilzerian", "character": "Teddy's Guy", "id": 1278777, "credit_id": "54fa060b9251414a1100017d", "cast_id": 119, "profile_path": "/xNvGQiUfsJh6vXGJiyreQ8aHhMO.jpg", "order": 35}, {"name": "Matt Leonard", "character": "Teddy's Guy", "id": 1205742, "credit_id": "54fa07709251414a0d0002bd", "cast_id": 120, "profile_path": "/nxKRJPiFS0aO8PJBnevBAUrRmi7.jpg", "order": 36}, {"name": "Sala Baker", "character": "Teddy's Guy", "id": 1366, "credit_id": "54fa088dc3a36811cf000146", "cast_id": 121, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 37}, {"name": "Yan Dron", "character": "Teddy's Guy", "id": 118598, "credit_id": "54fa0acd9251414a0a0001cb", "cast_id": 122, "profile_path": "/m4rLzOWGcz9hJMSZ8smNdavVQo.jpg", "order": 38}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe4b919251416c910dec23", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 7.4, "runtime": 132}, "49527": {"poster_path": "/ssl4ZcThbMtEPNBEXmWpSgtT9xK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46221189, "overview": "An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.", "video": false, "id": 49527, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Man on a Ledge", "tagline": "You can only push an innocent man so far", "vote_count": 303, "homepage": "http://www.manonaledge.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1568338", "adult": false, "backdrop_path": "/iol2mmfheqTk9AmQXwmgCwKYHm7.jpg", "production_companies": [{"name": "Di Bonaventura Picture", "id": 5955}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2012-01-27", "popularity": 1.17824315154846, "original_title": "Man on a Ledge", "budget": 42000000, "cast": [{"name": "Sam Worthington", "character": "Nick Cassidy", "id": 65731, "credit_id": "52fe479ac3a36847f813e999", "cast_id": 2, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Lydia Mercer", "id": 9281, "credit_id": "52fe479ac3a36847f813e99d", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Joey Cassidy", "id": 478, "credit_id": "52fe479ac3a36847f813e9a1", "cast_id": 4, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Ed Harris", "character": "David Englander", "id": 228, "credit_id": "52fe479ac3a36847f813e9a5", "cast_id": 5, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "Edward Burns", "character": "Jack Dougherty", "id": 12833, "credit_id": "52fe479ac3a36847f813e9a9", "cast_id": 6, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 4}, {"name": "Kyra Sedgwick", "character": "Suzie Morales", "id": 26467, "credit_id": "52fe479ac3a36847f813e9ad", "cast_id": 7, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 5}, {"name": "Anthony Mackie", "character": "Mike Ackerman", "id": 53650, "credit_id": "52fe479ac3a36847f813e9b1", "cast_id": 8, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 6}, {"name": "William Sadler", "character": "Valet", "id": 6573, "credit_id": "52fe479ac3a36847f813e9b5", "cast_id": 9, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 7}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Angie", "id": 589162, "credit_id": "52fe479ac3a36847f813e9b9", "cast_id": 10, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 8}, {"name": "Afton Williamson", "character": "Janice Ackerman", "id": 970631, "credit_id": "52fe479ac3a36847f813e9cf", "cast_id": 15, "profile_path": "/49861fsyV6hLAfGNJjZz0bJdVkf.jpg", "order": 9}, {"name": "J. Smith-Cameron", "character": "Psychiatrist", "id": 52475, "credit_id": "52fe479ac3a36847f813ea09", "cast_id": 25, "profile_path": "/kWOSapPQ0VyG4fASKt5smtt7Tha.jpg", "order": 10}, {"name": "Jonathan Walker", "character": "Investor", "id": 1289296, "credit_id": "52fe479ac3a36847f813ea0d", "cast_id": 26, "profile_path": "/cJvySijSAmPSz6qq0SfGn6icmsp.jpg", "order": 11}], "directors": [{"name": "Asger Leth", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813e995", "profile_path": "/4BKzNUobREK7Wv7LYsUzdKvN9mC.jpg", "id": 72344}], "vote_average": 6.0, "runtime": 102}, "377": {"poster_path": "/sXFlyjfWv544uKOJmPd2vVsaFm9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25504513, "overview": "Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson (Heather Langenkamp) traces the cause to child molester Fred Krueger (Robert Englund), who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen (Johnny Depp), must devise a plan to lure the monster out of the realm of nightmares and into the real world...", "video": false, "id": 377, "genres": [{"id": 27, "name": "Horror"}], "title": "A Nightmare on Elm Street", "tagline": "If Nancy Doesn't Wake Up Screaming, She Won't Wake Up At All!", "vote_count": 250, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087800", "adult": false, "backdrop_path": "/sm0yY77YkAt3nkfVboqm7bw9pjU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Smart Egg Pictures", "id": 1531}], "release_date": "1984-11-15", "popularity": 0.760476199880818, "original_title": "A Nightmare on Elm Street", "budget": 1800000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe423cc3a36847f800e5c1", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Heather Langenkamp", "character": "Nancy Thompson", "id": 5141, "credit_id": "52fe423cc3a36847f800e5d5", "cast_id": 5, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Glen Lantz", "id": 85, "credit_id": "52fe423cc3a36847f800e5d1", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Ronee Blakley", "character": "Marge Thompson", "id": 13652, "credit_id": "52fe423cc3a36847f800e5d9", "cast_id": 6, "profile_path": "/3NFJ8OZshHNfmiSMXbpxQF4RZNH.jpg", "order": 3}, {"name": "John Saxon", "character": "Lt. Thompson", "id": 11163, "credit_id": "52fe423cc3a36847f800e5dd", "cast_id": 7, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 4}, {"name": "Amanda Wyss", "character": "Tina Gray", "id": 13656, "credit_id": "52fe423cc3a36847f800e5e1", "cast_id": 8, "profile_path": "/1HEqQELnhQ7NAC6unYqc4CQ1ib.jpg", "order": 5}, {"name": "Jsu Garcia", "character": "Rod Lane", "id": 13657, "credit_id": "52fe423cc3a36847f800e5e5", "cast_id": 9, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 6}, {"name": "Charles Fleischer", "character": "Dr. King", "id": 12826, "credit_id": "52fe423cc3a36847f800e5e9", "cast_id": 10, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 7}, {"name": "Joseph Whipp", "character": "Sgt. Parker", "id": 13660, "credit_id": "52fe423cc3a36847f800e5ed", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Lin Shaye", "character": "Teacher", "id": 7401, "credit_id": "52fe423cc3a36847f800e5f1", "cast_id": 12, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 9}, {"name": "Joe Unger", "character": "Sgt. Garcia", "id": 13661, "credit_id": "52fe423cc3a36847f800e5f5", "cast_id": 13, "profile_path": "/ebDUtKHeOv2mZthv8cLfKWev2Vi.jpg", "order": 10}, {"name": "Mimi Craven", "character": "Nurse", "id": 13662, "credit_id": "52fe423cc3a36847f800e5f9", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "David Andrews", "character": "Foreman", "id": 7219, "credit_id": "52fe423cc3a36847f800e64b", "cast_id": 28, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 12}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e5cd", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.9, "runtime": 91}, "378": {"poster_path": "/btzzZ3RV9ypuGT2j4Ft72xI013F.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29180280, "overview": "The Coen Brothers tell the story of a absurd yet likable family with an unproductive couple as the focal point. The couple has gotten themselves into some trouble while kidnapping a baby and give Hollywood one of the most memorable chase scenes to date.", "video": false, "id": 378, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Raising Arizona", "tagline": "Their lawless years are behind them. Their child-rearing years lay ahead...", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093822", "adult": false, "backdrop_path": "/A9jMrrFyAHhbr0c7OwrFuL5Ay7E.jpg", "production_companies": [{"name": "Circle Films", "id": 11273}], "release_date": "1987-03-01", "popularity": 0.28350352474625, "original_title": "Raising Arizona", "budget": 6000000, "cast": [{"name": "Nicolas Cage", "character": "H.I. McDunnough", "id": 2963, "credit_id": "52fe423cc3a36847f800e6c1", "cast_id": 12, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Holly Hunter", "character": "Edwina 'Ed' McDunnough", "id": 18686, "credit_id": "52fe423cc3a36847f800e6c5", "cast_id": 13, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 1}, {"name": "Trey Wilson", "character": "Nathan Arizona Huffhines, Sr.", "id": 4039, "credit_id": "52fe423cc3a36847f800e6c9", "cast_id": 14, "profile_path": "/lT3Ia2j6BpNflu3duzK0bU2t83m.jpg", "order": 2}, {"name": "John Goodman", "character": "Gale Snoats", "id": 1230, "credit_id": "52fe423cc3a36847f800e6cd", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "William Forsythe", "character": "Evelle Snoats", "id": 4520, "credit_id": "52fe423cc3a36847f800e6d1", "cast_id": 16, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 4}, {"name": "Sam McMurray", "character": "Glen", "id": 5176, "credit_id": "52fe423cc3a36847f800e6d5", "cast_id": 17, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 5}, {"name": "Frances McDormand", "character": "Dot", "id": 3910, "credit_id": "52fe423cc3a36847f800e6d9", "cast_id": 18, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 6}, {"name": "Randall 'Tex' Cobb", "character": "Leonard Smalls", "id": 5177, "credit_id": "52fe423cc3a36847f800e6dd", "cast_id": 19, "profile_path": "/wtRQp99LgNrJ8bF9XyAzbuoekMb.jpg", "order": 7}, {"name": "T.J. Kuhn", "character": "Nathan Arizona, Jr.", "id": 5178, "credit_id": "52fe423cc3a36847f800e6e1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Lynne Kitei", "character": "Florence Arizona", "id": 5179, "credit_id": "52fe423cc3a36847f800e6e5", "cast_id": 21, "profile_path": null, "order": 9}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e681", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e687", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.2, "runtime": 94}, "379": {"poster_path": "/szjELUMzo3fIVBlMTISIMfQWqJc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5080409, "overview": "Miller\u2019s Crossing is the Coen brothers' first successful attempt at reaching a wider audience. They illustrate an atypical Mafia story that sways away from the typical films from the genre like The Godfather or Goodfellas. Taking place during Prohibition, this film is an incredible piece of work accompanied by superb acting performances.", "video": false, "id": 379, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Miller's Crossing", "tagline": "Up is down, black is white, and nothing is what it seems.", "vote_count": 79, "homepage": "http://www.geocities.com/~mikemckiernan/mcfrontpage.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "gd", "name": ""}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "yi", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100150", "adult": false, "backdrop_path": "/bOiWS61bV1oIaHhxXtmtAy8Gfvq.jpg", "production_companies": [{"name": "Circle Films", "id": 11273}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1990-09-21", "popularity": 0.703368798885098, "original_title": "Miller's Crossing", "budget": 14000000, "cast": [{"name": "Gabriel Byrne", "character": "Tom Reagan", "id": 5168, "credit_id": "52fe423cc3a36847f800e777", "cast_id": 6, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Verna Bernbaum", "id": 4726, "credit_id": "52fe423cc3a36847f800e77b", "cast_id": 7, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "John Turturro", "character": "Bernie Bernbaum", "id": 1241, "credit_id": "52fe423cc3a36847f800e77f", "cast_id": 8, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 2}, {"name": "Jon Polito", "character": "Johnny Caspar", "id": 4253, "credit_id": "52fe423cc3a36847f800e783", "cast_id": 9, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 3}, {"name": "J.E. Freeman", "character": "Eddie Dane", "id": 5169, "credit_id": "52fe423cc3a36847f800e787", "cast_id": 10, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 4}, {"name": "Albert Finney", "character": "Liam 'Leo' O'Bannon", "id": 3926, "credit_id": "52fe423cc3a36847f800e78b", "cast_id": 11, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 5}, {"name": "Mike Starr", "character": "Frankie", "id": 5170, "credit_id": "52fe423cc3a36847f800e78f", "cast_id": 12, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 6}, {"name": "Al Mancini", "character": "Tic-Tac", "id": 5171, "credit_id": "52fe423cc3a36847f800e793", "cast_id": 13, "profile_path": "/k4bnip5sXDzH1dIH5QeLxUs3xP4.jpg", "order": 7}, {"name": "Richard Woods", "character": "Mayor Dale Levander", "id": 5172, "credit_id": "52fe423cc3a36847f800e797", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Thomas Toner", "character": "O'Doole", "id": 5173, "credit_id": "52fe423cc3a36847f800e79b", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Steve Buscemi", "character": "Mink", "id": 884, "credit_id": "52fe423cc3a36847f800e79f", "cast_id": 16, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 10}, {"name": "Mario Todisco", "character": "Clarence \"Drop\" Johnson", "id": 176958, "credit_id": "52fe423cc3a36847f800e7dd", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Olek Krupa", "character": "Tad", "id": 53573, "credit_id": "52fe423cc3a36847f800e7e1", "cast_id": 29, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 12}, {"name": "Michael Jeter", "character": "Adolph", "id": 2169, "credit_id": "52fe423cc3a36847f800e7e5", "cast_id": 30, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 13}, {"name": "Lanny Flaherty", "character": "Terry", "id": 3204, "credit_id": "52fe423cc3a36847f800e7e9", "cast_id": 31, "profile_path": "/tu6UZVHRKRNLbtmHUsjHWHctprz.jpg", "order": 14}, {"name": "Jeanette Kontomitras", "character": "Mrs. Caspar", "id": 1126347, "credit_id": "52fe423cc3a36847f800e7ed", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Louis Charles Mounicou III", "character": "Johnny Caspar, Jr.", "id": 1281525, "credit_id": "52fe423cc3a36847f800e7f1", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "John McConnell", "character": "Cop - Brian", "id": 16459, "credit_id": "52fe423cc3a36847f800e7f5", "cast_id": 34, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 17}, {"name": "Danny Aiello III", "character": "Cop - Delahanty", "id": 27513, "credit_id": "52fe423cc3a36847f800e7f9", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Helen Jolly", "character": "Screaming Lady", "id": 1281526, "credit_id": "52fe423cc3a36847f800e7fd", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Hilda McLean", "character": "Landlady", "id": 1281527, "credit_id": "52fe423cc3a36847f800e801", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Monte Starr", "character": "Gunman in Leo's House", "id": 1281528, "credit_id": "52fe423cc3a36847f800e805", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Don Picard", "character": "Gunman in Leo's House", "id": 142160, "credit_id": "52fe423cc3a36847f800e809", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Salvatore H. Tornabene", "character": "Rug Daniels", "id": 1281529, "credit_id": "52fe423cc3a36847f800e80d", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Kevin Dearie", "character": "Street Urchin", "id": 1281530, "credit_id": "52fe423cc3a36847f800e811", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Michael Badalucco", "character": "Caspar's Driver", "id": 1010, "credit_id": "52fe423cc3a36847f800e815", "cast_id": 42, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 25}, {"name": "Charles Ferrara", "character": "Caspar's Butler", "id": 1281531, "credit_id": "52fe423cc3a36847f800e819", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Esteban Fernandez", "character": "Caspar's Cousin", "id": 1281532, "credit_id": "52fe423cc3a36847f800e81d", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "George Fernandez", "character": "Caspar's Cousin", "id": 1281533, "credit_id": "52fe423cc3a36847f800e821", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Charles Gunning", "character": "Hitman at Verna's", "id": 71659, "credit_id": "52fe423cc3a36847f800e825", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Dave Drinkx", "character": "Hitman #2", "id": 1281535, "credit_id": "52fe423cc3a36847f800e829", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "David Darlow", "character": "Lazarre's Messenger", "id": 35022, "credit_id": "52fe423cc3a36847f800e82d", "cast_id": 48, "profile_path": null, "order": 31}, {"name": "Robert LaBrosse", "character": "Lazarre's Tough", "id": 1281536, "credit_id": "52fe423cc3a36847f800e831", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Carl Rooney", "character": "Lazarre's Tough", "id": 1281537, "credit_id": "52fe423cc3a36847f800e835", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Jack Harris", "character": "Man with Pipe Bomb (as Jack David Harris)", "id": 1190852, "credit_id": "52fe423cc3a36847f800e839", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Jery Hewitt", "character": "Son of Erin", "id": 1281538, "credit_id": "52fe423cc3a36847f800e83d", "cast_id": 52, "profile_path": null, "order": 35}, {"name": "Sam Raimi", "character": "Snickering Gunman", "id": 7623, "credit_id": "52fe423cc3a36847f800e841", "cast_id": 53, "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "order": 36}, {"name": "John Schnauder Jr.", "character": "Cop with Bullhorn", "id": 1281539, "credit_id": "52fe423cc3a36847f800e845", "cast_id": 54, "profile_path": null, "order": 37}, {"name": "Zolly Levin", "character": "Rabbi", "id": 1281540, "credit_id": "52fe423cc3a36847f800e849", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Joey Ancona", "character": "Boxer", "id": 1281541, "credit_id": "52fe423cc3a36847f800e84d", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Bill Raye", "character": "Boxer", "id": 1281542, "credit_id": "52fe423cc3a36847f800e851", "cast_id": 57, "profile_path": null, "order": 40}, {"name": "William Preston Robertson", "character": "Voice (voice)", "id": 565196, "credit_id": "52fe423cc3a36847f800e855", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Frances McDormand", "character": "Mayor's secretary (uncredited)", "id": 3910, "credit_id": "52fe423cc3a36847f800e7d9", "cast_id": 27, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 42}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "53c44a360e0a26157f00d8c3", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e767", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 7.7, "runtime": 115}, "380": {"poster_path": "/vllKYkA7eYi2UMM9yWQ1JegefBh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 354825435, "overview": "Selfish yuppie Charlie Babbitt's father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country.", "video": false, "id": 380, "genres": [{"id": 18, "name": "Drama"}], "title": "Rain Man", "tagline": "A journey through understanding and fellowship.", "vote_count": 452, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095953", "adult": false, "backdrop_path": "/si2eYu8vpfb2Gu9jHnnbBtSXnNJ.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Star Partners II Ltd.", "id": 206}], "release_date": "1988-12-11", "popularity": 1.13914321242952, "original_title": "Rain Man", "budget": 25000000, "cast": [{"name": "Dustin Hoffman", "character": "Raymond Babbitt", "id": 4483, "credit_id": "52fe423cc3a36847f800e8b7", "cast_id": 4, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Tom Cruise", "character": "Charlie Babbitt", "id": 500, "credit_id": "52fe423cc3a36847f800e8bb", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 1}, {"name": "Valeria Golino", "character": "Susanna", "id": 3124, "credit_id": "52fe423cc3a36847f800e8bf", "cast_id": 6, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 2}, {"name": "Gerald R. Molen", "character": "Dr. Bruner", "id": 2211, "credit_id": "52fe423cc3a36847f800e8c3", "cast_id": 7, "profile_path": "/ih3yLiYixeQuW2Zp545aHtD5nq.jpg", "order": 3}, {"name": "Jack Murdock", "character": "John Mooney", "id": 5145, "credit_id": "52fe423cc3a36847f800e8c7", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Michael D. Roberts", "character": "Vern", "id": 5146, "credit_id": "52fe423cc3a36847f800e8cb", "cast_id": 9, "profile_path": "/lljqOALpsg8lkOiXedHgWmOA5bY.jpg", "order": 5}, {"name": "Ralph Seymour", "character": "Lenny", "id": 5147, "credit_id": "52fe423cc3a36847f800e8cf", "cast_id": 10, "profile_path": "/7lu95loRqfN0TTWZGM1QfI5hX8W.jpg", "order": 6}, {"name": "Lucinda Jenney", "character": "Iris", "id": 5148, "credit_id": "52fe423cc3a36847f800e8d3", "cast_id": 11, "profile_path": "/ucvaRviBWE1IR4YPGA8VYVMSand.jpg", "order": 7}, {"name": "Bonnie Hunt", "character": "Sally Dibbs", "id": 5149, "credit_id": "52fe423cc3a36847f800e8d7", "cast_id": 12, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 8}, {"name": "Kim Robillard", "character": "Township Doctor", "id": 5150, "credit_id": "52fe423cc3a36847f800e8db", "cast_id": 13, "profile_path": "/vhmpyqkhpIv1NjB4rfDBLsxfybu.jpg", "order": 9}, {"name": "Beth Grant", "character": "Mother at Farm House", "id": 5151, "credit_id": "52fe423cc3a36847f800e8df", "cast_id": 14, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 10}, {"name": "Dolan Dougherty", "character": "Farm Kid#1", "id": 5152, "credit_id": "52fe423cc3a36847f800e8e3", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Marshall Dougherty", "character": "Farm Kid#2", "id": 5153, "credit_id": "52fe423cc3a36847f800e8e7", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Patrick Dougherty", "character": "Farm Kid#3", "id": 5154, "credit_id": "52fe423cc3a36847f800e8eb", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Peter Dougherty", "character": "Farm Kid#5", "id": 5156, "credit_id": "52fe423cc3a36847f800e8ef", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Andrew Dougherty", "character": "Farm Kid#6", "id": 5157, "credit_id": "52fe423cc3a36847f800e8f3", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Loretta Wendt Jolivette", "character": "Secretary Dr. Bruner", "id": 5158, "credit_id": "52fe423cc3a36847f800e8f7", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Donald E. Jones", "character": "Minister at Funeral", "id": 5159, "credit_id": "52fe423cc3a36847f800e8fb", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Bryon P. Caunar", "character": "Patient in Waiting Room", "id": 5160, "credit_id": "52fe423cc3a36847f800e8ff", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Donna J. Dickson", "character": "Nurse", "id": 5161, "credit_id": "52fe423cc3a36847f800e903", "cast_id": 23, "profile_path": null, "order": 19}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e8a7", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 7.1, "runtime": 133}, "381": {"poster_path": "/i2BehBKq2PGiv0LmGUQxzWgk10l.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8750000, "overview": "A delightful Hitchcock film about an ex-burglar who must catch a thief who\u2019s been copying this style before he gets accused of the wrong crimes. His time is running out as the police are close behind him yet he finds time for a little romance of course. A classic masterpiece starring Grace Kelly and Cary Grant.", "video": false, "id": 381, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "To Catch a Thief", "tagline": "WANTED by the police in all the luxury-spots of Europe!... A catch for any woman!", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0048728", "adult": false, "backdrop_path": "/h0uogx8C6Es5chDvY5USa3r7Tr1.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1955-08-03", "popularity": 0.690641047298019, "original_title": "To Catch a Thief", "budget": 2500000, "cast": [{"name": "Cary Grant", "character": "John Robie", "id": 2638, "credit_id": "52fe423dc3a36847f800e9db", "cast_id": 19, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Frances Stevens", "id": 4070, "credit_id": "52fe423cc3a36847f800e989", "cast_id": 3, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Jessie Royce Landis", "character": "Jessie Stevens", "id": 2640, "credit_id": "52fe423cc3a36847f800e999", "cast_id": 6, "profile_path": "/o7NngdQPrvEfN3m3UVcjVPwC3Co.jpg", "order": 2}, {"name": "Brigitte Auber", "character": "Danielle Foussard", "id": 5183, "credit_id": "52fe423cc3a36847f800e9a5", "cast_id": 9, "profile_path": "/yopJUGz9G5bbJKMRQnC6R27SXtc.jpg", "order": 3}, {"name": "John Williams", "character": "H. H. Hughson", "id": 5182, "credit_id": "52fe423cc3a36847f800e99d", "cast_id": 7, "profile_path": "/esXPldHaXSEz8dQmahcGz4VWJ8R.jpg", "order": 4}, {"name": "Charles Vanel", "character": "Bertani", "id": 2566, "credit_id": "52fe423cc3a36847f800e9a1", "cast_id": 8, "profile_path": "/m3zN5n0ehtZcSJHu4E2miJt7dsp.jpg", "order": 5}, {"name": "Jean Martinelli", "character": "Foussard", "id": 5185, "credit_id": "52fe423dc3a36847f800e9b5", "cast_id": 12, "profile_path": "/aem2faLcsdEsnO59Om3y8OciAgu.jpg", "order": 6}, {"name": "Georgette Anys", "character": "Germaine", "id": 5186, "credit_id": "52fe423dc3a36847f800e9b9", "cast_id": 13, "profile_path": "/sfrenrCZsCMz0CGeIein5LlabTU.jpg", "order": 7}, {"name": "Bess Flowers", "character": "Masquerade party guest", "id": 121323, "credit_id": "52fe423dc3a36847f800e9df", "cast_id": 20, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 8}, {"name": "Alfred Hitchcock", "character": "Man Sitting Next to John Robie on Bus (uncredited)", "id": 2636, "credit_id": "5512926cc3a3686195001195", "cast_id": 21, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 9}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e985", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.2, "runtime": 106}, "9621": {"poster_path": "/Asn50mIjDaeDKbaJkQ7lY6goV8p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13500000, "overview": "Drew Baylor is fired after causing his shoe company to lose hundreds of millions of dollars. To make matters worse, he's also dumped by his girlfriend. On the verge of ending it all, Drew gets a new lease on life when he returns to his family's small Kentucky hometown after his father dies. Along the way, he meets a flight attendant with whom he falls in love.", "video": false, "id": 9621, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Elizabethtown", "tagline": "It's a heck of a place to find yourself", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368709", "adult": false, "backdrop_path": "/3iwNfRoESEM2aI5wXkNSeDeiWCW.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Vinyl Films", "id": 485}, {"name": "KMP Film Invest", "id": 20157}], "release_date": "2005-09-04", "popularity": 0.407867049933252, "original_title": "Elizabethtown", "budget": 57000000, "cast": [{"name": "Orlando Bloom", "character": "Drew Baylor", "id": 114, "credit_id": "52fe4512c3a36847f80bace5", "cast_id": 6, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Claire Colburn", "id": 205, "credit_id": "52fe4512c3a36847f80bace9", "cast_id": 7, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Hollie Baylor", "id": 4038, "credit_id": "52fe4512c3a36847f80baced", "cast_id": 8, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Alec Baldwin", "character": "Phil DeVoss", "id": 7447, "credit_id": "52fe4512c3a36847f80bacf1", "cast_id": 9, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Bill Banyon", "id": 14888, "credit_id": "52fe4512c3a36847f80bacf5", "cast_id": 10, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Judy Greer", "character": "Heather Baylor", "id": 20750, "credit_id": "52fe4512c3a36847f80bacf9", "cast_id": 11, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 5}, {"name": "Jessica Biel", "character": "Ellen Kishmore", "id": 10860, "credit_id": "52fe4512c3a36847f80bacfd", "cast_id": 12, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 6}, {"name": "Paul Schneider ", "character": "Jessie Baylor", "id": 997565, "credit_id": "52fe4512c3a36847f80bad01", "cast_id": 13, "profile_path": "/e3NFEoxP6G9RdbZoyyMPTfBUbol.jpg", "order": 7}, {"name": "Jed Rees", "character": "Chuck Hasboro", "id": 15032, "credit_id": "52fe4512c3a36847f80bad05", "cast_id": 14, "profile_path": "/u2zPeu9RguGzPagDjSPPxXFHxax.jpg", "order": 8}, {"name": "Paula Deen", "character": "Aunt Dora", "id": 1215524, "credit_id": "52fe4512c3a36847f80bad09", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Tim Devitt", "character": "Mitch Baylor", "id": 1086871, "credit_id": "52fe4512c3a36847f80bad0d", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Loudon Wainwright III", "character": "Uncle Dale", "id": 84848, "credit_id": "52fe4512c3a36847f80bad11", "cast_id": 17, "profile_path": "/dXknB49LSGxMcmhYGch7hcsYFY1.jpg", "order": 11}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bacc9", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.1, "runtime": 123}, "49538": {"poster_path": "/l2cBQTfbVEWUXW8nKWCgq0ct7WU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 344420111, "overview": "Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.", "video": false, "id": 49538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "X-Men: First Class", "tagline": "Witness the moment that will change our world.", "vote_count": 2605, "homepage": "http://www.x-menfirstclassmovie.com/", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1270798", "adult": false, "backdrop_path": "/39nstYsfjR6ggyKTtB4Joga2fs8.jpg", "production_companies": [{"name": "Marvel Entertainment", "id": 7505}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Ingenious Media", "id": 290}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Donners' Company", "id": 431}, {"name": "Dune Entertainment", "id": 444}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Big Screen Productions", "id": 10893}], "release_date": "2011-05-24", "popularity": 0.149384529175766, "original_title": "X-Men: First Class", "budget": 160000000, "cast": [{"name": "James McAvoy", "character": "Charles Xavier", "id": 5530, "credit_id": "52fe479bc3a36847f813ecbb", "cast_id": 22, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Erik Lehnsherr / Magneto", "id": 17288, "credit_id": "52fe479bc3a36847f813ecbf", "cast_id": 23, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Jennifer Lawrence", "character": "Raven Darkholme / Mystique", "id": 72129, "credit_id": "52fe479bc3a36847f813eccb", "cast_id": 26, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Sebastian Shaw", "id": 4724, "credit_id": "52fe479bc3a36847f813eccf", "cast_id": 27, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Rose Byrne", "character": "Moira MacTaggert", "id": 9827, "credit_id": "52fe479bc3a36847f813ecc3", "cast_id": 24, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 4}, {"name": "Nicholas Hoult", "character": "Hank McCoy / Beast", "id": 3292, "credit_id": "52fe479bc3a36847f813ece3", "cast_id": 32, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 5}, {"name": "January Jones", "character": "Emma Frost", "id": 31717, "credit_id": "52fe479bc3a36847f813ecc7", "cast_id": 25, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 6}, {"name": "Lucas Till", "character": "Alex Summers / Havok", "id": 429, "credit_id": "52fe479bc3a36847f813ecff", "cast_id": 39, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 7}, {"name": "Caleb Landry Jones", "character": "Sean Cassidy / Banshee", "id": 572541, "credit_id": "52fe479bc3a36847f813ecf7", "cast_id": 37, "profile_path": "/73T6DLPggbDaIDLz162o01dCg6I.jpg", "order": 8}, {"name": "Zo\u00eb Kravitz", "character": "Angel Salvadore", "id": 37153, "credit_id": "52fe479bc3a36847f813ecd7", "cast_id": 29, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 9}, {"name": "\u00c1lex Gonz\u00e1lez", "character": "Janos Quested / Riptide", "id": 1030252, "credit_id": "52fe479bc3a36847f813ecdb", "cast_id": 30, "profile_path": "/6ZTRJwkZ26p1wsNdUtyn6UTHyN3.jpg", "order": 10}, {"name": "Edi Gathegi", "character": "Armando Mu\u00f1oz / Darwin", "id": 39391, "credit_id": "52fe479bc3a36847f813ecfb", "cast_id": 38, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 11}, {"name": "Jason Flemyng", "character": "Azazel", "id": 973, "credit_id": "52fe479bc3a36847f813ecdf", "cast_id": 31, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 12}, {"name": "Oliver Platt", "character": "Man in Black Suit", "id": 17485, "credit_id": "52fe479bc3a36847f813ecd3", "cast_id": 28, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 13}, {"name": "Morgan Lily", "character": "Young Raven (10 yrs)", "id": 74227, "credit_id": "52fe479bc3a36847f813ece7", "cast_id": 33, "profile_path": "/iYa30gYkaxXLsGvUZ9WhieQw2xo.jpg", "order": 14}, {"name": "Laurence Belcher", "character": "Charles Xavier (12 Years)", "id": 456008, "credit_id": "52fe479bc3a36847f813ecf3", "cast_id": 36, "profile_path": "/b8085IGbfe70N80Mz27qhsIz2PH.jpg", "order": 15}, {"name": "Beth Goddard", "character": "Mrs. Xavier", "id": 182079, "credit_id": "52fe479bc3a36847f813eceb", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Bill Milner", "character": "Young Erik", "id": 81260, "credit_id": "52fe479bc3a36847f813ecef", "cast_id": 35, "profile_path": "/gc1aD7V6mnEKuLhHJX9ssjxT2H7.jpg", "order": 17}, {"name": "Demetri Goritsas", "character": "Levene", "id": 20471, "credit_id": "52fe479bc3a36847f813ed03", "cast_id": 40, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 18}, {"name": "Glenn Morshower", "character": "Colonel Hendry", "id": 12797, "credit_id": "52fe479bc3a36847f813ed07", "cast_id": 41, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 19}, {"name": "Don Creech", "character": "William Stryker", "id": 1007, "credit_id": "52fe479bc3a36847f813ed0b", "cast_id": 42, "profile_path": "/sI2hA8u4BiMfqtMLaKwLgeH5vGy.jpg", "order": 20}, {"name": "Matt Craven", "character": "CIA Director McCone", "id": 13525, "credit_id": "52fe479bc3a36847f813ed0f", "cast_id": 43, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 21}, {"name": "James Remar", "character": "US General", "id": 1736, "credit_id": "52fe479bc3a36847f813ed13", "cast_id": 44, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 22}, {"name": "Ray Wise", "character": "Secretary of State", "id": 6719, "credit_id": "52fe479bc3a36847f813ed17", "cast_id": 45, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 23}, {"name": "Brendan Fehr", "character": "Communications Officer", "id": 72440, "credit_id": "52fe479bc3a36847f813ed1b", "cast_id": 46, "profile_path": "/8tp3G4RMWNpxprEfyxvjhRFf6uq.jpg", "order": 24}, {"name": "Michael Ironside", "character": "Captain", "id": 11086, "credit_id": "52fe479bc3a36847f813ed1f", "cast_id": 47, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 25}, {"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe479bc3a36847f813ed23", "cast_id": 48, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 26}, {"name": "Rebecca Romijn", "character": "Mystique - older", "id": 11008, "credit_id": "52fe479bc3a36847f813ed27", "cast_id": 49, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 27}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe479bc3a36847f813ec8d", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.9, "runtime": 132}, "387": {"poster_path": "/nAhTaTpjATAtoxlf3Hbe6bDvQe0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 85000000, "overview": "A German submarine hunts allied ships during the Second World War. Soon it becomes hunted itself. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits...", "video": false, "id": 387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Boat", "tagline": "When the hunters become the hunted", "vote_count": 192, "homepage": "http://www.dasboot.com", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0082096", "adult": false, "backdrop_path": "/hHiR613tscJ2i6A2HcM6Yp8bWyz.jpg", "production_companies": [{"name": "Bavaria Film", "id": 1704}, {"name": "Radiant Film GmbH", "id": 209}, {"name": "S\u00fcddeutscher Rundfunk", "id": 210}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Twin Bros. Productions", "id": 11344}], "release_date": "1981-09-16", "popularity": 1.14311942826575, "original_title": "Das Boot", "budget": 14000000, "cast": [{"name": "J\u00fcrgen Prochnow", "character": "Kapit\u00e4n-Leutnant Heinrich Lehmann-Willenbrock", "id": 920, "credit_id": "52fe423dc3a36847f800ea8f", "cast_id": 1, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 0}, {"name": "Herbert Gr\u00f6nemeyer", "character": "Leutnant Werner", "id": 5228, "credit_id": "52fe423dc3a36847f800ea93", "cast_id": 2, "profile_path": "/sd500lUOKffH6GjTgmO72eCfmmL.jpg", "order": 1}, {"name": "Klaus Wennemann", "character": "Der Leitende/Fritz Grade", "id": 5229, "credit_id": "52fe423dc3a36847f800ea97", "cast_id": 3, "profile_path": "/nq80zefLZL8fAogOl4wWZ9FJZ6C.jpg", "order": 2}, {"name": "Hubertus Bengsch", "character": "1WO", "id": 5230, "credit_id": "52fe423dc3a36847f800ea9b", "cast_id": 4, "profile_path": "/ysDakvQICbinzI2Yhm1mJi6b5v0.jpg", "order": 3}, {"name": "Martin Semmelrogge", "character": "2WO", "id": 4924, "credit_id": "52fe423dc3a36847f800ea9f", "cast_id": 5, "profile_path": "/1QLBQoyszTLfk4WZmoXixpyjBb6.jpg", "order": 4}, {"name": "Bernd Tauber", "character": "Kriechbaum/Navigator", "id": 2349, "credit_id": "52fe423dc3a36847f800eaa3", "cast_id": 6, "profile_path": "/moshEghFjn4gxUHNCvqPxXU6nPj.jpg", "order": 5}, {"name": "Erwin Leder", "character": "Johann", "id": 3970, "credit_id": "52fe423dc3a36847f800eaa7", "cast_id": 7, "profile_path": "/26qbu74DyDmZM3unsU99wiPWw5i.jpg", "order": 6}, {"name": "Martin May", "character": "Ullmann", "id": 5232, "credit_id": "52fe423dc3a36847f800eab1", "cast_id": 9, "profile_path": "/xZbvM8s1sDxUHTZGRcKoC3uguZf.jpg", "order": 7}, {"name": "Heinz Hoenig", "character": "Hinrich", "id": 5233, "credit_id": "52fe423dc3a36847f800eab5", "cast_id": 10, "profile_path": "/nyBxwL4xkGIlFrhIn4l8jzlbG09.jpg", "order": 8}, {"name": "Uwe Ochsenknecht", "character": "Bosun", "id": 682, "credit_id": "52fe423dc3a36847f800eab9", "cast_id": 11, "profile_path": "/nPaQx2K0UodicKPlrAXQjjkilF7.jpg", "order": 9}, {"name": "Claude-Oliver Rudolph", "character": "Ario", "id": 5234, "credit_id": "52fe423dc3a36847f800eabd", "cast_id": 12, "profile_path": "/3dydKxmunb3m7UbOlRdNIaSEEKf.jpg", "order": 10}, {"name": "Jan Fedder", "character": "Pilgrim", "id": 5235, "credit_id": "52fe423dc3a36847f800eac1", "cast_id": 13, "profile_path": "/2NERvzzZnP2b6MeIzCwVW581qUc.jpg", "order": 11}, {"name": "Ralf Richter", "character": "Frenssen", "id": 4922, "credit_id": "52fe423dc3a36847f800eac5", "cast_id": 14, "profile_path": "/AnTdFifILOwDLZAT9xxYshUgJbF.jpg", "order": 12}, {"name": "Otto Sander", "character": "Phillip Thomsen", "id": 2311, "credit_id": "5308f4e2c3a3684213002a20", "cast_id": 31, "profile_path": "/6wIfFAG3mryP7vx2zc75Ey67fL.jpg", "order": 13}, {"name": "Sky du Mont", "character": "Leutnant M\u00fcller", "id": 5012, "credit_id": "5365e43ac3a3681220002506", "cast_id": 33, "profile_path": "/8BEBOXP0BToOi4m9KBWAcWPGPlr.jpg", "order": 15}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800eaad", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 7.6, "runtime": 149}, "388": {"poster_path": "/z6wYRuvk1lf60R4SmWETfdUvGsm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 184376254, "overview": "An efficient gang enters a Manhattan bank, locks the doors, and takes hostages. They work deliberately, without haste. Detective Frazier is assigned to negotiate, but his mind is occupied with the corruption charges he is facing. With an army of police surrounding the bank, the thief, the cop, and the plutocrat's fixer enter high-stakes negotiations. Why are the robbers asking for a plane, if they are so competent and they know they won't get one? Why aren't they in more of a hurry?", "video": false, "id": 388, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Inside Man", "tagline": "It looked like the perfect bank robbery. But you can't judge a crime by its cover.", "vote_count": 403, "homepage": "http://www.universalstudiosentertainment.com/inside-man/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sq", "name": "shqip"}], "imdb_id": "tt0454848", "adult": false, "backdrop_path": "/6sLQFh6VFxU8nIkVaYg2yyJ6FL.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}], "release_date": "2006-03-24", "popularity": 1.04698440316159, "original_title": "Inside Man", "budget": 45000000, "cast": [{"name": "Denzel Washington", "character": "Detective Keith Frazier", "id": 5292, "credit_id": "52fe423dc3a36847f800ebc1", "cast_id": 15, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Madeleine White", "id": 1038, "credit_id": "52fe423dc3a36847f800ebc5", "cast_id": 16, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Clive Owen", "character": "Dalton Russell", "id": 2296, "credit_id": "52fe423dc3a36847f800ebc9", "cast_id": 17, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "Arthur Case", "id": 290, "credit_id": "52fe423dc3a36847f800ebcd", "cast_id": 18, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "Chiwetel Ejiofor", "character": "Detective Bill Mitchell", "id": 5294, "credit_id": "52fe423dc3a36847f800ebd1", "cast_id": 19, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 4}, {"name": "Carlos Andr\u00e9s G\u00f3mez", "character": "Steve", "id": 5295, "credit_id": "52fe423dc3a36847f800ebd5", "cast_id": 20, "profile_path": "/fJrzxb24agdScxqXbTWs90mQN0x.jpg", "order": 5}, {"name": "Kim Director", "character": "Stevie", "id": 4889, "credit_id": "52fe423dc3a36847f800ebd9", "cast_id": 21, "profile_path": "/3QW5pMPzbcOkJHeif2cHAW04WhT.jpg", "order": 6}, {"name": "James Ransone", "character": "Steve-O", "id": 5296, "credit_id": "52fe423dc3a36847f800ebdd", "cast_id": 22, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 7}, {"name": "Bernie Rachelle", "character": "Chaim", "id": 5297, "credit_id": "52fe423dc3a36847f800ebe1", "cast_id": 23, "profile_path": "/lWUR45ip1TJDJHwrq62Np7AGGxD.jpg", "order": 8}, {"name": "Peter Gerety", "character": "Captain Coughlin", "id": 1986, "credit_id": "52fe423dc3a36847f800ebe5", "cast_id": 24, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 9}, {"name": "Victor Colicchio", "character": "Sergeant Collins", "id": 5298, "credit_id": "52fe423dc3a36847f800ebe9", "cast_id": 25, "profile_path": "/4qzVfLml5Jmzn20QpJF5qlfJJaA.jpg", "order": 10}, {"name": "Cassandra Freeman", "character": "Sylvia", "id": 5299, "credit_id": "52fe423dc3a36847f800ebed", "cast_id": 26, "profile_path": "/dwIqYfdeOaUUEjcEKuPf5LkBSFE.jpg", "order": 11}, {"name": "Peter Frechette", "character": "Peter Hammond", "id": 5300, "credit_id": "52fe423dc3a36847f800ebf1", "cast_id": 27, "profile_path": "/Aat9wnvCBql56V9axa5lZ0QvPP1.jpg", "order": 12}, {"name": "Waris Ahluwalia", "character": "Vikram Walia", "id": 5301, "credit_id": "52fe423dc3a36847f800ebf5", "cast_id": 28, "profile_path": "/608mxzVDmbQtWt3IedJyQ72FNg5.jpg", "order": 13}, {"name": "Gerry Vichi", "character": "Herman Gluck", "id": 5302, "credit_id": "52fe423dc3a36847f800ebf9", "cast_id": 29, "profile_path": "/kVPmf696NjAqWzyEIVlPi7HlR5l.jpg", "order": 14}, {"name": "Rafael Osorio", "character": "Bank Guard#1", "id": 5303, "credit_id": "52fe423dc3a36847f800ebfd", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Rodney 'Bear' Jackson", "character": "Bank Guard#2", "id": 5304, "credit_id": "52fe423dc3a36847f800ec01", "cast_id": 31, "profile_path": "/qi6H0wVTcWoaj0V6c0YfP9O17Pt.jpg", "order": 16}, {"name": "Willem Dafoe", "character": "Captain Darius", "id": 5293, "credit_id": "52fe423dc3a36847f800ec0b", "cast_id": 33, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 17}, {"name": "Daryl Mitchell", "character": "Mobile Command Officer Rourke", "id": 15028, "credit_id": "54f1f74ec3a368322f001f1a", "cast_id": 34, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 18}, {"name": "Ashlie Atkinson", "character": "Mobile Command Officer Berk", "id": 77264, "credit_id": "54f1f8aa9251416b3b001f3e", "cast_id": 35, "profile_path": "/h0ykP84QXTDLxfzizdQaFXZzzY8.jpg", "order": 19}, {"name": "David Brown", "character": "Mobile Command Officer Carnow", "id": 1260146, "credit_id": "54f1fa2b9251416b410022a5", "cast_id": 36, "profile_path": "/rS11US9Th9grQlTN0NdK7Q2VrI1.jpg", "order": 20}, {"name": "Robert C. Kirk", "character": "Mobile Command Officer Borinsky", "id": 150932, "credit_id": "54f1fcd89251416b3e0021b7", "cast_id": 37, "profile_path": "/fHkUG3gAwubiSJHFDJY5S97xNDu.jpg", "order": 21}, {"name": "Frank Stellato", "character": "Mobile Command Detective", "id": 1433251, "credit_id": "54f1fdadc3a36832320026b2", "cast_id": 38, "profile_path": "/v6cRDVpHb8BmS20HVnHnolMO7fL.jpg", "order": 22}, {"name": "Ken Leung", "character": "Wing", "id": 2131, "credit_id": "54f1fe9bc3a3683235001f56", "cast_id": 39, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 23}, {"name": "Marcia Jean Kurtz", "character": "Miriam Douglas", "id": 14548, "credit_id": "54f1ff21c3a3683245002184", "cast_id": 40, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 24}, {"name": "Ed Onipede Blunt", "character": "Ray Robinson", "id": 1433438, "credit_id": "54f2a783c3a368324500336f", "cast_id": 41, "profile_path": "/gWyWTodgevHEvuGDJ0QiMOkdvDW.jpg", "order": 25}, {"name": "Amir Ali Said", "character": "Brian Robinson", "id": 210, "credit_id": "54f2aa1b9251416b3800333d", "cast_id": 42, "profile_path": "/pRMk72kpTkYaDEjZKcEzUB9Jx0d.jpg", "order": 26}, {"name": "Lemon Andersen", "character": "Paul Guitierez", "id": 1108494, "credit_id": "54f2ac809251416b4100371c", "cast_id": 43, "profile_path": "/pGPGEVuimV1xpJs2FyrH7ngAcNh.jpg", "order": 27}, {"name": "Samantha Ivers", "character": "Nancy Mann", "id": 93621, "credit_id": "54f2ae019251416b2f00350a", "cast_id": 44, "profile_path": "/69UeHEIKTpD7f9iP519jUtu4Ly0.jpg", "order": 28}, {"name": "Peter Kybart", "character": "Mayor", "id": 1433441, "credit_id": "54f2af379251416b4100375b", "cast_id": 45, "profile_path": "/7P8XETMX4kZFanPQy4GFuOJyyMh.jpg", "order": 29}, {"name": "Jason Manuel Olazabal", "character": "ESU Officer Hernandez", "id": 147960, "credit_id": "54f2b0899251416b2c003556", "cast_id": 46, "profile_path": "/52AecacpPjSjP5mJwEHkOg2LooX.jpg", "order": 30}, {"name": "Jeff Ward", "character": "ESU Officer Jesus", "id": 1253648, "credit_id": "54f2b582c3a368323e00312a", "cast_id": 47, "profile_path": "/j1pxCjdfa4MIFqZJapvo4LKYTkQ.jpg", "order": 31}, {"name": "Anthony Mangano", "character": "ESU Officer", "id": 77585, "credit_id": "54f2b6f99251416b35003367", "cast_id": 48, "profile_path": "/yGuKdqVXDG95i6xg3fKisiGebdo.jpg", "order": 32}, {"name": "Michael Devine", "character": "ESU Officer", "id": 1433451, "credit_id": "54f2b7bdc3a368323e003181", "cast_id": 49, "profile_path": "/AiS5AgSFZlDTdFrAmOolaUXsJyy.jpg", "order": 33}, {"name": "Ed Bogdanowicz", "character": "ESU Officer", "id": 1433452, "credit_id": "54f2ba339251416b31003474", "cast_id": 50, "profile_path": "/odmvVGEP6h9yEqzZxSocp5HikQi.jpg", "order": 34}, {"name": "Aaron Vexler", "character": "ESU Officer", "id": 1045964, "credit_id": "54f2bcfd9251416b350033f9", "cast_id": 51, "profile_path": "/yBzhpya88GGOdD6WG8YmwKHIFWq.jpg", "order": 35}, {"name": "Anthony Borowiec", "character": "ESU Officer", "id": 1433454, "credit_id": "54f2be9c9251416b41003926", "cast_id": 52, "profile_path": null, "order": 36}, {"name": "Joe Coots", "character": "ESU Officer", "id": 210393, "credit_id": "54f2c0a59251416b2f00372d", "cast_id": 53, "profile_path": "/AtKobaUDz82mcb65nzSLC9Q8k4o.jpg", "order": 37}, {"name": "Lionel Pina", "character": "Cop with Pizzas", "id": 171154, "credit_id": "54f2cc379251416b41003ab6", "cast_id": 54, "profile_path": "/jUOpfDF15f9AuCO59h3xiAqX0Zd.jpg", "order": 38}, {"name": "Ken Ferrigni", "character": "Redheaded Detective", "id": 1433493, "credit_id": "54f2cd26c3a368322f0034b8", "cast_id": 55, "profile_path": null, "order": 39}, {"name": "Frank Hopf", "character": "Barricade Officer", "id": 1433496, "credit_id": "54f2ce4fc3a3681b710015f6", "cast_id": 56, "profile_path": "/6OecJBLgcJtziBsIH1XCu2wXivx.jpg", "order": 40}, {"name": "Robert Testut", "character": "Barricade Officer", "id": 1433497, "credit_id": "54f2cf849251416b350035c5", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Craig M. Spitzer", "character": "Seth Greenblatt", "id": 1433498, "credit_id": "54f2d02d9251416b310036f3", "cast_id": 58, "profile_path": "/onqNTr2B9hb8TXLiSeHDMpIWQPp.jpg", "order": 42}, {"name": "Limary Agosto", "character": "Gladys Perez", "id": 1059170, "credit_id": "54f2d4429251416b3e00398a", "cast_id": 59, "profile_path": "/oUDDK62MGGeZWrKClz6bAd2GtZ4.jpg", "order": 43}, {"name": "Patrick Illig", "character": "Brad Stone", "id": 1433510, "credit_id": "54f2d4ef9251416b35003656", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Frank Composto", "character": "Eric Dodge", "id": 1433512, "credit_id": "54f2d572c3a3681b710016ea", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "Rozanne Sher", "character": "Hostage Woman", "id": 1433520, "credit_id": "54f2d6e69251416b3500368f", "cast_id": 62, "profile_path": "/uzj4XRBCRifX9pluxuAy4BFd5V8.jpg", "order": 46}, {"name": "Rachel Black", "character": "Katherine", "id": 78520, "credit_id": "54f2d8a39251416b41003c1e", "cast_id": 63, "profile_path": "/ewJlnhcBM7wRvEO63dz6ynLFeHk.jpg", "order": 47}, {"name": "Gregory Dann", "character": "Case's Bodyguard", "id": 1433539, "credit_id": "54f2d95b9251416b41003c34", "cast_id": 64, "profile_path": "/wOO3uTseGT4g8o0kGihPxoaJpH3.jpg", "order": 48}, {"name": "Ben Crowley", "character": "White's Assistant", "id": 59299, "credit_id": "54f2dab49251416b2c003a8c", "cast_id": 65, "profile_path": "/wWKyy7ohR3IsmQ8S55f2tQl1KVY.jpg", "order": 49}, {"name": "Shon Gables", "character": "CBS News Reporter", "id": 1434087, "credit_id": "54f408279251410bfe000ece", "cast_id": 66, "profile_path": "/eHUVNikgjPUT6yRc7PDlp1mnNC8.jpg", "order": 50}, {"name": "Dominic Carter", "character": "NY1 News Anchor", "id": 1434088, "credit_id": "54f40b479251417992001546", "cast_id": 67, "profile_path": "/qi2Hx18FqKbgTXqizDuDDPtqXNk.jpg", "order": 51}, {"name": "Sandra Endo", "character": "NY1 News Reporter", "id": 1434089, "credit_id": "54f40d44925141799f0014d1", "cast_id": 68, "profile_path": "/aIFLRKQ4q3HKM1Mjaw7lalXunfV.jpg", "order": 52}, {"name": "Kandiss Edmundson", "character": "Madge", "id": 1434090, "credit_id": "54f40ef2c3a3683455000892", "cast_id": 69, "profile_path": "/hs2O1xtbVe8wSPnKxNxiYuAWUoD.jpg", "order": 53}, {"name": "Al Palagonia", "character": "Kevin", "id": 122546, "credit_id": "54f41075c3a36850f30010e3", "cast_id": 70, "profile_path": "/d8UrrQsxM9Bb7Vjk6RC6Ejjc5Ib.jpg", "order": 54}, {"name": "Florina Petcu", "character": "Ilina", "id": 1434091, "credit_id": "54f41152c3a3681ddd001804", "cast_id": 71, "profile_path": "/yoagT6CVedoGekwfX92mfzEYvSb.jpg", "order": 55}, {"name": "Agim Coma", "character": "Borova", "id": 1434092, "credit_id": "54f41265c3a3681de000180a", "cast_id": 72, "profile_path": null, "order": 56}, {"name": "John Speredakos", "character": "Officer Porcario", "id": 88547, "credit_id": "54f4133ec3a3683455000900", "cast_id": 73, "profile_path": "/az6N8cFtxl9EXguCsv4OefCGXjt.jpg", "order": 57}, {"name": "Baktash Zaher", "character": "Zahir", "id": 1434094, "credit_id": "54f413d99251410c2a000ec4", "cast_id": 74, "profile_path": "/uIHJBdqPNAwjQ6jFCzNZjf1vHlq.jpg", "order": 58}, {"name": "Ernest Rayford", "character": "Men's Club Attendant", "id": 141438, "credit_id": "54f41550925141799a0015af", "cast_id": 75, "profile_path": null, "order": 59}, {"name": "Vincent DiMartino", "character": "Barber", "id": 1237053, "credit_id": "54f4181b92514179a70017a4", "cast_id": 76, "profile_path": "/ei70fwyBhMI8KftQcjWfIarB1U.jpg", "order": 60}, {"name": "Julian Niccolini", "character": "Four Seasons Maitre d'", "id": 1434096, "credit_id": "54f419329251410c3e001110", "cast_id": 77, "profile_path": "/FCMQZytjCwtOjDQTg3FJ7Pkz58.jpg", "order": 61}, {"name": "Ed Crescimanni", "character": "Edwin", "id": 1434097, "credit_id": "54f41a9b9251410c3e001128", "cast_id": 78, "profile_path": "/2BoR2BoqKwpPpBGa9MWeS9e1wij.jpg", "order": 62}, {"name": "Brad Leland", "character": "Ronnie", "id": 60677, "credit_id": "54f41c209251410bfe0010e3", "cast_id": 79, "profile_path": "/gIXb73WT2fyoCChUyJgjcThqaA1.jpg", "order": 63}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800eb6f", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 6.9, "runtime": 129}, "389": {"poster_path": "/qcL1YfkCxfhsdO6sDDJ0PpzMF9n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1000000, "overview": "The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.", "video": false, "id": 389, "genres": [{"id": 18, "name": "Drama"}], "title": "12 Angry Men", "tagline": "Life is in their hands. Death is on their minds.", "vote_count": 641, "homepage": "http://www.wilsonsd.org/770240920121611/blank/browse.asp?a=383&BMDRN=2000&BCOB=0&c=63668", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0050083", "adult": false, "backdrop_path": "/lH2Ga8OzjU1XlxJ73shOlPx6cRw.jpg", "production_companies": [{"name": "Orion-Nova Productions", "id": 10212}], "release_date": "1957-04-10", "popularity": 1.29243957690624, "original_title": "12 Angry Men", "budget": 340000, "cast": [{"name": "Henry Fonda", "character": "Juror 8", "id": 4958, "credit_id": "52fe423dc3a36847f800ec89", "cast_id": 29, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 0}, {"name": "Lee J. Cobb", "character": "Juror 3", "id": 5248, "credit_id": "52fe423dc3a36847f800ec8d", "cast_id": 30, "profile_path": "/535dOk8eUI97esLMunIXdG58jUu.jpg", "order": 1}, {"name": "Ed Begley", "character": "Juror 10", "id": 39816, "credit_id": "52fe423dc3a36847f800ec91", "cast_id": 31, "profile_path": "/lnIapJ9Qwb2p2ijwXFvQtrE923w.jpg", "order": 2}, {"name": "E.G. Marshall", "character": "Juror 4", "id": 5249, "credit_id": "52fe423dc3a36847f800ec95", "cast_id": 32, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 3}, {"name": "Jack Warden", "character": "Juror 7", "id": 5251, "credit_id": "52fe423dc3a36847f800ec99", "cast_id": 33, "profile_path": "/7Pfj27pVjkQIu5HS85MlGdsl7MQ.jpg", "order": 4}, {"name": "Martin Balsam", "character": "Juror 1", "id": 1936, "credit_id": "52fe423dc3a36847f800ec9d", "cast_id": 34, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 5}, {"name": "John Fiedler", "character": "Juror 2", "id": 5247, "credit_id": "52fe423dc3a36847f800eca1", "cast_id": 35, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 6}, {"name": "Jack Klugman", "character": "Juror 5", "id": 5250, "credit_id": "52fe423dc3a36847f800eca5", "cast_id": 36, "profile_path": "/7OvZnRbj3DHxieaQpS0ZK5CITiP.jpg", "order": 7}, {"name": "Edward Binns", "character": "Juror 6", "id": 2651, "credit_id": "52fe423dc3a36847f800eca9", "cast_id": 37, "profile_path": "/uTPEszrP1ZgDVo1nkRIYwAeYHnO.jpg", "order": 8}, {"name": "Joseph Sweeney", "character": "Juror 9", "id": 5252, "credit_id": "52fe423dc3a36847f800ecad", "cast_id": 38, "profile_path": null, "order": 9}, {"name": "George Voskovec", "character": "Juror 11", "id": 5254, "credit_id": "52fe423dc3a36847f800ecb1", "cast_id": 39, "profile_path": "/rlhnKtwOb571yhuyTPtvMRt7fpg.jpg", "order": 10}, {"name": "Robert Webber", "character": "Juror 12", "id": 5255, "credit_id": "52fe423dc3a36847f800ecb5", "cast_id": 40, "profile_path": "/mg6SHDi5bi9C7pUwH14ZXxTnR7M.jpg", "order": 11}, {"name": "Rudy Bond", "character": "Judge (uncredited)", "id": 3143, "credit_id": "54fe6cc592514177f200078e", "cast_id": 42, "profile_path": "/wNpO0orqR8rWz7tf11iKN0UhvGg.jpg", "order": 12}, {"name": "James Kelly", "character": "Guard (uncredited)", "id": 1437464, "credit_id": "54fe6d0b9251410e510009bd", "cast_id": 43, "profile_path": null, "order": 13}, {"name": "Billy Nelson", "character": "Court Clerk (uncredited)", "id": 5257, "credit_id": "54fe6d409251410e56000a3c", "cast_id": 44, "profile_path": null, "order": 14}, {"name": "John Savoca", "character": "The Accused (uncredited)", "id": 5258, "credit_id": "54fe6d5f9251410e4b000a82", "cast_id": 45, "profile_path": null, "order": 15}, {"name": "Walter Stocker", "character": "Man Waiting for Elevator (uncredited)", "id": 153394, "credit_id": "54fe6d9f92514177f20007ad", "cast_id": 46, "profile_path": null, "order": 16}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800ec43", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 8.1, "runtime": 96}, "391": {"poster_path": "/sFLgxvtK9vxbNq502peVJ847Owp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 14000000, "overview": "The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.", "video": false, "id": 391, "genres": [{"id": 37, "name": "Western"}], "title": "A Fistful of Dollars", "tagline": "In his own way he is perhaps, the most dangerous man who ever lived!", "vote_count": 214, "homepage": "", "belongs_to_collection": {"backdrop_path": "/a4Lqp3QdEWF6zh740VpBg6yvTZA.jpg", "poster_path": "/lzUZptOL6iQqulMvhB2jfT5GepD.jpg", "id": 48317, "name": "The Man With No Name Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0058461", "adult": false, "backdrop_path": "/mndYimxcima4Z5YxH8XngTEGi5L.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Jolly Film", "id": 10481}, {"name": "Ocean Films", "id": 19498}], "release_date": "1964-09-12", "popularity": 1.89336328384147, "original_title": "Per un pugno di dollari", "budget": 200000, "cast": [{"name": "Clint Eastwood", "character": "Joe", "id": 190, "credit_id": "52fe423dc3a36847f800ed7d", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Marianne Koch", "character": "Marisol", "id": 16309, "credit_id": "52fe423dc3a36847f800ed81", "cast_id": 2, "profile_path": "/tAubH4kPmCYZ4mQmRyJggQe7IJd.jpg", "order": 1}, {"name": "Wolfgang Lukschy", "character": "John Baxter", "id": 16310, "credit_id": "52fe423dc3a36847f800ed85", "cast_id": 3, "profile_path": "/fhm3MzsXrS8qA2UJfI7Dg15Pdhk.jpg", "order": 2}, {"name": "Jos\u00e9 Calvo", "character": "Silvanito", "id": 16311, "credit_id": "52fe423dc3a36847f800ed89", "cast_id": 4, "profile_path": "/1rGrdQDUjmZe6n9gJhSF8kLMVLQ.jpg", "order": 3}, {"name": "Gian Maria Volont\u00e9", "character": "Ram\u00f3n Rojo", "id": 14276, "credit_id": "52fe423dc3a36847f800ed8d", "cast_id": 5, "profile_path": "/fnluody7boW6FHuhXoUmO141BeU.jpg", "order": 4}, {"name": "Sieghardt Rupp", "character": "Esteban Rojo", "id": 16312, "credit_id": "52fe423dc3a36847f800ed91", "cast_id": 6, "profile_path": "/wiriUmuj78y6TUc2oGKqKmFmD.jpg", "order": 5}, {"name": "Antonio Prieto", "character": "Don Miguel Rojo", "id": 16313, "credit_id": "52fe423dc3a36847f800ed95", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Margarita Lozano", "character": "Consuelo Baxter", "id": 16314, "credit_id": "52fe423dc3a36847f800ed99", "cast_id": 8, "profile_path": "/d4RgbbQMfRJ2K3bOF8B2mpGoYMl.jpg", "order": 7}, {"name": "Daniel Mart\u00edn", "character": "Juli\u00e1n", "id": 16316, "credit_id": "52fe423dc3a36847f800ed9d", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Bruno Carotenuto", "character": "Antonio Baxter", "id": 16317, "credit_id": "52fe423dc3a36847f800eda1", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Benito Stefanelli", "character": "Rubio", "id": 4661, "credit_id": "52fe423dc3a36847f800eda5", "cast_id": 12, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 11}, {"name": "Mario Brega", "character": "Chico", "id": 16318, "credit_id": "52fe423dc3a36847f800eda9", "cast_id": 13, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 12}, {"name": "Joseph Egger", "character": "Piripero, der Sargtischler", "id": 14279, "credit_id": "52fe423dc3a36847f800edef", "cast_id": 25, "profile_path": "/hmHgePVKgnvurDkzTLsLrXLaJcU.jpg", "order": 13}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800edaf", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.2, "runtime": 99}, "392": {"poster_path": "/qVKYduwLJ5HjbeVVYqYPSAhWQqh.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152500343, "overview": "A fable of emotional liberation and chocolate. A mother and daughter move to a small French town where they open a chocolate shop. The town, religious and morally strict, is against them as they represent free-thinking and indulgence. When a group of Boat Gypsies float down the river the prejudices of the Mayor leads to a crisis.", "video": false, "id": 392, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Chocolat", "tagline": "...and the world is still indulging!", "vote_count": 226, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0241303", "adult": false, "backdrop_path": "/mUBjXjU43hhy5bHnpHztxSmiK40.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2000-12-14", "popularity": 0.387266396343773, "original_title": "Chocolat", "budget": 25000000, "cast": [{"name": "Juliette Binoche", "character": "Vianne Rocher", "id": 1137, "credit_id": "52fe423dc3a36847f800ee67", "cast_id": 4, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 0}, {"name": "Alfred Molina", "character": "Comte Paul de Reynaud", "id": 658, "credit_id": "52fe423dc3a36847f800ee6b", "cast_id": 5, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Roux", "id": 85, "credit_id": "52fe423dc3a36847f800ee7f", "cast_id": 10, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Carrie-Anne Moss", "character": "Caroline Clairmont", "id": 530, "credit_id": "52fe423dc3a36847f800ee6f", "cast_id": 6, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 3}, {"name": "Judi Dench", "character": "Armande Voizin", "id": 5309, "credit_id": "52fe423dc3a36847f800ee73", "cast_id": 7, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Lena Olin", "character": "Josephine Muscat", "id": 5313, "credit_id": "52fe423dc3a36847f800ee87", "cast_id": 12, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 5}, {"name": "Peter Stormare", "character": "Serge Muscat", "id": 53, "credit_id": "52fe423dc3a36847f800ee8b", "cast_id": 13, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 6}, {"name": "John Wood", "character": "Guillaume Blerot", "id": 8937, "credit_id": "52fe423ec3a36847f800ef4d", "cast_id": 49, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 7}, {"name": "Leslie Caron", "character": "Madame Audel", "id": 5320, "credit_id": "52fe423dc3a36847f800eea7", "cast_id": 20, "profile_path": "/lLEvfbDgtjehC67W9kLGdnexRfQ.jpg", "order": 8}, {"name": "Antonio Gil", "character": "Jean-Marc Drou", "id": 5310, "credit_id": "52fe423dc3a36847f800ee77", "cast_id": 8, "profile_path": "/cIWyMyp4DswIEOURjhBIM1tAZim.jpg", "order": 9}, {"name": "H\u00e9l\u00e8ne Cardona", "character": "Francoise Drou", "id": 5311, "credit_id": "52fe423dc3a36847f800ee7b", "cast_id": 9, "profile_path": "/9Am8lqQ5yUrGrlpYdOjp4p4iLwb.jpg", "order": 10}, {"name": "Hugh O'Conor", "character": "Pere Henri", "id": 5312, "credit_id": "52fe423dc3a36847f800ee83", "cast_id": 11, "profile_path": "/i4NB3THRBWyYGpQbQPu6RshQf6j.jpg", "order": 11}, {"name": "Aurelien Parent Koenig", "character": "Luc Clairmont", "id": 5314, "credit_id": "52fe423dc3a36847f800ee8f", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Victoire Thivisol", "character": "Anouk Rocher", "id": 5315, "credit_id": "52fe423dc3a36847f800ee93", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Harrison Pratt", "character": "Dedou Drou", "id": 5316, "credit_id": "52fe423dc3a36847f800ee97", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Gaelan Connell", "character": "Didi Drou", "id": 5317, "credit_id": "52fe423dc3a36847f800ee9b", "cast_id": 17, "profile_path": "/l2DfscIlJcDB4En1SssW8VIQtMJ.jpg", "order": 15}, {"name": "Elisabeth Commelin", "character": "Yvette Marceau", "id": 5318, "credit_id": "52fe423dc3a36847f800ee9f", "cast_id": 18, "profile_path": "/kJYHlilPKDctDRbDjetlm1kuxoQ.jpg", "order": 16}, {"name": "Ron Cook", "character": "Alphonse Marceau", "id": 5319, "credit_id": "52fe423dc3a36847f800eea3", "cast_id": 19, "profile_path": "/9Um3ilt8KD0uLn5NyrP7vRZn2xF.jpg", "order": 17}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800ee57", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.5, "runtime": 121}, "393": {"poster_path": "/eW6IUkxqNdESbEcP2KKXukdx0zm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152159461, "overview": "The Bride unwaveringly continues on her \"roaring rampage of revenge\" against the band of assassins who had tried to kill her and her unborn child. The woman visits each of her former associates one by one, checking off the victims on her Death List Five until there's nothing left to do \u2026 but kill Bill.", "video": false, "id": 393, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Kill Bill: Vol. 2", "tagline": "The bride is back for the final cut.", "vote_count": 1029, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oCLKNACMNrEf4T1EP6BpMXDl5m1.jpg", "poster_path": "/tf1nUtw3LJGUGv1EFFi23iz6ngr.jpg", "id": 2883, "name": "Kill Bill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0378194", "adult": false, "backdrop_path": "/33WfP01Pu8SMuuHYnoJXMRCMtmI.jpg", "production_companies": [{"name": "Super Cool ManChu", "id": 39121}, {"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}], "release_date": "2004-04-15", "popularity": 1.2412154692698, "original_title": "Kill Bill: Vol. 2", "budget": 30000000, "cast": [{"name": "Uma Thurman", "character": "Beatrix 'The Bride' Kiddo", "id": 139, "credit_id": "52fe423ec3a36847f800ef93", "cast_id": 1, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "David Carradine", "character": "Bill", "id": 141, "credit_id": "52fe423ec3a36847f800efb5", "cast_id": 8, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 1}, {"name": "Daryl Hannah", "character": "Elle Driver", "id": 589, "credit_id": "52fe423ec3a36847f800efb9", "cast_id": 9, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 2}, {"name": "Michael Madsen", "character": "Budd", "id": 147, "credit_id": "52fe423ec3a36847f800efbd", "cast_id": 10, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 3}, {"name": "Gordon Liu Chia-Hui", "character": "Pai Mei", "id": 240171, "credit_id": "52fe423ec3a36847f800f023", "cast_id": 35, "profile_path": "/yTI36A27P9YdFbzrCwjpmEpDGbR.jpg", "order": 4}, {"name": "Michael Parks", "character": "Esteban Vihaio", "id": 2536, "credit_id": "52fe423ec3a36847f800efc1", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 5}, {"name": "Perla Haney-Jardine", "character": "B.B. Kiddo", "id": 6585, "credit_id": "52fe423ec3a36847f800eff3", "cast_id": 22, "profile_path": "/3G3vIBZgZkTzrmvyNiEzOsb5v38.jpg", "order": 6}, {"name": "Larry Bishop", "character": "Larry Gomez", "id": 34721, "credit_id": "52fe423ec3a36847f800f00b", "cast_id": 28, "profile_path": "/uhWXK4cPgvu4j3oOiVYsLifFssi.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Rufus", "id": 2231, "credit_id": "52fe423ec3a36847f800efef", "cast_id": 21, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "Lucy Liu", "character": "O-Ren Ishii", "id": 140, "credit_id": "52fe423ec3a36847f800efe3", "cast_id": 17, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 9}, {"name": "Vivica A. Fox", "character": "Vernita Green", "id": 2535, "credit_id": "52fe423ec3a36847f800efe7", "cast_id": 18, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 10}, {"name": "Julie Dreyfus", "character": "Sofie Fatale", "id": 2539, "credit_id": "52fe423ec3a36847f800f017", "cast_id": 32, "profile_path": "/vkUvcV6oFkZXcIv4SGeW66LUoqC.jpg", "order": 11}, {"name": "Christopher Allen Nelson", "character": "Tommy Plympton", "id": 6446, "credit_id": "52fe423ec3a36847f800efeb", "cast_id": 20, "profile_path": "/pbXe8gRR81onTWMPrOwrNZaqIoS.jpg", "order": 12}, {"name": "Helen Kim", "character": "Karen Kim", "id": 1052339, "credit_id": "52fe423ec3a36847f800f013", "cast_id": 31, "profile_path": "/1FB3lGe4twIY7bwvipKsI59ruPM.jpg", "order": 13}, {"name": "Laura Cayouette", "character": "Rocket", "id": 565498, "credit_id": "52fe423ec3a36847f800f00f", "cast_id": 30, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 14}, {"name": "Jun Kunimura", "character": "Boss Tanaka", "id": 2541, "credit_id": "5475bf98c3a36830120008bd", "cast_id": 39, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 15}, {"name": "Goro Daimon", "character": "Boss Honda", "id": 1369182, "credit_id": "5475bfb39251412c3b00422d", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Kazuki Kitamura", "character": "Boss Koji / Crazy 88", "id": 2542, "credit_id": "5475bfca925141017d000205", "cast_id": 41, "profile_path": "/2DefK5vG0JquPJ1UdcckaPRcy96.jpg", "order": 17}, {"name": "Akaji Maro", "character": "Boss Ozawah", "id": 2544, "credit_id": "5475bfe2c3a36830120008ce", "cast_id": 42, "profile_path": "/b28JIJMTwtVPiuz6TtOiFh5gNzs.jpg", "order": 18}, {"name": "Shun Sugata", "character": "Boss Benta", "id": 9193, "credit_id": "5475bffac3a368364c0029cf", "cast_id": 43, "profile_path": "/9Ntziepdp2P2xsLGHdy0rchVJ3G.jpg", "order": 19}, {"name": "Sachiko Fujii", "character": "The 5, 6, 7, 8's", "id": 1314989, "credit_id": "5475e2d0c3a3687fd9001799", "cast_id": 74, "profile_path": null, "order": 20}, {"name": "Sakichi Sat\u00f4", "character": "Charlie Brown", "id": 58616, "credit_id": "5475e336925141779100024e", "cast_id": 75, "profile_path": "/s3slnuF2U18zAPJi0yovdzZPIQF.jpg", "order": 21}, {"name": "Y\u00f4ji Tanaka", "character": "Crazy 88", "id": 115659, "credit_id": "5475e35ac3a368068b000178", "cast_id": 76, "profile_path": "/xPpE9vinviRqjewLsnMQ5X5Dx9B.jpg", "order": 22}, {"name": "S\u00f4 Yamanaka", "character": "Crazy 88", "id": 121751, "credit_id": "5475e36f925141407a001ef2", "cast_id": 77, "profile_path": null, "order": 23}, {"name": "Issei Takahashi", "character": "Crazy 88", "id": 115657, "credit_id": "5475e38bc3a368764e001122", "cast_id": 78, "profile_path": null, "order": 24}, {"name": "Chiaki Kuriyama", "character": "Gogo", "id": 2538, "credit_id": "5475e3c09251417791000265", "cast_id": 79, "profile_path": "/ccaYcabNnxA4MPItZdKAMdqEqTk.jpg", "order": 25}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe423ec3a36847f800ef99", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.2, "runtime": 136}, "8587": {"poster_path": "/bKPtXn9n4M4s8vvZrbw40mYsefB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 788241776, "overview": "A young lion cub named Simba can't wait to be king. But his uncle craves the title for himself and will stop at nothing to get it.", "video": false, "id": 8587, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Lion King", "tagline": "Life's greatest adventure is finding your place in the Circle of Life.", "vote_count": 2366, "homepage": "", "belongs_to_collection": {"backdrop_path": "/A9IEaj9cPAwEgFnTmteB70oxgJY.jpg", "poster_path": "/y3n3SDoRDqgz3LLWuvcfi3ZiF84.jpg", "id": 94032, "name": "The Lion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110357", "adult": false, "backdrop_path": "/klI0K4oQMsLhHdjA9Uw8WLugk9v.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1994-06-23", "popularity": 2.24752956779499, "original_title": "The Lion King", "budget": 45000000, "cast": [{"name": "Jonathan Taylor Thomas", "character": "Young Simba", "id": 53283, "credit_id": "52fe44b0c3a36847f80a4537", "cast_id": 8, "profile_path": "/nYffgAfxzGaGrjizl8MaZuJojCZ.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Adult Simba", "id": 4756, "credit_id": "52fe44b0c3a36847f80a453b", "cast_id": 9, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "James Earl Jones", "character": "King Mufasa", "id": 15152, "credit_id": "52fe44b0c3a36847f80a453f", "cast_id": 10, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 2}, {"name": "Jeremy Irons", "character": "Scar", "id": 16940, "credit_id": "52fe44b0c3a36847f80a454b", "cast_id": 13, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 3}, {"name": "Moira Kelly", "character": "Adult Nala", "id": 20005, "credit_id": "52fe44b0c3a36847f80a4547", "cast_id": 12, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 4}, {"name": "Niketa Calame", "character": "Young Nala", "id": 56043, "credit_id": "52fe44b0c3a36847f80a4543", "cast_id": 11, "profile_path": "/6AjpmUU24VrUwqeTVQVAVpZ4kgl.jpg", "order": 5}, {"name": "Ernie Sabella", "character": "Pumbaa", "id": 69415, "credit_id": "52fe44b0c3a36847f80a455f", "cast_id": 18, "profile_path": "/nwdAp8FacfZ1eRU7gNkOwWvDqnc.jpg", "order": 6}, {"name": "Nathan Lane", "character": "Timon", "id": 78729, "credit_id": "52fe44b0c3a36847f80a455b", "cast_id": 17, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 7}, {"name": "Robert Guillaume", "character": "Rafiki", "id": 8294, "credit_id": "52fe44b0c3a36847f80a4563", "cast_id": 19, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 8}, {"name": "Rowan Atkinson", "character": "Zazu the Hornbill", "id": 10730, "credit_id": "52fe44b0c3a36847f80a454f", "cast_id": 14, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 9}, {"name": "Madge Sinclair", "character": "Sarabi, Simba's Mother", "id": 58074, "credit_id": "52fe44b0c3a36847f80a456f", "cast_id": 22, "profile_path": "/ph5YnCai5GDr5Ps85wuNg8Ox36m.jpg", "order": 10}, {"name": "Whoopi Goldberg", "character": "Shenzi the Hyena", "id": 2395, "credit_id": "52fe44b0c3a36847f80a4553", "cast_id": 15, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 11}, {"name": "Cheech Marin", "character": "Banzai the Hyena", "id": 11159, "credit_id": "52fe44b0c3a36847f80a456b", "cast_id": 21, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 12}, {"name": "Jim Cummings", "character": "ED the Hyena", "id": 12077, "credit_id": "52fe44b0c3a36847f80a4557", "cast_id": 16, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 13}, {"name": "Zoe Leader", "character": "Sarafina, Nala's Mother", "id": 723462, "credit_id": "52fe44b0c3a36847f80a4567", "cast_id": 20, "profile_path": "/9nHTpy0zaFVjDKxbu8CnsUKUayI.jpg", "order": 14}, {"name": "Jason Weaver", "character": "Young Simba (singing voice)", "id": 84115, "credit_id": "52fe44b0c3a36847f80a4573", "cast_id": 23, "profile_path": "/cF8uNJYPN1PiIypkmsLWJwFfczV.jpg", "order": 15}, {"name": "Frank Welker", "character": "Additional Voices", "id": 15831, "credit_id": "52fe44b0c3a36847f80a4577", "cast_id": 24, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 16}, {"name": "Judi M. Durand", "character": "Additional Voices (voice) (uncredited)", "id": 949895, "credit_id": "52fe44b0c3a36847f80a457b", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Daamen J. Krall", "character": "Additional Voices (voice) (uncredited)", "id": 96310, "credit_id": "52fe44b0c3a36847f80a457f", "cast_id": 27, "profile_path": "/u0CORJ8e2vvw1dFARU4estHYS2I.jpg", "order": 19}, {"name": "David McCharen", "character": "Additional Voices (voice) (uncredited)", "id": 952996, "credit_id": "52fe44b0c3a36847f80a4583", "cast_id": 28, "profile_path": "/EAWYGbRfp68FzDx5HtDWt4zlfN.jpg", "order": 20}, {"name": "Mary Linda Phillips", "character": "Additional Voices (voice) (uncredited)", "id": 173776, "credit_id": "52fe44b0c3a36847f80a4587", "cast_id": 29, "profile_path": "/qntaPKKUYB96hdZwGIuDcH2ildW.jpg", "order": 21}, {"name": "Philip Proctor", "character": "Additional Voices (voice) (uncredited)", "id": 61969, "credit_id": "52fe44b0c3a36847f80a458b", "cast_id": 30, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 22}, {"name": "David J. Randolph", "character": "Additional Voices (voice) (uncredited)", "id": 954335, "credit_id": "52fe44b0c3a36847f80a458f", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Evan Saucedo", "character": "Young Simba - in 'Morning Report' (singing voice) (uncredited)", "id": 200845, "credit_id": "52fe44b0c3a36847f80a4593", "cast_id": 32, "profile_path": "/8LNZHz8xfyGVJ0bJIWfSk9822S2.jpg", "order": 24}, {"name": "Brian Tochi", "character": "Fighting Hyena (voice) (uncredited)", "id": 16060, "credit_id": "52fe44b0c3a36847f80a4597", "cast_id": 33, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 25}], "directors": [{"name": "Roger Allers", "department": "Directing", "job": "Director", "credit_id": "52fe44afc3a36847f80a450f", "profile_path": "/eUMjdBRyv5gF1m5sGHm15TUVuFP.jpg", "id": 15812}, {"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe44afc3a36847f80a4515", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 7.4, "runtime": 89}, "16781": {"poster_path": "/RbR50UMMYy7bFBy5GeFxNf5wsK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57231524, "overview": "Based upon Tyler Perry's acclaimed stage production, Madea's Family Reunion continues the adventures of Southern matriarch Madea. She has just been court ordered to be in charge of Nikki, a rebellious runaway, her nieces, Lisa and Vanessa, are suffering relationship trouble, and through it all, she has to organize her family reunion.", "video": false, "id": 16781, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Madea's Family Reunion", "tagline": "", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0455612", "adult": false, "backdrop_path": "/qmJQ4ScmzmWiZH94d93a9qrxkX0.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}], "release_date": "2006-02-24", "popularity": 0.410545022002225, "original_title": "Madea's Family Reunion", "budget": 6000000, "cast": [{"name": "Tyler Perry", "character": "Madea / Brian / Joe", "id": 80602, "credit_id": "52fe46ea9251416c75087cfd", "cast_id": 1, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 0}, {"name": "Blair Underwood", "character": "Carlos", "id": 56871, "credit_id": "52fe46ea9251416c75087d01", "cast_id": 2, "profile_path": "/xDqEtEwJNb3fDYnopeFlmMYVQ66.jpg", "order": 1}, {"name": "Lynn Whitfield", "character": "Victoria", "id": 16217, "credit_id": "52fe46ea9251416c75087d05", "cast_id": 3, "profile_path": "/7NELeIc5qIwSuAKG3Riq0CN2F7t.jpg", "order": 2}, {"name": "Boris Kodjoe", "character": "Frankie", "id": 80758, "credit_id": "52fe46ea9251416c75087d09", "cast_id": 4, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 3}, {"name": "Lisa Arrindell Anderson", "character": "Vanessa", "id": 80759, "credit_id": "52fe46ea9251416c75087d0d", "cast_id": 5, "profile_path": "/a0XcZmt63vfG26qO5RdXxlqwavO.jpg", "order": 4}, {"name": "Maya Angelou", "character": "May", "id": 54424, "credit_id": "52fe46ea9251416c75087d11", "cast_id": 6, "profile_path": "/wdlFPg1qhGGzctwJ1KwrPxy3T6y.jpg", "order": 5}, {"name": "Rochelle Aytes", "character": "Lisa", "id": 80760, "credit_id": "52fe46ea9251416c75087d15", "cast_id": 7, "profile_path": "/r5JMfr0A7V4VEKIXx5EPy7Y51Ed.jpg", "order": 6}, {"name": "Jenifer Lewis", "character": "Milay Jenay Lori", "id": 15899, "credit_id": "52fe46ea9251416c75087d19", "cast_id": 8, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 7}, {"name": "Tangi Miller", "character": "Donna", "id": 80761, "credit_id": "52fe46ea9251416c75087d1d", "cast_id": 9, "profile_path": "/muPztWB474dfCrZ1tfI8lmmPqas.jpg", "order": 8}, {"name": "Keke Palmer", "character": "Nikki", "id": 74688, "credit_id": "52fe46ea9251416c75087d21", "cast_id": 10, "profile_path": "/tj3fxH0LtMVpj9fX8kj4kDSSkRu.jpg", "order": 9}, {"name": "Henry Simmons", "character": "Issac", "id": 67913, "credit_id": "52fe46ea9251416c75087d25", "cast_id": 11, "profile_path": "/ajSaqDbQfi6eAFULhpCSezYplUF.jpg", "order": 10}, {"name": "Cicely Tyson", "character": "Myrtle", "id": 18249, "credit_id": "52fe46ea9251416c75087d29", "cast_id": 12, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 11}, {"name": "China Anderson", "character": "Nima", "id": 75641, "credit_id": "52fe46ea9251416c75087d2d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Akhil Jackson", "character": "Jonathan", "id": 80767, "credit_id": "52fe46ea9251416c75087d31", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Alonzo Millsap", "character": "Tre", "id": 80768, "credit_id": "52fe46ea9251416c75087d35", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Georgia Allen", "character": "Ruby", "id": 80769, "credit_id": "52fe46ea9251416c75087d39", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Cassi Davis", "character": "Aunt Sarah", "id": 80611, "credit_id": "52fe46ea9251416c75087d3d", "cast_id": 17, "profile_path": "/h1CvHpp2CFM24hkN42c8dYkLB1Y.jpg", "order": 16}, {"name": "Leon Lamar", "character": "Grover", "id": 80770, "credit_id": "52fe46ea9251416c75087d41", "cast_id": 18, "profile_path": "/6yWKCRnzDXNfhHa8x3I0P1OuIPn.jpg", "order": 17}, {"name": "John Lawhorn", "character": "Uncle Pete", "id": 80771, "credit_id": "52fe46ea9251416c75087d45", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Afemo Omilami", "character": "Isaac Sr.", "id": 37825, "credit_id": "52fe46ea9251416c75087d49", "cast_id": 20, "profile_path": "/bHluEOsKBKajFbk2cnxESo1nSCY.jpg", "order": 19}, {"name": "Ryan Gentles", "character": "Stripper Policeman", "id": 80772, "credit_id": "52fe46ea9251416c75087d4d", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Mablean Ephriam", "character": "Judge Ephriam", "id": 80773, "credit_id": "52fe46ea9251416c75087d51", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Richard Reed", "character": "Bailiff #1", "id": 80774, "credit_id": "52fe46ea9251416c75087d55", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Dale Neal", "character": "Kid #1", "id": 80775, "credit_id": "52fe46ea9251416c75087d59", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Michelle Griffin", "character": "Carlos' Woman Friend", "id": 80776, "credit_id": "52fe46ea9251416c75087d5d", "cast_id": 25, "profile_path": null, "order": 24}, {"name": "Cedric Pendleton", "character": "Carlos' Man Friend", "id": 80777, "credit_id": "52fe46ea9251416c75087d61", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Deanna Dawn", "character": "Tyrequa", "id": 80778, "credit_id": "52fe46ea9251416c75087d65", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Enoch King", "character": "Hykeem", "id": 80779, "credit_id": "52fe46ea9251416c75087d69", "cast_id": 28, "profile_path": null, "order": 27}, {"name": "Ginnie Randall", "character": "Miss Samuel", "id": 80780, "credit_id": "52fe46ea9251416c75087d6d", "cast_id": 29, "profile_path": null, "order": 28}, {"name": "C.O.C.O. Brown", "character": "Poet / MC", "id": 80781, "credit_id": "52fe46ea9251416c75087d71", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Jennifer Sears", "character": "Female at Reunion", "id": 80782, "credit_id": "52fe46ea9251416c75087d75", "cast_id": 31, "profile_path": null, "order": 30}, {"name": "Tre Rogers", "character": "Young Man at Reunion", "id": 80783, "credit_id": "52fe46ea9251416c75087d79", "cast_id": 32, "profile_path": null, "order": 31}, {"name": "Shannon Eubanks", "character": "Secretary", "id": 80784, "credit_id": "52fe46ea9251416c75087d7d", "cast_id": 33, "profile_path": null, "order": 32}, {"name": "Emmbre Perry", "character": "Man on the Bus", "id": 80785, "credit_id": "52fe46ea9251416c75087d81", "cast_id": 34, "profile_path": null, "order": 33}, {"name": "Jeronn C. Williams", "character": "Singer / Reverend", "id": 80786, "credit_id": "52fe46ea9251416c75087d85", "cast_id": 35, "profile_path": null, "order": 34}, {"name": "Dale C. Bronner", "character": "Reverend", "id": 80787, "credit_id": "52fe46ea9251416c75087d89", "cast_id": 36, "profile_path": null, "order": 35}, {"name": "Derrick Simmons", "character": "", "id": 80831, "credit_id": "52fe46eb9251416c75087e95", "cast_id": 81, "profile_path": null, "order": 36}], "directors": [{"name": "Tyler Perry", "department": "Directing", "job": "Director", "credit_id": "52fe46ea9251416c75087de3", "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "id": 80602}], "vote_average": 6.1, "runtime": 110}, "398": {"poster_path": "/klbnGQ9OlFRzuLDtP9FSGkwepGp.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49084830, "overview": "Capote is the biographical film about writer Truman Capote and his assignment for The New Yorker to write the non-fiction book In Cold Blood. Philip Seymour Hoffman won an Oscar for Best Actor for his portrayal of Capote.", "video": false, "id": 398, "genres": [{"id": 18, "name": "Drama"}], "title": "Capote", "tagline": "In Cold Blood", "vote_count": 65, "homepage": "http://www.sonyclassics.com/capote/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0379725", "adult": false, "backdrop_path": "/vXm2sO7SoHGJuXY6CEJJaC1T6TX.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "Infinity Features Entertainment", "id": 212}, {"name": "Cooper's Town Productions", "id": 213}, {"name": "Eagle Vision Inc.", "id": 214}], "release_date": "2005-09-30", "popularity": 0.796045252632461, "original_title": "Capote", "budget": 7000000, "cast": [{"name": "Philip Seymour Hoffman", "character": "Truman Capote", "id": 1233, "credit_id": "52fe423ec3a36847f800f269", "cast_id": 1, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 0}, {"name": "Allie Mickelson", "character": "Laura Kinney", "id": 5348, "credit_id": "52fe423ec3a36847f800f27f", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Craig Archibald", "character": "Christopher", "id": 5349, "credit_id": "52fe423ec3a36847f800f283", "cast_id": 6, "profile_path": "/ukwVTOYdcwkYBa0P6jp4HR9hTHI.jpg", "order": 2}, {"name": "Bronwen Coleman", "character": "Barbara", "id": 5350, "credit_id": "52fe423ec3a36847f800f287", "cast_id": 7, "profile_path": "/hVkRkHsnotkeFtLtANkqsRwSOAs.jpg", "order": 3}, {"name": "Kate Shindle", "character": "Rose", "id": 5351, "credit_id": "52fe423ec3a36847f800f28b", "cast_id": 8, "profile_path": "/o7vKewHIL7AuNHb53wZNEALFIT8.jpg", "order": 4}, {"name": "David Wilson Barnes", "character": "Grayson", "id": 5352, "credit_id": "52fe423ec3a36847f800f28f", "cast_id": 9, "profile_path": "/ywTtESZfCocIqCqcMQV67v8fiLD.jpg", "order": 5}, {"name": "Michael J. Burg", "character": "Williams", "id": 5353, "credit_id": "52fe423ec3a36847f800f293", "cast_id": 10, "profile_path": "/6lGlo2RTn1Hyvw5zohWoSojvk94.jpg", "order": 6}, {"name": "Catherine Keener", "character": "Harper Lee", "id": 2229, "credit_id": "52fe423ec3a36847f800f297", "cast_id": 11, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 7}, {"name": "Kwesi Ameyaw", "character": "Porter", "id": 5354, "credit_id": "52fe423ec3a36847f800f29b", "cast_id": 12, "profile_path": "/5gWHtlFDUTBKCImxyBEARkKOFvo.jpg", "order": 8}, {"name": "Andrew Farago", "character": "Car Rental Agent", "id": 5355, "credit_id": "52fe423ec3a36847f800f29f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Kelci Stephenson", "character": "Nancy Clutter", "id": 5364, "credit_id": "52fe423ec3a36847f800f2d9", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Chris Cooper", "character": "Alvin Dewey", "id": 2955, "credit_id": "52fe423ec3a36847f800f2dd", "cast_id": 24, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 11}, {"name": "Clifton Collins, Jr.", "character": "Perry Smith", "id": 5365, "credit_id": "52fe423ec3a36847f800f2e1", "cast_id": 25, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 12}, {"name": "Mark Pellegrino", "character": "Dick Hickock", "id": 1236, "credit_id": "52fe423ec3a36847f800f2e5", "cast_id": 26, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 13}, {"name": "Amy Ryan", "character": "Marie Dewey", "id": 39388, "credit_id": "52fe423ec3a36847f800f2e9", "cast_id": 27, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 14}, {"name": "Bruce Greenwood", "character": "Jack Dunphy", "id": 21089, "credit_id": "532f294ec3a3685fac00473e", "cast_id": 28, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 15}], "directors": [{"name": "Bennett Miller", "department": "Directing", "job": "Director", "credit_id": "52fe423ec3a36847f800f26f", "profile_path": "/jlnO6Hg6jChoGWr6ScVBpLJBAiI.jpg", "id": 5345}], "vote_average": 6.3, "runtime": 114}, "262543": {"poster_path": "/wwo81W8PxHREEprnrJRww471hWm.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Jacq Vaucan, an insurance agent of ROC robotics corporation, routinely investigates the case of manipulating a robot. What he discovers will have profound consequences for the future of humanity.", "video": false, "id": 262543, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Aut\u00f3mata", "tagline": "Your time is coming to an end \u2013 Ours is now beginning", "vote_count": 164, "homepage": "http://www.automata-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1971325", "adult": false, "backdrop_path": "/281QVUuSYKBgtdxmr5iAM7YDUZw.jpg", "production_companies": [{"name": "Green Moon Productions", "id": 4434}, {"name": "Nu Boyana Viburno", "id": 34070}], "release_date": "2014-10-09", "popularity": 4.95964093994281, "original_title": "Aut\u00f3mata", "budget": 15000000, "cast": [{"name": "Antonio Banderas", "character": "Jacq Vaucan", "id": 3131, "credit_id": "53f59be70e0a267f890046b1", "cast_id": 0, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Birgitte Hjort S\u00f8rensen", "character": "Rachel Vaucan", "id": 90514, "credit_id": "53f59bf70e0a267f8300457c", "cast_id": 1, "profile_path": "/u4pEu9aV31yBuc5mdhhpeyR5827.jpg", "order": 1}, {"name": "Melanie Griffith", "character": "Dra. Dupre / Cleo (voice)", "id": 29369, "credit_id": "53f59c050e0a267f8000464c", "cast_id": 2, "profile_path": "/cb2IeaETE0oVV5JZc79Vi0dS6m2.jpg", "order": 2}, {"name": "Dylan McDermott", "character": "Wallace", "id": 32597, "credit_id": "53f59c100e0a26419b003253", "cast_id": 3, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 3}, {"name": "Robert Forster", "character": "Robert Bold", "id": 5694, "credit_id": "5450fd3f0e0a263a18004456", "cast_id": 30, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 4}, {"name": "Tim McInnerny", "character": "Vernon Conway", "id": 41043, "credit_id": "53f59c310e0a267f80004650", "cast_id": 5, "profile_path": "/wxO1c0e5N1WHn2wLHmEbvrfqnnX.jpg", "order": 5}, {"name": "Andy Nyman", "character": "Ellis", "id": 22810, "credit_id": "53f59c420e0a267f890046b8", "cast_id": 6, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 6}, {"name": "David Ryall", "character": "Dominic Hawk", "id": 27822, "credit_id": "53f59c590e0a267f7a004750", "cast_id": 7, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 7}, {"name": "Andrew Tiernan", "character": "Manager", "id": 17290, "credit_id": "53f59c640e0a267f7d00473f", "cast_id": 8, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 8}, {"name": "Christa Campbell", "character": "ROC Technician", "id": 85178, "credit_id": "53f59c700e0a267f770045ea", "cast_id": 9, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 9}, {"name": "Christina Tam", "character": "Morgue Technician", "id": 1355190, "credit_id": "53f59c980e0a267f7d004744", "cast_id": 10, "profile_path": null, "order": 10}, {"name": "Danny Kirrane", "character": "Muniesa Technician", "id": 1355191, "credit_id": "53f59caf0e0a267f7d00474c", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Philip Rosch", "character": "Client", "id": 1355192, "credit_id": "53f59ccf0e0a267f890046cb", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "Javier Bardem", "character": "Blue Robot (voice)", "id": 3810, "credit_id": "53f59cdf0e0a267f770045fc", "cast_id": 13, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 13}, {"name": "Harry Anichkin", "character": "Clift", "id": 131101, "credit_id": "5450fd550e0a2601d8004306", "cast_id": 31, "profile_path": "/g4p8QC0VnYkCyYBtRBSiFEtIC71.jpg", "order": 14}], "directors": [{"name": "Gabe Ib\u00e1\u00f1ez", "department": "Directing", "job": "Director", "credit_id": "53f59d270e0a267f890046d9", "profile_path": null, "id": 119953}], "vote_average": 5.6, "runtime": 110}, "8592": {"poster_path": "/4UfKEGnj9jPWV11LNKBXTgge3We.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103738726, "overview": "The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice's united mob,", "video": false, "id": 8592, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Dick Tracy", "tagline": "Their turf. Their game. Their rules. They didn't count on HIS law...", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099422", "adult": false, "backdrop_path": "/1lyGxhpRG0ftzbZdsmZ35c7DnhG.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1990-06-15", "popularity": 0.28072920310531, "original_title": "Dick Tracy", "budget": 47000000, "cast": [{"name": "Warren Beatty", "character": "Dick Tracy", "id": 6449, "credit_id": "52fe44b0c3a36847f80a4697", "cast_id": 1, "profile_path": "/qVwqGRh3gkjwF7DESvoYDINfnCM.jpg", "order": 0}, {"name": "Al Pacino", "character": "Big Boy Caprice", "id": 1158, "credit_id": "52fe44b0c3a36847f80a469b", "cast_id": 2, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Madonna", "character": "Breathless Mahoney", "id": 3125, "credit_id": "52fe44b0c3a36847f80a469f", "cast_id": 3, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 2}, {"name": "Charlie Korsmo", "character": "Kid", "id": 13389, "credit_id": "52fe44b0c3a36847f80a46a3", "cast_id": 4, "profile_path": "/5TiMQj3AXDVL1wDVtQss2xUPzTC.jpg", "order": 3}, {"name": "Glenne Headly", "character": "Tess Trueheart", "id": 21104, "credit_id": "52fe44b0c3a36847f80a46a7", "cast_id": 5, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 4}, {"name": "Dustin Hoffman", "character": "Mumbles", "id": 4483, "credit_id": "52fe44b0c3a36847f80a46ab", "cast_id": 6, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 5}, {"name": "James Caan", "character": "Spaldoni", "id": 3085, "credit_id": "52fe44b0c3a36847f80a46af", "cast_id": 7, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "William Forsythe", "character": "Flattop", "id": 4520, "credit_id": "52fe44b0c3a36847f80a46b3", "cast_id": 8, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 7}, {"name": "Seymour Cassel", "character": "Sam Catchem", "id": 5950, "credit_id": "52fe44b0c3a36847f80a46db", "cast_id": 15, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 8}, {"name": "Dick Van Dyke", "character": "D.A. Fletcher", "id": 61303, "credit_id": "52fe44b0c3a36847f80a46df", "cast_id": 16, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 9}, {"name": "Kathy Bates", "character": "Mrs. Green", "id": 8534, "credit_id": "52fe44b0c3a36847f80a46e3", "cast_id": 17, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 10}, {"name": "Paul Sorvino", "character": "Lips Manlis", "id": 7004, "credit_id": "52fe44b0c3a36847f80a46ed", "cast_id": 19, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 11}, {"name": "Charles Durning", "character": "Chief Brandon", "id": 1466, "credit_id": "52fe44b0c3a36847f80a46f1", "cast_id": 20, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 12}, {"name": "Mandy Patinkin", "character": "88 Keys", "id": 25503, "credit_id": "52fe44b0c3a36847f80a46f5", "cast_id": 21, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 13}, {"name": "June Foray", "character": "Katie valiant / wheezy weasel", "id": 15098, "credit_id": "52fe44b0c3a36847f80a46f9", "cast_id": 22, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 14}, {"name": "David Lander", "character": "Smarty weasel", "id": 78619, "credit_id": "52fe44b0c3a36847f80a46fd", "cast_id": 23, "profile_path": "/3qTHGWSHCgQgL4HBQBqCd56XK3X.jpg", "order": 15}, {"name": "Charles Fleischer", "character": "Pyscho weasel / Greasy weasel", "id": 12826, "credit_id": "52fe44b0c3a36847f80a4701", "cast_id": 24, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 16}, {"name": "Fred Newman", "character": "Stupid weasel", "id": 196714, "credit_id": "52fe44b0c3a36847f80a4705", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Tara Strong", "character": "Natasha boulder/ Jenny Triton", "id": 15762, "credit_id": "52fe44b0c3a36847f80a4711", "cast_id": 28, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 20}, {"name": "Henry Silva", "character": "Influence", "id": 14731, "credit_id": "52fe44b0c3a36847f80a4721", "cast_id": 33, "profile_path": "/bIQ27e769EbNtMBdU1xSoaGgNd3.jpg", "order": 21}, {"name": "R. G. Armstrong", "character": "Pruneface", "id": 1107, "credit_id": "52fe44b0c3a36847f80a4725", "cast_id": 34, "profile_path": "/lRGoPhebBnPFzZQvcmnUokjGL7L.jpg", "order": 22}, {"name": "Catherine O'Hara", "character": "Texie Garcia", "id": 11514, "credit_id": "52fe44b0c3a36847f80a4729", "cast_id": 35, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 23}, {"name": "Mary Woronov", "character": "Welfare Person", "id": 100552, "credit_id": "52fe44b0c3a36847f80a472d", "cast_id": 36, "profile_path": "/xMQUflLmqD5PryDHsGGMvSnIW2b.jpg", "order": 24}, {"name": "E.G. Daily", "character": "Trisha foxworth / psycha psycho", "id": 15274, "credit_id": "5538a457c3a36878fd004d03", "cast_id": 38, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 25}], "directors": [{"name": "Warren Beatty", "department": "Directing", "job": "Director", "credit_id": "52fe44b0c3a36847f80a46b9", "profile_path": "/qVwqGRh3gkjwF7DESvoYDINfnCM.jpg", "id": 6449}], "vote_average": 5.6, "runtime": 103}, "401": {"poster_path": "/jqfhv16LODEhj04E4EZ1swFRZWX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26781723, "overview": "Andrew returns to his hometown for the funeral of his mother, a journey that reconnects him with past friends. The trip coincides with his decision to stop taking his powerful antidepressants. A chance meeting with Sam - a girl also suffering from various maladies - opens up the possibility of rekindling emotional attachments, confronting his psychologist father, and perhaps beginning a new life.", "video": false, "id": 401, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Garden State", "tagline": "", "vote_count": 165, "homepage": "http://www2.foxsearchlight.com/gardenstate/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0333766", "adult": false, "backdrop_path": "/hi7OYwXv4uCeCKZB0pJirszTxI9.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Double Feature Films", "id": 215}, {"name": "Jersey Films", "id": 216}, {"name": "Camelot Pictures", "id": 11728}, {"name": "Large's Ark Productions", "id": 11729}], "release_date": "2004-01-16", "popularity": 0.954166853588294, "original_title": "Garden State", "budget": 2500000, "cast": [{"name": "Zach Braff", "character": "Andrew Largeman", "id": 5367, "credit_id": "52fe423ec3a36847f800f3c5", "cast_id": 1, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Sam", "id": 524, "credit_id": "52fe423ec3a36847f800f3d9", "cast_id": 6, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Ian Holm", "character": "Gideon Largeman", "id": 65, "credit_id": "52fe423ec3a36847f800f40f", "cast_id": 18, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 2}, {"name": "Peter Sarsgaard", "character": "Mark", "id": 133, "credit_id": "52fe423ec3a36847f800f413", "cast_id": 19, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 3}, {"name": "Kenneth Graymez", "character": "Busboy", "id": 5368, "credit_id": "52fe423ec3a36847f800f3c9", "cast_id": 2, "profile_path": null, "order": 4}, {"name": "Jean Smart", "character": "Carol", "id": 5376, "credit_id": "52fe423ec3a36847f800f3ed", "cast_id": 11, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 5}, {"name": "Armando Riesco", "character": "Jesse", "id": 19497, "credit_id": "53c02e56c3a3684cdf005330", "cast_id": 40, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 6}, {"name": "Jackie Hoffman", "character": "Aunt Sylvia Largeman", "id": 5385, "credit_id": "52fe423ec3a36847f800f40b", "cast_id": 17, "profile_path": "/2lqw56we9TqWxQ3ewiWjWsREfLO.jpg", "order": 7}, {"name": "Method Man", "character": "Diego", "id": 5384, "credit_id": "52fe423ec3a36847f800f407", "cast_id": 16, "profile_path": "/qzZv7AWVVKex2IOe65a1WaQuW0g.jpg", "order": 8}, {"name": "Alex Burns", "character": "Dave", "id": 5395, "credit_id": "52fe423fc3a36847f800f47d", "cast_id": 37, "profile_path": null, "order": 9}, {"name": "Ron Leibman", "character": "Dr. Cohen", "id": 5372, "credit_id": "52fe423ec3a36847f800f3dd", "cast_id": 7, "profile_path": "/z50U8MiKua6Vk4xK0FhWPDWnMgR.jpg", "order": 10}, {"name": "Jim Parsons", "character": "Tim", "id": 5374, "credit_id": "52fe423ec3a36847f800f3e5", "cast_id": 9, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 11}, {"name": "Michael Weston", "character": "Kenny", "id": 51381, "credit_id": "53c02e12c3a3687e59004f77", "cast_id": 39, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 12}, {"name": "Ann Dowd", "character": "Olivia", "id": 43366, "credit_id": "53c02f390e0a2615790070f7", "cast_id": 41, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 13}, {"name": "Ato Essandoh", "character": "Titembay", "id": 5377, "credit_id": "52fe423ec3a36847f800f3f1", "cast_id": 12, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 14}, {"name": "Denis O'Hare", "character": "Albert", "id": 81681, "credit_id": "52fe423fc3a36847f800f481", "cast_id": 38, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 15}, {"name": "Trisha LaFache", "character": "Kelly", "id": 5373, "credit_id": "52fe423ec3a36847f800f3e1", "cast_id": 8, "profile_path": null, "order": 16}, {"name": "Geoffrey Arend", "character": "Karl Benson", "id": 5375, "credit_id": "52fe423ec3a36847f800f3e9", "cast_id": 10, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 17}, {"name": "George C. Wolfe", "character": "Restaurant Manager", "id": 5369, "credit_id": "52fe423ec3a36847f800f3cd", "cast_id": 3, "profile_path": "/izFpDiWihiqonmSiyFCeHgu6T3J.jpg", "order": 18}, {"name": "Austin Lysy", "character": "Waiter", "id": 5370, "credit_id": "52fe423ec3a36847f800f3d1", "cast_id": 4, "profile_path": "/7MAYRiYplZmGlGEMBsIiHGoitX5.jpg", "order": 19}, {"name": "Gary Gilbert", "character": "Young Hollywood Guy", "id": 5371, "credit_id": "52fe423ec3a36847f800f3d5", "cast_id": 5, "profile_path": null, "order": 20}], "directors": [{"name": "Zach Braff", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f479", "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "id": 5367}], "vote_average": 7.0, "runtime": 102}, "402": {"poster_path": "/vGBtnm9clhAjLp3D3dky7zFTQBA.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 352927224, "overview": "A police detective is in charge of the investigation of a brutal murder, in which a beautiful and seductive woman could be involved.", "video": false, "id": 402, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Basic Instinct", "tagline": "A brutal murder. A brilliant killer. A cop who can't resist the danger.", "vote_count": 194, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o5rgryRLwlOApsO3toqpqhhdS7H.jpg", "poster_path": "/hiM5EvFgjFboZtPMY5vFjhNnRQc.jpg", "id": 86336, "name": "Basic Instinct Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103772", "adult": false, "backdrop_path": "/bKdxJMqvr4wltzAQaieA6CTkaa9.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1992-03-20", "popularity": 0.82011402565448, "original_title": "Basic Instinct", "budget": 49000000, "cast": [{"name": "Michael Douglas", "character": "Det. Nick Curran", "id": 3392, "credit_id": "52fe423fc3a36847f800f4f3", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Catherine Tramell", "id": 4430, "credit_id": "52fe423fc3a36847f800f4f7", "cast_id": 2, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "George Dzundza", "character": "Gus Moran", "id": 10477, "credit_id": "52fe423fc3a36847f800f4fb", "cast_id": 3, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 2}, {"name": "Jeanne Tripplehorn", "character": "Dr. Beth Garner", "id": 10478, "credit_id": "52fe423fc3a36847f800f4ff", "cast_id": 4, "profile_path": "/pZcw8RXsRSO9WXHOrQqentISWYv.jpg", "order": 3}, {"name": "Denis Arndt", "character": "Lt. Philip Walker", "id": 10480, "credit_id": "52fe423fc3a36847f800f503", "cast_id": 5, "profile_path": "/yyEYxsqbXF69RgwbhckzxRvHehQ.jpg", "order": 4}, {"name": "Leilani Sarelle", "character": "Roxy", "id": 10485, "credit_id": "52fe423fc3a36847f800f507", "cast_id": 6, "profile_path": "/l3TFOLMHeONi5hTw2khu4BUnyxa.jpg", "order": 5}, {"name": "Bruce A. Young", "character": "Andrews", "id": 4943, "credit_id": "52fe423fc3a36847f800f50b", "cast_id": 7, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 6}, {"name": "Chelcie Ross", "character": "Capt. Talcott", "id": 10486, "credit_id": "52fe423fc3a36847f800f50f", "cast_id": 8, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 7}, {"name": "Dorothy Malone", "character": "Hazel Dobkins", "id": 10487, "credit_id": "52fe423fc3a36847f800f513", "cast_id": 9, "profile_path": "/4bG60BRDp6xj7Gy7J3LcqjhvXpk.jpg", "order": 8}, {"name": "Wayne Knight", "character": "John Correli", "id": 4201, "credit_id": "52fe423fc3a36847f800f517", "cast_id": 10, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 9}, {"name": "Daniel von Bargen", "character": "Lt. Marty Nilsen", "id": 1473, "credit_id": "52fe423fc3a36847f800f51b", "cast_id": 11, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 10}, {"name": "Stephen Tobolowsky", "character": "Dr. Lamott", "id": 537, "credit_id": "52fe423fc3a36847f800f51f", "cast_id": 12, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 11}, {"name": "Benjamin Mouton", "character": "Harrigan", "id": 10488, "credit_id": "52fe423fc3a36847f800f523", "cast_id": 13, "profile_path": "/nzYS12c1c7GNnsnce1ysfOTgLyz.jpg", "order": 12}, {"name": "Jack McGee", "character": "Sheriff", "id": 10489, "credit_id": "52fe423fc3a36847f800f527", "cast_id": 14, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 13}, {"name": "Bill Cable", "character": "Johnny Boz", "id": 10490, "credit_id": "52fe423fc3a36847f800f52b", "cast_id": 15, "profile_path": "/lpeiDTH1sQHZYw0mQa16cUYW9rN.jpg", "order": 14}, {"name": "Stephen Rowe", "character": "Internal Affairs Investigator", "id": 163742, "credit_id": "52fe423fc3a36847f800f58f", "cast_id": 32, "profile_path": "/kQgyaZlrcYKUMj5jWntixBzIHLJ.jpg", "order": 15}, {"name": "Mitch Pileggi", "character": "Internal Affairs Investigator", "id": 12644, "credit_id": "52fe423fc3a36847f800f593", "cast_id": 33, "profile_path": "/yJhcdFVtc2J6Nnqz7rcYB7GI4P9.jpg", "order": 16}, {"name": "Mary Pat Gleason", "character": "Juvenile Officer", "id": 62595, "credit_id": "52fe423fc3a36847f800f597", "cast_id": 34, "profile_path": "/crJCES2ttMVhuU2gFxrRg1jDWum.jpg", "order": 17}, {"name": "Freda Foh Shen", "character": "Berkeley Registrar", "id": 51754, "credit_id": "52fe423fc3a36847f800f59b", "cast_id": 35, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 18}, {"name": "William Duff-Griffin", "character": "Dr. Myron", "id": 21383, "credit_id": "52fe423fc3a36847f800f59f", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "James Rebhorn", "character": "Dr. McElwaine", "id": 8986, "credit_id": "52fe423fc3a36847f800f5a3", "cast_id": 37, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 20}, {"name": "David Wells", "character": "Polygraph Examiner", "id": 64236, "credit_id": "52fe423fc3a36847f800f5e5", "cast_id": 55, "profile_path": "/uK0vM9x0nkwJbjBSfCIWHWHdN8o.jpg", "order": 21}, {"name": "Mary Ann Rodgers", "character": "Nurse", "id": 1089417, "credit_id": "52fe423fc3a36847f800f5a7", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Adilah Barnes", "character": "Nurse", "id": 154114, "credit_id": "52fe423fc3a36847f800f5ab", "cast_id": 41, "profile_path": "/uwBDR07eJU1aanOKV9fXgv6Pu6O.jpg", "order": 23}, {"name": "Irene Olga L\u00f3pez", "character": "Maid", "id": 6329, "credit_id": "52fe423fc3a36847f800f5af", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Juanita Jennings", "character": "Receptionist", "id": 80615, "credit_id": "52fe423fc3a36847f800f5b3", "cast_id": 43, "profile_path": "/epxlAax85oVnIEuDfaGeJYp4SxT.jpg", "order": 25}, {"name": "Craig C. Lewis", "character": "Bartender / Police Bar", "id": 1089418, "credit_id": "52fe423fc3a36847f800f5b7", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Michael David Lally", "character": "Detective", "id": 77017, "credit_id": "52fe423fc3a36847f800f5bb", "cast_id": 45, "profile_path": "/zkGvar3ZcYNNIuu0wzOkLszxkDc.jpg", "order": 27}, {"name": "Peter Appel", "character": "Detective", "id": 1005, "credit_id": "52fe423fc3a36847f800f5bf", "cast_id": 46, "profile_path": "/wrAf4TGgtKE1mXWVtm1baTBDh6F.jpg", "order": 28}, {"name": "Michael Halton", "character": "Bartender / Country Western Bar", "id": 1089421, "credit_id": "52fe423fc3a36847f800f5c3", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Keith McDaniel", "character": "Featured Dancer", "id": 172603, "credit_id": "52fe423fc3a36847f800f5c7", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Eric Poppick", "character": "Coroner's Guy", "id": 83109, "credit_id": "52fe423fc3a36847f800f5cb", "cast_id": 49, "profile_path": "/zVNL8diZZ7yU5qByU7DDuzxYdwv.jpg", "order": 31}, {"name": "Ron Cacas", "character": "Policeman", "id": 1089422, "credit_id": "52fe423fc3a36847f800f5cf", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Kayla Blake", "character": "Roxy's Friend", "id": 1228677, "credit_id": "52fe423fc3a36847f800f5e9", "cast_id": 56, "profile_path": null, "order": 33}, {"name": "Bradford English", "character": "Campus Policeman", "id": 1234009, "credit_id": "52fe423fc3a36847f800f5ed", "cast_id": 57, "profile_path": null, "order": 34}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f531", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.2, "runtime": 127}, "403": {"poster_path": "/vzdx1rkR0wK8NcdgTAvg6Vp061U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145793296, "overview": "The story of an old Jewish widow named Daisy Werthan and her relationship with her colored chauffeur Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned upon. Oscar winning tragic comedy with a star-studded cast and based on a play of the same name by Alfred Uhry.", "video": false, "id": 403, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Driving Miss Daisy", "tagline": "The funny, touching and totally irresistible story of a working relationship that became a 25-year friendship.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097239", "adult": false, "backdrop_path": "/uK0ihZKox9aatW6KH1yjZh8wkt3.jpg", "production_companies": [{"name": "The Zanuck Company", "id": 80}, {"name": "Majestic Films International", "id": 2630}], "release_date": "1989-12-13", "popularity": 0.497952239611202, "original_title": "Driving Miss Daisy", "budget": 7500000, "cast": [{"name": "Morgan Freeman", "character": "Hoke Colburn", "id": 192, "credit_id": "52fe423fc3a36847f800f63b", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Jessica Tandy", "character": "Daisy Werthan", "id": 5698, "credit_id": "52fe423fc3a36847f800f63f", "cast_id": 5, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Boolie Werthan", "id": 707, "credit_id": "52fe423fc3a36847f800f643", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "Patti LuPone", "character": "Florine Werthan", "id": 5699, "credit_id": "52fe423fc3a36847f800f647", "cast_id": 7, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 3}, {"name": "Esther Rolle", "character": "Idella", "id": 5700, "credit_id": "52fe423fc3a36847f800f64b", "cast_id": 8, "profile_path": "/2r5hEU7GupbbTlGKl4F5IfakIzO.jpg", "order": 4}, {"name": "Joann Havrilla", "character": "Miss McClatchey", "id": 5701, "credit_id": "52fe423fc3a36847f800f64f", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "William Hall Jr.", "character": "Oscar", "id": 5702, "credit_id": "52fe423fc3a36847f800f653", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Clarice F. Geigerman", "character": "Nonie", "id": 5703, "credit_id": "52fe423fc3a36847f800f657", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Muriel Moore", "character": "Miriam", "id": 5704, "credit_id": "52fe423fc3a36847f800f65b", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Sylvia Kaler", "character": "Beulah", "id": 5705, "credit_id": "52fe423fc3a36847f800f65f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Alvin M. Sugarman", "character": "Dr. Weil", "id": 1403815, "credit_id": "549bf8d1925141312c003256", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Carolyn Gold", "character": "Neighbor Lady", "id": 1403817, "credit_id": "549bf8fb925141312c00325c", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Bruce Beresford", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f62b", "profile_path": "/2BM92YfwzMpFkk5IlNZfZqPmODy.jpg", "id": 5696}], "vote_average": 7.1, "runtime": 99}, "406": {"poster_path": "/mIRwt45pSrirMzOA2aplFx7EJKT.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Abdel, a local hoodlum, is hospitalized after a riot, where a policeman lost his gun. His friend Vinz finds it and claims he will kill a cop if Abdel dies.", "video": false, "id": 406, "genres": [{"id": 18, "name": "Drama"}], "title": "Hate", "tagline": "Three Young Friends... One Last Chance.", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0113247", "adult": false, "backdrop_path": "/jJnjivw8vAWwjkPZTpH0C8AzPTQ.jpg", "production_companies": [{"name": "Le Studio Canal+", "id": 183}], "release_date": "1995-05-31", "popularity": 0.985582974354869, "original_title": "La Haine", "budget": 3000000, "cast": [{"name": "Vincent Cassel", "character": "Vinz", "id": 1925, "credit_id": "52fe423fc3a36847f800f88f", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "Hubert Kound\u00e9", "character": "Hubert", "id": 5418, "credit_id": "52fe423fc3a36847f800f893", "cast_id": 3, "profile_path": "/rVgtZ1d6bbbaMFcGVujZEznqQNo.jpg", "order": 1}, {"name": "Sa\u00efd Taghmaoui", "character": "Sa\u00efd", "id": 5419, "credit_id": "52fe423fc3a36847f800f897", "cast_id": 4, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 2}, {"name": "Abdel Ahmed Ghili", "character": "Abdel", "id": 5420, "credit_id": "52fe423fc3a36847f800f89b", "cast_id": 5, "profile_path": "/1ZGyOl1Xc007E9tnkLWdcAQdFNw.jpg", "order": 3}, {"name": "Solo", "character": "Santo", "id": 5422, "credit_id": "52fe423fc3a36847f800f89f", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "H\u00e9lo\u00efse Rauth", "character": "Sarah", "id": 5424, "credit_id": "52fe423fc3a36847f800f8a7", "cast_id": 8, "profile_path": "/wTrEFOrSiyPzViREYwU56Ch94Zw.jpg", "order": 5}, {"name": "Beno\u00eet Magimel", "character": "Beno\u00eet", "id": 5442, "credit_id": "52fe4240c3a36847f800f901", "cast_id": 24, "profile_path": "/mbOvuJivoZlhNrIIqYMSZEs6Mud.jpg", "order": 6}, {"name": "\u00c9douard Montoute", "character": "Darty", "id": 5441, "credit_id": "52fe4240c3a36847f800f8fd", "cast_id": 23, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 7}, {"name": "Marc Duret", "character": "Inspecteur Notre Dame", "id": 2170, "credit_id": "52fe4240c3a36847f800f911", "cast_id": 28, "profile_path": "/yZu9GrdnBYT0nEwPNPKvbXN9DfE.jpg", "order": 8}, {"name": "Joseph Momo", "character": "Gars ordinaire", "id": 5423, "credit_id": "52fe423fc3a36847f800f8a3", "cast_id": 7, "profile_path": null, "order": 9}, {"name": "Vincent Lindon", "character": "L'homme saoul", "id": 5443, "credit_id": "52fe4240c3a36847f800f905", "cast_id": 25, "profile_path": "/ttfk7etXzELkW1gMSo5eH8aEzjY.jpg", "order": 10}, {"name": "Christophe Rossignon", "character": "Le chauffeur de taxi", "id": 5425, "credit_id": "52fe4240c3a36847f800f909", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Mathieu Kassovitz", "character": "Le jeune skinhead", "id": 2406, "credit_id": "52fe4240c3a36847f800f90d", "cast_id": 27, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 12}, {"name": "Philippe Nahon", "character": "Le chef de la police", "id": 5444, "credit_id": "52fe4240c3a36847f800f915", "cast_id": 29, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 13}, {"name": "Zinedine Soualem", "character": "L'Officier de Police", "id": 5445, "credit_id": "52fe4240c3a36847f800f919", "cast_id": 30, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 14}, {"name": "Rywka Wajsbrot", "character": "Grand-m\u00e8re de Vinz", "id": 1347614, "credit_id": "53d7f92ec3a3683a12001afc", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Olga Abrego", "character": "Tante de Vinz", "id": 1347615, "credit_id": "53d7f964c3a3683a0e001a49", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Laurent Labasse", "character": "Cuisinier", "id": 579488, "credit_id": "53d7f9ce0e0a26033d0025f2", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Choukri Gabteni", "character": "Fr\u00e8re de Sa\u00efd", "id": 64546, "credit_id": "53d7fa0f0e0a26033d0025fc", "cast_id": 35, "profile_path": null, "order": 18}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f88b", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 8.1, "runtime": 98}, "262551": {"poster_path": "/sXnTvL5ZD7sVDID29yj4cd008ZF.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Looking for a baby-sitter for the night, Marc Schaudel entrusts his son Remy to the care of his employee Franck, a straight man. But the thing that Marc doesn't know, is that Franck is getting 30 years old this weekend and that his son Remy is a very capricious child. The next day, Marc and his wife Claire are awakened by a call from the police. Remy and Franck are missing, and the house is totally devastated. The police finds a camera in the leftovers. Marc, Claire and the police start watching the video that has been recorded the day before during the night and find out what happened to Franck and Remy.", "video": false, "id": 262551, "genres": [{"id": 35, "name": "Comedy"}], "title": "Babysitting", "tagline": "", "vote_count": 104, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 331841, "name": "Babysitting Filmreihe"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3013602", "adult": false, "backdrop_path": "/fwNCHtxafF3iaVuo94bcYdv9f8p.jpg", "production_companies": [{"name": "La Banque Postale Image 7", "id": 46205}, {"name": "Axel Films", "id": 13319}, {"name": "Madame Films", "id": 49194}, {"name": "Cin\u00e9france 1888", "id": 31229}, {"name": "Good Lap Production", "id": 47930}, {"name": "Universal Pictures International (UPI)", "id": 5726}], "release_date": "2014-04-16", "popularity": 0.530902981012688, "original_title": "Babysitting", "budget": 0, "cast": [{"name": "Philippe Lacheau", "character": "Franck", "id": 1186076, "credit_id": "533ac2c5c3a36819c40058ce", "cast_id": 0, "profile_path": "/c7uygPak9MLfOa6WCTv46ir7muW.jpg", "order": 1}, {"name": "Alice David", "character": "Sonia", "id": 1306309, "credit_id": "533ac2d2c3a36819c40058d1", "cast_id": 1, "profile_path": "/2iNCkZy1tAjM3kaoOqmrLxbSRmz.jpg", "order": 2}, {"name": "Vincent Desagnat", "character": "Ernest", "id": 76825, "credit_id": "533ac2e7c3a36819c40058d6", "cast_id": 2, "profile_path": "/chkXB8vpO0NuR66Wi0tGfVKnuBX.jpg", "order": 3}, {"name": "Tarek Boudali", "character": "Sam", "id": 1186075, "credit_id": "533ac2f5c3a3680e8f007da6", "cast_id": 3, "profile_path": "/kxZDvHShgONqXNyZzdeOGm4Wq47.jpg", "order": 4}, {"name": "Julien Arruti", "character": "Alex", "id": 1291810, "credit_id": "533ac308c3a3680e76007ce6", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Gr\u00e9goire Ludig", "character": "Paul", "id": 145123, "credit_id": "533ac323c3a3680e9f0078c9", "cast_id": 5, "profile_path": "/7K97v7BSoBV5FMHmn3wbtyCxZyG.jpg", "order": 6}, {"name": "David Marsais", "character": "Jean", "id": 1285939, "credit_id": "533ac331c3a3680e70007c7b", "cast_id": 6, "profile_path": "/3zT5rWH5oGToG2VoOtNEdMVPSFY.jpg", "order": 7}, {"name": "G\u00e9rard Jugnot", "character": "M. Schaudel", "id": 21171, "credit_id": "533ac34bc3a3680e96007a43", "cast_id": 7, "profile_path": "/xlFmLH6cGfHPKdvyoYZitfB8Txf.jpg", "order": 8}, {"name": "Clotilde Courau", "character": "Mme Schaudel", "id": 16921, "credit_id": "53ee4b380e0a2619350023f3", "cast_id": 14, "profile_path": "/htHGCsyHZ7zMyjmpSsiKmfdp21Z.jpg", "order": 9}, {"name": "Philippe Duquesne", "character": "Agent Caillaud", "id": 66032, "credit_id": "53ee4c4fc3a368168c0016d4", "cast_id": 15, "profile_path": "/9Br1Ewi1aHoiRrCt50j0QS2UyHC.jpg", "order": 10}, {"name": "David Salles", "character": "Commissaire Laville", "id": 130454, "credit_id": "53ee4cbcc3a368167800172c", "cast_id": 16, "profile_path": "/6u7gqUBTLwdWD7nXJcZQi8O2gnk.jpg", "order": 11}], "directors": [{"name": "Philippe Lacheau", "department": "Directing", "job": "Director", "credit_id": "533ac383c3a3680e7f007b68", "profile_path": "/c7uygPak9MLfOa6WCTv46ir7muW.jpg", "id": 1186076}, {"name": "Nicolas Benamou", "department": "Directing", "job": "Director", "credit_id": "533ac393c3a3680e69007de8", "profile_path": null, "id": 1067317}], "vote_average": 7.3, "runtime": 0}, "408": {"poster_path": "/vGV35HBCMhQl2phhGaQ29P08ZgM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \"the fairest in the land,\" and Snow White's beauty surpasses her own.", "video": false, "id": 408, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Snow White and the Seven Dwarfs", "tagline": "The Happiest, Dopiest, Grumpiest, Sneeziest movie of the year.", "vote_count": 505, "homepage": "http://disney.go.com/vault/archives/movies/snow/snow.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0029583", "adult": false, "backdrop_path": "/8lxW9WfWkSxmPPck605QLQL268q.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1937-12-21", "popularity": 1.94784258120522, "original_title": "Snow White and the Seven Dwarfs", "budget": 1488000, "cast": [{"name": "Stuart Buchanan", "character": "Huntsman", "id": 5458, "credit_id": "52fe4240c3a36847f800fa61", "cast_id": 13, "profile_path": "/dR6rMMbeq8m23ZhlLnOf7mke29x.jpg", "order": 0}, {"name": "Adriana Caselotti", "character": "Snow White", "id": 5460, "credit_id": "52fe4240c3a36847f800fa65", "cast_id": 14, "profile_path": "/spSFVZoDpFhkSeyEMTTJj8ZSNKs.jpg", "order": 1}, {"name": "Eddie Collins", "character": "Dopey", "id": 5461, "credit_id": "52fe4240c3a36847f800fa69", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Pinto Colvig", "character": "Sleepy/Grumpy", "id": 5462, "credit_id": "52fe4240c3a36847f800fa6d", "cast_id": 16, "profile_path": "/iHUSTwJAlqn0OzZpjiZwrkRgzXq.jpg", "order": 3}, {"name": "Marion Darlington", "character": "Bird Sounds and Warbling", "id": 5463, "credit_id": "52fe4240c3a36847f800fa71", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Billy Gilbert", "character": "Sneezy", "id": 5464, "credit_id": "52fe4240c3a36847f800fa75", "cast_id": 18, "profile_path": "/pITSLDLWwStge8KwizNn2VZdN9c.jpg", "order": 5}, {"name": "Otis Harlan", "character": "Happy", "id": 5465, "credit_id": "52fe4240c3a36847f800fa79", "cast_id": 19, "profile_path": "/dvoCiNNoupmtAh3qUfBX5zOOO1P.jpg", "order": 6}, {"name": "Roy Atwell", "character": "Doc", "id": 5457, "credit_id": "52fe4240c3a36847f800fa7d", "cast_id": 20, "profile_path": "/gHiJd6CHJyQJjL0xdnq1B0sOlVE.jpg", "order": 7}, {"name": "Lucille La Verne", "character": "Queen / Witch", "id": 288940, "credit_id": "52fe4240c3a36847f800fab7", "cast_id": 31, "profile_path": "/1kLj9WrPzUZMOyP3bgqxJX0ZkSm.jpg", "order": 8}, {"name": "Scotty Mattraw", "character": "Bashful", "id": 364526, "credit_id": "52fe4240c3a36847f800fabb", "cast_id": 32, "profile_path": "/9jOZqlkHGNwCBURJJ6mfV5RrzI5.jpg", "order": 9}, {"name": "Moroni Olsen", "character": "Magic Mirror", "id": 18586, "credit_id": "52fe4240c3a36847f800fabf", "cast_id": 33, "profile_path": "/20iaFC3qnVA9t77SFYnjVuJas1P.jpg", "order": 10}, {"name": "Harry Stockwell", "character": "Prince", "id": 540747, "credit_id": "52fe4240c3a36847f800fac3", "cast_id": 34, "profile_path": "/fpv8vxrT8QbhFSIEipQHq0BEpRh.jpg", "order": 11}, {"name": "Purv Pullen", "character": "Birds", "id": 523407, "credit_id": "52fe4240c3a36847f800fac7", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "James MacDonald", "character": "Yodeling Man", "id": 137461, "credit_id": "52fe4240c3a36847f800facb", "cast_id": 36, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 13}], "directors": [{"name": "David Hand", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fa1b", "profile_path": "/4VzUnNNHSwGT0qH99Zgd0nhmmIU.jpg", "id": 5446}], "vote_average": 6.3, "runtime": 83}, "409": {"poster_path": "/niqc0v3Lclh99Mmmxm49qZTIo2e.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231700000, "overview": "The filmed version of the novel by Michael Ondaatje of the same name. This film tells of love stories during the turbulent times of World War 2. Director Anthony Minghella films the biography of Ladislaus Almasy.", "video": false, "id": 409, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "The English Patient", "tagline": "In love, there are no boundaries.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116209", "adult": false, "backdrop_path": "/mn1GTWYUpWs7jQnI6C0PJsqa8UI.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Tiger Moth Productions", "id": 12204}], "release_date": "1996-11-14", "popularity": 1.08324997148023, "original_title": "The English Patient", "budget": 27000000, "cast": [{"name": "Ralph Fiennes", "character": "Count L\u00e1szl\u00f3 de Alm\u00e1sy", "id": 5469, "credit_id": "52fe4240c3a36847f800fb1b", "cast_id": 1, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Juliette Binoche", "character": "Hana", "id": 1137, "credit_id": "52fe4240c3a36847f800fb1f", "cast_id": 2, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "David Caravaggio", "id": 5293, "credit_id": "52fe4240c3a36847f800fb23", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Kristin Scott Thomas", "character": "Katharine Clifton", "id": 5470, "credit_id": "52fe4240c3a36847f800fb27", "cast_id": 4, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 3}, {"name": "Naveen Andrews", "character": "Sikh Kip", "id": 5471, "credit_id": "52fe4240c3a36847f800fb2b", "cast_id": 5, "profile_path": "/8Y6GvOC52mnLyiAg8Oz0IIuuW4m.jpg", "order": 4}, {"name": "Colin Firth", "character": "Geoffrey Clifton", "id": 5472, "credit_id": "52fe4240c3a36847f800fb2f", "cast_id": 6, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 5}, {"name": "Julian Wadham", "character": "Madox", "id": 5473, "credit_id": "52fe4240c3a36847f800fb33", "cast_id": 7, "profile_path": "/oDfxeUerYXpcZJXmoZPbSbfQy2A.jpg", "order": 6}, {"name": "Torri Higginson", "character": "Mary", "id": 5480, "credit_id": "52fe4240c3a36847f800fb53", "cast_id": 15, "profile_path": "/kDGgULo1Y9qGgxdZxduoePRNXoq.jpg", "order": 7}, {"name": "J\u00fcrgen Prochnow", "character": "Major Muller", "id": 920, "credit_id": "52fe4240c3a36847f800fb37", "cast_id": 8, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 8}, {"name": "Kevin Whately", "character": "Hardy", "id": 5474, "credit_id": "52fe4240c3a36847f800fb3b", "cast_id": 9, "profile_path": "/bW6z8nxcuDkEJ04TnN4pnKygNAw.jpg", "order": 9}, {"name": "Clive Merrison", "character": "Fenelon-Barnes", "id": 5475, "credit_id": "52fe4240c3a36847f800fb3f", "cast_id": 10, "profile_path": "/xaVOsuG0Slbwly5laYw98ZUq0co.jpg", "order": 10}, {"name": "Nino Castelnuovo", "character": "D'Agostino", "id": 5476, "credit_id": "52fe4240c3a36847f800fb43", "cast_id": 11, "profile_path": "/snBgTgj1yr1hAXAwVrIl5HByyRY.jpg", "order": 11}, {"name": "Hichem Rostom", "character": "Fouad", "id": 5477, "credit_id": "52fe4240c3a36847f800fb47", "cast_id": 12, "profile_path": "/2UUNuUdcyVL91i1ZZ0FUj3BBv7m.jpg", "order": 12}, {"name": "Peter R\u00fchring", "character": "Bermann", "id": 5478, "credit_id": "52fe4240c3a36847f800fb4b", "cast_id": 13, "profile_path": "/wA5xpXiyE2LQ3lhKOl0mNvSThNI.jpg", "order": 13}, {"name": "Geordie Johnson", "character": "Oliver", "id": 5479, "credit_id": "52fe4240c3a36847f800fb4f", "cast_id": 14, "profile_path": "/3ipQU3hUWj4wvFzrY4UCnUs1CpE.jpg", "order": 14}, {"name": "Liisa Repo-Martell", "character": "Jan", "id": 5481, "credit_id": "52fe4240c3a36847f800fb57", "cast_id": 16, "profile_path": "/lwjWInRTj9ZkDuMziQNywhbOKzw.jpg", "order": 15}, {"name": "Ray Coulthard", "character": "Rupert Douglas", "id": 5482, "credit_id": "52fe4240c3a36847f800fb5b", "cast_id": 17, "profile_path": "/7yn47hVgaNv4m23dYmqvqZd94ob.jpg", "order": 16}, {"name": "Philip Whitchurch", "character": "Corporal Dade", "id": 5483, "credit_id": "52fe4240c3a36847f800fb5f", "cast_id": 18, "profile_path": "/mQDrOvX4sM3Pjz4JEj44AyHBSM6.jpg", "order": 17}], "directors": [{"name": "Anthony Minghella", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fb65", "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "id": 2239}], "vote_average": 7.0, "runtime": 162}, "411": {"poster_path": "/tFOQ4q6JnHcdw58ThL4SzFv37NT.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 748806957, "overview": "Join Lucy, Edmund, Susan, and Peter, four siblings who step through a magical wardrobe and find the land of Narnia. There, the they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever!", "video": false, "id": 411, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", "tagline": "Evil Has Reigned For 100 Years...", "vote_count": 679, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ojjzZUQlqKTsN1T7s5OAVZSjYMH.jpg", "poster_path": "/sh6Kn8VBfXotJ6qsvJkdfscxXKR.jpg", "id": 420, "name": "The Chronicles of Narnia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363771", "adult": false, "backdrop_path": "/4ZwXJcUT3KdE8Kan9TJ7l0Rg5LG.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "Walt Disney", "id": 5888}], "release_date": "2005-12-09", "popularity": 2.75967204074153, "original_title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", "budget": 180000000, "cast": [{"name": "Georgie Henley", "character": "Lucy Pevensie", "id": 5526, "credit_id": "52fe4240c3a36847f800fcc9", "cast_id": 3, "profile_path": "/u8zyLaHTqx4V8LyHnYL2vDsxbrC.jpg", "order": 0}, {"name": "Skandar Keynes", "character": "Edmund Pevensie", "id": 5527, "credit_id": "52fe4240c3a36847f800fccd", "cast_id": 4, "profile_path": "/7Wc58Opf4EDjHDotwjK2XLTFLqU.jpg", "order": 1}, {"name": "William Moseley", "character": "Peter Pevensie", "id": 5528, "credit_id": "52fe4240c3a36847f800fcd1", "cast_id": 5, "profile_path": "/zBJ00uNw4nK0gFetNfnVmbGC5ly.jpg", "order": 2}, {"name": "Anna Popplewell", "character": "Susan Pevensie", "id": 5529, "credit_id": "52fe4240c3a36847f800fcd5", "cast_id": 6, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 3}, {"name": "Tilda Swinton", "character": "White Witch", "id": 3063, "credit_id": "52fe4240c3a36847f800fcd9", "cast_id": 7, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 4}, {"name": "James McAvoy", "character": "Mr. Tumnus, the Faun", "id": 5530, "credit_id": "52fe4240c3a36847f800fcdd", "cast_id": 8, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "Professor Kirke", "id": 388, "credit_id": "52fe4240c3a36847f800fce1", "cast_id": 9, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Kiran Shah", "character": "Ginarrbrik", "id": 5531, "credit_id": "52fe4240c3a36847f800fce5", "cast_id": 10, "profile_path": "/oQer3lBnxD8gKFHoz7o7eJMF6od.jpg", "order": 7}, {"name": "James Cosmo", "character": "Father Christmas", "id": 2467, "credit_id": "52fe4240c3a36847f800fce9", "cast_id": 11, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 8}, {"name": "Judy McIntosh", "character": "Mrs. Pevensie", "id": 5532, "credit_id": "52fe4240c3a36847f800fced", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Elizabeth Hawthorne", "character": "Mrs. MacReady", "id": 5533, "credit_id": "52fe4240c3a36847f800fcf1", "cast_id": 13, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 10}, {"name": "Patrick Kake", "character": "Oreius", "id": 5534, "credit_id": "52fe4240c3a36847f800fcf5", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Rachael Henley", "character": "Older Lucy", "id": 5535, "credit_id": "52fe4240c3a36847f800fcf9", "cast_id": 15, "profile_path": "/3Fy90P4vrKYq3tFjcCgOVl54Yg4.jpg", "order": 12}, {"name": "Mark Wells", "character": "Older Edmund", "id": 5536, "credit_id": "52fe4240c3a36847f800fcfd", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Noah Huntley", "character": "Older Peter", "id": 2050, "credit_id": "52fe4240c3a36847f800fd01", "cast_id": 17, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 14}, {"name": "Sophie Winkleman", "character": "Older Susan", "id": 5537, "credit_id": "52fe4240c3a36847f800fd05", "cast_id": 18, "profile_path": "/zM4FzrMmVj1ncgAttaXaFo6If4D.jpg", "order": 15}, {"name": "Liam Neeson", "character": "Aslan", "id": 3896, "credit_id": "52fe4240c3a36847f800fd09", "cast_id": 19, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 16}, {"name": "Ray Winstone", "character": "Mr. Beaver", "id": 5538, "credit_id": "52fe4240c3a36847f800fd0d", "cast_id": 20, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 17}, {"name": "Dawn French", "character": "Mrs. Beaver", "id": 5539, "credit_id": "52fe4240c3a36847f800fd11", "cast_id": 21, "profile_path": "/z81mKzCqmLttRVpBBGwjSlATOK3.jpg", "order": 18}, {"name": "Rupert Everett", "character": "Fox", "id": 4757, "credit_id": "52fe4240c3a36847f800fd15", "cast_id": 22, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 19}, {"name": "Cameron Rhodes", "character": "Gryphon", "id": 5540, "credit_id": "52fe4240c3a36847f800fd19", "cast_id": 23, "profile_path": "/58diJ0mAP4EzwsVXumz0YqcfwcD.jpg", "order": 20}, {"name": "Philip Steuer", "character": "Philip the Horse", "id": 5541, "credit_id": "52fe4240c3a36847f800fd1d", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Sim Evan-Jones", "character": "Wolf", "id": 5542, "credit_id": "52fe4240c3a36847f800fd21", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Michael Madsen", "character": "Maugrim", "id": 147, "credit_id": "52fe4240c3a36847f800fd25", "cast_id": 26, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 23}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fcbf", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}], "vote_average": 6.4, "runtime": 143}, "414": {"poster_path": "/i5bHFFv41MBwVoboOuWqDnIH3Bu.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 336529144, "overview": "The Dark Knight of Gotham City confronts a dastardly duo: Two-Face and the Riddler. Formerly District Attorney Harvey Dent, Two-Face believes Batman caused the courtroom accident which left him disfigured on one side. And Edward Nygma, computer-genius and former employee of millionaire Bruce Wayne, is out to get the philanthropist; as The Riddler. Former circus acrobat Dick Grayson, his family killed by Two-Face, becomes Wayne's ward and Batman's new partner Robin.", "video": false, "id": 414, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Batman Forever", "tagline": "Courage now, truth always...", "vote_count": 458, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112462", "adult": false, "backdrop_path": "/bbaiw9VmrHXY3mhCDpj5XB2I5We.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1995-06-15", "popularity": 1.23466505021069, "original_title": "Batman Forever", "budget": 100000000, "cast": [{"name": "Val Kilmer", "character": "Batman", "id": 5576, "credit_id": "52fe4240c3a36847f800fdf5", "cast_id": 6, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Two-Face/Harvey Dent", "id": 2176, "credit_id": "52fe4240c3a36847f800fdf9", "cast_id": 7, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Jim Carrey", "character": "Riddler/Edward Nygma", "id": 206, "credit_id": "52fe4241c3a36847f800fdfd", "cast_id": 8, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Dr. Chase Meridian", "id": 2227, "credit_id": "52fe4241c3a36847f800fe01", "cast_id": 9, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Chris O'Donnell", "character": "Robin/Dick Grayson", "id": 5577, "credit_id": "52fe4241c3a36847f800fe05", "cast_id": 10, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 2}, {"name": "Michael Gough", "character": "Alfred Pennyworth", "id": 3796, "credit_id": "52fe4241c3a36847f800fe09", "cast_id": 11, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 3}, {"name": "Pat Hingle", "character": "Commissioner Gordon", "id": 3798, "credit_id": "52fe4241c3a36847f800fe0d", "cast_id": 12, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 4}, {"name": "Drew Barrymore", "character": "Sugar", "id": 69597, "credit_id": "52fe4241c3a36847f800fe11", "cast_id": 13, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 5}, {"name": "Debi Mazar", "character": "Spice", "id": 5578, "credit_id": "52fe4241c3a36847f800fe15", "cast_id": 14, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 6}, {"name": "Elizabeth Sanders", "character": "Gossip Gerty", "id": 5579, "credit_id": "52fe4241c3a36847f800fe19", "cast_id": 15, "profile_path": "/onWcLrux1SlRuvRhaAtvoVvSpv.jpg", "order": 7}, {"name": "Rene Auberjonois", "character": "Dr. Burton", "id": 9807, "credit_id": "52fe4241c3a36847f800fe4d", "cast_id": 24, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 8}, {"name": "Joe Grifasi", "character": "Bank Guard", "id": 4887, "credit_id": "52fe4241c3a36847f800fe51", "cast_id": 25, "profile_path": "/m3phT21garD58hEADUTl9RWWNrL.jpg", "order": 9}, {"name": "Philip Moon", "character": "Male Newscaster", "id": 1235, "credit_id": "52fe4241c3a36847f800fe55", "cast_id": 26, "profile_path": "/7IB8OtD4L3k3hxzrPeBSpucODyI.jpg", "order": 10}, {"name": "Jessica Tuck", "character": "Female Newscaster", "id": 156689, "credit_id": "52fe4241c3a36847f800fe59", "cast_id": 27, "profile_path": "/smsznskzjz5c6SbjEFW6kENGhho.jpg", "order": 11}, {"name": "Dennis Paladino", "character": "Crime Boss Moroni", "id": 162556, "credit_id": "52fe4241c3a36847f800fe5d", "cast_id": 28, "profile_path": "/b4KxhVh7ViqAKwzvJiyZlI2J8kl.jpg", "order": 12}, {"name": "Don 'The Dragon' Wilson", "character": "Gang Leader", "id": 106745, "credit_id": "53724abd0e0a2672f40020e7", "cast_id": 30, "profile_path": "/vBSGab4d62EVmQuMBYy3XGyN5hW.jpg", "order": 13}, {"name": "Bob Zmuda", "character": "", "id": 25336, "credit_id": "53724ad10e0a2672fb00211c", "cast_id": 31, "profile_path": "/jXC1XpcwRxYdNna5cKNeCZkqaVg.jpg", "order": 14}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fdd9", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.2, "runtime": 121}, "415": {"poster_path": "/79AYCcxw3kSKbhGpx1LiqaCAbwo.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 238207122, "overview": "Along with crime-fighting partner Robin and new recruit Batgirl, Batman battles the dual threat of frosty genius Mr. Freeze and homicidal horticulturalist Poison Ivy. Freeze plans to put Gotham City on ice, while Ivy tries to drive a wedge between the dynamic duo.", "video": false, "id": 415, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Batman & Robin", "tagline": "Strength. Courage. Honor. And loyalty.", "vote_count": 384, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118688", "adult": false, "backdrop_path": "/5ghcieKqH3YnDpAt261Pb7daUro.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1997-06-20", "popularity": 1.26782110361612, "original_title": "Batman & Robin", "budget": 125000000, "cast": [{"name": "George Clooney", "character": "Batman", "id": 1461, "credit_id": "52fe4241c3a36847f800feaf", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Michael Gough", "character": "Alfred Pennyworth", "id": 3796, "credit_id": "52fe4241c3a36847f800feb3", "cast_id": 5, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 1}, {"name": "Pat Hingle", "character": "Commissioner James Gordon", "id": 3798, "credit_id": "52fe4241c3a36847f800feb7", "cast_id": 6, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 2}, {"name": "Elle Macpherson", "character": "Julie Madison", "id": 5590, "credit_id": "52fe4241c3a36847f800febf", "cast_id": 8, "profile_path": "/tSweboUrdsJo4nIRIJx2PEvkuVZ.jpg", "order": 3}, {"name": "John Glover", "character": "Dr. Jason Woodrue", "id": 5589, "credit_id": "52fe4241c3a36847f800febb", "cast_id": 7, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 4}, {"name": "Vivica A. Fox", "character": "Ms. B. Haven", "id": 2535, "credit_id": "52fe4241c3a36847f800fec3", "cast_id": 9, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 5}, {"name": "Arnold Schwarzenegger", "character": "Dr. Victor Fries / Freeze", "id": 1100, "credit_id": "52fe4241c3a36847f800fef1", "cast_id": 17, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 6}, {"name": "Uma Thurman", "character": "Dr. Pamela Isley / Poison Ivy", "id": 139, "credit_id": "52fe4241c3a36847f800fef5", "cast_id": 20, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 7}, {"name": "Alicia Silverstone", "character": "Barbara Wilson / Batgirl", "id": 5588, "credit_id": "52fe4241c3a36847f800fef9", "cast_id": 22, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 8}, {"name": "Chris O'Donnell", "character": "Dick Grayson / Robin", "id": 5577, "credit_id": "52fe4241c3a36847f800fefd", "cast_id": 24, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 9}, {"name": "Robert Swenson", "character": "Bane", "id": 66813, "credit_id": "52fe4241c3a36847f800ff01", "cast_id": 25, "profile_path": "/cNuq7a8nCxRw9pNvQVVQoONkNsw.jpg", "order": 10}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f800fe9f", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 4.5, "runtime": 125}, "10992": {"poster_path": "/1RLlzNwnrpMMNFt71OVFAnJp6ww.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93375151, "overview": "When a professor develops a vaccine that eliminates human allergies to dogs, he unwittingly upsets the fragile balance of power between cats and dogs and touches off an epic battle for pet supremacy. The fur flies as the feline faction, led by Mr. Tinkles, squares off against wide-eyed puppy Lou and his canine cohorts.", "video": false, "id": 10992, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cats & Dogs", "tagline": "Things Are Gonna Get Hairy!", "vote_count": 72, "homepage": "http://catsanddogsmovie.warnerbros.com/cmp/main.html", "belongs_to_collection": {"backdrop_path": "/bYM1XFABSpy0QtAEzr7dks8QRWY.jpg", "poster_path": "/mm56m8wd2BBm94FwlelT2fNl6n1.jpg", "id": 87014, "name": "Cats & Dogs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0239395", "adult": false, "backdrop_path": "/2GoKwjA0K7b3BnsvBXwm68PkaJk.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Mad Chance", "id": 1757}, {"name": "Zide-Perry Productions", "id": 3169}, {"name": "BenderSpink", "id": 6363}], "release_date": "2001-07-04", "popularity": 1.37216222761985, "original_title": "Cats & Dogs", "budget": 60000000, "cast": [{"name": "Jeff Goldblum", "character": "Professor Brody", "id": 4785, "credit_id": "52fe43de9251416c7502142d", "cast_id": 1, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 0}, {"name": "Elizabeth Perkins", "character": "Mrs. Brody", "id": 20, "credit_id": "52fe43de9251416c75021431", "cast_id": 2, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 1}, {"name": "Alexander Pollock", "character": "Scotty Brody", "id": 67817, "credit_id": "52fe43de9251416c75021435", "cast_id": 3, "profile_path": "/6GPVGBkPidrKFsardUj51K39SGx.jpg", "order": 2}, {"name": "Miriam Margolyes", "character": "Sophie the Castle Maid", "id": 6199, "credit_id": "52fe43de9251416c75021439", "cast_id": 4, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 3}], "directors": [{"name": "Lawrence Guterman", "department": "Directing", "job": "Director", "credit_id": "52fe43de9251416c7502143f", "profile_path": "/txLsjc2oiqHzOmjdm4MG637SCdf.jpg", "id": 64191}], "vote_average": 4.9, "runtime": 87}, "205220": {"poster_path": "/6BTXHupSPkrwsoz4Br6qwwSVmhj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 100129872, "overview": "A woman searches for her adult son, who was taken away from her decades ago when she was forced to live in a convent.", "video": false, "id": 205220, "genres": [{"id": 18, "name": "Drama"}], "title": "Philomena", "tagline": "These two unlikely companions are on a journey to find her long lost son.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2431286", "adult": false, "backdrop_path": "/1RTiQXeHoEMXkZNWaB8W5uaEZ2.jpg", "production_companies": [{"name": "Baby Cow Productions", "id": 1219}, {"name": "BBC Films", "id": 288}, {"name": "Magnolia Mae Films", "id": 18188}, {"name": "Path\u00e9", "id": 7981}, {"name": "Yucaipa Films", "id": 12005}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2013-11-27", "popularity": 0.755905361187884, "original_title": "Philomena", "budget": 12000000, "cast": [{"name": "Judi Dench", "character": "Philomena Lee", "id": 5309, "credit_id": "52fe4d04c3a368484e1d27b3", "cast_id": 14, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 0}, {"name": "Steve Coogan", "character": "Martin Sixsmith", "id": 4581, "credit_id": "52fe4d04c3a368484e1d27b7", "cast_id": 15, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 1}, {"name": "Michelle Fairley", "character": "Sally Mitchell", "id": 20057, "credit_id": "52fe4d04c3a368484e1d27bb", "cast_id": 16, "profile_path": "/u7EDh4RuXnK5PykiNAT3oly6sf9.jpg", "order": 2}, {"name": "Mare Winningham", "character": "Mary", "id": 51544, "credit_id": "52fe4d04c3a368484e1d27bf", "cast_id": 17, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 3}, {"name": "Anna Maxwell Martin", "character": "Jane", "id": 29236, "credit_id": "52fe4d04c3a368484e1d27c3", "cast_id": 18, "profile_path": "/gUJuwFUTNaj7U2mC3DBe8DaYuuX.jpg", "order": 4}, {"name": "Simone Lahbib", "character": "Kate Sixsmith", "id": 218269, "credit_id": "52fe4d04c3a368484e1d27cb", "cast_id": 20, "profile_path": "/wXXe75Gu7IwMMT7hyntXGSMloLj.jpg", "order": 6}, {"name": "Sophie Kennedy Clark", "character": "Young Philomena", "id": 1151957, "credit_id": "52fe4d04c3a368484e1d27cf", "cast_id": 21, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 7}, {"name": "Charles Edwards", "character": "David", "id": 281527, "credit_id": "52fe4d04c3a368484e1d27d3", "cast_id": 22, "profile_path": "/qcAysQnmu7Pi96IV85u4YjgqzkQ.jpg", "order": 8}, {"name": "Sean Mahon", "character": "Michael Hess", "id": 117165, "credit_id": "52fe4d04c3a368484e1d27d7", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Amy McAllister", "character": "Sister Anunciata", "id": 1277228, "credit_id": "52fe4d04c3a368484e1d27db", "cast_id": 25, "profile_path": "/6HGyFZSC5jl1Zkvu1cmqLZh1kDW.jpg", "order": 10}, {"name": "Cathy Belton", "character": "Sister Claire", "id": 63359, "credit_id": "52fe4d04c3a368484e1d27df", "cast_id": 26, "profile_path": "/qgPJ7zGv6rOwE4Bf1um0RyAs72P.jpg", "order": 11}, {"name": "Kate Fleetwood", "character": "Young Sister Hildegarde", "id": 178630, "credit_id": "52fe4d04c3a368484e1d27e3", "cast_id": 27, "profile_path": "/z3nIZxpSzdq0R11uABD5gmvCuob.jpg", "order": 12}, {"name": "Peter Hermann", "character": "Pete Olsson", "id": 50117, "credit_id": "52fe4d04c3a368484e1d27e7", "cast_id": 28, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 13}, {"name": "Charlie Murphy", "character": "Kathleen", "id": 1356630, "credit_id": "53fa4ab3c3a3687358003548", "cast_id": 38, "profile_path": "/m7Tq2K3iNPGJDyLVlI8PjDgkzYC.jpg", "order": 14}], "directors": [{"name": "Stephen Frears", "department": "Directing", "job": "Director", "credit_id": "52fe4d04c3a368484e1d2767", "profile_path": "/n95XJkCqkKkWqc2swPsqXYpxxaQ.jpg", "id": 3224}], "vote_average": 7.6, "runtime": 98}, "421": {"poster_path": "/1zRedSx2iLXFPVN6MdiQqTjerpn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34808403, "overview": "Wes Anderson\u2019s incisive quirky comedy build up stars complex characters like in \u2018The Royal Tenenbaums\u2019 with Bill Murray on in the leading role. An ocean adventure documentary film maker Zissou is put in all imaginable life situations and a tough life crisis as he attempts to make a new film about capturing the creature that caused him pain.", "video": false, "id": 421, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Life Aquatic With Steve Zissou", "tagline": "The deeper you go, the weirder life gets.", "vote_count": 201, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "tl", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0362270", "adult": false, "backdrop_path": "/x2EutNySnFRVrjOXsnGyj3HHvf7.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2004-12-10", "popularity": 1.13632285180385, "original_title": "The Life Aquatic With Steve Zissou", "budget": 50000000, "cast": [{"name": "Bill Murray", "character": "Steve Zissou", "id": 1532, "credit_id": "52fe4241c3a36847f8010025", "cast_id": 1, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Anjelica Huston", "character": "Eleanor Zissou", "id": 5657, "credit_id": "52fe4241c3a36847f801003b", "cast_id": 5, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 1}, {"name": "Cate Blanchett", "character": "Jane Winslett-Richardson", "id": 112, "credit_id": "52fe4241c3a36847f801003f", "cast_id": 6, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Klaus Daimler", "id": 5293, "credit_id": "52fe4241c3a36847f8010043", "cast_id": 7, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Ned Plimpton", "id": 887, "credit_id": "52fe4241c3a36847f8010047", "cast_id": 8, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Jeff Goldblum", "character": "Alistair Hennessey", "id": 4785, "credit_id": "52fe4241c3a36847f801004b", "cast_id": 9, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 5}, {"name": "Michael Gambon", "character": "Oseary Drakoulias", "id": 5658, "credit_id": "52fe4241c3a36847f801004f", "cast_id": 10, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Noah Taylor", "character": "Vladimir Wolodarsky", "id": 1284, "credit_id": "52fe4241c3a36847f8010053", "cast_id": 11, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 7}, {"name": "Bud Cort", "character": "Bill Ubell", "id": 4971, "credit_id": "52fe4241c3a36847f8010057", "cast_id": 12, "profile_path": "/kI7N8eeX8TBWBGFQCZWfKZGbrZ6.jpg", "order": 8}, {"name": "Seu Jorge", "character": "Pel\u00e9 dos Santos", "id": 5659, "credit_id": "52fe4241c3a36847f801005b", "cast_id": 13, "profile_path": "/ggUYDS85gpTLAXaDzznLw2mpTfS.jpg", "order": 9}, {"name": "Matthew Gray Gubler", "character": "Intern 1", "id": 5661, "credit_id": "52fe4241c3a36847f801005f", "cast_id": 15, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 10}, {"name": "Antonio Monda", "character": "Festival Director", "id": 5662, "credit_id": "52fe4241c3a36847f8010063", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Isabella Blow", "character": "Antonia Cook", "id": 5663, "credit_id": "52fe4241c3a36847f8010067", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Seymour Cassel", "character": "Esteban", "id": 5950, "credit_id": "52fe4241c3a36847f80100c5", "cast_id": 33, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 13}, {"name": "Rob Cohen", "character": "Anne-Marie Sakowitz", "id": 18878, "credit_id": "52fe4241c3a36847f80100c9", "cast_id": 34, "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "order": 14}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f801002b", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.1, "runtime": 119}, "422": {"poster_path": "/5pQlc8dp5dXzWg1yM70DZrsDpOl.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "With 8 \u00bd Frederico Fellini leaves a self-portrait where dreams and reality are a mix. With help from a most excellent cast and unique scenery this self reflecting film is one of his master works.", "video": false, "id": 422, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "8\u00bd", "tagline": "A picture that goes beyond what men think about - because no man ever thought about it in quite this way!", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0056801", "adult": false, "backdrop_path": "/4v3TyHFbKY42g9bFiEZXUIQHpAR.jpg", "production_companies": [{"name": "Cineriz", "id": 9387}, {"name": "Francinex", "id": 10882}], "release_date": "1963-02-15", "popularity": 0.796498709677972, "original_title": "8\u00bd", "budget": 0, "cast": [{"name": "Marcello Mastroianni", "character": "Guido Anselmi", "id": 5676, "credit_id": "52fe4241c3a36847f80100f7", "cast_id": 1, "profile_path": "/lxlTGslplgT3ao3J2whahc7fDZJ.jpg", "order": 0}, {"name": "Claudia Cardinale", "character": "Claudia", "id": 4959, "credit_id": "52fe4241c3a36847f80100fb", "cast_id": 2, "profile_path": "/tV3oboOm0Iix0AEtQKGPnPE2hbF.jpg", "order": 1}, {"name": "Anouk Aim\u00e9e", "character": "Luisa Anselmi", "id": 5682, "credit_id": "52fe4241c3a36847f801013b", "cast_id": 13, "profile_path": "/vLGlUZvzffKEJ2zB943Qx0PWgPD.jpg", "order": 2}, {"name": "Sandra Milo", "character": "Carla", "id": 5683, "credit_id": "52fe4241c3a36847f801013f", "cast_id": 14, "profile_path": "/xMsgxhrNX27Hot5FJ5aaqvGYTKU.jpg", "order": 3}, {"name": "Rossella Falk", "character": "Rossella", "id": 5684, "credit_id": "52fe4241c3a36847f8010143", "cast_id": 15, "profile_path": "/acyIHzPCYELbC9coAXYzgsoNRYN.jpg", "order": 4}, {"name": "Barbara Steele", "character": "Gloria Morin", "id": 5685, "credit_id": "52fe4241c3a36847f8010147", "cast_id": 16, "profile_path": "/jrxCN9GxreD5W3Xv0OGofkidNm3.jpg", "order": 5}, {"name": "Madeleine Lebeau", "character": "Madeleine, l'attrice francese", "id": 4116, "credit_id": "52fe4241c3a36847f801014b", "cast_id": 17, "profile_path": "/tYUnGiQEBJLG1OfeqHvdcANgm2I.jpg", "order": 6}, {"name": "Caterina Boratto", "character": "La signora misteriosa", "id": 5686, "credit_id": "52fe4241c3a36847f801014f", "cast_id": 18, "profile_path": "/1Wh2iwtM4cnZcvWx1WERc5plA8M.jpg", "order": 7}, {"name": "Eddra Gale", "character": "La Saraghina", "id": 5687, "credit_id": "52fe4241c3a36847f8010153", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Guido Alberti", "character": "Pace, il produttore", "id": 5688, "credit_id": "52fe4241c3a36847f8010157", "cast_id": 20, "profile_path": "/nJ1noc5YGOMdrfSaSha5NnvCMbF.jpg", "order": 9}], "directors": [{"name": "Federico Fellini", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f8010101", "profile_path": "/7t3sWBVdenUbZnoFAPRpBAGngQ7.jpg", "id": 4415}], "vote_average": 8.1, "runtime": 138}, "423": {"poster_path": "/iunmxWkOi7Vk17Ob3G2HwwjgHsr.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "PL", "name": "Poland"}], "revenue": 120072577, "overview": "The Pianist is a film adapted from the biography of Wladyslaw Szpilman. A Jewish-Polish pianist who during the second world war lived and hid miraculously in Warsaw after having gone through a terrible tragedy. A film from Roman Polanski.", "video": false, "id": 423, "genres": [{"id": 18, "name": "Drama"}], "title": "The Pianist", "tagline": "Music was his passion. Survival was his masterpiece.", "vote_count": 384, "homepage": "http://www.thepianistmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253474", "adult": false, "backdrop_path": "/xUR95VFV1UTyzS1C8Lj06hi2n2M.jpg", "production_companies": [{"name": "Mainstream S.A.", "id": 271}, {"name": "R.P. Productions", "id": 355}, {"name": "Heritage Films", "id": 260}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Runteam", "id": 31087}, {"name": "Canal+", "id": 5358}, {"name": "StudioCanal", "id": 694}, {"name": "Bac Films", "id": 208}, {"name": "Canal+ Polska", "id": 6476}, {"name": "Telewizja Polska (TVP)", "id": 19150}, {"name": "Agencja Produkcji Filmowej", "id": 266}, {"name": "Beverly Detroit", "id": 267}, {"name": "Interscope Communications", "id": 10201}], "release_date": "2002-09-24", "popularity": 2.77777025427314, "original_title": "The Pianist", "budget": 35000000, "cast": [{"name": "Adrien Brody", "character": "Wladyslaw Szpilman", "id": 3490, "credit_id": "52fe4241c3a36847f80101af", "cast_id": 8, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Thomas Kretschmann", "character": "Captain Wilm Hosenfeld", "id": 3491, "credit_id": "52fe4241c3a36847f80101b3", "cast_id": 9, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 1}, {"name": "Frank Finlay", "character": "Father", "id": 6637, "credit_id": "52fe4241c3a36847f80101b7", "cast_id": 10, "profile_path": "/esHCgg80H7gpUSClYclyHsksHij.jpg", "order": 2}, {"name": "Maureen Lipman", "character": "Mother", "id": 6638, "credit_id": "52fe4241c3a36847f80101bb", "cast_id": 11, "profile_path": "/cbZwHAkUZbZGr8HZDhWv1vNMlLC.jpg", "order": 3}, {"name": "Emilia Fox", "character": "Dorota", "id": 6639, "credit_id": "52fe4241c3a36847f80101bf", "cast_id": 12, "profile_path": "/xbOxrak2VaQTVX2pNdqRG3NZvK2.jpg", "order": 4}, {"name": "Ed Stoppard", "character": "Henryk", "id": 6640, "credit_id": "52fe4241c3a36847f80101c3", "cast_id": 13, "profile_path": "/rh4sgErzsFSvTIWT7GmhneZmV0Z.jpg", "order": 5}, {"name": "Julia Rayner", "character": "Regina", "id": 6641, "credit_id": "52fe4241c3a36847f80101c7", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Jessica Kate Meyer", "character": "Halina", "id": 6642, "credit_id": "52fe4241c3a36847f80101cb", "cast_id": 15, "profile_path": "/mUBmiVxXuuWqlqShe4TfPOixgZm.jpg", "order": 7}, {"name": "Micha\u0142 \u017bebrowski", "character": "Jurek", "id": 6643, "credit_id": "52fe4241c3a36847f80101cf", "cast_id": 16, "profile_path": "/ewMQFdAByOfQsgHIB5mEBVyOxxL.jpg", "order": 8}, {"name": "Wanja Mues", "character": "SS Slapping Father", "id": 6644, "credit_id": "52fe4241c3a36847f80101d3", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Richard Ridings", "character": "Mr. Lipa", "id": 6645, "credit_id": "52fe4241c3a36847f80101d7", "cast_id": 18, "profile_path": "/zzznosGBL8uEBUwqZHKcKsVZzWe.jpg", "order": 10}, {"name": "Nomi Sharron", "character": "Feather Woman", "id": 6646, "credit_id": "52fe4241c3a36847f80101db", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Detlev von Wangenheim", "character": "SS Officer", "id": 6647, "credit_id": "52fe4241c3a36847f80101df", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Krzysztof Pieczy\u0144ski", "character": "Marek G\u0119bczy\u0144ski", "id": 24524, "credit_id": "52fe4241c3a36847f80101ef", "cast_id": 23, "profile_path": "/9kZ3mwDkaOqjNlF9KPkvAXfDHSJ.jpg", "order": 13}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f801018d", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 7.7, "runtime": 150}, "424": {"poster_path": "/yPisjyLweCl1tbgwgtzBCNCBle.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 321265768, "overview": "Told from the perspective of businessman Oskar Schindler who saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory. Schindler\u2019s List is based on a true story, illustrated in black and white and controversially filmed in many original locations.", "video": false, "id": 424, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Schindler's List", "tagline": "Whoever saves one life, saves the world entire.", "vote_count": 1359, "homepage": "http://www.schindlerslist.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108052", "adult": false, "backdrop_path": "/rIpSszng8P0DL0TimSzZbpfnvh1.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1993-11-29", "popularity": 1.93662411953173, "original_title": "Schindler's List", "budget": 22000000, "cast": [{"name": "Liam Neeson", "character": "Oskar Schindler", "id": 3896, "credit_id": "52fe4242c3a36847f8010299", "cast_id": 14, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Itzhak Stern", "id": 2282, "credit_id": "52fe4242c3a36847f801029d", "cast_id": 15, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Amon Goeth", "id": 5469, "credit_id": "52fe4242c3a36847f80102a1", "cast_id": 16, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Caroline Goodall", "character": "Emilie Schindler", "id": 6692, "credit_id": "52fe4242c3a36847f80102a5", "cast_id": 17, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 3}, {"name": "Jonathan Sagall", "character": "Poldek Pfefferberg", "id": 6693, "credit_id": "52fe4242c3a36847f80102a9", "cast_id": 18, "profile_path": "/5OzTeSMXIxYmlelx0Pon2bEKVzM.jpg", "order": 4}, {"name": "Embeth Davidtz", "character": "Helen Hirsch", "id": 6368, "credit_id": "52fe4242c3a36847f80102ad", "cast_id": 19, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 5}, {"name": "Malgoscha Gebel", "character": "Victoria Klonowska", "id": 6694, "credit_id": "52fe4242c3a36847f80102b1", "cast_id": 20, "profile_path": "/lzlC2HAuPyKoVZ6drxv8K5UYHvV.jpg", "order": 6}, {"name": "Shmuel Levy", "character": "Wilek Chilowicz", "id": 6695, "credit_id": "52fe4242c3a36847f80102b5", "cast_id": 21, "profile_path": "/pbtXOAVQBTRZAxaiEYWSqGD9CNz.jpg", "order": 7}, {"name": "Mark Ivanir", "character": "Marcel Goldberg", "id": 6696, "credit_id": "52fe4242c3a36847f80102b9", "cast_id": 22, "profile_path": "/fFfosXJqRNBMU3wg2WrO3bCnom7.jpg", "order": 8}, {"name": "B\u00e9atrice Macola", "character": "Ingrid", "id": 6697, "credit_id": "52fe4242c3a36847f80102bd", "cast_id": 23, "profile_path": "/uEwED6trd6JTsAFREjA2aiahtZQ.jpg", "order": 9}, {"name": "Andrzej Seweryn", "character": "Julian Scherner", "id": 2829, "credit_id": "52fe4242c3a36847f80102c1", "cast_id": 24, "profile_path": "/aSFdg0xq0qZaFnbuAAg9iGr021d.jpg", "order": 10}, {"name": "Friedrich von Thun", "character": "Rolf Czurda", "id": 6698, "credit_id": "52fe4242c3a36847f80102c5", "cast_id": 25, "profile_path": "/30nXwt4SJn2tNNtuebP0g2ct9Xu.jpg", "order": 11}, {"name": "Krzysztof Luft", "character": "Herman Toffel", "id": 6699, "credit_id": "52fe4242c3a36847f80102c9", "cast_id": 26, "profile_path": "/9xwxhiyUs5nDNXfWVxYPwhLTDuu.jpg", "order": 12}, {"name": "Harry Nehring", "character": "Leo John", "id": 6700, "credit_id": "52fe4242c3a36847f80102cd", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Norbert Weisser", "character": "Albert Hujar", "id": 6701, "credit_id": "52fe4242c3a36847f80102d1", "cast_id": 28, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 14}, {"name": "Adi Nitzan", "character": "Mila Pfefferberg", "id": 6702, "credit_id": "52fe4242c3a36847f80102d5", "cast_id": 29, "profile_path": "/fjKisyT8h3N71ALA9uJQE8nLajK.jpg", "order": 15}, {"name": "Michael Schneider", "character": "Juda Dresner", "id": 6703, "credit_id": "52fe4242c3a36847f80102d9", "cast_id": 30, "profile_path": "/137g7xVsVD5S54TblICj9BOtDBo.jpg", "order": 16}, {"name": "Miri Fabian", "character": "Chaja Dresner", "id": 6704, "credit_id": "52fe4242c3a36847f80102dd", "cast_id": 31, "profile_path": "/sABX40rZhFBxsOUEhRc4Qrc8leo.jpg", "order": 17}, {"name": "Anna Mucha", "character": "Danka Dresner", "id": 6705, "credit_id": "52fe4242c3a36847f80102e1", "cast_id": 32, "profile_path": "/hY977SC8Rus5TuLHsBmK6h9B3O7.jpg", "order": 18}, {"name": "Albert Misak", "character": "Mordecai Wulkan", "id": 6706, "credit_id": "52fe4242c3a36847f80102e5", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Aldona Grochal", "character": "Mrs. Nussbaum", "id": 6708, "credit_id": "52fe4242c3a36847f80102ed", "cast_id": 35, "profile_path": "/xZdsCB88feOfHzr0wiziMJlV4De.jpg", "order": 21}, {"name": "Jacek W\u00f3jcicki", "character": "Henry Rosner", "id": 6709, "credit_id": "52fe4242c3a36847f80102f1", "cast_id": 36, "profile_path": "/9OoR4MIdODwRKixfn0AZVmRmc49.jpg", "order": 22}, {"name": "Beata Paluch", "character": "Manci Rosner", "id": 6710, "credit_id": "52fe4242c3a36847f80102f5", "cast_id": 37, "profile_path": "/wmjumiiVDrpEvH3xHGG260dYhRX.jpg", "order": 23}, {"name": "Piotr Polk", "character": "Leo Rosner", "id": 6711, "credit_id": "52fe4242c3a36847f80102f9", "cast_id": 38, "profile_path": "/eer1pzfxy05hp2S59n2UUpyZYyr.jpg", "order": 24}, {"name": "Ezra Dagan", "character": "Rabbi Menasha Lewartow", "id": 6712, "credit_id": "52fe4242c3a36847f80102fd", "cast_id": 39, "profile_path": "/mFVXAyWB1EZhYaYPB1wJccbLnu3.jpg", "order": 25}, {"name": "Uri Avrahami", "character": "Chaim Nowak", "id": 1317875, "credit_id": "536cb024c3a368122000b20c", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Elina L\u00f6wensohn", "character": "Diana Reiter", "id": 17257, "credit_id": "536cc0dac3a36839c10017e1", "cast_id": 48, "profile_path": "/enJyuf5k0QTOiMEBFHf8dePZUTV.jpg", "order": 27}, {"name": "Michael Gordon", "character": "Mr.Nussbaum", "id": 123401, "credit_id": "549fff73c3a3680b27009099", "cast_id": 60, "profile_path": "/guAGvZgb2fqgb6js0y26zFOyEWd.jpg", "order": 28}, {"name": "Magdalena Komornicka", "character": "Goeth's Girl", "id": 1448565, "credit_id": "551cb9c99251416a1e0015df", "cast_id": 61, "profile_path": null, "order": 29}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f801024d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.8, "runtime": 195}, "425": {"poster_path": "/zpaQwR0YViPd83bx1e559QyZ35i.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 383257136, "overview": "With the impending ice age almost upon them, a mismatched trio of prehistoric critters -- Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth -- find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends. But when enemies attack, their quest takes on far nobler aims..", "video": false, "id": 425, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age", "tagline": "They came. They thawed. They conquered.", "vote_count": 1296, "homepage": "http://www.iceagemovie.com/original/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0268380", "adult": false, "backdrop_path": "/oDqbewoFuIEWA7UWurole6MzDGn.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 26162}], "release_date": "2002-03-15", "popularity": 2.01724089489978, "original_title": "Ice Age", "budget": 59000000, "cast": [{"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe4242c3a36847f801036f", "cast_id": 11, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe4242c3a36847f8010373", "cast_id": 12, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe4242c3a36847f8010377", "cast_id": 13, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Goran Vi\u0161nji\u0107", "character": "Soto (voice)", "id": 5725, "credit_id": "52fe4242c3a36847f801037b", "cast_id": 14, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 3}, {"name": "Jack Black", "character": "Zeke (voice)", "id": 70851, "credit_id": "52fe4242c3a36847f801037f", "cast_id": 15, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 4}, {"name": "Cedric the Entertainer", "character": "Carl (voice)", "id": 5726, "credit_id": "52fe4242c3a36847f8010383", "cast_id": 16, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 5}, {"name": "Stephen Root", "character": "Rhino / Start (voice)", "id": 17401, "credit_id": "52fe4242c3a36847f8010387", "cast_id": 17, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Saber-Toothed Tiger (voice)", "id": 5727, "credit_id": "52fe4242c3a36847f801038b", "cast_id": 18, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Alan Tudyk", "character": "Lenny / Oscar / Dab (voice)", "id": 21088, "credit_id": "52fe4242c3a36847f801038f", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 8}, {"name": "Lorri Bagley", "character": "Jennifer (voice)", "id": 60019, "credit_id": "52fe4242c3a36847f8010393", "cast_id": 20, "profile_path": "/2tLdetmNFCt7PC969FlLXhzIU5A.jpg", "order": 9}, {"name": "Jane Krakowski", "character": "Rachel (voice)", "id": 13636, "credit_id": "52fe4242c3a36847f8010397", "cast_id": 21, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 10}, {"name": "Peter Ackerman", "character": "Dodo / Macrauchenia (voice)", "id": 5717, "credit_id": "5516446ac3a3683489000acb", "cast_id": 22, "profile_path": "/zlWcU7pKd9904zWe2207Xu3sBrn.jpg", "order": 11}, {"name": "P.J. Benjamin", "character": "Dodo (voice)", "id": 1446460, "credit_id": "551644c7c3a368348f0009d0", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Josh Hamilton", "character": "Dodo / Scrat (voice)", "id": 52419, "credit_id": "551645239251413eb2000afc", "cast_id": 25, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 14}, {"name": "Chris Wedge", "character": "Glyptodon (voice)", "id": 5713, "credit_id": "55164558c3a368347f000aca", "cast_id": 26, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 15}, {"name": "Denny Dillon", "character": "Glyptodont (voice)", "id": 59695, "credit_id": "551645809251413eb5000ad9", "cast_id": 27, "profile_path": "/rc67RDrAKtN0qWBkB2AzXAxztHr.jpg", "order": 16}, {"name": "Mitzi McCall", "character": "Baby Moeritherium (voice)", "id": 102794, "credit_id": "551645df9251414ec9000413", "cast_id": 28, "profile_path": "/bt7eQYLai0ForMF8AXGoo1FnX36.jpg", "order": 17}, {"name": "Dann Fink", "character": "Dodo (voice) (uncredited)", "id": 1446462, "credit_id": "551645fd9251413eb5000ae0", "cast_id": 29, "profile_path": null, "order": 18}], "directors": [{"name": "Chris Wedge", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f8010335", "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "id": 5713}, {"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f801033b", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.7, "runtime": 81}, "426": {"poster_path": "/obhM86qyv8RsE69XSMTtT9FdE0b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7311013, "overview": "A retired San Francisco detective suffering from acrophobia investigates the strange activities of an old friend's wife, all the while becoming dangerously obsessed with her.", "video": false, "id": 426, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Vertigo", "tagline": "Alfred Hitchcock engulfs you in a whirlpool of terror and tension!", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0052357", "adult": false, "backdrop_path": "/idbDJjoTQxLejUUkDJ0FNEim6FB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Alfred J. Hitchcock Productions", "id": 10715}], "release_date": "1958-05-28", "popularity": 1.12061529416277, "original_title": "Vertigo", "budget": 2479000, "cast": [{"name": "James Stewart", "character": "Det. John 'Scottie' Ferguson", "id": 854, "credit_id": "52fe4242c3a36847f8010403", "cast_id": 10, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "Kim Novak", "character": "Madeleine Elster/Judy Barton", "id": 5729, "credit_id": "52fe4242c3a36847f8010407", "cast_id": 11, "profile_path": "/dn2kQpgdMXPNprR2OYHCMCCFNns.jpg", "order": 1}, {"name": "Barbara Bel Geddes", "character": "Marjorie 'Midge' Wood", "id": 5730, "credit_id": "52fe4242c3a36847f801040b", "cast_id": 12, "profile_path": "/jGWjjtFiOZL1cmmMeeX8YIBwGzE.jpg", "order": 2}, {"name": "Tom Helmore", "character": "Gavin Elster", "id": 5731, "credit_id": "52fe4242c3a36847f801040f", "cast_id": 13, "profile_path": "/u9F8kGTLSHoTuQzSW23u8FqyAqq.jpg", "order": 3}, {"name": "Henry Jones", "character": "Coroner", "id": 5732, "credit_id": "52fe4242c3a36847f8010413", "cast_id": 14, "profile_path": "/hOO3CG2qUq6wvM4BkjtJ05kIU1C.jpg", "order": 4}, {"name": "Raymond Bailey", "character": "Scottie's doctor", "id": 5737, "credit_id": "52fe4242c3a36847f801042f", "cast_id": 19, "profile_path": "/f27gMhRJhKdC99Ti2cloU7P5fLs.jpg", "order": 5}, {"name": "Ellen Corby", "character": "Manager of McKittrick Hotel", "id": 5738, "credit_id": "52fe4242c3a36847f8010433", "cast_id": 20, "profile_path": "/sgVSpnL4dJ8d0Y273lonNM4GuHK.jpg", "order": 6}, {"name": "Konstantin Shayne", "character": "Pop Leibel", "id": 5739, "credit_id": "52fe4242c3a36847f8010437", "cast_id": 21, "profile_path": "/weol1S4IhCqmPJJ0wgnipesO9kf.jpg", "order": 7}, {"name": "Lee Patrick", "character": "Car owner mistaken for Madeleine", "id": 5740, "credit_id": "52fe4242c3a36847f801043b", "cast_id": 22, "profile_path": "/sRGpSavd3VNZpzywoQMeS1D1cxM.jpg", "order": 8}, {"name": "Bess Flowers", "character": "Diner at Ernie's", "id": 121323, "credit_id": "52fe4242c3a36847f8010445", "cast_id": 24, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 9}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f80103cf", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.4, "runtime": 128}, "8619": {"poster_path": "/4o4JyEQldHQiqJn0BBRFppDmI65.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 212011111, "overview": "After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.", "video": false, "id": 8619, "genres": [{"id": 12, "name": "Adventure"}], "title": "Master and Commander: The Far Side of the World", "tagline": "The Courage to Do the Impossible Lies in the Hearts of Men", "vote_count": 232, "homepage": "http://www.masterandcommanderthefarsideoftheworld.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0311113", "adult": false, "backdrop_path": "/68sGkVSVxuFw7J9H6sk4GZfYZ1q.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Miramax Films", "id": 14}, {"name": "Universal Pictures", "id": 33}, {"name": "Samuel Goldwyn Films", "id": 9118}], "release_date": "2003-11-13", "popularity": 1.33030174791689, "original_title": "Master and Commander: The Far Side of the World", "budget": 150000000, "cast": [{"name": "Russell Crowe", "character": "Captain Jack Aubrey", "id": 934, "credit_id": "52fe44b1c3a36847f80a493d", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Dr. Stephen Maturin", "id": 6162, "credit_id": "52fe44b1c3a36847f80a4941", "cast_id": 2, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "James D'Arcy", "character": "1st Lt. Tom Pullings", "id": 19655, "credit_id": "52fe44b1c3a36847f80a4945", "cast_id": 3, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 2}, {"name": "Billy Boyd", "character": "Barrent Bonden", "id": 1329, "credit_id": "52fe44b1c3a36847f80a4949", "cast_id": 4, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 3}, {"name": "Joseph Morgan", "character": "William Warley, Cpt. of Mizzentop", "id": 79505, "credit_id": "52fe44b1c3a36847f80a499b", "cast_id": 18, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 4}, {"name": "Edward Woodall", "character": "2nd Lt. William Mowett", "id": 219496, "credit_id": "52fe44b1c3a36847f80a499f", "cast_id": 19, "profile_path": "/x1Fk0tANw7yzHOSJAIojmRoZRAv.jpg", "order": 5}, {"name": "Chris Larkin", "character": "Capt. Howard", "id": 25658, "credit_id": "52fe44b1c3a36847f80a49a3", "cast_id": 20, "profile_path": "/kjVq9FK96gIwcfDxyB3ILMIjfvh.jpg", "order": 6}, {"name": "Max Pirkis", "character": "Blakeney", "id": 215661, "credit_id": "52fe44b1c3a36847f80a49a7", "cast_id": 21, "profile_path": "/9NJw1YV4fcOTYQ8UOuIynmbu2rD.jpg", "order": 7}, {"name": "Jack Randall", "character": "Boyle", "id": 1077820, "credit_id": "52fe44b1c3a36847f80a49ab", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Max Benitz", "character": "Calamy", "id": 1032202, "credit_id": "52fe44b1c3a36847f80a49af", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Lee Ingleby", "character": "Hollom", "id": 229672, "credit_id": "52fe44b1c3a36847f80a49b3", "cast_id": 24, "profile_path": "/x2OW4t8CerOMObV1opNZ2rmGto1.jpg", "order": 10}, {"name": "Richard Pates", "character": "Williamson", "id": 1077821, "credit_id": "52fe44b1c3a36847f80a49b7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Robert Pugh", "character": "Mr. Allen", "id": 47643, "credit_id": "52fe44b1c3a36847f80a49bb", "cast_id": 26, "profile_path": "/vnqBCADoEnxQBD5e0GOCbUGrLeM.jpg", "order": 12}, {"name": "Richard McCabe", "character": "Mr. Higgins", "id": 7025, "credit_id": "52fe44b1c3a36847f80a49bf", "cast_id": 27, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 13}, {"name": "Ian Mercer", "character": "Mr. Hollar", "id": 199975, "credit_id": "52fe44b1c3a36847f80a49c3", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Tony Dolan", "character": "Mr. Lamb", "id": 1077822, "credit_id": "52fe44b1c3a36847f80a49c7", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "David Threlfall", "character": "Preserved Killick", "id": 59081, "credit_id": "52fe44b1c3a36847f80a49cb", "cast_id": 30, "profile_path": "/qhjrbokMi1DYcrL4B8YuIr3IT5y.jpg", "order": 16}, {"name": "Bryan Dick", "character": "Joseph Nagle", "id": 47703, "credit_id": "52fe44b1c3a36847f80a49cf", "cast_id": 31, "profile_path": "/1kBfn4B2bELdID5af1DYK2AU73M.jpg", "order": 17}, {"name": "George Innes", "character": "Joe Plaice", "id": 26131, "credit_id": "52fe44b1c3a36847f80a49d3", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "William Mannering", "character": "Faster Doudle", "id": 134692, "credit_id": "52fe44b1c3a36847f80a49d7", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Patrick Gallagher", "character": "Awkward Davies", "id": 17837, "credit_id": "52fe44b1c3a36847f80a49db", "cast_id": 34, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 20}, {"name": "Alex Palmer", "character": "Nehemiah Slade", "id": 2060, "credit_id": "52fe44b1c3a36847f80a49df", "cast_id": 35, "profile_path": "/leOXZpYLgCFgQoBb6vuHYoPbA5J.jpg", "order": 21}, {"name": "Mark Lewis Jones", "character": "Mr. Hogg", "id": 185460, "credit_id": "52fe44b1c3a36847f80a49e3", "cast_id": 36, "profile_path": "/qVpGXjzHtgFzVLFNMyNUZ6qsoDv.jpg", "order": 22}, {"name": "John DeSantis", "character": "Padeen", "id": 43299, "credit_id": "52fe44b1c3a36847f80a49e7", "cast_id": 37, "profile_path": "/vRAZhbcTbS56k5CpfO1NckaJf9N.jpg", "order": 23}, {"name": "Ousmane Thiam", "character": "Black Bill", "id": 1077823, "credit_id": "52fe44b1c3a36847f80a49eb", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Thierry Segall", "character": "French Captain", "id": 1077824, "credit_id": "52fe44b1c3a36847f80a49ef", "cast_id": 39, "profile_path": null, "order": 25}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe44b1c3a36847f80a494f", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 6.6, "runtime": 138}, "429": {"poster_path": "/v6TUio0GgIsK9pbW7FfFArbyECb.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6000000, "overview": "While the Civil War rages between the Union and the Confederacy, three men \u2013 a quiet loner, a ruthless hit man and a Mexican bandit \u2013 comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.", "video": false, "id": 429, "genres": [{"id": 37, "name": "Western"}], "title": "The Good, the Bad and the Ugly", "tagline": "For three men the Civil War wasn't hell. It was practice.", "vote_count": 882, "homepage": "http://www.mgm.com/view/Movie/766/The-Good,-the-Bad-and-the-Ugly/", "belongs_to_collection": {"backdrop_path": "/a4Lqp3QdEWF6zh740VpBg6yvTZA.jpg", "poster_path": "/lzUZptOL6iQqulMvhB2jfT5GepD.jpg", "id": 48317, "name": "The Man With No Name Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0060196", "adult": false, "backdrop_path": "/xGC2fY5KFmtuXnsuQwYQKFOLZFy.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Produzioni Europee Associati (PEA)", "id": 7508}, {"name": "Arturo Gonz\u00e1lez Producciones Cinematogr\u00e1ficas S.A.", "id": 42498}], "release_date": "1966-12-23", "popularity": 1.26627730466351, "original_title": "Il buono, il brutto, il cattivo", "budget": 1200000, "cast": [{"name": "Eli Wallach", "character": "Tuco", "id": 3265, "credit_id": "52fe4242c3a36847f80105d7", "cast_id": 6, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Blondie", "id": 190, "credit_id": "52fe4242c3a36847f80105db", "cast_id": 7, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Lee Van Cleef", "character": "Sentenza/Angel Eyes", "id": 4078, "credit_id": "52fe4242c3a36847f80105df", "cast_id": 8, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 2}, {"name": "Aldo Giuffr\u00e8", "character": "Alcoholic Union Captain", "id": 5813, "credit_id": "52fe4242c3a36847f80105e3", "cast_id": 9, "profile_path": "/aBp4PnfO43mTgCGg0pjmfhHrfdZ.jpg", "order": 3}, {"name": "Luigi Pistilli", "character": "Father Pablo Ramirez", "id": 5814, "credit_id": "52fe4242c3a36847f80105e7", "cast_id": 10, "profile_path": "/dUgRQX1Ge6JRYZWtFJ2vjAXT8Vi.jpg", "order": 4}, {"name": "Rada Rassimov", "character": "Maria", "id": 5815, "credit_id": "52fe4242c3a36847f80105eb", "cast_id": 11, "profile_path": "/beRCYALnzPi2AJwZSHUyTsLjoi.jpg", "order": 5}, {"name": "John Bartha", "character": "Sheriff", "id": 5816, "credit_id": "52fe4242c3a36847f80105ef", "cast_id": 12, "profile_path": "/6wqlakZTLHovTAqGvMwIUiPrQD8.jpg", "order": 6}, {"name": "Livio Lorenzon", "character": "Baker", "id": 5817, "credit_id": "52fe4242c3a36847f80105f3", "cast_id": 13, "profile_path": "/5fdlXj9HuTS5pJnHb0Q4BYosr6c.jpg", "order": 7}, {"name": "Antonio Casale", "character": "Jackson/Bill Carson", "id": 5818, "credit_id": "52fe4242c3a36847f80105f7", "cast_id": 14, "profile_path": "/iqa0pritPmbuNpRK94IpgsV7l0c.jpg", "order": 8}, {"name": "Angelo Novi", "character": "Monk", "id": 5819, "credit_id": "52fe4242c3a36847f80105fb", "cast_id": 15, "profile_path": "/6KgveqDRUbNtwiNNiQ0YSqthBQM.jpg", "order": 9}, {"name": "Jos\u00e9 Terr\u00f3n", "character": "Thomas 'Shorty' Larson (uncredited)", "id": 5843, "credit_id": "52fe4242c3a36847f8010629", "cast_id": 23, "profile_path": "/ndbCL8Cbg2xzTWO3nCmAsGkKegV.jpg", "order": 10}, {"name": "Enzo Petito", "character": "Storekeeper", "id": 1077276, "credit_id": "52fe4242c3a36847f8010639", "cast_id": 26, "profile_path": "/yN9lfTfpf3922Ws9M0rknb5Iz2M.jpg", "order": 11}, {"name": "Claudio Scarchilli", "character": "Mexican Peon", "id": 1077277, "credit_id": "52fe4242c3a36847f801063d", "cast_id": 27, "profile_path": "/42at3KFYvLiPG0ub14dXuFpoxcy.jpg", "order": 12}, {"name": "Sandro Scarchilli", "character": "Mexican Peon", "id": 1077278, "credit_id": "52fe4242c3a36847f8010641", "cast_id": 28, "profile_path": "/ojDlUTDQm5af57oWxSRdpx44uuW.jpg", "order": 13}, {"name": "Benito Stefanelli", "character": "Member of Angel Eyes' Gange", "id": 4661, "credit_id": "52fe4242c3a36847f8010645", "cast_id": 29, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 14}, {"name": "Antonio Casas", "character": "Stevens", "id": 103529, "credit_id": "52fe4242c3a36847f8010649", "cast_id": 30, "profile_path": "/epvdBxaktSZlfdqWWivitAZylpC.jpg", "order": 15}, {"name": "Aldo Sambrell", "character": "Member of Angel Eyes' Gang", "id": 49895, "credit_id": "52fe4242c3a36847f801064d", "cast_id": 31, "profile_path": "/AuDVbzviUIWEi9PJAeilFWTf5Xq.jpg", "order": 16}, {"name": "Al Mulock", "character": "One-Armed Bounty Hunter", "id": 129314, "credit_id": "52fe4242c3a36847f8010651", "cast_id": 32, "profile_path": "/80ibJHwEbjS6Wnb9DbkennzKLBL.jpg", "order": 17}, {"name": "Sergio Mendiz\u00e1bal", "character": "Blonde Bounty Hunter", "id": 37512, "credit_id": "52fe4242c3a36847f8010655", "cast_id": 33, "profile_path": "/4M55zJni66n0652YgyJVG8hCbQY.jpg", "order": 18}, {"name": "Antonio Molino Rojo", "character": "Capt. Harper", "id": 102096, "credit_id": "52fe4242c3a36847f8010659", "cast_id": 34, "profile_path": "/afs6pAQlgO9XHUbKTkXCardcUzf.jpg", "order": 19}, {"name": "Lorenzo Robledo", "character": "Member of Angel Eyes' Gang", "id": 100930, "credit_id": "52fe4242c3a36847f801065d", "cast_id": 35, "profile_path": "/dcL4hCSPvOoH3ZL0J6dQG7JYoof.jpg", "order": 20}, {"name": "Mario Brega", "character": "Cpl. Wallace", "id": 16318, "credit_id": "52fe4242c3a36847f8010661", "cast_id": 36, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 21}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f80105d3", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.6, "runtime": 161}, "431": {"poster_path": "/u50r6chJGO2iqxVAvtQ07obiCkB.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 501818, "overview": "The claustrophobic debut of Canadian director Vincenzo Natali takes seven strangers out of their daily lives and places them mysteriously in a deadly cube where they all agree they must find their way out. A mix of thriller and psychodrama and a small budget film that gained cult status.", "video": false, "id": 431, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Cube", "tagline": "Don't look for a reason... Look for a way out.", "vote_count": 243, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4SdZhO4M5vJ48dqp7r8PieZ37RJ.jpg", "poster_path": "/pRshONhwgQYb2IYcxhEIMDFc62d.jpg", "id": 432, "name": "Cube Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0123755", "adult": false, "backdrop_path": "/7BtMwHuHCgi0oE0SuITgfWOmPTu.jpg", "production_companies": [{"name": "Cube Libre", "id": 22207}, {"name": "Feature Film Project", "id": 21953}, {"name": "Harold Greenberg Fund", "id": 22208}, {"name": "Odeon Films", "id": 22209}, {"name": "Ontario Film Development Corporation", "id": 22210}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Viacom Canada", "id": 22211}], "release_date": "1997-09-09", "popularity": 0.520573517535742, "original_title": "Cube", "budget": 250000, "cast": [{"name": "Nicole de Boer", "character": "Leaven", "id": 5888, "credit_id": "52fe4242c3a36847f8010777", "cast_id": 5, "profile_path": "/bskEHtkzbiE2GMrFsqf3UmGGs4F.jpg", "order": 0}, {"name": "Nicky Guadagni", "character": "Holloway", "id": 5889, "credit_id": "52fe4242c3a36847f801077b", "cast_id": 6, "profile_path": "/2HJwL5EmMQSggNKfO9xc6DANmL6.jpg", "order": 1}, {"name": "David Hewlett", "character": "Worth", "id": 5892, "credit_id": "52fe4242c3a36847f801077f", "cast_id": 7, "profile_path": "/yntJ7Lur8LmjQ9rTfoVzlKb5WsX.jpg", "order": 2}, {"name": "Andrew Miller", "character": "Kazan", "id": 5894, "credit_id": "52fe4242c3a36847f8010783", "cast_id": 8, "profile_path": "/3m96GLYnwuostBF7ANSkafwWJnv.jpg", "order": 3}, {"name": "Julian Richings", "character": "Alderson", "id": 2320, "credit_id": "52fe4242c3a36847f8010787", "cast_id": 9, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 4}, {"name": "Wayne Robson", "character": "Rennes", "id": 5897, "credit_id": "52fe4243c3a36847f801078b", "cast_id": 10, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 5}, {"name": "Maurice Dean Wint", "character": "Quentin", "id": 5900, "credit_id": "52fe4243c3a36847f801078f", "cast_id": 11, "profile_path": "/wIw9x9BAGzeGe9SudxOUdagfNMD.jpg", "order": 6}], "directors": [{"name": "Vincenzo Natali", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f8010773", "profile_path": "/4rdmLwBRQKs1gpjEfrTxabOUerv.jpg", "id": 5877}], "vote_average": 6.6, "runtime": 90}, "433": {"poster_path": "/A8LtO46RpTpn6K54SugowckB7Uw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102272727, "overview": "The movie combines a diverting story, songs, color and sequences of live action blended with the movements of animated figures. Mary Poppins is a kind of Super-nanny who flies in with her umbrella in response to the request of the Banks children and proceeds to put things right with the aid of her rather extraordinary magical powers before flying off again.", "video": false, "id": 433, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Mary Poppins", "tagline": "It's supercalifragilisticexpialidocious!", "vote_count": 254, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0058331", "adult": false, "backdrop_path": "/7DbgR36Sct5gcyEAzoM8bqiTYUV.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1964-08-27", "popularity": 1.63545734696016, "original_title": "Mary Poppins", "budget": 6000000, "cast": [{"name": "Julie Andrews", "character": "Mary Poppins", "id": 5823, "credit_id": "52fe4243c3a36847f801080f", "cast_id": 1, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 0}, {"name": "Dick Van Dyke", "character": "Bert/Mr. Dawes, Sr.", "id": 61303, "credit_id": "52fe4243c3a36847f8010813", "cast_id": 2, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 1}, {"name": "David Tomlinson", "character": "Mr. George W. Banks", "id": 5825, "credit_id": "52fe4243c3a36847f8010817", "cast_id": 3, "profile_path": "/1QJLJtcJ4x8DQFflrbd2144ZzLg.jpg", "order": 2}, {"name": "Glynis Johns", "character": "Mrs. Winifred Banks", "id": 5826, "credit_id": "52fe4243c3a36847f801081b", "cast_id": 4, "profile_path": "/36ysTAkDW1234XmgWVPYB15XhIl.jpg", "order": 3}, {"name": "Hermione Baddeley", "character": "Ellen", "id": 5827, "credit_id": "52fe4243c3a36847f801081f", "cast_id": 5, "profile_path": "/8SRb4fkFn9Wqx8mCb81KGEK4OcV.jpg", "order": 4}, {"name": "Reta Shaw", "character": "Mrs. Brill", "id": 5828, "credit_id": "52fe4243c3a36847f8010823", "cast_id": 6, "profile_path": "/x3uJBwLLOBj24O1YWAO7dUAbQ4b.jpg", "order": 5}, {"name": "Karen Dotrice", "character": "Jane Banks", "id": 5829, "credit_id": "52fe4243c3a36847f8010827", "cast_id": 7, "profile_path": "/wzpDcUOqfMTDAfYebSB4fjkKgSx.jpg", "order": 6}, {"name": "Matthew Garber", "character": "Michael Banks", "id": 5830, "credit_id": "52fe4243c3a36847f801082b", "cast_id": 8, "profile_path": "/l2dN6XkreEn3HDBnevlpayg5Ydp.jpg", "order": 7}, {"name": "Elsa Lanchester", "character": "Katie Nanna", "id": 2926, "credit_id": "52fe4243c3a36847f801082f", "cast_id": 9, "profile_path": "/2iuHeYDsEEzDScdvYOrIY673Q5N.jpg", "order": 8}, {"name": "Arthur Treacher", "character": "Constable Jones", "id": 5831, "credit_id": "52fe4243c3a36847f8010833", "cast_id": 10, "profile_path": "/6aqt3bPCFzpalaRqfMl4GhMYNhD.jpg", "order": 9}, {"name": "Reginald Owen", "character": "Admiral Boom", "id": 5832, "credit_id": "52fe4243c3a36847f8010837", "cast_id": 11, "profile_path": "/bgtpAl7ICrDyJQzjglLiVY6tlMw.jpg", "order": 10}, {"name": "Ed Wynn", "character": "Uncle Albert", "id": 5833, "credit_id": "52fe4243c3a36847f801083b", "cast_id": 12, "profile_path": "/zjH7qZlelUfL57SGXijeZAnA1bS.jpg", "order": 11}, {"name": "Jane Darwell", "character": "The Bird Woman", "id": 8515, "credit_id": "52fe4243c3a36847f8010887", "cast_id": 25, "profile_path": "/geGrMcqxcFtMKKJO36OFpVwZFFW.jpg", "order": 12}, {"name": "Arthur Malet", "character": "Mr. Dawes Junior", "id": 13392, "credit_id": "52fe4243c3a36847f801088b", "cast_id": 26, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 13}, {"name": "James Logan", "character": "Bank Doorman", "id": 161976, "credit_id": "52fe4243c3a36847f801088f", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Don Barclay", "character": "Mr. Binnacle - Admiral's Servant", "id": 30144, "credit_id": "52fe4243c3a36847f8010893", "cast_id": 28, "profile_path": "/eg54HOmaOCtvERwSHPpQWqR8uJZ.jpg", "order": 15}, {"name": "Alma Lawton", "character": "Mrs. Corry - Old Woman in Park", "id": 403760, "credit_id": "52fe4243c3a36847f8010897", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Marjorie Eaton", "character": "Miss Persimmon - Old Woman in Park", "id": 117714, "credit_id": "52fe4243c3a36847f801089b", "cast_id": 30, "profile_path": "/mwJVP4W18Rpbi8qn0a2nVyE7fdO.jpg", "order": 17}, {"name": "Marjorie Bennett", "character": "Miss Lark - Old Woman in Park", "id": 97257, "credit_id": "52fe4243c3a36847f801089f", "cast_id": 31, "profile_path": "/cyY0ltPueaqENXEBnd0KWE5VHRd.jpg", "order": 18}], "directors": [{"name": "Robert Stevenson", "department": "Directing", "job": "Director", "credit_id": "52fe4243c3a36847f8010841", "profile_path": "/86MMwlxQ7AhJMn1JnDg8hjZbnSy.jpg", "id": 5834}], "vote_average": 6.8, "runtime": 139}, "435": {"poster_path": "/pRmpaFjtegy8PnUvSBDyT9dm7c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 542772771, "overview": "After years of unabated global warming, the greenhouse effect is wreaking havoc all over the globe in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and, most ominously, the beginning of the next Ice Age. Paleoclimatologist Jack Hall tries to save the world while also shepherding to safety his son Sam, who was in New York when the city was overwhelmed by the beginnings of the new big freeze.", "video": false, "id": 435, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Day After Tomorrow", "tagline": "Where will you be?", "vote_count": 733, "homepage": "http://www.thedayaftertomorrow.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0319262", "adult": false, "backdrop_path": "/5SSu3K3YFOn0ed478R1ZfsZ6hqc.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Lions Gate Films", "id": 35}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Mark Gordon Productions", "id": 11362}], "release_date": "2004-05-24", "popularity": 0.743294359478703, "original_title": "The Day After Tomorrow", "budget": 125000000, "cast": [{"name": "Dennis Quaid", "character": "Jack Hall", "id": 6065, "credit_id": "52fe4243c3a36847f8010a53", "cast_id": 19, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Sam Hall", "id": 131, "credit_id": "52fe4243c3a36847f8010a57", "cast_id": 20, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Emmy Rossum", "character": "Laura Chapman", "id": 4730, "credit_id": "52fe4243c3a36847f8010a5b", "cast_id": 21, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 2}, {"name": "Dash Mihok", "character": "Jason Evans", "id": 6066, "credit_id": "52fe4243c3a36847f8010a5f", "cast_id": 22, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 3}, {"name": "Jay O. Sanders", "character": "Frank Harris", "id": 6067, "credit_id": "52fe4243c3a36847f8010a63", "cast_id": 23, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 4}, {"name": "Sela Ward", "character": "Dr. Lucy Hall", "id": 6068, "credit_id": "52fe4243c3a36847f8010a67", "cast_id": 24, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 5}, {"name": "Austin Nichols", "character": "J.D.", "id": 6069, "credit_id": "52fe4243c3a36847f8010a6b", "cast_id": 25, "profile_path": "/zuPYAE3HC6Sb82vZcef7edN1nkT.jpg", "order": 6}, {"name": "Arjay Smith", "character": "Brian Parks", "id": 6070, "credit_id": "52fe4243c3a36847f8010a6f", "cast_id": 26, "profile_path": "/pf1myo7qI3MTTPmmCg61BKqBayp.jpg", "order": 7}, {"name": "Tamlyn Tomita", "character": "Janet Tokada", "id": 3134, "credit_id": "52fe4243c3a36847f8010a73", "cast_id": 27, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 8}, {"name": "Sasha Roiz", "character": "Parker", "id": 6071, "credit_id": "52fe4243c3a36847f8010a77", "cast_id": 28, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 9}, {"name": "Ian Holm", "character": "Terry Rapson", "id": 65, "credit_id": "52fe4243c3a36847f8010a7b", "cast_id": 29, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 10}, {"name": "Nassim Sharara", "character": "Saudi Delegate", "id": 6072, "credit_id": "52fe4243c3a36847f8010a7f", "cast_id": 30, "profile_path": "/m0FZMpk1pZnw8dZ8fsqoNY9Qj85.jpg", "order": 11}, {"name": "Carl Alacchi", "character": "Venezuelan Delegate", "id": 6073, "credit_id": "52fe4243c3a36847f8010a83", "cast_id": 31, "profile_path": "/c7xcSsmUwsjiUTTyqhOjZ2vANkJ.jpg", "order": 12}, {"name": "Kenneth Welsh", "character": "Vice President Becker", "id": 6074, "credit_id": "52fe4243c3a36847f8010a87", "cast_id": 32, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 13}, {"name": "Michel 'Gish' Abou-Samah", "character": "Saudi Translator", "id": 6075, "credit_id": "52fe4243c3a36847f8010a8b", "cast_id": 33, "profile_path": "/sWoFi9ksYFQhj5lE2GelTNVXxN.jpg", "order": 14}, {"name": "Kenneth Moskow", "character": "Bob", "id": 1215803, "credit_id": "547c2c409251412d75001fe6", "cast_id": 102, "profile_path": null, "order": 15}, {"name": "Glenn Plummer", "character": "Luther", "id": 2683, "credit_id": "547c2d1e9251412d7800213f", "cast_id": 103, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 16}, {"name": "Adrian Lester", "character": "Simon", "id": 76215, "credit_id": "547c2d3c92514123ef0006b1", "cast_id": 104, "profile_path": "/bgp0SyX9ZczUbEnRldpq8IimhuT.jpg", "order": 17}, {"name": "Nestor Serrano", "character": "Gomez", "id": 14331, "credit_id": "547c2d56c3a3685afd002518", "cast_id": 105, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 18}, {"name": "John Maclaren", "character": "Veteran Scientist", "id": 21021, "credit_id": "547c2db4c3a3685af3001d92", "cast_id": 106, "profile_path": "/bLAjD9xwJgRHk1dmTIjDV4e8rqf.jpg", "order": 19}, {"name": "Richard Zeman", "character": "Flight Director", "id": 129419, "credit_id": "547c2dcec3a3685b050025ab", "cast_id": 107, "profile_path": null, "order": 20}, {"name": "Perry King", "character": "President Blake", "id": 64457, "credit_id": "547c2de4c3a3685b0000266f", "cast_id": 108, "profile_path": "/gne5PrFEM8FEGG96Jf7JJYgptke.jpg", "order": 21}, {"name": "Mimi Kuzyk", "character": "Secretary of State", "id": 65471, "credit_id": "547c2e039251412d7f0023cf", "cast_id": 109, "profile_path": "/7OYNPeE8DK7hi1IUXBoqyJvLYMc.jpg", "order": 22}, {"name": "Vitali Makarov", "character": "Yuri, Russian Astronaut", "id": 559897, "credit_id": "547c2e2e9251411f4e001448", "cast_id": 110, "profile_path": null, "order": 23}, {"name": "Russell Yuen", "character": "Hideki, Japanese Astronaut", "id": 29466, "credit_id": "547c2e46c3a3685b0000267e", "cast_id": 111, "profile_path": "/jCzbsp4aN7xUd8iW6FZ4HGoNovF.jpg", "order": 24}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4243c3a36847f80109e9", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.0, "runtime": 124}, "437": {"poster_path": "/6tPa2kvzsvOQTXK1JNO2JN9quBV.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "The sequel to the low budget first film \u2018Cube.\u2019 This time the prisoners find them selves in a more advanced cube environment that they must escape from before they are killed. A science fiction film where space and time have more than one path.", "video": false, "id": 437, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Cube 2: Hypercube", "tagline": "There is more to fear than you can see.", "vote_count": 71, "homepage": "http://www.scifi.com/cube2/", "belongs_to_collection": {"backdrop_path": "/4SdZhO4M5vJ48dqp7r8PieZ37RJ.jpg", "poster_path": "/pRshONhwgQYb2IYcxhEIMDFc62d.jpg", "id": 432, "name": "Cube Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0285492", "adult": false, "backdrop_path": "/yPIWvL5TFJk0MbfbSLJx70obbQY.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}, {"name": "Ghost House Pictures", "id": 768}], "release_date": "2002-04-15", "popularity": 0.236876302189795, "original_title": "Cube 2: Hypercube", "budget": 0, "cast": [{"name": "Kari Matchett", "character": "Kate Filmore", "id": 5937, "credit_id": "52fe4243c3a36847f8010b9f", "cast_id": 5, "profile_path": "/yflnRSms92un2SEj7YnKNYtLX0k.jpg", "order": 0}, {"name": "Geraint Wyn Davies", "character": "Simon Grady", "id": 5938, "credit_id": "52fe4243c3a36847f8010ba3", "cast_id": 6, "profile_path": "/kDLHVvaPj90QrxOLr1xErC0Oq8Q.jpg", "order": 1}, {"name": "Grace Lynn Kung", "character": "Sasha", "id": 5939, "credit_id": "52fe4243c3a36847f8010ba7", "cast_id": 7, "profile_path": "/n0yGKJ9M0Ag1o5QOpmF6FOHM5li.jpg", "order": 2}, {"name": "Matthew Ferguson", "character": "Max Reisler", "id": 5940, "credit_id": "52fe4243c3a36847f8010bab", "cast_id": 8, "profile_path": "/6JZRGqgfudOZcjoU9yUzidasWiu.jpg", "order": 3}, {"name": "Neil Crone", "character": "Jerry Whitehall", "id": 5941, "credit_id": "52fe4243c3a36847f8010baf", "cast_id": 9, "profile_path": "/8LYTbOzuqFQoSOFRggM28JzgEXb.jpg", "order": 4}, {"name": "Barbara Gordon", "character": "Mrs. Paley", "id": 5942, "credit_id": "52fe4243c3a36847f8010bb3", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Lindsey Connell", "character": "Julia", "id": 5943, "credit_id": "52fe4243c3a36847f8010bb7", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Greer Kent", "character": "Becky Young", "id": 5944, "credit_id": "52fe4243c3a36847f8010bbb", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Bruce Gray", "character": "Colonel Maguire", "id": 5945, "credit_id": "52fe4243c3a36847f8010bbf", "cast_id": 13, "profile_path": "/z0uEl3in5hsCD4TYTBqCtmqCdwo.jpg", "order": 8}, {"name": "Philip Akin", "character": "The General", "id": 5946, "credit_id": "52fe4243c3a36847f8010bc3", "cast_id": 14, "profile_path": "/8x3hkESG8Fyn3r3LcYMdz7QWowG.jpg", "order": 9}, {"name": "Paul Robbins", "character": "Tracton", "id": 5947, "credit_id": "52fe4243c3a36847f8010bc7", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Andrew Scorer", "character": "Dr. Phil Rosenzweig", "id": 5948, "credit_id": "52fe4243c3a36847f8010bcb", "cast_id": 16, "profile_path": null, "order": 11}], "directors": [{"name": "Andrzej Sekula", "department": "Directing", "job": "Director", "credit_id": "52fe4243c3a36847f8010b9b", "profile_path": null, "id": 3115}], "vote_average": 5.2, "runtime": 94}, "8265": {"poster_path": "/wpuxRlQ9dwPlCXCpnckIk9MzBcD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 53191886, "overview": "Although living a comfortable life in Salon-de-Provence, a charming town in the South of France, Julie has been feeling depressed for a while. To please her, Philippe Abrams, a post office administrator, her husband, tries to obtain a transfer to a seaside town, on the French Riviera, at any cost. The trouble is that he is caught red-handed while trying to scam an inspector. Philippe is immediately banished to the distant unheard of town of Bergues, in the Far North of France...", "video": false, "id": 8265, "genres": [{"id": 35, "name": "Comedy"}], "title": "Welcome to the Sticks", "tagline": "", "vote_count": 109, "homepage": "http://www.bienvenuechezleschtis-lefilm.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1064932", "adult": false, "backdrop_path": "/o2FFyK2lFk9VyumyNwG0bUk2CeR.jpg", "production_companies": [{"name": "TF1 Films Productions", "id": 356}, {"name": "Path\u00e9 Renn Productions", "id": 866}, {"name": "Hirsch", "id": 2355}, {"name": "Les Productions du Chicon", "id": 11544}, {"name": "Canal+", "id": 5358}, {"name": "Centre National de la Cin\u00e9matographie", "id": 310}, {"name": "Centre R\u00e9gional des Ressources Audiovisuelles (CRRAV)", "id": 11545}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "R\u00e9gion Nord-Pas-de-Calais", "id": 11434}], "release_date": "2008-02-20", "popularity": 0.47449742131453, "original_title": "Bienvenue chez les ch'tis", "budget": 11000000, "cast": [{"name": "Kad Merad", "character": "Philippe Abrams", "id": 22306, "credit_id": "52fe4498c3a36847f809f38d", "cast_id": 2, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 0}, {"name": "Dany Boon", "character": "Antoine Bailleul", "id": 37627, "credit_id": "52fe4498c3a36847f809f391", "cast_id": 3, "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "order": 1}, {"name": "Zo\u00e9 F\u00e9lix", "character": "Julie Abrams", "id": 54165, "credit_id": "52fe4498c3a36847f809f395", "cast_id": 4, "profile_path": "/d0IfW8sjxHZLq1WOUol7YXiflAs.jpg", "order": 2}, {"name": "Lorenzo Ausilia-Foret", "character": "Rapha\u00ebl Abrams", "id": 1120528, "credit_id": "52fe4499c3a36847f809f439", "cast_id": 35, "profile_path": null, "order": 3}, {"name": "Anne Marivin", "character": "Annabelle Deconninck", "id": 54168, "credit_id": "52fe4499c3a36847f809f3a9", "cast_id": 9, "profile_path": "/oDRecloG3jOMsQy0H1zmLLld7Ti.jpg", "order": 4}, {"name": "Philippe Duquesne", "character": "Fabrice Canoli", "id": 66032, "credit_id": "52fe4499c3a36847f809f435", "cast_id": 34, "profile_path": "/9Br1Ewi1aHoiRrCt50j0QS2UyHC.jpg", "order": 5}, {"name": "Guy Lecluyse", "character": "Yann Vandernoout", "id": 52348, "credit_id": "52fe4499c3a36847f809f3a1", "cast_id": 7, "profile_path": "/w7zCQreyVrMIpkerskuXbivGlYI.jpg", "order": 6}, {"name": "Line Renaud", "character": "Madame Bailleul", "id": 54167, "credit_id": "52fe4498c3a36847f809f399", "cast_id": 5, "profile_path": "/n1nKGW94uVUfTHuvh8a8IeGTNXv.jpg", "order": 7}, {"name": "Michel Galabru", "character": "le grand oncle de Julie", "id": 24629, "credit_id": "52fe4499c3a36847f809f39d", "cast_id": 6, "profile_path": "/swCBlLcMcmzVr4IbKjoynAhrm6B.jpg", "order": 8}, {"name": "St\u00e9phane Freiss", "character": "Jean", "id": 40305, "credit_id": "52fe4499c3a36847f809f3a5", "cast_id": 8, "profile_path": "/rlUdl4jnh5drYjqi9FBKAC0q7QR.jpg", "order": 9}, {"name": "Patrick Bosso", "character": "le gendarme", "id": 54169, "credit_id": "52fe4499c3a36847f809f3ad", "cast_id": 10, "profile_path": "/7ZBm6iFgDhHcWN4LqELh6koGHC.jpg", "order": 10}, {"name": "J\u00e9r\u00f4me Commandeur", "character": "inspecteur Lebic", "id": 54170, "credit_id": "52fe4499c3a36847f809f3b5", "cast_id": 12, "profile_path": "/oD7b6OOvypJxHDLScoNkEpxnRPA.jpg", "order": 11}, {"name": "Christophe Rossignon", "character": "le gar\u00e7on du restaurant", "id": 5425, "credit_id": "52fe4499c3a36847f809f3b9", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Zinedine Soualem", "character": "Momo", "id": 5445, "credit_id": "52fe4499c3a36847f809f3b1", "cast_id": 11, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 13}], "directors": [{"name": "Dany Boon", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a36847f809f389", "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "id": 37627}, {"name": "Nicolas Guy", "department": "Directing", "job": "Director", "credit_id": "52fe4499c3a36847f809f401", "profile_path": null, "id": 54176}], "vote_average": 6.8, "runtime": 106}, "440": {"poster_path": "/xR4Mslyum7bjzAF1rlUX2HrlwhZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41797066, "overview": "A sequel to 2004's Alien vs. Predator, the iconic creatures from two of the scariest film franchises in movie history wage their most brutal battle ever - in our own backyard. The small town of Gunnison, Colorado becomes a war zone between two of the deadliest extra-terrestrial life forms - the Alien and the Predator. When a Predator scout ship crash-lands in the hills outside the town, Alien Facehuggers and a hybrid Alien/Predator are released and begin to terrorize the town.", "video": false, "id": 440, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Aliens vs Predator: Requiem", "tagline": "The Last Place On Earth We Want To Be Is In The Middle", "vote_count": 207, "homepage": "http://www.avp-r.com/", "belongs_to_collection": {"backdrop_path": "/c5ccDw4lcTUnYGdCxc2yEl8PjTk.jpg", "poster_path": "/zrApSsUX9i0qVntcCD0Pp55TdCy.jpg", "id": 115762, "name": "AVP Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758730", "adult": false, "backdrop_path": "/uypAmOWRpjnqIlg1BzXhGgP1uMM.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "20th Century Fox", "id": 25}, {"name": "Brandywine Productions Ltd.", "id": 401}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2007-12-25", "popularity": 1.68558871718858, "original_title": "Aliens vs Predator: Requiem", "budget": 40000000, "cast": [{"name": "Steven Pasquale", "character": "Dallas Howard", "id": 56389, "credit_id": "52fe4244c3a36847f8010dfb", "cast_id": 17, "profile_path": "/6rm9ZpBrc3w7tRvAtyMTOltUUvb.jpg", "order": 0}, {"name": "Reiko Aylesworth", "character": "Kelly O'Brien", "id": 25869, "credit_id": "52fe4244c3a36847f8010dff", "cast_id": 18, "profile_path": "/59Gu57v2rOtvvBA06rSuYX2w5h2.jpg", "order": 1}, {"name": "John Ortiz", "character": "Sheriff Eddie Morales", "id": 40543, "credit_id": "52fe4244c3a36847f8010e03", "cast_id": 19, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 2}, {"name": "Ariel Gade", "character": "Molly O'Brien", "id": 76414, "credit_id": "52fe4244c3a36847f8010e07", "cast_id": 20, "profile_path": "/axreEq8FBbpww34aBzJo2xM5pkv.jpg", "order": 3}, {"name": "Sam Trammell", "character": "Tim", "id": 131006, "credit_id": "52fe4244c3a36847f8010e0b", "cast_id": 21, "profile_path": "/pvf0cmYdw3Fi2F5HjP2QHgxRKoC.jpg", "order": 4}, {"name": "Kristen Hager", "character": "Jesse", "id": 73454, "credit_id": "538dfcb6c3a3687146005413", "cast_id": 22, "profile_path": "/mofGrgUP2kXXD8cgkYnzfGb8EOL.jpg", "order": 5}, {"name": "Robert Joy", "character": "Col. Stevens", "id": 19976, "credit_id": "538dfcc4c3a368714300501f", "cast_id": 23, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 6}, {"name": "David Paetkau", "character": "Dale", "id": 33293, "credit_id": "538dfcccc3a36871520051b4", "cast_id": 24, "profile_path": "/xOAjc34j0fZlKSb6I3cpTwHStar.jpg", "order": 7}, {"name": "Tom Woodruff Jr.", "character": "Alien", "id": 109870, "credit_id": "538dfcd4c3a36871550050d3", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Ian Whyte", "character": "Predator", "id": 946696, "credit_id": "538dfcdfc3a368713c00525a", "cast_id": 26, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 9}, {"name": "Chelah Horsdal", "character": "Darcy", "id": 70175, "credit_id": "538dfce8c3a368714b0052e9", "cast_id": 27, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 10}, {"name": "Meshach Peters", "character": "Curtis", "id": 202065, "credit_id": "538dfcf1c3a36871520051b8", "cast_id": 28, "profile_path": "/2zqlQS2A0kVzoSabpSVi9Qsfrwf.jpg", "order": 11}, {"name": "Matt Ward", "character": "Mark", "id": 210348, "credit_id": "538dfcf9c3a36871550050d6", "cast_id": 29, "profile_path": "/fwGrvAJJi30gapwPIDTkk1BNYHf.jpg", "order": 12}, {"name": "Gina Holden", "character": "Carrie", "id": 33336, "credit_id": "548d9d9ac3a36820be003a19", "cast_id": 82, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 13}, {"name": "Kurt Max Runte", "character": "Buddy", "id": 60721, "credit_id": "548d9db1c3a36820ba0040c1", "cast_id": 83, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 14}, {"name": "Liam James", "character": "Sam", "id": 83852, "credit_id": "548d9dcd92514122f2004111", "cast_id": 84, "profile_path": "/heAbNsKPFDCFIrzy7zDeZm6w2xd.jpg", "order": 15}, {"name": "Ty Olsson", "character": "Nathan", "id": 42711, "credit_id": "548d9de8c3a3681d4b00215b", "cast_id": 85, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 16}, {"name": "Chris William Martin", "character": "Deputy Ray", "id": 152820, "credit_id": "548d9e15c3a368153b001ee7", "cast_id": 86, "profile_path": "/tNgMeVpoM4RhEvxjaYtaxLvi1YJ.jpg", "order": 17}, {"name": "Rekha Sharma", "character": "Nurse Helen", "id": 62717, "credit_id": "548d9e3bc3a36820be003a27", "cast_id": 87, "profile_path": "/cx3ubTduzbsfyxPPnS2HoEmZbFG.jpg", "order": 18}, {"name": "Catherine Lough Haggquist", "character": "Tina", "id": 77622, "credit_id": "548d9e58c3a3681d4b002165", "cast_id": 88, "profile_path": "/bXyoDG0aMwUtObFgLgBi7NkviDY.jpg", "order": 19}], "directors": [{"name": "Colin Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4244c3a36847f8010d9d", "profile_path": "/mM95v1bWGdz8Ira7K4drueKRT01.jpg", "id": 6037}, {"name": "Greg Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4244c3a36847f8010da3", "profile_path": "/xcEcDFHoTkIuOkLeWRuX3ksJmy1.jpg", "id": 6038}], "vote_average": 5.0, "runtime": 94}, "41402": {"poster_path": "/7Q2mLNPJ7KMZCUUNekBoFJRfDki.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24145613, "overview": "This is a remake of the movie \"Let The Right One In\" which was a movie adaptation of a book. A story of a young boy who is frequently bullied and a young girl that moves in next door with her caretaker. It is established that she is a vampire and, after losing her caretaker, must leave in order to survive. A story of innocent love entangled in murder, mystery, and horror.", "video": false, "id": 41402, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Let Me In", "tagline": "Innocence dies. Abby doesn't.", "vote_count": 171, "homepage": "http://www.letmein-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1228987", "adult": false, "backdrop_path": "/uLhpV983X2BLSpnfzwASZWmgEUL.jpg", "production_companies": [{"name": "Hammer Film Productions", "id": 1314}, {"name": "EFTI", "id": 3576}, {"name": "Overture Films", "id": 12807}, {"name": "Exclusive Media Group", "id": 11448}], "release_date": "2010-10-01", "popularity": 0.292622328822482, "original_title": "Let Me In", "budget": 20000000, "cast": [{"name": "Kodi Smit-McPhee", "character": "Owen", "id": 113505, "credit_id": "52fe45c7c3a36847f80d9dd7", "cast_id": 8, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Abby", "id": 56734, "credit_id": "52fe45c7c3a36847f80d9e0d", "cast_id": 21, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Richard Jenkins", "character": "The Father", "id": 28633, "credit_id": "52fe45c7c3a36847f80d9ddb", "cast_id": 9, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 2}, {"name": "Elias Koteas", "character": "The Policeman", "id": 13550, "credit_id": "52fe45c7c3a36847f80d9ddf", "cast_id": 10, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 3}, {"name": "Sasha Barrese", "character": "Virginia", "id": 83585, "credit_id": "52fe45c7c3a36847f80d9de3", "cast_id": 11, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 4}, {"name": "Dylan Kenin", "character": "Larry", "id": 85419, "credit_id": "52fe45c7c3a36847f80d9de7", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Dylan Minnette", "character": "Kenny", "id": 112476, "credit_id": "52fe45c7c3a36847f80d9dfd", "cast_id": 16, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 6}, {"name": "Jimmy \"Jax\" Pinchak", "character": "Mark (as Jimmy Jax Pinchak)", "id": 284628, "credit_id": "52fe45c7c3a36847f80d9e01", "cast_id": 17, "profile_path": "/ztVfjHJ9fbuzgQVUKVPQvEsVCRK.jpg", "order": 7}, {"name": "Nicolai Dorian", "character": "Donald", "id": 966943, "credit_id": "52fe45c7c3a36847f80d9e05", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Seth Adkins", "character": "High School Kid", "id": 8553, "credit_id": "52fe45c7c3a36847f80d9e09", "cast_id": 19, "profile_path": "/gmqJckjg37blaf4IKAzDnFTtV7N.jpg", "order": 9}], "directors": [{"name": "Matt Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe45c7c3a36847f80d9e13", "profile_path": "/4SPhLx107Y7m0tvzlLpCquxFxE8.jpg", "id": 32278}], "vote_average": 6.7, "runtime": 116}, "1439": {"poster_path": "/BHjZW51ZsyC1mlLOeIB5eVbU0w.jpg", "production_countries": [{"iso_3166_1": "MY", "name": "Malaysia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of the romance between the King of Siam (now Thailand) and the widowed British school teacher Anna Leonowens during the 1860's. Anna teaches the children and becomes romanced by the King. She convinces him that a man can be loved by just one woman.", "video": false, "id": 1439, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Anna and the King", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0166485", "adult": false, "backdrop_path": "/mRpSxOv2uw49MUl3HAZFefzCQqN.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "1999-12-16", "popularity": 0.32360563137468, "original_title": "Anna and the King", "budget": 75000000, "cast": [{"name": "Jodie Foster", "character": "Anna Leonowens", "id": 1038, "credit_id": "52fe42f7c3a36847f803057b", "cast_id": 1, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Chow Yun-Fat", "character": "K\u00f6nig Mongkut", "id": 1619, "credit_id": "52fe42f7c3a36847f80305f9", "cast_id": 26, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 1}, {"name": "Bai Ling", "character": "Tuptim", "id": 39126, "credit_id": "52fe42f7c3a36847f8030603", "cast_id": 28, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 2}, {"name": "Tom Felton", "character": "Louis Leonowens", "id": 10993, "credit_id": "52fe42f7c3a36847f803057f", "cast_id": 2, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 3}, {"name": "Syed Alwi", "character": "The Kralahome, Prime Minister", "id": 17154, "credit_id": "52fe42f7c3a36847f8030583", "cast_id": 3, "profile_path": null, "order": 4}, {"name": "Randall Duk Kim", "character": "General Alak", "id": 9462, "credit_id": "52fe42f7c3a36847f8030587", "cast_id": 4, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 5}, {"name": "Kay Siu Lim", "character": "Prince Chowfa, King Mongkut's Brother", "id": 17155, "credit_id": "52fe42f7c3a36847f803058b", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Melissa Campbell", "character": "Princess Fa-Ying", "id": 17156, "credit_id": "52fe42f7c3a36847f803058f", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Keith Chin", "character": "Prince Chulalongkorn", "id": 17157, "credit_id": "52fe42f7c3a36847f8030593", "cast_id": 7, "profile_path": null, "order": 8}, {"name": "Mano Maniam", "character": "Moonshee, Leonowens' Indian Servant", "id": 17158, "credit_id": "52fe42f7c3a36847f8030597", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Shanthini Venugopal", "character": "Beebe, Leonowens' Indian Servant", "id": 17159, "credit_id": "52fe42f7c3a36847f803059b", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Deanna Yusoff", "character": "Lady Thiang, Head Wife", "id": 17160, "credit_id": "52fe42f7c3a36847f803059f", "cast_id": 10, "profile_path": "/gnVastLwINGC6cqPjRrxRrAYGKu.jpg", "order": 11}, {"name": "Ann Firbank", "character": "Lady Bradley", "id": 17161, "credit_id": "52fe42f7c3a36847f80305a7", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "Geoffrey Palmer", "character": "Lord John Bradley", "id": 10746, "credit_id": "52fe42f7c3a36847f80305a3", "cast_id": 11, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 13}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe42f7c3a36847f80305d7", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.5, "runtime": 148}, "33217": {"poster_path": "/5bPEGiI6r2PvER13UWPy0Ud4MnZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Middle school isn't all it's cracked up to be for self-described \"wimpy kid\" Greg Heffley, who discovers a frightening new world teeming with boys who are taller, tougher and hairier than he is -- and decides to document it all in his diary.", "video": false, "id": 33217, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Diary of a Wimpy Kid", "tagline": "I'll be famous one day, but for now I'm stuck in middle school with a bunch of morons", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hTbw2nLM44eE5m7ZIIXodcoDR1X.jpg", "poster_path": "/4Miizfzuds4ldROTff9vB0Z3EId.jpg", "id": 86110, "name": "Diary of a Wimpy Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1196141", "adult": false, "backdrop_path": "/ag3LIUYCclnXltzoVZX3nPKmQt7.jpg", "production_companies": [{"name": "Color Force", "id": 5420}], "release_date": "2010-03-19", "popularity": 0.476429946917834, "original_title": "Diary of a Wimpy Kid", "budget": 15000000, "cast": [{"name": "Zachary Gordon", "character": "Greg", "id": 89819, "credit_id": "52fe45059251416c91024bfd", "cast_id": 4, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 0}, {"name": "Robert Capron", "character": "Rowley", "id": 111922, "credit_id": "52fe45059251416c91024c15", "cast_id": 10, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 1}, {"name": "Chlo\u00eb Grace Moretz", "character": "Angie", "id": 56734, "credit_id": "52fe45059251416c91024bf1", "cast_id": 1, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "Steve Zahn", "character": "Frank", "id": 18324, "credit_id": "52fe45059251416c91024bf5", "cast_id": 2, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 3}, {"name": "Rachael Harris", "character": "Susan", "id": 46074, "credit_id": "52fe45059251416c91024bf9", "cast_id": 3, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 4}, {"name": "Devon Bostick", "character": "Rodrick", "id": 90498, "credit_id": "52fe45059251416c91024c01", "cast_id": 5, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 5}, {"name": "Alex Ferris", "character": "Collin", "id": 59243, "credit_id": "52fe45059251416c91024c05", "cast_id": 6, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 6}, {"name": "Cindy Busby", "character": "80's Popular Girl", "id": 111920, "credit_id": "52fe45059251416c91024c09", "cast_id": 7, "profile_path": "/fJouHvx2hRoUa1e9HWxIglEEoMN.jpg", "order": 7}, {"name": "Grayson Russell", "character": "Fregley", "id": 111921, "credit_id": "52fe45059251416c91024c0d", "cast_id": 8, "profile_path": "/mgpxDDI7uqhdPgT0VoMSW28dh4y.jpg", "order": 8}, {"name": "Owen Best", "character": "Bryce Anderson", "id": 109205, "credit_id": "52fe45059251416c91024c11", "cast_id": 9, "profile_path": "/yPcXiWMFlsM1IxzzFGhIkLckD3G.jpg", "order": 9}, {"name": "Cainan Wiebe", "character": "Quentin", "id": 58402, "credit_id": "52fe45059251416c91024c19", "cast_id": 11, "profile_path": "/aaMIrNZ3eVNo6NGHVG4ycxk5Vou.jpg", "order": 10}, {"name": "Rob LaBelle", "character": "Mr.Winsky", "id": 42708, "credit_id": "52fe45059251416c91024c1d", "cast_id": 12, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 11}, {"name": "Laine MacNeil", "character": "Patty Ferrell", "id": 84468, "credit_id": "52fe45059251416c91024c21", "cast_id": 13, "profile_path": "/1CX7wfCXTttRUVwMnfWmHtl9kz1.jpg", "order": 12}, {"name": "Karan Brar", "character": "Chirag Gupta", "id": 111923, "credit_id": "52fe45059251416c91024c25", "cast_id": 14, "profile_path": "/eelNaGrUz5jRyEk6XlH6C1q5pON.jpg", "order": 13}, {"name": "Brett Dier", "character": "Breakdancer", "id": 110475, "credit_id": "52fe45059251416c91024c29", "cast_id": 15, "profile_path": "/9pUV7QcJnbWaRp7MbXZtBwoemFQ.jpg", "order": 14}, {"name": "Ryan Grantham", "character": "Rodney James", "id": 111924, "credit_id": "52fe45059251416c91024c2d", "cast_id": 16, "profile_path": "/7mHdcBgBCr3FZQzfs15ptIysE3A.jpg", "order": 15}, {"name": "Jake D. Smith", "character": "Archie Kelly", "id": 111925, "credit_id": "52fe45059251416c91024c31", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Samuel Patrick Chu", "character": "Carter", "id": 33353, "credit_id": "52fe45059251416c91024c35", "cast_id": 18, "profile_path": "/mejbBl13pPPPrsJ56BWFykpk2cx.jpg", "order": 17}, {"name": "Ava Hughes", "character": "Marley", "id": 41429, "credit_id": "52fe45059251416c91024c39", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Harrison Houde", "character": "Darren Walsh", "id": 111926, "credit_id": "52fe45059251416c91024c3d", "cast_id": 20, "profile_path": null, "order": 19}, {"name": "Samantha Page", "character": "Shelley", "id": 111927, "credit_id": "52fe45059251416c91024c41", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Talon Dunbar", "character": "Arthur, Lunch Kid 1", "id": 111928, "credit_id": "52fe45059251416c91024c45", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Jennifer Clement", "character": "Ms.Flint", "id": 64673, "credit_id": "52fe45059251416c91024c49", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Adom Osei", "character": "Marty Porter", "id": 111929, "credit_id": "52fe45059251416c91024c4d", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Donnie MacNeil", "character": "Wade", "id": 111930, "credit_id": "52fe45059251416c91024c51", "cast_id": 25, "profile_path": "/8YKf73rmd0MbbE0nH3XcGB5jps4.jpg", "order": 24}, {"name": "Andrew McNee", "character": "Coach Malone", "id": 111931, "credit_id": "52fe45059251416c91024c55", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Naomi Dane", "character": "Cheese Girl", "id": 111933, "credit_id": "52fe45059251416c91024c59", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Sarah Wik", "character": "School Girl", "id": 111934, "credit_id": "52fe45059251416c91024c5d", "cast_id": 28, "profile_path": null, "order": 27}, {"name": "Rylee Stiles", "character": "Preston", "id": 111935, "credit_id": "52fe45059251416c91024c61", "cast_id": 29, "profile_path": null, "order": 28}, {"name": "Ethan Shankaruk", "character": "Snot Kid", "id": 111936, "credit_id": "52fe45059251416c91024c65", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Triston Woolsey", "character": "Shirts Kid #2", "id": 111937, "credit_id": "52fe45059251416c91024c69", "cast_id": 31, "profile_path": null, "order": 30}, {"name": "Wyatt Cameron", "character": "Shirts Kid #1", "id": 111938, "credit_id": "52fe45059251416c91024c6d", "cast_id": 32, "profile_path": null, "order": 31}, {"name": "Shane Briscoe", "character": "Funny Dad", "id": 111939, "credit_id": "52fe45059251416c91024c71", "cast_id": 33, "profile_path": null, "order": 32}, {"name": "Douglas Armstrong", "character": "Skins Kid #1", "id": 111940, "credit_id": "52fe45059251416c91024c75", "cast_id": 34, "profile_path": null, "order": 33}, {"name": "Greta Makena Gibson", "character": "Lunch Kid #2 (as Greta Gibson)", "id": 111941, "credit_id": "52fe45059251416c91024c79", "cast_id": 35, "profile_path": null, "order": 34}, {"name": "Cainan Wiebe", "character": "Quentin", "id": 58402, "credit_id": "52fe45059251416c91024c8f", "cast_id": 39, "profile_path": "/aaMIrNZ3eVNo6NGHVG4ycxk5Vou.jpg", "order": 35}], "directors": [{"name": "Thor Freudenthal", "department": "Directing", "job": "Director", "credit_id": "52fe45059251416c91024c7f", "profile_path": null, "id": 109857}], "vote_average": 5.8, "runtime": 94}, "451": {"poster_path": "/aPD0aD4yVoiwrZjVCpUBdGa1C0j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49800000, "overview": "Ben Sanderson, an alcoholic Hollywood screenwriter who lost everything because of his drinking, arrives in Las Vegas to drink himself to death. There, he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.", "video": false, "id": 451, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Leaving Las Vegas", "tagline": "I Love You... The Way You Are.", "vote_count": 83, "homepage": "http://www.mgm.com/title_title.do?title_star=LEAVINGL", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113627", "adult": false, "backdrop_path": "/dDTAbwvWJpHlblgjyPnKLQXOiHI.jpg", "production_companies": [{"name": "Intial Productions", "id": 15547}, {"name": "United Artists", "id": 60}], "release_date": "1995-10-27", "popularity": 0.645562551540151, "original_title": "Leaving Las Vegas", "budget": 3600000, "cast": [{"name": "Nicolas Cage", "character": "Ben Sanderson", "id": 2963, "credit_id": "52fe4245c3a36847f801117b", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Elisabeth Shue", "character": "Sera", "id": 1951, "credit_id": "52fe4245c3a36847f801117f", "cast_id": 2, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 1}, {"name": "Julian Sands", "character": "Yuri", "id": 6104, "credit_id": "52fe4245c3a36847f8011183", "cast_id": 3, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 2}, {"name": "Richard Lewis", "character": "Peter", "id": 6105, "credit_id": "52fe4245c3a36847f8011187", "cast_id": 4, "profile_path": "/zc2BlkPtYJAsIAVbZ4zQPEMW1t6.jpg", "order": 3}, {"name": "Steven Weber", "character": "Marc Nussbaum", "id": 6106, "credit_id": "52fe4245c3a36847f801118b", "cast_id": 5, "profile_path": "/ujINzDjLNtELBSUkRHQgExzP4Fb.jpg", "order": 4}, {"name": "Kim Adams", "character": "Sheila", "id": 6107, "credit_id": "52fe4245c3a36847f801118f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Emily Procter", "character": "Debbie", "id": 6108, "credit_id": "52fe4245c3a36847f8011193", "cast_id": 7, "profile_path": "/nZJypfLAXUg8Nn1GpBgbYVdqO4Y.jpg", "order": 6}, {"name": "Stuart Regen", "character": "Man At Bar", "id": 6109, "credit_id": "52fe4245c3a36847f8011197", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Valeria Golino", "character": "Terri", "id": 3124, "credit_id": "52fe4245c3a36847f801119b", "cast_id": 9, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 8}, {"name": "Graham Beckel", "character": "L.A. Bartender", "id": 6110, "credit_id": "52fe4245c3a36847f801119f", "cast_id": 10, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 9}, {"name": "Mariska Hargitay", "character": "Hooker at bar", "id": 6240, "credit_id": "52fe4245c3a36847f80111eb", "cast_id": 23, "profile_path": "/evPLncwnmRiBpbsPiJD1WubviV.jpg", "order": 10}, {"name": "Laurie Metcalf", "character": "Landlady", "id": 12133, "credit_id": "5402bc210e0a2658de006b1c", "cast_id": 24, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 11}], "directors": [{"name": "Mike Figgis", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f80111a5", "profile_path": "/nIaxYZkNX6j70VQyHwzed1QxOXD.jpg", "id": 6111}], "vote_average": 6.9, "runtime": 112}, "453": {"poster_path": "/4SFqHDZ1NvWdysucWbgnYlobdxC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 313542341, "overview": "At Princeton University, John Nash struggles to make a worthwhile contribution to serve as his legacy to the world of mathematics. He finally makes a revolutionary breakthrough that will eventually earn him the Nobel Prize. After graduate school he turns to teaching, becoming romantically involved with his student Alicia. Meanwhile the government asks his help with breaking Soviet codes, which soon gets him involved in a terrifying conspiracy plot. Nash grows more and more paranoid until a discovery that turns his entire world upside down. Now it is only with Alicia's help that he will be able to recover his mental strength and regain his status as the great mathematician we know him as today.", "video": false, "id": 453, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Beautiful Mind", "tagline": "I need to believe that something extra ordinary is possible....", "vote_count": 814, "homepage": "http://www.abeautifulmind.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0268978", "adult": false, "backdrop_path": "/4E6fPI8VHCdttDve9vBk14rsuBW.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2001-12-12", "popularity": 1.46861499623406, "original_title": "A Beautiful Mind", "budget": 60000000, "cast": [{"name": "Russell Crowe", "character": "John Nash", "id": 934, "credit_id": "52fe4245c3a36847f80113a3", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Ed Harris", "character": "William Parcher", "id": 228, "credit_id": "52fe4245c3a36847f80113a7", "cast_id": 5, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Alicia Nash", "id": 6161, "credit_id": "52fe4245c3a36847f80113ab", "cast_id": 6, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Dr. Rosen", "id": 290, "credit_id": "52fe4245c3a36847f80113af", "cast_id": 7, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Charles", "id": 6162, "credit_id": "52fe4245c3a36847f80113b3", "cast_id": 8, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Adam Goldberg", "character": "Sol", "id": 6163, "credit_id": "52fe4245c3a36847f80113b7", "cast_id": 9, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 4}, {"name": "Josh Lucas", "character": "Hansen", "id": 6164, "credit_id": "52fe4245c3a36847f80113bb", "cast_id": 10, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 5}, {"name": "Anthony Rapp", "character": "Bender", "id": 6165, "credit_id": "52fe4245c3a36847f80113bf", "cast_id": 11, "profile_path": "/a9SBIDqSXkJaxJHqDaHXNkLhOUs.jpg", "order": 6}, {"name": "Jason Gray-Stanford", "character": "Ainsley", "id": 6166, "credit_id": "52fe4245c3a36847f80113c3", "cast_id": 12, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 7}, {"name": "Judd Hirsch", "character": "Helinger", "id": 6167, "credit_id": "52fe4245c3a36847f80113c7", "cast_id": 13, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 8}, {"name": "Austin Pendleton", "character": "Thomas King", "id": 6168, "credit_id": "52fe4245c3a36847f80113cb", "cast_id": 14, "profile_path": "/pxcdhd4oAsnhvUg0BalmiiKJyXg.jpg", "order": 9}, {"name": "Vivien Cardone", "character": "Marcee", "id": 6169, "credit_id": "52fe4245c3a36847f80113cf", "cast_id": 15, "profile_path": "/kPE1dEd7obmXyc3vOfJSnTkDSXS.jpg", "order": 10}, {"name": "Jillie Simon", "character": "Bar Co-Ed", "id": 6170, "credit_id": "52fe4245c3a36847f80113d3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Victor Steinbach", "character": "Prof. Horner", "id": 6171, "credit_id": "52fe4245c3a36847f80113d7", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Tanya Clarke", "character": "Becky", "id": 6172, "credit_id": "52fe4245c3a36847f80113db", "cast_id": 18, "profile_path": "/zLpLrVzihPObD6h72KFxTNqdKuq.jpg", "order": 13}, {"name": "Thomas F. Walsh", "character": "Captain", "id": 6173, "credit_id": "52fe4245c3a36847f80113df", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Jesse Doran", "character": "General", "id": 6174, "credit_id": "52fe4245c3a36847f80113e3", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Kent Cassella", "character": "Analyst", "id": 6175, "credit_id": "52fe4245c3a36847f80113e7", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Patrick Blindauer", "character": "MIT Student", "id": 6176, "credit_id": "52fe4245c3a36847f80113eb", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "John Blaylock", "character": "Photographer", "id": 6177, "credit_id": "52fe4245c3a36847f80113ef", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Roy Thinnes", "character": "Governor", "id": 6178, "credit_id": "52fe4245c3a36847f80113f3", "cast_id": 24, "profile_path": "/tb8ZfsFfl8Smhr719E3pRutPJa9.jpg", "order": 19}, {"name": "Anthony Easton", "character": "Young Man", "id": 6179, "credit_id": "52fe4245c3a36847f80113f7", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "Cheryl Howard", "character": "Harvard Administrator", "id": 6180, "credit_id": "52fe4245c3a36847f80113fb", "cast_id": 26, "profile_path": "/sKnhM1uzCpi5uQrUbsx4C5ItrbB.jpg", "order": 21}, {"name": "Josh Pais", "character": "Princeton Professor", "id": 6181, "credit_id": "52fe4245c3a36847f80113ff", "cast_id": 27, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 22}, {"name": "David B. Allen", "character": "John Nash Teenager", "id": 6182, "credit_id": "52fe4245c3a36847f8011403", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Michael Esper", "character": "John Nash Young Man", "id": 6183, "credit_id": "52fe4245c3a36847f8011407", "cast_id": 29, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 24}, {"name": "Erik Van Wyck", "character": "Princeton Student", "id": 983467, "credit_id": "52fe4245c3a36847f8011477", "cast_id": 48, "profile_path": "/bEst6J6rjGWtIazgE4KqJc9R8qG.jpg", "order": 25}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f8011393", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 7.2, "runtime": 135}, "454": {"poster_path": "/f9C1NpoQfQ7Z4fJkyihNcjNDQJ.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147298761, "overview": "In director Baz Luhrmann's contemporary take on William Shakespeare's classic tragedy, the Montagues and Capulets have moved their ongoing feud to the sweltering suburb of Verona Beach, where Romeo and Juliet fall in love and secretly wed. Though the film is visually modern, the bard's dialogue remains.", "video": false, "id": 454, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Romeo + Juliet", "tagline": "My only love sprung from my only hate.", "vote_count": 268, "homepage": "http://www.romeoandjuliet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117509", "adult": false, "backdrop_path": "/ldiZsKkwVR7sHnkQZmzoPhKmEo3.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Bazmark Films", "id": 240}], "release_date": "1996-10-31", "popularity": 0.973622048439401, "original_title": "Romeo + Juliet", "budget": 14500000, "cast": [{"name": "Leonardo DiCaprio", "character": "Romeo", "id": 6193, "credit_id": "52fe4245c3a36847f80114bf", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Claire Danes", "character": "Juliet", "id": 6194, "credit_id": "52fe4245c3a36847f80114c3", "cast_id": 2, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Tybalt", "id": 5723, "credit_id": "52fe4245c3a36847f80114c7", "cast_id": 3, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Harold Perrineau", "character": "Mercutio", "id": 6195, "credit_id": "52fe4245c3a36847f80114cb", "cast_id": 4, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 3}, {"name": "Pete Postlethwaite", "character": "Father Laurence", "id": 4935, "credit_id": "52fe4245c3a36847f80114cf", "cast_id": 5, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 4}, {"name": "Paul Sorvino", "character": "Fulgencio Capulet", "id": 7004, "credit_id": "52fe4245c3a36847f8011563", "cast_id": 34, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 5}, {"name": "Brian Dennehy", "character": "Ted Montague", "id": 6197, "credit_id": "52fe4245c3a36847f80114d3", "cast_id": 6, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 6}, {"name": "Vondie Curtis-Hall", "character": "Captain Prince", "id": 6198, "credit_id": "52fe4245c3a36847f80114d7", "cast_id": 7, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 7}, {"name": "Miriam Margolyes", "character": "The Nurse", "id": 6199, "credit_id": "52fe4245c3a36847f80114db", "cast_id": 8, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 8}, {"name": "Diane Venora", "character": "Gloria Capulet", "id": 6200, "credit_id": "52fe4245c3a36847f80114df", "cast_id": 9, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 9}, {"name": "Jamie Kennedy", "character": "Sampson", "id": 6213, "credit_id": "52fe4245c3a36847f801154f", "cast_id": 29, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 10}, {"name": "Dash Mihok", "character": "Benvolio", "id": 6066, "credit_id": "52fe4245c3a36847f8011553", "cast_id": 30, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 11}, {"name": "Vincent Laresca", "character": "Abra", "id": 1983, "credit_id": "52fe4245c3a36847f8011557", "cast_id": 31, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 12}, {"name": "Edwina Moore", "character": "Anchorwoman", "id": 6214, "credit_id": "52fe4245c3a36847f801155b", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Paul Rudd", "character": "Dave Paris", "id": 22226, "credit_id": "52fe4245c3a36847f801155f", "cast_id": 33, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 14}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f8011539", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 6.3, "runtime": 120}, "455": {"poster_path": "/vb3AtMPnFCh5wLKNoowe2bbos8Y.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76578641, "overview": "Indian director Gurinder Chadha creates a coming-of-age story of a young Indian girl who is torn between adhering to family traditions and attaining super-stardom on the soccer field.", "video": false, "id": 455, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Bend It Like Beckham", "tagline": "Who wants to cook Aloo Gobi when you can bend a ball like Beckham?", "vote_count": 109, "homepage": "http://www2.foxsearchlight.com/benditlikebeckham/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pa", "name": "\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40"}], "imdb_id": "tt0286499", "adult": false, "backdrop_path": "/gLFYabYISrrpixzNREl3TlLEJ2v.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Kintop Pictures", "id": 1490}, {"name": "Filmf\u00f6rderung Hamburg", "id": 2406}, {"name": "UK Film Council", "id": 2452}], "release_date": "2002-04-11", "popularity": 0.840203440353288, "original_title": "Bend It Like Beckham", "budget": 3500159, "cast": [{"name": "Parminder Nagra", "character": "Jesminder 'Jess' Kaur Bhamra", "id": 231610, "credit_id": "52fe4246c3a36847f8011651", "cast_id": 33, "profile_path": "/dwOh7WvwhcK8qXzGuMLhueiy1C.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Juliette 'Jules' Paxton", "id": 116, "credit_id": "52fe4245c3a36847f80115ad", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Jonathan Rhys Meyers", "character": "Joe", "id": 1244, "credit_id": "52fe4245c3a36847f80115b1", "cast_id": 3, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 2}, {"name": "Anupam Kher", "character": "Mr. Bhamra", "id": 6217, "credit_id": "52fe4245c3a36847f80115b5", "cast_id": 4, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 3}, {"name": "Shaheen Khan", "character": "Mrs. Bhamra", "id": 6218, "credit_id": "52fe4245c3a36847f80115b9", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Frank Harper", "character": "Alan Paxton", "id": 990, "credit_id": "52fe4246c3a36847f8011641", "cast_id": 29, "profile_path": "/6MaOt1Q6Js7jiA3qsHIcSGY1bbf.jpg", "order": 5}, {"name": "Juliet Stevenson", "character": "Paula Paxton", "id": 6238, "credit_id": "52fe4246c3a36847f8011645", "cast_id": 30, "profile_path": "/1LBlN6J5e6kj3y6oxnxErAJidL8.jpg", "order": 6}, {"name": "Ameet Chana", "character": "Tony", "id": 6239, "credit_id": "52fe4246c3a36847f8011649", "cast_id": 31, "profile_path": "/yS2siAYTSMqUBwtPpVQ7ONrJbrC.jpg", "order": 7}, {"name": "Archie Panjabi", "character": "Pinky Bhamra", "id": 128645, "credit_id": "52fe4246c3a36847f801164d", "cast_id": 32, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 8}, {"name": "Pooja Shah", "character": "Meena", "id": 1227682, "credit_id": "52fe4246c3a36847f8011655", "cast_id": 34, "profile_path": "/sfIqXN8AxH7mVGEMmI7Jt8vakgU.jpg", "order": 9}, {"name": "Preeya Kalidas", "character": "Monica", "id": 117795, "credit_id": "52fe4246c3a36847f8011659", "cast_id": 35, "profile_path": "/4toEBtcEY0lIKqEoliz5T0bEtMj.jpg", "order": 10}, {"name": "Ace Bhatti", "character": "Nairobi Grandson", "id": 1227784, "credit_id": "52fe4246c3a36847f801165d", "cast_id": 36, "profile_path": null, "order": 11}], "directors": [{"name": "Gurinder Chadha", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f80115bf", "profile_path": "/AbUt77nmapBzaXMq9EvNNjK0ZMm.jpg", "id": 6220}], "vote_average": 5.9, "runtime": 112}, "57800": {"poster_path": "/u30xsZd3mijrdBKA6CeDsozx48g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 877244782, "overview": "Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.", "video": false, "id": 57800, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age: Continental Drift", "tagline": "Manny, Diego, and Sid embark upon another adventure after their continent is set adrift.", "vote_count": 1346, "homepage": "http://www.iceagemovie.com/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1667889", "adult": false, "backdrop_path": "/tZGKKeWGejt63jiSdi7MTAjCFE9.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2012-07-13", "popularity": 2.11935447192291, "original_title": "Ice Age: Continental Drift", "budget": 95000000, "cast": [{"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe4945c3a36847f8191f47", "cast_id": 3, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 0}, {"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe4945c3a36847f8191f4b", "cast_id": 4, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 1}, {"name": "Chris Wedge", "character": "Scrat (voice)", "id": 5713, "credit_id": "52fe4945c3a36847f8191f43", "cast_id": 2, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 2}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe4945c3a36847f8191f4f", "cast_id": 5, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 3}, {"name": "Seann William Scott", "character": "Crash (voice)", "id": 57599, "credit_id": "52fe4945c3a36847f8191f65", "cast_id": 9, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 4}, {"name": "Jennifer Lopez", "character": "Shira (voice)", "id": 16866, "credit_id": "52fe4945c3a36847f8191f69", "cast_id": 10, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 5}, {"name": "Queen Latifah", "character": "Ellie (voice)", "id": 15758, "credit_id": "52fe4945c3a36847f8191f6d", "cast_id": 11, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Captain Gutt (voice)", "id": 22970, "credit_id": "52fe4945c3a36847f8191f71", "cast_id": 12, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Nick Frost", "character": "Flynn (voice)", "id": 11109, "credit_id": "52fe4945c3a36847f8191f75", "cast_id": 13, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 8}, {"name": "Josh Gad", "character": "Louis (voice)", "id": 54415, "credit_id": "52fe4945c3a36847f8191f79", "cast_id": 14, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 9}, {"name": "Nicki Minaj", "character": "Steffie (voice)", "id": 968660, "credit_id": "52fe4945c3a36847f8191f7d", "cast_id": 15, "profile_path": "/kxbMXTarZ7btT0BEHx700chph7m.jpg", "order": 10}, {"name": "Heather Morris", "character": "Katie (voice)", "id": 221606, "credit_id": "52fe4946c3a36847f8191f81", "cast_id": 16, "profile_path": "/koExd1GaoNDXtDe07DqfgIYpewC.jpg", "order": 11}, {"name": "Wanda Sykes", "character": "Granny (voice)", "id": 27102, "credit_id": "52fe4946c3a36847f8191f85", "cast_id": 17, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 12}, {"name": "Alan Tudyk", "character": "Milton / Hunky Siren (voice)", "id": 21088, "credit_id": "52fe4946c3a36847f8191f89", "cast_id": 18, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 13}, {"name": "Rebel Wilson", "character": "Raz (voice)", "id": 221581, "credit_id": "52fe4946c3a36847f8191f8d", "cast_id": 19, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 14}, {"name": "Aziz Ansari", "character": "Squint (voice)", "id": 86626, "credit_id": "52fe4946c3a36847f8191f91", "cast_id": 20, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 15}, {"name": "Joy Behar", "character": "Eunice (voice)", "id": 166772, "credit_id": "52fe4946c3a36847f8191f95", "cast_id": 21, "profile_path": "/85fQO74oEjAYKz9kojRA87svf3F.jpg", "order": 16}, {"name": "Christopher Campbell", "character": "Creature Siren (voice)", "id": 1315615, "credit_id": "53620d3a0e0a2649b1001282", "cast_id": 23, "profile_path": null, "order": 17}], "directors": [{"name": "Steve Martino", "department": "Directing", "job": "Director", "credit_id": "52fe4945c3a36847f8191f3f", "profile_path": "/rrzPXZh0fj0QBkfWGOZdtb9Ppy1.jpg", "id": 71729}, {"name": "Mike Thurmeier", "department": "Directing", "job": "Director", "credit_id": "52fe4945c3a36847f8191f61", "profile_path": "/zrnMfWbX5rrmZSmTPZZDD6RqdOE.jpg", "id": 229962}], "vote_average": 6.1, "runtime": 88}, "9823": {"poster_path": "/rV6gISHgfmppOJ41UNFlAvNg9ZI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51000000, "overview": "A group of heroic warriors has only six days to save the planet in \"Mortal Kombat Annihilation.\" To succeed they must survive the most spectacular series of challenges any human, or god, has ever encountered as they battle an evil warlord bent on taking control of Earth. Sequel to the film \"Mortal Kombat,\" and based on the popular video game.", "video": false, "id": 9823, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Mortal Kombat: Annihilation", "tagline": "The world was created in six days, so too shall it be destroyed and on the seventh day mankind will rest... in peace", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qD3efz57VGNywAN4lTvgz3FHnBb.jpg", "poster_path": "/quwcbufZZiTMUjuiGSLKBkWWaga.jpg", "id": 9818, "name": "Mortal Kombat Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119707", "adult": false, "backdrop_path": "/ka8gyslJtjmnZ8Xk7YyoYwgo2ud.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Threshold Entertainment", "id": 4174}], "release_date": "1997-11-21", "popularity": 0.749752871275398, "original_title": "Mortal Kombat: Annihilation", "budget": 30000000, "cast": [{"name": "Robin Shou", "character": "Liu Kang", "id": 57250, "credit_id": "52fe4534c3a36847f80c2023", "cast_id": 1, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 0}, {"name": "Talisa Soto", "character": "Kitana", "id": 10680, "credit_id": "52fe4534c3a36847f80c2027", "cast_id": 2, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 1}, {"name": "Sandra Hess", "character": "Sonya Blade", "id": 59642, "credit_id": "52fe4534c3a36847f80c202b", "cast_id": 3, "profile_path": "/dBgs8LxZgMbfdNw8yZqEvB6HYZM.jpg", "order": 2}, {"name": "Lynn 'Red' Williams", "character": "Jax", "id": 59643, "credit_id": "52fe4534c3a36847f80c202f", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "James Remar", "character": "Rayden", "id": 1736, "credit_id": "52fe4534c3a36847f80c204b", "cast_id": 9, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 4}, {"name": "Brian Thompson", "character": "Shao-Kahn", "id": 2719, "credit_id": "52fe4534c3a36847f80c204f", "cast_id": 10, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 5}, {"name": "Reiner Sch\u00f6ne", "character": "Shinnok", "id": 38624, "credit_id": "52fe4534c3a36847f80c2053", "cast_id": 11, "profile_path": "/iVgta6yRKanExYsyhmbKv77HRyP.jpg", "order": 6}, {"name": "Musetta Vander", "character": "Sindel", "id": 1475, "credit_id": "52fe4534c3a36847f80c2057", "cast_id": 12, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 7}, {"name": "Irina Pantaeva", "character": "Jade", "id": 69532, "credit_id": "52fe4534c3a36847f80c205b", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Deron McBee", "character": "Motaro", "id": 31368, "credit_id": "52fe4534c3a36847f80c205f", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Marjean Holden", "character": "Sheeva", "id": 106728, "credit_id": "52fe4534c3a36847f80c2063", "cast_id": 15, "profile_path": "/6oK37CIHfEeJrn2ZdefS0nx9WnW.jpg", "order": 10}, {"name": "Litefoot", "character": "Nightwolf", "id": 69302, "credit_id": "52fe4534c3a36847f80c2067", "cast_id": 16, "profile_path": "/6MmZFvtuY2Vmnt6lDsC7hw8lk4X.jpg", "order": 11}, {"name": "Chris Conrad", "character": "Johnny Cage", "id": 227199, "credit_id": "52fe4534c3a36847f80c206b", "cast_id": 17, "profile_path": "/mPwhcY9CfnelhKgEV3OAxfg36xH.jpg", "order": 12}, {"name": "John Medlen", "character": "Ermac", "id": 1068803, "credit_id": "52fe4534c3a36847f80c206f", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "J.J. Perry", "character": "Cyrax / Scorpion", "id": 131532, "credit_id": "52fe4534c3a36847f80c2073", "cast_id": 19, "profile_path": null, "order": 14}], "directors": [{"name": "John R. Leonetti", "department": "Directing", "job": "Director", "credit_id": "52fe4534c3a36847f80c2035", "profile_path": "/7cKC9u81p5OL5loj2PzjepPcjFV.jpg", "id": 26714}], "vote_average": 4.3, "runtime": 95}, "462": {"poster_path": "/8WLnzPVUh9rSYGGQ11q4wfbwf6H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 256271286, "overview": "A twice-divorced mother of three who sees an injustice, takes on the bad guy and wins -- with a little help from her push-up bra. Erin goes to work for an attorney and comes across medical records describing illnesses clustered in one nearby town. She starts investigating and soon exposes a monumental cover-up.", "video": false, "id": 462, "genres": [{"id": 18, "name": "Drama"}], "title": "Erin Brockovich", "tagline": "She brought a small town to its feet and a huge corporation to its knees.", "vote_count": 186, "homepage": "http://www.brockovich.com/movie.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0195685", "adult": false, "backdrop_path": "/b21P45NQHZ9J8C871pNBrK0rJr3.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2000-03-13", "popularity": 0.934131455255207, "original_title": "Erin Brockovich", "budget": 51000000, "cast": [{"name": "Julia Roberts", "character": "Erin Brockovich", "id": 1204, "credit_id": "52fe4246c3a36847f801198d", "cast_id": 25, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Albert Finney", "character": "Ed Masry", "id": 3926, "credit_id": "52fe4246c3a36847f8011991", "cast_id": 26, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "George", "id": 6383, "credit_id": "52fe4246c3a36847f8011995", "cast_id": 27, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Marg Helgenberger", "character": "Donna Jensen", "id": 19838, "credit_id": "52fe4246c3a36847f8011999", "cast_id": 28, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 3}, {"name": "Cherry Jones", "character": "Pamela Duncan", "id": 1956, "credit_id": "52fe4246c3a36847f801199d", "cast_id": 29, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 4}, {"name": "Veanne Cox", "character": "Theresa Dallavale", "id": 26719, "credit_id": "52fe4246c3a36847f80119a1", "cast_id": 30, "profile_path": "/7fxVktlpPBAEWImceQB9wTPb90H.jpg", "order": 5}, {"name": "Conchata Ferrell", "character": "Brenda", "id": 1909, "credit_id": "52fe4246c3a36847f80119a5", "cast_id": 31, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 6}, {"name": "Tracey Walter", "character": "Charles Embry", "id": 3801, "credit_id": "52fe4246c3a36847f80119a9", "cast_id": 32, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 7}, {"name": "Peter Coyote", "character": "Kurt Potter", "id": 9979, "credit_id": "52fe4246c3a36847f80119ad", "cast_id": 33, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 8}, {"name": "Erin Brockovich", "character": "Julia R.", "id": 1248986, "credit_id": "543db078c3a368251a00086b", "cast_id": 34, "profile_path": null, "order": 9}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4246c3a36847f801193b", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.7, "runtime": 131}, "8656": {"poster_path": "/nbF4Tuj4OY8btrjoOHtk64hkKbJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140464664, "overview": "A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.", "video": false, "id": 8656, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Deep Impact", "tagline": "Heaven and Earth are about to collide.", "vote_count": 229, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120647", "adult": false, "backdrop_path": "/n4SEfHpFZFRHxNMX4qNjqOQkWJp.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Zanuck/Brown Productions", "id": 1865}, {"name": "Manhattan Project", "id": 2478}], "release_date": "1998-05-07", "popularity": 0.695298803492022, "original_title": "Deep Impact", "budget": 75000000, "cast": [{"name": "Robert Duvall", "character": "Capt. Spurgeon 'Fish' Tanner", "id": 3087, "credit_id": "52fe44b2c3a36847f80a4df9", "cast_id": 1, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Jenny Lerner", "id": 4939, "credit_id": "52fe44b2c3a36847f80a4dfd", "cast_id": 2, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Leo Biederman", "id": 109, "credit_id": "52fe44b2c3a36847f80a4e01", "cast_id": 3, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Vanessa Redgrave", "character": "Robin Lerner", "id": 13333, "credit_id": "52fe44b2c3a36847f80a4e05", "cast_id": 4, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 3}, {"name": "Morgan Freeman", "character": "President Tom Beck", "id": 192, "credit_id": "52fe44b2c3a36847f80a4e09", "cast_id": 5, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 4}, {"name": "Maximilian Schell", "character": "Jason Lerner", "id": 12150, "credit_id": "52fe44b2c3a36847f80a4e0d", "cast_id": 6, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 5}, {"name": "Leelee Sobieski", "character": "Sarah Hotchner", "id": 22290, "credit_id": "52fe44b2c3a36847f80a4e59", "cast_id": 19, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 6}, {"name": "James Cromwell", "character": "Alan Rittenhouse", "id": 2505, "credit_id": "52fe44b2c3a36847f80a4e5d", "cast_id": 20, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 7}, {"name": "Jon Favreau", "character": "Gus Partenza", "id": 15277, "credit_id": "52fe44b2c3a36847f80a4e61", "cast_id": 21, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 8}, {"name": "Laura Innes", "character": "Beth Stanley", "id": 454973, "credit_id": "52fe44b2c3a36847f80a4e65", "cast_id": 22, "profile_path": "/1XMMSTVdPIgYfxUwTF4em8T5rB0.jpg", "order": 9}, {"name": "Mary McCormack", "character": "Andrea Baker", "id": 1980, "credit_id": "52fe44b2c3a36847f80a4e69", "cast_id": 23, "profile_path": "/vMS1VGv0Cd2PMo2cuceNBPsd1GH.jpg", "order": 10}, {"name": "Richard Schiff", "character": "Don Biederman", "id": 31028, "credit_id": "52fe44b2c3a36847f80a4e6d", "cast_id": 24, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 11}, {"name": "Blair Underwood", "character": "Mark Simon", "id": 56871, "credit_id": "52fe44b2c3a36847f80a4e71", "cast_id": 25, "profile_path": "/xDqEtEwJNb3fDYnopeFlmMYVQ66.jpg", "order": 12}, {"name": "Charles Martin Smith", "character": "Dr. Marcus Wolf (uncredited)", "id": 1270, "credit_id": "52fe44b2c3a36847f80a4e75", "cast_id": 26, "profile_path": "/fahfWqqrdJwajrfEGmEOXQ1p9bm.jpg", "order": 13}, {"name": "Una Damon", "character": "Marianne Duclos", "id": 154644, "credit_id": "52fe44b2c3a36847f80a4e79", "cast_id": 27, "profile_path": "/d3dcUIwjXY0mH6QplM98L8fswzA.jpg", "order": 14}, {"name": "Dougray Scott", "character": "Eric Vennekor", "id": 15336, "credit_id": "52fe44b2c3a36847f80a4e7d", "cast_id": 28, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 15}, {"name": "Derek de Lint", "character": "Theo Van Sertema", "id": 9128, "credit_id": "547c40eb9251412d7800237c", "cast_id": 77, "profile_path": "/1BhDuHRp2ffTkYVeGKGQM46xGyN.jpg", "order": 16}, {"name": "Suzy Nakamura", "character": "Jenny's Assistant", "id": 26998, "credit_id": "547c411dc3a3685af00028e2", "cast_id": 78, "profile_path": "/rymamRd9wzjZquxMBKWOkylD5wN.jpg", "order": 17}, {"name": "Alimi Ballard", "character": "Bobby Rhue", "id": 165284, "credit_id": "547c414c9251412d6d00255f", "cast_id": 79, "profile_path": "/zCYjN3Lkkx9GmhEoT9lUV6Dt2hR.jpg", "order": 18}, {"name": "W. Earl Brown", "character": "McCloud", "id": 6951, "credit_id": "547c41659251412d7f0025f7", "cast_id": 80, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 19}, {"name": "Denise Crosby", "character": "Vicky Hotchner", "id": 1743, "credit_id": "547c4182c3a3685af3001f92", "cast_id": 81, "profile_path": "/6vJh3H3dTvgnZ1YoHE1qYM1AbRC.jpg", "order": 20}, {"name": "Jason Dohring", "character": "Jason", "id": 158095, "credit_id": "547c41ab9251412d700027c7", "cast_id": 82, "profile_path": "/8DrH4ERl7JPv1FXDhkAQPOYIL1S.jpg", "order": 21}, {"name": "Tucker Smallwood", "character": "Ivan Brodsky", "id": 92777, "credit_id": "54b4d727c3a368783b001b18", "cast_id": 83, "profile_path": null, "order": 22}, {"name": "Mike O'Malley", "character": "Mike Perry", "id": 87192, "credit_id": "54b4d733c3a368094e008d9a", "cast_id": 84, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 23}, {"name": "Kurtwood Smith", "character": "Otis Hefter", "id": 2115, "credit_id": "54b4d73c92514107e0007973", "cast_id": 85, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 24}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe44b2c3a36847f80a4e13", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 5.5, "runtime": 120}, "470": {"poster_path": "/jOmnwKmy4fF6rQPET62XHfCLFMr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60427839, "overview": "This is the story of three gentle persons: Paul Rivers an ailing mathematician lovelessly married to an English \u00e9migr\u00e9, Christina Peck, an upper-middle-class suburban housewife, happily married and mother of two little girls, and Jack Jordan, an ex-convict who has found in his Christian faith the strength to raise a family. They will be brought together by a terrible accident that will change their lives. By the final frame, none of them will be the same as they will learn harsh truths about love, faith, courage, desire and guilt, and how chance can change our worlds irretrievably, forever.", "video": false, "id": 470, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "21 Grams", "tagline": "How much does life weigh?", "vote_count": 235, "homepage": "http://www.21-grams.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0315733", "adult": false, "backdrop_path": "/lSPsevGgWT3Rqc9OMTyeEsZsOpf.jpg", "production_companies": [{"name": "This Is That Productions", "id": 10059}, {"name": "Y Productions", "id": 10887}, {"name": "Mediana Productions Filmgesellschaft", "id": 10888}], "release_date": "2003-11-21", "popularity": 0.957140817048579, "original_title": "21 Grams", "budget": 20000000, "cast": [{"name": "Sean Penn", "character": "Paul Rivers", "id": 2228, "credit_id": "52fe4247c3a36847f8011e25", "cast_id": 3, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Naomi Watts", "character": "Cristina Peck", "id": 3489, "credit_id": "52fe4247c3a36847f8011e29", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 1}, {"name": "Benicio del Toro", "character": "Jack Jordan", "id": 1121, "credit_id": "52fe4247c3a36847f8011e75", "cast_id": 17, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 2}, {"name": "Danny Huston", "character": "Michael", "id": 6413, "credit_id": "52fe4247c3a36847f8011e79", "cast_id": 18, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Carly Nahon", "character": "Cathy", "id": 6830, "credit_id": "52fe4247c3a36847f8011e7d", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Claire Pakis", "character": "Laura", "id": 6831, "credit_id": "52fe4247c3a36847f8011e81", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Eddie Marsan", "character": "Reverend John", "id": 1665, "credit_id": "52fe4247c3a36847f8011e85", "cast_id": 21, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 6}, {"name": "Melissa Leo", "character": "Marianne Jordan", "id": 6832, "credit_id": "52fe4247c3a36847f8011e89", "cast_id": 22, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 7}, {"name": "Charlotte Gainsbourg", "character": "Mary Rivers", "id": 4273, "credit_id": "52fe4247c3a36847f8011e8d", "cast_id": 23, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 8}, {"name": "Clea DuVall", "character": "Claudia", "id": 20387, "credit_id": "52fe4247c3a36847f8011e91", "cast_id": 24, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 9}, {"name": "Teresa Delgado", "character": "Gina", "id": 1276049, "credit_id": "52fe4247c3a36847f8011e95", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Denis O'Hare", "character": "Dr. Rothberg", "id": 81681, "credit_id": "52fe4247c3a36847f8011e99", "cast_id": 26, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 11}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe4247c3a36847f8011e1b", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 6.9, "runtime": 124}, "473": {"poster_path": "/d4pDorUHjIVFiVGiJar6sF2r8TQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3221152, "overview": "The debut film from Darren Aronofsky in which a mathematical genius Maximilian Cohen discovers a link in the connection between numbers and reality and thus believes he can predict the future.", "video": false, "id": 473, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Pi", "tagline": "There will be no order, only chaos", "vote_count": 124, "homepage": "http://www.pithemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138704", "adult": false, "backdrop_path": "/v8hOSHK0dwgwR80CZuxvMFc0DCx.jpg", "production_companies": [{"name": "Harvest Filmworks", "id": 22566}, {"name": "Truth and Soul Pictures Inc", "id": 379}, {"name": "Plantain Films", "id": 22567}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "1998-07-10", "popularity": 1.00941619605592, "original_title": "\u03c0", "budget": 60000, "cast": [{"name": "Sean Gullette", "character": "Maximillian Cohen", "id": 6432, "credit_id": "52fe4247c3a36847f8011f57", "cast_id": 5, "profile_path": "/mYW9HkRhFvubojfZZX5jbTXLsZa.jpg", "order": 0}, {"name": "Mark Margolis", "character": "Sol Robeson", "id": 1173, "credit_id": "52fe4247c3a36847f8011f7f", "cast_id": 12, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 1}, {"name": "Ben Shenkman", "character": "Lenny Meyer", "id": 6437, "credit_id": "52fe4247c3a36847f8011f83", "cast_id": 13, "profile_path": "/ocLEexcLxffgLJ41wuqc80YmdeY.jpg", "order": 2}, {"name": "Stephen Pearlman", "character": "Rabbi Cohen", "id": 6438, "credit_id": "52fe4247c3a36847f8011f87", "cast_id": 15, "profile_path": "/a1LcI65LvyKKi5UmaAc2PPihsQm.jpg", "order": 3}, {"name": "Samia Shoaib", "character": "Devi", "id": 6439, "credit_id": "52fe4247c3a36847f8011f8b", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Ajay Naidu", "character": "Farroukh", "id": 1982, "credit_id": "52fe4247c3a36847f8011f8f", "cast_id": 17, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 5}, {"name": "Kristyn Mae-Anne Lao", "character": "Jenna", "id": 6440, "credit_id": "52fe4247c3a36847f8011f93", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Espher Lao Nieves", "character": "Jenna's Mom", "id": 6441, "credit_id": "52fe4247c3a36847f8011f97", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Pamela Hart", "character": "Marcy Dawson", "id": 177560, "credit_id": "52fe4247c3a36847f8011fad", "cast_id": 23, "profile_path": null, "order": 8}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe4247c3a36847f8011f53", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 7.0, "runtime": 84}, "475": {"poster_path": "/isuVmlzVtJVUqySAmkjLB4kXdNm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50700000, "overview": "Bonnie and Clyde is based on the true stories of the gangster pair Bonnie Parker and Clyde Barrow who in the 1930s began robbing banks in U.S. cities until they were eventually killed. The film is a major landmark in the aesthetic movement known as the New Hollywood.", "video": false, "id": 475, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bonnie and Clyde", "tagline": "They\u2019re young\u2026 they\u2019re in love\u2026 and they kill people.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061418", "adult": false, "backdrop_path": "/lQPMBJ1rm9Qk0cHd1C1lAbJcXJj.jpg", "production_companies": [{"name": "Tatira-Hiller Productions", "id": 273}, {"name": "Warner Brothers/Seven Arts", "id": 4051}], "release_date": "1967-08-04", "popularity": 0.262686325326877, "original_title": "Bonnie and Clyde", "budget": 2500000, "cast": [{"name": "Warren Beatty", "character": "Clyde Barrow", "id": 6449, "credit_id": "52fe4247c3a36847f8011feb", "cast_id": 2, "profile_path": "/qVwqGRh3gkjwF7DESvoYDINfnCM.jpg", "order": 0}, {"name": "Faye Dunaway", "character": "Bonnie Parker", "id": 6450, "credit_id": "52fe4247c3a36847f8011fef", "cast_id": 3, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 1}, {"name": "Michael J. Pollard", "character": "C.W. Moss", "id": 6451, "credit_id": "52fe4247c3a36847f8011ff3", "cast_id": 4, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 2}, {"name": "Gene Wilder", "character": "Eugene Grizzard", "id": 3460, "credit_id": "52fe4247c3a36847f8011ff7", "cast_id": 5, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 3}, {"name": "Gene Hackman", "character": "Buck Barrow", "id": 193, "credit_id": "52fe4248c3a36847f801203d", "cast_id": 17, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 4}, {"name": "Estelle Parsons", "character": "Blanche", "id": 6461, "credit_id": "52fe4248c3a36847f8012041", "cast_id": 18, "profile_path": "/oqNpQBYgDvBCrLGzRDJwclNBDmd.jpg", "order": 5}, {"name": "Denver Pyle", "character": "Frank Hamer", "id": 6462, "credit_id": "52fe4248c3a36847f8012045", "cast_id": 19, "profile_path": "/cnO648FW7r1NQqHZsPkJBACfXal.jpg", "order": 6}, {"name": "Dub Taylor", "character": "Ivan Moss", "id": 6463, "credit_id": "52fe4248c3a36847f8012049", "cast_id": 20, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 7}, {"name": "Evans Evans", "character": "Velma Davis", "id": 6464, "credit_id": "52fe4248c3a36847f801204d", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Mabel Cavitt", "character": "Bonnie's mother", "id": 6798, "credit_id": "52fe4248c3a36847f801205d", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Arthur Penn", "department": "Directing", "job": "Director", "credit_id": "52fe4247c3a36847f8011fe7", "profile_path": "/cUyfXc7nQf1qhuxtdtL8CNHPKXC.jpg", "id": 6448}], "vote_average": 7.7, "runtime": 111}, "41436": {"poster_path": "/hFMMrqDR16yNRf77plyvbkxohg6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177512032, "overview": "Just as Dan and Kristi welcome a newborn baby into their home, a demonic presence begins terrorizing them, tearing apart their perfect world and turning it into an inescapable nightmare. Security cameras capture the torment, making every minute horrifyingly real.", "video": false, "id": 41436, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Paranormal Activity 2", "tagline": "In 2009 you demanded it. Nothing can prepare you for what's next.", "vote_count": 180, "homepage": "http://www.paranormalmovie.com/trailer/", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1536044", "adult": false, "backdrop_path": "/dhaxwFoaOGIKnJiqHl5hndmyU0s.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}], "release_date": "2010-10-20", "popularity": 0.682220202664951, "original_title": "Paranormal Activity 2", "budget": 3000000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe45cac3a36847f80da779", "cast_id": 3, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "David Bierend", "character": "Surveillance Camera Expert", "id": 141373, "credit_id": "52fe45cac3a36847f80da77d", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Brian Boland", "character": "Daniel Rey", "id": 87220, "credit_id": "52fe45cac3a36847f80da781", "cast_id": 5, "profile_path": "/lZreGWhm68vzL6yCw5hz2WdlFCX.jpg", "order": 2}, {"name": "Molly Ephraim", "character": "Ali Rey", "id": 141374, "credit_id": "52fe45cac3a36847f80da785", "cast_id": 6, "profile_path": "/d0jIHbnipL3VpDSk25sqyFT2Y7O.jpg", "order": 3}, {"name": "Seth Ginsberg", "character": "Brad", "id": 141378, "credit_id": "52fe45cac3a36847f80da789", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Sprague Grayden", "character": "Kristi Rey", "id": 118243, "credit_id": "52fe45cac3a36847f80da78d", "cast_id": 8, "profile_path": "/xgFJngEapZILERHqwkxu07LNZwN.jpg", "order": 5}, {"name": "William Juan Prieto", "character": "Hunter Rey", "id": 141382, "credit_id": "52fe45cac3a36847f80da791", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Jackson Xenia Prieto", "character": "Hunter Rey", "id": 141385, "credit_id": "52fe45cac3a36847f80da795", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Micah Sloat", "character": "Micah", "id": 90597, "credit_id": "52fe45cac3a36847f80da799", "cast_id": 11, "profile_path": "/mOmwvae1N5eZqDZBqaHPe2JiTQV.jpg", "order": 8}, {"name": "Vivis Cortez", "character": "Martine", "id": 141387, "credit_id": "52fe45cac3a36847f80da79d", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Tod Williams", "department": "Directing", "job": "Director", "credit_id": "52fe45cac3a36847f80da775", "profile_path": null, "id": 20133}], "vote_average": 5.8, "runtime": 91}, "8669": {"poster_path": "/xCirDLSaQwuPhKyQ2kP9AGLidQ0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Awkward teenager Charlie Bartlett (Anton Yelchin) has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.", "video": false, "id": 8669, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Charlie Bartlett", "tagline": "Popularity is a state of mind.", "vote_count": 50, "homepage": "http://www.charliebartlett-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0423977", "adult": false, "backdrop_path": "/mw6yIekHtl1eLCMLVc9vPfHNSsJ.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2007-05-01", "popularity": 0.323334593502107, "original_title": "Charlie Bartlett", "budget": 12000000, "cast": [{"name": "Anton Yelchin", "character": "Charlie Bartlett", "id": 21028, "credit_id": "52fe44b3c3a36847f80a5139", "cast_id": 10, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Nathan Gardner", "id": 3223, "credit_id": "52fe44b3c3a36847f80a5159", "cast_id": 21, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Hope Davis", "character": "Marilyn Bartlett", "id": 15250, "credit_id": "52fe44b3c3a36847f80a515d", "cast_id": 22, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 2}, {"name": "Kat Dennings", "character": "Susan Gardner", "id": 52852, "credit_id": "52fe44b3c3a36847f80a513d", "cast_id": 13, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 3}, {"name": "Tyler Hilton", "character": "Murphy Bivens", "id": 419, "credit_id": "52fe44b3c3a36847f80a5141", "cast_id": 14, "profile_path": "/6CKulnmKgIuKB455pHd0m8hWeFm.jpg", "order": 4}, {"name": "Mark Rendall", "character": "Kip Crombwell", "id": 34918, "credit_id": "52fe44b3c3a36847f80a5145", "cast_id": 15, "profile_path": "/4c2wmuLgfgBZwV3cJmdGjtC1Pc1.jpg", "order": 5}, {"name": "Dylan Taylor", "character": "Len Arbuckle", "id": 55614, "credit_id": "52fe44b3c3a36847f80a5149", "cast_id": 16, "profile_path": "/8BfilcbTNnDysk8F3gW8FTfZicp.jpg", "order": 6}, {"name": "Megan Park", "character": "Whitney Drummond", "id": 55615, "credit_id": "52fe44b3c3a36847f80a514d", "cast_id": 17, "profile_path": "/AjIaQKbjMgYcJxalCBM4MGREss0.jpg", "order": 7}, {"name": "Jake Epstein", "character": "Dustin Lauderbach", "id": 1212580, "credit_id": "52fe44b3c3a36847f80a5161", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Jonathan Malen", "character": "Jordan Sunder", "id": 116638, "credit_id": "52fe44b3c3a36847f80a5165", "cast_id": 24, "profile_path": "/7JyXJnXZ1327otRcmGG3OdfbqMK.jpg", "order": 9}, {"name": "Derek McGrath", "character": "Superintendent Sedgwick", "id": 1196133, "credit_id": "52fe44b3c3a36847f80a5169", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Stephen Young", "character": "Dr. Stan Weathers", "id": 40551, "credit_id": "52fe44b3c3a36847f80a5151", "cast_id": 18, "profile_path": "/c5GWhpWEnLCTJQLEQR1P5n81fsp.jpg", "order": 11}, {"name": "Ishan Dav\u00e9", "character": "Henry Freemont", "id": 963433, "credit_id": "52fe44b3c3a36847f80a516d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Dave Brown", "character": "Officer Hansen", "id": 182396, "credit_id": "52fe44b3c3a36847f80a5171", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Eric Fink", "character": "Thomas", "id": 94833, "credit_id": "52fe44b3c3a36847f80a5175", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Noam Jenkins", "character": "Dean West", "id": 33668, "credit_id": "52fe44b3c3a36847f80a5179", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Lauren Collins", "character": "Kelly", "id": 88620, "credit_id": "52fe44b3c3a36847f80a517d", "cast_id": 30, "profile_path": "/tJXG80Y7ve9cS0YRHNUG4ehO5ks.jpg", "order": 16}, {"name": "Annick Obonsawin", "character": "Daisy", "id": 1212302, "credit_id": "52fe44b3c3a36847f80a5181", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Sarah Gadon", "character": "Priscilla", "id": 190895, "credit_id": "52fe44b3c3a36847f80a5155", "cast_id": 20, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 18}, {"name": "Aubrey Graham", "character": "A/V Jones", "id": 197315, "credit_id": "52fe44b3c3a36847f80a5185", "cast_id": 32, "profile_path": "/1hQ1hwFe3rNpY8QuMPLrSVVetzx.jpg", "order": 19}, {"name": "Michael D'Ascenzo", "character": "Scott", "id": 205446, "credit_id": "52fe44b3c3a36847f80a5189", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Dwane McLean", "character": "Bus Driver", "id": 1281020, "credit_id": "52fe44b3c3a36847f80a518d", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Quancetia Hamilton", "character": "Mrs. Albertson", "id": 184388, "credit_id": "52fe44b3c3a36847f80a5191", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Richard Alan Campbell", "character": "Dr. Sam Costell", "id": 64310, "credit_id": "52fe44b3c3a36847f80a5195", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Kim Roberts", "character": "Dr. Linda Jenkins", "id": 2676, "credit_id": "52fe44b3c3a36847f80a5199", "cast_id": 37, "profile_path": "/buXKE9uKIjT4u0TZXv32zgqDCOR.jpg", "order": 24}, {"name": "David Fraser", "character": "Dr. Jacob Kaufmann", "id": 44101, "credit_id": "52fe44b3c3a36847f80a519d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Marvin Karon", "character": "Dr. P. Sarossy", "id": 1239376, "credit_id": "52fe44b3c3a36847f80a51a1", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Brendan Murray", "character": "Dorm Head", "id": 1239511, "credit_id": "52fe44b3c3a36847f80a51a5", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Abigail Bernardez", "character": "Cheerleader #1", "id": 1281021, "credit_id": "52fe44b3c3a36847f80a51a9", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Laura Jeanes", "character": "Cheerleader #2", "id": 1281022, "credit_id": "52fe44b3c3a36847f80a51ad", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Annamaria Janice McAndrew", "character": "Cheerleader #3", "id": 1281023, "credit_id": "52fe44b3c3a36847f80a51b1", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Amelia Tenttave", "character": "Len's Girlfriend #1", "id": 1281024, "credit_id": "52fe44b3c3a36847f80a51b5", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Annabelle Singson", "character": "Len's Girlfriend #2", "id": 1281025, "credit_id": "52fe44b3c3a36847f80a51b9", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Julia Cohen", "character": "Receptionist", "id": 1281026, "credit_id": "52fe44b3c3a36847f80a51bd", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Abby Zotz", "character": "Kip's Mom", "id": 1281027, "credit_id": "52fe44b3c3a36847f80a51c1", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Maddy Wilde", "character": "Spiral Beach Band Member", "id": 1281028, "credit_id": "52fe44b3c3a36847f80a51c5", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Dorian Wolf", "character": "Spiral Beach Band Member", "id": 1281029, "credit_id": "52fe44b3c3a36847f80a51c9", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Airick Woodhead", "character": "Spiral Beach Band Member", "id": 1281030, "credit_id": "52fe44b3c3a36847f80a51cd", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Daniel Woodhead", "character": "Spiral Beach Band Member", "id": 1281031, "credit_id": "52fe44b3c3a36847f80a51d1", "cast_id": 51, "profile_path": null, "order": 38}], "directors": [{"name": "Jon Poll", "department": "Directing", "job": "Director", "credit_id": "52fe44b3c3a36847f80a5105", "profile_path": null, "id": 10395}], "vote_average": 6.5, "runtime": 97}, "41439": {"poster_path": "/mBQX4TCfDEk2a5mvu0Z0PFeFoUp.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45300000, "overview": "As a deadly battle rages over Jigsaw's brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.", "video": false, "id": 41439, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}], "title": "Saw: The Final Chapter", "tagline": "The Traps Come Alive", "vote_count": 158, "homepage": "http://www.saw3dmovie.com", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1477076", "adult": false, "backdrop_path": "/hYWa2kS45Ix7K3KrEgY3EAmpM7P.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}, {"name": "Serendipity Productions", "id": 6680}], "release_date": "2010-10-28", "popularity": 0.688361662382175, "original_title": "Saw 3D", "budget": 17000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw / John", "id": 2144, "credit_id": "52fe45cac3a36847f80da81f", "cast_id": 4, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Cary Elwes", "character": "Dr. Lawrence Gordon", "id": 2130, "credit_id": "52fe45cac3a36847f80da823", "cast_id": 5, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 1}, {"name": "Costas Mandylor", "character": "Mark Hoffman", "id": 36055, "credit_id": "52fe45cac3a36847f80da827", "cast_id": 6, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 2}, {"name": "Betsy Russell", "character": "Jill Tuck", "id": 22434, "credit_id": "52fe45cac3a36847f80da82b", "cast_id": 7, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 3}, {"name": "Sean Patrick Flanery", "character": "Bobby Dagen", "id": 54789, "credit_id": "52fe45cac3a36847f80da82f", "cast_id": 8, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 4}, {"name": "Gina Holden", "character": "Joyce", "id": 33336, "credit_id": "52fe45cac3a36847f80da833", "cast_id": 9, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 5}, {"name": "Tanedra Howard", "character": "Simone", "id": 1241157, "credit_id": "54c82b1ec3a3680924000374", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Greg Bryk", "character": "Mallick", "id": 231, "credit_id": "54c82b43c3a3687a650000c9", "cast_id": 24, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 7}], "directors": [{"name": "Kevin Greutert", "department": "Directing", "job": "Director", "credit_id": "52fe45cac3a36847f80da839", "profile_path": "/ffijXhDTs8Up2YQyKRQFIjk5fwc.jpg", "id": 2150}], "vote_average": 6.0, "runtime": 90}, "16866": {"poster_path": "/n4Azjb2DyclHySvHWMUAsGW2Zb1.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104945765, "overview": "When Earth astronaut Capt. Chuck Baker arrives on Planet 51 -- a world reminiscent of American suburbia circa 1950 -- he tries to avoid capture, recover his spaceship and make it home safely, all with the help of an empathetic little green being.", "video": false, "id": 16866, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Planet 51", "tagline": "Something strange is coming to their planet...Us!", "vote_count": 166, "homepage": "http://www.sonypictures.com/movies/planet51/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0762125", "adult": false, "backdrop_path": "/z7z5fg7Ml1hHg67Sbk6pJmmOOT1.jpg", "production_companies": [{"name": "Ilion Animation Studios", "id": 5653}, {"name": "Hand Made Films", "id": 12297}, {"name": "TriStar Pictures", "id": 559}], "release_date": "2009-11-19", "popularity": 1.14420880192622, "original_title": "Planet 51", "budget": 70000000, "cast": [{"name": "Dwayne Johnson", "character": "Capt. Charles 'Chuck' Baker (voice)", "id": 18918, "credit_id": "52fe46f19251416c75088b01", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Skiff (voice)", "id": 57599, "credit_id": "52fe46f19251416c75088b05", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Jessica Biel", "character": "Neera (voice)", "id": 10860, "credit_id": "52fe46f19251416c75088b09", "cast_id": 3, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 2}, {"name": "Justin Long", "character": "Lem (voice)", "id": 15033, "credit_id": "52fe46f19251416c75088b0d", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 3}, {"name": "Gary Oldman", "character": "General Grawl (voice)", "id": 64, "credit_id": "52fe46f19251416c75088b11", "cast_id": 5, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 4}, {"name": "John Cleese", "character": "Professor Kipple (voice)", "id": 8930, "credit_id": "52fe46f19251416c75088b15", "cast_id": 6, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Freddie Benedict", "character": "Eckle (voice)", "id": 968218, "credit_id": "52fe46f19251416c75088b3d", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Alan Marriott", "character": "Glar (voice)", "id": 235815, "credit_id": "52fe46f19251416c75088b41", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mathew Horne", "character": "Soldier Vesklin (voice)", "id": 82806, "credit_id": "52fe46f19251416c75088b45", "cast_id": 17, "profile_path": "/a5qEe4rebEtUYM2CwSOEgKr8mI6.jpg", "order": 8}, {"name": "James Corden", "character": "Soldier Vernkot (voice)", "id": 55466, "credit_id": "52fe46f19251416c75088b49", "cast_id": 18, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 9}, {"name": "Lewis Macleod", "character": "Additional Voice (voice)", "id": 1074722, "credit_id": "52fe46f19251416c75088b4d", "cast_id": 19, "profile_path": "/mv3TTVkxdDn11Gs2AWKvFzAuW7Y.jpg", "order": 10}, {"name": "Rupert Degas", "character": "Additional Voice (voice)", "id": 211412, "credit_id": "52fe46f19251416c75088b51", "cast_id": 20, "profile_path": "/8ONoi0l5Np7AZzczk3ddnsVcXq9.jpg", "order": 11}, {"name": "Rebecca Front", "character": "Additional Voice (voice)", "id": 155530, "credit_id": "52fe46f19251416c75088b55", "cast_id": 21, "profile_path": "/64aorRgBa4Q3NYvPTYm4LkckURc.jpg", "order": 12}, {"name": "Vincent Marzello", "character": "Additional Voice (voice)", "id": 131083, "credit_id": "52fe46f19251416c75088b59", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Emma Tate", "character": "Additional Voice (voice)", "id": 185065, "credit_id": "52fe46f19251416c75088b5d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Pete Atkin", "character": "Additional Voice (voice)", "id": 127153, "credit_id": "52fe46f19251416c75088b61", "cast_id": 24, "profile_path": "/sR154GSl8nIqXQNBAtfySH6iMK5.jpg", "order": 15}, {"name": "Laurence Bouvard", "character": "Additional Voice (voice)", "id": 59865, "credit_id": "52fe46f19251416c75088b65", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Brian Bowles", "character": "Additional Voice (voice)", "id": 108399, "credit_id": "52fe46f19251416c75088b69", "cast_id": 26, "profile_path": null, "order": 17}], "directors": [{"name": "Jorge Blanco", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c75088b21", "profile_path": "/zTqe8QQRch4epGYmr09ToIs1QJW.jpg", "id": 117052}, {"name": "Javier Abad", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c75088b6f", "profile_path": "/1Ci4SDKhh24rqLN3Ro0KUdNpyGV.jpg", "id": 968303}, {"name": "Marcos Mart\u00ednez", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c75088b75", "profile_path": "/rCeWPyfSRXM4W6K6A3aTV6YRzNn.jpg", "id": 1158156}], "vote_average": 5.7, "runtime": 91}, "483": {"poster_path": "/kdm9jnyv236RYFtYwCLNbH84wXi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14560247, "overview": "Young lovers Sailor and Lula run from the variety of weirdos that Lula's mom has hired to kill Sailor.", "video": false, "id": 483, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Wild at Heart", "tagline": "A wild crazy love story.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100935", "adult": false, "backdrop_path": "/toXuHNbWmQVw6Nj4ffjYOzLK5yQ.jpg", "production_companies": [{"name": "Samuel Goldwyn", "id": 261}], "release_date": "1990-08-17", "popularity": 0.675489821461349, "original_title": "Wild at Heart", "budget": 9500000, "cast": [{"name": "Nicolas Cage", "character": "Sailor Ripley", "id": 2963, "credit_id": "52fe4248c3a36847f80124a5", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Laura Dern", "character": "Lula Fortune", "id": 4784, "credit_id": "52fe4248c3a36847f80124a9", "cast_id": 5, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Bobby Peru", "id": 5293, "credit_id": "52fe4248c3a36847f80124ad", "cast_id": 6, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "J.E. Freeman", "character": "Marcelles Santos", "id": 5169, "credit_id": "52fe4248c3a36847f80124b1", "cast_id": 7, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 3}, {"name": "Crispin Glover", "character": "Dell", "id": 1064, "credit_id": "52fe4248c3a36847f80124b5", "cast_id": 8, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 4}, {"name": "Diane Ladd", "character": "Marietta Fortune", "id": 6587, "credit_id": "52fe4248c3a36847f80124b9", "cast_id": 9, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 5}, {"name": "Calvin Lockhart", "character": "Reggie", "id": 2067, "credit_id": "52fe4248c3a36847f80124bd", "cast_id": 10, "profile_path": "/3yJrPwyFScLuBukMb5BMJ8lDk1m.jpg", "order": 6}, {"name": "Isabella Rossellini", "character": "Perdita Durango", "id": 6588, "credit_id": "52fe4248c3a36847f80124c1", "cast_id": 11, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 7}, {"name": "Harry Dean Stanton", "character": "Johnnie Farragut", "id": 5048, "credit_id": "52fe4248c3a36847f80124c5", "cast_id": 12, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 8}, {"name": "Grace Zabriskie", "character": "Juana Durango", "id": 6465, "credit_id": "52fe4248c3a36847f80124c9", "cast_id": 13, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 9}, {"name": "Sherilyn Fenn", "character": "Girl in Accident", "id": 6681, "credit_id": "52fe4248c3a36847f8012503", "cast_id": 24, "profile_path": "/1AKZocU6gfD1udBPUxYH6Vez8Ll.jpg", "order": 10}, {"name": "Glenn Walker Harris Jr.", "character": "Pace Fortune", "id": 7089, "credit_id": "52fe4248c3a36847f8012507", "cast_id": 25, "profile_path": "/pvTQf4oKrqFmcXkYiwENKK65UM3.jpg", "order": 11}, {"name": "Sheryl Lee", "character": "Good Witch", "id": 6726, "credit_id": "52fe4249c3a36847f801250b", "cast_id": 26, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 12}, {"name": "David Patrick Kelly", "character": "Dropshadow", "id": 1737, "credit_id": "52fe4249c3a36847f8012527", "cast_id": 31, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 13}, {"name": "William Morgan Sheppard", "character": "Mr. Reindeer", "id": 938390, "credit_id": "52fe4249c3a36847f801252b", "cast_id": 32, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 14}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4248c3a36847f8012495", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 6.6, "runtime": 124}, "8676": {"poster_path": "/v4YTbyUsxOVRTFlOqQKKFPAjJhL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Charming but luckless treasure hunter Ben Finnegan has sacrificed his relationship with his wife to search for the Queen's Dowry, a legendary treasure lost at sea. But the discovery of a new clue rekindles his hope for riches -- and his marriage.", "video": false, "id": 8676, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Fool's Gold", "tagline": "This February True Love Takes a Dive.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0770752", "adult": false, "backdrop_path": "/YKUNjQNJMS0vJEVWt5gunW7UDY.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2008-02-08", "popularity": 0.810952954594713, "original_title": "Fool's Gold", "budget": 70000000, "cast": [{"name": "Matthew McConaughey", "character": "Ben 'Finn' Finnegan", "id": 10297, "credit_id": "52fe44b3c3a36847f80a5337", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Tess Finnegan", "id": 11661, "credit_id": "52fe44b3c3a36847f80a533b", "cast_id": 2, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Nigel Honeycutt", "id": 55636, "credit_id": "52fe44b3c3a36847f80a533f", "cast_id": 3, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "Alexis Dziena", "character": "Gemma Honeycutt", "id": 4433, "credit_id": "52fe44b3c3a36847f80a5349", "cast_id": 5, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 3}, {"name": "Ray Winstone", "character": "Moe Fitch", "id": 5538, "credit_id": "52fe44b3c3a36847f80a534d", "cast_id": 6, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 4}, {"name": "Ewen Bremner", "character": "Alfonz", "id": 1125, "credit_id": "52fe44b3c3a36847f80a5351", "cast_id": 7, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 5}, {"name": "Brian Hooks", "character": "Curtis", "id": 55637, "credit_id": "52fe44b3c3a36847f80a5355", "cast_id": 8, "profile_path": "/rixYnuCu4Sfnfm4wZDEq308gJTx.jpg", "order": 6}, {"name": "Kevin Hart", "character": "Bigg Bunny", "id": 55638, "credit_id": "52fe44b3c3a36847f80a5359", "cast_id": 9, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 7}, {"name": "Malcolm-Jamal Warner", "character": "Cordell", "id": 40259, "credit_id": "52fe44b3c3a36847f80a535d", "cast_id": 10, "profile_path": "/nwV97v1L3GMJmywooKIuTcc0veT.jpg", "order": 8}, {"name": "David Roberts", "character": "Cyrus", "id": 77553, "credit_id": "52fe44b3c3a36847f80a5379", "cast_id": 15, "profile_path": "/shYTmEKuTg4R4xRUYS5EHbjh0Ty.jpg", "order": 9}, {"name": "Michael Mulheren", "character": "Eddie", "id": 28036, "credit_id": "52fe44b3c3a36847f80a537d", "cast_id": 16, "profile_path": "/ayS1iwzbdEreOu9ThLlwsxKR0kZ.jpg", "order": 10}, {"name": "Adam LeFevre", "character": "Gary", "id": 61607, "credit_id": "52fe44b3c3a36847f80a5381", "cast_id": 17, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 11}, {"name": "Rohan Nichol", "character": "Stefan", "id": 33184, "credit_id": "52fe44b3c3a36847f80a5385", "cast_id": 18, "profile_path": "/nzvL3MRpADYWlH4ppyYgmCnM1kZ.jpg", "order": 12}, {"name": "Roger Sciberras", "character": "Andras", "id": 964221, "credit_id": "52fe44b3c3a36847f80a5389", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Elizabeth Connolly", "character": "Precious Gem Crew Nurse", "id": 1075052, "credit_id": "52fe44b3c3a36847f80a538d", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44b3c3a36847f80a5345", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 5.0, "runtime": 112}, "16869": {"poster_path": "/vDwqPyhkzFPRDmwz9KbzN2ouEPe.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 319131050, "overview": "In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.", "video": false, "id": 16869, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Inglourious Basterds", "tagline": "Once upon a time in Nazi occupied France...", "vote_count": 1968, "homepage": "http://www.inglouriousbasterds-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0361748", "adult": false, "backdrop_path": "/7nF6B9yCEq1ZCT82sGJVtNxOcl5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "A Band Apart", "id": 59}, {"name": "Zehnte Babelsberg", "id": 6817}, {"name": "Visiona Romantica", "id": 6818}], "release_date": "2009-08-21", "popularity": 2.12499475468779, "original_title": "Inglourious Basterds", "budget": 70000000, "cast": [{"name": "Brad Pitt", "character": "Lt. Aldo Raine", "id": 287, "credit_id": "52fe46f29251416c75088c69", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Christoph Waltz", "character": "Col. Hans Landa", "id": 27319, "credit_id": "52fe46f29251416c75088c71", "cast_id": 5, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 1}, {"name": "M\u00e9lanie Laurent", "character": "Shosanna Dreyfus", "id": 19119, "credit_id": "52fe46f29251416c75088c83", "cast_id": 9, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 2}, {"name": "Diane Kruger", "character": "Bridget von Hammersmark", "id": 9824, "credit_id": "52fe46f29251416c75088c7b", "cast_id": 7, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 3}, {"name": "Mike Myers", "character": "General Ed Fenech", "id": 12073, "credit_id": "52fe46f29251416c75088c7f", "cast_id": 8, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 4}, {"name": "Michael Fassbender", "character": "Lt. Archie Hicox", "id": 17288, "credit_id": "52fe46f29251416c75088c87", "cast_id": 10, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 5}, {"name": "Samuel L. Jackson", "character": "Narrator (voice)", "id": 2231, "credit_id": "52fe46f29251416c75088c6d", "cast_id": 4, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 6}, {"name": "Eli Roth", "character": "Sergeant Donny Donowitz", "id": 16847, "credit_id": "52fe46f29251416c75088c8b", "cast_id": 11, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 7}, {"name": "Til Schweiger", "character": "Sgt. Hugo Stiglitz", "id": 1844, "credit_id": "52fe46f29251416c75088c8f", "cast_id": 12, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 8}, {"name": "B. J. Novak", "character": "Smithson Utivich", "id": 107770, "credit_id": "52fe46f29251416c75088c93", "cast_id": 13, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 9}, {"name": "Gedeon Burkhard", "character": "Corporal Wilhelm Wicki", "id": 32823, "credit_id": "52fe46f29251416c75088c97", "cast_id": 14, "profile_path": "/kyCk9N8In36cec0K4PqBG8eyhhw.jpg", "order": 10}, {"name": "Omar Doom", "character": "Omar Ulmer", "id": 23286, "credit_id": "52fe46f29251416c75088c9b", "cast_id": 15, "profile_path": "/gLWD2wYyXpD8d7oZikqGIgNSEZu.jpg", "order": 11}, {"name": "Samm Levine", "character": "Gerold Hirschberg", "id": 58507, "credit_id": "52fe46f29251416c75088c9f", "cast_id": 16, "profile_path": "/A01BJNs0QUP2SlNj48WRwB3bSWE.jpg", "order": 12}, {"name": "Paul Rust", "character": "Andy Kagan", "id": 85236, "credit_id": "52fe46f29251416c75088ca3", "cast_id": 17, "profile_path": "/rd8ZJQc8slsPcB3HeGqNcVtc0kh.jpg", "order": 13}, {"name": "Michael Bacall", "character": "Michael Zimmerman", "id": 58744, "credit_id": "52fe46f29251416c75088ca7", "cast_id": 18, "profile_path": "/vAqUOjmjY1ALiTRlYu7BI3yWmuK.jpg", "order": 14}, {"name": "Carlos Fidel", "character": "Simon Sakowitz", "id": 107771, "credit_id": "52fe46f29251416c75088cab", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Rod Taylor", "character": "Winston Churchill", "id": 8229, "credit_id": "52fe46f29251416c75088caf", "cast_id": 20, "profile_path": "/nCSU0Teu87l0Hep7CVTWbyHqPAX.jpg", "order": 16}, {"name": "Denis M\u00e9nochet", "character": "Perrier LaPadite", "id": 81125, "credit_id": "52fe46f29251416c75088cb3", "cast_id": 21, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 17}, {"name": "Jacky Ido", "character": "Marcel", "id": 51636, "credit_id": "52fe46f29251416c75088cb7", "cast_id": 22, "profile_path": "/eBR6SX0hge1p3gWjxxRsmSzzhmQ.jpg", "order": 18}, {"name": "Christian Berkel", "character": "Eric", "id": 7803, "credit_id": "52fe46f29251416c75088cbb", "cast_id": 23, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 19}, {"name": "Jana Pallaske", "character": "Babette", "id": 20259, "credit_id": "52fe46f29251416c75088cbf", "cast_id": 24, "profile_path": "/mzeBCXN3vcU6gIc8p7otO85Cbo6.jpg", "order": 20}, {"name": "Daniel Br\u00fchl", "character": "Fredrick Zoller", "id": 3872, "credit_id": "52fe46f29251416c75088cc3", "cast_id": 25, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 21}, {"name": "August Diehl", "character": "Sturmbannf\u00fchrer Dieter Hellstrom", "id": 6091, "credit_id": "52fe46f29251416c75088cc7", "cast_id": 26, "profile_path": "/A3MqiHyxUVrTHmuSh4nvzOLUeNx.jpg", "order": 22}, {"name": "Alexander Fehling", "character": "Oberfeldwebel Wilhelm", "id": 31663, "credit_id": "52fe46f29251416c75088ccb", "cast_id": 27, "profile_path": "/h6nkEsHxdoV1gQAqJr5OfOp855k.jpg", "order": 23}, {"name": "Soenke M\u00f6hring", "character": "Gefreiter Butz", "id": 107772, "credit_id": "52fe46f29251416c75088ccf", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Richard Sammel", "character": "Hauptfeldwebel Werner Rachtman", "id": 49487, "credit_id": "52fe46f29251416c75088cd3", "cast_id": 29, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 25}, {"name": "Sylvester Groth", "character": "Joseph Goebbels", "id": 41965, "credit_id": "52fe46f29251416c75088cd7", "cast_id": 30, "profile_path": "/vMNpftjWH7Q2dGSFYjp6U4pJkNx.jpg", "order": 26}, {"name": "Julie Dreyfus", "character": "Francesca Mondino", "id": 2539, "credit_id": "52fe46f29251416c75088cdb", "cast_id": 32, "profile_path": "/vkUvcV6oFkZXcIv4SGeW66LUoqC.jpg", "order": 27}, {"name": "Martin Wuttke", "character": "Adolf Hitler", "id": 49056, "credit_id": "52fe46f29251416c75088cdf", "cast_id": 34, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 28}, {"name": "Arndt Schwering-Sohnrey", "character": "German Soldier / Winnetou", "id": 36463, "credit_id": "52fe46f29251416c75088ce3", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "L\u00e9a Seydoux", "character": "Charlotte LaPadite", "id": 121529, "credit_id": "52fe46f29251416c75088ce7", "cast_id": 36, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 30}, {"name": "Bo Svenson", "character": "American Colonel", "id": 30044, "credit_id": "52fe46f29251416c75088ceb", "cast_id": 37, "profile_path": "/ow0pxYqX94ZmfKDCiMN2qzhtOe3.jpg", "order": 31}, {"name": " Anne-Sophie Franck", "character": "Mathilda", "id": 236647, "credit_id": "52fe46f29251416c75088cf5", "cast_id": 40, "profile_path": "/5OxrjtngJKI1DivutCJaTWwTmrq.jpg", "order": 32}, {"name": "Tina Rodriguez", "character": "Julie LaPadite", "id": 122416, "credit_id": "52fe46f29251416c75088cf9", "cast_id": 41, "profile_path": "/8DJfBQUsR4wKsTIQXQv84IeTlLH.jpg", "order": 33}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe46f29251416c75088c65", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.5, "runtime": 153}, "41446": {"poster_path": "/eT2y8SLxLwPFPuShV4i2FoZnOwU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97138686, "overview": "Sidney Prescott, now the author of a self-help book, returns home to Woodsboro on the last stop of her book tour. There she reconnects with Sheriff Dewey and Gale, who are now married, as well as her cousin Jill and her Aunt Kate. Unfortunately, Sidney's appearance also brings about the return of Ghostface, putting Sidney, Gale, and Dewey, along with Jill, her friends, and the whole town of Woodsboro in danger.", "video": false, "id": 41446, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream 4", "tagline": "New Decade. New Rules.", "vote_count": 226, "homepage": "http://www.scream-4.com/", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1262416", "adult": false, "backdrop_path": "/5VqyrIpMbnwXdZFcISmtKr3n75A.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2011-04-11", "popularity": 0.809641300308904, "original_title": "Scream 4", "budget": 40000000, "cast": [{"name": "Emma Roberts", "character": "Jill Kessler", "id": 34847, "credit_id": "52fe45cac3a36847f80da99b", "cast_id": 1, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "Hayden Panettiere", "character": "Kirby Reed", "id": 17265, "credit_id": "52fe45cac3a36847f80da99f", "cast_id": 2, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 1}, {"name": "Adam Brody", "character": "Detective Hoss", "id": 11702, "credit_id": "52fe45cac3a36847f80da9a3", "cast_id": 3, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 2}, {"name": "Courteney Cox", "character": "Gale Weathers-Riley", "id": 14405, "credit_id": "52fe45cac3a36847f80da9a7", "cast_id": 4, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 3}, {"name": "Rory Culkin", "character": "Charlie Walker", "id": 28042, "credit_id": "52fe45cac3a36847f80da9ab", "cast_id": 5, "profile_path": "/ceb0M0ikZj8kg5oXfGr5wi1MDc6.jpg", "order": 4}, {"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe45cac3a36847f80da9af", "cast_id": 6, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 5}, {"name": "Mary McDonnell", "character": "Kate Kessler", "id": 1581, "credit_id": "52fe45cac3a36847f80da9b3", "cast_id": 7, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 6}, {"name": "David Arquette", "character": "Sheriff Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe45cac3a36847f80da9b7", "cast_id": 8, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 7}, {"name": "Anthony Anderson", "character": "Detective Perkins", "id": 18471, "credit_id": "52fe45cac3a36847f80da9bb", "cast_id": 9, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 8}, {"name": "Erik Knudsen", "character": "Robbie", "id": 2681, "credit_id": "52fe45cac3a36847f80da9bf", "cast_id": 10, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 9}, {"name": "Marielle Jaffe", "character": "Olivia Morris", "id": 127127, "credit_id": "52fe45cac3a36847f80da9c3", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Nico Tortorella", "character": "Trevor Sheldon", "id": 127128, "credit_id": "52fe45cac3a36847f80da9c7", "cast_id": 12, "profile_path": "/A6H0K8h39LcpQpjjjBCoWekDiAf.jpg", "order": 11}, {"name": "Roger L. Jackson", "character": "The Voice (voice)", "id": 51957, "credit_id": "52fe45cac3a36847f80da9cb", "cast_id": 13, "profile_path": "/lI4N9GJ0QuC1YFYSwauNssGwe11.jpg", "order": 12}, {"name": "Justin Michael Brandt", "character": "Film Geek", "id": 127129, "credit_id": "52fe45cac3a36847f80da9cf", "cast_id": 14, "profile_path": "/5zqOLngigabOdFEj4Q910pKwJjE.jpg", "order": 13}, {"name": "Nancy O'Dell", "character": "TV Host", "id": 127130, "credit_id": "52fe45cac3a36847f80da9d3", "cast_id": 15, "profile_path": "/dYSrZtde2UrhGI1N6ooKI0jjB6Z.jpg", "order": 14}, {"name": "Dredan McFall", "character": "Cocky Student", "id": 127131, "credit_id": "52fe45cac3a36847f80da9d7", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Marley Shelton", "character": "Judy Hicks", "id": 6407, "credit_id": "52fe45cac3a36847f80da9db", "cast_id": 17, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 16}, {"name": "Alison Brie", "character": "Rebecca Walters", "id": 88029, "credit_id": "52fe45cbc3a36847f80daa0f", "cast_id": 26, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 17}, {"name": "Lucy Hale", "character": "Sherrie Marconi", "id": 205307, "credit_id": "52fe45cbc3a36847f80daa13", "cast_id": 27, "profile_path": "/osMiB2nzn0Dedtv0AkyOCDuNmqb.jpg", "order": 18}, {"name": "Shenae Grimes", "character": "Trudie Harrold", "id": 88619, "credit_id": "52fe45cbc3a36847f80daa17", "cast_id": 28, "profile_path": "/zDa5eWttJdzv1Fxp2lx3PUzVXT0.jpg", "order": 19}, {"name": "Anna Paquin", "character": "Rachel", "id": 10690, "credit_id": "52fe45cbc3a36847f80daa1b", "cast_id": 29, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 20}, {"name": "Kristen Bell", "character": "Chloe", "id": 40462, "credit_id": "52fe45cbc3a36847f80daa1f", "cast_id": 30, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 21}, {"name": "Britt Robertson", "character": "Marnie Cooper", "id": 52018, "credit_id": "52fe45cbc3a36847f80daa31", "cast_id": 36, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 24}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe45cac3a36847f80da9e1", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.2, "runtime": 111}, "16871": {"poster_path": "/4trULrbj4AoPLKSiIoQUTm2tPAG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90842646, "overview": "After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.", "video": false, "id": 16871, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Drag Me to Hell", "tagline": "Christine Brown has a good job, a great boyfriend, and a bright future. But in three days, she's going to hell.", "vote_count": 236, "homepage": "http://www.dragmetohell.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}], "imdb_id": "tt1127180", "adult": false, "backdrop_path": "/70wyqj6WnOSVWKnW2vxylFGz7c9.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Buckaroo Entertainment", "id": 11250}, {"name": "Curse Productions", "id": 11630}, {"name": "Mandate Pictures", "id": 771}], "release_date": "2009-03-15", "popularity": 0.970752883422576, "original_title": "Drag Me to Hell", "budget": 30000000, "cast": [{"name": "Alison Lohman", "character": "Christine Brown", "id": 8291, "credit_id": "52fe46f29251416c75088d7f", "cast_id": 5, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 0}, {"name": "Justin Long", "character": "Clay Dalton", "id": 15033, "credit_id": "52fe46f29251416c75088d83", "cast_id": 6, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Lorna Raver", "character": "Mrs. Ganush", "id": 95696, "credit_id": "52fe46f29251416c75088d87", "cast_id": 7, "profile_path": "/iXlz30cBxvyn66fPTFOgbrrlsqT.jpg", "order": 2}, {"name": "Dileep Rao", "character": "Rham Jas", "id": 95697, "credit_id": "52fe46f29251416c75088d8b", "cast_id": 8, "profile_path": "/f9xQkvWw5guOePcCxkso1i09w12.jpg", "order": 3}, {"name": "David Paymer", "character": "Mr. Jacks", "id": 19839, "credit_id": "52fe46f29251416c75088d7b", "cast_id": 4, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 4}, {"name": "Adriana Barraza", "character": "Shaun San Dena", "id": 270, "credit_id": "52fe46f29251416c75088d8f", "cast_id": 9, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 5}, {"name": "Chelcie Ross", "character": "Leonard Dalton", "id": 10486, "credit_id": "52fe46f29251416c75088d93", "cast_id": 10, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 6}, {"name": "Reggie Lee", "character": "Stu Rubin", "id": 22075, "credit_id": "52fe46f29251416c75088d97", "cast_id": 11, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 7}, {"name": "Molly Cheek", "character": "Trudy Dalton", "id": 54586, "credit_id": "52fe46f29251416c75088d9b", "cast_id": 12, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 8}, {"name": "Bojana Novakovi\u0107", "character": "Ilenka Ganush", "id": 81682, "credit_id": "52fe46f29251416c75088d9f", "cast_id": 13, "profile_path": "/huxuKuGq26pHRE6nO0WJu3aS0hU.jpg", "order": 9}, {"name": "Kevin Foster", "character": "Milos", "id": 95698, "credit_id": "52fe46f29251416c75088da3", "cast_id": 14, "profile_path": "/9YZigxSi9V4mdpzxvs6G1nVRPbC.jpg", "order": 10}, {"name": "Jay Gordon", "character": "Family at Diner", "id": 204265, "credit_id": "52fe46f29251416c75088db9", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Alexis Cruz", "character": "Farm Worker", "id": 22138, "credit_id": "52fe46f39251416c75088df9", "cast_id": 30, "profile_path": "/3vTlvOsUx5UfrOMhayQljM8AsVV.jpg", "order": 12}, {"name": "Ruth Livier", "character": "Farm Worker's Wife", "id": 155868, "credit_id": "52fe46f39251416c75088dfd", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Shiloh Selassie", "character": "Farm Worker's Son", "id": 1121875, "credit_id": "52fe46f39251416c75088e01", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Octavia Spencer", "character": "Bank Co-Worker", "id": 6944, "credit_id": "52fe46f39251416c75088e05", "cast_id": 33, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 15}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe46f29251416c75088d6b", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.1, "runtime": 99}, "489": {"poster_path": "/jq8LjngZ7XZEQge5JFTdOGMrHyZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 225933435, "overview": "Will Hunting, a janitor at MIT, has a gift for mathematics but needs help from a psychologist to find direction in his life.", "video": false, "id": 489, "genres": [{"id": 18, "name": "Drama"}], "title": "Good Will Hunting", "tagline": "Some people can never believe in themselves, until someone believes in them.", "vote_count": 755, "homepage": "http://www.miramax.com/movie/good-will-hunting", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119217", "adult": false, "backdrop_path": "/8vA6dxBzRqSajvqdmTLtoguAa3T.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Lawrence Bender Productions", "id": 2253}, {"name": "Be Gentlemen Limited Partnership", "id": 23201}], "release_date": "1997-12-05", "popularity": 1.28956618086364, "original_title": "Good Will Hunting", "budget": 10000000, "cast": [{"name": "Matt Damon", "character": "Will Hunting", "id": 1892, "credit_id": "52fe4249c3a36847f8012657", "cast_id": 5, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Robin Williams", "character": "Sean Maguire", "id": 2157, "credit_id": "52fe4249c3a36847f8012653", "cast_id": 4, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Ben Affleck", "character": "Chuckie Sullivan", "id": 880, "credit_id": "52fe4249c3a36847f801265b", "cast_id": 6, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Prof. Gerald Lambeau", "id": 1640, "credit_id": "52fe4249c3a36847f801265f", "cast_id": 7, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Minnie Driver", "character": "Skylar", "id": 6613, "credit_id": "52fe4249c3a36847f8012663", "cast_id": 8, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 4}, {"name": "Casey Affleck", "character": "Morgan O'Mally", "id": 1893, "credit_id": "52fe4249c3a36847f8012667", "cast_id": 9, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 5}, {"name": "Cole Hauser", "character": "Billy McBride", "id": 6614, "credit_id": "52fe4249c3a36847f801266b", "cast_id": 10, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 6}, {"name": "John Mighton", "character": "Tom", "id": 6615, "credit_id": "52fe4249c3a36847f801266f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "George Plimpton", "character": "Psychologist", "id": 95741, "credit_id": "52fe4249c3a36847f8012729", "cast_id": 49, "profile_path": "/azWcJKXfpMrNDVHxY8ryUvH4azO.jpg", "order": 8}, {"name": "Rachel Majorowski", "character": "Krystyn", "id": 6616, "credit_id": "52fe4249c3a36847f8012673", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Colleen McCauley", "character": "Cathy", "id": 6617, "credit_id": "52fe4249c3a36847f8012677", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Matt Mercier", "character": "Barbershop Quartet #1", "id": 6618, "credit_id": "52fe4249c3a36847f801267b", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Ralph St. George", "character": "Barbershop Quartet #2", "id": 6619, "credit_id": "52fe4249c3a36847f801267f", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Rob Lynds", "character": "Barbershop Quartet #3", "id": 6620, "credit_id": "52fe4249c3a36847f8012683", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Dan Washington", "character": "Barbershop Quartet #4", "id": 6621, "credit_id": "52fe4249c3a36847f8012687", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Alison Folland", "character": "M.I.T. Student", "id": 2841, "credit_id": "52fe4249c3a36847f801268b", "cast_id": 18, "profile_path": "/j4LkS9pycdpKECqZ4bCTqMtZrHA.jpg", "order": 15}, {"name": "Derrick Bridgeman", "character": "M.I.T. Student", "id": 6622, "credit_id": "52fe4249c3a36847f801268f", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Vik Sahay", "character": "M.I.T. Student", "id": 6623, "credit_id": "52fe4249c3a36847f8012693", "cast_id": 20, "profile_path": "/eApnmkajRNYJ0Jrl9Cft1lo93cF.jpg", "order": 17}, {"name": "Shannon Egleson", "character": "Girl on Street", "id": 1281440, "credit_id": "52fe4249c3a36847f80126fd", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Rob Lyons", "character": "Carmine Scarpaglia", "id": 1281441, "credit_id": "52fe4249c3a36847f8012701", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Steven Kozlowski", "character": "Carmine Friend #1", "id": 163438, "credit_id": "52fe4249c3a36847f8012705", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Jennifer Deathe", "character": "Lydia", "id": 1281442, "credit_id": "52fe4249c3a36847f8012709", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Scott William Winters", "character": "Clark", "id": 144578, "credit_id": "52fe4249c3a36847f801270d", "cast_id": 42, "profile_path": "/ubQy1q1A1EZoqJghTgcDv2v3rXb.jpg", "order": 22}, {"name": "Philip Williams", "character": "Head Custodian", "id": 134076, "credit_id": "52fe4249c3a36847f8012711", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Patrick O'Donnell", "character": "Assistant Custodian / Marty", "id": 1281443, "credit_id": "52fe4249c3a36847f8012715", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Kevin Rushton", "character": "Courtroom Guard", "id": 1237062, "credit_id": "52fe4249c3a36847f8012719", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Jimmy Flynn", "character": "Judge Malone", "id": 1281445, "credit_id": "52fe4249c3a36847f801271d", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Joe Cannon", "character": "Prosecutor", "id": 1281447, "credit_id": "52fe4249c3a36847f8012721", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Ann Matacunas", "character": "Court Officer", "id": 1281448, "credit_id": "52fe4249c3a36847f8012725", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Francesco Clemente", "character": "Hypnotist", "id": 937042, "credit_id": "52fe4249c3a36847f801272d", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Jessica Morton", "character": "Bunker Hill Student", "id": 1281449, "credit_id": "52fe4249c3a36847f8012731", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Barna Moricz", "character": "Bunker Hill Student", "id": 1242878, "credit_id": "52fe4249c3a36847f8012735", "cast_id": 52, "profile_path": null, "order": 31}, {"name": "Libby Geller", "character": "Toy Store Cashier", "id": 1281450, "credit_id": "52fe4249c3a36847f8012739", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Chas Lawther", "character": "M.I.T. Professor", "id": 101803, "credit_id": "52fe4249c3a36847f801273d", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Richard Fitzpatrick", "character": "Timmy", "id": 44103, "credit_id": "52fe4249c3a36847f8012741", "cast_id": 55, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 34}, {"name": "David Eisner", "character": "Executive #3", "id": 1190319, "credit_id": "52fe4249c3a36847f8012745", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Bruce Hunter", "character": "NSA Agent", "id": 1228841, "credit_id": "52fe4249c3a36847f8012749", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Robert Talvano", "character": "2nd NSA Agent", "id": 1281451, "credit_id": "52fe4249c3a36847f801274d", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "James Allodi", "character": "Security Guard", "id": 4572, "credit_id": "52fe4249c3a36847f8012751", "cast_id": 59, "profile_path": "/2CWfhSnCCfmzunTxZZAOpllkrCJ.jpg", "order": 38}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4249c3a36847f8012643", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 7.4, "runtime": 126}, "490": {"poster_path": "/lGbA3AtGObfWpsRDbH5ps8bpPbm.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "When disillusioned Swedish knight Antonius Block (Max von Sydow) returns home from the Crusades to find his country in the grips of the Black Death, he challenges Death (Bengt Ekerot) to a chess match for his life. Tormented by the belief that God does not exist, Block sets off on a journey, meeting up with traveling players Jof (Nils Poppe) and his wife, Mia (Bibi Andersson), and becoming determined to evade Death long enough to commit one redemptive act while he still lives.", "video": false, "id": 490, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Seventh Seal", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0050976", "adult": false, "backdrop_path": "/u2YXzSieIsDUZnhPpoytNJiTwyt.jpg", "production_companies": [{"name": "Svensk Filmindustri", "id": 6416}], "release_date": "1957-02-16", "popularity": 0.294540800562814, "original_title": "Det sjunde inseglet", "budget": 0, "cast": [{"name": "Max von Sydow", "character": "Antonius Block", "id": 2201, "credit_id": "52fe4249c3a36847f80127d9", "cast_id": 10, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 0}, {"name": "Gunnar Bj\u00f6rnstrand", "character": "J\u00f6ns", "id": 6649, "credit_id": "52fe4249c3a36847f80127ab", "cast_id": 2, "profile_path": "/AiGcTLr6uQXjtKxh2CMOOIfXEW1.jpg", "order": 1}, {"name": "Bengt Ekerot", "character": "Death", "id": 6656, "credit_id": "52fe4249c3a36847f80127dd", "cast_id": 11, "profile_path": "/nxHqm16Oo3mDYrQnPemGqbbwk9Z.jpg", "order": 2}, {"name": "Nils Poppe", "character": "Jof", "id": 6658, "credit_id": "52fe4249c3a36847f80127e5", "cast_id": 13, "profile_path": "/78c1QHlrGi8l9ie7s1wD1h1XzmA.jpg", "order": 3}, {"name": "Bibi Andersson", "character": "Mia", "id": 6657, "credit_id": "52fe4249c3a36847f80127e1", "cast_id": 12, "profile_path": "/wIC6RwWanSpubtdjCbB6IGQN4AP.jpg", "order": 4}, {"name": "Inga Gill", "character": "Lisa, Plog's wife", "id": 6659, "credit_id": "52fe4249c3a36847f80127e9", "cast_id": 14, "profile_path": "/sHkBJzKCgQEHJTiRzX7XrZ1H3UD.jpg", "order": 5}, {"name": "Maud Hansson", "character": "Witch", "id": 6660, "credit_id": "52fe4249c3a36847f80127ed", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Inga Landgr\u00e9", "character": "Karin, Block's wife", "id": 6661, "credit_id": "52fe4249c3a36847f80127f1", "cast_id": 16, "profile_path": "/tTMBmDtvEBNOGl9JpvV9WXAqYw2.jpg", "order": 7}, {"name": "Gunnel Lindblom", "character": "Mute girl", "id": 6662, "credit_id": "52fe4249c3a36847f80127f5", "cast_id": 17, "profile_path": "/pvyxNIdjoNBPGT3Ig8cKu97yTXo.jpg", "order": 8}, {"name": "Bertil Anderberg", "character": "Raval", "id": 6663, "credit_id": "52fe4249c3a36847f80127f9", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Anders Ek", "character": "Monk", "id": 6664, "credit_id": "52fe4249c3a36847f80127fd", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "\u00c5ke Fridell", "character": "Plog the smith", "id": 6665, "credit_id": "52fe4249c3a36847f8012801", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Gunnar Olsson", "character": "Albertus Pictor, church painter", "id": 6666, "credit_id": "52fe4249c3a36847f8012805", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Erik Strandmark", "character": "Jonas Skat", "id": 6667, "credit_id": "52fe4249c3a36847f8012809", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Sten Ardenstam", "character": "Knight (uncredited)", "id": 403150, "credit_id": "52fe4249c3a36847f801280d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Gudrun Brost", "character": "Woman at inn (uncredited)", "id": 58305, "credit_id": "52fe4249c3a36847f8012811", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Lars Lind", "character": "The young monk (uncredited)", "id": 231921, "credit_id": "52fe4249c3a36847f8012815", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Benkt-\u00c5ke Benktsson", "character": "Merchant at the inn (uncredited)", "id": 550014, "credit_id": "52fe4249c3a36847f8012819", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Tor Borong", "character": "Farmer at the inn (uncredited)", "id": 321845, "credit_id": "52fe4249c3a36847f801281d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Harry Asklund", "character": "The landlord (uncredited)", "id": 1194870, "credit_id": "52fe4249c3a36847f8012821", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Tommy Karlsson", "character": "Mikael, Jof and Maria's son (uncredited)", "id": 1194871, "credit_id": "52fe4249c3a36847f8012825", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "G\u00f6sta Pr\u00fczelius", "character": "Man (uncredited)", "id": 34774, "credit_id": "52fe4249c3a36847f8012829", "cast_id": 30, "profile_path": "/q0q00ZlAmPnEjZn2KDnKvfzeUYG.jpg", "order": 21}, {"name": "Tor Isedal", "character": "Man (uncredited)", "id": 244278, "credit_id": "52fe4249c3a36847f801282d", "cast_id": 31, "profile_path": "/7pbBfMkJlH0Crq3K8QHRERKJLNw.jpg", "order": 22}, {"name": "Mona Malm", "character": "Young pregnant woman (uncredited)", "id": 32729, "credit_id": "52fe4249c3a36847f8012831", "cast_id": 32, "profile_path": "/tckU77KETSkD0y2Ci0mUP3TaiYI.jpg", "order": 23}, {"name": "Josef Norman", "character": "Old man at the inn (uncredited)", "id": 1194872, "credit_id": "52fe4249c3a36847f8012835", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Fritjof Tall", "character": "Man (uncredited)", "id": 1194873, "credit_id": "52fe4249c3a36847f8012839", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Catherine Berg", "character": "Young woman kneeling for the flagellants (uncredited)", "id": 1186207, "credit_id": "52fe4249c3a36847f801283d", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Lena Bergman", "character": "Young woman kneeling for the flagellants (uncredited)", "id": 1194874, "credit_id": "52fe4249c3a36847f8012841", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Ulf Johanson", "character": "Knight Commander (uncredited)", "id": 131579, "credit_id": "52fe4249c3a36847f8012845", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Gordon L\u00f6wenadler", "character": "Knight (uncredited)", "id": 1194875, "credit_id": "52fe4249c3a36847f8012849", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Nils Whiten", "character": "Old man addressed by the monk (uncredited)", "id": 1194876, "credit_id": "52fe4249c3a36847f801284d", "cast_id": 39, "profile_path": null, "order": 30}], "directors": [{"name": "Ingmar Bergman", "department": "Directing", "job": "Director", "credit_id": "52fe4249c3a36847f80127a7", "profile_path": "/rHYYP3N2ivz6WTuTHsLX58Gab7G.jpg", "id": 6648}], "vote_average": 7.6, "runtime": 97}, "492": {"poster_path": "/gLhl4MBEC6yHTInwV7TxV1D3FLp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Spike Jonze\u2019s debut feature film is a love story mix of comedy and fantasy. The story is about an unsuccessful puppeteer named Craig, who one day at work finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters it\u2019s mad and controlling world of overtaking another human body.", "video": false, "id": 492, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Being John Malkovich", "tagline": "Ever wanted to be someone else? Now you can.", "vote_count": 288, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120601", "adult": false, "backdrop_path": "/wd2tF4vQuSc1oPNyWj2JKuBJ16N.jpg", "production_companies": [{"name": "Gramercy Pictures", "id": 37}, {"name": "Propaganda Films", "id": 278}, {"name": "Single Cell Pictures", "id": 279}], "release_date": "1999-09-30", "popularity": 1.22884026355891, "original_title": "Being John Malkovich", "budget": 13000000, "cast": [{"name": "John Malkovich", "character": "John Horatio Malkovich", "id": 6949, "credit_id": "52fe4249c3a36847f8012927", "cast_id": 18, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 0}, {"name": "John Cusack", "character": "Craig Schwartz", "id": 3036, "credit_id": "52fe4249c3a36847f8012907", "cast_id": 5, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Lotte Schwartz", "id": 6941, "credit_id": "52fe4249c3a36847f801290b", "cast_id": 6, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Mary Kay Place", "character": "Floris", "id": 5960, "credit_id": "52fe4249c3a36847f8012917", "cast_id": 11, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 3}, {"name": "Orson Bean", "character": "Dr. Lester", "id": 863, "credit_id": "52fe4249c3a36847f801291b", "cast_id": 12, "profile_path": "/vMG49W2jMiOn1wgAxCeSdtnUNjx.jpg", "order": 4}, {"name": "Catherine Keener", "character": "Maxine Lund", "id": 2229, "credit_id": "52fe4249c3a36847f801291f", "cast_id": 13, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Octavia Spencer", "character": "Woman in Elevator", "id": 6944, "credit_id": "52fe4249c3a36847f8012913", "cast_id": 10, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 6}, {"name": "Charlie Sheen", "character": "Charlie", "id": 6952, "credit_id": "52fe4249c3a36847f801292f", "cast_id": 22, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 10}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe4249c3a36847f80128f1", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 7.0, "runtime": 112}, "8274": {"poster_path": "/hwWwljYkvWebTb9xPvzJdhLtS8R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The original American Pie characters have moved on, except for Sherman and Jim Levenstein's still understanding dad. Steve Stifler's little brother Matt wants to join his brother's business (the hit it big Girls Gone Wild) and after everything Matt has heard from Jim's band-geek wife Michelle, he plans to go back to band camp and make a video of his own: Bandies Gone Wild!", "video": false, "id": 8274, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: Band Camp", "tagline": "This One Time at Band Camp...", "vote_count": 141, "homepage": "http://www.americanreunionmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0436058", "adult": false, "backdrop_path": "/Ai7WaZDlqyrOZZ6FT5NrsTCaUi4.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}], "release_date": "2005-12-30", "popularity": 0.60832474223136, "original_title": "American Pie Presents: Band Camp", "budget": 10000000, "cast": [{"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe449ac3a36847f809fa01", "cast_id": 7, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 0}, {"name": "Tad Hilgenbrink", "character": "Matt Stifler", "id": 54593, "credit_id": "52fe449ac3a36847f809fa05", "cast_id": 8, "profile_path": "/uAZIVadEM5iaVlQPkxGCpZImYuF.jpg", "order": 1}, {"name": "Arielle Kebbel", "character": "Elyse", "id": 20373, "credit_id": "52fe449ac3a36847f809fa09", "cast_id": 9, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 2}, {"name": "Jason Earles", "character": "Ernie", "id": 54594, "credit_id": "52fe449ac3a36847f809fa0d", "cast_id": 10, "profile_path": "/lwHIA7z8LAyKx7B4eV9bWUBT7tk.jpg", "order": 3}, {"name": "Crystle Lightning", "character": "Chloe", "id": 26929, "credit_id": "52fe449ac3a36847f809fa11", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Matt Barr", "character": "Brandon Vandecamp", "id": 26970, "credit_id": "52fe449ac3a36847f809fa15", "cast_id": 12, "profile_path": "/6V9LRJJ8dU5M2Xy2Ru3haAtDI4p.jpg", "order": 5}, {"name": "Jun Hee Lee", "character": "Jimmy", "id": 26997, "credit_id": "52fe449ac3a36847f809fa19", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Chris Owen", "character": "Sherman", "id": 26999, "credit_id": "52fe449ac3a36847f809fa1d", "cast_id": 14, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 7}, {"name": "Lauren C. Mayhew", "character": "Arianna", "id": 27016, "credit_id": "52fe449ac3a36847f809fa21", "cast_id": 15, "profile_path": "/kfoNtiDUh5TBoUOzNRjnNl2mEf.jpg", "order": 8}, {"name": "Angela Little", "character": "Sheree", "id": 54595, "credit_id": "52fe449ac3a36847f809fa25", "cast_id": 16, "profile_path": "/8z7GuufLCJGISmHm98SuoV2eqNz.jpg", "order": 10}, {"name": "Jennifer Walcott", "character": "Laurie", "id": 116300, "credit_id": "52fe449ac3a36847f809fa2f", "cast_id": 19, "profile_path": "/jN06qT5mWZl58xLw5P0ArLJiUE6.jpg", "order": 11}], "directors": [{"name": "Steve Rash", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809f9df", "profile_path": null, "id": 54590}], "vote_average": 5.4, "runtime": 94}, "10096": {"poster_path": "/iSvz2Nk1vzgm7bEMqMazhQ1F3zA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96455697, "overview": "After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. Thanks to some wishing dust, Jenna's prayer has been answered. With a knockout body, a dream apartment, a fabulous wardrobe, an athlete boyfriend, a dream job, and superstar friends, this can't be a better life. Unfortunetly, Jenna realizes that this is not what she wanted. The only one that she needs is her childhood best friend, Matt, a boy that she thought destroyed her party. But when she finds him, he's a grown up, and not the same person that she knew.", "video": false, "id": 10096, "genres": [{"id": 35, "name": "Comedy"}], "title": "13 Going On 30", "tagline": "For some, 13 feels like it was just yesterday. For Jenna, it was.", "vote_count": 279, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337563", "adult": false, "backdrop_path": "/zIqndpLMVerIfztNjsIOam9YnAN.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Thirteen Productions", "id": 19636}], "release_date": "2004-04-13", "popularity": 1.45430181739852, "original_title": "13 Going On 30", "budget": 37000000, "cast": [{"name": "Jennifer Garner", "character": "Jenna Rink", "id": 9278, "credit_id": "52fe43259251416c750054cb", "cast_id": 12, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 0}, {"name": "Mark Ruffalo", "character": "Matt Flamhaff", "id": 103, "credit_id": "52fe43259251416c750054cf", "cast_id": 13, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 1}, {"name": "Judy Greer", "character": "Lucy Wyman", "id": 20750, "credit_id": "52fe43259251416c750054d3", "cast_id": 14, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 2}, {"name": "Andy Serkis", "character": "Richard Kneeland", "id": 1333, "credit_id": "52fe43259251416c750054d7", "cast_id": 15, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 3}, {"name": "Christa Brittany Allen", "character": "Young Jenna", "id": 63372, "credit_id": "52fe43259251416c750054db", "cast_id": 16, "profile_path": "/2YzM71L9qmssPY53WxtbARQdFAo.jpg", "order": 4}, {"name": "Sean Marquette", "character": "Young Matt", "id": 63373, "credit_id": "52fe43259251416c750054df", "cast_id": 17, "profile_path": "/24Mh1gnjmPmHmkV3vWIce03Lm2E.jpg", "order": 5}, {"name": "Ashley Benson", "character": "Six Chick", "id": 78030, "credit_id": "52fe43259251416c750054e3", "cast_id": 18, "profile_path": "/dxi0fMJ7CKGwnCuAGQMqqh7xbBW.jpg", "order": 6}, {"name": "Susan Egan", "character": "Tracy Hansen", "id": 86128, "credit_id": "52fe43259251416c750054e7", "cast_id": 19, "profile_path": "/makjHZa6ZsjH16gLp276tB1Krd3.jpg", "order": 7}, {"name": "Lynn Collins", "character": "Wendy", "id": 21044, "credit_id": "52fe43259251416c750054eb", "cast_id": 20, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 8}, {"name": "Renee Olstead", "character": "Becky", "id": 155621, "credit_id": "52fe43259251416c750054ef", "cast_id": 21, "profile_path": "/Alru3bM9sSE0Q6yeN5fLwNxIy8v.jpg", "order": 9}, {"name": "Alexandra Kyle", "character": "Young Tom-Tom", "id": 157108, "credit_id": "52fe43259251416c750054f3", "cast_id": 22, "profile_path": "/zQRtf4W7AUrCe10m8aJwu4IH4Gq.jpg", "order": 10}, {"name": "Alex Black", "character": "Young Chris Grandy", "id": 154694, "credit_id": "52fe43259251416c750054f7", "cast_id": 23, "profile_path": "/tfJXRIsKO1mvpN6KfVtVfcqwslj.jpg", "order": 11}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe43259251416c7500548b", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 5.8, "runtime": 98}, "496": {"poster_path": "/czn1hU2hJ9ZnDSMvT9lKo261ABH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128505958, "overview": "Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.", "video": false, "id": 496, "genres": [{"id": 35, "name": "Comedy"}], "title": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", "tagline": "Come to Kazakhstan, it's nice!", "vote_count": 367, "homepage": "http://www.boratmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "kk", "name": "\u049b\u0430\u0437\u0430\u049b"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443453", "adult": false, "backdrop_path": "/hAFi159H1TIg3NIi8fGUyTVO1kU.jpg", "production_companies": [{"name": "Four By Two Productions", "id": 20567}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2006-11-02", "popularity": 1.02473761514437, "original_title": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", "budget": 18000000, "cast": [{"name": "Sacha Baron Cohen", "character": "Borat Sagdiyev", "id": 6730, "credit_id": "52fe424ac3a36847f8012b0b", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Ken Davitian", "character": "Azamat Bagatov", "id": 6734, "credit_id": "52fe424ac3a36847f8012b0f", "cast_id": 6, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 1}, {"name": "Luenell", "character": "Luenell", "id": 6735, "credit_id": "52fe424ac3a36847f8012b13", "cast_id": 7, "profile_path": "/qU79UzQhwIgmTCi4HAMj5NOCT4J.jpg", "order": 2}, {"name": "Pamela Anderson", "character": "Herself", "id": 6736, "credit_id": "52fe424ac3a36847f8012b17", "cast_id": 8, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 3}, {"name": "Bob Barr", "character": "Himself", "id": 1082650, "credit_id": "52fe424ac3a36847f8012b69", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Alan Keyes", "character": "Himself", "id": 104882, "credit_id": "52fe424ac3a36847f8012b6d", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Carole De Saram", "character": "Herself", "id": 1123205, "credit_id": "52fe424ac3a36847f8012b71", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Mitchell Falk", "character": "Prime Minister of Kazakhstan", "id": 1123206, "credit_id": "52fe424ac3a36847f8012b75", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "David Corcoran", "character": "Himself - Fraternity Member (uncredited)", "id": 1402792, "credit_id": "5498832fc3a3681cf80001a4", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Andre Myers", "character": "Pride Dancer (uncredited)", "id": 1379499, "credit_id": "54988365925141502d000145", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Jean-Pierre Parent", "character": "Kazakh Swimmer (uncredited)", "id": 1402793, "credit_id": "54988377c3a3681cf80001ad", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Chip Pickering", "character": "Himself - U.S. Congressman (uncredited)", "id": 1402794, "credit_id": "54988399c3a3681cf80001b6", "cast_id": 29, "profile_path": null, "order": 11}], "directors": [{"name": "Larry Charles", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012b65", "profile_path": "/fg42iXWfuIeRVk4NFNWvWJf4hst.jpg", "id": 6767}], "vote_average": 6.2, "runtime": 82}, "497": {"poster_path": "/3yJUlOtVa09CYJocwBU8eAryja0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 284600000, "overview": "A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cellblock's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.", "video": false, "id": 497, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Green Mile", "tagline": "Miracles do happen.", "vote_count": 1210, "homepage": "http://thegreenmile.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120689", "adult": false, "backdrop_path": "/dATygzDbQGJWlolx2vebgqFYAKO.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Darkwoods Productions", "id": 3982}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1999-12-10", "popularity": 1.79333091049337, "original_title": "The Green Mile", "budget": 60000000, "cast": [{"name": "Tom Hanks", "character": "Paul Edgecomb", "id": 31, "credit_id": "52fe424ac3a36847f8012bc7", "cast_id": 4, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Michael Clarke Duncan", "character": "John Coffey", "id": 61981, "credit_id": "52fe424ac3a36847f8012bcb", "cast_id": 5, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 1}, {"name": "David Morse", "character": "Brutus \"Brutal\" Howell", "id": 52, "credit_id": "52fe424ac3a36847f8012c0f", "cast_id": 17, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Bonnie Hunt", "character": "Jan Edgecomb", "id": 5149, "credit_id": "52fe424ac3a36847f8012c0b", "cast_id": 16, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 3}, {"name": "James Cromwell", "character": "Warden Hal Moores", "id": 2505, "credit_id": "52fe424ac3a36847f8012c2f", "cast_id": 25, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 4}, {"name": "Patricia Clarkson", "character": "Melinda Moores", "id": 1276, "credit_id": "52fe424ac3a36847f8012c1b", "cast_id": 20, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 5}, {"name": "Michael Jeter", "character": "Eduard Delacroix", "id": 2169, "credit_id": "52fe424ac3a36847f8012c13", "cast_id": 18, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 6}, {"name": "Sam Rockwell", "character": "'Wild Bill' Wharton", "id": 6807, "credit_id": "52fe424ac3a36847f8012c2b", "cast_id": 24, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 7}, {"name": "Graham Greene", "character": "Arlen Bitterbuck", "id": 6804, "credit_id": "52fe424ac3a36847f8012c17", "cast_id": 19, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 8}, {"name": "Doug Hutchison", "character": "Percy Wetmore", "id": 6806, "credit_id": "52fe424ac3a36847f8012c27", "cast_id": 23, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 9}, {"name": "Barry Pepper", "character": "Dean Stanton", "id": 12834, "credit_id": "52fe424ac3a36847f8012c33", "cast_id": 26, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 10}, {"name": "Jeffrey DeMunn", "character": "Harry Terwilliger", "id": 12645, "credit_id": "52fe424ac3a36847f8012c3b", "cast_id": 28, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 11}, {"name": "Harry Dean Stanton", "character": "Toot-Toot", "id": 5048, "credit_id": "52fe424ac3a36847f8012c37", "cast_id": 27, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 12}, {"name": "Gary Sinise", "character": "Lawyer Burt Hammersmith", "id": 33, "credit_id": "52fe424ac3a36847f8012c23", "cast_id": 22, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 13}, {"name": "Dabbs Greer", "character": "Old Paul Edgecomb", "id": 6805, "credit_id": "52fe424ac3a36847f8012c1f", "cast_id": 21, "profile_path": "/fYqPZcEkaStHTqDlIqxITnr5iJM.jpg", "order": 14}, {"name": "Eve Brent", "character": "Elaine Connelly", "id": 128201, "credit_id": "52fe424ac3a36847f8012c3f", "cast_id": 29, "profile_path": "/cQhAjiXxOfgnmDgLRbFpwrzG5Q0.jpg", "order": 15}], "directors": [{"name": "Frank Darabont", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012bb7", "profile_path": "/9KVvZtDyy8DXacw2TTsjC9VLxQi.jpg", "id": 4027}], "vote_average": 7.8, "runtime": 189}, "500": {"poster_path": "/4ctv9pxKpwjTFevWQbvaqXkXbPF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14661007, "overview": "A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.", "video": false, "id": 500, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Reservoir Dogs", "tagline": "Every dog has his day.", "vote_count": 810, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105236", "adult": false, "backdrop_path": "/gjOiE5EYH5sqcJYlSDZnVWRMgNV.jpg", "production_companies": [{"name": "Dog Eat Dog Productions Inc.", "id": 26198}, {"name": "Live Entertainment", "id": 285}], "release_date": "1992-06-25", "popularity": 1.17657150836133, "original_title": "Reservoir Dogs", "budget": 1200000, "cast": [{"name": "Harvey Keitel", "character": "Mr. White/Larry Dimmick", "id": 1037, "credit_id": "52fe424ac3a36847f8012d01", "cast_id": 20, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 0}, {"name": "Tim Roth", "character": "Mr. Orange/Freddy Newandyke", "id": 3129, "credit_id": "52fe424ac3a36847f8012cbd", "cast_id": 4, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 1}, {"name": "Michael Madsen", "character": "Mr. Blonde/Vic Vega", "id": 147, "credit_id": "52fe424ac3a36847f8012cc1", "cast_id": 5, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 2}, {"name": "Chris Penn", "character": "Nice Guy Eddie Cabot", "id": 2969, "credit_id": "52fe424ac3a36847f8012cc5", "cast_id": 6, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Mr. Pink", "id": 884, "credit_id": "52fe424ac3a36847f8012cc9", "cast_id": 7, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Lawrence Tierney", "character": "Joe Cabot", "id": 6937, "credit_id": "52fe424ac3a36847f8012ccd", "cast_id": 8, "profile_path": "/iFPg06kGUTdgRUkrYir3xt1Dt7c.jpg", "order": 5}, {"name": "Edward Bunker", "character": "Mr. Blue", "id": 6939, "credit_id": "52fe424ac3a36847f8012cd5", "cast_id": 11, "profile_path": "/kQNf8eN5qpWXAhNUrnUnWtBd3Eu.jpg", "order": 6}, {"name": "Quentin Tarantino", "character": "Mr. Brown", "id": 138, "credit_id": "52fe424ac3a36847f8012cd9", "cast_id": 12, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 7}, {"name": "Randy Brooks", "character": "Detective Holdaway", "id": 6938, "credit_id": "52fe424ac3a36847f8012cd1", "cast_id": 9, "profile_path": "/gKWfYjrlMBbaI4dOlnqhWZMWKK0.jpg", "order": 8}, {"name": "Kirk Baltz", "character": "Officer Marvin Nash", "id": 3206, "credit_id": "52fe424ac3a36847f8012d05", "cast_id": 22, "profile_path": "/zCuugN0Lgsi5IKRq9OyYl3vh9pU.jpg", "order": 9}, {"name": "Steven Wright", "character": "K-Billy DJ (voice)", "id": 3214, "credit_id": "52fe424ac3a36847f8012d45", "cast_id": 33, "profile_path": "/m9827iUNPGTbAsfjHD9tpMCXYbR.jpg", "order": 10}, {"name": "Rich Turner", "character": "Sheriff #1", "id": 46346, "credit_id": "52fe424ac3a36847f8012d49", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "David Steen", "character": "Sheriff #2", "id": 1067187, "credit_id": "52fe424ac3a36847f8012d4d", "cast_id": 35, "profile_path": "/kgdUlAb34rXiSamG5It02YDmDnU.jpg", "order": 12}, {"name": "Tony Cosmo", "character": "Sheriff #3", "id": 1287673, "credit_id": "52fe424ac3a36847f8012d51", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Stevo Polyi", "character": "Sheriff #4", "id": 65908, "credit_id": "52fe424ac3a36847f8012d55", "cast_id": 37, "profile_path": null, "order": 14}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012cb9", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.6, "runtime": 99}, "172533": {"poster_path": "/2FxzZPGS4ALSPuFLitK69F3uM02.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too long\u2026 you know what makes the line between \u201cfriends\u201d and \u201cmore than friends\u201d really blurry? Beer.", "video": false, "id": 172533, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Drinking Buddies", "tagline": "A comedy about knowing when to say when.", "vote_count": 142, "homepage": "http://www.magpictures.com/drinkingbuddies", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2265398", "adult": false, "backdrop_path": "/eKBlVf6l4g0lRX25cFCVGEcmDy0.jpg", "production_companies": [{"name": "Burn Later Productions", "id": 18346}], "release_date": "2013-08-23", "popularity": 0.970916193415665, "original_title": "Drinking Buddies", "budget": 0, "cast": [{"name": "Olivia Wilde", "character": "Kate", "id": 59315, "credit_id": "52fe4d21c3a36847f825046b", "cast_id": 4, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 0}, {"name": "Jake M. Johnson", "character": "Luke", "id": 543505, "credit_id": "52fe4d21c3a36847f825046f", "cast_id": 5, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Jill", "id": 84223, "credit_id": "52fe4d21c3a36847f8250477", "cast_id": 7, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Ron Livingston", "character": "Chris", "id": 17402, "credit_id": "52fe4d21c3a36847f8250473", "cast_id": 6, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 3}, {"name": "Jason Sudeikis", "character": "Gene Dentler", "id": 58224, "credit_id": "52fe4d21c3a36847f8250483", "cast_id": 10, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 4}, {"name": "Ti West", "character": "Dave", "id": 101542, "credit_id": "52fe4d21c3a36847f825047b", "cast_id": 8, "profile_path": "/vRxN4eGT6X5MMdjpExZ0YvjDeg9.jpg", "order": 5}, {"name": "Mike Brune", "character": "Mike", "id": 81341, "credit_id": "52fe4d21c3a36847f825047f", "cast_id": 9, "profile_path": "/k3wbxyTOGP91VowqNZWOvqj7rW2.jpg", "order": 6}, {"name": "Frank V. Ross", "character": "Frank", "id": 1034482, "credit_id": "52fe4d21c3a36847f8250487", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Joe Swanberg", "character": "Angry guy in car", "id": 40863, "credit_id": "52fe4d21c3a36847f825048b", "cast_id": 12, "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "order": 8}, {"name": "Michael Gaertner", "character": "Man with Fiance", "id": 1272896, "credit_id": "52fe4d21c3a36847f825048f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Kristin Davis", "character": "Fiance", "id": 935937, "credit_id": "52fe4d21c3a36847f8250493", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Jim Ciback", "character": "Jim", "id": 1272897, "credit_id": "52fe4d21c3a36847f8250497", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Alicia Van Couvering", "character": "Amy", "id": 139137, "credit_id": "52fe4d21c3a36847f825049b", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Michael Zeller", "character": "Eli", "id": 1272898, "credit_id": "52fe4d21c3a36847f825049f", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Joe Swanberg", "department": "Directing", "job": "Director", "credit_id": "52fe4d21c3a36847f825045b", "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "id": 40863}], "vote_average": 6.1, "runtime": 90}, "503": {"poster_path": "/kHrdehzlhyyb190D3RvH8mdX1y2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181674817, "overview": "A Cross-Atlantic ship is traveling in the Atlantic when a giant wave flips it over as the passengers begin a dramatic fight for their lives. Catastrophe film from Wolfgang Petersen from 2006.", "video": false, "id": 503, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Poseidon", "tagline": "Mayday", "vote_count": 136, "homepage": "http://www2.warnerbros.com/poseidon/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0409182", "adult": false, "backdrop_path": "/tUGSLoMcxNWZ0OIRSqDaB2jNbdE.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Virtual Studios", "id": 449}, {"name": "Radiant Productions", "id": 18990}, {"name": "Next Entertainment", "id": 1633}, {"name": "Irwin Allen Productions", "id": 14024}, {"name": "Synthesis Entertainment", "id": 19943}], "release_date": "2006-05-12", "popularity": 0.817852881663743, "original_title": "Poseidon", "budget": 160000000, "cast": [{"name": "Kurt Russell", "character": "Robert Ramsey", "id": 6856, "credit_id": "52fe424ac3a36847f8012ef5", "cast_id": 4, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Richard Dreyfuss", "character": "Richard Nelson", "id": 3037, "credit_id": "52fe424ac3a36847f8012efd", "cast_id": 6, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 1}, {"name": "Josh Lucas", "character": "Dylan Johns", "id": 6164, "credit_id": "52fe424ac3a36847f8012ef9", "cast_id": 5, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 2}, {"name": "Jacinda Barrett", "character": "Maggie James", "id": 6857, "credit_id": "52fe424bc3a36847f8012f01", "cast_id": 7, "profile_path": "/qM5BhDkFh18CASTRGp9UPj4PcYO.jpg", "order": 3}, {"name": "Emmy Rossum", "character": "Jennifer Ramsey", "id": 4730, "credit_id": "52fe424bc3a36847f8012f05", "cast_id": 8, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 4}, {"name": "Mike Vogel", "character": "Christian", "id": 6858, "credit_id": "52fe424bc3a36847f8012f09", "cast_id": 9, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 5}, {"name": "M\u00eda Maestro", "character": "Elena", "id": 6859, "credit_id": "52fe424bc3a36847f8012f0d", "cast_id": 10, "profile_path": "/UIf7kAHqAGRwJ9TZSkZ91A1scr.jpg", "order": 6}, {"name": "Jimmy Bennett", "character": "Conor James", "id": 6860, "credit_id": "52fe424bc3a36847f8012f11", "cast_id": 11, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 7}, {"name": "Andre Braugher", "character": "Captain Bradford", "id": 6861, "credit_id": "52fe424bc3a36847f8012f15", "cast_id": 12, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 8}, {"name": "Freddy Rodr\u00edguez", "character": "Valentin", "id": 6862, "credit_id": "52fe424bc3a36847f8012f19", "cast_id": 13, "profile_path": "/iP6RXaUNTj953RoL8jK3iTV2441.jpg", "order": 9}, {"name": "Kevin Dillon", "character": "Lucky Larry", "id": 6863, "credit_id": "52fe424bc3a36847f8012f1d", "cast_id": 14, "profile_path": "/cePW2pwfTv82du2glTNKklKldAf.jpg", "order": 10}, {"name": "Kirk B.R. Woller", "character": "Chief Officer Reynolds", "id": 6864, "credit_id": "52fe424bc3a36847f8012f21", "cast_id": 15, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 11}, {"name": "Fergie", "character": "Gloria", "id": 20497, "credit_id": "54a57d4ac3a36855420124d0", "cast_id": 42, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 12}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012ee5", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 5.1, "runtime": 99}, "504": {"poster_path": "/1wFcetx3zDkIaVgXuK6F5ug4pDR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60378584, "overview": "Aileen Wuornos is an emotionally scarred highway hooker who shoots a sadistic trick who rapes her and ultimately becomes America's first female serial killer. The film, based on a true story, centers more on the surrounding circumstances than on the murders.", "video": false, "id": 504, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Monster", "tagline": "Based on a true story.", "vote_count": 86, "homepage": "http://www.monster-derfilm.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0340855", "adult": false, "backdrop_path": "/pexMctImHaIj8haojBDP5RxhM9X.jpg", "production_companies": [{"name": "Newmarket Films", "id": 28}], "release_date": "2003-11-16", "popularity": 0.5266102274242, "original_title": "Monster", "budget": 8000000, "cast": [{"name": "Charlize Theron", "character": "Aileen", "id": 6885, "credit_id": "52fe424bc3a36847f8013009", "cast_id": 3, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 0}, {"name": "Christina Ricci", "character": "Selby", "id": 6886, "credit_id": "52fe424bc3a36847f801300d", "cast_id": 4, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 1}, {"name": "Bruce Dern", "character": "Thomas", "id": 6905, "credit_id": "52fe424bc3a36847f8013089", "cast_id": 26, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 2}, {"name": "Lee Tergesen", "character": "Vincent Corey", "id": 6906, "credit_id": "52fe424bc3a36847f801308d", "cast_id": 27, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 3}, {"name": "Annie Corley", "character": "Donna", "id": 6907, "credit_id": "52fe424bc3a36847f8013091", "cast_id": 28, "profile_path": "/ypA6im4I1S5SzzNAJOdRmZq01YX.jpg", "order": 4}, {"name": "Marc Macaulay", "character": "Will/Daddy \"John\"", "id": 6908, "credit_id": "52fe424bc3a36847f8013095", "cast_id": 29, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 5}, {"name": "Stephan Jones", "character": "Lawyer", "id": 6909, "credit_id": "52fe424bc3a36847f8013099", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "T. Robert Pigott", "character": "Bartender", "id": 6910, "credit_id": "52fe424bc3a36847f801309d", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Catherine Mangan", "character": "Justy", "id": 95749, "credit_id": "52fe424bc3a36847f80130a7", "cast_id": 34, "profile_path": null, "order": 8}], "directors": [{"name": "Patty Jenkins", "department": "Directing", "job": "Director", "credit_id": "52fe424bc3a36847f8012fff", "profile_path": null, "id": 6884}], "vote_average": 6.8, "runtime": 110}, "33273": {"poster_path": "/kIC41387ph63EIWaGkHxij6S68n.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The story of two men on different sides of a prison riot -- the inmate leading the rebellion and the young guard trapped in the revolt, who poses as a prisoner in a desperate attempt to survive the ordeal.", "video": false, "id": 33273, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Cell 211", "tagline": "To survive inside, he has to become one of them.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "eu", "name": "euskera"}], "imdb_id": "tt1242422", "adult": false, "backdrop_path": "/ktmOgR85nHbdUL3EBESus3YyKe4.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "La Fabrique 2", "id": 7346}, {"name": "La Fabrique de Films", "id": 2673}, {"name": "Morena Films", "id": 10031}, {"name": "Sofica Europacorp", "id": 854}, {"name": "Sofica Soficin\u00e9ma 4", "id": 11397}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Vaca Films", "id": 7345}], "release_date": "2009-11-06", "popularity": 0.605676738107687, "original_title": "Celda 211", "budget": 5700000, "cast": [{"name": "Luis Tosar", "character": "Malamadre", "id": 16867, "credit_id": "52fe45089251416c910252f7", "cast_id": 1, "profile_path": "/tRNvw26QeN80JwWHoamk262hjjq.jpg", "order": 0}, {"name": "Alberto Ammann", "character": "Juan Oliver", "id": 110424, "credit_id": "52fe45089251416c910252fb", "cast_id": 2, "profile_path": "/5Z1eTkSZeqHkpIoMiuXcLjG8iGo.jpg", "order": 1}, {"name": "Antonio Resines", "character": "Jos\u00e9 Utrilla", "id": 37569, "credit_id": "52fe45089251416c910252ff", "cast_id": 3, "profile_path": "/dyx66cqO6nsZqBu6hIHHT5Se8WT.jpg", "order": 2}, {"name": "Carlos Bardem", "character": "Apache", "id": 78882, "credit_id": "52fe45089251416c91025309", "cast_id": 5, "profile_path": "/pCDBcmJo0vSQPEX3aobh1ub0acd.jpg", "order": 3}, {"name": "F\u00e9lix Cubero", "character": "Germ\u00e1n", "id": 116082, "credit_id": "52fe45089251416c9102530d", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Marta Etura ", "character": "Elena", "id": 587930, "credit_id": "52fe45089251416c9102531d", "cast_id": 10, "profile_path": "/oeJdzgkM4u6rnay5zkjlK11deSG.jpg", "order": 5}, {"name": "Luis Zahera", "character": "Releches", "id": 28511, "credit_id": "52fe45089251416c91025321", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Fernando Soto", "character": "Armando Nieto", "id": 184453, "credit_id": "52fe45089251416c91025325", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Vicente Romero", "character": "Tachuela", "id": 6540, "credit_id": "52fe45089251416c91025329", "cast_id": 13, "profile_path": "/bY7ZfavsmIGAFcRWuB0o12hgxq8.jpg", "order": 8}, {"name": "Patxi Bisquert", "character": "Jon Arteaga", "id": 942128, "credit_id": "52fe45089251416c9102532d", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Manolo Solo", "character": "Prison Director", "id": 592709, "credit_id": "52fe45089251416c91025391", "cast_id": 31, "profile_path": "/vIYNmEhVT2b1SP9TTrIdyZzkm1N.jpg", "order": 10}, {"name": "Josean Bengoetxea", "character": "Antxon Elorza 'El Profesor'", "id": 1117803, "credit_id": "52fe45089251416c91025395", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Anartz Zuazua", "character": "Asier Urruticoechea", "id": 1117804, "credit_id": "52fe45089251416c91025399", "cast_id": 33, "profile_path": "/nerzZWj1fKGOWfVUQeMq9Pbu7oH.jpg", "order": 12}], "directors": [{"name": "Daniel Monz\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe45089251416c91025305", "profile_path": "/wUC6ElTblGlUI03iSxw6U67DK51.jpg", "id": 74943}], "vote_average": 7.1, "runtime": 110}, "8698": {"poster_path": "/AliSeCLFB6ZAkQIxosr8RAkFf6R.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 179265204, "overview": "In an alternate turn of the 20th century, an attack on the Bank of England by men who appear to be German soldiers followed by an attack on a German Zeppelin factory by the same men this time dressed as British soldiers, leads Europe to the brink of war. An emissary of the British government, arrives in Africa, hoping to recruit the legendary hunter Allan Quatermain to investigate the situation.", "video": false, "id": 8698, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The League of Extraordinary Gentlemen", "tagline": "The power of seven become a league of one.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0311429", "adult": false, "backdrop_path": "/rWtdOms2x2r1H4hx2IG463fuis6.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Angry Films", "id": 12087}, {"name": "International Production Company", "id": 1507}, {"name": "JD Productions", "id": 475}, {"name": "Mediastream Dritte Film GmbH & Co. Beteiligungs KG", "id": 19352}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2003-07-11", "popularity": 1.63778046189846, "original_title": "The League of Extraordinary Gentlemen", "budget": 78000000, "cast": [{"name": "Sean Connery", "character": "Allan Quatermain", "id": 738, "credit_id": "52fe44b5c3a36847f80a5963", "cast_id": 17, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Naseeruddin Shah", "character": "Captain Nemo", "id": 6497, "credit_id": "52fe44b5c3a36847f80a5947", "cast_id": 10, "profile_path": "/qWnNn7RupC0vqwZGWUHHfLuyKMM.jpg", "order": 1}, {"name": "Peta Wilson", "character": "Mina Harker", "id": 42307, "credit_id": "52fe44b5c3a36847f80a594b", "cast_id": 11, "profile_path": "/bscIMeocvJAojtsc7kpK6ab9xgL.jpg", "order": 2}, {"name": "Tony Curran", "character": "Rodney Skinner (The Invisible Man)", "id": 2220, "credit_id": "52fe44b5c3a36847f80a594f", "cast_id": 12, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 3}, {"name": "Stuart Townsend", "character": "Dorian Gray", "id": 56778, "credit_id": "52fe44b5c3a36847f80a5953", "cast_id": 13, "profile_path": "/8xnPcuwJEz2aiPr4NoqgfBj6lnW.jpg", "order": 4}, {"name": "Shane West", "character": "Tom Sawyer", "id": 81295, "credit_id": "52fe44b5c3a36847f80a5957", "cast_id": 14, "profile_path": "/1TiKpPiFwdUbs24yrNZLSzAjsnk.jpg", "order": 5}, {"name": "Jason Flemyng", "character": "Dr. Henry Jekyll / Edward Hyde", "id": 973, "credit_id": "52fe44b5c3a36847f80a595b", "cast_id": 15, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 6}, {"name": "Richard Roxburgh", "character": "M", "id": 12206, "credit_id": "52fe44b5c3a36847f80a595f", "cast_id": 16, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 7}, {"name": "Max Ryan", "character": "Dante", "id": 21942, "credit_id": "52fe44b5c3a36847f80a5967", "cast_id": 18, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 8}, {"name": "Tom Goodman-Hill", "character": "Sanderson Reed", "id": 43034, "credit_id": "52fe44b5c3a36847f80a596b", "cast_id": 19, "profile_path": "/ryyyhVGZ9cHFQQbXu1A9Vh7DKv3.jpg", "order": 9}, {"name": "David Hemmings", "character": "Nigel", "id": 15196, "credit_id": "52fe44b5c3a36847f80a596f", "cast_id": 20, "profile_path": "/k2M6UrbkWYF8FewmKQm3TWu6KMX.jpg", "order": 10}, {"name": "Terry O'Neill", "character": "Ishmael", "id": 82410, "credit_id": "52fe44b5c3a36847f80a5973", "cast_id": 21, "profile_path": "/gJazxnZsm4sDavnP7gedgO7rtpw.jpg", "order": 11}, {"name": "Rudolf Pellar", "character": "Draper", "id": 953987, "credit_id": "52fe44b5c3a36847f80a5977", "cast_id": 22, "profile_path": "/3q8e2SvZJrGAlRtTk7N8rbb2P6k.jpg", "order": 12}, {"name": "Robert Willox", "character": "Constable Dunning", "id": 27416, "credit_id": "52fe44b5c3a36847f80a597b", "cast_id": 23, "profile_path": "/z8wdLKL5bHPr2z199NJTW1Z1MXq.jpg", "order": 13}, {"name": "Robert Orr", "character": "Running Officer", "id": 21014, "credit_id": "52fe44b5c3a36847f80a597f", "cast_id": 24, "profile_path": "/1fnh6iPohS10SXQg2a8Xk9kkXaM.jpg", "order": 14}, {"name": "Michael McGuffie", "character": "Copper #1", "id": 953058, "credit_id": "52fe44b5c3a36847f80a5983", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Joel Kirby", "character": "Copper #2", "id": 25677, "credit_id": "52fe44b5c3a36847f80a5987", "cast_id": 26, "profile_path": "/pDreMKCIgOx732oMoQMhJx1FFFm.jpg", "order": 16}, {"name": "Marek Va\u0161ut", "character": "Soldier", "id": 10849, "credit_id": "52fe44b5c3a36847f80a598b", "cast_id": 27, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 17}, {"name": "Ewart James Walters", "character": "Toby", "id": 207031, "credit_id": "52fe44b5c3a36847f80a598f", "cast_id": 28, "profile_path": "/z4WRDB2e4koEf5X9kcr1AeoqVYn.jpg", "order": 18}, {"name": "Michal Gr\u00fcn", "character": "Assassin #3", "id": 950948, "credit_id": "52fe44b5c3a36847f80a5993", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Robert Vahey", "character": "Elderly Hunter", "id": 201428, "credit_id": "52fe44b5c3a36847f80a5997", "cast_id": 30, "profile_path": "/6QXqhquFJeqHLQELfww1kwERxLP.jpg", "order": 20}, {"name": "Sylvester Morand", "character": "Old Treveler", "id": 36664, "credit_id": "52fe44b5c3a36847f80a599b", "cast_id": 31, "profile_path": "/yKtoG2NtNtWtRa5ZlgWKctUfbPg.jpg", "order": 21}, {"name": "Mariano Titanti", "character": "Edgar Shreave", "id": 1077312, "credit_id": "52fe44b5c3a36847f80a599f", "cast_id": 32, "profile_path": "/e48fHF7yQ8eFJsJ3XsCicSilIW3.jpg", "order": 22}, {"name": "Huggy Leaver", "character": "Hanson Cab Driver", "id": 992, "credit_id": "52fe44b5c3a36847f80a59a3", "cast_id": 33, "profile_path": "/xcfx1ELLNth5UZIM4lOpMK3GG0k.jpg", "order": 23}], "directors": [{"name": "Stephen Norrington", "department": "Directing", "job": "Director", "credit_id": "52fe44b5c3a36847f80a5913", "profile_path": "/8BG5bnmk28IMRN8diyTwExn68HI.jpg", "id": 10808}], "vote_average": 5.7, "runtime": 110}, "8699": {"poster_path": "/pdy6TWKUbSC9vtmxsFA73FZBVP3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90574188, "overview": "It's the 1970's and San Diego super-sexist anchorman Ron Burgundy is the top dog in local TV, but that's all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.", "video": false, "id": 8699, "genres": [{"id": 35, "name": "Comedy"}], "title": "Anchorman: The Legend of Ron Burgundy", "tagline": "They bring you the news so you don't have to get it yourself.", "vote_count": 439, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eUU6edsZcr7I0AO8rHcB3vQwcOH.jpg", "poster_path": "/xjnbrB93Vj5yGYwU0uuW8Tu2qoc.jpg", "id": 93791, "name": "Anchorman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0357413", "adult": false, "backdrop_path": "/8WsItKHM14rhyG8hW6hswkAtVu.jpg", "production_companies": [{"name": "DreamWorks Pictures", "id": 7293}, {"name": "Apatow Productions", "id": 10105}, {"name": "Herzog-Cowen Entertainment", "id": 2523}], "release_date": "2004-07-09", "popularity": 0.96510244826437, "original_title": "Anchorman: The Legend of Ron Burgundy", "budget": 26000000, "cast": [{"name": "Will Ferrell", "character": "Ron Burgundy", "id": 23659, "credit_id": "52fe44b5c3a36847f80a59e3", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Christina Applegate", "character": "Veronica Corningstone", "id": 18979, "credit_id": "52fe44b5c3a36847f80a59df", "cast_id": 1, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 1}, {"name": "Paul Rudd", "character": "Brian Fantana", "id": 22226, "credit_id": "52fe44b5c3a36847f80a59e7", "cast_id": 3, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 2}, {"name": "David Koechner", "character": "Champion 'Champ' Kind", "id": 28638, "credit_id": "52fe44b5c3a36847f80a5a4f", "cast_id": 25, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 3}, {"name": "Steve Carell", "character": "Brick Tamland", "id": 4495, "credit_id": "52fe44b5c3a36847f80a59eb", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 4}, {"name": "Fred Willard", "character": "Ed Harken", "id": 20753, "credit_id": "52fe44b5c3a36847f80a5a53", "cast_id": 26, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 5}, {"name": "Chris Parnell", "character": "Garth Holladay", "id": 51382, "credit_id": "52fe44b5c3a36847f80a5a57", "cast_id": 27, "profile_path": "/dLdXHfbJ7TMe3qbtNzPpSLuaMos.jpg", "order": 6}, {"name": "Vince Vaughn", "character": "Wes Mantooth", "id": 4937, "credit_id": "52fe44b5c3a36847f80a5a1b", "cast_id": 16, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 7}, {"name": "Luke Wilson", "character": "Frank Vitchard", "id": 36422, "credit_id": "52fe44b5c3a36847f80a5a07", "cast_id": 11, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 8}, {"name": "Ben Stiller", "character": "Arturo Mendes", "id": 7399, "credit_id": "52fe44b5c3a36847f80a5a17", "cast_id": 15, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 9}, {"name": "Kathryn Hahn", "character": "Helen", "id": 17696, "credit_id": "52fe44b5c3a36847f80a59ef", "cast_id": 5, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 10}, {"name": "Seth Rogen", "character": "Eager Cameraman", "id": 19274, "credit_id": "52fe44b5c3a36847f80a59f3", "cast_id": 6, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 11}, {"name": "Danny Trejo", "character": "Barkeeper", "id": 11160, "credit_id": "52fe44b5c3a36847f80a59f7", "cast_id": 7, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 12}, {"name": "Ian Roberts", "character": "Stage Manager", "id": 13101, "credit_id": "52fe44b5c3a36847f80a59fb", "cast_id": 8, "profile_path": "/yVLXoRloTMZGoZIoaFLcyPrp1yV.jpg", "order": 13}, {"name": "Darcy Donavan", "character": "Hot Blonde", "id": 55709, "credit_id": "52fe44b5c3a36847f80a59ff", "cast_id": 9, "profile_path": null, "order": 14}, {"name": "Judd Apatow", "character": "News Station Employee", "id": 41039, "credit_id": "52fe44b5c3a36847f80a5a03", "cast_id": 10, "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "order": 15}, {"name": "Jack Black", "character": "Motorradfahrer (uncredited)", "id": 70851, "credit_id": "52fe44b5c3a36847f80a5a0b", "cast_id": 12, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 16}, {"name": "Missi Pyle", "character": "Zoo Keeper (uncredited)", "id": 1294, "credit_id": "52fe44b5c3a36847f80a5a0f", "cast_id": 13, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 17}, {"name": "Tim Robbins", "character": "Public TV News Anchor (uncredited)", "id": 504, "credit_id": "52fe44b5c3a36847f80a5a13", "cast_id": 14, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 18}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe44b5c3a36847f80a5a27", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.7, "runtime": 94}, "508": {"poster_path": "/kfX8Ctin3fSZbdnjh6CXSNZUOVP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244931766, "overview": "Follows seemingly unrelated people as their lives begin to intertwine while they fall in, and out, of love. Affections languish and develop as Christmas draws near.", "video": false, "id": 508, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Love Actually", "tagline": "The ultimate romantic comedy.", "vote_count": 646, "homepage": "http://www.loveactually.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0314331", "adult": false, "backdrop_path": "/jVvyV0VzRB8xbBxGAPMHUgT3CaZ.jpg", "production_companies": [{"name": "DNA Films", "id": 284}], "release_date": "2003-11-07", "popularity": 1.12965634886669, "original_title": "Love Actually", "budget": 40000000, "cast": [{"name": "Bill Nighy", "character": "Billy Mack", "id": 2440, "credit_id": "52fe424bc3a36847f8013351", "cast_id": 15, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "Gregor Fisher", "character": "Joe", "id": 7053, "credit_id": "52fe424bc3a36847f8013355", "cast_id": 16, "profile_path": "/reJh7YHXEfdvY6dVHyzXOP7eNhs.jpg", "order": 1}, {"name": "Colin Firth", "character": "Jamie Bennett", "id": 5472, "credit_id": "52fe424bc3a36847f8013359", "cast_id": 18, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 2}, {"name": "Sienna Guillory", "character": "Jamie's Girlfriend", "id": 7055, "credit_id": "52fe424bc3a36847f801335d", "cast_id": 19, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 3}, {"name": "Liam Neeson", "character": "Daniel", "id": 3896, "credit_id": "52fe424bc3a36847f8013361", "cast_id": 20, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 4}, {"name": "Emma Thompson", "character": "Karen", "id": 7056, "credit_id": "52fe424bc3a36847f8013365", "cast_id": 21, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 5}, {"name": "Kris Marshall", "character": "Colin Frissell", "id": 7058, "credit_id": "52fe424bc3a36847f8013369", "cast_id": 23, "profile_path": "/qFYjr7vVdSlsRD3bPlIfwft532m.jpg", "order": 6}, {"name": "Heike Makatsch", "character": "Mia", "id": 7059, "credit_id": "52fe424bc3a36847f801336d", "cast_id": 24, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 7}, {"name": "Martin Freeman", "character": "John", "id": 7060, "credit_id": "52fe424bc3a36847f8013371", "cast_id": 25, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 8}, {"name": "Joanna Page", "character": "Just Judy", "id": 7061, "credit_id": "52fe424bc3a36847f8013375", "cast_id": 26, "profile_path": "/i0Mgrg3K2HvcQWnQmliD3FesBAk.jpg", "order": 9}, {"name": "Chiwetel Ejiofor", "character": "Peter", "id": 5294, "credit_id": "52fe424bc3a36847f8013379", "cast_id": 27, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 10}, {"name": "Andrew Lincoln", "character": "Mark", "id": 7062, "credit_id": "52fe424bc3a36847f801337d", "cast_id": 28, "profile_path": "/b4KqT3vy3MFurEp7q2ni1PRyDxL.jpg", "order": 11}, {"name": "Keira Knightley", "character": "Juliet", "id": 116, "credit_id": "52fe424bc3a36847f8013381", "cast_id": 29, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 12}, {"name": "Hugh Grant", "character": "The Prime Minister", "id": 3291, "credit_id": "52fe424bc3a36847f8013385", "cast_id": 30, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 13}, {"name": "Nina Sosanya", "character": "Annie", "id": 7063, "credit_id": "52fe424bc3a36847f8013389", "cast_id": 31, "profile_path": "/gSshTv2RXJPZjYFjq0rV8COk6bX.jpg", "order": 14}, {"name": "Billy Bob Thornton", "character": "The US President", "id": 879, "credit_id": "52fe424bc3a36847f801338d", "cast_id": 32, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 15}, {"name": "Alan Rickman", "character": "Harry", "id": 4566, "credit_id": "52fe424bc3a36847f8013391", "cast_id": 33, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 16}, {"name": "Martine McCutcheon", "character": "Natalie", "id": 47714, "credit_id": "52fe424bc3a36847f801339b", "cast_id": 35, "profile_path": "/dPjVT2PMje8KtXZAiDC00H8sWmZ.jpg", "order": 17}, {"name": "Laura Linney", "character": "Sarah", "id": 350, "credit_id": "52fe424bc3a36847f801339f", "cast_id": 36, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 18}, {"name": "Thomas Sangster", "character": "Sam", "id": 25663, "credit_id": "52fe424cc3a36847f80133c9", "cast_id": 48, "profile_path": "/x8floQ1YshVhPdwdTQDz9aJjuXE.jpg", "order": 19}, {"name": "Rodrigo Santoro", "character": "Karl", "id": 17289, "credit_id": "52fe424bc3a36847f80133a3", "cast_id": 38, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 20}, {"name": "Rowan Atkinson", "character": "Rufus, jewellery salesman", "id": 10730, "credit_id": "52fe424cc3a36847f80133a7", "cast_id": 39, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 21}, {"name": "Claudia Schiffer", "character": "Carol", "id": 33163, "credit_id": "52fe424cc3a36847f80133ab", "cast_id": 40, "profile_path": "/pIF64tY07cbYo3IlnFcPB3KJl5c.jpg", "order": 22}, {"name": "Ivana Mili\u010devi\u0107", "character": "Stacey", "id": 29930, "credit_id": "52fe424cc3a36847f80133af", "cast_id": 41, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 23}, {"name": "January Jones", "character": "Jeannie", "id": 31717, "credit_id": "52fe424cc3a36847f80133b3", "cast_id": 42, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 24}, {"name": "Elisha Cuthbert", "character": "Carol-Anne", "id": 25837, "credit_id": "52fe424cc3a36847f80133b7", "cast_id": 43, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 25}, {"name": "Shannon Elizabeth", "character": "Harriet - the Sexy One", "id": 21596, "credit_id": "52fe424cc3a36847f80133c1", "cast_id": 45, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 26}, {"name": "Denise Richards", "character": "Carla - the Real Friendly One", "id": 9205, "credit_id": "52fe424cc3a36847f80133c5", "cast_id": 46, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 27}, {"name": "Sheila Allen", "character": "Jamie's mum", "id": 1220981, "credit_id": "52fe424cc3a36847f80133cd", "cast_id": 49, "profile_path": "/xRj8h5w0d6btBtR9mhQIv7ufXjL.jpg", "order": 28}], "directors": [{"name": "Richard Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe424bc3a36847f8013305", "profile_path": "/uLjkovqtUtM4SckCFtrevZKKJNM.jpg", "id": 7018}], "vote_average": 6.8, "runtime": 135}, "509": {"poster_path": "/f1gMw3PVicfdq9thlvUIjJ5UdvS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 363889678, "overview": "The British comedy from director Roger Michell tells the love story between a famous actress and a simple book seller from London. A look into the attempt for famous people to have a personal and private life and the ramifications that follow. Nominated for three Golden Globes in 2000.", "video": false, "id": 509, "genres": [{"id": 35, "name": "Comedy"}], "title": "Notting Hill", "tagline": "Can the most famous film star in the world fall for just an ordinary guy?", "vote_count": 271, "homepage": "http://www.notting-hill.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0125439", "adult": false, "backdrop_path": "/vdoJql494lQhcMhqA4ct3oeXZku.jpg", "production_companies": [{"name": "Notting Hill Pictures", "id": 283}, {"name": "Polygram Filmed Entertainment", "id": 31080}, {"name": "Working Title Films", "id": 10163}, {"name": "Bookshop Productions", "id": 282}], "release_date": "1999-05-13", "popularity": 1.05074475109073, "original_title": "Notting Hill", "budget": 42000000, "cast": [{"name": "Julia Roberts", "character": "Anna Scott", "id": 1204, "credit_id": "52fe424cc3a36847f801343d", "cast_id": 11, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Hugh Grant", "character": "William Thacker", "id": 3291, "credit_id": "52fe424cc3a36847f8013441", "cast_id": 12, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 1}, {"name": "Gina McKee", "character": "Bella", "id": 18022, "credit_id": "54839a769251416e74009896", "cast_id": 26, "profile_path": "/quZGThktNWxoeA06Er98QUKgLNr.jpg", "order": 2}, {"name": "Tim McInnerny", "character": "Max", "id": 41043, "credit_id": "54839a39c3a36829b500b627", "cast_id": 24, "profile_path": "/wxO1c0e5N1WHn2wLHmEbvrfqnnX.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Spike", "id": 7026, "credit_id": "52fe424cc3a36847f8013449", "cast_id": 14, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Emma Chambers", "character": "Honey", "id": 7446, "credit_id": "52fe424cc3a36847f8013465", "cast_id": 21, "profile_path": "/mTx1bcCLEWSfeVGX0tpztvevvY1.jpg", "order": 5}, {"name": "Hugh Bonneville", "character": "Bernie", "id": 19923, "credit_id": "54839acd92514175f5002603", "cast_id": 27, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 6}, {"name": "Richard McCabe", "character": "Tony", "id": 7025, "credit_id": "52fe424cc3a36847f8013445", "cast_id": 13, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 7}, {"name": "James Dreyfus", "character": "Martin", "id": 7027, "credit_id": "52fe424cc3a36847f801344d", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Dylan Moran", "character": "Rufus the Thief", "id": 7028, "credit_id": "52fe424cc3a36847f8013451", "cast_id": 16, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 9}, {"name": "Roger Frost", "character": "Annoying Customer", "id": 7029, "credit_id": "52fe424cc3a36847f8013455", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Henry Goodman", "character": "Ritz Concierge", "id": 7030, "credit_id": "52fe424cc3a36847f8013459", "cast_id": 18, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 11}, {"name": "Julian Rhind-Tutt", "character": "'Time Out' Journalist", "id": 7031, "credit_id": "52fe424cc3a36847f801345d", "cast_id": 19, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 12}, {"name": "Lorelei King", "character": "Anna's Publicist", "id": 7032, "credit_id": "52fe424cc3a36847f8013461", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Alec Baldwin", "character": "Jeff King", "id": 7447, "credit_id": "52fe424cc3a36847f8013469", "cast_id": 22, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 14}, {"name": "John Shrapnel", "character": "PR Chief", "id": 940, "credit_id": "52fe424cc3a36847f801346d", "cast_id": 23, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 15}], "directors": [{"name": "Roger Michell", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013403", "profile_path": "/zDjSgsAY44QJljrvzIZWnWauqlg.jpg", "id": 7017}], "vote_average": 6.6, "runtime": 124}, "510": {"poster_path": "/bYZumDpc1o0adyuAZjXqgkZ182m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108981275, "overview": "While serving time for insanity at a state mental hospital, implacable rabble-rouser Randle Patrick McMurphy inspires his fellow patients to rebel against the authoritarian rule of head nurse Mildred Ratched.", "video": false, "id": 510, "genres": [{"id": 18, "name": "Drama"}], "title": "One Flew Over the Cuckoo's Nest", "tagline": "If he's crazy, what does that make you?", "vote_count": 785, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0073486", "adult": false, "backdrop_path": "/zFbKo9V1SVzndc8mydi92txe1jg.jpg", "production_companies": [{"name": "Fantasy Films", "id": 286}], "release_date": "1975-11-18", "popularity": 1.21564315722586, "original_title": "One Flew Over the Cuckoo's Nest", "budget": 3000000, "cast": [{"name": "Jack Nicholson", "character": "Randle Patrick McMurphy", "id": 514, "credit_id": "52fe424cc3a36847f80134fd", "cast_id": 15, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Louise Fletcher", "character": "Nurse Mildred Ratched", "id": 7071, "credit_id": "52fe424cc3a36847f8013501", "cast_id": 16, "profile_path": "/A4Cn7LsuLlOXvOMKv5ez4ThyeZL.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Martini", "id": 518, "credit_id": "52fe424cc3a36847f8013505", "cast_id": 17, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "William Redfield", "character": "Harding", "id": 7072, "credit_id": "52fe424cc3a36847f8013509", "cast_id": 18, "profile_path": "/5Tk02lfq65M4GT4lfCCfSais2Qg.jpg", "order": 3}, {"name": "Scatman Crothers", "character": "Orderly Turkle", "id": 7077, "credit_id": "52fe424cc3a36847f801350d", "cast_id": 19, "profile_path": "/n3REW3TGbjLC8SbaZG7g48pm98n.jpg", "order": 4}, {"name": "Brad Dourif", "character": "Billy Bibbit", "id": 1370, "credit_id": "52fe424cc3a36847f8013511", "cast_id": 20, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 5}, {"name": "Christopher Lloyd", "character": "Taber", "id": 1062, "credit_id": "52fe424cc3a36847f8013515", "cast_id": 21, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 6}, {"name": "Will Sampson", "character": "Chief Bromden", "id": 68301, "credit_id": "52fe424cc3a36847f8013519", "cast_id": 22, "profile_path": "/qcufMVWjaK0jlcDkkUZ6Kawvj2l.jpg", "order": 7}, {"name": "Dean R. Brooks", "character": "Dr. John Spivey", "id": 7075, "credit_id": "52fe424cc3a36847f801351d", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Michael Berryman", "character": "Ellis", "id": 7073, "credit_id": "52fe424cc3a36847f8013521", "cast_id": 24, "profile_path": "/vXvztwbkFc0Pz8ty0Jlaomo8P10.jpg", "order": 9}, {"name": "Sydney Lassick", "character": "Charlie Cheswick", "id": 7085, "credit_id": "52fe424cc3a36847f8013525", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "William Duell", "character": "Jim Sefelt", "id": 7079, "credit_id": "52fe424cc3a36847f8013529", "cast_id": 26, "profile_path": "/1X6Qj2BQyy6QniGx0P73t18UxRk.jpg", "order": 11}, {"name": "Vincent Schiavelli", "character": "Fredrickson", "id": 3418, "credit_id": "52fe424cc3a36847f801352d", "cast_id": 27, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 12}], "directors": [{"name": "Milo\u0161 Forman", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f80134ab", "profile_path": "/nKnsrK9h02F1QlMetkyr9R45VGM.jpg", "id": 3974}], "vote_average": 7.8, "runtime": 133}, "8277": {"poster_path": "/jZ0mFsl1Cp28GrJoNPuku75gNPn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Erik, Ryan, and Cooze start college and pledge the Beta House fraternity, presided over by none other than legendary Dwight Stifler. But chaos ensues when a fraternity of geeks threatens to stop the debauchery and the Betas have to make a stand for their right to party.", "video": false, "id": 8277, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: Beta House", "tagline": "", "vote_count": 108, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0974959", "adult": false, "backdrop_path": "/txR74Uy6sYbUv4HQURQXNF8LXTf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2007-12-10", "popularity": 1.24748140091748, "original_title": "American Pie Presents: Beta House", "budget": 0, "cast": [{"name": "John White", "character": "Erik Stifler", "id": 26973, "credit_id": "52fe449ac3a36847f809fb53", "cast_id": 3, "profile_path": "/8zB8P7zyTTftK1acA5UhwWb4jMU.jpg", "order": 0}, {"name": "Steve Talley", "character": "Dwight Stifler", "id": 26975, "credit_id": "52fe449ac3a36847f809fb57", "cast_id": 4, "profile_path": "/k0T00nPOY7K0Wocd5l7gfjoTJHF.jpg", "order": 1}, {"name": "Christopher McDonald", "character": "Mr. Stifler", "id": 4443, "credit_id": "52fe449ac3a36847f809fb5b", "cast_id": 5, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 2}, {"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe449ac3a36847f809fb5f", "cast_id": 6, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 3}, {"name": "Jake Siegel", "character": "Mike Coozeman", "id": 54598, "credit_id": "52fe449ac3a36847f809fb63", "cast_id": 7, "profile_path": "/58L1doLjmEJxxfA23qeu2QjNt4C.jpg", "order": 4}, {"name": "Meghan Heffern", "character": "Ashley", "id": 27004, "credit_id": "52fe449ac3a36847f809fb67", "cast_id": 9, "profile_path": "/djl8gcKuGRREfR51UgF0TUfINwG.jpg", "order": 5}, {"name": "Jonathan Keltz", "character": "Wesley", "id": 95137, "credit_id": "52fe449bc3a36847f809fb83", "cast_id": 15, "profile_path": "/gU11hhT43Aj7NSNaGprBxYatqPp.jpg", "order": 6}, {"name": "Bradford Anderson", "character": "Jake Parker", "id": 203097, "credit_id": "52fe449bc3a36847f809fb87", "cast_id": 16, "profile_path": "/rx2VEbVI3UtZKv3TStr4suFxbXR.jpg", "order": 7}, {"name": "Robbie Amell", "character": "Nick Anderson", "id": 1223726, "credit_id": "52fe449bc3a36847f809fb8b", "cast_id": 17, "profile_path": "/At42ERb0b0tUQmcaQKStGLhbLqN.jpg", "order": 8}, {"name": "Italia Ricci", "character": "Laura Johnson", "id": 212429, "credit_id": "54b77f23c3a3686c5f001852", "cast_id": 18, "profile_path": "/c2hdp1feyjdjBdTzrLwnnlNBsO4.jpg", "order": 9}], "directors": [{"name": "Andrew Waller", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809fb49", "profile_path": null, "id": 26971}], "vote_average": 5.6, "runtime": 88}, "512": {"poster_path": "/mRRSxsCnJriz3geocV4i6Lm0nox.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 31584901, "overview": "An American journalism student in London scoops a big story, and begins an affair with an aristocrat as the incident unfurls.", "video": false, "id": 512, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "Scoop", "tagline": "The perfect man. The perfect story. The perfect murder.", "vote_count": 64, "homepage": "http://www.scoopmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457513", "adult": false, "backdrop_path": "/aqX5vRs8BOKhyQOozktrKBuiPXN.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Ingenious Media", "id": 290}, {"name": "Perdido Prod.", "id": 291}], "release_date": "2006-07-27", "popularity": 0.46678147737093, "original_title": "Scoop", "budget": 4000000, "cast": [{"name": "Hugh Jackman", "character": "Peter Lyman", "id": 6968, "credit_id": "52fe424cc3a36847f801368b", "cast_id": 3, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Sondra Pransky", "id": 1245, "credit_id": "52fe424cc3a36847f801368f", "cast_id": 4, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Geoff Bell", "character": "Strombel's Co-Worker", "id": 6969, "credit_id": "52fe424cc3a36847f8013693", "cast_id": 5, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 2}, {"name": "Christopher Fulford", "character": "Strombel's Co-Worker", "id": 6970, "credit_id": "52fe424cc3a36847f8013697", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Nigel Lindsay", "character": "Strombel's Co-Worker", "id": 6971, "credit_id": "52fe424cc3a36847f801369b", "cast_id": 7, "profile_path": "/upY5S0X5JkvWiCnsvtI7NRueJuF.jpg", "order": 4}, {"name": "Ian McShane", "character": "Joe Strombel", "id": 6972, "credit_id": "52fe424cc3a36847f801369f", "cast_id": 8, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 5}, {"name": "Fenella Woolgar", "character": "Jane Cook", "id": 6973, "credit_id": "52fe424cc3a36847f80136a3", "cast_id": 9, "profile_path": "/3PL2CTs2A3iVejdQ7WkrJxNe6vh.jpg", "order": 6}, {"name": "Doreen Mantle", "character": "Joe's Co-Passenger #1", "id": 6974, "credit_id": "52fe424cc3a36847f80136a7", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "David Schneider", "character": "Joe's Co-Passenger #2", "id": 2065, "credit_id": "52fe424cc3a36847f80136ab", "cast_id": 11, "profile_path": "/dwnUaApf65LPIKUndH4VkznA5Lv.jpg", "order": 8}, {"name": "Meera Syal", "character": "Joe's Co-Passenger #3", "id": 6975, "credit_id": "52fe424cc3a36847f80136af", "cast_id": 12, "profile_path": "/9MQMwNMpjScnaU5OkqXhlXedrGl.jpg", "order": 9}, {"name": "Kevin McNally", "character": "Mike Tinsley", "id": 2449, "credit_id": "52fe424cc3a36847f80136b3", "cast_id": 13, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 10}, {"name": "Robyn Kerr", "character": "Tinsley\u2019s Fan #1", "id": 6976, "credit_id": "52fe424cc3a36847f80136b7", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Richard Stirling", "character": "Tinsley's Fan #2", "id": 6977, "credit_id": "52fe424cc3a36847f80136bb", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jim Dunk", "character": "Funeral Speaker", "id": 6978, "credit_id": "52fe424cc3a36847f80136bf", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Romola Garai", "character": "Vivian", "id": 6979, "credit_id": "52fe424cc3a36847f80136c3", "cast_id": 17, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 14}, {"name": "Carolyn Backhouse", "character": "Vivian's Mother", "id": 6981, "credit_id": "52fe424cc3a36847f80136c7", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Sam Friend", "character": "Vivian's Brother", "id": 6982, "credit_id": "52fe424cc3a36847f80136cb", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Woody Allen", "character": "Sid Waterman", "id": 1243, "credit_id": "52fe424cc3a36847f80136cf", "cast_id": 20, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 17}, {"name": "Suzy Kewer", "character": "Splendini\u2019s Assistant", "id": 6984, "credit_id": "52fe424cc3a36847f80136d3", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Jody Halse", "character": "Stagehand", "id": 6985, "credit_id": "52fe424cc3a36847f80136d7", "cast_id": 22, "profile_path": "/1fCztSR6LD1J4eyMUvlxv3dZIaR.jpg", "order": 19}, {"name": "Matt Day", "character": "Jerry Burke", "id": 3068, "credit_id": "52fe424cc3a36847f80136db", "cast_id": 23, "profile_path": "/ngzxTaydI2tTo1j9KwQ9yG2lMo.jpg", "order": 20}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013687", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.5, "runtime": 96}, "41479": {"poster_path": "/3jMKeU2TQM3wAUHEenKK3EPrzUP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they're living there, they don't exactly come clean with their neighbors.", "video": false, "id": 41479, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Joneses", "tagline": "They're not just living the American dream, they're selling it.", "vote_count": 55, "homepage": "http://www.thejonesesmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1285309", "adult": false, "backdrop_path": "/zD3mhrFf8ZYOadEHPsJrYLA2HYC.jpg", "production_companies": [{"name": "Echo Lake Productions", "id": 2147}, {"name": "Premiere Picture", "id": 3870}], "release_date": "2009-09-13", "popularity": 0.567261709352673, "original_title": "The Joneses", "budget": 0, "cast": [{"name": "David Duchovny", "character": "Steve Jones", "id": 12640, "credit_id": "52fe45cdc3a36847f80db251", "cast_id": 4, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Demi Moore", "character": "Kate Jones", "id": 3416, "credit_id": "52fe45cdc3a36847f80db26d", "cast_id": 11, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Amber Heard", "character": "Jenn Jones", "id": 55085, "credit_id": "52fe45cdc3a36847f80db255", "cast_id": 5, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 2}, {"name": "Ben Hollingsworth", "character": "Mick Jones", "id": 77865, "credit_id": "52fe45cdc3a36847f80db265", "cast_id": 9, "profile_path": "/znLV2CQ5zfMszGpuqKglMiHDXJN.jpg", "order": 3}, {"name": "Lauren Hutton", "character": "KC", "id": 27964, "credit_id": "52fe45cdc3a36847f80db25d", "cast_id": 7, "profile_path": "/i7M82qKLAsLYinb6rXGdBFtCgJL.jpg", "order": 4}, {"name": "Catherine Dyer", "character": "Sylivia", "id": 112562, "credit_id": "52fe45cdc3a36847f80db259", "cast_id": 6, "profile_path": "/bjSNlEfh87rh1LIkLjhSKYRihDi.jpg", "order": 5}, {"name": "Sonya Thompson", "character": "Restaurant Patron", "id": 126913, "credit_id": "52fe45cdc3a36847f80db261", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Gary Cole", "character": "Larry Symonds", "id": 21163, "credit_id": "52fe45cdc3a36847f80db269", "cast_id": 10, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 7}, {"name": "Glenne Headly", "character": "Larry Symonds", "id": 21104, "credit_id": "52fe45cdc3a36847f80db271", "cast_id": 12, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 8}], "directors": [{"name": "Derrick Borte", "department": "Directing", "job": "Director", "credit_id": "52fe45cdc3a36847f80db247", "profile_path": "/7zKI1RQGZ8BJ3dAXRTwbdMI7n2z.jpg", "id": 126910}], "vote_average": 6.1, "runtime": 96}, "521": {"poster_path": "/1iupgVilcCQI7zPa4F7EHpmBfe1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An ex-tennis pro carries out a plot to have his wife murdered after discovering she is having an affair, and assumes she will soon leave him for the other man anyway. When things go wrong, he improvises a new plan - to frame her for murder instead.", "video": false, "id": 521, "genres": [{"id": 80, "name": "Crime"}], "title": "Dial M for Murder", "tagline": "If a woman answers...hang on for dear life!", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0046912", "adult": false, "backdrop_path": "/kmSrCmhF3mB15woqQ7z3Y4UGRwr.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1954-05-29", "popularity": 0.819666930341691, "original_title": "Dial M for Murder", "budget": 1400000, "cast": [{"name": "Ray Milland", "character": "Tony Wendice", "id": 7124, "credit_id": "52fe424cc3a36847f80137ad", "cast_id": 6, "profile_path": "/hql4xy8eWInQau8G4K6vyFgX5h5.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Margot Mary Wendice", "id": 4070, "credit_id": "52fe424cc3a36847f80137a9", "cast_id": 5, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Robert Cummings", "character": "Mark Halliday", "id": 7125, "credit_id": "52fe424cc3a36847f80137b1", "cast_id": 7, "profile_path": "/hmqYjsbHm38emGa78H1FjfxXqvw.jpg", "order": 2}, {"name": "John Williams", "character": "Chief Insp. Hubbard", "id": 5182, "credit_id": "52fe424cc3a36847f80137b5", "cast_id": 8, "profile_path": "/esXPldHaXSEz8dQmahcGz4VWJ8R.jpg", "order": 3}, {"name": "Anthony Dawson", "character": "Charles Alexander Swann aka Captain Lesgate", "id": 7682, "credit_id": "52fe424cc3a36847f80137e3", "cast_id": 16, "profile_path": "/yzh26eyKJBtORjLlz8nyLQT7C1d.jpg", "order": 4}, {"name": "Leo Britt", "character": "The Storyteller", "id": 933881, "credit_id": "52fe424cc3a36847f80137e7", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Patrick Allen", "character": "Detective Pearson", "id": 73980, "credit_id": "52fe424cc3a36847f80137eb", "cast_id": 18, "profile_path": "/2E2MnNr0Di5bC4TrhGZpNSyIOle.jpg", "order": 6}, {"name": "George Leigh", "character": "Detective Williams", "id": 933880, "credit_id": "52fe424cc3a36847f80137ef", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Bess Flowers", "character": "Woman exiting airplane", "id": 121323, "credit_id": "52fe424cc3a36847f80137f3", "cast_id": 20, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 8}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013799", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.5, "runtime": 104}, "522": {"poster_path": "/9qBe2sUDyY2dFH1iHq0SZb1G4QG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5887457, "overview": "The mostly true story of the legendary \"worst director of all time\", who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.", "video": false, "id": 522, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ed Wood", "tagline": "When it came to making bad movies, Ed Wood was the best.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109707", "adult": false, "backdrop_path": "/6zSU6K7q4zntC8vgrvpoUM66eQl.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1994-09-27", "popularity": 0.745011466502263, "original_title": "Ed Wood", "budget": 18000000, "cast": [{"name": "Johnny Depp", "character": "Ed Wood", "id": 85, "credit_id": "52fe424cc3a36847f801385f", "cast_id": 5, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Martin Landau", "character": "Bela Lugosi", "id": 2641, "credit_id": "52fe424cc3a36847f8013863", "cast_id": 6, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 1}, {"name": "Sarah Jessica Parker", "character": "Dolores Fuller", "id": 520, "credit_id": "52fe424cc3a36847f8013867", "cast_id": 7, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 2}, {"name": "Patricia Arquette", "character": "Kathy O'Hara", "id": 4687, "credit_id": "52fe424cc3a36847f801386b", "cast_id": 8, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 3}, {"name": "Jeffrey Jones", "character": "Criswell", "id": 4004, "credit_id": "52fe424cc3a36847f801386f", "cast_id": 9, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 4}, {"name": "G. D. Spradlin", "character": "Reverend Lemon", "id": 3173, "credit_id": "52fe424cc3a36847f8013873", "cast_id": 10, "profile_path": "/lyk0Fo343PJJ5gItBqGGl7oG112.jpg", "order": 5}, {"name": "Vincent D'Onofrio", "character": "Orson Welles", "id": 7132, "credit_id": "52fe424cc3a36847f8013877", "cast_id": 11, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 6}, {"name": "Bill Murray", "character": "Bunny Breckinridge", "id": 1532, "credit_id": "52fe424cc3a36847f801387b", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 7}, {"name": "Mike Starr", "character": "Georgie Weiss", "id": 5170, "credit_id": "52fe424cc3a36847f801387f", "cast_id": 13, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 8}, {"name": "Max Casella", "character": "Paul Marco", "id": 7133, "credit_id": "52fe424cc3a36847f8013883", "cast_id": 14, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 9}, {"name": "Brent Hinkley", "character": "Conrad Brooks", "id": 7134, "credit_id": "52fe424cc3a36847f8013887", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "William James Myers", "character": "Tor Johnson", "id": 7136, "credit_id": "52fe424cc3a36847f801388b", "cast_id": 16, "profile_path": "/1mzDi9g9m3cxMpUxRasnGWNdYGH.jpg", "order": 11}, {"name": "Juliet Landau", "character": "Loretta King", "id": 7137, "credit_id": "52fe424cc3a36847f801388f", "cast_id": 17, "profile_path": "/78ohsJtUTo0ZLdSRfiTgYQQQSWI.jpg", "order": 12}, {"name": "Clive Rosengren", "character": "Ed Reynolds", "id": 7138, "credit_id": "52fe424cc3a36847f8013893", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Norman Alden", "character": "Cameraman Bill", "id": 7139, "credit_id": "52fe424cc3a36847f8013897", "cast_id": 19, "profile_path": "/8UZtACb7u0JEOKh9IzFTi5FC4NH.jpg", "order": 14}, {"name": "Leonard Termo", "character": "Makeup Man Harry", "id": 7140, "credit_id": "52fe424cc3a36847f801389b", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Ned Bellamy", "character": "Dr. Tom Mason", "id": 2141, "credit_id": "52fe424cc3a36847f801389f", "cast_id": 21, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 16}, {"name": "Danny Dayton", "character": "Soundman", "id": 7141, "credit_id": "52fe424cc3a36847f80138a3", "cast_id": 22, "profile_path": "/aZTVkilP01BwP6olgirQNOSegSA.jpg", "order": 17}, {"name": "John Ross", "character": "Camera Assistant", "id": 7142, "credit_id": "52fe424cc3a36847f80138a7", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Bill Cusack", "character": "Tony McCoy", "id": 7143, "credit_id": "52fe424cc3a36847f80138ab", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Lisa Marie", "character": "Vampira", "id": 4452, "credit_id": "52fe424dc3a36847f80138f7", "cast_id": 37, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 20}, {"name": "Stanley DeSantis", "character": "Mr. Feldman", "id": 4171, "credit_id": "52fe424dc3a36847f80138fb", "cast_id": 38, "profile_path": null, "order": 21}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013849", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 7.2, "runtime": 127}, "57431": {"poster_path": "/5hmjGpEIXFump7sYXPUgSNK2RgP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26304000, "overview": "Noah, is not your typical entertain-the-kids-no-matter-how-boring-it-is kind of sitter. He's reluctant to take a sitting gig; he'd rather, well, be doing anything else, especially if it involves slacking. When Noah is watching the neighbor's kid he gets a booty call from his girlfriend in the city. To hook up with her, Noah takes to the streets, but his urban adventure spins out of control as he finds himself on the run from a maniacal drug lord.", "video": false, "id": 57431, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Sitter", "tagline": "Worst. Babysitter. Ever.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1366344", "adult": false, "backdrop_path": "/hGp2VR0Owc8WgiXtljsSzgJtIIg.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2011-12-09", "popularity": 0.843668496016726, "original_title": "The Sitter", "budget": 25000000, "cast": [{"name": "Sam Rockwell", "character": "Karl", "id": 6807, "credit_id": "52fe4933c3a36847f818e679", "cast_id": 1, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Noah Jaybird", "id": 21007, "credit_id": "52fe4933c3a36847f818e67d", "cast_id": 2, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Max Records", "character": "Slater", "id": 80576, "credit_id": "52fe4933c3a36847f818e687", "cast_id": 5, "profile_path": "/ggqpknWzy80JUgQRNPUspihCy6V.jpg", "order": 2}, {"name": "Ari Graynor", "character": "Marisa Lewis", "id": 71552, "credit_id": "52fe4933c3a36847f818e68b", "cast_id": 6, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 3}, {"name": "J. B. Smoove", "character": "Julio", "id": 65920, "credit_id": "52fe4933c3a36847f818e68f", "cast_id": 7, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 4}, {"name": "Landry Bender", "character": "Blithe", "id": 999325, "credit_id": "52fe4933c3a36847f818e693", "cast_id": 8, "profile_path": "/17PVmNR3PXQtzikD0tCQLaaayND.jpg", "order": 5}, {"name": "Kevin Hernandez", "character": "Rodrigo", "id": 999329, "credit_id": "52fe4933c3a36847f818e697", "cast_id": 9, "profile_path": "/lz0H1XbddF4jOwuoIi2IuV1bs3A.jpg", "order": 6}, {"name": "Kylie Bunbury", "character": "Roxanne", "id": 999346, "credit_id": "52fe4933c3a36847f818e69b", "cast_id": 10, "profile_path": "/yBsolJ7nC9ExQ17HwYSLBsotTvb.jpg", "order": 7}, {"name": "Erin Daniels", "character": "Mrs. Pedulla", "id": 18662, "credit_id": "52fe4933c3a36847f818e69f", "cast_id": 11, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 8}, {"name": "D.W. Moffett", "character": "Dr. Pedulla", "id": 87956, "credit_id": "52fe4933c3a36847f818e6a3", "cast_id": 12, "profile_path": "/fqktS2j0ZzieeU192scEcmGY5lq.jpg", "order": 9}, {"name": "Jessica Hecht", "character": "Sandy Griffith", "id": 14984, "credit_id": "52fe4933c3a36847f818e6a7", "cast_id": 13, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 10}, {"name": "Bruce Altman", "character": "Jim Griffith", "id": 27545, "credit_id": "52fe4933c3a36847f818e6ab", "cast_id": 14, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 11}, {"name": "Method Man", "character": "Jacolby", "id": 5384, "credit_id": "52fe4933c3a36847f818e6af", "cast_id": 15, "profile_path": "/qzZv7AWVVKex2IOe65a1WaQuW0g.jpg", "order": 12}, {"name": "Sean Patrick Doyle", "character": "Garv", "id": 999389, "credit_id": "52fe4933c3a36847f818e6b3", "cast_id": 16, "profile_path": "/fBv1jU9oIqtIaUXlknGB0WfXsib.jpg", "order": 13}, {"name": "Alex Wolff", "character": "Clayton", "id": 934281, "credit_id": "52fe4933c3a36847f818e6b7", "cast_id": 17, "profile_path": "/nUEAsuXKmRrubRMj5bNElBK5FM7.jpg", "order": 14}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe4933c3a36847f818e683", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 5.6, "runtime": 81}, "524": {"poster_path": "/xo517ibXBDdYQY81j0WIG7BVcWq.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 116112375, "overview": "Master director Martin Scorsese depicts the sloping depth of a casino mafia boss\u2019 fall. Filmed in a semi-documentary fashion; about the life of the gambling paradise Las Vegas and its dark mafia underbelly.", "video": false, "id": 524, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Casino", "tagline": "No one stays at the top forever.", "vote_count": 330, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112641", "adult": false, "backdrop_path": "/vxhWZkSb7OUHRq0Xndt9jzVttdR.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Syalis DA", "id": 11583}, {"name": "L\u00e9gende Entreprises", "id": 10898}, {"name": "De Fina-Cappa", "id": 11584}], "release_date": "1995-11-22", "popularity": 1.56622696296096, "original_title": "Casino", "budget": 52000000, "cast": [{"name": "Robert De Niro", "character": "Sam 'Ace' Rothstein", "id": 380, "credit_id": "52fe424dc3a36847f80139d1", "cast_id": 4, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Ginger McKenna", "id": 4430, "credit_id": "52fe424dc3a36847f80139d5", "cast_id": 5, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Nicky Santoro", "id": 4517, "credit_id": "52fe424dc3a36847f80139d9", "cast_id": 6, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "James Woods", "character": "Lester Diamond", "id": 4512, "credit_id": "52fe424dc3a36847f80139dd", "cast_id": 7, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "Don Rickles", "character": "Billy Sherbert", "id": 7167, "credit_id": "52fe424dc3a36847f80139ed", "cast_id": 11, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 4}, {"name": "Alan King", "character": "Andy Stone", "id": 7169, "credit_id": "52fe424dc3a36847f80139f5", "cast_id": 13, "profile_path": "/8yvDXsJr2jOkLDZTEcbQxwi5hcA.jpg", "order": 5}, {"name": "Kevin Pollak", "character": "Phillip Green", "id": 7166, "credit_id": "52fe424dc3a36847f80139e9", "cast_id": 10, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 6}, {"name": "Pasquale Cajano", "character": "Remo Gaggi", "id": 7165, "credit_id": "52fe424dc3a36847f80139e5", "cast_id": 9, "profile_path": "/bfRFoTvD2aVthXu912e8rkEzS6z.jpg", "order": 7}, {"name": "L.Q. Jones", "character": "Pat Webb", "id": 8262, "credit_id": "53a2d500c3a368320a0013be", "cast_id": 27, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 8}, {"name": "Dick Smothers", "character": "S\u00e9nateur", "id": 166789, "credit_id": "53a2d529c3a36832020012f8", "cast_id": 28, "profile_path": "/lwQKlZHqUjJw4JcoxSPeGAUraRV.jpg", "order": 9}, {"name": "Frank Vincent", "character": "Frank Marino", "id": 7164, "credit_id": "52fe424dc3a36847f80139e1", "cast_id": 8, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 10}, {"name": "Oscar Goodman", "character": "Oscar Goodman", "id": 7424, "credit_id": "52fe424dc3a36847f8013a1b", "cast_id": 20, "profile_path": "/9YTT2HozwL6g01HuBezUBUdO3IA.jpg", "order": 11}, {"name": "Richard Riehle", "character": "Charlie Clark", "id": 18262, "credit_id": "53a2d5aec3a368443e000bca", "cast_id": 29, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 12}, {"name": "John Bloom", "character": "Don Ward", "id": 6491, "credit_id": "53a2d5f2c3a368320a0013ce", "cast_id": 30, "profile_path": "/spEEPB8yWINH9zCDjC1nodPTGmM.jpg", "order": 13}, {"name": "Catherine Scorsese", "character": "Mme Piscano", "id": 11483, "credit_id": "53a2d80cc3a368443e000c04", "cast_id": 31, "profile_path": "/rXFjIQVimKotQUtXwVNGg7XVMeW.jpg", "order": 14}, {"name": "Vinny Vella", "character": "Artie Piscano", "id": 7168, "credit_id": "52fe424dc3a36847f80139f1", "cast_id": 12, "profile_path": "/bS0yz7PyNJ9f8Kwc4qVWm4NxDfz.jpg", "order": 15}, {"name": "Nobu Matsuhisa", "character": "Ichikawa", "id": 7425, "credit_id": "52fe424dc3a36847f8013a1f", "cast_id": 21, "profile_path": "/xSR9RmzUTU9K6qZ6Hu5HCS2IJSL.jpg", "order": 16}, {"name": "Erika von Tagen", "character": "Amy", "id": 7423, "credit_id": "52fe424dc3a36847f8013a17", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Nick Mazzola", "character": "Black Jack-Groupier", "id": 7444, "credit_id": "52fe424dc3a36847f8013a23", "cast_id": 22, "profile_path": null, "order": 18}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe424dc3a36847f80139cd", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.4, "runtime": 178}, "525": {"poster_path": "/wdcoPIqOHk3dJ1s3fQOGgrMDNYu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115229890, "overview": "Direct out of jail, Jake Blues and his Brother Elwood are off on a \u201cmission from God\u201d to raise funds for the orphanage in which they grew up. The only thing they can do is do what they do best: play music. So they get their old band together and they're on their way yet not without getting in a bit of trouble here and there.", "video": false, "id": 525, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10402, "name": "Music"}], "title": "The Blues Brothers", "tagline": "They'll never get caught. They're on a mission from God.", "vote_count": 316, "homepage": "http://www.bluesbrothers.com/", "belongs_to_collection": {"backdrop_path": "/i4Jai1IlkbOWd8eNFM0S1lupyLt.jpg", "poster_path": "/pQf9LzCokihzlLmgQlPG7yBpZ1o.jpg", "id": 112636, "name": "The Blues Brothers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080455", "adult": false, "backdrop_path": "/qugcFtH0nsG6vfLFOzxNhPpuezV.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1980-06-17", "popularity": 1.09068896247079, "original_title": "The Blues Brothers", "budget": 27000000, "cast": [{"name": "Dan Aykroyd", "character": "Elwood Blues (as Elwood)", "id": 707, "credit_id": "52fe424dc3a36847f8013ae3", "cast_id": 4, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 0}, {"name": "John Belushi", "character": "'Joliet' Jake Blues (as Jake)", "id": 7171, "credit_id": "52fe424dc3a36847f8013ae7", "cast_id": 5, "profile_path": "/xVD48zqKxJWBOMYouWlnNExhM3g.jpg", "order": 1}, {"name": "Cab Calloway", "character": "Curtis", "id": 7173, "credit_id": "52fe424dc3a36847f8013aef", "cast_id": 7, "profile_path": "/7L1vq9I4Jt31BYsTsahhGn8wcc5.jpg", "order": 2}, {"name": "Carrie Fisher", "character": "Mystery Woman", "id": 4, "credit_id": "52fe424dc3a36847f8013b0f", "cast_id": 15, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 3}, {"name": "Ray Charles", "character": "Ray", "id": 7174, "credit_id": "52fe424dc3a36847f8013af3", "cast_id": 8, "profile_path": "/5LqWrAGyYb9K0RTP7tVF2S0WoZX.jpg", "order": 4}, {"name": "James Brown", "character": "Reverend Cleophus James", "id": 7172, "credit_id": "52fe424dc3a36847f8013aeb", "cast_id": 6, "profile_path": "/opGiGzOwSRmhnUtWZcFjlyyK8Zx.jpg", "order": 5}, {"name": "Aretha Franklin", "character": "Mrs. Murphy", "id": 7175, "credit_id": "52fe424dc3a36847f8013af7", "cast_id": 9, "profile_path": "/85vRw9urUHSYzn9eGssB1KmqayZ.jpg", "order": 6}, {"name": "Steve Cropper", "character": "Steve 'The Colonel' Cropper", "id": 7176, "credit_id": "52fe424dc3a36847f8013afb", "cast_id": 10, "profile_path": "/sDp2m5fIAUamVu5BpGk30WWWRoS.jpg", "order": 7}, {"name": "Donald \"Duck\" Dunn", "character": "Donald 'Duck' Dunn", "id": 7177, "credit_id": "52fe424dc3a36847f8013aff", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Murphy Dunne", "character": "Murphy 'Murph' Dunne", "id": 7178, "credit_id": "52fe424dc3a36847f8013b03", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Willie Hall", "character": "Willie 'Too Big' Hall", "id": 7179, "credit_id": "52fe424dc3a36847f8013b07", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "John Candy", "character": "Burton Mercer", "id": 7180, "credit_id": "52fe424dc3a36847f8013b0b", "cast_id": 14, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 11}, {"name": "John Lee Hooker", "character": "John Lee Hooker", "id": 7207, "credit_id": "52fe424dc3a36847f8013b37", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Lou Marini", "character": "'Blue Lou' Marini", "id": 7208, "credit_id": "52fe424dc3a36847f8013b3b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Matt Murphy", "character": "Matt 'Guitar' Murphy", "id": 7209, "credit_id": "52fe424dc3a36847f8013b3f", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Kathleen Freeman", "character": "Schwester Mary Stigmata ('Die Pinguin-Tante')", "id": 7210, "credit_id": "52fe424dc3a36847f8013b43", "cast_id": 25, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 15}, {"name": "Tom Erhart", "character": "Prison Guard", "id": 122094, "credit_id": "52fe424dc3a36847f8013b4d", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Gerald Walling", "character": "Prison Guard", "id": 122095, "credit_id": "52fe424dc3a36847f8013b51", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Walter Levine", "character": "Prison Guard", "id": 122096, "credit_id": "52fe424dc3a36847f8013b55", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Alonzo Atkins", "character": "Choirmaster", "id": 122098, "credit_id": "52fe424dc3a36847f8013b59", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Chaka Khan", "character": "Choir Soloist", "id": 122099, "credit_id": "52fe424dc3a36847f8013b5d", "cast_id": 31, "profile_path": "/4gLs6Lonpt89dqnNtSIQdnP6TF7.jpg", "order": 20}, {"name": "Armand Cerami", "character": "Trooper Daniel", "id": 122101, "credit_id": "52fe424dc3a36847f8013b61", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Steven Williams", "character": "Trooper Mount", "id": 51579, "credit_id": "537c7fd20e0a262a8800122f", "cast_id": 83, "profile_path": "/jJCa0bKe9zBe31bbuDsiNtgoo5W.jpg", "order": 22}, {"name": "Kristi Oleson", "character": "Sales Girl", "id": 122105, "credit_id": "52fe424dc3a36847f8013b69", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Gary McLarty", "character": "Man in Toy Store", "id": 122106, "credit_id": "52fe424dc3a36847f8013b6d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Joe Cuttone", "character": "Lloyd", "id": 122107, "credit_id": "52fe424dc3a36847f8013b71", "cast_id": 40, "profile_path": null, "order": 26}, {"name": "Layne Britton", "character": "The Cheese Whiz", "id": 122108, "credit_id": "52fe424dc3a36847f8013b75", "cast_id": 41, "profile_path": null, "order": 27}, {"name": "Toni Fleming", "character": "Mrs. Tarantino", "id": 122110, "credit_id": "52fe424dc3a36847f8013b79", "cast_id": 42, "profile_path": null, "order": 28}, {"name": "Rosie Shuster", "character": "Cocktail Waitress", "id": 122114, "credit_id": "52fe424dc3a36847f8013b7d", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Alan Rubin", "character": "Mr. Fabulous", "id": 122115, "credit_id": "52fe424dc3a36847f8013b81", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Paul Reubens", "character": "Waiter", "id": 5129, "credit_id": "52fe424dc3a36847f8013b85", "cast_id": 47, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 31}, {"name": "Ben Piazza", "character": "Father", "id": 90163, "credit_id": "52fe424dc3a36847f8013b89", "cast_id": 48, "profile_path": "/8pvVOp2fuIkOb4Go6P1I2rHLb68.jpg", "order": 32}, {"name": "Gwen Banta", "character": "Mother", "id": 122116, "credit_id": "52fe424dc3a36847f8013b8d", "cast_id": 49, "profile_path": null, "order": 33}, {"name": "Lari Taylor", "character": "Daughter #1", "id": 122117, "credit_id": "52fe424dc3a36847f8013b91", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Cindy Fisher", "character": "Daughter #2", "id": 122118, "credit_id": "52fe424dc3a36847f8013b95", "cast_id": 51, "profile_path": "/eorSm5IPzlmph90cw5e70F9LGoF.jpg", "order": 35}, {"name": "Elizabeth Hoy", "character": "Daughter #3", "id": 122119, "credit_id": "52fe424dc3a36847f8013b99", "cast_id": 52, "profile_path": null, "order": 36}, {"name": "Tony M. Conde", "character": "Sommelier", "id": 122120, "credit_id": "52fe424dc3a36847f8013b9d", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Eugene J. Anthony", "character": "Gruppenf\u00fchrer", "id": 74840, "credit_id": "52fe424dc3a36847f8013ba1", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Dean Hill", "character": "Nazi", "id": 122122, "credit_id": "52fe424dc3a36847f8013ba5", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Jack Orend", "character": "Nazi", "id": 122124, "credit_id": "52fe424dc3a36847f8013ba9", "cast_id": 58, "profile_path": null, "order": 40}, {"name": "Gene Schuldt", "character": "Nazi", "id": 122125, "credit_id": "52fe424dc3a36847f8013bad", "cast_id": 59, "profile_path": null, "order": 41}, {"name": "Charles Mountain", "character": "Cop", "id": 122126, "credit_id": "52fe424dc3a36847f8013bb1", "cast_id": 60, "profile_path": null, "order": 42}, {"name": "Frank Oz", "character": "Corrections Officer", "id": 7908, "credit_id": "52fe424dc3a36847f8013bb5", "cast_id": 61, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 43}, {"name": "John Landis", "character": "Trooper La Fong", "id": 4610, "credit_id": "52fe424dc3a36847f8013bef", "cast_id": 72, "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "order": 44}, {"name": "Henry Gibson", "character": "Head Nazi", "id": 19439, "credit_id": "52fe424dc3a36847f8013bf3", "cast_id": 73, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 45}, {"name": "Gary Houston", "character": "Nazi", "id": 3909, "credit_id": "52fe424dc3a36847f8013bf7", "cast_id": 75, "profile_path": "/sHnbRD3qic7ndwrYB3qRRPSiEFE.jpg", "order": 46}, {"name": "Judith Belushi-Pisano", "character": "Cocktail Waitress", "id": 55247, "credit_id": "52fe424dc3a36847f8013bfb", "cast_id": 76, "profile_path": null, "order": 47}, {"name": "Elmore James", "character": "Choir", "id": 56271, "credit_id": "52fe424dc3a36847f8013bff", "cast_id": 77, "profile_path": null, "order": 48}, {"name": "Tom Malone", "character": "\"Bones\" Malone", "id": 76150, "credit_id": "52fe424dc3a36847f8013c03", "cast_id": 78, "profile_path": null, "order": 49}, {"name": "Stephen Bishop", "character": "Charming Trooper", "id": 938558, "credit_id": "52fe424dc3a36847f8013c0d", "cast_id": 80, "profile_path": "/uhUDLWO1QDTyYmnByPyzqYKiLXh.jpg", "order": 50}, {"name": "Charles Napier", "character": "Tucker McElroy", "id": 16119, "credit_id": "52fe424dc3a36847f8013c11", "cast_id": 81, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 51}, {"name": "Steven Spielberg", "character": "Cook County Assessor's Office Clerk", "id": 488, "credit_id": "52fe424dc3a36847f8013c15", "cast_id": 82, "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "order": 52}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe424dc3a36847f8013ad3", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 7.1, "runtime": 133}, "526": {"poster_path": "/51RFCKLFuEbvLQsFzXcupQnkoRD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Captain Etienne Navarre is a man on whose shoulders lies a cruel curse. Punished for loving each other, Navarre must become a wolf by night whilst his lover, Lady Isabeau, takes the form of a hawk by day. Together, with the thief Philippe Gaston, they must try to overthrow the corrupt Bishop and in doing so break the spell.", "video": false, "id": 526, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Ladyhawke", "tagline": "No force in Heaven will release them. No power on Earth can save them.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089457", "adult": false, "backdrop_path": "/ghkGmfUDN389Q3apyhakXm4dbih.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1985-04-11", "popularity": 0.406046904728883, "original_title": "Ladyhawke", "budget": 20000000, "cast": [{"name": "Matthew Broderick", "character": "Phillipe Gaston", "id": 4756, "credit_id": "52fe424dc3a36847f8013c6f", "cast_id": 6, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Rutger Hauer", "character": "Captain Etienne Navarre", "id": 585, "credit_id": "52fe424dc3a36847f8013c73", "cast_id": 7, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Isabeau d'Anjou", "id": 1160, "credit_id": "52fe424dc3a36847f8013c77", "cast_id": 8, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Cezar", "id": 658, "credit_id": "52fe424dc3a36847f8013c83", "cast_id": 11, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Leo McKern", "character": "Father Imperius", "id": 7192, "credit_id": "52fe424dc3a36847f8013c7b", "cast_id": 9, "profile_path": "/qcO1TFO6SowLOQAwKRMKrqmrk6A.jpg", "order": 4}, {"name": "Ken Hutchison", "character": "Marquet", "id": 7194, "credit_id": "52fe424dc3a36847f8013c7f", "cast_id": 10, "profile_path": "/9qVmE5BXPWNhFDc77VgZfJQ5tD9.jpg", "order": 5}, {"name": "Giancarlo Prete", "character": "Fornac", "id": 7195, "credit_id": "52fe424dc3a36847f8013c87", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Loris Loddi", "character": "Jehan", "id": 7196, "credit_id": "52fe424dc3a36847f8013c8b", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Alessandro Serra", "character": "Mr. Pitou", "id": 7197, "credit_id": "52fe424dc3a36847f8013c8f", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Charles Borromel", "character": "Insane Prisoner", "id": 7198, "credit_id": "52fe424dc3a36847f8013c93", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "John Wood", "character": "Bishop of Aquila", "id": 8937, "credit_id": "52fe424dc3a36847f8013cd9", "cast_id": 27, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 10}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe424dc3a36847f8013c53", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.7, "runtime": 121}, "5549": {"poster_path": "/jHE1jOJQILXSPudL4h94NI3TRL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45681173, "overview": "A corrupt businesswoman seeks to disable RoboCop in favor of her own model of cyborg.", "video": false, "id": 5549, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "RoboCop 2", "tagline": "He's back to protect the innocent.", "vote_count": 107, "homepage": "", "belongs_to_collection": {"backdrop_path": "/azQScQWHpz5puIV4YeCcqgiT9Tn.jpg", "poster_path": "/foJBQb9oEOH0mGh77tXyoxXCfzU.jpg", "id": 5547, "name": "RoboCop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100502", "adult": false, "backdrop_path": "/pkuf3xajNzDPzAXtvGNNhs59XBL.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1990-06-22", "popularity": 0.431788865463003, "original_title": "RoboCop 2", "budget": 35000000, "cast": [{"name": "Peter Weller", "character": "RoboCop", "id": 27811, "credit_id": "52fe440dc3a36847f807f917", "cast_id": 16, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Belinda Bauer", "character": "Dr. Juliette Faxx", "id": 44049, "credit_id": "52fe440dc3a36847f807f91b", "cast_id": 17, "profile_path": "/2YAaeWOjbHig2COD9omZXbirr0e.jpg", "order": 1}, {"name": "John Glover", "character": "Magnavolt Salesman", "id": 5589, "credit_id": "52fe440dc3a36847f807f91f", "cast_id": 18, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 2}, {"name": "Gabriel Damon", "character": "Hob", "id": 44055, "credit_id": "52fe440dc3a36847f807f933", "cast_id": 23, "profile_path": null, "order": 3}, {"name": "Mario Machado", "character": "Casey Wong", "id": 44050, "credit_id": "52fe440dc3a36847f807f923", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Leeza Gibbons", "character": "Jesse Perkins", "id": 44051, "credit_id": "52fe440dc3a36847f807f927", "cast_id": 20, "profile_path": "/nZOYAQ2hbLk0gnwtfuvvwokp38o.jpg", "order": 5}, {"name": "John Ingle", "character": "Surgeon General", "id": 44052, "credit_id": "52fe440dc3a36847f807f92b", "cast_id": 21, "profile_path": "/d7RnwWIuBjMpDRSpz3mTaCHMmOc.jpg", "order": 6}, {"name": "Roger Aaron Brown", "character": "Whittaker", "id": 44054, "credit_id": "52fe440dc3a36847f807f92f", "cast_id": 22, "profile_path": "/mQ2mEx7EteO2zdOFUzu1shDi7E.jpg", "order": 7}, {"name": "Mark Rolston", "character": "Stef", "id": 6576, "credit_id": "52fe440dc3a36847f807f937", "cast_id": 24, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 8}, {"name": "Nancy Allen", "character": "Officer Anne Lewis", "id": 44038, "credit_id": "52fe440dc3a36847f807f945", "cast_id": 28, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 9}, {"name": "Tom Noonan", "character": "Cain", "id": 119232, "credit_id": "52fe440dc3a36847f807f93b", "cast_id": 25, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 10}, {"name": "Lila Finn", "character": "Homeless Woman (pushing trolley)", "id": 999656, "credit_id": "52fe440dc3a36847f807f949", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "John Hateley", "character": "Purse Snatcher", "id": 999657, "credit_id": "52fe440dc3a36847f807f94d", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Gage Tarrant", "character": "Hooker", "id": 999658, "credit_id": "52fe440dc3a36847f807f951", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Tommy Rosales", "character": "Chet", "id": 999659, "credit_id": "52fe440dc3a36847f807f955", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Brandon Smith", "character": "Flint", "id": 427978, "credit_id": "52fe440dc3a36847f807f959", "cast_id": 33, "profile_path": "/hJPSZh6xe4r9xGE30iLiPzroaKg.jpg", "order": 15}, {"name": "Wallace Merck", "character": "Gun Shop Owner", "id": 131561, "credit_id": "52fe440dc3a36847f807f95d", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Michael Medeiros", "character": "Catzo", "id": 160849, "credit_id": "52fe440dc3a36847f807f961", "cast_id": 35, "profile_path": "/uTUSlzkYGjGA9GKjGHL2qYP5uUF.jpg", "order": 17}, {"name": "Clinton Austin Shirley", "character": "Jimmy Murphy", "id": 999660, "credit_id": "52fe440dc3a36847f807f971", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Galyn G\u00f6rg", "character": "Angie", "id": 105988, "credit_id": "52fe440dc3a36847f807f965", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Linda Thompson", "character": "Mother with Baby", "id": 80808, "credit_id": "52fe440dc3a36847f807f969", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Lily Chen", "character": "Desperate Woman", "id": 240192, "credit_id": "52fe440dc3a36847f807f96d", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Angie Bolling", "character": "Ellen Murphy", "id": 194418, "credit_id": "52fe440dc3a36847f807f975", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Willard Pugh", "character": "Mayor Kuzak", "id": 999661, "credit_id": "52fe440dc3a36847f807f979", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Dan O'Herlihy", "character": "The Old Man", "id": 6836, "credit_id": "52fe440dc3a36847f807f97d", "cast_id": 42, "profile_path": "/amXueiRr8cy4sTjb7h4W5GrKe14.jpg", "order": 24}, {"name": "Adam Faraizl", "character": "Little League Kid", "id": 27768, "credit_id": "52fe440dc3a36847f807f981", "cast_id": 43, "profile_path": "/xZ6FvVFQUUHFRyJVR60PVDVePC1.jpg", "order": 25}, {"name": "Erik Cord", "character": "Angry Citizen", "id": 91833, "credit_id": "52fe440dc3a36847f807f995", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "Wanda De Jesus", "character": "Estevez", "id": 57991, "credit_id": "52fe440dc3a36847f807f985", "cast_id": 45, "profile_path": "/iaMj5a3Wogclzzjaa0vv2b8huVi.jpg", "order": 27}, {"name": "George Cheung", "character": "Gilette", "id": 16580, "credit_id": "52fe440dc3a36847f807f989", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Eric Glenn", "character": "Injured Cop", "id": 214103, "credit_id": "52fe440dc3a36847f807f98d", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Stephen Lee", "character": "Duffy", "id": 53138, "credit_id": "52fe440dc3a36847f807f991", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Jo Perkins", "character": "Angry Citizen", "id": 204841, "credit_id": "52fe440dc3a36847f807f999", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Richard Reyes", "character": "Angry Citizen", "id": 999663, "credit_id": "52fe440dc3a36847f807f9a1", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "John Doolittle", "character": "Schenk", "id": 172725, "credit_id": "52fe440dc3a36847f807f9a5", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Felton Perry", "character": "Donald Johnson", "id": 44042, "credit_id": "52fe440dc3a36847f807f9a9", "cast_id": 54, "profile_path": "/ax2YtmbicXvsjayLtK5VUxQh8fC.jpg", "order": 35}, {"name": "Phil Rubenstein", "character": "Poulos", "id": 162007, "credit_id": "52fe440dc3a36847f807f9ad", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Gary Bullock", "character": "Hack Doctor", "id": 56848, "credit_id": "52fe440dc3a36847f807f9b1", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Ed Geldhart", "character": "Electronics Store Owner", "id": 999664, "credit_id": "52fe440dc3a36847f807f9b5", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "David Dwyer", "character": "Little League Coach", "id": 21084, "credit_id": "52fe440dc3a36847f807f9b9", "cast_id": 58, "profile_path": "/A0EMGjQl4t3DqqfR6Onx0tiMHc5.jpg", "order": 39}, {"name": "Justin Seidner", "character": "Brat", "id": 999665, "credit_id": "52fe440dc3a36847f807f9bd", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Bill Bolender", "character": "Cabbie", "id": 105649, "credit_id": "52fe440dc3a36847f807f9c1", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Fabiana Udenio", "character": "Sunblock Woman", "id": 13923, "credit_id": "52fe440dc3a36847f807f9c9", "cast_id": 62, "profile_path": "/60hBZQm3FVtQ99qNmLDUT93z6S6.jpg", "order": 42}, {"name": "Wayne De Hart", "character": "Vendor", "id": 999666, "credit_id": "52fe440dc3a36847f807f9c5", "cast_id": 61, "profile_path": null, "order": 43}, {"name": "Cynthia Mackey", "character": "Surgeon", "id": 999667, "credit_id": "52fe440dc3a36847f807f9cd", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "James McQueen", "character": "Dr. Weitman", "id": 999668, "credit_id": "52fe440dc3a36847f807f9d1", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Yogi Baird", "character": "Contortionist", "id": 999669, "credit_id": "52fe440dc3a36847f807f9d5", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Jerry Nelson", "character": "Darren Thomas", "id": 68455, "credit_id": "52fe440dc3a36847f807f9d9", "cast_id": 66, "profile_path": "/pJGDnYken7kbxNl9sXGqxgEanP.jpg", "order": 47}, {"name": "Michael Weller", "character": "OCP Security #1", "id": 167690, "credit_id": "52fe440dc3a36847f807f9dd", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Woody Watson", "character": "OCP Security #2", "id": 78722, "credit_id": "52fe440dc3a36847f807f9e1", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Rutherford Cravens", "character": "Reporter #1", "id": 1234823, "credit_id": "52fe440ec3a36847f807fb59", "cast_id": 134, "profile_path": null, "order": 50}, {"name": "Christopher Quinten", "character": "Reporter #2", "id": 999670, "credit_id": "52fe440dc3a36847f807f9e5", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Martin Casella", "character": "Yuppie", "id": 10089, "credit_id": "52fe440dc3a36847f807f9e9", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Ken Learner", "character": "Delaney", "id": 999671, "credit_id": "52fe440dc3a36847f807f9ed", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Jeff McCarthy", "character": "Holzgang", "id": 171689, "credit_id": "52fe440dc3a36847f807f9f1", "cast_id": 73, "profile_path": "/461Jj2XDmINOmrGYyCy7AstO8hl.jpg", "order": 54}, {"name": "Robert Doqui", "character": "Sergeant Warren Reed", "id": 30615, "credit_id": "52fe440ec3a36847f807fb51", "cast_id": 132, "profile_path": "/gbV4NbJWrvbQzEghB9it4pVIG1c.jpg", "order": 55}, {"name": "Tzi Ma", "character": "Tak Akita", "id": 21629, "credit_id": "52fe440ec3a36847f807fb55", "cast_id": 133, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 56}, {"name": "Charles Bailey", "character": "Angry Citizen", "id": 1437274, "credit_id": "54fdafe0c3a368270c002104", "cast_id": 141, "profile_path": null, "order": 57}], "directors": [{"name": "Irvin Kershner", "department": "Directing", "job": "Director", "credit_id": "52fe440dc3a36847f807f8c5", "profile_path": "/ttTefShgVMqX85QawaGpfE1RT3M.jpg", "id": 10930}], "vote_average": 5.3, "runtime": 117}, "32856": {"poster_path": "/qrZ49dcenKqtRWSbOK8zWLQC6GG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213785654, "overview": "More than a dozen Angelenos navigate Valentine's Day from early morning until midnight. Three couples awake together, but each relationship will sputter; are any worth saving? A grade-school boy wants flowers for his first true love; two high school seniors plan first-time sex at noon; a TV sports reporter gets the assignment to find romance in LA; a star quarterback contemplates his future; two strangers meet on a plane; grandparents, together for years, face a crisis; and, an \"I Hate Valentine's Day\" dinner beckons the lonely and the lied to. Can Cupid finish his work by midnight?", "video": false, "id": 32856, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Valentine's Day", "tagline": "A Love Story. More or Less.", "vote_count": 273, "homepage": "http://www.valentinesdaymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0817230", "adult": false, "backdrop_path": "/9yQWwc7mwWID0ssy4eIm50fxXCd.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2010-02-11", "popularity": 1.1162549631434, "original_title": "Valentine's Day", "budget": 52000000, "cast": [{"name": "Jessica Alba", "character": "Morley Clarkson", "id": 56731, "credit_id": "52fe44eb9251416c910216d7", "cast_id": 1, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Kara Monahan", "id": 10860, "credit_id": "52fe44eb9251416c910216db", "cast_id": 2, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Bradley Cooper", "character": "Holden", "id": 51329, "credit_id": "52fe44eb9251416c910216df", "cast_id": 3, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 2}, {"name": "Eric Dane", "character": "Sean Jackson", "id": 58115, "credit_id": "52fe44ec9251416c910216e3", "cast_id": 4, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 3}, {"name": "Patrick Dempsey", "character": "Dr. Harrison Copeland", "id": 18352, "credit_id": "52fe44ec9251416c910216e7", "cast_id": 5, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 4}, {"name": "H\u00e9ctor Elizondo", "character": "Edgar", "id": 1210, "credit_id": "52fe44ec9251416c910216eb", "cast_id": 6, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 5}, {"name": "Jamie Foxx", "character": "Kelvin Moore", "id": 134, "credit_id": "52fe44ec9251416c910216ef", "cast_id": 7, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 6}, {"name": "Jennifer Garner", "character": "Julia Fitzpatrick", "id": 9278, "credit_id": "52fe44ec9251416c910216f3", "cast_id": 8, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 7}, {"name": "Topher Grace", "character": "Jason", "id": 17052, "credit_id": "52fe44ec9251416c910216f7", "cast_id": 9, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 8}, {"name": "Anne Hathaway", "character": "Liz", "id": 1813, "credit_id": "52fe44ec9251416c910216fb", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 9}, {"name": "Carter Jenkins", "character": "Alex", "id": 86653, "credit_id": "52fe44ec9251416c910216ff", "cast_id": 11, "profile_path": "/6Sph044iNZRupQecuuReiaQT52.jpg", "order": 10}, {"name": "Ashton Kutcher", "character": "Reed Bennett", "id": 18976, "credit_id": "52fe44ec9251416c91021703", "cast_id": 12, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 11}, {"name": "Queen Latifah", "character": "Paula Thomas", "id": 15758, "credit_id": "52fe44ec9251416c91021707", "cast_id": 13, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 12}, {"name": "George Lopez", "character": "Alphonso", "id": 41798, "credit_id": "52fe44ec9251416c9102170b", "cast_id": 14, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 13}, {"name": "Shirley MacLaine", "character": "Estelle", "id": 4090, "credit_id": "52fe44ec9251416c9102170f", "cast_id": 15, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 14}, {"name": "Emma Roberts", "character": "Grace", "id": 34847, "credit_id": "52fe44ec9251416c91021713", "cast_id": 16, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 15}, {"name": "Julia Roberts", "character": "Captain Kate Hazeltine", "id": 1204, "credit_id": "52fe44ec9251416c91021717", "cast_id": 17, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 16}, {"name": "Taylor Lautner", "character": "Willy", "id": 84214, "credit_id": "52fe44ec9251416c9102171b", "cast_id": 18, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 17}, {"name": "Kathy Bates", "character": "Susan", "id": 8534, "credit_id": "52fe44ec9251416c91021737", "cast_id": 23, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 18}, {"name": "Taylor Swift", "character": "Felicia", "id": 212208, "credit_id": "52fe44ec9251416c9102173b", "cast_id": 24, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 19}, {"name": "Derek Theler", "character": "Masseuse", "id": 1057442, "credit_id": "52fe44ec9251416c9102173f", "cast_id": 25, "profile_path": "/qMJWaezGr68GWOSciUXjVtU1sC4.jpg", "order": 20}, {"name": "Katherine LaNasa", "character": "Pamela Copeland", "id": 169337, "credit_id": "5318316cc3a3685c4a000fbe", "cast_id": 26, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 21}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe44ec9251416c91021721", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.4, "runtime": 125}, "530": {"poster_path": "/jgQU84QuFQ4yofDmGYzOsXLEQj9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Wallace and Gromit have run out of cheese and this provides an excellent excuse for the animated duo to take their holiday on the moon, where, as everyone knows, there is ample cheese. The moon is inhabited by a mechanical caretaker, who is not too happy about the two visitors from earth that nibble on the moon.", "video": false, "id": 530, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Wallace and Gromit: A Grand Day Out", "tagline": "Join the ultimate human-canine team as they blast off in a home-made rocket to see if the moon is really made of cheese.", "vote_count": 51, "homepage": "http://www.wallaceandgromit.com/films/granddayout/", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104361", "adult": false, "backdrop_path": "/noFR73oa5AYj054rTuX8y50Xwia.jpg", "production_companies": [{"name": "Aardman Animations", "id": 297}], "release_date": "1989-01-01", "popularity": 0.352329257607156, "original_title": "Wallace and Gromit: A Grand Day Out", "budget": 0, "cast": [{"name": "Peter Sallis", "character": "Wallace", "id": 7317, "credit_id": "52fe424ec3a36847f8013dcb", "cast_id": 3, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}], "directors": [{"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013dc1", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 7.2, "runtime": 23}, "531": {"poster_path": "/2w8JYyCxK7GOIi68cPhFqknCESA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Gromit finds himself being pushed out of his room and home by a new lodger who is actually a ruthless criminal (and a small penguin). The penguin is planning a robbery and needs to use Wallace and his mechanical remote controlled trousers to pull off the raid. However, Gromit is wise to the penguin and comes to the rescue.", "video": false, "id": 531, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wallace and Gromit: The Wrong Trousers", "tagline": "Mild-mannered Wallace and his faithful dog, Gromit, end up in a train-top chase as they try to stop a diamond heist by a diabolical penguin.", "vote_count": 63, "homepage": "http://www.wallaceandgromit.com/films/wrongtrousers/", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108598", "adult": false, "backdrop_path": "/9tbJCIaQVg2cnUf26NwGMKDyqvh.jpg", "production_companies": [{"name": "Aardman Animations", "id": 297}], "release_date": "1993-12-17", "popularity": 0.395614869382012, "original_title": "Wallace and Gromit: The Wrong Trousers", "budget": 0, "cast": [{"name": "Peter Sallis", "character": "Wallace", "id": 7317, "credit_id": "52fe424ec3a36847f8013e1d", "cast_id": 2, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}], "directors": [{"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013e19", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 7.5, "runtime": 30}, "532": {"poster_path": "/aLhRY6psan74kcGB0GOqQXl3Yo2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Wallace falls in love with wool-shop owner Wendolene, not suspecting that she (or rather, her dog) is at the head of a fiendish sheep-rustling plot. Gromit is set up and jailed, but his new-found sheepish friend is determine to give Wallace a helping hand in finding out the real truth.", "video": false, "id": 532, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wallace and Gromit: A Close Shave", "tagline": "The cheese lover and his sidekick investigate the wildest, woolliest sheep rustling yarn ever made of clay.", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112691", "adult": false, "backdrop_path": "/qBFSlBSjHiwYRRA3sKYUO5G4kDL.jpg", "production_companies": [], "release_date": "1995-12-24", "popularity": 0.390289248755464, "original_title": "Wallace and Gromit: A Close Shave", "budget": 0, "cast": [{"name": "Peter Sallis", "character": "Wallace", "id": 7317, "credit_id": "52fe424ec3a36847f8013e63", "cast_id": 2, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}], "directors": [{"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013e5f", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 7.3, "runtime": 30}, "533": {"poster_path": "/tLryx0x9TDV5rifA9W8yUvDZFHB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 192452832, "overview": "Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.", "video": false, "id": 533, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wallace & Gromit: The Curse of the Were-Rabbit", "tagline": "Something bunny is going on...", "vote_count": 164, "homepage": "http://java.europe.yahoo.com/uk/uip/wallaceandgromit/index.html", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0312004", "adult": false, "backdrop_path": "/vimLj0rb8jkSKaXDaCMrVqJ7VhT.jpg", "production_companies": [{"name": "Aardman Animations", "id": 297}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2005-10-14", "popularity": 1.05191204967933, "original_title": "Wallace & Gromit: The Curse of the Were-Rabbit", "budget": 30000000, "cast": [{"name": "Peter Sallis", "character": "Wallace / Hutch", "id": 7317, "credit_id": "52fe424ec3a36847f8013f27", "cast_id": 30, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Lady Campanula Tottington", "id": 1283, "credit_id": "52fe424ec3a36847f8013f17", "cast_id": 26, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Victor Quartermaine", "id": 5469, "credit_id": "52fe424ec3a36847f8013f1b", "cast_id": 27, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Nicholas Smith", "character": "Reverend Clement Hedges", "id": 7319, "credit_id": "52fe424ec3a36847f8013edf", "cast_id": 11, "profile_path": "/gvEyB4DY4blMqgXrt5q8yx53x7i.jpg", "order": 3}, {"name": "Liz Smith", "character": "Mrs. Mulch", "id": 7320, "credit_id": "52fe424ec3a36847f8013ee3", "cast_id": 12, "profile_path": "/rFmFjKTl9Drjv7tA687miEyn1tG.jpg", "order": 4}, {"name": "John Thomson", "character": "Mr. Windfall", "id": 7321, "credit_id": "52fe424ec3a36847f8013ee7", "cast_id": 13, "profile_path": "/4KJpOMWTVn71rSddvlvByOVRoNb.jpg", "order": 5}, {"name": "Vincent Ebrahim", "character": "Mr. Caliche", "id": 127149, "credit_id": "52fe424ec3a36847f8013eeb", "cast_id": 15, "profile_path": "/fnL4uZeuksOUzCdbNJdop6jvd6r.jpg", "order": 6}, {"name": "Geraldine McEwan", "character": "Miss Thripp", "id": 8326, "credit_id": "52fe424ec3a36847f8013eef", "cast_id": 16, "profile_path": "/99RxYdI81YBS6sZO3AW6rtYlmfH.jpg", "order": 7}, {"name": "Edward Kelsey", "character": "Mr. Growbag", "id": 127150, "credit_id": "52fe424ec3a36847f8013ef3", "cast_id": 17, "profile_path": "/oVOkIZpefeKANtcg8nP5ycu2dS1.jpg", "order": 8}, {"name": "Dicken Ashworth", "character": "Mr. Mulch", "id": 127151, "credit_id": "52fe424ec3a36847f8013ef7", "cast_id": 18, "profile_path": "/wqmO8F6kL53ZWe0wTIieIOCC0HS.jpg", "order": 9}, {"name": "Robert Horvath", "character": "Mr. Dibber", "id": 127152, "credit_id": "52fe424ec3a36847f8013efb", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Pete Atkin", "character": "Mr. Crock", "id": 127153, "credit_id": "52fe424ec3a36847f8013eff", "cast_id": 20, "profile_path": "/sR154GSl8nIqXQNBAtfySH6iMK5.jpg", "order": 11}, {"name": "Noni Lewis", "character": "Mrs. Girdling", "id": 127154, "credit_id": "52fe424ec3a36847f8013f03", "cast_id": 21, "profile_path": "/gTywapOQyLA8OQA4xKSNhfUkDOE.jpg", "order": 12}, {"name": "Ben Whitehead", "character": "Mr. Leaching", "id": 127155, "credit_id": "52fe424ec3a36847f8013f07", "cast_id": 22, "profile_path": "/fC807FuqrNLmflv76p9CiBIyj2P.jpg", "order": 13}, {"name": "Christopher Fairbank", "character": "Additional Voice", "id": 8399, "credit_id": "52fe424ec3a36847f8013f0b", "cast_id": 23, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 14}, {"name": "James Mather", "character": "Additional Voice", "id": 11351, "credit_id": "52fe424ec3a36847f8013f0f", "cast_id": 24, "profile_path": "/28Efuv16I0yHRZrwZs5IinsDY8u.jpg", "order": 15}, {"name": "William Vanderpuye", "character": "Additional Voice", "id": 127156, "credit_id": "52fe424ec3a36847f8013f13", "cast_id": 25, "profile_path": "/j7fFWJT399XHkOdeyuAJ3wlHWR0.jpg", "order": 16}, {"name": "Mark Gatiss", "character": "Miss Blight", "id": 34546, "credit_id": "52fe424ec3a36847f8013f1f", "cast_id": 28, "profile_path": "/uHpq3hbAuTayIZlO17V2tutUVWl.jpg", "order": 17}, {"name": "Peter Kay", "character": "PC Mackintosh", "id": 7318, "credit_id": "52fe424ec3a36847f8013f23", "cast_id": 29, "profile_path": "/i6oPFmwjD8YaczJ1wevdqrbeSPk.jpg", "order": 18}], "directors": [{"name": "Steve Box", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013ebd", "profile_path": null, "id": 7313}, {"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013ec3", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 6.4, "runtime": 85}, "534": {"poster_path": "/hxDfhavtxA2Ayx7O9BsQMcZRdG0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 371353001, "overview": "All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.", "video": false, "id": 534, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Terminator Salvation", "tagline": "The End Begins.", "vote_count": 974, "homepage": "http://www.terminatorsalvation.com", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0438488", "adult": false, "backdrop_path": "/wUdsw5jvnsGRsuA9e4MMSP3TD2B.jpg", "production_companies": [{"name": "The Halcyon Company", "id": 4021}, {"name": "Wonderland Sound and Vision", "id": 4022}], "release_date": "2009-05-20", "popularity": 2.51786601432449, "original_title": "Terminator Salvation", "budget": 200000000, "cast": [{"name": "Christian Bale", "character": "John Connor", "id": 3894, "credit_id": "52fe424ec3a36847f8013ff7", "cast_id": 18, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Sam Worthington", "character": "Marcus Wright", "id": 65731, "credit_id": "52fe424ec3a36847f8013fcd", "cast_id": 6, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Anton Yelchin", "character": "Kyle Reese", "id": 21028, "credit_id": "52fe424ec3a36847f8013fc1", "cast_id": 3, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 2}, {"name": "Moon Bloodgood", "character": "Blair Williams", "id": 56455, "credit_id": "52fe424ec3a36847f8013fd1", "cast_id": 7, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 3}, {"name": "Bryce Dallas Howard", "character": "Kate Connor", "id": 18997, "credit_id": "52fe424ec3a36847f8013fef", "cast_id": 14, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Serena", "id": 1283, "credit_id": "52fe424ec3a36847f8013fc5", "cast_id": 4, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Common", "character": "Barnes", "id": 4238, "credit_id": "52fe424ec3a36847f8013fc9", "cast_id": 5, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 6}, {"name": "Roland Kickinger", "character": "Prototype T-800", "id": 76542, "credit_id": "52fe424ec3a36847f8013fd5", "cast_id": 8, "profile_path": "/27ng6dfis06ipNgkRTuNFe5N5BQ.jpg", "order": 7}, {"name": "Michael Ironside", "character": "General Ashdown", "id": 11086, "credit_id": "52fe424ec3a36847f8013fd9", "cast_id": 9, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 8}, {"name": "Jane Alexander", "character": "Virginia", "id": 13724, "credit_id": "52fe424ec3a36847f8013fdd", "cast_id": 10, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 9}, {"name": "Chris Browning", "character": "Morrison", "id": 76543, "credit_id": "52fe424ec3a36847f8013fe1", "cast_id": 11, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 10}, {"name": "Chris Ashworth", "character": "Richter", "id": 76544, "credit_id": "52fe424ec3a36847f8013fe5", "cast_id": 12, "profile_path": "/rt52xrN4ewHdMp5kmOaZUdzrN3u.jpg", "order": 11}, {"name": "Jadagrace", "character": "Star", "id": 213753, "credit_id": "52fe424ec3a36847f8013ff3", "cast_id": 17, "profile_path": "/A01kAPCgvOK8JfHXoh3TSeRezI4.jpg", "order": 12}, {"name": "David Midthunder", "character": "Soldier #1", "id": 1039678, "credit_id": "52fe424ec3a36847f8014001", "cast_id": 20, "profile_path": "/f0piRndy8kXPUh4onNoNNoeIO9u.jpg", "order": 13}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013feb", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.9, "runtime": 115}, "535": {"poster_path": "/pW8tRnHJbZfobnEX16CjkOg8bAH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90463574, "overview": "The popular 1980\u2019s dance movie that depicts the life of an exotic dancer with a side job as a welder who true desire is to get into ballet school. It\u2019s her dream to be a professional dancer and now is her chance. The film has a great soundtrack with an Oscar winning song.", "video": false, "id": 535, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Flashdance", "tagline": "When the dancer becomes the dance.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085549", "adult": false, "backdrop_path": "/4hDK7V6YPX1LW91rNs3KS8r9Myf.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1983-04-14", "popularity": 0.881722482198963, "original_title": "Flashdance", "budget": 7000000, "cast": [{"name": "Jennifer Beals", "character": "Alex Owens", "id": 3130, "credit_id": "52fe424ec3a36847f801406f", "cast_id": 2, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 0}, {"name": "Michael Nouri", "character": "Nick Hurley", "id": 8699, "credit_id": "52fe424ec3a36847f80140af", "cast_id": 13, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 1}, {"name": "Lilia Skala", "character": "Hanna Long", "id": 31114, "credit_id": "52fe424ec3a36847f80140b3", "cast_id": 14, "profile_path": "/bPVFRCF9eFu2ZODXbH3Ur5dUWac.jpg", "order": 2}, {"name": "Kyle T. Heffner", "character": "Richie", "id": 31115, "credit_id": "52fe424ec3a36847f80140b7", "cast_id": 15, "profile_path": "/9c8G4diZ3Nr8jClTANqMOwmTN9z.jpg", "order": 3}, {"name": "Sunny Johnson", "character": "Jeanie Szabo", "id": 31116, "credit_id": "52fe424ec3a36847f80140bb", "cast_id": 16, "profile_path": "/mKFoSy6SFZzaXKcEy6guoqu9gWU.jpg", "order": 4}, {"name": "Malcolm Danare", "character": "Cecil", "id": 14738, "credit_id": "52fe424ec3a36847f80140bf", "cast_id": 17, "profile_path": "/6PQPp4Yim18xuNCBGQLg2cYAstY.jpg", "order": 5}, {"name": "Philip Bruns", "character": "Frank Szabo", "id": 31117, "credit_id": "52fe424ec3a36847f80140c3", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Micole Mercurio", "character": "Rosemary Szabo", "id": 21202, "credit_id": "542316cdc3a3681eca0005b8", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Don Brockett", "character": "Pete", "id": 31118, "credit_id": "52fe424ec3a36847f80140c7", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Cynthia Rhodes", "character": "Tina Tech", "id": 724, "credit_id": "54231645c3a3680876001cb5", "cast_id": 20, "profile_path": "/zt0z8Mj1aQC8SHeYAo6vph9Hd6.jpg", "order": 9}, {"name": "Lee Ving", "character": "Johnny C.", "id": 80745, "credit_id": "54231675c3a3680887001b20", "cast_id": 21, "profile_path": "/tG4MKdOp1viff4rrCbH8WQEhIE3.jpg", "order": 10}, {"name": "Ron Karabatsos", "character": "Jake Mawby", "id": 1367324, "credit_id": "54231692c3a3680880001d49", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Belinda Bauer", "character": "Katie Hurley", "id": 44049, "credit_id": "542316a8c3a3680887001b26", "cast_id": 23, "profile_path": "/2YAaeWOjbHig2COD9omZXbirr0e.jpg", "order": 12}], "directors": [{"name": "Adrian Lyne", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f801406b", "profile_path": null, "id": 7270}], "vote_average": 6.0, "runtime": 95}, "539": {"poster_path": "/sRTZv2dbyfuXTFEJfuEpCbECh6B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32000000, "overview": "When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother. The place seems quirky, but fine\u2026 until Marion decides to take a shower.", "video": false, "id": 539, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Psycho", "tagline": "The master of suspense moves his cameras into the icy blackness of the unexplored!", "vote_count": 460, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wkYbo0Wdnjp1wcy1q2KfaIjommA.jpg", "poster_path": "/29pDqAgmb4idzWzuZncoT7LZplA.jpg", "id": 119674, "name": "Psycho Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054215", "adult": false, "backdrop_path": "/3md49VBCeqY6MSNyAVY6d5eC6bA.jpg", "production_companies": [{"name": "Shamley Productions", "id": 10717}], "release_date": "1960-06-16", "popularity": 1.18914282279902, "original_title": "Psycho", "budget": 806948, "cast": [{"name": "Anthony Perkins", "character": "Norman Bates", "id": 7301, "credit_id": "52fe424fc3a36847f8014213", "cast_id": 4, "profile_path": "/8M8Bt20z0M587lrjkdXrEqYtQKU.jpg", "order": 0}, {"name": "Vera Miles", "character": "Lila Crane", "id": 7303, "credit_id": "52fe424fc3a36847f801421b", "cast_id": 6, "profile_path": "/qWP9L969DOSFgBhRV2Ik2ve8Z4r.jpg", "order": 1}, {"name": "John Gavin", "character": "Sam Loomis", "id": 7304, "credit_id": "52fe424fc3a36847f801421f", "cast_id": 7, "profile_path": "/sOYggS68lUhOpuXKbtz0oXOHV6x.jpg", "order": 2}, {"name": "Janet Leigh", "character": "Marion Crane", "id": 7302, "credit_id": "52fe424fc3a36847f8014217", "cast_id": 5, "profile_path": "/3FWYSCJUOuYVDPG9UoMjtqNMdyb.jpg", "order": 3}, {"name": "Martin Balsam", "character": "Det. Milton Arbogast", "id": 1936, "credit_id": "52fe424fc3a36847f8014265", "cast_id": 20, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 4}, {"name": "John McIntire", "character": "Sheriff Al Chambers", "id": 53010, "credit_id": "52fe424fc3a36847f8014269", "cast_id": 21, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 5}, {"name": "Simon Oakland", "character": "Dr. Fred Richman", "id": 14063, "credit_id": "52fe424fc3a36847f801426d", "cast_id": 22, "profile_path": "/frbQBmieMRcdAKupAIbJ0FsHuD2.jpg", "order": 6}, {"name": "Frank Albertson", "character": "Tom Cassidy", "id": 78902, "credit_id": "52fe424fc3a36847f8014271", "cast_id": 23, "profile_path": "/9ncLyc3P4SL6aiMnxHyFv2bIYwz.jpg", "order": 7}, {"name": "Patricia Hitchcock", "character": "Caroline (as Pat Hitchcock)", "id": 12500, "credit_id": "52fe424fc3a36847f8014275", "cast_id": 24, "profile_path": "/aB59dttMS0KHSv2frlqcx43HCeC.jpg", "order": 8}, {"name": "Vaughn Taylor", "character": "George Lowery", "id": 3641, "credit_id": "52fe424fc3a36847f8014279", "cast_id": 25, "profile_path": "/uS8OlzIPv5mthaAiAuNEX8AUEDt.jpg", "order": 9}, {"name": "Lurene Tuttle", "character": "Mrs. Chambers", "id": 19781, "credit_id": "52fe424fc3a36847f801427d", "cast_id": 26, "profile_path": "/cVAEXfkccfmUdj1EfSXJL4I9bxR.jpg", "order": 10}, {"name": "Mort Mills", "character": "Highway Patrol Officer", "id": 45525, "credit_id": "52fe424fc3a36847f8014281", "cast_id": 28, "profile_path": "/1KmPkFX992nBkDBPzg5QoWB8v4K.jpg", "order": 11}, {"name": "John Anderson", "character": "California Charlie", "id": 19111, "credit_id": "52fe424fc3a36847f8014285", "cast_id": 29, "profile_path": "/pM45pKyjU1c9nkO087hEr2dCNPw.jpg", "order": 12}, {"name": "Alfred Hitchcock", "character": "Man outside Office", "id": 2636, "credit_id": "52fe424fc3a36847f8014289", "cast_id": 30, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 13}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8014203", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.5, "runtime": 109}, "544": {"poster_path": "/mbjxlfb7Z9AFq74C79R4ssqrPeF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 369884651, "overview": "Having never fully recovered from a prom date that became a total disaster, a man finally gets a chance to reunite with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.", "video": false, "id": 544, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "There's Something About Mary", "tagline": "Love Is In The Hair.", "vote_count": 332, "homepage": "http://www.aboutmary.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0129387", "adult": false, "backdrop_path": "/8ZIZJbPXCtnIG1rJpR57iFRyPTt.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1998-07-15", "popularity": 1.14046570836178, "original_title": "There's Something About Mary", "budget": 23000000, "cast": [{"name": "Cameron Diaz", "character": "Mary Jensen", "id": 6941, "credit_id": "52fe424fc3a36847f80145a5", "cast_id": 5, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Ted Stroehmann", "id": 7399, "credit_id": "52fe424fc3a36847f80145ad", "cast_id": 7, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Pat Healy", "id": 2876, "credit_id": "52fe424fc3a36847f80145a9", "cast_id": 6, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Lee Evans", "character": "Tucker/Norman Phipps", "id": 7400, "credit_id": "52fe424fc3a36847f80145b1", "cast_id": 8, "profile_path": "/oMMGnjjU9bPxtaS4swZ4dxkifwX.jpg", "order": 3}, {"name": "Chris Elliott", "character": "Dom Woganowski", "id": 1534, "credit_id": "52fe424fc3a36847f80145b5", "cast_id": 9, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 4}, {"name": "Lin Shaye", "character": "Magda", "id": 7401, "credit_id": "52fe424fc3a36847f80145b9", "cast_id": 10, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 5}, {"name": "Jeffrey Tambor", "character": "Sully", "id": 4175, "credit_id": "52fe424fc3a36847f80145bd", "cast_id": 11, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 6}, {"name": "Markie Post", "character": "Sheila Jensen", "id": 7402, "credit_id": "52fe424fc3a36847f80145c1", "cast_id": 12, "profile_path": "/1Ku4vbaYdbw8PpL0xJqepWHEbI6.jpg", "order": 7}, {"name": "Keith David", "character": "Charlie Jensen", "id": 65827, "credit_id": "52fe424fc3a36847f80145c5", "cast_id": 13, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 8}, {"name": "W. Earl Brown", "character": "Warren Jensen", "id": 6951, "credit_id": "52fe424fc3a36847f80145c9", "cast_id": 14, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 9}, {"name": "Sarah Silverman", "character": "Brenda", "id": 7404, "credit_id": "52fe424fc3a36847f80145cd", "cast_id": 15, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 10}, {"name": "Brett Favre", "character": "Brett Favre", "id": 7419, "credit_id": "52fe424fc3a36847f8014631", "cast_id": 33, "profile_path": "/97B6uuJgVcRbllnSmBjfg1C25Wl.jpg", "order": 11}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe424fc3a36847f801458f", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe424fc3a36847f8014595", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 6.4, "runtime": 119}, "547": {"poster_path": "/nT4p5iDOxcnEa2QD0Kp3907WeuA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186883563, "overview": "Based on the novel by the same name from Nicholas Evans, the talented Robert Redford presents this meditative family drama set in the country side. Redford not only directs but also stars in the roll of a cowboy with a magical talent for healing.", "video": false, "id": 547, "genres": [{"id": 10749, "name": "Romance"}], "title": "The Horse Whisperer", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119314", "adult": false, "backdrop_path": "/kY8GBg32EYpoWY7sT0A0CT0ZvhT.jpg", "production_companies": [{"name": "Wildwood Enterprises", "id": 316}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-05-14", "popularity": 0.35947052047756, "original_title": "The Horse Whisperer", "budget": 60000000, "cast": [{"name": "Robert Redford", "character": "Tom Booker", "id": 4135, "credit_id": "52fe4250c3a36847f801475d", "cast_id": 1, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Kristin Scott Thomas", "character": "Annie MacLean", "id": 5470, "credit_id": "52fe4250c3a36847f8014761", "cast_id": 2, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 1}, {"name": "Sam Neill", "character": "Robert MacLean", "id": 4783, "credit_id": "52fe4250c3a36847f8014765", "cast_id": 3, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Grace MacLean", "id": 1245, "credit_id": "52fe4250c3a36847f801476d", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Dianne Wiest", "character": "Diane Booker", "id": 1902, "credit_id": "52fe4250c3a36847f8014769", "cast_id": 4, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 4}, {"name": "Chris Cooper", "character": "Frank Booker", "id": 2955, "credit_id": "52fe4250c3a36847f8014771", "cast_id": 6, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 5}, {"name": "Cherry Jones", "character": "Liz Hammond", "id": 1956, "credit_id": "52fe4250c3a36847f8014775", "cast_id": 7, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 6}, {"name": "Ty Hillman", "character": "Joe Booker", "id": 7516, "credit_id": "52fe4250c3a36847f8014779", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Kate Bosworth", "character": "Judith", "id": 7517, "credit_id": "52fe4250c3a36847f801477d", "cast_id": 9, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 8}, {"name": "Austin Schwarz", "character": "Twin #1", "id": 7518, "credit_id": "52fe4250c3a36847f8014781", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Dustin Schwarz", "character": "Twin #2", "id": 7519, "credit_id": "52fe4250c3a36847f8014785", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jeanette Nolan", "character": "Ellen Booker", "id": 7520, "credit_id": "52fe4250c3a36847f8014789", "cast_id": 12, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 11}, {"name": "Steve Frye", "character": "Hank", "id": 7521, "credit_id": "52fe4250c3a36847f801478d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Don Edwards", "character": "Smokey", "id": 7522, "credit_id": "52fe4250c3a36847f8014791", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Jessalyn Gilsig", "character": "Annie's Assistant Lucy", "id": 7523, "credit_id": "52fe4250c3a36847f8014795", "cast_id": 15, "profile_path": "/unwwJ6IckFrwYjTdkPBcPCL8VOo.jpg", "order": 14}, {"name": "William 'Buddy' Byrd", "character": "Lester Petersen", "id": 7525, "credit_id": "52fe4250c3a36847f80147ab", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "John Hogarty", "character": "Local Tracker", "id": 7526, "credit_id": "52fe4250c3a36847f80147af", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Michel Lalonde", "character": "Park Ranger", "id": 7527, "credit_id": "52fe4250c3a36847f80147b3", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "C.J. Byrnes", "character": "Doctor", "id": 7528, "credit_id": "52fe4250c3a36847f80147b7", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Allison Moorer", "character": "Barn Dance Vocalist", "id": 7529, "credit_id": "52fe4250c3a36847f80147bb", "cast_id": 24, "profile_path": null, "order": 19}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe4250c3a36847f801479b", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.9, "runtime": 170}, "548": {"poster_path": "/z9hLdjaqQBADwBj90pULE9zgh3t.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 96568, "overview": "In ancient Japan a crime take place as told from three different travelers who have experienced the crime: a man being killed and his wife being raped. Which if any of the stories is true? A Akira Kurosawa film about morals, truth, and communication.", "video": false, "id": 548, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Rashomon", "tagline": "The husband, the wife...or the bandit?", "vote_count": 143, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0042876", "adult": false, "backdrop_path": "/eGWc9KHURMRghR1bEj25hZNztNX.jpg", "production_companies": [{"name": "Daiei Motion Picture Company", "id": 3214}], "release_date": "1950-12-26", "popularity": 1.01336926030082, "original_title": "Rash\u00f4mon", "budget": 0, "cast": [{"name": "Toshir\u014d Mifune", "character": "Taj\u00f4maru", "id": 7450, "credit_id": "52fe4250c3a36847f8014887", "cast_id": 5, "profile_path": "/32nCFJneAfmZxYTQsaF5bcmCB7e.jpg", "order": 0}, {"name": "Machiko Ky\u00f4", "character": "Masako", "id": 7451, "credit_id": "52fe4250c3a36847f801488b", "cast_id": 6, "profile_path": "/rznlEYD1gngOTdyCgChGqrQY4ii.jpg", "order": 1}, {"name": "Masayuki Mori", "character": "Takehiro", "id": 7452, "credit_id": "52fe4250c3a36847f801488f", "cast_id": 7, "profile_path": "/rqzt1uXnruuRQfVbv3PuD1nV2LX.jpg", "order": 2}, {"name": "Takashi Shimura", "character": "Woodcutter", "id": 7453, "credit_id": "52fe4250c3a36847f8014893", "cast_id": 8, "profile_path": "/k8Ff4Nq2peKfiUpd8IILrSBM0ts.jpg", "order": 3}, {"name": "Minoru Chiaki", "character": "Priest", "id": 7454, "credit_id": "52fe4250c3a36847f8014897", "cast_id": 9, "profile_path": "/yuHeTk3R9XGrPo1i1EbR3kfQibd.jpg", "order": 4}, {"name": "Kichijir\u00f4 Ueda", "character": "Commoner", "id": 7455, "credit_id": "52fe4250c3a36847f801489b", "cast_id": 10, "profile_path": "/ieTlJVanMpV2eiYTm3D5kKbYM3T.jpg", "order": 5}, {"name": "Noriko Honma", "character": "Medium", "id": 7456, "credit_id": "52fe4250c3a36847f801489f", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Daisuke Kat\u00f4", "character": "Policeman", "id": 7457, "credit_id": "52fe4250c3a36847f80148a3", "cast_id": 12, "profile_path": "/rZGOg4xRkDTVMdGCzMhswioT4pU.jpg", "order": 7}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe4250c3a36847f8014871", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 8.0, "runtime": 88}, "8741": {"poster_path": "/6nnENcwnuuigjd11DKn6ilqWaTF.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36400491, "overview": "Based on the graphic novel by James Jones, The Thin Red Line tells the story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived. A powerful frontline cast - including Sean Penn, Nick Nolte, Woody Harrelson and George Clooney - explodes into action in this hauntingly realistic view of military and moral chaos in the Pacific during World War II.", "video": false, "id": 8741, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Thin Red Line", "tagline": "Every man fights his own war.", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120863", "adult": false, "backdrop_path": "/ohX0MN7Q4IjcZvBTtFunortIzW3.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Geisler-Roberdeau", "id": 23660}], "release_date": "1998-12-25", "popularity": 0.758274919929187, "original_title": "The Thin Red Line", "budget": 52000000, "cast": [{"name": "Sean Penn", "character": "1st Sgt. Welsh", "id": 2228, "credit_id": "52fe44b6c3a36847f80a5e9f", "cast_id": 30, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Adrien Brody", "character": "Cpl. Fife", "id": 3490, "credit_id": "52fe44b6c3a36847f80a5e43", "cast_id": 6, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 1}, {"name": "Ben Chaplin", "character": "Pvt. Bell", "id": 21343, "credit_id": "52fe44b6c3a36847f80a5e47", "cast_id": 9, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 2}, {"name": "George Clooney", "character": "Capt. Bosche", "id": 1461, "credit_id": "52fe44b6c3a36847f80a5e4b", "cast_id": 10, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 3}, {"name": "John Cusack", "character": "Capt. Gaff", "id": 3036, "credit_id": "52fe44b6c3a36847f80a5e4f", "cast_id": 11, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 4}, {"name": "Woody Harrelson", "character": "Sgt. Keck", "id": 57755, "credit_id": "52fe44b6c3a36847f80a5e5b", "cast_id": 16, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 5}, {"name": "Elias Koteas", "character": "Capt. Staros", "id": 13550, "credit_id": "52fe44b6c3a36847f80a5ea3", "cast_id": 31, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 6}, {"name": "Nick Nolte", "character": "Lt. Col. Tall", "id": 1733, "credit_id": "52fe44b6c3a36847f80a5ea7", "cast_id": 32, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 7}, {"name": "John C. Reilly", "character": "Sgt. Storm", "id": 4764, "credit_id": "52fe44b6c3a36847f80a5eab", "cast_id": 33, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 8}, {"name": "John Travolta", "character": "Brig. Gen. Quintard", "id": 8891, "credit_id": "52fe44b6c3a36847f80a5eaf", "cast_id": 34, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 9}, {"name": "Kirk Acevedo", "character": "Pvt. Tella", "id": 55861, "credit_id": "52fe44b6c3a36847f80a5e3b", "cast_id": 1, "profile_path": "/9CTkCXyKQrHTFZWFN3JtDM2mF0U.jpg", "order": 10}, {"name": "Mark Boone Junior", "character": "Pvt. Peale", "id": 534, "credit_id": "52fe44b6c3a36847f80a5e3f", "cast_id": 5, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 11}, {"name": "Matt Doran", "character": "Pvt. Coombs", "id": 9374, "credit_id": "52fe44b6c3a36847f80a5e53", "cast_id": 13, "profile_path": "/gLpWm3azLiXgDPRWo23AnG5WM7O.jpg", "order": 12}, {"name": "Paul Gleeson", "character": "1st Lt. Band", "id": 55866, "credit_id": "52fe44b6c3a36847f80a5e57", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Don Harvey", "character": "Sgt. Becker", "id": 1280, "credit_id": "52fe44b6c3a36847f80a5e5f", "cast_id": 18, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 14}, {"name": "Arie Verveen", "character": "Pvt. Charlie Dale", "id": 91612, "credit_id": "52fe44b6c3a36847f80a5eb9", "cast_id": 36, "profile_path": "/yh3mOsRXENzK3JJljFlSgX7p6QL.jpg", "order": 15}, {"name": "Jared Leto", "character": "2nd Lt. Whyte", "id": 7499, "credit_id": "52fe44b6c3a36847f80a5ebd", "cast_id": 37, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 16}, {"name": "John Savage", "character": "Sgt. McCron", "id": 47879, "credit_id": "52fe44b6c3a36847f80a5ec1", "cast_id": 38, "profile_path": "/ddGrvKHqhziYw9r6U1wu0VDLPYn.jpg", "order": 17}, {"name": "Nick Stahl", "character": "Pfc - Beade", "id": 6408, "credit_id": "52fe44b6c3a36847f80a5ec5", "cast_id": 39, "profile_path": "/2QYVx2D71lY2MfRbluC8PPyLMlH.jpg", "order": 18}, {"name": "Miranda Otto", "character": "Marty Bell", "id": 502, "credit_id": "52fe44b6c3a36847f80a5ec9", "cast_id": 40, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 19}, {"name": "Tim Blake Nelson", "character": "Pvt. Brian Tills", "id": 1462, "credit_id": "52fe44b6c3a36847f80a5ecd", "cast_id": 41, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 20}, {"name": "Dash Mihok", "character": "Pfc. Don Doll", "id": 6066, "credit_id": "52fe44b6c3a36847f80a5ed1", "cast_id": 42, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 21}, {"name": "Larry Romano", "character": "Pvt. Mazzi", "id": 61233, "credit_id": "52fe44b6c3a36847f80a5ed5", "cast_id": 43, "profile_path": "/5oWKhp3sos6MWdF6n8H6X5oU8b0.jpg", "order": 22}, {"name": "Penelope Allen", "character": "Witt's Mother", "id": 14544, "credit_id": "52fe44b6c3a36847f80a5ed9", "cast_id": 44, "profile_path": "/8ar2dtYVVgf7ibQEGSqFPOuqakI.jpg", "order": 23}, {"name": "Danny Hoch", "character": "Pvt. Carni", "id": 124909, "credit_id": "52fe44b6c3a36847f80a5edd", "cast_id": 45, "profile_path": "/xW84pRsS0w674ckDoUFwZICkmYL.jpg", "order": 24}, {"name": "Jim Caviezel", "character": "Pvt. Witt", "id": 8767, "credit_id": "52fe44b6c3a36847f80a5ee1", "cast_id": 46, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 25}], "directors": [{"name": "Terrence Malick", "department": "Directing", "job": "Director", "credit_id": "52fe44b6c3a36847f80a5e65", "profile_path": "/4w0C0RaJ3qS6YZ7Ons6VZcEdfl7.jpg", "id": 30715}], "vote_average": 6.7, "runtime": 170}, "550": {"poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100853753, "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", "video": false, "id": 550, "genres": [{"id": 18, "name": "Drama"}], "title": "Fight Club", "tagline": "How much can you know about yourself if you've never been in a fight?", "vote_count": 3429, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0137523", "adult": false, "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1999-10-14", "popularity": 2.83836094352082, "original_title": "Fight Club", "budget": 63000000, "cast": [{"name": "Edward Norton", "character": "The Narrator", "id": 819, "credit_id": "52fe4250c3a36847f80149f3", "cast_id": 4, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Tyler Durden", "id": 287, "credit_id": "52fe4250c3a36847f80149f7", "cast_id": 5, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "Marla Singer", "id": 1283, "credit_id": "52fe4250c3a36847f80149fb", "cast_id": 6, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Meat Loaf", "character": "Robert 'Bob' Paulson", "id": 7470, "credit_id": "52fe4250c3a36847f80149ff", "cast_id": 7, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 3}, {"name": "Jared Leto", "character": "Angel Face", "id": 7499, "credit_id": "52fe4250c3a36847f8014a51", "cast_id": 30, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 4}, {"name": "Zach Grenier", "character": "Richard Chesler", "id": 7471, "credit_id": "52fe4250c3a36847f8014a55", "cast_id": 31, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 5}, {"name": "Holt McCallany", "character": "The Mechanic", "id": 7497, "credit_id": "52fe4250c3a36847f8014a59", "cast_id": 32, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 6}, {"name": "Eion Bailey", "character": "Ricky", "id": 7498, "credit_id": "52fe4250c3a36847f8014a5d", "cast_id": 33, "profile_path": "/4MnRgrwuiJvHsfoiJrIUL4TkfoC.jpg", "order": 7}, {"name": "Richmond Arquette", "character": "Intern", "id": 7472, "credit_id": "52fe4250c3a36847f8014a61", "cast_id": 34, "profile_path": "/xW4bb2qsPYilO27ex4Xoy2Ik1Ai.jpg", "order": 8}, {"name": "David Andrews", "character": "Thomas", "id": 7219, "credit_id": "52fe4250c3a36847f8014a65", "cast_id": 35, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 9}, {"name": "Christina Cabot", "character": "Group Leader", "id": 68277, "credit_id": "52fe4250c3a36847f8014a69", "cast_id": 36, "profile_path": "/7UBTv5lW6apPdVLnOqTTBMTJWwY.jpg", "order": 10}, {"name": "Tim De Zarn", "character": "Inspector Bird", "id": 956719, "credit_id": "52fe4250c3a36847f8014a6d", "cast_id": 37, "profile_path": "/bvj6Kaq1VzAEBkqCGVDvOaQKOhi.jpg", "order": 11}, {"name": "Ezra Buzzington", "character": "Inspector Dent", "id": 59285, "credit_id": "52fe4250c3a36847f8014a71", "cast_id": 38, "profile_path": "/dl0SIqpOqS05UpJHKuDQqZTwUvP.jpg", "order": 12}, {"name": "Bob Stephenson", "character": "Airport Security Officer", "id": 17449, "credit_id": "52fe4250c3a36847f8014a75", "cast_id": 39, "profile_path": "/jHjchnxDsghomSglNryppVWdBGC.jpg", "order": 13}, {"name": "David Lee Smith", "character": "Walter", "id": 56112, "credit_id": "52fe4250c3a36847f8014a79", "cast_id": 40, "profile_path": "/xYkMA9AWtUN93KV5hWzlDkcnebB.jpg", "order": 14}, {"name": "Thom Gossom Jr.", "character": "Detective Stern", "id": 1219497, "credit_id": "52fe4250c3a36847f8014a7d", "cast_id": 41, "profile_path": "/8je5ISnUinU4RfjRGqW0ktZLneX.jpg", "order": 15}, {"name": "Carl Ciarfalio", "character": "Lou's Body Guard", "id": 42824, "credit_id": "52fe4250c3a36847f8014a81", "cast_id": 42, "profile_path": "/1JyIKBSkpK1tADOXpYYrO1khcQH.jpg", "order": 16}, {"name": "Stuart Blumberg", "character": "Car Salesman", "id": 40277, "credit_id": "52fe4251c3a36847f8014a85", "cast_id": 43, "profile_path": "/nvHQBUin3CXD0kBsET1KBNaiekW.jpg", "order": 17}, {"name": "Mark Fite", "character": "Man #2 at Auto Shop", "id": 122805, "credit_id": "52fe4251c3a36847f8014a89", "cast_id": 44, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 18}, {"name": "Matt Winston", "character": "Seminary Student", "id": 35521, "credit_id": "52fe4251c3a36847f8014a8d", "cast_id": 45, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 19}, {"name": "Lauren S\u00e1nchez", "character": "Channel 4 Reporter", "id": 1224996, "credit_id": "52fe4251c3a36847f8014a91", "cast_id": 46, "profile_path": "/iQ16P9a8TEzb4WsN8fjLsMCtvMA.jpg", "order": 20}, {"name": "David Jean Thomas", "character": "Policeman", "id": 109100, "credit_id": "52fe4251c3a36847f8014a95", "cast_id": 47, "profile_path": "/f5YBSiswUU9rctXbJQoXi0CdJBn.jpg", "order": 21}, {"name": "Paul Carafotes", "character": "Salvator, Winking Bartender", "id": 1221838, "credit_id": "52fe4251c3a36847f8014a99", "cast_id": 48, "profile_path": "/enoYGFhHwLqKacISwjxk5yrFAOA.jpg", "order": 22}, {"name": "Christopher John Fields", "character": "Proprietor of Dry Cleaners", "id": 145531, "credit_id": "52fe4251c3a36847f8014a9d", "cast_id": 49, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 23}, {"name": "Michael Shamus Wiles", "character": "Bartender in Halo", "id": 9291, "credit_id": "52fe4251c3a36847f8014aa1", "cast_id": 50, "profile_path": "/upfSW6BGze446iqsZRehzcToNm8.jpg", "order": 24}, {"name": "Van Quattro", "character": "Detective Andrew", "id": 41352, "credit_id": "52fe4251c3a36847f8014aa5", "cast_id": 51, "profile_path": "/kNmOCRKD6PyG8t9tcDOpBFOrast.jpg", "order": 25}, {"name": "Markus Redmond", "character": "Detective Kevin", "id": 1226835, "credit_id": "52fe4251c3a36847f8014aa9", "cast_id": 52, "profile_path": "/yxMbPCGa8rMSrquc8v4UN7QLlWX.jpg", "order": 26}, {"name": "Manasa Madapu", "character": "Manasa Madapu", "id": 1378351, "credit_id": "544e7e33c3a3685682000271", "cast_id": 53, "profile_path": null, "order": 27}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4250c3a36847f8014a47", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.8, "runtime": 139}, "551": {"poster_path": "/3Ypk0OLrECSp7tqQFLMppGBrHfo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93300000, "overview": "The Poseidon Adventure was one of the first Catastrophe films and began the Disaster Film genre. Director Neame tells the story of a group of people that must fight for their lives aboard a sinking ship. Based on the novel by Paul Gallico.", "video": false, "id": 551, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "The Poseidon Adventure", "tagline": "Who will survive-in one of the greatest escape adventures ever!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0069113", "adult": false, "backdrop_path": "/xwEtJVliloiuICXoyqjyTZM9qRc.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Kent Productions", "id": 10281}], "release_date": "1972-12-12", "popularity": 0.534865616144203, "original_title": "The Poseidon Adventure", "budget": 5000000, "cast": [{"name": "Gene Hackman", "character": "Reverand Scott", "id": 193, "credit_id": "52fe4251c3a36847f8014afd", "cast_id": 5, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Ernest Borgnine", "character": "Mike Rogo", "id": 7502, "credit_id": "52fe4251c3a36847f8014b01", "cast_id": 6, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 1}, {"name": "Red Buttons", "character": "James Martin", "id": 7503, "credit_id": "52fe4251c3a36847f8014b05", "cast_id": 7, "profile_path": "/qftIHEdcpPgBnEe8P9OvMpIqiL3.jpg", "order": 2}, {"name": "Carol Lynley", "character": "Nonnie Parry", "id": 7504, "credit_id": "52fe4251c3a36847f8014b09", "cast_id": 8, "profile_path": "/xYeHABAxxjJ7p9Zw5KxB9E5SzmY.jpg", "order": 3}, {"name": "Roddy McDowall", "character": "Acres", "id": 7505, "credit_id": "52fe4251c3a36847f8014b0d", "cast_id": 9, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 4}, {"name": "Stella Stevens", "character": "Linda Rogo", "id": 7631, "credit_id": "52fe4251c3a36847f8014b53", "cast_id": 21, "profile_path": "/hsNwoHrAe6ZWaBl4f62YiP2iJqo.jpg", "order": 5}, {"name": "Shelley Winters", "character": "Belle Rosen", "id": 7632, "credit_id": "52fe4251c3a36847f8014b57", "cast_id": 22, "profile_path": "/zVg966M0RVK5kycHZUEDc51QULV.jpg", "order": 6}, {"name": "Jack Albertson", "character": "Manny Rosen", "id": 3461, "credit_id": "52fe4251c3a36847f8014b5b", "cast_id": 23, "profile_path": "/k9oqFrLhgd6v1hGG8Jg2mluM1XL.jpg", "order": 7}, {"name": "Leslie Nielsen", "character": "Captain Harrison", "id": 7633, "credit_id": "52fe4251c3a36847f8014b5f", "cast_id": 24, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 8}, {"name": "Pamela Sue Martin", "character": "Susan Shelby", "id": 7634, "credit_id": "52fe4251c3a36847f8014b63", "cast_id": 25, "profile_path": "/nxT3hW8I4hfABzlAr26Fww3WZTf.jpg", "order": 9}, {"name": "Eric Shea", "character": "Robin Shelby", "id": 7635, "credit_id": "52fe4251c3a36847f8014b67", "cast_id": 26, "profile_path": "/h1mTZMnUeHTEm54L0hw3pRjC9hA.jpg", "order": 10}, {"name": "Fred Sadoff", "character": "Mr. Linarcos", "id": 7636, "credit_id": "52fe4251c3a36847f8014b6b", "cast_id": 27, "profile_path": "/w1nYD8q0ZNfuBrEcM65qcwxwjX0.jpg", "order": 11}, {"name": "Roseann Williams", "character": "Woman (uncredited)", "id": 1407179, "credit_id": "54a507e2c3a368764f010b72", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Arthur O'Connell", "character": "Chaplain", "id": 857, "credit_id": "54cb2e77925141678e012f94", "cast_id": 29, "profile_path": "/rWoLpGwQlIZSiPIzJqE1yIMiDxr.jpg", "order": 13}, {"name": "Sheila Allen", "character": "Nurse", "id": 6865, "credit_id": "54cb3467925141561e00f124", "cast_id": 30, "profile_path": "/7eA4sejlzIYfJdelJAyyUJHnLK2.jpg", "order": 14}, {"name": "Jan Arvan", "character": "Doctor", "id": 151536, "credit_id": "54cb379692514157cc00ee32", "cast_id": 31, "profile_path": "/4hLznxGYdVhl5dvnKoMIYfGknbW.jpg", "order": 15}, {"name": "Byron Webster", "character": "Purser", "id": 88170, "credit_id": "54cb39c6c3a368709000f4b4", "cast_id": 32, "profile_path": "/iRRI5q5VVS44CNAyUCNZKsBTYFB.jpg", "order": 16}, {"name": "John Crawford", "character": "Chief Engineer", "id": 15693, "credit_id": "54cb3b66c3a368092400eb25", "cast_id": 33, "profile_path": "/wyBwzmRGML0PoIxJ2DnQAOBgmqu.jpg", "order": 17}, {"name": "Bob Hastings", "character": "M. C.", "id": 34973, "credit_id": "54cb3ce3c3a36874ac013183", "cast_id": 34, "profile_path": "/lk4qgDtuM5XqDbXLBQTyfpC6qiY.jpg", "order": 18}, {"name": "Erik L. Nelson", "character": "Mr. Tinkham", "id": 1401253, "credit_id": "54cb3fabc3a36874b7014898", "cast_id": 35, "profile_path": "/pD9V44n7frEliTwRiTcVAOn5855.jpg", "order": 19}], "directors": [{"name": "Ronald Neame", "department": "Directing", "job": "Director", "credit_id": "52fe4251c3a36847f8014ae7", "profile_path": "/6ET8GlWzxTkQu5sEH24I0UZ6IrG.jpg", "id": 7501}], "vote_average": 7.6, "runtime": 117}, "553": {"poster_path": "/mza2A9CcnE0W1zjDbC3UDSD9yQg.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FI", "name": "Finland"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "NO", "name": "Norway"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A barren soundstage is stylishly utilized to create a minimalist small-town setting in which a mysterious woman named Grace (Nicole Kidman) hides from the criminals who pursue her. The town is two-faced and offers to harbor Grace as long as she can make it worth their effort, so Grace works hard under the employ of various townspeople to win their favor. Tensions flare, however, and Grace's status as a helpless outsider provokes vicious contempt and abuse from the citizens of Dogville.", "video": false, "id": 553, "genres": [{"id": 18, "name": "Drama"}], "title": "Dogville", "tagline": "", "vote_count": 113, "homepage": "http://www.dogville.dk/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 1952, "name": "USA: Land of Opportunities Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0276919", "adult": false, "backdrop_path": "/ln8zSLTBoRUKVv3LxONxfyJdRxQ.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}], "release_date": "2003-05-19", "popularity": 0.366455574020756, "original_title": "Dogville", "budget": 10000000, "cast": [{"name": "Nicole Kidman", "character": "Grace Margaret Mulligan", "id": 2227, "credit_id": "52fe4251c3a36847f8014c93", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Harriet Andersson", "character": "Gloria", "id": 7569, "credit_id": "52fe4251c3a36847f8014c97", "cast_id": 4, "profile_path": "/zeVAlCxYjI9SvF5e6g3UfeNbeKo.jpg", "order": 1}, {"name": "Lauren Bacall", "character": "Ma Ginger", "id": 7570, "credit_id": "52fe4251c3a36847f8014c9b", "cast_id": 5, "profile_path": "/kolRFeufmFpcdRJL6v44FHkqdbJ.jpg", "order": 2}, {"name": "Jean-Marc Barr", "character": "Man with the big Hat", "id": 1642, "credit_id": "52fe4251c3a36847f8014c9f", "cast_id": 6, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 3}, {"name": "Paul Bettany", "character": "Tom Edison", "id": 6162, "credit_id": "52fe4251c3a36847f8014ca3", "cast_id": 7, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 4}, {"name": "Blair Brown", "character": "Mrs. Henson", "id": 7571, "credit_id": "52fe4251c3a36847f8014ca7", "cast_id": 8, "profile_path": "/zBMLu9wTu36i0RkQGSQ5adH6Lvu.jpg", "order": 5}, {"name": "James Caan", "character": "The Big Man", "id": 3085, "credit_id": "52fe4251c3a36847f8014cab", "cast_id": 9, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "Patricia Clarkson", "character": "Vera", "id": 1276, "credit_id": "52fe4251c3a36847f8014caf", "cast_id": 10, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 7}, {"name": "Jeremy Davies", "character": "Bill Henson", "id": 4654, "credit_id": "52fe4251c3a36847f8014cb3", "cast_id": 11, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 8}, {"name": "Ben Gazzara", "character": "Jack McKay", "id": 856, "credit_id": "52fe4251c3a36847f8014cb7", "cast_id": 12, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 9}, {"name": "Philip Baker Hall", "character": "Tom Edison Senior", "id": 4492, "credit_id": "52fe4251c3a36847f8014cbb", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 10}, {"name": "Thom Hoffman", "character": "Gangster", "id": 7572, "credit_id": "52fe4251c3a36847f8014cbf", "cast_id": 14, "profile_path": "/uqWhSQzfBScIHzYhAr4GsHKyrvP.jpg", "order": 11}, {"name": "Siobhan Fallon", "character": "Martha", "id": 6751, "credit_id": "52fe4251c3a36847f8014cc3", "cast_id": 15, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 12}, {"name": "\u017deljko Ivanek", "character": "Ben", "id": 6752, "credit_id": "52fe4251c3a36847f8014cc7", "cast_id": 16, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 13}, {"name": "John Randolph Jones", "character": "Gangster", "id": 6758, "credit_id": "52fe4251c3a36847f8014ccb", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Udo Kier", "character": "Man in the Coat", "id": 1646, "credit_id": "52fe4251c3a36847f8014ccf", "cast_id": 18, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 15}, {"name": "Cleo King", "character": "Olivia", "id": 7574, "credit_id": "52fe4251c3a36847f8014cd3", "cast_id": 19, "profile_path": "/1hyMhXnT6VuC0XA9eBmsbx9QbbY.jpg", "order": 16}, {"name": "Miles Purinton", "character": "Jason", "id": 7575, "credit_id": "52fe4251c3a36847f8014cd7", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Bill Raymond", "character": "Mr. Henson", "id": 7576, "credit_id": "52fe4251c3a36847f8014cdb", "cast_id": 21, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 18}, {"name": "Chlo\u00eb Sevigny", "character": "Liz Henson", "id": 2838, "credit_id": "52fe4251c3a36847f8014cdf", "cast_id": 22, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 19}, {"name": "Shauna Shim", "character": "June", "id": 7577, "credit_id": "52fe4251c3a36847f8014ce3", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Stellan Skarsg\u00e5rd", "character": "Chuck", "id": 1640, "credit_id": "52fe4251c3a36847f8014ce7", "cast_id": 24, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 21}, {"name": "Evelina Brinkemo", "character": "Athena", "id": 7578, "credit_id": "52fe4251c3a36847f8014ceb", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Anna Brobeck", "character": "Olympia", "id": 7579, "credit_id": "52fe4251c3a36847f8014cef", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Tilde Lindgren", "character": "Pandora", "id": 7580, "credit_id": "52fe4251c3a36847f8014cf3", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Evelina Lundqvist", "character": "Diana", "id": 7581, "credit_id": "52fe4251c3a36847f8014cf7", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Helga Olofsson", "character": "Dahlia", "id": 7582, "credit_id": "52fe4251c3a36847f8014cfb", "cast_id": 29, "profile_path": null, "order": 26}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe4251c3a36847f8014c89", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 7.7, "runtime": 178}, "41515": {"poster_path": "/5oYL4YS8WHjhodRLn4b8BRZ3YHh.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127209281, "overview": "Jellystone Park has been losing business, so greedy Mayor Brown decides to shut it down and sell the land. That means families will no longer be able to experience the natural beauty of the outdoors -- and, even worse, Yogi and Boo Boo will be tossed out of the only home they've ever known. Faced with his biggest challenge ever, Yogi must prove that he really is \"smarter than the average bear\" as he and Boo Boo join forces with their old nemesis Ranger Smith to find a way to save Jellystone Park from closing forever.", "video": false, "id": 41515, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Yogi Bear", "tagline": "Life's a Pic-A-Nic", "vote_count": 71, "homepage": "http://www.yogibear.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1302067", "adult": false, "backdrop_path": "/uSPlxOT3MppHyfP74mD8oUjlIQe.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Sunswept Entertainment", "id": 5219}, {"name": "De Line Pictures", "id": 2609}, {"name": "Rhythm and Hues", "id": 13481}, {"name": "Picnic Basket", "id": 19045}], "release_date": "2010-12-17", "popularity": 0.708425621324448, "original_title": "Yogi Bear", "budget": 80000000, "cast": [{"name": "Dan Aykroyd", "character": "Yogi Bear (voice)", "id": 707, "credit_id": "52fe45cfc3a36847f80dbc15", "cast_id": 4, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 0}, {"name": "Justin Timberlake", "character": "Boo-Boo Bear (voice)", "id": 12111, "credit_id": "52fe45cfc3a36847f80dbc11", "cast_id": 3, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 1}, {"name": "Anna Faris", "character": "Rachel", "id": 1772, "credit_id": "52fe45cfc3a36847f80dbc2d", "cast_id": 10, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Tom Cavanagh", "character": "Ranger Smith", "id": 59216, "credit_id": "52fe45cfc3a36847f80dbc21", "cast_id": 7, "profile_path": "/pBHRGDi313R4v88WM93LOCIBPwN.jpg", "order": 3}, {"name": "Christine Taylor", "character": "Cindy Bear (voice)", "id": 15286, "credit_id": "52fe45cfc3a36847f80dbc19", "cast_id": 5, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 4}, {"name": "T.J. Miller", "character": "Ranger Jones", "id": 51990, "credit_id": "52fe45cfc3a36847f80dbc1d", "cast_id": 6, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 5}, {"name": "Nate Corddry", "character": "Chief of Staff", "id": 127048, "credit_id": "52fe45cfc3a36847f80dbc29", "cast_id": 9, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 6}, {"name": "Andrew Daly", "character": "Mayor Brown", "id": 95875, "credit_id": "52fe45cfc3a36847f80dbc25", "cast_id": 8, "profile_path": "/1jUiCZOJOGE1LKBCaeMkrNceSj0.jpg", "order": 7}, {"name": "David Stott", "character": "Mayor's Tailor", "id": 66578, "credit_id": "52fe45cfc3a36847f80dbc3f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Greg Johnson", "character": "Dirty Shopper", "id": 46398, "credit_id": "52fe45cfc3a36847f80dbc43", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Greg Johnson", "character": "Stylist", "id": 46398, "credit_id": "52fe45cfc3a36847f80dbc47", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Patricia Aldersley", "character": "Elderly Purse Lady", "id": 54484, "credit_id": "52fe45cfc3a36847f80dbc4b", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Tim McLachlan", "character": "Purse Snatcher", "id": 235025, "credit_id": "52fe45cfc3a36847f80dbc4f", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Vernon Hayden", "character": "Security Guard", "id": 139912, "credit_id": "52fe45d0c3a36847f80dbc53", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Dean Knowsley", "character": "Security Guard", "id": 98216, "credit_id": "52fe45d0c3a36847f80dbc57", "cast_id": 20, "profile_path": "/uLBD2u1xuAUo9Fbxe6Jla9jEIEx.jpg", "order": 16}], "directors": [{"name": "Eric Brevig", "department": "Directing", "job": "Director", "credit_id": "52fe45cfc3a36847f80dbc0d", "profile_path": "/QqS6wJAVIxQCC7khem22Hq0a4b.jpg", "id": 9622}], "vote_average": 5.7, "runtime": 80}, "557": {"poster_path": "/rZd0y1X1Gw4t5B3f01Qzj8DYY66.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 821708551, "overview": "After being bitten by a genetically altered spider, nerdy high school student Peter Parker is endowed with amazing powers.", "video": false, "id": 557, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Spider-Man", "tagline": "With great power comes great responsibility.", "vote_count": 1798, "homepage": "http://spiderman.sonypictures.com/index.php", "belongs_to_collection": {"backdrop_path": "/waZqriYTuBE3WqXI3SDGi3kfDQE.jpg", "poster_path": "/aNknE3vw8QC5gDHBRYpOz9gzuPc.jpg", "id": 556, "name": "Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145487", "adult": false, "backdrop_path": "/jz6NCADCgj4dWU8RM81Xvrokey4.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Marvel Entertainment, LLC", "id": 325}, {"name": "Laura Ziskin Productions", "id": 326}], "release_date": "2002-05-02", "popularity": 2.06187455818809, "original_title": "Spider-Man", "budget": 139000000, "cast": [{"name": "Tobey Maguire", "character": "Spider-Man / Peter Parker", "id": 2219, "credit_id": "52fe4251c3a36847f8014f77", "cast_id": 31, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Green Goblin / Norman Osborn", "id": 5293, "credit_id": "52fe4251c3a36847f8014f7b", "cast_id": 32, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Kirsten Dunst", "character": "Mary Jane Watson", "id": 205, "credit_id": "52fe4251c3a36847f8014f11", "cast_id": 10, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 2}, {"name": "James Franco", "character": "Harry Osborn", "id": 17051, "credit_id": "52fe4251c3a36847f8014f15", "cast_id": 11, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 3}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4251c3a36847f8014f83", "cast_id": 34, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "J. Jonah Jameson", "id": 18999, "credit_id": "52fe4251c3a36847f8014f19", "cast_id": 12, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "Joe Manganiello", "character": "Flash Thompson", "id": 20580, "credit_id": "52fe4251c3a36847f8014f1d", "cast_id": 13, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 6}, {"name": "Gerry Becker", "character": "Maximilian Fargas", "id": 19468, "credit_id": "52fe4251c3a36847f8014f7f", "cast_id": 33, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 7}, {"name": "Rosemary Harris", "character": "May Parker", "id": 18998, "credit_id": "52fe4251c3a36847f8014f87", "cast_id": 35, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 8}, {"name": "Bill Nunn", "character": "Joseph 'Robbie' Robertson", "id": 5502, "credit_id": "52fe4251c3a36847f8014f8b", "cast_id": 36, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 9}, {"name": "Bruce Campbell", "character": "Ring Announcer", "id": 11357, "credit_id": "52fe4251c3a36847f8014f2d", "cast_id": 17, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 10}, {"name": "Stanley Anderson", "character": "General Slocum", "id": 15253, "credit_id": "52fe4252c3a36847f8014f8f", "cast_id": 37, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 11}, {"name": "Ron Perkins", "character": "Dr. Mendell Stromm", "id": 125024, "credit_id": "52fe4252c3a36847f8014f93", "cast_id": 38, "profile_path": "/mlmdELJA9yAwIIOh7JhxYW2hJtM.jpg", "order": 12}, {"name": "Michael Papajohn", "character": "Carjacker", "id": 20582, "credit_id": "52fe4251c3a36847f8014f29", "cast_id": 16, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 13}, {"name": "K. K. Dodds", "character": "Simkins", "id": 6945, "credit_id": "52fe4251c3a36847f8014f39", "cast_id": 20, "profile_path": "/n9d6ovtwlfZ5Xvvo2oaJd3rUGvp.jpg", "order": 14}, {"name": "Jack Betts", "character": "Henry Balkan", "id": 20581, "credit_id": "52fe4251c3a36847f8014f21", "cast_id": 14, "profile_path": "/wX6KWBh4sH2L7sHDIsgDBv6ktXQ.jpg", "order": 15}, {"name": "Elizabeth Banks", "character": "Miss Brant", "id": 9281, "credit_id": "52fe4251c3a36847f8014f25", "cast_id": 15, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 16}, {"name": "Shan Omar Huey", "character": "Teacher", "id": 20583, "credit_id": "52fe4251c3a36847f8014f31", "cast_id": 18, "profile_path": "/dKQvlvIOK1yn9NOFeKhxTZp5ouH.jpg", "order": 17}, {"name": "Lucy Lawless", "character": "Punk Rock Girl", "id": 20584, "credit_id": "52fe4251c3a36847f8014f35", "cast_id": 19, "profile_path": "/wTXMIKm3P0WMF9894Ubgky1mOXu.jpg", "order": 18}, {"name": "Robert Kerman", "character": "Tugboat Captain", "id": 55648, "credit_id": "52fe4251c3a36847f8014f73", "cast_id": 30, "profile_path": "/v6tD0f9D0k08TWObRvShYCTfV1x.jpg", "order": 19}, {"name": "Ted Raimi", "character": "Hoffman", "id": 11769, "credit_id": "52fe4252c3a36847f8014f97", "cast_id": 39, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 20}, {"name": "John Paxton", "character": "Houseman", "id": 19326, "credit_id": "52fe4252c3a36847f8014f9b", "cast_id": 40, "profile_path": "/bizhhVVs4y8CfHzPfqPYNEvs2eZ.jpg", "order": 21}, {"name": "Octavia Spencer", "character": "Check-In Girl", "id": 6944, "credit_id": "52fe4252c3a36847f8014fa3", "cast_id": 42, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 22}, {"name": "Randy Savage", "character": "Bone Saw McGraw", "id": 89023, "credit_id": "52fe4252c3a36847f8014f9f", "cast_id": 41, "profile_path": "/rcpPJQvX2uqt7oVaTVwAKhdcdN8.jpg", "order": 23}, {"name": "Jayce Bartok", "character": "Subway Guitarist", "id": 21130, "credit_id": "52fe4252c3a36847f8014fa7", "cast_id": 43, "profile_path": "/xDhwbN0QGGZ1YtvcML3EX8d5JJj.jpg", "order": 24}, {"name": "Sara Ramirez", "character": "Cop at Carjacking", "id": 125055, "credit_id": "52fe4252c3a36847f8014fab", "cast_id": 44, "profile_path": "/iXX6xCTvgMfqlWQZ2xdFxrOxhrz.jpg", "order": 25}, {"name": "Una Damon", "character": "Lab Tour Guide", "id": 154644, "credit_id": "52fe4252c3a36847f8014faf", "cast_id": 45, "profile_path": "/d3dcUIwjXY0mH6QplM98L8fswzA.jpg", "order": 26}, {"name": "Stan Lee", "character": "Man in Fair", "id": 7624, "credit_id": "52fe4252c3a36847f8014fb3", "cast_id": 46, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 27}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4251c3a36847f8014ee3", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.3, "runtime": 121}, "558": {"poster_path": "/qtBFrsEQ4oXW8sKvRxkKnYuPLg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 783766341, "overview": "Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood.", "video": false, "id": 558, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Spider-Man 2", "tagline": "There's a hero in all of us.", "vote_count": 1579, "homepage": "http://www.spider-man-2.de/", "belongs_to_collection": {"backdrop_path": "/waZqriYTuBE3WqXI3SDGi3kfDQE.jpg", "poster_path": "/aNknE3vw8QC5gDHBRYpOz9gzuPc.jpg", "id": 556, "name": "Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0316654", "adult": false, "backdrop_path": "/p2frIQykQPj3dXSYVOca60RQj9X.jpg", "production_companies": [{"name": "Laura Ziskin Productions", "id": 326}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Marvel Enterprises", "id": 19551}], "release_date": "2004-06-29", "popularity": 0.967805308687557, "original_title": "Spider-Man 2", "budget": 200000000, "cast": [{"name": "Tobey Maguire", "character": "Spider-Man / Peter Parker", "id": 2219, "credit_id": "52fe4252c3a36847f801509f", "cast_id": 33, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Mary Jane Watson", "id": 205, "credit_id": "52fe4252c3a36847f80150af", "cast_id": 37, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "James Franco", "character": "Harry Osborn", "id": 17051, "credit_id": "52fe4252c3a36847f80150b3", "cast_id": 38, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Doc Ock / Dr. Otto Octavius", "id": 658, "credit_id": "52fe4252c3a36847f801508b", "cast_id": 28, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Rosemary Harris", "character": "May Parker", "id": 18998, "credit_id": "52fe4252c3a36847f80150a7", "cast_id": 35, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "J. Jonah Jameson", "id": 18999, "credit_id": "52fe4252c3a36847f8015067", "cast_id": 19, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "Donna Murphy", "character": "Rosalie Octavius", "id": 2517, "credit_id": "52fe4252c3a36847f801506b", "cast_id": 20, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 6}, {"name": "Daniel Gillies", "character": "John Jameson", "id": 19154, "credit_id": "52fe4252c3a36847f801508f", "cast_id": 29, "profile_path": "/qBUt7kK7qFpK82Qt8ptHaBvO0QU.jpg", "order": 7}, {"name": "Dylan Baker", "character": "Dr. Curt Connors", "id": 19152, "credit_id": "52fe4252c3a36847f801506f", "cast_id": 21, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 8}, {"name": "Willem Dafoe", "character": "Green Goblin / Norman Osborn", "id": 5293, "credit_id": "52fe4252c3a36847f8015093", "cast_id": 30, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 9}, {"name": "Ted Raimi", "character": "Hoffman", "id": 11769, "credit_id": "52fe4252c3a36847f8015097", "cast_id": 31, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 10}, {"name": "Vanessa Ferlito", "character": "Louise", "id": 20491, "credit_id": "52fe4252c3a36847f8015073", "cast_id": 22, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 11}, {"name": "Aasif Mandvi", "character": "Mr. Aziz", "id": 20644, "credit_id": "52fe4252c3a36847f8015077", "cast_id": 23, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 12}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4252c3a36847f80150a3", "cast_id": 34, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 13}, {"name": "Elizabeth Banks", "character": "Miss Brant", "id": 9281, "credit_id": "52fe4252c3a36847f801507f", "cast_id": 25, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 14}, {"name": "Bruce Campbell", "character": "Snooty Usher", "id": 11357, "credit_id": "52fe4252c3a36847f801507b", "cast_id": 24, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 15}, {"name": "Gregg Edelman", "character": "Dr. Davis", "id": 17179, "credit_id": "52fe4252c3a36847f801509b", "cast_id": 32, "profile_path": "/aHbQl0K1c7rYtJVUHsLr4p0LtA6.jpg", "order": 16}, {"name": "Elya Baskin", "character": "Mr. Ditkovich", "id": 2368, "credit_id": "52fe4252c3a36847f8015087", "cast_id": 27, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 17}, {"name": "Mageina Tovah", "character": "Ursula", "id": 20645, "credit_id": "52fe4252c3a36847f8015083", "cast_id": 26, "profile_path": "/kxseJKAIiZFKnJFshy3nLXajmFz.jpg", "order": 18}, {"name": "Bill Nunn", "character": "Joseph 'Robbie' Robertson", "id": 5502, "credit_id": "52fe4252c3a36847f80150ab", "cast_id": 36, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 19}, {"name": "Emily Deschanel", "character": "Receptionist", "id": 25933, "credit_id": "52fe4252c3a36847f80150bb", "cast_id": 40, "profile_path": "/f5FjmOlXEcjLz4qxi5Rfbu3ZO4Y.jpg", "order": 20}, {"name": "Joel McHale", "character": "Mr. Jacks", "id": 74949, "credit_id": "52fe4252c3a36847f80150b7", "cast_id": 39, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 21}, {"name": "Stan Lee", "character": "Man Dodging Debris", "id": 7624, "credit_id": "52fe4252c3a36847f80150bf", "cast_id": 41, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 22}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f8015009", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.2, "runtime": 127}, "131631": {"poster_path": "/gj282Pniaa78ZJfbaixyLXnXEDI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 752100229, "overview": "Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.", "video": false, "id": 131631, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Hunger Games: Mockingjay - Part 1", "tagline": "Fire burns brighter in the darkness", "vote_count": 1172, "homepage": "http://www.thehungergamesexplorer.com/us/epk/mockingjay-part1", "belongs_to_collection": {"backdrop_path": "/lWZB4VFSlU292oJ3ZAzAzPi9GU0.jpg", "poster_path": "/cEBNDEMGqvSvU0knEv9Wl3dk5kv.jpg", "id": 131635, "name": "The Hunger Games Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1951265", "adult": false, "backdrop_path": "/fUn5I5f4069vwGFEEvA3HXt9xPP.jpg", "production_companies": [{"name": "Color Force", "id": 5420}, {"name": "Lionsgate", "id": 1632}], "release_date": "2014-11-20", "popularity": 13.6668202098639, "original_title": "The Hunger Games: Mockingjay - Part 1", "budget": 125000000, "cast": [{"name": "Jennifer Lawrence", "character": "Katniss Everdeen", "id": 72129, "credit_id": "52fe4b7bc3a368484e18b057", "cast_id": 2, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Peeta Mellark", "id": 27972, "credit_id": "52fe4b7bc3a368484e18b05b", "cast_id": 3, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Liam Hemsworth", "character": "Gale Hawthorne", "id": 96066, "credit_id": "52fe4b7bc3a368484e18b05f", "cast_id": 4, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Haymitch Abernathy", "id": 57755, "credit_id": "52fe4b7bc3a368484e18b063", "cast_id": 5, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Donald Sutherland", "character": "President Snow", "id": 55636, "credit_id": "545f744cc3a3680b5d0006ae", "cast_id": 22, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Plutarch Heavensbee", "id": 1233, "credit_id": "52fe4b7bc3a368484e18b07b", "cast_id": 11, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Julianne Moore", "character": "President Alma Coin", "id": 1231, "credit_id": "52fe4b7bc3a368484e18b06f", "cast_id": 8, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 6}, {"name": "Willow Shields", "character": "Primrose Everdeen", "id": 530025, "credit_id": "545f74710e0a264d60002178", "cast_id": 24, "profile_path": "/bKMAnqGbyVeiRBG3im1Y33Vtrgx.jpg", "order": 7}, {"name": "Sam Claflin", "character": "Finnick Odair", "id": 237455, "credit_id": "52fe4b7bc3a368484e18b06b", "cast_id": 7, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 8}, {"name": "Elizabeth Banks", "character": "Effie Trinket", "id": 9281, "credit_id": "545f74100e0a2661770015de", "cast_id": 19, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 9}, {"name": "Mahershalalhashbaz Ali", "character": "Boggs", "id": 932967, "credit_id": "52fe4b7bc3a368484e18b087", "cast_id": 14, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 10}, {"name": "Jena Malone", "character": "Johanna Mason", "id": 20089, "credit_id": "545f74880e0a261fb300924a", "cast_id": 25, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 11}, {"name": "Jeffrey Wright", "character": "Beetee", "id": 2954, "credit_id": "545f74270e0a264d6000216f", "cast_id": 20, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 12}, {"name": "Paula Malcomson", "character": "Katniss' Mother", "id": 47533, "credit_id": "54f8e16392514118ee00008e", "cast_id": 39, "profile_path": "/mqiiy0HXExPYaIczPxWFRDGqhwA.jpg", "order": 13}, {"name": "Stanley Tucci", "character": "Caesar Flickerman", "id": 2283, "credit_id": "545f743cc3a3686e49001e36", "cast_id": 21, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 14}, {"name": "Natalie Dormer", "character": "Cressida", "id": 58502, "credit_id": "545f750b0e0a261fb9009122", "cast_id": 30, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 15}, {"name": "Evan Ross", "character": "Messalla", "id": 94103, "credit_id": "52fe4b7bc3a368484e18b077", "cast_id": 10, "profile_path": "/2qNAI0zGfnsSbEAuzlbZvcij5VF.jpg", "order": 16}, {"name": "Elden Henson", "character": "Pollux", "id": 20220, "credit_id": "52fe4b7bc3a368484e18b07f", "cast_id": 12, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 17}, {"name": "Wes Chatham", "character": "Castor", "id": 51682, "credit_id": "52fe4b7bc3a368484e18b08b", "cast_id": 15, "profile_path": "/nwQdBEKxQ7KhyP1hQvLBZe6AXN2.jpg", "order": 18}, {"name": "Sarita Choudhury", "character": "Egeria", "id": 20275, "credit_id": "54f8e1ca92514118ff0000a6", "cast_id": 40, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 19}, {"name": "Stef Dawson", "character": "Annie Cresta", "id": 1085158, "credit_id": "52fe4b7bc3a368484e18b083", "cast_id": 13, "profile_path": "/jHAd1NwUfl5uYfVj6fi9N1TswDD.jpg", "order": 20}, {"name": "Patina Miller", "character": "Commander Paylor", "id": 1366702, "credit_id": "545f74b70e0a261fb300924d", "cast_id": 26, "profile_path": "/uLGWqDo0r0JdE8JbY7M8tyzG2BH.jpg", "order": 21}, {"name": "Robert Knepper", "character": "Antonius", "id": 17343, "credit_id": "52fe4b7bc3a368484e18b067", "cast_id": 6, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 22}, {"name": "Caitlin Fowler", "character": "D8 Another Patient", "id": 1435440, "credit_id": "54f8e223c3a36843e50000aa", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Jada Taylor", "character": "D8 Female Patient", "id": 1435442, "credit_id": "54f8e24dc3a36843df0000ab", "cast_id": 42, "profile_path": "/k46yfyAyNE9j3q9oVJrlhknX8WY.jpg", "order": 24}, {"name": "Nicholas Pryor", "character": "D8 Male Patient", "id": 13028, "credit_id": "54f8e359c3a36843eb0000b4", "cast_id": 43, "profile_path": "/jqJVM5jEVq2Xqi8G5fO0iiEnd5O.jpg", "order": 25}, {"name": "Donna Biscoe", "character": "D8 Old Woman", "id": 582892, "credit_id": "54f8e389c3a36843f10000c6", "cast_id": 44, "profile_path": "/a8wTPPXmRDEkLKbYGvM6pqnIfXB.jpg", "order": 26}, {"name": "Michael Garza", "character": "Eddy", "id": 1383546, "credit_id": "545f74d9c3a36841d30026f8", "cast_id": 27, "profile_path": "/l83ZOfCHVX1WD0DfZlenKYYtomg.jpg", "order": 27}, {"name": "Erika Bierman", "character": "Snow's Granddaughter", "id": 1383509, "credit_id": "545f74eec3a3680b5d0006c2", "cast_id": 28, "profile_path": "/r5zw8kHfyDTk7zNd5pm2nkKE3CL.jpg", "order": 28}, {"name": "Tyler Lee Allen", "character": "President Snow's Security", "id": 1383549, "credit_id": "545f752d0e0a262359001cb6", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Bill Bennett", "character": "District 13 Engineer", "id": 1435432, "credit_id": "54f8df24c3a36843f5000069", "cast_id": 38, "profile_path": "/zKF8BvSoapHVLgXyCddFZ0gUQdX.jpg", "order": 30}, {"name": "Stephen Mackenzie Brown", "character": "Beetee's Technican", "id": 1383551, "credit_id": "545f75700e0a262359001cc8", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Marshall Choka", "character": "District 13 Citizen", "id": 1383552, "credit_id": "545f75850e0a262359001ccf", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Kirk Crenshaw", "character": "Peace Keeper", "id": 1383548, "credit_id": "545f7500c3a3680b5a000788", "cast_id": 29, "profile_path": null, "order": 33}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "5300bbc39251416ade3196b4", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 7.0, "runtime": 123}, "561": {"poster_path": "/q19U91KJ1yabMmFYSyu5U7SetsP.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230427240, "overview": "Constantine tells the story of John Constantine, a man who has literally been to Hell and back. When he teams up with a policewoman to solve the mysterious suicide of her twin sister, their investigation takes them through the world of demons and angels that exists beneath the landscape of contemporary Los Angeles.", "video": false, "id": 561, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Constantine", "tagline": "Hell Wants Him, Heaven Won't Take Him, Earth Needs Him.", "vote_count": 565, "homepage": "http://constantinemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tl", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0360486", "adult": false, "backdrop_path": "/bGXup8uvaIrp6mLisZ8AJtl6DNA.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "DC Comics", "id": 429}, {"name": "Lonely Film Productions GmbH & Co. KG.", "id": 430}, {"name": "Donners' Company", "id": 431}, {"name": "Branded Entertainment/Batfilm Productions", "id": 432}, {"name": "Weed Road Pictures", "id": 433}, {"name": "3 Art Entertainment", "id": 434}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2005-02-18", "popularity": 0.908985501113746, "original_title": "Constantine", "budget": 100000000, "cast": [{"name": "Keanu Reeves", "character": "John Constantine", "id": 6384, "credit_id": "52fe4252c3a36847f8015399", "cast_id": 25, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Angela Dodson / Isabel Dodson", "id": 3293, "credit_id": "52fe4252c3a36847f801539d", "cast_id": 26, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Shia LaBeouf", "character": "Chas Kramer", "id": 10959, "credit_id": "52fe4252c3a36847f80153a1", "cast_id": 27, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 2}, {"name": "Djimon Hounsou", "character": "Midnite", "id": 938, "credit_id": "52fe4252c3a36847f80153a5", "cast_id": 28, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 3}, {"name": "Max Baker", "character": "Beeman", "id": 10960, "credit_id": "52fe4252c3a36847f80153a9", "cast_id": 29, "profile_path": "/v0JLmmMcCG97Kz7xQ8qpj6tNAGj.jpg", "order": 4}, {"name": "Pruitt Taylor Vince", "character": "Father Hennessy", "id": 3201, "credit_id": "52fe4252c3a36847f80153ad", "cast_id": 30, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 5}, {"name": "Gavin Rossdale", "character": "Balthazar", "id": 10961, "credit_id": "52fe4252c3a36847f80153b1", "cast_id": 31, "profile_path": "/1tgaFlNL7dO9kzJADYtwQJqTeeF.jpg", "order": 6}, {"name": "Tilda Swinton", "character": "Gabriel", "id": 3063, "credit_id": "52fe4252c3a36847f80153b5", "cast_id": 32, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 7}, {"name": "Peter Stormare", "character": "Lucifer", "id": 53, "credit_id": "52fe4252c3a36847f80153b9", "cast_id": 33, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 8}, {"name": "Jesse Ramirez", "character": "Scavenger", "id": 10962, "credit_id": "52fe4252c3a36847f80153bd", "cast_id": 34, "profile_path": "/oJua3xGxJrtUf8W7vaa4Ez9dD2C.jpg", "order": 9}, {"name": "Jos\u00e9 Z\u00fa\u00f1iga", "character": "Detective Weiss", "id": 10963, "credit_id": "52fe4252c3a36847f80153c1", "cast_id": 35, "profile_path": "/8RqlMIr7hDRWkph3wqo9BFmbuDo.jpg", "order": 10}, {"name": "Laz Alonso", "character": "Williams", "id": 10964, "credit_id": "52fe4252c3a36847f80153c5", "cast_id": 36, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 11}, {"name": "April Grace", "character": "Dr. Leslie Archer", "id": 10691, "credit_id": "52fe4252c3a36847f80153c9", "cast_id": 37, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 12}, {"name": "Michelle Monaghan", "character": "Ellie", "id": 11705, "credit_id": "53f7c6420e0a267a690000b5", "cast_id": 40, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 13}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f801530b", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 6.4, "runtime": 121}, "562": {"poster_path": "/rwBUbQ15vIBa6sb1xCBgGXcXCO7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138708852, "overview": "NYPD cop John McClane's plan to reconcile with his estranged wife, Holly, is thrown for a serious loop when minutes after he arrives at her office, the entire building is overtaken by a group of pitiless terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.", "video": false, "id": 562, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Die Hard", "tagline": "40 Stories. Twelve Terrorists. One Cop.", "vote_count": 1890, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0095016", "adult": false, "backdrop_path": "/j31bCZR33MLwgH5IFMcGKjbr3z5.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gordon Company", "id": 1073}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1988-07-14", "popularity": 1.91404511546182, "original_title": "Die Hard", "budget": 28000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe4252c3a36847f801543f", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Alan Rickman", "character": "Hans Gruber", "id": 4566, "credit_id": "52fe4252c3a36847f801545f", "cast_id": 13, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 1}, {"name": "Reginald VelJohnson", "character": "Sgt. Al Powell", "id": 7672, "credit_id": "52fe4252c3a36847f8015443", "cast_id": 6, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 2}, {"name": "Bonnie Bedelia", "character": "Holly Gennero McClane", "id": 7673, "credit_id": "52fe4252c3a36847f8015447", "cast_id": 7, "profile_path": "/u0DOzyTNZhtFgPHIFX5OITMb7wm.jpg", "order": 3}, {"name": "Alexander Godunov", "character": "Karl", "id": 7674, "credit_id": "52fe4252c3a36847f801544b", "cast_id": 8, "profile_path": "/lZyg3u3i2OrJJMKGhHDglln5GUm.jpg", "order": 4}, {"name": "Paul Gleason", "character": "Deputy Police Chief Dwayne T. Robinson", "id": 7675, "credit_id": "52fe4252c3a36847f801544f", "cast_id": 9, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 5}, {"name": "William Atherton", "character": "Richard Thornburg", "id": 7676, "credit_id": "52fe4252c3a36847f8015453", "cast_id": 10, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 6}, {"name": "De'voreaux White", "character": "Argyle", "id": 7677, "credit_id": "52fe4252c3a36847f8015457", "cast_id": 11, "profile_path": "/1EG5K8vovv6Hp9XvUplPDlJFPNz.jpg", "order": 7}, {"name": "Hart Bochner", "character": "Harry Ellis", "id": 7678, "credit_id": "52fe4252c3a36847f801545b", "cast_id": 12, "profile_path": "/jZcZHV9cac6rf0Q7nWOPSapqAwc.jpg", "order": 8}, {"name": "Dennis Hayden", "character": "Eddie", "id": 7679, "credit_id": "52fe4252c3a36847f8015463", "cast_id": 14, "profile_path": "/at1krMDognbGU9g2NmDYPbmEiea.jpg", "order": 9}, {"name": "James Shigeta", "character": "Joseph Yoshinobu Takagi", "id": 4995, "credit_id": "52fe4252c3a36847f8015467", "cast_id": 15, "profile_path": "/rBqmvcdbuMU7NCOxqmfjSxZfDsh.jpg", "order": 10}, {"name": "Robert Davi", "character": "FBI Special Agent Johnson", "id": 2055, "credit_id": "52fe4253c3a36847f80154b9", "cast_id": 29, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 11}, {"name": "Bob Jennings", "character": "Cameraman", "id": 113506, "credit_id": "52fe4253c3a36847f80154bd", "cast_id": 30, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 12}, {"name": "Grand L. Bush", "character": "FBI Agent Little Johnson", "id": 14333, "credit_id": "52fe4253c3a36847f80154c1", "cast_id": 31, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 13}, {"name": "Mary Ellen Trainor", "character": "Gail Wallens", "id": 23967, "credit_id": "52fe4253c3a36847f80154c5", "cast_id": 32, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 14}, {"name": "Andreas Wisniewski", "character": "Tony", "id": 10673, "credit_id": "52fe4253c3a36847f80154c9", "cast_id": 33, "profile_path": "/uZwfBgn0GBfmfjbxA69GDXctN5W.jpg", "order": 15}, {"name": "Al Leong", "character": "Uli", "id": 61704, "credit_id": "52fe4253c3a36847f80154cd", "cast_id": 34, "profile_path": "/9f8m0g6BgdwfQfS6ewhDOrW4kzs.jpg", "order": 16}, {"name": "Clarence Gilyard Jr.", "character": "Theo", "id": 51581, "credit_id": "52fe4253c3a36847f80154d1", "cast_id": 36, "profile_path": "/nmDObJEti5drH4dheZw2Pz3QOsV.jpg", "order": 17}, {"name": "Lorenzo Caccialanza", "character": "Marco", "id": 1217001, "credit_id": "52fe4253c3a36847f80154d5", "cast_id": 37, "profile_path": "/8R2HOMyov4Ck7roKf05TvuUWbc3.jpg", "order": 18}, {"name": "Hans Buhringer", "character": "Fritz", "id": 1290983, "credit_id": "52fe4253c3a36847f80154d9", "cast_id": 39, "profile_path": "/r12yCpbNuF0gChVlWYmoeaiDY4N.jpg", "order": 19}, {"name": "Anthony Peck", "character": "Young Cop", "id": 141747, "credit_id": "52fe4253c3a36847f80154dd", "cast_id": 40, "profile_path": "/57e2de2WH5jFm6AJYNTSSjGymtS.jpg", "order": 20}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f8015429", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 7.0, "runtime": 131}, "563": {"poster_path": "/zeCD9WkhABFJmPq3SlTozXJGEtr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 121214377, "overview": "Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as \"the Bugs\".", "video": false, "id": 563, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Starship Troopers", "tagline": "The only good bug is a dead bug.", "vote_count": 413, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hwZXCuY6GVw50o17nDGbSR8WMFJ.jpg", "poster_path": "/cR5f2lzNwleNec2YHJsmN48jZDx.jpg", "id": 10522, "name": "Starship Troopers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120201", "adult": false, "backdrop_path": "/cYWI1lnHEvoVKDdlrRt2b5et3Bj.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "TriStar Pictures", "id": 559}, {"name": "Big Bug Pictures", "id": 23434}], "release_date": "1997-11-06", "popularity": 1.39951744829894, "original_title": "Starship Troopers", "budget": 105000000, "cast": [{"name": "Casper Van Dien", "character": "Johnny Rico", "id": 27763, "credit_id": "52fe4253c3a36847f80155a5", "cast_id": 21, "profile_path": "/ktJIgsilxxQeOvA9I789veHnDnt.jpg", "order": 0}, {"name": "Dina Meyer", "character": "Dizzy Flores", "id": 2133, "credit_id": "52fe4253c3a36847f80155a9", "cast_id": 22, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 1}, {"name": "Denise Richards", "character": "Carmen Ibanez", "id": 9205, "credit_id": "52fe4253c3a36847f80155ad", "cast_id": 23, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 2}, {"name": "Jake Busey", "character": "Private Ace Levy", "id": 28410, "credit_id": "52fe4253c3a36847f80155b1", "cast_id": 24, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 3}, {"name": "Neil Patrick Harris", "character": "Colonel Carl Jenkins", "id": 41686, "credit_id": "52fe4253c3a36847f80155b5", "cast_id": 25, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Career Sergeant Zim", "id": 6574, "credit_id": "52fe4253c3a36847f80155b9", "cast_id": 26, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Michael Ironside", "character": "Lieutenant Jean Rasczak", "id": 11086, "credit_id": "52fe4253c3a36847f80155bd", "cast_id": 27, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 6}, {"name": "Patrick Muldoon", "character": "Zander Barcalow", "id": 41687, "credit_id": "52fe4253c3a36847f80155c1", "cast_id": 28, "profile_path": "/bQXk6dGI2zjRY2rvfwmpdHpyh9F.jpg", "order": 7}, {"name": "Seth Gilliam", "character": "Private Sugar Watkins", "id": 41688, "credit_id": "52fe4253c3a36847f80155c5", "cast_id": 29, "profile_path": "/5XL7Nuzt58wXijlFbDJKDWYoLFQ.jpg", "order": 8}, {"name": "Rue McClanahan", "character": "Biology Teacher", "id": 41689, "credit_id": "52fe4253c3a36847f80155c9", "cast_id": 30, "profile_path": "/cCZk8LXWcYs1UD9wHGHOktxyy8t.jpg", "order": 9}, {"name": "Blake Lindsley", "character": "Katrina McIntire", "id": 41690, "credit_id": "52fe4253c3a36847f80155cd", "cast_id": 31, "profile_path": "/jW9esvFejQSyjyZZMqUg4xcbsww.jpg", "order": 10}, {"name": "Steven Ford", "character": "Lieutenant Willy", "id": 9258, "credit_id": "52fe4253c3a36847f80155d1", "cast_id": 32, "profile_path": "/iw8CUyekmYkGwmg0bp7foY4KvrH.jpg", "order": 11}, {"name": "Ungela Brockman", "character": "Corporal Birdie", "id": 41691, "credit_id": "52fe4253c3a36847f80155d5", "cast_id": 33, "profile_path": "/q66RPSSUYmtgbLNvkdKdeqAbOwc.jpg", "order": 12}, {"name": "Bruce Gray", "character": "Sky Marshal Dienes", "id": 5945, "credit_id": "52fe4253c3a36847f80155d9", "cast_id": 34, "profile_path": "/z0uEl3in5hsCD4TYTBqCtmqCdwo.jpg", "order": 13}, {"name": "Denise Dowse", "character": "Sky Marshal Tehat Meru", "id": 23970, "credit_id": "52fe4253c3a36847f80155dd", "cast_id": 35, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 14}, {"name": "Amy Smart", "character": "Cadet Lumbreiser", "id": 20189, "credit_id": "52fe4253c3a36847f80155e1", "cast_id": 36, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 15}, {"name": "Tami-Adrian George", "character": "Djana'D", "id": 153940, "credit_id": "52fe4253c3a36847f80155e5", "cast_id": 37, "profile_path": "/qR7qZTZOo9czpb1lrOirKOS6M9V.jpg", "order": 16}, {"name": "Julianna McCarthy", "character": "Expert", "id": 101777, "credit_id": "54c91305c3a36870ba00218f", "cast_id": 39, "profile_path": "/tJJJJUjXRlTgLxVZViQ2MPPs5ai.jpg", "order": 17}, {"name": "Dale Dye", "character": "General", "id": 3211, "credit_id": "54c9135d92514157cc0023a2", "cast_id": 40, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 18}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f801552f", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.5, "runtime": 129}, "564": {"poster_path": "/cftmDzVCWKynKMfY9oyFj7igFqJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415885488, "overview": "Dashing legionnaire Rick O'Connell and Beni, his weasel of a companion, stumble upon the hidden ruins of Hamunaptra while in the midst of a battle in 1923, 3,000 years after Imhotep has suffered a fate worse than death; his body will remain undead for all eternity as a punishment for a forbidden love.", "video": false, "id": 564, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Mummy", "tagline": "The legend you know. The adventure you have yet to imagine.", "vote_count": 946, "homepage": "http://www.mummyvideo.com/", "belongs_to_collection": {"backdrop_path": "/3nNvwRGWurR5O3a8k3U13hiqs6y.jpg", "poster_path": "/jKVaPlvPfsmekiOaFqCKuGwle5M.jpg", "id": 1733, "name": "The Mummy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0120616", "adult": false, "backdrop_path": "/7rz4sMD7Ku0E4KIqYezxoiSzTMj.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alphaville Films", "id": 11462}], "release_date": "1999-05-06", "popularity": 1.57715798214967, "original_title": "The Mummy", "budget": 80000000, "cast": [{"name": "Brendan Fraser", "character": "Richard O'Connell", "id": 18269, "credit_id": "52fe4253c3a36847f80156a9", "cast_id": 19, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Evelyn Carnahan", "id": 3293, "credit_id": "52fe4253c3a36847f80156ad", "cast_id": 20, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "John Hannah", "character": "Jonathan Carnahan", "id": 10727, "credit_id": "52fe4253c3a36847f80156b1", "cast_id": 21, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 2}, {"name": "Arnold Vosloo", "character": "High Priest Imhotep", "id": 16743, "credit_id": "52fe4253c3a36847f80156b5", "cast_id": 22, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 3}, {"name": "Kevin J. O'Connor", "character": "Beni Gabor", "id": 18916, "credit_id": "52fe4253c3a36847f80156b9", "cast_id": 23, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 4}, {"name": "Oded Fehr", "character": "Ardeth Bay", "id": 18041, "credit_id": "52fe4253c3a36847f80156bd", "cast_id": 24, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 5}, {"name": "Jonathan Hyde", "character": "Dr. Allen Chamberlain", "id": 8537, "credit_id": "52fe4253c3a36847f80156c1", "cast_id": 25, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 6}, {"name": "Erick Avari", "character": "Dr. Terrence Bey", "id": 18917, "credit_id": "52fe4253c3a36847f80156c5", "cast_id": 26, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 7}, {"name": "Bernard Fox", "character": "Captain Winston Havlock", "id": 8545, "credit_id": "52fe4253c3a36847f80156c9", "cast_id": 27, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 8}, {"name": "Patricia Vel\u00e1squez", "character": "Anck-Su Namun", "id": 18920, "credit_id": "52fe4253c3a36847f80156cd", "cast_id": 28, "profile_path": "/dRD0tYxrtxPZ11mJCN0O3nLd1Mx.jpg", "order": 9}, {"name": "Stephen Dunham", "character": "Mr. Henderson", "id": 36803, "credit_id": "52fe4253c3a36847f80156d7", "cast_id": 30, "profile_path": "/6xzvLVJLXKgT7oaGoB448WNml9G.jpg", "order": 10}, {"name": "Corey Johnson", "character": "Mr. Daniels", "id": 17199, "credit_id": "52fe4253c3a36847f80156db", "cast_id": 31, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 11}, {"name": "Tuc Watkins", "character": "Mr. Burns", "id": 157942, "credit_id": "52fe4253c3a36847f80156df", "cast_id": 32, "profile_path": "/Av09pU4RA6hpDd0qyLUf6x45xTm.jpg", "order": 12}, {"name": "Omid Djalili", "character": "Warden Gad Hassan", "id": 41379, "credit_id": "52fe4253c3a36847f80156e3", "cast_id": 33, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 13}, {"name": "Aharon Ipal\u00e9", "character": "Pharaoh Seti I", "id": 25808, "credit_id": "52fe4253c3a36847f80156e7", "cast_id": 34, "profile_path": "/9Qb7EXmGOAntmK0hMocOvT57Txi.jpg", "order": 14}, {"name": "Carl Chase", "character": "Hook", "id": 127166, "credit_id": "52fe4253c3a36847f80156eb", "cast_id": 35, "profile_path": "/3HLdJB6ZQNi3DK4Ix9FXZ0a67K8.jpg", "order": 15}, {"name": "Mohammed Afifi", "character": "Hangman", "id": 947663, "credit_id": "52fe4253c3a36847f80156ef", "cast_id": 36, "profile_path": "/4sXZav94nT81KUjISX6tyokKmR6.jpg", "order": 16}, {"name": "Abderrahim El Aadili", "character": "Camel Trader", "id": 1077867, "credit_id": "52fe4253c3a36847f80156f3", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Jake Arnott", "character": "Mummy", "id": 1077868, "credit_id": "52fe4253c3a36847f80156f7", "cast_id": 38, "profile_path": "/qQ7AxYOWwGu4iWD7E1vgoDuIXbJ.jpg", "order": 18}, {"name": "Mason Ball", "character": "Mummy", "id": 947511, "credit_id": "52fe4253c3a36847f80156fb", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Isobel Brook", "character": "Mummy", "id": 1077869, "credit_id": "52fe4253c3a36847f80156ff", "cast_id": 40, "profile_path": "/2wreHWDHg9EZyL6QcqSeXpvIkrE.jpg", "order": 20}, {"name": "James Traherne Burton", "character": "Mummy", "id": 1077870, "credit_id": "52fe4253c3a36847f8015703", "cast_id": 41, "profile_path": "/6bAGK8slzTHSip8xYcdS6TkH5vb.jpg", "order": 21}, {"name": "Peter Chequer", "character": "Mummy", "id": 1077871, "credit_id": "52fe4253c3a36847f8015707", "cast_id": 42, "profile_path": "/10pL0nR0ncjwdeJpN5U1XxVuucu.jpg", "order": 22}, {"name": "Porl Smith", "character": "Mummy", "id": 1077872, "credit_id": "52fe4253c3a36847f801570b", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Ian Warner", "character": "Mummy", "id": 1077873, "credit_id": "52fe4253c3a36847f801570f", "cast_id": 44, "profile_path": null, "order": 24}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f8015645", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 6.1, "runtime": 124}, "565": {"poster_path": "/zMVpi0ohdlZw6st07SAbHYu7b9W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 249348933, "overview": "It sounded like just another urban legend: A videotape filled with nightmarish images, leading to a phone call foretelling the viewer's death in exactly seven days. As a newspaper reporter, Rachel Keller was naturally skeptical of the story, until four teenagers all met with mysterious deaths exactly one week after watching just such a tape. Allowing her investigative curiosity to get the better of her, Rachel tracks down the video... and watches it. Now she has just seven days to unravel the mystery of the Ring.", "video": false, "id": 565, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Ring", "tagline": "Before you die, you see.", "vote_count": 306, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/xk4Yrpz00gxitMLCLCUVOjvmkOq.jpg", "id": 14563, "name": "The Ring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298130", "adult": false, "backdrop_path": "/gRQucG6XnNgSQn863V5ho50J3hx.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "MacDonald/Parkes Productions", "id": 384}, {"name": "BenderSpink", "id": 6363}], "release_date": "2002-10-18", "popularity": 0.794185415656657, "original_title": "The Ring", "budget": 45000000, "cast": [{"name": "Naomi Watts", "character": "Rachel Keller", "id": 3489, "credit_id": "52fe4253c3a36847f801577f", "cast_id": 10, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Martin Henderson", "character": "Noah Clay", "id": 26291, "credit_id": "52fe4253c3a36847f8015783", "cast_id": 11, "profile_path": "/tWuEwdM7TnM9KenYbRKLSFbo3zx.jpg", "order": 1}, {"name": "David Dorfman", "character": "Aidan Keller", "id": 26292, "credit_id": "52fe4253c3a36847f8015787", "cast_id": 12, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 2}, {"name": "Brian Cox", "character": "Richard Morgan", "id": 1248, "credit_id": "52fe4253c3a36847f801578b", "cast_id": 13, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Shannon Cochran", "character": "Anna Morgan", "id": 2525, "credit_id": "52fe4253c3a36847f801578f", "cast_id": 14, "profile_path": "/x74NDVVXVPxNH5018UyIOEwhLgd.jpg", "order": 4}, {"name": "Daveigh Chase", "character": "Samara Morgan", "id": 1580, "credit_id": "52fe4253c3a36847f8015793", "cast_id": 15, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 5}, {"name": "Rachael Bella", "character": "Rebecca Kotler", "id": 26293, "credit_id": "52fe4253c3a36847f8015797", "cast_id": 16, "profile_path": "/huoBCMuoxr3Ha31Ch53csvK5iN2.jpg", "order": 6}, {"name": "Jane Alexander", "character": "Dr. Grasnik", "id": 13724, "credit_id": "52fe4253c3a36847f801579b", "cast_id": 17, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 7}, {"name": "Lindsay Frost", "character": "Ruth Embry", "id": 26294, "credit_id": "52fe4253c3a36847f801579f", "cast_id": 18, "profile_path": "/2TOoIVvS74g05wgj9MzgzLMtJOU.jpg", "order": 8}, {"name": "Amber Tamblyn", "character": "Katie Embry", "id": 20354, "credit_id": "52fe4253c3a36847f80157a3", "cast_id": 19, "profile_path": "/4nwsbtFzoxzN2YF2HOW4P4vdit2.jpg", "order": 9}, {"name": "Sandra Thigpen", "character": "Teacher", "id": 26295, "credit_id": "52fe4253c3a36847f80157a7", "cast_id": 20, "profile_path": "/9d3fCsokFR2emalElHYxTaUk27Y.jpg", "order": 10}, {"name": "Richard Lineback", "character": "Innkeeper", "id": 3205, "credit_id": "52fe4253c3a36847f80157ab", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Sara Rue", "character": "Babysitter", "id": 10131, "credit_id": "52fe4253c3a36847f80157af", "cast_id": 22, "profile_path": "/1OlEg9M8oSsGivjyFJJFyCkKqkk.jpg", "order": 12}, {"name": "Adam Brody", "character": "Male Teen #1", "id": 11702, "credit_id": "52fe4253c3a36847f80157b3", "cast_id": 23, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 13}, {"name": "Keith Campbell", "character": "Ship's Mate", "id": 15318, "credit_id": "53b9567cc3a3685eb400557f", "cast_id": 26, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 14}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f801574b", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.3, "runtime": 115}, "567": {"poster_path": "/6EDhk01fESTcdfRAvIHct4jfWk5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26105286, "overview": "Professional photographer L.B. \"Jeff\" Jeffries breaks his leg while getting an action shot at an auto race. Confined to his New York apartment, he spends his time looking out of the rear window observing the neighbors. He begins to suspect that a man across the courtyard may have murdered his wife. Jeff enlists the help of his high society fashion-consultant girlfriend Lisa Freemont and his visiting nurse Stella to investigate.", "video": false, "id": 567, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Rear Window", "tagline": "It only takes one witness to spoil the perfect crime.", "vote_count": 399, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0047396", "adult": false, "backdrop_path": "/mLhoF9Xgv8lC9YQzAkKuTQL29mt.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1954-08-04", "popularity": 1.67158368999091, "original_title": "Rear Window", "budget": 1000000, "cast": [{"name": "James Stewart", "character": "L. B. Jefferies", "id": 854, "credit_id": "52fe4253c3a36847f8015805", "cast_id": 3, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Lisa Carol Fremont", "id": 4070, "credit_id": "52fe4253c3a36847f8015801", "cast_id": 2, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Wendell Corey", "character": "Det. Lt. Thomas J. Doyle", "id": 7683, "credit_id": "52fe4253c3a36847f8015809", "cast_id": 4, "profile_path": "/uQ7NEKJjC6Wj00V2CoYMbCvRcSn.jpg", "order": 2}, {"name": "Thelma Ritter", "character": "Stella", "id": 7684, "credit_id": "52fe4253c3a36847f801580d", "cast_id": 5, "profile_path": "/8BUegatD1XFW0MLyOzuVpNr4P2b.jpg", "order": 3}, {"name": "Raymond Burr", "character": "Lars Thorwald", "id": 7685, "credit_id": "52fe4253c3a36847f8015811", "cast_id": 6, "profile_path": "/mHdPfgQRXvM2bz1dpSonzGpTKLu.jpg", "order": 4}, {"name": "Judith Evelyn", "character": "Miss Lonelyheart", "id": 7686, "credit_id": "52fe4253c3a36847f8015815", "cast_id": 7, "profile_path": "/vAVwSrgAhUKUNSjJiMOnA0RjMxu.jpg", "order": 5}, {"name": "Ross Bagdasarian, Sr.", "character": "Songwriter", "id": 49906, "credit_id": "52fe4253c3a36847f801586d", "cast_id": 23, "profile_path": "/qAkfHf4i1eyk6GZ4YQxbCPW6NPE.jpg", "order": 6}, {"name": "Georgine Darcy", "character": "Miss Torso", "id": 161738, "credit_id": "52fe4253c3a36847f8015871", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Sara Berner", "character": "Woman on Fire Escape", "id": 121038, "credit_id": "52fe4253c3a36847f8015875", "cast_id": 25, "profile_path": "/s28Dra8EbemuoILdvm04r223fzg.jpg", "order": 8}, {"name": "Frank Cady", "character": "Man on Fire Escape", "id": 93622, "credit_id": "52fe4253c3a36847f8015879", "cast_id": 26, "profile_path": "/lBmD8i4eCtIDon40go730e6xQcF.jpg", "order": 9}, {"name": "Jesslyn Fax", "character": "Miss Hearing Aid", "id": 85846, "credit_id": "52fe4253c3a36847f801587d", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Rand Harper", "character": "Newlywed", "id": 184636, "credit_id": "52fe4253c3a36847f8015881", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Irene Winston", "character": "Mrs. Emma Thorwald", "id": 130373, "credit_id": "52fe4253c3a36847f8015885", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Havis Davenport", "character": "Newlywed", "id": 176534, "credit_id": "52fe4253c3a36847f8015889", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Bess Flowers", "character": "Songwriter's Party Guest with Poodle (uncredited)", "id": 121323, "credit_id": "52fe4253c3a36847f8015893", "cast_id": 32, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 14}, {"name": "Kathryn Grant", "character": "Girl at Songwriter's Party (uncredited)", "id": 861, "credit_id": "52fe4253c3a36847f8015897", "cast_id": 33, "profile_path": "/lJXrVvijSSeXwZXS6f01vGqcXaO.jpg", "order": 15}, {"name": "Alfred Hitchcock", "character": "Clock-Winder in Songwriter's Apartment (uncredited)", "id": 2636, "credit_id": "52fe4253c3a36847f801589b", "cast_id": 34, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 16}, {"name": "Anthony Warde", "character": "Detective (uncredited)", "id": 33777, "credit_id": "531e763c9251417a4a0013f2", "cast_id": 35, "profile_path": "/qhMPMAPCujd6wstyDhTj2UN6ZPh.jpg", "order": 17}, {"name": "Gig Young", "character": "Jeff's Editor (voice) (uncredited)", "id": 70985, "credit_id": "531e765392514177c2007e09", "cast_id": 36, "profile_path": "/yIY38f58095uVpdfoJpbfwQp3gT.jpg", "order": 18}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f80157fd", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.6, "runtime": 112}, "568": {"poster_path": "/6JQ9z3V9x4vlU2GSZx2yNO0PvuX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 355237933, "overview": "Technical troubles scuttle the Apollo 13 lunar mission in 1971, risking the lives of astronaut Jim Lovell and his crew in director Ron Howard's chronicle of this true-life story, which turns a failed journey into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.", "video": false, "id": 568, "genres": [{"id": 18, "name": "Drama"}], "title": "Apollo 13", "tagline": "Houston, we have a problem.", "vote_count": 493, "homepage": "http://www.universalstudiosentertainment.com/apollo-13/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112384", "adult": false, "backdrop_path": "/dvpU3CJxKCfr1XBOzeMcztgDyO3.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}], "release_date": "1995-06-30", "popularity": 1.40126066343209, "original_title": "Apollo 13", "budget": 52000000, "cast": [{"name": "Tom Hanks", "character": "Jim Lovell", "id": 31, "credit_id": "52fe4253c3a36847f801595d", "cast_id": 19, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Fred Haise", "id": 2053, "credit_id": "52fe4253c3a36847f8015973", "cast_id": 23, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Jack Swigert", "id": 4724, "credit_id": "52fe4253c3a36847f8015977", "cast_id": 24, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Gary Sinise", "character": "Ken Mattingly", "id": 33, "credit_id": "52fe4253c3a36847f801597b", "cast_id": 25, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 3}, {"name": "Ed Harris", "character": "Gene Kranz", "id": 228, "credit_id": "52fe4253c3a36847f801597f", "cast_id": 26, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 4}, {"name": "Kathleen Quinlan", "character": "Marilyn Lovell", "id": 8183, "credit_id": "52fe4253c3a36847f8015989", "cast_id": 28, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 5}, {"name": "Mary Kate Schellhardt", "character": "Barbara Lovell", "id": 8184, "credit_id": "52fe4253c3a36847f801598d", "cast_id": 29, "profile_path": "/nN54NVsxm5M6yhdQlSECm2y5vxK.jpg", "order": 6}, {"name": "Emily Ann Lloyd", "character": "Susan Lovell", "id": 8185, "credit_id": "52fe4253c3a36847f8015991", "cast_id": 30, "profile_path": "/sVCzK014On8aaQNZsRl6vDgbaII.jpg", "order": 7}, {"name": "Miko Hughes", "character": "Jeffrey Lovell", "id": 8186, "credit_id": "52fe4253c3a36847f8015995", "cast_id": 31, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 8}, {"name": "Max Elliott Slade", "character": "Jay Lovell", "id": 8187, "credit_id": "52fe4253c3a36847f8015999", "cast_id": 32, "profile_path": "/g06RM2IWsiw6rvKA6SNsceFsHu5.jpg", "order": 9}, {"name": "Jean Speegle Howard", "character": "Blanch Lovell", "id": 8188, "credit_id": "52fe4254c3a36847f801599d", "cast_id": 33, "profile_path": "/6GxAKydN0p77XI0ixTAJeWFPiRR.jpg", "order": 10}, {"name": "Tracy Reiner", "character": "Mary Haise", "id": 8189, "credit_id": "52fe4254c3a36847f80159a1", "cast_id": 34, "profile_path": "/fsmETZI9aoKZD1CvYlcaTsstuZ9.jpg", "order": 11}, {"name": "David Andrews", "character": "Pete Conrad", "id": 7219, "credit_id": "52fe4254c3a36847f80159a5", "cast_id": 35, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 12}, {"name": "Michele Little", "character": "Jane Conrad", "id": 8190, "credit_id": "52fe4254c3a36847f80159a9", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Chris Ellis", "character": "Deke Slayton", "id": 8191, "credit_id": "52fe4254c3a36847f80159ad", "cast_id": 37, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 14}, {"name": "Joe Spano", "character": "NASA Director", "id": 8192, "credit_id": "52fe4254c3a36847f80159b1", "cast_id": 38, "profile_path": "/ApY9rdhS1Qrvd0byprtlMxMAQ1q.jpg", "order": 15}, {"name": "Xander Berkeley", "character": "Henry Hurt", "id": 3982, "credit_id": "52fe4254c3a36847f80159b5", "cast_id": 39, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 16}, {"name": "Roger Corman", "character": "Congressman", "id": 102429, "credit_id": "52fe4254c3a36847f80159b9", "cast_id": 40, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 17}, {"name": "Andrew Lipschultz", "character": "Launch Director", "id": 1400384, "credit_id": "54916b4f925141473700149c", "cast_id": 73, "profile_path": null, "order": 18}, {"name": "Mark Wheeler", "character": "Neil Armstrong", "id": 152718, "credit_id": "54916b7d925141473b001474", "cast_id": 74, "profile_path": "/5Sx48iaEVE5G4OktUcZ1sJHePeE.jpg", "order": 19}, {"name": "Endre Hules", "character": "Guenter Wendt", "id": 43461, "credit_id": "54916baec3a368465e001448", "cast_id": 75, "profile_path": "/cmxqIcfikG6rr5ag45ZkhYMP51Z.jpg", "order": 20}, {"name": "Clint Howard", "character": "Sy Liebergot - EECOM White", "id": 15661, "credit_id": "552b0c7cc3a36858d600466b", "cast_id": 76, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 21}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f80158f3", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.8, "runtime": 140}, "571": {"poster_path": "/idm9MYIyZHcjdPsaGfiqE9z2Z99.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11403529, "overview": "Chic socialite Melanie Daniels enjoys a passing flirtation with an eligible attorney in a San Francisco pet shop and, on an impulse, follows him to his hometown bearing a gift of lovebirds. But upon her arrival, the bird population runs amok. Suddenly, the townsfolk face a massive avian onslaught, with the feathered fiends inexplicably attacking people all over Bodega Bay.", "video": false, "id": 571, "genres": [{"id": 27, "name": "Horror"}], "title": "The Birds", "tagline": "...and remember, the next scream you hear may be your own!", "vote_count": 170, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056869", "adult": false, "backdrop_path": "/oHrTL0iTwLJMKbx2T3R5L5DPSyz.jpg", "production_companies": [{"name": "Alfred J. Hitchcock Productions", "id": 10715}], "release_date": "1963-03-28", "popularity": 0.816887560168427, "original_title": "The Birds", "budget": 2500000, "cast": [{"name": "Rod Taylor", "character": "Mitch Brenner", "id": 8229, "credit_id": "52fe4254c3a36847f8015a63", "cast_id": 1, "profile_path": "/nCSU0Teu87l0Hep7CVTWbyHqPAX.jpg", "order": 0}, {"name": "Tippi Hedren", "character": "Melanie Daniels", "id": 6929, "credit_id": "52fe4254c3a36847f8015a67", "cast_id": 2, "profile_path": "/5piyjLaNRESJZ2Q8comMEjXqZBW.jpg", "order": 1}, {"name": "Suzanne Pleshette", "character": "Annie Hayworth", "id": 8231, "credit_id": "52fe4254c3a36847f8015a6b", "cast_id": 3, "profile_path": "/9KdhSa4QpLQgD1cwXmjoz60bgHo.jpg", "order": 2}, {"name": "Veronica Cartwright", "character": "Cathy Brenner", "id": 5047, "credit_id": "52fe4254c3a36847f8015a6f", "cast_id": 4, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 3}, {"name": "Ethel Griffies", "character": "Mrs. Bundy", "id": 8232, "credit_id": "52fe4254c3a36847f8015a73", "cast_id": 5, "profile_path": "/m3pXmGCIlccqKUi9ERM1aiBNhTw.jpg", "order": 4}, {"name": "Charles McGraw", "character": "Sebastian Sholes", "id": 8233, "credit_id": "52fe4254c3a36847f8015a77", "cast_id": 6, "profile_path": "/m6jBxQ3ZnePMBtCEy3eTu168kg3.jpg", "order": 5}, {"name": "Jessica Tandy", "character": "Lydia Brenner", "id": 5698, "credit_id": "52fe4254c3a36847f8015abd", "cast_id": 20, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 6}, {"name": "Doreen Lang", "character": "Hysterical Mother in Diner", "id": 2745, "credit_id": "52fe4254c3a36847f8015ac1", "cast_id": 21, "profile_path": "/1t2LDiPbR4FHdEoCRgQnqDmV1Jv.jpg", "order": 7}, {"name": "Ruth McDevitt", "character": "Mrs. MacGruder", "id": 85833, "credit_id": "52fe4254c3a36847f8015ac5", "cast_id": 22, "profile_path": "/uVyrE8fO7k9ub2zCqpm6Sbk56N3.jpg", "order": 8}, {"name": "Joe Mantell", "character": "Traveling salesman in diner", "id": 78937, "credit_id": "52fe4254c3a36847f8015acf", "cast_id": 24, "profile_path": "/5yDIgBi2dYc7PdTcAcmSLeSg4t1.jpg", "order": 9}, {"name": "Karl Swenson", "character": "Drunken doomsayer in diner", "id": 12158, "credit_id": "52fe4254c3a36847f8015ad3", "cast_id": 25, "profile_path": "/yyeaz3ruAZbyPWame4CZW49GSHe.jpg", "order": 10}, {"name": "Elizabeth Wilson", "character": "Waitress in diner", "id": 10776, "credit_id": "52fe4254c3a36847f8015ad7", "cast_id": 26, "profile_path": "/tXmYFqRiQjuiXgnzBpdzRexROAd.jpg", "order": 11}, {"name": "Richard Deacon", "character": "Man in hotel corridor", "id": 80206, "credit_id": "52fe4254c3a36847f8015adb", "cast_id": 27, "profile_path": "/yLGNyJqX3JuaUHcJ7O1rJi2C1hJ.jpg", "order": 12}, {"name": "Malcolm Atterbury", "character": "Deputy Al Malone", "id": 115460, "credit_id": "52fe4254c3a36847f8015adf", "cast_id": 28, "profile_path": "/A5bi0v9WuSt1Y6KyUnHvq6XKNHk.jpg", "order": 13}, {"name": "Lonny Chapman", "character": "Diner owner", "id": 95598, "credit_id": "52fe4254c3a36847f8015ae3", "cast_id": 29, "profile_path": "/pEhqjNb17zbPavYrY49gVhOis4E.jpg", "order": 14}, {"name": "Doodles Weaver", "character": "Fisherman Helping with Rental Boat", "id": 89735, "credit_id": "52fe4254c3a36847f8015ae7", "cast_id": 30, "profile_path": "/vjH6hkLtRzT43jLn7mekXBBoqgQ.jpg", "order": 15}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4254c3a36847f8015a89", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 6.9, "runtime": 119}, "8764": {"poster_path": "/y8KpysyZkuezkuQlO4XZILgUrON.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20458340, "overview": "Parody of WWII spy movies in which an American rock and roll singer becomes involved in a Resistance plot to rescue a scientist imprisoned in East Germany.", "video": false, "id": 8764, "genres": [{"id": 35, "name": "Comedy"}], "title": "Top Secret!", "tagline": "Don't tell anyone.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "yi", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0088286", "adult": false, "backdrop_path": "/ri1pEbtwOBYFxT1UXb30z47LVwe.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1984-06-08", "popularity": 0.1877332683849, "original_title": "Top Secret!", "budget": 9000000, "cast": [{"name": "Val Kilmer", "character": "Nick Rivers", "id": 5576, "credit_id": "52fe44b7c3a36847f80a61b7", "cast_id": 12, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Lucy Gutteridge", "character": "Hillary Flammond", "id": 55907, "credit_id": "52fe44b7c3a36847f80a61bb", "cast_id": 13, "profile_path": null, "order": 1}, {"name": "Peter Cushing", "character": "Buchh\u00e4ndler", "id": 5, "credit_id": "52fe44b7c3a36847f80a61bf", "cast_id": 14, "profile_path": "/iFE9Xi5B0eZcNFqvCx78UUzmUfI.jpg", "order": 2}, {"name": "Jeremy Kemp", "character": "General Streck", "id": 55037, "credit_id": "52fe44b7c3a36847f80a61c3", "cast_id": 15, "profile_path": "/xwayYkSd6Ld0fVioBWfRJ4BpgR6.jpg", "order": 3}, {"name": "Christopher Villiers", "character": "Rebellenf\u00fchrer", "id": 34720, "credit_id": "52fe44b7c3a36847f80a61c7", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Warren Clarke", "character": "Colonel von Horst", "id": 2268, "credit_id": "52fe44b7c3a36847f80a61cb", "cast_id": 17, "profile_path": "/baucXNIzHXSMxIZfsKzr8P0xiXI.jpg", "order": 5}, {"name": "Harry Ditson", "character": "Du Quois", "id": 55908, "credit_id": "52fe44b7c3a36847f80a61cf", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Jim Carter", "character": "D\u00e9j\u00e0 Vu", "id": 20070, "credit_id": "52fe44b7c3a36847f80a61d3", "cast_id": 19, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 7}, {"name": "Eddie Tagoe", "character": "Chocolate Mousse", "id": 55909, "credit_id": "52fe44b7c3a36847f80a61d7", "cast_id": 20, "profile_path": "/1J9ujNEgWVupIxTJ8NouIRbblvn.jpg", "order": 8}, {"name": "Omar Sharif", "character": "Agent Cedric", "id": 5004, "credit_id": "52fe44b7c3a36847f80a61db", "cast_id": 21, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 9}, {"name": "Tristram Jellinek", "character": "Major Crumpler", "id": 55910, "credit_id": "52fe44b7c3a36847f80a61df", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Billy J. Mitchell", "character": "Martin, Nicks Manager", "id": 55911, "credit_id": "52fe44b7c3a36847f80a61e3", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Ian McNeice", "character": "Blinder Andenkenverk\u00e4ufer", "id": 3547, "credit_id": "52fe44b7c3a36847f80a61e7", "cast_id": 24, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 12}, {"name": "Michael Gough", "character": "Dr. Paul Flammond", "id": 3796, "credit_id": "5487771c9251416b910001bb", "cast_id": 28, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 13}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe44b7c3a36847f80a6177", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}, {"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe44b7c3a36847f80a617d", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}, {"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe44b7c3a36847f80a6183", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 7.3, "runtime": 90}, "575": {"poster_path": "/qyUiWvJlbVfA9u4186zZAVpDHJc.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Das Experiment is a shocking psycho thriller about the potential for brutality that humans hide. Even more shocking is the fact that it\u2019s based on an actual occurrence\u2014a 1971 psychological experiment at Stanford University that was aborted prematurely when the experimenters lost control.", "video": false, "id": 575, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Experiment", "tagline": "", "vote_count": 55, "homepage": "http://www.dasexperiment.de/intro/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0250258", "adult": false, "backdrop_path": "/6BY6nJWJfdERV9ht2OAh9rtiyhp.jpg", "production_companies": [{"name": "Senator Film Produktion", "id": 191}, {"name": "FilmFernsehFonds Bayern", "id": 268}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 315}, {"name": "Typhoon Film", "id": 329}, {"name": "Fanes Film", "id": 330}, {"name": "SevenPictures", "id": 331}, {"name": "Filmf\u00f6rderungsanstalt BKM", "id": 332}], "release_date": "2001-03-07", "popularity": 0.60399147148275, "original_title": "Das Experiment", "budget": 0, "cast": [{"name": "Moritz Bleibtreu", "character": "Tarek Fahd, H\u00e4ftling Nr. 77", "id": 677, "credit_id": "52fe4254c3a36847f8015d57", "cast_id": 1, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 0}, {"name": "Christian Berkel", "character": "Steinhoff, H\u00e4ftling Nr. 38", "id": 7803, "credit_id": "52fe4254c3a36847f8015d5b", "cast_id": 2, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 1}, {"name": "Oliver Stokowski", "character": "Sch\u00fctte, H\u00e4ftling Nr. 82", "id": 7804, "credit_id": "52fe4254c3a36847f8015d5f", "cast_id": 3, "profile_path": "/lsw8F9zJSr1kfCaiIdQBKabUPI6.jpg", "order": 2}, {"name": "Wotan Wilke M\u00f6hring", "character": "Joe, H\u00e4ftling Nr. 69", "id": 7805, "credit_id": "52fe4254c3a36847f8015d63", "cast_id": 4, "profile_path": "/xHqMmUZ2b4RgRfsdIvcVcQUMl7V.jpg", "order": 3}, {"name": "Stephan Szasz", "character": "H\u00e4ftling Nr. 53", "id": 7806, "credit_id": "52fe4254c3a36847f8015d67", "cast_id": 5, "profile_path": "/lc5ztjXkalmv0mFd1YykHbAA4XC.jpg", "order": 4}, {"name": "Polat Dal", "character": "H\u00e4ftling Nr. 40", "id": 7807, "credit_id": "52fe4254c3a36847f8015d6b", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Danny Richter", "character": "H\u00e4ftling Nr. 21", "id": 7808, "credit_id": "52fe4254c3a36847f8015d6f", "cast_id": 7, "profile_path": "/cejGuiWUcV3WZqQ5pasZZOtMB8.jpg", "order": 6}, {"name": "Ralf M\u00fcller", "character": "H\u00e4ftling Nr. 15", "id": 7809, "credit_id": "52fe4254c3a36847f8015d73", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Markus Rudolf", "character": "H\u00e4ftling Nr. 74", "id": 7810, "credit_id": "52fe4254c3a36847f8015d77", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Peter Fieseler", "character": "H\u00e4ftling Nr. 11", "id": 7811, "credit_id": "52fe4254c3a36847f8015d7b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Thorsten Dersch", "character": "H\u00e4ftling Nr. 86", "id": 7812, "credit_id": "52fe4254c3a36847f8015d7f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Sven Grefer", "character": "H\u00e4ftling Nr. 94", "id": 7813, "credit_id": "52fe4254c3a36847f8015d83", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Justus von Dohn\u00e1nyi", "character": "Berus", "id": 5646, "credit_id": "52fe4254c3a36847f8015d87", "cast_id": 13, "profile_path": "/llyjSaezSTFUuUb17LcPkvMSi4M.jpg", "order": 12}, {"name": "Nicki von Tempelhoff", "character": "Kamps", "id": 7815, "credit_id": "52fe4254c3a36847f8015d8b", "cast_id": 14, "profile_path": "/yL55kjtF6CLXUIAiNe2m6VJFcFQ.jpg", "order": 13}, {"name": "Timo Dierkes", "character": "Eckert", "id": 7816, "credit_id": "52fe4254c3a36847f8015d8f", "cast_id": 15, "profile_path": "/pU2nuvme5AGFtLQuYZ0kUyqQHEo.jpg", "order": 14}, {"name": "Antoine Monot Jr.", "character": "Bosch", "id": 7817, "credit_id": "52fe4254c3a36847f8015d93", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Lars G\u00e4rtner", "character": "Renzel", "id": 7818, "credit_id": "52fe4254c3a36847f8015d97", "cast_id": 17, "profile_path": "/9MzY5sGMePTCHSkVCqT74ocyVHx.jpg", "order": 16}, {"name": "Jacek Klimontko", "character": "Gl\u00e4ser", "id": 7819, "credit_id": "52fe4254c3a36847f8015d9b", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Markus Klauk", "character": "Stock", "id": 7820, "credit_id": "52fe4254c3a36847f8015d9f", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Ralph P\u00fcttmann", "character": "Amandy", "id": 7821, "credit_id": "52fe4254c3a36847f8015da3", "cast_id": 20, "profile_path": "/pNBqJBYrmVlxCqFXXu3VrezZ3ly.jpg", "order": 19}, {"name": "Edgar Selge", "character": "Prof. Dr. Klaus Thon", "id": 7822, "credit_id": "52fe4254c3a36847f8015da7", "cast_id": 21, "profile_path": "/wGpd1SrAZ8i9pATAv3xBnr2LWS2.jpg", "order": 20}, {"name": "Andrea Sawatzki", "character": "Dr. Jutta Grimm", "id": 7823, "credit_id": "52fe4254c3a36847f8015dab", "cast_id": 22, "profile_path": "/wvZ4Ip7b7eqEi2CcYERDTrluMBG.jpg", "order": 21}, {"name": "Philipp Hochmair", "character": "Lars", "id": 7824, "credit_id": "52fe4254c3a36847f8015daf", "cast_id": 23, "profile_path": "/bL9c8hI51Du5vKbYXynxQ46HctH.jpg", "order": 22}, {"name": "Tristan Vostry", "character": "Assistent", "id": 7826, "credit_id": "52fe4254c3a36847f8015db3", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Maren Eggert", "character": "Dora", "id": 7827, "credit_id": "52fe4254c3a36847f8015db7", "cast_id": 25, "profile_path": "/p2WLHe1WGshNxtlAS9LPE1gwbyl.jpg", "order": 24}, {"name": "Andr\u00e9 Jung", "character": "Ziegler", "id": 7828, "credit_id": "52fe4254c3a36847f8015dbb", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Uwe Rohde", "character": "Hans", "id": 7829, "credit_id": "52fe4254c3a36847f8015dbf", "cast_id": 27, "profile_path": "/spaxsgrRP0eIEGFXf5LoGLET5fV.jpg", "order": 26}, {"name": "Heiner Lauterbach", "character": "Dennis", "id": 7830, "credit_id": "52fe4254c3a36847f8015dc3", "cast_id": 28, "profile_path": "/ijrlHcCTjA5VrmY3vJsuOC3qUL3.jpg", "order": 27}, {"name": "Fatih Akin", "character": "Taxifahrer", "id": 5125, "credit_id": "52fe4254c3a36847f8015dc7", "cast_id": 29, "profile_path": "/wIcm73WeaS6IAA1chaSw5NN2HTQ.jpg", "order": 28}, {"name": "Christiane Gerboth", "character": "Nachrichtensprecherin", "id": 7831, "credit_id": "52fe4254c3a36847f8015dcb", "cast_id": 30, "profile_path": "/urLsfZ0OPlqpCFC9IJUmXt0N2Nf.jpg", "order": 29}, {"name": "Klaus Spinnler", "character": "Assistent", "id": 5652, "credit_id": "52fe4254c3a36847f8015e17", "cast_id": 43, "profile_path": "/xCt2MWaTCNCujFGYB69odZaQ4n6.jpg", "order": 30}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe4254c3a36847f8015dd1", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}], "vote_average": 7.6, "runtime": 114}, "576": {"poster_path": "/hkYPeDXuxlxpflz09rvu5KxOtT5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 509424, "overview": "Aging outlaw Pike Bishop (William Holden) prepares to retire after one final robbery. Joined by his gang, which includes Dutch Engstrom (Ernest Borgnine) and brothers Lyle (Warren Oates) and Tector Gorch (Ben Johnson), Bishop discovers the heist is a setup orchestrated in part by his old partner, Deke Thornton (Robert Ryan). As the remaining gang takes refuge in Mexican territory, Thornton trails them, resulting in fierce gunfights with plenty of casualties", "video": false, "id": 576, "genres": [{"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "The Wild Bunch", "tagline": "If you only want to spend two hours in a movie theatre and go home and forget it, stay away from THE WILD BUNCH.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065214", "adult": false, "backdrop_path": "/myz6XHquJeHfQb4paDMi8BYQTge.jpg", "production_companies": [{"name": "Warner Brothers/Seven Arts", "id": 4051}], "release_date": "1969-06-17", "popularity": 0.489922784874121, "original_title": "The Wild Bunch", "budget": 6000000, "cast": [{"name": "Ernest Borgnine", "character": "Dutch Engstrom", "id": 7502, "credit_id": "52fe4254c3a36847f8015e8f", "cast_id": 6, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 0}, {"name": "William Holden", "character": "Pike Bishop", "id": 8252, "credit_id": "52fe4255c3a36847f8015ec9", "cast_id": 16, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 1}, {"name": "Robert Ryan", "character": "Deke Thornton", "id": 8253, "credit_id": "52fe4255c3a36847f8015ecd", "cast_id": 17, "profile_path": "/xBAWG79UGCkchPPTbONycJiKW2g.jpg", "order": 2}, {"name": "Edmond O'Brien", "character": "Freddie Sykes", "id": 8254, "credit_id": "52fe4255c3a36847f8015ed1", "cast_id": 18, "profile_path": "/w3xvMmH5WfHZ5y7ldeIdX2oghVN.jpg", "order": 3}, {"name": "Warren Oates", "character": "Lyle Gorch", "id": 8255, "credit_id": "52fe4255c3a36847f8015ed5", "cast_id": 19, "profile_path": "/uYp6YY55id4qLmhFdydUv7r0J4s.jpg", "order": 4}, {"name": "Jaime S\u00e1nchez", "character": "Angel", "id": 8257, "credit_id": "52fe4255c3a36847f8015ed9", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Ben Johnson", "character": "Tector Gorch", "id": 8258, "credit_id": "52fe4255c3a36847f8015edd", "cast_id": 21, "profile_path": "/39W793yr65FB1JqcctWQMmzYBAD.jpg", "order": 6}, {"name": "Emilio Fern\u00e1ndez", "character": "Gen. Mapache", "id": 8259, "credit_id": "52fe4255c3a36847f8015ee1", "cast_id": 22, "profile_path": "/pNCyE6A8wgBtQjdF2o2aKDLFAH5.jpg", "order": 7}, {"name": "Strother Martin", "character": "Coffer", "id": 8260, "credit_id": "52fe4255c3a36847f8015ee5", "cast_id": 23, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 8}, {"name": "L.Q. Jones", "character": "T.C", "id": 8262, "credit_id": "52fe4255c3a36847f8015ee9", "cast_id": 24, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 9}, {"name": "Albert Dekker", "character": "Pat Harrigan", "id": 2755, "credit_id": "52fe4255c3a36847f8015ef9", "cast_id": 27, "profile_path": "/l6uhlP7tbyb3OVGUi3M6NceagBt.jpg", "order": 10}, {"name": "Bo Hopkins", "character": "Clarence 'Crazy' Lee", "id": 12410, "credit_id": "52fe4255c3a36847f8015efd", "cast_id": 28, "profile_path": "/tfned4hs0rrq7L5PPuS5GnlHFc6.jpg", "order": 11}, {"name": "Dub Taylor", "character": "Reverend Wainscoat", "id": 6463, "credit_id": "52fe4255c3a36847f8015f01", "cast_id": 29, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 12}, {"name": "Jorge Russek", "character": "Major Zamorra", "id": 31321, "credit_id": "52fe4255c3a36847f8015f05", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Alfonso Ar\u00e1u", "character": "Herrera", "id": 22767, "credit_id": "53885162c3a3681ae300431a", "cast_id": 31, "profile_path": "/Agw6LyoGlrfJaBvTOQYzdxwUWHh.jpg", "order": 14}, {"name": "Bill Hart", "character": "Jess", "id": 160598, "credit_id": "5479eae6c3a3685c480028e4", "cast_id": 40, "profile_path": null, "order": 15}, {"name": "Rayford Barnes", "character": "Buck", "id": 30848, "credit_id": "5479eb13c3a3685c530029b6", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Stephen Ferry", "character": "McHale", "id": 950225, "credit_id": "5479eb2f925141298d00278a", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Sonia Amelio", "character": "Teresa", "id": 990426, "credit_id": "5479eb50c3a3685c4b002929", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Chalo Gonz\u00e1lez", "character": "Gonzalez", "id": 239944, "credit_id": "5479ede3c3a368321600006a", "cast_id": 44, "profile_path": null, "order": 19}], "directors": [{"name": "Sam Peckinpah", "department": "Directing", "job": "Director", "credit_id": "52fe4254c3a36847f8015e7f", "profile_path": "/lsNMJtmZwLYB8pl1gE7S6cBbuSc.jpg", "id": 7767}], "vote_average": 7.2, "runtime": 145}, "8769": {"poster_path": "/dfgA9b0eK0Dqmyf8X9X0qhvpx6z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21200000, "overview": "Geeky student Arnie Cunningham falls for Christine, a rusty 1958 Plymouth Fury, and becomes obsessed with restoring the classic automobile to her former glory. As the car changes, so does Arnie, whose newfound confidence turns to arrogance behind the wheel of his exotic beauty. Arnie's girlfriend Leigh and best friend Dennis reach out to him, only to be met by a Fury like no other.", "video": false, "id": 8769, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Christine", "tagline": "How do you kill something that can't possibly be alive?", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085333", "adult": false, "backdrop_path": "/zvR7GPQSoJTZlwuU5jjZHRiMu2o.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1983-12-09", "popularity": 0.461994322611277, "original_title": "Christine", "budget": 0, "cast": [{"name": "Keith Gordon", "character": "Arnie Cunningham", "id": 33054, "credit_id": "52fe44b8c3a36847f80a647b", "cast_id": 4, "profile_path": "/izPEmoAyZkCBnNFXEBxg03TMnLH.jpg", "order": 0}, {"name": "John Stockwell", "character": "Dennis Guilder", "id": 57082, "credit_id": "52fe44b8c3a36847f80a647f", "cast_id": 5, "profile_path": "/9AQo5W5T6vP6WTcDvHx1CbbiOzU.jpg", "order": 1}, {"name": "Alexandra Paul", "character": "Leigh Cabot", "id": 55567, "credit_id": "52fe44b8c3a36847f80a6483", "cast_id": 6, "profile_path": "/eOagFesLjENDQGrJnwSdYMeRtaP.jpg", "order": 2}, {"name": "Robert Prosky", "character": "Will Darnell", "id": 10360, "credit_id": "52fe44b8c3a36847f80a6487", "cast_id": 7, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 3}, {"name": "Harry Dean Stanton", "character": "Rudolph Junkins", "id": 5048, "credit_id": "52fe44b8c3a36847f80a648b", "cast_id": 8, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 4}, {"name": "Christine Belford", "character": "Regina Cunningham", "id": 41219, "credit_id": "52fe44b8c3a36847f80a648f", "cast_id": 9, "profile_path": "/i7awtYFwYO8ha1wZwcloKq50L3b.jpg", "order": 5}, {"name": "Roberts Blossom", "character": "George LeBay", "id": 66288, "credit_id": "52fe44b8c3a36847f80a6493", "cast_id": 10, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 6}, {"name": "William Ostrander", "character": "Buddy Repperton", "id": 55929, "credit_id": "52fe44b8c3a36847f80a6497", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "David Spielberg", "character": "Mr. Casey", "id": 54127, "credit_id": "52fe44b8c3a36847f80a649b", "cast_id": 12, "profile_path": "/hCyjIbgqyjpCyUnUJeqbYtShBon.jpg", "order": 8}, {"name": "Malcolm Danare", "character": "Moochie Welch", "id": 14738, "credit_id": "52fe44b8c3a36847f80a649f", "cast_id": 13, "profile_path": "/6PQPp4Yim18xuNCBGQLg2cYAstY.jpg", "order": 9}, {"name": "Steven Tash", "character": "Richard Trelawney", "id": 55930, "credit_id": "52fe44b8c3a36847f80a64a3", "cast_id": 14, "profile_path": "/loYE3mTbF10DvIDBdjUAqebwGaT.jpg", "order": 10}, {"name": "Stuart Charno", "character": "Don Vandenberg", "id": 55931, "credit_id": "52fe44b8c3a36847f80a64a7", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Kelly Preston", "character": "Roseanne", "id": 11164, "credit_id": "52fe44b8c3a36847f80a64ab", "cast_id": 16, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 12}, {"name": "Marc Poppel", "character": "Chuck", "id": 55932, "credit_id": "52fe44b8c3a36847f80a64af", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Robert Darnell", "character": "Michael Cunningham", "id": 55933, "credit_id": "52fe44b8c3a36847f80a64b3", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe44b8c3a36847f80a646b", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.6, "runtime": 110}, "578": {"poster_path": "/l1yltvzILaZcx2jYvc5sEMkM7Eh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 470654000, "overview": "An insatiable great white shark terrorizes the townspeople of Amity Island, The police chief, an oceanographer and a grizzled shark hunter seek to destroy the bloodthirsty beast.", "video": false, "id": 578, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jaws", "tagline": "Don't go in the water.", "vote_count": 578, "homepage": "http://www.jaws25.com/", "belongs_to_collection": {"backdrop_path": "/1e2QvI2u7Q4d2admK6Xw0AjLjVp.jpg", "poster_path": "/fgraZdDCvAtBr0MHczmL6raonHd.jpg", "id": 2366, "name": "The Jaws Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0073195", "adult": false, "backdrop_path": "/adTQnKMKOJ2Gbk2MC3nBez0Pbc3.jpg", "production_companies": [{"name": "Zanuck/Brown Productions", "id": 1865}, {"name": "Universal Pictures", "id": 33}], "release_date": "1975-06-19", "popularity": 1.47982928995305, "original_title": "Jaws", "budget": 7000000, "cast": [{"name": "Roy Scheider", "character": "Police Chief Martin Brody", "id": 6355, "credit_id": "52fe4255c3a36847f8016071", "cast_id": 15, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 0}, {"name": "Robert Shaw", "character": "Quint", "id": 8606, "credit_id": "52fe4255c3a36847f8016075", "cast_id": 16, "profile_path": "/mLlgNTWRo3zGFzg4WHP9uzOH9Xn.jpg", "order": 1}, {"name": "Richard Dreyfuss", "character": "Matt Hooper", "id": 3037, "credit_id": "52fe4255c3a36847f8016079", "cast_id": 17, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 2}, {"name": "Lorraine Gary", "character": "Ellen Brody", "id": 8607, "credit_id": "52fe4255c3a36847f801607d", "cast_id": 18, "profile_path": "/odB9w163XLYjYpLf5Z1BAfdbxnx.jpg", "order": 3}, {"name": "Murray Hamilton", "character": "Mayor Larry Vaughn", "id": 8608, "credit_id": "52fe4255c3a36847f8016081", "cast_id": 19, "profile_path": "/w2FAPn8RbGKvyhnj3K0dNySEoDa.jpg", "order": 4}, {"name": "Carl Gottlieb", "character": "Ben Meadows", "id": 8555, "credit_id": "52fe4255c3a36847f8016085", "cast_id": 20, "profile_path": "/55NXqy86bxZ64QnwsLbYNOgsS7d.jpg", "order": 5}, {"name": "Jeffrey Kramer", "character": "Deputy Leonard 'Lenny' Hendricks", "id": 8609, "credit_id": "52fe4255c3a36847f8016089", "cast_id": 21, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 6}, {"name": "Susan Backlinie", "character": "Christine 'Chrissie' Watkins", "id": 8610, "credit_id": "52fe4255c3a36847f801608d", "cast_id": 22, "profile_path": "/nYpElizNhK5tvuw13qMqBtu3vmT.jpg", "order": 7}, {"name": "Jonathan Filley", "character": "Tom Cassidy", "id": 5286, "credit_id": "52fe4255c3a36847f8016091", "cast_id": 23, "profile_path": "/esRuadwQz5Hx3hMML2DuIalUnsW.jpg", "order": 8}, {"name": "Chris Rebello", "character": "Michael 'Mike' Brody", "id": 8611, "credit_id": "52fe4255c3a36847f8016095", "cast_id": 24, "profile_path": "/7n5DRxnscqgRqonpYWFGGXdiwAf.jpg", "order": 9}, {"name": "Jay Mello", "character": "Sean Brody", "id": 8612, "credit_id": "52fe4255c3a36847f8016099", "cast_id": 25, "profile_path": "/crjgSn6d3MR5ibkzyxDf6YEf0x0.jpg", "order": 10}, {"name": "Lee Fierro", "character": "Mrs. Kintner", "id": 8613, "credit_id": "52fe4255c3a36847f801609d", "cast_id": 26, "profile_path": "/rpkKjSJpWrhOPIVY9ooVSRQKgs6.jpg", "order": 11}, {"name": "Jeffrey Voorhees", "character": "Alex M. Kintner", "id": 8614, "credit_id": "52fe4255c3a36847f80160a1", "cast_id": 27, "profile_path": "/x3ShYXoC6ET65JFAcZXBwKdvN7s.jpg", "order": 12}, {"name": "Craig Kingsbury", "character": "Ben Gardner", "id": 8615, "credit_id": "52fe4255c3a36847f80160a5", "cast_id": 28, "profile_path": "/qHWGWvGg7sTtvcKpmYKatmMBtNj.jpg", "order": 13}, {"name": "Robert Nevin", "character": "Medical Examiner", "id": 8616, "credit_id": "52fe4255c3a36847f80160a9", "cast_id": 29, "profile_path": "/dlGP4diqSoit0i2innQTfZGiNcm.jpg", "order": 14}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4255c3a36847f801601f", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.1, "runtime": 124}, "579": {"poster_path": "/zzGtimy1mUJYDjFjCmn2dpHREGV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 187884007, "overview": "The sequel to the successful blockbuster Jaws. An American horror thriller from 1978 about a great white that brings fear to everyone near the water. The film used it\u2019s predecessor\u2019s success to achieve it\u2019s own and was not directed by Steven Spielberg.", "video": false, "id": 579, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jaws 2", "tagline": "Just when you thought it was safe to go back in the water.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1e2QvI2u7Q4d2admK6Xw0AjLjVp.jpg", "poster_path": "/fgraZdDCvAtBr0MHczmL6raonHd.jpg", "id": 2366, "name": "The Jaws Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077766", "adult": false, "backdrop_path": "/jI3wfBuB6nwkpazHr3cI6fyDGGf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1978-06-16", "popularity": 0.739321843853754, "original_title": "Jaws 2", "budget": 20000000, "cast": [{"name": "Roy Scheider", "character": "Police Chief Martin Brody", "id": 6355, "credit_id": "52fe4255c3a36847f801618d", "cast_id": 23, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 0}, {"name": "Lorraine Gary", "character": "Ellen Brody", "id": 8607, "credit_id": "52fe4255c3a36847f8016191", "cast_id": 24, "profile_path": "/odB9w163XLYjYpLf5Z1BAfdbxnx.jpg", "order": 1}, {"name": "Murray Hamilton", "character": "Mayor Larry Vaughn", "id": 8608, "credit_id": "52fe4255c3a36847f8016195", "cast_id": 25, "profile_path": "/w2FAPn8RbGKvyhnj3K0dNySEoDa.jpg", "order": 2}, {"name": "Joseph Mascolo", "character": "Len Peterson", "id": 6769, "credit_id": "52fe4255c3a36847f8016199", "cast_id": 26, "profile_path": "/14hthTYc8VraHYhIDCdZH4XnD1r.jpg", "order": 3}, {"name": "Jeffrey Kramer", "character": "Deputy Jeff Hendricks", "id": 8609, "credit_id": "52fe4255c3a36847f801619d", "cast_id": 27, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 4}, {"name": "Collin Wilcox", "character": "Dr. Lureen Elkins", "id": 8497, "credit_id": "52fe4255c3a36847f80161a1", "cast_id": 28, "profile_path": "/20moI5kP6wgDGsPju2J61AlGi1N.jpg", "order": 5}, {"name": "Ann Dusenberry", "character": "Tina Wilcox", "id": 16197, "credit_id": "52fe4255c3a36847f80161a5", "cast_id": 29, "profile_path": "/bOyZ5m2yDDPsMFGkp2eh81Y6EQY.jpg", "order": 6}, {"name": "Mark Gruner", "character": "Michael 'Mike' Brody", "id": 16198, "credit_id": "52fe4255c3a36847f80161a9", "cast_id": 30, "profile_path": "/pDD9qcLZCDHhcxBGnBXz0OjsIVB.jpg", "order": 7}, {"name": "Barry Coe", "character": "Tom Andrews", "id": 16199, "credit_id": "52fe4255c3a36847f80161ad", "cast_id": 31, "profile_path": "/ckrQc9yYN425CvO4aKdy6rWIU54.jpg", "order": 8}, {"name": "Susan French", "character": "Grace Witherspoon", "id": 16200, "credit_id": "52fe4255c3a36847f80161b1", "cast_id": 32, "profile_path": "/1TxIxsdlGntJcy02MCwaQLWIVMp.jpg", "order": 9}, {"name": "Gary Springer", "character": "Andy Nicholas", "id": 14552, "credit_id": "52fe4255c3a36847f80161b5", "cast_id": 33, "profile_path": "/ovYL4jKuiyRvCbMVrgO3iy5BB10.jpg", "order": 10}, {"name": "Donna Wilkes", "character": "Jackie Peters", "id": 16201, "credit_id": "52fe4255c3a36847f80161b9", "cast_id": 34, "profile_path": "/g4QrUogwXahj7W35bDU2PK6oaWk.jpg", "order": 11}, {"name": "Gary Dubin", "character": "Eddie Marchand", "id": 16202, "credit_id": "52fe4255c3a36847f80161bd", "cast_id": 35, "profile_path": "/wEmM0j6H57x1YQy4WFu5p9Ibh4A.jpg", "order": 12}, {"name": "John Dukakis", "character": "Paul 'Polo' Loman", "id": 16203, "credit_id": "52fe4255c3a36847f80161c1", "cast_id": 36, "profile_path": "/7AaDqpjdLfSbf1zeTsoEdZq3G2B.jpg", "order": 13}, {"name": "G. Thomas Dunlop", "character": "Timmy Weldon", "id": 16204, "credit_id": "52fe4255c3a36847f80161c5", "cast_id": 37, "profile_path": "/1tlDZGPAiruuc7HldTRM5itdpyn.jpg", "order": 14}, {"name": "Keith Gordon", "character": "Doug Fetterman", "id": 33054, "credit_id": "52fe4255c3a36847f80161cf", "cast_id": 39, "profile_path": "/izPEmoAyZkCBnNFXEBxg03TMnLH.jpg", "order": 15}, {"name": "David Elliott", "character": "Larry Vaughn Jr.", "id": 103957, "credit_id": "52fe4255c3a36847f80161d3", "cast_id": 40, "profile_path": "/oexxqztkSA0BUoj96Croa19XmU1.jpg", "order": 16}, {"name": "Marc Gilpin", "character": "Sean Brody", "id": 44688, "credit_id": "52fe4255c3a36847f80161d7", "cast_id": 41, "profile_path": "/7AbLodfCqzOxupcfzBK5bsPidq.jpg", "order": 17}, {"name": "Billy Van Zandt", "character": "Bob", "id": 168423, "credit_id": "52fe4255c3a36847f80161db", "cast_id": 42, "profile_path": "/14Pk9JIIjNdu0d3vxBWsBRzjrSy.jpg", "order": 18}], "directors": [{"name": "Jeannot Szwarc", "department": "Directing", "job": "Director", "credit_id": "52fe4255c3a36847f801610b", "profile_path": "/mIW7mgLr83qyGovTWAigrPX66v3.jpg", "id": 16187}], "vote_average": 5.8, "runtime": 116}, "74308": {"poster_path": "/7bCcC4GUr4IDdQX2Kdz7dZKfsG7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Detachment is a chronicle of three weeks in the lives of several high school teachers, administrators and students through the eyes of a substitute teacher named Henry Barthes. Henry roams from school to school, imparting modes of knowledge, but never staying long enough to form any semblance of sentient attachment. A perfect profession for one seeking to hide out in the open. One day Henry arrives at his next assignment. Upon his entry into this particular school, a secret world of emotion is awakened within him by three women. A girl named Meredith in his first period. A fellow teacher Ms. Madison, and a street hooker named Erica, whom Henry has personally granted brief shelter from the streets. Each one of these women, like Henry, are in a life and death struggle to find beauty in a seemingly vicious and loveless world.", "video": false, "id": 74308, "genres": [{"id": 18, "name": "Drama"}], "title": "Detachment", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1683526", "adult": false, "backdrop_path": "/i5vWR5U9UL36KfmWQ1S4D317OVB.jpg", "production_companies": [{"name": "Kingsgate Films", "id": 770}], "release_date": "2011-04-25", "popularity": 0.378434954735609, "original_title": "Detachment", "budget": 0, "cast": [{"name": "Adrien Brody", "character": "Henry Barthes", "id": 3490, "credit_id": "52fe48c4c3a368484e109eff", "cast_id": 4, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Principal Carol Dearden", "id": 4726, "credit_id": "52fe48c4c3a368484e109f11", "cast_id": 8, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "James Caan", "character": "Mr. Charles Seaboldt", "id": 3085, "credit_id": "52fe48c4c3a368484e109f41", "cast_id": 18, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 2}, {"name": "Christina Hendricks", "character": "Ms. Sarah Madison", "id": 110014, "credit_id": "52fe48c4c3a368484e109ef7", "cast_id": 2, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 3}, {"name": "Lucy Liu", "character": "Dr. Parker", "id": 140, "credit_id": "52fe48c4c3a368484e109f03", "cast_id": 5, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 4}, {"name": "Blythe Danner", "character": "Ms. Perkins", "id": 10401, "credit_id": "52fe48c4c3a368484e109f15", "cast_id": 9, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Mr. Wiatt", "id": 1462, "credit_id": "52fe48c4c3a368484e109f45", "cast_id": 19, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "William Petersen", "character": "Mr. Sarge Kepler", "id": 52267, "credit_id": "52fe48c4c3a368484e109f49", "cast_id": 20, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 8}, {"name": "Bryan Cranston", "character": "Richard Dearden", "id": 17419, "credit_id": "52fe48c4c3a368484e109efb", "cast_id": 3, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 9}, {"name": "Sami Gayle", "character": "Erica", "id": 506085, "credit_id": "52fe48c4c3a368484e109f0d", "cast_id": 7, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 9}, {"name": "Celia Au", "character": "Ellen (as Sze Ming Au)", "id": 1087135, "credit_id": "52fe48c4c3a368484e109f19", "cast_id": 11, "profile_path": "/fRqv80ldZe4OlCCXU275pbiH1Ie.jpg", "order": 10}, {"name": "Louis Zorich", "character": "Grampa", "id": 73210, "credit_id": "52fe48c4c3a368484e109f4d", "cast_id": 21, "profile_path": "/yDyRHBmofPk3F9P4fatK8szuzdb.jpg", "order": 11}, {"name": "Isiah Whitlock, Jr.", "character": "Mr. Mathias", "id": 17490, "credit_id": "52fe48c4c3a368484e109f51", "cast_id": 22, "profile_path": "/yLaKPYOvrea7dU0Xa86SY1WN7Gc.jpg", "order": 12}, {"name": "Patricia Rae", "character": "Ms. Estrada", "id": 5973, "credit_id": "52fe48c4c3a368484e109f55", "cast_id": 23, "profile_path": "/vkVhCraBD2yOzEwCIFTGwyCbWNO.jpg", "order": 13}], "directors": [{"name": "Tony Kaye", "department": "Directing", "job": "Director", "credit_id": "52fe48c4c3a368484e109ef3", "profile_path": "/JCcF3JbptET0eF44w3sfMJw5E4.jpg", "id": 814}], "vote_average": 7.4, "runtime": 97}, "581": {"poster_path": "/hpmclspug1I8EwKSWhL7pWWltA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 424208848, "overview": "Wounded Civil War soldier John Dunbar tries to commit suicide -- and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.", "video": false, "id": 581, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Dances with Wolves", "tagline": "Inside everyone is a frontier waiting to be discovered.", "vote_count": 301, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099348", "adult": false, "backdrop_path": "/gkW2RMlwl4kqaMIDjaAE73rAPpZ.jpg", "production_companies": [{"name": "Tig Productions", "id": 335}, {"name": "Majestic Films International", "id": 2630}], "release_date": "1990-11-09", "popularity": 1.53079702533824, "original_title": "Dances with Wolves", "budget": 22000000, "cast": [{"name": "Kevin Costner", "character": "Lieutenant Dunbar", "id": 1269, "credit_id": "52fe4255c3a36847f8016347", "cast_id": 12, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Mary McDonnell", "character": "Stands With A Fist", "id": 1581, "credit_id": "52fe4255c3a36847f801634b", "cast_id": 13, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 1}, {"name": "Graham Greene", "character": "Kicking Bird", "id": 6804, "credit_id": "52fe4255c3a36847f801634f", "cast_id": 14, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 2}, {"name": "Rodney A. Grant", "character": "Wind In His Hair", "id": 7853, "credit_id": "52fe4255c3a36847f8016353", "cast_id": 15, "profile_path": "/zJI1ES5cvy7xtEvRnRURbgW03Bf.jpg", "order": 3}, {"name": "Floyd Red Crow Westerman", "character": "Ten Bears", "id": 7862, "credit_id": "52fe4255c3a36847f8016357", "cast_id": 16, "profile_path": "/rAwnURUoJrIUbQtoRAPbHaTyLcu.jpg", "order": 4}, {"name": "Tantoo Cardinal", "character": "Black Shawl", "id": 7863, "credit_id": "52fe4255c3a36847f801635b", "cast_id": 17, "profile_path": "/2FEYWnf9jbc5VY5fEFiX91vx80k.jpg", "order": 5}, {"name": "Robert Pastorelli", "character": "Timmons", "id": 7866, "credit_id": "52fe4255c3a36847f801635f", "cast_id": 18, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 6}, {"name": "Charles Rocket", "character": "Lieutenant Elgin", "id": 7867, "credit_id": "52fe4255c3a36847f8016363", "cast_id": 19, "profile_path": "/9UJTYqaPaYNPuVTjGd0Cr4XVNqe.jpg", "order": 7}, {"name": "Maury Chaykin", "character": "Major Fambrough", "id": 7868, "credit_id": "52fe4255c3a36847f8016367", "cast_id": 20, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 8}, {"name": "Jimmy Herman", "character": "Stone Calf", "id": 7869, "credit_id": "52fe4255c3a36847f801636b", "cast_id": 21, "profile_path": "/edarXZk4BLKdRodLmfGeiZPcHNt.jpg", "order": 9}, {"name": "Nathan Lee Chasing His Horse", "character": "Smiles A Lot", "id": 7871, "credit_id": "52fe4255c3a36847f8016375", "cast_id": 23, "profile_path": "/hQ8i79bGsASGQ3GsOZGAY3PSYn2.jpg", "order": 10}, {"name": "Michael Spears", "character": "Otter", "id": 7872, "credit_id": "52fe4255c3a36847f8016379", "cast_id": 24, "profile_path": "/cAsaHMudiRa0RTooNJ7phkzYchF.jpg", "order": 11}, {"name": "Jason R. Lone Hill", "character": "Worm", "id": 7873, "credit_id": "52fe4255c3a36847f801637d", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Tony Pierce", "character": "Spivey", "id": 7874, "credit_id": "52fe4255c3a36847f8016381", "cast_id": 26, "profile_path": "/nbMYwt5zndejomGFBGepBlhZQID.jpg", "order": 13}, {"name": "Doris Leader Charge", "character": "Pretty Shield", "id": 7875, "credit_id": "52fe4255c3a36847f8016385", "cast_id": 27, "profile_path": "/kxUgWAfdOtMbFH8mPKd7g2gIrOq.jpg", "order": 14}, {"name": "Tom Everett", "character": "Sergeant Pepper", "id": 140250, "credit_id": "52fe4255c3a36847f8016395", "cast_id": 30, "profile_path": "/nxrCAB3xL79EdWLwBUMwXj7FtI3.jpg", "order": 15}, {"name": "Larry Joshua", "character": "Sergeant Bauer", "id": 21380, "credit_id": "52fe4255c3a36847f8016399", "cast_id": 31, "profile_path": "/rWhP4v6mPwRGV4qCdJIC9oOqFn7.jpg", "order": 16}, {"name": "Kirk Baltz", "character": "Edwards", "id": 3206, "credit_id": "52fe4255c3a36847f801639d", "cast_id": 32, "profile_path": "/zCuugN0Lgsi5IKRq9OyYl3vh9pU.jpg", "order": 17}, {"name": "Wayne Grace", "character": "Major", "id": 52145, "credit_id": "52fe4256c3a36847f80163a1", "cast_id": 33, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 18}, {"name": "Donald Hotton", "character": "General Tide", "id": 14854, "credit_id": "52fe4256c3a36847f80163a5", "cast_id": 34, "profile_path": "/qCLOFZbktP5X0ChZDrHj5B0qsYN.jpg", "order": 19}, {"name": "Annie Costner", "character": "Christine", "id": 1080276, "credit_id": "52fe4256c3a36847f80163a9", "cast_id": 35, "profile_path": "/vBP2LHJTU48DGKJVOnM0O5DIRhy.jpg", "order": 20}, {"name": "Elisa Daniel", "character": "Christine's Mother", "id": 1160349, "credit_id": "52fe4256c3a36847f80163ad", "cast_id": 36, "profile_path": "/89kTBf4CXmeszbzu1zH0lo5Ryu9.jpg", "order": 21}, {"name": "Percy White Plume", "character": "Big Warrior", "id": 1416085, "credit_id": "54be603ac3a3686c6b00f56d", "cast_id": 81, "profile_path": null, "order": 22}, {"name": "John Tail", "character": "Escort Warrior", "id": 1444164, "credit_id": "550f3087925141073d00351b", "cast_id": 82, "profile_path": null, "order": 23}, {"name": "Steve Reevis", "character": "Sioux #1 / Warrior #1", "id": 4024, "credit_id": "550f30e7c3a3683eb800320b", "cast_id": 83, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 24}, {"name": "Sheldon Peters Wolfchild", "character": "Sioux #2 / Warrior #2 (as Sheldon Wolfchild)", "id": 240609, "credit_id": "550f3132c3a3683eb800320e", "cast_id": 84, "profile_path": null, "order": 25}, {"name": "Wes Studi", "character": "Toughest Pawnee", "id": 15853, "credit_id": "54be5ff4c3a3684046008304", "cast_id": 80, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 26}, {"name": "Buffalo Child", "character": "Pawnee #1", "id": 162972, "credit_id": "550f317792514146a000a903", "cast_id": 85, "profile_path": null, "order": 27}, {"name": "Clayton Big Eagle", "character": "Pawnee #2", "id": 1444165, "credit_id": "550f3185c3a3681db2009fbf", "cast_id": 86, "profile_path": null, "order": 28}, {"name": "Richard Leader Charge", "character": "Pawnee #3", "id": 1444166, "credit_id": "550f31989251410701003567", "cast_id": 87, "profile_path": null, "order": 29}, {"name": "Redwing Ted Nez", "character": "Sioux Warrior", "id": 1444167, "credit_id": "550f31aec3a368488600ae3f", "cast_id": 88, "profile_path": null, "order": 30}, {"name": "Marvin Holy", "character": "Sioux Warrior", "id": 1444168, "credit_id": "550f31b992514164ac0011cf", "cast_id": 89, "profile_path": null, "order": 31}, {"name": "Raymond Newholy", "character": "Sioux Courier", "id": 1444169, "credit_id": "550f31c8c3a368488600ae47", "cast_id": 90, "profile_path": null, "order": 32}, {"name": "David J. Fuller", "character": "Kicking Bird's Son", "id": 1444170, "credit_id": "550f31da925141070100356f", "cast_id": 91, "profile_path": null, "order": 33}, {"name": "Ryan White Bull", "character": "Kicking Bird's Eldest Son", "id": 1444171, "credit_id": "550f31efc3a3683f39003438", "cast_id": 92, "profile_path": null, "order": 34}, {"name": "Otakuye Conroy", "character": "Kicking Bird's Daughter", "id": 1444172, "credit_id": "550f3206925141073d003544", "cast_id": 93, "profile_path": null, "order": 35}, {"name": "Maretta Big Crow", "character": "Village Mother", "id": 1444173, "credit_id": "550f3212c3a3683eb8003217", "cast_id": 94, "profile_path": null, "order": 36}, {"name": "Steven Chambers", "character": "Guard (as Steve Chambers)", "id": 139999, "credit_id": "550f327592514166db00128e", "cast_id": 95, "profile_path": null, "order": 37}, {"name": "William H. Burton Jr.", "character": "General's Aide (as William H. Burton)", "id": 1412253, "credit_id": "550f32ee9251416bd1001154", "cast_id": 96, "profile_path": null, "order": 38}, {"name": "Bill W. Curry", "character": "Confederate Cavalryman", "id": 1444174, "credit_id": "550f331bc3a3681db2009ff1", "cast_id": 97, "profile_path": null, "order": 39}, {"name": "Nick Thompson", "character": "Confederate Soldier", "id": 1444175, "credit_id": "550f3351925141469900a82c", "cast_id": 98, "profile_path": null, "order": 40}, {"name": "Carter Hanner", "character": "Confederate Soldier", "id": 1444176, "credit_id": "550f3363c3a3683eb8003233", "cast_id": 99, "profile_path": null, "order": 41}, {"name": "Kent Hays", "character": "Wagon Driver", "id": 1444177, "credit_id": "550f336f925141469900a833", "cast_id": 100, "profile_path": null, "order": 42}, {"name": "Robert Goldman", "character": "Union Soldier", "id": 1444178, "credit_id": "550f33b59251416bd1001163", "cast_id": 101, "profile_path": null, "order": 43}, {"name": "Frank P. Costanza", "character": "Tucker", "id": 96636, "credit_id": "550f33d4c3a3681db200a003", "cast_id": 102, "profile_path": null, "order": 44}, {"name": "James A. Mitchell", "character": "Ray", "id": 1444179, "credit_id": "550f33e3c3a3683f39003468", "cast_id": 103, "profile_path": null, "order": 45}, {"name": "R. L. Curtin", "character": "Ambush Wagon Driver", "id": 1444180, "credit_id": "550f33f79251416bd100116a", "cast_id": 104, "profile_path": null, "order": 46}, {"name": "Justin", "character": "Cisco (horse)", "id": 1444181, "credit_id": "550f3416c3a3683f0a00327b", "cast_id": 105, "profile_path": null, "order": 47}, {"name": "Teddy", "character": "Two Socks (wolf)", "id": 1444182, "credit_id": "550f3434c3a3683f0a003281", "cast_id": 106, "profile_path": null, "order": 48}, {"name": "Buck", "character": "Two Socks (wolf)", "id": 1444183, "credit_id": "550f3492925141065c00359a", "cast_id": 107, "profile_path": null, "order": 49}], "directors": [{"name": "Kevin Costner", "department": "Directing", "job": "Director", "credit_id": "52fe4255c3a36847f801630d", "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "id": 1269}], "vote_average": 7.1, "runtime": 181}, "582": {"poster_path": "/6kxCD1v4yi61cOuGk5iYKjQisp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 70000000, "overview": "A tragic love story set in East Berlin with the backdrop of an undercover Stasi controlled culture. Stasi captain Wieler is ordered to follow author Dreyman and plunges deeper and deeper into his life until he reaches the threshold of doubting the system.", "video": false, "id": 582, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Lives of Others", "tagline": "Before the Fall of the Berlin Wall, East Germany's Secret Police Listened to Your Secrets.", "vote_count": 295, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0405094", "adult": false, "backdrop_path": "/86yhBiDcxe2Psicwn82QMD7cHlM.jpg", "production_companies": [{"name": "Arte", "id": 201}, {"name": "Wiedemann & Berg Filmproduktion", "id": 336}, {"name": "Creado Film", "id": 337}, {"name": "Bayerischer Rundfunk (BR)", "id": 7333}], "release_date": "2006-03-15", "popularity": 0.568229343019074, "original_title": "Das Leben der Anderen", "budget": 2000000, "cast": [{"name": "Martina Gedeck", "character": "Christa-Maria Sieland", "id": 678, "credit_id": "52fe4256c3a36847f801640b", "cast_id": 7, "profile_path": "/a6eR9unTwZk4xqsVKZvJySnVt5A.jpg", "order": 0}, {"name": "Ulrich M\u00fche", "character": "Gerd Wiesler", "id": 8196, "credit_id": "52fe4256c3a36847f801640f", "cast_id": 8, "profile_path": "/jpWubOAj7GnSfxmf1DlcpMpvseY.jpg", "order": 1}, {"name": "Sebastian Koch", "character": "Georg Dreyman", "id": 8197, "credit_id": "52fe4256c3a36847f8016413", "cast_id": 9, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 2}, {"name": "Ulrich Tukur", "character": "Anton Grubitz", "id": 8198, "credit_id": "52fe4256c3a36847f8016417", "cast_id": 10, "profile_path": "/assJYvivgfukHFWim6o9T3sUmu9.jpg", "order": 3}, {"name": "Thomas Thieme", "character": "Bruno Hempf", "id": 8199, "credit_id": "52fe4256c3a36847f801641b", "cast_id": 11, "profile_path": "/izFcVDulGPf6lhV8zUbRtecCJu7.jpg", "order": 4}, {"name": "Hans-Uwe Bauer", "character": "Paul Hauser", "id": 8200, "credit_id": "52fe4256c3a36847f801641f", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Volkmar Kleinert", "character": "Albert Jerska", "id": 8201, "credit_id": "52fe4256c3a36847f8016423", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Matthias Brenner", "character": "Karl Wallner", "id": 8202, "credit_id": "52fe4256c3a36847f8016427", "cast_id": 14, "profile_path": "/pUGJZ3PB6simHPLpcLrt51EOeBt.jpg", "order": 7}, {"name": "Bastian Trost", "character": "H\u00e4ftling 227", "id": 8203, "credit_id": "52fe4256c3a36847f801642b", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Charly H\u00fcbner", "character": "Udo", "id": 8204, "credit_id": "52fe4256c3a36847f801642f", "cast_id": 16, "profile_path": "/AgsnHOC7ZsRL4wsBsgJJVJNWpAd.jpg", "order": 9}, {"name": "Herbert Knaup", "character": "Gregor Hessenstein", "id": 1081, "credit_id": "52fe4256c3a36847f8016433", "cast_id": 17, "profile_path": "/cH0TG69o6Sc6of7ZaZP9BwQ3tHX.jpg", "order": 10}, {"name": "Marie Gruber", "character": "Frau Meineke", "id": 8205, "credit_id": "52fe4256c3a36847f8016437", "cast_id": 18, "profile_path": "/9MDP9S9uaeIOrs8ni4fuYhUtmh9.jpg", "order": 11}, {"name": "Hinnerk Sch\u00f6nemann", "character": "Axel Stigler", "id": 8206, "credit_id": "52fe4256c3a36847f801643b", "cast_id": 19, "profile_path": "/w8R9m7GTYnSWsGKb7WA8T3SJv8X.jpg", "order": 12}, {"name": "Thomas Arnold", "character": "Nowack", "id": 8207, "credit_id": "52fe4256c3a36847f801643f", "cast_id": 20, "profile_path": "/mKHJ71sdW7oY40zVoQ96RxZeUw6.jpg", "order": 13}, {"name": "Ludwig Blochberger", "character": "Benedikt Lehmann", "id": 5214, "credit_id": "52fe4256c3a36847f8016443", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Florian Henckel von Donnersmarck", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f80163ef", "profile_path": "/wQA7iaeaSWbAFB7oOFV0NRGjUMa.jpg", "id": 8193}], "vote_average": 7.8, "runtime": 137}, "583": {"poster_path": "/wEgm6iVOD4afMlEo1VGi3Yz0cmd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 20045115, "overview": "A brilliant parody from the British comedy group Monty Python about the history of (not Jesus but the boy born right next door to The Manger, Brian). A Terry Jones directed film from 1979 that has since gained cult status. What many fans don't know is that this movie might never have happened if not for the financial assistance of George Harrison (of The Beatles).", "video": false, "id": 583, "genres": [{"id": 35, "name": "Comedy"}], "title": "Life of Brian", "tagline": "He wasn't the messiah. He was a very naughty boy.", "vote_count": 414, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079470", "adult": false, "backdrop_path": "/wMPlmw0fM1B94XugcuaKGB96Vsd.jpg", "production_companies": [{"name": "Handmade Films Ltd.", "id": 146}, {"name": "Python (Monty) Pictures Limited", "id": 416}], "release_date": "1979-08-16", "popularity": 0.830343842957795, "original_title": "Life of Brian", "budget": 4000000, "cast": [{"name": "Graham Chapman", "character": "Brian Cohen", "id": 10722, "credit_id": "52fe4256c3a36847f80164eb", "cast_id": 13, "profile_path": "/gwuoxo5EB3SRMO0BPLduWdcSALd.jpg", "order": 0}, {"name": "John Cleese", "character": "Arthur", "id": 8930, "credit_id": "52fe4256c3a36847f80164ef", "cast_id": 14, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 1}, {"name": "Terry Gilliam", "character": "Crucifee", "id": 280, "credit_id": "52fe4256c3a36847f80164f3", "cast_id": 15, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 2}, {"name": "Eric Idle", "character": "Mr. Cheeky", "id": 10713, "credit_id": "52fe4256c3a36847f80164f7", "cast_id": 16, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 3}, {"name": "Terry Jones", "character": "Mandy Cohan", "id": 10707, "credit_id": "52fe4256c3a36847f80164fb", "cast_id": 17, "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "order": 4}, {"name": "Michael Palin", "character": "Wise Man #3", "id": 383, "credit_id": "52fe4256c3a36847f80164ff", "cast_id": 18, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 5}, {"name": "Terence Bayler", "character": "Gregory", "id": 10732, "credit_id": "52fe4256c3a36847f8016503", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Carol Cleveland", "character": "Mrs. Gregory", "id": 10733, "credit_id": "52fe4256c3a36847f8016507", "cast_id": 20, "profile_path": "/3QVIw2Lc18O4m3oktTeab6aVLlD.jpg", "order": 7}, {"name": "Kenneth Colley", "character": "Jesus", "id": 10734, "credit_id": "52fe4256c3a36847f801650b", "cast_id": 21, "profile_path": "/yNZF27tBauzUcg6Fw7M2xsRD8IC.jpg", "order": 8}, {"name": "Neil Innes", "character": "A Weedy Samaritan", "id": 70624, "credit_id": "53c82c1b0e0a267ff1004c64", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Charles McKeown", "character": "False Prophet / Blind Man / Giggling Guard / Stig", "id": 374, "credit_id": "53c82c520e0a267ff1004c6b", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "John Young", "character": "Matthias", "id": 179028, "credit_id": "53c82c670e0a267fed004eee", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Gwen Taylor", "character": "Mrs. Big Nose", "id": 10735, "credit_id": "52fe4256c3a36847f801650f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Sue Jones-Davies", "character": "Judith", "id": 10737, "credit_id": "52fe4256c3a36847f8016513", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "John Case", "character": "Pilate's Wife", "id": 10738, "credit_id": "52fe4256c3a36847f8016517", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Chris Langham", "character": "Alfonso / Giggling Guard", "id": 1221000, "credit_id": "53c82d3d0e0a267ffe00505a", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Andrew MacLachlan", "character": "Another Official Stoners Helper / Giggling Guard", "id": 37893, "credit_id": "53c82c960e0a267fe5005083", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Bernard McKenna", "character": "Parvus / Official Stoners Helper / Giggling Guard", "id": 70010, "credit_id": "53c82cac0e0a267ffb004f04", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "George Harrison", "character": "Mr. Papadopolous", "id": 10593, "credit_id": "53c82cde0e0a267fed004ef4", "cast_id": 37, "profile_path": "/4XqXa9nKPOOMPnX6E0oqyDFtvMX.jpg", "order": 18}], "directors": [{"name": "Terry Jones", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f80164a5", "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "id": 10707}], "vote_average": 7.4, "runtime": 94}, "584": {"poster_path": "/3CrNPUulPGbsJIH2ZnLYomGIVrk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 236350661, "overview": "It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of \"dirty\" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.", "video": false, "id": 584, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "2 Fast 2 Furious", "tagline": "How Fast Do You Want It?", "vote_count": 724, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0322259", "adult": false, "backdrop_path": "/8RkLHFm2PK4PO5W0WZA5LMXLZBz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Original Film", "id": 333}, {"name": "Mikona Productions GmbH & Co. KG", "id": 24}], "release_date": "2003-06-02", "popularity": 1.58108437227166, "original_title": "2 Fast 2 Furious", "budget": 76000000, "cast": [{"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe4256c3a36847f801658f", "cast_id": 4, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "52fe4256c3a36847f8016593", "cast_id": 5, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Monica Fuentes", "id": 8170, "credit_id": "52fe4256c3a36847f8016597", "cast_id": 6, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Cole Hauser", "character": "Carter Verone", "id": 6614, "credit_id": "52fe4256c3a36847f801659b", "cast_id": 7, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 3}, {"name": "Ludacris", "character": "Tej", "id": 8171, "credit_id": "52fe4256c3a36847f801659f", "cast_id": 8, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 4}, {"name": "Thom Barry", "character": "Agent Bilkins", "id": 8175, "credit_id": "52fe4256c3a36847f80165a3", "cast_id": 9, "profile_path": "/AhUa78UoZ5oGk5kWiatnDaPxSnO.jpg", "order": 5}, {"name": "James Remar", "character": "Agent Markham", "id": 1736, "credit_id": "52fe4256c3a36847f80165a7", "cast_id": 10, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 6}, {"name": "Devon Aoki", "character": "Suki", "id": 6278, "credit_id": "52fe4256c3a36847f80165ab", "cast_id": 11, "profile_path": "/mytZpvb5lykocoOCDelFy8Eqezm.jpg", "order": 7}, {"name": "Amaury Nolasco", "character": "Orange Julius", "id": 17341, "credit_id": "52fe4256c3a36847f80165af", "cast_id": 12, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 8}, {"name": "Michael Ealy", "character": "Slap Jack", "id": 8177, "credit_id": "52fe4256c3a36847f80165b3", "cast_id": 13, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 9}, {"name": "Jin Auyeung", "character": "Jimmy", "id": 8178, "credit_id": "52fe4256c3a36847f80165b7", "cast_id": 14, "profile_path": "/kQIGxSJSAcc3zK37zRCGuhxdNmL.jpg", "order": 10}, {"name": "Edward Finlay", "character": "Agent Dunn", "id": 8179, "credit_id": "52fe4256c3a36847f80165bb", "cast_id": 15, "profile_path": "/cHgCOdSLSvjYiKwhycwCH5X4Viu.jpg", "order": 11}, {"name": "Mark Boone Junior", "character": "Detective Whitworth", "id": 534, "credit_id": "52fe4256c3a36847f80165bf", "cast_id": 16, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 12}, {"name": "Mo Gallini", "character": "Enrique", "id": 8180, "credit_id": "52fe4256c3a36847f80165c3", "cast_id": 17, "profile_path": "/fkc5N30a7ZvZkCJEnnqh24uQwDN.jpg", "order": 13}, {"name": "Eric Etebari", "character": "Darden", "id": 1015836, "credit_id": "538da3110e0a266712006178", "cast_id": 37, "profile_path": "/bNjZk4EPaItye1szWPkse08TSJZ.jpg", "order": 14}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f801657f", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 6.1, "runtime": 107}, "585": {"poster_path": "/vawVZynP3nxXYdohD6lOXN94b2L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 562816256, "overview": "James Sullivan and Mike Wazowski are monsters, they earn their living scaring children and are the best in the business... even though they're more afraid of the children than they are of them. When a child accidentally enters their world, James and Mike suddenly find that kids are not to be afraid of and they uncover a conspiracy that could threaten all children across the world.", "video": false, "id": 585, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Monsters, Inc.", "tagline": "We Scare Because We Care.", "vote_count": 2697, "homepage": "http://www.pixar.com/featurefilms/inc/", "belongs_to_collection": {"backdrop_path": "/uzKkKhTWGSEdsN2rYanJTVAyTLi.jpg", "poster_path": "/8xHtCUKfre8b4tkpUWU1y67Cnqr.jpg", "id": 137696, "name": "Monsters, Inc. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0198781", "adult": false, "backdrop_path": "/eKBUYeSgGVvztO2MZxD5YMcz6kv.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2001-11-01", "popularity": 2.70777123443634, "original_title": "Monsters, Inc.", "budget": 115000000, "cast": [{"name": "John Goodman", "character": "Sullivan (voice)", "id": 1230, "credit_id": "52fe4256c3a36847f8016903", "cast_id": 31, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Mike (voice)", "id": 7904, "credit_id": "52fe4256c3a36847f8016907", "cast_id": 32, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Mary Gibbs", "character": "Boo (voice)", "id": 7905, "credit_id": "52fe4256c3a36847f801690b", "cast_id": 33, "profile_path": "/cxnX6F7ZmfXmMKcdLuRXa7GKvGz.jpg", "order": 2}, {"name": "Steve Buscemi", "character": "Randall (voice)", "id": 884, "credit_id": "52fe4256c3a36847f801690f", "cast_id": 34, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 3}, {"name": "James Coburn", "character": "Waternoose (voice)", "id": 5563, "credit_id": "52fe4256c3a36847f8016913", "cast_id": 35, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 4}, {"name": "Jennifer Tilly", "character": "Celia (voice)", "id": 7906, "credit_id": "52fe4256c3a36847f8016917", "cast_id": 36, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 5}, {"name": "Bob Peterson", "character": "Roz (voice)", "id": 10, "credit_id": "52fe4256c3a36847f801691b", "cast_id": 37, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 6}, {"name": "John Ratzenberger", "character": "Yeti (voice)", "id": 7907, "credit_id": "52fe4256c3a36847f801691f", "cast_id": 38, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 7}, {"name": "Frank Oz", "character": "Fungus (voice)", "id": 7908, "credit_id": "52fe4256c3a36847f8016923", "cast_id": 39, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 8}, {"name": "Steve Susskind", "character": "Floor Manager (voice)", "id": 7909, "credit_id": "52fe4256c3a36847f8016927", "cast_id": 40, "profile_path": "/asYeLNdPnkPRmRkBk0AZUNBu8Uw.jpg", "order": 10}, {"name": "Bonnie Hunt", "character": "Flint (voice)", "id": 5149, "credit_id": "52fe4256c3a36847f801692b", "cast_id": 41, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 11}, {"name": "Jeff Pidgeon", "character": "Bile (voice)", "id": 7882, "credit_id": "52fe4256c3a36847f801692f", "cast_id": 42, "profile_path": "/yLddkg5HcgbJg00cS13GVBnP0HY.jpg", "order": 12}, {"name": "Samuel Lord Black", "character": "George (voice)", "id": 7910, "credit_id": "52fe4256c3a36847f8016933", "cast_id": 43, "profile_path": "/vExVkYzIGURQkrEQIRlP4qnPcY1.jpg", "order": 13}, {"name": "Jack Angel", "character": "Additional Voices (voice)", "id": 19545, "credit_id": "52fe4258c3a36847f8016e21", "cast_id": 312, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 14}, {"name": "Bob Bergen", "character": "Additional Voices (voice)", "id": 78317, "credit_id": "52fe4258c3a36847f8016e25", "cast_id": 313, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 15}, {"name": "Rodger Bumpass", "character": "Additional Voices (voice)", "id": 70615, "credit_id": "52fe4258c3a36847f8016e29", "cast_id": 314, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 16}, {"name": "Gino Conforti", "character": "Additional Voices (voice)", "id": 74492, "credit_id": "52fe4258c3a36847f8016e2d", "cast_id": 315, "profile_path": "/7EPicshDcPKxAHnHwjYmcgtg7E.jpg", "order": 17}, {"name": "Jennifer Darling", "character": "Additional Voices (voice)", "id": 81843, "credit_id": "52fe4258c3a36847f8016e31", "cast_id": 316, "profile_path": "/yOOVSrq6pK495FB8kZR5zGOTx8x.jpg", "order": 18}, {"name": "Patti Deutsch", "character": "Additional Voices (voice)", "id": 91024, "credit_id": "52fe4258c3a36847f8016e35", "cast_id": 317, "profile_path": "/6eTkh2shxCOo2R90RavfqSzrEY9.jpg", "order": 19}, {"name": "Pete Docter", "character": "Additional Voices (voice)", "id": 12890, "credit_id": "52fe4258c3a36847f8016e39", "cast_id": 318, "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "order": 20}, {"name": "Bobby Edner", "character": "Additional Voices (voice)", "id": 151385, "credit_id": "52fe4258c3a36847f8016e3d", "cast_id": 319, "profile_path": "/lNuwv1mcwqCC7VWzTWz3sHNrvYS.jpg", "order": 21}, {"name": "Ashley Edner", "character": "Additional Voices (voice)", "id": 75331, "credit_id": "52fe4258c3a36847f8016e41", "cast_id": 320, "profile_path": "/60fg89UxBEqyDHSNQWYat2M2yJH.jpg", "order": 22}, {"name": "Paul Eiding", "character": "Additional Voices (voice)", "id": 86006, "credit_id": "52fe4258c3a36847f8016e45", "cast_id": 321, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 23}, {"name": "Katie Scarlettr", "character": "Additional Voices (voice)", "id": 1268105, "credit_id": "52fe4258c3a36847f8016e49", "cast_id": 322, "profile_path": "/4QBjiMXMqUSysOEUjxw1Zhcmp2t.jpg", "order": 24}, {"name": "Bill Farmer", "character": "Additional Voices (voice)", "id": 84213, "credit_id": "52fe4258c3a36847f8016e4d", "cast_id": 323, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 25}, {"name": "Keegan Farrell", "character": "Additional Voices (voice)", "id": 198810, "credit_id": "52fe4258c3a36847f8016e51", "cast_id": 324, "profile_path": null, "order": 26}, {"name": "Pat Fraley", "character": "Additional Voices (voice)", "id": 34737, "credit_id": "52fe4258c3a36847f8016e55", "cast_id": 325, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 27}, {"name": "Teresa Ganzel", "character": "Additional Voices (voice)", "id": 117081, "credit_id": "52fe4258c3a36847f8016e59", "cast_id": 326, "profile_path": "/4cIwealxv1bizPJks34Gfk7okBF.jpg", "order": 28}, {"name": "Taylor Gifaldi", "character": "Additional Voices (voice)", "id": 167666, "credit_id": "52fe4258c3a36847f8016e5d", "cast_id": 327, "profile_path": "/fKBPTq7D02a2wbcbrEnlZTVngAA.jpg", "order": 29}, {"name": "Marc John Jefferies", "character": "Additional Voices (voice)", "id": 62646, "credit_id": "52fe4258c3a36847f8016e61", "cast_id": 328, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 30}, {"name": "Joe Lala", "character": "Additional Voices (voice)", "id": 167667, "credit_id": "52fe4258c3a36847f8016e65", "cast_id": 329, "profile_path": "/ssPI0vk4TimoYYrMaHYDcwAO2pq.jpg", "order": 31}, {"name": "Noah Luke", "character": "Additional Voices (voice)", "id": 1231571, "credit_id": "52fe4258c3a36847f8016e69", "cast_id": 330, "profile_path": null, "order": 32}, {"name": "Sherry Lynn", "character": "Additional Voices (voice)", "id": 214701, "credit_id": "52fe4258c3a36847f8016e6d", "cast_id": 331, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 33}, {"name": "Danny Mann", "character": "Additional Voices (voice)", "id": 52699, "credit_id": "52fe4258c3a36847f8016e71", "cast_id": 332, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 34}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "52fe4258c3a36847f8016e75", "cast_id": 333, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 35}, {"name": "Mickie McGowan", "character": "Additional Voices (voice)", "id": 84493, "credit_id": "52fe4258c3a36847f8016e79", "cast_id": 334, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 36}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "52fe4258c3a36847f8016e7d", "cast_id": 335, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 37}, {"name": "Kay Panabaker", "character": "Additional Voices (voice)", "id": 38703, "credit_id": "52fe4258c3a36847f8016e81", "cast_id": 336, "profile_path": "/ucba2M5Mt1Roa1fJVNA7PRybjMm.jpg", "order": 38}, {"name": "Bret 'Brook' Parker", "character": "Trailer Mom (voice) (as Bret Parker)", "id": 7998, "credit_id": "52fe4258c3a36847f8016e85", "cast_id": 337, "profile_path": "/776ZYJGQO4Wer1cDq9XXAZ0z4C1.jpg", "order": 39}, {"name": "Philip Proctor", "character": "Additional Voices (voice)", "id": 61969, "credit_id": "52fe4258c3a36847f8016e89", "cast_id": 338, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 40}, {"name": "Josh Qualtieri", "character": "Additional Voices (voice)", "id": 1268117, "credit_id": "52fe4258c3a36847f8016e8d", "cast_id": 339, "profile_path": "/xTZ3I73gw04EqFum07pxRhG34Jw.jpg", "order": 41}, {"name": "Guido Quaroni", "character": "Additional Voices (voice)", "id": 15898, "credit_id": "52fe4258c3a36847f8016e91", "cast_id": 340, "profile_path": "/qfnm3XzrMljLhU3HoNfYk0YGoBw.jpg", "order": 42}, {"name": "Jan Rabson", "character": "Additional Voices (voice)", "id": 157626, "credit_id": "52fe4258c3a36847f8016e95", "cast_id": 341, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 43}, {"name": "Lisa Raggio", "character": "Additional Voices (voice)", "id": 152963, "credit_id": "52fe4258c3a36847f8016e99", "cast_id": 342, "profile_path": "/aYMBogWREezqmVD9PBeJ9y5l8GU.jpg", "order": 44}, {"name": "Joe Ranft", "character": "Additional Voices (voice)", "id": 7911, "credit_id": "52fe4258c3a36847f8016e9d", "cast_id": 343, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 45}, {"name": "Katherine Ringgold", "character": "Additional Voices (voice)", "id": 8066, "credit_id": "52fe4258c3a36847f8016ea1", "cast_id": 345, "profile_path": "/se4SkPHGzo7RHi9kXbfgyFvLErH.jpg", "order": 46}, {"name": "Sophia Ranft", "character": "Additional Voices (voice)", "id": 1268123, "credit_id": "52fe4258c3a36847f8016eb9", "cast_id": 351, "profile_path": null, "order": 47}, {"name": "Bob Scott", "character": "Additional Voices (voice)", "id": 954958, "credit_id": "52fe4258c3a36847f8016ea5", "cast_id": 346, "profile_path": null, "order": 48}, {"name": "Jim Thornton", "character": "Additional Voices (voice)", "id": 1156411, "credit_id": "52fe4258c3a36847f8016ead", "cast_id": 348, "profile_path": "/aaRo50aRLGJCaqRVZCkJyUkHiZY.jpg", "order": 50}, {"name": "Lee Unkrich", "character": "Additional Voices (voice)", "id": 8, "credit_id": "52fe4258c3a36847f8016eb1", "cast_id": 349, "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "order": 51}, {"name": "Wallace Shawn", "character": "Rex (outtakes) (voice) (uncredited)", "id": 12900, "credit_id": "52fe4258c3a36847f8016eb5", "cast_id": 350, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 52}, {"name": "Dan Gerson", "character": "Needleman / Smitty (voice)", "id": 7884, "credit_id": "53084060c3a3680b110001ae", "cast_id": 352, "profile_path": "/fB1vefUJ9hwKewW5BafNQImsslC.jpg", "order": 53}, {"name": "David Silverman", "character": "Additional Voices (voice)", "id": 197, "credit_id": "53084362925141110e0019ee", "cast_id": 353, "profile_path": "/oatUUj2riEaUSoncMv1Ulheffog.jpg", "order": 54}], "directors": [{"name": "Lee Unkrich", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f801685d", "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "id": 8}, {"name": "David Silverman", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f8016863", "profile_path": "/oatUUj2riEaUSoncMv1Ulheffog.jpg", "id": 197}, {"name": "Pete Docter", "department": "Directing", "job": "Director", "credit_id": "52fe4257c3a36847f8016e01", "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "id": 12890}], "vote_average": 7.1, "runtime": 92}, "587": {"poster_path": "/6DRFdlNZpAaEt7eejsbAlJGgaM7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122919055, "overview": "The story revolves around a dying father and his son, who is trying to learn more about his dad by piecing together the stories he has gathered over the years. The son winds up re-creating his father's elusive life in a series of legends and myths inspired by the few facts he knows. Through these tales, the son begins to understand his father's great feats and his great failings.", "video": false, "id": 587, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Big Fish", "tagline": "An adventure as big as life itself.", "vote_count": 469, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0319061", "adult": false, "backdrop_path": "/kK1rVmqk8pLTuK5ZE7eVdCSqqHL.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Jinks/Cohen Company", "id": 2721}, {"name": "The Zanuck Company", "id": 80}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2003-12-10", "popularity": 0.932861951698831, "original_title": "Big Fish", "budget": 70000000, "cast": [{"name": "Ewan McGregor", "character": "Younger Ed Bloom", "id": 3061, "credit_id": "52fe4258c3a36847f8016fff", "cast_id": 5, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Albert Finney", "character": "Older Ed Bloom", "id": 3926, "credit_id": "52fe4258c3a36847f801706f", "cast_id": 24, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 1}, {"name": "Billy Crudup", "character": "Will Bloom", "id": 8289, "credit_id": "52fe4258c3a36847f8017073", "cast_id": 25, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 2}, {"name": "Jessica Lange", "character": "Older Sandra Bloom", "id": 4431, "credit_id": "52fe4258c3a36847f8017077", "cast_id": 26, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 3}, {"name": "Helena Bonham Carter", "character": "Younger & Older Jenny/The Witch", "id": 1283, "credit_id": "52fe4258c3a36847f801707b", "cast_id": 27, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 4}, {"name": "Alison Lohman", "character": "Younger Sandra Bloom", "id": 8291, "credit_id": "52fe4258c3a36847f801707f", "cast_id": 28, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Josephine", "id": 8293, "credit_id": "52fe4258c3a36847f8017083", "cast_id": 29, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Robert Guillaume", "character": "Older Dr. Bennett", "id": 8294, "credit_id": "52fe4258c3a36847f8017087", "cast_id": 30, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 7}, {"name": "Matthew McGrory", "character": "Karl the Giant", "id": 8295, "credit_id": "52fe4258c3a36847f801708b", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "David Denman", "character": "Don Price - Age 18-22", "id": 62562, "credit_id": "52fe4258c3a36847f8017095", "cast_id": 33, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 9}, {"name": "Missi Pyle", "character": "Mildred", "id": 1294, "credit_id": "52fe4258c3a36847f8017099", "cast_id": 34, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 10}, {"name": "Loudon Wainwright III", "character": "Beamen", "id": 84848, "credit_id": "52fe4258c3a36847f801709d", "cast_id": 35, "profile_path": "/dXknB49LSGxMcmhYGch7hcsYFY1.jpg", "order": 11}, {"name": "Arlene Tai", "character": "Jing", "id": 1116140, "credit_id": "52fe4258c3a36847f80170a1", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Ada Tai", "character": "Ping", "id": 1116141, "credit_id": "52fe4258c3a36847f80170a5", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Steve Buscemi", "character": "Norther Winslow", "id": 884, "credit_id": "52fe4258c3a36847f80170a9", "cast_id": 38, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 14}, {"name": "Danny DeVito", "character": "Amos Calloway", "id": 518, "credit_id": "52fe4258c3a36847f80170ad", "cast_id": 39, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 15}, {"name": "Deep Roy", "character": "Mr. Soggybottom", "id": 1295, "credit_id": "52fe4258c3a36847f80170b1", "cast_id": 40, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 16}, {"name": "Miley Cyrus", "character": "Ruthie - Age 8", "id": 76594, "credit_id": "52fe4258c3a36847f80170b5", "cast_id": 41, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 17}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4258c3a36847f8016fef", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 7.2, "runtime": 125}, "588": {"poster_path": "/862ko2hKHE7RZt2GOWYIJjQQAnU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97607453, "overview": "A girl has a bad case of sleep walking and while dreaming talks about a place called Silent Hill. Her parents take her to this place that she only mentions in dreams yet in an attempt to get there they crash their car and loose their daughter. They begin searching for her yet not knowing the dangers that lurk in Silent Hill.", "video": false, "id": 588, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Silent Hill", "tagline": "We've been expecting you.", "vote_count": 261, "homepage": "http://www.sonypictures.com/homevideo/silenthill/", "belongs_to_collection": {"backdrop_path": "/yBpC88ucxLLjD7rXqfA4Irk92ka.jpg", "poster_path": "/4cJgWqtVfVxxzpqyKkUtClHY0VM.jpg", "id": 64748, "name": "Silent Hill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384537", "adult": false, "backdrop_path": "/6tfW4BjdgwuYSD7gaEMEEPoDcpH.jpg", "production_companies": [{"name": "Davis-Films", "id": 342}, {"name": "Konami Corporation Ltd.", "id": 343}], "release_date": "2006-04-21", "popularity": 0.817931933063222, "original_title": "Silent Hill", "budget": 50000000, "cast": [{"name": "Radha Mitchell", "character": "Rose Da Silva", "id": 8329, "credit_id": "52fe4258c3a36847f8017167", "cast_id": 13, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 0}, {"name": "Sean Bean", "character": "Christopher Da Silva", "id": 48, "credit_id": "52fe4258c3a36847f801716b", "cast_id": 14, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 1}, {"name": "Laurie Holden", "character": "Cybil Bennett", "id": 8332, "credit_id": "52fe4258c3a36847f801716f", "cast_id": 15, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 2}, {"name": "Deborah Kara Unger", "character": "Dahlia Gillespie", "id": 13549, "credit_id": "52fe4258c3a36847f8017229", "cast_id": 51, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 3}, {"name": "Kim Coates", "character": "Officer Thomas Gucci", "id": 8335, "credit_id": "52fe4258c3a36847f8017173", "cast_id": 16, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 4}, {"name": "Tanya Allen", "character": "Anna", "id": 8336, "credit_id": "52fe4258c3a36847f8017177", "cast_id": 17, "profile_path": "/v60RHxBRJsmnjxMBmM5BTm3MBqo.jpg", "order": 5}, {"name": "Alice Krige", "character": "Christabella", "id": 2506, "credit_id": "52fe4258c3a36847f801717b", "cast_id": 18, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 6}, {"name": "Jodelle Ferland", "character": "Sharon/Alessa", "id": 8338, "credit_id": "52fe4258c3a36847f801717f", "cast_id": 19, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 7}, {"name": "Colleen Williams", "character": "Archivist", "id": 8341, "credit_id": "52fe4258c3a36847f8017183", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ron Gabriel", "character": "Old Mechanic", "id": 8343, "credit_id": "52fe4258c3a36847f8017187", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Derek Ritschel", "character": "Young Police Officer", "id": 8345, "credit_id": "52fe4258c3a36847f801718b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Eve Crawford", "character": "Sister Margaret", "id": 8347, "credit_id": "52fe4258c3a36847f801718f", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Amanda Hiebert", "character": "Gas Attendant", "id": 8348, "credit_id": "52fe4258c3a36847f8017193", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Nicky Guadagni", "character": "Distressed Woman", "id": 5889, "credit_id": "52fe4258c3a36847f8017197", "cast_id": 25, "profile_path": "/2HJwL5EmMQSggNKfO9xc6DANmL6.jpg", "order": 13}, {"name": "Roberto Campanella", "character": "Red Pyramid/Janitor/Colin", "id": 8352, "credit_id": "52fe4258c3a36847f801719b", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Maxine Dumont", "character": "Christabella's Aide", "id": 8359, "credit_id": "52fe4258c3a36847f801723f", "cast_id": 55, "profile_path": "/wnk4f1LZT8pqu4a3wlCXHvTVHet.jpg", "order": 15}], "directors": [{"name": "Christophe Gans", "department": "Directing", "job": "Director", "credit_id": "52fe4258c3a36847f8017127", "profile_path": "/8tFxHa7RT3MOBTs72j9pSwkG6MJ.jpg", "id": 8296}], "vote_average": 6.3, "runtime": 125}, "590": {"poster_path": "/vRTqBRCLGiZNITXfdhGZd3tZ7Qh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108846072, "overview": "\"The Hours\" is the story of three women searching for more potent, meaningful lives. Each is alive at a different time and place, all are linked by their yearnings and their fears. Their stories intertwine, and finally come together in a surprising, transcendent moment of shared recognition.", "video": false, "id": 590, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hours", "tagline": "The time to hide is over. The time to regret is gone. The time to live is now.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0274558", "adult": false, "backdrop_path": "/yGdO0KleREN50MRxjPDnHcbvAVL.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Miramax Films", "id": 14}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2002-12-27", "popularity": 0.943173060696782, "original_title": "The Hours", "budget": 25000000, "cast": [{"name": "Nicole Kidman", "character": "Virginia Woolf", "id": 2227, "credit_id": "52fe4258c3a36847f80172a1", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Laura Brown", "id": 1231, "credit_id": "52fe4258c3a36847f80172a5", "cast_id": 6, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Meryl Streep", "character": "Clarissa Vaughan", "id": 5064, "credit_id": "52fe4258c3a36847f80172a9", "cast_id": 7, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Leonard Woolf", "id": 8435, "credit_id": "52fe4258c3a36847f80172ad", "cast_id": 8, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Miranda Richardson", "character": "Vanessa Bell", "id": 8436, "credit_id": "52fe4258c3a36847f80172b1", "cast_id": 9, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 4}, {"name": "George Loftus", "character": "Quentin Bell", "id": 8439, "credit_id": "52fe4258c3a36847f80172b5", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Charley Ramm", "character": "Julian Bell", "id": 8440, "credit_id": "52fe4258c3a36847f80172b9", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Sophie Wyburd", "character": "Angelica Bell", "id": 8441, "credit_id": "52fe4258c3a36847f80172bd", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Lyndsey Marshal", "character": "Lottie Hope", "id": 8442, "credit_id": "52fe4258c3a36847f80172c1", "cast_id": 13, "profile_path": "/r661RpVSsy6cS7m5adhT8QFydPf.jpg", "order": 8}, {"name": "Linda Bassett", "character": "Nelly Boxall", "id": 8443, "credit_id": "52fe4258c3a36847f80172c5", "cast_id": 14, "profile_path": "/raya4YIZ9ArIxl1nVvj1Aoo7XQj.jpg", "order": 9}, {"name": "Christian Coulson", "character": "Ralph Partridge", "id": 8444, "credit_id": "52fe4258c3a36847f80172c9", "cast_id": 15, "profile_path": "/dfbirdWAL0deUUtIV7GD1T1PGWp.jpg", "order": 10}, {"name": "Michael Culkin", "character": "Doctor", "id": 8445, "credit_id": "52fe4258c3a36847f80172cd", "cast_id": 16, "profile_path": "/ROLw9EhtO44DPwdRrmX6RyFPZN.jpg", "order": 11}, {"name": "John C. Reilly", "character": "Dan Brown", "id": 4764, "credit_id": "52fe4258c3a36847f80172d1", "cast_id": 17, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 12}, {"name": "Jack Rovello", "character": "Richie", "id": 8446, "credit_id": "52fe4258c3a36847f80172d5", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Toni Collette", "character": "Kitty", "id": 3051, "credit_id": "52fe4258c3a36847f80172d9", "cast_id": 19, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 14}, {"name": "Ed Harris", "character": "Richard Brown", "id": 228, "credit_id": "52fe4258c3a36847f80172dd", "cast_id": 20, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 15}, {"name": "Allison Janney", "character": "Sally Lester", "id": 19, "credit_id": "52fe4258c3a36847f80172e1", "cast_id": 21, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 16}, {"name": "Claire Danes", "character": "Julia Vaughan", "id": 6194, "credit_id": "52fe4258c3a36847f80172e5", "cast_id": 22, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 17}, {"name": "Jeff Daniels", "character": "Louis Waters", "id": 8447, "credit_id": "52fe4258c3a36847f80172e9", "cast_id": 23, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 18}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe4258c3a36847f8017291", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 6.6, "runtime": 114}, "591": {"poster_path": "/e5Tlc0mNhb9TvgCZknmnd3XaaKU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MT", "name": "Malta"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 758239851, "overview": "When the curator of the Louvre is found murdered in the famed museum's hallowed halls, Harvard professor Robert Langdon and cryptographer Sophie Neve must untangle a deadly web of deceit involving the works of Leonardo da Vinci.", "video": false, "id": 591, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Da Vinci Code", "tagline": "So Dark The Con Of Man", "vote_count": 812, "homepage": "http://www.sonypictures.com/homevideo/thedavincicode/index.html", "belongs_to_collection": {"backdrop_path": "/j1IqpLhCypllamjKe6C2RstjfEQ.jpg", "poster_path": "/8AeWdpMobmSlo4G2eY4w8REdIDe.jpg", "id": 115776, "name": "Robert Langdon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0382625", "adult": false, "backdrop_path": "/vknb1AHOKOia2lGaGo4orNsTSXf.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Skylark Productions", "id": 8253}, {"name": "Government of Malta", "id": 19927}], "release_date": "2006-05-19", "popularity": 1.80172938318536, "original_title": "The Da Vinci Code", "budget": 125000000, "cast": [{"name": "Tom Hanks", "character": "Dr. Robert Langdon", "id": 31, "credit_id": "52fe4259c3a36847f8017445", "cast_id": 33, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Audrey Tautou", "character": "Sophie Neveu", "id": 2405, "credit_id": "52fe4259c3a36847f8017441", "cast_id": 32, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Sir Leigh Teabing", "id": 1327, "credit_id": "52fe4259c3a36847f8017449", "cast_id": 34, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Silas", "id": 6162, "credit_id": "52fe4259c3a36847f801744d", "cast_id": 35, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Jean Reno", "character": "Bezu Face", "id": 1003, "credit_id": "52fe4259c3a36847f8017451", "cast_id": 36, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Alfred Molina", "character": "Manuel Aringarosa", "id": 658, "credit_id": "52fe4259c3a36847f8017455", "cast_id": 37, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 5}, {"name": "Jean-Yves Berteloot", "character": "R\u00e9my Jean", "id": 34259, "credit_id": "52fe4259c3a36847f8017459", "cast_id": 38, "profile_path": "/fJzUeNDhSZmKSmjaIW5dHhTwdYS.jpg", "order": 6}, {"name": "Jean-Pierre Marielle", "character": "Jacques Saunier", "id": 20795, "credit_id": "52fe4259c3a36847f801745d", "cast_id": 39, "profile_path": "/ft0uW6QrcTxRikAEX2diD6pKFcL.jpg", "order": 7}, {"name": "J\u00fcrgen Prochnow", "character": "Andr\u00e9 Vernet", "id": 920, "credit_id": "52fe4259c3a36847f8017461", "cast_id": 41, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 8}, {"name": "Marie-Fran\u00e7oise Audollent", "character": "Soeur Sandrine", "id": 38885, "credit_id": "52fe4259c3a36847f8017465", "cast_id": 42, "profile_path": "/oDLfOJnv982yuKfDrXXKllpBBmG.jpg", "order": 9}, {"name": "Agathe Natanson", "character": "Ritual Priestress", "id": 28186, "credit_id": "52fe4259c3a36847f8017469", "cast_id": 43, "profile_path": "/8fGakV7phLAfT8yvZvkNAfc4yrE.jpg", "order": 10}, {"name": "Tina Maskell", "character": "Mother of Silas", "id": 38886, "credit_id": "52fe4259c3a36847f801746d", "cast_id": 44, "profile_path": "/3YVQpTswDkDRdcV4p6JPPMC4q3h.jpg", "order": 11}, {"name": "Peter Pedrero", "character": "Father of Silas", "id": 38887, "credit_id": "52fe4259c3a36847f8017471", "cast_id": 45, "profile_path": "/puBh7leRbL0RIfqQGUUgUYPOjTo.jpg", "order": 12}, {"name": "Seth Gabel", "character": "Michael", "id": 38888, "credit_id": "52fe4259c3a36847f8017475", "cast_id": 46, "profile_path": "/luxC39d38CENJY01TeHJb4M9CFk.jpg", "order": 13}, {"name": "Dhaffer L'Abidine", "character": "L'agent du PTS", "id": 129014, "credit_id": "52fe4259c3a36847f8017479", "cast_id": 47, "profile_path": "/bVksgnm8Wj3RsqV4YgTP9LwME6A.jpg", "order": 14}, {"name": "Etienne Chicot", "character": "Lt. Collet", "id": 150792, "credit_id": "52fe4259c3a36847f801747d", "cast_id": 48, "profile_path": "/pYbudifKWa0sYY5QkQc5YKLHfMf.jpg", "order": 15}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f80173a1", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.2, "runtime": 149}, "592": {"poster_path": "/un30a9MWgCzMIBpOp3P29W5eHvZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4420000, "overview": "The Conversation is a Francis Ford Coppola thriller from 1974 about a professional surveillance man who is hired to record the conversations between two workers. Yet it looks like he\u2019s gotten into more than he\u2019s getting paid for as information about a murder may have been recorded.", "video": false, "id": 592, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "The Conversation", "tagline": "Harry Caul is an invader of privacy. The best in the business.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071360", "adult": false, "backdrop_path": "/oVqcMj0DqZ1CjtCjve7eX5XjYaw.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "The Directors Company", "id": 14120}, {"name": "The Coppola Company", "id": 536}], "release_date": "1974-04-07", "popularity": 0.617208446442021, "original_title": "The Conversation", "budget": 16000000, "cast": [{"name": "Gene Hackman", "character": "Harry Caul", "id": 193, "credit_id": "52fe4259c3a36847f8017513", "cast_id": 18, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "John Cazale", "character": "Stan", "id": 3096, "credit_id": "52fe4259c3a36847f8017517", "cast_id": 19, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 1}, {"name": "Frederic Forrest", "character": "Mark", "id": 8351, "credit_id": "52fe4259c3a36847f801752f", "cast_id": 25, "profile_path": "/fCHsWrGcgfREM7e9POq6FCFGvR9.jpg", "order": 2}, {"name": "Cindy Williams", "character": "Ann", "id": 8434, "credit_id": "52fe4259c3a36847f801751b", "cast_id": 20, "profile_path": "/4lOJA6lyFhJvhlkgH6RRDiq9kXI.jpg", "order": 3}, {"name": "Harrison Ford", "character": "Martin Stett", "id": 3, "credit_id": "52fe4259c3a36847f801751f", "cast_id": 21, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 4}, {"name": "Teri Garr", "character": "Amy Fredericks", "id": 8437, "credit_id": "52fe4259c3a36847f8017523", "cast_id": 22, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 5}, {"name": "Allen Garfield", "character": "William P. 'Bernie' Moran", "id": 922, "credit_id": "52fe4259c3a36847f801752b", "cast_id": 24, "profile_path": "/wa8WAH20QGm1fLPR5Wrbja5C5rx.jpg", "order": 6}, {"name": "Elizabeth MacRae", "character": "Meredith", "id": 8438, "credit_id": "52fe4259c3a36847f8017527", "cast_id": 23, "profile_path": "/wjOm2hIoaHNj9cjM4H6oG4EaVHJ.jpg", "order": 7}, {"name": "Robert Duvall", "character": "The Director", "id": 3087, "credit_id": "546be00e925141304c0000f0", "cast_id": 27, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 8}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f80174b5", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 7.0, "runtime": 113}, "593": {"poster_path": "/pjarQzkcXDmNKi75m2FhXexvR6m.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}], "revenue": 0, "overview": "Ground control has been receiving strange transmissions from the three remaining residents of the Solaris space station. When cosmonaut and psychologist Kris Kelvin is sent to investigate, he experiences the strange phenomena that afflict the Solaris crew, sending him on a voyage into the darkest recesses of his own consciousness. Based on the novel by the same name from Polish author Stanislaw Lem.", "video": false, "id": 593, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Solaris", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0069293", "adult": false, "backdrop_path": "/6bPs1rIUOACluLosyh5EGw7ZYNj.jpg", "production_companies": [{"name": "Mosfilm", "id": 5120}], "release_date": "1972-03-20", "popularity": 0.910020921523035, "original_title": "\u0421\u043e\u043b\u044f\u0440\u0438\u0441", "budget": 0, "cast": [{"name": "Donatas Banionis", "character": "Kris Kelvin", "id": 1190206, "credit_id": "52fe4259c3a36847f80175c5", "cast_id": 28, "profile_path": "/hbeqbytpzJ99rQwhcYipwVq4qJS.jpg", "order": 0}, {"name": "Natalya Bondarchuk", "character": "Hari", "id": 1190211, "credit_id": "52fe4259c3a36847f80175c9", "cast_id": 29, "profile_path": "/xO2yG9TDVs8929L9phBo662EeUw.jpg", "order": 1}, {"name": "J\u00fcri J\u00e4rvet", "character": "Dr. Snaut", "id": 8474, "credit_id": "52fe4259c3a36847f80175a3", "cast_id": 18, "profile_path": "/sj3jlIihox7yRwn7UpBCpeUj89U.jpg", "order": 2}, {"name": "Anatoliy Solonitsyn", "character": "Dr. Sartorius", "id": 8475, "credit_id": "52fe4259c3a36847f80175a7", "cast_id": 19, "profile_path": "/mTz5gtiX2Y8B5TajEjQbnTTXlgP.jpg", "order": 3}, {"name": "Nikolay Grinko", "character": "Kelvin's Father", "id": 1190992, "credit_id": "52fe4259c3a36847f80175cd", "cast_id": 31, "profile_path": "/kSppXUS2WdGwVSNFZZpmXCdlKia.jpg", "order": 4}, {"name": "Vladislav Dvorzhetsky", "character": "Henri Berton", "id": 8476, "credit_id": "52fe4259c3a36847f80175ab", "cast_id": 20, "profile_path": "/MyFhOpKqk6BnSeDpsp1cw3amyp.jpg", "order": 5}, {"name": "Georgiy Teykh", "character": "Prof. Messenger", "id": 564897, "credit_id": "53d15307c3a368776a00a6a3", "cast_id": 32, "profile_path": "/ld14WJzJrrbHNfwNDV1QEkbgokr.jpg", "order": 6}, {"name": "Sos Sargsyan", "character": "Dr. Gibarian", "id": 8478, "credit_id": "52fe4259c3a36847f80175af", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Olga Barnet", "character": "Kelvin's Mother", "id": 8479, "credit_id": "52fe4259c3a36847f80175b3", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Tamara Ogorodnikova", "character": "Anna", "id": 8480, "credit_id": "52fe4259c3a36847f80175b7", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Andrei Tarkovsky", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f8017563", "profile_path": "/kHK6uZclCj8ZHOZRI9Hq8Q8YXOg.jpg", "id": 8452}], "vote_average": 7.7, "runtime": 167}, "594": {"poster_path": "/f4Dup6awDfDqAHKgWqNJ2HFw1qN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219417255, "overview": "Viktor Navorski is a man without a country; his plane took off just as a coup d'etat exploded in his homeland, leaving it in shambles, and now he's stranded at Kennedy Airport, where he's holding a passport that nobody recognizes. While quarantined in the transit lounge until authorities can figure out what to do with him, Viktor simply goes on living -- and courts romance with a beautiful flight attendant.", "video": false, "id": 594, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Terminal", "tagline": "Life is waiting.", "vote_count": 551, "homepage": "http://www.theterminal-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0362227", "adult": false, "backdrop_path": "/lCSjseei1M2vqmuzxadJUiL8x5D.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2004-06-17", "popularity": 1.04011947150959, "original_title": "The Terminal", "budget": 60000000, "cast": [{"name": "Tom Hanks", "character": "Viktor Navorski", "id": 31, "credit_id": "52fe4259c3a36847f801762f", "cast_id": 4, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Amelia Warren", "id": 1922, "credit_id": "52fe4259c3a36847f8017633", "cast_id": 5, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Stanley Tucci", "character": "Frank Dixon", "id": 2283, "credit_id": "52fe4259c3a36847f8017637", "cast_id": 6, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 2}, {"name": "Chi McBride", "character": "Mulroy", "id": 8687, "credit_id": "52fe4259c3a36847f801763b", "cast_id": 7, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 3}, {"name": "Diego Luna", "character": "Enrique Cruz", "id": 8688, "credit_id": "52fe4259c3a36847f801763f", "cast_id": 8, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 4}, {"name": "Barry Shabaka Henley", "character": "Thurman", "id": 8689, "credit_id": "52fe4259c3a36847f8017643", "cast_id": 9, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 5}, {"name": "Kumar Pallana", "character": "Gupta Rajan", "id": 8690, "credit_id": "52fe4259c3a36847f8017647", "cast_id": 10, "profile_path": "/emTPxZIt9j8d4FcKMSpX3eDq0tO.jpg", "order": 6}, {"name": "Zoe Saldana", "character": "Torres", "id": 8691, "credit_id": "52fe4259c3a36847f801764b", "cast_id": 11, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 7}, {"name": "Eddie Jones", "character": "Salchak", "id": 8692, "credit_id": "52fe4259c3a36847f801764f", "cast_id": 12, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 8}, {"name": "Jude Ciccolella", "character": "Karl Iverson", "id": 8693, "credit_id": "52fe4259c3a36847f8017653", "cast_id": 13, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 9}, {"name": "Corey Reynolds", "character": "Waylin", "id": 8694, "credit_id": "52fe4259c3a36847f8017657", "cast_id": 14, "profile_path": "/faEdK8pyxXUuFsNGBTr26ybZd5l.jpg", "order": 10}, {"name": "Guillermo D\u00edaz", "character": "Bobby Alima", "id": 8695, "credit_id": "52fe4259c3a36847f801765b", "cast_id": 15, "profile_path": "/hnWjRRud2n2rDI6NbaeSIeEOMcP.jpg", "order": 11}, {"name": "Rini Bell", "character": "Nadia", "id": 8696, "credit_id": "52fe4259c3a36847f801765f", "cast_id": 16, "profile_path": "/esSI9X2EoKEMDyp6ntjIkJDVYqk.jpg", "order": 12}, {"name": "Stephen Mendel", "character": "Steward First Class", "id": 8697, "credit_id": "52fe4259c3a36847f8017663", "cast_id": 17, "profile_path": "/dPdVvIMpclp64Q7DWbQHcUVCfLB.jpg", "order": 13}, {"name": "Valeri Nikolayev", "character": "Milodragovich", "id": 8698, "credit_id": "52fe4259c3a36847f8017667", "cast_id": 18, "profile_path": "/tGqjecLgqTQk96mhLMYEnkgA0eI.jpg", "order": 14}, {"name": "Michael Nouri", "character": "Max", "id": 8699, "credit_id": "52fe4259c3a36847f801766b", "cast_id": 19, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 15}, {"name": "Sasha Spielberg", "character": "Lucy", "id": 8700, "credit_id": "52fe4259c3a36847f801766f", "cast_id": 20, "profile_path": "/3ltMYYXQ6lZUxqLiAsTSn29cVCS.jpg", "order": 16}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f801761f", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.9, "runtime": 128}, "595": {"poster_path": "/gQg6sPYfNTUlf8wEtydzWl09RyR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13129846, "overview": "To Kill A Mockingbird is the film adaptation of the classic book by Harper Lee. The film tells the story of a child in a small American town in the 1930\u2019s where color prejudice, racial hatred, and taking the law into your own hands were everyday events. Gregory Peck would receive an Oscar for his excellent portrayal of a single father named Atticus Finch.", "video": false, "id": 595, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "To Kill a Mockingbird", "tagline": "If you have read the novel, you will relive every treasured moment... If not, a deeply moving experience awaits you!", "vote_count": 107, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056592", "adult": false, "backdrop_path": "/bicuIvUMD8LTK5QFtSRlq1Nz0Aj.jpg", "production_companies": [{"name": "Brentwood Productions", "id": 24308}, {"name": "Universal International Pictures (UI)", "id": 10330}, {"name": "Pakula-Mulligan", "id": 1511}], "release_date": "1962-12-25", "popularity": 0.971500857495895, "original_title": "To Kill a Mockingbird", "budget": 2000000, "cast": [{"name": "Gregory Peck", "character": "Atticus Finch", "id": 8487, "credit_id": "52fe4259c3a36847f8017735", "cast_id": 8, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "Mary Badham", "character": "Jean Louise 'Scout' Finch", "id": 8488, "credit_id": "52fe4259c3a36847f8017739", "cast_id": 9, "profile_path": "/c4CQsZG9GiTxrNr9iENrwFff51O.jpg", "order": 1}, {"name": "Phillip Alford", "character": "Jeremy 'Jem' Finch", "id": 8489, "credit_id": "52fe4259c3a36847f801773d", "cast_id": 10, "profile_path": "/lpyYiv5vilyhk57u3vwK034k9l4.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Arthur 'Boo' Radley", "id": 3087, "credit_id": "52fe4259c3a36847f8017741", "cast_id": 11, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "John Megna", "character": "Charles Baker 'Dill' Harris", "id": 8490, "credit_id": "52fe4259c3a36847f8017745", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Frank Overton", "character": "Sheriff Heck Tate", "id": 6838, "credit_id": "52fe4259c3a36847f8017749", "cast_id": 13, "profile_path": "/5XRnGQab6s3Eql4TjPOpNqO0heE.jpg", "order": 5}, {"name": "Rosemary Murphy", "character": "Maudie Atkinson", "id": 8492, "credit_id": "52fe4259c3a36847f801774d", "cast_id": 14, "profile_path": "/mNrRc207chuOUgNizM0cmTfwDxP.jpg", "order": 6}, {"name": "Ruth White", "character": "Mrs. Dubose", "id": 8493, "credit_id": "52fe4259c3a36847f8017751", "cast_id": 15, "profile_path": "/fpz3aVtyHw3luNQxoRkYBlOOqIa.jpg", "order": 7}, {"name": "Brock Peters", "character": "Tom Robinson", "id": 2112, "credit_id": "52fe4259c3a36847f8017755", "cast_id": 16, "profile_path": "/iFSHbqBaOKiqsZFpUteqbCJQmR7.jpg", "order": 8}, {"name": "Estelle Evans", "character": "Calpurnia", "id": 8494, "credit_id": "52fe4259c3a36847f8017759", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Alice Ghostley", "character": "Aunt Stephanie Crawford", "id": 8495, "credit_id": "52fe4259c3a36847f801775d", "cast_id": 18, "profile_path": "/byH2NPrSia2OkluSbvAS4HvFU07.jpg", "order": 10}, {"name": "Paul Fix", "character": "Judge Taylor", "id": 8496, "credit_id": "52fe4259c3a36847f8017761", "cast_id": 19, "profile_path": "/bFJC3Qfckylu6T1lyMBEqUaDWCF.jpg", "order": 11}, {"name": "Collin Wilcox", "character": "Mayella Violet Ewell", "id": 8497, "credit_id": "52fe4259c3a36847f8017765", "cast_id": 20, "profile_path": "/20moI5kP6wgDGsPju2J61AlGi1N.jpg", "order": 12}, {"name": "James K Anderson", "character": "Robert E. Lee 'Bob' Ewell", "id": 8498, "credit_id": "52fe4259c3a36847f8017769", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "William Windom", "character": "Prosecutor Mr. Gilmer", "id": 8499, "credit_id": "52fe4259c3a36847f801776d", "cast_id": 22, "profile_path": "/nTqbMx3o9rk6Q5PfS3fwh5LEbGw.jpg", "order": 14}, {"name": "Crahan Denton", "character": "Walter Cunningham Sr.", "id": 13787, "credit_id": "55126de9925141045c000e46", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Richard Hale", "character": "Nathan Radley", "id": 16055, "credit_id": "55126dfd925141045c000e49", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Danny Borzage", "character": "Courtroom Spectator (uncredited)", "id": 1404180, "credit_id": "55126e2e92514103e9000d08", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Kim Stanley", "character": "Scout as an Adult - Narrator (voice) (uncredited)", "id": 31440, "credit_id": "55126e45c3a3681db200f6db", "cast_id": 28, "profile_path": "/bCL1tymwXIShJF64C91J5h5wvEW.jpg", "order": 18}], "directors": [{"name": "Robert Mulligan", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f801770d", "profile_path": "/oteXfOHRPqiX39sUNOOvDNVZT36.jpg", "id": 8482}], "vote_average": 7.6, "runtime": 129}, "597": {"poster_path": "/f9iH7Javzxokvnkiz2yHD1dcmUy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1845034188, "overview": "84 years later, a 101-year-old woman named Rose DeWitt Bukater tells the story to her granddaughter Lizzy Calvert, Brock Lovett, Lewis Bodine, Bobby Buell and Anatoly Mikailavich on the Keldysh about her life set in April 10th 1912, on a ship called Titanic when young Rose boards the departing ship with the upper-class passengers and her mother, Ruth DeWitt Bukater, and her fianc\u00e9, Caledon Hockley. Meanwhile, a drifter and artist named Jack Dawson and his best friend Fabrizio De Rossi win third-class tickets to the ship in a game. And she explains the whole story from departure until the death of Titanic on its first and last voyage April 15th, 1912 at 2:20 in the morning.", "video": false, "id": 597, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Titanic", "tagline": "Nothing on Earth could come between them.", "vote_count": 2806, "homepage": "http://www.titanicmovie.com/menu.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0120338", "adult": false, "backdrop_path": "/fVcZErSWa7gyENuj8IWp8eAfCnL.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Paramount Pictures", "id": 4}, {"name": "Lightstorm Entertainment", "id": 574}], "release_date": "1997-12-19", "popularity": 2.52473164654832, "original_title": "Titanic", "budget": 200000000, "cast": [{"name": "Kate Winslet", "character": "Rose DeWitt Bukater", "id": 204, "credit_id": "52fe425ac3a36847f80179cb", "cast_id": 20, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Leonardo DiCaprio", "character": "Jack Dawson", "id": 6193, "credit_id": "52fe425ac3a36847f80179cf", "cast_id": 21, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 1}, {"name": "Frances Fisher", "character": "Ruth Dewitt Bukater", "id": 3713, "credit_id": "52fe425ac3a36847f80179d3", "cast_id": 22, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 2}, {"name": "Billy Zane", "character": "Caledon 'Cal' Hockley", "id": 1954, "credit_id": "52fe425ac3a36847f80179d7", "cast_id": 23, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 3}, {"name": "Kathy Bates", "character": "Molly Brown", "id": 8534, "credit_id": "52fe425ac3a36847f80179db", "cast_id": 24, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 4}, {"name": "Gloria Stuart", "character": "Old Rose", "id": 8535, "credit_id": "52fe425ac3a36847f80179df", "cast_id": 25, "profile_path": "/fH9tJL2cgSqiKUOle5UWjCqx5FJ.jpg", "order": 5}, {"name": "Bill Paxton", "character": "Brock Lovett", "id": 2053, "credit_id": "52fe425ac3a36847f80179e3", "cast_id": 26, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 6}, {"name": "Bernard Hill", "character": "Captain Edward James Smith", "id": 1369, "credit_id": "52fe425ac3a36847f80179e7", "cast_id": 27, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 7}, {"name": "David Warner", "character": "Spicer Lovejoy", "id": 2076, "credit_id": "52fe425ac3a36847f80179eb", "cast_id": 28, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 8}, {"name": "Victor Garber", "character": "Thomas Andrews", "id": 8536, "credit_id": "52fe425ac3a36847f80179ef", "cast_id": 29, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 9}, {"name": "Jonathan Hyde", "character": "Bruce Ismay", "id": 8537, "credit_id": "52fe425ac3a36847f80179f3", "cast_id": 30, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 10}, {"name": "Suzy Amis", "character": "Lizzy Calvert", "id": 2179, "credit_id": "52fe425ac3a36847f80179f7", "cast_id": 31, "profile_path": "/caqw60Y3qBMdlEPYr3ivZf9LAwC.jpg", "order": 11}, {"name": "Lewis Abernathy", "character": "Lewis Bodine", "id": 8538, "credit_id": "52fe425ac3a36847f80179fb", "cast_id": 32, "profile_path": "/cN23m7NhF2KCtNdDvPzZJk7NZTa.jpg", "order": 12}, {"name": "Nicholas Cascone", "character": "Bobby Buell", "id": 8539, "credit_id": "52fe425ac3a36847f80179ff", "cast_id": 33, "profile_path": "/9iOE3yuoqbbXUbocFNueAjPbLnC.jpg", "order": 13}, {"name": "Danny Nucci", "character": "Fabrizio", "id": 8540, "credit_id": "52fe425ac3a36847f8017a03", "cast_id": 34, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 14}, {"name": "Jason Barry", "character": "Tommy Ryan", "id": 8541, "credit_id": "52fe425ac3a36847f8017a07", "cast_id": 35, "profile_path": "/cHtfb7s9LsDGMJqm5bCl9HehecD.jpg", "order": 15}, {"name": "Lew Palter", "character": "Isidor Strauss", "id": 8543, "credit_id": "52fe425ac3a36847f8017a0b", "cast_id": 37, "profile_path": "/sUcEhVdc8LM7Epjixr5biTptVd7.jpg", "order": 16}, {"name": "Eric Braeden", "character": "John Jacob Astor IV", "id": 8544, "credit_id": "52fe425ac3a36847f8017a0f", "cast_id": 38, "profile_path": "/6dEqM2zylkopoZtr6quXW5i7W0V.jpg", "order": 17}, {"name": "Bernard Fox", "character": "Col. Archibald Gracie", "id": 8545, "credit_id": "52fe425ac3a36847f8017a13", "cast_id": 39, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 18}, {"name": "Ewan Stewart", "character": "1st Officer Murdoch", "id": 3071, "credit_id": "52fe425ac3a36847f8017a17", "cast_id": 40, "profile_path": "/lMJIOEOxNUa0RZo3Ib1UC50K2OO.jpg", "order": 19}, {"name": "Ioan Gruffudd", "character": "5th Officer Harold Lowe", "id": 65524, "credit_id": "52fe425ac3a36847f8017a1b", "cast_id": 41, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 20}, {"name": "Jonathan Phillips", "character": "2nd Officer Lightoller", "id": 8547, "credit_id": "52fe425ac3a36847f8017a1f", "cast_id": 42, "profile_path": "/9d7aKSqfqXHWaETmTKifetsekDa.jpg", "order": 21}, {"name": "Edward Fletcher", "character": "6th Officer Moody", "id": 8548, "credit_id": "52fe425ac3a36847f8017a23", "cast_id": 43, "profile_path": "/jFwISIeHP78Ju3myfobH8okbq5x.jpg", "order": 22}, {"name": "Scott G. Anderson", "character": "Frederick Fleet", "id": 8549, "credit_id": "52fe425ac3a36847f8017a27", "cast_id": 44, "profile_path": "/7F1Tj6ORbCUtXCBnKJ0nCf0bOY2.jpg", "order": 23}, {"name": "Martin East", "character": "Reginald Lee", "id": 8550, "credit_id": "52fe425ac3a36847f8017a2b", "cast_id": 45, "profile_path": "/mRee9EFIAhFiUth8KnCpYNDv6vq.jpg", "order": 24}, {"name": "Gregory Cooke", "character": "Jack Phillips", "id": 8551, "credit_id": "52fe425ac3a36847f8017a2f", "cast_id": 46, "profile_path": "/m8FyXu7UFcgwOidEK86Y2cCFau6.jpg", "order": 25}, {"name": "Alexandrea Owens", "character": "Cora Cartmell", "id": 8552, "credit_id": "52fe425ac3a36847f8017a33", "cast_id": 47, "profile_path": "/djIkfnq1b8wPPXlcyj80f3SCQva.jpg", "order": 26}, {"name": "Seth Adkins", "character": "Slovakian 3 Year Old Boy", "id": 8553, "credit_id": "52fe425ac3a36847f8017a37", "cast_id": 48, "profile_path": "/gmqJckjg37blaf4IKAzDnFTtV7N.jpg", "order": 27}, {"name": "Michael Ensign", "character": "Benjamin Guggenheim", "id": 1080265, "credit_id": "52fe425ac3a36847f8017a41", "cast_id": 50, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 28}, {"name": "Anatoly M. Sagalevitch", "character": "Anatoly Milkailavich", "id": 93215, "credit_id": "52fe425ac3a36847f8017a45", "cast_id": 51, "profile_path": "/wyQbndvdr7j05GaO6Bmp2O5fB0N.jpg", "order": 29}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f801795b", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.0, "runtime": 194}, "598": {"poster_path": "/gCqnQaq8T4CfioP9uETLx9iMJF4.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 27387381, "overview": "City of God depicts the raw violence in the ghettos of Rio de Janeiro. In the 1970\u2019s that kids are carrying guns and joining gangs when they should be playing hide-and-seek.", "video": false, "id": 598, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "City of God", "tagline": "If you run you're dead...if you stay, you're dead again. Period.", "vote_count": 513, "homepage": "http://cidadededeus.globo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0317248", "adult": false, "backdrop_path": "/k4BAPrE5WkNLvpsPsiMfu8W4Zyi.jpg", "production_companies": [{"name": "O2 Filmes", "id": 345}, {"name": "VideoFilmes", "id": 346}, {"name": "Globo filmes", "id": 10954}, {"name": "Lumiere", "id": 11444}, {"name": "Wild Bunch", "id": 856}, {"name": "Hank Levine Film", "id": 11445}, {"name": "Lereby Productions", "id": 11446}], "release_date": "2002-08-30", "popularity": 0.736719558297785, "original_title": "Cidade de Deus", "budget": 3300000, "cast": [{"name": "Alexandre Rodrigues", "character": "Buscap\u00e9", "id": 8595, "credit_id": "52fe425ac3a36847f8017b45", "cast_id": 34, "profile_path": null, "order": 0}, {"name": "Leandro Firmino", "character": "Z\u00e9 Pequeno", "id": 8596, "credit_id": "52fe425ac3a36847f8017b49", "cast_id": 35, "profile_path": "/48NdifM6zrKXN1fuxakDBbLzkMS.jpg", "order": 1}, {"name": "Phellipe Haagensen", "character": "Ben\u00e9", "id": 8597, "credit_id": "52fe425ac3a36847f8017b4d", "cast_id": 36, "profile_path": null, "order": 2}, {"name": "Douglas Silva", "character": "Dadinho", "id": 8598, "credit_id": "52fe425ac3a36847f8017b51", "cast_id": 37, "profile_path": null, "order": 3}, {"name": "Jonathan Haagensen", "character": "Cabeleira", "id": 8599, "credit_id": "52fe425ac3a36847f8017b55", "cast_id": 38, "profile_path": null, "order": 4}, {"name": "Matheus Nachtergaele", "character": "Sandro Cenoura", "id": 8600, "credit_id": "52fe425ac3a36847f8017b59", "cast_id": 39, "profile_path": "/lJMLW3NAJbV7AzHDz178HKSiuN5.jpg", "order": 5}, {"name": "Seu Jorge", "character": "Man\u00e9 Galinha", "id": 5659, "credit_id": "52fe425ac3a36847f8017b5d", "cast_id": 40, "profile_path": "/ggUYDS85gpTLAXaDzznLw2mpTfS.jpg", "order": 6}, {"name": "Jefechander Suplino", "character": "Alicate", "id": 8601, "credit_id": "52fe425ac3a36847f8017b61", "cast_id": 41, "profile_path": null, "order": 7}, {"name": "Alice Braga", "character": "Ang\u00e9lica", "id": 8602, "credit_id": "52fe425ac3a36847f8017b65", "cast_id": 42, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 8}, {"name": "Roberta Rodrigues", "character": "Berenice", "id": 8603, "credit_id": "52fe425ac3a36847f8017b69", "cast_id": 43, "profile_path": null, "order": 9}, {"name": "Luis Ot\u00e1vio", "character": "Buscap\u00e9 Crian\u00e7a", "id": 8604, "credit_id": "52fe425ac3a36847f8017b6d", "cast_id": 44, "profile_path": null, "order": 10}, {"name": "Darlan Cunha", "character": "Fil\u00e9-com-Fritas", "id": 8605, "credit_id": "52fe425ac3a36847f8017b71", "cast_id": 45, "profile_path": "/u8OcJOmu15xErdpn3BMV8I8ajhS.jpg", "order": 11}], "directors": [{"name": "Fernando Meirelles", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f8017a9f", "profile_path": "/j77Z3f2m0e211ocFhPJu5ZiO12R.jpg", "id": 8557}, {"name": "K\u00e1tia Lund", "department": "Directing", "job": "Director", "credit_id": "54b413a89251417369002c0b", "profile_path": null, "id": 8559}], "vote_average": 7.7, "runtime": 130}, "599": {"poster_path": "/oFwzvRgfxJc0FUr2mwYTi10dk3G.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A hack screenwriter writes a screenplay for a former silent-film star who has faded into Hollywood obscurity.", "video": false, "id": 599, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sunset Boulevard", "tagline": "\"I'm ready for my close-up!\"", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0043014", "adult": false, "backdrop_path": "/wFkv7l6iz0fgXtmS24lTNyz8tV8.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1950-08-04", "popularity": 0.822807268475015, "original_title": "Sunset Boulevard", "budget": 1752000, "cast": [{"name": "William Holden", "character": "Joe Gillis", "id": 8252, "credit_id": "52fe425ac3a36847f8017c21", "cast_id": 20, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 0}, {"name": "Gloria Swanson", "character": "Norma Desmond", "id": 8629, "credit_id": "52fe425ac3a36847f8017c25", "cast_id": 21, "profile_path": "/4s8YEUboEF7DxdXXZ8HnaeovR2p.jpg", "order": 1}, {"name": "Erich von Stroheim", "character": "Max von Mayerling", "id": 8630, "credit_id": "52fe425ac3a36847f8017c29", "cast_id": 22, "profile_path": "/hH1SJChbxYGfru1ugHrifuHV63M.jpg", "order": 2}, {"name": "Nancy Olson", "character": "Betty Schaefer", "id": 8631, "credit_id": "52fe425ac3a36847f8017c2d", "cast_id": 23, "profile_path": "/8tuy84triOK0mS32KoyKSryhZtP.jpg", "order": 3}, {"name": "Fred Clark", "character": "Sheldrake", "id": 8632, "credit_id": "52fe425ac3a36847f8017c31", "cast_id": 24, "profile_path": "/oZSINxktenG9o1w21XuJQSEgX3m.jpg", "order": 4}, {"name": "Lloyd Gough", "character": "Morino", "id": 8633, "credit_id": "52fe425ac3a36847f8017c35", "cast_id": 25, "profile_path": "/zUJTsUKnKnDjZ4o1NrYri5OMJFQ.jpg", "order": 5}, {"name": "Jack Webb", "character": "Artie Green", "id": 8634, "credit_id": "52fe425ac3a36847f8017c39", "cast_id": 26, "profile_path": "/vQ00aqSH95EN0fNXMRYNGDccWKs.jpg", "order": 6}, {"name": "Buster Keaton", "character": "Himself", "id": 8635, "credit_id": "52fe425ac3a36847f8017c3d", "cast_id": 27, "profile_path": "/pYsC0NiYf4EtyVv637Ax5mB9RJz.jpg", "order": 7}, {"name": "Cecil B. DeMille", "character": "Himself", "id": 8636, "credit_id": "52fe425ac3a36847f8017c41", "cast_id": 28, "profile_path": "/oZnXG7WjQ9FXaQkzOtAmzYGDoH5.jpg", "order": 8}, {"name": "Hedda Hopper", "character": "Herself", "id": 8637, "credit_id": "52fe425ac3a36847f8017c45", "cast_id": 29, "profile_path": "/nrKG5ht56KANlLXy6sroxn8D7A.jpg", "order": 9}, {"name": "Anna Q. Nilsson", "character": "Herself", "id": 8638, "credit_id": "52fe425ac3a36847f8017c49", "cast_id": 30, "profile_path": "/tRFgifZr8gKPvAHNRE8SKof99GX.jpg", "order": 10}, {"name": "Ray Evans", "character": "Himself", "id": 8640, "credit_id": "52fe425ac3a36847f8017c4d", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Jay Livingston", "character": "Himself", "id": 8641, "credit_id": "52fe425ac3a36847f8017c51", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "H.B. Warner", "character": "Himself", "id": 33278, "credit_id": "52fe425ac3a36847f8017c55", "cast_id": 34, "profile_path": "/7zWN39xKHnPTawwN9p5m4aX1ne5.jpg", "order": 13}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f8017bbd", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.9, "runtime": 110}, "600": {"poster_path": "/29veIwD38rVL2qY74emXQw4y25H.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46357676, "overview": "A pragmatic U.S. Marine observes the dehumanizing effects the U.S.-Vietnam War has on his fellow recruits from their brutal boot camp training to the bloody street fighting in Hue.", "video": false, "id": 600, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Full Metal Jacket", "tagline": "Vietnam can kill me, but it can\u2019t make me care.", "vote_count": 650, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0093058", "adult": false, "backdrop_path": "/cVkTGLthpromkyzyCFLvvLPZxFM.jpg", "production_companies": [{"name": "Natant", "id": 50819}, {"name": "Stanley Kubrick Productions", "id": 385}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1987-05-31", "popularity": 1.6599672116294, "original_title": "Full Metal Jacket", "budget": 17000000, "cast": [{"name": "Matthew Modine", "character": "Pvt. Joker", "id": 8654, "credit_id": "52fe425bc3a36847f8017d3f", "cast_id": 25, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 0}, {"name": "Adam Baldwin", "character": "Animal Mother", "id": 2059, "credit_id": "52fe425bc3a36847f8017d43", "cast_id": 26, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 1}, {"name": "Vincent D'Onofrio", "character": "Pvt. Pyle", "id": 7132, "credit_id": "52fe425bc3a36847f8017d47", "cast_id": 27, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 2}, {"name": "R. Lee Ermey", "character": "Gny. Sgt. Hartman", "id": 8655, "credit_id": "52fe425bc3a36847f8017d4b", "cast_id": 28, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 3}, {"name": "Dorian Harewood", "character": "Eightball", "id": 8656, "credit_id": "52fe425bc3a36847f8017d4f", "cast_id": 29, "profile_path": "/zZD1wReWRwa24HzBkwbMOcbpGS1.jpg", "order": 4}, {"name": "Kevyn Major Howard", "character": "Rafterman", "id": 8657, "credit_id": "52fe425bc3a36847f8017d53", "cast_id": 30, "profile_path": null, "order": 5}, {"name": "Arliss Howard", "character": "Pvt. Cowboy", "id": 3229, "credit_id": "52fe425bc3a36847f8017d57", "cast_id": 31, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 6}, {"name": "Ed O'Ross", "character": "Lt. Touchdown", "id": 8658, "credit_id": "52fe425bc3a36847f8017d5b", "cast_id": 32, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 7}, {"name": "John Terry", "character": "Lt. Lockhart", "id": 8659, "credit_id": "52fe425bc3a36847f8017d5f", "cast_id": 33, "profile_path": "/ziI8HiAeTLdud06edGUo2AXwdij.jpg", "order": 8}, {"name": "Kieron Jecchinis", "character": "Crazy Earl", "id": 8660, "credit_id": "52fe425bc3a36847f8017d63", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Kirk Taylor", "character": "Payback", "id": 8661, "credit_id": "52fe425bc3a36847f8017d67", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Tim Colceri", "character": "Doorgunner", "id": 8662, "credit_id": "52fe425bc3a36847f8017d6b", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Jon Stafford", "character": "Doc Jay", "id": 8663, "credit_id": "52fe425bc3a36847f8017d6f", "cast_id": 37, "profile_path": "/jQyDZ78gUWpSX1scXkLRpiwERqF.jpg", "order": 12}, {"name": "Bruce Boa", "character": "Poge Colonel", "id": 8664, "credit_id": "52fe425bc3a36847f8017d73", "cast_id": 38, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 13}, {"name": "Ian Tyler", "character": "Lt. Cleves", "id": 8665, "credit_id": "52fe425bc3a36847f8017d77", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Sal Lopez", "character": "T.H.E. Rock", "id": 8666, "credit_id": "52fe425bc3a36847f8017d7b", "cast_id": 40, "profile_path": "/cDwLvQaIBRQZKav65ebQu4hHdh8.jpg", "order": 15}, {"name": "Gary Landon Mills", "character": "Donlon", "id": 8667, "credit_id": "52fe425bc3a36847f8017d7f", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Papillon Soo", "character": "Da Nang Hooker", "id": 8668, "credit_id": "52fe425bc3a36847f8017d83", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Peter Edmund", "character": "Snowball", "id": 8669, "credit_id": "52fe425bc3a36847f8017d87", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Ngoc Le", "character": "VC Sniper", "id": 8670, "credit_id": "52fe425bc3a36847f8017d8b", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Tan Hung Francione", "character": "ARVN Pimp", "id": 8671, "credit_id": "52fe425bc3a36847f8017d8f", "cast_id": 45, "profile_path": null, "order": 20}, {"name": "Costas Dino Chimona", "character": "Chili", "id": 8672, "credit_id": "52fe425bc3a36847f8017d93", "cast_id": 46, "profile_path": null, "order": 21}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f8017cb7", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.4, "runtime": 116}, "601": {"poster_path": "/hrO4FIo4zSyYo9uv6AXenOoZIUf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 792910554, "overview": "A science fiction fairytale about an extra-terrestrial who is left behind on Earth and is found by a young boy who befriends him. This heart-warming fantasy from Director Steven Spielberg became one of the most commercially successful films of all time.", "video": false, "id": 601, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "E.T. the Extra-Terrestrial", "tagline": "He is afraid. He is alone. He is three million light years from home.", "vote_count": 811, "homepage": "http://www.et20.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083866", "adult": false, "backdrop_path": "/cILxpoay7vKrQ9LBleWyZ92PY3o.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1982-06-11", "popularity": 2.09625170322483, "original_title": "E.T. the Extra-Terrestrial", "budget": 10500000, "cast": [{"name": "Henry Thomas", "character": "Elliott", "id": 9976, "credit_id": "52fe425bc3a36847f8017e4d", "cast_id": 20, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 0}, {"name": "Peter Coyote", "character": "Keys", "id": 9979, "credit_id": "52fe425bc3a36847f8017e59", "cast_id": 23, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Gertie", "id": 69597, "credit_id": "52fe425bc3a36847f8017e55", "cast_id": 22, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Erika Eleniak", "character": "Pretty Girl", "id": 23764, "credit_id": "52fe425bc3a36847f8017e7f", "cast_id": 33, "profile_path": "/7ZdUGY78qpB2MkTzAQvYEYzncwN.jpg", "order": 5}, {"name": "Sean Frye", "character": "Steve", "id": 9981, "credit_id": "52fe425bc3a36847f8017e61", "cast_id": 25, "profile_path": "/ce22ZO5D7a8ATdiblkk0yF03Uu9.jpg", "order": 6}, {"name": "C. Thomas Howell", "character": "Tyler", "id": 2878, "credit_id": "52fe425bc3a36847f8017e65", "cast_id": 26, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 6}, {"name": "Robert MacNaughton", "character": "Michael", "id": 9978, "credit_id": "52fe425bc3a36847f8017e51", "cast_id": 21, "profile_path": "/zl4cpvNgLu0EViVUC9ZmTeDxEH5.jpg", "order": 7}, {"name": "K. C. Martel", "character": "Greg", "id": 9980, "credit_id": "52fe425bc3a36847f8017e5d", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "David M. O'Dell", "character": "Schoolboy", "id": 9982, "credit_id": "52fe425bc3a36847f8017e69", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Richard Swingler", "character": "Science Teacher", "id": 9983, "credit_id": "52fe425bc3a36847f8017e6d", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Frank Toth", "character": "Policeman", "id": 9984, "credit_id": "52fe425bc3a36847f8017e71", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Pat Welsh", "character": "E.T. (voice)", "id": 9985, "credit_id": "52fe425bc3a36847f8017e75", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Dee Wallace", "character": "Mary", "id": 62001, "credit_id": "52fe425bc3a36847f8017e83", "cast_id": 34, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 12}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f8017ddd", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.8, "runtime": 115}, "602": {"poster_path": "/qKSerOMikhd1iUfx9rnZIXbhy5z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 816969268, "overview": "On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped \"destroyer\" spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4 the a plan is devised to gain access to the interior of the alien mothership in space in order to plant a nuclear missile.", "video": false, "id": 602, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Independence Day", "tagline": "Earth. Take a good look. It might be your last.", "vote_count": 967, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 304378, "name": "Independence Day Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116629", "adult": false, "backdrop_path": "/ewMSszqEvI3G1U21SfYbOeoKdxS.jpg", "production_companies": [{"name": "Centropolis Entertainment", "id": 347}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1996-06-25", "popularity": 1.70987827125936, "original_title": "Independence Day", "budget": 75000000, "cast": [{"name": "Will Smith", "character": "Captain Steven Hiller", "id": 2888, "credit_id": "52fe425bc3a36847f8017f8b", "cast_id": 16, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Bill Pullman", "character": "President Thomas J. Whitmore", "id": 8984, "credit_id": "52fe425bc3a36847f8017f8f", "cast_id": 17, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Jeff Goldblum", "character": "David Levinson", "id": 4785, "credit_id": "52fe425bc3a36847f8017f93", "cast_id": 18, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 2}, {"name": "Mary McDonnell", "character": "First Lady Marilyn Whitmore", "id": 1581, "credit_id": "52fe425bc3a36847f8017f97", "cast_id": 19, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 3}, {"name": "Judd Hirsch", "character": "Julius Levinson", "id": 6167, "credit_id": "52fe425bc3a36847f8017f9b", "cast_id": 20, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 4}, {"name": "Robert Loggia", "character": "General William Grey", "id": 1162, "credit_id": "52fe425bc3a36847f8017f9f", "cast_id": 21, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 5}, {"name": "Randy Quaid", "character": "Russell Casse", "id": 1811, "credit_id": "52fe425bc3a36847f8017fa3", "cast_id": 22, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 6}, {"name": "Margaret Colin", "character": "Constance Spano", "id": 8985, "credit_id": "52fe425bc3a36847f8017fa7", "cast_id": 23, "profile_path": "/A9nBbgguaRqjssJyqTfoFIQgADV.jpg", "order": 7}, {"name": "Vivica A. Fox", "character": "Jasmine Dubrow", "id": 2535, "credit_id": "52fe425bc3a36847f8017fab", "cast_id": 24, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 8}, {"name": "James Rebhorn", "character": "Albert Nimzicki", "id": 8986, "credit_id": "52fe425bc3a36847f8017faf", "cast_id": 25, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 9}, {"name": "Harvey Fierstein", "character": "Marty Gilbert", "id": 7420, "credit_id": "52fe425bc3a36847f8017fb3", "cast_id": 26, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 10}, {"name": "Adam Baldwin", "character": "Major Mitchell", "id": 2059, "credit_id": "52fe425bc3a36847f8017fb7", "cast_id": 27, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 11}, {"name": "James Duval", "character": "Miguel Casse", "id": 1582, "credit_id": "52fe425bc3a36847f8017fbb", "cast_id": 29, "profile_path": "/ydlb3Rp5vkle9codpcfBWxFmUYr.jpg", "order": 12}, {"name": "Lisa Jakub", "character": "Alicia Casse", "id": 8987, "credit_id": "52fe425bc3a36847f8017fbf", "cast_id": 30, "profile_path": "/1iw0l7zewS6L1FzQCKJTHu5Eg0e.jpg", "order": 13}, {"name": "Giuseppe Andrews", "character": "Troy Casse", "id": 4133, "credit_id": "52fe425bc3a36847f8017fc3", "cast_id": 31, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 14}, {"name": "Harry Connick Jr.", "character": "Captain Jimmy Wilder", "id": 18688, "credit_id": "52fe425bc3a36847f8017fc7", "cast_id": 32, "profile_path": "/zdIXPJyfpje8BGBjNQAe73CzSTx.jpg", "order": 15}, {"name": "Mae Whitman", "character": "Patricia Whitmore", "id": 52404, "credit_id": "52fe425bc3a36847f8017fcb", "cast_id": 33, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 16}, {"name": "Kiersten Warren", "character": "Tiffany", "id": 23504, "credit_id": "52fe425bc3a36847f8017fcf", "cast_id": 34, "profile_path": "/nzbUkAYhC6x3Zwdmm93nusN5vg6.jpg", "order": 17}, {"name": "John Storey", "character": "Dr. Isaacs", "id": 1240779, "credit_id": "52fe425bc3a36847f8017fd3", "cast_id": 35, "profile_path": "/1EaywymiUzuQQz0pP8762LWcZfw.jpg", "order": 18}, {"name": "Frank Novak", "character": "Teddy", "id": 46930, "credit_id": "52fe425bc3a36847f8017fd7", "cast_id": 36, "profile_path": "/qD6p4ZqXU5HmX1h2qTL4B43dMfc.jpg", "order": 19}, {"name": "Devon Gummersall", "character": "Philip", "id": 54455, "credit_id": "52fe425bc3a36847f8017fdb", "cast_id": 37, "profile_path": "/aVpEjsbP343W81vxHqoctujnGc9.jpg", "order": 20}, {"name": "Leland Orser", "character": "Technician/ Medical Assistant 1", "id": 2221, "credit_id": "52fe425bc3a36847f8017fdf", "cast_id": 38, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 21}, {"name": "Mirron E. Willis", "character": "Aide", "id": 1173560, "credit_id": "52fe425bc3a36847f8017fe3", "cast_id": 39, "profile_path": "/ozlYwIqYAzwhqfCWZK2GqtG8XWz.jpg", "order": 22}, {"name": "Ross Lacy", "character": "Aide", "id": 199697, "credit_id": "52fe425bc3a36847f8017fe7", "cast_id": 40, "profile_path": "/jseRsA15GLR88mGV3gvg9UTyo0U.jpg", "order": 23}, {"name": "David Pressman", "character": "Whitmore's Aide", "id": 111514, "credit_id": "52fe425bc3a36847f8017feb", "cast_id": 41, "profile_path": "/d7E1CW5DfYEFvlxOGQ5IioQbW8t.jpg", "order": 24}, {"name": "Raphael Sbarge", "character": "Commander / Tech", "id": 97943, "credit_id": "52fe425bc3a36847f8017fef", "cast_id": 42, "profile_path": "/dqJaYxVxOKJjMcIzOnAf3ef1RfR.jpg", "order": 25}, {"name": "Bobby Hosea", "character": "Commanding Officer", "id": 29775, "credit_id": "52fe425bc3a36847f8017ff3", "cast_id": 43, "profile_path": "/sGdelSFgmBYH3pKKZktIBUzqp9S.jpg", "order": 26}, {"name": "Dan Lauria", "character": "Commanding Officer", "id": 29774, "credit_id": "52fe425bc3a36847f8017ff7", "cast_id": 44, "profile_path": "/ov3F6ddfjgw3SpvEuuHUxhh4yom.jpg", "order": 27}, {"name": "Steve Giannelli", "character": "Radar Technician", "id": 1116827, "credit_id": "52fe425bc3a36847f8017ffb", "cast_id": 45, "profile_path": "/aIMSzuRTYTWHlaAUfzc2uS6KIJf.jpg", "order": 28}, {"name": "Eric Paskel", "character": "Radar Technician", "id": 179969, "credit_id": "52fe425bc3a36847f8017fff", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Carlos Lac\u00e1mara", "character": "Radar Operator", "id": 1212247, "credit_id": "52fe425bc3a36847f8018003", "cast_id": 47, "profile_path": "/mf5a9afrahmA2bOwgfaJVjDrzpJ.jpg", "order": 30}, {"name": "John Bennett Perry", "character": "Secret Service Agent", "id": 20361, "credit_id": "52fe425bc3a36847f8018007", "cast_id": 48, "profile_path": "/bzFhwuXsdZiOHRtBgz4XVELIFYO.jpg", "order": 31}, {"name": "Troy Willis", "character": "Secret Service Agent", "id": 1272408, "credit_id": "52fe425bc3a36847f801800b", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Tim Kelleher", "character": "Technician", "id": 72864, "credit_id": "52fe425bc3a36847f801800f", "cast_id": 50, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 33}, {"name": "Wayne Wilderson", "character": "Area 51 Technician", "id": 1216179, "credit_id": "52fe425bc3a36847f8018013", "cast_id": 51, "profile_path": "/r5GVLXdvJovWZiBUzgFsWlpIwVW.jpg", "order": 34}, {"name": "Jay Acovone", "character": "Area 51 Guard", "id": 42547, "credit_id": "52fe425bc3a36847f8018017", "cast_id": 52, "profile_path": "/7nTfBxzeO6jBzUSdukF2OWm5uBo.jpg", "order": 35}, {"name": "James Wong", "character": "SETI Technician 1", "id": 57134, "credit_id": "52fe425bc3a36847f801801b", "cast_id": 53, "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "order": 36}, {"name": "Jana Marie Hupp", "character": "SETI Technician 3", "id": 1213344, "credit_id": "52fe425bc3a36847f801801f", "cast_id": 54, "profile_path": "/vxwpMDXUfvBpJ53SOcfv7oNI2J3.jpg", "order": 37}, {"name": "Robert Pine", "character": "Chief of Staff", "id": 74573, "credit_id": "52fe425bc3a36847f8018023", "cast_id": 55, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 38}, {"name": "David Channell", "character": "Secret Service Agent", "id": 186657, "credit_id": "52fe425bc3a36847f8018027", "cast_id": 56, "profile_path": "/3EwGgjGSmA6AUwqkkPerLm1BVk.jpg", "order": 39}, {"name": "John Capodice", "character": "Mario", "id": 31007, "credit_id": "52fe425bc3a36847f801802b", "cast_id": 57, "profile_path": "/sQuJV9o2FSXr5UBo2MaiTLObXiY.jpg", "order": 40}, {"name": "Greg Collins", "character": "Military Aide", "id": 58950, "credit_id": "52fe425bc3a36847f801802f", "cast_id": 58, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 41}, {"name": "Derek Webster", "character": "Sky Crane Pilot", "id": 157029, "credit_id": "52fe425bc3a36847f8018033", "cast_id": 59, "profile_path": "/vS6FyYyx2G41Zozn1bINybpmsKY.jpg", "order": 42}, {"name": "Mark Fite", "character": "Pilot", "id": 122805, "credit_id": "52fe425bc3a36847f8018037", "cast_id": 60, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 43}, {"name": "Levan Uchaneishvili", "character": "Russian Pilot (Levani)", "id": 27037, "credit_id": "52fe425bc3a36847f801803b", "cast_id": 61, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 44}, {"name": "Kristof Konrad", "character": "Russian Pilot", "id": 74502, "credit_id": "52fe425bc3a36847f801803f", "cast_id": 62, "profile_path": "/glLoabE6ofcj9gEW0ejwvN3CyB4.jpg", "order": 45}, {"name": "Kevin Sifuentes", "character": "Tank Commander", "id": 102578, "credit_id": "52fe425bc3a36847f8018043", "cast_id": 63, "profile_path": "/8sX4lmfYnU0q0XXoxfbxju4c4tW.jpg", "order": 46}, {"name": "Elston Ridgle", "character": "Soldier", "id": 188212, "credit_id": "52fe425bc3a36847f8018047", "cast_id": 64, "profile_path": "/33ubq4IENRuOcLt1iqU3k5jOnF2.jpg", "order": 47}, {"name": "Randy Oglesby", "character": "Mechanic", "id": 102567, "credit_id": "52fe425bc3a36847f801804b", "cast_id": 65, "profile_path": "/i6Zrn7JKMnemYZysNqhkcGs9cjk.jpg", "order": 48}, {"name": "Jack Moore", "character": "Mechanic", "id": 117564, "credit_id": "52fe425bc3a36847f801804f", "cast_id": 66, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 49}, {"name": "Barry Del Sherman", "character": "Street Preacher", "id": 8214, "credit_id": "52fe425bc3a36847f8018053", "cast_id": 67, "profile_path": "/8uUOdG0fTnPYNkSgPpQDhzxSrjw.jpg", "order": 50}, {"name": "Lyman Ward", "character": "Secret Service Agent", "id": 90198, "credit_id": "52fe425bc3a36847f8018057", "cast_id": 68, "profile_path": "/lL1dAVbBcSU4O2wD4XZcsmOCcRZ.jpg", "order": 51}, {"name": "Anthony Crivello", "character": "Lincoln", "id": 31367, "credit_id": "52fe425bc3a36847f801805b", "cast_id": 69, "profile_path": "/3oZXNW4V0AeT1JjwDTu4lUOZNH3.jpg", "order": 52}, {"name": "Richard Speight Jr.", "character": "Ed", "id": 58112, "credit_id": "52fe425bc3a36847f801805f", "cast_id": 70, "profile_path": "/o5tlyRPkZXtkXOTDcwKTUfGldhM.jpg", "order": 53}, {"name": "Joe Fowler", "character": "Reporter", "id": 169931, "credit_id": "52fe425bc3a36847f8018063", "cast_id": 71, "profile_path": "/6Qp1ino2A6MP9MKZeCc6Q6hM9Si.jpg", "order": 54}, {"name": "Sharon Tay", "character": "Reporter", "id": 156131, "credit_id": "52fe425bc3a36847f8018067", "cast_id": 72, "profile_path": "/qJhvCSCXHD9Duvz5pP0sLQQl6n2.jpg", "order": 55}, {"name": "Peter J. Lucas", "character": "Russian Reporter", "id": 18905, "credit_id": "52fe425bc3a36847f801806b", "cast_id": 73, "profile_path": "/bQgIi61v5NBhDDZjArvzSpjwxxg.jpg", "order": 56}, {"name": "Yelena Danova", "character": "Russian Newscaster", "id": 163159, "credit_id": "52fe425bc3a36847f801806f", "cast_id": 74, "profile_path": "/kdA28JAPdY7Yru5469KFVGNOfDM.jpg", "order": 57}, {"name": "Johnny Kim", "character": "Korean Newscaster", "id": 64881, "credit_id": "52fe425bc3a36847f8018073", "cast_id": 75, "profile_path": "/Akh2IyKfZ4rXWb1k0c8U50d53Ew.jpg", "order": 58}, {"name": "Vanessa J. Wells", "character": "Newscaster", "id": 192276, "credit_id": "52fe425bc3a36847f8018077", "cast_id": 76, "profile_path": null, "order": 59}, {"name": "Sayed Badreya", "character": "Arab Pilot", "id": 173810, "credit_id": "52fe425bc3a36847f801807b", "cast_id": 77, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 60}, {"name": "Adam Tomei", "character": "Sailor", "id": 177144, "credit_id": "52fe425bc3a36847f801807f", "cast_id": 78, "profile_path": "/cW697JowVOiLwq3bw30aCZdsRwc.jpg", "order": 61}, {"name": "John Bradley", "character": "Lucas", "id": 1010135, "credit_id": "52fe425bc3a36847f8018083", "cast_id": 79, "profile_path": "/NYYgcHhFNLOwYVAGePUq9NsV3N.jpg", "order": 62}, {"name": "Kimberly Beck", "character": "Housewife", "id": 2174, "credit_id": "52fe425bc3a36847f8018087", "cast_id": 80, "profile_path": "/wt7KIBun88QLlxlXnPj7Tp9lwkB.jpg", "order": 63}, {"name": "Andrew Keegan", "character": "Older Boy", "id": 40979, "credit_id": "52fe425bc3a36847f801808b", "cast_id": 81, "profile_path": "/3GNxQcRNySLlO25wcPuwnxuPv3f.jpg", "order": 64}, {"name": "Jim Piddock", "character": "Reginald", "id": 120560, "credit_id": "52fe425bc3a36847f801808f", "cast_id": 82, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 65}, {"name": "Pat Skipper", "character": "Redneck", "id": 6326, "credit_id": "52fe425bc3a36847f8018093", "cast_id": 83, "profile_path": "/yz3OrX0JKWcNDLLc8TBoRUhWAcC.jpg", "order": 66}, {"name": "Erick Avari", "character": "SETI Chief", "id": 18917, "credit_id": "52fe425bc3a36847f8018097", "cast_id": 84, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 67}, {"name": "Brent Spiner", "character": "Dr. Brackish Okun", "id": 1213786, "credit_id": "52fe425bc3a36847f801809b", "cast_id": 85, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 68}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f8017f33", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.4, "runtime": 145}, "603": {"poster_path": "/ZPMhHXEhYB33YoTZZNNmezth0V.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 463517383, "overview": "Thomas A. Anderson is a man living two lives. By day he is an average computer programmer and by night a malevolent hacker known as Neo, who finds himself targeted by the police when he is contacted by Morpheus, a legendary computer hacker, who reveals the shocking truth about our reality.", "video": false, "id": 603, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Matrix", "tagline": "Welcome to the Real World.", "vote_count": 4220, "homepage": "http://www.warnerbros.com/movies/home-entertainment/the-matrix/37313ac7-9229-474d-a423-44b7a6bc1a54.html", "belongs_to_collection": {"backdrop_path": "/bRm2DEgUiYciDw3myHuYFInD7la.jpg", "poster_path": "/lh4aGpd3U9rm9B8Oqr6CUgQLtZL.jpg", "id": 2344, "name": "The Matrix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133093", "adult": false, "backdrop_path": "/7u3pxc0K1wx32IleAkLv78MKgrw.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Groucho II Film Partnership", "id": 372}], "release_date": "1999-03-30", "popularity": 3.02638600897575, "original_title": "The Matrix", "budget": 63000000, "cast": [{"name": "Keanu Reeves", "character": "Neo", "id": 6384, "credit_id": "52fe425bc3a36847f80181c1", "cast_id": 34, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Morpheus", "id": 2975, "credit_id": "52fe425bc3a36847f801818d", "cast_id": 21, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Carrie-Anne Moss", "character": "Trinity", "id": 530, "credit_id": "52fe425bc3a36847f8018191", "cast_id": 22, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Agent Smith", "id": 1331, "credit_id": "52fe425bc3a36847f8018195", "cast_id": 23, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Gloria Foster", "character": "Oracle", "id": 9364, "credit_id": "52fe425bc3a36847f8018199", "cast_id": 24, "profile_path": "/ahwiARgfOYctk6sOLBBk5w7cfH5.jpg", "order": 4}, {"name": "Joe Pantoliano", "character": "Cypher", "id": 532, "credit_id": "52fe425bc3a36847f801819d", "cast_id": 25, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Marcus Chong", "character": "Tank", "id": 9372, "credit_id": "52fe425bc3a36847f80181a1", "cast_id": 26, "profile_path": "/zYfXjMszFajTb93phn2Fi6LwEGN.jpg", "order": 6}, {"name": "Julian Arahanga", "character": "Apoc", "id": 7244, "credit_id": "52fe425bc3a36847f80181a5", "cast_id": 27, "profile_path": "/jFNdkOB6UhQEsN5Bo5Q5d2qT9YX.jpg", "order": 7}, {"name": "Matt Doran", "character": "Mouse", "id": 9374, "credit_id": "52fe425bc3a36847f80181a9", "cast_id": 28, "profile_path": "/gLpWm3azLiXgDPRWo23AnG5WM7O.jpg", "order": 8}, {"name": "Belinda McClory", "character": "Switch", "id": 9376, "credit_id": "52fe425bc3a36847f80181ad", "cast_id": 29, "profile_path": "/g8bpncsgI2ETxc1HwvarRKLsw0D.jpg", "order": 9}, {"name": "Anthony Ray Parker", "character": "Dozer", "id": 9378, "credit_id": "52fe425bc3a36847f80181b1", "cast_id": 30, "profile_path": "/iMHr0onfM8v4uVdPVnXxXx2xwwN.jpg", "order": 10}, {"name": "Paul Goddard", "character": "Agent Brown", "id": 9380, "credit_id": "52fe425bc3a36847f80181b5", "cast_id": 31, "profile_path": "/4OalonKRAdZhXreaDWig3bZkELo.jpg", "order": 11}, {"name": "Robert Taylor", "character": "Agent Jones", "id": 39545, "credit_id": "52fe425bc3a36847f80181cb", "cast_id": 38, "profile_path": "/aqRJQj0KBPhGLDxfmOAXCUzCcSJ.jpg", "order": 12}, {"name": "David Aston", "character": "Rhineheart", "id": 9383, "credit_id": "52fe425bc3a36847f80181b9", "cast_id": 32, "profile_path": "/aO7w5K2BjeQaAUN3ogo9NuAD1qI.jpg", "order": 13}, {"name": "Marc Aden", "character": "Choi", "id": 9384, "credit_id": "52fe425bc3a36847f80181bd", "cast_id": 33, "profile_path": "/h42Zd2L1srUxw1VihY1fceUgDZe.jpg", "order": 14}, {"name": "Ada Nicodemou", "character": "White Rabbit Girl", "id": 181214, "credit_id": "52fe425bc3a36847f80181cf", "cast_id": 39, "profile_path": "/xSHiqKAoEHy7i2csyqyLfb86L0O.jpg", "order": 15}, {"name": "Deni Gordon", "character": "Priestess", "id": 1090466, "credit_id": "52fe425bc3a36847f80181d3", "cast_id": 40, "profile_path": "/5TQlwo1T3EnORzkmLQMKaDZCvpa.jpg", "order": 16}, {"name": "Rowan Witt", "character": "Spoon Boy", "id": 218366, "credit_id": "52fe425bc3a36847f80181d7", "cast_id": 41, "profile_path": "/kJot5sckPZRFVzkKEEJtaod423s.jpg", "order": 17}, {"name": "Bill Young", "character": "Lieutenant", "id": 57799, "credit_id": "52fe425bc3a36847f80181db", "cast_id": 42, "profile_path": "/1B3amfg9o97EurkYl9BAlXZPC60.jpg", "order": 18}, {"name": "Eleanor Witt", "character": "Potential", "id": 1209244, "credit_id": "52fe425bc3a36847f80181df", "cast_id": 43, "profile_path": "/7lo8gg0j6OLzuAqXg1giQWAsY4F.jpg", "order": 19}, {"name": "Tamara Brown", "character": "Potential", "id": 1209245, "credit_id": "52fe425bc3a36847f80181e3", "cast_id": 44, "profile_path": "/hEhHP6qUTgj4oGWPhzW3CpZ6tx4.jpg", "order": 20}, {"name": "Janaya Pender", "character": "Potential", "id": 1209246, "credit_id": "52fe425bc3a36847f80181e7", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Adryn White", "character": "Potential", "id": 1209247, "credit_id": "52fe425bc3a36847f80181eb", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Natalie Tjen", "character": "Potential", "id": 1209248, "credit_id": "52fe425bc3a36847f80181ef", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "David O'Connor", "character": "FedEx Man", "id": 1209249, "credit_id": "52fe425bc3a36847f80181f3", "cast_id": 48, "profile_path": null, "order": 24}, {"name": "Jeremy Ball", "character": "Businessman", "id": 1209250, "credit_id": "52fe425bc3a36847f80181f7", "cast_id": 49, "profile_path": "/o81K9lM34FbCxwHakzXdtIM1JP9.jpg", "order": 25}, {"name": "Fiona Johnson", "character": "Woman in Red", "id": 1209251, "credit_id": "52fe425bc3a36847f80181fb", "cast_id": 50, "profile_path": "/tdbzgopHXZMpiLNt64TuLhsPlPA.jpg", "order": 26}, {"name": "Harry Lawrence", "character": "Old Man", "id": 110411, "credit_id": "52fe425bc3a36847f80181ff", "cast_id": 51, "profile_path": null, "order": 27}, {"name": "Steve Dodd", "character": "Blind Man", "id": 212562, "credit_id": "52fe425bc3a36847f8018203", "cast_id": 52, "profile_path": "/30pDtMIblGP1yDsFUaT5p0FJL1L.jpg", "order": 28}, {"name": "Luke Quinton", "character": "Security Guard", "id": 1209252, "credit_id": "52fe425bc3a36847f8018207", "cast_id": 53, "profile_path": "/8EJPgSkhdoyWhP7mhTfNIVXhCce.jpg", "order": 29}, {"name": "Lawrence Woodward", "character": "Guard", "id": 75715, "credit_id": "52fe425cc3a36847f801820b", "cast_id": 54, "profile_path": "/dAcZMeJmn5WzdD9SdAHGDlDq7CO.jpg", "order": 30}, {"name": "Michael Butcher", "character": "Cop Who Captures Neo", "id": 1209253, "credit_id": "52fe425cc3a36847f801820f", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Bernard Ledger", "character": "Big Cop", "id": 1209254, "credit_id": "52fe425cc3a36847f8018213", "cast_id": 56, "profile_path": null, "order": 32}, {"name": "Robert Simper", "character": "Cop", "id": 26753, "credit_id": "52fe425cc3a36847f8018217", "cast_id": 57, "profile_path": "/8lBlkhZlTBfkIi6i0iWugZaiIkY.jpg", "order": 33}, {"name": "Chris Pattinson", "character": "Cop", "id": 1209255, "credit_id": "52fe425cc3a36847f801821b", "cast_id": 58, "profile_path": "/aB6AlYxCtiSydRpaHpnyf2mLCVw.jpg", "order": 34}, {"name": "Nigel Harbach", "character": "Parking Cop", "id": 1209256, "credit_id": "52fe425cc3a36847f801821f", "cast_id": 59, "profile_path": "/avzlD8e0d5ygac0BZPEzqrzs6ME.jpg", "order": 35}, {"name": "Rana Morrison", "character": "Shaylae - Woman in Office (uncredited)", "id": 1209257, "credit_id": "52fe425cc3a36847f8018223", "cast_id": 60, "profile_path": "/7uQEGFP9gbCuPvrTVmL5MCFyMmm.jpg", "order": 36}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f8018117", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f801811d", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}], "vote_average": 7.6, "runtime": 136}, "604": {"poster_path": "/ezIurBz2fdUc68d98Fp9dRf5ihv.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 738599701, "overview": "Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.", "video": false, "id": 604, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Matrix Reloaded", "tagline": "Free your mind.", "vote_count": 1577, "homepage": "http://whatisthematrix.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/bRm2DEgUiYciDw3myHuYFInD7la.jpg", "poster_path": "/lh4aGpd3U9rm9B8Oqr6CUgQLtZL.jpg", "id": 2344, "name": "The Matrix Collection"}, "original_language": "he", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0234215", "adult": false, "backdrop_path": "/Fp3piEuHXxKnPBO5R0Wj4wjZHg.jpg", "production_companies": [{"name": "Heineken Branded Entertainment", "id": 375}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "NPV Entertainment", "id": 172}], "release_date": "2003-05-06", "popularity": 2.55519559368436, "original_title": "The Matrix Reloaded", "budget": 150000000, "cast": [{"name": "Keanu Reeves", "character": "Neo", "id": 6384, "credit_id": "52fe425cc3a36847f801836f", "cast_id": 24, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Trinity", "id": 530, "credit_id": "52fe425cc3a36847f8018377", "cast_id": 26, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Laurence Fishburne", "character": "Morpheus", "id": 2975, "credit_id": "52fe425cc3a36847f8018373", "cast_id": 25, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 2}, {"name": "Helmut Bakaitis", "character": "The Architect", "id": 9443, "credit_id": "52fe425cc3a36847f8018383", "cast_id": 29, "profile_path": "/y6ICnJGyavStO2wrbqpf5hABwPj.jpg", "order": 3}, {"name": "Steve Bastoni", "character": "Soren", "id": 75121, "credit_id": "52fe425cc3a36847f80183c5", "cast_id": 50, "profile_path": "/pL2atjQ6ZnUzvlI4r3LeT6h3OW6.jpg", "order": 4}, {"name": "Don Battee", "character": "Vector", "id": 1091387, "credit_id": "52fe425cc3a36847f80183c9", "cast_id": 51, "profile_path": "/wldKStDYxScihvLnObITQV4GuUb.jpg", "order": 5}, {"name": "Monica Bellucci", "character": "Persephone", "id": 28782, "credit_id": "52fe425cc3a36847f801838b", "cast_id": 31, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 6}, {"name": "Daniel Bernhardt", "character": "Agent Johnson", "id": 9452, "credit_id": "52fe425cc3a36847f8018397", "cast_id": 34, "profile_path": "/gsIWvByH4lzQdTgMswQWqiAQOql.jpg", "order": 7}, {"name": "Valerie Berry", "character": "Priestess", "id": 1218802, "credit_id": "52fe425cc3a36847f80183cd", "cast_id": 52, "profile_path": null, "order": 8}, {"name": "Ian Bliss", "character": "Bane", "id": 62486, "credit_id": "52fe425cc3a36847f80183d1", "cast_id": 53, "profile_path": "/cPBbJE6Pn0dU1LgPzrkE2Lfu0MJ.jpg", "order": 9}, {"name": "Liliana Bogatko", "character": "Old Woman at Zion", "id": 1218824, "credit_id": "52fe425cc3a36847f80183d5", "cast_id": 54, "profile_path": "/wgSWGCUKrg9EHOZztBes4U4NuGd.jpg", "order": 10}, {"name": "Michael Budd", "character": "Zion Controller", "id": 582925, "credit_id": "52fe425cc3a36847f80183d9", "cast_id": 55, "profile_path": "/83djGObhdc8tuwJkyMHIZJHJ16M.jpg", "order": 11}, {"name": "Stoney Burke", "character": "Bike Carrier Driver", "id": 1218839, "credit_id": "52fe425cc3a36847f80183dd", "cast_id": 56, "profile_path": "/vCn45fBXGHEmfq6zzReliSK1YPA.jpg", "order": 12}, {"name": "Kelly Butler", "character": "Ice", "id": 152545, "credit_id": "52fe425cc3a36847f80183e1", "cast_id": 57, "profile_path": "/lbkGbzr9iMYuZxonZOHbceRnRVO.jpg", "order": 13}, {"name": "Josephine Byrnes", "character": "Zion Virtual Control Operator", "id": 192815, "credit_id": "52fe425cc3a36847f80183e5", "cast_id": 58, "profile_path": "/fzdJie5umMZnqgArMspceccDax2.jpg", "order": 14}, {"name": "Noris Campos", "character": "Woman with Groceries", "id": 102408, "credit_id": "52fe425cc3a36847f80183e9", "cast_id": 59, "profile_path": "/x75vRFK10qaFA1nycTONNKSyqNk.jpg", "order": 15}, {"name": "Collin Chou", "character": "Seraph", "id": 52908, "credit_id": "52fe425cc3a36847f80183af", "cast_id": 41, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 16}, {"name": "Paul Cotter", "character": "Corrupt", "id": 1265137, "credit_id": "52fe425cc3a36847f80183ed", "cast_id": 60, "profile_path": "/romSgwl2ayCusRAV16fi4HXfwsa.jpg", "order": 17}, {"name": "Marlene Cummins", "character": "Another Old Woman at Zion", "id": 1265138, "credit_id": "52fe425cc3a36847f80183f1", "cast_id": 61, "profile_path": null, "order": 18}, {"name": "Attila Davidhazy", "character": "Young Thomas Anderson at 12", "id": 1028602, "credit_id": "52fe425cc3a36847f80183f5", "cast_id": 62, "profile_path": "/fg6lHXcqsLgL5i7A0Xfv7YYGkIv.jpg", "order": 19}, {"name": "Essie Davis", "character": "Maggie", "id": 33449, "credit_id": "52fe425cc3a36847f80183f9", "cast_id": 63, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 20}, {"name": "Terrell Dixon", "character": "Wurm", "id": 1265140, "credit_id": "52fe425cc3a36847f80183fd", "cast_id": 64, "profile_path": "/yQchkdE6lQExzJFJgIGL4XNLjQg.jpg", "order": 21}, {"name": "Nash Edgerton", "character": "Security Guard #5", "id": 75131, "credit_id": "52fe425cc3a36847f8018401", "cast_id": 65, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 22}, {"name": "Gloria Foster", "character": "Oracle", "id": 9364, "credit_id": "52fe425cc3a36847f801837f", "cast_id": 28, "profile_path": "/ahwiARgfOYctk6sOLBBk5w7cfH5.jpg", "order": 23}, {"name": "David Franklin", "character": "Maitre D'", "id": 26059, "credit_id": "52fe425cc3a36847f8018405", "cast_id": 66, "profile_path": "/n5W2C8Fir0wdQg8HmBeBpmvpCfH.jpg", "order": 24}, {"name": "Austin Galuppo", "character": "Young Thomas Anderson at 4", "id": 1265141, "credit_id": "52fe425cc3a36847f8018409", "cast_id": 67, "profile_path": null, "order": 25}, {"name": "Nona Gaye", "character": "Zee", "id": 18286, "credit_id": "52fe425cc3a36847f80183bb", "cast_id": 44, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 26}, {"name": "Daryl Heath", "character": "A.P.U. Escort", "id": 1265142, "credit_id": "52fe425cc3a36847f801840d", "cast_id": 68, "profile_path": null, "order": 27}, {"name": "Roy Jones Jr.", "character": "Captain Ballard", "id": 9457, "credit_id": "52fe425cc3a36847f801839b", "cast_id": 36, "profile_path": "/fgsHZRBpMinLbRninT1RcApxEnA.jpg", "order": 28}, {"name": "Malcolm Kennard", "character": "Abel", "id": 152492, "credit_id": "52fe425cc3a36847f8018411", "cast_id": 69, "profile_path": "/aA836ZwpPlKuAcx7JqRrkADZ7vA.jpg", "order": 29}, {"name": "David Kilde", "character": "Agent Jackson", "id": 9459, "credit_id": "52fe425cc3a36847f801839f", "cast_id": 37, "profile_path": "/cDayFhoaOLlI2w1fVJGpV1ddrxB.jpg", "order": 30}, {"name": "Randall Duk Kim", "character": "The Keymaker", "id": 9462, "credit_id": "52fe425cc3a36847f80183a3", "cast_id": 38, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 31}, {"name": "Christopher Kirby", "character": "Mauser", "id": 75175, "credit_id": "52fe425cc3a36847f8018415", "cast_id": 70, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 32}, {"name": "Peter Lamb", "character": "Colt", "id": 152559, "credit_id": "52fe425cc3a36847f8018419", "cast_id": 71, "profile_path": "/33uV3Q1NF625W9oPkEy3mvqHxcj.jpg", "order": 33}, {"name": "Nathaniel Lees", "character": "Mifune", "id": 41784, "credit_id": "52fe425cc3a36847f801841d", "cast_id": 72, "profile_path": "/j1w45OYSdNpA9LVd8kDbWRhwXSM.jpg", "order": 34}, {"name": "Harry Lennix", "character": "Commander Lock", "id": 9464, "credit_id": "52fe425cc3a36847f80183a7", "cast_id": 39, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 35}, {"name": "Tony Lynch", "character": "Computer Room Technician", "id": 1265143, "credit_id": "52fe425cc3a36847f8018421", "cast_id": 73, "profile_path": "/zTACfjNSwRp7PP9rhidlhyWjbjf.jpg", "order": 36}, {"name": "Robert Mammone", "character": "AK", "id": 83769, "credit_id": "52fe425cc3a36847f8018425", "cast_id": 74, "profile_path": "/aDtHgVRqkCw0H46db8oYtS2y3VE.jpg", "order": 37}, {"name": "Joshua Mbakwe", "character": "Link's Nephew", "id": 1265144, "credit_id": "52fe425cc3a36847f8018429", "cast_id": 75, "profile_path": "/fFXxgUwK0Ges4pU2YSeVvAibiX3.jpg", "order": 38}, {"name": "Matt McColm", "character": "Agent Thompson", "id": 9466, "credit_id": "52fe425cc3a36847f80183ab", "cast_id": 40, "profile_path": "/z4bPKnOdDrkOmzeudLCcPKyyMUE.jpg", "order": 39}, {"name": "Chris Mitchell", "character": "Power Station Guard", "id": 185440, "credit_id": "52fe425cc3a36847f8018431", "cast_id": 77, "profile_path": "/x2euDIJm3NUNF3ofjGJQ2cR07mF.jpg", "order": 40}, {"name": "Steve Morris", "character": "Computer Room Guard", "id": 440902, "credit_id": "52fe425cc3a36847f8018435", "cast_id": 78, "profile_path": "/j2V1B9vxgl87CvVdn4jaO0AaVRR.jpg", "order": 41}, {"name": "Tory Mussett", "character": "Beautiful Woman at Le Vrai", "id": 56436, "credit_id": "52fe425cc3a36847f8018439", "cast_id": 79, "profile_path": "/ubSWhPfo99cqEC4SmLH9NJnjmpn.jpg", "order": 42}, {"name": "Rene Naufahu", "character": "Zion Gate Operator", "id": 73883, "credit_id": "52fe425cc3a36847f801843d", "cast_id": 80, "profile_path": "/ikLUXUl9zH55hPGoKPbakzvWX8g.jpg", "order": 43}, {"name": "Robyn Nevin", "character": "Councillor Dillard", "id": 75893, "credit_id": "52fe425cc3a36847f8018441", "cast_id": 81, "profile_path": "/5tqOX7iKTWaf3KDN4hiHXXN7wmI.jpg", "order": 44}, {"name": "David No", "character": "Cain", "id": 1155485, "credit_id": "52fe425cc3a36847f8018445", "cast_id": 82, "profile_path": "/aayfhIuyIjtcDQwhbBhVRC4Ori4.jpg", "order": 45}, {"name": "Genevieve O'Reilly", "character": "Officer Wirtz", "id": 139654, "credit_id": "52fe425cc3a36847f8018449", "cast_id": 83, "profile_path": "/8NrrFxrGng88GU7lxwOyK3PZv05.jpg", "order": 46}, {"name": "Socratis Otto", "character": "Operator", "id": 75174, "credit_id": "52fe425cc3a36847f801844d", "cast_id": 84, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 47}, {"name": "Harold Perrineau", "character": "Link", "id": 6195, "credit_id": "52fe425cc3a36847f8018451", "cast_id": 85, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 48}, {"name": "Jada Pinkett Smith", "character": "Niobe", "id": 9575, "credit_id": "52fe425cc3a36847f80183b7", "cast_id": 43, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 49}, {"name": "Monta\u00f1o Rain", "character": "Young Thomas Anderson at 8", "id": 1265151, "credit_id": "52fe425cc3a36847f8018455", "cast_id": 86, "profile_path": null, "order": 50}, {"name": "Adrian Rayment", "character": "Twin #2", "id": 9448, "credit_id": "52fe425cc3a36847f801838f", "cast_id": 32, "profile_path": "/c3ExwLos7XIsLUuEzwFjOd1wYWo.jpg", "order": 51}, {"name": "Neil Rayment", "character": "Twin #1", "id": 9450, "credit_id": "52fe425cc3a36847f8018393", "cast_id": 33, "profile_path": "/yXV3FgDENpm5P9m62GugJNGhczH.jpg", "order": 52}, {"name": "Rupert Reid", "character": "Lock's Lieutenant", "id": 187189, "credit_id": "52fe425cc3a36847f8018459", "cast_id": 87, "profile_path": "/jDJKsbUB2zgwgx5c51tHF35kafY.jpg", "order": 53}, {"name": "Hugo Weaving", "character": "Agent Smith", "id": 1331, "credit_id": "52fe425cc3a36847f801837b", "cast_id": 27, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 54}, {"name": "Lambert Wilson", "character": "The Merovingian", "id": 2192, "credit_id": "52fe425cc3a36847f8018387", "cast_id": 30, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 55}, {"name": "Cornel West", "character": "Councillor West", "id": 537506, "credit_id": "52fe425cc3a36847f80183b3", "cast_id": 42, "profile_path": "/lMOn0gg1tTphBE974NARiTmqTES.jpg", "order": 56}, {"name": "David Roberts", "character": "Roland", "id": 77553, "credit_id": "52fe425cc3a36847f801845d", "cast_id": 88, "profile_path": "/shYTmEKuTg4R4xRUYS5EHbjh0Ty.jpg", "order": 57}, {"name": "Shane C. Rodrigo", "character": "Ajax", "id": 1265152, "credit_id": "52fe425cc3a36847f8018461", "cast_id": 89, "profile_path": "/4efFc566JDCTMSrhIFU3QEclZuR.jpg", "order": 58}, {"name": "Nick Scoggin", "character": "Gidim Truck Driver", "id": 1008016, "credit_id": "52fe425cc3a36847f8018465", "cast_id": 90, "profile_path": "/tW3ztMGgR8uTB8VDVWs0fosQTXv.jpg", "order": 59}, {"name": "Kevin Scott", "character": "18 Wheel Trucker", "id": 1012973, "credit_id": "52fe425cc3a36847f8018469", "cast_id": 91, "profile_path": "/9ArAqj0Bqk7gHnXIyf41D9odTKr.jpg", "order": 60}, {"name": "Tahei Simpson", "character": "Binary", "id": 15302, "credit_id": "52fe425cc3a36847f801846d", "cast_id": 92, "profile_path": "/32pHsnzR2mJhdu4q5iG74XuDxYG.jpg", "order": 61}, {"name": "Frankie Stevens", "character": "Tirant", "id": 1113310, "credit_id": "52fe425cc3a36847f8018471", "cast_id": 93, "profile_path": "/c559hHsIDrZMSNkhHOsv5uY20dF.jpg", "order": 62}, {"name": "Nicandro Thomas", "character": "Young Thomas Anderson at 2", "id": 1265155, "credit_id": "52fe425cc3a36847f8018475", "cast_id": 94, "profile_path": "/1KAzxuBTXfp3FWZjiXznlQhCshN.jpg", "order": 63}, {"name": "Gina Torres", "character": "Cas", "id": 9576, "credit_id": "52fe425cc3a36847f8018479", "cast_id": 95, "profile_path": "/z43hy1X1vRD26vNDh0lzxg1rcBl.jpg", "order": 64}, {"name": "Andrew Valli", "character": "Police #1", "id": 1265156, "credit_id": "52fe425cc3a36847f801847d", "cast_id": 96, "profile_path": null, "order": 65}, {"name": "Steve Vella", "character": "Malachi", "id": 125323, "credit_id": "52fe425cc3a36847f8018481", "cast_id": 97, "profile_path": "/dPyKdkdk5QKbxsrx8wDSDGFjQLJ.jpg", "order": 66}, {"name": "John Walton", "character": "Security Bunker Guard", "id": 1265157, "credit_id": "52fe425cc3a36847f8018485", "cast_id": 98, "profile_path": "/uh5CRSXxm9cVGtZvOWO3rTC2Oc3.jpg", "order": 67}, {"name": "Clayton Watson", "character": "Kid", "id": 56347, "credit_id": "52fe425cc3a36847f8018489", "cast_id": 99, "profile_path": null, "order": 68}, {"name": "Leigh Whannell", "character": "Axel", "id": 2128, "credit_id": "52fe425cc3a36847f801848d", "cast_id": 100, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 69}, {"name": "Bernard White", "character": "Rama-Kandra", "id": 156739, "credit_id": "52fe425cc3a36847f8018491", "cast_id": 101, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 70}, {"name": "Anthony Zerbe", "character": "Councillor Hamann", "id": 2516, "credit_id": "52fe425cc3a36847f8018499", "cast_id": 103, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 71}, {"name": "Scott McLean", "character": "Security Bunker Guard #2", "id": 87811, "credit_id": "530836c0925141111a001771", "cast_id": 104, "profile_path": "/lv4uPdfP2JIqKm4eDOWJHdDIbmA.jpg", "order": 72}, {"name": "Anthony Wong", "character": "Ghost", "id": 930817, "credit_id": "5308383ac3a3684201001dcd", "cast_id": 105, "profile_path": "/qCXdSClvG2EaXFO3xAyAZdNjXYD.jpg", "order": 73}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f80182ed", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f80183c1", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}], "vote_average": 6.5, "runtime": 138}, "605": {"poster_path": "/sKogjhfs5q3azmpW7DFKKAeLEG8.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 424988211, "overview": "The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.", "video": false, "id": 605, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Matrix Revolutions", "tagline": "Everything that has a beginning has an end.", "vote_count": 1421, "homepage": "http://whatisthematrix.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/bRm2DEgUiYciDw3myHuYFInD7la.jpg", "poster_path": "/lh4aGpd3U9rm9B8Oqr6CUgQLtZL.jpg", "id": 2344, "name": "The Matrix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0242653", "adult": false, "backdrop_path": "/pdVHUsb2eEz9ALNTr6wfRJe5xVa.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}], "release_date": "2003-10-26", "popularity": 2.01001384476135, "original_title": "The Matrix Revolutions", "budget": 150000000, "cast": [{"name": "Keanu Reeves", "character": "Neo", "id": 6384, "credit_id": "52fe425cc3a36847f80184f5", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Morpheus", "id": 2975, "credit_id": "52fe425cc3a36847f80184f9", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Carrie-Anne Moss", "character": "Trinity", "id": 530, "credit_id": "52fe425cc3a36847f80184fd", "cast_id": 3, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Agent Smith", "id": 1331, "credit_id": "52fe425cc3a36847f8018501", "cast_id": 4, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Mary Alice", "character": "Oracle", "id": 9572, "credit_id": "52fe425cc3a36847f8018505", "cast_id": 5, "profile_path": "/2h20nF8gvhqhgVDV6Lru55dKB44.jpg", "order": 4}, {"name": "Helmut Bakaitis", "character": "The Architect", "id": 9443, "credit_id": "52fe425cc3a36847f8018509", "cast_id": 6, "profile_path": "/y6ICnJGyavStO2wrbqpf5hABwPj.jpg", "order": 5}, {"name": "Lambert Wilson", "character": "The Merovingian", "id": 2192, "credit_id": "52fe425cc3a36847f801850d", "cast_id": 7, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 6}, {"name": "Roy Jones Jr.", "character": "Captain Ballard", "id": 9457, "credit_id": "52fe425cc3a36847f8018511", "cast_id": 9, "profile_path": "/fgsHZRBpMinLbRninT1RcApxEnA.jpg", "order": 8}, {"name": "Randall Duk Kim", "character": "The Keymaker", "id": 9462, "credit_id": "52fe425cc3a36847f8018515", "cast_id": 10, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 9}, {"name": "Harry Lennix", "character": "Commander Lock", "id": 9464, "credit_id": "52fe425cc3a36847f8018519", "cast_id": 11, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 10}, {"name": "Matt McColm", "character": "Agent Thompson", "id": 9466, "credit_id": "52fe425cc3a36847f801851d", "cast_id": 12, "profile_path": "/z4bPKnOdDrkOmzeudLCcPKyyMUE.jpg", "order": 11}, {"name": "Harold Perrineau", "character": "Link", "id": 6195, "credit_id": "52fe425cc3a36847f8018521", "cast_id": 13, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 12}, {"name": "Jada Pinkett Smith", "character": "Niobe", "id": 9575, "credit_id": "52fe425cc3a36847f8018525", "cast_id": 14, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 13}, {"name": "Gina Torres", "character": "Cas", "id": 9576, "credit_id": "52fe425cc3a36847f8018529", "cast_id": 15, "profile_path": "/z43hy1X1vRD26vNDh0lzxg1rcBl.jpg", "order": 14}, {"name": "Collin Chou", "character": "Seraph", "id": 52908, "credit_id": "52fe425cc3a36847f80185b7", "cast_id": 39, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 15}, {"name": "Cornel West", "character": "Councillor West", "id": 537506, "credit_id": "52fe425cc3a36847f80185bb", "cast_id": 40, "profile_path": "/lMOn0gg1tTphBE974NARiTmqTES.jpg", "order": 16}, {"name": "Nona Gaye", "character": "Zee", "id": 18286, "credit_id": "52fe425cc3a36847f80185bf", "cast_id": 41, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 17}, {"name": "Monica Bellucci", "character": "Persephone", "id": 28782, "credit_id": "52fe425cc3a36847f80185c3", "cast_id": 42, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 18}, {"name": "Maurice Morgan", "character": "Tower Soldier", "id": 62490, "credit_id": "52fe425cc3a36847f80185c7", "cast_id": 43, "profile_path": "/96fM22kWShDIlWNS7ZVsd8s1kLo.jpg", "order": 19}, {"name": "Bernard White", "character": "Rama-Kandra", "id": 156739, "credit_id": "52fe425cc3a36847f80185cb", "cast_id": 44, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 20}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f801852f", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f801853b", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}], "vote_average": 6.3, "runtime": 129}, "606": {"poster_path": "/gYNfg38sM4aSpxfC8gPkwg5UZHN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128499205, "overview": "Out of Africa tells the story of the life of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on the autobiographical novel by Karen Blixen from 1937.", "video": false, "id": 606, "genres": [{"id": 18, "name": "Drama"}], "title": "Out of Africa", "tagline": "Based on a true story.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0089755", "adult": false, "backdrop_path": "/w6VwFCdQypTKEZAkzWtyPVii3zp.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Mirage Entertainment", "id": 205}], "release_date": "1985-12-10", "popularity": 0.812946124957046, "original_title": "Out of Africa", "budget": 31000000, "cast": [{"name": "Meryl Streep", "character": "Karen Christence Dinesen Blixen", "id": 5064, "credit_id": "52fe425cc3a36847f8018697", "cast_id": 22, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Robert Redford", "character": "Denys George Finch Hatton", "id": 4135, "credit_id": "52fe425cc3a36847f801869b", "cast_id": 23, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Klaus Maria Brandauer", "character": "Baron Bror Blixen/Baron Hans Blixen", "id": 10647, "credit_id": "52fe425cc3a36847f801869f", "cast_id": 24, "profile_path": "/7TQOSrbO4tk3jecFSg2dVdZjTHQ.jpg", "order": 2}, {"name": "Michael Kitchen", "character": "Berkeley Cole", "id": 10648, "credit_id": "52fe425cc3a36847f80186a3", "cast_id": 25, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 3}, {"name": "Malick Bowens", "character": "Farah", "id": 10649, "credit_id": "52fe425cc3a36847f80186a7", "cast_id": 26, "profile_path": null, "order": 4}, {"name": "Joseph Thiaka", "character": "Kamante", "id": 10650, "credit_id": "52fe425cc3a36847f80186ab", "cast_id": 27, "profile_path": null, "order": 5}, {"name": "Stephen Kinyanjui", "character": "Kinanjui", "id": 10651, "credit_id": "52fe425cc3a36847f80186af", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Michael Gough", "character": "Lord Delamere", "id": 3796, "credit_id": "52fe425cc3a36847f80186b3", "cast_id": 29, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 7}, {"name": "Suzanna Hamilton", "character": "Felicity", "id": 10652, "credit_id": "52fe425cc3a36847f80186b7", "cast_id": 30, "profile_path": "/ei41XX9AYpFFTk36t0mD3KYs4bg.jpg", "order": 8}, {"name": "Rachel Kempson", "character": "Lady Belfield", "id": 10653, "credit_id": "52fe425cc3a36847f80186bb", "cast_id": 31, "profile_path": "/bdnBRD6SXiJGqgt0jH5I6ZqH4yD.jpg", "order": 9}, {"name": "Graham Crowden", "character": "Lord Belfield", "id": 10654, "credit_id": "52fe425cc3a36847f80186bf", "cast_id": 32, "profile_path": "/wyGg5BXqE1N8oG1Ag82I3yHYQdW.jpg", "order": 10}, {"name": "Leslie Phillips", "character": "Sir Joseph", "id": 10655, "credit_id": "52fe425cc3a36847f80186c3", "cast_id": 33, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 11}, {"name": "Mike Bugara", "character": "Juma", "id": 10656, "credit_id": "52fe425cc3a36847f80186c7", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Shane Rimmer", "character": "Belknap, farm manager", "id": 10657, "credit_id": "52fe425cc3a36847f80186cb", "cast_id": 35, "profile_path": "/ctrIOcWLjOB5rocS0vVHEjbS1Sx.jpg", "order": 13}, {"name": "Job Seda", "character": "Kanuthia", "id": 10658, "credit_id": "52fe425cc3a36847f80186cf", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Mohammed Umar", "character": "Ismail", "id": 1154526, "credit_id": "52fe425cc3a36847f80186df", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Iman", "character": "Mariammo", "id": 2124, "credit_id": "52fe425cc3a36847f80186e3", "cast_id": 40, "profile_path": "/4HAfEFjc7XkJSGeL7nKiQzntHuw.jpg", "order": 16}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f8018621", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 7.0, "runtime": 161}, "607": {"poster_path": "/f24UVKq3UiQWLqGWdqjwkzgB8j8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 589390539, "overview": "Men in Black follows the exploits of agents Kay and Jay, members of a top-secret organization established to monitor and police alien activity on Earth. The two Men in Black find themselves in the middle of the deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies. In order to prevent worlds from colliding, the MiB must track down the terrorist and prevent the destruction of Earth. It's just another typical day for the Men in Black.", "video": false, "id": 607, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Men in Black", "tagline": "Protecting the Earth from the scum of the universe.", "vote_count": 1667, "homepage": "http://www.sonypictures.com/homevideo/meninblack/", "belongs_to_collection": {"backdrop_path": "/iGEoxfkFZXQcqAkDUDpnjqGCN6R.jpg", "poster_path": "/rWcgZaoJ0nxTFRn0H6w9bdtoDUI.jpg", "id": 86055, "name": "Men In Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0119654", "adult": false, "backdrop_path": "/o17MKb2hyuqtb0P6xLdNY4HaxDi.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1997-07-02", "popularity": 1.37783087665522, "original_title": "Men in Black", "budget": 90000000, "cast": [{"name": "Tommy Lee Jones", "character": "Agent K", "id": 2176, "credit_id": "52fe425dc3a36847f80187c7", "cast_id": 25, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Will Smith", "character": "James Edwards / Agent J", "id": 2888, "credit_id": "52fe425dc3a36847f80187cb", "cast_id": 26, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Linda Fiorentino", "character": "Dr. Laurel Weaver / Agent L", "id": 9625, "credit_id": "52fe425dc3a36847f80187cf", "cast_id": 27, "profile_path": "/16aVa4evfjWiAnM6srkLhWYJlpZ.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Edgar / The Bug", "id": 7132, "credit_id": "52fe425dc3a36847f80187d3", "cast_id": 28, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "Rip Torn", "character": "Chief Zed", "id": 9626, "credit_id": "52fe425dc3a36847f80187d7", "cast_id": 29, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 4}, {"name": "Tony Shalhoub", "character": "Jack Jeebs", "id": 4252, "credit_id": "52fe425dc3a36847f80187db", "cast_id": 30, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 5}, {"name": "Mike Nussbaum", "character": "Gentle Rosenburg the Arquillian Jeweler", "id": 9628, "credit_id": "52fe425dc3a36847f80187df", "cast_id": 31, "profile_path": "/gcsqhh40flXDPJ9s3U6clD9Jb59.jpg", "order": 6}, {"name": "Jon Gries", "character": "Van driver", "id": 9629, "credit_id": "52fe425dc3a36847f80187e3", "cast_id": 32, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 7}, {"name": "Sergio Calder\u00f3n", "character": "Jose", "id": 9630, "credit_id": "52fe425dc3a36847f80187e7", "cast_id": 33, "profile_path": "/idF5aYegbTJzZF7Uhe3GarfKSsZ.jpg", "order": 8}, {"name": "Carel Struycken", "character": "Arquillian", "id": 9631, "credit_id": "52fe425dc3a36847f80187eb", "cast_id": 34, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 9}, {"name": "Fredric Lehne", "character": "INS agent Janus", "id": 9632, "credit_id": "52fe425dc3a36847f80187ef", "cast_id": 35, "profile_path": "/imw4YH5LOtyA3lQOGA5UNp9e8NI.jpg", "order": 10}, {"name": "Richard Hamilton", "character": "Agent D", "id": 9633, "credit_id": "52fe425dc3a36847f80187f3", "cast_id": 36, "profile_path": "/voxABW599IHapx2AY9c16mqNK3n.jpg", "order": 11}, {"name": "Kent Faulcon", "character": "2nd Lt. Jake Jensen", "id": 9634, "credit_id": "52fe425dc3a36847f80187f7", "cast_id": 37, "profile_path": "/oOKr7nJJwpGNrPijma1MhhkDRPv.jpg", "order": 12}, {"name": "Siobhan Fallon", "character": "Beatrice", "id": 6751, "credit_id": "52fe425dc3a36847f80187fb", "cast_id": 39, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 13}, {"name": "John Alexander", "character": "Mikey", "id": 443770, "credit_id": "52fe425dc3a36847f80187ff", "cast_id": 40, "profile_path": "/5tcxoXCC4hh12OowR1kITzkrCmC.jpg", "order": 14}, {"name": "Keith Campbell", "character": "Perp", "id": 15318, "credit_id": "53b94f60c3a3685eb4005502", "cast_id": 41, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 15}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f8018739", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.5, "runtime": 98}, "608": {"poster_path": "/qWjRfBwr4VculczswwojXgoU0mq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 441818803, "overview": "Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIBs untarnished mission statement: protecting the earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. And now it's a race against the clock as Jay must convince Kay-who not only has absolutely no memory of his time spent with the Men In Black, but is also the only living person left with the expertise to save the galaxy-to reunite with the MIB before the earth submits to ultimate destruction.", "video": false, "id": 608, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Men in Black II", "tagline": "Same Planet. New Scum.", "vote_count": 997, "homepage": "http://www.sonypictures.com/homevideo/meninblackii/", "belongs_to_collection": {"backdrop_path": "/iGEoxfkFZXQcqAkDUDpnjqGCN6R.jpg", "poster_path": "/rWcgZaoJ0nxTFRn0H6w9bdtoDUI.jpg", "id": 86055, "name": "Men In Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120912", "adult": false, "backdrop_path": "/cITp4EM8HEKrlhXDEeGNy2IB8D9.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Amblin Entertainment", "id": 56}, {"name": "MacDonald/Parkes Productions", "id": 384}], "release_date": "2002-07-02", "popularity": 0.902867575648059, "original_title": "Men in Black II", "budget": 140000000, "cast": [{"name": "Tommy Lee Jones", "character": "Kevin Brown, Agent Kay", "id": 2176, "credit_id": "52fe425dc3a36847f80188d9", "cast_id": 25, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Will Smith", "character": "Agent Jay", "id": 2888, "credit_id": "52fe425dc3a36847f8018905", "cast_id": 36, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Rip Torn", "character": "Zed", "id": 9626, "credit_id": "52fe425dc3a36847f80188dd", "cast_id": 26, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 2}, {"name": "Lara Flynn Boyle", "character": "Serleena", "id": 6684, "credit_id": "52fe425dc3a36847f80188e1", "cast_id": 27, "profile_path": "/m6yHSVEjItgFkMAKB3zOdOoLITy.jpg", "order": 3}, {"name": "Johnny Knoxville", "character": "Scrad/Charlie", "id": 9656, "credit_id": "52fe425dc3a36847f80188e5", "cast_id": 28, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 4}, {"name": "Rosario Dawson", "character": "Laura Vasquez", "id": 5916, "credit_id": "52fe425dc3a36847f80188e9", "cast_id": 29, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 5}, {"name": "Tony Shalhoub", "character": "Jack Jeebs", "id": 4252, "credit_id": "52fe425dc3a36847f80188ed", "cast_id": 30, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 6}, {"name": "Patrick Warburton", "character": "Agent Tee", "id": 9657, "credit_id": "52fe425dc3a36847f80188f1", "cast_id": 31, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 7}, {"name": "Jack Kehler", "character": "Ben", "id": 1240, "credit_id": "52fe425dc3a36847f80188f5", "cast_id": 32, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 8}, {"name": "David Cross", "character": "Newton", "id": 212, "credit_id": "52fe425dc3a36847f80188f9", "cast_id": 33, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 9}, {"name": "Colombe Jacobsen-Derstine", "character": "Hailey", "id": 9658, "credit_id": "52fe425dc3a36847f80188fd", "cast_id": 34, "profile_path": "/2mfG4qLG4qkVs8zOwd57pPAVPH7.jpg", "order": 10}, {"name": "Peter Spellos", "character": "Captain Larry Bridgewater, The Motorman", "id": 9659, "credit_id": "52fe425dc3a36847f8018901", "cast_id": 35, "profile_path": "/sj2YF20Rqe8uvS1QQajCV5bdaky.jpg", "order": 11}, {"name": "Michael Bailey Smith", "character": "Creepy", "id": 37008, "credit_id": "52fe425dc3a36847f801890f", "cast_id": 38, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 12}, {"name": "Rick Baker", "character": "MIB Passport Control Agent", "id": 16178, "credit_id": "52fe425dc3a36847f8018913", "cast_id": 39, "profile_path": "/4sVinbTdY31QSmQUJFjomK2AXd8.jpg", "order": 13}, {"name": "Michael Jackson", "character": "Agent M", "id": 82702, "credit_id": "52fe425dc3a36847f8018917", "cast_id": 40, "profile_path": "/9nDsffd8kZ2O9MlnIiqWRVausM7.jpg", "order": 14}, {"name": "Doug Jones", "character": "Joey", "id": 17005, "credit_id": "52fe425dc3a36847f801891b", "cast_id": 41, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 15}, {"name": "Derek Mears", "character": "Mosh Tendrils", "id": 51300, "credit_id": "52fe425dc3a36847f801891f", "cast_id": 42, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 16}, {"name": "Michael Rivkin", "character": "the man with Harvey, the dog", "id": 154590, "credit_id": "535d5686c3a36830a000423a", "cast_id": 43, "profile_path": "/dbDAM1BOcjvnoFBI7QlWW0UUC3E.jpg", "order": 17}, {"name": "Lenny Venito", "character": "New York guy", "id": 37157, "credit_id": "535d56bfc3a3682273000928", "cast_id": 44, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 18}, {"name": "Howard Spiegel", "character": "New York guy", "id": 1314246, "credit_id": "535d56dec3a3683091004234", "cast_id": 45, "profile_path": "/z9CmHwe7fHG1YKPoeaykxYxqZZP.jpg", "order": 19}, {"name": "Alpheus Merchant", "character": "MIB guard", "id": 189734, "credit_id": "535d5705c3a36830a0004246", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Joel McKinnon Miller", "character": "agent", "id": 88950, "credit_id": "535d578fc3a36830a0004250", "cast_id": 48, "profile_path": "/3Ogco60XoPVmbLTzqmhgxDgsQBW.jpg", "order": 22}, {"name": "Jay Johnston", "character": "the younger Pizza Parlor MIB agent", "id": 1215262, "credit_id": "535d5836c3a36830a0004255", "cast_id": 55, "profile_path": "/tez2yLdvX40JNvZVTePuEYecda0.jpg", "order": 29}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018857", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 5.9, "runtime": 88}, "609": {"poster_path": "/hKs6umpuLSgZhOiZI1pxpO0iVTQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122200000, "overview": "Craig T. Nelson stars as Steve Freeling, the main protagonist, who lives with his wife, Diane, (JoBeth Williams) and their three children, Dana (Dominique Dunne), Robbie (Oliver Robins), and Carol Anne (Heather O'Rourke), in Southern California where he sells houses for the company that built the neighborhood. It starts with just a few odd occurrences, such as broken dishes and furniture moving around by itself. However, a tree comes alive and takes Robbie through his bedroom window, and Carol Anne is abducted by ghosts. Realizing that something evil haunts his home, Steve calls in a team of parapsychologists led by Dr. Lesh (Beatrice Straight) to investigate, hoping to get Carol Anne back, so he can remove his family from the house before it's too late.", "video": false, "id": 609, "genres": [{"id": 27, "name": "Horror"}], "title": "Poltergeist", "tagline": "They're here.", "vote_count": 216, "homepage": "", "belongs_to_collection": {"backdrop_path": "/i8QZZV1olny9FCPNrxAL7Kk9CJy.jpg", "poster_path": "/8Z6P04pKGvCnkmHdAl2lmbfAIbN.jpg", "id": 10453, "name": "Poltergeist Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084516", "adult": false, "backdrop_path": "/6kazrydTbHlqKzE5h2xUejDgIec.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "SLM Production Group", "id": 396}], "release_date": "1982-06-04", "popularity": 1.73520494702945, "original_title": "Poltergeist", "budget": 10700000, "cast": [{"name": "Craig T. Nelson", "character": "Steve Freeling", "id": 8977, "credit_id": "52fe425dc3a36847f80189dd", "cast_id": 21, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 0}, {"name": "JoBeth Williams", "character": "Diane Freeling", "id": 10080, "credit_id": "52fe425dc3a36847f80189e1", "cast_id": 22, "profile_path": "/qYpexEkDDXG1TwtmAVgr5wsi60x.jpg", "order": 1}, {"name": "Beatrice Straight", "character": "Dr. Lesh", "id": 10083, "credit_id": "52fe425dc3a36847f80189e5", "cast_id": 23, "profile_path": "/e88n8bvcpLTz6Tz1VYhccFsov7r.jpg", "order": 2}, {"name": "Dominique Dunne", "character": "Dana Freeling", "id": 10084, "credit_id": "52fe425dc3a36847f80189e9", "cast_id": 24, "profile_path": null, "order": 3}, {"name": "Oliver Robins", "character": "Robbie Freeling", "id": 10085, "credit_id": "52fe425dc3a36847f80189ed", "cast_id": 25, "profile_path": "/cp0sOxhabpGVZcHFaTc9YL0Ngn7.jpg", "order": 4}, {"name": "Heather O'Rourke", "character": "Carol Anne Freeling", "id": 10086, "credit_id": "52fe425dc3a36847f80189f1", "cast_id": 26, "profile_path": "/pa7kowurmC4DwJzVXYT08R50L5g.jpg", "order": 5}, {"name": "Michael McManus", "character": "Ben Tuthill", "id": 10087, "credit_id": "52fe425dc3a36847f80189f5", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Virginia Kiser", "character": "Mrs. Tuthill", "id": 10088, "credit_id": "52fe425dc3a36847f80189f9", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Martin Casella", "character": "Dr. Marty Casey", "id": 10089, "credit_id": "52fe425dc3a36847f80189fd", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Richard Lawson", "character": "Ryan", "id": 10090, "credit_id": "52fe425dc3a36847f8018a01", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Zelda Rubinstein", "character": "Tangina Barrons", "id": 10091, "credit_id": "52fe425dc3a36847f8018a05", "cast_id": 31, "profile_path": "/mYW44c9DYrt9xARj0I3HWjwZCLn.jpg", "order": 10}, {"name": "Lou Perryman", "character": "Pugsley", "id": 2851, "credit_id": "52fe425dc3a36847f8018a09", "cast_id": 32, "profile_path": null, "order": 11}], "directors": [{"name": "Tobe Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018967", "profile_path": "/fsPSiL7qhUBULig72zdfKWSDa1V.jpg", "id": 10051}], "vote_average": 6.8, "runtime": 114}, "270946": {"poster_path": "/eCdQdoqG9kQQbzPnbVDXqwoTgLl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98600000, "overview": "Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.", "video": false, "id": 270946, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Penguins of Madagascar", "tagline": "The Movie Event That Will Blow Their Cover", "vote_count": 286, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1911658", "adult": false, "backdrop_path": "/GtodNrQnorVd3Gv6f6i4bdEwkP.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2014-11-26", "popularity": 7.59490404281435, "original_title": "Penguins of Madagascar", "budget": 132000000, "cast": [{"name": "Tom McGrath", "character": "Skipper (voice)", "id": 18864, "credit_id": "546e0038c3a3685aab00208b", "cast_id": 8, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 0}, {"name": "Chris Miller", "character": "Kowalski (voice)", "id": 12098, "credit_id": "546e0047c3a3685aaf001e49", "cast_id": 9, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 1}, {"name": "Christopher Knights", "character": "Private (voice)", "id": 12097, "credit_id": "546e00549251412bb3001f68", "cast_id": 10, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 2}, {"name": "Benedict Cumberbatch", "character": "Classified (voice)", "id": 71580, "credit_id": "537ccf700e0a262a97001b4f", "cast_id": 3, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 3}, {"name": "Ken Jeong", "character": "Short Fuse (voice)", "id": 83586, "credit_id": "53c6323ac3a3686251001bfe", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 4}, {"name": "Annet Mahendru", "character": "Eva (voice)", "id": 1257563, "credit_id": "53c63244c3a3686247001cfd", "cast_id": 7, "profile_path": "/wKGd9Jhsl7KezMWIJ5SLLVHALxY.jpg", "order": 5}, {"name": "Peter Stormare", "character": "Corporal (voice)", "id": 53, "credit_id": "53c6322fc3a368626c001c37", "cast_id": 5, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 6}, {"name": "John Malkovich", "character": "Dave (voice)", "id": 6949, "credit_id": "537ccf770e0a262a91001a83", "cast_id": 4, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 7}, {"name": "Conrad Vernon", "character": "Rico (voice)", "id": 12080, "credit_id": "546f4f39c3a3682f9e002096", "cast_id": 11, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 8}, {"name": "Ken Jeong", "character": "Short Fuse", "id": 83586, "credit_id": "548c802ec3a36820c2002036", "cast_id": 13, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 9}, {"name": "Andy Richter", "character": "Mort (voice)", "id": 28637, "credit_id": "548c803fc3a36820b8002313", "cast_id": 14, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 10}, {"name": "Ken Jeong", "character": "Short Fuse (voice)", "id": 83586, "credit_id": "548c804592514122f90021a2", "cast_id": 15, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 11}, {"name": "Werner Herzog", "character": "Documentary Filmmaker (voice)", "id": 6818, "credit_id": "548c807392514122f5001f5d", "cast_id": 16, "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "order": 12}, {"name": "Billy Eichner", "character": "New York Reporter (voice)", "id": 973651, "credit_id": "548c813a92514122f2001f8b", "cast_id": 17, "profile_path": "/1xCPFY4Yh7evbXILi8JRDRqUWeS.jpg", "order": 13}], "directors": [{"name": "Simon J. Smith", "department": "Directing", "job": "Director", "credit_id": "537ccf650e0a262a84001b26", "profile_path": "/bCbQtXtrOuKpPLdbSLn72KlYc2Z.jpg", "id": 44114}, {"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "5483ba4d92514175f5002c15", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}], "vote_average": 6.7, "runtime": 92}, "16995": {"poster_path": "/lH5rHsUM7Umo9xyyjPguK5kTXKd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87784194, "overview": "Handsome, unflappable U.S. Congressman Stephen Collins is the future of his political party: an honorable appointee who serves as the chairman of a committee overseeing defense spending. All eyes are upon the rising star to be his party's contender for the upcoming presidential race. Until his research assistant/mistress is brutally murdered and buried secrets come tumbling out.", "video": false, "id": 16995, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "State of Play", "tagline": "Find The Truth", "vote_count": 119, "homepage": "http://www.stateofplaymovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0473705", "adult": false, "backdrop_path": "/m5IuPoczdDZyBZJxbOxsIxqghvb.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}, {"name": "Andell Entertainment", "id": 1683}, {"name": "Relativity Media", "id": 7295}, {"name": "StudioCanal", "id": 694}], "release_date": "2009-04-17", "popularity": 1.97274048263361, "original_title": "State of Play", "budget": 60000000, "cast": [{"name": "Russell Crowe", "character": "Cal McAffrey", "id": 934, "credit_id": "52fe46fc9251416c7508a2a5", "cast_id": 2, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Ben Affleck", "character": "Stephen Collins", "id": 880, "credit_id": "52fe46fc9251416c7508a2a9", "cast_id": 3, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 1}, {"name": "Rachel McAdams", "character": "Della Frye", "id": 53714, "credit_id": "52fe46fc9251416c7508a2ad", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 2}, {"name": "Helen Mirren", "character": "Cameron Lynne", "id": 15735, "credit_id": "52fe46fc9251416c7508a2b1", "cast_id": 5, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 3}, {"name": "Robin Wright", "character": "Anne Collins", "id": 32, "credit_id": "52fe46fc9251416c7508a2b5", "cast_id": 6, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Dominic Foy", "id": 23532, "credit_id": "52fe46fc9251416c7508a2b9", "cast_id": 7, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Jeff Daniels", "character": "Senator George Fergus", "id": 8447, "credit_id": "52fe46fc9251416c7508a2c9", "cast_id": 11, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 6}, {"name": "Michael Berresse", "character": "Robert Bingham", "id": 81867, "credit_id": "52fe46fc9251416c7508a2cd", "cast_id": 12, "profile_path": "/py4wHfZS40qGQ2Oi0bMBeqwXjnd.jpg", "order": 7}, {"name": "Harry Lennix", "character": "Det. Donald Bell", "id": 9464, "credit_id": "52fe46fc9251416c7508a2d1", "cast_id": 13, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 8}, {"name": "Josh Mostel", "character": "Pete", "id": 33489, "credit_id": "52fe46fc9251416c7508a2d5", "cast_id": 14, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 9}, {"name": "Michael Weston", "character": "Hank", "id": 51381, "credit_id": "52fe46fc9251416c7508a2d9", "cast_id": 15, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 10}, {"name": "Barry Shabaka Henley", "character": "Gene Stavitz", "id": 8689, "credit_id": "52fe46fc9251416c7508a2dd", "cast_id": 16, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 11}, {"name": "Viola Davis", "character": "Dr. Judith Franklin", "id": 19492, "credit_id": "52fe46fc9251416c7508a2e1", "cast_id": 17, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 12}, {"name": "David Harbour", "character": "PointCorp Insider", "id": 35029, "credit_id": "52fe46fc9251416c7508a2e5", "cast_id": 18, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 13}, {"name": "Gregg Binkley", "character": "Ferris", "id": 170185, "credit_id": "52fe46fc9251416c7508a34d", "cast_id": 36, "profile_path": "/gTmsOFfFqHDcEzeqh3ezcSuk7TB.jpg", "order": 14}, {"name": "Sarah Lord", "character": "Mandi Brokaw", "id": 81868, "credit_id": "52fe46fc9251416c7508a2e9", "cast_id": 19, "profile_path": null, "order": 15}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe46fc9251416c7508a2a1", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 6.5, "runtime": 127}, "612": {"poster_path": "/3pnsX1egUElYvgmAcCqYvXVOY9O.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130358911, "overview": "Steven Spielberg\u2019s story about the Israeli assassinations of key Palestinians following the 1972 Munich massacre, where 11 members of the Israeli olympic team were killed. The film, which questions the idea of revenge killings, caused much fury in parts of the pro-Israel camp.", "video": false, "id": 612, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "Munich", "tagline": "The world was watching in 1972 as 11 Israeli athletes were murdered at the Munich Olympics. This is the story of what happened next.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0408306", "adult": false, "backdrop_path": "/qhOlcpkWW0AcrCRvqnddA6kgCH4.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Barry Mendel Productions", "id": 17032}, {"name": "Alliance Atlantis Communications", "id": 803}, {"name": "Peninsula Films", "id": 682}], "release_date": "2005-12-22", "popularity": 1.07544089111528, "original_title": "Munich", "budget": 70000000, "cast": [{"name": "Eric Bana", "character": "Avner", "id": 8783, "credit_id": "52fe425dc3a36847f8018a81", "cast_id": 10, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Daniel Craig", "character": "Steve", "id": 8784, "credit_id": "52fe425dc3a36847f8018a85", "cast_id": 11, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 1}, {"name": "Ciar\u00e1n Hinds", "character": "Carl", "id": 8785, "credit_id": "52fe425dc3a36847f8018a89", "cast_id": 12, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 2}, {"name": "Mathieu Kassovitz", "character": "Robert", "id": 2406, "credit_id": "52fe425dc3a36847f8018a8d", "cast_id": 13, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 3}, {"name": "Hanns Zischler", "character": "Hans", "id": 169, "credit_id": "52fe425dc3a36847f8018a91", "cast_id": 14, "profile_path": "/kcWgn5jTuI3BPVQlqRMGQ27N4yU.jpg", "order": 4}, {"name": "Ayelet Zurer", "character": "Daphna", "id": 8786, "credit_id": "52fe425dc3a36847f8018a95", "cast_id": 15, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 5}, {"name": "Geoffrey Rush", "character": "Ephraim", "id": 118, "credit_id": "52fe425dc3a36847f8018a99", "cast_id": 16, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 6}, {"name": "Gila Almagor", "character": "Avner's Mother", "id": 8787, "credit_id": "52fe425dc3a36847f8018a9d", "cast_id": 17, "profile_path": "/t2rNmyhizqPnviXFbVaA4iDtqIZ.jpg", "order": 7}, {"name": "Mathieu Amalric", "character": "Louis", "id": 8789, "credit_id": "52fe425dc3a36847f8018aa1", "cast_id": 18, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 8}, {"name": "Moritz Bleibtreu", "character": "Andreas", "id": 677, "credit_id": "52fe425dc3a36847f8018aa5", "cast_id": 19, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 9}, {"name": "Valeria Bruni Tedeschi", "character": "Sylvie", "id": 5077, "credit_id": "52fe425dc3a36847f8018aa9", "cast_id": 20, "profile_path": "/n4WmQHkRwOIp1bpN3lbkJ9BK53z.jpg", "order": 10}, {"name": "Meret Becker", "character": "Yvonne", "id": 8790, "credit_id": "52fe425dc3a36847f8018aad", "cast_id": 21, "profile_path": "/rr88BPUme1o45VRfNERuaQYvc4v.jpg", "order": 11}, {"name": "Marie-Jos\u00e9e Croze", "character": "Jeanette", "id": 8791, "credit_id": "52fe425dc3a36847f8018ab1", "cast_id": 22, "profile_path": "/geZ08Bzueh6qDEGGUR7jQgomLks.jpg", "order": 12}, {"name": "Yvan Attal", "character": "Tony", "id": 2245, "credit_id": "52fe425dc3a36847f8018ab5", "cast_id": 23, "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "order": 13}, {"name": "Lynn Cohen", "character": "Golda Meir", "id": 8792, "credit_id": "52fe425dc3a36847f8018ab9", "cast_id": 24, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 14}, {"name": "Ami Weinberg", "character": "General Zamir", "id": 8793, "credit_id": "52fe425dc3a36847f8018abd", "cast_id": 25, "profile_path": "/cReUrPyB0ctdmzOlSC33azuFkQB.jpg", "order": 15}, {"name": "Michael Lonsdale", "character": "Papa", "id": 2369, "credit_id": "52fe425dc3a36847f8018aeb", "cast_id": 33, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 16}, {"name": "Yigal Naor", "character": "Mahmoud Hamshari", "id": 41316, "credit_id": "52fe425dc3a36847f8018aef", "cast_id": 34, "profile_path": "/fywzghy8kLToNRH4OvrLkFSuXqA.jpg", "order": 17}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018a53", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.6, "runtime": 164}, "613": {"poster_path": "/dKKlkfAQL4Ih3OQwqpmMf0gr4r9.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 92180910, "overview": "In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.", "video": false, "id": 613, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Downfall", "tagline": "April 1945, a nation awaits its...Downfall", "vote_count": 401, "homepage": "http://www.downfallthefilm.com/", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0363163", "adult": false, "backdrop_path": "/d3AmCJXvsP818di5KcCj4fNi36.jpg", "production_companies": [{"name": "Rai Cinema", "id": 2683}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Norddeutscher Rundfunk (NDR)", "id": 7201}, {"name": "\u00d6sterreichischer Rundfunk (ORF)", "id": 3391}, {"name": "Degeto Film", "id": 986}, {"name": "EOS Entertainment", "id": 2278}], "release_date": "2004-09-16", "popularity": 0.834409319858451, "original_title": "Der Untergang", "budget": 18339750, "cast": [{"name": "Bruno Ganz", "character": "Adolf Hitler", "id": 2310, "credit_id": "52fe425dc3a36847f8018b3d", "cast_id": 1, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 0}, {"name": "Alexandra Maria Lara", "character": "Traudl Junge", "id": 5644, "credit_id": "52fe425dc3a36847f8018b41", "cast_id": 2, "profile_path": "/aQS8gK9zJDu2eIUEHUIWqWFcTSj.jpg", "order": 1}, {"name": "Corinna Harfouch", "character": "Magda Goebbels", "id": 680, "credit_id": "52fe425dc3a36847f8018b45", "cast_id": 3, "profile_path": "/oEXqVyUnBLP1JxRVhpT6B3pIe37.jpg", "order": 2}, {"name": "Ulrich Matthes", "character": "Joseph Goebbels", "id": 8796, "credit_id": "52fe425dc3a36847f8018b49", "cast_id": 4, "profile_path": "/8kvLmHa0dkVBNAqrNRwjRjh1JP5.jpg", "order": 3}, {"name": "Juliane K\u00f6hler", "character": "Eva Braun", "id": 8797, "credit_id": "52fe425dc3a36847f8018b4d", "cast_id": 5, "profile_path": "/2cE4lqT16LV6POItflIMfIgXCmA.jpg", "order": 4}, {"name": "Heino Ferch", "character": "Albert Speer", "id": 1086, "credit_id": "52fe425dc3a36847f8018b51", "cast_id": 6, "profile_path": "/dZFdmRr4Ohm5WXZstv7X0lMyd8m.jpg", "order": 5}, {"name": "Christian Berkel", "character": "Prof. Dr. Ernst-G\u00fcnter Schenck", "id": 7803, "credit_id": "52fe425dc3a36847f8018b55", "cast_id": 7, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 6}, {"name": "Thomas Kretschmann", "character": "SS-Gruppenf\u00fchrer Hermann Fegelein", "id": 3491, "credit_id": "52fe425dc3a36847f8018b59", "cast_id": 9, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 8}, {"name": "Ulrich Noethen", "character": "Reichsf\u00fchrer SS Heinrich Himmler", "id": 8799, "credit_id": "52fe425dc3a36847f8018b5d", "cast_id": 10, "profile_path": "/nS9U2b9QzQq9paKBNTERnJi6GrW.jpg", "order": 9}, {"name": "Birgit Minichmayr", "character": "Gerda Christian", "id": 8800, "credit_id": "52fe425dc3a36847f8018b61", "cast_id": 11, "profile_path": "/z2Jbpv9mgrioR9NcrraeavjIZXl.jpg", "order": 10}, {"name": "Rolf Kanies", "character": "General der Infanterie Hans Krebs", "id": 8801, "credit_id": "52fe425dc3a36847f8018b65", "cast_id": 12, "profile_path": "/sTcgax98lVq7j8LK3wAINUYzO2b.jpg", "order": 11}, {"name": "Justus von Dohn\u00e1nyi", "character": "General der Infanterie Wilhelm Burgdorf", "id": 5646, "credit_id": "52fe425dc3a36847f8018b69", "cast_id": 13, "profile_path": "/llyjSaezSTFUuUb17LcPkvMSi4M.jpg", "order": 12}, {"name": "Michael Mendl", "character": "General der Artillerie Helmuth Weidling", "id": 8802, "credit_id": "52fe425dc3a36847f8018b6d", "cast_id": 14, "profile_path": "/yXOUGxx2rGfuiDBpuemtSQAUUJ2.jpg", "order": 13}, {"name": "Andr\u00e9 Hennicke", "character": "SS-Brigadef\u00fchrer Wilhelm Mohnke", "id": 1846, "credit_id": "52fe425dc3a36847f8018b71", "cast_id": 15, "profile_path": "/7cjb7ckyLpEFO7uD9mR5g0Yahwv.jpg", "order": 14}, {"name": "Christian Redl", "character": "Generaloberst Alfred Jodl", "id": 37102, "credit_id": "52fe425dc3a36847f8018bcf", "cast_id": 31, "profile_path": "/5EgPM4u638LpzaSWIip2ixBJyCw.jpg", "order": 15}, {"name": "G\u00f6tz Otto", "character": "SS-Hauptsturmf\u00fchrer Otto G\u00fcnsche", "id": 10744, "credit_id": "52fe425dc3a36847f8018bd3", "cast_id": 32, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 16}, {"name": "Thomas Limpinsel", "character": "Kammerdiener Heinz Linge", "id": 18944, "credit_id": "52fe425dc3a36847f8018bd7", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Thomas Thieme", "character": "Martin Bormann", "id": 8199, "credit_id": "52fe425dc3a36847f8018bdb", "cast_id": 34, "profile_path": "/izFcVDulGPf6lhV8zUbRtecCJu7.jpg", "order": 18}, {"name": "Donevan Gunia", "character": "Peter Kranz", "id": 50143, "credit_id": "52fe425dc3a36847f8018bdf", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Matthias Habich", "character": "Prof. Dr. Werner Haase", "id": 4534, "credit_id": "52fe425dc3a36847f8018be3", "cast_id": 37, "profile_path": "/7YB9tFGl8rbxBhuy9jqjU2qMHU9.jpg", "order": 21}, {"name": "Alexander Held", "character": "Walter Hewel", "id": 21743, "credit_id": "52fe425dc3a36847f8018be7", "cast_id": 38, "profile_path": "/v8uTi2CO4eiZ1ofWHHDrrcI9pcG.jpg", "order": 22}, {"name": "Devid Striesow", "character": "Feldwebel Tornow", "id": 6086, "credit_id": "54db371c925141618c001677", "cast_id": 70, "profile_path": "/86Knz2HFgvrCDZq7dT7v0CxjwFe.jpg", "order": 23}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018bad", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}], "vote_average": 7.5, "runtime": 156}, "615": {"poster_path": "/oFuLM1EaKhi1WNWiTjQ1HKIZ1Eg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 611899420, "overview": "\"The Passion of the Christ\" is a film about the last 12 hours in the life of Jesus. Director Mel Gibson received much criticism from critics and audiences for his explicit depiction of and focus on violence and on christs suffering, especially on the part of the jewish community. The films languages are Arabic, Latin and Hebrew and its actors are laymen which was controversially received as well.", "video": false, "id": 615, "genres": [{"id": 18, "name": "Drama"}], "title": "The Passion of the Christ", "tagline": "By his wounds, we were healed.", "vote_count": 213, "homepage": "http://www.thepassionofthechrist.com/", "belongs_to_collection": null, "original_language": "he", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0335345", "adult": false, "backdrop_path": "/1OpTk3qPCNm7nnEH0Do137dGsCk.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}], "release_date": "2004-02-25", "popularity": 0.869287752570482, "original_title": "The Passion of the Christ", "budget": 30000000, "cast": [{"name": "Jim Caviezel", "character": "Jesus", "id": 8767, "credit_id": "52fe425ec3a36847f8018d81", "cast_id": 27, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 0}, {"name": "Maia Morgenstern", "character": "Maria", "id": 8768, "credit_id": "52fe425ec3a36847f8018d85", "cast_id": 28, "profile_path": "/zpcm2zbmyi2zqjU5qsFZHY31eL1.jpg", "order": 1}, {"name": "Christo Jivkov", "character": "Johannes", "id": 8769, "credit_id": "52fe425ec3a36847f8018d89", "cast_id": 29, "profile_path": "/rRoYhDGVsXhCeVyhVa0lnhl6HSc.jpg", "order": 2}, {"name": "Francesco De Vito", "character": "Simon Peter", "id": 8770, "credit_id": "52fe425ec3a36847f8018d8d", "cast_id": 30, "profile_path": "/egdPwkp6SnLT4udBo1Svl4VR17O.jpg", "order": 3}, {"name": "Monica Bellucci", "character": "Maria Magdalena", "id": 28782, "credit_id": "52fe425ec3a36847f8018d91", "cast_id": 31, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 4}, {"name": "Mattia Sbragia", "character": "Kaiphas", "id": 8772, "credit_id": "52fe425ec3a36847f8018d95", "cast_id": 32, "profile_path": "/vCxzBHo6Ge7QhocOq4o8GlIIjsd.jpg", "order": 5}, {"name": "Luca Lionello", "character": "Judas Ischarioth", "id": 8774, "credit_id": "52fe425ec3a36847f8018d99", "cast_id": 34, "profile_path": "/uihJcvguSrQZvixepdRePNy7dmo.jpg", "order": 7}, {"name": "Hristo Shopov", "character": "Pontius Pilatus", "id": 8775, "credit_id": "52fe425ec3a36847f8018d9d", "cast_id": 35, "profile_path": "/vl6bSONRmHmyVgjQcUqyDaRxNzz.jpg", "order": 8}, {"name": "Claudia Gerini", "character": "Claudia Procula", "id": 8776, "credit_id": "52fe425ec3a36847f8018da1", "cast_id": 36, "profile_path": "/k5AvdIHYREXhYNg8lepYGqxu6Jl.jpg", "order": 9}, {"name": "Fabio Sartor", "character": "Abenader", "id": 8777, "credit_id": "52fe425ec3a36847f8018da5", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Rosalinda Celentano", "character": "Satan", "id": 8778, "credit_id": "52fe425ec3a36847f8018da9", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Toni Bertorelli", "character": "Hannas", "id": 44650, "credit_id": "52fe425ec3a36847f8018dad", "cast_id": 39, "profile_path": null, "order": 12}], "directors": [{"name": "Mel Gibson", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f8018ce7", "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "id": 2461}], "vote_average": 6.7, "runtime": 127}, "616": {"poster_path": "/sLv5pXysIz7QbtKFJy85d5yxv2W.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 456758981, "overview": "Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare -- in this lush epic set in the 1870s, which finds Algren learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.", "video": false, "id": 616, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Last Samurai", "tagline": "In the face of an enemy, in the Heart of One Man, Lies the Soul of a Warrior.", "vote_count": 552, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0325710", "adult": false, "backdrop_path": "/nO0GtGFQmEuuOyAQVpHjJlWBU8O.jpg", "production_companies": [{"name": "Radar Pictures", "id": 14718}, {"name": "Warner Bros.", "id": 6194}, {"name": "Bedford Falls Company, The", "id": 20634}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2003-12-05", "popularity": 1.23836299144966, "original_title": "The Last Samurai", "budget": 140000000, "cast": [{"name": "Tom Cruise", "character": "Captain Nathan Algren", "id": 500, "credit_id": "52fe425ec3a36847f8018e41", "cast_id": 11, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Ken Watanabe", "character": "Katsumoto", "id": 3899, "credit_id": "52fe425ec3a36847f8018e45", "cast_id": 12, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 1}, {"name": "William Atherton", "character": "Winchester Rep", "id": 7676, "credit_id": "52fe425ec3a36847f8018e49", "cast_id": 13, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 2}, {"name": "Chad Lindberg", "character": "Winchester Rep Assistant", "id": 9186, "credit_id": "52fe425ec3a36847f8018e4d", "cast_id": 14, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 3}, {"name": "Billy Connolly", "character": "Zebulon Gant", "id": 9188, "credit_id": "52fe425ec3a36847f8018e63", "cast_id": 18, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 4}, {"name": "Tony Goldwyn", "character": "Colonel Bagley", "id": 3417, "credit_id": "52fe425ec3a36847f8018e67", "cast_id": 19, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 5}, {"name": "Shichinosuke Nakamura", "character": "Emperor Meiji", "id": 9189, "credit_id": "52fe425ec3a36847f8018e6b", "cast_id": 20, "profile_path": "/aVThsn8vruHfAfjUehkSd197PDc.jpg", "order": 6}, {"name": "Koyuki", "character": "Taka", "id": 9190, "credit_id": "52fe425ec3a36847f8018e6f", "cast_id": 21, "profile_path": "/ksNF1Wl2mAYNLEPKdH4rGLUlpSf.jpg", "order": 7}, {"name": "Timothy Spall", "character": "Simon Graham", "id": 9191, "credit_id": "52fe425ec3a36847f8018e73", "cast_id": 22, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 8}, {"name": "Togo Igawa", "character": "General Hasegawa", "id": 9192, "credit_id": "52fe425ec3a36847f8018e77", "cast_id": 23, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 9}, {"name": "Scott Wilson", "character": "Ambassador Swanbeck", "id": 6914, "credit_id": "52fe425ec3a36847f8018e7b", "cast_id": 24, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 10}, {"name": "Shun Sugata", "character": "Nakao", "id": 9193, "credit_id": "52fe425ec3a36847f8018e7f", "cast_id": 25, "profile_path": "/9Ntziepdp2P2xsLGHdy0rchVJ3G.jpg", "order": 11}, {"name": "Shin Koyamada", "character": "Nobutada", "id": 9194, "credit_id": "52fe425ec3a36847f8018e83", "cast_id": 26, "profile_path": "/ojuXu0UQ6VFzHOtlRrQNenDLLq9.jpg", "order": 12}, {"name": "Hiroyuki Sanada", "character": "Ujio", "id": 9195, "credit_id": "52fe425ec3a36847f8018e87", "cast_id": 27, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 13}, {"name": "Masato Harada", "character": "Omura", "id": 52909, "credit_id": "52fe425ec3a36847f8018ea9", "cast_id": 33, "profile_path": "/1hoOz8hAKe5U01SHn9YLzW7dVtG.jpg", "order": 14}, {"name": "Masashi Odate", "character": "Omura's Companion", "id": 953738, "credit_id": "52fe425ec3a36847f8018ead", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "John Koyama", "character": "Omura's Bodyguard", "id": 92495, "credit_id": "52fe425ec3a36847f8018eb1", "cast_id": 35, "profile_path": "/uh4g85qbQGZZ0HH6IQI9fM9VUGS.jpg", "order": 16}, {"name": "Satoshi Nikaido", "character": "N.C.O.", "id": 18061, "credit_id": "52fe425ec3a36847f8018eb5", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Shintaro Wada", "character": "Young Recruit", "id": 1116509, "credit_id": "52fe425ec3a36847f8018eb9", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "S\u00f4suke Ikematsu", "character": "Higen", "id": 1116510, "credit_id": "52fe425ec3a36847f8018ebd", "cast_id": 38, "profile_path": "/AtraZUobtnkTxhlxtPZP3EKyEs3.jpg", "order": 19}, {"name": "Aoi Minato", "character": "Magojiro", "id": 1116511, "credit_id": "52fe425ec3a36847f8018ec1", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Shoji Yoshihara", "character": "Sword Master", "id": 1116512, "credit_id": "52fe425ec3a36847f8018ec9", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Seiz\u00f4 Fukumoto", "character": "Silent Samurai", "id": 239391, "credit_id": "52fe425ec3a36847f8018ec5", "cast_id": 40, "profile_path": "/teRN5t7NU6FwKyc9lDpRfg4twrN.jpg", "order": 22}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f8018e07", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.9, "runtime": 154}, "164457": {"poster_path": "/hxkAlnfVRLuf7HBJq3G3j2oy92y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15400000, "overview": "Two brothers live in the economically-depressed Rust Belt, when a cruel twist of fate lands one in prison. His brother is then lured into one of the most violent crime rings in the Northeast.", "video": false, "id": 164457, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Out of the Furnace", "tagline": "Sometimes your battles choose you.", "vote_count": 181, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1206543", "adult": false, "backdrop_path": "/pRcgYKQkx4W0h8wdPlV4o12KiuK.jpg", "production_companies": [{"name": "Energy Entertainment", "id": 18617}, {"name": "Appian Way", "id": 562}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Red Granite Pictures", "id": 19177}], "release_date": "2013-12-06", "popularity": 0.953308251173174, "original_title": "Out of the Furnace", "budget": 22000000, "cast": [{"name": "Christian Bale", "character": "Russell Baze", "id": 3894, "credit_id": "52fe4c7ac3a36847f823046f", "cast_id": 3, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Lena Taylor", "id": 8691, "credit_id": "52fe4c7ac3a36847f8230473", "cast_id": 4, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Harlan DeGroat", "id": 57755, "credit_id": "52fe4c7ac3a36847f8230477", "cast_id": 5, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Gerald 'Red' Baze", "id": 9880, "credit_id": "52fe4c7ac3a36847f8230487", "cast_id": 9, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Willem Dafoe", "character": "John Petty", "id": 5293, "credit_id": "52fe4c7ac3a36847f8230483", "cast_id": 8, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 4}, {"name": "Forest Whitaker", "character": "Chief Wesley Barnes", "id": 2178, "credit_id": "52fe4c7ac3a36847f823047b", "cast_id": 6, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 5}, {"name": "Casey Affleck", "character": "Rodney Baze Jr.", "id": 1893, "credit_id": "52fe4c7ac3a36847f823047f", "cast_id": 7, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 6}, {"name": "Boyd Holbrook", "character": "Tattooed Guy", "id": 467645, "credit_id": "52fe4c7ac3a36847f823048b", "cast_id": 10, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 7}, {"name": "Tom Bower", "character": "Dan Dugan", "id": 19453, "credit_id": "52fe4c7ac3a36847f823048f", "cast_id": 11, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 8}, {"name": "Mark Kubr", "character": "SWAT Team", "id": 193946, "credit_id": "52fe4c7ac3a36847f8230493", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Gordon Michaels", "character": "Bergen County Officer", "id": 74595, "credit_id": "52fe4c7ac3a36847f8230497", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Jack Erdie", "character": "Meth Guy", "id": 991960, "credit_id": "52fe4c7ac3a36847f823049b", "cast_id": 14, "profile_path": "/sFFUnfeU1bwdEc4XggtrfmKbi0r.jpg", "order": 11}, {"name": "Efka Kvaraciejus", "character": "Brady", "id": 1272901, "credit_id": "52fe4c7ac3a36847f823049f", "cast_id": 15, "profile_path": "/oC1hEoxr0Rv8wAY7hlypCEN2YtW.jpg", "order": 12}, {"name": "Nancy Mosser", "character": "Woman at Drive In", "id": 1275451, "credit_id": "5395660b0e0a266db400612a", "cast_id": 26, "profile_path": null, "order": 13}], "directors": [{"name": "Scott Cooper", "department": "Directing", "job": "Director", "credit_id": "52fe4c7ac3a36847f8230465", "profile_path": "/kmlJ2OLQmFLbdwCxUuofPgvYjjP.jpg", "id": 65167}], "vote_average": 6.5, "runtime": 116}, "8810": {"poster_path": "/tVaClEA7n0MxaY8sb81nHwh6XNW.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 24600832, "overview": "Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.", "video": false, "id": 8810, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Road Warrior", "tagline": "When all that's left is one last chance, pray that he's still out there ... somewhere!", "vote_count": 157, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rY4F8uRJN3IWsmtFrT7HO4WKUk0.jpg", "poster_path": "/uuvSvLb3ntGA9B0wx2JskVDSuWi.jpg", "id": 8945, "name": "Mad Max Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082694", "adult": false, "backdrop_path": "/ns75FqFLk1v6jEmecgu25IOk8yB.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1981-12-24", "popularity": 2.72104246173666, "original_title": "Mad Max 2", "budget": 2000000, "cast": [{"name": "Mel Gibson", "character": "Max Rockatansky", "id": 2461, "credit_id": "52fe44b9c3a36847f80a6a51", "cast_id": 6, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Bruce Spence", "character": "The Gyro Captain", "id": 27752, "credit_id": "52fe44b9c3a36847f80a6a55", "cast_id": 7, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 1}, {"name": "Michael Preston", "character": "Pappagallo (as Mike Preston)", "id": 47461, "credit_id": "52fe44b9c3a36847f80a6a59", "cast_id": 8, "profile_path": "/fVqzK13L5sQsHcE2EyuBGurWBWy.jpg", "order": 2}, {"name": "Max Phipps", "character": "The Toadie", "id": 121417, "credit_id": "52fe44b9c3a36847f80a6a5d", "cast_id": 10, "profile_path": "/6Z48Cu6ZY5bBiZbOyHbnKHbSi05.jpg", "order": 3}, {"name": "Vernon Wells", "character": "Wez", "id": 26491, "credit_id": "52fe44b9c3a36847f80a6a61", "cast_id": 11, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 4}, {"name": "Kjell Nilsson", "character": "The Humungus", "id": 933020, "credit_id": "52fe44b9c3a36847f80a6a65", "cast_id": 12, "profile_path": "/tNKX1blFVtrWxPduGTqUpJzXjBz.jpg", "order": 5}, {"name": "Emil Minty", "character": "The Feral Kid", "id": 933021, "credit_id": "52fe44b9c3a36847f80a6a69", "cast_id": 13, "profile_path": "/uhHrD717iVgOeskhFt2Zwjw6VCY.jpg", "order": 6}, {"name": "Virginia Hey", "character": "Warrior Woman", "id": 26055, "credit_id": "52fe44b9c3a36847f80a6a6d", "cast_id": 14, "profile_path": "/8UTt7vcFFkFFi4x03jYcIkGUyGE.jpg", "order": 7}, {"name": "William Zappa", "character": "Zetta", "id": 83771, "credit_id": "52fe44b9c3a36847f80a6a71", "cast_id": 15, "profile_path": "/vYhG9uEBlmBbbi7ZosIphmfoR2H.jpg", "order": 8}, {"name": "Arkie Whiteley", "character": "The Captain's Girl", "id": 94785, "credit_id": "52fe44b9c3a36847f80a6a75", "cast_id": 16, "profile_path": "/9XFHw9sybmU6mfrwLwiyIxQwjiP.jpg", "order": 9}, {"name": "Steve J. Spears", "character": "Mechanic", "id": 181831, "credit_id": "52fe44bac3a36847f80a6a79", "cast_id": 17, "profile_path": "/1HH8uziDpCa1X97m2NAiXCgXMrJ.jpg", "order": 10}, {"name": "Syd Heylen", "character": "Curmudgeon", "id": 933022, "credit_id": "52fe44bac3a36847f80a6a7d", "cast_id": 18, "profile_path": "/hHlZSjoJSwI6FG6Skc4uefuACon.jpg", "order": 11}, {"name": "Moira Claux", "character": "Big Rebecca", "id": 220357, "credit_id": "52fe44bac3a36847f80a6a81", "cast_id": 19, "profile_path": "/po4NSnUn5zLksdS0VQZMWhY37eO.jpg", "order": 12}, {"name": "David Downer", "character": "Nathan", "id": 152565, "credit_id": "52fe44bac3a36847f80a6a85", "cast_id": 20, "profile_path": "/tidDph8tvBbeEcsuRW8KRUrJiZx.jpg", "order": 13}, {"name": "David Slingsby", "character": "Quiet Man", "id": 933023, "credit_id": "52fe44bac3a36847f80a6a89", "cast_id": 21, "profile_path": "/2YGM9kzFkW6leP5QYmGJmnqgjOf.jpg", "order": 14}, {"name": "Kristoffer Greaves", "character": "Mechanic's Assistant", "id": 118933, "credit_id": "52fe44bac3a36847f80a6a8d", "cast_id": 22, "profile_path": "/spqgKAiNaSZe1acnhFF1wROfiRu.jpg", "order": 15}, {"name": "Max Fairchild", "character": "Broken Victim", "id": 187073, "credit_id": "52fe44bac3a36847f80a6a91", "cast_id": 23, "profile_path": "/lYw6BhRQeSVkpkJ7YSf2ZwVcnN3.jpg", "order": 16}, {"name": "Tyler Coppin", "character": "Defiant Victim", "id": 152548, "credit_id": "52fe44bac3a36847f80a6a95", "cast_id": 24, "profile_path": "/pBHo8xcl4kllgUZ3WyvDzxmTJGB.jpg", "order": 17}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe44b9c3a36847f80a6a3b", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 6.7, "runtime": 95}, "25195": {"poster_path": "/9UWKpkQvZaPqpb85Or4e0PghJft.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 29922472, "overview": "A woman who has an elaborate scheme to propose to her boyfriend on Leap Day, an Irish tradition which occurs every time the date February 29 rolls around, faces a major setback when bad weather threatens to derail her planned trip to Dublin. With the help of an innkeeper, however, her cross-country odyssey just might result in her getting engaged.", "video": false, "id": 25195, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Leap Year", "tagline": "Anna planned to propose to her boyfriend on February 29th. This is not her boyfriend.", "vote_count": 106, "homepage": "http://www.leapyearfilm.net", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1216492", "adult": false, "backdrop_path": "/b42MurYDtayBtk8WYY7GM4f6agX.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2010-01-08", "popularity": 0.388300898461936, "original_title": "Leap Year", "budget": 19000000, "cast": [{"name": "Amy Adams", "character": "Anna", "id": 9273, "credit_id": "52fe44bdc3a368484e034121", "cast_id": 1, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Matthew Goode", "character": "Declan", "id": 1247, "credit_id": "52fe44bdc3a368484e034125", "cast_id": 2, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 1}, {"name": "Adam Scott", "character": "Jeremy", "id": 36801, "credit_id": "52fe44bdc3a368484e03413b", "cast_id": 6, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 2}, {"name": "John Lithgow", "character": "Jack Brady", "id": 12074, "credit_id": "52fe44bdc3a368484e03413f", "cast_id": 7, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 3}, {"name": "Flaminia Cinque", "character": "Carla", "id": 176188, "credit_id": "52fe44bdc3a368484e034143", "cast_id": 8, "profile_path": "/hZ2Oj35tMmqHms1uRWk7T0SPmMx.jpg", "order": 4}, {"name": "Tony Rohr", "character": "Frank", "id": 44930, "credit_id": "52fe44bdc3a368484e034147", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Pat Laffan", "character": "Donal", "id": 188468, "credit_id": "52fe44bdc3a368484e03414b", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Ian McElhinney", "character": "Priest", "id": 43138, "credit_id": "52fe44bdc3a368484e03414f", "cast_id": 11, "profile_path": "/5uXESGhFNIXSIVnOA5vby8Ctg3n.jpg", "order": 7}, {"name": "Dominique McElligott", "character": "Bride", "id": 115146, "credit_id": "52fe44bdc3a368484e034153", "cast_id": 12, "profile_path": "/v7c8fYjnBOVRnE2X9FnRQBtvK3x.jpg", "order": 8}, {"name": "Kaitlin Olson", "character": "Libby", "id": 95102, "credit_id": "52fe44bdc3a368484e034157", "cast_id": 13, "profile_path": "/oRSDYUN7fXVWHp7FNq1P874i1Yf.jpg", "order": 9}, {"name": "Michael J. Reynolds", "character": "Jerome", "id": 86442, "credit_id": "52fe44bdc3a368484e03415b", "cast_id": 14, "profile_path": "/3JA1yjTfSM35GNzWR2dZgubRZ8B.jpg", "order": 10}, {"name": "Michael Ford-FitzGerald", "character": "Fergus", "id": 1057048, "credit_id": "52fe44bdc3a368484e03415f", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Vincenzo Nicoli", "character": "Stefano", "id": 24595, "credit_id": "52fe44bdc3a368484e034163", "cast_id": 16, "profile_path": "/bTP43izMKRfeULFJ2xONN3mG62c.jpg", "order": 12}, {"name": "Marcia Warren", "character": "Adele", "id": 1212145, "credit_id": "52fe44bdc3a368484e034167", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Anand Tucker", "department": "Directing", "job": "Director", "credit_id": "52fe44bdc3a368484e03412b", "profile_path": "/sdtzoy0UEFOsu9ZWFT5N5matqn7.jpg", "id": 26481}], "vote_average": 6.4, "runtime": 100}, "620": {"poster_path": "/3FS3oBdorgczgfCkFi2u8ZTFfpS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 295212467, "overview": "After losing their academic posts at a prestigious university, a team of parapsychologists goes into business as proton-pack-toting \"ghostbusters\" who exterminate ghouls, hobgoblins and supernatural pests of all stripes. An ad campaign pays off when a knockout cellist hires the squad to purge her swanky digs of demons that appear to be living in her refrigerator.", "video": false, "id": 620, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Ghostbusters", "tagline": "They ain't afraid of no ghost.", "vote_count": 732, "homepage": "http://www.ghostbusters.com/", "belongs_to_collection": {"backdrop_path": "/6Jnlhr2ac8OuDJEowsFLzZY3SXd.jpg", "poster_path": "/vy4CA3MMzyolwur7Xd9CQ0BvSMX.jpg", "id": 2980, "name": "Ghostbusters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087332", "adult": false, "backdrop_path": "/qmDy6Rdom8d8UFj9GeAAtVIjTRT.jpg", "production_companies": [{"name": "Delphi Films", "id": 4267}, {"name": "Black Rhino Productions", "id": 47565}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1984-06-07", "popularity": 1.14443298166058, "original_title": "Ghostbusters", "budget": 30000000, "cast": [{"name": "Bill Murray", "character": "Dr. Peter Venkman", "id": 1532, "credit_id": "52fe425fc3a36847f801928b", "cast_id": 18, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Dr. Raymond Stantz", "id": 707, "credit_id": "52fe425fc3a36847f801928f", "cast_id": 19, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Dana Barrett", "id": 10205, "credit_id": "52fe425fc3a36847f80192ab", "cast_id": 26, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Harold Ramis", "character": "Dr. Egon Spengler", "id": 1524, "credit_id": "52fe425fc3a36847f8019293", "cast_id": 20, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 3}, {"name": "Rick Moranis", "character": "Louis Tully", "id": 8872, "credit_id": "52fe425fc3a36847f8019297", "cast_id": 21, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 4}, {"name": "Annie Potts", "character": "Janine Melnitz", "id": 8873, "credit_id": "52fe425fc3a36847f801929b", "cast_id": 22, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 5}, {"name": "William Atherton", "character": "Walter Peck", "id": 7676, "credit_id": "52fe425fc3a36847f801929f", "cast_id": 23, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 6}, {"name": "Ernie Hudson", "character": "Winston Zeddmore", "id": 8874, "credit_id": "52fe425fc3a36847f80192a3", "cast_id": 24, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 7}, {"name": "David Margulies", "character": "Mayor", "id": 8875, "credit_id": "52fe425fc3a36847f80192a7", "cast_id": 25, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 8}, {"name": "Jennifer Runyon", "character": "Female Student", "id": 101652, "credit_id": "52fe425fc3a36847f80192bb", "cast_id": 29, "profile_path": "/uGLNyr16rdaKkskmlXcYwXAw8F.jpg", "order": 9}, {"name": "Michael Ensign", "character": "Hotel Manager", "id": 1080265, "credit_id": "52fe425fc3a36847f80192bf", "cast_id": 30, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}, {"name": "Slavitza Jovan", "character": "Gozer", "id": 562314, "credit_id": "52fe425fc3a36847f80192db", "cast_id": 35, "profile_path": "/vZoaWlkaKdyIuvtz5m9gcUwRys.jpg", "order": 11}, {"name": "Steven Tash", "character": "Male Student", "id": 55930, "credit_id": "52fe425fc3a36847f80192df", "cast_id": 36, "profile_path": "/loYE3mTbF10DvIDBdjUAqebwGaT.jpg", "order": 12}, {"name": "Alice Drummond", "character": "Librarian", "id": 17488, "credit_id": "52fe425fc3a36847f80192e3", "cast_id": 37, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 13}, {"name": "Jordan Charney", "character": "Dean Yager", "id": 51549, "credit_id": "52fe425fc3a36847f80192e7", "cast_id": 38, "profile_path": "/iG7EkLD4xAmmoUmRwQZhOcWrtgU.jpg", "order": 14}, {"name": "Timothy Carhart", "character": "Violinist", "id": 17396, "credit_id": "52fe425fc3a36847f80192eb", "cast_id": 39, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 15}, {"name": "John Rothman", "character": "Library Administrator", "id": 60205, "credit_id": "52fe425fc3a36847f80192ef", "cast_id": 40, "profile_path": "/bRSoDm75c5fKBbCrbrXwaPiAeST.jpg", "order": 16}, {"name": "Tom McDermott", "character": "Archbishop", "id": 1164427, "credit_id": "52fe425fc3a36847f80192f3", "cast_id": 41, "profile_path": "/eYjfVZikn6XGhyl9D8VXDCcezrr.jpg", "order": 17}, {"name": "John Ring", "character": "Fire Commissioner", "id": 80148, "credit_id": "52fe425fc3a36847f80192f7", "cast_id": 42, "profile_path": "/hW3E41OhhwAnp1RaAi7EZhIWpTk.jpg", "order": 18}, {"name": "Norman Matlock", "character": "Police Commissioner", "id": 84684, "credit_id": "52fe425fc3a36847f80192fb", "cast_id": 43, "profile_path": "/3XI2Zu0OwPgwYNw7j1NSwecCPEt.jpg", "order": 19}, {"name": "Joe Cirillo", "character": "Police Captain", "id": 189816, "credit_id": "52fe425fc3a36847f80192ff", "cast_id": 44, "profile_path": "/9jT78pW35ZQkqQiGU9lcUbmPGa3.jpg", "order": 20}, {"name": "Joe Schmieg", "character": "Police Seargeant", "id": 1164428, "credit_id": "52fe425fc3a36847f8019303", "cast_id": 45, "profile_path": "/9FfYwOqXRtTxv9LUCPZjLaTu59l.jpg", "order": 21}, {"name": "Roger Grimsby", "character": "Himself", "id": 950927, "credit_id": "52fe425fc3a36847f8019307", "cast_id": 46, "profile_path": "/8KMgeVezUJVlkOMvBGiXQJQ8mYL.jpg", "order": 22}, {"name": "Larry King", "character": "Himself", "id": 44127, "credit_id": "52fe425fc3a36847f801930b", "cast_id": 47, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 23}, {"name": "Joe Franklin", "character": "Himself", "id": 106223, "credit_id": "52fe425fc3a36847f801930f", "cast_id": 48, "profile_path": "/p4FMZfdBRdDTfgLI8OUUQLSseWo.jpg", "order": 24}, {"name": "Casey Kasem", "character": "Himself", "id": 16418, "credit_id": "52fe425fc3a36847f8019313", "cast_id": 49, "profile_path": "/ioQiaAGO3s6oNaxiIuT21a2RWKj.jpg", "order": 25}, {"name": "Reginald VelJohnson", "character": "Jail Guard", "id": 7672, "credit_id": "52fe425fc3a36847f8019317", "cast_id": 50, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 26}, {"name": "Rhoda Gemignani", "character": "Real Estate Woman", "id": 157996, "credit_id": "52fe425fc3a36847f801931b", "cast_id": 51, "profile_path": "/5naUTp9Bdc44cDRAPLJ4nnTYKCv.jpg", "order": 27}, {"name": "Murray Rubin", "character": "Man at Elevator", "id": 158287, "credit_id": "52fe425fc3a36847f801931f", "cast_id": 52, "profile_path": "/vdyZfe9gvBF6GP7JXk82GXt9NGM.jpg", "order": 28}, {"name": "Larry Dilg", "character": "Con Edison Man", "id": 1164429, "credit_id": "52fe425fc3a36847f8019367", "cast_id": 72, "profile_path": "/ucJKtoQ6nZ4I6Hze8i1W2N370J5.jpg", "order": 29}, {"name": "Danny Stone", "character": "Coachman", "id": 184770, "credit_id": "52fe425fc3a36847f8019323", "cast_id": 53, "profile_path": "/6ue5EEQvhmhwhFlqwWRZ5vTDy19.jpg", "order": 30}, {"name": "Patty Dworkin", "character": "Woman at Party", "id": 157512, "credit_id": "52fe425fc3a36847f8019327", "cast_id": 54, "profile_path": "/rmCCZNawobtB8r4HOCvvb2vUfv8.jpg", "order": 31}, {"name": "Jean Kasem", "character": "Tall Woman at Party", "id": 158765, "credit_id": "52fe425fc3a36847f801932b", "cast_id": 55, "profile_path": "/2NGmXjrm356mzFH86JdNJ6cxlzo.jpg", "order": 32}, {"name": "Lenny Del Genio", "character": "Doorman", "id": 1164430, "credit_id": "52fe425fc3a36847f801932f", "cast_id": 56, "profile_path": "/3T5TF5cHiRtO1wDKeysr197b4vc.jpg", "order": 33}, {"name": "Frances E. Nealy", "character": "Chambermaid", "id": 172538, "credit_id": "52fe425fc3a36847f8019333", "cast_id": 57, "profile_path": "/h8BXU3Doqum2mCd551qFvw5KRXj.jpg", "order": 34}, {"name": "Sam Moses", "character": "Hot Dog Vendor", "id": 185147, "credit_id": "52fe425fc3a36847f8019337", "cast_id": 58, "profile_path": "/sGYtyX8M4gvYJxWdiYYBvB9Dmjf.jpg", "order": 35}, {"name": "Christopher Wynkoop", "character": "TV Reporter", "id": 65924, "credit_id": "52fe425fc3a36847f801933b", "cast_id": 59, "profile_path": "/lFm8gWgNoOq323vN9iZe15CVfo3.jpg", "order": 36}, {"name": "Winston May", "character": "Businessman in Cab", "id": 1164431, "credit_id": "52fe425fc3a36847f801933f", "cast_id": 60, "profile_path": "/yk1uDQfU0s9l3GQ0f1ZHL7wijAq.jpg", "order": 37}, {"name": "Tommy Hollis", "character": "Mayor's Aide", "id": 159887, "credit_id": "52fe425fc3a36847f8019343", "cast_id": 61, "profile_path": "/ugZxLJmrams2OVhtLRhSJV6oUL4.jpg", "order": 38}, {"name": "Eda Reiss Merin", "character": "Louis's Neighbor (as Eda Reis Merin)", "id": 140796, "credit_id": "52fe425fc3a36847f8019347", "cast_id": 62, "profile_path": "/a3aiwg5H6l8vJYngEFdz5oDZ6gr.jpg", "order": 39}, {"name": "Ric Mancini", "character": "Policeman at Apartment (as Rick Mancini)", "id": 157121, "credit_id": "52fe425fc3a36847f801934b", "cast_id": 64, "profile_path": "/y4tyCxv8pjmVJCCT73RGLBWIUfq.jpg", "order": 39}, {"name": "Carol Ann Henry", "character": "Reporter", "id": 158810, "credit_id": "52fe425fc3a36847f801934f", "cast_id": 65, "profile_path": null, "order": 40}, {"name": "James Hardie", "character": "Reporter (as James Hardy)", "id": 175011, "credit_id": "52fe425fc3a36847f8019353", "cast_id": 66, "profile_path": null, "order": 41}, {"name": "Frantz Turner", "character": "Reporter (as Frances Turner)", "id": 116536, "credit_id": "52fe425fc3a36847f8019357", "cast_id": 67, "profile_path": "/bcU0XFsc5WNMnd60xLZav66vM8I.jpg", "order": 42}, {"name": "Paul Trafas", "character": "Ted Fleming", "id": 1164434, "credit_id": "52fe425fc3a36847f801935b", "cast_id": 69, "profile_path": "/u51XPgFiQSr8as9PKb5lTxhl8mJ.jpg", "order": 43}, {"name": "Cheryl Birchenfield", "character": "Annette Fleming", "id": 1164435, "credit_id": "52fe425fc3a36847f801935f", "cast_id": 70, "profile_path": "/yDbCBL4ZI5ZvLup1ZURcSbaBZM1.jpg", "order": 44}, {"name": "Kymberly Herrin", "character": "Dream Ghost (as Kym Herrin)", "id": 175055, "credit_id": "52fe425fc3a36847f8019363", "cast_id": 71, "profile_path": "/70iXdFHy3oTSphXG8I0wEW6FXqy.jpg", "order": 45}, {"name": "Stanley Grover", "character": "Reporter", "id": 129458, "credit_id": "52fe425fc3a36847f801936b", "cast_id": 75, "profile_path": "/ovPcrlDmfmVrl5qNNBtDXcSh4f3.jpg", "order": 47}, {"name": "Ruth Oliver", "character": "Library Ghost", "id": 1164436, "credit_id": "52fe425fc3a36847f801936f", "cast_id": 76, "profile_path": "/zjUoYxWTk0EAOycu8mdSjx22weB.jpg", "order": 48}, {"name": "Nancy Kelly", "character": "Reporter", "id": 1430862, "credit_id": "54ebb925c3a3686d56000034", "cast_id": 79, "profile_path": null, "order": 49}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f801922d", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.9, "runtime": 107}, "621": {"poster_path": "/iMHdFTrCYhue74sBnXkdO39AJ3R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181813770, "overview": "Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?", "video": false, "id": 621, "genres": [{"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Grease", "tagline": "Grease is the word", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/95ASlSlkBSILVLrZA69P0OdniP5.jpg", "poster_path": "/hm752B8LthSSizb4f4Owah4NtxX.jpg", "id": 86083, "name": "Grease Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077631", "adult": false, "backdrop_path": "/dSukjx8A3kOitewpG2n7HuRt4rH.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1978-07-07", "popularity": 1.34974014806634, "original_title": "Grease", "budget": 6000000, "cast": [{"name": "John Travolta", "character": "Danny Zuko", "id": 8891, "credit_id": "52fe425fc3a36847f8019413", "cast_id": 17, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Olivia Newton-John", "character": "Sandy Olsson", "id": 8892, "credit_id": "52fe425fc3a36847f8019417", "cast_id": 18, "profile_path": "/59u5Vo1ZhmTQPNW1W8wu66DZ0Cc.jpg", "order": 1}, {"name": "Stockard Channing", "character": "Betty Rizzo", "id": 8893, "credit_id": "52fe425fc3a36847f801941b", "cast_id": 19, "profile_path": "/5UFMOfbzod42UiPUna59Ch1e37a.jpg", "order": 2}, {"name": "Jeff Conaway", "character": "Kenickie", "id": 8894, "credit_id": "52fe425fc3a36847f801941f", "cast_id": 20, "profile_path": "/seX29fe7LrCXvKaq7RPrKD23EIS.jpg", "order": 3}, {"name": "Didi Conn", "character": "Frenchy", "id": 8895, "credit_id": "52fe425fc3a36847f8019423", "cast_id": 21, "profile_path": "/62QEVe9v68BfjJWUrSzrXbsXsta.jpg", "order": 4}, {"name": "Barry Pearl", "character": "Doody", "id": 8896, "credit_id": "52fe425fc3a36847f8019427", "cast_id": 22, "profile_path": "/dak967RCCBCifb1aINsRrUUv5Qf.jpg", "order": 5}, {"name": "Michael Tucci", "character": "Sonny", "id": 8897, "credit_id": "52fe425fc3a36847f801942b", "cast_id": 23, "profile_path": "/reUFx7dyg2d5PMPMLjDagwqlrtP.jpg", "order": 6}, {"name": "Kelly Ward", "character": "Putzie", "id": 8898, "credit_id": "52fe425fc3a36847f801942f", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Jamie Donnelly", "character": "Jan", "id": 8899, "credit_id": "52fe425fc3a36847f8019433", "cast_id": 25, "profile_path": "/skTjfWWRX3CXCwIDLDFQBhNgJQy.jpg", "order": 8}, {"name": "Dinah Manoff", "character": "Marty Maraschino", "id": 8900, "credit_id": "52fe425fc3a36847f8019437", "cast_id": 26, "profile_path": "/kCULJZUXCTWUTolDb2C9saK2PMj.jpg", "order": 9}, {"name": "Eve Arden", "character": "Principal McGee", "id": 860, "credit_id": "52fe425fc3a36847f801943b", "cast_id": 27, "profile_path": "/rS1rPs0lu5owJ2BrrE51k7icMnV.jpg", "order": 10}, {"name": "Edward Byrnes", "character": "Vince Fontaine", "id": 8901, "credit_id": "52fe425fc3a36847f801943f", "cast_id": 28, "profile_path": "/94hMBEx91g87unjV4AxQJ1f1nut.jpg", "order": 11}, {"name": "Sid Caesar", "character": "Coach Calhoun", "id": 8902, "credit_id": "52fe425fc3a36847f8019443", "cast_id": 29, "profile_path": "/8Dy80VkBbapAPZYleneH7CbxDzm.jpg", "order": 12}, {"name": "Dody Goodman", "character": "Blanche", "id": 8903, "credit_id": "52fe425fc3a36847f8019447", "cast_id": 30, "profile_path": "/hLWhBWoSrBGhO9kUJiG8Q4Qy4EV.jpg", "order": 13}, {"name": "Susan Buckner", "character": "Patty Simcox", "id": 8904, "credit_id": "52fe425fc3a36847f801944b", "cast_id": 31, "profile_path": "/9yH7GW2IvVChIzr8HidVhAWg8kp.jpg", "order": 14}, {"name": "Ellen Travolta", "character": "Waitress", "id": 8905, "credit_id": "52fe425fc3a36847f801944f", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Annette Charles", "character": "Cha Cha DiGregorio", "id": 8906, "credit_id": "52fe425fc3a36847f8019453", "cast_id": 33, "profile_path": "/jQcH1tULa2ZGUEq17sdNMpoD85f.jpg", "order": 16}, {"name": "Dennis Stewart", "character": "Leo, Scorpions member", "id": 8907, "credit_id": "52fe425fc3a36847f8019457", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Joan Blondell", "character": "Vi", "id": 13568, "credit_id": "52fe425fc3a36847f8019461", "cast_id": 36, "profile_path": "/2KnL9VyFPBxZ4xIxpvCUTMicVY2.jpg", "order": 18}, {"name": "Eddie Deezen", "character": "Eugene Felnic", "id": 42362, "credit_id": "52fe425fc3a36847f8019465", "cast_id": 37, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 19}, {"name": "Fannie Flagg", "character": "Nurse Wilkins", "id": 18251, "credit_id": "5305af1bc3a3685a87169428", "cast_id": 38, "profile_path": "/nelYB0M6WvF7uwArMwhYJZZkyjv.jpg", "order": 20}], "directors": [{"name": "Randal Kleiser", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f80193c1", "profile_path": "/lK8FzeNDwD9VmNvKPRGd3dFVzJy.jpg", "id": 8876}], "vote_average": 6.6, "runtime": 110}, "622": {"poster_path": "/uamhDQBebdW3UQqOaVmma3yW8pm.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "PT", "name": "Portugal"}], "revenue": 58401898, "overview": "An all-expenses-paid international search for a rare copy of The Nine Gates of the Shadow Kingdom brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.", "video": false, "id": 622, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Ninth Gate", "tagline": "Every book has a life of its own.", "vote_count": 164, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0142688", "adult": false, "backdrop_path": "/7ikpBrx2YZyVZxFS5YTZUZoyIJu.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Canal+", "id": 5358}, {"name": "Artisan Entertainment", "id": 2188}], "release_date": "1999-12-23", "popularity": 0.436612422549115, "original_title": "The Ninth Gate", "budget": 38000000, "cast": [{"name": "Johnny Depp", "character": "Dean Corso", "id": 85, "credit_id": "52fe425fc3a36847f801954b", "cast_id": 25, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Frank Langella", "character": "Boris Balkan", "id": 8924, "credit_id": "52fe425fc3a36847f801954f", "cast_id": 26, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 1}, {"name": "Lena Olin", "character": "Liana Telfer", "id": 5313, "credit_id": "52fe425fc3a36847f8019553", "cast_id": 27, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 2}, {"name": "Emmanuelle Seigner", "character": "The Girl", "id": 8925, "credit_id": "52fe425fc3a36847f8019557", "cast_id": 28, "profile_path": "/llh2iFcVslY8PEFAvuEKLI7y8U3.jpg", "order": 3}, {"name": "Barbara Jefford", "character": "Baroness Kessler", "id": 8926, "credit_id": "52fe425fc3a36847f801955b", "cast_id": 29, "profile_path": "/mYGKrPEchgTXfQbQfvR8VkhBRUc.jpg", "order": 4}, {"name": "Jack Taylor", "character": "Victor Fargas", "id": 8927, "credit_id": "52fe425fc3a36847f801955f", "cast_id": 30, "profile_path": "/3mxYZLn8mXTYtwMUn4HW6H1pHEK.jpg", "order": 5}, {"name": "Jos\u00e9 L\u00f3pez Rodero", "character": "Pablo & Pedro Ceniza/1st & 2nd Workmen", "id": 8928, "credit_id": "52fe425fc3a36847f8019563", "cast_id": 31, "profile_path": null, "order": 6}, {"name": "James Russo", "character": "Bernie", "id": 785, "credit_id": "52fe425fc3a36847f8019567", "cast_id": 32, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 7}, {"name": "Willy Holt", "character": "Andrew Telfer", "id": 19057, "credit_id": "52fe425fc3a36847f8019571", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Allen Garfield", "character": "Witkin", "id": 922, "credit_id": "52fe425fc3a36847f8019575", "cast_id": 36, "profile_path": "/wa8WAH20QGm1fLPR5Wrbja5C5rx.jpg", "order": 9}, {"name": "Tony Amoni", "character": "Liana's Bodyguard", "id": 180976, "credit_id": "52fe425fc3a36847f8019579", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Jacques Dacqmine", "character": "Old Man", "id": 266665, "credit_id": "52fe425fc3a36847f801957d", "cast_id": 38, "profile_path": "/yzPbvl384iFb4u1V8fwkrWEg8NW.jpg", "order": 11}, {"name": "Joe Sheridan", "character": "Old Man's Son", "id": 12983, "credit_id": "52fe425fc3a36847f8019581", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Rebecca Pauly", "character": "Daughter-In-Law", "id": 140055, "credit_id": "52fe425fc3a36847f8019585", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Catherine Benguigui", "character": "Concierge", "id": 220582, "credit_id": "52fe425fc3a36847f8019589", "cast_id": 41, "profile_path": "/fFtijqi9D3E77DjywvfTIWwaRvX.jpg", "order": 14}, {"name": "Maria Ducceschi", "character": "Secretary", "id": 1077903, "credit_id": "52fe425fc3a36847f801958d", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Jacques Collard", "character": "Gruber", "id": 992979, "credit_id": "52fe425fc3a36847f8019591", "cast_id": 43, "profile_path": "/xEy0svgN6WQMmnpXbcOHrHBlsJ3.jpg", "order": 16}, {"name": "Dominique Pozzetto", "character": "Desk Clerk", "id": 1077904, "credit_id": "52fe425fc3a36847f8019595", "cast_id": 44, "profile_path": "/hIlTpwVSCmDZnoaz1FWD38kbKFn.jpg", "order": 17}, {"name": "Emanuel Booz", "character": "Baker", "id": 74113, "credit_id": "52fe425fc3a36847f8019599", "cast_id": 45, "profile_path": null, "order": 18}, {"name": "Lino Ribeiro de Sousa", "character": "Hotel Porter", "id": 1077905, "credit_id": "52fe425fc3a36847f801959d", "cast_id": 46, "profile_path": null, "order": 19}, {"name": "Asil Ra\u00efs", "character": "Cabby", "id": 1077906, "credit_id": "52fe425fc3a36847f80195a1", "cast_id": 47, "profile_path": "/v9VZA33RGZfNPHNEUIIZVHQrgXn.jpg", "order": 20}, {"name": "Bernard Richier", "character": "Cafe Owner", "id": 1077907, "credit_id": "52fe425fc3a36847f80195a5", "cast_id": 48, "profile_path": null, "order": 21}, {"name": "Marinette Richier", "character": "Cafe Owner", "id": 1077908, "credit_id": "52fe425fc3a36847f80195a9", "cast_id": 49, "profile_path": null, "order": 22}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f80194c9", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 6.4, "runtime": 133}, "623": {"poster_path": "/9gZZyQ8XStpUJBFU1ceU4xx1crv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62493712, "overview": "A diamond advocate is attempting to steal a collection of diamonds, yet troubles arise when he realizes that he is not the only one after the diamonds.", "video": false, "id": 623, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "A Fish Called Wanda", "tagline": "A tale of murder, lust, greed, revenge, and seafood.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0095159", "adult": false, "backdrop_path": "/5777NJf3MnhHsjfqb7h7wrnDACR.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Prominent Features", "id": 11352}], "release_date": "1988-07-15", "popularity": 1.00117084003624, "original_title": "A Fish Called Wanda", "budget": 7500000, "cast": [{"name": "John Cleese", "character": "Archie Leach", "id": 8930, "credit_id": "52fe4260c3a36847f8019665", "cast_id": 22, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Wanda Gershwitz", "id": 8944, "credit_id": "52fe4260c3a36847f8019669", "cast_id": 23, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Kevin Kline", "character": "Otto", "id": 8945, "credit_id": "52fe4260c3a36847f801966d", "cast_id": 24, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 2}, {"name": "Michael Palin", "character": "Ken Pile", "id": 383, "credit_id": "52fe4260c3a36847f8019671", "cast_id": 25, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 3}, {"name": "Maria Aitken", "character": "Wendy", "id": 8946, "credit_id": "52fe4260c3a36847f8019675", "cast_id": 26, "profile_path": "/kVnrU7fzrw85I51OJp8yBRDg3oO.jpg", "order": 4}, {"name": "Tom Georgeson", "character": "Georges Thomason", "id": 8947, "credit_id": "52fe4260c3a36847f8019679", "cast_id": 27, "profile_path": "/90IirxcNYdJANlTW1i782SGnCkn.jpg", "order": 5}, {"name": "Cynthia Cleese", "character": "Portia", "id": 8948, "credit_id": "52fe4260c3a36847f801967d", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Patricia Hayes", "character": "Mrs. Coady", "id": 12658, "credit_id": "52fe4260c3a36847f8019681", "cast_id": 29, "profile_path": "/1G864KAppXhSlwarx9fHoMufjWF.jpg", "order": 7}, {"name": "Geoffrey Palmer", "character": "Judge", "id": 10746, "credit_id": "52fe4260c3a36847f8019685", "cast_id": 30, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 8}, {"name": "Mark Elwes", "character": "Customer in Jeweler's Shop", "id": 1157036, "credit_id": "52fe4260c3a36847f8019689", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Neville Phillips", "character": "Manager of Jeweler's Shop", "id": 49968, "credit_id": "52fe4260c3a36847f801968d", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Peter Jonfield", "character": "Inspector Marvin", "id": 27334, "credit_id": "52fe4260c3a36847f8019691", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Jeremy Child", "character": "Mr. Johnson", "id": 158293, "credit_id": "52fe4260c3a36847f8019695", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Stephen Fry", "character": "Hutchison", "id": 11275, "credit_id": "52fe4260c3a36847f8019699", "cast_id": 35, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 13}], "directors": [{"name": "Charles Crichton", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f80195f5", "profile_path": "/9ahf7Ghdy9x9pXue1PeC1bFMu2y.jpg", "id": 8929}], "vote_average": 6.6, "runtime": 108}, "624": {"poster_path": "/e3jHM20jbKZbXYjRwmfQOJ0VnzP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Easy Rider is the classic cult film from the 1960s. A road movie that embodies the feeling of being a hippie as two friends head cross-country to Mardi Gras. A controversial period film by Dennis Hopper and Peter Fonda with some classic music from a generation of wanderers.", "video": false, "id": 624, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Easy Rider", "tagline": "A man went looking for America and couldn\u2019t find it anywhere...", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064276", "adult": false, "backdrop_path": "/7HVnz5THbqJZKmAuRvF9vDNaLcK.jpg", "production_companies": [{"name": "Raybert Productions", "id": 4541}], "release_date": "1969-05-07", "popularity": 0.552392418817241, "original_title": "Easy Rider", "budget": 350000, "cast": [{"name": "Peter Fonda", "character": "Wyatt", "id": 8949, "credit_id": "52fe4260c3a36847f8019735", "cast_id": 17, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 0}, {"name": "Dennis Hopper", "character": "Billy", "id": 2778, "credit_id": "52fe4260c3a36847f8019739", "cast_id": 18, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 1}, {"name": "Antonio Mendoza", "character": "Jesus", "id": 8960, "credit_id": "52fe4260c3a36847f801973d", "cast_id": 19, "profile_path": null, "order": 2}, {"name": "Phil Spector", "character": "Connection", "id": 8961, "credit_id": "52fe4260c3a36847f8019741", "cast_id": 20, "profile_path": "/8Y14xgLM4rrkdNEroj5mO7HmO0G.jpg", "order": 3}, {"name": "Jack Nicholson", "character": "George Hanson", "id": 514, "credit_id": "52fe4260c3a36847f8019745", "cast_id": 21, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 4}, {"name": "Luke Askew", "character": "Stranger on Highway", "id": 8962, "credit_id": "52fe4260c3a36847f8019749", "cast_id": 22, "profile_path": "/nlV0bfadoMjbz7vxmLl5zALc86H.jpg", "order": 5}, {"name": "Karen Black", "character": "Karen", "id": 8963, "credit_id": "52fe4260c3a36847f801974d", "cast_id": 23, "profile_path": "/d2Zf3vIWOWovWKnPe13GSz2BTLY.jpg", "order": 6}, {"name": "Toni Basil", "character": "Mary", "id": 8964, "credit_id": "52fe4260c3a36847f8019751", "cast_id": 24, "profile_path": "/xrhQq8UynWnFbxWV2kwDQBpWbbK.jpg", "order": 7}], "directors": [{"name": "Dennis Hopper", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f80196d7", "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "id": 2778}], "vote_average": 6.8, "runtime": 95}, "627": {"poster_path": "/p1O3eFsdb0GEIYu87xlwV7P4jM1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 16635027, "overview": "Renton is living the dream and that dream is Heroin. As Renton struggles with the agony and ecstasy of his life we follow him and his increasingly unstable mates. Drinking, fighting, drugs, sex and the most disgusting toilet in Scotland. Choose Trainspotting.", "video": false, "id": 627, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Trainspotting", "tagline": "Choose life.", "vote_count": 391, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117951", "adult": false, "backdrop_path": "/yfNhWKqJFWTRvSo3Qf2x1IFteG3.jpg", "production_companies": [{"name": "Channel Four Films", "id": 181}, {"name": "Noel Gay Motion Picture Company", "id": 358}, {"name": "Figment Films", "id": 359}, {"name": "Miramax Films", "id": 14}], "release_date": "1996-02-23", "popularity": 0.796976524180804, "original_title": "Trainspotting", "budget": 4000000, "cast": [{"name": "Ewan McGregor", "character": "Renton", "id": 3061, "credit_id": "52fe4260c3a36847f8019913", "cast_id": 17, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Ewen Bremner", "character": "Spud", "id": 1125, "credit_id": "52fe4260c3a36847f8019917", "cast_id": 18, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 1}, {"name": "Jonny Lee Miller", "character": "Sick Boy", "id": 9012, "credit_id": "52fe4260c3a36847f801991b", "cast_id": 19, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 2}, {"name": "Robert Carlyle", "character": "Begbie", "id": 18023, "credit_id": "52fe4260c3a36847f8019947", "cast_id": 30, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 3}, {"name": "Kelly Macdonald", "character": "Diane", "id": 9015, "credit_id": "52fe4260c3a36847f8019923", "cast_id": 21, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 4}, {"name": "Kevin McKidd", "character": "Tommy", "id": 9013, "credit_id": "52fe4260c3a36847f801991f", "cast_id": 20, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 5}, {"name": "Peter Mullan", "character": "Swanney", "id": 3064, "credit_id": "52fe4260c3a36847f8019927", "cast_id": 22, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 6}, {"name": "James Cosmo", "character": "Mr. Renton", "id": 2467, "credit_id": "52fe4260c3a36847f801992b", "cast_id": 23, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 7}, {"name": "Eileen Nicholas", "character": "Mrs. Renton", "id": 9016, "credit_id": "52fe4260c3a36847f801992f", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Susan Vidler", "character": "Allison", "id": 1837, "credit_id": "52fe4260c3a36847f8019933", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Pauline Lynch", "character": "Lizzy", "id": 9017, "credit_id": "52fe4260c3a36847f8019937", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Shirley Henderson", "character": "Gail", "id": 1834, "credit_id": "52fe4260c3a36847f801993b", "cast_id": 27, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 11}, {"name": "Stuart McQuarrie", "character": "Gavin/US Tourist", "id": 2258, "credit_id": "52fe4260c3a36847f801993f", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Irvine Welsh", "character": "Mikey Forrester", "id": 8998, "credit_id": "52fe4260c3a36847f8019943", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f80198c1", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 7.3, "runtime": 94}, "628": {"poster_path": "/hldXwwViSfHJS0kIJr07KBGmHJI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 223664608, "overview": "A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.", "video": false, "id": 628, "genres": [{"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Interview with the Vampire", "tagline": "Drink From Me And Live Forever.", "vote_count": 415, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5margBoJC97ZrciVpAUc0PiY6Rc.jpg", "poster_path": "/1Iop0dywqQeD5Mm7oRVR8vZ8gkj.jpg", "id": 217704, "name": "The Vampire Chronicles"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0110148", "adult": false, "backdrop_path": "/GRyynLqafMrLFMHqvfGdUweavA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Geffen Pictures", "id": 360}], "release_date": "1994-11-11", "popularity": 1.11796928198452, "original_title": "Interview with the Vampire", "budget": 60000000, "cast": [{"name": "Brad Pitt", "character": "Louis de Pointe du Lac", "id": 287, "credit_id": "52fe4260c3a36847f80199f9", "cast_id": 18, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Tom Cruise", "character": "Lestat de Lioncourt", "id": 500, "credit_id": "52fe4260c3a36847f80199fd", "cast_id": 19, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 1}, {"name": "Kirsten Dunst", "character": "Claudia", "id": 205, "credit_id": "52fe4260c3a36847f8019a01", "cast_id": 20, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 2}, {"name": "Antonio Banderas", "character": "Armand", "id": 3131, "credit_id": "52fe4260c3a36847f8019a05", "cast_id": 21, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 3}, {"name": "Christian Slater", "character": "Daniel Malloy", "id": 2224, "credit_id": "52fe4260c3a36847f8019a09", "cast_id": 22, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 4}, {"name": "Stephen Rea", "character": "Santiago", "id": 9029, "credit_id": "52fe4260c3a36847f8019a0d", "cast_id": 23, "profile_path": "/taD1NngDbW8cyCuacAT3YaecSEG.jpg", "order": 5}, {"name": "Thandie Newton", "character": "Yvette", "id": 9030, "credit_id": "52fe4260c3a36847f8019a11", "cast_id": 24, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 6}, {"name": "Domiziana Giordano", "character": "Madeleine", "id": 9031, "credit_id": "52fe4260c3a36847f8019a15", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Indra Ov\u00e9", "character": "New Orleans Whore", "id": 232174, "credit_id": "52fe4260c3a36847f8019a1f", "cast_id": 27, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 8}, {"name": "Laure Marsac", "character": "Mortal Woman on Stage", "id": 149876, "credit_id": "52fe4260c3a36847f8019a23", "cast_id": 28, "profile_path": "/pqUejLV3GZkUTgBCWdNiYsLMlvH.jpg", "order": 9}, {"name": "Andrew Tiernan", "character": "Paris Vampire", "id": 17290, "credit_id": "52fe4260c3a36847f8019a27", "cast_id": 29, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 10}, {"name": "Bellina Logan", "character": "Tavern Girl", "id": 1218000, "credit_id": "52fe4260c3a36847f8019a2b", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "George Kelly", "character": "Dollmaker", "id": 951881, "credit_id": "52fe4260c3a36847f8019a2f", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Helen McCrory", "character": "2nd New Orleans Whore", "id": 15737, "credit_id": "52fe4260c3a36847f8019a33", "cast_id": 32, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 13}], "directors": [{"name": "Neil Jordan", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f8019a1b", "profile_path": "/4OWdIhT5gcfcHoBUzGL7E8tu9T1.jpg", "id": 17016}], "vote_average": 6.8, "runtime": 123}, "629": {"poster_path": "/jgJoRWltoS17nD5MAQ1yK2Ztefw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23341568, "overview": "Following a truck hijack in New York, five conmen are arrested and brought together for questioning. As none of them is guilty, they plan a revenge operation against the police. The operation goes well, but then the influence of a legendary mastermind criminal called Keyser S\u00f6ze is felt. It becomes clear that each one of them has wronged S\u00f6ze at some point and must pay back now. The payback job leaves 27 men dead in a boat explosion, but the real question arises now: Who actually is Keyser S\u00f6ze?", "video": false, "id": 629, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Usual Suspects", "tagline": "Five Criminals . One Line Up . No Coincidence.", "vote_count": 935, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0114814", "adult": false, "backdrop_path": "/c7e3nH3wtSBDrHRB63onrGptl6D.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1995-08-16", "popularity": 2.43509670906584, "original_title": "The Usual Suspects", "budget": 6000000, "cast": [{"name": "Kevin Spacey", "character": "Roger 'Verbal' Kint", "id": 1979, "credit_id": "52fe4260c3a36847f8019af7", "cast_id": 23, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Stephen Baldwin", "character": "Michael McManus", "id": 9045, "credit_id": "52fe4260c3a36847f8019ae7", "cast_id": 19, "profile_path": "/u1pITf1MUXVbCdiJaFxbHEda1oQ.jpg", "order": 1}, {"name": "Gabriel Byrne", "character": "Dean Keaton", "id": 5168, "credit_id": "52fe4260c3a36847f8019aeb", "cast_id": 20, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 2}, {"name": "Benicio del Toro", "character": "Fred Fenster", "id": 1121, "credit_id": "52fe4260c3a36847f8019aef", "cast_id": 21, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 3}, {"name": "Kevin Pollak", "character": "Todd Hockney", "id": 7166, "credit_id": "52fe4260c3a36847f8019af3", "cast_id": 22, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 4}, {"name": "Chazz Palminteri", "character": "Dave Kujan, US Customs", "id": 9046, "credit_id": "52fe4260c3a36847f8019afb", "cast_id": 24, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 5}, {"name": "Pete Postlethwaite", "character": "Kobayashi", "id": 4935, "credit_id": "52fe4260c3a36847f8019aff", "cast_id": 25, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 6}, {"name": "Giancarlo Esposito", "character": "Jack Baer, FBI", "id": 4808, "credit_id": "52fe4260c3a36847f8019b03", "cast_id": 26, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 7}, {"name": "Suzy Amis", "character": "Edie Finneran", "id": 2179, "credit_id": "52fe4260c3a36847f8019b07", "cast_id": 27, "profile_path": "/caqw60Y3qBMdlEPYr3ivZf9LAwC.jpg", "order": 8}, {"name": "Dan Hedaya", "character": "Sgt. Jeffrey Jeff Rabin", "id": 6486, "credit_id": "52fe4260c3a36847f8019b0b", "cast_id": 28, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 9}, {"name": "Christine Estabrook", "character": "Dr. Plummer", "id": 9047, "credit_id": "52fe4260c3a36847f8019b0f", "cast_id": 29, "profile_path": "/882AVj0d1m7A0DoBF5GYr3v7lqf.jpg", "order": 10}, {"name": "Clark Gregg", "character": "Dr. Walters", "id": 9048, "credit_id": "52fe4260c3a36847f8019b13", "cast_id": 30, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 11}, {"name": "Louis Lombardi", "character": "Strausz", "id": 3218, "credit_id": "52fe4260c3a36847f8019b17", "cast_id": 31, "profile_path": "/xQxODNK3RKu0DZvJYQKBLamSmad.jpg", "order": 12}, {"name": "Paul Bartel", "character": "Smuggler", "id": 101377, "credit_id": "52fe4260c3a36847f8019b1b", "cast_id": 32, "profile_path": "/7Kj1Y9V8lfnFXHkjf30H8d3ylQA.jpg", "order": 13}, {"name": "Peter Greene", "character": "Redfoot the Fence", "id": 11803, "credit_id": "52fe4260c3a36847f8019b1f", "cast_id": 33, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 14}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f8019a7d", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 7.8, "runtime": 106}, "630": {"poster_path": "/tKEHoKPZv3af0Pn3poaOLHOJ6NM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16538431, "overview": "One of the most famous musical films and the first film from Hollywood to use color. Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.", "video": false, "id": 630, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Wizard of Oz", "tagline": "We're off to see the Wizard, the wonderful Wizard of Oz!", "vote_count": 463, "homepage": "http://thewizardofoz.warnerbros.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 301888, "name": "The Wizard of Oz Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032138", "adult": false, "backdrop_path": "/mghWy9Ug6sJWejXce9alLtDmgsm.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Loew's", "id": 1460}], "release_date": "1939-08-25", "popularity": 0.841377081154598, "original_title": "The Wizard of Oz", "budget": 2777000, "cast": [{"name": "Judy Garland", "character": "Dorothy Gale", "id": 9066, "credit_id": "52fe4261c3a36847f8019bdb", "cast_id": 19, "profile_path": "/r2p0SpwpkDc5hhg7hqbar9bKMox.jpg", "order": 0}, {"name": "Frank Morgan", "character": "Prof. Marvel", "id": 9067, "credit_id": "52fe4261c3a36847f8019bdf", "cast_id": 20, "profile_path": "/wqZaxQOgxkBnfSP7i2OMbBAVMI9.jpg", "order": 1}, {"name": "Ray Bolger", "character": "Hunk", "id": 9068, "credit_id": "52fe4261c3a36847f8019be3", "cast_id": 21, "profile_path": "/xREFJgnENkI4rajkGeUdXhKASXx.jpg", "order": 2}, {"name": "Bert Lahr", "character": "Zeke", "id": 9069, "credit_id": "52fe4261c3a36847f8019be7", "cast_id": 22, "profile_path": "/pZsycVLdbCAMuEM19oNCZhZLHnS.jpg", "order": 3}, {"name": "Jack Haley", "character": "Hickory", "id": 9070, "credit_id": "52fe4261c3a36847f8019beb", "cast_id": 23, "profile_path": "/w2jA19ttf0JVfue9JWO8w5omPtz.jpg", "order": 4}, {"name": "Billie Burke", "character": "Glinda, the Good Witch of the North", "id": 9071, "credit_id": "52fe4261c3a36847f8019bef", "cast_id": 24, "profile_path": "/2Gylct54q8AxpyOxSQi65HnmPJh.jpg", "order": 5}, {"name": "Margaret Hamilton", "character": "Miss Gulch", "id": 9072, "credit_id": "52fe4261c3a36847f8019bf3", "cast_id": 25, "profile_path": "/9CRmBGC4FOmNg0w6xZ7dWfn3Xkm.jpg", "order": 6}, {"name": "Charley Grapewin", "character": "Uncle Henry", "id": 8517, "credit_id": "52fe4261c3a36847f8019bf7", "cast_id": 26, "profile_path": "/d56Lm5YsoX7JoA9ImaEVZk67zi2.jpg", "order": 7}, {"name": "Clara Blandick", "character": "Auntie Em", "id": 9073, "credit_id": "52fe4261c3a36847f8019bfb", "cast_id": 27, "profile_path": "/zckHdTOY6ROKXUfOGGzNxNCU2TU.jpg", "order": 8}, {"name": "Charles Becker", "character": "Mayor of Munchkin City", "id": 9074, "credit_id": "52fe4261c3a36847f8019bff", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Meinhardt Raabe", "character": "Coroner", "id": 9075, "credit_id": "52fe4261c3a36847f8019c03", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Frank Morgan", "character": "The cabbie", "id": 9067, "credit_id": "52fe4261c3a36847f8019c07", "cast_id": 30, "profile_path": "/wqZaxQOgxkBnfSP7i2OMbBAVMI9.jpg", "order": 11}, {"name": "Margaret Hamilton", "character": "The Wicked Witch of the East", "id": 9072, "credit_id": "52fe4261c3a36847f8019c1b", "cast_id": 35, "profile_path": "/9CRmBGC4FOmNg0w6xZ7dWfn3Xkm.jpg", "order": 16}, {"name": "Bert Lahr", "character": "The Cowardly Lion", "id": 9069, "credit_id": "52fe4261c3a36847f8019c23", "cast_id": 37, "profile_path": "/pZsycVLdbCAMuEM19oNCZhZLHnS.jpg", "order": 18}, {"name": "Jack Haley", "character": "The Tin Man", "id": 9070, "credit_id": "52fe4261c3a36847f8019c27", "cast_id": 38, "profile_path": "/w2jA19ttf0JVfue9JWO8w5omPtz.jpg", "order": 19}], "directors": [{"name": "Victor Fleming", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f8019b77", "profile_path": "/Lq3Hb5VsmTSIEaYvgfbpK8r8Tk.jpg", "id": 9049}, {"name": "George Cukor", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019c2d", "profile_path": "/t2RWv3nzCoqKWYiCGCjwiIHW4Sj.jpg", "id": 14674}, {"name": "Mervyn LeRoy", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019c33", "profile_path": "/78XvM0jDmFD5MuN360VbqirhKBL.jpg", "id": 9054}, {"name": "King Vidor", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019c39", "profile_path": "/33KhqI4zwndE9f3tbxS6b6qqu5B.jpg", "id": 29962}], "vote_average": 6.8, "runtime": 101}, "634": {"poster_path": "/bSr5bdlAumfBWCibvMLvhvMEkkB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 281929795, "overview": "Bridget Jones\u2019s Diary is a romantic love story comedy from the best selling novel of the same name by Helen Fielding. A chaotic Jones meets a snobbish lawer named Marc and soon he enters into her world of imperfections.", "video": false, "id": 634, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Bridget Jones's Diary", "tagline": "Health Warning: Adopting Bridget's lifestyle could seriously damage your health.", "vote_count": 265, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jiS4x140miaEH524CAFTvuxrcZ1.jpg", "poster_path": "/fB3BE3TL85Wh7dxNJf226IYQCp.jpg", "id": 8936, "name": "Bridget Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243155", "adult": false, "backdrop_path": "/h64zNCm5SrY45c7Z6gxy9tC0xb.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Working Title Films", "id": 10163}, {"name": "Little Bird", "id": 11358}], "release_date": "2001-04-13", "popularity": 1.38132421389229, "original_title": "Bridget Jones's Diary", "budget": 25000000, "cast": [{"name": "Ren\u00e9e Zellweger", "character": "Bridget Jones", "id": 9137, "credit_id": "52fe4261c3a36847f8019e7f", "cast_id": 1, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 0}, {"name": "Colin Firth", "character": "Mark Darcy", "id": 5472, "credit_id": "52fe4261c3a36847f8019f0d", "cast_id": 40, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Hugh Grant", "character": "Daniel Cleaver", "id": 3291, "credit_id": "52fe4261c3a36847f8019f11", "cast_id": 41, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 2}, {"name": "Gemma Jones", "character": "Bridget's Mum", "id": 9138, "credit_id": "52fe4261c3a36847f8019f15", "cast_id": 42, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 3}, {"name": "Jim Broadbent", "character": "Bridget's Dad", "id": 388, "credit_id": "52fe4261c3a36847f8019f19", "cast_id": 43, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 4}, {"name": "James Callis", "character": "Tom", "id": 9145, "credit_id": "52fe4261c3a36847f8019f1d", "cast_id": 44, "profile_path": "/eKYhq4PGfqE7F2xOjNyeyXHNhRU.jpg", "order": 5}, {"name": "Sally Phillips", "character": "Shazza", "id": 9144, "credit_id": "52fe4261c3a36847f8019f21", "cast_id": 45, "profile_path": "/cr0fXU9N69QOcBNZ98ih5A6QbTr.jpg", "order": 6}, {"name": "Shirley Henderson", "character": "Jude", "id": 1834, "credit_id": "52fe4261c3a36847f8019f25", "cast_id": 46, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 7}, {"name": "Embeth Davidtz", "character": "Natasha", "id": 6368, "credit_id": "52fe4261c3a36847f8019f29", "cast_id": 47, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 8}, {"name": "Lisa Barbuscia", "character": "Lara", "id": 9146, "credit_id": "52fe4261c3a36847f8019f2d", "cast_id": 48, "profile_path": "/fesKDQexfUIPI3NYDhIKa6Vfe66.jpg", "order": 9}, {"name": "Celia Imrie", "character": "Una Alconbury", "id": 9139, "credit_id": "54a3bafbc3a36864280025ca", "cast_id": 49, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 10}, {"name": "James Faulkner", "character": "Uncle Geoffrey", "id": 9140, "credit_id": "54a3bb1bc3a3682f1e011297", "cast_id": 50, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 11}], "directors": [{"name": "Sharon Maguire", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019eeb", "profile_path": "/oy9U1x6801cocQT5uQNhLvrCCtc.jpg", "id": 9158}], "vote_average": 6.3, "runtime": 97}, "635": {"poster_path": "/xFtrVJWygDiK2iZluUxNwuQZ6Sm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The down-and-out private detective Harry Angel is ordered, by a mysterious man named Louis Cyphre, to go on a mission to find a missing person. His routine failure soon leads to a bloody spur with himself as Harry Angel goes on a supernatural journey into his soul.", "video": false, "id": 635, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Angel Heart", "tagline": "Harry Angel has been hired in seach for the truth. Pray he doesn't find it.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092563", "adult": false, "backdrop_path": "/NtQjMSMinCFcejZyfhtVYBV1x0.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Winkast Film Productions", "id": 13721}, {"name": "Carolco Pictures", "id": 14723}, {"name": "Union", "id": 24905}], "release_date": "1987-03-06", "popularity": 0.463257827487062, "original_title": "Angel Heart", "budget": 17000000, "cast": [{"name": "Mickey Rourke", "character": "Harry Angel", "id": 2295, "credit_id": "52fe4261c3a36847f8019fb9", "cast_id": 14, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Louis Cyphre", "id": 380, "credit_id": "52fe4261c3a36847f8019fbd", "cast_id": 15, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Lisa Bonet", "character": "Epiphany Proudfoot", "id": 3232, "credit_id": "52fe4261c3a36847f8019fc1", "cast_id": 16, "profile_path": "/wP9edkzvr5vIIVaocRf70vdRcdW.jpg", "order": 2}, {"name": "Charlotte Rampling", "character": "Margaret Krusemark", "id": 44079, "credit_id": "52fe4261c3a36847f8019fc5", "cast_id": 17, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 3}, {"name": "Stocker Fontelieu", "character": "Ethan Krusemark", "id": 9170, "credit_id": "52fe4261c3a36847f8019fc9", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Brownie McGhee", "character": "Toots Sweet", "id": 9171, "credit_id": "52fe4261c3a36847f8019fcd", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Michael Higgins", "character": "Doctor Fowler", "id": 2979, "credit_id": "52fe4261c3a36847f8019fd1", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Elizabeth Whitcraft", "character": "Connie", "id": 9172, "credit_id": "52fe4261c3a36847f8019fd5", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Eliott Keener", "character": "Sterne", "id": 9173, "credit_id": "52fe4261c3a36847f8019fd9", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Charles Gordone", "character": "Spider Simpson", "id": 9174, "credit_id": "52fe4261c3a36847f8019fdd", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Dann Florek", "character": "Winesnap", "id": 9175, "credit_id": "52fe4261c3a36847f8019fe1", "cast_id": 24, "profile_path": "/aWRFqpmLdFAoH9BiUE7RyxUKUsX.jpg", "order": 10}, {"name": "Kathleen Wilhoite", "character": "Nurse", "id": 42335, "credit_id": "54903d8cc3a3686d7c00192d", "cast_id": 57, "profile_path": "/vVqaPBDr54BgryNaGb9IIyDQExD.jpg", "order": 11}, {"name": "George Buck", "character": "Izzy", "id": 4048, "credit_id": "54903db0c3a3686d820018cd", "cast_id": 58, "profile_path": null, "order": 12}, {"name": "Judith Drake", "character": "Izzy's Wife", "id": 109900, "credit_id": "54903dcc9251412209001abd", "cast_id": 59, "profile_path": null, "order": 13}, {"name": "Pruitt Taylor Vince", "character": "Det. Deimos", "id": 3201, "credit_id": "54903de9c3a3687cb800088b", "cast_id": 60, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 14}, {"name": "Dave Petitjean", "character": "Baptism Preacher", "id": 1262960, "credit_id": "54903e0792514122050018bf", "cast_id": 61, "profile_path": null, "order": 15}, {"name": "Rick Washburn", "character": "Cajun Heavy", "id": 97922, "credit_id": "54903e28c3a3686d7c001941", "cast_id": 62, "profile_path": null, "order": 16}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019fb5", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 6.7, "runtime": 113}, "636": {"poster_path": "/8cie5mojY6MlIrYMs9EtNSyterv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2437000, "overview": "People in the future live in a totalitarian society. A technician named THX 1138 lives a mundane life between work and taking a controlled consumption of drugs that the government uses to make puppets out of people. As THX is without drugs for the first time he has feelings for a woman and they start a secret relationship. The first film from George Lucas.", "video": false, "id": 636, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "THX 1138", "tagline": "Visit the future where love is the ultimate crime.", "vote_count": 50, "homepage": "http://www.thx1138movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066434", "adult": false, "backdrop_path": "/oKOVIY9W2d5VMKDN1YAAznZ58Bj.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1971-03-11", "popularity": 0.66428747845752, "original_title": "THX 1138", "budget": 777000, "cast": [{"name": "Robert Duvall", "character": "THX", "id": 3087, "credit_id": "52fe4261c3a36847f801a08d", "cast_id": 13, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 0}, {"name": "Donald Pleasence", "character": "SEN", "id": 9221, "credit_id": "52fe4261c3a36847f801a091", "cast_id": 14, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 1}, {"name": "Don Pedro Colley", "character": "SRT", "id": 9222, "credit_id": "52fe4261c3a36847f801a095", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Maggie McOmie", "character": "LUH", "id": 9223, "credit_id": "52fe4261c3a36847f801a099", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Ian Wolfe", "character": "PTO", "id": 2782, "credit_id": "52fe4261c3a36847f801a09d", "cast_id": 17, "profile_path": "/ylp7puM2Hcd0VkQvXfmD7zkP4m7.jpg", "order": 4}, {"name": "Marshall Efron", "character": "TWA", "id": 9224, "credit_id": "52fe4261c3a36847f801a0a1", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Sid Haig", "character": "NCH", "id": 5695, "credit_id": "52fe4261c3a36847f801a0a5", "cast_id": 19, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 6}, {"name": "John Pearce", "character": "DWY", "id": 9225, "credit_id": "52fe4261c3a36847f801a0a9", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Irene Forrest", "character": "IMM", "id": 9226, "credit_id": "52fe4261c3a36847f801a0ad", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Gary Alan Marsh", "character": "CAM", "id": 9227, "credit_id": "52fe4261c3a36847f801a0b1", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "John Seaton", "character": "OUE", "id": 9228, "credit_id": "52fe4261c3a36847f801a0b5", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Eugene I. Stillman", "character": "JOT", "id": 9229, "credit_id": "52fe4261c3a36847f801a0b9", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Jack Walsh", "character": "TRG", "id": 5613, "credit_id": "52fe4261c3a36847f801a0bd", "cast_id": 25, "profile_path": "/zrqDsTJbPLx1BOXT9DmcXlKOP1c.jpg", "order": 12}, {"name": "Mark Lawhead", "character": "Shell Dweller", "id": 9231, "credit_id": "52fe4262c3a36847f801a0c1", "cast_id": 26, "profile_path": null, "order": 13}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f801a089", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.4, "runtime": 86}, "637": {"poster_path": "/f7DImXDebOs148U4uPjI61iDvaK.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 229400000, "overview": "A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.", "video": false, "id": 637, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Life Is Beautiful", "tagline": "An unforgettable fable that proves love, family and imagination conquer all.", "vote_count": 836, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118799", "adult": false, "backdrop_path": "/mrbTLFsYup7iIXgJzxJVLaitcwZ.jpg", "production_companies": [{"name": "Melampo Cinematografica", "id": 370}, {"name": "Cecchi Gori Group Tiger Cinematografica", "id": 371}], "release_date": "1997-12-20", "popularity": 0.998208445084334, "original_title": "La vita \u00e8 bella", "budget": 0, "cast": [{"name": "Nicoletta Braschi", "character": "Dora", "id": 9235, "credit_id": "52fe4262c3a36847f801a121", "cast_id": 7, "profile_path": "/KVd8Wj5PXrZ4XhtnWzbdqvQLIu.jpg", "order": 0}, {"name": "Roberto Benigni", "character": "Guido Orefice", "id": 4818, "credit_id": "52fe4262c3a36847f801a125", "cast_id": 8, "profile_path": "/3PTaBUHrSgculvAFD7xbZqZWMo9.jpg", "order": 1}, {"name": "Giorgio Cantarini", "character": "Giosu\u00e9 Orefice", "id": 9236, "credit_id": "52fe4262c3a36847f801a129", "cast_id": 9, "profile_path": "/kqS0xt0oPSjAA54S1wWk118ALgA.jpg", "order": 2}, {"name": "Giustino Durano", "character": "Eliseo Orefice", "id": 9237, "credit_id": "52fe4262c3a36847f801a12d", "cast_id": 10, "profile_path": "/6M5bUmgzRLAzjZ8D5uQq6v0rAM6.jpg", "order": 3}, {"name": "Amerigo Fontani", "character": "Rodolfo", "id": 9238, "credit_id": "52fe4262c3a36847f801a131", "cast_id": 11, "profile_path": "/jb37N1fGjI8Hi9COf3qQaz7n8bY.jpg", "order": 4}, {"name": "Sergio Bini Bustric", "character": "Ferruccio", "id": 9239, "credit_id": "52fe4262c3a36847f801a135", "cast_id": 12, "profile_path": "/64ERkNCeK0oMk8YWoNK1KuDETt3.jpg", "order": 5}, {"name": "Lidia Alfonsi", "character": "Signora Guicciardini", "id": 9240, "credit_id": "52fe4262c3a36847f801a139", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Horst Buchholz", "character": "Dottore Lessing", "id": 5789, "credit_id": "52fe4262c3a36847f801a13d", "cast_id": 14, "profile_path": "/bNyMxUU2aVaqDfoqRhnIjQJe3jo.jpg", "order": 7}, {"name": "Pietro De Silva", "character": "Bartolomeo", "id": 9241, "credit_id": "52fe4262c3a36847f801a141", "cast_id": 15, "profile_path": "/lmndioiEYOcA751pcWutmyNAbPH.jpg", "order": 8}, {"name": "Marisa Paredes", "character": "Madre di Dora", "id": 954, "credit_id": "52fe4262c3a36847f801a145", "cast_id": 16, "profile_path": "/vUCGRyx1IjRvlNekMkqoFQAf8sD.jpg", "order": 9}, {"name": "Giuliana Lojodice", "character": "Direttrice", "id": 9242, "credit_id": "52fe4262c3a36847f801a149", "cast_id": 17, "profile_path": "/r16Z7t9qCUnWRbQIZcvdGTgjQMR.jpg", "order": 10}, {"name": "Francesco Guzzo", "character": "Vittorino", "id": 9243, "credit_id": "52fe4262c3a36847f801a14d", "cast_id": 18, "profile_path": "/6X7AUApTZ2RJIEdvXSU0gSAdMFC.jpg", "order": 11}], "directors": [{"name": "Roberto Benigni", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a0ff", "profile_path": "/3PTaBUHrSgculvAFD7xbZqZWMo9.jpg", "id": 4818}], "vote_average": 8.0, "runtime": 116}, "638": {"poster_path": "/c6NwqYwNCZhJndR48EJLkm8dfNg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3675201, "overview": "Director David Lynch gives us a psycho thriller beyond definition that has audiences tangled in the provocations of nightmares, violence, sex sequences, reality, the subconscious, and madness as they must create their own interpretations of the film.", "video": false, "id": 638, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Lost Highway", "tagline": "", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116922", "adult": false, "backdrop_path": "/xZNn24www3ygZtP1YOzF4NBL5So.jpg", "production_companies": [{"name": "Ciby 2000", "id": 105}, {"name": "October Films", "id": 236}, {"name": "Asymmetrical Productions", "id": 373}, {"name": "Lost Highway Productions", "id": 374}], "release_date": "1997-02-21", "popularity": 0.955892173908715, "original_title": "Lost Highway", "budget": 15000000, "cast": [{"name": "Bill Pullman", "character": "Fred Madison", "id": 8984, "credit_id": "52fe4262c3a36847f801a263", "cast_id": 2, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Renee Madison", "id": 4687, "credit_id": "52fe4262c3a36847f801a267", "cast_id": 3, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "John Roselius", "character": "Al", "id": 9285, "credit_id": "52fe4262c3a36847f801a26b", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Louis Eppolito", "character": "Ed", "id": 9286, "credit_id": "52fe4262c3a36847f801a26f", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Robert Blake", "character": "Mystery Man", "id": 9287, "credit_id": "52fe4262c3a36847f801a273", "cast_id": 6, "profile_path": "/2jNypGrgrzYyKqlrEsZ6HwSbVcy.jpg", "order": 4}, {"name": "Jenna Maetlind", "character": "Party Girl", "id": 9288, "credit_id": "52fe4262c3a36847f801a277", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Michael Massee", "character": "Andy", "id": 9289, "credit_id": "52fe4262c3a36847f801a27b", "cast_id": 8, "profile_path": "/qbM7GWc86Lw5y6E6eCnokgVaHia.jpg", "order": 6}, {"name": "Henry Rollins", "character": "Guard Henry", "id": 9290, "credit_id": "52fe4262c3a36847f801a27f", "cast_id": 9, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 7}, {"name": "Michael Shamus Wiles", "character": "Guard Mike", "id": 9291, "credit_id": "52fe4262c3a36847f801a283", "cast_id": 10, "profile_path": "/upfSW6BGze446iqsZRehzcToNm8.jpg", "order": 8}, {"name": "Mink Stole", "character": "Forewoman", "id": 9292, "credit_id": "52fe4262c3a36847f801a287", "cast_id": 11, "profile_path": "/ew1Ro2VvDR1YjaJAvO7ZjTNe7oK.jpg", "order": 9}, {"name": "Leonard Termo", "character": "Judge", "id": 7140, "credit_id": "52fe4262c3a36847f801a28b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Ivory Ocean", "character": "Guard Ivory", "id": 9293, "credit_id": "52fe4262c3a36847f801a28f", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Jack Kehler", "character": "Guard Johnny Mack", "id": 1240, "credit_id": "52fe4262c3a36847f801a293", "cast_id": 14, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 12}, {"name": "David Byrd", "character": "Doctor Smordin", "id": 9294, "credit_id": "52fe4262c3a36847f801a297", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Gene Ross", "character": "Warden Clements", "id": 9295, "credit_id": "52fe4262c3a36847f801a29b", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Balthazar Getty", "character": "Pete Dayton", "id": 9296, "credit_id": "52fe4262c3a36847f801a29f", "cast_id": 17, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 15}, {"name": "F. William Parker", "character": "Captain Luneau", "id": 9297, "credit_id": "52fe4262c3a36847f801a2a3", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Guy Siner", "character": "Prison Official #1", "id": 9298, "credit_id": "52fe4262c3a36847f801a2a7", "cast_id": 19, "profile_path": "/qlEznv2uAbN46pmVaAuWNTULdVh.jpg", "order": 17}, {"name": "Alexander Folk", "character": "Prison Official #2", "id": 9299, "credit_id": "52fe4262c3a36847f801a2ab", "cast_id": 20, "profile_path": null, "order": 18}, {"name": "Gary Busey", "character": "Bill Dayton", "id": 2048, "credit_id": "52fe4262c3a36847f801a2af", "cast_id": 21, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 19}, {"name": "Lucy Butler", "character": "Candace Dayton", "id": 9300, "credit_id": "52fe4262c3a36847f801a2b3", "cast_id": 22, "profile_path": "/ua0j2HN8Gfvh0kFagGS4kWzGV1m.jpg", "order": 20}, {"name": "Carl Sundstrom", "character": "Hank", "id": 9301, "credit_id": "52fe4262c3a36847f801a2b7", "cast_id": 23, "profile_path": null, "order": 21}, {"name": "John Solari", "character": "Lou", "id": 9302, "credit_id": "52fe4262c3a36847f801a2bb", "cast_id": 24, "profile_path": null, "order": 22}, {"name": "Jack", "character": "The Dog", "id": 9303, "credit_id": "52fe4262c3a36847f801a2bf", "cast_id": 25, "profile_path": null, "order": 23}, {"name": "Al Garrett", "character": "Carl", "id": 9304, "credit_id": "52fe4262c3a36847f801a2c3", "cast_id": 26, "profile_path": null, "order": 24}, {"name": "Heather Stephens", "character": "Lanie", "id": 9305, "credit_id": "52fe4262c3a36847f801a2c7", "cast_id": 27, "profile_path": "/oIT6TC22SV8otMR8hFmPSVtF595.jpg", "order": 25}, {"name": "Giovanni Ribisi", "character": "Steve \"V\"", "id": 1771, "credit_id": "52fe4262c3a36847f801a2cb", "cast_id": 28, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 26}, {"name": "Scott Coffey", "character": "Teddy", "id": 9306, "credit_id": "52fe4262c3a36847f801a2cf", "cast_id": 29, "profile_path": "/kRA20iJ4hBeHSUlYduRTXEhQyku.jpg", "order": 27}, {"name": "Natasha Gregson Wagner", "character": "Sheila", "id": 3270, "credit_id": "52fe4262c3a36847f801a2d3", "cast_id": 30, "profile_path": "/jjzEhU1kxnHnwDBq4CtNDRxS1f6.jpg", "order": 28}, {"name": "Amanda Anka", "character": "Girl #1", "id": 9307, "credit_id": "52fe4262c3a36847f801a2d7", "cast_id": 31, "profile_path": null, "order": 29}, {"name": "Jennifer Syme", "character": "Junkie Girl", "id": 9308, "credit_id": "52fe4262c3a36847f801a2db", "cast_id": 32, "profile_path": "/mw6mY2jakgzO6obZIwk7bBWL6mo.jpg", "order": 30}, {"name": "Richard Pryor", "character": "Arnie", "id": 9309, "credit_id": "52fe4262c3a36847f801a2df", "cast_id": 33, "profile_path": "/hzJ3Q7wDLv4m82eMTbK2tzVzCHG.jpg", "order": 31}, {"name": "Robert Loggia", "character": "Mr. Eddy / Dick Lauren", "id": 1162, "credit_id": "52fe4262c3a36847f801a2e3", "cast_id": 34, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 32}, {"name": "Matt Sigloch", "character": "Assistent #1", "id": 9310, "credit_id": "52fe4262c3a36847f801a2e7", "cast_id": 35, "profile_path": null, "order": 33}, {"name": "Gilbert B. Combs", "character": "Assistent #2", "id": 9311, "credit_id": "52fe4262c3a36847f801a2eb", "cast_id": 36, "profile_path": null, "order": 34}, {"name": "Greg Travis", "character": "Tail Gate Driver", "id": 9312, "credit_id": "52fe4262c3a36847f801a2ef", "cast_id": 37, "profile_path": "/i08bAo3ZRB9QWBvpcqviJHyU8EH.jpg", "order": 35}, {"name": "Jack Nance", "character": "Phil", "id": 6718, "credit_id": "52fe4262c3a36847f801a2f3", "cast_id": 38, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 36}, {"name": "Lisa Boyle", "character": "Marian", "id": 9313, "credit_id": "52fe4262c3a36847f801a2f7", "cast_id": 39, "profile_path": "/r7YqIRBbeNIgVNK6xgmrmLDh4uW.jpg", "order": 37}, {"name": "Leslie Bega", "character": "Raquel", "id": 9314, "credit_id": "52fe4262c3a36847f801a2fb", "cast_id": 40, "profile_path": null, "order": 38}, {"name": "Marilyn Manson", "character": "Porno Star #1", "id": 9315, "credit_id": "52fe4262c3a36847f801a2ff", "cast_id": 41, "profile_path": "/iUMXqqB1rScONzA7FrUtyb7G8pA.jpg", "order": 39}, {"name": "Jeordie White", "character": "Porno Star #2", "id": 9316, "credit_id": "52fe4262c3a36847f801a303", "cast_id": 42, "profile_path": null, "order": 40}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a25f", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.6, "runtime": 134}, "639": {"poster_path": "/anYI1fzx90PgjO9PY3JStJZJmQT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92823546, "overview": "Will sex ruin a perfect relationship between a man and a woman? that's what Harry (Billy Crystal) and Sally (Meg Ryan) debate during their travels from Chicago to New York. And eleven years and later, they're still no closer to finding the answer. Will these two best friends ever accept that they're meant for each other...or will they continue to deny the attraction that's existed since the first moment When Harry Met Sally?", "video": false, "id": 639, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "When Harry Met Sally...", "tagline": "Can two friends sleep together and still love each other in the morning?", "vote_count": 187, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098635", "adult": false, "backdrop_path": "/qSjaK9gzDUlL4beeexXwliWqSCX.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Nelson Entertainment", "id": 365}], "release_date": "1989-07-12", "popularity": 1.24019058683555, "original_title": "When Harry Met Sally...", "budget": 16000000, "cast": [{"name": "Meg Ryan", "character": "Sally Albright", "id": 5344, "credit_id": "52fe4262c3a36847f801a557", "cast_id": 19, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Harry Burns", "id": 7904, "credit_id": "52fe4262c3a36847f801a55b", "cast_id": 20, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Marie", "id": 4, "credit_id": "52fe4262c3a36847f801a55f", "cast_id": 21, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "Bruno Kirby", "character": "Jess", "id": 9257, "credit_id": "52fe4262c3a36847f801a563", "cast_id": 22, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 3}, {"name": "Steven Ford", "character": "Joe", "id": 9258, "credit_id": "5474252ac3a36845e500220e", "cast_id": 23, "profile_path": "/iw8CUyekmYkGwmg0bp7foY4KvrH.jpg", "order": 4}, {"name": "Lisa Jane Persky", "character": "Alice", "id": 9259, "credit_id": "5474253a92514160e30003d0", "cast_id": 24, "profile_path": "/9H3tSghbilxzikD3Ob59zt15Vp.jpg", "order": 5}, {"name": "Michelle Nicastro", "character": "Amanda", "id": 9260, "credit_id": "54742549c3a3683e3f00044a", "cast_id": 25, "profile_path": "/mwaoMLHrMKFLHKyYqlVAqdfsJuY.jpg", "order": 6}, {"name": "Gretchen Palmer", "character": "Stewardess", "id": 119884, "credit_id": "5474255cc3a3681db6001101", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Robert Alan Beuth", "character": "Man on Aisle", "id": 86475, "credit_id": "5474256d9251413aab001229", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "David Burdick", "character": "9 Year Old Boy", "id": 1389091, "credit_id": "5474257b9251413aab00122c", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Joe Viviani", "character": "Judge", "id": 1389092, "credit_id": "54742589c3a36875de000ce0", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Harley Jane Kozak", "character": "Helen", "id": 27106, "credit_id": "547425999251416e58001559", "cast_id": 30, "profile_path": "/VXtpLchVBUib398pwahLPbgSeT.jpg", "order": 11}, {"name": "Joseph Hunt", "character": "Waiter at Wedding", "id": 1389093, "credit_id": "547425af9251416e58001564", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Kevin Rooney", "character": "Ira", "id": 151273, "credit_id": "547425bdc3a3683e3f000456", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Franc Luz", "character": "Julian", "id": 158205, "credit_id": "54e8a33bc3a36836e0001e86", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a4ed", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.7, "runtime": 96}, "640": {"poster_path": "/MywWCQGJNUr5kivAQ7eseCG7rm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 351112395, "overview": "Frank W. Abagnale Jr. is a cunning con man -- posing as a doctor, lawyer and pilot all before turning 21. He's also a deft forger, and his work attracts the attention of FBI agent Carl Hanratty, who makes it his mission to put Frank behind bars. But Frank not only eludes capture, he revels in the pursuit, even taking time to taunt Carl by phone.", "video": false, "id": 640, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Catch Me If You Can", "tagline": "The true story of a real fake.", "vote_count": 1109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0264464", "adult": false, "backdrop_path": "/lV3HasjMmWyFjD9gCz0B4h71wwF.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2002-12-25", "popularity": 1.08036198325352, "original_title": "Catch Me If You Can", "budget": 52000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Frank Abagnale Jr.", "id": 6193, "credit_id": "52fe4263c3a36847f801a63f", "cast_id": 23, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Tom Hanks", "character": "Carl Hanratty", "id": 31, "credit_id": "52fe4263c3a36847f801a643", "cast_id": 24, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Frank Abagnale, Sr.", "id": 4690, "credit_id": "52fe4263c3a36847f801a647", "cast_id": 25, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Martin Sheen", "character": "Roger Strong", "id": 8349, "credit_id": "52fe4263c3a36847f801a64b", "cast_id": 26, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 3}, {"name": "Amy Adams", "character": "Brenda Strong", "id": 9273, "credit_id": "52fe4263c3a36847f801a64f", "cast_id": 28, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 4}, {"name": "James Brolin", "character": "Jack Barnes", "id": 9274, "credit_id": "52fe4263c3a36847f801a653", "cast_id": 29, "profile_path": "/8SGPpN3ieM3K0mHjD8bbQIRD6x.jpg", "order": 5}, {"name": "Brian Howe", "character": "Earl Amdursky", "id": 1990, "credit_id": "52fe4263c3a36847f801a657", "cast_id": 30, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 6}, {"name": "Frank John Hughes", "character": "Tom Fox", "id": 9275, "credit_id": "52fe4263c3a36847f801a65b", "cast_id": 31, "profile_path": "/djOW0Qyeym5wWGqqILWJ6LENikW.jpg", "order": 7}, {"name": "Steve Eastin", "character": "Paul Morgan", "id": 9276, "credit_id": "52fe4263c3a36847f801a65f", "cast_id": 32, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 8}, {"name": "Chris Ellis", "character": "Special Agent Witkins", "id": 8191, "credit_id": "52fe4263c3a36847f801a663", "cast_id": 33, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 9}, {"name": "John Finn", "character": "Assistant Director Marsh", "id": 9277, "credit_id": "52fe4263c3a36847f801a667", "cast_id": 34, "profile_path": "/18k2kiasthWKgu4qUGF02fWsi7m.jpg", "order": 10}, {"name": "Jennifer Garner", "character": "Cheryl Ann", "id": 9278, "credit_id": "52fe4263c3a36847f801a66b", "cast_id": 35, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 11}, {"name": "Nancy Lenehan", "character": "Carol Strong", "id": 9279, "credit_id": "52fe4263c3a36847f801a66f", "cast_id": 36, "profile_path": "/d53TslGYUtkXfHHEjCGMCQOOdlM.jpg", "order": 12}, {"name": "Ellen Pompeo", "character": "Marci", "id": 9280, "credit_id": "52fe4263c3a36847f801a673", "cast_id": 37, "profile_path": "/iX5HdQdWRPLf5Fx87QDNCdehmI9.jpg", "order": 13}, {"name": "Elizabeth Banks", "character": "Lucy", "id": 9281, "credit_id": "52fe4263c3a36847f801a677", "cast_id": 38, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 14}, {"name": "Guy Thauvette", "character": "Warden Garren", "id": 9282, "credit_id": "52fe4263c3a36847f801a67b", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Candice Azzara", "character": "Darcy", "id": 9283, "credit_id": "52fe4263c3a36847f801a67f", "cast_id": 40, "profile_path": "/sotfsarQARGTDzZ7PnKqWnTKVAk.jpg", "order": 16}, {"name": "Thomas Kopache", "character": "Principal Evans", "id": 9284, "credit_id": "52fe4263c3a36847f801a683", "cast_id": 41, "profile_path": "/x7ef1rpmCE6rjeuJq30rw0zSQE0.jpg", "order": 17}, {"name": "Nathalie Baye", "character": "Paula Abagnale", "id": 136761, "credit_id": "52fe4263c3a36847f801a68d", "cast_id": 43, "profile_path": "/1Jgb6SsdVhQhoPykMWIKzfV5s5U.jpg", "order": 18}, {"name": "Max Kerstein", "character": "Penner Brother", "id": 189735, "credit_id": "52fe4263c3a36847f801a697", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Jessica Collins", "character": "Peggy", "id": 86929, "credit_id": "52fe4263c3a36847f801a69b", "cast_id": 46, "profile_path": "/qRm0rvKJfGj6JGznemo1txstlQb.jpg", "order": 20}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a5c3", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.3, "runtime": 141}, "641": {"poster_path": "/muym4jTjdLx7E6as09d1wlC3sOB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7390108, "overview": "The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.", "video": false, "id": 641, "genres": [{"id": 18, "name": "Drama"}], "title": "Requiem for a Dream", "tagline": "From the director of [Pi]", "vote_count": 589, "homepage": "http://www.requiemforadream.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0180093", "adult": false, "backdrop_path": "/4xwwVbTyEqzFdiX2kop1rSTX9dR.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}], "release_date": "2000-10-27", "popularity": 0.380552664420279, "original_title": "Requiem for a Dream", "budget": 4500000, "cast": [{"name": "Ellen Burstyn", "character": "Sara Goldfarb", "id": 9560, "credit_id": "52fe4263c3a36847f801a777", "cast_id": 29, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 0}, {"name": "Jared Leto", "character": "Harry Goldfarb", "id": 7499, "credit_id": "52fe4263c3a36847f801a77b", "cast_id": 30, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "Marion Silver", "id": 6161, "credit_id": "52fe4263c3a36847f801a77f", "cast_id": 31, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Marlon Wayans", "character": "Tyrone C. Love", "id": 9562, "credit_id": "52fe4263c3a36847f801a783", "cast_id": 32, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 3}, {"name": "Christopher McDonald", "character": "Tappy Tibbons", "id": 4443, "credit_id": "52fe4263c3a36847f801a787", "cast_id": 33, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 4}, {"name": "Louise Lasser", "character": "Ada", "id": 9565, "credit_id": "52fe4263c3a36847f801a78b", "cast_id": 34, "profile_path": "/32K4mhDymJMkm9goQ02cBX6lBFL.jpg", "order": 5}, {"name": "Marcia Jean Kurtz", "character": "Rae", "id": 14548, "credit_id": "52fe4263c3a36847f801a795", "cast_id": 36, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 6}, {"name": "Janet Sarno", "character": "Mrs. Pearlman", "id": 171117, "credit_id": "52fe4263c3a36847f801a799", "cast_id": 37, "profile_path": null, "order": 7}, {"name": "Suzanne Shepherd", "character": "Mrs. Scarlini", "id": 11484, "credit_id": "52fe4263c3a36847f801a79d", "cast_id": 38, "profile_path": null, "order": 8}, {"name": "Mark Margolis", "character": "Mr. Rabinowitz", "id": 1173, "credit_id": "52fe4263c3a36847f801a7a1", "cast_id": 39, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 9}, {"name": "Joanne Gordon", "character": "Mrs. Ovadia", "id": 1402326, "credit_id": "549736f0c3a3684c150002c5", "cast_id": 40, "profile_path": null, "order": 10}, {"name": "Charlotte Aronofsky", "character": "Mrs. Miles", "id": 1081123, "credit_id": "54973742c3a3686ae3006bd2", "cast_id": 41, "profile_path": null, "order": 11}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801a6e9", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 7.5, "runtime": 102}, "41602": {"poster_path": "/fSwdCCGmO50IMaH4XMAixjclLDF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "While traveling abroad, a guy falls for a Romanian beauty whose unreachable heart has its origins in her violent, charismatic ex.", "video": false, "id": 41602, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Necessary Death of Charlie Countryman", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt1196948", "adult": false, "backdrop_path": "/bGU9HdjUH22b2KOCjfGIcfdkRSr.jpg", "production_companies": [{"name": "MediaPro Pictures", "id": 11819}, {"name": "Bona Fide Productions", "id": 2570}], "release_date": "2013-11-15", "popularity": 0.816859856259536, "original_title": "The Necessary Death of Charlie Countryman", "budget": 0, "cast": [{"name": "Shia LaBeouf", "character": "Charlie Countryman", "id": 10959, "credit_id": "52fe45d5c3a36847f80dd21f", "cast_id": 1, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Evan Rachel Wood", "character": "Gabi Ibanescu", "id": 38940, "credit_id": "52fe45d5c3a36847f80dd227", "cast_id": 4, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 1}, {"name": "Mads Mikkelsen", "character": "Nigel", "id": 1019, "credit_id": "52fe45d5c3a36847f80dd22b", "cast_id": 5, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 2}, {"name": "Til Schweiger", "character": "Darko", "id": 1844, "credit_id": "52fe45d5c3a36847f80dd22f", "cast_id": 7, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 3}, {"name": "Rupert Grint", "character": "Carl", "id": 10989, "credit_id": "52fe45d5c3a36847f80dd223", "cast_id": 3, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 4}, {"name": "James Buckley", "character": "Luke", "id": 207321, "credit_id": "52fe45d5c3a36847f80dd239", "cast_id": 9, "profile_path": "/lv58w34d9qgqJiLDX5tovxzp8rV.jpg", "order": 5}, {"name": "Melissa Leo", "character": "Kate", "id": 6832, "credit_id": "52fe45d5c3a36847f80dd23d", "cast_id": 10, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 6}, {"name": "Vanessa Kirby", "character": "Felicity", "id": 556356, "credit_id": "52fe45d5c3a36847f80dd241", "cast_id": 11, "profile_path": "/ndrtjCvIXEuHerMBOz8sLyxgIlc.jpg", "order": 7}, {"name": "Montserrat Lombard", "character": "Madison", "id": 118035, "credit_id": "52fe45d6c3a36847f80dd251", "cast_id": 14, "profile_path": "/4XcmWu0tRWhNV5tPwkkHfCsII74.jpg", "order": 8}, {"name": "Ion Caramitru", "character": "Victor Ibanescu", "id": 15321, "credit_id": "52fe45d6c3a36847f80dd255", "cast_id": 15, "profile_path": "/lHgFi4CUYavMKVW7xTbHj4CoMEn.jpg", "order": 9}, {"name": "Vincent D'Onofrio", "character": "Bill", "id": 7132, "credit_id": "52fe45d6c3a36847f80dd259", "cast_id": 16, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 10}, {"name": "John Hurt", "character": "Narrator", "id": 5049, "credit_id": "52fe45d6c3a36847f80dd261", "cast_id": 18, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 12}, {"name": "Cosmin Padureanu", "character": "Bosko", "id": 1437321, "credit_id": "54fdd11092514123af00501b", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Fredrik Bond", "department": "Directing", "job": "Director", "credit_id": "52fe45d5c3a36847f80dd235", "profile_path": null, "id": 1140271}], "vote_average": 6.8, "runtime": 108}, "8835": {"poster_path": "/1gAnkZNAd3HqgWL7aqSOQFwt7D1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141774679, "overview": "Elle Woods has it all. She's the president of her sorority, a Hawaiian Tropic girl, Miss June in her campus calendar, and, above all, a natural blonde. She dates the cutest fraternity boy on campus and wants nothing more than to be Mrs. Warner Huntington III. But, there's just one thing stopping Warner from popping the question: Elle is too blonde.", "video": false, "id": 8835, "genres": [{"id": 35, "name": "Comedy"}], "title": "Legally Blonde", "tagline": "Don't judge a book by its hair color!", "vote_count": 194, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aabPyPAA6E8hJ7tUipwunr3Itzb.jpg", "poster_path": "/atW2tUdKztpE66G1FMLCj12BHWz.jpg", "id": 86024, "name": "Legally Blonde Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0250494", "adult": false, "backdrop_path": "/rusiQnUaorH0Z71hYMsrR8Ortrf.jpg", "production_companies": [{"name": "Marc Platt Productions", "id": 2527}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2001-07-13", "popularity": 0.944672170032937, "original_title": "Legally Blonde", "budget": 18000000, "cast": [{"name": "Reese Witherspoon", "character": "Elle Woods", "id": 368, "credit_id": "52fe44bbc3a36847f80a7009", "cast_id": 10, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Luke Wilson", "character": "Emmett Richmond", "id": 36422, "credit_id": "52fe44bbc3a36847f80a700d", "cast_id": 11, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Selma Blair", "character": "Vivian Kensington", "id": 11826, "credit_id": "52fe44bbc3a36847f80a7011", "cast_id": 12, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 2}, {"name": "Matthew Davis", "character": "Warner Huntington III", "id": 56045, "credit_id": "52fe44bbc3a36847f80a7015", "cast_id": 13, "profile_path": "/crjsdQlWTVKFPS5XKuLOcVMFFNd.jpg", "order": 3}, {"name": "Victor Garber", "character": "Professor Callahan", "id": 8536, "credit_id": "52fe44bbc3a36847f80a7019", "cast_id": 14, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 4}, {"name": "Lacey Beeman", "character": "Nervous 1L Girl", "id": 168897, "credit_id": "52fe44bbc3a36847f80a701d", "cast_id": 15, "profile_path": "/h8coFumNNoCK6wJ0XYXSeO6Q6C7.jpg", "order": 5}, {"name": "Jennifer Coolidge", "character": "Paulette", "id": 38334, "credit_id": "52fe44bbc3a36847f80a7021", "cast_id": 16, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 6}, {"name": "Holland Taylor", "character": "Professor Stromwell", "id": 11318, "credit_id": "53b6187b0e0a2676c7004869", "cast_id": 17, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 7}, {"name": "Ali Larter", "character": "Brooke Taylor Windham", "id": 17303, "credit_id": "53b618870e0a2676cb004575", "cast_id": 18, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 8}, {"name": "Jessica Cauffiel", "character": "Margot", "id": 22126, "credit_id": "53b618990e0a2676c700486c", "cast_id": 19, "profile_path": "/rLqK8Qj2SPjwkT7uPQyv3UV5qlg.jpg", "order": 9}, {"name": "Alanna Ubach", "character": "Serena", "id": 10402, "credit_id": "53b618a20e0a2676b80044c8", "cast_id": 20, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 10}, {"name": "Oz Perkins", "character": "Dorky David Kidney", "id": 90609, "credit_id": "53b618af0e0a2676c7004872", "cast_id": 21, "profile_path": "/mFMTeyafafTqSgaWaRvGaLNgG7j.jpg", "order": 11}, {"name": "Linda Cardellini", "character": "Chutney", "id": 1817, "credit_id": "53b618b80e0a2676c40045f7", "cast_id": 22, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 12}, {"name": "Bruce Thomas", "character": "UPS Guy", "id": 79497, "credit_id": "53b618c70e0a2676c7004877", "cast_id": 23, "profile_path": "/mh7ckVcito9SJiMYhAH5Ca7EY3B.jpg", "order": 13}, {"name": "Meredith Scott Lynn", "character": "Enid", "id": 151384, "credit_id": "53b618d30e0a2676c700487a", "cast_id": 24, "profile_path": "/dxd6wN3HoW8dqJsjkAmEtsZVuca.jpg", "order": 14}, {"name": "Raquel Welch", "character": "Mrs. Windham Vandermark", "id": 21462, "credit_id": "53b618dc0e0a2676bf004595", "cast_id": 25, "profile_path": "/dEr7QkkgOqCwH1uc5VXzTxDveAv.jpg", "order": 15}, {"name": "Greg Serano", "character": "Enrique", "id": 96553, "credit_id": "53b618fa0e0a2676b80044d1", "cast_id": 26, "profile_path": "/2HUQm4OLQUNqPf9E8I6ypZpGHGG.jpg", "order": 16}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe44bbc3a36847f80a6fd5", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 6.0, "runtime": 96}, "644": {"poster_path": "/seJhtsUcytRuRGa6oUGYhjVYL8g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 235926552, "overview": "Eleven-year-old David is the first android with human feelings. He is adopted by the Swinton family to test his ability to function. Before they are done testing him though David goes off on his own following his wish to be a human. He is on an odyssey to understand the secret to his existence. A science fiction film from Steven Spielberg taken over from Stanley Kubrick.", "video": false, "id": 644, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "A.I. Artificial Intelligence", "tagline": "Journey to a world where robots dream and desire.", "vote_count": 450, "homepage": "http://www.warnerbros.de/video/ai/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0212720", "adult": false, "backdrop_path": "/osPj1VwPkoeFtNWjOxuNY71smol.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Stanley Kubrick Productions", "id": 385}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2001-06-25", "popularity": 1.26768906010708, "original_title": "Artificial Intelligence: AI", "budget": 100000000, "cast": [{"name": "Haley Joel Osment", "character": "David", "id": 9640, "credit_id": "52fe4263c3a36847f801a9cf", "cast_id": 18, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 0}, {"name": "Frances O'Connor", "character": "Monica Swinton", "id": 1518, "credit_id": "52fe4263c3a36847f801a9d3", "cast_id": 19, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 1}, {"name": "Sam Robards", "character": "Henry Swinton", "id": 8213, "credit_id": "52fe4263c3a36847f801a9d7", "cast_id": 20, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 2}, {"name": "Jake Thomas", "character": "Martin Swinton", "id": 9641, "credit_id": "52fe4263c3a36847f801a9db", "cast_id": 21, "profile_path": "/eln9pyfOrEAZ0vNDay8cm8syhIQ.jpg", "order": 3}, {"name": "Jude Law", "character": "Gigolo Joe", "id": 9642, "credit_id": "52fe4263c3a36847f801a9df", "cast_id": 22, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 4}, {"name": "William Hurt", "character": "Prof. Hobby", "id": 227, "credit_id": "52fe4263c3a36847f801a9e3", "cast_id": 23, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 5}, {"name": "Robin Williams", "character": "Dr. Know (voice)", "id": 2157, "credit_id": "52fe4263c3a36847f801a9e7", "cast_id": 24, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Specialist (voice)", "id": 2282, "credit_id": "52fe4263c3a36847f801a9eb", "cast_id": 25, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "Meryl Streep", "character": "Blue Mecha (voice)", "id": 5064, "credit_id": "52fe4263c3a36847f801a9ef", "cast_id": 26, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 8}, {"name": "Chris Rock", "character": "Comedian (voice)", "id": 2632, "credit_id": "52fe4263c3a36847f801a9f3", "cast_id": 27, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 9}, {"name": "Ken Leung", "character": "Syatyoo-Sama", "id": 2131, "credit_id": "52fe4263c3a36847f801aa03", "cast_id": 30, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 10}, {"name": "Clark Gregg", "character": "Supernerd", "id": 9048, "credit_id": "52fe4263c3a36847f801aa07", "cast_id": 31, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 11}, {"name": "Kevin Sussman", "character": "Supernerd", "id": 60633, "credit_id": "52fe4263c3a36847f801aa0b", "cast_id": 32, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 12}, {"name": "Tom Gallop", "character": "Supernerd", "id": 27030, "credit_id": "52fe4263c3a36847f801aa0f", "cast_id": 33, "profile_path": "/t799Vz0ATVN24NmXpvFOPkrJLU9.jpg", "order": 13}, {"name": "Eugene Osment", "character": "Supernerd", "id": 1004155, "credit_id": "52fe4263c3a36847f801aa13", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "April Grace", "character": "Female Colleague", "id": 10691, "credit_id": "52fe4263c3a36847f801aa17", "cast_id": 35, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 15}, {"name": "Matt Winston", "character": "Executive", "id": 35521, "credit_id": "52fe4263c3a36847f801aa1b", "cast_id": 36, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 16}, {"name": "Sabrina Grdevich", "character": "Sheila", "id": 142736, "credit_id": "52fe4263c3a36847f801aa1f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Theo Greenly", "character": "Todd", "id": 167195, "credit_id": "52fe4263c3a36847f801aa23", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Michael Mantell", "character": "Dr. Frazier at Cryogenic Institute", "id": 91030, "credit_id": "539974960e0a263e300018a7", "cast_id": 41, "profile_path": "/80CLXfrPC9BoqhjsV5k5rzm5XQL.jpg", "order": 19}, {"name": "Keith Campbell", "character": "Roadworker", "id": 15318, "credit_id": "53b951560e0a2676c7009c2d", "cast_id": 42, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 20}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801a96b", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.5, "runtime": 146}, "49797": {"poster_path": "/2Rs64a8Xs4j3mzBcJTo04vo5MnW.jpg", "production_countries": [{"iso_3166_1": "KP", "name": "North Korea"}], "revenue": 0, "overview": "Kyung-chul (Choi Min-sik) is a dangerous psychopath who kills for pleasure. He has committed infernal serial murders in diabolic ways that one cannot even imagine and his victims range from young women to even children. The police have chased him for a long time, but were unable to catch him. One day, Joo-yeon, daughter of a retired police chief becomes his prey and is found dead in a horrific state. Her fiance Soo-hyun (Lee Byung-hun), a top secret agent, decides to track down the murderer himself. He promises himself that he will do everything in his power to take bloody vengeance against the killer, even if it means that he must become a monster himself to get this monstrous and inhumane killer.", "video": false, "id": 49797, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I Saw the Devil", "tagline": "Abandon all compassion.", "vote_count": 113, "homepage": "http://www.isawthedevilmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1588170", "adult": false, "backdrop_path": "/hZ9jN4wdFT9PQQORX68kLJqrOrH.jpg", "production_companies": [{"name": "Softbank Ventures", "id": 10922}, {"name": "Showbox/Mediaplex", "id": 10923}, {"name": "Peppermint & Company", "id": 10924}, {"name": "Siz Entertainment", "id": 10925}], "release_date": "2010-08-12", "popularity": 0.331763552068025, "original_title": "\uc545\ub9c8\ub97c \ubcf4\uc558\ub2e4", "budget": 0, "cast": [{"name": "Lee Byung-hun", "character": "Kim Soo-hyeon", "id": 25002, "credit_id": "530f2bba92514173900008ef", "cast_id": 35, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 10}, {"name": "Choi Min-sik", "character": "Kyung-chul", "id": 64880, "credit_id": "530f2e0b925141733e00095c", "cast_id": 36, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 11}, {"name": "Jeon Kuk-Hwan", "character": "Squad chief Jang", "id": 20264, "credit_id": "53c0ef5c0e0a261579008649", "cast_id": 44, "profile_path": "/hIDrEv3wmmYF9zddva0MfxIzaSW.jpg", "order": 12}, {"name": "Cheon Ho-Jin", "character": "Section chief Oh", "id": 87090, "credit_id": "53c0ef7e0e0a261582008886", "cast_id": 45, "profile_path": "/u2In8XuyPOdA0lLvY7LIKY9Qjqc.jpg", "order": 13}, {"name": "Oh San-ha", "character": "Joo-yeon", "id": 1340711, "credit_id": "53c0ef980e0a26158f00837e", "cast_id": 46, "profile_path": "/ftSLVWgILvBYEoFKEniWHSoKG82.jpg", "order": 14}, {"name": "Kim Yoon-seo", "character": "Se-yeon", "id": 1340712, "credit_id": "53c0efb70e0a261576008a0a", "cast_id": 47, "profile_path": "/preioTKU0gJf9fML5UjCE68hP2Y.jpg", "order": 15}, {"name": "Nam Bo-ra", "character": "", "id": 561199, "credit_id": "53c75626c3a3686251002f7b", "cast_id": 48, "profile_path": "/y7gOTZG36zQq1FyWnjjFL9VmZLb.jpg", "order": 16}], "directors": [{"name": "Kim Jee-woon", "department": "Directing", "job": "Director", "credit_id": "530f308b92514173550008ad", "profile_path": "/tqZ0HprSHXrxGC4V7R4uA1BCLM4.jpg", "id": 543568}], "vote_average": 7.3, "runtime": 141}, "646": {"poster_path": "/4oihF4FCuBHUHqkrul9VwJ5j4I9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JM", "name": "Jamaica"}], "revenue": 59600000, "overview": "When Strangways, the British SIS Station Chief in Jamaica goes missing, MI6 send James Bond - Agent 007 to investigate. His investigation leads him to the mysterious Crab Key; the secret base of Dr No who he suspects is trying to sabotage the American space program using a radio beam. With the assistance of local fisherman Quarrel, who had been helping Strangways, Bond sneaks onto Crab Key where he meets the beautiful Honey Ryder. Can the three of them defeat an army of henchmen and a \"fire breathing dragon\" in order to stop Dr No, save the space program and get revenge for Strangways? Dr. No is the first film of legendary James Bond series starring Sean Connery in the role of Fleming's British super agent.", "video": false, "id": 646, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Dr. No", "tagline": "NOW meet the most extraordinary gentleman spy in all fiction!", "vote_count": 292, "homepage": "http://www.mgm.com/view/movie/566/Dr.-No/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0055928", "adult": false, "backdrop_path": "/bplDiT5JhaXf9S5arO8g5QsFtDi.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1962-10-05", "popularity": 1.85706453050015, "original_title": "Dr. No", "budget": 1100000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4263c3a36847f801aa9d", "cast_id": 12, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Ursula Andress", "character": "Honey Ryder", "id": 9871, "credit_id": "52fe4263c3a36847f801aaa1", "cast_id": 13, "profile_path": "/omY7AbTTKODYR730aHtB9UNaGM0.jpg", "order": 1}, {"name": "Joseph Wiseman", "character": "Dr. No", "id": 9872, "credit_id": "52fe4263c3a36847f801aaa5", "cast_id": 14, "profile_path": "/3BigmJ5RUpS2uGCZyYxNL7mnbfW.jpg", "order": 2}, {"name": "Jack Lord", "character": "Felix Leiter", "id": 9873, "credit_id": "52fe4263c3a36847f801aaa9", "cast_id": 15, "profile_path": "/b85Nm0YGKByPEiKuxHRi5ItrdAD.jpg", "order": 3}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4263c3a36847f801aaad", "cast_id": 16, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 4}, {"name": "Anthony Dawson", "character": "Professor Dent", "id": 7682, "credit_id": "52fe4263c3a36847f801aab1", "cast_id": 17, "profile_path": "/yzh26eyKJBtORjLlz8nyLQT7C1d.jpg", "order": 5}, {"name": "Zena Marshall", "character": "Miss Taro", "id": 9875, "credit_id": "52fe4263c3a36847f801aab5", "cast_id": 18, "profile_path": "/bRWYvcVasxg5B2lbP9MKcLfUmol.jpg", "order": 6}, {"name": "John Kitzmiller", "character": "Quarrel", "id": 9876, "credit_id": "52fe4263c3a36847f801aab9", "cast_id": 19, "profile_path": "/1CnMhVqNMAvCD8I7gXWDk9tV6dC.jpg", "order": 7}, {"name": "Eunice Gayson", "character": "Sylvia Trench", "id": 9877, "credit_id": "52fe4263c3a36847f801aabd", "cast_id": 20, "profile_path": "/vR2lR94QjJNK7fJq0lvarykBZ0I.jpg", "order": 8}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4263c3a36847f801aac1", "cast_id": 21, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 9}, {"name": "Peter Burton", "character": "Major Boothroyd", "id": 9879, "credit_id": "5400ff750e0a2658e9003176", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "Terence Young", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801aa5d", "profile_path": "/vXufUCM2ybRgYggqxoV5479a03Y.jpg", "id": 9855}], "vote_average": 6.4, "runtime": 110}, "647": {"poster_path": "/pOHBhcZMLlVKALG098EOaobdeVX.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Two years have passed since the final battle with Sephiroth. Though Midgar, city of mako, city of prosperity, has been reduced to ruins, its people slowly but steadily walk the road to reconstruction. However, a mysterious illness called Geostigma torments them. With no cure in sight, it brings death to the afflicted, one after another, robbing the people of their fledgling hope.", "video": false, "id": 647, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Final Fantasy VII: Advent Children", "tagline": "Is it for the children, for a memory, or for himself?", "vote_count": 98, "homepage": "http://na.square-enix.com/ff7acc/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/x6HZaopJw26YnjBZjo06sWmPEPM.jpg", "id": 140760, "name": "Final Fantasy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0385700", "adult": false, "backdrop_path": "/rEu14LqEdPkgmlA4K4AUAYk5tuQ.jpg", "production_companies": [{"name": "Square Enix", "id": 10038}], "release_date": "2005-09-14", "popularity": 0.6692428529926, "original_title": "Final Fantasy VII: Advent Children", "budget": 0, "cast": [{"name": "Takahiro Sakurai", "character": "Cloud Strife", "id": 9705, "credit_id": "52fe4264c3a36847f801ac61", "cast_id": 46, "profile_path": "/1e96Onq8R5EDweBIuLHjZ2Rhe7K.jpg", "order": 0}, {"name": "Toshiyuki Morikawa", "character": "Sephiroth", "id": 9706, "credit_id": "52fe4264c3a36847f801ac65", "cast_id": 47, "profile_path": "/aAmwmPXJBnwTnvWVDx74OdNGo8q.jpg", "order": 1}, {"name": "Ayumi Ito", "character": "Tifa Lockhart", "id": 9707, "credit_id": "52fe4264c3a36847f801ac69", "cast_id": 48, "profile_path": "/8zHQwoRH4TmujlbHYrXWt7KrzZD.jpg", "order": 2}, {"name": "Keiji Fujiwara", "character": "Reno", "id": 9708, "credit_id": "52fe4264c3a36847f801ac6d", "cast_id": 49, "profile_path": "/1xi0CRDIMYlOGDF8i88vWnY0HDe.jpg", "order": 3}, {"name": "Kyosuke Ikeda", "character": "Denzel", "id": 9709, "credit_id": "52fe4264c3a36847f801ac71", "cast_id": 50, "profile_path": "/ouuJIRX3yW5zVG1YUJ23opff8MO.jpg", "order": 4}, {"name": "Megumi Toyoguchi", "character": "Elena", "id": 9710, "credit_id": "52fe4264c3a36847f801ac75", "cast_id": 51, "profile_path": "/dYeAMWno2dcV07Lg5kHe4oiVVOT.jpg", "order": 5}, {"name": "Maaya Sakamoto", "character": "Aerith Gainsborough", "id": 9711, "credit_id": "52fe4264c3a36847f801ac79", "cast_id": 52, "profile_path": "/wEJDH3mzF4cLhUfNQKt8YfhpLjZ.jpg", "order": 6}, {"name": "Rina Mogami", "character": "Girl", "id": 9712, "credit_id": "52fe4264c3a36847f801ac7d", "cast_id": 53, "profile_path": "/c7xuQVnUfdtuDhEEEQEdLPx8YGR.jpg", "order": 7}, {"name": "Kazuyuki Yama", "character": "Cid Highwind", "id": 9713, "credit_id": "52fe4264c3a36847f801ac81", "cast_id": 54, "profile_path": null, "order": 8}, {"name": "Showtaro Morikubo", "character": "Kadaj", "id": 9714, "credit_id": "52fe4264c3a36847f801ac85", "cast_id": 55, "profile_path": "/x7OLK5qYD6qOfRL2S6WZHV8Iulj.jpg", "order": 9}, {"name": "Yumi Kakazu", "character": "Yuffie Kisaragi", "id": 9715, "credit_id": "52fe4264c3a36847f801ac89", "cast_id": 56, "profile_path": "/9CXM6VhES0LA6GdasISeDHZzszH.jpg", "order": 10}, {"name": "Kenji Nomura", "character": "Loz", "id": 9716, "credit_id": "52fe4264c3a36847f801ac8d", "cast_id": 57, "profile_path": "/pdANkxoZJxAREu8ldXX7C96q3Ou.jpg", "order": 11}, {"name": "Masachika Ichimura", "character": "Red XIII", "id": 9717, "credit_id": "52fe4264c3a36847f801ac91", "cast_id": 58, "profile_path": "/PewyrEczJmfsef4FB8zln50Hre.jpg", "order": 12}, {"name": "Taiten Kusunoki", "character": "Rude", "id": 9718, "credit_id": "52fe4264c3a36847f801ac95", "cast_id": 59, "profile_path": "/z7UJiXiTp7mek7n8NnP3sjQPfdR.jpg", "order": 13}, {"name": "T\u00f4ru \u00d4kawa", "character": "Rufus Shinra", "id": 9719, "credit_id": "52fe4264c3a36847f801ac99", "cast_id": 60, "profile_path": "/uHMclppYBmWxivA2Gkwr1bwYkKw.jpg", "order": 14}, {"name": "Hideo Ishikawa", "character": "Cait Sith", "id": 9720, "credit_id": "52fe4264c3a36847f801ac9d", "cast_id": 61, "profile_path": "/c5QcknPSLhVRTgMcg4ECESDKQt0.jpg", "order": 15}, {"name": "Junichi Suwabe", "character": "Tseng", "id": 9721, "credit_id": "52fe4264c3a36847f801aca1", "cast_id": 62, "profile_path": "/3cG4BeHM9gakUdOYO6WpZJAt1A2.jpg", "order": 16}, {"name": "Sh\u00f4go Suzuki", "character": "Vincent Valentine", "id": 9722, "credit_id": "52fe4264c3a36847f801aca5", "cast_id": 63, "profile_path": "/en8z5qzTB827Xsm1kz5OApidk9.jpg", "order": 17}, {"name": "Masahiro Kobayashi", "character": "Barret Wallace", "id": 9723, "credit_id": "52fe4264c3a36847f801aca9", "cast_id": 64, "profile_path": "/bp14ujBRpiiTFTNNbgg3ztoBA0f.jpg", "order": 18}, {"name": "Miyuu Tsuzuhara", "character": "Marlene Wallace", "id": 9724, "credit_id": "52fe4264c3a36847f801acad", "cast_id": 65, "profile_path": "/qMkYFQHrP6G5MlYvr9eiH36BjPV.jpg", "order": 19}, {"name": "Y\u016bji Kishi", "character": "Yazoo", "id": 9725, "credit_id": "52fe4264c3a36847f801acb1", "cast_id": 66, "profile_path": "/nF6xspgZgxy8RT8hrueN1zmy8Rc.jpg", "order": 20}, {"name": "Kenichi Suzumura", "character": "Zack", "id": 9726, "credit_id": "52fe4264c3a36847f801acb5", "cast_id": 67, "profile_path": "/9UJxKPzQqhRhjQ9mzzwlho51vG6.jpg", "order": 21}], "directors": [{"name": "Tetsuya Nomura", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801ab55", "profile_path": "/vAYJYfS6mij9YnE1LcAbNvQuKv4.jpg", "id": 9660}, {"name": "Takeshi Nozue", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801ab5b", "profile_path": "/5FDWOpVI7RMRibe7778o0JhVxq3.jpg", "id": 9661}], "vote_average": 6.6, "runtime": 101}, "8840": {"poster_path": "/nXdAIa8q1YSoA3wZaTwPxjQxNBb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115267375, "overview": "In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.", "video": false, "id": 8840, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "DragonHeart", "tagline": "You will believe.", "vote_count": 124, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hRucBWgzCc7iA9avUE2k5gc7dkj.jpg", "poster_path": "/gG6mq5NZzGoUdYKgLduNGjo6ft9.jpg", "id": 169452, "name": "Dragonheart Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116136", "adult": false, "backdrop_path": "/8uuxCakfVvf5WflFacBHfwU3d8J.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1996-05-31", "popularity": 0.495288684753766, "original_title": "DragonHeart", "budget": 57000000, "cast": [{"name": "Dennis Quaid", "character": "Bowen", "id": 6065, "credit_id": "52fe44bfc3a36847f80a7a3d", "cast_id": 9, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "David Thewlis", "character": "King Einon", "id": 11207, "credit_id": "52fe44bfc3a36847f80a7a41", "cast_id": 10, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 1}, {"name": "Pete Postlethwaite", "character": "Gilbert of Glockenspur", "id": 4935, "credit_id": "52fe44bfc3a36847f80a7a45", "cast_id": 11, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 2}, {"name": "Dina Meyer", "character": "Kara", "id": 2133, "credit_id": "52fe44bfc3a36847f80a7a49", "cast_id": 12, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 3}, {"name": "Julie Christie", "character": "Queen Aislinn", "id": 1666, "credit_id": "52fe44bfc3a36847f80a7a4d", "cast_id": 13, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 4}, {"name": "Sean Connery", "character": "Draco (voice)", "id": 738, "credit_id": "52fe44bfc3a36847f80a7a51", "cast_id": 14, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 5}, {"name": "John Gielgud", "character": "King Arthur (voice) (uncredited)", "id": 11857, "credit_id": "52fe44bfc3a36847f80a7a55", "cast_id": 15, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 6}, {"name": "Lee Oakes", "character": "Young Einon", "id": 59075, "credit_id": "52fe44bfc3a36847f80a7a59", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Brian Thompson", "character": "Brok", "id": 2719, "credit_id": "52fe44bfc3a36847f80a7a5d", "cast_id": 17, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 8}, {"name": "Jason Isaacs", "character": "Lord Felton", "id": 11355, "credit_id": "52fe44bfc3a36847f80a7a61", "cast_id": 18, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 9}, {"name": "Wolf Christian", "character": "Hewe", "id": 260536, "credit_id": "52fe44bfc3a36847f80a7a6b", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Terry O'Neill", "character": "Redbeard", "id": 82410, "credit_id": "52fe44bfc3a36847f80a7a6f", "cast_id": 21, "profile_path": "/gJazxnZsm4sDavnP7gedgO7rtpw.jpg", "order": 11}, {"name": "Eva Vejm\u011blkov\u00e1", "character": "Felton's Minx", "id": 544311, "credit_id": "52fe44bfc3a36847f80a7a73", "cast_id": 22, "profile_path": "/xn2l8R9ESN74fsEYsTRYjPuYTal.jpg", "order": 12}, {"name": "Milan Bah\u00fal", "character": "Swamp Village Chief", "id": 1074679, "credit_id": "52fe44bfc3a36847f80a7a77", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Peter Hric", "character": "King Freyne", "id": 1074680, "credit_id": "52fe44bfc3a36847f80a7a7b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Sandra Kovacicova", "character": "Young Kara", "id": 1074681, "credit_id": "52fe44bfc3a36847f80a7a7f", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Kyle Cohen", "character": "Boy in Field", "id": 1074682, "credit_id": "52fe44bfc3a36847f80a7a83", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Thom Baker", "character": "Aislinn's Chess Partner", "id": 1074683, "credit_id": "52fe44bfc3a36847f80a7a87", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe44bfc3a36847f80a7a0f", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 6.0, "runtime": 103}, "651": {"poster_path": "/eOslMOtaPXgQEgVJ93U3KOLogGD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81600000, "overview": "One of the world's most acclaimed comedies, MASH focuses on three Korean War Army surgeons brilliantly brought to life by Donald Sutherland, Tom Skerritt and Elliott Gould. Though highly skilled and deeply dedicated, they adopt a hilarious, lunatic lifestyle as an antidote to the tragedies of their Mobile Army Surgical Hospital, and in the process infuriate Army bureaucrats. Robert Duvall, Gary Burghoff and Sally Kellerman co-star as a sanctimonious Major, an other-worldly Corporal, and a self-righteous yet lusty nurse.", "video": false, "id": 651, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "MASH", "tagline": "M*A*S*H Gives A D*A*M*N.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066026", "adult": false, "backdrop_path": "/8u2L2sHHAQVJ4xksOMzuYvL4SPx.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}], "release_date": "1970-01-25", "popularity": 0.62474473574741, "original_title": "MASH", "budget": 3500000, "cast": [{"name": "Donald Sutherland", "character": "Captain Benjamin Franklin 'Hawkeye' Pierce", "id": 55636, "credit_id": "52fe4264c3a36847f801af75", "cast_id": 17, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 0}, {"name": "Elliott Gould", "character": "Captain John Francis Xavier 'Trapper John' McIntyre", "id": 827, "credit_id": "52fe4264c3a36847f801af79", "cast_id": 18, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 1}, {"name": "Tom Skerritt", "character": "Captain Augustus Bedford 'Duke' Forrest", "id": 4139, "credit_id": "52fe4264c3a36847f801af7d", "cast_id": 19, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 2}, {"name": "Sally Kellerman", "character": "Major Margaret 'Hot Lips' O'Houlihan", "id": 9805, "credit_id": "52fe4264c3a36847f801af81", "cast_id": 20, "profile_path": "/5MeWRlE2F8S6tGiPx3hZHdDGVml.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Major Franklin Archimedes 'Frank' Burns", "id": 3087, "credit_id": "52fe4264c3a36847f801af85", "cast_id": 21, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Roger Bowen", "character": "Lt. Col. Henry Barymore Adlai Blake", "id": 9806, "credit_id": "52fe4264c3a36847f801af89", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Rene Auberjonois", "character": "Father Mulcahy", "id": 9807, "credit_id": "52fe4264c3a36847f801af8d", "cast_id": 23, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 6}, {"name": "David Arkin", "character": "SSgt. Wade Douglas Vollmer/PA Announcer", "id": 9808, "credit_id": "52fe4264c3a36847f801af91", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Jo Ann Pflug", "character": "Lt. Maria 'Dish' Schneider", "id": 9809, "credit_id": "52fe4264c3a36847f801af95", "cast_id": 25, "profile_path": "/bPT3KVtukqHEHX09cvpchtD70jK.jpg", "order": 8}, {"name": "Gary Burghoff", "character": "Cpl. Walter 'Radar' O'Reilly", "id": 9810, "credit_id": "52fe4264c3a36847f801af99", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Fred Williamson", "character": "Capt. Oliver Harmon 'Spearchucker' Jones", "id": 9811, "credit_id": "52fe4264c3a36847f801af9d", "cast_id": 27, "profile_path": "/n6CAXv0dbKvCyBfMvppdUmeAwt2.jpg", "order": 10}, {"name": "Michael Murphy", "character": "Capt. Ezekiel Bradbury 'Me Lai' Marston IV", "id": 4776, "credit_id": "52fe4264c3a36847f801afa1", "cast_id": 28, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 11}], "directors": [{"name": "Robert Altman", "department": "Directing", "job": "Director", "credit_id": "52fe4264c3a36847f801af23", "profile_path": "/wM4ZFeMU4fuLVuwvGsbAzdlAil3.jpg", "id": 9789}], "vote_average": 7.1, "runtime": 116}, "652": {"poster_path": "/edMlij7nw2NMla32xskDnzMCFBM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MT", "name": "Malta"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 497409852, "overview": "In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnom to help him get her back. Agamemnon sees this as an opportunity for power. So they set off with 1,000 ships holding 50,000 Greeks to Troy. With the help of Achilles, the Greeks are able to fight the never before defeated Trojans.", "video": false, "id": 652, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Troy", "tagline": "For passion.", "vote_count": 789, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0332452", "adult": false, "backdrop_path": "/lIyNUZbIeEwWpaWXAO5gnciB8Dq.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Radiant Productions", "id": 18990}, {"name": "Helena Productions", "id": 19107}, {"name": "Latina Pictures", "id": 19108}, {"name": "Plan B Entertainment", "id": 81}, {"name": "Nimar Studios", "id": 7636}], "release_date": "2004-05-13", "popularity": 1.70153885902546, "original_title": "Troy", "budget": 175000000, "cast": [{"name": "Brad Pitt", "character": "Achilles", "id": 287, "credit_id": "52fe4264c3a36847f801b083", "cast_id": 43, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Paris", "id": 114, "credit_id": "52fe4264c3a36847f801b087", "cast_id": 44, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Eric Bana", "character": "Hector", "id": 8783, "credit_id": "52fe4264c3a36847f801b08b", "cast_id": 45, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 2}, {"name": "Brian Cox", "character": "King Agamemnon", "id": 1248, "credit_id": "52fe4264c3a36847f801b08f", "cast_id": 46, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Sean Bean", "character": "Odysseus", "id": 48, "credit_id": "52fe4264c3a36847f801b093", "cast_id": 47, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "Menelaos", "id": 2039, "credit_id": "52fe4264c3a36847f801b097", "cast_id": 48, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "Diane Kruger", "character": "Helena", "id": 9824, "credit_id": "52fe4264c3a36847f801b09b", "cast_id": 49, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 6}, {"name": "Peter O'Toole", "character": "Priam", "id": 11390, "credit_id": "52fe4265c3a36847f801b09f", "cast_id": 50, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 7}, {"name": "Rose Byrne", "character": "Briseis", "id": 9827, "credit_id": "52fe4265c3a36847f801b0a3", "cast_id": 51, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 8}, {"name": "Saffron Burrows", "character": "Andromache", "id": 9825, "credit_id": "52fe4265c3a36847f801b0a7", "cast_id": 52, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 9}, {"name": "Garrett Hedlund", "character": "Patroclos", "id": 9828, "credit_id": "52fe4265c3a36847f801b0ab", "cast_id": 53, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 10}, {"name": "Vincent Regan", "character": "Eudorus", "id": 9831, "credit_id": "52fe4265c3a36847f801b0af", "cast_id": 54, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 11}, {"name": "Julie Christie", "character": "Thetis", "id": 1666, "credit_id": "52fe4265c3a36847f801b0b3", "cast_id": 55, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 12}, {"name": "John Shrapnel", "character": "Nestor", "id": 940, "credit_id": "52fe4265c3a36847f801b0b7", "cast_id": 56, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 13}, {"name": "Tyler Mane", "character": "Ajax", "id": 9832, "credit_id": "52fe4265c3a36847f801b0bb", "cast_id": 57, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 14}, {"name": "Nathan Jones", "character": "Boagrius", "id": 24898, "credit_id": "54ca547cc3a36879df00de19", "cast_id": 62, "profile_path": "/8JGCYgqGbFYXsp0wLbwSCEW0BUB.jpg", "order": 15}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe4264c3a36847f801affb", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 6.7, "runtime": 163}, "653": {"poster_path": "/uI3XYmCmQLC89UTghL2IZo3BJ09.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Vampire Count Orlok expresses interest in a new residence and real estate agent Hutter's wife. Silent classic based on the story \"Dracula.\"", "video": false, "id": 653, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Nosferatu", "tagline": "A symphony of horror", "vote_count": 59, "homepage": "http://www.nosferatumovie.com/cast_crew.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0013442", "adult": false, "backdrop_path": "/awK6eXK5vH47qyuDiXLkF5MEwrn.jpg", "production_companies": [{"name": "Jofa Atelier", "id": 1959}, {"name": "Prana-Film GmbH", "id": 1960}], "release_date": "1922-03-15", "popularity": 0.291406546354675, "original_title": "Nosferatu", "budget": 0, "cast": [{"name": "Max Schreck", "character": "Graf Orlok \"Nosferatu\"", "id": 9839, "credit_id": "52fe4265c3a36847f801b133", "cast_id": 11, "profile_path": "/3Ku1gw3cgdVJOc8d2wRxCEyvjyS.jpg", "order": 0}, {"name": "Gustav von Wangenheim", "character": "Hutter", "id": 9840, "credit_id": "52fe4265c3a36847f801b137", "cast_id": 12, "profile_path": "/vqCOzdRxXiMiMrlFib4QfD1rBS2.jpg", "order": 1}, {"name": "Greta Schr\u00f6der", "character": "Ellen Hutter", "id": 9841, "credit_id": "52fe4265c3a36847f801b13b", "cast_id": 13, "profile_path": null, "order": 2}, {"name": "Alexander Granach", "character": "Knock", "id": 9842, "credit_id": "52fe4265c3a36847f801b13f", "cast_id": 14, "profile_path": null, "order": 3}, {"name": "Georg H. Schnell", "character": "Westenra", "id": 9843, "credit_id": "52fe4265c3a36847f801b143", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Ruth Landshoff", "character": "Lucy Westenra", "id": 9844, "credit_id": "52fe4265c3a36847f801b147", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "John Gottowt", "character": "Professor Bulwer", "id": 9845, "credit_id": "52fe4265c3a36847f801b14b", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Gustav Botz", "character": "Professor Sievers, der Arzt", "id": 9846, "credit_id": "52fe4265c3a36847f801b14f", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Max Nemetz", "character": "Kapit\u00e4n der Demeter", "id": 9847, "credit_id": "52fe4265c3a36847f801b153", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Wolfgang Heinz", "character": "Matrose 1", "id": 9848, "credit_id": "52fe4265c3a36847f801b157", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Albert Venohr", "character": "Matrose 2", "id": 9849, "credit_id": "52fe4265c3a36847f801b15b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Guido Herzfeld", "character": "Wirt", "id": 46735, "credit_id": "52fe4265c3a36847f801b15f", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Hardy von Francois", "character": "Arzt im Hospital", "id": 46738, "credit_id": "52fe4265c3a36847f801b163", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Karl Etlinger", "character": "Matrose", "id": 46736, "credit_id": "52fe4265c3a36847f801b167", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Heinrich Witte", "character": "W\u00e4rter im Irrenhaus", "id": 46737, "credit_id": "52fe4265c3a36847f801b16b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Eric van Viele", "character": "Seemann", "id": 46739, "credit_id": "52fe4265c3a36847f801b16f", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Fanny Schreck", "character": "Krankenschwester im Hospital", "id": 46740, "credit_id": "52fe4265c3a36847f801b173", "cast_id": 27, "profile_path": null, "order": 16}], "directors": [{"name": "F.W. Murnau", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b0f9", "profile_path": "/1b1z38x56Hns01JDVA7DVw5ReGq.jpg", "id": 9076}], "vote_average": 7.1, "runtime": 82}, "654": {"poster_path": "/yUInNNpBUBJmn5TgUehCEOGmZDg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9600000, "overview": "Terry Malloy dreams about being a prize fighter, while tending his pigeons and running errands at the docks for Johnny Friendly, the corrupt boss of the dockers union. Terry witnesses a murder by two of Johnny's thugs, and later meets the dead man's sister and feels responsible for his death. She introduces him to Father Barry, who tries to force him to provide information for the courts that will smash the dock racketeers.", "video": false, "id": 654, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "On the Waterfront", "tagline": "The Man Lived by the Jungle Law of the Docks!", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0047296", "adult": false, "backdrop_path": "/zXp2ydvhO9qGzpIsb1CWeKnn5yg.jpg", "production_companies": [{"name": "Horizon Pictures", "id": 388}, {"name": "Columbia Pictures", "id": 5}], "release_date": "1954-06-22", "popularity": 0.805783964468061, "original_title": "On the Waterfront", "budget": 910000, "cast": [{"name": "Marlon Brando", "character": "Terry Malloy", "id": 3084, "credit_id": "52fe4265c3a36847f801b1df", "cast_id": 10, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 0}, {"name": "Karl Malden", "character": "Father Barry", "id": 9857, "credit_id": "52fe4265c3a36847f801b1e7", "cast_id": 12, "profile_path": "/ekqh6qVUFbYkIPFu2ZyTEcHi5gI.jpg", "order": 1}, {"name": "Lee J. Cobb", "character": "Johnny Friendly", "id": 5248, "credit_id": "52fe4265c3a36847f801b1e3", "cast_id": 11, "profile_path": "/535dOk8eUI97esLMunIXdG58jUu.jpg", "order": 2}, {"name": "Rod Steiger", "character": "Charlie Malloy", "id": 522, "credit_id": "52fe4265c3a36847f801b1ef", "cast_id": 14, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 3}, {"name": "Pat Henning", "character": "Timothy Dugan", "id": 9862, "credit_id": "52fe4265c3a36847f801b1f3", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Leif Erickson", "character": "Glover", "id": 9865, "credit_id": "52fe4265c3a36847f801b1f7", "cast_id": 16, "profile_path": "/e6jUlzMj1S0lf3M6fbDCGcq10M3.jpg", "order": 5}, {"name": "James Westerfield", "character": "Big Mac", "id": 9866, "credit_id": "52fe4265c3a36847f801b1fb", "cast_id": 17, "profile_path": "/s8Ian9N1Y5VVvB8C8OchOoQzRwk.jpg", "order": 6}, {"name": "Tony Galento", "character": "Truck", "id": 589670, "credit_id": "52fe4265c3a36847f801b211", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Tami Mauriello", "character": "Tillio", "id": 977544, "credit_id": "52fe4265c3a36847f801b215", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "John F. Hamilton", "character": "'Pop' Doyle", "id": 89837, "credit_id": "52fe4265c3a36847f801b219", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "John Heldabrand", "character": "Mott", "id": 88881, "credit_id": "52fe4265c3a36847f801b21d", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Rudy Bond", "character": "Moose", "id": 3143, "credit_id": "52fe4265c3a36847f801b221", "cast_id": 25, "profile_path": "/wNpO0orqR8rWz7tf11iKN0UhvGg.jpg", "order": 11}, {"name": "Don Blackman", "character": "Luke", "id": 976235, "credit_id": "52fe4265c3a36847f801b225", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Arthur Keegan", "character": "Jimmy", "id": 977392, "credit_id": "52fe4265c3a36847f801b229", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Abe Simon", "character": "Barney", "id": 1125637, "credit_id": "52fe4265c3a36847f801b22d", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Eva Marie Saint", "character": "Edie Doyle", "id": 2639, "credit_id": "52fe4265c3a36847f801b1eb", "cast_id": 13, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 15}, {"name": "Martin Balsam", "character": "Gillette (uncredited)", "id": 1936, "credit_id": "53124ad492514110130029b9", "cast_id": 29, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 16}, {"name": "Michael V. Gazzo", "character": "Bit Part (uncredited)", "id": 3172, "credit_id": "53124af4925141102a002936", "cast_id": 30, "profile_path": "/z50tLgbtVvIEI05uHO6udwOgwe3.jpg", "order": 17}, {"name": "Fred Gwynne", "character": "Slim (uncredited)", "id": 56266, "credit_id": "53124b0b9251410ffc002911", "cast_id": 31, "profile_path": "/xwDhOItVPzmBDfPqNMPHSSdXOMj.jpg", "order": 18}, {"name": "Pat Hingle", "character": "Jocko (uncredited)", "id": 3798, "credit_id": "53124b849251410ff1002895", "cast_id": 32, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 19}, {"name": "Scottie MacGregor", "character": "Mother of a Longshoreman (uncredited)", "id": 1297793, "credit_id": "53124b9e9251411042002a0c", "cast_id": 33, "profile_path": "/2aZYRyYqXktxD26erNUkza1pQrd.jpg", "order": 20}, {"name": "Nehemiah Persoff", "character": "Cab Driver (uncredited)", "id": 3160, "credit_id": "53124bbc9251411008002a50", "cast_id": 34, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 21}], "directors": [{"name": "Elia Kazan", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b1b1", "profile_path": "/aS3fMj5NfsKsTZLZmW84VHfX4YS.jpg", "id": 2746}], "vote_average": 8.2, "runtime": 108}, "655": {"poster_path": "/vbtDskCLmlDKtzpqdiJYszBhKY2.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2181987, "overview": "A man wanders out of the desert not knowing who he is. His brother finds him, and helps to pull his memory back of the life he led before he walked out on his family and disappeared four years earlier.", "video": false, "id": 655, "genres": [{"id": 18, "name": "Drama"}], "title": "Paris, Texas", "tagline": "A place for dreams. A place for heartbreak. A place to pick up the pieces.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087884", "adult": false, "backdrop_path": "/rgLcOj2vDV9DItDcgYPUuJaVT7F.jpg", "production_companies": [{"name": "Argos Films", "id": 6116}, {"name": "Road Movies Filmproduktion", "id": 8366}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Channel Four Films", "id": 181}, {"name": "Pro-ject Filmproduktion", "id": 1448}], "release_date": "1984-11-02", "popularity": 0.986490130985515, "original_title": "Paris, Texas", "budget": 1746964, "cast": [{"name": "Harry Dean Stanton", "character": "Travis", "id": 5048, "credit_id": "52fe4265c3a36847f801b2af", "cast_id": 16, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 0}, {"name": "Nastassja Kinski", "character": "Jane", "id": 2630, "credit_id": "52fe4265c3a36847f801b2b3", "cast_id": 17, "profile_path": "/mBVK2zqBSimP1NQN6BvBubZotxg.jpg", "order": 1}, {"name": "Dean Stockwell", "character": "Walt", "id": 923, "credit_id": "52fe4265c3a36847f801b2b7", "cast_id": 18, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 2}, {"name": "Hunter Carson", "character": "Hunter", "id": 9892, "credit_id": "52fe4265c3a36847f801b2bb", "cast_id": 19, "profile_path": null, "order": 3}, {"name": "Aurore Cl\u00e9ment", "character": "Anne", "id": 9893, "credit_id": "52fe4265c3a36847f801b2bf", "cast_id": 20, "profile_path": "/i6p9msKzKG1P9I2QcCk3h3vuO5F.jpg", "order": 4}, {"name": "Bernhard Wicki", "character": "Doctor Ulmer", "id": 9894, "credit_id": "52fe4265c3a36847f801b2c3", "cast_id": 21, "profile_path": "/kWBdiWLhjdFDMV953W5xhFyHTxv.jpg", "order": 5}, {"name": "John Lurie", "character": "Slater", "id": 6394, "credit_id": "52fe4265c3a36847f801b2d9", "cast_id": 25, "profile_path": "/izPEjdTrWUy3gPEdJ8f2OOnBW3f.jpg", "order": 6}], "directors": [{"name": "Wim Wenders", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b263", "profile_path": "/l6cYWEsCx3HTH8eo6fv9mCCn5QX.jpg", "id": 2303}], "vote_average": 7.4, "runtime": 147}, "8848": {"poster_path": "/8GfGrGYtIHsqMfVpPgX1PDWCESc.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30028592, "overview": "Martine offers Terry a lead on a foolproof bank hit on London's Baker Street. She targets a roomful of safe deposit boxes worth millions in cash and jewelry. But Terry and his crew don't realize the boxes also contain a treasure trove of dirty secrets - secrets that will thrust them into a deadly web of corruption and illicit scandal.", "video": false, "id": 8848, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Bank Job", "tagline": "The true story of a heist gone wrong... in all the right ways.", "vote_count": 230, "homepage": "http://thebankjobmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0200465", "adult": false, "backdrop_path": "/h3aTGDGZly8ee9EHxIjIK7UaKf2.jpg", "production_companies": [{"name": "Omnilab Media", "id": 2729}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Relativity Media", "id": 7295}, {"name": "Skyline (Baker St)", "id": 37774}, {"name": "Atlas Entertainment", "id": 507}], "release_date": "2008-02-28", "popularity": 0.773324317754226, "original_title": "The Bank Job", "budget": 20000000, "cast": [{"name": "Jason Statham", "character": "Terry Leather", "id": 976, "credit_id": "52fe44c0c3a36847f80a7f49", "cast_id": 17, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Saffron Burrows", "character": "Martine Love", "id": 9825, "credit_id": "52fe44c0c3a36847f80a7f4d", "cast_id": 18, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 1}, {"name": "Stephen Campbell Moore", "character": "Kevin Swain", "id": 55467, "credit_id": "52fe44c0c3a36847f80a7f51", "cast_id": 19, "profile_path": "/9LPG6fCe2ct82Io5zI8iyvJ8NsP.jpg", "order": 2}, {"name": "Daniel Mays", "character": "Dave Shilling", "id": 1670, "credit_id": "52fe44c0c3a36847f80a7f55", "cast_id": 20, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 3}, {"name": "James Faulkner", "character": "Guy Singer", "id": 9140, "credit_id": "52fe44c0c3a36847f80a7f59", "cast_id": 21, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 4}, {"name": "Alki David", "character": "Bambas", "id": 56097, "credit_id": "52fe44c0c3a36847f80a7f5d", "cast_id": 22, "profile_path": "/tYa8Lr0qtUEiqOrTF3sg3ghcabt.jpg", "order": 5}, {"name": "Michael Jibson", "character": "Eddie Burton", "id": 56098, "credit_id": "52fe44c0c3a36847f80a7f61", "cast_id": 23, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 6}, {"name": "Richard Lintern", "character": "Tim Everett", "id": 2968, "credit_id": "52fe44c0c3a36847f80a7f65", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Don Gallagher", "character": "Gerald Pyke", "id": 56099, "credit_id": "52fe44c0c3a36847f80a7f69", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "David Suchet", "character": "Lew Vogel", "id": 20277, "credit_id": "52fe44c0c3a36847f80a7f6d", "cast_id": 26, "profile_path": "/z0MuDGLfLLLKhwmbXCErxedHtQ9.jpg", "order": 9}, {"name": "Alistair Petrie", "character": "Phillip Lisle", "id": 56100, "credit_id": "52fe44c0c3a36847f80a7f71", "cast_id": 27, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 10}, {"name": "Gerard Horan", "character": "Roy Given", "id": 56101, "credit_id": "52fe44c0c3a36847f80a7f75", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Peter de Jersey", "character": "Michael X", "id": 56102, "credit_id": "52fe44c0c3a36847f80a7f79", "cast_id": 29, "profile_path": "/srE760UaLCIwSj5IpPxjR7rNLux.jpg", "order": 12}, {"name": "Georgia Taylor", "character": "Ingrid", "id": 55473, "credit_id": "52fe44c0c3a36847f80a7f7d", "cast_id": 30, "profile_path": "/jRHDCLH9v3OaU3nFE4loRJoh5J6.jpg", "order": 13}, {"name": "Hattie Morahan", "character": "Gale Benson", "id": 56103, "credit_id": "52fe44c0c3a36847f80a7f81", "cast_id": 31, "profile_path": "/2GBNGjw5wK2bRBM6TJ6gustXrEE.jpg", "order": 14}, {"name": "Keeley Hawes", "character": "Wendy Leather", "id": 22809, "credit_id": "52fe44c0c3a36847f80a7f85", "cast_id": 32, "profile_path": "/l6gt960OMUsX72Ytv2AkogldjNn.jpg", "order": 15}, {"name": "Peter Bowles", "character": "Miles Urquhart", "id": 15202, "credit_id": "52fe44c0c3a36847f80a7f89", "cast_id": 33, "profile_path": "/hNwYfBMeGG1bYnuWOODogRnw7Ax.jpg", "order": 16}, {"name": "Craig Fairbrass", "character": "Nick Barton", "id": 51799, "credit_id": "52fe44c0c3a36847f80a7f8d", "cast_id": 34, "profile_path": "/1IZntbLumM3Ew5LbDaz7tJiISZw.jpg", "order": 17}, {"name": "Colin Salmon", "character": "Hakim Jamal", "id": 5414, "credit_id": "52fe44c0c3a36847f80a7f91", "cast_id": 35, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 18}, {"name": "Sharon Maughan", "character": "Sonia Bern", "id": 56104, "credit_id": "52fe44c0c3a36847f80a7f95", "cast_id": 36, "profile_path": "/9IAbrAhEe4GumEJlanFM6bb05OM.jpg", "order": 19}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe44c0c3a36847f80a7ef1", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 6.3, "runtime": 112}, "657": {"poster_path": "/xLj655bmXKMiFbUCQnKhz8xwezV.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 78898765, "overview": "James Bond is back and on the loose in exotic Istanbul looking for a super-secret coding machine. He's involved with a beautiful Russian spy and has the SPECTRE organization after him, including villainess Rosa Klebb - she of the killer shoe. Lots of exciting escapes but not an over reliance on the gadgetry of the later films. The second James Bond feature, thought by many to be the best.", "video": false, "id": 657, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "From Russia With Love", "tagline": "The world's masters of murder pull out all the stops to destroy Agent 007!", "vote_count": 257, "homepage": "http://www.mgm.com/view/movie/717/From-Russia-With-Love/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt0057076", "adult": false, "backdrop_path": "/f3wkOANYRwmzt8ATIl2hbRvF3hw.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1963-10-11", "popularity": 1.59910862176914, "original_title": "From Russia With Love", "budget": 2500000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4265c3a36847f801b397", "cast_id": 27, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Daniela Bianchi", "character": "Tatiana Romanova", "id": 9896, "credit_id": "52fe4265c3a36847f801b317", "cast_id": 1, "profile_path": "/d1CunVrPWvNQ0SJGkRfjGpCdV0g.jpg", "order": 1}, {"name": "Lotte Lenya", "character": "Rosa Klebb", "id": 9898, "credit_id": "52fe4265c3a36847f801b31b", "cast_id": 2, "profile_path": "/5qkH7EwNIIxYHeE1TfZfYIrRyVi.jpg", "order": 2}, {"name": "Robert Shaw", "character": "Donovan 'Red' Grant", "id": 8606, "credit_id": "52fe4265c3a36847f801b31f", "cast_id": 3, "profile_path": "/mLlgNTWRo3zGFzg4WHP9uzOH9Xn.jpg", "order": 3}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4265c3a36847f801b323", "cast_id": 4, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 4}, {"name": "Eunice Gayson", "character": "Sylvia Trench", "id": 9877, "credit_id": "52fe4265c3a36847f801b327", "cast_id": 5, "profile_path": "/vR2lR94QjJNK7fJq0lvarykBZ0I.jpg", "order": 5}, {"name": "Walter Gotell", "character": "Morzeny", "id": 6610, "credit_id": "52fe4265c3a36847f801b32b", "cast_id": 6, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 6}, {"name": "Francis de Wolff", "character": "Vavra", "id": 9899, "credit_id": "52fe4265c3a36847f801b32f", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Nadja Regin", "character": "Kerim's Girl", "id": 9901, "credit_id": "52fe4265c3a36847f801b333", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4265c3a36847f801b337", "cast_id": 10, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 9}, {"name": "Aliza Gur", "character": "Vida", "id": 9902, "credit_id": "52fe4265c3a36847f801b33b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4265c3a36847f801b393", "cast_id": 26, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Pedro Armend\u00e1riz", "character": "Ali Kerim Bey", "id": 96973, "credit_id": "52fe4265c3a36847f801b39b", "cast_id": 28, "profile_path": "/3Qgxk7T5oVthZNhrJdIworkxdw.jpg", "order": 12}, {"name": "Vladek Sheybal", "character": "Kronsteen", "id": 39036, "credit_id": "52fe4265c3a36847f801b39f", "cast_id": 29, "profile_path": "/ccutGFAuflgNyPXyXd6HE1pwZk5.jpg", "order": 13}, {"name": "George Pastell", "character": "Train Conductor", "id": 9900, "credit_id": "5404b54a0e0a2658d800a6d6", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Martine Beswick", "character": "Zora", "id": 9925, "credit_id": "5404b57a0e0a260c850030ef", "cast_id": 31, "profile_path": "/z5tUam9oJPDMkrgnPlVdN7UijUs.jpg", "order": 15}, {"name": "Jan Williams", "character": "Masseuse", "id": 41495, "credit_id": "5404b5ba0e0a26137900343d", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Peter Madden", "character": "McAdams", "id": 199919, "credit_id": "5404b5d00e0a2658f100a969", "cast_id": 33, "profile_path": null, "order": 17}], "directors": [{"name": "Terence Young", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b341", "profile_path": "/vXufUCM2ybRgYggqxoV5479a03Y.jpg", "id": 9855}], "vote_average": 6.6, "runtime": 115}, "658": {"poster_path": "/iEfMJFMAPIhwXvRsNhXc6E1CrU1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124900000, "overview": "Bond is in Miami on holiday when M tells him to observe Auric Goldfinger. Bond steals Goldfinger's girlfriend, Jill Masterson, but after being knocked out, he awakes to find her dead and covered in gold paint. Upon returning to London, Bond is told to further investigate Goldfinger who is believed to be smuggling gold out of Britain, but warned he will be replaced if he turns the mission into a personal vendetta. After failing to befriend Goldfinger, Bond is caught spying and taken to America as a captive. Bond learns of Goldfinger's plan, codenamed Operation Grand Slam, which involves attacking Fort Knox to increase his gold riches. Can 007 find a way to stop Goldfinger despite being held prisoner? This is the third film from the legendary James Bond series starring Sean Connery as the British super agent.", "video": false, "id": 658, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Goldfinger", "tagline": "Everything he touches turns into excitement!", "vote_count": 280, "homepage": "http://www.mgm.com/view/movie/760/Goldfinger/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0058150", "adult": false, "backdrop_path": "/sMUaAOTOs4rvK81GL52aqYGiO6b.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1964-09-17", "popularity": 1.47810803955428, "original_title": "Goldfinger", "budget": 3500000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4265c3a36847f801b3d9", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Honor Blackman", "character": "Pussy Galore", "id": 9907, "credit_id": "52fe4265c3a36847f801b3dd", "cast_id": 2, "profile_path": "/5LCImkVdJtOtahLOEH85oqmpM8R.jpg", "order": 1}, {"name": "Gert Fr\u00f6be", "character": "Auric Goldfinger", "id": 9908, "credit_id": "52fe4265c3a36847f801b3e1", "cast_id": 3, "profile_path": "/7sqA8qKg3N988PODnrhByiYOsEE.jpg", "order": 2}, {"name": "Shirley Eaton", "character": "Jill Masterson", "id": 9909, "credit_id": "52fe4265c3a36847f801b3e5", "cast_id": 4, "profile_path": "/spwHh09U8zg6I3Zzgj9Mc6SoTQs.jpg", "order": 3}, {"name": "Tania Mallet", "character": "Tilly Masterson", "id": 9910, "credit_id": "52fe4265c3a36847f801b3e9", "cast_id": 5, "profile_path": "/blxAnQg64T8dlGXraj0SN1lBX8t.jpg", "order": 4}, {"name": "Harold Sakata", "character": "Oddjob", "id": 9911, "credit_id": "52fe4265c3a36847f801b3ed", "cast_id": 6, "profile_path": "/fS90PpxE4ihCjpz7T9bgZkcllNH.jpg", "order": 5}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4265c3a36847f801b3f1", "cast_id": 7, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 6}, {"name": "Martin Benson", "character": "Martin Solo", "id": 9912, "credit_id": "52fe4265c3a36847f801b3f5", "cast_id": 8, "profile_path": "/x4AfPPRujgL6kfH8ObfefC7i9FY.jpg", "order": 7}, {"name": "Cec Linder", "character": "Felix Leiter", "id": 9913, "credit_id": "52fe4265c3a36847f801b3f9", "cast_id": 9, "profile_path": "/dXhMNdMow6iF0dF4vCHGDpbO9Di.jpg", "order": 8}, {"name": "Austin Willis", "character": "Simmons", "id": 9914, "credit_id": "52fe4265c3a36847f801b3fd", "cast_id": 10, "profile_path": "/iS3m6X3rfbdG1ZETyGdmIu6DvOx.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4265c3a36847f801b401", "cast_id": 11, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4265c3a36847f801b405", "cast_id": 12, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Burt Kwouk", "character": "Mr. Ling", "id": 21944, "credit_id": "52fe4265c3a36847f801b457", "cast_id": 26, "profile_path": "/7s1Sul5L6NU2TEfgLarBqrde65v.jpg", "order": 12}, {"name": "Nadja Regin", "character": "Bonita", "id": 9901, "credit_id": "54062e330e0a2658d800d56b", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Margaret Nolan", "character": "Dink", "id": 95129, "credit_id": "54062e610e0a264b0900291c", "cast_id": 28, "profile_path": "/9hSOhOKBPIJniI7XBtcs6IMv4Lo.jpg", "order": 14}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b40b", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 6.8, "runtime": 110}, "74387": {"poster_path": "/84mA0tnArvMdr5alUFVgfOypk7i.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4168144, "overview": "Doug Glatt, a slacker who discovers he has a talent for brawling is approached by a minor league hockey coach and invited to join the team as the \"muscle.\" Despite the fact that Glatt can't skate his best friend, Pat, convinces him to give it a shot, and Glatt becomes a hero to the team and their fans, until the league's reigning goon becomes threatened by Glatt's success and decides to even the score.", "video": false, "id": 74387, "genres": [{"id": 35, "name": "Comedy"}], "title": "Goon", "tagline": "Meet Doug, The Nicest Guy You'll Ever Fight.", "vote_count": 93, "homepage": "http://www.goonfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1456635", "adult": false, "backdrop_path": "/z6K8ClNAH9V7P9a005KTeoBEvg2.jpg", "production_companies": [{"name": "Caramel Films", "id": 6623}, {"name": "Don Carmody Productions", "id": 4253}], "release_date": "2011-09-10", "popularity": 0.313957222772292, "original_title": "Goon", "budget": 0, "cast": [{"name": "Seann William Scott", "character": "Doug Glatt", "id": 57599, "credit_id": "52fe48c8c3a368484e10aba1", "cast_id": 3, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 0}, {"name": "Jay Baruchel", "character": "Pat", "id": 449, "credit_id": "52fe48c8c3a368484e10ab9d", "cast_id": 2, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 1}, {"name": "Alison Pill", "character": "Eva", "id": 17486, "credit_id": "52fe48c8c3a368484e10aba9", "cast_id": 5, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Ross Rhea", "id": 23626, "credit_id": "52fe48c8c3a368484e10aba5", "cast_id": 4, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "Eugene Levy", "character": "Dr. Glatt", "id": 26510, "credit_id": "52fe48c8c3a368484e10abad", "cast_id": 6, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 4}, {"name": "Marc-Andr\u00e9 Grondin", "character": "Xavier Laflamme", "id": 71507, "credit_id": "52fe48c8c3a368484e10abb1", "cast_id": 7, "profile_path": "/birKqGsc5QPr8dVDfb0x5RUOi8s.jpg", "order": 5}, {"name": "Kim Coates", "character": "Ronnie Hortense", "id": 8335, "credit_id": "52fe48c8c3a368484e10abb5", "cast_id": 8, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 6}, {"name": "Nicholas Campbell", "character": "Rollie Hortense", "id": 14902, "credit_id": "52fe48c8c3a368484e10abb9", "cast_id": 9, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 7}, {"name": "Richard Clarkin", "character": "Gord Ogilvey", "id": 201074, "credit_id": "52fe48c8c3a368484e10abbd", "cast_id": 10, "profile_path": "/2qXRuSiHPHy8jU2UN3Nhh3ADISR.jpg", "order": 8}], "directors": [{"name": "Michael Dowse", "department": "Directing", "job": "Director", "credit_id": "52fe48c8c3a368484e10ab99", "profile_path": null, "id": 71280}], "vote_average": 6.0, "runtime": 92}, "660": {"poster_path": "/8SeeTUCs5ur4EqNg8q7BBlv4d28.jpg", "production_countries": [{"iso_3166_1": "BS", "name": "Bahamas"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141195658, "overview": "A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.", "video": false, "id": 660, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Thunderball", "tagline": "Look up! Look down! Look out!", "vote_count": 162, "homepage": "http://www.mgm.com/view/movie/2009/Thunderball/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0059800", "adult": false, "backdrop_path": "/qd0jrqxFLCKkNruPuJ7zXuQRpKG.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1965-12-28", "popularity": 0.9811175433948, "original_title": "Thunderball", "budget": 11000000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4265c3a36847f801b551", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Claudine Auger", "character": "Dominique 'Domino' Derval", "id": 9919, "credit_id": "52fe4265c3a36847f801b555", "cast_id": 2, "profile_path": "/lFw5lRx5oY5CKOJkzhQe9EPDy3C.jpg", "order": 1}, {"name": "Adolfo Celi", "character": "Emilio Largo", "id": 9920, "credit_id": "52fe4265c3a36847f801b559", "cast_id": 3, "profile_path": "/eAGVt87PlhJHQ0b0d7L6nRCjdqe.jpg", "order": 2}, {"name": "Luciana Paluzzi", "character": "Fiona Volpe", "id": 9921, "credit_id": "52fe4265c3a36847f801b55d", "cast_id": 4, "profile_path": "/wm2kQjIeg0wAfE4SYA9LqUu3fwA.jpg", "order": 3}, {"name": "Rik Van Nutter", "character": "Felix Leiter", "id": 9922, "credit_id": "52fe4265c3a36847f801b561", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Guy Doleman", "character": "Count Lippe", "id": 9923, "credit_id": "52fe4265c3a36847f801b565", "cast_id": 6, "profile_path": "/iHIzzV6Bdk8RRB1VCROVRpFJRqZ.jpg", "order": 5}, {"name": "Molly Peters", "character": "Patricia Fearing", "id": 9924, "credit_id": "52fe4265c3a36847f801b569", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Martine Beswick", "character": "Paula Caplan", "id": 9925, "credit_id": "52fe4265c3a36847f801b56d", "cast_id": 8, "profile_path": "/z5tUam9oJPDMkrgnPlVdN7UijUs.jpg", "order": 7}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4265c3a36847f801b571", "cast_id": 9, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4265c3a36847f801b575", "cast_id": 10, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4265c3a36847f801b579", "cast_id": 11, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Roland Culver", "character": "Foreign Secretary", "id": 9926, "credit_id": "52fe4265c3a36847f801b57d", "cast_id": 12, "profile_path": "/93CvXcv5dBXSjzYd5yf9qxxnvhj.jpg", "order": 11}, {"name": "Earl Cameron", "character": "Pinder", "id": 2246, "credit_id": "5404ada80e0a2658ee00a7a0", "cast_id": 29, "profile_path": "/4bDKeRU96RxpJ2Uv8x2yrjCmGks.jpg", "order": 12}, {"name": "Paul Stassino", "character": "Palazzi", "id": 125908, "credit_id": "5404adba0e0a2658f100a876", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Rose Alba", "character": "Madame Boitier", "id": 990420, "credit_id": "5404adcb0e0a2658f100a87b", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Philip Locke", "character": "Vargas", "id": 27321, "credit_id": "5404ade20e0a2658e200abc3", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "George Pravda", "character": "Kutze", "id": 30142, "credit_id": "5404adf50e0a260c8500300b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Edward Underdown", "character": "Air Vice Marshall", "id": 89208, "credit_id": "5404ae0b0e0a2658e200abc7", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Kevin McClory", "character": "Man Smoking at Nassau Casino (uncredited)", "id": 9951, "credit_id": "55181e309251416f0d00466a", "cast_id": 36, "profile_path": null, "order": 18}], "directors": [{"name": "Terence Young", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b583", "profile_path": "/vXufUCM2ybRgYggqxoV5479a03Y.jpg", "id": 9855}], "vote_average": 6.3, "runtime": 130}, "663": {"poster_path": "/veApHw5ARGHWf3ptKf30rOGFY9n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139352633, "overview": "Jigsaw and his apprentice Amanda are dead. Now, upon the news of Detective Kerry's murder, two seasoned FBI profilers, Agent Strahm and Agent Perez, arrive in the terrified community to assist the veteran Detective Hoffman in sifting through Jigsaw's latest grisly remains and piecing together the puzzle. However, when SWAT Commander Rigg is abducted and thrust into a game, the last officer untouched by Jigsaw has but ninety minutes to overcome a series of demented traps and save an old friend...or face the deadly consequences.", "video": false, "id": 663, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Saw IV", "tagline": "It's A Trap", "vote_count": 185, "homepage": "http://movies.break.com/saw4/", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0890870", "adult": false, "backdrop_path": "/yKATxJtGY67cXdOmlbWwW6EgPqn.jpg", "production_companies": [{"name": "Twisted Pictures", "id": 2061}, {"name": "Lions Gate Films", "id": 35}], "release_date": "2007-10-25", "popularity": 1.01365608180898, "original_title": "Saw IV", "budget": 10000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw/John", "id": 2144, "credit_id": "52fe4266c3a36847f801b7b1", "cast_id": 1, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Scott Patterson", "character": "Agent Strahm", "id": 50020, "credit_id": "52fe4266c3a36847f801b809", "cast_id": 22, "profile_path": "/tXrO1CHnuR6zjpHh2JXNtozW0XC.jpg", "order": 1}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "52fe4266c3a36847f801b80d", "cast_id": 23, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 2}, {"name": "Costas Mandylor", "character": "Hoffman", "id": 36055, "credit_id": "52fe4266c3a36847f801b811", "cast_id": 24, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 3}, {"name": "Lyriq Bent", "character": "Rigg", "id": 2687, "credit_id": "52fe4266c3a36847f801b815", "cast_id": 25, "profile_path": "/sPiFZOViNCGM9jWNDSr4G9FpWvD.jpg", "order": 4}, {"name": "Louis Ferreira", "character": "Art", "id": 51036, "credit_id": "52fe4266c3a36847f801b819", "cast_id": 26, "profile_path": "/mqJglT0g3tRMg5cNeJ7C6vdP4E.jpg", "order": 5}, {"name": "Athena Karkanis", "character": "Agent Perez", "id": 51037, "credit_id": "52fe4266c3a36847f801b81d", "cast_id": 27, "profile_path": "/jy7XvLoZDcO2iHMzxtntHNXXRd0.jpg", "order": 6}, {"name": "Simon Reynolds", "character": "Lamanna", "id": 51038, "credit_id": "52fe4266c3a36847f801b821", "cast_id": 28, "profile_path": "/xVUL9ylIi7Cad2vmJx2vb6RgnWr.jpg", "order": 7}, {"name": "Mike Realba", "character": "Fisk", "id": 28869, "credit_id": "52fe4266c3a36847f801b825", "cast_id": 29, "profile_path": "/9VSNPVauGKQlV1cXENaUI60OoZH.jpg", "order": 8}, {"name": "Marty Adams", "character": "Ivan", "id": 51039, "credit_id": "52fe4266c3a36847f801b829", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Sarain Boylan", "character": "Brenda", "id": 51040, "credit_id": "52fe4266c3a36847f801b82d", "cast_id": 31, "profile_path": "/fiXnOzZbpTubAMWR8umS6Ayykcy.jpg", "order": 10}, {"name": "Billy Otis", "character": "Cecill", "id": 51041, "credit_id": "52fe4266c3a36847f801b831", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Niamh Wilson", "character": "Corbett", "id": 51042, "credit_id": "52fe4266c3a36847f801b835", "cast_id": 33, "profile_path": "/rFsDF73n6ipaF15OSSKnAXBtlSt.jpg", "order": 12}, {"name": "Julian Richings", "character": "Vagrant", "id": 2320, "credit_id": "52fe4266c3a36847f801b839", "cast_id": 34, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 13}, {"name": "Joanne Boland", "character": "Crime Scene Photographer", "id": 99181, "credit_id": "52fe4266c3a36847f801b849", "cast_id": 37, "profile_path": "/i3m6r3qqI5Mefww6QVCqddWWYhZ.jpg", "order": 14}, {"name": "Donnie Wahlberg", "character": "Eric Matthews", "id": 2680, "credit_id": "54c590a79251412ece00256c", "cast_id": 43, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 15}, {"name": "Shawnee Smith", "character": "Amanda Young", "id": 2138, "credit_id": "54c5a24fc3a36878fb007fc4", "cast_id": 44, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 16}], "directors": [{"name": "Darren Lynn Bousman", "department": "Directing", "job": "Director", "credit_id": "52fe4266c3a36847f801b7b7", "profile_path": "/83Q6TkXPsq1VAqRPYb2NrqN3lI7.jpg", "id": 2675}], "vote_average": 5.9, "runtime": 93}, "8856": {"poster_path": "/4zmEPGKrD3sgjHZUs99tknEBaJy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115103979, "overview": "Mr. Miyagi and Daniel take a trip to Okinawa to visit Mr. Miyagi's dying father. After arriving Mr. Miyagi finds he still has feelings for an old love. This stirs up trouble with an old rival who he originally left Okinawa to avoid. In the mean time, Daniel encounters a new love and also makes some enemies.", "video": false, "id": 8856, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid, Part II", "tagline": "This time, the combat is real.", "vote_count": 90, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sq4c328WCIFIVD7B9ZGFRwDbUTH.jpg", "poster_path": "/o6h2F0C5eZOy50Q76fNYzc9mvvw.jpg", "id": 8580, "name": "The Karate Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091326", "adult": false, "backdrop_path": "/3iLQU4WFaclBOEQxGmWZ6cARhtX.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1986-06-18", "popularity": 0.47126915563224, "original_title": "The Karate Kid, Part II", "budget": 0, "cast": [{"name": "Ralph Macchio", "character": "Daniel LaRusso", "id": 2877, "credit_id": "52fe44c1c3a36847f80a82b1", "cast_id": 1, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 0}, {"name": "Pat Morita", "character": "Kesuke Miyagi", "id": 23915, "credit_id": "52fe44c1c3a36847f80a82b5", "cast_id": 2, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 1}, {"name": "Martin Kove", "character": "John Kreese", "id": 56117, "credit_id": "52fe44c1c3a36847f80a82b9", "cast_id": 3, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 2}, {"name": "Charlie Tanimoto", "character": "Miyagi's Father", "id": 56118, "credit_id": "52fe44c1c3a36847f80a82bd", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Yuji Okumoto", "character": "Chozen", "id": 56120, "credit_id": "52fe44c1c3a36847f80a82c1", "cast_id": 6, "profile_path": "/eVq0Od53a8JdfYLGHxkBboOtsIe.jpg", "order": 5}, {"name": "Joey Miyashima", "character": "Toshio", "id": 56121, "credit_id": "52fe44c1c3a36847f80a82c5", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Marc Hayashi", "character": "Taro", "id": 56122, "credit_id": "52fe44c1c3a36847f80a82c9", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Danny Kamekona", "character": "Sato", "id": 56123, "credit_id": "52fe44c1c3a36847f80a82cd", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "William Zabka", "character": "Johnny Lawrence", "id": 56124, "credit_id": "52fe44c1c3a36847f80a82d1", "cast_id": 10, "profile_path": "/kHcFbjmtF3CPK8uIDzKh5aj2bUv.jpg", "order": 9}, {"name": "Nobu McCarthy", "character": "Kumiko", "id": 29381, "credit_id": "52fe44c1c3a36847f80a82ff", "cast_id": 18, "profile_path": "/h5LOqYVtaPsDQ62GkFnCkjL1ak.jpg", "order": 10}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe44c1c3a36847f80a82d7", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 5.9, "runtime": 113}, "665": {"poster_path": "/syPMBvvZsADTTRu3UKuxO1Wflq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000000, "overview": "Ben-Hur is a 1959 epic film directed by William Wyler, the third film version of Lew Wallace's 1880 novel Ben-Hur: A Tale of the Christ. It premiered at Loew's State Theatre in New York City on November 18, 1959. The film went on to win a record of eleven Academy Awards, including Best Picture, a feat equaled only by Titanic in 1998 and The Lord of the Rings: The Return of the King in 2004. It was also the last film to win the Oscar for both Best Actor and Best Supporting Actor, until nearly 44 years later when Mystic River achieved the same feat.The movie revolves around a Jewish prince who is betrayed and sent into slavery by a Roman friend and how he regains his freedom and comes back for revenge.", "video": false, "id": 665, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ben-Hur", "tagline": "The entertainment experience of a lifetime.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0052618", "adult": false, "backdrop_path": "/kV0wiMw24cgac7BqcppgkmUSGIw.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1959-11-18", "popularity": 1.36380586968954, "original_title": "Ben-Hur", "budget": 15000000, "cast": [{"name": "Charlton Heston", "character": "Judah Ben-Hur", "id": 10017, "credit_id": "52fe4266c3a36847f801ba0f", "cast_id": 20, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 0}, {"name": "Jack Hawkins", "character": "Quintus Arrius", "id": 10018, "credit_id": "52fe4266c3a36847f801ba13", "cast_id": 21, "profile_path": "/7b6E24ZRLEPJwP0WQauXJPt41Fs.jpg", "order": 1}, {"name": "Haya Harareet", "character": "Esther", "id": 10019, "credit_id": "52fe4266c3a36847f801ba17", "cast_id": 22, "profile_path": "/2qrzQJJu79EZcuiTrA03QvYFFX2.jpg", "order": 2}, {"name": "Stephen Boyd", "character": "Messala", "id": 10020, "credit_id": "52fe4266c3a36847f801ba1b", "cast_id": 23, "profile_path": "/nZKyN3wtSqbPDXCDsQTXaLfORhP.jpg", "order": 3}, {"name": "Hugh Griffith", "character": "Scheich Ildirim", "id": 10021, "credit_id": "52fe4266c3a36847f801ba1f", "cast_id": 24, "profile_path": "/4ZMoHlCIRR9opLRRVpjL8HmfR6y.jpg", "order": 4}, {"name": "Martha Scott", "character": "Miriam", "id": 10022, "credit_id": "52fe4266c3a36847f801ba23", "cast_id": 25, "profile_path": "/ncuwnj0bgG62KlT8RSAhEdssamg.jpg", "order": 5}, {"name": "Cathy O'Donnell", "character": "Tirzah", "id": 10023, "credit_id": "52fe4266c3a36847f801ba27", "cast_id": 26, "profile_path": "/dyBLKR0uajqDrHNkZxU4tm94nT9.jpg", "order": 6}, {"name": "Frank Thring", "character": "Pontius Pilatus", "id": 10025, "credit_id": "52fe4266c3a36847f801ba2f", "cast_id": 28, "profile_path": "/3IGtuwC2BdyfYlPqwFw1Z2yI7TH.jpg", "order": 7}, {"name": "Sam Jaffe", "character": "Simonides", "id": 10024, "credit_id": "52fe4266c3a36847f801ba2b", "cast_id": 27, "profile_path": "/drxy1JkTOjhUhQnrFnepTmSHELd.jpg", "order": 8}, {"name": "Ady Berber", "character": "Malluch", "id": 10026, "credit_id": "52fe4266c3a36847f801ba33", "cast_id": 29, "profile_path": "/dNRIR9ThNvjikIHRE1LbJoJJRNb.jpg", "order": 9}, {"name": "Finlay Currie", "character": "Balthasar", "id": 10027, "credit_id": "52fe4266c3a36847f801ba37", "cast_id": 30, "profile_path": "/4ezZVGhlabVRIeavptVayV1VJGC.jpg", "order": 10}, {"name": "George Relph", "character": "Tiberius Caesar", "id": 10028, "credit_id": "52fe4266c3a36847f801ba3b", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Andr\u00e9 Morell", "character": "Sextus", "id": 10029, "credit_id": "52fe4266c3a36847f801ba3f", "cast_id": 32, "profile_path": "/slGvSoLbXaR1g23Rxj9N2WyKNWi.jpg", "order": 12}], "directors": [{"name": "William Wyler", "department": "Directing", "job": "Director", "credit_id": "52fe4266c3a36847f801b99f", "profile_path": "/AvxH2K3FDzui3je0wQZBKN3IUTt.jpg", "id": 10001}], "vote_average": 6.9, "runtime": 212}, "667": {"poster_path": "/zWVpC5tCDCvPfxFD4zpT316g9FQ.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 111584787, "overview": "A mysterious space craft kidnaps a Russian and American space capsule and brings the world on the verge of another World War. James Bond investigates the case in Japan and meets with his archenemy Blofeld. The fifth film from the legendary James Bond series starring Sean Connery as the British super agent.", "video": false, "id": 667, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "You Only Live Twice", "tagline": "You Only Live Twice...and Twice is the only way to live!", "vote_count": 142, "homepage": "http://www.mgm.com/view/movie/2347/You-Only-Live-Twice/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0062512", "adult": false, "backdrop_path": "/jahBdYTAGMJaEove9l9hzYpDKJD.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1967-06-12", "popularity": 1.3264225035239, "original_title": "You Only Live Twice", "budget": 9500000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4267c3a36847f801bb93", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Akiko Wakabayashi", "character": "Aki", "id": 10068, "credit_id": "52fe4267c3a36847f801bb97", "cast_id": 2, "profile_path": "/5LRNvjMLVJjWfESGbnfkhcoQ6fS.jpg", "order": 1}, {"name": "Karin Dor", "character": "Helga Brandt", "id": 10073, "credit_id": "52fe4267c3a36847f801bba7", "cast_id": 6, "profile_path": "/9xDG5844NJkAhrkIePatGvSwGls.jpg", "order": 2}, {"name": "Mie Hama", "character": "Kissy Suzuki", "id": 10070, "credit_id": "52fe4267c3a36847f801bb9b", "cast_id": 3, "profile_path": "/79z3Dz2KQCO5ru3SUqHFMx1Wate.jpg", "order": 3}, {"name": "Tetsur\u014d Tamba", "character": "Tiger Tanaka", "id": 10071, "credit_id": "52fe4267c3a36847f801bb9f", "cast_id": 4, "profile_path": "/uGToyc24HrsIrYJh4OEzbiqLa1F.jpg", "order": 4}, {"name": "Teru Shimada", "character": "Mr. Osato", "id": 10072, "credit_id": "52fe4267c3a36847f801bba3", "cast_id": 5, "profile_path": "/uuIjelPPEOUGcG68HNzme1xhUzc.jpg", "order": 5}, {"name": "Donald Pleasence", "character": "Ernst Stavro Blofeld", "id": 9221, "credit_id": "52fe4267c3a36847f801bbab", "cast_id": 7, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 6}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4267c3a36847f801bbaf", "cast_id": 8, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 7}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4267c3a36847f801bbb3", "cast_id": 9, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4267c3a36847f801bbb7", "cast_id": 10, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Charles Gray", "character": "Dikko Henderson", "id": 10074, "credit_id": "52fe4267c3a36847f801bbbb", "cast_id": 11, "profile_path": "/ejgGEya19V1jUBqixTz9D8xIjlR.jpg", "order": 10}, {"name": "Tsai Chin", "character": "Ling", "id": 10075, "credit_id": "52fe4267c3a36847f801bbbf", "cast_id": 12, "profile_path": "/2icB7ENqRRXxqzirAH3PupzTyqQ.jpg", "order": 11}, {"name": "Burt Kwouk", "character": "Spectre 3", "id": 21944, "credit_id": "52fe4267c3a36847f801bc05", "cast_id": 24, "profile_path": "/7s1Sul5L6NU2TEfgLarBqrde65v.jpg", "order": 12}, {"name": "Michael Chow", "character": "Spectre 4", "id": 21631, "credit_id": "5405a329c3a36843660082e1", "cast_id": 26, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 14}, {"name": "Ronald Rich", "character": "Hans", "id": 1231323, "credit_id": "5405a33bc3a3682d980069fa", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Jeanne Roland", "character": "Bond's Masseuse", "id": 199904, "credit_id": "5405a352c3a3685b74003b96", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Lewis Gilbert", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bbc5", "profile_path": "/9KAGNVy7N8jZKSFhrXe3Y28XwJt.jpg", "id": 10076}], "vote_average": 6.1, "runtime": 117}, "60307": {"poster_path": "/s3xslgv5fehmRiuGzo2xarD7HiH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72417394, "overview": "Back in middle school after summer vacation, Greg Heffley and his older brother Rodrick must deal with their parents' misguided attempts to have them bond.", "video": false, "id": 60307, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Diary of a Wimpy Kid: Rodrick Rules", "tagline": "Welcome to the next grade", "vote_count": 71, "homepage": "http://www.diaryofawimpykidmovie.com/", "belongs_to_collection": {"backdrop_path": "/hTbw2nLM44eE5m7ZIIXodcoDR1X.jpg", "poster_path": "/4Miizfzuds4ldROTff9vB0Z3EId.jpg", "id": 86110, "name": "Diary of a Wimpy Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1650043", "adult": false, "backdrop_path": "/zuPI1WSAoa4c2rLwslIZ3wmwo25.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Color Force", "id": 5420}], "release_date": "2011-03-25", "popularity": 0.377906254297826, "original_title": "Diary of a Wimpy Kid: Rodrick Rules", "budget": 21000000, "cast": [{"name": "Zachary Gordon", "character": "Greg Heffley", "id": 89819, "credit_id": "52fe461fc3a368484e080053", "cast_id": 1, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 0}, {"name": "Devon Bostick", "character": "Rodrick Heffley", "id": 90498, "credit_id": "52fe461fc3a368484e080057", "cast_id": 2, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 1}, {"name": "Rachael Harris", "character": "Susan Heffley", "id": 46074, "credit_id": "52fe461fc3a368484e08005b", "cast_id": 3, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 2}, {"name": "Robert Capron", "character": "Rowley Jefferson", "id": 111922, "credit_id": "52fe461fc3a368484e08005f", "cast_id": 5, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 3}, {"name": "Teryl Rothery", "character": "Mrs. Kohan", "id": 51800, "credit_id": "52fe461fc3a368484e080075", "cast_id": 9, "profile_path": "/6pk0WjBYccQod00koPBfLhWYp6B.jpg", "order": 4}, {"name": "Peyton List", "character": "Holly Hills", "id": 1254435, "credit_id": "53678244c3a36812310047c3", "cast_id": 10, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 5}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe461fc3a368484e080071", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}], "vote_average": 6.2, "runtime": 99}, "670": {"poster_path": "/fct7n9V10E8t8a7wOR90Ccw0i48.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 14980005, "overview": "Oldboy is the revenge drama from Director Park Chan-wook. Based on a Manga comic it depicts the suffering path of a man who must deal with the never ending torment of having unknowingly made someone his enemy.", "video": false, "id": 670, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Oldboy", "tagline": "15 years of imprisonment, five days of vengeance", "vote_count": 488, "homepage": "", "belongs_to_collection": {"backdrop_path": "/t5zZZOvXK8m5z1omMdEEWcL6ywl.jpg", "poster_path": "/ilyS5xmHzMtTq4ngVRNKvZEbSRo.jpg", "id": 4563, "name": "The Vengeance Trilogy"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0364569", "adult": false, "backdrop_path": "/qUxC2uJnHgGKq6Qvy4sYPxy0hoJ.jpg", "production_companies": [{"name": "Egg Films", "id": 398}, {"name": "Show East", "id": 399}], "release_date": "2003-12-21", "popularity": 1.06279754420388, "original_title": "\uc62c\ub4dc\ubcf4\uc774", "budget": 3000000, "cast": [{"name": "Choi Min-sik", "character": "Oh Dae-su", "id": 64880, "credit_id": "52fe4267c3a36847f801bd6f", "cast_id": 13, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 0}, {"name": "Yoo Ji-Tae", "character": "Lee Woo-jin", "id": 10112, "credit_id": "52fe4267c3a36847f801bd8b", "cast_id": 23, "profile_path": "/r1S6FLSQaM72zmSzwzpK4huORiU.jpg", "order": 1}, {"name": "Kang Hye-jung", "character": "Mi-do", "id": 1299317, "credit_id": "5319bbf2c3a3685c3d002dc7", "cast_id": 29, "profile_path": "/lF4wt0m522K79tgy18ykgDtmsAO.jpg", "order": 2}, {"name": "Kim Byeong-ok", "character": "Mr. Han", "id": 1299313, "credit_id": "5319bae792514177b4002634", "cast_id": 28, "profile_path": "/qDQBQQaMFTLuWtU2tdVlVymoqqa.jpg", "order": 3}, {"name": "Oh Dal-Su", "character": "Park Cheol-woong", "id": 77188, "credit_id": "52fe4267c3a36847f801bd83", "cast_id": 21, "profile_path": "/5DmhRuUQZlrjoaN6seg7Wut3elb.jpg", "order": 4}, {"name": "Ji Dae-Han", "character": "No Joo-Hwan", "id": 139491, "credit_id": "53c8bae6c3a3686e79000a1f", "cast_id": 30, "profile_path": "/8DFPhuW6XRHA0UXmpHm3tURdFvj.jpg", "order": 5}, {"name": "Oh Tae-kyung", "character": "Young Dae-su", "id": 77183, "credit_id": "52fe4267c3a36847f801bd7b", "cast_id": 18, "profile_path": "/kip9cffry8QGDepWC64WKh7StGa.jpg", "order": 6}, {"name": "Yoon Jin-Seo", "character": "Lee Soo-ah", "id": 117504, "credit_id": "52fe4267c3a36847f801bd8f", "cast_id": 24, "profile_path": "/xoRwGUyCIzAEwbWhOhpwFDpNIlu.jpg", "order": 8}, {"name": "Lee Seung-Shin", "character": "Yoo Hyung-ja", "id": 554330, "credit_id": "54972ac19251417315001bd4", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Lee Dae-yeon", "character": "Beggar", "id": 39258, "credit_id": "54972b16c3a3686af300616d", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Oh Kwang-rok", "character": "Suicidal Man", "id": 1146062, "credit_id": "54972b659251413f75004e2a", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Ahn Yeon-suk", "character": "Young Woo-jin", "id": 1402308, "credit_id": "54972c3692514132ed004e39", "cast_id": 35, "profile_path": null, "order": 13}], "directors": [{"name": "Park Chan-wook", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bd35", "profile_path": "/eFRXaT3RMoPemwDLNvfiFP0h8RX.jpg", "id": 10099}], "vote_average": 7.7, "runtime": 120}, "671": {"poster_path": "/lR4drT4VGfts32j9jYTZUc1a3Pa.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 976475550, "overview": "Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard -- with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths -- and about the villain who's to blame.", "video": false, "id": 671, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Philosopher's Stone", "tagline": "Let the Magic Begin.", "vote_count": 2567, "homepage": "http://harrypotter.warnerbros.com/harrypotterandthedeathlyhallows/mainsite/index.html", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0241527", "adult": false, "backdrop_path": "/uD93T339xX1k3fnDUaeopZBiajY.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2001-11-15", "popularity": 2.89226615532026, "original_title": "Harry Potter and the Philosopher's Stone", "budget": 125000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4267c3a36847f801be91", "cast_id": 27, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4267c3a36847f801beb9", "cast_id": 37, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "531736ea92514138c00010a3", "cast_id": 49, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Richard Harris", "character": "Albus Dumbledore", "id": 194, "credit_id": "52fe4267c3a36847f801be81", "cast_id": 23, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Professor Minerva McGonagall", "id": 10978, "credit_id": "52fe4267c3a36847f801be85", "cast_id": 24, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4267c3a36847f801be89", "cast_id": 25, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 5}, {"name": "Saunders Triplets", "character": "Baby Harry Potter", "id": 10979, "credit_id": "52fe4267c3a36847f801be8d", "cast_id": 26, "profile_path": "/y8j5WdO29Ln17uJyDnk88NGT4xE.jpg", "order": 6}, {"name": "Fiona Shaw", "character": "Aunt Petunia Dursley", "id": 10981, "credit_id": "52fe4267c3a36847f801be95", "cast_id": 28, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 7}, {"name": "Harry Melling", "character": "Dudley Dursley", "id": 10982, "credit_id": "52fe4267c3a36847f801be99", "cast_id": 29, "profile_path": "/2CXlvvGnnJlSHDRqcWxtcef8Dsf.jpg", "order": 8}, {"name": "Richard Griffiths", "character": "Uncle Vernon Dursley", "id": 10983, "credit_id": "52fe4267c3a36847f801be9d", "cast_id": 30, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 9}, {"name": "Derek Deadman", "character": "Tom", "id": 10984, "credit_id": "52fe4267c3a36847f801bea1", "cast_id": 31, "profile_path": "/xHyCqVvZUhgRgm4b70ZLLxWAqdR.jpg", "order": 10}, {"name": "Ian Hart", "character": "Professor Quirinus Quirrell", "id": 10985, "credit_id": "52fe4267c3a36847f801bea5", "cast_id": 32, "profile_path": "/35KSRxsFR20QGDhIrZn7G4Jkc2g.jpg", "order": 11}, {"name": "Ben Borowiecki", "character": "Angus", "id": 10986, "credit_id": "52fe4267c3a36847f801bea9", "cast_id": 33, "profile_path": "/nw7ksvq5B4ZWz3R2i9S734R18s0.jpg", "order": 12}, {"name": "Geraldine Somerville", "character": "Mrs. Lily Potter", "id": 10988, "credit_id": "52fe4267c3a36847f801beb5", "cast_id": 36, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 13}, {"name": "Verne Troyer", "character": "Griphook the Goblin", "id": 10987, "credit_id": "52fe4267c3a36847f801bead", "cast_id": 34, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 14}, {"name": "John Hurt", "character": "Mr. Ollivander", "id": 5049, "credit_id": "52fe4267c3a36847f801beb1", "cast_id": 35, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 15}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4267c3a36847f801bec1", "cast_id": 39, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 16}, {"name": "Chris Rankin", "character": "Percy Weasley", "id": 10992, "credit_id": "52fe4267c3a36847f801bec5", "cast_id": 40, "profile_path": "/3HEK2yr0YOEE7A5qf0SGs3VhUNz.jpg", "order": 17}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4267c3a36847f801bec9", "cast_id": 41, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 18}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4267c3a36847f801becd", "cast_id": 42, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 19}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4267c3a36847f801bed1", "cast_id": 43, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 20}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4267c3a36847f801bed5", "cast_id": 44, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 21}, {"name": "Zo\u00eb Wanamaker", "character": "Rolanda Hooch", "id": 20240, "credit_id": "52fe4267c3a36847f801bed9", "cast_id": 45, "profile_path": "/6R8oHxB9aQj7DjaBgrb4sO9SJJg.jpg", "order": 22}, {"name": "Rik Mayall", "character": "Peeves (scenes cut)", "id": 14469, "credit_id": "52fe4267c3a36847f801bedd", "cast_id": 46, "profile_path": "/wntKz7ORqD8mAsME6CFJdWTn6m.jpg", "order": 23}, {"name": "Leslie Phillips", "character": "The Sorting Hat", "id": 10655, "credit_id": "52fe4267c3a36847f801bee1", "cast_id": 48, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 24}, {"name": "Warwick Davis", "character": "Goblin Bank Teller / Professor Flitwick", "id": 11184, "credit_id": "54ecf79cc3a3680be60022eb", "cast_id": 50, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 25}, {"name": "John Cleese", "character": "Nearly Headless Nick", "id": 8930, "credit_id": "55021c2a9251413da800389e", "cast_id": 51, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 26}, {"name": "Sean Biggerstaff", "character": "Oliver Wood", "id": 11179, "credit_id": "5502218bc3a3685ba6003950", "cast_id": 52, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 27}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "55022362c3a3685bab003478", "cast_id": 53, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 28}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801be05", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.9, "runtime": 152}, "672": {"poster_path": "/aLOExwKoxdkdeBvVi7NkaFl5Wa5.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 876688482, "overview": "Everyone's favorite novice wizard, Harry Potter, continues his high-flying adventures at Hogwarts. This time around, Harry ignores warnings not to return to school - that is, if he values his life - to investigate a mysterious series of attacks with Ron and Hermione.", "video": false, "id": 672, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Chamber of Secrets", "tagline": "Hogwarts is back in session.", "vote_count": 1949, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0295297", "adult": false, "backdrop_path": "/avqzwKn89VetTEvAlBePt3Us6Al.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2002-11-03", "popularity": 2.06345645266458, "original_title": "Harry Potter and the Chamber of Secrets", "budget": 100000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4267c3a36847f801bfcb", "cast_id": 23, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4267c3a36847f801bfcf", "cast_id": 24, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "5317374d92514158d2001c3c", "cast_id": 52, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Kenneth Branagh", "character": "Gilderoy Lockhart", "id": 11181, "credit_id": "52fe4267c3a36847f801bfe3", "cast_id": 30, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 3}, {"name": "Richard Harris", "character": "Albus Dumbledore", "id": 194, "credit_id": "52fe4267c3a36847f801c017", "cast_id": 43, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4267c3a36847f801c013", "cast_id": 42, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4267c3a36847f801bfef", "cast_id": 33, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 6}, {"name": "Maggie Smith", "character": "Professor Minerva McGonagall", "id": 10978, "credit_id": "52fe4267c3a36847f801c027", "cast_id": 48, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 7}, {"name": "Heather Bleasdale", "character": "Mrs Granger", "id": 11178, "credit_id": "52fe4267c3a36847f801bfd7", "cast_id": 27, "profile_path": "/9IiyoWvIoKE6nMzqD4FQxF1p4Ro.jpg", "order": 8}, {"name": "Sean Biggerstaff", "character": "Oliver Wood", "id": 11179, "credit_id": "52fe4267c3a36847f801bfdb", "cast_id": 28, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 9}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4267c3a36847f801bfdf", "cast_id": 29, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 10}, {"name": "Veronica Clifford", "character": "Mrs Mason", "id": 11182, "credit_id": "52fe4267c3a36847f801bfe7", "cast_id": 31, "profile_path": "/n7k6VtGBZpWUHuDvMdNOKPKia6D.jpg", "order": 11}, {"name": "John Cleese", "character": "Nearly Headless Nick", "id": 8930, "credit_id": "52fe4267c3a36847f801bfeb", "cast_id": 32, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 12}, {"name": "Eleanor Columbus", "character": "Susan Bones", "id": 11183, "credit_id": "52fe4267c3a36847f801bff3", "cast_id": 34, "profile_path": "/faUiKSCt5oeXHvtn6DkdsQGivVl.jpg", "order": 13}, {"name": "Christian Coulson", "character": "Tom Marvolo Riddle", "id": 8444, "credit_id": "52fe4267c3a36847f801bff7", "cast_id": 35, "profile_path": "/dfbirdWAL0deUUtIV7GD1T1PGWp.jpg", "order": 14}, {"name": "Warwick Davis", "character": "Filius Flitwick", "id": 11184, "credit_id": "52fe4267c3a36847f801bffb", "cast_id": 36, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 15}, {"name": "Emily Dale", "character": "Katie Bell", "id": 11185, "credit_id": "52fe4267c3a36847f801bfff", "cast_id": 37, "profile_path": "/njNcJyRU1I7Kbye01VywmBPUB58.jpg", "order": 16}, {"name": "Rochelle Douglas", "character": "Alicia Spinnet", "id": 11186, "credit_id": "52fe4267c3a36847f801c003", "cast_id": 38, "profile_path": "/8Ko1ZXWe6SZPKWVxKSjCynH1lxC.jpg", "order": 17}, {"name": "Richard Griffiths", "character": "Uncle Vernon Dursley", "id": 10983, "credit_id": "52fe4267c3a36847f801c007", "cast_id": 39, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 18}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4267c3a36847f801c00b", "cast_id": 40, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 19}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4267c3a36847f801c00f", "cast_id": 41, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 20}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4267c3a36847f801c01b", "cast_id": 44, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 21}, {"name": "Leslie Phillips", "character": "The Sorting Hat (voice)", "id": 10655, "credit_id": "52fe4267c3a36847f801c01f", "cast_id": 46, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 22}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe4267c3a36847f801c023", "cast_id": 47, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 23}, {"name": "Jim Norton", "character": "Mr. Mason", "id": 14950, "credit_id": "52fe4267c3a36847f801c02b", "cast_id": 49, "profile_path": "/lndFtmSwtCzoeWkgjqJBqVRKGk2.jpg", "order": 24}, {"name": "Shirley Henderson", "character": "Moaning Myrtle", "id": 1834, "credit_id": "52fe4267c3a36847f801c02f", "cast_id": 50, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 25}, {"name": "Miriam Margolyes", "character": "Professor Sprout", "id": 6199, "credit_id": "5306f2999251414c690002f3", "cast_id": 51, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 26}, {"name": "Tom Knight", "character": "Mr. Granger", "id": 203538, "credit_id": "54c64d009251416eae0126d0", "cast_id": 53, "profile_path": "/WXka0PHeq6Ugn0D7anilbYGtRM.jpg", "order": 27}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bf49", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.8, "runtime": 161}, "673": {"poster_path": "/rsiCoJ5gcaBGANUZROJUxiN8yQ5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 789804554, "overview": "Harry, Ron and Hermione return to Hogwarts for a third adventure and magic filled year in this follow-up to the first two Potter blockbusters. Harry comes face to face with danger yet again, this time in the form of escaped convict Sirius Black. In a bid for help, Harry turns to sympathetic Professor Lupin -- but will it be enough?", "video": false, "id": 673, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Prisoner of Azkaban", "tagline": "Something wicked this way comes.", "vote_count": 1865, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0304141", "adult": false, "backdrop_path": "/wWdlIBxn9xCmySxnSWtI2BjZZkF.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Warner Bros.", "id": 6194}, {"name": "Heyday Films", "id": 7364}], "release_date": "2004-05-31", "popularity": 1.79866549656023, "original_title": "Harry Potter and the Prisoner of Azkaban", "budget": 130000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4267c3a36847f801c08b", "cast_id": 1, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4267c3a36847f801c08f", "cast_id": 2, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "5317383ec3a36813ad002841", "cast_id": 45, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe4267c3a36847f801c097", "cast_id": 4, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 3}, {"name": "David Thewlis", "character": "Professor Lupin", "id": 11207, "credit_id": "52fe4267c3a36847f801c09b", "cast_id": 5, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Professor Snape", "id": 4566, "credit_id": "52fe4267c3a36847f801c09f", "cast_id": 6, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Michael Gambon", "character": "Professor Dumbledore", "id": 5658, "credit_id": "52fe4267c3a36847f801c0a3", "cast_id": 7, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4267c3a36847f801c0a7", "cast_id": 8, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4267c3a36847f801c0ab", "cast_id": 9, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 8}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4267c3a36847f801c0af", "cast_id": 10, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 9}, {"name": "Emma Thompson", "character": "Professor Trelawney", "id": 7056, "credit_id": "52fe4267c3a36847f801c0b3", "cast_id": 11, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 10}, {"name": "Maggie Smith", "character": "Professor McGonagall", "id": 10978, "credit_id": "52fe4268c3a36847f801c0b7", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 11}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4268c3a36847f801c0bb", "cast_id": 13, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 12}, {"name": "Pam Ferris", "character": "Aunt Marge", "id": 11213, "credit_id": "52fe4268c3a36847f801c0bf", "cast_id": 14, "profile_path": "/i9ou0K069ce8rL1OeWEZRukCBCk.jpg", "order": 13}, {"name": "Richard Griffiths", "character": "Uncle Vernon", "id": 10983, "credit_id": "52fe4268c3a36847f801c0c3", "cast_id": 15, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 14}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4268c3a36847f801c151", "cast_id": 40, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 15}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4268c3a36847f801c155", "cast_id": 41, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 16}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4268c3a36847f801c159", "cast_id": 42, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 17}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4268c3a36847f801c15d", "cast_id": 43, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 18}, {"name": "Timothy Spall", "character": "Peter Pettigrew", "id": 9191, "credit_id": "55043936c3a36862e5000e0a", "cast_id": 47, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 19}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe4268c3a36847f801c0c9", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 7.0, "runtime": 141}, "674": {"poster_path": "/6sASqcdrEHXxUhA3nFpjrRecPD2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 895921036, "overview": "Young wizard Harry Potter starts his fourth year at Hogwarts, competes in the treacherous Tri-Wizard Tournament and faces the evil Lord Voldemort. Friends Ron and Hermione help Harry manage the pressure \u2026 but Voldemort lurks, awaiting his chance to destroy Harry and all that he stands for.", "video": false, "id": 674, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Goblet of Fire", "tagline": "Dark And Difficult Times Lie Ahead.", "vote_count": 1991, "homepage": "http://harrypotter.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0330373", "adult": false, "backdrop_path": "/gzKW3emulMxIHzuXxZoyDB1lei9.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2005-11-05", "popularity": 2.11423868134459, "original_title": "Harry Potter and the Goblet of Fire", "budget": 150000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4268c3a36847f801c21d", "cast_id": 1, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4268c3a36847f801c221", "cast_id": 2, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe4268c3a36847f801c225", "cast_id": 3, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe4268c3a36847f801c229", "cast_id": 4, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 3}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe4268c3a36847f801c22d", "cast_id": 5, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4268c3a36847f801c231", "cast_id": 6, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4268c3a36847f801c235", "cast_id": 7, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 6}, {"name": "Brendan Gleeson", "character": "Alastor \"Mad-Eye\" Moody", "id": 2039, "credit_id": "52fe4268c3a36847f801c239", "cast_id": 8, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 7}, {"name": "Miranda Richardson", "character": "Rita Skeeter", "id": 8436, "credit_id": "52fe4268c3a36847f801c23d", "cast_id": 9, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 8}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe4268c3a36847f801c241", "cast_id": 10, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 9}, {"name": "Robert Pattinson", "character": "Cedric Diggory", "id": 11288, "credit_id": "52fe4268c3a36847f801c245", "cast_id": 11, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 10}, {"name": "Stanislav Ianevski", "character": "Viktor Krum", "id": 11290, "credit_id": "52fe4268c3a36847f801c249", "cast_id": 12, "profile_path": "/rfsv03YZfB2cv2y26IzgdnuyuBl.jpg", "order": 11}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Fleur Delacour", "id": 11291, "credit_id": "52fe4268c3a36847f801c24d", "cast_id": 13, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 12}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4268c3a36847f801c251", "cast_id": 14, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 13}, {"name": "Maggie Smith", "character": "Minerva McGonagall", "id": 10978, "credit_id": "52fe4268c3a36847f801c2eb", "cast_id": 40, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 14}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4268c3a36847f801c2ef", "cast_id": 41, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 15}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4268c3a36847f801c2f3", "cast_id": 42, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 16}, {"name": "Frances de la Tour", "character": "Madame Olympe Maxime", "id": 47468, "credit_id": "52fe4268c3a36847f801c2f7", "cast_id": 43, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 17}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4268c3a36847f801c2fb", "cast_id": 44, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 18}, {"name": "Roger Lloyd-Pack", "character": "Barty Crouch, Sr.", "id": 81024, "credit_id": "52fe4268c3a36847f801c2ff", "cast_id": 45, "profile_path": "/6hWATATAe2Tv7v2EKefdjfAaI7.jpg", "order": 19}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe4268c3a36847f801c303", "cast_id": 47, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 20}, {"name": "Eric Sykes", "character": "Frank Bryce", "id": 20053, "credit_id": "52fe4268c3a36847f801c307", "cast_id": 48, "profile_path": "/yI7Z5BfaYmbFyPUR3idA5DCXOQY.jpg", "order": 21}, {"name": "Timothy Spall", "character": "Wormtail", "id": 9191, "credit_id": "52fe4268c3a36847f801c30b", "cast_id": 49, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 22}, {"name": "David Tennant", "character": "Bartemius 'Barty' Crouch Junior", "id": 20049, "credit_id": "52fe4268c3a36847f801c30f", "cast_id": 50, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 23}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe4268c3a36847f801c313", "cast_id": 51, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 24}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4268c3a36847f801c317", "cast_id": 52, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 25}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe4268c3a36847f801c31b", "cast_id": 53, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 26}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4268c3a36847f801c31f", "cast_id": 54, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 27}, {"name": "Jeff Rawle", "character": "Amos Diggory", "id": 81022, "credit_id": "52fe4268c3a36847f801c323", "cast_id": 55, "profile_path": "/vMAHPrE4pYrOOzcIsYXulEP7Pax.jpg", "order": 28}, {"name": "Robert Hardy", "character": "Cornelius Fudge", "id": 23076, "credit_id": "52fe4268c3a36847f801c327", "cast_id": 56, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 29}, {"name": "Sheila Allen", "character": "Ministry Witch", "id": 1220981, "credit_id": "52fe4268c3a36847f801c3af", "cast_id": 92, "profile_path": "/xRj8h5w0d6btBtR9mhQIv7ufXjL.jpg", "order": 30}, {"name": "Su Elliott", "character": "Ministry Witch", "id": 1221007, "credit_id": "52fe4268c3a36847f801c3b3", "cast_id": 93, "profile_path": "/6IlvNaDF0JRF9hhIVTOEyLDjS36.jpg", "order": 31}, {"name": "Anne Lacy", "character": "Ministry Witch", "id": 1090771, "credit_id": "52fe4268c3a36847f801c32b", "cast_id": 59, "profile_path": null, "order": 32}, {"name": "Flip Webster", "character": "Ministry Witch", "id": 20002, "credit_id": "52fe4268c3a36847f801c32f", "cast_id": 60, "profile_path": "/j8rvA4U6nFOV70MPrI0W8dAEWVx.jpg", "order": 33}, {"name": "David Sterne", "character": "Ministry Wizard", "id": 117654, "credit_id": "52fe4268c3a36847f801c333", "cast_id": 61, "profile_path": "/vZaOmbLpbh3rbDa3CGoj7cBkotI.jpg", "order": 34}, {"name": "Christopher Whittingham", "character": "Ministry Wizard", "id": 193409, "credit_id": "52fe4268c3a36847f801c337", "cast_id": 62, "profile_path": "/sBD3EqrXOyDG7AIZqLTpfV03S1s.jpg", "order": 35}, {"name": "Liam McKenna", "character": "Ministry Wizard", "id": 75065, "credit_id": "52fe4268c3a36847f801c33b", "cast_id": 63, "profile_path": "/7ZV4IHOmTYaFjk1RMyLpIa7C8by.jpg", "order": 36}, {"name": "Campbell Graham", "character": "Ministry Wizard", "id": 1090776, "credit_id": "52fe4268c3a36847f801c33f", "cast_id": 64, "profile_path": "/93Oto4Dy3TiTcHIu6Tj8sXj3yyL.jpg", "order": 37}, {"name": "Margery Mason", "character": "Food Trolley Lady", "id": 213222, "credit_id": "52fe4268c3a36847f801c343", "cast_id": 65, "profile_path": "/A1nJN61RozmvjqJQrHXfHM7F03W.jpg", "order": 38}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe4268c3a36847f801c347", "cast_id": 66, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 39}, {"name": "William Melling", "character": "Nigel", "id": 568374, "credit_id": "52fe4268c3a36847f801c34b", "cast_id": 67, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 40}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4268c3a36847f801c34f", "cast_id": 68, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 41}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe4268c3a36847f801c353", "cast_id": 69, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 42}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe4268c3a36847f801c357", "cast_id": 70, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 43}, {"name": "Warwick Davis", "character": "Filius Flitwick", "id": 11184, "credit_id": "52fe4268c3a36847f801c35b", "cast_id": 71, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 44}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe4268c3a36847f801c35f", "cast_id": 72, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 45}, {"name": "Angelica Mandy", "character": "Gabrielle Delacour", "id": 1090780, "credit_id": "52fe4268c3a36847f801c363", "cast_id": 73, "profile_path": "/fq1xra4NuMQmbFKCSPDyqdCkEeq.jpg", "order": 46}, {"name": "Predrag Bjelac", "character": "Igor Karkaroff", "id": 12044, "credit_id": "52fe4268c3a36847f801c367", "cast_id": 74, "profile_path": "/lv74T1lR0UwubTaE6FaIRLP1tu2.jpg", "order": 47}, {"name": "Tolga Safer", "character": "Karkaroff's Aide", "id": 1090781, "credit_id": "52fe4268c3a36847f801c36b", "cast_id": 75, "profile_path": "/hCh4eqAVwuOvv1x7uJbsDDbpUfm.jpg", "order": 48}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe4268c3a36847f801c36f", "cast_id": 76, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 49}, {"name": "Louis Doyle", "character": "Ernie MacMillan", "id": 1090782, "credit_id": "52fe4268c3a36847f801c373", "cast_id": 77, "profile_path": "/4853h7KAujPtQcZ6ck8EUPDVnOP.jpg", "order": 50}, {"name": "Jamie Waylett", "character": "Vincent Crabbe", "id": 956224, "credit_id": "52fe4268c3a36847f801c377", "cast_id": 78, "profile_path": "/nvw2IgN2BcpT2MczUuwSaTYuqZK.jpg", "order": 51}, {"name": "Charlotte Skeoch", "character": "Hannah Abbott", "id": 1090783, "credit_id": "52fe4268c3a36847f801c37b", "cast_id": 79, "profile_path": "/ukHczA8ykX3HNRB3CxpZwMtw4xM.jpg", "order": 52}, {"name": "Robert Wilfort", "character": "Photographer", "id": 72313, "credit_id": "52fe4268c3a36847f801c37f", "cast_id": 80, "profile_path": "/3G0QlJyhhVLvs9yTSjo4h89ce1k.jpg", "order": 53}, {"name": "Tiana Benjamin", "character": "Angelina Johnson", "id": 174713, "credit_id": "52fe4268c3a36847f801c383", "cast_id": 81, "profile_path": "/unaGXZLIAn0ViPbhF5claGB3Be1.jpg", "order": 54}, {"name": "Henry Lloyd-Hughes", "character": "Roger Davies", "id": 513677, "credit_id": "52fe4268c3a36847f801c387", "cast_id": 82, "profile_path": "/cO8PvsG3vzIvcoXGwTs6DQqaz7m.jpg", "order": 55}, {"name": "Jarvis Cocker", "character": "Band Lead Singer", "id": 107170, "credit_id": "52fe4268c3a36847f801c38b", "cast_id": 83, "profile_path": "/smJVxtorc3yZHcKo2OQHXG3caQt.jpg", "order": 56}, {"name": "Jonny Greenwood", "character": "Band Lead Guitar", "id": 74333, "credit_id": "52fe4268c3a36847f801c38f", "cast_id": 84, "profile_path": "/be8jFRIc3Q5eUmdQVFOhdJ1Aq8p.jpg", "order": 57}, {"name": "Phil Selway", "character": "Band Drums", "id": 74335, "credit_id": "52fe4268c3a36847f801c393", "cast_id": 85, "profile_path": "/7nQAY27ESsbT4oGqZlUf6zraJZ2.jpg", "order": 58}, {"name": "Steve Mackey", "character": "Band Bass Guitar", "id": 1090784, "credit_id": "52fe4268c3a36847f801c397", "cast_id": 86, "profile_path": "/oQL1gKZbCpxFudZ3rYazjWKlFHr.jpg", "order": 59}, {"name": "Jason Buckle", "character": "Band Rhythm Guitar", "id": 1090785, "credit_id": "52fe4268c3a36847f801c39b", "cast_id": 87, "profile_path": "/7hfQveVstuyrbFmmoLQ1EhhfXra.jpg", "order": 60}, {"name": "Steve Claydon", "character": "Band Keyboards", "id": 1090786, "credit_id": "52fe4268c3a36847f801c39f", "cast_id": 88, "profile_path": "/iE3ZTXZCyA9AO3NfJ4A6PvlCoHt.jpg", "order": 61}, {"name": "Shirley Henderson", "character": "Moaning Myrtle", "id": 1834, "credit_id": "52fe4268c3a36847f801c3a3", "cast_id": 89, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 62}, {"name": "Alan Watt", "character": "Assistant Judge", "id": 203935, "credit_id": "52fe4268c3a36847f801c3a7", "cast_id": 90, "profile_path": null, "order": 63}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe4268c3a36847f801c3ab", "cast_id": 91, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 64}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe4268c3a36847f801c257", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.9, "runtime": 157}, "675": {"poster_path": "/lmYmoXVzVrTadfXHZ3v1ySqA1fn.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 938212738, "overview": "Returning for his fifth year of study at the venerable Hogwarts School of Witchcraft and Wizardry, the ever-maturing Harry Potter is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students -- dubbed \"Dumbledore's Army\" -- to defend themselves against the dark arts.", "video": false, "id": 675, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Order of the Phoenix", "tagline": "Evil Must Be Confronted.", "vote_count": 1950, "homepage": "http://www.harrypotterorderofthephoenix.com/", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373889", "adult": false, "backdrop_path": "/gGt4ePOhD8ilxd3FYhKB06L2CyG.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Heyday Films", "id": 7364}, {"name": "Cool Music", "id": 1022}, {"name": "Harry Potter Publishing Rights", "id": 20006}], "release_date": "2007-07-03", "popularity": 1.90534561960797, "original_title": "Harry Potter and the Order of the Phoenix", "budget": 150000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4268c3a36847f801c4db", "cast_id": 22, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4268c3a36847f801c4df", "cast_id": 23, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe4268c3a36847f801c4e3", "cast_id": 24, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe4268c3a36847f801c4f3", "cast_id": 28, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 3}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe4268c3a36847f801c4ef", "cast_id": 27, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 4}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4268c3a36847f801c4eb", "cast_id": 26, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 5}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4268c3a36847f801c507", "cast_id": 33, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 6}, {"name": "Maggie Smith", "character": "Minerva McGonagall", "id": 10978, "credit_id": "52fe4268c3a36847f801c50f", "cast_id": 35, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 7}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe4268c3a36847f801c4e7", "cast_id": 25, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 8}, {"name": "Brendan Gleeson", "character": "Alastor 'Mad\u00adEye' Moody", "id": 2039, "credit_id": "52fe4268c3a36847f801c4f7", "cast_id": 29, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 9}, {"name": "Richard Griffiths", "character": "Uncle Vernon", "id": 10983, "credit_id": "52fe4268c3a36847f801c4fb", "cast_id": 30, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 10}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe4268c3a36847f801c4ff", "cast_id": 31, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 11}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe4268c3a36847f801c503", "cast_id": 32, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 12}, {"name": "Fiona Shaw", "character": "Aunt Petunia", "id": 10981, "credit_id": "52fe4268c3a36847f801c50b", "cast_id": 34, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 13}, {"name": "Imelda Staunton", "character": "Dolores Umbridge", "id": 11356, "credit_id": "52fe4268c3a36847f801c513", "cast_id": 36, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 14}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4268c3a36847f801c517", "cast_id": 37, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 15}, {"name": "Robert Hardy", "character": "Cornelius Fudge", "id": 23076, "credit_id": "52fe4268c3a36847f801c521", "cast_id": 39, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 16}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4268c3a36847f801c525", "cast_id": 40, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 17}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4268c3a36847f801c529", "cast_id": 41, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 18}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4268c3a36847f801c52d", "cast_id": 42, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 19}, {"name": "Harry Melling", "character": "Dudley Dursley", "id": 10982, "credit_id": "52fe4268c3a36847f801c531", "cast_id": 43, "profile_path": "/2CXlvvGnnJlSHDRqcWxtcef8Dsf.jpg", "order": 20}, {"name": "Evanna Lynch", "character": "Lune Lovegood", "id": 140367, "credit_id": "52fe4268c3a36847f801c53b", "cast_id": 46, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 21}, {"name": "Jason Boyd", "character": "Piers", "id": 1093972, "credit_id": "52fe4268c3a36847f801c53f", "cast_id": 47, "profile_path": "/fs5Qkm9bgpjSkHJYnXQ7uyJZEtP.jpg", "order": 22}, {"name": "Richard Macklin", "character": "Malcolm", "id": 1093973, "credit_id": "52fe4268c3a36847f801c543", "cast_id": 48, "profile_path": null, "order": 23}, {"name": "Kathryn Hunter", "character": "Mrs. Arabella Figg", "id": 72309, "credit_id": "52fe4268c3a36847f801c547", "cast_id": 49, "profile_path": "/68kYLCF20dOHS3iwD0YsoMFcEYn.jpg", "order": 24}, {"name": "Miles Jupp", "character": "TV Weatherman", "id": 221857, "credit_id": "52fe4268c3a36847f801c54b", "cast_id": 50, "profile_path": "/46I2b7aManVdNQ3XFy9IPRkCDS9.jpg", "order": 25}, {"name": "Jessica Hynes", "character": "Mafalda Hopkirk (voice)", "id": 47730, "credit_id": "52fe4268c3a36847f801c54f", "cast_id": 51, "profile_path": "/rHnSgkW6oTajbz6L3BETYbqdJZe.jpg", "order": 26}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe4268c3a36847f801c553", "cast_id": 52, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 27}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe4268c3a36847f801c557", "cast_id": 53, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 28}, {"name": "George Harris", "character": "Kingsley Shacklebolt", "id": 2247, "credit_id": "52fe4268c3a36847f801c55b", "cast_id": 54, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 29}, {"name": "Peter Cartwright", "character": "Elphias Doge", "id": 186070, "credit_id": "52fe4268c3a36847f801c55f", "cast_id": 55, "profile_path": "/xsxj1F1ChT1TYjqAhByH5YsLsIN.jpg", "order": 30}, {"name": "Brigitte Millar", "character": "Emmeline Vance", "id": 1093974, "credit_id": "52fe4268c3a36847f801c563", "cast_id": 56, "profile_path": "/GatLQkdB5h3nOlk7oT8ntcHxGq.jpg", "order": 31}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe4268c3a36847f801c567", "cast_id": 57, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 32}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe4268c3a36847f801c56b", "cast_id": 58, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 33}, {"name": "Timothy Bateson", "character": "Kreacher (voice)", "id": 3548, "credit_id": "52fe4268c3a36847f801c56f", "cast_id": 59, "profile_path": "/dHSn6dpypXLmNCrCwOy3fJDbPsT.jpg", "order": 34}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4268c3a36847f801c573", "cast_id": 60, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 35}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe4268c3a36847f801c577", "cast_id": 61, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 36}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4268c3a36847f801c57b", "cast_id": 62, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 37}, {"name": "Jamie Wolpert", "character": "Newspaper Vendor", "id": 1093975, "credit_id": "52fe4268c3a36847f801c57f", "cast_id": 63, "profile_path": "/nnGC5obVIQmsal3erP6nJUX6LaA.jpg", "order": 38}, {"name": "Nicholas Blane", "character": "Bob", "id": 133031, "credit_id": "52fe4268c3a36847f801c583", "cast_id": 64, "profile_path": "/dZ1Z9EPSGItJO4Zv2Eu0d4B9czf.jpg", "order": 39}, {"name": "Daisy Haggard", "character": "Voice of Lift", "id": 209458, "credit_id": "52fe4268c3a36847f801c587", "cast_id": 65, "profile_path": "/sAwONMmNmeiI85XOzueXJc2cI3k.jpg", "order": 40}, {"name": "Chris Rankin", "character": "Percy Weasley", "id": 10992, "credit_id": "52fe4268c3a36847f801c58b", "cast_id": 66, "profile_path": "/3HEK2yr0YOEE7A5qf0SGs3VhUNz.jpg", "order": 41}, {"name": "Sian Thomas", "character": "Amelia Bones", "id": 17069, "credit_id": "52fe4268c3a36847f801c58f", "cast_id": 67, "profile_path": "/jI0TOejWhHQCkTwyMyDTmm74VmD.jpg", "order": 42}, {"name": "Jamie Waylett", "character": "Vincent Crabbe", "id": 956224, "credit_id": "52fe4268c3a36847f801c593", "cast_id": 68, "profile_path": "/nvw2IgN2BcpT2MczUuwSaTYuqZK.jpg", "order": 43}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4268c3a36847f801c597", "cast_id": 69, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 44}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe4268c3a36847f801c59b", "cast_id": 70, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 45}, {"name": "Ryan Nelson", "character": "Slightly Creepy Boy", "id": 189689, "credit_id": "52fe4268c3a36847f801c59f", "cast_id": 71, "profile_path": "/zNxIuuug0clWzhj6Xq0ERqLVn2Y.jpg", "order": 46}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4268c3a36847f801c5a3", "cast_id": 72, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 47}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe4268c3a36847f801c5a7", "cast_id": 73, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 48}, {"name": "Apple Brook", "character": "Wilhelmina Grubbly-Plank", "id": 1093976, "credit_id": "52fe4268c3a36847f801c5af", "cast_id": 75, "profile_path": "/kScQRjMg6wBHA0lfRnyUkj0lrEE.jpg", "order": 49}, {"name": "William Melling", "character": "Nigel 2nd Year", "id": 568374, "credit_id": "52fe4268c3a36847f801c5ab", "cast_id": 74, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 50}, {"name": "Emma Thompson", "character": "Sybil Trelawney", "id": 7056, "credit_id": "52fe4268c3a36847f801c5b3", "cast_id": 76, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 51}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe4268c3a36847f801c5b7", "cast_id": 77, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 52}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe4268c3a36847f801c5bb", "cast_id": 78, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 53}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe4268c3a36847f801c5bf", "cast_id": 79, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 54}, {"name": "Warwick Davis", "character": "Filius Flitwick", "id": 11184, "credit_id": "52fe4268c3a36847f801c5c3", "cast_id": 80, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 55}, {"name": "Jim McManus", "character": "Aberforth Dumbledore", "id": 144867, "credit_id": "52fe4268c3a36847f801c5c7", "cast_id": 81, "profile_path": null, "order": 56}, {"name": "Nick Shirm", "character": "Zacharias Smith", "id": 1093977, "credit_id": "52fe4268c3a36847f801c5cb", "cast_id": 82, "profile_path": "/kvAPWcWo1YzMgRHFDwh5uDPrFBT.jpg", "order": 57}, {"name": "Sam Beazley", "character": "Everard", "id": 192865, "credit_id": "52fe4268c3a36847f801c5cf", "cast_id": 83, "profile_path": "/cMhvf6mLdjF69CxzRnNneZRCjnw.jpg", "order": 58}, {"name": "John Atterbury", "character": "Phineas Nigellus Black", "id": 559759, "credit_id": "52fe4268c3a36847f801c5d3", "cast_id": 84, "profile_path": "/ceOmkoLlV6cRG4VjQdHlQvxVUJy.jpg", "order": 59}, {"name": "Arben Bajraktaraj", "character": "Azkaban Death Eater", "id": 234921, "credit_id": "52fe4268c3a36847f801c5d7", "cast_id": 85, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 60}, {"name": "Richard Leaf", "character": "John Dawlish", "id": 16792, "credit_id": "52fe4268c3a36847f801c5db", "cast_id": 86, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 61}, {"name": "Tony Maudsley", "character": "Grawp", "id": 79856, "credit_id": "52fe4268c3a36847f801c5df", "cast_id": 87, "profile_path": "/7VjhAftH1YBVEm3GRznNiX0Q3Pu.jpg", "order": 62}, {"name": "Robbie Jarvis", "character": "Young James Potter", "id": 568390, "credit_id": "537755a20e0a26141c002015", "cast_id": 88, "profile_path": "/xTnsHpzeaBb3KcDsf2OgGNWbJOP.jpg", "order": 63}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe4268c3a36847f801c465", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 6.9, "runtime": 138}, "676": {"poster_path": "/gzjMpcyV1RksWonaA87DZ8wQTH0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 449220945, "overview": "The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.", "video": false, "id": 676, "genres": [{"id": 10752, "name": "War"}], "title": "Pearl Harbor", "tagline": "December 7, 1941 - A day that shall live in infamy.", "vote_count": 479, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0213149", "adult": false, "backdrop_path": "/cDctk61tUeQz4LX7tTFPknI28ea.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2001-05-21", "popularity": 1.68738542608612, "original_title": "Pearl Harbor", "budget": 140000000, "cast": [{"name": "Ben Affleck", "character": "Capt. Rafe McCawley", "id": 880, "credit_id": "52fe4269c3a36847f801c6f9", "cast_id": 29, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Josh Hartnett", "character": "Capt. Danny Walker", "id": 2299, "credit_id": "52fe4269c3a36847f801c6fd", "cast_id": 30, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 1}, {"name": "Kate Beckinsale", "character": "Nurse Lt. Evelyn Johnson", "id": 3967, "credit_id": "52fe4269c3a36847f801c701", "cast_id": 31, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 2}, {"name": "Cuba Gooding Jr.", "character": "Petty Officer Doris Miller", "id": 9777, "credit_id": "52fe4269c3a36847f801c705", "cast_id": 32, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 3}, {"name": "Jon Voight", "character": "President Franklin Delano Roosevelt", "id": 10127, "credit_id": "52fe4269c3a36847f801c709", "cast_id": 33, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 4}, {"name": "Alec Baldwin", "character": "Lt. Col. James Doolittle", "id": 7447, "credit_id": "52fe4269c3a36847f801c70d", "cast_id": 34, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 5}, {"name": "Tom Sizemore", "character": "Sgt. Earl Sistern", "id": 3197, "credit_id": "52fe4269c3a36847f801c711", "cast_id": 35, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 6}, {"name": "William Lee Scott", "character": "Lt. Billy Thompson", "id": 10128, "credit_id": "52fe4269c3a36847f801c715", "cast_id": 36, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 7}, {"name": "Greg Zola", "character": "Lt. Anthony Fusco", "id": 10129, "credit_id": "52fe4269c3a36847f801c719", "cast_id": 37, "profile_path": "/vbtTeNeYbGHmmbbyQX9m9wzTurI.jpg", "order": 8}, {"name": "Ewen Bremner", "character": "Lt. Red Winkle", "id": 1125, "credit_id": "52fe4269c3a36847f801c71d", "cast_id": 38, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 9}, {"name": "Jaime King", "character": "Nurse Betty Bayer", "id": 5915, "credit_id": "52fe4269c3a36847f801c721", "cast_id": 39, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 10}, {"name": "Catherine Kellner", "character": "Nurse Barbara", "id": 10130, "credit_id": "52fe4269c3a36847f801c725", "cast_id": 40, "profile_path": "/hmOfknife4GM8oHRqbsMUC03d4W.jpg", "order": 11}, {"name": "Jennifer Garner", "character": "Nurse Sandra", "id": 9278, "credit_id": "52fe4269c3a36847f801c729", "cast_id": 41, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 12}, {"name": "Sara Rue", "character": "Nurse Martha", "id": 10131, "credit_id": "52fe4269c3a36847f801c72d", "cast_id": 42, "profile_path": "/1OlEg9M8oSsGivjyFJJFyCkKqkk.jpg", "order": 13}, {"name": "Michael Shannon", "character": "Lt. Gooz Wood", "id": 335, "credit_id": "52fe4269c3a36847f801c731", "cast_id": 43, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 14}, {"name": "Dan Aykroyd", "character": "Capt. Thurman", "id": 707, "credit_id": "52fe4269c3a36847f801c735", "cast_id": 44, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 15}, {"name": "Colm Feore", "character": "Adm. Husband E. Kimmel", "id": 10132, "credit_id": "52fe4269c3a36847f801c739", "cast_id": 45, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 16}, {"name": "John Fujioka", "character": "Nishikura", "id": 10133, "credit_id": "52fe4269c3a36847f801c73d", "cast_id": 46, "profile_path": "/bbJTzJbrUPJblryGuJT8pAlQZfh.jpg", "order": 17}, {"name": "Mako", "character": "Adm. Isoroku Yamamoto", "id": 10134, "credit_id": "52fe4269c3a36847f801c741", "cast_id": 47, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 18}, {"name": "Jesse James", "character": "Young Rafe", "id": 10135, "credit_id": "52fe4269c3a36847f801c745", "cast_id": 48, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 19}, {"name": "Reiley McClendon", "character": "Young Danny", "id": 10136, "credit_id": "52fe4269c3a36847f801c749", "cast_id": 49, "profile_path": "/mEvaLTUeZBqmETH07MaaApsPm1E.jpg", "order": 20}, {"name": "William Fichtner", "character": "Danny's Father", "id": 886, "credit_id": "52fe4269c3a36847f801c74d", "cast_id": 50, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 21}, {"name": "Steve Rankin", "character": "Rafe's Father", "id": 10137, "credit_id": "52fe4269c3a36847f801c751", "cast_id": 51, "profile_path": "/5qMs4c4I7tcmubYy0xqBU7BVwSm.jpg", "order": 22}, {"name": "Brian Haley", "character": "Training Captain", "id": 10138, "credit_id": "52fe4269c3a36847f801c755", "cast_id": 52, "profile_path": "/oGaZ2sa0nHJ95vW7nN2TgjeeXGM.jpg", "order": 23}, {"name": "Graham Beckel", "character": "Adm. Chester W. Nimitz", "id": 6110, "credit_id": "52fe4269c3a36847f801c759", "cast_id": 53, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 24}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4269c3a36847f801c75f", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.2, "runtime": 183}, "8869": {"poster_path": "/bZ0NbGYLsMQvJK0DZbr8uu9poHU.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The residents of a rural mining town discover that an unfortunate chemical spill has caused hundreds of little spiders to mutate overnight to the size of SUVs. It's then up to mining engineer Chris McCormack and Sheriff Sam Parker to mobilize an eclectic group of townspeople, including the Sheriff's young son, Mike, her daughter, Ashley, and paranoid radio announcer Harlan, into battle against the bloodthirsty eight-legged beasts.", "video": false, "id": 8869, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Eight Legged Freaks", "tagline": "Do you hate spiders? Do you really hate spiders? Well they don't like you either.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0271367", "adult": false, "backdrop_path": "/uNQhUXEWOeU914lqfNcCAbaL8bJ.jpg", "production_companies": [{"name": "Centropolis Entertainment", "id": 347}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Warner Bros.", "id": 6194}, {"name": "Electric Entertainment", "id": 3241}], "release_date": "2002-07-17", "popularity": 0.316676662577129, "original_title": "Eight Legged Freaks", "budget": 0, "cast": [{"name": "David Arquette", "character": "Chris McCormick", "id": 15234, "credit_id": "52fe44c2c3a36847f80a8563", "cast_id": 12, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 0}, {"name": "Kari W\u00fchrer", "character": "Sheriff Samantha Parker", "id": 56152, "credit_id": "52fe44c2c3a36847f80a8567", "cast_id": 13, "profile_path": "/2WmKU8E0lMmdBcC7F9iLLz7S2Qc.jpg", "order": 1}, {"name": "Scott Terra", "character": "Mike Parker", "id": 56153, "credit_id": "52fe44c2c3a36847f80a856b", "cast_id": 14, "profile_path": "/4mXaoogOk48PNVqcCjkXAL7zea8.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Ashley Parker", "id": 1245, "credit_id": "52fe44c2c3a36847f80a856f", "cast_id": 15, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Doug E. Doug", "character": "Harlan Griffith", "id": 12975, "credit_id": "52fe44c2c3a36847f80a8573", "cast_id": 16, "profile_path": "/dXoCEr8S5YvVdZeyJAgNChSvdu4.jpg", "order": 4}, {"name": "Rick Overton", "character": "Deputy Pete Willis", "id": 1539, "credit_id": "52fe44c2c3a36847f80a8577", "cast_id": 17, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 5}, {"name": "Leon Rippy", "character": "Wade", "id": 15374, "credit_id": "52fe44c2c3a36847f80a857b", "cast_id": 18, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 6}, {"name": "Matt Czuchry", "character": "Bret", "id": 55547, "credit_id": "52fe44c2c3a36847f80a857f", "cast_id": 19, "profile_path": "/jZTrTPDQqdOUwLNV0gSKuTZmRKk.jpg", "order": 7}, {"name": "Eileen Ryan", "character": "Gladys", "id": 12543, "credit_id": "52fe44c2c3a36847f80a8583", "cast_id": 20, "profile_path": "/ypA36mXS3CcyvtKCdBMhI3gn4Vs.jpg", "order": 8}, {"name": "Riley Smith", "character": "Randy", "id": 67850, "credit_id": "52fe44c2c3a36847f80a8587", "cast_id": 21, "profile_path": "/pef2GeUoMY1ECORr0n3ev6EO6m2.jpg", "order": 9}, {"name": "Jane Edith Wilson", "character": "Emma", "id": 156980, "credit_id": "52fe44c2c3a36847f80a858b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Jack Moore", "character": "Amos", "id": 117564, "credit_id": "52fe44c2c3a36847f80a858f", "cast_id": 23, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 11}, {"name": "Roy Gaintner", "character": "Floyd", "id": 1154284, "credit_id": "52fe44c2c3a36847f80a8593", "cast_id": 24, "profile_path": null, "order": 12}], "directors": [{"name": "Ellory Elkayem", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a8523", "profile_path": "/5xrIzpPUiOJnuolrTGWt5nyU6io.jpg", "id": 56150}], "vote_average": 5.5, "runtime": 99}, "8870": {"poster_path": "/wgXnmZG8vG7Fhmk9r3NofQsu44A.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33463969, "overview": "Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry.", "video": false, "id": 8870, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Red Planet", "tagline": "Not A Sound. Not A Warning. Not A Chance. Not Alone.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0199753", "adult": false, "backdrop_path": "/BwAlurHOXrHtDHX5UUIhiB9u6F.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "The Canton Company", "id": 22351}], "release_date": "2000-11-06", "popularity": 0.570006174562803, "original_title": "Red Planet", "budget": 80000000, "cast": [{"name": "Val Kilmer", "character": "Robby Gallagher", "id": 5576, "credit_id": "52fe44c2c3a36847f80a8605", "cast_id": 13, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Cmdr. Kate Bowman", "id": 530, "credit_id": "52fe44c2c3a36847f80a8609", "cast_id": 14, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Benjamin Bratt", "character": "Lt. Ted Santen", "id": 4589, "credit_id": "52fe44c2c3a36847f80a860d", "cast_id": 15, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 2}, {"name": "Tom Sizemore", "character": "Dr. Quinn Burchenal", "id": 3197, "credit_id": "52fe44c2c3a36847f80a8611", "cast_id": 16, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 3}, {"name": "Simon Baker", "character": "Chip Pettengill", "id": 1284159, "credit_id": "52fe44c2c3a36847f80a8619", "cast_id": 19, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 4}, {"name": "Terence Stamp", "character": "Dr. Bud Chantilas", "id": 28641, "credit_id": "52fe44c2c3a36847f80a8615", "cast_id": 18, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 5}], "directors": [{"name": "Antony Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a85bf", "profile_path": "/gZax9b2dcV8dXFKowLA6NncnFcR.jpg", "id": 56154}], "vote_average": 5.4, "runtime": 106}, "679": {"poster_path": "/nORMXEkYEbzkU5WkMWMgRDJwjSZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131060248, "overview": "When Ripley's lifepod is found by a salvage crew over 50 years later, she finds that terra-formers are on the very planet they found the alien species. When the company sends a family of colonists out to investigate her story... all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.", "video": false, "id": 679, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Aliens", "tagline": "This Time It's War", "vote_count": 1175, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090605", "adult": false, "backdrop_path": "/tgXaHtpmxj4SkMxBTi1Desl6Mc6.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Brandywine Productions", "id": 19747}, {"name": "SLM Production Group", "id": 396}], "release_date": "1986-07-18", "popularity": 1.89115344020609, "original_title": "Aliens", "budget": 18500000, "cast": [{"name": "Sigourney Weaver", "character": "Lieutenant Ellen Ripley", "id": 10205, "credit_id": "52fe4269c3a36847f801c9bf", "cast_id": 21, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Carrie Henn", "character": "Rebecca \"Newt\" Jorden", "id": 10206, "credit_id": "52fe4269c3a36847f801c9c3", "cast_id": 22, "profile_path": "/6MrxgxZoiUDA8k0GUwLuBcXN03B.jpg", "order": 1}, {"name": "Michael Biehn", "character": "Corporal Dwayne Hicks", "id": 2712, "credit_id": "52fe4269c3a36847f801c9c7", "cast_id": 23, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 2}, {"name": "Lance Henriksen", "character": "L. Bishop", "id": 2714, "credit_id": "52fe4269c3a36847f801c9cb", "cast_id": 24, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 3}, {"name": "Paul Reiser", "character": "Carter J. Burke", "id": 781, "credit_id": "52fe4269c3a36847f801c9cf", "cast_id": 25, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 4}, {"name": "Bill Paxton", "character": "Private W. Hudson", "id": 2053, "credit_id": "52fe4269c3a36847f801c9d3", "cast_id": 26, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 5}, {"name": "William Hope", "character": "Lieutenant S. Gorman", "id": 10207, "credit_id": "52fe4269c3a36847f801c9d7", "cast_id": 27, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 6}, {"name": "Jenette Goldstein", "character": "Private J. Vasquez", "id": 3981, "credit_id": "52fe4269c3a36847f801c9db", "cast_id": 28, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 7}, {"name": "Al Matthews", "character": "Sergeant A. Apone", "id": 10208, "credit_id": "52fe4269c3a36847f801c9df", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Mark Rolston", "character": "Private M. Drake", "id": 6576, "credit_id": "52fe4269c3a36847f801c9e3", "cast_id": 30, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 9}, {"name": "Colette Hiller", "character": "Corporal C. Ferro", "id": 10209, "credit_id": "52fe4269c3a36847f801c9e7", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Daniel Kash", "character": "Private D. Spunkmeyer", "id": 10210, "credit_id": "52fe4269c3a36847f801c9eb", "cast_id": 32, "profile_path": "/b6lvtpkTRHHcv4YMW3FnGRtyXJ4.jpg", "order": 11}, {"name": "Cynthia Dale Scott", "character": "Corporal C. Dietrich", "id": 10211, "credit_id": "52fe4269c3a36847f801c9ef", "cast_id": 33, "profile_path": "/cBrZS9bmSrRclBVHG6QeSuUj1Q9.jpg", "order": 12}, {"name": "Ricco Ross", "character": "Private R. Frost", "id": 10212, "credit_id": "52fe4269c3a36847f801c9f3", "cast_id": 34, "profile_path": "/ep1gfuShCdZghxBGBtNWhWTxWpp.jpg", "order": 13}, {"name": "Tip Tipping", "character": "Private T. Crowe", "id": 10213, "credit_id": "52fe4269c3a36847f801c9f7", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4269c3a36847f801c94f", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.4, "runtime": 137}, "680": {"poster_path": "/dM2w364MScsjFf8pfMbaWUcWrR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213928762, "overview": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", "video": false, "id": 680, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Pulp Fiction", "tagline": "Just because you are a character doesn't mean you have character.", "vote_count": 3147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0110912", "adult": false, "backdrop_path": "/9rZg1J6vMQoDVSgRyWcpJa8IAGy.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}, {"name": "Jersey Films", "id": 216}], "release_date": "1994-10-14", "popularity": 2.61181948517317, "original_title": "Pulp Fiction", "budget": 8000000, "cast": [{"name": "Tim Roth", "character": "Pumpkin", "id": 3129, "credit_id": "52fe4269c3a36847f801cac3", "cast_id": 11, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 0}, {"name": "Amanda Plummer", "character": "Honey Bunny", "id": 99, "credit_id": "52fe4269c3a36847f801cac7", "cast_id": 12, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 1}, {"name": "Laura Lovelace", "character": "Waitress", "id": 11807, "credit_id": "52fe426ac3a36847f801cb37", "cast_id": 34, "profile_path": "/hty1tWzaBThqc6AwuBlpanIeT4x.jpg", "order": 2}, {"name": "John Travolta", "character": "Vincent Vega", "id": 8891, "credit_id": "52fe4269c3a36847f801ca99", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 3}, {"name": "Samuel L. Jackson", "character": "Jules Winfield", "id": 2231, "credit_id": "52fe4269c3a36847f801ca9d", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 4}, {"name": "Phil LaMarr", "character": "Marvin", "id": 31549, "credit_id": "52fe426ac3a36847f801cb4f", "cast_id": 40, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 5}, {"name": "Frank Whaley", "character": "Brett", "id": 11805, "credit_id": "52fe426ac3a36847f801cb27", "cast_id": 30, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 6}, {"name": "Burr Steers", "character": "Roger", "id": 58552, "credit_id": "52fe426ac3a36847f801cb57", "cast_id": 42, "profile_path": "/rWztkNxfPclLILEjAhaHaOHSWs3.jpg", "order": 7}, {"name": "Bruce Willis", "character": "Butch Coolidge", "id": 62, "credit_id": "52fe4269c3a36847f801ca95", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 8}, {"name": "Ving Rhames", "character": "Marsellus Wallace", "id": 10182, "credit_id": "52fe4269c3a36847f801cabf", "cast_id": 10, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 9}, {"name": "Paul Calderon", "character": "Paul", "id": 3137, "credit_id": "52fe426ac3a36847f801cb23", "cast_id": 29, "profile_path": "/uS3RyQ6QWr5P6bwHDJWc4UeTnvG.jpg", "order": 10}, {"name": "Bronagh Gallagher", "character": "Trudi", "id": 33399, "credit_id": "52fe426ac3a36847f801cb43", "cast_id": 37, "profile_path": "/h44VuQ4yxA9ssITldXngDKSLoBQ.jpg", "order": 11}, {"name": "Rosanna Arquette", "character": "Jody", "id": 2165, "credit_id": "52fe426ac3a36847f801cb1b", "cast_id": 27, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 12}, {"name": "Eric Stoltz", "character": "Lance", "id": 7036, "credit_id": "52fe4269c3a36847f801cabb", "cast_id": 9, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 13}, {"name": "Uma Thurman", "character": "Mia Wallace", "id": 139, "credit_id": "52fe4269c3a36847f801cab7", "cast_id": 8, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 14}, {"name": "Jerome Patrick Hoban", "character": "Ed Sullivan", "id": 1174004, "credit_id": "52fe426ac3a36847f801cb73", "cast_id": 49, "profile_path": null, "order": 15}, {"name": "Michael Gilden", "character": "Page for Phillip Morris", "id": 1174003, "credit_id": "52fe426ac3a36847f801cb6f", "cast_id": 48, "profile_path": null, "order": 16}, {"name": "Gary Shorelle", "character": "Ricky Nelson", "id": 1174007, "credit_id": "52fe426ac3a36847f801cb87", "cast_id": 54, "profile_path": null, "order": 17}, {"name": "Susan Griffiths", "character": "Marilyn Monroe", "id": 1174000, "credit_id": "52fe426ac3a36847f801cb5b", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Eric Clark", "character": "James Dean", "id": 1174001, "credit_id": "52fe426ac3a36847f801cb5f", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Joseph Pilato", "character": "Dean Martin", "id": 54855, "credit_id": "52fe426ac3a36847f801cb63", "cast_id": 45, "profile_path": "/l5xtdrOmCgOrLiOs4HvyiLEmtNH.jpg", "order": 20}, {"name": "Brad Blumenthal", "character": "Jerry Lewis (as Brad Parker)", "id": 1174008, "credit_id": "52fe426ac3a36847f801cb8b", "cast_id": 55, "profile_path": null, "order": 21}, {"name": "Steve Buscemi", "character": "Buddy Holly", "id": 884, "credit_id": "52fe426ac3a36847f801cb2b", "cast_id": 31, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 22}, {"name": "Lorelei Leslie", "character": "Mamie van Doren", "id": 1099751, "credit_id": "52fe426ac3a36847f801cb83", "cast_id": 53, "profile_path": null, "order": 23}, {"name": "Emil Sitka", "character": "Hold Hands You Lovebirds (archive footage)", "id": 107023, "credit_id": "52fe426ac3a36847f801cbb3", "cast_id": 64, "profile_path": null, "order": 24}, {"name": "Brenda Hillhouse", "character": "Mrs. Coolidge - Butch's Mother", "id": 11162, "credit_id": "52fe426ac3a36847f801cb67", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Christopher Walken", "character": "Captain Koons", "id": 4690, "credit_id": "52fe426ac3a36847f801cb2f", "cast_id": 32, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 26}, {"name": "Chandler Lindauer", "character": "Young Butch", "id": 1174002, "credit_id": "52fe426ac3a36847f801cb6b", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Sy Sher", "character": "Klondike", "id": 1174006, "credit_id": "52fe426ac3a36847f801cb7f", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Robert Ruth", "character": "Sportscaster #1 - Coffee Shop", "id": 1173999, "credit_id": "52fe426ac3a36847f801cb53", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Rich Turner", "character": "Sportscaster #2", "id": 46346, "credit_id": "52fe426ac3a36847f801cb8f", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Angela Jones", "character": "Esmarelda Villalobos", "id": 71836, "credit_id": "52fe426ac3a36847f801cb4b", "cast_id": 39, "profile_path": "/p7pNCt4uBTDk9kRkPU3BFfXfEPq.jpg", "order": 31}, {"name": "Don Blakely", "character": "Wilson's Trainer", "id": 90337, "credit_id": "52fe426ac3a36847f801cb7b", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Carl Allen", "character": "Dead Floyd Wilson", "id": 1174005, "credit_id": "52fe426ac3a36847f801cb77", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Maria de Medeiros", "character": "Fabienne", "id": 2319, "credit_id": "52fe4269c3a36847f801cacb", "cast_id": 13, "profile_path": "/cj7S0ncXnHlvDes44umI4TjESoE.jpg", "order": 34}, {"name": "Karen Maruyama", "character": "Gawker #1", "id": 157865, "credit_id": "52fe426ac3a36847f801cba3", "cast_id": 61, "profile_path": "/jthFzZk2riKzFt0kRt0YOqvvGzr.jpg", "order": 35}, {"name": "Kathy Griffin", "character": "Hit-and-run Witness", "id": 3138, "credit_id": "52fe426ac3a36847f801cb9f", "cast_id": 60, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 36}, {"name": "Venessia Valentino", "character": "Pedestrian / Bonnie Dimmick", "id": 1174009, "credit_id": "52fe426ac3a36847f801cb93", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Linda Kaye", "character": "Shot Woman", "id": 65907, "credit_id": "52fe426ac3a36847f801cb9b", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Duane Whitaker", "character": "Maynard", "id": 11804, "credit_id": "52fe426ac3a36847f801cb1f", "cast_id": 28, "profile_path": "/cFSmuGjUNonH683dmvx0mZ2Uots.jpg", "order": 39}, {"name": "Peter Greene", "character": "Zed", "id": 11803, "credit_id": "52fe426ac3a36847f801cb17", "cast_id": 26, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 40}, {"name": "Stephen Hibbert", "character": "The Gimp", "id": 1173998, "credit_id": "52fe426ac3a36847f801cb47", "cast_id": 38, "profile_path": null, "order": 41}, {"name": "Alexis Arquette", "character": "Man No. 4", "id": 19578, "credit_id": "52fe426ac3a36847f801cb3f", "cast_id": 36, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 42}, {"name": "Quentin Tarantino", "character": "Jimmie Dimmick", "id": 138, "credit_id": "52fe426ac3a36847f801cb3b", "cast_id": 35, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 43}, {"name": "Harvey Keitel", "character": "Wolf", "id": 1037, "credit_id": "52fe4269c3a36847f801cab3", "cast_id": 7, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 44}, {"name": "Julia Sweeney", "character": "Raquel", "id": 11806, "credit_id": "52fe426ac3a36847f801cb33", "cast_id": 33, "profile_path": "/hy7ZoNmr0h3AcrBkbnTLOXZnwRd.jpg", "order": 45}, {"name": "Lawrence Bender", "character": "Long Hair Yuppy Scum", "id": 2545, "credit_id": "52fe426ac3a36847f801cb97", "cast_id": 58, "profile_path": "/5EzlP8qdCYQrhqEYB2MTmY74KFB.jpg", "order": 46}, {"name": "Cie Allman", "character": "Winston Wolfe's Girlfriend At Party (uncredited)", "id": 1274295, "credit_id": "52fe426ac3a36847f801cbb7", "cast_id": 65, "profile_path": null, "order": 47}, {"name": "Rene Beard", "character": "Bar Tender (uncredited)", "id": 1177915, "credit_id": "52fe426ac3a36847f801cbbb", "cast_id": 66, "profile_path": null, "order": 48}, {"name": "Lori Pizzo", "character": "Lucky Lady (uncredited)", "id": 1274296, "credit_id": "52fe426ac3a36847f801cbbf", "cast_id": 67, "profile_path": null, "order": 49}, {"name": "Glendon Rich", "character": "Drug Dealer (uncredited)", "id": 1274297, "credit_id": "52fe426ac3a36847f801cbc3", "cast_id": 68, "profile_path": null, "order": 50}, {"name": "Devan Richardson", "character": "Hopalong Cassidy (uncredited)", "id": 1274298, "credit_id": "52fe426ac3a36847f801cbc7", "cast_id": 69, "profile_path": null, "order": 51}, {"name": "Ani Sava", "character": "Woman in Bathroom (uncredited)", "id": 1274299, "credit_id": "52fe426ac3a36847f801cbcb", "cast_id": 70, "profile_path": null, "order": 52}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4269c3a36847f801caa3", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.8, "runtime": 154}, "681": {"poster_path": "/981iPRF4mO2jLZNO2gu0j7pUoFP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 116000000, "overview": "Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who\u2019s guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.", "video": false, "id": 681, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Diamonds Are Forever", "tagline": "The man who made 007 a household number", "vote_count": 168, "homepage": "http://www.mgm.com/view/movie/529/Diamonds-Are-Forever/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0066995", "adult": false, "backdrop_path": "/gIGLXXvsljHK1jdDNaIXsjhZnnH.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1971-12-29", "popularity": 1.45851376471287, "original_title": "Diamonds Are Forever", "budget": 7200000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe426ac3a36847f801cc7f", "cast_id": 19, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Jill St. John", "character": "Tiffany Case", "id": 10190, "credit_id": "52fe426ac3a36847f801cc83", "cast_id": 20, "profile_path": "/g2qh046VvBgUX1pShKWNaWdFTKc.jpg", "order": 1}, {"name": "Charles Gray", "character": "Ernst Stavro Blofeld", "id": 10074, "credit_id": "52fe426ac3a36847f801cc87", "cast_id": 21, "profile_path": "/ejgGEya19V1jUBqixTz9D8xIjlR.jpg", "order": 2}, {"name": "Lana Wood", "character": "Plenty O'Toole", "id": 10191, "credit_id": "52fe426ac3a36847f801cc8b", "cast_id": 22, "profile_path": "/8ENomc6bZLSADOFDxJaiyR0s8fJ.jpg", "order": 3}, {"name": "Jimmy Dean", "character": "Willard Whyte", "id": 10192, "credit_id": "52fe426ac3a36847f801cc8f", "cast_id": 23, "profile_path": "/wlTB6VVOtyV76kFeJpI9yLiMWEX.jpg", "order": 4}, {"name": "Bruce Cabot", "character": "Albert R. Saxby", "id": 3244, "credit_id": "52fe426ac3a36847f801cc93", "cast_id": 24, "profile_path": "/mcmXDB2cTMHhJXTzHrZVIet0lWG.jpg", "order": 5}, {"name": "Putter Smith", "character": "Mr. Kidd", "id": 10193, "credit_id": "52fe426ac3a36847f801cc97", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Bruce Glover", "character": "Mr. Wint", "id": 10194, "credit_id": "52fe426ac3a36847f801cc9b", "cast_id": 26, "profile_path": "/xVS6edZlUempGkjWqSnPnkGcRTw.jpg", "order": 7}, {"name": "Norman Burton", "character": "Felix Leiter", "id": 10195, "credit_id": "52fe426ac3a36847f801cc9f", "cast_id": 27, "profile_path": "/ezoKMuCDcWSnDaB5pVWMyj21E6H.jpg", "order": 8}, {"name": "Joseph Furst", "character": "Prof. Dr. Metz", "id": 10196, "credit_id": "52fe426ac3a36847f801cca3", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426ac3a36847f801cca7", "cast_id": 29, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ac3a36847f801ccab", "cast_id": 30, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426ac3a36847f801ccaf", "cast_id": 31, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 12}, {"name": "Marc Lawrence", "character": "Slumber Inc. Attendant", "id": 3140, "credit_id": "52fe426ac3a36847f801ccb3", "cast_id": 32, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 13}, {"name": "Laurence Naismith", "character": "Sir Donald Munger", "id": 69764, "credit_id": "52fe426ac3a36847f801ccb7", "cast_id": 33, "profile_path": "/tjoCWRagvyS0Npcd1XwWDPDURMv.jpg", "order": 14}, {"name": "Leonard Barr", "character": "Shady Tree", "id": 1221898, "credit_id": "5404bf74c3a3684366006fce", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Margaret Lacey", "character": "Mrs. Whistler", "id": 228813, "credit_id": "5404bf96c3a3684372006d22", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "David de Keyser", "character": "Doctor", "id": 79866, "credit_id": "5404bfc0c3a368119c002544", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "David Bauer", "character": "Mr. Slumber", "id": 93949, "credit_id": "5404bfe3c3a3684366006fd6", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Sid Haig", "character": "Slumber Inc. Attendant", "id": 5695, "credit_id": "5404bff5c3a368068c006d30", "cast_id": 38, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 19}, {"name": "Lola Larson", "character": "Bambi (uncredited)", "id": 111838, "credit_id": "54256c0ec3a368697600091f", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Trina Parks", "character": "Thumper (uncredited)", "id": 111841, "credit_id": "54256c230e0a263b7a005c24", "cast_id": 40, "profile_path": "/sQaELcXf6mzjOO2IeAZzeqWuUtz.jpg", "order": 21}, {"name": "Valerie Perrine", "character": "Shady Tree's Acorn (uncredited)", "id": 26483, "credit_id": "54256c370e0a263b6e005c2f", "cast_id": 41, "profile_path": "/1Er0uPPTmQ7perH3hZmozvbYDX.jpg", "order": 22}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801cc15", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 6.2, "runtime": 120}, "8874": {"poster_path": "/5hHAjv9RaCtR0lsg7QiRktflsk7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126813153, "overview": "When she receives word that her longtime platonic pal Michael O'Neal is getting married to debutante Kimberly Wallace, food critic Julianne Potter realizes her true feelings for Michael -- and sets out to sabotage the wedding.", "video": false, "id": 8874, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "My Best Friend's Wedding", "tagline": "It's about finding the love of your life. And deciding what to do about it.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0119738", "adult": false, "backdrop_path": "/fVMZu49gYd5T8o1QaX0qVagv7YX.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1997-06-19", "popularity": 0.466400839837275, "original_title": "My Best Friend's Wedding", "budget": 46000000, "cast": [{"name": "Julia Roberts", "character": "Julianne Potter", "id": 1204, "credit_id": "52fe44c2c3a36847f80a88a1", "cast_id": 12, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Dermot Mulroney", "character": "Michael O'Neal", "id": 20212, "credit_id": "52fe44c2c3a36847f80a88a5", "cast_id": 13, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Kimberly Wallace", "id": 6941, "credit_id": "52fe44c2c3a36847f80a88a9", "cast_id": 14, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Rupert Everett", "character": "George Downes", "id": 4757, "credit_id": "52fe44c2c3a36847f80a88ad", "cast_id": 15, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 3}, {"name": "Philip Bosco", "character": "Walter Wallace", "id": 6541, "credit_id": "52fe44c2c3a36847f80a88b7", "cast_id": 17, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 4}, {"name": "M. Emmet Walsh", "character": "Joe O'Neal", "id": 588, "credit_id": "52fe44c2c3a36847f80a88bb", "cast_id": 18, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 5}, {"name": "Rachel Griffiths", "character": "Samantha Newhouse", "id": 3052, "credit_id": "52fe44c2c3a36847f80a88bf", "cast_id": 19, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 6}, {"name": "Carrie Preston", "character": "Mandy Newhouse", "id": 7465, "credit_id": "52fe44c2c3a36847f80a88c3", "cast_id": 20, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 7}, {"name": "Susan Sullivan", "character": "Isabelle Wallace", "id": 543204, "credit_id": "52fe44c2c3a36847f80a88c7", "cast_id": 21, "profile_path": "/pnhdm2VvkRaMEFDOjogvNCafUeq.jpg", "order": 8}, {"name": "Christopher Masterson", "character": "Scotty O'Neal", "id": 35769, "credit_id": "52fe44c3c3a36847f80a88cb", "cast_id": 22, "profile_path": "/gz0GFQmLLjo6Q9Gvf1rKdZd2XhM.jpg", "order": 9}, {"name": "Raci Alexander", "character": "Title Sequence Performer #1", "id": 1077879, "credit_id": "52fe44c3c3a36847f80a88cf", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Jennifer Garrett", "character": "Title Sequence Performer #2", "id": 1077880, "credit_id": "52fe44c3c3a36847f80a88d3", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Kelleia Sheerin", "character": "Title Sequence Performer #3", "id": 1007869, "credit_id": "52fe44c3c3a36847f80a88d7", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Bree Turner", "character": "Title Sequence Performer #4", "id": 62065, "credit_id": "52fe44c3c3a36847f80a88db", "cast_id": 26, "profile_path": "/vR34cXXPh9JFPrPy7DS0fjOaeIc.jpg", "order": 13}, {"name": "Cassie Creasy", "character": "Flower Girl", "id": 1077881, "credit_id": "52fe44c3c3a36847f80a88df", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Lucina Paquet", "character": "Kimmy's Grandma", "id": 86565, "credit_id": "52fe44c3c3a36847f80a88e3", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Aida Baggio", "character": "Old Woman #2", "id": 1077882, "credit_id": "52fe44c3c3a36847f80a88e7", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Shirley Kelly", "character": "Oldest Lady", "id": 1077883, "credit_id": "52fe44c3c3a36847f80a88eb", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "George Bozonelos", "character": "Party Guest", "id": 1077884, "credit_id": "52fe44c3c3a36847f80a88ef", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Loretta Paoletti", "character": "Party Guest", "id": 1077885, "credit_id": "52fe44c3c3a36847f80a88f3", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "P.J. Hogan", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a88b3", "profile_path": "/1ioLJjWkfihb4SllJIh8K9ilyBO.jpg", "id": 3045}], "vote_average": 6.1, "runtime": 105}, "686": {"poster_path": "/yRF1qpaQPZJjiORDsR7eUHzSHbf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171120329, "overview": "Contact is a science fiction film about an encounter with alien intelligence. Based on the novel by Carl Sagan the film starred Jodie Foster as the one chosen scientist who must make some difficult decisions between her beliefs, the truth, and reality.", "video": false, "id": 686, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Contact", "tagline": "If it's just us, it seems like an awful waste of space.", "vote_count": 302, "homepage": "http://contact-themovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118884", "adult": false, "backdrop_path": "/dBK75oCKuHVuJ9rSUnusIFbhocH.jpg", "production_companies": [{"name": "South Side Amusement Company", "id": 43910}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1997-07-11", "popularity": 1.35268003272206, "original_title": "Contact", "budget": 90000000, "cast": [{"name": "Jodie Foster", "character": "Eleanor Arroway", "id": 1038, "credit_id": "52fe426ac3a36847f801ce63", "cast_id": 5, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "David Morse", "character": "Ted Arroway", "id": 52, "credit_id": "52fe426ac3a36847f801ce67", "cast_id": 6, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 1}, {"name": "Matthew McConaughey", "character": "Palmer Joss", "id": 10297, "credit_id": "52fe426ac3a36847f801ce6b", "cast_id": 7, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 2}, {"name": "James Woods", "character": "Michael Kitz", "id": 4512, "credit_id": "52fe426ac3a36847f801ce6f", "cast_id": 8, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "John Hurt", "character": "S. R. Hadden", "id": 5049, "credit_id": "52fe426ac3a36847f801ce73", "cast_id": 9, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Rob Lowe", "character": "Richard Rank", "id": 2879, "credit_id": "52fe426ac3a36847f801ce77", "cast_id": 10, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 5}, {"name": "Tom Skerritt", "character": "David Drumlin", "id": 4139, "credit_id": "52fe426ac3a36847f801ce7b", "cast_id": 11, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 6}, {"name": "William Fichtner", "character": "Kent Clark", "id": 886, "credit_id": "52fe426ac3a36847f801ce7f", "cast_id": 12, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 7}, {"name": "Angela Bassett", "character": "Rachel Constantine", "id": 9780, "credit_id": "52fe426ac3a36847f801cea1", "cast_id": 18, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 8}, {"name": "Jake Busey", "character": "Joseph", "id": 28410, "credit_id": "52fe426ac3a36847f801cea5", "cast_id": 19, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 9}, {"name": "Jena Malone", "character": "Young Ellie", "id": 20089, "credit_id": "52fe426ac3a36847f801ceb5", "cast_id": 22, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 10}, {"name": "Henry Strozier", "character": "Minister", "id": 131120, "credit_id": "54b5430d92514107e0008602", "cast_id": 122, "profile_path": "/wfnHPBfsQ1C1a1DZCzIEegreIMx.jpg", "order": 11}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801ce4d", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.9, "runtime": 150}, "8879": {"poster_path": "/7C18VUCvZH5O0ibZogZP4TQJTiu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41410568, "overview": "A small gold mining camp is terrorised by a ruthless land owner wanting to take their land. Clint Eastwood arrives riding a pale horse just as a young girl is praying to God to help the miners. He is revealed to be a preacher with mysterious and possible otherworldly origins who teams up with the miners to defeat the land owner and the corrupt sheriff.", "video": false, "id": 8879, "genres": [{"id": 37, "name": "Western"}], "title": "Pale Rider", "tagline": "... and hell followed with him.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089767", "adult": false, "backdrop_path": "/trzERKnMxNFYsyFbsfO7a8EL1Bi.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Malpaso Company", "id": 15298}], "release_date": "1985-10-30", "popularity": 0.749994017097188, "original_title": "Pale Rider", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Preacher", "id": 190, "credit_id": "52fe44c3c3a36847f80a8a7d", "cast_id": 9, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Michael Moriarty", "character": "Hull Barret", "id": 21030, "credit_id": "52fe44c3c3a36847f80a8a81", "cast_id": 10, "profile_path": "/vWDVdQpYvCS0ez1z0zk5N9BffY9.jpg", "order": 1}, {"name": "Carrie Snodgress", "character": "Sarah Wheeler", "id": 44831, "credit_id": "52fe44c3c3a36847f80a8a85", "cast_id": 11, "profile_path": "/cmb0ZmIs3Ys8xMLpzibTjNIJRNN.jpg", "order": 2}, {"name": "Chris Penn", "character": "Josh LaHood", "id": 2969, "credit_id": "52fe44c3c3a36847f80a8a89", "cast_id": 12, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 3}, {"name": "Richard Dysart", "character": "Coy LaHood", "id": 15413, "credit_id": "52fe44c3c3a36847f80a8a8d", "cast_id": 13, "profile_path": "/rUCGqsBUOb1d7OsEVJo7BITfMIL.jpg", "order": 4}, {"name": "Sydney Penny", "character": "Megan Wheeler", "id": 158833, "credit_id": "52fe44c3c3a36847f80a8a95", "cast_id": 16, "profile_path": "/vyzXqoo7jLCUjuXD78zbQ98DB8w.jpg", "order": 5}, {"name": "Richard Kiel", "character": "Club", "id": 10460, "credit_id": "52fe44c3c3a36847f80a8a91", "cast_id": 15, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 6}, {"name": "Doug McGrath", "character": "Spider Conway", "id": 62033, "credit_id": "53a2e1cf0e0a26228600152c", "cast_id": 18, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 7}, {"name": "John Russell", "character": "Stockburn", "id": 4304, "credit_id": "53a2e3360e0a26227c00155b", "cast_id": 19, "profile_path": "/td1PYzG0wBy36tJx7HsnMcabwzp.jpg", "order": 8}, {"name": "Charles Hallahan", "character": "McGill", "id": 15414, "credit_id": "53a2e3620e0a262282001649", "cast_id": 20, "profile_path": "/bXRE5dfHZZhovEbXgQCXDTw9ZHY.jpg", "order": 9}, {"name": "Marvin J. McIntyre", "character": "Jagou", "id": 13003, "credit_id": "53a2e37f0e0a262279001632", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Fran Ryan", "character": "Ma Blankenship", "id": 152670, "credit_id": "53a2e470c3a36831fc00146d", "cast_id": 22, "profile_path": "/ht4E3qC3uO9CsldpoY2BeLaUbuX.jpg", "order": 11}, {"name": "Richard Hamilton", "character": "Jed Blankenship", "id": 9633, "credit_id": "53a2e495c3a36831f90014f9", "cast_id": 23, "profile_path": "/voxABW599IHapx2AY9c16mqNK3n.jpg", "order": 12}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe44c3c3a36847f80a8a4f", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.7, "runtime": 115}, "688": {"poster_path": "/zBzIFqhYzaKJ6sg8p7svRUFwtD6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A melancholy romance about a farmers wife who meets a photographer who\u2019s way of life that is completely foreign to her leading her to become attracted to him. She is confronted with the difficult decision to go on with the relationship thus leaving her family, or to stay and continue her ordinary life until her death. Meryl Streep was nominated for an Oscar for her excellent performance.", "video": false, "id": 688, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Bridges of Madison County", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112579", "adult": false, "backdrop_path": "/jansnSUSVM8ujoFCUfFrygyNSba.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1995-09-28", "popularity": 0.814982229534737, "original_title": "The Bridges of Madison County", "budget": 0, "cast": [{"name": "Meryl Streep", "character": "Francesca Johnson", "id": 5064, "credit_id": "52fe426ac3a36847f801cfc5", "cast_id": 10, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Robert Kincaid", "id": 190, "credit_id": "52fe426ac3a36847f801cfc9", "cast_id": 11, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Annie Corley", "character": "Caroline Johnson", "id": 6907, "credit_id": "52fe426ac3a36847f801cfcd", "cast_id": 12, "profile_path": "/ypA6im4I1S5SzzNAJOdRmZq01YX.jpg", "order": 2}, {"name": "Victor Slezak", "character": "Michael Johnson", "id": 10379, "credit_id": "52fe426ac3a36847f801cfd1", "cast_id": 13, "profile_path": "/m3Wi4uifukUJl2GA3QEOHctPESz.jpg", "order": 3}, {"name": "Jim Haynie", "character": "Richard Johnson", "id": 10380, "credit_id": "52fe426ac3a36847f801cfd5", "cast_id": 14, "profile_path": "/aFXy2ef18bE6gqibhDoZ7EAsq8n.jpg", "order": 4}, {"name": "Sarah Kathryn Schmitt", "character": "Caroline as a young girl", "id": 10381, "credit_id": "52fe426ac3a36847f801cfd9", "cast_id": 15, "profile_path": "/nKr6sUws5FKof5Am9svH436GzJK.jpg", "order": 5}, {"name": "Christopher Kroon", "character": "Michael as a young boy", "id": 10382, "credit_id": "52fe426ac3a36847f801cfdd", "cast_id": 16, "profile_path": "/laNbeJ8BRJy8dOJqXCALHcWQWqP.jpg", "order": 6}, {"name": "Phyllis Lyons", "character": "Betty", "id": 10383, "credit_id": "52fe426bc3a36847f801cfe1", "cast_id": 17, "profile_path": "/gShHL20sIsP5AS2w6ZGPvGb10Hz.jpg", "order": 7}, {"name": "Debra Monk", "character": "Madge", "id": 10386, "credit_id": "52fe426bc3a36847f801cfe5", "cast_id": 18, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 8}, {"name": "Richard Lage", "character": "Lawyer Peterson", "id": 10388, "credit_id": "52fe426bc3a36847f801cfe9", "cast_id": 19, "profile_path": "/8UYkue0JxE9JGZ887NWuyvIYITV.jpg", "order": 9}, {"name": "Michelle Benes", "character": "Lucy Redfield", "id": 10389, "credit_id": "52fe426bc3a36847f801cfed", "cast_id": 20, "profile_path": "/sEz3lmycMzoMPFpX2Wr3hfq9ZkG.jpg", "order": 10}, {"name": "Alison Wiegert", "character": "Child #1", "id": 1402769, "credit_id": "54987617925141502400003e", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801cf97", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.1, "runtime": 135}, "691": {"poster_path": "/igNXm5naC2BOoRgHidscl51JsTB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185438673, "overview": "Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.", "video": false, "id": 691, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Spy Who Loved Me", "tagline": "It's the BIGGEST. It's the BEST. It's BOND. And B-E-Y-O-N-D.", "vote_count": 144, "homepage": "http://www.mgm.com/view/movie/1891/The-Spy-Who-Loved-Me/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0076752", "adult": false, "backdrop_path": "/2tCAEhE2rPONBmUOs4W73AlBWYg.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1977-07-19", "popularity": 1.50970501328981, "original_title": "The Spy Who Loved Me", "budget": 14000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426bc3a36847f801d151", "cast_id": 1, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Barbara Bach", "character": "Major Anya Amasova", "id": 10458, "credit_id": "52fe426bc3a36847f801d155", "cast_id": 2, "profile_path": "/EYYNEUN0CmLDto4cDEesM7pS4V.jpg", "order": 1}, {"name": "Curd J\u00fcrgens", "character": "Karl Stromberg", "id": 10459, "credit_id": "52fe426bc3a36847f801d159", "cast_id": 3, "profile_path": "/psFeEFYhy1tUn9y4vLxF9eSKMK9.jpg", "order": 2}, {"name": "Richard Kiel", "character": "Jaws", "id": 10460, "credit_id": "52fe426bc3a36847f801d15d", "cast_id": 4, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 3}, {"name": "Caroline Munro", "character": "Naomi", "id": 10461, "credit_id": "52fe426bc3a36847f801d161", "cast_id": 5, "profile_path": "/2yPLDrhJjjwjfQX6OMwBZnEyxmr.jpg", "order": 4}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426bc3a36847f801d165", "cast_id": 6, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 5}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426bc3a36847f801d169", "cast_id": 7, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 6}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426bc3a36847f801d16d", "cast_id": 8, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 7}, {"name": "George Baker", "character": "Captain Benson", "id": 10173, "credit_id": "52fe426bc3a36847f801d171", "cast_id": 9, "profile_path": "/ogT7DAofS8SqeaZlQQSmJcn2sN8.jpg", "order": 8}, {"name": "Michael Billington", "character": "Sergei Barsov", "id": 10463, "credit_id": "52fe426bc3a36847f801d175", "cast_id": 10, "profile_path": "/2MmeN8YnrA6Bk4nHOS6B443xUt.jpg", "order": 9}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426bc3a36847f801d179", "cast_id": 12, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 10}, {"name": "Vernon Dobtcheff", "character": "Max Kalba", "id": 649, "credit_id": "52fe426bc3a36847f801d17d", "cast_id": 14, "profile_path": "/lcPki2IDdmRvqiBbv2RUBfgm3IH.jpg", "order": 11}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426bc3a36847f801d181", "cast_id": 15, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 12}, {"name": "Sydney Tafler", "character": "Liparus Captain", "id": 109865, "credit_id": "52fe426bc3a36847f801d1d9", "cast_id": 30, "profile_path": "/i8rQgwaffxh7nBWZknB2RV55zWw.jpg", "order": 13}, {"name": "Olga Bisera", "character": "Felicca", "id": 10464, "credit_id": "5401eba1c3a368060300306a", "cast_id": 31, "profile_path": "/5RAnZqB61GPlNuexrBhCCkKre8x.jpg", "order": 14}, {"name": "Edward de Souza", "character": "Sheik Hosein", "id": 10465, "credit_id": "5401ec13c3a3684363003322", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Valerie Leon", "character": "Hotel Recepcionist", "id": 95099, "credit_id": "5401ec56c3a368068c003458", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Nadim Sawalha", "character": "Aziz Fekkesh", "id": 2980, "credit_id": "5401ec78c3a3682d98001abd", "cast_id": 34, "profile_path": "/94kMNtU2FYXruX4BOOjWrWkoe2x.jpg", "order": 17}, {"name": "Sue Vanner", "character": "Log Cabin Girl", "id": 104279, "credit_id": "5401ecc8c3a368068c003467", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Eva Reuber-Staier", "character": "Rublevich", "id": 104940, "credit_id": "5401ece0c3a3682d98001ac3", "cast_id": 36, "profile_path": null, "order": 19}], "directors": [{"name": "Lewis Gilbert", "department": "Directing", "job": "Director", "credit_id": "52fe426bc3a36847f801d187", "profile_path": "/9KAGNVy7N8jZKSFhrXe3Y28XwJt.jpg", "id": 10076}], "vote_average": 6.0, "runtime": 125}, "693": {"poster_path": "/xHAqB06iL5D6HyOS6QpgyKkRQHD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 516642939, "overview": "In this sequel to the hit comedy Meet the Parents, hard-to-crack ex-CIA man Jack Byrnes and his wife, Dina, head for the warmer climes of Florida to meet son-in-law-to-be Greg Focker's mom and dad, Bernie and Roz. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.", "video": false, "id": 693, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Meet the Fockers", "tagline": "Misery loves family.", "vote_count": 346, "homepage": "http://www.meetthefockers.com/index.php", "belongs_to_collection": {"backdrop_path": "/fgcgqjw37RThZCbVrfLLkJsqNNR.jpg", "poster_path": "/WFkinadVm4NRynRKuUcaLFNIDx.jpg", "id": 51509, "name": "Meet the Parents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0290002", "adult": false, "backdrop_path": "/f0eF1rB9KnZPonliSt8CazKvihD.jpg", "production_companies": [{"name": "Everyman Pictures", "id": 2242}, {"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Tribeca Productions", "id": 11391}], "release_date": "2004-12-15", "popularity": 1.03915014200503, "original_title": "Meet the Fockers", "budget": 80000000, "cast": [{"name": "Ben Stiller", "character": "Gaylord 'Greg' Focker", "id": 7399, "credit_id": "52fe426bc3a36847f801d319", "cast_id": 22, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Teri Polo", "character": "Pam Byrnes", "id": 10399, "credit_id": "52fe426bc3a36847f801d31d", "cast_id": 23, "profile_path": "/67k0q1YYVIeMd0wZalfqJ2FYLuu.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Jack Byrnes", "id": 380, "credit_id": "52fe426bc3a36847f801d321", "cast_id": 24, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Dustin Hoffman", "character": "Bernie Focker", "id": 4483, "credit_id": "52fe426bc3a36847f801d325", "cast_id": 25, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 3}, {"name": "Barbra Streisand", "character": "Rozalin Focker", "id": 10400, "credit_id": "52fe426bc3a36847f801d329", "cast_id": 26, "profile_path": "/iLkX0Qwz2BH42rcZ0yWqPtyKSeN.jpg", "order": 4}, {"name": "Blythe Danner", "character": "Dina Byrnes", "id": 10401, "credit_id": "52fe426bc3a36847f801d32d", "cast_id": 27, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Officer LeFlore", "id": 1462, "credit_id": "52fe426bc3a36847f801d331", "cast_id": 28, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "Alanna Ubach", "character": "Isabel Villalobos", "id": 10402, "credit_id": "52fe426bc3a36847f801d335", "cast_id": 29, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 7}, {"name": "Shelley Berman", "character": "Judge Ira", "id": 10403, "credit_id": "52fe426bc3a36847f801d339", "cast_id": 30, "profile_path": "/ka7bIOts2wVNqcdAvR8k24Z5d7h.jpg", "order": 8}, {"name": "Owen Wilson", "character": "Kevin Rawley", "id": 887, "credit_id": "52fe426bc3a36847f801d33d", "cast_id": 31, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 9}, {"name": "Ray Santiago", "character": "Jorge Villalobos", "id": 52957, "credit_id": "52fe426bc3a36847f801d341", "cast_id": 32, "profile_path": "/uqOaejdbrJDTnH1KfOWljs5YO7q.jpg", "order": 10}, {"name": "Spencer Pickren", "character": "Little Jack 'L.J.' Byrnes", "id": 1003453, "credit_id": "52fe426bc3a36847f801d345", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Bradley Pickren", "character": "Little Jack 'L.J.' Byrnes", "id": 1003454, "credit_id": "52fe426bc3a36847f801d349", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Kali Rocha", "character": "Flight Attendant", "id": 149665, "credit_id": "52fe426bc3a36847f801d34d", "cast_id": 35, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 13}, {"name": "Dorie Barton", "character": "Airline Clerk", "id": 155393, "credit_id": "52fe426bc3a36847f801d351", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Jack Plotnick", "character": "Rent-a-Car Agent", "id": 29795, "credit_id": "52fe426bc3a36847f801d355", "cast_id": 37, "profile_path": "/oFGLmsfLkVwMtCocgKbnCPj0gYq.jpg", "order": 15}, {"name": "Wayne Thomas Yorke", "character": "Airport Security Guard", "id": 172201, "credit_id": "52fe426bc3a36847f801d359", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Max Hoffman", "character": "Woody Focker", "id": 963693, "credit_id": "52fe426bc3a36847f801d35d", "cast_id": 39, "profile_path": null, "order": 17}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe426bc3a36847f801d2a3", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.1, "runtime": 115}, "694": {"poster_path": "/caoYMcjUamGoBVy65i1AHJBvdzw.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 44017374, "overview": "Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.", "video": false, "id": 694, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Shining", "tagline": "A masterpiece of modern horror.", "vote_count": 859, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0081505", "adult": false, "backdrop_path": "/eOJbXOjo1GHfO6yMFTEzjsjNL0M.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Hawk Films", "id": 88}, {"name": "Peregrine", "id": 11272}, {"name": "Producers Circle", "id": 734}], "release_date": "1980-05-22", "popularity": 1.6362099716205, "original_title": "The Shining", "budget": 19000000, "cast": [{"name": "Jack Nicholson", "character": "Jack Torrance", "id": 514, "credit_id": "52fe426bc3a36847f801d3ff", "cast_id": 18, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Shelley Duvall", "character": "Wendy Torrance", "id": 10409, "credit_id": "52fe426bc3a36847f801d403", "cast_id": 19, "profile_path": "/4MDrH9PxYrGGHXB7LmObYTdoEHV.jpg", "order": 1}, {"name": "Danny Lloyd", "character": "Danny Torrance", "id": 10410, "credit_id": "52fe426bc3a36847f801d407", "cast_id": 20, "profile_path": "/ujXiZlSJVhrWR8FgUbuRmZHSdJp.jpg", "order": 2}, {"name": "Scatman Crothers", "character": "Dick Hallorann", "id": 7077, "credit_id": "52fe426bc3a36847f801d40b", "cast_id": 21, "profile_path": "/n3REW3TGbjLC8SbaZG7g48pm98n.jpg", "order": 3}, {"name": "Barry Nelson", "character": "Stuart Ullman", "id": 10411, "credit_id": "52fe426bc3a36847f801d40f", "cast_id": 22, "profile_path": "/d07leQJAhNZbpjfMwWHH0e6VBG6.jpg", "order": 4}, {"name": "Philip Stone", "character": "Delbert Grady", "id": 694, "credit_id": "52fe426bc3a36847f801d413", "cast_id": 23, "profile_path": "/qtaBPJZC7MpoyWfcyXJ1zdEfYwU.jpg", "order": 5}, {"name": "Joe Turkel", "character": "Lloyd the Bartender", "id": 592, "credit_id": "52fe426bc3a36847f801d417", "cast_id": 24, "profile_path": "/8d16GA57SnVXP3WGB0fbkFCKily.jpg", "order": 6}, {"name": "Anne Jackson", "character": "Doctor", "id": 10412, "credit_id": "52fe426bc3a36847f801d41b", "cast_id": 25, "profile_path": "/t6htAqvpvAkWmwdIiwBDZjWS2Ne.jpg", "order": 7}, {"name": "Tony Burton", "character": "Larry Durkin", "id": 16504, "credit_id": "52fe426bc3a36847f801d41f", "cast_id": 26, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 8}, {"name": "Barry Dennen", "character": "Bill Watson", "id": 72742, "credit_id": "52fe426bc3a36847f801d423", "cast_id": 27, "profile_path": "/zELog0P3l2ikmhZ9TIJmk81FFla.jpg", "order": 9}, {"name": "Lia Beldam", "character": "Young Woman in Bath", "id": 1413939, "credit_id": "54b7e3299251411d6a0025ec", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Billie Gibson", "character": "Old Woman in Bath", "id": 1413940, "credit_id": "54b7e3489251411d6600239f", "cast_id": 29, "profile_path": null, "order": 11}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe426bc3a36847f801d39b", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.6, "runtime": 144}, "696": {"poster_path": "/2OmmKrcLfFQeTd5N7pZeAw6fJPA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The life of a divorced television writer dating a teenage girl is further complicated when he falls in love with his best friend's mistress.", "video": false, "id": 696, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Manhattan", "tagline": "Woody Allen's New Comedy Hit", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079522", "adult": false, "backdrop_path": "/qjm30F9hwJ6BNbsb7iOrrKwkY3n.jpg", "production_companies": [{"name": "Jack Rollins & Charles H. Joffe Productions", "id": 13309}], "release_date": "1979-04-25", "popularity": 0.288695280838409, "original_title": "Manhattan", "budget": 0, "cast": [{"name": "Woody Allen", "character": "Isaac Davis", "id": 1243, "credit_id": "52fe426cc3a36847f801d5ff", "cast_id": 17, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Mary Wilkie", "id": 3092, "credit_id": "52fe426cc3a36847f801d603", "cast_id": 18, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Michael Murphy", "character": "Yale", "id": 4776, "credit_id": "52fe426cc3a36847f801d607", "cast_id": 19, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 2}, {"name": "Mariel Hemingway", "character": "Tracy", "id": 10447, "credit_id": "52fe426cc3a36847f801d60b", "cast_id": 20, "profile_path": "/lNlfYgxGwVSLC4tPJXyos02IRQC.jpg", "order": 3}, {"name": "Meryl Streep", "character": "Jill", "id": 5064, "credit_id": "52fe426cc3a36847f801d60f", "cast_id": 21, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 4}, {"name": "Anne Byrne Hoffman", "character": "Emily", "id": 10448, "credit_id": "52fe426cc3a36847f801d613", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Karen Ludwig", "character": "Connie", "id": 10449, "credit_id": "52fe426cc3a36847f801d617", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Michael O'Donoghue", "character": "Dennis", "id": 10450, "credit_id": "52fe426cc3a36847f801d61b", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Wallace Shawn", "character": "Jeremiah", "id": 12900, "credit_id": "52fe426cc3a36847f801d61f", "cast_id": 25, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 8}, {"name": "Tisa Farrow", "character": "Party Guest", "id": 43203, "credit_id": "53a2d5260e0a26227c001423", "cast_id": 26, "profile_path": "/6FT5PHmra4IOyGWNlbCBptYaYwX.jpg", "order": 9}, {"name": "Charles Levin", "character": "Television Actor #1", "id": 118071, "credit_id": "53a2d57e0e0a2622790014eb", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Karen Allen", "character": "Television Actor #2", "id": 650, "credit_id": "53a2d5af0e0a26228200153e", "cast_id": 28, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 11}, {"name": "David Rasche", "character": "Television Actor #3", "id": 33533, "credit_id": "53a2d5c70e0a262282001541", "cast_id": 29, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 12}, {"name": "Mark Linn-Baker", "character": "Shakespearean Actor", "id": 95975, "credit_id": "53a2d5f00e0a26227c001439", "cast_id": 30, "profile_path": "/myqnA6cnH8xdrPZvQyKO1JL8nEB.jpg", "order": 13}, {"name": "Frances Conroy", "character": "Shakespearean Actress", "id": 4432, "credit_id": "53a2d6070e0a26228600144e", "cast_id": 31, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 14}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d5a7", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.4, "runtime": 96}, "49849": {"poster_path": "/kcUXBEwWDzpRhKreh6C2NSStBiU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 174822325, "overview": "A stranger stumbles into the desert town of Absolution with no memory of his past and a futuristic shackle around his wrist. With the help of mysterious beauty Ella and the iron-fisted Colonel Dolarhyde, he finds himself leading an unlikely posse of cowboys, outlaws, and Apache warriors against a common enemy from beyond this world in an epic showdown for survival.", "video": false, "id": 49849, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "Cowboys & Aliens", "tagline": "First Contact. Last Stand.", "vote_count": 745, "homepage": "http://www.cowboysandaliensmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0409847", "adult": false, "backdrop_path": "/gmapSsDGkPNPRxaQXLdotYkYKzM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Relativity Media", "id": 7295}, {"name": "Imagine Entertainment", "id": 23}, {"name": "K/O Paper Products", "id": 7296}, {"name": "Fairview Entertainment", "id": 7297}, {"name": "platinum studios", "id": 7218}, {"name": "K/O Camera Toys", "id": 23300}], "release_date": "2011-07-29", "popularity": 1.2534514039299, "original_title": "Cowboys & Aliens", "budget": 163000000, "cast": [{"name": "Olivia Wilde", "character": "Ella", "id": 59315, "credit_id": "52fe47abc3a36847f8141e21", "cast_id": 6, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Col. Woodrow Dolarhyde", "id": 3, "credit_id": "52fe47abc3a36847f8141e25", "cast_id": 7, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Daniel Craig", "character": "Jake Lonergan", "id": 8784, "credit_id": "52fe47abc3a36847f8141e29", "cast_id": 8, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "Doc", "id": 6807, "credit_id": "52fe47abc3a36847f8141e2d", "cast_id": 9, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Paul Dano", "character": "Percy", "id": 17142, "credit_id": "52fe47abc3a36847f8141e31", "cast_id": 10, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 4}, {"name": "Walton Goggins", "character": "Hunt", "id": 27740, "credit_id": "52fe47abc3a36847f8141e35", "cast_id": 11, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 5}, {"name": "Ana de la Reguera", "character": "Maria", "id": 57409, "credit_id": "52fe47abc3a36847f8141e39", "cast_id": 12, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 6}, {"name": "Clancy Brown", "character": "Meacham", "id": 6574, "credit_id": "52fe47abc3a36847f8141e3d", "cast_id": 13, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 7}, {"name": "Keith Carradine", "character": "Sheriff Taggart", "id": 30613, "credit_id": "52fe47abc3a36847f8141e41", "cast_id": 14, "profile_path": "/xAZfdJPrQX5OnHOF0OXMOo5sUlX.jpg", "order": 8}, {"name": "Noah Ringer", "character": "Emmet", "id": 88816, "credit_id": "52fe47abc3a36847f8141e45", "cast_id": 15, "profile_path": "/rViKaQd4q8qCFmFRbrZY849ykST.jpg", "order": 9}, {"name": "David O'Hara", "character": "Pat Dolan", "id": 2482, "credit_id": "52fe47abc3a36847f8141e49", "cast_id": 16, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 10}, {"name": "Adam Beach", "character": "Nat Colorado", "id": 33527, "credit_id": "52fe47abc3a36847f8141e4d", "cast_id": 17, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 11}, {"name": "Abigail Spencer", "character": "Alice", "id": 123725, "credit_id": "52fe47abc3a36847f8141e51", "cast_id": 18, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 12}, {"name": "Toby Huss", "character": "Roy Murphy", "id": 18271, "credit_id": "52fe47abc3a36847f8141e55", "cast_id": 19, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 13}, {"name": "Raoul Trujillo", "character": "Black Knife", "id": 17688, "credit_id": "52fe47abc3a36847f8141e59", "cast_id": 20, "profile_path": "/vkrPv04OJRV9G6u6yydjJz2WKE0.jpg", "order": 14}, {"name": "David Midthunder", "character": "Apache Warrior 1", "id": 1039678, "credit_id": "52fe47abc3a36847f8141e69", "cast_id": 23, "profile_path": "/f0piRndy8kXPUh4onNoNNoeIO9u.jpg", "order": 15}, {"name": "Matthew Taylor", "character": "Luke Claiborne", "id": 591769, "credit_id": "52fe47abc3a36847f8141e73", "cast_id": 25, "profile_path": "/aCWVlkHatBh7DenW757xZIbf32d.jpg", "order": 16}, {"name": "Brian Duffy", "character": "Deputy", "id": 949852, "credit_id": "52fe47abc3a36847f8141e77", "cast_id": 26, "profile_path": "/1XlYJr9FaTZG4582ziUIoHT8QSP.jpg", "order": 17}, {"name": "Brendan Wayne", "character": "Charlie Lyle", "id": 946854, "credit_id": "52fe47abc3a36847f8141e7b", "cast_id": 27, "profile_path": "/e2bhg69on55SXbQnsxDRROpNohP.jpg", "order": 18}, {"name": "Gavin Grazer", "character": "Ed", "id": 38572, "credit_id": "52fe47abc3a36847f8141e7f", "cast_id": 28, "profile_path": "/qe5J2NMzcN2NVgVS1D04tuDUyke.jpg", "order": 19}, {"name": "Wyatt Russell", "character": "Little Mickey", "id": 986808, "credit_id": "52fe47abc3a36847f8141e83", "cast_id": 29, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 20}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe47abc3a36847f8141e1d", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 5.4, "runtime": 119}, "698": {"poster_path": "/s6sih3YtZTscu5XgPuUeJuQ8O9a.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 210300000, "overview": "During the transportation of a Space Shuttle a Boeing 747 crashes in the Atlantic Ocean yet when they go to look for the destroyed shuttle it is not there. James Bond investigates the missing mission space shuttle and soon learns that the shuttles owner Hugo Drax wants to kill all of mankind.", "video": false, "id": 698, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Moonraker", "tagline": "Outer space now belongs to 007.", "vote_count": 151, "homepage": "http://www.mgm.com/view/movie/1292/Moonraker/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0079574", "adult": false, "backdrop_path": "/ueJ8K4ik1UQKa3cVUa8RHfDDqL.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "United Artists", "id": 60}], "release_date": "1979-06-27", "popularity": 1.25447242115479, "original_title": "Moonraker", "budget": 34000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426cc3a36847f801d709", "cast_id": 15, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Lois Chiles", "character": "Dr. Holly Goodhead", "id": 10475, "credit_id": "52fe426cc3a36847f801d70d", "cast_id": 16, "profile_path": "/5a6SPOL0x0q25ofCgZRkduadqnl.jpg", "order": 1}, {"name": "Michael Lonsdale", "character": "Hugo Drax", "id": 2369, "credit_id": "52fe426cc3a36847f801d72f", "cast_id": 27, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 2}, {"name": "Corinne Cl\u00e9ry", "character": "Corinne Dufour", "id": 10476, "credit_id": "52fe426cc3a36847f801d715", "cast_id": 18, "profile_path": "/oNkBqfWJ3oVxNU0DswS3iBXwXx7.jpg", "order": 3}, {"name": "Richard Kiel", "character": "Jaws", "id": 10460, "credit_id": "52fe426cc3a36847f801d711", "cast_id": 17, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 4}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426cc3a36847f801d719", "cast_id": 19, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 5}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426cc3a36847f801d71d", "cast_id": 20, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 6}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426cc3a36847f801d721", "cast_id": 21, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 7}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426cc3a36847f801d725", "cast_id": 22, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 8}, {"name": "Toshir\u00f4 Suga", "character": "Chang", "id": 10479, "credit_id": "54010bd8c3a3684363002038", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Emily Bolton", "character": "Manuela", "id": 10481, "credit_id": "54010c15c3a3684360002223", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Blanche Ravalec", "character": "Dolly", "id": 10483, "credit_id": "54010c43c3a3684372002094", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Irka Bochenko", "character": "Blonde Beauty", "id": 931614, "credit_id": "54010c5cc3a3687d50000671", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Leila Shenna", "character": "Hostess Private Jet", "id": 1303696, "credit_id": "54010cb0c3a3684372002097", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Walter Gotell", "character": "General Gogol", "id": 6610, "credit_id": "54010ccfc3a3682d98000756", "cast_id": 35, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 15}, {"name": "Alfie Bass", "character": "Consumptive Italian", "id": 30119, "credit_id": "54010d5cc3a3684366002113", "cast_id": 38, "profile_path": "/kgWepJDGiRkmNYWw5FtYUwsF9JK.jpg", "order": 18}, {"name": "Mike Marshall", "character": "Col. Scott", "id": 19613, "credit_id": "5401170ec3a3684372002177", "cast_id": 40, "profile_path": "/4YQxw0JnqkSOQPUT6HOeAniJMFk.jpg", "order": 20}, {"name": "Douglas Lambert", "character": "Mission Control Director", "id": 178411, "credit_id": "540119780e0a2658ee003470", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Arthur Howard", "character": "Cavendish", "id": 219130, "credit_id": "540119bb0e0a2658db0034fd", "cast_id": 42, "profile_path": null, "order": 22}], "directors": [{"name": "Lewis Gilbert", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d6bd", "profile_path": "/9KAGNVy7N8jZKSFhrXe3Y28XwJt.jpg", "id": 10076}], "vote_average": 5.5, "runtime": 126}, "699": {"poster_path": "/abWnjvidM4yZI03N7l2jNuwdhDv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 195312802, "overview": "A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first.", "video": false, "id": 699, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "For Your Eyes Only", "tagline": "No one comes close to James Bond, 007.", "vote_count": 139, "homepage": "http://www.mgm.com/view/movie/695/For-Your-Eyes-Only/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0082398", "adult": false, "backdrop_path": "/hg8ecg8LrR8ChvZh4aMETNUraGA.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1981-06-23", "popularity": 1.05922584255002, "original_title": "For Your Eyes Only", "budget": 28000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426cc3a36847f801d7ff", "cast_id": 17, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Carole Bouquet", "character": "Melina Havelock", "id": 10500, "credit_id": "52fe426cc3a36847f801d803", "cast_id": 18, "profile_path": "/7zhFzzEEGVT0DonbSyaXgzKjAGI.jpg", "order": 1}, {"name": "Chaim Topol", "character": "Milos Columbo", "id": 10501, "credit_id": "52fe426cc3a36847f801d807", "cast_id": 19, "profile_path": "/tfFE1NOGPAPfcWLd4rITJe4G8DW.jpg", "order": 2}, {"name": "Lynn-Holly Johnson", "character": "Bibi Dahl", "id": 10502, "credit_id": "52fe426cc3a36847f801d80b", "cast_id": 20, "profile_path": "/zX61Wvq0rzuxgEKoFfcth8v2pYR.jpg", "order": 3}, {"name": "Julian Glover", "character": "Aristotle Kristatos", "id": 740, "credit_id": "52fe426cc3a36847f801d80f", "cast_id": 21, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 4}, {"name": "Cassandra Harris", "character": "Countess Lisl von Schlaf", "id": 10503, "credit_id": "52fe426cc3a36847f801d813", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Jill Bennett", "character": "Jacoba Brink", "id": 10504, "credit_id": "52fe426cc3a36847f801d817", "cast_id": 23, "profile_path": "/fEUBRw8o11hyAg1sF4fFDwTq5VA.jpg", "order": 6}, {"name": "Michael Gothard", "character": "Emile Leopold Locque", "id": 10505, "credit_id": "52fe426cc3a36847f801d81b", "cast_id": 24, "profile_path": "/cv4ncIRI62qHEk6IlGq54jtjIOI.jpg", "order": 7}, {"name": "John Wyman", "character": "Erich Kriegler", "id": 10506, "credit_id": "52fe426cc3a36847f801d81f", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Jack Hedley", "character": "Sir Timothy Havelock", "id": 10507, "credit_id": "52fe426cc3a36847f801d823", "cast_id": 26, "profile_path": "/nHNv9DqFM8VWFxBrK88nwYqCG0j.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426cc3a36847f801d827", "cast_id": 27, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426cc3a36847f801d82b", "cast_id": 28, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426cc3a36847f801d82f", "cast_id": 29, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 12}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426cc3a36847f801d833", "cast_id": 30, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 13}, {"name": "James Villiers", "character": "Tanner", "id": 39066, "credit_id": "52fe426cc3a36847f801d837", "cast_id": 31, "profile_path": "/uTm5qTLtSdilvAT6zelWrZHRTAu.jpg", "order": 14}, {"name": "John Moreno", "character": "Ferrara", "id": 1173719, "credit_id": "52fe426cc3a36847f801d83b", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Charles Dance", "character": "Claus", "id": 4391, "credit_id": "52fe426cc3a36847f801d83f", "cast_id": 33, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 16}, {"name": "Paul Angelis", "character": "Karageorge", "id": 27652, "credit_id": "52fe426cc3a36847f801d84f", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Toby Robins", "character": "Iona Havelock", "id": 35065, "credit_id": "52fe426cc3a36847f801d853", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Jack Klaff", "character": "Apostis", "id": 162432, "credit_id": "52fe426cc3a36847f801d857", "cast_id": 38, "profile_path": "/6l21oFayFKyyuBEELJEaj3veo21.jpg", "order": 19}, {"name": "Alkis Kritikos", "character": "Santos", "id": 971230, "credit_id": "52fe426cc3a36847f801d85b", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Stag Theodore", "character": "Nikos", "id": 1205478, "credit_id": "52fe426cc3a36847f801d85f", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Stefan Kalipha", "character": "Hector Gonzales", "id": 25079, "credit_id": "52fe426cc3a36847f801d863", "cast_id": 41, "profile_path": "/g1mNJ1eTrVi5wD1d76kRnFWbn2h.jpg", "order": 22}, {"name": "Graham Crowden", "character": "First Sea Lord", "id": 10654, "credit_id": "52fe426cc3a36847f801d867", "cast_id": 42, "profile_path": "/wyGg5BXqE1N8oG1Ag82I3yHYQdW.jpg", "order": 23}, {"name": "Noel Johnson", "character": "Vice Admiral", "id": 214149, "credit_id": "52fe426cc3a36847f801d86b", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "William Hoyland", "character": "McGregor", "id": 219736, "credit_id": "52fe426cc3a36847f801d86f", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Paul Brooke", "character": "Bunky", "id": 9142, "credit_id": "52fe426cc3a36847f801d873", "cast_id": 45, "profile_path": "/eiIvFEhS7WABCiIi5UI0XS70ntD.jpg", "order": 26}, {"name": "Eva Reuber-Staier", "character": "Rublevich", "id": 1064074, "credit_id": "52fe426cc3a36847f801d877", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Fred Bryant", "character": "Vicar", "id": 1205479, "credit_id": "52fe426cc3a36847f801d87b", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Robbin Young", "character": "Girl in Flower Shop", "id": 1205481, "credit_id": "52fe426cc3a36847f801d87f", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Graham Hawkes", "character": "Mantis Man", "id": 1205482, "credit_id": "52fe426cc3a36847f801d883", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "John Wells", "character": "Denis Thatcher", "id": 141347, "credit_id": "52fe426cc3a36847f801d887", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Janet Brown", "character": "The Prime Minister", "id": 1205483, "credit_id": "52fe426cc3a36847f801d88b", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Maureen Bennett", "character": "Sharon, Q's Assistant (uncredited)", "id": 185885, "credit_id": "52fe426cc3a36847f801d88f", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Andy Bradford", "character": "Guard at St. Cyril (uncredited)", "id": 199077, "credit_id": "52fe426cc3a36847f801d893", "cast_id": 53, "profile_path": "/5esiedhO0bUygYwpIDUyfaU05uu.jpg", "order": 34}, {"name": "Jeremy Bulloch", "character": "Smithers", "id": 33185, "credit_id": "52fe426cc3a36847f801d897", "cast_id": 54, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 35}, {"name": "Clive Curtis", "character": "Gonz\u00e1lez Henchman (uncredited)", "id": 1205484, "credit_id": "52fe426cc3a36847f801d89b", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Lalla Dean", "character": "Girl at Pool (uncredited)", "id": 1205485, "credit_id": "52fe426cc3a36847f801d89f", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Evelyn Drogue", "character": "Girl at Pool (uncredited)", "id": 1205486, "credit_id": "52fe426cc3a36847f801d8a3", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "Sheena Easton", "character": "Herself - Singer in Title Sequence (uncredited)", "id": 109988, "credit_id": "52fe426cc3a36847f801d8a7", "cast_id": 58, "profile_path": "/gEhSGKAvIqhMYPjc5AI7f7HnRGs.jpg", "order": 39}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d7ad", "profile_path": null, "id": 10179}], "vote_average": 5.9, "runtime": 127}, "700": {"poster_path": "/vyMJidOSK5SUCxXt9Crj7Rs5w9C.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 183700000, "overview": "James Bond is sent to investigate after a fellow \u201c00\u201d agent is found dead with a priceless Farberge egg. James bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War.", "video": false, "id": 700, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Octopussy", "tagline": "Nobody does him better.", "vote_count": 139, "homepage": "http://www.mgm.com/view/movie/1394/Octopussy/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0086034", "adult": false, "backdrop_path": "/nOp4RM4AYlW8Ux0XHBTqXbPlSgY.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "United Artists", "id": 60}], "release_date": "1983-06-05", "popularity": 1.51426130989171, "original_title": "Octopussy", "budget": 27500000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426cc3a36847f801d913", "cast_id": 1, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Maud Adams", "character": "Octopussy", "id": 10342, "credit_id": "52fe426cc3a36847f801d917", "cast_id": 2, "profile_path": "/iflQAeAUNW9zhwNGYCvk0nZR1en.jpg", "order": 1}, {"name": "Louis Jourdan", "character": "Kamal Khan", "id": 10508, "credit_id": "52fe426cc3a36847f801d91b", "cast_id": 3, "profile_path": "/c6rMOqOYoMhjpFffJ6cwCoDS4Nm.jpg", "order": 2}, {"name": "Kristina Wayborn", "character": "Magda", "id": 10509, "credit_id": "52fe426cc3a36847f801d91f", "cast_id": 4, "profile_path": "/4WEv5qQwLI5SB1mzpeyPrCWaNy8.jpg", "order": 3}, {"name": "Kabir Bedi", "character": "Gobinda", "id": 10510, "credit_id": "52fe426cc3a36847f801d923", "cast_id": 5, "profile_path": "/ltCp34kkvNTHuosjH184incMdU1.jpg", "order": 4}, {"name": "Steven Berkoff", "character": "General Orlov", "id": 782, "credit_id": "52fe426cc3a36847f801d927", "cast_id": 6, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 5}, {"name": "David Meyer", "character": "Twin One", "id": 10511, "credit_id": "52fe426cc3a36847f801d92b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Tony Meyer", "character": "Twin Two", "id": 10512, "credit_id": "52fe426cc3a36847f801d92f", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426cc3a36847f801d933", "cast_id": 9, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 8}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426cc3a36847f801d937", "cast_id": 10, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426cc3a36847f801d93b", "cast_id": 11, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Michaela Clavell", "character": "Penelope Smallbone", "id": 10514, "credit_id": "52fe426cc3a36847f801d93f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426cc3a36847f801d943", "cast_id": 13, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 12}, {"name": "Albert Moses", "character": "Sadruddin", "id": 14759, "credit_id": "52fe426cc3a36847f801d9ab", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Geoffrey Keen", "character": "Minister of Defence", "id": 10462, "credit_id": "52fe426cc3a36847f801d9af", "cast_id": 35, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 15}, {"name": "Douglas Wilmer", "character": "Jim Fanning", "id": 89065, "credit_id": "52fe426cc3a36847f801d9b3", "cast_id": 36, "profile_path": "/3aUnwOD2fBGMBcaE9Hj4EqtxKWO.jpg", "order": 16}, {"name": "Andy Bradford", "character": "009", "id": 199077, "credit_id": "52fe426cc3a36847f801d9b7", "cast_id": 37, "profile_path": "/5esiedhO0bUygYwpIDUyfaU05uu.jpg", "order": 17}, {"name": "Philip Voss", "character": "Auctioneer", "id": 189281, "credit_id": "52fe426cc3a36847f801d9bb", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Bruce Boa", "character": "U.S. General", "id": 8664, "credit_id": "52fe426cc3a36847f801d9bf", "cast_id": 39, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 19}, {"name": "Richard LeParmentier", "character": "U.S. Aide (as Richard Parmentier)", "id": 12829, "credit_id": "52fe426cc3a36847f801d9c3", "cast_id": 40, "profile_path": "/u0xNmE4QAS5EUbn7tG44EfYUkib.jpg", "order": 20}, {"name": "Paul Hardwick", "character": "Soviet Chairman", "id": 47139, "credit_id": "52fe426cc3a36847f801d9c7", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Suzanne Jerome", "character": "Gwendoline", "id": 1064072, "credit_id": "52fe426cc3a36847f801d9cb", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Cherry Gillespie", "character": "Midge", "id": 1064073, "credit_id": "52fe426cc3a36847f801d9cf", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Dermot Crowley", "character": "Kamp", "id": 17484, "credit_id": "52fe426cc3a36847f801d9d3", "cast_id": 44, "profile_path": "/z2flyEd3eV8Ho8mXa8rXOHZw9Yg.jpg", "order": 24}, {"name": "Peter Porteous", "character": "Lenkin", "id": 190439, "credit_id": "52fe426cc3a36847f801d9d7", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Eva Reuber-Staier", "character": "Rublevitch (as Eva Rueber-Staier)", "id": 1064074, "credit_id": "52fe426cc3a36847f801d9db", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Jeremy Bulloch", "character": "Smithers (as Jeremy Bullock)", "id": 33185, "credit_id": "52fe426cc3a36847f801d9df", "cast_id": 47, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 27}, {"name": "Tina Hudson", "character": "Bianca", "id": 1064075, "credit_id": "52fe426cc3a36847f801d9e3", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "William Derrick", "character": "Thug with Yo-yo", "id": 1064076, "credit_id": "52fe426cc3a36847f801d9e7", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Stuart Saunders", "character": "Major Clive", "id": 954853, "credit_id": "52fe426cc3a36847f801d9eb", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Patrick Barr", "character": "British Ambassador", "id": 100787, "credit_id": "52fe426cc3a36847f801d9ef", "cast_id": 51, "profile_path": "/pYCWzNSvm7EGagBCe3qHJ1L6Oul.jpg", "order": 31}, {"name": "Vijay Amritraj", "character": "Vijay", "id": 1233481, "credit_id": "532a2bf8c3a3681fdd0006b0", "cast_id": 55, "profile_path": "/ou36AKLWmrgye8DayKvkzfoFymF.jpg", "order": 32}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d949", "profile_path": null, "id": 10179}], "vote_average": 5.9, "runtime": 131}, "703": {"poster_path": "/bzx16zJfmYHginMLOsNmqvajOjy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38251425, "overview": "The neurotic New Yorker Woody Allen tells one of the greatest romantic comedies to be set in the city of New York.", "video": false, "id": 703, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Annie Hall", "tagline": "A nervous romance.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075686", "adult": false, "backdrop_path": "/qNDbThLBQixXwUR3ri8NYHX0ydf.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1977-04-19", "popularity": 1.00920062260039, "original_title": "Annie Hall", "budget": 4000000, "cast": [{"name": "Woody Allen", "character": "Alvy Singer", "id": 1243, "credit_id": "52fe426dc3a36847f801dbdf", "cast_id": 21, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Annie Hall", "id": 3092, "credit_id": "52fe426dc3a36847f801dbe3", "cast_id": 22, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Tony Roberts", "character": "Rob", "id": 10555, "credit_id": "52fe426dc3a36847f801dbe7", "cast_id": 23, "profile_path": "/tSSniQufUlupZCqRkZtiCiQZnkA.jpg", "order": 2}, {"name": "Carol Kane", "character": "Allison", "id": 10556, "credit_id": "52fe426dc3a36847f801dbeb", "cast_id": 24, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 3}, {"name": "Paul Simon", "character": "Tony Lacey", "id": 10557, "credit_id": "52fe426dc3a36847f801dbef", "cast_id": 25, "profile_path": "/tsExCQX0EcVfwIyx1SytyNcfnnO.jpg", "order": 4}, {"name": "Shelley Duvall", "character": "Pam", "id": 10409, "credit_id": "52fe426dc3a36847f801dbf3", "cast_id": 26, "profile_path": "/4MDrH9PxYrGGHXB7LmObYTdoEHV.jpg", "order": 5}, {"name": "Janet Margolin", "character": "Robin", "id": 10558, "credit_id": "52fe426dc3a36847f801dbf7", "cast_id": 27, "profile_path": "/ugN7WTDQxJQvy5795n2GHn3NgfT.jpg", "order": 6}, {"name": "Colleen Dewhurst", "character": "Mrs. Hall", "id": 10559, "credit_id": "52fe426dc3a36847f801dbfb", "cast_id": 28, "profile_path": "/2dALCygtziRLWRZx0CH0IFLJGAn.jpg", "order": 7}, {"name": "Christopher Walken", "character": "Duane Hall", "id": 4690, "credit_id": "52fe426dc3a36847f801dbff", "cast_id": 29, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 8}, {"name": "Donald Symington", "character": "Mr. Hall", "id": 10560, "credit_id": "52fe426dc3a36847f801dc03", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Helen Ludlam", "character": "Grammy Hall", "id": 10561, "credit_id": "52fe426dc3a36847f801dc07", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Mordecai Lawner", "character": "Mr. Singer", "id": 10562, "credit_id": "52fe426dc3a36847f801dc0b", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Joan Neuman", "character": "Mrs. Singer", "id": 10563, "credit_id": "52fe426dc3a36847f801dc0f", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Jonathan Munk", "character": "Alvy Singer - Age 9", "id": 10564, "credit_id": "52fe426dc3a36847f801dc13", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Dick Cavett", "character": "himself", "id": 10565, "credit_id": "52fe426dc3a36847f801dc17", "cast_id": 35, "profile_path": "/wxur4NDgWKAZsjrjpc75ZTzNqsO.jpg", "order": 14}, {"name": "Marshall McLuhan", "character": "himself", "id": 10566, "credit_id": "52fe426dc3a36847f801dc1b", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Jeff Goldblum", "character": "Lacey Party Guest", "id": 4785, "credit_id": "52fe426dc3a36847f801dc1f", "cast_id": 37, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 16}, {"name": "Shelley Hack", "character": "Street Stranger (as Shelly Hack)", "id": 3665, "credit_id": "52fe426dc3a36847f801dc23", "cast_id": 38, "profile_path": "/1FdYlo8W29NyYEqy1KDESo8EqoO.jpg", "order": 17}, {"name": "Beverly D'Angelo", "character": "Actress in Rob's TV Show", "id": 821, "credit_id": "52fe426dc3a36847f801dc27", "cast_id": 39, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 18}, {"name": "Tracey Walter", "character": "Actor in Rob's TV Show", "id": 3801, "credit_id": "52fe426dc3a36847f801dc2b", "cast_id": 40, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 19}, {"name": "Sigourney Weaver", "character": "Alvy's Date Outside Theatre", "id": 10205, "credit_id": "52fe426dc3a36847f801dc2f", "cast_id": 41, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 20}, {"name": "Truman Capote", "character": "Truman Capote Look-Alike (uncredited)", "id": 1930, "credit_id": "52fe426dc3a36847f801dc33", "cast_id": 42, "profile_path": "/rRrTzbxvYAFCq55UopYDnb2aZw4.jpg", "order": 21}, {"name": "Laurie Bird", "character": "Tony Lacey's Girlfriend", "id": 97352, "credit_id": "5308944e9251411108001ce4", "cast_id": 44, "profile_path": "/iQXbHXOmX2ylwdhVKrKufQOzMez.jpg", "order": 22}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe426dc3a36847f801db87", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.5, "runtime": 93}, "707": {"poster_path": "/o8E86sXJOqAVmoxnNRoeZVCr0aa.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IS", "name": "Iceland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152427960, "overview": "A newly developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin.", "video": false, "id": 707, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "A View to a Kill", "tagline": "Has James Bond finally met his match?", "vote_count": 142, "homepage": "http://www.mgm.com/view/movie/2101/A-View-to-a-Kill/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090264", "adult": false, "backdrop_path": "/9SudvdR6HYtgTqMz17RYXdWuTUl.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "United Artists", "id": 60}], "release_date": "1985-06-12", "popularity": 1.00972806139153, "original_title": "A View to a Kill", "budget": 30000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426dc3a36847f801debf", "cast_id": 16, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Christopher Walken", "character": "Max Zorin", "id": 4690, "credit_id": "52fe426dc3a36847f801dec3", "cast_id": 17, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 1}, {"name": "Tanya Roberts", "character": "Stacey Sutton", "id": 10660, "credit_id": "52fe426dc3a36847f801dec7", "cast_id": 18, "profile_path": "/sX1JDbYa9QlzwR3vKhzK3Nx4Y3b.jpg", "order": 2}, {"name": "Grace Jones", "character": "May Day", "id": 10661, "credit_id": "52fe426dc3a36847f801decb", "cast_id": 19, "profile_path": "/8MBh8TXQYoEGHbyf7XKRbXH7kTA.jpg", "order": 3}, {"name": "Patrick Macnee", "character": "Sir Godfrey Tibbett", "id": 10662, "credit_id": "52fe426dc3a36847f801decf", "cast_id": 20, "profile_path": "/l5SmR6zmSkKO41vGpjggJYWYAT1.jpg", "order": 4}, {"name": "Patrick Bauchau", "character": "Scarpine", "id": 5274, "credit_id": "52fe426ec3a36847f801ded3", "cast_id": 21, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 5}, {"name": "David Yip", "character": "Chuck Lee", "id": 696, "credit_id": "52fe426ec3a36847f801ded7", "cast_id": 22, "profile_path": "/s2ApWZ620ZMe8nwvKM2y8TwjenE.jpg", "order": 6}, {"name": "Fiona Fullerton", "character": "Pola Ivanova", "id": 10663, "credit_id": "52fe426ec3a36847f801dedb", "cast_id": 23, "profile_path": "/xfjBxJ1mbYXa9PdzP3YOKXhUIRP.jpg", "order": 7}, {"name": "Willoughby Gray", "character": "Dr. Carl Mortner", "id": 10664, "credit_id": "52fe426ec3a36847f801dedf", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801dee3", "cast_id": 25, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426ec3a36847f801dee7", "cast_id": 26, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426ec3a36847f801deeb", "cast_id": 27, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 11}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426ec3a36847f801deef", "cast_id": 28, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 12}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426ec3a36847f801def3", "cast_id": 29, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 13}, {"name": "Manning Redwood", "character": "Bob Conley", "id": 99366, "credit_id": "5401059e0e0a2658e600326a", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Alison Doody", "character": "Jenny Flex", "id": 739, "credit_id": "540105bf0e0a2658f100309d", "cast_id": 33, "profile_path": "/rF2Ai6QVb2WeDwrFMhtbOOfUule.jpg", "order": 15}, {"name": "Jean Rougerie", "character": "Achille Aubergine", "id": 35881, "credit_id": "540105ef0e0a2658db003202", "cast_id": 34, "profile_path": "/o3bM4t4hMhFa0mnE8HW19BtvNmG.jpg", "order": 16}, {"name": "Daniel Benzali", "character": "Howe", "id": 58663, "credit_id": "5401062a0e0a2658e9003215", "cast_id": 35, "profile_path": "/kYigZnhA4GGG6ETTXeugrOsxrve.jpg", "order": 17}, {"name": "Papillon Soo", "character": "Pah Ho", "id": 8668, "credit_id": "540106420e0a2658f10030ac", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Mary Stavin", "character": "Kimberley Jones", "id": 147290, "credit_id": "540106940e0a2658d8003173", "cast_id": 37, "profile_path": null, "order": 19}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426dc3a36847f801de73", "profile_path": null, "id": 10179}], "vote_average": 5.7, "runtime": 131}, "708": {"poster_path": "/cBk0TKOc64iR5TDi1k5bWAZwbhz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 191185897, "overview": "James Bond helps a Russian General escape into the west. He soon finds out that the KGB wants to kill him for helping the General. A little while later the General is kidnapped from the Secret Service leading 007 to be suspicious.", "video": false, "id": 708, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Living Daylights", "tagline": "Licensed to thrill.", "vote_count": 123, "homepage": "http://www.mgm.com/view/movie/1132/The-Living-Daylights/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "sk", "name": "Sloven\u010dina"}], "imdb_id": "tt0093428", "adult": false, "backdrop_path": "/gL5lGkWecfArxGqDkWVJsLm4jek.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1987-06-29", "popularity": 1.16758143833182, "original_title": "The Living Daylights", "budget": 40000000, "cast": [{"name": "Timothy Dalton", "character": "James Bond", "id": 10669, "credit_id": "52fe426ec3a36847f801df93", "cast_id": 18, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 0}, {"name": "Maryam d'Abo", "character": "Kara Milovy", "id": 10670, "credit_id": "52fe426ec3a36847f801df97", "cast_id": 19, "profile_path": "/2KQONgibNNv1zM3AMVwtsO9jUdU.jpg", "order": 1}, {"name": "Jeroen Krabb\u00e9", "character": "General Georgi Koskov", "id": 1924, "credit_id": "52fe426ec3a36847f801df9b", "cast_id": 20, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 2}, {"name": "Joe Don Baker", "character": "Brad Whitaker", "id": 10671, "credit_id": "52fe426ec3a36847f801df9f", "cast_id": 21, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "General Leonid Pushkin", "id": 655, "credit_id": "52fe426ec3a36847f801dfa3", "cast_id": 22, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Art Malik", "character": "Kamran Shah", "id": 10672, "credit_id": "52fe426ec3a36847f801dfa7", "cast_id": 23, "profile_path": "/dJ8isTdH4hLfQHDEJu7DQYdfeIz.jpg", "order": 5}, {"name": "Andreas Wisniewski", "character": "Necros", "id": 10673, "credit_id": "52fe426ec3a36847f801dfab", "cast_id": 24, "profile_path": "/uZwfBgn0GBfmfjbxA69GDXctN5W.jpg", "order": 6}, {"name": "Thomas Wheatley", "character": "Saunders", "id": 10674, "credit_id": "52fe426ec3a36847f801dfaf", "cast_id": 25, "profile_path": "/e9HA0whzyevXWKY6z5Xp1TdRW1L.jpg", "order": 7}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801dfb3", "cast_id": 26, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 8}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426ec3a36847f801dfb7", "cast_id": 27, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 9}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426ec3a36847f801dfbb", "cast_id": 28, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 10}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426ec3a36847f801dfbf", "cast_id": 29, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 11}, {"name": "Caroline Bliss", "character": "Miss Moneypenny", "id": 10675, "credit_id": "52fe426ec3a36847f801dfc3", "cast_id": 30, "profile_path": "/fZ1OrTViGGmyk0dAqnhBA94XJ9y.jpg", "order": 12}, {"name": "John Terry", "character": "Felix Leiter", "id": 8659, "credit_id": "5404ee5dc3a368068c0070f5", "cast_id": 33, "profile_path": "/ziI8HiAeTLdud06edGUo2AXwdij.jpg", "order": 13}, {"name": "Virginia Hey", "character": "Rubavitch", "id": 26055, "credit_id": "5404ee98c3a36816af0025ae", "cast_id": 34, "profile_path": "/8UTt7vcFFkFFi4x03jYcIkGUyGE.jpg", "order": 14}, {"name": "Julie T. Wallace", "character": "Rosika Miklos", "id": 28897, "credit_id": "5404eef5c3a368068c007110", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Bill Weston", "character": "Blayden Butler", "id": 24278, "credit_id": "5404ef5fc3a368119c0028d5", "cast_id": 40, "profile_path": "/apVNA3SRNIrB6gu88nGTEhPewI2.jpg", "order": 20}, {"name": "Nadim Sawalha", "character": "Tangier Chief of Security", "id": 2980, "credit_id": "5404f031c3a3682d98005a14", "cast_id": 41, "profile_path": "/94kMNtU2FYXruX4BOOjWrWkoe2x.jpg", "order": 21}, {"name": "Barbara Broccoli", "character": "Opera Patron (uncredited)", "id": 10666, "credit_id": "55183431c3a36863020042ca", "cast_id": 43, "profile_path": "/pHTiuUR93mTJhsThZv0Es4xMerS.jpg", "order": 22}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801df41", "profile_path": null, "id": 10179}], "vote_average": 5.9, "runtime": 130}, "709": {"poster_path": "/4lpfRGW7dCqlco2n6wqptyFAz4V.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156167015, "overview": "James Bond and his American colleague Felix Leiter arrest the drug lord Sanchez who succeeds in escaping and takes revenge on Felix and his wife. Bond knows but just one thing: revenge.", "video": false, "id": 709, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Licence to Kill", "tagline": "His bad side is a dangerous place to be.", "vote_count": 206, "homepage": "http://www.mgm.com/view/movie/1111/License-to-Kill/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0097742", "adult": false, "backdrop_path": "/gofH6jMZLo8AEC7YUExigYiCjSa.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "United Artists", "id": 60}, {"name": "Danjaq", "id": 10761}], "release_date": "1989-08-03", "popularity": 1.34992497841426, "original_title": "Licence to Kill", "budget": 32000000, "cast": [{"name": "Timothy Dalton", "character": "James Bond", "id": 10669, "credit_id": "52fe426ec3a36847f801e07f", "cast_id": 20, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 0}, {"name": "Carey Lowell", "character": "Pam Bouvier", "id": 10679, "credit_id": "52fe426ec3a36847f801e083", "cast_id": 21, "profile_path": "/193Lp3xIPzi8Q8VDRsRK3s8bXqg.jpg", "order": 1}, {"name": "Robert Davi", "character": "Franz Sanchez", "id": 2055, "credit_id": "52fe426ec3a36847f801e087", "cast_id": 22, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 2}, {"name": "Talisa Soto", "character": "Lupe Lamora", "id": 10680, "credit_id": "52fe426ec3a36847f801e08b", "cast_id": 23, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 3}, {"name": "Anthony Zerbe", "character": "Milton Krest", "id": 2516, "credit_id": "52fe426ec3a36847f801e08f", "cast_id": 24, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 4}, {"name": "Frank McRae", "character": "Sharkey", "id": 1735, "credit_id": "52fe426ec3a36847f801e093", "cast_id": 25, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 5}, {"name": "David Hedison", "character": "Felix Leiter", "id": 10226, "credit_id": "52fe426ec3a36847f801e097", "cast_id": 26, "profile_path": "/1Wp1EV1Kcpr85imqCEkFvqCMYDZ.jpg", "order": 6}, {"name": "Wayne Newton", "character": "Professor Joe Butcher", "id": 10681, "credit_id": "52fe426ec3a36847f801e09b", "cast_id": 27, "profile_path": "/18fkbXVRlEIXKKmsGq5OeJuTJ9V.jpg", "order": 7}, {"name": "Benicio del Toro", "character": "Dario", "id": 1121, "credit_id": "52fe426ec3a36847f801e09f", "cast_id": 28, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 8}, {"name": "Anthony Starke", "character": "Truman-Lodge", "id": 10682, "credit_id": "52fe426ec3a36847f801e0a3", "cast_id": 29, "profile_path": "/f2zbCJ2hWkxn5TGvNVi6b9RVWWj.jpg", "order": 9}, {"name": "Everett McGill", "character": "Ed Killifer", "id": 5616, "credit_id": "52fe426ec3a36847f801e0a7", "cast_id": 30, "profile_path": "/qeNdO3yN3cWVWgKQqQOKU812iiR.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801e0ab", "cast_id": 31, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Pedro Armend\u00e1riz, Jr.", "character": "President Hector Lopez", "id": 7372, "credit_id": "52fe426ec3a36847f801e0af", "cast_id": 32, "profile_path": "/vqg8f4FeCKUD7jTVM2gLpElNZuh.jpg", "order": 12}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426ec3a36847f801e0b3", "cast_id": 33, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 13}, {"name": "Grand L. Bush", "character": "Hawkins", "id": 14333, "credit_id": "52fe426ec3a36847f801e0c3", "cast_id": 36, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 14}, {"name": "Priscilla Barnes", "character": "Della Churchill Leiter", "id": 23648, "credit_id": "5401bce30e0a2658db004b52", "cast_id": 37, "profile_path": "/llDEiCLnmEm68b658dv29Bh2wtR.jpg", "order": 15}, {"name": "Don Stroud", "character": "Heller", "id": 69494, "credit_id": "5401bcf30e0a2658ee004afb", "cast_id": 38, "profile_path": "/xXzHqpByk7c29kx6SOcnQkxwqlo.jpg", "order": 16}, {"name": "Caroline Bliss", "character": "Miss Moneypenny", "id": 10675, "credit_id": "5401bd140e0a2658f1004984", "cast_id": 39, "profile_path": "/fZ1OrTViGGmyk0dAqnhBA94XJ9y.jpg", "order": 17}, {"name": "Cary-Hiroyuki Tagawa", "character": "Kwang", "id": 11398, "credit_id": "5401bd270e0a2658db004b5a", "cast_id": 40, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 18}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e01b", "profile_path": null, "id": 10179}], "vote_average": 5.5, "runtime": 133}, "710": {"poster_path": "/qUsIUglvfAIEsRhcRLBKXj2ZvSP.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MC", "name": "Monaco"}, {"iso_3166_1": "PR", "name": "Puerto Rico"}, {"iso_3166_1": "RU", "name": "Russia"}], "revenue": 352194034, "overview": "James Bond must unmask the mysterious head of the Janus Syndicate and prevent the leader from utilizing the GoldenEye weapons system to inflict devastating revenge on Britain.", "video": false, "id": 710, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "GoldenEye", "tagline": "When the world is the target and the threat is real, you can still depend on one man.", "vote_count": 420, "homepage": "http://www.mgm.com/view/movie/757/Goldeneye/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0113189", "adult": false, "backdrop_path": "/aneVpr70Uxoo6Nk2QpZnG6DwC9E.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "United Artists", "id": 60}], "release_date": "1995-11-16", "popularity": 1.91454970732475, "original_title": "GoldenEye", "budget": 58000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe426ec3a36847f801e10d", "cast_id": 1, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Sean Bean", "character": "Alec Trevelyan", "id": 48, "credit_id": "52fe426ec3a36847f801e111", "cast_id": 2, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 1}, {"name": "Izabella Scorupco", "character": "Natalya Fyodorovna Simonova", "id": 10695, "credit_id": "52fe426ec3a36847f801e115", "cast_id": 3, "profile_path": "/7lQ494byqcFfVkJtZYLl38MvfKS.jpg", "order": 2}, {"name": "Famke Janssen", "character": "Xenia Onatopp", "id": 10696, "credit_id": "52fe426ec3a36847f801e119", "cast_id": 4, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 3}, {"name": "Joe Don Baker", "character": "Jack Wade", "id": 10671, "credit_id": "52fe426ec3a36847f801e11d", "cast_id": 5, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 4}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe426ec3a36847f801e121", "cast_id": 6, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 5}, {"name": "Gottfried John", "character": "General Arkady Grigorovich Ourumov", "id": 3757, "credit_id": "52fe426ec3a36847f801e125", "cast_id": 7, "profile_path": "/hOVrTlQwZX4THosi9usXISC7mNS.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Valentin Dmitrovich Zukovsky", "id": 1923, "credit_id": "52fe426ec3a36847f801e129", "cast_id": 8, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Alan Cumming", "character": "Boris Grishenko", "id": 10697, "credit_id": "52fe426ec3a36847f801e12d", "cast_id": 9, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 8}, {"name": "Tch\u00e9ky Karyo", "character": "Defense Minister Dmitri Mishkin", "id": 10698, "credit_id": "52fe426ec3a36847f801e131", "cast_id": 10, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 9}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801e135", "cast_id": 11, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 10}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe426ec3a36847f801e139", "cast_id": 12, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 11}, {"name": "Michael Kitchen", "character": "Bill Tanner", "id": 10648, "credit_id": "52fe426ec3a36847f801e13d", "cast_id": 13, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 12}, {"name": "Serena Gordon", "character": "Caroline", "id": 10700, "credit_id": "52fe426ec3a36847f801e141", "cast_id": 14, "profile_path": "/uiqwc2Y7wP7gSbT0h3db9Mm8YDh.jpg", "order": 13}, {"name": "Simon Kunz", "character": "Severnaya Duty Officer", "id": 10701, "credit_id": "52fe426ec3a36847f801e145", "cast_id": 15, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 14}, {"name": "Billy J. Mitchell", "character": "Admiral Chuck Farrell", "id": 55911, "credit_id": "5401b8650e0a2658ee004a76", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Constantine Gregory", "character": "Computer Store Manager", "id": 27425, "credit_id": "5401b87f0e0a2658db004acf", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Minnie Driver", "character": "Irina", "id": 6613, "credit_id": "5401b88d0e0a2658e2004c04", "cast_id": 39, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 17}, {"name": "Michelle Arthur", "character": "Anna", "id": 29054, "credit_id": "5401b8a70e0a2658e2004c07", "cast_id": 40, "profile_path": "/zKQFuK3W4LMzfIz8W86RYf6jGp7.jpg", "order": 18}, {"name": "Ravil Isyanov", "character": "Mig Pilot", "id": 41742, "credit_id": "5401b8ba0e0a2658db004ad3", "cast_id": 41, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 19}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e14b", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.2, "runtime": 130}, "711": {"poster_path": "/msNpSoipcmMKaZRTlK3vHopHRAg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80049764, "overview": "Gus van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.", "video": false, "id": 711, "genres": [{"id": 18, "name": "Drama"}], "title": "Finding Forrester", "tagline": "In an ordinary place, he found the one person to make his life extraordinary.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181536", "adult": false, "backdrop_path": "/ihEhIKWqVUCWvtvGf7u7IKUMdfm.jpg", "production_companies": [{"name": "Laurence Mark Productions", "id": 415}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Finding Forrester Productions", "id": 50830}, {"name": "Fountainbridge Films", "id": 414}], "release_date": "2000-12-21", "popularity": 0.529124619674107, "original_title": "Finding Forrester", "budget": 43000000, "cast": [{"name": "Sean Connery", "character": "William Forrester", "id": 738, "credit_id": "52fe426ec3a36847f801e21d", "cast_id": 11, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Rob Brown", "character": "Jamal Wallace", "id": 10689, "credit_id": "52fe426ec3a36847f801e221", "cast_id": 12, "profile_path": "/m8VAOhTpIQYWDYg2MOc9lOFLahF.jpg", "order": 1}, {"name": "F. Murray Abraham", "character": "Prof. Robert Crawford", "id": 1164, "credit_id": "52fe426ec3a36847f801e225", "cast_id": 13, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 2}, {"name": "Anna Paquin", "character": "Claire Spence", "id": 10690, "credit_id": "52fe426ec3a36847f801e229", "cast_id": 14, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 3}, {"name": "Busta Rhymes", "character": "Terrell Wallace", "id": 6485, "credit_id": "52fe426ec3a36847f801e22d", "cast_id": 15, "profile_path": "/1NqDmMk2jnrLjJUfb68gtMnSyF8.jpg", "order": 4}, {"name": "April Grace", "character": "Ms. Joyce", "id": 10691, "credit_id": "52fe426ec3a36847f801e231", "cast_id": 16, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 5}, {"name": "Michael Pitt", "character": "John Coleridge", "id": 10692, "credit_id": "52fe426ec3a36847f801e235", "cast_id": 17, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 6}, {"name": "Michael Nouri", "character": "Dr. Spence", "id": 8699, "credit_id": "52fe426ec3a36847f801e239", "cast_id": 18, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 7}, {"name": "Matt Damon", "character": "Steven Sanderson", "id": 1892, "credit_id": "53aaa45c0e0a2646c8001723", "cast_id": 19, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 8}, {"name": "Richard Easton", "character": "Prof. Matthews", "id": 172705, "credit_id": "53aaa4ebc3a3684cff00126c", "cast_id": 20, "profile_path": "/gvFTE9Zqk5y69B4FKrAhubu4071.jpg", "order": 9}, {"name": "Glenn Fitzgerald", "character": "Massie, Forrester's Delivery Man", "id": 10694, "credit_id": "53aaa506c3a36871f8000df5", "cast_id": 21, "profile_path": "/mZtEWlHspjit1UGs9cmzzuWeubV.jpg", "order": 10}, {"name": "Lil' Zane", "character": "Damon", "id": 1216485, "credit_id": "53aaa523c3a3684d160011d4", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Gus Van Sant", "character": "Library Assistant (uncredited)", "id": 5216, "credit_id": "53aaa56cc3a3684cff001271", "cast_id": 23, "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "order": 12}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e1e3", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 6.9, "runtime": 136}, "712": {"poster_path": "/md9kMKnLG8LG4pMDM98gy5x4K5L.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 254700832, "overview": "Four Weddings And A Funeral is a British comedy about a British Man named Charles and an American Woman named Carrie who go through numerous weddings before they determine if they are right for one another.", "video": false, "id": 712, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Four Weddings and a Funeral", "tagline": "Five Good Reasons To Stay Single", "vote_count": 121, "homepage": "http://workingtitlefilms.com/film.php?filmID=59", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109831", "adult": false, "backdrop_path": "/wyvHy4ElaiNamrpS6fjquYQqxhQ.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Channel Four Films", "id": 181}, {"name": "Working Title Films", "id": 10163}], "release_date": "1994-03-09", "popularity": 0.731744252540586, "original_title": "Four Weddings and a Funeral", "budget": 6000000, "cast": [{"name": "Hugh Grant", "character": "Charles", "id": 3291, "credit_id": "52fe426ec3a36847f801e2a1", "cast_id": 7, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Andie MacDowell", "character": "Carrie", "id": 1533, "credit_id": "52fe426ec3a36847f801e2a5", "cast_id": 8, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 1}, {"name": "James Fleet", "character": "Tom", "id": 10726, "credit_id": "52fe426ec3a36847f801e2a9", "cast_id": 9, "profile_path": "/uRerBtLv4SZJp1s52vrkIF85tg2.jpg", "order": 2}, {"name": "Simon Callow", "character": "Gareth", "id": 4001, "credit_id": "52fe426ec3a36847f801e2ad", "cast_id": 10, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 3}, {"name": "John Hannah", "character": "Matthew", "id": 10727, "credit_id": "52fe426ec3a36847f801e2b1", "cast_id": 11, "profile_path": "/8NUa2IAIcDTbfXHBl4LApBi5qnR.jpg", "order": 4}, {"name": "Kristin Scott Thomas", "character": "Fiona", "id": 5470, "credit_id": "52fe426ec3a36847f801e2b5", "cast_id": 12, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 5}, {"name": "David Bower", "character": "David", "id": 10728, "credit_id": "52fe426ec3a36847f801e2b9", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Charlotte Coleman", "character": "Scarlett", "id": 10729, "credit_id": "52fe426ec3a36847f801e2bd", "cast_id": 14, "profile_path": "/tMJLpQaCeoqa4taaPpXpL8TS6b.jpg", "order": 7}, {"name": "Rowan Atkinson", "character": "Father Gerald", "id": 10730, "credit_id": "52fe426ec3a36847f801e2c1", "cast_id": 15, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 8}, {"name": "Anna Chancellor", "character": "Henrietta", "id": 10731, "credit_id": "52fe426ec3a36847f801e2c5", "cast_id": 16, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 9}, {"name": "Timothy Walker", "character": "Angus", "id": 10736, "credit_id": "52fe426ec3a36847f801e2c9", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Sara Crowe", "character": "Laura", "id": 117557, "credit_id": "52fe426ec3a36847f801e2f7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Ronald Herdman", "character": "Vicar", "id": 1075073, "credit_id": "52fe426ec3a36847f801e2fb", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Elspet Gray", "character": "Laura's Mother", "id": 151439, "credit_id": "52fe426ec3a36847f801e2ff", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Philip Voss", "character": "Laura's Father", "id": 189281, "credit_id": "52fe426ec3a36847f801e303", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Rupert Vansittart", "character": "George the Boor at The Boatman", "id": 2479, "credit_id": "52fe426ec3a36847f801e307", "cast_id": 29, "profile_path": "/Adw0Z2bT8qU5H6S0swuUWrBKDDs.jpg", "order": 15}, {"name": "Nicola Walker", "character": "Frightful Folk Duo", "id": 141354, "credit_id": "52fe426ec3a36847f801e30b", "cast_id": 30, "profile_path": "/bJzGA9tckfFSo0PnZDaHYlVCZz1.jpg", "order": 16}, {"name": "Struan Rodger", "character": "Best Man", "id": 137927, "credit_id": "52fe426ec3a36847f801e30f", "cast_id": 31, "profile_path": null, "order": 17}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e27f", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.3, "runtime": 117}, "82633": {"poster_path": "/uViCpDSOo0Pexx1KWX7NXQaS9BH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53676580, "overview": "Set in the Depression-era Franklin County, Virginia, a bootlegging gang is threatened by authorities who want a cut of their profits.", "video": false, "id": 82633, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Lawless", "tagline": "When the law became corrupt, outlaws became heroes.", "vote_count": 358, "homepage": "http://lawless-film.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1212450", "adult": false, "backdrop_path": "/qNXTnWdDura71AHfSu1Cf3VXupA.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Benaroya Pictures", "id": 6692}, {"name": "Yucaipa Films", "id": 12005}, {"name": "Annapurna Pictures", "id": 13184}, {"name": "Pie Films Inc.", "id": 13507}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Revolt Films", "id": 15495}, {"name": "Blum Hanson Allen Films", "id": 47124}], "release_date": "2012-08-29", "popularity": 0.652424478601727, "original_title": "Lawless", "budget": 26000000, "cast": [{"name": "Shia LaBeouf", "character": "Jack Bondurant", "id": 10959, "credit_id": "52fe48629251416c9108a71f", "cast_id": 14, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Tom Hardy", "character": "Forrest Bondurant", "id": 2524, "credit_id": "52fe48629251416c9108a717", "cast_id": 11, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 1}, {"name": "Guy Pearce", "character": "Charlie Rakes", "id": 529, "credit_id": "52fe48629251416c9108a749", "cast_id": 28, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 2}, {"name": "Jessica Chastain", "character": "Maggie Beauford", "id": 83002, "credit_id": "52fe48629251416c9108a71b", "cast_id": 12, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 3}, {"name": "Mia Wasikowska", "character": "Bertha Minnix", "id": 76070, "credit_id": "52fe48629251416c9108a723", "cast_id": 16, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 4}, {"name": "Dane DeHaan", "character": "Cricket Pate", "id": 122889, "credit_id": "52fe48629251416c9108a72f", "cast_id": 19, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 5}, {"name": "Noah Taylor", "character": "Gummy Walsh", "id": 1284, "credit_id": "52fe48629251416c9108a727", "cast_id": 17, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 6}, {"name": "Jason Clarke", "character": "Howard Bondurant", "id": 76512, "credit_id": "52fe48629251416c9108a72b", "cast_id": 18, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 7}, {"name": "Lew Temple", "character": "Deputy Henry Abshire", "id": 37027, "credit_id": "52fe48629251416c9108a733", "cast_id": 20, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 8}, {"name": "Gary Oldman", "character": "Floyd Banner", "id": 64, "credit_id": "52fe48629251416c9108a751", "cast_id": 33, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 10}, {"name": "Marcus Hester", "character": "Deputy Jeff Richards", "id": 62076, "credit_id": "52fe48629251416c9108a755", "cast_id": 35, "profile_path": "/mOlrvlDpYUzDJhG6yc2wiRCdH5X.jpg", "order": 11}, {"name": "Bill Camp", "character": "Sheriff Hodges", "id": 121718, "credit_id": "52fe48629251416c9108a759", "cast_id": 36, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 12}, {"name": "Alex Van", "character": "Tizwell Minnix", "id": 97598, "credit_id": "52fe48629251416c9108a75d", "cast_id": 37, "profile_path": "/3S4VgJgN1K1LxqARuDD1nxLdTY4.jpg", "order": 13}], "directors": [{"name": "John Hillcoat", "department": "Directing", "job": "Director", "credit_id": "52fe48629251416c9108a763", "profile_path": "/4VqHE3mBPSUpR2ep7vpx27arFiY.jpg", "id": 53333}], "vote_average": 6.5, "runtime": 115}, "714": {"poster_path": "/jcFFwrF9e7XPeQK5Hmcuf5NAHOA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 333011068, "overview": "A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now 007 must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.", "video": false, "id": 714, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Tomorrow Never Dies", "tagline": "The Man. The Number. The License...are all back.", "vote_count": 307, "homepage": "http://www.mgm.com/view/movie/2029/Tomorrow-Never-Dies/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0120347", "adult": false, "backdrop_path": "/lHZ5H1jd4zVJYr1wfLKBdXYtZ17.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "United Artists", "id": 60}], "release_date": "1997-12-11", "popularity": 1.64832932580031, "original_title": "Tomorrow Never Dies", "budget": 110000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe426fc3a36847f801e3cf", "cast_id": 1, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Jonathan Pryce", "character": "Elliot Carver", "id": 378, "credit_id": "52fe426fc3a36847f801e3d3", "cast_id": 2, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 1}, {"name": "Michelle Yeoh", "character": "Wai Lin", "id": 1620, "credit_id": "52fe426fc3a36847f801e3d7", "cast_id": 3, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 2}, {"name": "Teri Hatcher", "character": "Paris Carver", "id": 10742, "credit_id": "52fe426fc3a36847f801e3db", "cast_id": 4, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 3}, {"name": "Ricky Jay", "character": "Henry Gupta", "id": 10743, "credit_id": "52fe426fc3a36847f801e3df", "cast_id": 5, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 4}, {"name": "G\u00f6tz Otto", "character": "Stamper", "id": 10744, "credit_id": "52fe426fc3a36847f801e3e3", "cast_id": 6, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 5}, {"name": "Joe Don Baker", "character": "Jack Wade", "id": 10671, "credit_id": "52fe426fc3a36847f801e3e7", "cast_id": 7, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 6}, {"name": "Vincent Schiavelli", "character": "Dr. Kaufman", "id": 3418, "credit_id": "52fe426fc3a36847f801e3eb", "cast_id": 8, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 7}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe426fc3a36847f801e3ef", "cast_id": 9, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426fc3a36847f801e3f3", "cast_id": 10, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe426fc3a36847f801e3f7", "cast_id": 11, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 10}, {"name": "Colin Salmon", "character": "Charles Robinson", "id": 5414, "credit_id": "52fe426fc3a36847f801e3fb", "cast_id": 12, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 11}, {"name": "Geoffrey Palmer", "character": "Admiral Roebuck", "id": 10746, "credit_id": "52fe426fc3a36847f801e3ff", "cast_id": 13, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 12}, {"name": "Julian Fellowes", "character": "Minister of Defence", "id": 10747, "credit_id": "52fe426fc3a36847f801e403", "cast_id": 14, "profile_path": "/kf38Wij4DyNyVFFL9HokomrQNkc.jpg", "order": 13}, {"name": "Terence Rigby", "character": "General Bukharin", "id": 10748, "credit_id": "52fe426fc3a36847f801e407", "cast_id": 15, "profile_path": "/cmg8qwt7Wo649ocgs2vxTPC2MnH.jpg", "order": 14}, {"name": "Nina Young", "character": "Tamara Steel", "id": 58778, "credit_id": "5401f026c3a3682d98001b07", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Daphne Deckers", "character": "PR Lady", "id": 1238610, "credit_id": "5401f03fc3a368068c00349e", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Colin Stinton", "character": "Dr. Dave Greenwalt", "id": 23608, "credit_id": "5401f057c3a36843720033dd", "cast_id": 40, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 17}, {"name": "Al Matthews", "character": "Master Sergeant 3", "id": 10208, "credit_id": "5401f074c3a368436300338d", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Cecilie Thomsen", "character": "Professor Inga Bergstrom", "id": 1423897, "credit_id": "54d4fb21c3a3686ac4013afa", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Mark Spalding", "character": "Stealth Boat Captain", "id": 176228, "credit_id": "54d4fb44c3a3685d5700990f", "cast_id": 43, "profile_path": null, "order": 20}, {"name": "Bruce Alexander", "character": "Captain - HMS Chester", "id": 1184909, "credit_id": "54d4fb55c3a3686ac4013b0c", "cast_id": 44, "profile_path": null, "order": 21}, {"name": "Anthony Green", "character": "Firing Officer - HMS Chester", "id": 153208, "credit_id": "54d4fb6bc3a3686abc013fdd", "cast_id": 45, "profile_path": "/gVi3WW7Icv77cNGYibTKgz2q0eG.jpg", "order": 22}, {"name": "Christopher Bowen", "character": "Cmdr. Richard Day - HMS Devonshire", "id": 25688, "credit_id": "54d4fb7bc3a368616e0136f9", "cast_id": 46, "profile_path": null, "order": 23}, {"name": "Andrew Hawkins", "character": "Lt. Cmdr. Peter Hume - HMS Devonshire", "id": 1423898, "credit_id": "54d4fb89c3a3686ac80131f2", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "Dominic Shaun", "character": "Lieutenant Commander - HMS Devonshire", "id": 1423899, "credit_id": "54d4fb9792514173cf008ea4", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Julian Rhind-Tutt", "character": "Yeoman - HMS Devonshire", "id": 7031, "credit_id": "54d4fba6c3a36871c100b5be", "cast_id": 49, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 26}, {"name": "Gerard Butler", "character": "Leading Seaman - HMS Devonshire", "id": 17276, "credit_id": "54d4fbb3c3a3686ac4013b13", "cast_id": 50, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 27}, {"name": "Adam Barker", "character": "Sonar Operator - HMS Devonshire", "id": 201635, "credit_id": "54d4fbc4c3a368616e0136fe", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "Michael Byrne", "character": "Admiral Kelly - HMS Bedford", "id": 742, "credit_id": "54d4fbdac3a3686ac2013210", "cast_id": 52, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 29}, {"name": "Pip Torrens", "character": "Captain - HMS Bedford", "id": 36666, "credit_id": "54d4fbee9251413fca0144cc", "cast_id": 53, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 30}, {"name": "Hugh Bonneville", "character": "Air Warfare Officer - HMS Bedford", "id": 19923, "credit_id": "54d4fbfdc3a368746900ad08", "cast_id": 54, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 31}], "directors": [{"name": "Roger Spottiswoode", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e40d", "profile_path": "/hH8tIBh0RI7VwI4jQgphtB0qABR.jpg", "id": 1724}], "vote_average": 5.8, "runtime": 119}, "8909": {"poster_path": "/mUrkppyahzk6koYFekxeu0tmcPd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 258270008, "overview": "Doormat Wesley Gibson discovers that his recently murdered father -- who Wesley never knew -- belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.", "video": false, "id": 8909, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Wanted", "tagline": "Choose your destiny.", "vote_count": 739, "homepage": "http://www.wantedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0493464", "adult": false, "backdrop_path": "/2mbQF4SfdbpqF8LmIxDfJ9RDqQQ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Relativity Media", "id": 7295}, {"name": "Marc Platt Productions", "id": 2527}, {"name": "Kickstart Productions", "id": 2526}, {"name": "Top Cow Productions", "id": 2528}, {"name": "Ringerike Zweite Filmproduktion", "id": 23955}, {"name": "Bazelevs Production", "id": 1038}], "release_date": "2008-06-26", "popularity": 1.37790419977635, "original_title": "Wanted", "budget": 75000000, "cast": [{"name": "Angelina Jolie", "character": "Fox", "id": 11701, "credit_id": "52fe44c7c3a36847f80a976d", "cast_id": 2, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "James McAvoy", "character": "Wesley Gibson", "id": 5530, "credit_id": "52fe44c7c3a36847f80a9771", "cast_id": 3, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Sloan", "id": 192, "credit_id": "52fe44c7c3a36847f80a9775", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Cross", "id": 3491, "credit_id": "52fe44c7c3a36847f80a9779", "cast_id": 5, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Terence Stamp", "character": "Pekwarsky", "id": 28641, "credit_id": "52fe44c7c3a36847f80a97d7", "cast_id": 23, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 4}, {"name": "Common", "character": "The Gunsmith", "id": 4238, "credit_id": "52fe44c7c3a36847f80a97db", "cast_id": 24, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 5}, {"name": "Marc Warren", "character": "The Repairman", "id": 70903, "credit_id": "52fe44c7c3a36847f80a97df", "cast_id": 25, "profile_path": "/9szgHtWkHTMRk0IXCOHngxG4oR8.jpg", "order": 6}, {"name": "Kristen Hager", "character": "Cathy", "id": 73454, "credit_id": "52fe44c7c3a36847f80a97e3", "cast_id": 26, "profile_path": "/mofGrgUP2kXXD8cgkYnzfGb8EOL.jpg", "order": 7}, {"name": "David O'Hara", "character": "Mr. X (as David Patrick O'Hara)", "id": 2482, "credit_id": "52fe44c7c3a36847f80a97e7", "cast_id": 27, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 8}, {"name": "Konstantin Khabenskiy", "character": "The Exterminator", "id": 23440, "credit_id": "52fe44c7c3a36847f80a97eb", "cast_id": 28, "profile_path": "/dSZhT7njGfcOCqvRhWrX2WANVOt.jpg", "order": 9}, {"name": "Dato Bakhtadze", "character": "The Butcher", "id": 18283, "credit_id": "52fe44c7c3a36847f80a97ef", "cast_id": 29, "profile_path": "/icfjC4D6saHKCMXhoEUoK3mngzL.jpg", "order": 10}, {"name": "Brad Calcaterra", "character": "Assassin Max Petridge", "id": 73455, "credit_id": "52fe44c7c3a36847f80a97f3", "cast_id": 30, "profile_path": "/qAMvXjgNyf6k9J5malzm6CRO4Ic.jpg", "order": 11}, {"name": "Lorna Scott", "character": "Janice", "id": 73456, "credit_id": "52fe44c7c3a36847f80a97f7", "cast_id": 31, "profile_path": "/esuLL3MYiVvSbL71nvpebZFTaDf.jpg", "order": 12}, {"name": "Chris Pratt", "character": "Barry", "id": 73457, "credit_id": "52fe44c7c3a36847f80a97fb", "cast_id": 32, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 13}, {"name": "Sophiya Haque", "character": "Puya", "id": 73458, "credit_id": "52fe44c7c3a36847f80a97ff", "cast_id": 33, "profile_path": "/oZ3KkiJ0VSqxQtk4gTABTdQFW7H.jpg", "order": 14}], "directors": [{"name": "Timur Bekmambetov", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a980b", "profile_path": "/7XQsDvrshgbFYvQN0KgUmI691uF.jpg", "id": 23430}], "vote_average": 6.0, "runtime": 110}, "221902": {"poster_path": "/1mYAejpMskvskGr0J0SaBvdjmrH.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 5437834, "overview": "Sandra is a young woman who has only one weekend to convince her colleagues they must give up their bonuses in order for her to keep her job \u2014 not an easy task in this economy.", "video": false, "id": 221902, "genres": [{"id": 18, "name": "Drama"}], "title": "Two Days, One Night", "tagline": "A quest for self-improvement", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2737050", "adult": false, "backdrop_path": "/40fJ7cg5Q5IPNxYLE5xJil33TBc.jpg", "production_companies": [{"name": "Media Programme of the European Community", "id": 21972}, {"name": "Les Films Du Fleuve", "id": 1926}, {"name": "Archipel 35", "id": 2695}, {"name": "BIM Distribuzione", "id": 225}, {"name": "Eyeworks", "id": 6461}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "Radio T\u00e9l\u00e9vision Belge Francophone (RTBF)", "id": 7466}, {"name": "Belgacom", "id": 8009}, {"name": "VOO", "id": 11797}, {"name": "Vlaams Audiovisueel fonds", "id": 3132}, {"name": "Euro-Images", "id": 32634}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France Television", "id": 7131}], "release_date": "2014-05-21", "popularity": 0.916496626509845, "original_title": "Deux jours, une nuit", "budget": 7000000, "cast": [{"name": "Marion Cotillard", "character": "Sandra", "id": 8293, "credit_id": "52fe4dd79251416c75142bc5", "cast_id": 1, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 0}, {"name": "Fabrizio Rongione", "character": "Manu", "id": 70312, "credit_id": "52fe4dd79251416c75142bc9", "cast_id": 2, "profile_path": "/koXiiwrwd5r3nqzEunyQZQSpsGa.jpg", "order": 1}, {"name": "Olivier Gourmet", "character": "Jean-Marc", "id": 45152, "credit_id": "534fcd3cc3a3681cb5000e70", "cast_id": 5, "profile_path": "/30MOkEJL3qFtAV9dlbSrFVgcNAU.jpg", "order": 2}, {"name": "Catherine Sal\u00e9e", "character": "Juliette", "id": 1029292, "credit_id": "534fcd4e0e0a267ea4000eb5", "cast_id": 6, "profile_path": "/iyvJ4REbCPETwtxp1z3SsOe5ZD7.jpg", "order": 3}, {"name": "Christelle Cornil", "character": "Anne", "id": 234492, "credit_id": "534fcd6d0e0a267eb9000e52", "cast_id": 7, "profile_path": "/t6EEsgODAde3WQf0Gkz2H3SNm0T.jpg", "order": 4}, {"name": "Batiste Sornin", "character": "Monsieur Dumont", "id": 1125175, "credit_id": "5457be570e0a2629770023a0", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Pili Groyne", "character": "Estelle", "id": 1381361, "credit_id": "5457be73c3a3681473009840", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Simon Caudry", "character": "Maxime", "id": 1381362, "credit_id": "5457be8f0e0a266fc0001d60", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Alain Eloy", "character": "Willy", "id": 54626, "credit_id": "5457beb2c3a368642e002697", "cast_id": 21, "profile_path": null, "order": 8}], "directors": [{"name": "Jean-Pierre Dardenne", "department": "Directing", "job": "Director", "credit_id": "52fe4dd79251416c75142bcf", "profile_path": "/kn4tpNTPwWODCu356VHzCjGzSG0.jpg", "id": 56209}, {"name": "Luc Dardenne", "department": "Directing", "job": "Director", "credit_id": "52fe4dd79251416c75142bd5", "profile_path": "/rZRSDYFQn0MJE1ZQHYIsFnO06XC.jpg", "id": 45138}], "vote_average": 7.0, "runtime": 95}, "8913": {"poster_path": "/9zUax4pjRgoPIJla9CQejqNJofB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Dr. Louis Creed's family moves into the country house of their dreams and discover a pet cemetery at the back of their property. The cursed burial ground deep in the woods brings the dead back to life -- with \"minor\" problems. At first, only the family's cat makes the return trip, but an accident forces a heartbroken father to contemplate the unthinkable.", "video": false, "id": 8913, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Pet Sematary", "tagline": "Sometimes dead is better.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eKHGPVeytlBfJdHGidsceilG9sR.jpg", "poster_path": "/fzWW6QlJIhbaAUVeGQXoEPqXqkU.jpg", "id": 10789, "name": "Pet Sematary Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098084", "adult": false, "backdrop_path": "/3M4MZjThGWIWTD6jmB0NSUitljR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1989-04-21", "popularity": 0.519286480916286, "original_title": "Pet Sematary", "budget": 0, "cast": [{"name": "Dale Midkiff", "character": "Louis Creed", "id": 56265, "credit_id": "52fe44c7c3a36847f80a98c3", "cast_id": 10, "profile_path": "/4I7BGUS0ZdvKx5Uk5Uoygk5B7Hj.jpg", "order": 0}, {"name": "Fred Gwynne", "character": "Jud Crandall", "id": 56266, "credit_id": "52fe44c7c3a36847f80a98c7", "cast_id": 11, "profile_path": "/xwDhOItVPzmBDfPqNMPHSSdXOMj.jpg", "order": 1}, {"name": "Denise Crosby", "character": "Rachel Creed", "id": 1743, "credit_id": "52fe44c7c3a36847f80a98cb", "cast_id": 12, "profile_path": "/6vJh3H3dTvgnZ1YoHE1qYM1AbRC.jpg", "order": 2}, {"name": "Brad Greenquist", "character": "Victor Pascow", "id": 56267, "credit_id": "52fe44c7c3a36847f80a98cf", "cast_id": 13, "profile_path": "/8rclBoyMrNwWRnUs5iPLTengKAk.jpg", "order": 3}, {"name": "Michael Lombard", "character": "Irwin Goldman", "id": 13938, "credit_id": "52fe44c7c3a36847f80a98d3", "cast_id": 14, "profile_path": "/3VeGqcvQzJF9Xrl6eXOCoDosS28.jpg", "order": 4}, {"name": "Miko Hughes", "character": "Gage Creed", "id": 8186, "credit_id": "52fe44c7c3a36847f80a98d7", "cast_id": 15, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 5}, {"name": "Blaze Berdahl", "character": "Ellie Creed", "id": 175553, "credit_id": "52fe44c7c3a36847f80a98db", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Susan Blommaert", "character": "Missy Dandridge", "id": 1913, "credit_id": "52fe44c7c3a36847f80a98df", "cast_id": 17, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 7}, {"name": "Mara Clark", "character": "Marcy Charlton", "id": 1117928, "credit_id": "52fe44c7c3a36847f80a98e3", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Kavi Raz", "character": "Steve Masterton", "id": 111710, "credit_id": "52fe44c7c3a36847f80a98e7", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Mary Louise Wilson", "character": "Dory Goldman", "id": 115767, "credit_id": "52fe44c7c3a36847f80a98eb", "cast_id": 20, "profile_path": "/tsvPhvPSlKrhcincuq8FMH2PAUq.jpg", "order": 10}, {"name": "Andrew Hubatsek", "character": "Zelda", "id": 1117929, "credit_id": "52fe44c7c3a36847f80a98ef", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Liz Davies", "character": "Girl at Infirmary", "id": 1117930, "credit_id": "52fe44c7c3a36847f80a98f3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Kara Dalke", "character": "Candystriper", "id": 1117931, "credit_id": "52fe44c7c3a36847f80a98f7", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "Mary Lambert", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a988f", "profile_path": "/oFgE0UQeeQqFhwsVaD5l26PH5kr.jpg", "id": 56263}], "vote_average": 6.4, "runtime": 103}, "8914": {"poster_path": "/r386y8YpePXoS7P4jHWZRTF36Zb.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73648228, "overview": "On a remote former submarine refueling facility called Aquatica, a team of scientists are searching for a cure for Alzheimer's disease. Dr. Susan McAlester (Saffron Burrows) genetically engineers three Mako sharks, intending to increase their brain capacity so that they can harvest the tissue as a cure for Alzheimer's. Unfortunately, the increased brain capacity also makes the sharks smarter, faster, and more dangerous. Aquatica's financial backers are skeptical and nervous about the tests, and send a corporate executive (Samuel L. Jackson) to visit the facility.", "video": false, "id": 8914, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Deep Blue Sea", "tagline": "Bigger. Smarter. Faster. Meaner.", "vote_count": 150, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0149261", "adult": false, "backdrop_path": "/adGAeyRgc7jQyXaBFyQGWGCrdJo.jpg", "production_companies": [{"name": "Riche-Ludwig Productions", "id": 28438}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Groucho III Film Partnership", "id": 28439}], "release_date": "1999-07-27", "popularity": 0.839113138667462, "original_title": "Deep Blue Sea", "budget": 60000000, "cast": [{"name": "Thomas Jane", "character": "Carter Blake", "id": 11155, "credit_id": "52fe44c7c3a36847f80a9987", "cast_id": 14, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 0}, {"name": "Saffron Burrows", "character": "Dr. Susan McCallister", "id": 9825, "credit_id": "52fe44c7c3a36847f80a998b", "cast_id": 15, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 1}, {"name": "LL Cool J", "character": "Sherman 'Preacher' Dudley", "id": 36424, "credit_id": "52fe44c7c3a36847f80a998f", "cast_id": 16, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 2}, {"name": "Michael Rapaport", "character": "Tom \"Scoggs\" Scoggins", "id": 4688, "credit_id": "52fe44c7c3a36847f80a9993", "cast_id": 17, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 3}, {"name": "Samuel L. Jackson", "character": "Russell Franklin", "id": 2231, "credit_id": "52fe44c7c3a36847f80a9997", "cast_id": 18, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 4}, {"name": "Stellan Skarsg\u00e5rd", "character": "Jim Whitlock", "id": 1640, "credit_id": "52fe44c7c3a36847f80a999b", "cast_id": 19, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 5}, {"name": "Jacqueline McKenzie", "character": "Janice Higgins", "id": 28744, "credit_id": "52fe44c7c3a36847f80a999f", "cast_id": 20, "profile_path": "/qBAp4Syl6GhbhZFV96BSDM8Fxjv.jpg", "order": 6}, {"name": "Aida Turturro", "character": "Brenda Kerns", "id": 106791, "credit_id": "52fe44c7c3a36847f80a99a3", "cast_id": 21, "profile_path": "/efqEyVJwU2o4zmfvlbuxOxlbEXj.jpg", "order": 7}, {"name": "Cristos", "character": "Boat Captain", "id": 139997, "credit_id": "52fe44c7c3a36847f80a99a7", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Daniel Rey", "character": "Helicopter Pilot", "id": 141808, "credit_id": "52fe44c7c3a36847f80a99ab", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Valente Rodriguez", "character": "Helicopter Co-Pilot", "id": 6321, "credit_id": "52fe44c7c3a36847f80a99af", "cast_id": 24, "profile_path": "/j5fIc0HUrrgE6fVel6tjXcnDPRo.jpg", "order": 10}, {"name": "Brent Roam", "character": "Helicopter Winch Operator", "id": 67351, "credit_id": "52fe44c7c3a36847f80a99b3", "cast_id": 25, "profile_path": "/mnME0nwThDk8rkkn0GmcsfzMw93.jpg", "order": 11}, {"name": "Eyal Podell", "character": "Boy #1", "id": 61855, "credit_id": "52fe44c7c3a36847f80a99b7", "cast_id": 26, "profile_path": "/c5HBvjC98ex55qTR8eOomQ93srd.jpg", "order": 12}, {"name": "Erinn Bartlett", "character": "Girl #1", "id": 60953, "credit_id": "52fe44c7c3a36847f80a99bb", "cast_id": 27, "profile_path": "/k5T5kR6A8HZmowF3ZbkPF5QtgVg.jpg", "order": 13}, {"name": "Dan Thiel", "character": "Boy #2", "id": 141809, "credit_id": "52fe44c7c3a36847f80a99bf", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Sabrina Geerinckx", "character": "Girl #2", "id": 141810, "credit_id": "52fe44c7c3a36847f80a99c3", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Tajsha Thomas", "character": "Friend of Janice", "id": 141811, "credit_id": "52fe44c7c3a36847f80a99c7", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Frank Welker", "character": "Parrot Noises (voice)", "id": 15831, "credit_id": "52fe44c7c3a36847f80a99cb", "cast_id": 31, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 17}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a9941", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 5.3, "runtime": 105}, "8916": {"poster_path": "/zoUwYRJSwatBBvBDRf1y0RtiytI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171757863, "overview": "In this animated hit, a neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.", "video": false, "id": 8916, "genres": [{"id": 16, "name": "Animation"}], "title": "Antz", "tagline": "Every ant has his day.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120587", "adult": false, "backdrop_path": "/qvHnMakgkH6UK8nUCaQYb8dlGSq.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "1998-10-02", "popularity": 0.515053879619762, "original_title": "Antz", "budget": 60000000, "cast": [{"name": "Woody Allen", "character": "Z", "id": 1243, "credit_id": "52fe44c8c3a36847f80a9af7", "cast_id": 12, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Chip", "id": 707, "credit_id": "52fe44c8c3a36847f80a9afb", "cast_id": 13, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Anne Bancroft", "character": "Queen", "id": 10774, "credit_id": "52fe44c8c3a36847f80a9aff", "cast_id": 14, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 2}, {"name": "Danny Glover", "character": "Barbatus", "id": 2047, "credit_id": "52fe44c8c3a36847f80a9b03", "cast_id": 15, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 3}, {"name": "Gene Hackman", "character": "General Mandible (voice)", "id": 193, "credit_id": "52fe44c8c3a36847f80a9b0b", "cast_id": 17, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 4}, {"name": "Jane Curtin", "character": "Muffy (voice)", "id": 58184, "credit_id": "52fe44c8c3a36847f80a9b07", "cast_id": 16, "profile_path": "/lPiGlFpjsgb1uD3zPOkaEv4T3Es.jpg", "order": 5}, {"name": "Jennifer Lopez", "character": "Azteca (voice)", "id": 16866, "credit_id": "52fe44c8c3a36847f80a9b0f", "cast_id": 18, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 6}, {"name": "John Mahoney", "character": "Grebs / Drunk Scout / Additional Voices (voice)", "id": 4251, "credit_id": "52fe44c8c3a36847f80a9b13", "cast_id": 19, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 7}, {"name": "Paul Mazursky", "character": "Psychologist (voice)", "id": 47773, "credit_id": "52fe44c8c3a36847f80a9b17", "cast_id": 20, "profile_path": "/6YUp0e6fM0OmrB6STNY1ESwHcdG.jpg", "order": 8}, {"name": "Grant Shaud", "character": "Foreman (voice)", "id": 96595, "credit_id": "52fe44c8c3a36847f80a9b1b", "cast_id": 21, "profile_path": "/7kxL3X4XM0r022tf6egqJWRw1sD.jpg", "order": 9}, {"name": "Sylvester Stallone", "character": "Weaver (voice)", "id": 16483, "credit_id": "52fe44c8c3a36847f80a9b1f", "cast_id": 22, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 10}, {"name": "Sharon Stone", "character": "Princess Bala (voice)", "id": 4430, "credit_id": "52fe44c8c3a36847f80a9b23", "cast_id": 23, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 11}, {"name": "Christopher Walken", "character": "Colonel Cutter (voice)", "id": 4690, "credit_id": "52fe44c8c3a36847f80a9b27", "cast_id": 24, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 12}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a9ab7", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a9abd", "profile_path": null, "id": 52870}], "vote_average": 6.0, "runtime": 83}, "12572": {"poster_path": "/roKhZLvRRzqdVY9rvDv1i5ZAmmx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8049666, "overview": "Ten vignettes in New York City: a pickpocket meets his match; a young Hasidic woman, on the eve of her marriage, reveals herself to an Indian businessman; a writer tries a pick-up line; an artist seeks a model; a composer needs to read; two women connect; a man takes a child to Central Park; lovers meet; a couple takes a walk on their anniversary; a kid goes to the prom with a girl in a wheelchair; a retired singer contemplates suicide. There are eight million stories in the naked city: these have been ten of them.", "video": false, "id": 12572, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "New York, I Love You", "tagline": "", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808399", "adult": false, "backdrop_path": "/boT0X1wTI399zK6jJ2Dgtqhjkdj.jpg", "production_companies": [{"name": "Vivendi Entertainment", "id": 4575}], "release_date": "2008-09-01", "popularity": 0.36355178091742, "original_title": "New York, I Love You", "budget": 14700000, "cast": [{"name": "Natalie Portman", "character": "Rifka", "id": 524, "credit_id": "52fe44fd9251416c75047e1d", "cast_id": 14, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Jacob", "id": 10959, "credit_id": "52fe44fd9251416c75047e21", "cast_id": 15, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Orlando Bloom", "character": "David", "id": 114, "credit_id": "52fe44fd9251416c75047e25", "cast_id": 16, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 2}, {"name": "Christina Ricci", "character": "Camille", "id": 6886, "credit_id": "52fe44fd9251416c75047e29", "cast_id": 17, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 3}, {"name": "Hayden Christensen", "character": "Johnny", "id": 17244, "credit_id": "52fe44fd9251416c75047e2d", "cast_id": 18, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 4}, {"name": "Kevin Bacon", "character": "Tom", "id": 4724, "credit_id": "52fe44fd9251416c75047e31", "cast_id": 19, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Robin Wright", "character": "Anna", "id": 32, "credit_id": "52fe44fd9251416c75047e35", "cast_id": 20, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 6}, {"name": "Julie Christie", "character": "Isabelle", "id": 1666, "credit_id": "52fe44fd9251416c75047e39", "cast_id": 21, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 7}, {"name": "Maggie Q", "character": "Call Girl", "id": 21045, "credit_id": "52fe44fd9251416c75047e4f", "cast_id": 25, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 8}, {"name": "Andy Garc\u00eda", "character": "", "id": 1271, "credit_id": "534aae4f0e0a2640cb001eb6", "cast_id": 26, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 9}, {"name": "Rachel Bilson", "character": "", "id": 52783, "credit_id": "534aae640e0a2640cb001eba", "cast_id": 27, "profile_path": "/tb5sDcY2QR72oyJthVEn4xaLJ7J.jpg", "order": 10}, {"name": "Irrfan Khan", "character": "", "id": 76793, "credit_id": "534aae760e0a2640c5001d18", "cast_id": 28, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 11}, {"name": "Ethan Hawke", "character": "", "id": 569, "credit_id": "534aae890e0a2640c8001e9c", "cast_id": 29, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 12}, {"name": "Chris Cooper", "character": "", "id": 2955, "credit_id": "534aae960e0a2640c2001bba", "cast_id": 30, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 13}, {"name": "Anton Yelchin", "character": "", "id": 21028, "credit_id": "534aaeac0e0a2640bc001aec", "cast_id": 31, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 14}, {"name": "James Caan", "character": "", "id": 3085, "credit_id": "534aaebd0e0a2640c2001bbd", "cast_id": 32, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 15}, {"name": "Blake Lively", "character": "", "id": 59175, "credit_id": "534aaedd0e0a2640cb001ec0", "cast_id": 33, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 16}, {"name": "Drea de Matteo", "character": "", "id": 70767, "credit_id": "534aaeee0e0a2640b6001d8c", "cast_id": 34, "profile_path": "/6rAp86rimrbRbZtm61jQoc5Fmkv.jpg", "order": 17}, {"name": "Bradley Cooper", "character": "", "id": 51329, "credit_id": "534aaefa0e0a2640c8001ea1", "cast_id": 35, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 18}, {"name": "John Hurt", "character": "", "id": 5049, "credit_id": "534aaf080e0a2640bf001de5", "cast_id": 36, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 19}, {"name": "Eli Wallach", "character": "", "id": 3265, "credit_id": "534aaf4b0e0a2640cb001ed3", "cast_id": 37, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 20}, {"name": "Cloris Leachman", "character": "", "id": 9599, "credit_id": "534aaf550e0a2640cb001ed5", "cast_id": 38, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 21}, {"name": "Justin Bartha", "character": "", "id": 21180, "credit_id": "534aaf630e0a2640b6001d9d", "cast_id": 39, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 22}, {"name": "Shu Qi", "character": "", "id": 21911, "credit_id": "54a4c119c3a368764f01024c", "cast_id": 40, "profile_path": "/kmTErFq6lKQww2Yk9AfpR2Q5YWx.jpg", "order": 23}], "directors": [{"name": "Natalie Portman", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047dd7", "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "id": 524}, {"name": "Fatih Akin", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047de9", "profile_path": "/wIcm73WeaS6IAA1chaSw5NN2HTQ.jpg", "id": 5125}, {"name": "Mira Nair", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047def", "profile_path": "/dUcAW2278QXiSmjW1IGxA5hanaE.jpg", "id": 6495}, {"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047df5", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}, {"name": "Yvan Attal", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047dfb", "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "id": 2245}, {"name": "Shunji Iwai", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e01", "profile_path": "/tidlYgRReWLjzyvX9YmMVkUTmsM.jpg", "id": 55785}, {"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e07", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}, {"name": "Joshua Marston", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e0d", "profile_path": "/tIksBv5jBvQh70MXayjxwqaiIcT.jpg", "id": 5872}, {"name": "Shekhar Kapur", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e13", "profile_path": "/tscFnAwxOok4DgFE7uaJhUMk7vc.jpg", "id": 37630}, {"name": "Randall Balsmeyer", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e19", "profile_path": null, "id": 15435}, {"name": "Jiang Wen", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e4b", "profile_path": "/sLLXxXg11VFdVYFthF9RB8wIQKv.jpg", "id": 77301}], "vote_average": 5.6, "runtime": 103}, "8920": {"poster_path": "/v6xvth8PjDG350ARG9H2sF7N3SF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200804534, "overview": "Garfield, the fat, lazy, lasagna lover, has everything a cat could want. But when Jon, in an effort to impress the Liz - the vet and an old high-school crush - adopts a dog named Odie and brings him home, Garfield gets the one thing he doesn't want. Competition.", "video": false, "id": 8920, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Garfield", "tagline": "Get ready for frisky business.", "vote_count": 155, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bd1aICMrmcz94fjTibCpuQrQVJg.jpg", "poster_path": "/fPCiS9fijCf8zHaddw2QHL6SLgK.jpg", "id": 86115, "name": "Garfield Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356634", "adult": false, "backdrop_path": "/obvIA9vxfJUUYU5N7e5u3ppqvfJ.jpg", "production_companies": [{"name": "Davis Entertainment", "id": 1302}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2004-06-11", "popularity": 0.724589293296273, "original_title": "Garfield", "budget": 50000000, "cast": [{"name": "Breckin Meyer", "character": "Jon", "id": 33654, "credit_id": "52fe44c8c3a36847f80a9ba1", "cast_id": 12, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 0}, {"name": "Jennifer Love Hewitt", "character": "Liz", "id": 33259, "credit_id": "52fe44c8c3a36847f80a9ba5", "cast_id": 13, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 1}, {"name": "Stephen Tobolowsky", "character": "Happy Chapman", "id": 537, "credit_id": "52fe44c8c3a36847f80a9ba9", "cast_id": 14, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 2}, {"name": "Bill Murray", "character": "Garfield (voice)", "id": 1532, "credit_id": "52fe44c8c3a36847f80a9bad", "cast_id": 15, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Evan Arnold", "character": "Wendell", "id": 169349, "credit_id": "52fe44c8c3a36847f80a9bb1", "cast_id": 16, "profile_path": "/tx2W1DTs7dxMoBmHredOIhTtSyx.jpg", "order": 4}, {"name": "Mark Christopher Lawrence", "character": "Christopher Mello", "id": 33501, "credit_id": "52fe44c8c3a36847f80a9bb5", "cast_id": 17, "profile_path": "/8NFSpV9nIQYqWTCVhZeguAF4JsP.jpg", "order": 5}, {"name": "Vanessa Christelle", "character": "Miss Ace Hardware", "id": 1158306, "credit_id": "52fe44c8c3a36847f80a9bb9", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Daamen J. Krall", "character": "Announcer", "id": 96310, "credit_id": "52fe44c8c3a36847f80a9bbd", "cast_id": 19, "profile_path": "/u0CORJ8e2vvw1dFARU4estHYS2I.jpg", "order": 7}, {"name": "Eve Brent", "character": "Mrs. Baker", "id": 128201, "credit_id": "52fe44c8c3a36847f80a9bc1", "cast_id": 20, "profile_path": "/cQhAjiXxOfgnmDgLRbFpwrzG5Q0.jpg", "order": 8}, {"name": "Bill Hoag", "character": "Roy the Lodge Member", "id": 164177, "credit_id": "52fe44c8c3a36847f80a9bc5", "cast_id": 21, "profile_path": "/x7hk2xuAcCZUwhK0zKDZW0iuLKX.jpg", "order": 9}, {"name": "Michael Monks", "character": "Deputy Hopkins", "id": 53249, "credit_id": "52fe44c8c3a36847f80a9bc9", "cast_id": 22, "profile_path": "/oa6n4XlzpDmJeStA5a4xBY73rsD.jpg", "order": 10}, {"name": "Mel Rodriguez", "character": "Security Officer", "id": 59675, "credit_id": "52fe44c8c3a36847f80a9bcd", "cast_id": 23, "profile_path": "/fdfVBVihcLvHAOArV2KvtTSZNrY.jpg", "order": 11}, {"name": "Juliette Goglia", "character": "Little Girl", "id": 118420, "credit_id": "52fe44c8c3a36847f80a9bd1", "cast_id": 24, "profile_path": "/s0Lp6SmVUH0JNF5JUc0VWuJRYrz.jpg", "order": 12}, {"name": "Jerry Hauck", "character": "Cop", "id": 81326, "credit_id": "52fe44c8c3a36847f80a9bd5", "cast_id": 25, "profile_path": "/4Irw84301bGmjVTPLJlcxx5HbYC.jpg", "order": 13}], "directors": [{"name": "Peter Hewitt", "department": "Directing", "job": "Director", "credit_id": "52fe44c8c3a36847f80a9b61", "profile_path": "/oTsxyjGU1C1KpvuFJg9yOuvHmbD.jpg", "id": 18357}], "vote_average": 5.1, "runtime": 80}, "8922": {"poster_path": "/gaIiibMDw95MDT0QtpwMCFDSyQO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37904175, "overview": "A college-age brother and sister get more than they bargained for on their road trip home from spring break. When the bickering siblings witness a creepy truck driver tossing body bags into a sewer near an abandoned church, they investigate. Bad move! Opening a Pandora's Box of unspeakable evil, the pair must flee for their lives -- with a monstrous \"shape\" in hot pursuit.", "video": false, "id": 8922, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jeepers Creepers", "tagline": "What\u2019s eating you?", "vote_count": 109, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/2qyn3GJXqLP54fbWazRGvsnkmAA.jpg", "id": 94899, "name": "Jeepers Creepers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0263488", "adult": false, "backdrop_path": "/rkFIuhiDLpOi3kJF7X94U0jPMk7.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "American Zoetrope", "id": 70}, {"name": "Cinerenta Medienbeteiligungs KG", "id": 995}, {"name": "Cinerenta-Cinebeta", "id": 21784}, {"name": "VCL Communications", "id": 21785}], "release_date": "2001-07-01", "popularity": 0.720228981260158, "original_title": "Jeepers Creepers", "budget": 10000000, "cast": [{"name": "Gina Philips", "character": "Patricia 'Trish' Jenner", "id": 56356, "credit_id": "52fe44c8c3a36847f80a9c43", "cast_id": 10, "profile_path": "/12V6w9FM62vJjGdCUyRyeqh9Pdr.jpg", "order": 0}, {"name": "Justin Long", "character": "Darius 'Darry' Jenner", "id": 15033, "credit_id": "52fe44c8c3a36847f80a9c47", "cast_id": 11, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Jonathan Breck", "character": "The Creeper", "id": 56357, "credit_id": "52fe44c8c3a36847f80a9c4b", "cast_id": 12, "profile_path": "/bdztgErdtOoOjO2ZiSkz4sinHQH.jpg", "order": 2}, {"name": "Patricia Belcher", "character": "Jezelle Gay Hartman", "id": 56358, "credit_id": "52fe44c8c3a36847f80a9c4f", "cast_id": 13, "profile_path": "/dbbOF0P2h8qJ0fktNzMj4rmztP3.jpg", "order": 3}, {"name": "Eileen Brennan", "character": "The Cat Lady", "id": 39015, "credit_id": "52fe44c8c3a36847f80a9c53", "cast_id": 14, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 4}, {"name": "Brandon Smith", "character": "Sgt. David Tubbs", "id": 36637, "credit_id": "52fe44c8c3a36847f80a9c57", "cast_id": 15, "profile_path": "/eM1ZbYDxOXhgPcY9Zlj12UyXxyD.jpg", "order": 5}, {"name": "Peggy Sheffield", "character": "Waitress Beverly", "id": 955065, "credit_id": "52fe44c8c3a36847f80a9c5b", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Jeffrey William Evans", "character": "Restaurant Manager", "id": 215118, "credit_id": "52fe44c8c3a36847f80a9c5f", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Patrick Cherry", "character": "Binky Plutzker", "id": 943484, "credit_id": "52fe44c8c3a36847f80a9c63", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Jon Beshara", "character": "Officer Robert Gideon", "id": 948289, "credit_id": "52fe44c8c3a36847f80a9c67", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Avis-Marie Barnes", "character": "Officer Natasha Weston", "id": 168703, "credit_id": "52fe44c8c3a36847f80a9c6b", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Steve Raulerson", "character": "Cellblock Officer", "id": 163220, "credit_id": "52fe44c8c3a36847f80a9c6f", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Tom Tarantini", "character": "Austin McCoy", "id": 945612, "credit_id": "52fe44c8c3a36847f80a9c73", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "William Haze", "character": "Officer with Hole in Chest", "id": 78116, "credit_id": "52fe44c8c3a36847f80a9c77", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Kim Kahana", "character": "Camper Driver", "id": 195854, "credit_id": "52fe44c8c3a36847f80a9c7b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Chris Shepardson", "character": "Dying Boy", "id": 955081, "credit_id": "52fe44c8c3a36847f80a9c7f", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Victor Salva", "department": "Directing", "job": "Director", "credit_id": "52fe44c8c3a36847f80a9c0f", "profile_path": "/nEynERnhq53yN2J0EHCUF4nbzbs.jpg", "id": 56349}], "vote_average": 6.1, "runtime": 90}, "8923": {"poster_path": "/z3LC4kI8azbeuHRGgDdWo6VBCdX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After being wrongfully expelled from Harvard University, American Matt Buckner flees to his sister's home in England. Once there, he is befriended by her charming and dangerous brother-in-law, Pete Dunham, and introduced to the underworld of British football hooliganism. Matt learns to stand his ground through a friendship that develops against the backdrop of this secret and often violent world. 'Green Street Hooligans' is a story of loyalty, trust and the sometimes brutal consequences of living close to the edge.", "video": false, "id": 8923, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Green Street Hooligans", "tagline": "Just think of someone you hate.", "vote_count": 174, "homepage": "http://www.warnervideo.com/greenstreethooligans/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/mwugklCYl3nTSf3TbwB5EMcS5Uf.jpg", "id": 152544, "name": "Green Street Hooligans Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0385002", "adult": false, "backdrop_path": "/3FozbFTvJmgSHEEuEtz0URFHGvv.jpg", "production_companies": [{"name": "Odd Lot Entertainment", "id": 3263}], "release_date": "2005-09-09", "popularity": 0.975113715966562, "original_title": "Hooligans", "budget": 0, "cast": [{"name": "Elijah Wood", "character": "Matt Buckner", "id": 109, "credit_id": "52fe44c8c3a36847f80a9d09", "cast_id": 12, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Claire Forlani", "character": "Shannon Dunham", "id": 4174, "credit_id": "52fe44c8c3a36847f80a9d0d", "cast_id": 13, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 1}, {"name": "Charlie Hunnam", "character": "Pete Dunham", "id": 56365, "credit_id": "52fe44c8c3a36847f80a9d11", "cast_id": 14, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 2}, {"name": "Ross McCall", "character": "Dave Bjorno", "id": 56366, "credit_id": "52fe44c8c3a36847f80a9d15", "cast_id": 15, "profile_path": "/9WpqifgQ8cQ4d26Q4D8MIlBg1xr.jpg", "order": 3}, {"name": "Leo Gregory", "character": "Bovver", "id": 76968, "credit_id": "52fe44c8c3a36847f80a9d19", "cast_id": 16, "profile_path": "/fXNoCusZFi3OmLdESlJzsuMkUjp.jpg", "order": 4}, {"name": "Marc Warren", "character": "Steve Dunham", "id": 70903, "credit_id": "52fe44c8c3a36847f80a9d1d", "cast_id": 17, "profile_path": "/9szgHtWkHTMRk0IXCOHngxG4oR8.jpg", "order": 5}, {"name": "Rafe Spall", "character": "Swill", "id": 28847, "credit_id": "52fe44c8c3a36847f80a9d21", "cast_id": 18, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 6}, {"name": "Kieran Bew", "character": "Ike", "id": 176199, "credit_id": "52fe44c8c3a36847f80a9d25", "cast_id": 19, "profile_path": "/7M8zEhrRMEKwOij0rrUDV9t70FT.jpg", "order": 7}, {"name": "Geoff Bell", "character": "Tommy Hatcher", "id": 6969, "credit_id": "52fe44c8c3a36847f80a9d29", "cast_id": 20, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 8}, {"name": "Henry Goodman", "character": "Carl Buckner", "id": 7030, "credit_id": "52fe44c8c3a36847f80a9d2d", "cast_id": 21, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 9}, {"name": "Francis Pope", "character": "Ned", "id": 219596, "credit_id": "52fe44c8c3a36847f80a9d31", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Christopher Hehir", "character": "Keith", "id": 1035594, "credit_id": "52fe44c8c3a36847f80a9d35", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Terence Jay", "character": "Jeremy Van Holden", "id": 951624, "credit_id": "52fe44c8c3a36847f80a9d39", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "David Alexander", "character": "Nigel", "id": 202050, "credit_id": "52fe44c8c3a36847f80a9d3d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Oliver Allison", "character": "Ben Dunham", "id": 1223212, "credit_id": "52fe44c8c3a36847f80a9d41", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "James Allison", "character": "Ben Dunham", "id": 1223213, "credit_id": "52fe44c8c3a36847f80a9d45", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Joel Beckett", "character": "Terry", "id": 318970, "credit_id": "52fe44c8c3a36847f80a9d49", "cast_id": 28, "profile_path": "/As65oQPvQsxfkm0ij65j0nhFJQn.jpg", "order": 16}, {"name": "Scott Christie", "character": "Ricky", "id": 1223214, "credit_id": "52fe44c8c3a36847f80a9d4d", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "David Carr", "character": "Clives", "id": 549248, "credit_id": "52fe44c8c3a36847f80a9d51", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Jacob Gaffney", "character": "Todd", "id": 1223215, "credit_id": "52fe44c8c3a36847f80a9d55", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Jamie Kenna", "character": "Big Marc", "id": 1035069, "credit_id": "52fe44c8c3a36847f80a9d59", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Johnny Palmiero", "character": "Garry", "id": 1223216, "credit_id": "52fe44c8c3a36847f80a9d5d", "cast_id": 33, "profile_path": null, "order": 21}], "directors": [{"name": "Lexi Alexander", "department": "Directing", "job": "Director", "credit_id": "52fe44c8c3a36847f80a9cc9", "profile_path": "/38jezS5VqFM9gRQ75dj7rJe4Ucb.jpg", "id": 56359}], "vote_average": 6.8, "runtime": 109}, "204922": {"poster_path": "/3UG2Pb122c7Va8MBtr1OHRB1YPh.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A woman wakes up every day, remembering nothing as a result of a traumatic accident in her past. One day, new terrifying truths emerge that force her to question everyone around her.", "video": false, "id": 204922, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Before I Go to Sleep", "tagline": "Who do you trust?", "vote_count": 165, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1726592", "adult": false, "backdrop_path": "/8zvoGTCNmWQJDqkH86oitGmq2XP.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Millennium Films", "id": 10254}, {"name": "Clarius Entertainment", "id": 36991}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Filmgate Films", "id": 18230}], "release_date": "2014-10-31", "popularity": 2.97516797512062, "original_title": "Before I Go to Sleep", "budget": 0, "cast": [{"name": "Nicole Kidman", "character": "Christine Lucas", "id": 2227, "credit_id": "52fe4cfdc3a368484e1d105f", "cast_id": 1, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Colin Firth", "character": "Ben Lucas", "id": 5472, "credit_id": "52fe4cfdc3a368484e1d1063", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Mark Strong", "character": "Dr. Nash", "id": 2983, "credit_id": "52fe4cfdc3a368484e1d1067", "cast_id": 3, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Anne-Marie Duff", "character": "Claire", "id": 37058, "credit_id": "52fe4cfdc3a368484e1d106b", "cast_id": 4, "profile_path": "/oSHNwLcaVledYycyhmXX0mqqXQF.jpg", "order": 3}, {"name": "Jing Lusi", "character": "Nurse Kate", "id": 564035, "credit_id": "53ad963a0e0a265975002442", "cast_id": 6, "profile_path": "/o6Z2Ks2a8tObnhurCp93gAHHvrU.jpg", "order": 4}, {"name": "Dean-Charles Chapman", "character": "Adam", "id": 1332971, "credit_id": "53bc560c0e0a26157900002d", "cast_id": 8, "profile_path": "/yfuKsvh1yiOnRkbEHQWsOOSAl4W.jpg", "order": 5}, {"name": "Adam Levy", "character": "Husband", "id": 1376050, "credit_id": "54b8e45ac3a3681421000f60", "cast_id": 53, "profile_path": null, "order": 6}, {"name": "Ben Crompton", "character": "Warehouse Caretaker", "id": 72315, "credit_id": "54b8e478c3a3681445001035", "cast_id": 54, "profile_path": null, "order": 7}, {"name": "Flynn MacArthur", "character": "Boy in Dream", "id": 1414108, "credit_id": "54b8e491c3a3681421000f66", "cast_id": 55, "profile_path": null, "order": 8}, {"name": "Gabriel Strong", "character": "Boy on Bike", "id": 1414109, "credit_id": "54b8e4aa92514148b0001072", "cast_id": 56, "profile_path": null, "order": 9}], "directors": [{"name": "Rowan Joffe", "department": "Directing", "job": "Director", "credit_id": "52fe4cfdc3a368484e1d1071", "profile_path": null, "id": 17608}], "vote_average": 5.8, "runtime": 92}, "82654": {"poster_path": "/8mE2wRdp9FzCHFPnQmpWN59I6xv.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 116000000, "overview": "After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.", "video": false, "id": 82654, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Warm Bodies", "tagline": "Cold body. Warm heart.", "vote_count": 1362, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1588173", "adult": false, "backdrop_path": "/sKZdmmHRLweHnssV0VbkwE9oinc.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2013-02-01", "popularity": 1.49494564654559, "original_title": "Warm Bodies", "budget": 35000000, "cast": [{"name": "Nicholas Hoult", "character": "R", "id": 3292, "credit_id": "52fe48649251416c9108ad65", "cast_id": 13, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 0}, {"name": "Teresa Palmer", "character": "Julie", "id": 20374, "credit_id": "52fe48649251416c9108ad5d", "cast_id": 11, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 1}, {"name": "Analeigh Tipton", "character": "Nora", "id": 124644, "credit_id": "52fe48649251416c9108ad61", "cast_id": 12, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 2}, {"name": "Rob Corddry", "character": "M", "id": 52997, "credit_id": "52fe48649251416c9108ad71", "cast_id": 16, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 3}, {"name": "Dave Franco", "character": "Perry", "id": 54697, "credit_id": "52fe48649251416c9108ad6d", "cast_id": 15, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 4}, {"name": "John Malkovich", "character": "Grigio", "id": 6949, "credit_id": "52fe48649251416c9108ad69", "cast_id": 14, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 5}, {"name": "Cory Hardrict", "character": "Kevin", "id": 74302, "credit_id": "52fe48649251416c9108ad75", "cast_id": 17, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 6}, {"name": "Daniel Rindress-Kay", "character": "Soldier #1", "id": 1172760, "credit_id": "52fe48649251416c9108adab", "cast_id": 28, "profile_path": "/yxbPLpJMeOUfkQis9MiTzSiwNOo.jpg", "order": 7}, {"name": "Vincent Leclerc", "character": "Perry's Dad", "id": 982065, "credit_id": "52fe48649251416c9108adaf", "cast_id": 29, "profile_path": "/dRi3BljTme2NbAsYvtvhhxX1jPK.jpg", "order": 8}, {"name": "Robert Reynolds", "character": "Janitor", "id": 101221, "credit_id": "5310f5249251410fe600145e", "cast_id": 30, "profile_path": "/3qdwA5hiyHDK6pQLwKjrx4x0A4a.jpg", "order": 9}, {"name": "John Topor", "character": "TSA Zombie", "id": 1195616, "credit_id": "5310f5d8925141104d0014d9", "cast_id": 31, "profile_path": "/tcg139Qavp4eCc5YhtpuAJQ3HQh.jpg", "order": 10}, {"name": "Ayisha Issa", "character": "Athletic Woman", "id": 231517, "credit_id": "52fe48649251416c9108ad79", "cast_id": 19, "profile_path": "/lCrVPwyBgXDBvuwY7NTwZpG8FYu.jpg", "order": 11}, {"name": "Debbie Wong", "character": "Laughing Girl", "id": 164860, "credit_id": "5310f6809251411013001446", "cast_id": 32, "profile_path": "/jw0VljYmIB5Km1ZfMix3F7WC7kL.jpg", "order": 12}, {"name": "Christian Paul", "character": "Stadium Soldier", "id": 1141258, "credit_id": "5310f7a8925141102a0013da", "cast_id": 33, "profile_path": "/7jkudDEHvuVxnewyzFqFp7z5QqD.jpg", "order": 13}, {"name": "Patrick Sabongui", "character": "Hunting Zombie", "id": 102742, "credit_id": "52fe48649251416c9108ad7d", "cast_id": 20, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 14}], "directors": [{"name": "Jonathan Levine", "department": "Directing", "job": "Director", "credit_id": "52fe48649251416c9108ad23", "profile_path": "/gfJOKZPSbpzls7FV0Ogv4IpEeXh.jpg", "id": 56661}], "vote_average": 6.3, "runtime": 97}, "74465": {"poster_path": "/2gYXRzCsQz7qpZKgoE28a9zX1eu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120081841, "overview": "Benjamin has lost his wife. In a bid to start his life over, he purchases a large house that has a zoo. This is welcome news for his daughter, but his son is not happy about it. The zoo is need of renovation and Benjamin sets about the work with the head keeper, Kelly, and the rest of the zoo staff. But, the zoo soon runs into financial trouble. The staff must get the zoo back to its former glory, pass a zoo inspection, and get it back open to the public.", "video": false, "id": 74465, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "We Bought a Zoo", "tagline": "A True Zoo Story", "vote_count": 278, "homepage": "http://www.weboughtazoo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1389137", "adult": false, "backdrop_path": "/3shXpoLYyfKucz3vJXrP0FCuqJM.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "LBI Entertainment", "id": 8518}, {"name": "Vinyl Films", "id": 485}], "release_date": "2011-12-23", "popularity": 1.02696133217317, "original_title": "We Bought a Zoo", "budget": 9450000, "cast": [{"name": "Matt Damon", "character": "Benjamin Mee", "id": 1892, "credit_id": "52fe48ccc3a368484e10b87f", "cast_id": 4, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Kelly Foster", "id": 1245, "credit_id": "52fe48ccc3a368484e10b883", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Thomas Haden Church", "character": "Duncan Mee", "id": 19159, "credit_id": "52fe48ccc3a368484e10b893", "cast_id": 9, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 2}, {"name": "Colin Ford", "character": "Dylan Mee", "id": 74539, "credit_id": "52fe48ccc3a368484e10b8a3", "cast_id": 13, "profile_path": "/6S1dOJnIuaKAXoVxTePNOQJbsFU.jpg", "order": 3}, {"name": "Maggie Elizabeth Jones", "character": "Rosie Mee", "id": 1046348, "credit_id": "52fe48ccc3a368484e10b8a7", "cast_id": 14, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 4}, {"name": "Angus Macfadyen", "character": "Peter MacCready", "id": 2464, "credit_id": "52fe48ccc3a368484e10b8ab", "cast_id": 15, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 5}, {"name": "Elle Fanning", "character": "Lily Miska", "id": 18050, "credit_id": "52fe48ccc3a368484e10b887", "cast_id": 6, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 6}, {"name": "Patrick Fugit", "character": "Robin Jones", "id": 11663, "credit_id": "52fe48ccc3a368484e10b88b", "cast_id": 7, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 7}, {"name": "John Michael Higgins", "character": "Walter Ferris", "id": 8265, "credit_id": "52fe48ccc3a368484e10b89f", "cast_id": 12, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 8}, {"name": "Stephanie Szostak", "character": "Katherine Mee", "id": 121953, "credit_id": "52fe48ccc3a368484e10b88f", "cast_id": 8, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 9}, {"name": "Carla Gallo", "character": "Rhonda", "id": 54708, "credit_id": "52fe48ccc3a368484e10b897", "cast_id": 10, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 10}, {"name": "Desi Lydic", "character": "Shea Seger", "id": 90719, "credit_id": "52fe48ccc3a368484e10b89b", "cast_id": 11, "profile_path": "/hefkrpjs4TtM7ogAFJnRiHkZiLw.jpg", "order": 11}, {"name": "Crystal the Monkey", "character": "Crystal the Capuchin", "id": 1428580, "credit_id": "550a88e9925141468900112f", "cast_id": 16, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 12}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe48ccc3a368484e10b86f", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.2, "runtime": 124}, "744": {"poster_path": "/orGXnBKfT41LxZhitLkXhqUfJJW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 356830601, "overview": "For Lieutenant Pete Mitchell and his friend and Co-Pilot Nick Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. A tragedy, as well as personal demons, threaten Pete's dreams of becoming an Ace pilot.", "video": false, "id": 744, "genres": [{"id": 28, "name": "Action"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Top Gun", "tagline": "Up there with the best of the best.", "vote_count": 605, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092099", "adult": false, "backdrop_path": "/9GyBSsMiGkPSk4OESIYZuedijBI.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-05-16", "popularity": 1.3223234309363, "original_title": "Top Gun", "budget": 15000000, "cast": [{"name": "Tom Cruise", "character": "Pete 'Maverick' Mitchell", "id": 500, "credit_id": "52fe426fc3a36847f801e6b9", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Kelly McGillis", "character": "Charlotte 'Charlie' Blackwood", "id": 11084, "credit_id": "52fe426fc3a36847f801e6bd", "cast_id": 14, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Tom 'Iceman' Kazanski", "id": 5576, "credit_id": "52fe426fc3a36847f801e6c1", "cast_id": 15, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Anthony Edwards", "character": "Nick 'Goose' Bradshaw", "id": 11085, "credit_id": "52fe426fc3a36847f801e6c5", "cast_id": 16, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 3}, {"name": "Tom Skerritt", "character": "Viper", "id": 4139, "credit_id": "52fe426fc3a36847f801e6c9", "cast_id": 17, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 4}, {"name": "Michael Ironside", "character": "Jester", "id": 11086, "credit_id": "52fe426fc3a36847f801e6cd", "cast_id": 18, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 5}, {"name": "John Stockwell", "character": "Cougar", "id": 57082, "credit_id": "52fe426fc3a36847f801e6d1", "cast_id": 19, "profile_path": "/9AQo5W5T6vP6WTcDvHx1CbbiOzU.jpg", "order": 6}, {"name": "Barry Tubb", "character": "Wolfman", "id": 11088, "credit_id": "52fe426fc3a36847f801e6d5", "cast_id": 20, "profile_path": "/157Hggb9NMeQei5TTgBntPRuwFe.jpg", "order": 7}, {"name": "Rick Rossovich", "character": "Slider", "id": 2717, "credit_id": "52fe426fc3a36847f801e6d9", "cast_id": 21, "profile_path": "/f2bFBUT1WRImsKVkSq7A3yACFAa.jpg", "order": 8}, {"name": "Tim Robbins", "character": "Merlin", "id": 504, "credit_id": "52fe426fc3a36847f801e6dd", "cast_id": 22, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 9}, {"name": "Meg Ryan", "character": "Carole", "id": 5344, "credit_id": "52fe426fc3a36847f801e6e1", "cast_id": 23, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 10}, {"name": "Whip Hubley", "character": "Hollywood", "id": 11089, "credit_id": "52fe426fc3a36847f801e6e5", "cast_id": 24, "profile_path": "/bk8Z3dtqRB0N4hGodG5zY0yiu3a.jpg", "order": 11}, {"name": "Adrian Pasdar", "character": "Chipper", "id": 17304, "credit_id": "52fe426fc3a36847f801e6e9", "cast_id": 25, "profile_path": "/yNqnfWmzlDC5qB5Ll6PgK2JfGIi.jpg", "order": 12}, {"name": "James Tolkan", "character": "Stinger", "id": 1072, "credit_id": "52fe426fc3a36847f801e6ed", "cast_id": 27, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 14}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e673", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.5, "runtime": 110}, "745": {"poster_path": "/wW1y9pvMejWjdfz0mpbB3Ag3SJf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 672806292, "overview": "A psychological thriller about an eight year old boy named Cole Sear who believes he can see into the world of the dead. A child psychologist named Malcolm Crowe comes to Cole to help him deal with his problem, learning that he really can see ghosts of dead people.", "video": false, "id": 745, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Sixth Sense", "tagline": "Not every gift is a blessing.", "vote_count": 953, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167404", "adult": false, "backdrop_path": "/y67X8DSDEAVcfo9aqX6yipsTsrX.jpg", "production_companies": [{"name": "Hollywood Pictures", "id": 915}, {"name": "Barry Mendel Productions", "id": 17032}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "1999-08-02", "popularity": 0.971076255371449, "original_title": "The Sixth Sense", "budget": 40000000, "cast": [{"name": "Bruce Willis", "character": "Malcolm Crowe", "id": 62, "credit_id": "52fe426fc3a36847f801e74b", "cast_id": 9, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Haley Joel Osment", "character": "Cole Sear", "id": 9640, "credit_id": "52fe426fc3a36847f801e74f", "cast_id": 10, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 1}, {"name": "Toni Collette", "character": "Lynn Sear", "id": 3051, "credit_id": "52fe426fc3a36847f801e753", "cast_id": 11, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Olivia Williams", "character": "Anna Crowe", "id": 11616, "credit_id": "52fe426fc3a36847f801e757", "cast_id": 12, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 3}, {"name": "Mischa Barton", "character": "Kyra Collins", "id": 11617, "credit_id": "52fe426fc3a36847f801e75b", "cast_id": 13, "profile_path": "/pAfKhudBM6x6XjxziTJ5FftNgSR.jpg", "order": 4}, {"name": "Donnie Wahlberg", "character": "Vincent Grey", "id": 2680, "credit_id": "52fe426fc3a36847f801e75f", "cast_id": 14, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 5}, {"name": "Trevor Morgan", "character": "Tommy Tammisimo", "id": 4940, "credit_id": "52fe426fc3a36847f801e763", "cast_id": 15, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 6}, {"name": "Greg Wood", "character": "Mr. Collins", "id": 11618, "credit_id": "52fe426fc3a36847f801e767", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Jeffrey Zubernis", "character": "Bobby", "id": 11619, "credit_id": "52fe426fc3a36847f801e76b", "cast_id": 17, "profile_path": "/z8Iyi5n1c3PUXyRMhRLMw6sq62m.jpg", "order": 8}, {"name": "Glenn Fitzgerald", "character": "Sean", "id": 10694, "credit_id": "52fe426fc3a36847f801e76f", "cast_id": 18, "profile_path": "/mZtEWlHspjit1UGs9cmzzuWeubV.jpg", "order": 9}, {"name": "Bruce Norris", "character": "Stanley Cunningham", "id": 11621, "credit_id": "52fe426fc3a36847f801e785", "cast_id": 22, "profile_path": "/sBoDi1ZPhvSJH17eFM4GbgSpbSl.jpg", "order": 10}, {"name": "Peter Anthony Tambakis", "character": "Darren", "id": 52861, "credit_id": "5497f2ebc3a368054b0011ba", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e723", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 7.2, "runtime": 107}, "746": {"poster_path": "/KTirnfG6FZLKWbm8Am3EEKmZDx.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 0, "overview": "A dramatic history of Pu Yi, the last of the Emperors of China, from his lofty birth and brief reign in the Forbidden City, the object of worship by half a billion people; through his abdication, his decline and dissolute lifestyle; his exploitation by the invading Japanese, and finally to his obscure existence as just another peasant worker in the People's Republic.", "video": false, "id": 746, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Last Emperor", "tagline": "He was the Lord of Ten Thousand Years, the absolute monarch of China. He was born to rule a world of ancient tradition. Nothing prepared him for our world of change.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093389", "adult": false, "backdrop_path": "/4FfjHGlzloUqJe9h3mZK1T2olty.jpg", "production_companies": [{"name": "Hemdale Film Corporation", "id": 469}, {"name": "Recorded Pictures Company", "id": 470}, {"name": "Soprofilms", "id": 472}, {"name": "TAO Film", "id": 473}, {"name": "Yanco", "id": 474}], "release_date": "1987-10-29", "popularity": 1.03875876965791, "original_title": "The Last Emperor", "budget": 25000000, "cast": [{"name": "John Lone", "character": "Pu Yi", "id": 11389, "credit_id": "52fe426fc3a36847f801e82f", "cast_id": 17, "profile_path": "/qlzum4vK8Snzp65jiUVpZGYPzFE.jpg", "order": 0}, {"name": "Peter O'Toole", "character": "Reginal Flemming Johnson", "id": 11390, "credit_id": "52fe426fc3a36847f801e833", "cast_id": 18, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 1}, {"name": "Joan Chen", "character": "Wang Jung", "id": 6720, "credit_id": "52fe426fc3a36847f801e837", "cast_id": 19, "profile_path": "/ekWS5bAB0kv4RColHqYaUAoXz0I.jpg", "order": 2}, {"name": "Dennis Dun", "character": "Big Li", "id": 11392, "credit_id": "52fe426fc3a36847f801e83b", "cast_id": 20, "profile_path": "/t8jiYbpljN07h2lgDle16dVDkT3.jpg", "order": 3}, {"name": "Ryuichi Sakamoto", "character": "Amakasu", "id": 11382, "credit_id": "52fe426fc3a36847f801e83f", "cast_id": 21, "profile_path": "/cW50iJkJSZXlQrbLTPnZTmnk7jY.jpg", "order": 4}, {"name": "Ruocheng Ying", "character": "Governor", "id": 11394, "credit_id": "52fe426fc3a36847f801e843", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Victor Wong", "character": "Chen Pao Shen", "id": 11395, "credit_id": "52fe426fc3a36847f801e847", "cast_id": 23, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 6}, {"name": "Maggie Han", "character": "Eastern Jewel", "id": 11396, "credit_id": "52fe426fc3a36847f801e84b", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Ric Young", "character": "Interrogator", "id": 11397, "credit_id": "52fe426fc3a36847f801e84f", "cast_id": 25, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 8}, {"name": "Cary-Hiroyuki Tagawa", "character": "Chang", "id": 11398, "credit_id": "52fe426fc3a36847f801e853", "cast_id": 26, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 9}, {"name": "Fumihiko Ikeda", "character": "Yoshioka", "id": 11399, "credit_id": "52fe426fc3a36847f801e857", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Richard Vuu", "character": "Pu Yi - 3 Years", "id": 1448561, "credit_id": "551cb8bf9251416a330015eb", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Tsou Tijger", "character": "Pu Yi - 8 Years", "id": 1448562, "credit_id": "551cb907c3a3684a28001724", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Tao Wu", "character": "Pu Yi - 15 Years", "id": 1448563, "credit_id": "551cb92ac3a3680a1d0008fb", "cast_id": 32, "profile_path": null, "order": 14}], "directors": [{"name": "Bernardo Bertolucci", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e7d1", "profile_path": "/syIk3h60I9ngaUZV9VRVeV4dKdx.jpg", "id": 4956}], "vote_average": 6.9, "runtime": 163}, "747": {"poster_path": "/ssY4EvRvufUZooNq1buRUrW7lCX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 30039392, "overview": "Shaun of the Dead is a humorous homage to Zombie movies from director Edgar Wright; an outrageous romantic comedy with zombies.", "video": false, "id": 747, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Shaun of the Dead", "tagline": "A romantic comedy. With zombies.", "vote_count": 531, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365748", "adult": false, "backdrop_path": "/50mMiR0R1QclaAODTutwXBrReLJ.jpg", "production_companies": [{"name": "WT2 Productions", "id": 10462}, {"name": "Universal Pictures", "id": 33}], "release_date": "2004-04-09", "popularity": 1.28741395916747, "original_title": "Shaun of the Dead", "budget": 4000000, "cast": [{"name": "Simon Pegg", "character": "Shaun", "id": 11108, "credit_id": "52fe4270c3a36847f801e891", "cast_id": 2, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Nick Frost", "character": "Ed", "id": 11109, "credit_id": "52fe4270c3a36847f801e895", "cast_id": 3, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 1}, {"name": "Kate Ashfield", "character": "Liz", "id": 11110, "credit_id": "52fe4270c3a36847f801e899", "cast_id": 4, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 2}, {"name": "Lucy Davis", "character": "Dianne", "id": 11111, "credit_id": "52fe4270c3a36847f801e89d", "cast_id": 5, "profile_path": "/60IfOPYBMaJwUt0M9UJ2QJCxH4S.jpg", "order": 3}, {"name": "Dylan Moran", "character": "David", "id": 7028, "credit_id": "52fe4270c3a36847f801e8a1", "cast_id": 6, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 4}, {"name": "Peter Serafinowicz", "character": "Pete", "id": 11115, "credit_id": "52fe4270c3a36847f801e8c3", "cast_id": 12, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 5}, {"name": "Penelope Wilton", "character": "Barbara", "id": 1249, "credit_id": "52fe4270c3a36847f801e8cb", "cast_id": 14, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 6}, {"name": "Steve Emerson", "character": "John", "id": 11117, "credit_id": "52fe4270c3a36847f801e8cf", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Nicola Cunningham", "character": "Mary", "id": 11116, "credit_id": "52fe4270c3a36847f801e8c7", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Reece Shearsmith", "character": "Mark", "id": 34551, "credit_id": "52fe4270c3a36847f801e8df", "cast_id": 18, "profile_path": "/d6oib5uLUMLvw3ebTkQ5Ngc73FO.jpg", "order": 9}, {"name": "Bill Nighy", "character": "Phillip", "id": 2440, "credit_id": "52fe4270c3a36847f801e8e3", "cast_id": 19, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 10}, {"name": "Jessica Hynes", "character": "Yvonne", "id": 47730, "credit_id": "52fe4270c3a36847f801e8e7", "cast_id": 20, "profile_path": "/rHnSgkW6oTajbz6L3BETYbqdJZe.jpg", "order": 11}, {"name": "Arvind Doshi", "character": "Nelson", "id": 1445662, "credit_id": "55130162c3a368619500194c", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Stuart Powell", "character": "Snakehips", "id": 1445663, "credit_id": "5513018e925141045c0019d6", "cast_id": 24, "profile_path": null, "order": 13}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe4270c3a36847f801e88d", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 7.2, "runtime": 99}, "17134": {"poster_path": "/i36NEi5TSYSxmu6dO0K1cAWxjGx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17280326, "overview": "When New Orleans cop Danny Fisher prevents a brilliant thief from successfully carrying out his latest heist, the thief's girlfriend is accidentally killed. Hungry for revenge, the criminal mastermind breaks out of prison and kidnaps Danny's fiancee. To save her, Danny must successfully navigate his way through an elaborate series of tasks and puzzles, or else watch the love of his life die.", "video": false, "id": 17134, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "12 Rounds", "tagline": "Survive all 12", "vote_count": 68, "homepage": "http://www.12rounds-movie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/whtxa0L7XIw7xomlwTaDM0sKFw8.jpg", "id": 221622, "name": "12 Rounds Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1160368", "adult": false, "backdrop_path": "/jtC2aBgz5pzjP0WQPUn7VJOWKFN.jpg", "production_companies": [{"name": "20th Century Fox Home Entertainment", "id": 3635}, {"name": "The Mark Gordon Company", "id": 1557}, {"name": "Fox Atomic", "id": 2890}, {"name": "WWE Studios", "id": 10339}, {"name": "Midnight Sun Pictures", "id": 17887}], "release_date": "2009-03-19", "popularity": 0.635525772584465, "original_title": "12 Rounds", "budget": 20000000, "cast": [{"name": "John Cena", "character": "Det. Danny Fisher", "id": 56446, "credit_id": "52fe47089251416c7508bac7", "cast_id": 1, "profile_path": "/WbnZd6SK3DRlQBBW1yP1xHwlbs.jpg", "order": 0}, {"name": "Ashley Scott", "character": "Molly Porter", "id": 71128, "credit_id": "52fe47089251416c7508bacf", "cast_id": 3, "profile_path": "/pHQXzpZbb1T5HobppWZtIMbjyIC.jpg", "order": 1}, {"name": "Brian J. White", "character": "Det. Hank Carver", "id": 31137, "credit_id": "52fe47089251416c7508bae9", "cast_id": 8, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 2}, {"name": "Aidan Gillen", "character": "Miles Jackson", "id": 49735, "credit_id": "52fe47089251416c7508bacb", "cast_id": 2, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 3}, {"name": "Steve Harris", "character": "Special Agent George Aiken", "id": 2202, "credit_id": "52fe47089251416c7508bae5", "cast_id": 7, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 4}, {"name": "Gonzalo Menendez", "character": "Special Agent Ray Santiago", "id": 84754, "credit_id": "52fe47089251416c7508baf3", "cast_id": 10, "profile_path": "/qubqkIJkHSMwG1bAkiHjqY3xfxu.jpg", "order": 5}, {"name": "Taylor Cole", "character": "Erica Kessen", "id": 54182, "credit_id": "52fe47089251416c7508baf7", "cast_id": 11, "profile_path": "/ogV3A4WUcYmN1EJ2AIOHeORKIMB.jpg", "order": 6}, {"name": "Kyle Russell Clements", "character": "Dave Fisher", "id": 84756, "credit_id": "52fe47089251416c7508bb01", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Peter \"Navy\" Tuiasosopo", "character": "Willie Dumaine", "id": 84757, "credit_id": "52fe47089251416c7508bb05", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Travis Davis", "character": "Anthony Deluso", "id": 84759, "credit_id": "52fe47089251416c7508bb0f", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Nick Gomez", "character": "Samuel", "id": 84760, "credit_id": "52fe47089251416c7508bb13", "cast_id": 17, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 10}, {"name": "Rosalind Rubin", "character": "FBI Agent Sheila", "id": 999276, "credit_id": "52fe47089251416c7508bb23", "cast_id": 20, "profile_path": "/1XhiJW95jagcp5xOtYenhqaMMzn.jpg", "order": 11}, {"name": "Billy Slaughter", "character": "Technician", "id": 62784, "credit_id": "547eeee392514124b60010c6", "cast_id": 60, "profile_path": "/5YykEE15cNzgexL7d5ewAu5M8XN.jpg", "order": 12}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe47089251416c7508bad5", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.1, "runtime": 108}, "752": {"poster_path": "/cALaAXkC8hkv1fjp1T7EKH2WSue.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132511035, "overview": "In a world in which Great Britain has become a fascist state, a masked vigilante known only as \"V\" conducts guerrilla warfare against the oppressive British government. When \"V\" rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.", "video": false, "id": 752, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "V for Vendetta", "tagline": "People should not be afraid of their governments. Governments should be afraid of their people.", "vote_count": 1533, "homepage": "http://vforvendetta.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0434409", "adult": false, "backdrop_path": "/lxwPthqCYWIr9C57W26lcbjctJZ.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Virtual Studios", "id": 449}, {"name": "Silver Pictures", "id": 1885}, {"name": "Anarchos Productions", "id": 450}, {"name": "F\u00fcnfte Babelsberg Film", "id": 23889}, {"name": "Medienboard Berlin-Brandenburg", "id": 7307}, {"name": "DC Comics", "id": 429}], "release_date": "2005-12-11", "popularity": 1.02498861033115, "original_title": "V for Vendetta", "budget": 54000000, "cast": [{"name": "Natalie Portman", "character": "Evey Hammond", "id": 524, "credit_id": "52fe4270c3a36847f801ec1d", "cast_id": 23, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Hugo Weaving", "character": "V / William Rookwood", "id": 1331, "credit_id": "52fe4270c3a36847f801ec21", "cast_id": 24, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 1}, {"name": "Stephen Rea", "character": "Chief Inspector Eric Finch", "id": 9029, "credit_id": "52fe4270c3a36847f801ec25", "cast_id": 25, "profile_path": "/taD1NngDbW8cyCuacAT3YaecSEG.jpg", "order": 2}, {"name": "Stephen Fry", "character": "Gordon Deitrich", "id": 11275, "credit_id": "52fe4270c3a36847f801ec29", "cast_id": 26, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 3}, {"name": "John Hurt", "character": "Chancellor Adam Sutler", "id": 5049, "credit_id": "52fe4270c3a36847f801ec2d", "cast_id": 27, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Tim Pigott-Smith", "character": "Creedy", "id": 11276, "credit_id": "52fe4270c3a36847f801ec31", "cast_id": 28, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 5}, {"name": "Natasha Wightman", "character": "Valerie", "id": 11277, "credit_id": "52fe4270c3a36847f801ec35", "cast_id": 29, "profile_path": "/v2VZP1K0SY9z3XSUfufaNSRk6Lz.jpg", "order": 6}, {"name": "Rupert Graves", "character": "Dominic", "id": 11278, "credit_id": "52fe4270c3a36847f801ec39", "cast_id": 30, "profile_path": "/wWMJKCYIaD9TKLKTKQL34jVrHjk.jpg", "order": 7}, {"name": "Roger Allam", "character": "Lewis Prothero", "id": 11279, "credit_id": "52fe4270c3a36847f801ec3d", "cast_id": 31, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 8}, {"name": "Ben Miles", "character": "Dascomb", "id": 11280, "credit_id": "52fe4270c3a36847f801ec41", "cast_id": 32, "profile_path": "/erYrlzzg8F85SqEqG1cRZ9Ftjkh.jpg", "order": 9}, {"name": "Sin\u00e9ad Cusack", "character": "Delia Surridge", "id": 11281, "credit_id": "52fe4270c3a36847f801ec45", "cast_id": 33, "profile_path": "/r9eWOKN1WtE7RMDAwIhOpMRh3wL.jpg", "order": 10}, {"name": "Eddie Marsan", "character": "Etheridge", "id": 1665, "credit_id": "52fe4270c3a36847f801ec4d", "cast_id": 35, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 11}, {"name": "John Standing", "character": "Bishop Lilliman", "id": 11282, "credit_id": "52fe4270c3a36847f801ec49", "cast_id": 34, "profile_path": "/npS8a4mKgqpJJiNeRPn0Ftl7pxj.jpg", "order": 12}, {"name": "Imogen Poots", "character": "Young Valerie", "id": 17606, "credit_id": "5488cfea92514161d00001d5", "cast_id": 273, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 13}], "directors": [{"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe4270c3a36847f801ebb3", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 7.4, "runtime": 132}, "146216": {"poster_path": "/dvWITvEzlq8IaUbxUuBVKvXqfo6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.", "video": false, "id": 146216, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "RED 2", "tagline": "The best never rest.", "vote_count": 694, "homepage": "http://red-themovie.com/", "belongs_to_collection": {"backdrop_path": "/fLQjbO5Y2a4hXTPYsZCcWAdjcdS.jpg", "poster_path": "/d9T3DkXxDahif4eXPzrH28yayaL.jpg", "id": 163902, "name": "RED Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1821694", "adult": false, "backdrop_path": "/9DURhsE2UwGlufkShlw9rXC2Yug.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Summit Entertainment", "id": 491}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2013-07-19", "popularity": 1.70821444379649, "original_title": "RED 2", "budget": 84000000, "cast": [{"name": "Bruce Willis", "character": "Frank Moses", "id": 62, "credit_id": "52fe4b779251416c75103c5f", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Katja", "id": 1922, "credit_id": "52fe4b779251416c75103c67", "cast_id": 3, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Anthony Hopkins", "character": "Bailey", "id": 4173, "credit_id": "52fe4b779251416c75103c63", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 2}, {"name": "Helen Mirren", "character": "Victoria", "id": 15735, "credit_id": "52fe4b779251416c75103c6b", "cast_id": 4, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 3}, {"name": "John Malkovich", "character": "Marvin Boggs", "id": 6949, "credit_id": "52fe4b779251416c75103c6f", "cast_id": 5, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Mary-Louise Parker", "character": "Sarah Ross", "id": 18248, "credit_id": "52fe4b779251416c75103c73", "cast_id": 6, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 5}, {"name": "David Thewlis", "character": "The Frog", "id": 11207, "credit_id": "52fe4b779251416c75103c77", "cast_id": 7, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 6}, {"name": "Neal McDonough", "character": "Jack Horton", "id": 2203, "credit_id": "52fe4b779251416c75103c7b", "cast_id": 8, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 7}, {"name": "Lee Byung-hun", "character": "Han Cho Bai", "id": 25002, "credit_id": "52fe4b779251416c75103c97", "cast_id": 14, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 8}, {"name": "Neve Gachev", "character": "Londoner", "id": 1186597, "credit_id": "52fe4b779251416c75103c9f", "cast_id": 16, "profile_path": "/rMkCANQP59CaTG8t1FlehuhIepw.jpg", "order": 10}, {"name": "Lee Asquith-Coe", "character": "Security Detail Soldier", "id": 531772, "credit_id": "52fe4b779251416c75103ca3", "cast_id": 17, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 11}, {"name": "George Georgiou", "character": "Revolutionary Guard", "id": 570010, "credit_id": "52fe4b779251416c75103ca7", "cast_id": 18, "profile_path": "/i4PzEbzS3b4dvcUUtdGFOvFpcG0.jpg", "order": 12}, {"name": "Paul Hopkins", "character": "Funeral Director", "id": 102853, "credit_id": "52fe4b789251416c75103cab", "cast_id": 19, "profile_path": "/bETrIuwlbd37J2Ljye4n5yjPjTj.jpg", "order": 13}, {"name": "Garrick Hagon", "character": "Davis", "id": 17356, "credit_id": "52fe4b789251416c75103caf", "cast_id": 20, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 14}, {"name": "Brian Cox", "character": "Ivan", "id": 1248, "credit_id": "53134cd6925141100800633e", "cast_id": 22, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 15}, {"name": "Tim Pigott-Smith", "character": "Director Philips", "id": 11276, "credit_id": "53134d569251411013006045", "cast_id": 23, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 16}, {"name": "Philip Arditti", "character": "Arman", "id": 1235294, "credit_id": "53134d8a925141101f005fff", "cast_id": 24, "profile_path": "/j7kpt6uVToEDRF8Cz7CXSBq7u0o.jpg", "order": 17}, {"name": "Michael Vardian", "character": "Tourist (action scenes)", "id": 1426167, "credit_id": "54dbcf5a92514155bb00004d", "cast_id": 32, "profile_path": "/zY4xOBvFDu9GZemU5FGSNg1MD6v.jpg", "order": 18}], "directors": [{"name": "Dean Parisot", "department": "Directing", "job": "Director", "credit_id": "52fe4b779251416c75103c81", "profile_path": "/3h20QFQ6duhpJ1FMSeJiFju0WGp.jpg", "id": 15002}], "vote_average": 6.3, "runtime": 116}, "754": {"poster_path": "/q1i8QHiHZ1cukG5iOxai8pydmoa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245676146, "overview": "An antiterrorism agent goes under the knife to acquire the likeness of a terrorist and gather details about a bombing plot. When the terrorist escapes custody, he undergoes surgery to look like the agent so he can get close to the agent's family.", "video": false, "id": 754, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Face/Off", "tagline": "Only one will survive.", "vote_count": 535, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0119094", "adult": false, "backdrop_path": "/kwsnFHKEkqlREvEl2RNvxGmEbFt.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Paramount Pictures", "id": 4}, {"name": "Permut Presentations", "id": 455}, {"name": "WCG Entertainment Productions", "id": 456}], "release_date": "1997-06-26", "popularity": 1.34971114552058, "original_title": "Face/Off", "budget": 80000000, "cast": [{"name": "John Travolta", "character": "Sean Archer", "id": 8891, "credit_id": "52fe4271c3a36847f801f0e3", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Nicolas Cage", "character": "Castor Troy", "id": 2963, "credit_id": "52fe4271c3a36847f801f0e7", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 1}, {"name": "Joan Allen", "character": "Eve Archer", "id": 11148, "credit_id": "52fe4271c3a36847f801f0eb", "cast_id": 3, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 2}, {"name": "Dominique Swain", "character": "Jamie Archer", "id": 11149, "credit_id": "52fe4271c3a36847f801f0ef", "cast_id": 4, "profile_path": "/ytJJHXh5PlBRLh7UAyiDn03XkGL.jpg", "order": 3}, {"name": "Alessandro Nivola", "character": "Pollux Troy", "id": 4941, "credit_id": "52fe4271c3a36847f801f0f3", "cast_id": 5, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 4}, {"name": "Gina Gershon", "character": "Sasha Hassler", "id": 11150, "credit_id": "52fe4271c3a36847f801f0f7", "cast_id": 6, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 5}, {"name": "Nick Cassavetes", "character": "Dietrich Hassler", "id": 11151, "credit_id": "52fe4271c3a36847f801f0fb", "cast_id": 7, "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "order": 6}, {"name": "Harve Presnell", "character": "Victor Lazarro", "id": 3907, "credit_id": "52fe4271c3a36847f801f0ff", "cast_id": 8, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 7}, {"name": "Colm Feore", "character": "Dr. Malcolm Walsh", "id": 10132, "credit_id": "52fe4271c3a36847f801f103", "cast_id": 9, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 8}, {"name": "John Carroll Lynch", "character": "Walt", "id": 3911, "credit_id": "52fe4271c3a36847f801f107", "cast_id": 10, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 9}, {"name": "Margaret Cho", "character": "Wanda", "id": 11152, "credit_id": "52fe4271c3a36847f801f10b", "cast_id": 11, "profile_path": "/3DUdtidVGm8FFfknl6HfBMBf366.jpg", "order": 10}, {"name": "James Denton", "character": "Buzz", "id": 11153, "credit_id": "52fe4271c3a36847f801f10f", "cast_id": 12, "profile_path": "/ApoCBEO4bhDizjqLOnF0BUW1HLX.jpg", "order": 11}, {"name": "Matt Ross", "character": "Loomis", "id": 11154, "credit_id": "52fe4271c3a36847f801f113", "cast_id": 13, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 12}, {"name": "Thomas Jane", "character": "Burke Hicks", "id": 11155, "credit_id": "52fe4271c3a36847f801f117", "cast_id": 14, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 13}, {"name": "David McCurley", "character": "Adam Hassler", "id": 11156, "credit_id": "52fe4271c3a36847f801f11b", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Myles Jeffrey", "character": "Michael Archer", "id": 11157, "credit_id": "52fe4271c3a36847f801f11f", "cast_id": 16, "profile_path": "/snKwcKNBaIWKNv0dHzlB8h9q935.jpg", "order": 15}, {"name": "Chris Bauer", "character": "Ivan Dubov", "id": 4445, "credit_id": "52fe4271c3a36847f801f123", "cast_id": 17, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 16}, {"name": "C. C. H. Pounder", "character": "Hollis Miller", "id": 30485, "credit_id": "53d6d8d70e0a26033d000294", "cast_id": 38, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 17}, {"name": "Danny Masterson", "character": "Karl", "id": 18972, "credit_id": "53d6e83c0e0a260337000450", "cast_id": 39, "profile_path": "/qml2xCFDj1cqCvcp9H0dIlrAMT6.jpg", "order": 18}, {"name": "Linda Hoffman", "character": "Livia", "id": 58042, "credit_id": "5485e05ec3a3686767001963", "cast_id": 40, "profile_path": "/h9silu0xpZpjEcPXjJAyQTWXSb5.jpg", "order": 19}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe4271c3a36847f801f129", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 6.5, "runtime": 138}, "755": {"poster_path": "/ce0d4kM5KxT4x1Oq8JkSuNYevri.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25836616, "overview": "Seth Gecko and his younger brother Richard are on the run after a bloody bank robbery in Texas. They escape across the border into Mexico and will be home-free the next morning, when they pay off the local kingpin. They just have to survive 'from dusk till dawn' at the rendezvous point, which turns out to be a Hell of a strip joint.", "video": false, "id": 755, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "From Dusk Till Dawn", "tagline": "One night is all that stands between them and freedom. But it's going to be a hell of a night.", "vote_count": 378, "homepage": "http://archives.obs-us.com/obs/english/films/mx/dusk/top.htm", "belongs_to_collection": {"backdrop_path": "/1x2Y7wq7pMWVUJnlIfPjmFS2CWg.jpg", "poster_path": "/a156nAy5ZTGXlO5wgfvnF26aaDB.jpg", "id": 10924, "name": "From Dusk Till Dawn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0116367", "adult": false, "backdrop_path": "/anr9X6KpybcZrj6vgqYP0epSTue.jpg", "production_companies": [{"name": "A Band Apart", "id": 59}, {"name": "Dimension Films", "id": 7405}], "release_date": "1996-01-18", "popularity": 1.26905678833901, "original_title": "From Dusk Till Dawn", "budget": 19000000, "cast": [{"name": "George Clooney", "character": "Seth Gecko", "id": 1461, "credit_id": "52fe4271c3a36847f801f1ef", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Quentin Tarantino", "character": "Richard Gecko", "id": 138, "credit_id": "52fe4271c3a36847f801f1f3", "cast_id": 2, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Jacob Fuller", "id": 1037, "credit_id": "52fe4271c3a36847f801f1f7", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Kate Fuller", "id": 3196, "credit_id": "52fe4271c3a36847f801f1fb", "cast_id": 4, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Ernest Liu", "character": "Scott Fuller", "id": 11158, "credit_id": "52fe4271c3a36847f801f1ff", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Salma Hayek", "character": "Santanico Pandemonium", "id": 3136, "credit_id": "52fe4271c3a36847f801f203", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 5}, {"name": "Cheech Marin", "character": "Border Guard/Chet Pussy/Carlos", "id": 11159, "credit_id": "52fe4271c3a36847f801f207", "cast_id": 7, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 6}, {"name": "Danny Trejo", "character": "Razor Charlie", "id": 11160, "credit_id": "52fe4271c3a36847f801f20b", "cast_id": 8, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 7}, {"name": "Tom Savini", "character": "Sex Machine", "id": 11161, "credit_id": "52fe4271c3a36847f801f20f", "cast_id": 9, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 8}, {"name": "Fred Williamson", "character": "Frost", "id": 9811, "credit_id": "52fe4271c3a36847f801f213", "cast_id": 10, "profile_path": "/n6CAXv0dbKvCyBfMvppdUmeAwt2.jpg", "order": 9}, {"name": "Michael Parks", "character": "Texas Ranger", "id": 2536, "credit_id": "52fe4271c3a36847f801f217", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 10}, {"name": "Brenda Hillhouse", "character": "Hostage Gloria Hill", "id": 11162, "credit_id": "52fe4271c3a36847f801f21b", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "John Saxon", "character": "FBI Agent", "id": 11163, "credit_id": "52fe4271c3a36847f801f21f", "cast_id": 13, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 12}, {"name": "Marc Lawrence", "character": "Motel Owner", "id": 3140, "credit_id": "52fe4271c3a36847f801f223", "cast_id": 14, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 13}, {"name": "Kelly Preston", "character": "Newscaster Kelly Houge", "id": 11164, "credit_id": "52fe4271c3a36847f801f227", "cast_id": 15, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 14}, {"name": "John Hawkes", "character": "Pete Bottoms / Liquor Store Clerk", "id": 16861, "credit_id": "52fe4271c3a36847f801f291", "cast_id": 33, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 15}, {"name": "Tito Larriva", "character": "Titty Twister Guitarist & Vocalist", "id": 53763, "credit_id": "52fe4272c3a36847f801f295", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Peter Atanasoff", "character": "Titty Twister Saxophonist", "id": 1089505, "credit_id": "52fe4272c3a36847f801f299", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Johnny Vatos Hernandez", "character": "Titty Twister Drummer", "id": 1089510, "credit_id": "52fe4272c3a36847f801f29d", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Aimee Graham", "character": "Blonde Hostage", "id": 35545, "credit_id": "52fe4272c3a36847f801f2a1", "cast_id": 37, "profile_path": "/nWcKO2LokRckgnRWywWlRfyIUyX.jpg", "order": 19}, {"name": "Heidi McNeal", "character": "Red-headed Hostage", "id": 982183, "credit_id": "52fe4272c3a36847f801f2a5", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Ernest M. Garcia", "character": "Big Emilio", "id": 931730, "credit_id": "52fe4272c3a36847f801f2a9", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Gregory Nicotero", "character": "Sex Machine's Buddy", "id": 59287, "credit_id": "52fe4272c3a36847f801f2ad", "cast_id": 40, "profile_path": "/jedpZq1cMzmixzznxzgRZAIzodY.jpg", "order": 22}, {"name": "Cristos", "character": "Danny", "id": 139997, "credit_id": "52fe4272c3a36847f801f2b1", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Mike Moroff", "character": "Manny", "id": 100260, "credit_id": "52fe4272c3a36847f801f2b5", "cast_id": 42, "profile_path": null, "order": 24}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4271c3a36847f801f22d", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.7, "runtime": 108}, "756": {"poster_path": "/9YXyiRszikyoakc4oNaHbjjybmT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76000000, "overview": "Fantasia is the adventurous 1940 experiment from Disney. The film sets Disney animated characters to classical music as Mickey Mouse uses his magic wand to set broomsticks dancing in one of the more famous elaborate scenes. The film was groundbreaking in its usage of animation and music and is still considered a masterpiece decades later.", "video": false, "id": 756, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Fantasia", "tagline": "Hear the pictures! See the music!", "vote_count": 214, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7YanwpylLB3yzhwzf11W1tYpcQF.jpg", "poster_path": "/ldzKpOvGVl8NWQPdAYJEZpAvPIo.jpg", "id": 55427, "name": "Fantasia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032455", "adult": false, "backdrop_path": "/44wq5UgEo4bA7ay6ZZzZNbL6zkl.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1940-11-13", "popularity": 0.834749745153254, "original_title": "Fantasia", "budget": 2280000, "cast": [{"name": "Leopold Stokowski", "character": "Himself - Conductor of The Philadelphia Orchestra", "id": 233471, "credit_id": "52fe4272c3a36847f801f32d", "cast_id": 13, "profile_path": "/8flosda3lVaAyJF9rvhZDA0xTbf.jpg", "order": 0}, {"name": "Deems Taylor", "character": "Narrator - Narrative Introductions", "id": 565402, "credit_id": "52fe4272c3a36847f801f331", "cast_id": 14, "profile_path": "/hsvtVQl5VFZKBJk1pcrFWZkncQD.jpg", "order": 1}, {"name": "Walt Disney", "character": "Mickey Mouse (segment 'The Sorcerer's Apprentice') (voice)", "id": 2106, "credit_id": "52fe4272c3a36847f801f33b", "cast_id": 16, "profile_path": "/ku2lp8t3sazCDSWZdDrka3K4KLm.jpg", "order": 2}, {"name": "James MacDonald", "character": "Percussionist", "id": 137461, "credit_id": "52fe4272c3a36847f801f33f", "cast_id": 17, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 3}, {"name": "Julietta Novis", "character": "Soloist (segment 'Ave Maria') (singing voice)", "id": 1098082, "credit_id": "52fe4272c3a36847f801f343", "cast_id": 18, "profile_path": "/3dOJdhXEY4Ui2T9UB4opxvJNMFF.jpg", "order": 4}, {"name": "Paul J. Smith", "character": "Violinist", "id": 2107, "credit_id": "52fe4272c3a36847f801f347", "cast_id": 19, "profile_path": null, "order": 5}], "directors": [{"name": "Samuel Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f2f3", "profile_path": null, "id": 5691}, {"name": "James Algar", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f2f9", "profile_path": "/3dSa9LsutXEjnsEuZfuIWznQkkC.jpg", "id": 5690}, {"name": "William Roberts", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f2ff", "profile_path": "/mkfgT5RdFbFOwJpigXWALq9hOvz.jpg", "id": 11427}, {"name": "Paul Satterfield", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f305", "profile_path": null, "id": 11428}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f30b", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}, {"name": "Jim Handley", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f311", "profile_path": null, "id": 11430}, {"name": "Ford Beebe", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f317", "profile_path": "/hYyHEnluu3sg9mCm5ZSl3oR8Jor.jpg", "id": 11431}, {"name": "T. Hee", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f31d", "profile_path": null, "id": 11432}, {"name": "Norm Ferguson", "department": "Directing", "job": "Director", "credit_id": "54e4b44a925141469f00996e", "profile_path": "/o6ZqI5lXaQW3q05ri2WyMUZKYLg.jpg", "id": 226599}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f329", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Ben Sharpsteen", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f337", "profile_path": "/1dfzGLuG0n4IeR6ONjAFuhh8Kli.jpg", "id": 11426}], "vote_average": 6.7, "runtime": 124}, "8952": {"poster_path": "/8Ng4tk25sE5erT5zGTtZXvqmRCd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10652035, "overview": "Bad Santa co-screenwriters Glenn Ficara and John Requa re-team for this fact-based black comedy starring Jim Carrey as a Virginia police officer-turned-con man who makes the leap to white-collar criminal after being sent to prison and falling in love with his sensitive cellmate. Steve Russell (Carrey) is a small-town cop. Bored with his bland lifestyle, Russell turns to fraud as a means of shaking things up. Before long, Russell's criminal antics have landed him behind bars, where he encounters the charismatic Phillip Morris (Ewan McGregor). Smitten, Russell devotes his entire life to being with Morris regardless of the consequences.", "video": false, "id": 8952, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "I Love You Phillip Morris", "tagline": "The Conman who wouldn't go straight.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1045772", "adult": false, "backdrop_path": "/ybb0gmKxnstuhhBzDK27k0dKaF4.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}], "release_date": "2009-01-18", "popularity": 0.457885949272622, "original_title": "I Love You Phillip Morris", "budget": 13000000, "cast": [{"name": "Jim Carrey", "character": "Steven Russell", "id": 206, "credit_id": "52fe44cac3a36847f80aa339", "cast_id": 4, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Phillip Morris", "id": 3061, "credit_id": "52fe44cac3a36847f80aa335", "cast_id": 3, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Debbie", "id": 41087, "credit_id": "52fe44cac3a36847f80aa33d", "cast_id": 5, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Rodrigo Santoro", "character": "Jimmy", "id": 17289, "credit_id": "52fe44cac3a36847f80aa35d", "cast_id": 15, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 3}, {"name": "Brennan Brown", "character": "Larry Bukheim", "id": 1218149, "credit_id": "52fe44cac3a36847f80aa36d", "cast_id": 18, "profile_path": "/si4VTKGM6dFyZ6liBSDbjCkn3bf.jpg", "order": 4}, {"name": "Nicholas Alexander", "character": "Steven's Brother", "id": 143260, "credit_id": "52fe44cac3a36847f80aa341", "cast_id": 7, "profile_path": "/sBO8MBGX3O3hCK4oAWAu3MyduUz.jpg", "order": 5}, {"name": "Tony Bentley", "character": "Racist Client", "id": 120253, "credit_id": "52fe44cac3a36847f80aa349", "cast_id": 9, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 6}, {"name": "Michael Beasley", "character": "Prison Guard", "id": 143261, "credit_id": "52fe44cac3a36847f80aa345", "cast_id": 8, "profile_path": "/mk8jUlzVPUsKSQjHi6ATtaCtb47.jpg", "order": 7}, {"name": "Sean Boyd", "character": "Policeman", "id": 86276, "credit_id": "52fe44cac3a36847f80aa351", "cast_id": 11, "profile_path": "/jeQ4xtuMpX4cPzPSE6iNwa7qLOG.jpg", "order": 8}, {"name": "Trey Burvant", "character": "Blake", "id": 143264, "credit_id": "52fe44cac3a36847f80aa359", "cast_id": 14, "profile_path": "/yd72jEzFu11JrBu4tqgkn56avg.jpg", "order": 10}, {"name": "Marcus Lyle Brown", "character": "Young Doctor", "id": 16460, "credit_id": "5510b9fe92514166db003f9a", "cast_id": 20, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 11}], "directors": [{"name": "Glenn Ficarra", "department": "Directing", "job": "Director", "credit_id": "52fe44cac3a36847f80aa32b", "profile_path": "/nYiriOot9jZihyuhH7utfTh7vtH.jpg", "id": 56411}, {"name": "John Requa", "department": "Directing", "job": "Director", "credit_id": "52fe44cac3a36847f80aa331", "profile_path": null, "id": 56412}], "vote_average": 6.2, "runtime": 98}, "79316": {"poster_path": "/MgMPnHzraWqgBQwaUcdJh71qWl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36433975, "overview": "An unexpected pregnancy takes a terrifying turn for newlyweds Zach and Samantha McCall.", "video": false, "id": 79316, "genres": [{"id": 27, "name": "Horror"}], "title": "Devil's Due", "tagline": "The Devil Always Gets His Due", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2752758", "adult": false, "backdrop_path": "/fwTRTBW4FmzrC22PnkZ0dZPBRrT.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2014-01-17", "popularity": 0.761428350349446, "original_title": "Devil's Due", "budget": 7000000, "cast": [{"name": "Allison Miller", "character": "Samantha McCall", "id": 17270, "credit_id": "52fe49ccc3a368484e1404f3", "cast_id": 12, "profile_path": "/x1NcyAIFO6lN41mcxQglvMOeckz.jpg", "order": 0}, {"name": "Zach Gilford", "character": "Zach McCall", "id": 70303, "credit_id": "52fe49ccc3a368484e1404ef", "cast_id": 11, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 1}, {"name": "Sam Anderson", "character": "Father Thomas", "id": 36221, "credit_id": "52fe49ccc3a368484e1404f7", "cast_id": 13, "profile_path": "/2zcmQEBeArztSQJ317nZCHwCVtF.jpg", "order": 2}, {"name": "Robert Belushi", "character": "Mason", "id": 96018, "credit_id": "52fe49ccc3a368484e1404c9", "cast_id": 2, "profile_path": "/7RMYK7NXm2D32CGP3HD4UJ5kl4y.jpg", "order": 3}, {"name": "Catherine Kresge", "character": "Tina", "id": 92877, "credit_id": "52fe49ccc3a368484e1404cd", "cast_id": 3, "profile_path": "/A19KrrPWpXbozWNRzzT2rP8QOwg.jpg", "order": 4}, {"name": "Aimee Carrero", "character": "Emily", "id": 1224238, "credit_id": "52fe49ccc3a368484e1404d1", "cast_id": 4, "profile_path": "/AsaBKtZPEakG4Z7oGrdtYdgtpzN.jpg", "order": 5}, {"name": "Griff Furst", "character": "Keith", "id": 76021, "credit_id": "5358e11b0e0a26067f008c27", "cast_id": 20, "profile_path": "/rRAtuKLOq27DFZ0MWu6FCVbbhS8.jpg", "order": 6}, {"name": "Tyler Forrest", "character": "", "id": 1265767, "credit_id": "52fe49ccc3a368484e1404d9", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Roger Payano", "character": "Cab Driver", "id": 1285380, "credit_id": "52fe49ccc3a368484e1404fb", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Vanessa Ray", "character": "Suzie", "id": 485005, "credit_id": "52fe49ccc3a368484e1404ff", "cast_id": 15, "profile_path": "/qru7y2sKuLdI1tBONGLektoC0Lx.jpg", "order": 9}, {"name": "Bill Martin Williams", "character": "Ken", "id": 1271773, "credit_id": "52fe49ccc3a368484e140503", "cast_id": 16, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 10}, {"name": "Geraldine Singer", "character": "Sally", "id": 1027298, "credit_id": "52fe49ccc3a368484e140507", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Julia Denton", "character": "Natalie", "id": 1285382, "credit_id": "52fe49ccc3a368484e14050b", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Colin Walker", "character": "Stanley", "id": 205287, "credit_id": "52fe49ccc3a368484e14050f", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Matt Bettinelli-Olpin", "department": "Directing", "job": "Director", "credit_id": "52fe49ccc3a368484e1404df", "profile_path": null, "id": 66681}, {"name": "Tyler Gillett", "department": "Directing", "job": "Director", "credit_id": "52fe49ccc3a368484e1404e5", "profile_path": null, "id": 1039527}], "vote_average": 5.0, "runtime": 89}, "762": {"poster_path": "/jRx1nDUA4sb2NEKQaukXKBz6pCf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 5028948, "overview": "Monty Python and the Holy Grail loosely follows the legend of King Arthur. Arthur along with his squire, Patsy, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as \"it is a silly place\".", "video": false, "id": 762, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Monty Python and the Holy Grail", "tagline": "And now! At Last! Another film completely different from some of the other films which aren't quite the same as this one is.", "vote_count": 547, "homepage": "http://www.sonypictures.com/cthe/montypython/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071853", "adult": false, "backdrop_path": "/6fqmcCVci3cSBCgJw8NGXE4ST8G.jpg", "production_companies": [{"name": "Python (Monty) Pictures Limited", "id": 416}, {"name": "Michael White Productions", "id": 463}, {"name": "National Film Trustee Company", "id": 464}, {"name": "Twickenham Film Studios", "id": 465}], "release_date": "1975-03-13", "popularity": 1.02552212726685, "original_title": "Monty Python and the Holy Grail", "budget": 400000, "cast": [{"name": "Graham Chapman", "character": "King Arthur / Voice of God / Middle Head / Hiccoughing Guard", "id": 10722, "credit_id": "52fe4272c3a36847f801f6a9", "cast_id": 11, "profile_path": "/gwuoxo5EB3SRMO0BPLduWdcSALd.jpg", "order": 0}, {"name": "John Cleese", "character": "Second Swallow-Savvy Guard / The Black Knight / Peasant 3 / Sir Lancelot the Brave / Taunting French Guard / Tim the Enchanter", "id": 8930, "credit_id": "52fe4272c3a36847f801f6ad", "cast_id": 18, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 1}, {"name": "Eric Idle", "character": "Dead Collector / Peasant 1 / Sir Robin the Not-Quite-So-Brave-as-Sir Launcelot / First Swamp Castle Guard / Concorde / Roger the Shrubber / Brother Maynard", "id": 10713, "credit_id": "52fe4272c3a36847f801f6b1", "cast_id": 23, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 2}, {"name": "Michael Palin", "character": "First Swallow-Savvy Guard / Dennis / Peasant 2 / Right Head / Sir Galahad the Pure / Narrator / King of Swamp Castle / Brother Maynard's Brother / Leader of The Knights Who Say NI!", "id": 383, "credit_id": "52fe4272c3a36847f801f6bd", "cast_id": 42, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 3}, {"name": "Terry Gilliam", "character": "Patsy / Green Knight / Old Man from Scene 24 (Bridgekeeper) / Sir Bors / Animator / Gorrilla Hand", "id": 280, "credit_id": "52fe4272c3a36847f801f6b5", "cast_id": 29, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 4}, {"name": "Terry Jones", "character": "Dennis's Mother / Sir Bedevere / Left Head / Prince Herbert / Cartoon Scribe (voice)", "id": 10707, "credit_id": "52fe4272c3a36847f801f6b9", "cast_id": 35, "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "order": 5}, {"name": "Connie Booth", "character": "The Witch", "id": 149979, "credit_id": "52fe4272c3a36847f801f6c1", "cast_id": 43, "profile_path": "/wm4mf8oAuJjhuWB4pK9kLYjwp7L.jpg", "order": 6}, {"name": "Carol Cleveland", "character": "Zoot / Dingo", "id": 10733, "credit_id": "52fe4272c3a36847f801f6c5", "cast_id": 44, "profile_path": "/3QVIw2Lc18O4m3oktTeab6aVLlD.jpg", "order": 7}, {"name": "Neil Innes", "character": "First Monk / Singing Minstrel / Page Crushed by the Rabbit / Peasant #4", "id": 70624, "credit_id": "52fe4272c3a36847f801f6c9", "cast_id": 45, "profile_path": null, "order": 8}, {"name": "Bee Duffell", "character": "Old Crone", "id": 18760, "credit_id": "52fe4272c3a36847f801f6cd", "cast_id": 46, "profile_path": "/5Oq2NUwE0N9LtF9Qf8dokUnHGgP.jpg", "order": 9}, {"name": "John Young", "character": "Dead Body / Historian Frank", "id": 179028, "credit_id": "52fe4272c3a36847f801f6d1", "cast_id": 47, "profile_path": null, "order": 10}, {"name": "Rita Davies", "character": "Historian's Wife", "id": 58579, "credit_id": "52fe4272c3a36847f801f6d5", "cast_id": 48, "profile_path": null, "order": 11}, {"name": "Avril Stewart", "character": "Dr. Piglet", "id": 1052099, "credit_id": "52fe4272c3a36847f801f6d9", "cast_id": 49, "profile_path": null, "order": 12}, {"name": "Sally Kinghorn", "character": "Dr. Winston", "id": 1052100, "credit_id": "52fe4272c3a36847f801f6dd", "cast_id": 50, "profile_path": null, "order": 13}, {"name": "Mark Zycon", "character": "Prisoner", "id": 1052101, "credit_id": "52fe4272c3a36847f801f6e1", "cast_id": 51, "profile_path": null, "order": 14}, {"name": "Julian Doyle", "character": "Police Sergeant", "id": 10718, "credit_id": "53c82e74c3a3686251004188", "cast_id": 58, "profile_path": null, "order": 15}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f66f", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}, {"name": "Terry Jones", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f675", "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "id": 10707}], "vote_average": 7.5, "runtime": 91}, "763": {"poster_path": "/auD6GTyZXrvkv8ZQIGmpJsHFJxn.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}], "revenue": 242623, "overview": "When a Sumatran rat-monkey bites Lionel Cosgrove's mother, she's transformed into a zombie and begins killing (and transforming) the entire town while Lionel races to keep things under control.", "video": false, "id": 763, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Braindead", "tagline": "Some things won't stay down... even after they die.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103873", "adult": false, "backdrop_path": "/3qgqAUA1JQT3o3CUxUhKQ3qZXBY.jpg", "production_companies": [{"name": "WingNut Films", "id": 11}, {"name": "New Zealand Film Commission", "id": 294}, {"name": "Avalon/NFU Studios", "id": 466}], "release_date": "1992-08-13", "popularity": 0.808821139211619, "original_title": "Braindead", "budget": 3000000, "cast": [{"name": "Tim Balme", "character": "Lionel Cosgrove", "id": 11332, "credit_id": "52fe4273c3a36847f801f77b", "cast_id": 14, "profile_path": null, "order": 0}, {"name": "Diana Pe\u00f1alver", "character": "Paquita Maria Sanchez", "id": 11333, "credit_id": "52fe4273c3a36847f801f77f", "cast_id": 15, "profile_path": null, "order": 1}, {"name": "Elizabeth Moody", "character": "Mum", "id": 11334, "credit_id": "52fe4273c3a36847f801f783", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "Ian Watkin", "character": "Uncle Les", "id": 11335, "credit_id": "52fe4273c3a36847f801f787", "cast_id": 17, "profile_path": null, "order": 3}, {"name": "Brenda Kendall", "character": "Nurse McTavish", "id": 11336, "credit_id": "52fe4273c3a36847f801f78b", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Stephen Papps", "character": "Stephen Papps", "id": 11338, "credit_id": "52fe4273c3a36847f801f78f", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Murray Keane", "character": "Scroat", "id": 11340, "credit_id": "52fe4273c3a36847f801f793", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Glenis Levestam", "character": "Nora Matheson", "id": 11341, "credit_id": "52fe4273c3a36847f801f797", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Lewis Rowe", "character": "Mr. Matheson", "id": 11342, "credit_id": "52fe4273c3a36847f801f79b", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Stuart Devenie", "character": "Void", "id": 81876, "credit_id": "52fe4273c3a36847f801f7a5", "cast_id": 25, "profile_path": "/24ULaHp8antJCog28T59tJByJZ1.jpg", "order": 10}, {"name": "Jed Brophy", "character": "Void", "id": 173451, "credit_id": "534108b90e0a2679a400194b", "cast_id": 27, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 11}, {"name": "Elizabeth Mulfaxe", "character": "Rita", "id": 1403734, "credit_id": "549bde6f9251413123003451", "cast_id": 29, "profile_path": null, "order": 12}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f73b", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.6, "runtime": 104}, "82684": {"poster_path": "/lYxXNWpUZ92Lp7QGCawKqRLPVRp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.", "video": false, "id": 82684, "genres": [{"id": 18, "name": "Drama"}], "title": "Chasing Mavericks", "tagline": "Legends Start Somewhere", "vote_count": 89, "homepage": "http://www.livelikejay.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1629757", "adult": false, "backdrop_path": "/1FHjKwmR9kqlQEgHQHOpEGrzWXc.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Walden Media", "id": 10221}], "release_date": "2012-10-26", "popularity": 0.284598814303582, "original_title": "Chasing Mavericks", "budget": 0, "cast": [{"name": "Leven Rambin", "character": "Kim", "id": 207401, "credit_id": "52fe48699251416c9108b96f", "cast_id": 14, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Frosty Hesson", "id": 17276, "credit_id": "52fe48699251416c9108b963", "cast_id": 11, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Elisabeth Shue", "character": "Christy Moriarity", "id": 1951, "credit_id": "52fe48699251416c9108b967", "cast_id": 12, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 2}, {"name": "Abigail Spencer", "character": "Brenda Hesson", "id": 123725, "credit_id": "52fe48699251416c9108b96b", "cast_id": 13, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 3}, {"name": "Scott Eastwood", "character": "Gordy", "id": 928572, "credit_id": "52fe48699251416c9108b977", "cast_id": 16, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 4}, {"name": "Taylor Handley", "character": "Sonny", "id": 66741, "credit_id": "52fe48699251416c9108b973", "cast_id": 15, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 5}, {"name": "Channon Roe", "character": "Bob Pearson", "id": 76314, "credit_id": "52fe48699251416c9108b97b", "cast_id": 17, "profile_path": "/uUrtHAIC010Oelsx8MO6Z1mMbaV.jpg", "order": 6}, {"name": "Jenica Bergere", "character": "Zeuf", "id": 113818, "credit_id": "52fe48699251416c9108b983", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Jonny Weston", "character": "Jay Moriarity", "id": 928575, "credit_id": "52fe48699251416c9108b987", "cast_id": 20, "profile_path": "/qv8lrHTf22WO92kdWcIu8ZMee0J.jpg", "order": 8}, {"name": "Cooper Timberline", "character": "Little Jay Moriarty", "id": 928574, "credit_id": "52fe48699251416c9108b97f", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Harley Graham", "character": "Little Kim", "id": 1212271, "credit_id": "549ba7ba9251414bb200158a", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Steven Wiig", "character": "Mavericks Spectator", "id": 928577, "credit_id": "52fe48699251416c9108b98f", "cast_id": 22, "profile_path": "/lQNprdgBKw2iYWDFeZAmCrJO7bY.jpg", "order": 11}, {"name": "Andy Arness", "character": "Blue-Collar Worker", "id": 928579, "credit_id": "52fe48699251416c9108b993", "cast_id": 23, "profile_path": null, "order": 12}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe48699251416c9108b929", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}, {"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe48699251416c9108b999", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.9, "runtime": 117}, "765": {"poster_path": "/dxbIRmIo0rN5R6WGvxnJuUJPh3t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5923044, "overview": "Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from \u201cThe Book of the Dead.\u201d As they play the recording an evil power is unleashed taking over Linda\u2019s body.", "video": false, "id": 765, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Evil Dead II", "tagline": "Kiss Your Nerves Good-Bye!", "vote_count": 185, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092991", "adult": false, "backdrop_path": "/9meXjIwJZk9aMMoMZk3AMzt8o44.jpg", "production_companies": [{"name": "Studio Canal", "id": 5870}], "release_date": "1987-03-13", "popularity": 1.0849989562547, "original_title": "Evil Dead II", "budget": 3600000, "cast": [{"name": "Bruce Campbell", "character": "Ashley 'Ash' J. Williams", "id": 11357, "credit_id": "52fe4273c3a36847f801f8d1", "cast_id": 15, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 0}, {"name": "Sarah Berry", "character": "Annie Knowby", "id": 11749, "credit_id": "52fe4273c3a36847f801f8d5", "cast_id": 16, "profile_path": "/6J6waYCH4TXHdMs4AFU4zB9Mxtg.jpg", "order": 1}, {"name": "Dan Hicks", "character": "Jake", "id": 11750, "credit_id": "52fe4273c3a36847f801f8d9", "cast_id": 17, "profile_path": "/p6UEdkL9oJGLRVkMgQtrKvJ3cCl.jpg", "order": 2}, {"name": "Kassie DePaiva", "character": "Bobbie Joe", "id": 11751, "credit_id": "52fe4273c3a36847f801f8dd", "cast_id": 18, "profile_path": "/m60qVsCFDeXGSXnGvWVPBEYbeU1.jpg", "order": 3}, {"name": "Denise Bixler", "character": "Linda", "id": 11753, "credit_id": "52fe4273c3a36847f801f8e1", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Richard Domeier", "character": "Ed Getley", "id": 11754, "credit_id": "52fe4273c3a36847f801f8e5", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "John Peakes", "character": "Professor Raymond Knowby", "id": 11755, "credit_id": "52fe4273c3a36847f801f8e9", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Lou Hancock", "character": "Henrietta Knowby", "id": 11756, "credit_id": "52fe4273c3a36847f801f8ed", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Ted Raimi", "character": "Possessed Henrietta", "id": 11769, "credit_id": "52fe4273c3a36847f801f8f1", "cast_id": 23, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 8}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f885", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 7.4, "runtime": 84}, "766": {"poster_path": "/2eZKDIwLNnySbwqQtAaUz0kYDIL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man is accidentally transported to 1300 A.D., where he must battle an army of the dead and retrieve the Necronomicon so he can return home.", "video": false, "id": 766, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Army of Darkness", "tagline": "Trapped in time. Surrounded by evil. Low on gas.", "vote_count": 258, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106308", "adult": false, "backdrop_path": "/j7ctTLHSOrvY6fl63CjBNbmkTWq.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dino De Laurentiis Company", "id": 10308}, {"name": "Renaissance Pictures", "id": 467}], "release_date": "1992-10-09", "popularity": 1.19920257210749, "original_title": "Army of Darkness", "budget": 11000000, "cast": [{"name": "Bruce Campbell", "character": "Ash", "id": 11357, "credit_id": "52fe4273c3a36847f801f9c3", "cast_id": 18, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 0}, {"name": "Embeth Davidtz", "character": "Sheila", "id": 6368, "credit_id": "52fe4273c3a36847f801f9c7", "cast_id": 19, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 1}, {"name": "Marcus Gilbert", "character": "Lord Arthur", "id": 11763, "credit_id": "52fe4273c3a36847f801f9cb", "cast_id": 20, "profile_path": null, "order": 2}, {"name": "Ian Abercrombie", "character": "Wiseman", "id": 11764, "credit_id": "52fe4273c3a36847f801f9cf", "cast_id": 21, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 3}, {"name": "Richard Grove", "character": "Duke Henry the Red", "id": 11765, "credit_id": "52fe4273c3a36847f801f9d3", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Timothy Patrick Quill", "character": "Blacksmith", "id": 11766, "credit_id": "52fe4273c3a36847f801f9d7", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Michael Earl Reid", "character": "Gold Tooth", "id": 11767, "credit_id": "52fe4273c3a36847f801f9db", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Bridget Fonda", "character": "Linda", "id": 2233, "credit_id": "52fe4273c3a36847f801f9df", "cast_id": 25, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 7}, {"name": "Patricia Tallman", "character": "Possessed Witch", "id": 11768, "credit_id": "52fe4273c3a36847f801f9e3", "cast_id": 26, "profile_path": "/jl8F0Nv4dQJqg1014baS5eiHWaR.jpg", "order": 8}, {"name": "Ted Raimi", "character": "Cowardly Warrior/Second Supportive Villager/S-Mart Clerk", "id": 11769, "credit_id": "52fe4273c3a36847f801f9e7", "cast_id": 27, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 9}, {"name": "Deke Anderson", "character": "Mini-Ash #2", "id": 1195675, "credit_id": "54e87a029251412eae001bd9", "cast_id": 28, "profile_path": "/cRQAksi2LKMj6EvEySjDDtWSj19.jpg", "order": 10}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f95f", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 7.1, "runtime": 81}, "767": {"poster_path": "/bFXys2nhALwDvpkF3dP3Vvdfn8b.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 933959197, "overview": "The sixth year at Hogwarts School of Witchcraft and Wizardry kicks off with a bang for young Harry Potter when he inadvertently discovers a mysterious book that sheds light on the sordid life of the evil Lord Voldemort. Preparing for inevitable battle, Harry and Dumbledore turn to professor Horace Slughorn for help in pinpointing the weakness in Voldemort's forces.", "video": false, "id": 767, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Half-Blood Prince", "tagline": "Dark Secrets Revealed", "vote_count": 1825, "homepage": "http://harrypotter.warnerbros.com/harrypotterandthehalf-bloodprince/dvd/index.html", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0417741", "adult": false, "backdrop_path": "/mjBjhotXUWc0EFZ5sswu7cu12Sp.jpg", "production_companies": [{"name": "Heyday Films", "id": 7364}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2009-07-07", "popularity": 2.08075655175762, "original_title": "Harry Potter and the Half-Blood Prince", "budget": 250000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4273c3a36847f801fa73", "cast_id": 3, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4273c3a36847f801fa6f", "cast_id": 2, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe4273c3a36847f801fa6b", "cast_id": 1, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4273c3a36847f801fa77", "cast_id": 4, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 3}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4273c3a36847f801fa7b", "cast_id": 5, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 4}, {"name": "Jim Broadbent", "character": "Professor Horace Slughorn", "id": 388, "credit_id": "52fe4273c3a36847f801fafd", "cast_id": 27, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 5}, {"name": "Elarica Gallacher", "character": "Waitress", "id": 89387, "credit_id": "52fe4273c3a36847f801fb01", "cast_id": 28, "profile_path": "/zGDEpuTSOV6TF6crY07cVWlUZ9s.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4273c3a36847f801fb05", "cast_id": 29, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Michael Gambon", "character": "Professor Albus Dumbledore", "id": 5658, "credit_id": "52fe4273c3a36847f801fb09", "cast_id": 30, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 8}, {"name": "Maggie Smith", "character": "Professor Minerva McGonagall", "id": 10978, "credit_id": "52fe4273c3a36847f801fb0d", "cast_id": 31, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 9}, {"name": "Alan Rickman", "character": "Professor Severus Snape", "id": 4566, "credit_id": "52fe4273c3a36847f801fb11", "cast_id": 32, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 10}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4273c3a36847f801fb15", "cast_id": 33, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 11}, {"name": "Evanna Lynch", "character": "Lune Lovegood", "id": 140367, "credit_id": "52fe4273c3a36847f801fb19", "cast_id": 35, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 12}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe4273c3a36847f801fb1d", "cast_id": 36, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 13}, {"name": "Dave Legeno", "character": "Fenrir Greyback", "id": 60348, "credit_id": "52fe4273c3a36847f801fb21", "cast_id": 37, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 14}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4273c3a36847f801fb25", "cast_id": 38, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 15}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4273c3a36847f801fb29", "cast_id": 39, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 16}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe4273c3a36847f801fb2d", "cast_id": 40, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 17}, {"name": "Helen McCrory", "character": "Narcissa Malfoy", "id": 15737, "credit_id": "52fe4273c3a36847f801fb31", "cast_id": 41, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 18}, {"name": "Timothy Spall", "character": "Wormtail", "id": 9191, "credit_id": "52fe4273c3a36847f801fb35", "cast_id": 42, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 19}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe4273c3a36847f801fb39", "cast_id": 43, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 20}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4273c3a36847f801fb3d", "cast_id": 44, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 21}, {"name": "Freddie Stroma", "character": "Cormac McLaggen", "id": 234934, "credit_id": "52fe4273c3a36847f801fb41", "cast_id": 45, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 22}, {"name": "Warwick Davis", "character": "Professor Filius Flitwick", "id": 11184, "credit_id": "52fe4273c3a36847f801fb45", "cast_id": 46, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 23}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4273c3a36847f801fb49", "cast_id": 47, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 24}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe4273c3a36847f801fb4d", "cast_id": 48, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 25}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe4273c3a36847f801fb51", "cast_id": 49, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 26}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe4273c3a36847f801fb55", "cast_id": 50, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 27}, {"name": "Frank Dillane", "character": "Tom Riddle (16 Years)", "id": 964834, "credit_id": "52fe4273c3a36847f801fb59", "cast_id": 51, "profile_path": "/ySGcXDezq7acpZyDybgWOgWxi1U.jpg", "order": 28}, {"name": "Gemma Jones", "character": "Madam Pomfrey", "id": 9138, "credit_id": "52fe4273c3a36847f801fb5d", "cast_id": 52, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 29}, {"name": "Hero Fiennes-Tiffin", "character": "Tom Riddle (11 Years)", "id": 1114487, "credit_id": "52fe4273c3a36847f801fb61", "cast_id": 53, "profile_path": "/1GDxQvHq1Ba8og4Epuxo6v3K9vb.jpg", "order": 30}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe4273c3a36847f801fb65", "cast_id": 54, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 31}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe4273c3a36847f801fb69", "cast_id": 55, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 32}, {"name": "Georgina Leonidas", "character": "Katie Bell", "id": 174398, "credit_id": "52fe4273c3a36847f801fb6d", "cast_id": 56, "profile_path": "/hv3YEO8Q0khE41XDesUsQBhzJ1T.jpg", "order": 33}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe4273c3a36847f801fb71", "cast_id": 57, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 34}, {"name": "Anna Shaffer", "character": "Romilda Vane", "id": 234929, "credit_id": "52fe4273c3a36847f801fb75", "cast_id": 58, "profile_path": "/uldkREhKYbfdAUpAXkPUWI746CE.jpg", "order": 35}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4273c3a36847f801fb79", "cast_id": 59, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 36}, {"name": "Jamie Waylett", "character": "Vincent Crabbe", "id": 956224, "credit_id": "52fe4273c3a36847f801fb7d", "cast_id": 60, "profile_path": "/nvw2IgN2BcpT2MczUuwSaTYuqZK.jpg", "order": 37}, {"name": "Scarlett Byrne", "character": "Pansy Parkinson", "id": 234928, "credit_id": "52fe4273c3a36847f801fb81", "cast_id": 61, "profile_path": "/7W8KCN8KlCzzbSEW35ul237HlvU.jpg", "order": 38}, {"name": "Jessie Cave", "character": "Lavender Brown", "id": 234924, "credit_id": "52fe4273c3a36847f801fb8d", "cast_id": 64, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 39}, {"name": "Louis Cordice", "character": "Blaise Zabini", "id": 234927, "credit_id": "52fe4273c3a36847f801fb85", "cast_id": 62, "profile_path": "/9GsBugZh5t5EHlcM3Wjay7EJH4B.jpg", "order": 40}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe4273c3a36847f801fb89", "cast_id": 63, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 41}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801fa81", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 7.0, "runtime": 153}, "768": {"poster_path": "/f3J77Cy3pRSeeN52Pk8oIvgi6IN.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 74558115, "overview": "Frederick Abberline is an opium-huffing inspector from Scotland Yard who falls for one of Jack the Ripper's prostitute targets in this Hughes brothers adaption of a graphic novel that posits the Ripper's true identity.", "video": false, "id": 768, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "From Hell", "tagline": "Only the legend will survive.", "vote_count": 179, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120681", "adult": false, "backdrop_path": "/oYK1KfAABFQEnbgpZHpHu2ZuUMj.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Underworld Entertainment", "id": 476}], "release_date": "2001-10-19", "popularity": 0.530067387360038, "original_title": "From Hell", "budget": 35000000, "cast": [{"name": "Johnny Depp", "character": "Inspector Frederick Abberline", "id": 85, "credit_id": "52fe4273c3a36847f801fc41", "cast_id": 19, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Heather Graham", "character": "Mary Kelly", "id": 69122, "credit_id": "52fe4273c3a36847f801fc45", "cast_id": 20, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 1}, {"name": "Ian Holm", "character": "Sir William Gull", "id": 65, "credit_id": "52fe4274c3a36847f801fc49", "cast_id": 21, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 2}, {"name": "Robbie Coltrane", "character": "Sergeant Peter Godley", "id": 1923, "credit_id": "52fe4274c3a36847f801fc4d", "cast_id": 22, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 3}, {"name": "Ian Richardson", "character": "Sir Charles Warren", "id": 385, "credit_id": "52fe4274c3a36847f801fc51", "cast_id": 23, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 4}, {"name": "Jason Flemyng", "character": "Netley, the Coachman", "id": 973, "credit_id": "52fe4274c3a36847f801fc55", "cast_id": 24, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Katrin Cartlidge", "character": "Dark Annie Chapman", "id": 1641, "credit_id": "52fe4274c3a36847f801fc59", "cast_id": 25, "profile_path": "/gs1DKojYoO49yNDgtwWkITt3iGN.jpg", "order": 6}, {"name": "Terence Harvey", "character": "Benjamin 'Ben' Kidney", "id": 25656, "credit_id": "52fe4274c3a36847f801fc5d", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Susan Lynch", "character": "Liz Stride", "id": 42571, "credit_id": "52fe4274c3a36847f801fc61", "cast_id": 27, "profile_path": "/bXwZyTYQu4YL7qcQmsw3GHgmOuh.jpg", "order": 8}, {"name": "Paul Rhys", "character": "Dr. Ferral", "id": 80365, "credit_id": "52fe4274c3a36847f801fc65", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Lesley Sharp", "character": "Kate Eddowes", "id": 80366, "credit_id": "52fe4274c3a36847f801fc69", "cast_id": 29, "profile_path": "/xaZY2lBXwS2Oa4a87qg1yxN6EgE.jpg", "order": 10}, {"name": "Estelle Skornik", "character": "Ada", "id": 80367, "credit_id": "52fe4274c3a36847f801fc6d", "cast_id": 30, "profile_path": "/kEylQeTsGN3cVlElKJiR8OARYYW.jpg", "order": 11}, {"name": "Nicholas McGaughey", "character": "Officer Bolt", "id": 80368, "credit_id": "52fe4274c3a36847f801fc71", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Annabelle Apsion", "character": "Polly Nichols", "id": 80369, "credit_id": "52fe4274c3a36847f801fc75", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Joanna Page", "character": "Ann Crook", "id": 7061, "credit_id": "52fe4274c3a36847f801fc79", "cast_id": 33, "profile_path": "/i0Mgrg3K2HvcQWnQmliD3FesBAk.jpg", "order": 14}], "directors": [{"name": "Albert Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801fbd7", "profile_path": "/wExeoXPCpuGKmNKHKwJKo8BXo4t.jpg", "id": 11447}, {"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801fbdd", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}], "vote_average": 6.3, "runtime": 122}, "769": {"poster_path": "/pwpGfTImTGifEGgLb3s6LRPd4I6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46836394, "overview": "Henry Hill is a small time gangster, who takes part in a robbery with Jimmy Conway and Tommy De Vito, two other gangsters who have set their sights a bit higher. His two partners kill off everyone else involved in the robbery, and slowly start to climb up through the hierarchy of the Mob. Henry, however, is badly affected by his partners success, but will he stoop low enough to bring about the downfall of Jimmy and Tommy?", "video": false, "id": 769, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Goodfellas", "tagline": "Three Decades of Life in the Mafia.", "vote_count": 756, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099685", "adult": false, "backdrop_path": "/daAvXBvlYyJXKEdqYIRVv6OgheT.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1990-09-18", "popularity": 1.77209982892638, "original_title": "Goodfellas", "budget": 25000000, "cast": [{"name": "Robert De Niro", "character": "Jimmy Conway", "id": 380, "credit_id": "52fe4274c3a36847f801fd1b", "cast_id": 16, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Henry Hill", "id": 11477, "credit_id": "52fe4274c3a36847f801fd1f", "cast_id": 17, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Tommy DeVito", "id": 4517, "credit_id": "52fe4274c3a36847f801fd23", "cast_id": 18, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Lorraine Bracco", "character": "Karen Hill", "id": 11478, "credit_id": "52fe4274c3a36847f801fd27", "cast_id": 19, "profile_path": "/1neO0scj7QyrrWDp1JZRrN0tA8Y.jpg", "order": 3}, {"name": "Paul Sorvino", "character": "Paul Cicero", "id": 7004, "credit_id": "52fe4274c3a36847f801fd5f", "cast_id": 33, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 4}, {"name": "Chuck Low", "character": "Morris Kessler", "id": 11479, "credit_id": "52fe4274c3a36847f801fd2b", "cast_id": 20, "profile_path": "/h4mQOMAXyNXyiWBFhpw4rTNkvHZ.jpg", "order": 5}, {"name": "Frank Sivero", "character": "Frankie Carbone", "id": 11480, "credit_id": "52fe4274c3a36847f801fd2f", "cast_id": 21, "profile_path": "/jszCGdc8p9d42K8e7qvVpzaQa5b.jpg", "order": 6}, {"name": "Frank DiLeo", "character": "Tuddy Cicero", "id": 11481, "credit_id": "52fe4274c3a36847f801fd33", "cast_id": 22, "profile_path": "/vW60CPPt7SBKRFQaEjMQMwyHlP2.jpg", "order": 7}, {"name": "Tony Darrow", "character": "Sonny Bunz", "id": 11482, "credit_id": "52fe4274c3a36847f801fd37", "cast_id": 23, "profile_path": "/ckz3hqyTyRiwVEauD6PBgvrQw0u.jpg", "order": 8}, {"name": "Mike Starr", "character": "Frenchy", "id": 5170, "credit_id": "52fe4274c3a36847f801fd3b", "cast_id": 24, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 9}, {"name": "Frank Vincent", "character": "Billy Batts", "id": 7164, "credit_id": "52fe4274c3a36847f801fd3f", "cast_id": 25, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 10}, {"name": "Frank Adonis", "character": "Anthony Stabile", "id": 4692, "credit_id": "52fe4274c3a36847f801fd43", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Catherine Scorsese", "character": "Mrs. DeVito - Tommy's Mother", "id": 11483, "credit_id": "52fe4274c3a36847f801fd47", "cast_id": 27, "profile_path": "/rXFjIQVimKotQUtXwVNGg7XVMeW.jpg", "order": 12}, {"name": "Suzanne Shepherd", "character": "Karen's Mother", "id": 11484, "credit_id": "52fe4274c3a36847f801fd4b", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Gina Mastrogiacomo", "character": "Janice Rossi", "id": 11485, "credit_id": "52fe4274c3a36847f801fd4f", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Debi Mazar", "character": "Sandy", "id": 5578, "credit_id": "52fe4274c3a36847f801fd53", "cast_id": 30, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 15}, {"name": "Michael Imperioli", "character": "Spider", "id": 11486, "credit_id": "52fe4274c3a36847f801fd57", "cast_id": 31, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 16}, {"name": "Samuel L. Jackson", "character": "Stacks Edwards", "id": 2231, "credit_id": "52fe4274c3a36847f801fd5b", "cast_id": 32, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 17}, {"name": "Charles Scorsese", "character": "Vinnie", "id": 1006721, "credit_id": "53dd95a90e0a265a8a000dad", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Illeana Douglas", "character": "Rosie", "id": 7796, "credit_id": "53dd95c90e0a265a8d000e32", "cast_id": 35, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 19}, {"name": "Tobin Bell", "character": "Parole Officer", "id": 2144, "credit_id": "53dd95e70e0a265a8d000e38", "cast_id": 36, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 20}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fcc3", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.8, "runtime": 146}, "770": {"poster_path": "/2m9qsuDpAb6aBMxbKOBU1jsP9qf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 400176459, "overview": "An American classic in which a manipulative woman and a roguish man carry on a turbulent love affair in the American south during the Civil War and Reconstruction.", "video": false, "id": 770, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Gone with the Wind", "tagline": "The greatest romance of all time!", "vote_count": 276, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0031381", "adult": false, "backdrop_path": "/bGRUMgSvs6wzYQRqehY4Fsup4f1.jpg", "production_companies": [{"name": "Selznick International Pictures", "id": 1553}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1939-12-15", "popularity": 0.865912141767354, "original_title": "Gone with the Wind", "budget": 4000000, "cast": [{"name": "Vivien Leigh", "character": "Scarlett O'Hara", "id": 10538, "credit_id": "52fe4274c3a36847f801fe17", "cast_id": 10, "profile_path": "/rATfD7y3lNbz8ji4SnIURctu7qa.jpg", "order": 0}, {"name": "Clark Gable", "character": "Rhett Butler", "id": 11492, "credit_id": "52fe4274c3a36847f801fe1b", "cast_id": 11, "profile_path": "/cebtqK6Ydrhi5ip0V12MDj3bDvd.jpg", "order": 1}, {"name": "Olivia de Havilland", "character": "Melanie Hamilton", "id": 8725, "credit_id": "52fe4274c3a36847f801fe1f", "cast_id": 12, "profile_path": "/rnMSdk6OZvRdimYbFHjiaYOtIlt.jpg", "order": 2}, {"name": "Thomas Mitchell", "character": "Gerald O'Hara", "id": 3383, "credit_id": "52fe4274c3a36847f801fe23", "cast_id": 13, "profile_path": "/b0WAgmbZjTX99prApnSMdiYOhRK.jpg", "order": 3}, {"name": "Leslie Howard", "character": "Ashley Wilkes", "id": 11493, "credit_id": "52fe4274c3a36847f801fe27", "cast_id": 14, "profile_path": "/upiLsG5efD8CrGO0gT6HyiZZEYh.jpg", "order": 4}, {"name": "Barbara O'Neil", "character": "Ellen O'Hara", "id": 7642, "credit_id": "52fe4274c3a36847f801fe2b", "cast_id": 15, "profile_path": "/osDN2GY2erXbTbwlBSapfKwXaeh.jpg", "order": 5}, {"name": "Evelyn Keyes", "character": "Suellen O'Hara", "id": 11494, "credit_id": "52fe4274c3a36847f801fe2f", "cast_id": 16, "profile_path": "/n3Dtqe51XAPNa2N4nXe1GtR90NK.jpg", "order": 6}, {"name": "Ann Rutherford", "character": "Carreen O'Hara", "id": 11495, "credit_id": "52fe4274c3a36847f801fe33", "cast_id": 17, "profile_path": "/3ZRWZ6Opn94EXXbkJalW0TudTB.jpg", "order": 7}, {"name": "George Reeves", "character": "Stuart Tarleton", "id": 11496, "credit_id": "52fe4274c3a36847f801fe37", "cast_id": 18, "profile_path": "/98aYzkJmmsMHPmY77IUHVc2sbgy.jpg", "order": 8}, {"name": "Fred Crane", "character": "Brent Tarleton", "id": 11497, "credit_id": "52fe4274c3a36847f801fe3b", "cast_id": 19, "profile_path": "/zc2dBfgR9H0IYCDFnK0N9UCYQcK.jpg", "order": 9}, {"name": "Hattie McDaniel", "character": "Mammy", "id": 11498, "credit_id": "52fe4274c3a36847f801fe3f", "cast_id": 20, "profile_path": "/logqibs2WF76dLI297OJkm4j4np.jpg", "order": 10}, {"name": "Oscar Polk", "character": "Pork", "id": 11499, "credit_id": "52fe4274c3a36847f801fe43", "cast_id": 21, "profile_path": "/AoZOpOvbLoVLHqujtKR0HxIzBNK.jpg", "order": 11}, {"name": "Butterfly McQueen", "character": "Prissy", "id": 11500, "credit_id": "52fe4274c3a36847f801fe47", "cast_id": 22, "profile_path": "/i41zpICsZwsuGyZe946MM8BG5hI.jpg", "order": 12}, {"name": "Marcella Martin", "character": "Cathleen Calvert", "id": 11501, "credit_id": "52fe4274c3a36847f801fe4b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Harry Davenport", "character": "Dr. Meade", "id": 11502, "credit_id": "52fe4274c3a36847f801fe4f", "cast_id": 24, "profile_path": "/r28I9wuqqhuMtZ0iBzoi1A74ljp.jpg", "order": 14}, {"name": "Leona Roberts", "character": "Mrs. Meade", "id": 13822, "credit_id": "52fe4274c3a36847f801fe9d", "cast_id": 43, "profile_path": "/z8oL1VwiSGnwTK4c1PV9A2som7x.jpg", "order": 17}, {"name": "Cammie King", "character": "Bonnie Blue Butler", "id": 11503, "credit_id": "52fe4274c3a36847f801fe53", "cast_id": 25, "profile_path": "/o1PkTkUR5wOU9ZRrbVdc0nWR5XS.jpg", "order": 18}, {"name": "Eric Linden", "character": "Amputation Case", "id": 124853, "credit_id": "52fe4274c3a36847f801fe5d", "cast_id": 27, "profile_path": "/wSgntN58MRBPOOT80kcCHZCo3EY.jpg", "order": 19}, {"name": "J. M. Kerrigan", "character": "Johnny Gallagher", "id": 2099, "credit_id": "52fe4274c3a36847f801fe61", "cast_id": 28, "profile_path": "/2q7u623S3giTrirUaQQMIKGdr5A.jpg", "order": 20}, {"name": "Ward Bond", "character": "Tom - Yankee Captain", "id": 4303, "credit_id": "52fe4274c3a36847f801fe65", "cast_id": 29, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 21}, {"name": "Jackie Moran", "character": "Phil Meade", "id": 33775, "credit_id": "52fe4274c3a36847f801fe69", "cast_id": 30, "profile_path": "/fabbLkwkB0yYcYSbbpSKPRxXHsQ.jpg", "order": 22}, {"name": "Cliff Edwards", "character": "Reminiscent Soldier", "id": 30236, "credit_id": "52fe4274c3a36847f801fe6d", "cast_id": 31, "profile_path": "/kbWXXmugxdX3rOEa0hUlJWHZ9pA.jpg", "order": 23}, {"name": "Lillian Kemble-Cooper", "character": "Bonnie's Nurse in London", "id": 124854, "credit_id": "52fe4274c3a36847f801fe71", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Yakima Canutt", "character": "Renegade", "id": 88979, "credit_id": "52fe4274c3a36847f801fe75", "cast_id": 33, "profile_path": "/8cLKXYJymj4753C2XzoINfaJllv.jpg", "order": 25}, {"name": "Louis Jean Heydt", "character": "Hungry Soldier Holding Beau Wilkes", "id": 13979, "credit_id": "52fe4274c3a36847f801fe79", "cast_id": 34, "profile_path": "/i3IvlNbAp6w3IB7Ur8QpRsG8MLz.jpg", "order": 26}, {"name": "Mickey Kuhn", "character": "Beau Wilkes", "id": 10545, "credit_id": "52fe4274c3a36847f801fe7d", "cast_id": 35, "profile_path": "/lqzpNfPGs77XFaNAetnNuC6dFql.jpg", "order": 27}, {"name": "Olin Howland", "character": "A Carpetbagger Businessman", "id": 34209, "credit_id": "52fe4274c3a36847f801fe81", "cast_id": 36, "profile_path": "/lstGMKS2WLNbgNZXd9bKTn0tbTz.jpg", "order": 28}, {"name": "Irving Bacon", "character": "Corporal", "id": 30530, "credit_id": "52fe4274c3a36847f801fe85", "cast_id": 37, "profile_path": "/oI6h1L5HvvXLacBIlKoHcXrHbhI.jpg", "order": 29}, {"name": "Robert Elliott", "character": "Yankee Major", "id": 124855, "credit_id": "52fe4274c3a36847f801fe89", "cast_id": 38, "profile_path": null, "order": 30}, {"name": "William Bakewell", "character": "Mounted Officer", "id": 2015, "credit_id": "52fe4274c3a36847f801fe8d", "cast_id": 39, "profile_path": "/bHFnAPWrWxFycVGFPufC1zyeeA0.jpg", "order": 31}, {"name": "Mary Anderson", "character": "Maybelle Merriwether", "id": 93896, "credit_id": "52fe4274c3a36847f801fe91", "cast_id": 40, "profile_path": "/gQYvWEt5LTvILfEg7Q9URFD1rf5.jpg", "order": 32}, {"name": "Ona Munson", "character": "Belle Watling", "id": 105797, "credit_id": "52fe4274c3a36847f801fe95", "cast_id": 41, "profile_path": "/n8OMRdRdDN2Gslu54ggCfRJ99zM.jpg", "order": 32}, {"name": "Jane Darwell", "character": "Mrs. Merriwether", "id": 8515, "credit_id": "52fe4274c3a36847f801fe99", "cast_id": 42, "profile_path": "/geGrMcqxcFtMKKJO36OFpVwZFFW.jpg", "order": 32}, {"name": "Isabel Jewell", "character": "Emmy Slattery", "id": 33277, "credit_id": "52fe4274c3a36847f801fea1", "cast_id": 45, "profile_path": "/oBUProXvlf58Y3Cp9qEFWFW6rib.jpg", "order": 33}, {"name": "Paul Hurst", "character": "Yankee Deserter", "id": 14664, "credit_id": "52fe4274c3a36847f801fea5", "cast_id": 46, "profile_path": "/3TzzVWNYUSQIw24A9EB5YBwjMcv.jpg", "order": 34}, {"name": "Eddie 'Rochester' Anderson", "character": "Uncle Peter - Her Coachman (as Eddie Anderson)", "id": 98571, "credit_id": "52fe4274c3a36847f801fea9", "cast_id": 47, "profile_path": "/zHuKGgQyNUKSX5elFdef0lG9QoS.jpg", "order": 35}, {"name": "Laura Hope Crews", "character": "Aunt 'Pittypat' Hamilton", "id": 223051, "credit_id": "52fe4274c3a36847f801fead", "cast_id": 48, "profile_path": "/oQQOd1KY5f6icBOXinr8mbuLtnA.jpg", "order": 36}, {"name": "Carroll Nye", "character": "Frank Kennedy - Guest", "id": 122148, "credit_id": "52fe4274c3a36847f801feb1", "cast_id": 49, "profile_path": "/mO3vXG5gUwsg4rIW4au70O2eoBa.jpg", "order": 37}, {"name": "Rand Brooks", "character": "Charles Hamilton - Her Brother", "id": 91217, "credit_id": "52fe4274c3a36847f801feb5", "cast_id": 50, "profile_path": "/vWqNcOULc8juvA5zjsIARIbpSzH.jpg", "order": 38}, {"name": "Alicia Rhett", "character": "India - His Daughter", "id": 1073154, "credit_id": "52fe4274c3a36847f801feb9", "cast_id": 51, "profile_path": "/wAu2dv49HNucRXkVNWffd4k48CY.jpg", "order": 39}, {"name": "Howard C. Hickman", "character": "John Wilkes (as Howard Hickman)", "id": 33025, "credit_id": "52fe4274c3a36847f801febd", "cast_id": 52, "profile_path": "/oobORM7adsUFRv25jelF1So8qFY.jpg", "order": 40}, {"name": "Everett Brown", "character": "Big Sam - Field Foreman", "id": 555903, "credit_id": "52fe4274c3a36847f801fec1", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Victor Jory", "character": "Jonas Wilkerson - Field Overseer", "id": 15666, "credit_id": "52fe4274c3a36847f801fec5", "cast_id": 54, "profile_path": "/4phylVED6xN2gFYeUQnywahstGG.jpg", "order": 42}], "directors": [{"name": "Victor Fleming", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fde3", "profile_path": "/Lq3Hb5VsmTSIEaYvgfbpK8r8Tk.jpg", "id": 9049}, {"name": "George Cukor", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fecb", "profile_path": "/t2RWv3nzCoqKWYiCGCjwiIHW4Sj.jpg", "id": 14674}, {"name": "Sam Wood", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fed1", "profile_path": "/xtotCnG8pv42k0EudM1WZ7PQMsH.jpg", "id": 10790}], "vote_average": 6.9, "runtime": 238}, "771": {"poster_path": "/8IWPBT1rkAaI8Kpk5V3WfQRklJ7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 476684675, "overview": "Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house, the plucky kid stands ready to defend his territory. By planting booby traps galore, adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before.", "video": false, "id": 771, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Home Alone", "tagline": "A Family Comedy Without the Family.", "vote_count": 718, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ghu5A45jtbizDTwHb1iJWVTdmnF.jpg", "poster_path": "/zYPsleQJo1n1rBPlecJBRb3iwSO.jpg", "id": 9888, "name": "Home Alone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099785", "adult": false, "backdrop_path": "/vUyDnfk7DHaozfl1cXFh6PzbUW4.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Hughes Entertainment", "id": 477}], "release_date": "1990-11-09", "popularity": 0.0534188313676865, "original_title": "Home Alone", "budget": 15000000, "cast": [{"name": "Macaulay Culkin", "character": "Kevin", "id": 11510, "credit_id": "52fe4274c3a36847f801ff87", "cast_id": 13, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 0}, {"name": "Joe Pesci", "character": "Harry", "id": 4517, "credit_id": "52fe4274c3a36847f801ff8b", "cast_id": 14, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 1}, {"name": "Daniel Stern", "character": "Marv", "id": 11511, "credit_id": "52fe4274c3a36847f801ff8f", "cast_id": 15, "profile_path": "/fyiJWh0zdIOBOSqcB8qaFw5U8bA.jpg", "order": 2}, {"name": "John Heard", "character": "Peter", "id": 11512, "credit_id": "52fe4274c3a36847f801ff93", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Roberts Blossom", "character": "Marley", "id": 66288, "credit_id": "52fe4274c3a36847f801ff97", "cast_id": 17, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 4}, {"name": "Catherine O'Hara", "character": "Kate", "id": 11514, "credit_id": "52fe4274c3a36847f801ff9b", "cast_id": 18, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 5}, {"name": "Angela Goethals", "character": "Linnie", "id": 11515, "credit_id": "52fe4274c3a36847f801ff9f", "cast_id": 19, "profile_path": "/lQlv68KzjOxfTI6goKe1jHQQeV4.jpg", "order": 6}, {"name": "Devin Ratray", "character": "Buzz", "id": 11516, "credit_id": "52fe4274c3a36847f801ffa3", "cast_id": 20, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 7}, {"name": "Gerry Bamman", "character": "Uncle Frank", "id": 11517, "credit_id": "52fe4274c3a36847f801ffa7", "cast_id": 21, "profile_path": "/ybNlqyoXcAQ5pKz6fFD7Ff7LKcz.jpg", "order": 8}, {"name": "Hillary Wolf", "character": "Megan", "id": 11518, "credit_id": "52fe4274c3a36847f801ffab", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "John Candy", "character": "Gus Polinski", "id": 7180, "credit_id": "52fe4274c3a36847f801ffaf", "cast_id": 23, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 10}, {"name": "Larry Hankin", "character": "Officer Balzak", "id": 11519, "credit_id": "52fe4274c3a36847f801ffb3", "cast_id": 24, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 11}, {"name": "Kristin Minter", "character": "Heather", "id": 11521, "credit_id": "52fe4274c3a36847f801ffb7", "cast_id": 26, "profile_path": "/aGWrWP87jXdPjYTiQ6cGmxHqBGR.jpg", "order": 12}, {"name": "Jedidiah Cohen", "character": "Rod", "id": 11522, "credit_id": "52fe4274c3a36847f801ffbb", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Ken Hudson Campbell", "character": "Santa", "id": 236327, "credit_id": "52fe4274c3a36847f801ffbf", "cast_id": 28, "profile_path": "/lN9e975UkER6sRu9tKpeL2XyU5D.jpg", "order": 14}, {"name": "Kieran Culkin", "character": "Fuller McCallister", "id": 18793, "credit_id": "52fe4274c3a36847f801ffc3", "cast_id": 29, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 15}, {"name": "Michael C. Maronna", "character": "Jeff McCallister", "id": 945734, "credit_id": "52fe4274c3a36847f801ffc7", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Billie Bird", "character": "Woman in Airport", "id": 140778, "credit_id": "52fe4274c3a36847f801ffcb", "cast_id": 31, "profile_path": "/jJzRnD39UAvbU1ihaXMRcPZN9Xq.jpg", "order": 17}, {"name": "Bill Erwin", "character": "Man in Airport", "id": 26044, "credit_id": "52fe4274c3a36847f801ffcf", "cast_id": 32, "profile_path": "/b0O9XSBfgWh2CBhV2gHKvPGpOS.jpg", "order": 18}, {"name": "Ralph Foody", "character": "Johnny - Gangster #1", "id": 1244120, "credit_id": "549b61d4925141311f0025e3", "cast_id": 33, "profile_path": null, "order": 19}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801ff41", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.6, "runtime": 103}, "772": {"poster_path": "/96iX6o0LhOKiNmSpRpufXC7WsEw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 358991681, "overview": "Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card\u2014despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas eve.", "video": false, "id": 772, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10751, "name": "Family"}], "title": "Home Alone 2: Lost In New York", "tagline": "He's up past his bedtime in the city that never sleeps.", "vote_count": 770, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ghu5A45jtbizDTwHb1iJWVTdmnF.jpg", "poster_path": "/zYPsleQJo1n1rBPlecJBRb3iwSO.jpg", "id": 9888, "name": "Home Alone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0104431", "adult": false, "backdrop_path": "/dS1EMlZK8Axj5wrgRpWGLOb85KN.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-11-19", "popularity": 1.19716978456316, "original_title": "Home Alone 2: Lost In New York", "budget": 18000000, "cast": [{"name": "Macaulay Culkin", "character": "Kevin", "id": 11510, "credit_id": "52fe4274c3a36847f8020049", "cast_id": 12, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 0}, {"name": "Joe Pesci", "character": "Harry Lime", "id": 4517, "credit_id": "52fe4274c3a36847f802004d", "cast_id": 13, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Kate McCallister", "id": 11514, "credit_id": "52fe4274c3a36847f8020051", "cast_id": 14, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "Daniel Stern", "character": "Marv Merchants", "id": 11511, "credit_id": "52fe4274c3a36847f8020055", "cast_id": 15, "profile_path": "/fyiJWh0zdIOBOSqcB8qaFw5U8bA.jpg", "order": 3}, {"name": "John Heard", "character": "Peter McCallister", "id": 11512, "credit_id": "52fe4274c3a36847f8020059", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 4}, {"name": "Devin Ratray", "character": "Buzz McCallister", "id": 11516, "credit_id": "52fe4274c3a36847f802005d", "cast_id": 17, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 5}, {"name": "Hillary Wolf", "character": "Megan McCallister", "id": 11518, "credit_id": "52fe4274c3a36847f8020061", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Gerry Bamman", "character": "Uncle Frank McCallister", "id": 11517, "credit_id": "52fe4274c3a36847f8020065", "cast_id": 19, "profile_path": "/ybNlqyoXcAQ5pKz6fFD7Ff7LKcz.jpg", "order": 7}, {"name": "Jedidiah Cohen", "character": "Rod McCallister", "id": 11522, "credit_id": "52fe4274c3a36847f8020069", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Kieran Culkin", "character": "Fuller McCallister", "id": 18793, "credit_id": "52fe4274c3a36847f802006d", "cast_id": 21, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 9}, {"name": "Tim Curry", "character": "Mr. Hector, Hotel Concierge", "id": 13472, "credit_id": "52fe4274c3a36847f8020071", "cast_id": 22, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 10}, {"name": "Eddie Bracken", "character": "E.F. Duncan", "id": 115457, "credit_id": "52fe4274c3a36847f8020075", "cast_id": 23, "profile_path": "/rBCEY264VgZXaWTB8IY64hgI1U0.jpg", "order": 11}, {"name": "Rob Schneider", "character": "Bellman", "id": 60949, "credit_id": "52fe4274c3a36847f8020079", "cast_id": 24, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 12}, {"name": "Michael C. Maronna", "character": "Jeff McCallister", "id": 945734, "credit_id": "52fe4274c3a36847f802007d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Ralph Foody", "character": "Gangster", "id": 1244120, "credit_id": "549b61fac3a3682f1b0026e5", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f8020009", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 5.9, "runtime": 120}, "82693": {"poster_path": "/ilrZAV2klTB0FLxLb01bOp5pzD9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205738714, "overview": "After spending eight months in a mental institution, a former teacher moves back in with his parents and tries to reconcile with his ex-wife.", "video": false, "id": 82693, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Silver Linings Playbook", "tagline": "Watch For The Signs", "vote_count": 2051, "homepage": "http://silverliningsplaybookmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1045658", "adult": false, "backdrop_path": "/6YEWKSFIWFTLnInzXYiSaS7pVOP.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}], "release_date": "2012-12-25", "popularity": 1.67013851619464, "original_title": "Silver Linings Playbook", "budget": 21000000, "cast": [{"name": "Bradley Cooper", "character": "Pat", "id": 51329, "credit_id": "52fe486b9251416c9108be65", "cast_id": 31, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Jennifer Lawrence", "character": "Tiffany", "id": 72129, "credit_id": "52fe486b9251416c9108bde3", "cast_id": 4, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Pat Sr.", "id": 380, "credit_id": "52fe486b9251416c9108bde7", "cast_id": 5, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Jacki Weaver", "character": "Dolores", "id": 67837, "credit_id": "52fe486b9251416c9108be03", "cast_id": 14, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 3}, {"name": "Chris Tucker", "character": "Danny", "id": 66, "credit_id": "52fe486b9251416c9108bdef", "cast_id": 9, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 4}, {"name": "Anupam Kher", "character": "Dr. Cliff Patel", "id": 6217, "credit_id": "52fe486b9251416c9108bdff", "cast_id": 13, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 5}, {"name": "John Ortiz", "character": "Ronnie", "id": 40543, "credit_id": "52fe486b9251416c9108bdfb", "cast_id": 12, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 6}, {"name": "Shea Whigham", "character": "Jake", "id": 74242, "credit_id": "52fe486b9251416c9108bdf3", "cast_id": 10, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 7}, {"name": "Julia Stiles", "character": "Veronica", "id": 12041, "credit_id": "52fe486b9251416c9108bdeb", "cast_id": 7, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 8}, {"name": "Dash Mihok", "character": "Officer Keogh", "id": 6066, "credit_id": "52fe486b9251416c9108bdf7", "cast_id": 11, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 9}, {"name": "Bonnie Aarons", "character": "Ricky D'Angelo's Mother", "id": 87287, "credit_id": "52fe486b9251416c9108be07", "cast_id": 15, "profile_path": "/9EbAXaOHxyOsIbW5JpP9ezO9t4i.jpg", "order": 10}, {"name": "Brea Bee", "character": "Nikki", "id": 108920, "credit_id": "52fe486b9251416c9108be69", "cast_id": 32, "profile_path": "/w3gmOKyXvT9Frg8PuLP5ZU0T9Uf.jpg", "order": 11}, {"name": "Paul Herman", "character": "Randy", "id": 58535, "credit_id": "52fe486b9251416c9108be6d", "cast_id": 33, "profile_path": "/vaK8wxkMeKJdZEdGUufyV0Ma24M.jpg", "order": 12}, {"name": "Matthew Russell", "character": "Ricky D'Angelo", "id": 239111, "credit_id": "52fe486b9251416c9108be71", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Cheryl Williams", "character": "Tiffany's Mother", "id": 1271780, "credit_id": "52fe486b9251416c9108be75", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Patrick McDade", "character": "Tiffany's Father", "id": 1128450, "credit_id": "52fe486b9251416c9108be79", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Phillip Chorba", "character": "Jordie", "id": 1271781, "credit_id": "52fe486b9251416c9108be7d", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Mary Regency Boies", "character": "Regina", "id": 1271782, "credit_id": "52fe486b9251416c9108be81", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Anthony Lawton", "character": "Dr.Timbers", "id": 1271783, "credit_id": "52fe486b9251416c9108be85", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Patsy Meck", "character": "Nancy", "id": 1271784, "credit_id": "52fe486b9251416c9108be89", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Jeff Reim", "character": "Jeffrey", "id": 1271785, "credit_id": "52fe486b9251416c9108be8d", "cast_id": 41, "profile_path": null, "order": 20}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe486b9251416c9108bdd3", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 6.8, "runtime": 122}, "8966": {"poster_path": "/nlvPMLCdum7bkHKmDSMnNLGztmW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 392616625, "overview": "When Bella Swan moves to a small town in the Pacific Northwest to live with her father, she starts school and meets the reclusive Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't help but fall in love with him, a fatal move that endangers her own life when a coven of bloodsuckers try to challenge the Cullen clan.", "video": false, "id": 8966, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Twilight", "tagline": "When you can live forever, what do you live for?", "vote_count": 1080, "homepage": "http://www.twilightthemovie.com", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1099212", "adult": false, "backdrop_path": "/nEdBHjvRkKwEPD1Ps5A3rRiiLVN.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Maverick Films", "id": 4000}], "release_date": "2008-11-20", "popularity": 1.25677557355888, "original_title": "Twilight", "budget": 37000000, "cast": [{"name": "Kristen Stewart", "character": "Isabella 'Bella' Swan", "id": 37917, "credit_id": "52fe44ccc3a36847f80aa8f3", "cast_id": 4, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe44ccc3a36847f80aa8f7", "cast_id": 5, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe44ccc3a36847f80aa8ff", "cast_id": 7, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 2}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe44ccc3a36847f80aa8fb", "cast_id": 6, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 3}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe44ccc3a36847f80aa903", "cast_id": 8, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 4}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe44ccc3a36847f80aa907", "cast_id": 9, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 5}, {"name": "Jackson Rathbone", "character": "Jasper", "id": 84215, "credit_id": "52fe44ccc3a36847f80aa90b", "cast_id": 10, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 6}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe44ccc3a36847f80aa90f", "cast_id": 11, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 7}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe44ccc3a36847f80aa913", "cast_id": 12, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 8}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe44ccc3a36847f80aa917", "cast_id": 13, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 9}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe44ccc3a36847f80aa91b", "cast_id": 14, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 10}, {"name": "Sarah Clarke", "character": "Ren\u00e9e", "id": 25836, "credit_id": "52fe44ccc3a36847f80aa91f", "cast_id": 15, "profile_path": "/50umNQSJOGuz09Sb6R5BIRP5IoD.jpg", "order": 11}, {"name": "Gil Birmingham", "character": "Billy Black", "id": 84225, "credit_id": "52fe44ccc3a36847f80aa923", "cast_id": 16, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 12}, {"name": "Rachelle Lefevre", "character": "Victoria", "id": 58168, "credit_id": "52fe44ccc3a36847f80aa927", "cast_id": 17, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 13}, {"name": "Cam Gigandet", "character": "James", "id": 55086, "credit_id": "52fe44ccc3a36847f80aa92b", "cast_id": 18, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 14}, {"name": "Edi Gathegi", "character": "Laurent", "id": 39391, "credit_id": "52fe44ccc3a36847f80aa92f", "cast_id": 19, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 15}, {"name": "Michael Welch", "character": "Mike Newton", "id": 56676, "credit_id": "52fe44ccc3a36847f80aa933", "cast_id": 20, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 16}, {"name": "Christian Serratos", "character": "Angela Weber", "id": 84224, "credit_id": "52fe44ccc3a36847f80aa937", "cast_id": 21, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 17}, {"name": "Justin Chon", "character": "Eric", "id": 65225, "credit_id": "52fe44ccc3a36847f80aa93b", "cast_id": 22, "profile_path": "/4hTyiQgqp6MZgFeW7DosqX4ifUK.jpg", "order": 18}], "directors": [{"name": "Catherine Hardwicke", "department": "Directing", "job": "Director", "credit_id": "52fe44ccc3a36847f80aa8e3", "profile_path": "/yUOoXg1couvQvZftVvONhcQIEhd.jpg", "id": 19850}], "vote_average": 5.6, "runtime": 122}, "213121": {"poster_path": "/cT8krQxRoioNk2KabSYuIf2yuaC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "What starts out as a fun road trip for the Toy Story gang takes an unexpected turn for the worse when the trip detours to a roadside motel. After one of the toys goes missing, the others find themselves caught up in a mysterious sequence of events that must be solved before they all suffer the same fate in this Toy Story of Terror.", "video": false, "id": 213121, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story of Terror!", "tagline": "One toy gets left behind!", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2446040", "adult": false, "backdrop_path": "/dNBMMLHOURonmtS0DHuEhrAXlPe.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2013-10-15", "popularity": 0.0306375352402628, "original_title": "Toy Story of Terror!", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Woody", "id": 31, "credit_id": "52fe4dbec3a368484e1fac11", "cast_id": 6, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear", "id": 12898, "credit_id": "52fe4dbec3a368484e1fac15", "cast_id": 7, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Kristen Schaal", "character": "Trixie", "id": 109869, "credit_id": "52fe4dbec3a368484e1fac19", "cast_id": 9, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Combat Carl / Combat Carl Jr.", "id": 1101, "credit_id": "52fe4dbec3a368484e1fac1d", "cast_id": 12, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Wallace Shawn", "character": "Rex", "id": 12900, "credit_id": "52fe4dbec3a368484e1fac21", "cast_id": 13, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 4}, {"name": "Timothy Dalton", "character": "Mr. Pricklepants", "id": 10669, "credit_id": "52fe4dbec3a368484e1fac25", "cast_id": 14, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 5}, {"name": "Don Rickles", "character": "Mr. Potato Head", "id": 7167, "credit_id": "52fe4dbec3a368484e1fac29", "cast_id": 15, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 6}, {"name": "Emily Hahn", "character": "Bonnie", "id": 1096415, "credit_id": "52fe4dbec3a368484e1fac2d", "cast_id": 17, "profile_path": "/cjCwq4bzHuYMba1kDfEkKCeEOeb.jpg", "order": 7}], "directors": [{"name": "Angus MacLane", "department": "Directing", "job": "Director", "credit_id": "52fe4dbec3a368484e1fabf5", "profile_path": "/7U1mEvzHGNJiC07EOhKIKSl3Qiy.jpg", "id": 7929}], "vote_average": 7.2, "runtime": 22}, "82696": {"poster_path": "/A2pbFehiuTRTjneNr76dPL7cCa9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114281051, "overview": "After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.", "video": false, "id": 82696, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Hope Springs", "tagline": "", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1535438", "adult": false, "backdrop_path": "/1MxJ0xKc53Q3fedX7qFI9YfW8Sb.jpg", "production_companies": [{"name": "Escape Artists", "id": 1423}, {"name": "Columbia Pictures", "id": 5}, {"name": "Mandate Pictures", "id": 771}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Management 360", "id": 4220}], "release_date": "2012-08-07", "popularity": 0.549865242010405, "original_title": "Hope Springs", "budget": 30000000, "cast": [{"name": "Meryl Streep", "character": "Kay", "id": 5064, "credit_id": "52fe486f9251416c9108c449", "cast_id": 13, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Steve Carell", "character": "Dr. Bernie Feld", "id": 4495, "credit_id": "52fe486f9251416c9108c44d", "cast_id": 14, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Tommy Lee Jones", "character": "Arnold Soames", "id": 2176, "credit_id": "52fe486f9251416c9108c451", "cast_id": 15, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 2}, {"name": "Jean Smart", "character": "Eileen, Kay's Friend", "id": 5376, "credit_id": "52fe486f9251416c9108c455", "cast_id": 16, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 3}, {"name": "Marin Ireland", "character": "Molly, Their Daughter", "id": 164094, "credit_id": "52fe486f9251416c9108c459", "cast_id": 17, "profile_path": "/wtoGyUBq04qGjEEB9OHFBBOggVJ.jpg", "order": 4}, {"name": "Ben Rappaport", "character": "Brad, Their Son", "id": 224183, "credit_id": "52fe486f9251416c9108c45d", "cast_id": 18, "profile_path": "/9rBUqIJ07u8FKOHvI8dn0UMDGGR.jpg", "order": 5}, {"name": "Susan Misner", "character": "Dana, Doctor Feld's Wife", "id": 17640, "credit_id": "52fe486f9251416c9108c461", "cast_id": 19, "profile_path": "/ugyXBkbrlG97RufRzII4sPM7kU1.jpg", "order": 6}, {"name": "Danny Flaherty", "character": "Danny, The Bookstore Clerk", "id": 512749, "credit_id": "52fe486f9251416c9108c465", "cast_id": 20, "profile_path": "/qrdJUO7rvc83P4ELSAUzaew3X9.jpg", "order": 7}, {"name": "Patch Darragh", "character": "Mark, Their Son-in-Law", "id": 172156, "credit_id": "52fe486f9251416c9108c469", "cast_id": 22, "profile_path": "/ozrGFV2Ffv5erGlXvWKRPCNmpu9.jpg", "order": 8}, {"name": "Anita Storr", "character": "Beach goer wedding scene", "id": 928636, "credit_id": "52fe486f9251416c9108c46d", "cast_id": 23, "profile_path": "/w4gVHx8yOPBr2elug9dJLjKHGok.jpg", "order": 9}, {"name": "Lee Cunningham", "character": "Lee, The Unhappy Wife", "id": 928637, "credit_id": "52fe486f9251416c9108c471", "cast_id": 24, "profile_path": "/iSxe0WXOO6A4W7baFmvHXPyEAJt.jpg", "order": 10}, {"name": "John Franchi", "character": "Driver", "id": 928638, "credit_id": "52fe486f9251416c9108c475", "cast_id": 25, "profile_path": "/3j3TU6CT87bnFTeVzLQNsGkyKCb.jpg", "order": 11}, {"name": "Elisabeth Shue", "character": "Karen, The Bartender", "id": 1951, "credit_id": "52fe486f9251416c9108c479", "cast_id": 27, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 12}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe486e9251416c9108c403", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 5.5, "runtime": 100}, "50647": {"poster_path": "/6dbzcnxU49xtvLrqsxqODJqRN9S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24159934, "overview": "Rattled by sudden unemployment, a Manhattan couple surveys alternative living options, ultimately deciding to experiment with living on a rural commune where free love rules.", "video": false, "id": 50647, "genres": [{"id": 35, "name": "Comedy"}], "title": "Wanderlust", "tagline": "Leave your baggage behind", "vote_count": 131, "homepage": "http://www.wanderlust-movie.com/Wanderlust/home.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1655460", "adult": false, "backdrop_path": "/4laX0hT8ULoiuguZbD0WG3udG9s.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "A Hot Dog", "id": 41962}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2012-02-24", "popularity": 0.882722604743934, "original_title": "Wanderlust", "budget": 0, "cast": [{"name": "Paul Rudd", "character": "George", "id": 22226, "credit_id": "52fe47d0c3a36847f8149a67", "cast_id": 1, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Linda", "id": 4491, "credit_id": "52fe47d0c3a36847f8149a6f", "cast_id": 3, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Justin Theroux", "character": "Seth", "id": 15009, "credit_id": "52fe47d0c3a36847f8149a77", "cast_id": 5, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 2}, {"name": "Malin Akerman", "character": "Eva", "id": 50463, "credit_id": "52fe47d0c3a36847f8149a6b", "cast_id": 2, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 3}, {"name": "Lauren Ambrose", "character": "Almond", "id": 54470, "credit_id": "52fe47d0c3a36847f8149a73", "cast_id": 4, "profile_path": "/zEdW3X6MHTDVG4jizKfVebVTmCH.jpg", "order": 4}, {"name": "Joe Lo Truglio", "character": "Wayne Davidson", "id": 21131, "credit_id": "52fe47d0c3a36847f8149a87", "cast_id": 9, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 5}, {"name": "Alan Alda", "character": "Carvin", "id": 21278, "credit_id": "52fe47d0c3a36847f8149a7f", "cast_id": 7, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 6}, {"name": "Kathryn Hahn", "character": "Karen", "id": 17696, "credit_id": "52fe47d0c3a36847f8149a7b", "cast_id": 6, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 7}, {"name": "Ken Marino", "character": "Rick Gergenblatt", "id": 77089, "credit_id": "547e6574c3a3682577000306", "cast_id": 22, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 8}, {"name": "Jordan Peele", "character": "Rodney Wilson", "id": 291263, "credit_id": "547e65829251412900000327", "cast_id": 23, "profile_path": "/2ZJgEIgG31efrRO2mUFnXxDi47E.jpg", "order": 9}, {"name": "Kerri Kenney-Silver", "character": "Kathy", "id": 63220, "credit_id": "52fe47d0c3a36847f8149a83", "cast_id": 8, "profile_path": "/jYTKAjioRFDuKlcaSitjMFYV1va.jpg", "order": 10}, {"name": "Michaela Watkins", "character": "Marisa", "id": 113224, "credit_id": "52fe47d0c3a36847f8149a8b", "cast_id": 10, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 11}, {"name": "Patricia French", "character": "Beverly", "id": 128207, "credit_id": "52fe47d0c3a36847f8149a8f", "cast_id": 11, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 12}], "directors": [{"name": "David Wain", "department": "Directing", "job": "Director", "credit_id": "52fe47d0c3a36847f8149a95", "profile_path": "/253GyLoZKOhwXPCEgn4w8RMegzW.jpg", "id": 22214}], "vote_average": 5.3, "runtime": 98}, "82700": {"poster_path": "/pUCK62aHDUJYcCXUvdMKkr3dJmx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 243843127, "overview": "One thousand years after cataclysmic events forced humanity's escape from Earth, Nova Prime has become mankind's new home. Legendary General Cypher Raige returns from an extended tour of duty to his estranged family, ready to be a father to his 13-year-old son, Kitai. When an asteroid storm damages Cypher and Kitai's craft, they crash-land on a now unfamiliar and dangerous Earth. As his father lies dying in the cockpit, Kitai must trek across the hostile terrain to recover their rescue beacon. His whole life, Kitai has wanted nothing more than to be a soldier like his father. Today, he gets his chance.", "video": false, "id": 82700, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "After Earth", "tagline": "DANGER IS REAL, FEAR IS A CHOICE", "vote_count": 1054, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1815862", "adult": false, "backdrop_path": "/79sgOV7YZk846qwy7g5sarYN08O.jpg", "production_companies": [{"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Columbia Pictures", "id": 5}, {"name": "Overbrook Entertainment", "id": 12485}], "release_date": "2013-05-30", "popularity": 1.54658490381795, "original_title": "After Earth", "budget": 130000000, "cast": [{"name": "Jaden Smith", "character": "Kitai Raige", "id": 120724, "credit_id": "52fe486f9251416c9108c5df", "cast_id": 11, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 0}, {"name": "Will Smith", "character": "Cypher Raige", "id": 2888, "credit_id": "52fe486f9251416c9108c5db", "cast_id": 10, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Sophie Okonedo", "character": "Faia Raige", "id": 2598, "credit_id": "52fe486f9251416c9108c5e3", "cast_id": 13, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 2}, {"name": "Zo\u00eb Kravitz", "character": "Senshi Raige", "id": 37153, "credit_id": "52fe486f9251416c9108c5e7", "cast_id": 14, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 3}, {"name": "Glenn Morshower", "character": "Commander Velan", "id": 12797, "credit_id": "52fe486f9251416c9108c5f7", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 4}, {"name": "Chris Geere", "character": "Hesper Navigator", "id": 62879, "credit_id": "52fe486f9251416c9108c5fb", "cast_id": 19, "profile_path": "/hYSoo0SAwr5vfh0jHU82JdBmP6V.jpg", "order": 5}, {"name": "Diego Klattenhoff", "character": "Veteran Ranger", "id": 142193, "credit_id": "52fe486f9251416c9108c60b", "cast_id": 22, "profile_path": "/qGAmMLw289Q64Hyh7XFiDAFkmgP.jpg", "order": 6}, {"name": "David Denman", "character": "Private McQuarrie", "id": 62562, "credit_id": "52fe486f9251416c9108c60f", "cast_id": 23, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 7}, {"name": "Lincoln Lewis", "character": "Running Cadet", "id": 94798, "credit_id": "52fe486f9251416c9108c613", "cast_id": 24, "profile_path": "/lvvMmWd4Xx4FBDO6uXuLdLVGbHv.jpg", "order": 8}, {"name": "Jaden Martin", "character": "Nine Year Old Kitai", "id": 1272929, "credit_id": "52fe48709251416c9108c653", "cast_id": 35, "profile_path": "/6Zzr0M5HI2o2C1HNu32fnooTuPO.jpg", "order": 9}, {"name": "Sincere L. Bobb", "character": "Three Year Old Kitai", "id": 1272930, "credit_id": "52fe48709251416c9108c657", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Monika Jolly", "character": "Female Ranger", "id": 1172862, "credit_id": "52fe48709251416c9108c65b", "cast_id": 37, "profile_path": "/q7hYXbvCNIG84iM46pKaT21oY0Z.jpg", "order": 11}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe486f9251416c9108c5cb", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 5.1, "runtime": 100}, "189197": {"poster_path": "/x6hO6F06iurqTn9mQOqpil1ZMLL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A 10-part mini-series from the creators of \"Band of Brothers\" telling the intertwined stories of three Marines during America's battle with the Japanese in the Pacific during World War II.", "video": false, "id": 189197, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Pacific", "tagline": "Hell was an ocean away", "vote_count": 70, "homepage": "http://www.hbo.com/the-pacific/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0374463", "adult": false, "backdrop_path": "/32GowkMyVzern686fLpr3QErWLS.jpg", "production_companies": [{"name": "HBO", "id": 6068}, {"name": "Playtone", "id": 4171}, {"name": "DreamWorks Television", "id": 15258}], "release_date": "2010-05-16", "popularity": 0.271705140127424, "original_title": "The Pacific", "budget": 200, "cast": [{"name": "James Badge Dale", "character": "PFC Robert Leckie (10 episodes, 2010)", "id": 18473, "credit_id": "52fe4d529251416c75137549", "cast_id": 1, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 0}, {"name": "Joseph Mazzello", "character": "PFC Eugene Sledge (10 episodes, 2010)", "id": 4787, "credit_id": "52fe4d529251416c7513754d", "cast_id": 2, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 1}, {"name": "Jon Seda", "character": "Sgt. John Basilone (10 episodes, 2010)", "id": 288, "credit_id": "52fe4d529251416c75137551", "cast_id": 3, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 2}, {"name": "Ashton Holmes", "character": "PFC Sidney Phillips / ... (7 episodes, 2010)", "id": 225, "credit_id": "52fe4d529251416c75137555", "cast_id": 4, "profile_path": "/glpPD22Zk2b7bGSOAFoy9ucPDmj.jpg", "order": 3}, {"name": "William Sadler", "character": "Lt. Col. Lewis \"Chesty\" Puller", "id": 6573, "credit_id": "52fe4d529251416c751375bf", "cast_id": 23, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 4}, {"name": "Jon Bernthal", "character": "Sgt. Manuel \"Manny\" Rodriguez", "id": 19498, "credit_id": "52fe4d529251416c751375c3", "cast_id": 24, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 5}, {"name": "Jacob Pitts", "character": "PFC Bill \"Hoosier\" Smith", "id": 54414, "credit_id": "52fe4d529251416c751375c7", "cast_id": 25, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 6}, {"name": "Rami Malek", "character": "Cpl. Merriell \"Snafu\" Shelton", "id": 17838, "credit_id": "52fe4d529251416c751375cb", "cast_id": 26, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 7}, {"name": "Brendan Fletcher", "character": "PFC Bill Leyden", "id": 32205, "credit_id": "52fe4d529251416c751375cf", "cast_id": 27, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 8}, {"name": "Caroline Dhavernas", "character": "Vera Keller", "id": 31383, "credit_id": "52fe4d529251416c751375d3", "cast_id": 28, "profile_path": "/nLj1IbeBb3aYPcfJKMuE0JHzhcy.jpg", "order": 9}, {"name": "Annie Parisse", "character": "Sgt. Lena Mae Riggi Basilone", "id": 24291, "credit_id": "52fe4d529251416c751375d7", "cast_id": 29, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 10}, {"name": "Anna Torv", "character": "Virginia Grey", "id": 30084, "credit_id": "52fe4d529251416c751375db", "cast_id": 30, "profile_path": "/l7jHZN4WGPkYQF2iIt0q5APpj59.jpg", "order": 11}, {"name": "Claire van der Boom", "character": "Stella", "id": 114843, "credit_id": "52fe4d529251416c751375df", "cast_id": 31, "profile_path": "/eFzAtHtXI8tfqucv5QkwH0W14bQ.jpg", "order": 12}, {"name": "Isabel Lucas", "character": "Gwen", "id": 103554, "credit_id": "52fe4d529251416c751375e3", "cast_id": 32, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 13}, {"name": "Matt Craven", "character": "Dr. Grant", "id": 13525, "credit_id": "52fe4d529251416c751375e7", "cast_id": 33, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 14}], "directors": [{"name": "Jeremy Podeswa", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c7513755b", "profile_path": "/fdzF8YFdXRh4iwwlO0kpsFn6QIY.jpg", "id": 88391}, {"name": "Tim Van Patten", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137561", "profile_path": null, "id": 44797}, {"name": "David Nutter", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137567", "profile_path": null, "id": 33316}, {"name": "Graham Yost", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c7513756d", "profile_path": "/l0tZHqHwvLZkd5uipumPQ0I2ucC.jpg", "id": 21206}, {"name": "Carl Franklin", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137573", "profile_path": "/qNFOzZb4kFqkg6wiSfHtVvRzLLa.jpg", "id": 21712}, {"name": "Tony To", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137579", "profile_path": null, "id": 166291}], "vote_average": 7.7, "runtime": 540}, "782": {"poster_path": "/gZmIxR0qfaTj0sIvfAWqgqOOeVa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12532777, "overview": "Science fiction drama about a future society in the era of indefinite eugenics where humans are set on a life course depending on their DNA. The young Vincent Freeman is born with a condition that would prevent him from space travel, yet he is determined to infiltrate the GATTACA space program.", "video": false, "id": 782, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Gattaca", "tagline": "There is no gene for the human spirit.", "vote_count": 558, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "eo", "name": ""}], "imdb_id": "tt0119177", "adult": false, "backdrop_path": "/yBYmjAKALazmQ1vN6OokOv7s5nh.jpg", "production_companies": [{"name": "Jersey Films", "id": 216}, {"name": "Columbia Pictures", "id": 5}], "release_date": "1997-10-23", "popularity": 1.1121348051438, "original_title": "Gattaca", "budget": 36000000, "cast": [{"name": "Ethan Hawke", "character": "Vincent Freeman", "id": 569, "credit_id": "52fe4275c3a36847f8020579", "cast_id": 7, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Jude Law", "character": "Jerome Eugene Morrow", "id": 9642, "credit_id": "52fe4275c3a36847f8020581", "cast_id": 9, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Gore Vidal", "character": "Director Josef", "id": 11626, "credit_id": "52fe4275c3a36847f8020585", "cast_id": 10, "profile_path": "/A7BWeghsZ6SEvaBtaZaomR4UfW.jpg", "order": 2}, {"name": "Uma Thurman", "character": "Irene Cassini", "id": 139, "credit_id": "52fe4275c3a36847f802057d", "cast_id": 8, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Detective Hugo", "id": 1903, "credit_id": "52fe4275c3a36847f8020589", "cast_id": 11, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Xander Berkeley", "character": "Dr. Lamar", "id": 3982, "credit_id": "52fe4275c3a36847f802058d", "cast_id": 12, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 5}, {"name": "Jayne Brook", "character": "Marie Freeman", "id": 11627, "credit_id": "52fe4275c3a36847f8020591", "cast_id": 13, "profile_path": "/adrS4ZwaRgXpnJpV2U7uiFU9Cmd.jpg", "order": 6}, {"name": "William Lee Scott", "character": "Young Anton Freeman", "id": 10128, "credit_id": "52fe4275c3a36847f8020595", "cast_id": 14, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 7}, {"name": "Loren Dean", "character": "Adult Anton Freeman", "id": 11628, "credit_id": "52fe4275c3a36847f8020599", "cast_id": 15, "profile_path": "/wmRzRes0gXtlhcmkYDeLjxD1Xjq.jpg", "order": 8}, {"name": "Ernest Borgnine", "character": "Caesar", "id": 7502, "credit_id": "52fe4275c3a36847f802059d", "cast_id": 16, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 9}, {"name": "Tony Shalhoub", "character": "\"German\"", "id": 4252, "credit_id": "52fe4275c3a36847f80205a1", "cast_id": 17, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 10}, {"name": "Una Damon", "character": "Head Nurse", "id": 154644, "credit_id": "52fe4275c3a36847f80205a5", "cast_id": 18, "profile_path": "/d3dcUIwjXY0mH6QplM98L8fswzA.jpg", "order": 11}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe4275c3a36847f8020557", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 7.2, "runtime": 106}, "783": {"poster_path": "/2z9A4FSu1YySrhhcuqkdMIXpgyN.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IN", "name": "India"}], "revenue": 77737889, "overview": "In 1893, Gandhi is thrown off a South African train for being an Indian and traveling in a first class compartment. Gandhi realizes that the laws are biased against Indians and decides to start a non-violent protest campaign for the rights of all Indians in South Africa. After numerous arrests and the unwanted attention of the world, the government finally relents by recognizing rights for Indians, though not for the native blacks of South Africa. After this victory, Gandhi is invited back to India, where he is now considered something of a national hero. He is urged to take up the fight for India's independence from the British Empire. Gandhi agrees, and mounts a non-violent non-cooperation campaign of unprecedented scale, coordinating millions of Indians nationwide. There are some setbacks, such as violence against the protesters and Gandhi's occasional imprisonment. Nevertheless...", "video": false, "id": 783, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Gandhi", "tagline": "His Triumph Changed The World Forever.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083987", "adult": false, "backdrop_path": "/yN4mQzPthU1l3PQWxYhzWKargL5.jpg", "production_companies": [{"name": "International Film Investors", "id": 502}, {"name": "National Film Development Corporation of India", "id": 503}, {"name": "Goldcrest Films International", "id": 500}, {"name": "Indo-British", "id": 501}, {"name": "Carolina Bank", "id": 504}], "release_date": "1982-11-30", "popularity": 0.409021136796749, "original_title": "Gandhi", "budget": 22000000, "cast": [{"name": "Ben Kingsley", "character": "Mahatma Gandhi", "id": 2282, "credit_id": "52fe4275c3a36847f8020621", "cast_id": 7, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 0}, {"name": "Rohini Hattangadi", "character": "Kasturba Gandhi", "id": 11849, "credit_id": "52fe4275c3a36847f8020625", "cast_id": 8, "profile_path": "/w1EqXVtxige0wmMa8kk2eK9C9NT.jpg", "order": 1}, {"name": "Candice Bergen", "character": "Margaret Bourke-White", "id": 11850, "credit_id": "52fe4275c3a36847f8020629", "cast_id": 9, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 2}, {"name": "Roshan Seth", "character": "Pandit Nehru", "id": 693, "credit_id": "52fe4275c3a36847f802062d", "cast_id": 10, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 3}, {"name": "Om Puri", "character": "Nahari", "id": 11851, "credit_id": "52fe4275c3a36847f8020631", "cast_id": 11, "profile_path": "/omm9W5Ae1uwccnLPeVB5PWqh0ix.jpg", "order": 4}, {"name": "Saeed Jaffrey", "character": "Sardar Vallabhbhai Patel", "id": 11852, "credit_id": "52fe4275c3a36847f8020635", "cast_id": 12, "profile_path": "/nDSQCtZjVNqeOWG1QooKq2NkElb.jpg", "order": 5}, {"name": "Alyque Padamsee", "character": "Mohammad Ali Jinnah", "id": 11853, "credit_id": "52fe4275c3a36847f8020639", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Martin Sheen", "character": "Vince Walker", "id": 8349, "credit_id": "52fe4275c3a36847f802063d", "cast_id": 14, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 7}, {"name": "Amrish Puri", "character": "Khan", "id": 691, "credit_id": "52fe4275c3a36847f8020641", "cast_id": 15, "profile_path": "/9WsIjfAyhYgkT4Nvbffn98NLvio.jpg", "order": 8}, {"name": "Ian Charleson", "character": "Reverend Charlie Andrews", "id": 11854, "credit_id": "52fe4275c3a36847f8020645", "cast_id": 16, "profile_path": "/rQXBpZDKYUxaCxVN6rMYzW5m2cI.jpg", "order": 9}, {"name": "Edward Fox", "character": "General Dyer", "id": 9126, "credit_id": "52fe4275c3a36847f8020649", "cast_id": 17, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 10}, {"name": "Geraldine James", "character": "Mirabehn", "id": 11855, "credit_id": "52fe4275c3a36847f802064d", "cast_id": 18, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 11}, {"name": "Daniel Day-Lewis", "character": "Colin", "id": 11856, "credit_id": "52fe4275c3a36847f8020651", "cast_id": 19, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 12}, {"name": "John Gielgud", "character": "Lord Irwin", "id": 11857, "credit_id": "52fe4275c3a36847f8020655", "cast_id": 20, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 13}, {"name": "Trevor Howard", "character": "Judge Broomfield", "id": 12726, "credit_id": "52fe4275c3a36847f8020659", "cast_id": 21, "profile_path": "/drj1FPryhAimWCiufEnMLzUxpBQ.jpg", "order": 14}, {"name": "John Mills", "character": "Lord Chelmsford", "id": 11859, "credit_id": "52fe4276c3a36847f802065d", "cast_id": 22, "profile_path": "/5MiJRQj6irdxqCtAhX00YWqmGjZ.jpg", "order": 15}, {"name": "Athol Fugard", "character": "General Jan Christiaan Smuts", "id": 11860, "credit_id": "52fe4276c3a36847f8020661", "cast_id": 23, "profile_path": "/5Ig083fp2F4QG3BXsAaPwLle0QY.jpg", "order": 16}, {"name": "Dalip Tahil", "character": "Zia", "id": 11861, "credit_id": "52fe4276c3a36847f8020665", "cast_id": 24, "profile_path": "/gEJ9KxcMBnrrRpl9NHJ0eIktHlu.jpg", "order": 17}, {"name": "G\u00fcnther Maria Halmer", "character": "Dr. Herman Kallenbach", "id": 2344, "credit_id": "52fe4276c3a36847f8020669", "cast_id": 25, "profile_path": "/skOeHeqcRKfMXoxgf96JBhcjlz1.jpg", "order": 18}, {"name": "Shreeram Lagoo", "character": "Gopal Krishna Gokhale", "id": 110723, "credit_id": "52fe4276c3a36847f8020697", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Terrence Hardiman", "character": "Ramsay MacDonald", "id": 139444, "credit_id": "52fe4276c3a36847f802069b", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "David Grant", "character": "Daniels", "id": 1037720, "credit_id": "52fe4276c3a36847f802069f", "cast_id": 35, "profile_path": "/eEb0jqvElciRyfjs4rGSgD32efX.jpg", "order": 21}], "directors": [{"name": "Richard Attenborough", "department": "Directing", "job": "Director", "credit_id": "52fe4275c3a36847f80205ff", "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "id": 4786}], "vote_average": 6.9, "runtime": 191}, "8976": {"poster_path": "/anrhVr6lZqesL1HDgmX06Oo86R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42886719, "overview": "On a flight from Los Angeles to New York, Oliver and Emily make a connection, only to decide that they are poorly suited to be together. Over the next seven years, however, they are reunited time and time again, they go from being acquaintances to close friends to ... lovers?", "video": false, "id": 8976, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Lot Like Love", "tagline": "There's nothing better than a great romance... to ruin a perfectly good friendship.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0391304", "adult": false, "backdrop_path": "/hTxT3nuM1yOOC6DZM1voRgVwiDP.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Mile High Productions", "id": 2976}, {"name": "Kevin Messick Productions", "id": 2977}], "release_date": "2005-04-22", "popularity": 0.750371162960336, "original_title": "A Lot Like Love", "budget": 30000000, "cast": [{"name": "Ashton Kutcher", "character": "Oliver Martin", "id": 18976, "credit_id": "52fe44cdc3a36847f80aae41", "cast_id": 8, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Amanda Peet", "character": "Emily Friehl", "id": 2956, "credit_id": "52fe44cdc3a36847f80aae45", "cast_id": 9, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 1}, {"name": "Aimee Garcia", "character": "Nicole", "id": 56457, "credit_id": "52fe44cdc3a36847f80aae37", "cast_id": 5, "profile_path": "/lkXrwXShVpGhSTxGunNwJkkO84l.jpg", "order": 2}, {"name": "Taryn Manning", "character": "Ellen Martin", "id": 343, "credit_id": "52fe44cdc3a36847f80aae61", "cast_id": 15, "profile_path": "/vgLUb0mjZqJsDCnZZ3I9VKeyo9J.jpg", "order": 3}, {"name": "Ali Larter", "character": "Gina", "id": 17303, "credit_id": "52fe44cdc3a36847f80aae65", "cast_id": 16, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Michelle", "id": 17696, "credit_id": "52fe44cdc3a36847f80aae69", "cast_id": 17, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Kal Penn", "character": "Jeeter", "id": 53493, "credit_id": "52fe44cdc3a36847f80aae6d", "cast_id": 18, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 6}, {"name": "Gabriel Mann", "character": "Peter", "id": 32458, "credit_id": "52fe44cdc3a36847f80aae71", "cast_id": 19, "profile_path": "/bv6zwRM5pKaETM3XdnLe7JFzVVI.jpg", "order": 7}, {"name": "Jeremy Sisto", "character": "Ben Miller", "id": 23958, "credit_id": "52fe44cdc3a36847f80aae75", "cast_id": 20, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 8}, {"name": "Moon Bloodgood", "character": "Bridget", "id": 56455, "credit_id": "52fe44cdc3a36847f80aae79", "cast_id": 21, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 9}, {"name": "Holmes Osborne", "character": "Stephen Martin", "id": 1578, "credit_id": "52fe44cdc3a36847f80aae7d", "cast_id": 22, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 10}, {"name": "Lee Garlington", "character": "Stewardess", "id": 23975, "credit_id": "52fe44cdc3a36847f80aae81", "cast_id": 23, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 11}, {"name": "Sarah Ann Morris", "character": "Bartender", "id": 163439, "credit_id": "52fe44cdc3a36847f80aae85", "cast_id": 24, "profile_path": "/6hz0r8eZ96O4jmQ3UrZXt53eQ1t.jpg", "order": 12}], "directors": [{"name": "Nigel Cole", "department": "Directing", "job": "Director", "credit_id": "52fe44cdc3a36847f80aae5d", "profile_path": "/2CIcwfX3zzzTYqUPUQzKdnUgQl7.jpg", "id": 24248}], "vote_average": 6.4, "runtime": 107}, "786": {"poster_path": "/7BSnNxf9UMn0oUOT742ZEcXLZzF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47383689, "overview": "Almost Famous is an autobiographical inspired film about a 15-year-old who is hired by Rolling Stone magazine to follow and interview a rock band during their tour. A film about growing up, first love, disappointment, and the life of a rock star.", "video": false, "id": 786, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Almost Famous", "tagline": "Experience it. Enjoy it. Just don't fall for it.", "vote_count": 210, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181875", "adult": false, "backdrop_path": "/gZwhqo1CfYKAqTRUmnyxQw8U8Ti.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Vinyl Films", "id": 485}], "release_date": "2000-09-15", "popularity": 0.686812401439949, "original_title": "Almost Famous", "budget": 60000000, "cast": [{"name": "Kate Hudson", "character": "Penny Lane", "id": 11661, "credit_id": "52fe4276c3a36847f80207db", "cast_id": 14, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Billy Crudup", "character": "Russell Hammond", "id": 8289, "credit_id": "52fe4276c3a36847f80207df", "cast_id": 15, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 1}, {"name": "Frances McDormand", "character": "Elaine Miller", "id": 3910, "credit_id": "52fe4276c3a36847f80207e3", "cast_id": 16, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 2}, {"name": "Jason Lee", "character": "Jeff Bebe", "id": 11662, "credit_id": "52fe4276c3a36847f80207e7", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 3}, {"name": "Patrick Fugit", "character": "William Miller", "id": 11663, "credit_id": "52fe4276c3a36847f80207eb", "cast_id": 18, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 4}, {"name": "Zooey Deschanel", "character": "Anita Miller", "id": 11664, "credit_id": "52fe4276c3a36847f80207ef", "cast_id": 19, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 5}, {"name": "Michael Angarano", "character": "Young William", "id": 11665, "credit_id": "52fe4276c3a36847f80207f3", "cast_id": 20, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 6}, {"name": "Anna Paquin", "character": "Polexia Aphrodisia", "id": 10690, "credit_id": "52fe4276c3a36847f802080d", "cast_id": 46, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 7}, {"name": "Fairuza Balk", "character": "Sapphire", "id": 826, "credit_id": "52fe4276c3a36847f8020811", "cast_id": 47, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 8}, {"name": "Noah Taylor", "character": "Dick Roswell", "id": 1284, "credit_id": "52fe4276c3a36847f8020815", "cast_id": 48, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 9}, {"name": "Philip Seymour Hoffman", "character": "Lester Bangs", "id": 1233, "credit_id": "52fe4276c3a36847f8020809", "cast_id": 45, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 10}, {"name": "Jimmy Fallon", "character": "Dennis Hope", "id": 11669, "credit_id": "52fe4276c3a36847f8020819", "cast_id": 49, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 11}, {"name": "Rainn Wilson", "character": "David Felton", "id": 11678, "credit_id": "52fe4276c3a36847f802081d", "cast_id": 50, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 12}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe4276c3a36847f802078f", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 7.0, "runtime": 164}, "205587": {"poster_path": "/hNnecAVTBdtNXoSdhDXIPKm0SVu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83719388, "overview": "A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.", "video": false, "id": 205587, "genres": [{"id": 18, "name": "Drama"}], "title": "The Judge", "tagline": "Defend your Honor.", "vote_count": 394, "homepage": "http://thejudgemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1872194", "adult": false, "backdrop_path": "/qzIu5zbI190k6BHbYgaQA93IZ9K.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros.", "id": 6194}, {"name": "Big Kid Pictures", "id": 8406}, {"name": "Team Downey", "id": 27467}], "release_date": "2014-10-10", "popularity": 4.12274423408544, "original_title": "The Judge", "budget": 50000000, "cast": [{"name": "Robert Downey Jr.", "character": "Henry \"Hank\" Palmer", "id": 3223, "credit_id": "52fe4d0bc3a368484e1d40e9", "cast_id": 2, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Judge Joseph \"Joe\" Palmer", "id": 3087, "credit_id": "53a377510e0a2667cd0000ec", "cast_id": 9, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Samantha \"Sam\" Powell", "id": 21657, "credit_id": "52fe4d0bc3a368484e1d40f1", "cast_id": 4, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Glen Palmer", "id": 7132, "credit_id": "52fe4d0bc3a368484e1d40f5", "cast_id": 5, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "Jeremy Strong", "character": "Dale Palmer", "id": 239271, "credit_id": "541336010e0a264f48000353", "cast_id": 12, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 4}, {"name": "Billy Bob Thornton", "character": "Dwight Dickham", "id": 879, "credit_id": "53a377610e0a2667cd0000ef", "cast_id": 10, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 5}, {"name": "Sarah Lancaster", "character": "Lisa Palmer", "id": 81217, "credit_id": "541336450e0a264f34000385", "cast_id": 13, "profile_path": "/3eVRyNROorM3wTNp6kvimi9AfYA.jpg", "order": 6}, {"name": "David Krumholtz", "character": "Mike Kattan", "id": 38582, "credit_id": "52fe4d0bc3a368484e1d40f9", "cast_id": 6, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 7}, {"name": "Emma Tremblay", "character": "Lauren Palmer", "id": 1272862, "credit_id": "52fe4d0bc3a368484e1d40fd", "cast_id": 7, "profile_path": "/p6sRtFi1cNmR2qOXWX6buzDTFIr.jpg", "order": 8}, {"name": "Ken Howard", "character": "Judge Warren", "id": 18328, "credit_id": "541336abc3a3687da5000365", "cast_id": 14, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 9}, {"name": "Leighton Meester", "character": "Carla Powell", "id": 85825, "credit_id": "52fe4d0bc3a368484e1d40ed", "cast_id": 3, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 10}, {"name": "Balthazar Getty", "character": "Deputy Hanson", "id": 9296, "credit_id": "541336e00e0a264f40000334", "cast_id": 15, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 11}, {"name": "Grace Zabriskie", "character": "Mrs. Blackwell", "id": 6465, "credit_id": "541337000e0a264f3d000399", "cast_id": 16, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 12}, {"name": "Dax Shepard", "character": "C.P. Kennedy", "id": 51298, "credit_id": "54aaf3dbc3a3680c30007b75", "cast_id": 27, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 14}, {"name": "Denis O'Hare", "character": "Doc Morris", "id": 81681, "credit_id": "54aafca8c3a368077b005357", "cast_id": 28, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 15}, {"name": "Ian Nelson", "character": "Eric Palmer", "id": 1348957, "credit_id": "54de8dd3925141194b0024f9", "cast_id": 38, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 16}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe4d0bc3a368484e1d40e5", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 7.3, "runtime": 141}, "788": {"poster_path": "/eSz8308woe6oLyDu7UkrLK5gZDi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 441286195, "overview": "Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as an English nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.", "video": false, "id": 788, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Mrs. Doubtfire", "tagline": "She makes dinner. She does windows. She reads bedtime stories. She's a blessing... in disguise.", "vote_count": 315, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107614", "adult": false, "backdrop_path": "/qNsWEoqmGPJJk9c0orgycftzRQi.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1993-11-24", "popularity": 1.12207151821033, "original_title": "Mrs. Doubtfire", "budget": 25000000, "cast": [{"name": "Robin Williams", "character": "Daniel Hillard / Mrs. Doubtfire", "id": 2157, "credit_id": "52fe4276c3a36847f80209bb", "cast_id": 20, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Sally Field", "character": "Miranda Hillard", "id": 35, "credit_id": "52fe4276c3a36847f80209bf", "cast_id": 21, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "Pierce Brosnan", "character": "Stuart Dunmeyer", "id": 517, "credit_id": "52fe4276c3a36847f80209c3", "cast_id": 22, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 2}, {"name": "Harvey Fierstein", "character": "Uncle Frank Hillard", "id": 7420, "credit_id": "52fe4276c3a36847f80209c7", "cast_id": 23, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 3}, {"name": "Polly Holliday", "character": "Gloria Chaney", "id": 11715, "credit_id": "52fe4276c3a36847f80209cb", "cast_id": 24, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 4}, {"name": "Lisa Jakub", "character": "Lydia Hillard", "id": 8987, "credit_id": "52fe4276c3a36847f80209cf", "cast_id": 25, "profile_path": "/1iw0l7zewS6L1FzQCKJTHu5Eg0e.jpg", "order": 5}, {"name": "Matthew Lawrence", "character": "Christopher Hillard", "id": 11716, "credit_id": "52fe4276c3a36847f80209d3", "cast_id": 26, "profile_path": "/5FstHTIRe51bkmga1cWGRB7vFMc.jpg", "order": 6}, {"name": "Mara Wilson", "character": "Natalie Hillard", "id": 11717, "credit_id": "52fe4276c3a36847f80209d7", "cast_id": 27, "profile_path": "/lVfLBgPMUFcRd0eSF09dDW34nKH.jpg", "order": 7}, {"name": "Robert Prosky", "character": "Jonathan Lundy", "id": 10360, "credit_id": "52fe4276c3a36847f80209db", "cast_id": 28, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 8}, {"name": "Anne Haney", "character": "Mrs. Sellner, The Social Worker", "id": 11718, "credit_id": "52fe4276c3a36847f80209df", "cast_id": 29, "profile_path": "/2kajFAcj6bYevLdh0gwUQ6inDJN.jpg", "order": 9}, {"name": "Scott Capurro", "character": "Aunt Jack Hillard", "id": 11719, "credit_id": "52fe4276c3a36847f80209e3", "cast_id": 30, "profile_path": "/gBpjitYCEs0YapiNCDB2K8GyXMC.jpg", "order": 10}, {"name": "Sydney Walker", "character": "Bus Driver", "id": 27447, "credit_id": "52fe4276c3a36847f80209e7", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Martin Mull", "character": "Justin Gregory", "id": 80742, "credit_id": "52fe4276c3a36847f80209eb", "cast_id": 32, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 12}, {"name": "Terence McGovern", "character": "A.D.R. Director Lou", "id": 162323, "credit_id": "52fe4276c3a36847f80209ef", "cast_id": 33, "profile_path": "/yO86kO0EFrBIOHJWTx6RkeH9DEE.jpg", "order": 13}, {"name": "Karen Kahn", "character": "Female Employee #1", "id": 1006368, "credit_id": "52fe4276c3a36847f80209f3", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Eva Gholson", "character": "Female Employee #2", "id": 1077864, "credit_id": "52fe4276c3a36847f80209f7", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "James Cunningham", "character": "Male Employee", "id": 167122, "credit_id": "52fe4276c3a36847f80209fb", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Ralph Peduto", "character": "Cop", "id": 197036, "credit_id": "52fe4276c3a36847f80209ff", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Scott Beach", "character": "Judge", "id": 3044, "credit_id": "52fe4276c3a36847f8020a03", "cast_id": 38, "profile_path": "/gkt4TpoRR75eTddsny3Qvofe6TY.jpg", "order": 18}, {"name": "Juliette Marshall", "character": "Miranda's Attorney", "id": 178148, "credit_id": "52fe4276c3a36847f8020a07", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Drew Letchworth", "character": "Daniel's Attorney", "id": 156192, "credit_id": "52fe4276c3a36847f8020a0b", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Jessica Myerson", "character": "Miranda's Mother", "id": 153546, "credit_id": "52fe4276c3a36847f8020a0f", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Sharon Lockwood", "character": "Alice", "id": 1077865, "credit_id": "52fe4276c3a36847f8020a13", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Jim Cullen", "character": "Thug", "id": 1077866, "credit_id": "52fe4276c3a36847f8020a17", "cast_id": 43, "profile_path": null, "order": 23}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4276c3a36847f802094b", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.8, "runtime": 125}, "792": {"poster_path": "/sYPOQI57JVNmjiLI3KeZ5KA8O9i.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138530565, "overview": "Chris Taylor, a young, naive recruit in Vietnam, faces a moral crisis when confronted with the horrors of war and the duality of man.", "video": false, "id": 792, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Platoon", "tagline": "The first casualty of war is innocence.", "vote_count": 342, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0091763", "adult": false, "backdrop_path": "/ufqPsRItWyFzdFz3MevDkxRF8pT.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}, {"name": "Hemdale Film Corporation", "id": 469}], "release_date": "1986-12-18", "popularity": 1.36075048422651, "original_title": "Platoon", "budget": 6000000, "cast": [{"name": "Tom Berenger", "character": "Sgt. Bob Barnes", "id": 13022, "credit_id": "52fe4277c3a36847f8020d47", "cast_id": 36, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 0}, {"name": "Charlie Sheen", "character": "Pvt. Chris Taylor", "id": 6952, "credit_id": "52fe4277c3a36847f8020d1b", "cast_id": 15, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Sgt. Elias Grodin", "id": 5293, "credit_id": "52fe4277c3a36847f8020d1f", "cast_id": 16, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Forest Whitaker", "character": "Big Harold", "id": 2178, "credit_id": "52fe4277c3a36847f8020d23", "cast_id": 17, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 3}, {"name": "John C. McGinley", "character": "Sgt. Red O'Neill", "id": 11885, "credit_id": "52fe4277c3a36847f8020d2b", "cast_id": 19, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 4}, {"name": "Kevin Dillon", "character": "Bunny", "id": 6863, "credit_id": "52fe4277c3a36847f8020d27", "cast_id": 18, "profile_path": "/cePW2pwfTv82du2glTNKklKldAf.jpg", "order": 5}, {"name": "Johnny Depp", "character": "Private Gator Lerner", "id": 85, "credit_id": "52fe4277c3a36847f8020d4b", "cast_id": 37, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 6}, {"name": "Francesco Quinn", "character": "Rhah", "id": 11886, "credit_id": "52fe4277c3a36847f8020d2f", "cast_id": 20, "profile_path": "/xTSSmTuRg2xu2fKnDYyvT0GqLD7.jpg", "order": 7}, {"name": "Richard Edson", "character": "Sal", "id": 6396, "credit_id": "52fe4277c3a36847f8020d33", "cast_id": 21, "profile_path": "/7YegwxrBppretnwGEEMxEI453Ef.jpg", "order": 8}, {"name": "Keith David", "character": "King", "id": 65827, "credit_id": "52fe4277c3a36847f8020d37", "cast_id": 23, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 9}, {"name": "Mark Moses", "character": "Lt. Wolfe", "id": 11889, "credit_id": "52fe4277c3a36847f8020d3b", "cast_id": 25, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 10}, {"name": "Chris Pedersen", "character": "Crawford", "id": 11890, "credit_id": "52fe4277c3a36847f8020d3f", "cast_id": 26, "profile_path": "/y8v3KTTxcuMFR7cKxGF3sJCEZ0W.jpg", "order": 11}, {"name": "Oliver Stone", "character": "Alpha Company major in bunker", "id": 1152, "credit_id": "52fe4277c3a36847f8020d43", "cast_id": 35, "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "order": 12}, {"name": "Corkey Ford", "character": "Manny", "id": 1447263, "credit_id": "55187893925141731c000135", "cast_id": 38, "profile_path": null, "order": 13}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020cc9", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 7.1, "runtime": 120}, "793": {"poster_path": "/yXvdmffa0o8zlxwBBcQki8y3Fdw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8551228, "overview": "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 criminals who have kidnapped her child.", "video": false, "id": 793, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Blue Velvet", "tagline": "It's a strange world.", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090756", "adult": false, "backdrop_path": "/5ESiCDqO1aMlELkk0vzqXIwOvGz.jpg", "production_companies": [{"name": "De Laurentiis Entertainment Group (DEG)", "id": 484}], "release_date": "1986-09-12", "popularity": 0.825073828988785, "original_title": "Blue Velvet", "budget": 6000000, "cast": [{"name": "Isabella Rossellini", "character": "Dorothy Vallens", "id": 6588, "credit_id": "52fe4277c3a36847f8020dc7", "cast_id": 12, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 0}, {"name": "Kyle MacLachlan", "character": "Jeffrey Beaumont", "id": 6677, "credit_id": "52fe4277c3a36847f8020dcb", "cast_id": 13, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "Frank Booth", "id": 2778, "credit_id": "52fe4277c3a36847f8020dcf", "cast_id": 14, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Laura Dern", "character": "Sandy Williams", "id": 4784, "credit_id": "52fe4277c3a36847f8020dd3", "cast_id": 15, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Hope Lange", "character": "Mrs. Williams", "id": 3382, "credit_id": "52fe4277c3a36847f8020dd7", "cast_id": 16, "profile_path": "/4gJtYaS4iAPBgTYVNIMlspAzGSA.jpg", "order": 4}, {"name": "Dean Stockwell", "character": "Ben", "id": 923, "credit_id": "52fe4277c3a36847f8020ddb", "cast_id": 17, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 5}, {"name": "George Dickerson", "character": "Det. John Williams", "id": 11792, "credit_id": "52fe4277c3a36847f8020ddf", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Priscilla Pointer", "character": "Mrs. Beaumont", "id": 11793, "credit_id": "52fe4277c3a36847f8020de3", "cast_id": 19, "profile_path": "/rmT7Qje6YBG180d1hlY6zQpZmfv.jpg", "order": 7}, {"name": "Frances Bay", "character": "Aunt Barbara", "id": 11794, "credit_id": "52fe4277c3a36847f8020de7", "cast_id": 20, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 8}, {"name": "Jack Harvey", "character": "Mr. Tom Beaumont", "id": 11795, "credit_id": "52fe4277c3a36847f8020deb", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Ken Stovitz", "character": "Mike", "id": 11796, "credit_id": "52fe4277c3a36847f8020def", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Brad Dourif", "character": "Raymond", "id": 1370, "credit_id": "52fe4277c3a36847f8020df3", "cast_id": 23, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 11}, {"name": "Jack Nance", "character": "Paul", "id": 6718, "credit_id": "52fe4277c3a36847f8020df7", "cast_id": 24, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 12}, {"name": "J. Michael Hunter", "character": "Hunter", "id": 11797, "credit_id": "52fe4277c3a36847f8020dfb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Selden Smith", "character": "Nurse Cindy", "id": 11798, "credit_id": "52fe4277c3a36847f8020dff", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020d87", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.3, "runtime": 120}, "794": {"poster_path": "/uY14zS4Sm2DdvFXeczFKgLgkQUP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesn\u2019t know is that their new son is the son of the devil. A classic horror film with Gregory Peck from 1976.", "video": false, "id": 794, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Omen", "tagline": "It is the greatest mystery of all because no human being will ever solve it.", "vote_count": 88, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5IqWSXMS2qb9wijTMbCHXK4ahXE.jpg", "id": 10919, "name": "The Omen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075005", "adult": false, "backdrop_path": "/zme4RH7DVdRSGrTk7bNvcGGywAW.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1976-06-25", "popularity": 0.264357829236421, "original_title": "The Omen", "budget": 2800000, "cast": [{"name": "Gregory Peck", "character": "Robert Thorn", "id": 8487, "credit_id": "52fe4277c3a36847f8020e9b", "cast_id": 13, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "Lee Remick", "character": "Katherine Thorn", "id": 855, "credit_id": "52fe4277c3a36847f8020e9f", "cast_id": 14, "profile_path": "/nxXQhtEeYJW4S7kN2RQmmoGDGIw.jpg", "order": 1}, {"name": "David Warner", "character": "Keith Jennings", "id": 2076, "credit_id": "52fe4277c3a36847f8020ea3", "cast_id": 15, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 2}, {"name": "Billie Whitelaw", "character": "Mrs. Baylock", "id": 8226, "credit_id": "52fe4277c3a36847f8020ea7", "cast_id": 16, "profile_path": "/5XSUS3oSuG2CtJQPiEBQd9AAmg4.jpg", "order": 3}, {"name": "Harvey Stephens", "character": "Damien", "id": 11839, "credit_id": "52fe4277c3a36847f8020eab", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Patrick Troughton", "character": "Father Brennan", "id": 11840, "credit_id": "52fe4277c3a36847f8020eaf", "cast_id": 18, "profile_path": "/bPVsEU75m475FcHh4lYfAeVEkmK.jpg", "order": 5}, {"name": "Martin Benson", "character": "Father Spiletto", "id": 9912, "credit_id": "52fe4277c3a36847f8020eb3", "cast_id": 19, "profile_path": "/x4AfPPRujgL6kfH8ObfefC7i9FY.jpg", "order": 6}, {"name": "Robert Rietti", "character": "Monk", "id": 11841, "credit_id": "52fe4277c3a36847f8020eb7", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tommy Duggan", "character": "Priest", "id": 11842, "credit_id": "52fe4277c3a36847f8020ebb", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "John Stride", "character": "Psychiatrist", "id": 11843, "credit_id": "52fe4277c3a36847f8020ebf", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Holly Palance", "character": "Young Nanny", "id": 11844, "credit_id": "52fe4277c3a36847f8020ec3", "cast_id": 23, "profile_path": "/sL81HKXDG8daUmNFz9skobjBHtV.jpg", "order": 10}, {"name": "Anthony Nicholls", "character": "Dr. Becker", "id": 25643, "credit_id": "52fe4277c3a36847f8020ec7", "cast_id": 24, "profile_path": "/xf6jPF6HeYW7qZCW2OAVqermnr7.jpg", "order": 11}, {"name": "Roy Boyd", "character": "Reporter", "id": 156387, "credit_id": "52fe4277c3a36847f8020ecb", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Sheila Raynor", "character": "Mrs. Horton", "id": 2276, "credit_id": "52fe4277c3a36847f8020ecf", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Robert MacLeod", "character": "Horton", "id": 117410, "credit_id": "52fe4277c3a36847f8020ed3", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Bruce Boa", "character": "Thorn's Aide", "id": 8664, "credit_id": "52fe4277c3a36847f8020ed7", "cast_id": 28, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 15}, {"name": "Don Fellows", "character": "Thorn's Second Aide", "id": 662, "credit_id": "52fe4277c3a36847f8020edb", "cast_id": 29, "profile_path": "/sQgCr3xz2LVomGMKCvb7rLD9dMX.jpg", "order": 16}, {"name": "Patrick McAlinney", "character": "Photographer", "id": 201489, "credit_id": "52fe4277c3a36847f8020edf", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Dawn Perllman", "character": "Chambermaid", "id": 1077927, "credit_id": "52fe4277c3a36847f8020ee3", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Nancy Mannigham", "character": "Nurse", "id": 1077928, "credit_id": "52fe4277c3a36847f8020ee7", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Miki Iveria", "character": "First Nun", "id": 1077929, "credit_id": "52fe4277c3a36847f8020eeb", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Betty McDowall", "character": "American Secretary", "id": 1006770, "credit_id": "52fe4277c3a36847f8020eef", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Nicholas Campbell", "character": "Marine", "id": 14902, "credit_id": "52fe4277c3a36847f8020ef3", "cast_id": 35, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 22}, {"name": "Burnell Tucker", "character": "Secret Service Man", "id": 184980, "credit_id": "52fe4277c3a36847f8020ef7", "cast_id": 36, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 23}, {"name": "Ronald Leigh-Hunt", "character": "Gentleman at Rugby Match", "id": 29872, "credit_id": "52fe4277c3a36847f8020efb", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Guglielmo Spoletini", "character": "Italian Taxi Driver", "id": 589558, "credit_id": "52fe4277c3a36847f8020eff", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Ya'ackov Banai", "character": "Arab", "id": 583498, "credit_id": "52fe4277c3a36847f8020f03", "cast_id": 39, "profile_path": null, "order": 26}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020e55", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.9, "runtime": 111}, "795": {"poster_path": "/dMvup91Svpns2SfCtZ4jiSFiouV.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 198685114, "overview": "When guardian angel Seth -- who invisibly watches over the citizens of Los Angeles -- becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.", "video": false, "id": 795, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "City of Angels", "tagline": "She didn't believe in angels until she fell in love with one.", "vote_count": 152, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120632", "adult": false, "backdrop_path": "/1TcaKTQexv6m38k1t1Vfimco3dK.jpg", "production_companies": [{"name": "Atlas Entertainment", "id": 507}, {"name": "Monarchy Enterprises B.V.", "id": 676}, {"name": "Regency Enterprises", "id": 508}, {"name": "Taurus Film", "id": 20555}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1998-04-10", "popularity": 1.3480782890602, "original_title": "City of Angels", "budget": 55000000, "cast": [{"name": "Nicolas Cage", "character": "Seth", "id": 2963, "credit_id": "52fe4277c3a36847f8020f91", "cast_id": 14, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Maggie Rice", "id": 5344, "credit_id": "52fe4277c3a36847f8020f95", "cast_id": 15, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Andre Braugher", "character": "Cassiel", "id": 6861, "credit_id": "52fe4277c3a36847f8020f99", "cast_id": 16, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 2}, {"name": "Dennis Franz", "character": "Nathaniel Messinger", "id": 11901, "credit_id": "52fe4277c3a36847f8020f9d", "cast_id": 17, "profile_path": "/oigU88Mm2YVPvyLr6cf2PehJMjW.jpg", "order": 3}, {"name": "Colm Feore", "character": "Jordan", "id": 10132, "credit_id": "52fe4277c3a36847f8020fa1", "cast_id": 18, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 4}, {"name": "Robin Bartlett", "character": "Anne", "id": 11902, "credit_id": "52fe4277c3a36847f8020fa5", "cast_id": 19, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 5}, {"name": "Joanna Merlin", "character": "Teresa Messinger", "id": 11903, "credit_id": "52fe4277c3a36847f8020fa9", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Sarah Dampf", "character": "Susan", "id": 11911, "credit_id": "52fe4277c3a36847f8020fad", "cast_id": 21, "profile_path": "/osIf7YioqhddFpwfRkVK0MDun7K.jpg", "order": 7}, {"name": "Rhonda Dotson", "character": "Susan's Mother", "id": 11913, "credit_id": "52fe4277c3a36847f8020fb1", "cast_id": 22, "profile_path": "/yZZZJPGqLEA6VIXwiEemY55k3wp.jpg", "order": 8}, {"name": "Nigel Gibbs", "character": "Doctor", "id": 11915, "credit_id": "52fe4277c3a36847f8020fb5", "cast_id": 23, "profile_path": "/6AE4p72zOtpR9Q385eiwrPwGPaj.jpg", "order": 9}, {"name": "John Putch", "character": "Man in Car", "id": 21475, "credit_id": "52fe4277c3a36847f8020fbf", "cast_id": 25, "profile_path": "/9JBDOLXqdJiAvUOU0fO5bWnk292.jpg", "order": 10}, {"name": "Lauri Johnson", "character": "Woman in Car", "id": 66499, "credit_id": "52fe4277c3a36847f8020fc3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Christian Aubert", "character": "Foreign Visitor in Car", "id": 14740, "credit_id": "52fe4277c3a36847f8020fc7", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Jay Patterson", "character": "Air Traffic Controller", "id": 78789, "credit_id": "52fe4277c3a36847f8020fcb", "cast_id": 28, "profile_path": "/k6VNOcXw1QBm0jRteBUZfnyd9mj.jpg", "order": 13}, {"name": "Shishir Kurup", "character": "Jimmy, Anesthesiologist", "id": 111454, "credit_id": "52fe4277c3a36847f8020fcf", "cast_id": 29, "profile_path": "/nTlsmxRBLTduIvbCj9l5jvq2gXh.jpg", "order": 14}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020f45", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 6.3, "runtime": 114}, "205596": {"poster_path": "/noUp0XOqIcmgefRnRZa1nhtRvWO.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 219501092, "overview": "Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.", "video": false, "id": 205596, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "The Imitation Game", "tagline": "The true enigma was the man who cracked the code.", "vote_count": 952, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2084970", "adult": false, "backdrop_path": "/fii9tPZTpy75qOCJBulWOb0ifGp.jpg", "production_companies": [{"name": "Bristol Automotive", "id": 38145}, {"name": "Black Bear Pictures", "id": 22146}], "release_date": "2014-11-14", "popularity": 16.6976808300326, "original_title": "The Imitation Game", "budget": 14000000, "cast": [{"name": "Benedict Cumberbatch", "character": "Alan Turing", "id": 71580, "credit_id": "52fe4d0cc3a368484e1d4157", "cast_id": 2, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Joan Clarke", "id": 116, "credit_id": "52fe4d0cc3a368484e1d415b", "cast_id": 3, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Matthew Goode", "character": "Hugh Alexander", "id": 1247, "credit_id": "54519445c3a368023c005180", "cast_id": 10, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 2}, {"name": "Rory Kinnear", "character": "Nock", "id": 139549, "credit_id": "5363bfdbc3a368158d00277c", "cast_id": 5, "profile_path": "/wfBmg2FVEDQCCFnjiTC3lhg1THP.jpg", "order": 3}, {"name": "Allen Leech", "character": "John Cairncross", "id": 85718, "credit_id": "5363bfebc3a368159f002834", "cast_id": 7, "profile_path": "/ezLSwpml7IWGy4loLpDUwIZ7wM8.jpg", "order": 4}, {"name": "Matthew Beard", "character": "Peter Hilton", "id": 213394, "credit_id": "5363bff4c3a368157d00274b", "cast_id": 8, "profile_path": "/1Cbv1JWSg4RJ385OZrS3lnlo7eu.jpg", "order": 5}, {"name": "Charles Dance", "character": "Commander Denniston", "id": 4391, "credit_id": "5363bfe2c3a3681586002734", "cast_id": 6, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 6}, {"name": "Mark Strong", "character": "Stewart Menzies", "id": 2983, "credit_id": "5363bfd3c3a368159f00282f", "cast_id": 4, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 7}, {"name": "James Northcote", "character": "Jack Good", "id": 1362119, "credit_id": "545195c30e0a263a180051c9", "cast_id": 18, "profile_path": "/wuf9ARlVXPonmRN21WcYQtdSiOv.jpg", "order": 8}, {"name": "Tom Goodman-Hill", "character": "Sergeant Staehl", "id": 43034, "credit_id": "5451952ac3a368023c0051a2", "cast_id": 14, "profile_path": "/ryyyhVGZ9cHFQQbXu1A9Vh7DKv3.jpg", "order": 9}, {"name": "Steven Waddington", "character": "Supt Smith", "id": 27764, "credit_id": "545194b10e0a262d46002cdd", "cast_id": 12, "profile_path": "/wFZoh6mW51RK0kHs64OPndEa19q.jpg", "order": 10}, {"name": "Ilan Goodman", "character": "Keith Furman", "id": 1121975, "credit_id": "54519a8e0e0a263a0400561e", "cast_id": 44, "profile_path": "/bxI8JQgYTPqGofduTDR2LvC2RK2.jpg", "order": 11}, {"name": "Jack Tarlton", "character": "Charles Richards", "id": 1379286, "credit_id": "545198e1c3a3680239004fcf", "cast_id": 35, "profile_path": "/chsUR9caJQzBXYgz40Tf8fDukGr.jpg", "order": 12}, {"name": "Alex Lawther", "character": "Young Turing", "id": 1379277, "credit_id": "545196610e0a263a0400556e", "cast_id": 21, "profile_path": "/xQvzRnvhHVjhMqIlA6qYzvt3joh.jpg", "order": 13}, {"name": "Jack Bannon", "character": "Christopher Morcom", "id": 1449329, "credit_id": "551eeb09c3a3685ab40001d2", "cast_id": 110, "profile_path": "/m436jpgrrxmBTUdKSiWPsVRLxpW.jpg", "order": 14}, {"name": "Tuppence Middleton", "character": "Helen", "id": 89822, "credit_id": "545194650e0a263a0a005265", "cast_id": 11, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 15}, {"name": "Hayley Joanne Bacon", "character": "Woman in Crowd", "id": 1374337, "credit_id": "545194f0c3a3680236005103", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Hannah Flynn", "character": "Wren", "id": 1379275, "credit_id": "54519556c3a36802450050ef", "cast_id": 15, "profile_path": null, "order": 17}, {"name": "Matthew Beard", "character": "Peter Hilton", "id": 213394, "credit_id": "54519573c3a36802450050f5", "cast_id": 16, "profile_path": "/1Cbv1JWSg4RJ385OZrS3lnlo7eu.jpg", "order": 18}, {"name": "Ancuta Breaban", "character": "Wren", "id": 1374158, "credit_id": "545195990e0a263a0400555f", "cast_id": 17, "profile_path": null, "order": 20}, {"name": "Victoria Wicks", "character": "Joan's Mother", "id": 1221046, "credit_id": "545195f80e0a263a100053f3", "cast_id": 19, "profile_path": null, "order": 21}, {"name": "Bartosz Wandrykow", "character": "Crossword Enthusiast", "id": 1379276, "credit_id": "54519638c3a3680233004f16", "cast_id": 20, "profile_path": null, "order": 22}, {"name": "Leigh Dent", "character": "Passerby", "id": 1374338, "credit_id": "5451967ec3a368115900049c", "cast_id": 22, "profile_path": null, "order": 23}, {"name": "Grace Calder", "character": "Assistant Wren", "id": 1379278, "credit_id": "545196b10e0a262d46002d26", "cast_id": 23, "profile_path": null, "order": 24}, {"name": "Lese Asquith-Coe", "character": "MI-6 Agent", "id": 1379279, "credit_id": "545196e60e0a263a180051f6", "cast_id": 24, "profile_path": null, "order": 25}, {"name": "William Bowden", "character": "Military Policeman", "id": 1091936, "credit_id": "5451970c0e0a262d46002d3c", "cast_id": 25, "profile_path": null, "order": 26}, {"name": "Luke Hope", "character": "MI-6 Agent", "id": 1379280, "credit_id": "545197580e0a263a1000542e", "cast_id": 27, "profile_path": null, "order": 27}, {"name": "Alexander Cooper", "character": "Bletchley Park Agent", "id": 1379281, "credit_id": "5451978fc3a368532b005482", "cast_id": 28, "profile_path": null, "order": 28}, {"name": "Joseph Oliveira", "character": "Mai-6 Agent", "id": 1360008, "credit_id": "545197bdc3a368023600518a", "cast_id": 29, "profile_path": null, "order": 29}, {"name": "Joseph Oliveira", "character": "MI-6 Agent", "id": 1360008, "credit_id": "545197cec3a3680233004f60", "cast_id": 30, "profile_path": null, "order": 30}, {"name": "Guna Gultniece", "character": "Passerby", "id": 1379282, "credit_id": "5451981ac3a368022a005445", "cast_id": 31, "profile_path": null, "order": 31}, {"name": "Lauren Beacham", "character": "RAF Wren", "id": 1379283, "credit_id": "5451983ec3a36811590004cf", "cast_id": 32, "profile_path": null, "order": 32}, {"name": "Nicola-Jayne Wells", "character": "First Aid Nurse", "id": 1379284, "credit_id": "54519895c3a3680233004f84", "cast_id": 33, "profile_path": null, "order": 33}, {"name": "Esther Eden", "character": "WW2 Wren", "id": 1379285, "credit_id": "545198b70e0a263a1800523f", "cast_id": 34, "profile_path": null, "order": 34}, {"name": "Alex Corbet Burcher", "character": "Dancer", "id": 1379287, "credit_id": "5451990d0e0a263a1000547d", "cast_id": 36, "profile_path": null, "order": 35}, {"name": "Stuart Matthews", "character": "Bleiches Park Operative", "id": 1295992, "credit_id": "5451994bc3a36811590004f1", "cast_id": 37, "profile_path": null, "order": 36}, {"name": "Stuart Matthews", "character": "Bletchley Park Operative", "id": 1295992, "credit_id": "5451995fc3a36802360051c9", "cast_id": 38, "profile_path": null, "order": 37}, {"name": "Sam Exley", "character": "Military Policeman", "id": 1379288, "credit_id": "54519986c3a3680245005188", "cast_id": 39, "profile_path": null, "order": 38}, {"name": "Lisa Colquhoun", "character": "Joan Clarke's Friend", "id": 1379290, "credit_id": "545199c50e0a262d46002da3", "cast_id": 40, "profile_path": null, "order": 39}, {"name": "David G. Robinson", "character": "Police Sergeant White", "id": 1358943, "credit_id": "545199fe0e0a263a1800526b", "cast_id": 41, "profile_path": null, "order": 40}, {"name": "Charlie Manton", "character": "Bully", "id": 1379291, "credit_id": "54519a1c0e0a263a18005271", "cast_id": 42, "profile_path": null, "order": 41}, {"name": "David Charkham", "character": "Joan's Father", "id": 1330788, "credit_id": "54519a51c3a368022a005495", "cast_id": 43, "profile_path": null, "order": 42}, {"name": "Peter Brown", "character": "Navy Captain", "id": 7239, "credit_id": "54519ada0e0a2601d8005123", "cast_id": 45, "profile_path": null, "order": 43}, {"name": "Denis Koroshko", "character": "Civilian", "id": 1379292, "credit_id": "54519b080e0a263a0a00535c", "cast_id": 46, "profile_path": null, "order": 44}, {"name": "Richard Campbell", "character": "Crosswordman in Pub", "id": 1379293, "credit_id": "54519b3c0e0a263a04005634", "cast_id": 47, "profile_path": null, "order": 45}, {"name": "Ben Farrow", "character": "Military Policeman", "id": 1379295, "credit_id": "54519b670e0a263a100054d4", "cast_id": 48, "profile_path": null, "order": 46}, {"name": "Laurence Kennedy", "character": "Headmaster", "id": 25680, "credit_id": "54519b87c3a368022a0054c4", "cast_id": 49, "profile_path": null, "order": 47}, {"name": "John Redmann", "character": "Young Officer", "id": 1225115, "credit_id": "54519bb60e0a263a04005658", "cast_id": 50, "profile_path": null, "order": 48}, {"name": "Josh Wichard", "character": "German Pilot", "id": 1379301, "credit_id": "54519be7c3a3680239005048", "cast_id": 51, "profile_path": null, "order": 49}, {"name": "Ingrid Benussi", "character": "Dancer", "id": 1379302, "credit_id": "54519c030e0a263a180052ae", "cast_id": 52, "profile_path": null, "order": 50}, {"name": "Adam Nowell", "character": "Technician", "id": 1379303, "credit_id": "54519c3c0e0a262d46002df3", "cast_id": 53, "profile_path": null, "order": 51}, {"name": "Mike Firth", "character": "Crossword Enthusiast", "id": 1379304, "credit_id": "54519c690e0a263a100054ff", "cast_id": 54, "profile_path": null, "order": 52}, {"name": "Daniel Chapple", "character": "MI-6 Agent", "id": 1379305, "credit_id": "54519c8ec3a368115900058d", "cast_id": 55, "profile_path": null, "order": 53}, {"name": "Oscar Hatton", "character": "Evacuee", "id": 1379308, "credit_id": "54519cb40e0a262d46002e08", "cast_id": 56, "profile_path": null, "order": 54}, {"name": "Nicolas Blatt", "character": "Ministers Man", "id": 1379311, "credit_id": "54519ce20e0a263a1000550e", "cast_id": 57, "profile_path": null, "order": 55}, {"name": "Samantha Moran", "character": "Wren", "id": 1379312, "credit_id": "54519d09c3a368023300501c", "cast_id": 58, "profile_path": null, "order": 56}, {"name": "James G. Nunn", "character": "Bully", "id": 1379313, "credit_id": "54519d32c3a3680233005028", "cast_id": 59, "profile_path": null, "order": 57}, {"name": "Jack Brash", "character": "Evacuee", "id": 1379314, "credit_id": "54519d56c3a368022a005501", "cast_id": 60, "profile_path": null, "order": 58}, {"name": "Benjamin Hardie", "character": "Paperboy", "id": 1379315, "credit_id": "54519d780e0a263a1000552f", "cast_id": 61, "profile_path": null, "order": 59}, {"name": "Harry Leonard Parkinson", "character": "Evacuee", "id": 1379316, "credit_id": "54519da90e0a263a1000553e", "cast_id": 62, "profile_path": null, "order": 60}, {"name": "Amber-Rose May", "character": "Joan Clarke's Friend", "id": 1379317, "credit_id": "54519de90e0a262d46002e34", "cast_id": 63, "profile_path": null, "order": 61}, {"name": "Dominik Charman", "character": "Bully", "id": 1379318, "credit_id": "54519e0ec3a3680236005257", "cast_id": 64, "profile_path": null, "order": 62}, {"name": "James Gard", "character": "School Boy", "id": 1379319, "credit_id": "54519e2ec3a3680239005096", "cast_id": 65, "profile_path": null, "order": 63}, {"name": "Vincent Idearson", "character": "MI-6 Agent", "id": 1379320, "credit_id": "54519e530e0a2601d8005194", "cast_id": 66, "profile_path": null, "order": 64}, {"name": "Alice Tapfield", "character": "Wren", "id": 1379321, "credit_id": "54519e75c3a368023300504f", "cast_id": 67, "profile_path": null, "order": 65}], "directors": [{"name": "Morten Tyldum", "department": "Directing", "job": "Director", "credit_id": "52fe4d0cc3a368484e1d4153", "profile_path": "/Jjdf8X3cdW5TQebY7xwREkHCCk.jpg", "id": 77965}], "vote_average": 8.2, "runtime": 113}, "797": {"poster_path": "/cUJDnNgxfmsvHGlU19x740EyX5W.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A young nurse, Alma, is put in charge of Elisabeth Vogler: an actress who is seemingly healthy in all respects, but will not talk. As they spend time together, Alma speaks to Elisabeth constantly, never receiving any answer. Alma eventually confesses her secrets to a seemingly sympathetic Elisabeth and finds that her own personality is being submerged into Elisabeth's persona.", "video": false, "id": 797, "genres": [{"id": 18, "name": "Drama"}, {"id": 10769, "name": "Foreign"}], "title": "Persona", "tagline": "One of the ten greatest films of all time.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0060827", "adult": false, "backdrop_path": "/Aa6FlC0W2sljzujYtwrSTry2oVS.jpg", "production_companies": [{"name": "Svensk Filmindustri", "id": 6416}], "release_date": "1966-10-18", "popularity": 0.539639630699954, "original_title": "Persona", "budget": 0, "cast": [{"name": "Bibi Andersson", "character": "Alma", "id": 6657, "credit_id": "52fe4278c3a36847f80210df", "cast_id": 13, "profile_path": "/wIC6RwWanSpubtdjCbB6IGQN4AP.jpg", "order": 0}, {"name": "Liv Ullmann", "character": "Elisabeth Vogler", "id": 11916, "credit_id": "52fe4278c3a36847f80210e3", "cast_id": 14, "profile_path": "/8fJYPEx6RCt2QjjnMkUyREYSJCp.jpg", "order": 1}, {"name": "Margaretha Krook", "character": "Arzt", "id": 11917, "credit_id": "52fe4278c3a36847f80210e7", "cast_id": 15, "profile_path": "/zMXDQ8h0avVOT1bbrsGIaIx9CGf.jpg", "order": 2}, {"name": "Gunnar Bj\u00f6rnstrand", "character": "Herr Vogler", "id": 6649, "credit_id": "52fe4278c3a36847f80210eb", "cast_id": 16, "profile_path": "/AiGcTLr6uQXjtKxh2CMOOIfXEW1.jpg", "order": 3}, {"name": "J\u00f6rgen Lindstr\u00f6m", "character": "Elisabet's Son (uncredited)", "id": 11918, "credit_id": "52fe4278c3a36847f80210ef", "cast_id": 17, "profile_path": null, "order": 4}], "directors": [{"name": "Ingmar Bergman", "department": "Directing", "job": "Director", "credit_id": "52fe4278c3a36847f8021099", "profile_path": "/rHYYP3N2ivz6WTuTHsLX58Gab7G.jpg", "id": 6648}], "vote_average": 7.8, "runtime": 85}, "25376": {"poster_path": "/ecnA0olMpKohgptKPjo2Yb9O3YY.jpg", "production_countries": [{"iso_3166_1": "AR", "name": "Argentina"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 33965843, "overview": "A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior - both of which still haunt him decades later.", "video": false, "id": 25376, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "The Secret in Their Eyes", "tagline": "", "vote_count": 165, "homepage": "http://www.elsecretodesusojos.com", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1305806", "adult": false, "backdrop_path": "/RwcniewAxBysGWTMLnuwPUHNFZ.jpg", "production_companies": [{"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "100 Bares", "id": 5517}, {"name": "Tornasol Films", "id": 7680}, {"name": "Ministerio de Cultura", "id": 11408}, {"name": "Instituto Nacional de Cine y Artes Audiovisuales (INCAA)", "id": 6458}, {"name": "Televisi\u00f3n Federal (Telefe)", "id": 21915}, {"name": "Televisi\u00f3n Espa\u00f1ola (TVE)", "id": 6639}, {"name": "Haddock Films S.R.L.", "id": 5623}, {"name": "Instituto de Cr\u00e9dito Oficial (ICO)", "id": 11427}], "release_date": "2009-08-13", "popularity": 0.64666276295687, "original_title": "El Secreto de sus Ojos", "budget": 2000000, "cast": [{"name": "Ricardo Dar\u00edn", "character": "Benjam\u00edn Esp\u00f3sito", "id": 69310, "credit_id": "52fe44c4c3a368484e035aff", "cast_id": 1, "profile_path": "/1TQ9iE2d7r91ohbHi93KLw3QULU.jpg", "order": 0}, {"name": "Soledad Villamil", "character": "Irene Men\u00e9ndez Hastings", "id": 93647, "credit_id": "52fe44c4c3a368484e035b03", "cast_id": 2, "profile_path": "/dHlNIS1h15DEzlsUvpiBK82AlO8.jpg", "order": 1}, {"name": "Pablo Rago", "character": "Ricardo Morales", "id": 93648, "credit_id": "52fe44c4c3a368484e035b07", "cast_id": 3, "profile_path": "/dezSxQ92ApDdZbC0cZaqC3dk8D.jpg", "order": 2}, {"name": "Javier Godino", "character": "Isidoro G\u00f3mez", "id": 93649, "credit_id": "52fe44c4c3a368484e035b0b", "cast_id": 4, "profile_path": "/2NRb8XVxWPpd7fe5d1UxD6nhQQi.jpg", "order": 3}, {"name": "Guillermo Francella", "character": "Pablo Sandoval", "id": 93650, "credit_id": "52fe44c4c3a368484e035b0f", "cast_id": 5, "profile_path": "/A2HViE0YiYO0mmGJP5Jl0SJBq34.jpg", "order": 4}, {"name": "Carla Quevedo", "character": "Liliana Coloto", "id": 968350, "credit_id": "52fe44c4c3a368484e035b8b", "cast_id": 32, "profile_path": null, "order": 5}, {"name": "B\u00e1rbara Palladino", "character": "Chica Piropo", "id": 968351, "credit_id": "52fe44c4c3a368484e035b8f", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "Alejandro Abelenda", "character": "Pinche Mariano", "id": 968353, "credit_id": "52fe44c4c3a368484e035b93", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "Mario Alarc\u00f3n", "character": "Juez Fortuna Lacalle", "id": 1016570, "credit_id": "52fe44c4c3a368484e035b97", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Rudy Romano", "character": "Ord\u00f3\u00f1ez", "id": 1331799, "credit_id": "53a1c7340e0a266ff30002d1", "cast_id": 38, "profile_path": null, "order": 9}, {"name": "Mariano Argento", "character": "Romano", "id": 1241396, "credit_id": "53a1c7830e0a266ffa000320", "cast_id": 40, "profile_path": null, "order": 10}, {"name": "Sebasti\u00e1n Blanco", "character": "Pinche Tino", "id": 1331800, "credit_id": "53a1c76d0e0a266ffe0002ee", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Gabriela Daniell", "character": "Alejandra Sandoval", "id": 1331810, "credit_id": "53a1c8bbc3a368417d0002be", "cast_id": 51, "profile_path": null, "order": 12}, {"name": "Jos\u00e9 Luis Gioia", "character": "B\u00e1ez - Inspector", "id": 1331801, "credit_id": "53a1c7950e0a266fe9000339", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Juan Jos\u00e9 Ort\u00edz", "character": "Agente Cardozo", "id": 1331802, "credit_id": "53a1c7a80e0a266fe9000343", "cast_id": 42, "profile_path": null, "order": 14}, {"name": "Kiko Cerone", "character": "Molinari", "id": 557717, "credit_id": "53a1c7c10e0a266fec00034c", "cast_id": 43, "profile_path": null, "order": 15}, {"name": "Fernando Pardo", "character": "Sicora", "id": 46861, "credit_id": "53a1c7d50e0a266fe60002e3", "cast_id": 44, "profile_path": null, "order": 16}, {"name": "Maximiliano Trento", "character": "Guardia Comisar\u00eda", "id": 1331803, "credit_id": "53a1c7e80e0a266fec000357", "cast_id": 45, "profile_path": null, "order": 17}, {"name": "Sergio L\u00f3pez Santana", "character": "Jacinto C\u00e1ceres", "id": 1331804, "credit_id": "53a1c7fa0e0a266fef00031b", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Elvio Duvini", "character": "Juan Robles", "id": 1331805, "credit_id": "53a1c861c3a368417700025d", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "David Di Napoli", "character": "Escribano Andretta", "id": 1331806, "credit_id": "53a1c875c3a368417d0002b2", "cast_id": 48, "profile_path": null, "order": 20}, {"name": "Pedro Kochdilian", "character": "Borracho 1", "id": 1331807, "credit_id": "53a1c88ac3a368417a000277", "cast_id": 49, "profile_path": null, "order": 21}, {"name": "Dar\u00edo Valenzuela", "character": "Capataz", "id": 138760, "credit_id": "53a1c8fec3a36841740002a5", "cast_id": 53, "profile_path": null, "order": 22}, {"name": "Oscar S\u00e1nchez", "character": "Borracho 2", "id": 1331808, "credit_id": "53a1c8a0c3a368417a000282", "cast_id": 50, "profile_path": null, "order": 23}, {"name": "Alicia Hayd\u00e9e Pennachi", "character": "Madre G\u00f3mez", "id": 1331811, "credit_id": "53a1c8e6c3a36841830002c9", "cast_id": 52, "profile_path": null, "order": 24}, {"name": "Carlos Mele", "character": "Viejo Letrina", "id": 1331812, "credit_id": "53a1c910c3a368418600028f", "cast_id": 54, "profile_path": null, "order": 25}, {"name": "Iv\u00e1n Sosa", "character": "Custodio Interrogatorio", "id": 1331813, "credit_id": "53a1c921c3a3684177000284", "cast_id": 55, "profile_path": null, "order": 26}, {"name": "Judith Buchalter", "character": "Madre Irene", "id": 1331814, "credit_id": "53a1c933c3a36841800002ab", "cast_id": 56, "profile_path": null, "order": 27}, {"name": "H\u00e9ctor La Porta", "character": "Guardia Civil Ministerio Bienestar Social", "id": 1331815, "credit_id": "53a1c945c3a368417a0002a4", "cast_id": 57, "profile_path": null, "order": 28}, {"name": "Liliana Cuomo", "character": "Margarita", "id": 1331816, "credit_id": "53a1c956c3a36841860002a5", "cast_id": 58, "profile_path": null, "order": 29}, {"name": "Alejandro P\u00e9rez", "character": "Mat\u00f3n", "id": 1331817, "credit_id": "53a1c96ac3a36841830002e2", "cast_id": 59, "profile_path": null, "order": 30}], "directors": [{"name": "Juan Jos\u00e9 Campanella", "department": "Directing", "job": "Director", "credit_id": "52fe44c4c3a368484e035b15", "profile_path": "/iKVUxd1703lmb6E0jNdHyeuK8ne.jpg", "id": 84714}], "vote_average": 7.9, "runtime": 129}, "205601": {"poster_path": "/r0Vp6yjsKD41xF1h6lzRztgV201.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 16505460, "overview": "BELLE is inspired by the true story of Dido Elizabeth Belle, the illegitimate mixed race daughter of a Royal Navy Admiral. Raised by her aristocratic great-uncle Lord Mansfield and his wife, Belle's lineage affords her certain privileges, yet the color of her skin prevents her from fully participating in the traditions of her social standing. Left to wonder if she will ever find love, Belle falls for an idealistic young vicar's son bent on change who, with her help, shapes Lord Mansfield's role as Lord Chief Justice to end slavery in England", "video": false, "id": 205601, "genres": [{"id": 18, "name": "Drama"}], "title": "Belle", "tagline": "Based on the inspiring true story", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2404181", "adult": false, "backdrop_path": "/aWrsPU9L5MzjNns6aeEwaYuuRCC.jpg", "production_companies": [{"name": "Pinewood Studios", "id": 19404}, {"name": "DJ Films", "id": 5654}, {"name": "Isle of Man Film", "id": 2268}, {"name": "British Film Institute (BFI)", "id": 7281}, {"name": "Metrol Technology", "id": 25954}], "release_date": "2014-05-08", "popularity": 0.702124831969375, "original_title": "Belle", "budget": 10900000, "cast": [{"name": "Gugu Mbatha-Raw", "character": "Dido Elizabeth Belle", "id": 1216606, "credit_id": "52fe4d0cc3a368484e1d41e9", "cast_id": 13, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Lord Mansfield", "id": 207, "credit_id": "52fe4d0cc3a368484e1d41c9", "cast_id": 5, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Miranda Richardson", "character": "Lady Ashford", "id": 8436, "credit_id": "52fe4d0cc3a368484e1d41c1", "cast_id": 2, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 2}, {"name": "Penelope Wilton", "character": "Lady Mary Murray", "id": 1249, "credit_id": "52fe4d0cc3a368484e1d41c5", "cast_id": 3, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 3}, {"name": "Emily Watson", "character": "Lady Mansfield", "id": 1639, "credit_id": "52fe4d0cc3a368484e1d41cd", "cast_id": 6, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 4}, {"name": "Sarah Gadon", "character": "Elizabeth", "id": 190895, "credit_id": "52fe4d0cc3a368484e1d41d1", "cast_id": 7, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 5}, {"name": "Sam Reid", "character": "John Davinier", "id": 589650, "credit_id": "52fe4d0cc3a368484e1d41e1", "cast_id": 11, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 6}, {"name": "Matthew Goode", "character": "Captain Sir John Lindsay", "id": 1247, "credit_id": "52fe4d0cc3a368484e1d41e5", "cast_id": 12, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 7}, {"name": "Tom Felton", "character": "James Ashford", "id": 10993, "credit_id": "52fe4d0cc3a368484e1d41bd", "cast_id": 1, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 8}, {"name": "James Norton", "character": "Oliver Ashford", "id": 1205278, "credit_id": "53fcddb40e0a267a6600b0e5", "cast_id": 17, "profile_path": "/rseiJUwdoDe1yNXgRROyAPo8NEA.jpg", "order": 9}, {"name": "Alan McKenna", "character": "Harry", "id": 86441, "credit_id": "5448d612c3a3680fae0015c1", "cast_id": 46, "profile_path": "/wA8uwhEQqK7k1Uoq2vLM7onN6ol.jpg", "order": 10}, {"name": "Lauren Julien-Box", "character": "Young Dido", "id": 1376817, "credit_id": "5448d63d0e0a26748f00150a", "cast_id": 47, "profile_path": null, "order": 11}], "directors": [{"name": "Amma Asante", "department": "Directing", "job": "Director", "credit_id": "52fe4d0cc3a368484e1d41d7", "profile_path": null, "id": 1193597}], "vote_average": 7.5, "runtime": 105}, "804": {"poster_path": "/konkuLjrROMzc1ieWxpnTqMnb4E.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Cosseted European princess who goes AWOL in Rome and is soon taken under the wing of tabloid journalist Joe Bradley and his photographer sidekick, Irving Radovich. She thinks the boys don't suspect who she really is, but they're onto her -- and sense a sensational story if they can just keep Princess Ann handlers from retrieving her too soon.", "video": false, "id": 804, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Roman Holiday", "tagline": "Romance in romantic Rome!", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0046250", "adult": false, "backdrop_path": "/zMnVqsxi5g2nPglCMy49fYTLAOk.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1953-08-27", "popularity": 0.80284848894539, "original_title": "Roman Holiday", "budget": 1500000, "cast": [{"name": "Gregory Peck", "character": "Joe Bradley", "id": 8487, "credit_id": "52fe4278c3a36847f80214ff", "cast_id": 13, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "Audrey Hepburn", "character": "Princess Ann", "id": 1932, "credit_id": "52fe4278c3a36847f8021503", "cast_id": 14, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 1}, {"name": "Eddie Albert", "character": "Irving Radovich", "id": 11998, "credit_id": "52fe4278c3a36847f8021507", "cast_id": 15, "profile_path": "/1x9ovDtxBVNqBPEzSQ7qVU0ITgw.jpg", "order": 2}, {"name": "Hartley Power", "character": "Mr. Hennessy", "id": 11999, "credit_id": "52fe4278c3a36847f802150b", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Harcourt Williams", "character": "Ambassador", "id": 12000, "credit_id": "52fe4279c3a36847f802150f", "cast_id": 17, "profile_path": "/cpPBPKse0jWYqWTlLXWYRfatQ4j.jpg", "order": 4}, {"name": "Margaret Rawlings", "character": "Countess Vereberg", "id": 12001, "credit_id": "52fe4279c3a36847f8021513", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Tullio Carminati", "character": "Gen. Provno", "id": 12002, "credit_id": "52fe4279c3a36847f8021517", "cast_id": 19, "profile_path": "/v7Tc3mYh36WCESRgUVrAmzoe88t.jpg", "order": 6}, {"name": "Paolo Carlini", "character": "Mario Delani", "id": 12003, "credit_id": "52fe4279c3a36847f802151b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Claudio Ermelli", "character": "Giovanni", "id": 12004, "credit_id": "52fe4279c3a36847f802151f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Paola Borboni", "character": "Charwoman", "id": 12005, "credit_id": "52fe4279c3a36847f8021523", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Alfredo Rizzo", "character": "Cab driver", "id": 12006, "credit_id": "52fe4279c3a36847f8021527", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "William Wyler", "department": "Directing", "job": "Director", "credit_id": "52fe4278c3a36847f80214b9", "profile_path": "/AvxH2K3FDzui3je0wQZBKN3IUTt.jpg", "id": 10001}], "vote_average": 7.7, "runtime": 118}, "805": {"poster_path": "/5KkgZrRAwcD97wyA3WXMrcNILi1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33395426, "overview": "A young couple moves into an infamous New York apartment building to start a family. Things become frightening as Rosemary begins to suspect her unborn baby isn't safe around their strange neighbors.", "video": false, "id": 805, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Rosemary's Baby", "tagline": "Pray for Rosemary's Baby", "vote_count": 179, "homepage": "", "belongs_to_collection": {"backdrop_path": "/36RmiFNEbyfTOF3GG17rOyv4XGD.jpg", "poster_path": "/yP9DnKsSGcEuHJktQYotND6dsgJ.jpg", "id": 264338, "name": "Rosemary's Baby Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0063522", "adult": false, "backdrop_path": "/3THF7D3uPqhV6k7iKsr2EyjqVPK.jpg", "production_companies": [{"name": "William Castle Productions", "id": 10324}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1968-06-12", "popularity": 0.37811396517462, "original_title": "Rosemary's Baby", "budget": 3200000, "cast": [{"name": "Mia Farrow", "character": "Rosemary Woodhouse", "id": 12021, "credit_id": "52fe4279c3a36847f80215b9", "cast_id": 15, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 0}, {"name": "John Cassavetes", "character": "Guy Woodhouse", "id": 11147, "credit_id": "52fe4279c3a36847f80215bd", "cast_id": 16, "profile_path": "/pp71Xsx63aoXTMQgatnYtGRU2fi.jpg", "order": 1}, {"name": "Ruth Gordon", "character": "Minnie Castevet", "id": 4970, "credit_id": "52fe4279c3a36847f80215c1", "cast_id": 17, "profile_path": "/155Pa9jPlWEaPK7qZQFWH6kol5A.jpg", "order": 2}, {"name": "Sidney Blackmer", "character": "Roman Castevet", "id": 12022, "credit_id": "52fe4279c3a36847f80215c5", "cast_id": 18, "profile_path": "/ijI8tIlurlyyVTZYgZvoiifrMi3.jpg", "order": 3}, {"name": "Maurice Evans", "character": "Edward Hutchins", "id": 12023, "credit_id": "52fe4279c3a36847f80215c9", "cast_id": 19, "profile_path": "/tpb69FMfZVErJzpyipYQBGsIRp.jpg", "order": 4}, {"name": "Ralph Bellamy", "character": "Dr. Abraham Sapirstein", "id": 1208, "credit_id": "52fe4279c3a36847f80215cd", "cast_id": 20, "profile_path": "/fjRvQxfzPw77TUMDaJHnPKirpG0.jpg", "order": 5}, {"name": "Victoria Vetri", "character": "Terry Gionoffrio", "id": 12024, "credit_id": "52fe4279c3a36847f80215d1", "cast_id": 21, "profile_path": "/6noQIMsZbHDfoNhoLaTEEsPbei3.jpg", "order": 6}, {"name": "Patsy Kelly", "character": "Laura-Louise McBirney", "id": 12025, "credit_id": "52fe4279c3a36847f80215d5", "cast_id": 22, "profile_path": "/soUhE8AQeLckoUsmarAPTBBeJs5.jpg", "order": 7}, {"name": "Elisha Cook Jr.", "character": "Mr. Nicklas", "id": 3339, "credit_id": "52fe4279c3a36847f80215d9", "cast_id": 23, "profile_path": "/ntXqHlpeaXTM7WqIsGDlYtlG7hk.jpg", "order": 8}, {"name": "Emmaline Henry", "character": "Elise Dunstan", "id": 12026, "credit_id": "52fe4279c3a36847f80215dd", "cast_id": 24, "profile_path": "/aSDa39yeqbWXn4s4s94byonwvC1.jpg", "order": 9}, {"name": "Marianne Gordon", "character": "Joan Jellico", "id": 12027, "credit_id": "52fe4279c3a36847f80215e1", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Charles Grodin", "character": "Dr. Hill", "id": 28164, "credit_id": "52fe4279c3a36847f80215eb", "cast_id": 27, "profile_path": "/qxZjqrA728HrTxWDrwgRqq1uWS2.jpg", "order": 11}, {"name": "Hanna Landy", "character": "Grace Cardiff", "id": 91197, "credit_id": "52fe4279c3a36847f80215ef", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Phil Leeds", "character": "Dr. Shand (as Philip Leeds)", "id": 3433, "credit_id": "52fe4279c3a36847f80215f3", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "D'Urville Martin", "character": "Diego", "id": 109086, "credit_id": "52fe4279c3a36847f80215f7", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Hope Summers", "character": "Mrs. Gilmore", "id": 85838, "credit_id": "52fe4279c3a36847f80215fb", "cast_id": 31, "profile_path": "/1IY7GQ3Z84647KnEPAWRJhqdzTO.jpg", "order": 15}, {"name": "Wende Wagner", "character": "Rosemary's Girl Friend (as Wendy Wagner)", "id": 103457, "credit_id": "52fe4279c3a36847f80215ff", "cast_id": 32, "profile_path": null, "order": 16}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802156d", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 7.0, "runtime": 136}, "74534": {"poster_path": "/iRMzRGR5DHSik3IA9gkeMUZGPv6.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129, "overview": "British retirees travel to India to take up residence in what they believe is a newly restored hotel. Less luxurious than its advertisements, the Marigold Hotel nevertheless slowly begins to charm in unexpected ways.", "video": false, "id": 74534, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Best Exotic Marigold Hotel", "tagline": "Share the journey. Share the laughter.", "vote_count": 129, "homepage": "http://www.foxsearchlight.com/thebestexoticmarigoldhotel/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8pMHYwfR8K2xR19RilAuVCyEBT.jpg", "id": 306937, "name": "Best Exotic Marigold Hotel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1412386", "adult": false, "backdrop_path": "/qtZbNZiFrtviX45OKeu73F7XP8p.jpg", "production_companies": [{"name": "Participant Media", "id": 6735}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}], "release_date": "2011-11-28", "popularity": 1.40702301298671, "original_title": "The Best Exotic Marigold Hotel", "budget": 10, "cast": [{"name": "Bill Nighy", "character": "Douglas Ainslie", "id": 2440, "credit_id": "52fe48d0c3a368484e10c3f7", "cast_id": 2, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "Maggie Smith", "character": "Muriel Donnelly", "id": 10978, "credit_id": "52fe48d0c3a368484e10c3fb", "cast_id": 3, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 1}, {"name": "Tom Wilkinson", "character": "Graham Dashwood", "id": 207, "credit_id": "52fe48d0c3a368484e10c3ff", "cast_id": 4, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 2}, {"name": "Judi Dench", "character": "Evelyn Greenslade", "id": 5309, "credit_id": "52fe48d0c3a368484e10c403", "cast_id": 5, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Dev Patel", "character": "Sonny Kapoor", "id": 76788, "credit_id": "52fe48d0c3a368484e10c407", "cast_id": 6, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 4}, {"name": "Penelope Wilton", "character": "Jean Ainslie", "id": 1249, "credit_id": "52fe48d0c3a368484e10c40b", "cast_id": 7, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 5}, {"name": "Ramona Marquez", "character": "Madge's Grandchild", "id": 224878, "credit_id": "52fe48d0c3a368484e10c40f", "cast_id": 8, "profile_path": "/oLT0EWlrSVxkH6VMmGEnWUCC63M.jpg", "order": 6}, {"name": "Celia Imrie", "character": "Madge Hardcastle", "id": 9139, "credit_id": "52fe48d0c3a368484e10c413", "cast_id": 9, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 7}, {"name": "Ronald Pickup", "character": "Norman Cousins", "id": 32556, "credit_id": "52fe48d0c3a368484e10c417", "cast_id": 10, "profile_path": "/a0Q0rSRe8yBPoAyWhNSX7pzIaYq.jpg", "order": 8}, {"name": "Hugh Dickson", "character": "Judge", "id": 1005280, "credit_id": "52fe48d0c3a368484e10c42d", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Patrick Pearson", "character": "Graham's Colleague", "id": 177596, "credit_id": "52fe48d0c3a368484e10c431", "cast_id": 16, "profile_path": null, "order": 10}], "directors": [{"name": "John Madden", "department": "Directing", "job": "Director", "credit_id": "52fe48d0c3a368484e10c3f3", "profile_path": "/8HPERxuUmp44PJcwbweQfICo149.jpg", "id": 18844}], "vote_average": 6.7, "runtime": 124}, "807": {"poster_path": "/mhFXxB76LVgJBIfJM1sAuVBtVKv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 327311859, "overview": "Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.", "video": false, "id": 807, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Se7en", "tagline": "Seven deadly sins. Seven ways to die.", "vote_count": 1934, "homepage": "http://www.sevenmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114369", "adult": false, "backdrop_path": "/ba4CpvnaxvAgff2jHiaqJrVpZJ5.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1995-09-22", "popularity": 1.73636805230178, "original_title": "Se7en", "budget": 33000000, "cast": [{"name": "Brad Pitt", "character": "Detective David Mills", "id": 287, "credit_id": "52fe4279c3a36847f802178b", "cast_id": 17, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Detective Lt. William Somerset", "id": 192, "credit_id": "52fe4279c3a36847f802178f", "cast_id": 18, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Gwyneth Paltrow", "character": "Tracy Mills", "id": 12052, "credit_id": "52fe4279c3a36847f8021793", "cast_id": 19, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 2}, {"name": "R. Lee Ermey", "character": "Police Captain", "id": 8655, "credit_id": "52fe4279c3a36847f8021797", "cast_id": 20, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 3}, {"name": "Andrew Kevin Walker", "character": "Dead Man", "id": 12047, "credit_id": "52fe4279c3a36847f802179b", "cast_id": 21, "profile_path": "/tPypY1vmiLEkoFuN0Q5pUU338ms.jpg", "order": 4}, {"name": "Kevin Spacey", "character": "John Doe", "id": 1979, "credit_id": "52fe4279c3a36847f802179f", "cast_id": 22, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 5}, {"name": "Daniel Zacapa", "character": "Detective Taylor", "id": 12054, "credit_id": "52fe4279c3a36847f80217a3", "cast_id": 23, "profile_path": "/lGleijPJER3lanO4cGcgfLfGRuX.jpg", "order": 6}, {"name": "John Cassini", "character": "Officer Davis", "id": 12055, "credit_id": "52fe4279c3a36847f80217a7", "cast_id": 24, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 7}, {"name": "Hawthorne James", "character": "George, Library Night Guard", "id": 12056, "credit_id": "52fe4279c3a36847f80217ab", "cast_id": 25, "profile_path": "/i7PiUf2mN7zs3V78NPlF79nCOZ4.jpg", "order": 8}, {"name": "Richard Roundtree", "character": "Dist. Atty. Martin Talbot", "id": 6487, "credit_id": "52fe4279c3a36847f80217af", "cast_id": 26, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 9}, {"name": "John C. McGinley", "character": "California", "id": 11885, "credit_id": "52fe4279c3a36847f80217b3", "cast_id": 27, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 10}, {"name": "Richard Portnow", "character": "as Dr. Beardsley", "id": 4255, "credit_id": "52fe4279c3a36847f80217c3", "cast_id": 30, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 11}, {"name": "Emily Wagner", "character": "as Detective Sara", "id": 157434, "credit_id": "52fe4279c3a36847f80217c7", "cast_id": 31, "profile_path": "/kjyX1FvobjwfksNJUaxSJ5ZasvU.jpg", "order": 12}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f80217bf", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.7, "runtime": 127}, "808": {"poster_path": "/140ewbWv8qHStD3mlBDvvGd0Zvu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 484409218, "overview": "It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.", "video": false, "id": 808, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek", "tagline": "The greatest fairy tale never told.", "vote_count": 1220, "homepage": "http://www.shrek.com/", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0126029", "adult": false, "backdrop_path": "/wBG4kHfhwm3bLwKUFNRByXXv4r2.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2001-05-16", "popularity": 2.11145176311114, "original_title": "Shrek", "budget": 60000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe4279c3a36847f80218a1", "cast_id": 24, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe4279c3a36847f80218a5", "cast_id": 25, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe4279c3a36847f80218a9", "cast_id": 26, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "John Lithgow", "character": "Lord Farquaad (voice)", "id": 12074, "credit_id": "52fe4279c3a36847f80218ad", "cast_id": 27, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 3}, {"name": "Vincent Cassel", "character": "Monsieur Hood (voice)", "id": 1925, "credit_id": "52fe4279c3a36847f80218b1", "cast_id": 28, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 4}, {"name": "Peter Dennis", "character": "Ogre Hunter (voice)", "id": 12075, "credit_id": "52fe4279c3a36847f80218b5", "cast_id": 29, "profile_path": "/9fNNPSTxuoVgsdJwQVmWUx9EDLT.jpg", "order": 5}, {"name": "Clive Pearse", "character": "Ogre Hunter (voice)", "id": 12076, "credit_id": "52fe4279c3a36847f80218b9", "cast_id": 30, "profile_path": "/dO8RhoEjfRzdWfNARRo1XaFLQOm.jpg", "order": 6}, {"name": "Jim Cummings", "character": "Captain of Guards (voice)", "id": 12077, "credit_id": "52fe4279c3a36847f80218bd", "cast_id": 31, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 7}, {"name": "Bobby Block", "character": "Baby Bear (voice)", "id": 12078, "credit_id": "52fe4279c3a36847f80218c1", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Chris Miller", "character": "Geppetto / Magic Mirror (voice)", "id": 12098, "credit_id": "52fe4279c3a36847f80218cb", "cast_id": 34, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 9}, {"name": "Cody Cameron", "character": "Pinocchio / Three Pigs (voice)", "id": 12095, "credit_id": "52fe4279c3a36847f80218cf", "cast_id": 35, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 10}, {"name": "Kathleen Freeman", "character": "Old Woman (voice)", "id": 7210, "credit_id": "52fe4279c3a36847f80218d3", "cast_id": 36, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 11}, {"name": "Conrad Vernon", "character": "Gingerbread Man (voice)", "id": 12080, "credit_id": "52fe4279c3a36847f80218d7", "cast_id": 38, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 12}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f8021819", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}, {"name": "Vicky Jenson", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802181f", "profile_path": "/eFk4SIk0nDpSfb1u8qG8DZ7Ya3e.jpg", "id": 12058}], "vote_average": 6.9, "runtime": 90}, "809": {"poster_path": "/akWDA0BMVYK4OTM92T5i91DYnsT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 919838758, "overview": "Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.", "video": false, "id": 809, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek 2", "tagline": "Once upon another time...", "vote_count": 861, "homepage": "http://www.shrek2.com/", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298148", "adult": false, "backdrop_path": "/gdFAYLb5NR5HqcEKnPloOM6fX4B.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2004-05-18", "popularity": 1.86864814545588, "original_title": "Shrek 2", "budget": 150000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe4279c3a36847f80219ad", "cast_id": 29, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe4279c3a36847f802197f", "cast_id": 18, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe4279c3a36847f8021983", "cast_id": 19, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Julie Andrews", "character": "Queen (voice)", "id": 5823, "credit_id": "52fe4279c3a36847f8021987", "cast_id": 20, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 3}, {"name": "Antonio Banderas", "character": "Puss In Boots (voice)", "id": 3131, "credit_id": "52fe4279c3a36847f802198b", "cast_id": 21, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 4}, {"name": "John Cleese", "character": "King (voice)", "id": 8930, "credit_id": "52fe4279c3a36847f802198f", "cast_id": 22, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Rupert Everett", "character": "Prince Charming (voice)", "id": 4757, "credit_id": "52fe4279c3a36847f8021993", "cast_id": 23, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 6}, {"name": "Jennifer Saunders", "character": "Fairy Godmother (voice)", "id": 12094, "credit_id": "52fe4279c3a36847f8021997", "cast_id": 24, "profile_path": "/nlxiFy0LUYGlICaFY3rF2DRovcc.jpg", "order": 7}, {"name": "Cody Cameron", "character": "Pinocchio/Three Pigs (voice)", "id": 12095, "credit_id": "52fe4279c3a36847f802199b", "cast_id": 25, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 8}, {"name": "Conrad Vernon", "character": "Gingerbread Man/Cedric/Announcer/Muffin Man/Mongo (voice)", "id": 12080, "credit_id": "52fe4279c3a36847f802199f", "cast_id": 26, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 9}, {"name": "Christopher Knights", "character": "Blind Mouse (voice)", "id": 12097, "credit_id": "52fe4279c3a36847f80219a3", "cast_id": 27, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 10}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802191b", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}, {"name": "Kelly Asbury", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f8021921", "profile_path": "/jJAHjXFbjEUJrYjxyuj0AWMPAqW.jpg", "id": 12079}, {"name": "Conrad Vernon", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f8021927", "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "id": 12080}], "vote_average": 6.3, "runtime": 93}, "810": {"poster_path": "/eDAnxTxVbrTFDz8KTMGgBXYLgYn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 798958165, "overview": "Shrek and Co, return for more adventures. The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. Shrek however wants to return to his cosy swamp and live in peace and quiet. So when he finds out their is another heir to the throne, they set of to bring him back to rule the kingdom. Meanwhile, Prince Charming enlists the fairy tale baddies to steal the throne away.", "video": false, "id": 810, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek the Third", "tagline": "Who's ready for Thirds?", "vote_count": 653, "homepage": "http://www.shrekthethird.com/flash/index.html", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0413267", "adult": false, "backdrop_path": "/7fT1IogBbxM6S7SOIGSe7BXLEMq.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2007-05-17", "popularity": 1.58792381501819, "original_title": "Shrek the Third", "budget": 160000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe4279c3a36847f8021a47", "cast_id": 22, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe4279c3a36847f8021a23", "cast_id": 13, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe4279c3a36847f8021a27", "cast_id": 14, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Julie Andrews", "character": "Queen Lillian (voice)", "id": 5823, "credit_id": "52fe4279c3a36847f8021a2b", "cast_id": 15, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 3}, {"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe4279c3a36847f8021a2f", "cast_id": 16, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 4}, {"name": "John Cleese", "character": "King Harold (voice)", "id": 8930, "credit_id": "52fe4279c3a36847f8021a33", "cast_id": 17, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Rupert Everett", "character": "Prince Charming (voice)", "id": 4757, "credit_id": "52fe4279c3a36847f8021a37", "cast_id": 18, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 6}, {"name": "Eric Idle", "character": "Merlin (voice)", "id": 10713, "credit_id": "52fe4279c3a36847f8021a3b", "cast_id": 19, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 7}, {"name": "Amy Sedaris", "character": "Cinderella (voice)", "id": 12110, "credit_id": "52fe4279c3a36847f8021a3f", "cast_id": 20, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 8}, {"name": "Justin Timberlake", "character": "Prince Artie (voice)", "id": 12111, "credit_id": "52fe4279c3a36847f8021a43", "cast_id": 21, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 9}], "directors": [{"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f80219e9", "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "id": 12098}, {"name": "Raman Hui", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f80219ef", "profile_path": "/BmPYRLBeb2Ln881ihfemK1lo4w.jpg", "id": 12099}], "vote_average": 5.8, "runtime": 93}, "9003": {"poster_path": "/4nfAhOTlfZUHNorHJXEib7GYFpp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 14564027, "overview": "An unfaithful wife encounters the zombie of her dead lover, who's being chased by demons after he escaped from their sado-masochistic Hell.", "video": false, "id": 9003, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Hellraiser", "tagline": "He'll tear your soul apart.", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uaEUgCqB6lGkvM4Wy5blNwLJdfa.jpg", "poster_path": "/lIK0UgJsA18Z5I1PwpucXzgyF3A.jpg", "id": 8917, "name": "Hellraiser Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093177", "adult": false, "backdrop_path": "/jd7pIx2XnO8wRdPT5ncAjhFxNwL.jpg", "production_companies": [{"name": "Cinemarque Entertainment BV", "id": 15338}, {"name": "Film Futures", "id": 15339}, {"name": "Rivdel Films", "id": 15340}], "release_date": "1987-09-11", "popularity": 0.598810698309347, "original_title": "Hellraiser", "budget": 1000000, "cast": [{"name": "Andrew Robinson", "character": "Larry Cotton", "id": 14782, "credit_id": "52fe44d0c3a36847f80ab8e9", "cast_id": 15, "profile_path": "/bJnqfONR5wdtIciYQ0tBnRX4PnD.jpg", "order": 0}, {"name": "Clare Higgins", "character": "Julia Cotton", "id": 45588, "credit_id": "52fe44d0c3a36847f80ab8ed", "cast_id": 16, "profile_path": "/s8Z51Z1jsVYEzCd916dIb1C6X5F.jpg", "order": 1}, {"name": "Ashley Laurence", "character": "Kirsty Cotton", "id": 56551, "credit_id": "52fe44d0c3a36847f80ab8f1", "cast_id": 17, "profile_path": "/nBpBKZdYpENFMi4cQAlaIVel9NU.jpg", "order": 2}, {"name": "Sean Chapman", "character": "Frank Cotton", "id": 56552, "credit_id": "52fe44d0c3a36847f80ab8f5", "cast_id": 18, "profile_path": null, "order": 3}, {"name": "Oliver Smith", "character": "Frank als Untoter", "id": 24737, "credit_id": "52fe44d0c3a36847f80ab8f9", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Robert Hines", "character": "Steve", "id": 56553, "credit_id": "52fe44d0c3a36847f80ab8fd", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Anthony Allen", "character": "Erstes Opfer", "id": 56554, "credit_id": "52fe44d0c3a36847f80ab901", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Leon Davis", "character": "Zweites Opfer", "id": 56555, "credit_id": "52fe44d0c3a36847f80ab905", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Kenneth Nelson", "character": "Bill", "id": 56557, "credit_id": "52fe44d0c3a36847f80ab90d", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Gay Baynes", "character": "Evelyn", "id": 56558, "credit_id": "52fe44d0c3a36847f80ab911", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Niall Buggy", "character": "Gast", "id": 40043, "credit_id": "52fe44d0c3a36847f80ab915", "cast_id": 26, "profile_path": "/9TPlvhoblLdowWVSs8olnG0J7CO.jpg", "order": 11}, {"name": "Nicholas Vince", "character": "Chatterer-Zenobit", "id": 56559, "credit_id": "52fe44d0c3a36847f80ab919", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Simon Bamford", "character": "Butterball-Zenobit", "id": 56560, "credit_id": "52fe44d0c3a36847f80ab91d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Grace Kirby", "character": "Weiblicher Zenobit", "id": 56561, "credit_id": "52fe44d0c3a36847f80ab921", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Sharon Bower", "character": "Krankenschwester", "id": 26869, "credit_id": "52fe44d0c3a36847f80ab925", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Raul Newney", "character": "Arzt", "id": 56562, "credit_id": "52fe44d0c3a36847f80ab929", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Doug Bradley", "character": "Lead Cenobite (Pinhead)", "id": 73040, "credit_id": "52fe44d0c3a36847f80ab92d", "cast_id": 32, "profile_path": "/hzITESBe6eDN4Y3TNZ6Fk6wsfaC.jpg", "order": 17}, {"name": "Michael Cassidy", "character": "Drittes Opfer", "id": 1349468, "credit_id": "53df0be9c3a3686c45001dcd", "cast_id": 38, "profile_path": null, "order": 18}], "directors": [{"name": "Clive Barker", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80ab8af", "profile_path": "/1Hlv4fojc9ogiWfqREB0iP47yVI.jpg", "id": 31211}], "vote_average": 6.8, "runtime": 94}, "812": {"poster_path": "/oA2AY6adBYrHSrvMQSfZ14yA0HA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 504050219, "overview": "Princess Jasmine grows tired of being forced to remain in the palace and she sneaks out into the marketplace in disguise where she meets street-urchin Aladdin and the two fall in love, although she may only marry a prince. After being thrown in jail, Aladdin and becomes embroiled in a plot to find a mysterious lamp with which the evil Jafar hopes to rule the land.", "video": false, "id": 812, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Aladdin", "tagline": "Wish granted!", "vote_count": 1251, "homepage": "http://disneydvd.disney.go.com/aladdin-special-edition.html", "belongs_to_collection": {"backdrop_path": "/acIVr0B6wWxvtEzoIOzWWgY6bs2.jpg", "poster_path": "/9jAbtLbAbebtuF5q1gZIPUCuegd.jpg", "id": 86027, "name": "Aladdin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103639", "adult": false, "backdrop_path": "/oZN5w508NSlrmcMql1wohhsQGIg.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1992-11-25", "popularity": 1.6974222070721, "original_title": "Aladdin", "budget": 28000000, "cast": [{"name": "Scott Weinger", "character": "Aladdin 'Al' (voice)", "id": 15827, "credit_id": "52fe427ac3a36847f8021b0d", "cast_id": 18, "profile_path": "/rlZpPoORiJzStzIuAyrPOlLhnaL.jpg", "order": 0}, {"name": "Robin Williams", "character": "Genie (voice)", "id": 2157, "credit_id": "52fe427ac3a36847f8021b11", "cast_id": 20, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Linda Larkin", "character": "Princess Jasmine (voice)", "id": 15829, "credit_id": "52fe427ac3a36847f8021b15", "cast_id": 21, "profile_path": "/7dFMvof0vdGHVvtfpAewjzGOZhf.jpg", "order": 2}, {"name": "Jonathan Freeman", "character": "Grand Vizier Jafar (voice)", "id": 15830, "credit_id": "52fe427ac3a36847f8021b19", "cast_id": 22, "profile_path": "/zOuESGSTRY0LS3mC9u03evqvjMi.jpg", "order": 3}, {"name": "Frank Welker", "character": "Abu the Monkey (voice)", "id": 15831, "credit_id": "52fe427ac3a36847f8021b1d", "cast_id": 23, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 4}, {"name": "Gilbert Gottfried", "character": "Iago the Parrot (voice)", "id": 15832, "credit_id": "52fe427ac3a36847f8021b21", "cast_id": 24, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 5}, {"name": "Douglas Seale", "character": "Sultan of Agrabah (voice)", "id": 15833, "credit_id": "52fe427ac3a36847f8021b25", "cast_id": 25, "profile_path": "/1Tbu7xnv3iwiLtKIJg1taQITbKC.jpg", "order": 6}, {"name": "Charlie Adler", "character": "Gazeem (voice)", "id": 81178, "credit_id": "52fe427ac3a36847f8021b3b", "cast_id": 29, "profile_path": "/eSZtf1oCn8PY3VEBclD7VkCEWS.jpg", "order": 7}, {"name": "Corey Burton", "character": "Prince Achmed (voice)", "id": 35219, "credit_id": "52fe427ac3a36847f8021b3f", "cast_id": 30, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 8}, {"name": "Jim Cummings", "character": "Razoul / Farouk (voice)", "id": 12077, "credit_id": "52fe427ac3a36847f8021b43", "cast_id": 31, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021b03", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021b09", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 7.1, "runtime": 90}, "813": {"poster_path": "/b4sAWNIbfXw4WTdc1wiVRBk2Vko.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83453539, "overview": "Still craving for the love of his life, ex-Air Force pilot Ted Striker follows Elaine onto the flight that she is working on as cabin crew. Elaine doesn't want to be with Ted anymore, but when the crew and passengers fall ill from food poisoning, Ted might be the only one who can save them.", "video": false, "id": 813, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Airplane!", "tagline": "What's slower than a speeding bullet, and able to hit tall buildings at a single bound?", "vote_count": 235, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sAE8KldbthdWBgvYCvpq9aMU1Kl.jpg", "poster_path": "/u8IXYbpoRcKMlnhUvND0NB8HsAM.jpg", "id": 91663, "name": "Airplane! The Collection!"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080339", "adult": false, "backdrop_path": "/tFPvOmz0uNmfp1sq2ebYAeUCLQ4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1980-07-02", "popularity": 0.607225306222177, "original_title": "Airplane!", "budget": 3500000, "cast": [{"name": "Robert Hays", "character": "Ted Striker", "id": 14416, "credit_id": "52fe427ac3a36847f8021bbf", "cast_id": 5, "profile_path": "/1KWB4DXcsTVNDkDOaTJYatiTmDn.jpg", "order": 0}, {"name": "Julie Hagerty", "character": "Elaine", "id": 14415, "credit_id": "52fe427ac3a36847f8021bbb", "cast_id": 4, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 1}, {"name": "Kareem Abdul-Jabbar", "character": "Murdock", "id": 14414, "credit_id": "52fe427ac3a36847f8021baf", "cast_id": 1, "profile_path": "/ouYcoXwHmxiOEI5eRHuYTyAXCos.jpg", "order": 2}, {"name": "Lloyd Bridges", "character": "McCroskey", "id": 2177, "credit_id": "52fe427ac3a36847f8021bb3", "cast_id": 2, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 3}, {"name": "Peter Graves", "character": "Captain Oveur", "id": 9111, "credit_id": "52fe427ac3a36847f8021bb7", "cast_id": 3, "profile_path": "/sR9B0mE399EGI9aRxMbWMpk2GKT.jpg", "order": 4}, {"name": "Leslie Nielsen", "character": "Dr. Rumack", "id": 7633, "credit_id": "52fe427ac3a36847f8021bc3", "cast_id": 6, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 5}, {"name": "Lorna Patterson", "character": "Randy", "id": 14418, "credit_id": "52fe427ac3a36847f8021bc7", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Robert Stack", "character": "Rex Kramer", "id": 2493, "credit_id": "52fe427ac3a36847f8021bcb", "cast_id": 8, "profile_path": "/gC4P6esXuU9LRlwUVd3m0K9FyKF.jpg", "order": 7}, {"name": "Stephen Stucker", "character": "Johnny", "id": 14423, "credit_id": "52fe427ac3a36847f8021bcf", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Jim Abrahams", "character": "Religious zealot #6", "id": 12936, "credit_id": "52fe427ac3a36847f8021bd3", "cast_id": 10, "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "order": 9}, {"name": "Frank Ashmore", "character": "Victor Basta", "id": 14427, "credit_id": "52fe427ac3a36847f8021bd7", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jonathan Banks", "character": "Gunderson", "id": 783, "credit_id": "52fe427ac3a36847f8021bdb", "cast_id": 12, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 11}, {"name": "Craig Berenson", "character": "Paul Carey", "id": 174872, "credit_id": "52fe427ac3a36847f8021c75", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Barbara Billingsley", "character": "Jive Lady", "id": 117723, "credit_id": "52fe427ac3a36847f8021c79", "cast_id": 39, "profile_path": "/oBI0DMzRe0XdShUKgny3wVQasGg.jpg", "order": 13}, {"name": "Lee Bryant", "character": "Mrs. Hammen", "id": 160328, "credit_id": "52fe427ac3a36847f8021c7d", "cast_id": 40, "profile_path": "/riFEbXO78dRCTxzQ358AVr1m4uD.jpg", "order": 14}, {"name": "Joyce Bulifant", "character": "Mrs. Davis", "id": 153386, "credit_id": "52fe427ac3a36847f8021c81", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Mae E. Campbell", "character": "Security Lady", "id": 169802, "credit_id": "52fe427ac3a36847f8021c85", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Ethel Merman", "character": "Lieutenant Hurwitz", "id": 109897, "credit_id": "52fe427ac3a36847f8021c89", "cast_id": 43, "profile_path": "/r2aKeUQHi5CTrthJtV6FfoJsDeq.jpg", "order": 17}, {"name": "Jimmie Walker", "character": "Windshield Wiper Man", "id": 31366, "credit_id": "52fe427ac3a36847f8021c8d", "cast_id": 44, "profile_path": "/3E8l7vhY1LHSOqbb6UTjRpHIZRM.jpg", "order": 18}, {"name": "Jill Whelan", "character": "Lisa Davis", "id": 173263, "credit_id": "52fe427ac3a36847f8021c91", "cast_id": 45, "profile_path": "/fyDOGDvnevuZ8gvrxrkSwyk6Jsy.jpg", "order": 19}, {"name": "Kitten Natividad", "character": "", "id": 41711, "credit_id": "52fe427ac3a36847f8021cb3", "cast_id": 51, "profile_path": null, "order": 20}, {"name": "Nora Meerbaum", "character": "Cocaine Lady", "id": 1449360, "credit_id": "551f18ef9251415c7a000280", "cast_id": 52, "profile_path": null, "order": 21}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021be1", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}, {"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021be7", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}, {"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021bed", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.7, "runtime": 88}, "814": {"poster_path": "/iJppgltxM80TfwLEXoJnTGz9rpY.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31973249, "overview": "Two American tourists in England are attacked by a werewolf that none of the locals will admit exists.", "video": false, "id": 814, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "An American Werewolf in London", "tagline": "Beware the Moon.", "vote_count": 123, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/lmGA5MhSb0jFzRdR74yzsUqgtgI.jpg", "id": 9380, "name": "American Werewolf Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082010", "adult": false, "backdrop_path": "/lFiEdW3zVjR2Wujxu3yZLpL2N8n.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Guber/Peters Company", "id": 276}, {"name": "American Werewolf Inc.", "id": 606}, {"name": "Lyncanthrope Films", "id": 607}], "release_date": "1981-08-21", "popularity": 0.236890084834492, "original_title": "An American Werewolf in London", "budget": 10000000, "cast": [{"name": "David Naughton", "character": "David Kessler", "id": 14463, "credit_id": "52fe427ac3a36847f8021d3d", "cast_id": 16, "profile_path": "/ehDE47qkUux5a18Mi7zqReBj79b.jpg", "order": 0}, {"name": "Jenny Agutter", "character": "Nurse Alex Price", "id": 14464, "credit_id": "52fe427ac3a36847f8021d41", "cast_id": 17, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 1}, {"name": "Griffin Dunne", "character": "Jack Goodman", "id": 2171, "credit_id": "52fe427ac3a36847f8021d45", "cast_id": 18, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 2}, {"name": "John Woodvine", "character": "Dr. J. S. Hirsch", "id": 14465, "credit_id": "52fe427ac3a36847f8021d49", "cast_id": 19, "profile_path": "/9re40l4z8VnSNtCjncUbALSBvXE.jpg", "order": 3}, {"name": "Lila Kaye", "character": "Barmaid", "id": 14466, "credit_id": "52fe427ac3a36847f8021d4d", "cast_id": 20, "profile_path": null, "order": 4}, {"name": "Joe Belcher", "character": "Truck Driver", "id": 14467, "credit_id": "52fe427ac3a36847f8021d51", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "David Schofield", "character": "Dart Player", "id": 939, "credit_id": "52fe427ac3a36847f8021d55", "cast_id": 22, "profile_path": "/6FdYsGTI85M5s5QDbFCogmQWsOR.jpg", "order": 6}, {"name": "Brian Glover", "character": "Chess Player", "id": 14468, "credit_id": "52fe427ac3a36847f8021d59", "cast_id": 23, "profile_path": "/dUqgIdAO8jctUM4ordJ0cbovR4M.jpg", "order": 7}, {"name": "Rik Mayall", "character": "2nd Chess Player", "id": 14469, "credit_id": "52fe427ac3a36847f8021d5d", "cast_id": 24, "profile_path": "/wntKz7ORqD8mAsME6CFJdWTn6m.jpg", "order": 8}, {"name": "Sean Baker", "character": "2nd Dart Player", "id": 14470, "credit_id": "52fe427ac3a36847f8021d61", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Paddy Ryan", "character": "First Werewolf", "id": 14471, "credit_id": "52fe427ac3a36847f8021d65", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Anne-Marie Davies", "character": "Nurse Susan Gallagher", "id": 14472, "credit_id": "52fe427ac3a36847f8021d69", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021cf1", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.8, "runtime": 97}, "9007": {"poster_path": "/d25cTIEuTSMsbaG9ltIxHkKReBl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102854431, "overview": "Shortly after David Abbott moves into his new San Francisco digs, he has an unwelcome visitor on his hands: winsome Elizabeth Martinson, who asserts that the apartment is hers -- and promptly vanishes. When she starts appearing and disappearing at will, David thinks she's a ghost, while Elizabeth is convinced she's alive.", "video": false, "id": 9007, "genres": [{"id": 35, "name": "Comedy"}], "title": "Just Like Heaven", "tagline": "It's a wonderful afterlife.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425123", "adult": false, "backdrop_path": "/fMXWvAU0EpeGK5IGewWU7Myh32h.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "MacDonald/Parkes Productions", "id": 384}], "release_date": "2005-09-16", "popularity": 0.858921145609978, "original_title": "Just Like Heaven", "budget": 58000000, "cast": [{"name": "Reese Witherspoon", "character": "Dr. Elizabeth Masterson", "id": 368, "credit_id": "52fe44d0c3a36847f80ab9c3", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Mark Ruffalo", "character": "David Abbott", "id": 103, "credit_id": "52fe44d0c3a36847f80ab9c7", "cast_id": 2, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 1}, {"name": "Donal Logue", "character": "Jack Houriskey", "id": 10825, "credit_id": "52fe44d0c3a36847f80ab9cb", "cast_id": 3, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 2}, {"name": "Dina Spybey-Waters", "character": "Abby Brody", "id": 56567, "credit_id": "52fe44d0c3a36847f80ab9cf", "cast_id": 4, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 3}, {"name": "Ben Shenkman", "character": "Dr. Brett Rushton", "id": 6437, "credit_id": "52fe44d0c3a36847f80ab9d3", "cast_id": 5, "profile_path": "/ocLEexcLxffgLJ41wuqc80YmdeY.jpg", "order": 4}, {"name": "Jon Heder", "character": "Darryl", "id": 53926, "credit_id": "52fe44d0c3a36847f80ab9e3", "cast_id": 14, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 5}, {"name": "Ivana Mili\u010devi\u0107", "character": "Katrina", "id": 29930, "credit_id": "52fe44d0c3a36847f80ab9e7", "cast_id": 15, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 6}, {"name": "Caroline Aaron", "character": "Grace", "id": 1910, "credit_id": "52fe44d0c3a36847f80aba27", "cast_id": 26, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 7}, {"name": "Rosalind Chao", "character": "Fran", "id": 74073, "credit_id": "52fe44d0c3a36847f80aba2b", "cast_id": 27, "profile_path": "/kTcPnmYxm9ez3vI2yX5Nm6Y3dXy.jpg", "order": 8}, {"name": "Ron Canada", "character": "Dr. Walsh", "id": 85170, "credit_id": "52fe44d0c3a36847f80aba2f", "cast_id": 28, "profile_path": "/wN1myF7qnxJCks6OuS3BXVlShSG.jpg", "order": 9}, {"name": "Willie Garson", "character": "Maitre D'", "id": 1542, "credit_id": "52fe44d0c3a36847f80aba33", "cast_id": 29, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 10}, {"name": "Gabrielle Made", "character": "Nurse Maria", "id": 1079782, "credit_id": "52fe44d0c3a36847f80aba37", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "William Caploe", "character": "Nurse Bill", "id": 1124108, "credit_id": "52fe44d0c3a36847f80aba3b", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Shulie Cowen", "character": "Nurse Jenny", "id": 170882, "credit_id": "52fe44d0c3a36847f80aba3f", "cast_id": 32, "profile_path": null, "order": 13}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80ab9df", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 6.3, "runtime": 95}, "9008": {"poster_path": "/sYQsmMl4oG56NtFaNkDxuJhhODa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28965197, "overview": "Tells the true story of a 60 Minutes television series expos\u00e9 of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand", "video": false, "id": 9008, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Insider", "tagline": "Two men driven to tell the truth... whatever the cost.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0140352", "adult": false, "backdrop_path": "/xra1bQnjUUNHSebQeRNKJdO2oJ6.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Forward Pass", "id": 675}, {"name": "Kaitz Productions", "id": 8758}, {"name": "Mann/Roth Productions", "id": 8759}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "1999-10-28", "popularity": 1.08399521539416, "original_title": "The Insider", "budget": 68000000, "cast": [{"name": "Al Pacino", "character": "Lowell Bergman", "id": 1158, "credit_id": "52fe44d1c3a36847f80abae3", "cast_id": 12, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Jeffrey Wigand", "id": 934, "credit_id": "52fe44d1c3a36847f80abae7", "cast_id": 13, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Mike Wallace", "id": 290, "credit_id": "52fe44d1c3a36847f80abaeb", "cast_id": 14, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Diane Venora", "character": "Liane Wigand", "id": 6200, "credit_id": "52fe44d1c3a36847f80abaef", "cast_id": 15, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 3}, {"name": "Philip Baker Hall", "character": "Don Hewitt", "id": 4492, "credit_id": "52fe44d1c3a36847f80abaf3", "cast_id": 16, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 4}, {"name": "Lindsay Crouse", "character": "Sharon Tiller", "id": 32225, "credit_id": "52fe44d1c3a36847f80abaf7", "cast_id": 17, "profile_path": "/mAZTWVbtfmC0R4R6TZ3rjhJSW0b.jpg", "order": 5}, {"name": "Debi Mazar", "character": "Debbie De Luca", "id": 5578, "credit_id": "52fe44d1c3a36847f80abafb", "cast_id": 18, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 6}, {"name": "Stephen Tobolowsky", "character": "Eric Kluster", "id": 537, "credit_id": "52fe44d1c3a36847f80abaff", "cast_id": 19, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 7}, {"name": "Colm Feore", "character": "Richard Scruggs", "id": 10132, "credit_id": "52fe44d1c3a36847f80abb03", "cast_id": 20, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 8}, {"name": "Bruce McGill", "character": "Ron Motley", "id": 14888, "credit_id": "52fe44d1c3a36847f80abb07", "cast_id": 21, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 9}, {"name": "Gina Gershon", "character": "Helen Caperelli", "id": 11150, "credit_id": "52fe44d1c3a36847f80abb0b", "cast_id": 22, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 10}, {"name": "Michael Gambon", "character": "Thomas Sandefur", "id": 5658, "credit_id": "52fe44d1c3a36847f80abb0f", "cast_id": 23, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 11}, {"name": "Rip Torn", "character": "John Scanlon", "id": 9626, "credit_id": "52fe44d1c3a36847f80abb13", "cast_id": 24, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 12}, {"name": "Lynne Thigpen", "character": "Mrs. Williams", "id": 71266, "credit_id": "52fe44d1c3a36847f80abb17", "cast_id": 25, "profile_path": "/hxyt6zQokF8LvWnsPPzIik8pJSG.jpg", "order": 13}, {"name": "Hallie Kate Eisenberg", "character": "Barbara Wigand", "id": 15674, "credit_id": "52fe44d1c3a36847f80abb1b", "cast_id": 26, "profile_path": "/hKxnAGbWiiMzOiZKwrbJIul8DTH.jpg", "order": 14}, {"name": "Michael Paul Chan", "character": "Norman the Cameraman", "id": 17355, "credit_id": "52fe44d1c3a36847f80abb1f", "cast_id": 27, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 15}, {"name": "Linda Hart", "character": "Mrs. Wigand", "id": 53602, "credit_id": "52fe44d1c3a36847f80abb23", "cast_id": 28, "profile_path": "/9gzrHfKwWcwVYikfWhqsOWitpnZ.jpg", "order": 16}, {"name": "Robert Harper", "character": "Mark Stern", "id": 41739, "credit_id": "52fe44d1c3a36847f80abb27", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Nestor Serrano", "character": "FBI Agent Robertson", "id": 14331, "credit_id": "52fe44d1c3a36847f80abb2b", "cast_id": 30, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 18}, {"name": "Pete Hamill", "character": "NY Times Reporter", "id": 138243, "credit_id": "52fe44d1c3a36847f80abb2f", "cast_id": 31, "profile_path": "/vViOjpF2teOaHv6adUajffmbrUy.jpg", "order": 19}, {"name": "Wings Hauser", "character": "Tobacco Lawyer", "id": 61153, "credit_id": "52fe44d1c3a36847f80abb33", "cast_id": 32, "profile_path": "/2zNWksskqZgthJ1dD0c2beFf27p.jpg", "order": 20}, {"name": "Cliff Curtis", "character": "Sheikh Fadlallah", "id": 7248, "credit_id": "52fe44d1c3a36847f80abb37", "cast_id": 33, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 21}, {"name": "Renee Olstead", "character": "Deborah Wigand", "id": 155621, "credit_id": "52fe44d1c3a36847f80abb3b", "cast_id": 34, "profile_path": "/Alru3bM9sSE0Q6yeN5fLwNxIy8v.jpg", "order": 22}, {"name": "Gary Sandy", "character": "Sandefur's Lawyer", "id": 172569, "credit_id": "52fe44d1c3a36847f80abb43", "cast_id": 36, "profile_path": "/dLrj1XXmnrktE7vnP7z6hqXYb0K.jpg", "order": 24}, {"name": "Willie C. Carpenter", "character": "John Harris", "id": 20760, "credit_id": "52fe44d1c3a36847f80abb47", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Paul Butler", "character": "Charlie Phillips", "id": 21384, "credit_id": "52fe44d1c3a36847f80abb4b", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Jack Palladino", "character": "Jack Palladino", "id": 1052891, "credit_id": "52fe44d1c3a36847f80abb4f", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Megan Odebash", "character": "Sandra Sutherland", "id": 1052892, "credit_id": "52fe44d1c3a36847f80abb53", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Michael Moore", "character": "Michael Moore", "id": 1414169, "credit_id": "54b90c88c3a368145e00173f", "cast_id": 41, "profile_path": null, "order": 29}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80abaa3", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 7.1, "runtime": 157}, "817": {"poster_path": "/yhg0l1Ddd2thQOSUUQx9jBrGI12.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 310940086, "overview": "When diabolical genius Dr. Evil travels back in time to steal superspy Austin Powers's \"mojo,\" Austin must return to the swingin' '60s himself -- with the help of American agent Felicity Shagwell -- to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions and saves the world in his own unbelievably groovy way.", "video": false, "id": 817, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Austin Powers: The Spy Who Shagged Me", "tagline": "I'm back, baby!", "vote_count": 277, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3QJMI8nqQcwU5JBPy26m8TUXtTN.jpg", "poster_path": "/9fg3fFqjr2ofmgjyWKfKgv6ZLu0.jpg", "id": 1006, "name": "Austin Powers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145660", "adult": false, "backdrop_path": "/5O2FnVv3KScTcvFqam7OfFlSJS3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Eric's Boy", "id": 595}], "release_date": "1999-06-08", "popularity": 1.47699744293081, "original_title": "Austin Powers: The Spy Who Shagged Me", "budget": 33000000, "cast": [{"name": "Mike Myers", "character": "Austin Powers / Dr. Evil / Fat Bastard", "id": 12073, "credit_id": "52fe427bc3a36847f8022039", "cast_id": 25, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Heather Graham", "character": "Felicity Shagwell", "id": 69122, "credit_id": "52fe427bc3a36847f802203d", "cast_id": 28, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 1}, {"name": "Michael York", "character": "Basil Exposition", "id": 13919, "credit_id": "52fe427bc3a36847f8022041", "cast_id": 29, "profile_path": "/xrgHhenCH3c2qKE7dYgOy9WZtZt.jpg", "order": 2}, {"name": "Robert Wagner", "character": "Number Two", "id": 9208, "credit_id": "52fe427bc3a36847f8022045", "cast_id": 31, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 3}, {"name": "Rob Lowe", "character": "Young Number Two", "id": 2879, "credit_id": "52fe427bc3a36847f8022049", "cast_id": 33, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 4}, {"name": "Seth Green", "character": "Scott Evil", "id": 13922, "credit_id": "52fe427bc3a36847f802204d", "cast_id": 34, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 5}, {"name": "Mindy Sterling", "character": "Frau Farbissina", "id": 13924, "credit_id": "52fe427bc3a36847f8022051", "cast_id": 36, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 6}, {"name": "Verne Troyer", "character": "Mini-Me", "id": 10987, "credit_id": "52fe427bc3a36847f8022055", "cast_id": 37, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 7}, {"name": "Elizabeth Hurley", "character": "Vanessa Kensington", "id": 13918, "credit_id": "52fe427bc3a36847f8022059", "cast_id": 38, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 8}, {"name": "Gia Carides", "character": "Robin Spitz Swallows", "id": 14226, "credit_id": "52fe427bc3a36847f802205d", "cast_id": 39, "profile_path": "/hd4wkz74R00PDkMhCMuH2qqH2Yt.jpg", "order": 9}, {"name": "Oliver Muirhead", "character": "British Colonel", "id": 93035, "credit_id": "52fe427bc3a36847f8022073", "cast_id": 43, "profile_path": "/vyWab6wD6r3yP56FA87hwInmdPZ.jpg", "order": 10}, {"name": "Muse Watson", "character": "Klansman", "id": 17348, "credit_id": "52fe427bc3a36847f8022077", "cast_id": 44, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 11}, {"name": "Scott Cooper", "character": "Klansman's Son - Bobby", "id": 65167, "credit_id": "52fe427bc3a36847f802207b", "cast_id": 45, "profile_path": "/kmlJ2OLQmFLbdwCxUuofPgvYjjP.jpg", "order": 12}, {"name": "Kevin Cooney", "character": "NORAD Colonel", "id": 25711, "credit_id": "52fe427bc3a36847f802207f", "cast_id": 46, "profile_path": "/3z2Rte6xznb5Bth6mar42waHc59.jpg", "order": 13}, {"name": "Will Ferrell", "character": "Mustafa", "id": 23659, "credit_id": "54f8de0392514118f0000055", "cast_id": 47, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 14}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021fb1", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.0, "runtime": 95}, "818": {"poster_path": "/tFR7dTbX5BsmoUwKHfa2cWoZbwK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 296633907, "overview": "The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe -- '70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.", "video": false, "id": 818, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Austin Powers in Goldmember", "tagline": "He's still evil... He's still deadly... and he's still surrounded by frickin' idiots!", "vote_count": 297, "homepage": "http://www.austinpowers.com/", "belongs_to_collection": {"backdrop_path": "/3QJMI8nqQcwU5JBPy26m8TUXtTN.jpg", "poster_path": "/9fg3fFqjr2ofmgjyWKfKgv6ZLu0.jpg", "id": 1006, "name": "Austin Powers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0295178", "adult": false, "backdrop_path": "/hYUoSWYv5fdeh9EuZViWqXrGXGT.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Team Todd", "id": 598}], "release_date": "2002-07-22", "popularity": 0.934246616046085, "original_title": "Austin Powers in Goldmember", "budget": 63000000, "cast": [{"name": "Mike Myers", "character": "Austin Powers / Dr. Evil / Goldmember / Fat Bastard", "id": 12073, "credit_id": "52fe427bc3a36847f8022183", "cast_id": 29, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Beyonc\u00e9 Knowles", "character": "Foxxy Cleopatra", "id": 14386, "credit_id": "52fe427bc3a36847f8022187", "cast_id": 33, "profile_path": "/mDDpeDtxuL9Af59rOB8DAjni50A.jpg", "order": 1}, {"name": "Seth Green", "character": "Scott Evil", "id": 13922, "credit_id": "52fe427bc3a36847f802218b", "cast_id": 34, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 2}, {"name": "Michael York", "character": "Basil Exposition", "id": 13919, "credit_id": "52fe427bc3a36847f802218f", "cast_id": 35, "profile_path": "/xrgHhenCH3c2qKE7dYgOy9WZtZt.jpg", "order": 3}, {"name": "Mindy Sterling", "character": "Frau Farbissina", "id": 13924, "credit_id": "52fe427bc3a36847f8022193", "cast_id": 36, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 4}, {"name": "Verne Troyer", "character": "Mini Me", "id": 10987, "credit_id": "52fe427bc3a36847f8022197", "cast_id": 37, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 5}, {"name": "Michael Caine", "character": "Nigel Powers", "id": 3895, "credit_id": "52fe427bc3a36847f802219b", "cast_id": 38, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 6}, {"name": "Fred Savage", "character": "Number Three", "id": 2223, "credit_id": "52fe427bc3a36847f802219f", "cast_id": 39, "profile_path": "/q6u7yhINrALOC9wD2tc6mifQ9sJ.jpg", "order": 7}, {"name": "Diane Mizota", "character": "Fook Mi", "id": 14390, "credit_id": "52fe427bc3a36847f80221a3", "cast_id": 40, "profile_path": "/dTBzm2hhrrptBbxrmlLBe33w9KD.jpg", "order": 8}, {"name": "Carrie Ann Inaba", "character": "Fook Yu", "id": 14391, "credit_id": "52fe427bc3a36847f80221a7", "cast_id": 41, "profile_path": "/crq2RX24ftTdRf6gD7y6lqDVYEZ.jpg", "order": 9}, {"name": "Nobu Matsuhisa", "character": "Mr. Roboto", "id": 7425, "credit_id": "52fe427bc3a36847f80221ab", "cast_id": 42, "profile_path": "/xSR9RmzUTU9K6qZ6Hu5HCS2IJSL.jpg", "order": 10}, {"name": "Robert Wagner", "character": "Number two", "id": 9208, "credit_id": "52fe427bc3a36847f80221bb", "cast_id": 45, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 11}, {"name": "Anna Marie Goddard", "character": "Henchwoman", "id": 162829, "credit_id": "52fe427bc3a36847f80221cb", "cast_id": 48, "profile_path": "/vAHUKfrpqZHIPE5Kz6IkpmXWVLZ.jpg", "order": 12}, {"name": "Aaron Himelstein", "character": "Young Austin", "id": 43373, "credit_id": "52fe427bc3a36847f80221cf", "cast_id": 49, "profile_path": "/dx7qDc6tMxsfP9jAYkCVClX6p8q.jpg", "order": 13}, {"name": "Josh Zuckerman", "character": "Young Evil", "id": 62816, "credit_id": "52fe427bc3a36847f80221d3", "cast_id": 50, "profile_path": "/rasXHgYeUA2X72sF8VuPUcB7c6G.jpg", "order": 14}, {"name": "Evan Farmer", "character": "Young Number Two", "id": 180084, "credit_id": "52fe427bc3a36847f80221d7", "cast_id": 51, "profile_path": "/t76ZaajRf9jNjzQudNRhKfRkbmn.jpg", "order": 15}, {"name": "Tommy Lister", "character": "Prisoner #2", "id": 8396, "credit_id": "52fe427bc3a36847f80221db", "cast_id": 52, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 16}, {"name": "Nichole Hiltz", "character": "French Teacher", "id": 59090, "credit_id": "52fe427bc3a36847f80221df", "cast_id": 53, "profile_path": "/6MWOvsODHSwHSbAnEmKODRZqR49.jpg", "order": 17}, {"name": "Gwyneth Paltrow", "character": "Dixie Normous", "id": 12052, "credit_id": "54db09a3925141619e001171", "cast_id": 55, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 18}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe427bc3a36847f80220e9", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.0, "runtime": 94}, "819": {"poster_path": "/80LV2GvhvMEuOutxgQwbRYpo0Vv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 165615285, "overview": "Two gangsters seek revenge on the state jail worker who during their stay at a youth prison sexually abused them. A sensational court hearing takes place to charge him for the crimes. A moving drama from director Barry Levinson.", "video": false, "id": 819, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sleepers", "tagline": "When friendship runs deeper than blood.", "vote_count": 152, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117665", "adult": false, "backdrop_path": "/ie40d2IO3iFADzWs4KLV3mvBtl5.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Propaganda Films", "id": 278}, {"name": "Baltimore Pictures", "id": 11407}], "release_date": "1996-10-18", "popularity": 0.636131408399306, "original_title": "Sleepers", "budget": 44, "cast": [{"name": "Robert De Niro", "character": "Father Bobby", "id": 380, "credit_id": "52fe427bc3a36847f802228b", "cast_id": 19, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Michael Sullivan", "id": 287, "credit_id": "52fe427bc3a36847f80222a7", "cast_id": 26, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Sean Nokes", "id": 4724, "credit_id": "52fe427bc3a36847f8022283", "cast_id": 17, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Jason Patric", "character": "Lorenzo 'Shakes' Carcaterra", "id": 12261, "credit_id": "52fe427bc3a36847f802229f", "cast_id": 24, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 3}, {"name": "Ron Eldard", "character": "John Reilly", "id": 12260, "credit_id": "52fe427bc3a36847f802229b", "cast_id": 23, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 4}, {"name": "Billy Crudup", "character": "Tommy Marcano", "id": 8289, "credit_id": "52fe427bc3a36847f8022287", "cast_id": 18, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 5}, {"name": "Dustin Hoffman", "character": "Danny Snyder", "id": 4483, "credit_id": "52fe427bc3a36847f8022297", "cast_id": 22, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 6}, {"name": "Minnie Driver", "character": "Carol Martinez", "id": 6613, "credit_id": "52fe427bc3a36847f8022293", "cast_id": 21, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 7}, {"name": "Vittorio Gassman", "character": "King Benny", "id": 12259, "credit_id": "52fe427bc3a36847f802228f", "cast_id": 20, "profile_path": "/qjSYEX5zQuuJzRvznpFz5Xqfbvv.jpg", "order": 8}, {"name": "Joseph Perrino", "character": "Young Lorenzo 'Shakes' Carcaterra", "id": 1223778, "credit_id": "537e6fcdc3a36805a8001b5d", "cast_id": 34, "profile_path": "/wXM6fXVw4xhWJqxYbwwoLC0UpCr.jpg", "order": 9}, {"name": "Brad Renfro", "character": "Young Michael Sullivan", "id": 51214, "credit_id": "537e6f9dc3a36805a4001b72", "cast_id": 33, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 10}, {"name": "Geoffrey Wigdor", "character": "Young John Reilly", "id": 12263, "credit_id": "52fe427bc3a36847f80222a3", "cast_id": 25, "profile_path": "/jXoKqE67lxsCx2q3TGSi0jdv5wQ.jpg", "order": 11}, {"name": "Jonathan Tucker", "character": "Young Tommy Marcano", "id": 17243, "credit_id": "537e73adc3a3680598001be7", "cast_id": 37, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 12}, {"name": "Terry Kinney", "character": "Ralph Ferguson", "id": 11067, "credit_id": "52fe427bc3a36847f80222ab", "cast_id": 27, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 13}, {"name": "Bruno Kirby", "character": "Shakes' Father", "id": 9257, "credit_id": "52fe427bc3a36847f80222af", "cast_id": 28, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 14}, {"name": "Eugene Byrd", "character": "Rizzo", "id": 342, "credit_id": "52fe427bc3a36847f80222b7", "cast_id": 30, "profile_path": "/ab4zEcqdBSjpaz4CPQ2Z6q4rLmO.jpg", "order": 15}, {"name": "Frank Medrano", "character": "Fat Mancho", "id": 1216752, "credit_id": "537e75420e0a2624b4002dbf", "cast_id": 38, "profile_path": null, "order": 16}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe427bc3a36847f802222b", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 7.1, "runtime": 147}, "820": {"poster_path": "/9bmXpKDJv2kdtD4QNexErjGTIOz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205405498, "overview": "New Orleans District Attorney Jim Garrison discovers there's more to the Kennedy assassination than the official story.", "video": false, "id": 820, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "JFK", "tagline": "The story that won\u2019t go away.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0102138", "adult": false, "backdrop_path": "/5qa7B2n3MCJOEr1m87JbxC8lzU4.jpg", "production_companies": [{"name": "Camelot Productions", "id": 523}, {"name": "Canal Plus Group", "id": 524}, {"name": "Ixtlan Productions", "id": 525}], "release_date": "1991-12-20", "popularity": 1.09919873409829, "original_title": "JFK", "budget": 40000000, "cast": [{"name": "Kevin Costner", "character": "Jim Garrison", "id": 1269, "credit_id": "52fe427bc3a36847f80223ab", "cast_id": 23, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Clay Shaw/Clay Bertrand", "id": 2176, "credit_id": "52fe427bc3a36847f80223af", "cast_id": 24, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Lee Harvey Oswald", "id": 64, "credit_id": "52fe427bc3a36847f80223b3", "cast_id": 25, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Willie O'Keefe", "id": 4724, "credit_id": "52fe427bc3a36847f80223b7", "cast_id": 26, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Michael Rooker", "character": "Bill Broussard", "id": 12132, "credit_id": "52fe427bc3a36847f80223bb", "cast_id": 27, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 4}, {"name": "Jack Lemmon", "character": "Jack Martin", "id": 3151, "credit_id": "52fe427bc3a36847f80223bf", "cast_id": 28, "profile_path": "/1Y3wQsqRALOL3LZQtKmulmN3qff.jpg", "order": 5}, {"name": "Laurie Metcalf", "character": "Susie Cox", "id": 12133, "credit_id": "52fe427bc3a36847f80223c3", "cast_id": 29, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 6}, {"name": "Sissy Spacek", "character": "Liz Garrison", "id": 5606, "credit_id": "52fe427bc3a36847f80223c7", "cast_id": 30, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 7}, {"name": "Joe Pesci", "character": "David Ferrie", "id": 4517, "credit_id": "52fe427bc3a36847f80223cb", "cast_id": 31, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 8}, {"name": "John Candy", "character": "Dean Andrews", "id": 7180, "credit_id": "52fe427bc3a36847f80223cf", "cast_id": 32, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 9}, {"name": "Pruitt Taylor Vince", "character": "Lee Bowers", "id": 3201, "credit_id": "52fe427bc3a36847f80223d3", "cast_id": 33, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 10}, {"name": "Jay O. Sanders", "character": "Lou Ivon", "id": 6067, "credit_id": "52fe427bc3a36847f80223d7", "cast_id": 34, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 11}, {"name": "Walter Matthau", "character": "Senator Long", "id": 6837, "credit_id": "52fe427bc3a36847f80223db", "cast_id": 35, "profile_path": "/xJVkvprOnzP5Zdh5y63y8HHniDZ.jpg", "order": 12}, {"name": "Sally Kirkland", "character": "Rose Cheramie", "id": 12134, "credit_id": "52fe427bc3a36847f80223df", "cast_id": 36, "profile_path": "/9hDatSXreVqPtEylLXxMcCLNktL.jpg", "order": 13}, {"name": "Donald Sutherland", "character": "X", "id": 55636, "credit_id": "52fe427bc3a36847f80223e3", "cast_id": 37, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 14}, {"name": "Ed Asner", "character": "Guy Bannister", "id": 68812, "credit_id": "52fe427bc3a36847f80223e7", "cast_id": 38, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 15}, {"name": "Brian Doyle-Murray", "character": "Jack Ruby", "id": 1535, "credit_id": "52fe427bc3a36847f80223eb", "cast_id": 39, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 16}, {"name": "Ray LePere", "character": "Abraham Zapruder", "id": 12136, "credit_id": "52fe427bc3a36847f80223ef", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Vincent D'Onofrio", "character": "Bill Newman", "id": 7132, "credit_id": "52fe427bc3a36847f80223f3", "cast_id": 41, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 18}, {"name": "Tom Howard", "character": "Lyndon B. Johnson", "id": 12137, "credit_id": "52fe427bc3a36847f80223f7", "cast_id": 42, "profile_path": "/dT1rqv62kbbWniPuhmuzFjhwTqP.jpg", "order": 19}, {"name": "Lolita Davidovich", "character": "Beverly Oliver", "id": 12139, "credit_id": "52fe427bc3a36847f80223fb", "cast_id": 44, "profile_path": "/eeGUO6uPzGp5hGfZIYAudfSZ8XM.jpg", "order": 21}, {"name": "Jim Garrison", "character": "Earl Warren", "id": 12128, "credit_id": "52fe427bc3a36847f80223ff", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Wayne Knight", "character": "Numa Bertel", "id": 4201, "credit_id": "52fe427bc3a36847f8022403", "cast_id": 46, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 23}, {"name": "Gary Grubbs", "character": "Al Oser", "id": 68180, "credit_id": "52fe427bc3a36847f8022407", "cast_id": 47, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 24}, {"name": "Beata Pozniak", "character": "Marina Oswald", "id": 156310, "credit_id": "52fe427bc3a36847f802240b", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Tony Plana", "character": "Carlos Bringuier", "id": 41737, "credit_id": "52fe427bc3a36847f802240f", "cast_id": 49, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 26}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe427bc3a36847f8022329", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 7.4, "runtime": 189}, "9029": {"poster_path": "/NWQmNdQwm7blsBNSdpWIfqkGte.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170000000, "overview": "During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.", "video": false, "id": 9029, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "What Happens in Vegas", "tagline": "Get Lucky", "vote_count": 220, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sh", "name": ""}], "imdb_id": "tt1033643", "adult": false, "backdrop_path": "/925k5OHcumv1xYNwYnDdXiVPMTf.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2008-05-09", "popularity": 1.12370987541803, "original_title": "What Happens in Vegas", "budget": 35000000, "cast": [{"name": "Ashton Kutcher", "character": "Jack Fuller", "id": 18976, "credit_id": "52fe44d3c3a36847f80ac4f9", "cast_id": 23, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Joy McNally", "id": 6941, "credit_id": "52fe44d3c3a36847f80ac4a1", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Lake Bell", "character": "Tipper", "id": 25703, "credit_id": "52fe44d3c3a36847f80ac4a5", "cast_id": 5, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Dr. Twitchell", "id": 15758, "credit_id": "52fe44d3c3a36847f80ac4a9", "cast_id": 6, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Treat Williams", "character": "Jack Fuller Sr.", "id": 4515, "credit_id": "52fe44d3c3a36847f80ac4ad", "cast_id": 8, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 4}, {"name": "Michelle Krusiec", "character": "Chong", "id": 55253, "credit_id": "52fe44d3c3a36847f80ac4b1", "cast_id": 9, "profile_path": "/9wA6VGNr3Z6lY8DZGBO9MOTCSB3.jpg", "order": 5}, {"name": "Dennis Miller", "character": "Judge Whopper", "id": 18326, "credit_id": "52fe44d3c3a36847f80ac4b5", "cast_id": 10, "profile_path": "/e1SGDAB2IArMV8oiTceRYD4DoGS.jpg", "order": 6}, {"name": "Dennis Farina", "character": "Richard Banger", "id": 1117, "credit_id": "52fe44d3c3a36847f80ac4b9", "cast_id": 11, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 7}, {"name": "Jason Sudeikis", "character": "Mason", "id": 58224, "credit_id": "52fe44d3c3a36847f80ac4bd", "cast_id": 12, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 8}, {"name": "Zach Galifianakis", "character": "Dave the bear", "id": 58225, "credit_id": "52fe44d3c3a36847f80ac4c1", "cast_id": 13, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 9}, {"name": "Rob Corddry", "character": "Hater", "id": 52997, "credit_id": "52fe44d3c3a36847f80ac4f5", "cast_id": 22, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 10}, {"name": "Krysten Ritter", "character": "Kelly", "id": 78080, "credit_id": "52fe44d3c3a36847f80ac4fd", "cast_id": 24, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 11}, {"name": "Billy Eichner", "character": "Band Leader", "id": 973651, "credit_id": "53f77060c3a3683400005936", "cast_id": 25, "profile_path": "/1xCPFY4Yh7evbXILi8JRDRqUWeS.jpg", "order": 12}], "directors": [{"name": "Tom Vaughan", "department": "Directing", "job": "Director", "credit_id": "52fe44d3c3a36847f80ac497", "profile_path": "/opDMR3lConDBNSiVmqt4h6TMFBF.jpg", "id": 56717}], "vote_average": 5.8, "runtime": 99}, "8329": {"poster_path": "/dYd1GwIZdZLg5uUTr32BIVAGDqt.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 32492948, "overview": "A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.", "video": false, "id": 8329, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "[REC]", "tagline": "One witness. One camera", "vote_count": 233, "homepage": "http://www.3l-filmverleih.de/rec", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1038988", "adult": false, "backdrop_path": "/4NljLiqgOKHPg3QKUgWTyr8QVau.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2007-11-23", "popularity": 0.405962649059236, "original_title": "[REC]", "budget": 1500000, "cast": [{"name": "Manuela Velasco", "character": "\u00c1ngela Vidal", "id": 34793, "credit_id": "52fe449fc3a36847f80a0a55", "cast_id": 1, "profile_path": "/kQQrHFhTCazfWScBwTaSTtRFWUU.jpg", "order": 0}, {"name": "Ferran Terraza", "character": "Manu", "id": 54532, "credit_id": "52fe449fc3a36847f80a0abf", "cast_id": 22, "profile_path": "/7lvI2rC9emIAkEZeW5zYGr3RKnw.jpg", "order": 1}, {"name": "Martha Carbonell", "character": "Conchita Izquierdo", "id": 54523, "credit_id": "52fe449fc3a36847f80a0a69", "cast_id": 7, "profile_path": "/vdNJsDSvNggyFRYFAJer6ZTzyph.jpg", "order": 2}, {"name": "David Vert", "character": "Alex", "id": 54521, "credit_id": "52fe449fc3a36847f80a0a61", "cast_id": 5, "profile_path": "/gcosWQzYIH7HyqcFE3nUIALTbov.jpg", "order": 3}, {"name": "Carlos Lasarte", "character": "C\u00e9sar", "id": 54519, "credit_id": "52fe449fc3a36847f80a0a59", "cast_id": 3, "profile_path": "/kP7hWWZsf6GOERaKwcCofiZaBoh.jpg", "order": 4}, {"name": "Pablo Rosso", "character": "Marcos", "id": 54520, "credit_id": "52fe449fc3a36847f80a0a5d", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Vicente Gil", "character": "Polizist", "id": 54522, "credit_id": "52fe449fc3a36847f80a0a65", "cast_id": 6, "profile_path": "/6ZppZwmjxyWbELf1LEZa6TL4UE3.jpg", "order": 6}, {"name": "Carlos Vicente", "character": "Guillem", "id": 54524, "credit_id": "52fe449fc3a36847f80a0a6d", "cast_id": 8, "profile_path": "/9GKNu8NJO40CU2t7U4ymBCMV5uE.jpg", "order": 7}, {"name": "Jorge Yamam", "character": "Sergio", "id": 147878, "credit_id": "52fe449fc3a36847f80a0ac3", "cast_id": 23, "profile_path": "/5JTmGMnRGENDzUyOTf62K9vy2Rl.jpg", "order": 8}], "directors": [{"name": "Jaume Balaguer\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe449fc3a36847f80a0a73", "profile_path": "/zH7TzIJgzrYKbUecPLoTEPP7qxX.jpg", "id": 54525}, {"name": "Paco Plaza", "department": "Directing", "job": "Director", "credit_id": "52fe449fc3a36847f80a0a79", "profile_path": "/kj5tBKhLcC8PcZHwGerEMZakXi5.jpg", "id": 54526}], "vote_average": 6.8, "runtime": 78}, "824": {"poster_path": "/b09kbewjaqzHabMFcZpEImigUm1.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177677823, "overview": "A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club's most notorious and beautiful star.", "video": false, "id": 824, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Moulin Rouge!", "tagline": "No Laws. No Limits. One Rule. Never Fall In Love.", "vote_count": 319, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0203009", "adult": false, "backdrop_path": "/qj3TAGH89t8nkdTH7N6Ge1HTvGj.jpg", "production_companies": [{"name": "Bazmark Films", "id": 240}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2001-05-16", "popularity": 0.982188358380475, "original_title": "Moulin Rouge!", "budget": 52500000, "cast": [{"name": "Nicole Kidman", "character": "Satine", "id": 2227, "credit_id": "52fe427cc3a36847f8022779", "cast_id": 20, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Christian", "id": 3061, "credit_id": "52fe427cc3a36847f802277d", "cast_id": 21, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Toulouse-Lautrec", "id": 5723, "credit_id": "52fe427cc3a36847f8022789", "cast_id": 24, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "The Unconscious Argentinean", "id": 388, "credit_id": "52fe427cc3a36847f8022785", "cast_id": 23, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Richard Roxburgh", "character": "The Duke", "id": 12206, "credit_id": "52fe427cc3a36847f8022781", "cast_id": 22, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 4}, {"name": "Garry McDonald", "character": "The Doctor", "id": 12211, "credit_id": "52fe427cc3a36847f80227a1", "cast_id": 30, "profile_path": null, "order": 5}, {"name": "Jacek Koman", "character": "The Unconscious Argentinean", "id": 12210, "credit_id": "52fe427cc3a36847f802279d", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Matthew Whittet", "character": "Satie", "id": 12212, "credit_id": "52fe427cc3a36847f80227a5", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Kerry Walker", "character": "Marie", "id": 10756, "credit_id": "52fe427cc3a36847f80227a9", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Caroline O'Connor", "character": "Nini Legs in the Air", "id": 12209, "credit_id": "52fe427cc3a36847f8022799", "cast_id": 28, "profile_path": "/bxoDCPHFPquOjCbv3UbnkY6JHY4.jpg", "order": 9}, {"name": "Christine Anu", "character": "Arabia", "id": 548125, "credit_id": "52fe427cc3a36847f80227c1", "cast_id": 38, "profile_path": null, "order": 10}, {"name": "Natalie Mendoza", "character": "China Doll", "id": 57575, "credit_id": "52fe427cc3a36847f80227ad", "cast_id": 33, "profile_path": "/4yeZSEKGvUiCcljsFub2SxFGGuz.jpg", "order": 11}, {"name": "Lara Mulcahy", "character": "M\u00f4me Fromage", "id": 953445, "credit_id": "52fe427cc3a36847f80227b1", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "David Wenham", "character": "Audrey", "id": 1371, "credit_id": "52fe427cc3a36847f802278d", "cast_id": 25, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 13}, {"name": "Kylie Minogue", "character": "The Green Fairy", "id": 12207, "credit_id": "52fe427cc3a36847f8022791", "cast_id": 26, "profile_path": "/8vOTxDParoNySQrUI2OM9zQkVPu.jpg", "order": 14}, {"name": "Ozzy Osbourne", "character": "Voice of the Green Fairy", "id": 12208, "credit_id": "52fe427cc3a36847f8022795", "cast_id": 27, "profile_path": "/9EkHsyIW3xjch0MJ6LtrvMmGhdL.jpg", "order": 15}, {"name": "Deobia Oparei", "character": "Le Chocolat", "id": 58758, "credit_id": "52fe427cc3a36847f80227b5", "cast_id": 35, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 16}, {"name": "Linal Haft", "character": "Warner", "id": 75258, "credit_id": "52fe427cc3a36847f80227b9", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Keith Robinson", "character": "Le Petomane", "id": 1280478, "credit_id": "52fe427cc3a36847f80227bd", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Peter Whitford", "character": "Stage Manager", "id": 127137, "credit_id": "52fe427cc3a36847f80227c5", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Norman Kaye", "character": "Satine's Doctor", "id": 97330, "credit_id": "52fe427cc3a36847f80227c9", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Arthur Dignam", "character": "Christian's Father", "id": 108924, "credit_id": "52fe427cc3a36847f80227cd", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Carole Skinner", "character": "Landlady", "id": 975417, "credit_id": "52fe427cc3a36847f80227d1", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Jonathan Hardy", "character": "Man in the Moon", "id": 75428, "credit_id": "52fe427cc3a36847f80227d5", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Pl\u00e1cido Domingo", "character": "Voice of Man in the Moon (as Placido Domingo)", "id": 77886, "credit_id": "52fe427cc3a36847f80227d9", "cast_id": 44, "profile_path": "/w7BShaJOG0aquiUb1Sxd3ocrev6.jpg", "order": 24}, {"name": "Kiruna Stamell", "character": "La Petite Princesse", "id": 1250098, "credit_id": "52fe427cc3a36847f80227dd", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Anthony Young", "character": "Orchestra Member", "id": 1280479, "credit_id": "52fe427cc3a36847f80227e1", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Dee Donavan", "character": "Character Rake", "id": 1280480, "credit_id": "52fe427cc3a36847f80227e5", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Johnny Lockwood", "character": "Character Rake", "id": 1233684, "credit_id": "52fe427cc3a36847f80227e9", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Don Reid", "character": "Character Rake", "id": 93520, "credit_id": "52fe427cc3a36847f80227ed", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Tara Morice", "character": "Prostitute", "id": 65010, "credit_id": "52fe427cc3a36847f80227f1", "cast_id": 50, "profile_path": "/nrBPoSRIlmWsqRZkfYIwPfBSMrm.jpg", "order": 30}, {"name": "Daniel Scott", "character": "Absinthe Drinker / Guitarist", "id": 1280481, "credit_id": "52fe427cc3a36847f80227f5", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Veronica Beattie", "character": "Montmartre Dance Team", "id": 1280482, "credit_id": "52fe427cc3a36847f80227f9", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Lisa Callingham", "character": "Montmartre Dance Team", "id": 1280483, "credit_id": "52fe427cc3a36847f80227fd", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Rosetta Cook", "character": "Montmartre Dance Team", "id": 1280484, "credit_id": "52fe427cc3a36847f8022801", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "Fleur Denny", "character": "Montmartre Dance Team", "id": 1280485, "credit_id": "52fe427cc3a36847f8022805", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Kelly Grauer", "character": "Montmartre Dance Team", "id": 1280486, "credit_id": "52fe427cc3a36847f8022809", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Jaclyn Hanson", "character": "Montmartre Dance Team", "id": 1280487, "credit_id": "52fe427cc3a36847f802280d", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Michelle Hopper", "character": "Montmartre Dance Team", "id": 1280488, "credit_id": "52fe427cc3a36847f8022811", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Fallon King", "character": "Montmartre Dance Team", "id": 1280489, "credit_id": "52fe427cc3a36847f8022815", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Wendy McMahon", "character": "Montmartre Dance Team", "id": 1280490, "credit_id": "52fe427cc3a36847f8022819", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Tracie Morley", "character": "Montmartre Dance Team", "id": 1280491, "credit_id": "52fe427cc3a36847f802281d", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Sue-Ellen Shook", "character": "Montmartre Dance Team", "id": 1280492, "credit_id": "52fe427cc3a36847f8022821", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Jenny Wilson", "character": "Montmartre Dance Team", "id": 1280493, "credit_id": "52fe427cc3a36847f8022825", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Luke Alleva", "character": "Montmartre Dance Team", "id": 1280494, "credit_id": "52fe427cc3a36847f8022829", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Andrew Aroustian", "character": "Montmartre Dance Team", "id": 1280495, "credit_id": "52fe427cc3a36847f802282d", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Stephen Colyer", "character": "Montmartre Dance Team", "id": 1280496, "credit_id": "52fe427cc3a36847f8022831", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Steve Grace", "character": "Montmartre Dance Team (as Steven Grace)", "id": 543657, "credit_id": "52fe427cc3a36847f8022835", "cast_id": 67, "profile_path": null, "order": 47}, {"name": "Mark Hodge", "character": "Montmartre Dance Team", "id": 1280497, "credit_id": "52fe427cc3a36847f8022839", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Cameron Mitchell", "character": "Montmartre Dance Team", "id": 1280498, "credit_id": "52fe427cc3a36847f802283d", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Deon Nuku", "character": "Montmartre Dance Team", "id": 1280499, "credit_id": "52fe427cc3a36847f8022841", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Shaun Parker", "character": "Montmartre Dance Team", "id": 1280500, "credit_id": "52fe427cc3a36847f8022845", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Troy Phillips", "character": "Montmartre Dance Team", "id": 1280501, "credit_id": "52fe427cc3a36847f8022849", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Rodney Syaranamual", "character": "Montmartre Dance Team", "id": 1280502, "credit_id": "52fe427cc3a36847f802284d", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Ashley Wallen", "character": "Montmartre Dance Team", "id": 1280503, "credit_id": "52fe427cc3a36847f8022851", "cast_id": 74, "profile_path": null, "order": 54}, {"name": "Nathan Wright", "character": "Montmartre Dance Team", "id": 970752, "credit_id": "52fe427cc3a36847f8022855", "cast_id": 75, "profile_path": null, "order": 55}, {"name": "Susan Black", "character": "Paris Dance Team", "id": 1280504, "credit_id": "52fe427cc3a36847f8022859", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "Nicole Brooks", "character": "Paris Dance Team", "id": 174283, "credit_id": "52fe427cc3a36847f802285d", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Danielle Brown", "character": "Paris Dance Team", "id": 1280505, "credit_id": "52fe427cc3a36847f8022861", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Anastacia Flewin", "character": "Paris Dance Team", "id": 1280506, "credit_id": "52fe427cc3a36847f8022865", "cast_id": 79, "profile_path": null, "order": 59}, {"name": "Fiona Gage", "character": "Paris Dance Team", "id": 1280507, "credit_id": "52fe427cc3a36847f8022869", "cast_id": 80, "profile_path": null, "order": 60}, {"name": "Alex Harrington", "character": "Paris Dance Team", "id": 1280508, "credit_id": "52fe427cc3a36847f802286d", "cast_id": 81, "profile_path": null, "order": 61}, {"name": "Camilla Jakimowicz", "character": "Paris Dance Team", "id": 1280509, "credit_id": "52fe427cc3a36847f8022871", "cast_id": 82, "profile_path": null, "order": 62}, {"name": "Rochelle Jones", "character": "Paris Dance Team", "id": 1280510, "credit_id": "52fe427cc3a36847f8022875", "cast_id": 83, "profile_path": null, "order": 63}, {"name": "Caroline Kaspar", "character": "Paris Dance Team", "id": 1280511, "credit_id": "52fe427cc3a36847f8022879", "cast_id": 84, "profile_path": null, "order": 64}, {"name": "Mandy Liddell", "character": "Paris Dance Team", "id": 1280512, "credit_id": "52fe427cc3a36847f802287d", "cast_id": 85, "profile_path": null, "order": 65}, {"name": "Melanie Mackay", "character": "Paris Dance Team", "id": 1280513, "credit_id": "52fe427cc3a36847f8022881", "cast_id": 86, "profile_path": null, "order": 66}, {"name": "Elise Mann", "character": "Paris Dance Team", "id": 1280514, "credit_id": "52fe427cc3a36847f8022885", "cast_id": 87, "profile_path": null, "order": 67}, {"name": "Charmaine Martin", "character": "Paris Dance Team", "id": 1280515, "credit_id": "52fe427cc3a36847f8022889", "cast_id": 88, "profile_path": null, "order": 68}, {"name": "Michelle Wriggles", "character": "Paris Dance Team", "id": 1280516, "credit_id": "52fe427cc3a36847f802288d", "cast_id": 89, "profile_path": null, "order": 69}, {"name": "Michael Boyd", "character": "Paris Dance Team", "id": 1280517, "credit_id": "52fe427cc3a36847f8022891", "cast_id": 90, "profile_path": null, "order": 70}, {"name": "Lorry D'Ercole", "character": "Paris Dance Team", "id": 1280518, "credit_id": "52fe427cc3a36847f8022895", "cast_id": 91, "profile_path": null, "order": 71}, {"name": "Michael Edge", "character": "Paris Dance Team", "id": 1280519, "credit_id": "52fe427cc3a36847f8022899", "cast_id": 92, "profile_path": null, "order": 72}, {"name": "Glyn Gray", "character": "Paris Dance Team", "id": 1280520, "credit_id": "52fe427cc3a36847f802289d", "cast_id": 93, "profile_path": null, "order": 73}, {"name": "Craig Haines", "character": "Paris Dance Team", "id": 1000227, "credit_id": "52fe427cc3a36847f80228a1", "cast_id": 94, "profile_path": null, "order": 74}, {"name": "Stephen Holford", "character": "Paris Dance Team", "id": 1280521, "credit_id": "52fe427cc3a36847f80228a5", "cast_id": 95, "profile_path": null, "order": 75}, {"name": "Jamie Jewell", "character": "Paris Dance Team", "id": 1280522, "credit_id": "52fe427cc3a36847f80228a9", "cast_id": 96, "profile_path": null, "order": 76}, {"name": "Jason King", "character": "Paris Dance Team", "id": 1280523, "credit_id": "52fe427cc3a36847f80228ad", "cast_id": 97, "profile_path": null, "order": 77}, {"name": "Ryan Males", "character": "Paris Dance Team", "id": 1280524, "credit_id": "52fe427cc3a36847f80228b1", "cast_id": 98, "profile_path": null, "order": 78}, {"name": "Harlin Martin", "character": "Paris Dance Team", "id": 1280525, "credit_id": "52fe427cc3a36847f80228b5", "cast_id": 99, "profile_path": null, "order": 79}, {"name": "Andrew Micallef", "character": "Paris Dance Team", "id": 1280526, "credit_id": "52fe427cc3a36847f80228b9", "cast_id": 100, "profile_path": null, "order": 80}, {"name": "Jonathan Schm\u00f6lzer", "character": "Paris Dance Team", "id": 1280527, "credit_id": "52fe427cc3a36847f80228bd", "cast_id": 101, "profile_path": null, "order": 81}, {"name": "Bradley Spargo", "character": "Paris Dance Team", "id": 1280528, "credit_id": "52fe427cc3a36847f80228c1", "cast_id": 102, "profile_path": null, "order": 82}, {"name": "Joseph 'Pepe' Ashton", "character": "Tabasco Brother", "id": 1280529, "credit_id": "52fe427cc3a36847f80228c5", "cast_id": 103, "profile_path": null, "order": 83}, {"name": "Jordan Ashton", "character": "Tabasco Brother", "id": 1280530, "credit_id": "52fe427cc3a36847f80228c9", "cast_id": 104, "profile_path": null, "order": 84}, {"name": "Marcos Falagan", "character": "Tabasco Brother", "id": 1280531, "credit_id": "52fe427cc3a36847f80228cd", "cast_id": 105, "profile_path": null, "order": 85}, {"name": "Mitchel Falagan", "character": "Tabasco Brother", "id": 1280532, "credit_id": "52fe427cc3a36847f80228d1", "cast_id": 106, "profile_path": null, "order": 86}, {"name": "Chris Mayhew", "character": "Tabasco Brother", "id": 1280533, "credit_id": "52fe427cc3a36847f80228d5", "cast_id": 107, "profile_path": null, "order": 87}, {"name": "Hamish McCann", "character": "Tabasco Brother", "id": 1280534, "credit_id": "52fe427cc3a36847f80228d9", "cast_id": 108, "profile_path": null, "order": 88}, {"name": "Adrien Janssen", "character": "Tabasco Brother", "id": 1280535, "credit_id": "52fe427cc3a36847f80228dd", "cast_id": 109, "profile_path": null, "order": 89}, {"name": "Shaun Holloway", "character": "Tabasco Brother", "id": 1280536, "credit_id": "52fe427cc3a36847f80228e1", "cast_id": 110, "profile_path": null, "order": 90}, {"name": "Darren Dowlut", "character": "Cocoliscious Brother", "id": 1280537, "credit_id": "52fe427cc3a36847f80228e5", "cast_id": 111, "profile_path": null, "order": 91}, {"name": "Dennis Dowlut", "character": "Cocoliscious Brother", "id": 1280538, "credit_id": "52fe427cc3a36847f80228e9", "cast_id": 112, "profile_path": null, "order": 92}, {"name": "Pina Conti", "character": "La Ko Ka Chau", "id": 1280539, "credit_id": "52fe427cc3a36847f80228ed", "cast_id": 113, "profile_path": null, "order": 93}, {"name": "Nandy McClean", "character": "Twin", "id": 1280540, "credit_id": "52fe427cc3a36847f80228f1", "cast_id": 114, "profile_path": null, "order": 94}, {"name": "Maya McClean", "character": "Twin", "id": 1280541, "credit_id": "52fe427cc3a36847f80228f5", "cast_id": 115, "profile_path": null, "order": 95}, {"name": "Patrick Harding-Irmer", "character": "Waiter", "id": 1280542, "credit_id": "52fe427cc3a36847f80228f9", "cast_id": 116, "profile_path": null, "order": 96}, {"name": "Albin Pahernik", "character": "Waiter", "id": 982313, "credit_id": "52fe427cc3a36847f80228fd", "cast_id": 117, "profile_path": null, "order": 97}, {"name": "Aurel Verne", "character": "Waiter", "id": 1280543, "credit_id": "52fe427cc3a36847f8022901", "cast_id": 118, "profile_path": null, "order": 98}, {"name": "Kip Gamblin", "character": "Latin Dancer", "id": 1231101, "credit_id": "52fe427cc3a36847f8022905", "cast_id": 119, "profile_path": null, "order": 99}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe427cc3a36847f8022709", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 7.1, "runtime": 127}, "826": {"poster_path": "/vtPR6tSHeu35rF6qTDw3Yjr9eDg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33300000, "overview": "A classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson , the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.", "video": false, "id": 826, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Bridge on the River Kwai", "tagline": "Be Happy in Your Work...", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0050212", "adult": false, "backdrop_path": "/nzgFFkFmgUD3mwdYB8aZjYJ6rZY.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Horizon Pictures (II)", "id": 11356}], "release_date": "1957-10-02", "popularity": 0.974209821062017, "original_title": "The Bridge on the River Kwai", "budget": 3000000, "cast": [{"name": "William Holden", "character": "Cmdr. Shears", "id": 8252, "credit_id": "52fe427dc3a36847f8022aa5", "cast_id": 12, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 0}, {"name": "Alec Guinness", "character": "Col. Nicholson", "id": 12248, "credit_id": "52fe427dc3a36847f8022aad", "cast_id": 14, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 1}, {"name": "Jack Hawkins", "character": "Maj. Warden", "id": 10018, "credit_id": "52fe427dc3a36847f8022aa9", "cast_id": 13, "profile_path": "/7b6E24ZRLEPJwP0WQauXJPt41Fs.jpg", "order": 2}, {"name": "Sessue Hayakawa", "character": "Col. Saito", "id": 12249, "credit_id": "52fe427dc3a36847f8022ab1", "cast_id": 15, "profile_path": "/LLtMGKvp3k4LiesKdUwXhugEfE.jpg", "order": 3}, {"name": "James Donald", "character": "Maj. Clipton", "id": 12250, "credit_id": "52fe427dc3a36847f8022ab5", "cast_id": 16, "profile_path": "/37GWNFPrHxo6RZf8uY0bdk47BD8.jpg", "order": 4}, {"name": "Geoffrey Horne", "character": "Lt. Joyce", "id": 12251, "credit_id": "52fe427dc3a36847f8022ab9", "cast_id": 17, "profile_path": "/z4A17m3q9u8ScZIwTMPF3nIQVeP.jpg", "order": 5}, {"name": "Andr\u00e9 Morell", "character": "Col. Green", "id": 10029, "credit_id": "52fe427dc3a36847f8022abd", "cast_id": 18, "profile_path": "/slGvSoLbXaR1g23Rxj9N2WyKNWi.jpg", "order": 6}, {"name": "Peter Williams", "character": "Capt. Reeves", "id": 12252, "credit_id": "52fe427dc3a36847f8022ac1", "cast_id": 19, "profile_path": "/urZztHCeApsdgxeo4JZOcYODMjG.jpg", "order": 7}, {"name": "John Boxer", "character": "Major Hughes", "id": 1075445, "credit_id": "52fe427dc3a36847f8022ad1", "cast_id": 22, "profile_path": "/7i914AsImDLfYAUxQG1kqX2AnhE.jpg", "order": 8}, {"name": "Percy Herbert", "character": "Grogan", "id": 33220, "credit_id": "52fe427dc3a36847f8022ad5", "cast_id": 23, "profile_path": "/5ZUj6cyhZ237SbeyF5fwAv2jvjD.jpg", "order": 9}, {"name": "Harold Goodwin", "character": "Baker", "id": 1208202, "credit_id": "52fe427dc3a36847f8022aeb", "cast_id": 29, "profile_path": "/gLhjtadSsrzrdpYrBhV9mZ4uAs5.jpg", "order": 10}, {"name": "Ann Sears", "character": "Nurse", "id": 964548, "credit_id": "52fe427dc3a36847f8022ad9", "cast_id": 25, "profile_path": "/pdTG6k7kUl7nCeu1UTQLWsIc5vm.jpg", "order": 11}, {"name": "Heihachir\u00f4 \u00d4kawa", "character": "Captain Kanematsu", "id": 1075446, "credit_id": "52fe427dc3a36847f8022add", "cast_id": 26, "profile_path": "/kGHkcP5u9DjGX8RBSawWLfdaEVX.jpg", "order": 12}, {"name": "Keiichir\u00f4 Katsumoto", "character": "Lieutenant Miura (also as K. Katsumoto) (as Keiichiro Katsumoto)", "id": 1075447, "credit_id": "52fe427dc3a36847f8022ae1", "cast_id": 27, "profile_path": null, "order": 13}], "directors": [{"name": "David Lean", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022ac7", "profile_path": "/iUTtDo1gl0Phe342xxoPq2w643R.jpg", "id": 12238}], "vote_average": 7.2, "runtime": 161}, "828": {"poster_path": "/tyujnQl6topN3O9lPnGMpzGsYQM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An alien and a robot land on earth after World War II and tell mankind to be peaceful or face destruction. A classic science fiction film from Robert Wise with an exceptional message.", "video": false, "id": 828, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Day the Earth Stood Still", "tagline": "A robot and a man \u2026 hold the world spellbound with new and startling powers from another planet!", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0043456", "adult": false, "backdrop_path": "/6mJRuZe1GP0dwkaMCDCFOVSPqGh.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1951-09-17", "popularity": 1.00426740457357, "original_title": "The Day the Earth Stood Still", "budget": 1200000, "cast": [{"name": "Michael Rennie", "character": "Klaatu/Carpenter", "id": 12282, "credit_id": "52fe427dc3a36847f8022c0f", "cast_id": 13, "profile_path": "/ni1aEQzlPA2osEFTGKoEtyP8Nqf.jpg", "order": 0}, {"name": "Patricia Neal", "character": "Helen Benson", "id": 1934, "credit_id": "52fe427dc3a36847f8022c13", "cast_id": 14, "profile_path": "/1VPdXeUnI6RcCzLtKv8uTHNB690.jpg", "order": 1}, {"name": "Hugh Marlowe", "character": "Tom Stevens", "id": 10609, "credit_id": "52fe427dc3a36847f8022c17", "cast_id": 15, "profile_path": "/z0OHigEHpORu2Dle1lhM5MeG0xn.jpg", "order": 2}, {"name": "Sam Jaffe", "character": "Prof. Jacob Barnhardt", "id": 10024, "credit_id": "52fe427dc3a36847f8022c1b", "cast_id": 16, "profile_path": "/drxy1JkTOjhUhQnrFnepTmSHELd.jpg", "order": 3}, {"name": "Billy Gray", "character": "Bobby Benson", "id": 3162, "credit_id": "52fe427dc3a36847f8022c1f", "cast_id": 17, "profile_path": "/6dvQQidlXsNFN61nJkaIBcvNpB.jpg", "order": 4}, {"name": "Frances Bavier", "character": "Mrs. Barley", "id": 12283, "credit_id": "52fe427dc3a36847f8022c23", "cast_id": 18, "profile_path": "/8oKsw1dSx7GZ4Ngqhtiq2HGwqHG.jpg", "order": 5}, {"name": "Lock Martin", "character": "Gort", "id": 12284, "credit_id": "52fe427dc3a36847f8022c27", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Elmer Davis", "character": "Himself", "id": 12285, "credit_id": "52fe427dc3a36847f8022c2b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "H.V. Kaltenborn", "character": "Himself", "id": 12286, "credit_id": "52fe427dc3a36847f8022c2f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Drew Pearson", "character": "Himself", "id": 12287, "credit_id": "52fe427dc3a36847f8022c33", "cast_id": 22, "profile_path": "/sE7j0hA4tu7PinyVfDIJ8W2fo7I.jpg", "order": 9}, {"name": "Bess Flowers", "character": "Lady Outside Jewelry Store", "id": 121323, "credit_id": "52fe427dc3a36847f8022c37", "cast_id": 23, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 10}], "directors": [{"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022bc9", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 6.9, "runtime": 92}, "829": {"poster_path": "/iIHO6FzF6lL4mA90rrmk3Y705XS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30000000, "overview": "Jack Nicholson is private eye Jake Gittes, living off the murky moral climate of sunbaked, pre-World War II Southern California. Hired by a beautiful socialite (Faye Dunaway) to investigate her husband's extra-marital affair, Gittes is swept into a maelstrom of double dealings and deadly deceits, uncovering a web of personal and political scandals that come crashing together.", "video": false, "id": 829, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Chinatown", "tagline": "", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071315", "adult": false, "backdrop_path": "/mwo3gk3BWXt9f2LSTmQar5Nu6I3.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Penthouse", "id": 6226}, {"name": "Long Road Productions", "id": 10208}], "release_date": "1974-06-20", "popularity": 1.04087421863914, "original_title": "Chinatown", "budget": 6000000, "cast": [{"name": "Jack Nicholson", "character": "Jake Gittes", "id": 514, "credit_id": "52fe427dc3a36847f8022cfd", "cast_id": 17, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Faye Dunaway", "character": "Evelyn Cross Mulwray", "id": 6450, "credit_id": "52fe427dc3a36847f8022d01", "cast_id": 18, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 1}, {"name": "John Huston", "character": "Noah Cross", "id": 6593, "credit_id": "52fe427dc3a36847f8022d05", "cast_id": 19, "profile_path": "/x5P9KPVj6i8XnrgeEEWiiYKCSdd.jpg", "order": 2}, {"name": "Perry Lopez", "character": "Lieutenant Lou Escobar", "id": 12295, "credit_id": "52fe427dc3a36847f8022d09", "cast_id": 20, "profile_path": "/bpw3oCVkAasOd8A2uwy60pnSXoD.jpg", "order": 3}, {"name": "John Hillerman", "character": "Russ Yelburton", "id": 12296, "credit_id": "52fe427dc3a36847f8022d0d", "cast_id": 21, "profile_path": "/93n8VRJIlZivnNES3W1utuWfvkp.jpg", "order": 4}, {"name": "Darrell Zwerling", "character": "Hollis I. Mulwray", "id": 12297, "credit_id": "52fe427dc3a36847f8022d11", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Diane Ladd", "character": "Ida Sessions", "id": 6587, "credit_id": "52fe427dc3a36847f8022d15", "cast_id": 23, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 6}, {"name": "Roy Jenson", "character": "Claude Mulvihill", "id": 12298, "credit_id": "52fe427dc3a36847f8022d19", "cast_id": 24, "profile_path": "/swkMoVqkIw3CKTKkIzR2yHEfyF3.jpg", "order": 7}, {"name": "Roman Polanski", "character": "Man with Knife", "id": 3556, "credit_id": "52fe427dc3a36847f8022d1d", "cast_id": 25, "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "order": 8}, {"name": "Richard Bakalyan", "character": "Detective Loach", "id": 12299, "credit_id": "52fe427dc3a36847f8022d21", "cast_id": 26, "profile_path": "/flHUIu0hpigaZYXb7XfkEFmPc7j.jpg", "order": 9}, {"name": "Bruce Glover", "character": "Duffy", "id": 10194, "credit_id": "52fe427dc3a36847f8022d25", "cast_id": 27, "profile_path": "/xVS6edZlUempGkjWqSnPnkGcRTw.jpg", "order": 10}, {"name": "Joe Mantell", "character": "Walsh", "id": 78937, "credit_id": "52fe427dc3a36847f8022d29", "cast_id": 28, "profile_path": "/5yDIgBi2dYc7PdTcAcmSLeSg4t1.jpg", "order": 11}, {"name": "Nandu Hinds", "character": "Sophie", "id": 1077252, "credit_id": "52fe427dc3a36847f8022d2d", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "James O'Rear", "character": "Lawyer", "id": 95265, "credit_id": "52fe427dc3a36847f8022d31", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "James Hong", "character": "Evelyn's Butler", "id": 20904, "credit_id": "52fe427dc3a36847f8022d35", "cast_id": 31, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 14}, {"name": "Beulah Quo", "character": "Maid", "id": 156813, "credit_id": "52fe427dc3a36847f8022d39", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Jerry Fujikawa", "character": "Gardener", "id": 164712, "credit_id": "52fe427dc3a36847f8022d3d", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Belinda Palmer", "character": "Katherine", "id": 1077253, "credit_id": "52fe427dc3a36847f8022d41", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Roy Roberts", "character": "Mayor Bagby", "id": 19400, "credit_id": "52fe427dc3a36847f8022d45", "cast_id": 35, "profile_path": "/zKGk6q2As8QFkE4V0OHD3JmF4yA.jpg", "order": 18}, {"name": "Noble Willingham", "character": "Councilman", "id": 31005, "credit_id": "52fe427dc3a36847f8022d49", "cast_id": 36, "profile_path": "/stdQUjYtyjfuJRgA89DyzkZEyai.jpg", "order": 19}, {"name": "Elliott Montgomery", "character": "Councilman", "id": 1077254, "credit_id": "52fe427dc3a36847f8022d4d", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Rance Howard", "character": "Irate Farmer", "id": 22250, "credit_id": "53832a30c3a368059b00858c", "cast_id": 49, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 21}, {"name": "George Justin", "character": "Barber", "id": 5259, "credit_id": "52fe427dc3a36847f8022d55", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "C.O. Erickson", "character": "Customer", "id": 7690, "credit_id": "52fe427dc3a36847f8022d59", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Fritzi Burr", "character": "Mulwray's Secretary", "id": 153640, "credit_id": "52fe427dc3a36847f8022d5d", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Charles Knapp", "character": "Mortician", "id": 943879, "credit_id": "52fe427dc3a36847f8022d61", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Claudio Martinez", "character": "Boy on Horseback", "id": 980729, "credit_id": "52fe427dc3a36847f8022d65", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Federico Roberto", "character": "Cross' Butler", "id": 1077255, "credit_id": "52fe427dc3a36847f8022d69", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "Allan Warnick", "character": "Clerk", "id": 1005536, "credit_id": "52fe427dc3a36847f8022d6d", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "John Holland", "character": "Farmer in the Valley", "id": 126656, "credit_id": "53a48a8c0e0a2614360000bf", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Jesse Vint", "character": "Farmer in the Valley", "id": 12123, "credit_id": "52fe427dc3a36847f8022d7b", "cast_id": 48, "profile_path": "/yJKMTKJgvoqEdy4ExnJlNjrszVi.jpg", "order": 30}, {"name": "Burt Young", "character": "Curly", "id": 4521, "credit_id": "52fe427dc3a36847f8022d71", "cast_id": 46, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 31}, {"name": "Jim Burk", "character": "Farmer in the Valley", "id": 159024, "credit_id": "53a48af00e0a2614320000c6", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Denny Arnold", "character": "Farmer in the Valley", "id": 80303, "credit_id": "53a48b0e0e0a2614390000bd", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Elizabeth Harding", "character": "Curly's Wife", "id": 1332366, "credit_id": "53a48b2a0e0a26143c0000f5", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "John Rogers", "character": "Mr. Palmer", "id": 1332367, "credit_id": "53a48b5b0e0a2614490000de", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Cecil Elliott", "character": "Emma Dill", "id": 126013, "credit_id": "53a48b730e0a2614420000ec", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Paul Jenkins", "character": "Policeman", "id": 158868, "credit_id": "53a48b850e0a2614490000e4", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Lee de Broux", "character": "Policeman", "id": 106768, "credit_id": "53a48b9e0e0a2614490000e7", "cast_id": 57, "profile_path": "/mqrbS1epUSBe8SgV3JNz2ifkiAC.jpg", "order": 38}, {"name": "Bob Golden", "character": "Policeman", "id": 152744, "credit_id": "53a48bb10e0a2614320000d1", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Richard Warren", "character": "Driver (uncredited)", "id": 1332368, "credit_id": "53a48bc70e0a26143c000101", "cast_id": 59, "profile_path": null, "order": 40}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022c9f", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 7.4, "runtime": 130}, "9022": {"poster_path": "/2ENAfp2NhaeXSPNB4makF0In4YY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The orphan Mandy Lane is a beautiful, virgin and pure teenager raised by her aunt, desired by her schoolmates and a close friend of the outcast Emmet. After the death of their high school mate in a pool party, Mandy befriends Chloe, Marlin, Red, Bird and Jake. Red invites the group for a weekend party in the isolated ranch of his family.", "video": false, "id": 9022, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "All the Boys Love Mandy Lane", "tagline": "Everyone is dying to be with her. Someone is killing for it.", "vote_count": 54, "homepage": "http://www.mandylane.co.uk", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0490076", "adult": false, "backdrop_path": "/zSLTGVzYm1c6j5iHBDi8LnuhJuC.jpg", "production_companies": [{"name": "Occupant Films", "id": 14712}], "release_date": "2006-09-09", "popularity": 0.549575628687572, "original_title": "All the Boys Love Mandy Lane", "budget": 6500000, "cast": [{"name": "Amber Heard", "character": "Mandy Lane", "id": 55085, "credit_id": "52fe44d2c3a36847f80ac0d1", "cast_id": 12, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 0}, {"name": "Anson Mount", "character": "Garth", "id": 56675, "credit_id": "52fe44d2c3a36847f80ac0d5", "cast_id": 13, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 1}, {"name": "Michael Welch", "character": "Emmet", "id": 56676, "credit_id": "52fe44d2c3a36847f80ac0d9", "cast_id": 14, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 2}, {"name": "Whitney Able", "character": "Chloe", "id": 56677, "credit_id": "52fe44d2c3a36847f80ac0dd", "cast_id": 15, "profile_path": "/6y5KdwVTlB3o9ZGJ9iIoSCW850M.jpg", "order": 3}, {"name": "Edwin Hodge", "character": "Bird", "id": 56679, "credit_id": "52fe44d2c3a36847f80ac0e1", "cast_id": 16, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 4}, {"name": "Aaron Himelstein", "character": "Red", "id": 43373, "credit_id": "52fe44d2c3a36847f80ac0e5", "cast_id": 17, "profile_path": "/dx7qDc6tMxsfP9jAYkCVClX6p8q.jpg", "order": 5}, {"name": "Luke Grimes", "character": "Jake", "id": 56680, "credit_id": "52fe44d2c3a36847f80ac0e9", "cast_id": 18, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 6}, {"name": "Melissa Price", "character": "Marlin", "id": 56681, "credit_id": "52fe44d2c3a36847f80ac0ed", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Adam Powell", "character": "Dylan", "id": 56682, "credit_id": "52fe44d2c3a36847f80ac0f1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Peyton Hayslip", "character": "Aunt Jo", "id": 56684, "credit_id": "52fe44d2c3a36847f80ac0f5", "cast_id": 21, "profile_path": "/f9tHuhyAOThKGOUAqBmPBhqiCe8.jpg", "order": 9}, {"name": "Brooke Bloom", "character": "Cousin Jen", "id": 56685, "credit_id": "52fe44d2c3a36847f80ac0f9", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Robert Earl Keen", "character": "Keg Trucker", "id": 56686, "credit_id": "52fe44d2c3a36847f80ac0fd", "cast_id": 23, "profile_path": null, "order": 11}], "directors": [{"name": "Jonathan Levine", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac091", "profile_path": "/gfJOKZPSbpzls7FV0Ogv4IpEeXh.jpg", "id": 56661}], "vote_average": 5.7, "runtime": 90}, "9023": {"poster_path": "/7cfXsSe621cWpCpAuuJgud0Gszt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122563539, "overview": "As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.", "video": false, "id": 9023, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spirit: Stallion of the Cimarron", "tagline": "Leader. Hero. Legend.", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0166813", "adult": false, "backdrop_path": "/710YOiGmA6aOfEbVGphwkadDvNh.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2002-05-24", "popularity": 1.00565012528621, "original_title": "Spirit: Stallion of the Cimarron", "budget": 80000000, "cast": [{"name": "Matt Damon", "character": "Spirit", "id": 1892, "credit_id": "52fe44d2c3a36847f80ac133", "cast_id": 1, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "James Cromwell", "character": "The Colonel", "id": 2505, "credit_id": "52fe44d2c3a36847f80ac137", "cast_id": 2, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 1}, {"name": "Daniel Studi", "character": "Little Creek", "id": 56658, "credit_id": "52fe44d2c3a36847f80ac13b", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Chopper Bernet", "character": "Sgt. Adams", "id": 7222, "credit_id": "52fe44d2c3a36847f80ac13f", "cast_id": 4, "profile_path": "/hu7LbfGGZlEyOfRC2X9ieaejkH9.jpg", "order": 3}, {"name": "Jeff LeBeau", "character": "Murphy", "id": 56659, "credit_id": "52fe44d2c3a36847f80ac143", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "John Rubano", "character": "Soldier", "id": 35095, "credit_id": "52fe44d2c3a36847f80ac147", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Richard McGonagle", "character": "Bill", "id": 80416, "credit_id": "52fe44d2c3a36847f80ac181", "cast_id": 16, "profile_path": "/xY4y27xOSrzliCfR5ihqSt3NKOw.jpg", "order": 6}, {"name": "Matt Levin", "character": "Joe", "id": 175511, "credit_id": "52fe44d2c3a36847f80ac185", "cast_id": 17, "profile_path": "/uiLVVlRbJcyGHPMUSuGkln6Kqzw.jpg", "order": 7}, {"name": "Adam Paul", "character": "Pete", "id": 149775, "credit_id": "52fe44d2c3a36847f80ac189", "cast_id": 18, "profile_path": "/9oncQas4rvyDHuMhiyershYM814.jpg", "order": 8}, {"name": "Robert Cait", "character": "Jake", "id": 214516, "credit_id": "52fe44d2c3a36847f80ac18d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Charles Napier", "character": "Roy", "id": 16119, "credit_id": "52fe44d2c3a36847f80ac191", "cast_id": 20, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 10}, {"name": "Meredith Wells", "character": "Little Indian Girl", "id": 1057324, "credit_id": "52fe44d2c3a36847f80ac195", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Zahn McClarnon", "character": "Little Crrek's Friend", "id": 42376, "credit_id": "52fe44d2c3a36847f80ac199", "cast_id": 22, "profile_path": "/nSoFV9yj68KAhoAHIf1QQpr7Es2.jpg", "order": 12}, {"name": "Michael Horse", "character": "Little Creek's Friend", "id": 175468, "credit_id": "52fe44d2c3a36847f80ac19d", "cast_id": 23, "profile_path": "/yZEThGByfkWGYMK0bYBJkjsucNm.jpg", "order": 13}, {"name": "Donald Fullilove", "character": "Train Pull Foreman", "id": 84494, "credit_id": "52fe44d2c3a36847f80ac1a1", "cast_id": 24, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 14}], "directors": [{"name": "Kelly Asbury", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac14d", "profile_path": "/jJAHjXFbjEUJrYjxyuj0AWMPAqW.jpg", "id": 12079}, {"name": "Lorna Cook", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac153", "profile_path": null, "id": 56660}], "vote_average": 6.7, "runtime": 83}, "832": {"poster_path": "/7a1Wx3gI13I1Svrme94DfbzxMHo.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "A psychotic child murderer stalks a city. Despite an exhaustive investigation fueled by public hysteria and outcry, the police have been unable to find him. The police crackdown makes it nearly impossible for the organized criminal underground to operate. The criminals decide that the only way to get the police off their backs is to catch the murderer themselves.", "video": false, "id": 832, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "M", "tagline": "", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0022100", "adult": false, "backdrop_path": "/14qGZyC10dSWadsNuctFEM1QqHZ.jpg", "production_companies": [], "release_date": "1931-05-11", "popularity": 0.430610968885617, "original_title": "M", "budget": 0, "cast": [{"name": "Peter Lorre", "character": "Hans Beckert", "id": 2094, "credit_id": "52fe427dc3a36847f8022f07", "cast_id": 10, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 0}, {"name": "Ellen Widmann", "character": "Frau Beckmann", "id": 12322, "credit_id": "52fe427dc3a36847f8022f0b", "cast_id": 11, "profile_path": null, "order": 1}, {"name": "Inge Landgut", "character": "Elsie Beckmann", "id": 12323, "credit_id": "52fe427dc3a36847f8022f0f", "cast_id": 12, "profile_path": "/1iRmBwOJ9ISS3SU3SsSWfn2jThj.jpg", "order": 2}, {"name": "Otto Wernicke", "character": "Inspector Karl Lohmann", "id": 12324, "credit_id": "52fe427dc3a36847f8022f13", "cast_id": 13, "profile_path": "/tnfFLMa0TA4JO2ME615I3PJ7Myl.jpg", "order": 3}, {"name": "Theodor Loos", "character": "Inspector Groeber", "id": 79, "credit_id": "52fe427dc3a36847f8022f17", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Gustaf Gr\u00fcndgens", "character": "Schr\u00e4nker", "id": 12325, "credit_id": "52fe427dc3a36847f8022f1b", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Friedrich Gna\u00df", "character": "Franz, der Dieb", "id": 12326, "credit_id": "52fe427ec3a36847f8022f1f", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Fritz Odemar", "character": "Falschspieler", "id": 28068, "credit_id": "535829d10e0a26069400047d", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Paul Kemp", "character": "Taschendieb", "id": 219738, "credit_id": "535829e10e0a260682000451", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Theo Lingen", "character": "Bauernf\u00e4nger", "id": 28066, "credit_id": "535829ee0e0a26067f000441", "cast_id": 20, "profile_path": "/8PVRtf3HWd5lYzQ5uUQSaZARl1M.jpg", "order": 9}, {"name": "Gerhard Bienert", "character": "Kriminalsekret\u00e4r", "id": 2913, "credit_id": "5404621bc3a36843720066f0", "cast_id": 21, "profile_path": "/fp7T4vu8xsWsQjXNI5VSPAhRB4v.jpg", "order": 10}], "directors": [{"name": "Fritz Lang", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022ed9", "profile_path": "/iq0KqfkJzEGGHx9MupllyJoCush.jpg", "id": 68}], "vote_average": 8.0, "runtime": 117}, "834": {"poster_path": "/fogihlu39MuYgL6pKObI4SQWPOY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 111340801, "overview": "As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.", "video": false, "id": 834, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Underworld: Evolution", "tagline": "My God. Brother, what have you done?", "vote_count": 699, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0401855", "adult": false, "backdrop_path": "/eJXLO8tlLbKxCPh1iqsBD2oV8Yf.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}], "release_date": "2006-01-12", "popularity": 1.41798730588243, "original_title": "Underworld: Evolution", "budget": 50000000, "cast": [{"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "52fe427ec3a36847f8022fe3", "cast_id": 1, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Scott Speedman", "character": "Michael Corvin", "id": 100, "credit_id": "52fe427ec3a36847f8022fe7", "cast_id": 2, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Tony Curran", "character": "Marcus Corvinus", "id": 2220, "credit_id": "52fe427ec3a36847f8022feb", "cast_id": 3, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 2}, {"name": "Shane Brolly", "character": "Kraven", "id": 3969, "credit_id": "52fe427ec3a36847f8022fef", "cast_id": 4, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 3}, {"name": "Derek Jacobi", "character": "Alexander Corvinus", "id": 937, "credit_id": "52fe427ec3a36847f8022ff3", "cast_id": 5, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 4}, {"name": "Bill Nighy", "character": "Viktor", "id": 2440, "credit_id": "52fe427ec3a36847f8022ff7", "cast_id": 6, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 5}, {"name": "Steven Mackintosh", "character": "Andreas Tanis", "id": 978, "credit_id": "52fe427ec3a36847f8022ffb", "cast_id": 7, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 6}, {"name": "Zita G\u00f6r\u00f6g", "character": "Amelia", "id": 12358, "credit_id": "52fe427ec3a36847f8022fff", "cast_id": 8, "profile_path": "/eU6PsIYBWG4ywX5PoGwmXd7EvV5.jpg", "order": 7}, {"name": "Brian Steele", "character": "William Corvinus", "id": 12359, "credit_id": "52fe427ec3a36847f8023003", "cast_id": 9, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 8}, {"name": "Scott McElroy", "character": "Soren", "id": 12366, "credit_id": "52fe427ec3a36847f8023007", "cast_id": 11, "profile_path": "/8SfKaB26PSTmk8OMFdkIXrQdp52.jpg", "order": 9}, {"name": "John Mann", "character": "Samuel", "id": 12367, "credit_id": "52fe427ec3a36847f802300b", "cast_id": 12, "profile_path": "/ivL5otVmV67DTunWgaXPGQYZbK4.jpg", "order": 10}, {"name": "Michael Sheen", "character": "Lucian", "id": 3968, "credit_id": "52fe427ec3a36847f802300f", "cast_id": 13, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 11}, {"name": "Sophia Myles", "character": "Erika", "id": 3971, "credit_id": "52fe427ec3a36847f8023013", "cast_id": 14, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 12}, {"name": "Richard Cetrone", "character": "Pierce", "id": 12371, "credit_id": "52fe427ec3a36847f8023017", "cast_id": 15, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 13}, {"name": "Mike Mukatis", "character": "Taylor", "id": 12372, "credit_id": "52fe427ec3a36847f802301b", "cast_id": 16, "profile_path": "/mVqAXYseZRVcJvHxkUWl47AcLc8.jpg", "order": 14}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f8023021", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 6.2, "runtime": 106}, "837": {"poster_path": "/fl09Ai2lKPau49MdLp0pOc5rYlP.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 2120439, "overview": "A sleazy cable-TV programmer begins to see his life and the future of media spin out of control in a very unusual fashion when he acquires a new kind of programming for his station.", "video": false, "id": 837, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Videodrome", "tagline": "First it controls your mind. Then it destroys your body.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086541", "adult": false, "backdrop_path": "/z71Ec0T4So8nGnvfR9NQHWraOdh.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Famous Players Ltd", "id": 541}, {"name": "Guardian Trust Company", "id": 542}, {"name": "Filmplan International II", "id": 543}], "release_date": "1983-02-04", "popularity": 0.725073530456093, "original_title": "Videodrome", "budget": 5952000, "cast": [{"name": "James Woods", "character": "Max Renn", "id": 4512, "credit_id": "52fe427ec3a36847f802321b", "cast_id": 13, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 0}, {"name": "Sonja Smits", "character": "Bianca O'Blivion", "id": 12482, "credit_id": "52fe427ec3a36847f802321f", "cast_id": 14, "profile_path": "/8vLGIGKq8kzoCpSXU6iHEXlgByC.jpg", "order": 1}, {"name": "Debbie Harry", "character": "Nicki Brand", "id": 102, "credit_id": "52fe427ec3a36847f8023223", "cast_id": 15, "profile_path": "/1I0WW7NaSXKeQjrIKLwnzvBq5d8.jpg", "order": 2}, {"name": "Peter Dvorsky", "character": "Harlan", "id": 12483, "credit_id": "52fe427ec3a36847f8023227", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Jack Creley", "character": "Brian O'Blivion", "id": 12485, "credit_id": "52fe427ec3a36847f802322b", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Lynne Gorman", "character": "Masha", "id": 12486, "credit_id": "52fe427ec3a36847f802322f", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Julie Khaner", "character": "Bridey", "id": 12487, "credit_id": "52fe427ec3a36847f8023233", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Reiner Schwartz", "character": "Moses", "id": 12488, "credit_id": "52fe427ec3a36847f8023237", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "David Bolt", "character": "Raphael", "id": 12489, "credit_id": "52fe427ec3a36847f802323b", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Lally Cadeau", "character": "Rena King", "id": 12490, "credit_id": "52fe427ec3a36847f802323f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Leslie Carlson", "character": "Barry Convex", "id": 12716, "credit_id": "52fe427ec3a36847f8023243", "cast_id": 24, "profile_path": "/nnYVdNB7MpXbBdq3xRzkD5fTzmW.jpg", "order": 11}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f80231e1", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 7.0, "runtime": 87}, "838": {"poster_path": "/xq8MFYQ6MLZ65mFpweqV6mCs39k.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115000000, "overview": "A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.", "video": false, "id": 838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "American Graffiti", "tagline": "Where were you in '62?", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fkQH8aHqLpdDYXyCXdqRgYOhsoN.jpg", "poster_path": "/gIb6DwlNQznC4Ex3eArgqytgght.jpg", "id": 124950, "name": "American Graffiti Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0069704", "adult": false, "backdrop_path": "/u2fwkirPOiYzmYgtGbInPQtpQo0.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Lucasfilm", "id": 1}, {"name": "The Coppola Company", "id": 536}], "release_date": "1973-08-01", "popularity": 0.519741863505421, "original_title": "American Graffiti", "budget": 777000, "cast": [{"name": "Richard Dreyfuss", "character": "Curt Henderson", "id": 3037, "credit_id": "52fe427ec3a36847f8023309", "cast_id": 16, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 0}, {"name": "Ron Howard", "character": "Steve Bolander", "id": 6159, "credit_id": "52fe427ec3a36847f802330d", "cast_id": 17, "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "order": 1}, {"name": "Paul Le Mat", "character": "John Milner", "id": 12406, "credit_id": "52fe427ec3a36847f8023311", "cast_id": 18, "profile_path": "/lVFnr0ErI5A2ONotKRaAGE6xzAf.jpg", "order": 2}, {"name": "Charles Martin Smith", "character": "Terry 'The Toad' Fields", "id": 1270, "credit_id": "52fe427ec3a36847f8023315", "cast_id": 19, "profile_path": "/fahfWqqrdJwajrfEGmEOXQ1p9bm.jpg", "order": 3}, {"name": "Cindy Williams", "character": "Laurie Henderson", "id": 8434, "credit_id": "52fe427ec3a36847f8023319", "cast_id": 20, "profile_path": "/4lOJA6lyFhJvhlkgH6RRDiq9kXI.jpg", "order": 4}, {"name": "Candy Clark", "character": "Debbie Dunham", "id": 12407, "credit_id": "52fe427ec3a36847f802331d", "cast_id": 21, "profile_path": "/aQKkCUp3tXxw1Mspz8QOfCRCFy2.jpg", "order": 5}, {"name": "Mackenzie Phillips", "character": "Carol", "id": 12408, "credit_id": "52fe427ec3a36847f8023321", "cast_id": 22, "profile_path": "/4FiO7ffdDFWOQuv4MC0NalGSBMD.jpg", "order": 6}, {"name": "Wolfman Jack", "character": "XERB Disc Jockey", "id": 12409, "credit_id": "52fe427ec3a36847f8023325", "cast_id": 23, "profile_path": "/x5dYquWThyYKkNdx2GD74a3Bz96.jpg", "order": 7}, {"name": "Bo Hopkins", "character": "Joe Young", "id": 12410, "credit_id": "52fe427ec3a36847f8023329", "cast_id": 24, "profile_path": "/tfned4hs0rrq7L5PPuS5GnlHFc6.jpg", "order": 8}, {"name": "Manuel Padilla Jr.", "character": "Carlos", "id": 12411, "credit_id": "52fe427ec3a36847f802332d", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Beau Gentry", "character": "Ants", "id": 12412, "credit_id": "52fe427ec3a36847f8023331", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Harrison Ford", "character": "Bob Falfa", "id": 3, "credit_id": "52fe427ec3a36847f8023335", "cast_id": 27, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 11}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f80232b1", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.1, "runtime": 110}, "839": {"poster_path": "/ydQrclzo7sESEnzmqVgJRcyC5Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Travelling businessman, David Mann, angers the driver of a rusty tanker whilst crossing the Californian desert. A simple trip turns deadly as Mann struggles to stay on the road while the tanker plays cat and mouse with his life.", "video": false, "id": 839, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Duel", "tagline": "Fear is the driving force.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0067023", "adult": false, "backdrop_path": "/h6NUGnzIG7q0g8mfIIIQcHIagsz.jpg", "production_companies": [{"name": "Universal TV", "id": 537}], "release_date": "1971-11-10", "popularity": 0.854062498058622, "original_title": "Duel", "budget": 450000, "cast": [{"name": "Dennis Weaver", "character": "David Mann", "id": 12422, "credit_id": "52fe427ec3a36847f802338f", "cast_id": 9, "profile_path": "/rNyOqLREeMxxlGIOHimesPkyUt7.jpg", "order": 0}, {"name": "Eddie Firestone", "character": "Cafe Owner", "id": 12423, "credit_id": "52fe427ec3a36847f8023393", "cast_id": 10, "profile_path": null, "order": 1}, {"name": "Eugene Dynarski", "character": "Man in Cafe", "id": 12424, "credit_id": "52fe427ec3a36847f8023397", "cast_id": 11, "profile_path": "/5O6IqJ06nJWEuGiNSSZURw0m9MR.jpg", "order": 2}, {"name": "Tim Herbert", "character": "Gas Station Attendant", "id": 12425, "credit_id": "52fe427ec3a36847f802339b", "cast_id": 12, "profile_path": null, "order": 3}, {"name": "Charles Seel", "character": "Old Man", "id": 12426, "credit_id": "52fe427ec3a36847f802339f", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Alexander Lockwood", "character": "Old Man in Car", "id": 12427, "credit_id": "52fe427ec3a36847f80233a3", "cast_id": 14, "profile_path": "/kMWJgFoafbn4VbxgpGDJY61IfdQ.jpg", "order": 5}, {"name": "Amy Douglass", "character": "Old Woman in Car", "id": 12428, "credit_id": "52fe427ec3a36847f80233a7", "cast_id": 15, "profile_path": "/gOuKxxrp4oVIKFV5tHMEFgyhP7X.jpg", "order": 6}, {"name": "Shirley O'Hara", "character": "Waitress", "id": 12429, "credit_id": "52fe427ec3a36847f80233ab", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Lucille Benson", "character": "Lady at Snakerama", "id": 12430, "credit_id": "52fe427ec3a36847f80233af", "cast_id": 17, "profile_path": "/rgf9wB5Q3XrZoeO11tuf6NkGMk8.jpg", "order": 8}, {"name": "Carey Loftin", "character": "The Truck Driver", "id": 12431, "credit_id": "52fe427ec3a36847f80233b3", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Jacqueline Scott", "character": "Mme Mann", "id": 40186, "credit_id": "544293b4c3a3683df2002452", "cast_id": 19, "profile_path": "/nXRVE0eA54SP9h2GTPudETpisHq.jpg", "order": 10}, {"name": "Lou Frizzell", "character": "le chauffeur de bus", "id": 160969, "credit_id": "5442945dc3a3683df700237c", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Gene Dynarski", "character": "un homme au caf\u00e9", "id": 1375237, "credit_id": "544294ae0e0a26634d00237e", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Sweet Dick Whittington", "character": "l'interviewer de la radio", "id": 1219284, "credit_id": "5442971cc3a3683e010024ad", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Dale Van Sickel", "character": "un conducteur de voiture", "id": 34094, "credit_id": "544298be0e0a2663360025d6", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f8023361", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.1, "runtime": 90}, "840": {"poster_path": "/3Av8ZPiMrxFq9XiOjZl0tkoq9Oo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 303788635, "overview": "After an encounter with UFOs, a line worker feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.", "video": false, "id": 840, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Close Encounters of the Third Kind", "tagline": "We are not alone.", "vote_count": 268, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075860", "adult": false, "backdrop_path": "/xATZyEpnZ0Z0iO9z5K8RZsraGKI.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "EMI Films", "id": 8263}, {"name": "Julia Phillips and Michael Phillips Productions", "id": 11458}], "release_date": "1977-11-16", "popularity": 1.35677555395098, "original_title": "Close Encounters of the Third Kind", "budget": 20000000, "cast": [{"name": "Richard Dreyfuss", "character": "Roy Neary", "id": 3037, "credit_id": "52fe427ec3a36847f8023499", "cast_id": 14, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 0}, {"name": "Fran\u00e7ois Truffaut", "character": "Claude Lacombe", "id": 1650, "credit_id": "52fe427ec3a36847f802349d", "cast_id": 15, "profile_path": "/fPu5ctdDUqGxQiZM7ARNaNPQtFS.jpg", "order": 1}, {"name": "Teri Garr", "character": "Ronnie Neary", "id": 8437, "credit_id": "52fe427ec3a36847f80234a1", "cast_id": 16, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 2}, {"name": "Melinda Dillon", "character": "Jillian Guiler", "id": 4778, "credit_id": "52fe427ec3a36847f80234a5", "cast_id": 17, "profile_path": "/f4DU3lNCJqNVgwDZmHMlNV96rKV.jpg", "order": 3}, {"name": "Bob Balaban", "character": "David Laughlin", "id": 12438, "credit_id": "52fe427ec3a36847f80234a9", "cast_id": 18, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 4}, {"name": "J. Patrick McNamara", "character": "Project Leader", "id": 12439, "credit_id": "52fe427ec3a36847f80234ad", "cast_id": 19, "profile_path": "/gs6xxzSGKj5Dt63sFW1J6hiGBTf.jpg", "order": 5}, {"name": "Warren J. Kemmerling", "character": "Wild Bill", "id": 12440, "credit_id": "52fe427ec3a36847f80234b1", "cast_id": 20, "profile_path": "/pUy7Kq5cprZhLf8lmAk8BDqP9F4.jpg", "order": 6}, {"name": "Roberts Blossom", "character": "Farmer", "id": 66288, "credit_id": "52fe427ec3a36847f80234b5", "cast_id": 21, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 7}, {"name": "Philip Dodds", "character": "Jean Claude", "id": 12441, "credit_id": "52fe427ec3a36847f80234b9", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Adrienne Campbell", "character": "Sylvia Neary", "id": 12442, "credit_id": "52fe427ec3a36847f80234bd", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Justin Dreyfuss", "character": "Toby Neary", "id": 12443, "credit_id": "52fe427ec3a36847f80234c1", "cast_id": 24, "profile_path": "/2M1XohXWh94qd210K5A88nYkk1J.jpg", "order": 10}, {"name": "Lance Henriksen", "character": "Robert", "id": 2714, "credit_id": "52fe427ec3a36847f80234c5", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 11}, {"name": "Merrill Connally", "character": "Team Leader", "id": 12444, "credit_id": "52fe427ec3a36847f80234c9", "cast_id": 26, "profile_path": "/tM63bmQPPHrARlFG6JR8XaTbUo6.jpg", "order": 12}, {"name": "Cary Guffey", "character": "Barry Guiler", "id": 66645, "credit_id": "52fe427ec3a36847f80234cd", "cast_id": 27, "profile_path": "/dvLTnrVPuo4bsH4x3slxAF8guzw.jpg", "order": 13}, {"name": "Shawn Bishop", "character": "Brad Neary", "id": 1031236, "credit_id": "52fe427ec3a36847f80234d1", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "George DiCenzo", "character": "Major Benchley", "id": 1069, "credit_id": "52fe427fc3a36847f80234d5", "cast_id": 29, "profile_path": "/u5pQL3gkcGcnpkc9NPuyiBB3e8f.jpg", "order": 15}, {"name": "Amy Douglass", "character": "Implantee", "id": 12428, "credit_id": "52fe427fc3a36847f80234d9", "cast_id": 30, "profile_path": "/gOuKxxrp4oVIKFV5tHMEFgyhP7X.jpg", "order": 16}, {"name": "Alexander Lockwood", "character": "Implantee", "id": 12427, "credit_id": "52fe427fc3a36847f80234dd", "cast_id": 31, "profile_path": "/kMWJgFoafbn4VbxgpGDJY61IfdQ.jpg", "order": 17}, {"name": "Eugene Dynarski", "character": "Ike", "id": 12424, "credit_id": "52fe427fc3a36847f80234e1", "cast_id": 32, "profile_path": "/5O6IqJ06nJWEuGiNSSZURw0m9MR.jpg", "order": 18}, {"name": "Mary Gafrey", "character": "Mrs. Harris", "id": 1031237, "credit_id": "52fe427fc3a36847f80234e5", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Josef Sommer", "character": "Larry Butler", "id": 14792, "credit_id": "52fe427fc3a36847f80234e9", "cast_id": 34, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 20}, {"name": "Carl Weathers", "character": "Military Policeman", "id": 1101, "credit_id": "52fe427fc3a36847f80234ed", "cast_id": 35, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 21}, {"name": "Bill Thurman", "character": "Air Traffic", "id": 39774, "credit_id": "52fe427fc3a36847f80234f1", "cast_id": 36, "profile_path": "/d3P6EJJOvNKLalFHTp6RR7sm7NY.jpg", "order": 22}, {"name": "Norman Bartold", "character": "Norman Bartold", "id": 24319, "credit_id": "52fe427fc3a36847f8023513", "cast_id": 42, "profile_path": "/vnYMtCkcP7dnQHQdjRGKlzpdyKB.jpg", "order": 23}, {"name": "Michael J. Dyer", "character": "Himself", "id": 1204277, "credit_id": "52fe427fc3a36847f8023517", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Roger Ernest", "character": "Highway Patrolman", "id": 1204279, "credit_id": "52fe427fc3a36847f802351b", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "F.J. O'Neil", "character": "ARP Project Member", "id": 152911, "credit_id": "52fe427fc3a36847f802351f", "cast_id": 46, "profile_path": "/fk9V2rhZzB7M78cAA1WBdHoQpte.jpg", "order": 26}, {"name": "Randy Hermann", "character": "Returnee #1 Flt. 19", "id": 1122770, "credit_id": "52fe427fc3a36847f8023523", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Hal Barwood", "character": "Returnee #2 Flt. 19", "id": 12678, "credit_id": "52fe427fc3a36847f8023527", "cast_id": 48, "profile_path": "/nT2nqgyHMlO1AlHTwGpaUP11yR9.jpg", "order": 28}, {"name": "Phil Dodds", "character": "ARP Musician", "id": 1204280, "credit_id": "52fe427fc3a36847f802352b", "cast_id": 49, "profile_path": "/mvS2vQaBz09KbwXLCZLJpB38uhD.jpg", "order": 29}, {"name": "Matthew Robbins", "character": "Returnee #3 Flt. 19", "id": 12677, "credit_id": "52fe427fc3a36847f802352f", "cast_id": 50, "profile_path": "/oK61i61u3G5zZO5EtXmepY9IxGy.jpg", "order": 30}, {"name": "David Anderson", "character": "Air Traffic Controller", "id": 208579, "credit_id": "52fe427fc3a36847f8023533", "cast_id": 51, "profile_path": "/1zKR8IOZLw7EoQZiyEPExm1Wxdi.jpg", "order": 31}, {"name": "Richard L. Hawkins", "character": "Air Traffic Controller", "id": 100144, "credit_id": "52fe427fc3a36847f8023537", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Craig Shreeve", "character": "Air Traffic", "id": 163330, "credit_id": "52fe427fc3a36847f802353b", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Roy E. Richards", "character": "Air East Pilot", "id": 1204285, "credit_id": "52fe427fc3a36847f802353f", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "Gene Rader", "character": "Hawker", "id": 1177596, "credit_id": "52fe427fc3a36847f8023543", "cast_id": 55, "profile_path": "/yrNi2UgvIU7IBdiYLcVZZ663NpS.jpg", "order": 35}, {"name": "Eumenio Blanco", "character": "Federale", "id": 1204286, "credit_id": "52fe427fc3a36847f8023547", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Daniel Nunez", "character": "Federale", "id": 1072934, "credit_id": "52fe427fc3a36847f802354b", "cast_id": 57, "profile_path": "/dwI7XdwKjgmmBX2wCou9f3iT0HR.jpg", "order": 37}, {"name": "Chuy Franco", "character": "Federale", "id": 1151582, "credit_id": "52fe427fc3a36847f802354f", "cast_id": 58, "profile_path": "/iQ7hKi0W0DZ2JLVz72Oj9wHKEq6.jpg", "order": 38}, {"name": "Luis Contreras", "character": "Federale", "id": 85870, "credit_id": "52fe427fc3a36847f8023553", "cast_id": 59, "profile_path": "/1OZ6UwzgLEFWvHJXyOvZTYuYisq.jpg", "order": 39}, {"name": "James Keane", "character": "Radio Telescope Team", "id": 1739, "credit_id": "52fe427fc3a36847f8023557", "cast_id": 60, "profile_path": "/1e2zknHnG1Yp92D3hRQUbXHay9c.jpg", "order": 40}, {"name": "Dennis McMullen", "character": "Radio Telescope Team", "id": 994737, "credit_id": "52fe427fc3a36847f802355b", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Cy Young", "character": "Radio Telescope Team", "id": 1204287, "credit_id": "52fe427fc3a36847f802355f", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Tom Howard", "character": "Radio Telescope Team", "id": 939624, "credit_id": "52fe427fc3a36847f8023563", "cast_id": 63, "profile_path": "/A8W7gtPBn0AD5znZe3LL1SOk400.jpg", "order": 43}, {"name": "Richard Stuart", "character": "Truck Dispatcher", "id": 1204288, "credit_id": "52fe427fc3a36847f8023567", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Bob Westmoreland", "character": "Load Dispatcher", "id": 959815, "credit_id": "52fe427fc3a36847f802356b", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Matt Emery", "character": "Support Leader", "id": 98877, "credit_id": "52fe427fc3a36847f802356f", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Galen Thompson", "character": "Special Forces", "id": 166149, "credit_id": "52fe427fc3a36847f8023573", "cast_id": 67, "profile_path": "/dyWMWqcLnkNVpwqOzOHPwOy9lVV.jpg", "order": 47}, {"name": "John Dennis Johnston", "character": "Special Forces", "id": 85869, "credit_id": "52fe427fc3a36847f8023577", "cast_id": 68, "profile_path": "/c0EIs8wCQehz0bRvao7Qxfot1h3.jpg", "order": 48}, {"name": "John Ewing", "character": "Dirty Tricks #1", "id": 1030924, "credit_id": "52fe427fc3a36847f802357b", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Keith Atkinson", "character": "Dirty Tricks #2", "id": 152729, "credit_id": "52fe427fc3a36847f802357f", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Robert Broyles", "character": "Dirty Tricks #3", "id": 160483, "credit_id": "52fe427fc3a36847f8023583", "cast_id": 71, "profile_path": "/jNe4YkViiHJ8bLfsQIo2RVJNloo.jpg", "order": 51}, {"name": "Kirk Raymond", "character": "Dirty Tricks #4", "id": 1204291, "credit_id": "52fe427fc3a36847f8023587", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Bennett Wayne Dean Sr.", "character": "Scientist (uncredited)", "id": 1204292, "credit_id": "52fe427fc3a36847f802358b", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Basil Hoffman", "character": "Longly (uncredited)", "id": 91369, "credit_id": "52fe427fc3a36847f802358f", "cast_id": 74, "profile_path": "/3kIPq25xlD05KZWJa6T835mlUMc.jpg", "order": 54}, {"name": "J. Allen Hynek", "character": "Himself - Smoking Pipe at Landing Site (uncredited)", "id": 1204293, "credit_id": "52fe427fc3a36847f8023593", "cast_id": 75, "profile_path": "/hUlCqpwtRHokKAd95LI1FPuB8KQ.jpg", "order": 55}, {"name": "Monty Jordan", "character": "Special Forces Commander / Helicopter Pilot (uncredited)", "id": 1204294, "credit_id": "52fe427fc3a36847f8023597", "cast_id": 76, "profile_path": "/byNI0Cwu6Fn935NA7cJXcY36PAx.jpg", "order": 56}, {"name": "Stephen Powers", "character": "UN Observer (uncredited)", "id": 1204295, "credit_id": "52fe427fc3a36847f802359b", "cast_id": 77, "profile_path": "/xtED5cLeDStpyHhZx9eYAlyBzc3.jpg", "order": 57}, {"name": "Howard K. Smith", "character": "Howard K. Smith (uncredited)", "id": 115768, "credit_id": "52fe427fc3a36847f802359f", "cast_id": 78, "profile_path": "/dJZbxSDmSvo2I7WaemEbKd7wJwM.jpg", "order": 58}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f8023453", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.8, "runtime": 135}, "841": {"poster_path": "/vvXGhr0vqQ0GT9npc8y5StOCJph.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30925690, "overview": "In the year 10,191, the world is at war for control of the desert planet Dune -- the only place where the time-travel substance Spice can be found. But when one leader gives up control, it's only so he can stage a coup with some unsavory characters.", "video": false, "id": 841, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Dune", "tagline": "A world beyond your experience, beyond your imagination.", "vote_count": 156, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oSMjS3kYk6e7hGoqviNzhniri09.jpg", "poster_path": "/3YfFvHwHk86tNJOCy3RjgN9UH4s.jpg", "id": 53885, "name": "Dune Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0087182", "adult": false, "backdrop_path": "/zwyQjr7PAIVvcQoVrI5kXqXqt2t.jpg", "production_companies": [{"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "1984-12-14", "popularity": 0.583372650103816, "original_title": "Dune", "budget": 40000000, "cast": [{"name": "Kyle MacLachlan", "character": "Paul Usul Muad'Dib Atreides", "id": 6677, "credit_id": "52fe427fc3a36847f8023661", "cast_id": 23, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 0}, {"name": "Francesca Annis", "character": "Lady Jessica", "id": 12513, "credit_id": "52fe427fc3a36847f8023645", "cast_id": 16, "profile_path": "/gzk3kD4qWhOBUVF536JeMLmlVbo.jpg", "order": 1}, {"name": "Leonardo Cimino", "character": "The Baron's Doctor", "id": 12514, "credit_id": "52fe427fc3a36847f8023649", "cast_id": 17, "profile_path": "/gb2YuqRIifoTjX0F6YkYP4p4z29.jpg", "order": 2}, {"name": "Brad Dourif", "character": "Piter De Vries", "id": 1370, "credit_id": "52fe427fc3a36847f802364d", "cast_id": 18, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 3}, {"name": "Jos\u00e9 Ferrer", "character": "Padishah Emperor Shaddam IV", "id": 12515, "credit_id": "52fe427fc3a36847f8023651", "cast_id": 19, "profile_path": "/4AeQKvJXTSFrjNtSKm2BFWVHdCr.jpg", "order": 4}, {"name": "Linda Hunt", "character": "Shadout Mapes", "id": 12516, "credit_id": "52fe427fc3a36847f8023655", "cast_id": 20, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 5}, {"name": "Freddie Jones", "character": "Thufir Hawat", "id": 12517, "credit_id": "52fe427fc3a36847f8023659", "cast_id": 21, "profile_path": "/mh2aJ6fuzsjsCG8bNyelPuqPHt3.jpg", "order": 6}, {"name": "Richard Jordan", "character": "Duncan Idaho", "id": 12518, "credit_id": "52fe427fc3a36847f802365d", "cast_id": 22, "profile_path": "/lsIKxCURO9l4zEnVLwbVG2o1fLQ.jpg", "order": 7}, {"name": "Virginia Madsen", "character": "Princess Irulan", "id": 12519, "credit_id": "52fe427fc3a36847f8023665", "cast_id": 24, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 8}, {"name": "Silvana Mangano", "character": "Rev. Mother Ramallo", "id": 12520, "credit_id": "52fe427fc3a36847f8023669", "cast_id": 25, "profile_path": "/8KFcMFxQbrOkXc0do7xuu8mNuNy.jpg", "order": 9}, {"name": "Everett McGill", "character": "Stilgar", "id": 5616, "credit_id": "52fe427fc3a36847f802366d", "cast_id": 26, "profile_path": "/qeNdO3yN3cWVWgKQqQOKU812iiR.jpg", "order": 10}, {"name": "Kenneth McMillan", "character": "Baron Vladimir Harkonnen", "id": 12521, "credit_id": "52fe427fc3a36847f8023671", "cast_id": 27, "profile_path": "/St74rdoCMMJHRMaEY2kU2YmuaD.jpg", "order": 11}, {"name": "Jack Nance", "character": "Capt. Iakin Nefud", "id": 6718, "credit_id": "52fe427fc3a36847f8023675", "cast_id": 28, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 12}, {"name": "Si\u00e2n Phillips", "character": "Rev. Mother Gaius Helen Mohiam", "id": 12522, "credit_id": "52fe427fc3a36847f8023679", "cast_id": 29, "profile_path": "/dihKDaexR40FUl4GGaoDb2RBhVx.jpg", "order": 13}, {"name": "J\u00fcrgen Prochnow", "character": "Duke Leto Atreides", "id": 920, "credit_id": "52fe427fc3a36847f802367d", "cast_id": 30, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 14}, {"name": "Patrick Stewart", "character": "Gurney Halleck", "id": 2387, "credit_id": "52fe427fc3a36847f8023681", "cast_id": 31, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 15}, {"name": "Sting", "character": "Feyd-Rautha", "id": 982, "credit_id": "52fe427fc3a36847f8023685", "cast_id": 32, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 16}, {"name": "Dean Stockwell", "character": "Dr. Wellington Yueh", "id": 923, "credit_id": "52fe427fc3a36847f8023689", "cast_id": 33, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 17}, {"name": "Max von Sydow", "character": "Dr. Kynes", "id": 2201, "credit_id": "52fe427fc3a36847f802368d", "cast_id": 34, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 18}, {"name": "Sean Young", "character": "Chani", "id": 586, "credit_id": "52fe427fc3a36847f8023691", "cast_id": 35, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 19}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe427fc3a36847f80235ed", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 6.5, "runtime": 137}, "843": {"poster_path": "/njsrOBLdCjfTUjhHuomEGNdnD8v.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "KH", "name": "Cambodia"}, {"iso_3166_1": "TH", "name": "Thailand"}], "revenue": 12854953, "overview": "A melancholy story about the love between a woman and a man who live in the same building and one day find out that their husband and wife had an affair with each other. More and more the two meet during their daily lives as they determine that they both don\u2019t want to be lonely in their marriage.", "video": false, "id": 843, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "In the Mood for Love", "tagline": "", "vote_count": 64, "homepage": "http://www.wkw-inthemoodforlove.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fcGKAq9R8fjvXBhVhEds7SRDiWS.jpg", "id": 287016, "name": "Wong Kar-Wai's Informal Trilogy"}, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0118694", "adult": false, "backdrop_path": "/aAWgHv8whxLj25ZxpSTnBPgXMzo.jpg", "production_companies": [{"name": "Block 2 Pictures", "id": 539}, {"name": "Jet Tone Production", "id": 540}], "release_date": "2000-05-22", "popularity": 1.05673300118764, "original_title": "\u82b1\u6a23\u5e74\u83ef", "budget": 0, "cast": [{"name": "Tony Leung Chiu-Wai", "character": "Chow Mo-Wan", "id": 1337, "credit_id": "52fe4280c3a36847f8023f41", "cast_id": 20, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 0}, {"name": "Maggie Cheung", "character": "Su Li-Zhen", "id": 1338, "credit_id": "52fe4280c3a36847f8023f45", "cast_id": 21, "profile_path": "/qDkqRF3SwuopbT2bw6B4amEwQzO.jpg", "order": 1}, {"name": "Siu Ping-Lam", "character": "Ah Ping", "id": 12674, "credit_id": "52fe4280c3a36847f8023f19", "cast_id": 6, "profile_path": "/u4bMsCdy0kYKqb0tQDjUQF4OWwb.jpg", "order": 2}, {"name": "Rebecca Pan", "character": "Mrs. Suen", "id": 12462, "credit_id": "52fe4280c3a36847f8023f1d", "cast_id": 8, "profile_path": "/7UFb7P8IrcNNmhDShBfH7XhdA6d.jpg", "order": 4}, {"name": "Kelly Lai Chen", "character": "Mr. Ho", "id": 12463, "credit_id": "52fe4280c3a36847f8023f21", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Man-Lei Chan", "character": "", "id": 12464, "credit_id": "52fe4280c3a36847f8023f25", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Kam-wah Koo", "character": "", "id": 12465, "credit_id": "52fe4280c3a36847f8023f29", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Roy Cheung", "character": "Mr. Chan", "id": 12466, "credit_id": "52fe4280c3a36847f8023f2d", "cast_id": 12, "profile_path": "/symrW3ZLhvl7Vk7Xm9CKNB1sXYl.jpg", "order": 8}, {"name": "Tsi-Ang Chin", "character": "The Amah", "id": 12467, "credit_id": "52fe4280c3a36847f8023f31", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Hsien Yu", "character": "", "id": 12468, "credit_id": "52fe4280c3a36847f8023f35", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Po-chun Chow", "character": "", "id": 12469, "credit_id": "52fe4280c3a36847f8023f39", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Paulyn Sun", "character": "Mrs. Chow", "id": 12470, "credit_id": "52fe4280c3a36847f8023f3d", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Wong Kar-Wai", "department": "Directing", "job": "Director", "credit_id": "52fe4280c3a36847f8023efd", "profile_path": "/rGk5pKmYcWB3jVPCfZcTZxDrAUr.jpg", "id": 12453}], "vote_average": 7.7, "runtime": 98}, "9036": {"poster_path": "/mk5jCKo0M6zYMWZ2TuDIyNznHAp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120455994, "overview": "In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.", "video": false, "id": 9036, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Eight Below", "tagline": "The Most Amazing Story Of Survival, Friendship, And Adventure Ever Told.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397313", "adult": false, "backdrop_path": "/kHRrE2xAMe3JdPTwY4wXgOhlfmv.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Mandeville Films", "id": 10227}, {"name": "Winking Productions", "id": 20669}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2006-02-17", "popularity": 0.818142480767418, "original_title": "Eight Below", "budget": 40000000, "cast": [{"name": "Paul Walker", "character": "Jerry Shepard", "id": 8167, "credit_id": "52fe44d4c3a36847f80ac907", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Bruce Greenwood", "character": "Davis McClaren", "id": 21089, "credit_id": "52fe44d4c3a36847f80ac90b", "cast_id": 2, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 1}, {"name": "Moon Bloodgood", "character": "Katie", "id": 56455, "credit_id": "52fe44d4c3a36847f80ac90f", "cast_id": 3, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 2}, {"name": "Jason Biggs", "character": "Charlie Cooper", "id": 21593, "credit_id": "52fe44d4c3a36847f80ac913", "cast_id": 4, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 3}, {"name": "Gerard Plunkett", "character": "Dr. Andy Harrison", "id": 27124, "credit_id": "52fe44d4c3a36847f80ac917", "cast_id": 5, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 4}, {"name": "August Schellenberg", "character": "Mindo", "id": 18260, "credit_id": "52fe44d4c3a36847f80ac91b", "cast_id": 6, "profile_path": "/iZ7dQ3JMdrWoUyh4vB8vOxhqoSI.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Eve McClaren", "id": 19957, "credit_id": "531a054092514177ab002bb0", "cast_id": 14, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}], "directors": [{"name": "Frank Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe44d4c3a36847f80ac921", "profile_path": "/iZrDellT1OWf1syKzBgQHjY2hJe.jpg", "id": 664}], "vote_average": 6.3, "runtime": 120}, "845": {"poster_path": "/y0Lec3HBZbzkB3b1ACSC4tVnj9n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A psychotic socialite confronts a pro tennis star with a theory on how two complete strangers can get away with murder...a theory that he plans to implement.", "video": false, "id": 845, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Strangers on a Train", "tagline": "It starts with a shriek of a train whistle...and ends with shrieking excitement.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0044079", "adult": false, "backdrop_path": "/3DL6BmslkyGHm70HXFNUwoYYIjb.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1951-06-30", "popularity": 0.791567879936288, "original_title": "Strangers on a Train", "budget": 1200000, "cast": [{"name": "Farley Granger", "character": "Guy Haines", "id": 12497, "credit_id": "52fe4281c3a36847f80240a9", "cast_id": 16, "profile_path": "/uMawvHjbqcg2s1UnedJwD9Njzy5.jpg", "order": 0}, {"name": "Ruth Roman", "character": "Anne Morton", "id": 12498, "credit_id": "52fe4281c3a36847f80240ad", "cast_id": 17, "profile_path": "/fBphiIhNwlseidUeUQ6s0Cg7wCJ.jpg", "order": 1}, {"name": "Robert Walker", "character": "Bruno Anthony", "id": 12499, "credit_id": "52fe4281c3a36847f80240b1", "cast_id": 18, "profile_path": "/q2qZUq1wRa28FFsgp9bGx8soaEX.jpg", "order": 2}, {"name": "Leo G. Carroll", "character": "Sen. Morton", "id": 2642, "credit_id": "52fe4281c3a36847f80240b5", "cast_id": 19, "profile_path": "/xTxzUMrwj00ZXa3iWOqP5w1xgO5.jpg", "order": 3}, {"name": "Patricia Hitchcock", "character": "Barbara Morton", "id": 12500, "credit_id": "52fe4281c3a36847f80240b9", "cast_id": 20, "profile_path": "/aB59dttMS0KHSv2frlqcx43HCeC.jpg", "order": 4}, {"name": "Norma Varden", "character": "Mrs. Cunningham", "id": 10926, "credit_id": "52fe4281c3a36847f80240bd", "cast_id": 21, "profile_path": "/2Ypt67es6XciWAyihkcG2MSjUzT.jpg", "order": 5}, {"name": "Marion Lorne", "character": "Mrs. Anthony", "id": 12501, "credit_id": "52fe4281c3a36847f80240c1", "cast_id": 22, "profile_path": "/iBRYqd8geHrBx8SB2hSKmLpZx5W.jpg", "order": 6}, {"name": "Jonathan Hale", "character": "Mr. Anthony", "id": 12502, "credit_id": "52fe4281c3a36847f80240c5", "cast_id": 23, "profile_path": "/ajOXZDy3XsZkZ3OqsMBejg8BFXG.jpg", "order": 7}, {"name": "Howard St. John", "character": "Police Capt. Turley", "id": 5792, "credit_id": "52fe4281c3a36847f80240c9", "cast_id": 24, "profile_path": "/1MmHUGc6btitSBRTu5vmYeGuHII.jpg", "order": 8}, {"name": "John Brown", "character": "Prof. Collins", "id": 12503, "credit_id": "52fe4281c3a36847f80240cd", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Robert Gist", "character": "Leslie Hennessy", "id": 12504, "credit_id": "52fe4281c3a36847f80240d1", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Kasey Rogers", "character": "Miriam Joyce Haines", "id": 12505, "credit_id": "52fe4281c3a36847f80240d5", "cast_id": 27, "profile_path": "/btowNltXZULTnTpco2uOBNWfvMO.jpg", "order": 11}, {"name": "Harry Hines", "character": "Elderly man crawling under carousel", "id": 348497, "credit_id": "52fe4281c3a36847f80240df", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "John Doucette", "character": "Hammond", "id": 34130, "credit_id": "52fe4281c3a36847f80240e3", "cast_id": 30, "profile_path": "/2J6UfUe9nNkd6wjtIF5Yp3ilnZ8.jpg", "order": 13}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f8024057", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.2, "runtime": 101}, "846": {"poster_path": "/cpvwMPMkvsZLzThJTcnh8wcNPMH.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189198313, "overview": "Blackwood, Texas: After falling through a hole in the ground, a young boy is infected by the alien Black Oil. One week later, in Dallas, a federal building is bombed by terrorists, killing five people, including the Blackwood boy. Mulder and Scully, now part of an FBI anti-terrorism unit, learn that the boy as well as three other victims were dead even before the bombing, cause of death: an alien virus. In the Texas desert, the agents find an agricultural complex that may hold the key to unlocking the government conspiracy surrounding the extraterrestrials and their lethal virus which Mulder and Scully must fight the government in a conspiracy and find the truth about an alien colonization of Earth.", "video": false, "id": 846, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The X Files", "tagline": "Fight the Future!", "vote_count": 114, "homepage": "", "belongs_to_collection": {"backdrop_path": "/22p3xTTuXc9FEnzyGlfB9KBtR4Y.jpg", "poster_path": "/aeIYknSlbIsjPTJQDExXXuKGRLb.jpg", "id": 19387, "name": "The X-Files Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120902", "adult": false, "backdrop_path": "/xLcH3m07JDmanPo0PpKGgvWD78A.jpg", "production_companies": [{"name": "Ten Thirteen Productions", "id": 545}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1998-06-19", "popularity": 0.972409988008974, "original_title": "The X Files", "budget": 66000000, "cast": [{"name": "David Duchovny", "character": "Special Agent Fox Mulder", "id": 12640, "credit_id": "52fe4281c3a36847f8024173", "cast_id": 16, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Gillian Anderson", "character": "Special Agent Dana Scully", "id": 12214, "credit_id": "52fe4281c3a36847f8024197", "cast_id": 25, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 1}, {"name": "Mitch Pileggi", "character": "Assistant Director Walter Skinner", "id": 12644, "credit_id": "52fe4281c3a36847f8024183", "cast_id": 20, "profile_path": "/yJhcdFVtc2J6Nnqz7rcYB7GI4P9.jpg", "order": 2}, {"name": "William B. Davis", "character": "The Cigarette-Smoking Man", "id": 12643, "credit_id": "52fe4281c3a36847f802417b", "cast_id": 18, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 3}, {"name": "John Neville", "character": "The Well-Manicured Man", "id": 12642, "credit_id": "52fe4281c3a36847f8024177", "cast_id": 17, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 4}, {"name": "Martin Landau", "character": "Alvin Kurtzweil", "id": 2641, "credit_id": "52fe4281c3a36847f802417f", "cast_id": 19, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 5}, {"name": "Jeffrey DeMunn", "character": "Ben Bronschweig, M.D.", "id": 12645, "credit_id": "52fe4281c3a36847f8024187", "cast_id": 21, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 6}, {"name": "Dean Haglund", "character": "Langly", "id": 129252, "credit_id": "55033487c3a3685b9b004828", "cast_id": 30, "profile_path": "/5FBY03TYtBqkD47MhSNEouhALo0.jpg", "order": 7}, {"name": "Bruce Harwood", "character": "John Fitzgerald Byers", "id": 118004, "credit_id": "55033495c3a3687b69004148", "cast_id": 31, "profile_path": "/4OD7KHq0guPqNfz7t05GhSaQtM2.jpg", "order": 8}, {"name": "Tom Braidwood", "character": "Melvin Frohike", "id": 113017, "credit_id": "550334a8c3a3685ba6004e78", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Blythe Danner", "character": "Jana Cassidy", "id": 10401, "credit_id": "52fe4281c3a36847f802418b", "cast_id": 22, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 10}, {"name": "Terry O'Quinn", "character": "Darius Michaud", "id": 12646, "credit_id": "52fe4281c3a36847f802418f", "cast_id": 23, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 11}, {"name": "Armin Mueller-Stahl", "character": "Conrad Strughold", "id": 12647, "credit_id": "52fe4281c3a36847f8024193", "cast_id": 24, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 12}, {"name": "Lucas Black", "character": "Stevie", "id": 155, "credit_id": "5503345cc3a3685b96004dd9", "cast_id": 29, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 13}], "directors": [{"name": "Rob Bowman", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f8024121", "profile_path": "/u9iJgOc7XOkStRXbAHZe2qJ2O8p.jpg", "id": 12523}], "vote_average": 6.0, "runtime": 121}, "847": {"poster_path": "/Akx1CXcDfwvZD5d4ZOsu6DCmYCA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57269863, "overview": "Fearful of a prophecy stating that a girl child will be born to bring about her downfall, the evil Queen Bavmorda imprisons all pregnant women within the formidable stronghold of Nockmaar. A child, Elora Danan, is born in the Nockmaar dungeons and identified as the prophesied child by a birthmark on her arm. However, before the black sorceress arrives to claim the child, Elora's mother convinces her reluctant midwife to escape with the baby. Willow, a timid farmer and aspiring sorcerer, is entrusted with delivering the royal infant from evil.", "video": false, "id": 847, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Willow", "tagline": "Adventure doesn't come any bigger than this.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096446", "adult": false, "backdrop_path": "/1HyOTDlkly2rlRWp2UBFTzKH8vt.jpg", "production_companies": [{"name": "Imagine Films Entertainment", "id": 20743}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Lucasfilm", "id": 1}], "release_date": "1988-05-20", "popularity": 0.794664751382705, "original_title": "Willow", "budget": 35000000, "cast": [{"name": "Warwick Davis", "character": "Willow Ufgood", "id": 11184, "credit_id": "52fe4281c3a36847f8024265", "cast_id": 22, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 0}, {"name": "Val Kilmer", "character": "Madmartigan", "id": 5576, "credit_id": "52fe4281c3a36847f802425d", "cast_id": 20, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 1}, {"name": "Joanne Whalley", "character": "Sorsha", "id": 12656, "credit_id": "52fe4281c3a36847f8024261", "cast_id": 21, "profile_path": "/f7o8bum7dHPDALZ4tmZiekoOWtG.jpg", "order": 2}, {"name": "Jean Marsh", "character": "Queen Bavmorda", "id": 12657, "credit_id": "52fe4281c3a36847f8024269", "cast_id": 23, "profile_path": "/7LLKosDRULvBm1FOOBunpkgoNdj.jpg", "order": 3}, {"name": "Patricia Hayes", "character": "Fin Raziel", "id": 12658, "credit_id": "52fe4281c3a36847f802426d", "cast_id": 24, "profile_path": "/1G864KAppXhSlwarx9fHoMufjWF.jpg", "order": 4}, {"name": "Billy Barty", "character": "High Aldwin", "id": 12659, "credit_id": "52fe4281c3a36847f8024271", "cast_id": 25, "profile_path": "/4tDse78ebbkwAh8mr7BLqY9QMp9.jpg", "order": 5}, {"name": "Pat Roach", "character": "General Kael", "id": 10942, "credit_id": "52fe4281c3a36847f8024275", "cast_id": 26, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 6}, {"name": "Gavin O'Herlihy", "character": "Airk Thaughbaer", "id": 12660, "credit_id": "52fe4281c3a36847f8024279", "cast_id": 27, "profile_path": "/brFrEXHx5vaeWJmqhQJMEaZhUHl.jpg", "order": 7}, {"name": "David Steinberg", "character": "Meegosh", "id": 12661, "credit_id": "52fe4281c3a36847f802427d", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Phil Fondacaro", "character": "Vohnkar", "id": 12662, "credit_id": "52fe4281c3a36847f8024281", "cast_id": 29, "profile_path": "/3Ao8VPvlytIm3DWFffdSPxwxFdC.jpg", "order": 9}, {"name": "Mark Northover", "character": "Burglekutt", "id": 590081, "credit_id": "52fe4281c3a36847f8024285", "cast_id": 30, "profile_path": "/9FBnX2DSitq1kRuJ8RhXyJy9tvC.jpg", "order": 10}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f80241ed", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.6, "runtime": 126}, "9040": {"poster_path": "/kGE1Uwh4NRwoo3aUg8ocgxOKze7.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29800000, "overview": "Serpico is a 1973 American biopic directed by Sidney Lumet and starring Al Pacino. It's based on Peter Maas' biography of NYPD officer Frank Serpico, who went undercover to expose corruption in the force. The film and its principals were nominated for numerous awards, and together with Scarecrow, which was released the same year, it marked the big breakthrough for Al Pacino. The film was also a commercial success.", "video": false, "id": 9040, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Serpico", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070666", "adult": false, "backdrop_path": "/6pHv9P9yNXvOAp6G9UU8W8wzeLR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "De Laurentiis Entertainment Group", "id": 499}, {"name": "Artists Entertainment Complex", "id": 612}], "release_date": "1973-12-05", "popularity": 0.831773606837441, "original_title": "Serpico", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Officer Frank Serpico", "id": 1158, "credit_id": "52fe44d5c3a36847f80acb41", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "John Randolph Jones", "character": "Chief Sidney Green", "id": 6758, "credit_id": "52fe44d5c3a36847f80acb45", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Jack Kehoe", "character": "Tom Keough", "id": 1273, "credit_id": "52fe44d5c3a36847f80acb49", "cast_id": 3, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 2}, {"name": "Biff McGuire", "character": "Capt. Insp. McClain", "id": 13947, "credit_id": "52fe44d5c3a36847f80acb4d", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Barbara Eda-Young", "character": "Laurie", "id": 56779, "credit_id": "52fe44d5c3a36847f80acb51", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Cornelia Sharpe", "character": "Leslie Lane", "id": 56780, "credit_id": "52fe44d5c3a36847f80acb55", "cast_id": 6, "profile_path": "/kT53AwKe75rsaAhTt50WobvsUKG.jpg", "order": 5}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80acb5b", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 7.5, "runtime": 129}, "28211": {"poster_path": "/9NyVhWbTrCMzWoExYZU54tsDJ6k.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8459458, "overview": "A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.", "video": false, "id": 28211, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Chloe", "tagline": "If the one you love was lying to you, how far would you go to find out the truth?", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1352824", "adult": false, "backdrop_path": "/qVATwWm9QAjkPNzaZHnEHEYHcyy.jpg", "production_companies": [{"name": "Outpost Studios", "id": 25886}, {"name": "StudioCanal", "id": 694}, {"name": "Montecito Picture Company, The", "id": 4607}], "release_date": "2009-09-12", "popularity": 0.469903026954941, "original_title": "Chloe", "budget": 15000000, "cast": [{"name": "Julianne Moore", "character": "Catherine Stewart", "id": 1231, "credit_id": "52fe4581c3a368484e05f53d", "cast_id": 4, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Liam Neeson", "character": "David", "id": 3896, "credit_id": "52fe4581c3a368484e05f535", "cast_id": 2, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 1}, {"name": "Amanda Seyfried", "character": "Chloe", "id": 71070, "credit_id": "52fe4581c3a368484e05f539", "cast_id": 3, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 2}, {"name": "Max Thieriot", "character": "Michael Stewart", "id": 41883, "credit_id": "52fe4581c3a368484e05f55f", "cast_id": 10, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 3}, {"name": "R. H. Thomson", "character": "Frank", "id": 91600, "credit_id": "52fe4581c3a368484e05f563", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Nina Dobrev", "character": "Anna", "id": 19961, "credit_id": "52fe4581c3a368484e05f567", "cast_id": 12, "profile_path": "/7YM2mqfrO9mrNJ6GwBNmSSiWNTR.jpg", "order": 5}, {"name": "Mishu Vellani", "character": "Receptionist", "id": 125579, "credit_id": "52fe4581c3a368484e05f56b", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Julie Khaner", "character": "Bimsy", "id": 12487, "credit_id": "52fe4581c3a368484e05f56f", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Laura DeCarteret", "character": "Alicia", "id": 63858, "credit_id": "52fe4581c3a368484e05f573", "cast_id": 15, "profile_path": "/3Uj7eCO8zxLMFyUd6aNwevhXFA7.jpg", "order": 8}, {"name": "Tiffany Lyndall-Knight", "character": "Trina", "id": 125581, "credit_id": "52fe4581c3a368484e05f577", "cast_id": 17, "profile_path": "/15M9lq3ralCL1xC0bGmLkbaje7W.jpg", "order": 9}, {"name": "Meghan Heffern", "character": "Miranda", "id": 27004, "credit_id": "52fe4581c3a368484e05f57b", "cast_id": 18, "profile_path": "/djl8gcKuGRREfR51UgF0TUfINwG.jpg", "order": 10}, {"name": "Arlene Duncan", "character": "Party Guest", "id": 125582, "credit_id": "52fe4581c3a368484e05f57f", "cast_id": 19, "profile_path": "/n63lHaBvQ8vlMooamgCoCcul25f.jpg", "order": 11}, {"name": "Tamsen McDonough", "character": "Waitress", "id": 1160260, "credit_id": "52fe4582c3a368484e05f5f5", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Kathryn Kriitmaa", "character": "Waitress 2", "id": 1160261, "credit_id": "52fe4582c3a368484e05f5f9", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Adam Waxman", "character": "Bartender", "id": 1160262, "credit_id": "52fe4582c3a368484e05f5fd", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Natalie Lisinska", "character": "Eliza", "id": 1228319, "credit_id": "52fe4582c3a368484e05f601", "cast_id": 42, "profile_path": "/wVZMqXZjwXOQogwJpAiJVnaN1Hl.jpg", "order": 15}], "directors": [{"name": "Atom Egoyan", "department": "Directing", "job": "Director", "credit_id": "52fe4581c3a368484e05f531", "profile_path": "/qG15OKx3VaYicQcDnd88XFlIxl3.jpg", "id": 56205}], "vote_average": 6.2, "runtime": 96}, "850": {"poster_path": "/gM7V7j81UUrUbqZYkWzfAIspQB3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19294144, "overview": "The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.", "video": false, "id": 850, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "A Christmas Story", "tagline": "Peace, Harmony, Comfort and Joy... Maybe Next Year.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sDJLWSHdsORRGMEii0SWvm7DMwN.jpg", "poster_path": "/qjHPRBBiluOwJZp7AcMtrs0dNPr.jpg", "id": 201873, "name": "A Christmas Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085334", "adult": false, "backdrop_path": "/wok0YepwQfBAPsrttFq0W6HXT2g.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Christmas Tree Films", "id": 10757}], "release_date": "1983-11-18", "popularity": 0.255286790924785, "original_title": "A Christmas Story", "budget": 0, "cast": [{"name": "Melinda Dillon", "character": "Mrs. Parker", "id": 4778, "credit_id": "52fe4281c3a36847f802449b", "cast_id": 11, "profile_path": "/f4DU3lNCJqNVgwDZmHMlNV96rKV.jpg", "order": 0}, {"name": "Darren McGavin", "character": "The Old Man (Mr. Parker)", "id": 7333, "credit_id": "52fe4281c3a36847f802449f", "cast_id": 12, "profile_path": "/issKaw0mcujeUZLiLkizs1KYG98.jpg", "order": 1}, {"name": "Peter Billingsley", "character": "Ralphie Parker", "id": 12708, "credit_id": "52fe4281c3a36847f80244a3", "cast_id": 13, "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "order": 2}, {"name": "Ian Petrella", "character": "Randy Parker", "id": 12709, "credit_id": "52fe4281c3a36847f80244a7", "cast_id": 14, "profile_path": "/zqf2DFXa8heDWOpU449VSdsk0R3.jpg", "order": 3}, {"name": "Scott Schwartz", "character": "Flick", "id": 12710, "credit_id": "52fe4281c3a36847f80244ab", "cast_id": 15, "profile_path": "/b4jHavjmm9IclKG1X00Lhl6TcuZ.jpg", "order": 4}, {"name": "R.D. Robb", "character": "Schwartz", "id": 12711, "credit_id": "52fe4281c3a36847f80244af", "cast_id": 16, "profile_path": "/j5xBAzZSS0VHj5kaKCbmc4XROPK.jpg", "order": 5}, {"name": "Tedde Moore", "character": "Miss Shields", "id": 12712, "credit_id": "52fe4281c3a36847f80244b3", "cast_id": 17, "profile_path": "/2y9WGr4Kwsy8rrCMox1m6EAVkC2.jpg", "order": 6}, {"name": "Yano Anaya", "character": "Grover Dill", "id": 12713, "credit_id": "52fe4281c3a36847f80244b7", "cast_id": 18, "profile_path": "/lTHGJL2nO6BLqdna6c4WR58BLPC.jpg", "order": 7}, {"name": "Zack Ward", "character": "Scut Farkus", "id": 12714, "credit_id": "52fe4281c3a36847f80244bb", "cast_id": 19, "profile_path": "/fuWd404vjKvxBRZLX5y8iFFzHqT.jpg", "order": 8}, {"name": "Jeff Gillen", "character": "Santa Claus", "id": 12715, "credit_id": "52fe4281c3a36847f80244bf", "cast_id": 20, "profile_path": "/jIvwCeOOb7gXcd7motKLdaeF3cC.jpg", "order": 9}, {"name": "Leslie Carlson", "character": "Christmas Tree Man", "id": 12716, "credit_id": "52fe4281c3a36847f80244c3", "cast_id": 21, "profile_path": "/nnYVdNB7MpXbBdq3xRzkD5fTzmW.jpg", "order": 10}, {"name": "Jean Shepherd", "character": "Ralphie as an Adult", "id": 12699, "credit_id": "52fe4282c3a36847f80244d3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Jim Hunter", "character": "Freight Man", "id": 61872, "credit_id": "52fe4282c3a36847f80244d7", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "Bob Clark", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f8024461", "profile_path": "/yQgRWKPFH2uFWIJiWr5EyWLRbvD.jpg", "id": 12698}], "vote_average": 7.1, "runtime": 94}, "9043": {"poster_path": "/m9JjA1pPVMZKmJkShq6iTrItkUW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An uptight, conservative, businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.", "video": false, "id": 9043, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Family Stone", "tagline": "Feel The Love", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356680", "adult": false, "backdrop_path": "/593ifKg4TzL7BMKnA5dyNMaDE3k.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2005-12-14", "popularity": 0.70601905890461, "original_title": "The Family Stone", "budget": 0, "cast": [{"name": "Claire Danes", "character": "Julie Morton", "id": 6194, "credit_id": "52fe44d5c3a36847f80acc6f", "cast_id": 1, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Sybil Stone", "id": 3092, "credit_id": "52fe44d5c3a36847f80acc73", "cast_id": 2, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Rachel McAdams", "character": "Amy Stone", "id": 53714, "credit_id": "52fe44d5c3a36847f80acc77", "cast_id": 3, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 2}, {"name": "Dermot Mulroney", "character": "Everett Stone", "id": 20212, "credit_id": "52fe44d5c3a36847f80acc7b", "cast_id": 4, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 3}, {"name": "Sarah Jessica Parker", "character": "Meredith Morton", "id": 520, "credit_id": "52fe44d5c3a36847f80acca9", "cast_id": 12, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 4}, {"name": "Luke Wilson", "character": "Ben Stone", "id": 36422, "credit_id": "52fe44d5c3a36847f80accad", "cast_id": 13, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Kelly Stone", "id": 8977, "credit_id": "52fe44d5c3a36847f80accb1", "cast_id": 14, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Brian J. White", "character": "Patrick Thomas", "id": 31137, "credit_id": "52fe44d5c3a36847f80accb5", "cast_id": 15, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 7}, {"name": "Tyrone Giordano", "character": "Thad Stone", "id": 142215, "credit_id": "548e327492514122ff004fde", "cast_id": 16, "profile_path": "/wQ7zXkauiSOI8TgULlrlCCPsBLD.jpg", "order": 8}, {"name": "Elizabeth Reaser", "character": "", "id": 53755, "credit_id": "548e32b292514155680031a2", "cast_id": 21, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 13}], "directors": [{"name": "Thomas Bezucha", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80acc81", "profile_path": "/kEoJG7HI8RMGUr3ubRvgwfARzL0.jpg", "id": 56789}], "vote_average": 6.2, "runtime": 103}, "2756": {"poster_path": "/kRP5dGXDhKt7bDpXX4YBa4dRwlL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000098, "overview": "A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.", "video": false, "id": 2756, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Abyss", "tagline": "There's everything you've ever known about adventure, and then there's The Abyss.", "vote_count": 232, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096754", "adult": false, "backdrop_path": "/5mE9rLSjtjGdl1q2tSsqMAydE4F.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Lightstorm Entertainment", "id": 574}, {"name": "Pacific Western", "id": 1280}], "release_date": "1989-08-08", "popularity": 1.13523909540453, "original_title": "The Abyss", "budget": 70000000, "cast": [{"name": "Ed Harris", "character": "Virgil 'Bud' Brigman", "id": 228, "credit_id": "52fe436ac3a36847f80528f9", "cast_id": 10, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 0}, {"name": "Mary Elizabeth Mastrantonio", "character": "Lindsey Brigman", "id": 1161, "credit_id": "52fe436ac3a36847f80528fd", "cast_id": 11, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 1}, {"name": "Michael Biehn", "character": "Lieutenant Hiram Coffey", "id": 2712, "credit_id": "52fe436ac3a36847f8052901", "cast_id": 12, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 2}, {"name": "Leo Burmester", "character": "Catfish De Vries", "id": 30151, "credit_id": "52fe436ac3a36847f8052905", "cast_id": 13, "profile_path": "/8V3Ev6pKP8VBRIjDONJW5cgi5Zc.jpg", "order": 3}, {"name": "Todd Graff", "character": "Alan 'Hippy' Carnes", "id": 18342, "credit_id": "52fe436ac3a36847f8052909", "cast_id": 14, "profile_path": "/vkPr16eIkAXeZr2Xa0HUeiwsdF.jpg", "order": 4}, {"name": "John Bedford Lloyd", "character": "Jammer Willis", "id": 60118, "credit_id": "52fe436ac3a36847f805290d", "cast_id": 15, "profile_path": "/6tE1lFrmKiOVsHt3fUay62ttn3U.jpg", "order": 5}, {"name": "Kimberly Scott", "character": "Lisa 'One Night' Standing", "id": 1984, "credit_id": "52fe436ac3a36847f8052911", "cast_id": 16, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 6}, {"name": "Chris Elliott", "character": "Bendix", "id": 1534, "credit_id": "52fe436ac3a36847f8052915", "cast_id": 17, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 7}, {"name": "J.C. Quinn", "character": "Arliss 'Sonny' Dawson", "id": 21757, "credit_id": "52fe436ac3a36847f8052919", "cast_id": 18, "profile_path": "/wNvCFv3EfT2og032UGcfWQ8hatV.jpg", "order": 8}, {"name": "Captain Kidd Brewer Jr.", "character": "Lew Finler", "id": 948563, "credit_id": "52fe436ac3a36847f805291d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "George Robert Klek", "character": "Wilhite", "id": 951985, "credit_id": "52fe436ac3a36847f8052921", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Christopher Murphy", "character": "Schoenick", "id": 551894, "credit_id": "52fe436ac3a36847f8052925", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Adam Nelson", "character": "Ensign Monk", "id": 4732, "credit_id": "52fe436ac3a36847f8052929", "cast_id": 22, "profile_path": "/wKAaHygc4o4Mr2HwBxPELm1ysqg.jpg", "order": 12}, {"name": "Dick Warlock", "character": "Dwight Perry", "id": 14663, "credit_id": "52fe436ac3a36847f805292d", "cast_id": 23, "profile_path": "/n0TfOxlMYfqxclyRAN4kj2dajkk.jpg", "order": 13}, {"name": "Jimmie Ray Weeks", "character": "Leland McBride", "id": 15442, "credit_id": "52fe436ac3a36847f8052931", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "J. Kenneth Campbell", "character": "DeMarco", "id": 97944, "credit_id": "52fe436ac3a36847f8052935", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Peter Ratray", "character": "Captain", "id": 156819, "credit_id": "52fe436ac3a36847f8052939", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Michael Beach", "character": "Barnes", "id": 87118, "credit_id": "52fe436ac3a36847f805293d", "cast_id": 28, "profile_path": "/lOlWhURNKyZHn71dvq7qC7fiwN6.jpg", "order": 17}, {"name": "Ken Jenkins", "character": "Gerard Kirkhill", "id": 38570, "credit_id": "52fe436ac3a36847f8052941", "cast_id": 29, "profile_path": "/6w9OgC4nGUfYavC86a3FeeMgUJ4.jpg", "order": 18}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f80528c5", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 6.7, "runtime": 139}, "853": {"poster_path": "/dOWSbEn3ucyoiBE9IgFWAo1O7Sg.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96976270, "overview": "Enemy at the Gates is a war film from Jean-Jacques Annaud from 2001 that takes place during the battle of Stalingard in World War II between the Russians and the Germans.", "video": false, "id": 853, "genres": [{"id": 10752, "name": "War"}], "title": "Enemy at the Gates", "tagline": "Some Men Are Born To Be Heroes.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0215750", "adult": false, "backdrop_path": "/hHYp1YdJIu75Zr8F5IeQatlrex1.jpg", "production_companies": [{"name": "Swanford Films", "id": 549}, {"name": "Paramount Pictures", "id": 4}, {"name": "Mandalay Pictures", "id": 551}, {"name": "KC Medien", "id": 22182}, {"name": "Reperage", "id": 24136}, {"name": "DOS", "id": 24137}, {"name": "Little Bird", "id": 11358}, {"name": "MP Film Management", "id": 24138}], "release_date": "2001-03-13", "popularity": 1.09182025823275, "original_title": "Enemy at the Gates", "budget": 70000000, "cast": [{"name": "Jude Law", "character": "Vassili Zaitsev", "id": 9642, "credit_id": "52fe4282c3a36847f8024713", "cast_id": 22, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Tania Chernova", "id": 3293, "credit_id": "52fe4282c3a36847f8024717", "cast_id": 23, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Ed Harris", "character": "Major K\u00f6nig", "id": 228, "credit_id": "52fe4282c3a36847f802471b", "cast_id": 24, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Joseph Fiennes", "character": "Commisar Danilov", "id": 12763, "credit_id": "52fe4282c3a36847f802471f", "cast_id": 25, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 3}, {"name": "Bob Hoskins", "character": "Nikita Khrushchev", "id": 382, "credit_id": "52fe4282c3a36847f8024723", "cast_id": 26, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 4}, {"name": "Ron Perlman", "character": "Koulikov", "id": 2372, "credit_id": "52fe4282c3a36847f8024727", "cast_id": 27, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 5}, {"name": "Eva Mattes", "character": "Mother Filipov", "id": 10627, "credit_id": "52fe4282c3a36847f802472b", "cast_id": 28, "profile_path": "/9qUzPuHrQ2DV64CycNJMUFq4YvB.jpg", "order": 6}, {"name": "Gabriel Thomson", "character": "Sacha Filipov", "id": 12764, "credit_id": "52fe4282c3a36847f802472f", "cast_id": 29, "profile_path": "/gHaX9R4QkHbayJP9SeYgAs4Z0ZB.jpg", "order": 7}, {"name": "Matthias Habich", "character": "General Paulus", "id": 4534, "credit_id": "52fe4282c3a36847f8024733", "cast_id": 30, "profile_path": "/7YB9tFGl8rbxBhuy9jqjU2qMHU9.jpg", "order": 8}, {"name": "Alexander Schwan", "character": "Young Vassili Zaitsev", "id": 12765, "credit_id": "52fe4282c3a36847f8024737", "cast_id": 31, "profile_path": "/nTzrV5ENlUodFBxXs9P1kzQV2O0.jpg", "order": 9}, {"name": "Lenn Kudrjawizki", "character": "Comrade in Train", "id": 12766, "credit_id": "52fe4282c3a36847f802473b", "cast_id": 32, "profile_path": "/m8Sn5H6CHHrD8vxhLun2c3gMcs4.jpg", "order": 10}, {"name": "Gennadi Vengerov", "character": "Russian NCO", "id": 12767, "credit_id": "52fe4282c3a36847f802473f", "cast_id": 33, "profile_path": "/5O6GrF9jxvFMzqsQCs7ZEoMBYjr.jpg", "order": 11}, {"name": "Dan van Husen", "character": "Political Officer", "id": 12768, "credit_id": "52fe4282c3a36847f8024743", "cast_id": 34, "profile_path": "/tH1QUbViWdam7tkHvJKf9VE8H66.jpg", "order": 12}, {"name": "Ivan Shvedoff", "character": "Volodya", "id": 6079, "credit_id": "54f1a6e7c3a368322f00164f", "cast_id": 92, "profile_path": "/AkzSvrLAo3e4rFb1vrT7HzAQM6R.jpg", "order": 13}, {"name": "Sophie Rois", "character": "Ludmilla", "id": 15122, "credit_id": "54f1a72ec3a368322f00165d", "cast_id": 93, "profile_path": "/vazL9RbgZpQNpkIMbHuYqJauRmi.jpg", "order": 14}, {"name": "Mikhail Matveev", "character": "Grandfather", "id": 1445335, "credit_id": "5511dd31c3a36801d2002221", "cast_id": 94, "profile_path": null, "order": 15}], "directors": [{"name": "Jean-Jacques Annaud", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f8024697", "profile_path": "/wWECpMbiIcKZF8VXsNfxJVeW2Rr.jpg", "id": 2352}], "vote_average": 7.0, "runtime": 131}, "854": {"poster_path": "/v8x8p441l1Bep8p82pAG6rduBoK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 351583407, "overview": "When timid bank clerk Stanley Ipkiss (Jim Carrey) discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle (Cameron Diaz). Unfortunately, under the mask's influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell (Peter Greene), whose goons get blamed for the heist.", "video": false, "id": 854, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Mask", "tagline": "From zero to hero.", "vote_count": 583, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ucDNm5TJW1ji7kIjnX2SZYm7ATM.jpg", "poster_path": "/pl2vNt9XlxITTgm8wCQ2Y6ThkpT.jpg", "id": 43072, "name": "The Mask Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110475", "adult": false, "backdrop_path": "/kQlLZ8JgzVhFH6hlZovZycQSxbP.jpg", "production_companies": [{"name": "Dark Horse Entertainment", "id": 552}, {"name": "New Line Cinema", "id": 12}], "release_date": "1994-07-29", "popularity": 1.22341228804297, "original_title": "The Mask", "budget": 23000000, "cast": [{"name": "Jim Carrey", "character": "Stanley Ipkiss", "id": 206, "credit_id": "52fe4282c3a36847f80247c1", "cast_id": 17, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Tina Carlyle", "id": 6941, "credit_id": "52fe4282c3a36847f80247c5", "cast_id": 18, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Nancy Fish", "character": "Mrs. Peenman", "id": 42168, "credit_id": "52fe4282c3a36847f80247c9", "cast_id": 19, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 2}, {"name": "Tim Bagley", "character": "Irv", "id": 53400, "credit_id": "52fe4282c3a36847f80247cd", "cast_id": 20, "profile_path": "/eijzmkkXb4NstAdvpMZ1m91cRxY.jpg", "order": 3}, {"name": "Johnny Williams", "character": "Burt", "id": 53401, "credit_id": "52fe4282c3a36847f80247d1", "cast_id": 21, "profile_path": "/ft15amt3pyRLYG8iOjHlgS3nLaf.jpg", "order": 4}, {"name": "Peter Riegert", "character": "Lieutenant Mitch Kellaway", "id": 20899, "credit_id": "52fe4282c3a36847f80247d5", "cast_id": 22, "profile_path": "/szAJjIZY23cRhPUKLb6X3IbGEc5.jpg", "order": 5}, {"name": "Peter Greene", "character": "Dorian Tyrrell", "id": 11803, "credit_id": "52fe4282c3a36847f80247d9", "cast_id": 23, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 6}, {"name": "Amy Yasbeck", "character": "Peggy Brandt", "id": 1219, "credit_id": "52fe4282c3a36847f80247dd", "cast_id": 24, "profile_path": "/p2wXpK7wRwLre2e37Z6QQ6BvcUg.jpg", "order": 7}, {"name": "Richard Jeni", "character": "Charlie Schumaker", "id": 53402, "credit_id": "52fe4282c3a36847f80247e1", "cast_id": 25, "profile_path": "/egpfZBXrgLAMf9Evu4VowemfKnd.jpg", "order": 8}, {"name": "Orestes Matacena", "character": "Niko", "id": 53403, "credit_id": "52fe4282c3a36847f80247e5", "cast_id": 26, "profile_path": "/1HhuYbx3DlFpjfwdwTfG1z1aRC4.jpg", "order": 9}, {"name": "Anne Fletcher", "character": "Dancer", "id": 29214, "credit_id": "52fe4282c3a36847f80247e9", "cast_id": 27, "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "order": 10}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f80247a5", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 6.5, "runtime": 101}, "855": {"poster_path": "/yUzQ4r3q1Dy0bUAkMvUIwf0rPpR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 172989651, "overview": "When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.", "video": false, "id": 855, "genres": [{"id": 28, "name": "Action"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Black Hawk Down", "tagline": "Leave No Man Behind.", "vote_count": 636, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "so", "name": "Somali"}], "imdb_id": "tt0265086", "adult": false, "backdrop_path": "/ysCQvbaEPFTEhg1ufY7B2G8oJmT.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Revolution Studios", "id": 497}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2001-12-28", "popularity": 1.10302458530674, "original_title": "Black Hawk Down", "budget": 92000000, "cast": [{"name": "Josh Hartnett", "character": "SSgt. Matt Eversmann", "id": 2299, "credit_id": "52fe4282c3a36847f80248cf", "cast_id": 20, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Spec. John Grimes", "id": 3061, "credit_id": "52fe4282c3a36847f80248d3", "cast_id": 21, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Jason Isaacs", "character": "Capt. Mike Steele", "id": 11355, "credit_id": "52fe4282c3a36847f80248d7", "cast_id": 22, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 2}, {"name": "Tom Sizemore", "character": "Lt. Col. Danny McKnight", "id": 3197, "credit_id": "52fe4282c3a36847f80248db", "cast_id": 23, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 3}, {"name": "William Fichtner", "character": "Sfc. Jeff Sanderson", "id": 886, "credit_id": "52fe4282c3a36847f80248df", "cast_id": 24, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 4}, {"name": "Eric Bana", "character": "Sfc. Norm 'Hoot' Hooten", "id": 8783, "credit_id": "52fe4282c3a36847f80248e3", "cast_id": 25, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 5}, {"name": "Ewen Bremner", "character": "Spec. Shawn Nelson", "id": 1125, "credit_id": "52fe4282c3a36847f80248e7", "cast_id": 26, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 6}, {"name": "Sam Shepard", "character": "Maj. Gen. William F. Garrison", "id": 9880, "credit_id": "52fe4282c3a36847f80248eb", "cast_id": 27, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 7}, {"name": "Tom Hardy", "character": "Spec. Lance Twombly", "id": 2524, "credit_id": "52fe4282c3a36847f80248ef", "cast_id": 28, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 8}, {"name": "Charlie Hofheimer", "character": "Cpl. James 'Jamie' Smith", "id": 12790, "credit_id": "52fe4282c3a36847f80248f3", "cast_id": 30, "profile_path": "/gXQkqXYrlAGJgXRPpOwEv0NjSgT.jpg", "order": 10}, {"name": "Hugh Dancy", "character": "Sfc. Kurt Schmid", "id": 12791, "credit_id": "52fe4282c3a36847f80248f7", "cast_id": 31, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 11}, {"name": "Tom Guiry", "character": "SSgt. Ed Yurek", "id": 4729, "credit_id": "52fe4282c3a36847f80248fb", "cast_id": 32, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 12}, {"name": "Brian Van Holt", "character": "SSgt. Jeff Struecker", "id": 12792, "credit_id": "52fe4282c3a36847f80248ff", "cast_id": 33, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 13}, {"name": "Steven Ford", "character": "Lt. Col. Joe Cribbs", "id": 9258, "credit_id": "52fe4282c3a36847f8024903", "cast_id": 34, "profile_path": "/iw8CUyekmYkGwmg0bp7foY4KvrH.jpg", "order": 14}, {"name": "Gregory Sporleder", "character": "Sgt. Scott Galentine", "id": 10000, "credit_id": "52fe4282c3a36847f8024907", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "\u017deljko Ivanek", "character": "Lt. Col. Gary Harrell", "id": 6752, "credit_id": "52fe4282c3a36847f802490b", "cast_id": 36, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 16}, {"name": "Matthew Marsden", "character": "Spec. Dale Sizemore", "id": 12793, "credit_id": "52fe4282c3a36847f802490f", "cast_id": 37, "profile_path": "/4vsXCzUknnPmadfp9qVtbaO34NP.jpg", "order": 17}, {"name": "Nikolaj Coster-Waldau", "character": "MSgt. Gary Gordon", "id": 12795, "credit_id": "52fe4282c3a36847f8024913", "cast_id": 38, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 18}, {"name": "Orlando Bloom", "character": "Todd Blackburn", "id": 114, "credit_id": "52fe4282c3a36847f8024917", "cast_id": 39, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 19}, {"name": "Johnny Strong", "character": "Sfc. Randy Shughart", "id": 12796, "credit_id": "52fe4282c3a36847f802491b", "cast_id": 41, "profile_path": "/eJIgKkZKS99KRz1C1WgCq0wXsUh.jpg", "order": 20}, {"name": "Kim Coates", "character": "MSgt. Tim \"Griz\" Martin", "id": 8335, "credit_id": "52fe4282c3a36847f802491f", "cast_id": 42, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 21}, {"name": "Glenn Morshower", "character": "Lt. Col. Tom Matthews", "id": 12797, "credit_id": "52fe4282c3a36847f8024923", "cast_id": 43, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 22}, {"name": "Enrique Murciano", "character": "Sgt. Lorenzo Ruiz", "id": 12798, "credit_id": "52fe4282c3a36847f8024927", "cast_id": 44, "profile_path": "/nC37xKp4UdGylXFSJv94eQNTtja.jpg", "order": 23}, {"name": "Jeremy Piven", "character": "CWO Cliff 'Elvis' Wolcott", "id": 12799, "credit_id": "52fe4282c3a36847f802492b", "cast_id": 45, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 24}, {"name": "Brendan Sexton III", "character": "Pfc. Richard 'Alphabet' Kowalewski", "id": 2839, "credit_id": "52fe4282c3a36847f802492f", "cast_id": 46, "profile_path": "/kQsOIQuGcqwdpolSEzLV7RfYVsV.jpg", "order": 25}, {"name": "Carmine Giovinazzo", "character": "Sgt. Mike Goodale", "id": 12800, "credit_id": "52fe4282c3a36847f8024933", "cast_id": 47, "profile_path": "/vz4yAF22bqgPWM1ZDzi9OnfzVP2.jpg", "order": 26}, {"name": "George Harris", "character": "Osman Atto", "id": 2247, "credit_id": "52fe4282c3a36847f8024937", "cast_id": 48, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 27}, {"name": "Razaaq Adoti", "character": "Yousuf Dahir Mo'alim", "id": 12801, "credit_id": "52fe4282c3a36847f802493b", "cast_id": 49, "profile_path": "/8tyDtkUerIQfghpdX1G08EdSEie.jpg", "order": 28}, {"name": "Treva Etienne", "character": "Abdullahi 'Firimbi' Hassan", "id": 12802, "credit_id": "52fe4282c3a36847f802493f", "cast_id": 50, "profile_path": "/wIHXwmb2aFBNIT9aJHahtlHMrto.jpg", "order": 29}, {"name": "Jason Hildebrandt", "character": "CWO Dan Jollata", "id": 12803, "credit_id": "52fe4282c3a36847f8024943", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Ron Eldard", "character": "CWO Michael Durant", "id": 12260, "credit_id": "52fe4282c3a36847f8024947", "cast_id": 52, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 31}, {"name": "Ty Burrell", "character": "Wilkinson", "id": 15232, "credit_id": "52fe4282c3a36847f802494b", "cast_id": 53, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 32}, {"name": "Giannina Facio", "character": "Stephanie Shughart", "id": 58787, "credit_id": "52fe4282c3a36847f802494f", "cast_id": 54, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 33}, {"name": "Boyd Kestner", "character": "Goffena", "id": 37206, "credit_id": "53a2ffcfc3a36831f900174e", "cast_id": 64, "profile_path": "/iZYCIX8dn8HnaByEIOlqFDylm9Z.jpg", "order": 34}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f802485f", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.8, "runtime": 144}, "856": {"poster_path": "/hSycHavBDjY9Qk3h5B4oXWTEqp1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 329803958, "overview": "'Toon star Roger is worried that his wife Jessica is playing pattycake with someone else, so the studio hires detective Eddie Valiant to snoop on her. But the stakes are quickly raised when Marvin Acme is found dead and Roger is the prime suspect.", "video": false, "id": 856, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Who Framed Roger Rabbit", "tagline": "It's the story of a man, a woman, and a rabbit in a triangle of trouble.", "vote_count": 353, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096438", "adult": false, "backdrop_path": "/9podqGmd36AJHO13HQIQHQZRTJC.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Silver Screen Partners III", "id": 554}], "release_date": "1988-06-21", "popularity": 1.07160912682342, "original_title": "Who Framed Roger Rabbit", "budget": 70000000, "cast": [{"name": "Bob Hoskins", "character": "Eddie Valiant", "id": 382, "credit_id": "52fe4283c3a36847f8024a07", "cast_id": 17, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Judge Doom", "id": 1062, "credit_id": "52fe4283c3a36847f8024a0b", "cast_id": 18, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Joanna Cassidy", "character": "Dolores", "id": 593, "credit_id": "52fe4283c3a36847f8024a0f", "cast_id": 19, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 2}, {"name": "Charles Fleischer", "character": "Roger Rabbit/Benny The Cab/Greasy/Psycho", "id": 12826, "credit_id": "52fe4283c3a36847f8024a13", "cast_id": 20, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 3}, {"name": "Kathleen Turner", "character": "Jessica Rabbit", "id": 3391, "credit_id": "546b79a8c3a3680d7d001f2b", "cast_id": 34, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 4}, {"name": "Stubby Kaye", "character": "Marvin Acme", "id": 12827, "credit_id": "52fe4283c3a36847f8024a17", "cast_id": 21, "profile_path": "/rr8PedX37Yg62H9K7j0Ylc1Ir3o.jpg", "order": 5}, {"name": "Alan Tilvern", "character": "R.K. Maroon", "id": 12828, "credit_id": "52fe4283c3a36847f8024a1b", "cast_id": 22, "profile_path": "/8PQ6c0GCbuJ5T6dCjfX72gUtbTG.jpg", "order": 6}, {"name": "Richard LeParmentier", "character": "Lt. Santino", "id": 12829, "credit_id": "52fe4283c3a36847f8024a1f", "cast_id": 23, "profile_path": "/u0xNmE4QAS5EUbn7tG44EfYUkib.jpg", "order": 7}, {"name": "Lou Hirsch", "character": "Baby Herman", "id": 12830, "credit_id": "52fe4283c3a36847f8024a23", "cast_id": 24, "profile_path": "/phyABoneL7MRCxj5UlivxCUhoCu.jpg", "order": 8}, {"name": "Betsy Brantley", "character": "Jessica's Performance Model", "id": 12831, "credit_id": "52fe4283c3a36847f8024a27", "cast_id": 25, "profile_path": "/sAJuozmEy1eoD84yeHPdCu50c3p.jpg", "order": 9}, {"name": "Mel Blanc", "character": "Bugs Bunny/Daffy Duck/Tweety Bird", "id": 33923, "credit_id": "52fe4283c3a36847f8024a2b", "cast_id": 26, "profile_path": "/v7E4ABdhvaF1W604vIUD5Xj1jnb.jpg", "order": 10}, {"name": "Mae Questel", "character": "Betty Boop", "id": 58530, "credit_id": "52fe4283c3a36847f8024a2f", "cast_id": 27, "profile_path": "/wsUsW4fo8u82fbYQlXVaql6fgbk.jpg", "order": 11}, {"name": "Frank Sinatra", "character": "Singer", "id": 4347, "credit_id": "52fe4283c3a36847f8024a33", "cast_id": 28, "profile_path": "/ApNMKr7Eq9KYlYYMF3WyEkwXUbW.jpg", "order": 12}, {"name": "Richard Williams", "character": "Droopy", "id": 116100, "credit_id": "52fe4283c3a36847f8024a37", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Wayne Allwine", "character": "Mickey Mouse", "id": 78076, "credit_id": "52fe4283c3a36847f8024a3b", "cast_id": 30, "profile_path": "/9Xpy0TLwW1L3pCMMULOIZqgFIzt.jpg", "order": 14}, {"name": "Frank Welker", "character": "Dumbo", "id": 15831, "credit_id": "550fecda925141065c004c38", "cast_id": 35, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 16}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f80249a9", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.8, "runtime": 104}, "857": {"poster_path": "/gc7IN6bWNaWXv4vI6cxSmeB7PeO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 481840909, "overview": "As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.", "video": false, "id": 857, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Saving Private Ryan", "tagline": "The mission is a man.", "vote_count": 2068, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0120815", "adult": false, "backdrop_path": "/4y5TDUZlqUmWWtjTAznWb6CFpzt.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Paramount Pictures", "id": 4}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Mutual Film Company", "id": 762}, {"name": "Mark Gordon Productions", "id": 11362}], "release_date": "1998-07-24", "popularity": 2.26012608109033, "original_title": "Saving Private Ryan", "budget": 70000000, "cast": [{"name": "Tom Hanks", "character": "Captain John H. Miller", "id": 31, "credit_id": "52fe4283c3a36847f8024aef", "cast_id": 10, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tom Sizemore", "character": "Technical Sergeant Michael Horvath", "id": 3197, "credit_id": "52fe4283c3a36847f8024af3", "cast_id": 11, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 1}, {"name": "Dennis Farina", "character": "Lieutenant Colonel Walter Anderson", "id": 1117, "credit_id": "52fe4283c3a36847f8024af7", "cast_id": 21, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 2}, {"name": "Max Martini", "character": "Corporal Henderson", "id": 94864, "credit_id": "52fe4283c3a36847f8024b15", "cast_id": 28, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 3}, {"name": "Joerg Stadler", "character": "Steamboat Willie", "id": 12838, "credit_id": "52fe4283c3a36847f8024afb", "cast_id": 22, "profile_path": "/21XKFl1ZS7HG8YEPPyPkJj5mztp.jpg", "order": 4}, {"name": "Harve Presnell", "character": "General George C. Marshall", "id": 3907, "credit_id": "52fe4283c3a36847f8024aff", "cast_id": 24, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 6}, {"name": "Matt Damon", "character": "Private James Francis Ryan", "id": 1892, "credit_id": "52fe4283c3a36847f8024b19", "cast_id": 29, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 7}, {"name": "Edward Burns", "character": "Private Richard Reiben", "id": 12833, "credit_id": "52fe4283c3a36847f8024b1d", "cast_id": 30, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 8}, {"name": "Barry Pepper", "character": "Private Daniel Jackson", "id": 12834, "credit_id": "52fe4283c3a36847f8024b21", "cast_id": 31, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 9}, {"name": "Vin Diesel", "character": "Private Adrian Caparzo", "id": 12835, "credit_id": "52fe4283c3a36847f8024b25", "cast_id": 32, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 10}, {"name": "Adam Goldberg", "character": "Private Stanley Mellish", "id": 6163, "credit_id": "52fe4283c3a36847f8024b29", "cast_id": 33, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 11}, {"name": "Giovanni Ribisi", "character": "T-Medic Irwin Wade", "id": 1771, "credit_id": "52fe4283c3a36847f8024b2d", "cast_id": 34, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 12}, {"name": "Jeremy Davies", "character": "Corporal Timothy Upham", "id": 4654, "credit_id": "52fe4283c3a36847f8024b31", "cast_id": 35, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 13}, {"name": "Ted Danson", "character": "Captain Fred Hamill", "id": 12836, "credit_id": "52fe4283c3a36847f8024b35", "cast_id": 36, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 14}, {"name": "Paul Giamatti", "character": "Sergeant William Hill", "id": 13242, "credit_id": "52fe4283c3a36847f8024b39", "cast_id": 37, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 15}, {"name": "Dylan Bruno", "character": "Toynbe", "id": 52476, "credit_id": "52fe4283c3a36847f8024b3d", "cast_id": 38, "profile_path": "/pNOG54RGO9sCKzbpM33pUEr9F2Y.jpg", "order": 16}, {"name": "Daniel Cerqueira", "character": "Weller", "id": 75071, "credit_id": "52fe4283c3a36847f8024b41", "cast_id": 39, "profile_path": "/edu1hN9hzKm76wwsq1ri09WhxCB.jpg", "order": 17}, {"name": "Demetri Goritsas", "character": "Parker", "id": 20471, "credit_id": "52fe4283c3a36847f8024b45", "cast_id": 40, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 18}, {"name": "Ian Porter", "character": "Trask", "id": 59085, "credit_id": "52fe4283c3a36847f8024b49", "cast_id": 41, "profile_path": "/8KePS3Ubkv6IM4QRxcr9ca7mtL1.jpg", "order": 19}, {"name": "Gary Sefton", "character": "Rice", "id": 218321, "credit_id": "52fe4283c3a36847f8024b4d", "cast_id": 42, "profile_path": "/gEojydkOnjBxri7h9wRjHe4uoOq.jpg", "order": 20}, {"name": "Julian Spencer", "character": "Garrity", "id": 141358, "credit_id": "52fe4283c3a36847f8024b51", "cast_id": 43, "profile_path": "/9MpFW75fGJjgjzElHQJj3h1fu1d.jpg", "order": 21}, {"name": "Kathleen Byron", "character": "Old Mrs. Ryan", "id": 99905, "credit_id": "52fe4283c3a36847f8024b55", "cast_id": 44, "profile_path": "/pw90dr1OFji81G8D6N3EROQCY11.jpg", "order": 22}, {"name": "Nathan Fillion", "character": "Minnesota Ryan", "id": 51797, "credit_id": "52fe4283c3a36847f8024b59", "cast_id": 45, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 23}, {"name": "Bryan Cranston", "character": "War Department Colonel", "id": 17419, "credit_id": "5427c809c3a3680b2c001d1e", "cast_id": 48, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 24}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024ac1", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.5, "runtime": 169}, "858": {"poster_path": "/afkYP15OeUOD0tFEmj6VvejuOcz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227799884, "overview": "A young boy who tries to set his dad up on a date after the death of his mother. He calls into a radio station to talk about his dad\u2019s loneliness which soon leads the dad into meeting a Journalist Annie who flies to Seattle to write a story about the boy and his dad. Yet Annie ends up with more than just a story in this popular romantic comedy.", "video": false, "id": 858, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sleepless in Seattle", "tagline": "What if someone you never met, someone you never saw, someone you never knew was the only someone for you?", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108160", "adult": false, "backdrop_path": "/oCsfZBZ6HpU1IAej52uke9ofk8z.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1993-06-24", "popularity": 1.10708007785734, "original_title": "Sleepless in Seattle", "budget": 21000000, "cast": [{"name": "Tom Hanks", "character": "Sam Baldwin", "id": 31, "credit_id": "52fe4283c3a36847f8024bd9", "cast_id": 13, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Annie Reed", "id": 5344, "credit_id": "52fe4283c3a36847f8024bdd", "cast_id": 14, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Bill Pullman", "character": "Walter", "id": 8984, "credit_id": "52fe4283c3a36847f8024be1", "cast_id": 15, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 2}, {"name": "Ross Malinger", "character": "Jonah Baldwin", "id": 12928, "credit_id": "52fe4283c3a36847f8024be5", "cast_id": 16, "profile_path": "/oeqoxZ3WgQRUE1DusC68SACHHrC.jpg", "order": 3}, {"name": "Rosie O'Donnell", "character": "Becky", "id": 12929, "credit_id": "52fe4283c3a36847f8024be9", "cast_id": 17, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 4}, {"name": "Gaby Hoffmann", "character": "Jessica", "id": 12930, "credit_id": "52fe4283c3a36847f8024bed", "cast_id": 18, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 5}, {"name": "Victor Garber", "character": "Greg", "id": 8536, "credit_id": "52fe4283c3a36847f8024bf1", "cast_id": 19, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 6}, {"name": "Rita Wilson", "character": "Suzy", "id": 12931, "credit_id": "52fe4283c3a36847f8024bf5", "cast_id": 20, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 7}, {"name": "Barbara Garrick", "character": "Victoria", "id": 12932, "credit_id": "52fe4283c3a36847f8024bf9", "cast_id": 21, "profile_path": "/rGnwUug86oil1pZ9whjohbBBRqj.jpg", "order": 8}, {"name": "Rob Reiner", "character": "Jay", "id": 3026, "credit_id": "52fe4283c3a36847f8024bfd", "cast_id": 22, "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "order": 9}, {"name": "Carey Lowell", "character": "Maggie Abbott Baldwin", "id": 10679, "credit_id": "52fe4283c3a36847f8024c01", "cast_id": 23, "profile_path": "/193Lp3xIPzi8Q8VDRsRK3s8bXqg.jpg", "order": 10}, {"name": "David Hyde Pierce", "character": "Dennis Reed", "id": 11076, "credit_id": "52fe4283c3a36847f8024c05", "cast_id": 24, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 11}, {"name": "Dana Ivey", "character": "Claire Bennett", "id": 13314, "credit_id": "52fe4283c3a36847f8024c09", "cast_id": 25, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 12}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024b93", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 6.2, "runtime": 105}, "860": {"poster_path": "/akPIXEzNgjmtiz5FTtaLBHJassh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74000000, "overview": "High School student David Lightman (Matthew Broderick) has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Defense Department's war computer and initiates a confrontation of global proportions! Together with his girlfriend (Ally Sheedy) and a wizardly computer genius (John Wood), David must race against time to outwit his opponent...and prevent a nuclear Armageddon.", "video": false, "id": 860, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "WarGames", "tagline": "Is it a game, or is it real?", "vote_count": 107, "homepage": "http://www.mgm.com/title_title.do?title_star=WARGAMES", "belongs_to_collection": {"backdrop_path": "/tBWSIMflBa1tUvSVVqLCuwviW1y.jpg", "poster_path": "/tPvDCajdnC6RpuKQqRI9G62IJ7f.jpg", "id": 151263, "name": "WarGames Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086567", "adult": false, "backdrop_path": "/AkwLeC0Q8GIkYJ6ZI0tc0118AY6.jpg", "production_companies": [{"name": "Sherwood", "id": 556}, {"name": "The Leonard Goldberg Company", "id": 557}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "United Artists", "id": 60}], "release_date": "1983-06-03", "popularity": 1.00581733186735, "original_title": "WarGames", "budget": 12000000, "cast": [{"name": "Matthew Broderick", "character": "David Lightman", "id": 4756, "credit_id": "52fe4283c3a36847f8024d67", "cast_id": 15, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Dabney Coleman", "character": "Dr. John McKittrick", "id": 12850, "credit_id": "52fe4283c3a36847f8024d6b", "cast_id": 16, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 1}, {"name": "Ally Sheedy", "character": "Jennifer Katherine Mack", "id": 12851, "credit_id": "52fe4283c3a36847f8024d6f", "cast_id": 18, "profile_path": "/xfNrfzgDwyvmczadJWw4fN70siS.jpg", "order": 2}, {"name": "John Wood", "character": "Dr. Stephen Falken", "id": 8937, "credit_id": "52fe4283c3a36847f8024ddf", "cast_id": 47, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 3}, {"name": "Barry Corbin", "character": "General Jack Beringer", "id": 12852, "credit_id": "52fe4283c3a36847f8024d73", "cast_id": 19, "profile_path": "/sI9LkzJYancOxTdC3othmzCxdp4.jpg", "order": 4}, {"name": "Juanin Clay", "character": "Pat Healy", "id": 12853, "credit_id": "52fe4283c3a36847f8024d77", "cast_id": 20, "profile_path": "/rSAhf4lbBTAyFnvf8vtxrhqTaGH.jpg", "order": 5}, {"name": "Kent Williams", "character": "Arthur Cabot", "id": 12854, "credit_id": "52fe4283c3a36847f8024d7b", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Dennis Lipscomb", "character": "Lyle Watson", "id": 12855, "credit_id": "52fe4283c3a36847f8024d7f", "cast_id": 22, "profile_path": "/24Rwjg1GHJiGO6qfuzJqxEqt8Fs.jpg", "order": 7}, {"name": "Joe Dorsey", "character": "Col. Joe Conley", "id": 12856, "credit_id": "52fe4283c3a36847f8024d83", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Irving Metzman", "character": "Paul Richter", "id": 12857, "credit_id": "52fe4283c3a36847f8024d87", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Michael Ensign", "character": "Beringer's Aide", "id": 1080265, "credit_id": "52fe4283c3a36847f8024ddb", "cast_id": 46, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}, {"name": "William Bogert", "character": "Mr. Lightman", "id": 14543, "credit_id": "52fe4283c3a36847f8024d8b", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Susan Davis", "character": "Mrs. Lightman", "id": 160600, "credit_id": "52fe4283c3a36847f8024d8f", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "James Tolkan", "character": "Nigan", "id": 1072, "credit_id": "52fe4283c3a36847f8024d93", "cast_id": 28, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 13}, {"name": "David Clover", "character": "Stockman", "id": 107078, "credit_id": "52fe4283c3a36847f8024d97", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Drew Snyder", "character": "Ayers", "id": 52188, "credit_id": "52fe4283c3a36847f8024d9b", "cast_id": 30, "profile_path": "/xW8V4eZaFRm0J2FCNNrcojN8yOg.jpg", "order": 15}, {"name": "John Garber", "character": "Corporal in the Infirmary", "id": 950548, "credit_id": "52fe4283c3a36847f8024d9f", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Duncan Wilmore", "character": "Major Lem", "id": 1072730, "credit_id": "52fe4283c3a36847f8024da3", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Billy Ray Sharkey", "character": "Radar Analyst", "id": 95682, "credit_id": "52fe4283c3a36847f8024da7", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "John Spencer", "character": "Jerry", "id": 34691, "credit_id": "52fe4283c3a36847f8024dab", "cast_id": 34, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 19}, {"name": "Michael Madsen", "character": "Steve", "id": 147, "credit_id": "52fe4283c3a36847f8024daf", "cast_id": 35, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 20}, {"name": "Erik Stern", "character": "Commander", "id": 161599, "credit_id": "52fe4283c3a36847f8024db3", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Gary Bisig", "character": "Deputy", "id": 161541, "credit_id": "52fe4283c3a36847f8024db7", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Gary Sexton", "character": "Technician", "id": 1072733, "credit_id": "52fe4283c3a36847f8024dbb", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Jason Bernard", "character": "Captain Knewt", "id": 18192, "credit_id": "52fe4283c3a36847f8024dbf", "cast_id": 39, "profile_path": "/sbzBKAZ1KWIusoX9nX75sIyaAJI.jpg", "order": 24}, {"name": "Frankie Hill", "character": "Airman Fields", "id": 208720, "credit_id": "52fe4283c3a36847f8024dc3", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Jesse D. Goins", "character": "Sergeant (as Jesse Goins)", "id": 44043, "credit_id": "52fe4283c3a36847f8024dc7", "cast_id": 41, "profile_path": "/rjNRg0SgCo31mCCYRb3NvtjFu18.jpg", "order": 26}, {"name": "Alan Blumenfeld", "character": "Mr. Liggett", "id": 22053, "credit_id": "52fe4283c3a36847f8024dcb", "cast_id": 42, "profile_path": "/2ag56MvKkTuhGnUFgJza4hJZl8u.jpg", "order": 27}, {"name": "Len Lawson", "character": "Boys Vice Principal", "id": 182759, "credit_id": "52fe4283c3a36847f8024dcf", "cast_id": 43, "profile_path": null, "order": 28}, {"name": "Maury Chaykin", "character": "Jim Sting", "id": 7868, "credit_id": "52fe4283c3a36847f8024dd3", "cast_id": 44, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 29}, {"name": "Eddie Deezen", "character": "Malvin", "id": 42362, "credit_id": "52fe4283c3a36847f8024dd7", "cast_id": 45, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 30}], "directors": [{"name": "John Badham", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024d15", "profile_path": "/oAhHnnyoIY7qgg7aERbsOuqFdow.jpg", "id": 12840}], "vote_average": 6.6, "runtime": 114}, "861": {"poster_path": "/ikYpJ0AjGBNnAYFnPJDUVIOcduR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 261317921, "overview": "Construction worker Douglas Quaid discovers a memory chip in his brain during a virtual-reality trip. He also finds that his past has been invented to conceal a plot of planetary domination. Soon, he's off to Mars to find out who he is and who planted the chip.", "video": false, "id": 861, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Total Recall", "tagline": "They stole his mind, now he wants it back.", "vote_count": 467, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100802", "adult": false, "backdrop_path": "/rPqCxVXBD89jeWMgJU3MeFA6GDV.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1990-06-01", "popularity": 1.09808255232685, "original_title": "Total Recall", "budget": 65000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Douglas Quaid/Hauser", "id": 1100, "credit_id": "52fe4283c3a36847f8024e9b", "cast_id": 23, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Lori", "id": 4430, "credit_id": "52fe4283c3a36847f8024e9f", "cast_id": 24, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "Rachel Ticotin", "character": "Melina", "id": 10768, "credit_id": "52fe4283c3a36847f8024ea3", "cast_id": 25, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 2}, {"name": "Ronny Cox", "character": "Vilos Cohaagen", "id": 780, "credit_id": "52fe4283c3a36847f8024ea7", "cast_id": 26, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 3}, {"name": "Michael Ironside", "character": "Richter", "id": 11086, "credit_id": "52fe4283c3a36847f8024eab", "cast_id": 27, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 4}, {"name": "Marshall Bell", "character": "George/Kuato", "id": 3041, "credit_id": "52fe4283c3a36847f8024eaf", "cast_id": 28, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 5}, {"name": "Mel Johnson Jr.", "character": "Benny", "id": 12887, "credit_id": "52fe4283c3a36847f8024eb3", "cast_id": 29, "profile_path": "/8s1kAMuKyshscKBYtzWqYxSHBVN.jpg", "order": 6}, {"name": "Michael Champion", "character": "Helm", "id": 790, "credit_id": "52fe4283c3a36847f8024eb7", "cast_id": 30, "profile_path": null, "order": 7}, {"name": "Roy Brocksmith", "character": "Dr. Edgemar", "id": 12888, "credit_id": "52fe4283c3a36847f8024ebb", "cast_id": 31, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 8}, {"name": "Ray Baker", "character": "Bob McClane", "id": 12889, "credit_id": "52fe4283c3a36847f8024ebf", "cast_id": 32, "profile_path": "/cDmi2buNK0WR5OdqAJDk6OcvC2N.jpg", "order": 9}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024e2b", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.6, "runtime": 113}, "50014": {"poster_path": "/6u85CuvnbrzWMhKbGk4Bm5RnO3V.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124272124, "overview": "Aibileen Clark (Viola Davis) is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson (Octavia Spencer) is an African-American maid who has often offended her employers despite her family's struggles with money and her desperate need for jobs; and Eugenia \"Skeeter\" Phelan (Emma Stone) is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around \"the help\"; yet they are always kept at a certain distance because of racial lines.", "video": false, "id": 50014, "genres": [{"id": 18, "name": "Drama"}], "title": "The Help", "tagline": "Change begins with a whisper.", "vote_count": 493, "homepage": "http://thehelpmovie.com/#/splash", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1454029", "adult": false, "backdrop_path": "/dskiB6nk4VA9pmw20L9oN7I4tkO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Participant Productions", "id": 2030}, {"name": "1492 Pictures", "id": 436}], "release_date": "2011-08-10", "popularity": 1.18254101127122, "original_title": "The Help", "budget": 25000000, "cast": [{"name": "Emma Stone", "character": "Eugenia 'Skeeter' Phelan", "id": 54693, "credit_id": "52fe47b5c3a36847f814403f", "cast_id": 10, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 0}, {"name": "Viola Davis", "character": "Aibileen Clark", "id": 19492, "credit_id": "52fe47b5c3a36847f814402f", "cast_id": 6, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 1}, {"name": "Octavia Spencer", "character": "Minny Jackson", "id": 6944, "credit_id": "52fe47b5c3a36847f8144033", "cast_id": 7, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 2}, {"name": "Bryce Dallas Howard", "character": "Hilly Holbrook", "id": 18997, "credit_id": "52fe47b5c3a36847f8144043", "cast_id": 11, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 3}, {"name": "Jessica Chastain", "character": "Celia Foote", "id": 83002, "credit_id": "52fe47b5c3a36847f814404f", "cast_id": 14, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 4}, {"name": "Mike Vogel", "character": "Johnny Foote", "id": 6858, "credit_id": "52fe47b5c3a36847f8144047", "cast_id": 12, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 5}, {"name": "Allison Janney", "character": "Charlotte Phelan", "id": 19, "credit_id": "52fe47b5c3a36847f814407b", "cast_id": 22, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 6}, {"name": "Sissy Spacek", "character": "Missus Walters", "id": 5606, "credit_id": "52fe47b5c3a36847f814404b", "cast_id": 13, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 7}, {"name": "Chris Lowell", "character": "Stuart Whitworth", "id": 84300, "credit_id": "52fe47b5c3a36847f8144083", "cast_id": 24, "profile_path": "/7j5M2vrnMBE0dEHKPQECiE8WSCe.jpg", "order": 8}, {"name": "Ahna O'Reilly", "character": "Elizabeth Leefolt", "id": 999605, "credit_id": "52fe47b5c3a36847f814407f", "cast_id": 23, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 9}, {"name": "Anna Camp", "character": "Jolene French", "id": 221098, "credit_id": "52fe47b5c3a36847f8144077", "cast_id": 21, "profile_path": "/uQ8qyoTpgSfNPuzhSWJdiV9r32Y.jpg", "order": 10}, {"name": "Cicely Tyson", "character": "Constantine Jefferson", "id": 18249, "credit_id": "52fe47b5c3a36847f8144037", "cast_id": 8, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 11}, {"name": "Aunjanue Ellis", "character": "Yule Mae Davis", "id": 53923, "credit_id": "52fe47b5c3a36847f814403b", "cast_id": 9, "profile_path": "/tOfsln2Qt3P1jL7TuFiwEPcwFZB.jpg", "order": 12}, {"name": "David Oyelowo", "character": "Preacher Green", "id": 35013, "credit_id": "52fe47b5c3a36847f8144087", "cast_id": 25, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 13}, {"name": "Dana Ivey", "character": "Gracie Higginbotham", "id": 13314, "credit_id": "52fe47b5c3a36847f814408f", "cast_id": 27, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 14}, {"name": "LaChanze", "character": "Rachel", "id": 56689, "credit_id": "52fe47b5c3a36847f814408b", "cast_id": 26, "profile_path": "/g3P0Q3ZJZaUabXZi7gdaBzMniHh.jpg", "order": 15}], "directors": [{"name": "Tate Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe47b5c3a36847f814402b", "profile_path": "/7RQEzoruBo10j78z8fH6cIEmjNK.jpg", "id": 55789}], "vote_average": 7.3, "runtime": 146}, "863": {"poster_path": "/kuTPkbQmHxBHsxaKMUL1kUchhdE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 485015179, "overview": "During a garage sale Andy\u2019s mother sells some of Andy\u2019s old things including his favorite toy Woody to a collector. Buzz Lightyear and the other toys begin a reckless mission to save their friend. The sequel to the revolutionary computer animated feature film Toy Story.", "video": false, "id": 863, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story 2", "tagline": "The toys are back!", "vote_count": 1171, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg", "poster_path": "/bDSe7UCiShmiTz7kuOjMyP6mz7l.jpg", "id": 10194, "name": "Toy Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120363", "adult": false, "backdrop_path": "/9Kjxr4VCU0Y4DAuXkzR2moAy7DK.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1999-11-24", "popularity": 1.9082885943291, "original_title": "Toy Story 2", "budget": 90000000, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "52fe4284c3a36847f80250d1", "cast_id": 18, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "52fe4284c3a36847f80250f5", "cast_id": 28, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Kelsey Grammer", "character": "Stinky Pete the Prospector (voice)", "id": 7090, "credit_id": "52fe4284c3a36847f80250d9", "cast_id": 20, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jessie, the Yodeling Cowgirl (voice)", "id": 3234, "credit_id": "52fe4284c3a36847f80250d5", "cast_id": 19, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "52fe4284c3a36847f80250dd", "cast_id": 21, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 4}, {"name": "Jim Varney", "character": "Slinky Dog (voice)", "id": 12899, "credit_id": "52fe4284c3a36847f80250e1", "cast_id": 22, "profile_path": "/eIo2jVVXYgjDtaHoF19Ll9vtW7h.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Rex the Green Dinosaur (voice)", "id": 12900, "credit_id": "52fe4284c3a36847f80250e5", "cast_id": 23, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "John Ratzenberger", "character": "Hamm the Piggy Bank (voice)", "id": 7907, "credit_id": "52fe4284c3a36847f80250e9", "cast_id": 24, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 7}, {"name": "Annie Potts", "character": "Bo Peep (voice)", "id": 8873, "credit_id": "52fe4284c3a36847f80250ed", "cast_id": 25, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 8}, {"name": "Wayne Knight", "character": "Al the Toy Collector (voice)", "id": 4201, "credit_id": "52fe4284c3a36847f80250f1", "cast_id": 26, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 9}, {"name": "John Morris", "character": "Andy (voice)", "id": 1116442, "credit_id": "52fe4284c3a36847f80250f9", "cast_id": 29, "profile_path": "/vYGyvK4LzeaUCoNSHtsuqJUY15M.jpg", "order": 10}, {"name": "Laurie Metcalf", "character": "Andy's Mom (voice)", "id": 12133, "credit_id": "52fe4284c3a36847f80250fd", "cast_id": 30, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 11}, {"name": "Estelle Harris", "character": "Mrs. Potato Head (voice)", "id": 61964, "credit_id": "52fe4284c3a36847f8025101", "cast_id": 31, "profile_path": "/equDBtZgBkO7e8QKpNokDz9EbY9.jpg", "order": 12}, {"name": "R. Lee Ermey", "character": "Army Sarge (voice)", "id": 8655, "credit_id": "52fe4284c3a36847f8025105", "cast_id": 32, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 13}, {"name": "Jodi Benson", "character": "Tour Guide Barbie / Barbie on Backpack (voice)", "id": 63978, "credit_id": "52fe4284c3a36847f8025109", "cast_id": 33, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 14}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f802506d", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}], "vote_average": 6.9, "runtime": 92}, "864": {"poster_path": "/9Jgk3T2EczJ55rElJpBJAaxeQd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154864401, "overview": "Cool Runnings is an American film from director Jon Turteltaub from 1993 about the first Jamaican Olympic bobsled team.", "video": false, "id": 864, "genres": [{"id": 35, "name": "Comedy"}], "title": "Cool Runnings", "tagline": "One dream. Four Jamaicans. Twenty below zero.", "vote_count": 146, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106611", "adult": false, "backdrop_path": "/ttxnwGZwyuiLXIV3xIr1OE5ND5X.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1993-09-30", "popularity": 1.13272690049367, "original_title": "Cool Runnings", "budget": 14000000, "cast": [{"name": "Leon Robinson", "character": "Derice Bannock", "id": 12974, "credit_id": "52fe4284c3a36847f8025195", "cast_id": 14, "profile_path": "/4i6e0y27mrdz8zBGNiryWV6EFOU.jpg", "order": 0}, {"name": "Doug E. Doug", "character": "Sanka Coffie", "id": 12975, "credit_id": "52fe4284c3a36847f8025199", "cast_id": 15, "profile_path": "/dXoCEr8S5YvVdZeyJAgNChSvdu4.jpg", "order": 1}, {"name": "Rawle D. Lewis", "character": "Junior Bevil", "id": 12976, "credit_id": "52fe4284c3a36847f802519d", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "Malik Yoba", "character": "Yul Brenner", "id": 12977, "credit_id": "52fe4284c3a36847f80251a1", "cast_id": 17, "profile_path": "/v0BfJRbZ6ECq3VQ1YZRi7ONQ4T4.jpg", "order": 3}, {"name": "John Candy", "character": "Irving 'Irv' Blitzer", "id": 7180, "credit_id": "52fe4284c3a36847f80251a5", "cast_id": 18, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 4}, {"name": "Raymond J. Barry", "character": "Kurt Hemphill", "id": 10361, "credit_id": "52fe4284c3a36847f80251a9", "cast_id": 19, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 5}, {"name": "Peter Outerbridge", "character": "Josef Grool", "id": 12978, "credit_id": "52fe4284c3a36847f80251ad", "cast_id": 20, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 6}, {"name": "Paul Coeur", "character": "Roger", "id": 12979, "credit_id": "52fe4284c3a36847f80251b1", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Larry Gilman", "character": "Larry", "id": 12980, "credit_id": "52fe4284c3a36847f80251b5", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Kristoffer Cooper", "character": "Winston", "id": 12981, "credit_id": "52fe4284c3a36847f80251b9", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Charles Hyatt", "character": "Whitby Bevil - Sr.", "id": 940039, "credit_id": "52fe4284c3a36847f80251bd", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Winston Stona", "character": "Coolidge", "id": 52819, "credit_id": "52fe4284c3a36847f80251c1", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Bertina Macauley", "character": "Joy Bannock", "id": 1074165, "credit_id": "52fe4284c3a36847f80251c5", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Pauline Stone Myrie", "character": "Momma Coffie", "id": 1074166, "credit_id": "52fe4284c3a36847f80251c9", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Bill Dow", "character": "Registration Official", "id": 118462, "credit_id": "52fe4284c3a36847f80251cd", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f8025149", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.3, "runtime": 98}, "865": {"poster_path": "/ni5PkWh3J3Zx4pVk5JYGTywZDqW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38122105, "overview": "By 2017, the global economy has collapsed and American society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where \u201crunners\u201d attempt to evade \u201cstalkers\u201d and certain death for a chance to be pardoned and set free.", "video": false, "id": 865, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "The Running Man", "tagline": "A game nobody survives. But Schwarzenegger has yet to play.", "vote_count": 189, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093894", "adult": false, "backdrop_path": "/zwW7fzXQZF6r9fdl1C7V1gRQq73.jpg", "production_companies": [{"name": "Braveworld Productions", "id": 23005}, {"name": "HBO", "id": 6068}, {"name": "Keith Barish Productions", "id": 964}, {"name": "TAFT Entertainment Pictures", "id": 965}], "release_date": "1987-11-13", "popularity": 0.885844706711876, "original_title": "The Running Man", "budget": 27000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Ben Richards", "id": 1100, "credit_id": "52fe4284c3a36847f8025257", "cast_id": 15, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Richard Dawson", "character": "Damon Killian", "id": 96623, "credit_id": "52fe4284c3a36847f8025283", "cast_id": 26, "profile_path": "/hN6YrUubNwblaKQjoqMGf80GS4I.jpg", "order": 1}, {"name": "Mar\u00eda Conchita Alonso", "character": "Amber Mendez", "id": 2051, "credit_id": "52fe4284c3a36847f802525b", "cast_id": 16, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 2}, {"name": "Yaphet Kotto", "character": "William Laughlin", "id": 5050, "credit_id": "52fe4284c3a36847f802525f", "cast_id": 17, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 3}, {"name": "Jim Brown", "character": "Fireball", "id": 4774, "credit_id": "52fe4284c3a36847f8025263", "cast_id": 18, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 4}, {"name": "Jesse Ventura", "character": "Captain Freedom", "id": 1104, "credit_id": "52fe4284c3a36847f8025267", "cast_id": 19, "profile_path": "/25AzScRxybPMRxEfv9iB116jj7a.jpg", "order": 5}, {"name": "Erland van Lidth", "character": "Dynamo", "id": 3013, "credit_id": "52fe4284c3a36847f802526b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Marvin J. McIntyre", "character": "Harold Weiss", "id": 13003, "credit_id": "52fe4284c3a36847f802526f", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Gus Rethwisch", "character": "Buzzsaw", "id": 13004, "credit_id": "52fe4284c3a36847f8025273", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Professor Tanaka", "character": "Subzero", "id": 13006, "credit_id": "52fe4284c3a36847f8025277", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Mick Fleetwood", "character": "Mic", "id": 13007, "credit_id": "52fe4284c3a36847f802527b", "cast_id": 24, "profile_path": "/x9XQaGJbrwZMkASxWJ9PEOFFT2O.jpg", "order": 10}, {"name": "Franco Columbu", "character": "911 Security Officer", "id": 35710, "credit_id": "52fe4284c3a36847f802527f", "cast_id": 25, "profile_path": "/Ajjtqewy65900sHWWkPMdhTZ2E4.jpg", "order": 11}, {"name": "Sven-Ole Thorsen", "character": "Sven", "id": 20761, "credit_id": "52fe4284c3a36847f8025293", "cast_id": 29, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 12}, {"name": "Dweezil Zappa", "character": "Stevie", "id": 120952, "credit_id": "52fe4284c3a36847f8025297", "cast_id": 30, "profile_path": "/d2HSXwuYiTKzL1Lo1IEtMsAa0WX.jpg", "order": 13}, {"name": "Karen Leigh Hopkins", "character": "Brenda", "id": 16852, "credit_id": "52fe4284c3a36847f802529b", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Edward Bunker", "character": "Lenny", "id": 6939, "credit_id": "52fe4284c3a36847f802529f", "cast_id": 32, "profile_path": "/kQNf8eN5qpWXAhNUrnUnWtBd3Eu.jpg", "order": 15}], "directors": [{"name": "Paul Michael Glaser", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f8025211", "profile_path": "/yc39Cj9ZmaEnrKZIRnYLPAdDyCK.jpg", "id": 12988}], "vote_average": 6.2, "runtime": 101}, "866": {"poster_path": "/44ioqnaokklNKBcJT6V87x6ChDb.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51676606, "overview": "Finding Neverland is an amusing drama about how the story of Peter Pan and Neverland came to be. During a writing slump play writer J.M. Barrie meets the widowed Sylvia and her three children who soon become an important part of Barrie\u2019s life and the inspiration that lead him to create his masterpiece \u201cPeter Pan.\u201d", "video": false, "id": 866, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Finding Neverland", "tagline": "Where will your imagination take you?", "vote_count": 232, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0308644", "adult": false, "backdrop_path": "/smMNfp8INGuxdFBIHIVgGsbGSJj.jpg", "production_companies": [{"name": "Film Colony", "id": 560}, {"name": "Miramax Films", "id": 14}], "release_date": "2004-11-11", "popularity": 0.87641724835323, "original_title": "Finding Neverland", "budget": 25000000, "cast": [{"name": "Johnny Depp", "character": "Sir James Matthew Barrie", "id": 85, "credit_id": "52fe4284c3a36847f802531b", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Sylvia Llewelyn Davies", "id": 204, "credit_id": "52fe4284c3a36847f802531f", "cast_id": 14, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Julie Christie", "character": "Mrs. Emma du Maurier", "id": 1666, "credit_id": "52fe4284c3a36847f8025323", "cast_id": 15, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 2}, {"name": "Dustin Hoffman", "character": "Charles Frohman", "id": 4483, "credit_id": "52fe4284c3a36847f8025327", "cast_id": 16, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 3}, {"name": "Freddie Highmore", "character": "Peter Llewelyn Davies", "id": 1281, "credit_id": "52fe4284c3a36847f802532b", "cast_id": 17, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 4}, {"name": "Radha Mitchell", "character": "Mary Ansell Barrie", "id": 8329, "credit_id": "52fe4284c3a36847f802532f", "cast_id": 18, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 5}, {"name": "Kate Maberly", "character": "Wendy", "id": 13010, "credit_id": "52fe4284c3a36847f8025333", "cast_id": 19, "profile_path": "/q2oMXChB6jfIKAEBWcoHptdH7ud.jpg", "order": 6}, {"name": "Joe Prospero", "character": "Jack Llewelyn Davies", "id": 13011, "credit_id": "52fe4284c3a36847f8025337", "cast_id": 20, "profile_path": "/8yzT8f30c0tDu3IrYUiCfw90dAu.jpg", "order": 7}, {"name": "Nick Roud", "character": "George Llewelyn Davies", "id": 13012, "credit_id": "52fe4284c3a36847f802533b", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Luke Spill", "character": "Michael Llewelyn Davies", "id": 13013, "credit_id": "52fe4284c3a36847f802533f", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Ian Hart", "character": "Sir Arthur Conan Doyle", "id": 10985, "credit_id": "52fe4284c3a36847f8025343", "cast_id": 23, "profile_path": "/35KSRxsFR20QGDhIrZn7G4Jkc2g.jpg", "order": 10}, {"name": "Kelly Macdonald", "character": "Peter Pan", "id": 9015, "credit_id": "52fe4284c3a36847f8025347", "cast_id": 24, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 11}, {"name": "Toby Jones", "character": "Smee", "id": 13014, "credit_id": "52fe4284c3a36847f802534b", "cast_id": 25, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 12}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f80252db", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.9, "runtime": 106}, "869": {"poster_path": "/gYQKMOwLolMRyofpRzXPAawiLPC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362211740, "overview": "After a spectacular crash-landing on an uncharted planet, brash astronaut Leo Davidson (Mark Wahlberg) finds himself trapped in a savage world where talking apes dominate the human race. Desperate to find a way home, Leo must evade the invincible gorilla army led by Ruthless General Thade (Tim Roth) and his most trusted warrior, Attar (Michael Clarke Duncan).", "video": false, "id": 869, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Planet of the Apes", "tagline": "You'll be sorry you were ever born human", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133152", "adult": false, "backdrop_path": "/r87F9i3JyJbCym8zNtdciEnexOS.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "The Zanuck Company", "id": 80}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2001-07-26", "popularity": 0.936792804225985, "original_title": "Planet of the Apes", "budget": 100000000, "cast": [{"name": "Mark Wahlberg", "character": "Leo Davidson", "id": 13240, "credit_id": "52fe4285c3a36847f80254f7", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Tim Roth", "character": "General Thade", "id": 3129, "credit_id": "52fe4285c3a36847f80254fb", "cast_id": 2, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "Ari", "id": 1283, "credit_id": "52fe4285c3a36847f80254ff", "cast_id": 3, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Michael Clarke Duncan", "character": "Attar", "id": 61981, "credit_id": "52fe4285c3a36847f8025503", "cast_id": 4, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 3}, {"name": "Kris Kristofferson", "character": "Karubi", "id": 10823, "credit_id": "52fe4285c3a36847f8025507", "cast_id": 5, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 4}, {"name": "Estella Warren", "character": "Daena", "id": 13241, "credit_id": "52fe4285c3a36847f802550b", "cast_id": 6, "profile_path": "/19tZOor9ARhIqshlgGYyoVoqkKR.jpg", "order": 5}, {"name": "Paul Giamatti", "character": "Limbo", "id": 13242, "credit_id": "52fe4285c3a36847f802550f", "cast_id": 7, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 6}, {"name": "Cary-Hiroyuki Tagawa", "character": "Krull", "id": 11398, "credit_id": "52fe4285c3a36847f8025513", "cast_id": 8, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 7}, {"name": "Glenn Shadix", "character": "Senator Nado", "id": 13243, "credit_id": "52fe4285c3a36847f8025517", "cast_id": 9, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 8}, {"name": "Charlton Heston", "character": "Zaius", "id": 10017, "credit_id": "52fe4285c3a36847f802551b", "cast_id": 10, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 9}, {"name": "Chad Bannon", "character": "Red Soldier", "id": 44824, "credit_id": "52fe4285c3a36847f8025555", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Linda Harrison", "character": "A woman", "id": 13260, "credit_id": "52fe4285c3a36847f802555f", "cast_id": 25, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 11}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f8025521", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 5.6, "runtime": 119}, "8337": {"poster_path": "/8N8BnBGwgsxXXwZ2q9eVFFIKFL1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nada, a down-on-his-luck construction worker, discovers a pair of special sunglasses. Wearing them, he is able to see the world as it really is: people being bombarded by media and government with messages like \"Stay Asleep\", \"No Imagination\", \"Submit to Authority\". Even scarier is that he is able to see that some usually normal-looking people are in fact ugly aliens in charge of the massive campaign to keep humans subdued.", "video": false, "id": 8337, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "They Live", "tagline": "Who are they? And what do they want?", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096256", "adult": false, "backdrop_path": "/yJVp1C2evg53kOyndpmHM5aRhua.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alive Films", "id": 17823}, {"name": "Larry Franco Productions", "id": 17824}], "release_date": "1988-11-23", "popularity": 0.689238478352181, "original_title": "They Live", "budget": 4000000, "cast": [{"name": "Roddy Piper", "character": "Nada", "id": 44240, "credit_id": "52fe44a0c3a36847f80a0ca5", "cast_id": 2, "profile_path": "/quqBuo4vO6kRJ2BxwSZlts43nYc.jpg", "order": 0}, {"name": "Meg Foster", "character": "Holly", "id": 41229, "credit_id": "52fe44a0c3a36847f80a0ca9", "cast_id": 3, "profile_path": "/j4byQmH2KqFUhFDYKOQCsLnOA9P.jpg", "order": 1}, {"name": "Keith David", "character": "Frank", "id": 65827, "credit_id": "52fe44a0c3a36847f80a0cad", "cast_id": 4, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 2}, {"name": "George Buck Flower", "character": "Drifter", "id": 54564, "credit_id": "52fe44a0c3a36847f80a0cb1", "cast_id": 5, "profile_path": "/xHzW4GszCLTZLNxvTcKL9ICuLIc.jpg", "order": 3}, {"name": "Raymond St. Jacques", "character": "Street Preacher", "id": 54565, "credit_id": "52fe44a0c3a36847f80a0cb5", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Peter Jason", "character": "Gilbert", "id": 6916, "credit_id": "52fe44a0c3a36847f80a0cb9", "cast_id": 7, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 5}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe44a0c3a36847f80a0ca1", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.9, "runtime": 93}, "872": {"poster_path": "/uJgp7KNBWHTXjEnbJZDodBTx4oD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7200000, "overview": "In 1927, Don Lockwood and Lina Lamont are a famous on-screen romantic pair. Lina, however, mistakes the on-screen romance for real love. Don has worked hard to get where he is today, with his former partner Cosmo. When Don and Lina's latest film is transformed into a musical, Don has the perfect voice for the songs. But Lina - well, even with the best efforts of a diction coach, they still decide to dub over her voice. Kathy Selden is brought in, an aspiring actress, and while she is working on the movie, Don falls in love with her. Will Kathy continue to \"aspire\", or will she get the break she deserves?", "video": false, "id": 872, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Singin' in the Rain", "tagline": "What a Glorious Feeling!", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0045152", "adult": false, "backdrop_path": "/qcfB8cAPi2RS1GuWXpoR5w8kQbJ.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1952-04-10", "popularity": 0.951483443437235, "original_title": "Singin' in the Rain", "budget": 2540800, "cast": [{"name": "Gene Kelly", "character": "Don Lockwood", "id": 13294, "credit_id": "52fe4285c3a36847f80256f9", "cast_id": 14, "profile_path": "/xbQZidMyhviuLmI1h8cJoJ7F1LV.jpg", "order": 0}, {"name": "Donald O'Connor", "character": "Cosmo Brown", "id": 13295, "credit_id": "52fe4285c3a36847f80256fd", "cast_id": 15, "profile_path": "/cwKG01GTWVTyYK0M6zfVeYbxpWU.jpg", "order": 1}, {"name": "Debbie Reynolds", "character": "Kathy Selden", "id": 8857, "credit_id": "52fe4285c3a36847f8025701", "cast_id": 16, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 2}, {"name": "Jean Hagen", "character": "Lina Lamont", "id": 13296, "credit_id": "52fe4285c3a36847f8025705", "cast_id": 17, "profile_path": "/uCuVvXXE392OWx0xptr9tnqoM0s.jpg", "order": 3}, {"name": "Millard Mitchell", "character": "R.F. Simpson", "id": 13297, "credit_id": "52fe4285c3a36847f8025709", "cast_id": 18, "profile_path": "/sYqhWsTBHtAJWqr6vhbIx65zUMc.jpg", "order": 4}, {"name": "Cyd Charisse", "character": "Dancer", "id": 41226, "credit_id": "52fe4285c3a36847f8025729", "cast_id": 26, "profile_path": "/mA1iUO4d0izoIUZ1oRn0cEQ10lv.jpg", "order": 5}, {"name": "Douglas Fowley", "character": "Roscoe Dexter", "id": 13298, "credit_id": "52fe4285c3a36847f802570d", "cast_id": 19, "profile_path": "/moXauEE9cDCaHGNkbgIMVqWZiY3.jpg", "order": 6}, {"name": "Rita Moreno", "character": "Zelda Zanders", "id": 13299, "credit_id": "52fe4285c3a36847f8025711", "cast_id": 20, "profile_path": "/A5IKvjUTdwexp4l5Bi6vaH8Hypc.jpg", "order": 7}, {"name": "Mae Clarke", "character": "Hairdresser (uncredited)", "id": 29814, "credit_id": "52fe4285c3a36847f8025725", "cast_id": 25, "profile_path": "/kVQ7r55E66lpfHYcsKpX0eOSFc1.jpg", "order": 8}, {"name": "Bess Flowers", "character": "Audience Member (uncredited)", "id": 121323, "credit_id": "532b80c0c3a3684bc6000276", "cast_id": 36, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 9}, {"name": "Robert Foulk", "character": "Matt - Policeman (uncredited)", "id": 2784, "credit_id": "532b80adc3a3684bce00029a", "cast_id": 35, "profile_path": "/pKTK3aa34Xp1J6uQK3bLnAIjPoc.jpg", "order": 10}, {"name": "Kathleen Freeman", "character": "Phoebe Dinsmore (uncredited)", "id": 7210, "credit_id": "52fe4285c3a36847f8025721", "cast_id": 24, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 11}, {"name": "Joi Lansing", "character": "Chorus Girl (uncredited)", "id": 55997, "credit_id": "532b80f5c3a3684b9d000276", "cast_id": 37, "profile_path": "/999jZOpjwXx1TzqzvlstH28Ywg0.jpg", "order": 12}, {"name": "Sylvia Lewis", "character": "Female Tango Dancer (uncredited)", "id": 1213241, "credit_id": "532b825ec3a3684b9d0002f5", "cast_id": 44, "profile_path": "/aRcFUaJJvGYWAT1nctCRVlZPYsD.jpg", "order": 13}, {"name": "'Snub' Pollard", "character": "Old Man Getting Umbrella in \"Singin' in the Rain\" Number (uncredited)", "id": 85778, "credit_id": "532b8330c3a3684bc600031a", "cast_id": 45, "profile_path": "/sAuWqpvncM3oVvytfZ8VHcAkPOf.jpg", "order": 14}, {"name": "William Schallert", "character": "Messenger on Screen (uncredited)", "id": 15992, "credit_id": "532b8357c3a3684bab000314", "cast_id": 46, "profile_path": "/d171pyQqJT272px9knj9crpYcSf.jpg", "order": 15}, {"name": "Elaine Stewart", "character": "Lady-in-Waiting (uncredited)", "id": 121765, "credit_id": "532b836fc3a3684ba400033f", "cast_id": 47, "profile_path": "/bwKigldYw8EChJt4A8ucENvj7tN.jpg", "order": 16}, {"name": "Brick Sullivan", "character": "Policeman in \"Singin' in the Rain\" Number (uncredited)", "id": 120473, "credit_id": "532b8386c3a3684bc6000323", "cast_id": 48, "profile_path": null, "order": 17}], "directors": [{"name": "Stanley Donen", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f80256b9", "profile_path": "/8r91mtKkWdYri739IilAvTVzr1E.jpg", "id": 13284}, {"name": "Gene Kelly", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f80256bf", "profile_path": "/xbQZidMyhviuLmI1h8cJoJ7F1LV.jpg", "id": 13294}], "vote_average": 7.1, "runtime": 103}, "873": {"poster_path": "/2a50LyRInWGLWq3u3DeGBQnvBHR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 146292009, "overview": "In the southern United States in the 1930s, a male-dominated African American woman fights her way through a troubled life.", "video": false, "id": 873, "genres": [{"id": 18, "name": "Drama"}], "title": "The Color Purple", "tagline": "It's about life. It's about love. It's about all of us.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088939", "adult": false, "backdrop_path": "/mGzHgeXhGSRVMfwq0oo7VAltiZH.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "The Guber-Peters Company", "id": 4357}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1985-12-18", "popularity": 0.712515953542284, "original_title": "The Color Purple", "budget": 15000000, "cast": [{"name": "Whoopi Goldberg", "character": "Celie", "id": 2395, "credit_id": "52fe4285c3a36847f802580b", "cast_id": 19, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 0}, {"name": "Margaret Avery", "character": "Shug Avery", "id": 13307, "credit_id": "52fe4285c3a36847f802580f", "cast_id": 20, "profile_path": "/fgl2niNcBqHCPEw9TAjcwIIEqiq.jpg", "order": 1}, {"name": "Danny Glover", "character": "Albert", "id": 2047, "credit_id": "52fe4285c3a36847f8025813", "cast_id": 21, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Akosua Busia", "character": "Netti", "id": 13308, "credit_id": "52fe4285c3a36847f8025817", "cast_id": 22, "profile_path": "/wxelYaGa4xWcFhII3EebwX5pscZ.jpg", "order": 3}, {"name": "Oprah Winfrey", "character": "Sofia", "id": 13309, "credit_id": "52fe4285c3a36847f802581b", "cast_id": 23, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 4}, {"name": "Willard E. Pugh", "character": "Harpo", "id": 13310, "credit_id": "52fe4285c3a36847f802581f", "cast_id": 24, "profile_path": "/iihJATSCFfsXnjcKR6OMDm1bDSS.jpg", "order": 5}, {"name": "Desreta Jackson", "character": "Young Celie Harris", "id": 13311, "credit_id": "52fe4285c3a36847f8025823", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Rae Dawn Chong", "character": "Squeak", "id": 13312, "credit_id": "52fe4285c3a36847f8025827", "cast_id": 26, "profile_path": "/6mk5lSTIUav9T1M0VAdUP46FTSH.jpg", "order": 7}, {"name": "Adolph Caesar", "character": "Old Mister", "id": 13313, "credit_id": "52fe4285c3a36847f802582b", "cast_id": 27, "profile_path": "/hSOR5aPnQ2Bp1ZoyH4OOG5DMkvV.jpg", "order": 8}, {"name": "Dana Ivey", "character": "Miss Millie", "id": 13314, "credit_id": "52fe4285c3a36847f802582f", "cast_id": 28, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 9}, {"name": "Leonard Jackson", "character": "Pa", "id": 13315, "credit_id": "52fe4285c3a36847f8025833", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Ben Guillory", "character": "Grady", "id": 13316, "credit_id": "52fe4285c3a36847f8025837", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "John Patton Jr.", "character": "Preacher", "id": 956838, "credit_id": "52fe4285c3a36847f8025847", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Carl Anderson", "character": "Reverend Samuel", "id": 72740, "credit_id": "52fe4285c3a36847f802584b", "cast_id": 34, "profile_path": "/bL9rkbAxVlxKBURw5SmUobFumpO.jpg", "order": 13}, {"name": "Susan Beaubian", "character": "Corrine", "id": 162869, "credit_id": "52fe4285c3a36847f802584f", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "James Tillis", "character": "Buster", "id": 1119468, "credit_id": "52fe4285c3a36847f8025853", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Phillip Strong", "character": "Mayor", "id": 1119469, "credit_id": "52fe4285c3a36847f8025857", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Laurence Fishburne", "character": "Swain", "id": 2975, "credit_id": "52fe4285c3a36847f802585b", "cast_id": 38, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 17}, {"name": "Peto Kinsaka", "character": "Adam", "id": 1119470, "credit_id": "52fe4285c3a36847f802585f", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Lelo Masamba", "character": "Olivia", "id": 1119471, "credit_id": "52fe4285c3a36847f8025863", "cast_id": 40, "profile_path": null, "order": 19}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f80257ad", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.6, "runtime": 154}, "9341": {"poster_path": "/qRPOFdmUlxl9Yk4dbbNTOPt6d1q.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74208267, "overview": "The Earth's core has stopped spinning and disasters are appearing all over the world; Birds are acting crazy, magnetic fields are causing huge electrical thunderstorms and people dying every second.Dr. Josh Keyes (Aaron Eckhart) and his crew have to travel down to the centre of the Earth and drop a nuclear bomb in an attempt to make the Earth's core spin once again. Or Mankind will perish...", "video": false, "id": 9341, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Core", "tagline": "Earth has a deadline", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298814", "adult": false, "backdrop_path": "/muDrBFuHkqUgUrrSMPWlHaaK2kz.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "David Foster Productions", "id": 496}, {"name": "Horsepower Films", "id": 2199}, {"name": "Core Productions", "id": 12213}, {"name": "LivePlanet", "id": 7161}, {"name": "Munich Film Partners New Century & Company (MFP) Core Productions", "id": 12214}], "release_date": "2003-03-25", "popularity": 0.74417764304004, "original_title": "The Core", "budget": 60000000, "cast": [{"name": "Aaron Eckhart", "character": "Dr. Josh Keyes", "id": 6383, "credit_id": "52fe44eac3a36847f80b1857", "cast_id": 1, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Hilary Swank", "character": "Maj. Rebecca Childs", "id": 448, "credit_id": "52fe44eac3a36847f80b185b", "cast_id": 2, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 1}, {"name": "Delroy Lindo", "character": "Dr. Ed 'Braz' Brazzleton", "id": 18792, "credit_id": "52fe44eac3a36847f80b185f", "cast_id": 3, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Dr. Conrad Zimsky", "id": 2283, "credit_id": "52fe44eac3a36847f80b1863", "cast_id": 4, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Tch\u00e9ky Karyo", "character": "Serge", "id": 10698, "credit_id": "52fe44eac3a36847f80b18b9", "cast_id": 24, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 4}, {"name": "DJ Qualls", "character": "Theodore Donald 'Rat' Finch", "id": 132078, "credit_id": "52fe44eac3a36847f80b18a1", "cast_id": 18, "profile_path": "/foe0XuHIgVHsnrMBYlgYtsR3Z2V.jpg", "order": 5}, {"name": "Richard Jenkins", "character": "Gen. Thomas Purcell", "id": 28633, "credit_id": "52fe44eac3a36847f80b18a9", "cast_id": 20, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Cmdr. Robert Iverson", "id": 21089, "credit_id": "52fe44eac3a36847f80b18b1", "cast_id": 22, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Christopher Shyer", "character": "Dave Perry", "id": 83777, "credit_id": "52fe44eac3a36847f80b1891", "cast_id": 14, "profile_path": "/p9OWWTeNowh9UVk5S27IVXlozpS.jpg", "order": 8}, {"name": "Ray Galletti", "character": "Paul", "id": 172851, "credit_id": "52fe44eac3a36847f80b1895", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Eileen Pedde", "character": "Lynne", "id": 52457, "credit_id": "52fe44eac3a36847f80b1899", "cast_id": 16, "profile_path": "/pPrvpJqNN0teedsj1A8f93KUmxk.jpg", "order": 10}, {"name": "Rekha Sharma", "character": "Danni", "id": 62717, "credit_id": "52fe44eac3a36847f80b189d", "cast_id": 17, "profile_path": "/cx3ubTduzbsfyxPPnS2HoEmZbFG.jpg", "order": 11}, {"name": "Tom Scholte", "character": "Acker", "id": 534315, "credit_id": "52fe44eac3a36847f80b18a5", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Glenn Morshower", "character": "FBI Agent", "id": 12797, "credit_id": "52fe44eac3a36847f80b18ad", "cast_id": 21, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 13}, {"name": "Anthony Harrison", "character": "FBI Agent", "id": 106979, "credit_id": "52fe44eac3a36847f80b18b5", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Alfre Woodard", "character": "Stickley", "id": 1981, "credit_id": "52fe44eac3a36847f80b18e7", "cast_id": 32, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 15}, {"name": "Fred Keating", "character": "Court-Martial Presiding Officer", "id": 963962, "credit_id": "5503236f92514174f600118e", "cast_id": 162, "profile_path": null, "order": 16}], "directors": [{"name": "Jon Amiel", "department": "Directing", "job": "Director", "credit_id": "52fe44eac3a36847f80b1869", "profile_path": "/hpKrOAFWUwiPflcSrkAFDcajy1b.jpg", "id": 15148}], "vote_average": 5.3, "runtime": 135}, "8338": {"poster_path": "/AqWG6z1P2CBrRkgEqMKoNsqC0em.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "JP", "name": "Japan"}], "revenue": 19, "overview": "When a sudden plague of blindness devastates a city, a small group of the afflicted band together to triumphantly overcome the horrific conditions of their imposed quarantine.", "video": false, "id": 8338, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blindness", "tagline": "", "vote_count": 73, "homepage": "http://www.blindness-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0861689", "adult": false, "backdrop_path": "/dsvabsyvozyeVLQBnWd5GtXuzGP.jpg", "production_companies": [{"name": "Rhombus Media", "id": 164}, {"name": "O2 Filmes", "id": 345}, {"name": "Bee Vine Pictures", "id": 2439}, {"name": "Alliance Films", "id": 2514}, {"name": "Ancine", "id": 11547}, {"name": "Asmik Ace Entertainment", "id": 3033}, {"name": "BNDES", "id": 11548}, {"name": "Cinema Investment", "id": 11549}, {"name": "Corus Entertainment", "id": 11550}, {"name": "Fox Filmes do Brasil", "id": 4887}, {"name": "GAGA", "id": 3656}, {"name": "Movie Central Network", "id": 11551}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}], "release_date": "2008-09-12", "popularity": 0.43797955145056, "original_title": "Blindness", "budget": 25000000, "cast": [{"name": "Mark Ruffalo", "character": "Doctor", "id": 103, "credit_id": "52fe44a0c3a36847f80a0d4b", "cast_id": 4, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Doctor's Wife", "id": 1231, "credit_id": "52fe44a0c3a36847f80a0d4f", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Gael Garc\u00eda Bernal", "character": "King of Ward 3", "id": 258, "credit_id": "52fe44a0c3a36847f80a0d53", "cast_id": 6, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 2}, {"name": "Danny Glover", "character": "Man with black eye patch", "id": 2047, "credit_id": "52fe44a0c3a36847f80a0d57", "cast_id": 7, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 3}, {"name": "Alice Braga", "character": "Woman with dark glasses", "id": 8602, "credit_id": "52fe44a0c3a36847f80a0d97", "cast_id": 19, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 4}, {"name": "Y\u00fbsuke Iseya", "character": "First blind man", "id": 70209, "credit_id": "52fe44a0c3a36847f80a0d9b", "cast_id": 20, "profile_path": "/5GhcLQLicLe8xdJlnV7ic7Dtjr5.jpg", "order": 5}, {"name": "Kimura Yoshino", "character": "First blind man's wife", "id": 72764, "credit_id": "52fe44a0c3a36847f80a0d9f", "cast_id": 21, "profile_path": "/dwLTlABDjieSq8SVQrE63gvnnk1.jpg", "order": 6}, {"name": "Don McKellar", "character": "Thief", "id": 20173, "credit_id": "52fe44a0c3a36847f80a0da3", "cast_id": 22, "profile_path": "/m0UEFyCg5Sl2FHGi5WUNpI2n5AU.jpg", "order": 7}, {"name": "Maury Chaykin", "character": "Accountant", "id": 7868, "credit_id": "52fe44a0c3a36847f80a0da7", "cast_id": 23, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 8}, {"name": "Mitchell Nye", "character": "Boy", "id": 72765, "credit_id": "52fe44a0c3a36847f80a0dab", "cast_id": 24, "profile_path": "/h3KpuZZqWDfnn5IbePdiIsb999L.jpg", "order": 9}, {"name": "Joe Pingue", "character": "Taxi driver", "id": 86237, "credit_id": "53a5c307c3a368707a000c6c", "cast_id": 39, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Joe Cobden", "character": "Police man", "id": 51389, "credit_id": "53a5c32bc3a3687a310017c0", "cast_id": 40, "profile_path": "/kTf7OtOY1qBPmEbc4Kky9uMN58K.jpg", "order": 11}, {"name": "Sandra Oh", "character": "", "id": 25540, "credit_id": "53f93ba4c3a3687352002106", "cast_id": 41, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 12}], "directors": [{"name": "Fernando Meirelles", "department": "Directing", "job": "Director", "credit_id": "52fe44a0c3a36847f80a0d3b", "profile_path": "/j77Z3f2m0e211ocFhPJu5ZiO12R.jpg", "id": 8557}], "vote_average": 6.3, "runtime": 121}, "879": {"poster_path": "/POwU6bMRHWTkWsuDK95XpdH4Y9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300854823, "overview": "The boy who wasn't supposed to grow up\u2014Peter Pan\u2014did just that, becoming a soulless corporate lawyer whose workaholism could cost him his wife and kids. But a trip to see Granny Wendy in London, where the vengeful Capt. Hook kidnaps Peter's kids and forces Peter to return to Neverland, could lead to a chance at redemption, in this family-oriented fantasy from director Steven Spielberg.", "video": false, "id": 879, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Hook", "tagline": "What if Peter Pan grew up?", "vote_count": 404, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102057", "adult": false, "backdrop_path": "/zkBN7dRpNiK4aaWF6c4WfecyXof.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1991-12-10", "popularity": 0.739998400140788, "original_title": "Hook", "budget": 70000000, "cast": [{"name": "Robin Williams", "character": "Peter Banning", "id": 2157, "credit_id": "52fe4286c3a36847f8025bdf", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Captain James S. Hook", "id": 4483, "credit_id": "52fe4286c3a36847f8025be3", "cast_id": 2, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Julia Roberts", "character": "Tinkerbell", "id": 1204, "credit_id": "52fe4286c3a36847f8025be7", "cast_id": 3, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 2}, {"name": "Bob Hoskins", "character": "Smee", "id": 382, "credit_id": "52fe4286c3a36847f8025beb", "cast_id": 4, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 3}, {"name": "Caroline Goodall", "character": "Moira Banning", "id": 6692, "credit_id": "52fe4286c3a36847f8025bef", "cast_id": 5, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 4}, {"name": "Charlie Korsmo", "character": "Jack 'Jackie' Banning", "id": 13389, "credit_id": "52fe4286c3a36847f8025bf3", "cast_id": 6, "profile_path": "/5TiMQj3AXDVL1wDVtQss2xUPzTC.jpg", "order": 5}, {"name": "Amber Scott", "character": "Maggie Banning", "id": 13390, "credit_id": "52fe4286c3a36847f8025bf7", "cast_id": 7, "profile_path": "/sgRxdG2b6NMXEX75OXfFXWPucVH.jpg", "order": 6}, {"name": "Dante Basco", "character": "Rufio", "id": 13391, "credit_id": "52fe4286c3a36847f8025bfb", "cast_id": 8, "profile_path": "/96wTw5mPdYiksCeqQVUXWusAiRG.jpg", "order": 7}, {"name": "Arthur Malet", "character": "Tootles", "id": 13392, "credit_id": "52fe4286c3a36847f8025bff", "cast_id": 9, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 8}, {"name": "Isaiah Robinson", "character": "Pockets", "id": 13393, "credit_id": "52fe4286c3a36847f8025c03", "cast_id": 10, "profile_path": "/9kZNSQEofhdQZywxR0pq80PlwiR.jpg", "order": 9}, {"name": "Maggie Smith", "character": "Granny Wendy", "id": 10978, "credit_id": "52fe4286c3a36847f8025c07", "cast_id": 11, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 10}, {"name": "Gwyneth Paltrow", "character": "Young Wendy", "id": 12052, "credit_id": "52fe4286c3a36847f8025c89", "cast_id": 33, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 11}, {"name": "Phil Collins", "character": "Inspector Good", "id": 110001, "credit_id": "52fe4286c3a36847f8025c8d", "cast_id": 34, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 12}, {"name": "Glenn Close", "character": "Gutless", "id": 515, "credit_id": "52fe4286c3a36847f8025c91", "cast_id": 35, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 13}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4286c3a36847f8025c0d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.5, "runtime": 144}, "58224": {"poster_path": "/qKkyePjlG9yilHpS89ZOc3N2Cd1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83847000, "overview": "Jim Carrey stars as Tom Popper, a successful businessman who\u2019s clueless when it comes to the really important things in life...until he inherits six \u201cadorable\u201d penguins, each with its own unique personality. Soon Tom\u2019s rambunctious roommates turn his swank New York apartment into a snowy winter wonderland \u2014 and the rest of his world upside-down.", "video": false, "id": 58224, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Mr. Popper's Penguins", "tagline": "", "vote_count": 196, "homepage": "http://www.popperspenguins.com/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1396218", "adult": false, "backdrop_path": "/kJTtIU4sBfgGa6GqPkpFh3K07qM.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2011-06-17", "popularity": 0.797722969502158, "original_title": "Mr. Popper's Penguins", "budget": 65000000, "cast": [{"name": "Jim Carrey", "character": "Tom Popper", "id": 206, "credit_id": "52fe4959c3a36847f819592b", "cast_id": 4, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Amanda", "id": 17832, "credit_id": "52fe4959c3a36847f819592f", "cast_id": 5, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 1}, {"name": "Madeline Carroll", "character": "Janie Popper", "id": 62564, "credit_id": "52fe4959c3a36847f8195933", "cast_id": 6, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 2}, {"name": "Angela Lansbury", "character": "Mrs. Van Gundy", "id": 14730, "credit_id": "52fe4959c3a36847f8195937", "cast_id": 7, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 3}, {"name": "Ophelia Lovibond", "character": "Pippi", "id": 82639, "credit_id": "52fe4959c3a36847f819593b", "cast_id": 8, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 4}, {"name": "James Tupper", "character": "Rick", "id": 119807, "credit_id": "52fe4959c3a36847f819593f", "cast_id": 9, "profile_path": "/eRl6B6WlnxPztKksIpnIp3votlL.jpg", "order": 5}, {"name": "Clark Gregg", "character": "Nat Jones", "id": 9048, "credit_id": "52fe4959c3a36847f8195943", "cast_id": 10, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Mr. Gremmins", "id": 4175, "credit_id": "52fe4959c3a36847f8195947", "cast_id": 11, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "David Krumholtz", "character": "Kent", "id": 38582, "credit_id": "52fe4959c3a36847f819594b", "cast_id": 12, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 8}, {"name": "Philip Baker Hall", "character": "Franklin", "id": 4492, "credit_id": "52fe4959c3a36847f819594f", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 9}, {"name": "James Tupper", "character": "Rick", "id": 119807, "credit_id": "52fe4959c3a36847f8195957", "cast_id": 15, "profile_path": "/eRl6B6WlnxPztKksIpnIp3votlL.jpg", "order": 11}, {"name": "Dominic Chianese", "character": "Reader", "id": 68186, "credit_id": "52fe4959c3a36847f819595b", "cast_id": 16, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 12}, {"name": "William Charles Mitchell", "character": "Yates", "id": 171948, "credit_id": "52fe4959c3a36847f819595f", "cast_id": 17, "profile_path": "/zbhM3lnxMFqdCE2vYTK4fcWuP0W.jpg", "order": 13}, {"name": "Henry Kelemen", "character": "Young Tommy Popper #1", "id": 1256097, "credit_id": "52fe4959c3a36847f8195963", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Kelli Barrett", "character": "Tommy's Mom", "id": 968851, "credit_id": "52fe4959c3a36847f8195967", "cast_id": 19, "profile_path": "/hAzAP92FgiGXJgvrl8lWuqN23lT.jpg", "order": 15}, {"name": "Maxwell Perry Cotton", "character": "Billy", "id": 206928, "credit_id": "5358b2c50e0a26068b0031f6", "cast_id": 20, "profile_path": "/nhVxraRhGDmWHgEU0I0gBjpp8pI.jpg", "order": 16}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe4959c3a36847f819591b", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.8, "runtime": 94}, "881": {"poster_path": "/WgWLwk55YaXFZdlMnPJTKlxGcz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 243240178, "overview": "When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.", "video": false, "id": 881, "genres": [{"id": 18, "name": "Drama"}], "title": "A Few Good Men", "tagline": "In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth.", "vote_count": 271, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104257", "adult": false, "backdrop_path": "/86UvnqQsefvHfBX6F65PUQHjVPc.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1992-12-11", "popularity": 1.11102375539568, "original_title": "A Few Good Men", "budget": 40000000, "cast": [{"name": "Tom Cruise", "character": "Lt. Daniel Kaffee", "id": 500, "credit_id": "52fe4286c3a36847f8025da7", "cast_id": 10, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jack Nicholson", "character": "Col. Nathan R. Jessep", "id": 514, "credit_id": "52fe4286c3a36847f8025dab", "cast_id": 11, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 1}, {"name": "Demi Moore", "character": "Lt. Cdr. JoAnne Galloway", "id": 3416, "credit_id": "52fe4286c3a36847f8025daf", "cast_id": 12, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Capt. Jack Ross", "id": 4724, "credit_id": "52fe4286c3a36847f8025db3", "cast_id": 13, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "Lt. Jonathan Kendrick", "id": 2628, "credit_id": "52fe4286c3a36847f8025db7", "cast_id": 14, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "Kevin Pollak", "character": "Lt. Sam Weinberg", "id": 7166, "credit_id": "52fe4286c3a36847f8025dbb", "cast_id": 15, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 5}, {"name": "Wolfgang Bodison", "character": "Lance Cpl. Harold W. Dawson", "id": 68672, "credit_id": "52fe4286c3a36847f8025ddb", "cast_id": 23, "profile_path": "/bYpIjl1G8NGrDfQXxtoAYpxLp5F.jpg", "order": 6}, {"name": "James Marshall", "character": "Pfc.Louden Downey", "id": 6717, "credit_id": "52fe4286c3a36847f8025dbf", "cast_id": 16, "profile_path": "/8ytq4mu3fLWlLU80QeGCBz4z0tW.jpg", "order": 7}, {"name": "J. T. Walsh", "character": "Lt. Col. Matthew A. Markinson", "id": 22131, "credit_id": "52fe4286c3a36847f8025dd7", "cast_id": 22, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 8}, {"name": "Christopher Guest", "character": "Dr. Stone", "id": 13524, "credit_id": "52fe4286c3a36847f8025dc3", "cast_id": 17, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 9}, {"name": "Matt Craven", "character": "Lt. Dave Spradling", "id": 13525, "credit_id": "52fe4286c3a36847f8025dc7", "cast_id": 18, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 10}, {"name": "Xander Berkeley", "character": "Capt. Whitaker", "id": 3982, "credit_id": "52fe4286c3a36847f8025dcb", "cast_id": 19, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 11}, {"name": "Noah Wyle", "character": "Cpl. Jeffrey Barnes", "id": 13526, "credit_id": "52fe4286c3a36847f8025dcf", "cast_id": 20, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 12}, {"name": "Cuba Gooding Jr.", "character": "Cpl. Carl Hammaker", "id": 9777, "credit_id": "52fe4286c3a36847f8025dd3", "cast_id": 21, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 13}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe4286c3a36847f8025d73", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.8, "runtime": 138}, "9075": {"poster_path": "/vzYhigzSd5Y90DXHlUTWHh4z2fE.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 26193068, "overview": "In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.", "video": false, "id": 9075, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Black Book", "tagline": "To fight the enemy, she must become one of them.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt0389557", "adult": false, "backdrop_path": "/nHUgWsYFyDOKYf2AsDdHHlHmRtJ.jpg", "production_companies": [{"name": "Fu Works", "id": 12046}, {"name": "Clockwork Pictures", "id": 25488}, {"name": "ContentFilm International", "id": 25487}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}, {"name": "Media Programme of the European Community", "id": 21972}, {"name": "Filmf\u00f6rderungsanstalt (FFA)", "id": 4247}, {"name": "Euroimages Fund of the Council of Europe", "id": 23192}, {"name": "Medienboard Berlin-Brandenburg", "id": 7307}, {"name": "CoBo Fund", "id": 234}, {"name": "Nederlands Fonds voor de Film", "id": 4508}, {"name": "uFilm", "id": 8676}, {"name": "VIP 4 Medienfonds", "id": 23238}, {"name": "Hector BV", "id": 16618}, {"name": "Motel Films", "id": 865}, {"name": "Motion Investment Group", "id": 1991}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Egoli Tossell Film AG", "id": 2254}], "release_date": "2006-09-13", "popularity": 0.458638027244581, "original_title": "Zwartboek", "budget": 21000000, "cast": [{"name": "Carice van Houten", "character": "Rachel Stein / Ellis de Vries", "id": 23229, "credit_id": "52fe44d9c3a36847f80ad961", "cast_id": 1, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 0}, {"name": "Sebastian Koch", "character": "Ludwig M\u00fcntze", "id": 8197, "credit_id": "52fe44d9c3a36847f80ad965", "cast_id": 2, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 1}, {"name": "Thom Hoffman", "character": "Hans Akkermans", "id": 7572, "credit_id": "52fe44d9c3a36847f80ad969", "cast_id": 3, "profile_path": "/uqWhSQzfBScIHzYhAr4GsHKyrvP.jpg", "order": 2}, {"name": "Halina Reijn", "character": "Ronnie", "id": 39847, "credit_id": "52fe44d9c3a36847f80ad96d", "cast_id": 4, "profile_path": "/wkXlorWKdVziK9h3g0Lizc8aO2J.jpg", "order": 3}, {"name": "Waldemar Kobus", "character": "G\u00fcnther Franken", "id": 27627, "credit_id": "52fe44d9c3a36847f80ad971", "cast_id": 5, "profile_path": "/E4doq4dgj2HOl7T7yHSjMnINPc.jpg", "order": 4}, {"name": "Matthias Schoenaerts", "character": "Joop", "id": 73381, "credit_id": "52fe44d9c3a36847f80ad9b1", "cast_id": 16, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 5}, {"name": "Theo Maassen", "character": "Prison Guard with Baret", "id": 52167, "credit_id": "52fe44d9c3a36847f80ad9b5", "cast_id": 17, "profile_path": "/lEbv5R34TpzDrbo8Df8Tv7bnfek.jpg", "order": 6}, {"name": "Derek de Lint", "character": "Gerben Kuipers", "id": 9128, "credit_id": "53a2edbe0e0a2622790016fc", "cast_id": 33, "profile_path": "/1BhDuHRp2ffTkYVeGKGQM46xGyN.jpg", "order": 7}, {"name": "Christian Berkel", "character": "General K\u00e4utner", "id": 7803, "credit_id": "53a2f4660e0a2622740017d6", "cast_id": 34, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 8}, {"name": "Dolf de Vries", "character": "Notary Wim Smaal", "id": 9130, "credit_id": "53a2f4fd0e0a2622710017fd", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Peter Blok", "character": "Van Gein", "id": 46460, "credit_id": "53a2f52c0e0a2622820017a5", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Michiel Huisman", "character": "Rob", "id": 91520, "credit_id": "53a2f5760e0a26226e0016da", "cast_id": 37, "profile_path": "/sUyhFWPSF13HkoB8aElJuh4D1sp.jpg", "order": 11}, {"name": "Ronald Armbrust", "character": "Tim Kuipers", "id": 1331977, "credit_id": "53a2f5a80e0a2622860017de", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Frank Lammers", "character": "Kees", "id": 43643, "credit_id": "53a2f5d40e0a2622860017e4", "cast_id": 39, "profile_path": "/lEfziEqpXP03lznJL5LMGSwvwVV.jpg", "order": 13}, {"name": "Johnny de Mol", "character": "Theo", "id": 107204, "credit_id": "53a2f6ed0e0a262274001810", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Xander Straat", "character": "Maarten", "id": 1245208, "credit_id": "53a2f7860e0a26227100183b", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Diana Dobbelman", "character": "Mrs. Smaal", "id": 1331978, "credit_id": "53a2f7d30e0a262274001837", "cast_id": 42, "profile_path": null, "order": 16}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe44d9c3a36847f80ad9ad", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 7.1, "runtime": 145}, "9078": {"poster_path": "/wZyRYmYrAWNiFhXohp4Ly8svpJH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Wart is a young boy who aspires to be a knight's squire. On a hunting trip he falls in on Merlin, a powerful but amnesiac wizard who has plans for him beyond mere squiredom. He starts by trying to give him an education, believing that once one has an education, one can go anywhere. Needless to say, it doesn't quite work out that way.", "video": false, "id": 9078, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Sword in the Stone", "tagline": "Tired of living in a Medieval mess...Merlin uses all his magic powers to change a scrawny little boy into a legendary hero!", "vote_count": 261, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0057546", "adult": false, "backdrop_path": "/pOCwlsmwlh8CJU4hSammuNo8a5s.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1963-12-25", "popularity": 0.842250774046703, "original_title": "The Sword in the Stone", "budget": 0, "cast": [{"name": "Sebastian Cabot", "character": "The Narrator/Sir Ector", "id": 21877, "credit_id": "52fe44d9c3a36847f80adaed", "cast_id": 1, "profile_path": "/x4xosGUCYnuUQntxgbcZryWaKH6.jpg", "order": 0}, {"name": "Karl Swenson", "character": "Merlin", "id": 12158, "credit_id": "52fe44d9c3a36847f80adaf1", "cast_id": 2, "profile_path": "/yyeaz3ruAZbyPWame4CZW49GSHe.jpg", "order": 1}, {"name": "Junius Matthews", "character": "Archimedes the Owl", "id": 57313, "credit_id": "52fe44d9c3a36847f80adaf5", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Norman Alden", "character": "Kay", "id": 7139, "credit_id": "52fe44d9c3a36847f80adaf9", "cast_id": 4, "profile_path": "/8UZtACb7u0JEOKh9IzFTi5FC4NH.jpg", "order": 3}, {"name": "Rickie Sorensen", "character": "Wart", "id": 159552, "credit_id": "52fe44d9c3a36847f80adb15", "cast_id": 9, "profile_path": "/m6DvofLisrfFrYdA3RHGDWK7cwV.jpg", "order": 4}, {"name": "Ginny Tyler", "character": "Little Girl Squirrel", "id": 955923, "credit_id": "52fe44d9c3a36847f80adb19", "cast_id": 10, "profile_path": "/yo0uqIwLh4mrFgjI0dYMYDr3DVh.jpg", "order": 5}, {"name": "Martha Wentworth", "character": "Madam Mim / Old Lady Squirrel", "id": 71780, "credit_id": "52fe44d9c3a36847f80adb1d", "cast_id": 11, "profile_path": "/jyWAHneC2QdoC1Wpnvwf05wCMZs.jpg", "order": 6}, {"name": "Alan Napier", "character": "Sir Pellinore", "id": 6933, "credit_id": "52fe44d9c3a36847f80adb21", "cast_id": 12, "profile_path": "/mmOemlQeMp0ViF4cy8QL1bArm4y.jpg", "order": 7}, {"name": "Richard Reitherman", "character": "Wart", "id": 1287645, "credit_id": "52fe44d9c3a36847f80adb25", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Robert Reitherman", "character": "Wart", "id": 1287646, "credit_id": "52fe44d9c3a36847f80adb29", "cast_id": 14, "profile_path": "/hsAuBmxp4c1F99R9M2r41IYsmO2.jpg", "order": 9}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44d9c3a36847f80adb05", "profile_path": null, "id": 57314}], "vote_average": 6.3, "runtime": 79}, "9705": {"poster_path": "/uJdI3eau8BHgTsrUbAeccnKn0ez.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69772969, "overview": "Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.", "video": false, "id": 9705, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Swordfish", "tagline": "Log On. Hack In. Go Anywhere. Get Everything.", "vote_count": 381, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0244244", "adult": false, "backdrop_path": "/9iUG3L5pJjfIJBaaCOl1ucdAM4e.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}], "release_date": "2001-06-07", "popularity": 0.641480543631239, "original_title": "Swordfish", "budget": 80000000, "cast": [{"name": "John Travolta", "character": "Gabriel Shear", "id": 8891, "credit_id": "52fe451fc3a36847f80bdac1", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "Stanley Jobson", "id": 6968, "credit_id": "52fe451fc3a36847f80bdac5", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Halle Berry", "character": "Ginger Knowles", "id": 4587, "credit_id": "52fe451fc3a36847f80bdac9", "cast_id": 3, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 2}, {"name": "Don Cheadle", "character": "Agent J.T. Roberts", "id": 1896, "credit_id": "52fe451fc3a36847f80bdacd", "cast_id": 4, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 3}, {"name": "Sam Shepard", "character": "Senator James Reisman", "id": 9880, "credit_id": "52fe451fc3a36847f80bdad1", "cast_id": 5, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 4}, {"name": "Vinnie Jones", "character": "Marco", "id": 980, "credit_id": "52fe451fc3a36847f80bdb11", "cast_id": 17, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 5}, {"name": "Drea de Matteo", "character": "Melissa", "id": 70767, "credit_id": "52fe451fc3a36847f80bdb15", "cast_id": 18, "profile_path": "/6rAp86rimrbRbZtm61jQoc5Fmkv.jpg", "order": 6}, {"name": "Rudolf Martin", "character": "Axl Torvalds", "id": 25848, "credit_id": "52fe451fc3a36847f80bdb19", "cast_id": 19, "profile_path": "/4dnohkcSh06YhtvUf3NT4DBtgs9.jpg", "order": 7}, {"name": "Zach Grenier", "character": "Assistant Director Bill Joy", "id": 7471, "credit_id": "52fe451fc3a36847f80bdb1d", "cast_id": 20, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 8}, {"name": "Camryn Grimes", "character": "Holly Jobson", "id": 177918, "credit_id": "52fe451fc3a36847f80bdb21", "cast_id": 21, "profile_path": "/fgh10Z5gysQwzocLdbfFk7BKq2q.jpg", "order": 9}, {"name": "Angelo Pagan", "character": "Torres", "id": 172355, "credit_id": "52fe451fc3a36847f80bdb25", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Chic Daniel", "character": "SWAT Leader", "id": 944478, "credit_id": "52fe451fc3a36847f80bdb29", "cast_id": 23, "profile_path": "/i8kXvMUhvQxJZTatSTo1SPSPSgq.jpg", "order": 11}, {"name": "Kirk B.R. Woller", "character": "Axl's Lawyer", "id": 6864, "credit_id": "52fe451fc3a36847f80bdb2d", "cast_id": 24, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 12}, {"name": "Carmen Argenziano", "character": "Agent", "id": 28413, "credit_id": "52fe451fc3a36847f80bdb31", "cast_id": 25, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 13}, {"name": "Tim DeKay", "character": "Agent", "id": 76001, "credit_id": "52fe451fc3a36847f80bdb35", "cast_id": 26, "profile_path": "/tqtJsa6UZeTNMyuatDnFPHRJsAh.jpg", "order": 14}, {"name": "Laura Lane", "character": "Helga", "id": 1115919, "credit_id": "52fe451fc3a36847f80bdb39", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Tait Ruppert", "character": "Ad Agency Executive", "id": 75200, "credit_id": "52fe451fc3a36847f80bdb3d", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Craig Braun", "character": "Coroner", "id": 157409, "credit_id": "52fe451fc3a36847f80bdb41", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "William Mapother", "character": "Gabriel's Crew", "id": 15338, "credit_id": "52fe451fc3a36847f80bdb45", "cast_id": 30, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 18}, {"name": "Ilia Volok", "character": "Gabriel's Crew", "id": 109667, "credit_id": "52fe451fc3a36847f80bdb49", "cast_id": 31, "profile_path": "/k5ACLMgPMrZjKbnOmHmaeBLx2Te.jpg", "order": 19}, {"name": "Jonathan Fraser", "character": "Gabriel's Crew", "id": 1231221, "credit_id": "52fe451fc3a36847f80bdb4d", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Shawn Woods", "character": "Gabriel's Crew", "id": 21472, "credit_id": "52fe451fc3a36847f80bdb51", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Leo Lee", "character": "Gabriel's Crew", "id": 188274, "credit_id": "52fe451fc3a36847f80bdb55", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Marina Black", "character": "Hostage", "id": 173996, "credit_id": "52fe451fc3a36847f80bdb59", "cast_id": 35, "profile_path": "/hOrH537RqGkDqp7xLUTY7LuffYj.jpg", "order": 23}, {"name": "Kerry Kletter", "character": "Hostage", "id": 1279725, "credit_id": "52fe451fc3a36847f80bdb5d", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Ryan Wulff", "character": "Hostage", "id": 1279726, "credit_id": "52fe451fc3a36847f80bdb61", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Ann Travolta", "character": "Hostage", "id": 167878, "credit_id": "52fe451fc3a36847f80bdb65", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Margaret Travolta", "character": "Hostage", "id": 3283, "credit_id": "52fe451fc3a36847f80bdb69", "cast_id": 39, "profile_path": "/igwSgzjk8Hxe0BZk1GQZUzLKvUw.jpg", "order": 27}, {"name": "Dana Hee", "character": "Hostage", "id": 131528, "credit_id": "52fe451fc3a36847f80bdb6d", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Denney Pierce", "character": "Hostage", "id": 159264, "credit_id": "52fe451fc3a36847f80bdb71", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jeff Ramsey", "character": "Hostage", "id": 982374, "credit_id": "52fe451fc3a36847f80bdb75", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Joey Box", "character": "Hostage", "id": 9558, "credit_id": "52fe451fc3a36847f80bdb79", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Debbie Evans", "character": "Hostage", "id": 1279727, "credit_id": "52fe451fc3a36847f80bdb7d", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Samuel Travolta", "character": "Hostage", "id": 1279728, "credit_id": "52fe451fc3a36847f80bdb81", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Tim Storms", "character": "Hostage", "id": 1279729, "credit_id": "52fe451fc3a36847f80bdb85", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Jason Christopher", "character": "Club Kid", "id": 1279730, "credit_id": "52fe451fc3a36847f80bdb89", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Jonathan Pessin", "character": "Club Kid", "id": 1279731, "credit_id": "52fe451fc3a36847f80bdb8d", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Scott Burkholder", "character": "FBI Geek", "id": 104503, "credit_id": "52fe451fc3a36847f80bdb91", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Mark Soper", "character": "FBI Geek", "id": 100276, "credit_id": "52fe451fc3a36847f80bdb95", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Craig Lally", "character": "Customs Agent", "id": 1279732, "credit_id": "52fe451fc3a36847f80bdb99", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Rusty McClennon", "character": "Customs Agent", "id": 1279733, "credit_id": "52fe451fc3a36847f80bdb9d", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Mark Riccardi", "character": "Customs Agent", "id": 198799, "credit_id": "52fe451fc3a36847f80bdba1", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Debbie Entin", "character": "Helga's Friend", "id": 1279734, "credit_id": "52fe451fc3a36847f80bdba5", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Natalia Sokolova", "character": "Helga's Friend", "id": 1243066, "credit_id": "52fe451fc3a36847f80bdba9", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Anika Poitier", "character": "Helga's Friend", "id": 1279735, "credit_id": "52fe451fc3a36847f80bdbad", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Nick Loren", "character": "Dark Suit", "id": 982098, "credit_id": "52fe451fc3a36847f80bdbb1", "cast_id": 57, "profile_path": "/xBuM0KDWPW1jcpByKFEnyt1aKrv.jpg", "order": 45}, {"name": "Tom Morris", "character": "Policeman", "id": 1172392, "credit_id": "52fe451fc3a36847f80bdbb5", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Richard Householder", "character": "Policeman", "id": 1279736, "credit_id": "52fe451fc3a36847f80bdbb9", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Michael Arias", "character": "Policeman", "id": 1279737, "credit_id": "52fe451fc3a36847f80bdbbd", "cast_id": 60, "profile_path": null, "order": 48}, {"name": "Brenda Eimers", "character": "Holly's Teacher", "id": 1279739, "credit_id": "52fe451fc3a36847f80bdbc1", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "Timothy Omundson", "character": "Agent Thomas", "id": 134423, "credit_id": "52fe451fc3a36847f80bdbc5", "cast_id": 62, "profile_path": "/z2GkN1McMM3zheE1RyCk8ZlB90Y.jpg", "order": 50}, {"name": "Astrid Veillon", "character": "Bank Executive", "id": 185374, "credit_id": "52fe451fc3a36847f80bdbc9", "cast_id": 63, "profile_path": "/17r9IBsT46fARqx2QuIlPzb17ZQ.jpg", "order": 51}, {"name": "Dean Rader Duval", "character": "Security Guard", "id": 1279744, "credit_id": "52fe451fc3a36847f80bdbcd", "cast_id": 64, "profile_path": null, "order": 52}], "directors": [{"name": "Dominic Sena", "department": "Directing", "job": "Director", "credit_id": "52fe451fc3a36847f80bdad7", "profile_path": "/ofWADCsDpNxbTFfoK1CpU8KnBGF.jpg", "id": 58498}], "vote_average": 6.0, "runtime": 99}, "888": {"poster_path": "/kCJofdPv2HqiKeUJ0743Ae4UlFr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 341631208, "overview": "Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.", "video": false, "id": 888, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Flintstones", "tagline": "Yabba-Dabba-Doo!", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109813", "adult": false, "backdrop_path": "/vbWvWqZJiEiffj8xag0owDExRVg.jpg", "production_companies": [{"name": "Hanna-Barbera Productions", "id": 1353}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1994-05-26", "popularity": 0.751052982106051, "original_title": "The Flintstones", "budget": 46000000, "cast": [{"name": "John Goodman", "character": "Fred Flintstone", "id": 1230, "credit_id": "52fe4287c3a36847f80262af", "cast_id": 16, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 0}, {"name": "Elizabeth Perkins", "character": "Wilma Flintstone", "id": 20, "credit_id": "52fe4287c3a36847f80262b3", "cast_id": 17, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 1}, {"name": "Rick Moranis", "character": "Barney Rubble", "id": 8872, "credit_id": "52fe4287c3a36847f80262b7", "cast_id": 18, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 2}, {"name": "Rosie O'Donnell", "character": "Betty Rubble", "id": 12929, "credit_id": "52fe4287c3a36847f80262bb", "cast_id": 19, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 3}, {"name": "Kyle MacLachlan", "character": "Cliff Vandercave", "id": 6677, "credit_id": "52fe4287c3a36847f80262bf", "cast_id": 20, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 4}, {"name": "Halle Berry", "character": "Rosetta Stone", "id": 4587, "credit_id": "52fe4287c3a36847f80262c3", "cast_id": 21, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 5}, {"name": "Elizabeth Taylor", "character": "Pearl Slaghoople", "id": 3635, "credit_id": "52fe4287c3a36847f80262c7", "cast_id": 22, "profile_path": "/rPbfZlBX18OIj7H1Bahq7YcJL0v.jpg", "order": 6}, {"name": "Dann Florek", "character": "Mr. Slate", "id": 9175, "credit_id": "52fe4287c3a36847f80262cb", "cast_id": 23, "profile_path": "/aWRFqpmLdFAoH9BiUE7RyxUKUsX.jpg", "order": 7}, {"name": "Richard Moll", "character": "Hoagie", "id": 13591, "credit_id": "52fe4287c3a36847f80262cf", "cast_id": 24, "profile_path": "/c1VbqIWN29mOoFfxvHMQxuAzTn5.jpg", "order": 8}, {"name": "Irwin Keyes", "character": "Joe Rockhead", "id": 13592, "credit_id": "52fe4287c3a36847f80262d3", "cast_id": 25, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 9}, {"name": "Jonathan Winters", "character": "Gobo The Grizzled Man", "id": 13593, "credit_id": "52fe4287c3a36847f80262d7", "cast_id": 26, "profile_path": "/j63YOBYEXhbDWbXUnqD3gb5KJ5k.jpg", "order": 10}, {"name": "Harvey Korman", "character": "Ali / Dicabird / Blossom's Adopted Doll Son Ali", "id": 13640, "credit_id": "52fe4287c3a36847f8026305", "cast_id": 35, "profile_path": "/zXLYvJP3ReKPI6lJr2VuDGupL1j.jpg", "order": 11}, {"name": "Corey Burton", "character": "Triple X / Green Goose", "id": 35219, "credit_id": "52fe4287c3a36847f802630d", "cast_id": 37, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 13}, {"name": "Roger L. Jackson", "character": "Bobo", "id": 51957, "credit_id": "52fe4287c3a36847f8026311", "cast_id": 38, "profile_path": "/lI4N9GJ0QuC1YFYSwauNssGwe11.jpg", "order": 14}, {"name": "Jean Vander Pyl", "character": "Tanya Slag", "id": 145257, "credit_id": "52fe4287c3a36847f8026351", "cast_id": 52, "profile_path": "/54hip6U1OiuIBxTqqWtS8KOGrXz.jpg", "order": 15}], "directors": [{"name": "William Hanna", "department": "Directing", "job": "Director", "credit_id": "537b55a40e0a267fea001658", "profile_path": "/3rCaagU4QRi0JJhcdbUGKoqEWtG.jpg", "id": 13620}, {"name": "Joseph Barbera", "department": "Directing", "job": "Director", "credit_id": "537b55e00e0a267ff7001790", "profile_path": "/A8Lorvx5HirKefQWmhftWGO5VI4.jpg", "id": 13594}, {"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe4287c3a36847f8026357", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.2, "runtime": 91}, "58233": {"poster_path": "/vnS4Lb5rNx2ZucVdrW3TQd6n2AL.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 163388693, "overview": "Johnny English Reborn is a 2011 British spy comedy film parodying the James Bond secret agent genre and film franchise reboots. The film is the sequel to Johnny English (2003), and stars Rowan Atkinson reprising his role as the title character and directed by Oliver Parker. The film has a slightly darker tone than the previous film but retains Atkinson's signature humor.", "video": false, "id": 58233, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Johnny English Reborn", "tagline": "Laugh at the face of danger", "vote_count": 407, "homepage": "http://www.johnnyenglishreborn.com/", "belongs_to_collection": {"backdrop_path": "/pMHHhMKu2iQichL6Eym4ApCvIEB.jpg", "poster_path": "/4RwgzSS4qnqKpTpCtrKQo1cdQXD.jpg", "id": 86117, "name": "Johnny English Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1634122", "adult": false, "backdrop_path": "/5QJbfO5EZtNHTABWKkGqOyvOvNg.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2011-09-15", "popularity": 0.589371502284896, "original_title": "Johnny English Reborn", "budget": 45000000, "cast": [{"name": "Rowan Atkinson", "character": "Johnny English", "id": 10730, "credit_id": "52fe495bc3a36847f8195d9b", "cast_id": 1, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "Dominic West", "character": "Ambrose", "id": 17287, "credit_id": "52fe495bc3a36847f8195d9f", "cast_id": 2, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 1}, {"name": "Gillian Anderson", "character": "Pamela Thornton (aka. Pegasus: Head of MI7)", "id": 12214, "credit_id": "52fe495bc3a36847f8195da3", "cast_id": 3, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 2}, {"name": "Rosamund Pike", "character": "Kate", "id": 10882, "credit_id": "52fe495bc3a36847f8195da7", "cast_id": 4, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 3}, {"name": "Roger Barclay", "character": "Agent Two", "id": 550312, "credit_id": "52fe495bc3a36847f8195db7", "cast_id": 7, "profile_path": "/lhrJO0nYsdB11o3Wvq1e7ph35vl.jpg", "order": 4}, {"name": "Stephen Campbell Moore", "character": "Prime Minister", "id": 55467, "credit_id": "52fe495bc3a36847f8195dbb", "cast_id": 8, "profile_path": "/9LPG6fCe2ct82Io5zI8iyvJ8NsP.jpg", "order": 5}, {"name": "Christina Chong", "character": "", "id": 472632, "credit_id": "548ebdde92514122ea0069f0", "cast_id": 9, "profile_path": null, "order": 6}], "directors": [{"name": "Oliver Parker", "department": "Directing", "job": "Director", "credit_id": "52fe495bc3a36847f8195dad", "profile_path": "/3qdUN7qhcQn4P3tEOTKJgTUdCIr.jpg", "id": 56710}], "vote_average": 6.1, "runtime": 101}, "891": {"poster_path": "/5uGlMCLH3es7Hk0JvmFJUBISGZM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70600000, "overview": "In the run-up to the 1972 elections, Washington Post reporter Bob Woodward covers what seems to be a minor break-in at the Democratic Party National headquarters. He is surprised to find top lawyers already on the defense case, and the discovery of names and addresses of Republican fund organizers on the accused further arouses his suspicions. The editor of the Post is prepared to run with the story and assigns Woodward and Carl Bernstein to it. They find the trail leading higher and higher in the Republican Party, and eventually into the White House itself.", "video": false, "id": 891, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "All the President's Men", "tagline": "At times it looked like it might cost them their jobs, their reputations, and maybe even their lives.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074119", "adult": false, "backdrop_path": "/aMjbjiH0mTUmHVLmYFTTdG5fMZQ.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Wildwood Enterprises", "id": 316}], "release_date": "1976-04-04", "popularity": 0.481267650906764, "original_title": "All the President's Men", "budget": 8500000, "cast": [{"name": "Dustin Hoffman", "character": "Carl Bernstein", "id": 4483, "credit_id": "52fe4288c3a36847f80265bd", "cast_id": 14, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Robert Redford", "character": "Bob Woodward", "id": 4135, "credit_id": "52fe4288c3a36847f80265c1", "cast_id": 15, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Jack Warden", "character": "Harry M. Rosenfeld", "id": 5251, "credit_id": "52fe4288c3a36847f80265c5", "cast_id": 16, "profile_path": "/7Pfj27pVjkQIu5HS85MlGdsl7MQ.jpg", "order": 2}, {"name": "Martin Balsam", "character": "Howard Simons", "id": 1936, "credit_id": "52fe4288c3a36847f80265c9", "cast_id": 17, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 3}, {"name": "Hal Holbrook", "character": "Deep Throat", "id": 11066, "credit_id": "52fe4288c3a36847f80265cd", "cast_id": 18, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 4}, {"name": "Jane Alexander", "character": "Judy Hoback", "id": 13724, "credit_id": "52fe4288c3a36847f80265d1", "cast_id": 19, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 5}, {"name": "Meredith Baxter", "character": "Debbie Sloan", "id": 13725, "credit_id": "52fe4288c3a36847f80265d5", "cast_id": 20, "profile_path": "/tkX4o5lfV5kS70S5Sy3zOsgKOpx.jpg", "order": 6}, {"name": "Ned Beatty", "character": "Martin Dardis", "id": 13726, "credit_id": "52fe4288c3a36847f80265d9", "cast_id": 21, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 7}, {"name": "Jason Robards", "character": "Ben Bradlee", "id": 4765, "credit_id": "52fe4288c3a36847f80265dd", "cast_id": 22, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 8}, {"name": "Stephen Collins", "character": "Hugh W. Sloan, Jr.", "id": 1756, "credit_id": "52fe4288c3a36847f80265e1", "cast_id": 23, "profile_path": "/eYUtj7K9pzgvARQlU8Fn4ybyGAj.jpg", "order": 9}, {"name": "Penny Fuller", "character": "Sally Aiken", "id": 13727, "credit_id": "52fe4288c3a36847f80265e5", "cast_id": 24, "profile_path": "/38dyZOWF3kkZmBz0EwI9najS3Nw.jpg", "order": 10}, {"name": "John McMartin", "character": "Scott", "id": 13728, "credit_id": "52fe4288c3a36847f80265e9", "cast_id": 25, "profile_path": "/ip8kfdqFYZ302OjN2gyxBKjyDAA.jpg", "order": 11}, {"name": "Robert Walden", "character": "Donald H. Segretti", "id": 13729, "credit_id": "52fe4288c3a36847f80265ed", "cast_id": 26, "profile_path": "/y2aZeeJt6OavPVaSz9kxhX93WTp.jpg", "order": 12}, {"name": "David Arkin", "character": "Eugene Bachinski", "id": 9808, "credit_id": "52fe4288c3a36847f80265f1", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Henry Calvert", "character": "Bernard L. Barker", "id": 13730, "credit_id": "52fe4288c3a36847f80265f5", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Nicolas Coster", "character": "Markham", "id": 13731, "credit_id": "52fe4288c3a36847f80265f9", "cast_id": 29, "profile_path": "/xg77v3immsYabbSE3WOKRAH5tt2.jpg", "order": 15}, {"name": "Richard Herd", "character": "James W. McCord, Jr.", "id": 13732, "credit_id": "52fe4288c3a36847f80265fd", "cast_id": 30, "profile_path": "/1wsn9V7kkrvD2Qr3bD1vSH2OjpK.jpg", "order": 16}, {"name": "Frank Latimore", "character": "Judge", "id": 13733, "credit_id": "52fe4288c3a36847f8026601", "cast_id": 31, "profile_path": "/dZiU5PnoSQIzgICKpKA6wft6xOU.jpg", "order": 17}, {"name": "F. Murray Abraham", "character": "Arresting Officer #1", "id": 1164, "credit_id": "551282129251415caa003233", "cast_id": 34, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 18}, {"name": "Dominic Chianese", "character": "Eugenio R. Martinez", "id": 68186, "credit_id": "5512822992514148dd001bf8", "cast_id": 35, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 19}, {"name": "John Randolph", "character": "John Mitchell (voice) (uncredited)", "id": 18649, "credit_id": "551282909251410701009255", "cast_id": 36, "profile_path": "/4mfEMVfzxPuRRcVBtcPyIXF5KoE.jpg", "order": 20}], "directors": [{"name": "Alan J. Pakula", "department": "Directing", "job": "Director", "credit_id": "52fe4288c3a36847f8026571", "profile_path": "/vzvxrcoFirt0LJb0hG0ezP64mYr.jpg", "id": 6349}], "vote_average": 7.3, "runtime": 138}, "892": {"poster_path": "/xO0DIw8PdkzKKyL1XiCQiEUkQJd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 13760640, "overview": "This bizarre surrealistic black comedy takes place in a small fictitious post-apocalyptic town where food is scarce and butcher Clapet has the macabre business of using human flesh to feed his customers. Yet when his daughter falls in love with his next slaughter victim things turn into chaos.", "video": false, "id": 892, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Delicatessen", "tagline": "A futuristic comic feast.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0101700", "adult": false, "backdrop_path": "/uaybyb5PuxIHrEhUAEnS4z4tK6H.jpg", "production_companies": [{"name": "Victoires Productions", "id": 25020}, {"name": "Constellation", "id": 25021}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique (UGC)", "id": 25022}, {"name": "Hachette Premi\u00e8re", "id": 582}, {"name": "Sofinergie Films", "id": 14755}, {"name": "Sofinergie 2", "id": 25023}, {"name": "Investimage 2", "id": 25024}, {"name": "Fondation GAN pour le Cin\u00e9ma", "id": 23677}], "release_date": "1991-04-17", "popularity": 0.694003805302192, "original_title": "Delicatessen", "budget": 4000000, "cast": [{"name": "Dominique Pinon", "character": "Louison", "id": 2413, "credit_id": "52fe4288c3a36847f8026679", "cast_id": 11, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 0}, {"name": "Marie-Laure Dougnac", "character": "Julie Clapet", "id": 13686, "credit_id": "52fe4288c3a36847f802667d", "cast_id": 12, "profile_path": "/1DPdX3LDF1ThZbrhU4dwLMg3J7K.jpg", "order": 1}, {"name": "Jean-Claude Dreyfus", "character": "Clapet (the butcher)", "id": 13687, "credit_id": "52fe4288c3a36847f8026681", "cast_id": 13, "profile_path": "/jOM2R4IViRNOnbCpm1YiPavEyw0.jpg", "order": 2}, {"name": "Karin Viard", "character": "Mademoiselle Plusse", "id": 13688, "credit_id": "52fe4288c3a36847f8026685", "cast_id": 14, "profile_path": "/aPupVACLe1oKrJrxWfPAihJhxJj.jpg", "order": 3}, {"name": "Ticky Holgado", "character": "Marcel Tapioca", "id": 13689, "credit_id": "52fe4288c3a36847f8026689", "cast_id": 15, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 4}, {"name": "Pascal Benezech", "character": "Tried to Escape", "id": 13690, "credit_id": "52fe4288c3a36847f802668d", "cast_id": 16, "profile_path": "/psv8JuKgiLIVeUmKQIYmTWZAYqs.jpg", "order": 5}, {"name": "Edith Ker", "character": "Grandmother", "id": 13691, "credit_id": "52fe4288c3a36847f8026691", "cast_id": 17, "profile_path": "/h59Fc5916WrMp41W8xjkiNfrp3w.jpg", "order": 6}, {"name": "Rufus", "character": "Robert Kube", "id": 2407, "credit_id": "52fe4288c3a36847f8026695", "cast_id": 18, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 7}, {"name": "Jacques Mathou", "character": "Roger Kube", "id": 13692, "credit_id": "52fe4288c3a36847f8026699", "cast_id": 19, "profile_path": "/aJoLui8GCSiPeswMxBgzTXriRIL.jpg", "order": 8}, {"name": "Chick Ortega", "character": "Postman", "id": 13693, "credit_id": "52fe4288c3a36847f802669d", "cast_id": 20, "profile_path": "/mkzUKpoDk7EdU1p96JkH7LSI01g.jpg", "order": 9}, {"name": "Jean-Fran\u00e7ois Perrier", "character": "Georges Interligator", "id": 13694, "credit_id": "52fe4288c3a36847f80266a1", "cast_id": 21, "profile_path": "/g8ACmmqTCFfXEye8Rs0uoEXV5NM.jpg", "order": 10}, {"name": "Silvie Laguna", "character": "Aurore Interligator", "id": 13695, "credit_id": "52fe4288c3a36847f80266a5", "cast_id": 22, "profile_path": "/rbigEHdNk1DBAgj9ge7Q1CqhdFD.jpg", "order": 11}, {"name": "Howard Vernon", "character": "Frog Man", "id": 13696, "credit_id": "52fe4288c3a36847f80266a9", "cast_id": 23, "profile_path": "/yWRuLOmMMDBpteWiZR4YKBmIB8.jpg", "order": 12}, {"name": "Dominique Zardi", "character": "Taxi Driver", "id": 13697, "credit_id": "52fe4288c3a36847f80266ad", "cast_id": 24, "profile_path": "/oOvnUGvgDX9mVxOYwkuUk1pljIV.jpg", "order": 13}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4288c3a36847f8026645", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}, {"name": "Marc Caro", "department": "Directing", "job": "Director", "credit_id": "52fe4288c3a36847f802664b", "profile_path": "/tUOvPzeZsFLjkclLks4xATX5PJC.jpg", "id": 13680}], "vote_average": 7.7, "runtime": 99}, "9086": {"poster_path": "/wlHmBfL43UvVILBmBsYvtizmueM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Only three of the original five \"young guns\" -- Billy the Kid (Emilio Estevez), Jose Chavez y Chavez (Lou Diamond Phillips), and Doc Scurlock (Kiefer Sutherland) -- return in Young Guns, Part 2, which is the story of Billy the Kid and his race to safety in Old Mexico while being trailed by a group of government agents led by Pat Garrett", "video": false, "id": 9086, "genres": [{"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "Young Guns II", "tagline": "Yoo-Hoo, I'll make ya famous!", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/whZZ13xGyCLFn21yVhQ9RXMSuKh.jpg", "poster_path": "/26Y1BApN2lOO18NX2ibEHOwbL1L.jpg", "id": 9329, "name": "Young Guns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100994", "adult": false, "backdrop_path": "/odfh1ImyLsvWxqBaTt06vAyigpP.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}], "release_date": "1990-07-30", "popularity": 0.301352650084909, "original_title": "Young Guns II", "budget": 20, "cast": [{"name": "Emilio Estevez", "character": "William H. 'Billy the Kid' Bonney", "id": 2880, "credit_id": "52fe44dac3a36847f80adf01", "cast_id": 10, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 0}, {"name": "Kiefer Sutherland", "character": "Josiah Gordon 'Doc' Scurlock", "id": 2628, "credit_id": "52fe44dac3a36847f80adf05", "cast_id": 11, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 1}, {"name": "Lou Diamond Phillips", "character": "Jose Chavez y Chavez", "id": 38560, "credit_id": "52fe44dac3a36847f80adf09", "cast_id": 12, "profile_path": "/afXcQRss7rZ6Ocx7PUQFbz7tPOm.jpg", "order": 2}, {"name": "Christian Slater", "character": "Arkansas Dave Rudabaugh", "id": 2224, "credit_id": "52fe44dac3a36847f80adf0d", "cast_id": 13, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 3}, {"name": "William Petersen", "character": "Patrick Floyd 'Pat' Garrett", "id": 52267, "credit_id": "52fe44dac3a36847f80adf11", "cast_id": 14, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 4}, {"name": "Alan Ruck", "character": "Hendry William French", "id": 2394, "credit_id": "52fe44dac3a36847f80adf15", "cast_id": 15, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 5}, {"name": "R. D. Call", "character": "D.A. Rynerson", "id": 49832, "credit_id": "52fe44dac3a36847f80adf19", "cast_id": 16, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 6}, {"name": "Balthazar Getty", "character": "Tom O'Folliard", "id": 9296, "credit_id": "52fe44dac3a36847f80adf1d", "cast_id": 17, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 7}, {"name": "Jack Kehoe", "character": "Ashmun Upson", "id": 1273, "credit_id": "52fe44dac3a36847f80adf21", "cast_id": 18, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 8}, {"name": "Robert Knepper", "character": "Deputy Carlyle", "id": 17343, "credit_id": "52fe44dac3a36847f80adf25", "cast_id": 19, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 9}, {"name": "Tom Kurlander", "character": "J.W. Bell", "id": 14706, "credit_id": "52fe44dac3a36847f80adf29", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Viggo Mortensen", "character": "John W. Poe", "id": 110, "credit_id": "52fe44dac3a36847f80adf2d", "cast_id": 21, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 11}, {"name": "Leon Rippy", "character": "Robert 'Bob' Ollinger", "id": 15374, "credit_id": "52fe44dac3a36847f80adf31", "cast_id": 22, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 12}, {"name": "Tracey Walter", "character": "Beever Smith", "id": 3801, "credit_id": "52fe44dac3a36847f80adf35", "cast_id": 23, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 13}, {"name": "Bradley Whitford", "character": "Charles Phalen", "id": 11367, "credit_id": "52fe44dac3a36847f80adf39", "cast_id": 24, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 14}, {"name": "Scott Wilson", "character": "Governor Lewis Wallace", "id": 6914, "credit_id": "52fe44dac3a36847f80adf3d", "cast_id": 25, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 15}, {"name": "James Coburn", "character": "John Simpson Chisum", "id": 5563, "credit_id": "52fe44dac3a36847f80adf41", "cast_id": 26, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 16}, {"name": "Jenny Wright", "character": "Jane Greathouse", "id": 64056, "credit_id": "52fe44dac3a36847f80adf45", "cast_id": 27, "profile_path": "/scz1dQwtwyFDej8zCAbk6p5bqdp.jpg", "order": 17}], "directors": [{"name": "Geoff Murphy", "department": "Directing", "job": "Director", "credit_id": "52fe44dac3a36847f80adecd", "profile_path": "/h9qts2xTEQyaI6ICnEcyLU69y7W.jpg", "id": 32277}], "vote_average": 6.3, "runtime": 132}, "9087": {"poster_path": "/lymPNGLZgPHuqM29rKMGV46ANij.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.", "video": false, "id": 9087, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The American President", "tagline": "Why can't the most powerful man in the world have the one thing he wants most?", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112346", "adult": false, "backdrop_path": "/wmViVyE9P0HTVU54sP3EriCmtIc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Castle Rock Entertainment", "id": 97}], "release_date": "1995-11-17", "popularity": 0.436017739943288, "original_title": "The American President", "budget": 0, "cast": [{"name": "Michael Douglas", "character": "Andrew Shepherd", "id": 3392, "credit_id": "52fe44dac3a36847f80adf79", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Annette Bening", "character": "Sydney Ellen Wade", "id": 516, "credit_id": "52fe44dac3a36847f80adf7d", "cast_id": 2, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Michael J. Fox", "character": "Lewis Rothschild", "id": 521, "credit_id": "52fe44dac3a36847f80adf81", "cast_id": 3, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 2}, {"name": "Martin Sheen", "character": "A.J. MacInerney", "id": 8349, "credit_id": "52fe44dac3a36847f80adf85", "cast_id": 4, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 3}, {"name": "Anna Deavere Smith", "character": "Robin McCall", "id": 63279, "credit_id": "52fe44dac3a36847f80adfad", "cast_id": 11, "profile_path": "/qxnkWqihNIu2FKL8UFxAfv9XfAW.jpg", "order": 4}, {"name": "Shawna Waldron", "character": "Lucy Shepherd", "id": 112080, "credit_id": "52fe44dac3a36847f80adfb1", "cast_id": 12, "profile_path": "/oWfERtTQVAhhvnzM7axvRD3lQju.jpg", "order": 5}, {"name": "Samantha Mathis", "character": "Janie Basdin", "id": 20767, "credit_id": "52fe44dac3a36847f80adfb5", "cast_id": 13, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 6}, {"name": "David Paymer", "character": "Leon Kodak", "id": 19839, "credit_id": "52fe44dac3a36847f80adfb9", "cast_id": 14, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 7}, {"name": "Richard Dreyfuss", "character": "Senator Bob Rumson", "id": 3037, "credit_id": "52fe44dac3a36847f80adfbd", "cast_id": 15, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 8}, {"name": "Nina Siemaszko", "character": "Beth Wade", "id": 42133, "credit_id": "52fe44dac3a36847f80adfc1", "cast_id": 16, "profile_path": "/htNzOMMh4Hys3EhTDWdJOlbtKpL.jpg", "order": 9}, {"name": "Wendie Malick", "character": "Susan Sloan", "id": 61980, "credit_id": "52fe44dac3a36847f80adfc5", "cast_id": 17, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 10}, {"name": "Beau Billingslea", "character": "Agent Cooper", "id": 78494, "credit_id": "52fe44dac3a36847f80adfc9", "cast_id": 18, "profile_path": "/3Ooz7bdkkSwwbzOs9SPXIXvGKYQ.jpg", "order": 11}, {"name": "Gail Strickland", "character": "Esther MacInerney", "id": 42003, "credit_id": "52fe44dac3a36847f80adfcd", "cast_id": 19, "profile_path": "/pT9Tb2f07joxd7KYPLucak7X8J0.jpg", "order": 12}, {"name": "Joshua Malina", "character": "David", "id": 131642, "credit_id": "52fe44dac3a36847f80adfd1", "cast_id": 20, "profile_path": "/me30212mRTU5zS1tI0CQ5jSidNT.jpg", "order": 13}, {"name": "Clement von Franckenstein", "character": "President Ren\u00e9 Jean D'Astier", "id": 43115, "credit_id": "52fe44dac3a36847f80adfd5", "cast_id": 21, "profile_path": "/pwpD8AxmseZOmnWXRsDErKk08Ro.jpg", "order": 14}, {"name": "John Mahoney", "character": "Leo Solomon", "id": 4251, "credit_id": "52fe44dac3a36847f80adfd9", "cast_id": 22, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 15}, {"name": "John Mahon", "character": "Chairman of the Joint Chiefs", "id": 43978, "credit_id": "52fe44dac3a36847f80adfdd", "cast_id": 23, "profile_path": null, "order": 16}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe44dac3a36847f80adf8b", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.3, "runtime": 106}, "58244": {"poster_path": "/jSPjz6sgbtGXvsKkAdb9Ucv8nUu.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 8106475, "overview": "In an alternate universe where twinned worlds have opposite gravities, a young man battles interplanetary prejudice and the laws of physics in his quest to reunite with the long-lost girl of his dreams in this visually stunning romantic adventure that poses the question: what if love was stronger than gravity?", "video": false, "id": 58244, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Upside Down", "tagline": "Two worlds. One future.", "vote_count": 415, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1374992", "adult": false, "backdrop_path": "/q4LkO5LPHGO8FGUzfZfYQYnmAjf.jpg", "production_companies": [{"name": "Studio 37", "id": 2577}], "release_date": "2012-08-23", "popularity": 1.2978374214258, "original_title": "Upside Down", "budget": 72000000, "cast": [{"name": "Kirsten Dunst", "character": "Eden", "id": 205, "credit_id": "52fe495bc3a36847f8195ebf", "cast_id": 4, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Adam", "id": 38941, "credit_id": "52fe495bc3a36847f8195ec3", "cast_id": 5, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Timothy Spall", "character": "", "id": 9191, "credit_id": "52fe495bc3a36847f8195ed7", "cast_id": 10, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 2}, {"name": "James Kidnie", "character": "Lagavullan", "id": 38565, "credit_id": "52fe495bc3a36847f8195ec7", "cast_id": 6, "profile_path": "/6JVjexvxnzyjlOjPcSVMkruGfWd.jpg", "order": 3}, {"name": "Heidi Hawkins", "character": "Reporter", "id": 101219, "credit_id": "52fe495bc3a36847f8195ecb", "cast_id": 7, "profile_path": "/7TlBzbFVi9fd5tqVqNMGGgk8fOo.jpg", "order": 4}, {"name": "Don Jordan", "character": "Host", "id": 92263, "credit_id": "52fe495bc3a36847f8195ecf", "cast_id": 8, "profile_path": "/jVzumyy0pq6QX9GRQOQ4jBFXmsr.jpg", "order": 5}, {"name": "Holly O'Brien", "character": "Paula", "id": 85168, "credit_id": "52fe495bc3a36847f8195ed3", "cast_id": 9, "profile_path": "/Mh2robi8gBfWpqZk4o5nyTwuYF.jpg", "order": 6}], "directors": [{"name": "Juan Diego Solanas", "department": "Directing", "job": "Director", "credit_id": "52fe495bc3a36847f8195eaf", "profile_path": null, "id": 52244}], "vote_average": 6.1, "runtime": 104}, "901": {"poster_path": "/kZTzat2Da2ZEVn90FNW15tIU9wQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19181, "overview": "City Lights is the first silent film that Charlie Chaplin directed after he established himself with sound accompanied films. The film is about a penniless man who falls in love with a flower girl. The film was a great success and today is deemed a cult classic.", "video": false, "id": 901, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "City Lights", "tagline": "", "vote_count": 81, "homepage": "http://www.charliechaplin.com/biography/articles/4-City-Lights", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0021749", "adult": false, "backdrop_path": "/xDmdjsQ2XVQCYUrnyZXwO7QzLd7.jpg", "production_companies": [{"name": "Charles Chaplin Productions", "id": 1315}], "release_date": "1931-01-30", "popularity": 0.820602286472542, "original_title": "City Lights", "budget": 1500000, "cast": [{"name": "Charles Chaplin", "character": "Tramp", "id": 13848, "credit_id": "52fe428ac3a36847f8026bf3", "cast_id": 11, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Virginia Cherrill", "character": "A Blind Girl", "id": 13852, "credit_id": "52fe428ac3a36847f8026bd9", "cast_id": 5, "profile_path": "/hzhEzAEFb5R0nxrqgNlgESOqExo.jpg", "order": 1}, {"name": "Florence Lee", "character": "The Blind Girl's Grandmother", "id": 13853, "credit_id": "52fe428ac3a36847f8026bdd", "cast_id": 6, "profile_path": "/eW96SJfOVw7VlE7HSuSujndKmQs.jpg", "order": 2}, {"name": "Harry Myers", "character": "An Eccentric Millionaire", "id": 13854, "credit_id": "52fe428ac3a36847f8026be1", "cast_id": 7, "profile_path": "/2jKQrcon9xkFpYLKZ9nOL5aOTld.jpg", "order": 3}, {"name": "Al Ernest Garcia", "character": "The Eccentric Millionaire's Butler", "id": 13855, "credit_id": "52fe428ac3a36847f8026be5", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Hank Mann", "character": "A Prizefighter", "id": 13856, "credit_id": "52fe428ac3a36847f8026be9", "cast_id": 9, "profile_path": null, "order": 5}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026bc9", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.8, "runtime": 87}, "902": {"poster_path": "/wO3p0lUHwg5RbapwBznCgi8nVC6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 1738611, "overview": "A scientist in a surrealist society kidnaps children to steal their dreams, hoping that they slow his aging process.", "video": false, "id": 902, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The City of Lost Children", "tagline": "Where happily ever after is just a dream.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0112682", "adult": false, "backdrop_path": "/4FnkreXkvv3Wbu5XBz5NLMTyMh4.jpg", "production_companies": [{"name": "Constellation Productions", "id": 590}, {"name": "Claudie Ossard Productions", "id": 592}], "release_date": "1995-05-16", "popularity": 0.827226521307956, "original_title": "La cit\u00e9 des enfants perdus", "budget": 18000000, "cast": [{"name": "Ron Perlman", "character": "One", "id": 2372, "credit_id": "52fe428ac3a36847f8026cdf", "cast_id": 24, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 0}, {"name": "Dominique Pinon", "character": "Scaphandrier / Les Clones", "id": 2413, "credit_id": "52fe428ac3a36847f8026ce3", "cast_id": 25, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 1}, {"name": "Judith Vittet", "character": "Miette", "id": 13842, "credit_id": "52fe428ac3a36847f8026ce7", "cast_id": 26, "profile_path": "/8jBxds9PU80J8aJhoNpDksbzUXU.jpg", "order": 2}, {"name": "Daniel Emilfork", "character": "Krank", "id": 13843, "credit_id": "52fe428ac3a36847f8026ceb", "cast_id": 27, "profile_path": "/sVPMtUDg3dTKpU4iBXCPwCc0k5j.jpg", "order": 3}, {"name": "Jean-Claude Dreyfus", "character": "Marcello", "id": 13687, "credit_id": "52fe428ac3a36847f8026cef", "cast_id": 28, "profile_path": "/jOM2R4IViRNOnbCpm1YiPavEyw0.jpg", "order": 4}, {"name": "Genevi\u00e8ve Brunet", "character": "la Pieuvre", "id": 13845, "credit_id": "52fe428ac3a36847f8026cf3", "cast_id": 29, "profile_path": "/3JER8Lahj03pjvIO4prsCBIcorq.jpg", "order": 5}, {"name": "Odile Mallet", "character": "la Pieuvre", "id": 13846, "credit_id": "52fe428ac3a36847f8026cf7", "cast_id": 30, "profile_path": "/cpYN3MV5RKnidTZ0JmN2Jf1A6q2.jpg", "order": 6}, {"name": "Mireille Moss\u00e9", "character": "Mademoiselle Bismuth", "id": 4394, "credit_id": "52fe428ac3a36847f8026cfb", "cast_id": 31, "profile_path": "/6NBOAx1hP0l423uEa2kjUsdr4UK.jpg", "order": 7}, {"name": "Serge Merlin", "character": "Gabriel Marie", "id": 2410, "credit_id": "52fe428ac3a36847f8026cff", "cast_id": 32, "profile_path": "/w07o6hg3hUxoWtgUBJ87VXilKzu.jpg", "order": 8}, {"name": "Rufus", "character": "Peeler", "id": 2407, "credit_id": "52fe428ac3a36847f8026d03", "cast_id": 33, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 9}, {"name": "Ticky Holgado", "character": "Ex-acrobat", "id": 13689, "credit_id": "52fe428ac3a36847f8026d07", "cast_id": 34, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 10}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026c6f", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}, {"name": "Marc Caro", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026d19", "profile_path": "/tUOvPzeZsFLjkclLks4xATX5PJC.jpg", "id": 13680}], "vote_average": 7.9, "runtime": 108}, "903": {"poster_path": "/3rg6PsJfQgI1kMJRK4N7Yc6OH2P.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16217773, "overview": "Luke Jackson is a cool, gutsy prisoner in a Southern chain gang who, while refusing to buckle under to authority, keeps escaping and being recaptured. Nevertheless, the camp staff actively works to crush Luke until he finally breaks.", "video": false, "id": 903, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Cool Hand Luke", "tagline": "What we've got here is failure to communicate.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061512", "adult": false, "backdrop_path": "/xRJ332EntToXGS7Wr2EZ6i96xHM.jpg", "production_companies": [{"name": "Jalem Productions", "id": 11496}], "release_date": "1967-11-01", "popularity": 0.789016050820466, "original_title": "Cool Hand Luke", "budget": 0, "cast": [{"name": "Paul Newman", "character": "Luke Jackson", "id": 3636, "credit_id": "52fe428ac3a36847f8026daf", "cast_id": 13, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "George Kennedy", "character": "Dragline", "id": 12950, "credit_id": "52fe428ac3a36847f8026db3", "cast_id": 14, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 1}, {"name": "Luke Askew", "character": "Boss Paul", "id": 8962, "credit_id": "52fe428ac3a36847f8026db7", "cast_id": 15, "profile_path": "/nlV0bfadoMjbz7vxmLl5zALc86H.jpg", "order": 2}, {"name": "Morgan Woodward", "character": "Boss Godfrey", "id": 13869, "credit_id": "52fe428ac3a36847f8026dbb", "cast_id": 16, "profile_path": "/n9eD22nE4ABPF1P3tVhkEd1xj4K.jpg", "order": 3}, {"name": "Harry Dean Stanton", "character": "Tramp", "id": 5048, "credit_id": "52fe428ac3a36847f8026dbf", "cast_id": 18, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 4}, {"name": "Dennis Hopper", "character": "Babalugats", "id": 2778, "credit_id": "52fe428ac3a36847f8026dc3", "cast_id": 19, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 5}, {"name": "Lou Antonio", "character": "Koko", "id": 13871, "credit_id": "52fe428ac3a36847f8026dc7", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Robert Drivas", "character": "Loudmouth Steve", "id": 13872, "credit_id": "52fe428ac3a36847f8026dcb", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Strother Martin", "character": "Captain", "id": 8260, "credit_id": "52fe428ac3a36847f8026dcf", "cast_id": 22, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 8}, {"name": "Jo Van Fleet", "character": "Arletta", "id": 2752, "credit_id": "52fe428ac3a36847f8026dd3", "cast_id": 23, "profile_path": "/ten759vBLpScDUP4FUSMBwQMWeE.jpg", "order": 9}, {"name": "Clifton James", "character": "Carr", "id": 10224, "credit_id": "52fe428ac3a36847f8026dd7", "cast_id": 24, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 10}, {"name": "Marc Cavell", "character": "Rabbitt", "id": 13874, "credit_id": "52fe428ac3a36847f8026ddb", "cast_id": 25, "profile_path": "/8n0TPwZioq7CbifGmiQezaZGPTz.jpg", "order": 11}, {"name": "Richard Davalos", "character": "Blind Dick", "id": 2751, "credit_id": "52fe428ac3a36847f8026ddf", "cast_id": 26, "profile_path": "/fQxCuObBh1hQ3CyTGerDHfshYFM.jpg", "order": 12}, {"name": "Robert Donner", "character": "Boss Shorty", "id": 13875, "credit_id": "52fe428ac3a36847f8026de3", "cast_id": 27, "profile_path": "/6GXjsXEC5a0BoFwq1pad5OqJ5M9.jpg", "order": 13}, {"name": "J. D. Cannon", "character": "Society Red", "id": 19106, "credit_id": "52fe428ac3a36847f8026de7", "cast_id": 28, "profile_path": "/fMtH2X3lphfTcmldSTLFSSL3oox.jpg", "order": 14}, {"name": "Joe Don Baker", "character": "Fixer", "id": 10671, "credit_id": "52fe428ac3a36847f8026df1", "cast_id": 30, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 15}, {"name": "James Gammon", "character": "Sleepy", "id": 16433, "credit_id": "52fe428ac3a36847f8026df5", "cast_id": 31, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 16}, {"name": "Chuck Hicks", "character": "Chief", "id": 25579, "credit_id": "52fe428ac3a36847f8026df9", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Rance Howard", "character": "Sheriff", "id": 22250, "credit_id": "538329e1c3a368059e0087ed", "cast_id": 35, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 18}, {"name": "James Jeter", "character": "Wickerman", "id": 79646, "credit_id": "52fe428ac3a36847f8026e01", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Joy Harmon", "character": "The Girl", "id": 153591, "credit_id": "55087cad92514110d70019b6", "cast_id": 36, "profile_path": "/9W0QJpPgOGKhX38rcc2N0zq4OLY.jpg", "order": 20}], "directors": [{"name": "Stuart Rosenberg", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026d69", "profile_path": null, "id": 13859}], "vote_average": 7.3, "runtime": 126}, "9708": {"poster_path": "/aeQ65vYvOCRmeO0uaVnjHOiDrXZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38755073, "overview": "A sheriff investigating the disappearance of a young girl from a small island discovers there's a larger mystery to solve among the island's secretive, neo-pagan community.", "video": false, "id": 9708, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Wicker Man", "tagline": "Some sacrifices must be made", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450345", "adult": false, "backdrop_path": "/jB8p1HUXVPN1j3WaiymJ8vMLE3D.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Millennium Films", "id": 10254}, {"name": "Saturn Films", "id": 831}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG III", "id": 10885}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "Brightlight Pictures", "id": 1063}, {"name": "Wicker Man Productions", "id": 20453}], "release_date": "2006-09-01", "popularity": 0.469101748218084, "original_title": "The Wicker Man", "budget": 40000000, "cast": [{"name": "Nicolas Cage", "character": "Edward Malus", "id": 2963, "credit_id": "52fe451fc3a36847f80bdd7f", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Ellen Burstyn", "character": "Sister Summersisle", "id": 9560, "credit_id": "52fe451fc3a36847f80bdd83", "cast_id": 2, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 1}, {"name": "Kate Beahan", "character": "Sister Willow", "id": 57278, "credit_id": "52fe451fc3a36847f80bdd87", "cast_id": 3, "profile_path": "/tuaMd14ArMWImBjKf36RvVQCMYM.jpg", "order": 2}, {"name": "Frances Conroy", "character": "Dr. Moss", "id": 4432, "credit_id": "52fe451fc3a36847f80bdd8b", "cast_id": 4, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 3}, {"name": "Leelee Sobieski", "character": "Sister Honey", "id": 22290, "credit_id": "52fe451fc3a36847f80bddc5", "cast_id": 15, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 4}, {"name": "Molly Parker", "character": "Sister Rose / Sister Thorn", "id": 27125, "credit_id": "52fe4520c3a36847f80bddcf", "cast_id": 17, "profile_path": "/4IgmsXs2iu8nRdaKU0R5TOAeKeT.jpg", "order": 5}, {"name": "Diane Delano", "character": "Sister Beech", "id": 43859, "credit_id": "52fe4520c3a36847f80bddd3", "cast_id": 18, "profile_path": "/rzgAYv4C1pwwefA18LNb1ukw9FI.jpg", "order": 6}, {"name": "Michael Wiseman", "character": "Officer Pete", "id": 102710, "credit_id": "52fe4520c3a36847f80bddd7", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Erika-Shaye Gair", "character": "Rowan Woodward", "id": 962340, "credit_id": "52fe4520c3a36847f80bdddb", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Christa Campbell", "character": "Truck Stop Waitress", "id": 85178, "credit_id": "52fe4520c3a36847f80bdddf", "cast_id": 21, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 9}, {"name": "Emily Holmes", "character": "Station Wagon Mom", "id": 37979, "credit_id": "52fe4520c3a36847f80bdde3", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Matthew Walker", "character": "Sea Plane Pilot", "id": 27122, "credit_id": "52fe4520c3a36847f80bdde7", "cast_id": 23, "profile_path": "/umfHYNqAhypXwGPTRRAeN6mA4J0.jpg", "order": 11}, {"name": "Mary Black", "character": "Sister Oak", "id": 11831, "credit_id": "52fe4520c3a36847f80bddeb", "cast_id": 24, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 12}, {"name": "Christine Willes", "character": "Sister Violet", "id": 189719, "credit_id": "52fe4520c3a36847f80bddef", "cast_id": 25, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 13}, {"name": "Tania Saulnier", "character": "Attendant #1", "id": 59244, "credit_id": "52fe4520c3a36847f80bddf3", "cast_id": 26, "profile_path": "/bEMuffxifJMZkcAmZ2J9NbHehJu.jpg", "order": 14}, {"name": "James Franco", "character": "Bar Guy #1", "id": 17051, "credit_id": "52fe4520c3a36847f80bddf7", "cast_id": 27, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 15}, {"name": "Jason Ritter", "character": "Bar Guy #2", "id": 50095, "credit_id": "52fe4520c3a36847f80bddfb", "cast_id": 28, "profile_path": "/ysWVNRFfk7oGngurF7VWkWhvyQS.jpg", "order": 16}], "directors": [{"name": "Neil LaBute", "department": "Directing", "job": "Director", "credit_id": "52fe451fc3a36847f80bddcb", "profile_path": "/snHfcueBlYFinCdUoVmK9CHdZX0.jpg", "id": 58689}], "vote_average": 4.2, "runtime": 102}, "907": {"poster_path": "/lP1Mn1sQ9FiSNovCyZonhKjjkRM.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 111721910, "overview": "Doctor Zhivago is the filmed adapation of the Russian novel by Boris Pasternak from director David Lean that was an international success and today deemed a classic. Omar Sharif and Julie Christie play two protagonists who in fact love each other yet because of their current situation cannot find a way be together.", "video": false, "id": 907, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Doctor Zhivago", "tagline": "Turbulent were the times and fiery was the love story of Zhivago, his wife and the passionate, tender Lara.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0059113", "adult": false, "backdrop_path": "/evAe6OMQgRkrVWxjLktYy1tIARW.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1965-12-22", "popularity": 0.708032362079308, "original_title": "Doctor Zhivago", "budget": 14000000, "cast": [{"name": "Omar Sharif", "character": "Dr. Yuri Zhivago", "id": 5004, "credit_id": "52fe428bc3a36847f8026fdb", "cast_id": 18, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 0}, {"name": "Julie Christie", "character": "Lara Antipova", "id": 1666, "credit_id": "52fe428bc3a36847f8026fdf", "cast_id": 19, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 1}, {"name": "Geraldine Chaplin", "character": "Tonya Gromeko", "id": 400, "credit_id": "52fe428bc3a36847f8026fe3", "cast_id": 20, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 2}, {"name": "Rod Steiger", "character": "Viktor Komarovsky", "id": 522, "credit_id": "52fe428bc3a36847f8026fe7", "cast_id": 21, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 3}, {"name": "Alec Guinness", "character": "Gen. Yevgraf Zhivago", "id": 12248, "credit_id": "52fe428bc3a36847f8026feb", "cast_id": 22, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 4}, {"name": "Tom Courtenay", "character": "Pasha", "id": 14011, "credit_id": "52fe428bc3a36847f8026fef", "cast_id": 23, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 5}, {"name": "Siobh\u00e1n McKenna", "character": "Anna", "id": 14012, "credit_id": "52fe428bc3a36847f8026ff3", "cast_id": 24, "profile_path": "/bbP62i8GVXnt3Uc1C34DtyzCpz8.jpg", "order": 6}, {"name": "Ralph Richardson", "character": "Alexander Gromeko", "id": 12689, "credit_id": "52fe428bc3a36847f8026ff7", "cast_id": 25, "profile_path": "/8S6qfDifOU0zbRXsZmxxVJ6i22.jpg", "order": 7}, {"name": "G\u00e9rard Tichy", "character": "Liberius", "id": 14014, "credit_id": "52fe428bc3a36847f8026ffb", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Noel Willman", "character": "Razin, Liberius' Lieutenant", "id": 14015, "credit_id": "52fe428bc3a36847f8026fff", "cast_id": 27, "profile_path": "/7hJIwQieLVSqRglQjVkOZff3jeT.jpg", "order": 9}, {"name": "Jack MacGowran", "character": "Petya", "id": 14016, "credit_id": "52fe428bc3a36847f8027003", "cast_id": 28, "profile_path": "/kzh0Gmhp0MG57kfXsqkTPH8LyTr.jpg", "order": 10}, {"name": "Mark Eden", "character": "Engineer at dam", "id": 14017, "credit_id": "52fe428bc3a36847f8027007", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Erik Chitty", "character": "Sergei", "id": 14018, "credit_id": "52fe428bc3a36847f802700b", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Klaus Kinski", "character": "Kostoyed Amourski", "id": 14277, "credit_id": "52fe428bc3a36847f8027015", "cast_id": 32, "profile_path": "/7gsJB7xlovz1khNID0B8yKA9TO0.jpg", "order": 13}], "directors": [{"name": "David Lean", "department": "Directing", "job": "Director", "credit_id": "52fe428bc3a36847f8026f77", "profile_path": "/iUTtDo1gl0Phe342xxoPq2w643R.jpg", "id": 12238}], "vote_average": 7.0, "runtime": 197}, "9100": {"poster_path": "/5QoAIazIjidUcnD4Vggvmvg42NW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24769466, "overview": "A Catholic school newcomer falls in with a clique of teen witches who wield their powers against all who dare to cross them -- be they teachers, rivals or meddlesome parents.", "video": false, "id": 9100, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Craft", "tagline": "Welcome to the witching hour.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115963", "adult": false, "backdrop_path": "/doMoN3efVN4NefceDtLVY8879fR.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1996-05-03", "popularity": 0.510181103198104, "original_title": "The Craft", "budget": 15000000, "cast": [{"name": "Fairuza Balk", "character": "Nancy Downs", "id": 826, "credit_id": "52fe44dcc3a36847f80ae431", "cast_id": 1, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 0}, {"name": "Neve Campbell", "character": "Bonnie", "id": 9206, "credit_id": "52fe44dcc3a36847f80ae435", "cast_id": 2, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 1}, {"name": "Robin Tunney", "character": "Sarah Bailey", "id": 17346, "credit_id": "52fe44dcc3a36847f80ae439", "cast_id": 3, "profile_path": "/oQGr5vfYbkarmJQmhGmSpIhSapL.jpg", "order": 2}, {"name": "Rachel True", "character": "Rochelle", "id": 19222, "credit_id": "52fe44dcc3a36847f80ae43d", "cast_id": 4, "profile_path": "/cVN934tgQcX5ZMHNBFLZpw2fNCH.jpg", "order": 3}, {"name": "Skeet Ulrich", "character": "Chris Hooker", "id": 22108, "credit_id": "52fe44dcc3a36847f80ae441", "cast_id": 5, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 4}, {"name": "Christine Taylor", "character": "Laura Lizzie", "id": 15286, "credit_id": "52fe44dcc3a36847f80ae445", "cast_id": 6, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 5}, {"name": "Breckin Meyer", "character": "Mitt", "id": 33654, "credit_id": "52fe44dcc3a36847f80ae473", "cast_id": 14, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 6}, {"name": "Nathaniel Marston", "character": "Trey", "id": 211998, "credit_id": "52fe44dcc3a36847f80ae477", "cast_id": 15, "profile_path": "/q9r3UyrRKWdHTkx8WzO5BT0fS8S.jpg", "order": 7}, {"name": "Cliff DeYoung", "character": "Mr. Bailey", "id": 44301, "credit_id": "52fe44dcc3a36847f80ae47b", "cast_id": 16, "profile_path": "/ut5RFMqeVDxyTJ5YP2J9DbzEh4V.jpg", "order": 8}, {"name": "Assumpta Serna", "character": "Lirio", "id": 42123, "credit_id": "52fe44dcc3a36847f80ae47f", "cast_id": 17, "profile_path": "/7xIaDr5TcMaWmuvqUXDzCYK2e8S.jpg", "order": 9}, {"name": "Helen Shaver", "character": "Grace Downs", "id": 4160, "credit_id": "52fe44dcc3a36847f80ae483", "cast_id": 18, "profile_path": "/a9ODBCPAkAolT4QWhuMUlFNAUIL.jpg", "order": 10}, {"name": "Jeanine Jackson", "character": "Jenny", "id": 152355, "credit_id": "52fe44dcc3a36847f80ae487", "cast_id": 19, "profile_path": "/aTPsYoKNIZFZKche4OGOPoyd639.jpg", "order": 11}, {"name": "Brenda Strong", "character": "Doctor", "id": 101396, "credit_id": "52fe44dcc3a36847f80ae48b", "cast_id": 20, "profile_path": "/pxHEpBiAdflsjkXWuC0goC2FBef.jpg", "order": 12}, {"name": "Endre Hules", "character": "Monsieur Thepot", "id": 43461, "credit_id": "52fe44dcc3a36847f80ae48f", "cast_id": 21, "profile_path": "/cmxqIcfikG6rr5ag45ZkhYMP51Z.jpg", "order": 13}], "directors": [{"name": "Andrew Fleming", "department": "Directing", "job": "Director", "credit_id": "52fe44dcc3a36847f80ae46f", "profile_path": "/dV6ZxTxkbO0OOTL8b5C4Vb0JovH.jpg", "id": 41549}], "vote_average": 6.3, "runtime": 101}, "2758": {"poster_path": "/zEwEXGDvJ8Ou2s6XbLMPvMTX53S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48919043, "overview": "Siblings Wednesday and Pugsley Addams will stop at nothing to get rid of Pubert, the new baby boy adored by parents Gomez and Morticia. Things go from bad to worse when the new \"black widow\" nanny, Debbie Jellinsky, launches her plan to add Fester to her collection of dead husbands.", "video": false, "id": 2758, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Addams Family Values", "tagline": "The Family Just Got A Little Stranger", "vote_count": 97, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gS5yZLrSJ6uNbsz17xoxf70X2Ws.jpg", "poster_path": "/iqAjYCir8x2fc8eeQ2k4qZqOMP1.jpg", "id": 11716, "name": "Addams Family Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106220", "adult": false, "backdrop_path": "/i84FfYcljpH9FOO26PdvBWzLGRl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Orion Pictures", "id": 41}], "release_date": "1993-11-19", "popularity": 0.687180377821533, "original_title": "Addams Family Values", "budget": 0, "cast": [{"name": "Joan Cusack", "character": "Debbie Jellinsky", "id": 3234, "credit_id": "52fe436ac3a36847f8052a19", "cast_id": 1, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 0}, {"name": "Anjelica Huston", "character": "Morticia Addams", "id": 5657, "credit_id": "52fe436ac3a36847f8052a1d", "cast_id": 2, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 1}, {"name": "Ra\u00fal Juli\u00e1", "character": "Gomez Addams", "id": 27888, "credit_id": "52fe436ac3a36847f8052a21", "cast_id": 3, "profile_path": "/nr6Vm3KVdwzIADFThKQhG3uTRfJ.jpg", "order": 2}, {"name": "Christopher Lloyd", "character": "Uncle Fester Addams", "id": 1062, "credit_id": "52fe436ac3a36847f8052a25", "cast_id": 4, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 3}, {"name": "Christina Ricci", "character": "Wednesday Addams", "id": 6886, "credit_id": "52fe436ac3a36847f8052a29", "cast_id": 5, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 4}, {"name": "Carel Struycken", "character": "Lurch", "id": 9631, "credit_id": "52fe436ac3a36847f8052a2d", "cast_id": 6, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 5}, {"name": "Harriet Sansom Harris", "character": "Ellen Buckman", "id": 538, "credit_id": "52fe436ac3a36847f8052a79", "cast_id": 19, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 6}, {"name": "Julie Halston", "character": "Mrs. Glicker", "id": 57552, "credit_id": "52fe436ac3a36847f8052a7d", "cast_id": 20, "profile_path": "/uIRC2QqBCKwHVCcXl564a4FYPRe.jpg", "order": 7}, {"name": "Barry Sonnenfeld", "character": "Mr. Glicker", "id": 5174, "credit_id": "52fe436ac3a36847f8052a81", "cast_id": 21, "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "order": 8}, {"name": "Jimmy Workman", "character": "Pugsley Addams", "id": 119866, "credit_id": "52fe436ac3a36847f8052a85", "cast_id": 22, "profile_path": "/si15LijCxnGCSbjle6zIiUC4LE9.jpg", "order": 9}, {"name": "Peter MacNicol", "character": "Gary Granger", "id": 12688, "credit_id": "54dfb357925141194b004179", "cast_id": 25, "profile_path": "/ekL1Ko8DLp0ketkwRPr4DoDBfq4.jpg", "order": 10}, {"name": "Carol Kane", "character": "Granny", "id": 10556, "credit_id": "54dfb370c3a368537a00379c", "cast_id": 26, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 11}, {"name": "Christine Baranski", "character": "Becky Martin-Granger", "id": 11870, "credit_id": "54dfb3b8c3a368454d003fc2", "cast_id": 27, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 12}, {"name": "Mercedes McNab", "character": "Amanda Buckman", "id": 123149, "credit_id": "54dfb3d4c3a3685446003243", "cast_id": 28, "profile_path": "/6lZx80GFjfkBbjeKEZoe1261uNs.jpg", "order": 13}, {"name": "Sam McMurray", "character": "Don Buckman", "id": 5176, "credit_id": "54dfb3e6c3a368537a0037a2", "cast_id": 29, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 14}, {"name": "Nathan Lane", "character": "Desk Sergeant", "id": 78729, "credit_id": "54dfb4399251411950003dc1", "cast_id": 30, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 15}, {"name": "David Hyde Pierce", "character": "Delivery Room Doctor", "id": 11076, "credit_id": "54dfb45cc3a36855c7001c59", "cast_id": 31, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 16}, {"name": "Tony Shalhoub", "character": "Jorge", "id": 4252, "credit_id": "54dfb478c3a368537a0037a8", "cast_id": 32, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 17}, {"name": "Peter Graves", "character": "Host", "id": 9111, "credit_id": "54dfb49f9251411956004030", "cast_id": 33, "profile_path": "/sR9B0mE399EGI9aRxMbWMpk2GKT.jpg", "order": 18}, {"name": "Cynthia Nixon", "character": "Heather", "id": 38024, "credit_id": "54dfb4b9925141454f00197f", "cast_id": 34, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 19}, {"name": "John Franklin", "character": "Cousin Itt", "id": 66986, "credit_id": "54dfb4edc3a3684541004729", "cast_id": 35, "profile_path": "/3IZAPwKfnn4XwtXBBn4PHRisdRf.jpg", "order": 20}, {"name": "David Krumholtz", "character": "Joel Glicker", "id": 38582, "credit_id": "54dfbfc2925141195a003bf1", "cast_id": 36, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 21}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f8052a33", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.3, "runtime": 94}, "913": {"poster_path": "/jpRUaqNuQInXxdsLIncGJW5u3u2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124305181, "overview": "A very rich and successful playboy amuses himself by stealing artwork, but may have met his match in a seductive detective.", "video": false, "id": 913, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Thomas Crown Affair", "tagline": "Crime does pay. Handsomely.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0155267", "adult": false, "backdrop_path": "/wnm7ySqYugSMhu4wTdMbkueqNHP.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Irish Dreamtime", "id": 597}], "release_date": "1999-08-06", "popularity": 1.11331075044105, "original_title": "The Thomas Crown Affair", "budget": 48000000, "cast": [{"name": "Pierce Brosnan", "character": "Thomas Crown", "id": 517, "credit_id": "52fe428cc3a36847f80273bd", "cast_id": 16, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Rene Russo", "character": "Catherine Banning", "id": 14343, "credit_id": "52fe428cc3a36847f80273c1", "cast_id": 17, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 1}, {"name": "Denis Leary", "character": "Michael McCann", "id": 5724, "credit_id": "52fe428cc3a36847f80273c5", "cast_id": 18, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Ben Gazzara", "character": "Andrew Wallace", "id": 856, "credit_id": "52fe428cc3a36847f80273c9", "cast_id": 19, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 3}, {"name": "Frankie Faison", "character": "Detective Paretti", "id": 13936, "credit_id": "52fe428cc3a36847f80273cd", "cast_id": 20, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 4}, {"name": "Fritz Weaver", "character": "John Reynolds", "id": 6839, "credit_id": "52fe428cc3a36847f80273d1", "cast_id": 21, "profile_path": "/bUEX09s2t9vMN3Z5IHchpfxpijU.jpg", "order": 5}, {"name": "Charles Keating", "character": "Friedrich Golchan", "id": 13937, "credit_id": "52fe428cc3a36847f80273d5", "cast_id": 22, "profile_path": "/c2vPVQidD2pf77iiTwgDcIGGQaP.jpg", "order": 6}, {"name": "Mark Margolis", "character": "Heinrich Knutzhorn", "id": 1173, "credit_id": "52fe428cc3a36847f80273d9", "cast_id": 23, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 7}, {"name": "Faye Dunaway", "character": "The Psychiatrist", "id": 6450, "credit_id": "52fe428cc3a36847f80273dd", "cast_id": 24, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 8}, {"name": "Michael Lombard", "character": "Bobby McKinley", "id": 13938, "credit_id": "52fe428cc3a36847f80273e1", "cast_id": 25, "profile_path": "/3VeGqcvQzJF9Xrl6eXOCoDosS28.jpg", "order": 9}, {"name": "Ritchie Coster", "character": "Janos", "id": 13939, "credit_id": "52fe428cc3a36847f80273e5", "cast_id": 26, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 10}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe428cc3a36847f8027365", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.6, "runtime": 113}, "914": {"poster_path": "/i9rN9JPbTHplRa9OLEwcymUAKvb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Chaplin plays two totally opposite roles in his first \"talkie,\" giving a superb display of his boundless talent for both inspired comedy and powerful drama. One of his masterfully drawn characters is a Jewish barber facing the constant threat of storm troopers and religious persecution. The other is the great dictator, Hynkel, a brilliant lampoon of Adolph Hitler that is awesome proof of Chaplin's pantomime genius. The movie's famous highlight comes in its final scene, when Chaplin steps out of character and addresses the camera with an eloquent plea for the triumph of reason and humanity over mindless militarism.", "video": false, "id": 914, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Great Dictator", "tagline": "Once again - the whole world laughs!", "vote_count": 199, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "eo", "name": ""}], "imdb_id": "tt0032553", "adult": false, "backdrop_path": "/qkpsvso2neEr7v6YnyMoZtm6R9F.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1940-10-15", "popularity": 1.14950119620054, "original_title": "The Great Dictator", "budget": 2000000, "cast": [{"name": "Charles Chaplin", "character": "Hynkel - Dictator of Tomania / A Jewish Barber", "id": 13848, "credit_id": "52fe428cc3a36847f802746f", "cast_id": 13, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Jack Oakie", "character": "Benzini Napaloni", "id": 14028, "credit_id": "52fe428cc3a36847f8027477", "cast_id": 16, "profile_path": "/rSo16WdKISZTAZwffjdQTBO26DU.jpg", "order": 1}, {"name": "Reginald Gardiner", "character": "Commander Schultz", "id": 14029, "credit_id": "52fe428cc3a36847f802747b", "cast_id": 17, "profile_path": "/vQAyaZ5vC7madXSfOST0KzhbA6V.jpg", "order": 2}, {"name": "Henry Daniell", "character": "Garbitsch", "id": 10924, "credit_id": "52fe428cc3a36847f802747f", "cast_id": 18, "profile_path": "/ciLKakcCO4oQhdHTgzSkSBiwoCj.jpg", "order": 3}, {"name": "Billy Gilbert", "character": "Field Marshal Herring", "id": 5464, "credit_id": "52fe428cc3a36847f8027483", "cast_id": 19, "profile_path": "/pITSLDLWwStge8KwizNn2VZdN9c.jpg", "order": 4}, {"name": "Paul Weigel", "character": "Mr. Agar", "id": 14035, "credit_id": "52fe428cc3a36847f8027497", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Paulette Goddard", "character": "Hannah", "id": 14027, "credit_id": "52fe428cc3a36847f8027473", "cast_id": 15, "profile_path": "/jxAbHtod2vVi2kUj0gp3sCzUYRe.jpg", "order": 7}, {"name": "Grace Hayle", "character": "Madame Napaloni", "id": 14030, "credit_id": "52fe428cc3a36847f8027487", "cast_id": 20, "profile_path": "/3eWM3xwJCDp9N7vPHDhmHyJEdr.jpg", "order": 7}, {"name": "Maurice Moscovitch", "character": "Mr. Jaeckel", "id": 14032, "credit_id": "52fe428cc3a36847f802748b", "cast_id": 22, "profile_path": "/3VQTkMxXBkokwfXjopZZ2cCVgng.jpg", "order": 9}, {"name": "Emma Dunn", "character": "Mrs. Jaeckel", "id": 14033, "credit_id": "52fe428cc3a36847f802748f", "cast_id": 23, "profile_path": "/7B8QY17B600Er0DoGExWylHwOIL.jpg", "order": 10}, {"name": "Bernard Gorcey", "character": "Mr. Mann", "id": 14034, "credit_id": "52fe428cc3a36847f8027493", "cast_id": 24, "profile_path": "/henaZBBlUuxie4h871P9IVv1lY1.jpg", "order": 11}, {"name": "Carter DeHaven", "character": "Spook", "id": 14019, "credit_id": "52fe428cc3a36847f802749b", "cast_id": 26, "profile_path": "/89XdqJFwpfMr0IpPuyjwQGlqPFR.jpg", "order": 12}, {"name": "Eddie Gribbon", "character": "Tomanian Storm Trooper", "id": 141586, "credit_id": "52fe428cc3a36847f802749f", "cast_id": 27, "profile_path": "/xYwn3UIHuH8peGuTI5lzTNt5sOm.jpg", "order": 13}, {"name": "Rudolph Anders", "character": "Tomanian Commandant at Osterlich / Robert O. Davis", "id": 131045, "credit_id": "52fe428cc3a36847f80274a3", "cast_id": 28, "profile_path": "/y0ZxIY3A2fqg1U4FH8zDtFmvIMf.jpg", "order": 14}, {"name": "Nita Pike", "character": "Secretary", "id": 141587, "credit_id": "52fe428cc3a36847f80274a7", "cast_id": 29, "profile_path": "/6hMBNEOeKnyPH6zP27o7hNgt7Un.jpg", "order": 15}, {"name": "George Lynn", "character": "Commander of Storm Troopers (as Peter Lynn", "id": 31263, "credit_id": "52fe428cc3a36847f80274ab", "cast_id": 30, "profile_path": "/hDMeMn4yHw0TAGR02XIHGkjCuIC.jpg", "order": 16}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe428cc3a36847f8027429", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.8, "runtime": 125}, "11075": {"poster_path": "/mrK8hwRqaR1lveGoIcBICBqdmTG.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Seven years after the death of his wife, company executive Aoyama is invited to sit in on auditions for an actress. Leafing through the resum\u00e9s in advance, his eye is caught by Yamazaki Asami, a striking young woman with ballet training.", "video": false, "id": 11075, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Audition", "tagline": "She always gets a part", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0235198", "adult": false, "backdrop_path": "/erYnALHXFCzDwIDFthyOoGiLfsg.jpg", "production_companies": [{"name": "Basara Pictures", "id": 17337}, {"name": "Creators Company Connection", "id": 17338}, {"name": "Omega Project", "id": 1195}], "release_date": "1999-10-06", "popularity": 0.507789648003467, "original_title": "\u00d4dishon", "budget": 0, "cast": [{"name": "Ryo Ishibashi", "character": "Shigeharu Aoyama", "id": 4994, "credit_id": "52fe43f29251416c75023d6f", "cast_id": 1, "profile_path": "/aPyICNQIlt0kUlIbXSQ21bK2mo2.jpg", "order": 0}, {"name": "Eihi Shiina", "character": "Asami Yamazaki", "id": 57455, "credit_id": "52fe43f29251416c75023d73", "cast_id": 2, "profile_path": "/tL5Ynx96zJH4WGBSbeKSEs3VJiD.jpg", "order": 1}, {"name": "Jun Kunimura", "character": "Yasuhisa Yoshikawa", "id": 2541, "credit_id": "52fe43f29251416c75023d7b", "cast_id": 4, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 2}, {"name": "Tetsu Sawaki", "character": "Shigehiko Aoyama", "id": 68111, "credit_id": "52fe43f29251416c75023d77", "cast_id": 3, "profile_path": "/rLZDim09AVPm4hSUGCT4rghHRni.jpg", "order": 3}, {"name": "Renji Ishibashi", "character": "Old man in wheelchair", "id": 63706, "credit_id": "52fe43f29251416c75023da3", "cast_id": 12, "profile_path": "/tlUN7bFXEJfRwQUhYsVCXV6hY8V.jpg", "order": 4}, {"name": "Miyuki Matsuda", "character": "Ryoko Aoyama", "id": 1171071, "credit_id": "52fe43f29251416c75023da7", "cast_id": 13, "profile_path": "/inU6MHJbvJQ7ZeHvlkmFERAvGRt.jpg", "order": 5}, {"name": "Toshie Negishi", "character": "Rie", "id": 72606, "credit_id": "52fe43f29251416c75023dab", "cast_id": 14, "profile_path": "/3Lix7k6g5dpMjGoaigbNar64wNG.jpg", "order": 6}, {"name": "Shigeru Saiki", "character": "Toastmaster", "id": 1089922, "credit_id": "52fe43f29251416c75023daf", "cast_id": 16, "profile_path": "/a7rGyP2UD0coLh8e77K1mSSD3vt.jpg", "order": 7}, {"name": "Ken Mitsuishi", "character": "Director", "id": 120351, "credit_id": "52fe43f29251416c75023db3", "cast_id": 17, "profile_path": "/qdUdKjaT2Ho20JoB5ChnfnReN8z.jpg", "order": 8}, {"name": "Yuriko Hiro'oka", "character": "Michiyo Yanagida", "id": 551590, "credit_id": "52fe43f29251416c75023db7", "cast_id": 18, "profile_path": "/zWNwenNgNz95UDnCorHu4QyssK5.jpg", "order": 9}, {"name": "Ren Osugi", "character": "Shimada", "id": 137029, "credit_id": "52fe43f29251416c75023dbb", "cast_id": 20, "profile_path": "/cQ8Q7RB5onATWkbZioR2obrom2l.jpg", "order": 10}, {"name": "Kanji Tsuda", "character": "Bartender", "id": 13256, "credit_id": "54b7013b9251411d77000807", "cast_id": 25, "profile_path": "/5SF6Pb7axi78uknOGWB0eF4Beam.jpg", "order": 11}, {"name": "Fumiyo Kohinata", "character": "", "id": 58449, "credit_id": "54b7015e9251411d7700080c", "cast_id": 26, "profile_path": "/teFV6aTKiwatagFYvr5RAk7xB90.jpg", "order": 12}, {"name": "Tomomi Maruyama", "character": "", "id": 1059930, "credit_id": "54b701769251411d64000839", "cast_id": 27, "profile_path": null, "order": 13}], "directors": [{"name": "Takashi Miike", "department": "Directing", "job": "Director", "credit_id": "52fe43f29251416c75023d81", "profile_path": "/hFpUsxCjrZNiyHAGsIPWlZl2uTI.jpg", "id": 17282}], "vote_average": 6.9, "runtime": 115}, "916": {"poster_path": "/mOelcQTDAlOTLMsXGgK74ksoS3H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42300873, "overview": "Bullitt is an American action thriller from director Peter Yates from 1968. Steven Mcqueen plays the leading role as a mafia-chasing police officer who must protect a valuable witness. The film\u2019s ten minute high speed pursuit is legendary.", "video": false, "id": 916, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Bullitt", "tagline": "There are bad cops, good cops - and then there's Bullitt.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0062765", "adult": false, "backdrop_path": "/h7wpg5eYpSAWTB7K3GEccNWjTEm.jpg", "production_companies": [{"name": "Solar Productions", "id": 599}, {"name": "Warner Brothers/Seven Arts", "id": 4051}], "release_date": "1968-10-17", "popularity": 0.333132803327995, "original_title": "Bullitt", "budget": 0, "cast": [{"name": "Steve McQueen", "character": "Lt. Frank Bullit", "id": 13565, "credit_id": "52fe428cc3a36847f8027555", "cast_id": 18, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 0}, {"name": "Jacqueline Bisset", "character": "Cathy", "id": 14061, "credit_id": "52fe428cc3a36847f802755d", "cast_id": 20, "profile_path": "/9z1cG9fLoj0hEcYjrpb0rrNQaVh.jpg", "order": 1}, {"name": "Robert Vaughn", "character": "Walter Chalmers", "id": 14060, "credit_id": "52fe428cc3a36847f8027559", "cast_id": 19, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 2}, {"name": "Don Gordon", "character": "Delgetti", "id": 14062, "credit_id": "52fe428cc3a36847f8027561", "cast_id": 21, "profile_path": "/oSX1fJ1PY7RzOelwratXJX7kVTQ.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Weissberg", "id": 3087, "credit_id": "52fe428cc3a36847f8027565", "cast_id": 22, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Simon Oakland", "character": "Captain Sam Bennett", "id": 14063, "credit_id": "52fe428cc3a36847f8027569", "cast_id": 23, "profile_path": "/frbQBmieMRcdAKupAIbJ0FsHuD2.jpg", "order": 5}, {"name": "Norman Fell", "character": "Captain Baker", "id": 14064, "credit_id": "52fe428cc3a36847f802756d", "cast_id": 24, "profile_path": "/dRXygz30GtDPswkF59iJUSJCBT7.jpg", "order": 6}, {"name": "Georg Stanford Brown", "character": "Dr. Willard", "id": 14065, "credit_id": "52fe428cc3a36847f8027571", "cast_id": 25, "profile_path": "/vvPXgJ1BzPJiSuSuBe3dlJcxErN.jpg", "order": 7}, {"name": "Justin Tarr", "character": "Eddy", "id": 14066, "credit_id": "52fe428cc3a36847f8027575", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Carl Reindel", "character": "Detective Stanton", "id": 14067, "credit_id": "52fe428cc3a36847f8027579", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Felice Orlandi", "character": "Albert E. Renick", "id": 14068, "credit_id": "52fe428cc3a36847f802757d", "cast_id": 28, "profile_path": "/uh1gUkBeBUK4ch002jylSf4HuJl.jpg", "order": 10}, {"name": "Vic Tayback", "character": "Pete Ross", "id": 14069, "credit_id": "52fe428cc3a36847f8027581", "cast_id": 29, "profile_path": "/rddNsgbWGeYckB9IB0i2s8uQdv5.jpg", "order": 11}], "directors": [{"name": "Peter Yates", "department": "Directing", "job": "Director", "credit_id": "52fe428cc3a36847f80274f7", "profile_path": "/atHt3wMKu4em65WIBdKOrF8QGlS.jpg", "id": 12804}], "vote_average": 6.8, "runtime": 113}, "920": {"poster_path": "/xi7KxnMSQzlqyCyCrXFJUJFdtxm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 461983149, "overview": "Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.", "video": false, "id": 920, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cars", "tagline": "Ahhh... it's got that new movie smell.", "vote_count": 1502, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/cars/", "belongs_to_collection": {"backdrop_path": "/A8DqaTGwZ8iCEjWMNRsZumzfKLw.jpg", "poster_path": "/uq3N2SFj1Y06zA6LzCQPkmBdaaE.jpg", "id": 87118, "name": "Cars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt0317219", "adult": false, "backdrop_path": "/a1MlbLBk5Sy6YvMbSuKfwGlDVlb.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-06-08", "popularity": 2.15883476243504, "original_title": "Cars", "budget": 120000000, "cast": [{"name": "Owen Wilson", "character": "Lightning McQueen (voice)", "id": 887, "credit_id": "52fe428dc3a36847f80277e9", "cast_id": 13, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Paul Newman", "character": "Doc Hudson (voice)", "id": 3636, "credit_id": "52fe428dc3a36847f80277ed", "cast_id": 14, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 1}, {"name": "Bonnie Hunt", "character": "Sally Carrera (voice)", "id": 5149, "credit_id": "52fe428dc3a36847f80277f1", "cast_id": 15, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 2}, {"name": "Larry the Cable Guy", "character": "Mater (voice)", "id": 15897, "credit_id": "52fe428dc3a36847f80277f5", "cast_id": 16, "profile_path": "/9yGwJBveIvLidqJEQI4PRuKQhMr.jpg", "order": 3}, {"name": "Cheech Marin", "character": "Ramone (voice)", "id": 11159, "credit_id": "52fe428dc3a36847f80277f9", "cast_id": 17, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 4}, {"name": "Tony Shalhoub", "character": "Luigi (voice)", "id": 4252, "credit_id": "52fe428dc3a36847f80277fd", "cast_id": 18, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 5}, {"name": "Guido Quaroni", "character": "Guido (voice)", "id": 15898, "credit_id": "52fe428dc3a36847f8027801", "cast_id": 19, "profile_path": "/qfnm3XzrMljLhU3HoNfYk0YGoBw.jpg", "order": 6}, {"name": "Jenifer Lewis", "character": "Flo (voice)", "id": 15899, "credit_id": "52fe428dc3a36847f8027805", "cast_id": 20, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 7}, {"name": "Paul Dooley", "character": "Sarge (voice)", "id": 15900, "credit_id": "52fe428dc3a36847f8027809", "cast_id": 21, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 8}, {"name": "Michael Wallis", "character": "Sheriff (voice)", "id": 15902, "credit_id": "52fe428dc3a36847f802780d", "cast_id": 22, "profile_path": "/4LuttJxXdNZgSDPeY0IOaczfajj.jpg", "order": 9}, {"name": "George Carlin", "character": "Fillmore (voice)", "id": 15903, "credit_id": "52fe428dc3a36847f8027811", "cast_id": 23, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 10}, {"name": "Katherine Helmond", "character": "Lizzie (voice)", "id": 381, "credit_id": "52fe428dc3a36847f8027815", "cast_id": 24, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 11}, {"name": "John Ratzenberger", "character": "Mack / Hamm Truck / Abominable Snow Plow (voice)", "id": 7907, "credit_id": "52fe428dc3a36847f8027819", "cast_id": 25, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 12}, {"name": "Michael Keaton", "character": "Chick Hicks (voice)", "id": 2232, "credit_id": "52fe428dc3a36847f8027823", "cast_id": 29, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 13}, {"name": "Joe Ranft", "character": "Red / Jerry Recycled Batteries / Peterbilt (voice)", "id": 7911, "credit_id": "550b9e4e9251414691002a57", "cast_id": 40, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 14}, {"name": "Richard Petty", "character": "The King (voice)", "id": 1229705, "credit_id": "550b9ff99251414695002bbe", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Jeremy Clarkson", "character": "Harv (voice)", "id": 81113, "credit_id": "550ba03b9251413443000882", "cast_id": 42, "profile_path": "/ooqOfHp6G44n2GIduhA43BKfXbb.jpg", "order": 16}, {"name": "Jeremy Piven", "character": "Harv (voice)", "id": 12799, "credit_id": "550ba07a9251414695002bcb", "cast_id": 43, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 17}, {"name": "Bob Costas", "character": "Bob Cutlass (voice)", "id": 160042, "credit_id": "550ba0d492514146a0002a08", "cast_id": 44, "profile_path": "/fJ6N8FzKQ0bd57rNJSJCSvrRFO8.jpg", "order": 18}, {"name": "Darrell Waltrip", "character": "Darrell Cartrip (voice)", "id": 942993, "credit_id": "550ba1039251414699002a6e", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Richard Kind", "character": "Van (voice)", "id": 21125, "credit_id": "550ba142c3a3687c1100085b", "cast_id": 46, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 20}, {"name": "Edie McClurg", "character": "Minny (voice)", "id": 3202, "credit_id": "550ba17892514133c3000946", "cast_id": 47, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 21}, {"name": "Humpy Wheeler", "character": "Tex (voice)", "id": 1442427, "credit_id": "550ba1b7c3a368487d002de6", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "Tom Magliozzi", "character": "Rusty Rust-eze (voice)", "id": 933947, "credit_id": "550ba2269251414695002c08", "cast_id": 49, "profile_path": "/xRi01zAHlwvZp80EGhQoU5QPDak.jpg", "order": 23}, {"name": "Ray Magliozzi", "character": "Dusty Rust-eze (voice)", "id": 933948, "credit_id": "550ba25bc3a3684872002e4f", "cast_id": 50, "profile_path": "/6uKmbD5iXSyn1oVRljHouW1Qt3x.jpg", "order": 24}, {"name": "Lynda Petty", "character": "Mrs. The King (voice)", "id": 1442428, "credit_id": "550ba27a92514146a0002a3a", "cast_id": 51, "profile_path": null, "order": 25}, {"name": "Andrew Stanton", "character": "Fred (voice)", "id": 7, "credit_id": "550ba2b4c3a3687c11000889", "cast_id": 52, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 26}, {"name": "Dale Earnhardt Jr.", "character": "Junior (voice)", "id": 932721, "credit_id": "550ba3ab92514146a0002a57", "cast_id": 53, "profile_path": null, "order": 27}, {"name": "Michael Schumacher", "character": "Michael Schumacher Ferrari (voice)", "id": 216299, "credit_id": "550ba3efc3a3684883002dfa", "cast_id": 54, "profile_path": "/x3tFUWZiUNh5TdIzQ0nWfBeGJvB.jpg", "order": 28}, {"name": "Jay Leno", "character": "Jay Limo (voice)", "id": 14991, "credit_id": "550ba4dfc3a3684874002f93", "cast_id": 55, "profile_path": "/5sh6KGewnyzNBrvXMsLVKJPVptx.jpg", "order": 29}, {"name": "Mario Andretti", "character": "Mario Andretti (voice)", "id": 1293265, "credit_id": "550d9e4b9251414699005bad", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Sarah Clark", "character": "Kori Turbowitz (voice)", "id": 1443286, "credit_id": "550d9e97c3a3684877005d16", "cast_id": 57, "profile_path": null, "order": 31}, {"name": "Mike Nelson", "character": "Not Chuck (voice) (as Mike 'No Name' Nelson)", "id": 1443287, "credit_id": "550d9ed592514134430039d6", "cast_id": 58, "profile_path": null, "order": 32}, {"name": "Jonas Rivera", "character": "Boost (voice)", "id": 7940, "credit_id": "550d9f20c3a3684886006146", "cast_id": 59, "profile_path": null, "order": 33}, {"name": "Lou Romano", "character": "Snotrod (voice)", "id": 7962, "credit_id": "550d9f53c3a3681db20054cf", "cast_id": 60, "profile_path": "/q5BXFPkFZA7RJh9Oj15WRQawMfk.jpg", "order": 34}, {"name": "Adrian Ochoa", "character": "Wingo (voice)", "id": 1443295, "credit_id": "550d9f6fc3a3684877005d2c", "cast_id": 61, "profile_path": null, "order": 35}, {"name": "E.J. Holowicki", "character": "DJ (voice)", "id": 8078, "credit_id": "550d9fb79251414691005d0a", "cast_id": 62, "profile_path": null, "order": 36}, {"name": "Elissa Knight", "character": "Tia (voice)", "id": 72754, "credit_id": "550d9ffdc3a36848720064ec", "cast_id": 63, "profile_path": "/21JKhZc6bTAoHcwSjQhZcdhhx5d.jpg", "order": 37}, {"name": "Lindsey Collins", "character": "Mia (voice)", "id": 72753, "credit_id": "550da027c3a3684874006806", "cast_id": 64, "profile_path": null, "order": 38}, {"name": "Larry Benton", "character": "Motorhome Race Fan (voice)", "id": 1443308, "credit_id": "550da0439251414699005bda", "cast_id": 65, "profile_path": null, "order": 39}, {"name": "Douglas Keever", "character": "Albert Hinkey (voice) (as Douglas 'Mater' Keener)", "id": 1443310, "credit_id": "550da0669251414699005be2", "cast_id": 66, "profile_path": null, "order": 40}, {"name": "Tom Hanks", "character": "Woody Car (voice)", "id": 31, "credit_id": "550da08dc3a368487d006282", "cast_id": 67, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 41}, {"name": "Tim Allen", "character": "Buzz Lightyear Car (voice)", "id": 12898, "credit_id": "550da0af9251414695005f49", "cast_id": 68, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 42}, {"name": "Billy Crystal", "character": "Mike Car (voice)", "id": 7904, "credit_id": "550da0dec3a3681db20054eb", "cast_id": 69, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 43}, {"name": "John Goodman", "character": "Sullivan Truck (voice)", "id": 1230, "credit_id": "550da12292514146a0005c3a", "cast_id": 70, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 44}, {"name": "Dave Foley", "character": "Flik Car (voice)", "id": 21290, "credit_id": "550da155c3a368487d00629a", "cast_id": 71, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 45}, {"name": "Jack Angel", "character": "(voice)", "id": 19545, "credit_id": "550da21b9251414699005c12", "cast_id": 72, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 46}, {"name": "Michael Bell", "character": "(voice)", "id": 19546, "credit_id": "550da264c3a3684872006534", "cast_id": 73, "profile_path": "/izjtUFQ3zJsInc0TSIhrVmUpSd7.jpg", "order": 47}, {"name": "Bob Bergen", "character": "(voice)", "id": 78317, "credit_id": "550da2b0c3a3681db2005515", "cast_id": 74, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 48}, {"name": "Susan Blu", "character": "(voice)", "id": 19548, "credit_id": "550da353c3a3685be5001c6e", "cast_id": 75, "profile_path": null, "order": 49}, {"name": "Andrea Boerries", "character": "(voice)", "id": 1443329, "credit_id": "550da36ec3a3685be5001c73", "cast_id": 76, "profile_path": null, "order": 50}, {"name": "Marco Boerries", "character": "(voice)", "id": 1443330, "credit_id": "550da386c3a36848860061b8", "cast_id": 77, "profile_path": null, "order": 51}, {"name": "Rodger Bumpass", "character": "Wide Chick Pitty (voice)", "id": 70615, "credit_id": "550da3b89251414695005f99", "cast_id": 78, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 52}, {"name": "Torbin Xan Bullock", "character": "(voice)", "id": 8065, "credit_id": "550da3e5c3a3684877005d93", "cast_id": 79, "profile_path": null, "order": 53}, {"name": "Richard Cawood", "character": "(voice)", "id": 1443340, "credit_id": "550da402c3a368488300604f", "cast_id": 80, "profile_path": null, "order": 54}, {"name": "Scott Clark", "character": "(voice)", "id": 8011, "credit_id": "550da45892514133c3003d9d", "cast_id": 81, "profile_path": null, "order": 55}, {"name": "Kathy Coates", "character": "(voice)", "id": 1443353, "credit_id": "550da475c3a368487400687d", "cast_id": 82, "profile_path": null, "order": 56}, {"name": "John Cygan", "character": "(voice)", "id": 167295, "credit_id": "550da49d92514133c3003da7", "cast_id": 83, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 57}, {"name": "Jennifer Darling", "character": "(voice)", "id": 81843, "credit_id": "550da4d89251414695005fbd", "cast_id": 84, "profile_path": "/yOOVSrq6pK495FB8kZR5zGOTx8x.jpg", "order": 58}, {"name": "Paul Eiding", "character": "(voice)", "id": 86006, "credit_id": "550da55b92514146a0005cb8", "cast_id": 85, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 59}, {"name": "Bill Farmer", "character": "(voice)", "id": 84213, "credit_id": "550da5d0c3a368487d006319", "cast_id": 86, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 60}, {"name": "Brian Fee", "character": "(voice)", "id": 1443386, "credit_id": "550da684c3a36848720065ab", "cast_id": 87, "profile_path": null, "order": 61}, {"name": "Teresa Ganzel", "character": "(voice)", "id": 117081, "credit_id": "550da8a7c3a368487d006369", "cast_id": 88, "profile_path": "/4cIwealxv1bizPJks34Gfk7okBF.jpg", "order": 62}, {"name": "Craig Good", "character": "(voice)", "id": 1122227, "credit_id": "550da8d9c3a368487d006379", "cast_id": 89, "profile_path": "/xqm0wzTaReXJKtRKaVQg7cwUV14.jpg", "order": 63}, {"name": "Jess Harnell", "character": "Sven 'The Governator' (voice)", "id": 84495, "credit_id": "550dbf7c92514146a00061c6", "cast_id": 90, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 64}, {"name": "Artie Kempner", "character": "(voice)", "id": 1034562, "credit_id": "550dc0f69251414695006636", "cast_id": 91, "profile_path": null, "order": 65}, {"name": "Hooman Khalili", "character": "(voice)", "id": 1205129, "credit_id": "550dc12c925141762400060c", "cast_id": 92, "profile_path": null, "order": 66}, {"name": "Sonoko Konishi", "character": "Chuki (voice)", "id": 1443471, "credit_id": "550dc14fc3a3684872006a7d", "cast_id": 93, "profile_path": null, "order": 67}, {"name": "Erik Langley", "character": "(voice)", "id": 1443472, "credit_id": "550dc170c3a3684883006575", "cast_id": 94, "profile_path": null, "order": 68}, {"name": "Sherry Lynn", "character": "(voice)", "id": 214701, "credit_id": "550dc1b1925141344300400e", "cast_id": 95, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 69}, {"name": "Danny Mann", "character": "(voice)", "id": 52699, "credit_id": "550dc1ecc3a36848860067df", "cast_id": 96, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 70}, {"name": "Mickie McGowan", "character": "(voice) (as Mickie T. McGowan)", "id": 84493, "credit_id": "550dc23192514146990061b5", "cast_id": 97, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 71}, {"name": "Laraine Newman", "character": "(voice)", "id": 35159, "credit_id": "550dc27b9251417624000686", "cast_id": 98, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 72}, {"name": "Teddy Newton", "character": "(voice)", "id": 59357, "credit_id": "550dc2c392514146a000632f", "cast_id": 99, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 73}, {"name": "Colleen O'Shaughnessey", "character": "(voice)", "id": 1212864, "credit_id": "550dc322c3a3684877006386", "cast_id": 100, "profile_path": null, "order": 74}, {"name": "Bob Peterson", "character": "(voice)", "id": 10, "credit_id": "550dc4239251414695006739", "cast_id": 101, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 75}, {"name": "Steve Purcell", "character": "(voice)", "id": 137262, "credit_id": "550dc46e9251417624000722", "cast_id": 102, "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "order": 76}, {"name": "Jan Rabson", "character": "(voice)", "id": 157626, "credit_id": "550dc4aac3a3684874006fe8", "cast_id": 103, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 77}, {"name": "A.J. Riebli III", "character": "(voice)", "id": 1443479, "credit_id": "550dc6a5c3a36848770064d0", "cast_id": 104, "profile_path": null, "order": 78}, {"name": "Dan Scanlon", "character": "(voice)", "id": 225976, "credit_id": "550dc6f3c3a3685be5002360", "cast_id": 105, "profile_path": null, "order": 79}, {"name": "Stephen Schaffer", "character": "(voice)", "id": 59363, "credit_id": "550dc732c3a368487d0069d6", "cast_id": 106, "profile_path": null, "order": 80}, {"name": "Ken Schretzmann", "character": "(voice)", "id": 8063, "credit_id": "550dc76992514133c3004556", "cast_id": 107, "profile_path": null, "order": 81}, {"name": "Bob Scott", "character": "(voice)", "id": 954958, "credit_id": "550dc7a2c3a3685be500239f", "cast_id": 108, "profile_path": null, "order": 82}, {"name": "Matt Staudt", "character": "(voice)", "id": 1443483, "credit_id": "550dc7cf9251413554004257", "cast_id": 109, "profile_path": null, "order": 83}, {"name": "Jay Ward", "character": "(voice)", "id": 7971, "credit_id": "550dc8089251417624000872", "cast_id": 110, "profile_path": null, "order": 84}, {"name": "Jim Ward", "character": "(voice)", "id": 86007, "credit_id": "550dc85ec3a3685be50023ee", "cast_id": 111, "profile_path": null, "order": 85}, {"name": "Colette Whitaker", "character": "(voice)", "id": 1443485, "credit_id": "550dc88292514146a000650f", "cast_id": 112, "profile_path": null, "order": 86}, {"name": "Sheryl Crow", "character": "Elvis (voice) (uncredited)", "id": 10750, "credit_id": "550dc90192514135540042dd", "cast_id": 113, "profile_path": "/eV0dxZ6IXMNFQNgTa8hkqYMcrhx.jpg", "order": 87}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f80277a3", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}, {"name": "Joe Ranft", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f8027829", "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "id": 7911}], "vote_average": 6.3, "runtime": 117}, "921": {"poster_path": "/xZhumK43Z6jmwCWglh7uHcpkqdb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108539911, "overview": "Cinderella Man is the story of a boxer in the 1920\u2019s who after his retirement has a surprise comeback in order to get him and his family out of a socially poor state. The film is based on the true story of boxer Jim Braddock who was more famously known as Cinderella Man.", "video": false, "id": 921, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Cinderella Man", "tagline": "One man's extraordinary fight to save the family he loved.", "vote_count": 216, "homepage": "http://www.cinderellamanmovie.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0352248", "adult": false, "backdrop_path": "/ozvvHdadtBYpExCwAjsNPSjV6hT.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Miramax Films", "id": 14}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}, {"name": "Parkway Pictures (I)", "id": 631}], "release_date": "2005-06-02", "popularity": 0.487410115237078, "original_title": "Cinderella Man", "budget": 88000000, "cast": [{"name": "Russell Crowe", "character": "Jim Braddock", "id": 934, "credit_id": "52fe428dc3a36847f80278b7", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Mae Braddock", "id": 9137, "credit_id": "52fe428dc3a36847f80278bb", "cast_id": 2, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Joe Gould", "id": 13242, "credit_id": "52fe428dc3a36847f80278bf", "cast_id": 3, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Craig Bierko", "character": "Max Baer", "id": 14886, "credit_id": "52fe428dc3a36847f80278c3", "cast_id": 4, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Mike Wilson", "id": 14887, "credit_id": "52fe428dc3a36847f80278c7", "cast_id": 5, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Jimmy Johnston", "id": 14888, "credit_id": "52fe428dc3a36847f80278cb", "cast_id": 6, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "David Huband", "character": "Ford Bond", "id": 5922, "credit_id": "52fe428dc3a36847f80278cf", "cast_id": 7, "profile_path": "/o8wwJkxTtoyVggtkKVg07DhhBfd.jpg", "order": 6}, {"name": "Connor Price", "character": "Jay Braddock", "id": 14889, "credit_id": "52fe428dc3a36847f80278d3", "cast_id": 8, "profile_path": "/5wv3PDrlK7vBnEVEAY4i7X162jz.jpg", "order": 7}, {"name": "Ariel Waller", "character": "Rosemarie Braddock", "id": 14890, "credit_id": "52fe428dc3a36847f80278d7", "cast_id": 9, "profile_path": "/hufUznUGgqslVxjHQCj7ZLDjfs9.jpg", "order": 8}, {"name": "Patrick Louis", "character": "Howard Braddock", "id": 14891, "credit_id": "52fe428dc3a36847f80278db", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Rosemarie DeWitt", "character": "Sara Wilson", "id": 14892, "credit_id": "52fe428dc3a36847f80278df", "cast_id": 11, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 10}, {"name": "Linda Kash", "character": "Lucille Gould", "id": 14893, "credit_id": "52fe428dc3a36847f80278e3", "cast_id": 12, "profile_path": "/8rhFeK1ZUPvBxXpeuXCESQCzR4f.jpg", "order": 11}, {"name": "Nicholas Campbell", "character": "Sporty Lewis", "id": 14902, "credit_id": "52fe428dc3a36847f80278e7", "cast_id": 13, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 12}, {"name": "Gene Pyrz", "character": "Jake", "id": 14903, "credit_id": "52fe428dc3a36847f80278eb", "cast_id": 14, "profile_path": "/ydANqjUBcAKXTT3QCtdrihxXCRi.jpg", "order": 13}, {"name": "Chuck Shamata", "character": "Father Rorick", "id": 14905, "credit_id": "52fe428dc3a36847f80278ef", "cast_id": 15, "profile_path": "/Am0oJeJNzgEMvalgFkXe9m36rzx.jpg", "order": 14}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f80278f5", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 7.0, "runtime": 144}, "922": {"poster_path": "/vGobIvxSiFvAmwqH8BlC3SpET0C.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On the run after murdering a man, accountant William Blake encounters a strange North American man named Nobody who prepares him for his journey into the spiritual world.", "video": false, "id": 922, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 37, "name": "Western"}], "title": "Dead Man", "tagline": "No one can survive becoming a legend.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112817", "adult": false, "backdrop_path": "/6LXIgIjtt8UCCwYThiMG26JHSpn.jpg", "production_companies": [{"name": "JVC Entertainment", "id": 182}, {"name": "Pandora Filmproduktion", "id": 254}, {"name": "Newmarket Capital Group", "id": 506}, {"name": "12 Gauge Productions", "id": 663}], "release_date": "1995-05-26", "popularity": 0.830281966508047, "original_title": "Dead Man", "budget": 9000000, "cast": [{"name": "Johnny Depp", "character": "William Blake", "id": 85, "credit_id": "52fe428dc3a36847f8027a59", "cast_id": 22, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Gary Farmer", "character": "Nobody", "id": 15439, "credit_id": "52fe428dc3a36847f8027a5d", "cast_id": 23, "profile_path": "/iiIgfaFmsL1zqXozZtAqygXpYvy.jpg", "order": 1}, {"name": "Crispin Glover", "character": "Train Fireman", "id": 1064, "credit_id": "52fe428dc3a36847f8027a61", "cast_id": 24, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 2}, {"name": "Lance Henriksen", "character": "Cole Wilson", "id": 2714, "credit_id": "52fe428dc3a36847f8027a65", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 3}, {"name": "Michael Wincott", "character": "Conway Twill", "id": 7486, "credit_id": "52fe428dc3a36847f8027a69", "cast_id": 26, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 4}, {"name": "Michael Wincott", "character": "Conway Twill", "id": 7486, "credit_id": "52fe428dc3a36847f8027a6d", "cast_id": 27, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 5}, {"name": "Eugene Byrd", "character": "Johnny 'The Kid' Pickett", "id": 342, "credit_id": "52fe428dc3a36847f8027a71", "cast_id": 28, "profile_path": "/ab4zEcqdBSjpaz4CPQ2Z6q4rLmO.jpg", "order": 6}, {"name": "John Hurt", "character": "John Scholfield", "id": 5049, "credit_id": "52fe428dc3a36847f8027a75", "cast_id": 29, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 7}, {"name": "Robert Mitchum", "character": "John Dickinson", "id": 10158, "credit_id": "52fe428dc3a36847f8027a79", "cast_id": 30, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 8}, {"name": "Iggy Pop", "character": "Salvatore 'Sally' Jenko", "id": 13604, "credit_id": "52fe428dc3a36847f8027a7d", "cast_id": 31, "profile_path": "/orkeTSZYiHVKqeTntsD6e6VHuqc.jpg", "order": 9}, {"name": "Gabriel Byrne", "character": "Charlie Dickinson", "id": 5168, "credit_id": "52fe428dc3a36847f8027a81", "cast_id": 32, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 10}, {"name": "Jared Harris", "character": "Benmont Tench", "id": 15440, "credit_id": "52fe428dc3a36847f8027a85", "cast_id": 33, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 11}, {"name": "Mili Avital", "character": "Thel Russell", "id": 15441, "credit_id": "52fe428dc3a36847f8027a89", "cast_id": 34, "profile_path": "/molppCadjV0Cy6YRmYmobGv3VyP.jpg", "order": 12}, {"name": "Jimmie Ray Weeks", "character": "Marvin, Older Marshal", "id": 15442, "credit_id": "52fe428dc3a36847f8027a8d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Mark Bringelson", "character": "Lee, Younger Marshal", "id": 15443, "credit_id": "52fe428dc3a36847f8027a91", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "John North", "character": "Mr. Olafsen", "id": 15444, "credit_id": "52fe428dc3a36847f8027a95", "cast_id": 37, "profile_path": "/wzk50PWRRc1u7cc23yVaho0wUpp.jpg", "order": 15}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f80279dd", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 7.3, "runtime": 121}, "923": {"poster_path": "/8D6WEfNZr6JadQrqJr5OOq1QlV0.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55000000, "overview": "During an ever-growing epidemic of zombies that have risen from the dead, two Philadelphia SWAT team members, a traffic reporter, and his television-executive girlfriend seek refuge in a secluded shopping mall.", "video": false, "id": 923, "genres": [{"id": 27, "name": "Horror"}], "title": "Dawn of the Dead", "tagline": "When there's no more room in hell, the dead will walk the earth.", "vote_count": 157, "homepage": "", "belongs_to_collection": {"backdrop_path": "/inPPfnJ9Wzc9rg1MpkPm0P3D9rJ.jpg", "poster_path": "/mSJ20RTWWgtt3aTyn1iwNZ9fbYl.jpg", "id": 261590, "name": "Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077402", "adult": false, "backdrop_path": "/vCD9mRgSY4HuoSowm8JO4tm2mhj.jpg", "production_companies": [{"name": "Laurel Group", "id": 638}, {"name": "Nippon Herald Films", "id": 1598}], "release_date": "1978-09-02", "popularity": 0.878420626836907, "original_title": "Dawn of the Dead", "budget": 500000, "cast": [{"name": "David Emge", "character": "Stephen", "id": 15069, "credit_id": "52fe428dc3a36847f8027b7d", "cast_id": 27, "profile_path": "/nvgIp1mkMQurbUUlgF3wDhOurVJ.jpg", "order": 0}, {"name": "Ken Foree", "character": "Peter", "id": 15070, "credit_id": "52fe428dc3a36847f8027b81", "cast_id": 28, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 1}, {"name": "Scott H. Reiniger", "character": "Roger", "id": 15071, "credit_id": "52fe428dc3a36847f8027b85", "cast_id": 29, "profile_path": "/zX3UySm5yhFR0KyF1nzydcrKM60.jpg", "order": 2}, {"name": "Gaylen Ross", "character": "Francine", "id": 15072, "credit_id": "52fe428dc3a36847f8027b89", "cast_id": 30, "profile_path": "/afGvRColYStNZ7jM9ArIdpMCrpP.jpg", "order": 3}, {"name": "David Crawford", "character": "Dr. Foster", "id": 15073, "credit_id": "52fe428dc3a36847f8027b8d", "cast_id": 31, "profile_path": null, "order": 4}, {"name": "David Early", "character": "Mr. Berman", "id": 15074, "credit_id": "52fe428dc3a36847f8027b91", "cast_id": 32, "profile_path": null, "order": 5}, {"name": "Richard France", "character": "Dr. Milliard Rausch", "id": 15075, "credit_id": "52fe428dc3a36847f8027b95", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "Howard Smith", "character": "TV Commentator", "id": 15076, "credit_id": "52fe428dc3a36847f8027b99", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "Daniel Dietrich", "character": "Givens", "id": 15077, "credit_id": "52fe428dc3a36847f8027b9d", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Fred Baker", "character": "Police Commander", "id": 15078, "credit_id": "52fe428dc3a36847f8027ba1", "cast_id": 36, "profile_path": null, "order": 9}, {"name": "James A. Baffico", "character": "Wooley", "id": 15079, "credit_id": "52fe428dc3a36847f8027ba5", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Rod Stouffer", "character": "Roy Tucker", "id": 15080, "credit_id": "52fe428ec3a36847f8027ba9", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Jese Del Gre", "character": "Old Priest", "id": 1047720, "credit_id": "52fe428ec3a36847f8027bad", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Clayton McKinnon", "character": "Officer in Project Apt.", "id": 1047721, "credit_id": "52fe428ec3a36847f8027bb1", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "John Rice", "character": "Officer in Project Apt.", "id": 162074, "credit_id": "52fe428ec3a36847f8027bb5", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Ted Bank", "character": "Officer at Police Dock", "id": 1047722, "credit_id": "52fe428ec3a36847f8027bb9", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Randy Kovitz", "character": "Officer at Police Dock", "id": 152902, "credit_id": "52fe428ec3a36847f8027bbd", "cast_id": 43, "profile_path": "/77ot4s2NATwJUzIHhFOEf0MIZ4r.jpg", "order": 16}, {"name": "Patrick McCloskey", "character": "Officer at Police Dock", "id": 1047723, "credit_id": "52fe428ec3a36847f8027bc1", "cast_id": 44, "profile_path": null, "order": 17}, {"name": "Joseph Pilato", "character": "Officer at Police Dock", "id": 54855, "credit_id": "52fe428ec3a36847f8027bc5", "cast_id": 45, "profile_path": "/l5xtdrOmCgOrLiOs4HvyiLEmtNH.jpg", "order": 18}, {"name": "Pasquale Buba", "character": "Motorcycle Raider", "id": 15840, "credit_id": "52fe428ec3a36847f8027bc9", "cast_id": 46, "profile_path": null, "order": 19}, {"name": "Tom Savini", "character": "Motorcycle Raider", "id": 11161, "credit_id": "52fe428ec3a36847f8027bcd", "cast_id": 47, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 20}, {"name": "George A. Romero", "character": "Man at TV-Station", "id": 14999, "credit_id": "53a068d00e0a26506e003008", "cast_id": 48, "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "order": 21}, {"name": "Christine Forrest", "character": "Woman at TV-Station", "id": 100507, "credit_id": "53a069220e0a26508100301d", "cast_id": 49, "profile_path": null, "order": 22}], "directors": [{"name": "George A. Romero", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f8027af5", "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "id": 14999}], "vote_average": 7.2, "runtime": 127}, "924": {"poster_path": "/hWq7Ixgzwat7UThluFsptUmb8zk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102356381, "overview": "A group of surviving people take refuge in a shopping center after the world has been over taken over by aggressive, flesh-eating zombies. A remake of the 1978 zombie film of the same name.", "video": false, "id": 924, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Dawn of the Dead", "tagline": "When the undead rise, civilization will fall.", "vote_count": 257, "homepage": "http://www.dawnofthedeadmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363547", "adult": false, "backdrop_path": "/cYd3PL27r0KJa9Pa4A5lfUr58Yg.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2004-03-10", "popularity": 0.896073637746964, "original_title": "Dawn of the Dead", "budget": 28000000, "cast": [{"name": "Sarah Polley", "character": "Ana", "id": 98, "credit_id": "52fe428ec3a36847f8027ca3", "cast_id": 22, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 0}, {"name": "Ving Rhames", "character": "Kenneth", "id": 10182, "credit_id": "52fe428ec3a36847f8027ca7", "cast_id": 23, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 1}, {"name": "Jake Weber", "character": "Michael", "id": 4177, "credit_id": "52fe428ec3a36847f8027cab", "cast_id": 24, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 2}, {"name": "Mekhi Phifer", "character": "Andre", "id": 327, "credit_id": "52fe428ec3a36847f8027caf", "cast_id": 25, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 3}, {"name": "Ty Burrell", "character": "Steve", "id": 15232, "credit_id": "52fe428ec3a36847f8027cb3", "cast_id": 26, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 4}, {"name": "Matt Frewer", "character": "Frank", "id": 40009, "credit_id": "52fe428ec3a36847f8027cbd", "cast_id": 28, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 5}, {"name": "Michael Kelly", "character": "C.J.", "id": 50217, "credit_id": "52fe428ec3a36847f8027cc1", "cast_id": 29, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 6}, {"name": "Kevin Zegers", "character": "Terry", "id": 7431, "credit_id": "52fe428ec3a36847f8027cc5", "cast_id": 30, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 7}, {"name": "Lindy Booth", "character": "Nicole", "id": 51936, "credit_id": "52fe428ec3a36847f8027cc9", "cast_id": 31, "profile_path": "/bzquwgIrGxF8xfPCmSiNZ563VdH.jpg", "order": 8}, {"name": "Michael Barry", "character": "Bart", "id": 79411, "credit_id": "52fe428ec3a36847f8027ccd", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Jayne Eastwood", "character": "Norma", "id": 4568, "credit_id": "52fe428ec3a36847f8027cd1", "cast_id": 33, "profile_path": "/fUYBG960fMkGDiNzcz7ERjB6BHe.jpg", "order": 10}, {"name": "Boyd Banks", "character": "Tucker", "id": 20196, "credit_id": "52fe428ec3a36847f8027cd5", "cast_id": 34, "profile_path": "/mDsIaLKyGqyV1Nt0pV9joGkQNSP.jpg", "order": 11}, {"name": "Inna Korobkina", "character": "Luda", "id": 101255, "credit_id": "52fe428ec3a36847f8027cd9", "cast_id": 35, "profile_path": "/7doFA0Dla2cn1XY6eR0XQ7YlFfv.jpg", "order": 12}, {"name": "Kim Poirier", "character": "Monica", "id": 101250, "credit_id": "52fe428ec3a36847f8027cdd", "cast_id": 36, "profile_path": "/wesJlduSqsSe2ZKoe7wpQsNzInh.jpg", "order": 13}, {"name": "Louis Ferreira", "character": "Luis", "id": 51036, "credit_id": "52fe428ec3a36847f8027ce1", "cast_id": 37, "profile_path": "/mqJglT0g3tRMg5cNeJ7C6vdP4E.jpg", "order": 14}, {"name": "Scott H. Reiniger", "character": "The General", "id": 15071, "credit_id": "52fe428ec3a36847f8027ce5", "cast_id": 39, "profile_path": "/zX3UySm5yhFR0KyF1nzydcrKM60.jpg", "order": 15}, {"name": "Tom Savini", "character": "The County Sheriff", "id": 11161, "credit_id": "52fe428ec3a36847f8027ce9", "cast_id": 40, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 16}, {"name": "Ken Foree", "character": "The Televangelist", "id": 15070, "credit_id": "52fe428ec3a36847f8027ced", "cast_id": 41, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 17}, {"name": "Natalie Brown", "character": "CDC Reporter", "id": 104635, "credit_id": "52fe428ec3a36847f8027cf1", "cast_id": 42, "profile_path": "/gjhBQLNO3mlZGmnftmbWZxVkKW.jpg", "order": 18}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f8027c27", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.7, "runtime": 101}, "16538": {"poster_path": "/bIW8xqbWnEylKcx8EJdpIMSmygw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91636986, "overview": "Peter Klaven is a successful real estate agent who, upon getting engaged to the woman of his dreams, Zooey, discovers, to his dismay and chagrin, that he has no male friend close enough to serve as his Best Man. Peter immediately sets out to rectify the situation, embarking on a series of bizarre and awkward \"man-dates,\" before meeting Sydney Fife.", "video": false, "id": 16538, "genres": [{"id": 35, "name": "Comedy"}], "title": "I Love You, Man", "tagline": "Are You Man Enough To Say It?", "vote_count": 137, "homepage": "http://www.iloveyouman.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1155056", "adult": false, "backdrop_path": "/rpNWJxp4hy23CyeItratYRDLmgV.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "The Montecito Picture Company", "id": 2364}, {"name": "De Line Pictures", "id": 2609}, {"name": "Bernard Gayle Productions", "id": 3194}], "release_date": "2009-03-20", "popularity": 0.895894776274966, "original_title": "I Love You, Man", "budget": 41000000, "cast": [{"name": "Paul Rudd", "character": "Peter Klaven", "id": 22226, "credit_id": "52fe46d99251416c750858d9", "cast_id": 1, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Rashida Jones", "character": "Zooey", "id": 80591, "credit_id": "52fe46d99251416c750858dd", "cast_id": 2, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 1}, {"name": "Jason Segel", "character": "Sydney Fife", "id": 41088, "credit_id": "52fe46d99251416c7508591b", "cast_id": 17, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 2}, {"name": "Sarah Burns", "character": "Hailey", "id": 80592, "credit_id": "52fe46d99251416c750858e1", "cast_id": 3, "profile_path": "/xGyBTIJUG7WC3wjQu0ILBCSSnh0.jpg", "order": 3}, {"name": "Greg Levine", "character": "Hailey's Date", "id": 80593, "credit_id": "52fe46d99251416c750858e5", "cast_id": 4, "profile_path": null, "order": 4}, {"name": "Jaime Pressly", "character": "Denise", "id": 56824, "credit_id": "52fe46d99251416c750858e9", "cast_id": 5, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Barry", "id": 15277, "credit_id": "52fe46d99251416c750858ed", "cast_id": 6, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Jane Curtin", "character": "Joyce Klaven", "id": 58184, "credit_id": "52fe46d99251416c750858f1", "cast_id": 7, "profile_path": "/lPiGlFpjsgb1uD3zPOkaEv4T3Es.jpg", "order": 7}, {"name": "J.K. Simmons", "character": "Oswald Klaven", "id": 18999, "credit_id": "52fe46d99251416c750858f5", "cast_id": 8, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 8}, {"name": "Jean Villepique", "character": "Leanne", "id": 80594, "credit_id": "52fe46d99251416c750858f9", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Rob Huebel", "character": "Tevin Downey", "id": 80595, "credit_id": "52fe46d99251416c750858fd", "cast_id": 11, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 9}, {"name": "Colleen Crabtree", "character": "Female Co-Worker", "id": 80596, "credit_id": "52fe46d99251416c75085901", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Kym Whitley", "character": "Female Co-Worker", "id": 80597, "credit_id": "52fe46d99251416c75085905", "cast_id": 13, "profile_path": "/87Zy7o5giRo2SpnhNJSvZRhYJue.jpg", "order": 11}, {"name": "Andy Samberg", "character": "Robbie Klaven", "id": 62861, "credit_id": "52fe46d99251416c7508591f", "cast_id": 18, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 12}, {"name": "Lou Ferrigno", "character": "Lou Ferrigno", "id": 19137, "credit_id": "52fe46d99251416c75085923", "cast_id": 21, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 14}, {"name": "Thomas Lennon", "character": "Doug", "id": 539, "credit_id": "52fe46d99251416c75085927", "cast_id": 22, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 15}, {"name": "Aziz Ansari", "character": "Eugene", "id": 86626, "credit_id": "52fe46d99251416c7508592b", "cast_id": 23, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 16}, {"name": "Nick Kroll", "character": "Larry", "id": 208519, "credit_id": "52fe46d99251416c7508592f", "cast_id": 24, "profile_path": "/puZov7sMmuVkvdqJvmlxtWcS1fU.jpg", "order": 17}, {"name": "Carla Gallo", "character": "Zooey's Friend", "id": 54708, "credit_id": "52fe46d99251416c75085933", "cast_id": 25, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 18}, {"name": "Jay Chandrasekhar", "character": "Barry's Buddy", "id": 52049, "credit_id": "52fe46d99251416c75085937", "cast_id": 26, "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "order": 19}, {"name": "Geddy Lee", "character": "Himself - Rush", "id": 81249, "credit_id": "52fe46d99251416c7508593b", "cast_id": 27, "profile_path": "/9ZpJpCL0U3HK6F7nLLyjg4EOtNc.jpg", "order": 20}, {"name": "Alex Lifeson", "character": "Himself - Rush", "id": 81248, "credit_id": "52fe46d99251416c7508593f", "cast_id": 28, "profile_path": "/kMDS4SSG7uKtgHnbckHCpTzpu3s.jpg", "order": 21}, {"name": "Neil Peart", "character": "Himself - Rush", "id": 81250, "credit_id": "52fe46d99251416c75085943", "cast_id": 29, "profile_path": "/9a1OQqSh7BzpfsOZvfMHQgE4XTW.jpg", "order": 22}, {"name": "David Krumholtz", "character": "Sydney's Buddy #3", "id": 38582, "credit_id": "52fe46d99251416c75085947", "cast_id": 30, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 23}, {"name": "Joe Lo Truglio", "character": "Lonnie", "id": 21131, "credit_id": "52fe46d99251416c7508594b", "cast_id": 31, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 24}, {"name": "Catherine Reitman", "character": "Zooey's Friend", "id": 154826, "credit_id": "530376cd92514121925af7d1", "cast_id": 32, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 25}], "directors": [{"name": "John Hamburg", "department": "Directing", "job": "Director", "credit_id": "52fe46d99251416c7508590b", "profile_path": "/sOLaBjtlparS5GWGhI3a8Rx5Qzr.jpg", "id": 17871}], "vote_average": 6.5, "runtime": 105}, "926": {"poster_path": "/9yaxerm28NP4LIAsAS7zGAAbSSa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90683916, "overview": "Decades after the success of the sci-fi series \"Galaxy Quest,\" the show's washed-up stars -- Jason Nesmith, Gwen DeMarco and Alexander Dane -- are unwittingly recruited by actual aliens to pull off an intergalactic rescue mission.", "video": false, "id": 926, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Galaxy Quest", "tagline": "A comedy of Galactic Proportions", "vote_count": 228, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0177789", "adult": false, "backdrop_path": "/1sAm8L4yOquzak9bstajTIoCEmy.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "1999-12-23", "popularity": 0.871338029381202, "original_title": "Galaxy Quest", "budget": 45000000, "cast": [{"name": "Tim Allen", "character": "Jason Nesmith", "id": 12898, "credit_id": "52fe428ec3a36847f8027ef3", "cast_id": 40, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Sigourney Weaver", "character": "Gwen DeMarco", "id": 10205, "credit_id": "52fe428ec3a36847f8027eef", "cast_id": 39, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 1}, {"name": "Alan Rickman", "character": "Alexander Dane", "id": 4566, "credit_id": "52fe428ec3a36847f8027ebb", "cast_id": 26, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 2}, {"name": "Tony Shalhoub", "character": "Fred Kwan", "id": 4252, "credit_id": "52fe428ec3a36847f8027ebf", "cast_id": 27, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 3}, {"name": "Sam Rockwell", "character": "Guy Fleegman", "id": 6807, "credit_id": "52fe428ec3a36847f8027ec3", "cast_id": 28, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 4}, {"name": "Daryl Mitchell", "character": "Tommy Webber", "id": 15028, "credit_id": "52fe428ec3a36847f8027ec7", "cast_id": 29, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 5}, {"name": "Enrico Colantoni", "character": "Mathesar", "id": 15029, "credit_id": "52fe428ec3a36847f8027ecb", "cast_id": 30, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 6}, {"name": "Robin Sachs", "character": "Sarris", "id": 15030, "credit_id": "52fe428ec3a36847f8027ecf", "cast_id": 31, "profile_path": "/rSMeopDC1loyjUVhxK0XjFfSlAC.jpg", "order": 7}, {"name": "Patrick Breen", "character": "Quellek", "id": 15031, "credit_id": "52fe428ec3a36847f8027ed3", "cast_id": 32, "profile_path": "/jMChbEq3GODrIoz1Jl4rlPGonY6.jpg", "order": 8}, {"name": "Missi Pyle", "character": "Laliari", "id": 1294, "credit_id": "52fe428ec3a36847f8027ed7", "cast_id": 33, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 9}, {"name": "Jed Rees", "character": "Teb", "id": 15032, "credit_id": "52fe428ec3a36847f8027edb", "cast_id": 34, "profile_path": "/u2zPeu9RguGzPagDjSPPxXFHxax.jpg", "order": 10}, {"name": "Justin Long", "character": "Brandon", "id": 15033, "credit_id": "52fe428ec3a36847f8027edf", "cast_id": 35, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 11}, {"name": "Jeremy Howard", "character": "Kyle", "id": 15034, "credit_id": "52fe428ec3a36847f8027ee3", "cast_id": 36, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 12}, {"name": "Kaitlin Cullum", "character": "Katelyn", "id": 15035, "credit_id": "52fe428ec3a36847f8027ee7", "cast_id": 37, "profile_path": "/dJxQ8Hqd1aKVQwlCw4bFP2SEL07.jpg", "order": 13}, {"name": "Jonathan Feyer", "character": "Hollister", "id": 15036, "credit_id": "52fe428ec3a36847f8027eeb", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Sam Lloyd", "character": "Neru (as Samuel Lloyd)", "id": 46920, "credit_id": "54e300af9251411953008ed5", "cast_id": 45, "profile_path": "/xLSxSkq41HNGmK5cCeXqnki8CIz.jpg", "order": 15}, {"name": "Rainn Wilson", "character": "Lahnk", "id": 11678, "credit_id": "54e300549251411099003520", "cast_id": 44, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 16}, {"name": "Kevin McDonald", "character": "Announcer (as Kevin Hamilton McDonald)", "id": 58955, "credit_id": "54e2fff29251411956009563", "cast_id": 43, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 17}], "directors": [{"name": "Dean Parisot", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f8027e33", "profile_path": "/3h20QFQ6duhpJ1FMSeJiFju0WGp.jpg", "id": 15002}], "vote_average": 6.7, "runtime": 102}, "927": {"poster_path": "/qehNFww7A9kRDbqCQNWvaQc8Y4w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 153083102, "overview": "When Billy Peltzer is given a strange but adorable pet named Gizmo for Christmas, he inadvertently breaks the three important rules of caring for a Mogwai, and unleashes a horde of mischievous gremlins on a small town.", "video": false, "id": 927, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Gremlins", "tagline": "Don't get him wet, keep him out of bright light, and never feed him after midnight.", "vote_count": 315, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2Oz7EyiM9nNeP7appRFkMZNeYRo.jpg", "poster_path": "/mcrb8SdAOrJpSMbWWS3Hv304FCG.jpg", "id": 89151, "name": "The Gremlins Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0087363", "adult": false, "backdrop_path": "/cRnWvmZXvvacj9FzDaaw2bzC5jh.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1984-06-07", "popularity": 1.09879837632864, "original_title": "Gremlins", "budget": 11000000, "cast": [{"name": "Zach Galligan", "character": "Billy Peltzer", "id": 16170, "credit_id": "52fe428ec3a36847f8027fcd", "cast_id": 25, "profile_path": "/eSyT6LTehecvhTfNxn5OEdEGmqR.jpg", "order": 0}, {"name": "Phoebe Cates", "character": "Kate Beringer", "id": 16171, "credit_id": "52fe428ec3a36847f8027fd1", "cast_id": 26, "profile_path": "/5PxWIvoufedYN7dfDohBXcrUx2C.jpg", "order": 1}, {"name": "Hoyt Axton", "character": "Randall Peltzer", "id": 16166, "credit_id": "52fe428ec3a36847f8027fb1", "cast_id": 18, "profile_path": "/sIJjj88LfVpvnxW56Ffr6qlj7wI.jpg", "order": 2}, {"name": "Polly Holliday", "character": "Ruby Deagle", "id": 11715, "credit_id": "52fe428ec3a36847f8027fd5", "cast_id": 27, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 3}, {"name": "Dick Miller", "character": "Murray Futterman", "id": 102441, "credit_id": "52fe428ec3a36847f8027fe1", "cast_id": 30, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 4}, {"name": "Keye Luke", "character": "Grandfather (Mr. Wing)", "id": 16103, "credit_id": "52fe428ec3a36847f8027fb9", "cast_id": 20, "profile_path": "/1mnlwICoRFyz6nmER2MGtXgocWk.jpg", "order": 5}, {"name": "Belinda Balaski", "character": "Mrs. Joe Harris", "id": 16173, "credit_id": "52fe428ec3a36847f8027fdd", "cast_id": 29, "profile_path": "/rOrH8mdW1F3HGmCb2W3EoCdv1Ox.jpg", "order": 6}, {"name": "Scott Brady", "character": "Sheriff Frank", "id": 14847, "credit_id": "52fe428ec3a36847f8027fc5", "cast_id": 23, "profile_path": "/Aop8piW356aYUAX9hsvdLyZrNr7.jpg", "order": 7}, {"name": "Judge Reinhold", "character": "Gerald Hopkins", "id": 777, "credit_id": "52fe428ec3a36847f8027ff7", "cast_id": 35, "profile_path": "/oN7TsF0yFJhsoKe9KzxXEOhheci.jpg", "order": 8}, {"name": "John Louie", "character": "Chinese Boy", "id": 16167, "credit_id": "52fe428ec3a36847f8027fb5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Don Steele", "character": "Rockin' Ricky Rialto (voice)", "id": 16168, "credit_id": "52fe428ec3a36847f8027fbd", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Susan Burgess", "character": "Little Girl", "id": 16169, "credit_id": "52fe428ec3a36847f8027fc1", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Harry Carey, Jr.", "character": "Mr. Anderson", "id": 4316, "credit_id": "52fe428ec3a36847f8027fc9", "cast_id": 24, "profile_path": "/7Via2uVuYnnz8gJ5qx0zXqIKTkz.jpg", "order": 12}, {"name": "Donald Elson", "character": "Man on Street", "id": 16172, "credit_id": "52fe428ec3a36847f8027fd9", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Howie Mandel", "character": "Gizmo (voice)", "id": 77920, "credit_id": "52fe428ec3a36847f8027feb", "cast_id": 32, "profile_path": "/vGiiLVMetVkQIRhirMDqcfOqJoz.jpg", "order": 14}, {"name": "Corey Feldman", "character": "Pete Fountaine", "id": 3034, "credit_id": "52fe428ec3a36847f8027fef", "cast_id": 33, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 15}, {"name": "Edward Andrews", "character": "Mr. Corben", "id": 29719, "credit_id": "52fe428ec3a36847f8027ff3", "cast_id": 34, "profile_path": "/8tbeVNxs6puN3GiyOmoq70IchLb.jpg", "order": 16}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f8027fe7", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.5, "runtime": 106}, "928": {"poster_path": "/mkWD9W27JYmQPbgcryPBdI2cF4r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41482207, "overview": "Young sweethearts Billy and Kate move to the Big Apple, land jobs in a high-tech office park and soon reunite with the friendly and lovable Gizmo. But a series of accidents creates a whole new generation of Gremlins. The situation worsens when the devilish green creatures invade a top-secret laboratory and develop genetically altered powers, making them even harder to destroy!", "video": false, "id": 928, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Gremlins 2: The New Batch", "tagline": "Here they grow again.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2Oz7EyiM9nNeP7appRFkMZNeYRo.jpg", "poster_path": "/mcrb8SdAOrJpSMbWWS3Hv304FCG.jpg", "id": 89151, "name": "The Gremlins Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099700", "adult": false, "backdrop_path": "/fYs97Y4IuZKiHbBPwU97mpgqRHs.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1990-06-15", "popularity": 0.87408158252482, "original_title": "Gremlins 2: The New Batch", "budget": 50000000, "cast": [{"name": "Zach Galligan", "character": "Billy Peltzer", "id": 16170, "credit_id": "52fe428ec3a36847f80280ab", "cast_id": 17, "profile_path": "/eSyT6LTehecvhTfNxn5OEdEGmqR.jpg", "order": 0}, {"name": "Phoebe Cates", "character": "Kate Beringer", "id": 16171, "credit_id": "52fe428ec3a36847f80280af", "cast_id": 18, "profile_path": "/5PxWIvoufedYN7dfDohBXcrUx2C.jpg", "order": 1}, {"name": "John Glover", "character": "Daniel Clamp", "id": 5589, "credit_id": "52fe428ec3a36847f80280b3", "cast_id": 19, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 2}, {"name": "Robert Prosky", "character": "Grandpa Fred", "id": 10360, "credit_id": "52fe428ec3a36847f80280b7", "cast_id": 20, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 3}, {"name": "Robert Picardo", "character": "Forster", "id": 16180, "credit_id": "52fe428ec3a36847f80280bb", "cast_id": 21, "profile_path": "/5L0WCl3TzjeWdP8TqXfQ1n9uaOn.jpg", "order": 4}, {"name": "Christopher Lee", "character": "Doctor Catheter", "id": 113, "credit_id": "52fe428ec3a36847f80280bf", "cast_id": 22, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 5}, {"name": "Haviland Morris", "character": "Marla Bloodstone", "id": 16181, "credit_id": "52fe428ec3a36847f80280c3", "cast_id": 23, "profile_path": "/4lFaYG2lyob69bFXBZJ1GdkZjwj.jpg", "order": 6}, {"name": "Jackie Joseph", "character": "Sheila Futterman", "id": 16182, "credit_id": "52fe428ec3a36847f80280c7", "cast_id": 24, "profile_path": "/guS1QH6qXxMs2aW6zD7YWy7RJSm.jpg", "order": 7}, {"name": "Gedde Watanabe", "character": "Mr. Katsuji", "id": 16183, "credit_id": "52fe428ec3a36847f80280cb", "cast_id": 25, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 8}, {"name": "Keye Luke", "character": "Mr. Wing", "id": 16103, "credit_id": "52fe428ec3a36847f80280cf", "cast_id": 26, "profile_path": "/1mnlwICoRFyz6nmER2MGtXgocWk.jpg", "order": 9}, {"name": "Kathleen Freeman", "character": "Microwave Marge", "id": 7210, "credit_id": "52fe428ec3a36847f80280d3", "cast_id": 27, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 10}, {"name": "Don Stanton", "character": "Martin", "id": 16184, "credit_id": "52fe428ec3a36847f80280d7", "cast_id": 28, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 11}, {"name": "Dan Stanton", "character": "Lewis", "id": 16185, "credit_id": "52fe428ec3a36847f80280db", "cast_id": 29, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 12}, {"name": "Shawn Nelson", "character": "Wally", "id": 16186, "credit_id": "52fe428ec3a36847f80280df", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Dick Miller", "character": "Murray Futterman", "id": 102441, "credit_id": "52fe428ec3a36847f80280e9", "cast_id": 32, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 14}, {"name": "Paul Bartel", "character": "Theatre Manager", "id": 101377, "credit_id": "52fe428ec3a36847f80280ed", "cast_id": 33, "profile_path": "/7Kj1Y9V8lfnFXHkjf30H8d3ylQA.jpg", "order": 15}, {"name": "John Astin", "character": "Janitor", "id": 41230, "credit_id": "52fe428ec3a36847f80280f1", "cast_id": 34, "profile_path": "/thWruW63AhnJUiQu4hcqi600dNH.jpg", "order": 16}, {"name": "Henry Gibson", "character": "Employee fired for Smoking", "id": 19439, "credit_id": "52fe428ec3a36847f80280f5", "cast_id": 35, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 17}, {"name": "Leonard Maltin", "character": "Himself", "id": 109255, "credit_id": "52fe428fc3a36847f80280f9", "cast_id": 36, "profile_path": "/oiYdHwKoqDqyDKzq9VFx7ynzfYs.jpg", "order": 18}, {"name": "Hulk Hogan", "character": "Himself", "id": 16620, "credit_id": "52fe428fc3a36847f80280fd", "cast_id": 37, "profile_path": "/jDWQ3FLbbPSIHPgfOdmuUaWWnON.jpg", "order": 19}, {"name": "Tony Randall", "character": "Brain Gremlin (voice)", "id": 40206, "credit_id": "52fe428fc3a36847f8028101", "cast_id": 38, "profile_path": "/9CV7E5onJ6AuYFvHuIdMtEiW6PG.jpg", "order": 20}, {"name": "Howie Mandel", "character": "Gizmo (voice)", "id": 77920, "credit_id": "52fe428fc3a36847f8028105", "cast_id": 39, "profile_path": "/vGiiLVMetVkQIRhirMDqcfOqJoz.jpg", "order": 21}, {"name": "Frank Welker", "character": "Mohawk (voice)", "id": 15831, "credit_id": "53d14089c3a368776d00a477", "cast_id": 40, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 22}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f80280e5", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.0, "runtime": 106}, "929": {"poster_path": "/5axr56XqJH2xqkzI4j5sjzgV1Hu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 379014294, "overview": "When a freighter is viciously attacked in the Pacific Ocean, a team of experts -- including biologist Niko Tatopoulos and scientists Elsie Chapman and Mendel Craven -- concludes that an oversized reptile is the culprit. Before long, the giant lizard is loose in Manhattan, destroying everything within its reach. The team chases the monster to Madison Square Garden, where a brutal battle ensues.", "video": false, "id": 929, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Godzilla", "tagline": "Size does matter.", "vote_count": 279, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8k47vHM7YtLTH10ZOB5m07fPMMc.jpg", "poster_path": "/nncQXO299wkUWsjQUtpvRmSyFgP.jpg", "id": 221541, "name": "Godzilla Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0120685", "adult": false, "backdrop_path": "/d8aOyxSMD7oQGFsPORCU8AJ6EQ3.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Centropolis Film Productions", "id": 620}, {"name": "Fried Films", "id": 11343}, {"name": "Independent Pictures (II)", "id": 2833}, {"name": "Toho Film (Eiga) Co. Ltd.", "id": 622}], "release_date": "1998-05-19", "popularity": 1.04610712608252, "original_title": "Godzilla", "budget": 130000000, "cast": [{"name": "Matthew Broderick", "character": "Dr. Niko Tatopoulos", "id": 4756, "credit_id": "52fe428fc3a36847f80281d1", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Jean Reno", "character": "Philippe Roach\u00e9", "id": 1003, "credit_id": "52fe428fc3a36847f80281d5", "cast_id": 2, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Maria Pitillo", "character": "Audrey Timmonds", "id": 3208, "credit_id": "52fe428fc3a36847f80281d9", "cast_id": 3, "profile_path": "/ihaCNZzuR7P06OFqOf1aHmAIDna.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Victor 'Animal' Palotti", "id": 5587, "credit_id": "52fe428fc3a36847f80281dd", "cast_id": 4, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Colonel Hicks", "id": 14721, "credit_id": "52fe428fc3a36847f80281e1", "cast_id": 5, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Michael Lerner", "character": "Mayor Ebert", "id": 4250, "credit_id": "52fe428fc3a36847f80281e5", "cast_id": 6, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 5}, {"name": "Harry Shearer", "character": "Charles Caiman", "id": 6008, "credit_id": "52fe428fc3a36847f80281e9", "cast_id": 7, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 6}, {"name": "Arabella Field", "character": "Lucy Palotti", "id": 14722, "credit_id": "52fe428fc3a36847f80281ed", "cast_id": 8, "profile_path": "/aDhXyY1fwrS0gRdOJSc0uQPb3h5.jpg", "order": 7}, {"name": "Vicki Lewis", "character": "Dr. Elsie Chapman", "id": 14723, "credit_id": "52fe428fc3a36847f80281f1", "cast_id": 9, "profile_path": "/4IYuDOZKW9XxSahF1QsxwU4a0p4.jpg", "order": 8}, {"name": "Doug Savant", "character": "Sergeant O'Neal", "id": 14737, "credit_id": "52fe428fc3a36847f80281f5", "cast_id": 10, "profile_path": "/zg1NkpTEEjIvQDmTutRCiGZTKgm.jpg", "order": 9}, {"name": "Malcolm Danare", "character": "Dr. Mendel Craven", "id": 14738, "credit_id": "52fe428fc3a36847f80281f9", "cast_id": 11, "profile_path": "/6PQPp4Yim18xuNCBGQLg2cYAstY.jpg", "order": 10}, {"name": "Lorry Goldman", "character": "Gene, Mayor's Aide", "id": 14739, "credit_id": "52fe428fc3a36847f80281fd", "cast_id": 12, "profile_path": "/9yhQJUmqBCO9OsvIPR76X4B6t3S.jpg", "order": 11}, {"name": "Christian Aubert", "character": "Jean-Luc", "id": 14740, "credit_id": "52fe428fc3a36847f8028201", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Philippe Bergeron", "character": "Jean-Claude", "id": 14741, "credit_id": "52fe428fc3a36847f8028205", "cast_id": 14, "profile_path": "/ugHYNYMyn3zrKEtQJAnuEJrLiBr.jpg", "order": 13}, {"name": "Frank Bruynbroek", "character": "Jean-Pierre", "id": 14742, "credit_id": "52fe428fc3a36847f8028209", "cast_id": 15, "profile_path": "/v1GYIZjQPSGfx5qvArjony1C2is.jpg", "order": 14}, {"name": "Francois Giroday", "character": "as Jean-Philippe", "id": 538321, "credit_id": "52fe428fc3a36847f80282b5", "cast_id": 47, "profile_path": null, "order": 15}, {"name": "Nicholas J. Giangiulio", "character": "Ed", "id": 164283, "credit_id": "52fe428fc3a36847f80282b9", "cast_id": 48, "profile_path": "/a0F71gqC7H1p5tBbyOtEEM7J1B5.jpg", "order": 16}, {"name": "Robert Lesser", "character": "Murray", "id": 140176, "credit_id": "52fe428fc3a36847f80282bd", "cast_id": 49, "profile_path": null, "order": 17}, {"name": "Ralph Manza", "character": "Old Fisherman", "id": 151606, "credit_id": "52fe428fc3a36847f80282c1", "cast_id": 50, "profile_path": null, "order": 18}, {"name": "Greg Callahan", "character": "the Governor", "id": 1116812, "credit_id": "52fe428fc3a36847f80282c5", "cast_id": 51, "profile_path": null, "order": 19}, {"name": "Chris Ellis", "character": "General Anderson", "id": 8191, "credit_id": "52fe428fc3a36847f80282c9", "cast_id": 52, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 20}, {"name": "Nancy Cartwright", "character": "Caiman's Secretary", "id": 200, "credit_id": "52fe428fc3a36847f80282cd", "cast_id": 53, "profile_path": "/wb8RZu3vw7gDZoRFWNNpsbznRWC.jpg", "order": 21}, {"name": "Richard Gant", "character": "Admiral Phelps", "id": 16662, "credit_id": "52fe428fc3a36847f80282d1", "cast_id": 54, "profile_path": "/oYDHpuey2NMlGaGqMqZJVAoKoy5.jpg", "order": 22}, {"name": "Jack Moore", "character": "Leonard", "id": 117564, "credit_id": "52fe428fc3a36847f8028347", "cast_id": 104, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 23}, {"name": "Steve Giannelli", "character": "Jules", "id": 1116827, "credit_id": "52fe428fc3a36847f80282d5", "cast_id": 56, "profile_path": "/aIMSzuRTYTWHlaAUfzc2uS6KIJf.jpg", "order": 24}, {"name": "Brian Farabaugh", "character": "Arthur", "id": 1116829, "credit_id": "52fe428fc3a36847f80282d9", "cast_id": 57, "profile_path": null, "order": 25}, {"name": "Stephen Xavier Lee", "character": "Lt. Anderson", "id": 1116831, "credit_id": "52fe428fc3a36847f80282dd", "cast_id": 58, "profile_path": null, "order": 26}, {"name": "Bodhi Elfman", "character": "Freddie", "id": 1116832, "credit_id": "52fe428fc3a36847f80282e1", "cast_id": 59, "profile_path": null, "order": 27}, {"name": "Rich Battista", "character": "Jimmy", "id": 1116834, "credit_id": "52fe428fc3a36847f80282e5", "cast_id": 60, "profile_path": null, "order": 28}, {"name": "Lloyd Kino", "character": "Japanese Tanker Cook", "id": 1116836, "credit_id": "52fe428fc3a36847f80282e9", "cast_id": 61, "profile_path": null, "order": 29}, {"name": "Toshi Toda", "character": "Japanese Tanker Captain", "id": 156963, "credit_id": "52fe428fc3a36847f8028353", "cast_id": 107, "profile_path": "/pFYqicvIVtrSSZQKnbSOXl1cw8K.jpg", "order": 30}, {"name": "Clyde Kusatsu", "character": "Japanese Tanker Skipper", "id": 2249, "credit_id": "52fe428fc3a36847f8028357", "cast_id": 108, "profile_path": "/nfOvoNP4Gwo8LZO2UFZUnLu5sIU.jpg", "order": 31}, {"name": "Masaya Kato", "character": "Japanese Tanker Crew Member", "id": 4989, "credit_id": "52fe428fc3a36847f802835b", "cast_id": 109, "profile_path": "/9oBPC6b6fsaHu48dldzE5CYouqa.jpg", "order": 32}, {"name": "Lola Pashalinski", "character": "Pharmacist", "id": 1116851, "credit_id": "52fe428fc3a36847f80282ed", "cast_id": 66, "profile_path": "/nKnk6gETKT9kFMT9zAwlmUNhlyv.jpg", "order": 33}, {"name": "Rob Fukuzaki", "character": "WIDF Co-Anchor", "id": 1116852, "credit_id": "52fe428fc3a36847f80282f1", "cast_id": 67, "profile_path": null, "order": 34}, {"name": "Dale Harimoto", "character": "WKXI Anchor", "id": 1116853, "credit_id": "52fe428fc3a36847f80282f5", "cast_id": 68, "profile_path": null, "order": 35}, {"name": "Glenn Morshower", "character": "Kyle Terrington", "id": 12797, "credit_id": "52fe428fc3a36847f802835f", "cast_id": 110, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 36}, {"name": "Gary W. Cruz", "character": "WFKK Anchor", "id": 1116854, "credit_id": "52fe428fc3a36847f80282f9", "cast_id": 69, "profile_path": null, "order": 37}, {"name": "Derek Webster", "character": "Utah Captain", "id": 157029, "credit_id": "52fe428fc3a36847f8028363", "cast_id": 111, "profile_path": "/vS6FyYyx2G41Zozn1bINybpmsKY.jpg", "order": 38}, {"name": "Stuart Fratkin", "character": "Utah Ensign", "id": 78415, "credit_id": "52fe428fc3a36847f8028367", "cast_id": 112, "profile_path": null, "order": 39}, {"name": "Frank Cilberg", "character": "Utah Sailor", "id": 1116859, "credit_id": "52fe428fc3a36847f80282fd", "cast_id": 72, "profile_path": null, "order": 40}, {"name": "Jason Edward Jones", "character": "Utah Sailor", "id": 1116860, "credit_id": "52fe428fc3a36847f8028301", "cast_id": 73, "profile_path": null, "order": 41}, {"name": "Roger McIntyre", "character": "Utah Sailor", "id": 1116864, "credit_id": "52fe428fc3a36847f8028305", "cast_id": 74, "profile_path": "/q3FrwiwVo179rwVqL0TX1ZxKIWp.jpg", "order": 42}, {"name": "David Pressman", "character": "Anchorage Captain", "id": 111514, "credit_id": "52fe428fc3a36847f802836b", "cast_id": 113, "profile_path": "/d7E1CW5DfYEFvlxOGQ5IioQbW8t.jpg", "order": 43}, {"name": "Robert Faltisco", "character": "Anchorage Ensign", "id": 1116873, "credit_id": "52fe428fc3a36847f8028309", "cast_id": 76, "profile_path": null, "order": 44}, {"name": "Christopher Darius Maleki", "character": "Anchorage Ensign", "id": 1116874, "credit_id": "52fe428fc3a36847f802830d", "cast_id": 77, "profile_path": null, "order": 45}, {"name": "Scott Lusby", "character": "Anchorage Ensign", "id": 1116877, "credit_id": "52fe428fc3a36847f8028311", "cast_id": 78, "profile_path": null, "order": 46}, {"name": "Ali Afshar", "character": "Anchorage Sailor", "id": 294813, "credit_id": "52fe428fc3a36847f802836f", "cast_id": 114, "profile_path": "/qAg8CaQQTduVQ93M6E19NgM5Q4d.jpg", "order": 47}, {"name": "Terence Paul Winter", "character": "Apache Pilot", "id": 553985, "credit_id": "52fe428fc3a36847f8028373", "cast_id": 115, "profile_path": "/sP2ENHt7boDNRKxQL0VgJ4ZkOUZ.jpg", "order": 48}, {"name": "Kirk Geiger", "character": "Apache Pilot", "id": 84079, "credit_id": "52fe428fc3a36847f8028377", "cast_id": 116, "profile_path": null, "order": 49}, {"name": "Pat Mastroianni", "character": "Apache Pilot", "id": 174571, "credit_id": "52fe428fc3a36847f802837b", "cast_id": 117, "profile_path": "/nvgncS5r7LTuxYwyKpBjToqooBg.jpg", "order": 50}, {"name": "Eric Saiet", "character": "Apache Pilot", "id": 1116888, "credit_id": "52fe428fc3a36847f8028315", "cast_id": 83, "profile_path": "/ipkybEvZxszUwPFMcWFOGjjjdSp.jpg", "order": 51}, {"name": "Burt Bulos", "character": "Apache Pilot", "id": 15377, "credit_id": "52fe428fc3a36847f802834f", "cast_id": 106, "profile_path": null, "order": 52}, {"name": "Robert Floyd", "character": "Apache Pilot", "id": 182204, "credit_id": "52fe428fc3a36847f802834b", "cast_id": 105, "profile_path": "/wmaSaj1I1xEBypRfINoGpBbDdgD.jpg", "order": 53}, {"name": "Seth Peterson", "character": "Apache Pilot", "id": 109524, "credit_id": "52fe428fc3a36847f802837f", "cast_id": 118, "profile_path": "/oYc4Zhdbc1VmW7ZEyzCmIWJ5amh.jpg", "order": 54}, {"name": "Jamison Yang", "character": "F-18 Pilot", "id": 154551, "credit_id": "52fe428fc3a36847f8028383", "cast_id": 119, "profile_path": null, "order": 55}, {"name": "Nathan Anderson", "character": "F-18 Pilot", "id": 92282, "credit_id": "52fe428fc3a36847f8028387", "cast_id": 120, "profile_path": "/qrfrMs0JNAnqocUwIwnqdulEIeF.jpg", "order": 56}, {"name": "Mark Munafo", "character": "F-18 Pilot", "id": 1116895, "credit_id": "52fe428fc3a36847f8028319", "cast_id": 89, "profile_path": null, "order": 57}, {"name": "Dwight Schmidt", "character": "F-18 Pilot", "id": 1116896, "credit_id": "52fe428fc3a36847f802831d", "cast_id": 90, "profile_path": null, "order": 58}, {"name": "Dwayne Swingler", "character": "Raven Pilot #2", "id": 1116897, "credit_id": "52fe428fc3a36847f8028321", "cast_id": 91, "profile_path": null, "order": 59}, {"name": "Lawton Paseka", "character": "Officier", "id": 560150, "credit_id": "52fe428fc3a36847f802838b", "cast_id": 121, "profile_path": "/qu1T44oLfQzwrNx9JF0qF3HjGBm.jpg", "order": 60}, {"name": "Greg Collins", "character": "Soldier on the Bridge", "id": 58950, "credit_id": "52fe428fc3a36847f802838f", "cast_id": 122, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 61}, {"name": "James Black", "character": "Soldier", "id": 106911, "credit_id": "52fe428fc3a36847f8028343", "cast_id": 103, "profile_path": "/a1D1vL7PrVjyPCLs9E6OP6hmgIW.jpg", "order": 62}, {"name": "Thomas Giuseppe Giantonelli", "character": "Soldier", "id": 1116901, "credit_id": "52fe428fc3a36847f8028325", "cast_id": 95, "profile_path": null, "order": 63}, {"name": "Paul Ware", "character": "Soldier", "id": 1116902, "credit_id": "52fe428fc3a36847f8028329", "cast_id": 96, "profile_path": null, "order": 64}, {"name": "Montae Russell", "character": "Soldier on Plane", "id": 1116903, "credit_id": "52fe428fc3a36847f802832d", "cast_id": 97, "profile_path": "/qrxUqMpa3hbxEIxHKhrYfOHHG9f.jpg", "order": 65}, {"name": "Christopher Carruthers", "character": "Radio Technician", "id": 1116904, "credit_id": "52fe428fc3a36847f8028331", "cast_id": 98, "profile_path": null, "order": 66}, {"name": "Daniel Pearce", "character": "Radio Technician", "id": 1116905, "credit_id": "52fe428fc3a36847f8028335", "cast_id": 99, "profile_path": null, "order": 67}, {"name": "Mark Fite", "character": "Radio Operator", "id": 122805, "credit_id": "52fe428fc3a36847f8028393", "cast_id": 123, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 68}, {"name": "Craig Castaldo", "character": "Radio Man", "id": 1116907, "credit_id": "52fe428fc3a36847f8028339", "cast_id": 101, "profile_path": null, "order": 69}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe428fc3a36847f802820f", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.2, "runtime": 139}, "935": {"poster_path": "/tviJ68Wj4glQk3CPMvdvExYHxX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9164370, "overview": "An insane general starts a process to nuclear holocaust that a war room of politicians and generals frantically try to stop. A classic black and white war satire from director Stanley Kubrick starring Peter Sellers.", "video": false, "id": 935, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", "tagline": "The hot-line suspense comedy", "vote_count": 375, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0057012", "adult": false, "backdrop_path": "/8Sh5rRcOrBy4AIm3keZ50dOIn4D.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Hawk Films", "id": 88}], "release_date": "1964-01-29", "popularity": 1.09444615735472, "original_title": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", "budget": 1800000, "cast": [{"name": "Peter Sellers", "character": "Captain Mandrake/Pr\u00e4sident Muffley/Doktor Seltsam", "id": 12446, "credit_id": "52fe4290c3a36847f80287ad", "cast_id": 13, "profile_path": "/2uJvjoiTjvJfbd81S2AhRtdf2aU.jpg", "order": 0}, {"name": "George C. Scott", "character": "General \"Buck\" Turgidson", "id": 862, "credit_id": "52fe4290c3a36847f80287b1", "cast_id": 14, "profile_path": "/mWXDFKbEgb7ID845I1LNeaeoXT4.jpg", "order": 1}, {"name": "Sterling Hayden", "character": "Brigade General Jack D. Ripper", "id": 3088, "credit_id": "52fe4290c3a36847f80287b5", "cast_id": 15, "profile_path": "/aE85Dzwaf5rTbjLnMgOtpw47BSY.jpg", "order": 2}, {"name": "Keenan Wynn", "character": "Colonel Bat Guano", "id": 4966, "credit_id": "52fe4290c3a36847f80287bd", "cast_id": 17, "profile_path": "/6DcmPzaBXRrlgi75r2RK6yVWEMM.jpg", "order": 3}, {"name": "Slim Pickens", "character": "Major \"King\" Kong", "id": 14253, "credit_id": "52fe4290c3a36847f80287b9", "cast_id": 16, "profile_path": "/xO2rvqSBgZRJKjkVrFy1xeygxLF.jpg", "order": 4}, {"name": "Peter Bull", "character": "Botschafter De Sadesky", "id": 6600, "credit_id": "52fe4290c3a36847f80287c1", "cast_id": 18, "profile_path": "/iIh6WkuefTUVrEybz1CXdz86puI.jpg", "order": 5}, {"name": "James Earl Jones", "character": "Lt. Lothar Zogg", "id": 15152, "credit_id": "52fe4290c3a36847f80287d3", "cast_id": 23, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 6}, {"name": "Tracy Reed", "character": "Miss Scott", "id": 126354, "credit_id": "52fe4290c3a36847f80287c9", "cast_id": 21, "profile_path": "/mLKogjlAaCAiV4NosrXeHbi35qJ.jpg", "order": 7}, {"name": "Jack Creley", "character": "Mr. Staines", "id": 12485, "credit_id": "52fe4290c3a36847f80287c5", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Frank Berry", "character": "Lt. Dietrich", "id": 1332529, "credit_id": "53a570800e0a26143c0010fc", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Robert O'Neill", "character": "Adm. Randolph", "id": 1236452, "credit_id": "53a570ae0e0a2614450010ce", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Glenn Beck", "character": "Lt. Kivel", "id": 948173, "credit_id": "53e0a47a0e0a265a860068bf", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Roy Stephens", "character": "Frank", "id": 1332531, "credit_id": "53a571170e0a26143c00110b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Shane Rimmer", "character": "Capt. 'Ace' Owens", "id": 10657, "credit_id": "53a571330e0a2614420011a7", "cast_id": 28, "profile_path": "/ctrIOcWLjOB5rocS0vVHEjbS1Sx.jpg", "order": 13}, {"name": "Hal Galili", "character": "Burpelson AFB Defense Team Member", "id": 186212, "credit_id": "53a571490e0a2614320010de", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Paul Tamarin", "character": "Lt. Goldberg", "id": 185044, "credit_id": "53a5715b0e0a2614390010db", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Laurence Herder", "character": "Burpelson AFB Defense Team Member", "id": 1332532, "credit_id": "53a571750e0a26143600107f", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Gordon Tanner", "character": "Gen. Faceman", "id": 117301, "credit_id": "53e0a40e0e0a265a83006a66", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Burnell Tucker", "character": "Mandrake' aide (uncredited)", "id": 184980, "credit_id": "53a572130e0a261436001097", "cast_id": 34, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 18}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4290c3a36847f802876d", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.7, "runtime": 95}, "938": {"poster_path": "/7Ycea564MOyfNcDb3AdsU1brvqO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 15000000, "overview": "Two bounty hunters are in pursuit of \"El Indio\" one of the most wanted fugitives in the western territories, and his gang.", "video": false, "id": 938, "genres": [{"id": 37, "name": "Western"}], "title": "For a Few Dollars More", "tagline": "The man with no name is back... The man in black is waiting... a walking arsenal - he uncoils, strikes and kills!", "vote_count": 332, "homepage": "", "belongs_to_collection": {"backdrop_path": "/a4Lqp3QdEWF6zh740VpBg6yvTZA.jpg", "poster_path": "/lzUZptOL6iQqulMvhB2jfT5GepD.jpg", "id": 48317, "name": "The Man With No Name Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0059578", "adult": false, "backdrop_path": "/oElBniuP4fcYu7kOVXOz0mDdvmu.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Produzioni Europee Associati (PEA)", "id": 7508}], "release_date": "1965-12-18", "popularity": 1.01562949039549, "original_title": "Per qualche dollaro in pi\u00f9", "budget": 600000, "cast": [{"name": "Clint Eastwood", "character": "Monco", "id": 190, "credit_id": "52fe4290c3a36847f802895b", "cast_id": 17, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Lee Van Cleef", "character": "Col. Douglas Mortimer", "id": 4078, "credit_id": "52fe4290c3a36847f802895f", "cast_id": 18, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 1}, {"name": "Gian Maria Volont\u00e9", "character": "El Indio", "id": 14276, "credit_id": "52fe4290c3a36847f8028963", "cast_id": 19, "profile_path": "/fnluody7boW6FHuhXoUmO141BeU.jpg", "order": 2}, {"name": "Klaus Kinski", "character": "Wild", "id": 14277, "credit_id": "52fe4290c3a36847f8028967", "cast_id": 20, "profile_path": "/7gsJB7xlovz1khNID0B8yKA9TO0.jpg", "order": 3}, {"name": "Mara Krupp", "character": "Mary", "id": 14278, "credit_id": "52fe4290c3a36847f802896b", "cast_id": 21, "profile_path": "/igJcs5js0w5ha7CuHBLrd8enMgm.jpg", "order": 4}, {"name": "Luigi Pistilli", "character": "Groggy", "id": 5814, "credit_id": "52fe4290c3a36847f802896f", "cast_id": 22, "profile_path": "/dUgRQX1Ge6JRYZWtFJ2vjAXT8Vi.jpg", "order": 5}, {"name": "Joseph Egger", "character": "Old Prophet", "id": 14279, "credit_id": "52fe4290c3a36847f8028973", "cast_id": 23, "profile_path": "/hmHgePVKgnvurDkzTLsLrXLaJcU.jpg", "order": 6}, {"name": "Panos Papadopulos", "character": "Sancho Perez", "id": 14280, "credit_id": "52fe4290c3a36847f8028977", "cast_id": 24, "profile_path": "/lw3JxRkD9J4BtOn7ObKMeEvr58E.jpg", "order": 7}, {"name": "Benito Stefanelli", "character": "Yuri", "id": 4661, "credit_id": "52fe4290c3a36847f802897b", "cast_id": 25, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 8}, {"name": "Tom\u00e1s Blanco", "character": "Tucumcari sheriff", "id": 544572, "credit_id": "52fe4290c3a36847f802897f", "cast_id": 26, "profile_path": "/mD61xQyubnXkIwVb2GTE9cGjrxU.jpg", "order": 9}, {"name": "Mario Brega", "character": "Nino, Member of Indio's Gang", "id": 16318, "credit_id": "52fe4290c3a36847f8028983", "cast_id": 27, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 10}, {"name": "Aldo Sambrell", "character": "Cuchillio", "id": 49895, "credit_id": "52fe4290c3a36847f8028987", "cast_id": 28, "profile_path": "/AuDVbzviUIWEi9PJAeilFWTf5Xq.jpg", "order": 11}, {"name": "Luis Rodr\u00edguez", "character": "Manuel, Member of Indio's Gang", "id": 1139165, "credit_id": "52fe4290c3a36847f802898b", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Roberto Camardiel", "character": "Tucumcari station clerk", "id": 97114, "credit_id": "52fe4290c3a36847f802898f", "cast_id": 30, "profile_path": "/kSxi647UguAugxevF6uevBWtjvz.jpg", "order": 13}, {"name": "Lorenzo Robledo", "character": "Tomaso, Indio's Traitor", "id": 100930, "credit_id": "52fe4290c3a36847f8028993", "cast_id": 31, "profile_path": "/dcL4hCSPvOoH3ZL0J6dQG7JYoof.jpg", "order": 14}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4290c3a36847f80288fd", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.2, "runtime": 132}, "941": {"poster_path": "/mRXZcSFrf4A4HmGmFBQY8N4oxSC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120207127, "overview": "Veteran buttoned-down LAPD detective Roger Murtaugh is partnered with unhinged cop Martin Riggs, who -- distraught after his wife's death -- has a death wish and takes unnecessary risks with criminals at every turn. The odd couple embark on their first homicide investigation as partners, involving a young woman known to Murtaugh with ties to a drug and prostitution ring.", "video": false, "id": 941, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon", "tagline": "If these two can learn to stand each other... the bad guys don't stand a chance.", "vote_count": 500, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093409", "adult": false, "backdrop_path": "/wi2stpCDJam3dBYdsRTnKmBysXF.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1987-03-05", "popularity": 1.44402163601487, "original_title": "Lethal Weapon", "budget": 15000000, "cast": [{"name": "Mel Gibson", "character": "Sergeant Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028b27", "cast_id": 13, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Sergeant Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028b2b", "cast_id": 14, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Gary Busey", "character": "Mr. Joshua", "id": 2048, "credit_id": "52fe4291c3a36847f8028b2f", "cast_id": 15, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Mitchell Ryan", "character": "General Peter McAllister", "id": 14312, "credit_id": "52fe4291c3a36847f8028b33", "cast_id": 16, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 3}, {"name": "Tom Atkins", "character": "Michael Hunsaker", "id": 11784, "credit_id": "52fe4291c3a36847f8028b37", "cast_id": 17, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 4}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028b3b", "cast_id": 18, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 5}, {"name": "Traci Wolfe", "character": "Rianne Murtaugh", "id": 14314, "credit_id": "52fe4291c3a36847f8028b3f", "cast_id": 19, "profile_path": "/eJWPtc7wxWU0wxzfRi8ybZahsky.jpg", "order": 6}, {"name": "Jackie Swanson", "character": "Amanda Hunsaker", "id": 14315, "credit_id": "52fe4291c3a36847f8028b43", "cast_id": 20, "profile_path": "/vfMg8UD4u3EhzIoclnLgpihaFHO.jpg", "order": 7}, {"name": "Damon Hines", "character": "Nick Murtaugh", "id": 14316, "credit_id": "52fe4291c3a36847f8028b47", "cast_id": 21, "profile_path": "/xFpDZ8OkrzJQQVOTrl2WZ3s7K0t.jpg", "order": 8}, {"name": "Ebonie Smith", "character": "Carrie Murtaugh", "id": 14317, "credit_id": "52fe4291c3a36847f8028b4b", "cast_id": 22, "profile_path": "/1CwobVWob2BCso6Lj3epBvLd1J6.jpg", "order": 9}, {"name": "Gilles Kohler", "character": "Mercenary", "id": 14318, "credit_id": "52fe4291c3a36847f8028b4f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Lycia Naff", "character": "Dixie", "id": 14319, "credit_id": "52fe4291c3a36847f8028b53", "cast_id": 24, "profile_path": "/ggGDSZGOON60nEo47oeqDiZwTvr.jpg", "order": 11}, {"name": "Jack Thibeau", "character": "Sergeant McCaskey", "id": 14320, "credit_id": "52fe4291c3a36847f8028b57", "cast_id": 25, "profile_path": "/ugO5Vb7ZXUz5VMpM9dZghJSt6ui.jpg", "order": 12}, {"name": "Ed O'Ross", "character": "Mendez", "id": 8658, "credit_id": "52fe4291c3a36847f8028b5b", "cast_id": 26, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 13}, {"name": "Don Gordon", "character": "Cop #2", "id": 14062, "credit_id": "52fe4291c3a36847f8028b65", "cast_id": 28, "profile_path": "/oSX1fJ1PY7RzOelwratXJX7kVTQ.jpg", "order": 14}, {"name": "Patrick Cameron", "character": "Cop #1", "id": 194553, "credit_id": "52fe4291c3a36847f8028b69", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Mary Ellen Trainor", "character": "Psychologist", "id": 23967, "credit_id": "52fe4291c3a36847f8028b6d", "cast_id": 30, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 16}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028ae1", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.5, "runtime": 110}, "942": {"poster_path": "/qEYSpENiOoltib1vtFXifGbdNbU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227853986, "overview": "In the opening chase, Martin Riggs and Roger Murtaugh stumble across a trunk full of Krugerrands. They follow the trail to a South African diplomat who's using his immunity to conceal a smuggling operation. When he plants a bomb under Murtaugh's toilet, the action explodes!", "video": false, "id": 942, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon 2", "tagline": "The magic is back!", "vote_count": 304, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "af", "name": "Afrikaans"}], "imdb_id": "tt0097733", "adult": false, "backdrop_path": "/pe3swzDtdJhkqOGIea4lyidnOCM.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1989-07-06", "popularity": 1.30342676158013, "original_title": "Lethal Weapon 2", "budget": 25000000, "cast": [{"name": "Mel Gibson", "character": "Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028c21", "cast_id": 18, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Sergeant Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028c25", "cast_id": 19, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Leo Getz", "id": 4517, "credit_id": "52fe4291c3a36847f8028c29", "cast_id": 20, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Joss Ackland", "character": "Arjen Rudd", "id": 14324, "credit_id": "52fe4291c3a36847f8028c2d", "cast_id": 21, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 3}, {"name": "Derrick O'Connor", "character": "Pieter 'Adolph' Vorstedt", "id": 14325, "credit_id": "52fe4291c3a36847f8028c31", "cast_id": 22, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 4}, {"name": "Patsy Kensit", "character": "Rika van den Haas", "id": 14326, "credit_id": "52fe4291c3a36847f8028c35", "cast_id": 23, "profile_path": "/oCLY2IIAO64vnaGNS8n42rHGjFK.jpg", "order": 5}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028c39", "cast_id": 24, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 6}, {"name": "Steve Kahan", "character": "Captain Ed Murphy", "id": 14328, "credit_id": "52fe4291c3a36847f8028c3d", "cast_id": 25, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 7}, {"name": "Mark Rolston", "character": "Hans", "id": 6576, "credit_id": "52fe4291c3a36847f8028c41", "cast_id": 26, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 8}, {"name": "Jenette Goldstein", "character": "Officer Meagan Shapiro", "id": 3981, "credit_id": "52fe4291c3a36847f8028c45", "cast_id": 27, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 9}, {"name": "Dean Norris", "character": "Tim Cavanaugh", "id": 14329, "credit_id": "52fe4291c3a36847f8028c49", "cast_id": 28, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 10}, {"name": "Juney Smith", "character": "Tom Wyler", "id": 14330, "credit_id": "52fe4291c3a36847f8028c4d", "cast_id": 29, "profile_path": "/ajDBZhChcwETIyCuCbbH3u39l4D.jpg", "order": 11}, {"name": "Nestor Serrano", "character": "Eddie Estaban", "id": 14331, "credit_id": "52fe4291c3a36847f8028c51", "cast_id": 30, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 12}, {"name": "Philip Suriano", "character": "Joseph Ragucci", "id": 14332, "credit_id": "52fe4291c3a36847f8028c55", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Grand L. Bush", "character": "Jerry Collins", "id": 14333, "credit_id": "52fe4291c3a36847f8028c59", "cast_id": 32, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 14}, {"name": "Allan Dean Moore", "character": "George", "id": 14334, "credit_id": "52fe4291c3a36847f8028c5d", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Jack McGee", "character": "Mickey McGee, the Carpenter", "id": 10489, "credit_id": "52fe4291c3a36847f8028c61", "cast_id": 34, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 16}, {"name": "Mary Ellen Trainor", "character": "Police Psychiatrist", "id": 23967, "credit_id": "52fe4291c3a36847f8028c6b", "cast_id": 36, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 17}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028bbd", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.3, "runtime": 114}, "943": {"poster_path": "/4ypm2KfdQuROp0VXbRD4Q6BKilP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 321731527, "overview": "Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action, this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.", "video": false, "id": 943, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon 3", "tagline": "The magic is back again!", "vote_count": 257, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104714", "adult": false, "backdrop_path": "/yNzqW70twGvLLe8WaJKC6KKcwJU.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1992-05-14", "popularity": 1.42714079089657, "original_title": "Lethal Weapon 3", "budget": 35000000, "cast": [{"name": "Mel Gibson", "character": "Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028d21", "cast_id": 21, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028d25", "cast_id": 22, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Leo Getz", "id": 4517, "credit_id": "52fe4291c3a36847f8028d29", "cast_id": 23, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Rene Russo", "character": "Lorna Cole", "id": 14343, "credit_id": "52fe4291c3a36847f8028d2d", "cast_id": 24, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 3}, {"name": "Stuart Wilson", "character": "Jack Travis", "id": 14344, "credit_id": "52fe4291c3a36847f8028d31", "cast_id": 25, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 4}, {"name": "Steve Kahan", "character": "Captain Ed Murphy", "id": 14328, "credit_id": "52fe4291c3a36847f8028d35", "cast_id": 26, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 5}, {"name": "Mary Ellen Trainor", "character": "Stephanie Woods", "id": 23967, "credit_id": "52fe4291c3a36847f8028d39", "cast_id": 27, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 6}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028d3d", "cast_id": 28, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 7}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028cab", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.1, "runtime": 118}, "944": {"poster_path": "/kpC9Y0jhwTqtRlcetxbgn3crnlU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 285444603, "overview": "In the combustible action franchise's final installment, maverick detectives Martin Riggs and Roger Murtaugh square off against Asian mobster Wah Sing Ku, who's up to his neck in slave trading and counterfeit currency. With help from gumshoe Leo Getz and smart-aleck rookie cop Lee Butters, Riggs and Murtaugh aim to take down Ku and his gang.", "video": false, "id": 944, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon 4", "tagline": "The faces you love. The action you expect.", "vote_count": 229, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0122151", "adult": false, "backdrop_path": "/jssTFAf5MCBbZPA02vRSYSeVtHh.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}, {"name": "Donner/Shuler-Donner Productions", "id": 5739}], "release_date": "1998-07-09", "popularity": 1.92787934396955, "original_title": "Lethal Weapon 4", "budget": 140000000, "cast": [{"name": "Mel Gibson", "character": "Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028df9", "cast_id": 19, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028dfd", "cast_id": 20, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Leo Getz", "id": 4517, "credit_id": "52fe4291c3a36847f8028e01", "cast_id": 21, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Rene Russo", "character": "Lorna Cole", "id": 14343, "credit_id": "52fe4291c3a36847f8028e05", "cast_id": 22, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 3}, {"name": "Jet Li", "character": "Wah Sing Ku", "id": 1336, "credit_id": "52fe4291c3a36847f8028e09", "cast_id": 23, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 4}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028e0d", "cast_id": 24, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 5}, {"name": "Traci Wolfe", "character": "Rianne Murtaugh", "id": 14314, "credit_id": "52fe4291c3a36847f8028e11", "cast_id": 25, "profile_path": "/eJWPtc7wxWU0wxzfRi8ybZahsky.jpg", "order": 6}, {"name": "Kim Chan", "character": "Benny Chan", "id": 8400, "credit_id": "52fe4291c3a36847f8028e15", "cast_id": 26, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 7}, {"name": "Steve Kahan", "character": "Captain Ed Murphy", "id": 14328, "credit_id": "52fe4291c3a36847f8028e19", "cast_id": 27, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 8}, {"name": "Damon Hines", "character": "Nick Murtaugh", "id": 14316, "credit_id": "52fe4291c3a36847f8028e1d", "cast_id": 28, "profile_path": "/xFpDZ8OkrzJQQVOTrl2WZ3s7K0t.jpg", "order": 9}, {"name": "Ebonie Smith", "character": "Carrie Murtaugh", "id": 14317, "credit_id": "52fe4291c3a36847f8028e21", "cast_id": 29, "profile_path": "/1CwobVWob2BCso6Lj3epBvLd1J6.jpg", "order": 10}, {"name": "Michael Chow", "character": "Benny's Assistant", "id": 21631, "credit_id": "52fe4291c3a36847f8028e25", "cast_id": 30, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 11}, {"name": "Danny Arroyo", "character": "Gomez", "id": 33386, "credit_id": "52fe4291c3a36847f8028e29", "cast_id": 31, "profile_path": "/fecbbtGoR0PIXKBPnEY1O9BQ8L4.jpg", "order": 12}, {"name": "Elizabeth Sung", "character": "Hong's Wife", "id": 19861, "credit_id": "52fe4291c3a36847f8028e2d", "cast_id": 32, "profile_path": "/m8q9gRb9owm33pDuNlEeC59ck8W.jpg", "order": 13}, {"name": "Chris Rock", "character": "Det.Lee Butters", "id": 2632, "credit_id": "52fe4291c3a36847f8028e31", "cast_id": 33, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 14}, {"name": "Bob Jennings", "character": "Sheriff #1", "id": 113506, "credit_id": "52fe4291c3a36847f8028e35", "cast_id": 34, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 15}, {"name": "Jeanne Chinn", "character": "Ping's Mother", "id": 154675, "credit_id": "52fe4291c3a36847f8028e39", "cast_id": 35, "profile_path": "/wUOjPsPTey0P2F5OSWMcRk0Jvh7.jpg", "order": 16}, {"name": "Conan Lee", "character": "Four Father Michael Sing Ku", "id": 26783, "credit_id": "52fe4291c3a36847f8028e3d", "cast_id": 36, "profile_path": "/xAE76Nkhyqu7BLLTwz4z7w7kcRq.jpg", "order": 17}, {"name": "Mary Ellen Trainor", "character": "Dr. Stephanie Woods", "id": 23967, "credit_id": "52fe4291c3a36847f8028e41", "cast_id": 37, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 18}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028d8f", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.1, "runtime": 127}, "947": {"poster_path": "/we2lCeDzaeExUk68qyTDflHAq5m.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70000000, "overview": "Lawrence of Arabia is the classic film from David Lean starring Peter O\u2019Toole and based on the autobiography from Thomas Edward Lawrence who during the first World War was on assignment by the British Empire in Arabia. The film would become a cult classic and is known today as a masterpiece.", "video": false, "id": 947, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Lawrence of Arabia", "tagline": "A Mighty Motion Picture Of Action And Adventure!", "vote_count": 268, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056172", "adult": false, "backdrop_path": "/aSYxlJmM6393RF77ubSEYVKS5Ip.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Horizon Pictures (II)", "id": 11356}], "release_date": "1962-12-10", "popularity": 0.898581608482337, "original_title": "Lawrence of Arabia", "budget": 15000000, "cast": [{"name": "Peter O'Toole", "character": "T.E. Lawrence", "id": 11390, "credit_id": "52fe4291c3a36847f8028fa1", "cast_id": 18, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 0}, {"name": "Alec Guinness", "character": "Prince Feisal", "id": 12248, "credit_id": "52fe4291c3a36847f8028fa5", "cast_id": 19, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 1}, {"name": "Anthony Quinn", "character": "Auda abu Tayi", "id": 5401, "credit_id": "52fe4291c3a36847f8028fa9", "cast_id": 20, "profile_path": "/9sKpm4KCoUbmMbR86fpqcgBCHrJ.jpg", "order": 2}, {"name": "Jack Hawkins", "character": "General Lord Edmund Allenby", "id": 10018, "credit_id": "52fe4291c3a36847f8028fad", "cast_id": 21, "profile_path": "/7b6E24ZRLEPJwP0WQauXJPt41Fs.jpg", "order": 3}, {"name": "Omar Sharif", "character": "Sherif Ali", "id": 5004, "credit_id": "52fe4291c3a36847f8028fb1", "cast_id": 22, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 4}, {"name": "Claude Rains", "character": "Mr. Dryden", "id": 4113, "credit_id": "52fe4291c3a36847f8028fb5", "cast_id": 23, "profile_path": "/Ai8dxQY9p90n3YO9o3J6iEqxZ04.jpg", "order": 5}, {"name": "Anthony Quayle", "character": "Colonel Brighton", "id": 14371, "credit_id": "52fe4291c3a36847f8028fb9", "cast_id": 24, "profile_path": "/cGxouSdw4SoGE5Soxlj6KnpZObE.jpg", "order": 6}, {"name": "Jos\u00e9 Ferrer", "character": "Turkish Bey", "id": 12515, "credit_id": "52fe4291c3a36847f8028fbd", "cast_id": 25, "profile_path": "/4AeQKvJXTSFrjNtSKm2BFWVHdCr.jpg", "order": 7}, {"name": "Arthur Kennedy", "character": "Jackson Bentley", "id": 11128, "credit_id": "52fe4291c3a36847f8028fc1", "cast_id": 26, "profile_path": "/k8ew7ZMRadQeDyteqt7ZicSySub.jpg", "order": 8}, {"name": "Donald Wolfit", "character": "General Sir Archibald Murray", "id": 14372, "credit_id": "52fe4291c3a36847f8028fc5", "cast_id": 27, "profile_path": "/3lPf8aoBVgWoQc7NhSf8eQ1a5Tg.jpg", "order": 9}, {"name": "Zia Mohyeddin", "character": "Tafas", "id": 14373, "credit_id": "52fe4291c3a36847f8028fc9", "cast_id": 28, "profile_path": "/1oYap4c1e3yVa2iA3AKIISydnco.jpg", "order": 10}, {"name": "I.S. Johar", "character": "Gasim", "id": 35250, "credit_id": "52fe4291c3a36847f8028fcd", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Gamil Ratib", "character": "Majid", "id": 105634, "credit_id": "52fe4291c3a36847f8028fd1", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Michel Ray", "character": "Farraj", "id": 105633, "credit_id": "52fe4291c3a36847f8028fd5", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "John Dimech", "character": "Daud", "id": 105635, "credit_id": "52fe4291c3a36847f8028fd9", "cast_id": 32, "profile_path": null, "order": 14}], "directors": [{"name": "David Lean", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028f43", "profile_path": "/iUTtDo1gl0Phe342xxoPq2w643R.jpg", "id": 12238}], "vote_average": 7.3, "runtime": 216}, "948": {"poster_path": "/vjoOFOTBJcJvA1weJejlZ92LZD4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70000000, "overview": "A psychotic murderer institutionalized since childhood for the murder of his sister, escapes and stalks a bookish teenage girl and her friends while his doctor chases him through the streets.", "video": false, "id": 948, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Halloween", "tagline": "", "vote_count": 250, "homepage": "http://www.halloweenmovies.com/filmarchive/h1plot.htm", "belongs_to_collection": {"backdrop_path": "/mmxf1sOe2T1sma0tH0TgTdcit1p.jpg", "poster_path": "/2uqHV6YcD9jEL2WuJYjXiiuRDqd.jpg", "id": 91361, "name": "Halloween Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077651", "adult": false, "backdrop_path": "/vJHu0oQ35NW4AHUc35DtDK0BZvU.jpg", "production_companies": [{"name": "Compass International Pictures", "id": 14323}, {"name": "Falcon International Productions", "id": 22814}], "release_date": "1978-10-25", "popularity": 0.879914479976346, "original_title": "Halloween", "budget": 300000, "cast": [{"name": "Donald Pleasence", "character": "Dr. Sam Loomis", "id": 9221, "credit_id": "52fe4292c3a36847f8029083", "cast_id": 14, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Laurie Strode", "id": 8944, "credit_id": "52fe4292c3a36847f8029087", "cast_id": 15, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Nancy Kyes", "character": "Annie Brackett", "id": 11787, "credit_id": "52fe4292c3a36847f802908b", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "P.J. Soles", "character": "Lynda van der Klok", "id": 15500, "credit_id": "52fe4292c3a36847f802908f", "cast_id": 17, "profile_path": "/rzPjxFxrTJYtarrBPCw4E21BHBq.jpg", "order": 3}, {"name": "Charles Cyphers", "character": "Sheriff Leigh Brackett", "id": 11786, "credit_id": "52fe4292c3a36847f8029093", "cast_id": 18, "profile_path": "/pglMfoHMVEcziDlnl33DrZjRSM3.jpg", "order": 4}, {"name": "Kyle Richards", "character": "Lindsey Wallace", "id": 15503, "credit_id": "52fe4292c3a36847f8029097", "cast_id": 19, "profile_path": "/zSMK2gkiaV9ld7lDELqo7Wu87DO.jpg", "order": 5}, {"name": "Brian Andrews", "character": "Tommy Doyle", "id": 15505, "credit_id": "52fe4292c3a36847f802909b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "John Michael Graham", "character": "Bob Simms", "id": 15506, "credit_id": "52fe4292c3a36847f802909f", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Nancy Stephens", "character": "Marion Chambers", "id": 15508, "credit_id": "52fe4292c3a36847f80290a3", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Arthur Malet", "character": "Graveyard Keeper", "id": 13392, "credit_id": "52fe4292c3a36847f80290a7", "cast_id": 23, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 9}, {"name": "Mickey Yablans", "character": "Richie", "id": 15510, "credit_id": "52fe4292c3a36847f80290ab", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Brent Le Page", "character": "Lonnie Elamb", "id": 15511, "credit_id": "52fe4292c3a36847f80290af", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Adam Hollander", "character": "Keith", "id": 15513, "credit_id": "52fe4292c3a36847f80290b3", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Robert Phalen", "character": "Dr. Terence Wynn", "id": 15515, "credit_id": "52fe4292c3a36847f80290b7", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Tony Moran", "character": "Michael Myers", "id": 15516, "credit_id": "52fe4292c3a36847f80290bb", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Will Sandin", "character": "Michael Myers (age 6)", "id": 15517, "credit_id": "52fe4292c3a36847f80290bf", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Sandy Johnson", "character": "Judith Margaret Myers", "id": 15518, "credit_id": "52fe4292c3a36847f80290c3", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "David Kyle", "character": "Judith's Boyfriend", "id": 15519, "credit_id": "52fe4292c3a36847f80290c7", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Peter Griffith", "character": "Morgan Strode", "id": 1205471, "credit_id": "52fe4292c3a36847f80290d7", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Nick Castle", "character": "The Shape", "id": 14692, "credit_id": "52fe4292c3a36847f80290db", "cast_id": 35, "profile_path": "/ecUHW93fTzJLCEZcpfvfjgNMi1o.jpg", "order": 19}, {"name": "Barry Bernardi", "character": "Dead Mechanic (uncredited)", "id": 11772, "credit_id": "52fe4292c3a36847f80290df", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "John Carpenter", "character": "Paul, Annie's Boyfriend (voice) (uncredited)", "id": 11770, "credit_id": "52fe4292c3a36847f80290e3", "cast_id": 37, "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "order": 21}, {"name": "George O'Hanlon Jr.", "character": "Mr. Peter Myers (uncredited)", "id": 152289, "credit_id": "52fe4292c3a36847f80290e7", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Darla Rae", "character": "Student (uncredited)", "id": 1205472, "credit_id": "52fe4292c3a36847f80290eb", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Gwen Van Dam", "character": "Sanitarium Nurse (uncredited)", "id": 1205473, "credit_id": "52fe4292c3a36847f80290ef", "cast_id": 40, "profile_path": null, "order": 24}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8029037", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 7.1, "runtime": 91}, "949": {"poster_path": "/zMyfPUelumio3tiDKPffaUpsQTD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 187436818, "overview": "Obsessive master thief Neil McCauley leads a top-notch crew on various daring heists throughout Los Angeles while determined detective Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.", "video": false, "id": 949, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Heat", "tagline": "A Los Angeles crime saga", "vote_count": 509, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0113277", "adult": false, "backdrop_path": "/7RRuRcGuWkZGuRyYugfXn0Fgrrr.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1995-12-15", "popularity": 1.18701569174099, "original_title": "Heat", "budget": 60000000, "cast": [{"name": "Al Pacino", "character": "Lt. Vincent Hanna", "id": 1158, "credit_id": "52fe4292c3a36847f80291f5", "cast_id": 25, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Neil McCauley", "id": 380, "credit_id": "52fe4292c3a36847f80291f9", "cast_id": 26, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Chris Shiherlis", "id": 5576, "credit_id": "52fe4292c3a36847f80291fd", "cast_id": 27, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Jon Voight", "character": "Nate", "id": 10127, "credit_id": "52fe4292c3a36847f8029201", "cast_id": 28, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 3}, {"name": "Tom Sizemore", "character": "Michael Cheritto", "id": 3197, "credit_id": "52fe4292c3a36847f8029205", "cast_id": 29, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 4}, {"name": "Diane Venora", "character": "Justine Hanna", "id": 6200, "credit_id": "52fe4292c3a36847f8029209", "cast_id": 30, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 5}, {"name": "Amy Brenneman", "character": "Eady", "id": 15851, "credit_id": "52fe4292c3a36847f802920d", "cast_id": 31, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 6}, {"name": "Ashley Judd", "character": "Charlene Shiherlis", "id": 15852, "credit_id": "52fe4292c3a36847f8029211", "cast_id": 32, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 7}, {"name": "Mykelti Williamson", "character": "Sergeant Drucker", "id": 34, "credit_id": "52fe4292c3a36847f8029215", "cast_id": 33, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 8}, {"name": "Wes Studi", "character": "Detective Casals", "id": 15853, "credit_id": "52fe4292c3a36847f8029219", "cast_id": 34, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 9}, {"name": "Ted Levine", "character": "Bosko", "id": 15854, "credit_id": "52fe4292c3a36847f802921d", "cast_id": 35, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 10}, {"name": "Dennis Haysbert", "character": "Donald Breedan", "id": 352, "credit_id": "52fe4292c3a36847f8029221", "cast_id": 36, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 11}, {"name": "William Fichtner", "character": "Roger Van Zant", "id": 886, "credit_id": "52fe4292c3a36847f8029225", "cast_id": 37, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 12}, {"name": "Natalie Portman", "character": "Lauren Gustafson", "id": 524, "credit_id": "52fe4292c3a36847f8029229", "cast_id": 38, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 13}, {"name": "Tom Noonan", "character": "Kelso", "id": 119232, "credit_id": "52fe4292c3a36847f802922d", "cast_id": 39, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 14}, {"name": "Tone-L\u014dc", "character": "Richard Torena", "id": 31004, "credit_id": "52fe4292c3a36847f8029237", "cast_id": 41, "profile_path": "/bKiyKnsDJFcaBdI0X23FHqkYrPv.jpg", "order": 15}, {"name": "Hank Azaria", "character": "Alan Marciano", "id": 5587, "credit_id": "52fe4292c3a36847f802923b", "cast_id": 42, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 16}, {"name": "Kevin Gage", "character": "Waingro", "id": 34839, "credit_id": "52fe4292c3a36847f802923f", "cast_id": 43, "profile_path": "/shMqCosEFquPy6qB8RfCCcDPq7M.jpg", "order": 17}, {"name": "Susan Traylor", "character": "Elaine Cheritto", "id": 4158, "credit_id": "52fe4292c3a36847f8029243", "cast_id": 44, "profile_path": "/A3ZpoAui1ure4Nx2b83wUMI8lvv.jpg", "order": 18}, {"name": "Kim Staunton", "character": "Lillian", "id": 17358, "credit_id": "52fe4292c3a36847f8029247", "cast_id": 45, "profile_path": "/9CJmJ5l7DZAtZvdbltalwoV2NfH.jpg", "order": 19}, {"name": "Danny Trejo", "character": "Trejo", "id": 11160, "credit_id": "52fe4292c3a36847f802924b", "cast_id": 46, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 20}, {"name": "Henry Rollins", "character": "Hugh Benny", "id": 9290, "credit_id": "52fe4292c3a36847f802924f", "cast_id": 47, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 21}, {"name": "Jerry Trimble", "character": "Schwartz", "id": 86602, "credit_id": "52fe4292c3a36847f8029253", "cast_id": 48, "profile_path": "/ez0PwSqQwd9WIGNybthklZZFNJ0.jpg", "order": 22}, {"name": "Martin Ferrero", "character": "Construction Clerk", "id": 4790, "credit_id": "52fe4292c3a36847f8029257", "cast_id": 49, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 23}, {"name": "Ricky Harris", "character": "Albert Torena", "id": 158452, "credit_id": "52fe4292c3a36847f802925b", "cast_id": 50, "profile_path": "/eJEzFSHTjGdUz1JDThdTR5C1Jrd.jpg", "order": 24}, {"name": "Begonya Plaza", "character": "Anna Trejo", "id": 181343, "credit_id": "52fe4292c3a36847f802925f", "cast_id": 51, "profile_path": "/2TtFPBtz0Bd3CXAc4W5K6zF66RY.jpg", "order": 25}, {"name": "Hazelle Goodman", "character": "Hooker's Mother", "id": 91756, "credit_id": "52fe4292c3a36847f8029263", "cast_id": 52, "profile_path": "/kTa2cn8cuJdxKJBqFnYHibIknI9.jpg", "order": 26}, {"name": "Ray Buktenica", "character": "Timmons", "id": 160970, "credit_id": "52fe4292c3a36847f8029267", "cast_id": 53, "profile_path": "/aMBLygqfsJv3QrBCvvZ7wMc3Ejq.jpg", "order": 27}, {"name": "Jeremy Piven", "character": "Dr. Bob", "id": 12799, "credit_id": "52fe4292c3a36847f802926b", "cast_id": 54, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 28}, {"name": "Xander Berkeley", "character": "Ralph", "id": 3982, "credit_id": "52fe4292c3a36847f802926f", "cast_id": 55, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 29}, {"name": "Rick Avery", "character": "Armoured Guard", "id": 81687, "credit_id": "52fe4292c3a36847f8029273", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Brad Baldridge", "character": "Children's Hospital Doctor", "id": 1090464, "credit_id": "52fe4292c3a36847f8029277", "cast_id": 57, "profile_path": null, "order": 31}, {"name": "Andrew Camuccio", "character": "Dominick", "id": 1090465, "credit_id": "52fe4292c3a36847f802927b", "cast_id": 58, "profile_path": null, "order": 32}, {"name": "Max Daniels", "character": "Shooter at Drive-in", "id": 175600, "credit_id": "52fe4292c3a36847f802927f", "cast_id": 59, "profile_path": null, "order": 33}, {"name": "Vince Deadrick Jr.", "character": "Driver at Drive-in", "id": 12879, "credit_id": "52fe4292c3a36847f8029283", "cast_id": 60, "profile_path": null, "order": 34}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f802916d", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 7.2, "runtime": 171}, "950": {"poster_path": "/isRuztu5Ch7FJdtSBLcG8QSOpEI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 660940780, "overview": "Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.", "video": false, "id": 950, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age: The Meltdown", "tagline": "The Ice age is melting away.", "vote_count": 865, "homepage": "http://www.iceage2game.com/de/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0438097", "adult": false, "backdrop_path": "/vPotRRx8kdDu7CkFovXovgnfiN4.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2006-03-23", "popularity": 1.439639902457, "original_title": "Ice Age: The Meltdown", "budget": 80000000, "cast": [{"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe4292c3a36847f80292a5", "cast_id": 1, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe4292c3a36847f80292a9", "cast_id": 2, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe4292c3a36847f80292ad", "cast_id": 3, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Ellie (voice)", "id": 15758, "credit_id": "52fe4292c3a36847f80292b1", "cast_id": 4, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Seann William Scott", "character": "Crash (voice)", "id": 57599, "credit_id": "52fe4292c3a36847f80292b5", "cast_id": 5, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 4}, {"name": "Josh Peck", "character": "Eddie (voice)", "id": 15760, "credit_id": "52fe4292c3a36847f80292b9", "cast_id": 6, "profile_path": "/mLQ9fKG7E1PLErgPWRMfIccwOTM.jpg", "order": 5}, {"name": "Jay Leno", "character": "Fast Tony (voice)", "id": 14991, "credit_id": "52fe4292c3a36847f80292bd", "cast_id": 7, "profile_path": "/5sh6KGewnyzNBrvXMsLVKJPVptx.jpg", "order": 6}, {"name": "Will Arnett", "character": "Lone Gunslinger Vulture (voice)", "id": 21200, "credit_id": "53aeba6d0e0a2659750046ad", "cast_id": 19, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 8}, {"name": "Chris Wedge", "character": "Scrat (voice)", "id": 5713, "credit_id": "53aeba8c0e0a26597d00460f", "cast_id": 20, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 9}, {"name": "Peter Ackerman", "character": "Dung Beetle Dad (voice)", "id": 5717, "credit_id": "53aebaa10e0a2659890046a3", "cast_id": 21, "profile_path": "/zlWcU7pKd9904zWe2207Xu3sBrn.jpg", "order": 10}, {"name": "Caitlin Rose Anderson", "character": "Glypto Boy Billy / Beaver Girl (voice)", "id": 1086503, "credit_id": "53aebab90e0a26597d004619", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Connor Anderson", "character": "Rhino Boy / Beaver Boy (voice)", "id": 1335105, "credit_id": "53aebacd0e0a2659890046aa", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Joseph Bologna", "character": "Mr. Start (voice)", "id": 46946, "credit_id": "53aebae20e0a265979004684", "cast_id": 24, "profile_path": "/f1OqZUD63SaIRmjXOtAcoRRehsI.jpg", "order": 13}, {"name": "Jack Crocicchia", "character": "Elk Boy (voice)", "id": 1335106, "credit_id": "53aebaf30e0a265986004514", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Peter DeSeve", "character": "Condor Chick (voice)", "id": 7967, "credit_id": "53aebb0c0e0a26598c0046aa", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f80292c9", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.3, "runtime": 91}, "951": {"poster_path": "/7NkSMYuyVamvCnM5mYD6FkD59Wu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201957688, "overview": "Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match \u2026 in more ways than one.", "video": false, "id": 951, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Kindergarten Cop", "tagline": "Go ahead, you tell him you didn't do your homework.", "vote_count": 126, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0099938", "adult": false, "backdrop_path": "/7wIYKxv1jCl9s5XmWVEWtY8PeBT.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1990-12-20", "popularity": 0.36004561490423, "original_title": "Kindergarten Cop", "budget": 15000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Detective John Kimble", "id": 1100, "credit_id": "52fe4292c3a36847f8029339", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Penelope Ann Miller", "character": "Joyce Palmieri / Rachel Crisp", "id": 14698, "credit_id": "52fe4292c3a36847f80293f7", "cast_id": 41, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 1}, {"name": "Pamela Reed", "character": "Detective Phoebe O'Hara", "id": 14699, "credit_id": "52fe4292c3a36847f802933d", "cast_id": 4, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 2}, {"name": "Linda Hunt", "character": "Miss Schlowski", "id": 12516, "credit_id": "52fe4292c3a36847f8029341", "cast_id": 5, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 3}, {"name": "Richard Tyson", "character": "Cullen Crisp, Sr.", "id": 14700, "credit_id": "52fe4292c3a36847f8029345", "cast_id": 6, "profile_path": "/pwgw79SpPJmn3406s72supF0EdS.jpg", "order": 4}, {"name": "Alix Koromzay", "character": "Cindy", "id": 14707, "credit_id": "52fe4292c3a36847f8029361", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Carroll Baker", "character": "Eleanor Crisp", "id": 14701, "credit_id": "52fe4292c3a36847f8029349", "cast_id": 7, "profile_path": "/flubg7SaCJZdZbuLvtWYv13cAaS.jpg", "order": 6}, {"name": "Cathy Moriarty", "character": "Sylvester's Mother", "id": 14702, "credit_id": "52fe4292c3a36847f802934d", "cast_id": 8, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 7}, {"name": "Joseph Cousins", "character": "Dominic Palmieri", "id": 14703, "credit_id": "52fe4292c3a36847f8029351", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Christian Cousins", "character": "Dominic Palmieri", "id": 73961, "credit_id": "54cc1c90c3a3687f8c0000df", "cast_id": 44, "profile_path": null, "order": 9}, {"name": "Park Overall", "character": "Samantha's Mother", "id": 14704, "credit_id": "52fe4292c3a36847f8029355", "cast_id": 10, "profile_path": "/eRbeKWWY53bTxSNfL3IyC0XfFpW.jpg", "order": 10}, {"name": "Richard Portnow", "character": "Captain Salazar", "id": 4255, "credit_id": "52fe4292c3a36847f8029359", "cast_id": 12, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 11}, {"name": "Tom Kurlander", "character": "Danny", "id": 14706, "credit_id": "52fe4292c3a36847f802935d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Betty Lou Henson", "character": "Keisha's Mother", "id": 14708, "credit_id": "52fe4292c3a36847f8029365", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Jayne Brook", "character": "Zach's Mother", "id": 11627, "credit_id": "52fe4292c3a36847f80293f3", "cast_id": 40, "profile_path": "/adrS4ZwaRgXpnJpV2U7uiFU9Cmd.jpg", "order": 14}, {"name": "Tom Dugan", "character": "Crisp's Lawyer", "id": 1144361, "credit_id": "52fe4292c3a36847f80293fb", "cast_id": 42, "profile_path": "/obQfb3EhWnbxEYK7S0bLZw6oMJ6.jpg", "order": 15}, {"name": "Catherine Reitman", "character": "3rd Grade Student", "id": 154826, "credit_id": "53037a11c3a3680a375c2d8b", "cast_id": 43, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 16}, {"name": "Miko Hughes", "character": "Joseph", "id": 8186, "credit_id": "54cc1dbcc3a3687f84000132", "cast_id": 45, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 17}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f802936b", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.9, "runtime": 111}, "254904": {"poster_path": "/lcg1bkriMVvc8m0jz5zk0yvzVTA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An ex- CIA operative is brought back in on a very personal mission and finds himself pitted against his former pupil in a deadly game involving high level CIA officials and the Russian president-elect.", "video": false, "id": 254904, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The November Man", "tagline": "A Spy is Never Out of the Game", "vote_count": 213, "homepage": "http://thenovemberman.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2402157", "adult": false, "backdrop_path": "/hSvpWAVXC781u5rOgI44799p2WL.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}], "release_date": "2014-08-27", "popularity": 3.42804948792402, "original_title": "The November Man", "budget": 0, "cast": [{"name": "Pierce Brosnan", "character": "Devereaux", "id": 517, "credit_id": "52fe4ed69251416c9113f81d", "cast_id": 4, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Luke Bracey", "character": "Mason", "id": 972356, "credit_id": "52fe4ed69251416c9113f821", "cast_id": 5, "profile_path": "/cfUv5lXfWVlbQeRaD8XZ0WDxqF9.jpg", "order": 1}, {"name": "Olga Kurylenko", "character": "Alice", "id": 18182, "credit_id": "52fe4ed69251416c9113f825", "cast_id": 6, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 2}, {"name": "Bill Smitrovich", "character": "Hanley", "id": 17200, "credit_id": "537d31200e0a2611cb000039", "cast_id": 10, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 3}, {"name": "Amila Terzimehic", "character": "Alexa", "id": 1357023, "credit_id": "53fc26ea0e0a267a75009e93", "cast_id": 24, "profile_path": "/vI5CjM0zLsEICoD7ir1q5EYvcww.jpg", "order": 4}, {"name": "Lazar Ristovski", "character": "Arkady Federov", "id": 70874, "credit_id": "537d31480e0a2611cb000041", "cast_id": 14, "profile_path": "/pANyfGd5U8eABBuZ6qoJSIWo6uc.jpg", "order": 5}, {"name": "Mediha Musliovic", "character": "Natalia Ulanova", "id": 1357024, "credit_id": "53fc26f70e0a267a69009e47", "cast_id": 25, "profile_path": "/pLbFf22WODxGsLplAK3AlK4gmIs.jpg", "order": 6}, {"name": "Eliza Taylor", "character": "Sarah", "id": 1213278, "credit_id": "537d30e80e0a2611cb00002d", "cast_id": 7, "profile_path": "/cmIohYx420e2VTlIyAGuNdv7si0.jpg", "order": 7}, {"name": "Caterina Scorsone", "character": "Celia", "id": 81684, "credit_id": "537d310c0e0a2611d100003c", "cast_id": 8, "profile_path": "/sR4fRd9fIEAnMR2ONWBxqpycdSx.jpg", "order": 8}, {"name": "Akie Kotabe", "character": "Meyers", "id": 1322309, "credit_id": "537d31510e0a2611c100004e", "cast_id": 15, "profile_path": "/kML3sC3PH4BolXQBYkpY44p6G4a.jpg", "order": 9}, {"name": "Will Patton", "character": "Perry Weinstein", "id": 883, "credit_id": "537d31160e0a2611d7000042", "cast_id": 9, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 10}, {"name": "Patrick Kennedy", "character": "Edgar Simpson", "id": 14432, "credit_id": "537d312b0e0a2611c1000047", "cast_id": 11, "profile_path": "/hWeYeOkoBBUlRLmmOGGwkZf22Lz.jpg", "order": 11}, {"name": "Dragan Marinkovi\u0107", "character": "Denisov", "id": 1050079, "credit_id": "53fc27060e0a267a78009a43", "cast_id": 26, "profile_path": "/5pvabT3awsenFlHK68iDHDvRcti.jpg", "order": 12}, {"name": "Ben Willens", "character": "Agent Jones", "id": 1357025, "credit_id": "53fc27100e0a267a69009e4e", "cast_id": 27, "profile_path": "/zvUKe34Z9KjgvyENs0TO6JN0PoT.jpg", "order": 13}, {"name": "Milo\u0161 Timotijevi\u0107", "character": "Fderov's Chief of Staff", "id": 938096, "credit_id": "537d31680e0a2611d400004d", "cast_id": 17, "profile_path": "/61W1hJQlBfGMpFgaElEGigXihRc.jpg", "order": 14}, {"name": "Dragan Dvojakovic", "character": "Ambassador", "id": 1410525, "credit_id": "54ae4483925141787900119c", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Tara Jevrosimovic", "character": "Lucy", "id": 1410529, "credit_id": "54ae44e1c3a368404f000e7d", "cast_id": 30, "profile_path": "/tiKPuHPwPqE8F7mxP44M2SSoy1R.jpg", "order": 16}, {"name": "Nina Mrdja", "character": "Mira Filipova (15 years)", "id": 1410530, "credit_id": "54ae4640c3a36842c60010bb", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Greg De Cuir", "character": "CIA Operator #1", "id": 1102409, "credit_id": "54ae473cc3a368666a00104a", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Steve Shapiro", "character": "CIA Operator #2", "id": 94467, "credit_id": "54ae4a14c3a3682f9d001326", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Ben Dimmock", "character": "CIA Operator #3", "id": 1410538, "credit_id": "54ae4adb92514114a1000e5e", "cast_id": 34, "profile_path": "/qIV9muwr9VeTSxde7CSXlTUNiIT.jpg", "order": 20}, {"name": "Justin Chapman", "character": "CIA Cleaner #1", "id": 1410997, "credit_id": "54af8c8a9251414afd0015ee", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Chad Z. King", "character": "CIA Cleaner #2", "id": 1411004, "credit_id": "54af8ec1c3a368399e003c60", "cast_id": 36, "profile_path": "/i3Ct2F2mDa2hjlU7cAOBFapM1cr.jpg", "order": 22}, {"name": "Marija Daki\u0107", "character": "Michelle (Barmaid)", "id": 1050208, "credit_id": "54af915f9251414aee001408", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Petar Bencina", "character": "Russian Thug at KGB Club", "id": 1411010, "credit_id": "54af91bdc3a3683fba003a35", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Milutin Milo\u0161evi\u0107", "character": "Serbian Hacker", "id": 88052, "credit_id": "54af93b5c3a3683fba003a75", "cast_id": 39, "profile_path": "/iiRpc2IlTnXEpw42snIvHd1UMhb.jpg", "order": 25}, {"name": "Nina Jankovi\u0107", "character": "Young Attractive Woman", "id": 226142, "credit_id": "54af9503c3a368226e001896", "cast_id": 40, "profile_path": "/vsj9FPC4FYZzDpAh5qcb4vteqdp.jpg", "order": 26}, {"name": "Jadranka Bugarski", "character": "Newscaster (O / S Ministry)", "id": 1411025, "credit_id": "54af955bc3a3682e4000152f", "cast_id": 41, "profile_path": null, "order": 27}, {"name": "Miodrag Stojanovic", "character": "Reporter #4 (O / S Ministry)", "id": 1411031, "credit_id": "54af9642c3a3682e4000154b", "cast_id": 42, "profile_path": null, "order": 28}, {"name": "Nina Lazarevic", "character": "Reporter #3 (O / S Ministry)", "id": 1411034, "credit_id": "54af96b29251414ae5001556", "cast_id": 43, "profile_path": null, "order": 29}, {"name": "Tijana Plemic", "character": "Reporter #2 (O / S Ministry)", "id": 1411037, "credit_id": "54af96fe9251414ae500155b", "cast_id": 44, "profile_path": null, "order": 30}, {"name": "Nebojsa Djordjevic", "character": "Reporter #1 (O / S Ministry)", "id": 1411050, "credit_id": "54af97f2c3a368399e003d7d", "cast_id": 45, "profile_path": null, "order": 31}, {"name": "Marko Markovic", "character": "Russian Security Guard", "id": 1411059, "credit_id": "54af99809251414a3d00145f", "cast_id": 46, "profile_path": null, "order": 32}, {"name": "Ilija Labalo", "character": "CIA Agent (scanner guy)", "id": 1411060, "credit_id": "54af9a359251414ae50015c1", "cast_id": 47, "profile_path": null, "order": 33}, {"name": "Mark Mottram", "character": "CIA Agent - Jake", "id": 1411061, "credit_id": "54af9ad8c3a3687744001f39", "cast_id": 48, "profile_path": null, "order": 34}, {"name": "Yulia Martynyuk", "character": "Station Ticket Clerk", "id": 1411062, "credit_id": "54af9b4ec3a3682e400015c1", "cast_id": 49, "profile_path": null, "order": 35}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4ed69251416c9113f80d", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 6.1, "runtime": 108}, "953": {"poster_path": "/yumzX3Fn7geEKEjuAGNcRjZETPE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 532680671, "overview": "Zoo animals leave the comforts of man-made habitats for exotic adventure in this animated family film. After escaping from the zoo, four friends -- a lion, a hippo, a zebra and a giraffe -- are sent back to Africa. When their ship capsizes, stranding them on Madagascar, an island populated by crazy critters, the pals must adapt to jungle life and their new roles as wild animals.", "video": false, "id": 953, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Madagascar", "tagline": "It's All Some Type Of Whacked Out Conspiracy.", "vote_count": 1442, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0351283", "adult": false, "backdrop_path": "/aGIEgcIqVtGRPULbc3CJnTk5BRv.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2005-05-26", "popularity": 1.80502386625882, "original_title": "Madagascar", "budget": 75000000, "cast": [{"name": "Ben Stiller", "character": "Alex", "id": 7399, "credit_id": "52fe4292c3a36847f8029415", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Chris Rock", "character": "Marty", "id": 2632, "credit_id": "52fe4292c3a36847f8029419", "cast_id": 2, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Melman", "id": 14409, "credit_id": "52fe4292c3a36847f802941d", "cast_id": 3, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Jada Pinkett Smith", "character": "Gloria", "id": 9575, "credit_id": "52fe4292c3a36847f8029421", "cast_id": 4, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 3}, {"name": "Sacha Baron Cohen", "character": "Julien", "id": 6730, "credit_id": "52fe4292c3a36847f8029425", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 4}, {"name": "Paco Le\u00f3n", "character": "como Alex", "id": 224870, "credit_id": "52fe4292c3a36847f8029435", "cast_id": 8, "profile_path": "/o3v5983Wi6UUsEts0da2pV42dA9.jpg", "order": 5}, {"name": "Cedric the Entertainer", "character": "Maurice", "id": 5726, "credit_id": "53af3b530e0a265989005130", "cast_id": 11, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 6}, {"name": "Andy Richter", "character": "Mort", "id": 28637, "credit_id": "53af3b670e0a26597d005116", "cast_id": 12, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 7}, {"name": "Tom McGrath", "character": "Skipper / Fossa / Panicky Man on Subway", "id": 18864, "credit_id": "53af3b800e0a26597d00511a", "cast_id": 13, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 8}, {"name": "Christopher Knights", "character": "Private", "id": 12097, "credit_id": "53af3b980e0a265975005125", "cast_id": 14, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 9}, {"name": "Chris Miller", "character": "Kowalski", "id": 12098, "credit_id": "53af3bb40e0a26598900513f", "cast_id": 15, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 10}, {"name": "Conrad Vernon", "character": "Mason", "id": 12080, "credit_id": "53af3bcf0e0a265986004faf", "cast_id": 16, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 11}, {"name": "Eric Darnell", "character": "Zoo Announcer / Lemur #1 / Fossa / Subway Car Announcer", "id": 18863, "credit_id": "53af3bee0e0a26597500512b", "cast_id": 17, "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "order": 12}, {"name": "David Cowgill", "character": "Police Horse", "id": 60232, "credit_id": "53af3c340e0a26598900514a", "cast_id": 18, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 13}, {"name": "Elisa Gabrielli", "character": "Old Lady", "id": 64445, "credit_id": "53af3c6a0e0a26597d00512c", "cast_id": 20, "profile_path": "/u2e1WxQ6ML5NlNcj4XLSEvYBahG.jpg", "order": 15}, {"name": "Stephen Apostolina", "character": "Police Officer (as Steve Apostolina)", "id": 1340665, "credit_id": "55351a7ac3a3682dc20023ab", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Devika Parikh", "character": "News Reporter", "id": 582209, "credit_id": "55351aea925141388b00179c", "cast_id": 24, "profile_path": "/tch3IyCHrmluh63CvY5h00960TO.jpg", "order": 17}, {"name": "David P. Smith", "character": "Spider / Lemur #2", "id": 1077844, "credit_id": "55351b56925141675e001ff3", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Cody Cameron", "character": "Willie", "id": 12095, "credit_id": "55351b8592514125dc003c5d", "cast_id": 26, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 19}, {"name": "Bob Saget", "character": "Zoo Animal", "id": 72450, "credit_id": "55351bbcc3a36848ca0067f7", "cast_id": 27, "profile_path": "/nWWoeqvwPWv21jnEbPoGFpM0s1n.jpg", "order": 20}, {"name": "Jan Josef Liefers", "character": "Alex", "id": 1852, "credit_id": "55351c029251417eb8001a0c", "cast_id": 28, "profile_path": "/9An5cSGFByHYYKAWHcqDyb9rJkE.jpg", "order": 21}, {"name": "Bastian Pastewka", "character": "Melman", "id": 16815, "credit_id": "55351c4e9251417eb8001a14", "cast_id": 29, "profile_path": "/m4MxiIeMyu8sQRhSfN4hIHrw7Ks.jpg", "order": 22}, {"name": "Jeffrey Katzenberg", "character": "Rico (uncredited)", "id": 12062, "credit_id": "55351c88c3a3682dc20023d5", "cast_id": 30, "profile_path": null, "order": 23}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f802942b", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f8029431", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}], "vote_average": 6.2, "runtime": 86}, "954": {"poster_path": "/1PVKS17pIBFsIhgFws2uagPDNLW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 457696359, "overview": "When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.", "video": false, "id": 954, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible", "tagline": "Expect the Impossible.", "vote_count": 1036, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}], "imdb_id": "tt0117060", "adult": false, "backdrop_path": "/7CiZuIPCLvhhMICT2PONuwr2BMG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "1996-05-21", "popularity": 1.40580641650526, "original_title": "Mission: Impossible", "budget": 80000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe4293c3a36847f8029509", "cast_id": 22, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jon Voight", "character": "Jim Phelps", "id": 10127, "credit_id": "52fe4293c3a36847f802950d", "cast_id": 23, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Emmanuelle B\u00e9art", "character": "Claire Phelps", "id": 4885, "credit_id": "52fe4293c3a36847f8029511", "cast_id": 24, "profile_path": "/dICNGDe2Sgz73Febl0TJZpEKO9f.jpg", "order": 2}, {"name": "Henry Czerny", "character": "Eugene Kittridge", "id": 15319, "credit_id": "52fe4293c3a36847f8029515", "cast_id": 25, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 3}, {"name": "Jean Reno", "character": "Franz Krieger", "id": 1003, "credit_id": "52fe4293c3a36847f8029519", "cast_id": 26, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe4293c3a36847f802951d", "cast_id": 27, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 5}, {"name": "Kristin Scott Thomas", "character": "Sarah Davies", "id": 5470, "credit_id": "52fe4293c3a36847f8029521", "cast_id": 28, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 6}, {"name": "Vanessa Redgrave", "character": "Max", "id": 13333, "credit_id": "52fe4293c3a36847f8029525", "cast_id": 29, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 7}, {"name": "Dale Dye", "character": "Frank Barnes", "id": 3211, "credit_id": "52fe4293c3a36847f8029529", "cast_id": 30, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 8}, {"name": "Marcel Iures", "character": "Alexander Golitsyn", "id": 15320, "credit_id": "52fe4293c3a36847f802952d", "cast_id": 31, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 9}, {"name": "Ion Caramitru", "character": "Zozimov", "id": 15321, "credit_id": "52fe4293c3a36847f8029531", "cast_id": 32, "profile_path": "/lHgFi4CUYavMKVW7xTbHj4CoMEn.jpg", "order": 10}, {"name": "Ingeborga Dapkunaite", "character": "Hannah Williams", "id": 14593, "credit_id": "52fe4293c3a36847f8029535", "cast_id": 33, "profile_path": "/hVqzjEBJiaYp9sTJA4IXNLJtLK2.jpg", "order": 11}, {"name": "Valentina Yakunina", "character": "Drunken Female IMF Agent", "id": 15322, "credit_id": "52fe4293c3a36847f8029539", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Marek Va\u0161ut", "character": "Drunken Male IMF Agent", "id": 10849, "credit_id": "52fe4293c3a36847f802953d", "cast_id": 35, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 13}, {"name": "Nathan Osgood", "character": "Kittridge Technician", "id": 15323, "credit_id": "52fe4293c3a36847f8029541", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Keith Campbell", "character": "Fireman (uncredited)", "id": 15318, "credit_id": "53b94ecdc3a3685eb70055d7", "cast_id": 41, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 15}, {"name": "Emilio Estevez", "character": "Jack Harmen", "id": 2880, "credit_id": "548621b0925141656f000168", "cast_id": 42, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f8029493", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 6.3, "runtime": 110}, "955": {"poster_path": "/RXZPty2YYMPLQ6KHC47li2laRP.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 546388105, "overview": "With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.", "video": false, "id": 955, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible II", "tagline": "Expect the impossible again", "vote_count": 702, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120755", "adult": false, "backdrop_path": "/bDdVZNvxb670EMlZqeIy6RdyJ4V.jpg", "production_companies": [{"name": "Munich Film Partners & Company (MFP) MI2 Productions", "id": 51199}, {"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2000-05-23", "popularity": 0.931769214600103, "original_title": "Mission: Impossible II", "budget": 125000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe4293c3a36847f8029665", "cast_id": 31, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Dougray Scott", "character": "Sean Ambrose", "id": 15336, "credit_id": "52fe4293c3a36847f8029669", "cast_id": 32, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 1}, {"name": "Thandie Newton", "character": "Nyah Nordoff-Hall", "id": 9030, "credit_id": "52fe4293c3a36847f802966d", "cast_id": 33, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe4293c3a36847f8029671", "cast_id": 34, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Richard Roxburgh", "character": "Hugh Stamp", "id": 12206, "credit_id": "52fe4293c3a36847f8029675", "cast_id": 35, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 4}, {"name": "John Polson", "character": "Billy Baird", "id": 15337, "credit_id": "52fe4293c3a36847f8029679", "cast_id": 36, "profile_path": "/l5NGqc8aLYuw6RUpI0ko7Cdv41e.jpg", "order": 5}, {"name": "Brendan Gleeson", "character": "John C. McCloy", "id": 2039, "credit_id": "52fe4293c3a36847f802967d", "cast_id": 37, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 6}, {"name": "Rade \u0160erbed\u017eija", "character": "Dr. Nekhorvich", "id": 1118, "credit_id": "52fe4293c3a36847f8029681", "cast_id": 38, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 7}, {"name": "William Mapother", "character": "Wallis", "id": 15338, "credit_id": "52fe4293c3a36847f8029685", "cast_id": 39, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 8}, {"name": "Dominic Purcell", "character": "Ulrich", "id": 10862, "credit_id": "52fe4293c3a36847f8029689", "cast_id": 40, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 9}, {"name": "Mathew Wilkinson", "character": "Michael", "id": 15339, "credit_id": "52fe4293c3a36847f802968d", "cast_id": 41, "profile_path": "/8xB7nXqIh6qyiS6rSTu0d6SZSV4.jpg", "order": 10}, {"name": "Nicholas Bell", "character": "Accountant", "id": 15340, "credit_id": "52fe4293c3a36847f8029691", "cast_id": 42, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 11}, {"name": "Cristina Brogeras", "character": "Flamenco Dancer", "id": 15341, "credit_id": "52fe4293c3a36847f8029695", "cast_id": 43, "profile_path": null, "order": 12}, {"name": "Kee Chan", "character": "Chemist", "id": 15342, "credit_id": "52fe4293c3a36847f8029699", "cast_id": 44, "profile_path": "/daRXLJaABxXgHK65IKlsqvyrG12.jpg", "order": 13}, {"name": "Kim Fleming", "character": "Larrabee", "id": 15343, "credit_id": "52fe4293c3a36847f802969d", "cast_id": 45, "profile_path": "/xL8QA3ty9HVMrot2JFeSNY90SPb.jpg", "order": 14}, {"name": "Anthony Hopkins", "character": "Mission Commander Swanbeck", "id": 4173, "credit_id": "52fe4293c3a36847f80296a7", "cast_id": 47, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 15}, {"name": "Christian Manon", "character": "Dr. Gradsky", "id": 1451740, "credit_id": "5525aaadc3a3687e0e00250f", "cast_id": 48, "profile_path": null, "order": 16}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe4293c3a36847f80296a3", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.7, "runtime": 123}, "956": {"poster_path": "/5tMxKlzRSvA6HoPAuFRcEMoEZsY.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 395668139, "overview": "Retired from active duty to train new IMF agents, Ethan Hunt is called back into action to confront sadistic arms dealer Owen Davian. Hunt must try to protect his girlfriend while working with his new team to complete the mission.", "video": false, "id": 956, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible III", "tagline": "The Mission Begins 05:05:06.", "vote_count": 725, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0317919", "adult": false, "backdrop_path": "/kOELgNnVt6EGCjtDXx85YUw6p8X.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Studio Babelsberg", "id": 264}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "The Fourth Production Company Film Group", "id": 22102}], "release_date": "2006-05-04", "popularity": 1.96999017151525, "original_title": "Mission: Impossible III", "budget": 150000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe4293c3a36847f802977d", "cast_id": 23, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Owen Davian", "id": 1233, "credit_id": "52fe4293c3a36847f8029781", "cast_id": 24, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe4293c3a36847f8029785", "cast_id": 25, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 2}, {"name": "Billy Crudup", "character": "Musgrave", "id": 8289, "credit_id": "52fe4293c3a36847f8029789", "cast_id": 26, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 3}, {"name": "Jonathan Rhys Meyers", "character": "Declan", "id": 1244, "credit_id": "52fe4293c3a36847f802978d", "cast_id": 27, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 4}, {"name": "Michelle Monaghan", "character": "Julia", "id": 11705, "credit_id": "52fe4293c3a36847f8029791", "cast_id": 28, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 5}, {"name": "Keri Russell", "character": "Lindsey Farris", "id": 41292, "credit_id": "52fe4293c3a36847f8029795", "cast_id": 29, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 6}, {"name": "Maggie Q", "character": "Zhen", "id": 21045, "credit_id": "52fe4293c3a36847f8029799", "cast_id": 30, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 7}, {"name": "Simon Pegg", "character": "Benji", "id": 11108, "credit_id": "52fe4293c3a36847f802979d", "cast_id": 31, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 8}, {"name": "Aaron Paul", "character": "Rick", "id": 84497, "credit_id": "52fe4293c3a36847f80297a1", "cast_id": 32, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 9}, {"name": "Laurence Fishburne", "character": "Theodore Brassel", "id": 2975, "credit_id": "52fe4293c3a36847f80297b7", "cast_id": 36, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 10}, {"name": "Rose Rollins", "character": "Ellie", "id": 1219489, "credit_id": "52fe4293c3a36847f80297bb", "cast_id": 37, "profile_path": "/vEd9E5kVW17pwN4LFj3JG3ivAfw.jpg", "order": 11}, {"name": "Bahar Soomekh", "character": "Davian's Translator", "id": 2677, "credit_id": "52fe4293c3a36847f80297bf", "cast_id": 38, "profile_path": "/l3tlQiTmny4jjWidesht3nlt6sW.jpg", "order": 12}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe4293c3a36847f80296fb", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 6.1, "runtime": 126}, "957": {"poster_path": "/xWt9KAcToCRdJ6JH8JyZZlhkVgG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38119483, "overview": "When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of \"The Schwartz.\" Can he master it in time to save the day?", "video": false, "id": 957, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Spaceballs", "tagline": "May the schwartz be with you", "vote_count": 269, "homepage": "http://www.mgm.com/view/movie/1873/Spaceballs/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094012", "adult": false, "backdrop_path": "/mMblxwsvvJ9wu8CVXVVjX4MBuN2.jpg", "production_companies": [{"name": "Brooksfilms Ltd.", "id": 617}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1987-06-24", "popularity": 0.957526755494537, "original_title": "Spaceballs", "budget": 22700000, "cast": [{"name": "Mel Brooks", "character": "President Skroob/Yoghurt", "id": 14639, "credit_id": "52fe4293c3a36847f8029887", "cast_id": 24, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 0}, {"name": "Rick Moranis", "character": "Dark Helmet", "id": 8872, "credit_id": "52fe4293c3a36847f802988b", "cast_id": 26, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 1}, {"name": "Bill Pullman", "character": "Lone Starr", "id": 8984, "credit_id": "52fe4293c3a36847f802988f", "cast_id": 27, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 2}, {"name": "Daphne Zuniga", "character": "Princess Vespa", "id": 14668, "credit_id": "52fe4293c3a36847f8029893", "cast_id": 28, "profile_path": "/wwjs9c04v4phsLkMMCCVtlDjIP0.jpg", "order": 3}, {"name": "John Candy", "character": "Barfolemew 'Barf'", "id": 7180, "credit_id": "52fe4293c3a36847f8029897", "cast_id": 29, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 4}, {"name": "George Wyner", "character": "Colonel Sandurz", "id": 14669, "credit_id": "52fe4293c3a36847f802989b", "cast_id": 30, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 5}, {"name": "Joan Rivers", "character": "Dot Matrix (voice)", "id": 14670, "credit_id": "52fe4293c3a36847f802989f", "cast_id": 31, "profile_path": "/5BrrmJsKaDABJJWmAWKSzkaa1On.jpg", "order": 6}, {"name": "Dick Van Patten", "character": "King Roland", "id": 14671, "credit_id": "52fe4293c3a36847f80298a3", "cast_id": 32, "profile_path": "/gZumTJacsExMTwMwNCAQ54i2k2l.jpg", "order": 7}, {"name": "Michael Winslow", "character": "Radar Technician", "id": 14672, "credit_id": "52fe4293c3a36847f80298a7", "cast_id": 33, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 8}, {"name": "Lorene Yarnell Jansson", "character": "Dot Matrix", "id": 14673, "credit_id": "52fe4293c3a36847f80298ab", "cast_id": 34, "profile_path": "/uKPyEiHbdMUFjmZSb1FTBUvmDGV.jpg", "order": 9}, {"name": "John Hurt", "character": "Kane", "id": 5049, "credit_id": "52fe4293c3a36847f80298af", "cast_id": 35, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 10}, {"name": "Ed Gale", "character": "Dink #1", "id": 1471, "credit_id": "52fe4293c3a36847f80298b3", "cast_id": 36, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 11}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe4293c3a36847f802980b", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 6.5, "runtime": 96}, "82881": {"poster_path": "/xCpSU2tyeBkhVzTqXht8ClutMkn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The kingdom is in a festive mood as everyone gathers for the royal wedding of Rapunzel and Flynn. However, when Pascal and Maximus, as flower chameleon and ring bearer, respectively, lose the gold bands, a frenzied search and recovery mission gets underway. As the desperate duo tries to find the rings before anyone discovers that they\u2019re missing, they leave behind a trail of comical chaos that includes flying lanterns, a flock of doves, a wine barrel barricade and a very sticky finale. Will Maximus and Pascal save the day and make it to the church in time? And will they ever get Flynn\u2019s nose right?", "video": false, "id": 82881, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Tangled Ever After", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hz2V5ArAbox1dq0vu78ARGaTVLC.jpg", "poster_path": "/hp1djgq1YgewS9HzTczTUPDwOJQ.jpg", "id": 129777, "name": "Tangled Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2112281", "adult": false, "backdrop_path": "/2v0KYmFWysQSnrK4Bnwe8egrMMo.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2012-01-13", "popularity": 0.612485425049145, "original_title": "Tangled Ever After", "budget": 0, "cast": [{"name": "Mandy Moore", "character": "Rapunzel (voice)", "id": 16855, "credit_id": "52fe487a9251416c9108dd2f", "cast_id": 6, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Zachary Levi", "character": "Flynn Rider (voice)", "id": 69899, "credit_id": "52fe487a9251416c9108dd2b", "cast_id": 3, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 1}, {"name": "Alan Dale", "character": "Priest (voice)", "id": 52760, "credit_id": "550d8004925141469c005ad7", "cast_id": 21, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 2}, {"name": "Paul F. Tompkins", "character": "Short Thug (voice)", "id": 1219029, "credit_id": "550d801ec3a368487d005e70", "cast_id": 22, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 3}, {"name": "Kari Wahlgren", "character": "Queen (voice)", "id": 116315, "credit_id": "52fe487a9251416c9108dd33", "cast_id": 9, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 4}, {"name": "Mark Allan Stewart", "character": "Dove Caller (voice)", "id": 649103, "credit_id": "52fe487a9251416c9108dd3b", "cast_id": 11, "profile_path": "/jmn31dR3U7qoAQLBlcyCTg04eqU.jpg", "order": 5}, {"name": "Byron Howard", "character": "Lantern Wrangler / Chef (voice)", "id": 76595, "credit_id": "550d804292514146910059a1", "cast_id": 23, "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "order": 6}, {"name": "Nathan Greno", "character": "Maximus / Guard / Stabbington Brothers (voice)", "id": 121830, "credit_id": "550d805192514146910059ad", "cast_id": 24, "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "order": 7}, {"name": "Matt Nolan", "character": "Frying Pan Caller (voice)", "id": 159720, "credit_id": "52fe487a9251416c9108dd37", "cast_id": 10, "profile_path": "/9zUwjviDEOv8KCBHWA0x2RzmQTL.jpg", "order": 8}, {"name": "Robert Bagnell", "character": "Additional Voices", "id": 65715, "credit_id": "550d806292514133c3003975", "cast_id": 25, "profile_path": "/pUDVP9u5cGrpVkufCnG4V8Y49Mu.jpg", "order": 9}, {"name": "Erin Matthews", "character": "Additional Voices", "id": 1219571, "credit_id": "550d807092514135540036e1", "cast_id": 26, "profile_path": "/Albqf0VZEr26GsjiqJvYULw1zwn.jpg", "order": 10}], "directors": [{"name": "Nathan Greno", "department": "Directing", "job": "Director", "credit_id": "52fe487a9251416c9108dd21", "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "id": 121830}, {"name": "Byron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe487a9251416c9108dd27", "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "id": 76595}], "vote_average": 7.2, "runtime": 6}, "963": {"poster_path": "/95OOYSeegOX4XW8nAeFJSIdxfM4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Spade and Archer is the name of a San Francisco detective agency. That's for Sam Spade and Miles Archer. The two men are partners, but Sam doesn't like Miles much. A knockout, who goes by the name of Miss Wanderly, walks into their office; and by that night everything's changed. Miles is dead. And so is a man named Floyd Thursby. It seems Miss Wanderly is surrounded by dangerous men. There's Joel Cairo, who uses gardenia-scented calling cards. There's Kasper Gutman, with his enormous girth and feigned civility. Her only hope of protection comes from Sam, who is suspected by the police of one or the other murder. More murders are yet to come.", "video": false, "id": 963, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Maltese Falcon", "tagline": "A story as EXPLOSIVE as his BLAZING automatics!", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0033870", "adult": false, "backdrop_path": "/hQGUl6rlAfUFifCLb9bukpJH42P.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1941-11-18", "popularity": 0.499851456156789, "original_title": "The Maltese Falcon", "budget": 300000, "cast": [{"name": "Humphrey Bogart", "character": "Sam Spade", "id": 4110, "credit_id": "52fe4294c3a36847f8029a27", "cast_id": 13, "profile_path": "/pxJrZluJHhbWRo2QXAG99FvXUi7.jpg", "order": 0}, {"name": "Mary Astor", "character": "Brigid O'Shaughnessy", "id": 13992, "credit_id": "52fe4294c3a36847f8029a2f", "cast_id": 15, "profile_path": "/h6nd8EAMJANSYsuQmzyH04eanNC.jpg", "order": 1}, {"name": "Gladys George", "character": "Iva Archer", "id": 14450, "credit_id": "52fe4294c3a36847f8029a33", "cast_id": 16, "profile_path": "/8mjhWiDqESi3dTRtFGkC94h2E7g.jpg", "order": 2}, {"name": "Peter Lorre", "character": "Joel Cairo", "id": 2094, "credit_id": "52fe4294c3a36847f8029a2b", "cast_id": 14, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 3}, {"name": "Barton MacLane", "character": "Det. Lt. Dundy", "id": 14451, "credit_id": "52fe4294c3a36847f8029a37", "cast_id": 17, "profile_path": "/jwCdgDltePRQWELXZ8wTtC4Qr9c.jpg", "order": 4}, {"name": "Lee Patrick", "character": "Effie Perine", "id": 5740, "credit_id": "52fe4294c3a36847f8029a3b", "cast_id": 18, "profile_path": "/sRGpSavd3VNZpzywoQMeS1D1cxM.jpg", "order": 5}, {"name": "Sydney Greenstreet", "character": "Kasper Gutman", "id": 4114, "credit_id": "52fe4294c3a36847f8029a3f", "cast_id": 19, "profile_path": "/tXSc0cmUmsMqbR3A3xbevNfp3N7.jpg", "order": 6}, {"name": "Ward Bond", "character": "Det. Tom Polhaus", "id": 4303, "credit_id": "52fe4294c3a36847f8029a43", "cast_id": 20, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 7}, {"name": "Jerome Cowan", "character": "Miles Archer", "id": 14452, "credit_id": "52fe4294c3a36847f8029a47", "cast_id": 21, "profile_path": "/yf46DNcfERNESHxNG6cKFNBVk3U.jpg", "order": 8}, {"name": "Elisha Cook Jr.", "character": "Wilmer Cook", "id": 3339, "credit_id": "52fe4294c3a36847f8029a4b", "cast_id": 22, "profile_path": "/ntXqHlpeaXTM7WqIsGDlYtlG7hk.jpg", "order": 9}, {"name": "James Burke", "character": "Luke", "id": 14453, "credit_id": "52fe4294c3a36847f8029a4f", "cast_id": 23, "profile_path": "/s01DJdyVjmF0f6fXIGzsDHjPVGs.jpg", "order": 10}, {"name": "Murray Alper", "character": "Frank Richman", "id": 14454, "credit_id": "52fe4294c3a36847f8029a53", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "John Hamilton", "character": "District Attorney Bryan", "id": 14455, "credit_id": "52fe4294c3a36847f8029a57", "cast_id": 25, "profile_path": "/aXQjVQj8QF07kvu0M71zNLEPiaI.jpg", "order": 12}, {"name": "William Hopper", "character": "Reporter (uncredited)", "id": 2776, "credit_id": "532104a29251411f77001f21", "cast_id": 27, "profile_path": "/BL7uBK6sy6DjaGgHWu79KJ0Ftg.jpg", "order": 13}, {"name": "Walter Huston", "character": "Captain Jacoby (uncredited)", "id": 19020, "credit_id": "532104bc9251411f8c001e13", "cast_id": 28, "profile_path": "/uvch750W2f4rGalEpEwhaaln6SN.jpg", "order": 14}, {"name": "Emory Parnell", "character": "Ship's Mate (uncredited)", "id": 124875, "credit_id": "532104fa9251411f89001eaa", "cast_id": 29, "profile_path": "/1duv3EnZjZSz8jgtXGZS4MOArNK.jpg", "order": 15}], "directors": [{"name": "John Huston", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f80299e7", "profile_path": "/x5P9KPVj6i8XnrgeEEWiiYKCSdd.jpg", "id": 6593}], "vote_average": 7.7, "runtime": 100}, "966": {"poster_path": "/7w3JmmyL8GpBvW6BusQfQCSm2h0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Magnificent Seven is a western film from John Sturges and a remake of the Akira Kurosawa's film The Seven Samurai from 1954.", "video": false, "id": 966, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "The Magnificent Seven", "tagline": "They were seven - And they fought like seven hundred!", "vote_count": 97, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jwevUd9BsWY9QTJZL5bFjWPoyqZ.jpg", "poster_path": "/qI64OS0Mqloq3wm1x4TWxXEDnVQ.jpg", "id": 110021, "name": "The Magnificent Seven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054047", "adult": false, "backdrop_path": "/oRSocDAAADYnCkI4jiUeRnlCnwG.jpg", "production_companies": [{"name": "The Mirisch Corporation", "id": 219}], "release_date": "1960-10-23", "popularity": 0.71670767182666, "original_title": "The Magnificent Seven", "budget": 0, "cast": [{"name": "Yul Brynner", "character": "Chris Adams", "id": 14528, "credit_id": "52fe4294c3a36847f8029c3f", "cast_id": 15, "profile_path": "/6UerE2q3iPcr4Y1ZsZJEf1Aom2g.jpg", "order": 0}, {"name": "Eli Wallach", "character": "Calvera", "id": 3265, "credit_id": "52fe4294c3a36847f8029c43", "cast_id": 16, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 1}, {"name": "Steve McQueen", "character": "Vin", "id": 13565, "credit_id": "52fe4294c3a36847f8029c47", "cast_id": 17, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 2}, {"name": "Charles Bronson", "character": "Bernardo O'Reilly", "id": 4960, "credit_id": "52fe4294c3a36847f8029c4b", "cast_id": 18, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 3}, {"name": "Robert Vaughn", "character": "Lee", "id": 14060, "credit_id": "52fe4294c3a36847f8029c4f", "cast_id": 19, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 4}, {"name": "Brad Dexter", "character": "Harry Luck", "id": 14529, "credit_id": "52fe4294c3a36847f8029c53", "cast_id": 20, "profile_path": "/cY9KS4CfudOllMMB26jPpnii89w.jpg", "order": 5}, {"name": "James Coburn", "character": "Britt", "id": 5563, "credit_id": "52fe4294c3a36847f8029c57", "cast_id": 21, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 6}, {"name": "Horst Buchholz", "character": "Chico", "id": 5789, "credit_id": "52fe4294c3a36847f8029c6f", "cast_id": 27, "profile_path": "/bNyMxUU2aVaqDfoqRhnIjQJe3jo.jpg", "order": 7}, {"name": "Natividad Vac\u00edo", "character": "Tomas", "id": 14530, "credit_id": "52fe4294c3a36847f8029c5b", "cast_id": 22, "profile_path": "/aNrydVspldovt5KixcVNNhj0Ad0.jpg", "order": 8}, {"name": "Rico Alaniz", "character": "Sotero", "id": 14531, "credit_id": "52fe4294c3a36847f8029c5f", "cast_id": 23, "profile_path": "/vMfzcr6Ip1FCR32FNVrWoV6LpFT.jpg", "order": 9}, {"name": "Jorge Mart\u00ednez de Hoyos", "character": "Hilario", "id": 14532, "credit_id": "52fe4294c3a36847f8029c63", "cast_id": 24, "profile_path": "/eATu54ygQ8XCwB6YJHDhhRgFshW.jpg", "order": 10}, {"name": "Vladimir Sokoloff", "character": "Old man", "id": 14533, "credit_id": "52fe4294c3a36847f8029c67", "cast_id": 25, "profile_path": "/pbgNdX1vgSLIbB2phKiuOQlTGAi.jpg", "order": 11}, {"name": "Rosenda Monteros", "character": "Petra", "id": 14534, "credit_id": "52fe4294c3a36847f8029c6b", "cast_id": 26, "profile_path": "/zQOnJ5UABbl6PsmxwzuharI7ovn.jpg", "order": 12}], "directors": [{"name": "John Sturges", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f8029bed", "profile_path": "/addeAxOXQmqXAZ7FB6ztGQ9daWC.jpg", "id": 14520}], "vote_average": 6.8, "runtime": 128}, "967": {"poster_path": "/h5D65IPpYPmuBjIPWBTA557BQFS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60000000, "overview": "Spartacus is a 1960 American historical drama film directed by Stanley Kubrick and based on the novel of the same name by Howard Fast about the historical life of Spartacus and the Third Servile War. The film stars Kirk Douglas as the rebellious slave Spartacus who leads a violent revolt against the decadent Roman empire. The film was awarded four Oscars and stands today as one of the greatest classics of the Sword and Sandal genre.", "video": false, "id": 967, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Spartacus", "tagline": "More titanic than any story ever told!", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054331", "adult": false, "backdrop_path": "/z7tLZ3c17Ch6qGIhUuiXBGGwHv0.jpg", "production_companies": [{"name": "Bryna Productions", "id": 611}], "release_date": "1960-10-06", "popularity": 0.578880947355996, "original_title": "Spartacus", "budget": 12000000, "cast": [{"name": "Kirk Douglas", "character": "Spartacus", "id": 2090, "credit_id": "52fe4294c3a36847f8029d3f", "cast_id": 21, "profile_path": "/vIZgu07gJtS2j460jgBlI1IvkAO.jpg", "order": 0}, {"name": "Laurence Olivier", "character": "Marcus Licinius Crassus", "id": 3359, "credit_id": "52fe4294c3a36847f8029d43", "cast_id": 22, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 1}, {"name": "Jean Simmons", "character": "Varinia", "id": 14500, "credit_id": "52fe4294c3a36847f8029d47", "cast_id": 23, "profile_path": "/lVE40Hx4s2VI2nPxkNaF0hBjPw9.jpg", "order": 2}, {"name": "Charles Laughton", "character": "Sempronius Gracchus", "id": 10921, "credit_id": "52fe4294c3a36847f8029d4b", "cast_id": 24, "profile_path": "/ssg5AqfnTbtdQVRbmoYECrjRSR0.jpg", "order": 3}, {"name": "Peter Ustinov", "character": "Lentulus Batiatus", "id": 14501, "credit_id": "52fe4294c3a36847f8029d4f", "cast_id": 25, "profile_path": "/8Lv4g3ZPVSM1ckKk15OnryX8sL7.jpg", "order": 4}, {"name": "John Gavin", "character": "Julius Caesar", "id": 7304, "credit_id": "52fe4294c3a36847f8029d53", "cast_id": 26, "profile_path": "/sOYggS68lUhOpuXKbtz0oXOHV6x.jpg", "order": 5}, {"name": "Nina Foch", "character": "Helena Glabrus", "id": 13026, "credit_id": "52fe4294c3a36847f8029d57", "cast_id": 27, "profile_path": "/jd5qWtnZdEvfwuo57CpJVzazYc0.jpg", "order": 6}, {"name": "John Ireland", "character": "Crixus", "id": 14502, "credit_id": "52fe4294c3a36847f8029d5b", "cast_id": 28, "profile_path": "/87deUnSyOPNaoiQiBHjScqhu8CZ.jpg", "order": 7}, {"name": "Herbert Lom", "character": "Tigranes Levantus", "id": 14503, "credit_id": "52fe4294c3a36847f8029d5f", "cast_id": 29, "profile_path": "/uPQNrZvgfAJNUAAYjmDubMmKEZ5.jpg", "order": 8}, {"name": "John Dall", "character": "Marcus Publius Glabrus", "id": 14504, "credit_id": "52fe4294c3a36847f8029d63", "cast_id": 30, "profile_path": "/AjgD9lfLq8SzQkiSqoXop5Afh9D.jpg", "order": 9}, {"name": "Woody Strode", "character": "Draba", "id": 4963, "credit_id": "52fe4294c3a36847f8029d67", "cast_id": 31, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 10}, {"name": "Harold J. Stone", "character": "David", "id": 14505, "credit_id": "52fe4294c3a36847f8029d6b", "cast_id": 32, "profile_path": "/8htER9KtcZ6Ssm73Sq6Nd2QSYVT.jpg", "order": 11}, {"name": "Charles McGraw", "character": "Marcellus", "id": 8233, "credit_id": "52fe4294c3a36847f8029d6f", "cast_id": 33, "profile_path": "/m6jBxQ3ZnePMBtCEy3eTu168kg3.jpg", "order": 12}, {"name": "Joanna Barnes", "character": "Claudia Marius", "id": 14506, "credit_id": "52fe4294c3a36847f8029d73", "cast_id": 34, "profile_path": "/aXZhfXgvQe4IQ1p1TebcUMAK1ux.jpg", "order": 13}, {"name": "Peter Brocco", "character": "Ramon", "id": 7074, "credit_id": "52fe4294c3a36847f8029d77", "cast_id": 35, "profile_path": "/lOpG2Gi5EkytfuixtLoP0vWTyjK.jpg", "order": 14}, {"name": "Paul Lambert", "character": "Gannicus", "id": 14507, "credit_id": "52fe4294c3a36847f8029d7b", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Robert J. Wilke", "character": "Guard captain", "id": 2096, "credit_id": "52fe4294c3a36847f8029d7f", "cast_id": 37, "profile_path": "/3VL03wavl7fUGuVtayjft9eYAua.jpg", "order": 16}, {"name": "Nick Dennis", "character": "Dionysius", "id": 2757, "credit_id": "52fe4294c3a36847f8029d83", "cast_id": 38, "profile_path": "/1iSpJEBq8lIWTBKCvgig08KkPmO.jpg", "order": 17}, {"name": "John Hoyt", "character": "Caius", "id": 14508, "credit_id": "52fe4294c3a36847f8029d87", "cast_id": 39, "profile_path": "/ng0y8zpPNuAao58GGAbLdwrj8Fp.jpg", "order": 18}, {"name": "Frederick Worlock", "character": "Laelius", "id": 14509, "credit_id": "52fe4294c3a36847f8029d8b", "cast_id": 40, "profile_path": "/oCQAanAc665NeE5allgEMit3wiY.jpg", "order": 19}, {"name": "Tony Curtis", "character": "Antoninus", "id": 3150, "credit_id": "52fe4294c3a36847f8029d8f", "cast_id": 41, "profile_path": "/y2y6QFlLkbDzNbAaKKa8mSH3Lde.jpg", "order": 20}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f8029cc9", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.1, "runtime": 197}, "968": {"poster_path": "/qgWuZ2yNJrclU8EldQG4rLhwMoy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46665856, "overview": "A man robs a bank to pay for his lover's operation; it turns into a hostage situation and a media circus.", "video": false, "id": 968, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Dog Day Afternoon", "tagline": "The Most Bizarre Bank Siege Ever.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072890", "adult": false, "backdrop_path": "/oszUeeJfhnmKI17XZzlaZfH74Pc.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Artists Entertainment Complex", "id": 612}], "release_date": "1975-09-21", "popularity": 0.477331168189361, "original_title": "Dog Day Afternoon", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Sonny", "id": 1158, "credit_id": "52fe4295c3a36847f8029e29", "cast_id": 15, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "John Cazale", "character": "Sal", "id": 3096, "credit_id": "52fe4295c3a36847f8029e2d", "cast_id": 16, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 1}, {"name": "Charles Durning", "character": "Det. Sgt. Eugene Moretti", "id": 1466, "credit_id": "52fe4295c3a36847f8029e31", "cast_id": 17, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 2}, {"name": "Chris Sarandon", "character": "Leon", "id": 14541, "credit_id": "52fe4295c3a36847f8029e35", "cast_id": 18, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 3}, {"name": "James Broderick", "character": "Sheldon", "id": 14542, "credit_id": "52fe4295c3a36847f8029e39", "cast_id": 19, "profile_path": "/tSKtPBSD55kTQlOk2ci3nvEGZmM.jpg", "order": 4}, {"name": "William Bogert", "character": "TV Anchorman", "id": 14543, "credit_id": "52fe4295c3a36847f8029e3d", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Penelope Allen", "character": "Sylvia", "id": 14544, "credit_id": "52fe4295c3a36847f8029e41", "cast_id": 21, "profile_path": "/8ar2dtYVVgf7ibQEGSqFPOuqakI.jpg", "order": 6}, {"name": "Sully Boyar", "character": "Mulvaney", "id": 14545, "credit_id": "52fe4295c3a36847f8029e45", "cast_id": 22, "profile_path": "/joJktsmK4VLCw5ZnUMR64V9hZyG.jpg", "order": 7}, {"name": "Beulah Garrick", "character": "Margaret", "id": 14546, "credit_id": "52fe4295c3a36847f8029e49", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Carol Kane", "character": "Jenny", "id": 10556, "credit_id": "52fe4295c3a36847f8029e4d", "cast_id": 24, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 9}, {"name": "Sandra Kazan", "character": "Deborah", "id": 14547, "credit_id": "52fe4295c3a36847f8029e51", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Marcia Jean Kurtz", "character": "Miriam", "id": 14548, "credit_id": "52fe4295c3a36847f8029e55", "cast_id": 26, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 11}, {"name": "Amy Levitt", "character": "Maria", "id": 14549, "credit_id": "52fe4295c3a36847f8029e59", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "John Marriott", "character": "Howard", "id": 14550, "credit_id": "52fe4295c3a36847f8029e5d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Estelle Omens", "character": "Edna", "id": 14551, "credit_id": "52fe4295c3a36847f8029e61", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Gary Springer", "character": "Stevie", "id": 14552, "credit_id": "52fe4295c3a36847f8029e65", "cast_id": 30, "profile_path": "/ovYL4jKuiyRvCbMVrgO3iy5BB10.jpg", "order": 15}, {"name": "Carmine Foresta", "character": "Carmine", "id": 14553, "credit_id": "52fe4295c3a36847f8029e69", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Lance Henriksen", "character": "Murphy", "id": 2714, "credit_id": "52fe4295c3a36847f8029e6d", "cast_id": 32, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 17}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f8029dd7", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 7.2, "runtime": 125}, "975": {"poster_path": "/f3DEXseCs3WBtvCv9pVPCtoluuG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "During World War I, commanding officer General Broulard (Adolphe Menjou) orders his subordinate, General Mireau (George Macready), to attack a German trench position, offering a promotion as an incentive. Though the mission is foolhardy to the point of suicide, Mireau commands his own subordinate, Colonel Dax (Kirk Douglas), to plan the attack. When it ends in disaster, General Mireau demands the court-martial of three random soldiers in order to save face.", "video": false, "id": 975, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Paths of Glory", "tagline": "It explodes in the no-man's land no picture ever dared cross before!", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0050825", "adult": false, "backdrop_path": "/sC4fbX0mKYEs16riivryzMl6GwR.jpg", "production_companies": [{"name": "Bryna Productions", "id": 611}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1957-09-18", "popularity": 0.549424481940905, "original_title": "Paths of Glory", "budget": 0, "cast": [{"name": "Kirk Douglas", "character": "Col. Dax", "id": 2090, "credit_id": "52fe4295c3a36847f8029f15", "cast_id": 18, "profile_path": "/vIZgu07gJtS2j460jgBlI1IvkAO.jpg", "order": 0}, {"name": "Ralph Meeker", "character": "Cpl. Philippe Paris", "id": 14562, "credit_id": "52fe4295c3a36847f8029f19", "cast_id": 19, "profile_path": "/qJ6ELh0jYHaCB0lITnAOo7owylz.jpg", "order": 1}, {"name": "Adolphe Menjou", "character": "Gen. George Broulard", "id": 14563, "credit_id": "52fe4295c3a36847f8029f1d", "cast_id": 20, "profile_path": "/jAZRVhDGvEfRfJgGQCGk1GXMp1C.jpg", "order": 2}, {"name": "George Macready", "character": "Gen. Paul Mireau", "id": 14564, "credit_id": "52fe4295c3a36847f8029f21", "cast_id": 21, "profile_path": "/t1xXYLfj7KSn2YQ3cKJ4V5ZYoQV.jpg", "order": 3}, {"name": "Wayne Morris", "character": "Lt. Roget/Singing man", "id": 14565, "credit_id": "52fe4295c3a36847f8029f25", "cast_id": 22, "profile_path": "/hVs9Lzc9dApQtPgQuyRsV5smRDA.jpg", "order": 4}, {"name": "Richard Anderson", "character": "Maj. Saint-Auban", "id": 12312, "credit_id": "52fe4295c3a36847f8029f29", "cast_id": 23, "profile_path": "/lHI1T7yJfCv3cfD7SpAkH0OWDNx.jpg", "order": 5}, {"name": "Joe Turkel", "character": "Pvt. Pierre Arnaud", "id": 592, "credit_id": "52fe4295c3a36847f8029f2d", "cast_id": 24, "profile_path": "/8d16GA57SnVXP3WGB0fbkFCKily.jpg", "order": 6}, {"name": "Timothy Carey", "character": "Pvt. Maurice Ferol", "id": 2758, "credit_id": "52fe4295c3a36847f8029f31", "cast_id": 25, "profile_path": "/ymLUcHBDoZxnJ6sx7855vr5iHaU.jpg", "order": 7}, {"name": "Christiane Kubrick", "character": "German Singer", "id": 1019259, "credit_id": "52fe4295c3a36847f8029f35", "cast_id": 26, "profile_path": "/ZDMzhuyTaYW8es3GDTfTY9WAkE.jpg", "order": 8}, {"name": "Jerry Hausner", "character": "Proprietor of Cafe", "id": 117671, "credit_id": "52fe4295c3a36847f8029f39", "cast_id": 27, "profile_path": "/4BUSa5Li7wfqAH38OZLArm090M4.jpg", "order": 9}, {"name": "Peter Capell", "character": "Narrator of Opening Sequence", "id": 3476, "credit_id": "52fe4295c3a36847f8029f3d", "cast_id": 28, "profile_path": "/kwAOpbL1SeDxvQXkKLDkm8ZeTY0.jpg", "order": 10}, {"name": "Emile Meyer", "character": "Father Dupree", "id": 14579, "credit_id": "52fe4295c3a36847f8029f41", "cast_id": 29, "profile_path": "/3uZJOF28nCj0WKXAJEVt7yCl2Tj.jpg", "order": 11}, {"name": "Bert Freed", "character": "Sgt. Boulanger", "id": 31503, "credit_id": "52fe4295c3a36847f8029f45", "cast_id": 30, "profile_path": "/ijYWrQ4e2LLYp5ADO19iTG7TtOx.jpg", "order": 12}, {"name": "Kem Dibbs", "character": "Pvt. Lejeune", "id": 94031, "credit_id": "52fe4295c3a36847f8029f49", "cast_id": 31, "profile_path": "/yaC4y47x2L2ZryUB2AjncadMBvv.jpg", "order": 13}, {"name": "Fred Bell", "character": "Shell-Shocked Soldier", "id": 1077968, "credit_id": "52fe4295c3a36847f8029f4d", "cast_id": 32, "profile_path": "/AvQq9HsoP9ZDNkVd0Frz1DL9YHK.jpg", "order": 14}, {"name": "John Stein", "character": "Capt. Rousseau", "id": 1077970, "credit_id": "52fe4295c3a36847f8029f51", "cast_id": 33, "profile_path": "/xnA1i1PRcbeZeskDdLVZJ318hNc.jpg", "order": 15}, {"name": "Harold Benedict", "character": "Capt. Nichols", "id": 1077971, "credit_id": "52fe4295c3a36847f8029f55", "cast_id": 34, "profile_path": null, "order": 16}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4295c3a36847f8029eb7", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.9, "runtime": 88}, "1669": {"poster_path": "/bqvlKYlWq2uibsuVzKTWseeccd2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200512643, "overview": "When a Soviet nuclear sub headed toward American waters drops off U.S. scanners, the Yanks scramble to take defensive steps. But CIA analyst Jack Ryan convinces the brass that the sub's commander has something other than a first strike in mind. A perilous cat-and-mouse game ensues.", "video": false, "id": 1669, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Hunt for Red October", "tagline": "Invisible. Silent. Stolen.", "vote_count": 374, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0099810", "adult": false, "backdrop_path": "/c31beJUzO3ZwRpxpyP8ADzbkt9V.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}, {"name": "Nina Saxon Film Design", "id": 1693}], "release_date": "1990-03-02", "popularity": 0.995958977234815, "original_title": "The Hunt for Red October", "budget": 30000000, "cast": [{"name": "Alec Baldwin", "character": "Jack Ryan", "id": 7447, "credit_id": "52fe430ac3a36847f803602b", "cast_id": 2, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 0}, {"name": "Sean Connery", "character": "Marko Ramius", "id": 738, "credit_id": "52fe430ac3a36847f8036027", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Commander Bart Mancuso", "id": 349, "credit_id": "52fe430ac3a36847f8036041", "cast_id": 6, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Sam Neill", "character": "Captain Vasily Borodin", "id": 4783, "credit_id": "52fe430ac3a36847f8036045", "cast_id": 7, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 3}, {"name": "James Earl Jones", "character": "Admiral James Greer", "id": 15152, "credit_id": "52fe430ac3a36847f8036049", "cast_id": 8, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 4}, {"name": "Joss Ackland", "character": "Ambassador Andrei Lysenko", "id": 14324, "credit_id": "52fe430ac3a36847f803604d", "cast_id": 9, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 5}, {"name": "Richard Jordan", "character": "Dr. Jeffrey Pelt", "id": 12518, "credit_id": "52fe430ac3a36847f8036051", "cast_id": 10, "profile_path": "/lsIKxCURO9l4zEnVLwbVG2o1fLQ.jpg", "order": 6}, {"name": "Stellan Skarsg\u00e5rd", "character": "Captain Viktor Tupolev", "id": 1640, "credit_id": "52fe430ac3a36847f8036055", "cast_id": 11, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 7}, {"name": "Courtney B. Vance", "character": "Sonarman 2nd Class Ronald Jones", "id": 24047, "credit_id": "52fe430ac3a36847f8036059", "cast_id": 12, "profile_path": "/x1kO6TTg3rnz0WAxYgmunsPaxvR.jpg", "order": 8}, {"name": "Peter Firth", "character": "Ivan Putin", "id": 22109, "credit_id": "52fe430ac3a36847f8036063", "cast_id": 14, "profile_path": "/2qFPG3fIwshfPGDwIoP5aKVKFQM.jpg", "order": 9}, {"name": "Tim Curry", "character": "Dr. Yevgeniy Petrov", "id": 13472, "credit_id": "52fe430ac3a36847f8036067", "cast_id": 15, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 10}, {"name": "Jeffrey Jones", "character": "Skip Tyler", "id": 4004, "credit_id": "52fe430ac3a36847f803606b", "cast_id": 16, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 11}, {"name": "Timothy Carhart", "character": "Bill Steiner", "id": 17396, "credit_id": "52fe430ac3a36847f803606f", "cast_id": 17, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 12}, {"name": "Larry Ferguson", "character": "Chief of the Boat", "id": 912, "credit_id": "52fe430ac3a36847f8036073", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Fred Thompson", "character": "Admiral Painter", "id": 17874, "credit_id": "52fe430ac3a36847f8036077", "cast_id": 19, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 14}, {"name": "Daniel Davis", "character": "Cpt. Davenport", "id": 177765, "credit_id": "5406fba70e0a261882000fcb", "cast_id": 29, "profile_path": "/f6mEupwpKQGlxk2mKwb0pz1UiFT.jpg", "order": 15}, {"name": "Ned Vaughn", "character": "Seaman Beaumont", "id": 51582, "credit_id": "5406fbba0e0a261890000f21", "cast_id": 30, "profile_path": "/dKFDibE1SrSxk70ZmLPZg6X5AEz.jpg", "order": 16}, {"name": "Anthony Peck", "character": "Lt. Commander Thompson", "id": 141747, "credit_id": "5406fbe20e0a261885000eea", "cast_id": 31, "profile_path": "/57e2de2WH5jFm6AJYNTSSjGymtS.jpg", "order": 17}, {"name": "Ronald Guttman", "character": "Lt. Melekhin", "id": 47085, "credit_id": "5406fc0b0e0a261889000f09", "cast_id": 32, "profile_path": "/mqUqJDVGojFkKQvaC96jFTBuEqD.jpg", "order": 18}, {"name": "Tomas Arana", "character": "Loginov", "id": 941, "credit_id": "5406fc1c0e0a261889000f0d", "cast_id": 33, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 19}, {"name": "Sven-Ole Thorsen", "character": "Russian COB", "id": 20761, "credit_id": "5406fc600e0a261896000f8f", "cast_id": 34, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 20}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe430ac3a36847f8036031", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.9, "runtime": 134}, "978": {"poster_path": "/cflSeFUVDCf73Tzh5sB204JbQ6j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131457682, "overview": "Austrian mountaineer Heinrich Harrer journeys to the Himalayas without his family to head an expedition in 1939. But when World War II breaks out, the arrogant Harrer falls into Allied forces' hands as a prisoner of war. He escapes with a fellow detainee and makes his way to Llaso, Tibet, where he meets the 14-year-old Dalai Lama, whose friendship ultimately transforms his outlook on life.", "video": false, "id": 978, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Seven Years in Tibet", "tagline": "At the end of the world his real journey began.", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120102", "adult": false, "backdrop_path": "/6HjYM1vgqWpFTr01tOBrskfvxcu.jpg", "production_companies": [{"name": "Mandalay Entertainment", "id": 1236}, {"name": "Vanguard Films", "id": 614}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1997-09-12", "popularity": 0.769236007322338, "original_title": "Seven Years in Tibet", "budget": 70000000, "cast": [{"name": "Brad Pitt", "character": "Heinrich Harrer", "id": 287, "credit_id": "52fe4295c3a36847f802a10d", "cast_id": 14, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Jamyang Jamtsho Wangchuk", "character": "Dalai Lama, 14 Years Old", "id": 14591, "credit_id": "52fe4295c3a36847f802a111", "cast_id": 15, "profile_path": "/fW1MmG9Q6q5NIvWEVf3S6CJJNgb.jpg", "order": 1}, {"name": "David Thewlis", "character": "Peter Aufschnaiter", "id": 11207, "credit_id": "52fe4295c3a36847f802a115", "cast_id": 16, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 2}, {"name": "BD Wong", "character": "Ngawang Jigme", "id": 14592, "credit_id": "52fe4295c3a36847f802a119", "cast_id": 17, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 3}, {"name": "Mako", "character": "Kungo Tsarong", "id": 10134, "credit_id": "52fe4295c3a36847f802a11d", "cast_id": 18, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 4}, {"name": "Ingeborga Dapkunaite", "character": "Ingrid Harrer", "id": 14593, "credit_id": "52fe4295c3a36847f802a121", "cast_id": 19, "profile_path": "/hVqzjEBJiaYp9sTJA4IXNLJtLK2.jpg", "order": 5}, {"name": "Lhakpa Tsamchoe", "character": "Pema Lhaki", "id": 14594, "credit_id": "52fe4295c3a36847f802a125", "cast_id": 20, "profile_path": "/z43d44Xxq8bToSGMOtWcsPhmFgG.jpg", "order": 6}, {"name": "Duncan Fraser", "character": "British Officer", "id": 14595, "credit_id": "52fe4295c3a36847f802a129", "cast_id": 21, "profile_path": "/65nwyXassO3PmeL8vvC7DKDXcSM.jpg", "order": 7}, {"name": "Danny Denzongpa", "character": "Regent", "id": 14596, "credit_id": "52fe4295c3a36847f802a12d", "cast_id": 22, "profile_path": "/9mfS2Tuf4C4VXOsTglXaCyHI4cj.jpg", "order": 8}, {"name": "Victor Wong", "character": "Chinese 'Amban'", "id": 11395, "credit_id": "52fe4295c3a36847f802a131", "cast_id": 23, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 9}], "directors": [{"name": "Jean-Jacques Annaud", "department": "Directing", "job": "Director", "credit_id": "52fe4295c3a36847f802a0c1", "profile_path": "/wWECpMbiIcKZF8VXsNfxJVeW2Rr.jpg", "id": 2352}], "vote_average": 6.7, "runtime": 136}, "979": {"poster_path": "/eEA5JRaqq2ehMvdi0vBF2UOfOYc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Events over the course of one traumatic night in Paris unfold in reverse-chronological order as the beautiful Alex is brutally raped and beaten by a stranger in the underpass. Her boyfriend and ex-lover take matters into their own hands by hiring two criminals to help them find the rapist so that they can exact revenge. A simultaneously beautiful and terrible examination of the destructive nature of cause and effect, and how time destroys everything.", "video": false, "id": 979, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Irreversible", "tagline": "Time destroys everything.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0290673", "adult": false, "backdrop_path": "/mNb8Ny0RR2Vyw4xXT2Y6GN9Lioz.jpg", "production_companies": [{"name": "120 Films", "id": 19233}, {"name": "Eskwad", "id": 616}, {"name": "Les Cin\u00e9mas de la Zone", "id": 1157}, {"name": "Nord-Ouest Productions", "id": 4176}, {"name": "StudioCanal", "id": 694}], "release_date": "2002-05-22", "popularity": 0.583126468071928, "original_title": "Irr\u00e9versible", "budget": 0, "cast": [{"name": "Monica Bellucci", "character": "Alex", "id": 28782, "credit_id": "52fe4295c3a36847f802a19f", "cast_id": 11, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Marcus", "id": 1925, "credit_id": "52fe4295c3a36847f802a1a3", "cast_id": 12, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Albert Dupontel", "character": "Pierre", "id": 14606, "credit_id": "52fe4295c3a36847f802a1a7", "cast_id": 13, "profile_path": "/bBqRJl8IQXxKuYTNhoYRER9JO34.jpg", "order": 2}, {"name": "Jo Prestia", "character": "Le Tenia", "id": 14610, "credit_id": "52fe4295c3a36847f802a1ab", "cast_id": 14, "profile_path": "/7ZF93XBMOF5Mr6F22YKGnzM4QMp.jpg", "order": 3}, {"name": "Philippe Nahon", "character": "Philippe", "id": 5444, "credit_id": "52fe4295c3a36847f802a1af", "cast_id": 15, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 4}, {"name": "St\u00e9phane Drouot", "character": "St\u00e9phane", "id": 14611, "credit_id": "52fe4295c3a36847f802a1b3", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Jean-Louis Costes", "character": "Fistman", "id": 14612, "credit_id": "52fe4295c3a36847f802a1b7", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Mourad Khima", "character": "Mourad", "id": 14613, "credit_id": "52fe4295c3a36847f802a1bb", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Michel Gondoin ", "character": "Mick", "id": 577431, "credit_id": "54b9344c9251411d77004599", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Hellal", "character": "Layde", "id": 1414268, "credit_id": "54b9345f9251411d7700459c", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Nato", "character": "Commissaire", "id": 1414269, "credit_id": "54b9348c9251411d64004550", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Fesche", "character": "Chauffeur Taxi", "id": 1414270, "credit_id": "54b934ab9251411d770045a8", "cast_id": 23, "profile_path": null, "order": 11}], "directors": [{"name": "Gaspar No\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4295c3a36847f802a165", "profile_path": "/zuzX3QLKI4FKsOB4QPseYkO73mY.jpg", "id": 14597}], "vote_average": 7.3, "runtime": 97}, "246741": {"poster_path": "/kJjXTVQ0yP6Ns5pd7YiyCYCdS3X.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}], "revenue": 0, "overview": "Follow the lives of Viago, Deacon, and Vladislav - three flatmates who are just trying to get by and overcome life's obstacles-like being immortal vampires who must feast on human blood. Hundreds of years old, the vampires are finding that beyond sunlight catastrophes, hitting the main artery, and not being able to get a sense of their wardrobe without a reflection-modern society has them struggling with the mundane like paying rent, keeping up with the chore wheel, trying to get into nightclubs, and overcoming flatmate conflicts.", "video": false, "id": 246741, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "What We Do in the Shadows", "tagline": "Some interviews with some vampires", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3416742", "adult": false, "backdrop_path": "/cQXlDYsxdSJg9quBIM8IgpphAon.jpg", "production_companies": [{"name": "Funny or Die", "id": 21213}, {"name": "Unison Films", "id": 2372}, {"name": "Defender Films", "id": 6510}], "release_date": "2014-06-19", "popularity": 2.1402838224718, "original_title": "What We Do in the Shadows", "budget": 0, "cast": [{"name": "Taika Waititi", "character": "Viago", "id": 55934, "credit_id": "52fe4f1ac3a36847f82bdb41", "cast_id": 5, "profile_path": "/qFqOHyuFo1H0RuxQxI4leTZDClY.jpg", "order": 0}, {"name": "Jemaine Clement", "character": "Vladislav", "id": 55936, "credit_id": "52fe4f1ac3a36847f82bdb45", "cast_id": 6, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 1}, {"name": "Jonathan Brugh", "character": "Deacon", "id": 586951, "credit_id": "52fe4f1ac3a36847f82bdb49", "cast_id": 7, "profile_path": "/5FmtVkkfaVOJeQywZMqvRrnpGpo.jpg", "order": 2}, {"name": "Cori Gonzalez-Macuer", "character": "Nick", "id": 1286794, "credit_id": "52fe4f1ac3a36847f82bdb4d", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Stuart Rutherford", "character": "Stu", "id": 1286796, "credit_id": "52fe4f1ac3a36847f82bdb51", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Jackie van Beek", "character": "Jackie", "id": 1286797, "credit_id": "52fe4f1ac3a36847f82bdb55", "cast_id": 10, "profile_path": "/AwtQmYJVS2ctHHkOnqd6FJhCadI.jpg", "order": 5}, {"name": "Rhys Darby", "character": "Anton", "id": 82666, "credit_id": "52fe4f1ac3a36847f82bdb59", "cast_id": 11, "profile_path": "/d8mSQJYmuOoT3hvC7FGgSVMzYlz.jpg", "order": 6}, {"name": "Frank Habicht", "character": "Phillip", "id": 568266, "credit_id": "52fe4f1ac3a36847f82bdb5d", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ian Harcourt", "character": "Zombie", "id": 54494, "credit_id": "52fe4f1ac3a36847f82bdb61", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Madeleine Sami", "character": "Morana", "id": 89847, "credit_id": "52fe4f1ac3a36847f82bdb65", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Duncan Sarkies", "character": "Declan", "id": 1161585, "credit_id": "52fe4f1ac3a36847f82bdb69", "cast_id": 15, "profile_path": null, "order": 10}], "directors": [{"name": "Jemaine Clement", "department": "Directing", "job": "Director", "credit_id": "52fe4f1ac3a36847f82bdb2b", "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "id": 55936}, {"name": "Taika Waititi", "department": "Directing", "job": "Director", "credit_id": "52fe4f1ac3a36847f82bdb31", "profile_path": "/qFqOHyuFo1H0RuxQxI4leTZDClY.jpg", "id": 55934}], "vote_average": 7.5, "runtime": 86}, "984": {"poster_path": "/qBhvRKN6ezdYzp8NT6tde6ffWoy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35976000, "overview": "When a madman dubbed the \"Scorpio Killer\" terrorizes San Francisco, hard-boiled cop Harry Callahan -- famous for his take-no-prisoners approach to law enforcement -- is tasked with hunting down the psychopath. Harry eventually collars Scorpio in the process of rescuing a kidnap victim, only to see him walk on technicalities. Now, the maverick detective is determined to nail the maniac himself.", "video": false, "id": 984, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Dirty Harry", "tagline": "Detective Harry Callahan. He doesn't break murder cases. He smashes them.", "vote_count": 138, "homepage": "", "belongs_to_collection": {"backdrop_path": "/nlpixhOhb3JmFqVXKjCwpYFpldf.jpg", "poster_path": "/vY8MSRkKL0ZBeFP0c0I2o11IYDZ.jpg", "id": 10456, "name": "Dirty Harry Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066999", "adult": false, "backdrop_path": "/yvpXQiMJlMQiW9ubWFWRZJWekls.jpg", "production_companies": [{"name": "Malpaso Company", "id": 15298}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1971-12-22", "popularity": 1.34672945791768, "original_title": "Dirty Harry", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Insp. Harry Callahan", "id": 190, "credit_id": "52fe4296c3a36847f802a53b", "cast_id": 14, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Andrew Robinson", "character": "Scorpio Killer", "id": 14782, "credit_id": "52fe4296c3a36847f802a53f", "cast_id": 15, "profile_path": "/bJnqfONR5wdtIciYQ0tBnRX4PnD.jpg", "order": 1}, {"name": "John Vernon", "character": "The Mayor", "id": 17580, "credit_id": "52fe4296c3a36847f802a543", "cast_id": 16, "profile_path": "/8jESb02RChcuBEh4yZrLHElNhWa.jpg", "order": 2}, {"name": "Reni Santoni", "character": "Insp. Chico Gonzalez", "id": 14784, "credit_id": "52fe4296c3a36847f802a547", "cast_id": 17, "profile_path": "/6dNgWQgTgT4u5jeux3gOX34Fjiu.jpg", "order": 3}, {"name": "Harry Guardino", "character": "Lt. Al Bressler", "id": 14785, "credit_id": "52fe4296c3a36847f802a54b", "cast_id": 18, "profile_path": "/qybV2OJGAge9VXSsFXPJDmFEPsA.jpg", "order": 4}, {"name": "John Mitchum", "character": "Insp. Frank DiGiorgio", "id": 14786, "credit_id": "52fe4296c3a36847f802a54f", "cast_id": 19, "profile_path": "/varG7DgJQjNwwCeUcwpZhCs40uo.jpg", "order": 5}, {"name": "Mae Mercer", "character": "Mrs. Russell", "id": 14787, "credit_id": "52fe4296c3a36847f802a553", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Lyn Edgington", "character": "Norma", "id": 14788, "credit_id": "52fe4296c3a36847f802a557", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Ruth Kobart", "character": "Bus Driver", "id": 14789, "credit_id": "52fe4296c3a36847f802a55b", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Woodrow Parfrey", "character": "Mr. Jaffe", "id": 13263, "credit_id": "52fe4296c3a36847f802a55f", "cast_id": 23, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 9}, {"name": "William Paterson", "character": "Judge Bannerman", "id": 14790, "credit_id": "52fe4296c3a36847f802a563", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "James Nolan", "character": "Liquor Store Owner", "id": 14791, "credit_id": "52fe4296c3a36847f802a567", "cast_id": 25, "profile_path": "/tmIKir155HdYKTlMlSLberv5ixc.jpg", "order": 11}, {"name": "Josef Sommer", "character": "Att. William T. Rothko", "id": 14792, "credit_id": "52fe4296c3a36847f802a56b", "cast_id": 26, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 12}, {"name": "Albert Popwell", "character": "Bank Robber (uncredited)", "id": 21925, "credit_id": "52fe4296c3a36847f802a56f", "cast_id": 28, "profile_path": "/ywlCVvQ2Z6UnnIoiCLcpPhGSsg9.jpg", "order": 13}], "directors": [{"name": "Don Siegel", "department": "Directing", "job": "Director", "credit_id": "52fe4296c3a36847f802a4ef", "profile_path": "/dptmMoVlEB9o8O8C8vf5CPILg6n.jpg", "id": 14773}], "vote_average": 7.1, "runtime": 102}, "985": {"poster_path": "/bWBTsftC74xGIEa415rKQ0Tcyht.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7000000, "overview": "Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.", "video": false, "id": 985, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Eraserhead", "tagline": "Where your nightmares end...", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074486", "adult": false, "backdrop_path": "/iCvB5O1edEV4y1WtNFloUkFzwrq.jpg", "production_companies": [{"name": "Libra Films", "id": 17877}, {"name": "American Film Institute (AFI)", "id": 12226}], "release_date": "1977-09-28", "popularity": 0.69064988573632, "original_title": "Eraserhead", "budget": 10000, "cast": [{"name": "Jack Nance", "character": "Henry Spencer", "id": 6718, "credit_id": "52fe4296c3a36847f802a5e1", "cast_id": 13, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 0}, {"name": "Charlotte Stewart", "character": "Mary X", "id": 14794, "credit_id": "52fe4296c3a36847f802a5e5", "cast_id": 14, "profile_path": "/4IUF48jRMcBR0ZjVc9ghDoo5c4x.jpg", "order": 1}, {"name": "Allen Joseph", "character": "Mr. X", "id": 14795, "credit_id": "52fe4296c3a36847f802a5e9", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Jeanne Bates", "character": "Mrs. X", "id": 14796, "credit_id": "52fe4296c3a36847f802a5ed", "cast_id": 16, "profile_path": "/lHrwjoC9K970j1uet252Ti3LBaD.jpg", "order": 3}, {"name": "Judith Roberts", "character": "Beautiful Girl Across the Hall", "id": 14797, "credit_id": "52fe4296c3a36847f802a5f1", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Laurel Near", "character": "Lady in the Radiator", "id": 14798, "credit_id": "52fe4296c3a36847f802a5f5", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "T. Max Graham", "character": "The Boss", "id": 14799, "credit_id": "52fe4296c3a36847f802a5f9", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Jennifer Chambers Lynch", "character": "Little Girl", "id": 14800, "credit_id": "52fe4296c3a36847f802a5fd", "cast_id": 20, "profile_path": "/hrZxoo4d1xInj2zIHAyPGb3hY5K.jpg", "order": 7}, {"name": "Hal Landon Jr.", "character": "Pencil Machine Operator", "id": 14801, "credit_id": "52fe4296c3a36847f802a601", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Jean Lange", "character": "Grandmother", "id": 14802, "credit_id": "52fe4296c3a36847f802a605", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4296c3a36847f802a5a1", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.2, "runtime": 89}, "9722": {"poster_path": "/auUAybijSJ72XuTaPgh0EhvyJ13.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63313159, "overview": "Thinking he can overshadow an unknown actress in the part, an egocentric actor unknowingly gets a witch cast in an upcoming television remake of the classic show \"Bewitched\".", "video": false, "id": 9722, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Bewitched", "tagline": "Be warned. Be ready.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "pt", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0374536", "adult": false, "backdrop_path": "/w71S3Q9Jmxkwloyf5xzOKbWGbkA.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2005-06-24", "popularity": 0.724384348167155, "original_title": "Bewitched", "budget": 80000000, "cast": [{"name": "Nicole Kidman", "character": "Isabel Bigelow", "id": 2227, "credit_id": "52fe4521c3a36847f80be42d", "cast_id": 1, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Jack Wyatt", "id": 23659, "credit_id": "52fe4521c3a36847f80be431", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Shirley MacLaine", "character": "Iris Smythson / Endora", "id": 4090, "credit_id": "52fe4521c3a36847f80be435", "cast_id": 3, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 2}, {"name": "Michael Caine", "character": "Nigel Bigelow", "id": 3895, "credit_id": "52fe4521c3a36847f80be439", "cast_id": 4, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Jason Schwartzman", "character": "Ritchie", "id": 17881, "credit_id": "52fe4521c3a36847f80be43d", "cast_id": 5, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 4}, {"name": "Kristin Chenoweth", "character": "Maria Kelly", "id": 52775, "credit_id": "52fe4521c3a36847f80be441", "cast_id": 6, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 5}, {"name": "Heather Burns", "character": "Nina", "id": 26716, "credit_id": "52fe4521c3a36847f80be445", "cast_id": 7, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 6}, {"name": "Jim Turner", "character": "Larry", "id": 58768, "credit_id": "52fe4521c3a36847f80be449", "cast_id": 8, "profile_path": "/mujwEKBe86I89VblEvK3zQbE81j.jpg", "order": 7}, {"name": "Stephen Colbert", "character": "Stu Robison", "id": 58769, "credit_id": "52fe4521c3a36847f80be44d", "cast_id": 9, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 8}, {"name": "David Alan Grier", "character": "Jim Fields", "id": 58563, "credit_id": "52fe4521c3a36847f80be451", "cast_id": 10, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 9}, {"name": "Michael Badalucco", "character": "Joey Props", "id": 1010, "credit_id": "52fe4521c3a36847f80be455", "cast_id": 11, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 10}, {"name": "Carole Shelley", "character": "Aunt Clara", "id": 58770, "credit_id": "52fe4521c3a36847f80be459", "cast_id": 12, "profile_path": "/p9XDqB8LOG09DOwGQ3EXYr78KMt.jpg", "order": 11}, {"name": "Steve Carell", "character": "Uncle Arthur", "id": 4495, "credit_id": "52fe4521c3a36847f80be45d", "cast_id": 13, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 12}, {"name": "Katie Finneran", "character": "Sheila Wyatt", "id": 58771, "credit_id": "52fe4521c3a36847f80be461", "cast_id": 14, "profile_path": "/5bFxhH09QG5RXjyaUXIFWN3kSnw.jpg", "order": 13}, {"name": "James Lipton", "character": "Himself", "id": 58772, "credit_id": "52fe4521c3a36847f80be465", "cast_id": 15, "profile_path": "/5Mrm4njIIrpcqXRG7VFZEffjBLw.jpg", "order": 14}, {"name": "Brittany Krall", "character": "Auditioning Actress", "id": 1292243, "credit_id": "52fe4522c3a36847f80be4b7", "cast_id": 29, "profile_path": "/i7t7ueAV1n0jnvkhCkRQbtIsiF1.jpg", "order": 15}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe4521c3a36847f80be46b", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 5.0, "runtime": 102}, "996": {"poster_path": "/4Y8gPNjgMrOBoq11dyvBOtReaFR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Unsuspecting Mr. Dietrichson becomes increasingly accident prone after his icily calculating wife encourages him to sign a double indemnity policy proposed by a smooth-talking insurance agent. Against a backdrop of distinctly California settings, the partners in crime plan the perfect murder to collect the insurance. Perfect until a claims manager gets a familiar feeling of foul play and pursues the matter relentlessly.", "video": false, "id": 996, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Double Indemnity", "tagline": "From the Moment they met it was Murder!", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0036775", "adult": false, "backdrop_path": "/uAaS8OjscvF6yQeSngt5DR64lGU.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1944-09-06", "popularity": 0.780143882309189, "original_title": "Double Indemnity", "budget": 927262, "cast": [{"name": "Fred MacMurray", "character": "Walter Neff", "id": 4091, "credit_id": "52fe4298c3a36847f802adc5", "cast_id": 13, "profile_path": "/3TQjxCbV4xaILVSd0biqfKXt50u.jpg", "order": 0}, {"name": "Barbara Stanwyck", "character": "Phyllis Dietrichson", "id": 14974, "credit_id": "52fe4298c3a36847f802adc9", "cast_id": 14, "profile_path": "/yY2CrbaTyKpmmuUeSu57Wsf2aHk.jpg", "order": 1}, {"name": "Edward G. Robinson", "character": "Barton Keyes", "id": 13566, "credit_id": "52fe4298c3a36847f802ade5", "cast_id": 21, "profile_path": "/af1aBRi4UccaxtmDPWEtlfy1vXE.jpg", "order": 2}, {"name": "Porter Hall", "character": "Mr. Jackson", "id": 14975, "credit_id": "52fe4298c3a36847f802adcd", "cast_id": 15, "profile_path": "/m3QXXxI1iMrD9eVwB2z8d3QlKrC.jpg", "order": 3}, {"name": "Richard Gaines", "character": "Edward S. Norton, Jr.", "id": 14976, "credit_id": "52fe4298c3a36847f802add1", "cast_id": 16, "profile_path": "/brbWt9ZeanMekA9wnZS952HYgOp.jpg", "order": 4}, {"name": "Jean Heather", "character": "Lola Dietrichson", "id": 14977, "credit_id": "52fe4298c3a36847f802add5", "cast_id": 17, "profile_path": "/ark3pzEWVbjC9kmxYGqltmcXTq6.jpg", "order": 5}, {"name": "Tom Powers", "character": "Mr. Dietrichson", "id": 14978, "credit_id": "52fe4298c3a36847f802add9", "cast_id": 18, "profile_path": "/afw9RQWkQuKzYUloR8UXJzfYvIy.jpg", "order": 6}, {"name": "Fortunio Bonanova", "character": "Sam Garlopis", "id": 14979, "credit_id": "52fe4298c3a36847f802addd", "cast_id": 19, "profile_path": "/3oTAUQDI95m13EmADN6HI9pws8v.jpg", "order": 7}, {"name": "John Philliber", "character": "Joe Peters", "id": 14980, "credit_id": "52fe4298c3a36847f802ade1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Harold Garrison", "character": "Redcap", "id": 1044677, "credit_id": "52fe4298c3a36847f802ade9", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Byron Barr", "character": "Nino Zachetti", "id": 109844, "credit_id": "549d32a7c3a3682f1e0055ba", "cast_id": 23, "profile_path": "/m9aNzRJqnTpWp404S95iCDVH8q9.jpg", "order": 10}, {"name": "John Philliber", "character": "", "id": 14980, "credit_id": "549d32b992514131230054de", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "James Adamson", "character": "Pullman Porter (uncredited)", "id": 130487, "credit_id": "549d32dcc3a3682f1e0055c1", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "John Berry", "character": "Bit Part (uncredited)", "id": 94169, "credit_id": "549d32ee92514131320054be", "cast_id": 26, "profile_path": "/1iGCs8RZ7riBnwduxeiVlN2AklQ.jpg", "order": 13}, {"name": "Raymond Chandler", "character": "Man Reading Book (uncredited)", "id": 12493, "credit_id": "549d3300925141312f005bdb", "cast_id": 27, "profile_path": "/7YEDJ0u0JVcA2XETAtLHDbme2rf.jpg", "order": 14}, {"name": "Edmund Cobb", "character": "Train Conductor (uncredited)", "id": 43836, "credit_id": "549d3311c3a3682f23005780", "cast_id": 28, "profile_path": "/ss20cqXhEqdtoXVesH7nwKr3o0e.jpg", "order": 15}, {"name": "Kernan Cripps", "character": "Conductor (uncredited)", "id": 1042201, "credit_id": "549d33259251415dc1004a03", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Betty Farrington", "character": "Nettie - Dietrichsons' Maid (uncredited)", "id": 1108832, "credit_id": "549d33379251415dc1004a08", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Bess Flowers", "character": "Norton's Secretary (uncredited)", "id": 121323, "credit_id": "549d334b925141312f005be2", "cast_id": 31, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 18}, {"name": "Miriam Franklin", "character": "Keyes' Secretary (uncredited)", "id": 1404169, "credit_id": "549d3362925141312f005be5", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Eddie Hall", "character": "Man in Drug Store (uncredited)", "id": 120199, "credit_id": "549d3375c3a368764f0012d3", "cast_id": 33, "profile_path": "/3MzgRiUyIHUvpPPFDSTGPC9ozPV.jpg", "order": 20}, {"name": "Teala Loring", "character": "Pacific All-Risk Telephone Operator (uncredited)", "id": 103937, "credit_id": "549d3385c3a3682f1b0055a8", "cast_id": 34, "profile_path": "/n86sSPZReNImz3AO630mGouivVO.jpg", "order": 21}, {"name": "George Magrill", "character": "Man (uncredited)", "id": 616605, "credit_id": "549d341ec3a368764f0012ed", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Sam McDaniel", "character": "Charlie - Garage Attendant (uncredited)", "id": 213830, "credit_id": "549d3446925141312f005c03", "cast_id": 37, "profile_path": "/q1yRiwq7ylRxy9H70vR9vRDqkbs.jpg", "order": 24}, {"name": "Billy Mitchell", "character": "Pullman Porter (uncredited)", "id": 1404174, "credit_id": "549d34cf9251413129005917", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Clarence Muse", "character": "Man (uncredited)", "id": 87825, "credit_id": "549d34fc9251415dc1004a3a", "cast_id": 39, "profile_path": "/2iQPt7leYimyKNzWWAxUnHSVlYP.jpg", "order": 26}, {"name": "Constance Purdy", "character": "Fat Shopper in Market (uncredited)", "id": 1056412, "credit_id": "549d350cc3a3682f230057c5", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Dick Rush", "character": "Pullman Conductor (uncredited)", "id": 932310, "credit_id": "549d3535c3a3685542002133", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Floyd Shackelford", "character": "Pullman Porter (uncredited)", "id": 1076927, "credit_id": "549d354792514131320054f0", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Oscar Smith", "character": "Pullman Porter (uncredited)", "id": 1271016, "credit_id": "549d35589251415dc1004a43", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Douglas Spencer", "character": "Lou Schwartz (uncredited)", "id": 12356, "credit_id": "549d356dc3a3682f230057d5", "cast_id": 44, "profile_path": null, "order": 31}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe4298c3a36847f802ad7f", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.2, "runtime": 107}, "9772": {"poster_path": "/zgg8psC8jvNEx5RC4NJ4c9J0KtE.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 315156409, "overview": "Russian terrorists conspire to hijack the aircraft with the president and his family on board. The commander in chief finds himself facing an impossible predicament: give in to the terrorists and sacrifice his family, or risk everything to uphold his principles - and the integrity of the nation.", "video": false, "id": 9772, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Air Force One", "tagline": "The fate of a nation rests on the courage of one man.", "vote_count": 243, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118571", "adult": false, "backdrop_path": "/4fTzk3CzU0F89CtxswZxC844WvA.jpg", "production_companies": [{"name": "Buena Vista International", "id": 25646}], "release_date": "1997-07-25", "popularity": 0.366930385849573, "original_title": "Air Force One", "budget": 85000000, "cast": [{"name": "Harrison Ford", "character": "President James Marshall", "id": 3, "credit_id": "52fe4529c3a36847f80bfe91", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Ivan Korshunov", "id": 64, "credit_id": "52fe4529c3a36847f80bfe95", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Glenn Close", "character": "Vice President Kathryn Bennett", "id": 515, "credit_id": "52fe452ac3a36847f80bfe99", "cast_id": 3, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 2}, {"name": "Wendy Crewson", "character": "Grace Marshall", "id": 19957, "credit_id": "52fe452ac3a36847f80bfe9d", "cast_id": 4, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 3}, {"name": "William H. Macy", "character": "Major Caldwell", "id": 3905, "credit_id": "52fe452ac3a36847f80bfea1", "cast_id": 5, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 4}, {"name": "J\u00fcrgen Prochnow", "character": "General Ivan Radek", "id": 920, "credit_id": "52fe452ac3a36847f80bfea5", "cast_id": 6, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 5}, {"name": "Oleg Taktarov", "character": "Prison Guard #2", "id": 77351, "credit_id": "52fe452ac3a36847f80bfeeb", "cast_id": 19, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 6}, {"name": "Liesel Matthews", "character": "Alice Marshall", "id": 84093, "credit_id": "52fe452ac3a36847f80bfef5", "cast_id": 21, "profile_path": "/mTY5bXqMNTPAe3JYU1rQBru5w9o.jpg", "order": 7}, {"name": "Paul Guilfoyle", "character": "Chief of Staff Lloyd 'Shep' Shepherd", "id": 925, "credit_id": "52fe452ac3a36847f80bfef9", "cast_id": 22, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 8}, {"name": "Xander Berkeley", "character": "Secret Service Agent Gibbs", "id": 3982, "credit_id": "52fe452ac3a36847f80bfefd", "cast_id": 23, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 9}, {"name": "Dean Stockwell", "character": "Defense Secretary Walter Dean", "id": 923, "credit_id": "52fe452ac3a36847f80bff01", "cast_id": 24, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 10}, {"name": "Tom Everett", "character": "National Security Advisor Jack Doherty", "id": 140250, "credit_id": "52fe452ac3a36847f80bff05", "cast_id": 25, "profile_path": "/nxrCAB3xL79EdWLwBUMwXj7FtI3.jpg", "order": 11}, {"name": "Donna Bullock", "character": "Deputy Press Secretary Melanie Mitchel", "id": 65740, "credit_id": "52fe452ac3a36847f80bff09", "cast_id": 26, "profile_path": "/bz6ybejRPtrNw9Ul8eXcflgMy8K.jpg", "order": 12}, {"name": "Michael Ray Miller", "character": "Colonel Axelrod", "id": 155841, "credit_id": "52fe452ac3a36847f80bff0d", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Carl Weintraub", "character": "Lt. Colonel Ingraham", "id": 157140, "credit_id": "52fe452ac3a36847f80bff11", "cast_id": 28, "profile_path": "/fYsFbi57VL49hwCLg6CReiDsbDJ.jpg", "order": 14}, {"name": "Elester Latham", "character": "AFO Navigator", "id": 1080064, "credit_id": "52fe452ac3a36847f80bff15", "cast_id": 29, "profile_path": "/1IlxOuvptLb7pH2j0t1KLQukzdG.jpg", "order": 15}, {"name": "Elya Baskin", "character": "Andrei Kolchak", "id": 2368, "credit_id": "52fe452ac3a36847f80bff19", "cast_id": 30, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 16}, {"name": "Levan Uchaneishvili", "character": "Sergei Lenski", "id": 27037, "credit_id": "52fe452ac3a36847f80bff1d", "cast_id": 31, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 17}, {"name": "David Vadim", "character": "Igor Nevsky", "id": 37205, "credit_id": "52fe452ac3a36847f80bff21", "cast_id": 32, "profile_path": "/bvwt3dtEqCmZBPfxTCuDTCPPFEk.jpg", "order": 18}, {"name": "Andrew Divoff", "character": "Boris Bazylev", "id": 36218, "credit_id": "52fe452ac3a36847f80bff25", "cast_id": 33, "profile_path": "/3ana0vJs5uLDXb6dSHvp5naKmcl.jpg", "order": 19}, {"name": "Ilia Volok", "character": "Vladimir Krasin", "id": 109667, "credit_id": "52fe452ac3a36847f80bff29", "cast_id": 34, "profile_path": "/k5ACLMgPMrZjKbnOmHmaeBLx2Te.jpg", "order": 20}, {"name": "Chris Howell", "character": "Major Perkins", "id": 936505, "credit_id": "52fe452ac3a36847f80bff2d", "cast_id": 35, "profile_path": null, "order": 21}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe452ac3a36847f80bfeab", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 5.9, "runtime": 124}, "11090": {"poster_path": "/pY9JyFaLzTdqTui3xLTVXaElGwE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84772742, "overview": "When loser Marvin Mange is involved in a horrible car accident, he's brought back to life by a deranged scientist as half man and half animal. His newfound powers are awesome -- but their adverse side effects could take over his life. Now, Marvin must fight to control his crazy primal urges around his new squeeze, Rianna, and his rival, Sgt. Sisk, who both think he's one cool cat.", "video": false, "id": 11090, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Animal", "tagline": "He wasn't much of a man... Now he's not much of an animal!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0255798", "adult": false, "backdrop_path": "/wwrEPgM8FsVfupP39EexaFWyDPn.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Happy Madison", "id": 878}], "release_date": "2001-06-01", "popularity": 0.379006461701225, "original_title": "The Animal", "budget": 22000000, "cast": [{"name": "Rob Schneider", "character": "Marvin Mange", "id": 60949, "credit_id": "52fe43f59251416c750242bd", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "Colleen Haskell", "character": "Rianna", "id": 68000, "credit_id": "52fe43f59251416c750242c1", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "John C. McGinley", "character": "Sgt. Sisk", "id": 11885, "credit_id": "52fe43f59251416c750242c5", "cast_id": 3, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 2}, {"name": "Ed Asner", "character": "Chief Wilson", "id": 68812, "credit_id": "52fe43f59251416c750242c9", "cast_id": 4, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 3}, {"name": "Guy Torry", "character": "", "id": 828, "credit_id": "539e9971c3a368725e0010f8", "cast_id": 14, "profile_path": "/aNpthnwYd2oHN8KhYBUAhzViNzT.jpg", "order": 4}, {"name": "Adam Sandler", "character": "Townie", "id": 19292, "credit_id": "54eb24bb9251412eae0068f4", "cast_id": 15, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 5}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe43f59251416c750242d5", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 4.9, "runtime": 84}, "2899": {"poster_path": "/qWy5b64SoBXcMDdfgLyLZgIHSdv.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 111127553, "overview": "The Egyptian Queen Cleopatra bets against the Roman Emperor, Julius Caesar, that her people are still great, even if the times of the Pharaohs has long passed. She vows (against all logic) to build a new palace for Caesar within three months. Since all her architects are either busy otherwise or too conservative in style, this ambivalent honor falls to Edifis. He is to build the palace and be covered in gold or, if not, his fate is to be eaten by crocodiles. Edifis calls upon an old friend to help him out: The fabulous Druid Getafix from Gaul, who brews a fantastic potion that gives supernatural strength. In order to help and protect the old Druid, Asterix and Obelix accompany him on his journey to Egypt. When Julius Caesar gets wind of the project succeeding, he has the building site attacked by his troops in order to win the bet and not lose face. But just like the local pirates, he hasn't counted on Asterix and Obelix.", "video": false, "id": 2899, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Asterix & Obelix: Mission Cleopatra", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vm0i4KIscrTiUsri21z1SOIG4fo.jpg", "poster_path": "/sC6NY40I794YnSNxgDDCnX4B3Se.jpg", "id": 2396, "name": "Asterix and Obelix Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0250223", "adult": false, "backdrop_path": "/hHdnN6ZyNkNKkOpVbvNmooTNf8J.jpg", "production_companies": [{"name": "Canal+", "id": 5358}], "release_date": "2002-01-29", "popularity": 1.19816800266505, "original_title": "Ast\u00e9rix & Ob\u00e9lix Mission Cl\u00e9op\u00e2tre", "budget": 0, "cast": [{"name": "G\u00e9rard Depardieu", "character": "Ob\u00e9lix", "id": 16927, "credit_id": "52fe4373c3a36847f8055185", "cast_id": 3, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 0}, {"name": "Christian Clavier", "character": "Ast\u00e9rix", "id": 28781, "credit_id": "52fe4373c3a36847f8055189", "cast_id": 4, "profile_path": "/1VB7ls5ibtsklup67akj6bLbgp.jpg", "order": 1}, {"name": "Monica Bellucci", "character": "Cl\u00e9op\u00e2tre", "id": 28782, "credit_id": "52fe4373c3a36847f805518d", "cast_id": 5, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 2}, {"name": "Alain Chabat", "character": "Julius Ceasar", "id": 4275, "credit_id": "52fe4373c3a36847f8055191", "cast_id": 6, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 3}, {"name": "Jamel Debbouze", "character": "Num\u00e9robis", "id": 2408, "credit_id": "52fe4373c3a36847f805519b", "cast_id": 8, "profile_path": "/rnXlFlIAbCnQqQUyTdBCt7B0H5L.jpg", "order": 4}, {"name": "G\u00e9rard Darmon", "character": "Amonbofils", "id": 47337, "credit_id": "52fe4373c3a36847f805519f", "cast_id": 9, "profile_path": "/9pGuqyaVp9EJDu8xSsM3I8GnP7j.jpg", "order": 5}, {"name": "Claude Rich", "character": "Panoramix", "id": 24903, "credit_id": "52fe4373c3a36847f80551a3", "cast_id": 10, "profile_path": "/uNcSUfnkToKxmVUD0PhngbBm1KL.jpg", "order": 6}, {"name": "\u00c9douard Baer", "character": "Otis", "id": 41035, "credit_id": "52fe4373c3a36847f80551a7", "cast_id": 11, "profile_path": "/bevNDP9RQU1b8UdZPElEw4f9fc9.jpg", "order": 7}, {"name": "Isabelle Nanty", "character": "Itin\u00e9ris", "id": 2412, "credit_id": "52fe4373c3a36847f80551ab", "cast_id": 12, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 8}, {"name": "Jean Benguigui", "character": "Malococsis", "id": 35899, "credit_id": "52fe4373c3a36847f80551af", "cast_id": 13, "profile_path": "/p2XMWRNPJx1aUZbUUTCEvrB4r9T.jpg", "order": 9}, {"name": "Marina Fo\u00efs", "character": "Sucettalanis", "id": 76820, "credit_id": "52fe4373c3a36847f80551b3", "cast_id": 14, "profile_path": "/hkTVJ1gZZjHwUzNwT5pt2I3UNe.jpg", "order": 10}, {"name": "Claude Berri", "character": "le portraitiste de Cl\u00e9op\u00e2tre", "id": 20718, "credit_id": "52fe4373c3a36847f80551b7", "cast_id": 15, "profile_path": "/18kcgqW93Rosz7hQ1zlLWlbBOEi.jpg", "order": 11}, {"name": "Chantal Lauby", "character": "Cartapus", "id": 82119, "credit_id": "52fe4373c3a36847f80551bb", "cast_id": 16, "profile_path": "/jjAqj8DtfVD4F4jJOn2ZUEfp0Qm.jpg", "order": 12}, {"name": "Jean-Paul Rouve", "character": "Caius antivirus", "id": 16922, "credit_id": "52fe4373c3a36847f80551bf", "cast_id": 17, "profile_path": "/iHOZd4VO0dZ2H3ADCJhUk2BmkOd.jpg", "order": 13}, {"name": "Dieudonn\u00e9 M'bala M'bala", "character": "Caius C\u00e9plus", "id": 140457, "credit_id": "54fdb513c3a3681638004502", "cast_id": 34, "profile_path": "/qiqvH4YDT8NMcC4Z1TdAwavHkPc.jpg", "order": 14}, {"name": "Mouss Diouf", "character": "Baba, la vigie des pirates", "id": 146629, "credit_id": "52fe4373c3a36847f80551cd", "cast_id": 20, "profile_path": "/zbZkv7k1srpNEQEaUwsVZMiP1Op.jpg", "order": 16}, {"name": "Bernard Farcy", "character": "Barbe-Rouge le pirate", "id": 23984, "credit_id": "52fe4373c3a36847f80551d1", "cast_id": 21, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 17}, {"name": "Michel Cr\u00e9mad\u00e8s", "character": "Triple Patte", "id": 99303, "credit_id": "52fe4373c3a36847f80551d5", "cast_id": 22, "profile_path": "/8UcDWjb36UGyHyVjdxXeh9h9e92.jpg", "order": 18}, {"name": "\u00c9douard Montoute", "character": "Nexusis", "id": 5441, "credit_id": "52fe4373c3a36847f80551d9", "cast_id": 23, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 19}, {"name": "No\u00e9mie Lenoir", "character": "Chamandra", "id": 145633, "credit_id": "52fe4373c3a36847f80551dd", "cast_id": 24, "profile_path": "/xxksvdnhYW7M65ScvrDZsunEdFK.jpg", "order": 20}, {"name": "Fatou N'Diaye", "character": "Exlibris", "id": 73385, "credit_id": "52fe4373c3a36847f80551e1", "cast_id": 25, "profile_path": "/AdIwZ2ShFf1vmlVV5lB442emck9.jpg", "order": 21}, {"name": "Dominique Besnehard", "character": "Le go\u00fbteur", "id": 21680, "credit_id": "52fe4373c3a36847f80551e5", "cast_id": 26, "profile_path": "/xh3UJRvzFdFfliMIBYvetL5olYZ.jpg", "order": 22}, {"name": "Zinedine Soualem", "character": "Le carreleur", "id": 5445, "credit_id": "52fe4373c3a36847f80551e9", "cast_id": 27, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 23}, {"name": "Cyril Raffaelli", "character": "L\u00e9gionnaire for\u00eat gauloise", "id": 21946, "credit_id": "52fe4373c3a36847f80551ed", "cast_id": 28, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 24}, {"name": "Jo\u00ebl Cantona", "character": "Centurion for\u00eat gauloise", "id": 269059, "credit_id": "52fe4373c3a36847f80551f1", "cast_id": 29, "profile_path": "/rVhMEp9weqlEPkYwTMMfRGBjtiB.jpg", "order": 25}, {"name": "Louis Leterrier", "character": "Ouh\u00e9charlis", "id": 18865, "credit_id": "52fe4373c3a36847f80551f5", "cast_id": 30, "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "order": 26}, {"name": "Emma de Caunes", "character": "La secr\u00e9taire de C\u00e9sar", "id": 4286, "credit_id": "52fe4373c3a36847f80551f9", "cast_id": 31, "profile_path": "/xKHtjT3A8Y5tpmxDs7PddlMP6M1.jpg", "order": 27}, {"name": "Maurice Barth\u00e9l\u00e9my", "character": "L\u00e9gionnaire Couloirdebus", "id": 132542, "credit_id": "52fe4373c3a36847f80551fd", "cast_id": 32, "profile_path": "/72De6FiSHkB9cnn0CNNFJtl6Hw7.jpg", "order": 28}, {"name": "Victor Loukianenko", "character": "Brutus", "id": 1289017, "credit_id": "52fe4373c3a36847f8055201", "cast_id": 33, "profile_path": "/3KHs9hDtfzP3IJEQOoDRUBU5ccq.jpg", "order": 29}], "directors": [{"name": "Alain Chabat", "department": "Directing", "job": "Director", "credit_id": "52fe4373c3a36847f805517b", "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "id": 4275}], "vote_average": 7.2, "runtime": 108}, "9208": {"poster_path": "/avqUG5RYB93rwSUNL5r16Vtbc9g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.", "video": false, "id": 9208, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Broken Arrow", "tagline": "Prepare to Go Ballistic.", "vote_count": 118, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115759", "adult": false, "backdrop_path": "/zZBns22yGa7rprapb11ZtV9EKsp.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Mark Gordon Productions", "id": 11362}, {"name": "WCG Entertainment Productions", "id": 456}], "release_date": "1996-02-09", "popularity": 0.557761944236771, "original_title": "Broken Arrow", "budget": 0, "cast": [{"name": "John Travolta", "character": "Maj. Vic 'Deak' Deakins", "id": 8891, "credit_id": "52fe44dcc3a36847f80ae6e7", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Christian Slater", "character": "Capt. Riley Hale", "id": 2224, "credit_id": "52fe44dcc3a36847f80ae6eb", "cast_id": 2, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 1}, {"name": "Samantha Mathis", "character": "Terry Carmichael", "id": 20767, "credit_id": "52fe44dcc3a36847f80ae6ef", "cast_id": 3, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 2}, {"name": "Delroy Lindo", "character": "Colonel Max Wilkins", "id": 18792, "credit_id": "52fe44dcc3a36847f80ae6f3", "cast_id": 4, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 3}, {"name": "Bob Gunton", "character": "Pritchett", "id": 4029, "credit_id": "52fe44dcc3a36847f80ae751", "cast_id": 21, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 4}, {"name": "Frank Whaley", "character": "Giles Prentice", "id": 11805, "credit_id": "52fe44dcc3a36847f80ae755", "cast_id": 22, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 5}, {"name": "Howie Long", "character": "Kelly", "id": 126418, "credit_id": "52fe44dcc3a36847f80ae759", "cast_id": 23, "profile_path": "/sjwTca5rVsDywsvMlVuN0hyrATP.jpg", "order": 6}, {"name": "Vondie Curtis-Hall", "character": "Chief Sam Rhodes", "id": 6198, "credit_id": "52fe44dcc3a36847f80ae75d", "cast_id": 24, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 7}, {"name": "Jack Thompson", "character": "Chairman, Joint Chief of Staff", "id": 12536, "credit_id": "52fe44dcc3a36847f80ae761", "cast_id": 25, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 8}, {"name": "Vyto Ruginis", "character": "Johnson", "id": 61216, "credit_id": "52fe44dcc3a36847f80ae765", "cast_id": 26, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 9}, {"name": "Ousaun Elam", "character": "Lt. Thomas", "id": 4607, "credit_id": "52fe44dcc3a36847f80ae769", "cast_id": 27, "profile_path": "/wYr28o3cuqZ3iLCMWBMwjhrA05o.jpg", "order": 10}, {"name": "Shaun Toub", "character": "Max", "id": 17857, "credit_id": "52fe44dcc3a36847f80ae76d", "cast_id": 28, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 11}, {"name": "Casey Biggs", "character": "Novacek", "id": 62548, "credit_id": "52fe44dcc3a36847f80ae771", "cast_id": 29, "profile_path": "/iFi43Gv1pGeywgMCBenbPtyTxr7.jpg", "order": 12}, {"name": "Jeffrey J. Stephen", "character": "Shepherd", "id": 141582, "credit_id": "52fe44dcc3a36847f80ae775", "cast_id": 30, "profile_path": "/krBGyBelQSG7FOFS7WpKDQSA0eQ.jpg", "order": 13}, {"name": "Joey Box", "character": "Frakes", "id": 9558, "credit_id": "52fe44dcc3a36847f80ae779", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe44dcc3a36847f80ae747", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.4, "runtime": 108}, "1018": {"poster_path": "/fMC8JBWx2VjsJ53JopAcFjqmlYv.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20117339, "overview": "After a car wreck on the winding Mulholland Drive renders a woman amnesic, she and a perky Hollywood-hopeful search for clues and answers across Los Angeles in a twisting venture beyond dreams and reality.", "video": false, "id": 1018, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mulholland Drive", "tagline": "An actress longing to be a star. A woman searching for herself. Both worlds will collide...on Mulholland Drive", "vote_count": 293, "homepage": "http://www.mulhollanddrive.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0166924", "adult": false, "backdrop_path": "/ihkQywNs6Si24WssdmT1rNHuAYy.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Les Films Alain Sarde", "id": 635}], "release_date": "2001-10-12", "popularity": 0.755743205046399, "original_title": "Mulholland Drive", "budget": 15000000, "cast": [{"name": "Naomi Watts", "character": "Betty Elms", "id": 3489, "credit_id": "52fe42e4c3a36847f802aebb", "cast_id": 8, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Laura Harring", "character": "Rita", "id": 15007, "credit_id": "52fe42e4c3a36847f802aebf", "cast_id": 9, "profile_path": "/ng0u5d41FhJDS9mJ74nYnd7XNZP.jpg", "order": 1}, {"name": "Ann Miller", "character": "Catherine Lenoix", "id": 15008, "credit_id": "52fe42e5c3a36847f802aec3", "cast_id": 10, "profile_path": "/b2NSm6PsPXP9KyKts5ElUVOUoVe.jpg", "order": 2}, {"name": "Dan Hedaya", "character": "Vincenzo Castigliane", "id": 6486, "credit_id": "52fe42e5c3a36847f802aec7", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 3}, {"name": "Justin Theroux", "character": "Adam Kesher", "id": 15009, "credit_id": "52fe42e5c3a36847f802aecb", "cast_id": 12, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 4}, {"name": "Brent Briscoe", "character": "Detective Neal Domgaard", "id": 15011, "credit_id": "52fe42e5c3a36847f802aed7", "cast_id": 15, "profile_path": "/7ws22WEvxt6cvMDyijZOdf9AuiS.jpg", "order": 5}, {"name": "Robert Forster", "character": "Detective Harry McKnight", "id": 5694, "credit_id": "52fe42e5c3a36847f802aecf", "cast_id": 13, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 6}, {"name": "Katharine Towne", "character": "Cynthia Jenzen", "id": 15012, "credit_id": "52fe42e5c3a36847f802aedb", "cast_id": 16, "profile_path": "/33AK0lDtxIhh7125JC7daDWMSkC.jpg", "order": 7}, {"name": "Lee Grant", "character": "Louise Bonner", "id": 30123, "credit_id": "52fe42e5c3a36847f802af23", "cast_id": 33, "profile_path": "/uTlYhUFxQBhpYvNVDNtnWadnK7f.jpg", "order": 8}, {"name": "Scott Coffey", "character": "Wilkins", "id": 9306, "credit_id": "52fe42e5c3a36847f802aee3", "cast_id": 18, "profile_path": "/kRA20iJ4hBeHSUlYduRTXEhQyku.jpg", "order": 9}, {"name": "Billy Ray Cyrus", "character": "Gene", "id": 78887, "credit_id": "52fe42e5c3a36847f802aeff", "cast_id": 23, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 10}, {"name": "Chad Everett", "character": "Jimmy Katz", "id": 15013, "credit_id": "52fe42e5c3a36847f802aedf", "cast_id": 17, "profile_path": "/1FgrsrRFTnNmLkvjvcEPU7ReEuS.jpg", "order": 11}, {"name": "Rita Taggart", "character": "Linney James", "id": 140356, "credit_id": "52fe42e5c3a36847f802af03", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "James Karen", "character": "Wally Brown", "id": 14852, "credit_id": "52fe42e5c3a36847f802af07", "cast_id": 25, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 13}, {"name": "Lori Heuring", "character": "Lorraine Kesher", "id": 15010, "credit_id": "52fe42e5c3a36847f802aed3", "cast_id": 14, "profile_path": "/1AR1oUXL7oHfOwpWlZee709pmh4.jpg", "order": 14}, {"name": "Angelo Badalamenti", "character": "Luigi Castigliani", "id": 5628, "credit_id": "52fe42e5c3a36847f802af0b", "cast_id": 26, "profile_path": "/n5euRajRHN2xSSq4MnGMfHEHkBZ.jpg", "order": 15}, {"name": "Michael Des Barres", "character": "Billy Deznutz", "id": 65334, "credit_id": "52fe42e5c3a36847f802af0f", "cast_id": 27, "profile_path": "/kKXCivEKwYYVirhyIVsqxTlGi5.jpg", "order": 16}, {"name": "Marcus Graham", "character": "Vincent Darby", "id": 154605, "credit_id": "52fe42e5c3a36847f802af13", "cast_id": 28, "profile_path": "/8IZSP92UWNxEXQ6bk6EgN2qQs5b.jpg", "order": 17}, {"name": "Missy Crider", "character": "Waitress at Winkies (Diane / Betty) (as Melissa Crider)", "id": 53646, "credit_id": "52fe42e5c3a36847f802aff1", "cast_id": 84, "profile_path": null, "order": 18}, {"name": "Robert Katims", "character": "Ray Hott", "id": 79654, "credit_id": "52fe42e5c3a36847f802af17", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Jeanne Bates", "character": "Irene", "id": 14796, "credit_id": "52fe42e5c3a36847f802af1b", "cast_id": 31, "profile_path": "/lHrwjoC9K970j1uet252Ti3LBaD.jpg", "order": 20}, {"name": "Dan Birnbaum", "character": "Irene's Companion at Airport", "id": 1037878, "credit_id": "52fe42e5c3a36847f802af1f", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Randall Wulff", "character": "Limo Driver (as Scott Wulff)", "id": 1172386, "credit_id": "52fe42e5c3a36847f802af27", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Maya Bond", "character": "Ruth Elms", "id": 1172387, "credit_id": "52fe42e5c3a36847f802af2b", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Patrick Fischler", "character": "Dan", "id": 52801, "credit_id": "52fe42e5c3a36847f802af2f", "cast_id": 36, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 24}, {"name": "Michael Cooke", "character": "Herb", "id": 1172388, "credit_id": "52fe42e5c3a36847f802af33", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Bonnie Aarons", "character": "Bum", "id": 87287, "credit_id": "52fe42e5c3a36847f802af37", "cast_id": 38, "profile_path": "/9EbAXaOHxyOsIbW5JpP9ezO9t4i.jpg", "order": 26}, {"name": "Michael J. Anderson", "character": "Mr. Roque", "id": 123517, "credit_id": "52fe42e5c3a36847f802af3b", "cast_id": 39, "profile_path": "/3YhlfQLwReWY3xSjh5VJriOkiLA.jpg", "order": 27}, {"name": "Joseph Kearney", "character": "Roque's Manservant", "id": 1172389, "credit_id": "52fe42e5c3a36847f802af3f", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Enrique Buelna", "character": "Back of Head Man", "id": 1172390, "credit_id": "52fe42e5c3a36847f802af43", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Richard Mead", "character": "Hairy-Armed Man", "id": 1172391, "credit_id": "52fe42e5c3a36847f802af47", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Sean Everett", "character": "Cab Driver at LAX (as Sean E. Markland)", "id": 191201, "credit_id": "52fe42e5c3a36847f802af4b", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Daniel Rey", "character": "Valet Attendant", "id": 141808, "credit_id": "52fe42e5c3a36847f802af4f", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "David Schroeder", "character": "Robert Smith", "id": 194624, "credit_id": "52fe42e5c3a36847f802af53", "cast_id": 45, "profile_path": "/2fkDIFtMAUbVwKrPS8evyay4QHG.jpg", "order": 33}, {"name": "Tom Morris", "character": "Espresso Man", "id": 1172392, "credit_id": "52fe42e5c3a36847f802af57", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Melissa George", "character": "Camilla Rhodes", "id": 27755, "credit_id": "52fe42e5c3a36847f802af5b", "cast_id": 47, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 35}, {"name": "Mo Gallini", "character": "Castigliane Limo Driver (as Matt Gallini)", "id": 8180, "credit_id": "52fe42e5c3a36847f802af5f", "cast_id": 48, "profile_path": "/fkc5N30a7ZvZkCJEnnqh24uQwDN.jpg", "order": 36}, {"name": "Mark Pellegrino", "character": "Joe Messing", "id": 1236, "credit_id": "52fe42e5c3a36847f802af63", "cast_id": 49, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 37}, {"name": "Vincent Castellanos", "character": "Ed", "id": 177100, "credit_id": "52fe42e5c3a36847f802af67", "cast_id": 50, "profile_path": "/z0OHAcfUnICbAh9UqAYgfjh1IT5.jpg", "order": 38}, {"name": "Diane Nelson", "character": "Heavy-Set Woman", "id": 1172393, "credit_id": "52fe42e5c3a36847f802af6b", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Charles Croughwell", "character": "Vacuum Man (as Charlie Croughwell)", "id": 9654, "credit_id": "52fe42e5c3a36847f802af6f", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Rena Riffel", "character": "Laney", "id": 66877, "credit_id": "52fe42e5c3a36847f802af73", "cast_id": 53, "profile_path": "/xYcV9qV0GMMKDZqAYmlgWDYIz1Y.jpg", "order": 41}, {"name": "Tad Horino", "character": "Taka", "id": 70947, "credit_id": "52fe42e5c3a36847f802af77", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Tony Longo", "character": "Kenny", "id": 13644, "credit_id": "52fe42e5c3a36847f802af7b", "cast_id": 55, "profile_path": "/iIb28i2pBH8vhPUoZm34Z2MM8D6.jpg", "order": 43}, {"name": "Geno Silva", "character": "Cookie Park Hotel Manager / Club Silencio M.C.", "id": 54864, "credit_id": "52fe42e5c3a36847f802af7f", "cast_id": 56, "profile_path": "/K9Nban8CdJltJqn8GXgnZbgTLc.jpg", "order": 44}, {"name": "Monty Montgomery", "character": "Cowboy (as Lafayette Montgomery)", "id": 6589, "credit_id": "52fe42e5c3a36847f802af83", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Kate Forster", "character": "Martha Johnson", "id": 21803, "credit_id": "52fe42e5c3a36847f802af87", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Wayne Grace", "character": "Bob Brooker", "id": 52145, "credit_id": "52fe42e5c3a36847f802af8b", "cast_id": 59, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 47}, {"name": "Michele Hicks", "character": "Nicki Pelazza", "id": 163642, "credit_id": "52fe42e5c3a36847f802af8f", "cast_id": 60, "profile_path": "/zReeqY2DRzFklCEa2xtopG0OEig.jpg", "order": 48}, {"name": "Lisa K. Ferguson", "character": "Julie Chadwick (as Lisa Ferguson)", "id": 1172395, "credit_id": "52fe42e5c3a36847f802af93", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "William Ostrander", "character": "2nd Assistant Director", "id": 55929, "credit_id": "52fe42e5c3a36847f802af97", "cast_id": 62, "profile_path": null, "order": 50}, {"name": "Lisa Lackey", "character": "Carol", "id": 34274, "credit_id": "52fe42e5c3a36847f802af9b", "cast_id": 63, "profile_path": "/oLG9JLyWqo2dsuukyHka08zfZjT.jpg", "order": 51}, {"name": "Brian Beacock", "character": "Backup Singer #1", "id": 174012, "credit_id": "52fe42e5c3a36847f802af9f", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "Blake Lindsley", "character": "Backup Singer #2", "id": 41690, "credit_id": "52fe42e5c3a36847f802afa3", "cast_id": 65, "profile_path": "/jW9esvFejQSyjyZZMqUg4xcbsww.jpg", "order": 53}, {"name": "Adrien Curry", "character": "Backup Singer #3", "id": 1172396, "credit_id": "52fe42e5c3a36847f802afa7", "cast_id": 66, "profile_path": null, "order": 54}, {"name": "Tyrah M. Lindsey", "character": "Backup Singer #4", "id": 1172397, "credit_id": "52fe42e5c3a36847f802afab", "cast_id": 67, "profile_path": null, "order": 55}, {"name": "Michael D. Weatherred", "character": "Hank (as Michael Weatherred)", "id": 1172398, "credit_id": "52fe42e5c3a36847f802afaf", "cast_id": 68, "profile_path": null, "order": 56}, {"name": "Michael Fairman", "character": "Jason", "id": 84707, "credit_id": "52fe42e5c3a36847f802afb3", "cast_id": 69, "profile_path": "/7xdaQL4hxatCFWXottzdFsUKGJU.jpg", "order": 57}, {"name": "Johanna Stein", "character": "Woman in #12", "id": 961740, "credit_id": "52fe42e5c3a36847f802afb7", "cast_id": 70, "profile_path": null, "order": 58}, {"name": "Richard Green", "character": "Bondar", "id": 1172399, "credit_id": "52fe42e5c3a36847f802afbb", "cast_id": 71, "profile_path": null, "order": 59}, {"name": "Conte Candoli", "character": "Club Silencio Trumpet Player (as Conti Condoli)", "id": 1172400, "credit_id": "52fe42e5c3a36847f802afbf", "cast_id": 72, "profile_path": null, "order": 60}, {"name": "Cori Glazer", "character": "Blue-Haired Lady in balcony seat at Club Silencio", "id": 9320, "credit_id": "52fe42e5c3a36847f802afc3", "cast_id": 73, "profile_path": null, "order": 61}, {"name": "Rebekah Del Rio", "character": "Herself", "id": 230725, "credit_id": "52fe42e5c3a36847f802afc7", "cast_id": 74, "profile_path": null, "order": 62}, {"name": "Lyssie Powell", "character": "Blond in Bed (Corpse) in #17", "id": 1172401, "credit_id": "52fe42e5c3a36847f802afcb", "cast_id": 75, "profile_path": null, "order": 63}, {"name": "Kimberly Clever", "character": "Dancer", "id": 1172402, "credit_id": "52fe42e5c3a36847f802afcf", "cast_id": 76, "profile_path": null, "order": 64}, {"name": "Joshua Collazo", "character": "Dancer", "id": 1172403, "credit_id": "52fe42e5c3a36847f802afd3", "cast_id": 77, "profile_path": null, "order": 65}, {"name": "David Frutos", "character": "Dancer", "id": 1172404, "credit_id": "52fe42e5c3a36847f802afd7", "cast_id": 78, "profile_path": null, "order": 66}, {"name": "Peter Loggins", "character": "Dancer", "id": 1172405, "credit_id": "52fe42e5c3a36847f802afdb", "cast_id": 79, "profile_path": null, "order": 67}, {"name": "Theresa Salazar", "character": "Dancer", "id": 1172406, "credit_id": "52fe42e5c3a36847f802afdf", "cast_id": 80, "profile_path": null, "order": 68}, {"name": "Thea Samuels", "character": "Dancer", "id": 1172407, "credit_id": "52fe42e5c3a36847f802afe3", "cast_id": 81, "profile_path": null, "order": 69}, {"name": "Christian Thompson", "character": "Dancer", "id": 1172409, "credit_id": "52fe42e5c3a36847f802afe7", "cast_id": 82, "profile_path": null, "order": 70}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe42e4c3a36847f802ae9f", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.2, "runtime": 147}, "1023": {"poster_path": "/pakGgN2eNZ6Eayl7B3ulickInwD.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 0, "overview": "A neo-nazi sentenced to community service at a church clashes with the blindly devotional priest.", "video": false, "id": 1023, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Adam's Apples", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "da", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0418455", "adult": false, "backdrop_path": "/iljRuzHU7sWppNPTZwHQ1e8R5ss.jpg", "production_companies": [{"name": "M&M Productions", "id": 1789}], "release_date": "2005-04-15", "popularity": 0.683084581720441, "original_title": "Adams \u00e6bler", "budget": 0, "cast": [{"name": "Mads Mikkelsen", "character": "Ivan", "id": 1019, "credit_id": "52fe42e5c3a36847f802b05d", "cast_id": 7, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "Ulrich Thomsen", "character": "Adam", "id": 4455, "credit_id": "52fe42e5c3a36847f802b061", "cast_id": 8, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 1}, {"name": "Paprika Steen", "character": "Sarah", "id": 4458, "credit_id": "52fe42e5c3a36847f802b065", "cast_id": 9, "profile_path": "/7iz6g2gXDCVL9LFjqmVV8KwGvNP.jpg", "order": 2}, {"name": "Ole Thestrup", "character": "Dr. Kolberg", "id": 15085, "credit_id": "52fe42e5c3a36847f802b069", "cast_id": 10, "profile_path": "/qGhwUg9o56czRYXYYSpD8urSCpH.jpg", "order": 3}, {"name": "Nikolaj Lie Kaas", "character": "Holger", "id": 1018, "credit_id": "52fe42e5c3a36847f802b06d", "cast_id": 11, "profile_path": "/xO4yWra3xoK0rdzDN4OC8Jwh0FH.jpg", "order": 4}, {"name": "Nicolas Bro", "character": "Gunnar", "id": 15086, "credit_id": "52fe42e5c3a36847f802b071", "cast_id": 12, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 5}, {"name": "Ali Kazim", "character": "Khalid", "id": 15087, "credit_id": "52fe42e5c3a36847f802b075", "cast_id": 13, "profile_path": "/2KnMvZheRWxFDUyZVArAlo9mtBY.jpg", "order": 6}, {"name": "Gyrd L\u00f8fquist", "character": "Poul", "id": 15088, "credit_id": "52fe42e5c3a36847f802b079", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Lars Ranthe", "character": "Esben", "id": 588175, "credit_id": "52fe42e5c3a36847f802b07d", "cast_id": 15, "profile_path": "/qMbcmZDykjm0K1spNjzv5HDoL9f.jpg", "order": 8}, {"name": "Peter Reichhardt", "character": "Nalle", "id": 1115156, "credit_id": "54a171ac925141313200cc04", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Tomas Villum Jensen", "character": "Arne", "id": 3401, "credit_id": "54a171c8925141236b003fec", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Peter Lambert", "character": "J\u00f8rgen", "id": 1405772, "credit_id": "54a171f29251412127003e94", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Emil Kevin Olsen", "character": "Christoffer", "id": 1439235, "credit_id": "550321cd925141282f003eb6", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Tomas Villum Jensen", "character": "", "id": 3401, "credit_id": "550321fcc3a3685ba6004d6d", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Solvej Christensen", "character": "", "id": 1439236, "credit_id": "5503221dc3a3687b6900404f", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Rasmus Rise Michaelsen", "character": "", "id": 1439237, "credit_id": "5503222ac3a3685b9e004558", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Jacob-Ole Remming", "character": "", "id": 1439238, "credit_id": "55032235c3a3685b9b004706", "cast_id": 23, "profile_path": null, "order": 16}], "directors": [{"name": "Anders Thomas Jensen", "department": "Directing", "job": "Director", "credit_id": "52fe42e5c3a36847f802b03b", "profile_path": "/ntixpqEaEs67us2TO96GsRs7CXZ.jpg", "id": 1012}], "vote_average": 7.8, "runtime": 94}, "238603": {"poster_path": "/tWPWo3JgwM7uGX096mWXmWPl8k8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45300000, "overview": "After a construction project begins digging in their neighborhood, best friends Tuck, Munch and Alex inexplicably begin to receive strange, encoded messages on their cell phones. Convinced something bigger is going on, they go to their parents and the authorities. When everyone around them refuses to take the messages seriously, the three embark on a secret adventure to crack the code and follow it to its source. But taking matters into their own hands gets the trio in way over their heads when they discover a mysterious being from another world who desperately needs their help. The epic, suspenseful and exciting journey that follows will change all of their lives forever.", "video": false, "id": 238603, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Earth to Echo", "tagline": "No one will ever believe our story.", "vote_count": 100, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2183034", "adult": false, "backdrop_path": "/2yOn82xoLWGlrTLOtpiASQaa8tQ.jpg", "production_companies": [{"name": "Panay Films", "id": 10426}, {"name": "Walt Disney Studios Motion Pictures", "id": 3036}], "release_date": "2014-07-02", "popularity": 1.51017187596557, "original_title": "Earth to Echo", "budget": 13000000, "cast": [{"name": "Teo Halm", "character": "Alex", "id": 1273197, "credit_id": "52fe4e80c3a36847f8294827", "cast_id": 1, "profile_path": "/r0KL83OlIDgHMQctQHWSxt34oZ2.jpg", "order": 0}, {"name": "Astro", "character": "Tuck", "id": 544123, "credit_id": "52fe4e80c3a36847f829482b", "cast_id": 2, "profile_path": "/w544ooVz3Gcws163vkvLk3d2D3z.jpg", "order": 1}, {"name": "Resse Hartwig", "character": "Munch", "id": 1273198, "credit_id": "52fe4e80c3a36847f829482f", "cast_id": 3, "profile_path": "/kKaaHDqyUamg2uM9LORCJ3mb1Hy.jpg", "order": 2}, {"name": "Ella Wahlestedt", "character": "Emma", "id": 1273199, "credit_id": "52fe4e80c3a36847f8294833", "cast_id": 4, "profile_path": "/mGYzOy2cwVfDpHBhGtqbbmlWu1y.jpg", "order": 3}, {"name": "Jason Gray-Stanford", "character": "Dr. Lawrence Madsen", "id": 6166, "credit_id": "52fe4e80c3a36847f8294837", "cast_id": 5, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 4}, {"name": "Cassius Willis", "character": "Calvin", "id": 1225829, "credit_id": "52fe4e80c3a36847f829483b", "cast_id": 6, "profile_path": "/i8XUhBh7AyBisE7PImnzXTYMzRh.jpg", "order": 5}, {"name": "Drake Kemper", "character": "Mookie", "id": 963227, "credit_id": "52fe4e80c3a36847f829483f", "cast_id": 7, "profile_path": "/ftVNe5kvEKk27yAqqBXU6E2eKC.jpg", "order": 6}, {"name": "Algee Smith", "character": "Marcus Simms", "id": 1377458, "credit_id": "544bbc0f0e0a26747c006f0e", "cast_id": 12, "profile_path": "/Ar0tYhSPg7QqRVFFR1MMMPo2cLm.jpg", "order": 7}, {"name": "Sonya Leslie", "character": "Theresa Simms", "id": 1224154, "credit_id": "544bbc310e0a267486007101", "cast_id": 13, "profile_path": "/2UdaOzLGCWMV8i502Y0ktTUixjX.jpg", "order": 8}, {"name": "Kerry O'Malley", "character": "Janice Douglas", "id": 100567, "credit_id": "544bbc400e0a265f7a0006d8", "cast_id": 14, "profile_path": "/j42ByTSTXyRmcN3WJAUDOkwNJvQ.jpg", "order": 9}, {"name": "Virginia Louise Smith", "character": "Betty Barrett", "id": 1377459, "credit_id": "544bbc51c3a3686ac1000dcc", "cast_id": 15, "profile_path": "/7F85HKo0AJN8iwdVjSBRUzbbo1u.jpg", "order": 10}, {"name": "Peter MacKenzie", "character": "James Hastings", "id": 62597, "credit_id": "544bbc61c3a3680fb800723a", "cast_id": 16, "profile_path": "/mAnOLlLQDEtUvAqEjKPLiQSJ0w5.jpg", "order": 11}, {"name": "Valerie Wildman", "character": "Christine Hastings", "id": 47884, "credit_id": "544bbc72c3a3680fb4007562", "cast_id": 17, "profile_path": "/6VveQx5v1ELVNjnvPWZg0Bgzw29.jpg", "order": 12}, {"name": "Roger Hewlett", "character": "les ouvriers en b\u00e2timent", "id": 129013, "credit_id": "544f1994c3a3680245000f5f", "cast_id": 27, "profile_path": "/fVX5UUZPX8YV52V8ATuI6hAgbde.jpg", "order": 13}, {"name": "Mary Pat Gleason", "character": "Dusty, la dame au bar", "id": 62595, "credit_id": "544f1a1a0e0a26134c000f20", "cast_id": 28, "profile_path": "/crJCES2ttMVhuU2gFxrRg1jDWum.jpg", "order": 14}, {"name": "Marilyn Giacomazzi", "character": "les habitu\u00e9s du bar", "id": 1378610, "credit_id": "544f1a80c3a3680236000f73", "cast_id": 29, "profile_path": "/8ALuHY5HUiE6r6XqgVpWldRmUPC.jpg", "order": 15}, {"name": "Frank Lloyd", "character": "les habitu\u00e9s du bar", "id": 1378613, "credit_id": "544f1da20e0a2601d8000f5e", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Chris Wylde", "character": "un agent de s\u00e9curit\u00e9", "id": 1233909, "credit_id": "544f2276c3a368532b00110c", "cast_id": 31, "profile_path": "/k8GeKsnKyHxaYQRW9N3JOpp3Nvi.jpg", "order": 17}, {"name": "Brooke Dillman", "character": "une serveuse du restaurant", "id": 54718, "credit_id": "544f22bfc3a36802450010c1", "cast_id": 32, "profile_path": "/d75GJILbWQv8c96At9lflDWwGxY.jpg", "order": 18}, {"name": "Myk Watford", "character": "Blake Douglas", "id": 84955, "credit_id": "544f230c0e0a263a180010be", "cast_id": 33, "profile_path": "/7PMUVPtCvt2DJEvH5dhimM6qiZg.jpg", "order": 19}, {"name": "Tiffany Espensen", "character": "Charlie, les amis d'\u00e9cole", "id": 1237601, "credit_id": "544f26ea0e0a263a1800114b", "cast_id": 34, "profile_path": "/nxXUE2I3vsMNy8iha3PCrnO4wTt.jpg", "order": 20}, {"name": "Israel Broussard", "character": "Cameron, le gamin qui pousse Tuck", "id": 969140, "credit_id": "544f27bdc3a368023c001151", "cast_id": 35, "profile_path": "/ztE0nfwxNRYSh4EpDyhs9OrYFAT.jpg", "order": 21}, {"name": "Sara Arrington", "character": "une amie de la m\u00e8re de Munch", "id": 1378628, "credit_id": "544f29290e0a2639fe001300", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Arthur Darbinyan", "character": "le patron du magasin de d\u00e9p\u00f4t sur gages", "id": 188758, "credit_id": "544f29a30e0a2601d80010ea", "cast_id": 37, "profile_path": "/efj5VJqc2tlZ15aesmMXit3oner.jpg", "order": 23}, {"name": "Michael Lee Merrins", "character": "un chauffeur de camion", "id": 1378629, "credit_id": "544f2a1d0e0a263a0a00116c", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Sean Carroll", "character": "le podcast (voix)", "id": 1378631, "credit_id": "544f2a93c3a3680236001179", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Echo", "character": "Echo", "id": 1378632, "credit_id": "544f2b490e0a2639fe001336", "cast_id": 40, "profile_path": "/wNCMtjUBwOy2XlEKBno6vVNybN2.jpg", "order": 26}], "directors": [{"name": "Dave Green", "department": "Directing", "job": "Director", "credit_id": "52fe4e80c3a36847f829484b", "profile_path": null, "id": 1101410}], "vote_average": 5.9, "runtime": 89}, "214030": {"poster_path": "/zknfk3A2CWbqfh2y4QcqaTTtbXA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2681345, "overview": "Fioravante decides to become a professional Don Juan as a way of making money to help his cash-strapped friend, Murray. With Murray acting as his \"manager\", the duo quickly finds themselves caught up in the crosscurrents of love and money.", "video": false, "id": 214030, "genres": [{"id": 35, "name": "Comedy"}], "title": "Fading Gigolo", "tagline": "", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2258345", "adult": false, "backdrop_path": "/jxaYRyTOmPKiDu2NkfrtRX5bW0n.jpg", "production_companies": [], "release_date": "2013-09-07", "popularity": 0.656734337309333, "original_title": "Fading Gigolo", "budget": 0, "cast": [{"name": "John Turturro", "character": "Fioravante", "id": 1241, "credit_id": "52fe4dd1c3a368484e1ff833", "cast_id": 7, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 0}, {"name": "Woody Allen", "character": "Murray", "id": 1243, "credit_id": "52fe4dd1c3a368484e1ff82f", "cast_id": 6, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 1}, {"name": "Vanessa Paradis", "character": "Avigal", "id": 65007, "credit_id": "52fe4dd1c3a368484e1ff837", "cast_id": 8, "profile_path": "/zPwmGEC7nN43bRIb4eovuTWEE18.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Dovi", "id": 23626, "credit_id": "52fe4dd1c3a368484e1ff823", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "Sharon Stone", "character": "Dr. Parker", "id": 4430, "credit_id": "52fe4dd1c3a368484e1ff82b", "cast_id": 5, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 4}, {"name": "Sof\u00eda Vergara", "character": "Selima", "id": 63522, "credit_id": "52fe4dd1c3a368484e1ff827", "cast_id": 4, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 5}, {"name": "Bob Balaban", "character": "Sol", "id": 12438, "credit_id": "52fe4dd1c3a368484e1ff843", "cast_id": 11, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 6}, {"name": "Max Casella", "character": "Guy at Couner", "id": 7133, "credit_id": "52fe4dd1c3a368484e1ff83b", "cast_id": 9, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 7}, {"name": "Aida Turturro", "character": "Driver's Wife", "id": 106791, "credit_id": "52fe4dd1c3a368484e1ff83f", "cast_id": 10, "profile_path": "/efqEyVJwU2o4zmfvlbuxOxlbEXj.jpg", "order": 8}, {"name": "Eugenia Kuzmina", "character": "Lady on Street", "id": 1333845, "credit_id": "53a8e4d1c3a3687a340063ad", "cast_id": 12, "profile_path": "/5TpGe5oRdZ7pt9Rzrjjjt9THL9E.jpg", "order": 9}], "directors": [{"name": "John Turturro", "department": "Directing", "job": "Director", "credit_id": "52fe4dd1c3a368484e1ff819", "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "id": 1241}], "vote_average": 5.9, "runtime": 90}, "16558": {"poster_path": "/r1dmuBJbKudEULr9oI22VcoDLzK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60000000, "overview": "Two romantically engaged corporate spies (Owen and Roberts) team up to manipulate a corporate race to corner the market on a medical innovation that will reap huge profits and enable them to lead an extravagant lifestyle together.", "video": false, "id": 16558, "genres": [{"id": 53, "name": "Thriller"}], "title": "Duplicity", "tagline": "Outwit. Outspy. Outsmart. Outplay. Then get out.", "vote_count": 64, "homepage": "http://www.universalstudiosentertainment.com/duplicity/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1135487", "adult": false, "backdrop_path": "/udn0yGthFoMJnc3WKUb8BzmHKxd.jpg", "production_companies": [{"name": "Medienproduktion Poseidon Filmgesellschaft", "id": 27317}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Laura Bickford Productions", "id": 5163}], "release_date": "2009-03-19", "popularity": 0.409429404732699, "original_title": "Duplicity", "budget": 78146652, "cast": [{"name": "Clive Owen", "character": "Ray Koval", "id": 2296, "credit_id": "52fe46db9251416c75085cc9", "cast_id": 1, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Claire Stenwick", "id": 1204, "credit_id": "52fe46db9251416c75085ccd", "cast_id": 2, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Richard Garsik", "id": 13242, "credit_id": "52fe46db9251416c75085cd1", "cast_id": 3, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Howard Tully", "id": 207, "credit_id": "52fe46db9251416c75085ce1", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Lisa Roberts Gillan", "character": "Tully's Assistant", "id": 15109, "credit_id": "52fe46db9251416c75085cfd", "cast_id": 11, "profile_path": "/buXwQSX1Lo802E9CNlfdf8mHPJ8.jpg", "order": 4}, {"name": "Denis O'Hare", "character": "Duke Monahan", "id": 81681, "credit_id": "52fe46db9251416c75085d01", "cast_id": 12, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 5}, {"name": "Kathleen Chalfant", "character": "Pam Frailes", "id": 52003, "credit_id": "52fe46db9251416c75085d05", "cast_id": 13, "profile_path": "/sxsYCRctVv85Ebzgwm32Mx9UpDd.jpg", "order": 6}, {"name": "Carrie Preston", "character": "Barbara Bofferd", "id": 7465, "credit_id": "52fe46db9251416c75085d09", "cast_id": 14, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 7}, {"name": "Dan Daily", "character": "Garsik's Aide", "id": 1340884, "credit_id": "53c1ae67c3a3684ce900736a", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "David Shumbris", "character": "Turtleneck", "id": 34541, "credit_id": "53c1ae88c3a3684cec006fd7", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Rick Worthy", "character": "Dale Raimes", "id": 61545, "credit_id": "53c1ae9ec3a3684cef007386", "cast_id": 17, "profile_path": "/vaKDRpwvKj24AHNKmZX22v4OLwK.jpg", "order": 10}, {"name": "Oleg Shtefanko", "character": "Boris Fetyov", "id": 235858, "credit_id": "53c1aeb7c3a3684cf4006d3d", "cast_id": 18, "profile_path": "/5xGQdPiw66bpcgV9EDkKxxyyJin.jpg", "order": 11}, {"name": "Khan Baykal", "character": "Dinesh Patel", "id": 164388, "credit_id": "53c1aef1c3a3684cf9006f08", "cast_id": 19, "profile_path": "/kCMsNYuAeFDCNyCbgaYCzmvVCm5.jpg", "order": 12}, {"name": "Thomas McCarthy", "character": "Jeff Bauer", "id": 17867, "credit_id": "53c1af30c3a3684cdb0075d1", "cast_id": 20, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 13}, {"name": "Wayne Duvall", "character": "Ned Guston", "id": 1470, "credit_id": "53c1af4cc3a3684cdf006dc1", "cast_id": 21, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 14}, {"name": "Fabrizio Brienza", "character": "Hotel Manager", "id": 1340885, "credit_id": "53c1af62c3a3684cdb0075d6", "cast_id": 22, "profile_path": null, "order": 15}], "directors": [{"name": "Tony Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe46db9251416c75085cd7", "profile_path": "/9HOtDgcO6F4Fa4BaIjt0t3Vbxrj.jpg", "id": 19242}], "vote_average": 5.6, "runtime": 125}, "17431": {"poster_path": "/xbDTUt1O2Cy4WuM2QGVC9gnrJOf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 9760104, "overview": "With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. The long period of time alone however has resulted in him talking to himself for the most part, or to his plants. Direct communication with Earth is not possible due to a long-standing communication malfunction but he does get an occasional message from his wife Tess. When he has an accident however, he wakens to find that he is not alone. He also comes to realize that his world is not what he thought it was.", "video": false, "id": 17431, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Moon", "tagline": "The last place you'd ever expect to find yourself.", "vote_count": 550, "homepage": "http://www.sonyclassics.com/moon/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1182345", "adult": false, "backdrop_path": "/j8iM6B5HwZ8sojjM6kJbVniMKTh.jpg", "production_companies": [{"name": "Lunar Industries", "id": 3317}, {"name": "Liberty Films UK", "id": 3316}, {"name": "Xingu Films", "id": 3318}, {"name": "Limelight Fund", "id": 12018}], "release_date": "2009-07-17", "popularity": 1.22061566285262, "original_title": "Moon", "budget": 5000000, "cast": [{"name": "Sam Rockwell", "character": "Sam Bell", "id": 6807, "credit_id": "52fe47249251416c7508f285", "cast_id": 1, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Robot Gerty (Voice)", "id": 1979, "credit_id": "52fe47249251416c7508f2bb", "cast_id": 15, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Dominique McElligott", "character": "Tess Bell", "id": 115146, "credit_id": "52fe47249251416c7508f29b", "cast_id": 6, "profile_path": "/v7c8fYjnBOVRnE2X9FnRQBtvK3x.jpg", "order": 2}, {"name": "Rosie Shaw", "character": "Little Eve", "id": 115147, "credit_id": "52fe47249251416c7508f29f", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Adrienne Shaw", "character": "Nanny", "id": 115149, "credit_id": "52fe47249251416c7508f2a3", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Kaya Scodelario", "character": "Eve", "id": 115150, "credit_id": "52fe47249251416c7508f2a7", "cast_id": 9, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 5}, {"name": "Benedict Wong", "character": "Thompson", "id": 30082, "credit_id": "52fe47249251416c7508f2ab", "cast_id": 10, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 6}, {"name": "Matthew Berry", "character": "Overmeyers", "id": 57149, "credit_id": "52fe47249251416c7508f2af", "cast_id": 11, "profile_path": "/y1Lpa8sgwLf8epS4hQUL8TJ1fNQ.jpg", "order": 7}, {"name": "Malcolm Stewart", "character": "Technician", "id": 27110, "credit_id": "52fe47249251416c7508f2b3", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Robin Chalk", "character": "Sam Bell Clone", "id": 115151, "credit_id": "52fe47249251416c7508f2b7", "cast_id": 13, "profile_path": null, "order": 9}], "directors": [{"name": "Duncan Jones", "department": "Directing", "job": "Director", "credit_id": "52fe47249251416c7508f28b", "profile_path": "/ZXaHANdHg58LEQHP6mRcjy72W6.jpg", "id": 81850}], "vote_average": 7.5, "runtime": 97}, "1051": {"poster_path": "/s15eFbrfF6FSx8EG4Eocfn2Z85L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41158757, "overview": "A pair of NYC cops in the Narcotics Bureau stumble onto a drug smuggling job with a French connection.", "video": false, "id": 1051, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The French Connection", "tagline": "", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6Ppe0MdCMwlbl63x8G29ko4qtj9.jpg", "poster_path": "/zheN2WhCSS1M8rkjObQGr0dZdvZ.jpg", "id": 155474, "name": "The French Connection Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0067116", "adult": false, "backdrop_path": "/oQl0ahcEndQGHMRfq97THau9TT1.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "D'Antoni Productions", "id": 646}], "release_date": "1971-10-07", "popularity": 0.941639201270705, "original_title": "The French Connection", "budget": 1800000, "cast": [{"name": "Gene Hackman", "character": "Det. Jimmy \"Popeye\" Doyle", "id": 193, "credit_id": "52fe42e6c3a36847f802b3c3", "cast_id": 21, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Roy Scheider", "character": "Det. Buddy \"Cloudy\" Russo", "id": 6355, "credit_id": "52fe42e6c3a36847f802b39d", "cast_id": 12, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 1}, {"name": "Fernando Rey", "character": "Alain Charnier", "id": 14821, "credit_id": "52fe42e6c3a36847f802b3a1", "cast_id": 13, "profile_path": "/nDKrpncsQUHOmpD34INXLy2P2AN.jpg", "order": 2}, {"name": "Tony Lo Bianco", "character": "Salvatora \"Sal\" Boca", "id": 15183, "credit_id": "52fe42e6c3a36847f802b3a5", "cast_id": 14, "profile_path": "/juGwBRuoP25CN8fvVqTitbLsF3w.jpg", "order": 3}, {"name": "Marcel Bozzuffi", "character": "Pierre Nicoli", "id": 15184, "credit_id": "52fe42e6c3a36847f802b3a9", "cast_id": 15, "profile_path": "/vwlGmFLX4493fp6bFGrP89ejzf8.jpg", "order": 4}, {"name": "Fr\u00e9d\u00e9ric de Pasquale", "character": "Henri Devereaux", "id": 15185, "credit_id": "52fe42e6c3a36847f802b3ad", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Bill Hickman", "character": "Bill Mulderig", "id": 15186, "credit_id": "52fe42e6c3a36847f802b3b1", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Harold Gary", "character": "Joel Weinstock", "id": 15187, "credit_id": "52fe42e6c3a36847f802b3b5", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Arlene Farber", "character": "Angie Boca", "id": 15188, "credit_id": "52fe42e6c3a36847f802b3b9", "cast_id": 19, "profile_path": null, "order": 8}], "directors": [{"name": "William Friedkin", "department": "Directing", "job": "Director", "credit_id": "52fe42e6c3a36847f802b369", "profile_path": "/egUtSz4yBSvTTv7GJMk4MykWswt.jpg", "id": 15175}], "vote_average": 6.6, "runtime": 104}, "156700": {"poster_path": "/4HGYmH5mYcBBTIMHhbOBdT1Antl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Joe Toy, on the verge of adolescence, finds himself increasingly frustrated by his single father, Frank's attempts to manage his life. Declaring his freedom once and for all, he escapes to a clearing in the woods with his best friend, Patrick, and a strange kid named Biaggio. He announces that they are going to build a house there, free from responsibility and parents. Once their makeshift abode is finished, the three young men find themselves masters of their own destiny, alone in the woods.", "video": false, "id": 156700, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Kings of Summer", "tagline": "Why live when you can rule.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2179116", "adult": false, "backdrop_path": "/cN7dCe6ig4ZVbBbGqO5m4oZvink.jpg", "production_companies": [{"name": "Big Beach Films", "id": 12808}], "release_date": "2013-05-31", "popularity": 0.955139951050018, "original_title": "The Kings of Summer", "budget": 0, "cast": [{"name": "Nick Robinson", "character": "Joe Toy", "id": 1108907, "credit_id": "52fe4baa9251416c910e1dd5", "cast_id": 3, "profile_path": "/lpruCzyNpXzSmvCSBwQfOOG30Rx.jpg", "order": 0}, {"name": "Gabriel Basso", "character": "Patrick Keenan", "id": 222122, "credit_id": "52fe4baa9251416c910e1dd9", "cast_id": 4, "profile_path": "/rHD6iBvmAYOtyFaV0wXJMvYZrMU.jpg", "order": 1}, {"name": "Mois\u00e9s Arias", "character": "Biaggio", "id": 57412, "credit_id": "52fe4baa9251416c910e1ddd", "cast_id": 5, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 2}, {"name": "Alison Brie", "character": "Heather Toy", "id": 88029, "credit_id": "52fe4baa9251416c910e1de1", "cast_id": 6, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 3}, {"name": "Nick Offerman", "character": "Frank Toy", "id": 17039, "credit_id": "52fe4baa9251416c910e1de5", "cast_id": 7, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 4}, {"name": "Megan Mullally", "character": "Mrs. Keenan", "id": 52119, "credit_id": "52fe4baa9251416c910e1de9", "cast_id": 8, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 5}, {"name": "Mary Lynn Rajskub", "character": "Captain Davis", "id": 25884, "credit_id": "52fe4baa9251416c910e1ded", "cast_id": 9, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 6}, {"name": "Angela Trimbur", "character": "FacePaint", "id": 183073, "credit_id": "52fe4baa9251416c910e1df1", "cast_id": 10, "profile_path": "/iNIEOoiN96uvm5YirIGK2fi8qs5.jpg", "order": 7}, {"name": "Erin Moriarty", "character": "Kelly", "id": 990393, "credit_id": "52fe4baa9251416c910e1df5", "cast_id": 11, "profile_path": "/v0jDVSB0HugI3mRjkirOgLBawM7.jpg", "order": 8}, {"name": "Lili Reinhart", "character": "Vicki", "id": 1136940, "credit_id": "52fe4baa9251416c910e1df9", "cast_id": 12, "profile_path": "/iVBjHuzyP9YkbwnJHH5A0yVEURt.jpg", "order": 9}, {"name": "Marc Evan Jackson", "character": "Mr. Keenan", "id": 141956, "credit_id": "52fe4baa9251416c910e1dfd", "cast_id": 13, "profile_path": "/739YCwcRkcTnbyCHD0Qo526bTrG.jpg", "order": 10}, {"name": "Kumail Nanjiani", "character": "Delivery Guy", "id": 466505, "credit_id": "52fe4baa9251416c910e1e01", "cast_id": 14, "profile_path": "/x4nAztHY72SVciRfxEsbhIVTsIu.jpg", "order": 11}, {"name": "Hannibal Buress", "character": "Bus Driver", "id": 500427, "credit_id": "52fe4baa9251416c910e1e05", "cast_id": 15, "profile_path": "/diJUQc3FWB0ol1MCBZQJsMZpMoK.jpg", "order": 12}, {"name": "Nathan Keyes", "character": "Paul", "id": 134397, "credit_id": "52fe4baa9251416c910e1e09", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Austin Abrams", "character": "Aaron", "id": 148992, "credit_id": "52fe4baa9251416c910e1e0d", "cast_id": 17, "profile_path": "/8JrNQOokSRBzoQMzyVcoEh6IzQ9.jpg", "order": 14}, {"name": "Thomas Middleditch", "character": "Rookie Cop", "id": 111678, "credit_id": "54a1d2b69251411d53007ead", "cast_id": 25, "profile_path": "/eejkzd9gtYm7pMFiVdjsGBYde5H.jpg", "order": 15}], "directors": [{"name": "Jordan Vogt-Roberts", "department": "Directing", "job": "Director", "credit_id": "52fe4baa9251416c910e1dcb", "profile_path": null, "id": 236539}], "vote_average": 7.2, "runtime": 93}, "156711": {"poster_path": "/oyJBZ5DoOx5MVXUEe3YHJcs2FmQ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Obsessed with the BBC production of \"Pride and Prejudice\", a woman travels to a Jane Austen theme park in search for her perfect gentleman.", "video": false, "id": 156711, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Austenland", "tagline": "I love Mr. Darcy", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1985019", "adult": false, "backdrop_path": "/wNmu6FtkNOidVvwtMu6ytE9teFp.jpg", "production_companies": [{"name": "Fickle Fish Films", "id": 19374}, {"name": "Moxie Pictures", "id": 19375}], "release_date": "2013-08-16", "popularity": 0.283833571407405, "original_title": "Austenland", "budget": 4900000, "cast": [{"name": "Keri Russell", "character": "Jane Hayes", "id": 41292, "credit_id": "52fe4bab9251416c910e1f67", "cast_id": 3, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 0}, {"name": "J. J. Feild", "character": "Mr. Henry Nobley", "id": 30710, "credit_id": "52fe4bab9251416c910e1f6b", "cast_id": 4, "profile_path": "/pdDaMSsDqcyy2grU38pJC0s6XCs.jpg", "order": 1}, {"name": "Bret McKenzie", "character": "Martin", "id": 105584, "credit_id": "52fe4bab9251416c910e1f6f", "cast_id": 5, "profile_path": "/tEP4b5bTpSxJUHOYItg5xrZh43F.jpg", "order": 2}, {"name": "Jennifer Coolidge", "character": "Miss Elizabeth Charming", "id": 38334, "credit_id": "52fe4bab9251416c910e1f73", "cast_id": 6, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 3}, {"name": "James Callis", "character": "Colonel Andrews", "id": 9145, "credit_id": "52fe4bab9251416c910e1f7b", "cast_id": 8, "profile_path": "/eKYhq4PGfqE7F2xOjNyeyXHNhRU.jpg", "order": 4}, {"name": "Georgia King", "character": "Lady Amelia Heartwright", "id": 73462, "credit_id": "52fe4bab9251416c910e1f77", "cast_id": 7, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 5}, {"name": "Rupert Vansittart", "character": "Mr. Wattlesbrook", "id": 2479, "credit_id": "53dfaf86c3a3686c5d0028f3", "cast_id": 12, "profile_path": "/Adw0Z2bT8qU5H6S0swuUWrBKDDs.jpg", "order": 6}, {"name": "Ricky Whittle", "character": "Captain East", "id": 195675, "credit_id": "52fe4bab9251416c910e1f83", "cast_id": 10, "profile_path": "/nMOgDIfoLR8NMj41jtHadhFxxnN.jpg", "order": 7}, {"name": "Jane Seymour", "character": "Mrs. Wattlesbrook", "id": 10223, "credit_id": "52fe4bab9251416c910e1f7f", "cast_id": 9, "profile_path": "/tBWYbLSieHshqVhy1EXlv12mBjs.jpg", "order": 8}, {"name": "Ayda Field", "character": "Molly", "id": 1226263, "credit_id": "53dfaff5c3a3686c5a002709", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Ruben Crow", "character": "Chad", "id": 1349719, "credit_id": "53dfafffc3a3686c5d00290f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Demetri Goritsas", "character": "Jimmy", "id": 20471, "credit_id": "53dfb01dc3a3683b570005b7", "cast_id": 15, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 11}, {"name": "Parker Sawyers", "character": "Alexander", "id": 1349720, "credit_id": "53dfb02ec3a3683b570005ba", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Sarah Niles", "character": "Delilah", "id": 1349721, "credit_id": "53dfb03fc3a3686c5a00270f", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Annie Gould", "character": "Patience", "id": 1349722, "credit_id": "53dfb089c3a3683fc00005cc", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Tracy Higgins", "character": "Prudence", "id": 1349723, "credit_id": "53dfb09ac3a3686c60002668", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Goldy Greaves", "character": "Constance", "id": 1349724, "credit_id": "53dfb0a8c3a3686c60002671", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Bernadette Chapman", "character": "Portence", "id": 1262554, "credit_id": "53dfb0eec3a3683b570005ca", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Julie Newman", "character": "Temperance", "id": 1349725, "credit_id": "53dfb100c3a3686c4d0028f1", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Alison Carpenter", "character": "Plain Maid", "id": 1349726, "credit_id": "53dfb10ec3a3686c4d0028f6", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Brenda Storer", "character": "Plain Maid", "id": 1349727, "credit_id": "53dfb11ac3a3686c6000267c", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Caroline Bond", "character": "Plain Maid", "id": 1349728, "credit_id": "53dfb12dc3a3686c56002829", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Hema Bedre", "character": "Plain Maid", "id": 1349729, "credit_id": "53dfb143c3a3686c5d002926", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Joanna Abbot", "character": "Plain Maid", "id": 1349730, "credit_id": "53dfb14dc3a3686c56002830", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Sandra Morgan", "character": "Plain Maid", "id": 1349731, "credit_id": "53dfb156c3a3686c4d002900", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Suzanne Downes", "character": "Plain Maid", "id": 1349732, "credit_id": "53dfb15fc3a3686c60002682", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Richard Reid", "character": "Nigel", "id": 984422, "credit_id": "53dfb19fc3a3686c56002837", "cast_id": 30, "profile_path": "/3n8vYYFchIgqwrGbeMTJNGFxs2V.jpg", "order": 26}, {"name": "Austin Wilks", "character": "Harry", "id": 1349733, "credit_id": "53dfb1b2c3a3683b570005e4", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Alan Calton", "character": "Barnaby", "id": 1203293, "credit_id": "53dfb1dac3a3686c5a002721", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Tom Whitecross", "character": "Angus", "id": 1349734, "credit_id": "53dfb1ebc3a3686c6000268c", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Jadran Malkovich", "character": "Rupert", "id": 1349735, "credit_id": "53dfb209c3a3686c60002691", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Gideon Jensen", "character": "Roger", "id": 1349736, "credit_id": "53dfb217c3a3683b570005eb", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Andrew Samuels", "character": "Hot Servant", "id": 1349737, "credit_id": "53dfb238c3a3686c5600283c", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Dino Georgiades", "character": "Hot Servant", "id": 1349738, "credit_id": "53dfb243c3a3686c51002841", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Erica Elmer", "character": "Hot Servant", "id": 1349739, "credit_id": "53dfb24dc3a3686c56002843", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Fabian Bourgoin Heskia", "character": "Hot Servant", "id": 1349740, "credit_id": "53dfb26ac3a3686c5d00293d", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Gunalp Kocak", "character": "Hot Servant", "id": 1349741, "credit_id": "53dfb274c3a3683b570005f3", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Lee Craven", "character": "Hot Servant", "id": 1349742, "credit_id": "53dfb27cc3a3686c5d002943", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Mazlum Kortas", "character": "Hot Servant", "id": 1349743, "credit_id": "53dfb287c3a3683b570005fb", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Ryan Bohan", "character": "Hot Servant", "id": 1349744, "credit_id": "53dfb294c3a3686c51002848", "cast_id": 43, "profile_path": null, "order": 39}, {"name": "Samantha-Jane Hunt", "character": "Hot Servant", "id": 1349745, "credit_id": "53dfb29ec3a3686c4d00291d", "cast_id": 44, "profile_path": null, "order": 40}, {"name": "Yiannis Morgan", "character": "Hot Servant", "id": 1349746, "credit_id": "53dfb2a7c3a3683fc00005e9", "cast_id": 45, "profile_path": null, "order": 41}, {"name": "Jonathan Whittaker", "character": "Sideburn Guy", "id": 1349747, "credit_id": "53dfb2ddc3a3683fc00005ef", "cast_id": 46, "profile_path": null, "order": 42}], "directors": [{"name": "Jerusha Hess", "department": "Directing", "job": "Director", "credit_id": "52fe4bab9251416c910e1f5d", "profile_path": "/yS21FRsuK12aIZkOSqnDM2ko0SJ.jpg", "id": 57408}], "vote_average": 6.3, "runtime": 97}, "15196": {"poster_path": "/2usIK9vTJtC3xJGnxB6aafcjQ8x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14643997, "overview": "Clue finds six colorful dinner guests gathered at the mansion of their host, Mr. Boddy -- who turns up dead after his secret is exposed: He was blackmailing all of them. With the killer among them, the guests and Boddy's chatty butler must suss out the culprit before the body count rises.", "video": false, "id": 15196, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Clue", "tagline": "Seven Suspects, Six Weapons, Five Bodies and Three Endings.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088930", "adult": false, "backdrop_path": "/q1zYM7YsEIUeA6Yjxcb1zC3fM2.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1985-12-13", "popularity": 0.562879557530786, "original_title": "Clue", "budget": 15000000, "cast": [{"name": "Eileen Brennan", "character": "Mrs. Peacock", "id": 39015, "credit_id": "52fe46429251416c7507292d", "cast_id": 3, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 0}, {"name": "Tim Curry", "character": "Wadsworth", "id": 13472, "credit_id": "52fe46429251416c75072931", "cast_id": 4, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 1}, {"name": "Madeline Kahn", "character": "Mrs. White", "id": 29803, "credit_id": "52fe46429251416c75072935", "cast_id": 5, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 2}, {"name": "Christopher Lloyd", "character": "Professor Plum", "id": 1062, "credit_id": "52fe46429251416c75072929", "cast_id": 2, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 3}, {"name": "Michael McKean", "character": "Mr. Green", "id": 21731, "credit_id": "52fe46429251416c7507293d", "cast_id": 7, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 4}, {"name": "Martin Mull", "character": "Colonel Mustard", "id": 80742, "credit_id": "52fe46429251416c75072939", "cast_id": 6, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 5}, {"name": "Lesley Ann Warren", "character": "Miss Scarlet", "id": 21818, "credit_id": "52fe46429251416c75072925", "cast_id": 1, "profile_path": "/4I5VPyumsxYGKST9b0FL2harYRK.jpg", "order": 6}, {"name": "Colleen Camp", "character": "Yvette", "id": 13023, "credit_id": "52fe46429251416c75072941", "cast_id": 8, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 7}, {"name": "Lee Ving", "character": "Mr. Boddy", "id": 80745, "credit_id": "52fe46429251416c75072945", "cast_id": 9, "profile_path": "/tG4MKdOp1viff4rrCbH8WQEhIE3.jpg", "order": 8}, {"name": "Bill Henderson", "character": "The Cop", "id": 80746, "credit_id": "52fe46429251416c75072949", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Jane Wiedlin", "character": "The Singing Telegram Girl", "id": 35157, "credit_id": "52fe46429251416c7507294d", "cast_id": 11, "profile_path": "/jg6Auu4JhYDy9b0rAvW5HHlGo8L.jpg", "order": 10}, {"name": "Jeffrey Kramer", "character": "The Motorist", "id": 8609, "credit_id": "52fe46429251416c7507296f", "cast_id": 17, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 11}, {"name": "Kellye Nakahara", "character": "The Cook", "id": 158804, "credit_id": "52fe46439251416c75072973", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Will Nye", "character": "Cop #1", "id": 1216921, "credit_id": "52fe46439251416c750729b9", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Rick Goldman", "character": "Cop #2", "id": 1177744, "credit_id": "52fe46439251416c75072977", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Don Camp", "character": "Cop #3", "id": 551931, "credit_id": "52fe46439251416c7507297b", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Howard Hesseman", "character": "The Chief (uncredited)", "id": 35516, "credit_id": "52fe46439251416c7507297f", "cast_id": 22, "profile_path": "/q0glWtVUVnPoB3AoAMe8SqMRJ5e.jpg", "order": 16}], "directors": [{"name": "Jonathan Lynn", "department": "Directing", "job": "Director", "credit_id": "52fe46429251416c75072953", "profile_path": "/nvMGnGbGdXrRvGAjulNqhJWUB9c.jpg", "id": 21217}], "vote_average": 7.0, "runtime": 94}, "5491": {"poster_path": "/iKXAoormYwNDdnKUJpxHTBdvw05.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21400000, "overview": "In the year 3000, man is no match for the Psychlo's, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlo's are stripping Earth clean of its natural resources, using the broken remnants of humanity as slaves. What is left of the human race has descended into a near primitive state. After being captured, it is up to Tyler to save mankind.", "video": false, "id": 5491, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 10752, "name": "War"}], "title": "Battlefield Earth", "tagline": "Take Back The Planet", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0185183", "adult": false, "backdrop_path": "/vaLKZRGpTjzDFJuByJ6MCQe5e8T.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Morgan Creek Productions", "id": 10210}, {"name": "Franchise Pictures", "id": 1403}, {"name": "JTP Films", "id": 7406}, {"name": "Battlefield Productions", "id": 19718}], "release_date": "2000-05-10", "popularity": 0.493964585440995, "original_title": "Battlefield Earth", "budget": 44000000, "cast": [{"name": "John Travolta", "character": "Terl", "id": 8891, "credit_id": "52fe4409c3a36847f807e75d", "cast_id": 11, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Barry Pepper", "character": "Jonnie Goodboy Tyler", "id": 12834, "credit_id": "52fe4409c3a36847f807e761", "cast_id": 12, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Ker", "id": 2178, "credit_id": "52fe4409c3a36847f807e765", "cast_id": 13, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Kim Coates", "character": "Carlo", "id": 8335, "credit_id": "52fe4409c3a36847f807e769", "cast_id": 14, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 3}, {"name": "Sabine Karsenti", "character": "Chrissy", "id": 43611, "credit_id": "52fe4409c3a36847f807e76d", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Christian Tessier", "character": "Mickey", "id": 43612, "credit_id": "52fe4409c3a36847f807e771", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Sylvain Landry", "character": "Sammy", "id": 43613, "credit_id": "52fe4409c3a36847f807e775", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Michael Byrne", "character": "Parson Staffer", "id": 742, "credit_id": "52fe4409c3a36847f807e779", "cast_id": 18, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 7}, {"name": "Richard Tyson", "character": "Robert the Fox", "id": 14700, "credit_id": "52fe4409c3a36847f807e77d", "cast_id": 19, "profile_path": "/pwgw79SpPJmn3406s72supF0EdS.jpg", "order": 8}, {"name": "Christopher Freeman", "character": "Processing Clerk", "id": 1288583, "credit_id": "52fe4409c3a36847f807e781", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Shaun Austin-Olsen", "character": "Planetship", "id": 181010, "credit_id": "52fe4409c3a36847f807e785", "cast_id": 21, "profile_path": "/aunxQUbkpZjiEmSAncNtvInID33.jpg", "order": 10}, {"name": "Tim Post", "character": "Assistant Planetship / Psychlo Guard", "id": 7009, "credit_id": "52fe4409c3a36847f807e789", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Earl Pastko", "character": "Bartender", "id": 26093, "credit_id": "52fe4409c3a36847f807e78d", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Michel Perron", "character": "Rock", "id": 7014, "credit_id": "52fe4409c3a36847f807e791", "cast_id": 24, "profile_path": "/qHx0U6EattCgT6m46f9RXwRlTya.jpg", "order": 13}], "directors": [{"name": "Roger Christian", "department": "Directing", "job": "Director", "credit_id": "52fe4409c3a36847f807e723", "profile_path": null, "id": 5058}], "vote_average": 3.1, "runtime": 118}, "238636": {"poster_path": "/l1DRl40x2OWUoPP42v8fjKdS1Z3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108782847, "overview": "Sequel to The Purge. The New Founders of America invite you to celebrate your annual right to Purge. The Purge: Anarchy, the sequel to summer 2013's sleeper hit that opened to No. 1 at the box-office, sees the return of writer/director James DeMonaco to craft the next terrifying chapter of dutiful citizens preparing for their country's yearly 12 hours of anarchy.", "video": false, "id": 238636, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Purge: Anarchy", "tagline": "Welcome to America, where one night a year, all crime Is legal.", "vote_count": 439, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/e6THO6zwWxuI8QRQxDI2OcLW7BI.jpg", "id": 256322, "name": "The Purge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2975578", "adult": false, "backdrop_path": "/2ROsQqKfy7f1uqsF8bTC7Vg0ui2.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Universal Pictures", "id": 33}], "release_date": "2014-07-17", "popularity": 2.98868621992979, "original_title": "The Purge: Anarchy", "budget": 9000000, "cast": [{"name": "Frank Grillo", "character": "Leo", "id": 81685, "credit_id": "52fe4e81c3a36847f8294b17", "cast_id": 3, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 0}, {"name": "Carmen Ejogo", "character": "Eva Sanchez", "id": 37158, "credit_id": "52fe4e81c3a36847f8294b1f", "cast_id": 5, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 1}, {"name": "Zach Gilford", "character": "Shane", "id": 70303, "credit_id": "52fe4e81c3a36847f8294b23", "cast_id": 6, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 2}, {"name": "Kiele Sanchez", "character": "Liz", "id": 31168, "credit_id": "52fe4e81c3a36847f8294b27", "cast_id": 7, "profile_path": "/i0YEpWuk1zSvadwwa1r0rahDONt.jpg", "order": 3}, {"name": "Zo\u00eb Borde", "character": "Cali", "id": 1208406, "credit_id": "53ec5dd00e0a2605e3000e40", "cast_id": 17, "profile_path": "/m40sSN2l2tQtpKbhRbjm7sksNV9.jpg", "order": 4}, {"name": "Justina Machado", "character": "Tanya", "id": 95517, "credit_id": "53ec5e2e0e0a2605dd000e63", "cast_id": 18, "profile_path": "/rklLmYPB4fKFP3mKZw2C3oWNaQJ.jpg", "order": 5}, {"name": "John Beasley", "character": "Papa Rico", "id": 38571, "credit_id": "53ec5e430e0a2605e6000e7c", "cast_id": 19, "profile_path": "/mboK7DsL33Ulmoj6LwJIfJKV5tu.jpg", "order": 6}, {"name": "Jack Conley", "character": "Big Daddy", "id": 21675, "credit_id": "53ec5e570e0a2605e9000efe", "cast_id": 20, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 7}, {"name": "Noel Gugliemi", "character": "Diego", "id": 53252, "credit_id": "53ec5e6e0e0a2605e9000f02", "cast_id": 21, "profile_path": "/mI5urNyZJAzIGxelTjBkm624DkB.jpg", "order": 8}, {"name": "Castulo Guerra", "character": "Barney", "id": 3979, "credit_id": "53ec5ea00e0a2605e6000e84", "cast_id": 22, "profile_path": "/njap7gZlVKHMKFb0aMQB17kMUNh.jpg", "order": 9}, {"name": "Michael Kenneth Williams", "character": "Carmelo Johns", "id": 39390, "credit_id": "52fe4e81c3a36847f8294b1b", "cast_id": 4, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 10}, {"name": "Edwin Hodge", "character": "The Stranger", "id": 56679, "credit_id": "53ec5ed40e0a2605f1000eb4", "cast_id": 23, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 11}, {"name": "Keith Stanfield", "character": "Young Goul Face", "id": 1200864, "credit_id": "52fe4e81c3a36847f8294b2b", "cast_id": 8, "profile_path": "/iqn7EWoEjqdzcaOJQ1DOYt8mpiy.jpg", "order": 12}, {"name": "Roberta Valderrama", "character": "Lorraine", "id": 1237292, "credit_id": "53ac25ba0e0a267616001f71", "cast_id": 15, "profile_path": "/hicGQAkiqwmdI4hk2qOFAeqagGP.jpg", "order": 13}, {"name": "Nicholas Gonzalez", "character": "Carlos", "id": 61852, "credit_id": "53307df09251413a7e005b88", "cast_id": 9, "profile_path": "/vtlRkYUROLCkXCKrU56jYBXS1q5.jpg", "order": 14}, {"name": "Amy Paffrath", "character": "TV Newscaster #2", "id": 87437, "credit_id": "53307dfb9251413a6f005ebb", "cast_id": 10, "profile_path": "/69BSfarW9L1FfFcfX1sfrcFhFZt.jpg", "order": 15}, {"name": "Niko Nicotera", "character": "Roddy", "id": 1008750, "credit_id": "53307e029251413a7e005b8a", "cast_id": 11, "profile_path": "/v7lBlIhKFlG2JzhzT8lHLtnGl1i.jpg", "order": 16}, {"name": "Cortney Palm", "character": "Wealthy Guest", "id": 1116282, "credit_id": "53307e0f9251413a81005e64", "cast_id": 12, "profile_path": "/mIvZlUREjyCCxmKRd5onC1vxQ4f.jpg", "order": 17}, {"name": "Judith McConnell", "character": "Old Elegant Woman", "id": 51610, "credit_id": "53ac25a20e0a26760f001f19", "cast_id": 14, "profile_path": null, "order": 18}, {"name": "Chad Morgan", "character": "Janice", "id": 1224490, "credit_id": "53ac25d70e0a26761c001f18", "cast_id": 16, "profile_path": "/iEaBmrm8Z3HrPdEHqSsxvgbTvZ2.jpg", "order": 19}, {"name": "Bel Hernandez", "character": "Katherine", "id": 1352947, "credit_id": "53ec601e0e0a2605e9000f35", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Lily Knight", "character": "Mrs. Crawley", "id": 12539, "credit_id": "53ec602f0e0a2605f1000eda", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Jasper Cole", "character": "Homeless Man", "id": 945542, "credit_id": "53ec60430e0a2605f1000edf", "cast_id": 26, "profile_path": "/zsHc9mShZQsSG8XItQ6wiRAnWBi.jpg", "order": 22}, {"name": "Brandon Keener", "character": "Warren Grass", "id": 149829, "credit_id": "53ec60550e0a2605e0000ed5", "cast_id": 27, "profile_path": "/1FeIVSTtrUjMRC0aFpKU6Q4y7M9.jpg", "order": 23}, {"name": "Amy Price-Francis", "character": "Mrs. Grass", "id": 78861, "credit_id": "53ec60640e0a2605dd000e9c", "cast_id": 28, "profile_path": "/herJTbFWZzcbJ6z7Jgfe74PNCKi.jpg", "order": 24}, {"name": "Matt Lasky", "character": "Oscar", "id": 101088, "credit_id": "53ec60b40e0a2605da000f69", "cast_id": 31, "profile_path": "/yFJpwI2zeZiyHdzrdVaZueIe0Hc.jpg", "order": 27}, {"name": "Nicholas Gonzalez", "character": "Carlos", "id": 61852, "credit_id": "53ec60c60e0a2605e9000f4b", "cast_id": 32, "profile_path": "/vtlRkYUROLCkXCKrU56jYBXS1q5.jpg", "order": 28}, {"name": "Adrian Sparks", "character": "Suited Gent", "id": 155933, "credit_id": "53ec611e0e0a2605e9000f58", "cast_id": 33, "profile_path": null, "order": 29}], "directors": [{"name": "James DeMonaco", "department": "Directing", "job": "Director", "credit_id": "52fe4e81c3a36847f8294b13", "profile_path": null, "id": 53120}], "vote_average": 6.7, "runtime": 104}, "156717": {"poster_path": "/i8o8crwVAbQihTI835xrQA5nSuD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Carl Lucas / Frankenstein has won four of his races and needs to win one more to win his freedom. Before his final race, Lucas and his team, car and all, are transferred to another prison where they will compete in a Death Race in the desert. Also, at the same time, Ceaser runs into a marketer who wants to franchise the Death Race program.", "video": false, "id": 156717, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Death Race: Inferno", "tagline": "Welcome to the Inferno", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cGaVuq8ZjX1UPD9wPRlzx6lP9kK.jpg", "poster_path": "/uffHLg0ekFlErCp7OkpecXkWPng.jpg", "id": 86116, "name": "Death Race Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1988591", "adult": false, "backdrop_path": "/4voE3EHd2f98q6A9MeT8B7JuiB3.jpg", "production_companies": [{"name": "Moonlighting Films", "id": 9137}, {"name": "CC Capital Arts Entertainment SRL", "id": 17008}], "release_date": "2012-11-20", "popularity": 0.883285398171255, "original_title": "Death Race: Inferno", "budget": 6500000, "cast": [{"name": "Luke Goss", "character": "Carl 'Luke' Lucas / Frankenstein", "id": 10843, "credit_id": "52fe4bab9251416c910e200d", "cast_id": 3, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 0}, {"name": "Ving Rhames", "character": "Weyland", "id": 10182, "credit_id": "52fe4bab9251416c910e2009", "cast_id": 2, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 1}, {"name": "Danny Trejo", "character": "Goldberg", "id": 11160, "credit_id": "52fe4bab9251416c910e2005", "cast_id": 1, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 2}, {"name": "Tanit Phoenix", "character": "Katrina Banks", "id": 37769, "credit_id": "52fe4bab9251416c910e2017", "cast_id": 5, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 3}, {"name": "Dougray Scott", "character": "Niles York", "id": 15336, "credit_id": "52fe4bab9251416c910e201b", "cast_id": 6, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 4}, {"name": "Robin Shou", "character": "14K", "id": 57250, "credit_id": "52fe4bab9251416c910e201f", "cast_id": 7, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 5}, {"name": "Langley Kirkwood", "character": "Dr. Klein", "id": 37093, "credit_id": "52fe4bab9251416c910e2023", "cast_id": 8, "profile_path": "/tjX3GUBhLujP4s3KCM763V7bQge.jpg", "order": 6}, {"name": "Fred Koehler", "character": "Lists", "id": 76513, "credit_id": "52fe4bab9251416c910e2027", "cast_id": 9, "profile_path": "/f52RmqmKKbHS9JFb2sJ28dnyaUr.jpg", "order": 7}, {"name": "Tanya van Graan", "character": "Amber", "id": 1139816, "credit_id": "52fe4bab9251416c910e202b", "cast_id": 10, "profile_path": "/zirNh4FdTo4U3EpdKCjSZZLbw8v.jpg", "order": 8}, {"name": "Sean Cameron Michael", "character": "New Doctor", "id": 86320, "credit_id": "52fe4bab9251416c910e202f", "cast_id": 11, "profile_path": "/kd3QFLVrFYshek9p17QPTVnG1vb.jpg", "order": 9}, {"name": " Hlubi Mboya", "character": "Diabolos", "id": 1287647, "credit_id": "52fe4bab9251416c910e2039", "cast_id": 18, "profile_path": "/vDkfovbyAbljLhbKHPb80ykxJiw.jpg", "order": 10}, {"name": "Charlbi Dean Kriek", "character": "Calimity J", "id": 1187068, "credit_id": "54cc123d9251413e7800031a", "cast_id": 53, "profile_path": "/7Hkjpfq6Tdl7J3i6FaEnQq0zHds.jpg", "order": 11}, {"name": "Mark Elderkin", "character": "Sgt. Fury", "id": 939422, "credit_id": "54cc12609251413e750002b5", "cast_id": 54, "profile_path": "/in42emR0FgAEkA7EwtsedK8gxMg.jpg", "order": 12}, {"name": "Eugene Khumbanyiwa", "character": "Nero", "id": 1198931, "credit_id": "54cc1278c3a3687f92000003", "cast_id": 55, "profile_path": null, "order": 13}, {"name": "Jeremy Crutchley", "character": "Psycho", "id": 20304, "credit_id": "54cc12a5925141474b000002", "cast_id": 56, "profile_path": "/17aHojCYOmUyoyuPgLd4di0fdvm.jpg", "order": 14}, {"name": "Yrsa Daley-Ward", "character": "Salinas", "id": 1390163, "credit_id": "54cc12ddc3a3687f80000009", "cast_id": 57, "profile_path": null, "order": 15}], "directors": [{"name": "Roel Rein\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4bab9251416c910e2013", "profile_path": "/f4KlQ4lfZZwbuz6Wu5N6Gfbur6p.jpg", "id": 97555}], "vote_average": 5.6, "runtime": 105}, "82990": {"poster_path": "/fBUlONud4kLwDlkg5uZfi9NVEAX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It has been five years since the disappearance of Katie and Hunter, and a suburban family witness strange events in their neighborhood when a woman and a mysterious child move in.", "video": false, "id": 82990, "genres": [{"id": 27, "name": "Horror"}], "title": "Paranormal Activity 4", "tagline": "It's closer than you think", "vote_count": 161, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2109184", "adult": false, "backdrop_path": "/qDaIOqnC5pQyknm7SLnxlffklVy.jpg", "production_companies": [{"name": "Room 101", "id": 6302}, {"name": "Paramount Pictures", "id": 4}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}], "release_date": "2012-10-19", "popularity": 0.299606122363337, "original_title": "Paranormal Activity 4", "budget": 5000000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe48829251416c9108ef87", "cast_id": 7, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "Kathryn Newton", "character": "Alex", "id": 221192, "credit_id": "52fe48829251416c9108ef8b", "cast_id": 9, "profile_path": "/3GeXNWqXLrf7yut63ce3fU3oGmR.jpg", "order": 1}, {"name": "Matt Shively", "character": "Ben", "id": 455033, "credit_id": "52fe48829251416c9108ef8f", "cast_id": 10, "profile_path": "/azJfLNNBVcXYaBr80o8KLKHB5DF.jpg", "order": 2}, {"name": "Brady Allen", "character": "Robbie", "id": 1033547, "credit_id": "52fe48829251416c9108ef93", "cast_id": 11, "profile_path": null, "order": 3}, {"name": "Sprague Grayden", "character": "Kristi", "id": 118243, "credit_id": "52fe48829251416c9108ef97", "cast_id": 12, "profile_path": "/xgFJngEapZILERHqwkxu07LNZwN.jpg", "order": 4}, {"name": "Stephen Dunham", "character": "Doug", "id": 36803, "credit_id": "52fe48829251416c9108ef9b", "cast_id": 13, "profile_path": "/6xzvLVJLXKgT7oaGoB448WNml9G.jpg", "order": 5}, {"name": "Alexondra Lee", "character": "Holly", "id": 42377, "credit_id": "52fe48829251416c9108ef9f", "cast_id": 14, "profile_path": "/6GdI7gTt8p3wFVK29nwP64Gbaqw.jpg", "order": 6}, {"name": "Aiden Lovekamp", "character": "Wyatt", "id": 984724, "credit_id": "52fe48829251416c9108efa3", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Brian Boland", "character": "Daniel", "id": 87220, "credit_id": "52fe48829251416c9108efa7", "cast_id": 16, "profile_path": "/lZreGWhm68vzL6yCw5hz2WdlFCX.jpg", "order": 8}, {"name": "William Juan Prieto", "character": "Hunter", "id": 141382, "credit_id": "52fe48829251416c9108efab", "cast_id": 17, "profile_path": null, "order": 9}], "directors": [{"name": "Henry Joost", "department": "Directing", "job": "Director", "credit_id": "52fe48829251416c9108ef6b", "profile_path": "/wP5btUyPGGinHoa3GJmudZB8Pwt.jpg", "id": 142272}, {"name": "Ariel Schulman", "department": "Directing", "job": "Director", "credit_id": "52fe48829251416c9108ef71", "profile_path": "/jWQRMBFA4AajaA0DJ3CrLzZ2Vby.jpg", "id": 142276}], "vote_average": 5.4, "runtime": 95}, "82992": {"poster_path": "/kBXgGUt07sLpw6rhpiYwEyOwUDa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 788679850, "overview": "Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.", "video": false, "id": 82992, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Fast & Furious 6", "tagline": "All roads lead to this", "vote_count": 3612, "homepage": "http://www.thefastandthefurious.com/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1905041", "adult": false, "backdrop_path": "/qjfE7SkPXpqFs8FX8rIaG6eO2aK.jpg", "production_companies": [{"name": "F & F VI Productions A.I.E", "id": 48499}, {"name": "Universal Pictures", "id": 33}, {"name": "Original Film", "id": 333}, {"name": "One Race Productions", "id": 1225}, {"name": "Dentsu", "id": 6452}, {"name": "Relativity Media", "id": 7295}, {"name": "Etalon film", "id": 9341}], "release_date": "2013-05-24", "popularity": 1.25571877204592, "original_title": "Fast & Furious 6", "budget": 160000000, "cast": [{"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe48829251416c9108f007", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe48829251416c9108f00b", "cast_id": 4, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Dwayne Johnson", "character": "Luke Hobbs", "id": 18918, "credit_id": "52fe48829251416c9108f00f", "cast_id": 5, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia", "id": 22123, "credit_id": "52fe48829251416c9108f013", "cast_id": 6, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "Luke Evans", "character": "Owen Shaw", "id": 114019, "credit_id": "52fe48829251416c9108f017", "cast_id": 8, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 4}, {"name": "Michelle Rodriguez", "character": "Letty", "id": 17647, "credit_id": "52fe48829251416c9108f01b", "cast_id": 9, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 5}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "52fe48829251416c9108f01f", "cast_id": 10, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 6}, {"name": "Gal Gadot", "character": "Gisele Harabo", "id": 90633, "credit_id": "52fe48829251416c9108f023", "cast_id": 13, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 7}, {"name": "Sung Kang", "character": "Han Lue", "id": 61697, "credit_id": "52fe48829251416c9108f027", "cast_id": 14, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 8}, {"name": "Ludacris", "character": "Tej Parker", "id": 8171, "credit_id": "52fe48839251416c9108f02b", "cast_id": 15, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 9}, {"name": "Kim Kold", "character": "Klaus", "id": 936415, "credit_id": "52fe48839251416c9108f02f", "cast_id": 16, "profile_path": "/pvbowINXuR5FSXxemujx2kWrx87.jpg", "order": 10}, {"name": "Thure Lindhardt", "character": "Firuz", "id": 20258, "credit_id": "52fe48839251416c9108f033", "cast_id": 17, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 11}, {"name": "Elsa Pataky", "character": "Elena", "id": 73269, "credit_id": "52fe48839251416c9108f037", "cast_id": 18, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 12}, {"name": "Johannes Taslim", "character": "Jah", "id": 592496, "credit_id": "52fe48839251416c9108f03b", "cast_id": 20, "profile_path": "/jTKPQryiRDTdlRot43FIDzARgi5.jpg", "order": 13}, {"name": "Shea Whigham", "character": "Stasiak", "id": 74242, "credit_id": "52fe48839251416c9108f03f", "cast_id": 21, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 14}, {"name": "John Ortiz", "character": "Braga", "id": 40543, "credit_id": "52fe48839251416c9108f043", "cast_id": 22, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 15}, {"name": "Gina Carano", "character": "Riley", "id": 78452, "credit_id": "52fe48839251416c9108f047", "cast_id": 23, "profile_path": "/jAYNPdJYu35eoRdI25fYa5jtsbR.jpg", "order": 16}, {"name": "Clara Paget", "character": "Vegh", "id": 1258227, "credit_id": "52fe48839251416c9108f0b1", "cast_id": 41, "profile_path": "/ompJQPDexjS0hfygwOnDz9ZfxcU.jpg", "order": 17}, {"name": "Jason Statham", "character": "Cameo Appearance", "id": 976, "credit_id": "54c80ceec3a36874ac004863", "cast_id": 42, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 18}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe48829251416c9108f003", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 6.6, "runtime": 130}, "179": {"poster_path": "/iQ3pa4t2B0oLBU2Ny6GRBabhV7e.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162944923, "overview": "A thriller about an interpreter who has overheard plans of an assassination at United Nations headquarters. An American Secret Service agent is sent to investigate as Silvia Broome, the interpreter, is in danger of being killed by the assassins.", "video": false, "id": 179, "genres": [{"id": 28, "name": "Action"}], "title": "The Interpreter", "tagline": "The truth needs no translation.", "vote_count": 73, "homepage": "http://www.theinterpretermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373926", "adult": false, "backdrop_path": "/uEkVmznbztmNHvxc0qlIX0TKArz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}, {"name": "Misher Films", "id": 11581}, {"name": "Mirage Entertainment", "id": 205}, {"name": "StudioCanal", "id": 694}, {"name": "Motion Picture JOTA Produktions", "id": 20194}], "release_date": "2005-04-15", "popularity": 1.01406759376517, "original_title": "The Interpreter", "budget": 80000000, "cast": [{"name": "Nicole Kidman", "character": "Silvia Broome", "id": 2227, "credit_id": "52fe4223c3a36847f8006e6d", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Sean Penn", "character": "Tobin Keller", "id": 2228, "credit_id": "52fe4223c3a36847f8006e71", "cast_id": 3, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Catherine Keener", "character": "Dot Woods", "id": 2229, "credit_id": "52fe4223c3a36847f8006e75", "cast_id": 4, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 2}, {"name": "Jesper Christensen", "character": "Nils Lud", "id": 2244, "credit_id": "52fe4223c3a36847f8006eaf", "cast_id": 14, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 3}, {"name": "Yvan Attal", "character": "Philippe", "id": 2245, "credit_id": "52fe4223c3a36847f8006eb3", "cast_id": 15, "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "order": 4}, {"name": "Earl Cameron", "character": "Dr. Zuwanie", "id": 2246, "credit_id": "52fe4223c3a36847f8006eb7", "cast_id": 16, "profile_path": "/4bDKeRU96RxpJ2Uv8x2yrjCmGks.jpg", "order": 5}, {"name": "George Harris", "character": "Kuman-Kuman", "id": 2247, "credit_id": "52fe4223c3a36847f8006ebb", "cast_id": 17, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 6}, {"name": "Michael Wright", "character": "Marcus", "id": 2248, "credit_id": "52fe4223c3a36847f8006ebf", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Clyde Kusatsu", "character": "Police Chief Lee Wu", "id": 2249, "credit_id": "52fe4223c3a36847f8006ec3", "cast_id": 19, "profile_path": "/nfOvoNP4Gwo8LZO2UFZUnLu5sIU.jpg", "order": 8}, {"name": "Eric Keenleyside", "character": "Rory Robb", "id": 2250, "credit_id": "52fe4223c3a36847f8006ec7", "cast_id": 20, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 9}, {"name": "Hugo Speer", "character": "Simon Broome", "id": 2251, "credit_id": "52fe4223c3a36847f8006ecb", "cast_id": 21, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 10}, {"name": "Maz Jobrani", "character": "Mo", "id": 2252, "credit_id": "52fe4223c3a36847f8006ecf", "cast_id": 22, "profile_path": "/6yvPvXHNYq1qOtCJUvok90zMivw.jpg", "order": 11}, {"name": "Yusuf Gatewood", "character": "Doug", "id": 2253, "credit_id": "52fe4223c3a36847f8006ed3", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Curtiss Cook", "character": "Ajene Xola", "id": 2254, "credit_id": "52fe4223c3a36847f8006ed7", "cast_id": 24, "profile_path": "/qX97rykGHn3wpxRkM8nSmE1Jfkj.jpg", "order": 13}, {"name": "Byron Utley", "character": "Jean Gamba", "id": 2255, "credit_id": "52fe4223c3a36847f8006edb", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Robert Clohessy", "character": "FBI Agent King", "id": 2256, "credit_id": "52fe4223c3a36847f8006edf", "cast_id": 26, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 15}, {"name": "Terry Serpico", "character": "FBI Agent Lewis", "id": 2257, "credit_id": "52fe4223c3a36847f8006ee3", "cast_id": 27, "profile_path": "/3znAbAv0sqBZMvwluRaRQQBeR2M.jpg", "order": 16}, {"name": "Vladimir Bibic", "character": "G.A. President", "id": 162500, "credit_id": "54019cd3c3a3684360003061", "cast_id": 32, "profile_path": "/pWdBAILTqB0tIen49IHQVOq3OIG.jpg", "order": 17}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006e69", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 6.3, "runtime": 128}, "9268": {"poster_path": "/bmOG5k07nrnS8T49NVPM1LnrOf1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 233200000, "overview": "U.S. Marshall John Kruger erases the identities of people enrolled in the Witness Protection Program. His current assignment is to protect Lee Cullen, who's uncovered evidence that the weapons manufacturer she works for has been selling to terrorist groups. When Kruger discovers that there's a corrupt agent within the program, he must guard his own life while trying to protect Lee's.", "video": false, "id": 9268, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Eraser", "tagline": "He will erase your past to protect your future.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116213", "adult": false, "backdrop_path": "/gxl0eDEu2IJkubxu6UL0UN7ieYb.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Kopelson Entertainment", "id": 824}], "release_date": "1996-06-10", "popularity": 0.563377151493871, "original_title": "Eraser", "budget": 100000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "U.S. Marshal John 'The Eraser' Kruger", "id": 1100, "credit_id": "52fe44dfc3a36847f80aef9b", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "James Caan", "character": "U.S. Marshal Robert Deguerin", "id": 3085, "credit_id": "52fe44dfc3a36847f80aef9f", "cast_id": 2, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 1}, {"name": "Vanessa Williams", "character": "Lee Cullen", "id": 27011, "credit_id": "52fe44dfc3a36847f80aefa3", "cast_id": 3, "profile_path": "/t5tyW5nSk5ikeU8cWPdg4ImsMuq.jpg", "order": 2}, {"name": "James Coburn", "character": "WitSec Chief Beller", "id": 5563, "credit_id": "52fe44dfc3a36847f80aefa7", "cast_id": 4, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 3}, {"name": "Robert Pastorelli", "character": "Johnny Casteleone", "id": 7866, "credit_id": "52fe44dfc3a36847f80aeff9", "cast_id": 18, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 4}, {"name": "James Cromwell", "character": "William Donohue", "id": 2505, "credit_id": "52fe44dfc3a36847f80aeffd", "cast_id": 19, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 5}, {"name": "Danny Nucci", "character": "WitSec Deputy Monroe", "id": 8540, "credit_id": "52fe44dfc3a36847f80af001", "cast_id": 20, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 6}, {"name": "Andy Romano", "character": "Undersecretary of Defense Daniel Harper", "id": 32289, "credit_id": "52fe44dfc3a36847f80af005", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Nick Chinlund", "character": "WitSec Agent Calderon", "id": 18461, "credit_id": "52fe44dfc3a36847f80af009", "cast_id": 22, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 8}, {"name": "Michael Papajohn", "character": "WitSec Agent Schiffer", "id": 20582, "credit_id": "52fe44dfc3a36847f80af00d", "cast_id": 23, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 9}, {"name": "Joe Viterelli", "character": "Tony Two-Toes", "id": 60023, "credit_id": "52fe44dfc3a36847f80af011", "cast_id": 24, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 10}, {"name": "Mark Rolston", "character": "J. Scar", "id": 6576, "credit_id": "52fe44dfc3a36847f80af015", "cast_id": 25, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 11}, {"name": "John Slattery", "character": "FBI Agent Corman", "id": 21134, "credit_id": "52fe44dfc3a36847f80af019", "cast_id": 26, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 12}, {"name": "Robert Miranda", "character": "Frediano", "id": 20625, "credit_id": "52fe44dfc3a36847f80af01d", "cast_id": 27, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 13}, {"name": "Roma Maffia", "character": "Claire Isaacs", "id": 21366, "credit_id": "52fe44dfc3a36847f80af021", "cast_id": 28, "profile_path": "/tfscWeBOGA9aysLbYoOduimpTOk.jpg", "order": 14}, {"name": "Olek Krupa", "character": "Sergei Ivanovich Petrofsky", "id": 53573, "credit_id": "54f44f7ec3a3681dd4001d2a", "cast_id": 91, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 15}, {"name": "Melora Walters", "character": "Darleen", "id": 4766, "credit_id": "54f44fa7925141799f001b97", "cast_id": 92, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 16}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe44dfc3a36847f80aefad", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 5.5, "runtime": 115}, "9270": {"poster_path": "/hyALqQpaTv0GGV4axqePihEmCY8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3919254, "overview": "A teenage loner pushes his way into the underworld of a high school crime ring to investigate the disappearance of his ex-girlfriend.", "video": false, "id": 9270, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Brick", "tagline": "A detective story.", "vote_count": 69, "homepage": "http://www.brickmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0393109", "adult": false, "backdrop_path": "/paHvFDm2uLTzVXpb59fsuJCz89b.jpg", "production_companies": [{"name": "Bergman Lustig productions", "id": 6971}], "release_date": "2005-01-30", "popularity": 0.448102935865019, "original_title": "Brick", "budget": 475000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Brendan", "id": 24045, "credit_id": "52fe44dfc3a36847f80af0cb", "cast_id": 1, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Emilie de Ravin", "character": "Emily", "id": 28660, "credit_id": "52fe44dfc3a36847f80af0cf", "cast_id": 2, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 1}, {"name": "Nora Zehetner", "character": "Laura", "id": 34070, "credit_id": "52fe44dfc3a36847f80af0d3", "cast_id": 4, "profile_path": "/qzP1MWNCugzf180ZDX8zdfBk3zk.jpg", "order": 3}, {"name": "Lukas Haas", "character": "The Pin", "id": 526, "credit_id": "52fe44dfc3a36847f80af0d7", "cast_id": 5, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 4}, {"name": "Richard Roundtree", "character": "Assistant V.P. Trueman", "id": 6487, "credit_id": "52fe44dfc3a36847f80af0db", "cast_id": 6, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 5}, {"name": "Meagan Good", "character": "Kara", "id": 22122, "credit_id": "52fe44dfc3a36847f80af0df", "cast_id": 7, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 6}, {"name": "Noah Fleiss", "character": "Tugger", "id": 57286, "credit_id": "52fe44dfc3a36847f80af0e3", "cast_id": 8, "profile_path": "/jWCEjHjDdAE1zYEInbraXCen9Mm.jpg", "order": 7}, {"name": "Brian J. White", "character": "Brad Bramish", "id": 31137, "credit_id": "52fe44dfc3a36847f80af0e7", "cast_id": 9, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 8}, {"name": "Noah Segan", "character": "Dode", "id": 48312, "credit_id": "52fe44dfc3a36847f80af12d", "cast_id": 21, "profile_path": "/hxRWVwtxvzz0NTaaZMQwtPz8CDE.jpg", "order": 9}, {"name": "Matt O'Leary", "character": "The Brain", "id": 71467, "credit_id": "52fe44dfc3a36847f80af131", "cast_id": 22, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 10}], "directors": [{"name": "Rian Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44dfc3a36847f80af0ed", "profile_path": "/pCdsaqBaG6SozL5HGwVRyIfjWtM.jpg", "id": 67367}], "vote_average": 6.8, "runtime": 110}, "58423": {"poster_path": "/8Z3eeQOTu8VSCfp4ZYjxuJsyaXl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 554987477, "overview": "Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend... The Boots.", "video": false, "id": 58423, "genres": [{"id": 16, "name": "Animation"}], "title": "Puss in Boots", "tagline": "Live for danger. Fight for justice. Pray for mercy.", "vote_count": 622, "homepage": "http://www.pussinbootsthemovie.com/", "belongs_to_collection": {"backdrop_path": "/feU1DWV5zMWxXUHJyAIk3dHRQ9c.jpg", "poster_path": "/anHwj9IupRoRZZ98WTBvHpTiE6A.jpg", "id": 94602, "name": "Puss in Boots Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0448694", "adult": false, "backdrop_path": "/iiufWukqR2QBfYIfP7OEdLHrYXB.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2011-10-28", "popularity": 1.48358429574081, "original_title": "Puss in Boots", "budget": 130000000, "cast": [{"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe4961c3a36847f81972e7", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Kitty Softpaws (voice)", "id": 3136, "credit_id": "52fe4961c3a36847f81972f1", "cast_id": 4, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Humpty Alexander Dumpty (voice)", "id": 58225, "credit_id": "52fe4961c3a36847f81972fd", "cast_id": 8, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Billy Bob Thornton", "character": "Jack (voice)", "id": 879, "credit_id": "52fe4961c3a36847f81972f5", "cast_id": 6, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 3}, {"name": "Amy Sedaris", "character": "Jill (voice)", "id": 12110, "credit_id": "52fe4961c3a36847f81972f9", "cast_id": 7, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 4}, {"name": "Constance Marie", "character": "Imelda (voice)", "id": 92326, "credit_id": "52fe4961c3a36847f8197301", "cast_id": 9, "profile_path": "/ddADLrENkKWbrc4wiqNiRqPwaEB.jpg", "order": 5}, {"name": "Guillermo del Toro", "character": "Moustache Man / Comandate (voice)", "id": 10828, "credit_id": "52fe4961c3a36847f8197305", "cast_id": 10, "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "order": 6}, {"name": "Mike Mitchell", "character": "Andy Beanstalk (voice)", "id": 64151, "credit_id": "52fe4961c3a36847f8197309", "cast_id": 11, "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "order": 7}, {"name": "Rich Dietl", "character": "Bounty Hunter (voice)", "id": 936666, "credit_id": "52fe4961c3a36847f819730d", "cast_id": 12, "profile_path": "/caMJRrUIYD4wHlbwu1NIqZZWGby.jpg", "order": 8}, {"name": "Ryan Crego", "character": "Luis (voice)", "id": 936667, "credit_id": "52fe4961c3a36847f8197311", "cast_id": 13, "profile_path": "/fvsxQxkA64LBzECtPE2HWyVkZVI.jpg", "order": 9}, {"name": "Tom Wheeler", "character": "Bartender / Hotel Owner / Mean Boy / Wagon Driver / Rodrigo (voice)", "id": 936668, "credit_id": "52fe4961c3a36847f8197315", "cast_id": 14, "profile_path": "/1un3JagSljzwsgdkDw8VLYmhnHy.jpg", "order": 10}, {"name": "Conrad Vernon", "character": "Raoul / Soldier (voice)", "id": 12080, "credit_id": "52fe4961c3a36847f8197319", "cast_id": 15, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 11}, {"name": "Tom McGrath", "character": "Bar Thief (voice)", "id": 18864, "credit_id": "52fe4961c3a36847f819731d", "cast_id": 16, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 12}, {"name": "Bob Joles", "character": "Guiseppe (voice)", "id": 179702, "credit_id": "52fe4961c3a36847f8197321", "cast_id": 17, "profile_path": "/1cbsuNkocUcvOw5D60KtsqjgLEG.jpg", "order": 13}, {"name": "Latifa Ouaou", "character": "Crazy Woman / Mean Girl / Milk Lady / Little Boy (voice)", "id": 936669, "credit_id": "52fe4961c3a36847f8197325", "cast_id": 18, "profile_path": "/gJ0ntOXcs0RRdMAM9b5Avo5REga.jpg", "order": 14}, {"name": "Robert Persichetti Jr.", "character": "Ohhh Cat (voice)", "id": 936670, "credit_id": "52fe4961c3a36847f8197329", "cast_id": 19, "profile_path": "/2yzTqAKRzGURbqbnQFQK27ATBCp.jpg", "order": 15}, {"name": "Chris Miller", "character": "Little Boy Blue / Friar Miller / Prison Guard / Manual / Rafael (voice)", "id": 12098, "credit_id": "52fe4961c3a36847f819732d", "cast_id": 20, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 16}, {"name": "Jessica Schulte", "character": "Estella Maria (voice)", "id": 936672, "credit_id": "52fe4961c3a36847f8197331", "cast_id": 21, "profile_path": "/apZtLC6mjAGEZLctvprrOhTw95W.jpg", "order": 17}, {"name": "Nina Barry", "character": "Ivana / Charo (voice)", "id": 936674, "credit_id": "52fe4961c3a36847f8197335", "cast_id": 22, "profile_path": "/6ekpUcsWySmTuN6U3ZVcEWxZKdU.jpg", "order": 18}], "directors": [{"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4961c3a36847f81972ed", "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "id": 12098}], "vote_average": 6.2, "runtime": 90}, "9273": {"poster_path": "/wRlGnJhEzcxBjvWtvbjhDSU1cIY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.", "video": false, "id": 9273, "genres": [{"id": 35, "name": "Comedy"}], "title": "Ace Ventura: When Nature Calls", "tagline": "Most people wouldn't last one minute in the real wild nature. Ace Ventura, not even a second.", "vote_count": 298, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aPoX8RAxA9J2XW44Ud0AozTUFop.jpg", "poster_path": "/guYqF6CvU48aGH5nTx160Bjg35F.jpg", "id": 3167, "name": "Ace Ventura Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112281", "adult": false, "backdrop_path": "/zM8D3dSzxISwLilMKzLuzaU3O9j.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1995-11-10", "popularity": 0.961223813876515, "original_title": "Ace Ventura: When Nature Calls", "budget": 0, "cast": [{"name": "Jim Carrey", "character": "Ace Ventura", "id": 206, "credit_id": "52fe44dfc3a36847f80af279", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Ian McNeice", "character": "Fulton Greenwall", "id": 3547, "credit_id": "52fe44dfc3a36847f80af27d", "cast_id": 2, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 1}, {"name": "Simon Callow", "character": "Vincent Cadby", "id": 4001, "credit_id": "52fe44dfc3a36847f80af281", "cast_id": 3, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 2}, {"name": "Maynard Eziashi", "character": "Ouda", "id": 57096, "credit_id": "52fe44dfc3a36847f80af285", "cast_id": 4, "profile_path": "/zSxucY5ua1EnrVoKJD97BuqJGvw.jpg", "order": 3}, {"name": "Bob Gunton", "character": "Burton Quinn", "id": 4029, "credit_id": "52fe44dfc3a36847f80af2c5", "cast_id": 15, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 4}, {"name": "Sophie Okonedo", "character": "The Wachati Princess", "id": 2598, "credit_id": "52fe44dfc3a36847f80af2c9", "cast_id": 16, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 5}, {"name": "Tommy Davidson", "character": "The Tiny Warrior", "id": 88059, "credit_id": "52fe44dfc3a36847f80af2cd", "cast_id": 17, "profile_path": "/yXCC9g25AwlCpSWPY1plqjcvQD5.jpg", "order": 6}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Hitu", "id": 31164, "credit_id": "52fe44dfc3a36847f80af2d1", "cast_id": 18, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 7}, {"name": "Danny D. Daniels", "character": "Wachootoo Witch Doctor", "id": 1080060, "credit_id": "52fe44dfc3a36847f80af2d5", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Sam Motoana Phillips", "character": "Wachootoo Chief", "id": 1080061, "credit_id": "52fe44dfc3a36847f80af2d9", "cast_id": 20, "profile_path": "/rJrBTHb3LHFrFo0uydYVhRxKl8c.jpg", "order": 9}, {"name": "Damon Standifer", "character": "Wachati Chief", "id": 172354, "credit_id": "52fe44dfc3a36847f80af2dd", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Andrew Steel", "character": "Mick Katie", "id": 158324, "credit_id": "52fe44dfc3a36847f80af2e1", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Bruce Spence", "character": "Gahjii", "id": 27752, "credit_id": "52fe44dfc3a36847f80af2e5", "cast_id": 23, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 12}, {"name": "Tom Grunke", "character": "Derrick McCane", "id": 171303, "credit_id": "52fe44dfc3a36847f80af2e9", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Arsenio 'Sonny' Trinidad", "character": "Ashram Monk", "id": 1080062, "credit_id": "52fe44dfc3a36847f80af2ed", "cast_id": 25, "profile_path": null, "order": 14}], "directors": [{"name": "Steve Oedekerk", "department": "Directing", "job": "Director", "credit_id": "52fe44dfc3a36847f80af28b", "profile_path": "/qUkJ4GbyAdloVjVxCUlxLT23wIe.jpg", "id": 4489}], "vote_average": 6.1, "runtime": 90}, "9276": {"poster_path": "/6L1SgKyzDy5x2oEskUyfMcdVed2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When some very creepy things start happening around school, the kids at Herrington High make a chilling discovery that confirms their worst suspicions: their teachers really are from another planet! As mind-controlling parasites rapidly begin spreading from the faculty to the students' bodies, it's ultimately up to the few who are left \u2013 an unlikely collection of loners, leaders, nerds and jocks \u2013 to save the world from alien domination.", "video": false, "id": 9276, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "The Faculty", "tagline": "Take me to your teacher.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133751", "adult": false, "backdrop_path": "/xuHuW4XhghQpVJSIna7JBb60bva.jpg", "production_companies": [{"name": "Los Hooligans Productions", "id": 11705}, {"name": "Dimension Films", "id": 7405}], "release_date": "1998-12-25", "popularity": 0.622154420936422, "original_title": "The Faculty", "budget": 15000000, "cast": [{"name": "Jordana Brewster", "character": "Delilah Profitt", "id": 22123, "credit_id": "52fe44e0c3a36847f80af45f", "cast_id": 1, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 0}, {"name": "Elijah Wood", "character": "Casey Connor", "id": 109, "credit_id": "52fe44e0c3a36847f80af47f", "cast_id": 9, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 1}, {"name": "Clea DuVall", "character": "Stokely 'Stokes' Mitchell", "id": 20387, "credit_id": "52fe44e0c3a36847f80af463", "cast_id": 2, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 2}, {"name": "Laura Harris", "character": "Marybeth Louise Hutchinson", "id": 25872, "credit_id": "52fe44e0c3a36847f80af467", "cast_id": 3, "profile_path": "/9uuhXyH7tmFiJnyesXetTE8b13j.jpg", "order": 3}, {"name": "Josh Hartnett", "character": "Zeke Tyler", "id": 2299, "credit_id": "52fe44e0c3a36847f80af46b", "cast_id": 4, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 4}, {"name": "Shawn Hatosy", "character": "Stan Rosado", "id": 52647, "credit_id": "52fe44e0c3a36847f80af46f", "cast_id": 5, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 5}, {"name": "Salma Hayek", "character": "Nurse Rosa Harper", "id": 3136, "credit_id": "52fe44e0c3a36847f80af473", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 6}, {"name": "Famke Janssen", "character": "Miss Elizabeth Burke", "id": 10696, "credit_id": "52fe44e0c3a36847f80af477", "cast_id": 7, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 7}, {"name": "Usher Raymond", "character": "Gabe Santora", "id": 57108, "credit_id": "52fe44e0c3a36847f80af47b", "cast_id": 8, "profile_path": "/s0frjwIXTy0AkgqhZEEPzW599TG.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Coach Joe Willis", "id": 418, "credit_id": "52fe44e0c3a36847f80af483", "cast_id": 10, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Piper Laurie", "character": "Mrs. Karen Olson", "id": 6721, "credit_id": "52fe44e0c3a36847f80af4c9", "cast_id": 22, "profile_path": "/eKjVK5MQ5RK9XuVLaCC2oYACmbK.jpg", "order": 10}, {"name": "Christopher McDonald", "character": "Mr. Frank Connor", "id": 4443, "credit_id": "52fe44e0c3a36847f80af4cd", "cast_id": 23, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 11}, {"name": "Bebe Neuwirth", "character": "Principal Valerie Drake", "id": 10739, "credit_id": "52fe44e0c3a36847f80af4d1", "cast_id": 24, "profile_path": "/xm58rpMRVDHS0IGttw1pTlqGwkN.jpg", "order": 12}, {"name": "Jon Stewart", "character": "Prof. Edward Furlong", "id": 12219, "credit_id": "52fe44e0c3a36847f80af4d5", "cast_id": 25, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 13}, {"name": "Daniel von Bargen", "character": "Mr. John Tate", "id": 1473, "credit_id": "52fe44e0c3a36847f80af4d9", "cast_id": 26, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 14}, {"name": "Jon Abrahams", "character": "F*** You Boy", "id": 17866, "credit_id": "52fe44e0c3a36847f80af4dd", "cast_id": 27, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 15}, {"name": "Summer Phoenix", "character": "F*** You Girl", "id": 34543, "credit_id": "52fe44e0c3a36847f80af4e1", "cast_id": 28, "profile_path": "/mKBiUY3QxsOK7tYD1j51p8MAUxK.jpg", "order": 16}, {"name": "Susan Willis", "character": "Mrs. Jessica Brummel", "id": 97267, "credit_id": "52fe44e0c3a36847f80af4e5", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Pete Janssen", "character": "Eddie 'Meat' McIvey", "id": 1091198, "credit_id": "52fe44e0c3a36847f80af4e9", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Tina Rodriguez", "character": "Tattoo Girl", "id": 122416, "credit_id": "52fe44e0c3a36847f80af4ed", "cast_id": 31, "profile_path": "/8DJfBQUsR4wKsTIQXQv84IeTlLH.jpg", "order": 19}, {"name": "Danny Masterson", "character": "F*** Up #1", "id": 18972, "credit_id": "52fe44e0c3a36847f80af4f1", "cast_id": 32, "profile_path": "/qml2xCFDj1cqCvcp9H0dIlrAMT6.jpg", "order": 20}, {"name": "Wiley Wiggins", "character": "F*** Up #2", "id": 56934, "credit_id": "52fe44e0c3a36847f80af4f5", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Harry Jay Knowles", "character": "Mr. Knowles", "id": 939534, "credit_id": "52fe44e0c3a36847f80af4f9", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Donna Casey", "character": "Tina", "id": 957577, "credit_id": "52fe44e0c3a36847f80af4fd", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Louis Black", "character": "Mr. Lewis", "id": 1091199, "credit_id": "52fe44e0c3a36847f80af501", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Eric Jungmann", "character": "Freshman #1", "id": 37005, "credit_id": "52fe44e0c3a36847f80af505", "cast_id": 37, "profile_path": "/7PPic9cyNaJbmPXpIEBJZ3JH9Sa.jpg", "order": 25}, {"name": "Chris Viteychuk", "character": "Freshman #2", "id": 1091200, "credit_id": "52fe44e0c3a36847f80af509", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Jim Johnston", "character": "P.E. Teacher", "id": 1091201, "credit_id": "52fe44e0c3a36847f80af50d", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Libby Villari", "character": "Casey's Mom", "id": 2857, "credit_id": "52fe44e0c3a36847f80af511", "cast_id": 40, "profile_path": "/dGSRIXHG4er86LBk4HAKK4TGWL0.jpg", "order": 28}, {"name": "Duane Martin", "character": "Officer #1", "id": 84077, "credit_id": "52fe44e0c3a36847f80af515", "cast_id": 41, "profile_path": "/nG7vPylNsS7k9RB0wFqu5bhUpXd.jpg", "order": 29}, {"name": "Katherine Willis", "character": "Officer #2", "id": 206675, "credit_id": "52fe44e0c3a36847f80af519", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Mike Lutz", "character": "Hornet Mascot", "id": 1038939, "credit_id": "52fe44e0c3a36847f80af51d", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Douglas Aarniokoski", "character": "Brun Coach", "id": 71901, "credit_id": "52fe44e0c3a36847f80af521", "cast_id": 44, "profile_path": "/dQ5FUVrjKNzXEADBCg3DDSWewhW.jpg", "order": 32}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44e0c3a36847f80af489", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.0, "runtime": 104}, "9277": {"poster_path": "/9UL58y2Lcbr8UpiXKiomYhKTuIs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159616327, "overview": "Set in the 1930's this intricate caper deals with an ambitious small-time crook and a veteran con man who seek revenge on a vicious crime lord who murdered one of their gang.", "video": false, "id": 9277, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Sting", "tagline": "...all it takes is a little Confidence.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 330605, "name": "The Sting Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070735", "adult": false, "backdrop_path": "/qdTTCAt35taHlFeeKZwBXLuJ5z7.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1973-12-25", "popularity": 0.724420355149071, "original_title": "The Sting", "budget": 5500000, "cast": [{"name": "Paul Newman", "character": "Henry Gondorff", "id": 3636, "credit_id": "52fe44e0c3a36847f80af567", "cast_id": 1, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "Robert Redford", "character": "Johnny Hooker", "id": 4135, "credit_id": "52fe44e0c3a36847f80af56b", "cast_id": 2, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Robert Shaw", "character": "Doyle Lonnegan", "id": 8606, "credit_id": "52fe44e0c3a36847f80af56f", "cast_id": 3, "profile_path": "/mLlgNTWRo3zGFzg4WHP9uzOH9Xn.jpg", "order": 2}, {"name": "Charles Durning", "character": "Lt. Wm. Snyder", "id": 1466, "credit_id": "52fe44e0c3a36847f80af573", "cast_id": 4, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 3}, {"name": "Ray Walston", "character": "J.J. Singleton", "id": 4093, "credit_id": "52fe44e0c3a36847f80af5b9", "cast_id": 16, "profile_path": "/KzlcoLq3s2I3ogQAdbE1eUcXsb.jpg", "order": 4}, {"name": "Eileen Brennan", "character": "Billie", "id": 39015, "credit_id": "52fe44e0c3a36847f80af5bd", "cast_id": 17, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 5}, {"name": "Harold Gould", "character": "Kid Twist", "id": 14833, "credit_id": "52fe44e0c3a36847f80af5c1", "cast_id": 18, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 6}, {"name": "John Heffernan", "character": "Eddie Niles", "id": 171056, "credit_id": "52fe44e0c3a36847f80af5c5", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Dana Elcar", "character": "F.B.I. Agent Polk", "id": 37712, "credit_id": "52fe44e0c3a36847f80af5c9", "cast_id": 20, "profile_path": "/8qDt9Rl10UCGnUtOZvlCwZiHTHI.jpg", "order": 8}, {"name": "Jack Kehoe", "character": "Erie Kid", "id": 1273, "credit_id": "52fe44e0c3a36847f80af5cd", "cast_id": 21, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 9}, {"name": "Robert Earl Jones", "character": "Luther Coleman (as Robertearl Jones)", "id": 98927, "credit_id": "52fe44e0c3a36847f80af5d5", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "James Sloyan", "character": "Mottola (as James J. Sloyan)", "id": 157936, "credit_id": "52fe44e0c3a36847f80af5d9", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Charles Dierkop", "character": "Floyd - Bodyguard", "id": 15988, "credit_id": "52fe44e0c3a36847f80af5dd", "cast_id": 25, "profile_path": "/6gAnOws0RfFg9eKvxfPv4gvHMUm.jpg", "order": 13}, {"name": "Lee Paul", "character": "Bodyguard", "id": 110436, "credit_id": "52fe44e0c3a36847f80af5e1", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Sally Kirkland", "character": "Crystal", "id": 12134, "credit_id": "52fe44e0c3a36847f80af5e5", "cast_id": 27, "profile_path": "/9hDatSXreVqPtEylLXxMcCLNktL.jpg", "order": 15}, {"name": "Avon Long", "character": "Benny Garfield", "id": 1155210, "credit_id": "52fe44e0c3a36847f80af5e9", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Arch Johnson", "character": "Combs", "id": 83806, "credit_id": "52fe44e0c3a36847f80af5ed", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Ed Bakey", "character": "Granger", "id": 161360, "credit_id": "52fe44e0c3a36847f80af5f1", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Brad Sullivan", "character": "Cole", "id": 1274, "credit_id": "52fe44e0c3a36847f80af5f5", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "John Quade", "character": "Riley", "id": 152701, "credit_id": "52fe44e0c3a36847f80af5f9", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Dimitra Arliss", "character": "Loretta", "id": 1220923, "credit_id": "53c839f7c3a368625b004389", "cast_id": 33, "profile_path": null, "order": 21}], "directors": [{"name": "George Roy Hill", "department": "Directing", "job": "Director", "credit_id": "52fe44e0c3a36847f80af579", "profile_path": "/qUTS8j1sQNeqq1YOiW8ihz0gQNs.jpg", "id": 9577}], "vote_average": 7.7, "runtime": 129}, "9279": {"poster_path": "/aaVkNhUONnkSv5ijPjq7pEmmWyE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129, "overview": "Meet Howard Langston, a salesman for a mattress company is constantly busy at his job, and he also constantly disappoints his son, after he misses his son's karate exposition, his son tells Howard that he wants for Christmas is an action figure of his son's television hero, he tries hard to to make it up to him. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man, now Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.", "video": false, "id": 9279, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Jingle All the Way", "tagline": "Two Dads, One Toy, No Prisoners.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8lId3K1HKp39peVG1VwLfA6RFsK.jpg", "id": 307637, "name": "Jingle All The Way Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116705", "adult": false, "backdrop_path": "/9SNO9BglZJgGTMOB5K4NVgecgX1.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1996-11-15", "popularity": 0.517039297597786, "original_title": "Jingle All the Way", "budget": 60, "cast": [{"name": "Arnold Schwarzenegger", "character": "Howard Langston", "id": 1100, "credit_id": "52fe44e0c3a36847f80af709", "cast_id": 12, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Phil Hartman", "character": "Ted Maltin", "id": 14104, "credit_id": "52fe44e0c3a36847f80af70d", "cast_id": 13, "profile_path": "/rf62sAab9vOjm9x7ZA0VBWDkHvD.jpg", "order": 1}, {"name": "Sinbad", "character": "Myron Larabee", "id": 57119, "credit_id": "52fe44e0c3a36847f80af711", "cast_id": 14, "profile_path": "/lQ6VVIxpZuwgXJuBX87YwQkXUoq.jpg", "order": 2}, {"name": "Rita Wilson", "character": "Liz Langston", "id": 12931, "credit_id": "52fe44e0c3a36847f80af715", "cast_id": 15, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 3}, {"name": "Jake Lloyd", "character": "Jamie Langston", "id": 33196, "credit_id": "52fe44e0c3a36847f80af71f", "cast_id": 18, "profile_path": "/1MndIkdjjDypRDi3PpMzy3j0Lof.jpg", "order": 4}, {"name": "Martin Mull", "character": "D.J.", "id": 80742, "credit_id": "52fe44e1c3a36847f80af723", "cast_id": 19, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 5}, {"name": "Martin Mull", "character": "Mall Santa", "id": 80742, "credit_id": "52fe44e1c3a36847f80af727", "cast_id": 20, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 6}, {"name": "Laraine Newman", "character": "First Lady", "id": 35159, "credit_id": "52fe44e1c3a36847f80af72b", "cast_id": 21, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 7}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe44e0c3a36847f80af6cf", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.6, "runtime": 89}, "9281": {"poster_path": "/pQZa314NJP3ieMAj6CgPI1v7nUY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68706993, "overview": "A sheltered Amish child is the sole witness of a brutal murder in a restroom at a Philadelphia train station, and he must be protected. The assignment falls to a taciturn detective who goes undercover in a Pennsylvania Dutch community. On the farm, he slowly assimilates despite his urban grit and forges a romantic bond with the child's beautiful mother.", "video": false, "id": 9281, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Witness", "tagline": "A big city cop. A small country boy. They have nothing in common...but a murder.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090329", "adult": false, "backdrop_path": "/QHlIf8JgLDOMpEOeuraSKTTjkJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1985-02-08", "popularity": 0.728982345343878, "original_title": "Witness", "budget": 12000000, "cast": [{"name": "Harrison Ford", "character": "Det. Capt. John Book", "id": 3, "credit_id": "52fe44e1c3a36847f80af7fd", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Kelly McGillis", "character": "Rachel Lapp", "id": 11084, "credit_id": "52fe44e1c3a36847f80af801", "cast_id": 9, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 1}, {"name": "Josef Sommer", "character": "Chief Paul Schaeffer", "id": 14792, "credit_id": "52fe44e1c3a36847f80af805", "cast_id": 10, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 2}, {"name": "Lukas Haas", "character": "Samuel Lapp", "id": 526, "credit_id": "52fe44e1c3a36847f80af809", "cast_id": 11, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 3}, {"name": "Jan Rubes", "character": "Eli Lapp", "id": 37422, "credit_id": "52fe44e1c3a36847f80af80d", "cast_id": 12, "profile_path": "/7Vx83K4KiTNqCEOIcqwSSav79ky.jpg", "order": 4}, {"name": "Alexander Godunov", "character": "Daniel Hochleitner", "id": 7674, "credit_id": "52fe44e1c3a36847f80af811", "cast_id": 13, "profile_path": "/lZyg3u3i2OrJJMKGhHDglln5GUm.jpg", "order": 5}, {"name": "Danny Glover", "character": "McFee", "id": 2047, "credit_id": "52fe44e1c3a36847f80af815", "cast_id": 14, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 6}, {"name": "Brent Jennings", "character": "Carter", "id": 84685, "credit_id": "52fe44e1c3a36847f80af819", "cast_id": 15, "profile_path": "/wkKnquYyWGT5ciIfgJAdy7tAxXX.jpg", "order": 7}, {"name": "Patti LuPone", "character": "Elaine", "id": 5699, "credit_id": "52fe44e1c3a36847f80af81d", "cast_id": 16, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 8}, {"name": "Angus MacInnes", "character": "Fergie", "id": 58475, "credit_id": "52fe44e1c3a36847f80af821", "cast_id": 17, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 9}, {"name": "Frederick Rolf", "character": "Stoltzfus", "id": 162568, "credit_id": "52fe44e1c3a36847f80af825", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Viggo Mortensen", "character": "Moses Hochleitner", "id": 110, "credit_id": "52fe44e1c3a36847f80af829", "cast_id": 19, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 11}, {"name": "John Garson", "character": "Bishop Tchantz", "id": 554627, "credit_id": "52fe44e1c3a36847f80af82d", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Beverly May", "character": "Mrs. Yoder", "id": 87051, "credit_id": "52fe44e1c3a36847f80af831", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Ed Crowley", "character": "Sheriff", "id": 554628, "credit_id": "52fe44e1c3a36847f80af835", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Timothy Carhart", "character": "Zenovich", "id": 17396, "credit_id": "52fe44e1c3a36847f80af839", "cast_id": 23, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 15}, {"name": "Sylvia Kauders", "character": "Tourist Lady", "id": 122239, "credit_id": "52fe44e1c3a36847f80af83d", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Patti LuPone", "character": "Elaine", "id": 5699, "credit_id": "52fe44e1c3a36847f80af841", "cast_id": 25, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 17}, {"name": "Robert Earl Jones", "character": "Custodian", "id": 98927, "credit_id": "54c5e413c3a3684a1f002e15", "cast_id": 26, "profile_path": null, "order": 18}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80af7d5", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 6.9, "runtime": 113}, "9282": {"poster_path": "/meAf3bHu9tR6OdMSELjpmlBcbE1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tells the seemingly random yet vitally connected story of a set of incidents that all converge one evening at 11:14pm. The story follows the chain of events of five different characters and five different storylines that all converge to tell the story of murder and deceit.", "video": false, "id": 9282, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "11:14", "tagline": "Fate can change in seconds.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0331811", "adult": false, "backdrop_path": "/x3GfQHPtO2JndinKPd8OVzxYdlZ.jpg", "production_companies": [{"name": "Media 8 Entertainment", "id": 2226}, {"name": "MDP Worldwide", "id": 10828}, {"name": "Firm Films", "id": 1838}], "release_date": "2003-10-15", "popularity": 0.837136290061917, "original_title": "11:14", "budget": 6000000, "cast": [{"name": "Henry Thomas", "character": "Jack", "id": 9976, "credit_id": "52fe44e1c3a36847f80af8a9", "cast_id": 10, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 0}, {"name": "Blake Heron", "character": "Aaron", "id": 57127, "credit_id": "52fe44e1c3a36847f80af8ad", "cast_id": 11, "profile_path": "/dpbSkgTckGSYRXvbZV2MwFN38LI.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Norma", "id": 10767, "credit_id": "52fe44e1c3a36847f80af8b1", "cast_id": 12, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Hilary Swank", "character": "Buzzy", "id": 448, "credit_id": "52fe44e1c3a36847f80af8b5", "cast_id": 13, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 3}, {"name": "Clark Gregg", "character": "Officer Hannagan", "id": 9048, "credit_id": "52fe44e1c3a36847f80af8b9", "cast_id": 14, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 4}, {"name": "Shawn Hatosy", "character": "Duffy", "id": 52647, "credit_id": "52fe44e1c3a36847f80af8bd", "cast_id": 15, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 5}, {"name": "Stark Sands", "character": "Tim", "id": 33532, "credit_id": "52fe44e1c3a36847f80af8c1", "cast_id": 16, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 6}, {"name": "Colin Hanks", "character": "Mark", "id": 3492, "credit_id": "52fe44e1c3a36847f80af8c5", "cast_id": 17, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 7}, {"name": "Ben Foster", "character": "Eddie", "id": 11107, "credit_id": "52fe44e1c3a36847f80af8c9", "cast_id": 18, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 8}, {"name": "Patrick Swayze", "character": "Frank", "id": 723, "credit_id": "52fe44e1c3a36847f80af8cd", "cast_id": 19, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 9}, {"name": "Rachael Leigh Cook", "character": "Cheri", "id": 38581, "credit_id": "52fe44e1c3a36847f80af8d1", "cast_id": 20, "profile_path": "/xPcfVq2UMihLNmPvYhFXV0IXiwF.jpg", "order": 10}, {"name": "Jason Segel", "character": "Leon (Paramedic #1)", "id": 41088, "credit_id": "52fe44e1c3a36847f80af8d5", "cast_id": 21, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 11}, {"name": "Rick Gomez", "character": "Kevin (Paramedic #2)", "id": 123532, "credit_id": "52fe44e1c3a36847f80af8d9", "cast_id": 22, "profile_path": "/fqxDQWzG4OHZVqgnOqhS2HRSXPt.jpg", "order": 12}], "directors": [{"name": "Greg Marcks", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80af875", "profile_path": "/5R1x4u7hxoWt3KF4oXJ5L7CJfVM.jpg", "id": 57125}], "vote_average": 6.8, "runtime": 86}, "1091": {"poster_path": "/s5fH3GqFcHbi2F0NSBSh4KRNTc0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13782838, "overview": "Scientists in the Antarctic are confronted by a shape-shifting alien that assumes the appearance of the people that it kills.", "video": false, "id": 1091, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Thing", "tagline": "Man is The Warmest Place to Hide.", "vote_count": 396, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pJIVUUcpC3CvgiJlCz4XeEaE5dg.jpg", "poster_path": "/u4Vp4zBvhVg9JYVXQ7dpfYVs3BM.jpg", "id": 245713, "name": "The Thing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}], "imdb_id": "tt0084787", "adult": false, "backdrop_path": "/hnxieS9l0aWUTOHmNNj4cVoyj52.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Turman-Foster Company", "id": 662}], "release_date": "1982-06-25", "popularity": 1.48906089283241, "original_title": "The Thing", "budget": 10000000, "cast": [{"name": "Kurt Russell", "character": "R.J. MacReady", "id": 6856, "credit_id": "52fe42e7c3a36847f802ba37", "cast_id": 14, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Wilford Brimley", "character": "Dr. Blair", "id": 11065, "credit_id": "52fe42e7c3a36847f802ba3b", "cast_id": 15, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 1}, {"name": "T. K. Carter", "character": "Nauls", "id": 15411, "credit_id": "52fe42e7c3a36847f802ba3f", "cast_id": 16, "profile_path": "/dWW4ZaZkH2Pt2xsZPTjTXoZPyMl.jpg", "order": 2}, {"name": "David Clennon", "character": "Palmer", "id": 15412, "credit_id": "52fe42e7c3a36847f802ba43", "cast_id": 17, "profile_path": "/lt3jaAmhJhScJvXwDmE5JKOsTaf.jpg", "order": 3}, {"name": "Keith David", "character": "Childs", "id": 65827, "credit_id": "52fe42e7c3a36847f802ba47", "cast_id": 18, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 4}, {"name": "Richard Dysart", "character": "Dr. Copper", "id": 15413, "credit_id": "52fe42e7c3a36847f802ba4b", "cast_id": 19, "profile_path": "/rUCGqsBUOb1d7OsEVJo7BITfMIL.jpg", "order": 5}, {"name": "Charles Hallahan", "character": "Norris", "id": 15414, "credit_id": "52fe42e7c3a36847f802ba4f", "cast_id": 20, "profile_path": "/bXRE5dfHZZhovEbXgQCXDTw9ZHY.jpg", "order": 6}, {"name": "Peter Maloney", "character": "Bennings", "id": 15415, "credit_id": "52fe42e7c3a36847f802ba53", "cast_id": 21, "profile_path": "/cJcE9Oc4GYu0oeAqrrcP68vs3vf.jpg", "order": 7}, {"name": "Richard Masur", "character": "Clark", "id": 15416, "credit_id": "52fe42e7c3a36847f802ba57", "cast_id": 22, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 8}, {"name": "Donald Moffat", "character": "Garry", "id": 15417, "credit_id": "52fe42e7c3a36847f802ba5b", "cast_id": 23, "profile_path": "/s1z6xGV9M1sx1EQdQb1mpU58mqy.jpg", "order": 9}, {"name": "Joel Polis", "character": "Fuchs", "id": 15418, "credit_id": "52fe42e7c3a36847f802ba5f", "cast_id": 24, "profile_path": "/bwDOMBwBxL2cyXHBa4sLO00ifQg.jpg", "order": 10}, {"name": "Thomas G. Waites", "character": "Windows", "id": 15419, "credit_id": "52fe42e7c3a36847f802ba63", "cast_id": 25, "profile_path": "/siYdrSBj0ubxuCZm66lotNulg6M.jpg", "order": 11}, {"name": "Jed", "character": "the dog", "id": 131373, "credit_id": "52fe42e7c3a36847f802ba67", "cast_id": 26, "profile_path": null, "order": 12}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802b9eb", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 7.3, "runtime": 109}, "1092": {"poster_path": "/zffkZuDHU7NJIw9O54JIaR5XOxv.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 596349, "overview": "An American pulp writer arrives in post-WWII Vienna only to find that the friend who waited for him is killed under mysterious circumstances. The ensuing mystery entangles him in his friend's involvement in the black market, with the multinational police, and with his Czech girlfriend.", "video": false, "id": 1092, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Third Man", "tagline": "Hunted by men...Sought by WOMEN!", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0041959", "adult": false, "backdrop_path": "/lrIuSWdC1LfKJZUnBX6axJxzZGe.jpg", "production_companies": [{"name": "London Film Productions", "id": 659}, {"name": "British Lion Film Corporation", "id": 660}], "release_date": "1949-08-31", "popularity": 0.467722988308059, "original_title": "The Third Man", "budget": 0, "cast": [{"name": "Joseph Cotten", "character": "Holly Martins", "id": 7664, "credit_id": "52fe42e7c3a36847f802babd", "cast_id": 8, "profile_path": "/bTUTrTnzacCQV4F0rs1xH4QaETf.jpg", "order": 0}, {"name": "Alida Valli", "character": "Anna Schmidt", "id": 15385, "credit_id": "52fe42e7c3a36847f802bac1", "cast_id": 9, "profile_path": "/jrLlDz7G1oEw8mQri4T2jjDWXep.jpg", "order": 1}, {"name": "Orson Welles", "character": "Harry Lime", "id": 40, "credit_id": "52fe42e7c3a36847f802bac5", "cast_id": 10, "profile_path": "/pZz07JqawZP3eKUwpaAZq63vEmF.jpg", "order": 2}, {"name": "Trevor Howard", "character": "Major Calloway", "id": 12726, "credit_id": "52fe42e7c3a36847f802bac9", "cast_id": 11, "profile_path": "/drj1FPryhAimWCiufEnMLzUxpBQ.jpg", "order": 3}, {"name": "Bernard Lee", "character": "Sergeant Paine", "id": 9874, "credit_id": "52fe42e7c3a36847f802bacd", "cast_id": 12, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 4}, {"name": "Paul H\u00f6rbiger", "character": "Porter", "id": 14120, "credit_id": "52fe42e7c3a36847f802bad1", "cast_id": 13, "profile_path": "/bed1mDokkIA3RrxFzLW5lN7sE3K.jpg", "order": 5}, {"name": "Siegfried Breuer", "character": "Popescu", "id": 15386, "credit_id": "52fe42e7c3a36847f802bad5", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Wilfrid Hyde-White", "character": "Crabbin", "id": 15387, "credit_id": "52fe42e7c3a36847f802bad9", "cast_id": 15, "profile_path": "/kqMDVX6MR0wRAFWO85M0geJPFHV.jpg", "order": 7}, {"name": "Hedwig Bleibtreu", "character": "Anna's Landlady", "id": 15388, "credit_id": "52fe42e7c3a36847f802badd", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Annie Rosar", "character": "the porter's wife", "id": 11931, "credit_id": "52fe42e7c3a36847f802bae1", "cast_id": 17, "profile_path": "/xdCkf5Db3wGlFjedJ6AdvN7GxU6.jpg", "order": 9}, {"name": "Erich Ponto", "character": "Dr. Winkel", "id": 13376, "credit_id": "52fe42e7c3a36847f802bae5", "cast_id": 18, "profile_path": "/4oCLSs5TVmhHyLUUUkD7o4fZgA5.jpg", "order": 10}, {"name": "Ernst Deutsch", "character": "'Baron' Kurtz", "id": 29177, "credit_id": "52fe42e7c3a36847f802bae9", "cast_id": 19, "profile_path": null, "order": 11}], "directors": [{"name": "Carol Reed", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802ba95", "profile_path": "/rOg7tqIv14orhsQ3VngFrrdyqkf.jpg", "id": 15378}], "vote_average": 7.5, "runtime": 104}, "9285": {"poster_path": "/DCoZVnHVvtKTYwfM00dfVRbfUQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119754278, "overview": "Four friends take off on an 1800 mile road trip to retrieve an illicit tape mistakenly mailed to a girl friend.", "video": false, "id": 9285, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Road Trip", "tagline": "The greatest college tradition of all.", "vote_count": 152, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jGEnRLNK6fq7KMmw5rmApzfjVtw.jpg", "poster_path": "/7bXQaid9TkgGAPuoYFHzbr1alv9.jpg", "id": 96679, "name": "Road Trip Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0215129", "adult": false, "backdrop_path": "/6CvIM0Lp2gBppgoVoowqkyzhim7.jpg", "production_companies": [{"name": "The Montecito Picture Company", "id": 2364}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2000-05-19", "popularity": 0.552464637294531, "original_title": "Road Trip", "budget": 16000000, "cast": [{"name": "Breckin Meyer", "character": "Josh Parker", "id": 33654, "credit_id": "52fe44e1c3a36847f80afa23", "cast_id": 13, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 0}, {"name": "Seann William Scott", "character": "E.L.", "id": 57599, "credit_id": "52fe44e1c3a36847f80afa27", "cast_id": 14, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Amy Smart", "character": "Beth Wagner", "id": 20189, "credit_id": "52fe44e1c3a36847f80afa2b", "cast_id": 15, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 2}, {"name": "Paulo Costanzo", "character": "Rubin Carver", "id": 57133, "credit_id": "52fe44e1c3a36847f80afa2f", "cast_id": 16, "profile_path": "/7ALI5nYarzuLGjsQA3NuvTKvy9h.jpg", "order": 3}, {"name": "DJ Qualls", "character": "Kyle Edwards", "id": 132078, "credit_id": "52fe44e1c3a36847f80afa33", "cast_id": 17, "profile_path": "/foe0XuHIgVHsnrMBYlgYtsR3Z2V.jpg", "order": 4}, {"name": "Tom Green", "character": "Barry Manilow", "id": 36423, "credit_id": "52fe44e1c3a36847f80afa43", "cast_id": 20, "profile_path": "/bY7szfVBOedHUxkD3HHqa7MZ2ka.jpg", "order": 5}, {"name": "Rachel Blanchard", "character": "Tiffany Henderson", "id": 52478, "credit_id": "52fe44e1c3a36847f80afa47", "cast_id": 21, "profile_path": "/b8C355lKxrfwqHmCD3N22BjXMxz.jpg", "order": 6}, {"name": "Marla Sucharetza", "character": "Sperm Bank Nurse", "id": 21129, "credit_id": "52fe44e1c3a36847f80afa4b", "cast_id": 22, "profile_path": "/8aCV8dHLdjGUJjzVVAr4yYFnmzT.jpg", "order": 7}, {"name": "Anthony Rapp", "character": "Jacob", "id": 6165, "credit_id": "53696b23c3a3681238006726", "cast_id": 23, "profile_path": "/a9SBIDqSXkJaxJHqDaHXNkLhOUs.jpg", "order": 8}, {"name": "Andy Dick", "character": "Motel Clerk", "id": 43120, "credit_id": "53696b2dc3a36812120068cf", "cast_id": 24, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 9}, {"name": "Fred Ward", "character": "Earl Edwards", "id": 10430, "credit_id": "53696b37c3a3681241006cb0", "cast_id": 25, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 10}, {"name": "Ethan Suplee", "character": "Ed", "id": 824, "credit_id": "53696b40c3a3681220006a84", "cast_id": 26, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 11}, {"name": "Horatio Sanz", "character": "French Toast Guy", "id": 52117, "credit_id": "53696b4cc3a3681238006729", "cast_id": 27, "profile_path": "/rKaWVBB0PqyKuNwUfpOeRZ220oI.jpg", "order": 12}, {"name": "Rhoda Griffis", "character": "Tour Group Mom", "id": 51456, "credit_id": "53696b59c3a3681218006811", "cast_id": 28, "profile_path": "/zeogAlRpFrZJMfKXuwB7iCVVqJz.jpg", "order": 13}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80af9ef", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.7, "runtime": 93}, "115782": {"poster_path": "/ioI5pOOr5yWZAAZPEts5oSQwUrT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35931410, "overview": "The story of Steve Jobs' ascension from college dropout into one of the most revered creative entrepreneurs of the 20th century.", "video": false, "id": 115782, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Jobs", "tagline": "Some see what's possible, others change what's possible.", "vote_count": 466, "homepage": "http://thejobsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2357129", "adult": false, "backdrop_path": "/exb7qw4BPOwBr0qlxIsEKc3TCR.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Dillywood", "id": 12073}, {"name": "Five Star Institute", "id": 12074}, {"name": "Silver Reel", "id": 12075}], "release_date": "2013-08-16", "popularity": 1.63480593330103, "original_title": "Jobs", "budget": 12000000, "cast": [{"name": "Ashton Kutcher", "character": "Steve Jobs", "id": 18976, "credit_id": "52fe4b7ac3a36847f82059cb", "cast_id": 1, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Dermot Mulroney", "character": "Mike Markkula", "id": 20212, "credit_id": "52fe4b7ac3a36847f82059cf", "cast_id": 2, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 1}, {"name": "Amanda Crew", "character": "Julie", "id": 58370, "credit_id": "52fe4b7ac3a36847f82059eb", "cast_id": 8, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 2}, {"name": "James Woods", "character": "Jack Dudman", "id": 4512, "credit_id": "52fe4b7ac3a36847f82059d7", "cast_id": 4, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "Josh Gad", "character": "Steve Wozniak", "id": 54415, "credit_id": "52fe4b7ac3a36847f82059e7", "cast_id": 7, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 4}, {"name": "Matthew Modine", "character": "John Sculley", "id": 8654, "credit_id": "52fe4b7ac3a36847f82059d3", "cast_id": 3, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 5}, {"name": "Lukas Haas", "character": "Daniel Kottke", "id": 526, "credit_id": "52fe4b7bc3a36847f82059f3", "cast_id": 10, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 6}, {"name": "J.K. Simmons", "character": "Arthur Rock", "id": 18999, "credit_id": "52fe4b7bc3a36847f82059f7", "cast_id": 11, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 7}, {"name": "Ron Eldard", "character": "Rod Holt", "id": 12260, "credit_id": "52fe4b7bc3a36847f8205a03", "cast_id": 14, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 8}, {"name": "Elden Henson", "character": "Andy Hertzfeld", "id": 20220, "credit_id": "52fe4b7bc3a36847f8205a19", "cast_id": 22, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 9}, {"name": "Lesley Ann Warren", "character": "Clara Jobs", "id": 21818, "credit_id": "52fe4b7bc3a36847f82059fb", "cast_id": 12, "profile_path": "/4I5VPyumsxYGKST9b0FL2harYRK.jpg", "order": 10}, {"name": "Ahna O'Reilly", "character": "Chris-Ann Brennan", "id": 999605, "credit_id": "52fe4b7bc3a36847f82059ff", "cast_id": 13, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 11}, {"name": "David Denman", "character": "Al Alcorn", "id": 62562, "credit_id": "52fe4b7bc3a36847f8205a1d", "cast_id": 23, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 12}, {"name": "Kevin Dunn", "character": "Gil Amelio", "id": 14721, "credit_id": "52fe4b7ac3a36847f82059ef", "cast_id": 9, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 13}, {"name": "Nelson Franklin", "character": "Bill Atkinson", "id": 88928, "credit_id": "52fe4b7bc3a36847f8205a21", "cast_id": 24, "profile_path": "/lk2A1zZezjIrmiXD507Chr24SyJ.jpg", "order": 14}], "directors": [{"name": "Joshua Michael Stern", "department": "Directing", "job": "Director", "credit_id": "52fe4b7ac3a36847f82059dd", "profile_path": "/asACKiJSAZzhF7sDO1fFXlpyCG9.jpg", "id": 64139}], "vote_average": 6.1, "runtime": 128}, "9289": {"poster_path": "/q8NXuRN57k8ZDUU3wVOTvy685UG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The retelling of June 6, 1944, from the perspectives of the Germans, the US, Britain, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. \"For the Allies as well as the Germans, it will be the longest day\"", "video": false, "id": 9289, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Longest Day", "tagline": "This is the day that changed the world... When history held its breath.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056197", "adult": false, "backdrop_path": "/s5rP9nQ6fqvhkrpBEe4JrSRMmOf.jpg", "production_companies": [{"name": "Darryl F. Zanuck Productions", "id": 13630}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1962-09-25", "popularity": 0.781046230448817, "original_title": "The Longest Day", "budget": 10000000, "cast": [{"name": "John Wayne", "character": "Col. Benjamin Vandervoort", "id": 4165, "credit_id": "52fe44e2c3a36847f80afc55", "cast_id": 4, "profile_path": "/8I83wLVUil6tIe50yb82LdEggFR.jpg", "order": 0}, {"name": "Robert Mitchum", "character": "Brig. Gen. Norman Cota", "id": 10158, "credit_id": "52fe44e2c3a36847f80afc59", "cast_id": 5, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 1}, {"name": "Henry Fonda", "character": "Brig. Gen. Theodore Roosevelt jr.", "id": 4958, "credit_id": "52fe44e2c3a36847f80afc5d", "cast_id": 6, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 2}, {"name": "Sean Connery", "character": "Pvt. Flanagan", "id": 738, "credit_id": "52fe44e2c3a36847f80afc61", "cast_id": 7, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 3}, {"name": "Richard Burton", "character": "Flight Officer David Campbell", "id": 5341, "credit_id": "52fe44e2c3a36847f80afc89", "cast_id": 14, "profile_path": "/fRoBAQQP9sfnIYuqw546yFs3qKn.jpg", "order": 4}, {"name": "Red Buttons", "character": "Pvt. John Steele", "id": 7503, "credit_id": "52fe44e2c3a36847f80afc8d", "cast_id": 15, "profile_path": "/qftIHEdcpPgBnEe8P9OvMpIqiL3.jpg", "order": 5}, {"name": "Curd J\u00fcrgens", "character": "Maj. Gen. Gunther Blumentritt", "id": 10459, "credit_id": "52fe44e2c3a36847f80afc91", "cast_id": 16, "profile_path": "/psFeEFYhy1tUn9y4vLxF9eSKMK9.jpg", "order": 6}, {"name": "Gert Fr\u00f6be", "character": "Sgt. Kaffekanne", "id": 9908, "credit_id": "52fe44e2c3a36847f80afc95", "cast_id": 17, "profile_path": "/7sqA8qKg3N988PODnrhByiYOsEE.jpg", "order": 7}, {"name": "Bourvil", "character": "Le maire de Colleville", "id": 37131, "credit_id": "52fe44e2c3a36847f80afc9f", "cast_id": 19, "profile_path": "/9GVFzxUl828Cjs8in64pRCPmInv.jpg", "order": 8}, {"name": "Eddie Albert", "character": "Col. Thompson", "id": 11998, "credit_id": "52fe44e2c3a36847f80afca3", "cast_id": 20, "profile_path": "/1x9ovDtxBVNqBPEzSQ7qVU0ITgw.jpg", "order": 9}, {"name": "Paul Anka", "character": "U.S. Army Ranger", "id": 77260, "credit_id": "52fe44e2c3a36847f80afca7", "cast_id": 21, "profile_path": "/9Lu6nzIjiYPo7N3TX7QRovo7urJ.jpg", "order": 10}, {"name": "Arletty", "character": "Madame Barrault", "id": 25154, "credit_id": "52fe44e2c3a36847f80afcab", "cast_id": 22, "profile_path": "/zVjTgS65hQ0KYlyviMWY94vKhm8.jpg", "order": 11}, {"name": "Jean-Louis Barrault", "character": "Father Louis Roulland", "id": 25155, "credit_id": "52fe44e2c3a36847f80afcaf", "cast_id": 23, "profile_path": "/7kew2srWaW6zz6T1T6voEUYmI72.jpg", "order": 12}, {"name": "Richard Beymer", "character": "Pvt. Dutch Schultz", "id": 6679, "credit_id": "52fe44e2c3a36847f80afcb3", "cast_id": 24, "profile_path": "/9jOYQIu3jVAhMNMUKG50Q6TdEmv.jpg", "order": 13}, {"name": "Hans Christian Blech", "character": "Maj. Werner Pluskat", "id": 23694, "credit_id": "52fe44e2c3a36847f80afcb7", "cast_id": 25, "profile_path": "/plrW2sGmpPq6Uv6OEaDrokb1H5f.jpg", "order": 14}, {"name": "Wolfgang B\u00fcttner", "character": "Maj. Gen. Dr. Hans Speidel", "id": 32554, "credit_id": "52fe44e2c3a36847f80afcbb", "cast_id": 26, "profile_path": "/rTtIN7TrijR09t757Bzu3GhdX8A.jpg", "order": 15}, {"name": "Pauline Carton", "character": "Maid", "id": 543813, "credit_id": "52fe44e2c3a36847f80afcbf", "cast_id": 27, "profile_path": "/59YpqOppdLymi8UOupKm256LT0U.jpg", "order": 16}, {"name": "Ray Danton", "character": "Capt. Frank", "id": 33722, "credit_id": "52fe44e2c3a36847f80afcc3", "cast_id": 28, "profile_path": "/wPIIYwJMw6GcoM6CGtlqJtkOa1R.jpg", "order": 17}, {"name": "Irina Demick", "character": "Janine Boitard (as Irina Demich)", "id": 35586, "credit_id": "52fe44e2c3a36847f80afcc7", "cast_id": 29, "profile_path": "/cX68VgdLRjFEh4O4UO6VgadrTIC.jpg", "order": 18}, {"name": "Fred Dur", "character": "U.S. Army Ranger major", "id": 544753, "credit_id": "52fe44e2c3a36847f80afccb", "cast_id": 30, "profile_path": "/8T8QvBPqk0nNhq32QZ663h09gt5.jpg", "order": 19}, {"name": "Fabian", "character": "U.S. Army Ranger", "id": 39757, "credit_id": "52fe44e2c3a36847f80afccf", "cast_id": 31, "profile_path": "/2yC9VF8bpERMUIFZfCnH3oeJQLY.jpg", "order": 20}, {"name": "Mel Ferrer", "character": "Maj. Gen. Robert Haines", "id": 3754, "credit_id": "52fe44e2c3a36847f80afcd3", "cast_id": 32, "profile_path": "/9vYGnxKzPFWiyKbLnjQ9GvgaV2g.jpg", "order": 21}, {"name": "Steve Forrest", "character": "Capt. Harding", "id": 44998, "credit_id": "52fe44e2c3a36847f80afcd7", "cast_id": 33, "profile_path": "/4QhFcU5GgsyyHSjEEzDN7FCAUkD.jpg", "order": 22}, {"name": "Leo Genn", "character": "Brig. Gen. Edwin P. Parker Jr.", "id": 29655, "credit_id": "52fe44e2c3a36847f80afcdb", "cast_id": 34, "profile_path": "/eOAv0mHO140nh3KA78AJ7Agwx32.jpg", "order": 23}, {"name": "John Gregson", "character": "British Padre", "id": 90624, "credit_id": "52fe44e2c3a36847f80afcdf", "cast_id": 35, "profile_path": "/a4ZxtEL4XRSFMyllNxZAXop1cmx.jpg", "order": 24}, {"name": "Peter Lawford", "character": "Lord Lovat", "id": 4353, "credit_id": "52fe44e2c3a36847f80afce3", "cast_id": 36, "profile_path": "/93YIqKGUxyPSN3MNh2a7oXQZ1OC.jpg", "order": 25}, {"name": "Roddy McDowall", "character": "Pvt. Morris", "id": 7505, "credit_id": "52fe44e2c3a36847f80afce7", "cast_id": 37, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 26}, {"name": "Sal Mineo", "character": "Pvt. Martini", "id": 2770, "credit_id": "52fe44e2c3a36847f80afceb", "cast_id": 38, "profile_path": "/eqI5jNcsntOCtSjTUdacR72grlI.jpg", "order": 27}, {"name": "Edmond O'Brien", "character": "Gen. Raymond D. Barton", "id": 8254, "credit_id": "52fe44e2c3a36847f80afcef", "cast_id": 39, "profile_path": "/w3xvMmH5WfHZ5y7ldeIdX2oghVN.jpg", "order": 28}, {"name": "Robert Ryan", "character": "Brig. Gen. James M. Gavin", "id": 8253, "credit_id": "52fe44e2c3a36847f80afcf3", "cast_id": 40, "profile_path": "/xBAWG79UGCkchPPTbONycJiKW2g.jpg", "order": 29}, {"name": "Rod Steiger", "character": "Destroyer Commander", "id": 522, "credit_id": "52fe44e2c3a36847f80afcf7", "cast_id": 41, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 30}, {"name": "Tom Tryon", "character": "Lt. Wilson", "id": 30778, "credit_id": "52fe44e2c3a36847f80afcfb", "cast_id": 42, "profile_path": "/aWBrvnbtZfX5izRAP9aK0mR2VrP.jpg", "order": 31}, {"name": "Peter van Eyck", "character": "Lt. Col. Ocker (as Peter Van Eyck)", "id": 2567, "credit_id": "52fe44e2c3a36847f80afcff", "cast_id": 43, "profile_path": "/xXkWcMKcFSEiupgII0VMCt942Zz.jpg", "order": 32}, {"name": "Robert Wagner", "character": "U.S. Army Ranger", "id": 9208, "credit_id": "52fe44e2c3a36847f80afd03", "cast_id": 44, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 33}, {"name": "Stuart Whitman", "character": "Lt. Sheen", "id": 38761, "credit_id": "52fe44e2c3a36847f80afd07", "cast_id": 45, "profile_path": "/9v59bhYg3380R9ZqEHz4MA2SzLd.jpg", "order": 34}, {"name": "George Segal", "character": "U.S. Army Ranger", "id": 18364, "credit_id": "53ba79c3c3a3685ebd006da4", "cast_id": 52, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 35}, {"name": "Richard Todd", "character": "Maj. John Howard", "id": 20393, "credit_id": "53ba7a31c3a3685eba006de4", "cast_id": 53, "profile_path": "/asmQq1hLKEHiBQdQvvO4jXzfrNg.jpg", "order": 36}, {"name": "Jean Servais", "character": "RAdm. Janjard", "id": 14242, "credit_id": "53ba7a89c3a3685eb7006c5f", "cast_id": 54, "profile_path": "/tKzre5yY1u3nrhecp4QlgyyJ0uT.jpg", "order": 37}, {"name": "Wolfgang Preiss", "character": "Maj. Gen. Max Pemsel", "id": 14121, "credit_id": "53ba7b28c3a368072e004052", "cast_id": 55, "profile_path": "/vZotpPKrfDhjeU2CwxPlNnRCXCY.jpg", "order": 38}, {"name": "Leslie Phillips", "character": "RAF Officer Mac", "id": 10655, "credit_id": "53ba7ba6c3a3685eb7006c72", "cast_id": 56, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 39}, {"name": "Kenneth More", "character": "Capt. Colin Maud", "id": 67676, "credit_id": "53ba7bfbc3a368072e00405d", "cast_id": 57, "profile_path": "/1PLv8ezmZpSvvpTO1zFmjqaHdjY.jpg", "order": 40}, {"name": "Madeleine Renaud", "character": "Mother Superior", "id": 236906, "credit_id": "5460a2e60e0a263538000cba", "cast_id": 59, "profile_path": "/7syJARSdyeaVIIVgncT4sZvhkjX.jpg", "order": 41}, {"name": "Frank Finlay", "character": "Pvt. Coke (uncredited)", "id": 6637, "credit_id": "5460a3960e0a266177003b72", "cast_id": 60, "profile_path": "/esHCgg80H7gpUSClYclyHsksHij.jpg", "order": 42}, {"name": "Michael Hinz", "character": "Manfred Rommel (uncredited)", "id": 36028, "credit_id": "5460a40c0e0a266177003b8e", "cast_id": 61, "profile_path": "/xQwIL3NMSnO9vInw2BeAKkHUdqA.jpg", "order": 43}], "directors": [{"name": "Ken Annakin", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afc45", "profile_path": "/8oFZguwvvd1F3CETULi37Gq1ZtL.jpg", "id": 35318}, {"name": "Andrew Marton", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afc4b", "profile_path": null, "id": 57142}, {"name": "Bernhard Wicki", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afc9b", "profile_path": "/kWBdiWLhjdFDMV953W5xhFyHTxv.jpg", "id": 9894}], "vote_average": 6.9, "runtime": 178}, "9291": {"poster_path": "/ag6q9euZABqbHtbDhoRT9xEYltP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 190320568, "overview": "Pro quarter-back Paul Crewe (Sandler) and former college champion and coach Nate Scarboro (Reynolds) are doing in the same prison. Asked to put together a team of inmates to take on the guards, Crewe enlists the help of Scarboro to coach the inmates to victory in a football game 'fixed' to turn out quiet another way.", "video": false, "id": 9291, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Longest Yard", "tagline": "If you can't get out, get even.", "vote_count": 198, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398165", "adult": false, "backdrop_path": "/h0buWXMP9USXWvlodbuubDaMPGV.jpg", "production_companies": [{"name": "MTV Films", "id": 746}, {"name": "Paramount Pictures", "id": 4}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2005-05-19", "popularity": 0.730383465419022, "original_title": "The Longest Yard", "budget": 82000000, "cast": [{"name": "Adam Sandler", "character": "Paul Crewe", "id": 19292, "credit_id": "52fe44e2c3a36847f80afe25", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Chris Rock", "character": "Caretaker", "id": 2632, "credit_id": "52fe44e2c3a36847f80afe29", "cast_id": 2, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 1}, {"name": "Burt Reynolds", "character": "Coach Nate Scarborough", "id": 16475, "credit_id": "52fe44e2c3a36847f80afe2d", "cast_id": 3, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 2}, {"name": "Michael Irvin", "character": "Deacon Moss", "id": 69127, "credit_id": "52fe44e2c3a36847f80afe5b", "cast_id": 11, "profile_path": "/4RgPHUoMR0molaTAAN7MNGiwmbj.jpg", "order": 3}, {"name": "Nelly", "character": "Megget", "id": 69128, "credit_id": "52fe44e2c3a36847f80afe5f", "cast_id": 12, "profile_path": "/6RZIMUkqEDUszMIRzs5KzpxoNiV.jpg", "order": 4}, {"name": "Bill Goldberg", "character": "Battle", "id": 65236, "credit_id": "52fe44e2c3a36847f80afe63", "cast_id": 13, "profile_path": "/m0MTwieiGXtVdmWYO8IegQgnADB.jpg", "order": 5}, {"name": "Terry Crews", "character": "Cheeseburger Eddy", "id": 53256, "credit_id": "52fe44e2c3a36847f80afe67", "cast_id": 14, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 6}, {"name": "Bob Sapp", "character": "Switowski", "id": 60716, "credit_id": "52fe44e2c3a36847f80afe6b", "cast_id": 15, "profile_path": "/y11Km6dAfrBB4asSIvBewR8UocA.jpg", "order": 7}, {"name": "Nicholas Turturro", "character": "Brucie", "id": 32897, "credit_id": "52fe44e2c3a36847f80afe6f", "cast_id": 16, "profile_path": "/wEHGvoVgA7fEl93jmAYD3JRsX3b.jpg", "order": 8}, {"name": "Dalip Singh Rana", "character": "Turley", "id": 119154, "credit_id": "52fe44e2c3a36847f80afe73", "cast_id": 17, "profile_path": "/3czibTND6j2lVHlZ3JGKPMBslt.jpg", "order": 9}, {"name": "Lobo Sebastian", "character": "Torres", "id": 48071, "credit_id": "52fe44e2c3a36847f80afe77", "cast_id": 18, "profile_path": "/muw74umbo9s6KI22pxzc7RSNqi9.jpg", "order": 10}, {"name": "Steve Reevis", "character": "Baby Face Bob", "id": 4024, "credit_id": "52fe44e2c3a36847f80afe7b", "cast_id": 19, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 11}, {"name": "Tracy Morgan", "character": "Ms. Tucker", "id": 56903, "credit_id": "52fe44e2c3a36847f80afe7f", "cast_id": 20, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 12}, {"name": "William Fichtner", "character": "Captain Knauer", "id": 886, "credit_id": "52fe44e2c3a36847f80afe83", "cast_id": 21, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 13}, {"name": "Bill Romanowski", "character": "Guard Lambert", "id": 60954, "credit_id": "52fe44e2c3a36847f80afe87", "cast_id": 22, "profile_path": "/cXoVWp5m4eX1VedZqf3FbfKUOH4.jpg", "order": 14}, {"name": "Kevin Nash", "character": "Guard Engleheart", "id": 135352, "credit_id": "52fe44e2c3a36847f80afe8b", "cast_id": 23, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 15}, {"name": "Steve Austin", "character": "Guard Dunham", "id": 77120, "credit_id": "52fe44e2c3a36847f80afe8f", "cast_id": 24, "profile_path": "/brwLpcsqly66jchMWjrcrc93siI.jpg", "order": 16}, {"name": "Brian Bosworth", "character": "Guard Garner", "id": 87400, "credit_id": "52fe44e2c3a36847f80afe93", "cast_id": 25, "profile_path": "/1ehWbx2NieIiGz4iKQe5txEUeo8.jpg", "order": 17}, {"name": "Michael Papajohn", "character": "Guard Papajohn", "id": 20582, "credit_id": "52fe44e2c3a36847f80afe97", "cast_id": 26, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 18}, {"name": "Conrad Goode", "character": "Guard Webster", "id": 135353, "credit_id": "52fe44e2c3a36847f80afe9b", "cast_id": 27, "profile_path": "/fr9yZu07tHMRIXWH5h4HRkvBUcJ.jpg", "order": 19}, {"name": "Brandon Molale", "character": "Guard Malloy", "id": 63238, "credit_id": "52fe44e2c3a36847f80afe9f", "cast_id": 28, "profile_path": "/iOQFhKoCY6czA8OIudsHbOtJsC6.jpg", "order": 20}, {"name": "James Cromwell", "character": "Warden Hazen", "id": 2505, "credit_id": "52fe44e2c3a36847f80afea3", "cast_id": 29, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 21}, {"name": "Cloris Leachman", "character": "Lynette", "id": 9599, "credit_id": "52fe44e2c3a36847f80afea7", "cast_id": 30, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 22}, {"name": "Rob Schneider", "character": "Punky", "id": 60949, "credit_id": "52fe44e3c3a36847f80afeab", "cast_id": 31, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 23}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afe33", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.2, "runtime": 113}, "9292": {"poster_path": "/j9L6qA8HMgNrDzVyCukGeaCrRf6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17218080, "overview": "Eddie Hawkins, called Hudson Hawk has just been released from ten years of prison and is planning to spend the rest of his life honestly. But then the crazy Mayflower couple blackmail him to steal some of the works of Leonardo da Vinci. If he refuses, they threaten to kill his friend Tommy.", "video": false, "id": 9292, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Hudson Hawk", "tagline": "Danger is his middle name.", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0102070", "adult": false, "backdrop_path": "/nK3J2ZMLVGL6iKiK0sxEe71Zl9T.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1991-05-23", "popularity": 0.578739401502857, "original_title": "Hudson Hawk", "budget": 65000000, "cast": [{"name": "Bruce Willis", "character": "Eddie 'Hudson Hawk' Hawkins", "id": 62, "credit_id": "52fe44e3c3a36847f80afed9", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Danny Aiello", "character": "Tommy Five-Tone", "id": 1004, "credit_id": "52fe44e3c3a36847f80afedd", "cast_id": 2, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 1}, {"name": "Andie MacDowell", "character": "Anna Baragli", "id": 1533, "credit_id": "52fe44e3c3a36847f80afee1", "cast_id": 3, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 2}, {"name": "James Coburn", "character": "George Kaplan", "id": 5563, "credit_id": "52fe44e3c3a36847f80afee5", "cast_id": 4, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 3}, {"name": "Richard E. Grant", "character": "Darwin Mayflower", "id": 20766, "credit_id": "52fe44e3c3a36847f80aff31", "cast_id": 17, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 4}, {"name": "Sandra Bernhard", "character": "Minerva Mayflower", "id": 3664, "credit_id": "52fe44e3c3a36847f80aff35", "cast_id": 18, "profile_path": "/nYCnCtbbWjrMsmbanQLGhRM3FXh.jpg", "order": 5}, {"name": "David Caruso", "character": "Kit Kat", "id": 16560, "credit_id": "52fe44e3c3a36847f80aff39", "cast_id": 19, "profile_path": "/i251LGpMkOeOqRmqlCpKkNoGdni.jpg", "order": 6}, {"name": "Frank Stallone", "character": "Cesar Mario", "id": 39780, "credit_id": "52fe44e3c3a36847f80aff3d", "cast_id": 20, "profile_path": "/3TrGzXf58Yt4NdzOjWOvZLf6q0R.jpg", "order": 7}], "directors": [{"name": "Michael Lehmann", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80afeeb", "profile_path": "/rM0KmE5Fr9zAi5gzQv9bc78Q1GX.jpg", "id": 7145}], "vote_average": 6.0, "runtime": 100}, "9293": {"poster_path": "/niyDbG3HpGnLvLM3GT1xNL6i9Rp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three ex-girlfriends of a serial cheater set up their former lover to fall for the new girl in town so they can watch him get his heart broken.", "video": false, "id": 9293, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "John Tucker Must Die", "tagline": "Don't Get Mad, Get Even", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455967", "adult": false, "backdrop_path": "/jkUt8j9NJsbtnGcVvZ1dzOadY23.jpg", "production_companies": [{"name": "Major Studio Partners", "id": 445}, {"name": "John US Productions", "id": 7742}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Landscape Entertainment", "id": 7741}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2006-07-27", "popularity": 0.898436658075117, "original_title": "John Tucker Must Die", "budget": 0, "cast": [{"name": "Jesse Metcalfe", "character": "John Tucker", "id": 57171, "credit_id": "52fe44e3c3a36847f80aff67", "cast_id": 1, "profile_path": "/vhxW5SvFuMBVG3Vk7TrE8NoqICz.jpg", "order": 0}, {"name": "Brittany Snow", "character": "Kate", "id": 29221, "credit_id": "52fe44e3c3a36847f80aff6b", "cast_id": 2, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 1}, {"name": "Sophia Bush", "character": "Beth", "id": 54830, "credit_id": "52fe44e3c3a36847f80aff6f", "cast_id": 4, "profile_path": "/kpC7qYgC6R3qIbISc0vaaf9Nx4g.jpg", "order": 2}, {"name": "Arielle Kebbel", "character": "Carrie", "id": 20373, "credit_id": "52fe44e3c3a36847f80aff73", "cast_id": 5, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 3}, {"name": "Ashanti", "character": "Heather", "id": 57172, "credit_id": "52fe44e3c3a36847f80affad", "cast_id": 15, "profile_path": "/lN5YrFFhCmxvX22Ts9hmzTMYblY.jpg", "order": 4}, {"name": "Penn Badgley", "character": "Scott", "id": 110927, "credit_id": "52fe44e3c3a36847f80affb1", "cast_id": 16, "profile_path": "/key2cKLsZYLyV03b8NMdmvJjBe9.jpg", "order": 5}, {"name": "Jenny McCarthy", "character": "Lori", "id": 35597, "credit_id": "52fe44e3c3a36847f80affb5", "cast_id": 17, "profile_path": "/itsSilp7prfi3lKQMFn1p5J6hWI.jpg", "order": 6}, {"name": "Kevin McNulty", "character": "Basketball Coach", "id": 27111, "credit_id": "52fe44e3c3a36847f80affb9", "cast_id": 18, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 7}, {"name": "Taylor Kitsch", "character": "Justin", "id": 60900, "credit_id": "52fe44e3c3a36847f80affbd", "cast_id": 19, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 8}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80aff79", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.7, "runtime": 89}, "9294": {"poster_path": "/pa8IWMEYaYDDr5hEaZflOKW8gjc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104636382, "overview": "An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.", "video": false, "id": 9294, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Phenomenon", "tagline": "Some things in life just can't be explained.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117333", "adult": false, "backdrop_path": "/dhzAVfv8ZGxC7e0YeejsFsFOhIA.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1996-07-05", "popularity": 0.820482340279621, "original_title": "Phenomenon", "budget": 32000000, "cast": [{"name": "John Travolta", "character": "George Malley", "id": 8891, "credit_id": "52fe44e3c3a36847f80afff9", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Kyra Sedgwick", "character": "Lace Pennamin", "id": 26467, "credit_id": "52fe44e3c3a36847f80afffd", "cast_id": 3, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Nate Pope", "id": 2178, "credit_id": "52fe44e3c3a36847f80b0001", "cast_id": 4, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Doc Brunder", "id": 3087, "credit_id": "52fe44e3c3a36847f80b0005", "cast_id": 5, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "Jeffrey DeMunn", "character": "Prof. John Ringold", "id": 12645, "credit_id": "52fe44e3c3a36847f80b0039", "cast_id": 16, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 4}, {"name": "Richard Kiley", "character": "Dr. Wellin", "id": 26660, "credit_id": "52fe44e3c3a36847f80b003d", "cast_id": 17, "profile_path": "/jqyhpE74uT5F2H1Ey8LllbKpdAK.jpg", "order": 5}, {"name": "David Gallagher", "character": "Al Pennamin", "id": 59451, "credit_id": "52fe44e3c3a36847f80b0041", "cast_id": 18, "profile_path": "/hae6O5Piq42vqhMW54laujYdejD.jpg", "order": 6}, {"name": "Ashley Buccille", "character": "Glory Pennamin", "id": 106976, "credit_id": "52fe44e3c3a36847f80b0045", "cast_id": 19, "profile_path": "/nZEBfTk32jU8rBHmHn85X2roZsH.jpg", "order": 7}, {"name": "Tony Genaro", "character": "Tito", "id": 166606, "credit_id": "52fe44e3c3a36847f80b0049", "cast_id": 20, "profile_path": "/arYAS4M7YUmIlfx7uGVvB7R38OD.jpg", "order": 8}, {"name": "Sean O'Bryan", "character": "Banes", "id": 33836, "credit_id": "52fe44e3c3a36847f80b004d", "cast_id": 21, "profile_path": "/doVNkZLo1aqfRVfUymkjuTpyUYa.jpg", "order": 9}, {"name": "Michael Milhoan", "character": "Jimmy", "id": 154295, "credit_id": "52fe44e3c3a36847f80b0051", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Troy Evans", "character": "Roger", "id": 31006, "credit_id": "52fe44e3c3a36847f80b0055", "cast_id": 23, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 11}, {"name": "Bruce A. Young", "character": "FBI Agent Jack Hatch", "id": 4943, "credit_id": "52fe44e3c3a36847f80b0059", "cast_id": 24, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 12}, {"name": "Vyto Ruginis", "character": "Ted Rhome", "id": 61216, "credit_id": "52fe44e3c3a36847f80b005d", "cast_id": 25, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 13}, {"name": "Brent Spiner", "character": "Dr. Bob Niedorf", "id": 1213786, "credit_id": "52fe44e3c3a36847f80b0061", "cast_id": 26, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 14}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80afff5", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.1, "runtime": 123}, "1103": {"poster_path": "/tDM7KAAPlyqCsFEX6mQQ5B0mg2Y.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50000000, "overview": "In 1997, the island of Manhattan has been walled off and turned into a giant maximum security prison within which the country's worst criminals are left to form their own anarchic society. However, when the President of the United States crash lands on the island, the authorities turn to a former soldier and current convict, Snake Plissken, to rescue him.", "video": false, "id": 1103, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Escape from New York", "tagline": "1997. New York City is now a maximum security prison. Breaking out is impossible. Breaking in is insane.", "vote_count": 158, "homepage": "http://www.theofficialjohncarpenter.com/pages/themovies/ny/ny.html", "belongs_to_collection": {"backdrop_path": "/u3tHIjkTj8C2gHOTFmzZgEXOQxp.jpg", "poster_path": "/8Zih8QGPJNXUuws0fIZmjxjs2Su.jpg", "id": 115838, "name": "Escape From ... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082340", "adult": false, "backdrop_path": "/iSi3OJKSPNknaxSvjpOa6c38Xgn.jpg", "production_companies": [{"name": "AVCO Embassy Pictures", "id": 494}, {"name": "Goldcrest Films International", "id": 500}, {"name": "International Film Investors", "id": 502}, {"name": "City Film", "id": 664}], "release_date": "1981-06-24", "popularity": 1.03347011186369, "original_title": "Escape from New York", "budget": 6000000, "cast": [{"name": "Kurt Russell", "character": "Snake Plissken", "id": 6856, "credit_id": "52fe42e7c3a36847f802bc09", "cast_id": 11, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Lee Van Cleef", "character": "Police Commissioner Bob Hauk", "id": 4078, "credit_id": "52fe42e7c3a36847f802bc0d", "cast_id": 12, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 1}, {"name": "Ernest Borgnine", "character": "Cabbie", "id": 7502, "credit_id": "52fe42e7c3a36847f802bc11", "cast_id": 13, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 2}, {"name": "Donald Pleasence", "character": "President of the United States", "id": 9221, "credit_id": "52fe42e7c3a36847f802bc15", "cast_id": 14, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 3}, {"name": "Isaac Hayes", "character": "The Duke of New York", "id": 6542, "credit_id": "52fe42e7c3a36847f802bc19", "cast_id": 15, "profile_path": "/4igh7emwzt4xBLw1r05gCUHxwzD.jpg", "order": 4}, {"name": "Harry Dean Stanton", "character": "Harold 'Brain' Helman", "id": 5048, "credit_id": "52fe42e7c3a36847f802bc1d", "cast_id": 16, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 5}, {"name": "Adrienne Barbeau", "character": "Maggie", "id": 11782, "credit_id": "52fe42e7c3a36847f802bc21", "cast_id": 17, "profile_path": "/vKZpJlrGLK4qFTTnWFa6LMH2FMc.jpg", "order": 6}, {"name": "Tom Atkins", "character": "Rehme", "id": 11784, "credit_id": "52fe42e7c3a36847f802bc25", "cast_id": 18, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 7}, {"name": "Frank Doubleday", "character": "Romero", "id": 15449, "credit_id": "52fe42e7c3a36847f802bc29", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "John Strobel", "character": "Cronenberg", "id": 15450, "credit_id": "52fe42e7c3a36847f802bc2d", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Season Hubley", "character": "Girl in Chock Full O'Nuts", "id": 47456, "credit_id": "52fe42e7c3a36847f802bc49", "cast_id": 25, "profile_path": "/utFwpdBfrBujcB4y087ZkmGizQB.jpg", "order": 10}, {"name": "Charles Cyphers", "character": "Secretary of State", "id": 11786, "credit_id": "52fe42e7c3a36847f802bc4d", "cast_id": 26, "profile_path": "/pglMfoHMVEcziDlnl33DrZjRSM3.jpg", "order": 11}, {"name": "John Cothran, Jr.", "character": "Gypsy #1", "id": 9785, "credit_id": "52fe42e7c3a36847f802bc51", "cast_id": 27, "profile_path": "/bbm2ihEzSwu98YCEZSaYOfiGhEH.jpg", "order": 12}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802bc39", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.4, "runtime": 99}, "9296": {"poster_path": "/jU6Ay23RBpSsu82SP5eEhcQowE5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The career of a disillusioned producer, who is desperate for a hit, is endangered when his star walks off the film set. Forced to think fast, the producer decides to digitally create an actress \"Simone\" to sub for the star--the first totally believable synthetic actress.", "video": false, "id": 9296, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "S1m0ne", "tagline": "", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0258153", "adult": false, "backdrop_path": "/mpV46pUGLyQNkd2ouYJhuSn9xLu.jpg", "production_companies": [{"name": "Niccol Films", "id": 27465}, {"name": "New Line Cinema", "id": 12}], "release_date": "2002-08-23", "popularity": 0.222149492692084, "original_title": "S1m0ne", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Viktor Taransky", "id": 1158, "credit_id": "52fe44e3c3a36847f80b0127", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Rachel Roberts", "character": "Simone", "id": 35198, "credit_id": "52fe44e3c3a36847f80b012b", "cast_id": 2, "profile_path": "/70ICch4alwBoHAYygFzmIi6cwcE.jpg", "order": 1}, {"name": "Catherine Keener", "character": "Elaine Christian", "id": 2229, "credit_id": "52fe44e3c3a36847f80b012f", "cast_id": 3, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 2}, {"name": "Evan Rachel Wood", "character": "Lainey Christian Taransky", "id": 38940, "credit_id": "52fe44e3c3a36847f80b0133", "cast_id": 4, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 3}, {"name": "Jay Mohr", "character": "Hal Sinclair", "id": 12217, "credit_id": "52fe44e3c3a36847f80b0137", "cast_id": 5, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 4}, {"name": "Winona Ryder", "character": "Nicola Anders", "id": 1920, "credit_id": "52fe44e3c3a36847f80b013b", "cast_id": 6, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 5}, {"name": "Jason Schwartzman", "character": "Milton", "id": 17881, "credit_id": "52fe44e3c3a36847f80b013f", "cast_id": 7, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 6}, {"name": "Elias Koteas", "character": "Hank Alano", "id": 13550, "credit_id": "52fe44e3c3a36847f80b0143", "cast_id": 8, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 7}, {"name": "Rebecca Romijn", "character": "Faith", "id": 11008, "credit_id": "52fe44e3c3a36847f80b0147", "cast_id": 9, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 8}, {"name": "James Gleason", "character": "Reporter", "id": 1341053, "credit_id": "53c3b18e0e0a26157c00c14e", "cast_id": 19, "profile_path": "/6FlPgVSga2PSIMUgBEqcPnIWDCf.jpg", "order": 9}, {"name": "Christopher Neiman", "character": "Premiere Audience Member", "id": 1219502, "credit_id": "53c3b1d40e0a26158f00bec7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jolie Jenkins", "character": "Premiere Audience Member", "id": 51753, "credit_id": "53c3b20a0e0a26158900c62e", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Joel Heyman", "character": "Male", "id": 133357, "credit_id": "54807d3e9251416e7b002939", "cast_id": 40, "profile_path": "/kdXW8kNVLz5EV7vvymf2iFt9W3o.jpg", "order": 12}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80b014d", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 5.3, "runtime": 117}, "9297": {"poster_path": "/m0gpGljVAKAHM36BLX0RR4cxrNl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73661010, "overview": "Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.", "video": false, "id": 9297, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Monster House", "tagline": "The House is . . . ALIVE!", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0385880", "adult": false, "backdrop_path": "/xCPq0OXDs7LyFTzOCxanjkyr36l.jpg", "production_companies": [{"name": "ImageMovers", "id": 11395}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2006-08-23", "popularity": 0.708761399411459, "original_title": "Monster House", "budget": 75000000, "cast": [{"name": "Ryan Newman", "character": "Little Girl (voice)", "id": 57189, "credit_id": "52fe44e3c3a36847f80b01b1", "cast_id": 1, "profile_path": "/rJHEGn3vxmC6bjGws7HW9gGH80v.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Nebbercracker (voice)", "id": 884, "credit_id": "52fe44e3c3a36847f80b01b5", "cast_id": 2, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "Mitchel Musso", "character": "Douglas 'DJ' Hartner (voice)", "id": 51583, "credit_id": "52fe44e3c3a36847f80b01b9", "cast_id": 3, "profile_path": "/rMmElJ9TwAFfEAW3Q1ET7Ioi0Fp.jpg", "order": 2}, {"name": "Sam Lerner", "character": "Chowder (voice)", "id": 57191, "credit_id": "52fe44e3c3a36847f80b01bd", "cast_id": 4, "profile_path": "/oypr4XkHHdQphL6XeR78MXMHAL1.jpg", "order": 3}, {"name": "Spencer Locke", "character": "Jenny Bennett (voice)", "id": 57192, "credit_id": "52fe44e3c3a36847f80b01c1", "cast_id": 5, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 4}, {"name": "Catherine O'Hara", "character": "Mom (voice)", "id": 11514, "credit_id": "52fe44e3c3a36847f80b01e9", "cast_id": 12, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 5}, {"name": "Fred Willard", "character": "Dad (voice)", "id": 20753, "credit_id": "52fe44e3c3a36847f80b01ed", "cast_id": 13, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 6}, {"name": "Woody Schultz", "character": "Paramedic #1 (voice)", "id": 42288, "credit_id": "52fe44e3c3a36847f80b01f1", "cast_id": 14, "profile_path": "/AjzkMGiWGnG27W1JTDWDGYn8TP.jpg", "order": 7}, {"name": "Ian McConnel", "character": "Paramedic #2 (voice)", "id": 1077841, "credit_id": "52fe44e3c3a36847f80b01f5", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Maggie Gyllenhaal", "character": "Zee (voice)", "id": 1579, "credit_id": "52fe44e3c3a36847f80b01f9", "cast_id": 16, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 9}, {"name": "Jason Lee", "character": "Bones (voice)", "id": 11662, "credit_id": "52fe44e3c3a36847f80b01fd", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 10}, {"name": "Kevin James", "character": "Officer Landers (voice)", "id": 32895, "credit_id": "52fe44e3c3a36847f80b0201", "cast_id": 18, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 11}, {"name": "Nick Cannon", "character": "Officer Lister (voice)", "id": 36811, "credit_id": "52fe44e3c3a36847f80b0205", "cast_id": 19, "profile_path": "/meQ69JTifJ8nGrcvZUczWcoeryM.jpg", "order": 12}, {"name": "Jon Heder", "character": "Reginald 'Skull' Skulinski (voice)", "id": 53926, "credit_id": "52fe44e3c3a36847f80b0209", "cast_id": 20, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 13}, {"name": "Kathleen Turner", "character": "Constance (voice)", "id": 3391, "credit_id": "52fe44e3c3a36847f80b020d", "cast_id": 21, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 14}, {"name": "Erik Walker", "character": "Bully #1 (voice)", "id": 61403, "credit_id": "52fe44e3c3a36847f80b0211", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Matthew Fahey", "character": "Bully #2 (voice)", "id": 198812, "credit_id": "52fe44e3c3a36847f80b0215", "cast_id": 23, "profile_path": null, "order": 16}], "directors": [{"name": "Gil Kenan", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80b01c7", "profile_path": "/ea6Bo4Ad1FTxeyIsGNxWSFCKuMj.jpg", "id": 57193}], "vote_average": 6.0, "runtime": 91}, "9298": {"poster_path": "/7uhKivL5sy9IL0aR8W4QeD9Et3M.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Ali G unwittingly becomes a pawn in the evil Chancellor's plot to overthrow the Prime Minister of Great Britain. However, instead of bringing the Prime Minister down, Ali is embraced by the nation as the voice of youth and 'realness', making the Prime Minister and his government more popular than ever.", "video": false, "id": 9298, "genres": [{"id": 35, "name": "Comedy"}], "title": "Ali G Indahouse", "tagline": "Me iz introducin a white paper.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0284837", "adult": false, "backdrop_path": "/2bt4g7ZMxuNvVT1PnGf0zRZR94I.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "WT2 Productions", "id": 10462}], "release_date": "2002-03-21", "popularity": 0.731614931015528, "original_title": "Ali G Indahouse", "budget": 0, "cast": [{"name": "Sacha Baron Cohen", "character": "Ali G / Borat", "id": 6730, "credit_id": "52fe44e3c3a36847f80b0241", "cast_id": 1, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Michael Gambon", "character": "Prime Minister", "id": 5658, "credit_id": "53c60ee70e0a267fe5001c09", "cast_id": 21, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 1}, {"name": "Charles Dance", "character": "Deputy Prime Minister David Carlton", "id": 4391, "credit_id": "53c60efc0e0a267ffe001b36", "cast_id": 22, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 2}, {"name": "Kellie Bright", "character": "Julie", "id": 80419, "credit_id": "53c60f0a0e0a267ff4001c38", "cast_id": 23, "profile_path": null, "order": 3}, {"name": "Martin Freeman", "character": "Richard \"Ricky C\" Cunningham", "id": 7060, "credit_id": "53c60f180e0a267ff7001a69", "cast_id": 24, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 4}, {"name": "Rhona Mitra", "character": "Kate Hedges", "id": 25702, "credit_id": "53c60f350e0a267fed001b68", "cast_id": 25, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 5}, {"name": "Barbara New", "character": "Nan", "id": 292249, "credit_id": "53c60f400e0a267fed001b6a", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Emilio Rivera", "character": "Rico", "id": 53257, "credit_id": "52fe44e3c3a36847f80b0245", "cast_id": 2, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 7}, {"name": "Gina La Piana", "character": "Hoochie 1", "id": 57197, "credit_id": "52fe44e3c3a36847f80b0249", "cast_id": 3, "profile_path": null, "order": 8}, {"name": "Dana de Celis", "character": "Hoochie 2", "id": 57198, "credit_id": "52fe44e3c3a36847f80b024d", "cast_id": 4, "profile_path": null, "order": 9}], "directors": [{"name": "Mark Mylod", "department": "Directing", "job": "Director", "credit_id": "52fe44e4c3a36847f80b0253", "profile_path": "/e8besvnWIcbvD8NLjcsi5jmxxOe.jpg", "id": 57199}], "vote_average": 6.3, "runtime": 85}, "9312": {"poster_path": "/bdXWixjWVA7Y03PvW74xufrROiJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122000000, "overview": "For nine generations an evil sorcerer has been victorious in hand-to-hand battle against his mortal enemies. If he wins a tenth Mortal Kombat tournament, desolation and evil will reign over the multiverse forever. To save Earth, three warriors must overcome seemingly insurmountable odds, their own inner demons, and superhuman foes in this action/adventure movie based on one of the most popular video games of all time.", "video": false, "id": 9312, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Mortal Kombat", "tagline": "Nothing In This World Has Prepared You For This.", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qD3efz57VGNywAN4lTvgz3FHnBb.jpg", "poster_path": "/quwcbufZZiTMUjuiGSLKBkWWaga.jpg", "id": 9818, "name": "Mortal Kombat Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113855", "adult": false, "backdrop_path": "/mOIvM0pQA7J9I0Caai0zTPxnE3f.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Threshold Entertainment", "id": 4174}], "release_date": "1995-08-18", "popularity": 0.612254177456663, "original_title": "Mortal Kombat", "budget": 18000000, "cast": [{"name": "Christopher Lambert", "character": "Lord Rayden", "id": 38559, "credit_id": "52fe44e5c3a36847f80b086f", "cast_id": 1, "profile_path": "/sIl2F9LDTjfnAVBxEG5CTtZGuJU.jpg", "order": 0}, {"name": "Robin Shou", "character": "Liu Kang", "id": 57250, "credit_id": "52fe44e5c3a36847f80b0873", "cast_id": 2, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 1}, {"name": "Linden Ashby", "character": "Johnny Cage", "id": 57251, "credit_id": "52fe44e5c3a36847f80b0877", "cast_id": 3, "profile_path": "/sKcRZFXk4o9Y2373s9oofm93NRU.jpg", "order": 2}, {"name": "Cary-Hiroyuki Tagawa", "character": "Shang Tsung", "id": 11398, "credit_id": "52fe44e5c3a36847f80b087b", "cast_id": 4, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 3}, {"name": "Bridgette Wilson", "character": "Sonya Blade", "id": 20751, "credit_id": "52fe44e5c3a36847f80b087f", "cast_id": 5, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 4}, {"name": "Talisa Soto", "character": "Princess Kitana", "id": 10680, "credit_id": "52fe44e5c3a36847f80b0883", "cast_id": 6, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 5}, {"name": "Trevor Goddard", "character": "Kano", "id": 57252, "credit_id": "52fe44e5c3a36847f80b0887", "cast_id": 7, "profile_path": "/5qctMNVCJeJ8RO6W03GGDeRNxJG.jpg", "order": 6}, {"name": "Chris Casamassa", "character": "Scorpion", "id": 57253, "credit_id": "52fe44e5c3a36847f80b088b", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Fran\u00e7ois Petit", "character": "Sub-Zero", "id": 57254, "credit_id": "52fe44e6c3a36847f80b088f", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Keith Cooke", "character": "Reptile", "id": 57255, "credit_id": "52fe44e6c3a36847f80b0893", "cast_id": 10, "profile_path": "/tHpVz33IXT1gOHpp6I4kvnPUkse.jpg", "order": 9}, {"name": "Ed Boon", "character": "Scorpion (Voice)", "id": 57256, "credit_id": "54dacd8ec3a368310200065b", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0899", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.7, "runtime": 101}, "9313": {"poster_path": "/mNbLk9qdBMnzBFWBrjy3Nuw9Ovi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe.", "video": false, "id": 9313, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "The Man in the Iron Mask", "tagline": "For the honor of a king. And the destiny of a country. All for one.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120744", "adult": false, "backdrop_path": "/reKm0xvh7FkuCfNL4eDRmTCn7q0.jpg", "production_companies": [{"name": "United Artists Corporation", "id": 8213}], "release_date": "1998-03-12", "popularity": 0.583966456573637, "original_title": "The Man in the Iron Mask", "budget": 0, "cast": [{"name": "Leonardo DiCaprio", "character": "King Louis XIV / Philippe", "id": 6193, "credit_id": "52fe44e6c3a36847f80b0935", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Aramis", "id": 16940, "credit_id": "52fe44e6c3a36847f80b0939", "cast_id": 2, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "G\u00e9rard Depardieu", "character": "Porthos", "id": 16927, "credit_id": "52fe44e6c3a36847f80b093d", "cast_id": 4, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 2}, {"name": "Gabriel Byrne", "character": "D'Artagnan", "id": 5168, "credit_id": "52fe44e6c3a36847f80b0941", "cast_id": 5, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 3}, {"name": "John Malkovich", "character": "Athos", "id": 6949, "credit_id": "52fe44e6c3a36847f80b0987", "cast_id": 18, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Anne Parillaud", "character": "Queen Mother Anne", "id": 57298, "credit_id": "52fe44e6c3a36847f80b098b", "cast_id": 19, "profile_path": "/vk3C8it70D5xESQz47821xhWkAU.jpg", "order": 5}, {"name": "Judith Godr\u00e8che", "character": "Christine", "id": 73937, "credit_id": "52fe44e6c3a36847f80b098f", "cast_id": 20, "profile_path": "/mbIrbBymdMVZIaNv0bDGUXKV7p7.jpg", "order": 6}, {"name": "Edward Atterton", "character": "Lt. Andre", "id": 38331, "credit_id": "52fe44e6c3a36847f80b0993", "cast_id": 21, "profile_path": "/z8hU2rgSYrhVuLdhQArlKPfrzCy.jpg", "order": 7}, {"name": "Peter Sarsgaard", "character": "Raoul", "id": 133, "credit_id": "52fe44e6c3a36847f80b0997", "cast_id": 22, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 8}, {"name": "Hugh Laurie", "character": "King's Advisor", "id": 41419, "credit_id": "52fe44e6c3a36847f80b099b", "cast_id": 23, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 9}, {"name": "David Lowe", "character": "King's Advisor", "id": 180906, "credit_id": "52fe44e6c3a36847f80b099f", "cast_id": 24, "profile_path": "/ljFTdKSae3dhdnijz1lyOitdNpz.jpg", "order": 10}, {"name": "Brigitte Boucher", "character": "Madame Rotund", "id": 553208, "credit_id": "52fe44e6c3a36847f80b09a3", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Matthew Jocelyn", "character": "Assassin", "id": 553209, "credit_id": "52fe44e6c3a36847f80b09a7", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Karine Belly", "character": "Wench", "id": 146490, "credit_id": "52fe44e6c3a36847f80b09ab", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Emmanuel Guttierez", "character": "King's Friend", "id": 553210, "credit_id": "52fe44e6c3a36847f80b09af", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Christian Erickson", "character": "Ballroom Guard", "id": 45849, "credit_id": "52fe44e6c3a36847f80b09b3", "cast_id": 29, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 15}, {"name": "Fran\u00e7ois Montagut", "character": "Blond Musketeer", "id": 105355, "credit_id": "52fe44e6c3a36847f80b09b7", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Andrew Wallace", "character": "Peasant Boy", "id": 553211, "credit_id": "52fe44e6c3a36847f80b09bb", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "C\u00e9cile Auclert", "character": "Serving Woman", "id": 553212, "credit_id": "52fe44e6c3a36847f80b09bf", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Sonia Backers", "character": "Serving Woman", "id": 553213, "credit_id": "52fe44e6c3a36847f80b09c3", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Vincent Nemeth", "character": "Customer", "id": 230078, "credit_id": "52fe44e6c3a36847f80b09c7", "cast_id": 34, "profile_path": "/e2uRhuzOopokatHFYFHap0r72af.jpg", "order": 20}, {"name": "Joe Sheridan", "character": "Fortress Keeper", "id": 12983, "credit_id": "52fe44e6c3a36847f80b09cb", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Olivier H\u00e9mon", "character": "Fortress Head Guard", "id": 133735, "credit_id": "52fe44e6c3a36847f80b09cf", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Michael Morris", "character": "Bastille Gate Guard", "id": 212390, "credit_id": "52fe44e6c3a36847f80b09d3", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Emmanuel Patron", "character": "Fortress Guard", "id": 553214, "credit_id": "52fe44e6c3a36847f80b09d7", "cast_id": 38, "profile_path": "/k9qQ7h8YGRHUZf2XRG45SafdQMS.jpg", "order": 24}, {"name": "Leonor Varela", "character": "Ballroom Beauty", "id": 10839, "credit_id": "52fe44e6c3a36847f80b09db", "cast_id": 39, "profile_path": "/rXn3ruoRRSplCyeNXs7z9BMxHAb.jpg", "order": 25}, {"name": "Michael Hofland", "character": "Ruffian", "id": 180969, "credit_id": "52fe44e6c3a36847f80b09df", "cast_id": 40, "profile_path": null, "order": 26}, {"name": "Laura Fraser", "character": "Bedroom Beauty", "id": 42279, "credit_id": "52fe44e6c3a36847f80b09e3", "cast_id": 41, "profile_path": "/umgqZQNAqE78jFfg1H1nPtaO41Y.jpg", "order": 27}, {"name": "Brigitte Auber", "character": "Queen Mother's Attendant", "id": 5183, "credit_id": "52fe44e6c3a36847f80b09e7", "cast_id": 42, "profile_path": "/yopJUGz9G5bbJKMRQnC6R27SXtc.jpg", "order": 28}, {"name": "Jean-Pol Brissart", "character": "Monk", "id": 553215, "credit_id": "52fe44e6c3a36847f80b09eb", "cast_id": 43, "profile_path": null, "order": 29}, {"name": "Fran\u00e7ois Guillaume", "character": "Ponceau (uncredited)", "id": 19375, "credit_id": "52fe44e6c3a36847f80b09ef", "cast_id": 44, "profile_path": null, "order": 30}], "directors": [{"name": "Randall Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0947", "profile_path": "/sHaZ1TAca9o8f4m8obTOt4p7tlg.jpg", "id": 2460}], "vote_average": 6.0, "runtime": 132}, "9314": {"poster_path": "/asqIqgy3lywRhrVv6WCdcofNWH1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "George Orwell's novel of a totalitarian future society in which a man whose daily work is rewriting history tries to rebel by falling in love.", "video": false, "id": 9314, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "1984", "tagline": "George Orwell's Terrifying Vision Comes To The Screen.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087803", "adult": false, "backdrop_path": "/7BT2nyL1UgvWnpMHCB6FxJUFzTR.jpg", "production_companies": [{"name": "Umbrella-Rosenblum Film Production", "id": 9998}], "release_date": "1984-10-10", "popularity": 0.749711044911128, "original_title": "Nineteen Eighty-Four", "budget": 0, "cast": [{"name": "John Hurt", "character": "Winston Smith", "id": 5049, "credit_id": "52fe44e6c3a36847f80b0a23", "cast_id": 1, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 0}, {"name": "Richard Burton", "character": "O'Brien", "id": 5341, "credit_id": "52fe44e6c3a36847f80b0a27", "cast_id": 2, "profile_path": "/fRoBAQQP9sfnIYuqw546yFs3qKn.jpg", "order": 1}, {"name": "Suzanna Hamilton", "character": "Julia", "id": 10652, "credit_id": "52fe44e6c3a36847f80b0a2b", "cast_id": 3, "profile_path": "/ei41XX9AYpFFTk36t0mD3KYs4bg.jpg", "order": 2}, {"name": "Cyril Cusack", "character": "Charrington", "id": 4973, "credit_id": "52fe44e6c3a36847f80b0a2f", "cast_id": 4, "profile_path": "/5d6OeKNqpRSMhwXd1FHV9KeX4WS.jpg", "order": 3}, {"name": "Gregor Fisher", "character": "Parsons", "id": 7053, "credit_id": "52fe44e6c3a36847f80b0a81", "cast_id": 18, "profile_path": "/reJh7YHXEfdvY6dVHyzXOP7eNhs.jpg", "order": 4}, {"name": "James Walker", "character": "Syme", "id": 208920, "credit_id": "52fe44e6c3a36847f80b0a85", "cast_id": 19, "profile_path": "/spCx7vRlcYpVDWGKhSM50kMNePt.jpg", "order": 5}, {"name": "Andrew Wilde", "character": "Tillotson", "id": 26861, "credit_id": "52fe44e6c3a36847f80b0a89", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "David Cann", "character": "Martin", "id": 193340, "credit_id": "52fe44e6c3a36847f80b0a8d", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Peter Frye", "character": "Rutherford", "id": 201587, "credit_id": "52fe44e6c3a36847f80b0a91", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Roger Lloyd-Pack", "character": "Waiter (as Roger Lloyd Pack)", "id": 81024, "credit_id": "52fe44e6c3a36847f80b0a95", "cast_id": 23, "profile_path": "/6hWATATAe2Tv7v2EKefdjfAaI7.jpg", "order": 9}, {"name": "David Trevena", "character": "Tillotson's Friend", "id": 1406994, "credit_id": "54a41c9692514118600051ec", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Anthony Benson", "character": "Jones", "id": 1406997, "credit_id": "54a41cbec3a368764f00ee34", "cast_id": 25, "profile_path": null, "order": 11}], "directors": [{"name": "Michael Radford", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0a35", "profile_path": "/bhKe3gIvinv8rBgyxdLsQbuZ6Gv.jpg", "id": 28898}], "vote_average": 6.8, "runtime": 113}, "9315": {"poster_path": "/pZetr5lKqN12sRLDvgW7UUxfYtj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 223387299, "overview": "A claustrophobic, Hitchcockian thriller. A bereaved woman and her daughter are flying home from Berlin to America. At 30,000 feet the child vanishes and nobody admits she was ever on that plane.", "video": false, "id": 9315, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Flightplan", "tagline": "If Someone Took Everything You Live For... How Far Would You Go To Get It Back?", "vote_count": 203, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0408790", "adult": false, "backdrop_path": "/qSewyN6JIqlmI3HMjKX8Lbfw8T8.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2005-09-23", "popularity": 0.531075059710865, "original_title": "Flightplan", "budget": 55000000, "cast": [{"name": "Jodie Foster", "character": "Kyle Pratt", "id": 1038, "credit_id": "52fe44e6c3a36847f80b0af9", "cast_id": 9, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Peter Sarsgaard", "character": "Carson", "id": 133, "credit_id": "52fe44e6c3a36847f80b0afd", "cast_id": 10, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 1}, {"name": "Sean Bean", "character": "Captain Rich", "id": 48, "credit_id": "52fe44e6c3a36847f80b0b01", "cast_id": 11, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 2}, {"name": "Kate Beahan", "character": "Stephanie", "id": 57278, "credit_id": "52fe44e6c3a36847f80b0b05", "cast_id": 12, "profile_path": "/tuaMd14ArMWImBjKf36RvVQCMYM.jpg", "order": 3}, {"name": "Michael Irby", "character": "Obaid", "id": 124304, "credit_id": "52fe44e6c3a36847f80b0b09", "cast_id": 13, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 4}, {"name": "Assaf Cohen", "character": "Ahmed", "id": 117824, "credit_id": "52fe44e6c3a36847f80b0b0d", "cast_id": 14, "profile_path": "/oomyDwiJ6LxMH6CCx8oyzDC6kZZ.jpg", "order": 5}, {"name": "Erika Christensen", "character": "Fiona", "id": 21711, "credit_id": "52fe44e6c3a36847f80b0b11", "cast_id": 15, "profile_path": "/v68rJrHWLcv49xDFScRK9TYEiFY.jpg", "order": 6}, {"name": "Shane Edelman", "character": "Mr. Loud", "id": 61854, "credit_id": "52fe44e6c3a36847f80b0b15", "cast_id": 16, "profile_path": "/dZlUEZMzoh4kXVvZE3lWdRxLSfI.jpg", "order": 7}, {"name": "Mary Gallagher", "character": "Mrs. Loud", "id": 154166, "credit_id": "52fe44e6c3a36847f80b0b19", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Haley Ramm", "character": "Brittany Loud", "id": 61555, "credit_id": "52fe44e6c3a36847f80b0b1d", "cast_id": 18, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 9}, {"name": "Forrest Landis", "character": "Rhett Loud", "id": 60393, "credit_id": "52fe44e6c3a36847f80b0b21", "cast_id": 19, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 10}, {"name": "Jana Kolesarova", "character": "Claudia", "id": 946328, "credit_id": "52fe44e6c3a36847f80b0b25", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Brent Sexton", "character": "Elias", "id": 159261, "credit_id": "52fe44e6c3a36847f80b0b29", "cast_id": 21, "profile_path": "/6eo32pAnTQkOnkuvDfCeR0CNwOK.jpg", "order": 12}, {"name": "Marlene Lawston", "character": "Julia", "id": 52019, "credit_id": "52fe44e6c3a36847f80b0b2d", "cast_id": 22, "profile_path": "/pYRmhahQG7dWiAc9EyhaPD92oTH.jpg", "order": 13}, {"name": "Judith Scott", "character": "Estella", "id": 44185, "credit_id": "52fe44e6c3a36847f80b0b31", "cast_id": 23, "profile_path": "/8PXHC5SMNyUuNNXgDc6m9yJuQcp.jpg", "order": 14}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0acb", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 6.0, "runtime": 98}, "1124": {"poster_path": "/gv4gXgHAm0nugWaYAHRAYQUurUM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109676311, "overview": "A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.", "video": false, "id": 1124, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Prestige", "tagline": "Are You Watching Closely?", "vote_count": 1392, "homepage": "http://wwws.warnerbros.de/theprestige/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0482571", "adult": false, "backdrop_path": "/c5o7FN2vzI7xlU6IF1y64mgcH9E.jpg", "production_companies": [{"name": "Syncopy", "id": 9996}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Warner Bros.", "id": 6194}, {"name": "Newmarket Productions", "id": 666}], "release_date": "2006-10-19", "popularity": 2.30354072287922, "original_title": "The Prestige", "budget": 40000000, "cast": [{"name": "Hugh Jackman", "character": "Robert Angier", "id": 6968, "credit_id": "52fe42e8c3a36847f802bf27", "cast_id": 11, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Christian Bale", "character": "Alfred Borden", "id": 3894, "credit_id": "52fe42e8c3a36847f802bf2b", "cast_id": 12, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 1}, {"name": "Michael Caine", "character": "Cutter", "id": 3895, "credit_id": "52fe42e8c3a36847f802bf2f", "cast_id": 13, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Olivia Wenscombe", "id": 1245, "credit_id": "52fe42e8c3a36847f802bf33", "cast_id": 14, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Andy Serkis", "character": "Alley", "id": 1333, "credit_id": "52fe42e8c3a36847f802bf37", "cast_id": 15, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 4}, {"name": "David Bowie", "character": "Nikola Tesla", "id": 7487, "credit_id": "52fe42e8c3a36847f802bf3b", "cast_id": 16, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 5}, {"name": "Piper Perabo", "character": "Julia McCullough", "id": 15555, "credit_id": "52fe42e8c3a36847f802bf3f", "cast_id": 17, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 6}, {"name": "Rebecca Hall", "character": "Sarah Borden", "id": 15556, "credit_id": "52fe42e8c3a36847f802bf43", "cast_id": 18, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 7}, {"name": "Daniel Davis", "character": "Judge", "id": 177765, "credit_id": "52fe42e8c3a36847f802bf47", "cast_id": 19, "profile_path": "/f6mEupwpKQGlxk2mKwb0pz1UiFT.jpg", "order": 8}, {"name": "Roger Rees", "character": "Owens", "id": 16407, "credit_id": "52fe42e8c3a36847f802bf4b", "cast_id": 20, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 9}, {"name": "Ricky Jay", "character": "Milton", "id": 10743, "credit_id": "55044ad39251412bfa000ec4", "cast_id": 21, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 10}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe42e8c3a36847f802beed", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.5, "runtime": 130}, "9319": {"poster_path": "/dozUmI5pKcTsNoSpD786zM0X0rm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59509925, "overview": "When the girl that detective Joe Hallenback is protecting gets murdered, the boyfriend of the murdered girl (ex-football player Jimmy Dix) attempts to investigate and solve the case. What they discover is that there is deep seated corruption going on between a crooked politician and the owner of a pro football team.", "video": false, "id": 9319, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "The Last Boy Scout", "tagline": "Everyone had counted them out. But they're about to get back in the game.", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102266", "adult": false, "backdrop_path": "/3BRLjwxF2rmVFedrQkjNdPcd8Uw.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Geffen Pictures", "id": 360}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1991-12-12", "popularity": 0.554648692652294, "original_title": "The Last Boy Scout", "budget": 29000000, "cast": [{"name": "Bruce Willis", "character": "Joe Hallenbeck", "id": 62, "credit_id": "52fe44e7c3a36847f80b0d73", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Damon Wayans", "character": "James Alexander 'Jimmy' Dix", "id": 22675, "credit_id": "52fe44e7c3a36847f80b0d77", "cast_id": 2, "profile_path": "/rQ1KV896Hm0jzLTOdksbHoXh67l.jpg", "order": 1}, {"name": "Chelsea Field", "character": "Sarah Hallenbeck", "id": 27008, "credit_id": "52fe44e7c3a36847f80b0d7b", "cast_id": 3, "profile_path": "/9NnerSpNB4Ro3f3iMRorv1uvYlA.jpg", "order": 2}, {"name": "Noble Willingham", "character": "Sheldon Marcone", "id": 31005, "credit_id": "52fe44e7c3a36847f80b0d7f", "cast_id": 4, "profile_path": "/stdQUjYtyjfuJRgA89DyzkZEyai.jpg", "order": 3}, {"name": "Halle Berry", "character": "Cory", "id": 4587, "credit_id": "52fe44e7c3a36847f80b0d83", "cast_id": 5, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 4}, {"name": "Danielle Harris", "character": "Darian Hallenbeck", "id": 21320, "credit_id": "52fe44e7c3a36847f80b0dc9", "cast_id": 18, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 5}, {"name": "Bruce McGill", "character": "Mike Matthews", "id": 14888, "credit_id": "52fe44e7c3a36847f80b0dcd", "cast_id": 19, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 6}, {"name": "Kim Coates", "character": "Chet", "id": 8335, "credit_id": "52fe44e7c3a36847f80b0dd1", "cast_id": 20, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 7}, {"name": "Taylor Negron", "character": "Milo", "id": 37043, "credit_id": "52fe44e7c3a36847f80b0dd5", "cast_id": 21, "profile_path": "/wk0bOBqw47cMntR7IJvlE9hE372.jpg", "order": 8}, {"name": "Badja Djola", "character": "Alley Thug", "id": 107009, "credit_id": "52fe44e7c3a36847f80b0dd9", "cast_id": 22, "profile_path": "/i5j8WpNKydvBs2Vu3cYJyXNBy3V.jpg", "order": 9}, {"name": "Chelcie Ross", "character": "Senator Baynard", "id": 10486, "credit_id": "52fe44e7c3a36847f80b0ddd", "cast_id": 23, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 10}, {"name": "Joe Santos", "character": "Bessalo", "id": 6774, "credit_id": "52fe44e7c3a36847f80b0de1", "cast_id": 24, "profile_path": "/7D7ddztwCyW1D0DIxNR0JDAWu0d.jpg", "order": 11}, {"name": "Clarence Felder", "character": "McCoskey", "id": 72408, "credit_id": "52fe44e7c3a36847f80b0de5", "cast_id": 25, "profile_path": "/hbioULG0wwkHlXcjXy89eZIPt2J.jpg", "order": 12}, {"name": "Tony Longo", "character": "Big Ray Walston", "id": 13644, "credit_id": "52fe44e7c3a36847f80b0de9", "cast_id": 26, "profile_path": "/iIb28i2pBH8vhPUoZm34Z2MM8D6.jpg", "order": 13}, {"name": "Frank Collison", "character": "Pablo", "id": 1479, "credit_id": "52fe44e7c3a36847f80b0ded", "cast_id": 27, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 14}, {"name": "Bill Medley", "character": "Himself", "id": 197061, "credit_id": "52fe44e7c3a36847f80b0df1", "cast_id": 28, "profile_path": "/gZix2FrZ9Dw4OvAh0Spu8IfRp6Z.jpg", "order": 15}, {"name": "Verne Lundquist", "character": "Himself", "id": 1024638, "credit_id": "52fe44e7c3a36847f80b0df5", "cast_id": 29, "profile_path": "/AkUVqg2rkExTneawEUSYFjYnv8O.jpg", "order": 16}, {"name": "Dick Butkus", "character": "Himself", "id": 94783, "credit_id": "52fe44e7c3a36847f80b0df9", "cast_id": 30, "profile_path": "/eF8Bg3YPzJw9DH1B3QlAJfdsZgH.jpg", "order": 17}, {"name": "Lynn Swann", "character": "Himself", "id": 162693, "credit_id": "52fe44e7c3a36847f80b0dfd", "cast_id": 31, "profile_path": "/hK8KMKumG0kCARGUBmN3P0UrBRN.jpg", "order": 18}, {"name": "Billy Blanks", "character": "Billy Cole", "id": 128191, "credit_id": "52fe44e7c3a36847f80b0e01", "cast_id": 32, "profile_path": "/hkbllU1QR9irZ2AmW0eLelKoZSS.jpg", "order": 19}, {"name": "Ken Kells", "character": "Head Coach", "id": 170134, "credit_id": "52fe44e7c3a36847f80b0e05", "cast_id": 33, "profile_path": "/n0hKRviE0p0I5UqJ5BVJ1gamM15.jpg", "order": 20}, {"name": "Morris Chestnut", "character": "Locker Room Kid", "id": 9779, "credit_id": "52fe44e7c3a36847f80b0e09", "cast_id": 34, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 21}, {"name": "Michael J. Fisher", "character": "Wounded Player", "id": 1077308, "credit_id": "52fe44e7c3a36847f80b0e0d", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Doug Simpson", "character": "Wounded Player", "id": 77746, "credit_id": "52fe44e7c3a36847f80b0e11", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Joe El Rady", "character": "Kid", "id": 1077309, "credit_id": "52fe44e7c3a36847f80b0e15", "cast_id": 37, "profile_path": null, "order": 24}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b0dbf", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.4, "runtime": 105}, "9320": {"poster_path": "/7cJGRajXMU2aYdTbElIl6FtzOl2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48522832, "overview": "British Ministry agent John Steed, under direction from \"Mother\", investigates a diabolical plot by arch-villain Sir August de Wynter to rule the world with his weather control machine. Steed investigates the beautiful Doctor Mrs. Emma Peel, the only suspect, but simultaneously falls for her and joins forces with her to combat Sir August.", "video": false, "id": 9320, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Avengers", "tagline": "Saving the World in Style.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118661", "adult": false, "backdrop_path": "/yq9rfPPFK4SfDvktlvQ0ifhYjwX.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Jerry Weintraub Productions", "id": 2596}], "release_date": "1998-08-13", "popularity": 0.589717290893855, "original_title": "The Avengers", "budget": 60000000, "cast": [{"name": "Ralph Fiennes", "character": "John Steed", "id": 5469, "credit_id": "52fe44e7c3a36847f80b0e6d", "cast_id": 1, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Uma Thurman", "character": "Emma Peel", "id": 139, "credit_id": "52fe44e7c3a36847f80b0e71", "cast_id": 2, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 1}, {"name": "Sean Connery", "character": "Sir August de Wynter", "id": 738, "credit_id": "52fe44e7c3a36847f80b0e75", "cast_id": 3, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 2}, {"name": "Patrick Macnee", "character": "Invisible Jones (voice)", "id": 10662, "credit_id": "52fe44e7c3a36847f80b0e79", "cast_id": 4, "profile_path": "/l5SmR6zmSkKO41vGpjggJYWYAT1.jpg", "order": 3}, {"name": "Jim Broadbent", "character": "Mother", "id": 388, "credit_id": "52fe44e7c3a36847f80b0ead", "cast_id": 13, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 4}, {"name": "Fiona Shaw", "character": "Father", "id": 10981, "credit_id": "52fe44e7c3a36847f80b0eb1", "cast_id": 14, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 5}, {"name": "Eddie Izzard", "character": "Bailey", "id": 1926, "credit_id": "52fe44e7c3a36847f80b0eb5", "cast_id": 15, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 6}, {"name": "Eileen Atkins", "character": "Alice", "id": 20300, "credit_id": "52fe44e7c3a36847f80b0eb9", "cast_id": 16, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 7}, {"name": "John Wood", "character": "Trubshaw", "id": 8937, "credit_id": "52fe44e7c3a36847f80b0ed5", "cast_id": 24, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 8}, {"name": "Carmen Ejogo", "character": "Brenda", "id": 37158, "credit_id": "52fe44e7c3a36847f80b0ebd", "cast_id": 18, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 9}, {"name": "Keeley Hawes", "character": "Tamara", "id": 22809, "credit_id": "52fe44e7c3a36847f80b0ec1", "cast_id": 19, "profile_path": "/l6gt960OMUsX72Ytv2AkogldjNn.jpg", "order": 10}, {"name": "Shaun Ryder", "character": "Donavan", "id": 141549, "credit_id": "52fe44e7c3a36847f80b0ec5", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Nicholas Woodeson", "character": "Dr. Darling", "id": 118617, "credit_id": "52fe44e7c3a36847f80b0ec9", "cast_id": 21, "profile_path": "/sRsmR64H54aYYm2nh7Ra9IssxeT.jpg", "order": 12}, {"name": "Michael Godley", "character": "Butler", "id": 141550, "credit_id": "52fe44e7c3a36847f80b0ecd", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Richard Lumsden", "character": "Boodle's Porter", "id": 141551, "credit_id": "52fe44e7c3a36847f80b0ed1", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Jeremiah S. Chechik", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b0e7f", "profile_path": "/avEcJTGsWFEzxpSOutwhkP3adQ8.jpg", "id": 34682}], "vote_average": 4.9, "runtime": 89}, "9322": {"poster_path": "/mjSe0ehEPaSRMFYF9qVFGpk9ubM.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 5000000, "overview": "A beautiful felon, sentenced to life in prison for the murder of a policeman, is given a second chance - as a secret political assassin controlled by the government.", "video": false, "id": 9322, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "La Femme Nikita", "tagline": "She murders. So she can live.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0100263", "adult": false, "backdrop_path": "/qaTAX69aDbEinfhklbuI76lPO5c.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Cecchi Gori Group Tiger Cinematografica", "id": 371}, {"name": "cechi gori group", "id": 6643}], "release_date": "1990-02-21", "popularity": 0.953611339802046, "original_title": "Nikita", "budget": 0, "cast": [{"name": "Anne Parillaud", "character": "Nikita", "id": 57298, "credit_id": "52fe44e7c3a36847f80b0f85", "cast_id": 1, "profile_path": "/vk3C8it70D5xESQz47821xhWkAU.jpg", "order": 0}, {"name": "Marc Duret", "character": "Rico", "id": 2170, "credit_id": "52fe44e7c3a36847f80b0f89", "cast_id": 2, "profile_path": "/yZu9GrdnBYT0nEwPNPKvbXN9DfE.jpg", "order": 1}, {"name": "Patrick Fontana", "character": "Coyotte", "id": 57299, "credit_id": "52fe44e7c3a36847f80b0f8d", "cast_id": 3, "profile_path": "/aziJvtOrnqeR5VBAzR6NZiEh1TD.jpg", "order": 2}, {"name": "Alain Lathi\u00e8re", "character": "Zap", "id": 57300, "credit_id": "52fe44e7c3a36847f80b0f91", "cast_id": 4, "profile_path": "/kOkWySUk0uZTrzTHiHIysGyTYzW.jpg", "order": 3}, {"name": "Jean Reno", "character": "Victor", "id": 1003, "credit_id": "52fe44e7c3a36847f80b0fd1", "cast_id": 15, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Tch\u00e9ky Karyo", "character": "Bob", "id": 10698, "credit_id": "52fe44e7c3a36847f80b0fd5", "cast_id": 16, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 5}, {"name": "Jean-Hugues Anglade", "character": "Marco", "id": 7037, "credit_id": "52fe44e7c3a36847f80b0fd9", "cast_id": 17, "profile_path": "/iy8Tfcb3Zq1INu1kGm069wccRev.jpg", "order": 6}, {"name": "Jeanne Moreau", "character": "Armande", "id": 14812, "credit_id": "52fe44e7c3a36847f80b0fdd", "cast_id": 18, "profile_path": "/uHJnVwCzehEoz0mIlwN7xkymql8.jpg", "order": 7}, {"name": "Roland Blanche", "character": "Flic interrogatoire", "id": 24763, "credit_id": "52fe44e7c3a36847f80b0fe1", "cast_id": 20, "profile_path": "/ep8T7Ot6sQOCEMJpl9DrR28fv9x.jpg", "order": 8}, {"name": "Jacques Boudet", "character": "le pharmacien", "id": 72090, "credit_id": "52fe44e7c3a36847f80b0fe5", "cast_id": 21, "profile_path": "/fdTqMaB97xTAJf9jvieONBxvoWj.jpg", "order": 9}, {"name": "Jean Bouise", "character": "L'attach\u00e9 ambassade", "id": 2168, "credit_id": "52fe44e7c3a36847f80b0fe9", "cast_id": 22, "profile_path": "/rBFl7KVzK2tax2CUbLtJBFFcBzm.jpg", "order": 10}, {"name": "Philippe du Janerand", "character": "l'ambassadeur / Jules", "id": 550110, "credit_id": "52fe44e7c3a36847f80b0fed", "cast_id": 23, "profile_path": "/h6cm0cwVnaLu3i3KD2AOwxeinPf.jpg", "order": 11}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b0f97", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 7.1, "runtime": 115}, "9323": {"poster_path": "/vTXgUgB4KyntDSUezLljcm1Ol6N.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "In the year 2029, the barriers of our world have been broken down by the net and by cybernetics, but this brings new vulnerability to humans in the form of brain-hacking. When a highly-wanted hacker known as 'The Puppetmaster' begins involving them in politics, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop the Puppetmaster.", "video": false, "id": 9323, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Ghost in the Shell", "tagline": "It Found A Voice... Now It Needs A Body", "vote_count": 237, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xt0E8CHXzLxEoiPqrjZMRrM4Izi.jpg", "poster_path": "/oNi7xxwjEXBGaNJaB9ViJXEm0DF.jpg", "id": 23026, "name": "Ghost in the Shell Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113568", "adult": false, "backdrop_path": "/kcilD5Qavkk9qPYUshROqeqIJPp.jpg", "production_companies": [{"name": "Bandai Visual Company", "id": 528}, {"name": "Kodansha", "id": 6999}], "release_date": "1995-11-18", "popularity": 1.11803174158565, "original_title": "\u653b\u6bbb\u6a5f\u52d5\u968a", "budget": 0, "cast": [{"name": "Atsuko Tanaka", "character": "Major Motoko Kusanagi", "id": 34923, "credit_id": "52fe44e8c3a36847f80b1043", "cast_id": 10, "profile_path": "/tM2mIRVxO7TehX35cpSbDvgEByq.jpg", "order": 0}, {"name": "Iemasa Kayumi", "character": "Puppetmaster", "id": 625, "credit_id": "52fe44e8c3a36847f80b1047", "cast_id": 11, "profile_path": "/doji21RoWXS4gjWkBLyClNicHKW.jpg", "order": 1}, {"name": "Tamio \u00d4ki", "character": "Aramaki", "id": 12199, "credit_id": "535cd8390e0a264fdb004692", "cast_id": 20, "profile_path": "/yRoaWUblTlU98adYjFUNXr9THzv.jpg", "order": 3}, {"name": "Akio \u00d4tsuka", "character": "Bateau", "id": 40451, "credit_id": "533709da9251417d9e0010ce", "cast_id": 14, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 4}, {"name": "K\u00f4ichi Yamadera", "character": "Togusa", "id": 40328, "credit_id": "52fe44e8c3a36847f80b104b", "cast_id": 12, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 5}, {"name": "Mimi Woods", "character": "Major Motoko Kusanagi", "id": 1241849, "credit_id": "53370ab69251417dad00110f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Tom Wyner", "character": "Puppetmaster", "id": 110694, "credit_id": "53370ad79251417da700114f", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "William Knight", "character": "Aramaki", "id": 95571, "credit_id": "53370a7e9251417dad001108", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Richard Epcar", "character": "Bateau", "id": 26993, "credit_id": "53370a209251417dad0010fe", "cast_id": 15, "profile_path": "/jta8SgeUdQ4SmEhhP5UiXleEwgM.jpg", "order": 9}, {"name": "Christopher Joyce", "character": "Togusa", "id": 1305529, "credit_id": "53370a659251417da400114e", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Stephen Apostolina", "character": "Additional Voices", "id": 1340665, "credit_id": "549af5a39251413129001ea0", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Stephen Apostolina", "character": "Additional Voices", "id": 1340665, "credit_id": "549af5d0925141311f001d44", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "Mamoru Oshii", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b100f", "profile_path": "/2MXFEwxLu7gT9vvi5Otx4LQgsvZ.jpg", "id": 12180}], "vote_average": 7.6, "runtime": 83}, "9325": {"poster_path": "/klURaIfwdD4yX5C7s90tq3KtqB8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205843612, "overview": "The Jungle Book follows the ups and downs of the man-cub Mowgli as he makes his way back to the human village with wise panther Bagheera to escape ruthless tiger Shere Khan. Along the way, he meets unforgettable friends and foes including mad King Louie of the Apes, the hypnotic snake Kaa and the loveable, happy-go-lucky bear Baloo, who teaches Mowgli about true friendship.", "video": false, "id": 9325, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Jungle Book", "tagline": "The Jungle is JUMPIN'!", "vote_count": 411, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7F5dqdq8GXhqDpLNX43pODtaevW.jpg", "poster_path": "/3Z4vzPkmnyrLnfFyr5cEHUUT1HN.jpg", "id": 97459, "name": "The Jungle Book Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061852", "adult": false, "backdrop_path": "/c2rWPWDJU6tIEHB9mA0BEmXDkAS.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1967-10-18", "popularity": 1.91302585827176, "original_title": "The Jungle Book", "budget": 4000000, "cast": [{"name": "Phil Harris", "character": "Baloo (voice)", "id": 57329, "credit_id": "52fe44e8c3a36847f80b1087", "cast_id": 1, "profile_path": "/cNfUGziMuqXlrw5i3w1VqugwIt5.jpg", "order": 0}, {"name": "Sebastian Cabot", "character": "Bagheera (voice)", "id": 21877, "credit_id": "52fe44e8c3a36847f80b108b", "cast_id": 2, "profile_path": "/x4xosGUCYnuUQntxgbcZryWaKH6.jpg", "order": 1}, {"name": "Louis Prima", "character": "King Louie (voice)", "id": 57330, "credit_id": "52fe44e8c3a36847f80b108f", "cast_id": 3, "profile_path": "/waoPtdYv7F7aOvrgcVHMK1DnJb4.jpg", "order": 2}, {"name": "George Sanders", "character": "Shere Khan (voice)", "id": 3361, "credit_id": "52fe44e8c3a36847f80b1093", "cast_id": 4, "profile_path": "/6fvK8vUTgSMRvuw77PjjuIOMl6.jpg", "order": 3}, {"name": "Sterling Holloway", "character": "Kaa (voice)", "id": 34759, "credit_id": "52fe44e8c3a36847f80b1097", "cast_id": 5, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 4}, {"name": "J. Pat O'Malley", "character": "Colonel Hathi / Buzzie (voice)", "id": 22602, "credit_id": "52fe44e8c3a36847f80b109b", "cast_id": 6, "profile_path": "/if8jAnsuARxFUy3k7PhaFqzHd9N.jpg", "order": 5}, {"name": "Bruce Reitherman", "character": "Mowgli (voice)", "id": 57331, "credit_id": "52fe44e8c3a36847f80b109f", "cast_id": 7, "profile_path": "/o55cf2g8rawN5cd00AuS2qWFvX3.jpg", "order": 6}, {"name": "Verna Felton", "character": "Elephant (voice)", "id": 67290, "credit_id": "52fe44e8c3a36847f80b10c7", "cast_id": 19, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 7}, {"name": "Clint Howard", "character": "Elephant (voice)", "id": 15661, "credit_id": "52fe44e8c3a36847f80b10cb", "cast_id": 20, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 8}, {"name": "Chad Stuart", "character": "Vulture (voice)", "id": 193778, "credit_id": "52fe44e8c3a36847f80b10cf", "cast_id": 21, "profile_path": "/y5ZOQ75aDDxBfrwPj3NNwXeG3gb.jpg", "order": 9}, {"name": "Lord Tim Hudson", "character": "Vulture (voice)", "id": 951459, "credit_id": "52fe44e8c3a36847f80b10d3", "cast_id": 22, "profile_path": "/6gfzXSEqnKLg4cKZ9cA9VM27M9f.jpg", "order": 10}, {"name": "John Abbott", "character": "Wolf (voice)", "id": 24826, "credit_id": "52fe44e8c3a36847f80b10d7", "cast_id": 23, "profile_path": "/lNF9KUxNbriSVl24rUaswangRSs.jpg", "order": 11}, {"name": "Ben Wright", "character": "Wolf (voice)", "id": 71781, "credit_id": "52fe44e8c3a36847f80b10db", "cast_id": 24, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 12}, {"name": "Darleen Carr", "character": "The Girl (voice)", "id": 102860, "credit_id": "52fe44e8c3a36847f80b10df", "cast_id": 25, "profile_path": "/gTpAqx0G2gkpab7TpbgGpFcBUIJ.jpg", "order": 13}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b10c3", "profile_path": null, "id": 57314}], "vote_average": 6.7, "runtime": 78}, "9326": {"poster_path": "/3TqpkTYiltYsxYatdug6WDgdRKL.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86572238, "overview": "Though she can spin wild tales of passionate romance, novelist Joan Wilder has no life of her own. Then one day adventure comes her way in the form of a mysterious package. It turns out that the parcel is the ransom she'll need to free her abducted sister, so Joan flies to South America to hand it over. But she gets on the wrong bus and winds up hopelessly stranded in the jungle...", "video": false, "id": 9326, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Romancing the Stone", "tagline": "She's a girl from the big city. He's a reckless soldier of fortune. For a fabulous treasure, they share an adventure no one could imagine... or survive.", "vote_count": 134, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5jBCjoc1skU4KvRdLITP49fKFlD.jpg", "poster_path": "/ml0ikDZPzgRNOVBeytHLrDyuYiQ.jpg", "id": 89264, "name": "Romancing the Stone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt0088011", "adult": false, "backdrop_path": "/5MNAokmkK4NPtYJCPmQ2fgErW9n.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "El Corazon Producciones", "id": 2573}, {"name": "Nina Saxon Film Design", "id": 1693}], "release_date": "1984-03-30", "popularity": 0.587565597361882, "original_title": "Romancing the Stone", "budget": 10000000, "cast": [{"name": "Michael Douglas", "character": "Jack T. Colton", "id": 3392, "credit_id": "52fe44e8c3a36847f80b1165", "cast_id": 12, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Kathleen Turner", "character": "Joan Wilder", "id": 3391, "credit_id": "52fe44e8c3a36847f80b1169", "cast_id": 13, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Ralph", "id": 518, "credit_id": "52fe44e8c3a36847f80b116d", "cast_id": 14, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "Zack Norman", "character": "Ira", "id": 57312, "credit_id": "52fe44e8c3a36847f80b1171", "cast_id": 15, "profile_path": null, "order": 3}, {"name": "Alfonso Ar\u00e1u", "character": "Juan", "id": 22767, "credit_id": "52fe44e8c3a36847f80b1175", "cast_id": 16, "profile_path": "/Agw6LyoGlrfJaBvTOQYzdxwUWHh.jpg", "order": 4}, {"name": "Mary Ellen Trainor", "character": "Elaine", "id": 23967, "credit_id": "53c07d370e0a26157f007b1c", "cast_id": 17, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 5}, {"name": "Holland Taylor", "character": "Gloria", "id": 11318, "credit_id": "5424b64ac3a3680887004271", "cast_id": 18, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 6}, {"name": "Eve Smith", "character": "Mrs. Irwin", "id": 1178195, "credit_id": "5424b678c3a3681eca002e6d", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Joe Nesnow", "character": "Super", "id": 140586, "credit_id": "5424b6d70e0a26457600033f", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Joe Nesnow", "character": "Super", "id": 140586, "credit_id": "5424b6e0c3a3680883004614", "cast_id": 21, "profile_path": null, "order": 9}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b1125", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.3, "runtime": 106}, "9327": {"poster_path": "/9LZtLAuuVmNCN1DJrDG2eOPReXv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128769345, "overview": "Eddie Murphy stars as shy Dr. Sherman Klump, a kind, brilliant, 'calorifically challenged' genetic professor. When beautiful Carla Purty joins the university faculty, Sherman grows desperate to whittle his 400-pound frame down to size and win her heart. So, with one swig of his experimental fat-reducing serum, Sherman becomes 'Buddy Love', a fast-talking, pumped-up , plumped down Don Juan.", "video": false, "id": 9327, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "The Nutty Professor", "tagline": "Inside Sherman Klump, a party animal is about to break out.", "vote_count": 113, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mW1NQFOSCwwgk03SpcpwiQEL2Lo.jpg", "poster_path": "/a6zC38ID7EyAflo8tsPDP4IE0Mt.jpg", "id": 86028, "name": "The Nutty Professor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117218", "adult": false, "backdrop_path": "/iF4WbMmMWZi4bFGx5e7WRndfZOz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1996-06-26", "popularity": 0.889665538665426, "original_title": "The Nutty Professor", "budget": 54000000, "cast": [{"name": "Eddie Murphy", "character": "Sherman Klump | Buddy Love", "id": 776, "credit_id": "52fe44e8c3a36847f80b11b5", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Jada Pinkett Smith", "character": "Carla Purty", "id": 9575, "credit_id": "52fe44e8c3a36847f80b11b9", "cast_id": 3, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 1}, {"name": "James Coburn", "character": "Harlan Hartley", "id": 5563, "credit_id": "52fe44e8c3a36847f80b11bd", "cast_id": 4, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 2}, {"name": "Larry Miller", "character": "Dean Richmond", "id": 1211, "credit_id": "52fe44e8c3a36847f80b11c1", "cast_id": 5, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 3}, {"name": "Dave Chappelle", "character": "Reggie Warrington", "id": 4169, "credit_id": "52fe44e8c3a36847f80b11f5", "cast_id": 17, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 4}, {"name": "John Ales", "character": "Jason", "id": 64343, "credit_id": "52fe44e8c3a36847f80b11f9", "cast_id": 18, "profile_path": "/hmu0T2yZSITJX0Wxhja1X7YaV1n.jpg", "order": 5}, {"name": "Patricia Wilson", "character": "Dean's Secretary", "id": 182726, "credit_id": "52fe44e8c3a36847f80b11fd", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Jamal Mixon", "character": "Ernie Klump Jr.", "id": 59019, "credit_id": "52fe44e8c3a36847f80b1201", "cast_id": 20, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 7}, {"name": "Nichole McAuley", "character": "Fit Woman", "id": 1077909, "credit_id": "52fe44e8c3a36847f80b1205", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Hamilton von Watts", "character": "Health Instructor", "id": 154874, "credit_id": "52fe44e8c3a36847f80b1209", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Chao Li Chi", "character": "Asian Man", "id": 995587, "credit_id": "52fe44e8c3a36847f80b120d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Tony Carlin", "character": "Host", "id": 166838, "credit_id": "52fe44e8c3a36847f80b1211", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Quinn Duffy", "character": "Bartender", "id": 179954, "credit_id": "52fe44e8c3a36847f80b1215", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Montell Jordan", "character": "Himself", "id": 154214, "credit_id": "52fe44e8c3a36847f80b1219", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Doug Williams", "character": "Band Leader", "id": 193580, "credit_id": "52fe44e8c3a36847f80b121d", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "David Ramsey", "character": "Student", "id": 116774, "credit_id": "52fe44e8c3a36847f80b1221", "cast_id": 28, "profile_path": "/8ZbdY0yrA4GTg0g9LrrhzDHRRy.jpg", "order": 15}, {"name": "Chaz Lamar Shepherd", "character": "Student", "id": 154176, "credit_id": "52fe44e8c3a36847f80b1225", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Lisa Halpern", "character": "Sad Fat Firl", "id": 937565, "credit_id": "52fe44e8c3a36847f80b1229", "cast_id": 30, "profile_path": null, "order": 17}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b11c7", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 5.5, "runtime": 95}, "9331": {"poster_path": "/avRDucB3FLf1Xz5532hbOYd1giX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 207500000, "overview": "CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.", "video": false, "id": 9331, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Clear and Present Danger", "tagline": "The war of drugs would lead him to the war of power.", "vote_count": 107, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109444", "adult": false, "backdrop_path": "/hM4SlL49CPvltPkVVulyXHlfFjO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "1994-08-02", "popularity": 1.08775280497765, "original_title": "Clear and Present Danger", "budget": 45000000, "cast": [{"name": "Harrison Ford", "character": "Jack Ryan", "id": 3, "credit_id": "52fe44e8c3a36847f80b130f", "cast_id": 14, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Anne Archer", "character": "Cathy Ryan", "id": 10427, "credit_id": "52fe44e8c3a36847f80b12d1", "cast_id": 2, "profile_path": "/zemspOk1FECjvjRWrH6modUgHiL.jpg", "order": 1}, {"name": "Donald Moffat", "character": "President Bennett", "id": 15417, "credit_id": "52fe44e8c3a36847f80b130b", "cast_id": 13, "profile_path": "/s1z6xGV9M1sx1EQdQb1mpU58mqy.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "John Clark", "id": 5293, "credit_id": "52fe44e8c3a36847f80b12cd", "cast_id": 1, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "James Earl Jones", "character": "Admiral James Greer", "id": 15152, "credit_id": "52fe44e8c3a36847f80b1313", "cast_id": 15, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 4}, {"name": "Joaquim de Almeida", "character": "Col. Felix Cortez", "id": 22462, "credit_id": "52fe44e8c3a36847f80b1317", "cast_id": 16, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 5}, {"name": "Henry Czerny", "character": "Robert Ritter", "id": 15319, "credit_id": "52fe44e8c3a36847f80b131b", "cast_id": 17, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 6}, {"name": "Harris Yulin", "character": "James Cutter", "id": 1166, "credit_id": "52fe44e8c3a36847f80b131f", "cast_id": 18, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 7}, {"name": "Miguel Sandoval", "character": "Ernesto Escobedo", "id": 30488, "credit_id": "52fe44e8c3a36847f80b1327", "cast_id": 20, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 9}, {"name": "Benjamin Bratt", "character": "Captain Ramirez", "id": 4589, "credit_id": "52fe44e8c3a36847f80b132b", "cast_id": 21, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 10}, {"name": "Raymond Cruz", "character": "Domingo Chavez", "id": 58650, "credit_id": "52fe44e8c3a36847f80b132f", "cast_id": 22, "profile_path": "/4k0r3xJjgTac5GiJoHDDBVAFYcj.jpg", "order": 11}, {"name": "Dean Jones", "character": "Judge Moore", "id": 40393, "credit_id": "52fe44e8c3a36847f80b1333", "cast_id": 23, "profile_path": "/z2fbeGmyPVmV0aQiHNjjonAwz10.jpg", "order": 12}, {"name": "Thora Birch", "character": "Sally Ryan", "id": 2155, "credit_id": "52fe44e8c3a36847f80b1337", "cast_id": 24, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 13}, {"name": "Ann Magnuson", "character": "Moira Wolfson", "id": 37042, "credit_id": "52fe44e8c3a36847f80b133b", "cast_id": 25, "profile_path": "/ry9H1u1GFbwXiWWolYA63pjBctp.jpg", "order": 14}, {"name": "Hope Lange", "character": "Senator Mayo", "id": 3382, "credit_id": "52fe44e8c3a36847f80b133f", "cast_id": 26, "profile_path": "/4gJtYaS4iAPBgTYVNIMlspAzGSA.jpg", "order": 15}, {"name": "Tom Tammi", "character": "FBI Director Emile Jacobs", "id": 75201, "credit_id": "52fe44e8c3a36847f80b1343", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Ted Raimi", "character": "Satellite Analyst", "id": 11769, "credit_id": "52fe44e8c3a36847f80b1347", "cast_id": 28, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 17}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b1307", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.0, "runtime": 141}, "9333": {"poster_path": "/fkURS96D2ceuocZIBuyiIBGHilF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47267001, "overview": "John Smith is a mysterious stranger who is drawn into a vicious war between two Prohibition-era gangs. In a dangerous game, he switches allegiances from one to another, offering his services to the highest bidder. As the death toll mounts, Smith takes the law into his own hands in a deadly race to stay alive.", "video": false, "id": 9333, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Last Man Standing", "tagline": "In a town with no justice, there is only one law... Every man for himself.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116830", "adult": false, "backdrop_path": "/lD1ukTu3oEHMC4lFMt7Xfj0QaQ1.jpg", "production_companies": [{"name": "Metropolitan Filmexport", "id": 656}, {"name": "New Line Cinema", "id": 12}], "release_date": "1996-09-20", "popularity": 0.654133942480981, "original_title": "Last Man Standing", "budget": 67000000, "cast": [{"name": "Bruce Willis", "character": "John Smith", "id": 62, "credit_id": "52fe44e8c3a36847f80b138f", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Bruce Dern", "character": "Sheriff Ed Galt", "id": 6905, "credit_id": "52fe44e8c3a36847f80b1393", "cast_id": 2, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 1}, {"name": "William Sanderson", "character": "Joe Monday", "id": 590, "credit_id": "52fe44e8c3a36847f80b1397", "cast_id": 3, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Hickey", "id": 4690, "credit_id": "52fe44e8c3a36847f80b139b", "cast_id": 4, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "David Patrick Kelly", "character": "Doyle", "id": 1737, "credit_id": "52fe44e8c3a36847f80b13d5", "cast_id": 14, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 4}, {"name": "Karina Lombard", "character": "Felina", "id": 11068, "credit_id": "52fe44e8c3a36847f80b13d9", "cast_id": 15, "profile_path": "/8uS7dXBJCTQaHQGyTFc2EhB9mKD.jpg", "order": 5}, {"name": "Ned Eisenberg", "character": "Fredo Strozzi", "id": 137529, "credit_id": "52fe44e8c3a36847f80b13dd", "cast_id": 16, "profile_path": "/ohy0wy7JbQCD0qPqtLJ3NcxJ8C8.jpg", "order": 6}, {"name": "Alexandra Powers", "character": "Lucy Kolinski", "id": 131183, "credit_id": "52fe44e8c3a36847f80b13e1", "cast_id": 17, "profile_path": "/bcZFHTddjsAR73j0rlRetktvEIE.jpg", "order": 7}, {"name": "Michael Imperioli", "character": "Giorgio Carmonte", "id": 11486, "credit_id": "52fe44e8c3a36847f80b13e5", "cast_id": 18, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 8}, {"name": "Ken Jenkins", "character": "Captain Tom Pickett", "id": 38570, "credit_id": "52fe44e8c3a36847f80b13e9", "cast_id": 19, "profile_path": "/6w9OgC4nGUfYavC86a3FeeMgUJ4.jpg", "order": 9}, {"name": "R. D. Call", "character": "Jack McCool", "id": 49832, "credit_id": "52fe44e8c3a36847f80b13ed", "cast_id": 20, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 10}, {"name": "Ted Markland", "character": "Deputy Bob", "id": 136195, "credit_id": "52fe44e8c3a36847f80b13f1", "cast_id": 21, "profile_path": "/orBobhJSFxq1TgRM9qKv0lJwV9v.jpg", "order": 11}, {"name": "Leslie Mann", "character": "Wanda", "id": 41087, "credit_id": "52fe44e8c3a36847f80b13f5", "cast_id": 22, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 12}, {"name": "Patrick Kilpatrick", "character": "Finn", "id": 32286, "credit_id": "52fe44e8c3a36847f80b13f9", "cast_id": 23, "profile_path": "/wEu61ecaSkCN1mD4vXf5WlrUKTV.jpg", "order": 13}, {"name": "Luis Contreras", "character": "Comandante Ramirez", "id": 85870, "credit_id": "52fe44e8c3a36847f80b13fd", "cast_id": 24, "profile_path": "/1OZ6UwzgLEFWvHJXyOvZTYuYisq.jpg", "order": 14}, {"name": "Raynor Scheine", "character": "Gas Station Attendant", "id": 21082, "credit_id": "52fe44e8c3a36847f80b1401", "cast_id": 25, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 15}, {"name": "Tiny Ron Taylor", "character": "Jacko the Giant", "id": 98579, "credit_id": "52fe44e8c3a36847f80b1405", "cast_id": 26, "profile_path": "/wSA3KPLbETH9JwyJ8ZvCakb4n8h.jpg", "order": 16}, {"name": "John Paxton", "character": "The Undertaker", "id": 19326, "credit_id": "52fe44e8c3a36847f80b1409", "cast_id": 27, "profile_path": "/bizhhVVs4y8CfHzPfqPYNEvs2eZ.jpg", "order": 17}, {"name": "Michael Cavalieri", "character": "Berto", "id": 112150, "credit_id": "52fe44e8c3a36847f80b140d", "cast_id": 28, "profile_path": "/ckCQxGL1A3NsfwamGXkGOwLcz8d.jpg", "order": 18}, {"name": "Hannes Fritsch", "character": "Santo", "id": 1130949, "credit_id": "52fe44e8c3a36847f80b1411", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Michael Strasser", "character": "Docker", "id": 82687, "credit_id": "52fe44e8c3a36847f80b1415", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Matt O'Toole", "character": "Burke", "id": 79651, "credit_id": "52fe44e8c3a36847f80b1419", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Lin Shaye", "character": "The Madame", "id": 7401, "credit_id": "52fe44e8c3a36847f80b141d", "cast_id": 32, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 22}, {"name": "Larry Holt", "character": "Border Patrolman", "id": 195981, "credit_id": "52fe44e9c3a36847f80b1421", "cast_id": 33, "profile_path": null, "order": 23}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b13a1", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 5.9, "runtime": 101}, "9334": {"poster_path": "/gJ8uUDGfZuFyvuJDhgXh44dYqGh.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164996077, "overview": "In ancient Egypt, peasant Mathayus is hired to exact revenge on the powerful Memnon and the sorceress Cassandra, who are ready to overtake Balthazar's village. Amid betrayals, thieves, abductions and more, Mathayus strives to bring justice to his complicated world.", "video": false, "id": 9334, "genres": [{"id": 12, "name": "Adventure"}], "title": "The Scorpion King", "tagline": "Warrior. Legend. King.", "vote_count": 211, "homepage": "http://www.the-scorpion-king.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/qFVW76HRCJFRtTha1vZO1tjYVQ1.jpg", "id": 116669, "name": "The Scorpion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0277296", "adult": false, "backdrop_path": "/sP386SaCMTCz9ixvHpZtra0df49.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alphaville Films", "id": 11462}, {"name": "Kalima Productions GmbH & Co. KG", "id": 7385}, {"name": "World Wrestling Entertainment (WWE)", "id": 7588}], "release_date": "2002-04-16", "popularity": 1.12014663318143, "original_title": "The Scorpion King", "budget": 60000000, "cast": [{"name": "Dwayne Johnson", "character": "Mathayus", "id": 18918, "credit_id": "52fe44e9c3a36847f80b14c5", "cast_id": 20, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Kelly Hu", "character": "Cassandra", "id": 11024, "credit_id": "52fe44e9c3a36847f80b1469", "cast_id": 4, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 1}, {"name": "Michael Clarke Duncan", "character": "Balthazar", "id": 61981, "credit_id": "52fe44e9c3a36847f80b1465", "cast_id": 3, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 2}, {"name": "Steven Brand", "character": "Memnon", "id": 57340, "credit_id": "52fe44e9c3a36847f80b1461", "cast_id": 2, "profile_path": "/kvXkEJykTVeq9NdBNiW3O4e4AAC.jpg", "order": 3}, {"name": "Bernard Hill", "character": "Philos", "id": 1369, "credit_id": "52fe44e9c3a36847f80b14c1", "cast_id": 19, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 4}, {"name": "Grant Heslov", "character": "Arpid", "id": 31511, "credit_id": "52fe44e9c3a36847f80b14c9", "cast_id": 21, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 5}, {"name": "Peter Facinelli", "character": "Takmet", "id": 56857, "credit_id": "52fe44e9c3a36847f80b14cd", "cast_id": 22, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 6}, {"name": "Ralf M\u00f6ller", "character": "Thorak", "id": 942, "credit_id": "52fe44e9c3a36847f80b14d1", "cast_id": 23, "profile_path": "/hkeBpMT7UAPTARD6fPsG10Ob5Cr.jpg", "order": 7}, {"name": "Branscombe Richmond", "character": "Jesup", "id": 106730, "credit_id": "52fe44e9c3a36847f80b14d5", "cast_id": 24, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 8}, {"name": "Roger Rees", "character": "King Pheron", "id": 16407, "credit_id": "52fe44e9c3a36847f80b14d9", "cast_id": 25, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 9}, {"name": "Sherri Howard", "character": "Queen Isis", "id": 1228834, "credit_id": "52fe44e9c3a36847f80b14dd", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Conrad Roberts", "character": "Chieftain", "id": 33688, "credit_id": "52fe44e9c3a36847f80b14e1", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Joseph Ruskin", "character": "Tribal Leader", "id": 15998, "credit_id": "52fe44e9c3a36847f80b14e5", "cast_id": 28, "profile_path": "/5D0Izyi1qHLhlRWLoXgimfN436.jpg", "order": 12}, {"name": "Esteban Cueto", "character": "Third Akkadian", "id": 60653, "credit_id": "52fe44e9c3a36847f80b14e9", "cast_id": 29, "profile_path": "/jJYm6K3g3lQvic2Sgjh9SPb4FDq.jpg", "order": 13}, {"name": "Nils Allen Stewart", "character": "Torturer", "id": 24968, "credit_id": "52fe44e9c3a36847f80b14ed", "cast_id": 30, "profile_path": null, "order": 14}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b146f", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 5.3, "runtime": 92}, "9335": {"poster_path": "/5qTQfPMJHbCSzVrSiFTkjvBTrt0.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85167639, "overview": "Professional driver Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policymaker and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.", "video": false, "id": 9335, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Transporter 2", "tagline": "The Best In The Business Is Back In The Game.", "vote_count": 354, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qDuTIGAEbxF3jP9zNILLAoxNLpU.jpg", "poster_path": "/5MWCU1Eqc2HB6zZKFrGrgdH4d4M.jpg", "id": 9518, "name": "The Transporter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0388482", "adult": false, "backdrop_path": "/oda7cPvPd1EOcJgWrtiMviybPrp.jpg", "production_companies": [{"name": "Canal Plus", "id": 104}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2005-08-02", "popularity": 1.25385871197087, "original_title": "Transporter 2", "budget": 32000000, "cast": [{"name": "Jason Statham", "character": "Frank Martin", "id": 976, "credit_id": "52fe44e9c3a36847f80b1521", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Amber Valletta", "character": "Audrey Billings", "id": 38425, "credit_id": "52fe44e9c3a36847f80b1525", "cast_id": 2, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 1}, {"name": "Kate Nauta", "character": "Lola", "id": 57346, "credit_id": "52fe44e9c3a36847f80b1529", "cast_id": 3, "profile_path": "/2fZTljbCJm2oxVp5Eq1dm623zid.jpg", "order": 2}, {"name": "Alessandro Gassman", "character": "Gianni Chellini", "id": 57345, "credit_id": "52fe44e9c3a36847f80b1575", "cast_id": 17, "profile_path": "/J5MU9aq4IY96EPwAUErjU6URqO.jpg", "order": 3}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Inspector Tarconi", "id": 7693, "credit_id": "52fe44e9c3a36847f80b157f", "cast_id": 19, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 4}, {"name": "Robert Small", "character": "Government Doctor", "id": 1116654, "credit_id": "52fe44e9c3a36847f80b1583", "cast_id": 20, "profile_path": "/uNFXBnlUH89HcG0FTDg70kCWH4q.jpg", "order": 5}, {"name": "Matthew Modine", "character": "Jefferson Billings", "id": 8654, "credit_id": "52fe44e9c3a36847f80b1587", "cast_id": 21, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 6}, {"name": "Jason Flemyng", "character": "Dimitri", "id": 973, "credit_id": "52fe44e9c3a36847f80b158b", "cast_id": 22, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 7}, {"name": "Keith David", "character": "Stappleton", "id": 65827, "credit_id": "52fe44e9c3a36847f80b158f", "cast_id": 23, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 8}, {"name": "Ron Madoff", "character": "Cop", "id": 1286269, "credit_id": "52fe44e9c3a36847f80b1593", "cast_id": 24, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 9}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b152f", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 6.2, "runtime": 87}, "9336": {"poster_path": "/J1UDZYfVaLJjoIfw0VDmpBZ2Sm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81198894, "overview": "New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney realises that he is enjoying being a police cadet and decides he wants to stay... while Harris decides he wants Mahoney out!", "video": false, "id": 9336, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy", "tagline": "What an Institution!", "vote_count": 112, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087928", "adult": false, "backdrop_path": "/qwEKkJMlywLOq624AUtFH6FxlHO.jpg", "production_companies": [{"name": "The Ladd Company", "id": 7965}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1984-03-22", "popularity": 0.793791282485395, "original_title": "Police Academy", "budget": 4500000, "cast": [{"name": "Steve Guttenberg", "character": "Cadet Carey Mahoney", "id": 26472, "credit_id": "52fe44e9c3a36847f80b15c9", "cast_id": 1, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Kim Cattrall", "character": "Cadet Karen Thompson", "id": 2109, "credit_id": "52fe44e9c3a36847f80b15cd", "cast_id": 2, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 1}, {"name": "G. W. Bailey", "character": "Lt. Thaddeus Harris", "id": 27237, "credit_id": "52fe44e9c3a36847f80b15d1", "cast_id": 3, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 2}, {"name": "Bubba Smith", "character": "Cadet Moses Hightower", "id": 57349, "credit_id": "52fe44e9c3a36847f80b15d5", "cast_id": 4, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 3}, {"name": "Donovan Scott", "character": "Cadet Leslie Barbara", "id": 57350, "credit_id": "52fe44e9c3a36847f80b15df", "cast_id": 6, "profile_path": "/8Gd1PcWF5Qapvzia8pxnsnQrdba.jpg", "order": 4}, {"name": "George Gaynes", "character": "Cmndt. Eric Lassard", "id": 57351, "credit_id": "52fe44e9c3a36847f80b15e3", "cast_id": 7, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 5}, {"name": "Andrew Rubin", "character": "Cadet George Mart\u00edn", "id": 57352, "credit_id": "52fe44e9c3a36847f80b15e7", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "David Graf", "character": "Cadet Eugene Tackleberry", "id": 57353, "credit_id": "52fe44e9c3a36847f80b15eb", "cast_id": 9, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 7}, {"name": "Leslie Easterbrook", "character": "Sgt. Debbie Callahan", "id": 22252, "credit_id": "52fe44e9c3a36847f80b15ef", "cast_id": 10, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 8}, {"name": "Michael Winslow", "character": "Cadet Larvelle Jones", "id": 14672, "credit_id": "52fe44e9c3a36847f80b15f3", "cast_id": 11, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 9}, {"name": "Debralee Scott", "character": "Mrs. Fackler", "id": 57354, "credit_id": "52fe44e9c3a36847f80b15f7", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Bruce Mahler", "character": "Cadet Douglas Fackler", "id": 57356, "credit_id": "52fe44e9c3a36847f80b15fb", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Ted Ross", "character": "Capt. Reed", "id": 57357, "credit_id": "52fe44e9c3a36847f80b15ff", "cast_id": 14, "profile_path": "/d9zdWKzAwNalU0BLwOM0aM2xlww.jpg", "order": 12}, {"name": "Scott Thomson", "character": "Cadet Chad Copeland", "id": 9997, "credit_id": "52fe44e9c3a36847f80b1603", "cast_id": 15, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 13}, {"name": "Brant von Hoffman", "character": "Cadet Kyle Blankes", "id": 57358, "credit_id": "52fe44e9c3a36847f80b1607", "cast_id": 16, "profile_path": "/hbHlNyKhCwAZ6We866OBN86Ibgv.jpg", "order": 14}, {"name": "Marion Ramsey", "character": "Laverne Hooks", "id": 186816, "credit_id": "53c0c2160e0a2615890081ca", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Roger Dunn", "character": "Booking Sergeant", "id": 1351508, "credit_id": "54ff7bfa9251413dab000575", "cast_id": 26, "profile_path": null, "order": 16}], "directors": [{"name": "Hugh Wilson", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b15db", "profile_path": "/bJv33aw4D67SbsKHv9Er0MqEEtT.jpg", "id": 28904}], "vote_average": 6.5, "runtime": 96}, "9339": {"poster_path": "/hsiJ9CsCEkUF63xwcbtaCwXuEF3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237681299, "overview": "A workaholic architect finds a universal remote that allows him to fast-forward and rewind to different parts of his life. Complications arise when the remote starts to overrule his choices.", "video": false, "id": 9339, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Click", "tagline": "What If You Had A Remote... That Controlled Your Universe?", "vote_count": 664, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0389860", "adult": false, "backdrop_path": "/cXR4a7WITJbzkVbWQJ3UVkoK2sd.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Revolution Studios", "id": 497}], "release_date": "2006-06-22", "popularity": 1.20433586194057, "original_title": "Click", "budget": 82500000, "cast": [{"name": "Adam Sandler", "character": "Michael Newman", "id": 19292, "credit_id": "52fe44e9c3a36847f80b16f9", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Donna Newman", "id": 3967, "credit_id": "52fe44e9c3a36847f80b16fd", "cast_id": 2, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Morty", "id": 4690, "credit_id": "52fe44e9c3a36847f80b1701", "cast_id": 3, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "David Hasselhoff", "character": "Ammer", "id": 28238, "credit_id": "52fe44e9c3a36847f80b1705", "cast_id": 4, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 3}, {"name": "Sean Astin", "character": "Bill", "id": 1328, "credit_id": "52fe44e9c3a36847f80b1709", "cast_id": 5, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 4}, {"name": "Katie Cassidy", "character": "Samantha Newman at 27 years old", "id": 55775, "credit_id": "52fe44e9c3a36847f80b175b", "cast_id": 19, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 5}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b170f", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.0, "runtime": 107}, "9340": {"poster_path": "/bZUbpjwnarSHJK40W9sGpyedWhx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61389680, "overview": "A young teenager named Mikey Walsh finds an old treasure map in his father's attic. Hoping to save their homes from demolition, Mikey and his friends Data Wang, Chunk Cohen, and Mouth Devereaux run off on a big quest to find the secret stash of Pirate One-Eyed Willie.", "video": false, "id": 9340, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Goonies", "tagline": "The pirates map, The villainous crooks, The underground caverns, The booby traps, The skeletons, The monster, The lost treasure, and the magic that is... THE GOONIES.", "vote_count": 452, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0089218", "adult": false, "backdrop_path": "/5JFJjrWraRix9uHrDDcWR0NJBvf.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1985-06-06", "popularity": 0.704699614364947, "original_title": "The Goonies", "budget": 19000000, "cast": [{"name": "Sean Astin", "character": "Mikey Walsh", "id": 1328, "credit_id": "52fe44e9c3a36847f80b1797", "cast_id": 1, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Brand Walsh", "id": 16851, "credit_id": "52fe44e9c3a36847f80b179b", "cast_id": 2, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "Jeff Cohen", "character": "Lawrence 'Chunk' Cohen", "id": 57371, "credit_id": "52fe44e9c3a36847f80b179f", "cast_id": 3, "profile_path": "/cd45BDXkwLVODiG5Xyhq7hfMdBq.jpg", "order": 2}, {"name": "Corey Feldman", "character": "Clark 'Mouth' Devereaux", "id": 3034, "credit_id": "52fe44eac3a36847f80b17a3", "cast_id": 4, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 3}, {"name": "Robert Davi", "character": "Jake Fratelli", "id": 2055, "credit_id": "52fe44eac3a36847f80b17a7", "cast_id": 5, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 4}, {"name": "Kerri Green", "character": "Andy Carmichael", "id": 57372, "credit_id": "52fe44eac3a36847f80b17ab", "cast_id": 6, "profile_path": "/pktpAjKGdHfjBY7iavENfn2jxYC.jpg", "order": 5}, {"name": "Jonathan Ke Quan", "character": "Richard 'Data' Wang", "id": 690, "credit_id": "52fe44eac3a36847f80b17f1", "cast_id": 18, "profile_path": "/1cKtw6cBhWPHtjUBiY3si8odVIE.jpg", "order": 6}, {"name": "Joe Pantoliano", "character": "Francis Fratelli", "id": 532, "credit_id": "52fe44eac3a36847f80b17f5", "cast_id": 19, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 7}, {"name": "Anne Ramsey", "character": "Mama Fratelli", "id": 49944, "credit_id": "52fe44eac3a36847f80b17f9", "cast_id": 20, "profile_path": "/24AFp6szxbyExOewAGrQIVJzlmN.jpg", "order": 8}, {"name": "Martha Plimpton", "character": "Stephanie 'Stef' Steinbrenner", "id": 17495, "credit_id": "52fe44eac3a36847f80b17fd", "cast_id": 21, "profile_path": "/4AoCoaH6agenxberK7QenEQigUc.jpg", "order": 9}, {"name": "Steve Antin", "character": "Troy", "id": 42745, "credit_id": "52fe44eac3a36847f80b1801", "cast_id": 22, "profile_path": "/3GVyNtFWsPz2nCxSgCo6WN6H0UN.jpg", "order": 10}, {"name": "John Matuszak", "character": "Sloth", "id": 64120, "credit_id": "52fe44eac3a36847f80b1805", "cast_id": 23, "profile_path": "/AvOqytADHckPxMEFVddrD4FHTU3.jpg", "order": 11}, {"name": "Lupe Ontiveros", "character": "Rosalita", "id": 28779, "credit_id": "52fe44eac3a36847f80b1809", "cast_id": 24, "profile_path": "/7omMwfHNyQ6T2O8Trppbpj8ED2W.jpg", "order": 12}, {"name": "Mary Ellen Trainor", "character": "Mrs. Walsh", "id": 23967, "credit_id": "52fe44eac3a36847f80b180d", "cast_id": 25, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 13}, {"name": "Keith Walker", "character": "Mr. Walsh", "id": 445708, "credit_id": "52fe44eac3a36847f80b1811", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Curtis Hanson", "character": "Mr. Perkins", "id": 323, "credit_id": "52fe44eac3a36847f80b1815", "cast_id": 27, "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "order": 15}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe44eac3a36847f80b17b1", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 7.0, "runtime": 114}, "109418": {"poster_path": "/xVfzcl1fcTDA4T76enoHF80MR4n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 246984278, "overview": "The all-star comedy cast from Grown Ups returns (with some exciting new additions) for more summertime laughs. Lenny (Adam Sandler) has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises: the last day of school.", "video": false, "id": 109418, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grown Ups 2", "tagline": "Just because they're a little older doesn't mean they've grown up.", "vote_count": 483, "homepage": "http://www.sonypictures.com/movies/grownups2", "belongs_to_collection": {"backdrop_path": "/ahlmYgIHI6oye76bgoUtC01mcrC.jpg", "poster_path": "/8m9PIgdP6Nj18P3thsyI70qs76s.jpg", "id": 180546, "name": "Grown Ups Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2191701", "adult": false, "backdrop_path": "/fAKlRJqKjhXqx8QUdFSUSyPgEdH.jpg", "production_companies": [{"name": "Sony Pictures Entertainment (SPE)", "id": 7431}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2013-07-12", "popularity": 1.22844791268435, "original_title": "Grown Ups 2", "budget": 80000000, "cast": [{"name": "Adam Sandler", "character": "Lenny Feder", "id": 19292, "credit_id": "52fe4ab3c3a36847f81dd1fb", "cast_id": 5, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Kevin James", "character": "Eric Lamonsoff", "id": 32895, "credit_id": "52fe4ab3c3a36847f81dd20b", "cast_id": 10, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 1}, {"name": "Chris Rock", "character": "Kurt McKenzie", "id": 2632, "credit_id": "52fe4ab3c3a36847f81dd203", "cast_id": 8, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 2}, {"name": "David Spade", "character": "Marcus Higgins", "id": 60950, "credit_id": "52fe4ab3c3a36847f81dd213", "cast_id": 13, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Roxanne Chase-Feder", "id": 3136, "credit_id": "52fe4ab3c3a36847f81dd1ff", "cast_id": 7, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "Maya Rudolph", "character": "Deanne McKenzie", "id": 52792, "credit_id": "52fe4ab3c3a36847f81dd20f", "cast_id": 12, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 5}, {"name": "Maria Bello", "character": "Sally Lamonsoff", "id": 49, "credit_id": "52fe4ab3c3a36847f81dd223", "cast_id": 18, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 6}, {"name": "Alexys Nycole Sanchez", "character": "Becky Feder", "id": 1046149, "credit_id": "52fe4ab3c3a36847f81dd217", "cast_id": 15, "profile_path": "/eG4yunVKWzX5GCDRTbaX3RBybhU.jpg", "order": 8}, {"name": "Alex Poncio", "character": "Duffy", "id": 1046150, "credit_id": "52fe4ab3c3a36847f81dd21b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Steve Buscemi", "character": "Wiley", "id": 884, "credit_id": "52fe4ab3c3a36847f81dd21f", "cast_id": 17, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 10}, {"name": "Nick Swardson", "character": "Nick", "id": 32907, "credit_id": "52fe4ab4c3a36847f81dd269", "cast_id": 30, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 11}, {"name": "Colin Quinn", "character": "Dickie Bailey", "id": 1219901, "credit_id": "52fe4ab4c3a36847f81dd31f", "cast_id": 77, "profile_path": "/qKP3sURBluc5NG2g5LrKoVnY5iG.jpg", "order": 12}, {"name": "Tim Meadows", "character": "Malcom", "id": 51857, "credit_id": "52fe4ab4c3a36847f81dd26d", "cast_id": 33, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 13}, {"name": "Jon Lovitz", "character": "Squats Fitness Janitor", "id": 16165, "credit_id": "52fe4ab4c3a36847f81dd271", "cast_id": 34, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 14}, {"name": "Shaquille O'Neal", "character": "Officer Fluzoo", "id": 35806, "credit_id": "52fe4ab4c3a36847f81dd275", "cast_id": 35, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 15}, {"name": "Alexander Ludwig", "character": "Braden", "id": 23498, "credit_id": "52fe4ab4c3a36847f81dd279", "cast_id": 36, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 16}, {"name": "Georgia Engel", "character": "Mrs. Lamonsoff", "id": 52697, "credit_id": "52fe4ab4c3a36847f81dd27d", "cast_id": 37, "profile_path": "/7WfD6MAZtQgT6qIthTDvYzfYj0c.jpg", "order": 17}, {"name": "Peter Dante", "character": "Officer Dante", "id": 20819, "credit_id": "52fe4ab4c3a36847f81dd281", "cast_id": 38, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 18}, {"name": "Oliver Hudson", "character": "Kyle", "id": 62692, "credit_id": "52fe4ab4c3a36847f81dd285", "cast_id": 39, "profile_path": "/hdlPIJyKifjJUat5armDU3bRafM.jpg", "order": 19}, {"name": "Allen Covert", "character": "Hippie Teacher", "id": 20818, "credit_id": "52fe4ab4c3a36847f81dd289", "cast_id": 40, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 20}, {"name": "Steve Austin", "character": "Tommy Cavanugh", "id": 77120, "credit_id": "52fe4ab4c3a36847f81dd28d", "cast_id": 41, "profile_path": "/brwLpcsqly66jchMWjrcrc93siI.jpg", "order": 21}, {"name": "Milo Ventimiglia", "character": "Frat Boy Milo", "id": 16501, "credit_id": "52fe4ab4c3a36847f81dd291", "cast_id": 42, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 22}, {"name": "Jake Goldberg", "character": "Greg Feder", "id": 496591, "credit_id": "52fe4ab4c3a36847f81dd295", "cast_id": 43, "profile_path": "/uPA9EvuZlZuqL3bR0qSynHxs4MJ.jpg", "order": 23}, {"name": "Cameron Bryce", "character": "Keithie Feder", "id": 1271668, "credit_id": "52fe4ab4c3a36847f81dd299", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Ada-Nicole Sanger", "character": "Donna Lamonsoff", "id": 969510, "credit_id": "52fe4ab4c3a36847f81dd29d", "cast_id": 45, "profile_path": "/cIENaDZ7lNedXXDOKeoXqczlgPf.jpg", "order": 25}, {"name": "Frank Gingerich", "character": "Bean Lamonsoff", "id": 1271669, "credit_id": "52fe4ab4c3a36847f81dd2a1", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Morgan Gingerich", "character": "Bean Lamonsoff", "id": 1271670, "credit_id": "52fe4ab4c3a36847f81dd2a5", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Nadji Jeter", "character": "Andre McKenzie", "id": 587035, "credit_id": "52fe4ab4c3a36847f81dd2a9", "cast_id": 48, "profile_path": "/yRSNk2EYupa3Mu5KJXM3VIlkeTG.jpg", "order": 28}, {"name": "China Anne McClain", "character": "Charlotte Mackenzie", "id": 80613, "credit_id": "52fe4ab4c3a36847f81dd2ad", "cast_id": 49, "profile_path": "/xFF0qThpkpUaIh7frUuaYRAwyZq.jpg", "order": 29}, {"name": "Kaleo Elam", "character": "Ronnie Mackenzie", "id": 1271671, "credit_id": "52fe4ab4c3a36847f81dd2b1", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Cheri Oteri", "character": "Penny", "id": 60252, "credit_id": "52fe4ab4c3a36847f81dd2b5", "cast_id": 51, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 31}, {"name": "Ellen Cleghorne", "character": "Mary Fluzoo", "id": 1232807, "credit_id": "52fe4ab4c3a36847f81dd31b", "cast_id": 76, "profile_path": null, "order": 32}, {"name": "April Rose", "character": "Hot Dance Teacher", "id": 1271677, "credit_id": "52fe4ab4c3a36847f81dd2b9", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Dan Patrick", "character": "Gym Teacher", "id": 166029, "credit_id": "52fe4ab4c3a36847f81dd2bd", "cast_id": 54, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 34}, {"name": "Ebony Jo-Ann", "character": "Mama Ronzoni", "id": 142377, "credit_id": "52fe4ab4c3a36847f81dd2c1", "cast_id": 55, "profile_path": "/Ra17Zik0PfabOcHTayW4k8CwB9.jpg", "order": 35}, {"name": "Halston Sage", "character": "Nancy Arbuckle", "id": 934243, "credit_id": "52fe4ab4c3a36847f81dd2c5", "cast_id": 56, "profile_path": "/qS5j5apFwdFdNP4ECoNEU4nLEHm.jpg", "order": 36}, {"name": "Norm Crosby", "character": "Kmart Employee", "id": 88737, "credit_id": "52fe4ab4c3a36847f81dd2c9", "cast_id": 57, "profile_path": "/rWdg52StSxNlIsavgtH4ZrSOwdy.jpg", "order": 37}, {"name": "Melanie Hutsell", "character": "Kmart Mother", "id": 197133, "credit_id": "52fe4ab4c3a36847f81dd2cd", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Jonathan Loughran", "character": "Robideaux", "id": 58477, "credit_id": "52fe4ab4c3a36847f81dd2d1", "cast_id": 59, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 39}, {"name": "Jackie Sandler", "character": "Jackie Tardio", "id": 60959, "credit_id": "52fe4ab4c3a36847f81dd2d5", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Sadie Sandler", "character": "Sadie Tardio", "id": 1202534, "credit_id": "52fe4ab4c3a36847f81dd2d9", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Sunny Sandler", "character": "Sunny Tardio", "id": 1271681, "credit_id": "52fe4ab4c3a36847f81dd2dd", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Chris Berman", "character": "The Great Renaldo", "id": 145881, "credit_id": "52fe4ab4c3a36847f81dd2e1", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Michael Kay", "character": "Coach Romey", "id": 1143597, "credit_id": "52fe4ab4c3a36847f81dd2e5", "cast_id": 64, "profile_path": "/7R23x7b0hTocvolhBzPOro3hoJg.jpg", "order": 44}, {"name": "Richie Minervini", "character": "Principal Tardio", "id": 207005, "credit_id": "52fe4ab4c3a36847f81dd2e9", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Kevin Grady", "character": "Muzby", "id": 963297, "credit_id": "52fe4ab4c3a36847f81dd2ed", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Kamil McFadden", "character": "Bumpty", "id": 1271684, "credit_id": "52fe4ab4c3a36847f81dd2f1", "cast_id": 67, "profile_path": "/wtdSHSw6kUEyNfVPvNR8Wig2rXC.jpg", "order": 47}, {"name": "Andy Samberg", "character": "Male Cheerleader", "id": 62861, "credit_id": "52fe4ab4c3a36847f81dd2f5", "cast_id": 68, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 48}, {"name": "Jorma Taccone", "character": "Male Cheerleader", "id": 62863, "credit_id": "52fe4ab4c3a36847f81dd2f9", "cast_id": 69, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 49}, {"name": "Bobby Moynihan", "character": "Male Cheerleader", "id": 452205, "credit_id": "52fe4ab4c3a36847f81dd2fd", "cast_id": 70, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 50}, {"name": "Akiva Schaffer", "character": "Male Cheerleader", "id": 62854, "credit_id": "52fe4ab4c3a36847f81dd301", "cast_id": 71, "profile_path": "/AndF7ndhBbCgHTicoHjCKDxmoi5.jpg", "order": 51}, {"name": "Erin Heatherton", "character": "Ginger", "id": 1118911, "credit_id": "52fe4ab4c3a36847f81dd305", "cast_id": 72, "profile_path": "/kFUulqawFNnR3fhYplYHUC7MzkL.jpg", "order": 52}, {"name": "Taylor Lautner", "character": "Frat Boy Andy", "id": 84214, "credit_id": "52fe4ab4c3a36847f81dd323", "cast_id": 78, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 53}, {"name": "Patrick Schwarzenegger", "character": "Cooper", "id": 1053422, "credit_id": "52fe4ab4c3a36847f81dd327", "cast_id": 79, "profile_path": "/cUyMEVB8e2zD5UJIEW88Hb3Ejr0.jpg", "order": 54}, {"name": "Jared Sandler", "character": "Frat Boy", "id": 60961, "credit_id": "54ee54dd925141796e004976", "cast_id": 81, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 55}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe4ab3c3a36847f81dd1eb", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.1, "runtime": 100}, "9342": {"poster_path": "/eh59q4ksXDQc97s52FUUQOkE8Th.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 250288523, "overview": "It has been twenty years since Don Diego de la Vega fought Spanish oppression in Alta California as the legendary romantic hero Zorro. Having escaped from prison he transforms troubled bandit Alejandro into his successor, in order to foil the plans of the tyrannical Don Rafael Montero who robbed him of his freedom, his wife, and his precious daughter Elena all those years ago.", "video": false, "id": 9342, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}], "title": "The Mask of Zorro", "tagline": "No one has seen his face... but everyone ... knows this mark.", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AcDbnGiLyBUCW9J4EbYqEIuhokX.jpg", "poster_path": "/ziQDmVR3VE0hC0GDWgaQwz0H3Ff.jpg", "id": 1657, "name": "Zorro Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120746", "adult": false, "backdrop_path": "/734CjgMxoKZ0eTmE0R2WiMZQ5LL.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1998-07-16", "popularity": 1.02568330179795, "original_title": "The Mask of Zorro", "budget": 65000000, "cast": [{"name": "Antonio Banderas", "character": "Alejandro Murrieta / Zorro", "id": 3131, "credit_id": "52fe44eac3a36847f80b193d", "cast_id": 3, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Don Diego de la Vega / Zorro", "id": 4173, "credit_id": "52fe44eac3a36847f80b1941", "cast_id": 4, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Elena Montero / Elena Murrieta", "id": 1922, "credit_id": "52fe44eac3a36847f80b1939", "cast_id": 2, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "Stuart Wilson", "character": "Don Rafael Montero", "id": 14344, "credit_id": "52fe44eac3a36847f80b198d", "cast_id": 17, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 3}, {"name": "Diego Sieres", "character": "Young Joaqu\u00edn Murrieta", "id": 57374, "credit_id": "52fe44eac3a36847f80b1935", "cast_id": 1, "profile_path": null, "order": 4}, {"name": "Jos\u00e9 Mar\u00eda de Tavira", "character": "Young Alejandro Murrieta", "id": 80494, "credit_id": "52fe44eac3a36847f80b1991", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Emiliano Guerra", "character": "Boy Crying", "id": 1077815, "credit_id": "52fe44eac3a36847f80b1995", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Yolanda Orisaga", "character": "Woman Crying", "id": 956973, "credit_id": "52fe44eac3a36847f80b1999", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Paco Morayta", "character": "Undertaker", "id": 83841, "credit_id": "52fe44eac3a36847f80b199d", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "William Marquez", "character": "Fray Felipe", "id": 58637, "credit_id": "52fe44eac3a36847f80b19a1", "cast_id": 22, "profile_path": "/wg8dfUvpeLH7Pwrwsav6yWEUPH2.jpg", "order": 9}, {"name": "Tony Amendola", "character": "Don Luiz", "id": 34842, "credit_id": "52fe44eac3a36847f80b19a5", "cast_id": 23, "profile_path": "/wjft9mXp65SfSo2g3pnLxZUOEzG.jpg", "order": 10}, {"name": "Pedro Altamirano", "character": "Squad Leader", "id": 941030, "credit_id": "52fe44eac3a36847f80b19a9", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Luisa Huertas", "character": "Nanny", "id": 224508, "credit_id": "52fe44eac3a36847f80b19ad", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Mar\u00eda Fern\u00e1ndez Cruz", "character": "Baby Elena de la Vega", "id": 1077816, "credit_id": "52fe44eac3a36847f80b19b1", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Julieta Rosen", "character": "Esperanza de la Vega", "id": 974912, "credit_id": "52fe44eac3a36847f80b19b5", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Ra\u00fal Mart\u00ednez", "character": "Heavyset Lieutenant", "id": 1077818, "credit_id": "52fe44eac3a36847f80b19b9", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Victor Rivers", "character": "Joaqu\u00edn Murrieta", "id": 58648, "credit_id": "52fe44eac3a36847f80b19bd", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "L.Q. Jones", "character": "Three-Fingered Jack", "id": 8262, "credit_id": "52fe44eac3a36847f80b19c1", "cast_id": 31, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 17}, {"name": "Jos\u00e9 P\u00e9rez", "character": "Cpl. Armando Garcia", "id": 109145, "credit_id": "52fe44eac3a36847f80b19c5", "cast_id": 32, "profile_path": "/rON9BAauB6ErVzKKtAln1dE82VZ.jpg", "order": 18}, {"name": "Tony Cabral", "character": "Soldier Holding 'Wanted' Poster", "id": 1031693, "credit_id": "52fe44eac3a36847f80b19c9", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Tony Genaro", "character": "Watering Station Owner", "id": 166606, "credit_id": "52fe44eac3a36847f80b19cd", "cast_id": 34, "profile_path": "/arYAS4M7YUmIlfx7uGVvB7R38OD.jpg", "order": 20}, {"name": "Iv\u00e1n Rafael", "character": "Small Boy at Watering Station", "id": 1077819, "credit_id": "52fe44eac3a36847f80b19d1", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "David Villalpando", "character": "Stupid Soldier", "id": 146797, "credit_id": "52fe44eac3a36847f80b19d5", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Mar\u00eda Fern\u00e1ndez Cruz", "character": "Baby Elena de la Vega", "id": 1077816, "credit_id": "53278f51c3a3683175001255", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "M\u00f3nica Fern\u00e1ndez Cruz", "character": "Baby Elena de la Vega", "id": 1301749, "credit_id": "53278f68c3a36831630011e0", "cast_id": 44, "profile_path": null, "order": 24}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe44eac3a36847f80b1947", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 5.9, "runtime": 136}, "173185": {"poster_path": "/wPOrmnhlfiU3PTRdzmB8DkK2os3.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Alice Lantins is 38, ambitious and so committed to her work that she neglects her personal life. In short, she is the ideal candidate for the next editor of the magazine Rebelle, or would be were it not for the fact that she appears to be stuck in a rut. When Balthazar, a charming 20-year-old, crosses her path, her colleagues begin to see her in a whole new light...", "video": false, "id": 173185, "genres": [{"id": 35, "name": "Comedy"}], "title": "It Boy", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2186812", "adult": false, "backdrop_path": "/5ZQI8fN5iRFqmAIHkHbdS3trU7z.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "TF1", "id": 22123}, {"name": "Echo Films", "id": 7382}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}], "release_date": "2013-03-06", "popularity": 0.176836596596186, "original_title": "20 ans d'\u00e9cart", "budget": 0, "cast": [{"name": "Virginie Efira", "character": "Alice Lantins", "id": 118178, "credit_id": "52fe4d2dc3a36847f8252f1f", "cast_id": 2, "profile_path": "/tsEdSBnqwC4JqwXqjOTNRBmNfmF.jpg", "order": 0}, {"name": "Pierre Niney", "character": "Balthazar Apfel", "id": 145121, "credit_id": "52fe4d2dc3a36847f8252f23", "cast_id": 3, "profile_path": "/g84J44XjdrOsJ9zplB4ClAZpeaB.jpg", "order": 1}, {"name": "Gilles Cohen", "character": "Vincent Khan", "id": 17500, "credit_id": "52fe4d2dc3a36847f8252f27", "cast_id": 4, "profile_path": "/4Iq0KkYMGLXfAmyGXfhPPdRZrmC.jpg", "order": 2}, {"name": "Am\u00e9lie Glenn", "character": "Lise Duch\u00eane", "id": 1073338, "credit_id": "52fe4d2dc3a36847f8252f2b", "cast_id": 5, "profile_path": "/ggZ0UbU81VhcAUyK2t7dTHZVMr6.jpg", "order": 3}, {"name": "Charles Berling", "character": "Luc Apfel", "id": 48576, "credit_id": "52fe4d2dc3a36847f8252f2f", "cast_id": 6, "profile_path": "/5W9uDe33eFYFNOW5lqJVvlzHkzb.jpg", "order": 4}, {"name": "Micha\u00ebl Abiteboul", "character": "Simon Meyer", "id": 224150, "credit_id": "52fe4d2dc3a36847f8252f33", "cast_id": 7, "profile_path": "/h2whvb1GHmiF1FU9KD2DwSEjg7r.jpg", "order": 5}, {"name": "Camille Japy", "character": "Elisabeth Lantins", "id": 35893, "credit_id": "52fe4d2dc3a36847f8252f37", "cast_id": 8, "profile_path": "/xbR1gFPNIAF1Jq0zpYECYxcLYA4.jpg", "order": 6}, {"name": "Diana Stewart", "character": "Tracy Kimmel", "id": 1075112, "credit_id": "52fe4d2ec3a36847f8252f3b", "cast_id": 9, "profile_path": "/xB2EnRPDXhBsm3QgpfXIdlNiFjz.jpg", "order": 7}, {"name": "Camille P\u00e9licier", "character": "Pauline", "id": 1386238, "credit_id": "5469c1c9eaeb816b58002b98", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Jenna Azoulay", "character": "Zo\u00e9", "id": 1386240, "credit_id": "5469c1deeaeb816b46002bec", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Louis-Do de Lencquesaing", "character": "Julien", "id": 230401, "credit_id": "5469c1ef22136e68c7002c40", "cast_id": 18, "profile_path": "/guqKGL4uLouIa4fyCjrq4DmGufe.jpg", "order": 10}, {"name": "Camille Chalons", "character": "Fanny", "id": 1386241, "credit_id": "5469c1ffeaeb816b58002ba3", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Aude P\u00e9pin", "character": "Flora", "id": 1386242, "credit_id": "5469c21922136e68d8002a28", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Arthur Mazet", "character": "Guillaume", "id": 228718, "credit_id": "5469c23ceaeb816b55002e6b", "cast_id": 21, "profile_path": "/32HIGA41JAfCpGX8pvqxLVQouIR.jpg", "order": 13}, {"name": "Sophie-Marie Larrouy", "character": "Cl\u00e9mentine", "id": 1386244, "credit_id": "5469c25022136e68d5002bc1", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Marcella Sbraletta", "character": "Jennifer", "id": 1386246, "credit_id": "5469c267eaeb816b4b002c70", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "David Moreau", "department": "Directing", "job": "Director", "credit_id": "52fe4d2dc3a36847f8252f1b", "profile_path": null, "id": 56735}], "vote_average": 6.1, "runtime": 92}, "9346": {"poster_path": "/cABRMiqw0U7bZvBtryPzuBCsn3f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63500000, "overview": "Meet Joel Goodson, an industrious, college-bound 17-year-old and a responsible, trustworthy son. However, when his parents go away and leave him home alone in the wealthy Chicago suburbs with the Porsche at his disposal he quickly decides he has been good for too long and it is time to enjoy himself. After an unfortunate incident with the Porsche Joel must raise some cash, in a risky way.", "video": false, "id": 9346, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Risky Business", "tagline": "Time of your life, Huh Kid.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086200", "adult": false, "backdrop_path": "/o06wUbxSudBYDSJ8FGUNAdYvSHx.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Geffen Company", "id": 2956}], "release_date": "1983-08-05", "popularity": 0.469500258906764, "original_title": "Risky Business", "budget": 62000000, "cast": [{"name": "Tom Cruise", "character": "Joel Goodsen", "id": 500, "credit_id": "52fe44ebc3a36847f80b1c4b", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Rebecca De Mornay", "character": "Lana", "id": 28412, "credit_id": "52fe44ebc3a36847f80b1c4f", "cast_id": 2, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 1}, {"name": "Joe Pantoliano", "character": "Guido", "id": 532, "credit_id": "52fe44ebc3a36847f80b1c53", "cast_id": 3, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 2}, {"name": "Richard Masur", "character": "Rutherford", "id": 15416, "credit_id": "52fe44ebc3a36847f80b1c57", "cast_id": 4, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 3}, {"name": "Curtis Armstrong", "character": "Miles", "id": 87003, "credit_id": "52fe44ebc3a36847f80b1c79", "cast_id": 13, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 4}, {"name": "Bronson Pinchot", "character": "Barry", "id": 4689, "credit_id": "52fe44ebc3a36847f80b1c7d", "cast_id": 14, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 5}, {"name": "Shera Danese", "character": "Vicki", "id": 1220746, "credit_id": "533bb9f1c3a36844ed000dc7", "cast_id": 15, "profile_path": "/qKIE9ef0cd401qWfrr6Bws0o7qm.jpg", "order": 6}], "directors": [{"name": "Paul Brickman", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1c5d", "profile_path": null, "id": 57383}], "vote_average": 6.1, "runtime": 98}, "140420": {"poster_path": "/xBo8dd2zUbMvcypwScDN3mpN7IZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An urban office worker finds that paper airplanes are instrumental in meeting a girl in ways he never expected.", "video": false, "id": 140420, "genres": [{"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Paperman", "tagline": "", "vote_count": 151, "homepage": "http://www.disneyanimation.com/projects/shorts/paperman/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2388725", "adult": false, "backdrop_path": "/cqn1ynw78Wan37jzs1Ckm7va97G.jpg", "production_companies": [{"name": "Disney", "id": 6421}], "release_date": "2012-11-02", "popularity": 0.969738633616173, "original_title": "Paperman", "budget": 0, "cast": [{"name": "John Kahrs", "character": "George (voice)", "id": 8020, "credit_id": "52fe4a8f9251416c750e6249", "cast_id": 9, "profile_path": null, "order": 0}, {"name": "Kari Wahlgren", "character": "Meg (voice)", "id": 116315, "credit_id": "52fe4a8f9251416c750e6253", "cast_id": 11, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 1}, {"name": "Jeff Turley", "character": "Boss (voice)", "id": 1112515, "credit_id": "52fe4a8e9251416c750e6227", "cast_id": 2, "profile_path": null, "order": 2}], "directors": [{"name": "John Kahrs", "department": "Directing", "job": "Director", "credit_id": "52fe4a8e9251416c750e6223", "profile_path": null, "id": 8020}], "vote_average": 8.4, "runtime": 7}, "9349": {"poster_path": "/zWTLQb41SlEMqPgfQmcsybXyvtP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An American soldier who had been killed during the Vietnam War is revived 25 years later by the military as a semi-android, UniSols, a high-tech soldier of the future. After the failure of the initiative to erase all the soldier's memories, he begins to experience flashbacks that are forcing him to recall his past.", "video": false, "id": 9349, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Universal Soldier", "tagline": "The future has a bad attitude.", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/jAxRrLaMqr3LbvzjISeukJ1x0g4.jpg", "id": 10713, "name": "Universal Soldier Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105698", "adult": false, "backdrop_path": "/wSG78M31C4raIughPjAx1QCLmXZ.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "IndieProd Company Productions", "id": 959}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1992-07-10", "popularity": 0.351818946419377, "original_title": "Universal Soldier", "budget": 0, "cast": [{"name": "Jean-Claude Van Damme", "character": "Luc Devreux/GR44", "id": 15111, "credit_id": "52fe44ebc3a36847f80b1db1", "cast_id": 1, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Dolph Lundgren", "character": "Andrew Scott/GR13", "id": 16644, "credit_id": "52fe44ebc3a36847f80b1db5", "cast_id": 3, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 1}, {"name": "Ally Walker", "character": "Veronica Roberts", "id": 18316, "credit_id": "52fe44ebc3a36847f80b1db9", "cast_id": 5, "profile_path": "/5ktB75N0BEc3IXYBK2xflEYMPfA.jpg", "order": 2}, {"name": "Ed O'Ross", "character": "Colonel Perry", "id": 8658, "credit_id": "52fe44ebc3a36847f80b1dbd", "cast_id": 6, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 3}, {"name": "Ralf M\u00f6ller", "character": "GR76", "id": 942, "credit_id": "52fe44ebc3a36847f80b1dfd", "cast_id": 18, "profile_path": "/hkeBpMT7UAPTARD6fPsG10Ob5Cr.jpg", "order": 4}, {"name": "Jerry Orbach", "character": "Dr. Christopher Gregor", "id": 725, "credit_id": "52fe44ebc3a36847f80b1e01", "cast_id": 19, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 5}, {"name": "Leon Rippy", "character": "Woodward", "id": 15374, "credit_id": "52fe44ebc3a36847f80b1e05", "cast_id": 20, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 6}, {"name": "Tico Wells", "character": "Garth", "id": 103933, "credit_id": "52fe44ebc3a36847f80b1e09", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Robert Trebor", "character": "Motel Owner", "id": 114271, "credit_id": "52fe44ebc3a36847f80b1e0d", "cast_id": 22, "profile_path": "/kbdafrGTyRjrL6lB4jVtoNBSHjK.jpg", "order": 8}, {"name": "Tommy Lister", "character": "GR55", "id": 8396, "credit_id": "52fe44ebc3a36847f80b1e11", "cast_id": 23, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 9}, {"name": "Simon Rhee", "character": "GR61", "id": 158825, "credit_id": "52fe44ebc3a36847f80b1e15", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Rance Howard", "character": "John Devreux", "id": 22250, "credit_id": "54f5cfbb9251412bb6002487", "cast_id": 73, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 11}, {"name": "Lilyan Chauvin", "character": "Mrs. John Devreux", "id": 2072, "credit_id": "54f5cfd99251412bb3002601", "cast_id": 74, "profile_path": "/cL03vrPlSc4RwqydPnPvyCqZpAm.jpg", "order": 12}, {"name": "Thomas Rosales, Jr.", "character": "Wagner", "id": 43010, "credit_id": "54f5d011c3a36835000026b2", "cast_id": 75, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 13}, {"name": "Ned Bellamy", "character": "FBI Agent", "id": 2141, "credit_id": "54f5d0369251412bb6002491", "cast_id": 76, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 14}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1dc3", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.8, "runtime": 102}, "9350": {"poster_path": "/8XefYka77ypAnPJvaVlfUGBBs4a.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 255000000, "overview": "A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers.", "video": false, "id": 9350, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Cliffhanger", "tagline": "The height of adventure.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106582", "adult": false, "backdrop_path": "/t0LyzisNidtm0gjTGWTaQ5WAIGR.jpg", "production_companies": [{"name": "Cliffhanger Productions", "id": 45728}, {"name": "Carolco Pictures", "id": 14723}, {"name": "Canal+", "id": 5358}, {"name": "Pioneer", "id": 45729}, {"name": "RCS Video", "id": 23246}], "release_date": "1993-05-28", "popularity": 2.14083374149063, "original_title": "Cliffhanger", "budget": 65000000, "cast": [{"name": "Sylvester Stallone", "character": "Gabe Walker", "id": 16483, "credit_id": "52fe44ebc3a36847f80b1e55", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "John Lithgow", "character": "Eric Qualen", "id": 12074, "credit_id": "52fe44ebc3a36847f80b1e59", "cast_id": 2, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 1}, {"name": "Michael Rooker", "character": "Hal Tucker", "id": 12132, "credit_id": "52fe44ebc3a36847f80b1e5d", "cast_id": 3, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 2}, {"name": "Janine Turner", "character": "Jessie Deighan", "id": 51580, "credit_id": "52fe44ebc3a36847f80b1e61", "cast_id": 4, "profile_path": "/3VxHcxPzVqRYWIdj8hvp4mDpRbR.jpg", "order": 3}, {"name": "Rex Linn", "character": "Richard Travers", "id": 16937, "credit_id": "52fe44ecc3a36847f80b1ead", "cast_id": 17, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 4}, {"name": "Caroline Goodall", "character": "Kristel - Jet Pilot", "id": 6692, "credit_id": "52fe44ecc3a36847f80b1eb1", "cast_id": 18, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 5}, {"name": "Leon Robinson", "character": "Kynette", "id": 12974, "credit_id": "52fe44ecc3a36847f80b1eb5", "cast_id": 19, "profile_path": "/4i6e0y27mrdz8zBGNiryWV6EFOU.jpg", "order": 6}, {"name": "Craig Fairbrass", "character": "Delmar", "id": 51799, "credit_id": "52fe44ecc3a36847f80b1eb9", "cast_id": 20, "profile_path": "/1IZntbLumM3Ew5LbDaz7tJiISZw.jpg", "order": 7}, {"name": "Gregory Scott Cummins", "character": "Ryan", "id": 44178, "credit_id": "52fe44ecc3a36847f80b1ebd", "cast_id": 21, "profile_path": "/jXJlgaYDCPK8lEyA1mC8mD2hjpG.jpg", "order": 8}, {"name": "Denis Forest", "character": "Heldon", "id": 111078, "credit_id": "52fe44ecc3a36847f80b1ec1", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Michelle Joyner", "character": "Sarah", "id": 30369, "credit_id": "52fe44ecc3a36847f80b1ec5", "cast_id": 23, "profile_path": "/w0HcFkFrhIMBu0CDBNiN5HjZSPy.jpg", "order": 10}, {"name": "Max Perlich", "character": "Evan", "id": 7268, "credit_id": "52fe44ecc3a36847f80b1ec9", "cast_id": 24, "profile_path": "/aITtjR6iSepDooSvVjB1zY5ehYx.jpg", "order": 11}, {"name": "Paul Winfield", "character": "Walter Wright", "id": 1818, "credit_id": "52fe44ecc3a36847f80b1ecd", "cast_id": 25, "profile_path": "/6oc80tWtRg8pRAPXOhV3FQBvBR5.jpg", "order": 12}, {"name": "Ralph Waite", "character": "Frank", "id": 8853, "credit_id": "52fe44ecc3a36847f80b1ed1", "cast_id": 26, "profile_path": "/6djAThCrJarxjKC3AmBJpKsMBLK.jpg", "order": 13}, {"name": "Trey Brownell", "character": "Brett", "id": 948644, "credit_id": "52fe44ecc3a36847f80b1ed5", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1e7f", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.1, "runtime": 112}, "16577": {"poster_path": "/4kQczIhUFTnDWwG6HKsgCxLoi6.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44091067, "overview": "Set in futuristic Metro City, Astro Boy is about a young robot with incredible powers created by a brilliant scientist in the image of the son he has lost. Unable to fulfill the grieving man's expectations, our hero embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before he returns to save Metro City and reconcile with the father who had rejected him.", "video": false, "id": 16577, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Astro Boy", "tagline": "Have a blast.", "vote_count": 158, "homepage": "http://www.astroboy-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375568", "adult": false, "backdrop_path": "/koxKvzuShnLANUXWH1vkJEWigGB.jpg", "production_companies": [{"name": "Tezuka Production Company Ltd.", "id": 3196}, {"name": "Summit Entertainment", "id": 491}, {"name": "Imagi Animation Studios", "id": 3463}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2009-10-22", "popularity": 1.20950501260928, "original_title": "Astro Boy", "budget": 65000000, "cast": [{"name": "Nicolas Cage", "character": "Dr. Tenma (voice)", "id": 2963, "credit_id": "52fe46dd9251416c75086079", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Kristen Bell", "character": "Cora (voice)", "id": 40462, "credit_id": "52fe46dd9251416c7508607d", "cast_id": 2, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Bill Nighy", "character": "Dr. Elefun (voice)", "id": 2440, "credit_id": "52fe46dd9251416c75086081", "cast_id": 3, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 2}, {"name": "Donald Sutherland", "character": "General Stone (voice)", "id": 55636, "credit_id": "52fe46dd9251416c75086085", "cast_id": 4, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 3}, {"name": "Freddie Highmore", "character": "Astro Boy (voice)", "id": 1281, "credit_id": "52fe46dd9251416c75086089", "cast_id": 5, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 4}, {"name": "Eugene Levy", "character": "Orrin (voice)", "id": 26510, "credit_id": "52fe46dd9251416c7508608d", "cast_id": 6, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 5}, {"name": "Sterling Beaumon", "character": "Sludge (voice)", "id": 80641, "credit_id": "52fe46dd9251416c75086091", "cast_id": 7, "profile_path": "/s8uNrpLVeFyNAEGdgHIonCwVSRz.jpg", "order": 6}, {"name": "Nathan Lane", "character": "Ham Egg (voice)", "id": 78729, "credit_id": "52fe46dd9251416c75086095", "cast_id": 8, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Zog (voice)", "id": 2231, "credit_id": "52fe46dd9251416c750860ab", "cast_id": 12, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "Charlize Theron", "character": "Narrator", "id": 6885, "credit_id": "52fe46dd9251416c750860af", "cast_id": 13, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 9}, {"name": "David Alan Grier", "character": "Mr. Squirt / Math Cowboy / Boxer Robot", "id": 58563, "credit_id": "52fe46dd9251416c750860b3", "cast_id": 14, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 10}, {"name": "Alan Tudyk", "character": "Mr. Squeegee / Scrapheap Head / Stinger Two", "id": 21088, "credit_id": "52fe46dd9251416c750860b7", "cast_id": 15, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 11}, {"name": "Newell Alexander", "character": "General Heckler (voice)", "id": 84080, "credit_id": "52fe46dd9251416c750860bb", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Elle Fanning", "character": "Grace (voice)", "id": 18050, "credit_id": "52fe46dd9251416c750860bf", "cast_id": 17, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 13}, {"name": "Pilar Flynn", "character": "Cora's Mom (voice)", "id": 1397895, "credit_id": "55375073c3a36878fd001934", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe46dd9251416c7508609b", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}], "vote_average": 6.1, "runtime": 94}, "9352": {"poster_path": "/pes2HCVX60MNZZdUrKtgVNlv1ig.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20796847, "overview": "Scott Thomas is reluctant when his longtime cyber-buddy from Berlin, Mieke, suggests they meet face-to-face. But when he discovers his pen pal is a gorgeous young woman, Scott embarks with his friends on a trip across Europe. On their wild journey toward Berlin, the buddies meet zealous football hooligans, an overly affectionate Italian and travelogue maven Arthur Frommer.", "video": false, "id": 9352, "genres": [{"id": 35, "name": "Comedy"}], "title": "EuroTrip", "tagline": "No actual Europeans were harmed in the making of this film.", "vote_count": 176, "homepage": "http://www.eurotrip-themovie.com/official_index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0356150", "adult": false, "backdrop_path": "/9pR6mkJrWYCrewjWV1HgaXwL7pB.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Montecito Picture Company, The", "id": 4607}], "release_date": "2004-02-20", "popularity": 0.869177157693055, "original_title": "EuroTrip", "budget": 25000000, "cast": [{"name": "Scott Mechlowicz", "character": "Scott Thomas", "id": 41464, "credit_id": "52fe44ecc3a36847f80b1f1d", "cast_id": 1, "profile_path": "/guAGu4HVNIsDEHfRvkGtPM8ebfh.jpg", "order": 0}, {"name": "Jacob Pitts", "character": "Cooper Harris", "id": 54414, "credit_id": "52fe44ecc3a36847f80b1f21", "cast_id": 2, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 1}, {"name": "Kristin Kreuk", "character": "Fiona", "id": 55751, "credit_id": "52fe44ecc3a36847f80b1f25", "cast_id": 3, "profile_path": "/lR7MPyGFT3nvi79cld387Xdj5Lx.jpg", "order": 2}, {"name": "Cathy Meils", "character": "Mrs. Thomas", "id": 57402, "credit_id": "52fe44ecc3a36847f80b1f29", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Nial Iskhakov", "character": "Bert", "id": 57403, "credit_id": "52fe44ecc3a36847f80b1f2d", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Michelle Trachtenberg", "character": "Jenny", "id": 49961, "credit_id": "52fe44ecc3a36847f80b1f31", "cast_id": 6, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 5}, {"name": "Travis Wester", "character": "Jamie", "id": 57404, "credit_id": "52fe44ecc3a36847f80b1f35", "cast_id": 7, "profile_path": "/3pRPTZ7jhuMJzING7eouoFoqinQ.jpg", "order": 6}, {"name": "Matt Damon", "character": "Donny", "id": 1892, "credit_id": "52fe44ecc3a36847f80b1f39", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 7}, {"name": "Vinnie Jones", "character": "Mad Maynard", "id": 980, "credit_id": "52fe44ecc3a36847f80b1f91", "cast_id": 23, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 8}, {"name": "Diedrich Bader", "character": "Mugger", "id": 5727, "credit_id": "52fe44ecc3a36847f80b1f95", "cast_id": 24, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 9}, {"name": "Lucy Lawless", "character": "Madame Vandersexxx", "id": 20584, "credit_id": "52fe44ecc3a36847f80b1f99", "cast_id": 25, "profile_path": "/wTXMIKm3P0WMF9894Ubgky1mOXu.jpg", "order": 10}, {"name": "Molly Schade", "character": "Candy", "id": 221950, "credit_id": "52fe44ecc3a36847f80b1f9d", "cast_id": 26, "profile_path": "/knyBdQ1XSab4teQJHfu08r6NOs9.jpg", "order": 11}, {"name": "Jessica Boehrs", "character": "Mieke", "id": 946090, "credit_id": "52fe44ecc3a36847f80b1fa1", "cast_id": 27, "profile_path": "/nWZIo3cC6jvLoUpEvyrLGzFf9zL.jpg", "order": 12}, {"name": "Jana Pallaske", "character": "Anna", "id": 20259, "credit_id": "5419b1880e0a266ee30000d5", "cast_id": 28, "profile_path": "/mzeBCXN3vcU6gIc8p7otO85Cbo6.jpg", "order": 13}, {"name": "Dominic Raacke", "character": "Trucker", "id": 32822, "credit_id": "550ec398c3a368488600a294", "cast_id": 29, "profile_path": "/rHMHhPaIjjJHa0IL3KpukJ1vtcV.jpg", "order": 14}, {"name": "Walter Sittler", "character": "Miekes Vater", "id": 36908, "credit_id": "550ec3bb9251410701002a2a", "cast_id": 30, "profile_path": "/fMh2nTKm9IzrC60ZKES41rA0CBe.jpg", "order": 15}, {"name": "David Hasselhoff", "character": "S\u00e4nger", "id": 28238, "credit_id": "550ec3cfc3a3683f0a0027c5", "cast_id": 31, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 16}], "directors": [{"name": "Jeff Schaffer", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b1f3f", "profile_path": "/6xM76XPIpp7IhkR8dCfp8eLRRak.jpg", "id": 57405}], "vote_average": 6.4, "runtime": 93}, "9353": {"poster_path": "/lNue9evMBzqjWE4tJmUegkep8Qs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80197993, "overview": "Nacho Libre is loosely based on the story of Fray Tormenta (\"Friar Storm\"), aka Rev. Sergio Gutierrez Benitez, a real-life Mexican Catholic priest who had a 23-year career as a masked luchador. He competed in order to support the orphanage he directed. The producers are Jack Black, David Klawans, Julia Pistor, and Mike White.", "video": false, "id": 9353, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Nacho Libre", "tagline": "He's not lean. He's not mean. He's nacho average hero.", "vote_count": 95, "homepage": "http://www.nacholibre.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457510", "adult": false, "backdrop_path": "/cb73g9x8mUyxkW0G13wkGo4UoMG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Black & White Productions", "id": 2777}], "release_date": "2006-06-16", "popularity": 0.236340108659254, "original_title": "Nacho Libre", "budget": 32000000, "cast": [{"name": "Jack Black", "character": "Nacho", "id": 70851, "credit_id": "52fe44ecc3a36847f80b1fe7", "cast_id": 4, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Ana de la Reguera", "character": "Sister Encarnaci\u00f3n", "id": 57409, "credit_id": "52fe44ecc3a36847f80b1feb", "cast_id": 5, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 1}, {"name": "H\u00e9ctor Jim\u00e9nez", "character": "Esqueleto", "id": 57410, "credit_id": "52fe44ecc3a36847f80b1fef", "cast_id": 6, "profile_path": "/gdPEBAWjybV1eBp4qvFg2dj410j.jpg", "order": 2}, {"name": "Darius Rose", "character": "Chancho", "id": 57411, "credit_id": "52fe44ecc3a36847f80b1ff3", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Mois\u00e9s Arias", "character": "Juan Pablo", "id": 57412, "credit_id": "52fe44ecc3a36847f80b1ff7", "cast_id": 8, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 4}, {"name": "Carlos Maycotte", "character": "Segundo Nu\u00f1ez", "id": 57413, "credit_id": "52fe44ecc3a36847f80b1ffb", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Richard Montoya", "character": "Guillermo", "id": 57414, "credit_id": "52fe44ecc3a36847f80b1fff", "cast_id": 10, "profile_path": "/6aXusAwLuIEfUvhIlcfp7fPwZJM.jpg", "order": 6}, {"name": "C\u00e9sar Barr\u00f3n", "character": "Ramses", "id": 57415, "credit_id": "52fe44ecc3a36847f80b2003", "cast_id": 11, "profile_path": "/q1Ew2BhMp0ippxKmjYsycVJwdDr.jpg", "order": 7}, {"name": "Rafael Montalvo", "character": "Elderly Monk", "id": 57416, "credit_id": "52fe44ecc3a36847f80b2007", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Julio Sandoval", "character": "Snaggle Tooth Monk", "id": 57417, "credit_id": "52fe44ecc3a36847f80b200b", "cast_id": 13, "profile_path": null, "order": 9}], "directors": [{"name": "Jared Hess", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b1fd7", "profile_path": "/sQsIDQEpPl1ZAUcK6nqRSj4RSZ9.jpg", "id": 53925}], "vote_average": 5.6, "runtime": 92}, "9354": {"poster_path": "/f5eFxKYAd7hN1BxYzBg9qL1SDRe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222724172, "overview": "The scientist father of a teenage girl and boy accidentally shrinks his and two other neighborhood teens to the size of insects. Now the teens must fight diminutive dangers as the father searches for them.", "video": false, "id": 9354, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Honey, I Shrunk the Kids", "tagline": "The most astonishing, innovative, backyard adventure of all time!", "vote_count": 153, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sfT3NqSnjEDY1449qBgQRWOIcaq.jpg", "poster_path": "/xxIwqQARS0RZu5cIENahqZSRw2a.jpg", "id": 72119, "name": "Honey, I Shrunk the Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097523", "adult": false, "backdrop_path": "/5AhzhhWMD7VxjXjvr1Cx3BmPxyj.jpg", "production_companies": [{"name": "Buena Vista", "id": 32}], "release_date": "1989-06-22", "popularity": 0.493546475514099, "original_title": "Honey, I Shrunk the Kids", "budget": 32000000, "cast": [{"name": "Rick Moranis", "character": "Wayne Szalinski", "id": 8872, "credit_id": "52fe44ecc3a36847f80b207b", "cast_id": 1, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 0}, {"name": "Marcia Strassman", "character": "Diane Szalinski", "id": 57418, "credit_id": "52fe44ecc3a36847f80b207f", "cast_id": 2, "profile_path": "/7ZtYDqLLCiqUK4z18H1tKusBQnL.jpg", "order": 1}, {"name": "Matt Frewer", "character": "Russell Thompson Sr.", "id": 40009, "credit_id": "52fe44ecc3a36847f80b2083", "cast_id": 3, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 2}, {"name": "Kristine Sutherland", "character": "Mae Thompson", "id": 57419, "credit_id": "52fe44ecc3a36847f80b2087", "cast_id": 4, "profile_path": "/pQ4N2UPmgNQqlc290MII1OMel2l.jpg", "order": 3}, {"name": "Amy O'Neill", "character": "Amy Szalinski", "id": 57420, "credit_id": "52fe44ecc3a36847f80b208b", "cast_id": 5, "profile_path": "/1lPgxnVACh1PThnW60ivJl5hn7V.jpg", "order": 4}, {"name": "Robert Oliveri", "character": "Nick Szalinski", "id": 1908, "credit_id": "52fe44ecc3a36847f80b208f", "cast_id": 6, "profile_path": "/hakmz3osPPPI1zPXaQjXxkj2avn.jpg", "order": 5}, {"name": "Thomas Wilson Brown", "character": "Russell Thompson Jr.", "id": 57421, "credit_id": "52fe44ecc3a36847f80b2093", "cast_id": 7, "profile_path": "/rFSIqvXMrafOSKhXJDSbiDXarUC.jpg", "order": 6}, {"name": "Jared Rushton", "character": "Ronald Thompson", "id": 57422, "credit_id": "52fe44ecc3a36847f80b2097", "cast_id": 8, "profile_path": "/qbyP9UM7xHEFyrop3XKgb26V55q.jpg", "order": 7}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b20b5", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 5.9, "runtime": 93}, "9355": {"poster_path": "/hFqfWHd5p8uiAdrBRdAs1mopRRa.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 0, "overview": "Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.", "video": false, "id": 9355, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Mad Max Beyond Thunderdome", "tagline": "A lone warrior searching for his destiny...a tribe of lost children waiting for a hero...in a world battling to survive, they face a woman determined to rule.", "vote_count": 147, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rY4F8uRJN3IWsmtFrT7HO4WKUk0.jpg", "poster_path": "/uuvSvLb3ntGA9B0wx2JskVDSuWi.jpg", "id": 8945, "name": "Mad Max Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089530", "adult": false, "backdrop_path": "/r3MhvwPC8zFBAv8HL5WBtl3F8cn.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1985-08-06", "popularity": 2.5733699963742, "original_title": "Mad Max Beyond Thunderdome", "budget": 0, "cast": [{"name": "Mel Gibson", "character": "Mad Max Rockatansky", "id": 2461, "credit_id": "52fe44ecc3a36847f80b2133", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Tina Turner", "character": "Aunty Entity", "id": 1459, "credit_id": "52fe44ecc3a36847f80b2137", "cast_id": 2, "profile_path": "/yhA10YPoQwGWtvd4TUm4X6tkv1x.jpg", "order": 1}, {"name": "Bruce Spence", "character": "Jedediah the Pilot", "id": 27752, "credit_id": "52fe44ecc3a36847f80b213b", "cast_id": 3, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 2}, {"name": "Helen Buday", "character": "Savannah Nix", "id": 57424, "credit_id": "52fe44ecc3a36847f80b213f", "cast_id": 5, "profile_path": "/saALgdtjdNzD89RgF26n0PAmlyX.jpg", "order": 3}, {"name": "Angelo Rossitto", "character": "Master", "id": 97985, "credit_id": "52fe44ecc3a36847f80b2179", "cast_id": 17, "profile_path": "/VY3ygib44431zOtUBEwlnCWJeK.jpg", "order": 4}, {"name": "Adam Cockburn", "character": "Jedediah Jr.", "id": 1001970, "credit_id": "52fe44ecc3a36847f80b219b", "cast_id": 23, "profile_path": "/32ebTXNoGFvUUBbutF6hWAnvifS.jpg", "order": 5}, {"name": "Frank Thring", "character": "The Collector", "id": 10025, "credit_id": "53053fa79251413497069917", "cast_id": 34, "profile_path": "/3IGtuwC2BdyfYlPqwFw1Z2yI7TH.jpg", "order": 6}, {"name": "Paul Larsson", "character": "Blaster", "id": 952227, "credit_id": "52fe44ecc3a36847f80b21a3", "cast_id": 25, "profile_path": "/uC5ULVMAqwgfvbJwZn87VxymV0.jpg", "order": 7}, {"name": "Angry Anderson", "character": "Ironbar", "id": 220829, "credit_id": "52fe44ecc3a36847f80b21a7", "cast_id": 26, "profile_path": "/385d6pnfIdDMDB1H2xyJI6ZDTro.jpg", "order": 8}, {"name": "Robert Grubb", "character": "Pig Killer", "id": 127135, "credit_id": "52fe44ecc3a36847f80b21ab", "cast_id": 27, "profile_path": "/x4D58WbP5KUDHpRx8Y39is6QZHj.jpg", "order": 9}, {"name": "George Spartels", "character": "Blackfinger", "id": 938578, "credit_id": "52fe44ecc3a36847f80b21af", "cast_id": 28, "profile_path": "/2bUmt8QKcOJUJbhNj40iN0dRiZw.jpg", "order": 10}, {"name": "Edwin Hodgeman", "character": "Dr. Dealgood", "id": 79376, "credit_id": "52fe44ecc3a36847f80b21b3", "cast_id": 29, "profile_path": "/cubjtDar7Rmqvft7xEJWYKOIitw.jpg", "order": 11}, {"name": "Bob Hornery", "character": "Waterseller", "id": 187134, "credit_id": "52fe44ecc3a36847f80b21b7", "cast_id": 30, "profile_path": "/mH1PEPL51cq5hhP9ITL2M4PhNNQ.jpg", "order": 12}, {"name": "Andrew Oh", "character": "Ton Ton Tattoo", "id": 1125226, "credit_id": "52fe44ecc3a36847f80b21bb", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Ollie Hall", "character": "Aunty's Guard", "id": 138580, "credit_id": "52fe44ecc3a36847f80b21bf", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Lee Rice", "character": "Aunty's Guard", "id": 1125227, "credit_id": "52fe44ecc3a36847f80b21c3", "cast_id": 33, "profile_path": "/cimuUZEiSBwI3RGpYdknar4UQNZ.jpg", "order": 15}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b2163", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}, {"name": "George Ogilvie", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b2169", "profile_path": null, "id": 57433}], "vote_average": 5.8, "runtime": 107}, "1164": {"poster_path": "/fxneN0EQZwTfAfhTGUvUuIn6PLi.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135330182, "overview": "Tragedy strikes a married couple on vacation in the Moroccan desert, touching off an interlocking story involving four different families.", "video": false, "id": 1164, "genres": [{"id": 18, "name": "Drama"}], "title": "Babel", "tagline": "If You Want to be Understood...Listen", "vote_count": 265, "homepage": "http://www.babelthemovie.ru/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0449467", "adult": false, "backdrop_path": "/uHx9E9xqSgOBoRvL4shmMNu8Ojc.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Anonymous Content", "id": 10039}, {"name": "Zeta Film", "id": 11230}, {"name": "Central Films", "id": 11258}, {"name": "Media Rights Capital", "id": 2531}], "release_date": "2006-09-08", "popularity": 0.912655938376011, "original_title": "Babel", "budget": 25000000, "cast": [{"name": "Brad Pitt", "character": "Richard", "id": 287, "credit_id": "52fe42e9c3a36847f802c221", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Susan", "id": 112, "credit_id": "52fe42e9c3a36847f802c225", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Gael Garc\u00eda Bernal", "character": "Santiago", "id": 258, "credit_id": "52fe42e9c3a36847f802c29d", "cast_id": 36, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 2}, {"name": "Rinko Kikuchi", "character": "Cheiko", "id": 18054, "credit_id": "52fe42e9c3a36847f802c2a1", "cast_id": 40, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 3}, {"name": "Adriana Barraza", "character": "Amelia", "id": 270, "credit_id": "52fe42e9c3a36847f802c299", "cast_id": 33, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 4}, {"name": "Mohamed Akhzam", "character": "Anwar", "id": 17118, "credit_id": "52fe42e9c3a36847f802c27d", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Peter Wight", "character": "Tom", "id": 17476, "credit_id": "52fe42e9c3a36847f802c281", "cast_id": 18, "profile_path": "/cjERr21Oo197GJGhPC9HHHhxqdd.jpg", "order": 6}, {"name": "Harriet Walter", "character": "Lilly", "id": 17477, "credit_id": "52fe42e9c3a36847f802c285", "cast_id": 19, "profile_path": "/vfpIPsC27D1ONVres7j3DgWYzdN.jpg", "order": 7}, {"name": "Trevor Martin", "character": "Douglas", "id": 17478, "credit_id": "52fe42e9c3a36847f802c289", "cast_id": 20, "profile_path": "/zvz3ZEm0BNwPVQ1gMPh1bm00eQy.jpg", "order": 8}, {"name": "Matyelok Gibbs", "character": "Elyse", "id": 17479, "credit_id": "52fe42e9c3a36847f802c28d", "cast_id": 21, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 9}, {"name": "Claudine Acs", "character": "Jane", "id": 17481, "credit_id": "52fe42e9c3a36847f802c291", "cast_id": 23, "profile_path": "/9bFLw0HFWSJadjKBqq4LoEZIuma.jpg", "order": 10}, {"name": "Michael Maloney", "character": "James", "id": 17483, "credit_id": "52fe42e9c3a36847f802c295", "cast_id": 25, "profile_path": "/f0rV6ZXr8W6BkSCFeJo2KXdnD4A.jpg", "order": 11}, {"name": "Michael Pe\u00f1a", "character": "John - Border Patrol", "id": 454, "credit_id": "52fe42e9c3a36847f802c2cf", "cast_id": 56, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 12}, {"name": "Clifton Collins, Jr.", "character": "Officer at Border Crossing", "id": 5365, "credit_id": "52fe42e9c3a36847f802c2d3", "cast_id": 57, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 13}, {"name": "K\u014dji Yakusho", "character": "Yasujiro Wataya", "id": 18056, "credit_id": "52fe42e9c3a36847f802c2d7", "cast_id": 58, "profile_path": "/mG4niNLZbyKHEfCA7EJP8vsi7rV.jpg", "order": 14}, {"name": "M\u00f3nica del Carmen", "character": "Lucia", "id": 1376187, "credit_id": "54e4e9f5c3a3682b08000040", "cast_id": 59, "profile_path": null, "order": 15}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c22b", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 6.5, "runtime": 143}, "9357": {"poster_path": "/6ke85Kb6aX8RunZLwKpXCKYO9xv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52223306, "overview": "Sy \"the photo guy\" Parrish has lovingly developed photos for the Yorkin family since their son was a baby. But as the Yorkins' lives become fuller, Sy's only seems lonelier, until he eventually believes he's part of their family. When \"Uncle\" Sy's picture-perfect fantasy collides with an ugly dose of reality, what happens next \"has the spine-tingling elements of the best psychological thrillers!\"", "video": false, "id": 9357, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "One Hour Photo", "tagline": "The things that we fear the most have already happened to us...", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265459", "adult": false, "backdrop_path": "/hWoZ4fpl9sTA6CnoHRgvWRn4P9b.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Catch 23 Entertainment", "id": 7053}], "release_date": "2002-08-21", "popularity": 0.210675016254357, "original_title": "One Hour Photo", "budget": 12000000, "cast": [{"name": "Robin Williams", "character": "Seymour Parrish", "id": 2157, "credit_id": "52fe44edc3a36847f80b2241", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Connie Nielsen", "character": "Nina Yorkin", "id": 935, "credit_id": "52fe44edc3a36847f80b2245", "cast_id": 2, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 1}, {"name": "Michael Vartan", "character": "Will Yorkin", "id": 15424, "credit_id": "52fe44edc3a36847f80b2249", "cast_id": 3, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 2}, {"name": "Erin Daniels", "character": "Maya Burson", "id": 18662, "credit_id": "52fe44edc3a36847f80b227d", "cast_id": 13, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 3}, {"name": "Eriq La Salle", "character": "Det. James Van Der Zee", "id": 23628, "credit_id": "52fe44edc3a36847f80b2281", "cast_id": 14, "profile_path": "/iUjzxU9h9omJ9OTVkXreu6Q7YsK.jpg", "order": 4}, {"name": "Gary Cole", "character": "Bill Owens", "id": 21163, "credit_id": "52fe44edc3a36847f80b2285", "cast_id": 15, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 5}, {"name": "Paul Hansen Kim", "character": "Yoshi Araki", "id": 1068107, "credit_id": "52fe44edc3a36847f80b2289", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Dylan Smith", "character": "Jake Yorkin", "id": 1172661, "credit_id": "52fe44edc3a36847f80b228d", "cast_id": 17, "profile_path": "/z2PRKKGdq0P8tbFmW97KCI2yPgq.jpg", "order": 7}], "directors": [{"name": "Mark Romanek", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b2273", "profile_path": "/iQoFOhNmygHKRWJXfyLkHKgw5Zj.jpg", "id": 57446}], "vote_average": 6.2, "runtime": 96}, "9358": {"poster_path": "/2Tj8YJJuahzwUbdYDgydYX4Yj4Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90426405, "overview": "When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.", "video": false, "id": 9358, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Final Destination 2", "tagline": "Death is like a boomerang. it keeps coming back", "vote_count": 249, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0309593", "adult": false, "backdrop_path": "/9CgvUnfd5OzKlZkrxGGvCFQNQEV.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Zide-Perry Productions", "id": 3169}], "release_date": "2003-01-31", "popularity": 0.813186153216517, "original_title": "Final Destination 2", "budget": 26000000, "cast": [{"name": "Ali Larter", "character": "Clear Rivers", "id": 17303, "credit_id": "52fe44edc3a36847f80b22c9", "cast_id": 1, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 0}, {"name": "A.J. Cook", "character": "Kimberly Corman", "id": 17236, "credit_id": "52fe44edc3a36847f80b22cd", "cast_id": 2, "profile_path": "/6mSStsETn8o8bctan96koKYTRnd.jpg", "order": 1}, {"name": "Michael Landes", "character": "Officer Thomas Burke", "id": 57428, "credit_id": "52fe44edc3a36847f80b22d1", "cast_id": 3, "profile_path": "/rQ9ZfXR5w7cE1Pa4FSFAqmvfzLb.jpg", "order": 2}, {"name": "Tony Todd", "character": "William Bludworth", "id": 19384, "credit_id": "52fe44edc3a36847f80b22d5", "cast_id": 4, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 3}, {"name": "Keegan Connor Tracy", "character": "Kat", "id": 42710, "credit_id": "52fe44edc3a36847f80b2327", "cast_id": 18, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 4}, {"name": "Terrence 'T.C.' Carson", "character": "Eugene Dix", "id": 233191, "credit_id": "52fe44edc3a36847f80b232b", "cast_id": 19, "profile_path": "/eto2MDC4VXLGiPOXNqSdlWJ5yxL.jpg", "order": 5}, {"name": "Lynda Boyd", "character": "Nora Carpenter", "id": 20188, "credit_id": "52fe44edc3a36847f80b232f", "cast_id": 20, "profile_path": "/cZWUVqDrMpQbNOuZAnXuiprU994.jpg", "order": 6}, {"name": "James Kirk", "character": "Tim Carpenter", "id": 58374, "credit_id": "52fe44edc3a36847f80b2333", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "David Paetkau", "character": "Evan Lewis", "id": 33293, "credit_id": "52fe44edc3a36847f80b2337", "cast_id": 22, "profile_path": "/xOAjc34j0fZlKSb6I3cpTwHStar.jpg", "order": 8}, {"name": "Justina Machado", "character": "Isabella Hudson", "id": 95517, "credit_id": "52fe44edc3a36847f80b233b", "cast_id": 23, "profile_path": "/rklLmYPB4fKFP3mKZw2C3oWNaQJ.jpg", "order": 9}, {"name": "Sarah Carter", "character": "Shaina", "id": 56825, "credit_id": "52fe44edc3a36847f80b233f", "cast_id": 24, "profile_path": "/sLrzKbriBxBGP8VTJMiEwc9RMSl.jpg", "order": 10}, {"name": "Alejandro Rae", "character": "Dano (as Alex Rae)", "id": 90132, "credit_id": "52fe44edc3a36847f80b2343", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Shaun Sipos", "character": "Frankie", "id": 65772, "credit_id": "52fe44edc3a36847f80b2347", "cast_id": 26, "profile_path": "/zg0BVYdso2eaPuGu9zT6e2uKIIj.jpg", "order": 12}, {"name": "Andrew Airlie", "character": "Mr. Corman", "id": 41436, "credit_id": "52fe44edc3a36847f80b234b", "cast_id": 27, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 13}, {"name": "Noel Fisher", "character": "Brian Gibbons", "id": 80352, "credit_id": "53ee7fde0e0a267a9e0012a1", "cast_id": 30, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 14}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b22db", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 5.9, "runtime": 90}, "9359": {"poster_path": "/vBQjwzheZGwNpLQSdp671X0Nu6O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Maverick is a gambler who would rather con someone than fight them. He needs an additional three thousand dollars in order to enter a Winner Take All poker game that begins in a few days. He tries to win some, tries to collect a few debts, and recover a little loot for the reward. He joins forces with a woman gambler with a marvelous southern accent as the two both try and enter the game.", "video": false, "id": 9359, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Maverick", "tagline": "In their hands, a deck of cards was the only thing more dangerous than a gun.", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110478", "adult": false, "backdrop_path": "/v66qzYKRyVGN5Oa6GqlgdPw6ITb.jpg", "production_companies": [{"name": "Icon Entertainment International", "id": 4564}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1994-05-20", "popularity": 0.42166331474148, "original_title": "Maverick", "budget": 0, "cast": [{"name": "Mel Gibson", "character": "Bret Maverick", "id": 2461, "credit_id": "52fe44edc3a36847f80b23d9", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Annabelle Bransford", "id": 1038, "credit_id": "52fe44edc3a36847f80b23dd", "cast_id": 2, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "James Garner", "character": "Marshal Zane Cooper", "id": 16896, "credit_id": "52fe44edc3a36847f80b23e1", "cast_id": 3, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 2}, {"name": "Graham Greene", "character": "Joseph", "id": 6804, "credit_id": "52fe44edc3a36847f80b23e5", "cast_id": 4, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Angel", "id": 658, "credit_id": "52fe44edc3a36847f80b23e9", "cast_id": 5, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "James Coburn", "character": "Commodore Duvall", "id": 5563, "credit_id": "52fe44edc3a36847f80b23ed", "cast_id": 6, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 5}, {"name": "Dub Taylor", "character": "Room Clerk", "id": 6463, "credit_id": "52fe44edc3a36847f80b2427", "cast_id": 16, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 6}, {"name": "Geoffrey Lewis", "character": "Matthew Wicker / Eugene, Banker", "id": 18071, "credit_id": "52fe44edc3a36847f80b242b", "cast_id": 17, "profile_path": "/w6uRlwTKRpXELfVwKHC9yWEDqxy.jpg", "order": 7}, {"name": "Paul L. Smith", "character": "The Archduke", "id": 39782, "credit_id": "52fe44edc3a36847f80b242f", "cast_id": 18, "profile_path": "/1NZXecko55r4vchJkUAshliIctS.jpg", "order": 8}, {"name": "Dan Hedaya", "character": "Twitchy, Riverboat Poker Player", "id": 6486, "credit_id": "52fe44edc3a36847f80b2433", "cast_id": 19, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 9}, {"name": "Dennis Fimple", "character": "Stuttering", "id": 27742, "credit_id": "52fe44edc3a36847f80b2437", "cast_id": 20, "profile_path": "/iqufXf1lSczFfi8ZKfwD35jwpdF.jpg", "order": 10}, {"name": "Denver Pyle", "character": "Old Gambler on Riverboat", "id": 6462, "credit_id": "52fe44edc3a36847f80b243b", "cast_id": 21, "profile_path": "/cnO648FW7r1NQqHZsPkJBACfXal.jpg", "order": 11}, {"name": "Clint Black", "character": "Sweet-Faced Gambler", "id": 109577, "credit_id": "52fe44edc3a36847f80b243f", "cast_id": 22, "profile_path": "/irN7fFQccYC4vCv9unnVbW3qEVA.jpg", "order": 12}, {"name": "Max Perlich", "character": "Johnny Hardin", "id": 7268, "credit_id": "52fe44edc3a36847f80b2443", "cast_id": 23, "profile_path": "/aITtjR6iSepDooSvVjB1zY5ehYx.jpg", "order": 13}, {"name": "Art LaFleur", "character": "Poker Player (as Art La Fleur)", "id": 44792, "credit_id": "52fe44edc3a36847f80b2447", "cast_id": 24, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 14}, {"name": "Leo Gordon", "character": "Poker Player (as Leo V. Gordon)", "id": 95082, "credit_id": "52fe44edc3a36847f80b244b", "cast_id": 25, "profile_path": "/pd3Nbf2GqNW2800GB4IpTEHkSDf.jpg", "order": 15}, {"name": "Paul Tuerpe", "character": "Poker Player", "id": 159013, "credit_id": "52fe44edc3a36847f80b244f", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Jean De Baer", "character": "Mary Margret", "id": 78518, "credit_id": "52fe44edc3a36847f80b2453", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Paul Brinegar", "character": "Stage Driver", "id": 106611, "credit_id": "52fe44edc3a36847f80b2457", "cast_id": 28, "profile_path": "/8YOaYazXeGZLRNcYcson7vym4Tr.jpg", "order": 18}, {"name": "Hal Ketchum", "character": "Bank Robber", "id": 233499, "credit_id": "52fe44edc3a36847f80b245b", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Corey Feldman", "character": "Bank Robber", "id": 3034, "credit_id": "52fe44edc3a36847f80b245f", "cast_id": 30, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 20}, {"name": "John M. Woodward", "character": "Bank Robber (as John Woodward)", "id": 233500, "credit_id": "52fe44edc3a36847f80b2463", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Jesse Eric Carroll", "character": "Stable Boy", "id": 233501, "credit_id": "52fe44edc3a36847f80b2467", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Toshonnie Touchin", "character": "Stable Boy", "id": 233502, "credit_id": "52fe44edc3a36847f80b246b", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "John Meier", "character": "Unshaven Man", "id": 194654, "credit_id": "52fe44edc3a36847f80b246f", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Steven Chambers", "character": "Unshaven Man (as Steve Chambers)", "id": 139999, "credit_id": "52fe44edc3a36847f80b2473", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Doc Duhame", "character": "Unshaven Man", "id": 139993, "credit_id": "52fe44edc3a36847f80b2477", "cast_id": 36, "profile_path": "/cFzYXHfoT86jiJWgH43pV8y9iIq.jpg", "order": 26}, {"name": "Lauren Shuler Donner", "character": "Mrs. D., Bathhouse Maid (as Lauren Shuler-Donner)", "id": 7200, "credit_id": "52fe44edc3a36847f80b247f", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Courtney Barilla", "character": "Music Box Girl", "id": 115889, "credit_id": "52fe44edc3a36847f80b2483", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Kimberly Cullum", "character": "Music Box Girl", "id": 170214, "credit_id": "52fe44edc3a36847f80b2487", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Gary Richard Frank", "character": "Crooked Dealer", "id": 219262, "credit_id": "52fe44edc3a36847f80b248b", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Read Morgan", "character": "Dealer", "id": 99725, "credit_id": "52fe44edc3a36847f80b248f", "cast_id": 42, "profile_path": "/stXkSnEaGj9cSLIdiqlCWzasV0O.jpg", "order": 32}, {"name": "Steve Kahan", "character": "Dealer", "id": 14328, "credit_id": "52fe44edc3a36847f80b2493", "cast_id": 43, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 33}, {"name": "Stephen Liska", "character": "Dealer", "id": 58559, "credit_id": "52fe44edc3a36847f80b2497", "cast_id": 44, "profile_path": "/aMpEuoFVA5xd3Pbqs97SkFpJjhe.jpg", "order": 34}, {"name": "Robert Jones", "character": "Bank Employee", "id": 114745, "credit_id": "52fe44edc3a36847f80b249b", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "J. Mills Goodloe", "character": "Telegraph Operator (as John Mills Goodloe)", "id": 225499, "credit_id": "52fe44edc3a36847f80b249f", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Vilmos Zsigmond", "character": "Albert Bierstadt", "id": 12235, "credit_id": "52fe44edc3a36847f80b24a3", "cast_id": 47, "profile_path": "/zItpdF2B0mohQSFs40E7eUg3nkL.jpg", "order": 37}, {"name": "Waylon Jennings", "character": "Man with Concealed Guns", "id": 111270, "credit_id": "52fe44edc3a36847f80b24a7", "cast_id": 48, "profile_path": "/r4eEaGt4MlZLQgG9ld4K8BKacen.jpg", "order": 38}, {"name": "Kathy Mattea", "character": "Woman with Concealed Guns", "id": 180671, "credit_id": "52fe44edc3a36847f80b24ab", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Carlene Carter", "character": "Waitress", "id": 233503, "credit_id": "52fe44edc3a36847f80b24af", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Vince Gill", "character": "Spectator", "id": 181455, "credit_id": "52fe44edc3a36847f80b24b3", "cast_id": 51, "profile_path": "/rnzo0u6BTUhyKjG9BZII8uAM4sX.jpg", "order": 41}, {"name": "Janis Oliver Gill", "character": "Spectator (as Janice Gill)", "id": 233504, "credit_id": "52fe44edc3a36847f80b24b7", "cast_id": 52, "profile_path": null, "order": 42}, {"name": "William Smith", "character": "Riverboat Poker Player", "id": 98102, "credit_id": "52fe44edc3a36847f80b24bb", "cast_id": 53, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 43}, {"name": "Chuck Hart", "character": "Riverboat Poker Player", "id": 106337, "credit_id": "52fe44edc3a36847f80b24bf", "cast_id": 54, "profile_path": null, "order": 44}, {"name": "Doug McClure", "character": "Riverboat Poker Player", "id": 50967, "credit_id": "52fe44edc3a36847f80b24c3", "cast_id": 55, "profile_path": "/wxJYjpKer6vhDpMMTfxGggfdLC6.jpg", "order": 45}, {"name": "Henry Darrow", "character": "Riverboat Poker Player", "id": 44686, "credit_id": "52fe44edc3a36847f80b24c7", "cast_id": 56, "profile_path": "/2ilQFQafSbeuxpCDTLeeTmafbiO.jpg", "order": 46}, {"name": "Michael Paul Chan", "character": "Riverboat Poker Player", "id": 17355, "credit_id": "52fe44edc3a36847f80b24cb", "cast_id": 57, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 47}, {"name": "Richard Blum", "character": "Riverboat Poker Player", "id": 102569, "credit_id": "52fe44edc3a36847f80b24cf", "cast_id": 58, "profile_path": null, "order": 48}, {"name": "Bert Remsen", "character": "Riverboat Poker Player", "id": 30621, "credit_id": "52fe44edc3a36847f80b24d3", "cast_id": 59, "profile_path": "/kLddDLz6g3vBaTnmPD0yzPj04Bo.jpg", "order": 49}, {"name": "Robert Fuller", "character": "Riverboat Poker Player", "id": 38129, "credit_id": "52fe44edc3a36847f80b24d7", "cast_id": 60, "profile_path": "/wOUkvybLEYDVYJcaofIKS3Bioul.jpg", "order": 50}, {"name": "Donal Gibson", "character": "Riverboat Poker Player", "id": 110315, "credit_id": "52fe44edc3a36847f80b24db", "cast_id": 61, "profile_path": "/4MKTSwTpl1BaXD554MsrwK7uJqg.jpg", "order": 51}, {"name": "William Marshall", "character": "Riverboat Poker Player", "id": 16028, "credit_id": "52fe44edc3a36847f80b24df", "cast_id": 62, "profile_path": "/mNkUISsKxPebQ76HzDKJvCwZkl7.jpg", "order": 52}, {"name": "Bill Henderson", "character": "Riverboat Poker Player (as Bill Handerson)", "id": 80746, "credit_id": "52fe44edc3a36847f80b24e3", "cast_id": 63, "profile_path": null, "order": 53}, {"name": "Cal Bartlett", "character": "Riverboat Poker Player", "id": 45388, "credit_id": "52fe44edc3a36847f80b24e7", "cast_id": 64, "profile_path": "/o0ZLqM29kF8HfzZgZOc1cLvpX9h.jpg", "order": 54}, {"name": "Danny Glover", "character": "Bank Robber (uncredited)", "id": 2047, "credit_id": "52fe44edc3a36847f80b24eb", "cast_id": 65, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 55}, {"name": "Margot Kidder", "character": "Margret Mary (uncredited)", "id": 20011, "credit_id": "52fe44edc3a36847f80b24ef", "cast_id": 66, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 56}, {"name": "Reba McEntire", "character": "Spectator (uncredited)", "id": 21986, "credit_id": "52fe44edc3a36847f80b24f3", "cast_id": 67, "profile_path": "/rLjdJUI41eqWeDzjN0B8fUkLc6y.jpg", "order": 57}, {"name": "Bob Jennings", "character": "Bartender", "id": 113506, "credit_id": "52fe44edc3a36847f80b24f7", "cast_id": 68, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 58}, {"name": "Frank Orsatti", "character": "Unshaven Man", "id": 1219264, "credit_id": "54897d4cc3a3686f470015b7", "cast_id": 69, "profile_path": null, "order": 59}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b23f3", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.3, "runtime": 127}, "9360": {"poster_path": "/DcGgcAAdZnW5A9AV03JTFFjft5.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "PE", "name": "Peru"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136885767, "overview": "A \"National Geographic\" film crew is taken hostage by an insane hunter, who takes them along on his quest to capture the world's largest - and deadliest - snake.", "video": false, "id": 9360, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Anaconda", "tagline": "When You Can't Breathe You Can't Scream.", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/sENQAlXOhOb2QmfpFl2w34W9ODP.jpg", "id": 105995, "name": "Anaconda Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118615", "adult": false, "backdrop_path": "/1LV1sS4tBSMF4Q2vscMobGmKrSY.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1997-04-11", "popularity": 2.11404358855787, "original_title": "Anaconda", "budget": 45000000, "cast": [{"name": "Jennifer Lopez", "character": "Terri Flores", "id": 16866, "credit_id": "52fe44edc3a36847f80b2529", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Ice Cube", "character": "Danny Rich", "id": 9778, "credit_id": "52fe44edc3a36847f80b252d", "cast_id": 2, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 1}, {"name": "Jon Voight", "character": "Paul Sarone", "id": 10127, "credit_id": "52fe44edc3a36847f80b2531", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Eric Stoltz", "character": "Dr. Steven Cale", "id": 7036, "credit_id": "52fe44edc3a36847f80b2535", "cast_id": 4, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Gary Dixon", "id": 887, "credit_id": "52fe44edc3a36847f80b2539", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Jonathan Hyde", "character": "Warren Westridge", "id": 8537, "credit_id": "52fe44eec3a36847f80b2585", "cast_id": 20, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 5}, {"name": "Kari W\u00fchrer", "character": "Denise Kalberg", "id": 56152, "credit_id": "52fe44eec3a36847f80b2589", "cast_id": 21, "profile_path": "/2WmKU8E0lMmdBcC7F9iLLz7S2Qc.jpg", "order": 6}, {"name": "Vincent Castellanos", "character": "Mateo", "id": 177100, "credit_id": "52fe44eec3a36847f80b258d", "cast_id": 22, "profile_path": "/z0OHAcfUnICbAh9UqAYgfjh1IT5.jpg", "order": 7}, {"name": "Danny Trejo", "character": "Poacher", "id": 11160, "credit_id": "52fe44eec3a36847f80b2591", "cast_id": 23, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 8}, {"name": "Frank Welker", "character": "Anaconda (voice)", "id": 15831, "credit_id": "52fe44eec3a36847f80b2595", "cast_id": 24, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 9}], "directors": [{"name": "Luis Llosa", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b253f", "profile_path": null, "id": 26648}], "vote_average": 4.8, "runtime": 89}, "9361": {"poster_path": "/6FHoUoYrfmwXJsDIR0s8YvV1Ctj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75505856, "overview": "As the English and French soldiers battle for control of the North American colonies in the 18th century, the settlers and native Americans are forced to take sides. Cora and her sister Alice unwittingly walk into trouble but are saved by Hawkeye, an orphaned settler adopted by the last of the Mohicans.", "video": false, "id": 9361, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "The Last of the Mohicans", "tagline": "The first American hero.", "vote_count": 229, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0104691", "adult": false, "backdrop_path": "/fRkIu9XNb4Xi9k5ikAxGTiDrj1G.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-09-25", "popularity": 0.541167965467662, "original_title": "The Last of the Mohicans", "budget": 40000000, "cast": [{"name": "Daniel Day-Lewis", "character": "Hawkeye/Nathaniel Poe", "id": 11856, "credit_id": "52fe44eec3a36847f80b2613", "cast_id": 12, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 0}, {"name": "Madeleine Stowe", "character": "Cora Munro", "id": 289, "credit_id": "52fe44eec3a36847f80b2617", "cast_id": 13, "profile_path": "/jqd70MNVUs3nTbxn3B3G6UNV4Oc.jpg", "order": 1}, {"name": "Russell Means", "character": "Chingachgook", "id": 3203, "credit_id": "52fe44eec3a36847f80b261b", "cast_id": 14, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 2}, {"name": "Eric Schweig", "character": "Uncas", "id": 57448, "credit_id": "52fe44eec3a36847f80b261f", "cast_id": 15, "profile_path": "/zz4n9Bz32wAEwkO2KmBG3tDClo.jpg", "order": 3}, {"name": "Jodhi May", "character": "Alice Munro", "id": 57449, "credit_id": "52fe44eec3a36847f80b2623", "cast_id": 16, "profile_path": "/dJQrUVE4Pl9c5FPL0OVNB8DPY0Y.jpg", "order": 4}, {"name": "Steven Waddington", "character": "Major Heyward", "id": 27764, "credit_id": "52fe44eec3a36847f80b2627", "cast_id": 17, "profile_path": "/wFZoh6mW51RK0kHs64OPndEa19q.jpg", "order": 5}, {"name": "Wes Studi", "character": "Magua", "id": 15853, "credit_id": "52fe44eec3a36847f80b262b", "cast_id": 18, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 6}, {"name": "Maurice Roeves", "character": "Col. Edmund Munro", "id": 54, "credit_id": "52fe44eec3a36847f80b2635", "cast_id": 20, "profile_path": "/qXYjnIHClkey4QQxPG5D5JD7Y74.jpg", "order": 7}, {"name": "Patrice Ch\u00e9reau", "character": "Gen Montcalm", "id": 23724, "credit_id": "52fe44eec3a36847f80b2639", "cast_id": 21, "profile_path": "/xTAm1CHk1KY7kAYicNm3ztn8RZ3.jpg", "order": 8}, {"name": "Edward Blatchford", "character": "Jack Winthrop", "id": 1066171, "credit_id": "52fe44eec3a36847f80b263d", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Terry Kinney", "character": "John Cameron", "id": 11067, "credit_id": "52fe44eec3a36847f80b2641", "cast_id": 23, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 10}, {"name": "Tracey Ellis", "character": "Alexandra Cameron", "id": 134061, "credit_id": "52fe44eec3a36847f80b2645", "cast_id": 24, "profile_path": "/ctvSXygooaKmdSej12XeAimmsPk.jpg", "order": 11}, {"name": "Justin M. Rice", "character": "James Cameron", "id": 1066172, "credit_id": "52fe44eec3a36847f80b2649", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Dennis Banks", "character": "Ongewasgone", "id": 975164, "credit_id": "52fe44eec3a36847f80b264d", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Pete Postlethwaite", "character": "Capt. Beams", "id": 4935, "credit_id": "52fe44eec3a36847f80b2651", "cast_id": 27, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 14}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b25d3", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.8, "runtime": 112}, "9362": {"poster_path": "/uaTHEpgS3tMPK5XY3f17RIrM07v.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48572000, "overview": "Hick handymen Val McKee and Earl Bassett can barely eke out a living in the Nevada hamlet of Perfection, so they decide to leave town -- despite an admonition from a shapely seismology coed who's picking up odd readings on her equipment. Before long, Val and Earl discover what's responsible for those readings: 30-foot-long carnivorous worms with a proclivity for sucking their prey underground.", "video": false, "id": 9362, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Tremors", "tagline": "The monster movie that breaks new ground.", "vote_count": 196, "homepage": "", "belongs_to_collection": {"backdrop_path": "/87K8X2WixRlR3LxzeydW83N7nM0.jpg", "poster_path": "/1WkX3MBY3pqgfC4XuMMds8wrmbX.jpg", "id": 91799, "name": "Tremors Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100814", "adult": false, "backdrop_path": "/yUgmWnxcPYoonOQfrax5CfIYvDU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "No Frills Film Production", "id": 3851}], "release_date": "1990-01-19", "popularity": 0.462741288625004, "original_title": "Tremors", "budget": 11000000, "cast": [{"name": "Kevin Bacon", "character": "Valentine McKee", "id": 4724, "credit_id": "52fe44eec3a36847f80b2687", "cast_id": 1, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Fred Ward", "character": "Earl Bassett", "id": 10430, "credit_id": "52fe44eec3a36847f80b268b", "cast_id": 2, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 1}, {"name": "Finn Carter", "character": "Rhonda LeBeck", "id": 57453, "credit_id": "52fe44eec3a36847f80b268f", "cast_id": 3, "profile_path": "/tgZvPhGz2LcSWdBcjmEMy11c4xq.jpg", "order": 2}, {"name": "Michael Gross", "character": "Burt Gummer", "id": 67015, "credit_id": "52fe44eec3a36847f80b26c3", "cast_id": 15, "profile_path": "/nYCWEUdFbMo2JJo2Hd9KHNcP2GS.jpg", "order": 3}, {"name": "Reba McEntire", "character": "Heather Gummer", "id": 21986, "credit_id": "52fe44eec3a36847f80b26c7", "cast_id": 16, "profile_path": "/rLjdJUI41eqWeDzjN0B8fUkLc6y.jpg", "order": 4}, {"name": "Robert Jayne", "character": "Melvin Plug", "id": 52141, "credit_id": "52fe44eec3a36847f80b26cb", "cast_id": 17, "profile_path": "/qmg7jCWMbudaRpKMepAwOXlIkYV.jpg", "order": 5}, {"name": "Charlotte Stewart", "character": "Nancy Sterngood", "id": 14794, "credit_id": "52fe44eec3a36847f80b26cf", "cast_id": 18, "profile_path": "/4IUF48jRMcBR0ZjVc9ghDoo5c4x.jpg", "order": 6}, {"name": "Tony Genaro", "character": "Miguel", "id": 166606, "credit_id": "52fe44eec3a36847f80b26d3", "cast_id": 19, "profile_path": "/arYAS4M7YUmIlfx7uGVvB7R38OD.jpg", "order": 7}, {"name": "Ariana Richards", "character": "Mindy Sterngood", "id": 4788, "credit_id": "52fe44eec3a36847f80b26d7", "cast_id": 20, "profile_path": "/b4S0q3uSDIophwYcPlBABgJObSX.jpg", "order": 8}, {"name": "Richard Marcus", "character": "Nestor", "id": 70782, "credit_id": "52fe44eec3a36847f80b26db", "cast_id": 21, "profile_path": "/lJoVFFtlEzvxToT0SRBzdyWsuNo.jpg", "order": 9}, {"name": "Victor Wong", "character": "Walter Chang", "id": 11395, "credit_id": "52fe44eec3a36847f80b26df", "cast_id": 22, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 10}, {"name": "Sunshine Parker", "character": "Edgar", "id": 79744, "credit_id": "52fe44eec3a36847f80b26e3", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Michael Dan Wagner", "character": "Old Fred", "id": 1193342, "credit_id": "52fe44eec3a36847f80b26e7", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Conrad Bachmann", "character": "Dr. Jim", "id": 158052, "credit_id": "52fe44eec3a36847f80b26eb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Bibi Besch", "character": "Megan", "id": 1794, "credit_id": "52fe44eec3a36847f80b26ef", "cast_id": 26, "profile_path": "/3Np4qyewSj56jbYgqQnHcl7C7xT.jpg", "order": 14}], "directors": [{"name": "Ron Underwood", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b2695", "profile_path": "/6Que5sFtOzJ0q4D7vrFqG60sdzG.jpg", "id": 33485}], "vote_average": 6.4, "runtime": 96}, "9366": {"poster_path": "/sNrQIYc21wQ7shGH75oEMP2gIpq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41954997, "overview": "An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.", "video": false, "id": 9366, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Donnie Brasco", "tagline": "Donnie Brasco. Based on a True Story.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0119008", "adult": false, "backdrop_path": "/sjSyssW1PC5AmhU6RnztVxa1dxd.jpg", "production_companies": [{"name": "Phoenix Pictures", "id": 11317}, {"name": "Mark Johnson Productions", "id": 2604}, {"name": "Baltimore Pictures", "id": 11407}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1997-02-27", "popularity": 1.07571840199613, "original_title": "Donnie Brasco", "budget": 35000000, "cast": [{"name": "Johnny Depp", "character": "Donnie Brasco / Joseph D. 'Joe' Pistone", "id": 85, "credit_id": "52fe44eec3a36847f80b275d", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Al Pacino", "character": "Benjamin 'Lefty' Ruggiero", "id": 1158, "credit_id": "52fe44eec3a36847f80b27bf", "cast_id": 21, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Michael Madsen", "character": "Sonny Black", "id": 147, "credit_id": "52fe44eec3a36847f80b2761", "cast_id": 3, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 2}, {"name": "Bruno Kirby", "character": "Nicky", "id": 9257, "credit_id": "52fe44eec3a36847f80b2765", "cast_id": 4, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 3}, {"name": "James Russo", "character": "Paulie", "id": 785, "credit_id": "52fe44eec3a36847f80b2769", "cast_id": 5, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 4}, {"name": "Anne Heche", "character": "Maggie Pistone", "id": 8256, "credit_id": "52fe44eec3a36847f80b276d", "cast_id": 6, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 5}, {"name": "\u017deljko Ivanek", "character": "Tim Curley", "id": 6752, "credit_id": "52fe44eec3a36847f80b27c7", "cast_id": 23, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 6}, {"name": "Brian Tarantina", "character": "Bruno", "id": 4890, "credit_id": "537249120e0a2672eb002094", "cast_id": 24, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 7}, {"name": "Rocco Sisto", "character": "Richard 'Richie' Gazzo", "id": 65765, "credit_id": "537249220e0a2672e8002014", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Zach Grenier", "character": "Dr. Berger", "id": 7471, "credit_id": "5372492d0e0a2672eb002096", "cast_id": 26, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 9}, {"name": "Gerry Becker", "character": "Agent Dean Blandford FBI", "id": 19468, "credit_id": "5372493c0e0a2672e8002016", "cast_id": 27, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 10}, {"name": "Robert Miano", "character": "Sonny Red", "id": 62715, "credit_id": "5372494c0e0a2672f8001fa2", "cast_id": 28, "profile_path": "/jdooBgF7c24ehqBWPJHjC1f09f8.jpg", "order": 11}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b2773", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.9, "runtime": 127}, "9367": {"poster_path": "/4S47gyKZI5aLiawwc45e4gnPlPx.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2040920, "overview": "El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor...a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake El Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.", "video": false, "id": 9367, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "El Mariachi", "tagline": "He didn't come looking for trouble, but trouble came looking for him.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6p1OzuIKWnTDfDea7IpB9xra5J.jpg", "poster_path": "/4UMPWCj3MuHLCR2vVPPNCxU6RDV.jpg", "id": 9649, "name": "Mexico Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0104815", "adult": false, "backdrop_path": "/usAd06VQyzRObEy4zhhw7ViG76V.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1992-09-04", "popularity": 0.366116478671162, "original_title": "El Mariachi", "budget": 220000, "cast": [{"name": "Carlos Gallardo", "character": "El Mariachi", "id": 20498, "credit_id": "52fe44eec3a36847f80b27f9", "cast_id": 1, "profile_path": "/4ZT5vkGvOdmC8dLHciGN8emkkpj.jpg", "order": 0}, {"name": "Jaime de Hoyos", "character": "Bigot\u00f3n", "id": 57470, "credit_id": "52fe44eec3a36847f80b2801", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Peter Marquardt", "character": "Mauricio (Moco)", "id": 57471, "credit_id": "52fe44eec3a36847f80b2805", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Reinol Martinez", "character": "Azul", "id": 1192733, "credit_id": "52fe44eec3a36847f80b2851", "cast_id": 18, "profile_path": "/dJ6cz0KBlOyVLpaEHU2Z4eOOgXN.jpg", "order": 4}, {"name": "Ramiro Gomez", "character": "Cantinero", "id": 1192734, "credit_id": "52fe44eec3a36847f80b2855", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Consuelo G\u00f3mez", "character": "Domino", "id": 1293343, "credit_id": "5300df549251416ae738b1f4", "cast_id": 20, "profile_path": null, "order": 6}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b280b", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.6, "runtime": 81}, "8388": {"poster_path": "/ehCzedovkiM8CnDeuSSHlRbdfxI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three unemployed actors accept an invitation to a Mexican village to replay their bandit fighter roles, unaware that it is the real thing.", "video": false, "id": 8388, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Three Amigos", "tagline": "They're Down On Their Luck And Up To Their Necks In Senoritas, Margaritas, Banditos And Bullets!", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092086", "adult": false, "backdrop_path": "/mWuHbFc7qVmVcpybx3ezhXLj5VO.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1986-12-12", "popularity": 0.980097147619745, "original_title": "Three Amigos", "budget": 0, "cast": [{"name": "Chevy Chase", "character": "Dusty Bottoms", "id": 54812, "credit_id": "52fe44a4c3a36847f80a1d0b", "cast_id": 1, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Steve Martin", "character": "Lucky Day", "id": 67773, "credit_id": "52fe44a4c3a36847f80a1d0f", "cast_id": 2, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 1}, {"name": "Martin Short", "character": "Ned Nederlander", "id": 519, "credit_id": "52fe44a4c3a36847f80a1d13", "cast_id": 3, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 2}, {"name": "Patrice Martinez", "character": "Carmen", "id": 54813, "credit_id": "52fe44a4c3a36847f80a1d17", "cast_id": 4, "profile_path": "/k5zb1ftmsClSUOMrgUiV1hgyukO.jpg", "order": 3}, {"name": "Philip Gordon", "character": "Rodrigo", "id": 54814, "credit_id": "52fe44a4c3a36847f80a1d1b", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Alfonso Ar\u00e1u", "character": "El Guapo", "id": 22767, "credit_id": "52fe44a4c3a36847f80a1d49", "cast_id": 13, "profile_path": "/Agw6LyoGlrfJaBvTOQYzdxwUWHh.jpg", "order": 5}, {"name": "Tony Plana", "character": "Jefe", "id": 41737, "credit_id": "52fe44a4c3a36847f80a1d4d", "cast_id": 14, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 6}, {"name": "Kai Wulff", "character": "German", "id": 42146, "credit_id": "52fe44a4c3a36847f80a1d51", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Jon Lovitz", "character": "Morty", "id": 16165, "credit_id": "52fe44a4c3a36847f80a1d55", "cast_id": 16, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 8}, {"name": "Joe Mantegna", "character": "Harry Flugleman", "id": 3266, "credit_id": "52fe44a4c3a36847f80a1d59", "cast_id": 17, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 9}, {"name": "Phil Hartman", "character": "Sam", "id": 14104, "credit_id": "52fe44a4c3a36847f80a1d5d", "cast_id": 18, "profile_path": "/rf62sAab9vOjm9x7ZA0VBWDkHvD.jpg", "order": 10}, {"name": "Norbert Weisser", "character": "German's Friend", "id": 6701, "credit_id": "52fe44a4c3a36847f80a1d61", "cast_id": 19, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 11}, {"name": "Brian Thompson", "character": "German's Other Friend", "id": 2719, "credit_id": "52fe44a4c3a36847f80a1d65", "cast_id": 20, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 12}, {"name": "Dyana Ortelli", "character": "Juanita", "id": 104382, "credit_id": "52fe44a4c3a36847f80a1d69", "cast_id": 21, "profile_path": "/fRNvwWADALgp6vRJY73HXovtS3p.jpg", "order": 13}, {"name": "Rebecca Ferratti", "character": "Hot Se\u00f1orita", "id": 928, "credit_id": "52fe44a4c3a36847f80a1d6d", "cast_id": 22, "profile_path": "/jkj9xVFHEftdPfuDTxqLF1WgoZr.jpg", "order": 14}, {"name": "Brinke Stevens", "character": "Silent Movie Actress", "id": 97621, "credit_id": "52fe44a4c3a36847f80a1d71", "cast_id": 23, "profile_path": "/htk0urihmeLULILQNvA1NsOfeKY.jpg", "order": 15}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe44a4c3a36847f80a1d21", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.3, "runtime": 102}, "72559": {"poster_path": "/swk1AHwPvIJv8NUFM1qpFuaT642.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 371876278, "overview": "Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.", "video": false, "id": 72559, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "G.I. Joe: Retaliation", "tagline": "", "vote_count": 2165, "homepage": "http://www.gijoemovie.com", "belongs_to_collection": {"backdrop_path": "/m3ip0ci0TnX0ATUxpweqElYCeq4.jpg", "poster_path": "/5LtZM6zLB2TDbdIaOC5uafjYZY1.jpg", "id": 135468, "name": "G.I. Joe (Live-Action Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1583421", "adult": false, "backdrop_path": "/b9OVFl48ZV2oTLzACSwBpNrCUhJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Skydance Productions", "id": 6277}, {"name": "Hasbro", "id": 2598}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Saints LA", "id": 19719}], "release_date": "2013-03-29", "popularity": 1.8790239854764, "original_title": "G.I. Joe: Retaliation", "budget": 130000000, "cast": [{"name": "Dwayne Johnson", "character": "Roadblock", "id": 18918, "credit_id": "52fe4873c3a368484e0f8c35", "cast_id": 3, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "D.J. Cotrona", "character": "Flint", "id": 51976, "credit_id": "52fe4873c3a368484e0f8c59", "cast_id": 13, "profile_path": "/5eQPcmvZRJuVKBrwER2nIpmn91X.jpg", "order": 1}, {"name": "Adrianne Palicki", "character": "Jaye", "id": 88995, "credit_id": "52fe4873c3a368484e0f8c39", "cast_id": 4, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 2}, {"name": "Bruce Willis", "character": "Joe Colton", "id": 62, "credit_id": "52fe4873c3a368484e0f8c2d", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 3}, {"name": "Ray Park", "character": "Snake Eyes", "id": 11007, "credit_id": "52fe4873c3a368484e0f8c41", "cast_id": 6, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "U.S. President", "id": 378, "credit_id": "52fe4873c3a368484e0f8c55", "cast_id": 12, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Lee Byung-hun", "character": "Storm Shadow", "id": 25002, "credit_id": "52fe4873c3a368484e0f8c69", "cast_id": 21, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 6}, {"name": "Elodie Yung", "character": "Jinx", "id": 78147, "credit_id": "52fe4873c3a368484e0f8c51", "cast_id": 11, "profile_path": "/pbhMOW06QNPujrHM2aNX2TS0eXH.jpg", "order": 7}, {"name": "Ray Stevenson", "character": "Firefly", "id": 56614, "credit_id": "52fe4873c3a368484e0f8c3d", "cast_id": 5, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 8}, {"name": "Channing Tatum", "character": "Duke", "id": 38673, "credit_id": "52fe4873c3a368484e0f8c31", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 9}, {"name": "RZA", "character": "Blind Master", "id": 150, "credit_id": "52fe4873c3a368484e0f8c5d", "cast_id": 14, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 10}, {"name": "Arnold Vosloo", "character": "Zartan", "id": 16743, "credit_id": "52fe4873c3a368484e0f8c49", "cast_id": 8, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 11}, {"name": "Luke Bracey", "character": "Cobra Commander", "id": 972356, "credit_id": "538ba7530e0a26670e002879", "cast_id": 54, "profile_path": "/cfUv5lXfWVlbQeRaD8XZ0WDxqF9.jpg", "order": 12}, {"name": "Joe Chrest", "character": "Chief of Staff", "id": 141762, "credit_id": "52fe4873c3a368484e0f8ce1", "cast_id": 44, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 13}, {"name": "DeRay Davis", "character": "Stoop", "id": 11827, "credit_id": "52fe4873c3a368484e0f8ced", "cast_id": 47, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 22}], "directors": [{"name": "Jon M. Chu", "department": "Directing", "job": "Director", "credit_id": "52fe4873c3a368484e0f8cd5", "profile_path": "/h80Zf0GR4jdmURx32hjvckJE8o5.jpg", "id": 54507}], "vote_average": 5.4, "runtime": 110}, "9373": {"poster_path": "/gRJ1r82SrOwOHQTOBPKFqnavPuQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 107071655, "overview": "After picking up a traumatized young hitchhiker, five friends find themselves stalked and hunted by a deformed chainsaw-wielding killer and his family of equally psychopathic killers.", "video": false, "id": 9373, "genres": [{"id": 27, "name": "Horror"}], "title": "The Texas Chainsaw Massacre", "tagline": "What you know about fear... doesn't even come close.", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0324216", "adult": false, "backdrop_path": "/kfu8cB87ldbQPDbWTfIg1INXd8G.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Focus Features", "id": 17301}, {"name": "Radar Pictures", "id": 14718}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Next Entertainment", "id": 1633}], "release_date": "2003-10-17", "popularity": 0.884414019510894, "original_title": "The Texas Chainsaw Massacre", "budget": 9500000, "cast": [{"name": "Jessica Biel", "character": "Erin", "id": 10860, "credit_id": "52fe44efc3a36847f80b2af7", "cast_id": 1, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 0}, {"name": "Jonathan Tucker", "character": "Morgan", "id": 17243, "credit_id": "52fe44efc3a36847f80b2afb", "cast_id": 2, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 1}, {"name": "Erica Leerhsen", "character": "Pepper", "id": 57514, "credit_id": "52fe44efc3a36847f80b2aff", "cast_id": 3, "profile_path": "/qI82zKaMmoSsWmjvbvWuNN0lWJy.jpg", "order": 2}, {"name": "Mike Vogel", "character": "Andy", "id": 6858, "credit_id": "52fe44efc3a36847f80b2b03", "cast_id": 4, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 3}, {"name": "Eric Balfour", "character": "Kemper", "id": 34489, "credit_id": "52fe44efc3a36847f80b2b07", "cast_id": 5, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 4}, {"name": "Andrew Bryniarski", "character": "Thomas Hewitt (Leatherface)", "id": 52366, "credit_id": "52fe44efc3a36847f80b2b0b", "cast_id": 6, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 5}, {"name": "R. Lee Ermey", "character": "Sheriff Hoyt", "id": 8655, "credit_id": "52fe44efc3a36847f80b2b5d", "cast_id": 21, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 6}, {"name": "David Dorfman", "character": "Jedidiah", "id": 26292, "credit_id": "53642c8cc3a36812180000a1", "cast_id": 23, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 7}, {"name": "Lauren German", "character": "Teenage Girl", "id": 37014, "credit_id": "53642ca0c3a3681241000104", "cast_id": 24, "profile_path": "/7TdS4sFvBzUDahM65VWVYXcFXH2.jpg", "order": 8}, {"name": "Terrence Evans", "character": "Monty Hewitt", "id": 132054, "credit_id": "53642cb0c3a36812200000b3", "cast_id": 25, "profile_path": "/jhEu0HyHPbFh3cbIoWGW95ubEK1.jpg", "order": 9}, {"name": "Marietta Marich", "character": "Luda Mae Hewitt", "id": 985344, "credit_id": "53e7454ac3a368399f0013ea", "cast_id": 32, "profile_path": "/qov07poVxBvkMYgYlPQF0RliWJn.jpg", "order": 10}, {"name": "Marietta Marich", "character": "Luda Mae Hewitt", "id": 985344, "credit_id": "53e7454ac3a36839a2001449", "cast_id": 33, "profile_path": "/qov07poVxBvkMYgYlPQF0RliWJn.jpg", "order": 11}], "directors": [{"name": "Marcus Nispel", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2b11", "profile_path": "/uil3LAeKq6vgRucr6CR2T4Iz0oC.jpg", "id": 29922}], "vote_average": 6.0, "runtime": 98}, "9374": {"poster_path": "/qNIkecw9i44ljTJaMfkdeyLc4vB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Madeline is married to Ernest, who was once arch-rival Helen's fiance. After recovering from a mental breakdown, Helen vows to kill Madeline and steal back Ernest. Unfortunately for everyone, the introduction of a magic potion causes things to be a great deal more complicated than a mere murder plot.", "video": false, "id": 9374, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Death Becomes Her", "tagline": "In one small bottle... The fountain of youth. The secret of eternal life. The power of an ancient potion. Sometimes it works... sometimes it doesn't.", "vote_count": 141, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104070", "adult": false, "backdrop_path": "/rbh1X7khOI8nv9nprC1OVwXl9ZJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1992-07-30", "popularity": 0.727503932500354, "original_title": "Death Becomes Her", "budget": 0, "cast": [{"name": "Meryl Streep", "character": "Madeline Ashton", "id": 5064, "credit_id": "52fe44efc3a36847f80b2b8d", "cast_id": 1, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Bruce Willis", "character": "Dr. Ernest Menville", "id": 62, "credit_id": "52fe44efc3a36847f80b2b91", "cast_id": 2, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 1}, {"name": "Goldie Hawn", "character": "Helen Sharp", "id": 18892, "credit_id": "52fe44efc3a36847f80b2b95", "cast_id": 3, "profile_path": "/dIwbk78Ult7xTyN4Z4B53bfN8Cx.jpg", "order": 2}, {"name": "Isabella Rossellini", "character": "Lisle von Rhoman", "id": 6588, "credit_id": "52fe44efc3a36847f80b2b99", "cast_id": 4, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 3}, {"name": "Ian Ogilvy", "character": "Chagall", "id": 51755, "credit_id": "52fe44efc3a36847f80b2bcd", "cast_id": 13, "profile_path": "/qfZ6jdQ5gsNs3CHEORdiN1UsWuk.jpg", "order": 4}, {"name": "Adam Storke", "character": "Dakota", "id": 68528, "credit_id": "52fe44efc3a36847f80b2bd1", "cast_id": 14, "profile_path": "/nOuKZKMkLQya8B9HYSxgGKsj7MM.jpg", "order": 5}, {"name": "Nancy Fish", "character": "Rose", "id": 42168, "credit_id": "52fe44efc3a36847f80b2bd5", "cast_id": 15, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 6}, {"name": "Alaina Reed Hall", "character": "Psychologist (as Alaina Reed Hall)", "id": 11871, "credit_id": "52fe44efc3a36847f80b2bd9", "cast_id": 16, "profile_path": "/gzz8PaJjPbP2j6x8ViZcyHq3C85.jpg", "order": 7}, {"name": "Michelle Johnson", "character": "Anna", "id": 17225, "credit_id": "52fe44efc3a36847f80b2bdd", "cast_id": 18, "profile_path": "/28bU4ZZkZvmmAVg8tiJqKbcdOsr.jpg", "order": 8}, {"name": "Sydney Pollack", "character": "Hospital Doctor", "id": 2226, "credit_id": "52fe44efc3a36847f80b2be1", "cast_id": 19, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 9}, {"name": "Ai Wan", "character": "Maid in Ancient Greece (uncredited)", "id": 1198786, "credit_id": "5372fe61c3a3681530000a06", "cast_id": 20, "profile_path": "/fKHWhRNkwDs2itR4ouL0xf4vN0M.jpg", "order": 10}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2b9f", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 5.9, "runtime": 104}, "9377": {"poster_path": "/kto49vDiSzooEdy4WQH2RtaC9oP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70136369, "overview": "High-schooler Ferris Bueller knows everyone -- and every trick to faking an illness. So with the entire school convinced he's at death's door, Bueller grabs his girlfriend and best friend and hits the streets of Chicago for a well-deserved day off. Fed-up principal Ed Rooney is determined to catch Bueller and put a premature end to his field trip. But it's tough to outfox Ferris.", "video": false, "id": 9377, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Ferris Bueller's Day Off", "tagline": "One man's struggle to take it easy.", "vote_count": 400, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091042", "adult": false, "backdrop_path": "/pNrMusE83e5Qg4uw1Idg3s7EsCK.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-06-11", "popularity": 0.972427070347246, "original_title": "Ferris Bueller's Day Off", "budget": 0, "cast": [{"name": "Matthew Broderick", "character": "Ferris Bueller", "id": 4756, "credit_id": "52fe44efc3a36847f80b2c77", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Alan Ruck", "character": "Cameron Frye", "id": 2394, "credit_id": "52fe44efc3a36847f80b2c7b", "cast_id": 2, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 1}, {"name": "Mia Sara", "character": "Sloane Peterson", "id": 29091, "credit_id": "52fe44efc3a36847f80b2c7f", "cast_id": 3, "profile_path": "/bMEDp048tU5RwHd1m5ZZMa1DgGy.jpg", "order": 2}, {"name": "Jeffrey Jones", "character": "Ed Rooney", "id": 4004, "credit_id": "52fe44efc3a36847f80b2c83", "cast_id": 4, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 3}, {"name": "Jennifer Grey", "character": "Jeanie Bueller", "id": 722, "credit_id": "52fe44efc3a36847f80b2c87", "cast_id": 5, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 4}, {"name": "Charlie Sheen", "character": "Boy in Police Station", "id": 6952, "credit_id": "52fe44efc3a36847f80b2c8b", "cast_id": 6, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 5}, {"name": "Cindy Pickett", "character": "Katie Bueller", "id": 74276, "credit_id": "52fe44efc3a36847f80b2ccb", "cast_id": 17, "profile_path": "/49keHJ0EW2YmoUH3kahq3ADkBFx.jpg", "order": 6}, {"name": "Lyman Ward", "character": "Tom Bueller", "id": 90198, "credit_id": "52fe44efc3a36847f80b2ccf", "cast_id": 18, "profile_path": "/lL1dAVbBcSU4O2wD4XZcsmOCcRZ.jpg", "order": 7}, {"name": "Edie McClurg", "character": "Grace", "id": 3202, "credit_id": "52fe44efc3a36847f80b2cd3", "cast_id": 19, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 8}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2c91", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 7.0, "runtime": 103}, "9378": {"poster_path": "/4jAwbCwUfscuw2nfeOPI2TjhWLw.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Arthur and his two children, Kathy and Bobby, inherit his Uncle Cyrus's estate: a glass house that serves as a prison to 12 ghosts. When the family, accompanied by Bobby's Nanny and an attorney, enter the house they find themselves trapped inside an evil machine \"designed by the devil and powered by the dead\" to open the Eye of Hell. Aided by Dennis, a ghost hunter, and his rival Kalina, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.", "video": false, "id": 9378, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Thir13en Ghosts", "tagline": "There are ghosts around us all the time. Most of them don't want to hurt us. But, there are exceptions...", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245674", "adult": false, "backdrop_path": "/bVZNGCXhQMPpCCDr6HaYjqMULck.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "13 Ghosts Productions Canada Inc.", "id": 23503}, {"name": "Dark Castle Entertainment", "id": 1786}], "release_date": "2001-10-26", "popularity": 0.606028842443158, "original_title": "Thir13en Ghosts", "budget": 0, "cast": [{"name": "Tony Shalhoub", "character": "Arthur Kriticos", "id": 4252, "credit_id": "52fe44efc3a36847f80b2cfd", "cast_id": 1, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 0}, {"name": "Embeth Davidtz", "character": "Kalina Oretzia", "id": 6368, "credit_id": "52fe44efc3a36847f80b2d01", "cast_id": 2, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Dennis Rafkin", "id": 26457, "credit_id": "52fe44efc3a36847f80b2d05", "cast_id": 3, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Shannon Elizabeth", "character": "Kathy Kriticos", "id": 21596, "credit_id": "52fe44efc3a36847f80b2d09", "cast_id": 4, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 3}, {"name": "Matthew Harrison", "character": "Damon", "id": 21360, "credit_id": "52fe44efc3a36847f80b2d5b", "cast_id": 19, "profile_path": "/2dUfVxMEM1ilto1YP78XaEVppKI.jpg", "order": 4}, {"name": "Alec Roberts", "character": "Robert 'Bobby' Kriticos", "id": 1003356, "credit_id": "537684e7c3a3685531000133", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "JR Bourne", "character": "Benjamin Moss", "id": 1311776, "credit_id": "537684fbc3a3685525000064", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Rah Digga", "character": "Maggie Bess", "id": 238825, "credit_id": "53768515c3a368553a000035", "cast_id": 22, "profile_path": "/68O1brDzEoc91pwoYGS80H5rVCI.jpg", "order": 7}, {"name": "F. Murray Abraham", "character": "Cyrus Kriticos", "id": 1164, "credit_id": "5376852bc3a368554200003d", "cast_id": 23, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 8}], "directors": [{"name": "Steve Beck", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2d0f", "profile_path": "/p050TsMfcaDeUv3DAcSaS8Tzdrs.jpg", "id": 57521}], "vote_average": 5.1, "runtime": 91}, "197796": {"poster_path": "/46NEkiNyBvK1RpH3kQ0xCKO8A1D.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Beauty and the Beast is the adaptation of a story by Madame de Villeneuve. Published anonymously in 1740 as La Jeune Am\u00e9ricaine et les contes marins, it paints a portrait of Belle, a joyful and touching young girl who falls in love with the Beast, a cursed creature in search of love and redemption. In 1760, a condensed children\u2019s version was published. It was from this version that Jean Cocteau and then Walt Disney drew their famous adaptations. Overshadowed, the original version by Madame de Villeneuve has never been adapted for the screen... until now!", "video": false, "id": 197796, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Beauty and the Beast", "tagline": "", "vote_count": 111, "homepage": "http://www.labelleetlabete-lefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2316801", "adult": false, "backdrop_path": "/4EZ2YaCkVD1nQNu8TDxl2H3dk2b.jpg", "production_companies": [{"name": "Path\u00e9 Distribution", "id": 3012}], "release_date": "2014-02-12", "popularity": 0.844355975726161, "original_title": "La Belle et la b\u00eate", "budget": 44, "cast": [{"name": "Vincent Cassel", "character": "La b\u00eate", "id": 1925, "credit_id": "52fe4d629251416c91114269", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "L\u00e9a Seydoux", "character": "La belle", "id": 121529, "credit_id": "52fe4d629251416c9111426d", "cast_id": 3, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 1}, {"name": "Andr\u00e9 Dussollier", "character": "Belle's father", "id": 18177, "credit_id": "52fe4d629251416c91114271", "cast_id": 4, "profile_path": "/rKZXoZJBUMKRbACbAGEat7wvAr7.jpg", "order": 2}, {"name": "Eduardo Noriega", "character": "Perducas", "id": 17093, "credit_id": "52fe4d629251416c91114275", "cast_id": 5, "profile_path": "/5B1D3MChVAZ5z7cypJbCbSGgDge.jpg", "order": 3}, {"name": "Myriam Charleins", "character": "Astrid", "id": 1282702, "credit_id": "52fe4d629251416c91114279", "cast_id": 6, "profile_path": "/ifdV5J1OrWzv88TK0qqUDTg3OE9.jpg", "order": 4}, {"name": "Audrey Lamy", "character": "Anne", "id": 130664, "credit_id": "52fe4d629251416c9111427d", "cast_id": 7, "profile_path": "/tbm4gXSCjSSzpndrzAXrwcLClE3.jpg", "order": 5}, {"name": "Sara Giraudeau", "character": "Clotilde", "id": 237881, "credit_id": "52fe4d629251416c91114281", "cast_id": 8, "profile_path": "/qPNzQQ5gllQVTxkr1VwmwzOzQ5F.jpg", "order": 6}, {"name": "Jonathan Demurger", "character": "Jean-Baptiste", "id": 142694, "credit_id": "52fe4d629251416c91114285", "cast_id": 9, "profile_path": "/c2KXZqpdQkCzT85H2A4DPbWbJ6D.jpg", "order": 7}, {"name": "Nicolas Gob", "character": "Maxime", "id": 125411, "credit_id": "553253cb9251411014000f71", "cast_id": 10, "profile_path": "/rpP4AL08TrLsSVgFoT11KXXQd2R.jpg", "order": 8}, {"name": "Louka Meliava", "character": "Tristan", "id": 1456035, "credit_id": "55325403c3a3682217002981", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Yvonne Catterfeld", "character": "La Princesse", "id": 45625, "credit_id": "5532541e92514140b5000cca", "cast_id": 12, "profile_path": "/abXA9TF14II30t4nofqhPhkp6Kk.jpg", "order": 10}, {"name": "Dejan Bucin", "character": "Louis", "id": 1365732, "credit_id": "5532543692514152950029b6", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Wolfgang Menardi", "character": "Thierry", "id": 1000967, "credit_id": "5532544e9251417ae3000890", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Mickey Hardt", "character": "Etienne", "id": 230950, "credit_id": "5532546bc3a3682223002958", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Arthur Doppler", "character": "Virgil", "id": 1456038, "credit_id": "5532548792514140b5000cd9", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Elisabeth Bogdan", "character": "Fanny", "id": 1456039, "credit_id": "55325499c3a368221d002ac1", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Marie Gruber", "character": "Ad\u00e8le", "id": 8205, "credit_id": "553254bf92514109210000e3", "cast_id": 18, "profile_path": "/9MDP9S9uaeIOrs8ni4fuYhUtmh9.jpg", "order": 16}, {"name": "Gotthard Lange", "character": "L'huissier", "id": 42445, "credit_id": "553254edc3a3682219002b45", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Max Volkert Martens", "character": "Le directeur Dumont", "id": 33121, "credit_id": "55325509c3a36822170029ac", "cast_id": 20, "profile_path": "/n1xpn9lGnHkDG2jMBABmjH6dWQh.jpg", "order": 18}, {"name": "Richard Sammel", "character": "Le tenancier", "id": 49487, "credit_id": "55325528c3a3682223002968", "cast_id": 21, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 19}, {"name": "Nora H\u00fctz", "character": "Serafina", "id": 1417572, "credit_id": "55325546c3a36848ca00175f", "cast_id": 22, "profile_path": null, "order": 20}], "directors": [{"name": "Christophe Gans", "department": "Directing", "job": "Director", "credit_id": "52fe4d629251416c91114265", "profile_path": "/8tFxHa7RT3MOBTs72j9pSwkG6MJ.jpg", "id": 8296}], "vote_average": 6.2, "runtime": 112}, "9381": {"poster_path": "/ipAZBhmBsJa6W8iKwtJL0u02bPb.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 72105690, "overview": "In Babylon A.D Vin Diesel stars as a veteran-turned-mercenary who is hired to deliver a package from the ravages of post-apocalyptic Eastern Europe to a destination in the teeming megalopolis of New York City. The \"package\" is a mysterious young woman with a secret.", "video": false, "id": 9381, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Babylon A.D.", "tagline": "Kill or be Killed.", "vote_count": 248, "homepage": "http://www.babylonadmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0364970", "adult": false, "backdrop_path": "/jnrvQO04kdoxYzxzIc7VM1meads.jpg", "production_companies": [{"name": "Babylon", "id": 11259}, {"name": "MNP Entreprise", "id": 20240}, {"name": "StudioCanal", "id": 694}, {"name": "Babylon Films Limited", "id": 11260}, {"name": "M6 Films", "id": 1115}, {"name": "M6", "id": 11261}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2008-08-29", "popularity": 0.843722138397523, "original_title": "Babylon A.D.", "budget": 70000000, "cast": [{"name": "Vin Diesel", "character": "Toorop", "id": 12835, "credit_id": "52fe44f0c3a36847f80b2e6f", "cast_id": 14, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Michelle Yeoh", "character": "Schwester Rebecca", "id": 1620, "credit_id": "52fe44f0c3a36847f80b2e73", "cast_id": 15, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 1}, {"name": "M\u00e9lanie Thierry", "character": "Aurora", "id": 59373, "credit_id": "52fe44f0c3a36847f80b2e77", "cast_id": 16, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 2}, {"name": "Lambert Wilson", "character": "Darquandier", "id": 2192, "credit_id": "52fe44f0c3a36847f80b2e7b", "cast_id": 17, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 3}, {"name": "Charlotte Rampling", "character": "Hohepriesterin", "id": 44079, "credit_id": "52fe44f0c3a36847f80b2e7f", "cast_id": 18, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 4}, {"name": "G\u00e9rard Depardieu", "character": "Gorsky", "id": 16927, "credit_id": "52fe44f0c3a36847f80b2e83", "cast_id": 19, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 5}, {"name": "Mark Strong", "character": "Finn", "id": 2983, "credit_id": "52fe44f0c3a36847f80b2e87", "cast_id": 20, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 6}, {"name": "J\u00e9r\u00f4me Le Banner", "character": "Killa", "id": 47825, "credit_id": "52fe44f0c3a36847f80b2e8b", "cast_id": 21, "profile_path": "/eKwzGpMOFOb3I3fNFwlbC6e3eMC.jpg", "order": 7}, {"name": "Joel Kirby", "character": "Dr. Newton", "id": 25677, "credit_id": "52fe44f0c3a36847f80b2e8f", "cast_id": 22, "profile_path": "/pDreMKCIgOx732oMoQMhJx1FFFm.jpg", "order": 8}, {"name": "Souleymane Dicko", "character": "Jamal", "id": 72270, "credit_id": "52fe44f0c3a36847f80b2e93", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "David Belle", "character": "Kid with Tattoos", "id": 62439, "credit_id": "52fe44f0c3a36847f80b2e97", "cast_id": 24, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 10}, {"name": "Radek Bruna", "character": "Karl", "id": 59374, "credit_id": "52fe44f0c3a36847f80b2e9b", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Jan Unger", "character": "Fight Promoter", "id": 25726, "credit_id": "539dab57c3a3683b2a003e20", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b2e23", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 5.4, "runtime": 101}, "9383": {"poster_path": "/ubc2Nf3fJirAUcxVLUismTSo4XD.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73209340, "overview": "Cocky researcher Sebastian Caine is working on a project to make living creatures invisible. He's so confident he's found the right formula that he tests it on himself and soon begins to vanish. The only problem is, no one can figure out how to make him visible again. This predicament begins to drive Caine mad, with terrifying results.", "video": false, "id": 9383, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Hollow Man", "tagline": "What would you do if you knew you couldn't be seen?", "vote_count": 132, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/lZqdkklAZcsQvTwAe3ybLWZgDkH.jpg", "id": 166376, "name": "Hollow Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0164052", "adult": false, "backdrop_path": "/xYqtO0XieH3BpMdQET2QuZFBQJ6.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Global Entertainment Productions GmbH & Company Medien KG", "id": 9269}], "release_date": "2000-08-04", "popularity": 0.965500937624791, "original_title": "Hollow Man", "budget": 90000000, "cast": [{"name": "Elisabeth Shue", "character": "Linda McKay", "id": 1951, "credit_id": "52fe44f0c3a36847f80b2f4b", "cast_id": 1, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 0}, {"name": "Kevin Bacon", "character": "Sebastian Caine", "id": 4724, "credit_id": "52fe44f0c3a36847f80b2f4f", "cast_id": 2, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Matthew Kensington", "id": 16851, "credit_id": "52fe44f0c3a36847f80b2f53", "cast_id": 3, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Kim Dickens", "character": "Sarah Kennedy", "id": 21165, "credit_id": "52fe44f0c3a36847f80b2f57", "cast_id": 4, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 3}, {"name": "Rhona Mitra", "character": "Sebastian's Neighbor", "id": 25702, "credit_id": "52fe44f0c3a36847f80b2f8b", "cast_id": 14, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 4}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b2f5d", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 5.6, "runtime": 112}, "9384": {"poster_path": "/plbKo5JoCijmqghCWrw2ef8WFhg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170268750, "overview": "Join uptight David Starsky and laid-back Ken \"Hutch\" Hutchinson as they're paired for the first time as undercover cops. The new partners must overcome their differences to solve an important case with help from street informant Huggy Bear and persuasive criminal Reese Feldman.", "video": false, "id": 9384, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Starsky & Hutch", "tagline": "They're the man.", "vote_count": 169, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0335438", "adult": false, "backdrop_path": "/yK7M20aBIg91flKB8A3L5KRrJaR.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-03-05", "popularity": 0.86026326349053, "original_title": "Starsky & Hutch", "budget": 60000000, "cast": [{"name": "Ben Stiller", "character": "David Starsky", "id": 7399, "credit_id": "52fe44f0c3a36847f80b2fcf", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Ken Hutchinson", "id": 887, "credit_id": "52fe44f0c3a36847f80b2fd3", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Snoop Dogg", "character": "Huggy Bear", "id": 19767, "credit_id": "52fe44f0c3a36847f80b2fd7", "cast_id": 3, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 2}, {"name": "Fred Williamson", "character": "Captain Doby", "id": 9811, "credit_id": "52fe44f0c3a36847f80b2fdb", "cast_id": 4, "profile_path": "/n6CAXv0dbKvCyBfMvppdUmeAwt2.jpg", "order": 3}, {"name": "Vince Vaughn", "character": "Reese Feldman", "id": 4937, "credit_id": "52fe44f0c3a36847f80b2fdf", "cast_id": 5, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 4}, {"name": "Juliette Lewis", "character": "Kitty", "id": 3196, "credit_id": "52fe44f0c3a36847f80b2fe3", "cast_id": 6, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 5}, {"name": "Jason Bateman", "character": "Kevin", "id": 23532, "credit_id": "52fe44f0c3a36847f80b2fe7", "cast_id": 7, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 6}, {"name": "Carmen Electra", "character": "Staci", "id": 28639, "credit_id": "52fe44f0c3a36847f80b2feb", "cast_id": 8, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 7}, {"name": "Will Ferrell", "character": "Big Earl", "id": 23659, "credit_id": "52fe44f0c3a36847f80b304f", "cast_id": 25, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 8}, {"name": "Amy Smart", "character": "Holly", "id": 20189, "credit_id": "52fe44f0c3a36847f80b3053", "cast_id": 26, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 9}, {"name": "Brande Roderick", "character": "Heather", "id": 65641, "credit_id": "52fe44f0c3a36847f80b3057", "cast_id": 27, "profile_path": "/bWG5efFQSggksScbLF9ydVFJoM.jpg", "order": 10}, {"name": "Molly Sims", "character": "Mrs. Feldman", "id": 60952, "credit_id": "52fe44f0c3a36847f80b305b", "cast_id": 28, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 11}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b2ff1", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.7, "runtime": 101}, "25769": {"poster_path": "/hXEZ25jYUHZSNKaZk0dbQQQje7U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Four friends fleeing a viral pandemic soon learn they are more dangerous than any virus.A deadly virus has spread across the globe. Contagion is everywhere, no one is safe and no one can be trusted. Four young attractive people race through the back roads of the American West to the pounding beat of a vacation soundtrack. Their aim is to retreat to secluded utopian beach in the Gulf of Mexico, where they could peacefully wait out the pandemic and survive the apocalyptic disease. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal the fate of each of them in an inexorable and horrifying voyage of hell through a western landscape populated by only the hideous dead or the twisted living.", "video": false, "id": 25769, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Carriers", "tagline": "The rules are simple. You break them, you die...", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0806203", "adult": false, "backdrop_path": "/yv2s856C1zOQqmsmZl5vIatHqeL.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Likely Story", "id": 1785}, {"name": "This Is That Productions", "id": 10059}, {"name": "Ivy Boy Productions", "id": 4482}], "release_date": "2009-09-04", "popularity": 0.173728302512404, "original_title": "Carriers", "budget": 0, "cast": [{"name": "Lou Taylor Pucci", "character": "Danny Green", "id": 17441, "credit_id": "52fe44ddc3a368484e03b37b", "cast_id": 1, "profile_path": "/bl2iZAdBRjq9I7LhZTmxfxKdNcQ.jpg", "order": 0}, {"name": "Chris Pine", "character": "Brian Green", "id": 62064, "credit_id": "52fe44ddc3a368484e03b37f", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 1}, {"name": "Piper Perabo", "character": "Bobby", "id": 15555, "credit_id": "52fe44ddc3a368484e03b383", "cast_id": 3, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 2}, {"name": "Emily VanCamp", "character": "Kate", "id": 84247, "credit_id": "52fe44ddc3a368484e03b387", "cast_id": 4, "profile_path": "/2nBBndedoyJvuDaUwZ1nNgip6Tn.jpg", "order": 3}, {"name": "Christopher Meloni", "character": "Frank Holloway", "id": 22227, "credit_id": "52fe44ddc3a368484e03b3d3", "cast_id": 19, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 4}, {"name": "Kiernan Shipka", "character": "Jodie Holloway", "id": 934289, "credit_id": "52fe44ddc3a368484e03b3d7", "cast_id": 20, "profile_path": "/k2nVQVHu3quZgQxkM0HGA1YuiVm.jpg", "order": 5}, {"name": "Ron McClary", "character": "Preacher", "id": 171994, "credit_id": "52fe44ddc3a368484e03b3db", "cast_id": 21, "profile_path": "/eFLECgrRQBHaGAzCYFson5KF77C.jpg", "order": 6}, {"name": "Mark Moses", "character": "Doctor", "id": 11889, "credit_id": "52fe44ddc3a368484e03b3df", "cast_id": 22, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 7}, {"name": "Josh Berry", "character": "Survivalist", "id": 108037, "credit_id": "52fe44ddc3a368484e03b3e3", "cast_id": 23, "profile_path": "/urXSysxyuVeE4OCKGInIhT9IqyR.jpg", "order": 8}, {"name": "Tim Janis", "character": "Survivalist", "id": 1015340, "credit_id": "52fe44ddc3a368484e03b3e7", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Dale Malley", "character": "Survivalist", "id": 210156, "credit_id": "52fe44ddc3a368484e03b3eb", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Dylan Kenin", "character": "Tom", "id": 85419, "credit_id": "52fe44ddc3a368484e03b3ef", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "LeAnne Lynch", "character": "Rose", "id": 1120616, "credit_id": "52fe44ddc3a368484e03b3f3", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "\u00c0lex Pastor", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a368484e03b38d", "profile_path": null, "id": 94220}, {"name": "David Pastor", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a368484e03b39f", "profile_path": null, "id": 94222}], "vote_average": 5.8, "runtime": 84}, "17578": {"poster_path": "/bDE10SyVAFEBrwI6qettdCHQjT.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 371940071, "overview": "Intrepid young reporter Tintin and his loyal dog Snowy are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery, Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy, with the help of salty, cantankerous Captain Haddock, and bumbling detectives Thompson & Thomson, travel half the world, one step ahead of their enemies as Tintin endeavors to find The Unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse.", "video": false, "id": 17578, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 9648, "name": "Mystery"}, {"id": 10751, "name": "Family"}], "title": "The Adventures of Tintin", "tagline": "This year, discover how far adventure will take you.", "vote_count": 909, "homepage": "http://www.us.movie.tintin.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/oKM5pYPGCCh11uBd8fMiKQVqOo8.jpg", "id": 240670, "name": "The Adventures of Tintin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0983193", "adult": false, "backdrop_path": "/m3xgF9JiTlfN1rO9hcvTd4PTIQy.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Columbia Pictures", "id": 5}, {"name": "WingNut Films", "id": 11}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Hemisphere Media Capital", "id": 9169}], "release_date": "2011-12-20", "popularity": 1.38170280394785, "original_title": "The Adventures of Tintin", "budget": 130000000, "cast": [{"name": "Daniel Craig", "character": "Sakharine / Red Rackham (voice)", "id": 8784, "credit_id": "52fe47349251416c75091437", "cast_id": 3, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Simon Pegg", "character": "Inspector Thompson (voice)", "id": 11108, "credit_id": "52fe47349251416c7509143b", "cast_id": 4, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Pilot (voice)", "id": 2130, "credit_id": "52fe47349251416c7509143f", "cast_id": 5, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Jamie Bell", "character": "Tintin (voice)", "id": 478, "credit_id": "52fe47349251416c75091443", "cast_id": 6, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 3}, {"name": "Andy Serkis", "character": "Captain Haddock / Sir Francis Haddock (voice)", "id": 1333, "credit_id": "52fe47349251416c75091447", "cast_id": 7, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 4}, {"name": "Nick Frost", "character": "Thomson (voice)", "id": 11109, "credit_id": "52fe47349251416c7509144b", "cast_id": 8, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 5}, {"name": "Mackenzie Crook", "character": "Ernie (voice)", "id": 1711, "credit_id": "52fe47349251416c7509144f", "cast_id": 9, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 6}, {"name": "Tony Curran", "character": "Lt. Delcourt (voice)", "id": 2220, "credit_id": "52fe47349251416c75091453", "cast_id": 10, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 7}, {"name": "Toby Jones", "character": "Silk (voice)", "id": 13014, "credit_id": "52fe47349251416c75091457", "cast_id": 11, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Daniel Mays", "character": "Allan (voice)", "id": 1670, "credit_id": "52fe47349251416c7509145b", "cast_id": 12, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 9}, {"name": "Sebastian Roch\u00e9", "character": "Pedro (voice)", "id": 23789, "credit_id": "52fe47349251416c75091471", "cast_id": 18, "profile_path": "/bOSLShSCLhZ4VtbgInX6SjhqlRb.jpg", "order": 10}, {"name": "Phillip Rhys", "character": "Co-Pilot (voice)", "id": 104802, "credit_id": "52fe47349251416c75091475", "cast_id": 19, "profile_path": "/nlTeQneOdNXmA351qJ69TN4NV2A.jpg", "order": 11}, {"name": "Mark Ivanir", "character": "Afgar Outpost Soldier (voice)", "id": 6696, "credit_id": "52fe47349251416c75091479", "cast_id": 20, "profile_path": "/fFfosXJqRNBMU3wg2WrO3bCnom7.jpg", "order": 12}, {"name": "Gad Elmaleh", "character": "Ben Salaad (voice)", "id": 51100, "credit_id": "52fe47349251416c7509147d", "cast_id": 21, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 13}, {"name": "Jacquie Barnbrook", "character": "Lady in the Phonebox / Old Lady", "id": 42291, "credit_id": "52fe47349251416c75091481", "cast_id": 22, "profile_path": "/5quzMDQwCHVdkoZmHuhjsgt2m6y.jpg", "order": 14}, {"name": "Joe Starr", "character": "Barnaby (voice)", "id": 1083807, "credit_id": "52fe47359251416c7509148b", "cast_id": 24, "profile_path": "/Hi4fJU42r5qS9A2LPumWWqfFHS.jpg", "order": 15}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe47349251416c7509142d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.5, "runtime": 107}, "9387": {"poster_path": "/xcOdfPQqIKl6B7neTtDWDL5uFHK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68851475, "overview": "A village is attacked by the evil ruler of the Snake Cult, Thulsa Doom and his evil warriors, when Thulsa Doom and his warriors kills his parents, a young boy named Conan is enslaved. Years later, Conan grows up and becomes a mighty warrior and is trained as a fighter. After years as a slave and as a gladiator, Conan is set free. Joined by an archer named Subotai, a beautiful thief whom he falls in love with named Valeria and a Chinese wizard, Conan sets out to rescue King Osric's daughter Yasmina, and get his revenge on Thulsa Doom.", "video": false, "id": 9387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Conan the Barbarian", "tagline": "Thief. Warrior. Gladiator. King.", "vote_count": 180, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aHgQZRJgOaZWOqnnO5dc2vWkHOu.jpg", "poster_path": "/vguM8mJmArTn9ePTm8fK0Ryt7EI.jpg", "id": 43055, "name": "Conan the Barbarian Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082198", "adult": false, "backdrop_path": "/o0UzslAUvHVp5Th1VK8YrNFJMT3.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "1982-05-14", "popularity": 0.55111162645479, "original_title": "Conan the Barbarian", "budget": 20000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Conan", "id": 1100, "credit_id": "52fe44f1c3a36847f80b3193", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "James Earl Jones", "character": "Thulsa Doom", "id": 15152, "credit_id": "52fe44f1c3a36847f80b3197", "cast_id": 2, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 1}, {"name": "Max von Sydow", "character": "King Osric", "id": 2201, "credit_id": "52fe44f1c3a36847f80b319b", "cast_id": 3, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 2}, {"name": "Sandahl Bergman", "character": "Valeria", "id": 45378, "credit_id": "52fe44f1c3a36847f80b319f", "cast_id": 4, "profile_path": "/autibegxGq7oVvR5DGfEQL3ARoE.jpg", "order": 3}, {"name": "Cassandra Gava", "character": "The Witch", "id": 98473, "credit_id": "52fe44f1c3a36847f80b31e5", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Ben Davidson", "character": "Rexor", "id": 100563, "credit_id": "52fe44f1c3a36847f80b31e9", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Gerry Lopez", "character": "Subotai", "id": 4330, "credit_id": "52fe44f1c3a36847f80b31ed", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Mako", "character": "The Wizard / Narrator", "id": 10134, "credit_id": "52fe44f1c3a36847f80b31f1", "cast_id": 19, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 7}, {"name": "Val\u00e9rie Quennessen", "character": "The Princess", "id": 100564, "credit_id": "52fe44f1c3a36847f80b31f5", "cast_id": 20, "profile_path": "/ffpRKrmQfD9XcMoOYpthtUZkU6q.jpg", "order": 8}, {"name": "William Smith", "character": "Conan's Father", "id": 98102, "credit_id": "52fe44f1c3a36847f80b31f9", "cast_id": 21, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 9}, {"name": "Luis Barboo", "character": "Red Hair", "id": 30963, "credit_id": "52fe44f1c3a36847f80b31fd", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Franco Columbu", "character": "Pictish Scout", "id": 35710, "credit_id": "52fe44f1c3a36847f80b3201", "cast_id": 23, "profile_path": "/Ajjtqewy65900sHWWkPMdhTZ2E4.jpg", "order": 11}, {"name": "Nadiuska", "character": "Conan's Mother", "id": 100565, "credit_id": "52fe44f1c3a36847f80b3205", "cast_id": 24, "profile_path": "/vVQCxN9C3mV6HNE94cRBxlmzhqB.jpg", "order": 12}, {"name": "Jack Taylor", "character": "Priest", "id": 8927, "credit_id": "52fe44f1c3a36847f80b3209", "cast_id": 25, "profile_path": "/3mxYZLn8mXTYtwMUn4HW6H1pHEK.jpg", "order": 13}, {"name": "Sven-Ole Thorsen", "character": "Thorgrim", "id": 20761, "credit_id": "52fe44f1c3a36847f80b320d", "cast_id": 26, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 14}, {"name": "Pilar Alc\u00f3n", "character": "Slave Girl", "id": 100566, "credit_id": "52fe44f1c3a36847f80b3211", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "John Milius", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b31a5", "profile_path": "/uBNb69DEc84IZxKD1bdo8Ex2j6j.jpg", "id": 8328}], "vote_average": 6.4, "runtime": 129}, "50348": {"poster_path": "/bTXtxFUyqQ6T9FRa3ajSdMtwnAj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85412898, "overview": "A lawyer conducts business from the back of his Lincoln town car while representing a high-profile client in Beverly Hills.", "video": false, "id": 50348, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Lincoln Lawyer", "tagline": "This Case is a Dangerous Game of Life and Death", "vote_count": 297, "homepage": "http://www.thelincolnlawyermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1189340", "adult": false, "backdrop_path": "/zxN5XhQKDT5GwlpZo7yKxDAJMyQ.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2011-03-18", "popularity": 1.01863677935718, "original_title": "The Lincoln Lawyer", "budget": 40000000, "cast": [{"name": "Matthew McConaughey", "character": "Mickey Haller", "id": 10297, "credit_id": "52fe47c4c3a36847f8147165", "cast_id": 2, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Marisa Tomei", "character": "Maggie McPherson", "id": 3141, "credit_id": "52fe47c4c3a36847f8147179", "cast_id": 10, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 1}, {"name": "Ryan Phillippe", "character": "Louis Roulet", "id": 11864, "credit_id": "52fe47c4c3a36847f8147169", "cast_id": 5, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 2}, {"name": "William H. Macy", "character": "Frank Levin", "id": 3905, "credit_id": "52fe47c4c3a36847f814717d", "cast_id": 11, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 3}, {"name": "Josh Lucas", "character": "Ted Minton", "id": 6164, "credit_id": "52fe47c4c3a36847f8147175", "cast_id": 9, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 4}, {"name": "John Leguizamo", "character": "Val Valenzuela", "id": 5723, "credit_id": "52fe47c4c3a36847f8147181", "cast_id": 12, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 4}, {"name": "Michael Pe\u00f1a", "character": "Jesus Martinez", "id": 454, "credit_id": "52fe47c4c3a36847f8147185", "cast_id": 13, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 6}, {"name": "Bob Gunton", "character": "Cecil Dobbs", "id": 4029, "credit_id": "52fe47c4c3a36847f8147189", "cast_id": 14, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 7}, {"name": "Frances Fisher", "character": "Mary Windsor", "id": 3713, "credit_id": "52fe47c4c3a36847f814718d", "cast_id": 15, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 8}, {"name": "Bryan Cranston", "character": "Detective Lankford", "id": 17419, "credit_id": "52fe47c4c3a36847f8147191", "cast_id": 16, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 9}, {"name": "Trace Adkins", "character": "Eddie Vogel", "id": 85477, "credit_id": "52fe47c4c3a36847f8147195", "cast_id": 17, "profile_path": "/5NWUf6smOiHH4MEev78shCTKQ1g.jpg", "order": 10}, {"name": "Laurence Mason", "character": "Earl", "id": 65141, "credit_id": "52fe47c4c3a36847f8147199", "cast_id": 18, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 10}, {"name": "Margarita Levieva", "character": "Reggie Campo", "id": 59237, "credit_id": "52fe47c4c3a36847f8147171", "cast_id": 8, "profile_path": "/5YDkouUZf4khoFfNoWps3PK5JQf.jpg", "order": 11}, {"name": "Michaela Conlin", "character": "Heidi Sobel", "id": 122237, "credit_id": "52fe47c4c3a36847f814716d", "cast_id": 7, "profile_path": "/1OdGRsdd2hJvJQx84WwJkkJ6qFe.jpg", "order": 13}, {"name": "Pell James", "character": "Lorna", "id": 4441, "credit_id": "52fe47c4c3a36847f814719d", "cast_id": 19, "profile_path": "/dUDHtnP8dmGI4pV0S2fjuFQ5XzS.jpg", "order": 14}, {"name": "Shea Whigham", "character": "DJ Corliss", "id": 74242, "credit_id": "52fe47c4c3a36847f81471a1", "cast_id": 20, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 15}, {"name": "Katherine Moennig", "character": "Gloria", "id": 122231, "credit_id": "52fe47c4c3a36847f81471a5", "cast_id": 21, "profile_path": "/rAXQOstsWgKqlVjYjeRx1R3AP7c.jpg", "order": 16}, {"name": "Michael Par\u00e9", "character": "Detective Kurlen", "id": 60650, "credit_id": "52fe47c4c3a36847f81471a9", "cast_id": 22, "profile_path": "/g1cVLWWAgl3J1nNFhg67qXs8GUT.jpg", "order": 17}], "directors": [{"name": "Brad Furman", "department": "Directing", "job": "Director", "credit_id": "52fe47c4c3a36847f8147161", "profile_path": "/o1NbAcrBHaX8Qsk2AV95TEY0iLR.jpg", "id": 144221}], "vote_average": 6.7, "runtime": 119}, "9390": {"poster_path": "/99YTEdKOKDRClsscOpJfdkbaTrQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 273552592, "overview": "Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.", "video": false, "id": 9390, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Jerry Maguire", "tagline": "Everybody loved him... Everybody disappeared.", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116695", "adult": false, "backdrop_path": "/t2QU2UEOP4ftYnG00z53FaC32hs.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Gracie Films", "id": 18}], "release_date": "1996-12-06", "popularity": 0.766436146286402, "original_title": "Jerry Maguire", "budget": 50000000, "cast": [{"name": "Tom Cruise", "character": "Jerry Maguire", "id": 500, "credit_id": "52fe44f1c3a36847f80b33a9", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Cuba Gooding Jr.", "character": "Rod Tidwell", "id": 9777, "credit_id": "52fe44f1c3a36847f80b33ad", "cast_id": 2, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Dorothy Boyd", "id": 9137, "credit_id": "52fe44f1c3a36847f80b33b1", "cast_id": 3, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Kelly Preston", "character": "Avery Bishop", "id": 11164, "credit_id": "52fe44f1c3a36847f80b33b5", "cast_id": 4, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 3}, {"name": "Alison Armitage", "character": "Former Girlfriend", "id": 142955, "credit_id": "52fe44f1c3a36847f80b33ef", "cast_id": 14, "profile_path": "/9rUyIhzfYgmxWJlo4yJDXXGpxlw.jpg", "order": 4}, {"name": "Jonathan Lipnicki", "character": "Ray Boyd", "id": 67778, "credit_id": "52fe44f1c3a36847f80b33f3", "cast_id": 15, "profile_path": "/mHyAL6ByNXxMLzfykgLTmd4tvMr.jpg", "order": 5}, {"name": "Jerry O'Connell", "character": "Frank Cushman", "id": 3035, "credit_id": "52fe44f1c3a36847f80b33f7", "cast_id": 16, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 6}, {"name": "Jay Mohr", "character": "Bob Sugar", "id": 12217, "credit_id": "52fe44f1c3a36847f80b33fb", "cast_id": 17, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 7}, {"name": "Bonnie Hunt", "character": "Laurel Boyd", "id": 5149, "credit_id": "52fe44f1c3a36847f80b33ff", "cast_id": 18, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 8}, {"name": "Regina King", "character": "Marcee Tidwell", "id": 9788, "credit_id": "52fe44f1c3a36847f80b3403", "cast_id": 19, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 9}, {"name": "Todd Louiso", "character": "Chad the Nanny", "id": 3230, "credit_id": "52fe44f1c3a36847f80b3407", "cast_id": 20, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 10}, {"name": "Mark Pellington", "character": "Bill Dooler", "id": 11676, "credit_id": "52fe44f1c3a36847f80b340b", "cast_id": 21, "profile_path": "/7TR3DIbvsLKHrCkylSJgySGcs3Z.jpg", "order": 11}, {"name": "Jeremy Suarez", "character": "Tyson Tidwell", "id": 61959, "credit_id": "52fe44f1c3a36847f80b340f", "cast_id": 22, "profile_path": "/ktydBVBvNUlmfJj56aYwJ0O31JN.jpg", "order": 12}, {"name": "Jared Jussim", "character": "Dicky Fox", "id": 1076193, "credit_id": "52fe44f1c3a36847f80b3413", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Benjamin Kimball Smith", "character": "Keith Cushman", "id": 1076194, "credit_id": "52fe44f1c3a36847f80b3417", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Ingrid Beer", "character": "Anne-Louise", "id": 183716, "credit_id": "52fe44f1c3a36847f80b341b", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Donal Logue", "character": "Rick", "id": 10825, "credit_id": "546eebc9c3a3682fa4001298", "cast_id": 26, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 16}, {"name": "Drake Bell", "character": "Jesse Remo", "id": 3272, "credit_id": "546eebd992514112f300133b", "cast_id": 27, "profile_path": "/5GqFeFdNXRzb9DwlFSfBef8Pmb0.jpg", "order": 17}, {"name": "Eric Stoltz", "character": "Ethan Valhere", "id": 7036, "credit_id": "546eebe7c3a3682fa700121f", "cast_id": 28, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 18}, {"name": "Beau Bridges", "character": "Matt Cushman", "id": 2222, "credit_id": "546eebfd92514112e7001235", "cast_id": 29, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 19}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b33bb", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.3, "runtime": 139}, "9392": {"poster_path": "/ldzNyitGjBLjjOzLTaQyYDMVDF1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "After a tragic accident, six friends reunite for a caving expedition. Their adventure soon goes horribly wrong when a collapse traps them deep underground and they find themselves pursued by bloodthirsty creatures. As their friendships deteriorate, they find themselves in a desperate struggle to survive the creatures and each other.", "video": false, "id": 9392, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}], "title": "The Descent", "tagline": "Scream your last breath.", "vote_count": 213, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/o6nAtQxqqANvRzpr4d1LqGvzlZ8.jpg", "id": 87258, "name": "The Descent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0435625", "adult": false, "backdrop_path": "/yiJonnQUW5luTsQy2KuUuOZqtjM.jpg", "production_companies": [{"name": "Path\u00e9", "id": 7981}, {"name": "Celador Films", "id": 3573}, {"name": "Northmen Productions", "id": 45785}], "release_date": "2005-07-08", "popularity": 1.15488783657451, "original_title": "The Descent", "budget": 0, "cast": [{"name": "Shauna Macdonald", "character": "Sarah", "id": 57574, "credit_id": "52fe44f1c3a36847f80b34a1", "cast_id": 1, "profile_path": "/9FInrBy6ngLURnncUCbWk3iLsJE.jpg", "order": 0}, {"name": "Natalie Mendoza", "character": "Juno", "id": 57575, "credit_id": "52fe44f1c3a36847f80b34a5", "cast_id": 2, "profile_path": "/4yeZSEKGvUiCcljsFub2SxFGGuz.jpg", "order": 1}, {"name": "Alex Reid", "character": "Beth", "id": 57576, "credit_id": "52fe44f1c3a36847f80b34a9", "cast_id": 3, "profile_path": "/94VHUmTOFYLmzNlEzcaTuGhNe7p.jpg", "order": 2}, {"name": "Saskia Mulder", "character": "Rebecca", "id": 57577, "credit_id": "52fe44f1c3a36847f80b34ad", "cast_id": 4, "profile_path": "/uvoxZyLCKFoGuHle4vfAzYIb3Uc.jpg", "order": 3}, {"name": "MyAnna Buring", "character": "Sam", "id": 57578, "credit_id": "52fe44f1c3a36847f80b34b1", "cast_id": 5, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 4}, {"name": "Nora-Jane Noone", "character": "Holly", "id": 53998, "credit_id": "52fe44f1c3a36847f80b34b5", "cast_id": 6, "profile_path": "/fhXObJ2HvASXvbfPHxAPzc9ueZc.jpg", "order": 5}, {"name": "Oliver Milburn", "character": "Paul", "id": 95023, "credit_id": "52fe44f1c3a36847f80b34e9", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Molly Kayll", "character": "Jessica", "id": 998202, "credit_id": "52fe44f1c3a36847f80b34ed", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Craig Conway", "character": "Crawler - Scar", "id": 94956, "credit_id": "52fe44f1c3a36847f80b34f1", "cast_id": 18, "profile_path": "/trFSWzoXNgWYFMicJSlBQhphGNp.jpg", "order": 8}, {"name": "Leslie Simpson", "character": "Crawler", "id": 944315, "credit_id": "52fe44f1c3a36847f80b34f5", "cast_id": 19, "profile_path": null, "order": 9}], "directors": [{"name": "Neil Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b34bb", "profile_path": "/Au5p9cFlj2XVoVIECQ40ruOp1Qz.jpg", "id": 57581}], "vote_average": 6.9, "runtime": 99}, "200": {"poster_path": "/sQdiBAMZ8mq9Eb9fQX1Z7HZHUVs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118000000, "overview": "When an alien race and factions within Starfleet attempt to take over a planet that has \"regenerative\" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.", "video": false, "id": 200, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: Insurrection", "tagline": "The battle for paradise has begun.", "vote_count": 135, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120844", "adult": false, "backdrop_path": "/yaattgmMQ9dLg6n8XPXAER8WI2C.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1998-12-10", "popularity": 0.640618460895062, "original_title": "Star Trek: Insurrection", "budget": 70000000, "cast": [{"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4226c3a36847f8007c27", "cast_id": 8, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Jonathan Frakes", "character": "Commander William T. Riker", "id": 2388, "credit_id": "52fe4226c3a36847f8007c2b", "cast_id": 9, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 1}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4226c3a36847f8007c8b", "cast_id": 30, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 2}, {"name": "LeVar Burton", "character": "Lt. Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4226c3a36847f8007c2f", "cast_id": 11, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 3}, {"name": "Gates McFadden", "character": "Doctor Beverly Crusher", "id": 2392, "credit_id": "52fe4226c3a36847f8007c33", "cast_id": 13, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 4}, {"name": "Marina Sirtis", "character": "Counselor Deanna Troi", "id": 2393, "credit_id": "52fe4226c3a36847f8007c37", "cast_id": 14, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 5}, {"name": "F. Murray Abraham", "character": "Ad'har Ru'afo", "id": 1164, "credit_id": "52fe4226c3a36847f8007c3b", "cast_id": 15, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 6}, {"name": "Anthony Zerbe", "character": "Vice-Adm. Dougherty", "id": 2516, "credit_id": "52fe4226c3a36847f8007c3f", "cast_id": 16, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 7}, {"name": "Donna Murphy", "character": "Anij", "id": 2517, "credit_id": "52fe4226c3a36847f8007c43", "cast_id": 17, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 8}, {"name": "Gregg Henry", "character": "Gallatin", "id": 2518, "credit_id": "52fe4226c3a36847f8007c47", "cast_id": 18, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 9}, {"name": "Michael Dorn", "character": "Lt. Commander Worf", "id": 2391, "credit_id": "52fe4226c3a36847f8007c87", "cast_id": 29, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 10}], "directors": [{"name": "Jonathan Frakes", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007bff", "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "id": 2388}], "vote_average": 6.3, "runtime": 103}, "9394": {"poster_path": "/5b38dfzKqUmTY2HRYrdKJ8vFWAR.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "The simple story has the pair coming to the rescue of peace-loving Mormons when land-hungry Major Harriman sends his bullies to harass them into giving up their fertile valley. Trinity and Bambino manage to save the Mormons and send the bad guys packing with slapstick humor instead of excessive violence, saving the day.", "video": false, "id": 9394, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "They Call Me Trinity", "tagline": "Look out! Here comes Trinity...", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6DNoTs6QscEGO5N6qNISWLwJBKO.jpg", "poster_path": "/wFsAGHW8eUG0kVbcEecgoM8H0t0.jpg", "id": 212525, "name": "Trinity Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0067355", "adult": false, "backdrop_path": "/iE2Y2s15xQcNTG3x7gU2gZVvZ9x.jpg", "production_companies": [{"name": "West Film", "id": 4241}], "release_date": "1970-12-22", "popularity": 0.833975569977417, "original_title": "Lo chiamavano Trinit\u00e0...", "budget": 0, "cast": [{"name": "Terence Hill", "character": "Trinity", "id": 15140, "credit_id": "52fe44f2c3a36847f80b359f", "cast_id": 1, "profile_path": "/ayNVIUCB3b0Hj88a5i9qH88Df11.jpg", "order": 0}, {"name": "Bud Spencer", "character": "Bambino", "id": 18841, "credit_id": "52fe44f2c3a36847f80b35a3", "cast_id": 2, "profile_path": "/9DbwXqkoMLBqZaQYEeSDX934mTG.jpg", "order": 1}, {"name": "Steffen Zacharias", "character": "Jonathan", "id": 132262, "credit_id": "534cd5ce0e0a2661b1000a25", "cast_id": 18, "profile_path": "/xP04arHkZvDaSC51IhcAgq9wINk.jpg", "order": 2}, {"name": "Dan Sturkie", "character": "Tobias", "id": 227037, "credit_id": "53550aaec3a3681da50056f0", "cast_id": 19, "profile_path": "/wXALwbkgtNWcxQNy4gLMMW1U5g3.jpg", "order": 3}, {"name": "Gisela Hahn", "character": "Sarah", "id": 32370, "credit_id": "53550abcc3a3681da50056f3", "cast_id": 20, "profile_path": "/cU2XmB2TLI0kNrHnphWZLd9C0Yo.jpg", "order": 4}, {"name": "Elena Pedemonte", "character": "Judith", "id": 57588, "credit_id": "52fe44f2c3a36847f80b35ab", "cast_id": 4, "profile_path": "/tS7nxZ0nQb1Qxs5iiOIwQJooxYQ.jpg", "order": 5}, {"name": "Farley Granger", "character": "Major Harriman", "id": 12497, "credit_id": "52fe44f2c3a36847f80b35a7", "cast_id": 3, "profile_path": "/uMawvHjbqcg2s1UnedJwD9Njzy5.jpg", "order": 6}, {"name": "Ezio Marano", "character": "Frank/Weasel", "id": 1076431, "credit_id": "53550ac4c3a3681d980057ca", "cast_id": 21, "profile_path": "/7eXyPWyc0Y4ulDHP4jF51UW1nxI.jpg", "order": 7}, {"name": "Luciano Rossi", "character": "Timmy", "id": 43240, "credit_id": "53550accc3a3681da50056f6", "cast_id": 22, "profile_path": "/dsyndJvqLtVVnWaVTyiJKmg5uCq.jpg", "order": 8}, {"name": "Michele Cimarosa", "character": "Mexican Prisoner", "id": 543680, "credit_id": "53f17ba30e0a2675a9004e8f", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Ugo Sasso", "character": "Sheriff", "id": 46546, "credit_id": "53550ad4c3a3681d93005867", "cast_id": 23, "profile_path": "/rr3KQt6w1Rr8ynuIQtrHr29WkpM.jpg", "order": 10}, {"name": "Remo Capitani", "character": "Mezcal", "id": 33811, "credit_id": "53550adcc3a3681d810059d8", "cast_id": 24, "profile_path": "/sCbWlri6iFItqrMXCy2DWGrAZJJ.jpg", "order": 11}, {"name": "Riccardo Pizzuti", "character": "Jeff", "id": 103617, "credit_id": "53550ae2c3a3681d980057cd", "cast_id": 25, "profile_path": "/i592A0oxM1N1RyuukB7kl7xZmFT.jpg", "order": 12}, {"name": "Paolo Magalotti", "character": "Bandit", "id": 237344, "credit_id": "53f0260bc3a3685ad900244c", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Thomas Rudy", "character": "Emiliano", "id": 147000, "credit_id": "53f18497c3a3685aff003d43", "cast_id": 31, "profile_path": "/5cy1LXr6tUb2ZZjVqo2ZGlZceGV.jpg", "order": 14}, {"name": "Antonio Monselesan", "character": "Wildcat Hendricks", "id": 1140498, "credit_id": "53f17e160e0a2675b2004f33", "cast_id": 30, "profile_path": "/9OZyCBPlZkNnZOU62iY29TtwTRo.jpg", "order": 15}, {"name": "Gaetano Imbr\u00f3", "character": "Blond Bounty Killer", "id": 1019931, "credit_id": "53f186230e0a2675b8004ff9", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Franco Marletta", "character": "", "id": 1055730, "credit_id": "53f187900e0a2675b2005189", "cast_id": 33, "profile_path": "/gAjSxYeRFgkkgF73UClpgIXgg8.jpg", "order": 17}, {"name": "Luigi Bonos", "character": "Ozgur", "id": 32675, "credit_id": "53550aeac3a3681d7b005a09", "cast_id": 26, "profile_path": null, "order": 18}], "directors": [{"name": "Enzo Barboni", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b35b1", "profile_path": null, "id": 56033}], "vote_average": 7.2, "runtime": 106}, "9396": {"poster_path": "/m8DRsyNMD1pzWIgOb7X6XN7R3y0.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Australian outback expert protects his New York love from gangsters who've followed her down under.", "video": false, "id": 9396, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Crocodile Dundee II", "tagline": "The world's favourite adventurer is back for more! much more!", "vote_count": 71, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pI2EqYQCzCRnrpiFHl8rrGp1qW9.jpg", "poster_path": "/byOilboEpWHFiQ7klAZ4LZ6NN0t.jpg", "id": 9332, "name": "Crocodile Dundee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092493", "adult": false, "backdrop_path": "/e4GKAesuV3GhCTvP4EeuSDJ2vPg.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-05-19", "popularity": 0.535066983691846, "original_title": "Crocodile Dundee II", "budget": 0, "cast": [{"name": "Paul Hogan", "character": "Michael J. 'Crocodile' Dundee", "id": 57147, "credit_id": "52fe44f2c3a36847f80b368b", "cast_id": 1, "profile_path": "/hNR9JKnEsEKgzKcSBcqtHCkDynQ.jpg", "order": 0}, {"name": "Linda Kozlowski", "character": "Sue Charlton", "id": 57166, "credit_id": "52fe44f2c3a36847f80b368f", "cast_id": 2, "profile_path": "/9qgl8JSTVOLtVVPshXclSGxiP57.jpg", "order": 1}, {"name": "John Meillon", "character": "Walter Reilly", "id": 42841, "credit_id": "52fe44f2c3a36847f80b3693", "cast_id": 3, "profile_path": "/dKsqaE8GZ2YjdFREpe17QVVnsGJ.jpg", "order": 2}, {"name": "Ernie Dingo", "character": "Charlie", "id": 57593, "credit_id": "52fe44f2c3a36847f80b3697", "cast_id": 4, "profile_path": "/1G11aiwavGIivegyLsh9QhKuSlH.jpg", "order": 3}, {"name": "Charles S. Dutton", "character": "Leroy Brown", "id": 17764, "credit_id": "54de23f4925141194b001bb6", "cast_id": 15, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Jose", "id": 40481, "credit_id": "54de2412925141195000197d", "cast_id": 16, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Stephen Root", "character": "DEA Agent", "id": 17401, "credit_id": "54de24559251411956001a2a", "cast_id": 17, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}, {"name": "Dennis Boutsikaris", "character": "Bob Tanner", "id": 118937, "credit_id": "54de2474925141194b001bce", "cast_id": 18, "profile_path": "/uq1dmNevTzOw62hbLhE6JMu7p1H.jpg", "order": 7}, {"name": "Tatyana Ali", "character": "Park Girl", "id": 4996, "credit_id": "54de24afc3a3684558001ab1", "cast_id": 19, "profile_path": "/7Mzcrk00fmLKS1VwQwouTHmwOXP.jpg", "order": 8}, {"name": "Colin Quinn", "character": "Onlooker at Mansion", "id": 1219901, "credit_id": "54de24d7c3a3684558001abb", "cast_id": 20, "profile_path": "/qKP3sURBluc5NG2g5LrKoVnY5iG.jpg", "order": 9}], "directors": [{"name": "John Cornell", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b369d", "profile_path": null, "id": 57594}], "vote_average": 5.9, "runtime": 110}, "9397": {"poster_path": "/l1jIlOD5f2wr1U4fdt1OEwj6sHe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98376292, "overview": "College professor Ira Kane is invited by geology teacher/girls' volleyball coach Harry Block to investigate a meteorite that has crashed through the surface rock into a network of underground caverns under the sleepy town of Glen Canyon, Arizona. They collect a sample and find that it consists extraterrestrial, single-celled, nitrogen-based organisms, which evolve rapidly.", "video": false, "id": 9397, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Evolution", "tagline": "Coming to wipe that silly smile off your planet.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251075", "adult": false, "backdrop_path": "/fhWAnKEq3FmEl5wjXCOPWesD1rQ.jpg", "production_companies": [{"name": "Montecito Picture Company, The", "id": 4607}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2001-06-07", "popularity": 0.648201313987922, "original_title": "Evolution", "budget": 80000000, "cast": [{"name": "David Duchovny", "character": "Dr. Ira Kane", "id": 12640, "credit_id": "52fe44f2c3a36847f80b370d", "cast_id": 1, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Dr. Allison Reed, CDC", "id": 1231, "credit_id": "52fe44f2c3a36847f80b3711", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Orlando Jones", "character": "Prof. Harry Phineas Block", "id": 18270, "credit_id": "52fe44f2c3a36847f80b3715", "cast_id": 3, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 2}, {"name": "Seann William Scott", "character": "Wayne Grey", "id": 57599, "credit_id": "52fe44f2c3a36847f80b3719", "cast_id": 4, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 3}, {"name": "Ted Levine", "character": "General Russell Woodman", "id": 15854, "credit_id": "52fe44f2c3a36847f80b371d", "cast_id": 5, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 4}, {"name": "Dan Aykroyd", "character": "Governor Lewis", "id": 707, "credit_id": "52fe44f2c3a36847f80b3721", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 5}, {"name": "Ty Burrell", "character": "Colonel Flemming", "id": 15232, "credit_id": "52fe44f2c3a36847f80b377f", "cast_id": 22, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 6}, {"name": "Andrew Bowen", "character": "Road Worker", "id": 94853, "credit_id": "52fe44f2c3a36847f80b3783", "cast_id": 23, "profile_path": "/pkSk4U3P9dkyxlmlg2csR6OxmX8.jpg", "order": 7}, {"name": "Sarah Silverman", "character": "Denise", "id": 7404, "credit_id": "52fe44f2c3a36847f80b3787", "cast_id": 24, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 8}, {"name": "Katharine Towne", "character": "Nadine", "id": 15012, "credit_id": "52fe44f2c3a36847f80b378b", "cast_id": 25, "profile_path": "/33AK0lDtxIhh7125JC7daDWMSkC.jpg", "order": 9}, {"name": "Stephanie Hodge", "character": "Jill Mason", "id": 1216510, "credit_id": "52fe44f2c3a36847f80b378f", "cast_id": 26, "profile_path": "/9l85xTB0PQH4dHP8U3lDuFTJlOg.jpg", "order": 10}, {"name": "Gregory Itzin", "character": "Cartwright", "id": 21142, "credit_id": "54f992d9c3a3683c55001243", "cast_id": 106, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 11}, {"name": "Michelle Wolff", "character": "Carla", "id": 179019, "credit_id": "54f992f7c3a3683c55001249", "cast_id": 107, "profile_path": "/M0K6tlOOpD7eK1VSEBx2BafpHD.jpg", "order": 12}, {"name": "Steven Gilborn", "character": "Judge Guilder", "id": 31032, "credit_id": "54f99377c3a36878d2001678", "cast_id": 108, "profile_path": null, "order": 13}, {"name": "Wayne Duvall", "character": "Dr. Paulson", "id": 1470, "credit_id": "54f9939d9251414392001527", "cast_id": 109, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 14}, {"name": "Kyle Gass", "character": "Officer Drake", "id": 22297, "credit_id": "54f993bd9251416fab0011ce", "cast_id": 110, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 15}, {"name": "Jerry Trainor", "character": "Tommy", "id": 111512, "credit_id": "54f993eac3a36878e1001710", "cast_id": 111, "profile_path": "/sPElk2oZDaH2RE5rtE0STFSBLKY.jpg", "order": 16}, {"name": "Jennifer Savidge", "character": "Clare", "id": 28165, "credit_id": "54f99402925141439f001488", "cast_id": 112, "profile_path": null, "order": 17}, {"name": "Wendy Braun", "character": "Nurse Tate", "id": 177164, "credit_id": "54f9941b925141439f00148b", "cast_id": 113, "profile_path": "/8wqSLpIqgtzU5ZoIEckWpd8KpEO.jpg", "order": 18}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b3727", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.3, "runtime": 101}, "9398": {"poster_path": "/zNBryDxDAScAgKat8X18K2Jtg6k.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60780981, "overview": "Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic \"he's so hot right now\" Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. Its a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories can Derek make the world safe.", "video": false, "id": 9398, "genres": [{"id": 35, "name": "Comedy"}], "title": "Zoolander", "tagline": "3% Body Fat. 1% Brain Activity.", "vote_count": 248, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0196229", "adult": false, "backdrop_path": "/hN5SsPEmD9oT5ajFXt5lWbl3RMb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Red Hour Productions", "id": 2932}, {"name": "Tenth Planet Productions", "id": 2933}], "release_date": "2001-09-27", "popularity": 0.806554335328155, "original_title": "Zoolander", "budget": 28000000, "cast": [{"name": "Ben Stiller", "character": "Derek Zoolander", "id": 7399, "credit_id": "52fe44f2c3a36847f80b3813", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Hansel", "id": 887, "credit_id": "52fe44f2c3a36847f80b3817", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Christine Taylor", "character": "Matilda Jeffries", "id": 15286, "credit_id": "52fe44f2c3a36847f80b381b", "cast_id": 3, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 2}, {"name": "Will Ferrell", "character": "Mugatu", "id": 23659, "credit_id": "52fe44f2c3a36847f80b381f", "cast_id": 4, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 3}, {"name": "Milla Jovovich", "character": "Katinka", "id": 63, "credit_id": "52fe44f2c3a36847f80b3823", "cast_id": 5, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 4}, {"name": "Jerry Stiller", "character": "Maury Ballstein", "id": 26042, "credit_id": "52fe44f2c3a36847f80b3827", "cast_id": 6, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 5}, {"name": "David Duchovny", "character": "J.P. Prewitt", "id": 12640, "credit_id": "52fe44f2c3a36847f80b382b", "cast_id": 7, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 6}, {"name": "Jon Voight", "character": "Larry Zoolander", "id": 10127, "credit_id": "52fe44f2c3a36847f80b382f", "cast_id": 8, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 7}, {"name": "Donald Trump", "character": "Himself", "id": 33663, "credit_id": "52fe44f2c3a36847f80b3833", "cast_id": 9, "profile_path": "/n775kiJGgMC82R7s4T2jQMPNqQh.jpg", "order": 8}, {"name": "Christian Slater", "character": "Himself", "id": 2224, "credit_id": "52fe44f2c3a36847f80b3837", "cast_id": 10, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 9}, {"name": "Tom Ford", "character": "Himself", "id": 77066, "credit_id": "52fe44f2c3a36847f80b38a7", "cast_id": 29, "profile_path": "/dNWHZ8xb6w7CSR4KW5n9aRPPeqk.jpg", "order": 10}, {"name": "Cuba Gooding Jr.", "character": "Himself", "id": 9777, "credit_id": "52fe44f2c3a36847f80b38ab", "cast_id": 30, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 11}, {"name": "Steve Kmetko", "character": "Himself", "id": 77067, "credit_id": "52fe44f2c3a36847f80b38af", "cast_id": 31, "profile_path": "/laWiYZQz9jsdpFy0xcJjl9Bt98W.jpg", "order": 12}, {"name": "Tommy Hilfiger", "character": "Himself", "id": 77068, "credit_id": "52fe44f2c3a36847f80b38b3", "cast_id": 32, "profile_path": "/sACghyt7NhURMXgnS1271iYzXzt.jpg", "order": 13}, {"name": "Natalie Portman", "character": "Herself", "id": 524, "credit_id": "52fe44f2c3a36847f80b38b7", "cast_id": 33, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 14}, {"name": "Lenny Kravitz", "character": "Himself", "id": 77069, "credit_id": "52fe44f2c3a36847f80b38bb", "cast_id": 34, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 15}, {"name": "Gwen Stefani", "character": "Herself", "id": 77070, "credit_id": "52fe44f2c3a36847f80b38bf", "cast_id": 35, "profile_path": "/3rXTUPjqPkSCGn5EgIinphBsXmm.jpg", "order": 16}, {"name": "Heidi Klum", "character": "Herself", "id": 10584, "credit_id": "52fe44f2c3a36847f80b38c3", "cast_id": 36, "profile_path": "/paqUEfaU9ERt0y0bLtD4vHa9oYl.jpg", "order": 17}, {"name": "Mark Ronson", "character": "Himself", "id": 77071, "credit_id": "52fe44f2c3a36847f80b38c7", "cast_id": 37, "profile_path": "/xGYuWeHJwGQfdrc8qPdChR8mel.jpg", "order": 18}, {"name": "Paris Hilton", "character": "Herself", "id": 38406, "credit_id": "52fe44f2c3a36847f80b38cb", "cast_id": 38, "profile_path": "/fFS3dURYg1NTCshT7XxnFDZ3CNI.jpg", "order": 19}, {"name": "David Bowie", "character": "Himself", "id": 7487, "credit_id": "52fe44f2c3a36847f80b38cf", "cast_id": 39, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 20}, {"name": "Tyson Beckford", "character": "Himself", "id": 77072, "credit_id": "52fe44f2c3a36847f80b38d3", "cast_id": 40, "profile_path": "/v1GenKXn7vE36vCLCqDWgaS7bEd.jpg", "order": 21}, {"name": "Fred Durst", "character": "Himself", "id": 29783, "credit_id": "52fe44f2c3a36847f80b38d7", "cast_id": 41, "profile_path": "/2PClxb15HTU3zjAFqakoTiTNteY.jpg", "order": 22}, {"name": "Lance Bass", "character": "Himself", "id": 77073, "credit_id": "52fe44f2c3a36847f80b38db", "cast_id": 42, "profile_path": "/swHCsJyM3bEZB3zaEHPNjmkrB4B.jpg", "order": 23}, {"name": "Lil' Kim", "character": "Herself", "id": 57553, "credit_id": "52fe44f2c3a36847f80b38df", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Garry Shandling", "character": "Himself", "id": 52865, "credit_id": "52fe44f2c3a36847f80b38e3", "cast_id": 44, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 25}, {"name": "Claudia Schiffer", "character": "Herself", "id": 33163, "credit_id": "52fe44f2c3a36847f80b38e7", "cast_id": 45, "profile_path": "/pIF64tY07cbYo3IlnFcPB3KJl5c.jpg", "order": 26}, {"name": "Veronica Webb", "character": "Herself", "id": 77074, "credit_id": "52fe44f2c3a36847f80b38eb", "cast_id": 46, "profile_path": "/11UIX8eM2XY4KZQ4eoiptsQpM4k.jpg", "order": 27}, {"name": "Lukas Haas", "character": "Himself", "id": 526, "credit_id": "52fe44f2c3a36847f80b38ef", "cast_id": 47, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 28}, {"name": "Justin Theroux", "character": "Evil DJ", "id": 15009, "credit_id": "52fe44f2c3a36847f80b38f3", "cast_id": 48, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 29}, {"name": "Andy Dick", "character": "Olga the Masseuse", "id": 43120, "credit_id": "52fe44f2c3a36847f80b38f7", "cast_id": 49, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 30}, {"name": "Jennifer Coolidge", "character": "American Designer", "id": 38334, "credit_id": "52fe44f2c3a36847f80b38fb", "cast_id": 50, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 31}, {"name": "Nora Dunn", "character": "British Designer", "id": 4496, "credit_id": "52fe44f2c3a36847f80b38ff", "cast_id": 51, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 32}, {"name": "James Marsden", "character": "John Wilkes Booth", "id": 11006, "credit_id": "52fe44f2c3a36847f80b3903", "cast_id": 52, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 33}, {"name": "Patton Oswalt", "character": "Monkey Photographer", "id": 10872, "credit_id": "52fe44f2c3a36847f80b3907", "cast_id": 53, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 34}, {"name": "Victoria Beckham", "character": "Herself", "id": 47983, "credit_id": "52fe44f2c3a36847f80b390b", "cast_id": 54, "profile_path": "/bMRDMbX5NsMW9VNpo19KXl865Vi.jpg", "order": 35}, {"name": "Sandra Bernhard", "character": "Herself", "id": 3664, "credit_id": "52fe44f2c3a36847f80b390f", "cast_id": 55, "profile_path": "/nYCnCtbbWjrMsmbanQLGhRM3FXh.jpg", "order": 36}, {"name": "Stephen Dorff", "character": "Himself", "id": 10822, "credit_id": "52fe44f2c3a36847f80b3913", "cast_id": 56, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 37}, {"name": "Winona Ryder", "character": "Herself", "id": 1920, "credit_id": "52fe44f2c3a36847f80b3917", "cast_id": 57, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 38}, {"name": "Vince Vaughn", "character": "Luke Zoolander", "id": 4937, "credit_id": "52fe44f2c3a36847f80b391b", "cast_id": 58, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 39}, {"name": "Billy Zane", "character": "Himself", "id": 1954, "credit_id": "52fe44f3c3a36847f80b391f", "cast_id": 59, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 40}, {"name": "Fabio", "character": "Himself", "id": 170874, "credit_id": "52fe44f3c3a36847f80b3923", "cast_id": 60, "profile_path": "/bonrI0fvve4BLf68SVLGLHFc5Xc.jpg", "order": 41}, {"name": "Alexander Skarsg\u00e5rd", "character": "Meekus", "id": 28846, "credit_id": "52fe44f3c3a36847f80b3927", "cast_id": 61, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 42}, {"name": "Judah Friedlander", "character": "Scrappy Zoolander", "id": 52860, "credit_id": "52fe44f3c3a36847f80b392b", "cast_id": 62, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 43}, {"name": "Nathan Lee Graham", "character": "Todd", "id": 203809, "credit_id": "52fe44f3c3a36847f80b392f", "cast_id": 63, "profile_path": null, "order": 44}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b383d", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 6.0, "runtime": 89}, "201": {"poster_path": "/n4TpLWPi062AofIq4kwmaPNBSvA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67312826, "overview": "En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.", "video": false, "id": 201, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: Nemesis", "tagline": "A generation's final journey... begins.", "vote_count": 164, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253754", "adult": false, "backdrop_path": "/sIpnn6MpNyKfBaWEnED063pmH9Z.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2002-12-12", "popularity": 0.436038193031324, "original_title": "Star Trek: Nemesis", "budget": 60000000, "cast": [{"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4226c3a36847f8007cf1", "cast_id": 6, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Jonathan Frakes", "character": "Captain William T. Riker", "id": 2388, "credit_id": "52fe4226c3a36847f8007cf5", "cast_id": 7, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 1}, {"name": "LeVar Burton", "character": "Lt. Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4226c3a36847f8007cf9", "cast_id": 9, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 2}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4226c3a36847f8007d75", "cast_id": 35, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 3}, {"name": "Gates McFadden", "character": "Dr. Beverly Crusher", "id": 2392, "credit_id": "52fe4226c3a36847f8007cfd", "cast_id": 11, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 4}, {"name": "Marina Sirtis", "character": "Counselor Deanna Troi-Riker", "id": 2393, "credit_id": "52fe4226c3a36847f8007d01", "cast_id": 12, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 5}, {"name": "Tom Hardy", "character": "Praetor Shinzon", "id": 2524, "credit_id": "52fe4226c3a36847f8007d05", "cast_id": 13, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 6}, {"name": "Ron Perlman", "character": "The Reman Viceroy", "id": 2372, "credit_id": "52fe4226c3a36847f8007d09", "cast_id": 14, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 7}, {"name": "Shannon Cochran", "character": "Senator Tal'aura", "id": 2525, "credit_id": "52fe4226c3a36847f8007d0d", "cast_id": 15, "profile_path": "/x74NDVVXVPxNH5018UyIOEwhLgd.jpg", "order": 8}, {"name": "Dina Meyer", "character": "Commander Donatra", "id": 2133, "credit_id": "52fe4226c3a36847f8007d11", "cast_id": 16, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 9}, {"name": "Michael Dorn", "character": "Lt. Commander Worf", "id": 2391, "credit_id": "52fe4226c3a36847f8007d5d", "cast_id": 29, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 10}, {"name": "Kate Mulgrew", "character": "Admiral Janeway", "id": 35317, "credit_id": "52fe4226c3a36847f8007d61", "cast_id": 30, "profile_path": "/nrIUmghA3qNm0vvc2vEwC5zhAYg.jpg", "order": 11}, {"name": "Wil Wheaton", "character": "Wesley Crusher", "id": 3033, "credit_id": "52fe4226c3a36847f8007d65", "cast_id": 31, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 12}, {"name": "Whoopi Goldberg", "character": "Guinan", "id": 2395, "credit_id": "52fe4226c3a36847f8007d69", "cast_id": 32, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 13}, {"name": "Stuart Baird", "character": "Scimitar Computer (voice)", "id": 2523, "credit_id": "52fe4226c3a36847f8007d6d", "cast_id": 33, "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "order": 14}, {"name": "Alan Dale", "character": "Praetor Hiren", "id": 52760, "credit_id": "52fe4226c3a36847f8007d71", "cast_id": 34, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 15}, {"name": "Bryan Singer", "character": "Kelly (uncredited)", "id": 9032, "credit_id": "5526c71592514172760047e7", "cast_id": 38, "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "order": 16}], "directors": [{"name": "Stuart Baird", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007cd5", "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "id": 2523}], "vote_average": 6.3, "runtime": 117}, "1213": {"poster_path": "/lNVD3OADzRxaqbnN1ThdgB0Fuoe.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128798265, "overview": "Tom Ripley is a charismatic sociopath who makes his way in mid-'50s New York as a rest room attendant and pianist. His skill however is in impersonating other people, forging handwriting and running second-rate scams. Unhappy with his own life, he kills and takes on the persona of somebody else.", "video": false, "id": 1213, "genres": [{"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Talented Mr. Ripley", "tagline": "It's better to be a fake somebody than a real nobody.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134119", "adult": false, "backdrop_path": "/pOm4IfypKwWUKjM5G2SZ2HSrJyM.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1999-12-12", "popularity": 0.693285091458995, "original_title": "The Talented Mr. Ripley", "budget": 40000000, "cast": [{"name": "Matt Damon", "character": "Tom Ripley", "id": 1892, "credit_id": "52fe42e9c3a36847f802c45b", "cast_id": 24, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Marge Sherwood", "id": 12052, "credit_id": "52fe42e9c3a36847f802c45f", "cast_id": 25, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Jude Law", "character": "Dickie Greenleaf", "id": 9642, "credit_id": "52fe42e9c3a36847f802c463", "cast_id": 26, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Cate Blanchett", "character": "Meredith Logue", "id": 112, "credit_id": "52fe42e9c3a36847f802c467", "cast_id": 27, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 3}, {"name": "Philip Seymour Hoffman", "character": "Freddie Miles", "id": 1233, "credit_id": "52fe42e9c3a36847f802c46b", "cast_id": 28, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 4}, {"name": "Jack Davenport", "character": "Peter Smith-Kingsley", "id": 1709, "credit_id": "52fe42e9c3a36847f802c46f", "cast_id": 29, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 5}, {"name": "James Rebhorn", "character": "Herbert Greenleaf", "id": 8986, "credit_id": "52fe42e9c3a36847f802c473", "cast_id": 30, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 6}, {"name": "Sergio Rubini", "character": "Inspector Roverini", "id": 15915, "credit_id": "52fe42e9c3a36847f802c477", "cast_id": 31, "profile_path": "/htMUSOo5EskkZWijO5QCwpEnDxo.jpg", "order": 7}, {"name": "Philip Baker Hall", "character": "Alvin MacCarron", "id": 4492, "credit_id": "52fe42e9c3a36847f802c47b", "cast_id": 32, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 8}, {"name": "Celia Weston", "character": "Aunt Joan", "id": 1989, "credit_id": "52fe42e9c3a36847f802c47f", "cast_id": 33, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 9}, {"name": "Fiorello", "character": "Fausto", "id": 15916, "credit_id": "52fe42e9c3a36847f802c483", "cast_id": 34, "profile_path": "/ww5gS2ZtXw8Bsg2F7YLw1qGvtvR.jpg", "order": 10}, {"name": "Stefania Rocca", "character": "Silvana", "id": 15917, "credit_id": "52fe42e9c3a36847f802c487", "cast_id": 35, "profile_path": "/kYEKFNHvxcv5e6muT1N8dC5eaB6.jpg", "order": 11}, {"name": "Ivano Marescotti", "character": "Colonnello Verrecchia", "id": 15918, "credit_id": "52fe42e9c3a36847f802c48b", "cast_id": 36, "profile_path": "/iPO3IGgwBgroaYnKhp7v7O4PTLo.jpg", "order": 12}, {"name": "Anna Longhi", "character": "Signora Buffi", "id": 15919, "credit_id": "52fe42e9c3a36847f802c48f", "cast_id": 37, "profile_path": "/mQvOhK1UPBfRvw61AjLnVnVQeZG.jpg", "order": 13}, {"name": "Alessandro Fabrizi", "character": "Sergeant Baggio", "id": 15920, "credit_id": "52fe42e9c3a36847f802c493", "cast_id": 38, "profile_path": "/xIvfsVEl1MqO8Tv27kfYMc56MOc.jpg", "order": 14}, {"name": "Lisa Eichhorn", "character": "Emily Greenleaf", "id": 28950, "credit_id": "545909d70e0a26115e0020f0", "cast_id": 39, "profile_path": "/bXHlVhxhpBUztRTxLPbDH97kNy5.jpg", "order": 15}, {"name": "Gretchen Egolf", "character": "Fran", "id": 161847, "credit_id": "54590a71c3a368398f001ffc", "cast_id": 40, "profile_path": "/zuMZ36vJh5KutdXUIufXqqzLFGO.jpg", "order": 16}, {"name": "Jack Willis", "character": "Greenleaf Chaffeur", "id": 1381777, "credit_id": "54590dcdc3a3683993002130", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Frederick Alexander Bosche", "character": "Fran's Boyfriend", "id": 1381779, "credit_id": "545910700e0a261158002172", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Dario Bergesio", "character": "Police Officer", "id": 1381781, "credit_id": "545911370e0a2611650020bf", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Larry Kaplan", "character": "Uncle Ted", "id": 1381788, "credit_id": "54592d940e0a2611550023b5", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Claire Hardwick", "character": "Gucci Assistant", "id": 1312059, "credit_id": "54592f0c0e0a26115e002383", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Antonio Prester", "character": "American Express Clerk (as Nino Prester)", "id": 51637, "credit_id": "5459313f0e0a2611650022ec", "cast_id": 46, "profile_path": "/dcnnyERVw7ZQAiYH97zwBORqJc1.jpg", "order": 22}, {"name": "Lorenzo Mancuso", "character": "Bus Driver", "id": 1381791, "credit_id": "54593319c3a36839a40022cb", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "Onofrio Mancuso", "character": "Priest", "id": 1381792, "credit_id": "5459338d0e0a26115e0023ec", "cast_id": 48, "profile_path": null, "order": 24}, {"name": "Massimo Reale", "character": "Immigration Officer", "id": 1281192, "credit_id": "5459369dc3a36839ac00202c", "cast_id": 49, "profile_path": "/i8w3EBM3ULtwj7dRH3tzvDNNR3o.jpg", "order": 25}, {"name": "Emanuele Carucci Viterbi", "character": "American Express Clerk", "id": 1381796, "credit_id": "54593716c3a36839a70023f4", "cast_id": 50, "profile_path": "/cDyuu8n7sZQjXY7c3Q4RygFOi6o.jpg", "order": 26}, {"name": "Caterina Deregibus", "character": "Dahlia (as Caterina De Regibus)", "id": 1381806, "credit_id": "54593d7d0e0a261162002408", "cast_id": 51, "profile_path": "/5y2ngrYNIzhydXs1uEAxbsGmIZe.jpg", "order": 27}, {"name": "Silvana Bosi", "character": "Ermelinda", "id": 7556, "credit_id": "545940eac3a368398f0023a3", "cast_id": 52, "profile_path": "/ipEi2FrAUO3iUM3MGfQKL5g1Wjm.jpg", "order": 28}, {"name": "Gianfranco Barra", "character": "Desk Manager Aldo", "id": 69068, "credit_id": "5459425a0e0a26116f002317", "cast_id": 53, "profile_path": "/9XDkYhAg6puyNVOMZwngC85BTzj.jpg", "order": 29}, {"name": "Renato Scarpa", "character": "Tailor", "id": 14149, "credit_id": "54594394c3a36839a0002455", "cast_id": 54, "profile_path": "/4jANi4vGdTqFG7a5OjtbM9ikwOe.jpg", "order": 30}, {"name": "Deirdre Lovejoy", "character": "Fighting Neighbor", "id": 58966, "credit_id": "5459440e0e0a261158002528", "cast_id": 55, "profile_path": "/yH2bcRNh4g9ZTRigDgRhVJEF2gh.jpg", "order": 31}, {"name": "Brian Tarantina", "character": "Fighting Neighbor", "id": 4890, "credit_id": "54594457c3a36839ac00212e", "cast_id": 56, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 32}, {"name": "Guy Barker", "character": "Trumpet (Napoli Jazz Septet)", "id": 1381827, "credit_id": "5459489bc3a36839a7002587", "cast_id": 57, "profile_path": null, "order": 33}, {"name": "Bernardo Sassetti", "character": "Piano (Napoli Jazz Septet)", "id": 1076332, "credit_id": "545a7fc1c3a36825fd00088f", "cast_id": 58, "profile_path": "/lT83vz9E8TSShqgDEJiLBPee0Cu.jpg", "order": 34}, {"name": "Perico Sambeat", "character": "Alto Sax (Napoli Jazz Septet)", "id": 1382091, "credit_id": "545a82ce0e0a263f5d00085d", "cast_id": 59, "profile_path": "/yf1LgC5l82cWvWhWpJafzJcTex2.jpg", "order": 35}, {"name": "Gene Calderazzo", "character": "Drums (Napoli Jazz Septet) mer", "id": 1382094, "credit_id": "545a8459c3a3682606000944", "cast_id": 60, "profile_path": "/zzarOCT9ZVdyTmy8hrSV5VYAGvu.jpg", "order": 36}, {"name": "Joseph Lepore", "character": "Double Bass (Napoli Jazz Septet)", "id": 1382098, "credit_id": "545a8782c3a3682603000950", "cast_id": 61, "profile_path": "/ep0UccdchUsbYgrjhbnX5EsbUf4.jpg", "order": 37}, {"name": "Rosario Giuliuni", "character": "Tenor Sax (Napoli Jazz Septet)", "id": 1382122, "credit_id": "545a91c10e0a263f560009dd", "cast_id": 62, "profile_path": null, "order": 38}, {"name": "Eddy Palerno", "character": "Electric Guitar (Napoli Jazz Septet)", "id": 1382123, "credit_id": "545a94f2c3a36825f5000a6f", "cast_id": 63, "profile_path": null, "order": 39}, {"name": "Byron Wallen", "character": "Cornet (San Remo Jazz Sextet)", "id": 1382124, "credit_id": "545a96e6c3a36825f9000ac8", "cast_id": 64, "profile_path": "/pXn1Ic47SyviAXZ56HGybDy53l.jpg", "order": 40}, {"name": "Pete King", "character": "Alto Sax (San Remo Jazz Sextet)", "id": 1382131, "credit_id": "545a9a7dc3a3682609000b36", "cast_id": 65, "profile_path": null, "order": 41}, {"name": "Clark Tracey", "character": "Drums (San Remo Jazz Sextet)", "id": 1382139, "credit_id": "545a9d97c3a3684029000004", "cast_id": 66, "profile_path": "/hU5NdD0jb0ClX8SWdujxMHEweP7.jpg", "order": 42}, {"name": "Jean Toussaint", "character": "Tenor Sax (San Remo Jazz Sextet)", "id": 1261972, "credit_id": "545ac7ad0e0a261fa60009b8", "cast_id": 67, "profile_path": "/kbocrdWrD5YpTfEMxcG6fUsmi1Z.jpg", "order": 43}, {"name": "Geoff Gascoyne", "character": "Bass (San Remo Jazz Sextet)", "id": 1382158, "credit_id": "545acac1c3a36853620001a2", "cast_id": 68, "profile_path": "/505Unv9xBRHiVZIFPDTKSekFw9B.jpg", "order": 44}, {"name": "Carlo Negroni", "character": "Piano (San Remo Jazz Sextet)", "id": 1382159, "credit_id": "545acd990e0a261fa9000b0e", "cast_id": 69, "profile_path": "/9a9qB3ifCYmRz4JterbxPdupsTi.jpg", "order": 45}, {"name": "Beppe Fiorello", "character": "Silvana's Fianc\u00e9", "id": 132419, "credit_id": "545acea5c3a368536b000239", "cast_id": 70, "profile_path": "/arhFRjoYVZ7aKUqdhYFwv7tB85.jpg", "order": 46}, {"name": "Marco Quaglia", "character": "Silvana's Brother", "id": 996844, "credit_id": "545ad11fc3a368536b0002a5", "cast_id": 71, "profile_path": "/3p3Q6JMklYCGNZtljqXV6P4eBb5.jpg", "order": 47}, {"name": "Alessandra Vanzi", "character": "Silvana's Mother", "id": 1173638, "credit_id": "545ad1fa0e0a261fad000cbc", "cast_id": 72, "profile_path": null, "order": 48}, {"name": "Marco Rossi", "character": "Photographer", "id": 1382167, "credit_id": "545ad22f0e0a261fb6000c22", "cast_id": 73, "profile_path": null, "order": 49}, {"name": "Roberto Valentini", "character": "Onegin (Eugene Onegin Player)", "id": 1382216, "credit_id": "545b20c6c3a368535d000d9d", "cast_id": 74, "profile_path": null, "order": 50}, {"name": "Francesco Bovino", "character": "Lensky (Eugene Onegin Player)", "id": 1382217, "credit_id": "545b21440e0a261fa600159f", "cast_id": 75, "profile_path": null, "order": 51}, {"name": "Stefano Canettieri", "character": "Zaretsky (Eugene Onegin Player)", "id": 1382218, "credit_id": "545b21a1c3a368535d000db6", "cast_id": 76, "profile_path": null, "order": 52}, {"name": "Marco Foti", "character": "Guillot (Eugene Onegin Player)", "id": 1303456, "credit_id": "545b24e6c3a3685358000da7", "cast_id": 77, "profile_path": null, "order": 53}, {"name": "Ludovica Tinghi", "character": "Fausto's Fianc\u00e9e", "id": 1382220, "credit_id": "545b25d20e0a261fb60016d7", "cast_id": 78, "profile_path": "/qZQ5Eg9n6qUgHoik9ALYAgBmSBI.jpg", "order": 54}, {"name": "Nicola Pannelli", "character": "Dinelli's Cafe Waiter", "id": 1356807, "credit_id": "545b2c0bc3a3685365000d38", "cast_id": 79, "profile_path": "/9NJBAusEcNvzP8niJPIukEKWBs2.jpg", "order": 55}, {"name": "Paolo Calabresi", "character": "Customs Officer", "id": 27399, "credit_id": "545b2e34c3a3685353000e20", "cast_id": 80, "profile_path": "/lG619iazeUGzo8EtG47nkV0i8ni.jpg", "order": 56}, {"name": "Pietro Ragusa", "character": "Record Store Owner", "id": 141830, "credit_id": "545b3093c3a368535d000f65", "cast_id": 81, "profile_path": "/iC9eD0sSCy7wRKfzSHWj2B3On9J.jpg", "order": 57}, {"name": "Simone Empler", "character": "Boy Singer", "id": 1382225, "credit_id": "545b30dc0e0a26042c001090", "cast_id": 82, "profile_path": null, "order": 58}, {"name": "Gianluca Secci", "character": "Policeman", "id": 1382226, "credit_id": "545b330c0e0a261fb6001848", "cast_id": 83, "profile_path": "/b5AtdLInDItFZzT3MCrJoX0Y4dQ.jpg", "order": 59}, {"name": "Manuel Ruffini", "character": "Policeman", "id": 1382227, "credit_id": "545b34df0e0a261fad001915", "cast_id": 84, "profile_path": null, "order": 60}, {"name": "Pierpaolo Lovino", "character": "Policeman", "id": 137810, "credit_id": "545b375d0e0a26042c001135", "cast_id": 85, "profile_path": "/p1jY1zQ1pZctOT28RbkWQe7dmuu.jpg", "order": 61}, {"name": "Roberto Di Palma", "character": "San Remo Hotel Desk Clerk", "id": 1325936, "credit_id": "545b38490e0a261fa9001823", "cast_id": 86, "profile_path": null, "order": 62}], "directors": [{"name": "Anthony Minghella", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c3d3", "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "id": 2239}], "vote_average": 6.5, "runtime": 139}, "9408": {"poster_path": "/2Car4vWVDenBIMhfCjBvAHzameI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149044513, "overview": "Cody is a surfing penguin from Shiverpool who dreams of making it big and being like his idol Big Z. On his journey he discovers his talents are not all he thinks they are and he must learn to accept that their is more to surfing than fame and fortune. Surf's Up is a 2007 American computer-animated mockumentary film produced by Sony Pictures Animation and distributed by Columbia Pictures and ImageWorks Studios. It stars the voices of Shia LaBeouf, Jeff Bridges, Zooey Deschanel, Jon Heder among others.", "video": false, "id": 9408, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Surf's Up", "tagline": "In the coldest place on Earth, he's the hottest thing around.", "vote_count": 178, "homepage": "http://www.sonypictures.com/homevideo/surfsup/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0423294", "adult": false, "backdrop_path": "/v6cvZfSAiUjvFVCCiaPNaZLA7gk.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}], "release_date": "2007-06-08", "popularity": 0.912334843015976, "original_title": "Surf's Up", "budget": 85000000, "cast": [{"name": "Shia LaBeouf", "character": "Cody Maverick", "id": 10959, "credit_id": "52fe44f4c3a36847f80b3ddf", "cast_id": 1, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Jeff Bridges", "character": "Big Z / Geek", "id": 1229, "credit_id": "52fe44f4c3a36847f80b3de3", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Lani Aliikai", "id": 11664, "credit_id": "52fe44f4c3a36847f80b3de7", "cast_id": 3, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Jon Heder", "character": "Chicken Joe", "id": 53926, "credit_id": "52fe44f4c3a36847f80b3deb", "cast_id": 4, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 3}, {"name": "James Woods", "character": "Reggie Belafonte", "id": 4512, "credit_id": "52fe44f4c3a36847f80b3e1f", "cast_id": 13, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 4}, {"name": "Diedrich Bader", "character": "Tank 'The Shredder' Evans", "id": 5727, "credit_id": "52fe44f4c3a36847f80b3e23", "cast_id": 14, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 5}, {"name": "Mario Cantone", "character": "Mikey Abromowitz", "id": 57551, "credit_id": "52fe44f4c3a36847f80b3e27", "cast_id": 15, "profile_path": "/jvxuIpzAYSWSbkaZd201KsSztp5.jpg", "order": 6}, {"name": "Kelly Slater", "character": "Kelly", "id": 4334, "credit_id": "52fe44f4c3a36847f80b3e2b", "cast_id": 16, "profile_path": "/hzgs3mpat2FhvPzGhJBgV8BTlxY.jpg", "order": 7}, {"name": "Rob Machado", "character": "Rob", "id": 108333, "credit_id": "52fe44f4c3a36847f80b3e2f", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Sal Masekela", "character": "SPEN Announcer", "id": 963069, "credit_id": "52fe44f4c3a36847f80b3e33", "cast_id": 18, "profile_path": "/mILyk5E0tXR7fCgWATzc8BdkbPq.jpg", "order": 9}, {"name": "Ash Brannon", "character": "Filmmaker", "id": 12905, "credit_id": "52fe44f4c3a36847f80b3e37", "cast_id": 19, "profile_path": "/6ueWgPEEBHvS3De2BHYQnYjRTig.jpg", "order": 10}, {"name": "Chris Buck", "character": "Filmmaker", "id": 15774, "credit_id": "52fe44f4c3a36847f80b3e3b", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Brian Posehn", "character": "Glen Maverick", "id": 20405, "credit_id": "52fe44f4c3a36847f80b3e3f", "cast_id": 21, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 12}, {"name": "Dana Belben", "character": "Edna Maverick", "id": 68863, "credit_id": "52fe44f4c3a36847f80b3e43", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Reed Buck", "character": "Arnold", "id": 1114051, "credit_id": "52fe44f4c3a36847f80b3e47", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Ash Brannon", "department": "Directing", "job": "Director", "credit_id": "52fe44f4c3a36847f80b3df1", "profile_path": "/6ueWgPEEBHvS3De2BHYQnYjRTig.jpg", "id": 12905}, {"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "52fe44f4c3a36847f80b3df7", "profile_path": null, "id": 15774}], "vote_average": 5.7, "runtime": 85}, "25793": {"poster_path": "/xgBiMf79HiThuHNfLvCo7eC2SSD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62395661, "overview": "Set in Harlem in 1987, claireece \"Precious\" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret..she can't read.", "video": false, "id": 25793, "genres": [{"id": 18, "name": "Drama"}], "title": "Precious", "tagline": "Life is hard. Life is short. Life is painful. Life is rich. Life is....Precious.", "vote_count": 65, "homepage": "http://www.weareallprecious.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0929632", "adult": false, "backdrop_path": "/eFyvYSFFkH7qYH6ouGcIFaKmwJV.jpg", "production_companies": [{"name": "Smokewood Entertainment Group", "id": 4424}], "release_date": "2009-11-06", "popularity": 0.653060509240538, "original_title": "Precious", "budget": 10000000, "cast": [{"name": "Gabourey Sidibe", "character": "Precious", "id": 109560, "credit_id": "52fe44dec3a368484e03b7b5", "cast_id": 1, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 0}, {"name": "Mo'Nique", "character": "Mary", "id": 60561, "credit_id": "52fe44dec3a368484e03b7b9", "cast_id": 2, "profile_path": "/2oXH2sx32C3w7t7HmorpPNGCUgG.jpg", "order": 1}, {"name": "Paula Patton", "character": "Ms. Rain", "id": 52851, "credit_id": "52fe44dec3a368484e03b7c3", "cast_id": 4, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 2}, {"name": "Mariah Carey", "character": "Mrs. Weiss", "id": 66586, "credit_id": "52fe44dec3a368484e03b7c7", "cast_id": 5, "profile_path": "/qU9qrbTkLwsyFL9mb6RUHxKmpp.jpg", "order": 3}, {"name": "Lenny Kravitz", "character": "Nurse John", "id": 77069, "credit_id": "52fe44dec3a368484e03b7cb", "cast_id": 6, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 4}, {"name": "Sherri Shepherd", "character": "Cornrows", "id": 109561, "credit_id": "52fe44dec3a368484e03b7cf", "cast_id": 7, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 5}, {"name": "Stephanie Andujar", "character": "Rita", "id": 109562, "credit_id": "52fe44dec3a368484e03b7d3", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Chyna Layne", "character": "Rhonda", "id": 109563, "credit_id": "52fe44dec3a368484e03b7d7", "cast_id": 9, "profile_path": "/h3dObaOF5Kv5CtIGKefu8x5yxKc.jpg", "order": 7}, {"name": "Amina Robinson", "character": "Jermaine", "id": 109564, "credit_id": "52fe44dec3a368484e03b7db", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Xosha Roquemore", "character": "Joann", "id": 109565, "credit_id": "52fe44dec3a368484e03b7df", "cast_id": 11, "profile_path": "/q7Ddbdwd6haCMT06KYk2nQJYzMv.jpg", "order": 9}, {"name": "Angelic Zambrana", "character": "Consuelo", "id": 109566, "credit_id": "52fe44dec3a368484e03b7e3", "cast_id": 12, "profile_path": "/35HuhFuFjSa4NfGvMnQayg25o7Q.jpg", "order": 10}, {"name": "Aunt Dot", "character": "Tootsie", "id": 109567, "credit_id": "52fe44dec3a368484e03b7e7", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Nealla Gordon", "character": "Mrs. Lichtenstien", "id": 109568, "credit_id": "52fe44dec3a368484e03b7eb", "cast_id": 14, "profile_path": "/m1e1x5RBU0Ck9BnTj3gwPkLamXI.jpg", "order": 12}, {"name": "Grace Hightower", "character": "Social Worker", "id": 109569, "credit_id": "52fe44dec3a368484e03b7ef", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Barret Helms", "character": "Tom Cruise (as Barret Isaiah Mindell)", "id": 109570, "credit_id": "52fe44dec3a368484e03b7f3", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Kimberly Russell", "character": "Katherine", "id": 65397, "credit_id": "52fe44dec3a368484e03b7f7", "cast_id": 17, "profile_path": "/mT3IzgdwqZPRq8CIh2jpDtDDjNH.jpg", "order": 15}, {"name": "Bill Sage", "character": "Mr. Wicher", "id": 32029, "credit_id": "52fe44dec3a368484e03b7fb", "cast_id": 18, "profile_path": "/580okgFwmaKyT12s1lUfY8yV9dg.jpg", "order": 16}, {"name": "Susan Taylor", "character": "Fairy Godmother", "id": 109571, "credit_id": "52fe44dec3a368484e03b7ff", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Kendall Toombs", "character": "Abdul, New Born", "id": 109572, "credit_id": "52fe44dec3a368484e03b803", "cast_id": 20, "profile_path": null, "order": 18}, {"name": "Alexander Toombs", "character": "Abdul, New Born", "id": 109573, "credit_id": "52fe44dec3a368484e03b807", "cast_id": 21, "profile_path": null, "order": 19}, {"name": "Cory Davis", "character": "Abdul, 9 Months", "id": 109574, "credit_id": "52fe44dec3a368484e03b80b", "cast_id": 22, "profile_path": null, "order": 20}, {"name": "Rochelle McNaughton", "character": "AIDS Clerk", "id": 109575, "credit_id": "52fe44dec3a368484e03b80f", "cast_id": 23, "profile_path": null, "order": 21}], "directors": [{"name": "Lee Daniels", "department": "Directing", "job": "Director", "credit_id": "52fe44dec3a368484e03b7bf", "profile_path": "/xwsuwr435maV9wuo3iWXWVzEIMH.jpg", "id": 20019}], "vote_average": 7.0, "runtime": 110}, "9411": {"poster_path": "/v66GrbKcl1babq8BebUff0MI3m4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 981, "overview": "Homicide detective John Hobbes witnesses the execution of serial killer Edgar Reese. Soon after the execution the killings start again, and they are very similar to Reese's style.", "video": false, "id": 9411, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Fallen", "tagline": "Detective John Hobbes is searching for a criminal he's already met... already caught... and already killed", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119099", "adult": false, "backdrop_path": "/uFWC5LzkobhSNnutRoWlStSRXKe.jpg", "production_companies": [{"name": "Turner Pictures (I)", "id": 6189}, {"name": "Atlas Entertainment", "id": 507}], "release_date": "1998-01-16", "popularity": 0.72731676972072, "original_title": "Fallen", "budget": 500, "cast": [{"name": "Denzel Washington", "character": "John Hobbes", "id": 5292, "credit_id": "52fe44f4c3a36847f80b3f69", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "John Goodman", "character": "Jonesy", "id": 1230, "credit_id": "52fe44f4c3a36847f80b3f6d", "cast_id": 2, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Lt. Stanton", "id": 55636, "credit_id": "52fe44f4c3a36847f80b3f71", "cast_id": 3, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "Embeth Davidtz", "character": "Gretta Milano", "id": 6368, "credit_id": "52fe44f4c3a36847f80b3f8d", "cast_id": 8, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 3}, {"name": "James Gandolfini", "character": "Lou", "id": 4691, "credit_id": "53706b7e0e0a2647d801417b", "cast_id": 10, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Edgar Reese", "id": 13550, "credit_id": "53706b910e0a2647c40145c4", "cast_id": 11, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Gabriel Casseus", "character": "Art", "id": 18272, "credit_id": "53706b9e0e0a2647ce013b5d", "cast_id": 12, "profile_path": "/pAp9Rhl0X3kpNlk0ms0lDpQrPDF.jpg", "order": 6}, {"name": "Michael J. Pagan", "character": "Sam", "id": 59018, "credit_id": "53706bab0e0a2647d8014183", "cast_id": 13, "profile_path": "/ahRXzDcYUSwunOppktmfrU7XC8w.jpg", "order": 7}, {"name": "Robert Joy", "character": "Charles", "id": 19976, "credit_id": "53706bbb0e0a2647c8014803", "cast_id": 14, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 8}, {"name": "Frank Medrano", "character": "Charles' Killer", "id": 1216752, "credit_id": "53706bcd0e0a2647ce013b61", "cast_id": 15, "profile_path": null, "order": 9}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe44f4c3a36847f80b3f77", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 6.5, "runtime": 124}, "17609": {"poster_path": "/63CbwLpSJOYPmVhAYAt9ihvlvvf.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "PL", "name": "Poland"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A grieving couple retreats to their cabin 'Eden' in the woods, hoping to repair their broken hearts and troubled marriage. But nature takes its course and things go from bad to worse.", "video": false, "id": 17609, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Antichrist", "tagline": "When nature turns evil, true terror awaits.", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0870984", "adult": false, "backdrop_path": "/tC9q69NLP4qLqPcloWYNkdWFkXa.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}, {"name": "Zentropa International K\u00f6ln", "id": 8289}, {"name": "Slot Machine", "id": 7777}, {"name": "Memfis Film", "id": 321}, {"name": "Trollh\u00e4ttan Film AB", "id": 320}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 315}, {"name": "Lucky Red", "id": 779}, {"name": "Zentropa International Poland", "id": 11236}, {"name": "Danmarks Radio (DR)", "id": 119}, {"name": "arte France Cin\u00e9ma", "id": 7755}, {"name": "ZDF/Arte", "id": 11237}, {"name": "ARTE", "id": 5766}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "CNC", "id": 6962}, {"name": "Canal+", "id": 5358}, {"name": "Det Danske Filminstitut", "id": 118}, {"name": "Deutsche Filmf\u00f6rderfonds (DFFF)", "id": 11238}, {"name": "Liberator Productions", "id": 11239}, {"name": "Nordisk Film- & TV-Fond", "id": 8555}, {"name": "Polski Instytut Sztuki Filmowej", "id": 11240}, {"name": "Svenska Filminstitutet (SFI)", "id": 7446}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}], "release_date": "2009-05-29", "popularity": 1.11645780826594, "original_title": "Antichrist", "budget": 11000000, "cast": [{"name": "Willem Dafoe", "character": "He", "id": 5293, "credit_id": "52fe47379251416c75091a5b", "cast_id": 1, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 0}, {"name": "Charlotte Gainsbourg", "character": "She", "id": 4273, "credit_id": "52fe47379251416c75091a5f", "cast_id": 2, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Storm Acheche Sahlstr\u00f8m", "character": "Nic", "id": 570509, "credit_id": "5379a3b50e0a261431006b04", "cast_id": 14, "profile_path": "/dGHGDtaXqiJsdAZ8yj6KNXBthXA.jpg", "order": 2}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe47379251416c75091a65", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.6, "runtime": 108}, "17610": {"poster_path": "/rrxNnCsUjajdvG9WGm4ePznCqn9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60236431, "overview": "When a couple of lazy hunter-gatherers are banished from their primitive village, they set off on an epic journey through the ancient world.", "video": false, "id": 17610, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Year One", "tagline": "Meet your ancestors", "vote_count": 155, "homepage": "http://www.yearone-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1045778", "adult": false, "backdrop_path": "/mv6mZHb2QBMVj40nNsBA9gRT3Fa.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}, {"name": "Ocean Pictures", "id": 7433}], "release_date": "2009-06-18", "popularity": 1.16272886714682, "original_title": "Year One", "budget": 60000000, "cast": [{"name": "Jack Black", "character": "Zed", "id": 70851, "credit_id": "52fe47379251416c75091ad3", "cast_id": 1, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Michael Cera", "character": "Oh", "id": 39995, "credit_id": "52fe47379251416c75091ad7", "cast_id": 2, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Princess Inanna", "id": 59315, "credit_id": "52fe47379251416c75091adb", "cast_id": 3, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Oliver Platt", "character": "High Priest", "id": 17485, "credit_id": "52fe47379251416c75091b21", "cast_id": 15, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 3}, {"name": "David Cross", "character": "Cain", "id": 212, "credit_id": "52fe47379251416c75091b25", "cast_id": 16, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Christopher Mintz-Plasse", "character": "Isaac", "id": 54691, "credit_id": "52fe47379251416c75091b29", "cast_id": 17, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 5}, {"name": "Vinnie Jones", "character": "Sargon", "id": 980, "credit_id": "52fe47379251416c75091b2d", "cast_id": 18, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 6}, {"name": "Hank Azaria", "character": "Abraham", "id": 5587, "credit_id": "52fe47379251416c75091b31", "cast_id": 19, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 7}, {"name": "Juno Temple", "character": "Eema", "id": 36594, "credit_id": "52fe47379251416c75091b35", "cast_id": 20, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 8}, {"name": "June Diane Raphael", "character": "Maya", "id": 83873, "credit_id": "52fe47379251416c75091b39", "cast_id": 21, "profile_path": "/ArhEeYtPoKmu9grgmmTLFMqXpdY.jpg", "order": 9}, {"name": "Xander Berkeley", "character": "King", "id": 3982, "credit_id": "52fe47379251416c75091b3d", "cast_id": 22, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 10}, {"name": "Gia Carides", "character": "Queen", "id": 14226, "credit_id": "52fe47379251416c75091b41", "cast_id": 23, "profile_path": "/hd4wkz74R00PDkMhCMuH2qqH2Yt.jpg", "order": 11}, {"name": "Kyle Gass", "character": "Zaftig the Eunuch", "id": 22297, "credit_id": "52fe47379251416c75091b45", "cast_id": 24, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 12}, {"name": "Paul Rudd", "character": "Abel", "id": 22226, "credit_id": "52fe47379251416c75091b49", "cast_id": 25, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 13}, {"name": "Eden Riegel", "character": "Lilith", "id": 217524, "credit_id": "52fe47379251416c75091b4d", "cast_id": 26, "profile_path": "/wMcRg3Y0x70U1vFoK0hBY7zS20E.jpg", "order": 14}, {"name": "Harold Ramis", "character": "Adam", "id": 1524, "credit_id": "530ce8a7925141141e001461", "cast_id": 27, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 15}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe47379251416c75091ae1", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 4.7, "runtime": 97}, "109431": {"poster_path": "/lOF4rI6SxgRsVLW8odsauqnhB9Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173965010, "overview": "When a mild-mannered businessman learns his identity has been stolen, he hits the road in an attempt to foil the thief -- a trip that puts him in the path of a deceptively harmless-looking woman.", "video": false, "id": 109431, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Identity Thief", "tagline": "Is this the face of a sucker?", "vote_count": 1042, "homepage": "http://www.identitythiefmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2024432", "adult": false, "backdrop_path": "/q9MgSS0QvapgerVJ2C0Y6F8jOwx.jpg", "production_companies": [{"name": "Stuber Productions", "id": 4403}, {"name": "Aggregate Films", "id": 37361}, {"name": "DumbDumb", "id": 37362}], "release_date": "2013-02-09", "popularity": 0.916224852708464, "original_title": "Identity Thief", "budget": 35000000, "cast": [{"name": "Jason Bateman", "character": "Sandy Patterson", "id": 23532, "credit_id": "52fe4ab5c3a36847f81dd83b", "cast_id": 12, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Melissa McCarthy", "character": "Diana", "id": 55536, "credit_id": "52fe4ab6c3a36847f81dd847", "cast_id": 15, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 1}, {"name": "Jon Favreau", "character": "Harold Cornish", "id": 15277, "credit_id": "52fe4ab5c3a36847f81dd83f", "cast_id": 13, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 2}, {"name": "Amanda Peet", "character": "Trish Patterson", "id": 2956, "credit_id": "52fe4ab6c3a36847f81dd863", "cast_id": 22, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 3}, {"name": "T.I.", "character": "Julian", "id": 76126, "credit_id": "52fe4ab6c3a36847f81dd853", "cast_id": 18, "profile_path": "/ycNO8wU6H75wDDfojMCTjoxtEmt.jpg", "order": 4}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Marisol", "id": 589162, "credit_id": "52fe4ab6c3a36847f81dd84f", "cast_id": 17, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 5}, {"name": "Morris Chestnut", "character": "Detective Reilly", "id": 9779, "credit_id": "52fe4ab6c3a36847f81dd857", "cast_id": 19, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 6}, {"name": "John Cho", "character": "Daniel Casey", "id": 68842, "credit_id": "52fe4ab6c3a36847f81dd84b", "cast_id": 16, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 7}, {"name": "Robert Patrick", "character": "Skiptracer", "id": 418, "credit_id": "52fe4ab6c3a36847f81dd85b", "cast_id": 20, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 8}, {"name": "Eric Stonestreet", "character": "Big Chuck", "id": 156962, "credit_id": "52fe4ab6c3a36847f81dd85f", "cast_id": 21, "profile_path": "/pphQCQ2rZMahePbXMiIkW0sEOM4.jpg", "order": 9}, {"name": "Jonathan Banks", "character": "Paul", "id": 783, "credit_id": "52fe4ab6c3a36847f81dd885", "cast_id": 28, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 10}, {"name": "Maggie Elizabeth Jones", "character": "Jessie Patterson", "id": 1046348, "credit_id": "52fe4ab5c3a36847f81dd843", "cast_id": 14, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 11}, {"name": "Ryan Gaul", "character": "Bartender", "id": 973223, "credit_id": "52fe4ab6c3a36847f81dd889", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Mary-Charles Jones", "character": "Franny Patterson", "id": 1046352, "credit_id": "52fe4ab6c3a36847f81dd88d", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Brett Baker", "character": "Alec", "id": 1096595, "credit_id": "52fe4ab6c3a36847f81dd891", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "Seth Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe4ab5c3a36847f81dd80d", "profile_path": "/gstUEbopSacaQTpxYjfSwz0gzLl.jpg", "id": 71600}], "vote_average": 5.6, "runtime": 111}, "42188": {"poster_path": "/i5sE6EINofvT7Xq0rpZz9jRbRMS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9455232, "overview": "As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.", "video": false, "id": 42188, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Never Let Me Go", "tagline": "The students have everything they need. Except time", "vote_count": 151, "homepage": "http://www.foxsearchlight.com/neverletmego/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1334260", "adult": false, "backdrop_path": "/91usy6D1cqS6xcj7t3gN6wfOBk3.jpg", "production_companies": [{"name": "DNA Films", "id": 284}, {"name": "Film4", "id": 9349}, {"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2010-09-15", "popularity": 0.651212243309355, "original_title": "Never Let Me Go", "budget": 15000000, "cast": [{"name": "Carey Mulligan", "character": "Kathy", "id": 36662, "credit_id": "52fe45f2c3a36847f80e3c41", "cast_id": 6, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 0}, {"name": "Andrew Garfield", "character": "Tommy", "id": 37625, "credit_id": "52fe45f2c3a36847f80e3c45", "cast_id": 7, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Ruth", "id": 116, "credit_id": "52fe45f2c3a36847f80e3c49", "cast_id": 8, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Domhnall Gleeson", "character": "Rodney", "id": 93210, "credit_id": "52fe45f2c3a36847f80e3c4d", "cast_id": 11, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 3}, {"name": "Andrea Riseborough", "character": "Chrissie", "id": 127558, "credit_id": "52fe45f2c3a36847f80e3c51", "cast_id": 12, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 4}, {"name": "Charlotte Rampling", "character": "Miss Emily", "id": 44079, "credit_id": "52fe45f2c3a36847f80e3c55", "cast_id": 13, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 5}, {"name": "Sally Hawkins", "character": "Miss Lucy", "id": 39658, "credit_id": "52fe45f2c3a36847f80e3c59", "cast_id": 14, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 6}, {"name": "Izzy Meikle-Small", "character": "Young Kathy", "id": 142388, "credit_id": "52fe45f3c3a36847f80e3c5d", "cast_id": 15, "profile_path": "/rEtcyAA8q3GObOL99EYCJUpAEvF.jpg", "order": 7}, {"name": "Charlie Rowe", "character": "Young Tommy", "id": 142389, "credit_id": "52fe45f3c3a36847f80e3c61", "cast_id": 16, "profile_path": "/5RrPNhLGlA9Yc3VmPqDNpFA5aCv.jpg", "order": 8}, {"name": "Ella Purnell", "character": "Young Ruth", "id": 989325, "credit_id": "52fe45f3c3a36847f80e3ca1", "cast_id": 28, "profile_path": "/3g0n8TEbQQpLT3ZEbSjlTO8lnK5.jpg", "order": 9}, {"name": "Lydia Wilson", "character": "Hannah", "id": 1095524, "credit_id": "532867e0c3a36831750027f9", "cast_id": 29, "profile_path": "/ndlya4VREXguyeZYLP7OB3HHjzu.jpg", "order": 10}], "directors": [{"name": "Mark Romanek", "department": "Directing", "job": "Director", "credit_id": "52fe45f2c3a36847f80e3c2b", "profile_path": "/iQoFOhNmygHKRWJXfyLkHKgw5Zj.jpg", "id": 57446}], "vote_average": 6.9, "runtime": 104}, "9421": {"poster_path": "/n57PfOOjoAzBBGJ87QJNkO40YzE.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 78599508, "overview": "Each week, Pierre and his friends organize what is called as \"un d\u00eener de cons\". Everyone brings the dumbest guy he could find as a guest. Pierre thinks his champ -Fran\u00e7ois Pignon- will steal the show.", "video": false, "id": 9421, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Dinner Game", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0119038", "adult": false, "backdrop_path": "/nAYoZgzOoKblXp9xbi8MoRxcHtp.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "EFVE", "id": 11037}, {"name": "TF1 Films Production", "id": 3823}, {"name": "TPS Cin\u00e9ma", "id": 884}], "release_date": "1998-04-15", "popularity": 0.525831375352941, "original_title": "Le D\u00eener de cons", "budget": 12500000, "cast": [{"name": "Thierry Lhermitte", "character": "Pierre Brochant", "id": 21177, "credit_id": "52fe44f5c3a36847f80b4319", "cast_id": 9, "profile_path": "/eudPlDQKVfowLzxw0PzrxKagvru.jpg", "order": 0}, {"name": "Jacques Villeret", "character": "Fran\u00e7ois Pignon", "id": 35323, "credit_id": "52fe44f5c3a36847f80b431d", "cast_id": 10, "profile_path": "/sUFW2BIZc4wUpfKWznbk8S9CKqN.jpg", "order": 1}, {"name": "Francis Huster", "character": "Juste Leblanc", "id": 26887, "credit_id": "52fe44f5c3a36847f80b4321", "cast_id": 11, "profile_path": "/fUD1vMpuxChUMKk6kcWo3ePd5q2.jpg", "order": 2}, {"name": "Daniel Pr\u00e9vost", "character": "Lucien Cheval", "id": 24832, "credit_id": "52fe44f5c3a36847f80b4325", "cast_id": 12, "profile_path": "/sOtamnTQsNi3TL4P1c6WutjZOst.jpg", "order": 3}, {"name": "Alexandra Vandernoot", "character": "Christine", "id": 53425, "credit_id": "52fe44f5c3a36847f80b4329", "cast_id": 13, "profile_path": "/yqAN3NyIRLHIuB7aOhxEmN37Ovx.jpg", "order": 4}, {"name": "Catherine Frot", "character": "Marl\u00e8ne Sasseur", "id": 20080, "credit_id": "52fe44f5c3a36847f80b432d", "cast_id": 14, "profile_path": "/18d10YaqZlGPzYjaUjMIiSMfs8E.jpg", "order": 5}, {"name": "Edgar Givry", "character": "Jean Cordier", "id": 53201, "credit_id": "52fe44f5c3a36847f80b4331", "cast_id": 15, "profile_path": "/cziKgVgRDOcKvI5dPhIY4AMcJ8Z.jpg", "order": 6}, {"name": "Christian Pereira", "character": "Dr Sorbier", "id": 145738, "credit_id": "52fe44f5c3a36847f80b4335", "cast_id": 16, "profile_path": "/VX3SUrKER5Gbl1mBvIfxAd90yb.jpg", "order": 7}, {"name": "Beno\u00eet Bellal", "character": "Host 1", "id": 1403436, "credit_id": "549aaa87c3a3682f21001769", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Jacques Bleu", "character": "Host 3", "id": 1403437, "credit_id": "549aaaac925141312600178d", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Philippe Brigaud", "character": "Tanner (boomerang thrower)", "id": 145197, "credit_id": "549aaad1925141312c0014e3", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Michel Caccia", "character": "Guest 1", "id": 146640, "credit_id": "549aaaed925141312f0018e3", "cast_id": 20, "profile_path": "/jkwB8gNP4nCO30YleMCi6izsjL2.jpg", "order": 11}], "directors": [{"name": "Francis Veber", "department": "Directing", "job": "Director", "credit_id": "52fe44f5c3a36847f80b42f7", "profile_path": "/hEeR4kyKecepNaEb4sdK0pAQKzf.jpg", "id": 38507}], "vote_average": 7.8, "runtime": 80}, "58574": {"poster_path": "/7OFqsVuS6DlVM10GUD72vCGpQm9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 334615000, "overview": "There is a new criminal mastermind at large--Professor Moriarty--and not only is he Holmes\u2019 intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.", "video": false, "id": 58574, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Sherlock Holmes: A Game of Shadows", "tagline": "The Game is Afoot.", "vote_count": 1724, "homepage": "http://sherlockholmes2.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": "/aeLom584FZdu6253WMaYEUCrTdu.jpg", "poster_path": "/bsUN9Ph1nUituteKWOhPQGguNXt.jpg", "id": 102322, "name": "Sherlock Holmes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1515091", "adult": false, "backdrop_path": "/3jmMRaO8WMjKsf1LWzo6Q6E5zMP.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "Wigram Productions", "id": 23202}, {"name": "Lin Pictures", "id": 2723}], "release_date": "2011-12-16", "popularity": 1.38641842808002, "original_title": "Sherlock Holmes: A Game of Shadows", "budget": 125000000, "cast": [{"name": "Robert Downey Jr.", "character": "Sherlock Holmes", "id": 3223, "credit_id": "52fe4969c3a36847f8198ba3", "cast_id": 1, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Jude Law", "character": "Dr. John Watson", "id": 9642, "credit_id": "52fe4969c3a36847f8198ba7", "cast_id": 2, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Jared Harris", "character": "Professor James Moriarty", "id": 15440, "credit_id": "53044f40c3a3683a810d73bb", "cast_id": 58, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 2}, {"name": "Noomi Rapace", "character": "Madam Simza Heron", "id": 87722, "credit_id": "52fe4969c3a36847f8198bab", "cast_id": 7, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 3}, {"name": "Kelly Reilly", "character": "Mary Morstan", "id": 17521, "credit_id": "52fe4969c3a36847f8198bcb", "cast_id": 13, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 4}, {"name": "Geraldine James", "character": "Mrs. Hudson", "id": 11855, "credit_id": "52fe4969c3a36847f8198bcf", "cast_id": 14, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 5}, {"name": "Eddie Marsan", "character": "Inspector Lestrade", "id": 1665, "credit_id": "52fe4969c3a36847f8198c75", "cast_id": 43, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 6}, {"name": "Stephen Fry", "character": "Mycroft Holmes", "id": 11275, "credit_id": "53045046c3a3683aab0bece4", "cast_id": 59, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 7}, {"name": "William Houston", "character": "Clarky", "id": 84865, "credit_id": "52fe4969c3a36847f8198c79", "cast_id": 44, "profile_path": "/cDRUNHUyHB29YKrTmzkQqBRCdla.jpg", "order": 8}, {"name": "Affif Ben Badra", "character": "Tamas", "id": 54807, "credit_id": "52fe4969c3a36847f8198c7d", "cast_id": 45, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 9}, {"name": "Paul Anderson", "character": "Colonel Sebastian Moran", "id": 220448, "credit_id": "52fe4969c3a36847f8198c81", "cast_id": 46, "profile_path": "/fHLtf1RvQ2i6ZudyL0WRwmEeTxv.jpg", "order": 10}, {"name": "Wolf Kahler", "character": "Doctor Hoffmanstahl", "id": 659, "credit_id": "52fe4969c3a36847f8198c85", "cast_id": 47, "profile_path": "/uqHI2PLeGFxdjlw0qIk1D17NjWb.jpg", "order": 11}, {"name": "Iain Mitchell", "character": "Auctioneer", "id": 71584, "credit_id": "52fe4969c3a36847f8198c89", "cast_id": 48, "profile_path": null, "order": 12}, {"name": "Jack Laskey", "character": "Carruthers", "id": 1053673, "credit_id": "52fe4969c3a36847f8198c8d", "cast_id": 49, "profile_path": null, "order": 13}, {"name": "Patricia Slater", "character": "Shush Club Maitre D'", "id": 1097455, "credit_id": "52fe4969c3a36847f8198c91", "cast_id": 50, "profile_path": null, "order": 14}, {"name": "Karima Adebibe", "character": "Shush Club Maitre D'", "id": 1086530, "credit_id": "52fe4969c3a36847f8198c95", "cast_id": 51, "profile_path": null, "order": 15}, {"name": "Richard Cunningham", "character": "Businessman", "id": 1097456, "credit_id": "52fe4969c3a36847f8198c99", "cast_id": 52, "profile_path": "/jGo9wrCxV81pgNVkzO2B1Wnuett.jpg", "order": 16}, {"name": "Marcus Shakesheff", "character": "Hashisheen", "id": 1075103, "credit_id": "52fe4969c3a36847f8198c9d", "cast_id": 53, "profile_path": null, "order": 17}, {"name": "Mark Sheals", "character": "Cock Fight Referee", "id": 1097457, "credit_id": "52fe4969c3a36847f8198ca1", "cast_id": 54, "profile_path": null, "order": 18}, {"name": "George Taylor", "character": "University Student", "id": 105510, "credit_id": "52fe4969c3a36847f8198ca5", "cast_id": 55, "profile_path": null, "order": 19}, {"name": "Rachel McAdams", "character": "Irene Adler", "id": 53714, "credit_id": "52fe4969c3a36847f8198caf", "cast_id": 57, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 20}, {"name": "Thierry Neuvic", "character": "Claude Ravache", "id": 83813, "credit_id": "5326ca25c3a3683dbf00412a", "cast_id": 60, "profile_path": "/vCHCg1rA5gKc2kxn1xcgsiHo5aa.jpg", "order": 21}, {"name": "Laurentiu Possa", "character": "Rene Heron", "id": 1280233, "credit_id": "5326cbc6c3a36824af003ae1", "cast_id": 61, "profile_path": "/aCarXz5DoC6ycy4Sn3RptzQeNGE.jpg", "order": 22}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe4969c3a36847f8198bb1", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.8, "runtime": 129}, "9426": {"poster_path": "/q49tjSe3O152t9QVwaradePGu7W.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40456565, "overview": "When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.", "video": false, "id": 9426, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "The Fly", "tagline": "Be afraid. Be very afraid.", "vote_count": 171, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6nU5cC8qaVO3hzSMDMJp4HCFwDA.jpg", "poster_path": "/r6mRcDV2MIbDQ79JpeGls5DnDfr.jpg", "id": 109609, "name": "The Fly Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091064", "adult": false, "backdrop_path": "/fAbDSD1wMTLbM5ANAUBFKeCJkxO.jpg", "production_companies": [{"name": "SLM Production Group", "id": 396}, {"name": "Brooksfilms", "id": 5612}], "release_date": "1986-08-15", "popularity": 0.906664408005697, "original_title": "The Fly", "budget": 15000000, "cast": [{"name": "Jeff Goldblum", "character": "Seth Brundle", "id": 4785, "credit_id": "52fe44f6c3a36847f80b454f", "cast_id": 1, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 0}, {"name": "Geena Davis", "character": "Veronica Quaife", "id": 16935, "credit_id": "52fe44f6c3a36847f80b4553", "cast_id": 2, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "John Getz", "character": "Stathis Borans", "id": 20211, "credit_id": "52fe44f6c3a36847f80b4557", "cast_id": 3, "profile_path": "/a0uOMxCiYqvcr3h49jopyKzKVfX.jpg", "order": 2}, {"name": "Joy Boushel", "character": "Tawny", "id": 57626, "credit_id": "52fe44f6c3a36847f80b4561", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Leslie Carlson", "character": "Dr. Brent Cheevers", "id": 12716, "credit_id": "52fe44f6c3a36847f80b4589", "cast_id": 12, "profile_path": "/nnYVdNB7MpXbBdq3xRzkD5fTzmW.jpg", "order": 4}, {"name": "George Chuvalo", "character": "Marky", "id": 105298, "credit_id": "52fe44f6c3a36847f80b458d", "cast_id": 13, "profile_path": "/9lTM1wUXaci9YpXILPUhH2i4iuu.jpg", "order": 5}, {"name": "Michael Copeman", "character": "2nd Man in Bar", "id": 180878, "credit_id": "52fe44f6c3a36847f80b4591", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "David Cronenberg", "character": "Gynecologist", "id": 224, "credit_id": "52fe44f6c3a36847f80b4595", "cast_id": 15, "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "order": 7}, {"name": "Carol Lazare", "character": "Nurse", "id": 1030612, "credit_id": "52fe44f6c3a36847f80b4599", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Shawn Hewitt", "character": "Clerk", "id": 1030869, "credit_id": "52fe44f6c3a36847f80b459d", "cast_id": 17, "profile_path": null, "order": 9}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b455d", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.6, "runtime": 96}, "9427": {"poster_path": "/mVDkJHxOxKK29u2Sf7oBy3DKSK2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 257850122, "overview": "Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.", "video": false, "id": 9427, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Full Monty", "tagline": "The year's most revealing comedy.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119164", "adult": false, "backdrop_path": "/mAaSPfGA4ixiKSXYydNpbwZswi6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "1997-08-29", "popularity": 0.949773250121893, "original_title": "The Full Monty", "budget": 3500000, "cast": [{"name": "Robert Carlyle", "character": "Gaz", "id": 18023, "credit_id": "52fe44f6c3a36847f80b45bd", "cast_id": 1, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 0}, {"name": "Mark Addy", "character": "Dave", "id": 13633, "credit_id": "52fe44f6c3a36847f80b45c1", "cast_id": 2, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 1}, {"name": "William Snape", "character": "Nathan", "id": 57628, "credit_id": "52fe44f6c3a36847f80b45c5", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Steve Huison", "character": "Lomper", "id": 57629, "credit_id": "52fe44f6c3a36847f80b45c9", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Tom Wilkinson", "character": "Gerald", "id": 207, "credit_id": "52fe44f6c3a36847f80b45cd", "cast_id": 5, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 4}, {"name": "Paul Barber", "character": "Horse", "id": 29698, "credit_id": "52fe44f6c3a36847f80b45d1", "cast_id": 6, "profile_path": "/nH4k8msd6Da7W2Z89JvQiqRLIqE.jpg", "order": 5}, {"name": "Hugo Speer", "character": "Guy", "id": 2251, "credit_id": "53b05d06c3a3682eea005308", "cast_id": 14, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 6}, {"name": "Lesley Sharp", "character": "Jean", "id": 80366, "credit_id": "53b05d1dc3a3682ee60051f2", "cast_id": 15, "profile_path": "/xaZY2lBXwS2Oa4a87qg1yxN6EgE.jpg", "order": 7}, {"name": "Emily Woof", "character": "Mandy", "id": 33679, "credit_id": "53b05d3bc3a3682ee60051f5", "cast_id": 16, "profile_path": "/6WfwdQl3ADG1ctLsVrjurUWclcP.jpg", "order": 8}, {"name": "Deirdre Costello", "character": "Linda", "id": 186025, "credit_id": "53b05d57c3a3682ee60051f9", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Paul Butterworth", "character": "Barry", "id": 1335635, "credit_id": "53b05d73c3a3682eee005193", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Dave Hill", "character": "Alan", "id": 20246, "credit_id": "53b05d91c3a3682ef100514d", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Bruce Jones", "character": "Reg", "id": 235361, "credit_id": "53fa0c750e0a267a6c0050ef", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Andrew Livingston", "character": "Terry", "id": 201013, "credit_id": "53b05e65c3a3682ee20054b8", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Vinny Dhillon", "character": "Sharon", "id": 1335636, "credit_id": "53b05e83c3a3682eee0051bc", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Kate Layden", "character": "Bee", "id": 1335637, "credit_id": "53b05e9dc3a3682eea00532b", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Joanna Swain", "character": "Sheryl", "id": 1335638, "credit_id": "53b05eb7c3a3682eea005331", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Diane Lane", "character": "Louise", "id": 2882, "credit_id": "53b05ee8c3a3682ee6005216", "cast_id": 25, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 17}, {"name": "Kate Rutter", "character": "Dole Clerk", "id": 229605, "credit_id": "53fa0d020e0a267a69005300", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "June Broughton", "character": "Lomper's Mum", "id": 1356539, "credit_id": "53fa0d370e0a267a78005009", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Glenn Cunningham", "character": "Police Inspector", "id": 1356540, "credit_id": "53fa0db90e0a267a69005319", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Chris Brailsford", "character": "Duty Sergeant", "id": 1356541, "credit_id": "53fa0de90e0a267a6f005303", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Steve Garti", "character": "Policeman", "id": 1198660, "credit_id": "53fa0eebc3a368734c0030dc", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Malcolm Pitt", "character": "Job Club Manager", "id": 1356542, "credit_id": "53fa0f66c3a368734f003021", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Dennis Blanch", "character": "Director", "id": 1217103, "credit_id": "53fa10fcc3a368735b003207", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Daryl Fishwick", "character": "Social Worker", "id": 1356544, "credit_id": "53fa11840e0a267a6f00536b", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "David Lonsdale", "character": "Repossession Man", "id": 1356546, "credit_id": "53fa11fb0e0a267a6f00538b", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Muriel Hunt", "character": "Horse's Mum", "id": 1356547, "credit_id": "53fa12320e0a267a7b005070", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Fiona Watts", "character": "Beryl", "id": 1356548, "credit_id": "53fa12910e0a267a75005340", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Theresa Maduemezia", "character": "Horse's Sister", "id": 1356549, "credit_id": "53fa13030e0a267a6c0051c0", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Fiona Nelson", "character": "Horse's Sister", "id": 1356550, "credit_id": "53fa1438c3a368734f003067", "cast_id": 39, "profile_path": null, "order": 30}], "directors": [{"name": "Peter Cattaneo", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b45d7", "profile_path": "/k96pAMgYi84Ddd6fcuHGZOO70v4.jpg", "id": 57630}], "vote_average": 7.0, "runtime": 91}, "9428": {"poster_path": "/5xw30y0pSaMtTcuZW5VaQPiR8qb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71441250, "overview": "An estranged family of former child prodigies reunites when their father announces he has a terminal illness.", "video": false, "id": 9428, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Royal Tenenbaums", "tagline": "Family isn\u2019t a word, it\u2019s a sentence.", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0265666", "adult": false, "backdrop_path": "/rk05hk4V0hmfHh4nl2KHjOaNKnq.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2001-10-05", "popularity": 0.953398200233963, "original_title": "The Royal Tenenbaums", "budget": 21000000, "cast": [{"name": "Gene Hackman", "character": "Royal Tenenbaum", "id": 193, "credit_id": "52fe44f6c3a36847f80b4633", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Anjelica Huston", "character": "Etheline Tenenbaum", "id": 5657, "credit_id": "52fe44f6c3a36847f80b4637", "cast_id": 3, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 1}, {"name": "Ben Stiller", "character": "Chas Tenenbaum", "id": 7399, "credit_id": "52fe44f6c3a36847f80b463b", "cast_id": 4, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 2}, {"name": "Gwyneth Paltrow", "character": "Margot Tenenbaum", "id": 12052, "credit_id": "52fe44f6c3a36847f80b463f", "cast_id": 5, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 3}, {"name": "Luke Wilson", "character": "Richie Tenenbaum", "id": 36422, "credit_id": "52fe44f6c3a36847f80b4643", "cast_id": 6, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 4}, {"name": "Owen Wilson", "character": "Eli Cash", "id": 887, "credit_id": "52fe44f6c3a36847f80b4647", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 5}, {"name": "Bill Murray", "character": "Raleigh St. Clair", "id": 1532, "credit_id": "52fe44f6c3a36847f80b464b", "cast_id": 8, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 6}, {"name": "Danny Glover", "character": "Henry Sherman", "id": 2047, "credit_id": "52fe44f6c3a36847f80b464f", "cast_id": 9, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 7}, {"name": "Alec Baldwin", "character": "Narrator (voice)", "id": 7447, "credit_id": "52fe44f6c3a36847f80b4653", "cast_id": 10, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 8}, {"name": "Seymour Cassel", "character": "Dusty", "id": 5950, "credit_id": "52fe44f6c3a36847f80b4693", "cast_id": 23, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 9}, {"name": "Kumar Pallana", "character": "Pagoda", "id": 8690, "credit_id": "52fe44f6c3a36847f80b4697", "cast_id": 24, "profile_path": "/emTPxZIt9j8d4FcKMSpX3eDq0tO.jpg", "order": 10}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b462f", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.2, "runtime": 110}, "9433": {"poster_path": "/xCbsU8JJgX8w9FxDKNPErA9elWC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them -- it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.", "video": false, "id": 9433, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Edge", "tagline": "They were fighting over a woman when the plane went down. Now, their only chance for survival is each other.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119051", "adult": false, "backdrop_path": "/wU05h6gUIjT55jPI5pHKgu3wjd1.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Art Linson Productions", "id": 8769}], "release_date": "1997-09-06", "popularity": 0.439336521319435, "original_title": "The Edge", "budget": 0, "cast": [{"name": "Alec Baldwin", "character": "Robert Green", "id": 7447, "credit_id": "52fe44f6c3a36847f80b48bf", "cast_id": 9, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Charles Morse", "id": 4173, "credit_id": "52fe44f6c3a36847f80b48c3", "cast_id": 10, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Elle Macpherson", "character": "Mickey Morse", "id": 5590, "credit_id": "52fe44f6c3a36847f80b48c7", "cast_id": 11, "profile_path": "/tSweboUrdsJo4nIRIJx2PEvkuVZ.jpg", "order": 2}, {"name": "Harold Perrineau", "character": "Stephen", "id": 6195, "credit_id": "52fe44f6c3a36847f80b48cb", "cast_id": 12, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 3}, {"name": "Bart the Bear", "character": "The Bear", "id": 24433, "credit_id": "53a8608bc3a3687a2e0058d2", "cast_id": 13, "profile_path": "/g7At5iMNrQZUvFYc5aIz5T9NF8b.jpg", "order": 4}, {"name": "L.Q. Jones", "character": "Styles", "id": 8262, "credit_id": "53a8609bc3a368707a004a69", "cast_id": 14, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 5}, {"name": "Kathleen Wilhoite", "character": "Ginny", "id": 42335, "credit_id": "53a860aac3a3687a430058a5", "cast_id": 15, "profile_path": "/vVqaPBDr54BgryNaGb9IIyDQExD.jpg", "order": 6}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b4891", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 6.3, "runtime": 117}, "9434": {"poster_path": "/3qn4gjft8dl5syUDpmPvWqCPFAf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28084357, "overview": "Martin Blank is a freelance hitman who starts to develop a conscience, which causes him to muff a couple of routine assignments. On the advice of his secretary and his psychiatrist, he attends his 10th year High School reunion in Grosse Pointe, Michigan.", "video": false, "id": 9434, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Grosse Pointe Blank", "tagline": "Even a hit man deserves a second shot.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119229", "adult": false, "backdrop_path": "/xQnAaMY5WgqIY2h8zrr9rCGIKR1.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Roger Birnbaum Productions", "id": 961}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1997-04-11", "popularity": 0.282618988171516, "original_title": "Grosse Pointe Blank", "budget": 0, "cast": [{"name": "John Cusack", "character": "Martin Q. Blank", "id": 3036, "credit_id": "52fe44f6c3a36847f80b491f", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Minnie Driver", "character": "Debi Newberry", "id": 6613, "credit_id": "52fe44f7c3a36847f80b4923", "cast_id": 8, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Grocer", "id": 707, "credit_id": "52fe44f7c3a36847f80b4927", "cast_id": 9, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Marcella", "id": 3234, "credit_id": "52fe44f7c3a36847f80b492b", "cast_id": 10, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Dr. Oatman", "id": 1903, "credit_id": "52fe44f7c3a36847f80b4941", "cast_id": 15, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Hank Azaria", "character": "Steven Lardner", "id": 5587, "credit_id": "52fe44f7c3a36847f80b4945", "cast_id": 16, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 5}, {"name": "K. Todd Freeman", "character": "Kenneth McCullers", "id": 149534, "credit_id": "52fe44f7c3a36847f80b4949", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Jeremy Piven", "character": "Paul Spericki", "id": 12799, "credit_id": "52fe44f7c3a36847f80b494d", "cast_id": 18, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 7}, {"name": "Mitchell Ryan", "character": "Mr. Bart Newberry (as Mitchell Ryan)", "id": 14312, "credit_id": "52fe44f7c3a36847f80b4951", "cast_id": 19, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 8}, {"name": "David Barrett", "character": "Bicycle Messenger", "id": 74859, "credit_id": "52fe44f7c3a36847f80b495f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Michael Cudlitz", "character": "Bob Destepello", "id": 52415, "credit_id": "530450b6c3a3683a7a0b5d35", "cast_id": 23, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 11}, {"name": "Steve Pink", "character": "Terry Rostand", "id": 3227, "credit_id": "54ebf37e92514179610009f6", "cast_id": 24, "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "order": 12}], "directors": [{"name": "George Armitage", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b48fd", "profile_path": null, "id": 58294}], "vote_average": 7.0, "runtime": 107}, "9437": {"poster_path": "/m9CyzlwbXhfUPooRIAcBoE63Frg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60527873, "overview": "Forensic psychologist Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down \"Casanova,\" a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.", "video": false, "id": 9437, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Kiss the Girls", "tagline": "Smart Girls. Pretty Girls. Missing Girls.", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eyKpawn8yMq6kdv03wgKruMuSJX.jpg", "poster_path": "/64mlnEVoq1I0BZe4iDdAv89qO9Z.jpg", "id": 142680, "name": "Alex Cross Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0119468", "adult": false, "backdrop_path": "/nepqAk218e5Kk6rKAmtpNeCX8sb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rysher Entertainment", "id": 11661}], "release_date": "1997-10-03", "popularity": 0.464950607931342, "original_title": "Kiss the Girls", "budget": 27000000, "cast": [{"name": "Morgan Freeman", "character": "Alex Cross", "id": 192, "credit_id": "52fe44f7c3a36847f80b49cb", "cast_id": 8, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Ashley Judd", "character": "Kate McTiernan", "id": 15852, "credit_id": "52fe44f7c3a36847f80b49cf", "cast_id": 9, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Det. Nick Ruskin", "id": 2130, "credit_id": "52fe44f7c3a36847f80b49d3", "cast_id": 10, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Alex McArthur", "character": "Davey Sikes", "id": 58293, "credit_id": "52fe44f7c3a36847f80b49d7", "cast_id": 11, "profile_path": "/aYA5RdEffj4qPz8E647UByWyp5x.jpg", "order": 3}, {"name": "Tony Goldwyn", "character": "Dr. William 'Will' Rudolph", "id": 3417, "credit_id": "52fe44f7c3a36847f80b49db", "cast_id": 12, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 4}, {"name": "Jay O. Sanders", "character": "FBI Agent Kyle Craig", "id": 6067, "credit_id": "52fe44f7c3a36847f80b49df", "cast_id": 13, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 5}, {"name": "Bill Nunn", "character": "Det. John Sampson", "id": 5502, "credit_id": "52fe44f7c3a36847f80b49e3", "cast_id": 14, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 6}, {"name": "Brian Cox", "character": "Chief Hatfield, Durham P.D.", "id": 1248, "credit_id": "52fe44f7c3a36847f80b49e7", "cast_id": 15, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 7}, {"name": "Richard T. Jones", "character": "Seth Samuel", "id": 55755, "credit_id": "52fe44f7c3a36847f80b49eb", "cast_id": 16, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 8}, {"name": "Roma Maffia", "character": "Dr. Ruocco", "id": 21366, "credit_id": "52fe44f7c3a36847f80b49ef", "cast_id": 17, "profile_path": "/tfscWeBOGA9aysLbYoOduimpTOk.jpg", "order": 9}, {"name": "Jeremy Piven", "character": "Henry Castillo, LAPD", "id": 12799, "credit_id": "52fe44f7c3a36847f80b49f3", "cast_id": 18, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 10}, {"name": "Gina Ravera", "character": "Naomi Cross", "id": 77279, "credit_id": "52fe44f7c3a36847f80b49f7", "cast_id": 19, "profile_path": "/cJDWfNdmnBFSFFi1YKXCM4YVyY6.jpg", "order": 11}, {"name": "William Converse-Roberts", "character": "Dr. Wick Sachs", "id": 31712, "credit_id": "52fe44f7c3a36847f80b49fb", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Helen Martin", "character": "Nana Cross", "id": 111872, "credit_id": "52fe44f7c3a36847f80b49ff", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Tatyana Ali", "character": "Janell Cross", "id": 4996, "credit_id": "52fe44f7c3a36847f80b4a03", "cast_id": 22, "profile_path": "/7Mzcrk00fmLKS1VwQwouTHmwOXP.jpg", "order": 14}, {"name": "Mena Suvari", "character": "Coty Pierce", "id": 8211, "credit_id": "52fe44f7c3a36847f80b4a07", "cast_id": 23, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 15}, {"name": "Heidi Schanz", "character": "Megan Murphy", "id": 11321, "credit_id": "52fe44f7c3a36847f80b4a0b", "cast_id": 24, "profile_path": "/svkz78fByMnD4K5LbQx903ao5I0.jpg", "order": 16}, {"name": "Rick Warner", "character": "Sgt. Willard", "id": 163795, "credit_id": "52fe44f7c3a36847f80b4a0f", "cast_id": 25, "profile_path": null, "order": 17}], "directors": [{"name": "Gary Fleder", "department": "Directing", "job": "Director", "credit_id": "52fe44f7c3a36847f80b49a9", "profile_path": "/rRxdnJbRT8Ygg8KNpdoxULszClx.jpg", "id": 5501}], "vote_average": 5.9, "runtime": 115}, "1246": {"poster_path": "/usZMPGxyRsyOpX5nuqHFxH3qlMh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119201483, "overview": "When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder Mason Dixon retaliates by challenging the Itallian Stallion to a nationally televised, 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger and thirty years his junior.", "video": false, "id": 1246, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky Balboa", "tagline": "Never give up. And never stop believing.", "vote_count": 224, "homepage": "http://www.rocky.com/", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0479143", "adult": false, "backdrop_path": "/1hCngs2CrxCZaPTwvxT9le7lJbO.jpg", "production_companies": [{"name": "MGM", "id": 5899}], "release_date": "2006-12-20", "popularity": 1.24017160384055, "original_title": "Rocky Balboa", "budget": 24000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42e9c3a36847f802c61b", "cast_id": 24, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42e9c3a36847f802c61f", "cast_id": 25, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 1}, {"name": "Milo Ventimiglia", "character": "Rocky Jr.", "id": 16501, "credit_id": "52fe42e9c3a36847f802c623", "cast_id": 26, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 2}, {"name": "Geraldine Hughes", "character": "Marie", "id": 16502, "credit_id": "52fe42e9c3a36847f802c627", "cast_id": 27, "profile_path": "/c1RaGjdaoRdX6n5BidukIg26J1A.jpg", "order": 3}, {"name": "James Francis Kelly III", "character": "Steps", "id": 16503, "credit_id": "52fe42e9c3a36847f802c62b", "cast_id": 28, "profile_path": "/iZyTQ2UlwNXrqLqPeNHbofFXubP.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42e9c3a36847f802c62f", "cast_id": 29, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "A. J. Benza", "character": "L.C.", "id": 16505, "credit_id": "52fe42e9c3a36847f802c633", "cast_id": 30, "profile_path": "/5hVinC6C1ZyD7c8EmZFTiEaF7vH.jpg", "order": 6}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42e9c3a36847f802c637", "cast_id": 31, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 7}, {"name": "Henry G. Sanders", "character": "Martin", "id": 16506, "credit_id": "52fe42e9c3a36847f802c63b", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Antonio Tarver", "character": "Mason 'The Line' Dixon", "id": 16507, "credit_id": "52fe42e9c3a36847f802c63f", "cast_id": 33, "profile_path": "/kJEljjHwBvrjoxqcSVntXlejgl1.jpg", "order": 9}, {"name": "Pedro Lovell", "character": "Spider Rico", "id": 16508, "credit_id": "52fe42e9c3a36847f802c643", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Ana Gerena", "character": "Isabel", "id": 16509, "credit_id": "52fe42e9c3a36847f802c647", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Angela Boyd", "character": "Angie", "id": 16510, "credit_id": "52fe42e9c3a36847f802c64b", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Louis Giansante", "character": "Bar Thug", "id": 16511, "credit_id": "52fe42e9c3a36847f802c64f", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Maureen Schilling", "character": "Lucky's Bartender", "id": 16512, "credit_id": "52fe42e9c3a36847f802c653", "cast_id": 38, "profile_path": null, "order": 14}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c593", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.4, "runtime": 102}, "1573": {"poster_path": "/99xir5bAuMMkLriMw0nBrau8Gw7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 240031094, "overview": "John McClane is an off-duty cop gripped with a feeling of d\u00e9j\u00e0 vu when on a snowy Christmas Eve in the nation's capital, terrorists seize a major international airport, holding thousands of holiday travelers hostage. Renegade military commandos led by a murderous rogue officer plot to rescue a drug lord from justice and are prepared for every contingency except one: McClane's smart-mouthed heroics.", "video": false, "id": 1573, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Die Hard 2", "tagline": "Die Harder", "vote_count": 839, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0099423", "adult": false, "backdrop_path": "/z4bFbsYlECaflCCOTRf5qY0oVIw.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gordon Company", "id": 1073}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1990-07-03", "popularity": 1.56558472241771, "original_title": "Die Hard 2", "budget": 70000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe42ffc3a36847f8032a27", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Bonnie Bedelia", "character": "Holly McClane", "id": 7673, "credit_id": "52fe42ffc3a36847f8032a37", "cast_id": 4, "profile_path": "/u0DOzyTNZhtFgPHIFX5OITMb7wm.jpg", "order": 1}, {"name": "William Sadler", "character": "Colonel Stuart", "id": 6573, "credit_id": "52fe42ffc3a36847f8032a3b", "cast_id": 5, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 2}, {"name": "Franco Nero", "character": "Genera Ramon Esperanza", "id": 22383, "credit_id": "52fe42ffc3a36847f8032a3f", "cast_id": 6, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 3}, {"name": "Dennis Franz", "character": "Captain Carmine Lorenzo", "id": 11901, "credit_id": "52fe42ffc3a36847f8032a43", "cast_id": 7, "profile_path": "/oigU88Mm2YVPvyLr6cf2PehJMjW.jpg", "order": 4}, {"name": "John Amos", "character": "Major Grant", "id": 22384, "credit_id": "52fe42ffc3a36847f8032a47", "cast_id": 8, "profile_path": "/gHe1eOXONqm3AmMtghfVXbU5V2m.jpg", "order": 5}, {"name": "Reginald VelJohnson", "character": "Sgt. Al Powell", "id": 7672, "credit_id": "52fe42ffc3a36847f8032a4b", "cast_id": 9, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 6}, {"name": "William Atherton", "character": "Richard Thornburg", "id": 7676, "credit_id": "52fe42ffc3a36847f8032a61", "cast_id": 13, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 7}, {"name": "Art Evans", "character": "Leslie Barnes", "id": 56183, "credit_id": "52fe42ffc3a36847f8032a65", "cast_id": 14, "profile_path": "/oFxv6KQdXU30MY00ASwoMqbKVAg.jpg", "order": 8}, {"name": "Fred Thompson", "character": "Trudeau", "id": 17874, "credit_id": "52fe42ffc3a36847f8032a69", "cast_id": 15, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 9}, {"name": "Tom Bower", "character": "Marvin", "id": 19453, "credit_id": "52fe42ffc3a36847f8032a6d", "cast_id": 16, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 10}, {"name": "Sheila McCarthy", "character": "Samantha 'Sam' Coleman", "id": 29384, "credit_id": "52fe42ffc3a36847f8032a71", "cast_id": 17, "profile_path": "/gsxN7CCPUUTa1lU18JQnbjXs99R.jpg", "order": 11}, {"name": "Don Harvey", "character": "Garber", "id": 1280, "credit_id": "52fe42ffc3a36847f8032a75", "cast_id": 18, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 12}, {"name": "Tony Ganios", "character": "Baker", "id": 3010, "credit_id": "52fe42ffc3a36847f8032a79", "cast_id": 19, "profile_path": "/zTpWUjo86uwTevyOblEozt3ae7I.jpg", "order": 13}, {"name": "Peter Nelson", "character": "Thompson", "id": 122363, "credit_id": "52fe42ffc3a36847f8032a7d", "cast_id": 20, "profile_path": "/4KPM9vK9pu0IohcLm908NDyDAPz.jpg", "order": 14}, {"name": "Robert Patrick", "character": "O'Reilly", "id": 418, "credit_id": "52fe42ffc3a36847f8032a81", "cast_id": 21, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 15}, {"name": "Mick Cunningham", "character": "Sheldon (as Michael Cunningham)", "id": 589925, "credit_id": "52fe42ffc3a36847f8032a85", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "John Leguizamo", "character": "Burke", "id": 5723, "credit_id": "52fe42ffc3a36847f8032a89", "cast_id": 23, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 17}, {"name": "Tom Verica", "character": "Kahn", "id": 155423, "credit_id": "52fe42ffc3a36847f8032a8d", "cast_id": 24, "profile_path": "/eyOTcWS4vAbciBRbOoZcmkw2TRH.jpg", "order": 18}, {"name": "John Costelloe", "character": "Sgt. Oswald Cochrane", "id": 171747, "credit_id": "52fe42ffc3a36847f8032a91", "cast_id": 25, "profile_path": "/tTg6bPJPC9paNXD4wiYW8k3LTNd.jpg", "order": 19}, {"name": "Vondie Curtis-Hall", "character": "Miller (as Vondi Curtis Hall)", "id": 6198, "credit_id": "52fe42ffc3a36847f8032a95", "cast_id": 26, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 20}, {"name": "Mark Boone Junior", "character": "Shockley", "id": 534, "credit_id": "52fe42ffc3a36847f8032a99", "cast_id": 27, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 21}, {"name": "Ken Baldwin", "character": "Mulkey", "id": 1037879, "credit_id": "52fe42ffc3a36847f8032a9d", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Danny Weselis", "character": "Blue Light Team", "id": 157976, "credit_id": "52fe42ffc3a36847f8032aa1", "cast_id": 29, "profile_path": "/cUYfDiL5rRUDeTB7FYHmFdwNgzv.jpg", "order": 23}, {"name": "Gregg Kovan", "character": "Blue Light Team", "id": 1037880, "credit_id": "52fe42ffc3a36847f8032aa5", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Don McGovern", "character": "Lt.Sherman / Blue light Team (as Don Charles McGovern)", "id": 77487, "credit_id": "52fe42ffc3a36847f8032aa9", "cast_id": 31, "profile_path": "/3AO8R8MuFeYsT57QzXZJOX9zMQ6.jpg", "order": 25}, {"name": "Danial Donai", "character": "Blue Light Team", "id": 1037881, "credit_id": "52fe42ffc3a36847f8032aad", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Jeff Langton", "character": "Blue Light Team", "id": 149496, "credit_id": "52fe42ffc3a36847f8032ab1", "cast_id": 33, "profile_path": "/z7WLraZTnLWv6fKxzLlo5Aoe1pG.jpg", "order": 27}, {"name": "Bob 'Rocky' Cheli", "character": "Blue Light Team", "id": 1037882, "credit_id": "52fe42ffc3a36847f8032ab5", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Dale Jacoby", "character": "Blue Light Team", "id": 189162, "credit_id": "52fe42ffc3a36847f8032ab9", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Vincent Mazella Jr.", "character": "Blue Light Team (as Vincent Joseph Mazzella Jr.)", "id": 1037883, "credit_id": "52fe42ffc3a36847f8032abd", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Patrick O'Neal", "character": "Cpl. Telford", "id": 1016112, "credit_id": "52fe42ffc3a36847f8032ac1", "cast_id": 37, "profile_path": "/2NfEtgrPMRtfvEhckt5sunt1edx.jpg", "order": 31}, {"name": "Ben Lemon", "character": "Sergeant", "id": 174894, "credit_id": "52fe42ffc3a36847f8032ac5", "cast_id": 38, "profile_path": "/9NgQ8g38GJoZlGYY3JhIuTyHw5t.jpg", "order": 32}, {"name": "Jason Ross-Azikiwe", "character": "Second Sergeant", "id": 1037884, "credit_id": "52fe42ffc3a36847f8032ac9", "cast_id": 39, "profile_path": "/jksjUYqw5QeTuOwlfwoCTz1lXY3.jpg", "order": 33}, {"name": "Anthony Droz", "character": "Soldier", "id": 1037885, "credit_id": "52fe42ffc3a36847f8032acd", "cast_id": 40, "profile_path": null, "order": 34}, {"name": "Michael Francis Clarke", "character": "Pilot (Northeast Plane)", "id": 162778, "credit_id": "52fe42ffc3a36847f8032ad1", "cast_id": 41, "profile_path": "/jBh0jG8meLDjV6tB4ikp4IqPs44.jpg", "order": 35}, {"name": "Steve Pershing", "character": "Co-Pilot (Northeast Plane)", "id": 194645, "credit_id": "52fe42ffc3a36847f8032ad5", "cast_id": 42, "profile_path": "/4x4vqoWWd7PTU9Y53g5oFnL9NDy.jpg", "order": 36}, {"name": "Tom Everett", "character": "Navigator (Northeast Plane)", "id": 140250, "credit_id": "52fe42ffc3a36847f8032ad9", "cast_id": 43, "profile_path": "/nxrCAB3xL79EdWLwBUMwXj7FtI3.jpg", "order": 37}, {"name": "Sherry Bilsing", "character": "Stewardess - Northeast Plane", "id": 193707, "credit_id": "52fe42ffc3a36847f8032add", "cast_id": 44, "profile_path": "/yVMy3sw4wYfqJIlnqQFzxPKEKAs.jpg", "order": 38}, {"name": "Karla Tamburrelli", "character": "Stewardess (Northeast Plane)", "id": 33491, "credit_id": "52fe42ffc3a36847f8032ae1", "cast_id": 45, "profile_path": "/oJB0bnFcwHgh1ZnbWiszTWjw5Cz.jpg", "order": 39}, {"name": "Jeanne Bates", "character": "Older Woman (Northeast Plane)", "id": 14796, "credit_id": "52fe42ffc3a36847f8032ae5", "cast_id": 46, "profile_path": "/lHrwjoC9K970j1uet252Ti3LBaD.jpg", "order": 40}, {"name": "Colm Meaney", "character": "Pilot (Windsor Plane)", "id": 17782, "credit_id": "52fe42ffc3a36847f8032ae9", "cast_id": 47, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 41}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032a2d", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.3, "runtime": 124}, "34016": {"poster_path": "/jtoZLyid2QGjbkuMrQ4cMt8iRFd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49779728, "overview": "When he starts dating drop-dead gorgeous Molly, insecure airport security agent Kirk can't believe it. As his friends and family share their doubts about the relationship lasting, Kirk does everything he can to avoid losing Molly forever.", "video": false, "id": 34016, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "She's Out of My League", "tagline": "When she's this hot, You get one shot.", "vote_count": 144, "homepage": "http://www.getyourrating.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0815236", "adult": false, "backdrop_path": "/9Pu4kGTcq7c1bvufK13p5WaHe7K.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2010-03-11", "popularity": 0.540792629289767, "original_title": "She's Out of My League", "budget": 20000000, "cast": [{"name": "Alice Eve", "character": "Molly", "id": 59860, "credit_id": "52fe454b9251416c9102d6a9", "cast_id": 1, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 0}, {"name": "Jay Baruchel", "character": "Kirk Kettner", "id": 449, "credit_id": "52fe454b9251416c9102d6ad", "cast_id": 2, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 1}, {"name": "Mike Vogel", "character": "Jack", "id": 6858, "credit_id": "52fe454b9251416c9102d6b1", "cast_id": 3, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 2}, {"name": "Krysten Ritter", "character": "Patty", "id": 78080, "credit_id": "52fe454b9251416c9102d6b5", "cast_id": 4, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 3}, {"name": "Debra Jo Rupp", "character": "Mrs. Kettner", "id": 15453, "credit_id": "52fe454b9251416c9102d6b9", "cast_id": 5, "profile_path": "/iIhAnkHOeaj9KX8NctfZcfCNxZn.jpg", "order": 4}, {"name": "Lindsay Sloane", "character": "Marnie", "id": 41662, "credit_id": "52fe454b9251416c9102d6bd", "cast_id": 6, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 5}, {"name": "Kim Shaw", "character": "Katie (Molly\u2019s Sister)", "id": 111685, "credit_id": "52fe454b9251416c9102d6c1", "cast_id": 7, "profile_path": "/l849560Ag8pW8JAKdtJZYTHPTic.jpg", "order": 6}, {"name": "Geoff Stults", "character": "Cam", "id": 22128, "credit_id": "52fe454b9251416c9102d6c5", "cast_id": 8, "profile_path": "/bAJMiio9EiiXGQ2w9d3hEnxpejq.jpg", "order": 7}, {"name": "T.J. Miller", "character": "Stainer", "id": 51990, "credit_id": "52fe454b9251416c9102d6c9", "cast_id": 9, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 8}, {"name": "Nate Torrence", "character": "Devon", "id": 41565, "credit_id": "52fe454b9251416c9102d6d3", "cast_id": 13, "profile_path": "/nQoVDAd3MeMEW740Z0Ie9sPTnx5.jpg", "order": 9}, {"name": "Kyle Bornheimer", "character": "Dylan", "id": 1215836, "credit_id": "52fe454b9251416c9102d701", "cast_id": 21, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 10}, {"name": "Jasika Nicole", "character": "Wendy", "id": 1222945, "credit_id": "544265d2c3a3683e01001e22", "cast_id": 22, "profile_path": "/b7rQes7rrxX6tUDSc8PJ5G7yuhu.jpg", "order": 11}], "directors": [{"name": "Jim Field Smith", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c9102d6cf", "profile_path": "/mBMtA2f4SU2UyYkHrzAsNgQqSLr.jpg", "id": 111686}], "vote_average": 6.2, "runtime": 104}, "9441": {"poster_path": "/57TqKdh9rnXgxqiuF2U97HNaOh2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie\u2019s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.", "video": false, "id": 9441, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Stepmom", "tagline": "Be there for the joy. Be there for the tears. Be there for each other.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120686", "adult": false, "backdrop_path": "/baKtflA4sSEjjxS0BHubjv7oUhe.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Columbia Pictures", "id": 5}], "release_date": "1998-12-25", "popularity": 0.258182829724875, "original_title": "Stepmom", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Isabel Kelly", "id": 1204, "credit_id": "52fe44f7c3a36847f80b4bef", "cast_id": 9, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Jackie Harrison", "id": 4038, "credit_id": "52fe44f7c3a36847f80b4bf3", "cast_id": 10, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Ed Harris", "character": "Luke Harrison", "id": 228, "credit_id": "52fe44f7c3a36847f80b4bf7", "cast_id": 11, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Jena Malone", "character": "Anna Harrison", "id": 20089, "credit_id": "52fe44f7c3a36847f80b4bfb", "cast_id": 12, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 3}, {"name": "Liam Aiken", "character": "Ben Harrison", "id": 19977, "credit_id": "52fe44f7c3a36847f80b4bff", "cast_id": 13, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 4}, {"name": "Jason Maves", "character": "Brad Kovitsky", "id": 1047726, "credit_id": "52fe44f7c3a36847f80b4c03", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Naama Kates", "character": "Anna's Friend", "id": 235507, "credit_id": "552a8c4c92514132360024c9", "cast_id": 15, "profile_path": "/l722axptBuzkUn7xPHHeeWWeAQI.jpg", "order": 6}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe44f7c3a36847f80b4bc7", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.8, "runtime": 124}, "1250": {"poster_path": "/jnllnSq8u4d1oQPU7PsoAHD6bLU.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 228738393, "overview": "In order to save his dying father, young stunt cyclist Johnny Blaze sells his soul to Mephistopheles and sadly parts from the pure-hearted Roxanne Simpson, the love of his life. Years later, Johnny's path crosses again with Roxanne, now a gogetting reporter, and also with Mephistopheles, who offers to release Johnny's soul if Johnny becomes the fabled, fiery Ghost Rider.", "video": false, "id": 1250, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Rider", "tagline": "Long ago he made a deal to save someone he loved.", "vote_count": 525, "homepage": "http://www.sonypictures.com/movies/ghostrider/", "belongs_to_collection": {"backdrop_path": "/ee8zhn4VIXQh1J5t7efyybcvHLj.jpg", "poster_path": "/bZBasloaMhjxCwH6tV0eziNMqut.jpg", "id": 90306, "name": "Ghost Rider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0259324", "adult": false, "backdrop_path": "/9cs9RuOS3A5YEh6r4opVrIGbiJy.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Crystal Sky Pictures", "id": 20241}, {"name": "Relativity Media", "id": 7295}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "GH One", "id": 20475}, {"name": "Vengeance Productions Pty. Ltd.", "id": 20476}], "release_date": "2007-02-16", "popularity": 1.60095654550943, "original_title": "Ghost Rider", "budget": 110000000, "cast": [{"name": "Nicolas Cage", "character": "Johnny Blaze/Ghost Rider", "id": 2963, "credit_id": "52fe42eac3a36847f802c7f9", "cast_id": 11, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Roxanne Simpson", "id": 8170, "credit_id": "52fe42eac3a36847f802c7fd", "cast_id": 12, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Wes Bentley", "character": "Blackheart", "id": 8210, "credit_id": "52fe42eac3a36847f802c805", "cast_id": 14, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 2}, {"name": "Donal Logue", "character": "Mack", "id": 10825, "credit_id": "52fe42eac3a36847f802c801", "cast_id": 13, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Caretaker", "id": 16431, "credit_id": "52fe42eac3a36847f802c809", "cast_id": 15, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Peter Fonda", "character": "Mephistopheles", "id": 8949, "credit_id": "52fe42eac3a36847f802c81f", "cast_id": 19, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 5}, {"name": "Brett Cullen", "character": "Barton Blaze", "id": 16841, "credit_id": "52fe42eac3a36847f802c823", "cast_id": 20, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 6}, {"name": "Matt Long", "character": "Young Johnny Blaze", "id": 16839, "credit_id": "52fe42eac3a36847f802c827", "cast_id": 21, "profile_path": "/b3ittJNh8NfvwkgfcoiSimHD3Xq.jpg", "order": 7}, {"name": "Raquel Alessi", "character": "Young Roxanne Simpson", "id": 16840, "credit_id": "52fe42eac3a36847f802c82b", "cast_id": 22, "profile_path": "/vE3CjMBwmn43rtc2OOWDeM9qvJA.jpg", "order": 8}, {"name": "Tony Ghosthawk", "character": "Team Blaze", "id": 1297400, "credit_id": "53106190925141101f000c4f", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Hugh Sexton", "character": "Team Blaze", "id": 211670, "credit_id": "531061b9c3a3682a10001035", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Marcus Jones", "character": "Team Blaze", "id": 474842, "credit_id": "531061c6c3a368299b00104a", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Matt Norman", "character": "Team Blaze", "id": 1157635, "credit_id": "531061d3c3a36829e2000f4a", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Lawrence Cameron Steele", "character": "X Games Announcer", "id": 1297402, "credit_id": "531061e6c3a36829b8000fd4", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Eddie Baroo", "character": "Motorcycle Gang Member", "id": 217046, "credit_id": "53106204c3a36829a9000fa4", "cast_id": 28, "profile_path": "/2VA0cPaaqRCDLylXTQCPSLl73AF.jpg", "order": 14}, {"name": "Jessica Napier", "character": "Broken Spoke Waitress", "id": 91400, "credit_id": "53106218c3a368299b001053", "cast_id": 29, "profile_path": "/jatk1WtwphaUKdY6ldwHP2qkiMN.jpg", "order": 15}, {"name": "Laurence Breuls", "character": "Gressil", "id": 76067, "credit_id": "5310622cc3a36829b8000fdd", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Rebel Wilson", "character": "Goth Girl in Alley", "id": 221581, "credit_id": "5327820a9251411a1e000fd6", "cast_id": 31, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 17}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802c7d7", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.1, "runtime": 114}, "1251": {"poster_path": "/nWJJqOryTQOmVXvKUkLcEETUHgT.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68673228, "overview": "The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.", "video": false, "id": 1251, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Letters from Iwo Jima", "tagline": "The battle of Iwo Jima seen through the eyes of the Japanese soldiers.", "vote_count": 127, "homepage": "http://iwojimathemovie.warnerbros.com/lettersofiwojima/framework/framework.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/7wFTAiIVVucj2PLvMwLZXojEJsA.jpg", "id": 261382, "name": "Clint Eastwood's Iwo Jima"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0498380", "adult": false, "backdrop_path": "/ramtKRAgXSU2UJZrvVEgtVlOa8C.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Malpaso Productions", "id": 171}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2006-12-19", "popularity": 1.14282919165198, "original_title": "Letters from Iwo Jima", "budget": 19000000, "cast": [{"name": "Ken Watanabe", "character": "General Tadamichi Kuribayashi", "id": 3899, "credit_id": "52fe42eac3a36847f802c887", "cast_id": 7, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 0}, {"name": "Kazunari Ninomiya", "character": "Private Saigo", "id": 33515, "credit_id": "52fe42eac3a36847f802c88b", "cast_id": 8, "profile_path": "/40x2xRqcil8MpksK8xETqHp1XaX.jpg", "order": 1}, {"name": "Tsuyoshi Ihara", "character": "Colonel Baron Nishi", "id": 33516, "credit_id": "52fe42eac3a36847f802c88f", "cast_id": 9, "profile_path": "/5MLcKIGrfIDbxlc7u3XDrPOAj1M.jpg", "order": 2}, {"name": "Ry\u014d Kase", "character": "Private Shimizu", "id": 33517, "credit_id": "52fe42eac3a36847f802c893", "cast_id": 10, "profile_path": "/8Fnh4yzktTsFbJCLnWnGmInajG5.jpg", "order": 3}, {"name": "Nakamura Shid\u014d II", "character": "Lieutenant Ito", "id": 72202, "credit_id": "52fe42eac3a36847f802c8dd", "cast_id": 27, "profile_path": "/jsqasWEn1ls8XQKMxOQHr9IgPTD.jpg", "order": 4}, {"name": "Hiroshi Watanabe", "character": "Lieutenant Fujita", "id": 33519, "credit_id": "52fe42eac3a36847f802c897", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Eijiro Ozaki", "character": "Lieutenant Okubo", "id": 33520, "credit_id": "52fe42eac3a36847f802c89b", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Lucas Elliot Eberl", "character": "Sam", "id": 33521, "credit_id": "52fe42eac3a36847f802c89f", "cast_id": 14, "profile_path": "/nUfvIZqKpHhBqBSS0W1NUf99HeW.jpg", "order": 7}, {"name": "Yuki Matsuzaki", "character": "Private Nozaki", "id": 77955, "credit_id": "52fe42eac3a36847f802c8d9", "cast_id": 26, "profile_path": "/2wpDHE2XW805ql9LMgYxhbJto1h.jpg", "order": 8}, {"name": "Hiro Abe", "character": "Lt. Colonel Oiso", "id": 33522, "credit_id": "52fe42eac3a36847f802c8a3", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Sonny Saito", "character": "Medic Endo", "id": 33523, "credit_id": "52fe42eac3a36847f802c8a7", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Steve Santa Sekiyoshi", "character": "Kanda", "id": 33524, "credit_id": "52fe42eac3a36847f802c8ab", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Toshiya Agata", "character": "Captain Iwasaki", "id": 552266, "credit_id": "544a11880e0a2674830036c5", "cast_id": 63, "profile_path": null, "order": 12}, {"name": "Toshi Toda", "character": "Colonel Adachi", "id": 156963, "credit_id": "544a11c7c3a3680fb80038ea", "cast_id": 64, "profile_path": "/pFYqicvIVtrSSZQKnbSOXl1cw8K.jpg", "order": 13}, {"name": "Ken Kensei", "character": "Maj. General Hayashi", "id": 1237536, "credit_id": "544a11ed0e0a267480003894", "cast_id": 65, "profile_path": null, "order": 14}, {"name": "Ikuma Ando", "character": "Ozawa", "id": 1190728, "credit_id": "544a120d0e0a267479003601", "cast_id": 66, "profile_path": null, "order": 15}, {"name": "Akiko Shima", "character": "Lead Woman", "id": 239955, "credit_id": "544a122c0e0a26748c003735", "cast_id": 67, "profile_path": null, "order": 16}, {"name": "Masashi Nagadoi", "character": "Admiral Ichimaru", "id": 1172152, "credit_id": "544a124c0e0a26747900360b", "cast_id": 68, "profile_path": null, "order": 17}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802c865", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.7, "runtime": 141}, "9444": {"poster_path": "/dKJ6OOYlHGPARKidvP1kYJjXW29.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64900000, "overview": "This animated adventure retells the story of the lost daughter of Russia's last czar. The evil Rasputin places a curse on the Romanov family, and Anastasia and her grandmother, Empress Maria, get separated. After growing up in an orphanage, Anastasia encounters two Russian men seeking a reward offered by Empress Maria for the return of her granddaughter. The trio travels to Paris, where they find that the empress has grown skeptical of imposters.", "video": false, "id": 9444, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Anastasia", "tagline": "Discover the Adventure Behind the Greatest Mystery of Our Time.", "vote_count": 249, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0118617", "adult": false, "backdrop_path": "/eDA9rYqf3FwC1cR65jW5GGJLLjz.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Fox Animation Studios", "id": 11231}, {"name": "Fox Family Films", "id": 11232}, {"name": "The Big Gun Project", "id": 11233}, {"name": "Little Wolf Entertainment", "id": 11234}], "release_date": "1997-11-21", "popularity": 0.968994010589911, "original_title": "Anastasia", "budget": 53000000, "cast": [{"name": "Meg Ryan", "character": "Anastasia (voice)", "id": 5344, "credit_id": "52fe44f8c3a36847f80b4dff", "cast_id": 2, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 0}, {"name": "John Cusack", "character": "Dimitri (voice)", "id": 3036, "credit_id": "52fe44f8c3a36847f80b4dfb", "cast_id": 1, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 1}, {"name": "Christopher Lloyd", "character": "Rasputin (voice)", "id": 1062, "credit_id": "52fe44f8c3a36847f80b4e07", "cast_id": 4, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 2}, {"name": "Angela Lansbury", "character": "The Dowager Empress Marie (voice)", "id": 14730, "credit_id": "52fe44f8c3a36847f80b4e35", "cast_id": 14, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 3}, {"name": "Hank Azaria", "character": "Bartok (voice)", "id": 5587, "credit_id": "52fe44f8c3a36847f80b4e29", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Kelsey Grammer", "character": "Vladimir (voice)", "id": 7090, "credit_id": "52fe44f8c3a36847f80b4e03", "cast_id": 3, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 5}, {"name": "Bernadette Peters", "character": "Sophie (voice)", "id": 40389, "credit_id": "52fe44f8c3a36847f80b4e2d", "cast_id": 12, "profile_path": "/7rOC4uWAGQOmd99h0Eh7r9O2AvN.jpg", "order": 6}, {"name": "Kirsten Dunst", "character": "Young Anastasia (voice)", "id": 205, "credit_id": "52fe44f8c3a36847f80b4e31", "cast_id": 13, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 7}, {"name": "Andrea Martin", "character": "Phlegmenkoff / Old Woman (voice)", "id": 8263, "credit_id": "52fe44f8c3a36847f80b4e39", "cast_id": 15, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 8}, {"name": "Glenn Walker Harris Jr.", "character": "Young Dimitri (voice)", "id": 7089, "credit_id": "52fe44f8c3a36847f80b4e3d", "cast_id": 16, "profile_path": "/pvTQf4oKrqFmcXkYiwENKK65UM3.jpg", "order": 9}, {"name": "Lacey Chabert", "character": "Young Anastasia (singing voice)", "id": 22082, "credit_id": "54f79be9c3a3683a570033ab", "cast_id": 26, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 10}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe44f8c3a36847f80b4e0d", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}, {"name": "Gary Goldman", "department": "Directing", "job": "Director", "credit_id": "52fe44f8c3a36847f80b4e43", "profile_path": "/3GPDphDxHIlT3D8GiMCKsf3X4Rj.jpg", "id": 12881}], "vote_average": 6.7, "runtime": 94}, "9766": {"poster_path": "/zLMsFU6XoDPMxULYbBBmneJqKUr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38432823, "overview": "Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.", "video": false, "id": 9766, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Gridiron Gang", "tagline": "One goal. A second chance.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421206", "adult": false, "backdrop_path": "/tKSlpVGVTLRhC3qD5srVqWjm8dV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2006-09-15", "popularity": 0.575536183819701, "original_title": "Gridiron Gang", "budget": 30000000, "cast": [{"name": "Dwayne Johnson", "character": "Sean Porter", "id": 18918, "credit_id": "52fe4529c3a36847f80bfb49", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Xzibit", "character": "Malcolm Moore", "id": 336, "credit_id": "52fe4529c3a36847f80bfb4d", "cast_id": 2, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 1}, {"name": "L. Scott Caldwell", "character": "Bobbi Porter", "id": 29051, "credit_id": "52fe4529c3a36847f80bfb51", "cast_id": 3, "profile_path": "/p5W9yIDt269Tb4KMMKI8AeO4jJi.jpg", "order": 2}, {"name": "Leon Rippy", "character": "Paul Higa", "id": 15374, "credit_id": "52fe4529c3a36847f80bfb55", "cast_id": 4, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Ted Dexter", "id": 14721, "credit_id": "52fe4529c3a36847f80bfb59", "cast_id": 5, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Jade Yorker", "character": "Willie Weathers", "id": 59011, "credit_id": "52fe4529c3a36847f80bfb5d", "cast_id": 6, "profile_path": "/4r68bJfIHuPn2SbhaFigSV0zlQ.jpg", "order": 5}, {"name": "David V. Thomas", "character": "Kelvin Owens (as David Thomas)", "id": 59012, "credit_id": "52fe4529c3a36847f80bfb61", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Setu Taase", "character": "Junior Palaita", "id": 59013, "credit_id": "52fe4529c3a36847f80bfb65", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Mo McRae", "character": "Leon Hayes", "id": 59014, "credit_id": "52fe4529c3a36847f80bfb69", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "James Earl", "character": "Donald Madlock (as James Earl III)", "id": 59015, "credit_id": "52fe4529c3a36847f80bfb6d", "cast_id": 10, "profile_path": "/1AIAQvGZTaJDcn0aZzgdpg72NIS.jpg", "order": 9}, {"name": "Trever O'Brien", "character": "Kenny Bates", "id": 59016, "credit_id": "52fe4529c3a36847f80bfb71", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jurnee Smollett", "character": "Danyelle Rollins", "id": 59017, "credit_id": "52fe4529c3a36847f80bfb79", "cast_id": 13, "profile_path": "/wff4HS8WsDK1QwT4lR8oGU9RXwS.jpg", "order": 12}, {"name": "Michael J. Pagan", "character": "Roger Weathers", "id": 59018, "credit_id": "52fe4529c3a36847f80bfb7d", "cast_id": 14, "profile_path": "/ahRXzDcYUSwunOppktmfrU7XC8w.jpg", "order": 13}, {"name": "Jamal Mixon", "character": "Jamal Evans", "id": 59019, "credit_id": "52fe4529c3a36847f80bfb81", "cast_id": 15, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 14}, {"name": "Garrett M. Brown", "character": "Coach Finley", "id": 27492, "credit_id": "52fe4529c3a36847f80bfbcd", "cast_id": 28, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 15}, {"name": "Brandon Smith", "character": "Bug Wendal", "id": 427978, "credit_id": "539304eac3a3686434001462", "cast_id": 29, "profile_path": "/hJPSZh6xe4r9xGE30iLiPzroaKg.jpg", "order": 16}], "directors": [{"name": "Phil Joanou", "department": "Directing", "job": "Director", "credit_id": "52fe4529c3a36847f80bfb87", "profile_path": "/5snXDgDV7xU0uX6ZbXiAxSXHbmI.jpg", "id": 18500}], "vote_average": 6.1, "runtime": 125}, "1255": {"poster_path": "/74OkcSKTs4f8myeLaVdJ57lj2CG.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 88489643, "overview": "Gang-du is a dim-witted man working at his father's tiny snack bar near the Han River. One day, Gang-du's one and only daughter Hyun-seo comes back from school irritated. She is angry at her uncle, Nam-il, who visited her school as her guardian shamelessly drunk. Ignoring her father's excuses for Nam-il, Hyun-seo is soon engrossed in her aunt Nam-joo's archery tournament on TV. Meanwhile, outside of the snack bar, people are fascinated by an unidentified object hanging onto a bridge. In an instant, the object reveals itself as a terrifying creature turning the riverbank into a gruesome sea of blood\u00a1\u00a6 Amid the chaos, Hyun-seo is helplessly snatched up by the creature right before Gang-du's eyes. These unforeseen circumstances render the government powerless to act. But receiving a call of help from Hyun-seo, the once-ordinary citizen Gang-du and his family are thrust into a battle with the monster to rescue their beloved Hyun-seo.", "video": false, "id": 1255, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "The Host", "tagline": "Monsters are real.", "vote_count": 92, "homepage": "http://www.hostmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0468492", "adult": false, "backdrop_path": "/9diyJ180qJP4PHlHYPvwEMrrqI8.jpg", "production_companies": [{"name": "Cineclick Asia", "id": 685}, {"name": "Happinet Pictures", "id": 822}, {"name": "Cheongeoram", "id": 945}, {"name": "CJ Capital Investment", "id": 946}], "release_date": "2006-07-27", "popularity": 0.488682939068188, "original_title": "\uad34\ubb3c", "budget": 11000000, "cast": [{"name": "Song Kang-ho", "character": "Park Gang-du", "id": 20738, "credit_id": "52fe42eac3a36847f802ca31", "cast_id": 3, "profile_path": "/1JL0Shq6js9Ox2FEIW2vHqIISv9.jpg", "order": 0}, {"name": "Byeon Hie-bong ", "character": "Park Hie-bong", "id": 21686, "credit_id": "52fe42eac3a36847f802ca35", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Park Hae-Il", "character": "Park Nam-il", "id": 21687, "credit_id": "52fe42eac3a36847f802ca39", "cast_id": 5, "profile_path": "/bzgD29gCOE5ImtU9m2Vjbrv5LlC.jpg", "order": 2}, {"name": "DooNa Bae", "character": "Park Nam-joo", "id": 21688, "credit_id": "52fe42eac3a36847f802ca3d", "cast_id": 6, "profile_path": "/hE9dmpQOIdgt1GGVoZObPZmVSPh.jpg", "order": 3}, {"name": "Ko Ah-Sung", "character": "Park Hyun-seo", "id": 21689, "credit_id": "52fe42eac3a36847f802ca41", "cast_id": 7, "profile_path": "/ypLzFARDiB0S8eV8YWj0mi5vmJW.jpg", "order": 4}], "directors": [{"name": "Bong Joon-ho ", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802ca27", "profile_path": "/ksRcTlnSOLwNcI37LRRKpQwucWL.jpg", "id": 21684}], "vote_average": 6.7, "runtime": 119}, "1262": {"poster_path": "/AtjCCvfMq9kmjwjbVwTJ0mWG7zp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53653224, "overview": "Everybody knows that your life is a story. But what if a story was your life? Harold Crick is your average IRS agent: monotonous, boring, and repetitive. But one day this all changes when Harold begins to hear an author inside his head narrating his life. But when the narration reveals he is going to die, Harold must find the author and convince them to change the ending.", "video": false, "id": 1262, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Stranger Than Fiction", "tagline": "Harold Crick isn't ready to go. Period.", "vote_count": 188, "homepage": "http://www.sonypictures.com/homevideo/strangerthanfiction/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0420223", "adult": false, "backdrop_path": "/b2lFQMEeukJYqQuQB7CQN0CJnks.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Three Strange Angels", "id": 1973}], "release_date": "2006-09-09", "popularity": 0.481940222379949, "original_title": "Stranger Than Fiction", "budget": 30000000, "cast": [{"name": "Will Ferrell", "character": "Harold Crick", "id": 23659, "credit_id": "52fe42ebc3a36847f802cccb", "cast_id": 1, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Ana Pascal", "id": 1579, "credit_id": "52fe42ebc3a36847f802cceb", "cast_id": 9, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Professor Jules Hilbert", "id": 4483, "credit_id": "52fe42ebc3a36847f802ccfb", "cast_id": 12, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Penny Escher", "id": 15758, "credit_id": "52fe42ebc3a36847f802cccf", "cast_id": 2, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Ricky Adams", "character": "Junge", "id": 36090, "credit_id": "52fe42ebc3a36847f802ccd3", "cast_id": 3, "profile_path": null, "order": 4}, {"name": "Denise Hughes", "character": "Bus Fahrer", "id": 36092, "credit_id": "52fe42ebc3a36847f802ccdb", "cast_id": 5, "profile_path": null, "order": 5}, {"name": "Christian Stolte", "character": "Vater des Junge", "id": 36091, "credit_id": "52fe42ebc3a36847f802ccd7", "cast_id": 4, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 6}, {"name": "William Dick", "character": "IRS Co-Arbeiter", "id": 36095, "credit_id": "52fe42ebc3a36847f802cce7", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Tony Hale", "character": "Dave", "id": 25147, "credit_id": "52fe42ebc3a36847f802cce3", "cast_id": 7, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 8}, {"name": "Peggy Roeder", "character": "Polische Frau", "id": 36093, "credit_id": "52fe42ebc3a36847f802ccdf", "cast_id": 6, "profile_path": null, "order": 9}, {"name": "Emma Thompson", "character": "Karen Eiffel", "id": 7056, "credit_id": "52fe42ebc3a36847f802ccff", "cast_id": 13, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 10}, {"name": "Peter Grosz", "character": "IRS Co-Worker #5", "id": 1154221, "credit_id": "52fe42ebc3a36847f802cd03", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Tonray Ho", "character": "IRS Co-Worker #6", "id": 1154231, "credit_id": "52fe42ebc3a36847f802cd07", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Danny Rhodes", "character": "Bakery Employee #1", "id": 1154232, "credit_id": "52fe42ebc3a36847f802cd0b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Linara Washington", "character": "Bakery Employee #2", "id": 155520, "credit_id": "52fe42ebc3a36847f802cd0f", "cast_id": 17, "profile_path": "/zvHRQpZmEE8WiACP09GYkm2wyjS.jpg", "order": 14}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe42ebc3a36847f802ccf1", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.9, "runtime": 113}, "82695": {"poster_path": "/qEsrAHoxj746FRb7OLGYjrx1AI3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 440303623, "overview": "An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France, in which a paroled prisoner named Jean Valjean seeks redemption.", "video": false, "id": 82695, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Les Mis\u00e9rables", "tagline": "Fight. Dream. Hope. Love.", "vote_count": 785, "homepage": "http://www.lesmiserablesfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1707386", "adult": false, "backdrop_path": "/srWMIJYWQYPUgcE3Tqw17GeyEfB.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "CAMERON MACKINTOSH", "id": 7923}, {"name": "Relativity Media", "id": 7295}, {"name": "Universal Pictures", "id": 33}], "release_date": "2012-12-25", "popularity": 1.31290886141949, "original_title": "Les Mis\u00e9rables", "budget": 61000000, "cast": [{"name": "Hugh Jackman", "character": "Jean Valjean", "id": 6968, "credit_id": "52fe486c9251416c9108c095", "cast_id": 12, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Javert", "id": 934, "credit_id": "52fe486c9251416c9108c099", "cast_id": 13, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Anne Hathaway", "character": "Fantine", "id": 1813, "credit_id": "52fe486c9251416c9108c08d", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Cosette", "id": 71070, "credit_id": "52fe486c9251416c9108c0a9", "cast_id": 17, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Sacha Baron Cohen", "character": "Th\u00e9nardier", "id": 6730, "credit_id": "52fe486c9251416c9108c09d", "cast_id": 14, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Madame Th\u00e9nardier", "id": 1283, "credit_id": "52fe486c9251416c9108c091", "cast_id": 11, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Eddie Redmayne", "character": "Marius", "id": 37632, "credit_id": "52fe486c9251416c9108c0a1", "cast_id": 15, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 6}, {"name": "Aaron Tveit", "character": "Enjolras", "id": 143425, "credit_id": "52fe486c9251416c9108c0a5", "cast_id": 16, "profile_path": "/zIqsSUWJVyEWnC30p7BMhybXTK2.jpg", "order": 7}, {"name": "Samantha Barks", "character": "\u00c9ponine", "id": 145116, "credit_id": "52fe486c9251416c9108c0b1", "cast_id": 19, "profile_path": "/gLmsnrHIHP2yw7S3fhLgYvP3OvK.jpg", "order": 8}, {"name": "Daniel Huttlestone", "character": "Gavroche", "id": 1133684, "credit_id": "52fe486c9251416c9108c0b5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Cavin Cornwall", "character": "Convict 1", "id": 1278483, "credit_id": "52fe486c9251416c9108c0b9", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Josef Altin", "character": "Convict 2", "id": 43554, "credit_id": "52fe486c9251416c9108c0bd", "cast_id": 24, "profile_path": "/lnr6IQUAyXP0y1oj7sEZgmNpzpL.jpg", "order": 11}, {"name": "David Hawley", "character": "Convict 3", "id": 1278484, "credit_id": "52fe486c9251416c9108c0c1", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Adam Jones", "character": "Convict 4", "id": 1278485, "credit_id": "52fe486c9251416c9108c0c5", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "John Barr", "character": "Convict 5", "id": 1278486, "credit_id": "52fe486c9251416c9108c0c9", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Tony Rohr", "character": "Overseer", "id": 44930, "credit_id": "52fe486c9251416c9108c0cd", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Richard Dixon", "character": "Mairie Officer", "id": 1222025, "credit_id": "52fe486c9251416c9108c0d1", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Andy Beckwith", "character": "Innkeeper", "id": 1123, "credit_id": "52fe486c9251416c9108c0d5", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Colm Wilkinson", "character": "Bishop", "id": 117313, "credit_id": "52fe486c9251416c9108c0ad", "cast_id": 18, "profile_path": null, "order": 18}, {"name": "Stephen Bent", "character": "Jailer", "id": 1231198, "credit_id": "52fe486c9251416c9108c0d9", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Georgie Glen", "character": "Madame Baptistine", "id": 191752, "credit_id": "52fe486c9251416c9108c0dd", "cast_id": 32, "profile_path": "/r2CVV42Lrv2N1n9ElP70ccQWTvO.jpg", "order": 20}, {"name": "Heather Chasen", "character": "Madame Magloire", "id": 1184005, "credit_id": "52fe486c9251416c9108c0e1", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Paul Thornley", "character": "Constable 1", "id": 192922, "credit_id": "52fe486c9251416c9108c0e5", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Paul Howell", "character": "Constable 2", "id": 123501, "credit_id": "52fe486c9251416c9108c0e9", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Stephen Tate", "character": "Fauchelevent", "id": 1233034, "credit_id": "52fe486c9251416c9108c0ed", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Michael Jibson", "character": "Foreman", "id": 56098, "credit_id": "52fe486c9251416c9108c0f1", "cast_id": 37, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 25}, {"name": "Kate Fleetwood", "character": "Factory Woman 1", "id": 178630, "credit_id": "52fe486c9251416c9108c0f5", "cast_id": 38, "profile_path": "/z3nIZxpSzdq0R11uABD5gmvCuob.jpg", "order": 26}, {"name": "Hannah Waddingham", "character": "Factory Woman 2", "id": 1278487, "credit_id": "52fe486c9251416c9108c0f9", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Clare Foster", "character": "Factory Woman 3", "id": 1229438, "credit_id": "52fe486c9251416c9108c0fd", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Kirsty Hoiles", "character": "Factory Woman 4", "id": 1278488, "credit_id": "52fe486c9251416c9108c101", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jenna Boyd", "character": "Factory Woman 5", "id": 1278489, "credit_id": "52fe486c9251416c9108c105", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Alice Fearn", "character": "Factory Woman 6", "id": 1278490, "credit_id": "52fe486c9251416c9108c109", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Alison Tennant", "character": "Factory Woman 7", "id": 1278491, "credit_id": "52fe486c9251416c9108c10d", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Marilyn Cutts", "character": "Factory Woman 8", "id": 1278492, "credit_id": "52fe486c9251416c9108c111", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Cathy Breeze", "character": "Factory Woman 9", "id": 1278493, "credit_id": "52fe486c9251416c9108c115", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "John Albasiny", "character": "Factory Onlooker", "id": 132988, "credit_id": "52fe486c9251416c9108c119", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Bertie Carvel", "character": "Bamatabois", "id": 216425, "credit_id": "52fe486c9251416c9108c11d", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Tim Downie", "character": "Brevet", "id": 1010912, "credit_id": "52fe486c9251416c9108c121", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Andrew Havill", "character": "Cochepaille", "id": 176191, "credit_id": "52fe486c9251416c9108c125", "cast_id": 50, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 38}, {"name": "Dick Ward", "character": "Bamatabois' Valet", "id": 986101, "credit_id": "52fe486c9251416c9108c129", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Nicola Sloane", "character": "Hair Crone", "id": 1278494, "credit_id": "52fe486c9251416c9108c12d", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Daniel Evans", "character": "Pimp", "id": 1220071, "credit_id": "52fe486c9251416c9108c131", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "David Stoller", "character": "Sailor 1", "id": 1278495, "credit_id": "52fe486c9251416c9108c135", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Ross McCormack", "character": "Sailor 2", "id": 1091582, "credit_id": "52fe486c9251416c9108c139", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Jaygann Ayeh", "character": "Sailor 3", "id": 1278496, "credit_id": "52fe486c9251416c9108c13d", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Adrian Scarborough", "character": "Toothman", "id": 40311, "credit_id": "52fe486c9251416c9108c141", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Frances Ruffelle", "character": "Whore 1", "id": 132992, "credit_id": "52fe486c9251416c9108c145", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Lynne Wilmot", "character": "Whore 2", "id": 1278497, "credit_id": "52fe486c9251416c9108c149", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Charlotte Spencer", "character": "Whore 3", "id": 219763, "credit_id": "52fe486c9251416c9108c14d", "cast_id": 60, "profile_path": "/7qTFCCgmBrxnUoabz39Wmi2XZ9V.jpg", "order": 48}, {"name": "Julia Worsley", "character": "Head Whore", "id": 1278498, "credit_id": "52fe486c9251416c9108c151", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "Keith Dunphy", "character": "Client", "id": 1278499, "credit_id": "52fe486c9251416c9108c155", "cast_id": 62, "profile_path": null, "order": 50}, {"name": "Ashley Artus", "character": "Pawn Broker", "id": 17259, "credit_id": "52fe486c9251416c9108c159", "cast_id": 63, "profile_path": null, "order": 51}, {"name": "John Surman", "character": "Organ Grinder", "id": 32807, "credit_id": "52fe486c9251416c9108c15d", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "David Cann", "character": "Magistrate", "id": 193340, "credit_id": "52fe486c9251416c9108c161", "cast_id": 65, "profile_path": null, "order": 53}, {"name": "James Simmons", "character": "Champmathieu", "id": 138412, "credit_id": "52fe486c9251416c9108c165", "cast_id": 66, "profile_path": null, "order": 54}, {"name": "Polly Kemp", "character": "Nursing Sister", "id": 210169, "credit_id": "52fe486c9251416c9108c169", "cast_id": 67, "profile_path": null, "order": 55}, {"name": "Ian Pirie", "character": "Babet", "id": 95716, "credit_id": "52fe486c9251416c9108c16d", "cast_id": 68, "profile_path": "/wBQsI3PN3r0cDri8gt3z12kQgoY.jpg", "order": 56}, {"name": "Adam Pearce", "character": "Brujon", "id": 1278501, "credit_id": "52fe486c9251416c9108c171", "cast_id": 69, "profile_path": null, "order": 57}, {"name": "Julian Bleach", "character": "Claquesous", "id": 30086, "credit_id": "52fe486c9251416c9108c175", "cast_id": 70, "profile_path": null, "order": 58}, {"name": "Marc Pickering", "character": "Montparnasse", "id": 73528, "credit_id": "52fe486c9251416c9108c179", "cast_id": 71, "profile_path": "/3xOapB4eNc5QU1Oo0NcBDX8Jolh.jpg", "order": 59}, {"name": "Isabelle Allen", "character": "Young Cosette", "id": 1145979, "credit_id": "52fe486c9251416c9108c17d", "cast_id": 72, "profile_path": null, "order": 60}, {"name": "Natalya Wallace", "character": "Young \u00c9ponine", "id": 1145984, "credit_id": "52fe486c9251416c9108c181", "cast_id": 73, "profile_path": null, "order": 61}, {"name": "Phil Snowden", "character": "Customer 1", "id": 231700, "credit_id": "52fe486c9251416c9108c185", "cast_id": 74, "profile_path": null, "order": 62}, {"name": "Hadrian Delacey", "character": "Customer 2", "id": 1278503, "credit_id": "52fe486c9251416c9108c189", "cast_id": 75, "profile_path": null, "order": 63}, {"name": "Lottie Steer", "character": "Baby", "id": 1278504, "credit_id": "52fe486c9251416c9108c18d", "cast_id": 76, "profile_path": null, "order": 64}, {"name": "Sam Parks", "character": "Tall Customer", "id": 1232658, "credit_id": "52fe486c9251416c9108c191", "cast_id": 77, "profile_path": null, "order": 65}, {"name": "Mark Donovan", "character": "Portly Customer", "id": 211413, "credit_id": "52fe486c9251416c9108c195", "cast_id": 78, "profile_path": null, "order": 66}, {"name": "Lewis Kirk", "character": "Handsome Soldier 1", "id": 1278510, "credit_id": "52fe486d9251416c9108c199", "cast_id": 79, "profile_path": null, "order": 67}, {"name": "Leighton Rafferty", "character": "Handsome Soldier 2", "id": 1278511, "credit_id": "52fe486d9251416c9108c19d", "cast_id": 80, "profile_path": null, "order": 68}, {"name": "Peter Mair", "character": "Father Christmas 1", "id": 27655, "credit_id": "52fe486d9251416c9108c1a1", "cast_id": 81, "profile_path": null, "order": 69}, {"name": "Jack Chissick", "character": "Father Christmas 2", "id": 1220052, "credit_id": "52fe486d9251416c9108c1a5", "cast_id": 82, "profile_path": null, "order": 70}, {"name": "Dianne Pilkington", "character": "Inn Whore 1", "id": 1278512, "credit_id": "52fe486d9251416c9108c1a9", "cast_id": 83, "profile_path": null, "order": 71}, {"name": "Robyn North", "character": "Inn Whore 2", "id": 1278513, "credit_id": "52fe486d9251416c9108c1ad", "cast_id": 84, "profile_path": null, "order": 72}, {"name": "Norma Atallah", "character": "Mother Whore", "id": 138158, "credit_id": "52fe486d9251416c9108c1b1", "cast_id": 85, "profile_path": null, "order": 73}, {"name": "Patrick Godfrey", "character": "Gillenormand", "id": 3568, "credit_id": "52fe486d9251416c9108c1b5", "cast_id": 86, "profile_path": null, "order": 74}, {"name": "Mark Roper", "character": "Citizen", "id": 1278517, "credit_id": "52fe486d9251416c9108c1b9", "cast_id": 87, "profile_path": null, "order": 75}, {"name": "Paul Leonard", "character": "Citizen", "id": 1278518, "credit_id": "52fe486d9251416c9108c1bd", "cast_id": 88, "profile_path": null, "order": 76}, {"name": "Miles Roughley", "character": "Gavroche's Urchin", "id": 1278519, "credit_id": "52fe486d9251416c9108c1c1", "cast_id": 89, "profile_path": null, "order": 77}, {"name": "Cameron Strefford", "character": "Gavroche's Urchin", "id": 1278522, "credit_id": "52fe486d9251416c9108c1c5", "cast_id": 90, "profile_path": null, "order": 78}, {"name": "Alfie Davis", "character": "Gavroche's Urchin", "id": 1278523, "credit_id": "52fe486d9251416c9108c1c9", "cast_id": 91, "profile_path": null, "order": 79}, {"name": "Joseph West", "character": "Gavroche's Urchin", "id": 1278524, "credit_id": "52fe486d9251416c9108c1cd", "cast_id": 92, "profile_path": null, "order": 80}, {"name": "Joel Phillimore", "character": "Beggar 1", "id": 1278525, "credit_id": "52fe486d9251416c9108c1d1", "cast_id": 93, "profile_path": null, "order": 81}, {"name": "Jacqueline Dankworth", "character": "Beggar 2", "id": 990509, "credit_id": "52fe486d9251416c9108c1d5", "cast_id": 94, "profile_path": null, "order": 82}, {"name": "Amelia Jefford", "character": "Beggar 3", "id": 1278526, "credit_id": "52fe486d9251416c9108c1d9", "cast_id": 95, "profile_path": null, "order": 83}, {"name": "Chris Barnes", "character": "Beggar 4", "id": 1278527, "credit_id": "52fe486d9251416c9108c1dd", "cast_id": 96, "profile_path": null, "order": 84}, {"name": "Richard Cordery", "character": "Duc De Raguse", "id": 156356, "credit_id": "52fe486d9251416c9108c1e1", "cast_id": 97, "profile_path": null, "order": 85}, {"name": "Killian Donnelly", "character": "Combeferre", "id": 231673, "credit_id": "52fe486d9251416c9108c1e5", "cast_id": 98, "profile_path": null, "order": 86}, {"name": "Fra Fee", "character": "Courfeyrac", "id": 1278528, "credit_id": "52fe486d9251416c9108c1e9", "cast_id": 99, "profile_path": null, "order": 87}, {"name": "Gabriel Vick", "character": "Feuilly", "id": 1278529, "credit_id": "52fe486d9251416c9108c1ed", "cast_id": 100, "profile_path": null, "order": 88}, {"name": "George Blagden", "character": "Grantaire", "id": 1256160, "credit_id": "52fe486d9251416c9108c1f1", "cast_id": 101, "profile_path": "/yzdb0mV2POyK3Afq1Uoa4QxrHlU.jpg", "order": 89}, {"name": "Hugh Skinner", "character": "Joly", "id": 1206337, "credit_id": "52fe486d9251416c9108c1f5", "cast_id": 102, "profile_path": "/pgsfiggEcEn7sGatiqIExgAptpU.jpg", "order": 90}, {"name": "Stuart Neal", "character": "Lesgles", "id": 1278530, "credit_id": "52fe486d9251416c9108c1f9", "cast_id": 103, "profile_path": null, "order": 91}, {"name": "Alistair Brammer", "character": "Prouvaire", "id": 231666, "credit_id": "52fe486d9251416c9108c1fd", "cast_id": 104, "profile_path": "/lLVkjvRLsEDrm7yu2U8pH1ftkNT.jpg", "order": 92}, {"name": "Iwan Lewis", "character": "Bahorel", "id": 1278531, "credit_id": "52fe486d9251416c9108c201", "cast_id": 105, "profile_path": null, "order": 93}, {"name": "Katy Secombe", "character": "Madame Hucheloup", "id": 1278532, "credit_id": "52fe486d9251416c9108c205", "cast_id": 106, "profile_path": null, "order": 94}, {"name": "Hadley Fraser", "character": "Army Officer", "id": 231674, "credit_id": "52fe486d9251416c9108c209", "cast_id": 107, "profile_path": null, "order": 95}, {"name": "Linzi Hateley", "character": "Turning Woman 1", "id": 1028366, "credit_id": "52fe486d9251416c9108c20d", "cast_id": 108, "profile_path": null, "order": 96}, {"name": "Gemma Wardle", "character": "Turning Woman 2", "id": 195415, "credit_id": "52fe486d9251416c9108c211", "cast_id": 109, "profile_path": null, "order": 97}, {"name": "Gina Beck", "character": "Turning Woman 3", "id": 231664, "credit_id": "52fe486d9251416c9108c215", "cast_id": 110, "profile_path": "/fhkb2gkNFcS0z0QJ6wcdYP71x8w.jpg", "order": 98}, {"name": "Katie Hall", "character": "Turning Woman 4", "id": 231677, "credit_id": "52fe486d9251416c9108c219", "cast_id": 111, "profile_path": null, "order": 99}, {"name": "Lisa Hull", "character": "Turning Woman 5", "id": 1278535, "credit_id": "52fe486d9251416c9108c21d", "cast_id": 112, "profile_path": null, "order": 100}, {"name": "Andrea Deck", "character": "Turning Woman 6", "id": 1172316, "credit_id": "52fe486d9251416c9108c221", "cast_id": 113, "profile_path": "/8HCnRj6MJ686E9aciqKSlrcrlwi.jpg", "order": 101}, {"name": "Jessica Duncan", "character": "Turning Woman 7", "id": 1278536, "credit_id": "52fe486d9251416c9108c225", "cast_id": 114, "profile_path": null, "order": 102}, {"name": "Kerry Ingram", "character": "Turning Woman 8", "id": 1159508, "credit_id": "52fe486d9251416c9108c229", "cast_id": 115, "profile_path": null, "order": 103}, {"name": "John Warnaby", "character": "Majordomo", "id": 183180, "credit_id": "52fe486d9251416c9108c22d", "cast_id": 116, "profile_path": null, "order": 104}, {"name": "Mike Sarne", "character": "Father Mabeuf", "id": 1278132, "credit_id": "52fe486d9251416c9108c231", "cast_id": 117, "profile_path": null, "order": 105}, {"name": "Freya Parks", "character": "Caf\u00e9 Barmaid", "id": 970737, "credit_id": "52fe486d9251416c9108c235", "cast_id": 118, "profile_path": null, "order": 106}, {"name": "Richard Bremmer", "character": "Ensemble At The End of the Day", "id": 19903, "credit_id": "52fe486d9251416c9108c239", "cast_id": 119, "profile_path": "/eRLxQ7sTWqtI24OPo5wz3p95RI3.jpg", "order": 107}, {"name": "Alexander Brooks", "character": "Ensemble At The End of the Day", "id": 1182570, "credit_id": "52fe486d9251416c9108c23d", "cast_id": 120, "profile_path": null, "order": 108}, {"name": "Eleanor Bruce", "character": "Ensemble At The End of the Day", "id": 1278543, "credit_id": "52fe486d9251416c9108c241", "cast_id": 121, "profile_path": null, "order": 109}, {"name": "Emma Dukes", "character": "Ensemble At The End of the Day", "id": 1278544, "credit_id": "52fe486d9251416c9108c245", "cast_id": 122, "profile_path": null, "order": 110}, {"name": "Stephen Matthews", "character": "Ensemble At The End of the Day", "id": 160950, "credit_id": "52fe486d9251416c9108c249", "cast_id": 123, "profile_path": null, "order": 111}, {"name": "Peter Saracen", "character": "Ensemble At The End of the Day", "id": 1278545, "credit_id": "52fe486d9251416c9108c24d", "cast_id": 124, "profile_path": null, "order": 112}, {"name": "Sebastian Sykes", "character": "Ensemble At The End of the Day", "id": 1278546, "credit_id": "52fe486d9251416c9108c251", "cast_id": 125, "profile_path": null, "order": 113}, {"name": "Phil Zimmerman", "character": "Ensemble At The End of the Day", "id": 1278547, "credit_id": "52fe486d9251416c9108c255", "cast_id": 126, "profile_path": null, "order": 114}, {"name": "Bessie Carter", "character": "Ensemble Factory Women", "id": 1278548, "credit_id": "52fe486d9251416c9108c259", "cast_id": 127, "profile_path": null, "order": 115}, {"name": "Helen Cotterill", "character": "Ensemble Factory Women", "id": 244600, "credit_id": "52fe486d9251416c9108c25d", "cast_id": 128, "profile_path": null, "order": 116}, {"name": "Tricia Deighton", "character": "Ensemble Factory Women", "id": 1278549, "credit_id": "52fe486d9251416c9108c261", "cast_id": 129, "profile_path": null, "order": 117}, {"name": "Mandy Holliday", "character": "Ensemble Factory Women", "id": 1278550, "credit_id": "52fe486d9251416c9108c265", "cast_id": 130, "profile_path": null, "order": 118}, {"name": "Charlotte Hope", "character": "Ensemble Factory Women", "id": 1052255, "credit_id": "52fe486d9251416c9108c269", "cast_id": 131, "profile_path": "/3IouhqclzFgfzGm6LEVAnQKhRev.jpg", "order": 119}, {"name": "Jackie Marks", "character": "Ensemble Factory Women", "id": 1278551, "credit_id": "52fe486d9251416c9108c26d", "cast_id": 132, "profile_path": null, "order": 120}, {"name": "Sara Pelosi", "character": "Ensemble Factory Women", "id": 231693, "credit_id": "52fe486d9251416c9108c271", "cast_id": 133, "profile_path": null, "order": 121}, {"name": "Mary Roscoe", "character": "Ensemble Factory Women", "id": 105440, "credit_id": "52fe486d9251416c9108c275", "cast_id": 134, "profile_path": null, "order": 122}, {"name": "Amelia Scaramucci", "character": "Ensemble Factory Women", "id": 1278552, "credit_id": "52fe486d9251416c9108c279", "cast_id": 135, "profile_path": null, "order": 123}, {"name": "Caroline Sheen", "character": "Ensemble Factory Women", "id": 209984, "credit_id": "52fe486d9251416c9108c27d", "cast_id": 136, "profile_path": null, "order": 124}, {"name": "Rachael Archer", "character": "Ensemble Lovely Ladies", "id": 1278553, "credit_id": "52fe486d9251416c9108c281", "cast_id": 137, "profile_path": null, "order": 125}, {"name": "Lorna Brown", "character": "Ensemble Lovely Ladies", "id": 1278554, "credit_id": "52fe486d9251416c9108c285", "cast_id": 138, "profile_path": null, "order": 126}, {"name": "Antonia Clarke", "character": "Ensemble Lovely Ladies", "id": 1278555, "credit_id": "52fe486d9251416c9108c289", "cast_id": 139, "profile_path": "/pIEcwcJM4izHP4JFOkQcgniJzyK.jpg", "order": 127}, {"name": "Mary Cormack", "character": "Ensemble Lovely Ladies", "id": 1278556, "credit_id": "52fe486d9251416c9108c28d", "cast_id": 140, "profile_path": null, "order": 128}, {"name": "Sonya Cullingford", "character": "Ensemble Lovely Ladies", "id": 1278557, "credit_id": "52fe486d9251416c9108c291", "cast_id": 141, "profile_path": null, "order": 129}, {"name": "Holly Dale Spencer", "character": "Ensemble Lovely Ladies", "id": 1278558, "credit_id": "52fe486d9251416c9108c295", "cast_id": 142, "profile_path": null, "order": 130}, {"name": "Amy Griffiths", "character": "Ensemble Lovely Ladies", "id": 1278559, "credit_id": "52fe486d9251416c9108c299", "cast_id": 143, "profile_path": null, "order": 131}, {"name": "Fania Grigoriou", "character": "Ensemble Lovely Ladies", "id": 1278560, "credit_id": "52fe486d9251416c9108c29d", "cast_id": 144, "profile_path": null, "order": 132}, {"name": "Amanda Henderson", "character": "Ensemble Lovely Ladies", "id": 1278561, "credit_id": "52fe486d9251416c9108c2a1", "cast_id": 145, "profile_path": null, "order": 133}, {"name": "Alexia Khadime", "character": "Ensemble Lovely Ladies", "id": 1278562, "credit_id": "52fe486d9251416c9108c2a5", "cast_id": 146, "profile_path": null, "order": 134}, {"name": "Luisa Lazzaro", "character": "Ensemble Lovely Ladies", "id": 1278563, "credit_id": "52fe486e9251416c9108c2a9", "cast_id": 147, "profile_path": null, "order": 135}, {"name": "Gemma O'Duffy", "character": "Ensemble Lovely Ladies", "id": 1278564, "credit_id": "52fe486e9251416c9108c2ad", "cast_id": 148, "profile_path": null, "order": 136}, {"name": "Rosa O'Reilly", "character": "Ensemble Lovely Ladies", "id": 1278565, "credit_id": "52fe486e9251416c9108c2b1", "cast_id": 149, "profile_path": null, "order": 137}, {"name": "Amy Ellen Richardson", "character": "Ensemble Lovely Ladies", "id": 1278566, "credit_id": "52fe486e9251416c9108c2b5", "cast_id": 150, "profile_path": null, "order": 138}, {"name": "Olivia Rose-Aaron", "character": "Ensemble Lovely Ladies", "id": 1278567, "credit_id": "52fe486e9251416c9108c2b9", "cast_id": 151, "profile_path": null, "order": 139}, {"name": "Robyn Miranda Simpson", "character": "Ensemble Lovely Ladies", "id": 1278568, "credit_id": "52fe486e9251416c9108c2bd", "cast_id": 152, "profile_path": null, "order": 140}, {"name": "Rachel Stanley", "character": "Ensemble Lovely Ladies / Ensemble Wedding Dancers", "id": 1278569, "credit_id": "52fe486e9251416c9108c2c1", "cast_id": 153, "profile_path": null, "order": 141}, {"name": "Nancy Sullivan", "character": "Ensemble Lovely Ladies", "id": 1278573, "credit_id": "52fe486e9251416c9108c2c5", "cast_id": 154, "profile_path": null, "order": 142}, {"name": "Rebecca Sutherland", "character": "Ensemble Lovely Ladies", "id": 1278574, "credit_id": "52fe486e9251416c9108c2c9", "cast_id": 155, "profile_path": null, "order": 143}, {"name": "Tabitha Webb", "character": "Ensemble Lovely Ladies", "id": 1278575, "credit_id": "52fe486e9251416c9108c2cd", "cast_id": 156, "profile_path": null, "order": 144}, {"name": "Gerard Bentall", "character": "Ensemble Master of the House", "id": 1278576, "credit_id": "52fe486e9251416c9108c2d1", "cast_id": 157, "profile_path": null, "order": 145}, {"name": "Tony Bignell", "character": "Ensemble Master of the House", "id": 1278577, "credit_id": "52fe486e9251416c9108c2d5", "cast_id": 158, "profile_path": null, "order": 146}, {"name": "Michael Cahill", "character": "Ensemble Master of the House", "id": 1278578, "credit_id": "52fe486e9251416c9108c2d9", "cast_id": 159, "profile_path": null, "order": 147}, {"name": "Richard Colson", "character": "Ensemble Master of the House", "id": 1278579, "credit_id": "52fe486e9251416c9108c2dd", "cast_id": 160, "profile_path": null, "order": 148}, {"name": "Kerry Ellis", "character": "Ensemble Master of the House", "id": 223044, "credit_id": "52fe486e9251416c9108c2e1", "cast_id": 161, "profile_path": "/CgnjOF0kmgeRM3oBe0dnoB1hSm.jpg", "order": 149}, {"name": "Simon Fisher-Becker", "character": "Ensemble Master of the House", "id": 1261131, "credit_id": "52fe486e9251416c9108c2e5", "cast_id": 162, "profile_path": null, "order": 150}, {"name": "Sarah Flind", "character": "Ensemble Master of the House", "id": 195286, "credit_id": "52fe486e9251416c9108c2e9", "cast_id": 163, "profile_path": null, "order": 151}, {"name": "Kelly-Anne Gower", "character": "Ensemble Master of the House", "id": 1278580, "credit_id": "52fe486e9251416c9108c2ed", "cast_id": 164, "profile_path": null, "order": 152}, {"name": "James Greene", "character": "Ensemble Master of the House", "id": 1266585, "credit_id": "52fe486e9251416c9108c2f1", "cast_id": 165, "profile_path": "/mQNSBTK93AXGGd5f0mbQqPhgBtY.jpg", "order": 153}, {"name": "Nick Holder", "character": "Ensemble Master of the House", "id": 206726, "credit_id": "52fe486e9251416c9108c2f5", "cast_id": 166, "profile_path": null, "order": 154}, {"name": "Chris Howell", "character": "Ensemble Master of the House", "id": 1278581, "credit_id": "52fe486e9251416c9108c2f9", "cast_id": 167, "profile_path": null, "order": 155}, {"name": "Alison Jiear", "character": "Ensemble Master of the House", "id": 1028408, "credit_id": "52fe486e9251416c9108c2fd", "cast_id": 168, "profile_path": null, "order": 156}, {"name": "Terence Keely", "character": "Ensemble Master of the House", "id": 1278582, "credit_id": "52fe486e9251416c9108c301", "cast_id": 169, "profile_path": null, "order": 157}, {"name": "Martin Marquez", "character": "Ensemble Master of the House", "id": 87099, "credit_id": "52fe486e9251416c9108c305", "cast_id": 170, "profile_path": "/p7wmWHToMCet9m7GYWa4Q5CgsAi.jpg", "order": 158}, {"name": "Sally Mates", "character": "Ensemble Master of the House", "id": 192923, "credit_id": "52fe486e9251416c9108c309", "cast_id": 171, "profile_path": null, "order": 159}, {"name": "Jeff Nicholson", "character": "Ensemble Master of the House", "id": 985962, "credit_id": "52fe486e9251416c9108c30d", "cast_id": 172, "profile_path": null, "order": 160}, {"name": "Adam Searles", "character": "Ensemble Master of the House", "id": 117323, "credit_id": "52fe486e9251416c9108c311", "cast_id": 173, "profile_path": null, "order": 161}, {"name": "Simon Shorten", "character": "Ensemble Master of the House", "id": 1278583, "credit_id": "52fe486e9251416c9108c315", "cast_id": 174, "profile_path": null, "order": 162}, {"name": "Juliet Alderdice", "character": "Ensemble Paris Beggars", "id": 1278584, "credit_id": "52fe486e9251416c9108c319", "cast_id": 175, "profile_path": null, "order": 163}, {"name": "Sean Buckley", "character": "Ensemble Paris Beggars", "id": 202759, "credit_id": "52fe486e9251416c9108c31d", "cast_id": 176, "profile_path": null, "order": 164}, {"name": "Valerie Cutko", "character": "Ensemble Paris Beggars", "id": 1278585, "credit_id": "52fe486e9251416c9108c321", "cast_id": 177, "profile_path": null, "order": 165}, {"name": "Spike Grimsey", "character": "Ensemble Paris Beggars", "id": 1278586, "credit_id": "52fe486e9251416c9108c325", "cast_id": 178, "profile_path": null, "order": 166}, {"name": "Matt Harrop", "character": "Ensemble Paris Beggars", "id": 1278587, "credit_id": "52fe486e9251416c9108c329", "cast_id": 179, "profile_path": null, "order": 167}, {"name": "Georgina Jackson", "character": "Ensemble Paris Beggars", "id": 1278588, "credit_id": "52fe486e9251416c9108c32d", "cast_id": 180, "profile_path": null, "order": 168}, {"name": "Perry Millward", "character": "Ensemble Paris Beggars", "id": 1222373, "credit_id": "52fe486e9251416c9108c331", "cast_id": 181, "profile_path": null, "order": 169}, {"name": "Phil Philmar", "character": "Ensemble Paris Beggars", "id": 1278589, "credit_id": "52fe486e9251416c9108c335", "cast_id": 182, "profile_path": null, "order": 170}, {"name": "Joyce Springer", "character": "Ensemble Paris Beggars", "id": 1278590, "credit_id": "52fe486e9251416c9108c339", "cast_id": 183, "profile_path": null, "order": 171}, {"name": "Julie Stark", "character": "Ensemble Paris Beggars", "id": 1278591, "credit_id": "52fe486e9251416c9108c33d", "cast_id": 184, "profile_path": null, "order": 172}, {"name": "Dominic Applewhite", "character": "Ensemble Students", "id": 515313, "credit_id": "52fe486e9251416c9108c341", "cast_id": 185, "profile_path": null, "order": 173}, {"name": "Matthew Corner", "character": "Ensemble Students", "id": 1278593, "credit_id": "52fe486e9251416c9108c345", "cast_id": 186, "profile_path": null, "order": 174}, {"name": "Andy Coxon", "character": "Ensemble Students", "id": 1278594, "credit_id": "52fe486e9251416c9108c349", "cast_id": 187, "profile_path": null, "order": 175}, {"name": "Jonathan Dudley", "character": "Ensemble Students (as Jonathan D. Dudley)", "id": 1278595, "credit_id": "52fe486e9251416c9108c34d", "cast_id": 188, "profile_path": null, "order": 176}, {"name": "Rhidian Marc", "character": "Ensemble Students", "id": 231686, "credit_id": "52fe486e9251416c9108c351", "cast_id": 189, "profile_path": null, "order": 177}, {"name": "Chris Milford", "character": "Ensemble Students", "id": 1278596, "credit_id": "52fe486e9251416c9108c355", "cast_id": 190, "profile_path": null, "order": 178}, {"name": "Jamie Muscato", "character": "Ensemble Students", "id": 231688, "credit_id": "52fe486e9251416c9108c359", "cast_id": 191, "profile_path": null, "order": 179}, {"name": "Joseph Peters", "character": "Ensemble Students", "id": 1278597, "credit_id": "52fe486e9251416c9108c35d", "cast_id": 192, "profile_path": null, "order": 180}, {"name": "David Roberts", "character": "Ensemble Students", "id": 1151069, "credit_id": "52fe486e9251416c9108c361", "cast_id": 193, "profile_path": null, "order": 181}, {"name": "Stevee Davies", "character": "Ensemble Students (as Steevee Ross-Davies)", "id": 1278601, "credit_id": "52fe486e9251416c9108c365", "cast_id": 194, "profile_path": null, "order": 182}, {"name": "Jonny Purchase", "character": "Ensemble Students", "id": 1278602, "credit_id": "52fe486e9251416c9108c369", "cast_id": 195, "profile_path": null, "order": 183}, {"name": "Matt Seadon Young", "character": "Ensemble Students", "id": 1278604, "credit_id": "52fe486e9251416c9108c36d", "cast_id": 196, "profile_path": null, "order": 184}, {"name": "Jos Slovick", "character": "Ensemble Students", "id": 1278605, "credit_id": "52fe486e9251416c9108c371", "cast_id": 197, "profile_path": null, "order": 185}, {"name": "Samuel J. Weir", "character": "Ensemble Students", "id": 1278606, "credit_id": "52fe486e9251416c9108c375", "cast_id": 198, "profile_path": null, "order": 186}, {"name": "Sophie Huchinson", "character": "Ensemble Turning Women", "id": 1278607, "credit_id": "52fe486e9251416c9108c379", "cast_id": 199, "profile_path": null, "order": 187}, {"name": "Ella Hunt", "character": "Ensemble Turning Women", "id": 989411, "credit_id": "52fe486e9251416c9108c37d", "cast_id": 200, "profile_path": "/4FU0tXTIUce0Ka3FyYZNQrou8J1.jpg", "order": 188}, {"name": "Claire Machin", "character": "Ensemble Turning Women", "id": 1278608, "credit_id": "52fe486e9251416c9108c381", "cast_id": 201, "profile_path": null, "order": 189}, {"name": "Brenda Moore", "character": "Ensemble Turning Women", "id": 1278609, "credit_id": "52fe486e9251416c9108c385", "cast_id": 202, "profile_path": null, "order": 190}, {"name": "Mischa Purnell", "character": "Ensemble Turning Women", "id": 1278610, "credit_id": "52fe486e9251416c9108c389", "cast_id": 203, "profile_path": null, "order": 191}, {"name": "Annette Yeo", "character": "Ensemble Turning Women", "id": 1278611, "credit_id": "52fe486e9251416c9108c38d", "cast_id": 204, "profile_path": null, "order": 192}, {"name": "Josephine Darvill-Mills", "character": "Ensemble Wedding Dancers", "id": 1278612, "credit_id": "52fe486e9251416c9108c391", "cast_id": 205, "profile_path": null, "order": 193}, {"name": "Jennifer Essex", "character": "Ensemble Wedding Dancers", "id": 1278613, "credit_id": "52fe486e9251416c9108c395", "cast_id": 206, "profile_path": null, "order": 194}, {"name": "Vicky Evans", "character": "Ensemble Wedding Dancers", "id": 1278614, "credit_id": "52fe486e9251416c9108c399", "cast_id": 207, "profile_path": null, "order": 195}, {"name": "Edward Lewis French", "character": "Ensemble Wedding Dancers", "id": 1278615, "credit_id": "52fe486e9251416c9108c39d", "cast_id": 208, "profile_path": null, "order": 196}, {"name": "Nigel Garton", "character": "Ensemble Wedding Dancers", "id": 1278616, "credit_id": "52fe486e9251416c9108c3a1", "cast_id": 209, "profile_path": null, "order": 197}, {"name": "Lynn Jezzard", "character": "Ensemble Wedding Dancers", "id": 1278617, "credit_id": "52fe486e9251416c9108c3a5", "cast_id": 210, "profile_path": null, "order": 198}, {"name": "Nicholas Keegan", "character": "Ensemble Wedding Dancers", "id": 1278618, "credit_id": "52fe486e9251416c9108c3a9", "cast_id": 211, "profile_path": null, "order": 199}, {"name": "Steve Kirkham", "character": "Ensemble Wedding Dancers", "id": 1278619, "credit_id": "52fe486e9251416c9108c3ad", "cast_id": 212, "profile_path": null, "order": 200}, {"name": "Vanessa Lee Hicks", "character": "Ensemble Wedding Dancers (as Vanessa Leagh-Hicks)", "id": 231680, "credit_id": "52fe486e9251416c9108c3b1", "cast_id": 213, "profile_path": null, "order": 201}, {"name": "Ian Parsons", "character": "Ensemble Wedding Dancers", "id": 1278620, "credit_id": "52fe486e9251416c9108c3b5", "cast_id": 214, "profile_path": null, "order": 202}, {"name": "Gemma Payne", "character": "Ensemble Wedding Dancers", "id": 1278621, "credit_id": "52fe486e9251416c9108c3b9", "cast_id": 215, "profile_path": null, "order": 203}, {"name": "Clinten Pearce", "character": "Ensemble Wedding Dancers", "id": 1278622, "credit_id": "52fe486e9251416c9108c3bd", "cast_id": 216, "profile_path": null, "order": 204}, {"name": "Claire Piquemal", "character": "Ensemble Wedding Dancers", "id": 1278623, "credit_id": "52fe486e9251416c9108c3c1", "cast_id": 217, "profile_path": null, "order": 205}, {"name": "Aaron Sillis", "character": "Ensemble Wedding Dancers", "id": 1278624, "credit_id": "52fe486e9251416c9108c3c5", "cast_id": 218, "profile_path": null, "order": 206}, {"name": "Ian Waller", "character": "Ensemble Wedding Dancers", "id": 1278625, "credit_id": "52fe486e9251416c9108c3c9", "cast_id": 219, "profile_path": null, "order": 207}], "directors": [{"name": "Tom Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe486c9251416c9108c089", "profile_path": "/ddndxAviYVozIwOIByXAJvHWK7m.jpg", "id": 70500}], "vote_average": 6.9, "runtime": 157}, "1265": {"poster_path": "/vNUvGD1Pl5NjgiSrtVrEa52Ewju.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 137587063, "overview": "Jesse Aarons trained all summer to become the fastest runner in school, so he's very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences, including that she's rich, he's poor, and she's a city girl, he's a country boy, the two become fast friends. Together, they create Terabithia, a land of monsters, trolls, ogres, and giants and rule as king and queen. This friendship helps Jess cope with the tragedy that makes him realize what Leslie taught him.", "video": false, "id": 1265, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Bridge to Terabithia", "tagline": "Close your eyes, but keep your mind wide open.", "vote_count": 214, "homepage": "http://disney.go.com/disneyvideos/liveaction/bridgetoterabithia/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398808", "adult": false, "backdrop_path": "/t45osFg8w2Kh7BzgYl1iYgi8IxF.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walden Media", "id": 10221}], "release_date": "2007-02-16", "popularity": 1.13217223951942, "original_title": "Bridge to Terabithia", "budget": 60000000, "cast": [{"name": "Josh Hutcherson", "character": "Jess Aarons", "id": 27972, "credit_id": "52fe42ebc3a36847f802cea5", "cast_id": 4, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 0}, {"name": "AnnaSophia Robb", "character": "Leslie Burke", "id": 1285, "credit_id": "52fe42ebc3a36847f802cea9", "cast_id": 5, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Ms. Edmunds", "id": 11664, "credit_id": "52fe42ebc3a36847f802cead", "cast_id": 6, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Kate Butler", "character": "Mary Aarons", "id": 54478, "credit_id": "52fe42ebc3a36847f802ceb1", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Bailee Madison", "character": "May Belle Aarons", "id": 54479, "credit_id": "52fe42ebc3a36847f802ceb5", "cast_id": 8, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 4}, {"name": "Robert Patrick", "character": "Jack Aarons", "id": 418, "credit_id": "52fe42ebc3a36847f802ceb9", "cast_id": 9, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 5}, {"name": "Grace Brannigan", "character": "Joyce Aarons", "id": 54480, "credit_id": "52fe42ebc3a36847f802cebd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Emma Fenton", "character": "Ellie Aarons", "id": 54481, "credit_id": "52fe42ebc3a36847f802cec1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Lauren Clinton", "character": "Janice Avery", "id": 54482, "credit_id": "52fe42ebc3a36847f802cec5", "cast_id": 12, "profile_path": "/a57U4CjJlrLx9RCwkkSmkVG5ZQS.jpg", "order": 8}, {"name": "Isabelle Rose Kircher", "character": "Carla", "id": 54483, "credit_id": "52fe42ebc3a36847f802cec9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Patricia Aldersley", "character": "Grandma Burke", "id": 54484, "credit_id": "52fe42ebc3a36847f802cecd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Judy McIntosh", "character": "Judy Burke", "id": 5532, "credit_id": "52fe42ebc3a36847f802ced1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Latham Gaines", "character": "Bill Burke", "id": 54485, "credit_id": "52fe42ebc3a36847f802ced5", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Carly Owen", "character": "Madison", "id": 54486, "credit_id": "52fe42ebc3a36847f802ced9", "cast_id": 17, "profile_path": "/9heRSZRC7CEF19MBZ8hctYgxPo0.jpg", "order": 13}, {"name": "James Gaylyn", "character": "Principal Turner", "id": 54492, "credit_id": "52fe42ebc3a36847f802cf13", "cast_id": 27, "profile_path": "/ynZVceoV6AbAUy9tVICGXERt6KH.jpg", "order": 14}, {"name": "Jen Wolfe", "character": "Mrs. Myers", "id": 54493, "credit_id": "52fe42ebc3a36847f802cf17", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ian Harcourt", "character": "Bus Driver", "id": 54494, "credit_id": "52fe42ebc3a36847f802cf1b", "cast_id": 29, "profile_path": null, "order": 16}], "directors": [{"name": "G\u00e1bor Csup\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe42ebc3a36847f802ce95", "profile_path": "/ozSgKkukd6gfOAfof5O2ZMTO7Ql.jpg", "id": 36697}], "vote_average": 6.6, "runtime": 96}, "1266": {"poster_path": "/nFbZvElg1peBts1SYrfPkxUc3QG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65569869, "overview": "Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.", "video": false, "id": 1266, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Street Kings", "tagline": "Their city. Their rules. No prisoners.", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lKOSWtpAQZh7x8YuyYFDv0Y6LWo.jpg", "poster_path": "/3d05xAbV1DGBgXSilinY2mpfcxG.jpg", "id": 124881, "name": "Street Kings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}], "imdb_id": "tt0421073", "adult": false, "backdrop_path": "/uShjJWuNxZztCBULKTmHoIcjie6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Regency Enterprises", "id": 508}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Emmett/Furla Films", "id": 10405}], "release_date": "2008-04-10", "popularity": 1.02598600736786, "original_title": "Street Kings", "budget": 20000000, "cast": [{"name": "Keanu Reeves", "character": "Detective Tom Ludlow", "id": 6384, "credit_id": "52fe42ebc3a36847f802cf67", "cast_id": 5, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Captain Jack Wander", "id": 2178, "credit_id": "52fe42ebc3a36847f802cf6b", "cast_id": 6, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Chris Evans", "character": "Detective Paul Diskant", "id": 16828, "credit_id": "52fe42ebc3a36847f802cf6f", "cast_id": 7, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Hugh Laurie", "character": "Captain James Biggs", "id": 41419, "credit_id": "52fe42ebc3a36847f802cf73", "cast_id": 8, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 3}, {"name": "Martha Higareda", "character": "Grace Garcia", "id": 55392, "credit_id": "52fe42ebc3a36847f802cf77", "cast_id": 9, "profile_path": "/nfXVspkCZmeH3jcyJZ7X6sqq4dG.jpg", "order": 4}, {"name": "Cedric the Entertainer", "character": "Scribble", "id": 5726, "credit_id": "52fe42ebc3a36847f802cf7b", "cast_id": 10, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 5}, {"name": "Naomie Harris", "character": "Linda Washington", "id": 2038, "credit_id": "52fe42ebc3a36847f802cf7f", "cast_id": 11, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 6}, {"name": "Common", "character": "Coates", "id": 4238, "credit_id": "52fe42ebc3a36847f802cf83", "cast_id": 12, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 7}, {"name": "Amaury Nolasco", "character": "Detective Cosmo Santos", "id": 17341, "credit_id": "52fe42ebc3a36847f802cf87", "cast_id": 13, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 8}, {"name": "Angela Sun", "character": "Julie Fukashima", "id": 55393, "credit_id": "52fe42ebc3a36847f802cf8b", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Cle Shaheed Sloan", "character": "Fremont", "id": 55394, "credit_id": "52fe42ebc3a36847f802cf8f", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jayceon Terrell Taylor", "character": "Grill", "id": 55395, "credit_id": "52fe42ecc3a36847f802cf93", "cast_id": 16, "profile_path": "/rTigqGDu9vbM1FRVgbV1pqh8PwF.jpg", "order": 11}, {"name": "Michael Monks", "character": "Michael Monks", "id": 53249, "credit_id": "52fe42ecc3a36847f802cf97", "cast_id": 17, "profile_path": "/oa6n4XlzpDmJeStA5a4xBY73rsD.jpg", "order": 12}, {"name": "Jay Mohr", "character": "Sgt. Mike Clady", "id": 12217, "credit_id": "54d6518d925141716000278c", "cast_id": 32, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 13}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe42ebc3a36847f802cf51", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 6.2, "runtime": 109}, "1267": {"poster_path": "/oe7w9SxGmpSW1dlz5QaVVKWBEVz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 169332978, "overview": "In this animated adventure, brilliant preteen inventor Lewis creates a memory scanner to retrieve his earliest recollections and find out why his mother gave him up for adoption. But when the villainous Bowler Hat Guy steals the machine, Lewis is ready to give up on his quest until the mysterious Wilbur Robinson shows up on the scene, whisking Lewis to the future to find the scanner and his mom.", "video": false, "id": 1267, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Meet the Robinsons", "tagline": "Think your family's weird?", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396555", "adult": false, "backdrop_path": "/jxWA2lDLidicmmDymnxlz53zAb9.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2007-03-28", "popularity": 1.39921546627451, "original_title": "Meet the Robinsons", "budget": 150000000, "cast": [{"name": "Tom Selleck", "character": "Cornelius Robinson (voice)", "id": 15112, "credit_id": "52fe42ecc3a36847f802d009", "cast_id": 4, "profile_path": "/au3wlNaGUSLZD46DJFGRuJ0CBVe.jpg", "order": 0}, {"name": "Laurie Metcalf", "character": "Lucille Krunklehorn (voice)", "id": 12133, "credit_id": "52fe42ecc3a36847f802d00d", "cast_id": 5, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 1}, {"name": "Angela Bassett", "character": "Mildred (voice)", "id": 9780, "credit_id": "52fe42ecc3a36847f802d011", "cast_id": 6, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 2}, {"name": "Nicole Sullivan", "character": "Franny (voice)", "id": 16845, "credit_id": "52fe42ecc3a36847f802d015", "cast_id": 7, "profile_path": "/yJe73CBLTXrqge9oIw7k4p2qb61.jpg", "order": 3}, {"name": "Harland Williams", "character": "Carl (voice)", "id": 16846, "credit_id": "52fe42ecc3a36847f802d019", "cast_id": 8, "profile_path": "/ncbsGnC41SsM7VpCOGBJGQ44dwF.jpg", "order": 4}, {"name": "Daniel Hansen", "character": "Lewis (voice)", "id": 155988, "credit_id": "52fe42ecc3a36847f802d01d", "cast_id": 9, "profile_path": "/5z0VSnh46qc7SjHggmq38UGNkA8.jpg", "order": 5}, {"name": "Jordan Fry", "character": "Lewis (voice)", "id": 1290, "credit_id": "52fe42ecc3a36847f802d021", "cast_id": 10, "profile_path": "/9mr4LKxtlSFLFTgQ0eFlD6yHtdI.jpg", "order": 6}, {"name": "Matthew Josten", "character": "Michael 'Goob' Yagoobian (voice)", "id": 61428, "credit_id": "52fe42ecc3a36847f802d025", "cast_id": 11, "profile_path": "/9o38BI6eKx5LGqR3jzqZj2i1sM8.jpg", "order": 7}, {"name": "John H. H. Ford", "character": "Mr. Harrington (voice)", "id": 1077827, "credit_id": "52fe42ecc3a36847f802d029", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Dara McGarry", "character": "Mrs. Harrington / Receptionist (voice)", "id": 1077828, "credit_id": "52fe42ecc3a36847f802d02d", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Tom Kenny", "character": "Mr. Willerstein (voice)", "id": 78798, "credit_id": "52fe42ecc3a36847f802d031", "cast_id": 14, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 10}, {"name": "Don Hall", "character": "Coach / Gaston (voice)", "id": 227439, "credit_id": "52fe42ecc3a36847f802d035", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Paul Butcher", "character": "Stanley (voice)", "id": 33706, "credit_id": "52fe42ecc3a36847f802d039", "cast_id": 16, "profile_path": "/qewV82iTmOX8bSiRzaqDjrJNS3b.jpg", "order": 12}, {"name": "Tracey Miller-Zarneke", "character": "Lizzy (voice)", "id": 963233, "credit_id": "52fe42ecc3a36847f802d03d", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Wesley Singerman", "character": "Wilbur (voice)", "id": 124665, "credit_id": "52fe42ecc3a36847f802d041", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Jessie Flower", "character": "Young Franny (voice)", "id": 61304, "credit_id": "52fe42ecc3a36847f802d045", "cast_id": 19, "profile_path": "/wjzL0uaBcLSYf9UxIxas6S4N3iU.jpg", "order": 15}, {"name": "Stephen J. Anderson", "character": "Bowler Hat Guy / Grandpa Bud / Tallulah (voice)", "id": 16842, "credit_id": "52fe42ecc3a36847f802d049", "cast_id": 20, "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "order": 16}, {"name": "Ethan Sandler", "character": "Doris / CEO / Spike / Dmitri / Laszlo / Fritz / Petunia (voice)", "id": 166654, "credit_id": "52fe42ecc3a36847f802d04d", "cast_id": 21, "profile_path": "/biCZAwndeR6QiBQ4etNeeI0XUVM.jpg", "order": 17}, {"name": "Nathan Greno", "character": "Lefty (voice)", "id": 121830, "credit_id": "52fe42ecc3a36847f802d051", "cast_id": 22, "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "order": 18}, {"name": "Kelly Hoover", "character": "Aunt Billie (voice)", "id": 1077829, "credit_id": "52fe42ecc3a36847f802d055", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Adam West", "character": "Uncle Art (voice)", "id": 26847, "credit_id": "52fe42ecc3a36847f802d059", "cast_id": 24, "profile_path": "/8pvRGXFF7lsIZrDS2yaV2dZaG72.jpg", "order": 20}, {"name": "Aurian Redson", "character": "Frankie (voice)", "id": 963235, "credit_id": "52fe42ecc3a36847f802d05d", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Joseph Mateo", "character": "T-Rex (voice)", "id": 1077830, "credit_id": "52fe42ecc3a36847f802d061", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Joe Whyte", "character": "Reporter (voice)", "id": 61425, "credit_id": "52fe42ecc3a36847f802d065", "cast_id": 27, "profile_path": "/nBWyiV2dbhMAebwXagfNWej5on4.jpg", "order": 23}], "directors": [{"name": "Stephen J. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802cff9", "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "id": 16842}], "vote_average": 6.6, "runtime": 95}, "1268": {"poster_path": "/5G3gOZemcwXf2nbUFB4VCc5gl2A.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 168120409, "overview": "Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two come back together. On the way he discovers France, bicycling, and true love, among other things", "video": false, "id": 1268, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Mr. Bean's Holiday", "tagline": "Disaster has a passport.", "vote_count": 151, "homepage": "http://movies.universal-pictures-international-germany.de/mrbeanmachtferien/", "belongs_to_collection": {"backdrop_path": "/aIXcqHz5VKRLXHPsNo0dFoK7YP5.jpg", "poster_path": "/61Jcc1Gwc2KE7sIJ1HPqqdt67ji.jpg", "id": 103372, "name": "Mr. Bean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453451", "adult": false, "backdrop_path": "/m4HoSKqgtjbwXkN4VvfueZCV9iN.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Tiger Aspect Productions", "id": 686}], "release_date": "2007-03-22", "popularity": 0.841836594665035, "original_title": "Mr. Bean's Holiday", "budget": 25000000, "cast": [{"name": "Rowan Atkinson", "character": "Mr. Bean", "id": 10730, "credit_id": "52fe42ecc3a36847f802d129", "cast_id": 22, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "Max Baldry", "character": "Stepan", "id": 16373, "credit_id": "52fe42ecc3a36847f802d131", "cast_id": 24, "profile_path": "/k8V3Sy7KgTtYWE0lxK1lhkE5wSX.jpg", "order": 1}, {"name": "Emma de Caunes", "character": "Sabine", "id": 4286, "credit_id": "52fe42ecc3a36847f802d157", "cast_id": 32, "profile_path": "/xKHtjT3A8Y5tpmxDs7PddlMP6M1.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Carson Clay", "id": 5293, "credit_id": "52fe42ecc3a36847f802d12d", "cast_id": 23, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Karel Roden", "character": "Emil", "id": 10841, "credit_id": "52fe42ecc3a36847f802d153", "cast_id": 31, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 4}, {"name": "Steve Pemberton", "character": "Vicar", "id": 28485, "credit_id": "5340b9bdc3a3681517000b90", "cast_id": 33, "profile_path": "/jToKs3u7DSCA0eZrKP0rcrjS8dR.jpg", "order": 5}, {"name": "Jean Rochefort", "character": "Ma\u00eetre d'h\u00f4tel", "id": 24421, "credit_id": "5340b9d6c3a3681527000c0d", "cast_id": 34, "profile_path": "/egQw0mikF0oVfZo3kqUXbr622RC.jpg", "order": 6}], "directors": [{"name": "Steve Bendelack", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d0ad", "profile_path": null, "id": 16356}], "vote_average": 6.2, "runtime": 90}, "9461": {"poster_path": "/6C006cxfwjWYkBW4fM3xCMyr7Yg.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000000, "overview": "A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.", "video": false, "id": 9461, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Enter the Dragon", "tagline": "Their deadly mission: to crack the forbidden island of Han!", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/92A4HRYZqwHt38GiWvjA6WCTF50.jpg", "poster_path": "/zbnN1J0YMmSl619F60hGH59HT2v.jpg", "id": 336347, "name": "Bruce Lee Ultimate Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070034", "adult": false, "backdrop_path": "/wNm3hNJuOk117wEwuESKO8eCEAk.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Concord Productions Inc.", "id": 3526}, {"name": "Golden Harvest Company Ltd.", "id": 6379}, {"name": "Sequoia Productions", "id": 14665}], "release_date": "1973-08-17", "popularity": 0.558096073851182, "original_title": "Enter the Dragon", "budget": 850000, "cast": [{"name": "Bruce Lee", "character": "Lee", "id": 19429, "credit_id": "52fe44fac3a36847f80b56fd", "cast_id": 7, "profile_path": "/9LoptajgaKworu6Wk6jh0mg32M2.jpg", "order": 0}, {"name": "Jim Kelly", "character": "Williams", "id": 82832, "credit_id": "52fe44fac3a36847f80b5701", "cast_id": 8, "profile_path": "/ko3M5sVTr4Al7GZmOeLM1DIga0l.jpg", "order": 1}, {"name": "John Saxon", "character": "Roper", "id": 11163, "credit_id": "52fe44fac3a36847f80b5705", "cast_id": 9, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 2}, {"name": "Ahna Capri", "character": "Tania", "id": 161795, "credit_id": "52fe44fac3a36847f80b570d", "cast_id": 11, "profile_path": "/n2UUiP09CSR9mrF8oHVm8tzqZ4U.jpg", "order": 4}, {"name": "Shih Kien", "character": "Han (as Shih Kien)", "id": 65971, "credit_id": "52fe44fac3a36847f80b5711", "cast_id": 12, "profile_path": "/mziDNcIsxYQCv1FHytSOju7fLYJ.jpg", "order": 5}, {"name": "Robert Wall", "character": "Oharra (as Bob Wall)", "id": 131170, "credit_id": "52fe44fac3a36847f80b5715", "cast_id": 13, "profile_path": "/lsffFZ7zG2PkLMAOSv1PyYrYr0v.jpg", "order": 5}, {"name": "Angela Mao", "character": "Su Lin (Guest star) (as Angela Mao Ying)", "id": 115916, "credit_id": "52fe44fac3a36847f80b5719", "cast_id": 14, "profile_path": "/A0eFlPeene2RuwcL0kJV7uRHylp.jpg", "order": 6}, {"name": "Betty Chung", "character": "Mei Ling", "id": 230538, "credit_id": "52fe44fac3a36847f80b571d", "cast_id": 15, "profile_path": "/kTRmVsT5I02ZHTCCQU1mDFltRDz.jpg", "order": 7}, {"name": "Bolo Yeung", "character": "Bolo (as Yang Sze)", "id": 58123, "credit_id": "52fe44fac3a36847f80b5709", "cast_id": 10, "profile_path": "/kChDa118ic0VcUo9kPMX7KsLzxG.jpg", "order": 8}, {"name": "Geoffrey Weeks", "character": "Braithwaite", "id": 544964, "credit_id": "52fe44fac3a36847f80b5721", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Roy Chiao", "character": "Shaolin Abbott (Guest star)", "id": 695, "credit_id": "52fe44fac3a36847f80b5725", "cast_id": 17, "profile_path": "/6gBxdImc8eGHeDDEJGFiGrIwx6O.jpg", "order": 10}, {"name": "Sammo Hung", "character": "Shaolin Fighter", "id": 62410, "credit_id": "52fe44fac3a36847f80b572f", "cast_id": 19, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 11}, {"name": "Peter Chan Lung", "character": "Party guest", "id": 1173757, "credit_id": "5398484d0e0a266dc500c764", "cast_id": 26, "profile_path": "/w7SgLmFYgyQAJrAve16gqM4Wo1p.jpg", "order": 12}], "directors": [{"name": "Robert Clouse", "department": "Directing", "job": "Director", "credit_id": "52fe44fac3a36847f80b56e7", "profile_path": "/y4Wd9h5WeOGEEklhCcDYnEQOcKx.jpg", "id": 57727}], "vote_average": 7.0, "runtime": 99}, "9462": {"poster_path": "/bhPfkyXgWXNfYRzKFoFZyWeVuef.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 85000000, "overview": "Tang Lung arrives in Rome to help his cousins in the restaurant business. They are being pressured to sell their property to the syndicate, who will stop at nothing to get what they want. When Tang arrives he poses a new threat to the syndicate, and they are unable to defeat him. The syndicate boss hires the best Japanese and European martial artists to fight Tang, but he easily finishes them off.", "video": false, "id": 9462, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Way of the Dragon", "tagline": "The Colosseum . . the battleground of Bruce Lee and Chuck Norris.", "vote_count": 66, "homepage": "", "belongs_to_collection": {"backdrop_path": "/92A4HRYZqwHt38GiWvjA6WCTF50.jpg", "poster_path": "/zbnN1J0YMmSl619F60hGH59HT2v.jpg", "id": 336347, "name": "Bruce Lee Ultimate Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0068935", "adult": false, "backdrop_path": "/qCLaNDvgnpj3N1VkRacr3bjK9ZN.jpg", "production_companies": [{"name": "Golden Harvest Company", "id": 2521}, {"name": "Concord Productions Inc.", "id": 3526}], "release_date": "1972-12-29", "popularity": 0.657366604395797, "original_title": "Meng long guo jiang", "budget": 130000, "cast": [{"name": "Bruce Lee", "character": "Tang Lung (a.k.a. Dragon)", "id": 19429, "credit_id": "52fe44fac3a36847f80b578f", "cast_id": 2, "profile_path": "/9LoptajgaKworu6Wk6jh0mg32M2.jpg", "order": 0}, {"name": "Nora Miao", "character": "Chen Ching Hua", "id": 57723, "credit_id": "52fe44fac3a36847f80b5793", "cast_id": 3, "profile_path": "/yeTFQEgmknTLCtadovJpqRtp5Br.jpg", "order": 1}, {"name": "Chuck Norris", "character": "Colt", "id": 51576, "credit_id": "52fe44fac3a36847f80b5797", "cast_id": 4, "profile_path": "/v37EfVIoKV4ooy1KE5z8BxsT6wU.jpg", "order": 2}, {"name": "Ping-Ao Wei", "character": "Ho (as Paul Wei Ping-Ao)", "id": 143190, "credit_id": "52fe44fac3a36847f80b57b3", "cast_id": 10, "profile_path": "/7IRPwj6spCOWC8FTmliJ08WQDsE.jpg", "order": 3}, {"name": "Chung-Hsin Huang", "character": "'Uncle' Wang (as Wang Chung Hsin)", "id": 143191, "credit_id": "52fe44fac3a36847f80b57b7", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Robert Wall", "character": "Fred (Bob Fred)", "id": 131170, "credit_id": "52fe44fac3a36847f80b57bb", "cast_id": 12, "profile_path": "/lsffFZ7zG2PkLMAOSv1PyYrYr0v.jpg", "order": 5}, {"name": "Hwang In-Shik", "character": "Japanese Fighter", "id": 554622, "credit_id": "52fe44fac3a36847f80b57bf", "cast_id": 13, "profile_path": "/304F57Mt0Fh2aZu0Ytv4BiqhZJo.jpg", "order": 6}, {"name": "Tony Liu", "character": "Tony", "id": 237257, "credit_id": "52fe44fac3a36847f80b57c3", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Unicorn Chan", "character": "Jimmy", "id": 122530, "credit_id": "52fe44fac3a36847f80b57c7", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Malisa Longo", "character": "Italian Beauty", "id": 99536, "credit_id": "52fe44fac3a36847f80b57cb", "cast_id": 16, "profile_path": "/gPPa5pFNbC9Ty2BsA0BqYN66JI7.jpg", "order": 9}, {"name": "Fu Ching Chen", "character": "Waiter (as Tommy Chen)", "id": 554623, "credit_id": "52fe44fac3a36847f80b57cf", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Di Chin", "character": "Ah Quen", "id": 554624, "credit_id": "52fe44fac3a36847f80b57d3", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Wu Ngan", "character": "Waiter", "id": 554625, "credit_id": "52fe44fac3a36847f80b57d7", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Robert Chen", "character": "Robert", "id": 554626, "credit_id": "52fe44fac3a36847f80b57db", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Jon T. Benn", "character": "Boss", "id": 52906, "credit_id": "52fe44fac3a36847f80b57df", "cast_id": 21, "profile_path": "/uiJtuNo89wDbQlJgDuRRxXyd1uR.jpg", "order": 14}], "directors": [{"name": "Bruce Lee", "department": "Directing", "job": "Director", "credit_id": "52fe44fac3a36847f80b578b", "profile_path": "/9LoptajgaKworu6Wk6jh0mg32M2.jpg", "id": 19429}], "vote_average": 7.0, "runtime": 100}, "1271": {"poster_path": "/bYR8O1H1ZlME7Dm9ysfTYZnRDpw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 422610419, "overview": "Based on Frank Miller's graphic novel, \"300\" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.", "video": false, "id": 1271, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 10752, "name": "War"}], "title": "300", "tagline": "Spartans, prepare for glory!", "vote_count": 2384, "homepage": "http://300themovie.warnerbros.com", "belongs_to_collection": {"backdrop_path": "/ldKTZVlq8kXk34RwPSZaX2FXC24.jpg", "poster_path": "/nKQqh6kJvPdpOJD24enD3Bm1Hy5.jpg", "id": 125570, "name": "300 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416449", "adult": false, "backdrop_path": "/oHOTQkTYgDuoCYMaBEzuB9DqguX.jpg", "production_companies": [{"name": "Virtual Studios", "id": 449}, {"name": "Legendary Pictures", "id": 923}, {"name": "Hollywood Gang Productions", "id": 2994}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Warner Bros.", "id": 6194}, {"name": "Nimar Studios", "id": 7636}], "release_date": "2006-12-09", "popularity": 1.9125791663571, "original_title": "300", "budget": 65000000, "cast": [{"name": "Gerard Butler", "character": "King Leonidas", "id": 17276, "credit_id": "52fe42ecc3a36847f802d24f", "cast_id": 2, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Lena Headey", "character": "Queen Gorgo", "id": 17286, "credit_id": "52fe42ecc3a36847f802d271", "cast_id": 8, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 1}, {"name": "Dominic West", "character": "Theron", "id": 17287, "credit_id": "52fe42ecc3a36847f802d279", "cast_id": 10, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 2}, {"name": "David Wenham", "character": "Dilios", "id": 1371, "credit_id": "52fe42ecc3a36847f802d275", "cast_id": 9, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 3}, {"name": "Vincent Regan", "character": "Captain", "id": 9831, "credit_id": "52fe42ecc3a36847f802d281", "cast_id": 12, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 4}, {"name": "Michael Fassbender", "character": "Stelios", "id": 17288, "credit_id": "52fe42ecc3a36847f802d27d", "cast_id": 11, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 5}, {"name": "Tom Wisdom", "character": "Astinos", "id": 17292, "credit_id": "52fe42ecc3a36847f802d291", "cast_id": 16, "profile_path": "/3G9RdJHEfTcuBk5ArYSMOrnYYG9.jpg", "order": 6}, {"name": "Andrew Tiernan", "character": "Ephialtes", "id": 17290, "credit_id": "52fe42ecc3a36847f802d289", "cast_id": 14, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 7}, {"name": "Andrew Pleavin", "character": "Daxos", "id": 17291, "credit_id": "52fe42ecc3a36847f802d28d", "cast_id": 15, "profile_path": "/tiMLyqTDBx0TgfQKlLHObr9eGyG.jpg", "order": 8}, {"name": "Rodrigo Santoro", "character": "Xerxes", "id": 17289, "credit_id": "52fe42ecc3a36847f802d285", "cast_id": 13, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 9}, {"name": "Giovani Cimmino", "character": "Pleistarchos", "id": 17293, "credit_id": "52fe42ecc3a36847f802d295", "cast_id": 17, "profile_path": "/o6VeIXtqyBphZfI6ws2lq0N4Gw0.jpg", "order": 10}, {"name": "Tyler Neitzel", "character": "Leonidas at 15 yrs", "id": 17294, "credit_id": "52fe42ecc3a36847f802d299", "cast_id": 18, "profile_path": "/u4GmeknrwU9k2p3OWcf7aOKpTMm.jpg", "order": 11}, {"name": "Greg Kramer", "character": "Ephor #1", "id": 306574, "credit_id": "52fe42ecc3a36847f802d2c7", "cast_id": 26, "profile_path": "/oyqzMZ5cpsAEOGihB9aj3GXhJrj.jpg", "order": 12}, {"name": "Stephen McHattie", "character": "Loyalist", "id": 230, "credit_id": "52fe42ecc3a36847f802d2cb", "cast_id": 27, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 13}, {"name": "Alex Ivanovici", "character": "Ephor #2", "id": 96594, "credit_id": "52fe42ecc3a36847f802d2cf", "cast_id": 28, "profile_path": "/hCJlQXLMhT9gd6dkmOivS8IAOpw.jpg", "order": 14}, {"name": "Kelly Craig", "character": "Oracle Girl", "id": 1089919, "credit_id": "52fe42ecc3a36847f802d2d3", "cast_id": 29, "profile_path": "/hBcE3mwy1RNKXFc5ryXK1uNm44O.jpg", "order": 15}, {"name": "Eli Snyder", "character": "Leonidas at 7 / 8 yrs", "id": 963118, "credit_id": "52fe42ecc3a36847f802d2d7", "cast_id": 30, "profile_path": "/vM41JkLOM4i6UFy7XmaMwQxMfsT.jpg", "order": 16}, {"name": "Tim Connolly", "character": "Leonidas' Father", "id": 1089920, "credit_id": "52fe42ecc3a36847f802d2db", "cast_id": 31, "profile_path": "/vbOiWLjS6fpVkgx8b7Owsw8v8ml.jpg", "order": 17}, {"name": "Marie-Julie Rivest", "character": "Leonidas' Mother", "id": 181248, "credit_id": "52fe42ecc3a36847f802d2df", "cast_id": 32, "profile_path": "/aEQwHaDKjqbWYdySYSSoZ2CjmjL.jpg", "order": 18}, {"name": "Sebastian St. Germain", "character": "Fighting Boy (12 yrs old)", "id": 1089921, "credit_id": "52fe42ecc3a36847f802d2e3", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Peter Mensah", "character": "Messenger", "id": 68278, "credit_id": "52fe42ecc3a36847f802d2e7", "cast_id": 34, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 20}, {"name": "Arthur Holden", "character": "Partisan", "id": 115596, "credit_id": "52fe42ecc3a36847f802d2eb", "cast_id": 35, "profile_path": "/y0aCeMJKAzVJO3pydEiVCV2Ca4k.jpg", "order": 21}, {"name": "Michael Sinelnikoff", "character": "Elder councilman", "id": 29463, "credit_id": "52fe42ecc3a36847f802d2ef", "cast_id": 36, "profile_path": "/21gdKsg9LAnEYJLhvLdphYzADdm.jpg", "order": 22}, {"name": "John Dunn-Hill", "character": "Councilman", "id": 218899, "credit_id": "52fe42ecc3a36847f802d2f3", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Dennis St John", "character": "Spartan Baby Inspector", "id": 1089927, "credit_id": "52fe42ecc3a36847f802d2f7", "cast_id": 38, "profile_path": "/akdpQoRLy4cv0cDdnjpWrq5lvhb.jpg", "order": 24}, {"name": "Neil Napier", "character": "Spartan with Stick", "id": 105496, "credit_id": "52fe42ecc3a36847f802d2fb", "cast_id": 39, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 25}, {"name": "Dylan Smith", "character": "Sentry #1", "id": 47934, "credit_id": "52fe42ecc3a36847f802d2ff", "cast_id": 40, "profile_path": "/zTCKPmDxvbTLBaLwD7dw6tV7kPA.jpg", "order": 26}, {"name": "Maurizio Terrazzano", "character": "Sentry #2", "id": 125686, "credit_id": "52fe42ecc3a36847f802d303", "cast_id": 41, "profile_path": "/e3pnau5FZuLrDw5KSoBBCZzRSv9.jpg", "order": 27}, {"name": "Robert Paradis", "character": "Spartan General", "id": 1089928, "credit_id": "52fe42ecc3a36847f802d307", "cast_id": 42, "profile_path": null, "order": 28}, {"name": "Kwasi Songui", "character": "Persian", "id": 207881, "credit_id": "52fe42ecc3a36847f802d30b", "cast_id": 43, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 29}, {"name": "Alexandra Beaton", "character": "Burned Village Child", "id": 1089929, "credit_id": "52fe42ecc3a36847f802d30f", "cast_id": 44, "profile_path": "/4ieRK2izuJXdZXLktGKNIFuECOm.jpg", "order": 30}, {"name": "Fr\u00e9d\u00e9ric Smith", "character": "Statesman", "id": 1089930, "credit_id": "52fe42ecc3a36847f802d313", "cast_id": 45, "profile_path": null, "order": 31}, {"name": "Loucas Minchillo", "character": "Spartan Baby A", "id": 1330745, "credit_id": "539d2c290e0a261335002e78", "cast_id": 71, "profile_path": null, "order": 32}, {"name": "Nicholas Minchillo", "character": "Spartan Baby B", "id": 1330746, "credit_id": "539d2c780e0a261332002f08", "cast_id": 72, "profile_path": null, "order": 33}, {"name": "Tom Rack", "character": "Ephor #3", "id": 1330747, "credit_id": "539d2ce3c3a3683b50002400", "cast_id": 73, "profile_path": null, "order": 34}, {"name": "Tom Rack", "character": "Ephor #4", "id": 1233013, "credit_id": "539d2d40c3a3683b41002501", "cast_id": 74, "profile_path": null, "order": 35}, {"name": "David Francis", "character": "Ephor #5", "id": 119708, "credit_id": "539d2e640e0a26132f002fef", "cast_id": 75, "profile_path": null, "order": 36}, {"name": "James Bradford", "character": "Free Greek-Potter", "id": 29468, "credit_id": "539d2f22c3a3683b500024c8", "cast_id": 76, "profile_path": null, "order": 37}, {"name": "Andrew Shaver", "character": "Free Greek-Sculptor", "id": 90467, "credit_id": "539d2f9dc3a3683b370025aa", "cast_id": 77, "profile_path": null, "order": 38}, {"name": "Kent McQuaid", "character": "Free Greek-Blacksmith", "id": 131338, "credit_id": "539d31b7c3a3683b23002750", "cast_id": 78, "profile_path": null, "order": 39}, {"name": "Marcel Jeannin", "character": "Free Greek-Baker", "id": 143395, "credit_id": "539d31edc3a3683b2a0026de", "cast_id": 79, "profile_path": "/3c4e3hc0G70PN0ZiqsyxrXMGrV1.jpg", "order": 40}, {"name": "Jere Gillis", "character": "Spartan General #2", "id": 1330749, "credit_id": "539d3212c3a3683b5900264b", "cast_id": 80, "profile_path": null, "order": 41}, {"name": "Jeremy Thibodeau", "character": "Spartan Boy", "id": 1330750, "credit_id": "539d322bc3a3683b500025ce", "cast_id": 81, "profile_path": null, "order": 42}, {"name": "Tyrone Benskin", "character": "Persian Emissary", "id": 181247, "credit_id": "539d3246c3a3683b59002651", "cast_id": 82, "profile_path": "/uk337YxF0aJuwpcfYkf4Ez8rHTZ.jpg", "order": 43}, {"name": "Robert Maillet", "character": "Uber Immortal (Giant)", "id": 112692, "credit_id": "539d3290c3a3683b59002655", "cast_id": 83, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 44}, {"name": "Patrick Sabongui", "character": "Persian General", "id": 102742, "credit_id": "539d32bdc3a3683b59002658", "cast_id": 84, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 45}, {"name": "Leon Laderach", "character": "Executioner", "id": 1330751, "credit_id": "539d33d2c3a3683b370026bf", "cast_id": 85, "profile_path": null, "order": 46}, {"name": "Dave Lapommeray", "character": "Persian General Slaughtered", "id": 1330752, "credit_id": "539d340dc3a3683b410026f5", "cast_id": 86, "profile_path": null, "order": 47}, {"name": "Vervi Mauricio", "character": "Armless Concubine", "id": 1330753, "credit_id": "539d342ec3a3683b410026fc", "cast_id": 87, "profile_path": null, "order": 48}, {"name": "Charles Papasoff", "character": "Blacksmith", "id": 1330754, "credit_id": "539d34d90e0a261332003220", "cast_id": 88, "profile_path": null, "order": 49}, {"name": "Isabelle Champeau", "character": "Mother at Market", "id": 1330755, "credit_id": "539d35020e0a26133200322a", "cast_id": 89, "profile_path": null, "order": 50}, {"name": "Veronique-Natale Szalankiewicz", "character": "Daughter at Market (3 / 5 years old)", "id": 1330756, "credit_id": "539d36280e0a261339003179", "cast_id": 90, "profile_path": null, "order": 51}, {"name": "Ma\u00e9va Nadon", "character": "Girl at Market", "id": 1177458, "credit_id": "539d364e0e0a26132c00315a", "cast_id": 91, "profile_path": null, "order": 52}, {"name": "David Thibodeau", "character": "Boy #1 at Market", "id": 1330757, "credit_id": "539d36650e0a261328003105", "cast_id": 92, "profile_path": null, "order": 53}, {"name": "David Schaap", "character": "Potter", "id": 1177316, "credit_id": "539d36830e0a2613350031d3", "cast_id": 93, "profile_path": "/jrG56M9qkTBnT9p4zS5td9HjRBC.jpg", "order": 54}, {"name": "Jean Michel Par\u00e9", "character": "Other Council Guard", "id": 70786, "credit_id": "539d369f0e0a261332003266", "cast_id": 94, "profile_path": null, "order": 55}, {"name": "Stewart Myiow", "character": "Persian General", "id": 1330758, "credit_id": "539d36b60e0a261325003295", "cast_id": 95, "profile_path": null, "order": 56}, {"name": "Andreanne Ross", "character": "Concubine #1", "id": 1330759, "credit_id": "539d36f00e0a2613250032b4", "cast_id": 96, "profile_path": null, "order": 57}, {"name": "Sara Giacalone", "character": "Concubine #2", "id": 1330760, "credit_id": "539d3763c3a3683b59002824", "cast_id": 97, "profile_path": null, "order": 58}, {"name": "Ariadne Bourbonni\u00e8re", "character": "Kissing Concubine #1", "id": 1330762, "credit_id": "539d377ec3a3683b23002978", "cast_id": 98, "profile_path": null, "order": 59}, {"name": "Isabelle Fournel", "character": "Kissing Concubine #2", "id": 1330764, "credit_id": "539d379bc3a3683b500027f2", "cast_id": 99, "profile_path": null, "order": 60}, {"name": "Sandrine Merette-Attiow", "character": "Contortionist", "id": 1330766, "credit_id": "539d37c9c3a3683b480027e1", "cast_id": 100, "profile_path": null, "order": 61}, {"name": "Elisabeth Etienne", "character": "Dancer", "id": 1330767, "credit_id": "539d37e3c3a3683b4100291f", "cast_id": 101, "profile_path": null, "order": 62}, {"name": "Danielle Hubbard", "character": "Dancer", "id": 190088, "credit_id": "539d37f8c3a3683b310028a0", "cast_id": 102, "profile_path": null, "order": 63}, {"name": "Ruan Vibegaard", "character": "Dancer", "id": 1330768, "credit_id": "539d380bc3a3683b3700290f", "cast_id": 103, "profile_path": null, "order": 64}, {"name": "Genevieve Guilbault", "character": "Slave Girl", "id": 1330769, "credit_id": "539d3823c3a3683b230029cf", "cast_id": 104, "profile_path": null, "order": 65}, {"name": "Bonnie Mak", "character": "Slave Girl", "id": 1330770, "credit_id": "539d3837c3a3683b590028ae", "cast_id": 105, "profile_path": null, "order": 66}, {"name": "Am\u00e9lie Sorel", "character": "Slave Girl", "id": 84586, "credit_id": "539d38e2c3a3683b2a00299a", "cast_id": 106, "profile_path": null, "order": 67}, {"name": "Caroline Aspirot", "character": "Slave Girl", "id": 1330771, "credit_id": "539d390cc3a3683b5000288f", "cast_id": 107, "profile_path": null, "order": 68}, {"name": "Gina Gagnon", "character": "Slave Girl", "id": 1330772, "credit_id": "539d3923c3a3683b3700295e", "cast_id": 108, "profile_path": null, "order": 69}, {"name": "Tania Trudell", "character": "Slave Girl", "id": 1330773, "credit_id": "539d3937c3a3683b50002895", "cast_id": 109, "profile_path": null, "order": 70}, {"name": "St\u00e9phanie Aubry", "character": "Slave Girl", "id": 1297965, "credit_id": "539d3958c3a3683b2a0029a0", "cast_id": 110, "profile_path": null, "order": 71}, {"name": "Mercedes Leggett", "character": "Slave Girl", "id": 119250, "credit_id": "539d3971c3a3683b23002a2f", "cast_id": 111, "profile_path": "/6KwhorXj8YXkTlOZAX5vnANFZqT.jpg", "order": 72}, {"name": "Stephania Gambaroff", "character": "Slave Girl", "id": 1330774, "credit_id": "539d3985c3a3683b4100297d", "cast_id": 112, "profile_path": null, "order": 73}, {"name": "Chanelle Lamothe", "character": "Slave Girl", "id": 1330775, "credit_id": "539d3998c3a3683b37002968", "cast_id": 113, "profile_path": null, "order": 74}, {"name": "Sabrina-Jasmine Guilbault", "character": "Slave Girl", "id": 1330776, "credit_id": "539d39aec3a3683b310028f9", "cast_id": 114, "profile_path": null, "order": 75}, {"name": "Manny Cortez Tuazon", "character": "Transsexual (Asian) #1", "id": 1330777, "credit_id": "539d39c7c3a3683b48002858", "cast_id": 115, "profile_path": null, "order": 76}, {"name": "Atif Y. Siddiqi", "character": "Transsexual (Arabian) #3", "id": 1330778, "credit_id": "539d39ddc3a3683b4800285e", "cast_id": 116, "profile_path": null, "order": 77}, {"name": "Camille Rizkallah", "character": "Giant with Arrow", "id": 1330779, "credit_id": "539d39f4c3a3683b41002991", "cast_id": 117, "profile_path": null, "order": 78}, {"name": "Trudi Hanley", "character": "Long Neck Woman", "id": 1330780, "credit_id": "539d3a0fc3a3683b4800286d", "cast_id": 118, "profile_path": null, "order": 79}, {"name": "Neon Cobran", "character": "Litter Bearer / Slave", "id": 1330781, "credit_id": "539d3a22c3a3683b500028b1", "cast_id": 119, "profile_path": null, "order": 80}, {"name": "Gary A. Hecker", "character": "Ubermortal Vocals (voice)", "id": 1077782, "credit_id": "539d3a50c3a3683b3700297e", "cast_id": 120, "profile_path": null, "order": 81}, {"name": "Devin Delorme", "character": "Market boy #2", "id": 1330782, "credit_id": "539d3a65c3a3683b23002a55", "cast_id": 121, "profile_path": null, "order": 82}, {"name": "Deke Richards", "character": "Spartan Soldier (uncredited)", "id": 101218, "credit_id": "539d3a84c3a3683b5900290a", "cast_id": 122, "profile_path": null, "order": 83}, {"name": "Darren Shahlavi", "character": "Persian (uncredited)", "id": 60652, "credit_id": "539d3abac3a3683b31002951", "cast_id": 123, "profile_path": "/qnije3wcudlIbSjRrNr9A57tjO3.jpg", "order": 84}, {"name": "Marc Trottier", "character": "Spartan Warrior (uncredited)", "id": 101253, "credit_id": "539d3afdc3a3683b3100297d", "cast_id": 124, "profile_path": null, "order": 85}, {"name": "Duy Vo Van", "character": "Persian (uncredited)", "id": 1330783, "credit_id": "539d3b15c3a3683b370029f5", "cast_id": 125, "profile_path": null, "order": 86}, {"name": "Agnieshka Wnorowska", "character": "Market woman (uncredited)", "id": 1330784, "credit_id": "539d3b2cc3a3683b23002adb", "cast_id": 126, "profile_path": null, "order": 87}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d24b", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.9, "runtime": 117}, "132344": {"poster_path": "/oxRXxv6ssuhCr2EdXyBk3TDS8nq.jpg", "production_countries": [{"iso_3166_1": "GR", "name": "Greece"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11176469, "overview": "We meet Jesse and Celine nine years on in Greece. Almost two decades have passed since their first meeting on that train bound for Vienna.", "video": false, "id": 132344, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Before Midnight", "tagline": "", "vote_count": 172, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wtNugZq8ZzBYwPIh3VoNUJdkBWG.jpg", "poster_path": "/fYSKN1tV1gdiTMfzRpZpKspGAHp.jpg", "id": 123800, "name": "Before... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2209418", "adult": false, "backdrop_path": "/4H5qpejP9WKsdDTQ0nlNzFLCdzH.jpg", "production_companies": [], "release_date": "2013-06-14", "popularity": 0.886892510068761, "original_title": "Before Midnight", "budget": 3000000, "cast": [{"name": "Ethan Hawke", "character": "Jesse", "id": 569, "credit_id": "52fe4b91c3a368484e18f623", "cast_id": 5, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Julie Delpy", "character": "Celine", "id": 1146, "credit_id": "52fe4b91c3a368484e18f627", "cast_id": 6, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Seamus Davey-Fitzpatrick", "character": "Hank", "id": 12042, "credit_id": "52fe4b91c3a368484e18f68b", "cast_id": 30, "profile_path": "/pPZZxLvU0c0oNIagFZqfBfHLQ8p.jpg", "order": 2}, {"name": "Jennifer Prior", "character": "Ella", "id": 1140264, "credit_id": "52fe4b91c3a368484e18f68f", "cast_id": 31, "profile_path": null, "order": 3}, {"name": "Charlotte Prior", "character": "Nina", "id": 1140265, "credit_id": "52fe4b91c3a368484e18f69f", "cast_id": 35, "profile_path": null, "order": 4}, {"name": "Xenia Kalogeropoulou", "character": "Natalia", "id": 1117999, "credit_id": "52fe4b91c3a368484e18f6a3", "cast_id": 36, "profile_path": null, "order": 5}, {"name": "Walter Lassally", "character": "Patrick", "id": 36967, "credit_id": "52fe4b91c3a368484e18f6a7", "cast_id": 37, "profile_path": null, "order": 6}, {"name": "Ariane Labed", "character": "Anna", "id": 235125, "credit_id": "52fe4b91c3a368484e18f6ab", "cast_id": 38, "profile_path": "/zXa5udQEScybAqG6yNvQ9txFgF4.jpg", "order": 7}, {"name": "Yiannis Papadopoulos", "character": "Achilleas", "id": 1275640, "credit_id": "52fe4b91c3a368484e18f693", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Athina Rachel Tsangari", "character": "Ariadni", "id": 236884, "credit_id": "52fe4b91c3a368484e18f697", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Panos Koronis", "character": "Stefanos", "id": 1275641, "credit_id": "52fe4b91c3a368484e18f69b", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Enrico Focardi", "character": "Child", "id": 1282892, "credit_id": "52fe4b91c3a368484e18f6af", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Manolis Goussias", "character": "Child", "id": 1282893, "credit_id": "52fe4b91c3a368484e18f6b3", "cast_id": 40, "profile_path": null, "order": 12}, {"name": "Anouk Servera", "character": "Child", "id": 1282894, "credit_id": "52fe4b91c3a368484e18f6b7", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Yota Argyropoulou", "character": "Hotel Clerk", "id": 1223384, "credit_id": "52fe4b91c3a368484e18f6bb", "cast_id": 42, "profile_path": null, "order": 14}, {"name": "Serafeim Radis", "character": "Hotel Clerk", "id": 1282895, "credit_id": "52fe4b91c3a368484e18f6bf", "cast_id": 43, "profile_path": null, "order": 15}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4b91c3a368484e18f61f", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.2, "runtime": 108}, "1273": {"poster_path": "/4hGzZ2DAjdu6IjHT7dGfiVatHEu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95608995, "overview": "The continued adventures of the four adolescent mutated turtles gifted in the art of the ninja, as they attempt to stop a mysterious evil that threatens to end the world", "video": false, "id": 1273, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "TMNT", "tagline": "Raising Shell In 2007", "vote_count": 111, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fgdycJqeFA20cBvCraNTC6jTPyd.jpg", "poster_path": "/2RM5r117Fp7RDnl152RishAI8WW.jpg", "id": 117537, "name": "Teenage Mutant Ninja Turtles Animated Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453556", "adult": false, "backdrop_path": "/jDzE7aMeuBXwVhAxb88GUtDyZPf.jpg", "production_companies": [{"name": "Imagi Animation Studios", "id": 3463}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Weinstein Company", "id": 308}, {"name": "Mirage Studios", "id": 30900}], "release_date": "2007-03-22", "popularity": 1.07832722123783, "original_title": "TMNT", "budget": 34000000, "cast": [{"name": "Chris Evans", "character": "Casey (voice)", "id": 16828, "credit_id": "52fe42ecc3a36847f802d401", "cast_id": 8, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "April O'Neil (voice)", "id": 11863, "credit_id": "52fe42ecc3a36847f802d405", "cast_id": 9, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Mako", "character": "Splinter (voice)", "id": 10134, "credit_id": "52fe42ecc3a36847f802d409", "cast_id": 10, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 2}, {"name": "Kevin Smith", "character": "Diner Cook (voice)", "id": 19303, "credit_id": "52fe42ecc3a36847f802d40d", "cast_id": 11, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 3}, {"name": "Patrick Stewart", "character": "Winters (voice)", "id": 2387, "credit_id": "52fe42ecc3a36847f802d411", "cast_id": 12, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 4}, {"name": "Zhang Ziyi", "character": "Karai (voice)", "id": 1339, "credit_id": "52fe42ecc3a36847f802d415", "cast_id": 13, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 5}, {"name": "Laurence Fishburne", "character": "Narrator (voice)", "id": 2975, "credit_id": "52fe42ecc3a36847f802d3fd", "cast_id": 7, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 6}, {"name": "Mitchell Whitfield", "character": "Donatello / Additional Voices (voice)", "id": 19505, "credit_id": "52fe42ecc3a36847f802d419", "cast_id": 14, "profile_path": "/xvLWnBsTbUmW9KcDkH7pvi5W6v0.jpg", "order": 7}, {"name": "James Arnold Taylor", "character": "Leonardo (voice)", "id": 19506, "credit_id": "52fe42ecc3a36847f802d41d", "cast_id": 15, "profile_path": "/rAtyfY0diWt078qQIg0IX9xxG9F.jpg", "order": 8}, {"name": "Mikey Kelley", "character": "Michelangelo (voice)", "id": 19507, "credit_id": "52fe42ecc3a36847f802d421", "cast_id": 16, "profile_path": "/tEAe1GRjqexSGM5GwakPmNeQrkt.jpg", "order": 9}, {"name": "Nolan North", "character": "Raphael / Nightwatcher (voice)", "id": 19508, "credit_id": "52fe42ecc3a36847f802d425", "cast_id": 17, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 10}, {"name": "John DiMaggio", "character": "Colonel Santino (voice)", "id": 294916, "credit_id": "53f98694c3a368734f002668", "cast_id": 21, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 11}, {"name": "Paula Mattioli", "character": "General Serpiente (voice)", "id": 1356270, "credit_id": "53f986a1c3a36873520026f2", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Kevin Michael Richardson", "character": "General Aguila / Additional Voices (voice)", "id": 24362, "credit_id": "53f986acc3a368734c002551", "cast_id": 23, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 13}, {"name": "Fred Tatasciore", "character": "General Gato / Additional Voices (voice)", "id": 60279, "credit_id": "53f986b8c3a368735b0026cc", "cast_id": 24, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 14}, {"name": "Dee Bradley Baker", "character": "Additional Voices (voice)", "id": 23680, "credit_id": "53f986c6c3a3687355002825", "cast_id": 25, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 15}, {"name": "Jim Cummings", "character": "Additional Voices (voice)", "id": 12077, "credit_id": "53f986d9c3a368735800268c", "cast_id": 26, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 16}, {"name": "Phil LaMarr", "character": "Additional Voices (voice)", "id": 31549, "credit_id": "53f986e6c3a368734c002553", "cast_id": 27, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 17}, {"name": "Tara Strong", "character": "Additional Voices (voice)", "id": 15762, "credit_id": "53f986f1c3a368736100269e", "cast_id": 28, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 18}, {"name": "Billy West", "character": "Additional Voices (voice)", "id": 23679, "credit_id": "53f986fdc3a368735e00268c", "cast_id": 29, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 19}], "directors": [{"name": "Kevin Munroe", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d3db", "profile_path": "/v0C5Zwsl3nOUWHOo9hMyvPKDnLp.jpg", "id": 19499}], "vote_average": 6.0, "runtime": 90}, "109439": {"poster_path": "/vaZhsG1ScyfViEgoFew7obFtFBx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362, "overview": "This time, there's no wedding. No bachelor party. What could go wrong, right? But when the Wolfpack hits the road, all bets are off.", "video": false, "id": 109439, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Hangover Part III", "tagline": "It all ends.", "vote_count": 1304, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uEtsf26a9RsRDy85MOIv1xAj44x.jpg", "poster_path": "/aMmNLuyXvdBih1R5RRHtdtNaS6N.jpg", "id": 86119, "name": "The Hangover Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1951261", "adult": false, "backdrop_path": "/xIrtFqXc62VGcWKHOsQfCq4j3x0.jpg", "production_companies": [{"name": "Green Hat Films", "id": 3527}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2013-05-23", "popularity": 2.24550807754762, "original_title": "The Hangover Part III", "budget": 103000000, "cast": [{"name": "Bradley Cooper", "character": "Phil", "id": 51329, "credit_id": "52fe4ab6c3a36847f81ddb37", "cast_id": 8, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Ed Helms", "character": "Stu", "id": 27105, "credit_id": "52fe4ab6c3a36847f81ddb3f", "cast_id": 10, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Alan", "id": 58225, "credit_id": "52fe4ab6c3a36847f81ddb3b", "cast_id": 9, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Doug", "id": 21180, "credit_id": "52fe4ab6c3a36847f81ddb4b", "cast_id": 14, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Ken Jeong", "character": "Mr. Chow", "id": 83586, "credit_id": "52fe4ab6c3a36847f81ddb43", "cast_id": 12, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 4}, {"name": "John Goodman", "character": "Marshall", "id": 1230, "credit_id": "52fe4ab6c3a36847f81ddb4f", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 5}, {"name": "Melissa McCarthy", "character": "Cassie", "id": 55536, "credit_id": "52fe4ab6c3a36847f81ddb53", "cast_id": 16, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Sid", "id": 4175, "credit_id": "52fe4ab6c3a36847f81ddb57", "cast_id": 17, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "Heather Graham", "character": "Jade", "id": 69122, "credit_id": "52fe4ab6c3a36847f81ddb47", "cast_id": 13, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 8}, {"name": "Mike Epps", "character": "Black Doug", "id": 51944, "credit_id": "52fe4ab6c3a36847f81ddb5b", "cast_id": 18, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 9}, {"name": "Sasha Barrese", "character": "Tracy", "id": 83585, "credit_id": "52fe4ab7c3a36847f81ddbdd", "cast_id": 40, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 10}, {"name": "Jamie Chung", "character": "Lauren", "id": 78324, "credit_id": "52fe4ab7c3a36847f81ddbe1", "cast_id": 41, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 11}, {"name": "Sondra Currie", "character": "Linda", "id": 153621, "credit_id": "52fe4ab7c3a36847f81ddbe5", "cast_id": 42, "profile_path": "/an6mZEO5SMAsOkgEOBg7jSN1jmu.jpg", "order": 12}, {"name": "Gillian Vigman", "character": "Stephanie", "id": 61182, "credit_id": "52fe4ab7c3a36847f81ddbe9", "cast_id": 43, "profile_path": "/2uwR6JalWrZWZq3NhL7CdDlDKhL.jpg", "order": 13}, {"name": "Oliver Cooper", "character": "Pharmacy Assistant", "id": 225694, "credit_id": "52fe4ab7c3a36847f81ddbed", "cast_id": 44, "profile_path": "/1eBIzPMwi7xgOAqGztXByHfqrHc.jpg", "order": 14}, {"name": "Mike Vallely", "character": "Nico", "id": 558036, "credit_id": "52fe4ab7c3a36847f81ddbf1", "cast_id": 45, "profile_path": "/hrty7GRM2pdwrNiMDJaBHk8XRU8.jpg", "order": 15}, {"name": "Grant Holmquist", "character": "Tyler", "id": 1208438, "credit_id": "52fe4ab7c3a36847f81ddbf5", "cast_id": 46, "profile_path": null, "order": 16}, {"name": "Oscar Torre", "character": "Officer Vasquez", "id": 145219, "credit_id": "52fe4ab7c3a36847f81ddbf9", "cast_id": 47, "profile_path": "/jxyF7XSUcvvBOmhtfrRNr5zBo8g.jpg", "order": 17}, {"name": "Billy Choi", "character": "Thai prison guard", "id": 1300910, "credit_id": "5322eba59251411f8900485b", "cast_id": 48, "profile_path": "/hvfV8oe6dXitxfNGdYpChNiRwlC.jpg", "order": 18}, {"name": "Jonny Coyne", "character": "Hector", "id": 1323612, "credit_id": "538062cfc3a3680598004cbe", "cast_id": 49, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 19}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe4ab6c3a36847f81ddb15", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.9, "runtime": 100}, "1278": {"poster_path": "/fG6mH8TPfAxneDPE2cxGi8lbajU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 15121165, "overview": "A young American studying in Paris in 1968 strikes up a friendship with a French brother and sister. Set against the background of the '68 Paris student riots.", "video": false, "id": 1278, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Dreamers", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0309987", "adult": false, "backdrop_path": "/a8xpxCnvqKyshdrDNFGs6oy4r8N.jpg", "production_companies": [{"name": "Peninsula Films", "id": 682}], "release_date": "2003-12-09", "popularity": 1.54669306738979, "original_title": "The Dreamers", "budget": 15000000, "cast": [{"name": "Michael Pitt", "character": "Matthew", "id": 10692, "credit_id": "52fe42edc3a36847f802d561", "cast_id": 1, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 0}, {"name": "Eva Green", "character": "Isabelle", "id": 10912, "credit_id": "52fe42edc3a36847f802d565", "cast_id": 2, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Louis Garrel", "character": "Theo", "id": 16269, "credit_id": "52fe42edc3a36847f802d569", "cast_id": 3, "profile_path": "/dnYwgHHvTD4YnvOkMSPMZWkdiaU.jpg", "order": 2}, {"name": "Anna Chancellor", "character": "Mother", "id": 10731, "credit_id": "52fe42edc3a36847f802d5e5", "cast_id": 24, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 3}, {"name": "Robin Renucci", "character": "Father", "id": 16349, "credit_id": "52fe42edc3a36847f802d5e9", "cast_id": 25, "profile_path": "/jo7bJajvTRhYEeThdlSeovoLTwj.jpg", "order": 4}, {"name": "Jean-Pierre Kalfon", "character": "Himself", "id": 16350, "credit_id": "52fe42edc3a36847f802d5ed", "cast_id": 26, "profile_path": "/70bQNgL8PAhTybJp6QfjsmGwvVR.jpg", "order": 5}, {"name": "Jean-Pierre L\u00e9aud", "character": "Himself", "id": 1653, "credit_id": "52fe42edc3a36847f802d5f1", "cast_id": 27, "profile_path": "/dzkPODapVe4CSubEqI9ytTCqnZ7.jpg", "order": 6}, {"name": "Florian Cadiou", "character": "Patrick", "id": 16351, "credit_id": "52fe42edc3a36847f802d5f5", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Pierre Hancisse", "character": "First Buff", "id": 16352, "credit_id": "52fe42edc3a36847f802d5f9", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Valentin Merlet", "character": "Second Buff", "id": 16353, "credit_id": "52fe42edc3a36847f802d5fd", "cast_id": 30, "profile_path": "/xaFLgExlZTqJkAJdgaw8hON7ny1.jpg", "order": 9}, {"name": "Lola Peploe", "character": "The Usherette", "id": 16354, "credit_id": "52fe42edc3a36847f802d601", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Ingy Fillion", "character": "Theo's Girlfriend", "id": 16355, "credit_id": "52fe42edc3a36847f802d605", "cast_id": 32, "profile_path": null, "order": 11}], "directors": [{"name": "Bernardo Bertolucci", "department": "Directing", "job": "Director", "credit_id": "52fe42edc3a36847f802d56f", "profile_path": "/syIk3h60I9ngaUZV9VRVeV4dKdx.jpg", "id": 4956}], "vote_average": 7.3, "runtime": 115}, "9471": {"poster_path": "/rfJrpT6oj4lLzi4Rqt0qzTfUdtr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 259175788, "overview": "The Angels are charged with finding a pair of missing rings that are encoded with the personal information of members of the Witness Protection Program. As informants are killed, the ladies target a rogue agent who might be responsible.", "video": false, "id": 9471, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Charlie's Angels: Full Throttle", "tagline": "This summer the Angels are back.", "vote_count": 272, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jfKqvbZqU3LcNcwj4N8Q1ZJ7fSv.jpg", "poster_path": "/jBKUntSuSUfxTXI8XWABpdWmWEt.jpg", "id": 86029, "name": "Charlie's Angels Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0305357", "adult": false, "backdrop_path": "/lR4CZaDloppplxvRjQZcTMV79qA.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Flower Films (II)", "id": 19813}, {"name": "Tall Trees Productions", "id": 10239}, {"name": "Wonderland Sound and Vision", "id": 4022}], "release_date": "2003-06-27", "popularity": 1.57600314124458, "original_title": "Charlie's Angels: Full Throttle", "budget": 120000000, "cast": [{"name": "Cameron Diaz", "character": "Natalie Cook", "id": 6941, "credit_id": "52fe44fbc3a36847f80b5bad", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Dylan Sanders", "id": 69597, "credit_id": "52fe44fbc3a36847f80b5bb1", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Lucy Liu", "character": "Alex Munday", "id": 140, "credit_id": "52fe44fbc3a36847f80b5bb5", "cast_id": 3, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 2}, {"name": "Bernie Mac", "character": "Jimmy Bosley", "id": 1897, "credit_id": "52fe44fbc3a36847f80b5bb9", "cast_id": 4, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 3}, {"name": "Robert Patrick", "character": "Ray Carter", "id": 418, "credit_id": "52fe44fbc3a36847f80b5bbd", "cast_id": 5, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 4}, {"name": "Demi Moore", "character": "Madison Lee", "id": 3416, "credit_id": "52fe44fbc3a36847f80b5bc1", "cast_id": 6, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 5}, {"name": "John Cleese", "character": "Mr. Munday", "id": 8930, "credit_id": "52fe44fbc3a36847f80b5bc5", "cast_id": 7, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Matt LeBlanc", "character": "Jason", "id": 14407, "credit_id": "52fe44fbc3a36847f80b5bc9", "cast_id": 8, "profile_path": "/35sPf8IBVl54vdmc9Tyv17otMnk.jpg", "order": 7}, {"name": "Luke Wilson", "character": "Pete", "id": 36422, "credit_id": "52fe44fbc3a36847f80b5bcd", "cast_id": 9, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 8}, {"name": "Shia LaBeouf", "character": "Max", "id": 10959, "credit_id": "52fe44fbc3a36847f80b5bd1", "cast_id": 10, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 9}, {"name": "Bruce Willis", "character": "William Rose Bailey", "id": 62, "credit_id": "52fe44fbc3a36847f80b5c1d", "cast_id": 24, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 10}, {"name": "Ashley Olsen", "character": "Future Ange", "id": 67848, "credit_id": "52fe44fbc3a36847f80b5c21", "cast_id": 25, "profile_path": "/gIZBBtO7IGV1wxgFNCzuo7ZakwO.jpg", "order": 11}, {"name": "Mary-Kate Olsen", "character": "Future Ange", "id": 67849, "credit_id": "52fe44fbc3a36847f80b5c25", "cast_id": 26, "profile_path": "/fxTJRxHrNyZVrWZWQZOTXJnGwDY.jpg", "order": 12}, {"name": "Pink", "character": "Coal Bowl Starter", "id": 77271, "credit_id": "52fe44fbc3a36847f80b5c29", "cast_id": 27, "profile_path": "/A4tOzacgaBltm522XYxLodG3ImX.jpg", "order": 13}, {"name": "Crispin Glover", "character": "Thin Man", "id": 1064, "credit_id": "52fe44fbc3a36847f80b5c2d", "cast_id": 28, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 14}, {"name": "Justin Theroux", "character": "Seamus O'Grady", "id": 15009, "credit_id": "52fe44fbc3a36847f80b5c31", "cast_id": 29, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 15}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe44fbc3a36847f80b5c19", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.4, "runtime": 106}, "9472": {"poster_path": "/sgTJCyuZSJJt9LatGHolpCpqg1m.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167722310, "overview": "When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.", "video": false, "id": 9472, "genres": [{"id": 35, "name": "Comedy"}], "title": "DodgeBall: A True Underdog Story", "tagline": "Grab Life By The Ball", "vote_count": 270, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0364725", "adult": false, "backdrop_path": "/xWqqIw2wXlKfcNS2GnNO1AGfmCw.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2004-06-18", "popularity": 0.955203477072046, "original_title": "DodgeBall: A True Underdog Story", "budget": 20000000, "cast": [{"name": "Vince Vaughn", "character": "Peter La Fleur", "id": 4937, "credit_id": "52fe44fbc3a36847f80b5c69", "cast_id": 1, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 0}, {"name": "Christine Taylor", "character": "Kate Veatch", "id": 15286, "credit_id": "52fe44fbc3a36847f80b5c6d", "cast_id": 2, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 1}, {"name": "Ben Stiller", "character": "White Goodman", "id": 7399, "credit_id": "52fe44fbc3a36847f80b5c71", "cast_id": 3, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 2}, {"name": "Rip Torn", "character": "Patches O'Houlihan", "id": 9626, "credit_id": "52fe44fbc3a36847f80b5c75", "cast_id": 4, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 3}, {"name": "Justin Long", "character": "Justin", "id": 15033, "credit_id": "52fe44fbc3a36847f80b5c79", "cast_id": 5, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Pepper Brooks", "id": 23532, "credit_id": "52fe44fbc3a36847f80b5cb9", "cast_id": 16, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Stephen Root", "character": "Gordon", "id": 17401, "credit_id": "52fe44fbc3a36847f80b5cbd", "cast_id": 17, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}, {"name": "Joel David Moore", "character": "Owen", "id": 59231, "credit_id": "52fe44fcc3a36847f80b5cdd", "cast_id": 26, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 7}, {"name": "Chris Williams", "character": "Dwight", "id": 70238, "credit_id": "52fe44fbc3a36847f80b5cc1", "cast_id": 19, "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "order": 8}, {"name": "Alan Tudyk", "character": "Steve the Pirate", "id": 21088, "credit_id": "52fe44fcc3a36847f80b5cc5", "cast_id": 20, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 9}, {"name": "Missi Pyle", "character": "Fran", "id": 1294, "credit_id": "52fe44fcc3a36847f80b5cc9", "cast_id": 21, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 10}, {"name": "Jamal Duff", "character": "Me'Shell Jones", "id": 74931, "credit_id": "52fe44fcc3a36847f80b5ccd", "cast_id": 22, "profile_path": "/nH7XAMTsoomzS3hrciKWTVOzOlR.jpg", "order": 11}, {"name": "Gary Cole", "character": "Cotton McKnight", "id": 21163, "credit_id": "52fe44fcc3a36847f80b5cd1", "cast_id": 23, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 12}, {"name": "Hank Azaria", "character": "Young Patches O'Houlihan", "id": 5587, "credit_id": "52fe44fcc3a36847f80b5cd5", "cast_id": 24, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 13}, {"name": "Al Kaplon", "character": "Tournament Referee", "id": 987739, "credit_id": "52fe44fcc3a36847f80b5cd9", "cast_id": 25, "profile_path": null, "order": 14}], "directors": [{"name": "Rawson Marshall Thurber", "department": "Directing", "job": "Director", "credit_id": "52fe44fbc3a36847f80b5c7f", "profile_path": "/uucsuvXxMFdeoKr4mtL2UV3UUvP.jpg", "id": 57633}], "vote_average": 6.2, "runtime": 92}, "9473": {"poster_path": "/5sW45h3RZOhC5MwOTZE9PY0Djmo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the four boys see an R-rated movie featuring Canadians Terrance and Philip, they are pronounced \"corrupted\", and their parents pressure the United States to wage war against Canada.", "video": false, "id": 9473, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "South Park: Bigger, Longer & Uncut", "tagline": "UH-OH.", "vote_count": 254, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0158983", "adult": false, "backdrop_path": "/hokjXL3skx6ppfxXMHJrhXQ32ag.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Comedy Central", "id": 1538}, {"name": "Paramount Animation", "id": 24955}], "release_date": "1999-06-30", "popularity": 0.91546864208439, "original_title": "South Park: Bigger, Longer & Uncut", "budget": 21000000, "cast": [{"name": "Trey Parker", "character": "Eric Cartman / Stan Marsh", "id": 34517, "credit_id": "52fe44fcc3a36847f80b5d09", "cast_id": 1, "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "order": 0}, {"name": "Matt Stone", "character": "Kyle Broflovski / Kenny McCormick", "id": 34518, "credit_id": "52fe44fcc3a36847f80b5d0d", "cast_id": 2, "profile_path": "/fENM2HlxKgMe81OTTgert1Q55pj.jpg", "order": 1}, {"name": "Mary Kay Bergman", "character": "Liane Cartman", "id": 30695, "credit_id": "52fe44fcc3a36847f80b5d11", "cast_id": 3, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 2}, {"name": "Isaac Hayes", "character": "Chef", "id": 6542, "credit_id": "52fe44fcc3a36847f80b5d15", "cast_id": 4, "profile_path": "/4igh7emwzt4xBLw1r05gCUHxwzD.jpg", "order": 3}, {"name": "George Clooney", "character": "Dr. Gouache", "id": 1461, "credit_id": "52fe44fcc3a36847f80b5d19", "cast_id": 5, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 4}, {"name": "Minnie Driver", "character": "Brooke Shields", "id": 6613, "credit_id": "52fe44fcc3a36847f80b5d1d", "cast_id": 7, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 5}, {"name": "Brent Spiner", "character": "Conan O'Brien", "id": 1213786, "credit_id": "52fe44fcc3a36847f80b5d69", "cast_id": 20, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 6}, {"name": "Jesse Brant Howell", "character": "Ike Broflovski", "id": 1445164, "credit_id": "5511b41c9251412a8800114c", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Anthony Cross-Thomas", "character": "Ike Broflovski (voice)", "id": 1450712, "credit_id": "5522f63e9251417096004208", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Franchesca Clifford", "character": "Ike Broflovski", "id": 1229781, "credit_id": "5522f65bc3a3684dda007081", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Anthony Cross-Thomas", "character": "Ike Broflovski", "id": 1450712, "credit_id": "5522f660c3a3684dd400727c", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Bruce Howell", "character": "Man in Theater", "id": 1229804, "credit_id": "5522f677c3a368333a0047dd", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Deb Adair", "character": "Woman in Theater", "id": 1395446, "credit_id": "5522f687c3a36828d10046c3", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Jennifer Howell", "character": "Bebe Stevens", "id": 1229787, "credit_id": "5522f69c9251417be2005bd7", "cast_id": 29, "profile_path": null, "order": 14}], "directors": [{"name": "Trey Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5d23", "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "id": 34517}], "vote_average": 7.0, "runtime": 81}, "9474": {"poster_path": "/A9nNgMS8oVh5QREvsAUodzhijYQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Jack Beauregard, one of the greatest gunman of the Old West, only wants to retire in peace and move to Europe. But a young gunfighter, known as \"Nobody\", who idolizes Beauregard, wants him to go out in glory. So he arranges for Jack to face the 150-man gang known as The Wild Bunch and earn his place in history.", "video": false, "id": 9474, "genres": [{"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "My Name Is Nobody", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xidsc25T8aMTRh79tyg1BKgC4o6.jpg", "poster_path": "/qSxCBqF4KrDHm5yU3QQBvO0S82V.jpg", "id": 161767, "name": "Nobody Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0070215", "adult": false, "backdrop_path": "/khIbImstNPb0ABMONVMudksE7Yo.jpg", "production_companies": [{"name": "Rafran Cinematografica", "id": 218}, {"name": "Les Films Jacques Leitienne", "id": 1639}, {"name": "Alcinter", "id": 12726}, {"name": "Rialto Film Preben-Philipsen", "id": 3602}], "release_date": "1973-12-19", "popularity": 0.658821034715933, "original_title": "Il mio nome \u00e8 nessuno", "budget": 0, "cast": [{"name": "Terence Hill", "character": "Nobody", "id": 15140, "credit_id": "52fe44fcc3a36847f80b5da1", "cast_id": 1, "profile_path": "/ayNVIUCB3b0Hj88a5i9qH88Df11.jpg", "order": 0}, {"name": "Henry Fonda", "character": "Jack Beauregard", "id": 4958, "credit_id": "52fe44fcc3a36847f80b5da5", "cast_id": 2, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 1}, {"name": "Jean Martin", "character": "Sullivan", "id": 39953, "credit_id": "52fe44fcc3a36847f80b5da9", "cast_id": 3, "profile_path": "/3sB4L0gSQvcTSONksUQI4qiqGyT.jpg", "order": 2}, {"name": "R. G. Armstrong", "character": "Honest John", "id": 1107, "credit_id": "52fe44fcc3a36847f80b5dad", "cast_id": 4, "profile_path": "/lRGoPhebBnPFzZQvcmnUokjGL7L.jpg", "order": 3}, {"name": "Karl Braun", "character": "Jim", "id": 108279, "credit_id": "52fe44fcc3a36847f80b5de7", "cast_id": 15, "profile_path": "/5kPDirqUOKwKCaW6Bf2O6Bfw3Vm.jpg", "order": 4}, {"name": "Leo Gordon", "character": "Red", "id": 95082, "credit_id": "52fe44fcc3a36847f80b5deb", "cast_id": 16, "profile_path": "/pd3Nbf2GqNW2800GB4IpTEHkSDf.jpg", "order": 5}, {"name": "Steve Kanaly", "character": "False barber", "id": 41280, "credit_id": "52fe44fcc3a36847f80b5def", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Geoffrey Lewis", "character": "Leader of the Wild Bunch", "id": 18071, "credit_id": "52fe44fcc3a36847f80b5df3", "cast_id": 18, "profile_path": "/w6uRlwTKRpXELfVwKHC9yWEDqxy.jpg", "order": 7}, {"name": "Neil Summers", "character": "Squirrel", "id": 389763, "credit_id": "52fe44fcc3a36847f80b5df7", "cast_id": 19, "profile_path": "/k2pExO7H0zZu6HrOnOlP1XzhIPl.jpg", "order": 8}, {"name": "Piero Lulli", "character": "Sheriff", "id": 45035, "credit_id": "52fe44fcc3a36847f80b5dfb", "cast_id": 20, "profile_path": "/kd84hadpbKoC3Qty7WKQEvgpN7j.jpg", "order": 9}, {"name": "Mario Brega", "character": "Pedro", "id": 16318, "credit_id": "52fe44fcc3a36847f80b5dff", "cast_id": 21, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 10}, {"name": "Marc Mazza", "character": "Don John (as Mark Mazza)", "id": 39461, "credit_id": "52fe44fcc3a36847f80b5e03", "cast_id": 22, "profile_path": "/H9NjxEGl1vCQbkhpjKWMX8lnT6.jpg", "order": 11}, {"name": "Benito Stefanelli", "character": "Porteley", "id": 4661, "credit_id": "52fe44fcc3a36847f80b5e07", "cast_id": 23, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 12}, {"name": "Alexander Allerson", "character": "Rex", "id": 18840, "credit_id": "52fe44fcc3a36847f80b5e0b", "cast_id": 24, "profile_path": "/eOlCATYhG7NQfPffpgFdln9UeMe.jpg", "order": 13}, {"name": "Rainer Peets", "character": "Big Gun (as Remus Peets)", "id": 558739, "credit_id": "52fe44fcc3a36847f80b5e0f", "cast_id": 25, "profile_path": "/eGUtz0aMc4KXqGeukGUY3lLA7VV.jpg", "order": 14}, {"name": "Maurice Kowalewski", "character": "New Orleans street photographer", "id": 1152827, "credit_id": "52fe44fcc3a36847f80b5e13", "cast_id": 26, "profile_path": "/aLtAGGPm8bemPlSIUwhMwdAo1B8.jpg", "order": 15}], "directors": [{"name": "Tonino Valerii", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5db3", "profile_path": null, "id": 57639}], "vote_average": 7.0, "runtime": 117}, "9475": {"poster_path": "/22m6tUzIYxXs5cjyl7KJJPULlMT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 134095253, "overview": "Charlie Simms (Chris O'Donnell) is a student at a private preparatory school who comes from a poor family. To earn the money for his flight home to Gresham, Oregon for Christmas, Charlie takes a job over Thanksgiving looking after retired U.S. Army officer Lieutenant Colonel Frank Slade (Al Pacino), a cantankerous middle-aged man who lives with his niece and her family.", "video": false, "id": 9475, "genres": [{"id": 18, "name": "Drama"}], "title": "Scent of a Woman", "tagline": "Col. Frank Slade has a very special plan for the weekend. It involves travel, women, good food, fine wine, the tango, chauffeured limousines and a loaded forty-five. And he's bringing Charlie along for the ride.", "vote_count": 246, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105323", "adult": false, "backdrop_path": "/xDw3Yz797LSBGSxSrzBFEsP3Px4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "City Light Films", "id": 136}], "release_date": "1992-12-23", "popularity": 0.89950466071649, "original_title": "Scent of a Woman", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Lieutenant Colonel Frank Slade", "id": 1158, "credit_id": "52fe44fcc3a36847f80b5e9b", "cast_id": 18, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Chris O'Donnell", "character": "Charlie Simms", "id": 5577, "credit_id": "52fe44fcc3a36847f80b5e43", "cast_id": 2, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 1}, {"name": "James Rebhorn", "character": "Mr. Trask", "id": 8986, "credit_id": "52fe44fcc3a36847f80b5e47", "cast_id": 3, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 2}, {"name": "Gabrielle Anwar", "character": "Donna", "id": 5503, "credit_id": "52fe44fcc3a36847f80b5e4b", "cast_id": 4, "profile_path": "/khnEDczzSy6UcbnqZ6Sb4lWxnkE.jpg", "order": 3}, {"name": "Philip Seymour Hoffman", "character": "George Willis, Jr.", "id": 1233, "credit_id": "52fe44fcc3a36847f80b5e4f", "cast_id": 5, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 4}, {"name": "Richard Venture", "character": "W.R. Slade", "id": 88748, "credit_id": "52fe44fcc3a36847f80b5e9f", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Bradley Whitford", "character": "Randy", "id": 11367, "credit_id": "52fe44fcc3a36847f80b5ea3", "cast_id": 20, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "June Squibb", "character": "Mrs. Hunsaker", "id": 35515, "credit_id": "52fe44fcc3a36847f80b5ea7", "cast_id": 21, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 7}, {"name": "Frances Conroy", "character": "Christine Downes", "id": 4432, "credit_id": "52fe44fcc3a36847f80b5eab", "cast_id": 22, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 8}], "directors": [{"name": "Martin Brest", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5e55", "profile_path": null, "id": 769}], "vote_average": 6.9, "runtime": 157}, "9476": {"poster_path": "/1ZUpkMivvlF0ZoyXQzHF4El3izv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117487473, "overview": "William Thatcher, a peasant, is sent to apprentice with a Knight named Hector as a young boy. Urged by his father to \"change his Stars\", he assumes Sir Hector's place in a tournament when Hector dies in the middle of it. He wins. With the other apprentices, he trains and assumes the title of Sir Ulrich von Lichtenstein.", "video": false, "id": 9476, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Knight's Tale", "tagline": "He Will Rock You", "vote_count": 244, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0183790", "adult": false, "backdrop_path": "/xVmpVd5C7RDXVXFBDGcnqQzmTBy.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2001-04-24", "popularity": 0.502056394067301, "original_title": "A Knight's Tale", "budget": 65000000, "cast": [{"name": "Heath Ledger", "character": "Sir William Thatcher / Sir Ulrich von Lichtenstein of Gelderland", "id": 1810, "credit_id": "52fe44fcc3a36847f80b5edb", "cast_id": 1, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Rufus Sewell", "character": "Count Adhemar of Anjou", "id": 17328, "credit_id": "52fe44fcc3a36847f80b5edf", "cast_id": 2, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 1}, {"name": "Shannyn Sossamon", "character": "Lady Jocelyn", "id": 27855, "credit_id": "52fe44fcc3a36847f80b5ee3", "cast_id": 3, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Geoffrey Chaucer", "id": 6162, "credit_id": "52fe44fcc3a36847f80b5ee7", "cast_id": 4, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Laura Fraser", "character": "Kate", "id": 42279, "credit_id": "52fe44fcc3a36847f80b5f3f", "cast_id": 19, "profile_path": "/umgqZQNAqE78jFfg1H1nPtaO41Y.jpg", "order": 4}, {"name": "Mark Addy", "character": "Roland", "id": 13633, "credit_id": "52fe44fcc3a36847f80b5f43", "cast_id": 20, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 5}, {"name": "Alan Tudyk", "character": "Wat", "id": 21088, "credit_id": "52fe44fcc3a36847f80b5f47", "cast_id": 21, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 6}, {"name": "James Purefoy", "character": "Edward, the Black Prince of Wales/Sir Thomas Colville", "id": 17648, "credit_id": "5317903ec3a3685c4a000189", "cast_id": 22, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 7}, {"name": "B\u00e9r\u00e9nice Bejo", "character": "Christiana", "id": 82923, "credit_id": "5457ca410e0a2648d6009ea1", "cast_id": 23, "profile_path": "/lczQWfdK8GrdcUKc6TkSD96Sr3r.jpg", "order": 8}], "directors": [{"name": "Brian Helgeland", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5eed", "profile_path": "/oJrbZ6efL7CalCeypRyusRbHzPF.jpg", "id": 4723}], "vote_average": 6.3, "runtime": 132}, "9477": {"poster_path": "/5midPf1b8pI5xlJsNn4eQLwPNtA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 203567857, "overview": "This 2004 version of the Arthurian legend is different from the traditional, as it is loosely based on the \"Sarmatian hypothesis\", formulated by C. Scott Littleton and Ann C. Thomas in 1978, which holds that the Arthurian legend has a historical nucleus in the Sarmatian heavy cavalry troops stationed in Britain, and that the Roman-British military commander Lucius Artorius Castus is the historical person behind the legend.", "video": false, "id": 9477, "genres": [{"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "King Arthur", "tagline": "Rule Your Fate.", "vote_count": 213, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cy", "name": "Cymraeg"}, {"iso_639_1": "gd", "name": ""}, {"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0349683", "adult": false, "backdrop_path": "/svRdvBAxZe8URdfHfYq16GOYSVJ.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Green Hills Productions", "id": 19098}, {"name": "World 2000 Entertainment", "id": 7692}], "release_date": "2004-07-07", "popularity": 0.615273261839092, "original_title": "King Arthur", "budget": 120000000, "cast": [{"name": "Clive Owen", "character": "Arthur", "id": 2296, "credit_id": "52fe44fcc3a36847f80b5f81", "cast_id": 1, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Ioan Gruffudd", "character": "Lancelot", "id": 65524, "credit_id": "52fe44fcc3a36847f80b5f85", "cast_id": 2, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Guinevere", "id": 116, "credit_id": "52fe44fcc3a36847f80b5f91", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Mads Mikkelsen", "character": "Tristan", "id": 1019, "credit_id": "52fe44fcc3a36847f80b5f89", "cast_id": 3, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 3}, {"name": "Joel Edgerton", "character": "Gawain", "id": 33192, "credit_id": "52fe44fcc3a36847f80b5f8d", "cast_id": 4, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 4}, {"name": "Hugh Dancy", "character": "Galahad", "id": 12791, "credit_id": "52fe44fcc3a36847f80b5f99", "cast_id": 7, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 5}, {"name": "Ray Winstone", "character": "Bors", "id": 5538, "credit_id": "52fe44fcc3a36847f80b5f9d", "cast_id": 8, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 6}, {"name": "Stephen Dillane", "character": "Merlin", "id": 8435, "credit_id": "52fe44fcc3a36847f80b5f95", "cast_id": 6, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 7}, {"name": "Ray Stevenson", "character": "Dagonet", "id": 56614, "credit_id": "52fe44fcc3a36847f80b5fa1", "cast_id": 9, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 8}, {"name": "Til Schweiger", "character": "Cynric", "id": 1844, "credit_id": "52fe44fcc3a36847f80b5fa5", "cast_id": 10, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 9}, {"name": "Stellan Skarsg\u00e5rd", "character": "Cerdic", "id": 1640, "credit_id": "52fe44fcc3a36847f80b5feb", "cast_id": 22, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 10}, {"name": "Sean Gilder", "character": "Jols", "id": 77292, "credit_id": "52fe44fcc3a36847f80b5fef", "cast_id": 23, "profile_path": "/3k9U78b90A93O5KtbSSb4QDOJ19.jpg", "order": 11}, {"name": "Ken Stott", "character": "Marius Honorius", "id": 25136, "credit_id": "52fe44fcc3a36847f80b5ffb", "cast_id": 26, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 14}, {"name": "Charlie Creed-Miles", "character": "Ganis", "id": 8397, "credit_id": "5404e479c3a368068c00706d", "cast_id": 30, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 15}, {"name": "David Murray", "character": "Merlin's Lieutenant", "id": 93211, "credit_id": "5404e491c3a3684366007304", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Ned Dennehy", "character": "Mental Monk", "id": 63362, "credit_id": "5404e4a4c3a3682d98005935", "cast_id": 32, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 17}, {"name": "Phelim Drew", "character": "Obnoxius Monk", "id": 559208, "credit_id": "5404e4bec3a3684372006ff7", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Des Braiden", "character": "Third Monk", "id": 946148, "credit_id": "5404e4d0c3a3684372006ff9", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Bosco Hogan", "character": "Bishop Decoy", "id": 33401, "credit_id": "5404e4e5c3a36816af002517", "cast_id": 35, "profile_path": "/Acjsa8CCIIQNTaoWyUj9fhTOt3o.jpg", "order": 20}, {"name": "David Wilmot", "character": "Woad Killed by Lancelot", "id": 73287, "credit_id": "5404e501c3a3682d9800593f", "cast_id": 36, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 21}, {"name": "Lochlainn O'Mearain", "character": "Roman Commander", "id": 195559, "credit_id": "5404e514c3a368068c007074", "cast_id": 37, "profile_path": null, "order": 22}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5fab", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.1, "runtime": 126}, "9479": {"poster_path": "/6oxkO1VgKCq74fNILKAg6t2dVEt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75634409, "overview": "Tired of scaring humans every October 31 with the same old bag of tricks, Jack Skellington, the spindly king of Halloween Town, kidnaps Santa Claus and plans to deliver shrunken heads and other ghoulish gifts to children on Christmas morning. But as Christmas approaches, Jack's rag-doll girlfriend, Sally, tries to foil his misguided plans.", "video": false, "id": 9479, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Nightmare Before Christmas", "tagline": "A ghoulish tale with wicked humour & stunning animation.", "vote_count": 557, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107688", "adult": false, "backdrop_path": "/mARBTSIfj6AfTPlZVqRONh9KfYz.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Tim Burton Productions", "id": 8601}, {"name": "Skellington Productions Inc.", "id": 8835}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1993-10-09", "popularity": 1.2242077992167, "original_title": "The Nightmare Before Christmas", "budget": 18000000, "cast": [{"name": "Danny Elfman", "character": "Jack Skellington (singing) / Barrel / Clown with the Tear away Face (voice)", "id": 531, "credit_id": "52fe44fdc3a36847f80b6073", "cast_id": 1, "profile_path": "/nBx84zlelMMlbVvkBQHyfF7eCov.jpg", "order": 0}, {"name": "Chris Sarandon", "character": "Jack Skellington (voice)", "id": 14541, "credit_id": "52fe44fdc3a36847f80b6077", "cast_id": 2, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Sally / Shock (voice)", "id": 11514, "credit_id": "52fe44fdc3a36847f80b607b", "cast_id": 3, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "William Hickey", "character": "Dr. Finkelstein (voice)", "id": 21282, "credit_id": "52fe44fdc3a36847f80b607f", "cast_id": 4, "profile_path": "/zr7UJxP5MdEksn6ZaxeHbwr6o5Z.jpg", "order": 3}, {"name": "Glenn Shadix", "character": "Mayor (voice)", "id": 13243, "credit_id": "52fe44fdc3a36847f80b60bf", "cast_id": 16, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 4}, {"name": "Paul Reubens", "character": "Lock (voice)", "id": 5129, "credit_id": "52fe44fdc3a36847f80b60c3", "cast_id": 17, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 5}], "directors": [{"name": "Henry Selick", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b60bb", "profile_path": "/kiTzGq0peOTsjQnzQI3ttwqqsOv.jpg", "id": 57646}], "vote_average": 7.2, "runtime": 76}, "9480": {"poster_path": "/dNVEqwgIdrwWQL3zXI5mQG60oM5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 179179718, "overview": "He dwells in a world of external night, but the blackness is filled with sounds and scents, tastes and textures that most cannot perceive. Although attorney Matt Murdock is blind, his other four senses function with superhuman sharpness. By day, Murdock represents the downtrodden. At night he is Daredevil, a masked vigilante stalking the dark streets of the city, a relentless avenger of justice.", "video": false, "id": 9480, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Daredevil", "tagline": "A Guardian Devil", "vote_count": 432, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt0287978", "adult": false, "backdrop_path": "/kUrLJlPCoRvCexYpEaXnMZ46eiT.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2003-02-14", "popularity": 1.40857291078136, "original_title": "Daredevil", "budget": 78000000, "cast": [{"name": "Ben Affleck", "character": "Matt Murdock / Daredevil", "id": 880, "credit_id": "52fe44fdc3a36847f80b60fb", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Elektra Natchios", "id": 9278, "credit_id": "52fe44fdc3a36847f80b60ff", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Colin Farrell", "character": "Bullseye", "id": 72466, "credit_id": "52fe44fdc3a36847f80b6103", "cast_id": 3, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 2}, {"name": "Michael Clarke Duncan", "character": "Wilson Fisk / The Kingpin", "id": 61981, "credit_id": "52fe44fdc3a36847f80b6107", "cast_id": 4, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 3}, {"name": "Ellen Pompeo", "character": "Karen Page", "id": 9280, "credit_id": "52fe44fdc3a36847f80b610b", "cast_id": 5, "profile_path": "/iX5HdQdWRPLf5Fx87QDNCdehmI9.jpg", "order": 4}, {"name": "Jon Favreau", "character": "Franklin 'Foggy' Nelson", "id": 15277, "credit_id": "52fe44fdc3a36847f80b610f", "cast_id": 6, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 5}, {"name": "Scott Terra", "character": "Young Matt", "id": 56153, "credit_id": "52fe44fdc3a36847f80b6113", "cast_id": 7, "profile_path": "/4mXaoogOk48PNVqcCjkXAL7zea8.jpg", "order": 6}, {"name": "Joe Pantoliano", "character": "Ben Urich", "id": 532, "credit_id": "52fe44fdc3a36847f80b6159", "cast_id": 19, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 7}, {"name": "Erick Avari", "character": "Nikolas Natchios", "id": 18917, "credit_id": "52fe44fdc3a36847f80b615d", "cast_id": 20, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 8}, {"name": "David Keith", "character": "Jack Murdock", "id": 18181, "credit_id": "52fe44fdc3a36847f80b6161", "cast_id": 21, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 9}, {"name": "Stan Lee", "character": "Old Man at Crossing", "id": 7624, "credit_id": "52fe44fdc3a36847f80b6177", "cast_id": 25, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 10}, {"name": "Leland Orser", "character": "Wesley Owen Welch", "id": 2221, "credit_id": "54bf86d99251416eae00802a", "cast_id": 125, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 11}, {"name": "Lennie Loftin", "character": "Nick Manolis", "id": 42200, "credit_id": "54bf87079251416e9b008a48", "cast_id": 126, "profile_path": "/n5k9l49SlCgEyfU6ggUl1QIrZe6.jpg", "order": 12}, {"name": "Derrick O'Connor", "character": "Father Everett", "id": 14325, "credit_id": "54bf8742c3a368389c008e66", "cast_id": 127, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 13}, {"name": "Paul Ben-Victor", "character": "Jose Quesada", "id": 85142, "credit_id": "54bf87639251416eae008031", "cast_id": 128, "profile_path": "/350FIsnn84w2RLAhNPRtzeaUqLO.jpg", "order": 14}, {"name": "Casey McCarthy", "character": "Angela Sutton", "id": 1416443, "credit_id": "54bf87b7c3a3686c6100e78e", "cast_id": 129, "profile_path": null, "order": 15}, {"name": "Josie DiVincenzo", "character": "Josie", "id": 1416444, "credit_id": "54bf87d2c3a368389c008e78", "cast_id": 130, "profile_path": null, "order": 16}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b6119", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.1, "runtime": 103}, "9481": {"poster_path": "/dCTuPRukbDs3mOSx9SD0PCMRd2g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 151493655, "overview": "Rookie cop Amelia Donaghy reluctantly teams with Lincoln Rhyme -- formerly the department's top homicide detective but now paralyzed as a result of a spinal injury -- to catch a grisly serial killer dubbed The Bone Collector. The murderer's special signature is to leave tantalizing clues based on the grim remains of his crimes.", "video": false, "id": 9481, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Bone Collector", "tagline": "Serial killer vs. forensic genius", "vote_count": 199, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145681", "adult": false, "backdrop_path": "/hLxwlRHk1vYvfyftlpOSsHBxL88.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Universal Pictures", "id": 33}], "release_date": "1999-11-05", "popularity": 1.47992470872722, "original_title": "The Bone Collector", "budget": 73000000, "cast": [{"name": "Denzel Washington", "character": "Lincoln Rhyme", "id": 5292, "credit_id": "52fe44fdc3a36847f80b61bb", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Amelia Donaghy", "id": 11701, "credit_id": "52fe44fdc3a36847f80b6235", "cast_id": 27, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Queen Latifah", "character": "Thelma", "id": 15758, "credit_id": "52fe44fdc3a36847f80b61bf", "cast_id": 3, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 2}, {"name": "Michael Rooker", "character": "Captain Howard Cheney", "id": 12132, "credit_id": "52fe44fdc3a36847f80b61c3", "cast_id": 4, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 3}, {"name": "Michael McGlone", "character": "Detective Kenny Solomon", "id": 69298, "credit_id": "52fe44fdc3a36847f80b6209", "cast_id": 16, "profile_path": "/uoA2xmyTf4bQLaD9B5WWJzWwbr3.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Eddie Ortiz (as Luis Guzman)", "id": 40481, "credit_id": "52fe44fdc3a36847f80b620d", "cast_id": 17, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Leland Orser", "character": "Richard Thompson", "id": 2221, "credit_id": "52fe44fdc3a36847f80b6211", "cast_id": 18, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 6}, {"name": "John Benjamin Hickey", "character": "Dr. Barry Lehman", "id": 21179, "credit_id": "52fe44fdc3a36847f80b6215", "cast_id": 19, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 7}, {"name": "Bobby Cannavale", "character": "Steve, Amelia's Boyfriend", "id": 21127, "credit_id": "52fe44fdc3a36847f80b6219", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 8}, {"name": "Ed O'Neill", "character": "Detective Paulie Sellitto", "id": 18977, "credit_id": "52fe44fdc3a36847f80b621d", "cast_id": 21, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 9}, {"name": "Richard Zeman", "character": "Lieutenant Carl Hanson", "id": 129419, "credit_id": "52fe44fdc3a36847f80b6221", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Olivia Birkelund", "character": "Lindsay Rubin", "id": 129420, "credit_id": "52fe44fdc3a36847f80b6225", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Gary Swanson", "character": "Alan Rubin", "id": 129421, "credit_id": "52fe44fdc3a36847f80b6229", "cast_id": 24, "profile_path": "/f0aPYfFmNSOuvS9zi6KgK1SfyEu.jpg", "order": 12}, {"name": "James Bulleit", "character": "Train Engineer (as Jim Bulleit)", "id": 63342, "credit_id": "52fe44fdc3a36847f80b622d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Frank Fontaine", "character": "Grandfather", "id": 60910, "credit_id": "52fe44fdc3a36847f80b6231", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Zena Grey", "character": "Granddaughter", "id": 62760, "credit_id": "53a59e52c3a3687a340014fe", "cast_id": 44, "profile_path": "/wzRRQ8vifE4OFQTS6Hh3S6ZXcT9.jpg", "order": 15}, {"name": "Desmond Campbell", "character": "Taxi Inspector", "id": 1219164, "credit_id": "53a59ed7c3a3687a34001505", "cast_id": 45, "profile_path": null, "order": 16}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b61c9", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.3, "runtime": 118}, "9482": {"poster_path": "/r17S4XlQ3Jq5U1KRovFUwU8P4aG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a dystopian future, Dredd, the most famous judge (a cop with instant field judiciary powers) is convicted for a crime he did not commit while his murderous counterpart escapes.", "video": false, "id": 9482, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "Judge Dredd", "tagline": "In the future, one man is the law.", "vote_count": 164, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113492", "adult": false, "backdrop_path": "/mSZADd1N0wWkkNJmwcpYAq93bke.jpg", "production_companies": [{"name": "Cinergi Pictures Entertainment", "id": 1504}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1995-06-30", "popularity": 0.682635451916811, "original_title": "Judge Dredd", "budget": 90000000, "cast": [{"name": "Sylvester Stallone", "character": "Judge Joseph Dredd", "id": 16483, "credit_id": "52fe44fdc3a36847f80b629f", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Diane Lane", "character": "Judge Hershey", "id": 2882, "credit_id": "52fe44fdc3a36847f80b62a3", "cast_id": 2, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 1}, {"name": "Armand Assante", "character": "Rico", "id": 23346, "credit_id": "52fe44fdc3a36847f80b62a7", "cast_id": 3, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 2}, {"name": "Rob Schneider", "character": "Herman 'Fergee' Ferguson", "id": 60949, "credit_id": "52fe44fdc3a36847f80b62ab", "cast_id": 4, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 3}, {"name": "J\u00fcrgen Prochnow", "character": "Judge Griffin", "id": 920, "credit_id": "52fe44fdc3a36847f80b62af", "cast_id": 5, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 4}, {"name": "Max von Sydow", "character": "Chief Justice Fargo", "id": 2201, "credit_id": "52fe44fdc3a36847f80b62b3", "cast_id": 6, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 5}, {"name": "Christopher Adamson", "character": "Mean Machine", "id": 64102, "credit_id": "52fe44fdc3a36847f80b630b", "cast_id": 22, "profile_path": "/8yLz3515hR5RgjeH0kbGcjSYylO.jpg", "order": 6}, {"name": "Joanna Miles", "character": "Judge Evelyn McGruder", "id": 106765, "credit_id": "52fe44fdc3a36847f80b6333", "cast_id": 29, "profile_path": "/pLxo4VRibbJWjWkjuudGQPYWPSX.jpg", "order": 7}, {"name": "Joan Chen", "character": "Dr. Ilsa Hayden", "id": 6720, "credit_id": "52fe44fdc3a36847f80b6337", "cast_id": 30, "profile_path": "/ekWS5bAB0kv4RColHqYaUAoXz0I.jpg", "order": 8}, {"name": "Balthazar Getty", "character": "Cadet Nathan Olmeyer", "id": 9296, "credit_id": "52fe44fdc3a36847f80b633b", "cast_id": 31, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 9}, {"name": "Maurice Roeves", "character": "Warden Miller", "id": 54, "credit_id": "52fe44fdc3a36847f80b633f", "cast_id": 32, "profile_path": "/qXYjnIHClkey4QQxPG5D5JD7Y74.jpg", "order": 10}, {"name": "Ian Dury", "character": "Geiger", "id": 113908, "credit_id": "52fe44fdc3a36847f80b6343", "cast_id": 33, "profile_path": "/au8MMm9IDpRw7IrBlxlVfpX8MYm.jpg", "order": 11}, {"name": "Ewen Bremner", "character": "Junior Angel", "id": 1125, "credit_id": "52fe44fdc3a36847f80b6347", "cast_id": 34, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 12}, {"name": "Peter Marinker", "character": "Judge Carlos Esposito", "id": 93477, "credit_id": "52fe44fdc3a36847f80b634b", "cast_id": 35, "profile_path": "/yY3zB4Jof1tfDcr4hJLqdHeEQZK.jpg", "order": 13}, {"name": "Martin McDougall", "character": "Twist", "id": 36901, "credit_id": "52fe44fdc3a36847f80b634f", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Danny Cannon", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b62b9", "profile_path": "/9E4Km6y1O0bK3dUSds3smzu20KI.jpg", "id": 33279}], "vote_average": 5.5, "runtime": 96}, "132363": {"poster_path": "/hUjEYTN5NuK8kYRQxngS7itpBQC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115922175, "overview": "A look at the life of Cecil Gaines who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.", "video": false, "id": 132363, "genres": [{"id": 18, "name": "Drama"}], "title": "The Butler", "tagline": "One quiet voice can ignite a revolution", "vote_count": 337, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1327773", "adult": false, "backdrop_path": "/zZggWJSG18wPIOrZOgV5LI12LMi.jpg", "production_companies": [{"name": "Follow Through Productions", "id": 18919}, {"name": "Salamander Pictures", "id": 18920}, {"name": "Laura Ziskin Productions", "id": 326}, {"name": "Lee Daniels Entertainment", "id": 695}, {"name": "Pam Williams Productions", "id": 18921}, {"name": "Windy Hill Pictures", "id": 18922}], "release_date": "2013-08-16", "popularity": 1.53721569269981, "original_title": "The Butler", "budget": 25000000, "cast": [{"name": "Forest Whitaker", "character": "Cecil Gaines", "id": 2178, "credit_id": "52fe4b93c3a368484e18facf", "cast_id": 17, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 0}, {"name": "David Banner", "character": "Earl Gaines", "id": 53258, "credit_id": "52fe4b93c3a368484e18faed", "cast_id": 24, "profile_path": "/v9KDy0PrFdkvYvDtHacpgnDwh73.jpg", "order": 1}, {"name": "Michael Rainey Jr.", "character": "Cecil Gaines (8)", "id": 548375, "credit_id": "52fe4b93c3a368484e18faf5", "cast_id": 26, "profile_path": "/q1h9IQpyxWWbexEMC2AlfBpFMu.jpg", "order": 2}, {"name": "LaJessie Smith", "character": "Abraham", "id": 1199000, "credit_id": "52fe4b93c3a368484e18fb01", "cast_id": 29, "profile_path": "/sDnc8lZIs0KZ7xL3yQayAt2k5Ag.jpg", "order": 3}, {"name": "Mariah Carey", "character": "Hattie Pearl", "id": 66586, "credit_id": "52fe4b93c3a368484e18fadf", "cast_id": 21, "profile_path": "/qU9qrbTkLwsyFL9mb6RUHxKmpp.jpg", "order": 4}, {"name": "Alex Pettyfer", "character": "Thomas Westfall", "id": 61363, "credit_id": "52fe4b93c3a368484e18faab", "cast_id": 8, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 5}, {"name": "Vanessa Redgrave", "character": "Annabeth Westfall", "id": 13333, "credit_id": "52fe4b93c3a368484e18faf1", "cast_id": 25, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 6}, {"name": "Ami Ameen", "character": "Cecil Gaines (15)", "id": 1198999, "credit_id": "52fe4b93c3a368484e18fafd", "cast_id": 28, "profile_path": "/scl6VhPUQwVBosyQq1b51Fnzuox.jpg", "order": 7}, {"name": "Clarence Williams III", "character": "Maynard", "id": 15864, "credit_id": "52fe4b93c3a368484e18fb25", "cast_id": 36, "profile_path": "/hDjTPLvUNDnoA6rHDX5JrftAWZa.jpg", "order": 8}, {"name": "John P. Fertitta", "character": "Mr. Jenkins", "id": 1190851, "credit_id": "52fe4b93c3a368484e18fb29", "cast_id": 37, "profile_path": "/ym9cir7KWJcdq8otWzaPC8bg10l.jpg", "order": 9}, {"name": "Jim Gleason", "character": "R.D. Warner", "id": 168942, "credit_id": "52fe4b93c3a368484e18fb2d", "cast_id": 38, "profile_path": "/yhn0wL58Dt0HGB5O2m9RoWXbK46.jpg", "order": 10}, {"name": "Oprah Winfrey", "character": "Gloria Gaines", "id": 13309, "credit_id": "52fe4b93c3a368484e18fae3", "cast_id": 22, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 11}, {"name": "John Cusack", "character": "Richard Nixon", "id": 3036, "credit_id": "52fe4b93c3a368484e18faaf", "cast_id": 9, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 12}, {"name": "Robin Williams", "character": "Dwight Eisenhower", "id": 2157, "credit_id": "52fe4b93c3a368484e18fab3", "cast_id": 10, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 13}, {"name": "James Marsden", "character": "John F. Kennedy", "id": 11006, "credit_id": "52fe4b93c3a368484e18fab7", "cast_id": 11, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 14}, {"name": "Alan Rickman", "character": "Ronald Reagan", "id": 4566, "credit_id": "52fe4b93c3a368484e18fabb", "cast_id": 12, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 15}, {"name": "Minka Kelly", "character": "Jackie Kennedy", "id": 96625, "credit_id": "52fe4b93c3a368484e18fabf", "cast_id": 13, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 16}, {"name": "Liev Schreiber", "character": "Lyndon B. Johnson", "id": 23626, "credit_id": "52fe4b93c3a368484e18fac3", "cast_id": 14, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 17}, {"name": "Jesse Williams", "character": "Rev. James Lawson", "id": 210695, "credit_id": "52fe4b93c3a368484e18fac7", "cast_id": 15, "profile_path": "/9nOsvWaXwKzHVeSbb7N6YzhAzty.jpg", "order": 18}, {"name": "Lenny Kravitz", "character": "James Holloway", "id": 77069, "credit_id": "52fe4b93c3a368484e18facb", "cast_id": 16, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 19}, {"name": "Cuba Gooding Jr.", "character": "Carter Wilson", "id": 9777, "credit_id": "52fe4b93c3a368484e18fad3", "cast_id": 18, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 20}, {"name": "Terrence Howard", "character": "Howard", "id": 18288, "credit_id": "52fe4b93c3a368484e18fad7", "cast_id": 19, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 21}, {"name": "Jane Fonda", "character": "Nancy Reagan", "id": 6352, "credit_id": "52fe4b93c3a368484e18fadb", "cast_id": 20, "profile_path": "/t4kIxZrAhxnMyQP8BZFmpPAot0z.jpg", "order": 22}, {"name": "David Oyelowo", "character": "Louis Gaines", "id": 35013, "credit_id": "52fe4b93c3a368484e18faf9", "cast_id": 27, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 23}, {"name": "Yaya DaCosta", "character": "Carol Hammie", "id": 60033, "credit_id": "52fe4b93c3a368484e18fb05", "cast_id": 30, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 24}, {"name": "Stephen Rider", "character": "Admiral Rochon", "id": 936403, "credit_id": "54a68a6b92514117dd0097e3", "cast_id": 103, "profile_path": "/oS4eTt8qKF9320mGceFgArbFO0v.jpg", "order": 25}, {"name": "Nealla Gordon", "character": "Senator Kassebaum", "id": 109568, "credit_id": "54a68a99925141236b00df1b", "cast_id": 104, "profile_path": "/m1e1x5RBU0Ck9BnTj3gwPkLamXI.jpg", "order": 26}, {"name": "Rusty Robertson", "character": "Senator Robertson", "id": 1407751, "credit_id": "54a68ab69251411d530113b8", "cast_id": 105, "profile_path": null, "order": 27}], "directors": [{"name": "Lee Daniels", "department": "Directing", "job": "Director", "credit_id": "52fe4b92c3a368484e18fa8f", "profile_path": "/xwsuwr435maV9wuo3iWXWVzEIMH.jpg", "id": 20019}], "vote_average": 7.2, "runtime": 132}, "9486": {"poster_path": "/oSsisFLSeRJJaTX5l13jMqDKpwH.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 160583018, "overview": "Rowan plays the eponymous lead character in a spoof spy thriller. During the course of the story we follow our hero as he attempts to single-handedly save the country from falling into the hands of a despot.", "video": false, "id": 9486, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Johnny English", "tagline": "He knows no fear, he knows no danger, he knows nothing.", "vote_count": 232, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pMHHhMKu2iQichL6Eym4ApCvIEB.jpg", "poster_path": "/4RwgzSS4qnqKpTpCtrKQo1cdQXD.jpg", "id": 86117, "name": "Johnny English Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0274166", "adult": false, "backdrop_path": "/wNEsGAHws1UATmZfnjNBRi2Ln5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}], "release_date": "2003-04-06", "popularity": 0.723725180223794, "original_title": "Johnny English", "budget": 40000000, "cast": [{"name": "Rowan Atkinson", "character": "Johnny English", "id": 10730, "credit_id": "52fe44fdc3a36847f80b6409", "cast_id": 1, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "John Malkovich", "character": "Pascal Sauvage, the Greedy Frenchman", "id": 6949, "credit_id": "52fe44fdc3a36847f80b641d", "cast_id": 6, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Natalie Imbruglia", "character": "Lorna Campbell", "id": 57669, "credit_id": "52fe44fdc3a36847f80b6419", "cast_id": 5, "profile_path": "/aeCjoPeYEGDpmOnhtwwgTPEtC4M.jpg", "order": 2}, {"name": "Tasha de Vasconcelos", "character": "Countess Alexandra - Exotic Woman", "id": 47931, "credit_id": "52fe44fdc3a36847f80b640d", "cast_id": 2, "profile_path": "/u9OuPzgWZatsWi0ocRmBCsSfthq.jpg", "order": 3}, {"name": "Ben Miller", "character": "Bough, English's Sidekick", "id": 18025, "credit_id": "52fe44fdc3a36847f80b6411", "cast_id": 3, "profile_path": "/tKZaENabPtnvDyeDWZvXkz8IBQ4.jpg", "order": 4}, {"name": "Greg Wise", "character": "Agent One", "id": 16700, "credit_id": "52fe44fdc3a36847f80b6415", "cast_id": 4, "profile_path": "/A4u37pRp9MakKBhiIblXSCJEk33.jpg", "order": 5}, {"name": "Douglas McFerran", "character": "Carlos Vendetta", "id": 61540, "credit_id": "52fe44fdc3a36847f80b6463", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Steve Nicolson", "character": "Dieter Klein", "id": 55578, "credit_id": "52fe44fdc3a36847f80b6467", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Terence Harvey", "character": "Official at Funeral", "id": 25656, "credit_id": "52fe44fdc3a36847f80b646b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Kevin McNally", "character": "Prime Minister", "id": 2449, "credit_id": "52fe44fdc3a36847f80b646f", "cast_id": 21, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 9}, {"name": "Tim Pigott-Smith", "character": "Pegasus, Head of MI7", "id": 11276, "credit_id": "52fe44fdc3a36847f80b6473", "cast_id": 22, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 10}, {"name": "Nina Young", "character": "Pegasus' Secretary", "id": 58778, "credit_id": "52fe44fec3a36847f80b6477", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Rowland Davies", "character": "Sir Anthony Chevenix", "id": 131767, "credit_id": "52fe44fec3a36847f80b647b", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Philippa Fordham", "character": "Snobby Woman", "id": 131768, "credit_id": "52fe44fec3a36847f80b647f", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Tim Berrington", "character": "Roger", "id": 30444, "credit_id": "52fe44fec3a36847f80b6483", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Simon Bernstein", "character": "Assailant", "id": 131769, "credit_id": "52fe44fec3a36847f80b6487", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "Peter Howitt", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b6423", "profile_path": "/cwgHjbx5LitEns32kmdmj1diREi.jpg", "id": 7791}], "vote_average": 6.1, "runtime": 88}, "9487": {"poster_path": "/1d1q0aMWPaVdosDKvP8FWVuLtCc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 363398565, "overview": "On behalf of \"oppressed bugs everywhere,\" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.", "video": false, "id": 9487, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "A Bug's Life", "tagline": "An epic presentation of miniature proportions.", "vote_count": 599, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120623", "adult": false, "backdrop_path": "/gOvW00ZMoEiyRwXVkHPfBictPAl.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-11-25", "popularity": 2.07245290530346, "original_title": "A Bug's Life", "budget": 120000000, "cast": [{"name": "Kevin Spacey", "character": "Hopper (voice)", "id": 1979, "credit_id": "52fe44fec3a36847f80b64d1", "cast_id": 1, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Julia Louis-Dreyfus", "character": "Atta (voice)", "id": 15886, "credit_id": "52fe44fec3a36847f80b64d5", "cast_id": 2, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 1}, {"name": "Hayden Panettiere", "character": "Dot (voice)", "id": 17265, "credit_id": "52fe44fec3a36847f80b64d9", "cast_id": 3, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 2}, {"name": "Phyllis Diller", "character": "Queen (voice)", "id": 89784, "credit_id": "52fe44fec3a36847f80b6513", "cast_id": 13, "profile_path": "/5HYkLNxdzMRDRlzBEMYtAbkRgtq.jpg", "order": 3}, {"name": "Bonnie Hunt", "character": "Rosie (voice)", "id": 5149, "credit_id": "52fe44fec3a36847f80b6517", "cast_id": 14, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 4}, {"name": "Joe Ranft", "character": "Heimlich (voice)", "id": 7911, "credit_id": "52fe44fec3a36847f80b651b", "cast_id": 15, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 5}, {"name": "Jonathan Harris", "character": "Manny (voice)", "id": 123037, "credit_id": "52fe44fec3a36847f80b651f", "cast_id": 17, "profile_path": "/6dNRoOtfNHxxdHb9XvKcng9dwqz.jpg", "order": 6}, {"name": "Madeline Kahn", "character": "Gypsy Moth (voice)", "id": 29803, "credit_id": "52fe44fec3a36847f80b6523", "cast_id": 18, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 7}, {"name": "Richard Kind", "character": "Molt (voice)", "id": 21125, "credit_id": "52fe44fec3a36847f80b6527", "cast_id": 19, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 8}, {"name": "Denis Leary", "character": "Francis (voice)", "id": 5724, "credit_id": "52fe44fec3a36847f80b652b", "cast_id": 21, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 9}, {"name": "Dave Foley", "character": "Flik (voice)", "id": 21290, "credit_id": "52fe44fec3a36847f80b652f", "cast_id": 22, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 10}, {"name": "David Hyde Pierce", "character": "Slim (voice)", "id": 11076, "credit_id": "52fe44fec3a36847f80b6533", "cast_id": 23, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 11}, {"name": "Michael McShane", "character": "Tuck / Roll (voice)", "id": 8316, "credit_id": "52fe44fec3a36847f80b6537", "cast_id": 24, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 12}, {"name": "John Ratzenberger", "character": "P.T. Flea (voice)", "id": 7907, "credit_id": "52fe44fec3a36847f80b653b", "cast_id": 25, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 13}, {"name": "Brad Garrett", "character": "Dim (voice)", "id": 18, "credit_id": "52fe44fec3a36847f80b653f", "cast_id": 26, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 14}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b64df", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}, {"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b6545", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}], "vote_average": 6.5, "runtime": 95}, "9488": {"poster_path": "/p0waDhvhpIj5T2v1OmL7DeLD5oq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Exploring the further adventures of Carmen and Juni Cortez, who have now joined the family spy business as Level 2 OSS agents. Their new mission is to save the world from a mad scientist living on a volcanic island populated by an imaginative menagerie of creatures. On this bizarre island, none of the Cortez's gadgets work and they must rely on their wits--and each other--to survive and save the day.", "video": false, "id": 9488, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids 2: The Island of Lost Dreams", "tagline": "Little Spies. Big Attitudes", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0287717", "adult": false, "backdrop_path": "/6W8qisDl2MDhGpX3qqEePhfrHSb.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2002-08-07", "popularity": 0.569216438328218, "original_title": "Spy Kids 2: The Island of Lost Dreams", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Gregorio Cortez", "id": 3131, "credit_id": "52fe44fec3a36847f80b6581", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Ingrid Cortez", "id": 17832, "credit_id": "52fe44fec3a36847f80b6585", "cast_id": 2, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 1}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe44fec3a36847f80b6589", "cast_id": 3, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe44fec3a36847f80b658d", "cast_id": 4, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Romero", "id": 884, "credit_id": "52fe44fec3a36847f80b6591", "cast_id": 5, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Mike Judge", "character": "Donnagon Giggles", "id": 17403, "credit_id": "52fe44fec3a36847f80b6595", "cast_id": 6, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 5}, {"name": "Danny Trejo", "character": "Machete Cortez", "id": 11160, "credit_id": "52fe44fec3a36847f80b6599", "cast_id": 7, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 6}, {"name": "Cheech Marin", "character": "Felix Gumm", "id": 11159, "credit_id": "52fe44fec3a36847f80b659d", "cast_id": 8, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 7}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b65a3", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 4.9, "runtime": 100}, "9489": {"poster_path": "/v5o3FlY2DwKSpmIMhcttTi6KQIc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115731542, "overview": "In this valentine to modern romance, book superstore magnate Joe Fox and independent book shop owner Kathleen Kelly fall in love in the anonymity of the Internet -- both blissfully unaware that he's trying to put her out of business.", "video": false, "id": 9489, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "You've Got Mail", "tagline": "Someone you pass on the street may already be the love of your life.", "vote_count": 260, "homepage": "http://youvegotmail.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0128853", "adult": false, "backdrop_path": "/xXhYQRNPcvtNvNwY5sXH7kQD5KU.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}], "release_date": "1998-12-17", "popularity": 0.903518172522609, "original_title": "You've Got Mail", "budget": 65000000, "cast": [{"name": "Tom Hanks", "character": "Joe Fox", "id": 31, "credit_id": "52fe44fec3a36847f80b660d", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Kathleen Kelly", "id": 5344, "credit_id": "52fe44fec3a36847f80b6611", "cast_id": 2, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Katie Sagona", "character": "Young Kathleen Kelly", "id": 57676, "credit_id": "52fe44fec3a36847f80b6615", "cast_id": 3, "profile_path": "/iZNaXH5tI4A1x5eBhAE6JDHaLIe.jpg", "order": 2}, {"name": "Greg Kinnear", "character": "Frank Navasky", "id": 17141, "credit_id": "52fe44fec3a36847f80b6619", "cast_id": 4, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 3}, {"name": "Parker Posey", "character": "Patricia Eden", "id": 7489, "credit_id": "52fe44fec3a36847f80b6665", "cast_id": 17, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 4}, {"name": "Jean Stapleton", "character": "Birdie Conrad", "id": 28933, "credit_id": "52fe44fec3a36847f80b6669", "cast_id": 18, "profile_path": "/yfmkSfHShvDPVyXBoJvi2QTBboH.jpg", "order": 5}, {"name": "Steve Zahn", "character": "George Pappas", "id": 18324, "credit_id": "52fe44fec3a36847f80b666d", "cast_id": 19, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 6}, {"name": "Heather Burns", "character": "Christina Plutzker", "id": 26716, "credit_id": "52fe44fec3a36847f80b6671", "cast_id": 20, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 7}, {"name": "Dabney Coleman", "character": "Nelson Fox", "id": 12850, "credit_id": "52fe44fec3a36847f80b6675", "cast_id": 21, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 8}, {"name": "Hallee Hirsh", "character": "Annabelle Fox", "id": 43894, "credit_id": "52fe44fec3a36847f80b6679", "cast_id": 22, "profile_path": "/9uthJuAA79JK2ZaYGc3TpSI1hGB.jpg", "order": 9}, {"name": "Dave Chappelle", "character": "Kevin Jackson", "id": 4169, "credit_id": "52fe44fec3a36847f80b667d", "cast_id": 23, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 10}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b661f", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 6.1, "runtime": 119}, "9493": {"poster_path": "/i0mKmkxhLQuYBR9JPjShMbse2k6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 216600000, "overview": "Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.", "video": false, "id": 9493, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Twins", "tagline": "Only their mother can tell them apart.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096320", "adult": false, "backdrop_path": "/mc2w5z2McILMrA370edVXfX1x7H.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1988-12-08", "popularity": 0.736577431817345, "original_title": "Twins", "budget": 15000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Julius Benedict", "id": 1100, "credit_id": "52fe44ffc3a36847f80b67f3", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Vincent Benedict", "id": 518, "credit_id": "52fe44ffc3a36847f80b67f7", "cast_id": 2, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Marnie Mason", "id": 11164, "credit_id": "52fe44ffc3a36847f80b67fb", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Chloe Webb", "character": "Linda Mason", "id": 43476, "credit_id": "52fe44ffc3a36847f80b67ff", "cast_id": 4, "profile_path": "/3IDfpWvtVQ2ebI2jHjd9N3jiAD5.jpg", "order": 3}, {"name": "David Caruso", "character": "Al Greco", "id": 16560, "credit_id": "52fe44ffc3a36847f80b6803", "cast_id": 5, "profile_path": "/i251LGpMkOeOqRmqlCpKkNoGdni.jpg", "order": 4}, {"name": "Bonnie Bartlett", "character": "Old Mary Ann Benedict", "id": 32479, "credit_id": "52fe44ffc3a36847f80b6913", "cast_id": 72, "profile_path": "/dQj3hKLMrz4lwzwqZ7tZG1Z1fIi.jpg", "order": 5}, {"name": "Trey Wilson", "character": "Beetroot McKinley", "id": 4039, "credit_id": "52fe44ffc3a36847f80b6843", "cast_id": 21, "profile_path": "/lT3Ia2j6BpNflu3duzK0bU2t83m.jpg", "order": 6}, {"name": "Marshall Bell", "character": "Webster", "id": 3041, "credit_id": "52fe44ffc3a36847f80b6847", "cast_id": 22, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 7}, {"name": "Hugh O'Brian", "character": "Granger", "id": 39753, "credit_id": "52fe44ffc3a36847f80b684b", "cast_id": 23, "profile_path": "/6yAMS9DqAXvHoC997ZFluT9oWyL.jpg", "order": 8}, {"name": "Nehemiah Persoff", "character": "Mitchell Traven", "id": 3160, "credit_id": "52fe44ffc3a36847f80b684f", "cast_id": 24, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 9}, {"name": "Maury Chaykin", "character": "Burt Klane", "id": 7868, "credit_id": "52fe44ffc3a36847f80b6853", "cast_id": 25, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 10}, {"name": "Tony Jay", "character": "Werner", "id": 65598, "credit_id": "52fe44ffc3a36847f80b6857", "cast_id": 26, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 11}, {"name": "Tom McCleister", "character": "Bob Klane (as Thom McCleister)", "id": 154727, "credit_id": "52fe44ffc3a36847f80b685b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "David Efron", "character": "Morris Klane", "id": 555081, "credit_id": "52fe44ffc3a36847f80b685f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Peter Dvorsky", "character": "Peter Garfield", "id": 12483, "credit_id": "52fe44ffc3a36847f80b6863", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Robert Harper", "character": "Gilbert Larsen", "id": 41739, "credit_id": "52fe44ffc3a36847f80b6867", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Rosemary Dunsmore", "character": "Miss Busby", "id": 44275, "credit_id": "52fe44ffc3a36847f80b686b", "cast_id": 31, "profile_path": "/qdEePC5X5yvnKXVv9lsOAp1EOGl.jpg", "order": 16}, {"name": "Lora Milligan", "character": "Stewardess", "id": 555082, "credit_id": "52fe44ffc3a36847f80b686f", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Richard deFaut", "character": "Custodian", "id": 102840, "credit_id": "52fe44ffc3a36847f80b6873", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Richard Portnow", "character": "Chop Shop Owner", "id": 4255, "credit_id": "52fe44ffc3a36847f80b6877", "cast_id": 34, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 19}, {"name": "S.A. Griffin", "character": "Hollywood Biker #1", "id": 91039, "credit_id": "52fe44ffc3a36847f80b687b", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Billy D. Lucas", "character": "Hollywood Biker #2", "id": 555083, "credit_id": "52fe44ffc3a36847f80b687f", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Lew Hopson", "character": "Cop", "id": 141051, "credit_id": "52fe44ffc3a36847f80b6883", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Frances Bay", "character": "Mother Superior", "id": 11794, "credit_id": "52fe44ffc3a36847f80b6887", "cast_id": 38, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 23}, {"name": "Marvin J. McIntyre", "character": "McKinley's Man", "id": 13003, "credit_id": "52fe44ffc3a36847f80b688b", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Cary-Hiroyuki Tagawa", "character": "Oriental Man", "id": 11398, "credit_id": "52fe44ffc3a36847f80b688f", "cast_id": 40, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 25}, {"name": "Wayne Grace", "character": "Cell Guard", "id": 52145, "credit_id": "52fe44ffc3a36847f80b6893", "cast_id": 41, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 26}, {"name": "Thomas Wagner", "character": "Visiting Room Guard", "id": 555084, "credit_id": "52fe44ffc3a36847f80b6897", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Jay Arlen Jones", "character": "Mover #1", "id": 20812, "credit_id": "52fe44ffc3a36847f80b689b", "cast_id": 43, "profile_path": null, "order": 28}, {"name": "Ty Granderson Jones", "character": "Mover #2", "id": 205150, "credit_id": "52fe44ffc3a36847f80b689f", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "Elizabeth Kaitan", "character": "Secretary", "id": 98078, "credit_id": "52fe44ffc3a36847f80b68a3", "cast_id": 45, "profile_path": "/ICQjM24eEGfTbzp181AFtTmkqm.jpg", "order": 30}, {"name": "Tom Platz", "character": "Granger Son #1", "id": 35715, "credit_id": "52fe44ffc3a36847f80b68a7", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Roger Callard", "character": "Granger Son #2", "id": 42083, "credit_id": "52fe44ffc3a36847f80b68ab", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Jason Reitman", "character": "Granger Grandson", "id": 52443, "credit_id": "52fe44ffc3a36847f80b68af", "cast_id": 48, "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "order": 33}, {"name": "Catherine Reitman", "character": "Granger Granddaughter", "id": 154826, "credit_id": "52fe44ffc3a36847f80b68b3", "cast_id": 49, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 34}, {"name": "Dendrie Taylor", "character": "Female Neighbor", "id": 81462, "credit_id": "52fe44ffc3a36847f80b68b7", "cast_id": 50, "profile_path": "/mGFSoz0U4wkGGrt8ZFeEXnLOYr6.jpg", "order": 35}, {"name": "Sven-Ole Thorsen", "character": "Sam Klane", "id": 20761, "credit_id": "52fe44ffc3a36847f80b68bb", "cast_id": 51, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 36}, {"name": "Gus Rethwisch", "character": "Dave Klane", "id": 13004, "credit_id": "52fe44ffc3a36847f80b68bf", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Linda Porter", "character": "Painter", "id": 116229, "credit_id": "52fe44ffc3a36847f80b68c3", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Bruce McBroom", "character": "Handsome Father", "id": 555085, "credit_id": "52fe44ffc3a36847f80b68c7", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Joe Medjuck", "character": "Photographer (as Joseph Medjuck)", "id": 57601, "credit_id": "52fe44ffc3a36847f80b68cb", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Frank Davis", "character": "Security Guard", "id": 555086, "credit_id": "52fe44ffc3a36847f80b68cf", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "John Michael Bolger", "character": "Security Guard", "id": 155961, "credit_id": "52fe44ffc3a36847f80b68d3", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Steve Reevis", "character": "Indian", "id": 4024, "credit_id": "52fe44ffc3a36847f80b68d7", "cast_id": 58, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 43}, {"name": "Terry Bozzio", "character": "Drums", "id": 555088, "credit_id": "52fe44ffc3a36847f80b68db", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Tony Hymas", "character": "Keyboards", "id": 555089, "credit_id": "52fe44ffc3a36847f80b68df", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "Nicolette Larson", "character": "Singer", "id": 555090, "credit_id": "52fe44ffc3a36847f80b68e3", "cast_id": 62, "profile_path": null, "order": 46}, {"name": "Jill Avery", "character": "Bass Player", "id": 555091, "credit_id": "52fe44ffc3a36847f80b68e7", "cast_id": 63, "profile_path": null, "order": 47}, {"name": "Dustin Amy", "character": "Picture Taker #2", "id": 555092, "credit_id": "52fe44ffc3a36847f80b68eb", "cast_id": 64, "profile_path": null, "order": 48}, {"name": "Heather Graham", "character": "Young Mary Ann Benedict", "id": 69122, "credit_id": "52fe44ffc3a36847f80b68ef", "cast_id": 65, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 49}, {"name": "Raymond Storti", "character": "Bar Patron", "id": 555093, "credit_id": "52fe44ffc3a36847f80b68f3", "cast_id": 66, "profile_path": null, "order": 50}, {"name": "Jeff Beck", "character": "Lead Guitarist", "id": 107602, "credit_id": "52fe44ffc3a36847f80b690f", "cast_id": 71, "profile_path": "/bUEf25Vr3OnqhJr3Z4T6cClWVEU.jpg", "order": 51}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a36847f80b683f", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.0, "runtime": 107}, "9494": {"poster_path": "/zyq8wUKk3FVfgkYnI1IVgmypOtG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 296000000, "overview": "Mollie is a single working mother who's out to find the perfect father for her child. Her baby, Mikey, prefers James, a cab driver turned babysitter who has what it takes to make them both happy. But Mollie won't even consider James. It's going to take all the tricks a baby can think of to bring them together before it's too late", "video": false, "id": 9494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Look Who's Talking", "tagline": "He's hip, he's cool, and he's only 3 months old.", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2jEwMXBICqARNmhFFFDu1IvmJCK.jpg", "poster_path": "/ez7hA34uLtOuGIwZvwhlpr53tXh.jpg", "id": 9521, "name": "Look Who's Talking Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097778", "adult": false, "backdrop_path": "/wPpx7kfV4jAjmkeGHmJVRf45XEI.jpg", "production_companies": [{"name": "Management Company Entertainment Group (MCEG)", "id": 8821}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1989-10-13", "popularity": 0.770136332478631, "original_title": "Look Who's Talking", "budget": 7500000, "cast": [{"name": "John Travolta", "character": "James Ubriacco", "id": 8891, "credit_id": "52fe44ffc3a36847f80b6931", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Kirstie Alley", "character": "Mollie", "id": 1796, "credit_id": "52fe44ffc3a36847f80b6935", "cast_id": 2, "profile_path": "/fQ1EOV3dazf05uhrEVqMN2S3T0U.jpg", "order": 1}, {"name": "Olympia Dukakis", "character": "Rosie", "id": 3019, "credit_id": "52fe44ffc3a36847f80b6939", "cast_id": 3, "profile_path": "/A6Lb6pUF1Rr755Oi2vQvxzf0eHH.jpg", "order": 2}, {"name": "George Segal", "character": "Albert", "id": 18364, "credit_id": "52fe44ffc3a36847f80b693d", "cast_id": 4, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 3}, {"name": "Bruce Willis", "character": "Mikey (voice)", "id": 62, "credit_id": "52fe44ffc3a36847f80b6941", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 4}, {"name": "Abe Vigoda", "character": "Grandpa", "id": 3093, "credit_id": "52fe44ffc3a36847f80b6969", "cast_id": 12, "profile_path": "/pUgFgNhow9niMPfTvj3mOzwtfRk.jpg", "order": 5}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a36847f80b6947", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 5.7, "runtime": 93}, "9495": {"poster_path": "/ojrksUOPq4JStY3yW0dTBu9nw1L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144000000, "overview": "Exactly one year after young rock guitarist Eric Draven and his fianc\u00e9e are brutally killed by a ruthless gang of criminals, Draven -- watched over by a hypnotic crow -- returns from the grave to exact revenge.", "video": false, "id": 9495, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Crow", "tagline": "Real love is forever.", "vote_count": 261, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6sGKUZfV4g5d2LT4CsG89o0416W.jpg", "poster_path": "/kfU8OZptlBfR5DL9LNGL301Zmlz.jpg", "id": 9436, "name": "The Crow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109506", "adult": false, "backdrop_path": "/goHhLporbd6eMjJzTi3guLwSsQ3.jpg", "production_companies": [{"name": "Crowvision Inc.", "id": 4028}, {"name": "Entertainment Media Investment Corporation", "id": 4029}, {"name": "Jeff Most Productions", "id": 4030}, {"name": "Edward R. Pressman Film", "id": 6455}, {"name": "Miramax Films", "id": 14}], "release_date": "1994-05-11", "popularity": 0.744967006252569, "original_title": "The Crow", "budget": 15000000, "cast": [{"name": "Brandon Lee", "character": "Eric Draven", "id": 57700, "credit_id": "52fe44ffc3a36847f80b69b7", "cast_id": 1, "profile_path": "/rnsdKIpr7oXzGgy7jWm1NT5HZbS.jpg", "order": 0}, {"name": "Rochelle Davis", "character": "Sarah", "id": 57701, "credit_id": "52fe44ffc3a36847f80b69bb", "cast_id": 2, "profile_path": "/x1UkNLnAe2CDYcapHPo1pQP8zZ6.jpg", "order": 1}, {"name": "Ernie Hudson", "character": "Sergeant Albrecht", "id": 8874, "credit_id": "52fe44ffc3a36847f80b69bf", "cast_id": 3, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 2}, {"name": "Michael Wincott", "character": "Top Dollar", "id": 7486, "credit_id": "52fe44ffc3a36847f80b69c3", "cast_id": 4, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 3}, {"name": "Bai Ling", "character": "Myca", "id": 39126, "credit_id": "52fe44ffc3a36847f80b6a3d", "cast_id": 30, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 4}, {"name": "Sofia Shinas", "character": "Shelly Webster", "id": 42649, "credit_id": "52fe44ffc3a36847f80b6a15", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Anna Thomson", "character": "Darla", "id": 3711, "credit_id": "52fe44ffc3a36847f80b6a19", "cast_id": 20, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 6}, {"name": "David Patrick Kelly", "character": "T-Bird", "id": 1737, "credit_id": "52fe44ffc3a36847f80b6a1d", "cast_id": 21, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 7}, {"name": "Angel David", "character": "Shank", "id": 37207, "credit_id": "52fe44ffc3a36847f80b6a21", "cast_id": 22, "profile_path": "/mOYTIi8x5wBP198tcfkSGLiQ92h.jpg", "order": 8}, {"name": "Laurence Mason", "character": "Tin Tin", "id": 65141, "credit_id": "52fe44ffc3a36847f80b6a25", "cast_id": 23, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 9}, {"name": "Michael Massee", "character": "Funboy", "id": 9289, "credit_id": "52fe44ffc3a36847f80b6a29", "cast_id": 24, "profile_path": "/qbM7GWc86Lw5y6E6eCnokgVaHia.jpg", "order": 10}, {"name": "Tony Todd", "character": "Grange", "id": 19384, "credit_id": "52fe44ffc3a36847f80b6a2d", "cast_id": 25, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 11}, {"name": "Jon Polito", "character": "Gideon", "id": 4253, "credit_id": "52fe44ffc3a36847f80b6a31", "cast_id": 26, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 12}, {"name": "Bill Raymond", "character": "Mickey", "id": 7576, "credit_id": "52fe44ffc3a36847f80b6a35", "cast_id": 27, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 13}, {"name": "Marco Rodr\u00edguez", "character": "Torres", "id": 73132, "credit_id": "52fe44ffc3a36847f80b6a39", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a36847f80b6a11", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 7.0, "runtime": 102}, "50456": {"poster_path": "/2Jr4Rl4Hjiahgh09bjeH8tFhgKp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63782078, "overview": "A 16-year-old girl raised by her father to be the perfect assassin is dispatched on a mission across Europe. Tracked by a ruthless operatives, she faces startling revelations about her existence and questions about her humanity.", "video": false, "id": 50456, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Hanna", "tagline": "Adapt or die.", "vote_count": 344, "homepage": "http://hannathemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0993842", "adult": false, "backdrop_path": "/1jcwDtYfcjR5QdbY6iUxYBpXn8I.jpg", "production_companies": [{"name": "Focus Features", "id": 17301}, {"name": "Holleran Company", "id": 21439}, {"name": "Sechzehnte Babelsberg Film", "id": 23919}, {"name": "Neunte Babelsberg Film", "id": 14684}], "release_date": "2011-04-08", "popularity": 0.681291773816682, "original_title": "Hanna", "budget": 30000000, "cast": [{"name": "Saoirse Ronan", "character": "Hanna", "id": 36592, "credit_id": "52fe47c8c3a36847f8147e6d", "cast_id": 6, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Eric Bana", "character": "Erik Heller", "id": 8783, "credit_id": "52fe47c8c3a36847f8147e71", "cast_id": 7, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 1}, {"name": "Cate Blanchett", "character": "Marissa Wiegler", "id": 112, "credit_id": "52fe47c8c3a36847f8147e75", "cast_id": 8, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Isaacs", "id": 2441, "credit_id": "52fe47c8c3a36847f8147e79", "cast_id": 9, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Vicky Kreips", "character": "Johanna Zadeck", "id": 550548, "credit_id": "52fe47c8c3a36847f8147e89", "cast_id": 15, "profile_path": "/c5ULdp8FQq51Dk7upo5ef8Wo0DW.jpg", "order": 4}, {"name": "John MacMillan", "character": "Lewis", "id": 550549, "credit_id": "52fe47c8c3a36847f8147e8d", "cast_id": 16, "profile_path": "/rM8FYg3Px8b1PToq87FH6bOjUqp.jpg", "order": 5}, {"name": "Tim Beckmann", "character": "Walt", "id": 550550, "credit_id": "52fe47c8c3a36847f8147e91", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Paul Birchard", "character": "Bob", "id": 29617, "credit_id": "52fe47c8c3a36847f8147e95", "cast_id": 18, "profile_path": "/iDEyo8cSZAVy9HsmZMv9mPs5tx4.jpg", "order": 7}, {"name": "Christian Malcolm", "character": "Head of Ops", "id": 550551, "credit_id": "52fe47c8c3a36847f8147e99", "cast_id": 19, "profile_path": "/qFNVmoi4n4Qs6R16BSD2HYdEALw.jpg", "order": 8}, {"name": "Jamie Beamish", "character": "Burton", "id": 203575, "credit_id": "52fe47c8c3a36847f8147e9d", "cast_id": 20, "profile_path": "/4zL7EcA8CK9tvwApu39kqQ8Vu8I.jpg", "order": 9}, {"name": "Jessica Barden", "character": "Sophie", "id": 550552, "credit_id": "52fe47c8c3a36847f8147ea1", "cast_id": 21, "profile_path": "/1YjDemzN4ozUE5Fo79pdoaFlyxy.jpg", "order": 10}, {"name": "Olivia Williams", "character": "Rachel", "id": 11616, "credit_id": "52fe47c8c3a36847f8147ea5", "cast_id": 23, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 11}, {"name": "Jason Flemyng", "character": "Sebastian", "id": 973, "credit_id": "52fe47c8c3a36847f8147ea9", "cast_id": 24, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 12}, {"name": "Michelle Dockery", "character": "False Marissa", "id": 70904, "credit_id": "52fe47c8c3a36847f8147ead", "cast_id": 25, "profile_path": "/lbXBpE9jUITuDWzI9YPOR6Ej1eq.jpg", "order": 13}, {"name": "Sebastian H\u00fclk", "character": "Titch", "id": 550554, "credit_id": "52fe47c8c3a36847f8147eb1", "cast_id": 26, "profile_path": "/1lgRo298X6MZMzf2cWKuELXE74T.jpg", "order": 14}, {"name": "Joel Basman", "character": "Razor", "id": 223477, "credit_id": "52fe47c8c3a36847f8147eb5", "cast_id": 27, "profile_path": "/lU8EmVc3tSVC3TfxBm0u4XzuEgl.jpg", "order": 15}, {"name": "Martin Wuttke", "character": "Knepfler", "id": 49056, "credit_id": "52fe47c8c3a36847f8147eb9", "cast_id": 29, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 16}, {"name": "Aldo Maland", "character": "Miles", "id": 550553, "credit_id": "52fe47c8c3a36847f8147f05", "cast_id": 43, "profile_path": "/y8kWKeqEFozjllaFJ3OT5PvjBF6.jpg", "order": 17}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe47c8c3a36847f8147e69", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.4, "runtime": 111}, "304410": {"poster_path": "/ur6BmIy835Y62eb7AmUqHeRHo0a.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The whole B\u00e9lier family is deaf, except for sixteen year old Paula who is the important translator in her parents' day to day life especially when it comes to matters concerning the family farm. When her music teacher discovers she has a fantastic singing voice and she gets an opportunity to enter a big Radio France contest the whole family's future is set up for big changes.", "video": false, "id": 304410, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The B\u00e9lier Family", "tagline": "", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3547740", "adult": false, "backdrop_path": "/vOaY7zjo2rhrZivwOt3sxcDHbhu.jpg", "production_companies": [{"name": "Jerico", "id": 19491}], "release_date": "2014-12-17", "popularity": 3.22264323024724, "original_title": "La Famille B\u00e9lier", "budget": 0, "cast": [{"name": "Karin Viard", "character": "Gigi B\u00e9lier", "id": 13688, "credit_id": "546cc5d09251413053001a5c", "cast_id": 2, "profile_path": "/aPupVACLe1oKrJrxWfPAihJhxJj.jpg", "order": 1}, {"name": "Fran\u00e7ois Damiens", "character": "Rodolphe B\u00e9lier", "id": 24041, "credit_id": "546cc5d7c3a3680974001939", "cast_id": 3, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 2}, {"name": "Eric Elmosnino", "character": "M. Thomasson", "id": 24465, "credit_id": "546cc5e19251413056001b34", "cast_id": 4, "profile_path": "/a9Lh5oY7YfzCb1SJNvU1w5PTH1j.jpg", "order": 3}, {"name": "Louane Emera", "character": "Paula B\u00e9lier", "id": 1352046, "credit_id": "546cc5e9c3a368097400193c", "cast_id": 5, "profile_path": "/o9ZoVDkSwybtGvwHfXAFJVTOL0P.jpg", "order": 4}, {"name": "Roxane Duran", "character": "Mathilde", "id": 544666, "credit_id": "546cc5f0925141304c001c12", "cast_id": 6, "profile_path": "/qHB2yyVufR6sYUF4Je9lJOPyVTO.jpg", "order": 5}, {"name": "Ilian Bergala", "character": "Gabriel", "id": 1387016, "credit_id": "546cc5f8925141304c001c16", "cast_id": 7, "profile_path": "/bzW1cdoaMLacdFSKncPIpwgVtqs.jpg", "order": 6}, {"name": "Luca Gelberg", "character": "Quentin B\u00e9lier", "id": 1387017, "credit_id": "546cc5ff9251413053001a68", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Mar Sodupe", "character": "Mlle Dos Santos", "id": 22310, "credit_id": "546cc6089251413053001a6c", "cast_id": 9, "profile_path": "/emTYD7MniUYs7nLY73T02Kuoiqk.jpg", "order": 8}], "directors": [{"name": "Eric Lartigau", "department": "Directing", "job": "Director", "credit_id": "546cc58bc3a368097d001b24", "profile_path": "/7tMUb274bl7JqTzguhWnovKx4Pw.jpg", "id": 85340}], "vote_average": 7.9, "runtime": 100}, "17692": {"poster_path": "/jQa0nQvbjwDT79WFi7wt1rAtKRT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42245180, "overview": "This third film in the series follows a group of marine biologists attempting to capture a young great white shark that has wandered into Florida's Sea World Park. However, later it is discovered that the shark's 35-foot mother is also a guest at Sea World. What follows is the shark wreaking havoc on the visitors in the park.", "video": false, "id": 17692, "genres": [{"id": 27, "name": "Horror"}], "title": "Jaws 3-D", "tagline": "A deadly new attraction.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1e2QvI2u7Q4d2admK6Xw0AjLjVp.jpg", "poster_path": "/fgraZdDCvAtBr0MHczmL6raonHd.jpg", "id": 2366, "name": "The Jaws Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085750", "adult": false, "backdrop_path": "/e6xFzaEzjSF4OnJ4f65ovMJE3vu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alan Landsburg Productions", "id": 4904}], "release_date": "1983-07-22", "popularity": 0.522757479233797, "original_title": "Jaws 3-D", "budget": 0, "cast": [{"name": "Dennis Quaid", "character": "Michael 'Mike' Brody", "id": 6065, "credit_id": "52fe47409251416c75092e41", "cast_id": 1, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Bess Armstrong", "character": "Kathryn Morgan", "id": 29710, "credit_id": "52fe47419251416c75092e45", "cast_id": 2, "profile_path": "/fH9l0jd9uYFPlW8iHKFyQnL3ThW.jpg", "order": 1}, {"name": "Simon MacCorkindale", "character": "Philip FitzRoyce", "id": 24743, "credit_id": "52fe47419251416c75092e49", "cast_id": 3, "profile_path": "/pss165HPDGUf6BfPAqNzB0oOf75.jpg", "order": 2}, {"name": "Louis Gossett, Jr.", "character": "Calvin Bouchard", "id": 20959, "credit_id": "52fe47419251416c75092e4d", "cast_id": 4, "profile_path": "/sa2do592mIhtUmtSfO3VN4MuZcv.jpg", "order": 3}, {"name": "John Putch", "character": "Sean Brody", "id": 21475, "credit_id": "52fe47419251416c75092e51", "cast_id": 5, "profile_path": "/9JBDOLXqdJiAvUOU0fO5bWnk292.jpg", "order": 4}, {"name": "Lea Thompson", "character": "Kelly Ann Bukowski", "id": 1063, "credit_id": "52fe47419251416c75092e67", "cast_id": 9, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 5}, {"name": "P. H. Moriarty", "character": "Jack Tate", "id": 989, "credit_id": "5301412b9251412198105ccf", "cast_id": 10, "profile_path": "/hbe7K1D6RDGErosR7C8erdN3ODR.jpg", "order": 6}, {"name": "Dan Blasko", "character": "Dan", "id": 1296367, "credit_id": "530c4144c3a3685c12000bd1", "cast_id": 11, "profile_path": "/mrpd1ozNni2xPYUPzQVDg2vpGIS.jpg", "order": 7}, {"name": "Liz Morris", "character": "Liz", "id": 1296368, "credit_id": "530c416bc3a3685c0c000ba6", "cast_id": 12, "profile_path": "/siKuyIfNxqpmSM1AAKtlvRicVIb.jpg", "order": 8}, {"name": "Lisa Maurer", "character": "Ethel", "id": 1296369, "credit_id": "530c4191c3a3685c28000bff", "cast_id": 13, "profile_path": "/juKal28eHO3bMUAjs8UnkDq4j2k.jpg", "order": 9}, {"name": "Harry Grant", "character": "Shelby Overman", "id": 1296370, "credit_id": "530c41b9c3a3685c03000c50", "cast_id": 14, "profile_path": "/8aV0U4528qgK7yZHlLFL3Bj9Xpn.jpg", "order": 10}, {"name": "Andy Hansen", "character": "Silver Bullet", "id": 1296371, "credit_id": "530c41d5c3a3685c20000ba2", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "P.T. Horn", "character": "Tunnel Guide", "id": 1296372, "credit_id": "530c41f0c3a3685c1a000ba6", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "John Edson", "character": "Bob Woodbury (as John Edson Jr.)", "id": 194357, "credit_id": "530c423ac3a3685c12000be2", "cast_id": 17, "profile_path": "/prRGgqsYDssnEB8HCqwuWSU1T1B.jpg", "order": 13}, {"name": "Kaye Stevens", "character": "Mrs. Kallender", "id": 40394, "credit_id": "530c426ec3a3685c20000baf", "cast_id": 18, "profile_path": "/vutXV8Ln3aijnsF1l1Wwrogx0QF.jpg", "order": 14}, {"name": "Rich Valliere", "character": "Leonard Glass (as Archie Valliere)", "id": 1296373, "credit_id": "530c4298c3a3685c2f000bac", "cast_id": 19, "profile_path": "/qYmhdKc9FhOcw99k8PK2v5x3fb6.jpg", "order": 15}, {"name": "Alonzo Ward", "character": "Fred", "id": 1296374, "credit_id": "530c42c0c3a3685c2f000bb4", "cast_id": 20, "profile_path": "/9N9KEbkGHrkTEYVhsaRxCR7WPLa.jpg", "order": 16}, {"name": "Cathy Cervenka", "character": "Sherrie", "id": 1296375, "credit_id": "530c4303c3a3685c12000bf2", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Jane Horner", "character": "Suzie", "id": 1296376, "credit_id": "530c4327c3a3685c28000c18", "cast_id": 22, "profile_path": "/4lkzjmFOccsffD4EXAKpRnbUnyO.jpg", "order": 18}, {"name": "Kathy Jenkins", "character": "Sheila", "id": 1296377, "credit_id": "530c4340c3a3685c0c000bcc", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Steve Mellor", "character": "Announcer", "id": 171391, "credit_id": "530c435dc3a3685c12000bfa", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Ray Meunnich", "character": "Paramedic", "id": 1296378, "credit_id": "530c4375c3a3685c12000c00", "cast_id": 25, "profile_path": "/q9Sfvg6bCZFGLtdkfryNdKnBswn.jpg", "order": 21}, {"name": "Les Alford", "character": "Reporter", "id": 1296379, "credit_id": "530c4390c3a3685c12000c06", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Gary Anstaett", "character": "Reporter", "id": 1296380, "credit_id": "530c43a8c3a3685c2f000bc4", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Scott Christoffel", "character": "Workman", "id": 1296381, "credit_id": "530c43c7c3a3685c03000c6e", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Debbie Connoyer", "character": "Screaming Skier", "id": 1296382, "credit_id": "530c43e4c3a3685c03000c73", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Mary Davis Duncan", "character": "Reporter At Party", "id": 236986, "credit_id": "530c4406c3a3685c0c000bd5", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "John Floren", "character": "Workman", "id": 1296383, "credit_id": "530c443ac3a3685c1a000c3f", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "John Gaffey", "character": "Rick", "id": 1296384, "credit_id": "530c4456c3a3685c20000bd2", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Joe Gilbert", "character": "Mr. Brit", "id": 1077032, "credit_id": "530c4490c3a3685c20000bd8", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Will Knickerbocker", "character": "Man in Crowd", "id": 139360, "credit_id": "530c44dec3a3685c03000c85", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Jackie Kuntarich", "character": "Skier", "id": 1296385, "credit_id": "530c4517c3a3685c0c000be5", "cast_id": 35, "profile_path": "/hnuVvwYiuMWkYJbeezPSOTK8BfI.jpg", "order": 31}, {"name": "Edward Laurie", "character": "Tourist Dad", "id": 33952, "credit_id": "530c4553c3a3685c0c000bed", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Holly Lisker", "character": "Girl in Tunnel", "id": 1296386, "credit_id": "530c45b5c3a3685c2f000bdd", "cast_id": 45, "profile_path": null, "order": 41}, {"name": "M.J. Lloyd", "character": "Pirate Girl", "id": 1296387, "credit_id": "530c462bc3a3685bfb000c57", "cast_id": 46, "profile_path": null, "order": 42}, {"name": "Carl Mazzocone", "character": "Stand-off Player", "id": 364835, "credit_id": "530c4642c3a3685bee000c09", "cast_id": 47, "profile_path": "/i2A42btpJpx5wmYo6NirqE7yBRA.jpg", "order": 43}, {"name": "Ken Olson", "character": "Red", "id": 1296388, "credit_id": "530c4653c3a3685bee000c0e", "cast_id": 48, "profile_path": null, "order": 44}, {"name": "Ronnie Parks", "character": "Clyde", "id": 1296389, "credit_id": "530c4666c3a3685bf4000c1e", "cast_id": 49, "profile_path": null, "order": 45}, {"name": "Al Pipkin", "character": "Mr. Bluster", "id": 1296390, "credit_id": "530c467ec3a3685c20000bf6", "cast_id": 50, "profile_path": null, "order": 46}, {"name": "Barbara Quinn", "character": "Anxious Tunnel Person", "id": 93424, "credit_id": "530c4696c3a3685c1a000c6a", "cast_id": 51, "profile_path": "/ooOqyaqekHBVhxvVeJmCpelG7ej.jpg", "order": 47}, {"name": "Irene Schubert", "character": "Reporter", "id": 1296391, "credit_id": "530c46b0c3a3685bfb000c67", "cast_id": 52, "profile_path": null, "order": 48}, {"name": "August Schwartz", "character": "Ted", "id": 1296392, "credit_id": "530c46e5c3a3685c1a000c6f", "cast_id": 53, "profile_path": null, "order": 49}, {"name": "Sandy Scott", "character": "Concessionaire", "id": 1216331, "credit_id": "530c46fbc3a3685c20000bfd", "cast_id": 54, "profile_path": null, "order": 50}, {"name": "Tony Shepherd", "character": "Beer Belly on Beach", "id": 1296393, "credit_id": "530c475bc3a3685bf4000c32", "cast_id": 55, "profile_path": null, "order": 51}, {"name": "Dolores Starling", "character": "Charlene Tutt", "id": 1296394, "credit_id": "530c477bc3a3685c2f000c04", "cast_id": 56, "profile_path": "/q5yXHQgcnJjN8mVY06B4haS2jrh.jpg", "order": 52}, {"name": "Tamie Steinke", "character": "Candy", "id": 1296395, "credit_id": "530c479cc3a3685bf4000c39", "cast_id": 57, "profile_path": null, "order": 53}, {"name": "Daniel Stewart", "character": "Ed", "id": 187608, "credit_id": "530c47c2c3a3685bee000c22", "cast_id": 58, "profile_path": null, "order": 54}], "directors": [{"name": "Joe Alves", "department": "Directing", "job": "Director", "credit_id": "52fe47419251416c75092e57", "profile_path": null, "id": 8558}], "vote_average": 4.6, "runtime": 99}, "218": {"poster_path": "/q8ffBuxQlYOHrvPniLgCbmKK4Lv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78371200, "overview": "In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?", "video": false, "id": 218, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Terminator", "tagline": "Your future is in his hands.", "vote_count": 1530, "homepage": "http://www.mgm.com/#/our-titles/1970/The-Terminator/", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0088247", "adult": false, "backdrop_path": "/6yFoLNQgFdVbA8TZMdfgVpszOla.jpg", "production_companies": [{"name": "Hemdale Film Corporation", "id": 469}, {"name": "Pacific Western Production", "id": 7746}, {"name": "Euro Film Funding", "id": 7745}, {"name": "Cinema 84", "id": 4764}], "release_date": "1984-10-26", "popularity": 1.90411942138247, "original_title": "The Terminator", "budget": 6400000, "cast": [{"name": "Arnold Schwarzenegger", "character": "The Terminator", "id": 1100, "credit_id": "52fe4228c3a36847f8008581", "cast_id": 26, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Michael Biehn", "character": "Kyle Reese", "id": 2712, "credit_id": "52fe4228c3a36847f800851f", "cast_id": 6, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 1}, {"name": "Linda Hamilton", "character": "Sarah Connor", "id": 2713, "credit_id": "52fe4228c3a36847f8008523", "cast_id": 7, "profile_path": "/bxsVrRYOpAL0vI6X7nnEsyLvZ8H.jpg", "order": 2}, {"name": "Paul Winfield", "character": "Lieutenant Ed Traxler", "id": 1818, "credit_id": "52fe4228c3a36847f8008527", "cast_id": 8, "profile_path": "/6oc80tWtRg8pRAPXOhV3FQBvBR5.jpg", "order": 3}, {"name": "Lance Henriksen", "character": "Detective Vukovich", "id": 2714, "credit_id": "52fe4228c3a36847f800852b", "cast_id": 9, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 4}, {"name": "Bess Motta", "character": "Ginger Ventura", "id": 2715, "credit_id": "52fe4228c3a36847f800852f", "cast_id": 10, "profile_path": "/pHbJBDT0bYimybwMGPs6AnO59ZN.jpg", "order": 5}, {"name": "Earl Boen", "character": "Dr. Peter Silberman", "id": 2716, "credit_id": "52fe4228c3a36847f8008533", "cast_id": 11, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 6}, {"name": "Rick Rossovich", "character": "Matt Buchanan", "id": 2717, "credit_id": "52fe4228c3a36847f8008537", "cast_id": 12, "profile_path": "/f2bFBUT1WRImsKVkSq7A3yACFAa.jpg", "order": 7}, {"name": "Bill Paxton", "character": "Punk Leader", "id": 2053, "credit_id": "52fe4228c3a36847f800853b", "cast_id": 13, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 8}, {"name": "Brian Thompson", "character": "Punk", "id": 2719, "credit_id": "52fe4228c3a36847f800853f", "cast_id": 14, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 9}, {"name": "Franco Columbu", "character": "Future Terminator", "id": 35710, "credit_id": "52fe4228c3a36847f800856d", "cast_id": 22, "profile_path": "/Ajjtqewy65900sHWWkPMdhTZ2E4.jpg", "order": 10}, {"name": "Dick Miller", "character": "Pawnshop Clerk", "id": 102441, "credit_id": "52fe4228c3a36847f800857d", "cast_id": 25, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 11}, {"name": "Joe Farago", "character": "TV Anchorman", "id": 1378212, "credit_id": "544e246f0e0a26134b000f4f", "cast_id": 55, "profile_path": null, "order": 12}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4228c3a36847f8008515", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 6.9, "runtime": 108}, "9502": {"poster_path": "/nhOMC1WJKAcX1rB9tMfwGyHNhom.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 631744560, "overview": "When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the \"chosen one\" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.", "video": false, "id": 9502, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Kung Fu Panda", "tagline": "Prepare for awesomeness.", "vote_count": 1135, "homepage": "http://www.kungfupanda.com/", "belongs_to_collection": {"backdrop_path": "/uDosHOFFWtF5YteBRygHALFqLw2.jpg", "poster_path": "/2QT6PuYXY0T2Ry9rX0JKQYTrbwx.jpg", "id": 77816, "name": "Kung Fu Panda Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0441773", "adult": false, "backdrop_path": "/UJwhgwAxU42cm9XKncO9boFAEV.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2008-06-05", "popularity": 2.16449829267269, "original_title": "Kung Fu Panda", "budget": 130000000, "cast": [{"name": "Jack Black", "character": "Po (voice)", "id": 70851, "credit_id": "52fe4500c3a36847f80b6ca3", "cast_id": 3, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Shifu (voice)", "id": 4483, "credit_id": "52fe4500c3a36847f80b6cab", "cast_id": 5, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Angelina Jolie", "character": "Master Tigress (voice)", "id": 11701, "credit_id": "52fe4500c3a36847f80b6ca7", "cast_id": 4, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 2}, {"name": "Jackie Chan", "character": "Master Monkey (voice)", "id": 18897, "credit_id": "52fe4500c3a36847f80b6cb3", "cast_id": 7, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 3}, {"name": "Lucy Liu", "character": "Master Viper (voice)", "id": 140, "credit_id": "52fe4500c3a36847f80b6caf", "cast_id": 6, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 4}, {"name": "David Cross", "character": "Crane (voice)", "id": 212, "credit_id": "52fe4500c3a36847f80b6ce7", "cast_id": 17, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 5}, {"name": "Randall Duk Kim", "character": "Oogway (voice)", "id": 9462, "credit_id": "52fe4500c3a36847f80b6ceb", "cast_id": 18, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 6}, {"name": "James Hong", "character": "Mr. Ping (voice)", "id": 20904, "credit_id": "52fe4500c3a36847f80b6cef", "cast_id": 19, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 7}, {"name": "Dan Fogler", "character": "Zeng (voice)", "id": 58873, "credit_id": "52fe4500c3a36847f80b6cdb", "cast_id": 14, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 8}, {"name": "Ian McShane", "character": "Tai Lung (voice)", "id": 6972, "credit_id": "52fe4500c3a36847f80b6cdf", "cast_id": 15, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 9}, {"name": "Seth Rogen", "character": "Mantis (voice)", "id": 19274, "credit_id": "52fe4500c3a36847f80b6ce3", "cast_id": 16, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 10}, {"name": "Michael Clarke Duncan", "character": "Commander Vachir (voice)", "id": 61981, "credit_id": "52fe4500c3a36847f80b6cf3", "cast_id": 20, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 11}, {"name": "Wayne Knight", "character": "Gang Boss (voice)", "id": 4201, "credit_id": "551e125992514137480020dd", "cast_id": 21, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 12}, {"name": "Kyle Gass", "character": "KG Shaw (voice)", "id": 22297, "credit_id": "551e134d925141173f001905", "cast_id": 22, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 13}, {"name": "JR Reed", "character": "JR Shaw (voice)", "id": 938432, "credit_id": "551e1364c3a3682eaf001930", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Laura Kightlinger", "character": "Awed Ninja (voice)", "id": 61409, "credit_id": "551e137b925141374f001ccc", "cast_id": 24, "profile_path": "/vfBERhrH1yfyTS0tD9JJ3DkJ6JM.jpg", "order": 15}, {"name": "Tanya Haden", "character": "Smitten Bunny (voice)", "id": 1448983, "credit_id": "551e13a69251413756001e0d", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Stephen Kearin", "character": "Gong Pig / Grateful Bunny (voice)", "id": 1448984, "credit_id": "551e13cc9251413743002017", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Mark Osborne", "character": "Pig Patron (voice)", "id": 57741, "credit_id": "551e143992514114d7000b44", "cast_id": 27, "profile_path": "/uX4TukmZ2bqo164mtE1TEKnQSu1.jpg", "order": 18}, {"name": "John Stevenson", "character": "Rhino Guard (voice)", "id": 57742, "credit_id": "551e1494c3a3683a14001f5e", "cast_id": 29, "profile_path": "/fWrTUGH0BkT3zfdfB80JqFtsZ2I.jpg", "order": 19}, {"name": "Jeremy Shipp", "character": "Blind Gator (voice)", "id": 1448987, "credit_id": "551e14b1925141374f001cf9", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Melissa Cobb", "character": "Bunny Mom (voice)", "id": 1448989, "credit_id": "551e14df92514114d7000b66", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Kent Osborne", "character": "Pig Fan (voice)", "id": 45416, "credit_id": "552e2e15c3a3686be200248f", "cast_id": 38, "profile_path": "/iszbGHIPuEMa1YDIiJFST3pZfLy.jpg", "order": 22}, {"name": "Emily Burns", "character": "Bunny Fan 1 (voice)", "id": 1448990, "credit_id": "551e159d925141374800216e", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Stephanie Harvey", "character": "Bunny Fan 2 (voice)", "id": 1448991, "credit_id": "551e15b2c3a3682eaf001996", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Riley Osborne", "character": "Baby Tai Lung (voice)", "id": 1397911, "credit_id": "551e166dc3a3683a0d002093", "cast_id": 35, "profile_path": null, "order": 25}], "directors": [{"name": "Mark Osborne", "department": "Directing", "job": "Director", "credit_id": "52fe4500c3a36847f80b6c99", "profile_path": "/uX4TukmZ2bqo164mtE1TEKnQSu1.jpg", "id": 57741}, {"name": "John Stevenson", "department": "Directing", "job": "Director", "credit_id": "52fe4500c3a36847f80b6c9f", "profile_path": "/fWrTUGH0BkT3zfdfB80JqFtsZ2I.jpg", "id": 57742}], "vote_average": 6.6, "runtime": 90}, "9506": {"poster_path": "/wsrZrb2Ng3eO4TYmeBufwdKeC3a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135645823, "overview": "After a misunderstanding aboard an airplane that escalates out of control, the mild-mannered Dave Buznik is ordered by Judge Daniels to attend anger management sessions run by Doctor Buddy Rydell, which are filled with highly eccentric and volatile men and women. Buddy's unorthodox approach to therapy is confrontational and abrasive and Dave is bewildered by it. Then, after yet another mishap, Judge Daniels orders Dave to step up his therapy or wind up in jail. So, Buddy moves in with Dave to help him battle his inner demons. Buddy himself has no inner demons since he acts out at every opportunity and that includes making lewd comments about Dave's girlfriend Linda and goading Dave into confronting every slight, past or present, head-on. But Buddy finally goes too far and Dave must decide whether to crawl back into his shell or stand up for himself. Could it be that Buddy's confounding and contradictory treatment is just what the doctor ordered?", "video": false, "id": 9506, "genres": [{"id": 35, "name": "Comedy"}], "title": "Anger Management", "tagline": "Feel the Love.", "vote_count": 241, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0305224", "adult": false, "backdrop_path": "/oxngOdJwaKDOwwkQHDTF47GZV4Q.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2003-04-11", "popularity": 1.0662863460697, "original_title": "Anger Management", "budget": 75000000, "cast": [{"name": "Adam Sandler", "character": "Dave Buznik", "id": 19292, "credit_id": "52fe4501c3a36847f80b6e23", "cast_id": 13, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Jack Nicholson", "character": "Dr. Buddy Rydell", "id": 514, "credit_id": "52fe4501c3a36847f80b6e27", "cast_id": 14, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Linda", "id": 3141, "credit_id": "52fe4501c3a36847f80b6e2b", "cast_id": 15, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Luis Guzm\u00e1n", "character": "Lou", "id": 40481, "credit_id": "52fe4501c3a36847f80b6e2f", "cast_id": 16, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 3}, {"name": "Woody Harrelson", "character": "Galaxia / Security Guard Gary", "id": 57755, "credit_id": "52fe4501c3a36847f80b6e33", "cast_id": 17, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 4}, {"name": "John Turturro", "character": "Chuck", "id": 1241, "credit_id": "52fe4501c3a36847f80b6e37", "cast_id": 18, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 5}, {"name": "Kevin Nealon", "character": "Sam, Dave's Lawyer", "id": 58478, "credit_id": "52fe4501c3a36847f80b6e3b", "cast_id": 19, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 6}, {"name": "Allen Covert", "character": "Andrew", "id": 20818, "credit_id": "52fe4501c3a36847f80b6e3f", "cast_id": 20, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 7}, {"name": "Heather Graham", "character": "Kendra", "id": 69122, "credit_id": "52fe4501c3a36847f80b6e43", "cast_id": 21, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 8}, {"name": "Krista Allen", "character": "Stacy", "id": 21858, "credit_id": "52fe4501c3a36847f80b6e47", "cast_id": 22, "profile_path": "/aPNoOzxPicfSzPv2Qv7Ccex8WJL.jpg", "order": 9}, {"name": "Derek Jeter", "character": "Himself", "id": 147445, "credit_id": "52fe4501c3a36847f80b6e4b", "cast_id": 23, "profile_path": "/opqx8MSL4bsV3hGDzwlER5EzI1h.jpg", "order": 10}, {"name": "John C. Reilly", "character": "", "id": 4764, "credit_id": "52fe4501c3a36847f80b6e4f", "cast_id": 24, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 11}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe4501c3a36847f80b6ddd", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 5.9, "runtime": 106}, "107811": {"poster_path": "/wNN7MnoQn1nB1Kt8ybehJ1HCxJe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48065672, "overview": "Brilliant student Jeff Chang has the most important interview of his life tomorrow. But today is still his birthday, what starts off as a casual celebration with friends evolves into a night of debauchery that risks to derail his life plan.", "video": false, "id": 107811, "genres": [{"id": 35, "name": "Comedy"}], "title": "21 & Over", "tagline": "Finally.", "vote_count": 413, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1711425", "adult": false, "backdrop_path": "/f7tg3qxLNPSYiqyZypRMRY3yDg2.jpg", "production_companies": [{"name": "Mandeville Films", "id": 10227}, {"name": "Relativity Media", "id": 7295}], "release_date": "2013-03-01", "popularity": 1.07965079465958, "original_title": "21 & Over", "budget": 13000000, "cast": [{"name": "Miles Teller", "character": "Miller", "id": 996701, "credit_id": "52fe4a87c3a36847f81d3615", "cast_id": 4, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 0}, {"name": "Skylar Astin", "character": "Casey", "id": 73128, "credit_id": "52fe4a88c3a36847f81d363d", "cast_id": 13, "profile_path": "/Aj1gqLbzKvcxE61RAR3456RPQ0V.jpg", "order": 1}, {"name": "Justin Chon", "character": "Jeff Chang", "id": 65225, "credit_id": "52fe4a87c3a36847f81d361d", "cast_id": 6, "profile_path": "/4hTyiQgqp6MZgFeW7DosqX4ifUK.jpg", "order": 2}, {"name": "Sarah Mason", "character": "Nicole", "id": 131723, "credit_id": "52fe4a87c3a36847f81d3619", "cast_id": 5, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 3}, {"name": "Jonathan Keltz", "character": "Randy", "id": 95137, "credit_id": "53e0e005c3a3686c56003a97", "cast_id": 17, "profile_path": "/gU11hhT43Aj7NSNaGprBxYatqPp.jpg", "order": 4}, {"name": "Fran\u00e7ois Chau", "character": "Dr. Chang", "id": 60851, "credit_id": "52fe4a87c3a36847f81d3625", "cast_id": 8, "profile_path": "/r8EocoGAJVky0bQ6gyfxcabuTPz.jpg", "order": 5}, {"name": "Samantha Futerman", "character": "Sally Huang", "id": 19859, "credit_id": "52fe4a87c3a36847f81d362d", "cast_id": 10, "profile_path": "/9Wx5VKwW60g7WEREbufz7CYKamC.jpg", "order": 6}, {"name": "Daniel Booko", "character": "Julian", "id": 183066, "credit_id": "52fe4a87c3a36847f81d3629", "cast_id": 9, "profile_path": "/zVTpVwVl8idwr6rhQBDfZ1DFTkv.jpg", "order": 7}, {"name": "Danielle Hartnett", "character": "(voice)", "id": 1002409, "credit_id": "52fe4a88c3a36847f81d3641", "cast_id": 14, "profile_path": "/wvvMbV1tdVeE9pyiBPFBATbcTQj.jpg", "order": 8}, {"name": "Basil Harris", "character": "Campus Cop #2", "id": 176048, "credit_id": "52fe4a88c3a36847f81d3645", "cast_id": 15, "profile_path": "/syZPH3wa6JzLrvOiPlP0z72ZEW2.jpg", "order": 9}, {"name": "Josie Loren", "character": "Pledge Aguilar", "id": 146516, "credit_id": "52fe4a88c3a36847f81d3649", "cast_id": 16, "profile_path": "/5uNgiW4jcq0eINKg8P9LZHqLVv4.jpg", "order": 10}], "directors": [{"name": "Scott Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a36847f81d3605", "profile_path": "/neOJNZYO1DYNa2eEqJHBSUXBxqM.jpg", "id": 226089}, {"name": "Jon Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a36847f81d360b", "profile_path": null, "id": 52114}], "vote_average": 5.6, "runtime": 93}, "9509": {"poster_path": "/qAbRLPe8T7ehKzr1Tgo78T7ASrS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130293714, "overview": "Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.", "video": false, "id": 9509, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Man on Fire", "tagline": "Creasy's art is death, and he is about to paint his masterpiece.", "vote_count": 502, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0328107", "adult": false, "backdrop_path": "/kkR6zvcaolpnsMcgiCKrlcxIqVR.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Epsilon Motion Pictures", "id": 1171}], "release_date": "2004-04-23", "popularity": 1.47501940892867, "original_title": "Man on Fire", "budget": 70000000, "cast": [{"name": "Denzel Washington", "character": "Creasy", "id": 5292, "credit_id": "52fe4501c3a36847f80b6edb", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Dakota Fanning", "character": "Pita", "id": 501, "credit_id": "52fe4501c3a36847f80b6edf", "cast_id": 2, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 1}, {"name": "Marc Anthony", "character": "Samuel", "id": 47775, "credit_id": "52fe4501c3a36847f80b6ee3", "cast_id": 3, "profile_path": "/b6E5BCQkOXlxT1E4nHRyOpehuYU.jpg", "order": 2}, {"name": "Radha Mitchell", "character": "Lisa", "id": 8329, "credit_id": "52fe4501c3a36847f80b6ee7", "cast_id": 4, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 3}, {"name": "Christopher Walken", "character": "Rayburn", "id": 4690, "credit_id": "52fe4501c3a36847f80b6eeb", "cast_id": 5, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 4}, {"name": "Giancarlo Giannini", "character": "Manzano", "id": 3753, "credit_id": "52fe4501c3a36847f80b6f37", "cast_id": 18, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 5}, {"name": "Rachel Ticotin", "character": "Mariana", "id": 10768, "credit_id": "52fe4501c3a36847f80b6f3b", "cast_id": 19, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 6}, {"name": "Jes\u00fas Ochoa", "character": "Fuentes", "id": 69865, "credit_id": "52fe4501c3a36847f80b6f3f", "cast_id": 20, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 7}, {"name": "Mickey Rourke", "character": "Jordan", "id": 2295, "credit_id": "52fe4501c3a36847f80b6f43", "cast_id": 21, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 8}, {"name": "Angelina Pel\u00e1ez", "character": "Sister Anna", "id": 23877, "credit_id": "52fe4501c3a36847f80b6f47", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Gustavo S\u00e1nchez Parra", "character": "Daniel Sanchez", "id": 544146, "credit_id": "52fe4501c3a36847f80b6f4b", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4501c3a36847f80b6ef7", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 7.0, "runtime": 146}, "9513": {"poster_path": "/aagx3t2Xv7R26hcqzrayTT28Yww.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141702264, "overview": "Garfield is back and this time Garfield and his canine sidekick Odie follows their owner, Jon Arbuckle, to England, the U.K. may never recover, as Garfield is mistaken for a look-alike, regal cat who has inherited a castle.", "video": false, "id": 9513, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Garfield: A Tail of Two Kitties", "tagline": "The Ego has landed.", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bd1aICMrmcz94fjTibCpuQrQVJg.jpg", "poster_path": "/fPCiS9fijCf8zHaddw2QHL6SLgK.jpg", "id": 86115, "name": "Garfield Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455499", "adult": false, "backdrop_path": "/wF5fjrTvBjceOc0lKbUp9JKBOYy.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2006-06-15", "popularity": 0.516653039127517, "original_title": "Garfield: A Tail of Two Kitties", "budget": 0, "cast": [{"name": "Jennifer Love Hewitt", "character": "Liz", "id": 33259, "credit_id": "52fe4501c3a36847f80b7077", "cast_id": 3, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 0}, {"name": "Billy Connolly", "character": "Dargis", "id": 9188, "credit_id": "52fe4501c3a36847f80b707b", "cast_id": 4, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 1}, {"name": "Ian Abercrombie", "character": "Smithee", "id": 11764, "credit_id": "52fe4501c3a36847f80b707f", "cast_id": 5, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Jon Arbuckle", "id": 33654, "credit_id": "52fe4502c3a36847f80b70bf", "cast_id": 16, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Tim Curry", "character": "Prince (voice)", "id": 13472, "credit_id": "52fe4502c3a36847f80b70c3", "cast_id": 18, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 4}, {"name": "Bill Murray", "character": "Garfield (voice)", "id": 1532, "credit_id": "52fe4502c3a36847f80b70c7", "cast_id": 19, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 5}, {"name": "Roger Rees", "character": "Mr. Hobbs", "id": 16407, "credit_id": "52fe4502c3a36847f80b70cb", "cast_id": 20, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 6}, {"name": "Lucy Davis", "character": "Abby", "id": 11111, "credit_id": "52fe4502c3a36847f80b70cf", "cast_id": 21, "profile_path": "/60IfOPYBMaJwUt0M9UJ2QJCxH4S.jpg", "order": 7}, {"name": "Lena Cardwell", "character": "Teenage Tourist", "id": 151260, "credit_id": "52fe4502c3a36847f80b70d3", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Veronica Alicino", "character": "Veterinary Assistant", "id": 49916, "credit_id": "52fe4502c3a36847f80b70d7", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Jane Carr", "character": "Mrs. Whitney", "id": 42000, "credit_id": "52fe4502c3a36847f80b70db", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Oliver Muirhead", "character": "Mr. Greene", "id": 93035, "credit_id": "52fe4502c3a36847f80b70df", "cast_id": 25, "profile_path": "/vyWab6wD6r3yP56FA87hwInmdPZ.jpg", "order": 11}, {"name": "J. B. Blanc", "character": "Hotel Porter", "id": 136152, "credit_id": "52fe4502c3a36847f80b70e3", "cast_id": 26, "profile_path": "/6P15QAzQKhaaE60LMsyepnbdrjS.jpg", "order": 12}, {"name": "Vernee Watson-Johnson", "character": "Tourist #2", "id": 157085, "credit_id": "52fe4502c3a36847f80b70e7", "cast_id": 27, "profile_path": "/dRXXPoeAAbl1PhURCJfKCDoZiUn.jpg", "order": 13}, {"name": "Russell Milton", "character": "Bobby", "id": 956753, "credit_id": "52fe4502c3a36847f80b70eb", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Ben Falcone", "character": "American Tourist", "id": 170820, "credit_id": "52fe4502c3a36847f80b70ef", "cast_id": 29, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 15}, {"name": "Greg Ellis", "character": "Nigel", "id": 4031, "credit_id": "52fe4502c3a36847f80b70f3", "cast_id": 30, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 16}, {"name": "Bob Hoskins", "character": "Winston", "id": 382, "credit_id": "52fe4502c3a36847f80b70f7", "cast_id": 31, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 17}, {"name": "Sharon Osbourne", "character": "Christophe", "id": 133196, "credit_id": "52fe4502c3a36847f80b70fb", "cast_id": 32, "profile_path": "/tISENyjIYi2ueZjSlSZi9Q9lecm.jpg", "order": 18}, {"name": "S\u00e9bastien Cauet", "character": "Garfield (french voice)", "id": 1155949, "credit_id": "52fe4502c3a36847f80b70ff", "cast_id": 33, "profile_path": "/rJIycdGmHO4IuuKF7KQpLopESop.jpg", "order": 19}], "directors": [{"name": "Tim Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4502c3a36847f80b7085", "profile_path": "/jN6KyRKLoI1UgC1EnyAEYJ5uDYy.jpg", "id": 49903}], "vote_average": 5.2, "runtime": 78}, "1586": {"poster_path": "/f5t7Df50xjniLlE80ty2dYsZBqI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92913171, "overview": "Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.", "video": false, "id": 1586, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Secret Window", "tagline": "The most important part of a story is the ending.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363988", "adult": false, "backdrop_path": "/ojsY0XyCSsJvm0n7YTwumQcvBqT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Grand Slam Productions", "id": 23651}, {"name": "Pariah Entertainment Group", "id": 1271}], "release_date": "2004-03-11", "popularity": 0.628937547335468, "original_title": "Secret Window", "budget": 40000000, "cast": [{"name": "Johnny Depp", "character": "Mort Rainey", "id": 85, "credit_id": "52fe4301c3a36847f8033633", "cast_id": 1, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "John Turturro", "character": "John Shooter", "id": 1241, "credit_id": "52fe4301c3a36847f8033637", "cast_id": 2, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Maria Bello", "character": "Amy Rainey", "id": 49, "credit_id": "52fe4301c3a36847f803363b", "cast_id": 3, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 2}, {"name": "Timothy Hutton", "character": "Ted Milner", "id": 16327, "credit_id": "52fe4301c3a36847f803363f", "cast_id": 4, "profile_path": "/qSLWuXpkuuqAXzI3dQkYshXAv2O.jpg", "order": 3}, {"name": "Charles S. Dutton", "character": "Ken Karsch", "id": 17764, "credit_id": "52fe4301c3a36847f8033643", "cast_id": 5, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 4}, {"name": "Len Cariou", "character": "Sheriff Dave Newsome", "id": 41247, "credit_id": "537b40a4c3a3685e0d001616", "cast_id": 14, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 6}, {"name": "Joan Heney", "character": "Mrs. Garvey", "id": 59199, "credit_id": "537b40cac3a3685e1a0015c9", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "John Dunn-Hill", "character": "Tom Greenleaf (as John Dunn Hill)", "id": 218899, "credit_id": "537b40e4c3a3685e1a0015ce", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Vlasta Vr\u00e1na", "character": "Fire Chief Wickersham", "id": 58169, "credit_id": "537b40fec3a3685e41001870", "cast_id": 17, "profile_path": "/ug27TmlJNKvhJEa6xWGCpPz4o2q.jpg", "order": 9}, {"name": "Matt Holland", "character": "Detective Bradley", "id": 108302, "credit_id": "537b411ac3a3685e290017a6", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Gillian Ferrabee", "character": "Fran Evans", "id": 1233017, "credit_id": "537b4134c3a3685e290017aa", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Bronwen Mantel", "character": "Greta Bowie", "id": 141789, "credit_id": "537b41950e0a267fea0014d9", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Elizabeth Marleau", "character": "Juliet Stoker", "id": 206652, "credit_id": "537b43860e0a26012d0016bb", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Kyle Allatt", "character": "Busboy", "id": 1321651, "credit_id": "537b43980e0a267ffb001729", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Richard Jutras", "character": "Motel Manager", "id": 1225492, "credit_id": "537b43b40e0a267ff4001708", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033649", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 6.3, "runtime": 96}, "9522": {"poster_path": "/vlnDz1Y3IcBhPyQAqAVtNghx4Eq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 285176741, "overview": "John and his buddy Jeremy are emotional criminals who know how to use a woman's hopes and dreams for their own carnal gain. And their modus operandi? Crashing weddings. Normally, they meet guests who want to toast the romantic day with a random hook-up. But when John meets Claire, he discovers what true love -- and heartache -- feels like.", "video": false, "id": 9522, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Wedding Crashers", "tagline": "Life's a Party. Crash It.", "vote_count": 357, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396269", "adult": false, "backdrop_path": "/4V0hNC6SEbm836eg2BeaJvx1ZEO.jpg", "production_companies": [{"name": "Avery Pix", "id": 1565}, {"name": "New Line Cinema", "id": 12}, {"name": "Tapestry Films", "id": 870}], "release_date": "2005-07-14", "popularity": 1.38118835894262, "original_title": "Wedding Crashers", "budget": 40000000, "cast": [{"name": "Owen Wilson", "character": "John Beckwith", "id": 887, "credit_id": "52fe4503c3a36847f80b7507", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Vince Vaughn", "character": "Jeremy Grey", "id": 4937, "credit_id": "52fe4503c3a36847f80b750b", "cast_id": 2, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Secretary William Cleary", "id": 4690, "credit_id": "52fe4503c3a36847f80b750f", "cast_id": 3, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Rachel McAdams", "character": "Claire Cleary", "id": 53714, "credit_id": "52fe4503c3a36847f80b7513", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 3}, {"name": "Isla Fisher", "character": "Gloria Cleary", "id": 52848, "credit_id": "52fe4503c3a36847f80b7565", "cast_id": 18, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 4}, {"name": "Jane Seymour", "character": "Kathleen Cleary", "id": 10223, "credit_id": "52fe4503c3a36847f80b7569", "cast_id": 19, "profile_path": "/tBWYbLSieHshqVhy1EXlv12mBjs.jpg", "order": 5}, {"name": "Bradley Cooper", "character": "Zachary 'Sack' Lodge", "id": 51329, "credit_id": "52fe4503c3a36847f80b756d", "cast_id": 20, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 6}, {"name": "Henry Gibson", "character": "Father O'Neil", "id": 19439, "credit_id": "52fe4503c3a36847f80b7571", "cast_id": 21, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 7}, {"name": "Keir O'Donnell", "character": "Todd Cleary", "id": 39213, "credit_id": "52fe4503c3a36847f80b7575", "cast_id": 22, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 8}, {"name": "David Conrad", "character": "Trap", "id": 43479, "credit_id": "52fe4503c3a36847f80b7579", "cast_id": 23, "profile_path": "/l8gtpaQ6LuR8nvYbr3iq9ys7hQx.jpg", "order": 9}, {"name": "Ron Canada", "character": "Randolph", "id": 85170, "credit_id": "52fe4503c3a36847f80b757d", "cast_id": 24, "profile_path": "/wN1myF7qnxJCks6OuS3BXVlShSG.jpg", "order": 10}, {"name": "Ellen Dow", "character": "Grandma Mary Cleary", "id": 85171, "credit_id": "52fe4503c3a36847f80b7581", "cast_id": 25, "profile_path": "/suREaXoLKSBhJPsMXnD6P0EnGXf.jpg", "order": 11}, {"name": "Dwight Yoakam", "character": "Mr. Kroeger", "id": 20309, "credit_id": "52fe4503c3a36847f80b7585", "cast_id": 26, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 12}, {"name": "Rebecca De Mornay", "character": "Mrs. Kroeger", "id": 28412, "credit_id": "52fe4503c3a36847f80b7589", "cast_id": 27, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 13}, {"name": "Jennifer Alden", "character": "Christina Cleary", "id": 180327, "credit_id": "52fe4503c3a36847f80b758d", "cast_id": 28, "profile_path": "/6J4SJiv4HbcowULJiRS3GeOYX8V.jpg", "order": 14}, {"name": "Kathryn Joosten", "character": "Chazz's Mom", "id": 106935, "credit_id": "52fe4503c3a36847f80b7591", "cast_id": 29, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 15}, {"name": "Will Ferrell", "character": "Chazz Reinhold", "id": 23659, "credit_id": "52fe4503c3a36847f80b7595", "cast_id": 30, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 16}, {"name": "Diora Baird", "character": "Vivian", "id": 59263, "credit_id": "52fe4504c3a36847f80b7599", "cast_id": 31, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 17}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe4503c3a36847f80b7519", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 6.2, "runtime": 119}, "42297": {"poster_path": "/j7AwTMAauPuwO8mixpU6SSPuPeZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89519773, "overview": "The Burlesque Lounge has its best days behind it. Tess, a retired dancer and owner of the venue, struggles to keep the aging theater alive, facing all kinds of financial and artistic challenges. With the Lounge's troupe members becoming increasingly distracted by personal problems and a threat coming from a wealthy businessman's quest to buy the spot from Tess, the good fortune seems to have abandoned the club altogether. Meanwhile, the life of Ali, a small-town girl from Iowa, is about to change dramatically. Hired by Tess as a waitress at the Lounge, Ali escapes a hollow past and quickly falls in love with the art of burlesque. Backed by newfound friends amongst the theater's crew, she manages to fulfill her dreams of being on stage herself. Things take a dramatic turn though when Ali's big voice makes her become the main attraction of the revue", "video": false, "id": 42297, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Burlesque", "tagline": "It takes a legend... to make a star", "vote_count": 125, "homepage": "http://www.burlesquethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1126591", "adult": false, "backdrop_path": "/fNsWLoZUdOhRriHS5AHcbb4n3da.jpg", "production_companies": [{"name": "Bedford Falls Productions", "id": 348}], "release_date": "2010-11-23", "popularity": 0.358291361335644, "original_title": "Burlesque", "budget": 55000000, "cast": [{"name": "Cher", "character": "Tess", "id": 38225, "credit_id": "52fe45fac3a36847f80e5717", "cast_id": 1, "profile_path": "/nLi4qPXWEuhjc31bmbeINLVZ8zS.jpg", "order": 0}, {"name": "Christina Aguilera", "character": "Ali", "id": 53397, "credit_id": "52fe45fac3a36847f80e571b", "cast_id": 2, "profile_path": "/syaj20GgGkFaHtt0khpCZaJD5DJ.jpg", "order": 1}, {"name": "Eric Dane", "character": "Markus", "id": 58115, "credit_id": "52fe45fac3a36847f80e571f", "cast_id": 3, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 2}, {"name": "Cam Gigandet", "character": "Jack", "id": 55086, "credit_id": "52fe45fac3a36847f80e5723", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 3}, {"name": "Julianne Hough", "character": "Georgia", "id": 143240, "credit_id": "52fe45fac3a36847f80e5727", "cast_id": 5, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 4}, {"name": "Alan Cumming", "character": "Alexis", "id": 10697, "credit_id": "52fe45fac3a36847f80e572b", "cast_id": 6, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 5}, {"name": "Peter Gallagher", "character": "Vince", "id": 8212, "credit_id": "52fe45fac3a36847f80e572f", "cast_id": 7, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 6}, {"name": "Kristen Bell", "character": "Nikki", "id": 40462, "credit_id": "52fe45fac3a36847f80e5733", "cast_id": 8, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 7}, {"name": "Stanley Tucci", "character": "Sean", "id": 2283, "credit_id": "52fe45fac3a36847f80e5737", "cast_id": 9, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 8}, {"name": "Dianna Agron", "character": "Natalie", "id": 141687, "credit_id": "52fe45fac3a36847f80e573b", "cast_id": 10, "profile_path": "/fS4vAPA6ErhHCWRBY2PVIwvnajU.jpg", "order": 9}, {"name": "Glynn Turman", "character": "Harold Saint", "id": 114674, "credit_id": "52fe45fbc3a36847f80e5753", "cast_id": 18, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 10}, {"name": "David Walton", "character": "Mark DJ", "id": 83231, "credit_id": "52fe45fac3a36847f80e5743", "cast_id": 12, "profile_path": "/kwtK2P8W0PMmaY2yrFwGlDh55y5.jpg", "order": 11}, {"name": "Terrence Jenkins", "character": "Dave", "id": 143242, "credit_id": "52fe45fac3a36847f80e5747", "cast_id": 13, "profile_path": "/h9hYAsDHevmr3mHFpP8CbsX0BUA.jpg", "order": 12}, {"name": "Chelsea Traille", "character": "Coco", "id": 143243, "credit_id": "52fe45fac3a36847f80e574b", "cast_id": 14, "profile_path": "/sEOfjBzR0S0llzSfrnJm3v57Z8A.jpg", "order": 13}, {"name": "Tanee McCall", "character": "Scarlett", "id": 143244, "credit_id": "52fe45fbc3a36847f80e574f", "cast_id": 15, "profile_path": "/8oYyoUOGZZfQKyhCw6t47ZVROzG.jpg", "order": 14}], "directors": [{"name": "Steve Antin", "department": "Directing", "job": "Director", "credit_id": "52fe45fbc3a36847f80e5759", "profile_path": "/3GVyNtFWsPz2nCxSgCo6WN6H0UN.jpg", "id": 42745}], "vote_average": 6.3, "runtime": 119}, "9530": {"poster_path": "/wunuRnWuDKJQzsd1OnK55fpSzPQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87528173, "overview": "Climbing aboard their mammoth recreational vehicle for a cross-country road trip to the Colorado Rockies, the McNeive family -- led by dysfunctional patriarch Bob -- prepares for the adventure of a lifetime. But spending two weeks together in one seriously small space has a way of cramping their style.", "video": false, "id": 9530, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "RV", "tagline": "One Family. Eight Wheels. No brakes.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449089", "adult": false, "backdrop_path": "/masf7h6JxkH2q6RlqKccry3mPCn.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2006-04-28", "popularity": 0.60964594007419, "original_title": "RV", "budget": 50000000, "cast": [{"name": "Robin Williams", "character": "Bob Munro", "id": 2157, "credit_id": "52fe4505c3a36847f80b7965", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Cheryl Hines", "character": "Jamie Munro", "id": 57854, "credit_id": "52fe4505c3a36847f80b7969", "cast_id": 2, "profile_path": "/g6CJqdMVRENrMRiva5spTuJkWRd.jpg", "order": 1}, {"name": "Joanna 'JoJo' Levesque", "character": "Cassie Munro", "id": 57855, "credit_id": "52fe4505c3a36847f80b796d", "cast_id": 3, "profile_path": "/vKGPm1Y7H39mfIc2kSAUnCZRCMm.jpg", "order": 2}, {"name": "Josh Hutcherson", "character": "Carl Munro", "id": 27972, "credit_id": "52fe4505c3a36847f80b7971", "cast_id": 4, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 3}, {"name": "Jeff Daniels", "character": "Travis Gornicke", "id": 8447, "credit_id": "52fe4505c3a36847f80b7975", "cast_id": 5, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 4}, {"name": "Kristin Chenoweth", "character": "Mary Jo Gornicke", "id": 52775, "credit_id": "52fe4505c3a36847f80b79a3", "cast_id": 13, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 5}, {"name": "Hunter Parrish", "character": "Earl Gornicke", "id": 35236, "credit_id": "52fe4505c3a36847f80b79a7", "cast_id": 14, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 6}, {"name": "Chloe Sonnenfeld", "character": "Moon Gornicke", "id": 978698, "credit_id": "52fe4505c3a36847f80b79ab", "cast_id": 15, "profile_path": "/5NFFTnGC5thAJHgeHO4rRWRtJYL.jpg", "order": 7}, {"name": "Alex Ferris", "character": "Billy Gornicke", "id": 59243, "credit_id": "52fe4505c3a36847f80b79af", "cast_id": 16, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 8}, {"name": "Will Arnett", "character": "Todd Mallory", "id": 21200, "credit_id": "52fe4505c3a36847f80b79b3", "cast_id": 17, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 9}, {"name": "Tony Hale", "character": "Frank", "id": 25147, "credit_id": "52fe4505c3a36847f80b79b7", "cast_id": 18, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 10}, {"name": "Brian Howe", "character": "Marty", "id": 1990, "credit_id": "52fe4505c3a36847f80b79bb", "cast_id": 19, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 11}, {"name": "Richard Ian Cox", "character": "Laird", "id": 153783, "credit_id": "52fe4505c3a36847f80b79bf", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Erika-Shaye Gair", "character": "Cassie, age 5", "id": 962340, "credit_id": "52fe4505c3a36847f80b79c3", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Veronika Sztopa", "character": "Gretchen", "id": 978699, "credit_id": "52fe4505c3a36847f80b79c7", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Rob LaBelle", "character": "Larry Moiphine", "id": 42708, "credit_id": "52fe4505c3a36847f80b79cb", "cast_id": 23, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 15}, {"name": "Brian Markinson", "character": "Garry Moiphine", "id": 28004, "credit_id": "52fe4505c3a36847f80b79cf", "cast_id": 24, "profile_path": "/CL63sueT7SSBZQwoPH23FQEIR8.jpg", "order": 16}, {"name": "Kirsten Williamson", "character": "Tammy", "id": 169511, "credit_id": "52fe4505c3a36847f80b79d3", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Brendan Fletcher", "character": "Howie", "id": 32205, "credit_id": "52fe4505c3a36847f80b79d7", "cast_id": 26, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 18}, {"name": "Matthew Gray Gubler", "character": "Joe Joe", "id": 5661, "credit_id": "52fe4505c3a36847f80b79db", "cast_id": 27, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 19}, {"name": "Stephen E. Miller", "character": "Organ Stew Guy", "id": 75467, "credit_id": "52fe4505c3a36847f80b79df", "cast_id": 28, "profile_path": "/d06RqoXxwaR0E6ZvVkthxy6RIpw.jpg", "order": 20}, {"name": "Malcolm Scott", "character": "Kenny", "id": 52514, "credit_id": "52fe4505c3a36847f80b79e3", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Deborah DeMille", "character": "Dump Lady", "id": 52513, "credit_id": "52fe4505c3a36847f80b79e7", "cast_id": 30, "profile_path": null, "order": 22}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b797b", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 5.5, "runtime": 99}, "65759": {"poster_path": "/gY8lWCObaGvcDsmeM8QHBF4AZVk.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 150406466, "overview": "Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters The Mighty Sven, a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to brings together the penguin nations and their allies to set things right.", "video": false, "id": 65759, "genres": [{"id": 16, "name": "Animation"}, {"id": 10402, "name": "Music"}], "title": "Happy Feet Two", "tagline": "Every step counts.", "vote_count": 111, "homepage": "http://happyfeettwo.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": "/b9CLLxKsh63AHEkGE9nz9bupQqh.jpg", "poster_path": "/pYbF2FAi2MEVshl8jCDNTRNdTF0.jpg", "id": 92012, "name": "Happy Feet Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1402488", "adult": false, "backdrop_path": "/2ItHN3UMJyWmRdAoaXmdiffjiGR.jpg", "production_companies": [{"name": "Dr D Studios", "id": 28381}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Kennedy Miller Mitchell", "id": 28382}], "release_date": "2011-11-17", "popularity": 1.05712512830809, "original_title": "Happy Feet Two", "budget": 130000000, "cast": [{"name": "Elijah Wood", "character": "Mumble (voice)", "id": 109, "credit_id": "52fe4718c3a368484e0b4cf9", "cast_id": 1, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Robin Williams", "character": "Ramon / Lovelace (voice)", "id": 2157, "credit_id": "52fe4718c3a368484e0b4cfd", "cast_id": 4, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Pink", "character": "Gloria (voice)", "id": 77271, "credit_id": "52fe4718c3a368484e0b4d07", "cast_id": 6, "profile_path": "/A4tOzacgaBltm522XYxLodG3ImX.jpg", "order": 2}, {"name": "E.G. Daily", "character": "Erik (voice)", "id": 15274, "credit_id": "52fe4718c3a368484e0b4d0b", "cast_id": 7, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 3}, {"name": "Johnny A. Sanchez", "character": "Lombardo (voice)", "id": 59783, "credit_id": "52fe4718c3a368484e0b4d0f", "cast_id": 8, "profile_path": "/sZgx2rtzJucOh3z92NZVhkNbfTk.jpg", "order": 4}, {"name": "Lombardo Boyar", "character": "Raul (voice)", "id": 4992, "credit_id": "52fe4718c3a368484e0b4d13", "cast_id": 9, "profile_path": "/ygctSZGBRkmwARihr8F1Bb7PkIP.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Carmen (voice)", "id": 63522, "credit_id": "52fe4718c3a368484e0b4d17", "cast_id": 10, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Common", "character": "Seymour (voice)", "id": 4238, "credit_id": "52fe4718c3a368484e0b4d1b", "cast_id": 11, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 7}, {"name": "Hugo Weaving", "character": "Noah the Elder (voice)", "id": 1331, "credit_id": "52fe4718c3a368484e0b4d1f", "cast_id": 12, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 8}, {"name": "Brad Pitt", "character": "Will the Krill (voice)", "id": 287, "credit_id": "52fe4718c3a368484e0b4d23", "cast_id": 13, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 9}, {"name": "Matt Damon", "character": "Bill the Krill (voice)", "id": 1892, "credit_id": "52fe4718c3a368484e0b4d27", "cast_id": 14, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 10}, {"name": "Carlos Alazraqui", "character": "Nestor (voice)", "id": 59784, "credit_id": "551239d0c3a3680296002e7e", "cast_id": 26, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 11}, {"name": "Jeffrey Garcia", "character": "Rinaldo (voice) (as Jeff Garcia)", "id": 59782, "credit_id": "55123a1bc3a3680296002e88", "cast_id": 27, "profile_path": "/vxzRJbYNXUXUG8V8rcWlnj5PCKJ.jpg", "order": 12}, {"name": "Ava Acres", "character": "Erik (voice)", "id": 1340664, "credit_id": "55123bf5925141045c0009b2", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Benjamin Flores Jr.", "character": "Atticus (voice) (as Benjamin 'Lil P-Nut' Flores) (as Jr.)", "id": 1335308, "credit_id": "55123c2cc3a36861950009cf", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Meibh Campbell", "character": "Bo (voice)", "id": 1445416, "credit_id": "55123c47925141065c008cea", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Magda Szubanski", "character": "Miss Viola (voice)", "id": 45586, "credit_id": "55123c9ec3a36860b30009f9", "cast_id": 31, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 16}, {"name": "Hank Azaria", "character": "The Mighty Sven (voice)", "id": 5587, "credit_id": "55123d78925141045c0009dd", "cast_id": 32, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 17}, {"name": "Richard Carter", "character": "Bryan the Beachmaster (voice)", "id": 44838, "credit_id": "55123e68c3a36860b3000a2f", "cast_id": 33, "profile_path": "/8Qo8Gp5zwKM82MK0Gh6rF1ullrx.jpg", "order": 18}, {"name": "Lee Perry", "character": "Wayne the Challenger / Francesco / Eggbert / Leopard Seal (voice)", "id": 1445417, "credit_id": "55123f18925141045c000a1a", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Jai Sloper", "character": "Weaner Pup (voice)", "id": 1445418, "credit_id": "55123f31c3a3680296002f04", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Oscar Beard", "character": "Weaner Pup (voice)", "id": 1445419, "credit_id": "55123f4c92514148dd0015ce", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Anthony LaPaglia", "character": "The Alpha Skua (voice)", "id": 57829, "credit_id": "55123f84c3a36860b3000a46", "cast_id": 37, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 22}, {"name": "Danny Mann", "character": "Brokebeak (voice)", "id": 52699, "credit_id": "55123fa09251410701008ce9", "cast_id": 38, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 23}, {"name": "Gary Eck", "character": "Additional Voices (voice)", "id": 104428, "credit_id": "55124127c3a36860b3000a72", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Imogen Trowell", "character": "Additional Voices (voice)", "id": 1445423, "credit_id": "551241469251410445000a8a", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Jordan Prosser", "character": "Additional Voices (voice)", "id": 1197937, "credit_id": "55124173c3a3686195000a54", "cast_id": 41, "profile_path": null, "order": 26}, {"name": "David Arnott", "character": "Additional Voices (voice)", "id": 57910, "credit_id": "5512421bc3a36860b3000a97", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Robin Atkin Downes", "character": "Additional Voices (voice)", "id": 130081, "credit_id": "5512425292514104ab0009d8", "cast_id": 43, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 28}, {"name": "Sarah Aubrey", "character": "Additional Voices (voice)", "id": 1246964, "credit_id": "55124292c3a3686195000a8d", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "Veena Bidasha", "character": "Additional Voices (voice)", "id": 1445424, "credit_id": "551242b69251410445000ab3", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Denise Blasor", "character": "Adelie Chica (voice)", "id": 1026727, "credit_id": "5512433b92514103e90009e5", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Holland Broggie", "character": "Additional Voices (voice)", "id": 1445425, "credit_id": "551243689251415caa002d04", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Catherine Cavadini", "character": "Additional Voices (voice) (as Catherine Cavadini)", "id": 64948, "credit_id": "5512439ac3a3686195000aa4", "cast_id": 48, "profile_path": "/o2wULQltvbzCTCJitNeT72AjklR.jpg", "order": 33}, {"name": "Rob Coleman", "character": "Additional Voices (voice)", "id": 1445426, "credit_id": "551243cb9251415caa002d14", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Warren Coleman", "character": "Additional Voices (voice)", "id": 59767, "credit_id": "551244049251415caa002d1c", "cast_id": 50, "profile_path": null, "order": 35}, {"name": "Will Collyer", "character": "Additional Voices (voice)", "id": 105191, "credit_id": "5512443a9251410445000ad8", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "Karissa Corday", "character": "Additional Voices (voice)", "id": 1445427, "credit_id": "55124457c3a3686195000ab9", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Mason Vale Cotton", "character": "Additional Voices (voice)", "id": 212234, "credit_id": "55124491c3a36860b3000ac8", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Django Craig", "character": "Additional Voices (voice)", "id": 1445428, "credit_id": "551244afc3a3683f390091c9", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "John Demita", "character": "Additional Voices (voice)", "id": 56348, "credit_id": "551244e9c3a36801bb002eeb", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Liza de Weerd", "character": "Additional Voices (voice)", "id": 220001, "credit_id": "5512e56a92514104450017f2", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Dashel Eck", "character": "Additional Voices (voice)", "id": 1445639, "credit_id": "5512e58792514107010099a6", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Rosa Fernandez", "character": "Additional Voices (voice)", "id": 1445640, "credit_id": "5512e5bac3a36801bb003acc", "cast_id": 58, "profile_path": null, "order": 43}, {"name": "Charlie Finn", "character": "Additional Voices (voice)", "id": 111122, "credit_id": "5512e5ed92514104450017f9", "cast_id": 59, "profile_path": "/4oaJsmvpQKo42UugAXarmizsGPu.jpg", "order": 44}, {"name": "Aaron Fors", "character": "Additional Voices (voice)", "id": 53209, "credit_id": "5512e61c92514104ab00167a", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Pat Fraley", "character": "Additional Voices (voice)", "id": 34737, "credit_id": "5512e63e9251410462000187", "cast_id": 61, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 46}, {"name": "Nicolette Gani", "character": "Additional Voices (voice)", "id": 1445641, "credit_id": "5512e658c3a36861950016fe", "cast_id": 62, "profile_path": null, "order": 47}, {"name": "Lillian Groag", "character": "Additional Voices (voice)", "id": 1445642, "credit_id": "5512e676c3a3683f39009e4b", "cast_id": 63, "profile_path": null, "order": 48}, {"name": "Monica Guzman", "character": "Additional Voices (voice)", "id": 1445643, "credit_id": "5512e6ecc3a3683f39009e54", "cast_id": 64, "profile_path": null, "order": 49}, {"name": "Aaron Hendry", "character": "Additional Voices (voice)", "id": 61536, "credit_id": "551380d49251412be40006cb", "cast_id": 65, "profile_path": null, "order": 50}, {"name": "Nathan Kameya", "character": "Additional Voices (voice)", "id": 1445761, "credit_id": "551380fdc3a36841f3000739", "cast_id": 66, "profile_path": null, "order": 51}, {"name": "Daamen J. Krall", "character": "Additional Voices (voice) (as Daamen Krall)", "id": 96310, "credit_id": "55138128c3a3683f3900ae4b", "cast_id": 67, "profile_path": "/u0CORJ8e2vvw1dFARU4estHYS2I.jpg", "order": 52}, {"name": "Kal Mansoor", "character": "Additional Voices (voice)", "id": 1445763, "credit_id": "5513814e9251412be40006dc", "cast_id": 68, "profile_path": null, "order": 53}, {"name": "Ivo Nandi", "character": "Additional Voices (voice)", "id": 1346980, "credit_id": "5513819cc3a368407a000690", "cast_id": 69, "profile_path": "/fa3msIf4s4kjK4dRJi6ykP44Ek2.jpg", "order": 54}, {"name": "Roger Narayan", "character": "Bollywood Indian Penguin (voice)", "id": 1415835, "credit_id": "551381d5c3a36840a30006bb", "cast_id": 70, "profile_path": null, "order": 55}, {"name": "Jason Pace", "character": "Additional Voices (voice)", "id": 1231272, "credit_id": "55138215925141045c00299e", "cast_id": 71, "profile_path": null, "order": 56}, {"name": "Harry Pashley", "character": "Additional Voices (voice)", "id": 1445764, "credit_id": "55138256925141070100a909", "cast_id": 72, "profile_path": null, "order": 57}, {"name": "Max Pashley", "character": "Additional Voices (voice)", "id": 1445765, "credit_id": "55138277c3a3683f3900ae68", "cast_id": 73, "profile_path": null, "order": 58}, {"name": "Moira Quirk", "character": "Additional Voices (voice)", "id": 59057, "credit_id": "551382b19251412cec0006e6", "cast_id": 74, "profile_path": null, "order": 59}, {"name": "Michael Ralph", "character": "", "id": 138897, "credit_id": "551382f4c3a3683f3900ae77", "cast_id": 75, "profile_path": "/xGZQXknJRGGsgLhYct7lS6KkoA8.jpg", "order": 60}, {"name": "Noreen Reardon", "character": "Additional Voices (voice)", "id": 1182093, "credit_id": "5513834b9251410462001191", "cast_id": 76, "profile_path": null, "order": 61}, {"name": "Nancy Truman", "character": "Additional Voices (voice)", "id": 1441650, "credit_id": "5513843cc3a3684103000734", "cast_id": 77, "profile_path": "/6VUKUoyLB5U5Eti8w4Li4Zz6AwT.jpg", "order": 62}, {"name": "Nicole Vieira", "character": "Additional Voices (voice)", "id": 1445767, "credit_id": "55138501c3a368423900077e", "cast_id": 78, "profile_path": null, "order": 63}, {"name": "Ruth Zalduondo", "character": "Additional Voices (voice)", "id": 1445768, "credit_id": "55138526c3a368410300075b", "cast_id": 79, "profile_path": null, "order": 64}, {"name": "Septimus Caton", "character": "Guitarist", "id": 626531, "credit_id": "55138678c3a368423900079d", "cast_id": 80, "profile_path": null, "order": 65}, {"name": "Ivan Vunich", "character": "Beanie Man", "id": 1445771, "credit_id": "5513869b9251412c520006f7", "cast_id": 81, "profile_path": null, "order": 66}, {"name": "Arshad Aslam", "character": "Adelie Penguin (voice) (uncredited)", "id": 1445772, "credit_id": "551386c29251410445002a37", "cast_id": 82, "profile_path": null, "order": 67}, {"name": "H\u00e9l\u00e8ne Cardona", "character": "Ad\u00e9lie Penguin (voice) (uncredited)", "id": 5311, "credit_id": "5513870692514104620011fd", "cast_id": 83, "profile_path": "/9Am8lqQ5yUrGrlpYdOjp4p4iLwb.jpg", "order": 68}, {"name": "Justin Cotta", "character": "Scientist (voice) (uncredited)", "id": 1445773, "credit_id": "5513872ac3a3683f3900aeff", "cast_id": 84, "profile_path": null, "order": 69}, {"name": "Roberto Donati", "character": "Additional Voices (voice) (uncredited)", "id": 1445775, "credit_id": "551387e1c3a368619500270f", "cast_id": 85, "profile_path": null, "order": 70}, {"name": "Antony Ginandjar", "character": "Performance Capture Artist (uncredited)", "id": 1445776, "credit_id": "5513881cc3a3683f3900af29", "cast_id": 86, "profile_path": null, "order": 71}, {"name": "Ivy Mak", "character": "Scientist (voice) (uncredited)", "id": 1349388, "credit_id": "5513887ac3a3683f3900af39", "cast_id": 87, "profile_path": null, "order": 72}, {"name": "Sunil Malhotra", "character": "Indian Adelie Penguin (voice) (uncredited)", "id": 109014, "credit_id": "551389a4c3a36842390007fe", "cast_id": 88, "profile_path": null, "order": 73}, {"name": "Ajay Mehta", "character": "Indian Penguin (voice) (uncredited)", "id": 1218780, "credit_id": "551389e5c3a3686195002744", "cast_id": 89, "profile_path": null, "order": 74}, {"name": "Puja Mohindra", "character": "Bollywood Penguin (voice) (uncredited)", "id": 1225857, "credit_id": "55138a27925141045c002a82", "cast_id": 90, "profile_path": "/8qsJ3iBayZDmbSMbLObwOnoHf45.jpg", "order": 75}, {"name": "Carlos Moreno Jr.", "character": "Mexican Penguin (voice) (uncredited)", "id": 43965, "credit_id": "55138a65c3a36840a30007a3", "cast_id": 91, "profile_path": "/7edimrOaTjFiJfjsLfMRY5WvYLT.jpg", "order": 76}, {"name": "Eddie Tang", "character": "Chef (voice) (uncredited)", "id": 1445777, "credit_id": "55138a87c3a36841bd000886", "cast_id": 92, "profile_path": null, "order": 77}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4718c3a368484e0b4d03", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 5.9, "runtime": 100}, "9532": {"poster_path": "/dsQzDT39FLtNmOOYNjrCFsznn37.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53302314, "overview": "After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.", "video": false, "id": 9532, "genres": [{"id": 27, "name": "Horror"}], "title": "Final Destination", "tagline": "No accidents. No coincidences. No escapes. You can't cheat death.", "vote_count": 314, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0195714", "adult": false, "backdrop_path": "/b92g9XkggE7hNrdbOg3ecvGoMer.jpg", "production_companies": [{"name": "Hard Eight Pictures", "id": 48772}, {"name": "New Line Cinema", "id": 12}, {"name": "Zide-Perry Productions", "id": 3169}], "release_date": "2000-03-16", "popularity": 1.00169573588952, "original_title": "Final Destination", "budget": 23000000, "cast": [{"name": "Devon Sawa", "character": "Alex Chance Browning", "id": 50398, "credit_id": "52fe4505c3a36847f80b7a99", "cast_id": 1, "profile_path": "/mDMmS4G3cncEy1ngmop5deSan6X.jpg", "order": 0}, {"name": "Ali Larter", "character": "Clear Rivers", "id": 17303, "credit_id": "52fe4505c3a36847f80b7a9d", "cast_id": 2, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 1}, {"name": "Kerr Smith", "character": "Carter Horton", "id": 43442, "credit_id": "52fe4505c3a36847f80b7aa1", "cast_id": 3, "profile_path": "/8CVdfA5L27Nh2fPyLwax3Tn9Xkr.jpg", "order": 2}, {"name": "Tony Todd", "character": "William Bludworth", "id": 19384, "credit_id": "52fe4505c3a36847f80b7aa5", "cast_id": 4, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 3}, {"name": "Seann William Scott", "character": "Billy Hitchcock", "id": 57599, "credit_id": "52fe4505c3a36847f80b7aa9", "cast_id": 5, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 4}, {"name": "Kristen Cloke", "character": "Valerie Lewton", "id": 58392, "credit_id": "52fe4505c3a36847f80b7af5", "cast_id": 19, "profile_path": "/5gWv8zx4pjwSx3z1k9LUgzWRDA0.jpg", "order": 5}, {"name": "Chad Donella", "character": "Tod Waggner", "id": 86397, "credit_id": "53a69086c3a368707a0021df", "cast_id": 22, "profile_path": "/52JSV6Pka2KCcBVF4yRTGZ6CCDG.jpg", "order": 6}, {"name": "Amanda Detmer", "character": "Terry Chaney", "id": 19275, "credit_id": "53a690b4c3a3687a34002daa", "cast_id": 23, "profile_path": "/egJuJpoKVr9ZXsWYkBlGeqZZTEd.jpg", "order": 7}, {"name": "Brendan Fehr", "character": "George Waggner", "id": 72440, "credit_id": "53a690e2c3a368707a0021e7", "cast_id": 24, "profile_path": "/8tp3G4RMWNpxprEfyxvjhRFf6uq.jpg", "order": 8}, {"name": "Daniel Roebuck", "character": "Agent Weine", "id": 43774, "credit_id": "53a6911dc3a3687a2b002f2d", "cast_id": 25, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 9}, {"name": "Roger Guenveur Smith", "character": "Agent Schreck", "id": 40377, "credit_id": "53a6913dc3a3687a43002cba", "cast_id": 26, "profile_path": "/c6yUnUcbNxCUKAjucLlh6VHzmCd.jpg", "order": 10}, {"name": "Lisa Marie Caruk", "character": "Christa Marsh", "id": 81802, "credit_id": "53a69186c3a368707a0021f8", "cast_id": 27, "profile_path": "/9m4eiHcqNMXQnctPne9ZxLOftqa.jpg", "order": 11}, {"name": "Fred Keating", "character": "Howard Seigel", "id": 963962, "credit_id": "55031dcd925141282f003e80", "cast_id": 28, "profile_path": null, "order": 12}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b7aaf", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 6.2, "runtime": 98}, "9533": {"poster_path": "/sULs7GLEM2tqNBwE5ac5d6FRlBR.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92955420, "overview": "Former FBI agent Will Graham, who was once nearly killed by the savage Hannibal \"The Cannibal\" Lecter now has no choice but to face him again. It seems Lecter is the only one who can help Graham track down a new serial killer, Francis Dolarhyde -- but can he be trusted?", "video": false, "id": 9533, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Red Dragon", "tagline": "Before the Silence.", "vote_count": 362, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289765", "adult": false, "backdrop_path": "/mpTEeip03IoeLukOW5zp1eQ5FfG.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2002-09-29", "popularity": 0.369175018627074, "original_title": "Red Dragon", "budget": 78000000, "cast": [{"name": "Anthony Hopkins", "character": "Hannibal Lecter", "id": 4173, "credit_id": "52fe4505c3a36847f80b7b1d", "cast_id": 1, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Edward Norton", "character": "Will Graham", "id": 819, "credit_id": "52fe4505c3a36847f80b7b21", "cast_id": 2, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Francis Dolarhyde", "id": 5469, "credit_id": "52fe4505c3a36847f80b7b25", "cast_id": 3, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Harvey Keitel", "character": "Jack Crawford", "id": 1037, "credit_id": "52fe4505c3a36847f80b7b29", "cast_id": 4, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 3}, {"name": "Emily Watson", "character": "Reba McClane", "id": 1639, "credit_id": "52fe4505c3a36847f80b7b2d", "cast_id": 5, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Freddy Lounds", "id": 1233, "credit_id": "52fe4505c3a36847f80b7b31", "cast_id": 6, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Mary-Louise Parker", "character": "Molly Graham", "id": 18248, "credit_id": "52fe4505c3a36847f80b7b71", "cast_id": 19, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 6}, {"name": "Anthony Heald", "character": "Dr. Frederick Chilton", "id": 16293, "credit_id": "53d614d00e0a262844006de3", "cast_id": 20, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 7}, {"name": "Ken Leung", "character": "Lloyd Bowman", "id": 2131, "credit_id": "53d615ba0e0a26283e00706f", "cast_id": 21, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 8}, {"name": "Frankie Faison", "character": "Barney Matthews", "id": 13936, "credit_id": "53d615e60e0a26284d006a90", "cast_id": 22, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 9}, {"name": "Tyler Patrick Jones", "character": "Josh Graham", "id": 62821, "credit_id": "53d616060e0a26284a006e60", "cast_id": 23, "profile_path": "/deBdsmXr0VPBWuUhUfJcJT6jp5n.jpg", "order": 10}, {"name": "Frank Whaley", "character": "Ralph Mandy", "id": 11805, "credit_id": "5533e1ab9251415291005833", "cast_id": 24, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 11}, {"name": "Bill Duke", "character": "Police Chief", "id": 1103, "credit_id": "5533e26dc3a3682226005b78", "cast_id": 25, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 12}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b7b37", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.3, "runtime": 124}, "9535": {"poster_path": "/vmVE6jRbYegQSoxJYtVkwm0oZOY.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176885658, "overview": "Countless wiseguy films are spoofed in this film that centers on the neuroses and angst of a powerful Mafia racketeer who suffers from panic attacks. When Paul Vitti needs help dealing with his role in the \"family,\" unlucky shrink Dr. Ben Sobel is given just days to resolve Vitti's emotional crisis and turn him into a happy, well-adjusted gangster.", "video": false, "id": 9535, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Analyze This", "tagline": "New York's most powerful gangster is about to get in touch with his feelings. YOU try telling him his 50 minutes are up.", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zhVKNz29OvsXacU1YKCksBx8yIl.jpg", "poster_path": "/h8rayR5AKPzqYrQVSDjK3BkYZun.jpg", "id": 110127, "name": "Analyze Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0122933", "adult": false, "backdrop_path": "/tk3wxmUTtmajURRjgPolxep5Ajt.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Spring Creek Productions", "id": 705}, {"name": "Tribeca Productions", "id": 11391}, {"name": "Baltimore Pictures", "id": 11407}], "release_date": "1999-03-05", "popularity": 0.88294170944284, "original_title": "Analyze This", "budget": 80000000, "cast": [{"name": "Robert De Niro", "character": "Paul Vitti", "id": 380, "credit_id": "52fe4506c3a36847f80b7c33", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Dr. Ben Sobel", "id": 7904, "credit_id": "52fe4506c3a36847f80b7c37", "cast_id": 2, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Lisa Kudrow", "character": "Laura MacNamara Sobel", "id": 14406, "credit_id": "52fe4506c3a36847f80b7c3b", "cast_id": 3, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 2}, {"name": "Chazz Palminteri", "character": "Primo Sidone", "id": 9046, "credit_id": "52fe4506c3a36847f80b7c3f", "cast_id": 4, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 3}, {"name": "Joe Viterelli", "character": "Jelly", "id": 60023, "credit_id": "52fe4506c3a36847f80b7c97", "cast_id": 20, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 4}, {"name": "Molly Shannon", "character": "Caroline", "id": 28640, "credit_id": "52fe4506c3a36847f80b7c9b", "cast_id": 21, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 5}, {"name": "Kyle Sabihy", "character": "Michael Sobel", "id": 162149, "credit_id": "52fe4506c3a36847f80b7c9f", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Frank Pietrangolare", "character": "Tuna", "id": 17923, "credit_id": "52fe4506c3a36847f80b7ca3", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Ron Madoff", "character": "Extra Sea World Scene", "id": 1286269, "credit_id": "52fe4506c3a36847f80b7ca7", "cast_id": 24, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 8}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe4506c3a36847f80b7c45", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.7, "runtime": 103}, "1375": {"poster_path": "/mamE1mVcWyJuxdPuGTISaB6KrX0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119946358, "overview": "A lifetime of taking shots has ended Rocky's career, and a crooked accountant has left him broke. Inspired by the memory of his trainer, however, Rocky finds glory in training and takes on an up-and-coming boxer.", "video": false, "id": 1375, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky V", "tagline": "Go for it!", "vote_count": 150, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100507", "adult": false, "backdrop_path": "/dr5pdEDOdCvelCQqP32UZubiSgE.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1990-11-16", "popularity": 0.937392345665791, "original_title": "Rocky V", "budget": 42000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42f1c3a36847f802e9d9", "cast_id": 24, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42f1c3a36847f802e9dd", "cast_id": 25, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42f1c3a36847f802e9e1", "cast_id": 26, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Sage Stallone", "character": "Rocky Balboa Jr.", "id": 16660, "credit_id": "52fe42f1c3a36847f802e9e5", "cast_id": 27, "profile_path": "/fwC0O3sWbz8ruIpN3pQ6reViZ2G.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42f1c3a36847f802e9e9", "cast_id": 28, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Tommy Morrison", "character": "Tommy 'Machine' Gunn", "id": 16661, "credit_id": "52fe42f1c3a36847f802e9ed", "cast_id": 29, "profile_path": null, "order": 5}, {"name": "Richard Gant", "character": "George Washington Duke", "id": 16662, "credit_id": "52fe42f1c3a36847f802e9f1", "cast_id": 30, "profile_path": "/oYDHpuey2NMlGaGqMqZJVAoKoy5.jpg", "order": 6}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42f1c3a36847f802e9f5", "cast_id": 31, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 7}, {"name": "Jimmy Gambina", "character": "Jimmy", "id": 16526, "credit_id": "52fe42f1c3a36847f802e9f9", "cast_id": 32, "profile_path": "/8ygxVOL1P75gsI8BOlia5Hqorc5.jpg", "order": 8}, {"name": "Delia Sheppard", "character": "Karen", "id": 16663, "credit_id": "52fe42f1c3a36847f802e9fd", "cast_id": 33, "profile_path": "/jnekLWN0sAt5FHw8gvgMVIisUws.jpg", "order": 9}, {"name": "Mike Girard Sheehan", "character": "Merlin Sheets", "id": 16664, "credit_id": "52fe42f1c3a36847f802ea01", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Michael Williams", "character": "Union Cane", "id": 16665, "credit_id": "52fe42f1c3a36847f802ea05", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Kevin Connolly", "character": "Chickie", "id": 16666, "credit_id": "52fe42f1c3a36847f802ea09", "cast_id": 36, "profile_path": "/4bKLYeNGbIdFE5iEal9o8yjWQdz.jpg", "order": 12}, {"name": "Elisebeth Peters", "character": "Jewel", "id": 16667, "credit_id": "52fe42f1c3a36847f802ea0d", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Hayes Swope", "character": "Chickie's Pal", "id": 16668, "credit_id": "52fe42f1c3a36847f802ea11", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Nicky Blair", "character": "Fight Promoter", "id": 16669, "credit_id": "52fe42f1c3a36847f802ea15", "cast_id": 39, "profile_path": null, "order": 15}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe42f1c3a36847f802e951", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 5.6, "runtime": 104}, "9539": {"poster_path": "/fC2Uld8qZ6waCuo71oTKzJTscaN.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A young woman's quest for revenge against the people who kidnapped and tormented her as a child leads her and a friend, who is also a victim of child abuse, on a terrifying journey into a living hell of depravity.", "video": false, "id": 9539, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Martyrs", "tagline": "They did not finish to be alive...", "vote_count": 84, "homepage": "http://www.finelinefeatures.com/passion/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1029234", "adult": false, "backdrop_path": "/6ZGUYAhUvhJ54HrSPliTzoZ8evy.jpg", "production_companies": [{"name": "TCB Films", "id": 2578}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Canal Horizons", "id": 22029}], "release_date": "2008-09-03", "popularity": 0.605794141896817, "original_title": "Martyrs", "budget": 6500000, "cast": [{"name": "Myl\u00e8ne Jampano\u00ef", "character": "Lucie", "id": 20197, "credit_id": "52fe4506c3a36847f80b7ec9", "cast_id": 3, "profile_path": "/2pgiCfPyhlBlcZ4ZSwKnCxYYrLe.jpg", "order": 0}, {"name": "Morjana Alaoui", "character": "Anna", "id": 59612, "credit_id": "52fe4506c3a36847f80b7ecd", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Mike Chute", "character": "Bourreau", "id": 59613, "credit_id": "52fe4506c3a36847f80b7ed1", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Catherine B\u00e9gin", "character": "Mademoiselle", "id": 59614, "credit_id": "52fe4506c3a36847f80b7ed5", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Robert Toupin", "character": "Le P\u00e8re", "id": 59615, "credit_id": "52fe4506c3a36847f80b7ed9", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Patricia Tulasne", "character": "La M\u00e8re", "id": 59616, "credit_id": "52fe4506c3a36847f80b7edd", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Juliette Gosselin", "character": "Marie", "id": 59617, "credit_id": "52fe4506c3a36847f80b7ee1", "cast_id": 9, "profile_path": "/vxMKAtkOSQDDmIGla7kMvm90fyP.jpg", "order": 6}, {"name": "Anie Pascale", "character": "La Femme", "id": 59618, "credit_id": "52fe4506c3a36847f80b7ee5", "cast_id": 10, "profile_path": null, "order": 7}], "directors": [{"name": "Pascal Laugier", "department": "Directing", "job": "Director", "credit_id": "52fe4506c3a36847f80b7ec5", "profile_path": null, "id": 59611}], "vote_average": 7.6, "runtime": 99}, "10956": {"poster_path": "/8FKSjl4cEg4OEyWdCTjqAT8M6qv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27088000, "overview": "Joe Dirt is a janitor with a mullet hairdo, acid-washed jeans and a dream to find the parents that he lost at the Grand Canyon when he was a belligerent, trailer park-raised eight-year-old. Now, blasting Van Halen in his jacked-up economy car, the irrepressibly optimistic Joe hits the road alone in search of his folks.", "video": false, "id": 10956, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Joe Dirt", "tagline": "He Came. He Cleaned. He Conquered.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245686", "adult": false, "backdrop_path": "/uPjtNMZtiANjxE2hOkDhYy9TQ1C.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2001-04-10", "popularity": 0.714130871378478, "original_title": "Joe Dirt", "budget": 34000000, "cast": [{"name": "David Spade", "character": "Joe Dirt", "id": 60950, "credit_id": "52fe43d89251416c75020665", "cast_id": 1, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 0}, {"name": "Brittany Daniel", "character": "Brandy", "id": 35476, "credit_id": "52fe43d89251416c75020669", "cast_id": 2, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 1}, {"name": "Dennis Miller", "character": "Zander Kelly", "id": 18326, "credit_id": "52fe43d89251416c7502066d", "cast_id": 3, "profile_path": "/e1SGDAB2IArMV8oiTceRYD4DoGS.jpg", "order": 2}, {"name": "Adam Beach", "character": "Kicking Wing", "id": 33527, "credit_id": "52fe43d89251416c75020671", "cast_id": 4, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 3}, {"name": "Jaime Pressly", "character": "Jill", "id": 56824, "credit_id": "52fe43d89251416c75020693", "cast_id": 11, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 4}, {"name": "Fred Ward", "character": "Joe's Dad", "id": 10430, "credit_id": "52fe43d89251416c75020697", "cast_id": 12, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 5}, {"name": "Christopher Walken", "character": "Clem", "id": 4690, "credit_id": "52fe43d99251416c750206a7", "cast_id": 15, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 6}, {"name": "Kid Rock", "character": "Robby", "id": 165867, "credit_id": "52fe43d99251416c750206ab", "cast_id": 16, "profile_path": "/66lSMLqYormarTqPQ28NTJoaFG7.jpg", "order": 7}, {"name": "Erik Per Sullivan", "character": "Little Joe Dirt", "id": 17190, "credit_id": "52fe43d99251416c750206af", "cast_id": 17, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 8}, {"name": "Caroline Aaron", "character": "Joe's Mom", "id": 1910, "credit_id": "52fe43d99251416c750206b3", "cast_id": 18, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 9}, {"name": "Megan Taylor Harvey", "character": "Joe's Little Sister", "id": 124668, "credit_id": "52fe43d99251416c750206b7", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "John Farley", "character": "Security Guard", "id": 5621, "credit_id": "52fe43d99251416c750206bb", "cast_id": 20, "profile_path": "/r3iQTni80PjyKo3OcXlU0Zmpcve.jpg", "order": 11}, {"name": "Tyler Mane", "character": "Bondi", "id": 9832, "credit_id": "54b139059251417479001c4f", "cast_id": 21, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 12}, {"name": "Brian Thompson", "character": "Buffalo Bob", "id": 2719, "credit_id": "54b1392dc3a368094a001b5a", "cast_id": 22, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 13}, {"name": "Rosanna Arquette", "character": "Charlene the Gator Farmer", "id": 2165, "credit_id": "54b139629251417472001e37", "cast_id": 23, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 14}, {"name": "Joe Don Baker", "character": "Don, Brandy's Dad", "id": 10671, "credit_id": "54b13987925141746c001d0c", "cast_id": 24, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 15}, {"name": "Kevin Nealon", "character": "Greasy Mechanic", "id": 58478, "credit_id": "54b139a7c3a3684138001804", "cast_id": 25, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 16}], "directors": [{"name": "Dennie Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe43d89251416c7502069d", "profile_path": "/3ykd6ByuQ77EpPYVGWate1BBtVP.jpg", "id": 66960}], "vote_average": 5.9, "runtime": 91}, "9541": {"poster_path": "/d8Qf8wVQV3K4Nl3KBuVNHMBCxgw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36098382, "overview": "Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.", "video": false, "id": 9541, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Jersey Girl", "tagline": "He wanted it all...but he got more than he bargained for.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0300051", "adult": false, "backdrop_path": "/iYNKzyuABzBtO1ZEujNB37d7dED.jpg", "production_companies": [{"name": "Close Call Films", "id": 23022}, {"name": "Miramax Films", "id": 14}, {"name": "View Askew Productions", "id": 16934}, {"name": "Beverly Detroit", "id": 267}], "release_date": "2004-03-25", "popularity": 0.709922275501342, "original_title": "Jersey Girl", "budget": 35000000, "cast": [{"name": "Ben Affleck", "character": "Ollie Trinke", "id": 880, "credit_id": "52fe4506c3a36847f80b7fb3", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Raquel Castro", "character": "Gertie Trinke", "id": 57893, "credit_id": "52fe4506c3a36847f80b7fb7", "cast_id": 2, "profile_path": "/m7ZEOdJhZAkJkd0GzJ7HpUiMCUl.jpg", "order": 1}, {"name": "Liv Tyler", "character": "Maya", "id": 882, "credit_id": "52fe4507c3a36847f80b7fbb", "cast_id": 3, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 2}, {"name": "Jennifer Lopez", "character": "Gertrude Steiney", "id": 16866, "credit_id": "52fe4507c3a36847f80b7fbf", "cast_id": 4, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 3}, {"name": "George Carlin", "character": "Bart Trinke", "id": 15903, "credit_id": "52fe4507c3a36847f80b7fc3", "cast_id": 5, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 4}, {"name": "Jennifer Schwalbach Smith", "character": "Susan", "id": 23658, "credit_id": "52fe4507c3a36847f80b7fc7", "cast_id": 6, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 5}, {"name": "Will Smith", "character": "Himself", "id": 2888, "credit_id": "52fe4507c3a36847f80b8013", "cast_id": 20, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 6}, {"name": "Stephen Root", "character": "Greenie", "id": 17401, "credit_id": "52fe4507c3a36847f80b8017", "cast_id": 21, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 7}, {"name": "Mike Starr", "character": "Block", "id": 5170, "credit_id": "52fe4507c3a36847f80b801b", "cast_id": 22, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 8}, {"name": "Jason Biggs", "character": "Arthur Brickman", "id": 21593, "credit_id": "52fe4507c3a36847f80b801f", "cast_id": 23, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 9}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4507c3a36847f80b7fcd", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.7, "runtime": 102}, "107846": {"poster_path": "/1jHF5or25uCZr7O5c7CYm9eTrTw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122915111, "overview": "Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.", "video": false, "id": 107846, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Escape Plan", "tagline": "No one breaks out alone.", "vote_count": 587, "homepage": "http://escapeplanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}], "imdb_id": "tt1211956", "adult": false, "backdrop_path": "/trtIwINGPoexmfTlt9WpBnBImpH.jpg", "production_companies": [{"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Summit Entertainment", "id": 491}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Mark Canton Productions", "id": 11761}, {"name": "Envision Entertainment", "id": 31832}, {"name": "Boies / Schiller Film Group", "id": 36212}], "release_date": "2013-10-18", "popularity": 3.11435624000155, "original_title": "Escape Plan", "budget": 50000000, "cast": [{"name": "Sylvester Stallone", "character": "Ray Breslin", "id": 16483, "credit_id": "52fe4a88c3a36847f81d39e5", "cast_id": 7, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Arnold Schwarzenegger", "character": "Emil Rottmayer", "id": 1100, "credit_id": "52fe4a88c3a36847f81d39e9", "cast_id": 8, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 1}, {"name": "Jim Caviezel", "character": "Willard Hobbes", "id": 8767, "credit_id": "52fe4a89c3a36847f81d3a09", "cast_id": 18, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 2}, {"name": "Vinnie Jones", "character": "Drake", "id": 980, "credit_id": "52fe4a88c3a36847f81d39ed", "cast_id": 10, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 3}, {"name": "50 Cent", "character": "Hush", "id": 62644, "credit_id": "52fe4a88c3a36847f81d39f1", "cast_id": 11, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 4}, {"name": "Vincent D'Onofrio", "character": "Lester Clark", "id": 7132, "credit_id": "52fe4a89c3a36847f81d3a0d", "cast_id": 19, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 5}, {"name": "Matt Gerald", "character": "Roag", "id": 98215, "credit_id": "52fe4a88c3a36847f81d39f5", "cast_id": 13, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 6}, {"name": "Sam Neill", "character": "Dr. Kyrie", "id": 4783, "credit_id": "52fe4a89c3a36847f81d3a11", "cast_id": 20, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 7}, {"name": "Christian Stokes", "character": "Babcock", "id": 575674, "credit_id": "52fe4a88c3a36847f81d39f9", "cast_id": 14, "profile_path": "/3Mduql3DgOxlBp00acdQU34Jwoj.jpg", "order": 8}, {"name": "Lydia Hull", "character": "Receptionist", "id": 1042684, "credit_id": "52fe4a88c3a36847f81d39fd", "cast_id": 15, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 9}, {"name": "David Joseph Martinez", "character": "Captain Baradah", "id": 578736, "credit_id": "52fe4a89c3a36847f81d3a05", "cast_id": 17, "profile_path": "/7mimaVmBgjgsNbYcoFdZK3gGLCT.jpg", "order": 10}, {"name": "Caitriona Balfe", "character": "Jessica Miller", "id": 147056, "credit_id": "52fe4a89c3a36847f81d3a15", "cast_id": 21, "profile_path": "/nZJyyXOKB5JtEArihhzcedRkLQ7.jpg", "order": 11}, {"name": "Amy Ryan", "character": "Abigail Ross", "id": 39388, "credit_id": "52fe4a89c3a36847f81d3a19", "cast_id": 22, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 12}, {"name": "Faran Tahir", "character": "Javed", "id": 57452, "credit_id": "52fe4a89c3a36847f81d3a1d", "cast_id": 23, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 13}, {"name": "Steven Krueger", "character": "Gabriel", "id": 1181295, "credit_id": "52fe4a89c3a36847f81d3a25", "cast_id": 25, "profile_path": "/vTrqS2cmnoVAYt6wKCfvp00c6s8.jpg", "order": 14}, {"name": "Jaylen Moore", "character": "Console Guard", "id": 1181296, "credit_id": "52fe4a89c3a36847f81d3a29", "cast_id": 26, "profile_path": "/xpRNJYs1ogkSIUPIUo5XLNfRW3.jpg", "order": 15}, {"name": "James Rawlings", "character": "Babylon Guard", "id": 565508, "credit_id": "52fe4a89c3a36847f81d3a2d", "cast_id": 27, "profile_path": "/cxADb4TZ27Rsfww4lcd74iJMBwm.jpg", "order": 16}, {"name": "Alec Rayme", "character": "Pilot", "id": 1381389, "credit_id": "54f598d5c3a36834f7001bf2", "cast_id": 122, "profile_path": "/iYVNYYIJTtdPWFfAcujmhoZ3bs.jpg", "order": 17}, {"name": "Graham Beckel", "character": "Brims", "id": 6110, "credit_id": "54f59920c3a36834f1001b8e", "cast_id": 123, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 18}, {"name": "David Leitch", "character": "Second Lieutenant", "id": 40684, "credit_id": "54f5994c9251412ba7001acf", "cast_id": 124, "profile_path": "/eVSgvAIsP6mwuVbbhVb4HkVvmsu.jpg", "order": 19}, {"name": "Stephen Warren", "character": "Tourist", "id": 1042685, "credit_id": "52fe4a89c3a36847f81d3a01", "cast_id": 16, "profile_path": null, "order": 20}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4a88c3a36847f81d39c3", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 6.7, "runtime": 115}, "9543": {"poster_path": "/6Je39tJKPrZ7zNacBXnk17BTTYz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 335154643, "overview": "A rogue prince (Jake Gyllenhaal) reluctantly joins forces with a mysterious princess (Gemma Arterton) and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time\u2014a gift from the gods that can reverse time and allow its possessor to rule the world. Based on the action-adventure video game of the same name.", "video": false, "id": 9543, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Prince of Persia: The Sands of Time", "tagline": "Defy the Future", "vote_count": 936, "homepage": "http://disney.go.com/disneypictures/princeofpersia", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0473075", "adult": false, "backdrop_path": "/2JK9IllXGo7V2PZzLmclkB5Cf8k.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2010-05-27", "popularity": 1.27472993241213, "original_title": "Prince of Persia: The Sands of Time", "budget": 150000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Prince Dastan", "id": 131, "credit_id": "52fe4507c3a36847f80b80e5", "cast_id": 5, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Tamina", "id": 59620, "credit_id": "52fe4507c3a36847f80b80d7", "cast_id": 2, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Nizam", "id": 2282, "credit_id": "52fe4507c3a36847f80b80ed", "cast_id": 7, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Alfred Molina", "character": "Sheik Amar", "id": 658, "credit_id": "52fe4507c3a36847f80b80e1", "cast_id": 4, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 2}, {"name": "Steve Toussaint", "character": "Seso", "id": 55412, "credit_id": "52fe4507c3a36847f80b80e9", "cast_id": 6, "profile_path": "/s1eGjGbPBIgWogRLsqPE1D1Hhxw.jpg", "order": 3}, {"name": "Toby Kebbell", "character": "Garsiv", "id": 20286, "credit_id": "52fe4507c3a36847f80b80f1", "cast_id": 8, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 4}, {"name": "Richard Coyle", "character": "Tus", "id": 52890, "credit_id": "52fe4507c3a36847f80b80f5", "cast_id": 9, "profile_path": "/4EVfNa7ZO6zSFDviiRvIOyoU9Ro.jpg", "order": 5}, {"name": "Ronald Pickup", "character": "King Sharaman", "id": 32556, "credit_id": "52fe4507c3a36847f80b80f9", "cast_id": 10, "profile_path": "/a0Q0rSRe8yBPoAyWhNSX7pzIaYq.jpg", "order": 6}, {"name": "Reece Ritchie", "character": "Bis", "id": 54810, "credit_id": "530903f1925141111a002288", "cast_id": 26, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 7}, {"name": "G\u00edsli \u00d6rn Gar\u00f0arsson", "character": "Hassansin Leader", "id": 587354, "credit_id": "5309047e92514111140022c5", "cast_id": 27, "profile_path": "/2ANjdLHbKhrrWAwcm75pmYgr2VD.jpg", "order": 8}, {"name": "Claudio Pacifico", "character": "Hassansin Porcupine", "id": 15913, "credit_id": "530904a7925141111a00228a", "cast_id": 28, "profile_path": "/Odddp6eMNCt6QdvC8cOXWXXGlz.jpg", "order": 9}, {"name": "Thomas DuPont", "character": "Hassansin Whip Man", "id": 169691, "credit_id": "5309053c9251411108002323", "cast_id": 29, "profile_path": "/wQfLBeJwzJFHW3IBOTk7TfNTzAi.jpg", "order": 10}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe4507c3a36847f80b80d3", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.2, "runtime": 116}, "9549": {"poster_path": "/o2t9jnHHJL0j4P7GDuGmovc1lAH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21500000, "overview": "Tom Wolfe's book on the history of the U.S. Space program reads like a novel, and the film has that same fictional quality. It covers the breaking of the sound barrier by Chuck Yeager to the Mercury 7 astronauts, showing that no one had a clue how to run a space program or how to select people to be in it. Thrilling, funny, charming and electrifying all at once.", "video": false, "id": 9549, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Right Stuff", "tagline": "How the future began.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086197", "adult": false, "backdrop_path": "/yJ1ItKaKolReKVVIOvq9zlGwrV7.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "The Ladd Company", "id": 7965}], "release_date": "1983-10-21", "popularity": 0.372761114175224, "original_title": "The Right Stuff", "budget": 27000000, "cast": [{"name": "Fred Ward", "character": "Gus Grissom", "id": 10430, "credit_id": "52fe4508c3a36847f80b84dd", "cast_id": 5, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Gordon Cooper", "id": 6065, "credit_id": "52fe4508c3a36847f80b84d9", "cast_id": 4, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Ed Harris", "character": "John Glenn", "id": 228, "credit_id": "52fe4508c3a36847f80b84d5", "cast_id": 3, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Scott Glenn", "character": "Alan Shepard", "id": 349, "credit_id": "52fe4508c3a36847f80b84d1", "cast_id": 2, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 3}, {"name": "Sam Shepard", "character": "Chuck Yeager", "id": 9880, "credit_id": "52fe4508c3a36847f80b84cd", "cast_id": 1, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 4}, {"name": "Barbara Hershey", "character": "Glennis Yeager", "id": 10767, "credit_id": "52fe4508c3a36847f80b84e1", "cast_id": 6, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 5}, {"name": "Lance Henriksen", "character": "Wally Schirra", "id": 2714, "credit_id": "52fe4508c3a36847f80b8543", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 6}, {"name": "Veronica Cartwright", "character": "Betty Grissom", "id": 5047, "credit_id": "52fe4508c3a36847f80b8537", "cast_id": 21, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 7}, {"name": "Harry Shearer", "character": "NASA Recruiter", "id": 6008, "credit_id": "54c6afc692514167910001d0", "cast_id": 30, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 8}, {"name": "Jeff Goldblum", "character": "NASA Recruiter", "id": 4785, "credit_id": "54c6afd6c3a36874ac0001ad", "cast_id": 31, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 9}, {"name": "Kim Stanley", "character": "Pancho Barnes", "id": 31440, "credit_id": "52fe4508c3a36847f80b8533", "cast_id": 20, "profile_path": "/bCL1tymwXIShJF64C91J5h5wvEW.jpg", "order": 10}, {"name": "Pamela Reed", "character": "Trudy Cooper", "id": 14699, "credit_id": "52fe4508c3a36847f80b853b", "cast_id": 22, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 11}, {"name": "Scott Paulin", "character": "Deke Slayton", "id": 48810, "credit_id": "52fe4508c3a36847f80b853f", "cast_id": 23, "profile_path": "/hXCaNiAPOuV16eLEWfnPmNHBX2L.jpg", "order": 12}, {"name": "Charles Frank", "character": "Scott Carpenter", "id": 1213001, "credit_id": "52fe4508c3a36847f80b8553", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Donald Moffat", "character": "Lyndon B. Johnson", "id": 15417, "credit_id": "52fe4508c3a36847f80b8547", "cast_id": 26, "profile_path": "/s1z6xGV9M1sx1EQdQb1mpU58mqy.jpg", "order": 14}, {"name": "Levon Helm", "character": "Jack Ridley / Narrator", "id": 76136, "credit_id": "52fe4508c3a36847f80b854b", "cast_id": 27, "profile_path": "/zcTWB3viwehOjiEnQzhUinGFLTR.jpg", "order": 15}, {"name": "Mary Jo Deschanel", "character": "Annie Glenn", "id": 271352, "credit_id": "52fe4508c3a36847f80b854f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Scott Wilson", "character": "Scott Crossfield", "id": 6914, "credit_id": "54c6aff6925141679c0001ee", "cast_id": 32, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 17}, {"name": "Kathy Baker", "character": "Louise Shepard", "id": 1907, "credit_id": "54c6b017c3a36874ac0001bd", "cast_id": 33, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 18}], "directors": [{"name": "Philip Kaufman", "department": "Directing", "job": "Director", "credit_id": "52fe4508c3a36847f80b84f3", "profile_path": "/5hmDqd4AoGgDnAb18L6JcjtqlmK.jpg", "id": 648}], "vote_average": 7.4, "runtime": 193}, "9550": {"poster_path": "/wL1HUjrByfLO1kNqCm7uYAMIwAA.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.", "video": false, "id": 9550, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "House of Flying Daggers", "tagline": "", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0385004", "adult": false, "backdrop_path": "/x0jkRD2yXMxj2T2fW1kdG7rmGnx.jpg", "production_companies": [{"name": "Beijing New Picture Film Co. Ltd.", "id": 724}], "release_date": "2004-05-19", "popularity": 0.267658851411282, "original_title": "House of Flying Daggers", "budget": 0, "cast": [{"name": "Takeshi Kaneshiro", "character": "Jin", "id": 43661, "credit_id": "52fe4508c3a36847f80b8575", "cast_id": 1, "profile_path": "/4dkGDeidUiqZ2jnjB4I8zls3Big.jpg", "order": 0}, {"name": "Zhang Ziyi", "character": "Xiao Mei", "id": 1339, "credit_id": "52fe4508c3a36847f80b8579", "cast_id": 3, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 1}, {"name": "Dandan Song", "character": "Yee", "id": 57912, "credit_id": "52fe4508c3a36847f80b857d", "cast_id": 4, "profile_path": "/jANOJINWJLrgkhh6RnAMZrhXtZC.jpg", "order": 2}, {"name": "Andy Lau", "character": "Leo", "id": 25246, "credit_id": "52fe4508c3a36847f80b85bd", "cast_id": 16, "profile_path": "/ukyTNTiGM8vnHynIy9JBaI9XDaN.jpg", "order": 3}], "directors": [{"name": "Zhang Yimou", "department": "Directing", "job": "Director", "credit_id": "52fe4508c3a36847f80b85b9", "profile_path": "/rXancm9GMRLQlGc4dz6o5BFtnRy.jpg", "id": 607}], "vote_average": 6.7, "runtime": 119}, "1359": {"poster_path": "/qXsylPM4Lr5397R3eHrfqHhTUNc.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34266564, "overview": "A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.", "video": false, "id": 1359, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "American Psycho", "tagline": "I think my mask of sanity is about to slip.", "vote_count": 400, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/ko4O9lcRGYOZAF5Hh79Mfsgjpun.jpg", "id": 86105, "name": "American Psycho Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0144084", "adult": false, "backdrop_path": "/zf7L87ZS2cXjaRT5d3ibIUaJvoo.jpg", "production_companies": [{"name": "Lions Gate", "id": 6644}], "release_date": "2000-04-14", "popularity": 2.07116351743797, "original_title": "American Psycho", "budget": 7000000, "cast": [{"name": "Christian Bale", "character": "Patrick Bateman", "id": 3894, "credit_id": "52fe42eec3a36847f802daf9", "cast_id": 3, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Evelyn Williams", "id": 368, "credit_id": "52fe42eec3a36847f802dafd", "cast_id": 4, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Justin Theroux", "character": "Timothy Bryce", "id": 15009, "credit_id": "52fe42eec3a36847f802db01", "cast_id": 5, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 2}, {"name": "Josh Lucas", "character": "Craig McDermott", "id": 6164, "credit_id": "52fe42eec3a36847f802db05", "cast_id": 6, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 3}, {"name": "Bill Sage", "character": "David Van Patten", "id": 32029, "credit_id": "52fe42eec3a36847f802db09", "cast_id": 7, "profile_path": "/580okgFwmaKyT12s1lUfY8yV9dg.jpg", "order": 4}, {"name": "Chlo\u00eb Sevigny", "character": "Jean", "id": 2838, "credit_id": "52fe42eec3a36847f802db0d", "cast_id": 8, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 5}, {"name": "Samantha Mathis", "character": "Courtney Rawlinson", "id": 20767, "credit_id": "52fe42eec3a36847f802db11", "cast_id": 9, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 6}, {"name": "Matt Ross", "character": "Luis Carruthers", "id": 11154, "credit_id": "52fe42eec3a36847f802db15", "cast_id": 10, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 7}, {"name": "Jared Leto", "character": "Paul Allen", "id": 7499, "credit_id": "52fe42eec3a36847f802db19", "cast_id": 11, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 8}, {"name": "Willem Dafoe", "character": "Det. Donald Kimball", "id": 5293, "credit_id": "52fe42eec3a36847f802db1d", "cast_id": 12, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 9}, {"name": "Cara Seymour", "character": "Christie", "id": 2617, "credit_id": "52fe42eec3a36847f802db21", "cast_id": 13, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 10}, {"name": "Guinevere Turner", "character": "Elizabeth", "id": 32030, "credit_id": "52fe42eec3a36847f802db25", "cast_id": 14, "profile_path": "/nIve3PnpAc82U2MxhLPde7wVqqx.jpg", "order": 11}, {"name": "Stephen Bogaert", "character": "Harold Carnes", "id": 32031, "credit_id": "52fe42eec3a36847f802db29", "cast_id": 15, "profile_path": "/xEfkwQ4geFjNqN8djI78lkvqq8i.jpg", "order": 12}, {"name": "Monika Meier", "character": "Daisy", "id": 32032, "credit_id": "52fe42eec3a36847f802db2d", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Krista Sutton", "character": "Sabrina", "id": 32033, "credit_id": "52fe42eec3a36847f802db31", "cast_id": 17, "profile_path": "/udDkMIr8LKCr8EuXskTCqBKYvbK.jpg", "order": 14}], "directors": [{"name": "Mary Harron", "department": "Directing", "job": "Director", "credit_id": "52fe42eec3a36847f802daf5", "profile_path": "/qlWi0kufzB7lCq6Jz5zuNE3Kk1V.jpg", "id": 16378}], "vote_average": 6.9, "runtime": 102}, "1360": {"poster_path": "/1vT449vIaBG3nt1fe8RalNOSP7u.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56298474, "overview": "\"Frida\" chronicles the life Frida Kahlo shared unflinchingly and openly with Diego Rivera, as the young couple took the art world by storm. From her complex and enduring relationship with her mentor and husband to her illicit and controversial affair with Leon Trotsky, to her provocative and romantic entanglements with women, Frida Kahlo lived a bold and uncompromising life as a political, artistic, and sexual revolutionary", "video": false, "id": 1360, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Frida", "tagline": "Prepare to be seduced", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120679", "adult": false, "backdrop_path": "/iLpWNh7ur2sEJIX7NgbiJgdmdjJ.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Lions Gate Films", "id": 35}, {"name": "Ventanarosa Productions", "id": 689}, {"name": "Handprint Entertainment", "id": 690}], "release_date": "2002-08-29", "popularity": 0.457155755930494, "original_title": "Frida", "budget": 12000000, "cast": [{"name": "Salma Hayek", "character": "Frida Kahlo", "id": 3136, "credit_id": "52fe42eec3a36847f802dc39", "cast_id": 21, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 0}, {"name": "Alfred Molina", "character": "Diego Rivera", "id": 658, "credit_id": "52fe42eec3a36847f802dc3d", "cast_id": 22, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 1}, {"name": "M\u00eda Maestro", "character": "Cristina Kahlo", "id": 6859, "credit_id": "52fe42eec3a36847f802dc41", "cast_id": 23, "profile_path": "/UIf7kAHqAGRwJ9TZSkZ91A1scr.jpg", "order": 2}, {"name": "Patricia Reyes Sp\u00edndola", "character": "Matilde Kahlo", "id": 16406, "credit_id": "52fe42eec3a36847f802dc45", "cast_id": 24, "profile_path": "/vznHPfrlnY8wHjsLj78C5KWWTjS.jpg", "order": 3}, {"name": "Diego Luna", "character": "Alejandro", "id": 8688, "credit_id": "52fe42eec3a36847f802dc49", "cast_id": 25, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 4}, {"name": "Roger Rees", "character": "Guillermo Kahlo", "id": 16407, "credit_id": "52fe42eec3a36847f802dc4d", "cast_id": 26, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 5}, {"name": "Ashley Judd", "character": "Tina Modotti", "id": 15852, "credit_id": "52fe42eec3a36847f802dc51", "cast_id": 27, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 6}, {"name": "Antonio Banderas", "character": "David Alfaro Siqueiros", "id": 3131, "credit_id": "52fe42eec3a36847f802dc55", "cast_id": 28, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 7}, {"name": "Edward Norton", "character": "Nelson Rockefeller", "id": 819, "credit_id": "52fe42eec3a36847f802dc59", "cast_id": 29, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 8}, {"name": "Saffron Burrows", "character": "Gracie", "id": 9825, "credit_id": "52fe42eec3a36847f802dc5d", "cast_id": 30, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 9}, {"name": "Geoffrey Rush", "character": "Leon Trotsky", "id": 118, "credit_id": "52fe42eec3a36847f802dc61", "cast_id": 31, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 10}, {"name": "Margarita Sanz", "character": "Natalia Trotsky", "id": 16408, "credit_id": "52fe42eec3a36847f802dc65", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Omar Rodr\u00edguez", "character": "Andr\u00e9 Breton", "id": 16409, "credit_id": "52fe42eec3a36847f802dc69", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Lila Downs", "character": "Tango Singer", "id": 991946, "credit_id": "532e5bbec3a3685fbb0031e7", "cast_id": 34, "profile_path": null, "order": 13}], "directors": [{"name": "Julie Taymor", "department": "Directing", "job": "Director", "credit_id": "52fe42eec3a36847f802dbc3", "profile_path": "/6PHmqn1Y4Y0jzSCCIVO0oYaR71Q.jpg", "id": 16391}], "vote_average": 7.1, "runtime": 123}, "24803": {"poster_path": "/wrbCJtGfneCx4YvyHHCPbjD5xcN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Julia Child and Julie Powell - both of whom wrote memoirs - find their lives intertwined. Though separated by time and space, both women are at loose ends... until they discover that with the right combination of passion, fearlessness and butter, anything is possible.", "video": false, "id": 24803, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Julie & Julia", "tagline": "Based on Two True Stories", "vote_count": 108, "homepage": "http://www.julieandjulia.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1135503", "adult": false, "backdrop_path": "/v5fC4udCQLOzZZRbI87QyQ8V2cd.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Easy There Tiger Productions", "id": 11804}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2009-08-07", "popularity": 0.248497864926825, "original_title": "Julie & Julia", "budget": 0, "cast": [{"name": "Meryl Streep", "character": "Julia Child", "id": 5064, "credit_id": "52fe44aac3a368484e02fed3", "cast_id": 1, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Amy Adams", "character": "Julie Powell", "id": 9273, "credit_id": "52fe44aac3a368484e02fed7", "cast_id": 2, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Chris Messina", "character": "Eric Powell", "id": 61659, "credit_id": "52fe44aac3a368484e02fee1", "cast_id": 4, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Paul Child", "id": 2283, "credit_id": "52fe44aac3a368484e02fee5", "cast_id": 5, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Linda Emond", "character": "Simone Beck", "id": 58643, "credit_id": "52fe44aac3a368484e02ff61", "cast_id": 26, "profile_path": "/tJJs1Mj1e7G03bEBoin6JcGLlW7.jpg", "order": 4}, {"name": "Helen Carey", "character": "Louisette Bertholle", "id": 17185, "credit_id": "52fe44aac3a368484e02ff65", "cast_id": 27, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 5}, {"name": "Mary Lynn Rajskub", "character": "Sarah", "id": 25884, "credit_id": "52fe44aac3a368484e02ff69", "cast_id": 28, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 6}, {"name": "Jane Lynch", "character": "Dorothy McWilliams", "id": 43775, "credit_id": "52fe44aac3a368484e02ff6d", "cast_id": 29, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 7}, {"name": "Joan Juliet Buck", "character": "Madame Brassart", "id": 1123818, "credit_id": "52fe44aac3a368484e02ff71", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Crystal Noelle", "character": "Ernestine", "id": 967452, "credit_id": "52fe44aac3a368484e02ff75", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "George Bartenieff", "character": "Chef Max Bugnard", "id": 171242, "credit_id": "52fe44aac3a368484e02ff79", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Vanessa Ferlito", "character": "Cassie", "id": 20491, "credit_id": "52fe44aac3a368484e02ff7d", "cast_id": 33, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 11}, {"name": "Casey Wilson", "character": "Regina", "id": 83872, "credit_id": "52fe44aac3a368484e02ff81", "cast_id": 34, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 12}, {"name": "Jillian Bach", "character": "Annabelle", "id": 61219, "credit_id": "52fe44aac3a368484e02ff85", "cast_id": 35, "profile_path": "/8P4y1ndyTCVltT20zB5kFkPO9OC.jpg", "order": 13}, {"name": "Andrew Garman", "character": "John O'Brien", "id": 206902, "credit_id": "52fe44aac3a368484e02ff89", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe44aac3a368484e02fedd", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 6.3, "runtime": 123}, "9556": {"poster_path": "/2sV5iwra6GwvWKBK6UVjSrW11G5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48878502, "overview": "Dr. Peyton Westlake is on the verge of realizing a major breakthrough in synthetic skin when his laboratory is destroyed by gangsters. Having been burned beyond recognition and forever altered by an experimental medical procedure, Westlake becomes known as Darkman, assuming alternate identities in his quest for revenge and a new life with a former love.", "video": false, "id": 9556, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Darkman", "tagline": "They destroyed everything he had, everything he was. Now, crime has a new enemy and justice has a new face.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oVqe4GNZkbWPppmvIyxFmyZNPhx.jpg", "poster_path": "/mHrcic92RHbKHDi5Lxdhu5job6X.jpg", "id": 45154, "name": "Darkman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099365", "adult": false, "backdrop_path": "/cItqd45TymbFm4pDbludkEJYrrI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Renaissance Pictures", "id": 467}], "release_date": "1990-08-24", "popularity": 0.673607283354002, "original_title": "Darkman", "budget": 16000000, "cast": [{"name": "Liam Neeson", "character": "Peyton Westlake / Darkman", "id": 3896, "credit_id": "52fe4509c3a36847f80b889d", "cast_id": 1, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Julie Hastings", "id": 3910, "credit_id": "52fe4509c3a36847f80b88a1", "cast_id": 2, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Colin Friels", "character": "Louis Strack Jr.", "id": 27753, "credit_id": "52fe4509c3a36847f80b88a5", "cast_id": 3, "profile_path": "/tXKCpTwCs4TZYdQ6p5Kch7sRkkS.jpg", "order": 2}, {"name": "Larry Drake", "character": "Robert G. Durant", "id": 16476, "credit_id": "52fe4509c3a36847f80b88a9", "cast_id": 4, "profile_path": "/yRtzWEX4wdviO7bV5rH5z4AfGvv.jpg", "order": 3}, {"name": "Nelson Mashita", "character": "Yakitito", "id": 57959, "credit_id": "52fe4509c3a36847f80b88ad", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jessie Lawrence Ferguson", "character": "Eddie Black", "id": 9786, "credit_id": "52fe4509c3a36847f80b88fd", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Rafael H. Robledo", "character": "Rudy Guzman", "id": 95209, "credit_id": "52fe4509c3a36847f80b8901", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Dan Hicks", "character": "Skip", "id": 11750, "credit_id": "52fe4509c3a36847f80b8905", "cast_id": 21, "profile_path": "/p6UEdkL9oJGLRVkMgQtrKvJ3cCl.jpg", "order": 7}, {"name": "Ted Raimi", "character": "Rick", "id": 11769, "credit_id": "52fe4509c3a36847f80b8909", "cast_id": 22, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 8}, {"name": "Dan Bell", "character": "Smiley", "id": 182210, "credit_id": "52fe4509c3a36847f80b890d", "cast_id": 23, "profile_path": "/dZqTViqN7GrJMWXVIkHM7aYdXLX.jpg", "order": 9}, {"name": "Nicholas Worth", "character": "Pauly", "id": 100461, "credit_id": "52fe4509c3a36847f80b8911", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Aaron Lustig", "character": "Martin Katz", "id": 140237, "credit_id": "52fe4509c3a36847f80b8915", "cast_id": 25, "profile_path": "/3Ay4BadhJtyTWxhOwxvryHkE3dj.jpg", "order": 11}, {"name": "Arsenio 'Sonny' Trinidad", "character": "Hung Fat", "id": 1080062, "credit_id": "52fe4509c3a36847f80b8919", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "John Landis", "character": "Physician", "id": 4610, "credit_id": "52fe4509c3a36847f80b891d", "cast_id": 27, "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "order": 13}, {"name": "Bruce Campbell", "character": "Final Shemp", "id": 11357, "credit_id": "52fe4509c3a36847f80b88b1", "cast_id": 6, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 14}, {"name": "William Lustig", "character": "Dockworker", "id": 44765, "credit_id": "53dd93800e0a265a8a000d63", "cast_id": 33, "profile_path": "/9xmAzAD1As1NfBLeD2N5oiRoFp7.jpg", "order": 15}, {"name": "Scott Spiegel", "character": "Dockworker", "id": 11641, "credit_id": "53dd93930e0a265a96000df4", "cast_id": 34, "profile_path": null, "order": 16}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4509c3a36847f80b88b7", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.2, "runtime": 96}, "25941": {"poster_path": "/uucoqZN7KL3h60PlPyQSCqWKIhQ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "An elderly ex-serviceman and widower looks to avenge his best friend's murder by doling out his own form of justice.", "video": false, "id": 25941, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Harry Brown", "tagline": "Every man has a breaking point.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1289406", "adult": false, "backdrop_path": "/szj3uqOGDu8Uwvwo0Si42BCxI04.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "HanWay Films", "id": 2395}, {"name": "UK Film Council", "id": 2452}], "release_date": "2009-11-11", "popularity": 1.15885425578021, "original_title": "Harry Brown", "budget": 7300000, "cast": [{"name": "Michael Caine", "character": "Harry Brown", "id": 3895, "credit_id": "52fe44e5c3a368484e03d209", "cast_id": 1, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 0}, {"name": "Emily Mortimer", "character": "D.I. Alice Frampton", "id": 1246, "credit_id": "52fe44e5c3a368484e03d20d", "cast_id": 2, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 1}, {"name": "Iain Glen", "character": "S.I. Childs", "id": 20508, "credit_id": "52fe44e5c3a368484e03d211", "cast_id": 3, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 2}, {"name": "Lee Oakes", "character": "Dean Saunders", "id": 59075, "credit_id": "52fe44e5c3a368484e03d227", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Liam Cunningham", "character": "Sid Rourke", "id": 15498, "credit_id": "52fe44e5c3a368484e03d231", "cast_id": 10, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 4}, {"name": "Sean Harris", "character": "Stretch", "id": 16702, "credit_id": "52fe44e5c3a368484e03d235", "cast_id": 11, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 5}, {"name": "Charlie Creed-Miles", "character": "D.S. Terry Hicock", "id": 8397, "credit_id": "52fe44e5c3a368484e03d239", "cast_id": 12, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 6}, {"name": "David Bradley", "character": "Leonard Attwell", "id": 11180, "credit_id": "52fe44e6c3a368484e03d23d", "cast_id": 13, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 7}, {"name": "Ben Drew", "character": "Noel Winters", "id": 449889, "credit_id": "52fe44e6c3a368484e03d241", "cast_id": 14, "profile_path": "/i6KFOQwAUEEPJgcLl5N8Nonj2qo.jpg", "order": 8}, {"name": "Jack O'Connell", "character": "Marky", "id": 85065, "credit_id": "52fe44e6c3a368484e03d245", "cast_id": 15, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 9}, {"name": "Jamie Downey", "character": "Carl", "id": 1148519, "credit_id": "52fe44e6c3a368484e03d249", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Liz Daniels", "character": "Kath Brown", "id": 1148520, "credit_id": "52fe44e6c3a368484e03d24d", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Daniel Barber", "department": "Directing", "job": "Director", "credit_id": "52fe44e5c3a368484e03d217", "profile_path": null, "id": 94918}], "vote_average": 6.8, "runtime": 103}, "1366": {"poster_path": "/lmwGr6J5y6kngFNQuFV2y1yw4OB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117235147, "overview": "When world heavyweight boxing champ Apollo Creed wants to give an unknown fighter a shot at the title as a publicity stunt, his handlers pick palooka Rocky Balboa, an uneducated collector for a Philadelphia loan shark.", "video": false, "id": 1366, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky", "tagline": "His whole life was a million-to-one shot.", "vote_count": 463, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075148", "adult": false, "backdrop_path": "/2kkyt0FLROrXt41IgSdE7goCFNQ.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1976-11-21", "popularity": 1.43476318946101, "original_title": "Rocky", "budget": 1100000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42efc3a36847f802e019", "cast_id": 16, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrianna \"Adrian\" Pennino", "id": 3094, "credit_id": "52fe42efc3a36847f802e01d", "cast_id": 17, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42efc3a36847f802e021", "cast_id": 18, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42efc3a36847f802e025", "cast_id": 19, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42efc3a36847f802e029", "cast_id": 20, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Thayer David", "character": "Jergens", "id": 16524, "credit_id": "52fe42efc3a36847f802e02d", "cast_id": 21, "profile_path": "/6FJMDJHeRaQq0wvgmL0lAQ3GC2d.jpg", "order": 5}, {"name": "Joe Spinell", "character": "Gazzo", "id": 16525, "credit_id": "52fe42efc3a36847f802e031", "cast_id": 22, "profile_path": "/wzZZO8xXn9OgljCmrGGR4L6wBdg.jpg", "order": 6}, {"name": "Jimmy Gambina", "character": "Mike", "id": 16526, "credit_id": "52fe42efc3a36847f802e035", "cast_id": 23, "profile_path": "/8ygxVOL1P75gsI8BOlia5Hqorc5.jpg", "order": 7}, {"name": "Bill Baldwin", "character": "Fight Announcer", "id": 16527, "credit_id": "52fe42efc3a36847f802e039", "cast_id": 24, "profile_path": "/iO3gWXI34gESKYbdvTxMaTzUbJ9.jpg", "order": 8}, {"name": "Al Silvani", "character": "Cut Man", "id": 16528, "credit_id": "52fe42efc3a36847f802e03d", "cast_id": 25, "profile_path": "/tHjzbzaPTDPvkewRwmiXH0zQkdI.jpg", "order": 9}, {"name": "George Memmoli", "character": "Ice Rink Attendant", "id": 2563, "credit_id": "52fe42efc3a36847f802e041", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Jodi Letizia", "character": "Marie", "id": 16529, "credit_id": "52fe42efc3a36847f802e045", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Diana Lewis", "character": "TV Commentator 1", "id": 16530, "credit_id": "52fe42efc3a36847f802e049", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "George O'Hanlon", "character": "TV Commentator 2", "id": 16531, "credit_id": "52fe42efc3a36847f802e04d", "cast_id": 29, "profile_path": "/2hrNnR9yoCpbtVvJIqbY7xvV5CI.jpg", "order": 13}, {"name": "Larry Carroll", "character": "TV Interviewer", "id": 16532, "credit_id": "52fe42efc3a36847f802e051", "cast_id": 30, "profile_path": "/1cnHZFaslmoPXTK54bJMepQ795u.jpg", "order": 14}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42efc3a36847f802e055", "cast_id": 31, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 15}, {"name": "Lloyd Kaufman", "character": "Drunk", "id": 78021, "credit_id": "52fe42efc3a36847f802e059", "cast_id": 32, "profile_path": "/zTylEHdJL422WZ1vjEmEkDoWkk7.jpg", "order": 16}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802dfc1", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 7.0, "runtime": 119}, "1367": {"poster_path": "/nFtDSJ2ebN54jdWrrF391mJzMhL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200182160, "overview": "After Rocky goes the distance with champ Apollo Creed, both try to put the fight behind them and move on. Rocky settles down with Adrian but can't put his life together outside the ring, while Creed seeks a rematch to restore his reputation. Soon enough, the \"Master of Disaster\" and the \"Italian Stallion\" are set on a collision course for a climactic battle that is brutal and unforgettable.", "video": false, "id": 1367, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky II", "tagline": "Once he fought for a dream. Now he's fighting for love!", "vote_count": 224, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079817", "adult": false, "backdrop_path": "/ouurCv7Py7sKJmXbbvpHDOLWaHl.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1979-06-15", "popularity": 1.09175692132828, "original_title": "Rocky II", "budget": 7000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42efc3a36847f802e10b", "cast_id": 19, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42efc3a36847f802e10f", "cast_id": 20, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42efc3a36847f802e113", "cast_id": 21, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42efc3a36847f802e117", "cast_id": 22, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42efc3a36847f802e11b", "cast_id": 23, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42efc3a36847f802e11f", "cast_id": 24, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "Joe Spinell", "character": "Tony Gazzo", "id": 16525, "credit_id": "52fe42efc3a36847f802e123", "cast_id": 25, "profile_path": "/wzZZO8xXn9OgljCmrGGR4L6wBdg.jpg", "order": 6}, {"name": "Leonard Gaines", "character": "Agent", "id": 16540, "credit_id": "52fe42efc3a36847f802e127", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Sylvia Meals", "character": "Mary Anne Creed", "id": 16541, "credit_id": "52fe42efc3a36847f802e12b", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Frank McRae", "character": "Meat Foreman", "id": 1735, "credit_id": "52fe42efc3a36847f802e12f", "cast_id": 28, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 9}, {"name": "John Pleshette", "character": "Director", "id": 16542, "credit_id": "52fe42efc3a36847f802e133", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Stu Nahan", "character": "Announcer", "id": 16543, "credit_id": "52fe42efc3a36847f802e137", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Bill Baldwin", "character": "Commentator", "id": 16527, "credit_id": "52fe42efc3a36847f802e13b", "cast_id": 31, "profile_path": "/iO3gWXI34gESKYbdvTxMaTzUbJ9.jpg", "order": 12}, {"name": "Jerry Ziesmer", "character": "Salesman", "id": 8346, "credit_id": "52fe42efc3a36847f802e13f", "cast_id": 32, "profile_path": "/TCrODTVTktmyXk4PrD5fWvMJye.jpg", "order": 13}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802e0a1", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.6, "runtime": 119}, "1368": {"poster_path": "/v0sPtM5lGkLwtfDlWpn07nqJPyf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125212904, "overview": "When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, the Vietnam vet snaps, runs for the hills and rat-a-tat-tats his way into the action-movie hall of fame. Hounded by a relentless sheriff, Rambo employs heavy-handed guerilla tactics to shake the cops off his tail.", "video": false, "id": 1368, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "First Blood", "tagline": "This time he's fighting for his life.", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083944", "adult": false, "backdrop_path": "/5tc7kIF9MXLwSDyW61sj4jTvBxX.jpg", "production_companies": [{"name": "Carolco Pictures", "id": 14723}, {"name": "Orion Pictures", "id": 41}, {"name": "Roadshow Productions", "id": 7020}], "release_date": "1982-10-22", "popularity": 1.26143023906765, "original_title": "First Blood", "budget": 15000000, "cast": [{"name": "Sylvester Stallone", "character": "John J. Rambo", "id": 16483, "credit_id": "52fe42efc3a36847f802e1fb", "cast_id": 20, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Richard Crenna", "character": "Col. Samuel Trautman", "id": 16554, "credit_id": "52fe42efc3a36847f802e1ff", "cast_id": 21, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 1}, {"name": "Brian Dennehy", "character": "Hope Sheriff Will Teasle", "id": 6197, "credit_id": "52fe42efc3a36847f802e203", "cast_id": 22, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 2}, {"name": "Bill McKinney", "character": "State Police Capt. Dave Kern", "id": 16555, "credit_id": "52fe42efc3a36847f802e207", "cast_id": 23, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 3}, {"name": "Jack Starrett", "character": "Deputy Sgt. Arthur Galt", "id": 16556, "credit_id": "52fe42efc3a36847f802e20b", "cast_id": 24, "profile_path": null, "order": 4}, {"name": "Michael Talbott", "character": "Deputy Balford", "id": 16557, "credit_id": "52fe42efc3a36847f802e20f", "cast_id": 25, "profile_path": "/yOlbGF2VDQHZeESRo0gQq0BfU1B.jpg", "order": 5}, {"name": "Chris Mulkey", "character": "Deputy Ward", "id": 15824, "credit_id": "52fe42efc3a36847f802e213", "cast_id": 26, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 6}, {"name": "John McLiam", "character": "Orval the Dog Man", "id": 16558, "credit_id": "52fe42efc3a36847f802e217", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Alf Humphries", "character": "Deputy Lester", "id": 16559, "credit_id": "52fe42efc3a36847f802e21b", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "David Caruso", "character": "Deputy Mitch", "id": 16560, "credit_id": "52fe42efc3a36847f802e21f", "cast_id": 29, "profile_path": "/i251LGpMkOeOqRmqlCpKkNoGdni.jpg", "order": 9}, {"name": "David L. Crowley", "character": "Deputy Shingleton", "id": 16561, "credit_id": "52fe42efc3a36847f802e223", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Don MacKay", "character": "Preston", "id": 16562, "credit_id": "52fe42efc3a36847f802e227", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Charles A. Tamburro", "character": "Pilot", "id": 16563, "credit_id": "52fe42efc3a36847f802e22b", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "David Petersen", "character": "Trooper", "id": 16564, "credit_id": "52fe42efc3a36847f802e22f", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Craig Huston", "character": "Radio operator", "id": 16565, "credit_id": "52fe42efc3a36847f802e233", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "Ted Kotcheff", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802e18b", "profile_path": "/r4rMwZeClwJR2VCgvYsNjLOTXpB.jpg", "id": 16544}], "vote_average": 6.8, "runtime": 93}, "1369": {"poster_path": "/xYLmHi80zIlu3JDfJYfd1JY0Xl7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300400432, "overview": "Col. Troutman recruits ex-Green Beret John Rambo for a highly secret and dangerous mission. Teamed with freedom fighter Co Bao, Rambo goes deep into Vietnam to rescue POWs. Deserted by his own team, he's left in a hostile jungle to fight for his life, avenge the death of a woman and bring corrupt officials to justice.", "video": false, "id": 1369, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Rambo: First Blood Part II", "tagline": "What most people call hell, he calls home.", "vote_count": 224, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0089880", "adult": false, "backdrop_path": "/dy5ThWXUuEHH60liT8oVSDqkSGB.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1985-05-21", "popularity": 1.09210705984778, "original_title": "Rambo: First Blood Part II", "budget": 44000000, "cast": [{"name": "Sylvester Stallone", "character": "John J. Rambo", "id": 16483, "credit_id": "52fe42f0c3a36847f802e327", "cast_id": 27, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Richard Crenna", "character": "Col. Samuel Trautman", "id": 16554, "credit_id": "52fe42f0c3a36847f802e32b", "cast_id": 28, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 1}, {"name": "Charles Napier", "character": "Marshall Murdock", "id": 16119, "credit_id": "52fe42f0c3a36847f802e32f", "cast_id": 29, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 2}, {"name": "Steven Berkoff", "character": "Lt. Col. Podovsky", "id": 782, "credit_id": "52fe42f0c3a36847f802e333", "cast_id": 30, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 3}, {"name": "Julia Nickson", "character": "Co Bao", "id": 16578, "credit_id": "52fe42f0c3a36847f802e337", "cast_id": 31, "profile_path": "/zQzqbbfixENqr2NLp92EOtL7POQ.jpg", "order": 4}, {"name": "George Cheung", "character": "Capt Vinh", "id": 16580, "credit_id": "52fe42f0c3a36847f802e33b", "cast_id": 32, "profile_path": null, "order": 5}, {"name": "Andy Wood", "character": "Banks", "id": 16581, "credit_id": "52fe42f0c3a36847f802e33f", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "William Ghent", "character": "Capt. Vinh", "id": 16582, "credit_id": "52fe42f0c3a36847f802e343", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "Voyo Goric", "character": "Sgt. Yushin", "id": 16583, "credit_id": "52fe42f0c3a36847f802e347", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Dana Lee", "character": "Gunboat captain", "id": 16584, "credit_id": "52fe42f0c3a36847f802e34b", "cast_id": 36, "profile_path": null, "order": 9}, {"name": "Baoan Coleman", "character": "Gunboat captain II", "id": 16585, "credit_id": "52fe42f0c3a36847f802e34f", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Steve Williams", "character": "Lifer", "id": 16586, "credit_id": "52fe42f0c3a36847f802e353", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Don Collins", "character": "POW #1", "id": 16587, "credit_id": "52fe42f0c3a36847f802e357", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Christopher Grant", "character": "POW #2", "id": 16588, "credit_id": "52fe42f0c3a36847f802e35b", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Martin Kove", "character": "Ericson", "id": 56117, "credit_id": "52fe42f0c3a36847f802e35f", "cast_id": 41, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 14}], "directors": [{"name": "George P. Cosmatos", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802e28d", "profile_path": "/6DIKPjnDvr7oHgTPHTXM5te45Qt.jpg", "id": 16566}], "vote_average": 6.2, "runtime": 96}, "1370": {"poster_path": "/cUJgu5U6MHj9GF1weNtIPvN3IoS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189015611, "overview": "Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.", "video": false, "id": 1370, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Rambo III", "tagline": "The first was for himself. The second for his country. This time it's to save his friend.", "vote_count": 175, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0095956", "adult": false, "backdrop_path": "/mx0x96S8ZCXXoSxFinMbyI1117f.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1988-05-24", "popularity": 0.587062386785914, "original_title": "Rambo III", "budget": 63000000, "cast": [{"name": "Sylvester Stallone", "character": "Rambo", "id": 16483, "credit_id": "52fe42f0c3a36847f802e43f", "cast_id": 25, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Richard Crenna", "character": "Trautman", "id": 16554, "credit_id": "52fe42f0c3a36847f802e443", "cast_id": 26, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 1}, {"name": "Kurtwood Smith", "character": "Griggs", "id": 2115, "credit_id": "52fe42f0c3a36847f802e447", "cast_id": 28, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 3}, {"name": "Spiros Foc\u00e1s", "character": "Masoud", "id": 6783, "credit_id": "52fe42f0c3a36847f802e44b", "cast_id": 29, "profile_path": null, "order": 4}, {"name": "Sasson Gabai", "character": "Mousa", "id": 16604, "credit_id": "52fe42f0c3a36847f802e44f", "cast_id": 30, "profile_path": "/mvx0HMzFsiz4V3JaeIMQpLSU85S.jpg", "order": 5}, {"name": "Doudi Shoua", "character": "Hamid", "id": 16605, "credit_id": "52fe42f0c3a36847f802e453", "cast_id": 31, "profile_path": null, "order": 6}, {"name": "Randy Raney", "character": "Kourov", "id": 16606, "credit_id": "52fe42f0c3a36847f802e457", "cast_id": 32, "profile_path": null, "order": 7}, {"name": "Marcus Gilbert", "character": "Tomask", "id": 11763, "credit_id": "52fe42f0c3a36847f802e45b", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Alon Aboutboul", "character": "Nissem", "id": 16607, "credit_id": "52fe42f0c3a36847f802e45f", "cast_id": 34, "profile_path": "/g2ER1Yk1jtwMkugOEkK8FdCGUTB.jpg", "order": 9}, {"name": "Mahmoud Assadollahi", "character": "Rahim", "id": 16608, "credit_id": "52fe42f0c3a36847f802e463", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Joseph Shiloach", "character": "Khalid", "id": 16609, "credit_id": "52fe42f0c3a36847f802e467", "cast_id": 36, "profile_path": "/wIlEVaa7Tcok9sv9r4zOuKvnSns.jpg", "order": 11}, {"name": "Harold Diamond", "character": "Stick Fighter", "id": 16610, "credit_id": "52fe42f0c3a36847f802e46b", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Matti Seri", "character": "Gun Dealer", "id": 16611, "credit_id": "52fe42f0c3a36847f802e46f", "cast_id": 38, "profile_path": null, "order": 13}, {"name": "Shaby Ben-Aroya", "character": "Uri", "id": 16612, "credit_id": "52fe42f0c3a36847f802e473", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Marc de Jonge", "character": "Zaysen", "id": 255923, "credit_id": "52fe42f0c3a36847f802e483", "cast_id": 42, "profile_path": "/fEGIBK1cl3jVqyA1ifqNjZN4lRw.jpg", "order": 15}], "directors": [{"name": "Peter MacDonald", "department": "Directing", "job": "Director", "credit_id": "52fe42f0c3a36847f802e3b7", "profile_path": "/dDWPhRbouxsTuwnUsmXvHnTDQOT.jpg", "id": 16589}], "vote_average": 5.8, "runtime": 102}, "9563": {"poster_path": "/werdqNEJ91gbeaEK7sInXXZdUMg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100230832, "overview": "A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the aging coach to reevaluate his game plans and life. A new co-owner/president adds to the pressure of winning. The new owner must prove her self in a male dominated world.", "video": false, "id": 9563, "genres": [{"id": 18, "name": "Drama"}], "title": "Any Given Sunday", "tagline": "Play or be Played.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146838", "adult": false, "backdrop_path": "/2xQVXJrANGTaaoOn9g2IDQmBhJB.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Ixtlan", "id": 4198}, {"name": "Donners' Company", "id": 431}], "release_date": "1999-12-16", "popularity": 0.736839170098629, "original_title": "Any Given Sunday", "budget": 55000000, "cast": [{"name": "Al Pacino", "character": "Tony D'Amato", "id": 1158, "credit_id": "52fe450ac3a36847f80b8d8b", "cast_id": 16, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Christina Pagniacci", "id": 6941, "credit_id": "52fe450ac3a36847f80b8d8f", "cast_id": 17, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Dennis Quaid", "character": "Jack 'Cap' Rooney", "id": 6065, "credit_id": "52fe450ac3a36847f80b8d93", "cast_id": 18, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 2}, {"name": "James Woods", "character": "Dr. Harvey Mandrake", "id": 4512, "credit_id": "52fe450ac3a36847f80b8d97", "cast_id": 19, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "Jamie Foxx", "character": "Willie Beamen", "id": 134, "credit_id": "52fe450ac3a36847f80b8d9b", "cast_id": 20, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 4}, {"name": "LL Cool J", "character": "Julian Washington", "id": 36424, "credit_id": "52fe450ac3a36847f80b8d9f", "cast_id": 21, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 5}, {"name": "Matthew Modine", "character": "Dr. Ollie Powers", "id": 8654, "credit_id": "52fe450ac3a36847f80b8da7", "cast_id": 23, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 6}, {"name": "Jim Brown", "character": "Montezuma Monroe", "id": 4774, "credit_id": "52fe450ac3a36847f80b8dab", "cast_id": 24, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 7}, {"name": "Lawrence Taylor", "character": "Luther 'Shark' Lavay", "id": 185731, "credit_id": "52fe450ac3a36847f80b8daf", "cast_id": 25, "profile_path": "/cb9W1czwoOy3tgu7U7O5N48veB4.jpg", "order": 8}, {"name": "Bill Bellamy", "character": "Jimmy Sanderson", "id": 77896, "credit_id": "52fe450ac3a36847f80b8db3", "cast_id": 26, "profile_path": "/mtxMagJC14yh6JYgOlur0cQ4W3C.jpg", "order": 9}, {"name": "Aaron Eckhart", "character": "Nick Crozier", "id": 6383, "credit_id": "52fe450ac3a36847f80b8dc3", "cast_id": 30, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 10}, {"name": "John C. McGinley", "character": "Jack Rose", "id": 11885, "credit_id": "54a6e1fe92514117dd00a1b8", "cast_id": 32, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 11}, {"name": "Andrew Bryniarski", "character": "Patrick 'Madman' Kelly", "id": 52366, "credit_id": "52fe450ac3a36847f80b8db7", "cast_id": 27, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 12}, {"name": "Lauren Holly", "character": "Cindy Rooney", "id": 34485, "credit_id": "52fe450ac3a36847f80b8dbb", "cast_id": 28, "profile_path": "/pwenSL3M9vkbIrIvcZEb6mLJNeX.jpg", "order": 13}, {"name": "Ann-Margret", "character": "Margaret Pagniacci", "id": 13567, "credit_id": "52fe450ac3a36847f80b8dbf", "cast_id": 29, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 14}, {"name": "Lela Rochon", "character": "Vanessa Struthers", "id": 51359, "credit_id": "52fe450ac3a36847f80b8da3", "cast_id": 22, "profile_path": "/A4ZwspjtK9RdZe62GLVfoUxDGRO.jpg", "order": 15}, {"name": "Ron Madoff", "character": "Assistant Coach", "id": 1286269, "credit_id": "52fe450ac3a36847f80b8dc7", "cast_id": 31, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 16}, {"name": "Elizabeth Berkley", "character": "Mandy Murphy", "id": 19189, "credit_id": "54a6e20e92514117dd00a1bb", "cast_id": 33, "profile_path": "/zR0jWqa9WVKL0BDLaWTrwjNztd2.jpg", "order": 17}, {"name": "Charlton Heston", "character": "Commissioner", "id": 10017, "credit_id": "54a6e21ac3a368642800820f", "cast_id": 34, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 18}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe450ac3a36847f80b8d33", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.8, "runtime": 150}, "1372": {"poster_path": "/wRamTzV6udKaMXrspxqOuo02zk0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170877916, "overview": "An ex-mercenary turned smuggler. A Mende fisherman. Amid the explosive civil war overtaking 1999 Sierra Leone, these men join for two desperate missions: recovering a rare pink diamond of immense value and rescuing the fisherman's son conscripted as a child soldier into the brutal rebel forces ripping a swath of torture and bloodshed countrywide.", "video": false, "id": 1372, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Blood Diamond", "tagline": "It Will Cost You Everything", "vote_count": 723, "homepage": "http://blooddiamondmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450259", "adult": false, "backdrop_path": "/46y6EvnDveRFwtztyHVS0y2DipU.jpg", "production_companies": [{"name": "Liberty Pictures", "id": 20938}, {"name": "Warner Bros.", "id": 6194}, {"name": "Virtual Studios", "id": 449}, {"name": "Spring Creek Productions", "id": 705}, {"name": "Bedford Falls Productions", "id": 348}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}, {"name": "Lonely Film Productions GmbH & Co. KG.", "id": 430}], "release_date": "2006-12-07", "popularity": 0.861400411509892, "original_title": "Blood Diamond", "budget": 100000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Danny Archer", "id": 6193, "credit_id": "52fe42f0c3a36847f802e687", "cast_id": 27, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Djimon Hounsou", "character": "Solomon Vandy", "id": 938, "credit_id": "52fe42f0c3a36847f802e68b", "cast_id": 28, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "Maddy Bowen", "id": 6161, "credit_id": "52fe42f0c3a36847f802e68f", "cast_id": 29, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Kagiso Kuypers", "character": "Dia Vandy", "id": 16742, "credit_id": "52fe42f0c3a36847f802e693", "cast_id": 30, "profile_path": "/yJcJSAJKxTE11WKqeSMeLcQnW55.jpg", "order": 3}, {"name": "Arnold Vosloo", "character": "Colonel Coetzee", "id": 16743, "credit_id": "52fe42f0c3a36847f802e697", "cast_id": 31, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 4}, {"name": "Antony Coleman", "character": "Cordell Brown", "id": 16744, "credit_id": "52fe42f0c3a36847f802e69b", "cast_id": 32, "profile_path": "/8kjQdHAa9IrEpfnrOHzQ0A5svmm.jpg", "order": 5}, {"name": "Benu Mabhena", "character": "Jassie Vandy", "id": 16746, "credit_id": "52fe42f0c3a36847f802e69f", "cast_id": 33, "profile_path": "/jEibAvJcrB6K0jNaiuy5Qqa3MvX.jpg", "order": 6}, {"name": "Anointing Lukola", "character": "N'Yanda Vandy", "id": 16749, "credit_id": "52fe42f0c3a36847f802e6a3", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "David Harewood", "character": "Captain Poison", "id": 16752, "credit_id": "52fe42f0c3a36847f802e6a7", "cast_id": 35, "profile_path": "/1ldABESUDHQVbIb80irSD9NBRGE.jpg", "order": 8}, {"name": "Basil Wallace", "character": "Benjamin Kapanay", "id": 16754, "credit_id": "52fe42f0c3a36847f802e6ab", "cast_id": 36, "profile_path": "/7PI3AEAAVnnXIjFMQ7rHUDnIBOF.jpg", "order": 9}, {"name": "Jimi Mistry", "character": "Nabil", "id": 16756, "credit_id": "52fe42f0c3a36847f802e6af", "cast_id": 37, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 10}, {"name": "Michael Sheen", "character": "Simmons", "id": 3968, "credit_id": "52fe42f0c3a36847f802e6b3", "cast_id": 38, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 11}, {"name": "Marius Weyers", "character": "Van De Kaap", "id": 16758, "credit_id": "52fe42f0c3a36847f802e6b7", "cast_id": 39, "profile_path": "/xhUgoqJQOPzi2XoKVpVlJPcrcC3.jpg", "order": 12}, {"name": "Stephen Collins", "character": "Ambassador Walker", "id": 1756, "credit_id": "52fe42f0c3a36847f802e6bb", "cast_id": 40, "profile_path": "/eYUtj7K9pzgvARQlU8Fn4ybyGAj.jpg", "order": 13}, {"name": "Ntare Guma Mbaho Mwine ", "character": "M'Ed", "id": 16760, "credit_id": "52fe42f0c3a36847f802e6bf", "cast_id": 41, "profile_path": "/wKQhhukzIREY6jiLvEvmqD7wdFp.jpg", "order": 14}, {"name": "Ato Essandoh", "character": "Commander Rambo", "id": 5377, "credit_id": "52fe42f0c3a36847f802e6c3", "cast_id": 42, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 15}, {"name": "David S. Lee", "character": "Cockney Journalist", "id": 71078, "credit_id": "52fe42f0c3a36847f802e6f7", "cast_id": 51, "profile_path": "/jcQP0Uonk5cIiYjdmC2toGCpo6w.jpg", "order": 16}, {"name": "Percy Matsemela", "character": "Commander Zero", "id": 13103, "credit_id": "53a55e01c3a3687a2b000f38", "cast_id": 58, "profile_path": null, "order": 17}, {"name": "Klemens Becker", "character": "German Minister", "id": 1332515, "credit_id": "53a55e3ec3a3687a2b000f43", "cast_id": 59, "profile_path": null, "order": 18}, {"name": "Grant Swanby", "character": "UNCHR Official", "id": 67059, "credit_id": "53a55e75c3a3687a40000e0f", "cast_id": 60, "profile_path": null, "order": 19}, {"name": "Adetokumboh M'Cormack", "character": "R.U.F. Trainer", "id": 208096, "credit_id": "53a55edcc3a368707a0004f9", "cast_id": 61, "profile_path": "/eK4lnmoMDFdKsiSsBoetgOiPlXF.jpg", "order": 20}, {"name": "Tyrone Keogh", "character": "SA Page", "id": 1332516, "credit_id": "53a55f33c3a368707a000501", "cast_id": 62, "profile_path": null, "order": 21}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe42f0c3a36847f802e5ed", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 7.1, "runtime": 143}, "1374": {"poster_path": "/1aKKCOiFp4QQnEbRYb6jHHmEQk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300473716, "overview": "Rocky must come out of retirement to battle a gargantuan Soviet fighter named Drago, who brutally punished Rocky's friend and former rival, Apollo Creed. Seeking revenge in the name of his fallen comrade and his country, Rocky agrees to fight Drago in Moscow on Christmas, and the bout changes both fighters -- and the world.", "video": false, "id": 1374, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky IV", "tagline": "He's facing the ultimate challenge. And fighting for his life.", "vote_count": 257, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089927", "adult": false, "backdrop_path": "/uvbjTLZSxGehXWDo1ENyVuBrYie.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1985-11-21", "popularity": 1.33175635546579, "original_title": "Rocky IV", "budget": 31000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42f1c3a36847f802e8c3", "cast_id": 19, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42f1c3a36847f802e8c7", "cast_id": 20, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42f1c3a36847f802e8cb", "cast_id": 21, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42f1c3a36847f802e8cf", "cast_id": 22, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Brigitte Nielsen", "character": "Ludmilla Vobet Drago", "id": 921, "credit_id": "52fe42f1c3a36847f802e8d3", "cast_id": 23, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42f1c3a36847f802e8d7", "cast_id": 24, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "Michael Pataki", "character": "Nicoli Koloff", "id": 15993, "credit_id": "52fe42f1c3a36847f802e8db", "cast_id": 25, "profile_path": "/bwkT9HQr1HkGBToA1Mz4ej2F6Ra.jpg", "order": 6}, {"name": "Dolph Lundgren", "character": "Captain Ivan Drago", "id": 16644, "credit_id": "52fe42f1c3a36847f802e8df", "cast_id": 26, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 7}, {"name": "Stu Nahan", "character": "Commentator #1", "id": 16543, "credit_id": "52fe42f1c3a36847f802e8e3", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "R. J. Adams", "character": "Sports Announcer", "id": 16645, "credit_id": "52fe42f1c3a36847f802e8e7", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Al Bandiero", "character": "American Commentator #2", "id": 16646, "credit_id": "52fe42f1c3a36847f802e8eb", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Dominic Barto", "character": "Russian Government Official", "id": 16647, "credit_id": "52fe42f1c3a36847f802e8ef", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Danial Brown", "character": "Rocky Jr.'s Friend", "id": 16648, "credit_id": "52fe42f1c3a36847f802e8f3", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "James Brown", "character": "The Godfather of Soul", "id": 7172, "credit_id": "52fe42f1c3a36847f802e8f7", "cast_id": 32, "profile_path": "/opGiGzOwSRmhnUtWZcFjlyyK8Zx.jpg", "order": 13}, {"name": "Rose Mary Campos", "character": "Maid", "id": 16649, "credit_id": "52fe42f1c3a36847f802e8fb", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42f1c3a36847f802e859", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.6, "runtime": 91}, "9567": {"poster_path": "/qEe7aE4PgZCwnVoxKe7YsTm3Smh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85632458, "overview": "Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission to retrieve a Doctors Without Borders physician.", "video": false, "id": 9567, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Tears of the Sun", "tagline": "He was trained to follow orders. He became a hero by defying them.", "vote_count": 206, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0314353", "adult": false, "backdrop_path": "/xUXyhrsbOZqT3oSB6MulkqP5csV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Michael Lobell Productions", "id": 13473}], "release_date": "2003-03-07", "popularity": 0.840802013258647, "original_title": "Tears of the Sun", "budget": 70000000, "cast": [{"name": "Bruce Willis", "character": "Lieutenant A.K. Waters", "id": 62, "credit_id": "52fe450bc3a36847f80b9015", "cast_id": 9, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Monica Bellucci", "character": "Dr. Lena Fiore Kendricks", "id": 28782, "credit_id": "52fe450bc3a36847f80b9019", "cast_id": 10, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 1}, {"name": "Cole Hauser", "character": "James 'Red' Atkins", "id": 6614, "credit_id": "52fe450bc3a36847f80b901d", "cast_id": 11, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 2}, {"name": "Eamonn Walker", "character": "Ellis 'Zee' Pettigrew", "id": 19299, "credit_id": "52fe450bc3a36847f80b9021", "cast_id": 12, "profile_path": "/9vuNtg6IGlUNFOurojwkYThKnvd.jpg", "order": 3}, {"name": "Johnny Messner", "character": "Kelly Lake", "id": 21798, "credit_id": "52fe450bc3a36847f80b9037", "cast_id": 16, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 4}, {"name": "Nick Chinlund", "character": "Michael 'Slo' Slowenski", "id": 18461, "credit_id": "52fe450bc3a36847f80b903b", "cast_id": 17, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 5}, {"name": "Charles Ingram", "character": "Demetrius 'Silk' Owens", "id": 1053926, "credit_id": "52fe450bc3a36847f80b903f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Paul Francis", "character": "Danny 'Doc' Kelley", "id": 91607, "credit_id": "52fe450bc3a36847f80b9043", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Chad Smith", "character": "Jason 'Flea' Mabry", "id": 1053927, "credit_id": "52fe450bc3a36847f80b9047", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Tom Skerritt", "character": "Captain Bill Rhodes", "id": 4139, "credit_id": "52fe450bc3a36847f80b904b", "cast_id": 21, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 9}, {"name": "Malick Bowens", "character": "Colonel Idris Sadick", "id": 10649, "credit_id": "544e2cde0e0a26134b001054", "cast_id": 65, "profile_path": null, "order": 10}, {"name": "Awaovieyi Agie", "character": "Musa", "id": 1378251, "credit_id": "544e2cf60e0a2608c5004536", "cast_id": 66, "profile_path": null, "order": 11}, {"name": "Akosua Busia", "character": "Patience", "id": 13308, "credit_id": "544e2d130e0a2608cd004562", "cast_id": 67, "profile_path": "/wxelYaGa4xWcFhII3EebwX5pscZ.jpg", "order": 12}, {"name": "Ida Onyango", "character": "Lasana", "id": 1378252, "credit_id": "544e2d30c3a36872bc0047cc", "cast_id": 68, "profile_path": null, "order": 13}, {"name": "Benjamin Ochieng", "character": "Colonel Emanuel Okeze", "id": 1235875, "credit_id": "544e2d4d0e0a2608c5004549", "cast_id": 69, "profile_path": null, "order": 14}, {"name": "Kanayo Chiemelu", "character": "General Mustafa Yakubu", "id": 1444704, "credit_id": "551097d8c3a3683dd6005459", "cast_id": 72, "profile_path": null, "order": 15}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe450bc3a36847f80b8fe7", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.7, "runtime": 121}, "9571": {"poster_path": "/sYYhVAdCzReWYfj1ugFlWh3ldzw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7993039, "overview": "A look at some Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a \"no drugs\" pledge.", "video": false, "id": 9571, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Dazed and Confused", "tagline": "See it with a bud.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106677", "adult": false, "backdrop_path": "/lIQ8KxnqMpto5EeEI91MXeQNAJ8.jpg", "production_companies": [{"name": "Alphaville Productions", "id": 6556}, {"name": "Gramercy Pictures", "id": 37}], "release_date": "1993-09-24", "popularity": 0.750290088587728, "original_title": "Dazed and Confused", "budget": 6900000, "cast": [{"name": "Jason London", "character": "Randall 'Pink' Floyd", "id": 52474, "credit_id": "52fe450bc3a36847f80b921b", "cast_id": 1, "profile_path": "/z4eSvvH51WsZppswHVHcqFJJm6L.jpg", "order": 0}, {"name": "Rory Cochrane", "character": "Ron Slater", "id": 51792, "credit_id": "52fe450bc3a36847f80b921f", "cast_id": 2, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 1}, {"name": "Wiley Wiggins", "character": "Mitch Kramer", "id": 56934, "credit_id": "52fe450bc3a36847f80b9223", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Sasha Jenson", "character": "Don Dawson", "id": 58000, "credit_id": "52fe450bc3a36847f80b9227", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Michelle Burke", "character": "Jodie Kramer", "id": 58001, "credit_id": "52fe450bc3a36847f80b922b", "cast_id": 5, "profile_path": "/3yWWTYt6HJHueLPawrDdyoI2gYs.jpg", "order": 4}, {"name": "Adam Goldberg", "character": "Mike Newhouse", "id": 6163, "credit_id": "52fe450bc3a36847f80b922f", "cast_id": 6, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 5}, {"name": "Milla Jovovich", "character": "Michelle Burroughs", "id": 63, "credit_id": "52fe450bc3a36847f80b925d", "cast_id": 14, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 6}, {"name": "Matthew McConaughey", "character": "David Wooderson", "id": 10297, "credit_id": "52fe450bc3a36847f80b9261", "cast_id": 15, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 7}, {"name": "Ben Affleck", "character": "Fred O'Bannion", "id": 880, "credit_id": "52fe450bc3a36847f80b9265", "cast_id": 16, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 8}, {"name": "Joey Lauren Adams", "character": "Simone Kerr", "id": 16484, "credit_id": "52fe450bc3a36847f80b9269", "cast_id": 17, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 9}, {"name": "Parker Posey", "character": "Darla Marks", "id": 7489, "credit_id": "52fe450bc3a36847f80b926d", "cast_id": 18, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 10}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe450bc3a36847f80b9235", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.1, "runtime": 102}, "1381": {"poster_path": "/lGIJvQ8ZQazOHVAA0E34yIy7gxv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15304890, "overview": "Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.", "video": false, "id": 1381, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "The Fountain", "tagline": "Death is the road to awe", "vote_count": 154, "homepage": "http://thefountainmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414993", "adult": false, "backdrop_path": "/krgbGFHNXs9Xt4CYOhERo9hllfM.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Regency Enterprises", "id": 508}, {"name": "Protozoa Pictures", "id": 7503}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Muse Entertainment Enterprises", "id": 6438}], "release_date": "2006-11-22", "popularity": 0.851750776522572, "original_title": "The Fountain", "budget": 35000000, "cast": [{"name": "Hugh Jackman", "character": "Tom\u00e1s/Tom Creo/Tommy", "id": 6968, "credit_id": "52fe42f2c3a36847f802ed8f", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Queen Isabella/Izzi Creo", "id": 3293, "credit_id": "52fe42f2c3a36847f802ed93", "cast_id": 3, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Ellen Burstyn", "character": "Dr. Lillian Guzetti", "id": 9560, "credit_id": "52fe42f2c3a36847f802ed9d", "cast_id": 5, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 2}, {"name": "Mark Margolis", "character": "Father Avila", "id": 1173, "credit_id": "52fe42f2c3a36847f802edb3", "cast_id": 9, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 3}, {"name": "Stephen McHattie", "character": "Grand Inquisitor Silecio", "id": 230, "credit_id": "52fe42f2c3a36847f802edb7", "cast_id": 10, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 4}, {"name": "Fernando Hernandez", "character": "Lord of Xibalba", "id": 20194, "credit_id": "52fe42f2c3a36847f802edbb", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Sean Patrick Thomas", "character": "Antonio", "id": 11868, "credit_id": "52fe42f2c3a36847f802edbf", "cast_id": 12, "profile_path": "/8cXF4Ywgs70ZL1j2q5A2yOvd2AY.jpg", "order": 6}, {"name": "Donna Murphy", "character": "Betty", "id": 2517, "credit_id": "52fe42f2c3a36847f802edc3", "cast_id": 13, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 7}, {"name": "Ethan Suplee", "character": "Manny", "id": 824, "credit_id": "52fe42f2c3a36847f802edc7", "cast_id": 14, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 8}, {"name": "Richard McMillan", "character": "Henry", "id": 5924, "credit_id": "52fe42f2c3a36847f802edcb", "cast_id": 15, "profile_path": "/7IaSYFMcqTxpEUPM9UGZ2i6qIJg.jpg", "order": 9}, {"name": "Lorne Brass", "character": "Dr. Alan Lipper", "id": 20195, "credit_id": "52fe42f2c3a36847f802edcf", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Boyd Banks", "character": "Dominican Monk", "id": 20196, "credit_id": "52fe42f2c3a36847f802edd3", "cast_id": 17, "profile_path": "/mDsIaLKyGqyV1Nt0pV9joGkQNSP.jpg", "order": 11}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe42f2c3a36847f802ed8b", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 6.6, "runtime": 96}, "9574": {"poster_path": "/xrbkE6g2myJPLWxNy52yL2MJJHX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177977226, "overview": "Professor Phillip Brainard, an absent minded professor, works with his assistant Weebo, trying to create a substance that's a new source of energy and that will save Medfield College where his sweetheart Sara is the president. He has missed his wedding twice, and on the afternoon of his third wedding, Professor Brainard creates flubber, which allows objects to fly through the air.", "video": false, "id": 9574, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Flubber", "tagline": "Catch it if you can!", "vote_count": 165, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119137", "adult": false, "backdrop_path": "/jIm7vRTgkEq6WebPjbVCjXaMl3J.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Great Oaks Entertainment", "id": 2173}], "release_date": "1997-11-26", "popularity": 0.608192589524553, "original_title": "Flubber", "budget": 80000000, "cast": [{"name": "Robin Williams", "character": "Professor Philip Brainard", "id": 2157, "credit_id": "52fe450cc3a36847f80b93b5", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Dr. Sara Jean Reynolds", "id": 4726, "credit_id": "52fe450cc3a36847f80b93b9", "cast_id": 2, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "Christopher McDonald", "character": "Wilson Croft", "id": 4443, "credit_id": "52fe450cc3a36847f80b93bd", "cast_id": 3, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 2}, {"name": "Raymond J. Barry", "character": "Chester Hoenicker", "id": 10361, "credit_id": "52fe450cc3a36847f80b93c1", "cast_id": 4, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 3}, {"name": "Clancy Brown", "character": "Smith", "id": 6574, "credit_id": "52fe450cc3a36847f80b93c5", "cast_id": 5, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 4}, {"name": "Nancy Olson", "character": "Secretary at Ford Motor Company", "id": 8631, "credit_id": "52fe450cc3a36847f80b93c9", "cast_id": 6, "profile_path": "/8tuy84triOK0mS32KoyKSryhZtP.jpg", "order": 5}, {"name": "Ted Levine", "character": "Wesson", "id": 15854, "credit_id": "52fe450cc3a36847f80b9409", "cast_id": 17, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 6}, {"name": "Wil Wheaton", "character": "Bennett Hoenicker", "id": 3033, "credit_id": "52fe450cc3a36847f80b940d", "cast_id": 18, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 7}, {"name": "Edie McClurg", "character": "Martha George", "id": 3202, "credit_id": "52fe450cc3a36847f80b9411", "cast_id": 19, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 8}, {"name": "Jodi Benson", "character": "Weebo", "id": 63978, "credit_id": "52fe450cc3a36847f80b9415", "cast_id": 20, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 9}, {"name": "Leslie Stefanson", "character": "Sylvia", "id": 21474, "credit_id": "52fe450cc3a36847f80b9419", "cast_id": 21, "profile_path": "/4QRnRHRZAuhVTbYXbR4n5tn2Z1u.jpg", "order": 10}, {"name": "Malcolm Brownson", "character": "Father", "id": 201291, "credit_id": "52fe450cc3a36847f80b941d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Benjamin Brock", "character": "Window Boy", "id": 1075044, "credit_id": "52fe450cc3a36847f80b9421", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Dakin Matthews", "character": "Minister", "id": 43364, "credit_id": "52fe450cc3a36847f80b9425", "cast_id": 24, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 13}, {"name": "Zack Zeigler", "character": "Teenage Boy", "id": 1075045, "credit_id": "52fe450cc3a36847f80b9429", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Sam Lloyd", "character": "Coach Willy Barker", "id": 46920, "credit_id": "52fe450cc3a36847f80b942d", "cast_id": 26, "profile_path": "/xLSxSkq41HNGmK5cCeXqnki8CIz.jpg", "order": 15}], "directors": [{"name": "Les Mayfield", "department": "Directing", "job": "Director", "credit_id": "52fe450cc3a36847f80b93cf", "profile_path": "/qFl6z4jAfvb3bfMeGDMD4ch61tI.jpg", "id": 56911}], "vote_average": 5.0, "runtime": 93}, "9576": {"poster_path": "/9LFhJMHTjprVUjyJ666X5tNjTKZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177200000, "overview": "An unemployed actor with a reputation for being difficult disguises himself as a woman to get a role in a soap opera.", "video": false, "id": 9576, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Tootsie", "tagline": "What do you get when you cross a hopelessly straight starving actor with a dynamite red sequined dress? You get America's hottest new actress.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084805", "adult": false, "backdrop_path": "/auM5DWH5et9lql7vuYABdpDluR4.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Mirage Enterprises", "id": 932}, {"name": "Punch Productions", "id": 2154}, {"name": "Delphi Films", "id": 4267}], "release_date": "1982-12-16", "popularity": 0.59787939299488, "original_title": "Tootsie", "budget": 21000000, "cast": [{"name": "Dustin Hoffman", "character": "Michael Dorsey / Dorothy Michaels", "id": 4483, "credit_id": "52fe450cc3a36847f80b9477", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Jessica Lange", "character": "Julie Nichols", "id": 4431, "credit_id": "52fe450cc3a36847f80b947f", "cast_id": 3, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 2}, {"name": "Teri Garr", "character": "Sandy", "id": 8437, "credit_id": "52fe450cc3a36847f80b9483", "cast_id": 4, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 3}, {"name": "Dabney Coleman", "character": "Ron Carlisle", "id": 12850, "credit_id": "52fe450cc3a36847f80b9487", "cast_id": 5, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 4}, {"name": "Charles Durning", "character": "Les Nichols", "id": 1466, "credit_id": "52fe450cc3a36847f80b948b", "cast_id": 6, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 5}, {"name": "Bill Murray", "character": "Jeff Slater", "id": 1532, "credit_id": "52fe450cc3a36847f80b948f", "cast_id": 7, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 6}, {"name": "Sydney Pollack", "character": "George Fields", "id": 2226, "credit_id": "52fe450cc3a36847f80b94cf", "cast_id": 19, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 7}, {"name": "George Gaynes", "character": "John Van Horn", "id": 57351, "credit_id": "52fe450cc3a36847f80b94d3", "cast_id": 20, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 8}, {"name": "Geena Davis", "character": "April", "id": 16935, "credit_id": "52fe450cc3a36847f80b94d7", "cast_id": 21, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 9}, {"name": "Doris Belack", "character": "Rita", "id": 24293, "credit_id": "52fe450cc3a36847f80b94db", "cast_id": 22, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 10}, {"name": "Ellen Foley", "character": "Jacqui", "id": 157459, "credit_id": "52fe450cc3a36847f80b94df", "cast_id": 23, "profile_path": "/zNdvRxJ0EQOK2Pd1QrbrFykb4xN.jpg", "order": 11}, {"name": "Peter Gatto", "character": "Rick", "id": 1178373, "credit_id": "52fe450cc3a36847f80b94e3", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Lynne Thigpen", "character": "Jo", "id": 71266, "credit_id": "52fe450cc3a36847f80b94e7", "cast_id": 25, "profile_path": "/hxyt6zQokF8LvWnsPPzIik8pJSG.jpg", "order": 13}, {"name": "Ronald L. Schwary", "character": "Phil Weintraub", "id": 4184, "credit_id": "52fe450cc3a36847f80b94eb", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Debra Mooney", "character": "Mrs. Mallory", "id": 69504, "credit_id": "52fe450cc3a36847f80b94ef", "cast_id": 27, "profile_path": "/6rnwJhFNy1pZL1n3NynIsyxlHrw.jpg", "order": 15}, {"name": "Amy Lawrence", "character": "Amy", "id": 1178374, "credit_id": "52fe450cc3a36847f80b94f3", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Kenny Sinclair", "character": "Boy", "id": 1178375, "credit_id": "52fe450cc3a36847f80b94f7", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Susan Merson", "character": "Page", "id": 1178376, "credit_id": "52fe450cc3a36847f80b94fb", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Michael Ryan", "character": "Middle-Aged Man", "id": 1178377, "credit_id": "52fe450cc3a36847f80b94ff", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Robert D. Wilson", "character": "Stage Hand", "id": 1178378, "credit_id": "52fe450cc3a36847f80b9503", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "James Carruthers", "character": "Middle-Aged Man", "id": 1178379, "credit_id": "52fe450cc3a36847f80b9507", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Estelle Getty", "character": "Middle-Aged Woman", "id": 59956, "credit_id": "52fe450cc3a36847f80b950b", "cast_id": 34, "profile_path": "/3dfiQNyCietGhFRcghO5owq9YRM.jpg", "order": 22}, {"name": "Christine Ebersole", "character": "Linda", "id": 4003, "credit_id": "52fe450cc3a36847f80b950f", "cast_id": 35, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 23}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe450cc3a36847f80b9495", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 7.1, "runtime": 116}, "1389": {"poster_path": "/qOEAVtTTl0KTqDSpcQYPf0tL3AX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77745568, "overview": "Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves \u2026 and all the wrong guys. Now they're willing to risk it all to find out if there's more between them than just the law. Variety hails Out of Sight as \"a sly, sexy, vastly entertaining film.\"", "video": false, "id": 1389, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "Out of Sight", "tagline": "Opposites attract.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120780", "adult": false, "backdrop_path": "/5haSVhHr0WljxhYXTtLixRXPtRC.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Jersey Films", "id": 216}], "release_date": "1998-06-26", "popularity": 0.826086859129196, "original_title": "Out of Sight", "budget": 48000000, "cast": [{"name": "George Clooney", "character": "Jack Foley", "id": 1461, "credit_id": "52fe42f2c3a36847f802ef2f", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Karen Sisco", "id": 16866, "credit_id": "52fe42f2c3a36847f802ef33", "cast_id": 2, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Michael Keaton", "character": "Ray Nicolette", "id": 2232, "credit_id": "52fe42f2c3a36847f802ef37", "cast_id": 3, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Hejira Henry", "id": 2231, "credit_id": "52fe42f2c3a36847f802ef3b", "cast_id": 4, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Dennis Farina", "character": "Marshall Sisco", "id": 1117, "credit_id": "52fe42f2c3a36847f802ef81", "cast_id": 16, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 4}, {"name": "Catherine Keener", "character": "Adele", "id": 2229, "credit_id": "52fe42f2c3a36847f802ef85", "cast_id": 17, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Ving Rhames", "character": "Buddy Bragg", "id": 10182, "credit_id": "52fe42f2c3a36847f802ef89", "cast_id": 18, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 6}, {"name": "Steve Zahn", "character": "Glenn Michaels", "id": 18324, "credit_id": "52fe42f2c3a36847f802ef8d", "cast_id": 19, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 7}, {"name": "Keith Loneker", "character": "White Boy Bob", "id": 54714, "credit_id": "52fe42f2c3a36847f802ef91", "cast_id": 20, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 8}, {"name": "Nancy Allen", "character": "Midge", "id": 44038, "credit_id": "52fe42f2c3a36847f802ef95", "cast_id": 21, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 9}, {"name": "Albert Brooks", "character": "Richard Ripley", "id": 13, "credit_id": "52fe42f2c3a36847f802ef99", "cast_id": 22, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 10}, {"name": "Don Cheadle", "character": "Maurice Miller", "id": 1896, "credit_id": "52fe42f2c3a36847f802ef9d", "cast_id": 23, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 11}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe42f2c3a36847f802ef41", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.5, "runtime": 123}, "255343": {"poster_path": "/4e1q2uZ4GB89n9iJa9lRx4mv37W.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "For Pablo Escobar (Benicio Del Toro), family is everything. When young surfer Nick (Josh Hutcherson) falls for Escobar's niece, he finds his life on the line when he's pulled into the dangerous world of the family business.", "video": false, "id": 255343, "genres": [{"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Escobar: Paradise Lost", "tagline": "Welcome to the family", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2515030", "adult": false, "backdrop_path": "/gbwOFHXSLi1DD3D7eI2vlZWIAyq.jpg", "production_companies": [{"name": "Nexus Factory", "id": 7561}, {"name": "Chapter 2", "id": 20339}, {"name": "Jaguar Films", "id": 10497}], "release_date": "2014-10-11", "popularity": 2.87424533562135, "original_title": "Escobar: Paradise Lost", "budget": 0, "cast": [{"name": "Benicio del Toro", "character": "Pablo Escobar", "id": 1121, "credit_id": "52fe4ee69251416c91141a83", "cast_id": 1, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Nick", "id": 27972, "credit_id": "52fe4ee69251416c91141a87", "cast_id": 2, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Brady Corbet", "character": "Dylan", "id": 55493, "credit_id": "52fe4ee69251416c91141a8b", "cast_id": 3, "profile_path": "/cnlvcYJP4UyeKdbCCuTKvFkjWSH.jpg", "order": 2}, {"name": "Claudia Traisac", "character": "Maria", "id": 1261473, "credit_id": "52fe4ee69251416c91141a8f", "cast_id": 4, "profile_path": "/eQkwufLVYERBBjklSQ4NvalLBB0.jpg", "order": 3}, {"name": "Carlos Bardem", "character": "", "id": 78882, "credit_id": "54d35f19c3a3686abf0034a2", "cast_id": 7, "profile_path": "/pCDBcmJo0vSQPEX3aobh1ub0acd.jpg", "order": 4}, {"name": "Ana Girardot", "character": "Anne", "id": 228714, "credit_id": "550b0eb5c3a3684877001cb0", "cast_id": 8, "profile_path": "/dGWDITbVQoNg3wbpNudxVuuHnyb.jpg", "order": 5}], "directors": [{"name": "Andrea Di Stefano", "department": "Directing", "job": "Director", "credit_id": "52fe4ee69251416c91141a95", "profile_path": "/nIB8fSk0yJN7PWGJZoNcyM0hJ7l.jpg", "id": 40541}], "vote_average": 6.5, "runtime": 120}, "50544": {"poster_path": "/tmVuyRSS9RYFs73YGbMnFous7DH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150483765, "overview": "While trying to avoid the clich\u00e9s of Hollywood romantic comedies, Dylan and Jamie soon discover however that adding the act of sex to their friendship does lead to complications.", "video": false, "id": 50544, "genres": [{"id": 35, "name": "Comedy"}], "title": "Friends with Benefits", "tagline": "Some friends come with a happy ending.", "vote_count": 619, "homepage": "http://www.fwb-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1632708", "adult": false, "backdrop_path": "/liq5ljqURqLiBUgMkNiR388ZuSH.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Screen Gems", "id": 3287}, {"name": "Olive Bridge Entertainment", "id": 7291}], "release_date": "2011-07-21", "popularity": 0.973281632343643, "original_title": "Friends with Benefits", "budget": 35000000, "cast": [{"name": "Justin Timberlake", "character": "Dylan Harper", "id": 12111, "credit_id": "52fe47cac3a36847f8148831", "cast_id": 2, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Jamie Rellis", "id": 18973, "credit_id": "52fe47cac3a36847f814882d", "cast_id": 1, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Patricia Clarkson", "character": "Lorna", "id": 1276, "credit_id": "52fe47cbc3a36847f8148857", "cast_id": 11, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Tommy Bollinger", "id": 57755, "credit_id": "52fe47cbc3a36847f814884f", "cast_id": 9, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Nolan Gould", "character": "Sammy - Sam the Magnificent", "id": 147710, "credit_id": "52fe47cac3a36847f8148835", "cast_id": 3, "profile_path": "/xyritJRCjFRZBBua866EanS80st.jpg", "order": 4}, {"name": "Shaun White", "character": "Himself", "id": 127963, "credit_id": "52fe47cbc3a36847f814884b", "cast_id": 8, "profile_path": "/7JqSN7O59LwxN0CIiq7dre6sUHd.jpg", "order": 5}, {"name": "Jenna Elfman", "character": "Annie Harper", "id": 40279, "credit_id": "52fe47cbc3a36847f8148853", "cast_id": 10, "profile_path": "/cTXzciaLL96Pa75HzEr1u1kbfeH.jpg", "order": 6}, {"name": "Bryan Greenberg", "character": "Parker", "id": 23821, "credit_id": "52fe47cbc3a36847f814885b", "cast_id": 12, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 7}, {"name": "Richard Jenkins", "character": "Mr. Harper", "id": 28633, "credit_id": "52fe47cbc3a36847f814885f", "cast_id": 13, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 8}, {"name": "Masi Oka", "character": "Darin Arturo Morena", "id": 17273, "credit_id": "52fe47cbc3a36847f814886f", "cast_id": 16, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 9}, {"name": "Andy Samberg", "character": "Quincy", "id": 62861, "credit_id": "52fe47cbc3a36847f8148873", "cast_id": 17, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 10}, {"name": "Emma Stone", "character": "Kayla", "id": 54693, "credit_id": "52fe47cbc3a36847f8148877", "cast_id": 18, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 11}, {"name": "Tiya Sircar", "character": "Hostess", "id": 109046, "credit_id": "52fe47cbc3a36847f814887b", "cast_id": 19, "profile_path": "/uqAiFL1P344fWa4cqfQhKWNoUyO.jpg", "order": 12}, {"name": "Catherine Reitman", "character": "Female Co-Worker", "id": 154826, "credit_id": "530375c6c3a3685ce732c9e1", "cast_id": 20, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 13}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe47cbc3a36847f814886b", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.2, "runtime": 109}, "50546": {"poster_path": "/4sJDqzBaqBprkEy0aLjIGl7TrHx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214918407, "overview": "In Just Go With It, a plastic surgeon, romancing a much younger schoolteacher, enlists his loyal assistant to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, the assistant's kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.", "video": false, "id": 50546, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Just Go With It", "tagline": "Sometimes a guy's best wingman... is a wingwoman", "vote_count": 475, "homepage": "http://www.justgowithit-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1564367", "adult": false, "backdrop_path": "/sXpF6Vfy4o8fNHP1GBWBC3IxdrJ.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2011-02-11", "popularity": 1.9822119805531, "original_title": "Just Go With It", "budget": 80000000, "cast": [{"name": "Jennifer Aniston", "character": "Katherine Murphy", "id": 4491, "credit_id": "52fe47cbc3a36847f81488ad", "cast_id": 1, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Adam Sandler", "character": "Danny Maccabee", "id": 19292, "credit_id": "52fe47cbc3a36847f81488b1", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Devlin Adams", "id": 2227, "credit_id": "52fe47cbc3a36847f81488b5", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "Bailee Madison", "character": "Maggie", "id": 54479, "credit_id": "52fe47cbc3a36847f81488b9", "cast_id": 4, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 3}, {"name": "Griffin Gluck", "character": "Michael / Bart", "id": 971299, "credit_id": "53961f9c0e0a266dc500744f", "cast_id": 22, "profile_path": "/rfVQBYJdHkFNwRCvp9UJa7zdxz7.jpg", "order": 4}, {"name": "Brooklyn Decker", "character": "Palmer", "id": 131520, "credit_id": "52fe47cbc3a36847f81488c1", "cast_id": 6, "profile_path": "/ll0ujxAqZUTcWSuA8NNsXoLppsG.jpg", "order": 6}, {"name": "Elena Satine", "character": "Christine", "id": 127907, "credit_id": "52fe47cbc3a36847f81488c5", "cast_id": 7, "profile_path": "/e9SC39zujFcz9v4Zmj4fEN2EY37.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Eddie", "id": 32907, "credit_id": "52fe47cbc3a36847f81488db", "cast_id": 11, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "Dan Patrick", "character": "Tanner Patrick", "id": 166029, "credit_id": "52fe47cbc3a36847f81488df", "cast_id": 12, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 9}, {"name": "Rachel Dratch", "character": "Kirsten Brant", "id": 32905, "credit_id": "52fe47cbc3a36847f81488e3", "cast_id": 13, "profile_path": "/pVHUp99e3MJU9K326KTeDECl3S3.jpg", "order": 10}, {"name": "Kevin Nealon", "character": "Adon", "id": 58478, "credit_id": "52fe47cbc3a36847f81488e7", "cast_id": 14, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 11}, {"name": "Minka Kelly", "character": "Joanna Damon", "id": 96625, "credit_id": "52fe47cbc3a36847f81488eb", "cast_id": 15, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 12}, {"name": "Dave Matthews", "character": "Ian Maxtone Jones", "id": 66070, "credit_id": "52fe47cbc3a36847f81488f3", "cast_id": 17, "profile_path": "/izo0HKZEdaJiZ1zW8bizpopMfmz.jpg", "order": 13}, {"name": "Allen Covert", "character": "Soul Patch", "id": 20818, "credit_id": "52fe47cbc3a36847f81488f7", "cast_id": 18, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 14}, {"name": "Jackie Sandler", "character": "Veruca", "id": 963260, "credit_id": "52fe47cbc3a36847f81488ff", "cast_id": 20, "profile_path": "/1hg6ibuKDUdvPAer2Tjb5hnrLly.jpg", "order": 16}, {"name": "Rakefet Abergel", "character": "Patricia", "id": 54717, "credit_id": "52fe47cbc3a36847f8148903", "cast_id": 21, "profile_path": "/yg3i1dWluH66d1pfMgfaEpJisiC.jpg", "order": 17}, {"name": "Rachel Specter", "character": "Lisa Hammond", "id": 88038, "credit_id": "552e602bc3a36804cd000a96", "cast_id": 23, "profile_path": "/haFXITGeMQbgzEtRUEpHugSwnoe.jpg", "order": 18}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe47cbc3a36847f81488cb", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.3, "runtime": 117}, "9587": {"poster_path": "/9E6UwPQMybyMx1kqatzk5PD6WCg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "With their father away as a chaplain in the Civil War, Jo, Meg, Beth and Amy grow up with their mother in somewhat reduced circumstances. They are a close family who inevitably have their squabbles and tragedies. But the bond holds even when, later, male friends start to become a part of the household.", "video": false, "id": 9587, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Little Women", "tagline": "The story that has lived in our hearts for generations, now comes to the screen for the holidays.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0110367", "adult": false, "backdrop_path": "/ojn7IYKmMt8HXRd6oLwY5pLGLVc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1994-12-21", "popularity": 0.787293070483081, "original_title": "Little Women", "budget": 18000000, "cast": [{"name": "Winona Ryder", "character": "Jo March", "id": 1920, "credit_id": "52fe450dc3a36847f80b9a15", "cast_id": 1, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 0}, {"name": "Gabriel Byrne", "character": "Friedrich Bhaer", "id": 5168, "credit_id": "52fe450dc3a36847f80b9a19", "cast_id": 2, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 1}, {"name": "Trini Alvarado", "character": "Meg March", "id": 17187, "credit_id": "52fe450dc3a36847f80b9a1d", "cast_id": 3, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 2}, {"name": "Samantha Mathis", "character": "Older Amy March", "id": 20767, "credit_id": "52fe450dc3a36847f80b9a21", "cast_id": 4, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 3}, {"name": "Kirsten Dunst", "character": "Younger Amy March", "id": 205, "credit_id": "52fe450dc3a36847f80b9a25", "cast_id": 5, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 4}, {"name": "Claire Danes", "character": "Beth March", "id": 6194, "credit_id": "52fe450dc3a36847f80b9a29", "cast_id": 6, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 5}, {"name": "Christian Bale", "character": "Laurie", "id": 3894, "credit_id": "52fe450dc3a36847f80b9a2d", "cast_id": 7, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 6}, {"name": "Eric Stoltz", "character": "John Brooke", "id": 7036, "credit_id": "52fe450dc3a36847f80b9a31", "cast_id": 8, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 7}, {"name": "Susan Sarandon", "character": "Mrs. Abigail \"Marmee\" March", "id": 4038, "credit_id": "52fe450dc3a36847f80b9a35", "cast_id": 9, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 8}, {"name": "John Neville", "character": "Mr. Laurence", "id": 12642, "credit_id": "52fe450dc3a36847f80b9a63", "cast_id": 17, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 9}], "directors": [{"name": "Gillian Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe450dc3a36847f80b9a3b", "profile_path": "/nAWFdZDlp7q6yWDWgM5PMkkmZcA.jpg", "id": 58094}], "vote_average": 6.7, "runtime": 115}, "1398": {"poster_path": "/ezt0Z9wIcPIxiks0J4dm8zJn575.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}], "revenue": 0, "overview": "Near a gray and unnamed city is the Zone, an alien place guarded by barbed wire and soldiers, and where the normal laws of physics are victim to frequent anomalies. A Stalker, one of only a handful who have the mental gifts (and who risk imprisonment) to lead people into the Zone is tasked with reaching the Room, said to be a place where one's secret hopes come true. His clients are a burned out popular writer, cynical, and questioning his talent; and a quiet scientist more concerned about his knapsack than the journey. In the deserted Zone, the approach to the Room must be indirect. As they draw near, the rules seem to change and the stalker faces a crisis. The film is loosely based on the novel \"Roadside Picnic\" by Boris and Arkady Strugatsky", "video": false, "id": 1398, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Stalker", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0079944", "adult": false, "backdrop_path": "/m7yrs7Sw5WpUNJdqDjEhkNJVpxt.jpg", "production_companies": [{"name": "Mosfilm", "id": 5120}], "release_date": "1979-08-01", "popularity": 0.725079991463466, "original_title": "\u0421\u0442\u0430\u043b\u043a\u0435\u0440", "budget": 0, "cast": [{"name": "Aleksandr Kaydanovskiy", "character": "Stalker", "id": 28078, "credit_id": "52fe42f3c3a36847f802f15f", "cast_id": 6, "profile_path": "/1Sh6H65KpCMzzwPYCwH3IVaStIZ.jpg", "order": 0}, {"name": "Anatoliy Solonitsyn", "character": "Ecrivain", "id": 8475, "credit_id": "52fe42f3c3a36847f802f17f", "cast_id": 16, "profile_path": "/mTz5gtiX2Y8B5TajEjQbnTTXlgP.jpg", "order": 1}, {"name": "Nikolay Grinko", "character": "Physicien", "id": 1190992, "credit_id": "52fe42f3c3a36847f802f187", "cast_id": 20, "profile_path": "/kSppXUS2WdGwVSNFZZpmXCdlKia.jpg", "order": 2}, {"name": "Alisa Freyndlikh", "character": "Femme du Stalker", "id": 28079, "credit_id": "52fe42f3c3a36847f802f17b", "cast_id": 15, "profile_path": "/otq1P1wYlKvtHkd8ONXgtOLswk3.jpg", "order": 3}, {"name": "Natasha Abramova", "character": "Martha, fille du Stalker", "id": 28080, "credit_id": "52fe42f3c3a36847f802f183", "cast_id": 18, "profile_path": null, "order": 4}], "directors": [{"name": "Andrei Tarkovsky", "department": "Directing", "job": "Director", "credit_id": "52fe42f3c3a36847f802f143", "profile_path": "/kHK6uZclCj8ZHOZRI9Hq8Q8YXOg.jpg", "id": 8452}], "vote_average": 7.9, "runtime": 163}, "9591": {"poster_path": "/luSHsQYyX0aukrHPL5joYOxcsO9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34585416, "overview": "A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.", "video": false, "id": 9591, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "That Thing You Do!", "tagline": "In every life there comes a time when that dream you dream becomes that thing you do.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117887", "adult": false, "backdrop_path": "/6uIGc25rahyKeG99h6JP7c1e6ai.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Clinica Estetico", "id": 1274}, {"name": "Clavius Base", "id": 38944}], "release_date": "1996-10-04", "popularity": 0.505991058659081, "original_title": "That Thing You Do!", "budget": 0, "cast": [{"name": "Tom Everett Scott", "character": "Guy Patterson", "id": 16857, "credit_id": "52fe450ec3a36847f80b9b93", "cast_id": 1, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 0}, {"name": "Johnathon Schaech", "character": "Jimmy Mattingly", "id": 51670, "credit_id": "52fe450ec3a36847f80b9b9b", "cast_id": 3, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 1}, {"name": "Tom Hanks", "character": "Mr. White", "id": 31, "credit_id": "52fe450ec3a36847f80b9ba3", "cast_id": 5, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 2}, {"name": "Steve Zahn", "character": "Lenny Haise", "id": 18324, "credit_id": "52fe450ec3a36847f80b9b9f", "cast_id": 4, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 3}, {"name": "Ethan Embry", "character": "T.B. Player", "id": 58019, "credit_id": "52fe450ec3a36847f80b9be1", "cast_id": 16, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 4}, {"name": "Liv Tyler", "character": "Faye Dolan", "id": 882, "credit_id": "52fe450ec3a36847f80b9b97", "cast_id": 2, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 5}, {"name": "Charlize Theron", "character": "Tina", "id": 6885, "credit_id": "52fe450ec3a36847f80b9ba7", "cast_id": 6, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Del Paxton", "id": 8854, "credit_id": "54b8bf43c3a3686c6f003914", "cast_id": 19, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Giovanni Ribisi", "character": "Chad", "id": 1771, "credit_id": "52fe450ec3a36847f80b9be5", "cast_id": 17, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 8}, {"name": "Obba Babatunde", "character": "Lamarr", "id": 52057, "credit_id": "54b8bf54c3a3686c68004183", "cast_id": 20, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 9}, {"name": "Alex Rocco", "character": "Sol Siler", "id": 20752, "credit_id": "54b8bf61c3a3686c6f003916", "cast_id": 21, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 10}, {"name": "Chris Isaak", "character": "Uncle Bob", "id": 6591, "credit_id": "54b8bf719251411d6a00405c", "cast_id": 22, "profile_path": "/zL7bz7RQM2iVe45CZyYhM8fAi1U.jpg", "order": 11}, {"name": "Holmes Osborne", "character": "Mr. Patterson", "id": 1578, "credit_id": "54b8c1159251411d6a004086", "cast_id": 23, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 12}, {"name": "Chris Ellis", "character": "Phil Horace", "id": 8191, "credit_id": "54b8cb2ec3a368145e000fa5", "cast_id": 24, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 13}, {"name": "Peter Scolari", "character": "Troy Chesterfield", "id": 42363, "credit_id": "54b8cb4bc3a3686c6b0046d4", "cast_id": 25, "profile_path": "/tLSgD0c7i2rpIS5kNfTysy6Sz0P.jpg", "order": 14}, {"name": "Rita Wilson", "character": "Margueritte", "id": 12931, "credit_id": "54b8cb58c3a3686c6100396e", "cast_id": 26, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 15}, {"name": "Kevin Pollak", "character": "Victor 'Boss Vic Koss' Kosslovich", "id": 7166, "credit_id": "54b8cb6d9251411d77003b63", "cast_id": 27, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 16}, {"name": "Robert Torti", "character": "Freddy Fredrickson", "id": 74933, "credit_id": "54b8cb8492514148f0000e22", "cast_id": 28, "profile_path": "/dPzxmVKTdMPhYiMjAbScn3peKFt.jpg", "order": 17}, {"name": "Holmes Osborne", "character": "Mr. Patterson", "id": 1578, "credit_id": "54b8cb98c3a3681411000e04", "cast_id": 29, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 18}, {"name": "Claudia Stedelin", "character": "Mrs. Patterson", "id": 67805, "credit_id": "54b8cba192514148f0000e24", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Dawn Maxey", "character": "Darlene Patterson", "id": 166935, "credit_id": "54b8cbabc3a3681411000e09", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Jonathan Demme", "character": "Major Motion Picture Director", "id": 16294, "credit_id": "54b8cbbb9251411d6a004166", "cast_id": 32, "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "order": 21}, {"name": "Paul Feig", "character": "KMPC DJ", "id": 116805, "credit_id": "54b8cbc9c3a3681445000dbb", "cast_id": 33, "profile_path": "/6CI4revRSc9qCy6kVlyGntHblcI.jpg", "order": 22}, {"name": "Bryan Cranston", "character": "Virgil \"Gus\" Grissom", "id": 17419, "credit_id": "54b8cbdc92514148f0000e2e", "cast_id": 34, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 23}, {"name": "Colin Hanks", "character": "Male Page", "id": 3492, "credit_id": "54b8cbe99251411d77003b77", "cast_id": 35, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 24}, {"name": "Kevin Pollak", "character": "Boss Vic Koss", "id": 7166, "credit_id": "54b9519092514148f0001bca", "cast_id": 36, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 25}], "directors": [{"name": "Tom Hanks", "department": "Directing", "job": "Director", "credit_id": "52fe450ec3a36847f80b9bad", "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "id": 31}], "vote_average": 6.6, "runtime": 108}, "9593": {"poster_path": "/yeLurMF2Xy3nex17hBbxft6zGR0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 137298489, "overview": "Danny is obsessed with a fictional movie character action hero Jack Slater. When a magical ticket transports him into Jack's latest adventure, Danny finds himself in a world where movie magic and reality collide. Now it's up to Danny to save the life of his hero and new friend.", "video": false, "id": 9593, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Last Action Hero", "tagline": "This isn't the movies anymore.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107362", "adult": false, "backdrop_path": "/A5C62A1MjE5a6ZrtmvHYK3vTKtG.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1993-06-17", "popularity": 1.13250661236172, "original_title": "Last Action Hero", "budget": 85000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Jack Slater", "id": 1100, "credit_id": "52fe450ec3a36847f80b9c83", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Austin O'Brien", "character": "Danny Madigan", "id": 58119, "credit_id": "52fe450ec3a36847f80b9c8b", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Charles Dance", "character": "Benedict", "id": 4391, "credit_id": "52fe450ec3a36847f80b9c9b", "cast_id": 7, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 2}, {"name": "F. Murray Abraham", "character": "John Practice", "id": 1164, "credit_id": "52fe450ec3a36847f80b9c87", "cast_id": 2, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 3}, {"name": "Art Carney", "character": "Frank", "id": 40176, "credit_id": "52fe450ec3a36847f80b9c8f", "cast_id": 4, "profile_path": "/aGD4B4XBXdM921tU5KeRFaN26KH.jpg", "order": 4}, {"name": "Anthony Quinn", "character": "Tony Vivaldi", "id": 5401, "credit_id": "52fe450ec3a36847f80b9c93", "cast_id": 5, "profile_path": "/9sKpm4KCoUbmMbR86fpqcgBCHrJ.jpg", "order": 5}, {"name": "Ian McKellen", "character": "Death", "id": 1327, "credit_id": "52fe450ec3a36847f80b9c97", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 6}, {"name": "Frank McRae", "character": "Lieutenant Dekker", "id": 1735, "credit_id": "52fe450ec3a36847f80b9cdb", "cast_id": 19, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 7}, {"name": "Mercedes Ruehl", "character": "Irene Madigan", "id": 2167, "credit_id": "52fe450ec3a36847f80b9cdf", "cast_id": 20, "profile_path": "/nPsSRaDQxiviOVY8ouqTBLGaui6.jpg", "order": 8}, {"name": "Tina Turner", "character": "The Mayor", "id": 1459, "credit_id": "52fe450ec3a36847f80b9ce3", "cast_id": 21, "profile_path": "/yhA10YPoQwGWtvd4TUm4X6tkv1x.jpg", "order": 9}, {"name": "Joan Plowright", "character": "Teacher", "id": 23709, "credit_id": "52fe450ec3a36847f80b9ce7", "cast_id": 22, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 10}, {"name": "Leeza Gibbons", "character": "Herself", "id": 44051, "credit_id": "52fe450ec3a36847f80b9ceb", "cast_id": 23, "profile_path": "/nZOYAQ2hbLk0gnwtfuvvwokp38o.jpg", "order": 11}, {"name": "Noah Emmerich", "character": "Rookie", "id": 11315, "credit_id": "52fe450ec3a36847f80b9cef", "cast_id": 24, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 12}, {"name": "Michael V. Gazzo", "character": "Torelli", "id": 3172, "credit_id": "52fe450ec3a36847f80b9cf3", "cast_id": 25, "profile_path": "/z50tLgbtVvIEI05uHO6udwOgwe3.jpg", "order": 13}, {"name": "Colleen Camp", "character": "Ratcliff", "id": 13023, "credit_id": "52fe450ec3a36847f80b9cf7", "cast_id": 26, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 14}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe450ec3a36847f80b9cd7", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 5.6, "runtime": 130}, "1402": {"poster_path": "/qTyZ6bRb36FjoDPszbWa6zVYzJZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 305070744, "overview": "Based on a true story about a man named Christopher Gardner, who has invested heavily in a device known as a \"Bone Density scanner\". However, the devices do not sell as they are just marginally better than the current technology at a much higher price. As Gardner tries to figure out how to sell them, his wife leaves him, he loses his house, his bank account, and credit cards. Forced to live out in the streets with his son, Gardner is now desperate to find a steady job; he takes on a job as a stockbroker, but before he can receive pay, he needs to go through 6 months of training, and to sell his devices.", "video": false, "id": 1402, "genres": [{"id": 18, "name": "Drama"}], "title": "The Pursuit of Happyness", "tagline": "Inspired by True Events", "vote_count": 687, "homepage": "http://www.sonypictures.com/homevideo/thepursuitofhappyness/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0454921", "adult": false, "backdrop_path": "/3HcQuppFrEf5ioUqpg373usgQqh.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2006-12-14", "popularity": 1.44937282908182, "original_title": "The Pursuit of Happyness", "budget": 55000000, "cast": [{"name": "Will Smith", "character": "Chris Gardner", "id": 2888, "credit_id": "52fe42f3c3a36847f802f1eb", "cast_id": 19, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Thandie Newton", "character": "Linda", "id": 9030, "credit_id": "52fe42f3c3a36847f802f1df", "cast_id": 11, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 1}, {"name": "Brian Howe", "character": "Jay Twistle", "id": 1990, "credit_id": "52fe42f3c3a36847f802f1e3", "cast_id": 13, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 2}, {"name": "James Karen", "character": "Martin Frohm", "id": 14852, "credit_id": "52fe42f3c3a36847f802f1e7", "cast_id": 14, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 3}, {"name": "Jaden Smith", "character": "Christopher", "id": 120724, "credit_id": "52fe42f3c3a36847f802f1ef", "cast_id": 20, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 4}], "directors": [{"name": "Gabriele Muccino", "department": "Directing", "job": "Director", "credit_id": "52fe42f3c3a36847f802f1ab", "profile_path": "/uU23lwEwz3TnHl0DvvyePpaGuEG.jpg", "id": 20646}], "vote_average": 7.2, "runtime": 117}, "9595": {"poster_path": "/7xTBjS7yfBk7xtTs8ckJKGp4HOl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181096164, "overview": "Charlie Sheen, Lloyd Bridges, Cary Elwes, Valeria Golino and Jon Cryer co-star in director Jim Abrahams' (Airplane, Naked Gun) truly hilarious spoof of Top Gun. Recruited to join a top-secret mission for the Air Force, a renegade pilot (Sheen) finds himself coping with an incompetent admiral (Bridges) and a carefully selected squadron of flyers who are either inept or half-blind.", "video": false, "id": 9595, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10752, "name": "War"}], "title": "Hot Shots!", "tagline": "The mother of all movies.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iGrRouADMV9MbidImsgRORaV3q.jpg", "poster_path": "/5uzldxeEVqvdaZhE4uCT9TTz9p1.jpg", "id": 52988, "name": "Hot Shots! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102059", "adult": false, "backdrop_path": "/cRwfgVEV02xVA07tMidSIazYRJ.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1991-07-31", "popularity": 0.899877447715797, "original_title": "Hot Shots!", "budget": 26000000, "cast": [{"name": "Charlie Sheen", "character": "Lt. Topper Harley / Rhett Butler / Superman", "id": 6952, "credit_id": "52fe450ec3a36847f80b9dd3", "cast_id": 1, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 0}, {"name": "Cary Elwes", "character": "Lt. Kent Gregory", "id": 2130, "credit_id": "52fe450ec3a36847f80b9dd7", "cast_id": 2, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 1}, {"name": "Valeria Golino", "character": "Ramada Thompson / Scarlett O'Hara / Lois Lane", "id": 3124, "credit_id": "52fe450ec3a36847f80b9ddb", "cast_id": 3, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 2}, {"name": "Lloyd Bridges", "character": "Adm. Thomas 'Tug' Benson", "id": 2177, "credit_id": "52fe450ec3a36847f80b9ddf", "cast_id": 4, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Lt. Cmdr. James Block", "id": 14721, "credit_id": "52fe450ec3a36847f80b9e37", "cast_id": 19, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Jon Cryer", "character": "Jim 'Wash Out' Pfaffenbach", "id": 69718, "credit_id": "52fe450ec3a36847f80b9e3b", "cast_id": 20, "profile_path": "/kXoEUv6pfXZGFuxVTTiuSVnac7B.jpg", "order": 5}, {"name": "William O'Leary", "character": "Pete 'Dead Meat' Thompson", "id": 4041, "credit_id": "52fe450ec3a36847f80b9e3f", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Kristy Swanson", "character": "Kowalski", "id": 56128, "credit_id": "52fe450ec3a36847f80b9e43", "cast_id": 22, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 7}, {"name": "Efrem Zimbalist, Jr.", "character": "Wilson", "id": 34981, "credit_id": "52fe450ec3a36847f80b9e47", "cast_id": 23, "profile_path": "/wF4GAxA1KFRi1HimzpGAoBhCoMG.jpg", "order": 8}, {"name": "Bill Irwin", "character": "Buzz Harley", "id": 58549, "credit_id": "52fe450ec3a36847f80b9e4b", "cast_id": 24, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 9}, {"name": "Heidi Swedberg", "character": "Mary Thompson", "id": 62551, "credit_id": "52fe450ec3a36847f80b9e4f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Bruce A. Young", "character": "'Red' Herring", "id": 4943, "credit_id": "52fe450ec3a36847f80b9e53", "cast_id": 26, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 11}, {"name": "Ryan Stiles", "character": "'Mailman' Farnham", "id": 162606, "credit_id": "52fe450ec3a36847f80b9e57", "cast_id": 27, "profile_path": "/eSrcWZW7wKdb1bXvYywo3vAGfiJ.jpg", "order": 12}, {"name": "Rino Thunder", "character": "Owatonna 'The Old One'", "id": 83364, "credit_id": "52fe450ec3a36847f80b9e5b", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Mark Arnott", "character": "Rosener", "id": 570554, "credit_id": "52fe450ec3a36847f80b9e5f", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Ryan Cutrona", "character": "Capt. Margolis", "id": 93345, "credit_id": "52fe450fc3a36847f80b9e63", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Bill Laimbeer", "character": "Himself", "id": 1312327, "credit_id": "536135d90e0a2649ad000062", "cast_id": 31, "profile_path": "/vmyMKvlmRmpVCTWhLTurdrZtiAt.jpg", "order": 16}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe450ec3a36847f80b9de5", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}], "vote_average": 6.2, "runtime": 84}, "9598": {"poster_path": "/gN6X3fwPya8pLffk9OEWV3DqBnE.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 254134910, "overview": "Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mom, Babe realizes that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs Babe learns that a pig can be anything that he wants to be.", "video": false, "id": 9598, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Babe", "tagline": "A little pig goes a long way.", "vote_count": 159, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cOYRzPx86msMyCJ1E0D4jiMvASp.jpg", "poster_path": "/k42J5jYjvw1DEGBQP63VYYvteY7.jpg", "id": 9435, "name": "Babe Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112431", "adult": false, "backdrop_path": "/1tivSvqnr8QegpI9X1fO6Wx87wW.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1995-08-03", "popularity": 1.03245069954845, "original_title": "Babe", "budget": 30000000, "cast": [{"name": "Christine Cavanaugh", "character": "Babe the Gallant Pig (voice)", "id": 58136, "credit_id": "52fe450fc3a36847f80b9fa9", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Miriam Margolyes", "character": "Fly the Female Sheepdog (voice)", "id": 6199, "credit_id": "52fe450fc3a36847f80b9fad", "cast_id": 2, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 1}, {"name": "Danny Mann", "character": "Ferdinand the Duck (voice)", "id": 52699, "credit_id": "52fe450fc3a36847f80b9fb1", "cast_id": 3, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Rex the Male Sheepdog (voice)", "id": 1331, "credit_id": "52fe450fc3a36847f80b9fb5", "cast_id": 4, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Miriam Flynn", "character": "Maa the Very Old Ewe (voice)", "id": 35109, "credit_id": "52fe450fc3a36847f80b9fb9", "cast_id": 5, "profile_path": "/6VKACA883vyve6uuviO4I6QpluL.jpg", "order": 4}, {"name": "James Cromwell", "character": "Farmer Arthur Hoggett", "id": 2505, "credit_id": "52fe450fc3a36847f80b9fbd", "cast_id": 6, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 5}, {"name": "Russi Taylor", "character": "Dutchess the Cat (voice)", "id": 6035, "credit_id": "52fe450fc3a36847f80b9fc1", "cast_id": 7, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 6}, {"name": "Evelyn Krape", "character": "Old Ewe (voice)", "id": 1080206, "credit_id": "52fe450fc3a36847f80ba007", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Michael Edward-Stevens", "character": "Horse (voice)", "id": 1080207, "credit_id": "52fe450fc3a36847f80ba00b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Charles Bartlett", "character": "Cow (voice)", "id": 1229258, "credit_id": "54e1d4f7c3a3684551007d0f", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Paul Livingston", "character": "Rooster (voice)", "id": 61351, "credit_id": "52fe450fc3a36847f80ba013", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Roscoe Lee Browne", "character": "Narrator (voice)", "id": 24368, "credit_id": "52fe450fc3a36847f80ba017", "cast_id": 23, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 11}, {"name": "Magda Szubanski", "character": "Esme Hoggett", "id": 45586, "credit_id": "52fe450fc3a36847f80ba01b", "cast_id": 24, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 12}, {"name": "Zoe Burton", "character": "The Hoggetts' daughter", "id": 1080208, "credit_id": "52fe450fc3a36847f80ba01f", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Paul Goddard", "character": "The Hoggetts' son-in-Law", "id": 9380, "credit_id": "52fe450fc3a36847f80ba023", "cast_id": 26, "profile_path": "/4OalonKRAdZhXreaDWig3bZkELo.jpg", "order": 14}, {"name": "Wade Hayward", "character": "The Hoggets' grandson", "id": 1080209, "credit_id": "52fe450fc3a36847f80ba027", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Brittany Byrnes", "character": "The Hoggetts' granddaughter", "id": 210276, "credit_id": "52fe450fc3a36847f80ba02b", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Mary Acres", "character": "Valda", "id": 75934, "credit_id": "52fe450fc3a36847f80ba02f", "cast_id": 29, "profile_path": null, "order": 17}], "directors": [{"name": "Chris Noonan", "department": "Directing", "job": "Director", "credit_id": "52fe450fc3a36847f80b9fc7", "profile_path": "/vzvXz1V9Vj1OYCVW5HIGAsXCOuv.jpg", "id": 58137}], "vote_average": 6.0, "runtime": 89}, "1407": {"poster_path": "/zVnIx9gR5pzv6UxSB6GOseeaA7M.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A swirling, impressionistic portrait of an artist who regretted nothing, writer-director Olivier Dahan's La Vie en Rose stars Marion Cotillard in a blazing performance as the legendary French icon Edith Piaf. From the mean streets of the Belleville district of Paris to the dazzling limelight of New York's most famous concert halls, Piaf's life was a constant battle to sing and survive, to live and love. Raised in her grandmother's brothel, Piaf was discovered in 1935 by nightclub owner Louis Leplee (Gerard Depardieu), who persuaded her to sing despite her extreme nervousness. Piaf became one of France's immortal icons, her voice one of the indelible signatures of the 20th Century.", "video": false, "id": 1407, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "La Vie en Rose", "tagline": "The Extraordinary Story of Edith Piaf", "vote_count": 55, "homepage": "http://www.tfmdistribution.com/lamome/lamome.htm", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0450188", "adult": false, "backdrop_path": "/ue507qDmtiULJNQjwNz9943LAS2.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}], "release_date": "2007-02-14", "popularity": 0.551334712356732, "original_title": "La M\u00f4me", "budget": 0, "cast": [{"name": "Marion Cotillard", "character": "Edith Piaf", "id": 8293, "credit_id": "52fe42f3c3a36847f802f4f5", "cast_id": 1, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 0}, {"name": "Sylvie Testud", "character": "M\u00f4mone", "id": 4529, "credit_id": "52fe42f3c3a36847f802f4f9", "cast_id": 2, "profile_path": "/u2fqcyDIKZk8plRHthpJtI7FdZd.jpg", "order": 1}, {"name": "Pascal Greggory", "character": "Louis Barrier", "id": 16923, "credit_id": "52fe42f3c3a36847f802f515", "cast_id": 8, "profile_path": "/r8tJl5SlAjQ3CL50CgoAHEw4eH5.jpg", "order": 2}, {"name": "Emmanuelle Seigner", "character": "Titine", "id": 8925, "credit_id": "52fe42f3c3a36847f802f511", "cast_id": 7, "profile_path": "/llh2iFcVslY8PEFAvuEKLI7y8U3.jpg", "order": 3}, {"name": "Jean-Paul Rouve", "character": "Louis Gassion", "id": 16922, "credit_id": "52fe42f3c3a36847f802f50d", "cast_id": 6, "profile_path": "/iHOZd4VO0dZ2H3ADCJhUk2BmkOd.jpg", "order": 4}, {"name": "G\u00e9rard Depardieu", "character": "Louis Lepl\u00e9e", "id": 16927, "credit_id": "52fe42f3c3a36847f802f521", "cast_id": 12, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 5}, {"name": "Clotilde Courau", "character": "Annetta Gassion", "id": 16921, "credit_id": "52fe42f3c3a36847f802f509", "cast_id": 5, "profile_path": "/htHGCsyHZ7zMyjmpSsiKmfdp21Z.jpg", "order": 6}, {"name": "Jean-Pierre Martins", "character": "Marcel Cerdan", "id": 82188, "credit_id": "52fe42f4c3a36847f802f559", "cast_id": 22, "profile_path": "/kd3OUkAk8wEopp4S4XdYZisNpAy.jpg", "order": 7}, {"name": "Catherine All\u00e9gret", "character": "Louise", "id": 16926, "credit_id": "52fe42f3c3a36847f802f51d", "cast_id": 11, "profile_path": "/kb6186eWhiozkAmF3O2UziwY0G9.jpg", "order": 8}, {"name": "Marc Barb\u00e9", "character": "Raymond Asso", "id": 135665, "credit_id": "52fe42f4c3a36847f802f555", "cast_id": 21, "profile_path": "/gsea1RzFBt6kQ7VqQYejifE5H3N.jpg", "order": 9}, {"name": "Caroline Sihol", "character": "Marlene Dietrich", "id": 16925, "credit_id": "52fe42f3c3a36847f802f519", "cast_id": 10, "profile_path": "/g7izhwjv2rtqgeg8ewAwVTbrQ32.jpg", "order": 10}, {"name": "Manon Chevallier", "character": "Edith - 5 years old", "id": 109519, "credit_id": "52fe42f4c3a36847f802f55d", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Pauline Burlet", "character": "Edith - 10 years old", "id": 1128970, "credit_id": "52fe42f4c3a36847f802f561", "cast_id": 24, "profile_path": "/7ymza1rMCLUx5yYNo9XcedZpDxv.jpg", "order": 12}, {"name": "Elisabeth Commelin", "character": "Danielle Bonel", "id": 5318, "credit_id": "52fe42f4c3a36847f802f565", "cast_id": 25, "profile_path": "/kJYHlilPKDctDRbDjetlm1kuxoQ.jpg", "order": 13}, {"name": "Andr\u00e9 Penvern", "character": "Jacques Canetti", "id": 35085, "credit_id": "52fe42f4c3a36847f802f569", "cast_id": 26, "profile_path": "/vUCf1PVzRZwyN35EilkCiiNHTBi.jpg", "order": 14}, {"name": "Marie-Armelle Deguy", "character": "Marguerite Monnot", "id": 1175822, "credit_id": "52fe42f4c3a36847f802f56d", "cast_id": 27, "profile_path": "/sr4ukvjaCpa61WbLdc9BI3a5eUz.jpg", "order": 15}, {"name": "Val\u00e9rie Moreau", "character": "Jeanne", "id": 64584, "credit_id": "52fe42f4c3a36847f802f571", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Marc Gannot", "character": "Marc Bonel", "id": 1175823, "credit_id": "52fe42f4c3a36847f802f575", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Jean-Paul Muel", "character": "Bruno Coquatrix", "id": 45447, "credit_id": "52fe42f4c3a36847f802f579", "cast_id": 30, "profile_path": "/gDc5jjzFY5OyQhX1KYKv8MGZijS.jpg", "order": 18}, {"name": "Nathalie Dorval", "character": "Mireille", "id": 1175824, "credit_id": "52fe42f4c3a36847f802f57d", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Caroline Raynaud", "character": "Ginou", "id": 230038, "credit_id": "52fe42f4c3a36847f802f581", "cast_id": 32, "profile_path": "/1r7bXlvUEqAsr7nJW2Qp2NJkOIV.jpg", "order": 20}, {"name": "Christophe Odent", "character": "Dr. Bernay", "id": 23505, "credit_id": "52fe42f4c3a36847f802f585", "cast_id": 33, "profile_path": "/9ryUaTaGmm967AOD4yxMFkzCTw5.jpg", "order": 21}, {"name": "Harry Hadden-Paton", "character": "Doug Davis", "id": 145133, "credit_id": "52fe42f4c3a36847f802f589", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Cylia Malki", "character": "Philipo", "id": 81120, "credit_id": "52fe42f4c3a36847f802f58d", "cast_id": 35, "profile_path": "/5y5xUaYbnck9ZvS9ZK77i1WAPIz.jpg", "order": 23}, {"name": "\u00c9dith Le Merdy", "character": "Simone Margantin", "id": 358432, "credit_id": "52fe42f4c3a36847f802f591", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Denis M\u00e9nochet", "character": "Journalist in Orly", "id": 81125, "credit_id": "52fe42f4c3a36847f802f595", "cast_id": 37, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 25}, {"name": "Josette M\u00e9nard", "character": "Mamy", "id": 1155937, "credit_id": "52fe42f4c3a36847f802f599", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Dominique Paturel", "character": "Lucien Roupp", "id": 36948, "credit_id": "52fe42f4c3a36847f802f59d", "cast_id": 39, "profile_path": "/mRUiFBTTwtuGRFVB5oNpXYiphy2.jpg", "order": 27}, {"name": "Nicholas Pritchard", "character": "Jameson", "id": 1175825, "credit_id": "52fe42f4c3a36847f802f5a1", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "William Armstrong", "character": "Clifford Fisher", "id": 29616, "credit_id": "52fe42f4c3a36847f802f5a5", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Aubert Fenoy", "character": "Michel Emer", "id": 1175830, "credit_id": "52fe42f4c3a36847f802f5a9", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Mario Hacquard", "character": "Charles Dumont", "id": 1175831, "credit_id": "52fe42f4c3a36847f802f5ad", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Agathe Bodin", "character": "Suzanne", "id": 1175832, "credit_id": "52fe42f4c3a36847f802f5b1", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Olivier Cruveiller", "character": "Inspecteur Guillaume", "id": 54281, "credit_id": "52fe42f4c3a36847f802f5b5", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Ashley Wanninger", "character": "Lepl\u00e9e's assistant", "id": 943199, "credit_id": "52fe42f4c3a36847f802f5b9", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Laurent Schilling", "character": "Claude", "id": 38881, "credit_id": "52fe42f4c3a36847f802f5bd", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Dominique Bettenfeld", "character": "Albert", "id": 28462, "credit_id": "52fe42f4c3a36847f802f5c1", "cast_id": 48, "profile_path": "/4LovjhsdwsUsHjFfIyOoWPYBB6T.jpg", "order": 36}, {"name": "Alban Casterman", "character": "Charles Aznavour", "id": 130559, "credit_id": "52fe42f4c3a36847f802f5c5", "cast_id": 49, "profile_path": "/uux4AyHt11C1ruAZakWcNGQghgZ.jpg", "order": 37}, {"name": "S\u00e9bastien Tavel", "character": "Interviewer", "id": 1175833, "credit_id": "52fe42f4c3a36847f802f5c9", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Nicole Dubois", "character": "Seamstress", "id": 1175834, "credit_id": "52fe42f4c3a36847f802f5cd", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Martin Janis", "character": "Jean Mermoz", "id": 1175835, "credit_id": "52fe42f4c3a36847f802f5d1", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Eric Franquelin", "character": "Etienne", "id": 1175836, "credit_id": "52fe42f4c3a36847f802f5d5", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Marc Chapiteau", "character": "Mitty Goldin", "id": 21579, "credit_id": "52fe42f4c3a36847f802f5d9", "cast_id": 54, "profile_path": "/y2MtTWdj3HOAeRec6Z2WsY6NvqV.jpg", "order": 42}, {"name": "Maureen Demidof", "character": "Marcelle", "id": 1175837, "credit_id": "52fe42f4c3a36847f802f5dd", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Pierre Peyrichout", "character": "Journalist", "id": 1172640, "credit_id": "52fe42f4c3a36847f802f5e1", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Liliane Cebrian", "character": "Palm reader", "id": 1175838, "credit_id": "52fe42f4c3a36847f802f5e5", "cast_id": 57, "profile_path": "/krRkL6ulAD735zWTnEJDxGF82Do.jpg", "order": 45}, {"name": "Paulina Nemcova", "character": "American journalist", "id": 128083, "credit_id": "52fe42f4c3a36847f802f5e9", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Jean-Jacques Desplanque", "character": "Tony Zale", "id": 1175839, "credit_id": "52fe42f4c3a36847f802f5ed", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Alain Figlarz", "character": "Boxing trainer", "id": 238393, "credit_id": "52fe42f4c3a36847f802f5f1", "cast_id": 60, "profile_path": "/u0cOZyBWRSxu0j3Ez9iKD5vUez.jpg", "order": 48}, {"name": "Nathalie Cox", "character": "Pin-up", "id": 17337, "credit_id": "52fe42f4c3a36847f802f615", "cast_id": 69, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 49}, {"name": "Pierre Derenne", "character": "P'tit Louis", "id": 585672, "credit_id": "52fe42f4c3a36847f802f5f5", "cast_id": 61, "profile_path": null, "order": 50}, {"name": "Emy L\u00e9vy", "character": "Brothel girl 1", "id": 1175840, "credit_id": "52fe42f4c3a36847f802f5f9", "cast_id": 62, "profile_path": "/ikd2tjjaxI67MYIFsEIhIH3cfZp.jpg", "order": 51}, {"name": "Olivier Raoux", "character": "Waiter", "id": 16933, "credit_id": "52fe42f4c3a36847f802f5fd", "cast_id": 63, "profile_path": null, "order": 52}, {"name": "Philippe Bricard", "character": "Man in Lannes", "id": 1175843, "credit_id": "52fe42f4c3a36847f802f601", "cast_id": 64, "profile_path": null, "order": 53}, {"name": "Pier Luigi Colombetti", "character": "Brasserie owner", "id": 1175844, "credit_id": "52fe42f4c3a36847f802f605", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "Rodolphe Saulnier", "character": "Barman", "id": 1175845, "credit_id": "52fe42f4c3a36847f802f609", "cast_id": 66, "profile_path": "/3ZByFMRBBgp8ygM1P0aJzRQ4bDA.jpg", "order": 55}, {"name": "Fabien Duval", "character": "Policeman", "id": 1175846, "credit_id": "52fe42f4c3a36847f802f60d", "cast_id": 67, "profile_path": null, "order": 56}, {"name": "Nicolas Simon", "character": "Journalist by the church", "id": 1175847, "credit_id": "52fe42f4c3a36847f802f611", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Jil Aigrot", "character": "Edith Piaf (singing voice)", "id": 1175848, "credit_id": "52fe42f4c3a36847f802f619", "cast_id": 70, "profile_path": null, "order": 58}], "directors": [{"name": "Olivier Dahan", "department": "Directing", "job": "Director", "credit_id": "52fe42f3c3a36847f802f4ff", "profile_path": "/uOkI6ibgTsoXZFggDAOnHpcBteP.jpg", "id": 16919}], "vote_average": 6.8, "runtime": 140}, "9600": {"poster_path": "/bse0uwxF6daKzDbxZki1SYRNZkI.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173959438, "overview": "When a street-smart FBI agent is sent to Georgia to protect a beautiful single mother and her son from an escaped convict, he is forced to impersonate a crass Southern granny known as Big Momma in order to remain incognito.", "video": false, "id": 9600, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Big Momma's House", "tagline": "This FBI agent is going undercover... and he's concealing more than a weapon.", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nFJauk5E72nZNZJU4TZFCdMycYE.jpg", "id": 44979, "name": "Big Momma's House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0208003", "adult": false, "backdrop_path": "/poVDjdyhuCcFWCkAhNvaqWsbVsT.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2000-05-31", "popularity": 1.19168288663871, "original_title": "Big Momma's House", "budget": 30000000, "cast": [{"name": "Martin Lawrence", "character": "Malcolm Turner", "id": 78029, "credit_id": "52fe450fc3a36847f80ba151", "cast_id": 14, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Nia Long", "character": "Sherry Pierce", "id": 9781, "credit_id": "52fe450fc3a36847f80ba155", "cast_id": 15, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "John", "id": 13242, "credit_id": "52fe450fc3a36847f80ba159", "cast_id": 16, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Jascha Washington", "character": "Trent Pierce", "id": 58147, "credit_id": "52fe450fc3a36847f80ba15d", "cast_id": 17, "profile_path": "/jqaE0iUXDuDPlM6WXQvniTMliUw.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Lester Vesco", "id": 18288, "credit_id": "52fe450fc3a36847f80ba16d", "cast_id": 20, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Octavia Spencer", "character": "Twila", "id": 6944, "credit_id": "52fe450fc3a36847f80ba171", "cast_id": 21, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 5}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe450fc3a36847f80ba117", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.8, "runtime": 98}, "9602": {"poster_path": "/7v1Sy0HC5KEM1DMM4Bpy5gVly1K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 288752301, "overview": "Prince Akeem, heir to the throne of Zamunda, leaves the tropical paradise kingdom in search of his queen. What better place than Queens, New York to find his bride? Joined by his loyal servant and friend, Semmi, Akeem attempts to blend in as an ordinary American and begin his search.", "video": false, "id": 9602, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Coming to America", "tagline": "The Four Funniest Men in America are Eddie Murphy.", "vote_count": 254, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094898", "adult": false, "backdrop_path": "/tlCnOu6PO7ILLnJMRw1NsrEWmyQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-06-28", "popularity": 0.800407341036081, "original_title": "Coming to America", "budget": 39000000, "cast": [{"name": "Eddie Murphy", "character": "Prince Akeem / Clarence / Randy Watson / Saul", "id": 776, "credit_id": "52fe450fc3a36847f80ba1c1", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Arsenio Hall", "character": "Semmi / Extremely Ugly Girl / Morris / Reverend Brown", "id": 44994, "credit_id": "52fe450fc3a36847f80ba1c5", "cast_id": 2, "profile_path": "/cXv78qwO04CG3MMdiaYLEHu47MU.jpg", "order": 1}, {"name": "James Earl Jones", "character": "King Jaffe Joffer", "id": 15152, "credit_id": "52fe450fc3a36847f80ba1c9", "cast_id": 3, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 2}, {"name": "John Amos", "character": "Cleo McDowell", "id": 22384, "credit_id": "52fe450fc3a36847f80ba1cd", "cast_id": 4, "profile_path": "/gHe1eOXONqm3AmMtghfVXbU5V2m.jpg", "order": 3}, {"name": "Shari Headley", "character": "Lisa McDowell", "id": 155783, "credit_id": "52fe450fc3a36847f80ba21f", "cast_id": 18, "profile_path": "/1MRLXPmdBf35manJbRJq3pE81V3.jpg", "order": 4}, {"name": "Frankie Faison", "character": "Landlord", "id": 13936, "credit_id": "52fe450fc3a36847f80ba223", "cast_id": 19, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 5}, {"name": "Louie Anderson", "character": "Maurice", "id": 44795, "credit_id": "52fe450fc3a36847f80ba227", "cast_id": 20, "profile_path": "/1I1kp4yhGcg8u6zJpH43RnVpKWy.jpg", "order": 6}, {"name": "Calvin Lockhart", "character": "Colonel Izzi", "id": 2067, "credit_id": "52fe450fc3a36847f80ba22b", "cast_id": 21, "profile_path": "/3yJrPwyFScLuBukMb5BMJ8lDk1m.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Robber", "id": 2231, "credit_id": "52fe4510c3a36847f80ba22f", "cast_id": 22, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "Eriq La Salle", "character": "Darryl Jenks", "id": 23628, "credit_id": "52fe4510c3a36847f80ba233", "cast_id": 23, "profile_path": "/iUjzxU9h9omJ9OTVkXreu6Q7YsK.jpg", "order": 9}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe450fc3a36847f80ba1d3", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.3, "runtime": 116}, "9603": {"poster_path": "/i8gEHh2sszB6YWLC0jl559sxAeN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Clueless follows the misadventures of meddlesome Beverly Hills high schooler Cher, who gets more than she bargained for when she gives a fashion-challenged student a makeover.", "video": false, "id": 9603, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Clueless", "tagline": "Sex. Clothes. Popularity. Is there a problem here?", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112697", "adult": false, "backdrop_path": "/wjV43TB4H6scRGBYs3QoYxp82rQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1995-07-19", "popularity": 0.753934423347416, "original_title": "Clueless", "budget": 0, "cast": [{"name": "Alicia Silverstone", "character": "Cher Horowitz", "id": 5588, "credit_id": "52fe4510c3a36847f80ba283", "cast_id": 8, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 0}, {"name": "Stacey Dash", "character": "Dionne", "id": 58150, "credit_id": "52fe4510c3a36847f80ba287", "cast_id": 9, "profile_path": "/nqdCmfn1esQrhdfLygF0y0yGjcA.jpg", "order": 1}, {"name": "Brittany Murphy", "character": "Tai", "id": 328, "credit_id": "52fe4510c3a36847f80ba28b", "cast_id": 10, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Josh", "id": 22226, "credit_id": "52fe4510c3a36847f80ba28f", "cast_id": 11, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Donald Faison", "character": "Murray", "id": 49002, "credit_id": "52fe4510c3a36847f80ba293", "cast_id": 12, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 4}, {"name": "Elisa Donovan", "character": "Amber", "id": 58151, "credit_id": "52fe4510c3a36847f80ba297", "cast_id": 13, "profile_path": "/2DtmmlkfqS4FvZdi34fA5gKqxSH.jpg", "order": 5}, {"name": "Breckin Meyer", "character": "Travis", "id": 33654, "credit_id": "52fe4510c3a36847f80ba2a1", "cast_id": 15, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 6}, {"name": "Jeremy Sisto", "character": "Elton", "id": 23958, "credit_id": "52fe4510c3a36847f80ba2a5", "cast_id": 16, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 7}, {"name": "Dan Hedaya", "character": "Mel Horowitz", "id": 6486, "credit_id": "52fe4510c3a36847f80ba2a9", "cast_id": 17, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 8}, {"name": "Wallace Shawn", "character": "Mr. Wendell Hall", "id": 12900, "credit_id": "52fe4510c3a36847f80ba2ad", "cast_id": 18, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 9}, {"name": "Twink Caplan", "character": "Miss Toby Geist", "id": 66160, "credit_id": "52fe4510c3a36847f80ba2b1", "cast_id": 19, "profile_path": "/a6iDJoy42QZP1DfL3ybHQeXT5DU.jpg", "order": 10}, {"name": "Justin Walker", "character": "Christian", "id": 30881, "credit_id": "52fe4510c3a36847f80ba2b5", "cast_id": 20, "profile_path": null, "order": 11}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba261", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 6.5, "runtime": 97}, "9604": {"poster_path": "/gcXZTkPpY7YpuzC9EpEBT3PAajz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34995000, "overview": "Arnold Schwarzenegger plays a Russian policeman sent after a Russian drug dealer who has escaped to the United States and is awaiting extradition in Chicago. Jim Belushi plays his temporary partner on the Chicago police. When the drug dealer escapes, the two police must overcome their differences in order to recapture him.", "video": false, "id": 9604, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Red Heat", "tagline": "Moscow's toughest detective. Chicago's craziest cop. There's only one thing worse than making them mad. Making them partners.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0095963", "adult": false, "backdrop_path": "/nnUqd9vSHmLcR8DlEu8vx9RDftZ.jpg", "production_companies": [{"name": "Carolco Entertainment", "id": 10320}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1988-06-14", "popularity": 0.935030775222858, "original_title": "Red Heat", "budget": 0, "cast": [{"name": "Arnold Schwarzenegger", "character": "Capt. Ivan Danko", "id": 1100, "credit_id": "52fe4510c3a36847f80ba331", "cast_id": 14, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "James Belushi", "character": "Det. Sgt. Art Ridzik", "id": 26485, "credit_id": "52fe4510c3a36847f80ba335", "cast_id": 15, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 1}, {"name": "Ed O'Ross", "character": "Viktor Rostavili", "id": 8658, "credit_id": "52fe4510c3a36847f80ba345", "cast_id": 19, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 2}, {"name": "Peter Boyle", "character": "Cmdr. Lou Donnelly", "id": 1039, "credit_id": "52fe4510c3a36847f80ba339", "cast_id": 16, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 3}, {"name": "Laurence Fishburne", "character": "Lt. Charlie Stobbs", "id": 2975, "credit_id": "52fe4510c3a36847f80ba33d", "cast_id": 17, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 4}, {"name": "Gina Gershon", "character": "Catherine Manzetti", "id": 11150, "credit_id": "52fe4510c3a36847f80ba349", "cast_id": 20, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 5}, {"name": "Brent Jennings", "character": "Abdul Elijah", "id": 84685, "credit_id": "52fe4510c3a36847f80ba341", "cast_id": 18, "profile_path": "/wkKnquYyWGT5ciIfgJAdy7tAxXX.jpg", "order": 6}, {"name": "Brion James", "character": "Streak", "id": 591, "credit_id": "53d833cd0e0a261c75000d51", "cast_id": 21, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 7}, {"name": "Peter Jason", "character": "TV Announcer", "id": 6916, "credit_id": "53d833e60e0a261c7b000d56", "cast_id": 22, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 8}, {"name": "Pruitt Taylor Vince", "character": "Night Clerk", "id": 3201, "credit_id": "53d834050e0a261c84000d3e", "cast_id": 23, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 9}, {"name": "Kurt Fuller", "character": "Detective", "id": 29685, "credit_id": "53d83a7a0e0a261c87000d95", "cast_id": 24, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 10}, {"name": "Mike Hagerty", "character": "Pat Nunn", "id": 15105, "credit_id": "53d83b1e0e0a261c72000e49", "cast_id": 25, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 11}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba2e5", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 6.1, "runtime": 104}, "9607": {"poster_path": "/cUKVICyZqBDuxlCJEut5vk5zNUT.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20844907, "overview": "Mario and Luigi, plumbers from Brooklyn, find themselves in an alternate universe where evolved dinosaurs live in hi-tech squalor. They're the only hope to save our universe from invasion by the dino dictator, Koopa.", "video": false, "id": 9607, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Super Mario Bros.", "tagline": "This Ain't No Game.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108255", "adult": false, "backdrop_path": "/zZySRjSEulrcX3V0jD78mdVXB9t.jpg", "production_companies": [{"name": "Allied Filmmakers", "id": 1755}, {"name": "Cinergi Pictures Entertainment", "id": 1504}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Nintendo", "id": 12288}, {"name": "Walt Disney", "id": 5888}], "release_date": "1993-05-27", "popularity": 0.465743534459545, "original_title": "Super Mario bros.", "budget": 42000000, "cast": [{"name": "Bob Hoskins", "character": "Mario Mario", "id": 382, "credit_id": "52fe4510c3a36847f80ba52d", "cast_id": 11, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Luigi Mario", "id": 5723, "credit_id": "52fe4510c3a36847f80ba531", "cast_id": 12, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "King Koopa", "id": 2778, "credit_id": "52fe4510c3a36847f80ba535", "cast_id": 13, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Samantha Mathis", "character": "Princess Daisy", "id": 20767, "credit_id": "52fe4510c3a36847f80ba539", "cast_id": 14, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 3}], "directors": [{"name": "Annabel Jankel", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba4f3", "profile_path": "/t7mhYWKHHjG5gQUB7gq9oyE3Z5y.jpg", "id": 58164}, {"name": "Rocky Morton", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba4f9", "profile_path": "/neGDKDOkpWJ5mmEzn3YaEp1mmWn.jpg", "id": 58165}], "vote_average": 4.4, "runtime": 104}, "1417": {"poster_path": "/t0TDsqbCTgSi0AL7k4baZrOYYhi.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 83258226, "overview": "Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.", "video": false, "id": 1417, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10752, "name": "War"}], "title": "Pan's Labyrinth", "tagline": "What happens when make-believe believes it's real?", "vote_count": 789, "homepage": "http://www.panslabyrinth.com", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0457430", "adult": false, "backdrop_path": "/5zpVFIkIrtGyBjBFeMFuQ416LLc.jpg", "production_companies": [{"name": "Tequila Gang", "id": 11628}, {"name": "Estudios Picasso", "id": 2029}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Esperanto Filmoj", "id": 7470}, {"name": "Sententia Entertainment", "id": 12231}], "release_date": "2006-05-27", "popularity": 0.97007097333547, "original_title": "El laberinto del fauno", "budget": 19000000, "cast": [{"name": "Ivana Baquero", "character": "Ofelia", "id": 16970, "credit_id": "52fe42f5c3a36847f802fb53", "cast_id": 1, "profile_path": "/e1yKycDkXhiA3OUjeqWp2nlwvZx.jpg", "order": 0}, {"name": "Maribel Verd\u00fa", "character": "Mercedes", "id": 16971, "credit_id": "52fe42f5c3a36847f802fb57", "cast_id": 2, "profile_path": "/km7HP0yXLBZkPN9EFTbMJBCIsHs.jpg", "order": 1}, {"name": "Sergi L\u00f3pez", "character": "Capit\u00e1n Vidal", "id": 16972, "credit_id": "52fe42f5c3a36847f802fb5b", "cast_id": 3, "profile_path": "/dH5jWen7KE4N3QuNSpeGOVAdIOT.jpg", "order": 2}, {"name": "Doug Jones", "character": "Fauno / Pale Man", "id": 17005, "credit_id": "52fe42f5c3a36847f802fc01", "cast_id": 31, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 3}, {"name": "Ariadna Gil", "character": "Carmen", "id": 17006, "credit_id": "52fe42f5c3a36847f802fc05", "cast_id": 32, "profile_path": "/rCxr274gYjgtHMjXaEZxvXkaqig.jpg", "order": 4}, {"name": "\u00c1lex Angulo", "character": "Dr. Ferreiro", "id": 3813, "credit_id": "52fe42f5c3a36847f802fc09", "cast_id": 33, "profile_path": "/6wnu91irLrsgy5nF3IxRoH2qKfl.jpg", "order": 5}, {"name": "Roger Casamajor", "character": "Pedro", "id": 17007, "credit_id": "52fe42f5c3a36847f802fc0d", "cast_id": 34, "profile_path": "/72Sn6Ztaz9ieaQkkgdsJeiuuG0l.jpg", "order": 6}, {"name": "Manolo Solo", "character": "Garc\u00e9s", "id": 592709, "credit_id": "52fe42f5c3a36847f802fc11", "cast_id": 35, "profile_path": "/vIYNmEhVT2b1SP9TTrIdyZzkm1N.jpg", "order": 7}, {"name": "C\u00e9sar Vea", "character": "Serrano", "id": 25219, "credit_id": "52fe42f5c3a36847f802fc15", "cast_id": 36, "profile_path": "/9zISZnahPhtqmqv9yLI04S1uXFi.jpg", "order": 8}, {"name": "Ivan Massagu\u00e9", "character": "El Tarta", "id": 31422, "credit_id": "52fe42f5c3a36847f802fc19", "cast_id": 37, "profile_path": "/n8yubYemSiZq5PB0AebjCDmHnWr.jpg", "order": 9}, {"name": "Gonzalo Uriarte", "character": "Franc\u00e9s", "id": 116071, "credit_id": "52fe42f5c3a36847f802fc1d", "cast_id": 38, "profile_path": null, "order": 10}, {"name": "Eusebio L\u00e1zaro", "character": "Padre", "id": 106707, "credit_id": "52fe42f5c3a36847f802fc21", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Francisco Vidal", "character": "Sacerdote", "id": 1077942, "credit_id": "52fe42f5c3a36847f802fc25", "cast_id": 40, "profile_path": null, "order": 12}, {"name": "Juanjo Cucal\u00f3n", "character": "Alcalde", "id": 1077944, "credit_id": "52fe42f5c3a36847f802fc29", "cast_id": 41, "profile_path": "/cpyKgAbjBYw4E3R66rKHvaIxcX9.jpg", "order": 13}, {"name": "Lina Mira", "character": "Esposa del alcalde", "id": 1077945, "credit_id": "52fe42f5c3a36847f802fc2d", "cast_id": 42, "profile_path": null, "order": 14}, {"name": "Mario Zorrilla", "character": "Jefe de botiqu\u00edn", "id": 588132, "credit_id": "52fe42f5c3a36847f802fc31", "cast_id": 43, "profile_path": null, "order": 15}, {"name": "Sebasti\u00e1n Haro", "character": "Capit\u00e1n Guardia Civil", "id": 1077947, "credit_id": "52fe42f5c3a36847f802fc35", "cast_id": 44, "profile_path": null, "order": 16}, {"name": "Mila Espiga", "character": "Esposa del doctor", "id": 1077948, "credit_id": "52fe42f5c3a36847f802fc39", "cast_id": 45, "profile_path": null, "order": 17}, {"name": "Pepa Pedroche", "character": "Conchita", "id": 963251, "credit_id": "52fe42f5c3a36847f802fc3d", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Lal\u00e1 Gat\u00f3o", "character": "Jacinta", "id": 1077950, "credit_id": "52fe42f5c3a36847f802fc41", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Ana S\u00e1ez", "character": "Paz", "id": 1077952, "credit_id": "52fe42f5c3a36847f802fc45", "cast_id": 48, "profile_path": null, "order": 20}, {"name": "Chani Mart\u00edn", "character": "Trigo", "id": 560248, "credit_id": "52fe42f5c3a36847f802fc49", "cast_id": 49, "profile_path": null, "order": 21}, {"name": "Milo Taboada", "character": "Joven", "id": 1077953, "credit_id": "52fe42f5c3a36847f802fc4d", "cast_id": 50, "profile_path": null, "order": 22}, {"name": "Fernando Albizu", "character": "Maquinista", "id": 100905, "credit_id": "52fe42f5c3a36847f802fc51", "cast_id": 51, "profile_path": "/uJlQUHaLj7zLtAv0gMZa7SrYzMg.jpg", "order": 23}, {"name": "Pedro G. Marzo", "character": "Encargado", "id": 1077954, "credit_id": "52fe42f5c3a36847f802fc55", "cast_id": 52, "profile_path": null, "order": 24}, {"name": "Jos\u00e9 Luis Torrijo", "character": "Sargento Bayona", "id": 3653, "credit_id": "52fe42f5c3a36847f802fc59", "cast_id": 53, "profile_path": "/2VtdDBIXVEJFvVA7tR1ns9YK1EE.jpg", "order": 25}, {"name": "\u00cd\u00f1igo Garc\u00e9s", "character": "Joven Guerrillero", "id": 17096, "credit_id": "52fe42f5c3a36847f802fc5d", "cast_id": 54, "profile_path": null, "order": 26}, {"name": "Fernando Tielve", "character": "Joven Guerrillero 2", "id": 17095, "credit_id": "52fe42f5c3a36847f802fc61", "cast_id": 55, "profile_path": "/tAc6E2bpJLW6Ig4XB9NnOIXFYeq.jpg", "order": 27}, {"name": "Federico Luppi", "character": "Rey", "id": 17094, "credit_id": "52fe42f5c3a36847f802fc65", "cast_id": 56, "profile_path": "/aKQBkLnh0RZNPYqO80itGYuclLp.jpg", "order": 28}, {"name": "Chicho Campillo", "character": "Anciano", "id": 1077955, "credit_id": "52fe42f5c3a36847f802fc69", "cast_id": 57, "profile_path": null, "order": 29}, {"name": "Pablo Ad\u00e1n", "character": "Narrator / Fauno (voice)", "id": 1077956, "credit_id": "52fe42f5c3a36847f802fc6d", "cast_id": 58, "profile_path": null, "order": 30}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe42f5c3a36847f802fb61", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 7.4, "runtime": 118}, "9610": {"poster_path": "/qMNhwerC2kjj9tKR127hRh8K9WL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31042035, "overview": "Another evil threatens to conquer the world, as Conan journeys on a search to find a magic crystal before the sorcerer Toth Amon can use it. He is also required to rescue the Princess Jehnna for the treacherous Queen Taramis who plans to betray Conan and rule the world.", "video": false, "id": 9610, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Conan the Destroyer", "tagline": "The most powerful legend of all is back in a new adventure.", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aHgQZRJgOaZWOqnnO5dc2vWkHOu.jpg", "poster_path": "/vguM8mJmArTn9ePTm8fK0Ryt7EI.jpg", "id": 43055, "name": "Conan the Barbarian Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087078", "adult": false, "backdrop_path": "/8MWJJ8WI3UE0lnHfO98EuXE0owb.jpg", "production_companies": [{"name": "De Laurentiis Entertainment Group", "id": 499}, {"name": "Universal Pictures", "id": 33}], "release_date": "1984-06-29", "popularity": 0.983415807076359, "original_title": "Conan the Destroyer", "budget": 18000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Conan", "id": 1100, "credit_id": "52fe4511c3a36847f80ba66f", "cast_id": 8, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Grace Jones", "character": "Zula", "id": 10661, "credit_id": "52fe4511c3a36847f80ba673", "cast_id": 9, "profile_path": "/8MBh8TXQYoEGHbyf7XKRbXH7kTA.jpg", "order": 1}, {"name": "Wilt Chamberlain", "character": "Bombaata", "id": 58181, "credit_id": "52fe4511c3a36847f80ba677", "cast_id": 10, "profile_path": "/lRFWkKyTsQGdSYx8HNq7g8q7lCn.jpg", "order": 2}, {"name": "Tracey Walter", "character": "Malak", "id": 3801, "credit_id": "52fe4511c3a36847f80ba67b", "cast_id": 11, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 3}, {"name": "Mako", "character": "Akiro 'The Wizard'", "id": 10134, "credit_id": "52fe4511c3a36847f80ba67f", "cast_id": 12, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 4}, {"name": "Sarah Douglas", "character": "Queen Taramis", "id": 31364, "credit_id": "52fe4511c3a36847f80ba683", "cast_id": 13, "profile_path": "/als2MT3X28mDol3e5uEy25agNRM.jpg", "order": 5}, {"name": "Olivia d'Abo", "character": "Princess Jehnna (as Olivia D'Abo)", "id": 46423, "credit_id": "52fe4511c3a36847f80ba687", "cast_id": 14, "profile_path": "/ffeCJwgPXSrurcfFrjEyvCXsPUz.jpg", "order": 6}, {"name": "Pat Roach", "character": "Man Ape / Toth-Amon", "id": 10942, "credit_id": "52fe4511c3a36847f80ba68b", "cast_id": 15, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 7}, {"name": "Jeff Corey", "character": "Grand Vizier", "id": 9596, "credit_id": "52fe4511c3a36847f80ba68f", "cast_id": 16, "profile_path": "/jlc4DLs99u7f9HOoco3dv5DBAoJ.jpg", "order": 8}, {"name": "Sven-Ole Thorsen", "character": "Togra (as Sven Ole Thorsen)", "id": 20761, "credit_id": "52fe4511c3a36847f80ba693", "cast_id": 17, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 9}], "directors": [{"name": "Richard Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe4511c3a36847f80ba647", "profile_path": "/yofiXdiD2AaK2M4RgXQFeO8qQgD.jpg", "id": 2087}], "vote_average": 6.3, "runtime": 103}, "1422": {"poster_path": "/tGLO9zw5ZtCeyyEWgbYGgsFxC6i.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 289847354, "overview": "To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise in Martin Scorsese's multiple Oscar-winning crime thriller. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.", "video": false, "id": 1422, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Departed", "tagline": "Lies. Betrayal. Sacrifice. How far will you take it?", "vote_count": 1461, "homepage": "http://thedeparted.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0407887", "adult": false, "backdrop_path": "/8Od5zV7Q7zNOX0y9tyNgpTmoiGA.jpg", "production_companies": [{"name": "Plan B Entertainment", "id": 45778}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Media Asia Films", "id": 5552}, {"name": "Warner Bros.", "id": 6194}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}], "release_date": "2006-11-09", "popularity": 2.24730731202757, "original_title": "The Departed", "budget": 90000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Billy", "id": 6193, "credit_id": "52fe42f5c3a36847f802fecf", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Matt Damon", "character": "Colin", "id": 1892, "credit_id": "52fe42f5c3a36847f802ff1f", "cast_id": 25, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Jack Nicholson", "character": "Costello", "id": 514, "credit_id": "52fe42f5c3a36847f802fed9", "cast_id": 6, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 2}, {"name": "Mark Wahlberg", "character": "Dignam", "id": 13240, "credit_id": "52fe42f5c3a36847f802fedd", "cast_id": 7, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Cpt. Queenan", "id": 8349, "credit_id": "52fe42f5c3a36847f802ff23", "cast_id": 26, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "Ray Winstone", "character": "Mr. French", "id": 5538, "credit_id": "52fe42f5c3a36847f802fee7", "cast_id": 10, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 5}, {"name": "Vera Farmiga", "character": "Madolyn", "id": 21657, "credit_id": "52fe42f5c3a36847f802ff17", "cast_id": 23, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 6}, {"name": "Anthony Anderson", "character": "Brown", "id": 18471, "credit_id": "52fe42f5c3a36847f802feeb", "cast_id": 11, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 7}, {"name": "Alec Baldwin", "character": "Ellerby", "id": 7447, "credit_id": "52fe42f5c3a36847f802feef", "cast_id": 12, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 8}, {"name": "Kevin Corrigan", "character": "Cousin Sean", "id": 18472, "credit_id": "52fe42f5c3a36847f802fef3", "cast_id": 13, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 9}, {"name": "James Badge Dale", "character": "Barrigan", "id": 18473, "credit_id": "52fe42f5c3a36847f802fef7", "cast_id": 14, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 10}, {"name": "David O'Hara", "character": "Fitzy", "id": 2482, "credit_id": "52fe42f5c3a36847f802ff1b", "cast_id": 24, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 11}, {"name": "Robert Wahlberg", "character": "Lazio", "id": 4733, "credit_id": "52fe42f5c3a36847f802fefb", "cast_id": 16, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 12}, {"name": "Kristen Dalton", "character": "Gwen", "id": 18475, "credit_id": "52fe42f5c3a36847f802feff", "cast_id": 17, "profile_path": "/hJE14DbGUWXVQHUxdIClpEcUfFo.jpg", "order": 13}, {"name": "Thomas B. Duffy", "character": "Govenor", "id": 18476, "credit_id": "52fe42f5c3a36847f802ff03", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Dick Hughes", "character": "Uncle Edward", "id": 18477, "credit_id": "52fe42f5c3a36847f802ff07", "cast_id": 19, "profile_path": "/A59muVUvw3dejk3O34JXLLrR9Nk.jpg", "order": 15}, {"name": "Chance Kelly", "character": "Exam Instructor", "id": 17194, "credit_id": "52fe42f5c3a36847f802ff51", "cast_id": 34, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 16}, {"name": "Larry Mitchell", "character": "Younger Priest", "id": 1182724, "credit_id": "55055f01c3a3680581000f2c", "cast_id": 81, "profile_path": "/iTdRRujnU2H6axxxL4iaefI3mlw.jpg", "order": 17}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe42f5c3a36847f802fecb", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.5, "runtime": 151}, "9615": {"poster_path": "/7zcstia8qDvxLhAQD80uLAlCsL9.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 158468292, "overview": "In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing", "video": false, "id": 9615, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Fast and the Furious: Tokyo Drift", "tagline": "On the streets of Tokyo, speed needs no translation...", "vote_count": 592, "homepage": "http://www.thefastandthefurious3.com/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0463985", "adult": false, "backdrop_path": "/kOZbGxeGMJ4Y6bxv8eOadFt8QLF.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-06-03", "popularity": 2.21626167646495, "original_title": "The Fast and the Furious: Tokyo Drift", "budget": 85000000, "cast": [{"name": "Lucas Black", "character": "Sean Boswell", "id": 155, "credit_id": "52fe4511c3a36847f80ba9f3", "cast_id": 12, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 0}, {"name": "Shad Moss", "character": "Twinkie", "id": 58197, "credit_id": "52fe4511c3a36847f80ba9f7", "cast_id": 13, "profile_path": "/A1rHY9B5R9cIQshClcJxBYINg1m.jpg", "order": 1}, {"name": "Nathalie Kelley", "character": "Neela", "id": 116277, "credit_id": "52fe4511c3a36847f80ba9fb", "cast_id": 14, "profile_path": "/uXWUjkFD3ZSp9wF5rN74YhfFJOH.jpg", "order": 2}, {"name": "Brian Tee", "character": "D.K.", "id": 116278, "credit_id": "52fe4511c3a36847f80ba9ff", "cast_id": 15, "profile_path": "/rKo9U4Swi0t4IqUKOU0bhl5BuiZ.jpg", "order": 3}, {"name": "Sung Kang", "character": "Han", "id": 61697, "credit_id": "52fe4511c3a36847f80baa03", "cast_id": 16, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 4}, {"name": "Brian Goodman", "character": "Major Boswell", "id": 80978, "credit_id": "52fe4511c3a36847f80baa07", "cast_id": 17, "profile_path": "/864K4ai3ZNNggLdjgOZ9jQSWn7y.jpg", "order": 5}, {"name": "Sonny Chiba", "character": "Uncle Kamata", "id": 2537, "credit_id": "52fe4511c3a36847f80baa0b", "cast_id": 18, "profile_path": "/9VduIlJK3bujNX0Gv0WvZ2cFxrK.jpg", "order": 6}, {"name": "Leonardo Nam", "character": "Morimoto", "id": 24200, "credit_id": "52fe4511c3a36847f80baa0f", "cast_id": 19, "profile_path": "/AasHyXC1m9Mwn21gFbZgVeID5Gd.jpg", "order": 7}, {"name": "Jason Tobin", "character": "Earl", "id": 162367, "credit_id": "52fe4511c3a36847f80baa13", "cast_id": 20, "profile_path": "/th2wnUDIKwWMrxryp49b3Pssp7F.jpg", "order": 8}, {"name": "Keiko Kitagawa", "character": "Reiko", "id": 120923, "credit_id": "52fe4511c3a36847f80baa17", "cast_id": 21, "profile_path": "/vKvOy6JnNoOUNWzXwybnJYYpUjI.jpg", "order": 9}, {"name": "Alden Villaverde", "character": "Alden (as Alden Ray)", "id": 1000089, "credit_id": "52fe4511c3a36847f80baa1b", "cast_id": 22, "profile_path": "/4H6rpvCUP9Xqgx7kJfWsmsRfBRq.jpg", "order": 10}, {"name": "Koji Kataoka", "character": "Yakuza Pinkie", "id": 62766, "credit_id": "52fe4511c3a36847f80baa1f", "cast_id": 23, "profile_path": "/76SbfNpDX6ZPfOYOIobHEv4BJ5x.jpg", "order": 11}, {"name": "Kevin Ryan", "character": "Bully", "id": 201914, "credit_id": "52fe4511c3a36847f80baa23", "cast_id": 24, "profile_path": "/1oThx1R7LEXyA2tzGor2icVK834.jpg", "order": 12}, {"name": "Lynda Boyd", "character": "Ms. Boswell", "id": 20188, "credit_id": "52fe4511c3a36847f80baa27", "cast_id": 25, "profile_path": "/cZWUVqDrMpQbNOuZAnXuiprU994.jpg", "order": 13}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "544316b1c3a3683e01003444", "cast_id": 26, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 14}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe4511c3a36847f80ba9b3", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 6.1, "runtime": 104}, "9618": {"poster_path": "/3Yi0KIsiFBzPU2MM1vuXzn2x5aE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63408614, "overview": "Ray Tango and Gabriel Cash are narcotics detectives who, while both being extremely successful, can't stand each other. Crime Lord Yves Perret, furious at the loss of income that Tango and Cash have caused him, frames the two for murder. Caught with the murder weapon on the scene of the crime, the two have no alibi. Thrown into prison with most of the criminals they helped convict, it appears that they are going to have to trust each other if they are to clear their names and catch the evil Perret.", "video": false, "id": 9618, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Tango & Cash", "tagline": "Two of L.A.'s top rival cops are going to have to work together... Even if it kills them.", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098439", "adult": false, "backdrop_path": "/79ZSbFqkGcGipyjh5EbTtkmJLlA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1989-12-22", "popularity": 0.76914639445077, "original_title": "Tango & Cash", "budget": 55000000, "cast": [{"name": "Sylvester Stallone", "character": "Raymond 'Ray' Tango", "id": 16483, "credit_id": "52fe4512c3a36847f80bab5d", "cast_id": 8, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Gabriel 'Gabe' Cash", "id": 6856, "credit_id": "52fe4512c3a36847f80bab61", "cast_id": 9, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Teri Hatcher", "character": "Katherine 'Kiki' Tango", "id": 10742, "credit_id": "52fe4512c3a36847f80bab65", "cast_id": 10, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 2}, {"name": "Jack Palance", "character": "Yves Perret", "id": 3785, "credit_id": "52fe4512c3a36847f80bab69", "cast_id": 11, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 3}, {"name": "Brion James", "character": "Requin", "id": 591, "credit_id": "52fe4512c3a36847f80bab6d", "cast_id": 12, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 4}, {"name": "James Hong", "character": "Quan", "id": 20904, "credit_id": "52fe4512c3a36847f80bab71", "cast_id": 13, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 5}, {"name": "Robert Z'Dar", "character": "Face", "id": 80579, "credit_id": "52fe4512c3a36847f80bab75", "cast_id": 14, "profile_path": "/xJYVX9TIjwrj67WYwtzV67inYYF.jpg", "order": 6}, {"name": "Michael J. Pollard", "character": "Owen", "id": 6451, "credit_id": "52fe4512c3a36847f80bab79", "cast_id": 15, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 7}, {"name": "Philip Tan", "character": "Chinese Gunman", "id": 702, "credit_id": "52fe4512c3a36847f80bab7d", "cast_id": 16, "profile_path": "/dJP4kbCF2f8dg88BROfRukd67H1.jpg", "order": 8}, {"name": "Roy Brocksmith", "character": "Fed. Agent Davis", "id": 12888, "credit_id": "52fe4512c3a36847f80bab81", "cast_id": 17, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 9}, {"name": "Marc Alaimo", "character": "Lopez", "id": 160474, "credit_id": "52fe4512c3a36847f80bab85", "cast_id": 18, "profile_path": "/unSxEvj16onUK5FJQYmL1k25WLX.jpg", "order": 10}, {"name": "Lewis Arquette", "character": "Wyler", "id": 75465, "credit_id": "52fe4512c3a36847f80bab89", "cast_id": 19, "profile_path": "/uPlzI6d6zjJ8epskb5GepEtkNJF.jpg", "order": 11}, {"name": "Edward Bunker", "character": "Capt. Holmes (as Eddie Bunker)", "id": 6939, "credit_id": "52fe4512c3a36847f80bab8d", "cast_id": 20, "profile_path": "/kQNf8eN5qpWXAhNUrnUnWtBd3Eu.jpg", "order": 12}], "directors": [{"name": "Andrei Konchalovsky", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bab35", "profile_path": "/6RzqNCx3ZaFCrVN7cfpB0trhdEQ.jpg", "id": 58728}, {"name": "Albert Magnoli", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bab3b", "profile_path": "/cA8hbVAGaitbHbxNWvZiaXJXQHi.jpg", "id": 58729}], "vote_average": 6.1, "runtime": 104}, "1427": {"poster_path": "/zC9JHS6NlkJKPYFxOOqBl7fQCjT.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132180323, "overview": "Jean-Baptiste Grenouille, born in the stench of eighteenth century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. His work, however, takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.", "video": false, "id": 1427, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Perfume: The Story of a Murderer", "tagline": "Based on the best-selling novel", "vote_count": 313, "homepage": "http://www.parfum.film.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396171", "adult": false, "backdrop_path": "/crR71u5ptmoFW3sCFjAJnHGbYOk.jpg", "production_companies": [{"name": "Nouvelles \u00c9ditions de Films", "id": 751}, {"name": "Rising Star", "id": 1208}, {"name": "VIP Medienfonds 4", "id": 2116}, {"name": "CDavis-Films", "id": 2874}, {"name": "Ikiru Films", "id": 2875}], "release_date": "2006-10-18", "popularity": 0.828500251380433, "original_title": "Perfume: The Story of a Murderer", "budget": 50000000, "cast": [{"name": "Ben Whishaw", "character": "Jean-Baptiste Grenouille", "id": 17064, "credit_id": "52fe42f6c3a36847f8030117", "cast_id": 9, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 0}, {"name": "Simon Chandler", "character": "B\u00fcrgermeister von Grasse", "id": 16273, "credit_id": "52fe42f6c3a36847f803014b", "cast_id": 21, "profile_path": "/j30wLavbX35RxxtjvMvCNK8Exsw.jpg", "order": 1}, {"name": "David Calder", "character": "Bischof von Grasse", "id": 10779, "credit_id": "52fe42f6c3a36847f8030147", "cast_id": 20, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 2}, {"name": "Richard Felix", "character": "Magistrat", "id": 17079, "credit_id": "52fe42f6c3a36847f8030183", "cast_id": 35, "profile_path": null, "order": 3}, {"name": "Birgit Minichmayr", "character": "Grenouilles Mutter", "id": 8800, "credit_id": "52fe42f6c3a36847f8030173", "cast_id": 31, "profile_path": "/z2Jbpv9mgrioR9NcrraeavjIZXl.jpg", "order": 4}, {"name": "Sian Thomas", "character": "Madame Gaillard", "id": 17069, "credit_id": "52fe42f6c3a36847f8030153", "cast_id": 23, "profile_path": "/jI0TOejWhHQCkTwyMyDTmm74VmD.jpg", "order": 5}, {"name": "Michael Smiley", "character": "Aufseher", "id": 17078, "credit_id": "52fe42f6c3a36847f803017f", "cast_id": 34, "profile_path": "/muzJQpsKJ4srfVpyRa7qkrRYWSq.jpg", "order": 6}, {"name": "Alvaro Roque", "character": "Grenouille (5 Jahre)", "id": 17076, "credit_id": "52fe42f6c3a36847f8030177", "cast_id": 32, "profile_path": null, "order": 7}, {"name": "Franck Lefeuvre", "character": "Grenouille (12 Jahre)", "id": 17077, "credit_id": "52fe42f6c3a36847f803017b", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Sam Douglas", "character": "Grimal", "id": 17072, "credit_id": "52fe42f6c3a36847f8030163", "cast_id": 27, "profile_path": "/5ZcldKZ1PDmf2gzTL3LA671PNZL.jpg", "order": 9}, {"name": "Karoline Herfurth", "character": "Das Mirabellen-M\u00e4dchen", "id": 17067, "credit_id": "52fe42f6c3a36847f8030143", "cast_id": 19, "profile_path": "/8HVqhIaLQA3MOTO88Ncn6VOCzdp.jpg", "order": 10}, {"name": "Timothy Davies", "character": "Chenier", "id": 17071, "credit_id": "52fe42f6c3a36847f803015f", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Dustin Hoffman", "character": "Giuseppe Baldini", "id": 4483, "credit_id": "52fe42f6c3a36847f803011f", "cast_id": 12, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 12}, {"name": "Rachel Hurd-Wood", "character": "Laura", "id": 129050, "credit_id": "52fe42f6c3a36847f80301ed", "cast_id": 53, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 13}, {"name": "Alan Rickman", "character": "Richis", "id": 4566, "credit_id": "52fe42f6c3a36847f803011b", "cast_id": 11, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 14}, {"name": "Sara Forestier", "character": "Jeanne", "id": 17074, "credit_id": "52fe42f6c3a36847f803016b", "cast_id": 29, "profile_path": "/tzQklCMfzQYu3j7w8Q5TXp2EdeE.jpg", "order": 15}, {"name": "Corinna Harfouch", "character": "Madame Arnulfi", "id": 680, "credit_id": "52fe42f6c3a36847f8030157", "cast_id": 24, "profile_path": "/oEXqVyUnBLP1JxRVhpT6B3pIe37.jpg", "order": 16}, {"name": "Paul Berrondo", "character": "Dominique Drouot", "id": 17070, "credit_id": "52fe42f6c3a36847f803015b", "cast_id": 25, "profile_path": "/sDqq0jbs9QU0t82WeSiecQ31ssj.jpg", "order": 17}, {"name": "Joanna Griffiths", "character": "Marianne", "id": 17075, "credit_id": "52fe42f6c3a36847f803016f", "cast_id": 30, "profile_path": "/tRON81PYgDaoPt3S02e6j15U0ND.jpg", "order": 18}, {"name": "Jessica Schwarz", "character": "Natalie", "id": 17068, "credit_id": "52fe42f6c3a36847f803014f", "cast_id": 22, "profile_path": "/l4zJpkc9LMJGXPpcDEAcA1QWRq9.jpg", "order": 19}, {"name": "Harris Gordon", "character": "Marquis de Montesquieu", "id": 17073, "credit_id": "52fe42f6c3a36847f8030167", "cast_id": 28, "profile_path": "/3f092nXiIR1bpRBBwWTYNvb2ndC.jpg", "order": 20}, {"name": "Enric Arquimbau", "character": "Executioner", "id": 17066, "credit_id": "52fe42f6c3a36847f8030123", "cast_id": 13, "profile_path": "/niXxoz3K6K5Pfcmou6s9etbSdiF.jpg", "order": 21}, {"name": "John Hurt", "character": "Narrator (voice)", "id": 5049, "credit_id": "52fe42f6c3a36847f8030127", "cast_id": 14, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 22}], "directors": [{"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe42f6c3a36847f80300e9", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 7.0, "runtime": 147}, "1428": {"poster_path": "/j3Mz1jaM3MVr5K1Ijh5D2T93VF2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41825802, "overview": "Hitman \"El Mariachi\" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.", "video": false, "id": 1428, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Once Upon a Time in Mexico", "tagline": "The Time Has Come.", "vote_count": 161, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6p1OzuIKWnTDfDea7IpB9xra5J.jpg", "poster_path": "/4UMPWCj3MuHLCR2vVPPNCxU6RDV.jpg", "id": 9649, "name": "Mexico Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0285823", "adult": false, "backdrop_path": "/vQi6zDyPoX3bq9YHazcOojXkAKP.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2003-09-11", "popularity": 0.431049547327576, "original_title": "Once Upon a Time in Mexico", "budget": 29000000, "cast": [{"name": "Antonio Banderas", "character": "El Mariachi", "id": 3131, "credit_id": "52fe42f6c3a36847f8030213", "cast_id": 2, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Carolina", "id": 3136, "credit_id": "52fe42f6c3a36847f803020f", "cast_id": 1, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Sands", "id": 85, "credit_id": "52fe42f6c3a36847f8030217", "cast_id": 3, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Eva Mendes", "character": "Ajedrez", "id": 8170, "credit_id": "52fe42f6c3a36847f8030221", "cast_id": 5, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 3}, {"name": "Mickey Rourke", "character": "Billy", "id": 2295, "credit_id": "52fe42f6c3a36847f8030225", "cast_id": 6, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 4}, {"name": "Danny Trejo", "character": "Cucuy", "id": 11160, "credit_id": "52fe42f6c3a36847f8030229", "cast_id": 7, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 5}, {"name": "Enrique Iglesias", "character": "Lorenzo", "id": 20231, "credit_id": "52fe42f6c3a36847f803022d", "cast_id": 8, "profile_path": "/ajXHL0mFwuJUXdNTeyEX9d1NFlX.jpg", "order": 6}, {"name": "Cheech Marin", "character": "Belini", "id": 11159, "credit_id": "52fe42f6c3a36847f8030231", "cast_id": 9, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 7}, {"name": "Willem Dafoe", "character": "Barillo", "id": 5293, "credit_id": "52fe42f6c3a36847f8030247", "cast_id": 13, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 8}, {"name": "Marco Leonardi", "character": "Fideo", "id": 27643, "credit_id": "52fe42f6c3a36847f803024b", "cast_id": 14, "profile_path": "/vyBWitXBSfFJpJRff14GrIZimta.jpg", "order": 9}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe42f6c3a36847f803021d", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.0, "runtime": 102}, "1429": {"poster_path": "/fxQnUISjGYewZzpbbu7o5LfEPpJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13060843, "overview": "The filmed adaptation from the David Benioff's novel of the same name. Set in New York, a convicted drug dealer named Monty has one day left of freedom before he is sent to prison. Anger, blame, frustration, betrayal, guilt and loneliness are themes on this last day of friends, family, parties, saying goodbye, and setting things straight. A Spike Lee joint.", "video": false, "id": 1429, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "25th Hour", "tagline": "This life was so close to never happening.", "vote_count": 141, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307901", "adult": false, "backdrop_path": "/9chIFrNEp03mJTFQWFCcx6yeVtE.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "40 Acres & A Mule Filmworks", "id": 4319}], "release_date": "2002-12-16", "popularity": 0.483584163934132, "original_title": "25th Hour", "budget": 15000000, "cast": [{"name": "Edward Norton", "character": "Monty Brogan", "id": 819, "credit_id": "52fe42f6c3a36847f8030283", "cast_id": 1, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Jacob Elinsky", "id": 1233, "credit_id": "52fe42f6c3a36847f8030287", "cast_id": 3, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Barry Pepper", "character": "Frank Slaughtery", "id": 12834, "credit_id": "52fe42f6c3a36847f8030297", "cast_id": 6, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 2}, {"name": "Rosario Dawson", "character": "Naturelle Riviera", "id": 5916, "credit_id": "52fe42f6c3a36847f803029b", "cast_id": 7, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 3}, {"name": "Anna Paquin", "character": "Mary D'Annuzio", "id": 10690, "credit_id": "52fe42f6c3a36847f803029f", "cast_id": 8, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 4}, {"name": "Brian Cox", "character": "James Brogan", "id": 1248, "credit_id": "52fe42f6c3a36847f80302a3", "cast_id": 9, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 5}, {"name": "Tony Siragusa", "character": "Kostya Novotny", "id": 27036, "credit_id": "52fe42f6c3a36847f80302a7", "cast_id": 10, "profile_path": "/sQtXDLYlQPYlcVOM9VDjrJzoC5m.jpg", "order": 6}, {"name": "Levan Uchaneishvili", "character": "Uncle Nikolai", "id": 27037, "credit_id": "52fe42f6c3a36847f80302ab", "cast_id": 11, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 7}, {"name": "Misha Kuznetsov", "character": "Senka Valghobek", "id": 1255887, "credit_id": "53efe03ac3a3685ae2001801", "cast_id": 27, "profile_path": "/zmchQa0Y2K2xMgIDDr42aGhG50e.jpg", "order": 8}, {"name": "Isiah Whitlock, Jr.", "character": "Agent Flood", "id": 17490, "credit_id": "53efe078c3a3685ae7001955", "cast_id": 28, "profile_path": "/yLaKPYOvrea7dU0Xa86SY1WN7Gc.jpg", "order": 9}, {"name": "Michael Genet", "character": "Agent Cunningham", "id": 51865, "credit_id": "53efe09ac3a3685add0017dd", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Patrice O'Neal", "character": "Khari", "id": 543256, "credit_id": "53efe1000e0a2675af001f64", "cast_id": 30, "profile_path": "/jvck3EQU2foaaEz7CdlaP3RaCNM.jpg", "order": 11}, {"name": "Al Palagonia", "character": "Salvatore Dominick", "id": 122546, "credit_id": "53efe1290e0a2675bc001e46", "cast_id": 31, "profile_path": "/d8UrrQsxM9Bb7Vjk6RC6Ejjc5Ib.jpg", "order": 12}, {"name": "Aaron Stanford", "character": "Marcuse", "id": 11022, "credit_id": "52fe42f6c3a36847f8030301", "cast_id": 26, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 13}, {"name": "Dania Ramirez", "character": "Daphne", "id": 37046, "credit_id": "52fe42f6c3a36847f80302fd", "cast_id": 25, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 14}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe42f6c3a36847f80302f9", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 7.0, "runtime": 135}, "9626": {"poster_path": "/lvRlHJeMAYlUzSD8cebfIfNOhyl.jpg", "production_countries": [{"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6948633, "overview": "The tyrant Gedren seeks the total power in a world of barbarism. She raids the city Hablac and kills the keeper of a talisman that gives her great power. Red Sonja, sister of the keeper, sets out with her magic sword to overthrow Gedren.", "video": false, "id": 9626, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Red Sonja", "tagline": "A woman and a warrior that became a legend.", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aHgQZRJgOaZWOqnnO5dc2vWkHOu.jpg", "poster_path": "/vguM8mJmArTn9ePTm8fK0Ryt7EI.jpg", "id": 43055, "name": "Conan the Barbarian Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089893", "adult": false, "backdrop_path": "/kiFGR7UkelbpZGF64jkD6KgkoLR.jpg", "production_companies": [{"name": "MGM", "id": 5899}], "release_date": "1985-07-03", "popularity": 0.663316349202547, "original_title": "Red Sonja", "budget": 17900000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Kalidor", "id": 1100, "credit_id": "52fe4513c3a36847f80baf77", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Brigitte Nielsen", "character": "Red Sonja", "id": 921, "credit_id": "52fe4513c3a36847f80baf7b", "cast_id": 2, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 1}, {"name": "Sandahl Bergman", "character": "Queen Gedren", "id": 45378, "credit_id": "52fe4513c3a36847f80baf7f", "cast_id": 3, "profile_path": "/autibegxGq7oVvR5DGfEQL3ARoE.jpg", "order": 2}, {"name": "Paul L. Smith", "character": "Falkon", "id": 39782, "credit_id": "52fe4513c3a36847f80baf83", "cast_id": 4, "profile_path": "/1NZXecko55r4vchJkUAshliIctS.jpg", "order": 3}, {"name": "Ernie Reyes, Jr.", "character": "Prince Tarn", "id": 58210, "credit_id": "52fe4513c3a36847f80baf87", "cast_id": 5, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 4}], "directors": [{"name": "Richard Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe4513c3a36847f80baf8d", "profile_path": "/yofiXdiD2AaK2M4RgXQFeO8qQgD.jpg", "id": 2087}], "vote_average": 5.8, "runtime": 89}, "288158": {"poster_path": "/4YG59hNg5CniY7hSsVJTuBmKLq6.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "40 years after the first haunting at Eel Marsh House, a group of children evacuated from WWII London arrive, awakening the house's darkest inhabitant.", "video": false, "id": 288158, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Woman in Black 2: Angel of Death", "tagline": "She Never Left", "vote_count": 66, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/aWMxfo5LEWkL5o4xpQcLVsbcmNp.jpg", "id": 315560, "name": "The Woman in Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2339741", "adult": false, "backdrop_path": "/wXo71vDPUxRXFeNjHcthd57cpbt.jpg", "production_companies": [{"name": "Vertigo Entertainment", "id": 829}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Alliance Films", "id": 2514}, {"name": "Da Vinci Media Ventures", "id": 40107}, {"name": "Hammer Film Productions", "id": 1314}, {"name": "Talisman Productions", "id": 8989}], "release_date": "2014-12-30", "popularity": 1.42688818353079, "original_title": "The Woman in Black 2: Angel of Death", "budget": 0, "cast": [{"name": "Helen McCrory", "character": "Jean Hogg", "id": 15737, "credit_id": "543ec399c3a3684fe90000d7", "cast_id": 4, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 2}, {"name": "Jeremy Irvine", "character": "Harry Burnstow", "id": 225692, "credit_id": "543ec3bd0e0a2667450000e6", "cast_id": 5, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 3}, {"name": "Phoebe Fox", "character": "Eve Parkins", "id": 1320609, "credit_id": "543ec3c90e0a2667560000ef", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Ned Dennehy", "character": "Old Hermit Jacob", "id": 63362, "credit_id": "543ec3d3c3a3684fe20000af", "cast_id": 7, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 5}, {"name": "Adrian Rawlins", "character": "Dr. Rhodes", "id": 1643, "credit_id": "543ec3df0e0a2667420000c7", "cast_id": 8, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 6}, {"name": "Leanne Best", "character": "Woman In Black", "id": 1370630, "credit_id": "543ec3eac3a3684fe20000b2", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Oaklee Pendergast", "character": "Edward", "id": 1207881, "credit_id": "543ec636c3a3684fe9000111", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Leilah de Meza", "character": "Ruby", "id": 1374336, "credit_id": "543ec640c3a3684fda00012b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Amelia Pidgeon", "character": "Joyce", "id": 1148272, "credit_id": "543ec6490e0a266745000148", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Hayley Joanne Bacon", "character": "Woman at Station", "id": 1374337, "credit_id": "543ec655c3a3684fdf000129", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Jorge Leon Martinez", "character": "Londoner", "id": 1322312, "credit_id": "543ec65f0e0a26674500014d", "cast_id": 14, "profile_path": "/nWYveATaySCXosWAjcSS8VNPRe7.jpg", "order": 12}, {"name": "Richard Banks", "character": "Londoner", "id": 1049226, "credit_id": "543ec6690e0a26675900011b", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Leigh Dent", "character": "Train passenger", "id": 1374338, "credit_id": "543ec6730e0a266742000111", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Jude Wright", "character": "Tom", "id": 1255296, "credit_id": "543ec67e0e0a266742000116", "cast_id": 17, "profile_path": "/vh2IOu92eA9VnqHMultXItABsoa.jpg", "order": 15}, {"name": "Pip Pearce", "character": "James", "id": 1374339, "credit_id": "543ec69ec3a3684fdf000137", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Tom Harper", "department": "Directing", "job": "Director", "credit_id": "5412cf080e0a26731f0010ac", "profile_path": "/zXyuNKdDtcvwpVEm4hjXMETEK9P.jpg", "id": 212240}], "vote_average": 5.2, "runtime": 90}, "9631": {"poster_path": "/uA1zKgJVoO0ljbSbKXyek5YbLwv.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44547681, "overview": "The police try to arrest expert hostage negotiator Danny Roman, who insists he's being framed for his partner's murder in what he believes is an elaborate conspiracy. Thinking there's evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.", "video": false, "id": 9631, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Negotiator", "tagline": "He frees hostages for a living. Now he's taking hostages to survive.", "vote_count": 184, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120768", "adult": false, "backdrop_path": "/4K3RjWpWiHBHDMU5y9U2Mb37t7g.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1998-07-29", "popularity": 0.635698234876968, "original_title": "The Negotiator", "budget": 50000000, "cast": [{"name": "Samuel L. Jackson", "character": "Lt. Danny Roman", "id": 2231, "credit_id": "52fe4514c3a36847f80bb24d", "cast_id": 14, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Lt. Chris Sabian", "id": 1979, "credit_id": "52fe4514c3a36847f80bb251", "cast_id": 15, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "David Morse", "character": "Cdr. Adam Beck", "id": 52, "credit_id": "52fe4514c3a36847f80bb255", "cast_id": 16, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Ron Rifkin", "character": "Cdr. Grant Frost", "id": 12122, "credit_id": "52fe4514c3a36847f80bb259", "cast_id": 17, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 3}, {"name": "John Spencer", "character": "Chief Al Travis", "id": 34691, "credit_id": "52fe4514c3a36847f80bb25d", "cast_id": 18, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 4}, {"name": "J. T. Walsh", "character": "Insp. Terence Niebaum", "id": 22131, "credit_id": "52fe4514c3a36847f80bb261", "cast_id": 19, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 5}, {"name": "Siobhan Fallon", "character": "Maggie", "id": 6751, "credit_id": "52fe4514c3a36847f80bb265", "cast_id": 20, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 6}, {"name": "Paul Giamatti", "character": "Rudy", "id": 13242, "credit_id": "52fe4514c3a36847f80bb269", "cast_id": 21, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 7}, {"name": "Regina Taylor", "character": "Karen Roman", "id": 21848, "credit_id": "52fe4514c3a36847f80bb26d", "cast_id": 22, "profile_path": "/6adZhNlvCZjHpkolTYRUucoO9nH.jpg", "order": 8}, {"name": "Bruce Beatty", "character": "Markus", "id": 156532, "credit_id": "52fe4514c3a36847f80bb271", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Michael Cudlitz", "character": "Palermo", "id": 52415, "credit_id": "52fe4514c3a36847f80bb275", "cast_id": 24, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 10}, {"name": "Carlos G\u00f3mez", "character": "Eagle", "id": 115874, "credit_id": "52fe4514c3a36847f80bb279", "cast_id": 25, "profile_path": "/nBxwoMv1zrhNXyEjYXbcdmAdmF0.jpg", "order": 11}, {"name": "Tim Kelleher", "character": "Argento", "id": 72864, "credit_id": "52fe4514c3a36847f80bb27d", "cast_id": 26, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 12}, {"name": "Dean Norris", "character": "Scott", "id": 14329, "credit_id": "52fe4514c3a36847f80bb281", "cast_id": 27, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 13}, {"name": "Nestor Serrano", "character": "Hellman", "id": 14331, "credit_id": "52fe4514c3a36847f80bb285", "cast_id": 28, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 14}, {"name": "Doug Spinuzza", "character": "Tonray", "id": 35024, "credit_id": "52fe4514c3a36847f80bb289", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Leonard L. Thomas", "character": "Allen", "id": 15537, "credit_id": "52fe4514c3a36847f80bb28d", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Stephen Lee", "character": "Farley", "id": 91537, "credit_id": "52fe4514c3a36847f80bb291", "cast_id": 31, "profile_path": "/ntC48mP7UNmsp19YfvmVKRv5nX8.jpg", "order": 17}, {"name": "Lily Nicksay", "character": "Omar's Daughter", "id": 166896, "credit_id": "52fe4514c3a36847f80bb295", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Lauri Johnson", "character": "Chief's Wife", "id": 66499, "credit_id": "52fe4514c3a36847f80bb299", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Sabi Dorr", "character": "Bartender", "id": 136004, "credit_id": "52fe4514c3a36847f80bb29d", "cast_id": 34, "profile_path": null, "order": 20}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4514c3a36847f80bb225", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 6.6, "runtime": 140}, "1440": {"poster_path": "/ltrUzdRtn1I70wVFKDqmSNH34K3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.", "video": false, "id": 1440, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Little Children", "tagline": "", "vote_count": 51, "homepage": "http://www.littlechildrenmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404203", "adult": false, "backdrop_path": "/5T6zZtS0p1xzyAIUczMopJgZJzg.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Standard Film Company", "id": 716}, {"name": "Bona Fide Productions", "id": 2570}], "release_date": "2006-09-01", "popularity": 0.817910863455738, "original_title": "Little Children", "budget": 26000000, "cast": [{"name": "Kate Winslet", "character": "Sarah Pierce", "id": 204, "credit_id": "52fe42f7c3a36847f8030683", "cast_id": 7, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Patrick Wilson", "character": "Brad Adamson", "id": 17178, "credit_id": "52fe42f7c3a36847f8030687", "cast_id": 8, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "Kathy Adamson", "id": 6161, "credit_id": "52fe42f7c3a36847f803068b", "cast_id": 9, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Gregg Edelman", "character": "Richard Pierce", "id": 17179, "credit_id": "52fe42f7c3a36847f803068f", "cast_id": 10, "profile_path": "/aHbQl0K1c7rYtJVUHsLr4p0LtA6.jpg", "order": 3}, {"name": "Sadie Goldstein", "character": "Lucy Pierce", "id": 17180, "credit_id": "52fe42f7c3a36847f8030693", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Ty Simpkins", "character": "Aaron Adamson", "id": 17181, "credit_id": "52fe42f7c3a36847f8030697", "cast_id": 12, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 5}, {"name": "Noah Emmerich", "character": "Larry Hedges", "id": 11315, "credit_id": "52fe42f7c3a36847f803069b", "cast_id": 13, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 6}, {"name": "Jackie Earle Haley", "character": "Ronnie J. McGorvey", "id": 17183, "credit_id": "52fe42f7c3a36847f803069f", "cast_id": 14, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 7}, {"name": "Phyllis Somerville", "character": "May McGorvey", "id": 17184, "credit_id": "52fe42f7c3a36847f80306a3", "cast_id": 15, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 8}, {"name": "Helen Carey", "character": "Jean", "id": 17185, "credit_id": "52fe42f7c3a36847f80306a7", "cast_id": 16, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 9}, {"name": "Mary B. McCann", "character": "Mary Ann", "id": 17186, "credit_id": "52fe42f7c3a36847f80306ab", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Trini Alvarado", "character": "Theresa", "id": 17187, "credit_id": "52fe42f7c3a36847f80306af", "cast_id": 18, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 11}, {"name": "Marsha Dietlein", "character": "Cheryl", "id": 17188, "credit_id": "52fe42f7c3a36847f80306b3", "cast_id": 19, "profile_path": "/wdkUn4fPTg19FGF9n0TE69EiI6m.jpg", "order": 12}, {"name": "Sarah G. Buxton", "character": "Slutty Kay", "id": 17191, "credit_id": "52fe42f7c3a36847f80306b7", "cast_id": 21, "profile_path": "/osrm0dql0RhwX3LbgUSOT2M84yb.jpg", "order": 13}, {"name": "Chadwick Brown", "character": "Tony Correnti", "id": 17192, "credit_id": "52fe42f7c3a36847f80306bb", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Adam Mucci", "character": "Richie Murphy", "id": 17193, "credit_id": "52fe42f7c3a36847f80306bf", "cast_id": 23, "profile_path": "/rqullQ78nirOIOk5XhnfCbBHmwC.jpg", "order": 15}, {"name": "Chance Kelly", "character": "Pete Olafson", "id": 17194, "credit_id": "52fe42f7c3a36847f80306c3", "cast_id": 24, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 16}, {"name": "Walker Ryan", "character": "\"G\"", "id": 17195, "credit_id": "52fe42f7c3a36847f80306c7", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Erica Berg", "character": "Richard's Secretary", "id": 17196, "credit_id": "52fe42f7c3a36847f80306cb", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Catherine Wolf", "character": "Marjorie", "id": 17214, "credit_id": "52fe42f7c3a36847f80306cf", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Raymond J. Barry", "character": "Bullhorn Bob", "id": 10361, "credit_id": "52fe42f7c3a36847f803072d", "cast_id": 46, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 20}, {"name": "Jane Adams", "character": "Sheila", "id": 209, "credit_id": "52fe42f7c3a36847f8030731", "cast_id": 47, "profile_path": "/HbQfL01xmV1psnh0WvldIBzDg3.jpg", "order": 21}, {"name": "Chance Kelly", "character": "Pete Olaffson", "id": 17194, "credit_id": "52fe42f7c3a36847f8030747", "cast_id": 51, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 22}], "directors": [{"name": "Todd Field", "department": "Directing", "job": "Director", "credit_id": "52fe42f7c3a36847f80306f3", "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "id": 5010}], "vote_average": 6.7, "runtime": 136}, "1443": {"poster_path": "/r3ngI5C6tmnQeQ1cFKnVj8TJI4R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10409377, "overview": "A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.", "video": false, "id": 1443, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Virgin Suicides", "tagline": "Beautiful, mysterious, haunting, invariably fatal. Just like life.", "vote_count": 150, "homepage": "http://www.paramountvantage.com/virginsuicides/html_3/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0159097", "adult": false, "backdrop_path": "/a5FrfkLdI98DgOzI2QkZ2RfLWX0.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}], "release_date": "1999-04-21", "popularity": 0.681998043968422, "original_title": "The Virgin Suicides", "budget": 6000000, "cast": [{"name": "Kirsten Dunst", "character": "Lux Lisbon", "id": 205, "credit_id": "52fe42f8c3a36847f803091b", "cast_id": 16, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "James Woods", "character": "Mr. Lisbon", "id": 4512, "credit_id": "52fe42f8c3a36847f803091f", "cast_id": 17, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 1}, {"name": "Kathleen Turner", "character": "Mrs. Lisbon", "id": 3391, "credit_id": "52fe42f8c3a36847f8030923", "cast_id": 18, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 2}, {"name": "Josh Hartnett", "character": "Trip Fontaine", "id": 2299, "credit_id": "52fe42f8c3a36847f8030927", "cast_id": 19, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 3}, {"name": "A.J. Cook", "character": "Mary Lisbon", "id": 17236, "credit_id": "52fe42f8c3a36847f803092b", "cast_id": 20, "profile_path": "/6mSStsETn8o8bctan96koKYTRnd.jpg", "order": 4}, {"name": "Leslie Hayman", "character": "Therese Lisbon", "id": 17238, "credit_id": "52fe42f8c3a36847f803092f", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Chelse Swain", "character": "Bonnie Lisbon", "id": 17239, "credit_id": "52fe42f8c3a36847f8030933", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Anthony DeSimone", "character": "Chase Buell", "id": 17240, "credit_id": "52fe42f8c3a36847f8030937", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Scott Glenn", "character": "Father Moody", "id": 349, "credit_id": "52fe42f8c3a36847f803093b", "cast_id": 25, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 8}, {"name": "Danny DeVito", "character": "Dr. Horniker", "id": 518, "credit_id": "52fe42f8c3a36847f803093f", "cast_id": 26, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 9}, {"name": "Lee Kagan", "character": "David Barker", "id": 17241, "credit_id": "52fe42f8c3a36847f8030943", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Robert Schwartzman", "character": "Paul Baldino", "id": 17242, "credit_id": "52fe42f8c3a36847f8030947", "cast_id": 28, "profile_path": "/dBsIWM7nIvdUT8MuGzUVcCr8X8c.jpg", "order": 11}, {"name": "Jonathan Tucker", "character": "Tim Weiner", "id": 17243, "credit_id": "52fe42f8c3a36847f803094b", "cast_id": 29, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 12}, {"name": "Hayden Christensen", "character": "Joe Hill Conley", "id": 17244, "credit_id": "52fe42f8c3a36847f803094f", "cast_id": 30, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 13}, {"name": "Giovanni Ribisi", "character": "Narrator", "id": 1771, "credit_id": "52fe42f8c3a36847f8030953", "cast_id": 31, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 14}, {"name": "Hanna Hall", "character": "Cecilia Lisbon", "id": 204997, "credit_id": "52fe42f8c3a36847f8030957", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Joe Dinicol", "character": "Dominic Palazzolo", "id": 81098, "credit_id": "52fe42f8c3a36847f803095b", "cast_id": 33, "profile_path": "/cr7Zic8tvkWH2oqJ6a66OYYWbra.jpg", "order": 16}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe42f8c3a36847f80308c3", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 7.1, "runtime": 97}, "4958": {"poster_path": "/eNEsOEZFOstd1iXTtimbU8qsjDD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39459427, "overview": "World War I has left golfer Rannulph Junuh a poker-playing alcoholic, his perfect swing gone. Now, however, he needs to get it back to play in a tournament to save the financially ravaged golf course of a long-ago sweetheart. Help arrives in the form of mysterious caddy Bagger Vance.", "video": false, "id": 4958, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Legend of Bagger Vance", "tagline": "It Was Just A Moment Ago.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146984", "adult": false, "backdrop_path": "/noVASHnWl0pOUvukpACJASTvWHL.jpg", "production_companies": [{"name": "Wildwood Enterprises", "id": 316}, {"name": "Allied Filmmakers", "id": 1755}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "20th Century Fox", "id": 25}], "release_date": "2000-11-02", "popularity": 0.458540793869466, "original_title": "The Legend of Bagger Vance", "budget": 80000000, "cast": [{"name": "Bruce McGill", "character": "Walter Hagen", "id": 14888, "credit_id": "52fe43e7c3a36847f8077687", "cast_id": 5, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 0}, {"name": "Joel Gretsch", "character": "Bobby Jones", "id": 25376, "credit_id": "52fe43e7c3a36847f807768b", "cast_id": 6, "profile_path": "/5CeKN4wIQUAvF3mlRdeVAQ5ybSs.jpg", "order": 1}, {"name": "J. Michael Moncrief", "character": "Hardy Greaves", "id": 40253, "credit_id": "52fe43e7c3a36847f807768f", "cast_id": 7, "profile_path": null, "order": 2}, {"name": "Wilbur Fitzgerald", "character": "Roy", "id": 41019, "credit_id": "52fe43e7c3a36847f80776e1", "cast_id": 21, "profile_path": "/zkt1tKQpdmDcFtmoRSuZHIXQtDm.jpg", "order": 3}, {"name": "E. Roger Mitchell", "character": "Aaron", "id": 41020, "credit_id": "52fe43e7c3a36847f80776e5", "cast_id": 22, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 4}, {"name": "Carrie Preston", "character": "Idalyn Greaves", "id": 7465, "credit_id": "52fe43e7c3a36847f80776e9", "cast_id": 23, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 5}, {"name": "Will Smith", "character": "Bagger Vance", "id": 2888, "credit_id": "52fe43e7c3a36847f80776ed", "cast_id": 25, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 6}, {"name": "Charlize Theron", "character": "Adele Invergordon", "id": 6885, "credit_id": "52fe43e7c3a36847f80776f1", "cast_id": 26, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 7}, {"name": "Matt Damon", "character": "Rannulph Junuh", "id": 1892, "credit_id": "52fe43e7c3a36847f80776fb", "cast_id": 28, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 8}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a36847f80776f7", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.0, "runtime": 126}, "9637": {"poster_path": "/yn1dLaEcvUHIgxmAu6NY5ho6CnJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 275650703, "overview": "The Mystery Inc. gang have gone their separate ways and have been apart for two years, until they each receive an invitation to Spooky Island. Not knowing that the others have also been invited, they show up and discover an amusement park that affects young visitors in very strange ways.", "video": false, "id": 9637, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "Scooby-Doo", "tagline": "Get a Clue", "vote_count": 136, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vByvUnAp4eG5RzR1DFExi1lvx2C.jpg", "poster_path": "/YAuhbJKSG1R42QHJmbGsNQ80Fd.jpg", "id": 86860, "name": "Scooby-Doo (Live-action series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0267913", "adult": false, "backdrop_path": "/6iDZnSLYT4x6j1mkUDPoHN40x3F.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2002-06-13", "popularity": 0.988664063946208, "original_title": "Scooby-Doo", "budget": 84000000, "cast": [{"name": "Freddie Prinze Jr.", "character": "Fred Jones", "id": 33260, "credit_id": "52fe4514c3a36847f80bb547", "cast_id": 13, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "Daphne Blake", "id": 11863, "credit_id": "52fe4514c3a36847f80bb54b", "cast_id": 14, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Norville Rogers (\u201eShaggy\u201c)", "id": 26457, "credit_id": "52fe4514c3a36847f80bb54f", "cast_id": 15, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Linda Cardellini", "character": "Velma Dinkley", "id": 1817, "credit_id": "52fe4514c3a36847f80bb553", "cast_id": 16, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 3}, {"name": "Rowan Atkinson", "character": "Emile Mondavarious", "id": 10730, "credit_id": "52fe4514c3a36847f80bb557", "cast_id": 17, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 4}, {"name": "Neil Fanning", "character": "Scooby-Doo (voice)", "id": 58271, "credit_id": "52fe4514c3a36847f80bb55b", "cast_id": 18, "profile_path": "/wkVEPmAwycJMwPA9RjjeJusMuxo.jpg", "order": 5}, {"name": "Scott Innes", "character": "Scrappy-Doo (voice)", "id": 58272, "credit_id": "52fe4514c3a36847f80bb55f", "cast_id": 19, "profile_path": "/vhczzVvbcAEOILinNwiYBaCCw1b.jpg", "order": 6}, {"name": "Isla Fisher", "character": "Mary Jane", "id": 52848, "credit_id": "52fe4514c3a36847f80bb563", "cast_id": 20, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 7}, {"name": "Pamela Anderson", "character": "Herself", "id": 6736, "credit_id": "52fe4514c3a36847f80bb567", "cast_id": 21, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 8}, {"name": "Mark McGrath", "character": "Himself", "id": 35753, "credit_id": "52fe4514c3a36847f80bb56b", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe4514c3a36847f80bb52b", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.2, "runtime": 88}, "26022": {"poster_path": "/ipMQOfE4juN3FQh7uL1os1rwYRs.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rizwan Khan, a Muslim from the Borivali section of Mumbai, suffers from Asperger's syndrome, a form of high-functioning autism that complicates socialization. The adult Rizwan marries a Hindu single mother, Mandira, in San Francisco. After 9/11, Rizwan is detained by authorities at LAX who mistake his disability for suspicious behavior.", "video": false, "id": 26022, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "My Name Is Khan", "tagline": "", "vote_count": 57, "homepage": "http://www.mynameiskhanthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1188996", "adult": false, "backdrop_path": "/mHKG3hvbqevNcZCvWzoY9svUzc4.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Red Chillies Entertainment", "id": 2343}, {"name": "Foxstar", "id": 4450}], "release_date": "2010-02-12", "popularity": 0.253124240202387, "original_title": "My Name Is Khan", "budget": 22000000, "cast": [{"name": "Shahrukh Khan", "character": "Rizwan Khan", "id": 35742, "credit_id": "52fe44ebc3a368484e03e403", "cast_id": 14, "profile_path": "/5T5E8nVrxV9ytSRYyf0P2Uo31IC.jpg", "order": 0}, {"name": "Kajol", "character": "Mandira Khan", "id": 55061, "credit_id": "52fe44ebc3a368484e03e407", "cast_id": 15, "profile_path": "/8EvudQvU5Id8hbgH7IOM6NqgkWx.jpg", "order": 1}, {"name": "Jimmy Shergill", "character": "Rizwan's brother", "id": 35792, "credit_id": "52fe44ebc3a368484e03e40b", "cast_id": 16, "profile_path": "/lQDAT2RzgsZBGeL0qJYgVDBINAL.jpg", "order": 2}, {"name": "Zarina Wahab", "character": "Rizwan's mother", "id": 94567, "credit_id": "52fe44ebc3a368484e03e40f", "cast_id": 17, "profile_path": "/oljX4aX8LIxcvlzYhUaVQomtyiK.jpg", "order": 3}, {"name": "Tanay Chheda", "character": "Rizwan Khan (as a child)", "id": 52771, "credit_id": "52fe44ebc3a368484e03e413", "cast_id": 18, "profile_path": "/8wh6OIlyU2UpfBfjVTAIU4zFMiI.jpg", "order": 4}, {"name": "Sheetal Menon", "character": "Radha", "id": 94568, "credit_id": "52fe44ebc3a368484e03e417", "cast_id": 19, "profile_path": "/8Au12BMKXJ1d77WaBbfRFKKXNXT.jpg", "order": 5}, {"name": "Arif Zakaria", "character": "Faisal Rahman", "id": 53375, "credit_id": "52fe44ebc3a368484e03e41b", "cast_id": 20, "profile_path": "/wWa01WsvwLxqknpySC1V25k4CVB.jpg", "order": 6}, {"name": "Arjun Mathur", "character": "Raj", "id": 53105, "credit_id": "52fe44ebc3a368484e03e41f", "cast_id": 21, "profile_path": "/2miDsjwKdaWrsoDMKhZPGtzDRGw.jpg", "order": 7}, {"name": "Christopher B. Duncan", "character": "Barack Obama", "id": 94570, "credit_id": "52fe44ebc3a368484e03e423", "cast_id": 22, "profile_path": "/bzBCkB6sZeVJIHlUiG7sONAnFIv.jpg", "order": 8}], "directors": [{"name": "Karan Johar", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a368484e03e3c9", "profile_path": "/iSv9Mbjp6WqdL2euPNrJ1KGaIXL.jpg", "id": 35736}], "vote_average": 7.8, "runtime": 145}, "9641": {"poster_path": "/ftrEtXOMnYzF5k14tBJiS3MYby2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129181830, "overview": "Steve Martin and Bonnie Hunt return as heads of the Baker family who, while on vacation, find themselves in competition with a rival family of eight children, headed by Eugene Levy,", "video": false, "id": 9641, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cheaper by the Dozen 2", "tagline": "Same Big Family... Even Bigger Adventure.", "vote_count": 111, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5LCXYjHCy78SJqGhpAgabHmyf2s.jpg", "id": 114783, "name": "Cheaper by the Dozen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452598", "adult": false, "backdrop_path": "/nNvReK5QSyygLQDLcaxhrXa8eR0.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2005-12-21", "popularity": 0.798113098736785, "original_title": "Cheaper by the Dozen 2", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Tom Baker", "id": 67773, "credit_id": "52fe4515c3a36847f80bb6e3", "cast_id": 1, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Eugene Levy", "character": "Jimmy Murtaugh", "id": 26510, "credit_id": "52fe4515c3a36847f80bb6e7", "cast_id": 2, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 1}, {"name": "Bonnie Hunt", "character": "Kate Baker", "id": 5149, "credit_id": "52fe4515c3a36847f80bb6eb", "cast_id": 3, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 2}, {"name": "Tom Welling", "character": "Charlie Baker", "id": 11824, "credit_id": "52fe4515c3a36847f80bb6ef", "cast_id": 4, "profile_path": "/45hE6LdT31IyMKLtu8JPopByMEH.jpg", "order": 3}, {"name": "Jonathan Bennett", "character": "Bud McNulty", "id": 76996, "credit_id": "52fe4515c3a36847f80bb72f", "cast_id": 16, "profile_path": "/7IdoFyD20nGmfb1eh8AW71htRJM.jpg", "order": 4}, {"name": "Forrest Landis", "character": "Mark Baker", "id": 60393, "credit_id": "52fe4515c3a36847f80bb733", "cast_id": 17, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 5}, {"name": "Carmen Electra", "character": "Sarina Murtaugh", "id": 28639, "credit_id": "52fe4515c3a36847f80bb737", "cast_id": 18, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 6}, {"name": "Taylor Lautner", "character": "Eliot Murtaugh", "id": 84214, "credit_id": "52fe4515c3a36847f80bb73b", "cast_id": 19, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 7}, {"name": "Jacob Smith", "character": "Jake Baker", "id": 9829, "credit_id": "52fe4515c3a36847f80bb73f", "cast_id": 20, "profile_path": "/gWdoJZzinaMLniOFTGfWooZPo91.jpg", "order": 8}, {"name": "Kevin G. Schmidt", "character": "Henry Baker", "id": 85140, "credit_id": "52fe4515c3a36847f80bb743", "cast_id": 21, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 9}, {"name": "Brent Kinsman", "character": "Nigel Baker", "id": 148617, "credit_id": "52fe4515c3a36847f80bb747", "cast_id": 22, "profile_path": "/vMr6zID6ZJBJPY28uWvdu3vsqDS.jpg", "order": 10}, {"name": "Brent and Shane Kinsman", "character": "Kyle Baker", "id": 148618, "credit_id": "52fe4515c3a36847f80bb74b", "cast_id": 23, "profile_path": "/f69HcZsO5xnTi0JcuvP8RxyIYm6.jpg", "order": 11}, {"name": "Blake Woodruff", "character": "Mike Baker", "id": 142635, "credit_id": "52fe4515c3a36847f80bb74f", "cast_id": 24, "profile_path": "/oNsSKbH4rIGY8AnyCyChp4NRQ8C.jpg", "order": 12}, {"name": "Alexander Conti", "character": "Kenneth Murtaugh", "id": 133926, "credit_id": "52fe4515c3a36847f80bb753", "cast_id": 25, "profile_path": "/xa2sfSRapHrHmRyp5aHQ7258qtG.jpg", "order": 13}, {"name": "Matthew Knight", "character": "Theatre Kid", "id": 20377, "credit_id": "52fe4515c3a36847f80bb757", "cast_id": 26, "profile_path": "/704cnOP2UV3oTCRET3yex7WpNhJ.jpg", "order": 14}, {"name": "Hilary Duff", "character": "Lorraine Baker", "id": 5958, "credit_id": "52fe4515c3a36847f80bb75b", "cast_id": 27, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 15}, {"name": "Alyson Stoner", "character": "Sarah Baker", "id": 58965, "credit_id": "52fe4515c3a36847f80bb75f", "cast_id": 28, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 16}, {"name": "Morgan York", "character": "Kim Baker", "id": 148615, "credit_id": "52fe4515c3a36847f80bb763", "cast_id": 29, "profile_path": "/AhcT2J8Kk1mRpDhDdhszAeQslBg.jpg", "order": 17}, {"name": "Liliana Mumy", "character": "Jessica Baker", "id": 71861, "credit_id": "52fe4515c3a36847f80bb767", "cast_id": 30, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 18}, {"name": "Robbie Amell", "character": "Daniel Murtaugh", "id": 1223726, "credit_id": "52fe4515c3a36847f80bb76f", "cast_id": 33, "profile_path": "/At42ERb0b0tUQmcaQKStGLhbLqN.jpg", "order": 19}, {"name": "Adam Shankman", "character": "Clam Bake Chef", "id": 20739, "credit_id": "52fe4515c3a36847f80bb76b", "cast_id": 32, "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "order": 20}, {"name": "Piper Perabo", "character": "Nora Baker-McNulty", "id": 15555, "credit_id": "52fe4515c3a36847f80bb773", "cast_id": 34, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 21}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe4515c3a36847f80bb6f5", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.7, "runtime": 94}, "9799": {"poster_path": "/x4So4OkqnjfOSBCCNd5uosMmQiB.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 207283925, "overview": "Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.", "video": false, "id": 9799, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Fast and the Furious", "tagline": "Live life 1/4 mile at a time.", "vote_count": 1914, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0232500", "adult": false, "backdrop_path": "/lmIqH8Qsv3IvDg0PTFUuVr89eBT.jpg", "production_companies": [{"name": "Ardustry Entertainment", "id": 26281}, {"name": "Universal Pictures", "id": 33}, {"name": "Original Film", "id": 333}, {"name": "Mediastream Film GmbH & Co. Productions KG", "id": 26282}], "release_date": "2001-06-22", "popularity": 1.60710853958407, "original_title": "The Fast and the Furious", "budget": 38000000, "cast": [{"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe452fc3a36847f80c101b", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe452fc3a36847f80c101f", "cast_id": 2, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Letty", "id": 17647, "credit_id": "52fe452fc3a36847f80c1023", "cast_id": 3, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "52fe452fc3a36847f80c1027", "cast_id": 4, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "Rick Yune", "character": "Johnny Tran", "id": 10883, "credit_id": "52fe452fc3a36847f80c1073", "cast_id": 17, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 4}, {"name": "Chad Lindberg", "character": "Jesse", "id": 9186, "credit_id": "52fe452fc3a36847f80c1077", "cast_id": 18, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 5}, {"name": "Johnny Strong", "character": "Leon", "id": 12796, "credit_id": "52fe452fc3a36847f80c107b", "cast_id": 19, "profile_path": "/eJIgKkZKS99KRz1C1WgCq0wXsUh.jpg", "order": 6}, {"name": "Matt Schulze", "character": "Vince", "id": 31841, "credit_id": "52fe452fc3a36847f80c107f", "cast_id": 20, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 7}, {"name": "Ted Levine", "character": "Sgt. Tanner", "id": 15854, "credit_id": "52fe452fc3a36847f80c1083", "cast_id": 21, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 8}, {"name": "Ja Rule", "character": "Edwin", "id": 61658, "credit_id": "52fe452fc3a36847f80c1087", "cast_id": 22, "profile_path": "/rXvVP8d4NWBdHxcTu3GTUrybZlX.jpg", "order": 9}, {"name": "Vyto Ruginis", "character": "Harry", "id": 61216, "credit_id": "52fe452fc3a36847f80c108b", "cast_id": 23, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 10}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c102d", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 6.3, "runtime": 106}, "1452": {"poster_path": "/mAZ9zR7I7TjWvL4Yw3HkchsTeGM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 391081192, "overview": "Set 5 years after the end of Superman II, the film begins when Superman returns to discover his absence allowed Lex Luthor to walk free, and that those he was closest too felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever, as well as ridding himself of the Man Of Steel.", "video": false, "id": 1452, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman Returns", "tagline": "", "vote_count": 464, "homepage": "http://www.superman.com", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0348150", "adult": false, "backdrop_path": "/uAVdwu4vEx0TwuC4ewp9RqplKEV.jpg", "production_companies": [{"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DC Comics", "id": 429}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2006-06-28", "popularity": 1.28610034713297, "original_title": "Superman Returns", "budget": 270000000, "cast": [{"name": "Brandon Routh", "character": "Superman / Clark Kent", "id": 17271, "credit_id": "52fe42f8c3a36847f8030b65", "cast_id": 3, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Lex Luthor", "id": 1979, "credit_id": "52fe42f8c3a36847f8030b61", "cast_id": 1, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Kate Bosworth", "character": "Lois Lane", "id": 7517, "credit_id": "52fe42f8c3a36847f8030b69", "cast_id": 4, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 2}, {"name": "James Marsden", "character": "Richard White", "id": 11006, "credit_id": "52fe42f8c3a36847f8030b8b", "cast_id": 10, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 3}, {"name": "Parker Posey", "character": "Kitty Kowalski", "id": 7489, "credit_id": "52fe42f8c3a36847f8030b8f", "cast_id": 11, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 4}, {"name": "Frank Langella", "character": "Perry White", "id": 8924, "credit_id": "52fe42f8c3a36847f8030b93", "cast_id": 12, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 5}, {"name": "Sam Huntington", "character": "Jimmy Olsen", "id": 53492, "credit_id": "52fe42f8c3a36847f8030b97", "cast_id": 13, "profile_path": "/nq7pwic6Xe6XTRzOfXjMCuUqbjt.jpg", "order": 6}, {"name": "Eva Marie Saint", "character": "Martha Kent", "id": 2639, "credit_id": "52fe42f8c3a36847f8030b9b", "cast_id": 14, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 7}, {"name": "Marlon Brando", "character": "Jor-El", "id": 3084, "credit_id": "52fe42f8c3a36847f8030b9f", "cast_id": 15, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 8}, {"name": "Kal Penn", "character": "Stanford", "id": 53493, "credit_id": "52fe42f8c3a36847f8030ba3", "cast_id": 16, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 9}, {"name": "Tristan Lake Leabu", "character": "Jason White", "id": 53494, "credit_id": "52fe42f8c3a36847f8030ba7", "cast_id": 17, "profile_path": "/8qGNvU0JYISTcjNOA7WB6Y6Ez7C.jpg", "order": 10}, {"name": "David Fabrizio", "character": "Brutus", "id": 41318, "credit_id": "52fe42f8c3a36847f8030bab", "cast_id": 18, "profile_path": "/rcT4BPhZQDK0a2nIp9WlGn920eG.jpg", "order": 11}, {"name": "Ian Roberts", "character": "Riley", "id": 1224391, "credit_id": "52fe42f8c3a36847f8030bb5", "cast_id": 21, "profile_path": "/9tVVEmYyTNHC6p3Ten8j95Zklu5.jpg", "order": 12}, {"name": "Vincent Stone", "character": "Grant", "id": 1272955, "credit_id": "530d2dea92514114240017c6", "cast_id": 22, "profile_path": "/A3nBAQ8sRGfFj6JAo04z5KRc3rp.jpg", "order": 13}, {"name": "Jack Larson", "character": "Bo the Bartender", "id": 193763, "credit_id": "530d2e7c925141142e00176d", "cast_id": 24, "profile_path": "/11UOpxJnhX2JZ7dAjy7G735pUbo.jpg", "order": 15}, {"name": "Noel Neill", "character": "Gertrude Vanderworth", "id": 243805, "credit_id": "552e6249c3a36875010038d9", "cast_id": 25, "profile_path": "/zYp8iKSPrHIZb7bt76hxZqgSXm.jpg", "order": 16}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe42f8c3a36847f8030b6f", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 5.3, "runtime": 154}, "9645": {"poster_path": "/3zpmLxfZIusjsy9GEEk5zhxBqi6.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68349884, "overview": "After discovering a passenger ship missing since 1962 floating adrift on the Bering Sea, salvagers claim the vessel as their own. Once they begin towing the ghost ship towards harbor, a series of bizarre occurrences happen and the group becomes trapped inside the ship, which they soon learn is inhabited by a demonic creature.", "video": false, "id": 9645, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Ship", "tagline": "Sea Evil", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0288477", "adult": false, "backdrop_path": "/gc4MW8gPXFNbVJIZBpIsYlmQaxB.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Dark Castle Entertainment", "id": 1786}], "release_date": "2002-10-25", "popularity": 0.940740848058442, "original_title": "Ghost Ship", "budget": 35000000, "cast": [{"name": "Gabriel Byrne", "character": "Captain Sean Murphy", "id": 5168, "credit_id": "52fe4515c3a36847f80bb965", "cast_id": 12, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 0}, {"name": "Julianna Margulies", "character": "Maureen Epps", "id": 25654, "credit_id": "52fe4515c3a36847f80bb969", "cast_id": 13, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 1}, {"name": "Desmond Harrington", "character": "Jack Ferriman", "id": 6365, "credit_id": "52fe4515c3a36847f80bb96d", "cast_id": 14, "profile_path": "/Wyv2jiCnJXkVtrRwXOvy1aVemb.jpg", "order": 2}, {"name": "Ron Eldard", "character": "Dodge", "id": 12260, "credit_id": "52fe4515c3a36847f80bb971", "cast_id": 15, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 3}, {"name": "Isaiah Washington", "character": "Greer", "id": 21353, "credit_id": "52fe4515c3a36847f80bb975", "cast_id": 16, "profile_path": "/d6J3fo5ad2XeoQ53421eL7YcpoJ.jpg", "order": 4}, {"name": "Karl Urban", "character": "Munder", "id": 1372, "credit_id": "52fe4515c3a36847f80bb979", "cast_id": 17, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 5}, {"name": "Emily Browning", "character": "Katie Harwood", "id": 70456, "credit_id": "52fe4515c3a36847f80bb97d", "cast_id": 18, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 6}, {"name": "Francesca Rettondini", "character": "Francesca", "id": 1004151, "credit_id": "5300aa27c3a3683ff72a0935", "cast_id": 19, "profile_path": "/r1O58jmbDjTyelTn5JV8yaxQQwR.jpg", "order": 7}, {"name": "Bob Ruggiero", "character": "Captain (as Robert Ruggiero)", "id": 217030, "credit_id": "534d11560e0a2661b9000f31", "cast_id": 24, "profile_path": null, "order": 8}], "directors": [{"name": "Steve Beck", "department": "Directing", "job": "Director", "credit_id": "52fe4515c3a36847f80bb943", "profile_path": "/p050TsMfcaDeUv3DAcSaS8Tzdrs.jpg", "id": 57521}], "vote_average": 5.2, "runtime": 91}, "11165": {"poster_path": "/vBxZpSulJCNNH5VonyUjZHaDJek.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29548291, "overview": "In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. \"Tora! Tora! Tora!\", named after the code words use by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.", "video": false, "id": 11165, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Tora! Tora! Tora!", "tagline": "The incredible attack on Pearl Harbor.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066473", "adult": false, "backdrop_path": "/fztkRpVydDJKSo07oEdqOYTZF1q.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1970-09-23", "popularity": 0.356549834535902, "original_title": "Tora! Tora! Tora!", "budget": 25485000, "cast": [{"name": "Martin Balsam", "character": "Admiral Husband E. Kimmel", "id": 1936, "credit_id": "52fe44059251416c75026459", "cast_id": 1, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 0}, {"name": "S\u00f4 Yamamura", "character": "Vice-Admiral Isoroku Yamamoto", "id": 68411, "credit_id": "52fe44059251416c7502645d", "cast_id": 2, "profile_path": "/rdnPm1VDk0Q0EfTCFRU3N0YniK5.jpg", "order": 1}, {"name": "Joseph Cotten", "character": "Henry L. Stimson, U.S. Secretary of War", "id": 7664, "credit_id": "52fe44059251416c75026461", "cast_id": 3, "profile_path": "/bTUTrTnzacCQV4F0rs1xH4QaETf.jpg", "order": 2}, {"name": "Tatsuya Mihashi", "character": "Commander Minoru Genda", "id": 13251, "credit_id": "52fe44059251416c75026465", "cast_id": 4, "profile_path": "/n72g3neS8nAyz3cM9C8NAnO2bXM.jpg", "order": 3}, {"name": "E.G. Marshall", "character": "Lt. Colonel Rufus S. Bratton", "id": 5249, "credit_id": "52fe44059251416c750264c3", "cast_id": 20, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 4}, {"name": "James Whitmore", "character": "Vice Admiral William F. 'Bull' Halsey Jr.", "id": 6577, "credit_id": "52fe44059251416c750264c7", "cast_id": 21, "profile_path": "/r1xOgXFjqhn2fonn78rlXKPZGFw.jpg", "order": 5}, {"name": "Takahiro Tamura", "character": "Lt. Commander Mitsuo Fuchida", "id": 118989, "credit_id": "52fe44059251416c750264cb", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Jason Robards", "character": "Lt. General Walter C. Short", "id": 4765, "credit_id": "52fe44059251416c750264cf", "cast_id": 24, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 8}, {"name": "Wesley Addy", "character": "Lt. Commander Alwin D. Kramer", "id": 66712, "credit_id": "52fe44059251416c750264d3", "cast_id": 25, "profile_path": "/qc8DGqS0pZJon3cVgDl3jVzW4SU.jpg", "order": 9}, {"name": "Frank Aletter", "character": "Lt. Commander Francis J. Thomas - USS Nevada", "id": 123380, "credit_id": "52fe44059251416c750264d7", "cast_id": 27, "profile_path": "/wlUBPFVPbVyb7tMUN6DeLk1h6Wz.jpg", "order": 10}, {"name": "Koreya Senda", "character": "Prime Minister Prince Fumimaro Konoye", "id": 123381, "credit_id": "52fe44059251416c750264db", "cast_id": 28, "profile_path": "/iIOtsocIjkfHFqy3VGgEiN0kLi9.jpg", "order": 11}, {"name": "Leon Ames", "character": "Secretary of the Navy Frank Knox", "id": 13994, "credit_id": "52fe44069251416c750264df", "cast_id": 29, "profile_path": "/g9jmaTeVjRlrGEO1MefnoS3uVRK.jpg", "order": 12}, {"name": "Junya Usami", "character": "Admiral Zengo Yoshida", "id": 123382, "credit_id": "52fe44069251416c750264e3", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Richard Anderson", "character": "Captain John B. Earle", "id": 12312, "credit_id": "52fe44069251416c750264e7", "cast_id": 32, "profile_path": "/lHI1T7yJfCv3cfD7SpAkH0OWDNx.jpg", "order": 14}, {"name": "Kazuo Kitamura", "character": "Foreign Minister Yosuke Matsuoka", "id": 63707, "credit_id": "52fe44069251416c750264eb", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Susumu Fujita", "character": "Rear Admiral Tamon Yamaguchi", "id": 30907, "credit_id": "52fe44069251416c750264ef", "cast_id": 35, "profile_path": "/eVlXPPjlHAzFBKxgPKML1Uciahx.jpg", "order": 16}, {"name": "Edward Andrews", "character": "Admiral Harold R. Stark", "id": 29719, "credit_id": "52fe44069251416c750264f3", "cast_id": 36, "profile_path": "/8tbeVNxs6puN3GiyOmoq70IchLb.jpg", "order": 17}, {"name": "Bontar\u00f4 Miake", "character": "Admiral Koshiro Oikawa (as Bontaro Miyake)", "id": 123384, "credit_id": "52fe44069251416c750264f7", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Neville Brand", "character": "Lieutenant Harold Kaminsky", "id": 9112, "credit_id": "52fe44069251416c750264fb", "cast_id": 38, "profile_path": "/oqHFJx2CUOLuZU3l1acZWUDFlVN.jpg", "order": 19}, {"name": "Richard Erdman", "character": "Colonel Edward F. French", "id": 9110, "credit_id": "52fe44069251416c750264ff", "cast_id": 39, "profile_path": "/rhjiP9WV2tIsAPhwDpc6mPtX0Qs.jpg", "order": 20}, {"name": "Keith Andes", "character": "General George C. Marshall", "id": 15953, "credit_id": "52fe44069251416c75026503", "cast_id": 40, "profile_path": "/er8eS2jkZGzqPr26QWJPCKdwq9f.jpg", "order": 21}, {"name": "Eijir\u00f4 T\u00f4no", "character": "Vice Admiral Chuichi Nagumo (as Eijiro Tono)", "id": 106165, "credit_id": "52fe44069251416c75026507", "cast_id": 41, "profile_path": "/5wb61i8W4r9On3FkwUbaTkWqfdb.jpg", "order": 22}, {"name": "Sh\u00f4go Shimada", "character": "Japanese Ambassador Kichisaburo Nomura", "id": 150249, "credit_id": "52fe44069251416c7502650b", "cast_id": 42, "profile_path": null, "order": 23}], "directors": [{"name": "Richard Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe44059251416c7502646b", "profile_path": "/yofiXdiD2AaK2M4RgXQFeO8qQgD.jpg", "id": 2087}, {"name": "Kinji Fukasaku", "department": "Directing", "job": "Director", "credit_id": "52fe44059251416c75026471", "profile_path": null, "id": 31074}, {"name": "Toshio Masuda", "department": "Directing", "job": "Director", "credit_id": "52fe44059251416c75026477", "profile_path": null, "id": 68412}], "vote_average": 6.5, "runtime": 144}, "206408": {"poster_path": "/7O5ZeMQyBZVwDyCIg8F8B1u3nsn.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Xavier is a 40-year-old father of two who still finds life very complicated. When the mother of his children moves to New York, he can't bear them growing up far away from him and so he decides to move there as well.", "video": false, "id": 206408, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Chinese Puzzle", "tagline": "", "vote_count": 71, "homepage": "http://www.cassetetechinois-lefilm.fr/", "belongs_to_collection": {"backdrop_path": "/3ahNzWAv20FlJ0i2wrrgKPOjQCT.jpg", "poster_path": "/woD0gFHbZgwi9RpLL0uSQ56hnJA.jpg", "id": 239766, "name": "The Klapisch Trilogy"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt1937118", "adult": false, "backdrop_path": "/7oLuhKfl8B9YbEIPWPpMmgY6jFD.jpg", "production_companies": [{"name": "Ce Qui Me Meut", "id": 21513}, {"name": "Opposite Field Pictures", "id": 21514}, {"name": "Compagnie Cin\u00e9matographique", "id": 21515}, {"name": "La Panache Productions", "id": 21516}], "release_date": "2013-12-04", "popularity": 0.25846008508001, "original_title": "Casse-T\u00eate Chinois", "budget": 0, "cast": [{"name": "Romain Duris", "character": "Xavier Rousseau", "id": 17497, "credit_id": "52fe4d1cc3a368484e1d7a7d", "cast_id": 5, "profile_path": "/buU0mFOX7PvSr50F6H8SrN71W08.jpg", "order": 0}, {"name": "Audrey Tautou", "character": "Martine", "id": 2405, "credit_id": "52fe4d1cc3a368484e1d7a71", "cast_id": 2, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 1}, {"name": "C\u00e9cile De France", "character": "Isabelle", "id": 17522, "credit_id": "52fe4d1cc3a368484e1d7a79", "cast_id": 4, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 2}, {"name": "Kelly Reilly", "character": "Wendy", "id": 17521, "credit_id": "52fe4d1cc3a368484e1d7a6d", "cast_id": 1, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 3}, {"name": "Sandrine Holt", "character": "Ju", "id": 65345, "credit_id": "52fe4d1cc3a368484e1d7a75", "cast_id": 3, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 4}, {"name": "Flore Bonaventura", "character": "Isabelle, la babysitter", "id": 1115898, "credit_id": "5378cb97c3a3685542003c90", "cast_id": 8, "profile_path": "/8XkyssGCiRL1SEmQLz7zqici715.jpg", "order": 5}, {"name": "Jochen H\u00e4gele", "character": "les philosophes allemands", "id": 1321013, "credit_id": "5378cbbcc3a3685554004054", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Beno\u00eet Jacquot", "character": "le p\u00e8re de Xavier", "id": 229263, "credit_id": "5378cbe1c3a3685531004033", "cast_id": 10, "profile_path": "/aj0DBZ2S5bJmImTM0OTKSerEOZJ.jpg", "order": 7}, {"name": "Martine Demaret", "character": "la m\u00e8re de Xavier", "id": 17527, "credit_id": "5378cbf4c3a3685525003e73", "cast_id": 11, "profile_path": "/duOIXKudnTBE12Nb4W9VpATlHAk.jpg", "order": 8}, {"name": "Dominique Besnehard", "character": "l'\u00e9diteur", "id": 21680, "credit_id": "5378cc05c3a368551e003ed7", "cast_id": 12, "profile_path": "/xh3UJRvzFdFfliMIBYvetL5olYZ.jpg", "order": 9}, {"name": "Zinedine Soualem", "character": "M. Boubaker", "id": 5445, "credit_id": "5378cc1ac3a3685525003e76", "cast_id": 13, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 10}, {"name": "Peter Hermann", "character": "John", "id": 50117, "credit_id": "5378cc29c3a368553a003ef8", "cast_id": 14, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 11}, {"name": "Jason Kravits", "character": "l'avocat new-yorkais de Xavier", "id": 19978, "credit_id": "5378cc3dc3a368553a003efa", "cast_id": 15, "profile_path": "/cVKEiEDx84xV2KiMKYZcNJLQDWX.jpg", "order": 12}, {"name": "Vanessa Guide", "character": "L'infirmi\u00e8re", "id": 932117, "credit_id": "5378cc4fc3a368552c003d7f", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Kyan Khojandi", "character": "Antoine Garceau", "id": 1321014, "credit_id": "5378cc72c3a3685525003e7d", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Li Jun Li", "character": "Nancy", "id": 1321015, "credit_id": "5378ccb7c3a368553a003f0a", "cast_id": 18, "profile_path": "/nyFzHkkY6dQwz5GiOnEYahx9ZGS.jpg", "order": 15}, {"name": "C\u00e9dric Klapisch", "character": "le photographe (cam\u00e9o)", "id": 17520, "credit_id": "5378cce2c3a3685525003e8f", "cast_id": 19, "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "order": 16}], "directors": [{"name": "C\u00e9dric Klapisch", "department": "Directing", "job": "Director", "credit_id": "52fe4d1cc3a368484e1d7a83", "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "id": 17520}], "vote_average": 6.3, "runtime": 117}, "116149": {"poster_path": "/hfjfjYsTBHgfogLWWiTm5OP7KpD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A young Peruvian bear with a passion for all things British travels to London in search of a home. Finding himself lost and alone at Paddington Station, he begins to realize that city life is not all he had imagined - until he meets the kindly Brown family, who read the label around his neck ('Please look after this bear. Thank you.') and offer him a temporary haven. It looks as though his luck has changed until this rarest of bears catches the eye of a museum taxidermist...", "video": false, "id": 116149, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Paddington", "tagline": "The Adventure Begins", "vote_count": 172, "homepage": "http://www.paddington.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1109624", "adult": false, "backdrop_path": "/zwMEMIo1j5TjP9oUG89aWCKDjYt.jpg", "production_companies": [{"name": "Heyday Films", "id": 7364}, {"name": "StudioCanal", "id": 694}, {"name": "Costa Rica Filming Locations", "id": 34139}, {"name": "DHX Media", "id": 7225}], "release_date": "2014-11-28", "popularity": 3.03653118024445, "original_title": "Paddington", "budget": 0, "cast": [{"name": "Nicole Kidman", "character": "Millicent", "id": 2227, "credit_id": "52fe4b85c3a36847f8207bfd", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Peter Capaldi", "character": "Mr. Curry", "id": 12982, "credit_id": "543e2550c3a3682500001afa", "cast_id": 18, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 1}, {"name": "Ben Whishaw", "character": "Paddington (voice)", "id": 17064, "credit_id": "543e2561c3a36825170019a3", "cast_id": 19, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 2}, {"name": "Michael Gambon", "character": "Uncle Pastuzo (voice)", "id": 5658, "credit_id": "543e2570c3a36825170019a6", "cast_id": 20, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 3}, {"name": "Imelda Staunton", "character": "Aunt Lucy (voice)", "id": 11356, "credit_id": "543e257bc3a368251300192a", "cast_id": 21, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 4}, {"name": "Sally Hawkins", "character": "Mrs. Mary Brown", "id": 39658, "credit_id": "52fe4b85c3a36847f8207bf5", "cast_id": 3, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 5}, {"name": "Julie Walters", "character": "Mrs. Bird", "id": 477, "credit_id": "52fe4b85c3a36847f8207c01", "cast_id": 6, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 6}, {"name": "Hugh Bonneville", "character": "Mr. Brown", "id": 19923, "credit_id": "52fe4b85c3a36847f8207bf9", "cast_id": 4, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 7}, {"name": "Jim Broadbent", "character": "Mr. Gruber", "id": 388, "credit_id": "52fe4b85c3a36847f8207c05", "cast_id": 7, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 8}, {"name": "Matt Lucas", "character": "Taxi Driver", "id": 26209, "credit_id": "543e25920e0a266f8b001950", "cast_id": 22, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 9}, {"name": "Matt King", "character": "Andre the Thief", "id": 23776, "credit_id": "543e259d0e0a266f8e001998", "cast_id": 23, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 10}, {"name": "Samuel Joslin", "character": "Jonathan Brown", "id": 1304662, "credit_id": "5331be02c3a3686a9d002016", "cast_id": 12, "profile_path": "/tJKi02sWEfNkPTQKIlQBBbHUyyg.jpg", "order": 11}, {"name": "Daniel Westwood", "character": "Servant", "id": 1371439, "credit_id": "543e25b8c3a36825040019ca", "cast_id": 26, "profile_path": "/yvblj5nqxW7QOTnDWEooKLyGfB3.jpg", "order": 13}, {"name": "Dominic Coleman", "character": "Policeman", "id": 1365437, "credit_id": "543e25c30e0a266f7a001ac0", "cast_id": 27, "profile_path": "/8rc1RuBPcpZvEFtZu2w82ny0Kv1.jpg", "order": 14}, {"name": "Simon Farnaby", "character": "Security Guard", "id": 114253, "credit_id": "54cc6fc6c3a3687f80000acc", "cast_id": 32, "profile_path": "/3u1ObLUvaTyEMmpWQnkRg5Trlng.jpg", "order": 15}, {"name": "Madeleine Harris", "character": "Judy Brown", "id": 1304661, "credit_id": "551cb567c3a3684a200015a4", "cast_id": 34, "profile_path": "/ojTiVLOXl9p63piioIfzqgh4Oy5.jpg", "order": 16}], "directors": [{"name": "Paul King", "department": "Directing", "job": "Director", "credit_id": "52fe4b85c3a36847f8207bed", "profile_path": null, "id": 101666}], "vote_average": 7.6, "runtime": 95}, "9654": {"poster_path": "/dmWki38vOAvesXMCxlMOV7hzF6K.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176070171, "overview": "After being betrayed and left for dead in Italy, Charlie Croker and his team plan an elaborate gold heist against their former ally.", "video": false, "id": 9654, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Italian Job", "tagline": "Get in. Get out. Get even.", "vote_count": 788, "homepage": "http://www.italianjobmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 43406, "name": "The Italian Job Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0317740", "adult": false, "backdrop_path": "/JyoJwSfcLvfLxCGHUQYlCxvU77.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Paramount Pictures", "id": 4}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2003-05-30", "popularity": 1.40775595391581, "original_title": "The Italian Job", "budget": 60000000, "cast": [{"name": "Mark Wahlberg", "character": "Charlie Croker", "id": 13240, "credit_id": "52fe4517c3a36847f80bbd3f", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Stella Bridger", "id": 6885, "credit_id": "52fe4517c3a36847f80bbd43", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Jason Statham", "character": "Handsome Rob", "id": 976, "credit_id": "52fe4517c3a36847f80bbd4b", "cast_id": 4, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Edward Norton", "character": "Steve", "id": 819, "credit_id": "52fe4517c3a36847f80bbd57", "cast_id": 7, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 3}, {"name": "Fausto Callegarini", "character": "Italian Guard", "id": 58347, "credit_id": "52fe4517c3a36847f80bbd5b", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Seth Green", "character": "Lyle", "id": 13922, "credit_id": "52fe4517c3a36847f80bbd4f", "cast_id": 5, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 5}, {"name": "Mos Def", "character": "Left Ear", "id": 4239, "credit_id": "52fe4517c3a36847f80bbd53", "cast_id": 6, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 6}, {"name": "Donald Sutherland", "character": "John Bridger", "id": 55636, "credit_id": "52fe4517c3a36847f80bbd47", "cast_id": 3, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 7}, {"name": "Stefano Petronelli", "character": "Garbageman", "id": 58348, "credit_id": "52fe4517c3a36847f80bbd5f", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Fabio Scarpa", "character": "Garbageman", "id": 58349, "credit_id": "52fe4517c3a36847f80bbd63", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Cristiano Bonora", "character": "Garbageman", "id": 58350, "credit_id": "52fe4517c3a36847f80bbd67", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Tiberio Greco", "character": "Garbageman", "id": 58351, "credit_id": "52fe4517c3a36847f80bbd6b", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Jimmy Shubert", "character": "First Detective", "id": 58352, "credit_id": "52fe4517c3a36847f80bbd6f", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Tammi Cubilette", "character": "Second Detective", "id": 58353, "credit_id": "52fe4517c3a36847f80bbd73", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Mary Portser", "character": "Stella's Receptionist", "id": 58354, "credit_id": "52fe4517c3a36847f80bbd77", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Boris Lee Krutonog", "character": "Yevhen (as Boris Krutonog)", "id": 237370, "credit_id": "52fe4517c3a36847f80bbdb7", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Franky G", "character": "Wrench", "id": 2682, "credit_id": "52fe4517c3a36847f80bbdbb", "cast_id": 32, "profile_path": "/2C6BTj03PQlbCIzb1zAv9gcMr5l.jpg", "order": 16}, {"name": "Olek Krupa", "character": "Mashkov", "id": 53573, "credit_id": "52fe4517c3a36847f80bbdbf", "cast_id": 33, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 17}, {"name": "Gawtti", "character": "Skinny Pete", "id": 237371, "credit_id": "52fe4517c3a36847f80bbdc3", "cast_id": 34, "profile_path": "/nJlg5yQNUsUYqK723XDRHJs6Hxc.jpg", "order": 18}, {"name": "Melanie Jayne", "character": "Skinny Pete's Girl", "id": 237372, "credit_id": "52fe4517c3a36847f80bbdc7", "cast_id": 35, "profile_path": "/xzmeWB4KIIRY9Gnk1WeJuJYi5IA.jpg", "order": 19}, {"name": "Gregory Scott Cummins", "character": "Ukranian", "id": 44178, "credit_id": "52fe4517c3a36847f80bbdcb", "cast_id": 36, "profile_path": "/jXJlgaYDCPK8lEyA1mC8mD2hjpG.jpg", "order": 20}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4517c3a36847f80bbd7d", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 6.5, "runtime": 111}, "9655": {"poster_path": "/o9f9IciYFTUilP20k4lrrJWPKsd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33889159, "overview": "When her brother decides to ditch for a couple weeks in London, Viola heads over to his elite boarding school, disguises herself as him, and proceeds to fall for one of her soccer teammates. Little does she realize she's not the only one with romantic troubles, as she, as he, gets in the middle of a series of intermingled love affairs.", "video": false, "id": 9655, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "She's the Man", "tagline": "If you wanna chase your dream, sometimes you gotta break the rules.", "vote_count": 146, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0454945", "adult": false, "backdrop_path": "/7ZXksQ9nVSOoPaV441v3n0Fft2b.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2006-03-17", "popularity": 1.11887413646237, "original_title": "She's the Man", "budget": 25000000, "cast": [{"name": "Amanda Bynes", "character": "Viola", "id": 29220, "credit_id": "52fe4517c3a36847f80bbe29", "cast_id": 1, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Duke", "id": 38673, "credit_id": "52fe4517c3a36847f80bbe2d", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Laura Ramsey", "character": "Olivia", "id": 51975, "credit_id": "52fe4517c3a36847f80bbe31", "cast_id": 3, "profile_path": "/4dRnDQ7FZu54ZtLXzWARGWvtStR.jpg", "order": 2}, {"name": "Vinnie Jones", "character": "Dinklage", "id": 980, "credit_id": "52fe4517c3a36847f80bbe35", "cast_id": 4, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 3}, {"name": "David Cross", "character": "Gold", "id": 212, "credit_id": "52fe4517c3a36847f80bbe39", "cast_id": 5, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Julie Hagerty", "character": "Daphne", "id": 14415, "credit_id": "52fe4517c3a36847f80bbe3d", "cast_id": 6, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 5}, {"name": "Robert Hoffman", "character": "Justin", "id": 58368, "credit_id": "52fe4517c3a36847f80bbe41", "cast_id": 7, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 6}, {"name": "Alexandra Breckenridge", "character": "Monique (as Alex Breckenridge)", "id": 58369, "credit_id": "52fe4517c3a36847f80bbe45", "cast_id": 8, "profile_path": "/iDOZg22I9QhVXZni8EpwjY7AqqR.jpg", "order": 7}, {"name": "Jonathan Sadowski", "character": "Paul", "id": 21047, "credit_id": "52fe4517c3a36847f80bbe49", "cast_id": 9, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 8}, {"name": "Amanda Crew", "character": "Kia", "id": 58370, "credit_id": "52fe4517c3a36847f80bbe4d", "cast_id": 10, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 9}, {"name": "Jessica Lucas", "character": "Yvonne", "id": 51989, "credit_id": "52fe4517c3a36847f80bbe51", "cast_id": 11, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 10}, {"name": "Brandon Jay McLaren", "character": "Toby", "id": 58371, "credit_id": "52fe4517c3a36847f80bbe55", "cast_id": 12, "profile_path": "/4E6tZJhsgkyI5VNrZCV91XP7o6o.jpg", "order": 11}, {"name": "Clifton MaCabe Murray", "character": "Andrew (as Clifton Murray)", "id": 58372, "credit_id": "52fe4517c3a36847f80bbe59", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "James Snyder", "character": "Malcolm", "id": 58373, "credit_id": "52fe4517c3a36847f80bbe5d", "cast_id": 14, "profile_path": "/oYb9DQ0NnFchC0ykKgrE5OnOzg5.jpg", "order": 13}, {"name": "James Kirk", "character": "Sebastian", "id": 58374, "credit_id": "52fe4517c3a36847f80bbe61", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe4517c3a36847f80bbe67", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 6.2, "runtime": 105}, "99770": {"poster_path": "/8IOjlMb93aj5H0UZxLNIQLWwpVl.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Asterix crosses the channel to help second-cousin Anticlimax face down Julius Caesar and invading Romans.", "video": false, "id": 99770, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ast\u00e9rix and Ob\u00e9lix: God Save Britannia", "tagline": "", "vote_count": 71, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vm0i4KIscrTiUsri21z1SOIG4fo.jpg", "poster_path": "/sC6NY40I794YnSNxgDDCnX4B3Se.jpg", "id": 2396, "name": "Asterix and Obelix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1597522", "adult": false, "backdrop_path": "/cvbqQyF4KIWQUViD2UwDCFe4hvq.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "M6 Films", "id": 1115}, {"name": "Morena Films", "id": 10031}, {"name": "Film Kair\u00f2s", "id": 13168}, {"name": "Fidelite Films", "id": 13169}, {"name": "Cinetotal", "id": 13170}], "release_date": "2012-10-17", "popularity": 0.720609314175502, "original_title": "Ast\u00e9rix & Ob\u00e9lix - Au service de Sa Majest\u00e9", "budget": 61000000, "cast": [{"name": "G\u00e9rard Depardieu", "character": "Ob\u00e9lix", "id": 16927, "credit_id": "52fe4a409251416c750e2c45", "cast_id": 5, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 0}, {"name": "\u00c9douard Baer", "character": "Ast\u00e9rix", "id": 41035, "credit_id": "52fe4a409251416c750e2c49", "cast_id": 6, "profile_path": "/bevNDP9RQU1b8UdZPElEw4f9fc9.jpg", "order": 1}, {"name": "Fabrice Luchini", "character": "Jules C\u00e9sar", "id": 28255, "credit_id": "52fe4a409251416c750e2c4d", "cast_id": 7, "profile_path": "/wtdwJeLGUBkXSm0ElDlsGTDZcJD.jpg", "order": 2}, {"name": "Catherine Deneuve", "character": "Cordelia la reine d'Angleterre", "id": 50, "credit_id": "52fe4a409251416c750e2c51", "cast_id": 8, "profile_path": "/5xkwq8GelCwOIVtyZ15LVA0UJGJ.jpg", "order": 3}, {"name": "Guillaume Gallienne", "character": "Jolitorax", "id": 6554, "credit_id": "52fe4a409251416c750e2c55", "cast_id": 9, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 4}, {"name": "Vincent Lacoste", "character": "Goudurix", "id": 83797, "credit_id": "52fe4a409251416c750e2c59", "cast_id": 10, "profile_path": "/ciAbPfdOO5GOl4i6uP52ebvEWGh.jpg", "order": 5}, {"name": "Val\u00e9rie Lemercier", "character": "Miss Macintosh", "id": 62531, "credit_id": "52fe4a409251416c750e2c5d", "cast_id": 11, "profile_path": "/hPUIFiIfMaQvpNmPvAVDxOQuZBS.jpg", "order": 6}, {"name": "Charlotte Le Bon", "character": "Oph\u00e9lia", "id": 1021684, "credit_id": "52fe4a409251416c750e2c61", "cast_id": 12, "profile_path": "/vozgdySw0fnS3ue6AFcTsfHRbYq.jpg", "order": 7}, {"name": "Jean Rochefort", "character": "Lucius Fouinus", "id": 24421, "credit_id": "52fe4a409251416c750e2c65", "cast_id": 13, "profile_path": "/egQw0mikF0oVfZo3kqUXbr622RC.jpg", "order": 8}], "directors": [{"name": "Laurent Tirard", "department": "Directing", "job": "Director", "credit_id": "52fe4a409251416c750e2c2f", "profile_path": null, "id": 64575}], "vote_average": 5.1, "runtime": 110}, "9659": {"poster_path": "/mfmJ0BftkGV5uRkVEsTWM39LRIt.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 100000000, "overview": "In a dystopic future Australia, a vicious biker gang murder a cop's family and make his fight with them personal.", "video": false, "id": 9659, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Mad Max", "tagline": "The Maximum Force Of The Future", "vote_count": 233, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rY4F8uRJN3IWsmtFrT7HO4WKUk0.jpg", "poster_path": "/uuvSvLb3ntGA9B0wx2JskVDSuWi.jpg", "id": 8945, "name": "Mad Max Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079501", "adult": false, "backdrop_path": "/yaps1kzbHVxTpCmuMgWm8zaTdnN.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}, {"name": "Crossroads", "id": 11962}, {"name": "Mad Max Films", "id": 8831}], "release_date": "1979-04-12", "popularity": 2.86647866232518, "original_title": "Mad Max", "budget": 400000, "cast": [{"name": "Mel Gibson", "character": "Mad Max Rockatansky", "id": 2461, "credit_id": "52fe4517c3a36847f80bc023", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Joanne Samuel", "character": "Jessie Rockatansky", "id": 58401, "credit_id": "52fe4517c3a36847f80bc027", "cast_id": 2, "profile_path": "/i7ujQmXVYOixGoufrw8eHydyLL4.jpg", "order": 1}, {"name": "Hugh Keays-Byrne", "character": "Toecutter", "id": 26060, "credit_id": "52fe4517c3a36847f80bc02b", "cast_id": 3, "profile_path": "/oxqu3hO79odBxoVs36p8R3qKQ3A.jpg", "order": 2}, {"name": "Steve Bisley", "character": "Jim Goose, Main Force Patrol Officer", "id": 45211, "credit_id": "52fe4517c3a36847f80bc02f", "cast_id": 4, "profile_path": "/xvGH1V1zAmbyI2aYWoeHIbu0dsU.jpg", "order": 3}, {"name": "Tim Burns", "character": "Johnny the Boy", "id": 1125220, "credit_id": "52fe4517c3a36847f80bc07b", "cast_id": 17, "profile_path": "/gH1IL9VzeFlcdY1CelAgnorp0YP.jpg", "order": 4}, {"name": "Lisa Aldenhoven", "character": "Nurse", "id": 1125222, "credit_id": "52fe4517c3a36847f80bc083", "cast_id": 19, "profile_path": "/3M8TwPn1JnwKHO6iVxSqQJf5Jya.jpg", "order": 6}, {"name": "David Bracks", "character": "Mudguts", "id": 1125223, "credit_id": "52fe4517c3a36847f80bc087", "cast_id": 20, "profile_path": "/sSkpywdUXlK12HRO6oDDztdeCTO.jpg", "order": 7}, {"name": "Bertrand Cadart", "character": "Clunk", "id": 1125224, "credit_id": "52fe4517c3a36847f80bc08b", "cast_id": 21, "profile_path": "/eU23f4xbkuXtA6WXdkXTrKxwQXu.jpg", "order": 8}, {"name": "David Cameron", "character": "Underground Mechanic", "id": 172747, "credit_id": "52fe4517c3a36847f80bc08f", "cast_id": 22, "profile_path": "/kb5sIVxI8HgdD5E7EFCCOvdA2XY.jpg", "order": 9}, {"name": "Robina Chaffey", "character": "Singer", "id": 1125225, "credit_id": "52fe4517c3a36847f80bc093", "cast_id": 23, "profile_path": "/hdrS3dKCyRhnYHqXtkQxFgHeLzv.jpg", "order": 10}, {"name": "Roger Ward", "character": "Fifi", "id": 94809, "credit_id": "5303caba92514161a23b7563", "cast_id": 24, "profile_path": "/2VdXCuxx58iQdeRSAt0R49Ej5if.jpg", "order": 11}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4517c3a36847f80bc035", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 6.5, "runtime": 88}, "50620": {"poster_path": "/kJQPygYB8aNEevZZHRifyYrAdU9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 829000000, "overview": "After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.", "video": false, "id": 50620, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: Breaking Dawn - Part 2", "tagline": "The epic finale that will live forever", "vote_count": 918, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1673434", "adult": false, "backdrop_path": "/hK8gap1Y2zAvFHcKuqe6og15c4b.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-11-16", "popularity": 1.4469053968446, "original_title": "The Twilight Saga: Breaking Dawn - Part 2", "budget": 120000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe47cec3a36847f814961f", "cast_id": 63, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe47cfc3a36847f8149623", "cast_id": 64, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe47cfc3a36847f8149627", "cast_id": 65, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe47cfc3a36847f814962b", "cast_id": 66, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 3}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe47cfc3a36847f814962f", "cast_id": 67, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 4}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe47cfc3a36847f8149633", "cast_id": 68, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 5}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe47cfc3a36847f8149637", "cast_id": 69, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 6}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe47cfc3a36847f814963b", "cast_id": 70, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 7}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe47cfc3a36847f814963f", "cast_id": 71, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 8}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe47cfc3a36847f8149643", "cast_id": 72, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 9}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe47cfc3a36847f8149647", "cast_id": 73, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 10}, {"name": "Jamie Campbell Bower", "character": "Caius", "id": 83356, "credit_id": "52fe47cfc3a36847f814964b", "cast_id": 74, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 11}, {"name": "Maggie Grace", "character": "Irina Denali", "id": 11825, "credit_id": "52fe47cfc3a36847f814964f", "cast_id": 75, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 12}, {"name": "Mackenzie Foy", "character": "Renesmee", "id": 851784, "credit_id": "52fe47cfc3a36847f8149653", "cast_id": 76, "profile_path": "/sC3yotsYEmqoxuaO2xnnqGee4U.jpg", "order": 13}, {"name": "Michael Sheen", "character": "Aro", "id": 3968, "credit_id": "52fe47cfc3a36847f8149657", "cast_id": 77, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 14}, {"name": "Cameron Bright", "character": "Alec", "id": 52414, "credit_id": "52fe47cfc3a36847f814965b", "cast_id": 78, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 15}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe47cfc3a36847f814965f", "cast_id": 79, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 16}, {"name": "MyAnna Buring", "character": "Tanya Denali", "id": 57578, "credit_id": "52fe47cfc3a36847f8149663", "cast_id": 80, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 17}, {"name": "Christopher Heyerdahl", "character": "Marcus", "id": 32887, "credit_id": "52fe47cfc3a36847f8149667", "cast_id": 81, "profile_path": "/imu1EK0I8J5xesKxLweLqqhKq8q.jpg", "order": 18}, {"name": "Julia Jones", "character": "Leah", "id": 87310, "credit_id": "52fe47cfc3a36847f814966b", "cast_id": 82, "profile_path": "/jw08w0ySlHa5qmQWaNp2FLFeAEq.jpg", "order": 19}, {"name": "Booboo Stewart", "character": "Seth", "id": 121868, "credit_id": "52fe47cfc3a36847f814966f", "cast_id": 83, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 20}, {"name": "Andrea Powell", "character": "Sasha", "id": 106949, "credit_id": "54e66c139251416f58000278", "cast_id": 85, "profile_path": "/62rV4dGQTW7G4wZcSsD6AoVul5L.jpg", "order": 21}, {"name": "Bill Tangradi", "character": "Randall", "id": 1212192, "credit_id": "54e66f59c3a3685af10002b2", "cast_id": 86, "profile_path": "/A60IOdfVN8IEOee0KCJask1YVkY.jpg", "order": 22}, {"name": "Christian Camargo", "character": "Eleazar", "id": 122029, "credit_id": "54e677f39251416f520002fb", "cast_id": 87, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 23}, {"name": "Daniel Cudmore", "character": "Felix", "id": 84222, "credit_id": "54e67d799251416f580003eb", "cast_id": 88, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 24}, {"name": "Guri Weinberg", "character": "Stefan", "id": 183820, "credit_id": "54e6805d9251416f4b0004d9", "cast_id": 89, "profile_path": "/q06nuANaAQpY7QpcobUUiEbS4ik.jpg", "order": 25}], "directors": [{"name": "Bill Condon", "department": "Directing", "job": "Director", "credit_id": "52fe47cec3a36847f81495c1", "profile_path": "/lMNARbVEd2VKcEZCBQwy1fPWWVG.jpg", "id": 15557}], "vote_average": 6.0, "runtime": 115}, "83389": {"poster_path": "/mVlosCi4Kckj1iXACJdpSrA9alR.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "The story is set in 1963 in Yokohama. Kokuriko Manor sits on a hill overlooking the harbour. A 16 year-old girl, Umi, lives in that house. Every morning she raises a signal flag facing the sea. The flag means \u201cI pray for safe voyages\u201d. A 17 year-old boy, Shun, always sees this flag from the sea as he rides a tugboat to school. Gradually the pair are drawn to each other but they are faced with a sudden trial. Even so, they keep going without running from facing the hardships of reality.", "video": false, "id": 83389, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "From Up on Poppy Hill", "tagline": "", "vote_count": 73, "homepage": "http://kokurikozaka.jp/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1798188", "adult": false, "backdrop_path": "/xQmK4M4sxAYry1WX4yP2yjWiEh0.jpg", "production_companies": [{"name": "Gkids", "id": 32853}, {"name": "Toho Company", "id": 882}, {"name": "Dentsu", "id": 6452}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "The Walt Disney Company", "id": 10079}, {"name": "Studio Ghibli", "id": 10342}, {"name": "The Yomiuri Shimbun", "id": 11726}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "KDDI Corporation", "id": 11848}, {"name": "Lawson", "id": 11849}], "release_date": "2011-07-16", "popularity": 0.898070369543735, "original_title": "Kokuriko-zaka kara", "budget": 0, "cast": [{"name": "Teruyuki Kagawa", "character": "Tokumaru rijich\u00f4", "id": 46691, "credit_id": "52fe489c9251416c91092797", "cast_id": 2, "profile_path": "/pCOQFnFHPDCtSuYmMT3Q24Yf0SE.jpg", "order": 0}, {"name": "Masami Nagasawa", "character": "Umi Matsuzaki", "id": 95767, "credit_id": "52fe489c9251416c9109279b", "cast_id": 3, "profile_path": "/4vb5KILK1Dex4aJ6qU5rmnpvzW6.jpg", "order": 1}, {"name": "Junichi Okada", "character": "Shun Kazama", "id": 119241, "credit_id": "52fe489c9251416c9109279f", "cast_id": 4, "profile_path": "/bFTZOkLduDdWrFi6bwsTLwAq4XS.jpg", "order": 2}, {"name": "Keiko Takeshita", "character": "Hana Matsuzaki", "id": 548758, "credit_id": "52fe489c9251416c910927eb", "cast_id": 17, "profile_path": null, "order": 3}, {"name": "Yuriko Ishida", "character": "Miki Hokuto", "id": 20330, "credit_id": "52fe489c9251416c910927ef", "cast_id": 18, "profile_path": "/w2EcOwlQ9q8cfW9RQBA2RkAFtHr.jpg", "order": 4}, {"name": "Rumi Hiiragi", "character": "Sachiko Hirok\u00f4ji", "id": 19587, "credit_id": "52fe489c9251416c910927f3", "cast_id": 19, "profile_path": "/gAjyBxRsQKYeZMkYQ6cmEj5DmHD.jpg", "order": 5}, {"name": "Jun Fubuki", "character": "Ryoko Matsuzaki", "id": 119244, "credit_id": "52fe489c9251416c910927f7", "cast_id": 20, "profile_path": "/cLHCn4FSHocEyyf7c6f2CeEg1jb.jpg", "order": 6}, {"name": "Takashi Nait\u00f4", "character": "Yoshio Onodera", "id": 19590, "credit_id": "52fe489c9251416c910927fb", "cast_id": 21, "profile_path": "/ljbNlt6v9a7E9uvnph2qAJ6ba55.jpg", "order": 7}, {"name": "Shunsuke Kazama", "character": "Shir\u00f4 Mizunuma", "id": 1124535, "credit_id": "52fe489d9251416c910927ff", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Haruka Shiraishi", "character": "Sora Matsuzaki", "id": 1124536, "credit_id": "52fe489d9251416c91092807", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Tsubasa Kobayashi", "character": "Riku Matsuzaki", "id": 1124537, "credit_id": "52fe489d9251416c9109280b", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Aoi Teshima", "character": "Yuko", "id": 119242, "credit_id": "52fe489d9251416c9109280f", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Goro Miyazaki", "character": "World History Teacher", "id": 1414, "credit_id": "52fe489d9251416c91092813", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Nao \u014cmori", "character": "Akio Kazama", "id": 58604, "credit_id": "54b0aefbc3a368094e0013bf", "cast_id": 28, "profile_path": "/diWmt4sCQSMeBcZg2sQXqb1d7kd.jpg", "order": 14}], "directors": [{"name": "Goro Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe489c9251416c91092793", "profile_path": null, "id": 1414}], "vote_average": 7.5, "runtime": 91}, "9664": {"poster_path": "/ssGw9nxlwZK0C5kn4pBhWGYn0SY.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17800000, "overview": "The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.", "video": false, "id": 9664, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Flyboys", "tagline": "Inspired by a true story", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0454824", "adult": false, "backdrop_path": "/iaCb2WSKEF4fMnInKfNnaKM2sCd.jpg", "production_companies": [{"name": "Flyboys Films", "id": 6362}, {"name": "Electric Entertainment", "id": 3241}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Skydance Productions", "id": 6277}], "release_date": "2006-09-22", "popularity": 0.282766857207177, "original_title": "Flyboys", "budget": 60000000, "cast": [{"name": "James Franco", "character": "Blaine Rawlings", "id": 17051, "credit_id": "52fe4518c3a36847f80bc227", "cast_id": 1, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Scott Hazell", "character": "Cinema Usher", "id": 58427, "credit_id": "52fe4518c3a36847f80bc22b", "cast_id": 2, "profile_path": "/1NK5aGqQmkcXBQ1nUhSY3RjPCEP.jpg", "order": 1}, {"name": "Mac McDonald", "character": "Sheriff Detweiller", "id": 33403, "credit_id": "52fe4518c3a36847f80bc22f", "cast_id": 3, "profile_path": "/cRKziKEi6eucP7EjV4t24Gyf7Ck.jpg", "order": 2}, {"name": "Philip Winchester", "character": "William Jensen", "id": 58428, "credit_id": "52fe4518c3a36847f80bc233", "cast_id": 4, "profile_path": "/7R2wdpa7dCpaXX5LNKR1NmaHWEZ.jpg", "order": 3}, {"name": "Todd Boyce", "character": "Mr. Jensen", "id": 17354, "credit_id": "52fe4518c3a36847f80bc237", "cast_id": 5, "profile_path": "/3uT1rplcxrKBmhi9vFQpB4Q6Qop.jpg", "order": 4}, {"name": "Karen Ford", "character": "Mrs. Jensen", "id": 58429, "credit_id": "52fe4518c3a36847f80bc23b", "cast_id": 6, "profile_path": "/odkCHzgWMvavkBOFBn9P7wzDl6f.jpg", "order": 5}, {"name": "Ruth Bradley", "character": "Laura", "id": 58430, "credit_id": "52fe4518c3a36847f80bc23f", "cast_id": 7, "profile_path": "/xY7pjK7u6Nn2vIPwIRoE3bq9AeC.jpg", "order": 6}, {"name": "Abdul Salis", "character": "Eugene Skinner", "id": 58431, "credit_id": "52fe4518c3a36847f80bc243", "cast_id": 8, "profile_path": "/oSkRDyeCtQoXSM5Omsdc3xNY2Z3.jpg", "order": 7}, {"name": "Tim Pigott-Smith", "character": "Mr. Lowry", "id": 11276, "credit_id": "52fe4518c3a36847f80bc247", "cast_id": 9, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 8}, {"name": "Tyler Labine", "character": "Briggs Lowry", "id": 51383, "credit_id": "52fe4518c3a36847f80bc24b", "cast_id": 10, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 9}, {"name": "Gail Downey", "character": "Mrs. Lowry", "id": 58432, "credit_id": "52fe4518c3a36847f80bc24f", "cast_id": 11, "profile_path": "/kYEiZdUonPcaqBsgxOoC2cyvOxz.jpg", "order": 10}, {"name": "David Ellison", "character": "Eddie Beagle", "id": 58433, "credit_id": "52fe4518c3a36847f80bc253", "cast_id": 12, "profile_path": "/yDQZvMAUxUwsxLGXpswKh8pD3iC.jpg", "order": 11}, {"name": "Augustin Legrand", "character": "L.T. Giroux", "id": 35083, "credit_id": "52fe4518c3a36847f80bc257", "cast_id": 13, "profile_path": "/dA9vkLOqkJHLuT9iPgc4kKmGpoB.jpg", "order": 12}, {"name": "Keith McErlean", "character": "Vernon Toddman", "id": 58435, "credit_id": "52fe4518c3a36847f80bc25b", "cast_id": 14, "profile_path": "/a6gvSOY4kSKdcfSuFF7BGB04liE.jpg", "order": 13}, {"name": "Jean Reno", "character": "Capt. Thenault", "id": 1003, "credit_id": "52fe4518c3a36847f80bc2b3", "cast_id": 29, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 14}, {"name": "Jennifer Decker", "character": "Lucienne", "id": 56649, "credit_id": "52fe4518c3a36847f80bc2b7", "cast_id": 30, "profile_path": "/dZ6q5fClnAGgFmFB7YV2feRCnGt.jpg", "order": 15}], "directors": [{"name": "Tony Bill", "department": "Directing", "job": "Director", "credit_id": "52fe4518c3a36847f80bc261", "profile_path": "/qq82esVEICuIlW0BOTirLfK4Zmv.jpg", "id": 57138}], "vote_average": 6.0, "runtime": 140}, "9665": {"poster_path": "/6pDBbYmR9iqg3IF8lgyY9pWFiqT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26828365, "overview": "Robert Gould Shaw leads the US Civil War's first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.", "video": false, "id": 9665, "genres": [{"id": 10752, "name": "War"}], "title": "Glory", "tagline": "Their innocence. Their heritage. Their lives.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097441", "adult": false, "backdrop_path": "/1Ez8jxcOkkRn1lrmHeK4PZ9SZMi.jpg", "production_companies": [{"name": "Freddie Fields Productions", "id": 27349}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1989-12-15", "popularity": 1.01559911479881, "original_title": "Glory", "budget": 18000000, "cast": [{"name": "Matthew Broderick", "character": "Col. Robert Gould Shaw", "id": 4756, "credit_id": "52fe4518c3a36847f80bc2d3", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Pvt. Trip", "id": 5292, "credit_id": "52fe4518c3a36847f80bc2d7", "cast_id": 2, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Maj. Cabot Forbes", "id": 2130, "credit_id": "52fe4518c3a36847f80bc2db", "cast_id": 3, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "Sgt. Maj. John Rawlins", "id": 192, "credit_id": "52fe4518c3a36847f80bc2df", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Jihmi Kennedy", "character": "Pvt. Jupiter Sharts", "id": 58426, "credit_id": "52fe4518c3a36847f80bc2e3", "cast_id": 5, "profile_path": "/9WMk7ArsJaxqCaLZF5CDuR37lUI.jpg", "order": 4}, {"name": "Andre Braugher", "character": "Cpl. Thomas Searles", "id": 6861, "credit_id": "53c249580e0a26157f00aeb6", "cast_id": 15, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 5}, {"name": "John Finn", "character": "Sgt. Maj. Mulcahy", "id": 9277, "credit_id": "53c249770e0a26157900aa64", "cast_id": 16, "profile_path": "/18k2kiasthWKgu4qUGF02fWsi7m.jpg", "order": 6}, {"name": "Donovan Leitch, Jr.", "character": "Capt. Charles Fessenden Morse", "id": 58141, "credit_id": "53c2498e0e0a26158900acff", "cast_id": 17, "profile_path": "/zOjh9mjzFmNi3oYJLrSZMDfg9LD.jpg", "order": 7}, {"name": "JD Cullum", "character": "Henry Sturgis Russell", "id": 1184011, "credit_id": "53c249a30e0a26157c00a92b", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Bob Gunton", "character": "Gen. Charles Garrison Harker", "id": 4029, "credit_id": "53c249ca0e0a26157c00a931", "cast_id": 20, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 10}, {"name": "Cliff De Young", "character": "Col. James M. Montgomery", "id": 1272612, "credit_id": "53c249dd0e0a26158500aa1c", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Christian Baskous", "character": "Edward L. Pierce", "id": 1340960, "credit_id": "53c249f00e0a26157600ae9e", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "RonReaco Lee", "character": "Mute Drummer Boy", "id": 84209, "credit_id": "53c24a020e0a26158f00a664", "cast_id": 23, "profile_path": "/2H3vS0LwkhpjxKngTW8pnpAa6OP.jpg", "order": 13}, {"name": "Jay O. Sanders", "character": "Gen. George Crockett Strong", "id": 6067, "credit_id": "53c24a130e0a26157f00aec3", "cast_id": 24, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 14}, {"name": "Alan North", "character": "Gov. John Albion Andrew", "id": 53584, "credit_id": "54ff80f09251413d96000592", "cast_id": 25, "profile_path": "/q79hT4OeYOYzH2WIfqS6VsCmKzg.jpg", "order": 15}, {"name": "Richard Riehle", "character": "Quartermaster", "id": 18262, "credit_id": "5538b7209251412d91004f44", "cast_id": 62, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 16}, {"name": "Peter Michael Goetz", "character": "Francis George Shaw", "id": 20906, "credit_id": "5538b747c3a3684c5b0025cf", "cast_id": 63, "profile_path": "/a2hLcCidETgwlVyQnYy4kXVKUcn.jpg", "order": 17}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe4518c3a36847f80bc2e9", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.9, "runtime": 122}, "91586": {"poster_path": "/qjzk0pig5c7aTLlvKzcegD9PXA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.", "video": false, "id": 91586, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Insidious: Chapter 2", "tagline": "It will take what you love most.", "vote_count": 283, "homepage": "http://www.insidiousch2.com/", "belongs_to_collection": {"backdrop_path": "/bA8UpUuAbET2RMQE96xT7eBPF4Q.jpg", "poster_path": "/fct5wsWu6niDIGRIC4aWEsN5Npa.jpg", "id": 228446, "name": "Insidious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2226417", "adult": false, "backdrop_path": "/59baGxEztxeXW1oFjs8EBgXxTXk.jpg", "production_companies": [{"name": "FilmDistrict", "id": 7263}, {"name": "Sony Pictures", "id": 34}], "release_date": "2013-09-13", "popularity": 1.39007724820276, "original_title": "Insidious: Chapter 2", "budget": 5000000, "cast": [{"name": "Patrick Wilson", "character": "Josh Lambert", "id": 17178, "credit_id": "52fe48dc9251416c750b5935", "cast_id": 3, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Renai Lambert", "id": 9827, "credit_id": "52fe48dc9251416c750b5931", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Ty Simpkins", "character": "Dalton Lambert", "id": 17181, "credit_id": "52fe48dc9251416c750b593d", "cast_id": 5, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 2}, {"name": "Lin Shaye", "character": "Elise Rainier", "id": 7401, "credit_id": "52fe48dc9251416c750b5939", "cast_id": 4, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 3}, {"name": "Barbara Hershey", "character": "Lorraine Lambert", "id": 10767, "credit_id": "52fe48dc9251416c750b5947", "cast_id": 7, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 4}, {"name": "Steve Coulter", "character": "Carl", "id": 80619, "credit_id": "52fe48dc9251416c750b594b", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Leigh Whannell", "character": "Specs", "id": 2128, "credit_id": "52fe48dc9251416c750b594f", "cast_id": 9, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 6}, {"name": "Angus Sampson", "character": "Tucker", "id": 59117, "credit_id": "52fe48dc9251416c750b5953", "cast_id": 10, "profile_path": "/jbUAdNqytgyuPPpEBvM4onQWt3Q.jpg", "order": 7}, {"name": "Andrew Astor", "character": "Foster Lambert", "id": 208524, "credit_id": "52fe48dc9251416c750b5957", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Hank Harris", "character": "Young Carl", "id": 58739, "credit_id": "52fe48dc9251416c750b595b", "cast_id": 12, "profile_path": "/yhMYapvXHZQYXVdeBjeo4jaRN48.jpg", "order": 9}, {"name": "Jocelin Donahue", "character": "Young Lorraine", "id": 78804, "credit_id": "52fe48dc9251416c750b595f", "cast_id": 13, "profile_path": "/4ZMizKgqB8aXhiEvrklHYRpmilW.jpg", "order": 10}, {"name": "Lindsay Seim", "character": "Young Elise Rainier", "id": 1153842, "credit_id": "52fe48dc9251416c750b5963", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Danielle Bisutti", "character": "Mother of Parker Crane", "id": 154839, "credit_id": "52fe48dc9251416c750b5967", "cast_id": 15, "profile_path": "/PmZmuwEYgqZmETwR8rwpe4gVXK.jpg", "order": 12}, {"name": "Tyler Griffin", "character": "Young Parker", "id": 1223444, "credit_id": "52fe48dc9251416c750b596b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Garrett Ryan", "character": "Young Josh", "id": 206505, "credit_id": "52fe48dc9251416c750b596f", "cast_id": 17, "profile_path": "/kjwH7BG5iTO5e6W6kyzgCUC6AUr.jpg", "order": 14}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe48dc9251416c750b592d", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.8, "runtime": 106}, "9667": {"poster_path": "/ts5hSSpgHEcPFpdfk6gmLLgx5k4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21126225, "overview": "A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.", "video": false, "id": 9667, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Jacket", "tagline": "Terror has a new name.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0366627", "adult": false, "backdrop_path": "/A5JvupvtIUDic9tZGyo9iSR1gNW.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Section Eight", "id": 129}, {"name": "Mandalay Pictures", "id": 551}, {"name": "VIP 3 Medienfonds", "id": 827}, {"name": "2929 Productions", "id": 846}, {"name": "Rising Star", "id": 1208}, {"name": "VIP 2 Medienfonds", "id": 3801}], "release_date": "2005-03-04", "popularity": 0.572983072623517, "original_title": "The Jacket", "budget": 29000000, "cast": [{"name": "Adrien Brody", "character": "Jack Starks", "id": 3490, "credit_id": "52fe4518c3a36847f80bc3a3", "cast_id": 4, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Jackie Price", "id": 116, "credit_id": "52fe4518c3a36847f80bc3a7", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Kris Kristofferson", "character": "Dr. Thomas Becker", "id": 10823, "credit_id": "52fe4518c3a36847f80bc3ab", "cast_id": 6, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 2}, {"name": "Jennifer Jason Leigh", "character": "Dr. Beth Lorenson", "id": 10431, "credit_id": "52fe4518c3a36847f80bc3af", "cast_id": 7, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 3}, {"name": "Kelly Lynch", "character": "Jean Price", "id": 6473, "credit_id": "52fe4518c3a36847f80bc3b3", "cast_id": 8, "profile_path": "/20OsGbyUux00wkeL7BFfYnaXwlo.jpg", "order": 4}, {"name": "Brad Renfro", "character": "The Stranger", "id": 51214, "credit_id": "52fe4518c3a36847f80bc3b7", "cast_id": 9, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 5}, {"name": "Daniel Craig", "character": "Rudy Mackenzie", "id": 8784, "credit_id": "52fe4518c3a36847f80bc3bb", "cast_id": 10, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 6}, {"name": "Angel Coulby", "character": "Intern #2", "id": 289370, "credit_id": "52fe4519c3a36847f80bc419", "cast_id": 27, "profile_path": "/qbF4xhP2IbxsiibTHJ2AtrzDPDB.jpg", "order": 7}, {"name": "Steven Mackintosh", "character": "Dr. Hopkins", "id": 978, "credit_id": "52fe4519c3a36847f80bc41d", "cast_id": 28, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 8}, {"name": "Brendan Coyle", "character": "Damon", "id": 74056, "credit_id": "52fe4519c3a36847f80bc421", "cast_id": 29, "profile_path": "/oJm8VYhuYk05rDU1XdDBXBqWka6.jpg", "order": 9}, {"name": "Mackenzie Phillips", "character": "Nurse Harding", "id": 12408, "credit_id": "52fe4519c3a36847f80bc425", "cast_id": 30, "profile_path": "/4FiO7ffdDFWOQuv4MC0NalGSBMD.jpg", "order": 10}, {"name": "Laura Marano", "character": "Young Jackie", "id": 54722, "credit_id": "52fe4519c3a36847f80bc429", "cast_id": 31, "profile_path": "/bP5xvXStD7JFScGZx959FLPmD9S.jpg", "order": 11}, {"name": "Jason Lewis", "character": "Officer Harrison", "id": 32224, "credit_id": "52fe4519c3a36847f80bc42d", "cast_id": 32, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 12}, {"name": "Richard Dillane", "character": "Captain Medley", "id": 176227, "credit_id": "52fe4519c3a36847f80bc431", "cast_id": 33, "profile_path": "/t40mFDjVQoOLLLzqSy41GNmpBSn.jpg", "order": 13}, {"name": "Jonah Lotan", "character": "Intern #1", "id": 181043, "credit_id": "52fe4519c3a36847f80bc435", "cast_id": 34, "profile_path": "/lmtNhavoWRd60aKHMFqsqvR7fCm.jpg", "order": 14}], "directors": [{"name": "John Maybury", "department": "Directing", "job": "Director", "credit_id": "52fe4518c3a36847f80bc393", "profile_path": null, "id": 40307}], "vote_average": 6.5, "runtime": 103}, "9671": {"poster_path": "/uQyFHP0BBQcOVAbfpmiTnj5rKDm.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 174803506, "overview": "When a New York reporter plucks crocodile hunter Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as na\u00efve Dundee negotiates the concrete jungle. Dundee proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.", "video": false, "id": 9671, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Crocodile Dundee", "tagline": "There's a little of him in all of us.", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pI2EqYQCzCRnrpiFHl8rrGp1qW9.jpg", "poster_path": "/byOilboEpWHFiQ7klAZ4LZ6NN0t.jpg", "id": 9332, "name": "Crocodile Dundee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090555", "adult": false, "backdrop_path": "/4yptKoORGkkywMz82b6No2AGvzh.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rimfire Films", "id": 15081}], "release_date": "1986-09-26", "popularity": 0.437314741997996, "original_title": "Crocodile Dundee", "budget": 5000000, "cast": [{"name": "Paul Hogan", "character": "Michael J. 'Crocodile' Dundee", "id": 57147, "credit_id": "52fe4519c3a36847f80bc4eb", "cast_id": 1, "profile_path": "/hNR9JKnEsEKgzKcSBcqtHCkDynQ.jpg", "order": 0}, {"name": "Linda Kozlowski", "character": "Sue Charlton", "id": 57166, "credit_id": "52fe4519c3a36847f80bc4ef", "cast_id": 2, "profile_path": "/9qgl8JSTVOLtVVPshXclSGxiP57.jpg", "order": 1}, {"name": "John Meillon", "character": "Walter Reilly", "id": 42841, "credit_id": "52fe4519c3a36847f80bc4f3", "cast_id": 3, "profile_path": "/dKsqaE8GZ2YjdFREpe17QVVnsGJ.jpg", "order": 2}, {"name": "David Gulpilil", "character": "Neville Bell", "id": 53023, "credit_id": "52fe4519c3a36847f80bc4f7", "cast_id": 4, "profile_path": "/pns5wVD4GNEPo0FwtZHrjGX6j5n.jpg", "order": 3}, {"name": "Michael Lombard", "character": "Sam Charlton", "id": 13938, "credit_id": "52fe4519c3a36847f80bc531", "cast_id": 14, "profile_path": "/3VeGqcvQzJF9Xrl6eXOCoDosS28.jpg", "order": 4}, {"name": "Ritchie Singer", "character": "Con", "id": 1040112, "credit_id": "52fe4519c3a36847f80bc535", "cast_id": 15, "profile_path": "/vLlS5rNEiEPOSuZaxAIex8Y53K6.jpg", "order": 5}, {"name": "Mark Blum", "character": "Richard Mason", "id": 14103, "credit_id": "52fe4519c3a36847f80bc539", "cast_id": 16, "profile_path": "/mXRMbyyUtZ0JBs8aagC5Gn3omnE.jpg", "order": 6}, {"name": "Reginald VelJohnson", "character": "Gus", "id": 7672, "credit_id": "52fe4519c3a36847f80bc53d", "cast_id": 17, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 7}, {"name": "Rik Colitti", "character": "Danny", "id": 164669, "credit_id": "52fe4519c3a36847f80bc541", "cast_id": 18, "profile_path": "/xlOPGilV7vOaT2wxmRyoasTSw5o.jpg", "order": 8}, {"name": "John Snyder", "character": "Pimp", "id": 152408, "credit_id": "52fe4519c3a36847f80bc545", "cast_id": 19, "profile_path": "/aZQoXztNm5C6Rz0ZjIdjV0vHKdO.jpg", "order": 9}], "directors": [{"name": "Peter Faiman", "department": "Directing", "job": "Director", "credit_id": "52fe4519c3a36847f80bc4fd", "profile_path": "/cgTTWI6wtPRETIfeENLdh3hqDUu.jpg", "id": 58453}], "vote_average": 6.4, "runtime": 97}, "9675": {"poster_path": "/xg9EXz9SPJMxnnIMC4f9r8m5izr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109502303, "overview": "Two middle-aged men embark on a spiritual journey through Californian wine country. One of them an unpublished novelist suffering from depression, the other only days away from walking down the aisle. Both meet two beautiful women on their trip and become romantically involved with them.", "video": false, "id": 9675, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sideways", "tagline": "In search of wine. In search of women. In search of themselves.", "vote_count": 128, "homepage": "http://www.foxsearchlight.com/sideways/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hy", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375063", "adult": false, "backdrop_path": "/ow0sx3Sk2BvbtpYMXwAQRNMdIMW.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Michael London Productions", "id": 1187}, {"name": "Sideways Productions Inc.", "id": 12157}], "release_date": "2004-10-22", "popularity": 0.419555589359559, "original_title": "Sideways", "budget": 16000000, "cast": [{"name": "Paul Giamatti", "character": "Miles", "id": 13242, "credit_id": "52fe4519c3a36847f80bc6f9", "cast_id": 1, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 0}, {"name": "Thomas Haden Church", "character": "Jack", "id": 19159, "credit_id": "52fe4519c3a36847f80bc6fd", "cast_id": 2, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 1}, {"name": "Virginia Madsen", "character": "Maya", "id": 12519, "credit_id": "52fe4519c3a36847f80bc701", "cast_id": 3, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 2}, {"name": "Sandra Oh", "character": "Stephanie", "id": 25540, "credit_id": "52fe4519c3a36847f80bc705", "cast_id": 4, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 3}, {"name": "Marylouise Burke", "character": "Miles's Mother", "id": 57823, "credit_id": "52fe4519c3a36847f80bc74b", "cast_id": 16, "profile_path": "/uB5NPE9iXjWsJ119h6ave0UytAm.jpg", "order": 4}, {"name": "Jessica Hecht", "character": "Victoria", "id": 14984, "credit_id": "52fe4519c3a36847f80bc74f", "cast_id": 17, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 5}, {"name": "Missy Doty", "character": "Cammi", "id": 162342, "credit_id": "52fe4519c3a36847f80bc753", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Alysia Reiner", "character": "Christine Erganian", "id": 109740, "credit_id": "52fe4519c3a36847f80bc757", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Shake Tukhmanyan", "character": "Mrs. Erganian", "id": 1127469, "credit_id": "52fe4519c3a36847f80bc75b", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Shaun Duke", "character": "Mike Erganian", "id": 177131, "credit_id": "52fe4519c3a36847f80bc75f", "cast_id": 22, "profile_path": "/4gkGAqQF6ZGvM9hcFZpXaWzKyzl.jpg", "order": 9}, {"name": "Robert Covarrubias", "character": "Miles's Building Manager", "id": 83781, "credit_id": "52fe4519c3a36847f80bc763", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Patrick Gallagher", "character": "Gary the Bartender", "id": 17837, "credit_id": "52fe4519c3a36847f80bc767", "cast_id": 24, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 11}, {"name": "Stephanie Faracy", "character": "Stephanie's Mother", "id": 14105, "credit_id": "52fe4519c3a36847f80bc76b", "cast_id": 25, "profile_path": "/tA4zlFK1ke8U15TxPMZeKdblB8P.jpg", "order": 12}, {"name": "Joe Marinelli", "character": "Frass Canyon Pourer", "id": 12545, "credit_id": "52fe4519c3a36847f80bc76f", "cast_id": 26, "profile_path": "/rgBVeTC6gvhPlQK6D3H0hcj41OH.jpg", "order": 13}, {"name": "M.C. Gainey", "character": "Cammi's Husband", "id": 22132, "credit_id": "52fe4519c3a36847f80bc773", "cast_id": 27, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 14}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe4519c3a36847f80bc70b", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 6.7, "runtime": 126}, "9676": {"poster_path": "/lrYfbCSEFdLfqTI9sZk17KNIUIF.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49111202, "overview": "Lee Blanchard (Aaron Eckhart) and Bucky Bleichert (Josh Hartnett) are former boxers-turned-cops in 1940's Los Angeles. When aspiring young actress Elizabeth Short (Mia Kirshner) turns up dead, Blanchard and Bleichert must grapple with corruption, narcissism, stag films, and family madness as they pursue the killer.", "video": false, "id": 9676, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Black Dahlia", "tagline": "Inspired by the most notorious unsolved murder in California history.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387877", "adult": false, "backdrop_path": "/uCZGYtg0f4uvxOXoHBE5Uvj6Qbn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Millennium Films", "id": 10254}, {"name": "Signature Pictures", "id": 2982}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG III", "id": 10885}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "Art Linson Productions", "id": 8769}, {"name": "Davis-Films", "id": 342}], "release_date": "2006-09-15", "popularity": 0.320907398527537, "original_title": "The Black Dahlia", "budget": 50000000, "cast": [{"name": "Josh Hartnett", "character": "Dwight 'Bucky' Bleichert", "id": 2299, "credit_id": "52fe4519c3a36847f80bc7b1", "cast_id": 1, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Kay Lake", "id": 1245, "credit_id": "52fe4519c3a36847f80bc7b5", "cast_id": 2, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "Lee Blanchard", "id": 6383, "credit_id": "52fe4519c3a36847f80bc7b9", "cast_id": 3, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Hilary Swank", "character": "Madeleine Linscott", "id": 448, "credit_id": "52fe4519c3a36847f80bc7bd", "cast_id": 4, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 3}, {"name": "Mia Kirshner", "character": "Elizabeth Short", "id": 18658, "credit_id": "52fe4519c3a36847f80bc7c1", "cast_id": 5, "profile_path": "/pgQw5mlHRwWKBwLMdMj2jqiwK5D.jpg", "order": 4}, {"name": "Mike Starr", "character": "Det. Russ Millard", "id": 5170, "credit_id": "52fe4519c3a36847f80bc7c5", "cast_id": 6, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 5}, {"name": "Fiona Shaw", "character": "Ramona Linscott", "id": 10981, "credit_id": "52fe4519c3a36847f80bc7c9", "cast_id": 7, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 6}, {"name": "Patrick Fischler", "character": "Deputy DA Ellis Loew", "id": 52801, "credit_id": "52fe4519c3a36847f80bc7cd", "cast_id": 8, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 7}, {"name": "James Otis", "character": "Dolph Bleichert", "id": 58473, "credit_id": "52fe4519c3a36847f80bc7d1", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "John Kavanagh", "character": "Emmett Linscott", "id": 20282, "credit_id": "52fe4519c3a36847f80bc7d5", "cast_id": 10, "profile_path": "/3ElWQEcnhi3lgYtbWPVV9EfExdw.jpg", "order": 9}, {"name": "Troy Evans", "character": "Chief Ted Green", "id": 31006, "credit_id": "52fe4519c3a36847f80bc7d9", "cast_id": 11, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 10}, {"name": "Anthony Russell", "character": "Morrie Friedman", "id": 58474, "credit_id": "52fe4519c3a36847f80bc7dd", "cast_id": 12, "profile_path": "/pEDgSXNYJpqkKFxjUywDYn7pKBE.jpg", "order": 11}, {"name": "Pepe Serna", "character": "Tomas Dos Santos", "id": 1169, "credit_id": "52fe4519c3a36847f80bc7e1", "cast_id": 13, "profile_path": "/geQdZHiHobopH86AKxCRVIn5kga.jpg", "order": 12}, {"name": "Angus MacInnes", "character": "Capt. John Tierney (as Angus MacInnis)", "id": 58475, "credit_id": "52fe4519c3a36847f80bc7e5", "cast_id": 14, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 13}, {"name": "Rachel Miner", "character": "Martha Linscott", "id": 54126, "credit_id": "52fe4519c3a36847f80bc7e9", "cast_id": 15, "profile_path": "/j5BnD83LvDyQwJNzU4EOzv8sluk.jpg", "order": 14}, {"name": "Jemima Rooper", "character": "Lorna Mertz", "id": 62932, "credit_id": "52fe451ac3a36847f80bc835", "cast_id": 30, "profile_path": "/2R1635Z7ezTXcbhEsCF39oteidZ.jpg", "order": 15}, {"name": "Gregg Henry", "character": "Pete Lukins", "id": 2518, "credit_id": "54178074c3a36819a400041b", "cast_id": 31, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 16}, {"name": "Rose McGowan", "character": "Sheryl Saddon", "id": 16850, "credit_id": "541780830e0a2637fd000419", "cast_id": 32, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 17}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4519c3a36847f80bc7ef", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 6.0, "runtime": 121}, "2978": {"poster_path": "/4nN0EYNbOWHJ9UO39maO5Kvcdfa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215394738, "overview": "Five years after they defeated Zuul, the Ghostbusters are out of business. When Dana begins to have ghost problems again, the boys come out of retirement to aid her and hopefully save New York City from a new paranormal threat.", "video": false, "id": 2978, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Ghostbusters II", "tagline": "We're back!", "vote_count": 237, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6Jnlhr2ac8OuDJEowsFLzZY3SXd.jpg", "poster_path": "/vy4CA3MMzyolwur7Xd9CQ0BvSMX.jpg", "id": 2980, "name": "Ghostbusters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097428", "adult": false, "backdrop_path": "/cLYUfMXctGLKMc4sLTP0Wvus4bn.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1989-06-15", "popularity": 1.02064407244852, "original_title": "Ghostbusters II", "budget": 37000000, "cast": [{"name": "Bill Murray", "character": "Dr. Peter Venkman", "id": 1532, "credit_id": "52fe4378c3a36847f8056a43", "cast_id": 5, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Dr. Raymond Stantz", "id": 707, "credit_id": "52fe4378c3a36847f8056a47", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Dana Barrett", "id": 10205, "credit_id": "52fe4378c3a36847f8056a4b", "cast_id": 7, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Harold Ramis", "character": "Dr. Egon Spengler", "id": 1524, "credit_id": "52fe4378c3a36847f8056a4f", "cast_id": 8, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 3}, {"name": "Rick Moranis", "character": "Louis Tully", "id": 8872, "credit_id": "52fe4378c3a36847f8056a77", "cast_id": 15, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 4}, {"name": "Ernie Hudson", "character": "Winston Zeddemore", "id": 8874, "credit_id": "52fe4378c3a36847f8056a7b", "cast_id": 16, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 5}, {"name": "Annie Potts", "character": "Janine Melnitz", "id": 8873, "credit_id": "52fe4378c3a36847f8056a7f", "cast_id": 17, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 6}, {"name": "Peter MacNicol", "character": "Dr. Janosz Poha", "id": 12688, "credit_id": "52fe4378c3a36847f8056a83", "cast_id": 18, "profile_path": "/ekL1Ko8DLp0ketkwRPr4DoDBfq4.jpg", "order": 7}, {"name": "Harris Yulin", "character": "Judge Wexler", "id": 1166, "credit_id": "52fe4378c3a36847f8056a87", "cast_id": 19, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 8}, {"name": "David Margulies", "character": "Mayor Lenny", "id": 8875, "credit_id": "52fe4378c3a36847f8056a8b", "cast_id": 20, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 9}, {"name": "Kurt Fuller", "character": "Jack Hardemeyer", "id": 29685, "credit_id": "52fe4378c3a36847f8056a8f", "cast_id": 21, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 10}, {"name": "Janet Margolin", "character": "The Prosecutor", "id": 10558, "credit_id": "52fe4378c3a36847f8056a93", "cast_id": 22, "profile_path": "/ugN7WTDQxJQvy5795n2GHn3NgfT.jpg", "order": 11}, {"name": "Wilhelm von Homburg", "character": "Vigo", "id": 27585, "credit_id": "52fe4378c3a36847f8056a97", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Mary Ellen Trainor", "character": "Brownstone Mother", "id": 23967, "credit_id": "52fe4378c3a36847f8056a9b", "cast_id": 24, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 13}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4378c3a36847f8056a2d", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.1, "runtime": 108}, "9678": {"poster_path": "/ijfKqbZoZQjer5Oiolxy7hn8L92.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the lord of darkness decides he will not cede his thrown to any of his three sons, the two most powerful of them escape to Earth to create a kingdom for themselves. This action closes the portal filtering sinful souls to Hell and causes Satan to wither away. He must send his most weak but beloved son, Little Nicky, to Earth to return his brothers to Hell.", "video": false, "id": 9678, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Little Nicky", "tagline": "He's Never Been To Earth. He's Never Even Slept Over Some Other Dude's House.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0185431", "adult": false, "backdrop_path": "/1I8jDOv9hefU0pS4q9ANgnIe9ri.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Avery Pix", "id": 1565}, {"name": "New Line Cinema", "id": 12}], "release_date": "2000-11-10", "popularity": 0.758216765398484, "original_title": "Little Nicky", "budget": 85000000, "cast": [{"name": "Adam Sandler", "character": "Nicky", "id": 19292, "credit_id": "52fe451ac3a36847f80bc8bf", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Valerie Veran", "id": 4687, "credit_id": "52fe451ac3a36847f80bc8c3", "cast_id": 2, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Dad", "id": 1037, "credit_id": "52fe451ac3a36847f80bc8c7", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Rhys Ifans", "character": "Adrian", "id": 7026, "credit_id": "52fe451ac3a36847f80bc8cb", "cast_id": 4, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 3}, {"name": "Tommy Lister", "character": "Cassius", "id": 8396, "credit_id": "52fe451ac3a36847f80bc8cf", "cast_id": 5, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 4}, {"name": "Rodney Dangerfield", "character": "Lucifer", "id": 3198, "credit_id": "52fe451ac3a36847f80bc8d3", "cast_id": 6, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 5}, {"name": "Allen Covert", "character": "Todd", "id": 20818, "credit_id": "52fe451ac3a36847f80bc8d7", "cast_id": 7, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 6}, {"name": "Peter Dante", "character": "Peter", "id": 20819, "credit_id": "52fe451ac3a36847f80bc8db", "cast_id": 8, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 7}, {"name": "Jonathan Loughran", "character": "John", "id": 58477, "credit_id": "52fe451ac3a36847f80bc8df", "cast_id": 9, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 8}, {"name": "Robert Smigel", "character": "Beefy", "id": 53684, "credit_id": "52fe451ac3a36847f80bc8e3", "cast_id": 10, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 9}, {"name": "Reese Witherspoon", "character": "Holly", "id": 368, "credit_id": "52fe451ac3a36847f80bc8e7", "cast_id": 11, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 10}, {"name": "Dana Carvey", "character": "Referee", "id": 56159, "credit_id": "52fe451ac3a36847f80bc8eb", "cast_id": 12, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 11}, {"name": "Jon Lovitz", "character": "Peeper", "id": 16165, "credit_id": "52fe451ac3a36847f80bc8ef", "cast_id": 13, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 12}, {"name": "Kevin Nealon", "character": "Gatekeeper", "id": 58478, "credit_id": "52fe451ac3a36847f80bc8f3", "cast_id": 14, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 13}, {"name": "Michael McKean", "character": "Chief of Police", "id": 21731, "credit_id": "52fe451ac3a36847f80bc8f7", "cast_id": 15, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 14}, {"name": "Ozzy Osbourne", "character": "Himself", "id": 12208, "credit_id": "52fe451ac3a36847f80bc92b", "cast_id": 24, "profile_path": "/9EkHsyIW3xjch0MJ6LtrvMmGhdL.jpg", "order": 15}, {"name": "Quentin Tarantino", "character": "Deacon", "id": 138, "credit_id": "52fe451ac3a36847f80bc92f", "cast_id": 25, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 16}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe451ac3a36847f80bc8fd", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.4, "runtime": 90}, "1487": {"poster_path": "/f4g4bd20ZQoPPlTZF8WBYy3vUSs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99318987, "overview": "In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before a demon - Hellboy - has already been conjured. Joining the Allied forces, Hellboy eventually grows to adulthood, serving the cause of good rather than evil.", "video": false, "id": 1487, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Hellboy", "tagline": "From the Dark Side to Our Side.", "vote_count": 546, "homepage": "http://www.sonypictures.com/homevideo/hellboy/", "belongs_to_collection": {"backdrop_path": "/i6WF7cYiogl8g5ryZDbZBw8RNVN.jpg", "poster_path": "/81B1OdGY7f3TVN06eKra25vHzYk.jpg", "id": 17235, "name": "Hellboy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167190", "adult": false, "backdrop_path": "/13DIK3beAoroeJSdrcYm66s6hal.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Starlite Films", "id": 21497}], "release_date": "2004-04-02", "popularity": 0.863419772072, "original_title": "Hellboy", "budget": 66000000, "cast": [{"name": "Ron Perlman", "character": "Hellboy", "id": 2372, "credit_id": "52fe42f9c3a36847f8030ec5", "cast_id": 1, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 0}, {"name": "Selma Blair", "character": "Liz Sherman", "id": 11826, "credit_id": "52fe42f9c3a36847f8030ec9", "cast_id": 2, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 1}, {"name": "Rupert Evans", "character": "John Myers", "id": 17283, "credit_id": "52fe42f9c3a36847f8030ecd", "cast_id": 3, "profile_path": "/AuPOKHD18bE2jKXONvrMLGVQ744.jpg", "order": 2}, {"name": "John Hurt", "character": "Prof. Bruttenholm", "id": 5049, "credit_id": "52fe42f9c3a36847f8030ed7", "cast_id": 5, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Tom Manning", "id": 4175, "credit_id": "52fe42f9c3a36847f8030f05", "cast_id": 13, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Karel Roden", "character": "Grigori Rasputin", "id": 10841, "credit_id": "52fe42f9c3a36847f8030f09", "cast_id": 14, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 5}, {"name": "Brian Steele", "character": "Sammael", "id": 12359, "credit_id": "52fe42f9c3a36847f8030f0d", "cast_id": 15, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 6}, {"name": "Ladislav Beran", "character": "Karl Ruprecht Kroenen", "id": 66268, "credit_id": "52fe42f9c3a36847f8030f11", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Biddy Hodson", "character": "Ilsa Haupstein", "id": 66269, "credit_id": "52fe42f9c3a36847f8030f15", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Corey Johnson", "character": "Agent Clay", "id": 17199, "credit_id": "52fe42f9c3a36847f8030f19", "cast_id": 18, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 9}, {"name": "Brian Caspe", "character": "Agent Lime", "id": 25730, "credit_id": "52fe42f9c3a36847f8030f1d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "James Babson", "character": "Agent Moss", "id": 25659, "credit_id": "52fe42f9c3a36847f8030f21", "cast_id": 20, "profile_path": "/PsYYzL0CcFhCGyq2rpQq8uHF8n.jpg", "order": 11}, {"name": "Doug Jones", "character": "Abe Sapien", "id": 17005, "credit_id": "52fe42f9c3a36847f8030f25", "cast_id": 21, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 12}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe42f9c3a36847f8030ed3", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.2, "runtime": 122}, "107985": {"poster_path": "/7xZUJMqGBLvhPJqn23UM3yUC5k5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.", "video": false, "id": 107985, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "The World's End", "tagline": "Good food. Fine ales. Total Annihilation.", "vote_count": 552, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1213663", "adult": false, "backdrop_path": "/uTODVVo2EDocnrtvdlOvQw1bO2R.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Universal Pictures", "id": 33}, {"name": "Big Talk Productions", "id": 443}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-07-19", "popularity": 2.0174332913847, "original_title": "The World's End", "budget": 20000000, "cast": [{"name": "Simon Pegg", "character": "Gary King", "id": 11108, "credit_id": "52fe4a8dc3a36847f81d4951", "cast_id": 2, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Nick Frost", "character": "Andrew Knightley", "id": 11109, "credit_id": "52fe4a8dc3a36847f81d4955", "cast_id": 3, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 1}, {"name": "Martin Freeman", "character": "Oliver Chamberlain", "id": 7060, "credit_id": "52fe4a8dc3a36847f81d498f", "cast_id": 14, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 2}, {"name": "Eddie Marsan", "character": "Peter Page", "id": 1665, "credit_id": "52fe4a8dc3a36847f81d498b", "cast_id": 13, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Steven Prince", "id": 14887, "credit_id": "52fe4a8dc3a36847f81d495d", "cast_id": 5, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Rosamund Pike", "character": "Sam Chamberlain", "id": 10882, "credit_id": "52fe4a8dc3a36847f81d4959", "cast_id": 4, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 5}, {"name": "Pierce Brosnan", "character": "Guy Shepherd", "id": 517, "credit_id": "52fe4a8dc3a36847f81d49e1", "cast_id": 33, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 6}, {"name": "David Bradley", "character": "Basil", "id": 11180, "credit_id": "52fe4a8dc3a36847f81d4993", "cast_id": 15, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 7}, {"name": "Thomas Law", "character": "Young Gary", "id": 969561, "credit_id": "52fe4a8dc3a36847f81d499b", "cast_id": 17, "profile_path": "/jvAYxbaPPPHEgMEPhtuzEUDMkC2.jpg", "order": 8}, {"name": "Zachary Bailess", "character": "Young Andy", "id": 1200850, "credit_id": "52fe4a8dc3a36847f81d499f", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Jasper Levine", "character": "Young Steven", "id": 1200851, "credit_id": "52fe4a8dc3a36847f81d49a3", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "James Tarpey", "character": "Young Peter", "id": 1200852, "credit_id": "52fe4a8dc3a36847f81d49a7", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Luke Bromley", "character": "Young Oliver", "id": 206155, "credit_id": "52fe4a8dc3a36847f81d49ab", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Sophie Evans", "character": "Becky Salt", "id": 1200853, "credit_id": "52fe4a8dc3a36847f81d49af", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Samantha White", "character": "Erika Leekes", "id": 1200854, "credit_id": "52fe4a8dc3a36847f81d49b3", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Rose Reynolds", "character": "Tracy Benson", "id": 1200855, "credit_id": "52fe4a8dc3a36847f81d49b7", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Richard Hadfield", "character": "Young Shane", "id": 1200856, "credit_id": "52fe4a8dc3a36847f81d49bb", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Flora Slorach", "character": "Young Sam", "id": 1200857, "credit_id": "52fe4a8dc3a36847f81d49bf", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Francesca Reidie", "character": "Teenage Twins", "id": 1200858, "credit_id": "52fe4a8dc3a36847f81d49c3", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Charlotte Reidie", "character": "Teenage Twins", "id": 1200859, "credit_id": "52fe4a8dc3a36847f81d49c7", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Michael Smiley", "character": "Reverend Green", "id": 17078, "credit_id": "52fe4a8dc3a36847f81d49cb", "cast_id": 29, "profile_path": "/muzJQpsKJ4srfVpyRa7qkrRYWSq.jpg", "order": 20}, {"name": "Alex Austin", "character": "Pale Young Man", "id": 1278121, "credit_id": "52fe4a8dc3a36847f81d49e5", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Jonathan Aris", "character": "Group Leader", "id": 28477, "credit_id": "52fe4a8dc3a36847f81d49e9", "cast_id": 35, "profile_path": "/6RMuwGYfLLGq01LNGBydj9jpTWn.jpg", "order": 22}, {"name": "Jenny Bede", "character": "Fitness Instructor (26)", "id": 1278122, "credit_id": "52fe4a8dc3a36847f81d49ed", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Angie Wallis", "character": "Peter's Wife", "id": 1278123, "credit_id": "52fe4a8dc3a36847f81d49f1", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Paul Bentall", "character": "Peter's Dad", "id": 1278124, "credit_id": "52fe4a8dc3a36847f81d49f5", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Richard Graham", "character": "Head Builder", "id": 26863, "credit_id": "52fe4a8dc3a36847f81d49f9", "cast_id": 39, "profile_path": "/1pKHcTuENyDQV4ayCdC9DZ6FyE4.jpg", "order": 26}, {"name": "Alice Lowe", "character": "Young Lady", "id": 182327, "credit_id": "52fe4a8dc3a36847f81d49fd", "cast_id": 40, "profile_path": "/kpBWGfjNfGZ6aAStg7n6upGj9g3.jpg", "order": 27}, {"name": "Rafe Spall", "character": "Young Man", "id": 28847, "credit_id": "52fe4a8dc3a36847f81d4a01", "cast_id": 41, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 28}, {"name": "Leo Thompson", "character": "Felicity", "id": 1278125, "credit_id": "52fe4a8dc3a36847f81d4a05", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Steve Oram", "character": "Motorcycle Policeman", "id": 219367, "credit_id": "52fe4a8dc3a36847f81d4a09", "cast_id": 43, "profile_path": "/xHlaXXdSROQBIJOD69PCloDShjb.jpg", "order": 30}, {"name": "Julia Deakin", "character": "B & B Landlady", "id": 137471, "credit_id": "52fe4a8dc3a36847f81d4a0d", "cast_id": 44, "profile_path": "/7VdKwLiW7uyKHv7piBJZb3KJO76.jpg", "order": 31}, {"name": "Greg Townley", "character": "Greg", "id": 237162, "credit_id": "52fe4a8dc3a36847f81d4a11", "cast_id": 45, "profile_path": "/mHA3zhlMl1OfVNn1I20O1SJt4j.jpg", "order": 32}, {"name": "Sebastian Zaniesienko", "character": "Seb", "id": 1278127, "credit_id": "52fe4a8dc3a36847f81d4a15", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Luke Scott", "character": "Luke", "id": 1278128, "credit_id": "52fe4a8dc3a36847f81d4a19", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Tyler Dobbs", "character": "Tyler", "id": 1278129, "credit_id": "52fe4a8dc3a36847f81d4a1d", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Samuel Mak", "character": "Sam", "id": 1278130, "credit_id": "52fe4a8dc3a36847f81d4a21", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Teddy Kempner", "character": "Publican 1", "id": 951891, "credit_id": "52fe4a8dc3a36847f81d4a25", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Mark Kempner", "character": "Publican 2", "id": 206847, "credit_id": "52fe4a8dc3a36847f81d4a29", "cast_id": 51, "profile_path": null, "order": 38}, {"name": "Nick Holder", "character": "Publican 3", "id": 206726, "credit_id": "52fe4a8dc3a36847f81d4a2d", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Darren Boyd", "character": "Shane Hawkins", "id": 17123, "credit_id": "52fe4a8dc3a36847f81d4a31", "cast_id": 53, "profile_path": "/1UdRVGrbYF7CqQmKABTruiRu7Mx.jpg", "order": 40}, {"name": "Paul Kennington", "character": "Publican 5", "id": 1278131, "credit_id": "52fe4a8dc3a36847f81d4a35", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Mike Sarne", "character": "Publican 6", "id": 1278132, "credit_id": "52fe4a8dc3a36847f81d4a39", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Reece Shearsmith", "character": "Collaborator", "id": 34551, "credit_id": "52fe4a8dc3a36847f81d4a3d", "cast_id": 56, "profile_path": "/d6oib5uLUMLvw3ebTkQ5Ngc73FO.jpg", "order": 43}, {"name": "Nicholas Burns", "character": "Collaborator", "id": 110076, "credit_id": "52fe4a8dc3a36847f81d4a41", "cast_id": 57, "profile_path": "/30oqK87hjivdrX9AQXAK6COrHw3.jpg", "order": 44}, {"name": "Mark Heap", "character": "Publican 7", "id": 47712, "credit_id": "52fe4a8dc3a36847f81d4a45", "cast_id": 58, "profile_path": "/xingI5wsAsWLmc1EmvfwGfDu3u.jpg", "order": 45}, {"name": "Kelly Franklin", "character": "Kelly", "id": 1278134, "credit_id": "52fe4a8dc3a36847f81d4a49", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "Stacey Franklin", "character": "Stacey", "id": 1278135, "credit_id": "52fe4a8dc3a36847f81d4a4d", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "James Granstrom", "character": "Adrian Keane", "id": 1278136, "credit_id": "52fe4a8dc3a36847f81d4a51", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Gabe Cronnelly", "character": "Upstairs Beehive Man", "id": 1278137, "credit_id": "52fe4a8dc3a36847f81d4a55", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Patricia Franklin", "character": "Upstairs Beehive Lady", "id": 117550, "credit_id": "52fe4a8dc3a36847f81d4a59", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Bill Nighy", "character": "The Network (voice)", "id": 2440, "credit_id": "52fe4a8dc3a36847f81d4997", "cast_id": 16, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 51}, {"name": "Mark Donovan", "character": "Big Ugly Bastard", "id": 211413, "credit_id": "52fe4a8dc3a36847f81d4a5d", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "Ricky Champ", "character": "Big Ugly Bastard", "id": 40478, "credit_id": "52fe4a8dc3a36847f81d4a61", "cast_id": 65, "profile_path": null, "order": 53}, {"name": "Ken Bones", "character": "Publican 13", "id": 91662, "credit_id": "52fe4a8dc3a36847f81d4a65", "cast_id": 66, "profile_path": "/3T5Dibtk4LzPWfdDXTXzW81Xgut.jpg", "order": 54}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe4a8dc3a36847f81d494d", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 6.7, "runtime": 109}, "1491": {"poster_path": "/sRYw9oAiporMpq1GWcYHqmpdeAO.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86915017, "overview": "With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crowned prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.", "video": false, "id": 1491, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Illusionist", "tagline": "Nothing Is What It Seems.", "vote_count": 508, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443543", "adult": false, "backdrop_path": "/dJl5xLVNoIUOyeQdrrc2W9cl88m.jpg", "production_companies": [{"name": "Yari Film Group", "id": 2448}], "release_date": "2006-08-18", "popularity": 1.06404480577611, "original_title": "The Illusionist", "budget": 40000000, "cast": [{"name": "Edward Norton", "character": "Eisenheim", "id": 819, "credit_id": "52fe42f9c3a36847f803103b", "cast_id": 1, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Sophie", "id": 10860, "credit_id": "52fe42f9c3a36847f803103f", "cast_id": 2, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Inspector Uhl", "id": 13242, "credit_id": "52fe42f9c3a36847f8031043", "cast_id": 3, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Rufus Sewell", "character": "Crown Prince Leopold", "id": 17328, "credit_id": "52fe42f9c3a36847f8031047", "cast_id": 4, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "Josef Fischer (as Edward Marsan)", "id": 1665, "credit_id": "52fe42f9c3a36847f8031051", "cast_id": 7, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "Jake Wood", "character": "Jurka", "id": 162489, "credit_id": "52fe42f9c3a36847f8031079", "cast_id": 14, "profile_path": "/kEcRKeXOrp1hpSqex2rwZ1c89G1.jpg", "order": 5}, {"name": "Aaron Taylor-Johnson", "character": "Young Eisenheim", "id": 27428, "credit_id": "52fe42f9c3a36847f803107d", "cast_id": 15, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 6}, {"name": "Eleanor Tomlinson", "character": "Young Sophie", "id": 73357, "credit_id": "52fe42f9c3a36847f8031081", "cast_id": 16, "profile_path": "/1eDkLc1uz20At0UNGMaTgGaooBR.jpg", "order": 7}, {"name": "Karl Johnson", "character": "Doctor / Old Man", "id": 39186, "credit_id": "52fe42f9c3a36847f8031085", "cast_id": 17, "profile_path": "/yxxlHfExQJyWXRgq09X32ZtYv9b.jpg", "order": 8}, {"name": "Vincent Franklin", "character": "Loschek", "id": 43024, "credit_id": "52fe42f9c3a36847f8031089", "cast_id": 18, "profile_path": "/zLOnUc52qcD1ljiRTn98Ej2CCB2.jpg", "order": 9}, {"name": "Nicholas Blane", "character": "Herr Doebler", "id": 133031, "credit_id": "52fe42f9c3a36847f803108d", "cast_id": 19, "profile_path": "/dZ1Z9EPSGItJO4Zv2Eu0d4B9czf.jpg", "order": 10}, {"name": "Philip McGough", "character": "Dr. Hofzinser", "id": 147425, "credit_id": "52fe42f9c3a36847f8031091", "cast_id": 20, "profile_path": "/yE4V4kFxwU0Yl89gZdy4BftgGQv.jpg", "order": 11}, {"name": "Erich Redman", "character": "Count Rainer", "id": 1048648, "credit_id": "52fe42f9c3a36847f8031095", "cast_id": 21, "profile_path": "/b3WSKeKp8SugwS5Af36xdMme8D5.jpg", "order": 12}, {"name": "Michael Carter", "character": "Von Thurnburg", "id": 199055, "credit_id": "52fe42f9c3a36847f8031099", "cast_id": 22, "profile_path": "/rYVKZQ4uYLf7cpAGfdFzDcRNJXw.jpg", "order": 13}], "directors": [{"name": "Neil Burger", "department": "Directing", "job": "Director", "credit_id": "52fe42f9c3a36847f803104d", "profile_path": "/eUDHt2OWYnCwC8FOVIgU2uTPK3x.jpg", "id": 17329}], "vote_average": 6.9, "runtime": 110}, "1493": {"poster_path": "/7ujgPH708pOGvl2Y5IYvXeAGPC2.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 212000000, "overview": "Gracie Hart is a tough-as-nails FBI officer. When her office receives a letter from a terrorist going by the alias \"The Citizen\", they figure out that he's planning his next act at the Miss America beauty pageant. Because Hart is the only female officer at her office, she's chosen to go undercover as the contestant from New Jersey.", "video": false, "id": 1493, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Miss Congeniality", "tagline": "Never Mess With An Agent In A Dress.", "vote_count": 244, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7TIT28YbhAOeQGD2q2hJ9j83jI1.jpg", "poster_path": "/fyjlq7Xi7d3YPLj4MrDDdmOPlNF.jpg", "id": 93220, "name": "Miss Congeniality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0212346", "adult": false, "backdrop_path": "/p25mxAO1ArY8bgZX6Y7B2r3vo0k.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Castle Rock Entertainment", "id": 97}], "release_date": "2000-12-14", "popularity": 1.48208524934342, "original_title": "Miss Congeniality", "budget": 45000000, "cast": [{"name": "Sandra Bullock", "character": "Gracie Hart", "id": 18277, "credit_id": "52fe42fac3a36847f803117d", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Benjamin Bratt", "character": "Eric Matthews", "id": 4589, "credit_id": "52fe42fac3a36847f8031187", "cast_id": 3, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 1}, {"name": "Michael Caine", "character": "Victor Melling", "id": 3895, "credit_id": "52fe42fac3a36847f803118b", "cast_id": 4, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 2}, {"name": "Candice Bergen", "character": "Kathy Morningside", "id": 11850, "credit_id": "52fe42fac3a36847f80311a1", "cast_id": 8, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 3}, {"name": "William Shatner", "character": "Stan Fields", "id": 1748, "credit_id": "52fe42fac3a36847f80311a5", "cast_id": 9, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Ernie Hudson", "character": "Harry McDonald", "id": 8874, "credit_id": "52fe42fac3a36847f80311a9", "cast_id": 10, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 5}, {"name": "John DiResta", "character": "Agent Clonsky", "id": 141484, "credit_id": "52fe42fac3a36847f80311ad", "cast_id": 11, "profile_path": "/iqrCWnEdPctyq1420wK2O8Zj1Bd.jpg", "order": 6}, {"name": "Heather Burns", "character": "Cheryl Frasier, Miss Rhode Island", "id": 26716, "credit_id": "52fe42fac3a36847f80311b1", "cast_id": 12, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 7}, {"name": "Melissa De Sousa", "character": "Karen Krantz, Miss New York", "id": 75696, "credit_id": "52fe42fac3a36847f80311b5", "cast_id": 13, "profile_path": "/n0BJca49x90oN3IcceTCasBQz8b.jpg", "order": 8}, {"name": "Steve Monroe", "character": "Frank Tobin", "id": 131125, "credit_id": "52fe42fac3a36847f80311b9", "cast_id": 14, "profile_path": "/1DSgyYqbUk7wzHbvmLX6eGJYWz7.jpg", "order": 9}, {"name": "Deirdre Quinn", "character": "Mary Jo Wright, Miss Texas", "id": 34247, "credit_id": "52fe42fac3a36847f80311bd", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Wendy Raquel Robinson", "character": "Leslie Davis, Miss California", "id": 52116, "credit_id": "52fe42fac3a36847f80311c1", "cast_id": 16, "profile_path": "/qmPJNsHXmRjdw0opXpFUiyJU1uT.jpg", "order": 11}, {"name": "Asia De Marcos", "character": "Alana Krewson, Miss Hawaii", "id": 141485, "credit_id": "52fe42fac3a36847f80311c5", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Ken Thomas", "character": "Agent Harris", "id": 59456, "credit_id": "52fe42fac3a36847f80311c9", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Gabriel Folse", "character": "Agent Jerry Grant", "id": 141486, "credit_id": "52fe42fac3a36847f80311cd", "cast_id": 19, "profile_path": null, "order": 14}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031183", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 6.0, "runtime": 109}, "50646": {"poster_path": "/n97V1WcpoJ8gBA0pM48Om05o2fN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 142851197, "overview": "At fortysomething, straight-laced Cal Weaver (Steve Carell) is living the dream-good job, nice house, great kids and marriage to his high school sweetheart. But when Cal learns that his wife, Emily (Julianne Moore), has cheated on him and wants a divorce, his \"perfect\" life quickly unravels. Worse, in today's single world, Cal, who hasn't dated in decades, stands out as the epitome of un-smooth. Now spending his free evenings sulking alone at a local bar, the hapless Cal is taken on as wingman and prot\u00e9g\u00e9 to handsome, thirtysomething player Jacob Palmer (Ryan Gosling).", "video": false, "id": 50646, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Crazy, Stupid, Love.", "tagline": "This is stupid", "vote_count": 751, "homepage": "http://crazystupidlove.warnerbros.com/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1570728", "adult": false, "backdrop_path": "/JwsOH0qWCVigWGKJT8Lxs1BIN3.jpg", "production_companies": [{"name": "Carousel Productions (II)", "id": 7312}], "release_date": "2011-07-28", "popularity": 1.74331643309505, "original_title": "Crazy, Stupid, Love.", "budget": 50000000, "cast": [{"name": "Steve Carell", "character": "Cal", "id": 4495, "credit_id": "52fe47d0c3a36847f8149a0f", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Emily", "id": 1231, "credit_id": "52fe47d0c3a36847f8149a13", "cast_id": 4, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Ryan Gosling", "character": "Jacob", "id": 30614, "credit_id": "52fe47d0c3a36847f8149a17", "cast_id": 5, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 2}, {"name": "Emma Stone", "character": "Hannah", "id": 54693, "credit_id": "52fe47d0c3a36847f8149a1b", "cast_id": 6, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 3}, {"name": "Marisa Tomei", "character": "Kate", "id": 3141, "credit_id": "52fe47d0c3a36847f8149a1f", "cast_id": 7, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 4}, {"name": "Kevin Bacon", "character": "David Lindhagen", "id": 4724, "credit_id": "52fe47d0c3a36847f8149a23", "cast_id": 8, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Analeigh Tipton", "character": "Jessica Riley", "id": 124644, "credit_id": "52fe47d0c3a36847f8149a27", "cast_id": 12, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 6}, {"name": "Jonah Bobo", "character": "Robbie Weaver", "id": 51297, "credit_id": "52fe47d0c3a36847f8149a37", "cast_id": 19, "profile_path": "/ujDjz3FtyCA3h2vF0rouoqatGNR.jpg", "order": 7}, {"name": "Joey King", "character": "Molly", "id": 125025, "credit_id": "54d1e7c8c3a3683080002470", "cast_id": 20, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 8}, {"name": "Marisa Tomei", "character": "Kate", "id": 3141, "credit_id": "54d1e7e0c3a368306f002049", "cast_id": 21, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 9}, {"name": "Beth Littleford", "character": "Claire", "id": 79024, "credit_id": "54d1e7f2c3a3687388001fe6", "cast_id": 22, "profile_path": "/fENKh8l0qV6EPS6chqT6ijYwHJt.jpg", "order": 10}, {"name": "John Carroll Lynch", "character": "Bernie", "id": 3911, "credit_id": "54d1e8059251411b69002146", "cast_id": 23, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 11}, {"name": "Kevin Bacon", "character": "David Lindhagen", "id": 4724, "credit_id": "54d1e816925141579e001c84", "cast_id": 24, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 12}, {"name": "Liza Lapira", "character": "Liz", "id": 51998, "credit_id": "54d1e830c3a3687351001d3f", "cast_id": 25, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 13}, {"name": "Josh Groban", "character": "Richard", "id": 117470, "credit_id": "54d1e841c3a3683080002484", "cast_id": 26, "profile_path": "/jQr3NrVZ0hF8EAGSVkU1wIABonQ.jpg", "order": 14}, {"name": "Mekia Cox", "character": "Hip Hairdresser aka Tiffany", "id": 202952, "credit_id": "54d1e852c3a368306f002065", "cast_id": 27, "profile_path": "/mXRELWL75FqINS3V8KeRbOGmqsT.jpg", "order": 15}, {"name": "Julianna Guill", "character": "Madison", "id": 78430, "credit_id": "54d1e8619251411b6b0020db", "cast_id": 28, "profile_path": "/myHcPhxZcDk9yCL2F2yafQudMih.jpg", "order": 16}], "directors": [{"name": "Glenn Ficarra", "department": "Directing", "job": "Director", "credit_id": "52fe47d0c3a36847f8149a05", "profile_path": "/nYiriOot9jZihyuhH7utfTh7vtH.jpg", "id": 56411}, {"name": "John Requa", "department": "Directing", "job": "Director", "credit_id": "52fe47d0c3a36847f8149a0b", "profile_path": null, "id": 56412}], "vote_average": 6.8, "runtime": 118}, "1495": {"poster_path": "/d9GYuT9aMoDi4MPTKYe4M2PwUm4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MA", "name": "Morocco"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 211643158, "overview": "After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.", "video": false, "id": 1495, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Kingdom of Heaven", "tagline": "Be without fear in the face of your enemies. Safeguard the helpless, and do no wrong", "vote_count": 330, "homepage": "http://www.kingdomofheavendvd.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0320661", "adult": false, "backdrop_path": "/dzMGckpN2xAQDLr2Ddr8CZ3WbYF.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Scott Free Productions", "id": 1645}, {"name": "BK", "id": 19478}, {"name": "KOH", "id": 19479}, {"name": "Reino del Cielo", "id": 19480}, {"name": "Babelsberg Film", "id": 19481}, {"name": "Inside Track 3", "id": 19482}, {"name": "Calle Cruzada", "id": 19483}, {"name": "Dune Films", "id": 19477}, {"name": "Kanzaman", "id": 4169}], "release_date": "2005-05-03", "popularity": 1.29620356547322, "original_title": "Kingdom of Heaven", "budget": 130000000, "cast": [{"name": "Orlando Bloom", "character": "Balian de Ibelin", "id": 114, "credit_id": "52fe42fac3a36847f80312d5", "cast_id": 2, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 0}, {"name": "Eva Green", "character": "Sibylla", "id": 10912, "credit_id": "52fe42fac3a36847f803134b", "cast_id": 25, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Jeremy Irons", "character": "Tiberias", "id": 16940, "credit_id": "52fe42fac3a36847f803134f", "cast_id": 26, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 2}, {"name": "Marton Csokas", "character": "Guy de Lusignan", "id": 20982, "credit_id": "52fe42fac3a36847f803135b", "cast_id": 29, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Reynald de Chatillon", "id": 2039, "credit_id": "52fe42fac3a36847f8031357", "cast_id": 28, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Liam Neeson", "character": "Godfrey de Ibelin", "id": 3896, "credit_id": "52fe42fac3a36847f8031363", "cast_id": 31, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 5}, {"name": "Edward Norton", "character": "King Baldwin", "id": 819, "credit_id": "52fe42fac3a36847f8031387", "cast_id": 40, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 6}, {"name": "Michael Sheen", "character": "Priest", "id": 3968, "credit_id": "52fe42fac3a36847f803135f", "cast_id": 30, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 7}, {"name": "Ghassan Massoud", "character": "Saladin", "id": 70577, "credit_id": "52fe42fac3a36847f8031367", "cast_id": 32, "profile_path": "/zJxirBFZ1Yn31qxAHCK6I34p8FQ.jpg", "order": 8}, {"name": "Velibor Topi\u0107", "character": "Almaric", "id": 34515, "credit_id": "52fe42fac3a36847f8031377", "cast_id": 36, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 9}, {"name": "Alexander Siddig", "character": "Nasir", "id": 2957, "credit_id": "52fe42fac3a36847f803136b", "cast_id": 33, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 10}, {"name": "Khaled Nabawy", "character": "Mullah", "id": 230023, "credit_id": "52fe42fac3a36847f803136f", "cast_id": 34, "profile_path": "/psLyPdGT876tdy4OIw8UwDc97LH.jpg", "order": 11}, {"name": "Kevin McKidd", "character": "English Sergeant", "id": 9013, "credit_id": "52fe42fac3a36847f8031373", "cast_id": 35, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 12}, {"name": "David Thewlis", "character": "Hospitaler", "id": 11207, "credit_id": "52fe42fac3a36847f8031353", "cast_id": 27, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 13}, {"name": "Martin Hancock", "character": "Gravedigger", "id": 28158, "credit_id": "52fe42fac3a36847f8031393", "cast_id": 43, "profile_path": "/dgM78QCzhwi7T8US2GxLytsngke.jpg", "order": 14}, {"name": "Nathalie Cox", "character": "Balian's Wife", "id": 17337, "credit_id": "52fe42fac3a36847f803138f", "cast_id": 42, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 15}, {"name": "Giannina Facio", "character": "Saladin's Sister", "id": 58787, "credit_id": "52fe42fac3a36847f80313a7", "cast_id": 48, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 16}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f80312db", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.3, "runtime": 144}, "1497": {"poster_path": "/eisrpNmBqyknW8WuZib8cGdhctc.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78, "overview": "The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.", "video": false, "id": 1497, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", "tagline": "Cowabunga, it's the new turtle movie.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1VW1ghi8URCo7Ixb7jLMgcS1vR3.jpg", "poster_path": "/9TLc09TqYi0Ct3zmUeHGwVxLHhq.jpg", "id": 1582, "name": "Teenage Mutant Ninja Turtles Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103060", "adult": false, "backdrop_path": "/kcBgrUeBjtDCEUcRfO9JfMtQ6BQ.jpg", "production_companies": [{"name": "Golden Harvest Company", "id": 2521}, {"name": "New Line Cinema", "id": 12}], "release_date": "1991-03-22", "popularity": 0.94314854675916, "original_title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", "budget": 25000000, "cast": [{"name": "Paige Turco", "character": "April O'Neil", "id": 74932, "credit_id": "52fe42fac3a36847f8031409", "cast_id": 2, "profile_path": "/lVRiduEjilaStMw7wCWKtWaUred.jpg", "order": 0}, {"name": "David Warner", "character": "Professor Jordon Perry", "id": 2076, "credit_id": "52fe42fac3a36847f8031455", "cast_id": 17, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 1}, {"name": "Michelan Sisti", "character": "Michaelangelo / Soho Man", "id": 77152, "credit_id": "52fe42fac3a36847f803140d", "cast_id": 4, "profile_path": "/1viIojmhmzkuZTvKdbiq08aqVjb.jpg", "order": 2}, {"name": "Leif Tilden", "character": "Donatello / Foot #3", "id": 77153, "credit_id": "52fe42fac3a36847f8031459", "cast_id": 18, "profile_path": "/uaVvRO1eyVLEP73m62GXZQXMPX2.jpg", "order": 3}, {"name": "Kenn Scott", "character": "Raphael", "id": 105174, "credit_id": "52fe42fac3a36847f803145d", "cast_id": 19, "profile_path": "/bOnU2kkaMVlqfwhGOMJYS9KNLzu.jpg", "order": 4}, {"name": "Mark Caso", "character": "Leonardo / News Room Staff", "id": 78214, "credit_id": "52fe42fac3a36847f8031417", "cast_id": 6, "profile_path": "/8WOb0H1eXfgQtOV9jPFsFP2Rsmz.jpg", "order": 5}, {"name": "Kevin Clash", "character": "Splinter", "id": 77156, "credit_id": "52fe42fac3a36847f8031461", "cast_id": 20, "profile_path": "/luyancgvvKgwj6qD39lVEthhhYG.jpg", "order": 6}, {"name": "Ernie Reyes, Jr.", "character": "Keno", "id": 58210, "credit_id": "52fe42fac3a36847f803141b", "cast_id": 7, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 7}, {"name": "Fran\u00e7ois Chau", "character": "Shredder", "id": 60851, "credit_id": "52fe42fac3a36847f8031465", "cast_id": 21, "profile_path": "/r8EocoGAJVky0bQ6gyfxcabuTPz.jpg", "order": 8}, {"name": "Toshishiro Obata", "character": "Tatsu", "id": 953728, "credit_id": "53f98fd0c3a368734c0025fb", "cast_id": 22, "profile_path": "/fgHL5HDrxD4zelKQrzQdARy0WSL.jpg", "order": 9}, {"name": "Raymond Serra", "character": "Chief Sterns", "id": 191557, "credit_id": "53f98fdac3a3687358002740", "cast_id": 23, "profile_path": "/s8tJW3NIa7LeKyQi3JYo7KX8Fcs.jpg", "order": 10}, {"name": "Mark Ginther", "character": "Rahzar", "id": 149731, "credit_id": "53f99009c3a36873550028ce", "cast_id": 25, "profile_path": "/vFyyptcZKJ44O7vEyx9GkGRERE3.jpg", "order": 12}, {"name": "Kurt Bryant", "character": "Tokka", "id": 180830, "credit_id": "53f9903bc3a36873520027b2", "cast_id": 26, "profile_path": "/iV5cWqC72njCHOPCwMhStuXQBWY.jpg", "order": 13}, {"name": "Kevin Nash", "character": "Super Shredder", "id": 135352, "credit_id": "53f99045c3a368735e002754", "cast_id": 27, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 14}, {"name": "Joseph Amodei", "character": "Parlor Owner", "id": 1356291, "credit_id": "53f99050c3a368734f00273d", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Susie Essman", "character": "Soho Woman", "id": 56910, "credit_id": "53f99061c3a368734c002607", "cast_id": 29, "profile_path": "/m7e9tEevLcpp7pqddqUEhJEaWLm.jpg", "order": 16}, {"name": "Vanilla Ice", "character": "Himself", "id": 17338, "credit_id": "53f99071c3a368734f002744", "cast_id": 30, "profile_path": "/zAMN2U7PM75gTheQhlWAD6ttHzb.jpg", "order": 17}, {"name": "Robbie Rist", "character": "Michaelangelo (voice)", "id": 77157, "credit_id": "53f99082c3a3687361002777", "cast_id": 31, "profile_path": "/bFpVHAJNNKOPQ230ALYLepwm1yE.jpg", "order": 18}, {"name": "Brian Tochi", "character": "Leonardo (voice)", "id": 16060, "credit_id": "53f9908dc3a368735e00275f", "cast_id": 32, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 19}, {"name": "Laurie Faso", "character": "Raphael (voice)", "id": 1214184, "credit_id": "53f99098c3a368734c00260d", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Adam Carl", "character": "Donatello (voice)", "id": 179566, "credit_id": "53f990abc3a36873520027ba", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "David McCharen", "character": "Shredder (voice)", "id": 952996, "credit_id": "53f990b8c3a368735b002771", "cast_id": 35, "profile_path": "/EAWYGbRfp68FzDx5HtDWt4zlfN.jpg", "order": 22}, {"name": "Michael McConnohie", "character": "Tatsu (voice)", "id": 81381, "credit_id": "53f990c5c3a368735b002774", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Frank Welker", "character": "Rahzar / Tokka (voice)", "id": 15831, "credit_id": "53f990cfc3a368736100277f", "cast_id": 37, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 24}, {"name": "Michael Jai White", "character": "Audience Man", "id": 64856, "credit_id": "53f990e3c3a368735b002778", "cast_id": 38, "profile_path": "/5iJ5lnq2ttl0uP7MORd6dUHUrIf.jpg", "order": 25}, {"name": "Nick DeMarinis", "character": "Parlor Assistant", "id": 1456197, "credit_id": "5532cb019251417ae300165c", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Kelli Rabke", "character": "Teenage Girl", "id": 1229231, "credit_id": "5532cdb7c3a36848ca0024a6", "cast_id": 44, "profile_path": "/ybIPyM2foLyNCi0IMOhmkdaLWi9.jpg", "order": 27}, {"name": "Lee Spencer", "character": "Foot #1", "id": 154668, "credit_id": "5533bf86c3a3682223005241", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Gianpaolo Bonaca", "character": "Foot #2", "id": 1456484, "credit_id": "5533bfb1c3a368221f0051c8", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Mark Doerr", "character": "Freddy", "id": 85424, "credit_id": "5533c00592514152910054cc", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Tim Parati", "character": "Crew Member", "id": 65171, "credit_id": "5533c063c3a3682dc200006b", "cast_id": 48, "profile_path": "/qu3AMF9AXrAAXKI9MfdxZKW7mgm.jpg", "order": 31}, {"name": "John E. Brady", "character": "TGRI Assistant #1", "id": 1456485, "credit_id": "5533c0e1c3a3682219005a51", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Jon Thompson", "character": "TGRI Worker", "id": 1456486, "credit_id": "5533c15e9251415291005502", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Bill Luhrs", "character": "TGRI Assistant #2", "id": 163431, "credit_id": "5533c245c3a36822260057e8", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Michael Pressman", "character": "News Manager", "id": 59649, "credit_id": "5533c2e59251417ae3003440", "cast_id": 52, "profile_path": "/svlIYwFa9ATEQnM4QD3iz1G59vq.jpg", "order": 35}, {"name": "Rick Colella", "character": "Teenage Thug", "id": 1456493, "credit_id": "5533c37d925141529b0053cb", "cast_id": 53, "profile_path": null, "order": 36}, {"name": "Dewey Weber", "character": "Foot Recruiter", "id": 167676, "credit_id": "5533c3cdc3a368222300529e", "cast_id": 54, "profile_path": "/beGvYqnuTTSeyxCKW77r9dHYlLg.jpg", "order": 37}, {"name": "Sasha Pressman", "character": "Old Woman", "id": 1456495, "credit_id": "5533c429c3a368221f005256", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "David Pressman", "character": "Old Man", "id": 1456497, "credit_id": "5533c4cb92514140b5003718", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Shiek Mahmud-Bey", "character": "Audience Man", "id": 134529, "credit_id": "5533c5c0c3a3682226005852", "cast_id": 57, "profile_path": "/ahbnSbmcZlQLUi2LnzFqxM49FFe.jpg", "order": 40}, {"name": "Lisa Chess", "character": "Audience Woman", "id": 1335583, "credit_id": "5533c655c3a368523e001968", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Earthquake", "character": "Disc Jockey", "id": 1456501, "credit_id": "5533c70c925141529b00542d", "cast_id": 59, "profile_path": null, "order": 42}, {"name": "Mark Grinage", "character": "Dancer #1", "id": 1456505, "credit_id": "5533c7dc92514152910055bb", "cast_id": 60, "profile_path": null, "order": 43}, {"name": "John Henry Huffman IV", "character": "Dancer #2", "id": 1456507, "credit_id": "5533c82fc3a368221f0052e1", "cast_id": 61, "profile_path": null, "order": 44}, {"name": "Everett Fitzgerald", "character": "Dancer #3", "id": 1456508, "credit_id": "5533c8b692514152910055e8", "cast_id": 62, "profile_path": null, "order": 45}, {"name": "Gregory Salata", "character": "Promoter", "id": 1221149, "credit_id": "5533ca11c3a36852de0019a0", "cast_id": 63, "profile_path": null, "order": 46}, {"name": "Mak Wilson", "character": "Promoter's Aide", "id": 102757, "credit_id": "5533cb119251417ae300354f", "cast_id": 64, "profile_path": null, "order": 47}, {"name": "Raul S. Brewster", "character": "Foot Soldier", "id": 1456525, "credit_id": "5533cdd79251417ae3003591", "cast_id": 65, "profile_path": null, "order": 48}, {"name": "Keith Coulouris", "character": "Thug #1", "id": 19717, "credit_id": "5533ce38925141529100566c", "cast_id": 66, "profile_path": "/maEsRcZN6XHdurXyGO1WyhGktGF.jpg", "order": 49}, {"name": "Chris Cox", "character": "Foot Soldier", "id": 1456529, "credit_id": "5533cec2c3a36848ca004587", "cast_id": 67, "profile_path": null, "order": 50}, {"name": "Richard Divizio", "character": "Foot Soldier", "id": 1131169, "credit_id": "5533cf1fc3a368523e001a32", "cast_id": 68, "profile_path": null, "order": 51}, {"name": "Dale Frye", "character": "Foot Soldier", "id": 1456532, "credit_id": "5533cf9d92514125dc0019b0", "cast_id": 69, "profile_path": null, "order": 52}, {"name": "Danny E. Glover", "character": "Foot Soldier", "id": 1456533, "credit_id": "5533d03292514152910056a1", "cast_id": 70, "profile_path": null, "order": 53}, {"name": "Kent Ezzell", "character": "Foot Soldier", "id": 1456534, "credit_id": "5533d068c3a3682dc2000216", "cast_id": 71, "profile_path": null, "order": 54}, {"name": "Ronald W. Herndon Jr.", "character": "Foot Soldier", "id": 1456535, "credit_id": "5533d09992514152950057b7", "cast_id": 72, "profile_path": null, "order": 55}, {"name": "Johnny Holbrook", "character": "Foot Soldier", "id": 1456536, "credit_id": "5533d0cfc3a36822230053ee", "cast_id": 73, "profile_path": null, "order": 56}, {"name": "Charles R. Knowles", "character": "Foot Soldier", "id": 1456537, "credit_id": "5533d1069251416f88000882", "cast_id": 74, "profile_path": null, "order": 57}, {"name": "Kenny Morrison", "character": "Foot Soldier", "id": 112731, "credit_id": "5533d1c0c3a368523e001a74", "cast_id": 75, "profile_path": "/7XDsPAPh27PJvWubTSOORUCsT7Q.jpg", "order": 58}, {"name": "Charles Page", "character": "Foot Soldier", "id": 1456538, "credit_id": "5533d22a9251411014003c8f", "cast_id": 76, "profile_path": null, "order": 59}, {"name": "Daniel Pesina", "character": "Foot Soldier", "id": 99871, "credit_id": "5533d353c3a36848ca00460a", "cast_id": 77, "profile_path": null, "order": 60}, {"name": "Terry D. Rich", "character": "Foot Soldier", "id": 1456539, "credit_id": "5533d372c3a3682dc200025e", "cast_id": 78, "profile_path": null, "order": 61}, {"name": "Scott A. Surgenor", "character": "Foot Soldier", "id": 1456540, "credit_id": "5533d3a2925141529500580c", "cast_id": 79, "profile_path": null, "order": 62}, {"name": "Jeffrey P. Thompson", "character": "Foot Soldier", "id": 1456541, "credit_id": "5533d3d3c3a3682219005cae", "cast_id": 80, "profile_path": null, "order": 63}, {"name": "Michael G. Norris", "character": "Foot Soldier", "id": 1456543, "credit_id": "5533d40492514140b5003899", "cast_id": 81, "profile_path": null, "order": 64}, {"name": "Steven M. Simma", "character": "Foot Soldier", "id": 1456544, "credit_id": "5533d434c3a36852de001a9b", "cast_id": 82, "profile_path": null, "order": 65}, {"name": "Char He Downing", "character": "Foot Soldier", "id": 1456545, "credit_id": "5533d46ac3a36852de001aa2", "cast_id": 83, "profile_path": null, "order": 66}], "directors": [{"name": "Michael Pressman", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031413", "profile_path": "/svlIYwFa9ATEQnM4QD3iz1G59vq.jpg", "id": 59649}], "vote_average": 6.1, "runtime": 88}, "1498": {"poster_path": "/cok0SSxmD7fYeZj6l9XOr2mb0YL.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201965915, "overview": "A quartet of mutated humanoid turtles clash with an uprising criminal gang of ninjas", "video": false, "id": 1498, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Teenage Mutant Ninja Turtles", "tagline": "Heroes in a half shell!", "vote_count": 140, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1VW1ghi8URCo7Ixb7jLMgcS1vR3.jpg", "poster_path": "/9TLc09TqYi0Ct3zmUeHGwVxLHhq.jpg", "id": 1582, "name": "Teenage Mutant Ninja Turtles Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100758", "adult": false, "backdrop_path": "/v4jw4Vu87A3bDq0UoZPShteABIY.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Golden Harvest Company", "id": 2521}], "release_date": "1990-03-30", "popularity": 1.01739034767351, "original_title": "Teenage Mutant Ninja Turtles", "budget": 13500000, "cast": [{"name": "Judith Hoag", "character": "April O'Neal", "id": 45041, "credit_id": "52fe42fac3a36847f8031499", "cast_id": 1, "profile_path": "/mP2EqWWhy6iP2PCbbky78pj10VK.jpg", "order": 0}, {"name": "Elias Koteas", "character": "Casey Jones", "id": 13550, "credit_id": "52fe42fac3a36847f803149d", "cast_id": 2, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 1}, {"name": "Josh Pais", "character": "Raphael (voice) / Passenger In Cab", "id": 6181, "credit_id": "52fe42fac3a36847f80314a1", "cast_id": 3, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 2}, {"name": "David Forman", "character": "Leonardo / Gang Member", "id": 77154, "credit_id": "52fe42fac3a36847f80314ad", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Brian Tochi", "character": "Leonardo (Voice)", "id": 16060, "credit_id": "52fe42fac3a36847f80314bd", "cast_id": 10, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 4}, {"name": "Leif Tilden", "character": "Donatello / Foot Messenger", "id": 77153, "credit_id": "52fe42fac3a36847f80314a9", "cast_id": 5, "profile_path": "/uaVvRO1eyVLEP73m62GXZQXMPX2.jpg", "order": 5}, {"name": "Michelan Sisti", "character": "Michaelangelo / Pizza Man", "id": 77152, "credit_id": "52fe42fac3a36847f80314a5", "cast_id": 4, "profile_path": "/1viIojmhmzkuZTvKdbiq08aqVjb.jpg", "order": 6}, {"name": "Robbie Rist", "character": "Michaelangelo (Voice)", "id": 77157, "credit_id": "52fe42fac3a36847f80314b9", "cast_id": 9, "profile_path": "/bFpVHAJNNKOPQ230ALYLepwm1yE.jpg", "order": 7}, {"name": "Kevin Clash", "character": "Splinter (Voice)", "id": 77156, "credit_id": "52fe42fac3a36847f80314b5", "cast_id": 8, "profile_path": "/luyancgvvKgwj6qD39lVEthhhYG.jpg", "order": 8}, {"name": "James Saito", "character": "The Shredder / Oroko Saki", "id": 77155, "credit_id": "52fe42fac3a36847f80314b1", "cast_id": 7, "profile_path": "/qwiY0k1tHFSmOPMJiwRL2wSEYK0.jpg", "order": 9}, {"name": "David McCharen", "character": "The Shredder / Oroku Saki (voice)", "id": 952996, "credit_id": "53f98e10c3a36873550028a8", "cast_id": 27, "profile_path": "/EAWYGbRfp68FzDx5HtDWt4zlfN.jpg", "order": 10}, {"name": "Sam Rockwell", "character": "Head Thug", "id": 6807, "credit_id": "52fe42fac3a36847f80314d5", "cast_id": 17, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 11}, {"name": "Toshishiro Obata", "character": "Tatsu", "id": 953728, "credit_id": "52fe42fac3a36847f80314c9", "cast_id": 14, "profile_path": "/fgHL5HDrxD4zelKQrzQdARy0WSL.jpg", "order": 12}, {"name": "Michael McConnohie", "character": "Tatsu (voice)", "id": 81381, "credit_id": "53f98e3bc3a3687361002749", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Michael Turney", "character": "Danny Pennington", "id": 1356289, "credit_id": "53f98e4ac3a368735b00274e", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Corey Feldman", "character": "Donatello (Voice)", "id": 3034, "credit_id": "52fe42fac3a36847f80314c1", "cast_id": 11, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 15}, {"name": "Skeet Ulrich", "character": "Thug", "id": 22108, "credit_id": "52fe42fac3a36847f80314c5", "cast_id": 13, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 16}], "directors": [{"name": "Steve Barron", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f80314ff", "profile_path": "/3T5EQ8u1yfz3MIAYV1VQHGLVhSC.jpg", "id": 18308}], "vote_average": 6.7, "runtime": 93}, "9691": {"poster_path": "/xAx5MP7Dg4y85pyS7atX6eWk4Qd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30303072, "overview": "Robert Rath (Sylvester Stallone) is a seasoned hitman who just wants out of the business with no back talk...", "video": false, "id": 9691, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Assassins", "tagline": "In the shadows of life, In the business of death, One man found a reason to live...", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "nl", "name": "Nederlands"}], "imdb_id": "tt0112401", "adult": false, "backdrop_path": "/uDnwgH9sFgTST9M06Y1TkBpRTDF.jpg", "production_companies": [{"name": "Donner/Shuler-Donner Productions", "id": 23397}, {"name": "Evansgideon/Lazar", "id": 25061}, {"name": "Silver Pictures", "id": 1885}, {"name": "Canal+", "id": 5358}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1995-10-06", "popularity": 0.798661925644786, "original_title": "Assassins", "budget": 50000000, "cast": [{"name": "Sylvester Stallone", "character": "Robert Rath", "id": 16483, "credit_id": "52fe451cc3a36847f80bd107", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Antonio Banderas", "character": "Miguel Bain", "id": 3131, "credit_id": "52fe451cc3a36847f80bd10b", "cast_id": 2, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 1}, {"name": "Julianne Moore", "character": "Electra", "id": 1231, "credit_id": "52fe451cc3a36847f80bd10f", "cast_id": 3, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 2}, {"name": "Anatoli Davydov", "character": "Nicolai Tashlinkov", "id": 58556, "credit_id": "52fe451cc3a36847f80bd113", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Muse Watson", "character": "Ketcham", "id": 17348, "credit_id": "52fe451cc3a36847f80bd117", "cast_id": 5, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 4}, {"name": "Steve Kahan", "character": "Alan Branch (as Stephen Kahan)", "id": 14328, "credit_id": "52fe451cc3a36847f80bd11b", "cast_id": 6, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 5}, {"name": "Kelly Rowan", "character": "Jennifer, Electra's Neighbor", "id": 47757, "credit_id": "52fe451cc3a36847f80bd11f", "cast_id": 7, "profile_path": "/uxrGUfhLtqZXhy35r4RsHpZNz6Z.jpg", "order": 6}, {"name": "Reed Diamond", "character": "Bob", "id": 31508, "credit_id": "52fe451cc3a36847f80bd123", "cast_id": 8, "profile_path": "/mASm3pG5IzLMQlORD8v7vb8oEly.jpg", "order": 7}, {"name": "Kai Wulff", "character": "Remy", "id": 42146, "credit_id": "52fe451cc3a36847f80bd127", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Kerry Skalsky", "character": "Buyer with Remy", "id": 58557, "credit_id": "52fe451cc3a36847f80bd12b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "James Douglas Haskins", "character": "Buyer with Remy", "id": 58558, "credit_id": "52fe451cc3a36847f80bd12f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Stephen Liska", "character": "Cop", "id": 58559, "credit_id": "52fe451cc3a36847f80bd133", "cast_id": 12, "profile_path": "/aMpEuoFVA5xd3Pbqs97SkFpJjhe.jpg", "order": 11}, {"name": "John Harms", "character": "Cop", "id": 58560, "credit_id": "52fe451cc3a36847f80bd137", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Edward J. Rosen", "character": "Cemetery Caretaker", "id": 58561, "credit_id": "52fe451cc3a36847f80bd13b", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Christina Orchid", "character": "Dowager", "id": 58562, "credit_id": "52fe451cc3a36847f80bd13f", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe451cc3a36847f80bd145", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 5.8, "runtime": 132}, "9693": {"poster_path": "/bi8wiRcc3zaO9ITDOdl8v7JSpir.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69959751, "overview": "In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.", "video": false, "id": 9693, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Children of Men", "tagline": "The future's a thing of the past.", "vote_count": 464, "homepage": "http://www.universalstudiosentertainment.com/children-of-men/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0206634", "adult": false, "backdrop_path": "/c5jNuPA19oGiEmbh8iFeAi6aHMI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Strike Entertainment", "id": 655}, {"name": "Hit & Run Productions", "id": 11429}], "release_date": "2006-09-22", "popularity": 1.37486655549736, "original_title": "Children of Men", "budget": 76000000, "cast": [{"name": "Clive Owen", "character": "Theo Faron", "id": 2296, "credit_id": "52fe451cc3a36847f80bd2b5", "cast_id": 12, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Michael Caine", "character": "Jasper", "id": 3895, "credit_id": "52fe451cc3a36847f80bd307", "cast_id": 31, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Julianne Moore", "character": "Julian", "id": 1231, "credit_id": "52fe451cc3a36847f80bd30b", "cast_id": 32, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 2}, {"name": "Charlie Hunnam", "character": "Patric", "id": 56365, "credit_id": "52fe451cc3a36847f80bd313", "cast_id": 34, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 2}, {"name": "Chiwetel Ejiofor", "character": "Luke", "id": 5294, "credit_id": "52fe451cc3a36847f80bd317", "cast_id": 35, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 2}, {"name": "Clare-Hope Ashitey", "character": "Kee", "id": 64986, "credit_id": "52fe451cc3a36847f80bd30f", "cast_id": 33, "profile_path": "/KChrY0sg1Hc9oP34oX9usztus5.jpg", "order": 3}, {"name": "Danny Huston", "character": "Nigel", "id": 6413, "credit_id": "52fe451dc3a36847f80bd33f", "cast_id": 44, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "Peter Mullan", "character": "Syd", "id": 3064, "credit_id": "52fe451dc3a36847f80bd343", "cast_id": 45, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 7}, {"name": "Juan Gabriel Yacuzzi", "character": "Baby Diego", "id": 58575, "credit_id": "52fe451dc3a36847f80bd34d", "cast_id": 47, "profile_path": "/dwhmmNlZJf0K2wlLw4uipaP9IXx.jpg", "order": 8}, {"name": "Mishal Husain", "character": "Newsreader", "id": 58576, "credit_id": "52fe451dc3a36847f80bd351", "cast_id": 48, "profile_path": null, "order": 9}, {"name": "Rob Curling", "character": "Newsreader", "id": 58577, "credit_id": "52fe451dc3a36847f80bd355", "cast_id": 49, "profile_path": null, "order": 10}, {"name": "Maria McErlane", "character": "Shirley", "id": 58586, "credit_id": "52fe451dc3a36847f80bd359", "cast_id": 50, "profile_path": "/gVuT7x1gVGBRamYGfaWBAP6im9V.jpg", "order": 11}, {"name": "Michael Haughey", "character": "Mr. Griffiths", "id": 24718, "credit_id": "52fe451dc3a36847f80bd35d", "cast_id": 51, "profile_path": null, "order": 12}, {"name": "Paul Sharma", "character": "Ian", "id": 58587, "credit_id": "52fe451dc3a36847f80bd361", "cast_id": 52, "profile_path": "/7JtZRXtmaKdJ2aAPEP1eqmhl7Bt.jpg", "order": 13}, {"name": "Tehmina Sunny", "character": "Zara", "id": 587822, "credit_id": "52fe451dc3a36847f80bd365", "cast_id": 53, "profile_path": "/5z66omtLm5J0Wikz6dU6EafIFtq.jpg", "order": 14}, {"name": "Michael Klesic", "character": "Rado", "id": 188857, "credit_id": "52fe451dc3a36847f80bd369", "cast_id": 54, "profile_path": "/3dmD5B0DNYOCXMrFwcpr3hieoFp.jpg", "order": 15}, {"name": "Ilario Bisi-Pedro", "character": "Cigar Man", "id": 962011, "credit_id": "52fe451dc3a36847f80bd36d", "cast_id": 55, "profile_path": null, "order": 16}, {"name": "Caroline Lena Olsson", "character": "Caroline", "id": 1006160, "credit_id": "53aedc30c3a3682ed80038c1", "cast_id": 85, "profile_path": null, "order": 17}, {"name": "Dhaffer L'Abidine", "character": "Dhafer", "id": 129014, "credit_id": "53aedc8bc3a3682ef10038d7", "cast_id": 86, "profile_path": "/bVksgnm8Wj3RsqV4YgTP9LwME6A.jpg", "order": 18}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe451cc3a36847f80bd2bb", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 7.0, "runtime": 109}, "9697": {"poster_path": "/hzyMUZBN1UgSKGGkQdrRdQPNnfE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42285169, "overview": "Apartment building superintendent Cleveland Heep rescues what he thinks is a young woman from the pool he maintains. When he discovers that she is actually a character from a bedtime story who is trying to make the journey back to her home, he works with his tenants to protect his new friend from the creatures that are determined to keep her in our world.", "video": false, "id": 9697, "genres": [{"id": 53, "name": "Thriller"}], "title": "Lady in the Water", "tagline": "Time is running out for a happy ending.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452637", "adult": false, "backdrop_path": "/kGojOHeReLbR6m5PgTtYIqM26ph.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "Warner Bros.", "id": 6194}, {"name": "Blinding Edge Pictures", "id": 12236}], "release_date": "2006-07-21", "popularity": 0.509428655378975, "original_title": "Lady in the Water", "budget": 75000000, "cast": [{"name": "Paul Giamatti", "character": "Cleveland Heep", "id": 13242, "credit_id": "52fe451dc3a36847f80bd58f", "cast_id": 1, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 0}, {"name": "Jeffrey Wright", "character": "Mr. Dury", "id": 2954, "credit_id": "52fe451dc3a36847f80bd593", "cast_id": 3, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 1}, {"name": "Bob Balaban", "character": "Harry Farber", "id": 12438, "credit_id": "52fe451dc3a36847f80bd597", "cast_id": 4, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 2}, {"name": "Sarita Choudhury", "character": "Anna Ran", "id": 20275, "credit_id": "52fe451dc3a36847f80bd59b", "cast_id": 5, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 3}, {"name": "Cindy Cheung", "character": "Young-Soon Choi", "id": 58619, "credit_id": "52fe451dc3a36847f80bd59f", "cast_id": 6, "profile_path": "/7BMISfQFjHTBO1yFPYNISHpg0vG.jpg", "order": 4}, {"name": "M. Night Shyamalan", "character": "Vick Ran", "id": 11614, "credit_id": "52fe451dc3a36847f80bd5a3", "cast_id": 7, "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "order": 5}, {"name": "Freddy Rodr\u00edguez", "character": "Reggie", "id": 6862, "credit_id": "52fe451dc3a36847f80bd5a7", "cast_id": 8, "profile_path": "/iP6RXaUNTj953RoL8jK3iTV2441.jpg", "order": 6}, {"name": "Bill Irwin", "character": "Mr. Leeds", "id": 58549, "credit_id": "52fe451dc3a36847f80bd5ab", "cast_id": 9, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 7}, {"name": "Mary Beth Hurt", "character": "Mrs. Bell", "id": 54782, "credit_id": "52fe451dc3a36847f80bd5af", "cast_id": 10, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 8}, {"name": "Noah Gray-Cabey", "character": "Joey Dury", "id": 17302, "credit_id": "52fe451dc3a36847f80bd5b3", "cast_id": 11, "profile_path": "/YjgGNEvgKfayP9OAVhWOiWaAUa.jpg", "order": 9}, {"name": "Joseph D. Reitman", "character": "Long Haired Smoker", "id": 58620, "credit_id": "52fe451dc3a36847f80bd5b7", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Jared Harris", "character": "Goatee Smoker", "id": 15440, "credit_id": "52fe451dc3a36847f80bd5bb", "cast_id": 13, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 11}, {"name": "Grant Monohon", "character": "Emaciated Smoker", "id": 7463, "credit_id": "52fe451dc3a36847f80bd5bf", "cast_id": 14, "profile_path": "/6zGv9HQvuGjsqBB0qetoAd3RYVA.jpg", "order": 12}, {"name": "John Boyd", "character": "One-Eyebrow Smoker", "id": 58621, "credit_id": "52fe451dc3a36847f80bd5c3", "cast_id": 15, "profile_path": "/28TTucFQTEY2TU6GmKoTYP5oXTP.jpg", "order": 13}, {"name": "Bryce Dallas Howard", "character": "Story", "id": 18997, "credit_id": "52fe451dc3a36847f80bd5eb", "cast_id": 22, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 14}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe451dc3a36847f80bd5c9", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 5.4, "runtime": 110}, "251": {"poster_path": "/rtxy3cplRFPUvruZajpcoxOQ7bi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 505000000, "overview": "Gothamites Sam and Molly see their romance shattered when a street thug kills Sam during a mugging. But love endures beyond the grave when a spectral Sam learns that Molly is in danger and he must find a way to warn her before she suffers his fate.", "video": false, "id": 251, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Ghost", "tagline": "A love that will last forever.", "vote_count": 322, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099653", "adult": false, "backdrop_path": "/rgyMubnjg883VdJUKKwASijyAFc.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1990-07-12", "popularity": 0.526287602265523, "original_title": "Ghost", "budget": 22000000, "cast": [{"name": "Patrick Swayze", "character": "Sam Wheat", "id": 723, "credit_id": "52fe422dc3a36847f8009f2f", "cast_id": 2, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 0}, {"name": "Demi Moore", "character": "Molly Jensen", "id": 3416, "credit_id": "52fe422dc3a36847f8009f33", "cast_id": 3, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Tony Goldwyn", "character": "Carl Bruner", "id": 3417, "credit_id": "52fe422dc3a36847f8009f9f", "cast_id": 25, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 3}, {"name": "Whoopi Goldberg", "character": "Oda Mae Brown", "id": 2395, "credit_id": "52fe422dc3a36847f8009fa3", "cast_id": 26, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 4}, {"name": "Vincent Schiavelli", "character": "Subway Ghost", "id": 3418, "credit_id": "52fe422dc3a36847f8009f37", "cast_id": 4, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 5}, {"name": "Vivian Bonnell", "character": "Ortisha", "id": 3419, "credit_id": "52fe422dc3a36847f8009f3b", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Armelia McQueen", "character": "Oda Mae's Sister", "id": 3420, "credit_id": "52fe422dc3a36847f8009f3f", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Gail Boggs", "character": "Oda Mae's Sister", "id": 3422, "credit_id": "52fe422dc3a36847f8009f43", "cast_id": 7, "profile_path": null, "order": 8}, {"name": "Stephen Root", "character": "Police Sgt.", "id": 17401, "credit_id": "52fe422dc3a36847f8009f47", "cast_id": 8, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 9}, {"name": "Angelina Estrada", "character": "Rosa Santiago", "id": 3424, "credit_id": "52fe422dc3a36847f8009f4b", "cast_id": 9, "profile_path": null, "order": 9}, {"name": "Augie Blunt", "character": "Orlando", "id": 3425, "credit_id": "52fe422dc3a36847f8009f4f", "cast_id": 10, "profile_path": null, "order": 10}, {"name": "Rick Aviles", "character": "Willie Lopez", "id": 3432, "credit_id": "52fe422dc3a36847f8009f93", "cast_id": 22, "profile_path": "/p4do7d8TKPbdQ2IkF5vx8uHLh93.jpg", "order": 12}, {"name": "Phil Leeds", "character": "Emergency Room Ghost", "id": 3433, "credit_id": "52fe422dc3a36847f8009f97", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Alma Beltran", "character": "Woman Ghost", "id": 3434, "credit_id": "52fe422dc3a36847f8009f9b", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe422dc3a36847f8009f2b", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.5, "runtime": 127}, "58857": {"poster_path": "/7Vr1c98X9JaKW6K95Xm6KBqiqDg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}], "revenue": 17054213, "overview": "Cult director Takeshi Miike delivers a bravado period action film set at the end of Japan's feudal era in which a group of unemployed samurai are enlisted to bring down a sadistic lord and prevent him from ascending to the throne and plunging the country into a war-torn future.", "video": false, "id": 58857, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "13 Assassins", "tagline": "Take up your sword.", "vote_count": 83, "homepage": "http://www.13assassins.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1436045", "adult": false, "backdrop_path": "/3XNpANIIv8O49oTD31suUdhINHH.jpg", "production_companies": [{"name": "Toho Company", "id": 882}, {"name": "Sedic International", "id": 7912}], "release_date": "2010-09-09", "popularity": 0.592108950136495, "original_title": "J\u00fbsan-nin no shikaku", "budget": 6000000, "cast": [{"name": "K\u014dji Yakusho", "character": "Shinzaemon Shimada", "id": 18056, "credit_id": "52fe4976c3a36847f819b419", "cast_id": 2, "profile_path": "/mG4niNLZbyKHEfCA7EJP8vsi7rV.jpg", "order": 0}, {"name": "Takayuki Yamada", "character": "Shinrouko", "id": 74377, "credit_id": "52fe4976c3a36847f819b41d", "cast_id": 3, "profile_path": "/piORAl3VEo7U26ql0GiDStrJqWO.jpg", "order": 1}, {"name": "Y\u00fbsuke Iseya", "character": "Koyata", "id": 70209, "credit_id": "52fe4976c3a36847f819b421", "cast_id": 4, "profile_path": "/5GhcLQLicLe8xdJlnV7ic7Dtjr5.jpg", "order": 2}, {"name": "Gor\u00f4 Inagaki", "character": "Lord Naritsugu Matsudaira", "id": 228466, "credit_id": "52fe4976c3a36847f819b425", "cast_id": 5, "profile_path": "/e0XFhvME3jjxbCCQxyCRshznnFf.jpg", "order": 3}, {"name": "Kazue Fukiishi", "character": "Tsuya / Upashi", "id": 58601, "credit_id": "52fe4976c3a36847f819b429", "cast_id": 6, "profile_path": "/lI7rlsaDa7H4xSAtYQNckEV48ie.jpg", "order": 4}, {"name": "Hiroki Matsukata", "character": "Kuranaga", "id": 228560, "credit_id": "52fe4976c3a36847f819b42d", "cast_id": 7, "profile_path": "/sIrwOKmpNVOZWivWCwUwHZZAWEm.jpg", "order": 5}, {"name": "Tsuyoshi Ihara", "character": "", "id": 33516, "credit_id": "54be7398c3a3687c40006e6f", "cast_id": 12, "profile_path": "/5MLcKIGrfIDbxlc7u3XDrPOAj1M.jpg", "order": 6}, {"name": "Ikki Sawamura", "character": "", "id": 70124, "credit_id": "54be739fc3a3681da0004297", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Arata Furuta", "character": "", "id": 146785, "credit_id": "54be73a59251416e6000691d", "cast_id": 14, "profile_path": "/lghQZHrGVED17jCQxOiLnKzfCQQ.jpg", "order": 8}, {"name": "Sousuke Takaoka", "character": "", "id": 105405, "credit_id": "54be73af9251411d6a00de98", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Seiji Rokkaku", "character": "", "id": 1179321, "credit_id": "54be73ba9251416eae00647d", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Kazuki Namioka", "character": "", "id": 226738, "credit_id": "54be73c7c3a3681421009cba", "cast_id": 17, "profile_path": "/gncP6GrWoM94a6kfrXcb3gWcnsa.jpg", "order": 11}, {"name": "K\u00f4en Kond\u00f4", "character": "", "id": 107106, "credit_id": "54be73cec3a368389c006e97", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Yuma Ishigaki", "character": "", "id": 46365, "credit_id": "54be73d7c3a3686c6100cbd6", "cast_id": 19, "profile_path": "/viSZEbZcAp4NqsNIe1OnRKmHUrJ.jpg", "order": 13}, {"name": "Masataka Kubota", "character": "", "id": 1087773, "credit_id": "54be73e4c3a3681421009cc2", "cast_id": 20, "profile_path": "/2EuoN4R2DCFjQlQsHUjke058d3o.jpg", "order": 14}, {"name": "Masachika Ichimura", "character": "", "id": 9717, "credit_id": "54be73eec3a3686c6b00f7dc", "cast_id": 21, "profile_path": "/PewyrEczJmfsef4FB8zln50Hre.jpg", "order": 15}, {"name": "K\u00f4shir\u00f4 Matsumoto", "character": "", "id": 228527, "credit_id": "54be73ffc3a3687c40006e7c", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Masaaki Uchino", "character": "", "id": 999725, "credit_id": "54be740e9251416eae006485", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Ken Mitsuishi", "character": "", "id": 120351, "credit_id": "54be74149251411d7700d443", "cast_id": 24, "profile_path": "/qdUdKjaT2Ho20JoB5ChnfnReN8z.jpg", "order": 18}, {"name": "Ittoku Kishibe", "character": "", "id": 13281, "credit_id": "54be742292514148b000a7e2", "cast_id": 25, "profile_path": "/zisEtz9j0k1AjExiSsgxMdhOYMh.jpg", "order": 19}, {"name": "Mikijiro Hira", "character": "", "id": 118408, "credit_id": "54be742ac3a3681da00042b4", "cast_id": 26, "profile_path": "/sgyM0a3jqFVuNsEFBC8QleKQPN.jpg", "order": 20}, {"name": "Mitsuki Tanimura", "character": "", "id": 118577, "credit_id": "54be74349251411d6a00de9e", "cast_id": 27, "profile_path": "/44o4Coq0GficqAd4tsul39T903P.jpg", "order": 21}, {"name": "Takumi Saito", "character": "", "id": 115700, "credit_id": "54be743c9251416e60006935", "cast_id": 28, "profile_path": "/7fXgSjScY8HjyVajMZNi9vvIuOR.jpg", "order": 22}, {"name": "Shinnosuke Abe", "character": "", "id": 1039311, "credit_id": "54be745fc3a3681da00042b9", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Meguru Kat\u00f4", "character": "", "id": 150773, "credit_id": "54be7468c3a368389c006ea5", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Kazutoshi Yokoyama", "character": "", "id": 1095960, "credit_id": "54be7474c3a368389c006ea9", "cast_id": 31, "profile_path": "/hSrVYQeeWbZfv96CnkXNCq1DQ5q.jpg", "order": 25}], "directors": [{"name": "Takashi Miike", "department": "Directing", "job": "Director", "credit_id": "52fe4976c3a36847f819b415", "profile_path": "/hFpUsxCjrZNiyHAGsIPWlZl2uTI.jpg", "id": 17282}], "vote_average": 7.0, "runtime": 141}, "1687": {"poster_path": "/ctKDFrtD5WLnUPehQDDWt8lOkV6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12348905, "overview": "The world is shocked by the appearance of two talking chimpanzees, who arrived mysteriously in a U.S. spacecraft. They become the toast of society; but one man believes them to be a threat to the human race.", "video": false, "id": 1687, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Escape from the Planet of the Apes", "tagline": "Meet baby Milo who has Washington terrified.", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2BQc7pXBU7zWGWMJDQBDuV5X8ra.jpg", "poster_path": "/n9nUdnx1awdQeHC6FTiNohr2fiT.jpg", "id": 1709, "name": "Planet of the Apes (Original) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0067065", "adult": false, "backdrop_path": "/ky9wlRARSDYgHVWU39iXCappHLx.jpg", "production_companies": [{"name": "APJAC Productions", "id": 12943}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1971-05-20", "popularity": 0.569004477701496, "original_title": "Escape from the Planet of the Apes", "budget": 2500000, "cast": [{"name": "Roddy McDowall", "character": "Cornelius", "id": 7505, "credit_id": "52fe430cc3a36847f8036841", "cast_id": 1, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 0}, {"name": "Kim Hunter", "character": "Dr. Zira", "id": 10539, "credit_id": "52fe430cc3a36847f8036845", "cast_id": 2, "profile_path": "/nB44EysedphcIWftSqyyG2qBYk8.jpg", "order": 1}, {"name": "Bradford Dillman", "character": "Dr. Lewis Dixon", "id": 18647, "credit_id": "52fe430cc3a36847f8036849", "cast_id": 3, "profile_path": "/zmoOkQTh6c7VwQlEl86r73pYFFw.jpg", "order": 2}, {"name": "Natalie Trundy", "character": "Dr. Stephanie 'Stevie' Branton", "id": 18648, "credit_id": "52fe430cc3a36847f803684d", "cast_id": 4, "profile_path": "/50ljrtCFeFQRFURoSgf1hrgdCPw.jpg", "order": 3}, {"name": "Eric Braeden", "character": "Dr. Otto Hasslein", "id": 8544, "credit_id": "52fe430cc3a36847f8036851", "cast_id": 5, "profile_path": "/6dEqM2zylkopoZtr6quXW5i7W0V.jpg", "order": 4}, {"name": "William Windom", "character": "The President", "id": 8499, "credit_id": "52fe430cc3a36847f8036855", "cast_id": 6, "profile_path": "/nTqbMx3o9rk6Q5PfS3fwh5LEbGw.jpg", "order": 5}, {"name": "Sal Mineo", "character": "Dr. Milo", "id": 2770, "credit_id": "52fe430cc3a36847f8036859", "cast_id": 7, "profile_path": "/eqI5jNcsntOCtSjTUdacR72grlI.jpg", "order": 6}, {"name": "Albert Salmi", "character": "E-1", "id": 12692, "credit_id": "52fe430cc3a36847f803685d", "cast_id": 8, "profile_path": "/z7dpRaZTt3ETMx48cvMBgcQAN97.jpg", "order": 7}, {"name": "Jason Evers", "character": "E-2", "id": 16089, "credit_id": "52fe430cc3a36847f8036861", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "John Randolph", "character": "Committee Chairman", "id": 18649, "credit_id": "52fe430cc3a36847f8036865", "cast_id": 10, "profile_path": "/4mfEMVfzxPuRRcVBtcPyIXF5KoE.jpg", "order": 9}, {"name": "M. Emmet Walsh", "character": "Aide", "id": 588, "credit_id": "54a1fba19251414e28008db2", "cast_id": 30, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 10}, {"name": "Ricardo Montalban", "character": "Armando", "id": 1793, "credit_id": "54a202209251414e28008ed4", "cast_id": 31, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 11}], "directors": [{"name": "Don Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f803686b", "profile_path": "/eE5H6GSOgqCM5rWHMTDbMYMTXBb.jpg", "id": 9108}], "vote_average": 6.2, "runtime": 98}, "9714": {"poster_path": "/z6ugEdjGuY4qcX1ymdV2CTVSvKN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "9-year-old Alex Pruitt is home alone with the chicken pox. Turns out, due to a mix-up among nefarious spies, Alex was given a toy car concealing a top-secret microchip. Now Alex must fend off the spies as they try break into his house to get it back.", "video": false, "id": 9714, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Home Alone 3", "tagline": "Ready for more. Much more.", "vote_count": 131, "homepage": "http://www.ha3.com/", "belongs_to_collection": {"backdrop_path": "/ghu5A45jtbizDTwHb1iJWVTdmnF.jpg", "poster_path": "/zYPsleQJo1n1rBPlecJBRb3iwSO.jpg", "id": 9888, "name": "Home Alone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119303", "adult": false, "backdrop_path": "/gt8Pe0H2kdm99yuHYDs8goKbTkn.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1997-12-12", "popularity": 1.15475520232083, "original_title": "Home Alone 3", "budget": 32000000, "cast": [{"name": "Alex D. Linz", "character": "Alex Pruitt", "id": 15789, "credit_id": "52fe4520c3a36847f80bdfd3", "cast_id": 1, "profile_path": "/fkFBjpfC3Wm97SozMrIERc01uyt.jpg", "order": 0}, {"name": "Olek Krupa", "character": "Peter Beaupre", "id": 53573, "credit_id": "52fe4520c3a36847f80bdfd7", "cast_id": 2, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 1}, {"name": "Rya Kihlstedt", "character": "Alice Ribbons", "id": 58724, "credit_id": "52fe4520c3a36847f80bdfdb", "cast_id": 3, "profile_path": "/juIQskVzdLjXfyLgJMg7pitDR7M.jpg", "order": 2}, {"name": "Lenny Von Dohlen", "character": "Burton Jernigan", "id": 15799, "credit_id": "52fe4520c3a36847f80bdfdf", "cast_id": 4, "profile_path": "/7duYOdfUgAX7JL1zsXaKZEhuEVY.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Molly Pruitt", "id": 1245, "credit_id": "52fe4520c3a36847f80bdfe9", "cast_id": 8, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Seth Smith", "character": "Stan Pruitt", "id": 134712, "credit_id": "52fe4520c3a36847f80bdfff", "cast_id": 12, "profile_path": "/uHGa5v9V597j1UIDWAz29771U8P.jpg", "order": 5}, {"name": "Haviland Morris", "character": "Karen Pruitt", "id": 16181, "credit_id": "53f7f6bac3a36873610005d0", "cast_id": 13, "profile_path": "/4lFaYG2lyob69bFXBZJ1GdkZjwj.jpg", "order": 6}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe4520c3a36847f80bdfe5", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.3, "runtime": 102}, "1523": {"poster_path": "/nLVPcPrymafgVv64ZfaHp90KGKx.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48027970, "overview": "Nicholas Garrigan, a young doctor from Scotland, decides it is time for an adventure after he finishes his formal education. He decides to try his luck in Uganda. He arrives during the downfall of president Obote. General Idi Amin comes to power and asks him to become his personal doctor. When will Nicholas realize Amin is not the friend of the nation, but a brutal dictator?", "video": false, "id": 1523, "genres": [{"id": 18, "name": "Drama"}], "title": "The Last King of Scotland", "tagline": "Charming. Magnetic. Murderous.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0455590", "adult": false, "backdrop_path": "/p7WgP9egrM3hEogrhrLiHA8QD1r.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "DNA Films", "id": 284}, {"name": "Filmfour", "id": 6705}, {"name": "UK Film Council", "id": 2452}, {"name": "Scottish Screen", "id": 698}, {"name": "Cowboy Films", "id": 245}, {"name": "Slate Films", "id": 20369}, {"name": "Tatfilm", "id": 20370}], "release_date": "2006-10-18", "popularity": 0.596925712973838, "original_title": "The Last King of Scotland", "budget": 6000000, "cast": [{"name": "Forest Whitaker", "character": "Idi Amin", "id": 2178, "credit_id": "52fe42fac3a36847f8031577", "cast_id": 2, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 0}, {"name": "James McAvoy", "character": "Dr. Nicholas Garrigan", "id": 5530, "credit_id": "52fe42fac3a36847f803157b", "cast_id": 3, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Simon McBurney", "character": "British Diplomat", "id": 16358, "credit_id": "52fe42fac3a36847f803157f", "cast_id": 4, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 2}, {"name": "Gillian Anderson", "character": "Sarah Merrit", "id": 12214, "credit_id": "52fe42fac3a36847f80315f5", "cast_id": 24, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 3}, {"name": "Kerry Washington", "character": "Kay Amin", "id": 11703, "credit_id": "52fe42fbc3a36847f80315f9", "cast_id": 25, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 4}, {"name": "David Oyelowo", "character": "Dr. Thomas Junju", "id": 35013, "credit_id": "52fe42fbc3a36847f80315fd", "cast_id": 26, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 5}, {"name": "Abby Mukiibi Nkaaga", "character": "Masanga", "id": 35014, "credit_id": "52fe42fbc3a36847f8031601", "cast_id": 27, "profile_path": "/pzdNP1SchevZg49hSuy4bQzK0Ya.jpg", "order": 6}, {"name": "Adam Kotz", "character": "Dr. David Merrit", "id": 35015, "credit_id": "52fe42fbc3a36847f8031605", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Barbara Rafferty", "character": "Mrs. Garrigan", "id": 35018, "credit_id": "52fe42fbc3a36847f803160d", "cast_id": 31, "profile_path": "/udNUPk7YctlEaYNXNbEQ5kbdNYS.jpg", "order": 8}, {"name": "David Ashton", "character": "Dr. Garrigan - Senior", "id": 35017, "credit_id": "530b6fc09251411108004fb7", "cast_id": 37, "profile_path": "/ypmKMcnGHoAvKLRuJjDTBB6ZjWW.jpg", "order": 9}, {"name": "Sarah Nagayi", "character": "Tolu", "id": 1033153, "credit_id": "52fe42fbc3a36847f8031611", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Stephen Rwangyezi", "character": "Jonah Wasswa", "id": 962605, "credit_id": "530b6f3792514168dc00103c", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Sam Okelo", "character": "Bonny", "id": 984315, "credit_id": "530b6f649251411111005196", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Chris Wilson", "character": "Perkins", "id": 54654, "credit_id": "530b6f9392514168dc001042", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Dick Stockley", "character": "Times Journalist", "id": 1296173, "credit_id": "530b6fa59251411114004e8a", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031573", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 7.2, "runtime": 121}, "9718": {"poster_path": "/hi8whfL7t6cL2LITLJjzJ7UWuZA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162966177, "overview": "Lifelong friends and national idols Ricky Bobby and Cal Naughton Jr. have earned their NASCAR stripes with their uncanny knack of finishing races in the first and second slots, respectively, and slinging catchphrases like \"Shake and bake!\" But when a rival French driver coasts onto the track to challenge their records, they'll have to floor it to retain their top-dog status.", "video": false, "id": 9718, "genres": [{"id": 35, "name": "Comedy"}], "title": "Talladega Nights: The Ballad of Ricky Bobby", "tagline": "The story of a man who could only count to #1", "vote_count": 109, "homepage": "http://www.sonypictures.com/homevideo/talladeganights/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0415306", "adult": false, "backdrop_path": "/glBFNYHKkOZpKBe7Io5mjUcGekV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2006-08-04", "popularity": 0.809316652738974, "original_title": "Talladega Nights: The Ballad of Ricky Bobby", "budget": 72500000, "cast": [{"name": "Will Ferrell", "character": "Ricky Bobby", "id": 23659, "credit_id": "52fe4521c3a36847f80be1a5", "cast_id": 8, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "John C. Reilly", "character": "Cal Naughton, Jr.", "id": 4764, "credit_id": "52fe4521c3a36847f80be1a9", "cast_id": 9, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 1}, {"name": "Gary Cole", "character": "Reese Bobby", "id": 21163, "credit_id": "52fe4521c3a36847f80be189", "cast_id": 1, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Austin Crim", "character": "10-Year-Old Cal", "id": 58736, "credit_id": "52fe4521c3a36847f80be19d", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jake Johnson", "character": "5-Year-Old Ricky", "id": 125168, "credit_id": "52fe4521c3a36847f80be21d", "cast_id": 31, "profile_path": null, "order": 5}, {"name": "Leslie Bibb", "character": "Carley Bobby", "id": 57451, "credit_id": "52fe4521c3a36847f80be219", "cast_id": 30, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 7}, {"name": "Amy Adams", "character": "Susan", "id": 9273, "credit_id": "52fe4521c3a36847f80be221", "cast_id": 32, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 7}, {"name": "Jane Lynch", "character": "Lucy Bobby", "id": 43775, "credit_id": "52fe4521c3a36847f80be18d", "cast_id": 2, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 8}, {"name": "David Koechner", "character": "Hershell", "id": 28638, "credit_id": "52fe4521c3a36847f80be1b1", "cast_id": 11, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 9}, {"name": "Adam McKay", "character": "Terry Cheveaux", "id": 55710, "credit_id": "52fe4521c3a36847f80be1ad", "cast_id": 10, "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "order": 11}, {"name": "Lorrie Bess Crumley", "character": "Schoolteacher", "id": 58734, "credit_id": "52fe4521c3a36847f80be195", "cast_id": 4, "profile_path": null, "order": 12}, {"name": "Jack McBrayer", "character": "Glenn", "id": 58737, "credit_id": "52fe4521c3a36847f80be1b9", "cast_id": 13, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 15}, {"name": "Michael Clarke Duncan", "character": "Lucius Washington", "id": 61981, "credit_id": "52fe4521c3a36847f80be1a1", "cast_id": 7, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 16}, {"name": "Ian Roberts", "character": "Kyle", "id": 13101, "credit_id": "52fe4521c3a36847f80be1b5", "cast_id": 12, "profile_path": "/yVLXoRloTMZGoZIoaFLcyPrp1yV.jpg", "order": 16}, {"name": "Jason Davis", "character": "Waffle House Manager", "id": 58733, "credit_id": "52fe4521c3a36847f80be191", "cast_id": 3, "profile_path": "/l1Vv7xhGGi9u2thzD4glDxzlm1L.jpg", "order": 17}, {"name": "John D. King", "character": "ESPN Reporter", "id": 58738, "credit_id": "52fe4521c3a36847f80be1bd", "cast_id": 14, "profile_path": null, "order": 17}, {"name": "Luke Bigham", "character": "10-Year-Old Ricky", "id": 58735, "credit_id": "52fe4521c3a36847f80be199", "cast_id": 5, "profile_path": null, "order": 18}, {"name": "Pat Hingle", "character": "Mr. Dennit, Sr.", "id": 3798, "credit_id": "52fe4521c3a36847f80be1c1", "cast_id": 15, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 18}, {"name": "Sacha Baron Cohen", "character": "Jean Girard", "id": 6730, "credit_id": "52fe4521c3a36847f80be225", "cast_id": 33, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 18}, {"name": "Andy Richter", "character": "Gregory", "id": 28637, "credit_id": "52fe4521c3a36847f80be229", "cast_id": 34, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 19}, {"name": "Mos Def", "character": "Mos Def", "id": 4239, "credit_id": "52fe4521c3a36847f80be22d", "cast_id": 35, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 20}, {"name": "Elvis Costello", "character": "Elvis Costello", "id": 47990, "credit_id": "52fe4521c3a36847f80be231", "cast_id": 36, "profile_path": "/iwSEIAAfvT7ZLvWgi9zqIyfs2BM.jpg", "order": 21}, {"name": "Ed Lauter", "character": "John Hanafin", "id": 21523, "credit_id": "52fe4521c3a36847f80be235", "cast_id": 37, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 22}, {"name": "Molly Shannon", "character": "Mrs. Dennit", "id": 28640, "credit_id": "53f589320e0a267f8d004570", "cast_id": 38, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 23}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe4521c3a36847f80be1c7", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.2, "runtime": 116}, "75258": {"poster_path": "/4oBoAsIGEw9z4R5XqhtuVmpznGk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "First appearing in J.M. Barrie's 1904 stage play and subsequent novel, Peter Pan or The Boy Who Wouldn't Grow Up, the fictional Tinker Bell, a fairy, is the central character in the \"Disney Fairies\" series of computer-animated television and films produced by DisneyToon Studios. The fourth installment of the series is Tinker Bell and the Mysterious Winter Woods. Each of the productions uses one of the four seasons as a subplot for the fairies' latest escapades, with \"winter\" closing out the \"year.\"", "video": false, "id": 75258, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Secret of the Wings", "tagline": "Two Worlds. One Magical Secret.", "vote_count": 82, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nTEOjP7JpFa9VZlawzqNBy4g5KY.jpg", "id": 315595, "name": "Tinker Bell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1217213", "adult": false, "backdrop_path": "/wMpL6qA67gTupcwXV8w6VIJzLxa.jpg", "production_companies": [{"name": "Prana Animation Studios", "id": 22135}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2012-10-23", "popularity": 1.48464326987156, "original_title": "Secret of the Wings", "budget": 0, "cast": [{"name": "Mae Whitman", "character": "Tinker Bell", "id": 52404, "credit_id": "52fe48f9c3a368484e1141f3", "cast_id": 3, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 0}, {"name": "Lucy Liu", "character": "Silvermist (voice)", "id": 140, "credit_id": "52fe48f9c3a368484e1141f7", "cast_id": 4, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Jesse McCartney", "character": "Terence", "id": 49915, "credit_id": "52fe48f9c3a368484e114201", "cast_id": 7, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 2}, {"name": "Lucy Hale", "character": "Periwinkle", "id": 205307, "credit_id": "52fe48f9c3a368484e114205", "cast_id": 8, "profile_path": "/osMiB2nzn0Dedtv0AkyOCDuNmqb.jpg", "order": 3}, {"name": "Anjelica Huston", "character": "Queen Clarion", "id": 5657, "credit_id": "52fe48f9c3a368484e114209", "cast_id": 9, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 4}, {"name": "Matt Lanter", "character": "Sled", "id": 34202, "credit_id": "52fe48f9c3a368484e11420d", "cast_id": 10, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 5}, {"name": "Megan Hilty", "character": "Rosetta", "id": 146748, "credit_id": "52fe48f9c3a368484e114211", "cast_id": 11, "profile_path": "/1mmJSmnMjL7RS93ndFBJnPsAXvf.jpg", "order": 6}, {"name": "Pamela Adlon", "character": "Vidia", "id": 21063, "credit_id": "52fe48f9c3a368484e114215", "cast_id": 12, "profile_path": "/8zunKeNg9XTpmDQjokeEi3K6hvG.jpg", "order": 7}, {"name": "Raven-Symon\u00e9", "character": "Iridessa", "id": 66896, "credit_id": "52fe48f9c3a368484e114219", "cast_id": 13, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 8}, {"name": "Angela Bartys", "character": "Fawn", "id": 93842, "credit_id": "52fe48f9c3a368484e114221", "cast_id": 15, "profile_path": "/iOt35bRDbdOOXVeW5b3ElfOowK7.jpg", "order": 10}, {"name": "Timothy Dalton", "character": "Lord Milori", "id": 10669, "credit_id": "5430f2e0c3a36811430011e7", "cast_id": 25, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 11}, {"name": "Jeff Bennett", "character": "Dewey / Clank", "id": 34982, "credit_id": "5430f30bc3a36831ac002914", "cast_id": 26, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 12}, {"name": "Debby Ryan", "character": "Spike", "id": 123846, "credit_id": "5430f3540e0a2658b2001229", "cast_id": 27, "profile_path": "/x4NZXxKM0B8fI84OvqeLN9W44gL.jpg", "order": 13}, {"name": "Grey DeLisle", "character": "Gliss", "id": 15761, "credit_id": "5430f372c3a3681091001206", "cast_id": 28, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 14}, {"name": "Rob Paulsen", "character": "Bobble", "id": 43125, "credit_id": "5430f38a0e0a265872001248", "cast_id": 29, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 15}, {"name": "Dee Bradley Baker", "character": "Additional Voices", "id": 23680, "credit_id": "5430f3a50e0a26464300294f", "cast_id": 30, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 16}], "directors": [{"name": "Roberts Gannaway", "department": "Directing", "job": "Director", "credit_id": "52fe48f9c3a368484e114227", "profile_path": "/VtgixrvPeTluyAB1po1hY3W6oA.jpg", "id": 210053}, {"name": "Peggy Holmes", "department": "Directing", "job": "Director", "credit_id": "52fe48f9c3a368484e11422d", "profile_path": null, "id": 80672}], "vote_average": 6.5, "runtime": 92}, "9725": {"poster_path": "/pm3Xco3FqxJ7qe6syRxZ8WONljQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Five years after the horrible bloodbath at Camp Crystal Lake, it seems Jason Voorhees and his demented mother are in the past. Paul opens up a new camp close to the infamous site, ignoring warnings to stay away, and a sexually-charged group of counselors follow -- including child psychologist major Ginny. But Jason has been hiding out all this time, and now he's ready for revenge.", "video": false, "id": 9725, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Friday the 13th Part 2", "tagline": "The body count continues...", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082418", "adult": false, "backdrop_path": "/fr7h9vSacOHqe7l1X3Kbj8a2See.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1981-05-01", "popularity": 0.856399184325751, "original_title": "Friday the 13th Part 2", "budget": 0, "cast": [{"name": "Amy Steel", "character": "Ginny Field", "id": 58710, "credit_id": "52fe4522c3a36847f80be573", "cast_id": 1, "profile_path": "/mO8bYH4O6LnYW9wOTWm9CKzGToU.jpg", "order": 0}, {"name": "John Furey", "character": "Paul Holt", "id": 55571, "credit_id": "52fe4522c3a36847f80be577", "cast_id": 2, "profile_path": "/dttETPmEg7mt39T9URx19IedPLD.jpg", "order": 1}, {"name": "Adrienne King", "character": "Alice Hardy", "id": 37470, "credit_id": "52fe4522c3a36847f80be57b", "cast_id": 3, "profile_path": "/xCS2BI8ulvypH1cNVtMGwwr50zt.jpg", "order": 2}, {"name": "Kirsten Baker", "character": "Terri", "id": 58711, "credit_id": "52fe4522c3a36847f80be57f", "cast_id": 4, "profile_path": "/4ERXWP4D7wRS90k4M0YMUtZcAYq.jpg", "order": 3}, {"name": "Betsy Palmer", "character": "Mrs. Pamela Voorhees", "id": 37469, "credit_id": "52fe4522c3a36847f80be5a7", "cast_id": 11, "profile_path": "/fobAvVbDO5InXgZT2AoVduefQKj.jpg", "order": 4}, {"name": "Lauren-Marie Taylor", "character": "Vickie", "id": 1048670, "credit_id": "52fe4522c3a36847f80be5ab", "cast_id": 12, "profile_path": "/36zBTF6UfIq9moVmPOh7dekmczh.jpg", "order": 5}, {"name": "Walt Gorney", "character": "Crazy Ralph", "id": 1014310, "credit_id": "52fe4522c3a36847f80be5af", "cast_id": 13, "profile_path": "/uUyk6drqyF7y76eSzX8QpfuTKUj.jpg", "order": 6}, {"name": "Stuart Charno", "character": "Ted", "id": 55931, "credit_id": "533863d49251417da7002f9c", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Marta Kober", "character": "Sandra", "id": 92758, "credit_id": "533863f59251417dad002f48", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Russell Todd", "character": "Scott", "id": 102436, "credit_id": "533864119251417daa002fff", "cast_id": 16, "profile_path": "/olSzNmPi4EuahT7SK2VZj7xde6C.jpg", "order": 9}, {"name": "Tom McBride", "character": "Mark", "id": 1036511, "credit_id": "5338642f9251417d9e00302b", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Bill Randolph", "character": "Jeff", "id": 1234924, "credit_id": "533864479251417da4002fd6", "cast_id": 18, "profile_path": null, "order": 11}], "directors": [{"name": "Steve Miner", "department": "Directing", "job": "Director", "credit_id": "52fe4522c3a36847f80be585", "profile_path": "/yk90jxBifKosxEyP8CITJk1BTtt.jpg", "id": 58712}], "vote_average": 6.8, "runtime": 87}, "9726": {"poster_path": "/xxVoHo9Z9CZzRdkzj1IxrWYTQWT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Max Skinner (Russell Crowe) is a highly successful investment expert with no time for life outside work. When his estranged uncle dies, Max inherits the vineyard in France where he grew up as a child, and his first intention is to sell the vineyard as quickly as possible. But after spending unexpected time at the Vineyard in France, he discovers a part of himself that he had lost and experiences romance and a blossoming new love affair with a beautiful French woman that changes his life forever.", "video": false, "id": 9726, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Good Year", "tagline": "An investment broker inherits a chateau and vineyard and discovers a new laid-back lifestyle.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0401445", "adult": false, "backdrop_path": "/qJx2FWavjwxS58EZMBEXn44YY31.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2006-09-09", "popularity": 0.459065882782304, "original_title": "A Good Year", "budget": 35000000, "cast": [{"name": "Russell Crowe", "character": "Max Skinner", "id": 934, "credit_id": "52fe4522c3a36847f80be64b", "cast_id": 3, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Marion Cotillard", "character": "Fanny Chenal", "id": 8293, "credit_id": "52fe4522c3a36847f80be68b", "cast_id": 20, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 1}, {"name": "Albert Finney", "character": "Uncle Henry Skinner", "id": 3926, "credit_id": "52fe4522c3a36847f80be647", "cast_id": 2, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Charlie Willis", "id": 2441, "credit_id": "52fe4522c3a36847f80be673", "cast_id": 14, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Abbie Cornish", "character": "Christie Roberts", "id": 37260, "credit_id": "52fe4522c3a36847f80be6a3", "cast_id": 26, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 4}, {"name": "Freddie Highmore", "character": "Young Max Skinner", "id": 1281, "credit_id": "52fe4522c3a36847f80be643", "cast_id": 1, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 5}, {"name": "Didier Bourdon", "character": "Francis Duflot", "id": 59031, "credit_id": "52fe4522c3a36847f80be67f", "cast_id": 17, "profile_path": "/47yBrtrRwIRH5yMOCcvvpEadZxl.jpg", "order": 6}, {"name": "Isabelle Candelier", "character": "Ludivine Duflot", "id": 59032, "credit_id": "52fe4522c3a36847f80be683", "cast_id": 18, "profile_path": "/Ve00yna9ftHbw75MsFZh0vQRNY.jpg", "order": 7}, {"name": "Archie Panjabi", "character": "Gemma", "id": 128645, "credit_id": "52fe4523c3a36847f80be765", "cast_id": 72, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 8}, {"name": "Rafe Spall", "character": "Kenny", "id": 28847, "credit_id": "52fe4522c3a36847f80be64f", "cast_id": 4, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 9}, {"name": "Richard Coyle", "character": "Amis", "id": 52890, "credit_id": "52fe4522c3a36847f80be653", "cast_id": 6, "profile_path": "/4EVfNa7ZO6zSFDviiRvIOyoU9Ro.jpg", "order": 10}, {"name": "Valeria Bruni Tedeschi", "character": "Nathalie Auzet", "id": 5077, "credit_id": "52fe4522c3a36847f80be69b", "cast_id": 24, "profile_path": "/n4WmQHkRwOIp1bpN3lbkJ9BK53z.jpg", "order": 11}, {"name": "Kenneth Cranham", "character": "Sir Nigel", "id": 26258, "credit_id": "52fe4522c3a36847f80be687", "cast_id": 19, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 12}, {"name": "Daniel Mays", "character": "Bert the Doorman", "id": 1670, "credit_id": "52fe4522c3a36847f80be663", "cast_id": 10, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 13}, {"name": "Giannina Facio", "character": "Maitre D'", "id": 58787, "credit_id": "52fe4522c3a36847f80be66f", "cast_id": 13, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 14}, {"name": "Ben Righton", "character": "Trader #1", "id": 58783, "credit_id": "52fe4522c3a36847f80be657", "cast_id": 7, "profile_path": null, "order": 15}, {"name": "Patrick Kennedy", "character": "Trader #2", "id": 14432, "credit_id": "52fe4522c3a36847f80be65b", "cast_id": 8, "profile_path": "/hWeYeOkoBBUlRLmmOGGwkZf22Lz.jpg", "order": 16}, {"name": "Ali Rhodes", "character": "20-Something Beauty", "id": 59029, "credit_id": "52fe4522c3a36847f80be65f", "cast_id": 9, "profile_path": null, "order": 17}, {"name": "Nila Aalia", "character": "Newscaster #1", "id": 58785, "credit_id": "52fe4522c3a36847f80be667", "cast_id": 11, "profile_path": null, "order": 18}, {"name": "Stephen Hudson", "character": "Newscaster #2", "id": 58786, "credit_id": "52fe4522c3a36847f80be66b", "cast_id": 12, "profile_path": null, "order": 19}, {"name": "Lionel Briand", "character": "Rental Car Employee", "id": 58788, "credit_id": "52fe4522c3a36847f80be677", "cast_id": 15, "profile_path": "/om09wZjPXinGmGo63M6xhgk0J8E.jpg", "order": 20}, {"name": "Maria Papas", "character": "Gemma's Friend", "id": 59030, "credit_id": "52fe4522c3a36847f80be67b", "cast_id": 16, "profile_path": null, "order": 21}, {"name": "Igor Panich", "character": "Russian Couple #1", "id": 59033, "credit_id": "52fe4522c3a36847f80be68f", "cast_id": 21, "profile_path": null, "order": 22}, {"name": "Oleg Sosnovikov", "character": "Russian Couple #2", "id": 59034, "credit_id": "52fe4522c3a36847f80be693", "cast_id": 22, "profile_path": null, "order": 23}, {"name": "Magali Woch", "character": "Secretary", "id": 59035, "credit_id": "52fe4522c3a36847f80be697", "cast_id": 23, "profile_path": "/ryIbSaCOTl3g8a6R8HIwHwECcGT.jpg", "order": 24}, {"name": "Jacques Herlin", "character": "Papa Duflot", "id": 6784, "credit_id": "52fe4522c3a36847f80be69f", "cast_id": 25, "profile_path": "/wwgVnt3jtrJFEgSxFQr91KzfsWc.jpg", "order": 25}, {"name": "Patrick Payet", "character": "English Couple #2", "id": 59037, "credit_id": "52fe4522c3a36847f80be6a7", "cast_id": 28, "profile_path": null, "order": 26}, {"name": "F\u00e9licit\u00e9 Du Jeu", "character": "Hostess", "id": 59038, "credit_id": "52fe4522c3a36847f80be6ab", "cast_id": 29, "profile_path": null, "order": 27}, {"name": "Mitchell Mullen", "character": "American Customer #1", "id": 59039, "credit_id": "52fe4522c3a36847f80be6af", "cast_id": 30, "profile_path": null, "order": 28}, {"name": "Judy Dickerson", "character": "American Customer #2", "id": 59040, "credit_id": "52fe4522c3a36847f80be6b3", "cast_id": 31, "profile_path": null, "order": 29}, {"name": "Gilles Gaston-Dreyfus", "character": "Oenologue", "id": 17897, "credit_id": "52fe4522c3a36847f80be6b7", "cast_id": 32, "profile_path": "/hcW1OEm2G1HN6e4E10tYU6fAi6s.jpg", "order": 30}, {"name": "Philippe M\u00e9ry", "character": "Chateau Buyer", "id": 59041, "credit_id": "52fe4522c3a36847f80be6bb", "cast_id": 33, "profile_path": null, "order": 31}, {"name": "Dominique Laurent", "character": "Chateau Buyer", "id": 59042, "credit_id": "52fe4522c3a36847f80be6bf", "cast_id": 34, "profile_path": null, "order": 32}, {"name": "Stewart Wright", "character": "Broker #1", "id": 59043, "credit_id": "52fe4522c3a36847f80be6c3", "cast_id": 35, "profile_path": null, "order": 33}, {"name": "Tom Stuart", "character": "Broker #2", "id": 59044, "credit_id": "52fe4522c3a36847f80be6c7", "cast_id": 36, "profile_path": null, "order": 34}, {"name": "Catherine Vinatier", "character": "Fanny's Mother", "id": 59045, "credit_id": "52fe4522c3a36847f80be6cb", "cast_id": 37, "profile_path": null, "order": 35}, {"name": "Marine Casto", "character": "Young Fanny", "id": 59046, "credit_id": "52fe4522c3a36847f80be6cf", "cast_id": 38, "profile_path": null, "order": 36}, {"name": "Gregg Chillin", "character": "Hip Hopper #1", "id": 59047, "credit_id": "52fe4522c3a36847f80be6d3", "cast_id": 39, "profile_path": "/ftYyVDzJt2IgeR8hFAo8achuYBW.jpg", "order": 37}, {"name": "Toney Tutini", "character": "Hip Hopper #2", "id": 59048, "credit_id": "52fe4522c3a36847f80be6d7", "cast_id": 40, "profile_path": null, "order": 38}, {"name": "Philippe Bergeron", "character": "", "id": 14741, "credit_id": "52fe4522c3a36847f80be6db", "cast_id": 41, "profile_path": "/ugHYNYMyn3zrKEtQJAnuEJrLiBr.jpg", "order": 39}, {"name": "Edita Brychta", "character": "", "id": 59049, "credit_id": "52fe4522c3a36847f80be6df", "cast_id": 42, "profile_path": "/8sJXRa5kS8mHjjrCaGysIj4sOrD.jpg", "order": 40}, {"name": "H\u00e9l\u00e8ne Cardona", "character": "", "id": 5311, "credit_id": "52fe4522c3a36847f80be6e3", "cast_id": 43, "profile_path": "/9Am8lqQ5yUrGrlpYdOjp4p4iLwb.jpg", "order": 41}, {"name": "Jean-Louis Darville", "character": "", "id": 59050, "credit_id": "52fe4522c3a36847f80be6e7", "cast_id": 44, "profile_path": null, "order": 42}, {"name": "Neil Dickson", "character": "", "id": 18906, "credit_id": "52fe4522c3a36847f80be6eb", "cast_id": 45, "profile_path": null, "order": 43}, {"name": "Jean Gilpin", "character": "", "id": 59051, "credit_id": "52fe4522c3a36847f80be6ef", "cast_id": 46, "profile_path": "/txLMRcg9CCbrDlZQi9mg4BhKb40.jpg", "order": 44}, {"name": "Nicholas Guest", "character": "", "id": 36821, "credit_id": "52fe4522c3a36847f80be6f3", "cast_id": 47, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 45}, {"name": "Patrick Hillan", "character": "", "id": 59052, "credit_id": "52fe4522c3a36847f80be6f7", "cast_id": 48, "profile_path": null, "order": 46}, {"name": "Frank Isles", "character": "", "id": 59053, "credit_id": "52fe4522c3a36847f80be6fb", "cast_id": 49, "profile_path": null, "order": 47}, {"name": "Peter Lavin", "character": "", "id": 59054, "credit_id": "52fe4522c3a36847f80be6ff", "cast_id": 50, "profile_path": null, "order": 48}, {"name": "Caitlin McKenna-Wilkinson", "character": "", "id": 59055, "credit_id": "52fe4523c3a36847f80be703", "cast_id": 51, "profile_path": null, "order": 49}, {"name": "Paula J. Newman", "character": "", "id": 59056, "credit_id": "52fe4523c3a36847f80be707", "cast_id": 52, "profile_path": "/u3HCFYLWPR2tnkNLmohldgxc2Sb.jpg", "order": 50}, {"name": "Moira Quirk", "character": "", "id": 59057, "credit_id": "52fe4523c3a36847f80be70b", "cast_id": 53, "profile_path": null, "order": 51}, {"name": "Valeria Milenka Repnau", "character": "", "id": 59058, "credit_id": "52fe4523c3a36847f80be70f", "cast_id": 54, "profile_path": null, "order": 52}, {"name": "Darren Richardson", "character": "", "id": 59059, "credit_id": "52fe4523c3a36847f80be713", "cast_id": 55, "profile_path": null, "order": 53}, {"name": "Jean-Michel Richaud", "character": "", "id": 59060, "credit_id": "52fe4523c3a36847f80be717", "cast_id": 56, "profile_path": "/hUBf7t28fATtiBIsGhMpepN6Iu5.jpg", "order": 54}, {"name": "Samantha Robson", "character": "", "id": 59061, "credit_id": "52fe4523c3a36847f80be71b", "cast_id": 57, "profile_path": null, "order": 55}, {"name": "Ian Ruskin", "character": "", "id": 59062, "credit_id": "52fe4523c3a36847f80be71f", "cast_id": 58, "profile_path": null, "order": 56}, {"name": "Linda Sans", "character": "", "id": 59063, "credit_id": "52fe4523c3a36847f80be723", "cast_id": 59, "profile_path": null, "order": 57}, {"name": "Bruno Stephane", "character": "", "id": 59064, "credit_id": "52fe4523c3a36847f80be727", "cast_id": 60, "profile_path": null, "order": 58}, {"name": "Karen Strassman", "character": "", "id": 59065, "credit_id": "52fe4523c3a36847f80be72b", "cast_id": 61, "profile_path": null, "order": 59}, {"name": "Jean-Paul Vignon", "character": "", "id": 59066, "credit_id": "52fe4523c3a36847f80be72f", "cast_id": 62, "profile_path": null, "order": 60}, {"name": "Craig Robert Young", "character": "", "id": 59067, "credit_id": "52fe4523c3a36847f80be733", "cast_id": 63, "profile_path": null, "order": 61}, {"name": "Catriona MacColl", "character": "English Couple #1", "id": 101330, "credit_id": "52fe4523c3a36847f80be761", "cast_id": 71, "profile_path": "/hmB3MmfJpNOQ4uOy6q5z7EU1JGp.jpg", "order": 62}, {"name": "Giannina Facio", "character": "Maitre D'", "id": 58787, "credit_id": "52fe4523c3a36847f80be769", "cast_id": 73, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 63}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4523c3a36847f80be745", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.4, "runtime": 118}, "1535": {"poster_path": "/hsb8hBeU3tkTX8SUYW6YYw6JPYD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 143049560, "overview": "Veteran spy Nathan Muir is on the verge of retiring from the CIA when he learns that his one-time prot\u00e9g\u00e9 and close friend, Tom Bishop, is a political prisoner sentenced to die in Beijing. Although their friendship has been marred by bad blood and resentment, Muir agrees to take on the most dangerous mission of his career and rescue Bishop.", "video": false, "id": 1535, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Spy Game", "tagline": "It's not how you play the game. It's how the game plays you.", "vote_count": 164, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0266987", "adult": false, "backdrop_path": "/1Q6thcZHsDiJ0iRMXZWf7IEtX2b.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Metropolitan Filmexport", "id": 656}, {"name": "Toho-Towa", "id": 657}, {"name": "Beacon Communications", "id": 919}, {"name": "Kalima Productions GmbH & Co. KG", "id": 7385}, {"name": "Red Wagon Productions", "id": 780}], "release_date": "2001-11-18", "popularity": 0.769686223264426, "original_title": "Spy Game", "budget": 92000000, "cast": [{"name": "Robert Redford", "character": "Nathan D. Muir", "id": 4135, "credit_id": "52fe42fbc3a36847f8031723", "cast_id": 2, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Tom Bishop", "id": 287, "credit_id": "52fe42fbc3a36847f8031727", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Catherine McCormack", "character": "Elizabeth Hadley", "id": 2462, "credit_id": "52fe42fbc3a36847f803172b", "cast_id": 4, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Charles Harker", "id": 8435, "credit_id": "52fe42fbc3a36847f803172f", "cast_id": 5, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Larry Bryggman", "character": "Troy Folger", "id": 17351, "credit_id": "52fe42fbc3a36847f8031733", "cast_id": 6, "profile_path": "/fc7XC4C0DayJ6g8ReydAWjwY3IX.jpg", "order": 4}, {"name": "Marianne Jean-Baptiste", "character": "Gladys Jennip", "id": 17352, "credit_id": "52fe42fbc3a36847f8031737", "cast_id": 7, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 5}, {"name": "Matthew Marsh", "character": "Dr. William Byars", "id": 17353, "credit_id": "52fe42fbc3a36847f803173b", "cast_id": 8, "profile_path": "/mFE7r9hfFHxl2U55S64vGdNGmaZ.jpg", "order": 6}, {"name": "Todd Boyce", "character": "Robert Aiken", "id": 17354, "credit_id": "52fe42fbc3a36847f803173f", "cast_id": 9, "profile_path": "/3uT1rplcxrKBmhi9vFQpB4Q6Qop.jpg", "order": 7}, {"name": "Michael Paul Chan", "character": "Vincent Vy Ngo", "id": 17355, "credit_id": "52fe42fbc3a36847f8031743", "cast_id": 10, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 8}, {"name": "Garrick Hagon", "character": "CIA Director Cy Wilson", "id": 17356, "credit_id": "52fe42fbc3a36847f8031747", "cast_id": 11, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 9}, {"name": "Andrew Grainger", "character": "Andrew Unger", "id": 17357, "credit_id": "52fe42fbc3a36847f803174b", "cast_id": 12, "profile_path": null, "order": 10}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f803171f", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.3, "runtime": 126}, "8780": {"poster_path": "/8YFiUegDjZPuNF1qdENDkcWfXPx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63833449, "overview": "A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.", "video": false, "id": 8780, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Baby Mama", "tagline": "Would you put your eggs...in this basket?", "vote_count": 53, "homepage": "http://www.babymamamovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0871426", "adult": false, "backdrop_path": "/5ZeIjrEbZvLPGB8PVgk3Vrm1aVF.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Universal Pictures", "id": 33}], "release_date": "2008-04-23", "popularity": 0.341568744484718, "original_title": "Baby Mama", "budget": 30000000, "cast": [{"name": "Tina Fey", "character": "Kate Holbrook", "id": 56323, "credit_id": "52fe44b9c3a36847f80a67fd", "cast_id": 4, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 0}, {"name": "Amy Poehler", "character": "Angie Ostrowiski", "id": 56322, "credit_id": "52fe44b9c3a36847f80a67f9", "cast_id": 3, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 1}, {"name": "Dax Shepard", "character": "Carl", "id": 51298, "credit_id": "52fe44b9c3a36847f80a680d", "cast_id": 8, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 2}, {"name": "Sigourney Weaver", "character": "Chaffee Bicknell", "id": 10205, "credit_id": "52fe44b9c3a36847f80a6801", "cast_id": 5, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 3}, {"name": "Greg Kinnear", "character": "Rob", "id": 17141, "credit_id": "52fe44b9c3a36847f80a6809", "cast_id": 7, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 4}, {"name": "Steve Martin", "character": "Barry", "id": 67773, "credit_id": "52fe44b9c3a36847f80a6805", "cast_id": 6, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 5}, {"name": "Romany Malco", "character": "Oscar", "id": 71530, "credit_id": "52fe44b9c3a36847f80a6811", "cast_id": 9, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 6}, {"name": "Maura Tierney", "character": "Caroline", "id": 16307, "credit_id": "52fe44b9c3a36847f80a683f", "cast_id": 17, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 7}, {"name": "Will Forte", "character": "Scott", "id": 62831, "credit_id": "52fe44b9c3a36847f80a6843", "cast_id": 18, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 8}, {"name": "Fred Armisen", "character": "Stroller Salesman", "id": 61110, "credit_id": "52fe44b9c3a36847f80a6847", "cast_id": 19, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 9}, {"name": "Stephen Mailer", "character": "Dan", "id": 170977, "credit_id": "52fe44b9c3a36847f80a684b", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Holland Taylor", "character": "Rose", "id": 11318, "credit_id": "52fe44b9c3a36847f80a684f", "cast_id": 21, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 11}, {"name": "James Rebhorn", "character": "Judge", "id": 8986, "credit_id": "52fe44b9c3a36847f80a6853", "cast_id": 22, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 12}, {"name": "Denis O'Hare", "character": "Dr. Manheim", "id": 81681, "credit_id": "52fe44b9c3a36847f80a6857", "cast_id": 23, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 13}, {"name": "Kevin Collins", "character": "Architect / Rick", "id": 590283, "credit_id": "52fe44b9c3a36847f80a685b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Jason Mantzoukas", "character": "Gay Couple", "id": 111683, "credit_id": "52fe44b9c3a36847f80a685f", "cast_id": 25, "profile_path": "/lBMDmGGuhLrg0Q4cZi2vDc2ucgF.jpg", "order": 15}, {"name": "Siobhan Fallon", "character": "Birthing Teacher", "id": 6751, "credit_id": "52fe44b9c3a36847f80a6863", "cast_id": 26, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 16}, {"name": "Alice Kremelberg", "character": "Rob's Daughter", "id": 1357037, "credit_id": "53fc3a830e0a267a78009c78", "cast_id": 27, "profile_path": "/i5eYcWhuOPuSAXtj0hue0WX9O3k.jpg", "order": 17}], "directors": [{"name": "Michael McCullers", "department": "Directing", "job": "Director", "credit_id": "52fe44b9c3a36847f80a67ef", "profile_path": null, "id": 14172}], "vote_average": 5.3, "runtime": 99}, "1537": {"poster_path": "/dCTVH1kl3aIkUmWpMT5STLAwsPs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94935764, "overview": "A rush-hour fender-bender on New York City's crowded FDR Drive, under most circumstances, wouldn't set off a chain reaction that could decimate two people's lives. But on this day, at this time, a minor collision will turn two complete strangers into vicious adversaries. Their means of destroying each other might be different, but their goals, ultimately, will be the same: Each will systematically try to dismantle the other's life in a reckless effort to reclaim something he has lost.", "video": false, "id": 1537, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Changing Lanes", "tagline": "An ambitious lawyer, a desperate father, they had no reason to meet, until today,", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264472", "adult": false, "backdrop_path": "/enr2mZM9DL7pPHDQGFdVy9IMG6Z.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2002-04-07", "popularity": 1.17440834700656, "original_title": "Changing Lanes", "budget": 45000000, "cast": [{"name": "Ben Affleck", "character": "Gavin Banek", "id": 880, "credit_id": "52fe42fbc3a36847f80317ad", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Doyle Gipson", "id": 2231, "credit_id": "52fe42fbc3a36847f80317b1", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Kim Staunton", "character": "Valerie Gipson", "id": 17358, "credit_id": "52fe42fbc3a36847f80317b5", "cast_id": 3, "profile_path": "/9CJmJ5l7DZAtZvdbltalwoV2NfH.jpg", "order": 2}, {"name": "Toni Collette", "character": "Michelle", "id": 3051, "credit_id": "52fe42fbc3a36847f80317b9", "cast_id": 4, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 3}, {"name": "Sydney Pollack", "character": "Stephen Delano", "id": 2226, "credit_id": "52fe42fbc3a36847f80317bd", "cast_id": 5, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 4}, {"name": "Matt Malloy", "character": "Ron Cabot", "id": 19208, "credit_id": "52fe42fbc3a36847f80317f1", "cast_id": 14, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 5}, {"name": "William Hurt", "character": "Doyle's Sponsor", "id": 227, "credit_id": "52fe42fbc3a36847f80317f5", "cast_id": 15, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 6}, {"name": "John Benjamin Hickey", "character": "Carlyle", "id": 21179, "credit_id": "52fe42fbc3a36847f80317f9", "cast_id": 16, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 7}, {"name": "Amanda Peet", "character": "Cynthia Delano Banek", "id": 2956, "credit_id": "551f75b1c3a36854cd000af1", "cast_id": 17, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 8}], "directors": [{"name": "Roger Michell", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f80317c3", "profile_path": "/zDjSgsAY44QJljrvzIZWnWauqlg.jpg", "id": 7017}], "vote_average": 5.4, "runtime": 89}, "1538": {"poster_path": "/mttymFexawuVYOlka8R3SVUeBn4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 217764291, "overview": "A cab driver finds himself the hostage of an engaging contract killer as he makes his rounds from hit to hit during one night in LA. He must find a way to save both himself and one last victim.", "video": false, "id": 1538, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Collateral", "tagline": "It started like any other night.", "vote_count": 383, "homepage": "http://movies.uip.de/collateral/home.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369339", "adult": false, "backdrop_path": "/whhU7492W0fcZE73r1HNhfyc5uV.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Parkes/MacDonald Productions", "id": 11084}, {"name": "Edge City", "id": 11463}], "release_date": "2004-08-05", "popularity": 1.2816254617863, "original_title": "Collateral", "budget": 65000000, "cast": [{"name": "Tom Cruise", "character": "Vincent", "id": 500, "credit_id": "52fe42fbc3a36847f8031857", "cast_id": 2, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "Max", "id": 134, "credit_id": "52fe42fbc3a36847f803185b", "cast_id": 3, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Jada Pinkett Smith", "character": "Annie", "id": 9575, "credit_id": "52fe42fbc3a36847f803185f", "cast_id": 4, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Fanning", "id": 103, "credit_id": "52fe42fbc3a36847f8031863", "cast_id": 5, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Pedrosa", "id": 14888, "credit_id": "52fe42fbc3a36847f8031867", "cast_id": 7, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Peter Berg", "character": "Richard Weidner", "id": 36602, "credit_id": "52fe42fbc3a36847f8031895", "cast_id": 16, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 5}, {"name": "Irma P. Hall", "character": "Ida", "id": 43853, "credit_id": "52fe42fbc3a36847f80318e1", "cast_id": 29, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 6}, {"name": "Barry Shabaka Henley", "character": "Daniel", "id": 8689, "credit_id": "52fe42fbc3a36847f80318e5", "cast_id": 30, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 7}, {"name": "Richard T. Jones", "character": "Traffic Cop #1", "id": 55755, "credit_id": "52fe42fbc3a36847f80318e9", "cast_id": 31, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 8}, {"name": "Klea Scott", "character": "Fed #1", "id": 155283, "credit_id": "52fe42fbc3a36847f80318ed", "cast_id": 32, "profile_path": "/18m05gdyZ6wYIhLspT2Rl6zF0N1.jpg", "order": 9}, {"name": "Bodhi Elfman", "character": "Young Professional Man", "id": 154883, "credit_id": "52fe42fbc3a36847f80318f1", "cast_id": 33, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 10}, {"name": "Debi Mazar", "character": "Young Professional Woman", "id": 5578, "credit_id": "52fe42fbc3a36847f80318f5", "cast_id": 34, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 11}, {"name": "Javier Bardem", "character": "Felix", "id": 3810, "credit_id": "52fe42fbc3a36847f80318f9", "cast_id": 35, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 12}, {"name": "Emilio Rivera", "character": "Paco", "id": 53257, "credit_id": "52fe42fbc3a36847f80318fd", "cast_id": 36, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 13}, {"name": "Jamie McBride", "character": "Traffic Cop #2", "id": 18053, "credit_id": "52fe42fbc3a36847f8031901", "cast_id": 37, "profile_path": "/AduUFJhXPzR6WvYV5RyBS56YdKB.jpg", "order": 14}, {"name": "Ken Waters", "character": "FBI Agent", "id": 1118729, "credit_id": "52fe42fbc3a36847f8031905", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Charlie E. Schmidt", "character": "FBI Agent", "id": 1118730, "credit_id": "52fe42fbc3a36847f8031909", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Michael Bentt", "character": "Fever Bouncer", "id": 90449, "credit_id": "52fe42fbc3a36847f803190d", "cast_id": 40, "profile_path": "/iH9VdJ1w3vszxBoAhd9dTYpcNEN.jpg", "order": 17}, {"name": "Thomas Rosales, Jr.", "character": "Ramone", "id": 43010, "credit_id": "52fe42fbc3a36847f8031911", "cast_id": 41, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 18}, {"name": "Jason Statham", "character": "Guy at the airport", "id": 976, "credit_id": "531e073cc3a3685c37008875", "cast_id": 44, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 19}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f8031853", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.5, "runtime": 120}, "9732": {"poster_path": "/d1Wj5wfzu4CWvKOIL1l42NBYnzE.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The circle of life continues for Simba, now fully grown and in his rightful place as the king of Pride Rock. Simba and Nala have given birth to a daughter, Kiara who's as rebellious as her father was. But Kiara drives her parents to distraction when she catches the eye of Kovu, the son of the evil lioness, Zira. Will Kovu steal Kiara's heart?", "video": false, "id": 9732, "genres": [{"id": 16, "name": "Animation"}], "title": "The Lion King 2: Simba's Pride", "tagline": "The Circle of Life Continues...", "vote_count": 263, "homepage": "", "belongs_to_collection": {"backdrop_path": "/A9IEaj9cPAwEgFnTmteB70oxgJY.jpg", "poster_path": "/y3n3SDoRDqgz3LLWuvcfi3ZiF84.jpg", "id": 94032, "name": "The Lion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120131", "adult": false, "backdrop_path": "/mOXpgCVPy43L3Sbq9keft6VSQ7O.jpg", "production_companies": [{"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-10-26", "popularity": 1.56018163545117, "original_title": "The Lion King 2: Simba's Pride", "budget": 0, "cast": [{"name": "Matthew Broderick", "character": "Simba (voice)", "id": 4756, "credit_id": "52fe4524c3a36847f80beaab", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Moira Kelly", "character": "Nala (voice)", "id": 20005, "credit_id": "52fe4524c3a36847f80beaaf", "cast_id": 2, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 1}, {"name": "Neve Campbell", "character": "Adult Kiara (voice)", "id": 9206, "credit_id": "52fe4524c3a36847f80beab3", "cast_id": 3, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 2}, {"name": "Liz Callaway", "character": "Adult Kiara (singing voice)", "id": 58828, "credit_id": "52fe4524c3a36847f80beab7", "cast_id": 4, "profile_path": "/pIZwTupFvJCppbYt26q4ydKIbnl.jpg", "order": 3}, {"name": "Andy Dick", "character": "Nuka (voice)", "id": 43120, "credit_id": "52fe4524c3a36847f80bead9", "cast_id": 13, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 4}, {"name": "Robert Guillaume", "character": "Rafiki (voice)", "id": 8294, "credit_id": "52fe4524c3a36847f80beadd", "cast_id": 14, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 5}, {"name": "James Earl Jones", "character": "Mufasa (voice)", "id": 15152, "credit_id": "52fe4524c3a36847f80beae1", "cast_id": 15, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 6}, {"name": "Nathan Lane", "character": "Timon (voice)", "id": 78729, "credit_id": "52fe4524c3a36847f80beae5", "cast_id": 16, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 7}, {"name": "Jason Marsden", "character": "Kovu (voice)", "id": 61983, "credit_id": "52fe4524c3a36847f80beae9", "cast_id": 17, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 8}, {"name": "Suzanne Pleshette", "character": "Zira (voice)", "id": 8231, "credit_id": "52fe4524c3a36847f80beaed", "cast_id": 18, "profile_path": "/9KdhSa4QpLQgD1cwXmjoz60bgHo.jpg", "order": 9}, {"name": "Ernie Sabella", "character": "Pumbaa (voice)", "id": 69415, "credit_id": "52fe4524c3a36847f80beaf1", "cast_id": 19, "profile_path": "/nwdAp8FacfZ1eRU7gNkOwWvDqnc.jpg", "order": 10}, {"name": "Lacey Chabert", "character": "Young Vitani (voice)", "id": 22082, "credit_id": "52fe4524c3a36847f80beaf5", "cast_id": 20, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 11}, {"name": "Cam Clarke", "character": "Simba (singing voice)", "id": 60272, "credit_id": "52fe4524c3a36847f80beaf9", "cast_id": 21, "profile_path": "/7ecYo1hD0zHPxdKHSzkvHuM95Yj.jpg", "order": 12}, {"name": "Jim Cummings", "character": "Scar (voice)", "id": 12077, "credit_id": "52fe4524c3a36847f80beafd", "cast_id": 22, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 13}, {"name": "Edward Hibbert", "character": "Zazu (voice)", "id": 84249, "credit_id": "52fe4524c3a36847f80beb01", "cast_id": 23, "profile_path": "/mpKpvpRM7EHgjaNNQ0PvEhBEqUu.jpg", "order": 14}, {"name": "Michelle Horn", "character": "Young Kiara (voice)", "id": 20847, "credit_id": "52fe4524c3a36847f80beb05", "cast_id": 24, "profile_path": "/eFOyaLVvUTcxFuANlhMdT8oqfAu.jpg", "order": 15}, {"name": "Meredith Scott Lynn", "character": "Adult Vitani (voice)", "id": 151384, "credit_id": "52fe4524c3a36847f80beb09", "cast_id": 25, "profile_path": "/dxd6wN3HoW8dqJsjkAmEtsZVuca.jpg", "order": 16}, {"name": "Ryan O'Donohue", "character": "Young Kovu (voice)", "id": 166406, "credit_id": "52fe4524c3a36847f80beb0d", "cast_id": 26, "profile_path": "/l1NV0rGZvHI7yGOeFbPeffoHtuP.jpg", "order": 17}, {"name": "Peter Renaday", "character": "Additional Voices (voice)", "id": 35132, "credit_id": "52fe4524c3a36847f80beb11", "cast_id": 27, "profile_path": "/wRkQcLnyv1k9eQtB5GczTgIaWj2.jpg", "order": 18}, {"name": "Vanessa Theme Ament", "character": "Additional Voices (voice)", "id": 91312, "credit_id": "52fe4524c3a36847f80beb15", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Robin Frizzell", "character": "Additional Voices (voice)", "id": 1077704, "credit_id": "52fe4524c3a36847f80beb19", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Lisa Long", "character": "Additional Voices (voice)", "id": 98533, "credit_id": "52fe4524c3a36847f80beb1d", "cast_id": 30, "profile_path": "/ylENDopRcyfMnPBQwnfxxfXJWL.jpg", "order": 21}, {"name": "Adrienne Hampton", "character": "Additional Voices (voice)", "id": 91837, "credit_id": "52fe4524c3a36847f80beb21", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Seth Isler", "character": "Additional Voices (voice)", "id": 162615, "credit_id": "52fe4524c3a36847f80beb25", "cast_id": 32, "profile_path": "/yqoESkbOUV1CIlnrSUO30hedWfK.jpg", "order": 23}, {"name": "Richard Sinclair", "character": "Additional Voices (voice)", "id": 1077705, "credit_id": "52fe4524c3a36847f80beb29", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Joel Moffett", "character": "Additional Voices (voice)", "id": 1077706, "credit_id": "52fe4524c3a36847f80beb2d", "cast_id": 34, "profile_path": "/4PDlF5X3qAcjzsWAIOYyI0JKx0p.jpg", "order": 25}], "directors": [{"name": "Darrell Rooney", "department": "Directing", "job": "Director", "credit_id": "52fe4524c3a36847f80beb33", "profile_path": null, "id": 58829}], "vote_average": 6.4, "runtime": 81}, "1541": {"poster_path": "/3cc9oJ3PJzdfI88FPxF6P0zq0Qb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45361000, "overview": "Whilst on a short weekend getaway, Louise shoots a man who had tried to rape Thelma. Due to the incriminating circumstances, they make a run for it and thus a cross country chase ensues for the two fugitives. Along the way, both women rediscover the strength of their friendship and surprising aspects of their personalities and self-strengths in the trying times.", "video": false, "id": 1541, "genres": [{"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Thelma & Louise", "tagline": "Somebody said get a life... so they did.", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103074", "adult": false, "backdrop_path": "/6ZFATL4B2yOqEOWViT9kkodU8Vy.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1991-05-24", "popularity": 0.327433895187887, "original_title": "Thelma & Louise", "budget": 16000000, "cast": [{"name": "Susan Sarandon", "character": "Louise Elizabeth Sawyer", "id": 4038, "credit_id": "52fe42fbc3a36847f8031a61", "cast_id": 1, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 0}, {"name": "Geena Davis", "character": "Thelma Yvonne Dickinson", "id": 16935, "credit_id": "52fe42fbc3a36847f8031a65", "cast_id": 2, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Investigator Hal Slocumb", "id": 1037, "credit_id": "52fe42fbc3a36847f8031a69", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Brad Pitt", "character": "J.D.", "id": 287, "credit_id": "52fe42fbc3a36847f8031a6d", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 3}, {"name": "Michael Madsen", "character": "Jimmy Lennox", "id": 147, "credit_id": "52fe42fbc3a36847f8031a71", "cast_id": 5, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Darryl Dickinson", "id": 4443, "credit_id": "52fe42fbc3a36847f8031a75", "cast_id": 6, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Max", "id": 537, "credit_id": "52fe42fbc3a36847f8031a79", "cast_id": 7, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Timothy Carhart", "character": "Harlan", "id": 17396, "credit_id": "52fe42fbc3a36847f8031a7d", "cast_id": 8, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 7}, {"name": "Lucinda Jenney", "character": "Lena, the Waitress", "id": 5148, "credit_id": "54a3a0999251414e2800c002", "cast_id": 22, "profile_path": "/ucvaRviBWE1IR4YPGA8VYVMSand.jpg", "order": 8}, {"name": "Jason Beghe", "character": "State Trooper", "id": 37203, "credit_id": "54a3a0ab9251411d5300ba65", "cast_id": 23, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 9}, {"name": "Sonny Carl Davis", "character": "Albert", "id": 63214, "credit_id": "54a3a0bbc3a3682f1e010e95", "cast_id": 24, "profile_path": "/bdpZH2zUh9WSRfxViA3oyvizNl0.jpg", "order": 10}, {"name": "Ken Swofford", "character": "Major", "id": 45308, "credit_id": "54a3a0c992514117dd003baf", "cast_id": 25, "profile_path": "/7l4GppNqzi2lvs2R1nbTfxwiKcW.jpg", "order": 11}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f8031a83", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.0, "runtime": 130}, "1542": {"poster_path": "/iO9aZzrfmMvm3IqkFiQyuuUMLh2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12827813, "overview": "Peter is a drone for a software company well on his way to a nervous breakdown when a hypnosis mishap opens his eyes. He becomes so apathetic toward his job that he can't even muster up the energy to quit. His new no-work ethic is mistaken by a pair of corporate headhunters as \"middle-management potential,\" and he is promoted as his pals Michael and Samir are laid off. Frustrated in his attempts to be down-sized, Peter hatches a plot to embezzle the company.", "video": false, "id": 1542, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Office Space", "tagline": "Work sucks.", "vote_count": 350, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0151804", "adult": false, "backdrop_path": "/sjJyxlCsQRDfsanDUg8xiFT7xgS.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Cubicle Inc.", "id": 7458}], "release_date": "1999-02-19", "popularity": 0.59045492866932, "original_title": "Office Space", "budget": 10000000, "cast": [{"name": "Ron Livingston", "character": "Peter Gibbons", "id": 17402, "credit_id": "52fe42fcc3a36847f8031b1b", "cast_id": 3, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Joanna", "id": 4491, "credit_id": "52fe42fcc3a36847f8031b41", "cast_id": 10, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "David Herman", "character": "Michael Bolton", "id": 52794, "credit_id": "52fe42fcc3a36847f8031b3d", "cast_id": 9, "profile_path": "/6S0UlaChdcilaeYk5svTxOCtShC.jpg", "order": 2}, {"name": "Ajay Naidu", "character": "Samir Nagheenanajar", "id": 1982, "credit_id": "52fe42fcc3a36847f8031b45", "cast_id": 11, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 3}, {"name": "Diedrich Bader", "character": "Lawrence", "id": 5727, "credit_id": "52fe42fcc3a36847f8031b17", "cast_id": 2, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 4}, {"name": "Stephen Root", "character": "Milton Waddams", "id": 17401, "credit_id": "52fe42fcc3a36847f8031b13", "cast_id": 1, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 5}, {"name": "Gary Cole", "character": "Bill Lumbergh", "id": 21163, "credit_id": "52fe42fcc3a36847f8031b49", "cast_id": 12, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 6}, {"name": "Richard Riehle", "character": "Tom Smykowski", "id": 18262, "credit_id": "52fe42fcc3a36847f8031b4d", "cast_id": 13, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 7}, {"name": "Alexandra Wentworth", "character": "Anne", "id": 104998, "credit_id": "52fe42fcc3a36847f8031b65", "cast_id": 18, "profile_path": "/rhROnBBAcL9UFJ4YFMPReqMafrG.jpg", "order": 8}, {"name": "Joe Bays", "character": "Dom Portwood", "id": 105701, "credit_id": "52fe42fcc3a36847f8031b69", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "John C. McGinley", "character": "Bob Slydell", "id": 11885, "credit_id": "52fe42fcc3a36847f8031b51", "cast_id": 14, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 10}, {"name": "Paul Willson", "character": "Bob Porter", "id": 15099, "credit_id": "52fe42fcc3a36847f8031b55", "cast_id": 15, "profile_path": "/qLDv3SgQw5dfai2wsH03PeFolBS.jpg", "order": 11}, {"name": "Kinna McInroe", "character": "Nina", "id": 102309, "credit_id": "52fe42fcc3a36847f8031b6d", "cast_id": 20, "profile_path": "/8I8q0cQMm6hdJSZ8RBjFPJFVN3C.jpg", "order": 12}, {"name": "Todd Duffey", "character": "Brian", "id": 116428, "credit_id": "52fe42fcc3a36847f8031b71", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Greg Pitts", "character": "Drew", "id": 84816, "credit_id": "52fe42fcc3a36847f8031b75", "cast_id": 22, "profile_path": "/gl2maPRYG8s7WcAQRNel26Cswkc.jpg", "order": 14}, {"name": "Michael McShane", "character": "Dr. Swanson (as Micheal McShane)", "id": 8316, "credit_id": "52fe42fcc3a36847f8031b79", "cast_id": 23, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 15}, {"name": "Linda Wakeman", "character": "Laura Smykowski", "id": 1077910, "credit_id": "52fe42fcc3a36847f8031b7d", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Jennifer Jane Emerson", "character": "Female Temp", "id": 1077911, "credit_id": "52fe42fcc3a36847f8031b81", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Kyle Scott Jackson", "character": "Rob Newhouse", "id": 1077912, "credit_id": "52fe42fcc3a36847f8031b85", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Orlando Jones", "character": "Steve - Magazine Salesman", "id": 18270, "credit_id": "52fe42fcc3a36847f8031b89", "cast_id": 27, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 19}, {"name": "Barbara George-Reiss", "character": "Peggy - Lumbergh's Secretary", "id": 1077913, "credit_id": "52fe42fcc3a36847f8031b8d", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Tom Schuster", "character": "Construction Foreman", "id": 987426, "credit_id": "52fe42fcc3a36847f8031b91", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Rupert Reyes", "character": "Mexican Waiter (as Ruperto Reyes Jr.)", "id": 954426, "credit_id": "52fe42fcc3a36847f8031b95", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Jackie Belvin", "character": "Swanson's Patient #1", "id": 1053511, "credit_id": "52fe42fcc3a36847f8031b99", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Gabriel Folse", "character": "Swanson's Patient #2", "id": 141486, "credit_id": "52fe42fcc3a36847f8031b9d", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Jesse De Luna", "character": "Cop at Fire", "id": 977061, "credit_id": "52fe42fcc3a36847f8031ba1", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Mike Judge", "character": "Stan - Chotchkie's Manager (as William King)", "id": 17403, "credit_id": "52fe42fcc3a36847f8031ba5", "cast_id": 34, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 26}, {"name": "Justin Possenti", "character": "Spectator", "id": 1077914, "credit_id": "52fe42fcc3a36847f8031ba9", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Jack Betts", "character": "Judge", "id": 20581, "credit_id": "52fe42fcc3a36847f8031bad", "cast_id": 36, "profile_path": "/wX6KWBh4sH2L7sHDIsgDBv6ktXQ.jpg", "order": 28}], "directors": [{"name": "Mike Judge", "department": "Directing", "job": "Director", "credit_id": "52fe42fcc3a36847f8031b27", "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "id": 17403}], "vote_average": 7.2, "runtime": 89}, "17927": {"poster_path": "/bHhLZIg9VKsconJdnwIoUTqakEG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17231291, "overview": "2 Guys. 300 Girls. You Do the Math. The two most popular guys in high school decide to ditch football camp for cheerleader camp. For the girls and for the glory.", "video": false, "id": 17927, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Fired Up!", "tagline": "2 Guys. 300 Girls. You Do the Math.", "vote_count": 51, "homepage": "http://www.sonypictures.com/homevideo/firedup/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1083456", "adult": false, "backdrop_path": "/pDwbZBSDFW9rinajJdkiCyESe8W.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Moving Pictures, DPI", "id": 7947}], "release_date": "2009-02-20", "popularity": 0.321935485608524, "original_title": "Fired Up!", "budget": 20000000, "cast": [{"name": "Nicholas D'agosto", "character": "Shawn Colfax", "id": 37059, "credit_id": "52fe47549251416c7509576b", "cast_id": 2, "profile_path": "/4EgYTRYaAmCoV3qG1XJQKCXudz5.jpg", "order": 0}, {"name": "Eric Christian Olsen", "character": "Nick Brady", "id": 29020, "credit_id": "52fe47549251416c7509576f", "cast_id": 3, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 1}, {"name": "Sarah Roemer", "character": "Carly", "id": 20376, "credit_id": "52fe47549251416c75095773", "cast_id": 4, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 2}, {"name": "Molly Sims", "character": "Diora", "id": 60952, "credit_id": "52fe47549251416c75095777", "cast_id": 5, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 3}, {"name": "Danneel Ackles", "character": "Bianca", "id": 81164, "credit_id": "52fe47549251416c7509577b", "cast_id": 6, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 4}, {"name": "David Walton", "character": "Dr. Rick", "id": 83231, "credit_id": "52fe47549251416c7509577f", "cast_id": 7, "profile_path": "/kwtK2P8W0PMmaY2yrFwGlDh55y5.jpg", "order": 5}, {"name": "Kayla Ewell", "character": "Margot Jane Lindsworth-Calligan", "id": 109858, "credit_id": "52fe47549251416c75095789", "cast_id": 9, "profile_path": "/zSPaEJ0LiWqVVSZgU55fQd2mbbW.jpg", "order": 6}, {"name": "Adhir Kalyan", "character": "Brewster", "id": 440306, "credit_id": "52fe47549251416c7509578d", "cast_id": 10, "profile_path": "/aMrG4CWhYGjKPgEgmzKTG3w5JqA.jpg", "order": 7}, {"name": "AnnaLynne McCord", "character": "Gwyneth", "id": 82662, "credit_id": "52fe47549251416c75095791", "cast_id": 11, "profile_path": "/7K8yB1bYJt1171kdtLsT0Gq4cmY.jpg", "order": 8}, {"name": "Juliette Goglia", "character": "Poppy", "id": 118420, "credit_id": "52fe47549251416c75095795", "cast_id": 12, "profile_path": "/s0Lp6SmVUH0JNF5JUc0VWuJRYrz.jpg", "order": 9}, {"name": "Philip Baker Hall", "character": "Coach Byrnes", "id": 4492, "credit_id": "52fe47549251416c75095799", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 10}, {"name": "John Michael Higgins", "character": "Coach Keith", "id": 8265, "credit_id": "52fe47549251416c7509579d", "cast_id": 14, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 11}, {"name": "Smith Cho", "character": "Beth", "id": 129142, "credit_id": "52fe47549251416c750957a1", "cast_id": 15, "profile_path": "/8m17HBnVdpWaXALhYJsxj5r6yfS.jpg", "order": 12}, {"name": "Margo Harshman", "character": "Sylvia", "id": 79793, "credit_id": "52fe47549251416c750957a5", "cast_id": 16, "profile_path": "/xr3VmuwcoHyqhfoweV7f6PJipp4.jpg", "order": 13}, {"name": "Hayley Marie Norman", "character": "Angela", "id": 66623, "credit_id": "52fe47549251416c750957a9", "cast_id": 17, "profile_path": "/gXUwyT5CG6wfwI2gV6X193AaGOk.jpg", "order": 14}, {"name": "Jake Sandvig", "character": "Downey", "id": 71725, "credit_id": "52fe47549251416c750957ad", "cast_id": 18, "profile_path": "/hjQEYDL6GBgiMg5FDpMvi2KmqpF.jpg", "order": 15}, {"name": "Masi Oka", "character": "Eagle", "id": 17273, "credit_id": "52fe47549251416c750957b1", "cast_id": 19, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 16}, {"name": "Jill Latiano", "character": "Haley", "id": 180408, "credit_id": "52fe47549251416c750957b5", "cast_id": 20, "profile_path": "/g37gSAprjNV2NSNJHDdC2BbzEZn.jpg", "order": 17}, {"name": "Kate Miner", "character": "Jennifer", "id": 214695, "credit_id": "53183c46c3a3685c43000fd0", "cast_id": 21, "profile_path": "/gIBpjOfDlEEu0nikxc9OzjAEqJk.jpg", "order": 18}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe47549251416c75095767", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.5, "runtime": 90}, "9737": {"poster_path": "/nkRagoJbx9H3zVSEDyH5ldfgwyR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141407024, "overview": "Marcus Burnett is a hen-pecked family man. Mike Lowry is a foot-loose and fancy free ladies' man. Both are Miami policemen, and both have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.", "video": false, "id": 9737, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Bad Boys", "tagline": "Whatcha gonna do?", "vote_count": 664, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4DdFOVFwzbRJLqN4oynYLY0XVwL.jpg", "poster_path": "/tSVbihfvVTCbcm0zXKA7L8R6Y9v.jpg", "id": 14890, "name": "Bad Boys Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112442", "adult": false, "backdrop_path": "/eaCyvpISFA59etDKvcHn2VoN5kD.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}], "release_date": "1995-04-07", "popularity": 0.986310099834311, "original_title": "Bad Boys", "budget": 19000000, "cast": [{"name": "Will Smith", "character": "Detective Mike Lowrey", "id": 2888, "credit_id": "52fe4524c3a36847f80bed07", "cast_id": 47, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Detective Marcus Burnett", "id": 78029, "credit_id": "52fe4524c3a36847f80bec47", "cast_id": 1, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "T\u00e9a Leoni", "character": "Julie Mott", "id": 4939, "credit_id": "52fe4524c3a36847f80bec4b", "cast_id": 3, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 2}, {"name": "Tch\u00e9ky Karyo", "character": "Fouchet", "id": 10698, "credit_id": "52fe4524c3a36847f80bec4f", "cast_id": 4, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 3}, {"name": "Joe Pantoliano", "character": "Captain C. Howard", "id": 532, "credit_id": "52fe4524c3a36847f80bec95", "cast_id": 16, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 4}, {"name": "Marg Helgenberger", "character": "Captain Allison Sinclair", "id": 19838, "credit_id": "52fe4524c3a36847f80bec99", "cast_id": 17, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 5}, {"name": "Michael Imperioli", "character": "Jojo", "id": 11486, "credit_id": "52fe4524c3a36847f80bec9d", "cast_id": 18, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 6}, {"name": "Theresa Randle", "character": "Theresa Burnett", "id": 4604, "credit_id": "52fe4524c3a36847f80beca1", "cast_id": 19, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 7}, {"name": "Anna Thomson", "character": "Francine", "id": 3711, "credit_id": "52fe4524c3a36847f80beca5", "cast_id": 20, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 8}, {"name": "Nestor Serrano", "character": "Detective Sanchez", "id": 14331, "credit_id": "52fe4524c3a36847f80becad", "cast_id": 22, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 9}, {"name": "Kevin Corrigan", "character": "Elliot", "id": 18472, "credit_id": "52fe4524c3a36847f80beca9", "cast_id": 21, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 10}, {"name": "Julio Oscar Mechoso", "character": "Detective Ruiz", "id": 17413, "credit_id": "52fe4524c3a36847f80becb1", "cast_id": 23, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 11}, {"name": "Saverio Guerra", "character": "Chet", "id": 56691, "credit_id": "52fe4524c3a36847f80becb5", "cast_id": 24, "profile_path": "/30zqGjuEdlhkHDfQIIiMCMEMUpZ.jpg", "order": 12}, {"name": "Vic Manni", "character": "Ferguson", "id": 147782, "credit_id": "52fe4524c3a36847f80becb9", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Frank John Hughes", "character": "Casper", "id": 9275, "credit_id": "52fe4524c3a36847f80becbd", "cast_id": 26, "profile_path": "/djOW0Qyeym5wWGqqILWJ6LENikW.jpg", "order": 14}, {"name": "Mike Kirton", "character": "Andy", "id": 146406, "credit_id": "52fe4524c3a36847f80becc1", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Emmanuel Xuereb", "character": "Eddie Dominguez", "id": 137416, "credit_id": "52fe4524c3a36847f80becc5", "cast_id": 28, "profile_path": "/2aRlexep7TP9LJuEiPWmXeEkvto.jpg", "order": 16}, {"name": "Ralph Gonzalez", "character": "Kuni", "id": 147783, "credit_id": "52fe4524c3a36847f80becc9", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "John Salley", "character": "Fletcher", "id": 119869, "credit_id": "52fe4524c3a36847f80bed03", "cast_id": 46, "profile_path": "/sIrLQv2MLpSm9s7sXPbzRtVhYSi.jpg", "order": 18}, {"name": "Lisa Boyle", "character": "Girl Decoy", "id": 9313, "credit_id": "52fe4524c3a36847f80beccd", "cast_id": 30, "profile_path": "/r7YqIRBbeNIgVNK6xgmrmLDh4uW.jpg", "order": 19}, {"name": "Marc Macaulay", "character": "Noah Trafficante", "id": 6908, "credit_id": "52fe4524c3a36847f80becd1", "cast_id": 31, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 20}, {"name": "Karen Alexander", "character": "Maxie Logan", "id": 147786, "credit_id": "52fe4524c3a36847f80becdd", "cast_id": 35, "profile_path": "/79EivixZ9YewAgH7H8wUwn04f0u.jpg", "order": 21}, {"name": "Heather Davis", "character": "Lois Fields", "id": 147787, "credit_id": "52fe4524c3a36847f80bece1", "cast_id": 36, "profile_path": "/7YgZKuRHtfcOlb4AdOqKqufRIoZ.jpg", "order": 22}, {"name": "Buddy Bolton", "character": "Wally", "id": 147789, "credit_id": "52fe4524c3a36847f80bece9", "cast_id": 39, "profile_path": "/oagASMjqQKSHvzWTsxENo0IgdwY.jpg", "order": 23}, {"name": "Will Knickerbocker", "character": "Officer Bill O'Fee", "id": 139360, "credit_id": "52fe4524c3a36847f80beced", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Tiffany Samuels", "character": "Megan Burnett", "id": 147790, "credit_id": "52fe4524c3a36847f80becf1", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Cory Hodges", "character": "James Burnett", "id": 77079, "credit_id": "52fe4524c3a36847f80becf5", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Scott Cumberbatch", "character": "Quincy Burnett", "id": 147791, "credit_id": "52fe4524c3a36847f80becf9", "cast_id": 43, "profile_path": "/vPatqy4kwmHHKf5JL4fe4KTRSqK.jpg", "order": 27}, {"name": "Michael Taliferro", "character": "Car thief", "id": 87360, "credit_id": "52fe4524c3a36847f80becd9", "cast_id": 33, "profile_path": "/8W5mA1wm9pF1J6F7w1XaUojhlUm.jpg", "order": 28}, {"name": "Fawn Reed", "character": "Women at the box training", "id": 147788, "credit_id": "52fe4524c3a36847f80bece5", "cast_id": 37, "profile_path": "/6vX5VD5KziXP0i7xBTYF3oQK2QT.jpg", "order": 29}, {"name": "Joey Romano", "character": "Policeman", "id": 147784, "credit_id": "52fe4524c3a36847f80becd5", "cast_id": 32, "profile_path": null, "order": 30}, {"name": "Sam Ayers", "character": "Policeman", "id": 1217941, "credit_id": "52fe4524c3a36847f80bed3b", "cast_id": 56, "profile_path": "/cPQGYpXiUkrQ9NT0gLWAzbBaz2m.jpg", "order": 31}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4524c3a36847f80bec55", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 118}, "50698": {"poster_path": "/gIWvlqOsAM0E6TOHCMP19TmVVLC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A crew from a paranormal reality television show lock themselves in a haunted psychiatric hospital. They search for evidence of paranormal activity as they shoot what ends up becoming their final episode.", "video": false, "id": 50698, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Grave Encounters", "tagline": "They Were Searching For Proof. They Found it.", "vote_count": 82, "homepage": "http://www.grave-encounters.tv/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1vLfiFfyJp95vpPDUfH3kRMxn5G.jpg", "id": 135466, "name": "Grave Encounters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1703199", "adult": false, "backdrop_path": "/9krmo5DmLg5w6Z95siswq8ecuQq.jpg", "production_companies": [{"name": "Darclight", "id": 6448}, {"name": "Twin Engine Films", "id": 12881}], "release_date": "2011-09-09", "popularity": 0.455872474029276, "original_title": "Grave Encounters", "budget": 1000000, "cast": [{"name": "Sean Rogerson", "character": "Lance", "id": 169747, "credit_id": "52fe47d3c3a36847f814a2c9", "cast_id": 3, "profile_path": "/cHhmthGSHKx2rdRJ0xjfrQo3kB3.jpg", "order": 0}, {"name": "Juan Riedinger", "character": "Matt", "id": 85613, "credit_id": "52fe47d3c3a36847f814a2cd", "cast_id": 4, "profile_path": "/ddNGEfsafxUzoF92WFzNSB2n9p5.jpg", "order": 1}, {"name": "Ashleigh Gryzko", "character": "Sasha", "id": 239150, "credit_id": "52fe47d3c3a36847f814a2d1", "cast_id": 5, "profile_path": "/q9Z6Dwx0ZTci6Yt83ODrOsMQBIN.jpg", "order": 2}, {"name": "Mackenzie Gray", "character": "Houston Gray", "id": 37698, "credit_id": "52fe47d3c3a36847f814a2d5", "cast_id": 6, "profile_path": "/rYkz9NRfhVzgDbpXHRWqLkvjlgh.jpg", "order": 3}, {"name": "Arthur Corber", "character": "Dott. Friedkin", "id": 158412, "credit_id": "52fe47d3c3a36847f814a2d9", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Ben Wilkinson", "character": "Jerry", "id": 51940, "credit_id": "52fe47d3c3a36847f814a2dd", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Michele Cummins", "character": "Ghost", "id": 80359, "credit_id": "52fe47d3c3a36847f814a305", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Luis Javier", "character": "Gardener", "id": 205881, "credit_id": "52fe47d3c3a36847f814a309", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Shawn Macdonald", "character": "Morgan Turner", "id": 220787, "credit_id": "52fe47d3c3a36847f814a30d", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Merwin Mondesir", "character": "T.C. Gibson", "id": 74608, "credit_id": "52fe47d3c3a36847f814a311", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Bob Rathie", "character": "Kenny Sandivol", "id": 208253, "credit_id": "52fe47d3c3a36847f814a315", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Fred Keating", "character": "Gary Crawford", "id": 963962, "credit_id": "55018c82c3a3685b9b002a13", "cast_id": 24, "profile_path": null, "order": 11}], "directors": [{"name": "The Vicious Brothers", "department": "Directing", "job": "Director", "credit_id": "52fe47d3c3a36847f814a2e3", "profile_path": null, "id": 574338}], "vote_average": 6.2, "runtime": 92}, "1547": {"poster_path": "/evo7oiay9qDUzY510VhrB3YzyJs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32000000, "overview": "A mother and her two teenage sons move to a seemingly nice and quiet small coastal California town yet soon find out that it's overrun by bike gangs and vampires. A couple of teenage friends take it upon themselves to hunt down the vampires that they suspect of a few mysterious murders and restore peace and calm to their town.", "video": false, "id": 1547, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "The Lost Boys", "tagline": "Sleep all day. Party all night. Never grow old. Never die. It's fun to be a vampire.", "vote_count": 177, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qXpWa7kDopkOyEhuZtOLgIh4SW9.jpg", "poster_path": "/gS9HGARC0n21Uhs77JXircY84Ns.jpg", "id": 109076, "name": "The Lost Boys Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093437", "adult": false, "backdrop_path": "/ylLbLCVr8RF6PGXxiR2sCSjCmrf.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-07-31", "popularity": 0.473705924046623, "original_title": "The Lost Boys", "budget": 8500000, "cast": [{"name": "Jason Patric", "character": "Michael Emerson", "id": 12261, "credit_id": "52fe42fcc3a36847f8031d9b", "cast_id": 2, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 0}, {"name": "Corey Feldman", "character": "Edgar Frog", "id": 3034, "credit_id": "52fe42fcc3a36847f8031d9f", "cast_id": 3, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 1}, {"name": "Dianne Wiest", "character": "Lucy Emerson", "id": 1902, "credit_id": "52fe42fcc3a36847f8031daf", "cast_id": 9, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 2}, {"name": "Corey Haim", "character": "Sam Emerson", "id": 17444, "credit_id": "52fe42fcc3a36847f8031da3", "cast_id": 4, "profile_path": "/viodPG7i2x0cJHGVHRVs6C8pIrE.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "David", "id": 2628, "credit_id": "52fe42fcc3a36847f8031da7", "cast_id": 5, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "Jami Gertz", "character": "Star", "id": 9995, "credit_id": "52fe42fcc3a36847f8031dab", "cast_id": 8, "profile_path": "/gqmX3nFtx1pFfuXoR0QR608eWT2.jpg", "order": 5}, {"name": "Edward Herrmann", "character": "Max", "id": 52995, "credit_id": "52fe42fcc3a36847f8031db3", "cast_id": 10, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 6}, {"name": "Jamison Newlander", "character": "Alan Frog", "id": 134800, "credit_id": "52fe42fcc3a36847f8031db7", "cast_id": 11, "profile_path": "/ium4BAZvrcJdAfRqNOiIFc8A8cw.jpg", "order": 7}, {"name": "Billy Wirth", "character": "Dwayne", "id": 39112, "credit_id": "52fe42fcc3a36847f8031dbb", "cast_id": 12, "profile_path": "/mSwwHDM3083I7oOGQKzR7nE6Gax.jpg", "order": 8}, {"name": "Alex Winter", "character": "Marko", "id": 18355, "credit_id": "52fe42fcc3a36847f8031dbf", "cast_id": 13, "profile_path": "/yHtymrjOTwB82EnpPgQjIgAXdTN.jpg", "order": 9}, {"name": "Chance Michael Corbitt", "character": "Laddie", "id": 134801, "credit_id": "52fe42fcc3a36847f8031dc3", "cast_id": 14, "profile_path": "/rGODr97vGYCJGFs2cSvGxEbGim8.jpg", "order": 10}, {"name": "Barnard Hughes", "character": "Grandpa", "id": 2549, "credit_id": "52fe42fcc3a36847f8031dd3", "cast_id": 17, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 11}, {"name": "Brooke McCarter", "character": "Paul", "id": 114149, "credit_id": "52fe42fcc3a36847f8031dd7", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Alexander Bacan Chapman", "character": "Greg", "id": 1077770, "credit_id": "52fe42fcc3a36847f8031ddb", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Nori Morgan", "character": "Shelly", "id": 368784, "credit_id": "52fe42fcc3a36847f8031ddf", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Kelly Jo Minter", "character": "Maria", "id": 63046, "credit_id": "52fe42fcc3a36847f8031de3", "cast_id": 21, "profile_path": "/miyC0t5uCSUT07Gtuli7wZCeLFG.jpg", "order": 15}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe42fcc3a36847f8031d97", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.5, "runtime": 97}, "1548": {"poster_path": "/oDoEkXVw5iikwPy0bQ8u0m5E85i.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A quirky girl tries to figure out what to do now that she had graduated from high school, and forms a friendship with an eccentric 40-year-old record collector after playing a prank on him with her best friend.", "video": false, "id": 1548, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Ghost World", "tagline": "Accentuate the negative.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0162346", "adult": false, "backdrop_path": "/jR1fH03X1pazeoBwLTk2bID89Iy.jpg", "production_companies": [{"name": "Capitol Films", "id": 826}, {"name": "Granada Film Productions", "id": 247}, {"name": "Jersey Films", "id": 216}, {"name": "Mr. Mudd Production", "id": 2130}, {"name": "United Artists Pictures", "id": 16685}], "release_date": "2001-06-16", "popularity": 0.297606356172917, "original_title": "Ghost World", "budget": 0, "cast": [{"name": "Thora Birch", "character": "Enid", "id": 2155, "credit_id": "52fe42fcc3a36847f8031e25", "cast_id": 4, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Rebecca", "id": 1245, "credit_id": "52fe42fcc3a36847f8031e29", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Seymour", "id": 884, "credit_id": "52fe42fcc3a36847f8031e2d", "cast_id": 6, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Brad Renfro", "character": "Josh", "id": 51214, "credit_id": "52fe42fcc3a36847f8031e35", "cast_id": 8, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 4}, {"name": "Bob Balaban", "character": "Enid's Dad", "id": 12438, "credit_id": "52fe42fcc3a36847f8031e3d", "cast_id": 10, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 5}, {"name": "Teri Garr", "character": "Maxine", "id": 8437, "credit_id": "52fe42fcc3a36847f8031e5d", "cast_id": 18, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 6}, {"name": "Stacey Travis", "character": "Dana", "id": 31714, "credit_id": "52fe42fcc3a36847f8031e31", "cast_id": 7, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 7}, {"name": "David Cross", "character": "Gerrold, the Pushy Guy", "id": 212, "credit_id": "52fe42fcc3a36847f8031e59", "cast_id": 17, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 8}, {"name": "Pat Healy", "character": "John Ellis", "id": 60846, "credit_id": "52fe42fcc3a36847f8031e55", "cast_id": 16, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 9}, {"name": "Dave Sheridan", "character": "Doug", "id": 35701, "credit_id": "52fe42fcc3a36847f8031e45", "cast_id": 12, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 10}, {"name": "Tom McGowan", "character": "Joe", "id": 77338, "credit_id": "52fe42fcc3a36847f8031e49", "cast_id": 13, "profile_path": "/40M1HdJmCfhGykN0Wl23BB59duY.jpg", "order": 11}, {"name": "Charles C. Stevenson Jr.", "character": "Norman", "id": 141052, "credit_id": "52fe42fcc3a36847f8031e41", "cast_id": 11, "profile_path": null, "order": 12}, {"name": "Debra Azar", "character": "Melora", "id": 183745, "credit_id": "52fe42fcc3a36847f8031e4d", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Brian George", "character": "Sidewinder Boss", "id": 58511, "credit_id": "52fe42fcc3a36847f8031e51", "cast_id": 15, "profile_path": "/g0bVyXsHDhRhd5WuQwRQDv2TkG9.jpg", "order": 14}, {"name": "Illeana Douglas", "character": "Roberta Allsworth", "id": 7796, "credit_id": "53719de3c3a368436e0007cc", "cast_id": 19, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 15}], "directors": [{"name": "Terry Zwigoff", "department": "Directing", "job": "Director", "credit_id": "52fe42fcc3a36847f8031e15", "profile_path": null, "id": 17447}], "vote_average": 7.4, "runtime": 111}, "9741": {"poster_path": "/pvL37V88plePxFSszCbV3wRHiBm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94999143, "overview": "An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead -- and him unscathed. Is he truly unbreakable? The answer could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.", "video": false, "id": 9741, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Unbreakable", "tagline": "Some things are only revealed by accident.", "vote_count": 358, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0217869", "adult": false, "backdrop_path": "/4WQG7oGOjNQX9U89CpPO0hyLFxz.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Limited Edition Productions Inc.", "id": 3683}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Barry Mendel Productions", "id": 17032}], "release_date": "2000-11-13", "popularity": 1.27599237995361, "original_title": "Unbreakable", "budget": 75000000, "cast": [{"name": "Bruce Willis", "character": "David Dunn", "id": 62, "credit_id": "52fe4525c3a36847f80befd5", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Elijah Price", "id": 2231, "credit_id": "52fe4525c3a36847f80befd9", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Robin Wright", "character": "Audrey Dunn", "id": 32, "credit_id": "52fe4525c3a36847f80befdd", "cast_id": 3, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Spencer Treat Clark", "character": "Joseph Dunn", "id": 4012, "credit_id": "52fe4525c3a36847f80befe1", "cast_id": 4, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 3}, {"name": "John Patrick Amedori", "character": "Hostage Boy", "id": 43464, "credit_id": "52fe4525c3a36847f80bf015", "cast_id": 14, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 4}, {"name": "Chance Kelly", "character": "Orange Suit Man", "id": 17194, "credit_id": "52fe4525c3a36847f80bf03d", "cast_id": 21, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 5}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80befe7", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 6.5, "runtime": 106}, "1551": {"poster_path": "/3CoUzgCU8kR2UCXovrvfNAjvWkI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61308153, "overview": "Five medical students want to find out if there is life after death. They plan to stop one of their hearts for a few seconds, thus simulating death, and then bring the person back to life. A science fiction thriller from the early 1990's with a star studded cast.", "video": false, "id": 1551, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Flatliners", "tagline": "Some lines shouldn't be crossed.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099582", "adult": false, "backdrop_path": "/usLfxbW0hPIcx3Wd7dZE8gKX7Bp.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Stonebridge Entertainment", "id": 5738}], "release_date": "1990-08-09", "popularity": 0.714286110025878, "original_title": "Flatliners", "budget": 26000000, "cast": [{"name": "Kiefer Sutherland", "character": "Nelson", "id": 2628, "credit_id": "52fe42fcc3a36847f8031f71", "cast_id": 1, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Rachel Mannus", "id": 1204, "credit_id": "52fe42fcc3a36847f8031f75", "cast_id": 2, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "David Labraccio", "id": 4724, "credit_id": "52fe42fcc3a36847f8031f79", "cast_id": 3, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "William Baldwin", "character": "Joe Hurley", "id": 13021, "credit_id": "52fe42fdc3a36847f8031f7d", "cast_id": 4, "profile_path": "/wQjXdPYT524QJ0YqKrjPcZWfkHu.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Randy Steckle", "id": 17485, "credit_id": "52fe42fdc3a36847f8031f87", "cast_id": 6, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "Kimberly Scott", "character": "Winnie Hicks", "id": 1984, "credit_id": "52fe42fdc3a36847f8031f8b", "cast_id": 7, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 5}, {"name": "Joshua Rudoy", "character": "Billy Mahoney", "id": 56510, "credit_id": "52fe42fdc3a36847f8031f8f", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Benjamin Mouton", "character": "Rachel's Father", "id": 10488, "credit_id": "52fe42fdc3a36847f8031f93", "cast_id": 9, "profile_path": "/nzYS12c1c7GNnsnce1ysfOTgLyz.jpg", "order": 7}, {"name": "Aeryk Egan", "character": "Young Nelson", "id": 51215, "credit_id": "52fe42fdc3a36847f8031f97", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Kesha Reed", "character": "Young Winnie", "id": 1075041, "credit_id": "52fe42fdc3a36847f8031f9b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Hope Davis", "character": "Anne Coldren", "id": 15250, "credit_id": "52fe42fdc3a36847f8031f9f", "cast_id": 12, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 10}, {"name": "Jim Ortlieb", "character": "Uncle Dave", "id": 159394, "credit_id": "52fe42fdc3a36847f8031fa3", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "John Duda", "character": "Young David", "id": 949848, "credit_id": "52fe42fdc3a36847f8031fa7", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Megan Stewart", "character": "Playground Kid", "id": 1075042, "credit_id": "52fe42fdc3a36847f8031fab", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Tressa Thomas", "character": "Playground Kid", "id": 1075043, "credit_id": "52fe42fdc3a36847f8031faf", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Sanna Vraa", "character": "Bridget", "id": 1303226, "credit_id": "532d199bc3a3685fd30010fd", "cast_id": 19, "profile_path": null, "order": 15}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe42fdc3a36847f8031f83", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.5, "runtime": 115}, "1624": {"poster_path": "/qd8VcWKrE4cNfInl9Osb8o8h9KP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181000000, "overview": "Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.", "video": false, "id": 1624, "genres": [{"id": 35, "name": "Comedy"}], "title": "Liar Liar", "tagline": "Trust me.", "vote_count": 418, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119528", "adult": false, "backdrop_path": "/ssx6yy6bVelmV4TNF1Ckx0CQIUO.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1997-03-21", "popularity": 1.06166950180665, "original_title": "Liar Liar", "budget": 45000000, "cast": [{"name": "Jim Carrey", "character": "Fletcher Reede", "id": 206, "credit_id": "52fe4305c3a36847f8034923", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Maura Tierney", "character": "Audrey Reede", "id": 16307, "credit_id": "52fe4305c3a36847f8034927", "cast_id": 2, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 1}, {"name": "Justin Cooper", "character": "Max Reede", "id": 18190, "credit_id": "52fe4305c3a36847f803492b", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Cary Elwes", "character": "Jerry", "id": 2130, "credit_id": "52fe4305c3a36847f803492f", "cast_id": 4, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 3}, {"name": "Anne Haney", "character": "Greta", "id": 11718, "credit_id": "52fe4305c3a36847f8034933", "cast_id": 5, "profile_path": "/2kajFAcj6bYevLdh0gwUQ6inDJN.jpg", "order": 4}, {"name": "Jennifer Tilly", "character": "Samantha Cole", "id": 7906, "credit_id": "52fe4305c3a36847f8034937", "cast_id": 6, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 5}, {"name": "Amanda Donohoe", "character": "Miranda", "id": 18191, "credit_id": "52fe4305c3a36847f803493b", "cast_id": 7, "profile_path": "/m8W5Y0sjkN3q5jNZkfbs24eZ1I7.jpg", "order": 6}, {"name": "Jason Bernard", "character": "Judge Marshall Stevens", "id": 18192, "credit_id": "52fe4305c3a36847f803493f", "cast_id": 8, "profile_path": "/sbzBKAZ1KWIusoX9nX75sIyaAJI.jpg", "order": 7}, {"name": "Swoosie Kurtz", "character": "Dana Appleton", "id": 12967, "credit_id": "52fe4305c3a36847f8034943", "cast_id": 9, "profile_path": "/vMZajDmqbbfzSw6jxgAYIf3CrJm.jpg", "order": 8}, {"name": "Mitchell Ryan", "character": "Mr. Allan", "id": 14312, "credit_id": "52fe4305c3a36847f8034947", "cast_id": 10, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 9}, {"name": "Christopher Mayer", "character": "Kenneth Falk", "id": 18193, "credit_id": "52fe4305c3a36847f803494b", "cast_id": 11, "profile_path": null, "order": 10}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4305c3a36847f8034951", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 6.1, "runtime": 86}, "1555": {"poster_path": "/klgupoPi3vmmzFP3qTCvOcfXzsq.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A strait-laced French student moves into an apartment in Barcelona with a cast of six other characters from all over Europe. Together, they speak the international language of love and friendship.", "video": false, "id": 1555, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Spanish Apartment", "tagline": "", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ahNzWAv20FlJ0i2wrrgKPOjQCT.jpg", "poster_path": "/woD0gFHbZgwi9RpLL0uSQ56hnJA.jpg", "id": 239766, "name": "The Klapisch Trilogy"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0283900", "adult": false, "backdrop_path": "/uK831vMfGfvZIAmam29IozN0XDe.jpg", "production_companies": [{"name": "Mate Producciones S.A.", "id": 732}], "release_date": "2002-05-17", "popularity": 0.465362193457274, "original_title": "L'Auberge Espagnole", "budget": 0, "cast": [{"name": "Romain Duris", "character": "Xavier", "id": 17497, "credit_id": "52fe42fdc3a36847f8032179", "cast_id": 2, "profile_path": "/buU0mFOX7PvSr50F6H8SrN71W08.jpg", "order": 0}, {"name": "Audrey Tautou", "character": "Martine", "id": 2405, "credit_id": "52fe42fdc3a36847f803217d", "cast_id": 3, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 1}, {"name": "Kelly Reilly", "character": "Wendy", "id": 17521, "credit_id": "52fe42fdc3a36847f8032181", "cast_id": 4, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 2}, {"name": "C\u00e9cile De France", "character": "Isabelle", "id": 17522, "credit_id": "52fe42fdc3a36847f8032185", "cast_id": 5, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 3}, {"name": "Cristina Brondo", "character": "Soledad", "id": 17523, "credit_id": "52fe42fdc3a36847f8032189", "cast_id": 6, "profile_path": "/7TQWQ6ZKY7S0PMlx9N6Zz2dFY3B.jpg", "order": 4}, {"name": "Federico D'Anna", "character": "Alessandro", "id": 17524, "credit_id": "52fe42fdc3a36847f803218d", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Barnaby Metschurat", "character": "Tobias", "id": 17525, "credit_id": "52fe42fdc3a36847f8032191", "cast_id": 8, "profile_path": "/p48ZYBgBVvtnaBrbR4zV4bllWIM.jpg", "order": 6}, {"name": "Christian Pagh", "character": "Lars", "id": 17526, "credit_id": "52fe42fdc3a36847f8032195", "cast_id": 9, "profile_path": "/1ws4zGNNMdXAjTv2XptZrIXhPfD.jpg", "order": 7}, {"name": "Martine Demaret", "character": "La m\u00e8re de Xavier", "id": 17527, "credit_id": "52fe42fdc3a36847f8032199", "cast_id": 10, "profile_path": "/duOIXKudnTBE12Nb4W9VpATlHAk.jpg", "order": 8}, {"name": "Javier Coromina", "character": "Juan", "id": 17528, "credit_id": "52fe42fdc3a36847f803219d", "cast_id": 11, "profile_path": "/iKqJHlatnakTrlRQv3oxfNqhNsH.jpg", "order": 9}, {"name": "Jacno", "character": "Le p\u00e8re de Xavier", "id": 17529, "credit_id": "52fe42fdc3a36847f80321a1", "cast_id": 12, "profile_path": "/tVfI9hq4OcVv9WQzKo1f2zNbNgS.jpg", "order": 10}, {"name": "Judith Godr\u00e8che", "character": "Anne-Sophie", "id": 73937, "credit_id": "52fe42fdc3a36847f80321e1", "cast_id": 23, "profile_path": "/mbIrbBymdMVZIaNv0bDGUXKV7p7.jpg", "order": 11}, {"name": "Kevin Bishop", "character": "William", "id": 19996, "credit_id": "52fe42fdc3a36847f80321e5", "cast_id": 24, "profile_path": "/5bXi3SggfHgNWvm3EidSe9B1Td3.jpg", "order": 12}, {"name": "Xavier de Guillebon", "character": "Jean-Michel", "id": 400612, "credit_id": "53785ec30e0a2614160044e6", "cast_id": 25, "profile_path": "/8o5p6XIGaXZXAFdGBcJVlXhMKAv.jpg", "order": 13}, {"name": "Wladimir Yordanoff", "character": "Jean-Charles Perrin", "id": 64541, "credit_id": "53785ee40e0a261428004312", "cast_id": 26, "profile_path": "/aYhr9jIf6O4roWmOdUf4cFD5mbc.jpg", "order": 14}, {"name": "Irene Montal\u00e0", "character": "Neus", "id": 72673, "credit_id": "53785f1c0e0a2614220045d0", "cast_id": 27, "profile_path": "/e5ZELAdvIRcDoH7sGQ6eErNhlGE.jpg", "order": 15}, {"name": "Iddo Goldberg", "character": "Alistair", "id": 94958, "credit_id": "53785f470e0a26142800432d", "cast_id": 28, "profile_path": "/VXjK4ZcvDMLOpkE3egiKNzM9HN.jpg", "order": 16}, {"name": "Olivier Raynal", "character": "Bruce", "id": 1320851, "credit_id": "53785f8d0e0a26141600450a", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Paulina G\u00e1lvez", "character": "la professeur de flamenco", "id": 72674, "credit_id": "53785fc10e0a261416004512", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "C\u00e9dric Klapisch", "character": "un professeur d'universit\u00e9", "id": 17520, "credit_id": "53785fda0e0a26143100448a", "cast_id": 31, "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "order": 19}], "directors": [{"name": "C\u00e9dric Klapisch", "department": "Directing", "job": "Director", "credit_id": "52fe42fdc3a36847f8032175", "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "id": 17520}], "vote_average": 6.9, "runtime": 122}, "99861": {"poster_path": "/t90Y3G8UGQp0f0DrP60wRu9gfrH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth\u2019s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.", "video": false, "id": 99861, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Avengers: Age of Ultron", "tagline": "A New Age Has Come.", "vote_count": 113, "homepage": "http://marvel.com/movies/movie/193/avengers_age_of_ultron", "belongs_to_collection": {"backdrop_path": "/zuW6fOiusv4X9nnW3paHGfXcSll.jpg", "poster_path": "/qJawKUQcIBha507UahUlX0keOT7.jpg", "id": 86311, "name": "The Avengers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2395427", "adult": false, "backdrop_path": "/rFtsE7Lhlc2jRWF7SRAU0fvrveQ.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2015-05-01", "popularity": 25.3046862595066, "original_title": "Avengers: Age of Ultron", "budget": 250000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe4a449251416c750e3459", "cast_id": 9, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe4a449251416c750e3465", "cast_id": 12, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 1}, {"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe4a449251416c750e3455", "cast_id": 8, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Bruce Banner / The Hulk", "id": 103, "credit_id": "52fe4a449251416c750e3471", "cast_id": 15, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe4a449251416c750e345d", "cast_id": 10, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Clint Barton / Hawkeye", "id": 17604, "credit_id": "52fe4a449251416c750e3461", "cast_id": 11, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "James Spader", "character": "Ultron (voice)", "id": 13548, "credit_id": "52fe4a449251416c750e3485", "cast_id": 19, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 6}, {"name": "Elizabeth Olsen", "character": "Wanda Maximoff / Scarlet Witch", "id": 550843, "credit_id": "52fe4a449251416c750e3489", "cast_id": 20, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 7}, {"name": "Aaron Taylor-Johnson", "character": "Pietro Maximoff / Quicksilver", "id": 27428, "credit_id": "52fe4a449251416c750e348d", "cast_id": 21, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 8}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice) / The Vision", "id": 6162, "credit_id": "537d37670e0a2624c000005f", "cast_id": 24, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 9}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4a449251416c750e346d", "cast_id": 14, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 10}, {"name": "Cobie Smulders", "character": "Maria Hill", "id": 71189, "credit_id": "52fe4a449251416c750e3469", "cast_id": 13, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 11}, {"name": "Don Cheadle", "character": "Colonel James \"Rhodey\" Rhodes / War Machine", "id": 1896, "credit_id": "537d37710e0a2624c300005c", "cast_id": 25, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 12}, {"name": "Anthony Mackie", "character": "Sam Wilson / Falcon", "id": 53650, "credit_id": "552528c4925141718d001687", "cast_id": 56, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 13}, {"name": "Stellan Skarsg\u00e5rd", "character": "Erik Selvig", "id": 1640, "credit_id": "540679580e0a2637270005ff", "cast_id": 31, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 14}, {"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "537d37480e0a2624c700004e", "cast_id": 23, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 15}, {"name": "Thomas Kretschmann", "character": "Baron Wolfgang von Strucker", "id": 3491, "credit_id": "52fe4a449251416c750e3491", "cast_id": 22, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 16}, {"name": "Andy Serkis", "character": "Ulysses Klaw", "id": 1333, "credit_id": "5406794e0e0a26372a0005ba", "cast_id": 30, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 17}, {"name": "Idris Elba", "character": "Heimdall", "id": 17605, "credit_id": "54e7eae2c3a36836ed000d67", "cast_id": 40, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 19}, {"name": "Claudia Kim", "character": "Dr. Helen Cho", "id": 1401531, "credit_id": "54e7eb16c3a3684ea6000405", "cast_id": 41, "profile_path": "/um1pGqhglgtF5OcKmRhA90kS25A.jpg", "order": 20}, {"name": "Linda Cardellini", "character": "Laura Barton", "id": 1817, "credit_id": "552527519251415c7c00b9e7", "cast_id": 50, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 21}, {"name": "Julie Delpy", "character": "Madame B", "id": 1146, "credit_id": "55252762c3a3687df800138a", "cast_id": 51, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 22}, {"name": "Lou Ferrigno", "character": "Hulk (voice)", "id": 19137, "credit_id": "5406798a0e0a263724000607", "cast_id": 33, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 23}, {"name": "Josh Brolin", "character": "Thanos", "id": 16851, "credit_id": "552527ca92514172480016c9", "cast_id": 53, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 24}, {"name": "Henry Goodman", "character": "Dr. List", "id": 7030, "credit_id": "552527a4925141727600162e", "cast_id": 52, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 25}, {"name": "Nick W. Nicholson", "character": "Dr. Taryl Jenkins", "id": 1429470, "credit_id": "54e7ea64c3a36836e0000c45", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Dominique Provost-Chalkley", "character": "Zrinka", "id": 1196961, "credit_id": "54e7eb979251412eae000d16", "cast_id": 43, "profile_path": "/yTTh9yVyxwRBbjS24bUKwmaU2e8.jpg", "order": 27}, {"name": "Isaac Andrews", "character": "Costel", "id": 1264233, "credit_id": "552527fbc3a3687ded0013f2", "cast_id": 54, "profile_path": "/5R8RheJGkn7lY6qgiHvQ5YhRLpY.jpg", "order": 28}, {"name": "Dilyana Bouklieva", "character": "Sokovian Citizen", "id": 1394333, "credit_id": "54e7ebb8c3a36836ea000db6", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "Daniel Westwood", "character": "Asgardian God", "id": 1371439, "credit_id": "54e7eb40c3a36836d6000b2b", "cast_id": 42, "profile_path": "/yvblj5nqxW7QOTnDWEooKLyGfB3.jpg", "order": 30}, {"name": "Julian Bleach", "character": "Balett Instructor", "id": 30086, "credit_id": "55252820c3a3687df80013b1", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Stan Lee", "character": "", "id": 7624, "credit_id": "5406795f0e0a263724000601", "cast_id": 32, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 32}, {"name": "Imogen Poynton", "character": "Lila Barton", "id": 1405571, "credit_id": "552529ccc3a3687ded001421", "cast_id": 57, "profile_path": null, "order": 33}, {"name": "Isabella Poynton", "character": "Lila Barton", "id": 1405570, "credit_id": "552529db9251417be200a647", "cast_id": 58, "profile_path": null, "order": 34}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe4a449251416c750e3439", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 8.4, "runtime": 142}, "9750": {"poster_path": "/ouNyskL3MjSr1SZe5rIfxmQ1E4M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41098065, "overview": "Randy Daytona was a child ping pong prodigy who lost his chance at Olympic gold when his father is murdered by the mysterious Feng over a gambling debt. 15yrs later he's down on his luck and scraping a living doing seedy back room shows in Vegas; when the FBI turn up and ask for his help to take down Feng... who just happens to love Ping Pong.", "video": false, "id": 9750, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Balls of Fury", "tagline": "A huge comedy with tiny balls.", "vote_count": 51, "homepage": "http://www.ballsoffury.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0424823", "adult": false, "backdrop_path": "/fsyvKv5KgPWFSeN0lJuYoI9InpJ.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2007-08-29", "popularity": 0.0975178164199761, "original_title": "Balls of Fury", "budget": 0, "cast": [{"name": "Dan Fogler", "character": "Randy Daytona", "id": 58873, "credit_id": "52fe4526c3a36847f80bf2e5", "cast_id": 13, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 0}, {"name": "Christopher Walken", "character": "Feng", "id": 4690, "credit_id": "52fe4526c3a36847f80bf2e9", "cast_id": 14, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 1}, {"name": "George Lopez", "character": "Agent Ernie Rodriquez", "id": 41798, "credit_id": "52fe4526c3a36847f80bf2ed", "cast_id": 15, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 2}, {"name": "Maggie Q", "character": "Maggie Wong", "id": 21045, "credit_id": "52fe4526c3a36847f80bf2f1", "cast_id": 16, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 3}, {"name": "James Hong", "character": "Master Wong", "id": 20904, "credit_id": "52fe4526c3a36847f80bf2f5", "cast_id": 17, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 4}, {"name": "Brett Delbuono", "character": "Randy Daytona, jung", "id": 64213, "credit_id": "52fe4526c3a36847f80bf2f9", "cast_id": 18, "profile_path": "/zcTEJky6IMqFufRfDVvsi71YUxr.jpg", "order": 5}, {"name": "Aisha Tyler", "character": "Mahogany", "id": 38674, "credit_id": "52fe4526c3a36847f80bf309", "cast_id": 21, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 6}, {"name": "Terry Crews", "character": "Freddy", "id": 53256, "credit_id": "52fe4526c3a36847f80bf30d", "cast_id": 22, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 7}, {"name": "Robert Patrick", "character": "Sgt. Pete Daytona", "id": 418, "credit_id": "52fe4526c3a36847f80bf311", "cast_id": 23, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 8}, {"name": "Diedrich Bader", "character": "Gary", "id": 5727, "credit_id": "52fe4526c3a36847f80bf315", "cast_id": 24, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 9}, {"name": "Thomas Lennon", "character": "Karl Wolfschtagg", "id": 539, "credit_id": "52fe4526c3a36847f80bf319", "cast_id": 25, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 10}, {"name": "Cary-Hiroyuki Tagawa", "character": "Mysterious Asian Man", "id": 11398, "credit_id": "52fe4526c3a36847f80bf31d", "cast_id": 26, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 11}, {"name": "Jason Scott Lee", "character": "Siu-Foo", "id": 58319, "credit_id": "52fe4526c3a36847f80bf321", "cast_id": 27, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 12}, {"name": "Toby Huss", "character": "Groundskeeper", "id": 18271, "credit_id": "52fe4526c3a36847f80bf325", "cast_id": 28, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 13}, {"name": "David Koechner", "character": "Rick The Birdmaster", "id": 28638, "credit_id": "52fe4526c3a36847f80bf329", "cast_id": 29, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 14}, {"name": "Patton Oswalt", "character": "Hammer", "id": 10872, "credit_id": "52fe4526c3a36847f80bf32d", "cast_id": 30, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 15}, {"name": "Masi Oka", "character": "Jeff - Bathroom Attendant", "id": 17273, "credit_id": "52fe4526c3a36847f80bf331", "cast_id": 31, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 16}, {"name": "Irina Voronina", "character": "Coach Schmidt", "id": 138970, "credit_id": "54ef9b02c3a3686d6600778e", "cast_id": 32, "profile_path": "/mCQ6fVaPGCN84GLBnuxHuYcc4bT.jpg", "order": 17}], "directors": [{"name": "Ben Garant", "department": "Directing", "job": "Director", "credit_id": "52fe4526c3a36847f80bf2ff", "profile_path": "/uLZaBXlp3fwRMtccGF2u1D732D.jpg", "id": 59413}], "vote_average": 4.9, "runtime": 90}, "140823": {"poster_path": "/mvs3reS18RP6IhjLwwLeVtkoeg0.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112544580, "overview": "Author P.L. Travers travels from London to Hollywood as Walt Disney Pictures adapts her novel Mary Poppins for the big screen.", "video": false, "id": 140823, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Saving Mr. Banks", "tagline": "Where her book ended, their story began.", "vote_count": 381, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2140373", "adult": false, "backdrop_path": "/fJQ5kjLx4UdK05MC323Vlzwr6S8.jpg", "production_companies": [{"name": "Hopscotch Features", "id": 21079}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Ruby Films", "id": 2054}, {"name": "Essential Media & Entertainment", "id": 6747}, {"name": "BBC Films", "id": 288}], "release_date": "2013-12-20", "popularity": 1.3733718623877, "original_title": "Saving Mr. Banks", "budget": 35000000, "cast": [{"name": "Emma Thompson", "character": "P.L. Travers", "id": 7056, "credit_id": "52fe4a9c9251416c750e817d", "cast_id": 13, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 0}, {"name": "Tom Hanks", "character": "Walt Disney", "id": 31, "credit_id": "52fe4a9c9251416c750e8175", "cast_id": 11, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Ralph", "id": 13242, "credit_id": "52fe4a9c9251416c750e8181", "cast_id": 14, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Colin Farrell", "character": "Travers Robert Goff", "id": 72466, "credit_id": "52fe4a9c9251416c750e8179", "cast_id": 12, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 3}, {"name": "Ruth Wilson", "character": "Margaret Goff", "id": 47720, "credit_id": "52fe4a9c9251416c750e8195", "cast_id": 19, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 4}, {"name": "Jason Schwartzman", "character": "Richard Sherman", "id": 17881, "credit_id": "52fe4a9c9251416c750e8185", "cast_id": 15, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 5}, {"name": "Bradley Whitford", "character": "Don DaGradi", "id": 11367, "credit_id": "52fe4a9c9251416c750e8189", "cast_id": 16, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "Annie Rose Buckley", "character": "Ginty", "id": 1278755, "credit_id": "52fe4a9c9251416c750e81a3", "cast_id": 24, "profile_path": "/nWEt6ZCPYCsg3QhD1WiNSmde1OO.jpg", "order": 7}, {"name": "B. J. Novak", "character": "Robert Sherman", "id": 107770, "credit_id": "52fe4a9c9251416c750e8199", "cast_id": 20, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 8}, {"name": "Kathy Baker", "character": "Tommie", "id": 1907, "credit_id": "52fe4a9c9251416c750e818d", "cast_id": 17, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 9}, {"name": "Lily Bigham", "character": "Biddy", "id": 1278758, "credit_id": "52fe4a9c9251416c750e81a7", "cast_id": 25, "profile_path": "/o1IlzwudhmTAqaloYbMJlgYNPr4.jpg", "order": 10}, {"name": "Kathy Baker", "character": "Tommie", "id": 1907, "credit_id": "53135193925141101f006034", "cast_id": 36, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 11}, {"name": "Melanie Paxson", "character": "Dolly", "id": 1212273, "credit_id": "52fe4a9c9251416c750e81ab", "cast_id": 26, "profile_path": "/xOlCqhan45InytlH3LZPqzF8TCn.jpg", "order": 12}, {"name": "Andy McPhee", "character": "Mr. Belhatchett", "id": 78962, "credit_id": "52fe4a9d9251416c750e81af", "cast_id": 27, "profile_path": "/x3MFZjfrrMKde4NtGW40nleLidu.jpg", "order": 13}, {"name": "Rachel Griffiths", "character": "Aunt Ellie", "id": 3052, "credit_id": "52fe4a9c9251416c750e8191", "cast_id": 18, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 14}, {"name": "Ronan Vibert", "character": "Diarmuid Russell", "id": 20523, "credit_id": "531351a7925141101f006036", "cast_id": 37, "profile_path": "/3mCxRbHuq1aJwrFqLwk3OSdqva9.jpg", "order": 15}], "directors": [{"name": "John Lee Hancock", "department": "Directing", "job": "Director", "credit_id": "52fe4a9c9251416c750e814d", "profile_path": "/1eCqzsuFp0xKGeTEErXyEifN82U.jpg", "id": 54040}], "vote_average": 7.5, "runtime": 125}, "82390": {"poster_path": "/96TQRyIg1qgcLNXgqVn9ss2mAuT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1353868, "overview": "A reporter returns to his Florida hometown to investigate a case involving a death row inmate.", "video": false, "id": 82390, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Paperboy", "tagline": "", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1496422", "adult": false, "backdrop_path": "/atMRLGuU69e2SVSY8A7EwhWz0ip.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Lee Daniels Entertainment", "id": 695}, {"name": "Nu Image Films", "id": 925}, {"name": "Benaroya Pictures", "id": 6692}], "release_date": "2012-10-05", "popularity": 0.323451589928494, "original_title": "The Paperboy", "budget": 12500000, "cast": [{"name": "Zac Efron", "character": "Jack Jansen", "id": 29222, "credit_id": "52fe484e9251416c91087a6b", "cast_id": 2, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Ward Jansen", "id": 10297, "credit_id": "52fe484e9251416c91087a6f", "cast_id": 3, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Charlotte Bless", "id": 2227, "credit_id": "52fe484e9251416c91087a73", "cast_id": 4, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "John Cusack", "character": "Hillary Van Wetter", "id": 3036, "credit_id": "52fe484e9251416c91087a77", "cast_id": 5, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 3}, {"name": "David Oyelowo", "character": "Yardley Acheman", "id": 35013, "credit_id": "52fe484e9251416c91087a89", "cast_id": 10, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 4}, {"name": "Macy Gray", "character": "Anita / Narrator", "id": 60560, "credit_id": "52fe484e9251416c91087a81", "cast_id": 8, "profile_path": "/ykjPgs6Djwuxo8hpH04EWBDzeOo.jpg", "order": 5}, {"name": "Scott Glenn", "character": "W.W. Jansen", "id": 349, "credit_id": "52fe484e9251416c91087a85", "cast_id": 9, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 6}, {"name": "Nealla Gordon", "character": "Ellen Guthrie", "id": 109568, "credit_id": "52fe484e9251416c91087a95", "cast_id": 13, "profile_path": "/m1e1x5RBU0Ck9BnTj3gwPkLamXI.jpg", "order": 7}, {"name": "Ned Bellamy", "character": "Tyree van Wetter", "id": 2141, "credit_id": "52fe484e9251416c91087a8d", "cast_id": 11, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 8}, {"name": "Gary Clarke", "character": "Weldon Pine", "id": 134000, "credit_id": "52fe484e9251416c91087a99", "cast_id": 14, "profile_path": "/hnNqvXPQfOFMev2MsByTJSf0ygl.jpg", "order": 9}, {"name": "Nikolette Noel", "character": "Nancy", "id": 934869, "credit_id": "52fe484e9251416c91087a91", "cast_id": 12, "profile_path": "/3HjH0jkOcKuIfFiYxPkaU6M73TR.jpg", "order": 10}], "directors": [{"name": "Lee Daniels", "department": "Directing", "job": "Director", "credit_id": "52fe484e9251416c91087a67", "profile_path": "/xwsuwr435maV9wuo3iWXWVzEIMH.jpg", "id": 20019}], "vote_average": 5.5, "runtime": 107}, "1562": {"poster_path": "/qcZslsw1sCRRMIe1EOjuai2JZMf.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 64238440, "overview": "In this chilling sequel to 28 Days Later, the inhabitants of the British Isles appear to have lost their battle against the onslaught of disease, as the deadly rage virus has killed every citizen there. Six months later, a group of Americans dare to set foot on the isles, convinced the danger has come and gone. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.", "video": false, "id": 1562, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "28 Weeks Later", "tagline": "When days turn to weeks... the horror returns.", "vote_count": 380, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLT5tHDNzb5LfytO2g7q6dF0QkC.jpg", "poster_path": "/52KVqdsEJTYzDpUvOMvP0Bbfq5E.jpg", "id": 1565, "name": "28 Days Later Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0463854", "adult": false, "backdrop_path": "/q4GEKbi4ZO2lhZJg0Zr6kYNKQgm.jpg", "production_companies": [{"name": "DNA Films", "id": 284}, {"name": "Figment Films", "id": 359}, {"name": "Sociedad General de Cine S.A.", "id": 785}, {"name": "UK Film Council", "id": 2452}, {"name": "Fox Atomic", "id": 2890}, {"name": "Koan Films", "id": 10890}], "release_date": "2007-04-26", "popularity": 1.17528182830187, "original_title": "28 Weeks Later", "budget": 15000000, "cast": [{"name": "Imogen Poots", "character": "Tammy", "id": 17606, "credit_id": "52fe42fec3a36847f8032565", "cast_id": 17, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 0}, {"name": "Robert Carlyle", "character": "Don", "id": 18023, "credit_id": "52fe42fec3a36847f8032583", "cast_id": 23, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Scarlet", "id": 9827, "credit_id": "52fe42fec3a36847f803254b", "cast_id": 11, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Jeremy Renner", "character": "Sergeant Doyle", "id": 17604, "credit_id": "52fe42fec3a36847f8032555", "cast_id": 13, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 3}, {"name": "Harold Perrineau", "character": "Flynn", "id": 6195, "credit_id": "52fe42fec3a36847f8032561", "cast_id": 16, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 4}, {"name": "Catherine McCormack", "character": "Alice", "id": 2462, "credit_id": "52fe42fec3a36847f803255d", "cast_id": 15, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 5}, {"name": "Idris Elba", "character": "General Stone", "id": 17605, "credit_id": "52fe42fec3a36847f8032559", "cast_id": 14, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 6}, {"name": "Mackintosh Muggleton", "character": "Andy", "id": 17607, "credit_id": "52fe42fec3a36847f8032569", "cast_id": 18, "profile_path": "/iQFNTcNVfgHE4CZ4UoLhpNQoNmB.jpg", "order": 7}, {"name": "Amanda Walker", "character": "Sally", "id": 108620, "credit_id": "52fe42fec3a36847f8032587", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Shahid Ahmed", "character": "Jacob", "id": 2972, "credit_id": "52fe42fec3a36847f803256d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Garfield Morgan", "character": "Geoff", "id": 170257, "credit_id": "52fe42fec3a36847f803258b", "cast_id": 25, "profile_path": "/hbCQsxjwJEjx7evHmIVX3No9WSM.jpg", "order": 10}, {"name": "Emily Beecham", "character": "Karen", "id": 130414, "credit_id": "52fe42fec3a36847f803258f", "cast_id": 26, "profile_path": "/kuIBDuMZg1XLilCSpnhIUQ28ZXt.jpg", "order": 11}, {"name": "Beans El-Balawi", "character": "Boy in Cottage (as Beans Balawi)", "id": 58913, "credit_id": "52fe42fec3a36847f8032593", "cast_id": 27, "profile_path": "/gKKgurTC5zBJDiNSUnSxTWLmT4N.jpg", "order": 12}, {"name": "Meghan Popiel", "character": "DLR Soldier", "id": 1102065, "credit_id": "52fe42fec3a36847f8032597", "cast_id": 28, "profile_path": "/3clr9teZrczPM3lTwHKXH14De21.jpg", "order": 13}, {"name": "Stewart Alexander", "character": "Military Officer", "id": 165359, "credit_id": "52fe42fec3a36847f803259b", "cast_id": 29, "profile_path": "/hCnwlefK3ws4zYacepkUH9r3xlp.jpg", "order": 14}, {"name": "Philip Bulcock", "character": "Senior Medical Officer", "id": 1128854, "credit_id": "52fe42fec3a36847f803259f", "cast_id": 30, "profile_path": "/1HTTFGHLopYndPS5aYucpG79wTO.jpg", "order": 15}, {"name": "Chris Ryman", "character": "Rooftop Sniper", "id": 1148103, "credit_id": "52fe42fec3a36847f80325a3", "cast_id": 31, "profile_path": "/qTXI6K6TrbJiUxOp9dbgd4mLKJg.jpg", "order": 16}, {"name": "Tristan Tait", "character": "Soldier", "id": 170230, "credit_id": "52fe42fec3a36847f80325a7", "cast_id": 32, "profile_path": "/8XDYVxAyJq81qysTzE5p0KCgSKY.jpg", "order": 17}, {"name": "William Meredith", "character": "Medical Officer", "id": 122344, "credit_id": "52fe42fec3a36847f80325ab", "cast_id": 33, "profile_path": "/5AFiiW7d8MBsnhJhjcVE2LmlqPg.jpg", "order": 18}, {"name": "Matt Reeves", "character": "Bunker Soldier", "id": 127714, "credit_id": "52fe42fec3a36847f80325af", "cast_id": 34, "profile_path": "/unQHNIlbd25vcOfdjdJxKrCaHkD.jpg", "order": 19}, {"name": "Thomas Garvey", "character": "Bunker Major", "id": 235277, "credit_id": "52fe42fec3a36847f80325b3", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Tom Bodell", "character": "Medical Centre Lobby Soldier", "id": 1207197, "credit_id": "52fe42fec3a36847f80325b7", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Andrew Byron", "character": "Carpark Soldier", "id": 1052209, "credit_id": "52fe42fec3a36847f80325bb", "cast_id": 37, "profile_path": "/fogednBetMw92mjwthLs0DVJu9g.jpg", "order": 22}, {"name": "Sarah Finigan", "character": "Carpark Civilian", "id": 933049, "credit_id": "52fe42fec3a36847f80325bf", "cast_id": 38, "profile_path": "/77UiRlRRT3792HxusFxuPMrkNaW.jpg", "order": 23}, {"name": "Roderic Culver", "character": "Carpark Civilian", "id": 40641, "credit_id": "52fe42fec3a36847f80325c3", "cast_id": 39, "profile_path": "/pN6V2Ga9N8qwyzcD7yrlIMhU3CH.jpg", "order": 24}, {"name": "Maeve Malley-Ryan", "character": "Carpark Civilian (as Maeve Ryan)", "id": 1207199, "credit_id": "52fe42fec3a36847f80325c7", "cast_id": 40, "profile_path": "/8idtel3Nk44EUrwZI1voUMQdmoO.jpg", "order": 25}, {"name": "Ed Coleman", "character": "Carpark Civilian", "id": 210908, "credit_id": "52fe42fec3a36847f80325cb", "cast_id": 41, "profile_path": "/gFRjKe4QfoilRuXTZFsRZ4Eo0Gb.jpg", "order": 26}, {"name": "Karen Meagher", "character": "Carpark Civilian", "id": 82414, "credit_id": "52fe42fec3a36847f80325cf", "cast_id": 42, "profile_path": "/iIhQNJCYVsOmiMmP40FDub1CSBW.jpg", "order": 27}, {"name": "Amanda Lawrence", "character": "Carpark Civilian", "id": 990064, "credit_id": "52fe42fec3a36847f80325d3", "cast_id": 43, "profile_path": "/xoiT2bprfCct2fAvHatLiPzFU2L.jpg", "order": 28}, {"name": "Simon Delaney", "character": "Carpark Civilian", "id": 194867, "credit_id": "52fe42fec3a36847f80325d7", "cast_id": 44, "profile_path": "/qGVh9BWQjKkpr2eBgj2xU8DP2dF.jpg", "order": 29}, {"name": "Drew Rhys-Williams", "character": "Carpark Civilian", "id": 1207200, "credit_id": "52fe42fec3a36847f80325db", "cast_id": 45, "profile_path": "/7GmTgiU4qrQTpJyL9a6hsvaSE7x.jpg", "order": 30}, {"name": "Raymond Waring", "character": "Sam", "id": 584994, "credit_id": "52fe42fec3a36847f80325df", "cast_id": 46, "profile_path": "/iI9pw8ukPkgLRF20YVonTO5VQp8.jpg", "order": 31}, {"name": "Kish Sharma", "character": "Depot Man", "id": 513945, "credit_id": "52fe42fec3a36847f80325e3", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Jane Thorne", "character": "Depot Woman", "id": 210950, "credit_id": "52fe42fec3a36847f80325e7", "cast_id": 48, "profile_path": "/eEBZjANlDsDPgIuPYRk2oPBVpgY.jpg", "order": 33}, {"name": "Dean Alexandrou", "character": "Infected Person (uncredited)", "id": 94384, "credit_id": "52fe42fec3a36847f80325eb", "cast_id": 49, "profile_path": "/kr1WMrKVCx9eGJm4thT19gtrpA6.jpg", "order": 34}, {"name": "Didier Dell Benjamin", "character": "Civilian (uncredited)", "id": 1207201, "credit_id": "52fe42fec3a36847f80325ef", "cast_id": 50, "profile_path": "/ckwkBkKsC2Wt2GOrILtDBDFLY8X.jpg", "order": 35}, {"name": "Gareth Clarke", "character": "Infected Person (uncredited)", "id": 1207202, "credit_id": "52fe42fec3a36847f80325f3", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "James Fiddy", "character": "Victim (uncredited)", "id": 1207203, "credit_id": "52fe42fec3a36847f80325f7", "cast_id": 52, "profile_path": "/8RYvhkfNCuWiZOeWrzl46QWTCSU.jpg", "order": 37}, {"name": "Tommy Gunn", "character": "Marine (uncredited)", "id": 1207204, "credit_id": "52fe42fec3a36847f80325fb", "cast_id": 53, "profile_path": "/yiBD0BrDZIsSN4m8f0d8Hl76Eo9.jpg", "order": 38}, {"name": "Daniel Jefferson", "character": "Civilian (uncredited)", "id": 1207205, "credit_id": "52fe42fec3a36847f80325ff", "cast_id": 54, "profile_path": "/g5yRCY0i5d035z1abC1FFptcsDT.jpg", "order": 39}, {"name": "Debbie Kurup", "character": "Infected Person (uncredited)", "id": 1207206, "credit_id": "52fe42fec3a36847f8032603", "cast_id": 55, "profile_path": "/orhBknLRtV7AGXVkEAlol0p7ncq.jpg", "order": 40}, {"name": "Selina Lo", "character": "Infected Person (uncredited)", "id": 115500, "credit_id": "52fe42fec3a36847f8032607", "cast_id": 56, "profile_path": "/wUP65sNUwWZhkzgX0e1BOAIQGwd.jpg", "order": 41}, {"name": "Jo\u00e3o Costa Menezes", "character": "Infected Person (uncredited)", "id": 1207207, "credit_id": "52fe42fec3a36847f803260b", "cast_id": 57, "profile_path": "/xDnd4tnHZAgdMgmt443E4nG7Ko0.jpg", "order": 42}, {"name": "Jane Osborn", "character": "Infected Person (uncredited)", "id": 1207208, "credit_id": "52fe42fec3a36847f803260f", "cast_id": 58, "profile_path": "/lFQrLmDGmEyuETWXZD8CDveA27e.jpg", "order": 43}, {"name": "Jude Poyer", "character": "Infected Person (uncredited)", "id": 65952, "credit_id": "52fe42fec3a36847f8032613", "cast_id": 59, "profile_path": "/quUa0O1fTgPH5aRRq3RNYL6pg8b.jpg", "order": 44}, {"name": "Joseph Ripley", "character": "Infected person (uncredited)", "id": 1207209, "credit_id": "52fe42fec3a36847f8032617", "cast_id": 60, "profile_path": null, "order": 45}], "directors": [{"name": "Juan Carlos Fresnadillo", "department": "Directing", "job": "Director", "credit_id": "52fe42fec3a36847f8032511", "profile_path": "/94EkO6a7AGD7RMR3xWXGmJCY8UW.jpg", "id": 17597}], "vote_average": 6.3, "runtime": 100}, "9757": {"poster_path": "/mbScfMvi5xropJmztEgLGwmeo6N.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95673607, "overview": "A mild-mannered guy who is engaged to a monstrous woman meets the woman of his dreams, and schemes to find a way to be with her.", "video": false, "id": 9757, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Norbit", "tagline": "Have You Ever Made A Really Big Mistake?", "vote_count": 77, "homepage": "http://www.meetnorbit.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477051", "adult": false, "backdrop_path": "/3ZlkfPqLJjuJYNvPFSnxfgtxTjW.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2007-02-08", "popularity": 1.00830336859349, "original_title": "Norbit", "budget": 60000000, "cast": [{"name": "Eddie Murphy", "character": "Norbit", "id": 776, "credit_id": "52fe4527c3a36847f80bf6df", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Thandie Newton", "character": "Kate Thomas", "id": 9030, "credit_id": "52fe4527c3a36847f80bf6e3", "cast_id": 2, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 1}, {"name": "Terry Crews", "character": "Big Jack Latimore", "id": 53256, "credit_id": "52fe4527c3a36847f80bf6e7", "cast_id": 3, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 2}, {"name": "Clifton Powell", "character": "Earl Latimore", "id": 58924, "credit_id": "52fe4527c3a36847f80bf6eb", "cast_id": 4, "profile_path": "/hBw76xJtCwKS2v5rZtzDBqvKLN6.jpg", "order": 3}, {"name": "Lester Speight", "character": "Blue Latimore (as Lester 'Rasta' Speight)", "id": 58925, "credit_id": "52fe4527c3a36847f80bf6ef", "cast_id": 5, "profile_path": "/c0hD4G1ppoHrKrDvygSa9bU2q2q.jpg", "order": 4}, {"name": "Cuba Gooding Jr.", "character": "Deion Hughes", "id": 9777, "credit_id": "52fe4527c3a36847f80bf6f3", "cast_id": 6, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 5}, {"name": "Katt Williams", "character": "Lord Have Mercy", "id": 58926, "credit_id": "52fe4527c3a36847f80bf6f7", "cast_id": 8, "profile_path": "/8f1nGRYIkA9fSBYtU8olUm07Wib.jpg", "order": 7}, {"name": "Floyd Levine", "character": "Abe the Tailor", "id": 58927, "credit_id": "52fe4527c3a36847f80bf6fb", "cast_id": 9, "profile_path": "/qP8m9hTm9DDIslygjManiBqktj8.jpg", "order": 8}, {"name": "Anthony Russell", "character": "Giovanni", "id": 58474, "credit_id": "52fe4527c3a36847f80bf6ff", "cast_id": 10, "profile_path": "/pEDgSXNYJpqkKFxjUywDYn7pKBE.jpg", "order": 9}, {"name": "Pat Crawford Brown", "character": "Mrs. Henderson", "id": 58928, "credit_id": "52fe4527c3a36847f80bf703", "cast_id": 11, "profile_path": "/1aZTnQDtH0rXwA7ox0mCUsJj9z0.jpg", "order": 10}, {"name": "Jeanette Miller", "character": "Mrs. Coleman", "id": 58929, "credit_id": "52fe4527c3a36847f80bf707", "cast_id": 12, "profile_path": "/mpWlUmcibBwYRGZSYn1jY8Ot5Ne.jpg", "order": 11}, {"name": "Michael Colyar", "character": "Morris the Barber", "id": 54430, "credit_id": "52fe4527c3a36847f80bf70b", "cast_id": 13, "profile_path": "/mPFHpTOxGyGuyTdxre202ZqSoLu.jpg", "order": 12}, {"name": "Marlon Wayans", "character": "Buster", "id": 9562, "credit_id": "52fe4527c3a36847f80bf70f", "cast_id": 14, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 13}, {"name": "Alexis Rhee", "character": "Mrs. Ling Ling Wong", "id": 58930, "credit_id": "52fe4527c3a36847f80bf713", "cast_id": 15, "profile_path": "/vu4RAoiD4eXXt0KRA882IwmZQAE.jpg", "order": 14}, {"name": "Eddie Griffin", "character": "Pope Sweet Jesus", "id": 62842, "credit_id": "52fe4527c3a36847f80bf747", "cast_id": 24, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 15}], "directors": [{"name": "Brian Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe4527c3a36847f80bf719", "profile_path": "/l7UfY9nBeus8bHHXvf3mUmtagQJ.jpg", "id": 53177}], "vote_average": 5.3, "runtime": 101}, "9759": {"poster_path": "/wguhhHAHoh2ECwjf5oHRH0P9ial.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56422687, "overview": "A young man receives an emergency phone call on his cell phone from an older woman. The catch? The woman claims to have been kidnapped; and the kidnappers have targeted her husband and child next.", "video": false, "id": 9759, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Cellular", "tagline": "If the signal dies so does she", "vote_count": 141, "homepage": "http://www.cellularthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337921", "adult": false, "backdrop_path": "/xRr4nXdNPjP8sXlNdUH7ckfrqMB.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2004-09-10", "popularity": 1.09324465528016, "original_title": "Cellular", "budget": 25000000, "cast": [{"name": "Chris Evans", "character": "Ryan", "id": 16828, "credit_id": "52fe4527c3a36847f80bf7d7", "cast_id": 20, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Kim Basinger", "character": "Jessica Martin", "id": 326, "credit_id": "52fe4527c3a36847f80bf78d", "cast_id": 3, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 1}, {"name": "Jason Statham", "character": "Ethan", "id": 976, "credit_id": "52fe4527c3a36847f80bf7d3", "cast_id": 19, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Jessica Biel", "character": "Chloe", "id": 10860, "credit_id": "52fe4527c3a36847f80bf795", "cast_id": 5, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 3}, {"name": "William H. Macy", "character": "Sgt. Bob Mooney", "id": 3905, "credit_id": "52fe4527c3a36847f80bf7db", "cast_id": 21, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 4}, {"name": "Will Beinbrink", "character": "Young Security Guard", "id": 58942, "credit_id": "52fe4527c3a36847f80bf791", "cast_id": 4, "profile_path": "/ppLJLsXKF8PsxuiVKx194M4GuNW.jpg", "order": 5}, {"name": "Valerie Cruz", "character": "Dana Bayback", "id": 43232, "credit_id": "52fe4527c3a36847f80bf7bd", "cast_id": 15, "profile_path": "/wZ2p4ET7c6wOcMhD2G2EAkDcE6H.jpg", "order": 6}, {"name": "Brenda Ballard", "character": "Irate Customer #1", "id": 58941, "credit_id": "52fe4527c3a36847f80bf789", "cast_id": 2, "profile_path": null, "order": 7}, {"name": "Caroline Aaron", "character": "Marilyn Mooney", "id": 1910, "credit_id": "52fe4527c3a36847f80bf785", "cast_id": 1, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 8}, {"name": "Chase Bloch", "character": "Timid Boy", "id": 58943, "credit_id": "52fe4527c3a36847f80bf799", "cast_id": 6, "profile_path": null, "order": 9}, {"name": "Chelsea Bloch", "character": "Surf Girl's Friend", "id": 58944, "credit_id": "52fe4527c3a36847f80bf79d", "cast_id": 7, "profile_path": null, "order": 10}, {"name": "Chantille Boudousque", "character": "Chloe's Chilly Friend", "id": 58945, "credit_id": "52fe4527c3a36847f80bf7a1", "cast_id": 8, "profile_path": null, "order": 11}, {"name": "Robin Brenner", "character": "Excitable Customer", "id": 58946, "credit_id": "52fe4527c3a36847f80bf7a5", "cast_id": 9, "profile_path": null, "order": 12}, {"name": "Richard Burgi", "character": "Craig Martin", "id": 25849, "credit_id": "52fe4527c3a36847f80bf7a9", "cast_id": 10, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 13}, {"name": "Paige Cannon", "character": "Girl at Concert", "id": 58947, "credit_id": "52fe4527c3a36847f80bf7ad", "cast_id": 11, "profile_path": null, "order": 14}, {"name": "Nikki Christian", "character": "Porsche Girl", "id": 58948, "credit_id": "52fe4527c3a36847f80bf7b1", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "John Churchill", "character": "Young Guard", "id": 58949, "credit_id": "52fe4527c3a36847f80bf7b5", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Greg Collins", "character": "Aging Security Guard", "id": 58950, "credit_id": "52fe4527c3a36847f80bf7b9", "cast_id": 14, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 17}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe4527c3a36847f80bf7c3", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 6.1, "runtime": 94}, "9760": {"poster_path": "/b4iOOIzR19TnqtUEetXBFxJ54YV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86865564, "overview": "When Edward, Peter, Lucy and Susan each follow their own path, they end up finding themselves at Willy's Chocolate factory. Walking through a wardrobe, they discover the world of Gnarnia, which is ruled by the White Bitch. Meeting up with characters such as Harry Potter and Captain Jack Swallows, the newly reunited family must team up with Aslo, a wise-but-horny lion to stop the white bitch's army", "video": false, "id": 9760, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Epic Movie", "tagline": "We know it's big. We measured it.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0799949", "adult": false, "backdrop_path": "/z2wrnvyIt0SXqrWJnysUFUYDFyx.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2007-01-26", "popularity": 0.586192476731354, "original_title": "Epic Movie", "budget": 20000000, "cast": [{"name": "Kal Penn", "character": "Edward", "id": 53493, "credit_id": "52fe4528c3a36847f80bf833", "cast_id": 1, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 0}, {"name": "Adam Campbell", "character": "Peter", "id": 58952, "credit_id": "52fe4528c3a36847f80bf837", "cast_id": 2, "profile_path": "/tOqtFuVOrb5b9SQRlRfknMPQEyx.jpg", "order": 1}, {"name": "Jennifer Coolidge", "character": "White Bitch", "id": 38334, "credit_id": "52fe4528c3a36847f80bf83b", "cast_id": 3, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 2}, {"name": "Jayma Mays", "character": "Lucy", "id": 34195, "credit_id": "52fe4528c3a36847f80bf83f", "cast_id": 4, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 3}, {"name": "Faune A. Chambers", "character": "Susan", "id": 58953, "credit_id": "52fe4528c3a36847f80bf843", "cast_id": 5, "profile_path": "/hJrfy8Cgd2Xm2hXvgXEOHmqvzZi.jpg", "order": 4}, {"name": "Crispin Glover", "character": "Willy", "id": 1064, "credit_id": "52fe4528c3a36847f80bf847", "cast_id": 6, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 5}, {"name": "Tony Cox", "character": "Bink", "id": 19754, "credit_id": "52fe4528c3a36847f80bf84b", "cast_id": 7, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 6}, {"name": "H\u00e9ctor Jim\u00e9nez", "character": "Mr. Tumnus", "id": 57410, "credit_id": "52fe4528c3a36847f80bf84f", "cast_id": 8, "profile_path": "/gdPEBAWjybV1eBp4qvFg2dj410j.jpg", "order": 7}, {"name": "Darrell Hammond", "character": "Captain Jack Swallows", "id": 58954, "credit_id": "52fe4528c3a36847f80bf853", "cast_id": 9, "profile_path": "/gxLHYyptnLLtak6E5eR7HqvMXRM.jpg", "order": 8}, {"name": "Carmen Electra", "character": "Mystique", "id": 28639, "credit_id": "52fe4528c3a36847f80bf857", "cast_id": 10, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 9}, {"name": "Fred Willard", "character": "Aslo", "id": 20753, "credit_id": "52fe4528c3a36847f80bf85b", "cast_id": 11, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 10}, {"name": "David Carradine", "character": "Museum Curator", "id": 141, "credit_id": "52fe4528c3a36847f80bf85f", "cast_id": 12, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 11}, {"name": "Kevin McDonald", "character": "Harry Potter", "id": 58955, "credit_id": "52fe4528c3a36847f80bf863", "cast_id": 13, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 12}, {"name": "George Alvarez", "character": "Ron", "id": 58956, "credit_id": "52fe4528c3a36847f80bf867", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Crista Flanagan", "character": "Hermoine", "id": 58957, "credit_id": "52fe4528c3a36847f80bf86b", "cast_id": 15, "profile_path": "/pLXGRqfV0nXNN1PdbfdleT8aQ5j.jpg", "order": 14}, {"name": "Jill Latiano", "character": "Singing Pirate Girl", "id": 180408, "credit_id": "52fe4528c3a36847f80bf887", "cast_id": 20, "profile_path": "/g37gSAprjNV2NSNJHDdC2BbzEZn.jpg", "order": 15}, {"name": "Irina Voronina", "character": "Jogging Girl", "id": 138970, "credit_id": "54ef9b7e9251417974006aa6", "cast_id": 21, "profile_path": "/mCQ6fVaPGCN84GLBnuxHuYcc4bT.jpg", "order": 16}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bf871", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bf877", "profile_path": null, "id": 35734}], "vote_average": 3.5, "runtime": 86}, "9762": {"poster_path": "/gyLww7ZlcwuzqvIwM1osR9Ioqtm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114194847, "overview": "Everyone deserves a chance to follow their dreams, but some people only get one shot. Tyler Gage is a rebel from the wrong side of Baltimore\u00b9s tracks and the only thing that stands between him and an unfulfilled life are his dreams of one day making it out of there. Nora is a privileged ballet dancer attending Baltimore\u00b9s ultra-elite Maryland School of the Arts", "video": false, "id": 9762, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up", "tagline": "Every Second Chance Begins With a First Step", "vote_count": 237, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462590", "adult": false, "backdrop_path": "/iNj9LMS5APEHKsFLJdd5geQ94HM.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2006-08-11", "popularity": 2.14238463621609, "original_title": "Step Up", "budget": 12000000, "cast": [{"name": "Channing Tatum", "character": "Tyler Gage", "id": 38673, "credit_id": "52fe4528c3a36847f80bf8fb", "cast_id": 1, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Jenna Dewan", "character": "Nora Clark", "id": 20381, "credit_id": "52fe4528c3a36847f80bf8ff", "cast_id": 2, "profile_path": "/j8BeJ5VL3jp7JWxgYlZPUscP6FC.jpg", "order": 1}, {"name": "Damaine Radcliff", "character": "Mac Carter", "id": 58959, "credit_id": "52fe4528c3a36847f80bf903", "cast_id": 3, "profile_path": "/jLi45CGvPZnCKC5yrXb8NKZmEcG.jpg", "order": 2}, {"name": "De'Shawn Washington", "character": "Skinny Carter", "id": 58960, "credit_id": "52fe4528c3a36847f80bf907", "cast_id": 4, "profile_path": "/mlh9jhbxZPBRbv6fFIuEWTFbZa0.jpg", "order": 3}, {"name": "Mario", "character": "Miles Darby", "id": 58961, "credit_id": "52fe4528c3a36847f80bf90b", "cast_id": 5, "profile_path": "/kIqeadP6fLwoCcrh6f3fKywojAQ.jpg", "order": 4}, {"name": "Drew Sidora", "character": "Lucy Avila", "id": 58962, "credit_id": "52fe4528c3a36847f80bf90f", "cast_id": 6, "profile_path": "/oJS188CTSKwXNGOV9MkxLg5iic0.jpg", "order": 5}, {"name": "Rachel Griffiths", "character": "Director Gordon", "id": 3052, "credit_id": "52fe4528c3a36847f80bf913", "cast_id": 7, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 6}, {"name": "Josh Henderson", "character": "Brett Dolan", "id": 58963, "credit_id": "52fe4528c3a36847f80bf917", "cast_id": 8, "profile_path": "/prBPehVw5l9Sa7ekryA9bXHExjR.jpg", "order": 7}, {"name": "Tim Lacatena", "character": "Andrew", "id": 58964, "credit_id": "52fe4528c3a36847f80bf91b", "cast_id": 9, "profile_path": "/yyswRcxsJOTPpELMx2kXappW2wb.jpg", "order": 8}, {"name": "Alyson Stoner", "character": "Camille", "id": 58965, "credit_id": "52fe4528c3a36847f80bf91f", "cast_id": 10, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 9}, {"name": "Heavy D", "character": "Omar", "id": 18795, "credit_id": "52fe4528c3a36847f80bf923", "cast_id": 11, "profile_path": "/8HDYOmyNHF3GkzcC6FSRjtYD4Sd.jpg", "order": 10}, {"name": "Deirdre Lovejoy", "character": "Nora's Mom / Katherine Clark", "id": 58966, "credit_id": "52fe4528c3a36847f80bf927", "cast_id": 12, "profile_path": "/yH2bcRNh4g9ZTRigDgRhVJEF2gh.jpg", "order": 11}, {"name": "Jane Beard", "character": "Lena Freeman", "id": 58967, "credit_id": "52fe4528c3a36847f80bf92b", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Richard Pelzman", "character": "Bill Freeman", "id": 58968, "credit_id": "52fe4528c3a36847f80bf92f", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Carlyncia S. Peck", "character": "Mac's Mother (as Carlyncia Peck)", "id": 58969, "credit_id": "52fe4528c3a36847f80bf933", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bf939", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 6.7, "runtime": 104}, "9763": {"poster_path": "/wMHXE4qkxBdaahCNhCK2wPJHRKD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27610873, "overview": "Like millions of kids around the world, Santiago harbors the dream of being a professional footballer...However, living in the Barrios section of Los Angeles, he thinks it is only that--a dream. Until one day an extraordinary turn of events has him trying out for Premiership club Newcastle United.", "video": false, "id": 9763, "genres": [{"id": 18, "name": "Drama"}], "title": "Goal!: The Dream Begins", "tagline": "Every Dream Has A Beginning", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/v3HCGVQJ5xmZ37oRKUpsEf4zKQq.jpg", "id": 110177, "name": "Goal! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0380389", "adult": false, "backdrop_path": "/d6M6G6pKIX97hp236KlrDh5uO7P.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Milkshake Films", "id": 17491}, {"name": "Hargitay & Hargitay Pictures in Motion", "id": 17492}], "release_date": "2005-06-06", "popularity": 1.03476385099663, "original_title": "Goal!: The Dream Begins", "budget": 30000000, "cast": [{"name": "Kuno Becker", "character": "Santiago Munez", "id": 58982, "credit_id": "52fe4528c3a36847f80bf9c7", "cast_id": 1, "profile_path": "/brVMiAlM8jGEm61233hIs4IP8Im.jpg", "order": 0}, {"name": "Alessandro Nivola", "character": "Gavin Harris", "id": 4941, "credit_id": "52fe4528c3a36847f80bf9cb", "cast_id": 2, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 1}, {"name": "Anna Friel", "character": "Roz Harmison", "id": 58016, "credit_id": "52fe4528c3a36847f80bf9cf", "cast_id": 3, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Glen Foy", "id": 8435, "credit_id": "52fe4528c3a36847f80bf9d3", "cast_id": 4, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Gary Lewis", "character": "Mal Braithwaite", "id": 480, "credit_id": "52fe4528c3a36847f80bf9d7", "cast_id": 5, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 4}, {"name": "Kieran O'Brien", "character": "Hughie McGowan", "id": 176, "credit_id": "52fe4528c3a36847f80bf9db", "cast_id": 6, "profile_path": "/fNJsy19jh5lUGWLkSKFGTtnEiOL.jpg", "order": 5}, {"name": "Sean Pertwee", "character": "Barry Rankin", "id": 28848, "credit_id": "52fe4528c3a36847f80bf9df", "cast_id": 7, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 6}, {"name": "Marcel Iures", "character": "Erik Dornhelm", "id": 15320, "credit_id": "52fe4528c3a36847f80bf9e3", "cast_id": 8, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 7}, {"name": "Tony Plana", "character": "Hernan Munez", "id": 41737, "credit_id": "52fe4528c3a36847f80bf9e7", "cast_id": 9, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 8}, {"name": "Miriam Colon", "character": "Mercedes", "id": 1163, "credit_id": "52fe4528c3a36847f80bf9eb", "cast_id": 10, "profile_path": "/vNKUyJKVIvAmXT6pv0vWrZXazlS.jpg", "order": 9}, {"name": "Kate Tomlinson", "character": "Val", "id": 58984, "credit_id": "52fe4528c3a36847f80bf9ef", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Emma Field-Rayner", "character": "Lorraine", "id": 11284, "credit_id": "52fe4528c3a36847f80bf9f3", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Zachary Johnson", "character": "Rory", "id": 58985, "credit_id": "52fe4528c3a36847f80bf9f7", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Frances Barber", "character": "Carol Harmison", "id": 47644, "credit_id": "52fe4528c3a36847f80bf9fb", "cast_id": 14, "profile_path": "/anRoKNTpiJhnMTzdcKPujsDowAQ.jpg", "order": 13}, {"name": "Kevin Knapman", "character": "Jamie Drew", "id": 58986, "credit_id": "52fe4528c3a36847f80bf9ff", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Stephen Graham", "character": "Des", "id": 1115, "credit_id": "546289810e0a267810000500", "cast_id": 35, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 15}], "directors": [{"name": "Danny Cannon", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bfa05", "profile_path": "/9E4Km6y1O0bK3dUSds3smzu20KI.jpg", "id": 33279}], "vote_average": 6.7, "runtime": 118}, "1572": {"poster_path": "/q4ixsZm82c8GpwsQmjMuwVl5gM9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361212499, "overview": "New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new \"partner\" -- and his beloved city -- in a deadly game that demands their concentration.", "video": false, "id": 1572, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Die Hard: With a Vengeance", "tagline": "Think fast. Look alive. Die hard.", "vote_count": 935, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt0112864", "adult": false, "backdrop_path": "/wV4qDEkxIVbhTKNFJCXYVm1GxdW.jpg", "production_companies": [{"name": "Cinergi Pictures Entertainment", "id": 1504}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1995-05-15", "popularity": 2.70258006263679, "original_title": "Die Hard: With a Vengeance", "budget": 90000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe42ffc3a36847f803297b", "cast_id": 8, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Simon Peter Gruber", "id": 16940, "credit_id": "52fe42ffc3a36847f8032977", "cast_id": 7, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Zeus Carver", "id": 2231, "credit_id": "52fe42ffc3a36847f803297f", "cast_id": 9, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Graham Greene", "character": "Joe Lambert", "id": 6804, "credit_id": "52fe42ffc3a36847f803298f", "cast_id": 12, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 3}, {"name": "Colleen Camp", "character": "Connie Kowalski", "id": 13023, "credit_id": "52fe42ffc3a36847f8032993", "cast_id": 13, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 4}, {"name": "Larry Bryggman", "character": "Chief Cobb", "id": 17351, "credit_id": "52fe42ffc3a36847f8032997", "cast_id": 14, "profile_path": "/fc7XC4C0DayJ6g8ReydAWjwY3IX.jpg", "order": 5}, {"name": "Michael Cristofer", "character": "Jarvis", "id": 21136, "credit_id": "52fe42ffc3a36847f803299b", "cast_id": 15, "profile_path": "/7FbuXmO6dtQ9ZXoon3mth1j9PZV.jpg", "order": 6}, {"name": "Anthony Peck", "character": "Ricky Walsh", "id": 141747, "credit_id": "52fe42ffc3a36847f803299f", "cast_id": 16, "profile_path": "/57e2de2WH5jFm6AJYNTSSjGymtS.jpg", "order": 7}, {"name": "Nicholas Wyman", "character": "Targo", "id": 91421, "credit_id": "52fe42ffc3a36847f80329a3", "cast_id": 17, "profile_path": "/zmwoKCWJ64eLWihIcLdLbJPbWp1.jpg", "order": 8}, {"name": "Sam Phillips", "character": "Katya", "id": 45337, "credit_id": "52fe42ffc3a36847f80329a7", "cast_id": 18, "profile_path": "/8SlWODNQqLc2074BRSNuQTC3wnG.jpg", "order": 9}, {"name": "Kevin Chamberlin", "character": "Charles Weiss", "id": 34395, "credit_id": "52fe42ffc3a36847f80329ab", "cast_id": 19, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 10}, {"name": "Sharon Washington", "character": "Officer Jane", "id": 141748, "credit_id": "52fe42ffc3a36847f80329af", "cast_id": 20, "profile_path": "/xoZjdLHK0p6cPMewBFCQ3JxxIex.jpg", "order": 11}, {"name": "Stephen Pearlman", "character": "Dr. Schiller", "id": 6438, "credit_id": "52fe42ffc3a36847f80329b3", "cast_id": 21, "profile_path": "/a1LcI65LvyKKi5UmaAc2PPihsQm.jpg", "order": 12}, {"name": "Michael Alexander Jackson", "character": "Dexter", "id": 141749, "credit_id": "52fe42ffc3a36847f80329b7", "cast_id": 22, "profile_path": "/aKi2X09NR1h07eR39LcL8nOcu9p.jpg", "order": 13}, {"name": "Aldis Hodge", "character": "Raymond", "id": 83860, "credit_id": "52fe42ffc3a36847f80329bb", "cast_id": 23, "profile_path": "/lPYksVSaRdaHOhC4OzBEOw4uRbp.jpg", "order": 14}, {"name": "Mischa Hausserman", "character": "Mischa", "id": 19902, "credit_id": "52fe42ffc3a36847f80329bf", "cast_id": 24, "profile_path": "/4CJ8dgYS1QJWANpivJ8CI9aARog.jpg", "order": 15}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032955", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.6, "runtime": 131}, "50725": {"poster_path": "/oGQq6m7wxtxRy7vf0WE59A5Zau4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6923891, "overview": "A floundering MIT graduate sends out the '80s with a bang after being invited to an end-of-summer bash by his former high school crush.", "video": false, "id": 50725, "genres": [{"id": 35, "name": "Comedy"}], "title": "Take Me Home Tonight", "tagline": "Best. Night. Ever.", "vote_count": 59, "homepage": "http://www.iamrogue.com/takemehometonight/fullsite/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0810922", "adult": false, "backdrop_path": "/8eCiasauFjjYAOZ81cRwNZGlgnP.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Relativity Media", "id": 7295}, {"name": "Internationale Filmproduktion Blackbird Dritte", "id": 19855}], "release_date": "2011-03-04", "popularity": 0.424258528390488, "original_title": "Take Me Home Tonight", "budget": 19000000, "cast": [{"name": "Topher Grace", "character": "Matt Franklin", "id": 17052, "credit_id": "52fe47d4c3a36847f814a7e7", "cast_id": 1, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 0}, {"name": "Anna Faris", "character": "Wendy Franklin", "id": 1772, "credit_id": "52fe47d4c3a36847f814a7eb", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Barry Nathan", "id": 58873, "credit_id": "52fe47d4c3a36847f814a7ef", "cast_id": 3, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Teresa Palmer", "character": "Tori Frederking", "id": 20374, "credit_id": "52fe47d4c3a36847f814a7f7", "cast_id": 5, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 3}, {"name": "Michelle Trachtenberg", "character": "Kitchelle Storms", "id": 49961, "credit_id": "52fe47d4c3a36847f814a7f3", "cast_id": 4, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 4}, {"name": "Michael Biehn", "character": "Bill Franklin", "id": 2712, "credit_id": "52fe47d4c3a36847f814a7fb", "cast_id": 6, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 5}, {"name": "Chris Pratt", "character": "Kyle Masterson", "id": 73457, "credit_id": "52fe47d4c3a36847f814a7ff", "cast_id": 7, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 6}, {"name": "Jeanie Hackett", "character": "Libby Franklin", "id": 167081, "credit_id": "52fe47d4c3a36847f814a81b", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Lucy Punch", "character": "Shelly", "id": 66446, "credit_id": "52fe47d4c3a36847f814a81f", "cast_id": 14, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 8}, {"name": "Demetri Martin", "character": "Carlos", "id": 84075, "credit_id": "52fe47d4c3a36847f814a823", "cast_id": 15, "profile_path": "/puyGH5mGvsky1RU3rcXqB93xq9S.jpg", "order": 9}, {"name": "Michael Ian Black", "character": "Pete Bering", "id": 22224, "credit_id": "52fe47d4c3a36847f814a827", "cast_id": 16, "profile_path": "/aE2Bx6ABC8GWEDkCxzC8sFA7jni.jpg", "order": 10}, {"name": "Bob Odenkirk", "character": "Mike", "id": 59410, "credit_id": "52fe47d4c3a36847f814a82b", "cast_id": 17, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 11}, {"name": "Angie Everhart", "character": "Trish Anderson", "id": 58312, "credit_id": "52fe47d4c3a36847f814a82f", "cast_id": 18, "profile_path": "/n4coY7os9hPRRLAzcpr4clpLVh1.jpg", "order": 12}, {"name": "Jay Jablonski", "character": "Benji", "id": 63110, "credit_id": "52fe47d4c3a36847f814a833", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Edwin Hodge", "character": "Bryce", "id": 56679, "credit_id": "52fe47d4c3a36847f814a837", "cast_id": 20, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 14}, {"name": "Candace Kroslak", "character": "Ally", "id": 129228, "credit_id": "52fe47d4c3a36847f814a83b", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Nathalie Kelley", "character": "Beth", "id": 116277, "credit_id": "52fe47d4c3a36847f814a83f", "cast_id": 22, "profile_path": "/uXWUjkFD3ZSp9wF5rN74YhfFJOH.jpg", "order": 16}, {"name": "Wade Allain-Marcus", "character": "Broder", "id": 60488, "credit_id": "52fe47d4c3a36847f814a843", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Robert Hoffman", "character": "Tyler 'Dance Machine' Jones", "id": 58368, "credit_id": "52fe47d4c3a36847f814a847", "cast_id": 24, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 18}, {"name": "Ryan Bittle", "character": "Rick Herrington", "id": 149468, "credit_id": "52fe47d4c3a36847f814a84b", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Bruce Nelson", "character": "Officer Frank Johnson", "id": 18705, "credit_id": "52fe47d4c3a36847f814a84f", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Seth Gabel", "character": "Brent", "id": 38888, "credit_id": "52fe47d4c3a36847f814a853", "cast_id": 27, "profile_path": "/luxC39d38CENJY01TeHJb4M9CFk.jpg", "order": 21}, {"name": "James Sharpe", "character": "Steven", "id": 173833, "credit_id": "52fe47d4c3a36847f814a857", "cast_id": 28, "profile_path": null, "order": 22}], "directors": [{"name": "Michael Dowse", "department": "Directing", "job": "Director", "credit_id": "52fe47d4c3a36847f814a805", "profile_path": null, "id": 71280}], "vote_average": 6.9, "runtime": 97}, "1574": {"poster_path": "/18pCc2XZ5MO7wsywOYEbhoeuxNw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 306776732, "overview": "Murderesses Velma Kelly (a chanteuse and tease who killed her husband and sister after finding them in bed together) and Roxie Hart (who killed her boyfriend when she discovered he wasn't going to make her a star) find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.", "video": false, "id": 1574, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Chicago", "tagline": "If You Can't Be Famous, Be Infamous.", "vote_count": 173, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0299658", "adult": false, "backdrop_path": "/qXLXEvYSycdllvdKvmhFXLUcFhM.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Producers Circle", "id": 734}, {"name": "Storyline Entertainment", "id": 8797}], "release_date": "2002-12-26", "popularity": 0.753423343734778, "original_title": "Chicago", "budget": 45000000, "cast": [{"name": "Catherine Zeta-Jones", "character": "Velma Kelly", "id": 1922, "credit_id": "52fe42ffc3a36847f8032b7d", "cast_id": 12, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Roxie Hart", "id": 9137, "credit_id": "52fe42ffc3a36847f8032b81", "cast_id": 13, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Queen Latifah", "character": "Matron Mama Morton", "id": 15758, "credit_id": "52fe42ffc3a36847f8032b85", "cast_id": 14, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 2}, {"name": "Richard Gere", "character": "Billy Flynn", "id": 1205, "credit_id": "52fe42ffc3a36847f8032b89", "cast_id": 15, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 3}, {"name": "Christine Baranski", "character": "Mary Sunshine", "id": 11870, "credit_id": "52fe42ffc3a36847f8032b8d", "cast_id": 16, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 4}, {"name": "Taye Diggs", "character": "Bandleader", "id": 17637, "credit_id": "52fe42ffc3a36847f8032b91", "cast_id": 17, "profile_path": "/1g1demRAGhwdUpwi8PA0wgFe2IX.jpg", "order": 5}, {"name": "Cliff Saunders", "character": "Stage Manager", "id": 17638, "credit_id": "52fe42ffc3a36847f8032b95", "cast_id": 18, "profile_path": "/3c72UmrKyk05bXP07cY26j6R7Rr.jpg", "order": 6}, {"name": "Dominic West", "character": "Fred Casely", "id": 17287, "credit_id": "52fe42ffc3a36847f8032b99", "cast_id": 19, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 7}, {"name": "John C. Reilly", "character": "Amos Hart", "id": 4764, "credit_id": "52fe42ffc3a36847f8032b9d", "cast_id": 20, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 8}, {"name": "Colm Feore", "character": "Harrison", "id": 10132, "credit_id": "52fe42ffc3a36847f8032ba1", "cast_id": 21, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 9}, {"name": "Chita Rivera", "character": "Nickie", "id": 17639, "credit_id": "52fe42ffc3a36847f8032ba5", "cast_id": 22, "profile_path": "/hZQBSolEn1F77AgXmQQPP5kMtIC.jpg", "order": 10}, {"name": "Susan Misner", "character": "Liz", "id": 17640, "credit_id": "52fe42ffc3a36847f8032ba9", "cast_id": 23, "profile_path": "/ugyXBkbrlG97RufRzII4sPM7kU1.jpg", "order": 11}, {"name": "Denise Faye", "character": "Annie", "id": 17641, "credit_id": "52fe42ffc3a36847f8032bad", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Deidre Goodwin", "character": "June", "id": 17642, "credit_id": "52fe42ffc3a36847f8032bb1", "cast_id": 25, "profile_path": "/zXs9Khvfuy0mSoy3B0HfOHRybHn.jpg", "order": 13}, {"name": "M\u00fda", "character": "Mona", "id": 17643, "credit_id": "52fe42ffc3a36847f8032bb5", "cast_id": 26, "profile_path": "/4LYdeULTdahsXDGEHy4YkJiOQbx.jpg", "order": 14}, {"name": "Ekaterina Chtchelkanova", "character": "Hunyak", "id": 17644, "credit_id": "52fe42ffc3a36847f8032bb9", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Lucy Liu", "character": "Kitty Baxter", "id": 140, "credit_id": "52fe42ffc3a36847f8032bbd", "cast_id": 28, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 16}, {"name": "Jonathan Whittaker", "character": "Bailiff", "id": 17645, "credit_id": "52fe42ffc3a36847f8032bc1", "cast_id": 29, "profile_path": "/dST9iLc2THBL4onErxrAo9XY1AS.jpg", "order": 17}, {"name": "Sean McCann", "character": "Judge", "id": 17646, "credit_id": "52fe42ffc3a36847f8032bc5", "cast_id": 30, "profile_path": null, "order": 18}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032b3d", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.4, "runtime": 113}, "9767": {"poster_path": "/wjbKWg1Zcu70mNWo5SzqMkQlQQe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 204999686, "overview": "Cohabitating couple Gary and Brooke find their once-blissful romance on the rocks when petty spats about lemons and dirty dishes mushroom into an all-out battle for custody of their upscale Chicago condo. An escalating argument ensues as Gary and Brooke continue to live under the same roof, all while cooking up schemes to drive each other off the premises.", "video": false, "id": 9767, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Break-Up", "tagline": ". . . pick a side.", "vote_count": 163, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452594", "adult": false, "backdrop_path": "/ttdIBocxJOLaDHlibyp8tVfXnLH.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Wild West Picture Show Productions", "id": 2796}], "release_date": "2006-06-02", "popularity": 1.46464170503919, "original_title": "The Break-Up", "budget": 52000000, "cast": [{"name": "Vince Vaughn", "character": "Gary Grobowski", "id": 4937, "credit_id": "52fe4529c3a36847f80bfc15", "cast_id": 1, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Brooke Meyers", "id": 4491, "credit_id": "52fe4529c3a36847f80bfc19", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Joey Lauren Adams", "character": "Addie", "id": 16484, "credit_id": "52fe4529c3a36847f80bfc1d", "cast_id": 3, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 2}, {"name": "Cole Hauser", "character": "Lupus Grobowski", "id": 6614, "credit_id": "52fe4529c3a36847f80bfc21", "cast_id": 4, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 3}, {"name": "Jon Favreau", "character": "Johnny O", "id": 15277, "credit_id": "52fe4529c3a36847f80bfc25", "cast_id": 5, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Riggleman", "id": 23532, "credit_id": "52fe4529c3a36847f80bfc29", "cast_id": 6, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Judy Davis", "character": "Marilyn Dean", "id": 351, "credit_id": "52fe4529c3a36847f80bfc2d", "cast_id": 7, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 6}, {"name": "Justin Long", "character": "Christopher", "id": 15033, "credit_id": "52fe4529c3a36847f80bfc31", "cast_id": 8, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 7}, {"name": "Ivan Sergei", "character": "Carson Wigham", "id": 38583, "credit_id": "52fe4529c3a36847f80bfc35", "cast_id": 9, "profile_path": "/6YPtG7ewkufvF1UsJzvctkI55Tg.jpg", "order": 8}, {"name": "John Michael Higgins", "character": "Richard Meyers", "id": 8265, "credit_id": "52fe4529c3a36847f80bfc39", "cast_id": 10, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 9}, {"name": "Ann-Margret", "character": "Wendy Meyers", "id": 13567, "credit_id": "52fe4529c3a36847f80bfc3d", "cast_id": 11, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 10}, {"name": "Vernon Vaughn", "character": "Howard Meyers", "id": 59024, "credit_id": "52fe4529c3a36847f80bfc41", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Vincent D'Onofrio", "character": "Dennis Grobowski", "id": 7132, "credit_id": "52fe4529c3a36847f80bfc45", "cast_id": 13, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 12}, {"name": "Elaine Robinson", "character": "Carol Grobowski", "id": 59025, "credit_id": "52fe4529c3a36847f80bfc49", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Jane Alderman", "character": "Mrs. Grobowski", "id": 5630, "credit_id": "52fe4529c3a36847f80bfc4d", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Peyton Reed", "department": "Directing", "job": "Director", "credit_id": "52fe4529c3a36847f80bfc53", "profile_path": "/h9lEnyQ60EjKRT3ZAOcrqQVlwn3.jpg", "id": 59026}], "vote_average": 5.5, "runtime": 106}, "198184": {"poster_path": "/nIQOgiHnAF9fnvqnOO0etd0YIb9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundings\u2014some good, some bad\u2014and he will rely on his heart and soul to find his way in the world and become his own man. But there's one thing that makes Chappie different from any one else: he is a robot.", "video": false, "id": 198184, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Chappie", "tagline": "I am consciousness. I am alive. I am Chappie.", "vote_count": 174, "homepage": "http://www.chappie-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1823672", "adult": false, "backdrop_path": "/y5lG7TBpeOMG0jxAaTK0ghZSzBJ.jpg", "production_companies": [{"name": "Media Rights Capital", "id": 2531}], "release_date": "2015-03-06", "popularity": 6.06493105622147, "original_title": "Chappie", "budget": 0, "cast": [{"name": "Sharlto Copley", "character": "Chappie", "id": 82191, "credit_id": "52fe4d719251416c911164bf", "cast_id": 2, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Dev Patel", "character": "Deon", "id": 76788, "credit_id": "52fe4d719251416c911164c3", "cast_id": 3, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 1}, {"name": "Brandon Auret", "character": "Hippo", "id": 1029029, "credit_id": "52fe4d719251416c911164c7", "cast_id": 4, "profile_path": "/ne7Q7CodcxZnkE9oQiJhzkdcJ8D.jpg", "order": 2}, {"name": "Eugene Khumbanyiwa", "character": "King", "id": 1198931, "credit_id": "52fe4d719251416c911164cb", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Anri du Toit", "character": "Yolandi Visser", "id": 985040, "credit_id": "52fe4d719251416c911164cf", "cast_id": 6, "profile_path": "/swC0Er51OhSRx8GHhIhqjfhXw68.jpg", "order": 4}, {"name": "Watkin Tudor Jones", "character": "Ninja", "id": 985041, "credit_id": "52fe4d719251416c911164d3", "cast_id": 7, "profile_path": "/Q9tTc7O0tik9jwnoPP4U2zfUHl.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "", "id": 10205, "credit_id": "52fe4d719251416c911164d7", "cast_id": 8, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Hugh Jackman", "character": "Vincent", "id": 6968, "credit_id": "54721160c3a36833ad000ffb", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 7}, {"name": "Jose Pablo Cantillo", "character": "Yankie", "id": 20191, "credit_id": "547211a89251415cfc000133", "cast_id": 10, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 8}, {"name": "Kevin Otto", "character": "CNN Reporter", "id": 146751, "credit_id": "547211f69251413a5d001f7e", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Robert Hobbs", "character": "The Procurement Officer", "id": 82190, "credit_id": "5472121dc3a36805d8000872", "cast_id": 12, "profile_path": "/yN6gVehZi1Y5P5kDazI8FmB8Bb0.jpg", "order": 10}], "directors": [{"name": "Neill Blomkamp", "department": "Directing", "job": "Director", "credit_id": "52fe4d719251416c911164bb", "profile_path": "/wM1ACz7B2km2KGkxA1sg3QyHrtL.jpg", "id": 82194}], "vote_average": 7.0, "runtime": 120}, "198185": {"poster_path": "/rYOQL42cDdsbhfgaxeEW4SlszUp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a last-ditch effort to save his career, sports agent JB Bernstein (Jon Hamm) dreams up a wild game plan to find Major League Baseball\u2019s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. It\u2019s an incredible and touching journey that will change them all \u2014 especially JB, who learns valuable lessons about teamwork, commitment and family.", "video": false, "id": 198185, "genres": [{"id": 18, "name": "Drama"}], "title": "Million Dollar Arm", "tagline": "Sometimes to win, sometimes you have to change the game", "vote_count": 90, "homepage": "http://movies.disney.com/million-dollar-arm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1647668", "adult": false, "backdrop_path": "/x5ZwyoTfApcvw0mwToWlY2qUliY.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2014-05-09", "popularity": 1.04578890365489, "original_title": "Million Dollar Arm", "budget": 25000000, "cast": [{"name": "Jon Hamm", "character": "J. B. Bernstein", "id": 65717, "credit_id": "52fe4d719251416c911164f7", "cast_id": 2, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Tom House", "id": 2053, "credit_id": "52fe4d719251416c911164fb", "cast_id": 3, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Lake Bell", "character": "Brenda Paauwe", "id": 25703, "credit_id": "52fe4d719251416c911164ff", "cast_id": 4, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 2}, {"name": "Suraj Sharma", "character": "Rinku", "id": 933160, "credit_id": "52fe4d719251416c91116503", "cast_id": 5, "profile_path": "/88CEbHFIGIkDLD8lEejG5580kcO.jpg", "order": 3}, {"name": "Aasif Mandvi", "character": "Ash Vasudevan", "id": 20644, "credit_id": "52fe4d719251416c91116507", "cast_id": 6, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 4}, {"name": "Madhur Mittal", "character": "Dinesh", "id": 964549, "credit_id": "52fe4d719251416c9111650b", "cast_id": 7, "profile_path": "/glARNBtM9saSQ1AIpfs5ubDvnDg.jpg", "order": 5}, {"name": "Pitobash", "character": "Amit", "id": 225163, "credit_id": "52fe4d729251416c9111650f", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Alan Arkin", "character": "Ray Arkin", "id": 1903, "credit_id": "52fe4d729251416c91116513", "cast_id": 9, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 7}, {"name": "Bar Paly", "character": "Lisette", "id": 963117, "credit_id": "532c8882c3a3685fbb0000e3", "cast_id": 11, "profile_path": "/e3BkVd6wXrJvTlBfoosuGkAKSTp.jpg", "order": 8}, {"name": "Al Sapienza", "character": "Pete", "id": 154917, "credit_id": "532c888fc3a3685fd3000108", "cast_id": 12, "profile_path": "/acfzjSs4lbz5EdCWfZkB45Zxn8y.jpg", "order": 9}, {"name": "Tzi Ma", "character": "Chang", "id": 21629, "credit_id": "532c8898c3a3685fac000114", "cast_id": 13, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 10}, {"name": "Allyn Rachel", "character": "Theresa", "id": 1303090, "credit_id": "532c88a8c3a3685fbb0000e8", "cast_id": 14, "profile_path": "/tZd2ewnxeDcUDGiXNZHRBaAtGTx.jpg", "order": 11}], "directors": [{"name": "Craig Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe4d719251416c911164f3", "profile_path": null, "id": 50767}], "vote_average": 6.7, "runtime": 124}, "1578": {"poster_path": "/tKS38vUE3HBcLdKrwLUjjUctmgS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23000000, "overview": "An emotionally self-destructive boxer's journey through life, as the violence and temper that leads him to the top in the ring, destroys his life outside it.", "video": false, "id": 1578, "genres": [{"id": 18, "name": "Drama"}], "title": "Raging Bull", "tagline": "", "vote_count": 206, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0081398", "adult": false, "backdrop_path": "/9hkWw0LnWrDlcK1swe3lf2Yxiko.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1980-11-14", "popularity": 0.991884729632124, "original_title": "Raging Bull", "budget": 18000000, "cast": [{"name": "Robert De Niro", "character": "Jake La Motta", "id": 380, "credit_id": "52fe4300c3a36847f8032f07", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Joe Pesci", "character": "Joey La Motta", "id": 4517, "credit_id": "52fe4300c3a36847f8032f0b", "cast_id": 2, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 1}, {"name": "Cathy Moriarty", "character": "Vickie Thailer", "id": 14702, "credit_id": "52fe4300c3a36847f8032f0f", "cast_id": 3, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 2}, {"name": "Frank Vincent", "character": "Salvy Batts", "id": 7164, "credit_id": "52fe4300c3a36847f8032f13", "cast_id": 4, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 3}, {"name": "Nicholas Colasanto", "character": "Tommy Como", "id": 17651, "credit_id": "52fe4300c3a36847f8032f17", "cast_id": 5, "profile_path": "/i7gdG5j4jf13lSkvKI0JalJ9IyZ.jpg", "order": 4}, {"name": "Theresa Saldana", "character": "Lenore", "id": 17652, "credit_id": "52fe4300c3a36847f8032f1b", "cast_id": 6, "profile_path": "/o5Dd1XjhIZcaCZPzuW9cfcSAekf.jpg", "order": 5}, {"name": "Mario Gallo", "character": "Mario", "id": 17653, "credit_id": "52fe4300c3a36847f8032f1f", "cast_id": 7, "profile_path": null, "order": 6}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4300c3a36847f8032f25", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.5, "runtime": 129}, "1579": {"poster_path": "/5BTFXR96hcBzmJvd9FwNayV79Xu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120175290, "overview": "Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.", "video": false, "id": 1579, "genres": [{"id": 28, "name": "Action"}], "title": "Apocalypto", "tagline": "When the end comes, not everyone is ready to go", "vote_count": 339, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472043", "adult": false, "backdrop_path": "/pzGegiHEX39M7JHsdBjv1wj7Eno.jpg", "production_companies": [{"name": "Icon Entertainment International", "id": 4564}, {"name": "Icon Productions", "id": 152}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2006-12-08", "popularity": 0.868052687145313, "original_title": "Apocalypto", "budget": 40000000, "cast": [{"name": "Rudy Youngblood", "character": "Jaguar Paw", "id": 17678, "credit_id": "52fe4300c3a36847f8033009", "cast_id": 15, "profile_path": "/jo3aA3aRhElCj4nfQwRybBMaS6m.jpg", "order": 0}, {"name": "Dalia Hern\u00e1ndez", "character": "Seven", "id": 17679, "credit_id": "52fe4300c3a36847f803300d", "cast_id": 16, "profile_path": null, "order": 1}, {"name": "Jonathan Brewer", "character": "Blunted", "id": 17680, "credit_id": "52fe4300c3a36847f8033011", "cast_id": 17, "profile_path": null, "order": 2}, {"name": "Morris Birdyellowhead", "character": "Flint Sky", "id": 17681, "credit_id": "52fe4300c3a36847f8033015", "cast_id": 18, "profile_path": null, "order": 3}, {"name": "Raoul Trujillo", "character": "Zero Wolf", "id": 17688, "credit_id": "52fe4300c3a36847f8033031", "cast_id": 25, "profile_path": "/vkrPv04OJRV9G6u6yydjJz2WKE0.jpg", "order": 4}, {"name": "Carlos Emilio B\u00e1ez", "character": "Turtles Run", "id": 17682, "credit_id": "52fe4300c3a36847f8033019", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Amilcar Ram\u00edrez", "character": "Curl Nose", "id": 17683, "credit_id": "52fe4300c3a36847f803301d", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Israel Contreras", "character": "Smoke Frog", "id": 17684, "credit_id": "52fe4300c3a36847f8033021", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Israel R\u00edos", "character": "Cocoa Leaf", "id": 17685, "credit_id": "52fe4300c3a36847f8033025", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Espiridion Acosta Cache", "character": "Old Story Teller", "id": 17686, "credit_id": "52fe4300c3a36847f8033029", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Mayra Serbulo", "character": "Young Woman", "id": 17687, "credit_id": "52fe4300c3a36847f803302d", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Gerardo Taracena", "character": "Middle Eye", "id": 17689, "credit_id": "52fe4300c3a36847f8033035", "cast_id": 26, "profile_path": "/mZhY59OxD5sy4uHkzG9EOwEkvDb.jpg", "order": 11}, {"name": "Rodolfo Palacios", "character": "Snake Ink", "id": 17690, "credit_id": "52fe4300c3a36847f8033039", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Iazua Larios", "character": "Sky Flower", "id": 42009, "credit_id": "52fe4300c3a36847f8033049", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Lorena Heranandez", "character": "Village Girl", "id": 42010, "credit_id": "52fe4300c3a36847f803304d", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Itandehui Gutierrez", "character": "Wife", "id": 42011, "credit_id": "52fe4300c3a36847f8033051", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Sayuri Gutierrez", "character": "Eldest Daughter", "id": 42012, "credit_id": "52fe4300c3a36847f8033055", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Hiram Soto", "character": "Fish Hunter", "id": 42013, "credit_id": "52fe4300c3a36847f8033059", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Jos\u00e9 Su\u00e1rez", "character": "First Temple Sacrifice", "id": 42014, "credit_id": "52fe4300c3a36847f803305d", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Ariel Galvan", "character": "Hanging Moss", "id": 42015, "credit_id": "52fe4300c3a36847f8033061", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Bernardo Ruiz", "character": "Drunkards Four", "id": 42016, "credit_id": "52fe4300c3a36847f8033065", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Ricardo Diaz Mendoza", "character": "Cut Rock", "id": 42017, "credit_id": "52fe4300c3a36847f8033069", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Richard Can", "character": "Ten Peccary", "id": 42018, "credit_id": "52fe4300c3a36847f803306d", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Carlos Ramos", "character": "Monkey Jaw", "id": 42019, "credit_id": "52fe4300c3a36847f8033071", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Ammel Rodrigo Mendoza", "character": "Buzzard Hook", "id": 42020, "credit_id": "52fe4300c3a36847f8033075", "cast_id": 43, "profile_path": null, "order": 25}, {"name": "Marco Antonio Argueta", "character": "Speaking Wind", "id": 42021, "credit_id": "52fe4300c3a36847f8033079", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Javier Escobar", "character": "Vicious Holcane", "id": 42022, "credit_id": "52fe4300c3a36847f803307d", "cast_id": 45, "profile_path": null, "order": 27}, {"name": "Fernando Hernandez", "character": "High Priest", "id": 20194, "credit_id": "52fe4300c3a36847f8033081", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Mar\u00eda Isabel D\u00edaz", "character": "Mother in Law", "id": 4364, "credit_id": "52fe4300c3a36847f80330d9", "cast_id": 66, "profile_path": "/1emMA2qcYTa8ysOUJ8j99C0kvSb.jpg", "order": 29}, {"name": "Maria Isidra Hoil", "character": "Oracle Girl", "id": 1331667, "credit_id": "53a17f04c3a3687ba60026bf", "cast_id": 73, "profile_path": null, "order": 30}, {"name": "Aquetzali Garc\u00eda", "character": "Oracle Girl", "id": 1331668, "credit_id": "53a17f17c3a3687b9e0027e1", "cast_id": 74, "profile_path": null, "order": 31}, {"name": "Abel Woolrich", "character": "Laughing Man", "id": 104391, "credit_id": "53a17f2dc3a3687bbc002606", "cast_id": 75, "profile_path": null, "order": 32}, {"name": "Antonio Monroi", "character": "Chilam", "id": 1060249, "credit_id": "53a17f42c3a3687ba60026cd", "cast_id": 76, "profile_path": null, "order": 33}, {"name": "Nicol\u00e1s Jasso", "character": "Man on Temple Top", "id": 1331669, "credit_id": "53a17f56c3a3687bab0027ad", "cast_id": 77, "profile_path": null, "order": 34}, {"name": "Ronaldo Eknal", "character": "Slave Auctioneer", "id": 1331670, "credit_id": "53a17f6ac3a3685b2c000f1a", "cast_id": 78, "profile_path": null, "order": 35}, {"name": "Miriam Tun", "character": "Woman Auctioneer", "id": 1331671, "credit_id": "53a17f94c3a3687b9e0027ec", "cast_id": 79, "profile_path": null, "order": 36}, {"name": "Rafael Velez", "character": "King", "id": 1331672, "credit_id": "53a17fa8c3a3687ba60026d5", "cast_id": 80, "profile_path": null, "order": 37}, {"name": "Diana Botello", "character": "Queen", "id": 1331673, "credit_id": "53a17fbac3a3687bb000286b", "cast_id": 81, "profile_path": null, "order": 38}, {"name": "Joaquin Rendon", "character": "Head Chac", "id": 1331674, "credit_id": "53a17fcec3a3687ba60026da", "cast_id": 82, "profile_path": null, "order": 39}], "directors": [{"name": "Mel Gibson", "department": "Directing", "job": "Director", "credit_id": "52fe4300c3a36847f8032fc9", "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "id": 2461}], "vote_average": 7.0, "runtime": 139}, "1580": {"poster_path": "/9UlEZpKqJPoaFu1OfHM3BohSRUo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two young men strangle their \"inferior\" classmate, hide his body in their apartment, and invite his friends and family to a dinner party as a means to challenge the \"perfection\" of their crime.", "video": false, "id": 1580, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Rope", "tagline": "", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0040746", "adult": false, "backdrop_path": "/2RWBzG3DYGYmgbsazg3Fls0X02l.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Transatlantic Pictures", "id": 1554}], "release_date": "1948-08-23", "popularity": 0.36401718538628, "original_title": "Rope", "budget": 1500000, "cast": [{"name": "James Stewart", "character": "Rupert Cadell", "id": 854, "credit_id": "52fe4300c3a36847f8033145", "cast_id": 1, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "John Dall", "character": "Brandon Shaw", "id": 14504, "credit_id": "52fe4300c3a36847f8033149", "cast_id": 2, "profile_path": "/AjgD9lfLq8SzQkiSqoXop5Afh9D.jpg", "order": 1}, {"name": "Farley Granger", "character": "Phillip Morgan", "id": 12497, "credit_id": "52fe4300c3a36847f803320f", "cast_id": 39, "profile_path": "/uMawvHjbqcg2s1UnedJwD9Njzy5.jpg", "order": 2}, {"name": "Constance Collier", "character": "Mrs. Atwater", "id": 17660, "credit_id": "52fe4300c3a36847f803314d", "cast_id": 3, "profile_path": "/y7BOdtNYhw8bLOXskoPqUv2Jvzr.jpg", "order": 3}, {"name": "Douglas Dick", "character": "Kenneth Lawrence", "id": 17661, "credit_id": "52fe4300c3a36847f8033151", "cast_id": 4, "profile_path": "/aqEFPUOgCbRukiF7VlaK7kYK1cU.jpg", "order": 4}, {"name": "Edith Evanson", "character": "Mrs. Wilson", "id": 17662, "credit_id": "52fe4300c3a36847f8033155", "cast_id": 5, "profile_path": "/nocf7KthPB0tKaip5KGJ5SilfAr.jpg", "order": 5}, {"name": "Dick Hogan", "character": "David Kentley", "id": 17663, "credit_id": "52fe4300c3a36847f8033159", "cast_id": 6, "profile_path": null, "order": 6}, {"name": "Joan Chandler", "character": "Janet Walker", "id": 17664, "credit_id": "52fe4300c3a36847f803315d", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Cedric Hardwicke", "character": "Mr. Kentley", "id": 99461, "credit_id": "52fe4300c3a36847f8033213", "cast_id": 40, "profile_path": "/xldbAfjrbY6ny9r13SUDGtSwoSb.jpg", "order": 8}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4300c3a36847f8033163", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.3, "runtime": 80}, "1581": {"poster_path": "/zMKqOIh26HcP4o9m0dRQS6VOR2m.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 194168700, "overview": "Two women, one (Cameron Diaz) from America and one (Kate Winslet) from Britain, swap homes at Christmastime after bad breakups with their boyfriends. Each woman finds romance with a local man (Jude Law, Jack Black) but realizes that the imminent return home may end the relationship.", "video": false, "id": 1581, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Holiday", "tagline": "It's Christmas Eve and we are going to go celebrate being young and being alive.", "vote_count": 266, "homepage": "http://www.sonypictures.com/movies/theholiday/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457939", "adult": false, "backdrop_path": "/hetZNdgWVZj0fu0IjtkWoKsjIsX.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Waverly Films", "id": 735}], "release_date": "2006-12-08", "popularity": 1.28885209277092, "original_title": "The Holiday", "budget": 85000000, "cast": [{"name": "Cameron Diaz", "character": "Amanda Woods", "id": 6941, "credit_id": "52fe4300c3a36847f8033251", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Iris Simpkins", "id": 204, "credit_id": "52fe4300c3a36847f8033255", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Jude Law", "character": "Graham", "id": 9642, "credit_id": "52fe4300c3a36847f8033259", "cast_id": 3, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Jack Black", "character": "Miles", "id": 70851, "credit_id": "52fe4300c3a36847f803325d", "cast_id": 4, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "Eli Wallach", "character": "Arthur Abbott", "id": 3265, "credit_id": "52fe4300c3a36847f8033261", "cast_id": 5, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 4}, {"name": "Edward Burns", "character": "Ethan", "id": 12833, "credit_id": "52fe4301c3a36847f8033265", "cast_id": 6, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 5}, {"name": "Rufus Sewell", "character": "Jasper", "id": 17328, "credit_id": "52fe4301c3a36847f8033269", "cast_id": 7, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 6}, {"name": "Miffy Englefield", "character": "Sophia", "id": 17691, "credit_id": "52fe4301c3a36847f803326d", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Emma Pritchard", "character": "Olivia", "id": 17692, "credit_id": "52fe4301c3a36847f8033271", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Sarah Parish", "character": "Hannah", "id": 17693, "credit_id": "52fe4301c3a36847f8033275", "cast_id": 10, "profile_path": "/mpvkccfyyjcnG5I6xkYrbCELHab.jpg", "order": 9}, {"name": "Shannyn Sossamon", "character": "Maggie", "id": 27855, "credit_id": "52fe4301c3a36847f8033279", "cast_id": 11, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 10}, {"name": "Bill Macy", "character": "Ernie", "id": 17695, "credit_id": "52fe4301c3a36847f803327d", "cast_id": 12, "profile_path": "/xCb1KjkmeolP2dmJnXfbd7lQTph.jpg", "order": 11}, {"name": "Shelley Berman", "character": "Norman", "id": 10403, "credit_id": "52fe4301c3a36847f8033281", "cast_id": 13, "profile_path": "/ka7bIOts2wVNqcdAvR8k24Z5d7h.jpg", "order": 12}, {"name": "Kathryn Hahn", "character": "Bristol", "id": 17696, "credit_id": "52fe4301c3a36847f8033285", "cast_id": 14, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 13}, {"name": "John Krasinski", "character": "Ben", "id": 17697, "credit_id": "52fe4301c3a36847f8033289", "cast_id": 15, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 14}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f803328f", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 6.5, "runtime": 136}, "1584": {"poster_path": "/cREN222Yw78zvSQ9bg17Y9QZS0c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131282949, "overview": "Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fourth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock 'n' roll. The school's hard-nosed principal is rightly suspicious of Finn's activities. But Finn's roommate remains in the dark about what he's doing.", "video": false, "id": 1584, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "School of Rock", "tagline": "He just landed the gig of his life: 5th grade.", "vote_count": 385, "homepage": "http://www.schoolofrockmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0332379", "adult": false, "backdrop_path": "/nLUO2kQyyvG1DlCnHuxHwapbCTX.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2003-10-03", "popularity": 0.804834292031404, "original_title": "School of Rock", "budget": 35000000, "cast": [{"name": "Jack Black", "character": "Dewey Finn", "id": 70851, "credit_id": "52fe4301c3a36847f8033437", "cast_id": 1, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Joan Cusack", "character": "Rosalie Mullins", "id": 3234, "credit_id": "52fe4301c3a36847f803343b", "cast_id": 2, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 1}, {"name": "Mike White", "character": "Ned Schneebly", "id": 17735, "credit_id": "52fe4301c3a36847f803343f", "cast_id": 3, "profile_path": "/luxVflXHHRlRYt8oqSxno04JGy6.jpg", "order": 2}, {"name": "Sarah Silverman", "character": "Patty Di Marco", "id": 7404, "credit_id": "52fe4301c3a36847f8033443", "cast_id": 4, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 3}, {"name": "Adam Pascal", "character": "Theo", "id": 17736, "credit_id": "52fe4301c3a36847f8033447", "cast_id": 5, "profile_path": "/r1fvs1Nmkqxib3g89ju4lqZGn4u.jpg", "order": 4}, {"name": "Lucas Papaelias", "character": "Neil", "id": 17737, "credit_id": "52fe4301c3a36847f803344b", "cast_id": 6, "profile_path": "/x7BemMD3vm4w6Wjxn3E8c9GJlEv.jpg", "order": 5}, {"name": "Chris Stack", "character": "Doug", "id": 17738, "credit_id": "52fe4301c3a36847f803344f", "cast_id": 7, "profile_path": "/AwsXuAmFHoo2Z2EuQow9lyv6Jtk.jpg", "order": 6}, {"name": "Joey Gaydos Jr.", "character": "Zack Mooneyham", "id": 17739, "credit_id": "52fe4301c3a36847f8033453", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Lucas Babin", "character": "Spider", "id": 17740, "credit_id": "52fe4301c3a36847f8033457", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Jordan-Claire Green", "character": "Michelle", "id": 17741, "credit_id": "52fe4301c3a36847f803345b", "cast_id": 10, "profile_path": "/32tJ0lZqp3MvoWOk86i21NFKtyV.jpg", "order": 9}, {"name": "Veronica Afflerbach", "character": "Eleni", "id": 17742, "credit_id": "52fe4301c3a36847f803345f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Miranda Cosgrove", "character": "Summer Hathaway", "id": 17743, "credit_id": "52fe4301c3a36847f8033463", "cast_id": 12, "profile_path": "/p2rQkLY4Wr4KnCd3S1LwfhE42zu.jpg", "order": 11}, {"name": "Kevin Alexander Clark", "character": "Freddy Jones", "id": 17744, "credit_id": "52fe4301c3a36847f8033467", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Robert Tsai", "character": "Lawrence", "id": 17745, "credit_id": "52fe4301c3a36847f803346b", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Maryam Hassan", "character": "Tomika", "id": 17746, "credit_id": "52fe4301c3a36847f803346f", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Angelo Massagli", "character": "Frankie", "id": 17747, "credit_id": "52fe4301c3a36847f8033473", "cast_id": 16, "profile_path": null, "order": 15}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033479", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 6.3, "runtime": 108}, "1585": {"poster_path": "/t0T609AGzxtr05zKrBOCE1al0Ii.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6600000, "overview": "George Bailey has spent his entire life giving of himself to the people of Bedford Falls. He has always longed to travel but never had the opportunity in order to prevent rich skinflint Mr. Potter from taking over the entire town. All that prevents him from doing so is George's modest building and loan company, which was founded by his generous father. But on Christmas Eve, George's Uncle Billy loses the business's $8,000 while intending to deposit it in the bank. Potter finds the misplaced money, hides it from Billy, and George's troubles begin.", "video": false, "id": 1585, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "It's a Wonderful Life", "tagline": "It's a wonderful laugh! It's a wonderful love!", "vote_count": 270, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0038650", "adult": false, "backdrop_path": "/2GGw0nXElPzVLubjIjhwzH5VNYJ.jpg", "production_companies": [{"name": "Liberty Films (II)", "id": 11770}], "release_date": "1946-12-30", "popularity": 0.964386170464063, "original_title": "It's a Wonderful Life", "budget": 3180000, "cast": [{"name": "James Stewart", "character": "George Bailey", "id": 854, "credit_id": "52fe4301c3a36847f8033523", "cast_id": 1, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "Donna Reed", "character": "Mary Hatch", "id": 17752, "credit_id": "52fe4301c3a36847f8033527", "cast_id": 2, "profile_path": "/jGSZJKut5cOHqiKnz6cC0AMol7v.jpg", "order": 1}, {"name": "Lionel Barrymore", "character": "Henry F. Potter", "id": 17753, "credit_id": "52fe4301c3a36847f803352b", "cast_id": 3, "profile_path": "/7LxpuH0TIYY9FhX2Gj2tfJnbBD2.jpg", "order": 2}, {"name": "Thomas Mitchell", "character": "Uncle Billy Bailey", "id": 3383, "credit_id": "52fe4301c3a36847f803353f", "cast_id": 10, "profile_path": "/b0WAgmbZjTX99prApnSMdiYOhRK.jpg", "order": 3}, {"name": "Henry Travers", "character": "Clarence Odbody", "id": 7666, "credit_id": "52fe4301c3a36847f803352f", "cast_id": 4, "profile_path": "/mmr6D7GhUawPyhAhKlKIdxVK7Un.jpg", "order": 4}, {"name": "Beulah Bondi", "character": "Ma Bailey", "id": 17755, "credit_id": "52fe4301c3a36847f8033537", "cast_id": 6, "profile_path": "/dduvRQRhbwdlbS12nljnHTkChIR.jpg", "order": 5}, {"name": "Frank Faylen", "character": "Ernie Bishop", "id": 17759, "credit_id": "52fe4301c3a36847f8033543", "cast_id": 11, "profile_path": "/rTeI8MEFLqdtGkIO5bc96DqO4pE.jpg", "order": 6}, {"name": "Ward Bond", "character": "Bert", "id": 4303, "credit_id": "52fe4301c3a36847f8033571", "cast_id": 20, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 7}, {"name": "Gloria Grahame", "character": "Violet Bick", "id": 77081, "credit_id": "52fe4301c3a36847f8033575", "cast_id": 21, "profile_path": "/bCfTGfMGNRQdfWrLPtBAPVTuBgP.jpg", "order": 8}, {"name": "H.B. Warner", "character": "Mr. Gower", "id": 33278, "credit_id": "52fe4301c3a36847f8033579", "cast_id": 22, "profile_path": "/7zWN39xKHnPTawwN9p5m4aX1ne5.jpg", "order": 9}, {"name": "Todd Karns", "character": "Harry Bailey", "id": 17754, "credit_id": "52fe4301c3a36847f8033533", "cast_id": 5, "profile_path": null, "order": 10}, {"name": "Samuel S. Hinds", "character": "Peter Bailey", "id": 17756, "credit_id": "52fe4301c3a36847f803353b", "cast_id": 7, "profile_path": "/vPlot960fIaZ10TEnr3phhacp7T.jpg", "order": 11}, {"name": "Mary Treen", "character": "Cousin Tilly", "id": 106584, "credit_id": "52fe4301c3a36847f80335a5", "cast_id": 30, "profile_path": "/RpmccR2BYTJBTJ0wC0H7wvOI8g.jpg", "order": 12}, {"name": "Frank Albertson", "character": "Sam Wainwright", "id": 78902, "credit_id": "52fe4301c3a36847f803357d", "cast_id": 23, "profile_path": "/9ncLyc3P4SL6aiMnxHyFv2bIYwz.jpg", "order": 13}, {"name": "Virginia Patton", "character": "Ruth Dakin Bailey", "id": 1033185, "credit_id": "52fe4301c3a36847f80335a9", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Charles Williams", "character": "Cousin Eustace", "id": 120544, "credit_id": "52fe4301c3a36847f80335ad", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Sarah Edwards", "character": "Mrs. Hatch", "id": 85957, "credit_id": "52fe4301c3a36847f80335b1", "cast_id": 33, "profile_path": "/rmSSO8YP31eEP9JYbmFRi7QsIon.jpg", "order": 16}, {"name": "William Edmunds", "character": "Giuseppe Martini", "id": 95967, "credit_id": "52fe4301c3a36847f80335b9", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Lillian Randolph", "character": "Annie", "id": 150633, "credit_id": "52fe4301c3a36847f80335bd", "cast_id": 40, "profile_path": "/mF7bedS0H2nNtQvWLBVKseqTUlJ.jpg", "order": 18}, {"name": "Argentina Brunetti", "character": "Mrs. Martini", "id": 113726, "credit_id": "52fe4301c3a36847f80335b5", "cast_id": 34, "profile_path": "/j20aALAavaDN5idoDo0CHSttHmY.jpg", "order": 19}, {"name": "Robert J. Anderson", "character": "Little George", "id": 117856, "credit_id": "52fe4301c3a36847f80335c1", "cast_id": 41, "profile_path": null, "order": 20}, {"name": "Ronnie Ralph", "character": "Little Sam", "id": 1033350, "credit_id": "52fe4301c3a36847f80335c5", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Jean Gale", "character": "Little Mary", "id": 1033287, "credit_id": "52fe4301c3a36847f80335c9", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Jeanine Ann Roose", "character": "Little Violet", "id": 1033351, "credit_id": "52fe4301c3a36847f80335cd", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Danny Mummert", "character": "Little Marty Hatch", "id": 34181, "credit_id": "52fe4301c3a36847f80335d1", "cast_id": 45, "profile_path": "/fgem04RIMJ4UKmHZ7DBc3PGZ2dW.jpg", "order": 24}, {"name": "Georgie Nokes", "character": "Little Harry Bailey", "id": 17758, "credit_id": "52fe4301c3a36847f80335d5", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Sheldon Leonard", "character": "Nick", "id": 41750, "credit_id": "52fe4301c3a36847f80335d9", "cast_id": 47, "profile_path": "/tkz20WzQYKQDDOYkbFTsFVKmLWD.jpg", "order": 26}, {"name": "Frank Hagney", "character": "Potter's Bodyguard", "id": 34168, "credit_id": "52fe4301c3a36847f80335dd", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Ray Walker", "character": "Joe - Luggage Shop", "id": 34423, "credit_id": "52fe4301c3a36847f80335e1", "cast_id": 49, "profile_path": "/8cOCfrJ5zbf1QvrJhPZFSuTDKXD.jpg", "order": 28}, {"name": "Charles Lane", "character": "Real Estate Salesman", "id": 29579, "credit_id": "52fe4301c3a36847f80335e5", "cast_id": 50, "profile_path": "/wu5fTupk5atyJlCsHhXPGcdf8Mg.jpg", "order": 29}, {"name": "Edward Keane", "character": "Tom - Bldg. & Loan", "id": 120708, "credit_id": "52fe4301c3a36847f80335e9", "cast_id": 51, "profile_path": "/dnEso5qtzGaw0lI2aUyKaR8ivWF.jpg", "order": 30}, {"name": "Carol Coombs", "character": "Bailey Child - Janie", "id": 1055407, "credit_id": "52fe4301c3a36847f80335ed", "cast_id": 52, "profile_path": null, "order": 31}, {"name": "Karolyn Grimes", "character": "Bailey Child - Zuzu", "id": 1033293, "credit_id": "52fe4301c3a36847f80335f1", "cast_id": 53, "profile_path": "/oIMqgx5fUw4CSAEeRsbAMDPGqV5.jpg", "order": 32}, {"name": "Larry Simms", "character": "Bailey Child - Pete", "id": 30223, "credit_id": "52fe4301c3a36847f80335f5", "cast_id": 54, "profile_path": "/ltsYi0u4vZiL2SOW5EjeK0YYRMh.jpg", "order": 33}, {"name": "Jimmy Hawkins", "character": "Bailey Child - Tommy", "id": 117674, "credit_id": "52fe4301c3a36847f80335f9", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Adriana Caselotti", "character": "Singer at Martini's (uncredited)", "id": 5460, "credit_id": "52fe4301c3a36847f80335fd", "cast_id": 56, "profile_path": "/spSFVZoDpFhkSeyEMTTJj8ZSNKs.jpg", "order": 35}, {"name": "Michael Chapin", "character": "Young George's Friend (uncredited)", "id": 126898, "credit_id": "52fe4301c3a36847f8033601", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Ellen Corby", "character": "Ms. Davis (uncredited)", "id": 5738, "credit_id": "52fe4301c3a36847f8033605", "cast_id": 58, "profile_path": "/sgVSpnL4dJ8d0Y273lonNM4GuHK.jpg", "order": 37}, {"name": "Milton Kibbee", "character": "Building & Loan Board Member (uncredited)", "id": 117036, "credit_id": "52fe4301c3a36847f8033609", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "J. Farrell MacDonald", "character": "Man Whose Grandfather Planted Tree (uncredited)", "id": 9091, "credit_id": "52fe4301c3a36847f803360d", "cast_id": 60, "profile_path": "/dPvj08q91zBKsyUApCnWOtbkvXK.jpg", "order": 39}, {"name": "Bert Moorhouse", "character": "Man with Sheriff (uncredited)", "id": 122984, "credit_id": "52fe4301c3a36847f8033611", "cast_id": 61, "profile_path": "/p0v0vNPZOnocEbD9tqQky6Gy0Cz.jpg", "order": 40}, {"name": "Carl Switzer", "character": "Freddie Othello (uncredited)", "id": 941239, "credit_id": "52fe4301c3a36847f8033615", "cast_id": 62, "profile_path": "/2HUMr4YzycNA40D2Xt8gpfG5KSn.jpg", "order": 41}], "directors": [{"name": "Frank Capra", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033549", "profile_path": "/hvPrtfKnJs9arck1zKGnG8uRkBC.jpg", "id": 2662}], "vote_average": 7.4, "runtime": 130}, "9778": {"poster_path": "/1ahgQx7gLqC3OfsjwMgrxMNDuUS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77516304, "overview": "Though strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter -- but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another first!", "video": false, "id": 9778, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Serendipity", "tagline": "Sometimes True Love Can Have More Than One Face.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240890", "adult": false, "backdrop_path": "/t3AuLeZl2r6FRy6xhSNaM8sXc12.jpg", "production_companies": [{"name": "Tapestry Films", "id": 870}, {"name": "Miramax Films", "id": 14}, {"name": "Simon Fields Productions", "id": 21518}], "release_date": "2001-10-05", "popularity": 0.357838381769867, "original_title": "Serendipity", "budget": 28000000, "cast": [{"name": "John Cusack", "character": "Jonathan Trager", "id": 3036, "credit_id": "52fe452bc3a36847f80c0395", "cast_id": 1, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Sara Thomas", "id": 3967, "credit_id": "52fe452bc3a36847f80c0399", "cast_id": 2, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Jeremy Piven", "character": "Dean Kansky", "id": 12799, "credit_id": "52fe452bc3a36847f80c03bd", "cast_id": 11, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 2}, {"name": "Bridget Moynahan", "character": "Halley Buchanan", "id": 18354, "credit_id": "52fe452bc3a36847f80c03c1", "cast_id": 12, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 3}, {"name": "Eugene Levy", "character": "Bloomingdale's Salesman", "id": 26510, "credit_id": "52fe452bc3a36847f80c0401", "cast_id": 24, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 4}, {"name": "Lilli Lavine", "character": "Bloomingdale's Stock Girl", "id": 59165, "credit_id": "52fe452bc3a36847f80c039d", "cast_id": 3, "profile_path": "/gFKYLHpWhnTNrQ2JCsTIc3wWzzi.jpg", "order": 5}, {"name": "Michael Guarino Jr.", "character": "Customer at Bloomingdale's", "id": 59166, "credit_id": "52fe452bc3a36847f80c03a1", "cast_id": 4, "profile_path": null, "order": 6}, {"name": "Abdul Alshawish", "character": "Customer at Bloomingdale's", "id": 59167, "credit_id": "52fe452bc3a36847f80c03a5", "cast_id": 5, "profile_path": null, "order": 7}, {"name": "Stephen Bruce", "character": "Host at Serendipity", "id": 59170, "credit_id": "52fe452bc3a36847f80c03b1", "cast_id": 8, "profile_path": null, "order": 8}, {"name": "David Sparrow", "character": "Josh's Dad", "id": 36816, "credit_id": "52fe452bc3a36847f80c03b5", "cast_id": 9, "profile_path": "/wpv5m3TePP3ju8lrugwUquPDaON.jpg", "order": 9}, {"name": "Ann Talman", "character": "Bloomingdale's Saleswoman #1", "id": 59168, "credit_id": "52fe452bc3a36847f80c03a9", "cast_id": 6, "profile_path": null, "order": 10}, {"name": "Crystal Bock", "character": "Bloomingdale's Saleswoman #2", "id": 59169, "credit_id": "52fe452bc3a36847f80c03ad", "cast_id": 7, "profile_path": null, "order": 11}, {"name": "Kate Blumberg", "character": "Courtney Kansky", "id": 59172, "credit_id": "52fe452bc3a36847f80c03c5", "cast_id": 13, "profile_path": "/wJmFMijdWQrQJciXLFn8QGOciHc.jpg", "order": 12}, {"name": "Gary Gerbrandt", "character": "Josh", "id": 59171, "credit_id": "52fe452bc3a36847f80c03b9", "cast_id": 10, "profile_path": null, "order": 13}, {"name": "Ron Payne", "character": "Louis Trager", "id": 59173, "credit_id": "52fe452bc3a36847f80c03c9", "cast_id": 14, "profile_path": null, "order": 14}, {"name": "Marcia Bennett", "character": "Mrs. Louis Trager", "id": 40385, "credit_id": "52fe452bc3a36847f80c03cd", "cast_id": 15, "profile_path": null, "order": 15}, {"name": "Molly Shannon", "character": "Eve", "id": 28640, "credit_id": "53f5888ec3a36833fd00301d", "cast_id": 25, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 16}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe452bc3a36847f80c03d9", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 6.5, "runtime": 90}, "1587": {"poster_path": "/xTRRw69N4vsccTY0TDB9FqZY5ld.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30000000, "overview": "Gilbert has to care for his brother Arnie and his obese mother, which gets in the way when love walks into his life.", "video": false, "id": 1587, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "What's Eating Gilbert Grape", "tagline": "A film about the love you find...In the last place you look.", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108550", "adult": false, "backdrop_path": "/9JvO9d5VgQ9Cy0bbAdBAyKK7pWd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1993-12-17", "popularity": 1.91514947884887, "original_title": "What's Eating Gilbert Grape", "budget": 11000000, "cast": [{"name": "Johnny Depp", "character": "Gilbert Grape", "id": 85, "credit_id": "52fe4301c3a36847f80336bf", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Leonardo DiCaprio", "character": "Arnie Grape", "id": 6193, "credit_id": "52fe4301c3a36847f803368d", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 1}, {"name": "Juliette Lewis", "character": "Becky", "id": 3196, "credit_id": "52fe4301c3a36847f8033691", "cast_id": 3, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 2}, {"name": "Darlene Cates", "character": "Bonnie Grape", "id": 17768, "credit_id": "52fe4301c3a36847f8033695", "cast_id": 4, "profile_path": "/sHAY186hiEIJ2fGsLFTjgq7VwbC.jpg", "order": 3}, {"name": "Mary Steenburgen", "character": "Betty Carver", "id": 2453, "credit_id": "52fe4301c3a36847f8033699", "cast_id": 5, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 4}, {"name": "Laura Harrington", "character": "Amy Grape", "id": 17769, "credit_id": "52fe4301c3a36847f803369d", "cast_id": 6, "profile_path": "/4Eo23MPjQl4hdNBFv4NOHF9WgnS.jpg", "order": 5}, {"name": "Mary Kate Schellhardt", "character": "Ellen Grape", "id": 8184, "credit_id": "52fe4301c3a36847f80336a1", "cast_id": 7, "profile_path": "/nN54NVsxm5M6yhdQlSECm2y5vxK.jpg", "order": 6}, {"name": "John C. Reilly", "character": "Tucker Van Dyke", "id": 4764, "credit_id": "52fe4301c3a36847f80336a5", "cast_id": 8, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 7}, {"name": "Kevin Tighe", "character": "Ken Carver", "id": 17770, "credit_id": "52fe4301c3a36847f80336a9", "cast_id": 9, "profile_path": "/5Q1Z89xsrnLdQWdHLuiaraS89vV.jpg", "order": 8}, {"name": "Crispin Glover", "character": "Bobby McBurney", "id": 1064, "credit_id": "52fe4301c3a36847f80336c3", "cast_id": 14, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 9}, {"name": "Robert B. Hedges", "character": "Ministre", "id": 1375991, "credit_id": "54453a4cc3a3683e0e007c7f", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "George Haynes", "character": "Dave", "id": 1375994, "credit_id": "54453ae70e0a266330007e64", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Cameron Finley", "character": "Doug Carver", "id": 215830, "credit_id": "54453e920e0a26633a007fba", "cast_id": 17, "profile_path": "/kveRt3GkfcNFGFbOwwwkjExpadP.jpg", "order": 12}, {"name": "Mona Lee Fultz", "character": "l'employ\u00e9e de la boulangerie", "id": 79008, "credit_id": "54453f9e0e0a266330007f21", "cast_id": 18, "profile_path": "/NDIFJvOcdb6v9SosCZApjTluMg.jpg", "order": 13}, {"name": "Penelope Branning", "character": "la grand-m\u00e8re de Becky", "id": 172680, "credit_id": "54454009c3a3683df2007f3b", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Kay Bower", "character": "la secr\u00e9taire de la Police", "id": 1376009, "credit_id": "54454061c3a3683e01007e04", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Tim Simek", "character": "le D\u00e9put\u00e9", "id": 1376012, "credit_id": "544541520e0a266330007f5c", "cast_id": 21, "profile_path": "/5Pnqz10tjB1io6u4FhPxdW6EwFb.jpg", "order": 16}, {"name": "Joe Stevens", "character": "le patron du Burger Barn", "id": 177905, "credit_id": "544544dec3a3683e01007e80", "cast_id": 22, "profile_path": "/kVH3JfyhXdVyBeLJkxjH1Dw6IWm.jpg", "order": 17}, {"name": "Tim Green", "character": "Mr. Lamson", "id": 1376033, "credit_id": "54454b0dc3a3684894001fce", "cast_id": 23, "profile_path": "/n3mhRGxuzFEjxBkrVGPFJpMlFdS.jpg", "order": 18}, {"name": "Susan Loughran", "character": "Mrs. Lamson", "id": 1376035, "credit_id": "54454ccc0e0a266330008067", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Brady Coleman", "character": "Sheriff Jerry Farrel", "id": 111002, "credit_id": "54454eb1c3a3684894002017", "cast_id": 25, "profile_path": "/lezl6XUlisuJiBr0ar48LsFthlv.jpg", "order": 20}, {"name": "Mark Jordan", "character": "Todd Carver", "id": 1376047, "credit_id": "544550080e0a26633a008190", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Nicholas Stojanovich", "character": "un gar\u00e7on", "id": 1089548, "credit_id": "544552470e0a26633a0081ec", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Daniel Gullahorn", "character": "un gar\u00e7on", "id": 1376059, "credit_id": "5445527bc3a3683df200811b", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Libby Villari", "character": "une serveuse", "id": 2857, "credit_id": "544553bec3a36819fb001fa7", "cast_id": 29, "profile_path": "/dGSRIXHG4er86LBk4HAKK4TGWL0.jpg", "order": 24}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f80336af", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 7.2, "runtime": 118}, "1588": {"poster_path": "/yg0O6eGgrumDZ1bht3pqMjNaWon.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90449929, "overview": "The Toro cheerleading squad from Rancho Carne High School in San Diego has got spirit, spunk, sass and a killer routine that's sure to land them the national championship trophy for the sixth year in a row. But for newly-elected team captain (Kirsten Dunst), the Toros' road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.", "video": false, "id": 1588, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bring It On", "tagline": "May the best moves win.", "vote_count": 264, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mZPimsc8yVPNwjcMT9BoQvfPsvO.jpg", "poster_path": "/shF7Ql8JNSDd4jisyRaehZqyyP5.jpg", "id": 16698, "name": "Bring It On Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0204946", "adult": false, "backdrop_path": "/63OmgMeYb2T7azonwtY1T0UpRGc.jpg", "production_companies": [{"name": "Beacon Communications", "id": 919}], "release_date": "2000-08-25", "popularity": 1.13536597016228, "original_title": "Bring It On", "budget": 28000000, "cast": [{"name": "Kirsten Dunst", "character": "Torrance Shipman", "id": 205, "credit_id": "52fe4301c3a36847f80336eb", "cast_id": 1, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Jesse Bradford", "character": "Cliff Pantone", "id": 17772, "credit_id": "52fe4301c3a36847f80336f3", "cast_id": 3, "profile_path": "/dOoAK7pcl1OtIcLUcs1LeFpJOJG.jpg", "order": 1}, {"name": "Huntley Ritter", "character": "Les", "id": 86969, "credit_id": "52fe4302c3a36847f8033717", "cast_id": 12, "profile_path": "/9iUDvFFLAc7nMjUxAGuUEBL0XwR.jpg", "order": 2}, {"name": "Eliza Dushku", "character": "Missy Pantone", "id": 13446, "credit_id": "52fe4301c3a36847f80336ef", "cast_id": 2, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 3}, {"name": "Gabrielle Union", "character": "Isis", "id": 17773, "credit_id": "52fe4301c3a36847f80336f7", "cast_id": 4, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 4}, {"name": "Clare Kramer", "character": "Courtney", "id": 17774, "credit_id": "52fe4301c3a36847f80336fb", "cast_id": 5, "profile_path": "/uy24uicG26Bu1Jk1qs0MEVouktj.jpg", "order": 5}, {"name": "Nicole Bilderback", "character": "Whitney", "id": 17775, "credit_id": "52fe4301c3a36847f80336ff", "cast_id": 6, "profile_path": "/zX98CB1FCasfLGKhQ9pmEm9yYvZ.jpg", "order": 6}, {"name": "Tsianina Joelson", "character": "Darcy", "id": 168014, "credit_id": "52fe4302c3a36847f8033709", "cast_id": 8, "profile_path": "/vXKULq7hYnxRJuyRXfvI6BXhFsu.jpg", "order": 7}, {"name": "Nathan West", "character": "Jan", "id": 55115, "credit_id": "52fe4302c3a36847f8033713", "cast_id": 11, "profile_path": "/9QOk05nkbrVsucNTZaPKwFJUilg.jpg", "order": 8}, {"name": "Shamari Fears", "character": "Lava", "id": 1155676, "credit_id": "52fe4302c3a36847f803371b", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Natina Reed", "character": "Jenelope", "id": 1155677, "credit_id": "52fe4302c3a36847f803371f", "cast_id": 14, "profile_path": "/ySI37dsCcvdaE3T3IGDt6UWL8Zm.jpg", "order": 10}, {"name": "Brandi Williams", "character": "Lafred", "id": 89975, "credit_id": "52fe4302c3a36847f8033723", "cast_id": 15, "profile_path": "/9Iw10M9nlb2AI8lbs7ql3NOBzek.jpg", "order": 11}, {"name": "Richard Hillman", "character": "Aaron", "id": 73700, "credit_id": "52fe4302c3a36847f8033727", "cast_id": 16, "profile_path": "/g1t2imQDUbksuoN59LNzWvVU9F0.jpg", "order": 12}, {"name": "Lindsay Sloane", "character": "Big Red", "id": 41662, "credit_id": "52fe4302c3a36847f803372b", "cast_id": 17, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 13}, {"name": "Rini Bell", "character": "Kasey", "id": 8696, "credit_id": "52fe4302c3a36847f803372f", "cast_id": 18, "profile_path": "/esSI9X2EoKEMDyp6ntjIkJDVYqk.jpg", "order": 14}], "directors": [{"name": "Peyton Reed", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033705", "profile_path": "/h9lEnyQ60EjKRT3ZAOcrqQVlwn3.jpg", "id": 59026}], "vote_average": 5.6, "runtime": 98}, "1592": {"poster_path": "/jaDUxqDju6zqoADVKvZo2OunoRC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102616183, "overview": "An arrogant, high-powered attorney takes on the case of a poor altar boy found running away from the scene of the grisly murder of the bishop who has taken him in. The case gets a lot more complex when the accused reveals that there may or may not have been a 3rd person in the room. The intensity builds when a surprise twist alters everyone's perception of the crime and what happens next...", "video": false, "id": 1592, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Primal Fear", "tagline": "Sooner or later, a man who wears two faces forgets which one is real.", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0117381", "adult": false, "backdrop_path": "/j2VZ9Q1KJRGmtldrQHKzxoXWKz9.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1996-04-03", "popularity": 1.05735403661665, "original_title": "Primal Fear", "budget": 0, "cast": [{"name": "Richard Gere", "character": "Martin Vail", "id": 1205, "credit_id": "52fe4302c3a36847f8033977", "cast_id": 1, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Edward Norton", "character": "Aaron Stampler", "id": 819, "credit_id": "52fe4302c3a36847f80339cd", "cast_id": 20, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Laura Linney", "character": "Janet Venable", "id": 350, "credit_id": "52fe4302c3a36847f803397b", "cast_id": 3, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 2}, {"name": "John Mahoney", "character": "John Shaughnessy", "id": 4251, "credit_id": "52fe4302c3a36847f803397f", "cast_id": 4, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 3}, {"name": "Frances McDormand", "character": "Dr. Molly Arrington", "id": 3910, "credit_id": "52fe4302c3a36847f8033983", "cast_id": 5, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 4}, {"name": "Terry O'Quinn", "character": "Bud Yancy", "id": 12646, "credit_id": "52fe4302c3a36847f80339b1", "cast_id": 13, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 5}, {"name": "Andre Braugher", "character": "Tommy Goodman", "id": 6861, "credit_id": "52fe4302c3a36847f80339b5", "cast_id": 14, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 6}, {"name": "Steven Bauer", "character": "Joey Pinero", "id": 1159, "credit_id": "52fe4302c3a36847f80339b9", "cast_id": 15, "profile_path": "/2wbrq8xIKbIAQAgtxsftJT5XgVs.jpg", "order": 7}, {"name": "Joe Spano", "character": "Captain Abel Stenner", "id": 8192, "credit_id": "52fe4302c3a36847f80339bd", "cast_id": 16, "profile_path": "/ApY9rdhS1Qrvd0byprtlMxMAQ1q.jpg", "order": 8}, {"name": "Tony Plana", "character": "Martinez", "id": 41737, "credit_id": "52fe4302c3a36847f80339c1", "cast_id": 17, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 9}, {"name": "Alfre Woodard", "character": "Richterin Miriam Shoat", "id": 1981, "credit_id": "52fe4302c3a36847f80339c5", "cast_id": 18, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 10}, {"name": "Maura Tierney", "character": "Naomi Chance", "id": 16307, "credit_id": "52fe4302c3a36847f80339c9", "cast_id": 19, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 11}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe4302c3a36847f8033989", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 7.3, "runtime": 129}, "1593": {"poster_path": "/NUbCSwy2EQ9Z6psUjPqr3WdVI2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 574480841, "overview": "Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits. Larry tries desperately to keep the museum under control, but he's fighting a losing battle until President Teddy Roosevelt comes to the rescue.", "video": false, "id": 1593, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Night at the Museum", "tagline": "Where History Comes To Life", "vote_count": 680, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fOmqiIXfJmeANciOTCN6WkKbwK.jpg", "poster_path": "/q2nwE0Qi8U6tsU5HDmiWS2D3dSJ.jpg", "id": 85943, "name": "Night at the Museum Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt0477347", "adult": false, "backdrop_path": "/fDuTrT0qJUgEJjexaZOce4kmO0V.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "1492 Pictures", "id": 436}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2006-12-21", "popularity": 3.03048892328694, "original_title": "Night at the Museum", "budget": 110000000, "cast": [{"name": "Ben Stiller", "character": "Larry Daley", "id": 7399, "credit_id": "52fe4302c3a36847f8033a65", "cast_id": 17, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Jake Cherry", "character": "Nick Daley", "id": 17834, "credit_id": "52fe4302c3a36847f8033a79", "cast_id": 22, "profile_path": "/e7bPRIJq7Ub3CBJtlCykB3UmiAr.jpg", "order": 1}, {"name": "Carla Gugino", "character": "Rebecca", "id": 17832, "credit_id": "52fe4302c3a36847f8033a69", "cast_id": 18, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 2}, {"name": "Robin Williams", "character": "Theodore Roosevelt", "id": 2157, "credit_id": "52fe4302c3a36847f8033a81", "cast_id": 24, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 3}, {"name": "Dick Van Dyke", "character": "Cecil Fredericks", "id": 61303, "credit_id": "52fe4302c3a36847f8033a6d", "cast_id": 19, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 4}, {"name": "Mickey Rooney", "character": "Kaa", "id": 1937, "credit_id": "52fe4302c3a36847f8033a71", "cast_id": 20, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 5}, {"name": "Bill Cobbs", "character": "Reginald", "id": 8854, "credit_id": "52fe4302c3a36847f8033a75", "cast_id": 21, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 6}, {"name": "Ricky Gervais", "character": "Bambi", "id": 17835, "credit_id": "52fe4302c3a36847f8033a7d", "cast_id": 23, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 7}, {"name": "Kim Raver", "character": "Erica Daley", "id": 17836, "credit_id": "52fe4302c3a36847f8033a85", "cast_id": 25, "profile_path": "/qxnyB8F1nwVTidvUH2yzh2rsOWS.jpg", "order": 8}, {"name": "Patrick Gallagher", "character": "Attila der Hunne", "id": 17837, "credit_id": "52fe4302c3a36847f8033a89", "cast_id": 26, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 9}, {"name": "Rami Malek", "character": "Ahkmenrah", "id": 17838, "credit_id": "52fe4302c3a36847f8033a8d", "cast_id": 27, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 10}, {"name": "Pierfrancesco Favino", "character": "Christopher Columbus", "id": 17839, "credit_id": "52fe4302c3a36847f8033a91", "cast_id": 28, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 11}, {"name": "Charlie Murphy", "character": "Taxi Driver", "id": 17840, "credit_id": "52fe4302c3a36847f8033a95", "cast_id": 29, "profile_path": "/emMzTjrwhrPr1m8gepw1bvqJb6A.jpg", "order": 12}, {"name": "Steve Coogan", "character": "Octavius", "id": 4581, "credit_id": "52fe4302c3a36847f8033a99", "cast_id": 30, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 13}, {"name": "Mizuo Peck", "character": "Sacajawea", "id": 17841, "credit_id": "52fe4302c3a36847f8033a9d", "cast_id": 31, "profile_path": "/ohnloj1aKehzgbupxszmgdvdHS3.jpg", "order": 14}, {"name": "Owen Wilson", "character": "Jedediah Smith", "id": 887, "credit_id": "53b5b8800e0a2676bf0039b6", "cast_id": 34, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 15}, {"name": "Crystal the Monkey", "character": "Dexter", "id": 1428580, "credit_id": "550a857f9251414695000e7d", "cast_id": 35, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 16}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4302c3a36847f8033a13", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.0, "runtime": 108}, "17979": {"poster_path": "/m1cZT78mldTUyVMyedWLx7saRrL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 325233863, "overview": "Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.", "video": false, "id": 17979, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "A Christmas Carol", "tagline": "Season's Greedings", "vote_count": 247, "homepage": "http://disney.go.com/disneypictures/achristmascarol/?cmp=dcom_VAN_WDSHE_ACC_van_dcomcc__Extl", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1067106", "adult": false, "backdrop_path": "/vmGltnhcNGJAiVyNKllB0Ndcka1.jpg", "production_companies": [{"name": "ImageMovers", "id": 11395}, {"name": "Walt Disney", "id": 5888}], "release_date": "2009-11-06", "popularity": 0.690578555035557, "original_title": "A Christmas Carol", "budget": 200000000, "cast": [{"name": "Gary Oldman", "character": "Tiny Tim, Bob Cratchit, Marley", "id": 64, "credit_id": "52fe47589251416c7509600d", "cast_id": 9, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 0}, {"name": "Jim Carrey", "character": "Ebenezer Scrooge, Ghost of Christmas Past, Ghost of Christmas Present, Ghost of Christmas Yet To Come", "id": 206, "credit_id": "52fe47589251416c75096011", "cast_id": 10, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 1}, {"name": "Steve Valentine", "character": "Funerary Undertaker / Topper", "id": 78311, "credit_id": "52fe47589251416c75096021", "cast_id": 13, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Undertaker's Apprentice / Tattered Caroler / Beggar Boy / Peter Cratchit / Well-Dressed Caroler", "id": 57675, "credit_id": "52fe47589251416c75096025", "cast_id": 14, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Sage Ryan", "character": "Tattered Caroler", "id": 558926, "credit_id": "52fe47589251416c75096029", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Amber Gainey Meade", "character": "Tattered Caroler / Well-Dressed Caroler", "id": 1074139, "credit_id": "52fe47589251416c7509602d", "cast_id": 16, "profile_path": "/9p3RClYYtN4cwqd44V7HtOAA23B.jpg", "order": 5}, {"name": "Ryan Ochoa", "character": "Tattered Caroler / Beggar Boy / Young Cratchit Boy / Ignorance Boy / Young Boy with Sleigh", "id": 492081, "credit_id": "52fe47589251416c75096031", "cast_id": 17, "profile_path": "/mkWaVHOCScHYN26JXMHmamn9dkD.jpg", "order": 6}, {"name": "Bobbi Page", "character": "Tattered Caroler / Well-Dressed Caroler", "id": 1074140, "credit_id": "52fe47589251416c75096035", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ron Bottitta", "character": "Tattered Caroler / Well-Dressed Caroler", "id": 60602, "credit_id": "52fe47589251416c75096039", "cast_id": 19, "profile_path": "/9qqT4usrllY5XWONGbDYusnP7yL.jpg", "order": 8}, {"name": "Sammi Hanratty", "character": "Beggar Boy / Young Cratchit Girl / Want Girl", "id": 61831, "credit_id": "52fe47589251416c7509603d", "cast_id": 20, "profile_path": "/69NOUh0a2TKIbW8UhChNeO04UnD.jpg", "order": 9}, {"name": "Julian Holloway", "character": "Fat Cook / Portly Gentleman #2 / Business Man #3", "id": 79635, "credit_id": "52fe47589251416c75096041", "cast_id": 21, "profile_path": "/pUIJv2p67qpWGNsBnppoqO4KJMJ.jpg", "order": 10}, {"name": "Colin Firth", "character": "Fred", "id": 5472, "credit_id": "52fe47589251416c75096045", "cast_id": 22, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 11}, {"name": "Cary Elwes", "character": "Portly Gentleman #1 / Dick Wilkins / Mad Fiddler / Guest #2 / Business Man #1", "id": 2130, "credit_id": "52fe47589251416c75096049", "cast_id": 23, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 12}, {"name": "Robin Wright", "character": "Fan / Belle", "id": 32, "credit_id": "52fe47589251416c7509604d", "cast_id": 24, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 13}, {"name": "Bob Hoskins", "character": "Fezziwig / Old Joe", "id": 382, "credit_id": "52fe47589251416c75096051", "cast_id": 25, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 14}, {"name": "Lesley Manville", "character": "Mrs. Cratchit", "id": 72305, "credit_id": "52fe47589251416c75096055", "cast_id": 26, "profile_path": "/wyETH2tk6s15DXrQFZhx4KOwvNL.jpg", "order": 15}, {"name": "Molly C. Quinn", "character": "Belinda Cratchit", "id": 96349, "credit_id": "52fe47589251416c75096059", "cast_id": 27, "profile_path": "/8i908NzSx5K4LBxxh5qtzLe6U8e.jpg", "order": 16}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe47589251416c75096009", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.4, "runtime": 96}, "9788": {"poster_path": "/2GaDZYNy3GgraGfn54FWUSrxPiF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38505009, "overview": "A high school slacker who's rejected by every school he applies to opts to create his own institution of higher learning, the South Harmon Institute of Technology, on a rundown piece of property near his hometown.", "video": false, "id": 9788, "genres": [{"id": 35, "name": "Comedy"}], "title": "Accepted", "tagline": "When every college turned them down. . . they made one up.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384793", "adult": false, "backdrop_path": "/xW7aigkiyHcGYUeXaljmhw8qOnU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Shady Acres Entertainment", "id": 159}], "release_date": "2006-08-18", "popularity": 0.630324304165046, "original_title": "Accepted", "budget": 23000000, "cast": [{"name": "Justin Long", "character": "Bartleby Gaines", "id": 15033, "credit_id": "52fe452dc3a36847f80c0a0f", "cast_id": 1, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Sherman Schrader", "id": 21007, "credit_id": "52fe452dc3a36847f80c0a13", "cast_id": 2, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Adam Herschman", "character": "Glen", "id": 59256, "credit_id": "52fe452dc3a36847f80c0a17", "cast_id": 3, "profile_path": "/43EeGIeawm9ojk3dzMvo6Ob4TOA.jpg", "order": 2}, {"name": "Columbus Short", "character": "Hands", "id": 31132, "credit_id": "52fe452dc3a36847f80c0a1b", "cast_id": 4, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 3}, {"name": "Maria Thayer", "character": "Rory", "id": 59257, "credit_id": "52fe452dc3a36847f80c0a1f", "cast_id": 5, "profile_path": "/xrWP4eR5AvmmgiyDKFCu6CvnQQl.jpg", "order": 4}, {"name": "Lewis Black", "character": "Uncle Ben", "id": 59258, "credit_id": "52fe452dc3a36847f80c0a23", "cast_id": 6, "profile_path": "/rtlzszC0uPvHZtrXzwYNT9jYPsU.jpg", "order": 5}, {"name": "Blake Lively", "character": "Monica", "id": 59175, "credit_id": "52fe452dc3a36847f80c0a27", "cast_id": 7, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 6}, {"name": "Mark Derwin", "character": "Jack Gaines", "id": 59259, "credit_id": "52fe452dc3a36847f80c0a2b", "cast_id": 8, "profile_path": "/3faBKqhSgh6kiLWokcLYmE6HYLu.jpg", "order": 7}, {"name": "Ann Cusack", "character": "Diane Gaines", "id": 59260, "credit_id": "52fe452dc3a36847f80c0a2f", "cast_id": 9, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 8}, {"name": "Hannah Marks", "character": "Lizzie Gaines", "id": 59261, "credit_id": "52fe452dc3a36847f80c0a33", "cast_id": 10, "profile_path": "/xMahv8210mahplOr9OGPMVAQri7.jpg", "order": 9}, {"name": "Robin Lord Taylor", "character": "Abernathy", "id": 59262, "credit_id": "52fe452dc3a36847f80c0a37", "cast_id": 11, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 10}, {"name": "Diora Baird", "character": "Kiki", "id": 59263, "credit_id": "52fe452dc3a36847f80c0a3b", "cast_id": 12, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 11}, {"name": "Joe Hursley", "character": "Maurice / The Ringers", "id": 59264, "credit_id": "52fe452dc3a36847f80c0a3f", "cast_id": 13, "profile_path": "/euZBX3gW18tpEVaInzq06K4BjhK.jpg", "order": 12}, {"name": "Jeremy Howard", "character": "Freaky Student", "id": 15034, "credit_id": "52fe452dc3a36847f80c0a43", "cast_id": 14, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 13}, {"name": "Anthony Heald", "character": "Dean Van Horne", "id": 16293, "credit_id": "52fe452dc3a36847f80c0a47", "cast_id": 15, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 14}, {"name": "Ross Patterson", "character": "Mike McNaughton", "id": 77809, "credit_id": "52fe452dc3a36847f80c0a75", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Greg Sestero", "character": "Frat guy", "id": 81918, "credit_id": "52ffc7b59251416ae70c187c", "cast_id": 25, "profile_path": "/nAVfXdOL9n4PoYi0KDRj1rpGzFW.jpg", "order": 16}], "directors": [{"name": "Steve Pink", "department": "Directing", "job": "Director", "credit_id": "52fe452dc3a36847f80c0a5f", "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "id": 3227}], "vote_average": 6.0, "runtime": 93}, "1597": {"poster_path": "/omw5eaaPFgIo3IGJBbAF5xIiMLp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 330444045, "overview": "Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.", "video": false, "id": 1597, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Meet the Parents", "tagline": "First comes love. Then come the interrogation.", "vote_count": 448, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fgcgqjw37RThZCbVrfLLkJsqNNR.jpg", "poster_path": "/WFkinadVm4NRynRKuUcaLFNIDx.jpg", "id": 51509, "name": "Meet the Parents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0212338", "adult": false, "backdrop_path": "/iMBlLEjC74OQbQ60bubdF27P35K.jpg", "production_companies": [{"name": "Tribeca Productions", "id": 11391}, {"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Nancy Tenenbaum Films", "id": 41248}], "release_date": "2000-10-05", "popularity": 0.856816393234657, "original_title": "Meet the Parents", "budget": 55000000, "cast": [{"name": "Ben Stiller", "character": "Gaylord \"Greg\" Focker", "id": 7399, "credit_id": "52fe4303c3a36847f8033c7f", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Jack Byrnes", "id": 380, "credit_id": "52fe4303c3a36847f8033c83", "cast_id": 2, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Teri Polo", "character": "Pam Byrnes", "id": 10399, "credit_id": "52fe4303c3a36847f8033c87", "cast_id": 3, "profile_path": "/67k0q1YYVIeMd0wZalfqJ2FYLuu.jpg", "order": 2}, {"name": "Blythe Danner", "character": "Dina Byrnes", "id": 10401, "credit_id": "52fe4303c3a36847f8033c8b", "cast_id": 4, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Kevin Rawley", "id": 887, "credit_id": "52fe4303c3a36847f8033c8f", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Nicole DeHuff", "character": "Deborah Byrnes", "id": 17865, "credit_id": "52fe4303c3a36847f8033c93", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jon Abrahams", "character": "Denny Byrnes", "id": 17866, "credit_id": "52fe4303c3a36847f8033c97", "cast_id": 7, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 6}, {"name": "James Rebhorn", "character": "Dr. Larry Banks", "id": 8986, "credit_id": "52fe4303c3a36847f8033c9b", "cast_id": 8, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 7}, {"name": "Thomas McCarthy", "character": "Dr. Bob Banks", "id": 17867, "credit_id": "52fe4303c3a36847f8033c9f", "cast_id": 9, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 8}, {"name": "Phyllis George", "character": "Linda Banks", "id": 17868, "credit_id": "52fe4303c3a36847f8033ca3", "cast_id": 10, "profile_path": "/nU5AOJag5fSqTGxULkSAHz3uCdg.jpg", "order": 9}, {"name": "Kali Rocha", "character": "Atlantic American Flight Attendant", "id": 149665, "credit_id": "52fe4303c3a36847f8033cfb", "cast_id": 26, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 10}, {"name": "Bernie Sheredy", "character": "Norm the Interrogator", "id": 164083, "credit_id": "52fe4303c3a36847f8033cff", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Judah Friedlander", "character": "Pharmacy Clerk", "id": 52860, "credit_id": "52fe4303c3a36847f8033d03", "cast_id": 28, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 12}, {"name": "Peter Bartlett", "character": "Animal Shelter Worker", "id": 163711, "credit_id": "52fe4303c3a36847f8033d07", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "John Elsen", "character": "Chicago Airport Security", "id": 122243, "credit_id": "52fe4303c3a36847f8033d0b", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Mark Hammer", "character": "Greg's Hospital Patient", "id": 116056, "credit_id": "52fe4303c3a36847f8033d0f", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Amy Hohn", "character": "Ticket Agent", "id": 171334, "credit_id": "52fe4303c3a36847f8033d13", "cast_id": 32, "profile_path": "/zA3MqPmAYNIie7yUC2k1GJCJHHj.jpg", "order": 16}, {"name": "William Severs", "character": "Father O'Boyle", "id": 77025, "credit_id": "52fe4303c3a36847f8033d17", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "John Fiore", "character": "Kinky", "id": 935624, "credit_id": "52fe4303c3a36847f8033d1b", "cast_id": 34, "profile_path": null, "order": 18}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe4303c3a36847f8033ca9", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.5, "runtime": 108}, "1598": {"poster_path": "/4KvrvcqckdupXXO2YnANtyG7QLK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 182300000, "overview": "Sam Bowden is a small-town corporate attorney. Max Cady is a tattooed, cigar-smoking, bible-quoting, psychotic rapist. What do they have in common? Fourteen years, ago Sam was a public defender assigned to Max Cady's rape trial, and he made a serious error: he hid a document from his illiterate client that could have gotten him acquitted. Now, the cagey, bibliophile Cady has been released, and he intends to teach Sam Bowden and his family a thing or two about loss.", "video": false, "id": 1598, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Cape Fear", "tagline": "There is nothing in the dark that isn't there in the light. Except fear.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101540", "adult": false, "backdrop_path": "/oZhGYAc6LUM3OLYvQHNfIHfQiMm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Cappa Productions", "id": 691}, {"name": "Tribeca Productions", "id": 11391}], "release_date": "1991-11-15", "popularity": 0.987265408178192, "original_title": "Cape Fear", "budget": 35000000, "cast": [{"name": "Robert De Niro", "character": "Max Cady", "id": 380, "credit_id": "52fe4303c3a36847f8033d55", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Nick Nolte", "character": "Sam Bowden", "id": 1733, "credit_id": "52fe4303c3a36847f8033d59", "cast_id": 2, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 1}, {"name": "Jessica Lange", "character": "Leigh Bowden", "id": 4431, "credit_id": "52fe4303c3a36847f8033d5d", "cast_id": 3, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Danielle Bowden", "id": 3196, "credit_id": "52fe4303c3a36847f8033d61", "cast_id": 4, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Joe Don Baker", "character": "Claude Kersek", "id": 10671, "credit_id": "52fe4303c3a36847f8033d65", "cast_id": 5, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 4}, {"name": "Robert Mitchum", "character": "Lieutenant Elgart", "id": 10158, "credit_id": "52fe4303c3a36847f8033d69", "cast_id": 6, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 5}, {"name": "Gregory Peck", "character": "Lee Heller", "id": 8487, "credit_id": "52fe4303c3a36847f8033d6d", "cast_id": 7, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 6}, {"name": "Illeana Douglas", "character": "Lori Davis", "id": 7796, "credit_id": "52fe4303c3a36847f8033d71", "cast_id": 8, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 7}, {"name": "Fred Thompson", "character": "Tom Broadbent", "id": 17874, "credit_id": "52fe4303c3a36847f8033d75", "cast_id": 9, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 8}, {"name": "Zully Montero", "character": "Graciella", "id": 17875, "credit_id": "52fe4303c3a36847f8033d79", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Martin Balsam", "character": "Judge", "id": 1936, "credit_id": "530dae4a9251411421001fcd", "cast_id": 29, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 10}, {"name": "Craig Henne", "character": "Prisoner", "id": 1402410, "credit_id": "5497c9629251413f75005c4f", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4303c3a36847f8033d97", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.5, "runtime": 128}, "27573": {"poster_path": "/lAuOwnlWrBOOiWGpS3wqhfF4CRx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136, "overview": "Milo Boyd is a bounty hunter whose latest gig is rather satisfying, as he finds out that the bail-skipper he must chase down is his own ex-wife, Nicole -- but she has no intention of getting nabbed without a fight. Complicating matters, Nicole's wannabe-boyfriend, Stewart, joins the chase.", "video": false, "id": 27573, "genres": [{"id": 28, "name": "Action"}], "title": "The Bounty Hunter", "tagline": "It's a Job. It Isn't Personal. Well, Maybe a Little...", "vote_count": 262, "homepage": "http://www.thebountyhunter-movie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1038919", "adult": false, "backdrop_path": "/81VAeKlSKGjwWFVrAuJrw9bRrT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "Madhouse Entertainment", "id": 12199}], "release_date": "2010-03-19", "popularity": 1.33625689455913, "original_title": "The Bounty Hunter", "budget": 40000000, "cast": [{"name": "Gerard Butler", "character": "Milo Boyd", "id": 17276, "credit_id": "52fe4554c3a368484e053fb5", "cast_id": 1, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Nicole Hurley", "id": 4491, "credit_id": "52fe4554c3a368484e053fb9", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Gio Perez", "character": "Uncle Sam", "id": 114144, "credit_id": "52fe4554c3a368484e053fc3", "cast_id": 5, "profile_path": "/xE18CS5KtkMaQEyPzcEX800T2Xw.jpg", "order": 2}, {"name": "Siobhan Fallon", "character": "Teresa (as Siobhan Fallon Hogan)", "id": 6751, "credit_id": "52fe4554c3a368484e053fc7", "cast_id": 6, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 3}, {"name": "Joel Garland", "character": "Dwight (as Joel Marsh Garland)", "id": 88550, "credit_id": "52fe4554c3a368484e053fd1", "cast_id": 8, "profile_path": "/nknCvtyB0fOlISnPpCtE3ov8mfn.jpg", "order": 4}, {"name": "Jason Kolotouros", "character": "Gelman", "id": 1214054, "credit_id": "540e9e650e0a26419d0009e0", "cast_id": 32, "profile_path": "/3iNZZs8hPh2y0wy5p9ubLNypcwP.jpg", "order": 5}, {"name": "Matt Malloy", "character": "Gary", "id": 19208, "credit_id": "52fe4554c3a368484e053fd9", "cast_id": 10, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 6}, {"name": "Jason Sudeikis", "character": "Stewart", "id": 58224, "credit_id": "52fe4555c3a368484e053fdd", "cast_id": 11, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 7}, {"name": "Adam Rose", "character": "Jimmy", "id": 962997, "credit_id": "533570289251414457004211", "cast_id": 31, "profile_path": "/gsQivzGFepDlNJtN0PaBXPYPUoF.jpg", "order": 8}, {"name": "Christine Baranski", "character": "Kitty Hurley", "id": 11870, "credit_id": "52fe4555c3a368484e053fe5", "cast_id": 13, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 9}, {"name": "Dorian Missick", "character": "Bobby Jenkins", "id": 26718, "credit_id": "52fe4555c3a368484e053fe9", "cast_id": 14, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 10}, {"name": "David Costabile", "character": "Arthur", "id": 82167, "credit_id": "52fe4555c3a368484e053fed", "cast_id": 15, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 11}, {"name": "Lynda Gravatt", "character": "Judge", "id": 167582, "credit_id": "52fe4555c3a368484e053ff1", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Peter Greene", "character": "Earl Mahler", "id": 11803, "credit_id": "52fe4555c3a368484e053ff5", "cast_id": 17, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 13}, {"name": "Jeff Garlin", "character": "Sid", "id": 60074, "credit_id": "52fe4555c3a368484e053ff9", "cast_id": 18, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 14}, {"name": "Charlie Hewson", "character": "Rich Guy", "id": 133046, "credit_id": "52fe4555c3a368484e053ffd", "cast_id": 19, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 15}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe4554c3a368484e053fbf", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 5.4, "runtime": 110}, "9792": {"poster_path": "/zIJ0z0zwVjvURXMJeU3Oi9F1AKD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69570032, "overview": "A suburban American family is being stalked by a group of psychotic people who live in the desert, far away from civilization.", "video": false, "id": 9792, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Hills Have Eyes", "tagline": "The lucky ones die first.", "vote_count": 130, "homepage": "http://www.foxsearchlight.com/thehillshaveeyes/", "belongs_to_collection": {"backdrop_path": "/x9jSFZNLlRQGKwfqgwBfxdm2hrv.jpg", "poster_path": "/imLEjBJL8Ex53swnUngCXwmlSr5.jpg", "id": 8918, "name": "The Hills Have Eyes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0454841", "adult": false, "backdrop_path": "/53vdUXxtUogIupD3oln7ywZ2d02.jpg", "production_companies": [{"name": "Craven-Maddalena Films", "id": 1600}, {"name": "Dune Entertainment", "id": 444}, {"name": "Major Studio Partners", "id": 445}], "release_date": "2006-03-10", "popularity": 0.758436702378051, "original_title": "The Hills Have Eyes", "budget": 15000000, "cast": [{"name": "Aaron Stanford", "character": "Doug Bukowski", "id": 11022, "credit_id": "52fe452ec3a36847f80c0bc9", "cast_id": 1, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 0}, {"name": "Kathleen Quinlan", "character": "Ethel Carter", "id": 8183, "credit_id": "52fe452ec3a36847f80c0bcd", "cast_id": 2, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 1}, {"name": "Vinessa Shaw", "character": "Lynn Carter", "id": 5025, "credit_id": "52fe452ec3a36847f80c0bd1", "cast_id": 3, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 2}, {"name": "Emilie de Ravin", "character": "Brenda Carter", "id": 28660, "credit_id": "52fe452ec3a36847f80c0bd5", "cast_id": 4, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 3}, {"name": "Dan Byrd", "character": "Bobby Carter", "id": 59283, "credit_id": "52fe452ec3a36847f80c0bd9", "cast_id": 5, "profile_path": "/j68CP63mC20q25IFSJvvRP3TGlm.jpg", "order": 4}, {"name": "Tom Bower", "character": "Gas Station Attendant", "id": 19453, "credit_id": "52fe452ec3a36847f80c0bdd", "cast_id": 6, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 5}, {"name": "Billy Drago", "character": "Papa Jupiter", "id": 1275, "credit_id": "52fe452ec3a36847f80c0be1", "cast_id": 7, "profile_path": "/sAC4lsuhdueS3sBXjnlNsZbdYEq.jpg", "order": 6}, {"name": "Robert Joy", "character": "Lizard", "id": 19976, "credit_id": "52fe452ec3a36847f80c0be5", "cast_id": 8, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 7}, {"name": "Ted Levine", "character": "Big Bob Carter", "id": 15854, "credit_id": "52fe452ec3a36847f80c0be9", "cast_id": 9, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 8}, {"name": "Desmond Askew", "character": "Big Brain", "id": 59284, "credit_id": "52fe452ec3a36847f80c0bed", "cast_id": 10, "profile_path": "/duVUWh17XHY3HCVhAOkQSGBNb4R.jpg", "order": 9}, {"name": "Ezra Buzzington", "character": "Goggle", "id": 59285, "credit_id": "52fe452ec3a36847f80c0bf1", "cast_id": 11, "profile_path": "/dl0SIqpOqS05UpJHKuDQqZTwUvP.jpg", "order": 10}, {"name": "Michael Bailey Smith", "character": "Pluto", "id": 37008, "credit_id": "52fe452ec3a36847f80c0bf5", "cast_id": 12, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 11}, {"name": "Laura Ortiz", "character": "Ruby", "id": 59286, "credit_id": "52fe452ec3a36847f80c0bf9", "cast_id": 13, "profile_path": "/mwqLiRCwFQM3YBf3qX5AvWubS0c.jpg", "order": 12}, {"name": "Gregory Nicotero", "character": "Cyst", "id": 59287, "credit_id": "52fe452ec3a36847f80c0bfd", "cast_id": 14, "profile_path": "/jedpZq1cMzmixzznxzgRZAIzodY.jpg", "order": 13}, {"name": "Maisie Camilleri Preziosi", "character": "Baby Catherine", "id": 59288, "credit_id": "52fe452ec3a36847f80c0c01", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe452ec3a36847f80c0c07", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 5.9, "runtime": 107}, "9793": {"poster_path": "/7yKntBeRLuj95pRxnlnnRPqr1xd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.", "video": false, "id": 9793, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Hills Have Eyes 2", "tagline": "Help isn't coming.", "vote_count": 62, "homepage": "", "belongs_to_collection": {"backdrop_path": "/x9jSFZNLlRQGKwfqgwBfxdm2hrv.jpg", "poster_path": "/imLEjBJL8Ex53swnUngCXwmlSr5.jpg", "id": 8918, "name": "The Hills Have Eyes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800069", "adult": false, "backdrop_path": "/t3N4QkppS7MiCX6DT0HWwdpxOOV.jpg", "production_companies": [{"name": "Craven-Maddalena Films", "id": 1600}, {"name": "Dune Entertainment", "id": 444}, {"name": "Fox Atomic", "id": 2890}], "release_date": "2007-03-22", "popularity": 0.663413508806275, "original_title": "The Hills Have Eyes II", "budget": 15000000, "cast": [{"name": "Michael Bailey Smith", "character": "Papa Hades", "id": 37008, "credit_id": "52fe452ec3a36847f80c0c93", "cast_id": 2, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 0}, {"name": "Archie Kao", "character": "Han", "id": 59293, "credit_id": "52fe452ec3a36847f80c0c97", "cast_id": 3, "profile_path": "/jWWhcHQTJi1UGR6xP0ZtEA36GmL.jpg", "order": 1}, {"name": "Jay Acovone", "character": "Wilson", "id": 42547, "credit_id": "52fe452ec3a36847f80c0c9b", "cast_id": 4, "profile_path": "/7nTfBxzeO6jBzUSdukF2OWm5uBo.jpg", "order": 2}, {"name": "Jeff Kober", "character": "Redding", "id": 54865, "credit_id": "52fe452ec3a36847f80c0c9f", "cast_id": 5, "profile_path": "/eMp9ZsC77yddwW4SMiuZ7xOd0GS.jpg", "order": 3}, {"name": "Philip Pavel", "character": "Foster", "id": 20754, "credit_id": "52fe452ec3a36847f80c0ca3", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "David Reynolds", "character": "Hansel", "id": 11, "credit_id": "52fe452ec3a36847f80c0ca7", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Tyrell Kemlo", "character": "Stabber", "id": 59294, "credit_id": "52fe452ec3a36847f80c0cab", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Lee Thompson Young", "character": "Delmar", "id": 59295, "credit_id": "52fe452ec3a36847f80c0caf", "cast_id": 9, "profile_path": "/4WtanN5YDO9OjljR8Gy0ME2bQfS.jpg", "order": 7}, {"name": "Daniella Alonso", "character": "Missy", "id": 59296, "credit_id": "52fe452ec3a36847f80c0cb3", "cast_id": 10, "profile_path": "/9w2ziDtZq60jVC5dbAiZmkQEfYe.jpg", "order": 8}, {"name": "Eric Edelstein", "character": "Spitter", "id": 59297, "credit_id": "52fe452ec3a36847f80c0cb7", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jessica Stroup", "character": "Amber", "id": 55463, "credit_id": "52fe452ec3a36847f80c0cbb", "cast_id": 12, "profile_path": "/l1UABSlmGse4QWtHefxZSm82Axp.jpg", "order": 10}, {"name": "Joseph Beddelem", "character": "Insurgent", "id": 59298, "credit_id": "52fe452ec3a36847f80c0cbf", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "C\u00e9cile Breccia", "character": "Pregnant Woman", "id": 59292, "credit_id": "52fe452ec3a36847f80c0c8f", "cast_id": 1, "profile_path": null, "order": 12}, {"name": "Jacob Vargas", "character": "Crank", "id": 16429, "credit_id": "52fe452ec3a36847f80c0cc3", "cast_id": 14, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 13}, {"name": "Ben Crowley", "character": "Stump", "id": 59299, "credit_id": "52fe452ec3a36847f80c0cc7", "cast_id": 15, "profile_path": "/wWKyy7ohR3IsmQ8S55f2tQl1KVY.jpg", "order": 14}], "directors": [{"name": "Martin Weisz", "department": "Directing", "job": "Director", "credit_id": "52fe452ec3a36847f80c0ccd", "profile_path": "/eyYrCv28qCoTUdiQLGOwV2ufl8m.jpg", "id": 58260}], "vote_average": 5.5, "runtime": 89}, "9798": {"poster_path": "/2B0vLBo6gJbnzke4Enc77GCxKrz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 250649836, "overview": "Hotshot Washington lawyer Robert Dean becomes a victim of high-tech identity theft when a hacker slips an incriminating video into his pocket. Soon, a rogue National Security agent sets out to recover the tape -- and destroy Dean.", "video": false, "id": 9798, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Enemy of the State", "tagline": "It's not paranoia if they're really after you", "vote_count": 515, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120660", "adult": false, "backdrop_path": "/5zIxXANoUCVMFu9YFhHejmnSmhY.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "1998-11-15", "popularity": 0.63761027712186, "original_title": "Enemy of the State", "budget": 90000000, "cast": [{"name": "Will Smith", "character": "Robert Clayton Dean", "id": 2888, "credit_id": "52fe452fc3a36847f80c0f93", "cast_id": 16, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Edward Lyle", "id": 193, "credit_id": "52fe452fc3a36847f80c0f47", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Jon Voight", "character": "Reynolds", "id": 10127, "credit_id": "52fe452fc3a36847f80c0f4b", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Lisa Bonet", "character": "Rachel Banks", "id": 3232, "credit_id": "52fe452fc3a36847f80c0f4f", "cast_id": 4, "profile_path": "/wP9edkzvr5vIIVaocRf70vdRcdW.jpg", "order": 3}, {"name": "Regina King", "character": "Carla Dean", "id": 9788, "credit_id": "52fe452fc3a36847f80c0f97", "cast_id": 17, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 4}, {"name": "Gabriel Byrne", "character": "Brill", "id": 5168, "credit_id": "52fe452fc3a36847f80c0f53", "cast_id": 5, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 5}, {"name": "Grant Heslov", "character": "Lenny", "id": 31511, "credit_id": "52fe452fc3a36847f80c0f9b", "cast_id": 18, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 6}, {"name": "Stuart Wilson", "character": "Congressman Sam Albert", "id": 14344, "credit_id": "52fe452fc3a36847f80c0f9f", "cast_id": 19, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 7}, {"name": "Laura Cayouette", "character": "Christa Hawkins", "id": 565498, "credit_id": "52fe452fc3a36847f80c0fa3", "cast_id": 20, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 8}, {"name": "Loren Dean", "character": "Hicks", "id": 11628, "credit_id": "52fe452fc3a36847f80c0fa7", "cast_id": 21, "profile_path": "/wmRzRes0gXtlhcmkYDeLjxD1Xjq.jpg", "order": 9}, {"name": "Barry Pepper", "character": "David Pratt", "id": 12834, "credit_id": "52fe452fc3a36847f80c0fab", "cast_id": 22, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 10}, {"name": "Ian Hart", "character": "Bingham", "id": 10985, "credit_id": "52fe452fc3a36847f80c0faf", "cast_id": 23, "profile_path": "/35KSRxsFR20QGDhIrZn7G4Jkc2g.jpg", "order": 11}, {"name": "Jake Busey", "character": "Krug", "id": 28410, "credit_id": "52fe452fc3a36847f80c0fb3", "cast_id": 24, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 12}, {"name": "Scott Caan", "character": "Jones", "id": 1894, "credit_id": "52fe452fc3a36847f80c0fb7", "cast_id": 25, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 13}, {"name": "Jason Lee", "character": "Daniel Zavitz", "id": 11662, "credit_id": "52fe452fc3a36847f80c0fbb", "cast_id": 26, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 14}, {"name": "James Le Gros", "character": "Jerry Miller", "id": 6474, "credit_id": "52fe452fc3a36847f80c0fbf", "cast_id": 27, "profile_path": "/rqBjmSkcRGwtwpb2tTjGcqLtKyG.jpg", "order": 15}, {"name": "Dan Butler", "character": "Shaffer", "id": 76470, "credit_id": "52fe452fc3a36847f80c0fc3", "cast_id": 28, "profile_path": "/1JpxhswGPAkx3prXVZUpc7aM0uD.jpg", "order": 16}, {"name": "Jack Black", "character": "Fiedler", "id": 70851, "credit_id": "52fe452fc3a36847f80c0fc7", "cast_id": 29, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 17}, {"name": "Jamie Kennedy", "character": "Jamie", "id": 6213, "credit_id": "52fe452fc3a36847f80c0fcb", "cast_id": 30, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 18}, {"name": "Bodhi Elfman", "character": "Van", "id": 154883, "credit_id": "52fe452fc3a36847f80c0fcf", "cast_id": 31, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 19}, {"name": "Ivana Mili\u010devi\u0107", "character": "Ruby's Sales Clerk", "id": 29930, "credit_id": "52fe452fc3a36847f80c0fd3", "cast_id": 32, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 20}, {"name": "Seth Green", "character": "Selby", "id": 13922, "credit_id": "52fe452fc3a36847f80c0fd7", "cast_id": 33, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 21}, {"name": "Philip Baker Hall", "character": "Attorney Mark Silverberg", "id": 4492, "credit_id": "52fe452fc3a36847f80c0fdb", "cast_id": 34, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 22}, {"name": "Jason Robards", "character": "Congressman Phillip Hammersley", "id": 4765, "credit_id": "52fe452fc3a36847f80c0fdf", "cast_id": 35, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 23}, {"name": "Tom Sizemore", "character": "Boss Paulie Pintero", "id": 3197, "credit_id": "52fe452fc3a36847f80c0fe3", "cast_id": 36, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 24}, {"name": "Tom Quinn", "character": "Tunnel Technician", "id": 1115118, "credit_id": "52fe452fc3a36847f80c0fe7", "cast_id": 37, "profile_path": "/goJeBvmLYutE2LYCoxGKTPxjGgA.jpg", "order": 25}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c0f59", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.4, "runtime": 132}, "1607": {"poster_path": "/wlYIwDwk53R4h0uMnpK1NAhHqdg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17266971, "overview": "Robert De Niro made his directorial debut with this expanded adaptation of Chazz Palminteri's one-character play. DeNiro's role of Lorenzo Anello, an Italian-America bus driver, is secondary to the part of his son Calogero, played by young Francis Capra. The top dog in Calogero's Bronx neighborhood is flashy \"wiseguy\" Sonny (Chazz Palminteri). When the boy witnesses Sonny commit a murder, he honor", "video": false, "id": 1607, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "A Bronx Tale", "tagline": "One man lives in the neighborhood, another man owns it.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0106489", "adult": false, "backdrop_path": "/aRMZOhLj6IjnmDnRGjblXYMOPxR.jpg", "production_companies": [{"name": "Savoy Pictures", "id": 11308}, {"name": "HBO Films", "id": 7429}], "release_date": "1993-09-14", "popularity": 0.598772745670164, "original_title": "A Bronx Tale", "budget": 22000000, "cast": [{"name": "Robert De Niro", "character": "Lorenzo Anello", "id": 380, "credit_id": "52fe4303c3a36847f8033fdd", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Chazz Palminteri", "character": "Sonny LoSpecchio", "id": 9046, "credit_id": "52fe4303c3a36847f8033fe1", "cast_id": 2, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 1}, {"name": "Lillo Brancato", "character": "Calogero \"C\" Anello (Age 17)", "id": 17917, "credit_id": "52fe4303c3a36847f8033fe5", "cast_id": 3, "profile_path": "/3dwUQEQImGDUDn9Q4fxl06pW8pS.jpg", "order": 2}, {"name": "Francis Capra", "character": "Calogero \"C\" Anello (Age 9)", "id": 17918, "credit_id": "52fe4303c3a36847f8033fe9", "cast_id": 4, "profile_path": "/fmFbfu6OeimG24ShcEAybcsEDNz.jpg", "order": 3}, {"name": "Taral Hicks", "character": "Jane Williams", "id": 17919, "credit_id": "52fe4303c3a36847f8033fed", "cast_id": 5, "profile_path": "/vdznEX5toQVuXP13vW8azvFZ2t8.jpg", "order": 4}, {"name": "Kathrine Narducci", "character": "Rosina Anello", "id": 17920, "credit_id": "52fe4303c3a36847f8033ff1", "cast_id": 6, "profile_path": "/96Ni5pAILMiSAARvej9IKd5w8R8.jpg", "order": 5}, {"name": "Clem Caserta", "character": "Jimmy Whispers", "id": 17921, "credit_id": "52fe4303c3a36847f8033ff5", "cast_id": 7, "profile_path": "/sXh8zi1BVBe0q9Hza3GhNvdTJsv.jpg", "order": 6}, {"name": "Alfred Sauchelli Jr.", "character": "Bobby Bars", "id": 17922, "credit_id": "52fe4303c3a36847f8033ff9", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Frank Pietrangolare", "character": "Danny K.O.", "id": 17923, "credit_id": "52fe4303c3a36847f8033ffd", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Joe Pesci", "character": "Carmine", "id": 4517, "credit_id": "52fe4303c3a36847f8034001", "cast_id": 10, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 9}, {"name": "Robert D'Andrea", "character": "Tony Toupee", "id": 17924, "credit_id": "52fe4303c3a36847f8034005", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Eddie Montanaro", "character": "Eddie Mush", "id": 17925, "credit_id": "52fe4303c3a36847f8034009", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Fred Fischer", "character": "JoJo \"The Whale\"", "id": 17926, "credit_id": "52fe4303c3a36847f803400d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Dave Salerno", "character": "Frankie Coffeecake", "id": 17927, "credit_id": "52fe4303c3a36847f8034011", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Joe D'Onofrio", "character": "Slick (Age 17)", "id": 17928, "credit_id": "52fe4303c3a36847f8034015", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Luigi D'Angelo", "character": "Aldo (Age 17)", "id": 17929, "credit_id": "52fe4303c3a36847f8034019", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Louis Vanaria", "character": "Crazy Mario (Age 17)", "id": 17930, "credit_id": "52fe4303c3a36847f803401d", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Dominick Rocchio", "character": "Ralphie (Age 17)", "id": 17931, "credit_id": "52fe4303c3a36847f8034021", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Patrick Borriello", "character": "Slick (Age 9)", "id": 17932, "credit_id": "52fe4303c3a36847f8034025", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Paul Perri", "character": "Crazy Mario (Age 9)", "id": 1305246, "credit_id": "53353cdfc3a3680a1e003e55", "cast_id": 98, "profile_path": null, "order": 19}, {"name": "Mitch Kolpan", "character": "Detective Belsik", "id": 17934, "credit_id": "52fe4303c3a36847f803402d", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Phil Foglia", "character": "Detective Vella", "id": 17935, "credit_id": "52fe4303c3a36847f8034031", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Max Genovino", "character": "Louie Dumps", "id": 17936, "credit_id": "52fe4303c3a36847f8034035", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Ralph Napolitano", "character": "Gino", "id": 17937, "credit_id": "52fe4303c3a36847f8034039", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Steve Kendall", "character": "Red Beard", "id": 17938, "credit_id": "52fe4304c3a36847f803403d", "cast_id": 25, "profile_path": null, "order": 24}, {"name": "A.J. Ekoku", "character": "A.J.", "id": 17939, "credit_id": "52fe4304c3a36847f8034041", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Sobe Bailey", "character": "Willy", "id": 17940, "credit_id": "52fe4304c3a36847f8034045", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Domenick Lombardozzi", "character": "Nicky Zero", "id": 17941, "credit_id": "52fe4304c3a36847f8034049", "cast_id": 28, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 27}, {"name": "Gianna Ranaudo", "character": "Tina", "id": 17942, "credit_id": "52fe4304c3a36847f803404d", "cast_id": 29, "profile_path": null, "order": 28}, {"name": "Nicky Blair", "character": "Jerry", "id": 16669, "credit_id": "52fe4304c3a36847f8034051", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Nina Sonja Peterson", "character": "Rachel", "id": 17943, "credit_id": "52fe4304c3a36847f8034055", "cast_id": 31, "profile_path": null, "order": 30}], "directors": [{"name": "Robert De Niro", "department": "Directing", "job": "Director", "credit_id": "52fe4304c3a36847f803405b", "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "id": 380}], "vote_average": 7.2, "runtime": 121}, "9800": {"poster_path": "/uyUSC7oX0alcAG9q6vke8WHGKkY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77324422, "overview": "No one would take his case until one man was willing to take on the system. Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.", "video": false, "id": 9800, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Philadelphia", "tagline": "No one would take on his case... until one man was willing to take on the system.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107818", "adult": false, "backdrop_path": "/pabJLbq90hvDQuXJkabiwpvWKQt.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1993-12-22", "popularity": 0.693226477101514, "original_title": "Philadelphia", "budget": 26000000, "cast": [{"name": "Tom Hanks", "character": "Andrew Beckett", "id": 31, "credit_id": "52fe452fc3a36847f80c1111", "cast_id": 21, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Joe Mille", "id": 5292, "credit_id": "52fe452fc3a36847f80c110d", "cast_id": 20, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Jason Robards", "character": "Charles Wheeler", "id": 4765, "credit_id": "5370e39ac3a3687012000006", "cast_id": 34, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 2}, {"name": "Mary Steenburgen", "character": "Belinda Conine", "id": 2453, "credit_id": "5370e383c3a368700b000004", "cast_id": 33, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 3}, {"name": "Antonio Banderas", "character": "Miguel Alvarez", "id": 3131, "credit_id": "52fe452fc3a36847f80c1109", "cast_id": 19, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 4}, {"name": "Ron Vawter", "character": "Bob Seidman", "id": 32592, "credit_id": "52fe452fc3a36847f80c1129", "cast_id": 27, "profile_path": null, "order": 5}, {"name": "Robert Ridgely", "character": "Walter Kenton", "id": 25626, "credit_id": "5370ed0ec3a368702a0000b3", "cast_id": 38, "profile_path": "/sxvnvaZRpOhFqXk7yiN8iJE9Elw.jpg", "order": 6}, {"name": "Charles Napier", "character": "Judge Garnett", "id": 16119, "credit_id": "5370e3cec3a368701e000004", "cast_id": 36, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 7}, {"name": "Lisa Summerour", "character": "Lisa Miller", "id": 1318896, "credit_id": "5370ee580e0a266156000153", "cast_id": 39, "profile_path": null, "order": 8}, {"name": "Obba Babatunde", "character": "Jerome Green", "id": 52057, "credit_id": "5370ee9a0e0a26615c000138", "cast_id": 40, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 9}, {"name": "Andre B. Blake", "character": "Young Man in Pharmacy", "id": 552526, "credit_id": "5370eed20e0a266150000151", "cast_id": 41, "profile_path": null, "order": 10}, {"name": "Robert W. Castle", "character": "Bud Beckett", "id": 552527, "credit_id": "5370eef60e0a26615000015f", "cast_id": 42, "profile_path": null, "order": 11}, {"name": "Daniel Chapman", "character": "Clinic Storyteller", "id": 91428, "credit_id": "52fe452fc3a36847f80c1119", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Roger Corman", "character": "Mr. Laird", "id": 102429, "credit_id": "5370efb50e0a26616200016e", "cast_id": 43, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 13}, {"name": "Ann Dowd", "character": "Jill Beckett", "id": 43366, "credit_id": "5370efd00e0a26615f00016b", "cast_id": 44, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 14}, {"name": "David Drake", "character": "Bruno", "id": 1176208, "credit_id": "5370f0fbc3a36870050000c7", "cast_id": 45, "profile_path": null, "order": 15}, {"name": "Karen Finley", "character": "Dr. Gillman", "id": 568363, "credit_id": "52fe452fc3a36847f80c1115", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Charles Glenn", "character": "Kenneth Killcoyne", "id": 568366, "credit_id": "52fe452fc3a36847f80c1125", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Peter Jacobs", "character": "Peter / Mona Lisa", "id": 1318898, "credit_id": "5370f1c8c3a368702a0000ed", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Paul Lazar", "character": "Dr. Klenstein", "id": 138988, "credit_id": "5370f200c3a3687012000101", "cast_id": 47, "profile_path": "/8Aj1kAid7DQoLx76v7yn0pQdo90.jpg", "order": 19}, {"name": "John Bedford Lloyd", "character": "Matt Beckett", "id": 60118, "credit_id": "5370f218c3a3687012000104", "cast_id": 48, "profile_path": "/6tE1lFrmKiOVsHt3fUay62ttn3U.jpg", "order": 20}, {"name": "Roberta Maxwell", "character": "Judge Tate", "id": 10362, "credit_id": "52fe452fc3a36847f80c10c5", "cast_id": 3, "profile_path": "/tqkbI9bFmFPyOEeGGVyu8FPFyUu.jpg", "order": 21}, {"name": "Warren Miller", "character": "Mr. Finley", "id": 1066975, "credit_id": "5370f27cc3a368700b0000f7", "cast_id": 49, "profile_path": null, "order": 22}, {"name": "Harry Northup", "character": "Juror", "id": 127738, "credit_id": "5370f29ec3a36870330000e9", "cast_id": 50, "profile_path": null, "order": 23}, {"name": "Dan Olmstead", "character": "Randy Beckett", "id": 1318899, "credit_id": "5370f2b5c3a368701200010a", "cast_id": 51, "profile_path": null, "order": 24}, {"name": "Joey Perillo", "character": "Filko", "id": 1318900, "credit_id": "5370f30dc3a3686ffe0000f7", "cast_id": 52, "profile_path": null, "order": 25}, {"name": "Lauren Roselli", "character": "Iris", "id": 1281000, "credit_id": "5370f31cc3a368700b000107", "cast_id": 53, "profile_path": null, "order": 26}, {"name": "Anna Deavere Smith", "character": "Anthea Burton", "id": 63279, "credit_id": "52fe452fc3a36847f80c112d", "cast_id": 28, "profile_path": "/qxnkWqihNIu2FKL8UFxAfv9XfAW.jpg", "order": 28}, {"name": "Lisa Talerico", "character": "Shelby", "id": 568367, "credit_id": "52fe452fc3a36847f80c1135", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Daniel von Bargen", "character": "Jury Foreman", "id": 1473, "credit_id": "5370f373c3a3686ffe000102", "cast_id": 55, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 30}, {"name": "Tracey Walter", "character": "Librarian", "id": 3801, "credit_id": "5370e401c3a368700b000013", "cast_id": 37, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 31}, {"name": "Bradley Whitford", "character": "Jamey Collins", "id": 11367, "credit_id": "52fe452fc3a36847f80c1139", "cast_id": 31, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 32}, {"name": "Chandra Wilson", "character": "Chandra", "id": 171075, "credit_id": "5370f3cbc3a3687012000117", "cast_id": 56, "profile_path": "/3933k7jumQ3oHkJlV7NL9zh7xK1.jpg", "order": 33}, {"name": "Kathryn Witt", "character": "Melissa Benedict", "id": 79906, "credit_id": "5370f3fac3a368701900012e", "cast_id": 57, "profile_path": "/kBVhoLO2UQoB8rVRvnr6JFPUgvJ.jpg", "order": 34}, {"name": "Joanne Woodward", "character": "Sarah Beckett", "id": 109410, "credit_id": "5370e3b8c3a3687005000005", "cast_id": 35, "profile_path": "/wASr7wWAuDTmhc4Qob6eJguUkKY.jpg", "order": 35}, {"name": "Buzz Kilman", "character": "Crutches", "id": 59329, "credit_id": "52fe452fc3a36847f80c10c9", "cast_id": 4, "profile_path": "/pDwywHDHEwWlkxd3vkg6A7h6S9f.jpg", "order": 36}, {"name": "Mark Sorensen Jr.", "character": "Clinic Patient", "id": 568364, "credit_id": "52fe452fc3a36847f80c111d", "cast_id": 24, "profile_path": null, "order": 37}, {"name": "Jeffrey Williamson", "character": "Tyrone", "id": 568365, "credit_id": "52fe452fc3a36847f80c1121", "cast_id": 25, "profile_path": null, "order": 38}, {"name": "Stephanie Roth Haberle", "character": "Rachel Smilow", "id": 58539, "credit_id": "52fe452fc3a36847f80c1131", "cast_id": 29, "profile_path": null, "order": 39}, {"name": "Bill Rowe", "character": "Dr. Armbruster", "id": 1397318, "credit_id": "54887085c3a368414800167a", "cast_id": 58, "profile_path": null, "order": 40}], "directors": [{"name": "Jonathan Demme", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c10cf", "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "id": 16294}], "vote_average": 7.2, "runtime": 125}, "9801": {"poster_path": "/fs3nGIwSBk9H8EcuPtnj7qQrYj2.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40203020, "overview": "The story picks up four weeks after the first film, and already Bridget Jones is becoming uncomfortable in her relationship with Mark Darcy. Apart from discovering that he's a conservative voter, she has to deal with a new boss, strange contractor, and the worst vacation of her life.", "video": false, "id": 9801, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Bridget Jones: The Edge of Reason", "tagline": "Same Bridget. Brand new diary.", "vote_count": 149, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jiS4x140miaEH524CAFTvuxrcZ1.jpg", "poster_path": "/fB3BE3TL85Wh7dxNJf226IYQCp.jpg", "id": 8936, "name": "Bridget Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317198", "adult": false, "backdrop_path": "/4rZ6ScBaJ3X7RWGqSo56kD6JxaW.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Miramax Films", "id": 14}, {"name": "Working Title Films", "id": 10163}, {"name": "Atlantic Television", "id": 11357}, {"name": "Little Bird", "id": 11358}], "release_date": "2004-11-08", "popularity": 0.643364996300388, "original_title": "Bridget Jones: The Edge of Reason", "budget": 50000000, "cast": [{"name": "Ren\u00e9e Zellweger", "character": "Bridget Jones", "id": 9137, "credit_id": "52fe452fc3a36847f80c117b", "cast_id": 1, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 0}, {"name": "Colin Firth", "character": "Mark Darcy", "id": 5472, "credit_id": "52fe452fc3a36847f80c117f", "cast_id": 5, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Hugh Grant", "character": "Daniel Cleaver", "id": 3291, "credit_id": "52fe452fc3a36847f80c1183", "cast_id": 6, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 2}, {"name": "Jacinda Barrett", "character": "Rebecca", "id": 6857, "credit_id": "52fe4530c3a36847f80c11f3", "cast_id": 26, "profile_path": "/qM5BhDkFh18CASTRGp9UPj4PcYO.jpg", "order": 3}, {"name": "Gemma Jones", "character": "Bridget's Mum", "id": 9138, "credit_id": "52fe4530c3a36847f80c11f7", "cast_id": 27, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 4}, {"name": "Jim Broadbent", "character": "Bridget's Dad", "id": 388, "credit_id": "52fe4530c3a36847f80c11fb", "cast_id": 28, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 5}, {"name": "James Callis", "character": "Tom", "id": 9145, "credit_id": "52fe4530c3a36847f80c11ff", "cast_id": 29, "profile_path": "/eKYhq4PGfqE7F2xOjNyeyXHNhRU.jpg", "order": 6}, {"name": "Sally Phillips", "character": "Shazza", "id": 9144, "credit_id": "52fe4530c3a36847f80c1203", "cast_id": 30, "profile_path": "/cr0fXU9N69QOcBNZ98ih5A6QbTr.jpg", "order": 7}, {"name": "Shirley Henderson", "character": "Jude", "id": 1834, "credit_id": "52fe4530c3a36847f80c1207", "cast_id": 31, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 8}, {"name": "James Faulkner", "character": "Uncle Geoffrey", "id": 9140, "credit_id": "536a37260e0a2647d800a0a6", "cast_id": 33, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 10}, {"name": "Celia Imrie", "character": "Una Alconbury", "id": 9139, "credit_id": "536a374f0e0a2647cb00a168", "cast_id": 34, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 11}, {"name": "Dominic McHale", "character": "Bernard", "id": 1117371, "credit_id": "536a37630e0a2647db009e22", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Donald Douglas", "character": "Admiral Darcy", "id": 19331, "credit_id": "536a37940e0a2647d4009e2e", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Shirley Dixon", "character": "Mrs. Darcy", "id": 1317410, "credit_id": "536a37a50e0a2647cb00a172", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Neil Pearson", "character": "Richard Finch", "id": 174982, "credit_id": "536a37b80e0a2647d1009cc9", "cast_id": 38, "profile_path": "/i6KL2tVl5EHtt08LlwPIIh8dIhS.jpg", "order": 15}, {"name": "Rosalind Halstead", "character": "Receptionist", "id": 115681, "credit_id": "536a37d30e0a2647c400a1ef", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Luis Soto", "character": "Mexican Ambassador", "id": 59091, "credit_id": "536a37e50e0a2647d1009ccc", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Tom Brooke", "character": "Production Assistant", "id": 75066, "credit_id": "536a37f70e0a2647d4009e37", "cast_id": 41, "profile_path": "/9uUjIfjlQ3qxdR5z37YD2bEE97p.jpg", "order": 18}, {"name": "Alba Fleming Furlan", "character": "Girl in Rome", "id": 1317411, "credit_id": "536a380a0e0a2647cb00a187", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Beeban Kidron", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c1189", "profile_path": null, "id": 20237}], "vote_average": 5.9, "runtime": 108}, "9802": {"poster_path": "/pAVaLJQBRM4JlZEGXvezwbxOd15.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 335062621, "overview": "A group of renegade marine commandos seizes a stockpile of chemical weapons and takes over Alcatraz, with 81 tourists as hostages. Their leader demands $100 million to be paid, as restitution to families of Marines who died in covert ops. Otherwise, he will launch 15 rockets carrying deadly VX gas into the San Francisco Bay area.", "video": false, "id": 9802, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Rock", "tagline": "Alcatraz. Only one man has ever broken out. Now five million lives depend on two men breaking in.", "vote_count": 585, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117500", "adult": false, "backdrop_path": "/8Tv9KJApHcwJzn6wR9LcW3r5a5w.jpg", "production_companies": [{"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1996-06-06", "popularity": 1.79430598621926, "original_title": "The Rock", "budget": 75000000, "cast": [{"name": "Sean Connery", "character": "John Patrick Mason", "id": 738, "credit_id": "52fe4530c3a36847f80c12b5", "cast_id": 20, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Nicolas Cage", "character": "Dr. Stanley Goodspeed", "id": 2963, "credit_id": "52fe4530c3a36847f80c1253", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 1}, {"name": "Ed Harris", "character": "Brigadier General Francis X. Hummel, USMC", "id": 228, "credit_id": "52fe4530c3a36847f80c1257", "cast_id": 3, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "John Spencer", "character": "FBI Director James Womack", "id": 34691, "credit_id": "52fe4530c3a36847f80c125b", "cast_id": 4, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 3}, {"name": "David Morse", "character": "Major Tom Baxter", "id": 52, "credit_id": "52fe4530c3a36847f80c125f", "cast_id": 5, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 4}, {"name": "William Forsythe", "character": "Special Agent Ernest Paxton", "id": 4520, "credit_id": "52fe4530c3a36847f80c1263", "cast_id": 6, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 5}, {"name": "Michael Biehn", "character": "Commander Charles Anderson", "id": 2712, "credit_id": "52fe4530c3a36847f80c12b9", "cast_id": 21, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 6}, {"name": "Vanessa Marcil", "character": "Carla Pestalozzi", "id": 169586, "credit_id": "52fe4530c3a36847f80c12bd", "cast_id": 22, "profile_path": "/1atIMDGsXGJs8I8ISXX6c9cqkWW.jpg", "order": 7}, {"name": "John C. McGinley", "character": "Marine Captain Hendrix", "id": 11885, "credit_id": "52fe4530c3a36847f80c12c1", "cast_id": 23, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 8}, {"name": "Bokeem Woodbine", "character": "Sergeant Crisp", "id": 71913, "credit_id": "52fe4530c3a36847f80c12c5", "cast_id": 24, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 9}, {"name": "Claire Forlani", "character": "Jade Angelou", "id": 4174, "credit_id": "52fe4530c3a36847f80c12c9", "cast_id": 25, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 10}, {"name": "Gregory Sporleder", "character": "Captain Frye", "id": 10000, "credit_id": "52fe4530c3a36847f80c12cd", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Tony Todd", "character": "Captain Darrow", "id": 19384, "credit_id": "52fe4530c3a36847f80c12d1", "cast_id": 27, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 12}, {"name": "Jim Maniaci", "character": "Private Scarpetti", "id": 156035, "credit_id": "52fe4530c3a36847f80c12d5", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Greg Collins", "character": "Private Gamble", "id": 58950, "credit_id": "52fe4530c3a36847f80c12d9", "cast_id": 29, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 14}, {"name": "Brendan Kelly", "character": "Private Cox", "id": 166893, "credit_id": "52fe4530c3a36847f80c12dd", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Steve Harris", "character": "Private McCoy", "id": 2202, "credit_id": "52fe4530c3a36847f80c12e1", "cast_id": 31, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 16}, {"name": "Danny Nucci", "character": "Lieutenant Shephard", "id": 8540, "credit_id": "52fe4530c3a36847f80c12e5", "cast_id": 32, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 17}, {"name": "Celeste Weaver", "character": "Stacy Richards", "id": 170696, "credit_id": "52fe4530c3a36847f80c12e9", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Todd Louiso", "character": "Marvin Isherwood", "id": 3230, "credit_id": "52fe4530c3a36847f80c12ed", "cast_id": 34, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 19}, {"name": "David Bowe", "character": "Dr. Ling", "id": 11659, "credit_id": "52fe4530c3a36847f80c12f1", "cast_id": 35, "profile_path": "/7LQANqwm1g9X9YmMwDHqdqJ9uK9.jpg", "order": 20}, {"name": "Raquel Krelle", "character": "Agent Margie Wood", "id": 106709, "credit_id": "52fe4530c3a36847f80c12f5", "cast_id": 36, "profile_path": null, "order": 21}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4530c3a36847f80c1269", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.8, "runtime": 136}, "9804": {"poster_path": "/yordVJcPLh3VNRL7bXzFIBEhXRr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 264218220, "overview": "In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship. But the trio soon becomes the target of a menacing pirate who covets the map to \"Dryland\" -- which is tattooed on Enola's back.", "video": false, "id": 9804, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Waterworld", "tagline": "Beyond the horizon lies the secret to a new beginning.", "vote_count": 277, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114898", "adult": false, "backdrop_path": "/3YafUwZBXU8irYkBcgPDQByPfMR.jpg", "production_companies": [{"name": "Gordon Company", "id": 1073}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Universal Pictures", "id": 33}, {"name": "Licht/Mueller Film Corporation", "id": 6092}], "release_date": "1995-07-28", "popularity": 0.757050625215674, "original_title": "Waterworld", "budget": 175000000, "cast": [{"name": "Kevin Costner", "character": "Mariner", "id": 1269, "credit_id": "52fe4530c3a36847f80c1425", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Chaim Girafi", "character": "Drifter", "id": 59350, "credit_id": "52fe4530c3a36847f80c1429", "cast_id": 2, "profile_path": "/hH8EoVgtxgqPWLJjneA4QCVD1HL.jpg", "order": 1}, {"name": "Rick Aviles", "character": "Gatesman", "id": 3432, "credit_id": "52fe4530c3a36847f80c142d", "cast_id": 3, "profile_path": "/p4do7d8TKPbdQ2IkF5vx8uHLh93.jpg", "order": 2}, {"name": "R. D. Call", "character": "Enforcer", "id": 49832, "credit_id": "52fe4530c3a36847f80c1495", "cast_id": 26, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 3}, {"name": "Zitto Kazann", "character": "Elder / Survivor", "id": 59352, "credit_id": "52fe4530c3a36847f80c1431", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jeanne Tripplehorn", "character": "Helen", "id": 10478, "credit_id": "52fe4530c3a36847f80c1435", "cast_id": 6, "profile_path": "/pZcw8RXsRSO9WXHOrQqentISWYv.jpg", "order": 5}, {"name": "Dennis Hopper", "character": "Deacon", "id": 2778, "credit_id": "52fe4530c3a36847f80c148d", "cast_id": 24, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 6}, {"name": "Jack Black", "character": "Pilot", "id": 70851, "credit_id": "52fe4530c3a36847f80c1491", "cast_id": 25, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 7}, {"name": "Zakes Mokae", "character": "Priam", "id": 47458, "credit_id": "52fe4530c3a36847f80c1499", "cast_id": 27, "profile_path": "/sxzqrmSm7Kd7eSHzos7UeiT0mke.jpg", "order": 8}, {"name": "Jack Kehler", "character": "Banker", "id": 1240, "credit_id": "53870319c3a3681aed002a17", "cast_id": 34, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 9}, {"name": "Tina Majorino", "character": "Enola", "id": 53930, "credit_id": "5387034cc3a3681aea002767", "cast_id": 35, "profile_path": "/kGzCUaPddOm84cRlExLKOvZEoqP.jpg", "order": 10}, {"name": "Rita Zohar", "character": "Atoller", "id": 41741, "credit_id": "5387037bc3a3681aea00276b", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Gerard Murphy", "character": "Nord", "id": 151943, "credit_id": "547a4912925141298a002fed", "cast_id": 74, "profile_path": "/onkF4igAmOiiKl2wxXm8eSgLgFd.jpg", "order": 12}, {"name": "Michael Jeter", "character": "Old Gregor", "id": 2169, "credit_id": "547a4959c3a3685c42002e81", "cast_id": 75, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 13}], "directors": [{"name": "Kevin Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe4530c3a36847f80c143b", "profile_path": "/drxXtPvCxVtw0VLn1on073OrW9s.jpg", "id": 8300}, {"name": "Kevin Costner", "department": "Directing", "job": "Director", "credit_id": "52fe4530c3a36847f80c1441", "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "id": 1269}], "vote_average": 5.6, "runtime": 135}, "9806": {"poster_path": "/9k4sgKD79q0MDHSWIqNnHqOfOEV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 631442092, "overview": "Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.", "video": false, "id": 9806, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Incredibles", "tagline": "No gut, no glory", "vote_count": 1582, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/incredibles/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317705", "adult": false, "backdrop_path": "/iGknrkEyebPFmpQoLGy5L0utVxz.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2004-11-04", "popularity": 1.50585709192542, "original_title": "The Incredibles", "budget": 92000000, "cast": [{"name": "Craig T. Nelson", "character": "Bob Parr / Mr. Incredible (voice)", "id": 8977, "credit_id": "52fe4531c3a36847f80c1567", "cast_id": 1, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 0}, {"name": "Holly Hunter", "character": "Helen Parr / Elastigirl (voice)", "id": 18686, "credit_id": "52fe4531c3a36847f80c156b", "cast_id": 2, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Lucius Best / Frozone (voice)", "id": 2231, "credit_id": "52fe4531c3a36847f80c156f", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Jason Lee", "character": "Buddy Pine / Syndrome (voice)", "id": 11662, "credit_id": "52fe4531c3a36847f80c1573", "cast_id": 4, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 3}, {"name": "Dominique Louis", "character": "Bomb Voyage (voice)", "id": 7891, "credit_id": "52fe4531c3a36847f80c1577", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Teddy Newton", "character": "Newsreel Narrator (voice)", "id": 59357, "credit_id": "52fe4531c3a36847f80c157b", "cast_id": 6, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 5}, {"name": "Eli Fucile", "character": "Jack Jack Parr (voice)", "id": 59358, "credit_id": "52fe4531c3a36847f80c157f", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Maeve Andrews", "character": "Jack Jack Parr (voice)", "id": 59359, "credit_id": "52fe4531c3a36847f80c1583", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Spencer Fox", "character": "Dashiell 'Dash' Parr (voice)", "id": 59360, "credit_id": "52fe4531c3a36847f80c1587", "cast_id": 9, "profile_path": "/qqs9r1I7tCIZNJtqpfgy33H9vgr.jpg", "order": 8}, {"name": "Sarah Vowell", "character": "Violet Parr (voice)", "id": 59361, "credit_id": "52fe4531c3a36847f80c158b", "cast_id": 10, "profile_path": "/k9zkjShni0FFCPGxWzV959bFUVq.jpg", "order": 9}, {"name": "Elizabeth Pe\u00f1a", "character": "Mirage (voice)", "id": 7430, "credit_id": "53b98015c3a368072e002ade", "cast_id": 27, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 10}, {"name": "Brad Bird", "character": "Edna 'E' Mode (voice)", "id": 7087, "credit_id": "53b97fcf0e0a2676c4009db9", "cast_id": 26, "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "order": 11}, {"name": "Jean Sincere", "character": "Mrs. Hogenson (voice)", "id": 155917, "credit_id": "52fe4531c3a36847f80c15c5", "cast_id": 20, "profile_path": "/2ZfyL9QYGJTsM4ukzclnqcBgpXD.jpg", "order": 12}, {"name": "Wallace Shawn", "character": "Gilbert Huph (voice)", "id": 12900, "credit_id": "52fe4531c3a36847f80c15c9", "cast_id": 21, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 13}, {"name": "Lou Romano", "character": "Bernie Kropp (voice)", "id": 7962, "credit_id": "52fe4531c3a36847f80c15cd", "cast_id": 22, "profile_path": "/q5BXFPkFZA7RJh9Oj15WRQawMfk.jpg", "order": 14}, {"name": "Wayne Canney", "character": "Principal (voice)", "id": 1075147, "credit_id": "52fe4531c3a36847f80c15d1", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Michael Bird", "character": "Tony Rydinger (voice)", "id": 1075148, "credit_id": "52fe4531c3a36847f80c15d5", "cast_id": 24, "profile_path": "/7vE1uNNUi76GwwVlcnvJ6gAKIh0.jpg", "order": 16}, {"name": "John Ratzenberger", "character": "The Underminer (voice)", "id": 7907, "credit_id": "52fe4531c3a36847f80c15d9", "cast_id": 25, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 17}, {"name": "Kimberly Adair Clark", "character": "Honey (voice)", "id": 1338319, "credit_id": "53b98078c3a3685ec1005a6a", "cast_id": 28, "profile_path": "/aUpioS1Z0ZnATrkSRsNcfXzZnhP.jpg", "order": 18}, {"name": "Bud Luckey", "character": "Rick Dicker (voice)", "id": 7918, "credit_id": "53b980f7c3a3685eb1005c4a", "cast_id": 30, "profile_path": "/pcCh7G19FKMNijmPQg1PMH1btic.jpg", "order": 20}, {"name": "Pete Docter", "character": "Additional Voices (voice)", "id": 12890, "credit_id": "53b98510c3a3685ec1005ac0", "cast_id": 31, "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "order": 21}, {"name": "Andrew Stanton", "character": "Additional Voices (voice)", "id": 7, "credit_id": "53b9858c0e0a2676b8009b2c", "cast_id": 32, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 22}, {"name": "Bret 'Brook' Parker", "character": "Kari (voice)", "id": 7998, "credit_id": "5442bac20e0a266330002973", "cast_id": 33, "profile_path": "/776ZYJGQO4Wer1cDq9XXAZ0z4C1.jpg", "order": 23}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe4531c3a36847f80c1591", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 6.8, "runtime": 115}, "1620": {"poster_path": "/1U2FpMotSyaciATw5qfEsKdgpX4.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99965753, "overview": "The best-selling videogame, Hitman, roars to life with both barrels blazing in this hardcore action-thriller starring Timothy Olyphant. A genetically engineered assassin with deadly aim, known only as \"Agent 47\" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.", "video": false, "id": 1620, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hitman", "tagline": "Assassin 47", "vote_count": 341, "homepage": "http://www.hitmanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "sr", "name": "Srpski"}], "imdb_id": "tt0465494", "adult": false, "backdrop_path": "/6wBfey6EVR5qxYLB8pxoTVQYWkS.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Anka Film", "id": 867}, {"name": "Daybreak Productions", "id": 11746}, {"name": "Dune Entertainment", "id": 444}, {"name": "Prime Universe Productions", "id": 11747}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2007-11-21", "popularity": 0.84019159894405, "original_title": "Hitman", "budget": 24000000, "cast": [{"name": "Timothy Olyphant", "character": "Agent 47", "id": 18082, "credit_id": "52fe4305c3a36847f80346d3", "cast_id": 1, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 0}, {"name": "Dougray Scott", "character": "Mike Whittier", "id": 15336, "credit_id": "52fe4305c3a36847f803472b", "cast_id": 18, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 1}, {"name": "Olga Kurylenko", "character": "Nika Boronina", "id": 18182, "credit_id": "52fe4305c3a36847f803472f", "cast_id": 19, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 2}, {"name": "Robert Knepper", "character": "Yuri Marklov", "id": 17343, "credit_id": "52fe4305c3a36847f8034733", "cast_id": 20, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 3}, {"name": "Ulrich Thomsen", "character": "Mikhail Belicoff", "id": 4455, "credit_id": "52fe4305c3a36847f8034737", "cast_id": 21, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 4}, {"name": "Henry Ian Cusick", "character": "Udre Belicoff", "id": 31166, "credit_id": "52fe4305c3a36847f803473b", "cast_id": 22, "profile_path": "/wtpj2lUQE2BPyPmTJbhzn0vtdQ6.jpg", "order": 5}, {"name": "Michael Offei", "character": "Jenkins", "id": 18183, "credit_id": "52fe4305c3a36847f803473f", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Christian Erickson", "character": "General Kormarov", "id": 45849, "credit_id": "52fe4305c3a36847f8034743", "cast_id": 24, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 7}, {"name": "Eriq Ebouaney", "character": "Bwana Qvie", "id": 25078, "credit_id": "52fe4305c3a36847f8034747", "cast_id": 25, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 8}, {"name": "Joe Sheridan", "character": "Captain Gudnayev", "id": 12983, "credit_id": "52fe4305c3a36847f803474b", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "James Faulkner", "character": "Smith Jamison", "id": 9140, "credit_id": "52fe4305c3a36847f803474f", "cast_id": 27, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 10}], "directors": [{"name": "Xavier Gens", "department": "Directing", "job": "Director", "credit_id": "52fe4305c3a36847f80346d9", "profile_path": "/nvGKZUazQO0TUR1CW0IUJiIJAT3.jpg", "id": 18184}], "vote_average": 6.0, "runtime": 89}, "1621": {"poster_path": "/6HS7QG5aR0tZ9JHORs7DMtyqCDr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90400000, "overview": "A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.", "video": false, "id": 1621, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Trading Places", "tagline": "Some very funny business.", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086465", "adult": false, "backdrop_path": "/pyYPPKCjIPlEjUpxIziXiTjT479.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1983-06-07", "popularity": 0.844562386553999, "original_title": "Trading Places", "budget": 40600000, "cast": [{"name": "Eddie Murphy", "character": "Billy Ray Valentine", "id": 776, "credit_id": "52fe4305c3a36847f8034799", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Louis Winthorpe III", "id": 707, "credit_id": "52fe4305c3a36847f803479d", "cast_id": 2, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Jamie Lee Curtis", "character": "Ophelia", "id": 8944, "credit_id": "52fe4305c3a36847f80347a1", "cast_id": 3, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 2}, {"name": "Denholm Elliott", "character": "Coleman", "id": 656, "credit_id": "52fe4305c3a36847f80347a5", "cast_id": 4, "profile_path": "/lpDIKHwg1ttp03i3fKWcSuQ8MfY.jpg", "order": 3}, {"name": "Ralph Bellamy", "character": "Randolph Duke", "id": 1208, "credit_id": "52fe4305c3a36847f80347a9", "cast_id": 5, "profile_path": "/fjRvQxfzPw77TUMDaJHnPKirpG0.jpg", "order": 4}, {"name": "Don Ameche", "character": "Mortimer Duke", "id": 18156, "credit_id": "52fe4305c3a36847f80347ad", "cast_id": 6, "profile_path": "/nEALranFWJsZoAyNqgLX28kdM9n.jpg", "order": 5}, {"name": "Paul Gleason", "character": "Clarence Beeks", "id": 7675, "credit_id": "52fe4305c3a36847f80347b1", "cast_id": 7, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 6}, {"name": "Kristin Holby", "character": "Penelope Witherspoon", "id": 18160, "credit_id": "52fe4305c3a36847f80347b5", "cast_id": 8, "profile_path": "/8jbPTDoS5tNE27oan8BdlKBASeo.jpg", "order": 7}, {"name": "Frank Oz", "character": "Corrupt Cop", "id": 7908, "credit_id": "52fe4305c3a36847f8034819", "cast_id": 26, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 8}, {"name": "Robert Earl Jones", "character": "Attendant", "id": 98927, "credit_id": "54c5e2969251412489009544", "cast_id": 29, "profile_path": null, "order": 9}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe4305c3a36847f80347bb", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.9, "runtime": 116}, "83542": {"poster_path": "/k9gWDjfXM80iXQLuMvPlZgSFJgR.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "SG", "name": "Singapore"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130482868, "overview": "A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.", "video": false, "id": 83542, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Cloud Atlas", "tagline": "Everything is Connected", "vote_count": 1445, "homepage": "http://cloudatlas.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1371111", "adult": false, "backdrop_path": "/2ZA03KiD4jePTNBTJjGGFTNQPMA.jpg", "production_companies": [{"name": "Cloud Atlas Productions", "id": 11080}, {"name": "X-Filme Creative Pool", "id": 1972}, {"name": "Anarchos Productions", "id": 450}, {"name": "ARD Degeto Film", "id": 10947}, {"name": "Ascension Pictures", "id": 7829}, {"name": "Dreams of Dragon Picture", "id": 19621}, {"name": "Five Drops", "id": 11082}, {"name": "Media Asia Group", "id": 11083}], "release_date": "2012-10-26", "popularity": 1.6728442051566, "original_title": "Cloud Atlas", "budget": 102000000, "cast": [{"name": "Tom Hanks", "character": "Dr. Henry Goose / Hotel Manager / Isaac Sachs / Dermot Hoggins / Cavendish Look-a-Like Actor / Zachry", "id": 31, "credit_id": "52fe48a89251416c91094135", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Halle Berry", "character": "Native Woman / Jocasta Ayrs / Luisa Rey / Indian Party Guest / Ovid / Meronym", "id": 4587, "credit_id": "52fe48a89251416c91094139", "cast_id": 2, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 1}, {"name": "Jim Broadbent", "character": "Captain Molyneux / Vyvyan Ayrs / Timothy Cavendish / Korean Musician / Prescient 2", "id": 388, "credit_id": "52fe48a89251416c9109414d", "cast_id": 7, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Haskell Moore / Tadeusz Kesselring / Bill Smoke / Nurse Noakes / Boardman Mephi / Old Georgie", "id": 1331, "credit_id": "52fe48a89251416c9109413d", "cast_id": 3, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Jim Sturgess", "character": "Adam Ewing / Poor Hotel Guest / Megan's Dad / Highlander / Hae-Joo Chang / Adam / Zachry Brother-in-Law", "id": 38941, "credit_id": "52fe48a89251416c9109417d", "cast_id": 17, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 4}, {"name": "DooNa Bae", "character": "Tilda / Megan's Mom / Mexican Woman / Sonmi-451 / Sonmi-351 / Sonmi Prostitute", "id": 21688, "credit_id": "52fe48a89251416c91094161", "cast_id": 12, "profile_path": "/hE9dmpQOIdgt1GGVoZObPZmVSPh.jpg", "order": 5}, {"name": "Ben Whishaw", "character": "Cabin Boy / Robert Frobisher / Store Clerk / Georgette / Tribesman", "id": 17064, "credit_id": "52fe48a89251416c91094181", "cast_id": 18, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 6}, {"name": "Keith David", "character": "Kupaka / Joe Napier / An-kor Apis / Prescient", "id": 65827, "credit_id": "52fe48a89251416c91094159", "cast_id": 10, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "James D'Arcy", "character": "Young Rufus Sixsmith / Old Rufus Sixsmith / Nurse James / Archivist", "id": 19655, "credit_id": "52fe48a89251416c9109415d", "cast_id": 11, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 8}, {"name": "Zhou Xun", "character": "Talbot / Hotel Manager / Yoona-939 / Rose", "id": 71057, "credit_id": "52fe48a89251416c91094185", "cast_id": 19, "profile_path": "/hIOJS7EX6qBormh7Q6KNmtBlWlC.jpg", "order": 9}, {"name": "David Gyasi", "character": "Autua / Lester Rey / Duophsyte", "id": 55411, "credit_id": "52fe48a89251416c91094189", "cast_id": 20, "profile_path": "/6UgJLtCkGC2YHIK7FwAdGcFbT88.jpg", "order": 10}, {"name": "Susan Sarandon", "character": "Madame Horrox / Older Ursula / Yusouf Suleiman / Abbess", "id": 4038, "credit_id": "52fe48a89251416c91094151", "cast_id": 8, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 11}, {"name": "Hugh Grant", "character": "Rev. Giles Horrox / Hotel Heavy / Lloyd Hooks / Denholme Cavendish / Seer Rhee / Kona Chief", "id": 3291, "credit_id": "52fe48a89251416c91094155", "cast_id": 9, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 12}, {"name": "Robert Fyfe", "character": "Old Salty Dog / Mr. Meeks / Prescient 1", "id": 64160, "credit_id": "52fe48a89251416c9109418d", "cast_id": 21, "profile_path": "/mjPX6LtOGfZFztfAu6ZK9o0TfgP.jpg", "order": 13}, {"name": "Martin Wuttke", "character": "Mr. Boerhaave / Guard / Leary the Healer", "id": 49056, "credit_id": "52fe48a99251416c91094191", "cast_id": 22, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 14}, {"name": "Zhu Zhu", "character": "Megan Sixsmith / 12th Star Clone", "id": 1077356, "credit_id": "52fe48a99251416c91094195", "cast_id": 23, "profile_path": "/zJ1lYPLMC53rCZfkFurmmwp9hDC.jpg", "order": 15}, {"name": "Robin Morrissey", "character": "Young Cavendish", "id": 1118058, "credit_id": "53b279ddc3a3682edb0076b0", "cast_id": 98, "profile_path": null, "order": 16}, {"name": "Brody Nicholas Lee", "character": "Javier Gomez / Jonas / Zachry's Older Nephew", "id": 1336199, "credit_id": "53b27b630e0a2659800099de", "cast_id": 99, "profile_path": null, "order": 17}, {"name": "Amanda Walker", "character": "Veronica", "id": 108620, "credit_id": "53b27bbf0e0a265975009b01", "cast_id": 100, "profile_path": null, "order": 18}, {"name": "Raevan Lee Hanan", "character": "Little Girl with Orison at Papa Song's / Catkin / Zachry Relative", "id": 1323238, "credit_id": "53b27c010e0a265989009cc8", "cast_id": 101, "profile_path": null, "order": 19}, {"name": "G\u00f6tz Otto", "character": "Groundsman Withers", "id": 10744, "credit_id": "53b27c360e0a265989009ccc", "cast_id": 102, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 20}, {"name": "Mya-Lecia Naylor", "character": "Miro", "id": 972117, "credit_id": "53b27c6f0e0a265989009cd5", "cast_id": 103, "profile_path": null, "order": 21}, {"name": "Niall Greig Fulton", "character": "Haskell Moore's Dinner Guest / Mozza Hoggins", "id": 122648, "credit_id": "53b27d5e0e0a26598c009f64", "cast_id": 104, "profile_path": "/jVbIWnCYirZqprAh0RTW9SWE6XW.jpg", "order": 22}, {"name": "Louis Dempsey", "character": "Haskell Moore's Dinner Guest / Jarvis Hoggins", "id": 1084849, "credit_id": "53b27da80e0a2659860099e5", "cast_id": 105, "profile_path": null, "order": 23}, {"name": "Martin Docherty", "character": "Haskell Moore's Dinner Guest / Eddie Hoggins", "id": 1336202, "credit_id": "53b27dee0e0a265989009d06", "cast_id": 106, "profile_path": null, "order": 24}, {"name": "Alistair Petrie", "character": "Haskell Moore's Dinner Guest / Musician / Felix Finch / Lascivious Businessman", "id": 56100, "credit_id": "53b27e200e0a265989009d0b", "cast_id": 107, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 25}, {"name": "Sylvestra Le Touzel", "character": "Haskell Moore's Dinner Guest / Nurse Judd / Aide in Slaughtership", "id": 65448, "credit_id": "53b27e5b0e0a265975009b59", "cast_id": 108, "profile_path": "/1gRhJ0TFdhXe9N4igKSoAGlfDP5.jpg", "order": 26}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe48a89251416c91094143", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe48a89251416c91094149", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}, {"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe48a99251416c9109423d", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 6.5, "runtime": 172}, "9816": {"poster_path": "/jnutEFGGdjJrLDxzJykI4ZviGe8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91038276, "overview": "A white midwestern girl moves to Chicago, where her new boyfriend is a black teen from the South Side with a rough, semi-criminal past.", "video": false, "id": 9816, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Save the Last Dance", "tagline": "The Only Person You Need To Be Is Yourself.", "vote_count": 80, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/jAByXoHn29RlCjIrOa3k1jl60DB.jpg", "id": 107469, "name": "Save The Last Dance Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0206275", "adult": false, "backdrop_path": "/6JYONYxVrPPOI3vErCLVP5aaiGQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2001-01-12", "popularity": 0.539664233966061, "original_title": "Save the Last Dance", "budget": 13000000, "cast": [{"name": "Julia Stiles", "character": "Sara Johnson", "id": 12041, "credit_id": "52fe4533c3a36847f80c1ccf", "cast_id": 18, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 0}, {"name": "Sean Patrick Thomas", "character": "Derek Reynolds", "id": 11868, "credit_id": "52fe4533c3a36847f80c1cdf", "cast_id": 21, "profile_path": "/8cXF4Ywgs70ZL1j2q5A2yOvd2AY.jpg", "order": 1}, {"name": "Kerry Washington", "character": "Chenille Reynolds", "id": 11703, "credit_id": "52fe4533c3a36847f80c1ce3", "cast_id": 22, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 2}, {"name": "Fredro Starr", "character": "Malakai", "id": 59568, "credit_id": "52fe4533c3a36847f80c1ce7", "cast_id": 23, "profile_path": "/cyyOSNEgpfkGX2cSSB32EhsenRq.jpg", "order": 3}, {"name": "Terry Kinney", "character": "Roy Johnson", "id": 11067, "credit_id": "52fe4533c3a36847f80c1ceb", "cast_id": 24, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 4}, {"name": "Bianca Lawson", "character": "Nikki", "id": 36068, "credit_id": "52fe4533c3a36847f80c1cef", "cast_id": 25, "profile_path": "/wc8Oezs3BRgQeUIDFlRrHA84lVL.jpg", "order": 5}, {"name": "Vince Green", "character": "Snookie", "id": 59569, "credit_id": "52fe4533c3a36847f80c1cf3", "cast_id": 26, "profile_path": "/1Mezf9VBp74Xmmuhe5TUyIQyNu.jpg", "order": 6}, {"name": "Garland Whitt", "character": "Kenny", "id": 59570, "credit_id": "52fe4533c3a36847f80c1cf7", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Elisabeth Oas", "character": "Diggy", "id": 59571, "credit_id": "52fe4533c3a36847f80c1cfb", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Artel Great", "character": "Arvel", "id": 59572, "credit_id": "52fe4533c3a36847f80c1cff", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Cory Stewart", "character": "Lip", "id": 59573, "credit_id": "52fe4533c3a36847f80c1d03", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Jennifer Anglin", "character": "Glynn", "id": 59574, "credit_id": "52fe4533c3a36847f80c1d07", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Dorothy Martin", "character": "Momma Dean", "id": 59575, "credit_id": "52fe4533c3a36847f80c1d0b", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Kim Tlusty", "character": "Lindsay Johnson", "id": 59576, "credit_id": "52fe4533c3a36847f80c1d0f", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Felicia Fields", "character": "Woman on Train", "id": 59577, "credit_id": "52fe4533c3a36847f80c1d13", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Ora Jones", "character": "Mrs. Gwynn", "id": 59578, "credit_id": "52fe4533c3a36847f80c1d17", "cast_id": 35, "profile_path": "/9v4DBgf50S5b73PDtX7cH4fUXtQ.jpg", "order": 15}, {"name": "Tab Baker", "character": "Mr. Campbell", "id": 59579, "credit_id": "52fe4533c3a36847f80c1d1b", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Kevin Reid", "character": "Wonk", "id": 59580, "credit_id": "52fe4533c3a36847f80c1d1f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Andrew Rothenberg", "character": "Stern Judge", "id": 59581, "credit_id": "52fe4533c3a36847f80c1d23", "cast_id": 38, "profile_path": "/daNiuZmplaVjWcUqukYcAfDDSrC.jpg", "order": 18}, {"name": "Mekdes Bruk", "character": "Lakisha", "id": 59582, "credit_id": "52fe4533c3a36847f80c1d27", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Jerod Howard", "character": "", "id": 97802, "credit_id": "52fe4533c3a36847f80c1d2b", "cast_id": 40, "profile_path": "/1YdvB62s4ghmVo5ZI79znrJKGSZ.jpg", "order": 20}], "directors": [{"name": "Thomas Carter", "department": "Directing", "job": "Director", "credit_id": "52fe4533c3a36847f80c1c6b", "profile_path": "/j51pRbB8nCYrziSnjmB2PS9SIVh.jpg", "id": 52038}], "vote_average": 6.4, "runtime": 112}, "9820": {"poster_path": "/7vR4e3ga3mdSEpYe8kMeUv3mgND.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Hallie Parker and Annie James are identical twins separated at a young age because of their parents' divorce. unknowingly to their parents, the girls are sent to the same summer camp where they meet, discover the truth about themselves, and then plot with each other to switch places. Hallie meets her mother, and Annie meets her father for the first time in years.", "video": false, "id": 9820, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Parent Trap", "tagline": "Twice the Fun, Double the Trouble.", "vote_count": 150, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120783", "adult": false, "backdrop_path": "/edoD5Yt1jCeUqfxJmW2Yi1lwpvc.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-07-29", "popularity": 1.16703190191859, "original_title": "The Parent Trap", "budget": 0, "cast": [{"name": "Lindsay Lohan", "character": "Hallie Parker / Annie James", "id": 49265, "credit_id": "52fe4534c3a36847f80c1e97", "cast_id": 1, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Nick Parker", "id": 6065, "credit_id": "52fe4534c3a36847f80c1e9b", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Natasha Richardson", "character": "Elizabeth James", "id": 20162, "credit_id": "52fe4534c3a36847f80c1e9f", "cast_id": 3, "profile_path": "/eHBBsS6JLSEoLBi61nYfTs5t55u.jpg", "order": 2}, {"name": "Elaine Hendrix", "character": "Meredith Blake", "id": 55422, "credit_id": "52fe4534c3a36847f80c1ea3", "cast_id": 4, "profile_path": "/kY8CIfHp3h3u9xHN8dyZecyFK13.jpg", "order": 3}, {"name": "Lisa Ann Walter", "character": "Chessy", "id": 4494, "credit_id": "52fe4534c3a36847f80c1edd", "cast_id": 14, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 4}, {"name": "Simon Kunz", "character": "Martin", "id": 10701, "credit_id": "52fe4534c3a36847f80c1ee1", "cast_id": 15, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 5}, {"name": "Polly Holliday", "character": "Marva Kulp, Sr.", "id": 11715, "credit_id": "52fe4534c3a36847f80c1ee5", "cast_id": 16, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 6}, {"name": "Kat Graham", "character": "Jackie", "id": 159962, "credit_id": "52fe4534c3a36847f80c1ee9", "cast_id": 17, "profile_path": "/jefXlCOQrVILFeA43RhmuW4Bpbi.jpg", "order": 7}, {"name": "Lisa Iverson", "character": "Bugler", "id": 1106822, "credit_id": "52fe4534c3a36847f80c1ef3", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Lisa Cloud", "character": "Camp Counselor", "id": 152796, "credit_id": "52fe4534c3a36847f80c1ef7", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe4534c3a36847f80c1ea9", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 6.5, "runtime": 127}, "1637": {"poster_path": "/bDLiyoxdK8mZHaeYVOxMZj7WGkb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 350448145, "overview": "Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that's still not the end.", "video": false, "id": 1637, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Speed", "tagline": "Get ready for rush hour", "vote_count": 416, "homepage": "", "belongs_to_collection": {"backdrop_path": "/75mSNcKIkfZSjXDgytC8UFe6vBl.jpg", "poster_path": "/nK6q8iJYl39vVq8vmwR78CUDQp0.jpg", "id": 43064, "name": "Speed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111257", "adult": false, "backdrop_path": "/pGVpDc6MgLRtOYdxsA5fhj1SZki.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1994-06-09", "popularity": 1.38540263214528, "original_title": "Speed", "budget": 30000000, "cast": [{"name": "Keanu Reeves", "character": "Jack Traven", "id": 6384, "credit_id": "52fe4307c3a36847f8034f55", "cast_id": 2, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Sandra Bullock", "character": "Annie Porter", "id": 18277, "credit_id": "52fe4307c3a36847f8034f51", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "Howard Payne", "id": 2778, "credit_id": "52fe4307c3a36847f8034f5f", "cast_id": 4, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Jeff Daniels", "character": "Harold 'Harry' Temple", "id": 8447, "credit_id": "52fe4307c3a36847f8034f63", "cast_id": 5, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 3}, {"name": "Joe Morton", "character": "Capt. McMahon", "id": 3977, "credit_id": "52fe4307c3a36847f8034f9d", "cast_id": 15, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 4}, {"name": "Glenn Plummer", "character": "Jaguar Owner", "id": 2683, "credit_id": "52fe4307c3a36847f8034fa1", "cast_id": 16, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 5}, {"name": "Hawthorne James", "character": "Sam", "id": 12056, "credit_id": "52fe4307c3a36847f8034fa5", "cast_id": 17, "profile_path": "/i7PiUf2mN7zs3V78NPlF79nCOZ4.jpg", "order": 6}, {"name": "Carlos Carrasco", "character": "Ortiz", "id": 33712, "credit_id": "52fe4307c3a36847f8034fa9", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Beth Grant", "character": "Helen", "id": 5151, "credit_id": "52fe4307c3a36847f8034fad", "cast_id": 19, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 8}, {"name": "Richard Lineback", "character": "Norwood", "id": 3205, "credit_id": "52fe4307c3a36847f8034fb1", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Alan Ruck", "character": "Stephens", "id": 2394, "credit_id": "52fe4307c3a36847f8034fb5", "cast_id": 21, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 10}, {"name": "Jordan Lund", "character": "Bagwell", "id": 33713, "credit_id": "52fe4307c3a36847f8034fb9", "cast_id": 22, "profile_path": null, "order": 11}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f8034f5b", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 6.4, "runtime": 116}, "1632": {"poster_path": "/wyCAwfxVMLCxAoYAPgDY6biP9Qr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34604000, "overview": "Two FBI agents investigating the murder of civil rights workers during the 60s seek to breach the conspiracy of silence in a small Southern town where segregation divides black and white. The younger agent trained in FBI school runs up against the small town ways of his former Sheriff partner.", "video": false, "id": 1632, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mississippi Burning", "tagline": "", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095647", "adult": false, "backdrop_path": "/x2P5izOD98Kbun4e6ky0Jcq9lkl.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Orion Pictures", "id": 41}], "release_date": "1988-12-08", "popularity": 0.623176297997791, "original_title": "Mississippi Burning", "budget": 15000000, "cast": [{"name": "Gene Hackman", "character": "Agent Rupert Anderson", "id": 193, "credit_id": "52fe4306c3a36847f8034c2d", "cast_id": 1, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Agent Alan Ward", "id": 5293, "credit_id": "52fe4306c3a36847f8034c31", "cast_id": 2, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Frances McDormand", "character": "Mrs. Pell", "id": 3910, "credit_id": "52fe4306c3a36847f8034c35", "cast_id": 3, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 2}, {"name": "Brad Dourif", "character": "Deputy Clinton Pell", "id": 1370, "credit_id": "52fe4306c3a36847f8034c39", "cast_id": 4, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 3}, {"name": "R. Lee Ermey", "character": "Mayor Tilman", "id": 8655, "credit_id": "52fe4306c3a36847f8034c3d", "cast_id": 5, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 4}, {"name": "Gailard Sartain", "character": "Sheriff Ray Stuckey", "id": 2886, "credit_id": "52fe4306c3a36847f8034c59", "cast_id": 10, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Clayton Townley", "id": 537, "credit_id": "52fe4306c3a36847f8034c5d", "cast_id": 11, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Michael Rooker", "character": "Frank Bailey", "id": 12132, "credit_id": "52fe4306c3a36847f8034c61", "cast_id": 12, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 7}, {"name": "Pruitt Taylor Vince", "character": "Lester Cowens", "id": 3201, "credit_id": "52fe4306c3a36847f8034c65", "cast_id": 13, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 8}, {"name": "Badja Djola", "character": "Agent Monk", "id": 107009, "credit_id": "52fe4306c3a36847f8034c69", "cast_id": 14, "profile_path": "/i5j8WpNKydvBs2Vu3cYJyXNBy3V.jpg", "order": 9}, {"name": "Kevin Dunn", "character": "Agent Bird", "id": 14721, "credit_id": "52fe4306c3a36847f8034c6d", "cast_id": 15, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 10}, {"name": "Frankie Faison", "character": "Eulogist", "id": 13936, "credit_id": "52fe4306c3a36847f8034c71", "cast_id": 16, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 11}, {"name": "Tom Mason", "character": "Judge", "id": 80874, "credit_id": "52fe4306c3a36847f8034c75", "cast_id": 17, "profile_path": "/lWPITFNNJOoJprOoatAgfVRV9pH.jpg", "order": 12}, {"name": "Geoffrey Nauffts", "character": "Goatee", "id": 212797, "credit_id": "52fe4306c3a36847f8034c79", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Rick Zieff", "character": "Passenger", "id": 149500, "credit_id": "52fe4306c3a36847f8034c7d", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Christopher White", "character": "Black Passenger", "id": 553360, "credit_id": "52fe4306c3a36847f8034c81", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Tobin Bell", "character": "Agent Stokes", "id": 2144, "credit_id": "52fe4306c3a36847f8034c85", "cast_id": 21, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 16}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034c43", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.3, "runtime": 128}, "1633": {"poster_path": "/sSylBczl0MOu59jKWsEWAKZUD6g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80100000, "overview": "Amidst her own personality crisis, southern housewife Evelyn Couch meets Ninny, an outgoing old woman who tells her the story of Idgie Threadgoode and Ruth Jamison, two young women who experienced hardships and love in Whistle Stop, Alabama in the 1920s.", "video": false, "id": 1633, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Fried Green Tomatoes", "tagline": "The secret of life? The secret's in the sauce.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101921", "adult": false, "backdrop_path": "/z4Ausah3ytq9kX6ScjAE0jFkPdz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1991-12-27", "popularity": 0.787711918955436, "original_title": "Fried Green Tomatoes", "budget": 0, "cast": [{"name": "Kathy Bates", "character": "Evelyn Couch", "id": 8534, "credit_id": "52fe4306c3a36847f8034c9f", "cast_id": 1, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 0}, {"name": "Mary-Louise Parker", "character": "Ruth Jamison", "id": 18248, "credit_id": "52fe4306c3a36847f8034ca3", "cast_id": 3, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 2}, {"name": "Jessica Tandy", "character": "Ninny Threadgoode", "id": 5698, "credit_id": "52fe4306c3a36847f8034ca7", "cast_id": 4, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 3}, {"name": "Cicely Tyson", "character": "Sipsey", "id": 18249, "credit_id": "52fe4306c3a36847f8034cab", "cast_id": 5, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 4}, {"name": "Mary Stuart Masterson", "character": "Idgie Threadgoode", "id": 31140, "credit_id": "52fe4306c3a36847f8034cc1", "cast_id": 10, "profile_path": "/cUsInuGkiBVcKIRJMRsmD52Sxx5.jpg", "order": 5}, {"name": "Chris O'Donnell", "character": "Buddy Threadgoode", "id": 5577, "credit_id": "52fe4306c3a36847f8034ccb", "cast_id": 12, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 6}, {"name": "Stan Shaw", "character": "Big George", "id": 16936, "credit_id": "5305afc492514134881741bf", "cast_id": 13, "profile_path": "/2KUPUQQFmc8Zyzf16uaiYmVrNvX.jpg", "order": 7}, {"name": "Gailard Sartain", "character": "Ed Couch", "id": 2886, "credit_id": "5305afcc925141348514c9b9", "cast_id": 14, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 8}, {"name": "Timothy Scott", "character": "Smokey Lonesome", "id": 83411, "credit_id": "5305afde9251413494182dbf", "cast_id": 15, "profile_path": "/yB5RGTuVXGfFBnlduvgSA0kT68m.jpg", "order": 9}, {"name": "Gary Basaraba", "character": "Grady Kilgore", "id": 96228, "credit_id": "5305afe9925141349a15e1a6", "cast_id": 16, "profile_path": "/mF3JQEIAUDIfNfrNdiAuh2ohFow.jpg", "order": 10}, {"name": "Lois Smith", "character": "Mama Threadgoode", "id": 2207, "credit_id": "5305aff29251413488174498", "cast_id": 17, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 11}, {"name": "Jo Harvey Allen", "character": "Woman's Awareness Teacher", "id": 71561, "credit_id": "5305affd925141349a15e20e", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Fannie Flagg", "character": "Teacher", "id": 18251, "credit_id": "5305b00c92514134a215559b", "cast_id": 19, "profile_path": "/nelYB0M6WvF7uwArMwhYJZZkyjv.jpg", "order": 13}, {"name": "Suzi Bass", "character": "nurse", "id": 1448835, "credit_id": "551d8bd2925141374f0008db", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Tom Even", "character": "Judge", "id": 1448920, "credit_id": "551dc55a925141374f0010a2", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Afton Smith", "character": "Leona Threadgoode", "id": 1448921, "credit_id": "551dc617925141173f000c46", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "Jon Avnet", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034cb1", "profile_path": "/ckcE5lD7KNCh6iYHwCbfbs4r2y2.jpg", "id": 18250}], "vote_average": 7.1, "runtime": 130}, "1634": {"poster_path": "/5Os6y44EBABDl55oM6Fu3g1bCsU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 153698625, "overview": "When a boy learns that a beloved killer whale is to be killed by the aquarium owners, the boy risks everything to free the whale.", "video": false, "id": 1634, "genres": [{"id": 12, "name": "Adventure"}, {"id": 10751, "name": "Family"}], "title": "Free Willy", "tagline": "How far would you go for a friend?", "vote_count": 87, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o0dT5gJscrmt0etGcXEJgIDsjMN.jpg", "poster_path": "/3M2Q9ZDTyFBfi3ohz2gizFmnoL0.jpg", "id": 9328, "name": "Free Willy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106965", "adult": false, "backdrop_path": "/7CNgefk746czQzTVqSuf8yYQxOS.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Canal+", "id": 5358}, {"name": "Regency Enterprises", "id": 508}, {"name": "Alcor Films", "id": 644}, {"name": "Donner/Shuler-Donner Productions", "id": 23397}], "release_date": "1993-07-16", "popularity": 1.0054587038446, "original_title": "Free Willy", "budget": 20000000, "cast": [{"name": "Jason James Richter", "character": "Jesse", "id": 18259, "credit_id": "52fe4306c3a36847f8034d41", "cast_id": 11, "profile_path": "/sdFFQNefNEfiFiyIL8Sz6IweUkM.jpg", "order": 0}, {"name": "Lori Petty", "character": "Rae Lindley", "id": 15309, "credit_id": "52fe4306c3a36847f8034d45", "cast_id": 12, "profile_path": "/u2D3zteSlOj4zLp7jBcGqQVBsR1.jpg", "order": 1}, {"name": "August Schellenberg", "character": "Randolph Johnson", "id": 18260, "credit_id": "52fe4306c3a36847f8034d49", "cast_id": 13, "profile_path": "/iZ7dQ3JMdrWoUyh4vB8vOxhqoSI.jpg", "order": 2}, {"name": "Michael Madsen", "character": "Glen Greenwood", "id": 147, "credit_id": "52fe4306c3a36847f8034d4d", "cast_id": 14, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 3}, {"name": "Jayne Atkinson", "character": "Annie Greenwood", "id": 18261, "credit_id": "52fe4306c3a36847f8034d51", "cast_id": 15, "profile_path": "/Ae4wkn9x4JABoFWlNtdABYv2uol.jpg", "order": 4}, {"name": "Michael Ironside", "character": "Dial", "id": 11086, "credit_id": "52fe4306c3a36847f8034d55", "cast_id": 16, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 5}, {"name": "Richard Riehle", "character": "Wade", "id": 18262, "credit_id": "52fe4306c3a36847f8034d59", "cast_id": 17, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 6}, {"name": "Mykelti Williamson", "character": "Dwight Mercer", "id": 34, "credit_id": "52fe4306c3a36847f8034d63", "cast_id": 19, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 7}, {"name": "Michael Bacall", "character": "Perry", "id": 58744, "credit_id": "52fe4306c3a36847f8034d67", "cast_id": 20, "profile_path": "/vAqUOjmjY1ALiTRlYu7BI3yWmuK.jpg", "order": 8}, {"name": "Danielle Harris", "character": "Gwenie", "id": 21320, "credit_id": "52fe4306c3a36847f8034d6b", "cast_id": 21, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 9}, {"name": "Isaiah Malone", "character": "Vector", "id": 1075075, "credit_id": "52fe4306c3a36847f8034d6f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Betsy Toll", "character": "Passerby #1", "id": 1075076, "credit_id": "52fe4306c3a36847f8034d73", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Rob Sample", "character": "Passerby #2", "id": 1075077, "credit_id": "52fe4306c3a36847f8034d77", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Merrilyn Jones", "character": "Passerby #3", "id": 1075078, "credit_id": "52fe4306c3a36847f8034d7b", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Mickey Gaines", "character": "Waiter", "id": 1075079, "credit_id": "52fe4306c3a36847f8034d7f", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Simon Wincer", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034d07", "profile_path": "/wikOUmNuvWJHcOU8EHjFHXUhafQ.jpg", "id": 18254}], "vote_average": 5.4, "runtime": 112}, "1635": {"poster_path": "/erprD7GIkvZz2KM4Z35eyTJKZMI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162949164, "overview": "Lincoln Six-Echo is a resident of a seemingly Utopian but contained facility in the year 2019. Like all of the inhabitants of this carefully controlled environment, Lincoln hopes to be chosen to go to the \"The Island\" - reportedly the last uncontaminated spot on the planet. But Lincoln soon discovers that everything about his existence is a lie. He and all of the other inhabitants of the facility are actually human clones. Lincoln makes a daring escape with a beautiful fellow resident named Jordan Two-Delta. Relentlessly pursued by the forces of the sinister institute that once housed them, Lincoln and Jordan engage in a race for their lives to literally meet their makers.", "video": false, "id": 1635, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Island", "tagline": "Your time will come...", "vote_count": 500, "homepage": "http://www.theisland-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0399201", "adult": false, "backdrop_path": "/tIhBqptRne64WgPMVOpkXvTPl8c.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Warner Bros.", "id": 6194}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2005-07-21", "popularity": 0.873324739173529, "original_title": "The Island", "budget": 126000000, "cast": [{"name": "Ewan McGregor", "character": "Lincoln Six Echo", "id": 3061, "credit_id": "52fe4306c3a36847f8034dd7", "cast_id": 5, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Jordan Two Delta", "id": 1245, "credit_id": "52fe4306c3a36847f8034e27", "cast_id": 21, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Djimon Hounsou", "character": "Albert Laurent", "id": 938, "credit_id": "52fe4306c3a36847f8034ddb", "cast_id": 7, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 2}, {"name": "Sean Bean", "character": "Dr. Merrick", "id": 48, "credit_id": "52fe4306c3a36847f8034ddf", "cast_id": 8, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "James 'Mac' McCord", "id": 884, "credit_id": "52fe4306c3a36847f8034de3", "cast_id": 9, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Michael Clarke Duncan", "character": "Starkweather Two Delta", "id": 61981, "credit_id": "52fe4306c3a36847f8034de7", "cast_id": 10, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 5}, {"name": "Ethan Phillips", "character": "Jones Three Echo", "id": 29445, "credit_id": "52fe4306c3a36847f8034e2b", "cast_id": 22, "profile_path": "/clvz59hE09gV2a3FYNBsjUPvPgz.jpg", "order": 6}, {"name": "Brian Stepanek", "character": "Gandu Three Echo", "id": 146391, "credit_id": "52fe4306c3a36847f8034e2f", "cast_id": 23, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 7}, {"name": "Noa Tishby", "character": "Community Announcer", "id": 154968, "credit_id": "52fe4306c3a36847f8034e33", "cast_id": 24, "profile_path": "/yqVIJsBE7f60zLxN7ka9JdNy2SE.jpg", "order": 8}, {"name": "Siobhan Flynn", "character": "Lima One Alpha", "id": 154684, "credit_id": "52fe4306c3a36847f8034e37", "cast_id": 25, "profile_path": "/AtVes0zJzEKaFs2mOnk8BihtZmS.jpg", "order": 9}, {"name": "Troy Blendell", "character": "Laurent Team Member", "id": 154742, "credit_id": "52fe4306c3a36847f8034e3b", "cast_id": 26, "profile_path": "/16XijhmyffniTB7X7DhmKnekNP.jpg", "order": 10}, {"name": "Jamie McBride", "character": "Laurent Team Member", "id": 18053, "credit_id": "52fe4306c3a36847f8034e3f", "cast_id": 27, "profile_path": "/AduUFJhXPzR6WvYV5RyBS56YdKB.jpg", "order": 11}, {"name": "Kevin McCorkle", "character": "Laurent Team Member", "id": 91658, "credit_id": "52fe4306c3a36847f8034e43", "cast_id": 28, "profile_path": "/9AHkmDvct03YJN8Wes3rsowZMOK.jpg", "order": 12}, {"name": "Gary Nickens", "character": "Laurent Team Member", "id": 1286657, "credit_id": "52fe4306c3a36847f8034e47", "cast_id": 29, "profile_path": "/zFi87EEyy24d2NdZOoORWcwgeYi.jpg", "order": 13}, {"name": "Kathleen Rose Perkins", "character": "Laurent Team Member", "id": 149334, "credit_id": "52fe4306c3a36847f8034e4b", "cast_id": 30, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 14}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034dc1", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.4, "runtime": 136}, "1636": {"poster_path": "/wNCPhozZKIFXf9gjdckDHFAADbS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90383208, "overview": "Elliot Richardson, suicidal techno geek, is given seven wishes to turn his life around when he meets up with a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil must put her own little twist on each his fantasies.", "video": false, "id": 1636, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Bedazzled", "tagline": "Meet the Devil. She's giving Elliott seven wishes. But not a chance in Hell.", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0230030", "adult": false, "backdrop_path": "/wWXpqD4DpYu8YYJXbdhc1xGvkN0.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2000-10-19", "popularity": 1.46736857021151, "original_title": "Bedazzled", "budget": 48000000, "cast": [{"name": "Elizabeth Hurley", "character": "The Devil", "id": 13918, "credit_id": "52fe4306c3a36847f8034ea3", "cast_id": 5, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 0}, {"name": "Brendan Fraser", "character": "Elliot", "id": 18269, "credit_id": "52fe4306c3a36847f8034ea7", "cast_id": 6, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 1}, {"name": "Frances O'Connor", "character": "Alison", "id": 1518, "credit_id": "52fe4306c3a36847f8034eab", "cast_id": 7, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 2}, {"name": "Orlando Jones", "character": "Daniel/Dan/Danny, Esteban, Beach Jock, Lamar Garrett, Dr. Ngegitigegitibaba", "id": 18270, "credit_id": "52fe4306c3a36847f8034eaf", "cast_id": 8, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 3}, {"name": "Paul Adelstein", "character": "Bob/Roberto/Beach Jock", "id": 17342, "credit_id": "52fe4306c3a36847f8034eb3", "cast_id": 9, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 4}, {"name": "Toby Huss", "character": "Jerry/Alejandro/Beach Jock/Jerry Turner", "id": 18271, "credit_id": "52fe4306c3a36847f8034eb7", "cast_id": 10, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 5}, {"name": "Gabriel Casseus", "character": "Angel", "id": 18272, "credit_id": "52fe4306c3a36847f8034ebb", "cast_id": 11, "profile_path": "/pAp9Rhl0X3kpNlk0ms0lDpQrPDF.jpg", "order": 6}, {"name": "Miriam Shor", "character": "Carol/Penthouse Hostess", "id": 18273, "credit_id": "52fe4307c3a36847f8034ebf", "cast_id": 12, "profile_path": "/4UG6dUvA9QVigbrqQxRIP3veLGy.jpg", "order": 7}, {"name": "Brian Doyle-Murray", "character": "Priest", "id": 1535, "credit_id": "52fe4307c3a36847f8034f17", "cast_id": 27, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 8}, {"name": "Jeff Doucette", "character": "Desk Sergeant", "id": 35367, "credit_id": "52fe4307c3a36847f8034f1b", "cast_id": 28, "profile_path": "/eqeJstBl5iRibx7KxT4SMsmA2QK.jpg", "order": 9}, {"name": "Aaron Lustig", "character": "Synedyne Supervisor", "id": 140237, "credit_id": "52fe4307c3a36847f8034f1f", "cast_id": 29, "profile_path": "/3Ay4BadhJtyTWxhOwxvryHkE3dj.jpg", "order": 10}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034e8d", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 5.4, "runtime": 93}, "9829": {"poster_path": "/hmjqDkvdsiRU5DchivRAL2D82rC.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76286096, "overview": "A real time account of the events on United Flight 93, one of the planes hijacked on 9/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.", "video": false, "id": 9829, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "United 93", "tagline": "September 11, 2001. Four planes were hijacked. Three of them reached their target. This is the story of the fourth.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0475276", "adult": false, "backdrop_path": "/nhcWkiaZb6xoMIJc4IkyyeI6WNs.jpg", "production_companies": [{"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Working Title Films", "id": 10163}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}], "release_date": "2006-04-28", "popularity": 0.773207592668825, "original_title": "United 93", "budget": 15000000, "cast": [{"name": "J.J. Johnson", "character": "Captain Jason Dahl", "id": 6569, "credit_id": "52fe4536c3a36847f80c24f9", "cast_id": 25, "profile_path": null, "order": 0}, {"name": "Polly Adams", "character": "Deborah Welsh", "id": 47538, "credit_id": "52fe4536c3a36847f80c24fd", "cast_id": 26, "profile_path": "/gCOMppcfjT2o3efRNylXnUMFtLM.jpg", "order": 1}, {"name": "Trish Gates", "character": "Sandra Bradshaw", "id": 59688, "credit_id": "52fe4536c3a36847f80c250d", "cast_id": 29, "profile_path": "/yttAtDyga7U3t3OsICsJBcfjhQN.jpg", "order": 2}, {"name": "Nancy McDoniel", "character": "Lorraine G. Bay", "id": 59689, "credit_id": "52fe4536c3a36847f80c2511", "cast_id": 30, "profile_path": "/wJAolA8rdvBJyPGqGekLexbjNBF.jpg", "order": 3}, {"name": "Opal Alladin", "character": "CeeCee Lyles", "id": 59686, "credit_id": "52fe4536c3a36847f80c2515", "cast_id": 31, "profile_path": "/6Az60ac11hAaEbrglgtGsoedrSc.jpg", "order": 4}, {"name": "Gary Commock", "character": "First Officer LeRoy Homer", "id": 59685, "credit_id": "52fe4536c3a36847f80c251d", "cast_id": 33, "profile_path": null, "order": 5}, {"name": "Starla Benford", "character": "Wanda Anita Green", "id": 59687, "credit_id": "52fe4536c3a36847f80c2519", "cast_id": 32, "profile_path": null, "order": 6}, {"name": "Susan Blommaert", "character": "Jane Folger", "id": 1913, "credit_id": "52fe4536c3a36847f80c2521", "cast_id": 34, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 7}, {"name": "David Alan Basche", "character": "Todd Beamer", "id": 59690, "credit_id": "52fe4536c3a36847f80c2525", "cast_id": 35, "profile_path": "/vICP7XLQ1JEbf51WtcX1mnzB9x9.jpg", "order": 8}, {"name": "Richard Bekins", "character": "William Joseph Cashman", "id": 59691, "credit_id": "52fe4536c3a36847f80c2529", "cast_id": 36, "profile_path": "/zNn7lSWpuiWIUriG48GfO6OzSLS.jpg", "order": 9}, {"name": "Christian Clemenson", "character": "Thomas E. Burnett, Jr.", "id": 41517, "credit_id": "52fe4536c3a36847f80c252d", "cast_id": 37, "profile_path": "/kOBGt4dTtOSHoR2QzRTIOlGpO0V.jpg", "order": 10}, {"name": "Liza Col\u00f3n-Zayas", "character": "Waleska Martinez", "id": 59693, "credit_id": "52fe4536c3a36847f80c2531", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Ray Charleson", "character": "Joseph DeLuca", "id": 59692, "credit_id": "52fe4536c3a36847f80c2535", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Denny Dillon", "character": "Colleen Fraser", "id": 59695, "credit_id": "52fe4536c3a36847f80c2539", "cast_id": 40, "profile_path": "/rc67RDrAKtN0qWBkB2AzXAxztHr.jpg", "order": 13}, {"name": "Peter Hermann", "character": "Jeremy Glick", "id": 50117, "credit_id": "52fe4536c3a36847f80c253d", "cast_id": 41, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 14}, {"name": "Lorna Dallas", "character": "Linda Gronlund", "id": 59694, "credit_id": "52fe4536c3a36847f80c2541", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Kate Jennings Grant", "character": "Lauren Catuzzi Grandcolas", "id": 59697, "credit_id": "52fe4536c3a36847f80c2545", "cast_id": 43, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 16}, {"name": "Trieste Kelly Dunn", "character": "Deora Frances Bodley", "id": 59696, "credit_id": "52fe4536c3a36847f80c2549", "cast_id": 44, "profile_path": "/cS5GnzuM7Le5ihYSY8RxGvvxL7J.jpg", "order": 17}, {"name": "Tara Hugo", "character": "Kristin White Gould", "id": 59698, "credit_id": "52fe4536c3a36847f80c254d", "cast_id": 45, "profile_path": null, "order": 18}, {"name": "Marceline Hugot", "character": "Georgine Rose Corrigan", "id": 54124, "credit_id": "52fe4536c3a36847f80c2551", "cast_id": 46, "profile_path": "/7WxTQBruJR8IqKZ5ui6D4kPH1Yy.jpg", "order": 19}, {"name": "Khalid Abdalla", "character": "Ziad Jarrah", "id": 53480, "credit_id": "52fe4536c3a36847f80c255b", "cast_id": 48, "profile_path": "/hGeH9kjx7vRxeLi7yTz8zxPcRMF.jpg", "order": 20}, {"name": "Olivia Thirlby", "character": "Nicole Carol Miller", "id": 52442, "credit_id": "52fe4536c3a36847f80c2565", "cast_id": 50, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 21}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe4535c3a36847f80c2483", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 6.6, "runtime": 111}, "1639": {"poster_path": "/iHktqeAGoJpENiiuXfsXaHmhr7D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164508066, "overview": "Sandra Bullock and Jason Patric star as a young couple whose dream cruise turns to terror when a lunatic computer genius (Willem Dafoe) sets a new course for destruction.", "video": false, "id": 1639, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Speed 2: Cruise Control", "tagline": "As the stakes get higher, the ride gets even faster.", "vote_count": 114, "homepage": "", "belongs_to_collection": {"backdrop_path": "/75mSNcKIkfZSjXDgytC8UFe6vBl.jpg", "poster_path": "/nK6q8iJYl39vVq8vmwR78CUDQp0.jpg", "id": 43064, "name": "Speed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120179", "adult": false, "backdrop_path": "/uWsnvyQjD5QIbBzgDce20gYwCZG.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1997-06-12", "popularity": 0.536780927463135, "original_title": "Speed 2: Cruise Control", "budget": 160000000, "cast": [{"name": "Sandra Bullock", "character": "Annie Porter", "id": 18277, "credit_id": "52fe4307c3a36847f8034fd3", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Jason Patric", "character": "Alex Shaw", "id": 12261, "credit_id": "52fe4307c3a36847f8034fd7", "cast_id": 2, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "John Geiger", "id": 5293, "credit_id": "52fe4307c3a36847f8034fdb", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Temuera Morrison", "character": "Juliano", "id": 7242, "credit_id": "52fe4307c3a36847f8034fdf", "cast_id": 4, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 3}, {"name": "Christine Firkins", "character": "Drew", "id": 18279, "credit_id": "52fe4307c3a36847f8034fe3", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Mike Hagerty", "character": "Harvey", "id": 15105, "credit_id": "52fe4307c3a36847f8034fe7", "cast_id": 6, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 5}, {"name": "Colleen Camp", "character": "Debbie", "id": 13023, "credit_id": "52fe4307c3a36847f8034feb", "cast_id": 7, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 6}, {"name": "Brian McCardie", "character": "Merced", "id": 18280, "credit_id": "52fe4307c3a36847f8034fef", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Joe Morton", "character": "Lt. Herb 'Mac' McMahon", "id": 3977, "credit_id": "54efb5a4c3a3686d58006896", "cast_id": 11, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 8}, {"name": "Michael O'Hagan", "character": "Supertanker Captain", "id": 53490, "credit_id": "54efb5d1c3a36869e50044b9", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Glenn Plummer", "character": "Maurice", "id": 2683, "credit_id": "54efb5f6925141795f006ec4", "cast_id": 13, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 10}, {"name": "Bo Svenson", "character": "Captain Pollard", "id": 30044, "credit_id": "54efb61d925141796e006b4f", "cast_id": 14, "profile_path": "/ow0pxYqX94ZmfKDCiMN2qzhtOe3.jpg", "order": 11}, {"name": "Kimmy Robertson", "character": "Liza (Cruise Director)", "id": 6727, "credit_id": "54efb64ec3a3682e9700004a", "cast_id": 15, "profile_path": "/84VDsSuF0F5HgLpP6OoqjGdVlrA.jpg", "order": 12}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f8034ff5", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 4.4, "runtime": 121}, "1640": {"poster_path": "/pG8LL4LYMCr5uikhx9rewrW8352.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98410061, "overview": "Los Angeles citizens with vastly separate lives collide in interweaving stories of race, loss and redemption.", "video": false, "id": 1640, "genres": [{"id": 18, "name": "Drama"}], "title": "Crash", "tagline": "You think you know who you are. You have no idea.", "vote_count": 378, "homepage": "http://www.crashfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0375679", "adult": false, "backdrop_path": "/lhkU86q5cszZkca9MVQLMvUAE6m.jpg", "production_companies": [{"name": "Yari Film Group", "id": 2448}, {"name": "Blackfriars Bridge Films", "id": 2087}, {"name": "Bob Yari Productions", "id": 12260}, {"name": "ApolloProScreen Filmproduktion", "id": 19528}, {"name": "Bull's Eye Entertainment", "id": 25432}, {"name": "DEJ Productions", "id": 25433}, {"name": "Harris Company", "id": 25434}], "release_date": "2004-09-10", "popularity": 0.670102419670227, "original_title": "Crash", "budget": 6500000, "cast": [{"name": "Sandra Bullock", "character": "Jean Cabot", "id": 18277, "credit_id": "52fe4307c3a36847f803503d", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Don Cheadle", "character": "Det. Graham Waters", "id": 1896, "credit_id": "52fe4307c3a36847f8035041", "cast_id": 4, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Officer John Ryan", "id": 2876, "credit_id": "52fe4307c3a36847f8035049", "cast_id": 8, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Daniel", "id": 454, "credit_id": "52fe4307c3a36847f8035045", "cast_id": 7, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Jennifer Esposito", "character": "Ria", "id": 18285, "credit_id": "52fe4307c3a36847f803504d", "cast_id": 10, "profile_path": "/faY5fwjsJ8da3wJWSE7kQ3MPhgz.jpg", "order": 4}, {"name": "Brendan Fraser", "character": "Rick Cabot", "id": 18269, "credit_id": "52fe4307c3a36847f8035051", "cast_id": 11, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 5}, {"name": "Nona Gaye", "character": "Karen", "id": 18286, "credit_id": "52fe4307c3a36847f8035055", "cast_id": 12, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 6}, {"name": "Terrence Howard", "character": "Cameron Thayer", "id": 18288, "credit_id": "52fe4307c3a36847f8035059", "cast_id": 14, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 7}, {"name": "Ludacris", "character": "Anthony", "id": 8171, "credit_id": "52fe4307c3a36847f803505d", "cast_id": 15, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 8}, {"name": "Thandie Newton", "character": "Christine Thayer", "id": 9030, "credit_id": "52fe4307c3a36847f8035061", "cast_id": 16, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 9}, {"name": "Ashlyn Sanchez", "character": "Lara", "id": 18290, "credit_id": "52fe4307c3a36847f8035065", "cast_id": 18, "profile_path": "/flE8FT2vKQDCHp1C3sTB17bZQEg.jpg", "order": 10}, {"name": "Marina Sirtis", "character": "Shereen", "id": 2393, "credit_id": "52fe4307c3a36847f8035069", "cast_id": 19, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 11}, {"name": "Larenz Tate", "character": "Peter Waters", "id": 18291, "credit_id": "52fe4307c3a36847f803506d", "cast_id": 20, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 12}, {"name": "Beverly Todd", "character": "Graham's Mother", "id": 18292, "credit_id": "52fe4307c3a36847f8035071", "cast_id": 21, "profile_path": "/zAorVHFs2eP3YQ91pNbDeMwfymi.jpg", "order": 13}, {"name": "Kathleen York", "character": "Officer Johnson", "id": 18293, "credit_id": "52fe4307c3a36847f8035075", "cast_id": 23, "profile_path": "/9tpL5j3Ba6yewjIwohTQxZtt1gM.jpg", "order": 14}, {"name": "Keith David", "character": "Lt. Dixon", "id": 65827, "credit_id": "52fe4307c3a36847f8035079", "cast_id": 29, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 15}, {"name": "William Fichtner", "character": "Flanagan", "id": 886, "credit_id": "52fe4307c3a36847f803507d", "cast_id": 32, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 16}, {"name": "Daniel Dae Kim", "character": "Park", "id": 18307, "credit_id": "52fe4307c3a36847f8035081", "cast_id": 36, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 17}, {"name": "Ryan Phillippe", "character": "Officer Tom Hansen", "id": 11864, "credit_id": "52fe4307c3a36847f8035085", "cast_id": 37, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 18}, {"name": "Karina Arroyave", "character": "Elizabeth", "id": 18282, "credit_id": "53a1c0940e0a266ff7000207", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Dato Bakhtadze", "character": "Lucien", "id": 18283, "credit_id": "53a1c0bc0e0a266fe60001ff", "cast_id": 44, "profile_path": "/icfjC4D6saHKCMXhoEUoK3mngzL.jpg", "order": 20}, {"name": "Art Chudabala", "character": "Ken Ho", "id": 18296, "credit_id": "53a1c0e60e0a266ffa000218", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Sean Cory", "character": "Motorcycle Cop", "id": 1331784, "credit_id": "53a1c1150e0a266ffe0001fe", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Tony Danza", "character": "Fred", "id": 18298, "credit_id": "53a1c1440e0a266fe6000210", "cast_id": 47, "profile_path": "/zuGqT0ZJQFm0GMUnEa32jYu75Fy.jpg", "order": 23}, {"name": "Loretta Devine", "character": "Shaniqua Johnson", "id": 18284, "credit_id": "53a1c1740e0a266ffa00022e", "cast_id": 48, "profile_path": "/zLQFwQTFtHkb8sbFdkPNamFI7jv.jpg", "order": 24}, {"name": "Ime Etuk", "character": "Georgie", "id": 18299, "credit_id": "53a1c1a60e0a266ff7000244", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Eddie J. Fernandez", "character": "Officer Gomez", "id": 18300, "credit_id": "53a1c1d20e0a266ff3000202", "cast_id": 50, "profile_path": null, "order": 26}, {"name": "William Fichtner", "character": "Flanagan", "id": 886, "credit_id": "53a1c1f80e0a266ffa000246", "cast_id": 51, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 27}, {"name": "Howard Fong", "character": "Store Owner", "id": 18303, "credit_id": "53a1c2160e0a266ffa00024f", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Billy Gallo", "character": "Officer Hill", "id": 18304, "credit_id": "53a1c23e0e0a266ffe000240", "cast_id": 53, "profile_path": null, "order": 29}, {"name": "Ken Garito", "character": "Bruce", "id": 18287, "credit_id": "53a1c2600e0a266ff3000212", "cast_id": 54, "profile_path": null, "order": 30}, {"name": "Octavio G\u00f3mez Berr\u00edos", "character": "Hispanic Passenger", "id": 130732, "credit_id": "53a1c2870e0a266fec000271", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "James Haggis", "character": "Lara's Friend", "id": 1331790, "credit_id": "53a1c2a50e0a266ff300021d", "cast_id": 56, "profile_path": null, "order": 32}, {"name": "Sylva Kelegian", "character": "Nurse Hodges", "id": 61830, "credit_id": "53a1c2cd0e0a266ff3000224", "cast_id": 57, "profile_path": "/iY60KVSUGrItgKCMsJqarczgzqU.jpg", "order": 33}, {"name": "Jayden Lund", "character": "Security Guard", "id": 154932, "credit_id": "53a1c32e0e0a266ff3000229", "cast_id": 59, "profile_path": null, "order": 35}, {"name": "Jack McGee", "character": "Gun Store Owner", "id": 10489, "credit_id": "53a1c34f0e0a266ff700027f", "cast_id": 60, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 36}, {"name": "Amanda Moresco", "character": "First Assistant Director", "id": 1110185, "credit_id": "53a1c36a0e0a266fef000275", "cast_id": 61, "profile_path": null, "order": 37}, {"name": "Martin Norseman", "character": "Conklin", "id": 1331791, "credit_id": "53a1c39b0e0a266ff7000290", "cast_id": 62, "profile_path": null, "order": 38}, {"name": "Joe Ordaz", "character": "Hispanic Driver", "id": 1331792, "credit_id": "53a1c3b80e0a266fec000295", "cast_id": 63, "profile_path": null, "order": 39}, {"name": "Greg Joung Paik", "character": "Choi", "id": 191198, "credit_id": "53a1c3d60e0a266ffe000270", "cast_id": 64, "profile_path": "/n3jIHCx5LAbfAVZfOW4WMxjKKui.jpg", "order": 40}, {"name": "Yomi Perry", "character": "Maria", "id": 18289, "credit_id": "53a1c4000e0a266fe600026e", "cast_id": 65, "profile_path": null, "order": 41}, {"name": "Alexis Rhee", "character": "Kim Lee", "id": 58930, "credit_id": "53a1c43e0e0a266fec0002aa", "cast_id": 66, "profile_path": "/vu4RAoiD4eXXt0KRA882IwmZQAE.jpg", "order": 42}, {"name": "Molly Schaffer", "character": "Woman at Locksmith's", "id": 1331793, "credit_id": "53a1c4690e0a266fec0002b1", "cast_id": 67, "profile_path": null, "order": 43}, {"name": "Paul E. Short", "character": "Officer Stone", "id": 1331794, "credit_id": "53a1c4950e0a266ff3000266", "cast_id": 68, "profile_path": null, "order": 44}, {"name": "Bahar Soomekh", "character": "Dorri", "id": 2677, "credit_id": "53a1c4c00e0a266ffe00028e", "cast_id": 69, "profile_path": "/l3tlQiTmny4jjWidesht3nlt6sW.jpg", "order": 45}, {"name": "Allan Steele", "character": "Paramedic", "id": 1331795, "credit_id": "53a1c4dc0e0a266fe600028b", "cast_id": 70, "profile_path": null, "order": 46}, {"name": "Kate Super", "character": "Receptionist", "id": 1331796, "credit_id": "53a1c4f40e0a266fec0002c6", "cast_id": 71, "profile_path": null, "order": 47}, {"name": "Glenn Taranto", "character": "Country DJ (voice)", "id": 18305, "credit_id": "53a1c51e0e0a266ff70002ce", "cast_id": 72, "profile_path": "/kZfmHgAOYHprU9Iq30W7oTx9M7Y.jpg", "order": 48}, {"name": "Shaun Toub", "character": "Farhad", "id": 17857, "credit_id": "53a1c5490e0a266fe600029f", "cast_id": 73, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 49}, {"name": "Curt Clendenin", "character": "Carjack Witness (uncredited)", "id": 1263449, "credit_id": "53a1c5780e0a266fec0002df", "cast_id": 74, "profile_path": null, "order": 50}, {"name": "Alastair Douglas", "character": "Young Peter (uncredited)", "id": 1331797, "credit_id": "53a1c5950e0a266ff70002d8", "cast_id": 75, "profile_path": null, "order": 51}, {"name": "Nicholas George Stark", "character": "Jamal (uncredited)", "id": 1331798, "credit_id": "53a1c5b00e0a266ff300028d", "cast_id": 76, "profile_path": null, "order": 52}, {"name": "Bruce Kirby", "character": "Pop Ryan", "id": 3042, "credit_id": "55127c71c3a3686161000f3a", "cast_id": 77, "profile_path": null, "order": 53}], "directors": [{"name": "Paul Haggis", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f8035033", "profile_path": "/v2MadHJVrBAv0tEgs9H9PJ9y50z.jpg", "id": 455}], "vote_average": 7.0, "runtime": 112}, "9833": {"poster_path": "/oJc4DICMlyowwc45j0SQBmvGdTe.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51225796, "overview": "Deformed since birth, a bitter man known only as the Phantom lives in the sewers underneath the Paris Opera House. He falls in love with the obscure chorus singer Christine, and privately tutors her while terrorizing the rest of the opera house and demanding Christine be given lead roles. Things get worse when Christine meets back up with her childhood acquaintance Raoul and the two fall in love", "video": false, "id": 9833, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Phantom of the Opera", "tagline": "The classic musical comes to the big screen for the first time.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0293508", "adult": false, "backdrop_path": "/haD1lZ822cAi3DPiyGs4r5Y7vi6.jpg", "production_companies": [{"name": "Really Useful Films", "id": 38504}, {"name": "Odyssey Entertainment", "id": 3539}, {"name": "Warner Bros.", "id": 6194}, {"name": "Scion Films", "id": 7419}], "release_date": "2004-12-10", "popularity": 0.960714644287957, "original_title": "The Phantom of the Opera", "budget": 55000000, "cast": [{"name": "Gerard Butler", "character": "The Phantom", "id": 17276, "credit_id": "52fe4536c3a36847f80c27a9", "cast_id": 1, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Emmy Rossum", "character": "Christine Daa\u00e9", "id": 4730, "credit_id": "52fe4536c3a36847f80c27ad", "cast_id": 2, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 1}, {"name": "Patrick Wilson", "character": "Raoul, Vicomte de Chagny", "id": 17178, "credit_id": "52fe4536c3a36847f80c27b1", "cast_id": 3, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 2}, {"name": "Miranda Richardson", "character": "Madame Giry", "id": 8436, "credit_id": "52fe4537c3a36847f80c27b5", "cast_id": 4, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 3}, {"name": "Minnie Driver", "character": "Carlotta", "id": 6613, "credit_id": "52fe4537c3a36847f80c27cb", "cast_id": 10, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 4}, {"name": "Ciar\u00e1n Hinds", "character": "Firmin", "id": 8785, "credit_id": "52fe4537c3a36847f80c27cf", "cast_id": 11, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 5}, {"name": "Simon Callow", "character": "Andre", "id": 4001, "credit_id": "52fe4537c3a36847f80c27d3", "cast_id": 12, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 6}, {"name": "Victor McGuire", "character": "Piangi", "id": 4318, "credit_id": "52fe4537c3a36847f80c27d7", "cast_id": 13, "profile_path": "/czEQ0XdYIURxBfdiAdGXS6KAWea.jpg", "order": 7}, {"name": "Jennifer Ellison", "character": "Meg Giry", "id": 106049, "credit_id": "52fe4537c3a36847f80c27e1", "cast_id": 15, "profile_path": "/66LQrmv0L2MUkxqcToEM4moJQlp.jpg", "order": 8}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c27bb", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.9, "runtime": 143}, "1642": {"poster_path": "/gKDNaAFzT21cSVeKQop7d1uhoSp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110627965, "overview": "Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a CD-ROM game, she discovers a conspiracy that will turn her life upside down. Soon, her records have been erased, and she's been given a new identity and a police record. Her vacation is ruined as she struggles to determine why she's been deleted from society.", "video": false, "id": 1642, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Net", "tagline": "Her driver's license. Her credit cards. Her bank accounts. Her identity. DELETED.", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 328073, "name": "The Net Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0113957", "adult": false, "backdrop_path": "/uBqa8nPu3HUtfSHtWqo7VhYG0Uc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1995-07-28", "popularity": 1.01359357341186, "original_title": "The Net", "budget": 22000000, "cast": [{"name": "Sandra Bullock", "character": "Angela Bennett/Ruth Marx", "id": 18277, "credit_id": "52fe4307c3a36847f8035193", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Jeremy Northam", "character": "Jack Devlin", "id": 18325, "credit_id": "52fe4307c3a36847f8035197", "cast_id": 2, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 1}, {"name": "Dennis Miller", "character": "Dr. Alan Champion", "id": 18326, "credit_id": "52fe4307c3a36847f803519b", "cast_id": 3, "profile_path": "/e1SGDAB2IArMV8oiTceRYD4DoGS.jpg", "order": 2}, {"name": "Wendy Gazelle", "character": "Ruth Marx", "id": 18327, "credit_id": "52fe4307c3a36847f803519f", "cast_id": 4, "profile_path": "/yTyLJT229mZQv7toPymO0QfAfsv.jpg", "order": 3}, {"name": "Ken Howard", "character": "Michael Bergstrom", "id": 18328, "credit_id": "52fe4307c3a36847f80351a3", "cast_id": 5, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 4}, {"name": "Diane Baker", "character": "Mrs. Bennett", "id": 6930, "credit_id": "52fe4307c3a36847f80351a7", "cast_id": 6, "profile_path": "/pExT2sv2tCRBxNzGKKNf2cdYI2q.jpg", "order": 5}, {"name": "Ray McKinnon", "character": "Dale Hessman", "id": 1472, "credit_id": "52fe4307c3a36847f80351cf", "cast_id": 13, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 6}, {"name": "Daniel Schorr", "character": "WNN Anchor", "id": 553720, "credit_id": "52fe4307c3a36847f80351d3", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "L. Scott Caldwell", "character": "Public Defender", "id": 29051, "credit_id": "52fe4307c3a36847f80351d7", "cast_id": 15, "profile_path": "/p5W9yIDt269Tb4KMMKI8AeO4jJi.jpg", "order": 8}, {"name": "Robert Gossett", "character": "Ben Phillips", "id": 15251, "credit_id": "52fe4307c3a36847f80351db", "cast_id": 16, "profile_path": "/mm1wgwRa14pKtUcgr7gRlmnh9As.jpg", "order": 9}, {"name": "Kristina Krofft", "character": "Nurse #1", "id": 196493, "credit_id": "52fe4307c3a36847f80351df", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Juan Garc\u00eda", "character": "Resort Desk Clerk", "id": 1066358, "credit_id": "52fe4307c3a36847f80351e3", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Tony Perez", "character": "Mexican Doctor", "id": 78498, "credit_id": "52fe4307c3a36847f80351e7", "cast_id": 19, "profile_path": "/xuVOZ1a9WvhSNyr2t89gu8W2QHx.jpg", "order": 12}, {"name": "Gene Kirkwood", "character": "Stan Whiteman", "id": 44827, "credit_id": "52fe4307c3a36847f80351eb", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Christopher Darga", "character": "Cop", "id": 75923, "credit_id": "52fe4307c3a36847f80351ef", "cast_id": 21, "profile_path": "/idem44Fq6Iisw46eb9bllpYHdFc.jpg", "order": 14}, {"name": "Charles Winkler", "character": "Cop", "id": 16487, "credit_id": "52fe4307c3a36847f80351f3", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Julia Pearlstein", "character": "Nurse #2", "id": 156788, "credit_id": "52fe4307c3a36847f80351f7", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Rick Snyder", "character": "Russ Melbourne", "id": 182347, "credit_id": "52fe4307c3a36847f80351fb", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Gerald Berns ", "character": "Jeff Gregg", "id": 543390, "credit_id": "52fe4307c3a36847f80351ff", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Tannis Benedict", "character": "Elevator Woman", "id": 92110, "credit_id": "52fe4307c3a36847f8035203", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Vaughn Armstrong", "character": "Trooper", "id": 103804, "credit_id": "52fe4307c3a36847f8035207", "cast_id": 27, "profile_path": "/2QjkFW0gOEqhdieranOyAPblxjU.jpg", "order": 20}, {"name": "Wren T. Brown", "character": "Trooper", "id": 55965, "credit_id": "52fe4307c3a36847f803520b", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Lynn Blades", "character": "Remote Reporter", "id": 155973, "credit_id": "52fe4307c3a36847f803520f", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Israel Juarbe", "character": "Thief", "id": 157488, "credit_id": "52fe4307c3a36847f8035213", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Julia Vera", "character": "Mexican Nun", "id": 168881, "credit_id": "52fe4307c3a36847f8035217", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Lewis Dix Jr.", "character": "FedEx man", "id": 193126, "credit_id": "52fe4307c3a36847f803521b", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Lili Flanders", "character": "Embassy Worker", "id": 1077891, "credit_id": "52fe4307c3a36847f803521f", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Adam Winkler", "character": "Computer Nerd", "id": 1077892, "credit_id": "52fe4307c3a36847f8035223", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Brian E. Frankish", "character": "Shuttle Driver", "id": 1077893, "credit_id": "52fe4307c3a36847f8035227", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Wanda-Lee Evans", "character": "Desk Sergeant", "id": 1077894, "credit_id": "52fe4307c3a36847f803522b", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "David Winkler", "character": "Computer Technician", "id": 16488, "credit_id": "52fe4307c3a36847f803522f", "cast_id": 37, "profile_path": null, "order": 30}], "directors": [{"name": "Irwin Winkler", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f80351ad", "profile_path": "/chJjLXD7PlFhuyeverNCgemIAAC.jpg", "id": 11472}], "vote_average": 5.8, "runtime": 114}, "83564": {"poster_path": "/py4pMp6QlKUjjzCk8icZ2GrYw3Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young boy comes of age in the most peculiar of circumstances. Tonight is the very first time his Papa and Grandpa are taking him to work. In an old wooden boat they row far out to sea, and with no land in sight, they stop and wait. A big surprise awaits the boy as he discovers his family's most unusual line of work. Should he follow the example of his Papa, or his Grandpa? Will he be able to find his own way in the midst of their conflicting opinions and timeworn traditions?", "video": false, "id": 83564, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "La luna", "tagline": "A young boy discovers his family's most unusual line of work.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1957945", "adult": false, "backdrop_path": "/p4lpdTn3nW8nZBzyAU5kbb7PPBr.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2011-06-22", "popularity": 0.409067656526438, "original_title": "La luna", "budget": 0, "cast": [{"name": "Krista Sheffler", "character": "Bambino (voice)", "id": 929800, "credit_id": "52fe48aa9251416c910944b9", "cast_id": 1000, "profile_path": null, "order": 0}, {"name": "Tony Fucile", "character": "Pap\u00e0 (voice)", "id": 1260745, "credit_id": "52fe48aa9251416c910944db", "cast_id": 1006, "profile_path": null, "order": 1}, {"name": "Phil Sheridan", "character": "Nonno (voice)", "id": 1291314, "credit_id": "52fe48aa9251416c910944df", "cast_id": 1007, "profile_path": null, "order": 2}], "directors": [{"name": "Enrico Casarosa", "department": "Directing", "job": "Director", "credit_id": "52fe48aa9251416c910944bf", "profile_path": null, "id": 930567}], "vote_average": 8.0, "runtime": 7}, "1645": {"poster_path": "/sCHK5jHhRcrXZvZDekZXvRkDOHc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152266007, "overview": "A young lawyer defends a black man accused of murdering two men who raped his 10-year-old daughter, sparking a rebirth of the KKK.", "video": false, "id": 1645, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Time to Kill", "tagline": "Experience a time you'll never forget.", "vote_count": 110, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117913", "adult": false, "backdrop_path": "/b1cfBhhorGYNPbMVT6C9cHwxRr8.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1996-07-24", "popularity": 0.920514538020964, "original_title": "A Time to Kill", "budget": 40000000, "cast": [{"name": "Matthew McConaughey", "character": "Jake Tyler Brigance", "id": 10297, "credit_id": "52fe4308c3a36847f80353c7", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Sandra Bullock", "character": "Ellen Roark", "id": 18277, "credit_id": "52fe4308c3a36847f80353cb", "cast_id": 2, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Carl Lee Hailey", "id": 2231, "credit_id": "52fe4308c3a36847f80353cf", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Kevin Spacey", "character": "D.A. Rufus Buckley", "id": 1979, "credit_id": "52fe4308c3a36847f80353d3", "cast_id": 4, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Harry Rex Vonner", "id": 17485, "credit_id": "52fe4308c3a36847f80353d7", "cast_id": 5, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "Charles S. Dutton", "character": "Sheriff Ozzie Walls", "id": 17764, "credit_id": "52fe4308c3a36847f80353e3", "cast_id": 8, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 5}, {"name": "Brenda Fricker", "character": "Ethel Twitty", "id": 18345, "credit_id": "52fe4308c3a36847f80353e7", "cast_id": 9, "profile_path": "/z2ARJBvxE1mCwQ6XARTKvvPQySu.jpg", "order": 6}, {"name": "Donald Sutherland", "character": "Lucien Wilbanks", "id": 55636, "credit_id": "52fe4308c3a36847f80353db", "cast_id": 6, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 7}, {"name": "Kiefer Sutherland", "character": "Freddie Lee Cobb", "id": 2628, "credit_id": "52fe4308c3a36847f80353df", "cast_id": 7, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 8}, {"name": "Patrick McGoohan", "character": "Judge Omar Noose", "id": 2463, "credit_id": "53b7bfec0e0a2676c7007301", "cast_id": 32, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 9}, {"name": "Ashley Judd", "character": "Carla Brigance", "id": 15852, "credit_id": "52fe4308c3a36847f80353eb", "cast_id": 10, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 10}, {"name": "Rae'Ven Larrymore Kelly", "character": "Tonya Hailey", "id": 18346, "credit_id": "52fe4308c3a36847f80353ef", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Tonea Stewart", "character": "Gwen Hailey", "id": 18347, "credit_id": "52fe4308c3a36847f80353f3", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "John Diehl", "character": "Tim Nunley", "id": 4942, "credit_id": "52fe4308c3a36847f8035433", "cast_id": 23, "profile_path": "/hDUvgqpIv753skoeRGjVw6gYp7A.jpg", "order": 13}, {"name": "Chris Cooper", "character": "Deputy Dwayne Powell Looney", "id": 2955, "credit_id": "52fe4308c3a36847f8035437", "cast_id": 24, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 14}, {"name": "Nicky Katt", "character": "Billy Ray Cobb", "id": 18070, "credit_id": "52fe4308c3a36847f803543b", "cast_id": 25, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 15}, {"name": "Doug Hutchison", "character": "James Louis 'Pete' Willard", "id": 6806, "credit_id": "52fe4308c3a36847f803543f", "cast_id": 26, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 16}, {"name": "Kurtwood Smith", "character": "Stump Sisson", "id": 2115, "credit_id": "52fe4308c3a36847f8035443", "cast_id": 27, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 17}, {"name": "Tim Parati", "character": "Winston", "id": 65171, "credit_id": "52fe4308c3a36847f8035447", "cast_id": 28, "profile_path": "/qu3AMF9AXrAAXKI9MfdxZKW7mgm.jpg", "order": 18}, {"name": "Beth Grant", "character": "Cora Mae Cobb", "id": 5151, "credit_id": "52fe4308c3a36847f803544b", "cast_id": 29, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 19}, {"name": "Anthony Heald", "character": "Dr. Wilbert Rodeheaver", "id": 16293, "credit_id": "52fe4308c3a36847f803544f", "cast_id": 30, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 20}, {"name": "M. Emmet Walsh", "character": "Dr. Willard Tyrell 'W.T.' Bass (the Defense Psychologist)", "id": 588, "credit_id": "53b68a57c3a3685ec1002379", "cast_id": 31, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 21}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f80353f9", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.8, "runtime": 149}, "1646": {"poster_path": "/qOHFT2VcqrKqvha6sm8ptfESTJP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41170784, "overview": "A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.", "video": false, "id": 1646, "genres": [{"id": 18, "name": "Drama"}], "title": "Freedom Writers", "tagline": "Their story. Their world. Their future.", "vote_count": 54, "homepage": "http://www.freedomwriters.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0463998", "adult": false, "backdrop_path": "/hilAvXZyFhSo5akvH0QXHOZQdgD.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "MTV Films", "id": 746}], "release_date": "2007-01-05", "popularity": 0.358088751054915, "original_title": "Freedom Writers", "budget": 21000000, "cast": [{"name": "Hilary Swank", "character": "Erin Gruwell", "id": 448, "credit_id": "52fe4308c3a36847f803548b", "cast_id": 1, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 0}, {"name": "Patrick Dempsey", "character": "Scott Casey", "id": 18352, "credit_id": "52fe4308c3a36847f80354b3", "cast_id": 8, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Steve", "id": 349, "credit_id": "52fe4308c3a36847f80354b7", "cast_id": 9, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Imelda Staunton", "character": "Margaret Campbell", "id": 11356, "credit_id": "52fe4308c3a36847f80354bb", "cast_id": 10, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 3}, {"name": "April Lee Hernandez", "character": "Eva", "id": 18353, "credit_id": "52fe4308c3a36847f80354bf", "cast_id": 11, "profile_path": "/sz6D2AbuqlnNfGeiLovSMpfIiYf.jpg", "order": 4}, {"name": "Kristin Herrera", "character": "Gloria", "id": 35229, "credit_id": "52fe4308c3a36847f80354c3", "cast_id": 12, "profile_path": "/ahIoPAQVA2i2JkbfPH1DxogrTvM.jpg", "order": 5}, {"name": "Deance Wyatt", "character": "Jamal", "id": 35230, "credit_id": "52fe4308c3a36847f80354c7", "cast_id": 13, "profile_path": "/70u02iCK9I7mimAIAJ4QVSyjJSD.jpg", "order": 6}, {"name": "Gabriel Chavarria", "character": "Tito", "id": 35231, "credit_id": "52fe4308c3a36847f80354cb", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "John Benjamin Hickey", "character": "Brian Gelford", "id": 21179, "credit_id": "52fe4308c3a36847f80354cf", "cast_id": 15, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 8}, {"name": "Robert Wisdom", "character": "Dr. Carl Cohn", "id": 21505, "credit_id": "52fe4308c3a36847f80354d3", "cast_id": 16, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 9}, {"name": "Pat Carroll", "character": "Miep Gies", "id": 35232, "credit_id": "52fe4308c3a36847f80354d7", "cast_id": 17, "profile_path": "/u3VKH6kvq3giRZ7UJTaec262HHW.jpg", "order": 10}, {"name": "Will Morales", "character": "Paco", "id": 35233, "credit_id": "52fe4308c3a36847f80354db", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Ricardo Molina", "character": "Eva's Father", "id": 25912, "credit_id": "52fe4308c3a36847f80354df", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Angela Alvarado", "character": "Eva\u2019s Mother", "id": 22621, "credit_id": "52fe4308c3a36847f80354e3", "cast_id": 20, "profile_path": "/JwOg5CN5c7axePqVy9rYZ2oB4k.jpg", "order": 13}, {"name": "Tim Halligan", "character": "Principal Banning", "id": 12218, "credit_id": "52fe4308c3a36847f80354e7", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Palma Lawrence Reed", "character": "Grant's Mother", "id": 35234, "credit_id": "52fe4308c3a36847f80354eb", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Giovonnie Samuels", "character": "Victoria", "id": 35235, "credit_id": "52fe4308c3a36847f80354ef", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Hunter Parrish", "character": "Ben", "id": 35236, "credit_id": "52fe4308c3a36847f80354f3", "cast_id": 24, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 17}, {"name": "Vanetta Smith", "character": "Brandy", "id": 35237, "credit_id": "52fe4308c3a36847f80354f7", "cast_id": 25, "profile_path": "/Aur7jpPUVGTt8Ljr6KMSzKoHXPq.jpg", "order": 18}, {"name": "Jaclyn Ngan", "character": "Sindy", "id": 35238, "credit_id": "52fe4308c3a36847f80354fb", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Sergio Montalvo", "character": "Alejandro", "id": 35239, "credit_id": "52fe4308c3a36847f80354ff", "cast_id": 27, "profile_path": null, "order": 20}], "directors": [{"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f8035491", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}], "vote_average": 7.6, "runtime": 123}, "1647": {"poster_path": "/hQuFWLIKUwWUWYhk6KHsBOKKeHc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101191884, "overview": "A brilliant young CIA trainee is asked by his mentor to help find a mole in the Agency.", "video": false, "id": 1647, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Recruit", "tagline": "Trust. Betrayal. Deception. In the C.I.A. nothing is what it seems.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0292506", "adult": false, "backdrop_path": "/5ejNONf0Yr1CnlcJxuMBPa61DQm.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2003-01-25", "popularity": 0.63175838417151, "original_title": "The Recruit", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Walter Burke", "id": 1158, "credit_id": "52fe4308c3a36847f803557d", "cast_id": 20, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Colin Farrell", "character": "James Douglas Clayton", "id": 72466, "credit_id": "52fe4308c3a36847f8035581", "cast_id": 21, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Bridget Moynahan", "character": "Layla Moore", "id": 18354, "credit_id": "52fe4308c3a36847f8035529", "cast_id": 3, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 2}, {"name": "Gabriel Macht", "character": "Zack", "id": 16856, "credit_id": "52fe4308c3a36847f803552d", "cast_id": 4, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 3}, {"name": "Kenneth Mitchell", "character": "Alan", "id": 28868, "credit_id": "52fe4308c3a36847f803556d", "cast_id": 16, "profile_path": "/felhTbRf6awaxhmj2u0kAlpOd4f.jpg", "order": 4}, {"name": "Mike Realba", "character": "Ronnie", "id": 28869, "credit_id": "52fe4308c3a36847f8035571", "cast_id": 17, "profile_path": "/9VSNPVauGKQlV1cXENaUI60OoZH.jpg", "order": 5}, {"name": "Karl Pruner", "character": "Dennis Slayne", "id": 28870, "credit_id": "52fe4308c3a36847f8035575", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Eugene Lipinski", "character": "Husky Man", "id": 28871, "credit_id": "52fe4308c3a36847f8035579", "cast_id": 19, "profile_path": "/rhpOJsibsqA4SG71GcH0LMfnygd.jpg", "order": 7}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f8035533", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.9, "runtime": 115}, "1648": {"poster_path": "/b2yKJ1STPklVSRtso2Tg4TPXK7u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40485039, "overview": "Bill and Ted have spent so much time forming their rock band, The Wyld Stallyns, that they're flunking history. When Ted's dad threatens to send him away to military school, Bill and Ted realize it could mean the most heinous end of The Stallyns! Luckily, a guide from the future, Rufus, has come to them with a most bodacious solution.", "video": false, "id": 1648, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Bill & Ted's Excellent Adventure", "tagline": "History is about to be rewritten by two guys who can't spell.", "vote_count": 98, "homepage": "http://www.billandted.org/", "belongs_to_collection": {"backdrop_path": "/m7KWyG7VwXoPbwr3DgeDqed8qU0.jpg", "poster_path": "/e8ytcWY0r32q3RdNJDnv5KRh9hC.jpg", "id": 91746, "name": "Bill & Ted's Most Excellent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096928", "adult": false, "backdrop_path": "/ca925HbhdgTdjEs3VGg3SX0k86a.jpg", "production_companies": [{"name": "Nelson Entertainment", "id": 365}, {"name": "De Laurentiis Entertainment Group (DEG)", "id": 484}, {"name": "Orion Pictures", "id": 41}], "release_date": "1989-02-17", "popularity": 0.702506803820089, "original_title": "Bill & Ted's Excellent Adventure", "budget": 10000000, "cast": [{"name": "Keanu Reeves", "character": "Ted Logan", "id": 6384, "credit_id": "52fe4308c3a36847f80355cb", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Alex Winter", "character": "Bill S. Preston", "id": 18355, "credit_id": "52fe4308c3a36847f80355cf", "cast_id": 2, "profile_path": "/yHtymrjOTwB82EnpPgQjIgAXdTN.jpg", "order": 1}, {"name": "George Carlin", "character": "Rufus", "id": 15903, "credit_id": "52fe4308c3a36847f80355d9", "cast_id": 4, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 2}, {"name": "Dan Shor", "character": "Billy the Kid", "id": 2550, "credit_id": "52fe4308c3a36847f80355dd", "cast_id": 5, "profile_path": "/3howkcUGMpjGL2uyON5AlUnFJG8.jpg", "order": 3}, {"name": "Hal Landon Jr.", "character": "Captain Logan", "id": 14801, "credit_id": "52fe4308c3a36847f80355e1", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Amy Stock-Poynton", "character": "Missy Preston", "id": 18386, "credit_id": "52fe4308c3a36847f803562d", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "Terry Camilleri", "character": "Napoleon", "id": 18359, "credit_id": "52fe4308c3a36847f80355e5", "cast_id": 7, "profile_path": "/t1lVlizt1gXlVsCNNZqXO29rMnz.jpg", "order": 6}, {"name": "Tony Steedman", "character": "Socrates", "id": 18360, "credit_id": "52fe4308c3a36847f80355e9", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Rod Loomis", "character": "Dr. Sigmund Freud", "id": 18361, "credit_id": "52fe4308c3a36847f80355ed", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Bernie Casey", "character": "Mr. Ryan", "id": 10939, "credit_id": "52fe4308c3a36847f8035637", "cast_id": 23, "profile_path": "/rvL40yyewKgTDVm7doR1ym09sUj.jpg", "order": 9}, {"name": "Al Leong", "character": "Genghis Khan", "id": 61704, "credit_id": "52fe4308c3a36847f803563b", "cast_id": 24, "profile_path": "/9f8m0g6BgdwfQfS6ewhDOrW4kzs.jpg", "order": 10}, {"name": "Jane Wiedlin", "character": "Joan of Arc", "id": 35157, "credit_id": "52fe4308c3a36847f803563f", "cast_id": 25, "profile_path": "/jg6Auu4JhYDy9b0rAvW5HHlGo8L.jpg", "order": 11}, {"name": "Robert V. Barron", "character": "Abraham Lincoln", "id": 157502, "credit_id": "52fe4308c3a36847f8035643", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Clifford David", "character": "Ludwig van Beethoven", "id": 28048, "credit_id": "52fe4308c3a36847f8035647", "cast_id": 27, "profile_path": "/nRj0mmoXqn2Q1U9x7rELesrzMOQ.jpg", "order": 13}, {"name": "J. Patrick McNamara", "character": "Mr. Preston", "id": 12439, "credit_id": "52fe4308c3a36847f803564b", "cast_id": 28, "profile_path": "/gs6xxzSGKj5Dt63sFW1J6hiGBTf.jpg", "order": 14}, {"name": "Frazier Bain", "character": "Deacon Logan", "id": 1080213, "credit_id": "52fe4308c3a36847f803564f", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Diane Franklin", "character": "Princess Joanna", "id": 80137, "credit_id": "52fe4308c3a36847f8035653", "cast_id": 30, "profile_path": "/gGSdDja3atwUdTNnuWjk3I5r2iy.jpg", "order": 16}, {"name": "Kimberley Kates", "character": "Princess Elizabeth", "id": 154499, "credit_id": "52fe4308c3a36847f8035657", "cast_id": 31, "profile_path": "/lg7voDMyDhUXn7IxP1RHkPc6Xie.jpg", "order": 17}, {"name": "William Robbins", "character": "Ox Robbins", "id": 1040620, "credit_id": "52fe4308c3a36847f803565b", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Steve Shepherd", "character": "Randolf Shepherd", "id": 148239, "credit_id": "52fe4308c3a36847f803565f", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Anne Machette", "character": "Buffy", "id": 1080214, "credit_id": "52fe4308c3a36847f8035663", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Traci Dawn Davis", "character": "Jody Davis", "id": 1080215, "credit_id": "52fe4308c3a36847f8035667", "cast_id": 35, "profile_path": null, "order": 21}], "directors": [{"name": "Stephen Herek", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f80355d5", "profile_path": "/v6eEBvBiOoMZwrbbU30u4ObmDWE.jpg", "id": 18356}], "vote_average": 6.4, "runtime": 90}, "1649": {"poster_path": "/8JrQsGEO6WyM1KBpUxLqLiKa8vW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Attention all righteous dudes and babes! Keanu Reeves and Alex Winter are back and better than ever with a most triumphant sequel to Bill And Ted's Excellent Adventure! Everything's excellent for everyone's favourite surf-speaking dudes. With their own apartment, a pair of bodacious princess babes and a spot on the upcoming battle of the bands, life couldn't be any better. But all that goes down the tubes when Bill and Ted's evil robot twins kill the San Dimas duo and then take over their lives.", "video": false, "id": 1649, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Bill & Ted's Bogus Journey", "tagline": "Once... they made history. Now... they are history.", "vote_count": 70, "homepage": "", "belongs_to_collection": {"backdrop_path": "/m7KWyG7VwXoPbwr3DgeDqed8qU0.jpg", "poster_path": "/e8ytcWY0r32q3RdNJDnv5KRh9hC.jpg", "id": 91746, "name": "Bill & Ted's Most Excellent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101452", "adult": false, "backdrop_path": "/yTZKBx66njeBNXFM1A26Rm49AWL.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Orion Pictures", "id": 41}, {"name": "Nelson Entertainment", "id": 365}], "release_date": "1991-07-19", "popularity": 0.524982505653299, "original_title": "Bill & Ted's Bogus Journey", "budget": 0, "cast": [{"name": "Keanu Reeves", "character": "Ted Logan", "id": 6384, "credit_id": "52fe4308c3a36847f80356c9", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Alex Winter", "character": "Bill S. Preston", "id": 18355, "credit_id": "52fe4308c3a36847f80356cd", "cast_id": 2, "profile_path": "/yHtymrjOTwB82EnpPgQjIgAXdTN.jpg", "order": 1}, {"name": "George Carlin", "character": "Rufus", "id": 15903, "credit_id": "52fe4308c3a36847f80356d7", "cast_id": 6, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 2}, {"name": "William Sadler", "character": "Grim Reaper", "id": 6573, "credit_id": "52fe4308c3a36847f8035723", "cast_id": 23, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 3}, {"name": "Joss Ackland", "character": "De Nomolos", "id": 14324, "credit_id": "52fe4308c3a36847f8035727", "cast_id": 24, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 4}, {"name": "Pam Grier", "character": "Ms. Wardroe", "id": 2230, "credit_id": "52fe4308c3a36847f803572b", "cast_id": 25, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 5}, {"name": "Amy Stock-Poynton", "character": "Missy", "id": 18386, "credit_id": "52fe4308c3a36847f803572f", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Jim Martin", "character": "Sir James Martin", "id": 549532, "credit_id": "52fe4308c3a36847f8035733", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Hal Landon Jr.", "character": "Captain Logan", "id": 14801, "credit_id": "52fe4308c3a36847f8035737", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Annette Azcuy", "character": "Elizabeth", "id": 192492, "credit_id": "52fe4308c3a36847f803573b", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Sarah Trigger", "character": "Joanna", "id": 5601, "credit_id": "52fe4308c3a36847f803573f", "cast_id": 30, "profile_path": "/eKmmWJ38vOkv3k0sNgUoRjWCwjd.jpg", "order": 10}, {"name": "Chelcie Ross", "character": "Colonel Oats", "id": 10486, "credit_id": "52fe4308c3a36847f8035743", "cast_id": 31, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 11}, {"name": "Taj Mahal", "character": "Gatekeeper", "id": 94511, "credit_id": "52fe4308c3a36847f8035747", "cast_id": 32, "profile_path": "/tEqFRK0vJFZsTgwMSLdUqnKKrRB.jpg", "order": 12}, {"name": "Robert Noble", "character": "Bach", "id": 125845, "credit_id": "52fe4308c3a36847f803574b", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Eleni Kelakos", "character": "Ria Paschelle", "id": 183972, "credit_id": "52fe4308c3a36847f803574f", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Roy Brocksmith", "character": "Deputy James", "id": 12888, "credit_id": "52fe4308c3a36847f8035753", "cast_id": 35, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 15}, {"name": "J. Patrick McNamara", "character": "Mr. Preston", "id": 12439, "credit_id": "52fe4308c3a36847f8035757", "cast_id": 36, "profile_path": "/gs6xxzSGKj5Dt63sFW1J6hiGBTf.jpg", "order": 16}, {"name": "Dana Stevens", "character": "1st Seance Member", "id": 11898, "credit_id": "52fe4308c3a36847f803575b", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Carol Rosenthal", "character": "3rd Seance Member", "id": 154022, "credit_id": "52fe4308c3a36847f803575f", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Chris Matheson", "character": "'Ugly' Seance Member", "id": 18382, "credit_id": "52fe4308c3a36847f8035763", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Brendan Ryan", "character": "Young Ted", "id": 963707, "credit_id": "52fe4308c3a36847f8035767", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "William Thorne", "character": "Young Bill", "id": 560020, "credit_id": "52fe4308c3a36847f803576b", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Ed Gale", "character": "Station", "id": 1471, "credit_id": "52fe4308c3a36847f803576f", "cast_id": 42, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 22}, {"name": "Arturo Gil", "character": "Station", "id": 81416, "credit_id": "52fe4308c3a36847f8035773", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Tom Allard", "character": "Big Station", "id": 157543, "credit_id": "52fe4308c3a36847f8035777", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Terry Finn", "character": "Heavenly Greeter", "id": 1078906, "credit_id": "52fe4308c3a36847f803577b", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "John Ehrin", "character": "Albert Einstein", "id": 1078907, "credit_id": "52fe4308c3a36847f803577f", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Don Forney", "character": "Benjamin Franklin", "id": 1078908, "credit_id": "52fe4308c3a36847f8035783", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Michael Chambers", "character": "Good Robot Bill (as Michael 'Shrimp' Chambers)", "id": 57392, "credit_id": "52fe4308c3a36847f8035787", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Bruno Falcon", "character": "Good Robot Ted (as Bruno 'Taco' Falcon)", "id": 1078909, "credit_id": "52fe4308c3a36847f803578b", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Ed Cambridge", "character": "George Washington Carver", "id": 152628, "credit_id": "52fe4308c3a36847f803578f", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Tad Horino", "character": "Confucius", "id": 70947, "credit_id": "52fe4308c3a36847f8035793", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "William Shatner", "character": "Captain James Tiberius Kirk (archive footage)", "id": 1748, "credit_id": "52fe4308c3a36847f8035797", "cast_id": 52, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 32}], "directors": [{"name": "Peter Hewitt", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f80356d3", "profile_path": "/oTsxyjGU1C1KpvuFJg9yOuvHmbD.jpg", "id": 18357}], "vote_average": 5.8, "runtime": 93}, "8467": {"poster_path": "/st4P2TtPrAfNwu8HLXoPsPPii42.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 246200000, "overview": "Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some \"adventures\" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.", "video": false, "id": 8467, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dumb and Dumber", "tagline": "What the one doesn't have, the other is missing.", "vote_count": 383, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fdB86tl7SKIBWZzm0CbrYjOdE1K.jpg", "id": 96665, "name": "Dumb and Dumber Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109686", "adult": false, "backdrop_path": "/nJaVxQNC4pb6eYH5jv0UUokfH5X.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1994-12-16", "popularity": 1.32563861286776, "original_title": "Dumb and Dumber", "budget": 16000000, "cast": [{"name": "Jim Carrey", "character": "Lloyd Christmas", "id": 206, "credit_id": "52fe44acc3a36847f80a3749", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Jeff Daniels", "character": "Harry Dune", "id": 8447, "credit_id": "52fe44acc3a36847f80a374d", "cast_id": 2, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 1}, {"name": "Lauren Holly", "character": "Mary Swanson", "id": 34485, "credit_id": "52fe44acc3a36847f80a3751", "cast_id": 3, "profile_path": "/pwenSL3M9vkbIrIvcZEb6mLJNeX.jpg", "order": 2}, {"name": "Mike Starr", "character": "Joe Mentaliano", "id": 5170, "credit_id": "52fe44acc3a36847f80a37a3", "cast_id": 17, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 3}, {"name": "Karen Duffy", "character": "J.P. Shay", "id": 76131, "credit_id": "52fe44acc3a36847f80a37a7", "cast_id": 18, "profile_path": "/c3G9gFCbBf6zHRQTqUZjXYgZUh4.jpg", "order": 4}, {"name": "Charles Rocket", "character": "Nicholas Andre", "id": 7867, "credit_id": "52fe44acc3a36847f80a37ab", "cast_id": 19, "profile_path": "/9UJTYqaPaYNPuVTjGd0Cr4XVNqe.jpg", "order": 5}, {"name": "Victoria Rowell", "character": "Athletic Beauty", "id": 65020, "credit_id": "52fe44acc3a36847f80a37af", "cast_id": 20, "profile_path": "/rzZfb0cSiTGYXxVX0uPbHa6CLc3.jpg", "order": 6}, {"name": "Joe Baker", "character": "Barnard", "id": 181486, "credit_id": "52fe44acc3a36847f80a37b3", "cast_id": 21, "profile_path": "/9vWEEzpr2K8DR3uQqgK2QvAygty.jpg", "order": 7}, {"name": "Hank Brandt", "character": "Karl Swanson", "id": 153459, "credit_id": "52fe44acc3a36847f80a37b7", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Teri Garr", "character": "Helen Swanson", "id": 8437, "credit_id": "52fe44acc3a36847f80a37bb", "cast_id": 23, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 9}, {"name": "Brady Bluhm", "character": "Billy", "id": 77547, "credit_id": "52fe44acc3a36847f80a37bf", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Cam Neely", "character": "Sea Bass", "id": 184180, "credit_id": "52fe44acc3a36847f80a37c3", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Felton Perry", "character": "Detective Dale", "id": 44042, "credit_id": "52fe44acc3a36847f80a37c7", "cast_id": 26, "profile_path": "/ax2YtmbicXvsjayLtK5VUxQh8fC.jpg", "order": 12}, {"name": "Brad Lockerman", "character": "Bobby", "id": 1074689, "credit_id": "52fe44acc3a36847f80a37cb", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Rob Moran", "character": "Bartender", "id": 162924, "credit_id": "52fe44acc3a36847f80a37cf", "cast_id": 28, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 14}], "directors": [{"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a3757", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}, {"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a375d", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}], "vote_average": 6.6, "runtime": 107}, "1654": {"poster_path": "/2PKazVY2F2GhRfQyErq8QWiq0Au.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 45300000, "overview": "Classic World War II action drama about a group of 12 American military prisoners, who are ordered to infiltrate a well-guarded enemy ch\u00e2teau and kill the Nazi officers vacationing there. The soldiers, most of whom are facing death sentences for a variety of violent crimes, agree to the mission and the possible commuting of their sentences.", "video": false, "id": 1654, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 10752, "name": "War"}], "title": "The Dirty Dozen", "tagline": "Train them! Excite them! Arm them!...Then turn them loose on the Nazis!", "vote_count": 86, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/xCLD1Pul4d6iJJdFf3el7PfMpLc.jpg", "id": 124492, "name": "The Dirty Dozen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0061578", "adult": false, "backdrop_path": "/zY5LAPLgNpqDAz5MB0w4tWKSfLn.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "MKH Productions", "id": 950}, {"name": "Seven Arts Productions", "id": 516}], "release_date": "1967-06-15", "popularity": 0.518795422591186, "original_title": "The Dirty Dozen", "budget": 25000000, "cast": [{"name": "Lee Marvin", "character": "Maj. John Reisman", "id": 18391, "credit_id": "52fe4309c3a36847f8035993", "cast_id": 1, "profile_path": "/1UdUtkWNbgU0pTolZKRkwLBLSUt.jpg", "order": 0}, {"name": "Charles Bronson", "character": "Joseph Wladislaw", "id": 4960, "credit_id": "52fe4309c3a36847f8035997", "cast_id": 2, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 1}, {"name": "Jim Brown", "character": "Robert Jefferson", "id": 4774, "credit_id": "52fe4309c3a36847f80359ff", "cast_id": 22, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 2}, {"name": "John Cassavetes", "character": "Victor Franko", "id": 11147, "credit_id": "52fe4309c3a36847f80359ad", "cast_id": 7, "profile_path": "/pp71Xsx63aoXTMQgatnYtGRU2fi.jpg", "order": 3}, {"name": "Donald Sutherland", "character": "Vernon Pinkley", "id": 55636, "credit_id": "52fe4309c3a36847f80359a3", "cast_id": 5, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 4}, {"name": "Trini L\u00f3pez", "character": "Pedro Jiminez (as Trini Lopez)", "id": 108655, "credit_id": "52fe4309c3a36847f8035a21", "cast_id": 31, "profile_path": "/fkERf2SJlY8RMX1OEPpxdEI5cLe.jpg", "order": 5}, {"name": "Telly Savalas", "character": "Archer Maggott", "id": 10169, "credit_id": "52fe4309c3a36847f803599f", "cast_id": 4, "profile_path": "/5HtqvadMMZZ0Zg0Y70gyrduZ8lU.jpg", "order": 6}, {"name": "Clint Walker", "character": "Samson Posey", "id": 40207, "credit_id": "52fe4309c3a36847f8035a13", "cast_id": 28, "profile_path": "/z9EwnoNgmO9hwTHWtkuX3aBkwgv.jpg", "order": 7}, {"name": "Richard Jaeckel", "character": "Sergeant Bowren", "id": 58423, "credit_id": "52fe4309c3a36847f8035a03", "cast_id": 23, "profile_path": "/4pTd7yoDD46xbFcMuFHh8k448Um.jpg", "order": 8}, {"name": "George Kennedy", "character": "Major Max Armbruster", "id": 12950, "credit_id": "52fe4309c3a36847f8035a07", "cast_id": 24, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 9}, {"name": "Ernest Borgnine", "character": "Maj. Gen. Worden", "id": 7502, "credit_id": "52fe4309c3a36847f803599b", "cast_id": 3, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 10}, {"name": "Robert Ryan", "character": "Col. Everett Dasher Breed", "id": 8253, "credit_id": "52fe4309c3a36847f8035a0f", "cast_id": 27, "profile_path": "/xBAWG79UGCkchPPTbONycJiKW2g.jpg", "order": 11}, {"name": "Ralph Meeker", "character": "Captain Stuart Kinder", "id": 14562, "credit_id": "52fe4309c3a36847f8035a0b", "cast_id": 26, "profile_path": "/qJ6ELh0jYHaCB0lITnAOo7owylz.jpg", "order": 12}, {"name": "Robert Webber", "character": "General Denton", "id": 5255, "credit_id": "52fe4309c3a36847f8035a17", "cast_id": 29, "profile_path": "/mg6SHDi5bi9C7pUwH14ZXxTnR7M.jpg", "order": 13}], "directors": [{"name": "Robert Aldrich", "department": "Directing", "job": "Director", "credit_id": "52fe4309c3a36847f80359a9", "profile_path": "/n0hL9vMNQny4tCmKVtANgJJo5Ra.jpg", "id": 18392}], "vote_average": 7.3, "runtime": 150}, "1656": {"poster_path": "/rH3WJbSE3APS1l1hTXZZbz3NVP1.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 142400065, "overview": "In 1850, the people of California were voting to decide whether or not to join the United States. The Legend of Zorro is a 2005 sequel to 1998's The Mask of Zorro,", "video": false, "id": 1656, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "The Legend of Zorro", "tagline": "This Fall, adventure begins with a Z.", "vote_count": 288, "homepage": "http://www.sonypictures.com/homevideo/thelegendofzorro/index.html", "belongs_to_collection": {"backdrop_path": "/AcDbnGiLyBUCW9J4EbYqEIuhokX.jpg", "poster_path": "/ziQDmVR3VE0hC0GDWgaQwz0H3Ff.jpg", "id": 1657, "name": "Zorro Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386140", "adult": false, "backdrop_path": "/mXP2oP6feaovDp03Q2SbterHTfa.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2005-10-25", "popularity": 1.30009357494405, "original_title": "The Legend of Zorro", "budget": 75000000, "cast": [{"name": "Antonio Banderas", "character": "Zorro", "id": 3131, "credit_id": "52fe4309c3a36847f8035af3", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Elena", "id": 1922, "credit_id": "52fe4309c3a36847f8035af7", "cast_id": 2, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Adri\u00e1n Alonso Barona", "character": "Joaquin", "id": 18460, "credit_id": "52fe4309c3a36847f8035b6d", "cast_id": 22, "profile_path": "/yUAJGSBq95noBG5zFC0byg3tfkL.jpg", "order": 2}, {"name": "Julio Oscar Mechoso", "character": "Frey Felipe", "id": 17413, "credit_id": "52fe4309c3a36847f8035b71", "cast_id": 23, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 3}, {"name": "Nick Chinlund", "character": "Jacob McGivens", "id": 18461, "credit_id": "52fe4309c3a36847f8035b75", "cast_id": 24, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 4}, {"name": "Alexa Benedetti", "character": "Lupe", "id": 18462, "credit_id": "52fe4309c3a36847f8035b79", "cast_id": 25, "profile_path": null, "order": 5}, {"name": "Rufus Sewell", "character": "Armand", "id": 17328, "credit_id": "52fe4309c3a36847f8035b7d", "cast_id": 26, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 6}, {"name": "Ra\u00fal M\u00e9ndez", "character": "Ferroq", "id": 18463, "credit_id": "52fe4309c3a36847f8035b81", "cast_id": 27, "profile_path": "/3lOgYP4CMC7CQ1hRMaAErgeh0Ef.jpg", "order": 7}, {"name": "Brandon Wood", "character": "Ricardo", "id": 18464, "credit_id": "52fe4309c3a36847f8035b85", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Michael Emerson", "character": "Harrigan", "id": 2136, "credit_id": "52fe4309c3a36847f8035b89", "cast_id": 29, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 9}, {"name": "Pedro Armend\u00e1riz, Jr.", "character": "Governor Riley", "id": 7372, "credit_id": "52fe4309c3a36847f8035b8d", "cast_id": 30, "profile_path": "/vqg8f4FeCKUD7jTVM2gLpElNZuh.jpg", "order": 10}, {"name": "Mary Crosby", "character": "Governor's Wife", "id": 18465, "credit_id": "52fe4309c3a36847f8035b91", "cast_id": 31, "profile_path": "/481u1zGYUBUlv3dOb9xrv4DsJ8k.jpg", "order": 11}, {"name": "Giovanna Zacar\u00edas", "character": "Blanca", "id": 18466, "credit_id": "52fe4309c3a36847f8035b95", "cast_id": 32, "profile_path": "/MBMoFv0fmJ7gayFi0QC58cRt2t.jpg", "order": 12}, {"name": "Alberto Reyes", "character": "Brother Ignacio", "id": 18467, "credit_id": "52fe4309c3a36847f8035b99", "cast_id": 33, "profile_path": "/zloxYN1eExvEODZLD8aYlHedT8H.jpg", "order": 13}, {"name": "Gustavo Sanchez-Parra", "character": "Guillermo Cortez", "id": 18468, "credit_id": "52fe4309c3a36847f8035b9d", "cast_id": 34, "profile_path": "/rpIME7x7XILBhumf1VmKbxWrt6b.jpg", "order": 14}, {"name": "Carlos Cobos", "character": "Tabulador", "id": 18469, "credit_id": "52fe4309c3a36847f8035ba1", "cast_id": 35, "profile_path": "/8fcntiHU6g70osLnriRZ4pNFm4i.jpg", "order": 15}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe4309c3a36847f8035afd", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 5.8, "runtime": 129}, "181886": {"poster_path": "/v1Fdct0WZAsaqeSkvXRY6ozgBi3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Jake Gyllenhaal reteams with PRISONERS director Denis Villeneuve in this sexy and mind bending thriller. Adam Bell is a glum professor who has grown disinterested by his ordinary life. When Adam discovers a man who appears to be his double, the identical men meet and their lives become bizarrely and hauntingly intertwined. Gyllenhaal is transfixing playing both roles, journeying through a world both familiar and strange. The film\u2019s final and unnerving image will not be soon forgotten by audiences. In the end, only one man can survive.", "video": false, "id": 181886, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Enemy", "tagline": "You can't escape yourself", "vote_count": 228, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2316411", "adult": false, "backdrop_path": "/flo1t3tcwQ08b2J5DvlwDasE6Dp.jpg", "production_companies": [{"name": "Rhombus Media", "id": 164}, {"name": "Roxbury Pictures", "id": 21380}, {"name": "micro_scope", "id": 21381}, {"name": "Mecanismo Films", "id": 21382}], "release_date": "2013-09-08", "popularity": 1.12716162602387, "original_title": "Enemy", "budget": 0, "cast": [{"name": "Jake Gyllenhaal", "character": "Adam Bell/ Anthony St. Claire", "id": 131, "credit_id": "52fe4c739251416c7511acb1", "cast_id": 1, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "M\u00e9lanie Laurent", "character": "Mary", "id": 19119, "credit_id": "52fe4c739251416c7511acb5", "cast_id": 2, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 1}, {"name": "Sarah Gadon", "character": "Helen", "id": 190895, "credit_id": "52fe4c739251416c7511acb9", "cast_id": 3, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 2}, {"name": "Isabella Rossellini", "character": "Adam's Mother", "id": 6588, "credit_id": "52fe4c739251416c7511acbd", "cast_id": 4, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 3}, {"name": "Stephen R. Hart", "character": "Bouncer", "id": 224723, "credit_id": "52fe4c739251416c7511acf7", "cast_id": 15, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 4}, {"name": "Joshua Peace", "character": "Carl", "id": 5925, "credit_id": "52fe4c739251416c7511acfb", "cast_id": 16, "profile_path": "/C5xx4dU6NtB7vzoX9Ho6p7CgOb.jpg", "order": 5}, {"name": "Loretta Yu", "character": "Receptionist", "id": 961828, "credit_id": "5318b1fac3a3685c430019fe", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Tim Post", "character": "Anthony", "id": 7009, "credit_id": "5318b217c3a3685c51001933", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Darryl Dinn", "character": "Employee", "id": 1299079, "credit_id": "5318b228c3a3685c5d001975", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Kiran Friesen", "character": "Sad, Broken Woman", "id": 1299080, "credit_id": "5318b23ac3a3685c560019ec", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Alexis Uiga", "character": "Dark Lady", "id": 1299081, "credit_id": "5318b24ac3a3685c5d00197d", "cast_id": 21, "profile_path": null, "order": 10}], "directors": [{"name": "Denis Villeneuve", "department": "Directing", "job": "Director", "credit_id": "52fe4c739251416c7511acc3", "profile_path": "/f3bWCti2AYoAxRnFYIirQyf6A7j.jpg", "id": 137427}], "vote_average": 6.3, "runtime": 91}, "277": {"poster_path": "/rdkxl5iXdpVU188cL1LLG3sy6z4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95708457, "overview": "Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.", "video": false, "id": 277, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Underworld", "tagline": "An immortal battle for supremacy.", "vote_count": 1063, "homepage": "http://www.sonypictures.com/movies/underworld/site/main.html", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0320691", "adult": false, "backdrop_path": "/cPhRPAJWK8BuuJqqf6PztzvOlnZ.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Laurinfilm", "id": 7733}, {"name": "Subterranean Productions LLC", "id": 7734}, {"name": "Subterranean Productions UK Ltd.", "id": 7735}, {"name": "Underworld Produktions GmbH", "id": 7736}], "release_date": "2003-09-18", "popularity": 1.54770586313057, "original_title": "Underworld", "budget": 22000000, "cast": [{"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "52fe4231c3a36847f800b0c9", "cast_id": 21, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Scott Speedman", "character": "Michael Corvin", "id": 100, "credit_id": "52fe4231c3a36847f800b0cd", "cast_id": 22, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Michael Sheen", "character": "Lucian", "id": 3968, "credit_id": "52fe4231c3a36847f800b0d1", "cast_id": 23, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 2}, {"name": "Shane Brolly", "character": "Kraven", "id": 3969, "credit_id": "52fe4231c3a36847f800b0d5", "cast_id": 24, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Viktor", "id": 2440, "credit_id": "52fe4231c3a36847f800b0d9", "cast_id": 25, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Erwin Leder", "character": "Singe", "id": 3970, "credit_id": "52fe4231c3a36847f800b0dd", "cast_id": 26, "profile_path": "/26qbu74DyDmZM3unsU99wiPWw5i.jpg", "order": 5}, {"name": "Sophia Myles", "character": "Erika", "id": 3971, "credit_id": "52fe4231c3a36847f800b0e1", "cast_id": 27, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 6}, {"name": "Robbie Gee", "character": "Kahn", "id": 1119, "credit_id": "52fe4231c3a36847f800b0e5", "cast_id": 28, "profile_path": "/sNjG7yCwwF6gMChC6gNfNuPUbwE.jpg", "order": 7}, {"name": "Wentworth Miller", "character": "Dr. Lockwood", "id": 3972, "credit_id": "52fe4231c3a36847f800b0e9", "cast_id": 29, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 8}, {"name": "Kevin Grevioux", "character": "Raze", "id": 3952, "credit_id": "536f42420e0a2647d10119ed", "cast_id": 35, "profile_path": "/eP1P9jxMBiI1a6cQHlChNdDALKY.jpg", "order": 9}, {"name": "Zita G\u00f6r\u00f6g", "character": "Amelia", "id": 12358, "credit_id": "53e3c054c3a368484a0024ed", "cast_id": 40, "profile_path": "/eU6PsIYBWG4ywX5PoGwmXd7EvV5.jpg", "order": 10}, {"name": "Scott McElroy", "character": "Soren", "id": 12366, "credit_id": "53e3c087c3a368485c0023db", "cast_id": 41, "profile_path": "/8SfKaB26PSTmk8OMFdkIXrQdp52.jpg", "order": 11}, {"name": "Michael Todd Schneider", "character": "Trix", "id": 1035346, "credit_id": "53e3c1a4c3a368484a002504", "cast_id": 42, "profile_path": null, "order": 12}, {"name": "Richard Cetrone", "character": "Pierce", "id": 12371, "credit_id": "53e3c2470e0a262b86004b0b", "cast_id": 43, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 13}, {"name": "Mike Mukatis", "character": "Taylor", "id": 12372, "credit_id": "53e3c28c0e0a262b80004c0b", "cast_id": 44, "profile_path": "/mVqAXYseZRVcJvHxkUWl47AcLc8.jpg", "order": 14}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b059", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 6.4, "runtime": 121}, "8470": {"poster_path": "/4jX2XxZbpMy2rGSigoIaFAbhOez.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102244770, "overview": "John Q is a 2002 film by Nick Cassavetes; starring Denzel Washington as John Quincy Archibald, a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.", "video": false, "id": 8470, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "John Q", "tagline": "Give a father no options and you leave him no choice.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0251160", "adult": false, "backdrop_path": "/ivT2yCIvL4GskjJjvoyax8h23wq.jpg", "production_companies": [{"name": "Evolution Entertainment", "id": 23019}, {"name": "New Line Cinema", "id": 12}, {"name": "Burg/Koules Productions", "id": 17106}], "release_date": "2002-02-14", "popularity": 0.834146401241558, "original_title": "John Q", "budget": 36000000, "cast": [{"name": "Denzel Washington", "character": "John Quincy Archibald", "id": 5292, "credit_id": "52fe44acc3a36847f80a3a87", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Frank Grimes", "id": 3087, "credit_id": "52fe44acc3a36847f80a3a8b", "cast_id": 2, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Anne Heche", "character": "Rebecca Payne", "id": 8256, "credit_id": "52fe44acc3a36847f80a3a8f", "cast_id": 3, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 2}, {"name": "Kimberly Elise", "character": "Denise Archibald", "id": 55314, "credit_id": "52fe44adc3a36847f80a3ac9", "cast_id": 13, "profile_path": "/315K0qi3aFmcgGweUiLwhdrvcfU.jpg", "order": 3}, {"name": "Daniel E. Smith", "character": "Mike Archibald", "id": 55315, "credit_id": "52fe44adc3a36847f80a3acd", "cast_id": 14, "profile_path": "/rcdeu6cbC2VZx1yVVTv2h2fHyyt.jpg", "order": 4}, {"name": "Larissa Laskin", "character": "Dr. Ellen Klein", "id": 55316, "credit_id": "52fe44adc3a36847f80a3ad1", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "James Woods", "character": "Dr. Raymond Turner", "id": 4512, "credit_id": "52fe44adc3a36847f80a3ad5", "cast_id": 16, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 6}, {"name": "Ethan Suplee", "character": "Guard Max Conlin", "id": 824, "credit_id": "52fe44adc3a36847f80a3ad9", "cast_id": 17, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 7}, {"name": "Shawn Hatosy", "character": "Mitch Quigley", "id": 52647, "credit_id": "52fe44adc3a36847f80a3add", "cast_id": 18, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 8}, {"name": "Heather Wahlquist", "character": "Julie Bird", "id": 55317, "credit_id": "52fe44adc3a36847f80a3ae1", "cast_id": 19, "profile_path": "/232o4HJQu4M5cv6VNOxdvXV8itx.jpg", "order": 9}, {"name": "Ray Liotta", "character": "Chief Gus Monroe", "id": 11477, "credit_id": "52fe44adc3a36847f80a3ae5", "cast_id": 21, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 11}, {"name": "Eddie Griffin", "character": "Lester Matthews", "id": 62842, "credit_id": "52fe44adc3a36847f80a3ae9", "cast_id": 22, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 12}, {"name": "Dina Spybey-Waters", "character": "Debby Utley", "id": 56567, "credit_id": "52fe44adc3a36847f80a3aed", "cast_id": 23, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 13}, {"name": "Shera Danese", "character": "Wife of Heart Transplant Patient", "id": 1220746, "credit_id": "533bb72bc3a36844ed000d4a", "cast_id": 24, "profile_path": "/qKIE9ef0cd401qWfrr6Bws0o7qm.jpg", "order": 14}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a3a95", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 7.0, "runtime": 116}, "9836": {"poster_path": "/8RLEzftZK87S2usLsQoYtyNYzoV.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 384330479, "overview": "Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!", "video": false, "id": 9836, "genres": [{"id": 16, "name": "Animation"}, {"id": 10402, "name": "Music"}], "title": "Happy Feet", "tagline": "WARNING: May Cause Toe-Tapping.", "vote_count": 471, "homepage": "", "belongs_to_collection": {"backdrop_path": "/b9CLLxKsh63AHEkGE9nz9bupQqh.jpg", "poster_path": "/pYbF2FAi2MEVshl8jCDNTRNdTF0.jpg", "id": 92012, "name": "Happy Feet Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0366548", "adult": false, "backdrop_path": "/ip4qHgYa0ZJhO1e7cjnz0HAcgRX.jpg", "production_companies": [{"name": "Kingdom Feature Productions", "id": 2597}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Kennedy Miller Productions", "id": 2537}, {"name": "Animal Logic", "id": 8089}], "release_date": "2006-11-16", "popularity": 1.2465347773617, "original_title": "Happy Feet", "budget": 100000000, "cast": [{"name": "Lombardo Boyar", "character": "Raul", "id": 4992, "credit_id": "52fe4537c3a36847f80c29ff", "cast_id": 28, "profile_path": "/ygctSZGBRkmwARihr8F1Bb7PkIP.jpg", "order": 0}, {"name": "Robin Williams", "character": "Ramon / Lovelace", "id": 2157, "credit_id": "52fe4537c3a36847f80c2a03", "cast_id": 29, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Johnny A. Sanchez", "character": "Lombardo", "id": 59783, "credit_id": "52fe4537c3a36847f80c2a07", "cast_id": 30, "profile_path": "/sZgx2rtzJucOh3z92NZVhkNbfTk.jpg", "order": 2}, {"name": "Carlos Alazraqui", "character": "Nestor", "id": 59784, "credit_id": "52fe4537c3a36847f80c2a0b", "cast_id": 31, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 3}, {"name": "Jeffrey Garcia", "character": "Rinaldo", "id": 59782, "credit_id": "52fe4537c3a36847f80c2a0f", "cast_id": 32, "profile_path": "/vxzRJbYNXUXUG8V8rcWlnj5PCKJ.jpg", "order": 4}, {"name": "Elijah Wood", "character": "Mumble", "id": 109, "credit_id": "52fe4537c3a36847f80c2a13", "cast_id": 33, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 5}, {"name": "Brittany Murphy", "character": "Gloria", "id": 328, "credit_id": "52fe4537c3a36847f80c2a17", "cast_id": 34, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 6}, {"name": "Hugh Jackman", "character": "Memphis", "id": 6968, "credit_id": "52fe4537c3a36847f80c2a1b", "cast_id": 35, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 7}, {"name": "Nicole Kidman", "character": "Norma Jean", "id": 2227, "credit_id": "52fe4537c3a36847f80c2a1f", "cast_id": 36, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 8}, {"name": "Hugo Weaving", "character": "Noah the Elder", "id": 1331, "credit_id": "52fe4537c3a36847f80c2a23", "cast_id": 37, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 9}, {"name": "E.G. Daily", "character": "Baby Mumble", "id": 15274, "credit_id": "52fe4537c3a36847f80c2a27", "cast_id": 38, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 10}, {"name": "Magda Szubanski", "character": "Miss Viola", "id": 45586, "credit_id": "52fe4537c3a36847f80c2a2b", "cast_id": 39, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 11}, {"name": "Miriam Margolyes", "character": "Mrs. Astrakhan", "id": 6199, "credit_id": "52fe4537c3a36847f80c2a2f", "cast_id": 40, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 12}, {"name": "Cesar Flores", "character": "Baby Seymour", "id": 53211, "credit_id": "52fe4537c3a36847f80c2a33", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Anthony LaPaglia", "character": "Boss Skua", "id": 57829, "credit_id": "52fe4537c3a36847f80c2a37", "cast_id": 42, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 14}, {"name": "Fat Joe", "character": "Seymour", "id": 59785, "credit_id": "52fe4537c3a36847f80c2a3b", "cast_id": 43, "profile_path": "/dKAyXMKReHmcf03B6Uol3QpZyOA.jpg", "order": 15}, {"name": "Alyssa Shafer", "character": "Baby Gloria", "id": 59786, "credit_id": "52fe4537c3a36847f80c2a3f", "cast_id": 44, "profile_path": null, "order": 16}, {"name": "Danny Mann", "character": "Dino / Zoo Penguin", "id": 52699, "credit_id": "52fe4537c3a36847f80c2a43", "cast_id": 45, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 17}, {"name": "Mark Klastorin", "character": "Vinnie", "id": 59787, "credit_id": "52fe4537c3a36847f80c2a47", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Michael Cornacchia", "character": "Frankie", "id": 59788, "credit_id": "52fe4537c3a36847f80c2a4b", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Chris Edgerly", "character": "", "id": 591764, "credit_id": "52fe4537c3a36847f80c2a67", "cast_id": 52, "profile_path": "/67G2MHc1Qs2ox2PDyQFxEhVSgYp.jpg", "order": 20}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c297d", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 5.7, "runtime": 108}, "1677": {"poster_path": "/9hJxDqu3LugA3lQhpEWuvgXJKil.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45916769, "overview": "Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered couping gospel and country together.", "video": false, "id": 1677, "genres": [{"id": 18, "name": "Drama"}], "title": "Ray", "tagline": "The extraordinary life story of Ray Charles. A man who fought harder and went farther than anyone thought possible.", "vote_count": 98, "homepage": "http://movies.uip.de/ray/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0350258", "adult": false, "backdrop_path": "/2JTylhhJLErHdEvj1zSXXmVIWih.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2004-10-11", "popularity": 0.677938803909963, "original_title": "Ray", "budget": 40000000, "cast": [{"name": "Jamie Foxx", "character": "Ray Charles", "id": 134, "credit_id": "52fe430bc3a36847f80363df", "cast_id": 1, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Kerry Washington", "character": "Della Bae Robinson", "id": 11703, "credit_id": "52fe430bc3a36847f80363e3", "cast_id": 2, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 1}, {"name": "Regina King", "character": "Margie Hendricks", "id": 9788, "credit_id": "52fe430bc3a36847f80363e7", "cast_id": 3, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 2}, {"name": "Harry Lennix", "character": "Joe Adams", "id": 9464, "credit_id": "52fe430bc3a36847f80363eb", "cast_id": 4, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 3}, {"name": "Clifton Powell", "character": "Jeff Brown", "id": 58924, "credit_id": "52fe430bc3a36847f80363fb", "cast_id": 7, "profile_path": "/hBw76xJtCwKS2v5rZtzDBqvKLN6.jpg", "order": 4}, {"name": "Bokeem Woodbine", "character": "Fathead Newman", "id": 71913, "credit_id": "52fe430bc3a36847f80363ff", "cast_id": 8, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 5}, {"name": "Sharon Warren", "character": "Aretha Robinson", "id": 1192675, "credit_id": "52fe430bc3a36847f8036407", "cast_id": 10, "profile_path": "/2YYhJAzB4i2Tes0eKbsdvOpiDpC.jpg", "order": 7}, {"name": "C.J. Sanders", "character": "Young Ray Robinson", "id": 1192676, "credit_id": "52fe430bc3a36847f803640b", "cast_id": 11, "profile_path": "/glJ5LqHBFmDqipIaGGjCJLTZmT9.jpg", "order": 8}, {"name": "Curtis Armstrong", "character": "Ahmet Ertegun", "id": 87003, "credit_id": "52fe430bc3a36847f803640f", "cast_id": 12, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 9}, {"name": "Richard Schiff", "character": "Jerry Wexler", "id": 31028, "credit_id": "52fe430bc3a36847f8036413", "cast_id": 13, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 10}, {"name": "Larenz Tate", "character": "Quincy Jones", "id": 18291, "credit_id": "52fe430bc3a36847f8036417", "cast_id": 14, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 11}, {"name": "Terrence Howard", "character": "Gossie McGee", "id": 18288, "credit_id": "52fe430bc3a36847f803641b", "cast_id": 15, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 12}, {"name": "David Krumholtz", "character": "Milt Shaw", "id": 38582, "credit_id": "52fe430bc3a36847f803641f", "cast_id": 16, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 13}, {"name": "Wendell Pierce", "character": "Wilbur Brassfield", "id": 17859, "credit_id": "52fe430bc3a36847f8036423", "cast_id": 17, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 14}, {"name": "Aunjanue Ellis", "character": "Mary Ann Fisher", "id": 53923, "credit_id": "530919589251411102002451", "cast_id": 18, "profile_path": "/tOfsln2Qt3P1jL7TuFiwEPcwFZB.jpg", "order": 15}, {"name": "Chris Thomas King", "character": "Lowell Fulson", "id": 1465, "credit_id": "53091b0492514111050026bd", "cast_id": 19, "profile_path": "/hUeI7GRVoOqpqOeEYObuGIYTuIi.jpg", "order": 16}, {"name": "Thomas Jefferson Byrd", "character": "Jimmy", "id": 98889, "credit_id": "53091dd292514111050026de", "cast_id": 20, "profile_path": "/vzFTalWATMQoQsDciuNUz3Wvv5X.jpg", "order": 17}, {"name": "Rick Gomez", "character": "Tom Dowd", "id": 123532, "credit_id": "53091ec2925141110e0026c7", "cast_id": 21, "profile_path": "/fqxDQWzG4OHZVqgnOqhS2HRSXPt.jpg", "order": 18}, {"name": "Denise Dowse", "character": "Marlene", "id": 23970, "credit_id": "53091eed9251411117002527", "cast_id": 22, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 19}, {"name": "Warwick Davis", "character": "Oberon", "id": 11184, "credit_id": "53091f38925141110e0026d7", "cast_id": 23, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 20}, {"name": "Patrick Bauchau", "character": "Dr. Hacker", "id": 5274, "credit_id": "53091f75925141785e000701", "cast_id": 24, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 21}, {"name": "Robert Wisdom", "character": "Jack Lauderdale", "id": 21505, "credit_id": "53091fcb925141111a002411", "cast_id": 25, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 22}, {"name": "Kurt Fuller", "character": "Sam Clark", "id": 29685, "credit_id": "530920269251411114002453", "cast_id": 26, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 23}], "directors": [{"name": "Taylor Hackford", "department": "Directing", "job": "Director", "credit_id": "52fe430bc3a36847f80363f1", "profile_path": "/heZfdghufTV3t3ayrWvIuiP1jvb.jpg", "id": 18596}], "vote_average": 7.0, "runtime": 152}, "9870": {"poster_path": "/rAXlZmQ3gg4mScySg1kvs0ZLdCb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105173115, "overview": "When Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful Rachel Jansen, Peter is shocked to see not only Aldous Snow in Hawaii, but also Sarah Marshall.", "video": false, "id": 9870, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Forgetting Sarah Marshall", "tagline": "You lose some, you get some.", "vote_count": 311, "homepage": "http://www.forgettingsarahmarshall.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0800039", "adult": false, "backdrop_path": "/m6gLGI5PorxfX1ZeicIQ3UgtvHP.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-04-17", "popularity": 1.2870388995186, "original_title": "Forgetting Sarah Marshall", "budget": 30000000, "cast": [{"name": "Jason Segel", "character": "Peter Bretter", "id": 41088, "credit_id": "52fe453bc3a36847f80c3471", "cast_id": 10, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 0}, {"name": "Kristen Bell", "character": "Sarah Marshall", "id": 40462, "credit_id": "52fe453bc3a36847f80c3475", "cast_id": 11, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Mila Kunis", "character": "Rachel Jansen", "id": 18973, "credit_id": "52fe453bc3a36847f80c3479", "cast_id": 12, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 2}, {"name": "Russell Brand", "character": "Aldous Snow", "id": 59919, "credit_id": "52fe453bc3a36847f80c347d", "cast_id": 13, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 3}, {"name": "Bill Hader", "character": "Brian", "id": 19278, "credit_id": "52fe453bc3a36847f80c3481", "cast_id": 14, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 4}, {"name": "Paul Rudd", "character": "Chuck", "id": 22226, "credit_id": "52fe453bc3a36847f80c348b", "cast_id": 16, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 5}, {"name": "Jack McBrayer", "character": "Darald", "id": 58737, "credit_id": "52fe453bc3a36847f80c348f", "cast_id": 17, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 6}, {"name": "Jonah Hill", "character": "Matthew the Waiter", "id": 21007, "credit_id": "52fe453bc3a36847f80c3493", "cast_id": 18, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 7}, {"name": "Carla Gallo", "character": "Gag Me Girl", "id": 54708, "credit_id": "52fe453bc3a36847f80c3497", "cast_id": 19, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 8}, {"name": "Kristen Wiig", "character": "Yoga Instructor", "id": 41091, "credit_id": "52fe453bc3a36847f80c349b", "cast_id": 20, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 9}, {"name": "William Baldwin", "character": "Detective Hunter Rush", "id": 13021, "credit_id": "52fe453bc3a36847f80c349f", "cast_id": 21, "profile_path": "/wQjXdPYT524QJ0YqKrjPcZWfkHu.jpg", "order": 10}, {"name": "Jason Bateman", "character": "Animal Instincts Detective", "id": 23532, "credit_id": "52fe453bc3a36847f80c34a3", "cast_id": 22, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 11}, {"name": "Maria Thayer", "character": "Wyoma", "id": 59257, "credit_id": "52fe453bc3a36847f80c34a7", "cast_id": 23, "profile_path": "/xrWP4eR5AvmmgiyDKFCu6CvnQQl.jpg", "order": 12}, {"name": "Teila Tuli", "character": "Kemo", "id": 81992, "credit_id": "52fe453bc3a36847f80c34ab", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Steve Landesberg", "character": "Dr. Rosenbaum", "id": 160546, "credit_id": "52fe453bc3a36847f80c34af", "cast_id": 25, "profile_path": "/7iUdJhYM4O1RMHRILBhcKFJ5Sjg.jpg", "order": 14}, {"name": "Branscombe Richmond", "character": "Keoki", "id": 106730, "credit_id": "52fe453bc3a36847f80c34b3", "cast_id": 26, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 15}, {"name": "Billy Bush", "character": "Billy Bush (Himself)", "id": 287341, "credit_id": "52fe453bc3a36847f80c34b7", "cast_id": 27, "profile_path": "/xBomzqbPgyG7SGySt77BKEZ3KMF.jpg", "order": 16}, {"name": "Carla Alapont", "character": "Spanish Sex Girl", "id": 1290175, "credit_id": "52fe453bc3a36847f80c34bb", "cast_id": 28, "profile_path": "/c9Ty0lTIrCtgzDtfmAbj5wTQ8LS.jpg", "order": 17}, {"name": "Ahna O'Reilly", "character": "Leslie", "id": 999605, "credit_id": "552a8db3c3a368565f0038c7", "cast_id": 29, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 18}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe453bc3a36847f80c3443", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 6.3, "runtime": 111}, "9837": {"poster_path": "/tJs9OUfS8WQXrRjoP1jOb8YYvNS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 218613188, "overview": "This is the extraordinary tale of two brothers named Moses and Ramses, one born of royal blood, and one an orphan with a secret past. Growing up the best of friends, they share a strong bond of free-spirited youth and good-natured rivalry. But the truth will ultimately set them at odds, as one becomes the ruler of the most powerful empire on earth, and the other the chosen leader of his people! Their final confrontation will forever change their lives and the world.", "video": false, "id": 9837, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Prince of Egypt", "tagline": "The Power Is Real.", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120794", "adult": false, "backdrop_path": "/1yB6o6L5DLteeraLhz5Q0buBm6i.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "1998-12-15", "popularity": 1.09143270713071, "original_title": "The Prince of Egypt", "budget": 70000000, "cast": [{"name": "Val Kilmer", "character": "Moses/God", "id": 5576, "credit_id": "52fe4537c3a36847f80c2ab7", "cast_id": 1, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Ramesses II", "id": 5469, "credit_id": "52fe4537c3a36847f80c2abb", "cast_id": 2, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Patrick Stewart", "character": "Pharaoh Seti I", "id": 2387, "credit_id": "52fe4537c3a36847f80c2abf", "cast_id": 3, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Zipporah", "id": 1160, "credit_id": "52fe4537c3a36847f80c2ac3", "cast_id": 4, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Sandra Bullock", "character": "Miriam", "id": 18277, "credit_id": "52fe4537c3a36847f80c2b03", "cast_id": 15, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 4}, {"name": "Jeff Goldblum", "character": "Aaron", "id": 4785, "credit_id": "52fe4537c3a36847f80c2b07", "cast_id": 16, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 5}, {"name": "Danny Glover", "character": "Jethro", "id": 2047, "credit_id": "52fe4537c3a36847f80c2b0b", "cast_id": 17, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 6}, {"name": "Helen Mirren", "character": "The Queen", "id": 15735, "credit_id": "52fe4537c3a36847f80c2b0f", "cast_id": 18, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 7}, {"name": "Steve Martin", "character": "Hotep", "id": 67773, "credit_id": "52fe4537c3a36847f80c2b13", "cast_id": 19, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 8}, {"name": "Martin Short", "character": "Huy", "id": 519, "credit_id": "52fe4537c3a36847f80c2b17", "cast_id": 20, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 9}, {"name": "James Avery", "character": "Additional Voices", "id": 51547, "credit_id": "52fe4537c3a36847f80c2b1b", "cast_id": 21, "profile_path": "/iDJcKHZ67yQv8nAeAUhM8PhQxzb.jpg", "order": 10}, {"name": "Amick Byram", "character": "Moses (singing voice)", "id": 169893, "credit_id": "52fe4537c3a36847f80c2b1f", "cast_id": 22, "profile_path": "/sEvKFlflzTZOQJRexuV3djccL5e.jpg", "order": 11}, {"name": "Aria Curzon", "character": "Additional Voices", "id": 91022, "credit_id": "52fe4537c3a36847f80c2b23", "cast_id": 23, "profile_path": "/ae2PTYLqCVdt5Qy0DjJaKe3Ahpc.jpg", "order": 12}, {"name": "Sally Dworsky", "character": "Miriam (singing voice)", "id": 1008838, "credit_id": "52fe4537c3a36847f80c2b27", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Ofra Haza", "character": "Yocheved", "id": 1008866, "credit_id": "52fe4537c3a36847f80c2b2b", "cast_id": 25, "profile_path": "/cRPnkmY9cFM8XP5W594fvqAeZI7.jpg", "order": 14}, {"name": "Brian Stokes Mitchell", "character": "Jethro (singing voice)", "id": 130231, "credit_id": "52fe4537c3a36847f80c2b2f", "cast_id": 26, "profile_path": "/sujUSIccsMwEu8jGCZkvsYhBl8n.jpg", "order": 15}, {"name": "Bobby Motown", "character": "Rameses Son", "id": 1080300, "credit_id": "52fe4537c3a36847f80c2b33", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Eden Riegel", "character": "Young Miriam", "id": 217524, "credit_id": "52fe4537c3a36847f80c2b37", "cast_id": 28, "profile_path": "/wMcRg3Y0x70U1vFoK0hBY7zS20E.jpg", "order": 17}, {"name": "Shira Roth", "character": "Hebrew Child (singing voice)", "id": 191335, "credit_id": "52fe4537c3a36847f80c2b3b", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Stephanie Sawyer", "character": "Additional Voices", "id": 56490, "credit_id": "52fe4537c3a36847f80c2b3f", "cast_id": 30, "profile_path": "/tEj8lLwPEMrLwrjONwyHKm7fgdI.jpg", "order": 19}, {"name": "Linda Shayne", "character": "The Queen (singing voice)", "id": 97753, "credit_id": "52fe4537c3a36847f80c2b43", "cast_id": 31, "profile_path": "/1AwVAyq8bJrEyH8IxKW7jIzkozi.jpg", "order": 20}, {"name": "Francesca Smith", "character": "Additional Voices", "id": 35093, "credit_id": "52fe4537c3a36847f80c2b47", "cast_id": 32, "profile_path": "/8iH6bCFd8FamHPcWvmbIqqQIEXH.jpg", "order": 21}], "directors": [{"name": "Brenda Chapman", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c2ac9", "profile_path": "/3wEdiMLQObBcBbtg131ZRQG2hfK.jpg", "id": 59803}, {"name": "Steve Hickner", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c2acf", "profile_path": "/3pI5lLmKJCeHJ6t0zZYhDjxfiEi.jpg", "id": 44113}, {"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c2ad5", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 6.7, "runtime": 99}, "9874": {"poster_path": "/jnbvydGrfPeSlYnIQ2XI3z3IDmh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160000000, "overview": "A tough-on-crime street cop must protect the only surviving witness to a strange murderous cult with far reaching plans.", "video": false, "id": 9874, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Cobra", "tagline": "The strong arm of the law.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090859", "adult": false, "backdrop_path": "/tonRIZmCmjYNVaM6hRY4xlhEcIH.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Cannon Group", "id": 1444}, {"name": "Golan-Globus", "id": 1445}], "release_date": "1986-05-23", "popularity": 0.703743055901333, "original_title": "Cobra", "budget": 0, "cast": [{"name": "Sylvester Stallone", "character": "Lieutenant Marion 'Cobra' Cobretti", "id": 16483, "credit_id": "52fe453cc3a36847f80c367f", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Brigitte Nielsen", "character": "Ingrid", "id": 921, "credit_id": "52fe453cc3a36847f80c3683", "cast_id": 2, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 1}, {"name": "Reni Santoni", "character": "Sergeant Gonzales", "id": 14784, "credit_id": "52fe453cc3a36847f80c3687", "cast_id": 3, "profile_path": "/6dNgWQgTgT4u5jeux3gOX34Fjiu.jpg", "order": 2}, {"name": "Andrew Robinson", "character": "Detective Monte", "id": 14782, "credit_id": "52fe453cc3a36847f80c368b", "cast_id": 4, "profile_path": "/bJnqfONR5wdtIciYQ0tBnRX4PnD.jpg", "order": 3}, {"name": "Brian Thompson", "character": "Night Slasher", "id": 2719, "credit_id": "52fe453cc3a36847f80c368f", "cast_id": 5, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 4}, {"name": "John Herzfeld", "character": "Cho", "id": 27846, "credit_id": "52fe453dc3a36847f80c36d5", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Lee Garlington", "character": "Nancy Stalk", "id": 23975, "credit_id": "52fe453dc3a36847f80c36d9", "cast_id": 18, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 6}, {"name": "Art LaFleur", "character": "Captain Sears (as Art La Fleur)", "id": 44792, "credit_id": "52fe453dc3a36847f80c36f9", "cast_id": 27, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 7}, {"name": "Marco Rodr\u00edguez", "character": "Supermarket Killer", "id": 73132, "credit_id": "52fe453dc3a36847f80c36dd", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ross St. Phillip", "character": "Security Guard", "id": 1118712, "credit_id": "52fe453dc3a36847f80c36e1", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Val Avery", "character": "Chief Halliwell", "id": 3014, "credit_id": "52fe453dc3a36847f80c36e5", "cast_id": 22, "profile_path": "/jIBEZ5xoM7I5PxG3pW62VeWwYih.jpg", "order": 10}, {"name": "David Rasche", "character": "Dan", "id": 33533, "credit_id": "52fe453dc3a36847f80c36e9", "cast_id": 23, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 11}, {"name": "John Hauk", "character": "Low Rider", "id": 1118713, "credit_id": "52fe453dc3a36847f80c36ed", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Nick Angotti", "character": "Prodski", "id": 154335, "credit_id": "52fe453dc3a36847f80c36f1", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Nina Axelrod", "character": "Waitress", "id": 1118714, "credit_id": "52fe453dc3a36847f80c36f5", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "George P. Cosmatos", "department": "Directing", "job": "Director", "credit_id": "52fe453cc3a36847f80c3695", "profile_path": "/6DIKPjnDvr7oHgTPHTXM5te45Qt.jpg", "id": 16566}], "vote_average": 5.7, "runtime": 87}, "1685": {"poster_path": "/pWXyweaAoFoprRHm9Ft33JakiQB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18999718, "overview": "Astronaut Brent is sent to rescue Taylor but crash lands on the Planet of the Apes, just like Taylor did in the original film. Taylor has disappeared into the Forbidden Zone so Brent and Nova try to follow and find him. He discovers a cult of humans that fear the Apes' latest military movements and finds himself in the middle. Tension mounts to a climactic battle between ape and man deep in the bowels of the planet.", "video": false, "id": 1685, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Beneath the Planet of the Apes", "tagline": "An army of civilized apes...A fortress of radiation-crazed super humans...Earth's final battle is about to begin - Beneath the atomic rubble of what was once the city of New York!", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2BQc7pXBU7zWGWMJDQBDuV5X8ra.jpg", "poster_path": "/n9nUdnx1awdQeHC6FTiNohr2fiT.jpg", "id": 1709, "name": "Planet of the Apes (Original) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065462", "adult": false, "backdrop_path": "/nCZGEteVNXNzL3dH5Q4T41yxAfI.jpg", "production_companies": [{"name": "APJAC Productions", "id": 12943}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1970-05-26", "popularity": 0.373538964008726, "original_title": "Beneath the Planet of the Apes", "budget": 3000000, "cast": [{"name": "James Franciscus", "character": "Brent", "id": 18643, "credit_id": "52fe430cc3a36847f8036787", "cast_id": 17, "profile_path": "/rXHGxnJK4QunvpnrOT5NhgEg824.jpg", "order": 0}, {"name": "Kim Hunter", "character": "Dr. Zira", "id": 10539, "credit_id": "52fe430cc3a36847f803678b", "cast_id": 18, "profile_path": "/nB44EysedphcIWftSqyyG2qBYk8.jpg", "order": 1}, {"name": "Maurice Evans", "character": "Dr. Zaius", "id": 12023, "credit_id": "52fe430cc3a36847f803678f", "cast_id": 19, "profile_path": "/tpb69FMfZVErJzpyipYQBGsIRp.jpg", "order": 2}, {"name": "Linda Harrison", "character": "Nova", "id": 13260, "credit_id": "52fe430cc3a36847f80367ab", "cast_id": 25, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 3}, {"name": "Paul Richards", "character": "Mendez", "id": 18645, "credit_id": "52fe430cc3a36847f8036797", "cast_id": 21, "profile_path": "/3KpOkgTmJTV0ciCpbv3qkoEPE5O.jpg", "order": 4}, {"name": "Charlton Heston", "character": "Taylor", "id": 10017, "credit_id": "52fe430cc3a36847f8036783", "cast_id": 16, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 5}, {"name": "David Watson", "character": "Cornelius", "id": 18644, "credit_id": "52fe430cc3a36847f8036793", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Thomas Gomez", "character": "Minister", "id": 18646, "credit_id": "52fe430cc3a36847f803679b", "cast_id": 22, "profile_path": "/7CNFFi9FG1Jc6ngmnZY3MGcK4zx.jpg", "order": 7}, {"name": "Victor Buono", "character": "Fat Man", "id": 24811, "credit_id": "549d98cdc3a3682f21005fdf", "cast_id": 27, "profile_path": "/dtD3eiFF4YIVJsxEKchtNvWOrKH.jpg", "order": 8}, {"name": "James Gregory", "character": "Ursus", "id": 14732, "credit_id": "549d98dec3a3682f1b005fd9", "cast_id": 28, "profile_path": "/xOpEhGx9Qupfdfo3KUaA0DHxbko.jpg", "order": 9}, {"name": "Jeff Corey", "character": "Caspay", "id": 9596, "credit_id": "549d98ebc3a3680b2700513f", "cast_id": 29, "profile_path": "/jlc4DLs99u7f9HOoco3dv5DBAoJ.jpg", "order": 10}, {"name": "Natalie Trundy", "character": "Albina", "id": 18648, "credit_id": "549d98fd9251413123005f68", "cast_id": 30, "profile_path": "/50ljrtCFeFQRFURoSgf1hrgdCPw.jpg", "order": 11}, {"name": "Don Pedro Colley", "character": "Ongaro", "id": 9222, "credit_id": "549d990dc3a3682f23006258", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Tod Andrews", "character": "Skipper", "id": 99890, "credit_id": "549d991dc3a3682f21005fe8", "cast_id": 32, "profile_path": "/noIGXslu61uT0NR4Wf1k6gvklbL.jpg", "order": 13}, {"name": "Gregory Sierra", "character": "Verger", "id": 18914, "credit_id": "549d9939c3a3680b27005145", "cast_id": 33, "profile_path": "/lbF2GRIs3juRAzfevwsUOq5PzFF.jpg", "order": 14}, {"name": "Eldon Burke", "character": "Gorilla Sgt.", "id": 1404408, "credit_id": "549d99489251414e28001962", "cast_id": 34, "profile_path": null, "order": 15}], "directors": [{"name": "Ted Post", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f803673d", "profile_path": "/knADACiRl8Bn45BXNb0RDy3BfVf.jpg", "id": 18635}], "vote_average": 6.4, "runtime": 95}, "206487": {"poster_path": "/kDdUtDsGMQ3OYwoBtEQyJIGPz4V.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 3000000, "overview": "Predestination chronicles the life of a Temporal Agent (Ethan Hawke) sent on an intricate series of time-travel journeys designed to prevent future killers from committing their crimes. Now, on his final assignment, the Agent must stop the one criminal that has eluded him throughout time and prevent a devastating attack in which thousands of lives will be lost.", "video": false, "id": 206487, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predestination", "tagline": "To save the future he must reshape the past.", "vote_count": 365, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2397535", "adult": false, "backdrop_path": "/s9DKwK5fXzaqFOzkZkidkOk4KR9.jpg", "production_companies": [{"name": "Screen Queensland", "id": 10950}, {"name": "Screen Australia", "id": 7584}, {"name": "Blacklab Entertainment", "id": 15392}, {"name": "Wolfhound Pictures", "id": 15393}], "release_date": "2014-08-28", "popularity": 3.05949862520321, "original_title": "Predestination", "budget": 5500000, "cast": [{"name": "Ethan Hawke", "character": "The Bartender", "id": 569, "credit_id": "52fe4d1fc3a368484e1d81c3", "cast_id": 10, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Sarah Snook", "character": "The Unmarried Mother", "id": 235416, "credit_id": "52fe4d1fc3a368484e1d81cb", "cast_id": 12, "profile_path": "/dvAVmiGlckhgqCfhAdTrcUudHOp.jpg", "order": 1}, {"name": "Noah Taylor", "character": "Mr. Robertson", "id": 1284, "credit_id": "52fe4d1fc3a368484e1d81c7", "cast_id": 11, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 2}, {"name": "Christopher Kirby", "character": "Agent Miles", "id": 75175, "credit_id": "52fe4d1fc3a368484e1d81cf", "cast_id": 13, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 3}, {"name": "Madeleine West", "character": "Mrs. Stapleton", "id": 213144, "credit_id": "52fe4d1fc3a368484e1d81d3", "cast_id": 14, "profile_path": "/u1VxEsvpoM24KKqGXPgL2E8h5XG.jpg", "order": 4}, {"name": "Jim Knobeloch", "character": "Dr. Belfort", "id": 199432, "credit_id": "52fe4d1fc3a368484e1d81d7", "cast_id": 15, "profile_path": "/ndiYsn4J7bBk5gJ3aVKkF3RFLkh.jpg", "order": 5}, {"name": "Freya Stafford", "character": "Alice", "id": 199313, "credit_id": "52fe4d1fc3a368484e1d81db", "cast_id": 16, "profile_path": "/oS4CqDNpVdiKEu0b3RhqDBRvawv.jpg", "order": 6}, {"name": "Elise Jansen", "character": "Nurse", "id": 1189135, "credit_id": "52fe4d1fc3a368484e1d81df", "cast_id": 17, "profile_path": "/ub9fdbtpW0SYAXRSTNVpbBVxn89.jpg", "order": 7}, {"name": "Tyler Coppin", "character": "Dr. Heinlein", "id": 152548, "credit_id": "52fe4d1fc3a368484e1d81e3", "cast_id": 18, "profile_path": "/pBHo8xcl4kllgUZ3WyvDzxmTJGB.jpg", "order": 8}, {"name": "Christopher Stollery", "character": "The Interviewer", "id": 126341, "credit_id": "52fe4d1fc3a368484e1d81e7", "cast_id": 19, "profile_path": "/a3h7DWac9sqGKsvlxYkBnS0ukyb.jpg", "order": 9}, {"name": "Christopher Sommers", "character": "Miller", "id": 1014586, "credit_id": "52fe4d1fc3a368484e1d81eb", "cast_id": 20, "profile_path": "/oppFEX1hbhxxqMYfHJoCxKltYEj.jpg", "order": 10}, {"name": "Kuni Hashimoto", "character": "Dr. Fujimoto", "id": 1004719, "credit_id": "54bf7b7dc3a368404600a0da", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Sara El-Yafi", "character": "Lab Technician", "id": 1416430, "credit_id": "54bf7c7d9251416eae007f1e", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Paul Moder", "character": "Boxing Commentator 1", "id": 108676, "credit_id": "54bf7e529251416e9b008946", "cast_id": 31, "profile_path": "/hcI1RffqwBglMHmV7J8IUyrgTXw.jpg", "order": 13}, {"name": "Grant Piro", "character": "Boxing Commentator 2 / News Report Announcer", "id": 66746, "credit_id": "54bf7fd6c3a368142100b7dc", "cast_id": 32, "profile_path": "/yk0nm8eU81yyEMrc1ZB6M2viHal.jpg", "order": 14}, {"name": "Christopher Bunworth", "character": "Jerry", "id": 77552, "credit_id": "54bfa22f92514148b000c8ae", "cast_id": 33, "profile_path": "/qWKYjTNtnLqOtVBAS63xr4Mrh2J.jpg", "order": 15}, {"name": "Jamie Gleeson", "character": "Dirty Hippy", "id": 1416504, "credit_id": "54bfa2789251416eae008312", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Christina Tan", "character": "Female Reporter", "id": 1416506, "credit_id": "54bfa329c3a3686c6100ea07", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Dennis Coard", "character": "Mayor Davidson", "id": 1023661, "credit_id": "54bfa4ff9251411d7700f3e9", "cast_id": 36, "profile_path": "/3PibhzdBpUNfDzIdO5gZx9t5W4N.jpg", "order": 18}, {"name": "Milla Simmonds", "character": "Baby Jane 1", "id": 1416510, "credit_id": "54bfa5289251413635009792", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Ruby Simmonds", "character": "Baby Jane 1", "id": 1416511, "credit_id": "54bfa55ac3a3687c4000916e", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Cate Wolfe", "character": "Beth", "id": 1325993, "credit_id": "54bfa696c3a3687c400091a6", "cast_id": 39, "profile_path": "/d6Iiz2xRND9UECIrFnze6pAcUv8.jpg", "order": 21}, {"name": "Ben Prendergast", "character": "Dr, Clarke", "id": 1416517, "credit_id": "54bfa754c3a3686c6100ea8c", "cast_id": 40, "profile_path": "/usfQT3HQT5dCYryDXh29pPiYc1G.jpg", "order": 22}, {"name": "Carmen Warrington", "character": "Grace", "id": 1416523, "credit_id": "54bfa8d6c3a3681da00064f8", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Sharon Kershaw", "character": "Abigail", "id": 1416526, "credit_id": "54bfaa809251416eae0083c6", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Charlie Alexander-Powell", "character": "Baby Jane 2", "id": 1416527, "credit_id": "54bfaabdc3a3686c6b011dbd", "cast_id": 43, "profile_path": null, "order": 25}, {"name": "Smith Alexander-Powell", "character": "Baby Jane 2", "id": 1416529, "credit_id": "54bfaaf09251416eae0083d4", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Olivia Sprague", "character": "Jane 5yo", "id": 1416532, "credit_id": "54bfab679251413635009825", "cast_id": 45, "profile_path": "/lV008RZiHOCFyebqjhhhmKwYhvs.jpg", "order": 27}, {"name": "Katie Avram", "character": "Ice Cream Daughter", "id": 1416534, "credit_id": "54bfad09c3a3687c40009240", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Melissa Avram", "character": "Ice Cream Mother", "id": 1416536, "credit_id": "54bfad5e92514148f000d125", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Giordano Gangl", "character": "Ice Cream Vendor", "id": 1416537, "credit_id": "54bfae4d92514148f000d139", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Tony Nikolakopoulos", "character": "Driver", "id": 75659, "credit_id": "54bfb068c3a368145e00dae8", "cast_id": 49, "profile_path": "/7l8C1jFVFRONZ023nPRcqGmTB62.jpg", "order": 31}, {"name": "Monique Heath", "character": "Jane 10yo", "id": 1416540, "credit_id": "54bfb0c3925141363500989e", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Sophie Cusworth", "character": "Older Fighting Girl", "id": 1416547, "credit_id": "54bfb5d8c3a368145e00db62", "cast_id": 51, "profile_path": null, "order": 33}, {"name": "Finegan Sampson", "character": "Fighting Boy", "id": 1416548, "credit_id": "54bfb6659251416eae0084c1", "cast_id": 52, "profile_path": null, "order": 34}, {"name": "David Rock", "character": "Orphanage Administrator 1", "id": 1416777, "credit_id": "54c0ba229251412432001101", "cast_id": 53, "profile_path": null, "order": 35}, {"name": "Richard Whybrow", "character": "Orphanage Administrator 2", "id": 1416778, "credit_id": "54c0ba77925141315a003676", "cast_id": 54, "profile_path": null, "order": 36}, {"name": "Felicity Steel", "character": "Mrs. Rosenblum", "id": 1416780, "credit_id": "54c0bcb6c3a3686c61010630", "cast_id": 55, "profile_path": null, "order": 37}, {"name": "Lucinda Armstrong Hall", "character": "Blonde Classmate", "id": 1416783, "credit_id": "54c0bdcf925141248900117a", "cast_id": 56, "profile_path": "/r7d6cm5ZY3tOXCoQH8K6GuAG00U.jpg", "order": 38}, {"name": "Lucinda Armstrong Hall", "character": "Blonde Classmate", "id": 1416784, "credit_id": "54c0bdeec3a368789b001252", "cast_id": 57, "profile_path": null, "order": 39}, {"name": "Maja Sarosiek", "character": "Space Corp Receptionist", "id": 1416785, "credit_id": "54c0bf0b92514124c80010b6", "cast_id": 58, "profile_path": null, "order": 40}, {"name": "Vanessa Crouch", "character": "Recruit 1", "id": 1416786, "credit_id": "54c0bf4cc3a36878fb001038", "cast_id": 59, "profile_path": null, "order": 41}, {"name": "Eliza D'Souza", "character": "Recruit 2", "id": 1416789, "credit_id": "54c0bfd092514124c80010c4", "cast_id": 60, "profile_path": null, "order": 42}, {"name": "Sophie Van Den Akker", "character": "Recruit 3", "id": 1416790, "credit_id": "54c0c20dc3a3687c4000b355", "cast_id": 61, "profile_path": "/l7vAGXgNJVU5W9MojQcc4vAv12y.jpg", "order": 43}, {"name": "Madeleine Dixon", "character": "Recruit 4", "id": 1416792, "credit_id": "54c0c30b9251416eae00a1d7", "cast_id": 62, "profile_path": null, "order": 44}, {"name": "Hayley Butcher", "character": "Recruit 5", "id": 1416794, "credit_id": "54c0c388c3a368792c001145", "cast_id": 63, "profile_path": "/4TO8WKAS2jwZaSQdqgfUiurtiAx.jpg", "order": 45}, {"name": "Rebecca Cullinan", "character": "Dumb Girl Recruit", "id": 1416859, "credit_id": "54c0e99c9251416e6000ae25", "cast_id": 64, "profile_path": null, "order": 46}, {"name": "Alicia Pavlis", "character": "Hooker Girl Recruit", "id": 1416861, "credit_id": "54c0ea6a92514124890015f5", "cast_id": 65, "profile_path": "/b2s5N5axpyWMZ6tgyjcYeFiQvGM.jpg", "order": 47}, {"name": "Ewa Bartecki", "character": "Lazy Girl Recruit", "id": 1416862, "credit_id": "54c0eb5692514124c8001494", "cast_id": 66, "profile_path": null, "order": 48}, {"name": "Arielle O'Neill", "character": "Nauseous Girl", "id": 1416868, "credit_id": "54c0ee24925141315a003b7e", "cast_id": 67, "profile_path": "/hU9S9NUD3MTwHME7xG2DPH8n6pO.jpg", "order": 49}, {"name": "Alexis Fernandez", "character": "Marcy", "id": 1366390, "credit_id": "54c0ef8f925141244600156f", "cast_id": 68, "profile_path": "/oHCWTNVVU82eLqvO4zDft7jQvfi.jpg", "order": 50}, {"name": "Kristie Jandric", "character": "Physical Fitness Trainer", "id": 1245746, "credit_id": "54c0f183c3a3686c61010a92", "cast_id": 69, "profile_path": "/o5xf7PaqdGkevPXttGKC0eTAKks.jpg", "order": 51}, {"name": "Marky Lee Campbell", "character": "Trainer's Assistant", "id": 1416897, "credit_id": "54c0f406c3a3686c61010ac7", "cast_id": 70, "profile_path": "/1VVU496R3nv77IzDOMGowNdZAsC.jpg", "order": 52}, {"name": "Rob Jenkins", "character": "Mr. Jones", "id": 56497, "credit_id": "54c0f747c3a3687c4000b920", "cast_id": 71, "profile_path": "/2REXmWTxi7hFyBVvIO6ijpKyQ2.jpg", "order": 53}, {"name": "Raj Sidhu", "character": "Dr. Baldwin", "id": 1416910, "credit_id": "54c0f7c9c3a368789b001836", "cast_id": 72, "profile_path": null, "order": 54}, {"name": "Annabelle Norman", "character": "Suburban Daughter", "id": 1416913, "credit_id": "54c0f83c925141315a003c66", "cast_id": 73, "profile_path": null, "order": 55}, {"name": "Scott Norman", "character": "Suburban Father", "id": 1416914, "credit_id": "54c0f8abc3a3687929001856", "cast_id": 74, "profile_path": null, "order": 56}, {"name": "Kristen Norman", "character": "Suburban Mother", "id": 1416915, "credit_id": "54c0f8df925141315a003c79", "cast_id": 75, "profile_path": null, "order": 57}, {"name": "Michael Norman", "character": "Suburban Son", "id": 1416916, "credit_id": "54c0f926c3a368792900186e", "cast_id": 76, "profile_path": null, "order": 58}, {"name": "Louise Talmadge", "character": "Mrs. Garner", "id": 1416917, "credit_id": "54c0f96692514124c80015e0", "cast_id": 77, "profile_path": null, "order": 59}, {"name": "Carolyn Shakespeare-Allen", "character": "Older Nurse", "id": 1416922, "credit_id": "54c0fc1c92514124890017a8", "cast_id": 78, "profile_path": null, "order": 60}, {"name": "Noel Herriman", "character": "Dr. Davis", "id": 1416923, "credit_id": "54c0fdd69251416eae00a730", "cast_id": 79, "profile_path": null, "order": 61}, {"name": "Ray Tiernan", "character": "Conner", "id": 1416924, "credit_id": "54c0ff019251416eae00a742", "cast_id": 80, "profile_path": null, "order": 62}], "directors": [{"name": "Michael Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe4d1fc3a368484e1d818f", "profile_path": "/3Y2ofBarFPKzAlpC6GeEXC2rv0A.jpg", "id": 56501}, {"name": "Peter Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe4d1fc3a368484e1d8195", "profile_path": null, "id": 56502}], "vote_average": 7.1, "runtime": 97}, "157336": {"poster_path": "/nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 621752480, "overview": "Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", "video": false, "id": 157336, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Interstellar", "tagline": "Mankind was born on Earth. It was never meant to die here.", "vote_count": 2025, "homepage": "http://www.interstellarmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0816692", "adult": false, "backdrop_path": "/xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Paramount Pictures", "id": 4}, {"name": "Legendary Pictures", "id": 923}, {"name": "Syncopy", "id": 9996}, {"name": "Lynda Obst Productions", "id": 13769}], "release_date": "2014-11-05", "popularity": 30.8576311034797, "original_title": "Interstellar", "budget": 165000000, "cast": [{"name": "Matthew McConaughey", "character": "Cooper", "id": 10297, "credit_id": "52fe4bbf9251416c910e47cb", "cast_id": 9, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Brand", "id": 1813, "credit_id": "52fe4bbf9251416c910e47cf", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Jessica Chastain", "character": "Murph", "id": 83002, "credit_id": "52fe4bbf9251416c910e47f1", "cast_id": 17, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 2}, {"name": "Michael Caine", "character": "Professor Brand", "id": 3895, "credit_id": "52fe4bbf9251416c910e47f5", "cast_id": 18, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Casey Affleck", "character": "Tom", "id": 1893, "credit_id": "52fe4bbf9251416c910e4805", "cast_id": 21, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 4}, {"name": "Ellen Burstyn", "character": "Old Murph", "id": 9560, "credit_id": "52fe4bbf9251416c910e4809", "cast_id": 22, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 5}, {"name": "Matt Damon", "character": "Dr. Mann", "id": 1892, "credit_id": "52fe4bbf9251416c910e482d", "cast_id": 31, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 6}, {"name": "John Lithgow", "character": "Donald", "id": 12074, "credit_id": "52fe4bbf9251416c910e4815", "cast_id": 25, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 7}, {"name": "Timoth\u00e9e Chalamet", "character": "Young Tom", "id": 1190668, "credit_id": "52fe4bbf9251416c910e480d", "cast_id": 23, "profile_path": "/modd4Fp0OCkEIgSTYcejZMxgPr1.jpg", "order": 8}, {"name": "Mackenzie Foy", "character": "Young Murph", "id": 851784, "credit_id": "52fe4bbf9251416c910e4811", "cast_id": 24, "profile_path": "/sC3yotsYEmqoxuaO2xnnqGee4U.jpg", "order": 9}, {"name": "Wes Bentley", "character": "Doyle", "id": 8210, "credit_id": "52fe4bbf9251416c910e4821", "cast_id": 28, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 10}, {"name": "Bill Irwin", "character": "TARS (voice)", "id": 58549, "credit_id": "52fe4bbf9251416c910e4819", "cast_id": 26, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 11}, {"name": "Topher Grace", "character": "Getty", "id": 17052, "credit_id": "52fe4bbf9251416c910e481d", "cast_id": 27, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 12}, {"name": "David Oyelowo", "character": "Principal", "id": 35013, "credit_id": "52fe4bbf9251416c910e4825", "cast_id": 29, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 13}, {"name": "David Gyasi", "character": "Romilly", "id": 55411, "credit_id": "52fe4bbf9251416c910e4829", "cast_id": 30, "profile_path": "/6UgJLtCkGC2YHIK7FwAdGcFbT88.jpg", "order": 14}, {"name": "William Devane", "character": "NASA Board Member", "id": 21416, "credit_id": "54259750c3a3680876005f94", "cast_id": 37, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 15}, {"name": "Josh Stewart", "character": "CASE (voice)", "id": 40039, "credit_id": "545db7ab0e0a261fb6005d65", "cast_id": 38, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 16}, {"name": "Collette Wolfe", "character": "Ms. Kelly", "id": 86624, "credit_id": "545db7d70e0a261fb6005d6f", "cast_id": 39, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 17}, {"name": "Leah Cairns", "character": "Lois", "id": 32202, "credit_id": "545db7f5c3a3686cbb000db6", "cast_id": 40, "profile_path": "/Asuotouxe6Se3stoMP7vrLE1EaD.jpg", "order": 18}, {"name": "Russ Fega", "character": "Crew Chief", "id": 535, "credit_id": "55191d18c3a3684b6b002414", "cast_id": 141, "profile_path": "/7JFQueMbXqGIz16wKBlok7WfNNz.jpg", "order": 19}, {"name": "Lena Georgas", "character": "Nurse Practitioner", "id": 171901, "credit_id": "55191d5b9251416f0000706f", "cast_id": 142, "profile_path": "/a16eFCpLMJ6n2RoOPej372XzWX.jpg", "order": 20}, {"name": "Jeff Hephner", "character": "Doctor", "id": 212689, "credit_id": "55191d8bc3a3682aa8000cb4", "cast_id": 143, "profile_path": "/bNnvbOCBS0LZAqdT1cW2UcrnRw2.jpg", "order": 21}, {"name": "Elyes Gabel", "character": "Administrator", "id": 78050, "credit_id": "55191db092514115000044c3", "cast_id": 144, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 22}, {"name": "Brooke Smith", "character": "Nurse", "id": 31649, "credit_id": "55191dd7c3a3684bd80022dc", "cast_id": 145, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 23}, {"name": "Liam Dickinson", "character": "Coop", "id": 1452481, "credit_id": "55287dde92514111d600086d", "cast_id": 146, "profile_path": null, "order": 24}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4bbf9251416c910e47c1", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 8.4, "runtime": 169}, "9882": {"poster_path": "/A1RE1zw37lfLLkFy7H3TYp239td.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40934175, "overview": "The secret US abduction of a suspected terrorist leads to a wave of terrorist attacks in New York that lead to the declaration of martial law.", "video": false, "id": 9882, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Siege", "tagline": "On November 6th our freedom is history", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0133952", "adult": false, "backdrop_path": "/3zQzN87U8pJgLDvVRZ6zj05jEYw.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Bedford Falls Company", "id": 3059}], "release_date": "1998-11-05", "popularity": 0.69963240412146, "original_title": "The Siege", "budget": 70000000, "cast": [{"name": "Denzel Washington", "character": "Anthony 'Hub' Hubbard", "id": 5292, "credit_id": "52fe4540c3a36847f80c3aff", "cast_id": 9, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Annette Bening", "character": "Elise Kraft / Sharon Bridger", "id": 516, "credit_id": "52fe4540c3a36847f80c3b03", "cast_id": 10, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Bruce Willis", "character": "Major-General William Devereaux", "id": 62, "credit_id": "52fe4540c3a36847f80c3b07", "cast_id": 11, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 2}, {"name": "Tony Shalhoub", "character": "Agent Frank Haddad", "id": 4252, "credit_id": "52fe4540c3a36847f80c3b0b", "cast_id": 12, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 3}, {"name": "Sami Bouajila", "character": "Samir Nazhde", "id": 20667, "credit_id": "52fe4540c3a36847f80c3b0f", "cast_id": 13, "profile_path": "/yhO2glkC0jqzPAWjJePHdMByRP3.jpg", "order": 4}, {"name": "Mark Valley", "character": "FBI Agent Mike Johanssen", "id": 136530, "credit_id": "52fe4540c3a36847f80c3b13", "cast_id": 14, "profile_path": "/bWCr7EhKM0aB19fONmeGcetMlQa.jpg", "order": 5}, {"name": "Jack Gwaltney", "character": "Fred Darius", "id": 159850, "credit_id": "52fe4540c3a36847f80c3b17", "cast_id": 15, "profile_path": "/umRHAAGWzE0jh88JWnC2w1UHL53.jpg", "order": 6}, {"name": "David Proval", "character": "Danny Sussman", "id": 2555, "credit_id": "52fe4540c3a36847f80c3b1b", "cast_id": 16, "profile_path": "/ujBzP61tYlwqWpB3oOxknl1XuEg.jpg", "order": 7}, {"name": "Lance Reddick", "character": "FBI Agent Floyd Rose", "id": 129101, "credit_id": "52fe4540c3a36847f80c3b1f", "cast_id": 17, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 8}, {"name": "Aasif Mandvi", "character": "Khalil Saleh", "id": 20644, "credit_id": "52fe4540c3a36847f80c3b23", "cast_id": 18, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 9}, {"name": "Wood Harris", "character": "Officer Henderson", "id": 65829, "credit_id": "52fe4540c3a36847f80c3b27", "cast_id": 19, "profile_path": "/u88haG6iG7zwV0PTk9tSG5obaeP.jpg", "order": 10}, {"name": "David Costabile", "character": "Fingerprint Expert", "id": 82167, "credit_id": "52fe4540c3a36847f80c3b2b", "cast_id": 20, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 11}, {"name": "Said Faraj", "character": "Sleeper terrorist", "id": 109670, "credit_id": "52fe4540c3a36847f80c3b2f", "cast_id": 21, "profile_path": "/kC26rThX0RbOHzddmSdhqVqnxrF.jpg", "order": 12}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe4540c3a36847f80c3ad1", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.1, "runtime": 116}, "1691": {"poster_path": "/1jDKYjo6pUR8K69oTFE8PMjefTt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35246833, "overview": "4 beautiful college students are tricked into entering a hostel where the 'hosts' like to torture, rape and murder. Following a geographical tour of Slovakia, three women are lured into a hostel by a handsome young man who sells them to the twisted masters, who tie them up and bring upon an unthinkable world of pain", "video": false, "id": 1691, "genres": [{"id": 27, "name": "Horror"}], "title": "Hostel: Part II", "tagline": "", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rXf4gEh8m3ZcK9KHkxT78Kscxee.jpg", "poster_path": "/2jLQFRlH8CC9cptcANY5cEtC1q8.jpg", "id": 86578, "name": "Hostel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0498353", "adult": false, "backdrop_path": "/lshpN0UfiHqan1G9HalSUQVTJdJ.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}, {"name": "Screen Gems", "id": 3287}, {"name": "Next Entertainment", "id": 1633}], "release_date": "2007-06-08", "popularity": 0.692374892067911, "original_title": "Hostel: Part II", "budget": 10200000, "cast": [{"name": "Lauren German", "character": "Beth", "id": 37014, "credit_id": "52fe430cc3a36847f8036b11", "cast_id": 13, "profile_path": "/7TdS4sFvBzUDahM65VWVYXcFXH2.jpg", "order": 0}, {"name": "Bijou Phillips", "character": "Whitney", "id": 11671, "credit_id": "52fe430cc3a36847f8036b19", "cast_id": 15, "profile_path": "/qsgjswOAcTeRQCfYqDJK2Ke4te8.jpg", "order": 1}, {"name": "Heather Matarazzo", "character": "Lorna", "id": 33656, "credit_id": "52fe430cc3a36847f8036b15", "cast_id": 14, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 2}, {"name": "Richard Burgi", "character": "Todd", "id": 25849, "credit_id": "52fe430cc3a36847f8036b1d", "cast_id": 16, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 3}, {"name": "Roger Bart", "character": "Stuart", "id": 45566, "credit_id": "52fe430dc3a36847f8036b45", "cast_id": 26, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 4}, {"name": "Vera Jordanova", "character": "Axelle", "id": 37015, "credit_id": "52fe430cc3a36847f8036b21", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Jay Hernandez", "character": "Paxton", "id": 19487, "credit_id": "52fe430cc3a36847f8036b25", "cast_id": 18, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 6}, {"name": "Jordan Ladd", "character": "Stephanie", "id": 20492, "credit_id": "52fe430dc3a36847f8036b29", "cast_id": 19, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 7}, {"name": "Stanislav Ianevski", "character": "Miroslav", "id": 11290, "credit_id": "52fe430dc3a36847f8036b2d", "cast_id": 20, "profile_path": "/rfsv03YZfB2cv2y26IzgdnuyuBl.jpg", "order": 8}, {"name": "Zuzana Geislerov\u00e1", "character": "Inya", "id": 37016, "credit_id": "52fe430dc3a36847f8036b31", "cast_id": 21, "profile_path": "/bk8janB6nETOz2ZTJ2onHrDFViH.jpg", "order": 9}, {"name": "Milan K\u0148a\u017eko", "character": "Sasha", "id": 37017, "credit_id": "52fe430dc3a36847f8036b35", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Petr Van\u010dura", "character": "Pavel", "id": 37018, "credit_id": "52fe430dc3a36847f8036b39", "cast_id": 23, "profile_path": "/7HZlywkn7UwnMPM2rrefVaUi8o1.jpg", "order": 11}, {"name": "Roman Janecka", "character": "Roman", "id": 37019, "credit_id": "52fe430dc3a36847f8036b3d", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Davide Dominici", "character": "Riccardo", "id": 37020, "credit_id": "52fe430dc3a36847f8036b41", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Edwige Fenech", "character": "Art Class Professor", "id": 44434, "credit_id": "52fe430dc3a36847f8036b49", "cast_id": 27, "profile_path": "/fz85mynMO5i2lyLhQsS2Cg9PCmS.jpg", "order": 14}, {"name": "Liliya Malkina", "character": "Make-Up Woman", "id": 45568, "credit_id": "52fe430dc3a36847f8036b4d", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Luc Merenda", "character": "Italian Detective", "id": 36913, "credit_id": "52fe430dc3a36847f8036b51", "cast_id": 29, "profile_path": "/uSM73n88qekWYfcReVv9CROsvH6.jpg", "order": 16}, {"name": "Susanna Bequer", "character": "Italian Translator", "id": 45570, "credit_id": "52fe430dc3a36847f8036b55", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Monika Malacova", "character": "Mrs. Barthory", "id": 45571, "credit_id": "52fe430dc3a36847f8036b59", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Ruggero Deodato", "character": "Cannibal", "id": 45572, "credit_id": "52fe430dc3a36847f8036b5d", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "Eli Roth", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f8036ad7", "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "id": 16847}], "vote_average": 5.8, "runtime": 93}, "9884": {"poster_path": "/o5TScwlDu3uPzbqZ5IYwlUtMP4O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78382433, "overview": "Firefighter Gordon Brewer is plunged into the complex and dangerous world of international terrorism after he loses his wife and child in a bombing credited to Claudio \"The Wolf\" Perrini.", "video": false, "id": 9884, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Collateral Damage", "tagline": "What would you do if you lost everything?", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0233469", "adult": false, "backdrop_path": "/84MR5ejizt57QpulfR4FXN8gA4h.jpg", "production_companies": [{"name": "David Foster Productions", "id": 496}, {"name": "Hacienda Productions", "id": 43717}, {"name": "Warner Bros.", "id": 6194}, {"name": "Bel Air Entertainment", "id": 788}], "release_date": "2002-02-08", "popularity": 0.798874523304468, "original_title": "Collateral Damage", "budget": 85000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Gordy Brewer", "id": 1100, "credit_id": "52fe4540c3a36847f80c3c0d", "cast_id": 14, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Francesca Neri", "character": "Selena Perrini", "id": 3809, "credit_id": "52fe4540c3a36847f80c3c11", "cast_id": 15, "profile_path": "/A6vL0QH8TjxjLBLAZW47XGBLNE8.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Peter Brandt", "id": 13550, "credit_id": "52fe4540c3a36847f80c3c15", "cast_id": 16, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Cliff Curtis", "character": "Claudio Perrini", "id": 7248, "credit_id": "52fe4540c3a36847f80c3c19", "cast_id": 17, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 3}, {"name": "John Turturro", "character": "Sean Amstrong", "id": 1241, "credit_id": "52fe4540c3a36847f80c3c1d", "cast_id": 18, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 4}, {"name": "John Leguizamo", "character": "Felix Ramirez", "id": 5723, "credit_id": "52fe4540c3a36847f80c3c21", "cast_id": 19, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 5}, {"name": "Harry Lennix", "character": "FBI Agent Dray", "id": 9464, "credit_id": "52fe4540c3a36847f80c3c25", "cast_id": 20, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 6}, {"name": "Lindsay Frost", "character": "Anne Brewer", "id": 26294, "credit_id": "52fe4540c3a36847f80c3c29", "cast_id": 21, "profile_path": "/2TOoIVvS74g05wgj9MzgzLMtJOU.jpg", "order": 7}, {"name": "Tyler Posey", "character": "Mauro", "id": 53280, "credit_id": "536557170e0a2647c8001b43", "cast_id": 25, "profile_path": "/mkh15TUgPCq8AyEm65dno1VPxu0.jpg", "order": 8}, {"name": "Michael Milhoan", "character": "Jack", "id": 154295, "credit_id": "54b296dd92514107e000325b", "cast_id": 97, "profile_path": null, "order": 9}, {"name": "Rick Worthy", "character": "Ronnie", "id": 61545, "credit_id": "54b296f892514107e0003263", "cast_id": 98, "profile_path": "/vaKDRpwvKj24AHNKmZX22v4OLwK.jpg", "order": 10}, {"name": "Madison Mason", "character": "Undersecretary Shrub", "id": 118756, "credit_id": "54b2972792514107e0003266", "cast_id": 99, "profile_path": "/t3FdfHpAVx7wYcZFWk1WmowsKBv.jpg", "order": 11}, {"name": "Miguel Sandoval", "character": "Joe Phipps", "id": 30488, "credit_id": "54b2974cc3a368210c001579", "cast_id": 100, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 12}, {"name": "Ethan Dampf", "character": "Matt Brewer", "id": 1233911, "credit_id": "54b2976b9251416fe10038b1", "cast_id": 101, "profile_path": null, "order": 13}, {"name": "Jorge Zepeda", "character": "Rocha", "id": 1190010, "credit_id": "54b2978cc3a368210c00157d", "cast_id": 102, "profile_path": null, "order": 14}, {"name": "Michael Cavanaugh", "character": "Chairman Paul Devereaux", "id": 101172, "credit_id": "54b297bd9251416fe10038ba", "cast_id": 103, "profile_path": "/9LiWhytapMAimpOasWcc9d78gMA.jpg", "order": 15}, {"name": "Nicholas Pryor", "character": "Senator Delich", "id": 13028, "credit_id": "54b297e192514107e0003278", "cast_id": 104, "profile_path": "/jqJVM5jEVq2Xqi8G5fO0iiEnd5O.jpg", "order": 16}, {"name": "J. Kenneth Campbell", "character": "Ed Coonts", "id": 97944, "credit_id": "54b2980692514114a2001cc9", "cast_id": 105, "profile_path": null, "order": 17}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe4540c3a36847f80c3bc1", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.2, "runtime": 108}, "9885": {"poster_path": "/eiQqXee0LwUvwHWp6QnZDoP1qdI.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 22500000, "overview": "Stranded backpackers in remote Australia fall prey to a murderous bushman who offers to fix their car, then takes them captive", "video": false, "id": 9885, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wolf Creek", "tagline": "The Thrill Is In The Hunt.", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/irwRpTRWFL2W0ofRswf2nfa7Vmg.jpg", "poster_path": "/1b5hJeNfzx8iYLlmVvW7oKnfyoy.jpg", "id": 268098, "name": "Wolf Creek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416315", "adult": false, "backdrop_path": "/mQbe5JOe4AZJewuIQkWzSWOKbEu.jpg", "production_companies": [{"name": "South Australian Film Corporation", "id": 2806}, {"name": "Australian Film Finance Corporation", "id": 1380}, {"name": "403 Productions", "id": 6016}, {"name": "True Crime Channel", "id": 6017}], "release_date": "2005-11-02", "popularity": 0.657501196218338, "original_title": "Wolf Creek", "budget": 1000000, "cast": [{"name": "John Jarratt", "character": "Mick Taylor", "id": 45210, "credit_id": "52fe4541c3a36847f80c3c83", "cast_id": 8, "profile_path": "/pG2OV7KBXbMzcirLuoLWN7Uoyfq.jpg", "order": 0}, {"name": "Cassandra Magrath", "character": "Liz Hunter", "id": 60003, "credit_id": "52fe4541c3a36847f80c3c87", "cast_id": 9, "profile_path": null, "order": 1}, {"name": "Kestie Morassi", "character": "Kristy Earl", "id": 60004, "credit_id": "52fe4541c3a36847f80c3c8b", "cast_id": 10, "profile_path": "/1gbSEg9Cb77QLczmgPtApTdtFz4.jpg", "order": 2}, {"name": "Nathan Phillips", "character": "Ben Mitchell", "id": 60005, "credit_id": "52fe4541c3a36847f80c3c8f", "cast_id": 11, "profile_path": "/mgR2JHtOp9sjvdj2me1p7wyJV4d.jpg", "order": 3}, {"name": "Andy McPhee", "character": "Bazza", "id": 78962, "credit_id": "52fe4541c3a36847f80c3c93", "cast_id": 12, "profile_path": "/x3MFZjfrrMKde4NtGW40nleLidu.jpg", "order": 4}, {"name": "Darren Humphreys", "character": "Detective", "id": 1326332, "credit_id": "538ae9da0e0a266712000f78", "cast_id": 17, "profile_path": null, "order": 5}], "directors": [{"name": "Greg Mclean", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3c5b", "profile_path": null, "id": 59998}], "vote_average": 5.8, "runtime": 99}, "9886": {"poster_path": "/zeRDXHsb0gJbZH6JMdEx3wu2bOD.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The year is 2021, and half of the Earth's population is suffering from the disease known as Nerve Attenuation Syndrome (NAS). Johnny, a mnemonic data courier, is hired to carry 320 gigabytes of crucial information to safety from the Pharmacom corporation. Pursued by Yakuza agents and a crazed cyborg, Johnny must deliver the data or die in twenty-four hours.", "video": false, "id": 9886, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Johnny Mnemonic", "tagline": "The hottest data on earth. In the coolest head in town.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113481", "adult": false, "backdrop_path": "/vNsGZPwf45rA3BrXEu8TVRwSqKF.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Alliance Communications Corporation", "id": 2480}], "release_date": "1995-05-26", "popularity": 0.609669705983361, "original_title": "Johnny Mnemonic", "budget": 26000000, "cast": [{"name": "Keanu Reeves", "character": "Johnny Mnemonic", "id": 6384, "credit_id": "52fe4541c3a36847f80c3d27", "cast_id": 10, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Dina Meyer", "character": "Jane", "id": 2133, "credit_id": "52fe4541c3a36847f80c3d2b", "cast_id": 11, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 1}, {"name": "Takeshi Kitano", "character": "Takahashi", "id": 3317, "credit_id": "52fe4541c3a36847f80c3d2f", "cast_id": 12, "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "order": 2}, {"name": "Ice-T", "character": "J-Bone", "id": 21411, "credit_id": "52fe4541c3a36847f80c3d33", "cast_id": 13, "profile_path": "/473ie6TLuINUDXtt3ZPbG8Zgf4y.jpg", "order": 3}, {"name": "Dolph Lundgren", "character": "Street Preacher", "id": 16644, "credit_id": "52fe4541c3a36847f80c3d3b", "cast_id": 15, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 5}, {"name": "Henry Rollins", "character": "Spider", "id": 9290, "credit_id": "52fe4541c3a36847f80c3d3f", "cast_id": 16, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 6}, {"name": "Barbara Sukowa", "character": "Anna Kalmann", "id": 23378, "credit_id": "52fe4541c3a36847f80c3d43", "cast_id": 17, "profile_path": "/iFSE2g4HZlbVSgG6FMaLLFJTGvV.jpg", "order": 7}, {"name": "Udo Kier", "character": "Ralfi", "id": 1646, "credit_id": "52fe4541c3a36847f80c3d47", "cast_id": 18, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 8}, {"name": "Tracy Tweed", "character": "Pretty", "id": 122159, "credit_id": "52fe4541c3a36847f80c3d4b", "cast_id": 19, "profile_path": "/hYLt3sze7RJAt3YT0t3aOU0zN8K.jpg", "order": 9}, {"name": "Falconer Abraham", "character": "Yomamma", "id": 180682, "credit_id": "52fe4541c3a36847f80c3d4f", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Don Francks", "character": "Hooky", "id": 87461, "credit_id": "52fe4541c3a36847f80c3d53", "cast_id": 21, "profile_path": "/7CP2Hze1CipeDPR171n0ySs3UlN.jpg", "order": 11}, {"name": "Diego Chambers", "character": "Henson", "id": 168614, "credit_id": "52fe4541c3a36847f80c3d57", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Sherry Miller", "character": "Takahashi's Secretary", "id": 43301, "credit_id": "52fe4541c3a36847f80c3d5b", "cast_id": 23, "profile_path": "/rOk4xZmPaHf0CyAoQT3QqIZMgYc.jpg", "order": 13}, {"name": "Arthur Eng", "character": "Viet", "id": 176006, "credit_id": "52fe4541c3a36847f80c3d5f", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Von Flores", "character": "Viet", "id": 64888, "credit_id": "52fe4541c3a36847f80c3d63", "cast_id": 25, "profile_path": "/iuAwdsaVmltuZKOrsDR9n9najuc.jpg", "order": 15}, {"name": "Victoria Tengelis", "character": "Pharmakom Receptionist", "id": 552452, "credit_id": "52fe4541c3a36847f80c3d67", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Warren Sulatycky", "character": "Yakuza Operator", "id": 185133, "credit_id": "52fe4541c3a36847f80c3d6b", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Celina Wu", "character": "Mikiyo", "id": 552453, "credit_id": "52fe4541c3a36847f80c3d6f", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Gene Mack", "character": "Laslo", "id": 174954, "credit_id": "52fe4541c3a36847f80c3d73", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Jamie Elman", "character": "Toad", "id": 95002, "credit_id": "52fe4541c3a36847f80c3d77", "cast_id": 30, "profile_path": "/1YOxX9IhLp8TeLnsAA2bimC70pz.jpg", "order": 20}, {"name": "Simon Sinn", "character": "Man in Hotel Lobby", "id": 185092, "credit_id": "52fe4541c3a36847f80c3d7b", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Caitlin Carmody", "character": "Twin in Hotel Lobby", "id": 552454, "credit_id": "52fe4541c3a36847f80c3d7f", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Erin Carmody", "character": "Twin in Hotel Lobby", "id": 552455, "credit_id": "52fe4541c3a36847f80c3d83", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Douglas O'Keeffe", "character": "Pharmakom Security Officer", "id": 182946, "credit_id": "52fe4541c3a36847f80c3d87", "cast_id": 34, "profile_path": "/xQAetTbYePBo4IPZGJrOon99tND.jpg", "order": 24}, {"name": "Marlow Vella", "character": "Lotek Kid", "id": 185109, "credit_id": "52fe4541c3a36847f80c3d8b", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Howard Szafer", "character": "Strike", "id": 552456, "credit_id": "52fe4541c3a36847f80c3d8f", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Paul Brogren", "character": "Stump", "id": 27560, "credit_id": "52fe4541c3a36847f80c3d93", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Arthi Sambasivan", "character": "Nurse", "id": 185125, "credit_id": "52fe4541c3a36847f80c3d97", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Michael A. Miranda", "character": "Stick (as Silvio Oliviero)", "id": 180917, "credit_id": "52fe4541c3a36847f80c3d9b", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Coyote Shivers", "character": "Buddy", "id": 552457, "credit_id": "52fe4541c3a36847f80c3d9f", "cast_id": 40, "profile_path": "/fpbbMbIoQ0VgUDBBUTwdpKZ5nqQ.jpg", "order": 30}, {"name": "Lynne Adams", "character": "Yakuza with Rocket Launcher", "id": 197795, "credit_id": "52fe4541c3a36847f80c3da3", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Michael Shearer", "character": "Yakuza Partner", "id": 552458, "credit_id": "52fe4541c3a36847f80c3da7", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Susan Tsagkaris", "character": "Opera Singer", "id": 552459, "credit_id": "52fe4541c3a36847f80c3dab", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Christopher Comrie", "character": "Beijing Riot Newscaster", "id": 552460, "credit_id": "52fe4541c3a36847f80c3daf", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Robin Crosby", "character": "Girl in Hotel Room", "id": 552461, "credit_id": "52fe4541c3a36847f80c3db3", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "Glenn Bang", "character": "Bandleader (uncredited)", "id": 181020, "credit_id": "52fe4541c3a36847f80c3db7", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Natalie Gray", "character": "Tall Chinese Man (uncredited)", "id": 552462, "credit_id": "52fe4541c3a36847f80c3dbb", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Denis Akiyama", "character": "Shinji", "id": 538687, "credit_id": "55391501c3a3685f9b002360", "cast_id": 50, "profile_path": null, "order": 38}], "directors": [{"name": "Robert Longo", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3cf9", "profile_path": "/erzaRdEKjBvhDjpBZ2LJr0Idmcm.jpg", "id": 59997}], "vote_average": 5.6, "runtime": 92}, "9889": {"poster_path": "/xhdJKfDp7TihFcO5CF6BFY1xImE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70836296, "overview": "A shallow man falls in love with a 300 pound woman because of her \"inner beauty\".", "video": false, "id": 9889, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Shallow Hal", "tagline": "Are You A Shallow Guy?", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0256380", "adult": false, "backdrop_path": "/k9fMBC1MMgrt4w6IVuB7kTX3yqz.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2001-11-01", "popularity": 0.789192961563577, "original_title": "Shallow Hal", "budget": 40000000, "cast": [{"name": "Gwyneth Paltrow", "character": "Rosemary Shanahan", "id": 12052, "credit_id": "52fe4541c3a36847f80c3e4d", "cast_id": 14, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 0}, {"name": "Jack Black", "character": "Hal Larson", "id": 70851, "credit_id": "52fe4541c3a36847f80c3e51", "cast_id": 15, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 1}, {"name": "Jason Alexander", "character": "Mauricio Wilson", "id": 1206, "credit_id": "52fe4541c3a36847f80c3e55", "cast_id": 16, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 2}, {"name": "Joe Viterelli", "character": "Steve Shanahan", "id": 60023, "credit_id": "52fe4541c3a36847f80c3e59", "cast_id": 17, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Reverend Larson", "id": 14888, "credit_id": "52fe4541c3a36847f80c3e5d", "cast_id": 18, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Tony Robbins", "character": "Tony Robbins", "id": 283444, "credit_id": "52fe4541c3a36847f80c3e61", "cast_id": 19, "profile_path": "/dmrAXl5ChtnhkbSoSF57XqFevYY.jpg", "order": 5}, {"name": "Susan Ward", "character": "Jill", "id": 65239, "credit_id": "52fe4541c3a36847f80c3e65", "cast_id": 20, "profile_path": "/sqYO5l0yvabe8REyqAsXcU0oRuO.jpg", "order": 6}, {"name": "Zen Gesner", "character": "Ralph", "id": 60672, "credit_id": "52fe4541c3a36847f80c3e69", "cast_id": 21, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 7}, {"name": "Brooke Burns", "character": "Katrina", "id": 78837, "credit_id": "52fe4541c3a36847f80c3e6d", "cast_id": 22, "profile_path": "/x68sRsVYCdinMfvITiETJWdH3Ap.jpg", "order": 8}, {"name": "Rob Moran", "character": "Second Tiffany", "id": 162924, "credit_id": "52fe4541c3a36847f80c3e71", "cast_id": 23, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 9}, {"name": "Kyle Gass", "character": "Artie", "id": 22297, "credit_id": "52fe4541c3a36847f80c3e75", "cast_id": 24, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 10}, {"name": "Nan Martin", "character": "Nurse Tanya Peeler", "id": 87039, "credit_id": "52fe4541c3a36847f80c3e79", "cast_id": 25, "profile_path": "/cN7wHsog96Vv3vihOplo4xYRxnH.jpg", "order": 11}, {"name": "Sasha Neulinger", "character": "Young Hal", "id": 203407, "credit_id": "52fe4541c3a36847f80c3e7d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Erinn Bartlett", "character": "Bella", "id": 60953, "credit_id": "52fe4541c3a36847f80c3e81", "cast_id": 27, "profile_path": "/k5T5kR6A8HZmowF3ZbkPF5QtgVg.jpg", "order": 13}, {"name": "Daniel Greene", "character": "Doctor", "id": 42199, "credit_id": "52fe4541c3a36847f80c3e85", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3e01", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3e07", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.4, "runtime": 114}, "9890": {"poster_path": "/zyRTua3RVN3eLaIoXkdiy4XfF4s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102000000, "overview": "What does it take to become a Stepford wife, a woman perfect beyond belief? Ask the Stepford husbands, who've created this high-tech terrifying little town, in a very modern comedy-thriller.", "video": false, "id": 9890, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Stepford Wives", "tagline": "The wives of Stepford have a secret.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327162", "adult": false, "backdrop_path": "/cYfjQSd4naVQwJ3OarKdpbIBzwA.jpg", "production_companies": [{"name": "De Line Pictures", "id": 2609}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2004-06-10", "popularity": 0.712178422844134, "original_title": "The Stepford Wives", "budget": 90000000, "cast": [{"name": "Nicole Kidman", "character": "Joanna Eberhart", "id": 2227, "credit_id": "52fe4542c3a36847f80c3f45", "cast_id": 19, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Walter Kresby", "id": 4756, "credit_id": "52fe4542c3a36847f80c3f49", "cast_id": 20, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "Bette Midler", "character": "Bobbie Markowitz", "id": 73931, "credit_id": "52fe4542c3a36847f80c3f4d", "cast_id": 21, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 2}, {"name": "Glenn Close", "character": "Claire Wellington", "id": 515, "credit_id": "52fe4542c3a36847f80c3f51", "cast_id": 22, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 3}, {"name": "Christopher Walken", "character": "Mike Wellington", "id": 4690, "credit_id": "52fe4542c3a36847f80c3f55", "cast_id": 23, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 4}, {"name": "Roger Bart", "character": "Roger Bannister", "id": 45566, "credit_id": "52fe4542c3a36847f80c3f59", "cast_id": 24, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 5}, {"name": "David Marshall Grant", "character": "Jerry Harmon", "id": 24535, "credit_id": "52fe4542c3a36847f80c3f5d", "cast_id": 25, "profile_path": "/tKe6LIoceX8738rIELToYMuefCH.jpg", "order": 6}, {"name": "Jon Lovitz", "character": "Dave Markowitz", "id": 16165, "credit_id": "52fe4542c3a36847f80c3f67", "cast_id": 27, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 7}, {"name": "Matt Malloy", "character": "Herb Sunderson", "id": 19208, "credit_id": "52fe4542c3a36847f80c3f6b", "cast_id": 28, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 8}, {"name": "Kate Shindle", "character": "Beth Peters", "id": 5351, "credit_id": "52fe4542c3a36847f80c3f6f", "cast_id": 29, "profile_path": "/o7vKewHIL7AuNHb53wZNEALFIT8.jpg", "order": 9}, {"name": "Fallon Brooking", "character": "Kimberly Kresby", "id": 60016, "credit_id": "52fe4542c3a36847f80c3f73", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Robert Stanton", "character": "Ted Van Sant", "id": 53963, "credit_id": "52fe4542c3a36847f80c3f77", "cast_id": 31, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 11}, {"name": "Faith Hill", "character": "Sarah Sunderson", "id": 60017, "credit_id": "52fe4542c3a36847f80c3f7b", "cast_id": 32, "profile_path": "/o3lQUtn6MSa6xjPkqRV7hQ03Ljy.jpg", "order": 12}, {"name": "Dylan Hartigan", "character": "Pete Kresby", "id": 60015, "credit_id": "52fe4542c3a36847f80c3f7f", "cast_id": 33, "profile_path": "/8Te5OtZD4Dq1ILvktsMhGnmetc7.jpg", "order": 13}, {"name": "Tom Riis Farrell", "character": "Stan Peters", "id": 60018, "credit_id": "52fe4542c3a36847f80c3f83", "cast_id": 34, "profile_path": "/7A3LpATFqv2FJYUTq59RQS4m0dP.jpg", "order": 14}, {"name": "Christopher Evan Welch", "character": "Ed Wainwright", "id": 60021, "credit_id": "52fe4542c3a36847f80c3f8b", "cast_id": 36, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 15}, {"name": "Lorri Bagley", "character": "Charmaine Van Sant", "id": 60019, "credit_id": "52fe4542c3a36847f80c3f87", "cast_id": 35, "profile_path": "/2tLdetmNFCt7PC969FlLXhzIU5A.jpg", "order": 16}, {"name": "Lisa Masters", "character": "Carol Wainwright", "id": 60020, "credit_id": "52fe4542c3a36847f80c3f8f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Jason Kravits", "character": "Vic Stevens", "id": 19978, "credit_id": "52fe4542c3a36847f80c3f93", "cast_id": 38, "profile_path": "/cVKEiEDx84xV2KiMKYZcNJLQDWX.jpg", "order": 18}, {"name": "Colleen Dunn", "character": "Marianne Stevens", "id": 60022, "credit_id": "52fe4542c3a36847f80c3f97", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3edb", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 5.5, "runtime": 93}, "1700": {"poster_path": "/ff99EPAbI9qSEsCcSsK3UfqnYdy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Novelist Paul Sheldon crashes his car on a snowy Colorado road. He is found by Annie Wilkes, the \"number one fan\" of Paul's heroine Misery Chastaine. Annie is also somewhat unstable, and Paul finds himself crippled, drugged and at her mercy.", "video": false, "id": 1700, "genres": [{"id": 53, "name": "Thriller"}], "title": "Misery", "tagline": "Paul Sheldon used to write for a living. Now, he's writing to stay alive.", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100157", "adult": false, "backdrop_path": "/43HsIo5PPMIs42tmtNmqiuJVSNR.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Nelson Entertainment", "id": 365}], "release_date": "1990-11-29", "popularity": 0.89912559392569, "original_title": "Misery", "budget": 20000000, "cast": [{"name": "James Caan", "character": "Paul Sheldon", "id": 3085, "credit_id": "52fe430ec3a36847f8037015", "cast_id": 13, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 0}, {"name": "Kathy Bates", "character": "Annie Wilkes", "id": 8534, "credit_id": "52fe430ec3a36847f8037019", "cast_id": 14, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 1}, {"name": "Richard Farnsworth", "character": "Buster", "id": 5605, "credit_id": "52fe430ec3a36847f803701d", "cast_id": 15, "profile_path": "/7obpMM5f6zdDVHGe3SkvXMWOL0q.jpg", "order": 2}, {"name": "Frances Sternhagen", "character": "Virginia", "id": 36926, "credit_id": "52fe430ec3a36847f8037021", "cast_id": 16, "profile_path": "/uFPwqtJObVUyRymTZbgBDWlFxtw.jpg", "order": 3}, {"name": "Lauren Bacall", "character": "Marcia Sindell", "id": 7570, "credit_id": "52fe430ec3a36847f8037025", "cast_id": 17, "profile_path": "/kolRFeufmFpcdRJL6v44FHkqdbJ.jpg", "order": 4}, {"name": "Graham Jarvis", "character": "Libby", "id": 36927, "credit_id": "52fe430ec3a36847f8037029", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Rob Reiner", "character": "Helicopter Pilot", "id": 3026, "credit_id": "52fe430ec3a36847f803702d", "cast_id": 20, "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "order": 6}, {"name": "J. T. Walsh", "character": "State Trooper Sherman Douglas", "id": 22131, "credit_id": "52fe430ec3a36847f8037031", "cast_id": 21, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 7}, {"name": "Jerry Potter", "character": "Pete", "id": 137910, "credit_id": "52fe430ec3a36847f8037035", "cast_id": 22, "profile_path": null, "order": 8}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe430dc3a36847f8036fcf", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.2, "runtime": 107}, "1701": {"poster_path": "/yhaOQ7xXw0PLHLvg1w0M9zlPdg6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 224012234, "overview": "When the government puts all its rotten criminal eggs in one airborne basket, it's asking for trouble. Before you can say, \"Pass the barf bag,\" the crooks control the plane, led by creepy Cyrus \"The Virus\" Grissom. Watching his every move is the just-released Cameron Poe, who'd rather reunite with his family. The action climaxes with an incredible crash sequence in Las Vegas.", "video": false, "id": 1701, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Con Air", "tagline": "They were deadly on the ground; Now they have wings", "vote_count": 402, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118880", "adult": false, "backdrop_path": "/dgbORR9Jh0lXoPJPH02IFNc0F2b.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Kouf/Bigelow Productions", "id": 3589}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1997-06-01", "popularity": 1.13132485169507, "original_title": "Con Air", "budget": 75000000, "cast": [{"name": "Nicolas Cage", "character": "Cameron Poe", "id": 2963, "credit_id": "52fe430ec3a36847f8037065", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "John Cusack", "character": "Marshal Vince Larkin", "id": 3036, "credit_id": "52fe430ec3a36847f8037087", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 1}, {"name": "John Malkovich", "character": "Cyrus Grissom", "id": 6949, "credit_id": "52fe430ec3a36847f803708b", "cast_id": 8, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Nathan Jones", "id": 10182, "credit_id": "52fe430ec3a36847f803708f", "cast_id": 9, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Nick Chinlund", "character": "William Bedford", "id": 18461, "credit_id": "52fe430ec3a36847f8037093", "cast_id": 10, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 4}, {"name": "Steve Buscemi", "character": "Garland Greene", "id": 884, "credit_id": "52fe430ec3a36847f8037097", "cast_id": 11, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 5}, {"name": "Colm Meaney", "character": "Duncan Malloy", "id": 17782, "credit_id": "52fe430ec3a36847f803709b", "cast_id": 12, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 6}, {"name": "Rachel Ticotin", "character": "Sally Bishop", "id": 10768, "credit_id": "52fe430ec3a36847f803709f", "cast_id": 13, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 7}, {"name": "Dave Chappelle", "character": "Joe Parker", "id": 4169, "credit_id": "52fe430ec3a36847f80370a3", "cast_id": 14, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 8}, {"name": "Mykelti Williamson", "character": "Mike O'Dell", "id": 34, "credit_id": "52fe430ec3a36847f80370a7", "cast_id": 15, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Johnny Beca", "id": 11160, "credit_id": "52fe430ec3a36847f80370ab", "cast_id": 16, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "M.C. Gainey", "character": "Swamp Thing", "id": 22132, "credit_id": "52fe430ec3a36847f80370af", "cast_id": 18, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 11}, {"name": "Steve Eastin", "character": "Guard Falzon", "id": 9276, "credit_id": "52fe430ec3a36847f80370b3", "cast_id": 19, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 12}, {"name": "Renoly Santiago", "character": "Ramon Martinez", "id": 28863, "credit_id": "52fe430ec3a36847f80370b7", "cast_id": 20, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 13}, {"name": "Monica Potter", "character": "Tricia Poe", "id": 2140, "credit_id": "52fe430ec3a36847f80370bb", "cast_id": 21, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 14}, {"name": "Landry Allbright", "character": "Casey Poe", "id": 28864, "credit_id": "52fe430ec3a36847f80370bf", "cast_id": 22, "profile_path": null, "order": 15}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe430ec3a36847f803706b", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 6.4, "runtime": 115}, "157350": {"poster_path": "/yTtx2ciqk4XdN1oKhMMDy3f5ue3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 288747895, "overview": "DIVERGENT is a thrilling action-adventure film set in a world where people are divided into distinct factions based on human virtues. Tris Prior is warned she is Divergent and will never fit into any one group. When she discovers a conspiracy by a faction leader to destroy all Divergents, Tris must learn to trust in the mysterious Four and together they must find out what makes being Divergent so dangerous before it's too late. Based on the best-selling book series by Veronica Roth.", "video": false, "id": 157350, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Divergent", "tagline": "What makes you different makes you dangerous.", "vote_count": 1289, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uExS9jcaFBM1wJhkn1Q1P0MFpv6.jpg", "poster_path": "/2tVtmjJTwkieDf4c42SMzKEOyXF.jpg", "id": 283579, "name": "Divergent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1840309", "adult": false, "backdrop_path": "/g6WT9zxATzTy9NVu2xwbxDAxvjd.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Red Wagon Entertainment", "id": 14440}], "release_date": "2014-03-21", "popularity": 4.19135399051496, "original_title": "Divergent", "budget": 85000000, "cast": [{"name": "Shailene Woodley", "character": "Beatrice Prior / Tris", "id": 94185, "credit_id": "52fe4bc09251416c910e49cd", "cast_id": 3, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Miles Teller", "character": "Peter", "id": 996701, "credit_id": "52fe4bc09251416c910e49e5", "cast_id": 9, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 1}, {"name": "Theo James", "character": "Tobias \"Four\" Eaton", "id": 587020, "credit_id": "52fe4bc09251416c910e49dd", "cast_id": 7, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 2}, {"name": "Kate Winslet", "character": "Jeanine Matthews", "id": 204, "credit_id": "52fe4bc09251416c910e49ed", "cast_id": 11, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 3}, {"name": "Ray Stevenson", "character": "Marcus Eaton", "id": 56614, "credit_id": "52fe4bc09251416c910e49e1", "cast_id": 8, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 4}, {"name": "Maggie Q", "character": "Tori", "id": 21045, "credit_id": "52fe4bc09251416c910e49d1", "cast_id": 4, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 5}, {"name": "Zo\u00eb Kravitz", "character": "Christina", "id": 37153, "credit_id": "52fe4bc09251416c910e49d5", "cast_id": 5, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 6}, {"name": "Ansel Elgort", "character": "Caleb Prior", "id": 1159982, "credit_id": "52fe4bc09251416c910e49d9", "cast_id": 6, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 7}, {"name": "Jai Courtney", "character": "Eric", "id": 224181, "credit_id": "52fe4bc09251416c910e49e9", "cast_id": 10, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 8}, {"name": "Ashley Judd", "character": "Natalie Prior", "id": 15852, "credit_id": "52fe4bc09251416c910e49f1", "cast_id": 12, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 9}, {"name": "Tony Goldwyn", "character": "Andrew Prior", "id": 3417, "credit_id": "52fe4bc09251416c910e49f5", "cast_id": 13, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 10}, {"name": "Mekhi Phifer", "character": "Max", "id": 327, "credit_id": "52fe4bc09251416c910e49fd", "cast_id": 15, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 12}, {"name": "Ben Lloyd-Hughes", "character": "Will", "id": 1173230, "credit_id": "52fe4bc09251416c910e4a01", "cast_id": 16, "profile_path": "/mGCcNsBdIb4rngbWs7mK94YGuzA.jpg", "order": 13}, {"name": "Ole Christian Madsen", "character": "Al", "id": 56195, "credit_id": "52fe4bc09251416c910e4a05", "cast_id": 17, "profile_path": "/zn8j11Fi8aNwe4Gz5GrtyEC4wLW.jpg", "order": 14}, {"name": "Ben Lamb", "character": "Edward", "id": 1173231, "credit_id": "52fe4bc09251416c910e4a09", "cast_id": 18, "profile_path": "/fcEjCuQsclcL2puhrLZjM1V5Qy4.jpg", "order": 15}, {"name": "Brandon Cyrus", "character": "Dauntless", "id": 1329572, "credit_id": "53973549c3a3684e360026d1", "cast_id": 20, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 16}, {"name": "Amy Newbold", "character": "Molly", "id": 1352383, "credit_id": "53e9611ac3a3680eb9000176", "cast_id": 24, "profile_path": "/3tesQbqpwNDkDX8tY08cT1a1vv.jpg", "order": 17}], "directors": [{"name": "Neil Burger", "department": "Directing", "job": "Director", "credit_id": "52fe4bc09251416c910e49c3", "profile_path": "/eUDHt2OWYnCwC8FOVIgU2uTPK3x.jpg", "id": 17329}], "vote_average": 7.0, "runtime": 139}, "9896": {"poster_path": "/41C7mmlYiu0lWB9ARDN4kvKMOcJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85498534, "overview": "An all-star comedy cast brings laughs from start to finish when a casino tycoon gives six money crazed contestants the chance to win $2 million in a race from Las Vegas to New Mexico. Who will win this dash for the cash is anybody's guess, but one thing is for sure - it's going to be a hilarious ride.", "video": false, "id": 9896, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Rat Race", "tagline": "563 miles. 9 people. $2 million. 1001 problems!", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0250687", "adult": false, "backdrop_path": "/n1EbYtXBcqnnEfbr4tNT7ati2Mr.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2001-07-30", "popularity": 0.769092269384146, "original_title": "Rat Race", "budget": 48000000, "cast": [{"name": "Cuba Gooding Jr.", "character": "Owen Templeton", "id": 9777, "credit_id": "52fe4543c3a36847f80c43a7", "cast_id": 9, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 0}, {"name": "Seth Green", "character": "Duane Cody", "id": 13922, "credit_id": "52fe4543c3a36847f80c43ab", "cast_id": 10, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 1}, {"name": "Whoopi Goldberg", "character": "Vera Baker", "id": 2395, "credit_id": "52fe4543c3a36847f80c43af", "cast_id": 11, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Nick Schaffer", "id": 33654, "credit_id": "52fe4543c3a36847f80c43b3", "cast_id": 12, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Amy Smart", "character": "Tracy Faucet", "id": 20189, "credit_id": "52fe4543c3a36847f80c43b7", "cast_id": 13, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 4}, {"name": "John Cleese", "character": "Donald P. Sinclair", "id": 8930, "credit_id": "52fe4543c3a36847f80c43bb", "cast_id": 14, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Wayne Knight", "character": "Zack Mallozzi", "id": 4201, "credit_id": "52fe4543c3a36847f80c43bf", "cast_id": 15, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 6}, {"name": "Vince Vieluf", "character": "Blaine Cody", "id": 58381, "credit_id": "52fe4543c3a36847f80c43c7", "cast_id": 17, "profile_path": "/g4I0Turxzv90gTj35ksjGQ0NOon.jpg", "order": 7}, {"name": "Lanei Chapman", "character": "Merrill Jennings", "id": 206202, "credit_id": "52fe4543c3a36847f80c43cb", "cast_id": 18, "profile_path": "/iz6oHIaEtj5jsTOjP6lQaXamgJo.jpg", "order": 8}, {"name": "Jon Lovitz", "character": "Randy Pear", "id": 16165, "credit_id": "52fe4543c3a36847f80c43cf", "cast_id": 19, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 9}, {"name": "Kathy Najimy", "character": "Beverly Pear", "id": 11074, "credit_id": "52fe4543c3a36847f80c43d3", "cast_id": 20, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 10}, {"name": "Rowan Atkinson", "character": "Enrico Pollini", "id": 10730, "credit_id": "52fe4543c3a36847f80c43d7", "cast_id": 21, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 11}, {"name": "Dave Thomas", "character": "Harold Grisham", "id": 61961, "credit_id": "52fe4543c3a36847f80c43db", "cast_id": 22, "profile_path": "/qWQ330du0Uu1Q8wAq9hMoYmOJ5Q.jpg", "order": 12}, {"name": "Paul Rodr\u00edguez", "character": "Gus the Cabbie", "id": 55259, "credit_id": "52fe4543c3a36847f80c43df", "cast_id": 23, "profile_path": "/lbI7Ot0rg6jhqhDwYpGFGQIA9BC.jpg", "order": 13}, {"name": "Dean Cain", "character": "Shawn Kent", "id": 21721, "credit_id": "52fe4543c3a36847f80c43e3", "cast_id": 24, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 14}, {"name": "Brandy Ledford", "character": "Vicky", "id": 119759, "credit_id": "52fe4543c3a36847f80c43e7", "cast_id": 25, "profile_path": "/uv23pFSWtkHbKYm8gbJxBZalNjM.jpg", "order": 15}, {"name": "Silas Weir Mitchell", "character": "Lloyd", "id": 49815, "credit_id": "52fe4543c3a36847f80c43eb", "cast_id": 26, "profile_path": "/4fNFjEtuWEMV4d6QnLIyArx6wSr.jpg", "order": 16}, {"name": "Gloria Allred", "character": "Herself", "id": 174838, "credit_id": "52fe4543c3a36847f80c43c3", "cast_id": 16, "profile_path": "/5FW62aHjF09xJgEyM6CdMfQRD2Y.jpg", "order": 17}, {"name": "Kathy Bates", "character": "The Squirrel Lady", "id": 8534, "credit_id": "52fe4543c3a36847f80c43ef", "cast_id": 27, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 18}, {"name": "Colleen Camp", "character": "Rainbow House Nurse", "id": 13023, "credit_id": "52fe4543c3a36847f80c43f3", "cast_id": 28, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 19}], "directors": [{"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe4543c3a36847f80c4379", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.0, "runtime": 112}, "157353": {"poster_path": "/4eESVBvr7KEvPGUZVL5LDWsANda.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103000000, "overview": "Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.", "video": false, "id": 157353, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Transcendence", "tagline": "Yesterday, Dr. Will Caster was only human...", "vote_count": 784, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2209764", "adult": false, "backdrop_path": "/oZY3DOlEZbEZvRxWynWkFTe4UgE.jpg", "production_companies": [{"name": "DMG Entertainment", "id": 10289}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Syncopy", "id": 9996}, {"name": "Straight Up Films", "id": 13403}], "release_date": "2014-04-17", "popularity": 2.76856729010618, "original_title": "Transcendence", "budget": 100000000, "cast": [{"name": "Johnny Depp", "character": "Dr. Will Caster", "id": 85, "credit_id": "52fe4bc19251416c910e4adf", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Max Waters", "id": 6162, "credit_id": "52fe4bc19251416c910e4ae3", "cast_id": 3, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Rebecca Hall", "character": "Evelyn Caster", "id": 15556, "credit_id": "52fe4bc19251416c910e4b35", "cast_id": 20, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 2}, {"name": "Kate Mara", "character": "Bree", "id": 51072, "credit_id": "52fe4bc19251416c910e4b39", "cast_id": 21, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 3}, {"name": "Morgan Freeman", "character": "Joseph Tagger", "id": 192, "credit_id": "52fe4bc19251416c910e4b3d", "cast_id": 22, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 4}, {"name": "Cillian Murphy", "character": "Agent Donald Buchanan", "id": 2037, "credit_id": "52fe4bc19251416c910e4b47", "cast_id": 24, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 5}, {"name": "Cole Hauser", "character": "Colonel Stevens", "id": 6614, "credit_id": "52fe4bc19251416c910e4b4b", "cast_id": 25, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 6}, {"name": "Clifton Collins, Jr.", "character": "Martin", "id": 5365, "credit_id": "52fe4bc19251416c910e4b4f", "cast_id": 26, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 7}, {"name": "Falk Hentschel", "character": "Bob", "id": 118643, "credit_id": "532c7e989251413a6f00001c", "cast_id": 27, "profile_path": "/6NFuHgdtpJ6dY8wqZ8CV95N82Z7.jpg", "order": 8}, {"name": "Kristen Rakes", "character": "MIT Programmer", "id": 1144931, "credit_id": "532c7ea79251413a7800000f", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Cory Hardrict", "character": "Joel Edmund", "id": 74302, "credit_id": "53fc534fc3a36873610064ad", "cast_id": 81, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 10}, {"name": "Josh Stewart", "character": "Paul", "id": 40039, "credit_id": "53fc53b8c3a368735e0067b2", "cast_id": 82, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 11}, {"name": "Luce Rains", "character": "Roger", "id": 53969, "credit_id": "53fc53e0c3a368734c0063f9", "cast_id": 83, "profile_path": "/1vn8TGhhs1aDSzFHUC0wHp9X9P1.jpg", "order": 12}, {"name": "Fernando Chien", "character": "Heng", "id": 216782, "credit_id": "53fc53fac3a368734f00627b", "cast_id": 84, "profile_path": "/lnMvhgE5ZKBaWvGN6beUJUqeHxD.jpg", "order": 13}, {"name": "Steven Liu", "character": "Chiu", "id": 1357076, "credit_id": "53fc5429c3a368734f00627e", "cast_id": 85, "profile_path": null, "order": 14}, {"name": "Xander Berkeley", "character": "Dr. Thomas Casey", "id": 3982, "credit_id": "53fc5445c3a368734c006403", "cast_id": 86, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 15}, {"name": "Lukas Haas", "character": "James Thomas", "id": 526, "credit_id": "53fc5465c3a3687355006564", "cast_id": 87, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 16}, {"name": "Wallace Langham", "character": "Dr. Strauss", "id": 17421, "credit_id": "53fc5481c3a36873520064fe", "cast_id": 88, "profile_path": "/UODZ2FuyJixy8CCqv190KIlncR.jpg", "order": 17}], "directors": [{"name": "Wally Pfister", "department": "Directing", "job": "Director", "credit_id": "52fe4bc19251416c910e4adb", "profile_path": "/tyYtVatXW16EM7NYJZkxI3K2NQi.jpg", "id": 559}], "vote_average": 6.0, "runtime": 119}, "157354": {"poster_path": "/aAKEdeDYxsXgGK24mnSnXguqEDI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17385830, "overview": "The true story of Oscar, a 22-year-old Bay Area resident, who crosses paths with friends, enemies, family, and strangers on the last day of 2008.", "video": false, "id": 157354, "genres": [{"id": 18, "name": "Drama"}], "title": "Fruitvale Station", "tagline": "Every step brings you closer to the edge.", "vote_count": 105, "homepage": "http://www.fruitvalefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2334649", "adult": false, "backdrop_path": "/v8qyFyJUsvpNVOtizr2ZfQVfJ9C.jpg", "production_companies": [{"name": "Forest Whitaker's Significant Productions", "id": 14638}, {"name": "OG Project", "id": 14639}], "release_date": "2013-07-26", "popularity": 0.772378311770669, "original_title": "Fruitvale Station", "budget": 0, "cast": [{"name": "Michael B. Jordan", "character": "Oscar", "id": 135651, "credit_id": "52fe4bc19251416c910e4b85", "cast_id": 3, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 0}, {"name": "Octavia Spencer", "character": "Wanda", "id": 6944, "credit_id": "52fe4bc19251416c910e4b89", "cast_id": 4, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 1}, {"name": "Melonie Diaz", "character": "Sophina", "id": 53936, "credit_id": "52fe4bc19251416c910e4b8d", "cast_id": 5, "profile_path": "/wBhAieZSMyJVO9Z0Bm6FTfqVq11.jpg", "order": 2}, {"name": "Ahna O'Reilly", "character": "Katie", "id": 999605, "credit_id": "52fe4bc19251416c910e4b91", "cast_id": 6, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 3}, {"name": "Kevin Durand", "character": "Officer Caruso", "id": 79072, "credit_id": "52fe4bc19251416c910e4b95", "cast_id": 7, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Chad Michael Murray", "character": "Officer Ingram", "id": 62747, "credit_id": "52fe4bc19251416c910e4b99", "cast_id": 8, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 5}, {"name": "Christina Elmore", "character": "Ashae", "id": 1295290, "credit_id": "53078f399251411102000183", "cast_id": 19, "profile_path": "/4Lkf5jonSBFZPDLvZRgvX9UjKvi.jpg", "order": 6}], "directors": [{"name": "Ryan Coogler", "department": "Directing", "job": "Director", "credit_id": "52fe4bc19251416c910e4b7b", "profile_path": null, "id": 1056121}], "vote_average": 7.5, "runtime": 85}, "9900": {"poster_path": "/9Z0Q9uIH4il75dfPVqFhVKljfY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6538177, "overview": "Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But he gets kicked out of his apartment and is forced to move in with his grandmother.", "video": false, "id": 9900, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grandma's Boy", "tagline": "A movie that proves you're never to old to come of age.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0456554", "adult": false, "backdrop_path": "/mQDsTjzdyxTfJSe1I4MGTG45JsL.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}], "release_date": "2006-01-06", "popularity": 0.507669074434705, "original_title": "Grandma's Boy", "budget": 0, "cast": [{"name": "Linda Cardellini", "character": "Samantha", "id": 1817, "credit_id": "52fe4544c3a36847f80c4757", "cast_id": 25, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 0}, {"name": "Allen Covert", "character": "Alex", "id": 20818, "credit_id": "52fe4544c3a36847f80c475b", "cast_id": 26, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 1}, {"name": "Peter Dante", "character": "Dante", "id": 20819, "credit_id": "52fe4544c3a36847f80c475f", "cast_id": 27, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 2}, {"name": "Shirley Knight", "character": "Bea", "id": 28778, "credit_id": "52fe4544c3a36847f80c4763", "cast_id": 28, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 3}, {"name": "Joel David Moore", "character": "J.P.", "id": 59231, "credit_id": "52fe4544c3a36847f80c4767", "cast_id": 29, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 4}, {"name": "Kevin Nealon", "character": "Mr. Cheezle", "id": 58478, "credit_id": "52fe4544c3a36847f80c476b", "cast_id": 30, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 5}, {"name": "Doris Roberts", "character": "Grandma Lilly", "id": 45863, "credit_id": "52fe4544c3a36847f80c476f", "cast_id": 31, "profile_path": "/4J9jniy4ZEd6NRTfkzq9prKoEIt.jpg", "order": 6}, {"name": "Shirley Jones", "character": "Grace", "id": 60158, "credit_id": "52fe4544c3a36847f80c4773", "cast_id": 32, "profile_path": "/jZbS3ej52FOUCBSJCQKQS0MtD87.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Jeff", "id": 32907, "credit_id": "52fe4544c3a36847f80c4777", "cast_id": 33, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "Jonah Hill", "character": "Barry", "id": 21007, "credit_id": "52fe4544c3a36847f80c477b", "cast_id": 34, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 9}, {"name": "Kelvin Yu", "character": "Kane", "id": 51997, "credit_id": "52fe4544c3a36847f80c477f", "cast_id": 35, "profile_path": "/tYLvMxo3EBXmAdYUzJp5ymTygS.jpg", "order": 10}, {"name": "Chuck Church", "character": "Dan", "id": 60159, "credit_id": "52fe4544c3a36847f80c4783", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Todd Holland", "character": "Mover #1", "id": 2225, "credit_id": "52fe4544c3a36847f80c4787", "cast_id": 37, "profile_path": "/rzMJq6ZYWtt2cV5Fu8rXifgXmrs.jpg", "order": 12}, {"name": "Scott Halberstadt", "character": "Bobby, Co-Worker #1", "id": 60160, "credit_id": "52fe4544c3a36847f80c478b", "cast_id": 38, "profile_path": "/cc6RACh1FtB363RmK1ek3GhkL9A.jpg", "order": 13}, {"name": "Shana Hiatt", "character": "Pamela Mills", "id": 60162, "credit_id": "52fe4544c3a36847f80c478f", "cast_id": 39, "profile_path": "/l5p0Kgo30DmJdimmUdmLxLimoUO.jpg", "order": 14}, {"name": "Heidi Hawking", "character": "Milk Maid", "id": 60161, "credit_id": "52fe4544c3a36847f80c4793", "cast_id": 40, "profile_path": "/dpC2EZUDCfGXz0fCPHKbrIfn8Tn.jpg", "order": 15}, {"name": "John Kirk", "character": "Businessman", "id": 60163, "credit_id": "52fe4544c3a36847f80c4797", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Joe Koons", "character": "Best Man", "id": 60165, "credit_id": "52fe4544c3a36847f80c479b", "cast_id": 42, "profile_path": "/2jibE2WwoNKkAev9PA7npRMSdhi.jpg", "order": 17}, {"name": "Bryan Ling", "character": "DJ", "id": 60166, "credit_id": "52fe4544c3a36847f80c479f", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Geno Kirkland", "character": "Party Guy", "id": 60164, "credit_id": "52fe4544c3a36847f80c47a3", "cast_id": 44, "profile_path": null, "order": 19}], "directors": [{"name": "Nicholaus Goossen", "department": "Directing", "job": "Director", "credit_id": "52fe4544c3a36847f80c46ed", "profile_path": null, "id": 60149}], "vote_average": 7.3, "runtime": 94}, "9902": {"poster_path": "/kyn0ZC8tvLWuKN85mhlG1lwB1WQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15417771, "overview": "Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.", "video": false, "id": 9902, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wrong Turn", "tagline": "It's the last one you'll ever take.", "vote_count": 196, "homepage": "", "belongs_to_collection": {"backdrop_path": "/32IsLLCoj3mIkZbLfCKSXZVqd3k.jpg", "poster_path": "/dtfQY5ZxvdHNG4HqNDy0ifwk1q6.jpg", "id": 52985, "name": "Wrong Turn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0295700", "adult": false, "backdrop_path": "/sJUHCmbbpkRSA9dfGncCW44sHVg.jpg", "production_companies": [{"name": "Media Cooperation One", "id": 24212}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Newmarket Capital Group", "id": 506}, {"name": "Summit Entertainment", "id": 491}, {"name": "Regency Enterprises", "id": 508}, {"name": "Stan Winston Studio", "id": 24211}], "release_date": "2003-05-30", "popularity": 1.20767828288358, "original_title": "Wrong Turn", "budget": 12000000, "cast": [{"name": "Desmond Harrington", "character": "Chris Flynn", "id": 6365, "credit_id": "52fe4544c3a36847f80c487b", "cast_id": 10, "profile_path": "/Wyv2jiCnJXkVtrRwXOvy1aVemb.jpg", "order": 0}, {"name": "Eliza Dushku", "character": "Jessie Burlingame", "id": 13446, "credit_id": "52fe4544c3a36847f80c487f", "cast_id": 11, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 1}, {"name": "Emmanuelle Chriqui", "character": "Carly", "id": 59192, "credit_id": "52fe4544c3a36847f80c4883", "cast_id": 12, "profile_path": "/d2PyTKZyt5Ndk9am6PJ8u6jRdjH.jpg", "order": 2}, {"name": "Jeremy Sisto", "character": "Scott", "id": 23958, "credit_id": "52fe4544c3a36847f80c4887", "cast_id": 13, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 3}, {"name": "Kevin Zegers", "character": "Evan", "id": 7431, "credit_id": "52fe4544c3a36847f80c4891", "cast_id": 15, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 4}, {"name": "Lindy Booth", "character": "Francine", "id": 51936, "credit_id": "52fe4544c3a36847f80c4895", "cast_id": 16, "profile_path": "/bzquwgIrGxF8xfPCmSiNZ563VdH.jpg", "order": 5}, {"name": "Julian Richings", "character": "Three Finger", "id": 2320, "credit_id": "52fe4544c3a36847f80c4899", "cast_id": 17, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 6}], "directors": [{"name": "Rob Schmidt", "department": "Directing", "job": "Director", "credit_id": "52fe4544c3a36847f80c484d", "profile_path": null, "id": 60243}], "vote_average": 5.9, "runtime": 84}, "225565": {"poster_path": "/lvj2Nqr9RLA6ichyui5Th8oZq5s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three best friends find themselves where we've all been - at that confusing moment in every dating relationship when you have to decide \"So...where is this going?\"", "video": false, "id": 225565, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "That Awkward Moment", "tagline": "When You Realize Getting Some Means Wanting More", "vote_count": 260, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1800246", "adult": false, "backdrop_path": "/gFixDstO3o42mrmWYRFVW9kCEvv.jpg", "production_companies": [{"name": "Treehouse Pictures", "id": 14580}], "release_date": "2014-01-31", "popularity": 1.52540209949946, "original_title": "That Awkward Moment", "budget": 8000000, "cast": [{"name": "Zac Efron", "character": "Jason", "id": 29222, "credit_id": "52fe4e629251416c75154a95", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Miles Teller", "character": "Daniel", "id": 996701, "credit_id": "52fe4e629251416c75154a9d", "cast_id": 3, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 1}, {"name": "Michael B. Jordan", "character": "Mikey", "id": 135651, "credit_id": "52fe4e629251416c75154aa9", "cast_id": 6, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 2}, {"name": "Imogen Poots", "character": "Ellie", "id": 17606, "credit_id": "52fe4e629251416c75154a99", "cast_id": 2, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 3}, {"name": "Mackenzie Davis", "character": "Chelsea", "id": 1110405, "credit_id": "537e97c8c3a368059b001ec2", "cast_id": 18, "profile_path": "/csf5dxwk1IKeVA4xYgWsqp9sVCM.jpg", "order": 4}, {"name": "Jessica Lucas", "character": "Vera", "id": 51989, "credit_id": "52fe4e629251416c75154aa5", "cast_id": 5, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 5}, {"name": "Addison Timlin", "character": "Alana", "id": 56542, "credit_id": "52fe4e629251416c75154aa1", "cast_id": 4, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 6}, {"name": "Josh Pais", "character": "Fred", "id": 6181, "credit_id": "52fe4e629251416c75154ad3", "cast_id": 14, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 7}, {"name": "Evelina Turen", "character": "Sophie", "id": 1266054, "credit_id": "53f80ce7c3a368734f000818", "cast_id": 20, "profile_path": "/myOJDfPJuKz27qqKqzLDOHzHz1v.jpg", "order": 8}, {"name": "Tina Benko", "character": "Ellie's Mom", "id": 60120, "credit_id": "52fe4e629251416c75154add", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Joseph Adams", "character": "Ellie's Dad", "id": 158230, "credit_id": "52fe4e629251416c75154ae1", "cast_id": 17, "profile_path": "/6PeDKsCBCTU0j2Zu1vN9j9iPWcX.jpg", "order": 10}, {"name": "Eugenia Kuzmina", "character": "Girl at the Bar (uncredited)", "id": 1333845, "credit_id": "53a8e574c3a3687a2b006960", "cast_id": 19, "profile_path": "/5TpGe5oRdZ7pt9Rzrjjjt9THL9E.jpg", "order": 11}, {"name": "Emily Meade", "character": "Christy", "id": 71815, "credit_id": "52fe4e629251416c75154acb", "cast_id": 12, "profile_path": "/spevld4WoZYuY2hnjdysbKgxVNK.jpg", "order": 12}, {"name": "Alysia Reiner", "character": "Amanda", "id": 109740, "credit_id": "52fe4e629251416c75154acf", "cast_id": 13, "profile_path": null, "order": 13}, {"name": "Dan Bittner", "character": "Preppy Guy", "id": 1152008, "credit_id": "54c415d092514124ed0064b3", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Tom Gormican", "department": "Directing", "job": "Director", "credit_id": "52fe4e629251416c75154aaf", "profile_path": null, "id": 1211000}], "vote_average": 6.0, "runtime": 94}, "157360": {"poster_path": "/dNtDUD9OzMSDj5Z7ZyDoouLnioU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2963902, "overview": "An underachieving vocal coach is motivated by her father, the king of movie-trailer voice-overs, to pursue her aspirations of becoming a voice-over star. Amidst pride, sexism and family dysfunction, she sets out to change the voice of a generation.", "video": false, "id": 157360, "genres": [{"id": 35, "name": "Comedy"}], "title": "In a World...", "tagline": "Speak up and let your voice be heard.", "vote_count": 67, "homepage": "http://inaworldmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2294677", "adult": false, "backdrop_path": "/zSn3YztpT8tlScZOGSH7J6cnRFm.jpg", "production_companies": [{"name": "3311 Productions", "id": 19632}, {"name": "In A World", "id": 19633}, {"name": "Team G", "id": 19634}], "release_date": "2013-08-09", "popularity": 0.479375491026918, "original_title": "In a World...", "budget": 1000000, "cast": [{"name": "Lake Bell", "character": "Carol", "id": 25703, "credit_id": "52fe4bc29251416c910e4c29", "cast_id": 3, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 0}, {"name": "Rob Corddry", "character": "Moe", "id": 52997, "credit_id": "52fe4bc29251416c910e4c31", "cast_id": 5, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 1}, {"name": "Alexandra Holden", "character": "Jamie", "id": 69399, "credit_id": "52fe4bc29251416c910e4c41", "cast_id": 9, "profile_path": "/yJ6FuYwEts4NC1umABgpIG26jFg.jpg", "order": 2}, {"name": "Eva Longoria", "character": "Herself", "id": 52605, "credit_id": "52fe4bc29251416c910e4ca7", "cast_id": 29, "profile_path": "/AtG3fZHkLcoJGEZfbgDOaeY6Hcx.jpg", "order": 3}, {"name": "Ken Marino", "character": "Gustav", "id": 77089, "credit_id": "52fe4bc29251416c910e4c39", "cast_id": 7, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 4}, {"name": "Demetri Martin", "character": "Louis", "id": 84075, "credit_id": "52fe4bc29251416c910e4c2d", "cast_id": 4, "profile_path": "/puyGH5mGvsky1RU3rcXqB93xq9S.jpg", "order": 5}, {"name": "Fred Melamed", "character": "Sam", "id": 105303, "credit_id": "52fe4bc29251416c910e4c3d", "cast_id": 8, "profile_path": "/uU6e0X8A82tkG8PQFO1hH2PMz4W.jpg", "order": 6}, {"name": "Tig Notaro", "character": "Cher", "id": 220088, "credit_id": "52fe4bc29251416c910e4c57", "cast_id": 14, "profile_path": "/yDqr2bVV7Q5QCs3anKLuTbGWbKi.jpg", "order": 7}, {"name": "Nick Offerman", "character": "Heners", "id": 17039, "credit_id": "52fe4bc29251416c910e4c45", "cast_id": 10, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 8}, {"name": "Michaela Watkins", "character": "Dani", "id": 113224, "credit_id": "52fe4bc29251416c910e4c35", "cast_id": 6, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 9}, {"name": "Geena Davis", "character": "Katherine Huling", "id": 16935, "credit_id": "52fe4bc29251416c910e4c49", "cast_id": 11, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 10}, {"name": "Stephanie Allynne", "character": "Nancy", "id": 1003843, "credit_id": "52fe4bc29251416c910e4c4d", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Melissa Disney", "character": "Melinda Chisney", "id": 92525, "credit_id": "52fe4bc29251416c910e4ca3", "cast_id": 28, "profile_path": "/enMfC5icRP0THFmNZRxjF5YwH3D.jpg", "order": 12}, {"name": "Olya Milova", "character": "Mimi", "id": 1456180, "credit_id": "5532c7099251411014001bde", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Corsica Wilson", "character": "Stacy", "id": 1456181, "credit_id": "5532c729925141529b0035d0", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Yelena Protsenko", "character": "Alla", "id": 1456182, "credit_id": "5532c734c3a368222a003541", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Carly Chaikin", "character": "Excruciating", "id": 114601, "credit_id": "52fe4bc29251416c910e4cb3", "cast_id": 32, "profile_path": "/yNtb4RxjMWxKzPuUg1MIYrTJ9vf.jpg", "order": 16}, {"name": "Janicza Bravo", "character": "Snacks", "id": 1176379, "credit_id": "52fe4bc29251416c910e4cb7", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Jason O'Mara", "character": "Mr. Pouncer", "id": 183812, "credit_id": "52fe4bc29251416c910e4caf", "cast_id": 31, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 18}, {"name": "Talulah Riley", "character": "Pippa", "id": 66441, "credit_id": "52fe4bc29251416c910e4c65", "cast_id": 17, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 19}, {"name": "Erin Soto", "character": "Reality Girl #1", "id": 1340944, "credit_id": "5532c7a49251410921000d26", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Mara Lane", "character": "Reality Girl #2", "id": 48018, "credit_id": "5532c7c89251415295003732", "cast_id": 38, "profile_path": "/jCRmNsIlxnOcuy3R6LlXjvCkMF0.jpg", "order": 21}, {"name": "Erinn Westbrook", "character": "Reality Girl #3", "id": 1274517, "credit_id": "52fe4bc29251416c910e4c5b", "cast_id": 15, "profile_path": "/nsKB0Tn4YV3ec0ss8zETulNSece.jpg", "order": 22}, {"name": "Amy Vorpahl", "character": "Virgin America", "id": 1442828, "credit_id": "5532c7e7c3a36822190038f5", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Hidetoshi Imura", "character": "Asian Man", "id": 1075069, "credit_id": "5532c830c3a368221f003503", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Nancy Gomez", "character": "Bristle Brush Hair Model", "id": 1456183, "credit_id": "5532c842925141529b0035e7", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Jaime Aymerich", "character": "Carlos", "id": 1184093, "credit_id": "5532c863c3a368221d003798", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Marc Graue", "character": "Himself", "id": 1355793, "credit_id": "5532c8869251415295003747", "cast_id": 43, "profile_path": null, "order": 27}, {"name": "Kevin Rock", "character": "Ciatis", "id": 1308819, "credit_id": "5532c8c99251411014001c07", "cast_id": 44, "profile_path": "/md1gxFDcU3Rc8RIWuF8NWpguski.jpg", "order": 28}, {"name": "Joe Cipriano", "character": "Himself", "id": 1237345, "credit_id": "5532c8e89251416310002d7b", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Shobhit Agarwal", "character": "Sloppy Indian", "id": 1456184, "credit_id": "5532c8f7c3a368221900391b", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Don Luce", "character": "Reporter", "id": 1456185, "credit_id": "5532c902c3a368221d0037aa", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Andy Grosso", "character": "Bachelor", "id": 1456186, "credit_id": "5532c90f9251415291003664", "cast_id": 48, "profile_path": null, "order": 32}, {"name": "Mark Elliott", "character": "Himself", "id": 1456187, "credit_id": "5532c94ec3a368222a003570", "cast_id": 49, "profile_path": null, "order": 33}, {"name": "Christina Chang", "character": "Lizzie", "id": 1456188, "credit_id": "5532c9709251411014001c1a", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Paula Sala", "character": "Geico Customer", "id": 1456189, "credit_id": "5532c9b0c3a368222a003583", "cast_id": 51, "profile_path": null, "order": 35}, {"name": "Don LaFontaine", "character": "Himself (archive footage)", "id": 1224467, "credit_id": "5532c9dfc3a36822260038ba", "cast_id": 52, "profile_path": null, "order": 36}, {"name": "Elizabeth Gesas", "character": "Amazon Warrior + Mutant", "id": 1456190, "credit_id": "5532c9f2c3a368221d0037ca", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Carrie Martin", "character": "Amazon Warrior + Mutant", "id": 1456191, "credit_id": "5532ca03c3a368221f003528", "cast_id": 54, "profile_path": null, "order": 38}, {"name": "Nicole LaLiberte", "character": "Amazon Warrior + Mutant", "id": 227477, "credit_id": "5532ca1b9251417ae3001644", "cast_id": 55, "profile_path": "/6EFf3mnYP8YdA72fPWAWG6zMUcK.jpg", "order": 39}, {"name": "Jon Peacy", "character": "Amazon Warrior + Mutant", "id": 1456192, "credit_id": "5532ca24925141529b003620", "cast_id": 56, "profile_path": null, "order": 40}, {"name": "Scott Campbell", "character": "Amazon Warrior + Mutant", "id": 1456193, "credit_id": "5532ca399251416310002d9e", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Michael Burns", "character": "Amazon Warrior + Mutant", "id": 1456194, "credit_id": "5532ca4dc3a36822230035ea", "cast_id": 58, "profile_path": null, "order": 42}, {"name": "Brett Praise", "character": "Amazon Warrior + Mutant", "id": 1456195, "credit_id": "5532ca57c3a368221900394d", "cast_id": 59, "profile_path": null, "order": 43}, {"name": "Gareth Stehr", "character": "Amazon Warrior + Mutant", "id": 1456196, "credit_id": "5532ca60c3a368222a00359a", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Cameron Diaz", "character": "Amazon Leader (uncredited)", "id": 6941, "credit_id": "52fe4bc29251416c910e4c69", "cast_id": 18, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 45}, {"name": "Jeff Garlin", "character": "Himself (uncredited)", "id": 60074, "credit_id": "52fe4bc29251416c910e4cab", "cast_id": 30, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 46}], "directors": [{"name": "Lake Bell", "department": "Directing", "job": "Director", "credit_id": "52fe4bc29251416c910e4c1f", "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "id": 25703}], "vote_average": 6.5, "runtime": 93}, "9906": {"poster_path": "/tBUlwDCdvYC5aP7DzgcmDgrbfec.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55181129, "overview": "Fed up with being targeted by the neighborhood bully, 10-year-old Lucas Nickle vents his frustrations on the anthill in his front yard ... until the insects shrink him to the size of a bug with a magic elixir. Convicted of \"crimes against the colony,\" Lucas can only regain his freedom by living with the ants and learning their ways.", "video": false, "id": 9906, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Ant Bully", "tagline": "The battle for the lawn is on.", "vote_count": 108, "homepage": "http://www.theantbully.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0429589", "adult": false, "backdrop_path": "/eWjDANwpb6XkAWUxhga9yPc9r5B.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "DNA Films", "id": 284}, {"name": "Legendary Pictures", "id": 923}, {"name": "Playtone Production", "id": 2031}], "release_date": "2006-07-27", "popularity": 0.795158628699864, "original_title": "The Ant Bully", "budget": 50000000, "cast": [{"name": "Julia Roberts", "character": "Hova", "id": 1204, "credit_id": "52fe4545c3a36847f80c4c49", "cast_id": 21, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Queen", "id": 5064, "credit_id": "52fe4545c3a36847f80c4c4d", "cast_id": 22, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Nicolas Cage", "character": "Zoc", "id": 2963, "credit_id": "52fe4545c3a36847f80c4c51", "cast_id": 23, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Stan Beals", "id": 13242, "credit_id": "52fe4545c3a36847f80c4c55", "cast_id": 24, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Bruce Campbell", "character": "Fugax", "id": 11357, "credit_id": "52fe4545c3a36847f80c4c59", "cast_id": 25, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 4}, {"name": "Regina King", "character": "Kreela", "id": 9788, "credit_id": "52fe4545c3a36847f80c4c5d", "cast_id": 26, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 5}, {"name": "Lily Tomlin", "character": "Mommo", "id": 10437, "credit_id": "52fe4545c3a36847f80c4c61", "cast_id": 27, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 6}, {"name": "Larry Miller", "character": "Fred Nickle", "id": 1211, "credit_id": "52fe4545c3a36847f80c4c65", "cast_id": 28, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 7}, {"name": "Cheri Oteri", "character": "Doreen Nickle", "id": 60252, "credit_id": "52fe4545c3a36847f80c4c69", "cast_id": 29, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 8}, {"name": "Zach Tyler Eisen", "character": "Lucas Nickle", "id": 60251, "credit_id": "52fe4545c3a36847f80c4c6d", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Ricardo Montalban", "character": "Head of Council", "id": 1793, "credit_id": "52fe4545c3a36847f80c4c71", "cast_id": 31, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 10}, {"name": "Myles Jeffrey", "character": "Steve", "id": 11157, "credit_id": "52fe4545c3a36847f80c4c75", "cast_id": 32, "profile_path": "/snKwcKNBaIWKNv0dHzlB8h9q935.jpg", "order": 11}, {"name": "Creagen Dow", "character": "Mullet Boy", "id": 60254, "credit_id": "52fe4545c3a36847f80c4c79", "cast_id": 33, "profile_path": "/lG7rCnwpZhnsNfnnBn1LwQgJfMY.jpg", "order": 12}, {"name": "Frank Welker", "character": "Spindle / Frog / Caterpillar", "id": 15831, "credit_id": "52fe4545c3a36847f80c4c7d", "cast_id": 34, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 13}, {"name": "Mark DeCarlo", "character": "Fly", "id": 60258, "credit_id": "52fe4545c3a36847f80c4c81", "cast_id": 36, "profile_path": "/sKAUAv74kVLM4KMJ9H7PbSqRs29.jpg", "order": 15}, {"name": "Jake T. Austin", "character": "Nicky", "id": 60255, "credit_id": "52fe4545c3a36847f80c4c85", "cast_id": 37, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 16}, {"name": "Allison Mack", "character": "Tiffany Nickle", "id": 60253, "credit_id": "52fe4545c3a36847f80c4c89", "cast_id": 38, "profile_path": "/w2Qul66aJbF9Upe3Hpk5uUufbC.jpg", "order": 17}, {"name": "S. Scott Bullock", "character": "Glow Worm / Wasp Survivor", "id": 60257, "credit_id": "52fe4545c3a36847f80c4c8d", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Paul Greenberg", "character": "Sleeping Ant #1 / Head Lice #1 / Head Lice #2 / Head Lice #3 / Head Lice #4 / Brett", "id": 60259, "credit_id": "52fe4545c3a36847f80c4c91", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Rob Paulsen", "character": "Beetle", "id": 43125, "credit_id": "52fe4545c3a36847f80c4ca1", "cast_id": 43, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 20}], "directors": [{"name": "John A. Davis", "department": "Directing", "job": "Director", "credit_id": "52fe4545c3a36847f80c4bdf", "profile_path": null, "id": 60237}], "vote_average": 5.6, "runtime": 88}, "1715": {"poster_path": "/lgRNj2qa6EWPqJQmtejkGKBZkvm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Homer is an orphan who was never adopted, becoming the favorite of orphanage director Dr. Larch. Dr. Larch imparts his full medical knowledge on Homer, who becomes a skilled, albeit unlicensed, physician. But Homer yearns for a self-chosen life outside the orphanage. What will Homer learn about life and love in the cider house? What of the destiny that Dr. Larch has planned for him?", "video": false, "id": 1715, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Cider House Rules", "tagline": "A story about how far we must travel to find the place where we belong.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0124315", "adult": false, "backdrop_path": "/y2zeVqgDEUVg0oUTLKtBvWqPv79.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "FilmColony", "id": 1811}], "release_date": "1999-12-17", "popularity": 0.70219601889617, "original_title": "The Cider House Rules", "budget": 24000000, "cast": [{"name": "Tobey Maguire", "character": "Homer Wells", "id": 2219, "credit_id": "52fe430fc3a36847f80376cf", "cast_id": 30, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Candy Kendall", "id": 6885, "credit_id": "52fe430fc3a36847f80376d3", "cast_id": 31, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Delroy Lindo", "character": "Mr. Rose", "id": 18792, "credit_id": "52fe430fc3a36847f80376d7", "cast_id": 32, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Wally Worthington", "id": 22226, "credit_id": "52fe430fc3a36847f80376db", "cast_id": 33, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Michael Caine", "character": "Dr. Wilbur Larch", "id": 3895, "credit_id": "52fe430fc3a36847f80376df", "cast_id": 34, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 4}, {"name": "Jane Alexander", "character": "Nurse Edna", "id": 13724, "credit_id": "52fe430fc3a36847f80376e3", "cast_id": 35, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 5}, {"name": "Kathy Baker", "character": "Nurse Angela", "id": 1907, "credit_id": "52fe430fc3a36847f80376e7", "cast_id": 36, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 6}, {"name": "Erykah Badu", "character": "Rose Rose", "id": 4237, "credit_id": "52fe430fc3a36847f80376eb", "cast_id": 37, "profile_path": "/h2RakwuEAGCFaAkBZStap9xWanJ.jpg", "order": 7}, {"name": "Kieran Culkin", "character": "Buster", "id": 18793, "credit_id": "52fe430fc3a36847f80376ef", "cast_id": 38, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 8}, {"name": "Kate Nelligan", "character": "Olive Worthington", "id": 18794, "credit_id": "52fe430fc3a36847f80376f3", "cast_id": 39, "profile_path": "/qesy9idqrmSxzEhdCo0P7Y6HWJO.jpg", "order": 9}, {"name": "Heavy D", "character": "Peaches", "id": 18795, "credit_id": "52fe430fc3a36847f80376f7", "cast_id": 40, "profile_path": "/8HDYOmyNHF3GkzcC6FSRjtYD4Sd.jpg", "order": 10}, {"name": "J.K. Simmons", "character": "Ray Kendall", "id": 18999, "credit_id": "537acde9c3a3685e32000ddf", "cast_id": 41, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 11}, {"name": "Erik Per Sullivan", "character": "Fuzzy", "id": 17190, "credit_id": "537acdfbc3a3685e32000de1", "cast_id": 42, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 12}, {"name": "Paz de la Huerta", "character": "Mary Agnes", "id": 59882, "credit_id": "537ace12c3a3685e14000d6e", "cast_id": 43, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 13}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe430fc3a36847f8037623", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.7, "runtime": 126}, "9909": {"poster_path": "/y5Jee3QmYOlpqfaPPbfvtdVc5wj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180000000, "overview": "LouAnne Johnson is a Marine turned teacher who squares off against a classroom of impudent, inner-city teens, whose bullying tactics nearly drive her out the first day. But Johnson radically changes her lesson plan to include bribery and browbeating (despite objections from the school's prissy principal) in an effort to teach the class that learning is its own reward. Based on LouAnne Johnson's autobiography \"My Posse Don't Do Homework\".", "video": false, "id": 9909, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Dangerous Minds", "tagline": "She Broke the Rules... And Changed Their Lives.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112792", "adult": false, "backdrop_path": "/hf2j8n3vFIS0T4EXpQNkvUvBnQd.jpg", "production_companies": [{"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Via Rosa Productions", "id": 10103}], "release_date": "1995-08-11", "popularity": 0.229567883698896, "original_title": "Dangerous Minds", "budget": 0, "cast": [{"name": "Michelle Pfeiffer", "character": "Louanne Johnson", "id": 1160, "credit_id": "52fe4546c3a36847f80c4e73", "cast_id": 13, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 0}, {"name": "George Dzundza", "character": "Hal Griffith", "id": 10477, "credit_id": "52fe4546c3a36847f80c4e77", "cast_id": 14, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 1}, {"name": "Courtney B. Vance", "character": "George Grandey", "id": 24047, "credit_id": "52fe4546c3a36847f80c4e7b", "cast_id": 15, "profile_path": "/x1kO6TTg3rnz0WAxYgmunsPaxvR.jpg", "order": 2}, {"name": "Robin Bartlett", "character": "Carla Nichols", "id": 11902, "credit_id": "52fe4546c3a36847f80c4e7f", "cast_id": 16, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 3}, {"name": "John Neville", "character": "Waiter", "id": 12642, "credit_id": "52fe4546c3a36847f80c4e89", "cast_id": 18, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 4}, {"name": "Beatrice Winde", "character": "Mary Benton", "id": 168638, "credit_id": "52fe4546c3a36847f80c4e8d", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Lorraine Toussaint", "character": "Irene Roberts", "id": 81726, "credit_id": "52fe4546c3a36847f80c4e91", "cast_id": 20, "profile_path": "/tHvHTU5gV68sNig0kUBatXWuwt9.jpg", "order": 6}, {"name": "Renoly Santiago", "character": "Raul Sanchero", "id": 28863, "credit_id": "52fe4546c3a36847f80c4e95", "cast_id": 21, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 7}, {"name": "Wade Dominguez", "character": "Emilio Ramirez", "id": 975133, "credit_id": "52fe4546c3a36847f80c4e99", "cast_id": 22, "profile_path": "/kQlAdesVyIwd2Tg7PyHSZzsND8A.jpg", "order": 8}, {"name": "Bruklin Harris", "character": "Callie Roberts", "id": 188642, "credit_id": "52fe4546c3a36847f80c4e9d", "cast_id": 23, "profile_path": "/jbYhvYwDIMQK3tlZlY5eUN9bOAx.jpg", "order": 9}, {"name": "Mercello Thedford", "character": "Cornelius Bates", "id": 1074671, "credit_id": "52fe4546c3a36847f80c4ea1", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Roberto Alvarez", "character": "Gusmaro Rivera", "id": 156637, "credit_id": "52fe4546c3a36847f80c4ea5", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Richard Grant", "character": "Durrell Benton", "id": 190913, "credit_id": "52fe4546c3a36847f80c4ea9", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Marisela Gonzales", "character": "Angela", "id": 1074672, "credit_id": "52fe4546c3a36847f80c4ead", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Toni Nichelle Buzhardt", "character": "Nikki", "id": 1074673, "credit_id": "52fe4546c3a36847f80c4eb1", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "John N. Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4546c3a36847f80c4e33", "profile_path": null, "id": 60295}], "vote_average": 6.2, "runtime": 99}, "9913": {"poster_path": "/kP7s8PGey0E36JaFoFq2d3gRKNY.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47907715, "overview": "A hospice nurse working at a spooky New Orleans plantation home finds herself entangled in a mystery involving the house's dark past.", "video": false, "id": 9913, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Skeleton Key", "tagline": "Fearing Is Believing", "vote_count": 137, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397101", "adult": false, "backdrop_path": "/5jQBVgdf0FWdzfBnjD7QmLRFsEi.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}, {"name": "ShadowCatcher Entertainment", "id": 12269}, {"name": "Double Feature Films", "id": 215}, {"name": "Daniel Bobker Productions", "id": 12270}, {"name": "Brick Dust Productions LLC", "id": 12271}, {"name": "MFPV Film", "id": 69}], "release_date": "2005-07-29", "popularity": 0.334323144187302, "original_title": "The Skeleton Key", "budget": 40000000, "cast": [{"name": "Kate Hudson", "character": "Caroline Ellis", "id": 11661, "credit_id": "52fe4547c3a36847f80c53cb", "cast_id": 14, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Gena Rowlands", "character": "Violet Devereaux", "id": 4800, "credit_id": "52fe4547c3a36847f80c53cf", "cast_id": 15, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Luke Marshall", "id": 133, "credit_id": "52fe4547c3a36847f80c53d3", "cast_id": 16, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "John Hurt", "character": "Ben Devereaux", "id": 5049, "credit_id": "52fe4547c3a36847f80c53d7", "cast_id": 17, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Joy Bryant", "character": "Jill", "id": 52847, "credit_id": "52fe4547c3a36847f80c53db", "cast_id": 18, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 4}, {"name": "Marion Zinser", "character": "Bayou Woman", "id": 60388, "credit_id": "52fe4547c3a36847f80c53e5", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Maxine Barnett", "character": "Mama Cynthia", "id": 60386, "credit_id": "52fe4547c3a36847f80c53e9", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Fahnlohnee R. Harris", "character": "Hallie", "id": 60387, "credit_id": "52fe4547c3a36847f80c53f3", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Deneen Tyler", "character": "Desk Nurse", "id": 29933, "credit_id": "52fe4547c3a36847f80c53f7", "cast_id": 24, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 8}, {"name": "Ann Dalrymple", "character": "C.N.A.", "id": 60389, "credit_id": "52fe4547c3a36847f80c53fb", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Trula M. Marcus", "character": "Nurse Trula", "id": 60390, "credit_id": "52fe4547c3a36847f80c53ff", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Jen Apgar", "character": "Madeleine Thorpe", "id": 60394, "credit_id": "52fe4547c3a36847f80c5403", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Thomas Uskali", "character": "Robertson Thorpe", "id": 60391, "credit_id": "52fe4547c3a36847f80c5407", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Jamie Lee Redmon", "character": "Grace Thorpe", "id": 60395, "credit_id": "52fe4547c3a36847f80c540b", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Forrest Landis", "character": "Martin Thorpe", "id": 60393, "credit_id": "52fe4547c3a36847f80c540f", "cast_id": 30, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 14}, {"name": "Tonya Staten", "character": "Nurse Audrey", "id": 60392, "credit_id": "52fe4547c3a36847f80c5413", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Isaach De Bankol\u00e9", "character": "Creole Gas Station Owner", "id": 4812, "credit_id": "52fe4547c3a36847f80c5417", "cast_id": 32, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 16}, {"name": "Christa Thorne", "character": "Creole Mother", "id": 60398, "credit_id": "52fe4547c3a36847f80c541b", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Ronald McCall", "character": "Papa Justify", "id": 60396, "credit_id": "52fe4547c3a36847f80c541f", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Jeryl Prescott", "character": "Mama Cecile", "id": 60397, "credit_id": "52fe4547c3a36847f80c5423", "cast_id": 35, "profile_path": null, "order": 19}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe4547c3a36847f80c5385", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.6, "runtime": 104}, "157370": {"poster_path": "/5FfzFGAeljqPBq3sfGnrgXXvvpL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A murder in 1944 draws together the great poets of the beat generation: Allen Ginsberg, Jack Kerouac and William Burroughs.", "video": false, "id": 157370, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Kill Your Darlings", "tagline": "A true story of obsession and murder.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1311071", "adult": false, "backdrop_path": "/eZz81Fc4HhdXGNElr5Uhm8uqSRy.jpg", "production_companies": [{"name": "Killer Films", "id": 1422}], "release_date": "2013-10-16", "popularity": 0.846736057772558, "original_title": "Kill Your Darlings", "budget": 1030064, "cast": [{"name": "Daniel Radcliffe", "character": "Allen Ginsberg", "id": 10980, "credit_id": "52fe4bc29251416c910e4d09", "cast_id": 2, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Elizabeth Olsen", "character": "Edie Parker", "id": 550843, "credit_id": "52fe4bc29251416c910e4d0d", "cast_id": 3, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 1}, {"name": "Michael C. Hall", "character": "David Kammerer", "id": 53820, "credit_id": "52fe4bc29251416c910e4d11", "cast_id": 4, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 2}, {"name": "Ben Foster", "character": "William Burroughs", "id": 11107, "credit_id": "52fe4bc29251416c910e4d15", "cast_id": 5, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 3}, {"name": "Dane DeHaan", "character": "Lucien Carr", "id": 122889, "credit_id": "52fe4bc29251416c910e4d19", "cast_id": 6, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 4}, {"name": "Jack Huston", "character": "Jack Kerouac", "id": 54738, "credit_id": "52fe4bc29251416c910e4d1d", "cast_id": 7, "profile_path": "/fy9PKaLfxVMJ4Ycz8C7xdWrYvFi.jpg", "order": 5}, {"name": "Jennifer Jason Leigh", "character": "Naomi Ginsberg", "id": 10431, "credit_id": "52fe4bc29251416c910e4d21", "cast_id": 8, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 6}, {"name": "Kyra Sedgwick", "character": "Marian Carr", "id": 26467, "credit_id": "52fe4bc39251416c910e4d25", "cast_id": 9, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 7}, {"name": "David Cross", "character": "Louis Ginsberg", "id": 212, "credit_id": "52fe4bc39251416c910e4d29", "cast_id": 10, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 8}, {"name": "David Rasche", "character": "Dean", "id": 33533, "credit_id": "52fe4bc39251416c910e4d2d", "cast_id": 11, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 9}], "directors": [{"name": "John Krokidas", "department": "Directing", "job": "Director", "credit_id": "52fe4bc29251416c910e4d05", "profile_path": null, "id": 1138699}], "vote_average": 6.7, "runtime": 104}, "1724": {"poster_path": "/qTghl3lO8PhmIxkf8eN5WQQefHI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163712074, "overview": "Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.", "video": false, "id": 1724, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Incredible Hulk", "tagline": "You'll like him when he's angry.", "vote_count": 1120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800080", "adult": false, "backdrop_path": "/cOUnJk61xWbhosPMrMWZmvag1NS.jpg", "production_companies": [{"name": "MVL Incredible Productions", "id": 25121}, {"name": "Universal Pictures", "id": 33}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Marvel Studios", "id": 420}, {"name": "Valhalla Motion Pictures", "id": 11533}], "release_date": "2008-06-12", "popularity": 2.84348667554249, "original_title": "The Incredible Hulk", "budget": 150000000, "cast": [{"name": "Edward Norton", "character": "Bruce Banner", "id": 819, "credit_id": "52fe4311c3a36847f8037c65", "cast_id": 3, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Liv Tyler", "character": "Betty Ross", "id": 882, "credit_id": "52fe4311c3a36847f8037c99", "cast_id": 12, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 1}, {"name": "Tim Roth", "character": "Emil Blonsky", "id": 3129, "credit_id": "52fe4311c3a36847f8037c9d", "cast_id": 13, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 2}, {"name": "William Hurt", "character": "General \"Thunderbolt\" Ross", "id": 227, "credit_id": "52fe4311c3a36847f8037ca1", "cast_id": 14, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Tim Blake Nelson", "character": "Leonard", "id": 1462, "credit_id": "52fe4311c3a36847f8037ca5", "cast_id": 15, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 4}, {"name": "Ty Burrell", "character": "Dr. Samson", "id": 15232, "credit_id": "52fe4311c3a36847f8037cad", "cast_id": 17, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 5}, {"name": "Christina Cabot", "character": "Major Kathleen Sparr", "id": 68277, "credit_id": "52fe4311c3a36847f8037ca9", "cast_id": 16, "profile_path": "/7UBTv5lW6apPdVLnOqTTBMTJWwY.jpg", "order": 6}, {"name": "Peter Mensah", "character": "General Joe Greller", "id": 68278, "credit_id": "52fe4311c3a36847f8037cb1", "cast_id": 18, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 7}, {"name": "Lou Ferrigno", "character": "Voice of The Incredible Hulk / Security Guard", "id": 19137, "credit_id": "52fe4311c3a36847f8037ccd", "cast_id": 23, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 8}, {"name": "Paul Soles", "character": "Stanley", "id": 1215283, "credit_id": "52fe4311c3a36847f8037cf1", "cast_id": 34, "profile_path": "/2vDC8SwTcE59TZlRg1tSpNPxrxk.jpg", "order": 9}, {"name": "D\u00e9bora Nascimento", "character": "Martina", "id": 964764, "credit_id": "52fe4311c3a36847f8037cd1", "cast_id": 25, "profile_path": "/j4sQgNJNsugXnTWhvjnniKUqCuc.jpg", "order": 10}, {"name": "Greg Bryk", "character": "Commando", "id": 231, "credit_id": "52fe4311c3a36847f8037cd5", "cast_id": 26, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 11}, {"name": "Genelle Williams", "character": "Terrified Gal", "id": 80969, "credit_id": "5445eb9cc3a3683e0b009500", "cast_id": 87, "profile_path": "/kIes099gCcRGxusOeRLlyE9RoZF.jpg", "order": 12}, {"name": "Chris Owens", "character": "Commando", "id": 158459, "credit_id": "52fe4311c3a36847f8037cd9", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Al Vrkljan", "character": "Commando (as Alan Vrkljan)", "id": 1075146, "credit_id": "52fe4311c3a36847f8037cdd", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Adrian Hein", "character": "Commando", "id": 185853, "credit_id": "52fe4311c3a36847f8037ce1", "cast_id": 29, "profile_path": "/upCgRAOUyuUFcdfBFXGgICnRWky.jpg", "order": 15}, {"name": "John MacDonald", "character": "Commando", "id": 1366350, "credit_id": "541f52dec3a3687992000b32", "cast_id": 37, "profile_path": "/llxpHzOBBJ3T9JUgIx07NCaKjRs.jpg", "order": 16}, {"name": "Shaun McComb", "character": "Helicopter Soldier", "id": 1366351, "credit_id": "541f52f20e0a26179a0009db", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Simon Wong", "character": "Grad Student", "id": 1366353, "credit_id": "541f5326c3a368799c000903", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Pedro Salv\u00edn", "character": "Tough Guy Leader", "id": 185165, "credit_id": "541f5374c3a3687988000a60", "cast_id": 40, "profile_path": "/nlARMfccPSdkOleKmGT9jbyma13.jpg", "order": 19}, {"name": "Julio Cesar Torres Dantas", "character": "Tough Guy", "id": 1366354, "credit_id": "541f5385c3a3687992000b3e", "cast_id": 41, "profile_path": null, "order": 20}, {"name": "Raimundo Camargo Nascimento", "character": "Tough Guy", "id": 1366355, "credit_id": "541f5393c3a36879960009f3", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Nick Alachiotis", "character": "Tough Guy", "id": 15230, "credit_id": "541f53b8c3a36879a30008fa", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Jason Burke", "character": "Communications Officer", "id": 1366356, "credit_id": "541f53ea0e0a2617a20009c2", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Grant Nickalls", "character": "Helicopter Pilot", "id": 941286, "credit_id": "541f540ac3a36879960009f7", "cast_id": 45, "profile_path": null, "order": 24}, {"name": "Joris Jarsky", "character": "Soldier", "id": 76973, "credit_id": "541f5423c3a3687988000a6a", "cast_id": 46, "profile_path": "/mtzNrX8Z0WYbtot82o4gM3FDqYa.jpg", "order": 25}, {"name": "Arnold Pinnock", "character": "Soldier", "id": 87575, "credit_id": "541f543ac3a368798d0009df", "cast_id": 47, "profile_path": "/gwS8LNLcDeeOOcrpJM7C6s66lav.jpg", "order": 26}, {"name": "Tig Fong", "character": "Cop", "id": 8360, "credit_id": "541f5467c3a36879a3000907", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Jason Hunter", "character": "Cop", "id": 1366357, "credit_id": "541f54d0c3a36879a300090c", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Maxwell McCabe-Lokos", "character": "Cab Driver", "id": 53577, "credit_id": "541f54ebc3a368799c000920", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "David Collins", "character": "Medical Technician", "id": 1366358, "credit_id": "541f55490e0a2617a20009d8", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Chris Ratz", "character": "Young Guy", "id": 1366361, "credit_id": "541f5624c3a3687996000a1a", "cast_id": 56, "profile_path": null, "order": 31}, {"name": "John Carvalho", "character": "Plant Manager", "id": 1366359, "credit_id": "541f5561c3a3687996000a08", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Robin Wilcock", "character": "Sniper", "id": 1142866, "credit_id": "541f5584c3a3687992000b51", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Wayne Robson", "character": "Boat Captain", "id": 5897, "credit_id": "541f55a50e0a261794000a87", "cast_id": 54, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 34}, {"name": "Javier Lambert", "character": "Guatemalan Trucker", "id": 1366360, "credit_id": "541f560b0e0a2617910009e6", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Martin Starr", "character": "Computer Nerd", "id": 41089, "credit_id": "52fe4311c3a36847f8037ce9", "cast_id": 31, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 36}, {"name": "Todd Hofley", "character": "Apache Helicopter Pilot", "id": 1366362, "credit_id": "541f56320e0a2617a50009d8", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Joe La Loggia", "character": "Soldier", "id": 1366363, "credit_id": "541f563f0e0a2617a80009fc", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Tamsen McDonough", "character": "Colleague", "id": 1160260, "credit_id": "541f56e3c3a368798d000a08", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Michael Kenneth Williams", "character": "Harlem Bystander (as Michael Kenneth Williams)", "id": 39390, "credit_id": "52fe4311c3a36847f8037ced", "cast_id": 33, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 40}, {"name": "Roberto Bakker", "character": "Market Vendor", "id": 1366364, "credit_id": "541f571d0e0a2617a50009e5", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Ruru Sacha", "character": "Supply Driver", "id": 1366365, "credit_id": "541f57470e0a26179a000a1a", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "James Downing", "character": "Army Base Doctor", "id": 1181132, "credit_id": "541f576fc3a3687988000a9c", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Rickson Gracie", "character": "Aikido Instructor", "id": 115387, "credit_id": "541f578bc3a3687992000b6c", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Stephen Gartner", "character": "Ross's Soldier", "id": 1366366, "credit_id": "541f5798c3a3687996000a31", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Nicholas Rose", "character": "McGee", "id": 1234315, "credit_id": "541f57a20e0a261794000aa5", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "P.J. Kerr", "character": "Wilson", "id": 1366369, "credit_id": "541f57d4c3a368799c00094d", "cast_id": 68, "profile_path": null, "order": 47}, {"name": "Jee-Yun Lee", "character": "Reporter", "id": 201951, "credit_id": "541f58200e0a26179a000a32", "cast_id": 69, "profile_path": null, "order": 48}, {"name": "Desmond Campbell", "character": "Gunner", "id": 180996, "credit_id": "541f5860c3a368798d000a2a", "cast_id": 70, "profile_path": null, "order": 49}, {"name": "Deshaun Clarke", "character": "Little Boy", "id": 1366370, "credit_id": "541f5872c3a36879a300093b", "cast_id": 71, "profile_path": null, "order": 50}, {"name": "Tony Nappo", "character": "Brave Cop", "id": 76528, "credit_id": "541f588ac3a3687996000a44", "cast_id": 72, "profile_path": null, "order": 51}, {"name": "Aaron Berg", "character": "Soldier", "id": 54200, "credit_id": "541f5a70c3a3687988000ad6", "cast_id": 73, "profile_path": "/iGvsSJpPXrDxH6rvLIBNtCzDHwy.jpg", "order": 52}, {"name": "David Meunier", "character": "Soldier (as David Miller)", "id": 1224149, "credit_id": "52fe4311c3a36847f8037cf9", "cast_id": 36, "profile_path": "/bBCXP8UmTHjwqAJRO3Nk3UBftBt.jpg", "order": 53}, {"name": "Tre Smith", "character": "Soldier", "id": 38564, "credit_id": "541f5ab7c3a368798d000a58", "cast_id": 74, "profile_path": null, "order": 54}, {"name": "Moses Nyarko", "character": "Soldier", "id": 1366371, "credit_id": "541f5ae5c3a368798d000a5e", "cast_id": 75, "profile_path": null, "order": 55}, {"name": "Carlos A. Gonzalez", "character": "BOPE Officer", "id": 1366372, "credit_id": "541f5b1bc3a3687985000a9f", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "Yan Regis", "character": "Medic Soldier", "id": 1366374, "credit_id": "541f5b5ac3a368798d000a67", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Stephen Broussard", "character": "Handsome Soldier", "id": 1117748, "credit_id": "541f5b6ec3a3687985000aa9", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Robert Morse", "character": "Command Van Soldier", "id": 40173, "credit_id": "54a06541c3a36851ce001f88", "cast_id": 88, "profile_path": "/va3BC55HSkbKiuphzgYCF9Jaa1x.jpg", "order": 60}, {"name": "Matt Purdy", "character": "Ross's Aide", "id": 1366377, "credit_id": "541f5bc5c3a36879a0000aa7", "cast_id": 80, "profile_path": null, "order": 61}, {"name": "Lenka Matuska", "character": "Female Medical Assistant", "id": 1366378, "credit_id": "541f5bd6c3a3687996000a85", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Scott Magee", "character": "Humvee Driver", "id": 1366379, "credit_id": "541f5be4c3a368798d000a73", "cast_id": 82, "profile_path": null, "order": 63}, {"name": "Wes Berger", "character": "Sterns Lab Soldier", "id": 1366380, "credit_id": "541f5bf20e0a261794000af8", "cast_id": 83, "profile_path": null, "order": 64}, {"name": "Carla Nascimento", "character": "Large Woman", "id": 1366381, "credit_id": "541f5c02c3a3687996000a8a", "cast_id": 84, "profile_path": null, "order": 65}, {"name": "Krista Vendy", "character": "Female Bartender", "id": 1230333, "credit_id": "541f5c0e0e0a26179e000ac7", "cast_id": 85, "profile_path": null, "order": 66}, {"name": "Mila Stromboni", "character": "Hopscotch Girl", "id": 1366382, "credit_id": "541f5c1c0e0a2617a2000a43", "cast_id": 86, "profile_path": null, "order": 67}, {"name": "Robert Downey Jr.", "character": "Tony Stark (uncredited)", "id": 3223, "credit_id": "52fe4311c3a36847f8037ce5", "cast_id": 30, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 68}, {"name": "Stan Lee", "character": "Milwaukee Man Drinking From Bottle (uncredited)", "id": 7624, "credit_id": "52fe4311c3a36847f8037cf5", "cast_id": 35, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 69}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8037c5b", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 6.0, "runtime": 114}, "1725": {"poster_path": "/zRQhCSREdR9h4OzEVvwhdlZNZ6m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43656822, "overview": "In the slums of the upper West Side of Manhattan, New York, a gang of Polish-American teenagers called the Jets compete with a rival gang of recently immigrated Puerto Ricans, the Sharks, to \"own\" the neighborhood streets. Tensions are high between the gangs but two kids, one from each rival gang, fall in love leading to tragedy.", "video": false, "id": 1725, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "West Side Story", "tagline": "The screen achieves one of the great entertainments in the history of motion pictures", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0055614", "adult": false, "backdrop_path": "/wgjArGrch7ezI5hGjaB1oj2yb2C.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "20th Century Fox Home Entertainment", "id": 3635}], "release_date": "1961-10-18", "popularity": 0.882929756399375, "original_title": "West Side Story", "budget": 6000000, "cast": [{"name": "Natalie Wood", "character": "Maria", "id": 2769, "credit_id": "52fe4311c3a36847f8037d5b", "cast_id": 6, "profile_path": "/iAFtRflUEWSUObRZaqHPxx5CWSn.jpg", "order": 0}, {"name": "Richard Beymer", "character": "Tony", "id": 6679, "credit_id": "52fe4311c3a36847f8037d5f", "cast_id": 7, "profile_path": "/9jOYQIu3jVAhMNMUKG50Q6TdEmv.jpg", "order": 1}, {"name": "Russ Tamblyn", "character": "Riff", "id": 6725, "credit_id": "52fe4311c3a36847f8037d63", "cast_id": 8, "profile_path": "/gc0wmr0vyqYRhA7piZsqKVvy0uX.jpg", "order": 2}, {"name": "Rita Moreno", "character": "Anita", "id": 13299, "credit_id": "52fe4311c3a36847f8037d67", "cast_id": 9, "profile_path": "/A5IKvjUTdwexp4l5Bi6vaH8Hypc.jpg", "order": 3}, {"name": "George Chakiris", "character": "Bernardo", "id": 24880, "credit_id": "52fe4311c3a36847f8037d7b", "cast_id": 14, "profile_path": "/iFkpjp2g55L7qi0yoXrcWPWxLQ9.jpg", "order": 4}, {"name": "Simon Oakland", "character": "Lieutenant Schrank", "id": 14063, "credit_id": "52fe4311c3a36847f8037d6b", "cast_id": 10, "profile_path": "/frbQBmieMRcdAKupAIbJ0FsHuD2.jpg", "order": 5}, {"name": "Ned Glass", "character": "Doc", "id": 18870, "credit_id": "52fe4311c3a36847f8037d6f", "cast_id": 11, "profile_path": "/dwfC6rmH6JkaNxuYEgi2Yh55n4w.jpg", "order": 6}, {"name": "William Bramley", "character": "Officer Krupke", "id": 18871, "credit_id": "52fe4311c3a36847f8037d73", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Tucker Smith", "character": "Ice", "id": 18872, "credit_id": "52fe4311c3a36847f8037d77", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Susan Oakes", "character": "Anybodys", "id": 982293, "credit_id": "52fe4311c3a36847f8037d91", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Jose De Vega", "character": "Chino", "id": 975393, "credit_id": "52fe4311c3a36847f8037d95", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Gina Trikonis", "character": "Graziella", "id": 955862, "credit_id": "52fe4311c3a36847f8037d99", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Carole D'Andrea", "character": "Velma", "id": 1161036, "credit_id": "52fe4311c3a36847f8037d9d", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Eliot Feld", "character": "Baby John", "id": 1161038, "credit_id": "52fe4311c3a36847f8037da1", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Tony Mordente", "character": "Action", "id": 151333, "credit_id": "52fe4311c3a36847f8037da5", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "David Winters", "character": "A-Rab", "id": 29700, "credit_id": "52fe4311c3a36847f8037da9", "cast_id": 24, "profile_path": "/jWKkhjexv5FJSyvbBX3DlCvFKrh.jpg", "order": 15}, {"name": "Scooter Teague", "character": "Big Deal", "id": 1161040, "credit_id": "52fe4311c3a36847f8037dad", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Yvonne Othon", "character": "Consuelo", "id": 1161041, "credit_id": "52fe4311c3a36847f8037db1", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "John Astin", "character": "Glad Hand, the dance organizer", "id": 41230, "credit_id": "52fe4311c3a36847f8037db5", "cast_id": 27, "profile_path": "/thWruW63AhnJUiQu4hcqi600dNH.jpg", "order": 18}, {"name": "Penny Santon", "character": "Madam Lucia", "id": 80599, "credit_id": "52fe4311c3a36847f8037db9", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Suzie Kaye", "character": "Rosalia", "id": 1098447, "credit_id": "52fe4311c3a36847f8037dbd", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Anne Miya", "character": "Francisca", "id": 1161043, "credit_id": "52fe4311c3a36847f8037dc1", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Bert Michaels", "character": "Snowboy", "id": 1161044, "credit_id": "52fe4311c3a36847f8037dc5", "cast_id": 31, "profile_path": null, "order": 22}], "directors": [{"name": "Jerome Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8037d3f", "profile_path": "/1kx6asDWQvrwGhVUlPDdtrPmsC8.jpg", "id": 18868}, {"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8037d45", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 6.3, "runtime": 152}, "1726": {"poster_path": "/s2IG9qXfhJYxIttKyroYFBsHwzQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 585174222, "overview": "After escaping from kidnappers using makeshift power armor, an ultra rich inventor and weapons maker turns his creation into a force for good by using it to fight crime. But his skills are stretched to the limit when he must face the evil Iron Monger.", "video": false, "id": 1726, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Man", "tagline": "Heroes aren't born. They're built.", "vote_count": 4284, "homepage": "http://www.ironmanmovie.com/", "belongs_to_collection": {"backdrop_path": "/rI8zOWkRQJdlAyQ6WJOSlYK6JxZ.jpg", "poster_path": "/fbeJ7f0aD4A112Bc1tnpzyn82xO.jpg", "id": 131292, "name": "Iron Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0371746", "adult": false, "backdrop_path": "/ZQixhAZx6fH1VNafFXsqa1B8QI.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2008-05-02", "popularity": 3.16201974265365, "original_title": "Iron Man", "budget": 140000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe4311c3a36847f8037ee9", "cast_id": 19, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Terrence Howard", "character": "Lt. Col. James \"Rhodey\" Rhodes", "id": 18288, "credit_id": "52fe4311c3a36847f8037ecb", "cast_id": 12, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 1}, {"name": "Jeff Bridges", "character": "Obadiah Stane", "id": 1229, "credit_id": "52fe4311c3a36847f8037ec7", "cast_id": 11, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 2}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe4311c3a36847f8037ec3", "cast_id": 10, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 3}, {"name": "Leslie Bibb", "character": "Christine Everhart", "id": 57451, "credit_id": "52fe4311c3a36847f8037ee1", "cast_id": 17, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 4}, {"name": "Shaun Toub", "character": "Yinsen", "id": 17857, "credit_id": "52fe4311c3a36847f8037ebf", "cast_id": 9, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 5}, {"name": "Faran Tahir", "character": "Raza", "id": 57452, "credit_id": "52fe4311c3a36847f8037ee5", "cast_id": 18, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Agent Phil Coulson", "id": 9048, "credit_id": "52fe4311c3a36847f8037ef3", "cast_id": 21, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "Sayed Badreya", "character": "Abu Bakaar", "id": 173810, "credit_id": "52fe4311c3a36847f8037ef7", "cast_id": 23, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 8}, {"name": "Bill Smitrovich", "character": "General Gabriel", "id": 17200, "credit_id": "52fe4311c3a36847f8037f0f", "cast_id": 29, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 9}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe4311c3a36847f8037efb", "cast_id": 24, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 10}, {"name": "Jon Favreau", "character": "Hogan", "id": 15277, "credit_id": "52fe4311c3a36847f8037eff", "cast_id": 25, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 11}, {"name": "Peter Billingsley", "character": "William Ginter Riva", "id": 12708, "credit_id": "52fe4311c3a36847f8037f03", "cast_id": 26, "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "order": 12}, {"name": "Tim Guinee", "character": "Major Allen", "id": 40275, "credit_id": "52fe4311c3a36847f8037f07", "cast_id": 27, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 13}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4311c3a36847f8037f0b", "cast_id": 28, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 14}, {"name": "Will Lyman", "character": "Award Ceremony Narrator (voice)", "id": 163671, "credit_id": "52fe4311c3a36847f8037f37", "cast_id": 36, "profile_path": "/xYU1FSeQhXLyg6VskqRBofFyoU8.jpg", "order": 15}, {"name": "Tom Morello", "character": "Guard", "id": 78299, "credit_id": "52fe4311c3a36847f8037f3b", "cast_id": 37, "profile_path": "/7QQmzUqv8trWHBLKlDeeYYkZ4Gt.jpg", "order": 16}, {"name": "Marco Khan", "character": "Guard", "id": 54809, "credit_id": "52fe4311c3a36847f8037f3f", "cast_id": 38, "profile_path": "/7ICgwwtohryQmWyLPsaJvrnorDi.jpg", "order": 17}, {"name": "Daston Kalili", "character": "Guard", "id": 944830, "credit_id": "52fe4311c3a36847f8037f43", "cast_id": 39, "profile_path": "/jsgC2DQU3KhAh6mHMVSrv73H2xH.jpg", "order": 18}, {"name": "Ido Ezra", "character": "Guard", "id": 1209417, "credit_id": "52fe4311c3a36847f8037f47", "cast_id": 40, "profile_path": "/2neOIiktvBNt4GWu4v1PZrbtpGu.jpg", "order": 19}, {"name": "Kevin Foster", "character": "Jimmy", "id": 95698, "credit_id": "52fe4311c3a36847f8037f4b", "cast_id": 41, "profile_path": "/9YZigxSi9V4mdpzxvs6G1nVRPbC.jpg", "order": 20}, {"name": "Garret No\u00ebl", "character": "Pratt", "id": 1209418, "credit_id": "52fe4311c3a36847f8037f4f", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Eileen Weisinger", "character": "Ramirez", "id": 62037, "credit_id": "52fe4311c3a36847f8037f53", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Ahmed Ahmed", "character": "Ahmed", "id": 183439, "credit_id": "52fe4311c3a36847f8037f57", "cast_id": 44, "profile_path": "/iLJhN93hLhbOygSZhx1m1ToXHuI.jpg", "order": 23}, {"name": "Fahim Fazli", "character": "Omar", "id": 109669, "credit_id": "52fe4311c3a36847f8037f5b", "cast_id": 45, "profile_path": "/ybLWM4LBYrsqZ3h2qgn2zOUiIX0.jpg", "order": 24}, {"name": "Gerard Sanders", "character": "Howard Stark", "id": 104669, "credit_id": "52fe4311c3a36847f8037f5f", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Tim Rigby", "character": "Viper 1", "id": 1209419, "credit_id": "52fe4311c3a36847f8037f63", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Russell Richardson", "character": "Viper 2", "id": 195442, "credit_id": "52fe4311c3a36847f8037f67", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Nazanin Boniadi", "character": "Amira Ahmed", "id": 142213, "credit_id": "52fe4311c3a36847f8037f6b", "cast_id": 49, "profile_path": "/eo5kuNvxk1Ve9pjetcIb3tzIECV.jpg", "order": 28}, {"name": "Thomas Craig Plumer", "character": "Colonel Craig", "id": 1209702, "credit_id": "52fe4311c3a36847f8037f6f", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Robert Berkman", "character": "Dealer at Craps Table", "id": 1209703, "credit_id": "52fe4311c3a36847f8037f73", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Stacy Stas", "character": "Woman at Craps Table", "id": 183037, "credit_id": "52fe4311c3a36847f8037f77", "cast_id": 52, "profile_path": "/nXrk2qrZyD0fA2RY229h4EDyYlN.jpg", "order": 31}, {"name": "Lauren Scyphers", "character": "Woman at Craps Table", "id": 1209704, "credit_id": "52fe4311c3a36847f8037f7b", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Frank Nyi", "character": "Engineer", "id": 214951, "credit_id": "52fe4311c3a36847f8037f7f", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Marvin Jordan", "character": "Air Force Officer", "id": 205362, "credit_id": "52fe4311c3a36847f8037f83", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Jim Cramer", "character": "Jim Cramer", "id": 203468, "credit_id": "52fe4311c3a36847f8037f87", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Donna Evans", "character": "Woman In SUV", "id": 939869, "credit_id": "52fe4311c3a36847f8037f8b", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Reid Harper", "character": "Kid in SUV", "id": 1209705, "credit_id": "52fe4311c3a36847f8037f8f", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "Summer Kylie Remington", "character": "Kid in SUV", "id": 1209706, "credit_id": "52fe4311c3a36847f8037f93", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Ava Rose Williams", "character": "Kid in SUV", "id": 1209707, "credit_id": "52fe4311c3a36847f8037f97", "cast_id": 60, "profile_path": null, "order": 39}, {"name": "Vladimir Kubr", "character": "Kid in SUV", "id": 1209708, "credit_id": "52fe4311c3a36847f8037f9b", "cast_id": 61, "profile_path": null, "order": 40}, {"name": "Callie Croughwell", "character": "Kid in SUV", "id": 1209709, "credit_id": "52fe4311c3a36847f8037f9f", "cast_id": 62, "profile_path": null, "order": 41}, {"name": "Javan Tahir", "character": "Gulmira Kid", "id": 1209710, "credit_id": "52fe4311c3a36847f8037fa3", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Sahar Bibiyan", "character": "Gulmira Mom", "id": 206423, "credit_id": "52fe4311c3a36847f8037fa7", "cast_id": 64, "profile_path": null, "order": 43}, {"name": "Patrick O'Connell", "character": "Reporter", "id": 133121, "credit_id": "52fe4311c3a36847f8037fab", "cast_id": 65, "profile_path": null, "order": 44}, {"name": "Adam Harrington", "character": "Reporter", "id": 181895, "credit_id": "52fe4311c3a36847f8037faf", "cast_id": 66, "profile_path": "/xQHFfNqqvcUNxPmPTKHKkHIBY8d.jpg", "order": 45}, {"name": "Meera Simhan", "character": "Reporter", "id": 62843, "credit_id": "52fe4311c3a36847f8037fb3", "cast_id": 67, "profile_path": null, "order": 46}, {"name": "Ben Newmark", "character": "Reporter", "id": 204606, "credit_id": "52fe4311c3a36847f8037fb7", "cast_id": 68, "profile_path": null, "order": 47}, {"name": "Ricki Lander", "character": "Flight Attendant", "id": 210842, "credit_id": "52fe4311c3a36847f8037fbb", "cast_id": 69, "profile_path": "/9B9h9aK16tZpbdDIH1XJR62o5Ls.jpg", "order": 48}, {"name": "Jeannine Kaspar", "character": "Flight Attendant", "id": 205720, "credit_id": "52fe4311c3a36847f8037fbf", "cast_id": 70, "profile_path": null, "order": 49}, {"name": "Sarah Cahill", "character": "Flight Attendant", "id": 1005698, "credit_id": "52fe4311c3a36847f8037fc3", "cast_id": 71, "profile_path": null, "order": 50}, {"name": "Stan Lee", "character": "Stan Lee", "id": 7624, "credit_id": "52fe4311c3a36847f8037fc7", "cast_id": 72, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 51}, {"name": "Justin Rex", "character": "Air Force Lieutenant", "id": 1209711, "credit_id": "52fe4311c3a36847f8037fcb", "cast_id": 73, "profile_path": null, "order": 52}, {"name": "Zorianna Kit", "character": "Zorianna Kit", "id": 90721, "credit_id": "52fe4311c3a36847f8037fcf", "cast_id": 74, "profile_path": null, "order": 53}, {"name": "Lana Kinnear", "character": "Stan's Girl", "id": 169681, "credit_id": "52fe4311c3a36847f8037fd3", "cast_id": 75, "profile_path": null, "order": 54}, {"name": "Nicole Lindeblad", "character": "Stan's Girl", "id": 1209712, "credit_id": "52fe4311c3a36847f8037fd7", "cast_id": 76, "profile_path": null, "order": 55}, {"name": "Masha Lund", "character": "Stan's Girl", "id": 1209713, "credit_id": "52fe4311c3a36847f8037fdb", "cast_id": 77, "profile_path": null, "order": 56}, {"name": "Gabrielle Tuite", "character": "Stan's Girl", "id": 169642, "credit_id": "52fe4311c3a36847f8037fdf", "cast_id": 78, "profile_path": null, "order": 57}, {"name": "Tim Griffin", "character": "CAOC Analyst", "id": 27031, "credit_id": "52fe4311c3a36847f8037fe3", "cast_id": 79, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 58}, {"name": "Joshua Harto", "character": "CAOC Analyst", "id": 34544, "credit_id": "52fe4311c3a36847f8037fe7", "cast_id": 80, "profile_path": "/8jRaYHrZX6sZoUOOXZI1H6EQNQa.jpg", "order": 59}, {"name": "Micah A. Hauptman", "character": "CAOC Analyst", "id": 150669, "credit_id": "52fe4311c3a36847f8037feb", "cast_id": 81, "profile_path": null, "order": 60}, {"name": "James Bethea", "character": "CAOC Analyst", "id": 1209714, "credit_id": "52fe4311c3a36847f8037fef", "cast_id": 82, "profile_path": null, "order": 61}, {"name": "Jeffrey Ashkin", "character": "Photographer (uncredited)", "id": 1209715, "credit_id": "52fe4311c3a36847f8037ff3", "cast_id": 83, "profile_path": null, "order": 62}, {"name": "Russell Bobbitt", "character": "Georgio (uncredited)", "id": 1004624, "credit_id": "52fe4311c3a36847f8037ff7", "cast_id": 84, "profile_path": null, "order": 63}, {"name": "Vianessa Casta\u00f1os", "character": "Fireman's Wife (uncredited)", "id": 984619, "credit_id": "52fe4311c3a36847f8037ffb", "cast_id": 85, "profile_path": null, "order": 64}, {"name": "Mike Cochrane", "character": "Gulmira Villager (uncredited)", "id": 1209716, "credit_id": "52fe4311c3a36847f8037fff", "cast_id": 86, "profile_path": "/wvRPrMzmihH0IeX3tQ3eg3n34mL.jpg", "order": 65}, {"name": "Crystal Marie Denha", "character": "Dubai Beauty (uncredited)", "id": 1209717, "credit_id": "52fe4311c3a36847f8038003", "cast_id": 87, "profile_path": null, "order": 66}, {"name": "Mellany Gandara", "character": "Dubai Girl (uncredited)", "id": 970218, "credit_id": "52fe4311c3a36847f8038007", "cast_id": 88, "profile_path": null, "order": 67}, {"name": "Halla", "character": "House wife at Award Ceremony (uncredited)", "id": 1209718, "credit_id": "52fe4311c3a36847f803800b", "cast_id": 89, "profile_path": null, "order": 68}, {"name": "Rodrick Hersh", "character": "Insurgent (uncredited)", "id": 1202546, "credit_id": "52fe4311c3a36847f803800f", "cast_id": 90, "profile_path": null, "order": 69}, {"name": "Kristin J. Hooper", "character": "Reporter (uncredited)", "id": 1209719, "credit_id": "52fe4311c3a36847f8038013", "cast_id": 91, "profile_path": null, "order": 70}, {"name": "Chris Jalandoni", "character": "Dubai Waiter (uncredited)", "id": 1209720, "credit_id": "52fe4311c3a36847f8038017", "cast_id": 92, "profile_path": null, "order": 71}, {"name": "Steve Janousek", "character": "Party Guest (uncredited)", "id": 1209721, "credit_id": "52fe4311c3a36847f803801b", "cast_id": 93, "profile_path": null, "order": 72}, {"name": "Laura Liguori", "character": "Dancer in Ballroom (uncredited)", "id": 1209722, "credit_id": "52fe4311c3a36847f803801f", "cast_id": 94, "profile_path": null, "order": 73}, {"name": "Flavia Manes Rossi", "character": "Reporter (uncredited)", "id": 1089759, "credit_id": "52fe4311c3a36847f8038023", "cast_id": 95, "profile_path": null, "order": 74}, {"name": "Anthony Martins", "character": "Village Dad (uncredited)", "id": 1096679, "credit_id": "52fe4311c3a36847f8038027", "cast_id": 96, "profile_path": null, "order": 75}, {"name": "Robert McMurrer", "character": "Reporter (uncredited)", "id": 1209723, "credit_id": "52fe4311c3a36847f803802b", "cast_id": 97, "profile_path": null, "order": 76}, {"name": "James M. Myers", "character": "Airforce Officer (uncredited)", "id": 1209724, "credit_id": "52fe4311c3a36847f803802f", "cast_id": 98, "profile_path": null, "order": 77}, {"name": "America Olivo", "character": "Dubai Beauty #1 (uncredited)", "id": 78434, "credit_id": "52fe4311c3a36847f8038033", "cast_id": 99, "profile_path": "/jcKVwKxJEV2xRpkokNe0Om4GKHA.jpg", "order": 78}, {"name": "Sylvette Ortiz", "character": "Staff Sergeant (uncredited)", "id": 1209725, "credit_id": "52fe4311c3a36847f8038037", "cast_id": 100, "profile_path": null, "order": 79}, {"name": "Brett Padelford", "character": "Journalist (uncredited)", "id": 1209726, "credit_id": "52fe4311c3a36847f803803b", "cast_id": 101, "profile_path": null, "order": 80}, {"name": "Ajani Perkins", "character": "Voice (uncredited)", "id": 1209727, "credit_id": "52fe4311c3a36847f803803f", "cast_id": 102, "profile_path": null, "order": 81}, {"name": "Chris Reid", "character": "Reporter (uncredited)", "id": 1209728, "credit_id": "52fe4311c3a36847f8038043", "cast_id": 103, "profile_path": null, "order": 82}, {"name": "Toi Rose", "character": "News Cameraman (uncredited)", "id": 1209729, "credit_id": "52fe4311c3a36847f8038047", "cast_id": 104, "profile_path": null, "order": 83}, {"name": "Arne Starr", "character": "Dubai Tychoon in hat / Bus Passenger (uncredited)", "id": 1202554, "credit_id": "52fe4311c3a36847f803804b", "cast_id": 105, "profile_path": null, "order": 84}, {"name": "George F. Watson", "character": "Rooftop Fireman (uncredited)", "id": 1209730, "credit_id": "52fe4311c3a36847f803804f", "cast_id": 106, "profile_path": null, "order": 85}, {"name": "David Zyler", "character": "Whiplash One (voice) (uncredited)", "id": 1209731, "credit_id": "52fe4311c3a36847f8038053", "cast_id": 107, "profile_path": null, "order": 86}, {"name": "Nick W. Nicholson", "character": "Reporter (uncredited)", "id": 1429470, "credit_id": "54e7e9e1c3a36836e7000ca9", "cast_id": 109, "profile_path": null, "order": 87}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8038059", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 7.1, "runtime": 126}, "9919": {"poster_path": "/aiB7u6xZ9RWeDTQ7c92J8AoiHj3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105807520, "overview": "An advice columnist, Andie Anderson (Kate Hudson), tries pushing the boundaries of what she can write about in her new piece about how to get a man to leave you in 10 days. Her editor, Lana (Bebe Neuwirth), loves it, and Andie goes off to find a man she can use for the experiment. Enter executive Ben Berry (Matthew McConaughey), who is so confident in his romantic prowess that he thinks he can make any woman fall in love with him in 10 days. When Andie and Ben meet, their plans backfire.", "video": false, "id": 9919, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "How to Lose a Guy in 10 Days", "tagline": "One of them is lying. So is the other.", "vote_count": 199, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251127", "adult": false, "backdrop_path": "/wD6XPtYP2RqaTo7Gpwt6tURU30D.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2003-02-07", "popularity": 1.12041430870219, "original_title": "How to Lose a Guy in 10 Days", "budget": 50000000, "cast": [{"name": "Kate Hudson", "character": "Andie Anderson", "id": 11661, "credit_id": "52fe4549c3a36847f80c59cb", "cast_id": 12, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Benjamin Barry", "id": 10297, "credit_id": "52fe4549c3a36847f80c59cf", "cast_id": 13, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Kathryn Hahn", "character": "Michelle Rubin", "id": 17696, "credit_id": "52fe4549c3a36847f80c59d3", "cast_id": 14, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 2}, {"name": "Annie Parisse", "character": "Jeannie Ashcroft", "id": 24291, "credit_id": "52fe4549c3a36847f80c59d7", "cast_id": 15, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 3}, {"name": "Adam Goldberg", "character": "Tony", "id": 6163, "credit_id": "52fe4549c3a36847f80c59db", "cast_id": 16, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 4}, {"name": "Thomas Lennon", "character": "Thayer", "id": 539, "credit_id": "52fe4549c3a36847f80c59e5", "cast_id": 18, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 5}, {"name": "Michael Michele", "character": "Judy Spears", "id": 39977, "credit_id": "52fe4549c3a36847f80c59e9", "cast_id": 19, "profile_path": "/syVfYJP8eXbTmcnZZArMFCBJecd.jpg", "order": 6}, {"name": "Shalom Harlow", "character": "Judy Green", "id": 92857, "credit_id": "52fe4549c3a36847f80c59ed", "cast_id": 20, "profile_path": "/vrXxkJBKAKiGg0tsUlUbdQK5WJv.jpg", "order": 7}, {"name": "Robert Klein", "character": "Phillip Warren", "id": 26715, "credit_id": "52fe4549c3a36847f80c59f1", "cast_id": 21, "profile_path": "/pDRrQXkFDomlFL9jnhBAjymLAGh.jpg", "order": 8}, {"name": "Bebe Neuwirth", "character": "Lana Jong", "id": 10739, "credit_id": "52fe4549c3a36847f80c59f5", "cast_id": 22, "profile_path": "/xm58rpMRVDHS0IGttw1pTlqGwkN.jpg", "order": 9}, {"name": "Samantha Quan", "character": "Lori", "id": 168846, "credit_id": "52fe4549c3a36847f80c59f9", "cast_id": 23, "profile_path": "/nw2pxVHJi9cApcGZBT9PniTEztI.jpg", "order": 10}, {"name": "Justin Peroff", "character": "Mike", "id": 186494, "credit_id": "52fe4549c3a36847f80c59fd", "cast_id": 24, "profile_path": "/rtHZ8BNFzoYS5QqJw2h689rlBNH.jpg", "order": 11}, {"name": "Celia Weston", "character": "Glenda", "id": 1989, "credit_id": "52fe4549c3a36847f80c5a01", "cast_id": 25, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 12}, {"name": "James Murtaugh", "character": "Jack", "id": 101781, "credit_id": "52fe4549c3a36847f80c5a05", "cast_id": 26, "profile_path": "/ljcmntlZigoxr3fR7MdbWc8H1qP.jpg", "order": 13}, {"name": "Archie MacGregor", "character": "Uncle Arnold", "id": 187971, "credit_id": "52fe4549c3a36847f80c5a09", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe4548c3a36847f80c5991", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 6.1, "runtime": 116}, "9920": {"poster_path": "/4JTRliHy3DVQ4gu11hQu8ydtoBk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31070211, "overview": "A beautiful hemophage infected with a virus that gives her superhuman powers has to protect a boy who is thought to be carrying antigens that would destroy all hemophages.", "video": false, "id": 9920, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Ultraviolet", "tagline": "The blood war is on.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0370032", "adult": false, "backdrop_path": "/jihMKGWilrgy0VWJyopstqFw3Ti.jpg", "production_companies": [{"name": "Ultravi Productions", "id": 8003}, {"name": "Screen Gems", "id": 3287}], "release_date": "2006-03-03", "popularity": 0.855438072605609, "original_title": "Ultraviolet", "budget": 30000000, "cast": [{"name": "Milla Jovovich", "character": "Violet", "id": 63, "credit_id": "52fe4549c3a36847f80c5ae3", "cast_id": 22, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Cameron Bright", "character": "Six", "id": 52414, "credit_id": "52fe4549c3a36847f80c5ae7", "cast_id": 23, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 1}, {"name": "Nick Chinlund", "character": "Daxus", "id": 18461, "credit_id": "52fe4549c3a36847f80c5aeb", "cast_id": 24, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 2}, {"name": "William Fichtner", "character": "Garth", "id": 886, "credit_id": "52fe4549c3a36847f80c5aef", "cast_id": 25, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 3}, {"name": "Ida Martin", "character": "Young Violet", "id": 60527, "credit_id": "52fe4549c3a36847f80c5aff", "cast_id": 28, "profile_path": null, "order": 4}, {"name": "Sebastien Andrieu", "character": "Nerva", "id": 60526, "credit_id": "52fe4549c3a36847f80c5b03", "cast_id": 29, "profile_path": null, "order": 5}, {"name": "Digger Mesch", "character": "Detective Endera", "id": 60530, "credit_id": "52fe4549c3a36847f80c5b07", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "David Collier", "character": "BF-1", "id": 60528, "credit_id": "52fe4549c3a36847f80c5b0b", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Ricardo Mamood-Vega", "character": "Violet's Husband", "id": 60533, "credit_id": "52fe4549c3a36847f80c5b0f", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Ryan Martin", "character": "Detective Breeder", "id": 60531, "credit_id": "52fe4549c3a36847f80c5b13", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Kieran O'Rorke", "character": "Detective Cross", "id": 60529, "credit_id": "52fe4549c3a36847f80c5b1b", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Steven Calcote", "character": "Young Daxus", "id": 60532, "credit_id": "52fe4549c3a36847f80c5b17", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Jennifer Caputo", "character": "Elizabeth P. Watkins", "id": 60537, "credit_id": "52fe4549c3a36847f80c5b1f", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Clay Cullen", "character": "Rebel Hemophage", "id": 60536, "credit_id": "52fe4549c3a36847f80c5b23", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Jack Murphy", "character": "Chief of Staff", "id": 60538, "credit_id": "52fe4549c3a36847f80c5b33", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Diego Swing", "character": "Daxus Aide 1", "id": 60539, "credit_id": "52fe4549c3a36847f80c5b27", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Mike Smith", "character": "Hospital Hemophage", "id": 60535, "credit_id": "52fe4549c3a36847f80c5b2b", "cast_id": 39, "profile_path": "/4Opk5Tr8mWzIhVPNb814s7cEHO5.jpg", "order": 16}, {"name": "Theodore Thomas", "character": "Daxus Aide 2", "id": 60540, "credit_id": "52fe4549c3a36847f80c5b2f", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Abraham Boyd", "character": "L.L.D.D. Guard", "id": 60541, "credit_id": "52fe4549c3a36847f80c5b37", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Matthew Sturgess", "character": "Medical Tech 1", "id": 60542, "credit_id": "52fe4549c3a36847f80c5b3b", "cast_id": 43, "profile_path": null, "order": 19}], "directors": [{"name": "Kurt Wimmer", "department": "Directing", "job": "Director", "credit_id": "52fe4549c3a36847f80c5a73", "profile_path": "/vO84pZBssHveIxxnh2d2sbNNCLY.jpg", "id": 13927}], "vote_average": 5.5, "runtime": 88}, "1729": {"poster_path": "/4jTVS5uij49cqzLKXjaQywIp7cV.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127906624, "overview": "An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King.", "video": false, "id": 1729, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Forbidden Kingdom", "tagline": "The battle for eternity is the fantasy of a lifetime.", "vote_count": 130, "homepage": "http://www.forbiddenkingdommovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0865556", "adult": false, "backdrop_path": "/owoPx8ldvh07NZBy5wG0UTY0Uuj.jpg", "production_companies": [{"name": "Casey Silver Productions", "id": 877}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "Huayi Brothers", "id": 3393}, {"name": "Relativity Media", "id": 7295}], "release_date": "2008-04-18", "popularity": 0.67469685806152, "original_title": "The Forbidden Kingdom", "budget": 55000000, "cast": [{"name": "Jackie Chan", "character": "Old Hop/ Lu Yan", "id": 18897, "credit_id": "52fe4312c3a36847f80381bd", "cast_id": 14, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Jet Li", "character": "The Silent Monk/ The Monkey King", "id": 1336, "credit_id": "52fe4312c3a36847f80381c1", "cast_id": 15, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 1}, {"name": "Michael Angarano", "character": "Jason Tripitikas", "id": 11665, "credit_id": "52fe4312c3a36847f80381a1", "cast_id": 3, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 2}, {"name": "Li Bingbing", "character": "Ni Chang", "id": 109432, "credit_id": "52fe4312c3a36847f80381b9", "cast_id": 13, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 3}, {"name": "Collin Chou", "character": "Jade Warlord", "id": 52908, "credit_id": "52fe4312c3a36847f80381a9", "cast_id": 7, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 4}, {"name": "Liu Yifei", "character": "Golden Sparrow", "id": 122503, "credit_id": "52fe4312c3a36847f80381a5", "cast_id": 6, "profile_path": "/pcpxXRPIFWUzXzeyvsJCRoiTf3U.jpg", "order": 5}, {"name": "Jack Posobiec", "character": "Southie", "id": 122515, "credit_id": "52fe4312c3a36847f80381b5", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Morgan Benoit", "character": "Lupo", "id": 122504, "credit_id": "52fe4312c3a36847f80381ad", "cast_id": 8, "profile_path": "/c2sIw1Fto3mkoPMUN2QYtbpK7ix.jpg", "order": 7}, {"name": "Juana Collignon", "character": "Southie Girl", "id": 122514, "credit_id": "52fe4312c3a36847f80381b1", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Thomas McDonell", "character": "Young Southie", "id": 234984, "credit_id": "52fe4312c3a36847f80381cb", "cast_id": 17, "profile_path": "/kiJxHWNycjiNPnFqzeKrdEEPpyr.jpg", "order": 9}, {"name": "Zhi Ma Gui", "character": "Old Woman", "id": 1075061, "credit_id": "52fe4312c3a36847f80381cf", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Shen Shou He", "character": "Farmer", "id": 1075063, "credit_id": "52fe4312c3a36847f80381d3", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Bin Jiang", "character": "Young Village Man", "id": 1075065, "credit_id": "52fe4312c3a36847f80381d7", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Shaohua Yang", "character": "Jade Soldier", "id": 1075067, "credit_id": "52fe4312c3a36847f80381db", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Yu Yuan Zeng", "character": "Inn Keeper", "id": 1075068, "credit_id": "52fe4312c3a36847f80381df", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe4312c3a36847f8038197", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 6.2, "runtime": 104}, "9922": {"poster_path": "/k7Bg8WaFeSMWwxCKX2BhGjNMTjA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17626234, "overview": "It is 2013. War has crippled the Earth. Technology has been erased. Our only hope is an unlikely hero. What begins as a con game becomes one man's quest to rebuild civilization by resuming postal service.", "video": false, "id": 9922, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "The Postman", "tagline": "The year is 2013. One man walked in off the horizon and hope came with him.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119925", "adult": false, "backdrop_path": "/k8o9WHDj529SfnPqrUzUaMUUQMV.jpg", "production_companies": [{"name": "Tig Productions", "id": 335}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1997-12-25", "popularity": 0.485808212006039, "original_title": "The Postman", "budget": 80000000, "cast": [{"name": "Kevin Costner", "character": "The Postman", "id": 1269, "credit_id": "52fe454ac3a36847f80c5d1f", "cast_id": 12, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Will Patton", "character": "General Bethlehem", "id": 883, "credit_id": "52fe454ac3a36847f80c5d23", "cast_id": 13, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 1}, {"name": "Olivia Williams", "character": "Abby", "id": 11616, "credit_id": "52fe454ac3a36847f80c5d2f", "cast_id": 16, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 2}, {"name": "Larenz Tate", "character": "Ford Lincoln Mercury", "id": 18291, "credit_id": "52fe454ac3a36847f80c5d27", "cast_id": 14, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 3}, {"name": "Tom Petty", "character": "Bridge City Mayor", "id": 60642, "credit_id": "52fe454ac3a36847f80c5d2b", "cast_id": 15, "profile_path": "/aCK0M7nRk8kRF0WVOZ5b0OrWZt5.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Bandit 20", "id": 1771, "credit_id": "52fe454ac3a36847f80c5d33", "cast_id": 17, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "James Russo", "character": "Idaho", "id": 785, "credit_id": "52fe454ac3a36847f80c5d37", "cast_id": 18, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 6}, {"name": "Daniel von Bargen", "character": "Pineview Sheriff Briscoe", "id": 1473, "credit_id": "52fe454ac3a36847f80c5d3b", "cast_id": 19, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 7}, {"name": "Scott Bairstow", "character": "Luke", "id": 82519, "credit_id": "52fe454ac3a36847f80c5d3f", "cast_id": 20, "profile_path": "/kgwu669FNU6mVFvg2MnoYJFW4tJ.jpg", "order": 8}, {"name": "Roberta Maxwell", "character": "Irene March", "id": 10362, "credit_id": "52fe454ac3a36847f80c5d43", "cast_id": 21, "profile_path": "/tqkbI9bFmFPyOEeGGVyu8FPFyUu.jpg", "order": 9}, {"name": "Joe Santos", "character": "Colonel Getty", "id": 6774, "credit_id": "52fe454ac3a36847f80c5d47", "cast_id": 22, "profile_path": "/7D7ddztwCyW1D0DIxNR0JDAWu0d.jpg", "order": 10}, {"name": "Ron McLarty", "character": "Old George", "id": 167565, "credit_id": "52fe454ac3a36847f80c5d4b", "cast_id": 23, "profile_path": "/n5uRDc2hl8Y3Worq4e4U1jtBqwK.jpg", "order": 11}, {"name": "Peggy Lipton", "character": "Ellen March", "id": 152759, "credit_id": "52fe454ac3a36847f80c5d4f", "cast_id": 24, "profile_path": "/ufFeqwjB6GGdZCRnkZtNS2hDoz9.jpg", "order": 12}, {"name": "Brian Anthony Wilson", "character": "Woody", "id": 127070, "credit_id": "52fe454ac3a36847f80c5d53", "cast_id": 25, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 13}, {"name": "Todd Allen", "character": "Gibbs", "id": 21484, "credit_id": "52fe454ac3a36847f80c5d57", "cast_id": 26, "profile_path": "/vHGltCZ9ue4xjG6dKfpiNJ47g2g.jpg", "order": 14}, {"name": "Rex Linn", "character": "Mercer", "id": 16937, "credit_id": "52fe454ac3a36847f80c5d5b", "cast_id": 27, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 15}, {"name": "Shawn Hatosy", "character": "Billy", "id": 52647, "credit_id": "52fe454ac3a36847f80c5d5f", "cast_id": 28, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 16}, {"name": "Ryan Hurst", "character": "Eddie March", "id": 43858, "credit_id": "52fe454ac3a36847f80c5d63", "cast_id": 29, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 17}, {"name": "Charles Esten", "character": "Michael, Abby's Husband", "id": 157412, "credit_id": "52fe454ac3a36847f80c5d67", "cast_id": 30, "profile_path": "/wBIiivIZTBVtwe2hEqfiqnQxMRc.jpg", "order": 18}, {"name": "Annie Costner", "character": "Ponytail", "id": 1080276, "credit_id": "52fe454ac3a36847f80c5d6b", "cast_id": 31, "profile_path": "/vBP2LHJTU48DGKJVOnM0O5DIRhy.jpg", "order": 19}, {"name": "Ty O'Neal", "character": "Drew", "id": 184834, "credit_id": "52fe454ac3a36847f80c5d6f", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Mary Stuart Masterson", "character": "Hope, the Postman's daughter", "id": 31140, "credit_id": "52fe454ac3a36847f80c5d73", "cast_id": 33, "profile_path": "/cUsInuGkiBVcKIRJMRsmD52Sxx5.jpg", "order": 21}], "directors": [{"name": "Kevin Costner", "department": "Directing", "job": "Director", "credit_id": "52fe454ac3a36847f80c5cdf", "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "id": 1269}], "vote_average": 6.4, "runtime": 177}, "9923": {"poster_path": "/rH2m5kRQ7P4dYduVbUbRs5b30zf.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10169202, "overview": "A recounting of Domino Harvey's life story. The daughter of actor Laurence Harvey turned away from her career as a Ford model to become a bounty hunter.", "video": false, "id": 9923, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Domino", "tagline": "Heads You Live... Tails You Die.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421054", "adult": false, "backdrop_path": "/v5psFMCnYZfl3ITeyBWvKUqS4ko.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Davis-Films", "id": 342}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2005-09-22", "popularity": 0.696745705751615, "original_title": "Domino", "budget": 50000000, "cast": [{"name": "Keira Knightley", "character": "Domino Harvey", "id": 116, "credit_id": "52fe454ac3a36847f80c5e55", "cast_id": 24, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Mickey Rourke", "character": "Ed Mosbey", "id": 2295, "credit_id": "52fe454ac3a36847f80c5e59", "cast_id": 25, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 1}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Choco", "id": 25616, "credit_id": "52fe454ac3a36847f80c5e63", "cast_id": 27, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 2}, {"name": "Delroy Lindo", "character": "Claremont Williams", "id": 18792, "credit_id": "52fe454ac3a36847f80c5e67", "cast_id": 28, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 3}, {"name": "Mo'Nique", "character": "Lateesha Rodriguez", "id": 60561, "credit_id": "52fe454ac3a36847f80c5e6b", "cast_id": 29, "profile_path": "/2oXH2sx32C3w7t7HmorpPNGCUgG.jpg", "order": 4}, {"name": "Riz Abbasi", "character": "Alf", "id": 60581, "credit_id": "52fe454ac3a36847f80c5e6f", "cast_id": 30, "profile_path": "/7w6t4Wk8N1FYLNWSfBIsQGcBfWQ.jpg", "order": 5}, {"name": "Brian Austin Green", "character": "Himself", "id": 19148, "credit_id": "52fe454ac3a36847f80c5e73", "cast_id": 31, "profile_path": "/npblfpMicJnJteHscNXIXlhsQMh.jpg", "order": 6}, {"name": "Macy Gray", "character": "Lashandra Davis", "id": 60560, "credit_id": "52fe454ac3a36847f80c5e77", "cast_id": 32, "profile_path": "/ykjPgs6Djwuxo8hpH04EWBDzeOo.jpg", "order": 7}, {"name": "Shondrella Avery", "character": "Lashindra Davis", "id": 53928, "credit_id": "52fe454ac3a36847f80c5e7b", "cast_id": 33, "profile_path": "/tTRyVWKBCmZR0Eq3XQHMG682kUJ.jpg", "order": 8}, {"name": "Ian Ziering", "character": "Himself", "id": 19146, "credit_id": "52fe454ac3a36847f80c5e7f", "cast_id": 34, "profile_path": "/j4enDmt6JL3hmWlLuEbQW0xe40Z.jpg", "order": 9}, {"name": "Joe Nunez", "character": "Raul", "id": 54696, "credit_id": "52fe454ac3a36847f80c5e83", "cast_id": 35, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 10}, {"name": "Dabney Coleman", "character": "Drake Bishop", "id": 12850, "credit_id": "52fe454ac3a36847f80c5e87", "cast_id": 36, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 11}, {"name": "Peter Jacobson", "character": "Burke Beckett", "id": 31514, "credit_id": "52fe454ac3a36847f80c5e8b", "cast_id": 37, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 12}, {"name": "Kel O'Neill", "character": "Francis", "id": 58509, "credit_id": "52fe454ac3a36847f80c5e8f", "cast_id": 38, "profile_path": "/2xAyjoVH1UlkPauIpxf92PNkHWc.jpg", "order": 13}, {"name": "Jacqueline Bisset", "character": "Sophie Wynn", "id": 14061, "credit_id": "52fe454ac3a36847f80c5e93", "cast_id": 39, "profile_path": "/9z1cG9fLoj0hEcYjrpb0rrNQaVh.jpg", "order": 14}, {"name": "Dale Dickey", "character": "Edna Fender", "id": 46814, "credit_id": "52fe454ac3a36847f80c5e97", "cast_id": 40, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 15}, {"name": "Lucy Liu", "character": "Taryn Miles", "id": 140, "credit_id": "52fe454ac3a36847f80c5e9b", "cast_id": 41, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 16}, {"name": "Lew Temple", "character": "Locus Fender", "id": 37027, "credit_id": "52fe454ac3a36847f80c5e9f", "cast_id": 42, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 17}, {"name": "Mena Suvari", "character": "Kimmie", "id": 8211, "credit_id": "52fe454ac3a36847f80c5ea3", "cast_id": 43, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 18}, {"name": "Christopher Walken", "character": "Mark Heiss", "id": 4690, "credit_id": "52fe454ac3a36847f80c5ea7", "cast_id": 44, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 19}, {"name": "Liza Lapira", "character": "Chinegro Woman", "id": 51998, "credit_id": "52fe454ac3a36847f80c5eab", "cast_id": 45, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 20}, {"name": "Tom Waits", "character": "The Wanderer", "id": 2887, "credit_id": "5404a119c3a3684372006b14", "cast_id": 46, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 21}, {"name": "Jerry Springer", "character": "Himself", "id": 94743, "credit_id": "5404a135c3a3682d9800538c", "cast_id": 47, "profile_path": "/up4YfxFYdhXaTiMSq4IDDBEHQo6.jpg", "order": 22}, {"name": "Tabitha Brownstone", "character": "Young Domino", "id": 1448566, "credit_id": "551cba4d9251416a33001622", "cast_id": 48, "profile_path": null, "order": 23}, {"name": "Domino Harvey", "character": "Girl Walking from Exploding Car", "id": 1448567, "credit_id": "551cba819251416a33001630", "cast_id": 49, "profile_path": null, "order": 24}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe454ac3a36847f80c5dd9", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.0, "runtime": 127}, "1734": {"poster_path": "/hioiYUZVIuYIhagDGhIAjyNEUu0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 433013274, "overview": "Rick and Evelyn O'Connell, along with their 8 year old son Alex, discover the key to the legendary Scorpion King's might, the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn't above kidnapping its new bearer, Alex, to gain control of Anubis' otherworldly army.", "video": false, "id": 1734, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Mummy Returns", "tagline": "The most powerful force on earth is about to be unleashed by the two people who should know better.", "vote_count": 843, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3nNvwRGWurR5O3a8k3U13hiqs6y.jpg", "poster_path": "/jKVaPlvPfsmekiOaFqCKuGwle5M.jpg", "id": 1733, "name": "The Mummy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0209163", "adult": false, "backdrop_path": "/bM8xMnxdsR0iJt3pdF4Ncus4KV8.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alphaville Films", "id": 11462}, {"name": "Imhotep Productions", "id": 20242}], "release_date": "2001-04-28", "popularity": 1.49073207730603, "original_title": "The Mummy Returns", "budget": 98000000, "cast": [{"name": "Brendan Fraser", "character": "Richard O'Connell", "id": 18269, "credit_id": "52fe4312c3a36847f8038407", "cast_id": 3, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Evelyn Carnahan O'Connell/Princess Nefertiri", "id": 3293, "credit_id": "52fe4312c3a36847f803840b", "cast_id": 4, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "John Hannah", "character": "Jonathan Carnahan", "id": 10727, "credit_id": "52fe4312c3a36847f803840f", "cast_id": 5, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 2}, {"name": "Arnold Vosloo", "character": "High Priest Imhotep", "id": 16743, "credit_id": "52fe4312c3a36847f8038413", "cast_id": 6, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 3}, {"name": "Oded Fehr", "character": "Ardeth Bay", "id": 18041, "credit_id": "52fe4312c3a36847f8038417", "cast_id": 7, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 4}, {"name": "Dwayne Johnson", "character": "Mathayus the Scorpion King", "id": 18918, "credit_id": "52fe4312c3a36847f803841b", "cast_id": 8, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 5}, {"name": "Freddie Boath", "character": "Alexander O'Connell", "id": 18919, "credit_id": "52fe4312c3a36847f803841f", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Patricia Vel\u00e1squez", "character": "Meela Nais/Anck Su Namun", "id": 18920, "credit_id": "52fe4312c3a36847f8038423", "cast_id": 10, "profile_path": "/dRD0tYxrtxPZ11mJCN0O3nLd1Mx.jpg", "order": 7}, {"name": "Alun Armstrong", "character": "Baltus Hafez", "id": 2629, "credit_id": "52fe4312c3a36847f803844b", "cast_id": 17, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 8}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Lock-Nah", "id": 31164, "credit_id": "52fe4312c3a36847f803844f", "cast_id": 18, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 9}, {"name": "Shaun Parkes", "character": "Izzy Buttons", "id": 30316, "credit_id": "52fe4312c3a36847f8038453", "cast_id": 19, "profile_path": "/rVjjwaMbHmz1Cd0GW2Tn7hAmxbf.jpg", "order": 10}, {"name": "Bruce Byron", "character": "Red", "id": 25675, "credit_id": "52fe4312c3a36847f8038457", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Joe Dixon", "character": "Jacques", "id": 1010264, "credit_id": "52fe4312c3a36847f803845b", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Thomas Fisher", "character": "Spivey", "id": 208211, "credit_id": "52fe4312c3a36847f803845f", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Aharon Ipal\u00e9", "character": "Pharaoh Seti I", "id": 25808, "credit_id": "52fe4312c3a36847f8038463", "cast_id": 23, "profile_path": "/9Qb7EXmGOAntmK0hMocOvT57Txi.jpg", "order": 14}, {"name": "Quill Roberts", "character": "Shafek", "id": 178631, "credit_id": "52fe4312c3a36847f8038467", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Donna Air", "character": "Showgirl with Jonathan", "id": 120886, "credit_id": "52fe4312c3a36847f803846b", "cast_id": 25, "profile_path": "/x9SjwmJlvu1FJ7ZIDKcwACnQfXz.jpg", "order": 16}, {"name": "Trevor Lovell", "character": "Mountain of Flesh", "id": 1077874, "credit_id": "52fe4312c3a36847f803846f", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Tom Fisher", "character": "Spivey", "id": 27678, "credit_id": "536222b20e0a2649a900146a", "cast_id": 30, "profile_path": null, "order": 18}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4312c3a36847f80383fd", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 5.8, "runtime": 130}, "1735": {"poster_path": "/53hrZvxiV3HgG6pdhuMeErIc7Hg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 401128639, "overview": "The third installment in the Mummy franchise takes archaeologist Rick O'Connell to China, pitting him against an emperor from the 2,000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time, O'Connell enlists the help of his family -- including his wife and son -- to quash the so-called Dragon Emperor and his abuse of supernatural power.", "video": false, "id": 1735, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Mummy: Tomb of the Dragon Emperor", "tagline": "A New Evil Awakens.", "vote_count": 463, "homepage": "http://www.themummy.com/", "belongs_to_collection": {"backdrop_path": "/3nNvwRGWurR5O3a8k3U13hiqs6y.jpg", "poster_path": "/jKVaPlvPfsmekiOaFqCKuGwle5M.jpg", "id": 1733, "name": "The Mummy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "sa", "name": ""}], "imdb_id": "tt0859163", "adult": false, "backdrop_path": "/caB8JFUigSHdGsdxOxaK4vZtOiN.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Sommers Company, The", "id": 19643}, {"name": "Alphaville Films", "id": 11462}, {"name": "China Film Co-Production Corporation", "id": 2269}], "release_date": "2008-07-31", "popularity": 1.51901770772947, "original_title": "The Mummy: Tomb of the Dragon Emperor", "budget": 145000000, "cast": [{"name": "Brendan Fraser", "character": "Richard O'Connell", "id": 18269, "credit_id": "52fe4312c3a36847f80384a3", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Jet Li", "character": "Emperor Han", "id": 1336, "credit_id": "52fe4312c3a36847f80384a7", "cast_id": 2, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 1}, {"name": "John Hannah", "character": "Jonathan Carnahan", "id": 10727, "credit_id": "52fe4312c3a36847f80384c9", "cast_id": 8, "profile_path": "/8NUa2IAIcDTbfXHBl4LApBi5qnR.jpg", "order": 2}, {"name": "Maria Bello", "character": "Evelyn O\u2019Connell", "id": 49, "credit_id": "52fe4312c3a36847f80384df", "cast_id": 12, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "Luke Ford", "character": "Alex O'Connell", "id": 55900, "credit_id": "52fe4312c3a36847f80384e3", "cast_id": 13, "profile_path": "/n3gFLK0G4iUPm2ov909B3nUYt3X.jpg", "order": 4}, {"name": "Michelle Yeoh", "character": "Zi Juan", "id": 1620, "credit_id": "52fe4312c3a36847f80384e7", "cast_id": 14, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 5}, {"name": "Isabella Leong", "character": "Lin", "id": 72040, "credit_id": "52fe4312c3a36847f80384eb", "cast_id": 15, "profile_path": "/dqCFDSllyIZ5hBNNdfXxaGveMtS.jpg", "order": 6}, {"name": "Anthony Wong", "character": "General Yang", "id": 66717, "credit_id": "52fe4312c3a36847f80384ef", "cast_id": 16, "profile_path": "/pCwuQUam6Xy8AhFddQFKYa74xGQ.jpg", "order": 7}, {"name": "Russell Wong", "character": "Ming Guo", "id": 21354, "credit_id": "52fe4312c3a36847f80384f3", "cast_id": 17, "profile_path": "/ow2nODo1eKRchSLJMjEW7BUTXgy.jpg", "order": 8}, {"name": "Liam Cunningham", "character": "Maguire", "id": 15498, "credit_id": "52fe4312c3a36847f80384f7", "cast_id": 18, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 9}, {"name": "David Calder", "character": "Roger Wilson", "id": 10779, "credit_id": "52fe4312c3a36847f80384fb", "cast_id": 19, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 10}, {"name": "Jessey Meng", "character": "Choi", "id": 554085, "credit_id": "52fe4312c3a36847f80384ff", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Tian Liang", "character": "Li Zhou", "id": 1172006, "credit_id": "52fe4312c3a36847f8038503", "cast_id": 21, "profile_path": "/jSmqjHfaA3pMwsIB9A9jUzQiVan.jpg", "order": 12}, {"name": "Albert Kwan", "character": "Chu Wah", "id": 450628, "credit_id": "52fe4312c3a36847f8038507", "cast_id": 22, "profile_path": "/ap4BzI24tzjIkKzDl4UwYVaYNTg.jpg", "order": 13}, {"name": "Jacky Wu", "character": "Assassin (as Wu Jing)", "id": 1290457, "credit_id": "52fe4312c3a36847f803850b", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe4312c3a36847f80384ad", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.1, "runtime": 112}, "9928": {"poster_path": "/6R7XAaW12OQYMlcAlEhwM4lXE5x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 260696994, "overview": "Rodney Copperbottom is a young robot inventor who dreams of making the world a better place \u2026 until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams -- like those of his friends, including motor-mouthed Fender -- are in danger of becoming obsolete.", "video": false, "id": 9928, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Robots", "tagline": "You can shine no matter what you're made of.", "vote_count": 384, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0358082", "adult": false, "backdrop_path": "/ghuxj8NDaJ1tpxC6pCaFPz4LWZi.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2005-03-21", "popularity": 1.57964626917628, "original_title": "Robots", "budget": 75000000, "cast": [{"name": "Robin Williams", "character": "Fender (voice)", "id": 2157, "credit_id": "52fe454bc3a36847f80c62fb", "cast_id": 13, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Rodney Copperbottom (voice)", "id": 3061, "credit_id": "52fe454bc3a36847f80c62ff", "cast_id": 14, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Halle Berry", "character": "Cappy (voice)", "id": 4587, "credit_id": "52fe454bc3a36847f80c6303", "cast_id": 15, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 2}, {"name": "Mel Brooks", "character": "Big Weld (voice)", "id": 14639, "credit_id": "52fe454bc3a36847f80c6307", "cast_id": 16, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 3}, {"name": "Paula Abdul", "character": "Watch", "id": 129193, "credit_id": "52fe454bc3a36847f80c630b", "cast_id": 17, "profile_path": "/puWylssW0yyORxchbsLJK4vkXs0.jpg", "order": 4}, {"name": "Amanda Bynes", "character": "Piper", "id": 29220, "credit_id": "52fe454bc3a36847f80c630f", "cast_id": 18, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 5}, {"name": "Drew Carey", "character": "Crank", "id": 83349, "credit_id": "52fe454bc3a36847f80c6313", "cast_id": 19, "profile_path": "/dYYm1QdYW7jmCqAkmpnhrmBc8RW.jpg", "order": 6}, {"name": "Jennifer Coolidge", "character": "Aunt Fanny", "id": 38334, "credit_id": "52fe454bc3a36847f80c6317", "cast_id": 20, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 7}, {"name": "Lucille Bliss", "character": "Pigeon Lady (voice)", "id": 148111, "credit_id": "52fe454bc3a36847f80c631b", "cast_id": 21, "profile_path": "/uBmRWAZ2ZU6Ett5ti7Zb4AMnQxF.jpg", "order": 8}, {"name": "Terry Bradshaw", "character": "Broken Arm Bot (voice)", "id": 51330, "credit_id": "52fe454bc3a36847f80c631f", "cast_id": 22, "profile_path": "/oMUyNy9hbeYacBrLVbY4LhW4KAw.jpg", "order": 9}, {"name": "Jim Broadbent", "character": "Madame Gasket (voice)", "id": 388, "credit_id": "52fe454bc3a36847f80c6323", "cast_id": 23, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 10}, {"name": "Paul Giamatti", "character": "Tim the Gate Guard (voice)", "id": 13242, "credit_id": "52fe454bc3a36847f80c6327", "cast_id": 24, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 11}, {"name": "Marshall Efron", "character": "Lamppost / Toilet Bot / Bass Drum / Microphone", "id": 9224, "credit_id": "52fe454bc3a36847f80c632b", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Damien Fahey", "character": "Stage Announcer (voice)", "id": 207676, "credit_id": "52fe454bc3a36847f80c632f", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Will Denton", "character": "Young Rodney (voice)", "id": 133814, "credit_id": "52fe454bc3a36847f80c6333", "cast_id": 27, "profile_path": "/gGcgPTd2YyywmTM8SPfMVbOL51m.jpg", "order": 14}], "directors": [{"name": "Chris Wedge", "department": "Directing", "job": "Director", "credit_id": "52fe454bc3a36847f80c62bb", "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "id": 5713}, {"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe454bc3a36847f80c62c1", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 5.8, "runtime": 91}, "157386": {"poster_path": "/2HDOuZbKAjPw7m617LAlpbLib7u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6851969, "overview": "A hard-partying high school senior's philosophy on life changes when he meets the not-so-typical \"nice girl.\"", "video": false, "id": 157386, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Spectacular Now", "tagline": "From the Writers of (500) Days of Summer", "vote_count": 230, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1714206", "adult": false, "backdrop_path": "/8zPQ57lSiuRmHjmkRGopGdG4QD5.jpg", "production_companies": [{"name": "21 Laps Entertainment", "id": 2575}, {"name": "Andrew Lauren Productions (ALP)", "id": 19194}], "release_date": "2013-08-02", "popularity": 1.12038143199089, "original_title": "The Spectacular Now", "budget": 2500000, "cast": [{"name": "Miles Teller", "character": "Sutter", "id": 996701, "credit_id": "52fe4bc49251416c910e4f9f", "cast_id": 5, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 0}, {"name": "Shailene Woodley", "character": "Aimee", "id": 94185, "credit_id": "52fe4bc49251416c910e4fa3", "cast_id": 6, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 1}, {"name": "Brie Larson", "character": "Cassidy", "id": 60073, "credit_id": "52fe4bc49251416c910e4fa7", "cast_id": 7, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 2}, {"name": "Masam Holden", "character": "Ricky", "id": 198855, "credit_id": "52fe4bc49251416c910e4fd1", "cast_id": 17, "profile_path": "/fCuceoMnHdXKeDgxvctunoGNE9P.jpg", "order": 3}, {"name": "Dayo Okeniyi", "character": "Marcus", "id": 1030512, "credit_id": "52fe4bc49251416c910e4fc9", "cast_id": 15, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 4}, {"name": "Kyle Chandler", "character": "Tommy", "id": 3497, "credit_id": "52fe4bc49251416c910e4fb3", "cast_id": 10, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 5}, {"name": "Jennifer Jason Leigh", "character": "Sara", "id": 10431, "credit_id": "52fe4bc49251416c910e4fab", "cast_id": 8, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 6}, {"name": "Nicci Faires", "character": "Tara", "id": 1178797, "credit_id": "52fe4bc49251416c910e4fd5", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ava London", "character": "Bethany", "id": 1343524, "credit_id": "53c9f76c0e0a264750000f3e", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Whitney Goin", "character": "Aimee's Mom", "id": 1343525, "credit_id": "53c9f7810e0a264742000f3e", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Andre Royo", "character": "Mr. Aster", "id": 74957, "credit_id": "5531b3da925141529b0010bc", "cast_id": 51, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 10}, {"name": "Bob Odenkirk", "character": "Dan", "id": 59410, "credit_id": "52fe4bc49251416c910e4fc1", "cast_id": 13, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 12}, {"name": "Mary Elizabeth Winstead", "character": "Holly", "id": 17628, "credit_id": "52fe4bc49251416c910e4faf", "cast_id": 9, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 13}, {"name": "Levi Miller", "character": "Erik Wolff", "id": 1343527, "credit_id": "53c9f80a0e0a264742000f61", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "E. Roger Mitchell", "character": "Doctor", "id": 41020, "credit_id": "52fe4bc49251416c910e4fcd", "cast_id": 16, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 15}, {"name": "Kaitlyn Dever", "character": "Kristal", "id": 481337, "credit_id": "52fe4bc49251416c910e4fb7", "cast_id": 11, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 16}, {"name": "Gary Weeks", "character": "Joe", "id": 168875, "credit_id": "52fe4bc49251416c910e4fd9", "cast_id": 19, "profile_path": "/wss0WJWiq8SyS69NW2DCwMdipgi.jpg", "order": 17}, {"name": "Logan Mack", "character": "Cody", "id": 1343528, "credit_id": "53c9f85b0e0a26473c000eeb", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Valerie Payton", "character": "Bus Driver", "id": 1343531, "credit_id": "53c9f89c0e0a264750000f7e", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Christopher Nathan Miller", "character": "Shane", "id": 1343532, "credit_id": "53c9f8b10e0a264750000f85", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Troy Willis", "character": "Bartender", "id": 1343536, "credit_id": "53c9f8e00e0a26473c000f0b", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Mike Hickman", "character": "Drunk Man", "id": 1343539, "credit_id": "53c9f90d0e0a264742000f99", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Whitney Christopher King", "character": "Roberta", "id": 1343541, "credit_id": "53c9f9350e0a26473c000f22", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Wayne Dean", "character": "Customer", "id": 1343542, "credit_id": "53c9f9470e0a26473f000faf", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Doug Haley", "character": "Additional Voices (voice)", "id": 1005324, "credit_id": "545f13e8c3a3682c78000108", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Keith Silverstein", "character": "Additional Voices (voice)", "id": 1343544, "credit_id": "53c9f98b0e0a264742000fb3", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Alex D'Lerma", "character": "Additional Voices (voice)", "id": 1343546, "credit_id": "53c9f9a60e0a264748000f17", "cast_id": 45, "profile_path": null, "order": 27}, {"name": "Dina Sherman", "character": "Additional Voices (voice)", "id": 1343547, "credit_id": "53c9f9ae0e0a264745000f76", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Karen Strassman", "character": "Additional Voices (voice)", "id": 59065, "credit_id": "552285059251415c87005a8d", "cast_id": 50, "profile_path": null, "order": 29}], "directors": [{"name": "James Ponsoldt", "department": "Directing", "job": "Director", "credit_id": "52fe4bc49251416c910e4f89", "profile_path": null, "id": 930710}], "vote_average": 7.2, "runtime": 95}, "9932": {"poster_path": "/6G6DrXsaNYPciPB3sugHL9TIewN.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The mafia's Paul Vitti is back in prison and will need some serious counseling when he gets out. Naturally, he returns to his analyst Dr. Ben Sobel for help and finds that Sobel needs some serious help himself as he has inherited the family practice, as well as an excess stock of stress.", "video": false, "id": 9932, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Analyze That", "tagline": "Back in therapy", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zhVKNz29OvsXacU1YKCksBx8yIl.jpg", "poster_path": "/h8rayR5AKPzqYrQVSDjK3BkYZun.jpg", "id": 110127, "name": "Analyze Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289848", "adult": false, "backdrop_path": "/4HBhDTmAY2MkdvQm7WDyDIgNDNj.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Baltimore Spring Creek Pictures", "id": 14719}, {"name": "Tribeca Productions", "id": 11391}], "release_date": "2002-12-06", "popularity": 0.535608703258836, "original_title": "Analyze That", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Paul Vitti", "id": 380, "credit_id": "52fe454cc3a36847f80c64ff", "cast_id": 17, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Dr. Ben Sobel", "id": 7904, "credit_id": "52fe454cc3a36847f80c6503", "cast_id": 18, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Lisa Kudrow", "character": "Laura Sobel", "id": 14406, "credit_id": "52fe454cc3a36847f80c6507", "cast_id": 19, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 2}, {"name": "Joe Viterelli", "character": "Jelly", "id": 60023, "credit_id": "52fe454cc3a36847f80c650b", "cast_id": 20, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 3}, {"name": "Cathy Moriarty", "character": "Patti LoPresti", "id": 14702, "credit_id": "52fe454cc3a36847f80c650f", "cast_id": 21, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 4}, {"name": "Kyle Sabihy", "character": "Michael Sobel", "id": 162149, "credit_id": "52fe454cc3a36847f80c6513", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Frank Pietrangolare", "character": "Tuna", "id": 17923, "credit_id": "52fe454cc3a36847f80c6517", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Jerome Le Page", "character": "Convict", "id": 171375, "credit_id": "52fe454cc3a36847f80c651b", "cast_id": 24, "profile_path": null, "order": 7}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe454cc3a36847f80c64cb", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.0, "runtime": 96}, "18126": {"poster_path": "/cYCIdMIqCHHJoWeExVOxjfdDxa8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124013487, "overview": "When Miley Stewart (aka pop-star Hannah Montana) gets too caught up in the superstar celebrity lifestyle, her dad decides it's time for a total change of scenery. But sweet nibblets! Miley must trade in all the glitz and glamour of Hollywood for some ol' blue jeans on the family farm in Tennessee, and question if she can be both Miley Stewart and Hannah Montana. With a little help from her friends \u2013 and awesome guest stars Taylor Swift, Rascal Flatts and Vanessa Williams \u2013 will she figure out whether to choose Hannah or Miley?", "video": false, "id": 18126, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Hannah Montana: The Movie", "tagline": "She has the best of both worlds...now she has to choose just one.", "vote_count": 75, "homepage": "http://disney.go.com/disneypictures/hannahmontanamovie/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1114677", "adult": false, "backdrop_path": "/ezx3NkXNqf2KnJCP6Nfj1bfCFut.jpg", "production_companies": [{"name": "It's a Laugh Productions", "id": 3812}, {"name": "Millar Gough Ink", "id": 20356}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2009-04-10", "popularity": 0.972045126638673, "original_title": "Hannah Montana: The Movie", "budget": 35000000, "cast": [{"name": "Miley Cyrus", "character": "Miley Stewart/Hannah Montana", "id": 76594, "credit_id": "52fe47619251416c75097521", "cast_id": 2, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 0}, {"name": "Billy Ray Cyrus", "character": "Billy Ray Stewart", "id": 78887, "credit_id": "52fe47619251416c75097525", "cast_id": 3, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 1}, {"name": "Emily Osment", "character": "Lilly Truscott", "id": 82785, "credit_id": "52fe47619251416c7509752f", "cast_id": 5, "profile_path": "/7Uhb0bJp7v3sqnSBkxXjya8UeXO.jpg", "order": 2}, {"name": "Jason Earles", "character": "Jackson Rod Stewart", "id": 54594, "credit_id": "52fe47619251416c75097533", "cast_id": 6, "profile_path": "/lwHIA7z8LAyKx7B4eV9bWUBT7tk.jpg", "order": 3}, {"name": "Taylor Swift", "character": "Herself", "id": 212208, "credit_id": "52fe47619251416c75097537", "cast_id": 7, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 4}, {"name": "Lucas Till", "character": "Travis Brody", "id": 429, "credit_id": "52fe47619251416c7509753b", "cast_id": 8, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 5}, {"name": "Mitchel Musso", "character": "Oliver Oken", "id": 51583, "credit_id": "52fe47619251416c7509753f", "cast_id": 9, "profile_path": "/rMmElJ9TwAFfEAW3Q1ET7Ioi0Fp.jpg", "order": 6}, {"name": "Mois\u00e9s Arias", "character": "Rico", "id": 57412, "credit_id": "52fe47619251416c75097543", "cast_id": 10, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 7}, {"name": "Vanessa Williams", "character": "Vita", "id": 27011, "credit_id": "52fe47619251416c75097547", "cast_id": 11, "profile_path": "/t5tyW5nSk5ikeU8cWPdg4ImsMuq.jpg", "order": 8}, {"name": "Margo Martindale", "character": "Ruby", "id": 452, "credit_id": "52fe47619251416c7509754b", "cast_id": 12, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 9}, {"name": "Melora Hardin", "character": "Lorelai", "id": 404, "credit_id": "52fe47619251416c7509754f", "cast_id": 13, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 10}, {"name": "Brooke Shields", "character": "Miley's Mom", "id": 15110, "credit_id": "52fe47619251416c75097553", "cast_id": 14, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 11}, {"name": "Brandon Cyrus", "character": "Extra", "id": 1329572, "credit_id": "5397334dc3a3686415005e79", "cast_id": 15, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 12}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe47619251416c7509751d", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 6.0, "runtime": 102}, "83666": {"poster_path": "/ysTohGF7NY9Z6MYz9vLNYiyzh0r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64, "overview": "Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore \u2013 and the peaceful island community is turned upside down in more ways than anyone can handle.", "video": false, "id": 83666, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Moonrise Kingdom", "tagline": "A tormenting and surprising story of children and adults during the stormy days of the summer of 1965.", "vote_count": 419, "homepage": "http://www.moonrisekingdom.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748122", "adult": false, "backdrop_path": "/1mKI5UfeCetrB3HZbYt6VTn7K9m.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "American Empirical Pictures", "id": 23449}, {"name": "Moonrise", "id": 25626}], "release_date": "2012-05-25", "popularity": 0.961997643040054, "original_title": "Moonrise Kingdom", "budget": 16, "cast": [{"name": "Bruce Willis", "character": "Captain Sharp", "id": 62, "credit_id": "53062e8d925141349a297ef3", "cast_id": 25, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Edward Norton", "character": "Scout Master Ward", "id": 819, "credit_id": "53062eb292514134972a8e3d", "cast_id": 26, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Jared Gilman", "character": "Sam", "id": 929906, "credit_id": "53062f74925141348b2cb496", "cast_id": 32, "profile_path": "/udQlOjyaIfIJ4xDjcUrIkI8uRko.jpg", "order": 2}, {"name": "Kara Hayward", "character": "Suzy", "id": 929905, "credit_id": "53062f5292514134912b5d7d", "cast_id": 31, "profile_path": "/zTrPq9HY90EdllC7VspXzkqILHC.jpg", "order": 3}, {"name": "Bill Murray", "character": "Mr. Bishop", "id": 1532, "credit_id": "53062ee092514134a2277c9f", "cast_id": 27, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 4}, {"name": "Frances McDormand", "character": "Mrs. Bishop", "id": 3910, "credit_id": "53062eff925141349e27ef6e", "cast_id": 28, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 5}, {"name": "Bob Balaban", "character": "The Narrator", "id": 12438, "credit_id": "53062fad92514134912b6035", "cast_id": 34, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 6}, {"name": "Tilda Swinton", "character": "Social Services", "id": 3063, "credit_id": "53062f1b92514134972a9674", "cast_id": 29, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 7}, {"name": "Harvey Keitel", "character": "Commander Pierce", "id": 1037, "credit_id": "53062f91925141348e297f43", "cast_id": 33, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 8}, {"name": "Lucas Hedges", "character": "Redford", "id": 1105079, "credit_id": "53062fc692514134882bffc3", "cast_id": 35, "profile_path": "/pmsZ0DDOa0PAZ5uVHbcwMb3UryS.jpg", "order": 9}, {"name": "Jason Schwartzman", "character": "Cousin Ben", "id": 17881, "credit_id": "53062f34925141348b2cac82", "cast_id": 30, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 10}, {"name": "Charlie Kilgore", "character": "Lazy Eye", "id": 1105080, "credit_id": "53062fe8925141349a299de6", "cast_id": 36, "profile_path": "/6TSeIGoACszF59oT0ai5qg1ovYL.jpg", "order": 11}, {"name": "Chandler Frantz", "character": "Gadge", "id": 963684, "credit_id": "53062ffd9251413485271c12", "cast_id": 37, "profile_path": "/egYtayTgACb2IffMjQ1RtUPO8Qd.jpg", "order": 12}, {"name": "Gabriel Rush", "character": "Skotak", "id": 1142686, "credit_id": "5306301292514134972aaa69", "cast_id": 38, "profile_path": "/cUVwfWMapARIFYwiL75fndjpQMn.jpg", "order": 13}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe48b29251416c910954b3", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.4, "runtime": 94}, "9942": {"poster_path": "/oGC2fr1vzfee7eIcr7D94Bd04Qx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49797148, "overview": "When Rachel Phelps inherits the Cleveland Indians from her deceased husband, she's determined to move the team to a warmer climate -- but only a losing season will make that possible, which should be easy given the misfits she's hired. Rachel is sure her dream will come true, but she underestimates their will to succeed!", "video": false, "id": 9942, "genres": [{"id": 35, "name": "Comedy"}], "title": "Major League", "tagline": "A comedy with bats and balls.", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vNqeD5ECuhb7FdQiOPCjeI23YK2.jpg", "poster_path": "/2WVFH5glQThcWsjIAAmoJxhchHX.jpg", "id": 97771, "name": "Major League Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097815", "adult": false, "backdrop_path": "/rnp03J08gfYLEPfEHD2QNZdLE97.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mirage Enterprises", "id": 932}], "release_date": "1989-04-06", "popularity": 0.454890780071419, "original_title": "Major League", "budget": 11000000, "cast": [{"name": "Tom Berenger", "character": "Jake Taylor", "id": 13022, "credit_id": "52fe454cc3a36847f80c67a1", "cast_id": 9, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 0}, {"name": "Charlie Sheen", "character": "Rick 'Wild Thing' Vaughn", "id": 6952, "credit_id": "52fe454cc3a36847f80c67a5", "cast_id": 10, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 1}, {"name": "Corbin Bernsen", "character": "Roger Dorn", "id": 21246, "credit_id": "52fe454cc3a36847f80c67a9", "cast_id": 11, "profile_path": "/5E4ptQ88NCyeIYlS8NkMm9BzWQJ.jpg", "order": 2}, {"name": "Margaret Whitton", "character": "Rachel Phelps", "id": 60700, "credit_id": "52fe454cc3a36847f80c67ad", "cast_id": 12, "profile_path": "/a2Lm6B17pOL2GTMsOQ199tFlOx7.jpg", "order": 3}, {"name": "James Gammon", "character": "Lou Brown", "id": 16433, "credit_id": "52fe454cc3a36847f80c67b1", "cast_id": 13, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 4}, {"name": "Rene Russo", "character": "Lynn Wells", "id": 14343, "credit_id": "52fe454cc3a36847f80c67b5", "cast_id": 14, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 5}, {"name": "Wesley Snipes", "character": "Willie Mays Hayes", "id": 10814, "credit_id": "52fe454cc3a36847f80c67b9", "cast_id": 15, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 6}, {"name": "Dennis Haysbert", "character": "Pedro Cerrano", "id": 352, "credit_id": "52fe454cc3a36847f80c67bd", "cast_id": 16, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 7}, {"name": "Stacy Carroll", "character": "Suzanne Dorn", "id": 147485, "credit_id": "52fe454cc3a36847f80c67c1", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Bob Uecker", "character": "Harry Doyle", "id": 147486, "credit_id": "52fe454cc3a36847f80c67c5", "cast_id": 18, "profile_path": "/dZ5byuleZO2QisuyC6bX9KSOO1S.jpg", "order": 9}, {"name": "Chelcie Ross", "character": "Eddie Harris", "id": 10486, "credit_id": "52fe454cc3a36847f80c67c9", "cast_id": 19, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 10}, {"name": "Peter Vuckovich", "character": "Haywood", "id": 147487, "credit_id": "52fe454cc3a36847f80c67cd", "cast_id": 20, "profile_path": null, "order": 11}], "directors": [{"name": "David S. Ward", "department": "Directing", "job": "Director", "credit_id": "52fe454cc3a36847f80c6779", "profile_path": null, "id": 12920}], "vote_average": 6.2, "runtime": 107}, "222935": {"poster_path": "/sc6XLX6J714LDkVV3Ys3clgypQS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 305151265, "overview": "Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.", "video": false, "id": 222935, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Fault in Our Stars", "tagline": "One Sick Love Story", "vote_count": 916, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2582846", "adult": false, "backdrop_path": "/hZWp4W5aQvGm1WiiGFYIuBUOQ3K.jpg", "production_companies": [{"name": "Temple Hill Productions", "id": 722}, {"name": "20th Century Fox Film Corporation", "id": 22573}], "release_date": "2014-05-16", "popularity": 2.6484918876428, "original_title": "The Fault in Our Stars", "budget": 12000000, "cast": [{"name": "Shailene Woodley", "character": "Hazel Grace Lancaster", "id": 94185, "credit_id": "52fe4e019251416c7514841d", "cast_id": 1, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Ansel Elgort", "character": "Augustus Waters", "id": 1159982, "credit_id": "52fe4e019251416c75148421", "cast_id": 2, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 1}, {"name": "Nat Wolff", "character": "Isaac", "id": 232006, "credit_id": "52fe4e019251416c75148429", "cast_id": 4, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 2}, {"name": "Laura Dern", "character": "Mrs. Lancaster", "id": 4784, "credit_id": "52fe4e019251416c7514842d", "cast_id": 5, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Sam Trammell", "character": "Mr. Lancaster", "id": 131006, "credit_id": "52fe4e019251416c75148431", "cast_id": 6, "profile_path": "/pvf0cmYdw3Fi2F5HjP2QHgxRKoC.jpg", "order": 4}, {"name": "Willem Dafoe", "character": "Peter Van Houten", "id": 5293, "credit_id": "52fe4e019251416c75148425", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 5}, {"name": "Lotte Verbeek", "character": "Lidewij", "id": 133931, "credit_id": "54ee3f4b925141796e00477a", "cast_id": 23, "profile_path": "/A9Me02fk2G7Hq4ekf64WadQUyf0.jpg", "order": 6}, {"name": "Ana Dela Cruz", "character": "Dr. Maria", "id": 1431805, "credit_id": "54ee3f5ac3a3680b80004c9c", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Mike Birbiglia", "character": "Patrick", "id": 113373, "credit_id": "52fe4e019251416c7514847b", "cast_id": 20, "profile_path": "/gLwimMh2rG6hfFx8LUI7InyjoLA.jpg", "order": 8}, {"name": "Emily Peachey", "character": "Monica", "id": 1279375, "credit_id": "52fe4e019251416c75148477", "cast_id": 19, "profile_path": null, "order": 9}], "directors": [{"name": "Josh Boone", "department": "Directing", "job": "Director", "credit_id": "52fe4e019251416c75148473", "profile_path": "/w7a0LNrGto3RE2sJv2OfUMXY1Tk.jpg", "id": 1053420}], "vote_average": 8.1, "runtime": 125}, "9944": {"poster_path": "/kIvGL0pyXY3TzWHrUV0ytEJDgCX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two Supreme Court Justices have been killed. Now a college professor, who clerked for one of the two men, who's also having an affair with one of his students, is given a brief by her, that states who probably, wanted to see these two men dead. He then gives it to one of his friends, who works for the FBI...", "video": false, "id": 9944, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Pelican Brief", "tagline": "Two Supreme Court Justices have been assassinated. One lone law student has stumbled upon the truth. An investigative journalist wants her story. Everybody else wants her dead.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107798", "adult": false, "backdrop_path": "/ur2Hu19ehVhJvNVtVfMMxUMn7cF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1993-12-16", "popularity": 0.278926930471809, "original_title": "The Pelican Brief", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Darby Shaw", "id": 1204, "credit_id": "52fe454dc3a36847f80c6891", "cast_id": 9, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Gray Grantham", "id": 5292, "credit_id": "52fe454dc3a36847f80c6895", "cast_id": 10, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Sam Shepard", "character": "Thomas Callahan", "id": 9880, "credit_id": "52fe454dc3a36847f80c6899", "cast_id": 11, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 2}, {"name": "William Atherton", "character": "Bob Gminski", "id": 7676, "credit_id": "52fe454dc3a36847f80c689d", "cast_id": 12, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 3}, {"name": "John Lithgow", "character": "Smith Keen", "id": 12074, "credit_id": "52fe454dc3a36847f80c68a1", "cast_id": 13, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 4}, {"name": "Tom Quinn", "character": "Sara Ann Morgan's Father", "id": 1115118, "credit_id": "52fe454dc3a36847f80c68ab", "cast_id": 15, "profile_path": "/goJeBvmLYutE2LYCoxGKTPxjGgA.jpg", "order": 5}, {"name": "John Heard", "character": "Gavin Vereek", "id": 11512, "credit_id": "52fe454dc3a36847f80c68af", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 6}], "directors": [{"name": "Alan J. Pakula", "department": "Directing", "job": "Director", "credit_id": "52fe454cc3a36847f80c6863", "profile_path": "/vzvxrcoFirt0LJb0hG0ezP64mYr.jpg", "id": 6349}], "vote_average": 6.1, "runtime": 137}, "9945": {"poster_path": "/7tOgs3ZPLl9dl5ttLdeqWFtSf68.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.", "video": false, "id": 9945, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Vampires", "tagline": "From the Master of Evil. Comes a New Breed of Terror", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120877", "adult": false, "backdrop_path": "/xhig88hH9sWG9iwEMCmvxyfE5YR.jpg", "production_companies": [{"name": "Film Office", "id": 23893}, {"name": "JVC Entertainment Networks", "id": 4248}, {"name": "Largo Entertainment", "id": 1644}, {"name": "Spooky Tooth Productions", "id": 23894}, {"name": "Storm King Productions", "id": 23895}], "release_date": "1998-10-30", "popularity": 0.244478486366321, "original_title": "Vampires", "budget": 20000000, "cast": [{"name": "James Woods", "character": "Jack Crow", "id": 4512, "credit_id": "52fe454dc3a36847f80c68f7", "cast_id": 8, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 0}, {"name": "Daniel Baldwin", "character": "Montoya", "id": 24516, "credit_id": "52fe454dc3a36847f80c68fb", "cast_id": 9, "profile_path": "/vDLkhz6EliUtYumpJdFTquUvdfp.jpg", "order": 1}, {"name": "Sheryl Lee", "character": "Katrina", "id": 6726, "credit_id": "52fe454dc3a36847f80c68ff", "cast_id": 10, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 2}, {"name": "Thomas Ian Griffith", "character": "Jan Valek", "id": 60705, "credit_id": "52fe454dc3a36847f80c6903", "cast_id": 11, "profile_path": "/eBXSCzKTo9EuNHbKWQqrAhETaSm.jpg", "order": 3}, {"name": "Maximilian Schell", "character": "Kardinal Alba", "id": 12150, "credit_id": "52fe454dc3a36847f80c6907", "cast_id": 12, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 4}, {"name": "Tim Guinee", "character": "Father Adam Guiteau", "id": 40275, "credit_id": "53833098c3a3680598008882", "cast_id": 19, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 5}, {"name": "Mark Boone Junior", "character": "Catlin", "id": 534, "credit_id": "538330c0c3a368737d003990", "cast_id": 20, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 6}, {"name": "Gregory Sierra", "character": "Father Giovanni", "id": 18914, "credit_id": "538330dcc3a368059500881c", "cast_id": 21, "profile_path": "/lbF2GRIs3juRAzfevwsUOq5PzFF.jpg", "order": 7}, {"name": "Cary-Hiroyuki Tagawa", "character": "David Deyo", "id": 11398, "credit_id": "538330fcc3a36805a40082b8", "cast_id": 22, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 8}, {"name": "Thomas Rosales, Jr.", "character": "Ortega", "id": 43010, "credit_id": "53833124c3a368059b008642", "cast_id": 23, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 9}, {"name": "Clarke Coleman", "character": "Davis", "id": 1324478, "credit_id": "5383314bc3a368059e0088ae", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Mark Sivertsen", "character": "Highway Patrolman", "id": 156605, "credit_id": "5383316fc3a368059e0088b2", "cast_id": 25, "profile_path": null, "order": 11}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe454dc3a36847f80c68cf", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.1, "runtime": 108}, "9946": {"poster_path": "/bEIjH6GroeWaBkn6o7MVpMNbuyw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209300000, "overview": "On December 28th, 1999, the citizens of New York City are getting ready for the turn of the millennium. However, the Devil decides to crash the party by coming to the city, inhabiting a man's body, and searching for his chosen bride, a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist called Jericho Cane.", "video": false, "id": 9946, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "End of Days", "tagline": "Prepare for the end.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146675", "adult": false, "backdrop_path": "/qytbMNpC6R703nh0XEp3c4S39dl.jpg", "production_companies": [{"name": "Beacon Communications", "id": 919}], "release_date": "1999-11-23", "popularity": 0.638142524067616, "original_title": "End of Days", "budget": 83000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Jericho Cane", "id": 1100, "credit_id": "52fe454dc3a36847f80c6975", "cast_id": 12, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Gabriel Byrne", "character": "Satan", "id": 5168, "credit_id": "52fe454dc3a36847f80c6979", "cast_id": 13, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 1}, {"name": "Robin Tunney", "character": "Christine York", "id": 17346, "credit_id": "52fe454dc3a36847f80c697d", "cast_id": 14, "profile_path": "/oQGr5vfYbkarmJQmhGmSpIhSapL.jpg", "order": 2}, {"name": "Udo Kier", "character": "Head Priest", "id": 1646, "credit_id": "52fe454dc3a36847f80c6981", "cast_id": 15, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 3}, {"name": "Rod Steiger", "character": "Father Kovak", "id": 522, "credit_id": "52fe454dc3a36847f80c6985", "cast_id": 16, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 4}, {"name": "Kevin Pollak", "character": "Bobby Chicago", "id": 7166, "credit_id": "52fe454dc3a36847f80c6989", "cast_id": 17, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 5}, {"name": "C. C. H. Pounder", "character": "Detective Margie Francis", "id": 30485, "credit_id": "52fe454dc3a36847f80c698d", "cast_id": 18, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 6}, {"name": "Miriam Margolyes", "character": "Mabel", "id": 6199, "credit_id": "52fe454dc3a36847f80c6991", "cast_id": 19, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 7}, {"name": "Michael O'Hagan", "character": "Cardinal", "id": 53490, "credit_id": "54ef006f925141795f005ed2", "cast_id": 82, "profile_path": null, "order": 8}, {"name": "Mark Margolis", "character": "Pope", "id": 1173, "credit_id": "54ef009ac3a36869e50035d8", "cast_id": 83, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 9}, {"name": "Derrick O'Connor", "character": "Thomas Aquinas", "id": 14325, "credit_id": "54ef00e29251413ae800315d", "cast_id": 84, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 10}], "directors": [{"name": "Peter Hyams", "department": "Directing", "job": "Director", "credit_id": "52fe454dc3a36847f80c6935", "profile_path": "/zbELGEBxySY0KqZv63DXeJdfMVU.jpg", "id": 37710}], "vote_average": 5.9, "runtime": 121}, "216015": {"poster_path": "/uUpm5xTqy6YEedx7nF03Ata2U5V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.", "video": false, "id": 216015, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Fifty Shades of Grey", "tagline": "Are you curious?", "vote_count": 473, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2322441", "adult": false, "backdrop_path": "/16tzigaFFnrovQsbOMy9340V787.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Trigger Street Productions", "id": 11801}, {"name": "Michael De Luca Productions", "id": 27551}], "release_date": "2015-02-13", "popularity": 14.2346908807011, "original_title": "Fifty Shades of Grey", "budget": 40000000, "cast": [{"name": "Dakota Johnson", "character": "Anastasia Steele", "id": 118545, "credit_id": "52fe4e10c3a368484e20c3bd", "cast_id": 5, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 0}, {"name": "Jamie Dornan", "character": "Christian Grey", "id": 1254583, "credit_id": "530bacd1c3a36875f30002b1", "cast_id": 15, "profile_path": "/11sPIeECW74loLh3tconPk842c2.jpg", "order": 1}, {"name": "Jennifer Ehle", "character": "Carla", "id": 49971, "credit_id": "52fe4e10c3a368484e20c3c1", "cast_id": 6, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 2}, {"name": "Eloise Mumford", "character": "Kate Kavanagh", "id": 222130, "credit_id": "52fe4e10c3a368484e20c3d1", "cast_id": 10, "profile_path": "/6yT9OjHcnG55iGjq7XFvd2qpYT2.jpg", "order": 3}, {"name": "Luke Grimes", "character": "Elliot Grey", "id": 56680, "credit_id": "52fe4e10c3a368484e20c3c9", "cast_id": 8, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 4}, {"name": "Victor Rasuk", "character": "Jose Rodriguez", "id": 59251, "credit_id": "52fe4e10c3a368484e20c3cd", "cast_id": 9, "profile_path": "/zrNF2SQpnsOQsFHTKVs69x1TjEW.jpg", "order": 5}, {"name": "Max Martini", "character": "Jason Taylor", "id": 94864, "credit_id": "52fe4e10c3a368484e20c3d5", "cast_id": 11, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 6}, {"name": "Rita Ora", "character": "Mia Grey", "id": 1089873, "credit_id": "52fe4e10c3a368484e20c3d9", "cast_id": 12, "profile_path": "/4olIRqYmdXf56ZDsjBCs3VMmJXi.jpg", "order": 7}, {"name": "Marcia Gay Harden", "character": "Dr. Grace Trevelyan Grey", "id": 4726, "credit_id": "52fe4e10c3a368484e20c3dd", "cast_id": 13, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 8}, {"name": "Callum Keith Rennie", "character": "Ray Steele", "id": 540, "credit_id": "52fe4e10c3a368484e20c3e1", "cast_id": 14, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 9}, {"name": "Andrew Airlie", "character": "Mr. Grey", "id": 41436, "credit_id": "54fb4da59251413aac00206d", "cast_id": 16, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 10}, {"name": "Dylan Neal", "character": "Bob", "id": 79149, "credit_id": "54fb4dbe9251417b70001b14", "cast_id": 17, "profile_path": "/uuJjxlqQHkJqrhajEQq6Gmy2dkr.jpg", "order": 11}, {"name": "Rachel Skarsten", "character": "Andrea", "id": 80018, "credit_id": "54fb4dddc3a368690e0018fb", "cast_id": 18, "profile_path": "/6eDPJFpVX58ADPnLixa2Nax736G.jpg", "order": 12}, {"name": "Emily Fonda", "character": "Martina", "id": 1411603, "credit_id": "54fb4dedc3a368696a001abb", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Anthony Konechny", "character": "Paul Clayton", "id": 1381295, "credit_id": "54fb57f3c3a368199e002263", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Sam Taylor-Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4e10c3a368484e20c3ad", "profile_path": "/dwX7Tgg5VSAsx5CfCy0eEj98sFn.jpg", "id": 1137903}], "vote_average": 5.8, "runtime": 125}, "9952": {"poster_path": "/oA5kv4EDuED2bgbklapdDCtDvIY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.", "video": false, "id": 9952, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Rescue Dawn", "tagline": "A true story of survival... declassified.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462504", "adult": false, "backdrop_path": "/bj1ZF5vj23N8pFIGlG2f7IPTtpf.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2006-09-09", "popularity": 0.462189704853853, "original_title": "Rescue Dawn", "budget": 0, "cast": [{"name": "Christian Bale", "character": "Dieter Dengler", "id": 3894, "credit_id": "52fe454fc3a36847f80c6fcb", "cast_id": 23, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Duane", "id": 18324, "credit_id": "52fe454fc3a36847f80c6ff5", "cast_id": 34, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Marshall Bell", "character": "Admiral", "id": 3041, "credit_id": "52fe454fc3a36847f80c6fc1", "cast_id": 21, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 2}, {"name": "Toby Huss", "character": "Spook", "id": 18271, "credit_id": "52fe454fc3a36847f80c6fd5", "cast_id": 26, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 4}, {"name": "Pat Healy", "character": "Norman", "id": 60846, "credit_id": "52fe454fc3a36847f80c6fd9", "cast_id": 27, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 5}, {"name": "Fran\u00e7ois Chau", "character": "Province Governor", "id": 60851, "credit_id": "52fe454fc3a36847f80c6fdd", "cast_id": 28, "profile_path": "/r8EocoGAJVky0bQ6gyfxcabuTPz.jpg", "order": 6}, {"name": "James Oliver", "character": "Jet Pilot", "id": 60848, "credit_id": "52fe454fc3a36847f80c6fe1", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "GQ", "character": "Farkas", "id": 60847, "credit_id": "52fe454fc3a36847f80c6fe5", "cast_id": 30, "profile_path": "/fOZ6PiRpwDSfGPuMOyFAK2oLtM.jpg", "order": 8}, {"name": "Saichia Wongwiroj", "character": "Pathet Lao Guard", "id": 60850, "credit_id": "52fe454fc3a36847f80c6fe9", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Brad Carr", "character": "U.S. Navy Pilot", "id": 60849, "credit_id": "52fe454fc3a36847f80c6fed", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Teerawat Mulvilai", "character": "Little Hitler", "id": 60852, "credit_id": "52fe454fc3a36847f80c6ff1", "cast_id": 33, "profile_path": "/kdZxcDW5x52OOSI4GydbGzI11pJ.jpg", "order": 11}, {"name": "Jeremy Davies", "character": "Gene", "id": 4654, "credit_id": "52fe454fc3a36847f80c6ff9", "cast_id": 35, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 12}, {"name": "Kriangsak Ming-olo", "character": "Jumbo", "id": 60856, "credit_id": "52fe454fc3a36847f80c6ffd", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Somkuan 'Kuan' Siroon", "character": "Nook the Rock", "id": 60854, "credit_id": "52fe454fc3a36847f80c7001", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Mr. Yuttana Muenwaja", "character": "Crazy Horse", "id": 60853, "credit_id": "52fe454fc3a36847f80c7005", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Chorn Solyda", "character": "Walkie Talkie", "id": 60855, "credit_id": "52fe454fc3a36847f80c7009", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Galen Yuen", "character": "Y.C.", "id": 60857, "credit_id": "52fe454fc3a36847f80c700d", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Abhijati 'Meuk' Jusakul", "character": "Phisit", "id": 60858, "credit_id": "52fe454fc3a36847f80c7011", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Lek Chaiyan Chunsuttiwat", "character": "Procet", "id": 60859, "credit_id": "52fe454fc3a36847f80c7015", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Zach Grenier", "character": "Squad Leader", "id": 7471, "credit_id": "52fe454fc3a36847f80c7019", "cast_id": 43, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 20}], "directors": [{"name": "Werner Herzog", "department": "Directing", "job": "Director", "credit_id": "52fe454ec3a36847f80c6f5d", "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "id": 6818}], "vote_average": 6.4, "runtime": 126}, "9954": {"poster_path": "/gxpTseXRrHCgL0Igm1CrKD5JQNg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37597471, "overview": "Four young men who belong to a supernatural legacy are forced to battle a fifth power long thought to have died out. Another great force they must contend with is the jealousy and suspicion that threatens to tear them apart.", "video": false, "id": 9954, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Covenant", "tagline": "Only the power of Hell can help them.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0475944", "adult": false, "backdrop_path": "/ctnHBZ6e25NsGVSWx7rF1OklR7D.jpg", "production_companies": [{"name": "Screen Gems, Inc.", "id": 127}], "release_date": "2006-09-08", "popularity": 0.533000684029453, "original_title": "The Covenant", "budget": 20000000, "cast": [{"name": "Steven Strait", "character": "Caleb Danvers", "id": 54815, "credit_id": "52fe454fc3a36847f80c7251", "cast_id": 23, "profile_path": "/yL9IKHHVaDupVstNLwWWDpdhW8k.jpg", "order": 0}, {"name": "Laura Ramsey", "character": "Sarah Wenham", "id": 51975, "credit_id": "52fe454fc3a36847f80c7255", "cast_id": 24, "profile_path": "/4dRnDQ7FZu54ZtLXzWARGWvtStR.jpg", "order": 1}, {"name": "Jessica Lucas", "character": "Kate Tunney", "id": 51989, "credit_id": "52fe454fc3a36847f80c7259", "cast_id": 25, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 2}, {"name": "Kyle Schmid", "character": "Aaron Abbot", "id": 232, "credit_id": "52fe454fc3a36847f80c725d", "cast_id": 26, "profile_path": "/d0BikewdLHSo6gjNMlBU7m7ePdG.jpg", "order": 3}, {"name": "Taylor Kitsch", "character": "Pogue Parry", "id": 60900, "credit_id": "52fe454fc3a36847f80c7261", "cast_id": 27, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 4}, {"name": "Chace Crawford", "character": "Tyler Simms", "id": 60899, "credit_id": "52fe454fc3a36847f80c7269", "cast_id": 29, "profile_path": "/ay3fAn4ya7BUfBcHkSGGw0dapUg.jpg", "order": 5}, {"name": "Sebastian Stan", "character": "Chase Collins", "id": 60898, "credit_id": "52fe454fc3a36847f80c7265", "cast_id": 28, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 6}, {"name": "Wendy Crewson", "character": "Evelyn Danvers", "id": 19957, "credit_id": "52fe454fc3a36847f80c726d", "cast_id": 30, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 7}, {"name": "Stephen McHattie", "character": "James Danvers", "id": 230, "credit_id": "52fe454fc3a36847f80c7271", "cast_id": 31, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 8}, {"name": "Kenneth Welsh", "character": "Provost Higgins", "id": 6074, "credit_id": "52fe454fc3a36847f80c7275", "cast_id": 32, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 9}, {"name": "Toby Hemingway", "character": "Reid Garwin", "id": 60901, "credit_id": "52fe4550c3a36847f80c7279", "cast_id": 33, "profile_path": "/b5ZlB5Ct7xRg4ypRjAA7mjFA1Jq.jpg", "order": 10}, {"name": "Basia Jasinski", "character": "Nicky's Bar Waitress", "id": 60903, "credit_id": "52fe4550c3a36847f80c727d", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Christian Baril", "character": "Dead Teenage Boy", "id": 60902, "credit_id": "52fe4550c3a36847f80c7281", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Larry Day", "character": "Patrolman Reeve", "id": 60907, "credit_id": "52fe4550c3a36847f80c7285", "cast_id": 36, "profile_path": "/kkYxACTQis5p1X5VPxLhsxFGprg.jpg", "order": 13}, {"name": "Steven Crowder", "character": "Party Kid", "id": 60905, "credit_id": "52fe4550c3a36847f80c7289", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Robert Crooks", "character": "Ryan Bael", "id": 60906, "credit_id": "52fe4550c3a36847f80c728d", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Rob Burns", "character": "Mr. Pennyworth", "id": 60904, "credit_id": "52fe4550c3a36847f80c7291", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Jonathan Deveau", "character": "Semi-Driver", "id": 60909, "credit_id": "52fe4550c3a36847f80c7295", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Vito DeFilippo", "character": "Mr. Hoffman", "id": 60908, "credit_id": "52fe4550c3a36847f80c7299", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Frank Fontaine", "character": "Gorman Twoberry", "id": 60910, "credit_id": "52fe4550c3a36847f80c729d", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe454fc3a36847f80c71d5", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 5.2, "runtime": 97}, "9955": {"poster_path": "/7vbtLFfN00BaczHjOaPWui4aqg1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together\u2014as a pairs team.", "video": false, "id": 9955, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Blades of Glory", "tagline": "Kick Some Ice.", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0445934", "adult": false, "backdrop_path": "/4CDaseAR78XCvKPwbKrGOjUjeO6.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}], "release_date": "2007-03-30", "popularity": 0.739714285257949, "original_title": "Blades of Glory", "budget": 53000000, "cast": [{"name": "Will Ferrell", "character": "Chazz Michael Michaels", "id": 23659, "credit_id": "52fe4550c3a36847f80c7387", "cast_id": 25, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Jon Heder", "character": "Jimmy MacElroy", "id": 53926, "credit_id": "52fe4550c3a36847f80c7391", "cast_id": 27, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 1}, {"name": "Will Arnett", "character": "Stranz Van Waldenberg", "id": 21200, "credit_id": "52fe4550c3a36847f80c7395", "cast_id": 28, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 2}, {"name": "Amy Poehler", "character": "Fairchild Van Waldenberg", "id": 56322, "credit_id": "52fe4550c3a36847f80c739d", "cast_id": 30, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 3}, {"name": "Jenna Fischer", "character": "Katie Van Waldenberg", "id": 51856, "credit_id": "52fe4550c3a36847f80c7399", "cast_id": 29, "profile_path": "/ceSnU3b5mWMCXQpeA3tTh0x7k0N.jpg", "order": 4}, {"name": "William Fichtner", "character": "Darren MacElroy", "id": 886, "credit_id": "52fe4550c3a36847f80c73a7", "cast_id": 33, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Coach", "id": 8977, "credit_id": "52fe4550c3a36847f80c73ab", "cast_id": 34, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Romany Malco", "character": "Jesse", "id": 71530, "credit_id": "52fe4550c3a36847f80c73b3", "cast_id": 36, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Hector", "id": 32907, "credit_id": "52fe4550c3a36847f80c73af", "cast_id": 35, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "Scott Hamilton", "character": "Sports Anchor", "id": 60939, "credit_id": "52fe4550c3a36847f80c73c7", "cast_id": 41, "profile_path": "/lsWso6I1K3SD9PxrpDqUAm2nOjt.jpg", "order": 9}, {"name": "Andy Richter", "character": "Mountie", "id": 28637, "credit_id": "52fe4550c3a36847f80c73b7", "cast_id": 37, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 10}, {"name": "Greg Lindsay", "character": "Mountie", "id": 60940, "credit_id": "52fe4550c3a36847f80c73c3", "cast_id": 40, "profile_path": "/udOX6K2ajXasSviz2ch0vySzzxH.jpg", "order": 11}, {"name": "Rob Corddry", "character": "Bryce", "id": 52997, "credit_id": "52fe4550c3a36847f80c73df", "cast_id": 49, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 12}, {"name": "Nick Jameson", "character": "PA Announcer", "id": 39214, "credit_id": "52fe4550c3a36847f80c73bb", "cast_id": 38, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 13}, {"name": "Tom Virtue", "character": "Floor Manager", "id": 38709, "credit_id": "52fe4550c3a36847f80c73bf", "cast_id": 39, "profile_path": "/nkvTJE1RR0T5Wo9YUENDU0lb3C1.jpg", "order": 14}, {"name": "Ben Wilson", "character": "Fox", "id": 60941, "credit_id": "52fe4550c3a36847f80c73d3", "cast_id": 46, "profile_path": "/aEoSC2MLB8X5I9v6hscth0th3Ex.jpg", "order": 15}, {"name": "William Daniels", "character": "Commissioner Ebbers", "id": 10775, "credit_id": "52fe4550c3a36847f80c73db", "cast_id": 48, "profile_path": "/4zIlfvoSPHVTWIpZ9JvZODD8vnn.jpg", "order": 16}, {"name": "Zachary Ferren", "character": "Young Jimmy", "id": 60943, "credit_id": "52fe4550c3a36847f80c73cf", "cast_id": 45, "profile_path": "/o00oiHBotxaw8a81Wb6N42VSymi.jpg", "order": 17}, {"name": "R\u00e9my Girard", "character": "Father St. Pierre", "id": 38526, "credit_id": "52fe4550c3a36847f80c73cb", "cast_id": 43, "profile_path": "/iOluYYBxiLzb5fS5F0Y8Xc5bQVo.jpg", "order": 18}, {"name": "Steven M. Gagnon", "character": "Rink Official World Games", "id": 60944, "credit_id": "52fe4550c3a36847f80c73d7", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Nancy Kerrigan", "character": "Attractive Official", "id": 166931, "credit_id": "53bdf67f0e0a261589002f7a", "cast_id": 50, "profile_path": "/rjwHXsOa1vLdgjFxGG9HJXAh3If.jpg", "order": 20}, {"name": "Luke Wilson", "character": "Sex Class Counselor", "id": 36422, "credit_id": "53bdf6b50e0a261579002d4f", "cast_id": 51, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 21}, {"name": "Brian Boitano", "character": "Federation Judge", "id": 1226851, "credit_id": "53bdf7060e0a26158f002cb3", "cast_id": 52, "profile_path": null, "order": 22}, {"name": "Dorothy Hamill", "character": "Federation Judge", "id": 1226887, "credit_id": "53bdf71f0e0a261585002dce", "cast_id": 53, "profile_path": null, "order": 23}, {"name": "Peggy Fleming", "character": "Federation Judge", "id": 1226343, "credit_id": "53bdf7350e0a261576002ed5", "cast_id": 54, "profile_path": null, "order": 24}, {"name": "Sasha Cohen", "character": "Sasha Cohen", "id": 204665, "credit_id": "53bdf7c10e0a26157f002fc2", "cast_id": 55, "profile_path": "/cslDcNDtkcs8IhUcIY4UbG6GopK.jpg", "order": 25}, {"name": "Jim Lampley", "character": "Co-Anchor", "id": 942254, "credit_id": "53bdf7f20e0a261589002fd7", "cast_id": 56, "profile_path": null, "order": 26}], "directors": [{"name": "Josh Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe4550c3a36847f80c7305", "profile_path": "/g316UVVZWfD4cXQpxYirnhgop7U.jpg", "id": 60922}, {"name": "Will Speck", "department": "Directing", "job": "Director", "credit_id": "52fe4550c3a36847f80c7311", "profile_path": "/mrTboVxXv4LnVuPoBdQvU1cMD4l.jpg", "id": 60923}], "vote_average": 5.4, "runtime": 93}, "59108": {"poster_path": "/ze2trl2NHuLOLimimvBkjJID3yG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they\u2019re sure is hidden in the penthouse.", "video": false, "id": 59108, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Tower Heist", "tagline": "Ordinary guys. An extraordinary robbery.", "vote_count": 317, "homepage": "http://www.towerheist.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0471042", "adult": false, "backdrop_path": "/18f11LguqJG2PhiNOUABDbTSJMT.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Image Entertainment", "id": 3086}, {"name": "Relativity Media", "id": 7295}, {"name": "Rat Entertainment", "id": 12007}], "release_date": "2011-11-04", "popularity": 0.898733097096566, "original_title": "Tower Heist", "budget": 75000000, "cast": [{"name": "Ben Stiller", "character": "Josh Kovacs", "id": 7399, "credit_id": "52fe4981c3a36847f819dbcf", "cast_id": 12, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Slide", "id": 776, "credit_id": "52fe4981c3a36847f819dbad", "cast_id": 2, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Casey Affleck", "character": "Charlie", "id": 1893, "credit_id": "52fe4981c3a36847f819dbb1", "cast_id": 3, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 2}, {"name": "Alan Alda", "character": "Arthur Shaw", "id": 21278, "credit_id": "52fe4981c3a36847f819dbb5", "cast_id": 4, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 3}, {"name": "Matthew Broderick", "character": "Mr. Fitzhugh", "id": 4756, "credit_id": "52fe4981c3a36847f819dbb9", "cast_id": 5, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 4}, {"name": "T\u00e9a Leoni", "character": "Special Agent Claire Denham", "id": 4939, "credit_id": "52fe4981c3a36847f819dbbd", "cast_id": 6, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 5}, {"name": "Judd Hirsch", "character": "Mr. Simon", "id": 6167, "credit_id": "52fe4981c3a36847f819dbc7", "cast_id": 10, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 6}, {"name": "Gabourey Sidibe", "character": "Odessa Montero", "id": 109560, "credit_id": "52fe4981c3a36847f819dbcb", "cast_id": 11, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 7}, {"name": "Stephen Henderson", "character": "Lester", "id": 196179, "credit_id": "52fe4981c3a36847f819dc2d", "cast_id": 28, "profile_path": "/g1LOudSbAQvYlWkAJ5kMY6wygZR.jpg", "order": 8}, {"name": "Michael Pe\u00f1a", "character": "Enrique Dev\u2019Reaux", "id": 454, "credit_id": "52fe4981c3a36847f819dc31", "cast_id": 29, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 9}, {"name": "Nina Arianda", "character": "Miss Iovenko", "id": 971329, "credit_id": "52fe4981c3a36847f819dc35", "cast_id": 30, "profile_path": "/9JFj7CPIkH9NCqtqT5SN3ECsBYh.jpg", "order": 10}, {"name": "Marcia Jean Kurtz", "character": "Rose", "id": 14548, "credit_id": "52fe4981c3a36847f819dc39", "cast_id": 31, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 11}, {"name": "Juan Carlos Hern\u00e1ndez", "character": "Manuel", "id": 116714, "credit_id": "52fe4981c3a36847f819dc3d", "cast_id": 32, "profile_path": "/crzCSBiSwdK7X9B0PJFA6NP0y3o.jpg", "order": 12}, {"name": "Harry O'Reilly", "character": "Special Agent Danszk", "id": 28101, "credit_id": "52fe4981c3a36847f819dc41", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Peter Van Wagner", "character": "Marty Klein, Esq.", "id": 159828, "credit_id": "52fe4981c3a36847f819dc45", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "\u017deljko Ivanek", "character": "Director Mazin", "id": 6752, "credit_id": "52fe4981c3a36847f819dc49", "cast_id": 35, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 15}, {"name": "Robert Downey Sr.", "character": "Judge Ramos", "id": 59874, "credit_id": "52fe4981c3a36847f819dc4d", "cast_id": 36, "profile_path": "/6ITEZoNCgMweY7Sf6DxV4T5mkwG.jpg", "order": 16}, {"name": "Clem Cheung", "character": "Kwan", "id": 4893, "credit_id": "52fe4981c3a36847f819dc51", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Annika Pergament", "character": "NASDAQ / News Reporter", "id": 1129795, "credit_id": "52fe4981c3a36847f819dc55", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Lynne Rossetto Kasper", "character": "Radio Host", "id": 1129796, "credit_id": "52fe4981c3a36847f819dc59", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4981c3a36847f819dbc3", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 5.8, "runtime": 104}, "9957": {"poster_path": "/zQy6T5qV0lvLkkKi5S9VIYykSQD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A trio of guys try and make up for missed opportunities in childhood by forming a three-player baseball team to compete against standard little league squads.", "video": false, "id": 9957, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Benchwarmers", "tagline": "Get off the bench and get into the game.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0437863", "adult": false, "backdrop_path": "/qmOjsNEFclQuld6s7Vfc1255dXK.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2006-04-07", "popularity": 0.457801557846734, "original_title": "The Benchwarmers", "budget": 0, "cast": [{"name": "Jon Heder", "character": "Clark", "id": 53926, "credit_id": "52fe4550c3a36847f80c75ad", "cast_id": 20, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 0}, {"name": "Rob Schneider", "character": "Gus", "id": 60949, "credit_id": "52fe4550c3a36847f80c75b1", "cast_id": 21, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 1}, {"name": "David Spade", "character": "Richie", "id": 60950, "credit_id": "52fe4550c3a36847f80c75b5", "cast_id": 22, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 2}, {"name": "Jon Lovitz", "character": "Mel", "id": 16165, "credit_id": "52fe4550c3a36847f80c75b9", "cast_id": 23, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 3}, {"name": "Tim Meadows", "character": "Wayne", "id": 51857, "credit_id": "52fe4550c3a36847f80c75bd", "cast_id": 24, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 4}, {"name": "Amaury Nolasco", "character": "Carlos", "id": 17341, "credit_id": "52fe4550c3a36847f80c75c1", "cast_id": 25, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 5}, {"name": "Nick Swardson", "character": "Howie", "id": 32907, "credit_id": "52fe4550c3a36847f80c75c5", "cast_id": 26, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 6}, {"name": "Molly Sims", "character": "Liz", "id": 60952, "credit_id": "52fe4550c3a36847f80c75c9", "cast_id": 27, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 7}, {"name": "Erinn Bartlett", "character": "Salad Girl / Sarah", "id": 60953, "credit_id": "52fe4550c3a36847f80c75cd", "cast_id": 28, "profile_path": "/k5T5kR6A8HZmowF3ZbkPF5QtgVg.jpg", "order": 8}, {"name": "Craig Kilborn", "character": "Jerry", "id": 60951, "credit_id": "52fe4550c3a36847f80c75d1", "cast_id": 29, "profile_path": "/mVlE2lpGaKAVCOCoFbKNMouPtsY.jpg", "order": 9}, {"name": "John Farley", "character": "Swimmer Boy", "id": 5621, "credit_id": "52fe4550c3a36847f80c75d5", "cast_id": 30, "profile_path": "/r3iQTni80PjyKo3OcXlU0Zmpcve.jpg", "order": 10}, {"name": "Bill Romanowski", "character": "Karl", "id": 60954, "credit_id": "52fe4550c3a36847f80c75d9", "cast_id": 31, "profile_path": "/cXoVWp5m4eX1VedZqf3FbfKUOH4.jpg", "order": 11}, {"name": "Matt Weinberg", "character": "Kyle", "id": 60956, "credit_id": "52fe4550c3a36847f80c75dd", "cast_id": 32, "profile_path": "/g0MVUMfhkyv5kcIsMOEX0LaHpQM.jpg", "order": 12}, {"name": "Reggie Jackson", "character": "Himself", "id": 60957, "credit_id": "52fe4550c3a36847f80c75e5", "cast_id": 34, "profile_path": "/yhUoaWPd6Yy2qPuVE4Esd7xhpjA.jpg", "order": 13}, {"name": "Sean Salisbury", "character": "Brad", "id": 60955, "credit_id": "52fe4550c3a36847f80c75e1", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Joe Gnoffo", "character": "Marcus Ellwood", "id": 60958, "credit_id": "52fe4550c3a36847f80c75ed", "cast_id": 36, "profile_path": "/rKU6r12H7fg6FMveG1jNIA6nmA.jpg", "order": 15}, {"name": "Jackie Sandler", "character": "Female Customer", "id": 60959, "credit_id": "52fe4550c3a36847f80c75e9", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Jared Sandler", "character": "Autograph Kid", "id": 60961, "credit_id": "52fe4550c3a36847f80c75f1", "cast_id": 37, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 17}, {"name": "Ray Nicholson", "character": "Kid Catcher #1 Game #2", "id": 60960, "credit_id": "52fe4550c3a36847f80c75f5", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Terry Crews", "character": "Poker Guy #1", "id": 53256, "credit_id": "52fe4550c3a36847f80c75f9", "cast_id": 39, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 19}, {"name": "Patrick Schwarzenegger", "character": "Jock Kid Game #3", "id": 1053422, "credit_id": "52fe4551c3a36847f80c7603", "cast_id": 41, "profile_path": "/cUyMEVB8e2zD5UJIEW88Hb3Ejr0.jpg", "order": 20}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe4550c3a36847f80c7543", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 5.4, "runtime": 80}, "83686": {"poster_path": "/iNDSm5wcdmtfKsMM7nE8XhJUBl7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13231461, "overview": "The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There's only one catch - he didn't write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man's work, and for placing ambition and success above life's most fundamental three words.", "video": false, "id": 83686, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Words", "tagline": "There's more than one way to take a life.", "vote_count": 101, "homepage": "http://www.thewordsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1840417", "adult": false, "backdrop_path": "/tH5oFO4L3NblqiOaOb70G9AbGtB.jpg", "production_companies": [{"name": "Waterfall Media", "id": 32168}, {"name": "Also Known As Pictures", "id": 12545}, {"name": "Benaroya Pictures", "id": 6692}, {"name": "Animus Films", "id": 4135}, {"name": "Serenade Films", "id": 3459}], "release_date": "2012-09-07", "popularity": 0.89156601430265, "original_title": "The Words", "budget": 6000000, "cast": [{"name": "Bradley Cooper", "character": "Rory Jansen", "id": 51329, "credit_id": "52fe48b49251416c91095939", "cast_id": 4, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Dora Jansen", "id": 8691, "credit_id": "52fe48b49251416c9109593d", "cast_id": 5, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Jeremy Irons", "character": "The Old Man", "id": 16940, "credit_id": "52fe48b49251416c91095941", "cast_id": 6, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 2}, {"name": "Dennis Quaid", "character": "Clay Hammond", "id": 6065, "credit_id": "52fe48b49251416c91095945", "cast_id": 7, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 3}, {"name": "Olivia Wilde", "character": "Danielle", "id": 59315, "credit_id": "52fe48b49251416c91095935", "cast_id": 3, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "Mr. Jansen", "id": 18999, "credit_id": "52fe48b49251416c91095951", "cast_id": 10, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "John Hannah", "character": "Richard Ford", "id": 10727, "credit_id": "52fe48b49251416c91095949", "cast_id": 8, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 6}, {"name": "\u017deljko Ivanek", "character": "Joseph Cutler", "id": 6752, "credit_id": "52fe48b49251416c91095959", "cast_id": 12, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 7}, {"name": "Ben Barnes", "character": "Young Man", "id": 25130, "credit_id": "52fe48b49251416c9109594d", "cast_id": 9, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 8}, {"name": "Michael McKean", "character": "Nelson Wylie", "id": 21731, "credit_id": "52fe48b49251416c91095955", "cast_id": 11, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 9}, {"name": "Nora Arnezeder", "character": "Celia", "id": 453272, "credit_id": "52fe48b49251416c9109595d", "cast_id": 13, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 10}, {"name": "Ron Rifkin", "character": "Timothy Epstein", "id": 12122, "credit_id": "52fe48b49251416c91095961", "cast_id": 14, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 11}, {"name": "Gianpaolo Venuta", "character": "Dave Farber", "id": 179274, "credit_id": "52fe48b49251416c91095965", "cast_id": 15, "profile_path": "/5SV7bEZzkmhiZkSCgcpQXgl2UTv.jpg", "order": 12}, {"name": "Liz Stauber", "character": "Camy Rosen", "id": 11668, "credit_id": "52fe48b49251416c91095969", "cast_id": 16, "profile_path": "/8gcxVuPPMIs5XHuDsRemQI3IZBT.jpg", "order": 13}, {"name": "Keeva Lynk", "character": "Cynthia", "id": 550520, "credit_id": "52fe48b49251416c9109596d", "cast_id": 17, "profile_path": "/bqDHsp5adiMe6FADuOPKpQUNCYL.jpg", "order": 14}], "directors": [{"name": "Brian Klugman", "department": "Directing", "job": "Director", "credit_id": "52fe48b49251416c9109592b", "profile_path": "/jlzEmXQGYOnoKC9ipLSEC5Ioz9E.jpg", "id": 51996}, {"name": "Lee Sternthal", "department": "Directing", "job": "Director", "credit_id": "52fe48b49251416c91095931", "profile_path": "/668FyfP28cGPkAt9AlEum81JQ2p.jpg", "id": 929917}], "vote_average": 6.2, "runtime": 96}, "198375": {"poster_path": "/oZSfJH1IwOPla2ZGVli6YIBxYxz.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Takao, who is training to become a shoemaker, skipped school and is sketching shoes in a Japanese-style garden. He meets a mysterious woman, Yukino, who is older than him. Then, without arranging the times, the two start to see each other again and again, but only on rainy days. They deepen their relationship and open up to each other. But the end of the rainy season soon approaches \u2026", "video": false, "id": 198375, "genres": [{"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}], "title": "The Garden of Words", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2591814", "adult": false, "backdrop_path": "/k63K2HWcTZtGDl8QsJqZaDIqpuE.jpg", "production_companies": [{"name": "CoMix Wave Films", "id": 10198}], "release_date": "2013-05-30", "popularity": 0.556892627857081, "original_title": "Kotonoha no Niwa", "budget": 0, "cast": [{"name": "Miyu Irino", "character": "Takao Akizuki", "id": 19588, "credit_id": "52fe4d7b9251416c91117a13", "cast_id": 2, "profile_path": "/ietPOr7aiarxikxZE3772c9aScq.jpg", "order": 0}, {"name": "Kana Hanazawa", "character": "Yukari Yukino", "id": 119143, "credit_id": "52fe4d7b9251416c91117a17", "cast_id": 3, "profile_path": "/dsBFQ5aq1XaimLf99jTaDrDonI.jpg", "order": 1}, {"name": "Fumi Hirano", "character": "Takao's mother", "id": 129960, "credit_id": "52fe4d7b9251416c91117a1b", "cast_id": 4, "profile_path": "/o90N9sVQMNZy6LV1nFsZJoQov50.jpg", "order": 2}, {"name": "Takeshi Maeda", "character": "Takao's older brother", "id": 1124542, "credit_id": "52fe4d7b9251416c91117a1f", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Megumi Han", "character": "Sat\u014d", "id": 1164931, "credit_id": "52fe4d7b9251416c91117a23", "cast_id": 6, "profile_path": "/eOj3rcaO2M60L3LqCwBtbbghRs7.jpg", "order": 4}], "directors": [{"name": "Makoto Shinkai", "department": "Directing", "job": "Director", "credit_id": "52fe4d7b9251416c91117a0f", "profile_path": "/gJw2kEydzdj4uaD1FEfuQ2scQzy.jpg", "id": 74091}], "vote_average": 7.4, "runtime": 46}, "1771": {"poster_path": "/sBZs1jSybBRBXDwcCR8IOyHLUMc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 365762652, "overview": "Predominantly set during World War II, Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull \u2013 Adolf Hitler's ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.", "video": false, "id": 1771, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Captain America: The First Avenger", "tagline": "When patriots become heroes", "vote_count": 3377, "homepage": "http://captainamerica.marvel.com/", "belongs_to_collection": {"backdrop_path": "/g8rel9GDznWJkt4rxMO2HIrNuEo.jpg", "poster_path": "/r14U0p13M99ccWhMg0wHprp8TQi.jpg", "id": 131295, "name": "Captain America Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458339", "adult": false, "backdrop_path": "/pmZtj1FKvQqISS6iQbkiLg5TAsr.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2011-07-22", "popularity": 5.84046918451947, "original_title": "Captain America: The First Avenger", "budget": 140000000, "cast": [{"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe4313c3a36847f8038851", "cast_id": 5, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Hugo Weaving", "character": "Johann Schmidt / Red Skull", "id": 1331, "credit_id": "52fe4313c3a36847f8038855", "cast_id": 6, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 1}, {"name": "Tommy Lee Jones", "character": "Col. Chester Phillips", "id": 2176, "credit_id": "52fe4313c3a36847f8038859", "cast_id": 7, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 2}, {"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "52fe4313c3a36847f80388ef", "cast_id": 46, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 3}, {"name": "Sebastian Stan", "character": "James Buchanan 'Bucky' Barnes", "id": 60898, "credit_id": "52fe4313c3a36847f8038869", "cast_id": 11, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 4}, {"name": "Dominic Cooper", "character": "Howard Stark", "id": 55470, "credit_id": "52fe4313c3a36847f8038861", "cast_id": 9, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 5}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4313c3a36847f803885d", "cast_id": 8, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Abraham Erskine", "id": 2283, "credit_id": "52fe4313c3a36847f8038865", "cast_id": 10, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Toby Jones", "character": "Dr. Arnim Zola", "id": 13014, "credit_id": "52fe4313c3a36847f80388fb", "cast_id": 49, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Natalie Dormer", "character": "Private Lorraine", "id": 58502, "credit_id": "52fe4313c3a36847f803886d", "cast_id": 12, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 9}, {"name": "Amanda Righetti", "character": "SHIELD Agent", "id": 74289, "credit_id": "52fe4313c3a36847f80388f3", "cast_id": 47, "profile_path": "/aCRof0Sfqrbz2vgoWqVZuPWfvD8.jpg", "order": 10}, {"name": "Richard Armitage", "character": "Heinz Kruger", "id": 30315, "credit_id": "52fe4313c3a36847f80388f7", "cast_id": 48, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 11}, {"name": "Bruno Ricci", "character": "Jacques Dernier", "id": 145161, "credit_id": "52fe4313c3a36847f80388ff", "cast_id": 50, "profile_path": "/3LJJpZBfvdom5pVpJ8IlhIrIS6D.jpg", "order": 12}, {"name": "Neal McDonough", "character": "Timothy 'Dum Dum' Dugan", "id": 2203, "credit_id": "52fe4313c3a36847f8038903", "cast_id": 51, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 13}, {"name": "Derek Luke", "character": "Gabe Jones", "id": 15543, "credit_id": "52fe4313c3a36847f8038907", "cast_id": 52, "profile_path": "/8aWVcw4JDB76dhKRvUQgDGxInvN.jpg", "order": 14}, {"name": "Kenneth Choi", "character": "Jim Morita", "id": 41561, "credit_id": "52fe4313c3a36847f803890b", "cast_id": 53, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 15}, {"name": "J. J. Feild", "character": "James Montgomery Falsworth", "id": 30710, "credit_id": "52fe4313c3a36847f803890f", "cast_id": 54, "profile_path": "/pdDaMSsDqcyy2grU38pJC0s6XCs.jpg", "order": 16}, {"name": "Stan Lee", "character": "General", "id": 7624, "credit_id": "52fe4313c3a36847f8038913", "cast_id": 55, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 17}, {"name": "Michael Brandon", "character": "Senator Brandt", "id": 131814, "credit_id": "54a810289251414d60001e82", "cast_id": 166, "profile_path": "/yQEbJPH2Wwj7Bkx7wxJNQAqGnJn.jpg", "order": 18}, {"name": "Martin Sherman", "character": "Brandt's Aide", "id": 1094667, "credit_id": "54a8105d9251414d67001c92", "cast_id": 167, "profile_path": "/v5KMIgKwiOyOIicCwzr7n7LK2Ez.jpg", "order": 19}, {"name": "William Hope", "character": "SHIELD Lieutenant", "id": 10207, "credit_id": "54a81098c3a3680c1e001d91", "cast_id": 168, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 20}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe4313c3a36847f803884d", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.3, "runtime": 124}, "34544": {"poster_path": "/eMwotYpkcE42lGlaoCpPFaolvst.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176394723, "overview": "A group of Iraq War veterans on the run from U.S. military forces while they try to clear their names after being framed for a crime they didn't commit. Along the way, Col. Hannibal Smith, Capt. H.M. \"Howling Mad\" Murdock , Sgt. Bosco \"B.A.\" Baracus and Lt. Templeton \"Faceman\" Peck help out various people they encounter", "video": false, "id": 34544, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The A-Team", "tagline": "There Is No Plan B", "vote_count": 703, "homepage": "http://www.ateam-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0429493", "adult": false, "backdrop_path": "/rRBpKgStVlFlK0Rl42tqxNqX5E.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Stephen J. Cannell Productions", "id": 5585}, {"name": "Top Cow Productions", "id": 2528}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Phoenix Film Partners", "id": 10908}], "release_date": "2010-06-11", "popularity": 1.16974470963767, "original_title": "The A-Team", "budget": 110000000, "cast": [{"name": "Liam Neeson", "character": "Col. John 'Hannibal' Smith", "id": 3896, "credit_id": "52fe456a9251416c91031895", "cast_id": 24, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Bradley Cooper", "character": "Lt. Templeton 'Faceman' Peck", "id": 51329, "credit_id": "52fe456a9251416c91031899", "cast_id": 25, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 1}, {"name": "Jessica Biel", "character": "Capt. Charisa Sosa", "id": 10860, "credit_id": "52fe456a9251416c9103189d", "cast_id": 26, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Capt. 'Howling Mad' Murdock", "id": 82191, "credit_id": "52fe456a9251416c910318a1", "cast_id": 27, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Patrick Wilson", "character": "Lynch", "id": 17178, "credit_id": "52fe456a9251416c910318a5", "cast_id": 28, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 4}, {"name": "Quinton Jackson", "character": "Sgt. Bosco 'B.A.' Baracus", "id": 78811, "credit_id": "52fe456a9251416c910318a9", "cast_id": 29, "profile_path": "/2yiIdhAcc3IaYGyMbCavI449mRu.jpg", "order": 5}, {"name": "Gerald McRaney", "character": "General Morrison", "id": 29512, "credit_id": "52fe456a9251416c910318b5", "cast_id": 32, "profile_path": "/jPS0hN9T3JFhfMLEJ36LEwedTAz.jpg", "order": 8}, {"name": "Brian Bloom", "character": "Pike", "id": 4753, "credit_id": "52fe456a9251416c910318b9", "cast_id": 33, "profile_path": "/5Pc6tCfeVZFkBMQACRA318jqwph.jpg", "order": 9}, {"name": "Omari Hardwick", "character": "Chop Shop J", "id": 41556, "credit_id": "52fe456a9251416c910318bd", "cast_id": 34, "profile_path": "/gW4eSrYlyFhuC4QrMD0whDxA9DS.jpg", "order": 10}, {"name": "Maury Sterling", "character": "Gammons", "id": 65726, "credit_id": "52fe456a9251416c910318c1", "cast_id": 35, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 11}, {"name": "Terry Chen", "character": "Ravech", "id": 11677, "credit_id": "52fe456a9251416c910318c5", "cast_id": 36, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "C. Ernst Harth", "character": "Gilbert", "id": 114894, "credit_id": "52fe456a9251416c910318c9", "cast_id": 37, "profile_path": "/rm7NAoXKaMeW4DmVvzbItjceo9X.jpg", "order": 13}, {"name": "Raj Lal", "character": "Private Silyman", "id": 114895, "credit_id": "52fe456a9251416c910318cd", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Neil Schell", "character": "Army Meddac Hospital XO", "id": 114896, "credit_id": "52fe456a9251416c910318d1", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Gardiner Millar", "character": "Officer", "id": 114897, "credit_id": "52fe456a9251416c910318d5", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Marc-Anthony Massiah", "character": "Tahoe Inmate", "id": 114898, "credit_id": "52fe456a9251416c910318d9", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Rafael Pellerin", "character": "Soccer Kid", "id": 114899, "credit_id": "52fe456a9251416c910318dd", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Yul Vazquez", "character": "General Javier Tuco", "id": 75604, "credit_id": "52fe456a9251416c910318e1", "cast_id": 43, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 19}, {"name": "Henry Czerny", "character": "Director McCready", "id": 15319, "credit_id": "538dfdabc3a3687146005427", "cast_id": 44, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 20}, {"name": "Jacob Blair", "character": "Agent Blair", "id": 208069, "credit_id": "538dfdd6c3a36871550050f3", "cast_id": 45, "profile_path": "/8QbiqwUFim60IBZ2p22WoEs2e1w.jpg", "order": 21}], "directors": [{"name": "Joe Carnahan", "department": "Directing", "job": "Director", "credit_id": "52fe456a9251416c9103180d", "profile_path": "/5YPrZ1JprLwtU4tn5DG0wqLjsAT.jpg", "id": 40223}], "vote_average": 6.2, "runtime": 117}, "296": {"poster_path": "/lz4xYdF1n09lyiCfZWtWT44SZiG.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 435000000, "overview": "It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor \u2026 just like he promised.", "video": false, "id": 296, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Terminator 3: Rise of the Machines", "tagline": "The Machines Will Rise.", "vote_count": 763, "homepage": "http://www.terminator-3.de/", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181852", "adult": false, "backdrop_path": "/tMhvihszpLbOjj7mJSTW7bgQbIc.jpg", "production_companies": [{"name": "Mostow/Lieberman Productions", "id": 23636}, {"name": "C-2 Pictures", "id": 7340}, {"name": "Intermedia Films", "id": 763}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}], "release_date": "2003-06-30", "popularity": 2.06032351575602, "original_title": "Terminator 3: Rise of the Machines", "budget": 200000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Terminator", "id": 1100, "credit_id": "52fe4233c3a36847f800bca9", "cast_id": 6, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Nick Stahl", "character": "John Connor", "id": 6408, "credit_id": "52fe4233c3a36847f800bcad", "cast_id": 7, "profile_path": "/2QYVx2D71lY2MfRbluC8PPyLMlH.jpg", "order": 1}, {"name": "Claire Danes", "character": "Kate Brewster", "id": 6194, "credit_id": "52fe4234c3a36847f800bcb1", "cast_id": 8, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 2}, {"name": "Kristanna Loken", "character": "T-X", "id": 7218, "credit_id": "52fe4234c3a36847f800bcb5", "cast_id": 9, "profile_path": "/rxeYONGXlnNYOn50KjjiwgLxiGX.jpg", "order": 3}, {"name": "David Andrews", "character": "Robert Brewster", "id": 7219, "credit_id": "52fe4234c3a36847f800bcb9", "cast_id": 10, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 4}, {"name": "Mark Famiglietti", "character": "Scott Petersen", "id": 7220, "credit_id": "52fe4234c3a36847f800bcbd", "cast_id": 11, "profile_path": "/7Ypq73G7xZzVHLzN8nDi76bEBSP.jpg", "order": 5}, {"name": "Earl Boen", "character": "Dr. Peter Silberman", "id": 2716, "credit_id": "52fe4234c3a36847f800bcc1", "cast_id": 12, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 6}, {"name": "Moira Harris", "character": "Betsy", "id": 7221, "credit_id": "52fe4234c3a36847f800bcc5", "cast_id": 13, "profile_path": "/nhtDA9vLKqg2KnEjw9UgOuz2tMO.jpg", "order": 7}, {"name": "Chopper Bernet", "character": "Chief Engineer", "id": 7222, "credit_id": "52fe4234c3a36847f800bcc9", "cast_id": 14, "profile_path": "/hu7LbfGGZlEyOfRC2X9ieaejkH9.jpg", "order": 8}, {"name": "Christopher Lawford", "character": "Brewser's Aide", "id": 7223, "credit_id": "52fe4234c3a36847f800bccd", "cast_id": 15, "profile_path": "/xxc1WjJAajXWJog51i2Uh7MvlIN.jpg", "order": 9}, {"name": "Alana Curry", "character": "Bill's Girlfriend", "id": 7226, "credit_id": "52fe4234c3a36847f800bcd1", "cast_id": 16, "profile_path": "/aVauHVaeq7etScIzH4dhkA8cxbc.jpg", "order": 10}, {"name": "Chris Hardwick", "character": "Scientest", "id": 27738, "credit_id": "54bcf7ebc3a3687c40004113", "cast_id": 47, "profile_path": "/4neHtCQpQgOwmUil43R3syamU4z.jpg", "order": 11}, {"name": "Chris Hardwick", "character": "Engineer", "id": 27738, "credit_id": "54bcf800c3a3686c6100a2cf", "cast_id": 48, "profile_path": "/4neHtCQpQgOwmUil43R3syamU4z.jpg", "order": 12}, {"name": "Robert Alonzo", "character": "Jose Barrera", "id": 1444239, "credit_id": "550f740ec3a3683f39003df0", "cast_id": 49, "profile_path": null, "order": 13}], "directors": [{"name": "Jonathan Mostow", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800bc99", "profile_path": "/hHJjES7xDqHhFhyPvqytwJ8yGk3.jpg", "id": 7213}], "vote_average": 5.8, "runtime": 109}, "18162": {"poster_path": "/avlfNn8w9F3Z6iKrGe8FnJpQr7j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68688831, "overview": "On his latest expedition, Dr. Rick Marshall is sucked into a space-time vortex alongside his research assistant and a redneck survivalist. In this alternate universe, the trio make friends with a primate named Chaka, their only ally in a world full of dinosaurs and other fantastic creatures.", "video": false, "id": 18162, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Land of the Lost", "tagline": "Right place. Wrong time.", "vote_count": 110, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457400", "adult": false, "backdrop_path": "/gC5oemo21VQ6BSI6dXgwj3pNRDx.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Sid & Marty Krofft Pictures", "id": 11916}, {"name": "Mosaic Media Group", "id": 748}], "release_date": "2009-06-05", "popularity": 0.541419620311666, "original_title": "Land of the Lost", "budget": 100000000, "cast": [{"name": "Will Ferrell", "character": "Dr. Rick Marshall", "id": 23659, "credit_id": "52fe47649251416c75097aff", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Anna Friel", "character": "Holly", "id": 58016, "credit_id": "52fe47649251416c75097b03", "cast_id": 3, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 1}, {"name": "Danny McBride", "character": "Will Stanton", "id": 62862, "credit_id": "52fe47649251416c75097b07", "cast_id": 4, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 2}, {"name": "Jorma Taccone", "character": "Chaka", "id": 62863, "credit_id": "52fe47649251416c75097b17", "cast_id": 7, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 3}, {"name": "Matt Lauer", "character": "Himself", "id": 141525, "credit_id": "52fe47649251416c75097b1b", "cast_id": 9, "profile_path": "/dKczJjrdzn1DH5XpRfDzFXECiZy.jpg", "order": 4}, {"name": "Bobb'e J. Thompson", "character": "Tar Pits Kid", "id": 75633, "credit_id": "52fe47649251416c75097b1f", "cast_id": 10, "profile_path": "/egf09lgTqjSmSCxGLTROpkb5ZGS.jpg", "order": 5}, {"name": "Sierra McCormick", "character": "Tar Pits Kid", "id": 141526, "credit_id": "52fe47649251416c75097b23", "cast_id": 11, "profile_path": "/goRijQ7jtbYU4c27wpUXm8xgk1s.jpg", "order": 6}, {"name": "Shannon Lemke", "character": "Tar Pits Kid", "id": 141527, "credit_id": "52fe47649251416c75097b27", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Stevie Wash Jr.", "character": "Tar Pits Kid", "id": 141528, "credit_id": "52fe47649251416c75097b2b", "cast_id": 13, "profile_path": "/vJUSTpI7yYmaReZJw8FGUA0nJ1n.jpg", "order": 8}, {"name": "Brian Huskey", "character": "Teacher", "id": 54728, "credit_id": "52fe47649251416c75097b2f", "cast_id": 14, "profile_path": "/krewoXz2qgDdIAB2PTGRuilX0K5.jpg", "order": 9}, {"name": "Kevin Buitrago", "character": "Teenager", "id": 141529, "credit_id": "52fe47649251416c75097b33", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Noah Crawford", "character": "Teenager", "id": 141530, "credit_id": "52fe47649251416c75097b37", "cast_id": 16, "profile_path": "/zg5cmZF3oylfNpvz4AYRVd6LrZO.jpg", "order": 11}, {"name": "Jon Kent Ethridge", "character": "Teenager", "id": 141531, "credit_id": "52fe47649251416c75097b3b", "cast_id": 17, "profile_path": "/iW5X8CvFNjNz28e3KQFPDq3RXbb.jpg", "order": 12}, {"name": "Logan Manus", "character": "Teenager", "id": 141532, "credit_id": "52fe47649251416c75097b3f", "cast_id": 18, "profile_path": "/vq4oR5nhNKZqiKgqZESnqN2RQXy.jpg", "order": 13}, {"name": "John Boylan", "character": "Enik", "id": 560159, "credit_id": "52fe47649251416c75097b43", "cast_id": 19, "profile_path": "/9tHYSNayUe6ddIKmdxrFP4uzcYW.jpg", "order": 14}, {"name": "Marti Matulis", "character": "Sleestak", "id": 1287088, "credit_id": "52fe47649251416c75097bbf", "cast_id": 40, "profile_path": "/r7I8OnQpK4QvI62cQcWYKMtW4Fe.jpg", "order": 15}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe47649251416c75097afb", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 5.5, "runtime": 102}, "141043": {"poster_path": "/vIa83hicQj1ZFDG2bWfZaoUoa2e.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Four lost souls \u2013 a disgraced TV presenter, a foul-mouthed teen, an isolated single mother and a solipsistic muso - decide to end their lives on the same night, New Year's Eve. When this disillusioned quartet of strangers meet unintentionally at the same suicide hotspot, a London high-rise with the well-earned nickname Topper's Tower, they mutually agree to call off their plans for six weeks, forming an unconventional, dysfunctional family, becoming media sensations as the Topper House Four and searching together for the reasons to keep on living.", "video": false, "id": 141043, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "A Long Way Down", "tagline": "Every friendship has its ups and downs.", "vote_count": 121, "homepage": "http://www.alongwaydownmovie.co.uk", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458413", "adult": false, "backdrop_path": "/nmlqFLYlRt1VgGS0rC5RDOWKe63.jpg", "production_companies": [{"name": "BBC Films", "id": 288}], "release_date": "2014-03-21", "popularity": 0.646569357343551, "original_title": "A Long Way Down", "budget": 0, "cast": [{"name": "Pierce Brosnan", "character": "Martin Sharp", "id": 517, "credit_id": "52fe4aa99251416c750e9b57", "cast_id": 2, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Penny", "id": 10882, "credit_id": "52fe4aa99251416c750e9b5b", "cast_id": 3, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Aaron Paul", "character": "J.J.", "id": 84497, "credit_id": "52fe4aa99251416c750e9b5f", "cast_id": 4, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 2}, {"name": "Imogen Poots", "character": "Jess Crichton", "id": 17606, "credit_id": "52fe4aa99251416c750e9b63", "cast_id": 5, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 3}, {"name": "Sam Neill", "character": "Chris", "id": 4783, "credit_id": "52fe4aa99251416c750e9b67", "cast_id": 6, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 4}, {"name": "Toni Collette", "character": "Maureen", "id": 3051, "credit_id": "52fe4aa99251416c750e9b6b", "cast_id": 7, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 5}, {"name": "Tuppence Middleton", "character": "Kathy", "id": 89822, "credit_id": "52fe4aa99251416c750e9b6f", "cast_id": 8, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 6}, {"name": "Joe Cole", "character": "Cas", "id": 1081875, "credit_id": "52fe4aa99251416c750e9b73", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Josef Altin", "character": "Matty", "id": 43554, "credit_id": "53bc1794c3a368663b00243a", "cast_id": 10, "profile_path": "/lnr6IQUAyXP0y1oj7sEZgmNpzpL.jpg", "order": 8}, {"name": "Priyanga Burford", "character": "Reporter", "id": 62968, "credit_id": "53bc17b0c3a368662e0022ea", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Zara White", "character": "Shanay", "id": 1339076, "credit_id": "53bc17bcc3a368663b00243e", "cast_id": 12, "profile_path": null, "order": 10}], "directors": [{"name": "Pascal Chaumeil", "department": "Directing", "job": "Director", "credit_id": "52fe4aa99251416c750e9b53", "profile_path": null, "id": 8392}], "vote_average": 6.4, "runtime": 96}, "8489": {"poster_path": "/gCGoMZXGdU7DY8xgKYle6dJGksT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87713825, "overview": "In 1964, a brash new pro boxer, fresh from his olympic gold medal victory, explodes on to the scene: Cassius Clay. Bold and outspoken, he cuts an entirely new image for African American's in sport with his proud public self confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.", "video": false, "id": 8489, "genres": [{"id": 18, "name": "Drama"}], "title": "Ali", "tagline": "Float like a butterfly and sting like a bee.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0248667", "adult": false, "backdrop_path": "/2IbajWDoPV6cjBjXhMpDvMsG4jZ.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2001-12-11", "popularity": 0.334045238457676, "original_title": "Ali", "budget": 107000000, "cast": [{"name": "Will Smith", "character": "Cassius Clay", "id": 2888, "credit_id": "52fe44adc3a36847f80a3d47", "cast_id": 33, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "Drew 'Bundini' Brown", "id": 134, "credit_id": "52fe44adc3a36847f80a3ca9", "cast_id": 2, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Jon Voight", "character": "Howard Cosell", "id": 10127, "credit_id": "52fe44adc3a36847f80a3cad", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Mario Van Peebles", "character": "Malcolm X", "id": 16214, "credit_id": "52fe44adc3a36847f80a3cb1", "cast_id": 4, "profile_path": "/sJTHYZC15G253Ux6TGEVXzbrahz.jpg", "order": 3}, {"name": "Ron Silver", "character": "Angelo Dundee", "id": 21399, "credit_id": "52fe44adc3a36847f80a3cb5", "cast_id": 5, "profile_path": "/kj5qwf0gprRGXOCHNmqFTbpC97H.jpg", "order": 4}, {"name": "Jeffrey Wright", "character": "Howard Bingham", "id": 2954, "credit_id": "52fe44adc3a36847f80a3cb9", "cast_id": 6, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 5}, {"name": "Mykelti Williamson", "character": "Don King", "id": 34, "credit_id": "52fe44adc3a36847f80a3cbd", "cast_id": 7, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 6}, {"name": "Jada Pinkett Smith", "character": "Sonji", "id": 9575, "credit_id": "52fe44adc3a36847f80a3cc1", "cast_id": 8, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 7}, {"name": "Nona Gaye", "character": "Belinda Ali", "id": 18286, "credit_id": "52fe44adc3a36847f80a3cc5", "cast_id": 9, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 8}, {"name": "Michael Michele", "character": "Veronica Porche", "id": 39977, "credit_id": "52fe44adc3a36847f80a3cc9", "cast_id": 10, "profile_path": "/syVfYJP8eXbTmcnZZArMFCBJecd.jpg", "order": 9}, {"name": "Joe Morton", "character": "Chauncey Eskridge", "id": 3977, "credit_id": "52fe44adc3a36847f80a3ccd", "cast_id": 11, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 10}, {"name": "Paul Rodr\u00edguez", "character": "Dr. Ferdie Pacheco", "id": 55259, "credit_id": "52fe44adc3a36847f80a3cd1", "cast_id": 12, "profile_path": "/lbI7Ot0rg6jhqhDwYpGFGQIA9BC.jpg", "order": 11}, {"name": "Bruce McGill", "character": "Bradley", "id": 14888, "credit_id": "52fe44adc3a36847f80a3cd5", "cast_id": 13, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 12}, {"name": "Barry Shabaka Henley", "character": "Herbert Muhammad", "id": 8689, "credit_id": "52fe44adc3a36847f80a3cd9", "cast_id": 14, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 13}, {"name": "Giancarlo Esposito", "character": "Cassius Clay, Sr.", "id": 4808, "credit_id": "52fe44adc3a36847f80a3cdd", "cast_id": 15, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 14}, {"name": "Ron Madoff", "character": "Cameraman", "id": 1286269, "credit_id": "52fe44adc3a36847f80a3d51", "cast_id": 35, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 15}, {"name": "Deborah Smith Ford", "character": "Dancer", "id": 1426261, "credit_id": "54dc5c339251416191003661", "cast_id": 36, "profile_path": null, "order": 16}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44adc3a36847f80a3ce3", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.9, "runtime": 157}, "9978": {"poster_path": "/zw7zVvRGzPIMMNoRjLfkRTSBxSL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Alex Rider thinks he is a normal school boy, until his uncle is killed. He discovers that his uncle was actually spy on a mission, when he was killed. Alex is recruited by Alan Blunt to continue the mission. He is sent to Cornwall to investigate a new computer system, which Darrius Sayle has created. He plans to give the new computer systems to every school in the country, but Mr. Blunt has other ideas and Alex must find out what it is.", "video": false, "id": 9978, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 10751, "name": "Family"}], "title": "Stormbreaker", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457495", "adult": false, "backdrop_path": "/6wb96E1jDOw6RiOZRnYHWKJIBSZ.jpg", "production_companies": [], "release_date": "2006-07-21", "popularity": 0.660236956400635, "original_title": "Stormbreaker", "budget": 0, "cast": [{"name": "Sarah Bolger", "character": "Sabina Pleasure", "id": 33397, "credit_id": "52fe4556c3a36847f80c8819", "cast_id": 23, "profile_path": "/qDpy6RQYxk42R4ZrIFK3eq13bC2.jpg", "order": 0}, {"name": "Robbie Coltrane", "character": "Prime Minister", "id": 1923, "credit_id": "52fe4556c3a36847f80c881d", "cast_id": 24, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 1}, {"name": "Stephen Fry", "character": "Smithers", "id": 11275, "credit_id": "52fe4556c3a36847f80c8821", "cast_id": 25, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 2}, {"name": "Damian Lewis", "character": "Yassen Gregorovich", "id": 20186, "credit_id": "52fe4556c3a36847f80c8825", "cast_id": 26, "profile_path": "/3cQpH6BvgK8C1TmcVYC9BPaICUB.jpg", "order": 3}, {"name": "Ewan McGregor", "character": "Ian Rider", "id": 3061, "credit_id": "52fe4556c3a36847f80c8829", "cast_id": 27, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 4}, {"name": "Bill Nighy", "character": "Alan Blunt", "id": 2440, "credit_id": "52fe4556c3a36847f80c882d", "cast_id": 28, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 5}, {"name": "Sophie Okonedo", "character": "Mrs. Jones", "id": 2598, "credit_id": "52fe4556c3a36847f80c8831", "cast_id": 29, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 6}, {"name": "Missi Pyle", "character": "Nadia Vole", "id": 1294, "credit_id": "52fe4556c3a36847f80c8835", "cast_id": 30, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 7}, {"name": "Mickey Rourke", "character": "Darrius Sayle", "id": 2295, "credit_id": "52fe4556c3a36847f80c8839", "cast_id": 31, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 8}, {"name": "Andy Serkis", "character": "Mr. Grin", "id": 1333, "credit_id": "52fe4556c3a36847f80c883d", "cast_id": 32, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 9}, {"name": "Alicia Silverstone", "character": "Jack Starbright", "id": 5588, "credit_id": "52fe4556c3a36847f80c8841", "cast_id": 33, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 10}, {"name": "Alex Pettyfer", "character": "Alex Rider", "id": 61363, "credit_id": "52fe4556c3a36847f80c8845", "cast_id": 34, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 11}, {"name": "Jimmy Carr", "character": "John Crawford", "id": 59077, "credit_id": "52fe4556c3a36847f80c8849", "cast_id": 35, "profile_path": "/6CAJbCwTBCaTGlvDzA8lo7nExGP.jpg", "order": 12}, {"name": "Ashley Walters", "character": "Wolf", "id": 61364, "credit_id": "52fe4556c3a36847f80c884d", "cast_id": 36, "profile_path": "/d2RSHNIL3TsdkNzjPtMDiLSdYEc.jpg", "order": 13}, {"name": "Richard Huw", "character": "Teacher", "id": 61366, "credit_id": "52fe4556c3a36847f80c8851", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Richard James", "character": "Vicar", "id": 61367, "credit_id": "52fe4556c3a36847f80c8855", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Alex Barrett", "character": "Gary", "id": 61365, "credit_id": "52fe4556c3a36847f80c8859", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Julian Bucknall", "character": "MI6 Man", "id": 61368, "credit_id": "52fe4556c3a36847f80c885d", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Morgan Walters", "character": "Harry", "id": 61370, "credit_id": "52fe4556c3a36847f80c8861", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Martin Herdman", "character": "Slater", "id": 61369, "credit_id": "52fe4556c3a36847f80c8865", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Geoffrey Sax", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a36847f80c87cd", "profile_path": "/jGOfYpxhMotpDiWfFDox02MH7hc.jpg", "id": 61357}], "vote_average": 4.5, "runtime": 93}, "1788": {"poster_path": "/3ohQOMqmSipX7bCKGkVcB7jpVXU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80035402, "overview": "Classic tale of teen rebellion and repression features a delightful combination of dance choreography and realistic and touching performances. When teenager Ren and his family move from big-city Chicago to a small town in the West, he's in for a real case of culture shock.", "video": false, "id": 1788, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Footloose", "tagline": "The music is on his side.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087277", "adult": false, "backdrop_path": "/ptEAh4Ok6PnXDkcX2kAue5A2sIG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "IndieProd Company Productions", "id": 959}], "release_date": "1984-02-17", "popularity": 0.73555214957277, "original_title": "Footloose", "budget": 8200000, "cast": [{"name": "Kevin Bacon", "character": "Ren McCormack", "id": 4724, "credit_id": "52fe4315c3a36847f8038fc3", "cast_id": 1, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "John Lithgow", "character": "Reverend Shaw Moore", "id": 12074, "credit_id": "52fe4315c3a36847f8038fc7", "cast_id": 2, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 1}, {"name": "Dianne Wiest", "character": "Vi Moore", "id": 1902, "credit_id": "52fe4315c3a36847f8038fd1", "cast_id": 4, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 2}, {"name": "Chris Penn", "character": "Willard Hewitt", "id": 2969, "credit_id": "52fe4315c3a36847f8038fd5", "cast_id": 5, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 3}, {"name": "Lori Singer", "character": "Ariel Moore", "id": 26456, "credit_id": "52fe4315c3a36847f8038fd9", "cast_id": 6, "profile_path": "/lWPT9LMHYOCsw14jCOvm2u0N8qi.jpg", "order": 4}, {"name": "Sarah Jessica Parker", "character": "Rusty", "id": 520, "credit_id": "52fe4315c3a36847f8038fdd", "cast_id": 7, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 5}], "directors": [{"name": "Herbert Ross", "department": "Directing", "job": "Director", "credit_id": "52fe4315c3a36847f8038fcd", "profile_path": "/7KUacSL1gmx9UkOsqutjeBVJCQ6.jpg", "id": 18378}], "vote_average": 5.7, "runtime": 107}, "9982": {"poster_path": "/iLMALbInUmbNn1tHmxJEWm5MyjP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 314432665, "overview": "When a tiny acorn bonks Chicken Little on the head, he causes widespread panic and gets on the bad side of the entire town. But when he's hit on the head by a real piece of sky, it's up to Chicken Little and his friends to save the world.", "video": false, "id": 9982, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Chicken Little", "tagline": "When it comes to saving the world, it helps to be a little chicken.", "vote_count": 229, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371606", "adult": false, "backdrop_path": "/cAVfRc269eWJA7BCNGfGeJ8R1ou.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2005-11-04", "popularity": 1.80397038326908, "original_title": "Chicken Little", "budget": 150000000, "cast": [{"name": "Zach Braff", "character": "Chicken Little (voice)", "id": 5367, "credit_id": "52fe4556c3a36847f80c8a65", "cast_id": 19, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 0}, {"name": "Garry Marshall", "character": "Buck Cluck (voice)", "id": 1201, "credit_id": "52fe4556c3a36847f80c8a69", "cast_id": 20, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 1}, {"name": "Don Knotts", "character": "Mayor Turkey Lurkey (voice)", "id": 27726, "credit_id": "52fe4556c3a36847f80c8a6d", "cast_id": 21, "profile_path": "/qMqpOuJj69ozHCViUZSiFvgggva.jpg", "order": 2}, {"name": "Patrick Stewart", "character": "Mr. Woolensworth (voice)", "id": 2387, "credit_id": "52fe4556c3a36847f80c8a83", "cast_id": 25, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 3}, {"name": "Amy Sedaris", "character": "Foxy Loxy (voice)", "id": 12110, "credit_id": "52fe4556c3a36847f80c8a87", "cast_id": 26, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 4}, {"name": "Steve Zahn", "character": "Runt of the Litter (voice)", "id": 18324, "credit_id": "52fe4556c3a36847f80c8a8b", "cast_id": 27, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 5}, {"name": "Joan Cusack", "character": "Abby Mallard (voice)", "id": 3234, "credit_id": "52fe4556c3a36847f80c8a8f", "cast_id": 28, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 6}, {"name": "Wallace Shawn", "character": "Principal Fetchit (voice)", "id": 12900, "credit_id": "52fe4556c3a36847f80c8a93", "cast_id": 29, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 7}, {"name": "Harry Shearer", "character": "Dog Announcer (voice)", "id": 6008, "credit_id": "52fe4556c3a36847f80c8a97", "cast_id": 30, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 8}, {"name": "Fred Willard", "character": "Melvin - Alien Dad (voice)", "id": 20753, "credit_id": "52fe4556c3a36847f80c8a9b", "cast_id": 31, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 9}, {"name": "Catherine O'Hara", "character": "Tina - Alien Mom (voice)", "id": 11514, "credit_id": "52fe4556c3a36847f80c8a9f", "cast_id": 32, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 10}, {"name": "Patrick Warburton", "character": "Alien Cop (voice)", "id": 9657, "credit_id": "52fe4556c3a36847f80c8aa3", "cast_id": 33, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 11}, {"name": "Adam West", "character": "Ace - Hollywood Chicken Little (voice)", "id": 26847, "credit_id": "52fe4556c3a36847f80c8aa7", "cast_id": 34, "profile_path": "/8pvRGXFF7lsIZrDS2yaV2dZaG72.jpg", "order": 12}, {"name": "Dan Molina", "character": "Fish Out of Water (voice)", "id": 40347, "credit_id": "52fe4556c3a36847f80c8aab", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Joe Whyte", "character": "Rodriguez / Acorn Mascot / Umpire (voice)", "id": 61425, "credit_id": "52fe4556c3a36847f80c8aaf", "cast_id": 36, "profile_path": "/nBWyiV2dbhMAebwXagfNWej5on4.jpg", "order": 14}, {"name": "Mark Walton", "character": "Goosey Loosey (voice)", "id": 61423, "credit_id": "52fe4556c3a36847f80c8ab7", "cast_id": 39, "profile_path": "/6TUKAdE6vBqbl0OreI6JYcuhXUK.jpg", "order": 15}, {"name": "Sean Elmore", "character": "Kirby - Alien Kid (voice)", "id": 61426, "credit_id": "52fe4556c3a36847f80c8ab3", "cast_id": 38, "profile_path": "/mPkW1m7uyNQukxAOvioy2t4FIEo.jpg", "order": 17}, {"name": "Matthew Josten", "character": "Kirby - Alien Kid (voice)", "id": 61428, "credit_id": "52fe4556c3a36847f80c8abb", "cast_id": 40, "profile_path": "/9o38BI6eKx5LGqR3jzqZj2i1sM8.jpg", "order": 18}, {"name": "Evan Dunn", "character": "Kirby - Alien Kid (voice)", "id": 61427, "credit_id": "52fe4556c3a36847f80c8abf", "cast_id": 41, "profile_path": "/ypI0AWv1quPmQC8epht6WvBcEvb.jpg", "order": 19}, {"name": "Mark Dindal", "character": "Morkubine Porcupine / Coach (voice)", "id": 61411, "credit_id": "52fe4556c3a36847f80c8ac3", "cast_id": 43, "profile_path": "/8wetJbZVXQrdfU4KaQBEvTSNkRA.jpg", "order": 20}, {"name": "Kelly Hoover", "character": "Mama Runt (voice)", "id": 1077829, "credit_id": "550e7415c3a3683f0a001a75", "cast_id": 55, "profile_path": null, "order": 21}, {"name": "Will Finn", "character": "Hollywood Fish (voice)", "id": 70287, "credit_id": "550e80eac3a3681db2008929", "cast_id": 56, "profile_path": null, "order": 22}, {"name": "Dara McGarry", "character": "Hollywood Abby (voice)", "id": 1077828, "credit_id": "550e8126c3a3681db200892e", "cast_id": 57, "profile_path": null, "order": 23}, {"name": "Mark Kennedy", "character": "Hollywood Runt (voice)", "id": 61414, "credit_id": "550e819fc3a3683eb8001ccb", "cast_id": 58, "profile_path": null, "order": 24}, {"name": "Brad Abrell", "character": "(voice)", "id": 1443795, "credit_id": "550e81bbc3a3681db2008946", "cast_id": 59, "profile_path": null, "order": 25}, {"name": "Tom Amundsen", "character": "(voice)", "id": 169417, "credit_id": "550e820cc3a3683f39001e6d", "cast_id": 60, "profile_path": null, "order": 26}, {"name": "Steve Bencich", "character": "(voice)", "id": 52694, "credit_id": "550e823a9251410701001eb8", "cast_id": 61, "profile_path": null, "order": 27}, {"name": "Greg Berg", "character": "(voice)", "id": 94038, "credit_id": "550e8282925141793a002d39", "cast_id": 62, "profile_path": "/3TwBirdnh0AmKRSMhdWzzgZ0zTH.jpg", "order": 28}, {"name": "Julianne Buescher", "character": "(voice)", "id": 135818, "credit_id": "550e82be925141065c001e60", "cast_id": 63, "profile_path": null, "order": 29}, {"name": "David Cowgill", "character": "(voice)", "id": 60232, "credit_id": "550e82fa925141065c001e72", "cast_id": 64, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 30}, {"name": "Terri Douglas", "character": "(voice)", "id": 186605, "credit_id": "550e833bc3a3683f39001e8e", "cast_id": 65, "profile_path": "/lECiABogAKm5Zl8Je6niNAoqz5N.jpg", "order": 31}, {"name": "Chris Edgerly", "character": "(voice)", "id": 591764, "credit_id": "550e837c9251410701001efa", "cast_id": 66, "profile_path": null, "order": 32}, {"name": "Amanda Fein", "character": "(voice)", "id": 1351208, "credit_id": "550e83bcc3a3683e7f001e50", "cast_id": 67, "profile_path": null, "order": 33}, {"name": "Caitlin Fein", "character": "(voice)", "id": 1443796, "credit_id": "550e83f79251410701001f13", "cast_id": 68, "profile_path": null, "order": 34}, {"name": "Pat Fraley", "character": "(voice) (as Patrick Fraley)", "id": 34737, "credit_id": "550e8436c3a3683f39001eaa", "cast_id": 69, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 35}, {"name": "Eddie Frierson", "character": "(voice)", "id": 146186, "credit_id": "550e849ec3a3683f39001eb8", "cast_id": 70, "profile_path": "/8VjU4NVGuTiUhzxQZVsULnRdNWp.jpg", "order": 36}, {"name": "Jackie Gonneau", "character": "(voice)", "id": 950773, "credit_id": "550e84d3c3a3683dd6001c64", "cast_id": 71, "profile_path": null, "order": 37}, {"name": "Archie Hahn", "character": "(voice)", "id": 93670, "credit_id": "550e8521c3a3683dd6001c73", "cast_id": 72, "profile_path": null, "order": 38}, {"name": "Jason Harris", "character": "(voice)", "id": 187636, "credit_id": "550e8639c3a3683f39001ef7", "cast_id": 73, "profile_path": null, "order": 39}, {"name": "Brittney Lee Harvey", "character": "(voice)", "id": 1443797, "credit_id": "550e865e92514146a00093f3", "cast_id": 74, "profile_path": null, "order": 40}, {"name": "Brian Herskowitz", "character": "(voice)", "id": 1218957, "credit_id": "550e86e0c3a36848860098a6", "cast_id": 75, "profile_path": null, "order": 41}, {"name": "Mandy Kaplan", "character": "(voice) (as Amanda Kaplan)", "id": 1443798, "credit_id": "550e873bc3a3683eb8001dcf", "cast_id": 76, "profile_path": null, "order": 42}, {"name": "Nathan Kress", "character": "(voice)", "id": 212913, "credit_id": "550e8774925141065c001f36", "cast_id": 77, "profile_path": "/4B9z58nrAaNXJi4uVkvWsztK7LF.jpg", "order": 43}, {"name": "Anne Lockhart", "character": "(voice)", "id": 41227, "credit_id": "550e87c6925141065c001f4a", "cast_id": 78, "profile_path": "/c2gcaCg9q9uBEyieeaxSWWlrhN1.jpg", "order": 44}, {"name": "Connor Matheus", "character": "(voice)", "id": 1213527, "credit_id": "550e881c9251414699009339", "cast_id": 79, "profile_path": null, "order": 45}, {"name": "Mona Marshall", "character": "(voice)", "id": 111466, "credit_id": "550e885dc3a3683eb8001e50", "cast_id": 80, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 46}, {"name": "Scott Menville", "character": "(voice)", "id": 113916, "credit_id": "550e88b69251410701002002", "cast_id": 81, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 47}, {"name": "Rene Mujica", "character": "(voice)", "id": 1443801, "credit_id": "550e88dcc3a3683f0a001e4b", "cast_id": 82, "profile_path": null, "order": 48}, {"name": "Jonathan Nichols", "character": "(voice)", "id": 1443802, "credit_id": "550e88fec3a3684886009949", "cast_id": 83, "profile_path": null, "order": 49}, {"name": "Paul Pape", "character": "(voice)", "id": 174563, "credit_id": "550e8937c3a3683eb8001e85", "cast_id": 84, "profile_path": null, "order": 50}, {"name": "Aaron Spann", "character": "(voice)", "id": 91785, "credit_id": "550e896fc3a3681db2008aca", "cast_id": 85, "profile_path": "/40aZRhkPjKsdJ2cBlzMTSe6K30y.jpg", "order": 51}, {"name": "Pepper Sweeney", "character": "(voice)", "id": 131365, "credit_id": "550e89b0c3a3683f0a001e88", "cast_id": 86, "profile_path": null, "order": 52}, {"name": "David Carmon", "character": "Runt - Dancer (uncredited)", "id": 1443806, "credit_id": "550e89d692514146a00094e4", "cast_id": 87, "profile_path": null, "order": 53}, {"name": "Scott Conrad", "character": "(uncredited)", "id": 1443807, "credit_id": "550e8a17925141793a002ee6", "cast_id": 88, "profile_path": null, "order": 54}, {"name": "Nancy Gassner-Clayton", "character": "Choir (uncredited)", "id": 1443808, "credit_id": "550e8a3992514146990093a6", "cast_id": 89, "profile_path": null, "order": 55}, {"name": "Ivan 'Flipz' Velez", "character": "Chicken Little (dance) (uncredited)", "id": 1046144, "credit_id": "550e8a6392514146a0009503", "cast_id": 90, "profile_path": "/adXcwdqNqC1gmYYxLda9ZIUjBmU.jpg", "order": 56}], "directors": [{"name": "Mark Dindal", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a36847f80c8a43", "profile_path": "/8wetJbZVXQrdfU4KaQBEvTSNkRA.jpg", "id": 61411}], "vote_average": 5.4, "runtime": 81}, "9986": {"poster_path": "/zmfPv26TJrMeE9ngSEpBG44uePa.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144, "overview": "Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.", "video": false, "id": 9986, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Charlotte's Web", "tagline": "Something unexpected, unbelievable, unforgettable.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0413895", "adult": false, "backdrop_path": "/vj3lwd1TSMY0y7TQbLBH9IF8Jtm.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Kerner Entertainment Company", "id": 7311}], "release_date": "2006-12-15", "popularity": 0.515046233171919, "original_title": "Charlotte's Web", "budget": 85000000, "cast": [{"name": "Julia Roberts", "character": "Charlotte the Spider (voice)", "id": 1204, "credit_id": "52fe4557c3a36847f80c8d13", "cast_id": 21, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Templeton the Rat (voice)", "id": 884, "credit_id": "52fe4557c3a36847f80c8d1d", "cast_id": 23, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "John Cleese", "character": "Samuel the Sheep (voice)", "id": 8930, "credit_id": "52fe4557c3a36847f80c8d27", "cast_id": 25, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 2}, {"name": "Oprah Winfrey", "character": "Gussy the Goose (voice)", "id": 13309, "credit_id": "52fe4557c3a36847f80c8d2b", "cast_id": 26, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 3}, {"name": "Cedric the Entertainer", "character": "Golly the Goose (voice)", "id": 5726, "credit_id": "52fe4557c3a36847f80c8d2f", "cast_id": 27, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 4}, {"name": "Reba McEntire", "character": "Betsy the Cow (voice)", "id": 21986, "credit_id": "52fe4557c3a36847f80c8d37", "cast_id": 29, "profile_path": "/rLjdJUI41eqWeDzjN0B8fUkLc6y.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Bitsy the Cow (voice)", "id": 8534, "credit_id": "52fe4557c3a36847f80c8d33", "cast_id": 28, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "Robert Redford", "character": "Ike the Horse (voice)", "id": 4135, "credit_id": "52fe4557c3a36847f80c8d3b", "cast_id": 30, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 7}, {"name": "Thomas Haden Church", "character": "Brooks the Crow (voice)", "id": 19159, "credit_id": "52fe4557c3a36847f80c8d3f", "cast_id": 31, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 8}, {"name": "Andr\u00e9 Benjamin", "character": "Elwyn the Crow (voice)", "id": 37934, "credit_id": "52fe4557c3a36847f80c8d43", "cast_id": 32, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 9}, {"name": "Dominic Scott Kay", "character": "Wilbur (voice)", "id": 61259, "credit_id": "52fe4557c3a36847f80c8d47", "cast_id": 33, "profile_path": "/hH2RPSXqJU9h8YJlnMLWh9q7Vsk.jpg", "order": 10}, {"name": "Sam Shepard", "character": "Narrator (voice)", "id": 9880, "credit_id": "52fe4557c3a36847f80c8d4b", "cast_id": 34, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 11}, {"name": "Abraham Benrubi", "character": "Uncle the Pig (voice)", "id": 21132, "credit_id": "52fe4557c3a36847f80c8d4f", "cast_id": 35, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 12}, {"name": "Dakota Fanning", "character": "Fern", "id": 501, "credit_id": "52fe4557c3a36847f80c8d53", "cast_id": 36, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 13}, {"name": "Kevin Anderson", "character": "Mr. Arable", "id": 51805, "credit_id": "52fe4557c3a36847f80c8d57", "cast_id": 37, "profile_path": "/roCItER7LbrJJvAV1Fku3jG9g8k.jpg", "order": 14}, {"name": "Essie Davis", "character": "Mrs. Arable", "id": 33449, "credit_id": "52fe4557c3a36847f80c8d5b", "cast_id": 38, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 15}, {"name": "Siobhan Fallon", "character": "Mrs. Zuckerman", "id": 6751, "credit_id": "52fe4557c3a36847f80c8d5f", "cast_id": 39, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 16}, {"name": "Louis Corbett", "character": "Avery", "id": 61487, "credit_id": "52fe4557c3a36847f80c8d63", "cast_id": 40, "profile_path": "/nQ9jciRkjzuWvbdyP36hfeWxsOj.jpg", "order": 17}, {"name": "Robyn Arthur", "character": "Teacher", "id": 61489, "credit_id": "52fe4557c3a36847f80c8d67", "cast_id": 41, "profile_path": "/zdXUNkOPJDjHrljAdouKCVIgzqT.jpg", "order": 18}, {"name": "Julian O'Donnell", "character": "Henry Fussy", "id": 61488, "credit_id": "52fe4557c3a36847f80c8d6b", "cast_id": 42, "profile_path": "/5cY0rWCA47b5t09LxgaSI7cRr4n.jpg", "order": 19}, {"name": "Gary Basaraba", "character": "Homer Zuckerman", "id": 96228, "credit_id": "52fe4557c3a36847f80c8d6f", "cast_id": 43, "profile_path": "/mF3JQEIAUDIfNfrNdiAuh2ohFow.jpg", "order": 20}, {"name": "Nate Mooney", "character": "Lurvy", "id": 74538, "credit_id": "52fe4557c3a36847f80c8d73", "cast_id": 44, "profile_path": "/g9GCabrHoMfNP7NfhS8Q0VkVJ2E.jpg", "order": 21}, {"name": "Nicholas Bell", "character": "Minister", "id": 15340, "credit_id": "52fe4557c3a36847f80c8d77", "cast_id": 45, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 22}, {"name": "Beau Bridges", "character": "Dr. Dorian", "id": 2222, "credit_id": "52fe4557c3a36847f80c8d7b", "cast_id": 46, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 23}, {"name": "Teague Rook", "character": "Well Dressed Man", "id": 217039, "credit_id": "52fe4557c3a36847f80c8d7f", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "Julia Zemiro", "character": "Bystander", "id": 88419, "credit_id": "52fe4557c3a36847f80c8d83", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Denise Kirby", "character": "New Teacher", "id": 1204069, "credit_id": "52fe4557c3a36847f80c8d87", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "Robert Plazek", "character": "Ball Thrower", "id": 1204070, "credit_id": "52fe4557c3a36847f80c8d8b", "cast_id": 50, "profile_path": null, "order": 27}, {"name": "Joseph Lotesto", "character": "Young Boy", "id": 1204071, "credit_id": "52fe4557c3a36847f80c8d8f", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "Michael Roland", "character": "Mayor", "id": 1204072, "credit_id": "52fe4557c3a36847f80c8d93", "cast_id": 52, "profile_path": null, "order": 29}, {"name": "Don Bridges", "character": "Announcer", "id": 80270, "credit_id": "52fe4558c3a36847f80c8d97", "cast_id": 53, "profile_path": null, "order": 30}, {"name": "Ian Watkin", "character": "Fair Official", "id": 11335, "credit_id": "52fe4558c3a36847f80c8d9b", "cast_id": 54, "profile_path": null, "order": 31}, {"name": "Joel McCrary", "character": "Sheep Group (voice)", "id": 12223, "credit_id": "52fe4558c3a36847f80c8d9f", "cast_id": 55, "profile_path": null, "order": 32}, {"name": "Brian Stepanek", "character": "Sheep Group (voice)", "id": 146391, "credit_id": "52fe4558c3a36847f80c8da3", "cast_id": 56, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 33}, {"name": "Fred Tatasciore", "character": "Sheep Group (voice)", "id": 60279, "credit_id": "52fe4558c3a36847f80c8da7", "cast_id": 57, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 34}, {"name": "Bradley White", "character": "Sheep Group (voice)", "id": 168377, "credit_id": "52fe4558c3a36847f80c8dab", "cast_id": 58, "profile_path": null, "order": 35}, {"name": "Maia Kirkpatrick", "character": "Joy the Baby Spider (voice)", "id": 1204074, "credit_id": "52fe4558c3a36847f80c8daf", "cast_id": 59, "profile_path": null, "order": 36}, {"name": "Jennessa Rose", "character": "Aranea the Baby Spider (voice)", "id": 1075686, "credit_id": "52fe4558c3a36847f80c8db3", "cast_id": 60, "profile_path": "/31ihfzqUWhoSKorzOm7nukXr2Im.jpg", "order": 37}, {"name": "Briana Hodge", "character": "Nellie the Baby Spider (voice)", "id": 944685, "credit_id": "52fe4558c3a36847f80c8db7", "cast_id": 61, "profile_path": "/rL4Qvef0HViBbY2WVOWA12xDO5w.jpg", "order": 38}, {"name": "Dale Azzopardi", "character": "Photographer (uncredited)", "id": 1204075, "credit_id": "52fe4558c3a36847f80c8dbb", "cast_id": 62, "profile_path": null, "order": 39}, {"name": "Geoff Burgess", "character": "Photographer (uncredited)", "id": 1204076, "credit_id": "52fe4558c3a36847f80c8dbf", "cast_id": 63, "profile_path": null, "order": 40}, {"name": "Ella Scott Lynch", "character": "Girl at Fair (uncredited)", "id": 1194111, "credit_id": "52fe4558c3a36847f80c8dc3", "cast_id": 64, "profile_path": null, "order": 41}, {"name": "Greg Marian", "character": "Farmer (uncredited)", "id": 1204077, "credit_id": "52fe4558c3a36847f80c8dc7", "cast_id": 65, "profile_path": null, "order": 42}, {"name": "Stefano Mazzeo", "character": "Fair Member (uncredited)", "id": 1204078, "credit_id": "52fe4558c3a36847f80c8dcb", "cast_id": 66, "profile_path": null, "order": 43}, {"name": "Elizabeth Saunders", "character": "Girl at Fair (uncredited)", "id": 1008932, "credit_id": "52fe4558c3a36847f80c8dcf", "cast_id": 67, "profile_path": null, "order": 44}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe4557c3a36847f80c8ca3", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 5.7, "runtime": 97}, "9989": {"poster_path": "/uikaCsqNWBD7vwc3RSWZpxejm3c.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17833000, "overview": "A computer programmer's dream job at a hot Portland-based firm turns nightmarish when he discovers his boss has a secret and ruthless means of dispatching anti-trust problems.", "video": false, "id": 9989, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "AntiTrust", "tagline": "Truth can be dangerous...Trust can be deadly.", "vote_count": 50, "homepage": "http://www.antitrustthemovie.com/", "belongs_to_collection": {"backdrop_path": "/yxkdsov2rx6ysCPPUEi4xIrJC3Z.jpg", "poster_path": "/1tIKPSCcICJ1wPbJESqDomqaG9f.jpg", "id": 248131, "name": "Hackers - The Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0218817", "adult": false, "backdrop_path": "/cKXClElZ72rYHxm64lAFVdjiNAi.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 45725}, {"name": "Industry Entertainment", "id": 376}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Hyde Park Films", "id": 1172}], "release_date": "2001-01-12", "popularity": 0.261343767504343, "original_title": "AntiTrust", "budget": 30000000, "cast": [{"name": "Ryan Phillippe", "character": "Milo Hoffman", "id": 11864, "credit_id": "52fe4558c3a36847f80c90d1", "cast_id": 18, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 0}, {"name": "Rachael Leigh Cook", "character": "Lisa Calighan", "id": 38581, "credit_id": "52fe4558c3a36847f80c90d5", "cast_id": 19, "profile_path": "/xPcfVq2UMihLNmPvYhFXV0IXiwF.jpg", "order": 1}, {"name": "Tim Robbins", "character": "Gary Winston", "id": 504, "credit_id": "52fe4558c3a36847f80c90d9", "cast_id": 20, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 2}, {"name": "Claire Forlani", "character": "Alice Poulson", "id": 4174, "credit_id": "52fe4558c3a36847f80c90dd", "cast_id": 21, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 3}, {"name": "Richard Roundtree", "character": "Lyle Barton", "id": 6487, "credit_id": "52fe4558c3a36847f80c90ed", "cast_id": 24, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 4}, {"name": "Tygh Runyan", "character": "Larry Banks", "id": 55591, "credit_id": "52fe4558c3a36847f80c90f1", "cast_id": 25, "profile_path": "/vHlo0lwXAHGzCBEL6mrum39exdO.jpg", "order": 5}, {"name": "Ned Bellamy", "character": "Phil Grimes", "id": 2141, "credit_id": "52fe4558c3a36847f80c90f5", "cast_id": 26, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 6}, {"name": "Tyler Labine", "character": "Redmond Schmeichel", "id": 51383, "credit_id": "52fe4558c3a36847f80c90f9", "cast_id": 27, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 7}, {"name": "Yee Jee Tso", "character": "Teddy Chin", "id": 61541, "credit_id": "52fe4558c3a36847f80c90fd", "cast_id": 28, "profile_path": "/9oVMHObp5JoOxnycf8DzWm8JuK0.jpg", "order": 8}, {"name": "Nate Dushku", "character": "Brian Bissel", "id": 61542, "credit_id": "52fe4558c3a36847f80c9105", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Douglas McFerran", "character": "Bob Shrot", "id": 61540, "credit_id": "52fe4558c3a36847f80c9101", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Scott Bellis", "character": "Randy Sheringham", "id": 61543, "credit_id": "52fe4558c3a36847f80c9109", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Zahf Paroo", "character": "Desi", "id": 58902, "credit_id": "52fe4558c3a36847f80c910d", "cast_id": 32, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 12}, {"name": "Jonathon Young", "character": "Stinky", "id": 11832, "credit_id": "52fe4558c3a36847f80c9111", "cast_id": 33, "profile_path": "/6sO42m3qDKy0xCBlwo6A3Czpoil.jpg", "order": 13}, {"name": "Nathaniel DeVeaux", "character": "Lawyer", "id": 20221, "credit_id": "52fe4558c3a36847f80c9115", "cast_id": 34, "profile_path": "/oXBArAwYlxrX4w1hnh0HsdAFEcQ.jpg", "order": 14}, {"name": "Rick Worthy", "character": "Shrot's Assistant", "id": 61545, "credit_id": "52fe4558c3a36847f80c9119", "cast_id": 35, "profile_path": "/vaKDRpwvKj24AHNKmZX22v4OLwK.jpg", "order": 15}, {"name": "Ian Robison", "character": "Lawyer", "id": 61546, "credit_id": "52fe4558c3a36847f80c911d", "cast_id": 36, "profile_path": "/5eyTDnE31SxTGCFUsT55eRd3ZLw.jpg", "order": 16}, {"name": "David Lovgren", "character": "Danny Solskj\u00e6r", "id": 61544, "credit_id": "52fe4559c3a36847f80c9121", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Ed Beechner", "character": "Ken Cosgrove", "id": 61548, "credit_id": "52fe4559c3a36847f80c9125", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Linda Ko", "character": "Gary's Secretary", "id": 61547, "credit_id": "52fe4559c3a36847f80c9129", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Peter Howitt", "department": "Directing", "job": "Director", "credit_id": "52fe4558c3a36847f80c9079", "profile_path": "/cwgHjbx5LitEns32kmdmj1diREi.jpg", "id": 7791}], "vote_average": 5.5, "runtime": 108}, "9992": {"poster_path": "/n12XtNXZOYWr5DfYVvlC6jX42sJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 107944236, "overview": "Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur's grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.", "video": false, "id": 9992, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Arthur and the Invisibles", "tagline": "Adventure awaits in your own backyard.", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/e8Q363orc1wi02TSSoDDlil2qXh.jpg", "poster_path": "/lpKNbnUpP0h0cnVwC1LaE9YJB3U.jpg", "id": 85817, "name": "Arthur and the Invisibles Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0344854", "adult": false, "backdrop_path": "/3zpcmA6Lcv2K7kxGV5hQfegQd7Y.jpg", "production_companies": [{"name": "Avalanche Productions", "id": 2525}, {"name": "Canal+", "id": 5358}, {"name": "Sofica Europacorp", "id": 854}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2006-12-13", "popularity": 1.01461720149726, "original_title": "Arthur et les Minimoys", "budget": 86000000, "cast": [{"name": "Freddie Highmore", "character": "Arthur", "id": 1281, "credit_id": "52fe4559c3a36847f80c93bb", "cast_id": 20, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Mia Farrow", "character": "Granny", "id": 12021, "credit_id": "52fe4559c3a36847f80c93bf", "cast_id": 21, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 1}, {"name": "Ron Crawford", "character": "Archibald", "id": 61605, "credit_id": "52fe4559c3a36847f80c93c7", "cast_id": 24, "profile_path": "/3m1r7e8FmV4dk1X3xkXMOwJ6Bwf.jpg", "order": 2}, {"name": "Penny Balfour", "character": "Arthur's Mother", "id": 61604, "credit_id": "52fe4559c3a36847f80c93c3", "cast_id": 23, "profile_path": "/xKiucD8rGijAScFfFU5ryDT73TW.jpg", "order": 3}, {"name": "Saul Jephcott", "character": "Police Officer #1", "id": 61608, "credit_id": "52fe4559c3a36847f80c93cf", "cast_id": 26, "profile_path": "/drauKxTm1lhN1QZsu0AHOC1rWMf.jpg", "order": 4}, {"name": "Adam LeFevre", "character": "Davido", "id": 61607, "credit_id": "52fe4559c3a36847f80c93cb", "cast_id": 25, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 5}, {"name": "Lee Delong", "character": "Saleslady", "id": 61610, "credit_id": "52fe4559c3a36847f80c93db", "cast_id": 29, "profile_path": "/oGGmSHo458dsfoVtAUDEYvfDjiQ.jpg", "order": 6}, {"name": "Doug Rand", "character": "Arthur's Father", "id": 61609, "credit_id": "52fe4559c3a36847f80c93d7", "cast_id": 28, "profile_path": "/iWXA5jVkULBIPOn5znW9e4K0Ifr.jpg", "order": 7}, {"name": "Jean Bejote Njamba", "character": "Massai Chief", "id": 61606, "credit_id": "52fe4559c3a36847f80c93d3", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Christian Erickson", "character": "Antique Dealer", "id": 45849, "credit_id": "52fe4559c3a36847f80c93df", "cast_id": 30, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 9}, {"name": "Robert William Bradford", "character": "Baliff", "id": 61613, "credit_id": "52fe4559c3a36847f80c93e3", "cast_id": 31, "profile_path": "/hSGDxT2fHVl2E6gkNXM41SqX78p.jpg", "order": 10}, {"name": "Oxmo Puccino", "character": "Mover #2", "id": 61612, "credit_id": "52fe4559c3a36847f80c93eb", "cast_id": 33, "profile_path": "/gj6FnVxUnDlQFvOdUswocwFEdrO.jpg", "order": 11}, {"name": "Eric Balliet", "character": "Mover #1", "id": 61611, "credit_id": "52fe4559c3a36847f80c93e7", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Bienvenue Kindoki", "character": "Matassalai #1", "id": 61615, "credit_id": "52fe4559c3a36847f80c93ef", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Jerry Di Giacomo", "character": "Repairman", "id": 61614, "credit_id": "52fe4559c3a36847f80c93f3", "cast_id": 35, "profile_path": "/fyOXOzeJEIJgOVasc4iamlThEJb.jpg", "order": 14}, {"name": "Val\u00e9ry Koko Kingue", "character": "Matassalai #2", "id": 61616, "credit_id": "52fe4559c3a36847f80c93f7", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Aba Ko\u00efta", "character": "Matassalai #3", "id": 61622, "credit_id": "52fe4559c3a36847f80c93fb", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Mathar Licka Gueye", "character": "Matassalai #5", "id": 61618, "credit_id": "52fe4559c3a36847f80c93ff", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Tonio Descanvelle", "character": "Police Officer #2", "id": 61623, "credit_id": "52fe4559c3a36847f80c9403", "cast_id": 39, "profile_path": "/6osT2lZvotuNnk9VE9vXUhBPREE.jpg", "order": 18}, {"name": "Vincent Mendy", "character": "Matassalai #4", "id": 61621, "credit_id": "52fe4559c3a36847f80c9407", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Madonna", "character": "Princess Selenia", "id": 3125, "credit_id": "52fe4559c3a36847f80c940b", "cast_id": 41, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 20}, {"name": "Snoop Dogg", "character": "Max", "id": 19767, "credit_id": "52fe4559c3a36847f80c940f", "cast_id": 42, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 21}, {"name": "Barbara Kelsch", "character": "Arthur", "id": 54921, "credit_id": "52fe4559c3a36847f80c941f", "cast_id": 45, "profile_path": "/qbORf8qOsAQwKuZ9ldijKslDVuC.jpg", "order": 22}, {"name": "David Bowie", "character": "Maltazard", "id": 7487, "credit_id": "52fe4559c3a36847f80c9465", "cast_id": 57, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 23}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4559c3a36847f80c9381", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 5.8, "runtime": 94}, "9994": {"poster_path": "/7p2ekrptHyB2qPLwVkq7vvZL7mz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82424789, "overview": "In Victorian London, England, a little mouse girl's toymaker father is abducted by a peg-legged bat. She enlists the aid of Basil of Baker Street, the rodent world's answer to Sherlock Holmes. The case expands as Basil uncovers the crime's link to a plot against the Crown itself.", "video": false, "id": 9994, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Great Mouse Detective", "tagline": "London's crime-fighting ace on his most baffling case!", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091149", "adult": false, "backdrop_path": "/A0enTetqBfL3UqLPyg0MONLQDXN.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners", "id": 514}], "release_date": "1986-12-03", "popularity": 0.854561272574081, "original_title": "The Great Mouse Detective", "budget": 14000000, "cast": [{"name": "Barrie Ingham", "character": "Basil of Baker Street", "id": 39949, "credit_id": "52fe455ac3a36847f80c95b5", "cast_id": 1, "profile_path": "/c3c48JtBtAvC4vfdz3R83WqBKAF.jpg", "order": 0}, {"name": "Val Bettin", "character": "Dr. David Q. Dawson", "id": 61674, "credit_id": "52fe455ac3a36847f80c95b9", "cast_id": 2, "profile_path": "/dwdUalc3PdmC1zoAX7qHl6FMvrq.jpg", "order": 1}, {"name": "Vincent Price", "character": "Professor Ratigan", "id": 1905, "credit_id": "52fe455ac3a36847f80c95bd", "cast_id": 3, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 2}, {"name": "Susanne Pollatschek", "character": "Olivia Flaversham", "id": 61675, "credit_id": "52fe455ac3a36847f80c95c1", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Candy Candido", "character": "Fidget", "id": 61676, "credit_id": "52fe455ac3a36847f80c95c5", "cast_id": 5, "profile_path": "/5tjykiBmPIrnpPfHALfOqgEY7Nh.jpg", "order": 4}, {"name": "Diana Chesney", "character": "Mrs. Judson", "id": 164770, "credit_id": "52fe455ac3a36847f80c9647", "cast_id": 27, "profile_path": "/vSHHPtMj0HkU8c5icxnPqHmyzul.jpg", "order": 5}, {"name": "Eve Brenner", "character": "The Mouse Queen", "id": 157166, "credit_id": "52fe455ac3a36847f80c964b", "cast_id": 28, "profile_path": "/dfsXlBP7AssJVUb3Qks7KZMeofT.jpg", "order": 6}, {"name": "Alan Young", "character": "Hiram Flaversham", "id": 21874, "credit_id": "52fe455ac3a36847f80c964f", "cast_id": 29, "profile_path": "/w2BM8FJ051MgtNAEO5TLxuQqRhe.jpg", "order": 7}, {"name": "Basil Rathbone", "character": "Sherlock Holmes", "id": 8727, "credit_id": "52fe455ac3a36847f80c9653", "cast_id": 30, "profile_path": "/grjsDNr7wt6E57Bf2GDg0yaBsRo.jpg", "order": 8}, {"name": "Ellen Fitzhugh", "character": "Bar Maid", "id": 950289, "credit_id": "52fe455ac3a36847f80c965f", "cast_id": 33, "profile_path": "/28Zu6CRqy0OH18uYIyHG65gGhUj.jpg", "order": 11}, {"name": "Walker Edmiston", "character": "Citizen", "id": 1212769, "credit_id": "52fe455ac3a36847f80c9663", "cast_id": 34, "profile_path": "/rUkMMGWCAsdG6KqNnAPmCEQ903t.jpg", "order": 12}, {"name": "Wayne Allwine", "character": "Thug Guard", "id": 78076, "credit_id": "52fe455ac3a36847f80c9667", "cast_id": 35, "profile_path": "/9Xpy0TLwW1L3pCMMULOIZqgFIzt.jpg", "order": 13}, {"name": "Tony Anselmo", "character": "Thug Guard", "id": 34478, "credit_id": "52fe455ac3a36847f80c966b", "cast_id": 36, "profile_path": "/rDlzKZBdszBsNU8ubiMbcMi5Vzb.jpg", "order": 14}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95cb", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "Burny Mattinson", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95d1", "profile_path": null, "id": 61677}, {"name": "David Michener", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95d7", "profile_path": null, "id": 61678}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95dd", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.7, "runtime": 74}, "1807": {"poster_path": "/AgSWtbb8zMtTyjHFP12QeRbQGD5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10012022, "overview": "Several ordinary high school students go through their daily routine as two others prepare for something more malevolent. The film chronicles the events surrounding a school shooting.", "video": false, "id": 1807, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Elephant", "tagline": "An ordinary high school day. Except that it's not.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363589", "adult": false, "backdrop_path": "/wcvg2Zj3Y4NmP6ZTFsLeSWXWKjF.jpg", "production_companies": [{"name": "HBO Films", "id": 7429}, {"name": "Fearmakers Studios", "id": 7430}], "release_date": "2003-05-18", "popularity": 0.378190087239167, "original_title": "Elephant", "budget": 3000000, "cast": [{"name": "Alex Frost", "character": "Alex", "id": 19195, "credit_id": "52fe4316c3a36847f80393e3", "cast_id": 4, "profile_path": "/ip1ABnG49oeE5bOS78bAu8whdeI.jpg", "order": 0}, {"name": "Eric Deulen", "character": "Eric", "id": 19196, "credit_id": "52fe4316c3a36847f80393e7", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "John Robinson", "character": "John McFarland", "id": 19197, "credit_id": "52fe4316c3a36847f80393eb", "cast_id": 6, "profile_path": "/qg4baoVSBmL688HIv2Q7e6DTMT5.jpg", "order": 2}, {"name": "Elias McConnell", "character": "Elias", "id": 19198, "credit_id": "52fe4316c3a36847f80393ef", "cast_id": 7, "profile_path": "/8IEAprAbOp03JnkojHAeyzLo9RB.jpg", "order": 3}, {"name": "Jordan Taylor", "character": "Jordan", "id": 19199, "credit_id": "52fe4316c3a36847f80393f3", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Carrie Finklea", "character": "Carrie", "id": 19200, "credit_id": "52fe4316c3a36847f80393f7", "cast_id": 9, "profile_path": "/tGB2Oq4w7ynSEKmSLFxn5qeejYH.jpg", "order": 5}, {"name": "Nicole George", "character": "Nicole", "id": 19201, "credit_id": "52fe4316c3a36847f80393fb", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Brittany Mountain", "character": "Brittany", "id": 19202, "credit_id": "52fe4316c3a36847f80393ff", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Alicia Miles", "character": "Acadia", "id": 19203, "credit_id": "52fe4316c3a36847f8039403", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Kristen Hicks", "character": "Michelle", "id": 19204, "credit_id": "52fe4316c3a36847f8039407", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Bennie Dixon", "character": "Benny", "id": 19205, "credit_id": "52fe4316c3a36847f803940b", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Nathan Tyson", "character": "Nathan", "id": 19206, "credit_id": "52fe4316c3a36847f803940f", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Timothy Bottoms", "character": "Mr. McFarland", "id": 19207, "credit_id": "52fe4316c3a36847f8039413", "cast_id": 16, "profile_path": "/pTw7LySB4jJv9PfJfx3Hjj9GKQw.jpg", "order": 12}, {"name": "Matt Malloy", "character": "Mr. Luce", "id": 19208, "credit_id": "52fe4316c3a36847f8039417", "cast_id": 17, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 13}, {"name": "Chantelle Chriestenson Nelson", "character": "Noelle", "id": 19209, "credit_id": "52fe4316c3a36847f803941b", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Larry Laverty", "character": "Teacher #3", "id": 106142, "credit_id": "52fe4316c3a36847f803941f", "cast_id": 19, "profile_path": "/8pAAoZiYdHJzdJrd4zovpR2jzcB.jpg", "order": 15}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4316c3a36847f80393d3", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 7.0, "runtime": 81}, "10003": {"poster_path": "/uA24D8JCg21RDINMZ3vFaQYdIzW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118, "overview": "Ivan Tretiak, Russian Mafia boss who wants to create an oil crisis in Moscow and seize power as a result sends Simon Templar, great international criminal, to England to get a secret formula for cold fusion from U.S. scientist Emma Russell. Templar falls in love with Emma and they try to outwit Tretiak and his guerrillas, hiding from them in Moscow", "video": false, "id": 10003, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Saint", "tagline": "Never reveal your name. Never turn your back. Never surrender your heart.", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/3dliYexStkZy6NOAH533Y8oduOj.jpg", "id": 86224, "name": "The Saint Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0120053", "adult": false, "backdrop_path": "/lJnl8xIhplfzUBtlJLsWBwvXVBj.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rysher Entertainment", "id": 11661}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "1997-04-03", "popularity": 0.320777185629905, "original_title": "The Saint", "budget": 68, "cast": [{"name": "Val Kilmer", "character": "Simon Templar", "id": 5576, "credit_id": "52fe43039251416c750001c7", "cast_id": 13, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Elisabeth Shue", "character": "Emma Russell", "id": 1951, "credit_id": "52fe43039251416c750001cb", "cast_id": 14, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 1}, {"name": "Rade \u0160erbed\u017eija", "character": "Ivan Tretiak", "id": 1118, "credit_id": "52fe43039251416c750001cf", "cast_id": 15, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 2}, {"name": "Valeri Nikolayev", "character": "Ilya Tretiak", "id": 8698, "credit_id": "52fe43039251416c750001d3", "cast_id": 16, "profile_path": "/tGqjecLgqTQk96mhLMYEnkgA0eI.jpg", "order": 3}, {"name": "Henry Goodman", "character": "Dr. Lev Botvin", "id": 7030, "credit_id": "52fe43039251416c750001d7", "cast_id": 17, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 4}, {"name": "Alun Armstrong", "character": "Inspector Teal", "id": 2629, "credit_id": "52fe43039251416c750001db", "cast_id": 18, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 5}, {"name": "Michael Byrne", "character": "Vereshagin, Tretiak's Aide", "id": 742, "credit_id": "52fe43039251416c750001df", "cast_id": 19, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 6}, {"name": "Yevgeni Lazarev", "character": "President Karpov", "id": 19301, "credit_id": "52fe43049251416c75000259", "cast_id": 47, "profile_path": "/hLtyGhAuEeJc8qPjQDZswIMpYDd.jpg", "order": 7}, {"name": "Irina Apeksimova", "character": "Frankie (as Irina Apeximova)", "id": 146399, "credit_id": "52fe43039251416c750001e3", "cast_id": 21, "profile_path": "/cgqrLaXTGXIGT2Akcz41VxmCnlg.jpg", "order": 8}, {"name": "Lev Prygunov", "character": "General Sklarov (as Lev Prigunov)", "id": 90356, "credit_id": "52fe43039251416c750001e7", "cast_id": 22, "profile_path": "/aSOqfO6ccYHOA9ecPeZwPfmN8Nf.jpg", "order": 9}, {"name": "Charlotte Cornwell", "character": "Inspector Rabineau", "id": 87416, "credit_id": "52fe43039251416c750001eb", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Emily Mortimer", "character": "Woman on Plane", "id": 1246, "credit_id": "52fe43039251416c750001ef", "cast_id": 24, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 11}, {"name": "Lucija \u0160erbed\u017eija", "character": "Russian Prostitute", "id": 955006, "credit_id": "52fe43039251416c750001f3", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Velibor Topi\u0107", "character": "Skinhead", "id": 34515, "credit_id": "52fe43039251416c750001f7", "cast_id": 26, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 13}, {"name": "Tommy Flanagan", "character": "Scarface", "id": 2478, "credit_id": "52fe43039251416c750001fb", "cast_id": 27, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 14}, {"name": "Egor Pazenko", "character": "Scratchface", "id": 1079977, "credit_id": "52fe43039251416c750001ff", "cast_id": 28, "profile_path": "/8Pq0QwZDa65ApzJjuveq8RdXSA6.jpg", "order": 15}, {"name": "Adam Smith", "character": "Young Simon Templar", "id": 207004, "credit_id": "52fe43039251416c75000203", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Pat Laffan", "character": "Catholic Priest", "id": 188468, "credit_id": "52fe43039251416c75000207", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Verity-Jane Dearsley", "character": "Agnes", "id": 1079978, "credit_id": "52fe43049251416c7500020b", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Michael Marquez", "character": "Boy in Orphanage", "id": 1079979, "credit_id": "52fe43049251416c7500020f", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Lorelei King", "character": "TV Reporter", "id": 7032, "credit_id": "52fe43049251416c75000213", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Alla Kazanskaya", "character": "Old Russian Lady", "id": 238702, "credit_id": "52fe43049251416c75000217", "cast_id": 34, "profile_path": "/nR8dQUmfKqffLWcgCeemRcLVWZM.jpg", "order": 21}, {"name": "Ronnie Letham", "character": "Old Russian Man", "id": 1079980, "credit_id": "52fe43049251416c7500021b", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Tusse Silberg", "character": "Prostitute's Mother", "id": 70883, "credit_id": "52fe43049251416c7500021f", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Peter Guinness", "character": "Frankie's Curator", "id": 27172, "credit_id": "52fe43049251416c75000223", "cast_id": 37, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 24}, {"name": "Stefan Gryff", "character": "President's Aide", "id": 79954, "credit_id": "52fe43049251416c75000227", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Malcolm Tierney", "character": "Russian Doctor", "id": 166258, "credit_id": "52fe43049251416c7500022b", "cast_id": 39, "profile_path": "/fe7Cz6sxTLt9qSQANRpAAaYcPlV.jpg", "order": 26}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe43039251416c75000187", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.1, "runtime": 116}, "26388": {"poster_path": "/mvDfLRgsyFtonhKfOFIfl4c9Jwl.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19152480, "overview": "Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it's a race against time to escape this claustrophobic death trap.", "video": false, "id": 26388, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Buried", "tagline": "170,000 sq miles of desert. 90 minutes of oxygen. No way out.", "vote_count": 196, "homepage": "http://www.experienceburied.com/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1462758", "adult": false, "backdrop_path": "/2sqJMg3CAZlVq7VQ2pTftjqecqi.jpg", "production_companies": [{"name": "Versus Entertainment", "id": 11564}, {"name": "The Safran Company", "id": 11565}, {"name": "Dark Trick Films", "id": 11566}, {"name": "Studio 37", "id": 2577}], "release_date": "2010-09-24", "popularity": 0.895437249721434, "original_title": "Buried", "budget": 1987650, "cast": [{"name": "Ryan Reynolds", "character": "Paul Conroy", "id": 10859, "credit_id": "52fe44ffc3a368484e042c5b", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Jos\u00e9 Luis Garc\u00eda P\u00e9rez", "character": "Jabir (voice)", "id": 43323, "credit_id": "52fe44ffc3a368484e042ce7", "cast_id": 31, "profile_path": "/4FQuXgtCvEkulGGcUQklKSBBGdD.jpg", "order": 1}, {"name": "Robert Paterson", "character": "Dan Brenner (voice)", "id": 559068, "credit_id": "52fe44ffc3a368484e042c6f", "cast_id": 7, "profile_path": "/mFKeiFHG5eD7QbnRSOGHalRCtXj.jpg", "order": 2}, {"name": "Stephen Tobolowsky", "character": "Alan Davenport (voice)", "id": 537, "credit_id": "52fe44ffc3a368484e042cbb", "cast_id": 20, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 3}, {"name": "Samantha Mathis", "character": "Linda Conroy (voice)", "id": 20767, "credit_id": "52fe44ffc3a368484e042c6b", "cast_id": 5, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 4}, {"name": "Ivana Mi\u00f1o", "character": "Pamela Lutti (voice)", "id": 1040499, "credit_id": "52fe44ffc3a368484e042cbf", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "Warner Loughlin", "character": "Maryanne Conroy / Donna Mitchell / Rebecca Browning (voice)", "id": 194641, "credit_id": "52fe44ffc3a368484e042cc3", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Erik Palladino", "character": "Special Agent Harris (voice)", "id": 43902, "credit_id": "52fe44ffc3a368484e042cc7", "cast_id": 23, "profile_path": "/8pa03e4XTU8UIOWABONZJZuokjg.jpg", "order": 7}, {"name": "Kali Rocha", "character": "911 Operator (voice)", "id": 149665, "credit_id": "52fe44ffc3a368484e042ccb", "cast_id": 24, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 8}, {"name": "Chris William Martin", "character": "State Department Rep. (voice)", "id": 152820, "credit_id": "52fe44ffc3a368484e042ccf", "cast_id": 25, "profile_path": "/tNgMeVpoM4RhEvxjaYtaxLvi1YJ.jpg", "order": 9}, {"name": "Cade Dundish", "character": "Shane Conroy (voice)", "id": 1062208, "credit_id": "52fe44ffc3a368484e042cd3", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Mary Birdsong", "character": "411 Female Operator (voice)", "id": 63232, "credit_id": "52fe44ffc3a368484e042cd7", "cast_id": 27, "profile_path": "/oBXCCLgt3q2KDVQ7Ge6BWANJHZz.jpg", "order": 11}, {"name": "Kirk Baily", "character": "411 Male Operator (voice)", "id": 1120589, "credit_id": "52fe44ffc3a368484e042cdb", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Anne Lockhart", "character": "CRT Operator (voice)", "id": 41227, "credit_id": "52fe44ffc3a368484e042cdf", "cast_id": 29, "profile_path": "/c2gcaCg9q9uBEyieeaxSWWlrhN1.jpg", "order": 13}, {"name": "Robert Clotworthy", "character": "CRT Spokesman (voice)", "id": 35172, "credit_id": "52fe44ffc3a368484e042ce3", "cast_id": 30, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 14}, {"name": "Michalla Petersen", "character": "Nursing Home Nurse (voice)", "id": 1208113, "credit_id": "52fe44ffc3a368484e042ceb", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Juan Hidalgo", "character": "Kidnapper (voice)", "id": 1208127, "credit_id": "52fe44ffc3a368484e042cef", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Abdelilah Ben Massou", "character": "Kidnapper (voice)", "id": 1208128, "credit_id": "52fe44ffc3a368484e042cf3", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Joe Guarneri", "character": "Additional Voice (voice)", "id": 1208129, "credit_id": "52fe44ffc3a368484e042cf7", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Heath Centazzo", "character": "Additional Voice (voice)", "id": 1145676, "credit_id": "52fe44ffc3a368484e042cfb", "cast_id": 36, "profile_path": null, "order": 19}], "directors": [{"name": "Rodrigo Cort\u00e9s", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a368484e042c61", "profile_path": "/iGeAsnt5Ni96dbQD7FnClc4UQDB.jpg", "id": 95320}], "vote_average": 6.4, "runtime": 94}, "1813": {"poster_path": "/eSivb4EyOAyEum70mOSHtAWiUe3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60984028, "overview": "A hotshot lawyer gets more than he bargained for when he learns his new boss is Lucifer himself.", "video": false, "id": 1813, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Devil's Advocate", "tagline": "Evil has its winning ways.", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118971", "adult": false, "backdrop_path": "/rSwZzP1YxxvGLPxpEewiw6ddePr.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Kopelson Entertainment", "id": 824}], "release_date": "1997-10-17", "popularity": 0.824095056544824, "original_title": "The Devil's Advocate", "budget": 57000000, "cast": [{"name": "Keanu Reeves", "character": "Kevin Lomax", "id": 6384, "credit_id": "52fe4317c3a36847f80396f3", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Al Pacino", "character": "John Milton", "id": 1158, "credit_id": "52fe4317c3a36847f80396f7", "cast_id": 2, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Mary Ann Lomax", "id": 6885, "credit_id": "52fe4317c3a36847f80396fb", "cast_id": 3, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Jeffrey Jones", "character": "Eddie Barzoon", "id": 4004, "credit_id": "52fe4317c3a36847f80396ff", "cast_id": 4, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 3}, {"name": "Judith Ivey", "character": "Alice Lomax", "id": 19239, "credit_id": "52fe4317c3a36847f8039703", "cast_id": 5, "profile_path": "/AbliRxEkGlefUossjUxvzHF2s3b.jpg", "order": 4}, {"name": "Connie Nielsen", "character": "Christabella Andreoli", "id": 935, "credit_id": "52fe4317c3a36847f803971f", "cast_id": 10, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Alexander Cullen", "id": 8977, "credit_id": "52fe4317c3a36847f8039723", "cast_id": 11, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Tamara Tunie", "character": "Mrs. Jackie Heath", "id": 42694, "credit_id": "52fe4317c3a36847f8039727", "cast_id": 12, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 7}, {"name": "Ruben Santiago-Hudson", "character": "Leamon Heath", "id": 31839, "credit_id": "52fe4317c3a36847f803972b", "cast_id": 13, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 8}, {"name": "Debra Monk", "character": "Pam Garrety", "id": 10386, "credit_id": "52fe4317c3a36847f803972f", "cast_id": 14, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 9}, {"name": "Vyto Ruginis", "character": "Mitch Weaver", "id": 61216, "credit_id": "52fe4317c3a36847f8039733", "cast_id": 15, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 10}, {"name": "Laura Harrington", "character": "Melissa Black", "id": 17769, "credit_id": "52fe4317c3a36847f8039737", "cast_id": 16, "profile_path": "/4Eo23MPjQl4hdNBFv4NOHF9WgnS.jpg", "order": 11}, {"name": "George Wyner", "character": "Meisel", "id": 14669, "credit_id": "52fe4317c3a36847f803973b", "cast_id": 18, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 12}, {"name": "Chris Bauer", "character": "Lloyd Gettys", "id": 4445, "credit_id": "52fe4317c3a36847f803973f", "cast_id": 19, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 13}, {"name": "Connie Embesi", "character": "Mrs. Bernice Gettys", "id": 1089390, "credit_id": "52fe4317c3a36847f8039743", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Jonathan Cavallary", "character": "Gettys' Son", "id": 1089391, "credit_id": "52fe4317c3a36847f8039747", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Heather Matarazzo", "character": "Barbara", "id": 33656, "credit_id": "52fe4317c3a36847f803974b", "cast_id": 22, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 16}, {"name": "Murphy Guyer", "character": "Barbara's Father", "id": 155547, "credit_id": "52fe4317c3a36847f803974f", "cast_id": 23, "profile_path": "/vOuj13cuNCpKTewqN0pBG36Il4l.jpg", "order": 17}, {"name": "Leo Burmester", "character": "Florida Prosecutor", "id": 30151, "credit_id": "52fe4317c3a36847f8039753", "cast_id": 24, "profile_path": "/8V3Ev6pKP8VBRIjDONJW5cgi5Zc.jpg", "order": 18}, {"name": "Bill Moor", "character": "Garson Deeds (Florida Judge)", "id": 260967, "credit_id": "52fe4317c3a36847f8039757", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Neal Jones", "character": "Larry (Florida Reporter)", "id": 4199, "credit_id": "52fe4317c3a36847f803975b", "cast_id": 26, "profile_path": "/c86o0FZyiksJW3p90wvhtmMVykL.jpg", "order": 20}, {"name": "Eddie Aldridge", "character": "Florida Bailiff", "id": 1089392, "credit_id": "52fe4317c3a36847f803975f", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Mark Deakins", "character": "Florida Lawyer", "id": 582202, "credit_id": "52fe4317c3a36847f8039763", "cast_id": 28, "profile_path": "/lZ5hygLyyk5xvZ448kpDN4yhWzZ.jpg", "order": 22}, {"name": "Rony Clanton", "character": "Junkie in Harlem", "id": 90444, "credit_id": "52fe4317c3a36847f8039767", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "George O. Gore II", "character": "Boy in Harlem", "id": 303197, "credit_id": "52fe4317c3a36847f803976b", "cast_id": 30, "profile_path": "/d5O3QoMwl5GcsfekAl3S3fxxamK.jpg", "order": 24}, {"name": "Alan Manson", "character": "Judge Sklar", "id": 79735, "credit_id": "52fe4317c3a36847f803976f", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Brian Poteat", "character": "Pie Face", "id": 1089393, "credit_id": "52fe4317c3a36847f8039773", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Daniel Oreskes", "character": "Arnold (Metro Assistant District Attorney)", "id": 164463, "credit_id": "52fe4317c3a36847f8039777", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Kim Chan", "character": "Chinese Man", "id": 8400, "credit_id": "52fe4317c3a36847f803977b", "cast_id": 34, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 28}, {"name": "Caprice Benedetti", "character": "Menage A Trois Woman", "id": 154698, "credit_id": "52fe4317c3a36847f803977f", "cast_id": 35, "profile_path": "/gvthmNGV5EbvXZoqCbLeEAtUbd7.jpg", "order": 29}, {"name": "Don King", "character": "Himself", "id": 65607, "credit_id": "52fe4317c3a36847f8039783", "cast_id": 36, "profile_path": "/sdkBSSPGMP3rtOUHKRxCIOQWdE3.jpg", "order": 30}, {"name": "Ray Garvey", "character": "Fight Fan", "id": 1089394, "credit_id": "52fe4317c3a36847f8039787", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Rocco Musacchia", "character": "Fight Fan", "id": 984489, "credit_id": "52fe4317c3a36847f803978b", "cast_id": 38, "profile_path": "/yGTl36uiyAZPxvxwXEjN0UNVmDA.jpg", "order": 32}, {"name": "Susan Kellermann", "character": "Joyce Rensaleer", "id": 27264, "credit_id": "52fe4317c3a36847f803978f", "cast_id": 39, "profile_path": "/1WTM0L9rpgv0Urgi7P0IoHaMlsX.jpg", "order": 33}, {"name": "James Saito", "character": "Takaori Osumi", "id": 77155, "credit_id": "52fe4317c3a36847f8039793", "cast_id": 40, "profile_path": "/qwiY0k1tHFSmOPMJiwRL2wSEYK0.jpg", "order": 34}, {"name": "Harsh Nayyar", "character": "Parvathi Resh", "id": 20807, "credit_id": "52fe4317c3a36847f8039797", "cast_id": 41, "profile_path": null, "order": 35}, {"name": "Mohammed Ghaffari", "character": "Bashir Toabal", "id": 233547, "credit_id": "52fe4317c3a36847f803979b", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "Nicki Cochrane", "character": "Multi-Lingual Party Guest", "id": 1089395, "credit_id": "52fe4317c3a36847f803979f", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Fenja Klaus", "character": "Female #1", "id": 1089396, "credit_id": "52fe4317c3a36847f80397a3", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Gino Lucci", "character": "Limo Driver", "id": 164419, "credit_id": "52fe4317c3a36847f80397a7", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Novella Nelson", "character": "Botanica Woman", "id": 55272, "credit_id": "52fe4317c3a36847f80397ab", "cast_id": 46, "profile_path": "/bAx0RY3x9ljh3Fwo8Xy4OlzIkVp.jpg", "order": 40}, {"name": "Vincent Laresca", "character": "Big Guy #1", "id": 1983, "credit_id": "52fe4317c3a36847f80397b7", "cast_id": 50, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 41}, {"name": "Benny Nieves", "character": "Big Guy #2", "id": 155540, "credit_id": "52fe4317c3a36847f80397af", "cast_id": 48, "profile_path": "/aafp0jHi58Bb8rD21In9Jy9YYxB.jpg", "order": 42}, {"name": "Franci Leary", "character": "Babs Coleman", "id": 1089398, "credit_id": "52fe4317c3a36847f80397b3", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Pamela Gray", "character": "Mrs. Diana Barzoon", "id": 1207046, "credit_id": "52fe4317c3a36847f80397bb", "cast_id": 51, "profile_path": null, "order": 44}], "directors": [{"name": "Taylor Hackford", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039709", "profile_path": "/heZfdghufTV3t3ayrWvIuiP1jvb.jpg", "id": 18596}], "vote_average": 6.9, "runtime": 144}, "26390": {"poster_path": "/aHqBZEgPhX6uwJ6e6s53fuJqWmQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29536299, "overview": "Brooklyn's Finest takes place within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects in the NYPD's sixty-fifth precinct. Three policemen struggle with the sometimes fine line between right and wrong.", "video": false, "id": 26390, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Brooklyn's Finest", "tagline": "This is War. This is Brooklyn.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1210042", "adult": false, "backdrop_path": "/iNuvbrHGNtrUwlm48u4KnQhhMKp.jpg", "production_companies": [{"name": "Thunder Road Productions", "id": 4654}, {"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Films", "id": 925}, {"name": "Langley Productions", "id": 2435}, {"name": "Fuqua Films", "id": 8151}], "release_date": "2009-01-16", "popularity": 0.333096592080786, "original_title": "Brooklyn's Finest", "budget": 17000000, "cast": [{"name": "Richard Gere", "character": "Eddie Dugan", "id": 1205, "credit_id": "52fe44ffc3a368484e042dab", "cast_id": 3, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Don Cheadle", "character": "Tango", "id": 1896, "credit_id": "52fe44ffc3a368484e042daf", "cast_id": 4, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 1}, {"name": "Ethan Hawke", "character": "Sal", "id": 569, "credit_id": "52fe44ffc3a368484e042db3", "cast_id": 5, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 2}, {"name": "Wesley Snipes", "character": "Caz", "id": 10814, "credit_id": "52fe44ffc3a368484e042db7", "cast_id": 6, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 3}, {"name": "Vincent D'Onofrio", "character": "Bobby 'Carlo' Powers", "id": 7132, "credit_id": "52fe44ffc3a368484e042dbb", "cast_id": 7, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 4}, {"name": "Ellen Barkin", "character": "Agent Smith", "id": 6913, "credit_id": "52fe44ffc3a368484e042dbf", "cast_id": 8, "profile_path": "/rjo0S9uJ9pIEZenvYVCEdqcR8Qu.jpg", "order": 5}, {"name": "Michael Kenneth Williams", "character": "Red", "id": 39390, "credit_id": "52fe44ffc3a368484e042dc3", "cast_id": 9, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 6}, {"name": "Shannon Kane", "character": "Chantel", "id": 145145, "credit_id": "52fe44ffc3a368484e042dc7", "cast_id": 10, "profile_path": "/6wrQoQvxDy8lTTfRveLPVBoYTJW.jpg", "order": 7}, {"name": "Br\u00edan F. O'Byrne", "character": "Ronny Rosario", "id": 31713, "credit_id": "52fe4500c3a368484e042e6b", "cast_id": 43, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 8}, {"name": "Will Patton", "character": "Lt. Bill Hobarts", "id": 883, "credit_id": "52fe44ffc3a368484e042e43", "cast_id": 32, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 9}, {"name": "Michael Kenneth Williams", "character": "Red", "id": 39390, "credit_id": "52fe4500c3a368484e042e6f", "cast_id": 44, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 10}, {"name": "Lili Taylor", "character": "Angela", "id": 3127, "credit_id": "52fe44ffc3a368484e042e47", "cast_id": 34, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 11}, {"name": "Wass Stevens", "character": "Det. Patrick Leary", "id": 19490, "credit_id": "52fe44ffc3a368484e042e4b", "cast_id": 35, "profile_path": "/p9nrtklmbqBlpbnHMru246LXW4J.jpg", "order": 12}, {"name": "Armando Riesco", "character": "Det. George Montress", "id": 19497, "credit_id": "52fe44ffc3a368484e042e4f", "cast_id": 36, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 13}, {"name": "Wade Allain-Marcus", "character": "C-Rayz", "id": 60488, "credit_id": "52fe44ffc3a368484e042e53", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Logan Marshall-Green", "character": "Melvin Panton", "id": 130253, "credit_id": "52fe44ffc3a368484e042e57", "cast_id": 38, "profile_path": "/bLVRAvM9WnTVQ42Nm4jVR0IpOIk.jpg", "order": 15}, {"name": "Jesse Williams", "character": "E. Quinlan", "id": 210695, "credit_id": "52fe44ffc3a368484e042e5b", "cast_id": 39, "profile_path": "/9nOsvWaXwKzHVeSbb7N6YzhAzty.jpg", "order": 16}, {"name": "Hassan Johnson", "character": "Beamer", "id": 91508, "credit_id": "52fe44ffc3a368484e042e5f", "cast_id": 40, "profile_path": "/1HqCWMiN5KkSMmkWCTmfzix4Gyx.jpg", "order": 17}, {"name": "Jas Anderson", "character": "K. Rock", "id": 1117437, "credit_id": "52fe44ffc3a368484e042e63", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "John D'Leo", "character": "Vinny", "id": 1056523, "credit_id": "52fe4500c3a368484e042e67", "cast_id": 42, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 19}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a368484e042da1", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.2, "runtime": 133}, "1817": {"poster_path": "/xIaUpPok8WFnr79EAvgtGsIaJzV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97837138, "overview": "A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding.", "video": false, "id": 1817, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Phone Booth", "tagline": "No options. No lies. No fear. No deals. Just keep talking.", "vote_count": 238, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0183649", "adult": false, "backdrop_path": "/14Jb0vOZKxbkyx5h0cQ8uj0sD3V.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2002-09-09", "popularity": 0.703670455262877, "original_title": "Phone Booth", "budget": 13000000, "cast": [{"name": "Colin Farrell", "character": "Stu Shepard", "id": 72466, "credit_id": "52fe4317c3a36847f803997b", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Kiefer Sutherland", "character": "Der Anrufer", "id": 2628, "credit_id": "52fe4317c3a36847f803997f", "cast_id": 2, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Captain Ed Ramey", "id": 2178, "credit_id": "52fe4317c3a36847f8039983", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Radha Mitchell", "character": "Kelly Shephard", "id": 8329, "credit_id": "52fe4317c3a36847f8039987", "cast_id": 4, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 3}, {"name": "Katie Holmes", "character": "Pamela McFadden", "id": 3897, "credit_id": "52fe4317c3a36847f803998b", "cast_id": 5, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 4}, {"name": "Paula Jai Parker", "character": "Felicia", "id": 45245, "credit_id": "52fe4317c3a36847f80399b3", "cast_id": 12, "profile_path": "/hCFVh90DDs7bhv6qEhepXeJvFtY.jpg", "order": 5}, {"name": "Domenick Lombardozzi", "character": "Wyatt", "id": 17941, "credit_id": "52fe4317c3a36847f80399b7", "cast_id": 13, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 6}, {"name": "James MacDonald", "character": "Negotiator", "id": 1188456, "credit_id": "52fe4317c3a36847f80399bb", "cast_id": 14, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 7}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039991", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.4, "runtime": 81}, "10010": {"poster_path": "/msZSTfilEF6hw47HTuf5AeXAO8R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An old female friend of Kenai needs his help on a quest, much to Koda's growing consternation.", "video": false, "id": 10010, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Brother Bear 2", "tagline": "", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8QuwV9WoZTs4Nnz6GMIISP2WblF.jpg", "poster_path": "/eWjO8diAZlCUWT9mXUJeQCVSICg.jpg", "id": 96472, "name": "Brother Bear Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465925", "adult": false, "backdrop_path": "/zhMiJmPuX2o2bbXWWZNUgVbw3OM.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2006-08-28", "popularity": 1.47706395887849, "original_title": "Brother Bear 2", "budget": 0, "cast": [{"name": "Mandy Moore", "character": "Nita", "id": 16855, "credit_id": "52fe43069251416c750008b3", "cast_id": 9, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Jeremy Suarez", "character": "Koda", "id": 61959, "credit_id": "52fe43069251416c750008b7", "cast_id": 10, "profile_path": "/ktydBVBvNUlmfJj56aYwJ0O31JN.jpg", "order": 1}, {"name": "Dave Thomas", "character": "Tuke", "id": 61961, "credit_id": "52fe43069251416c750008bb", "cast_id": 11, "profile_path": "/qWQ330du0Uu1Q8wAq9hMoYmOJ5Q.jpg", "order": 2}, {"name": "Rick Moranis", "character": "Rutt", "id": 8872, "credit_id": "52fe43069251416c750008c5", "cast_id": 14, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 3}, {"name": "Catherine O'Hara", "character": "Kata", "id": 11514, "credit_id": "52fe43069251416c750008c9", "cast_id": 15, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 4}, {"name": "Andrea Martin", "character": "Anda", "id": 8263, "credit_id": "52fe43069251416c750008cd", "cast_id": 16, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 5}, {"name": "Wanda Sykes", "character": "Innoko", "id": 27102, "credit_id": "52fe43069251416c750008d1", "cast_id": 17, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 6}, {"name": "Kathy Najimy", "character": "Aunt Taqqiq", "id": 11074, "credit_id": "52fe43069251416c750008d5", "cast_id": 18, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 7}, {"name": "Wendie Malick", "character": "Aunt Siqiniq", "id": 61980, "credit_id": "52fe43069251416c750008d9", "cast_id": 19, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 8}, {"name": "Jim Cummings", "character": "Bering / Chilkoot", "id": 12077, "credit_id": "52fe43069251416c750008dd", "cast_id": 20, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}, {"name": "Jeff Bennett", "character": "Atka", "id": 34982, "credit_id": "52fe43069251416c750008e1", "cast_id": 21, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 10}, {"name": "Jessie Flower", "character": "Young Nita", "id": 61304, "credit_id": "52fe43069251416c750008e5", "cast_id": 22, "profile_path": "/wjzL0uaBcLSYf9UxIxas6S4N3iU.jpg", "order": 11}, {"name": "Michael Clarke Duncan", "character": "Tug", "id": 61981, "credit_id": "52fe43069251416c750008e9", "cast_id": 23, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 12}, {"name": "Jack Weber", "character": "Young Kenai", "id": 61982, "credit_id": "52fe43069251416c750008ed", "cast_id": 24, "profile_path": "/ihB0zJhasgt0ffa8SZQuPd5afqS.jpg", "order": 13}, {"name": "Jason Marsden", "character": "Additional Voices", "id": 61983, "credit_id": "52fe43069251416c750008f1", "cast_id": 25, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 14}, {"name": "Krista Swan", "character": "Additional Voices", "id": 60740, "credit_id": "52fe43069251416c750008f5", "cast_id": 26, "profile_path": "/68PBwfhz9uhBJJdKqOSH73Gyh47.jpg", "order": 15}, {"name": "Tress MacNeille", "character": "Hoonah", "id": 34983, "credit_id": "52fe43069251416c750008f9", "cast_id": 27, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 16}, {"name": "Benjamin Bryan", "character": "Additional Voices", "id": 61984, "credit_id": "52fe43069251416c750008fd", "cast_id": 28, "profile_path": "/sYPZ6N40zPnJDYy9PxsNfUhJ1TK.jpg", "order": 17}, {"name": "Olivier Baroux", "character": "Muche", "id": 61985, "credit_id": "52fe43069251416c75000901", "cast_id": 29, "profile_path": "/l0FJjUavfybVl1W3ENVWitlyg9V.jpg", "order": 18}, {"name": "Patrick Dempsey", "character": "Kenai", "id": 18352, "credit_id": "52fe43069251416c75000905", "cast_id": 30, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 19}], "directors": [{"name": "Ben Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe43069251416c75000897", "profile_path": null, "id": 61970}], "vote_average": 6.2, "runtime": 75}, "139567": {"poster_path": "/2F0Y4l7uXIGfDMtfuq2k6b2744w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A fireman takes an unexpected course of action when a man whom he's been ordered to testify against, after being held up at a local convenience store, threatens him.", "video": false, "id": 139567, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fire with Fire", "tagline": "Revenge has its own set of rules.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1925431", "adult": false, "backdrop_path": "/cG9WcaappGSq8Yxd90rQ5Gwioyi.jpg", "production_companies": [{"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Industry Entertainment", "id": 376}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Mandalay Vision", "id": 6667}, {"name": "Paradox Entertainment", "id": 6819}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment", "id": 31832}], "release_date": "2012-08-31", "popularity": 0.845092321207316, "original_title": "Fire With Fire", "budget": 20000000, "cast": [{"name": "Bruce Willis", "character": "Mike Cella", "id": 62, "credit_id": "52fe4c67c3a368484e1b68f1", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Jeremy Coleman", "id": 19536, "credit_id": "52fe4c67c3a368484e1b68f5", "cast_id": 2, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Talia Durham", "id": 5916, "credit_id": "52fe4c67c3a368484e1b68f9", "cast_id": 3, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Neil Hagan", "id": 7132, "credit_id": "52fe4c67c3a368484e1b68fd", "cast_id": 4, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "50 Cent", "character": "Emilio", "id": 62644, "credit_id": "52fe4c67c3a368484e1b6901", "cast_id": 5, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 4}, {"name": "Richard Schiff", "character": "Harold Gethers", "id": 31028, "credit_id": "52fe4c67c3a368484e1b6905", "cast_id": 6, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 5}, {"name": "Vinnie Jones", "character": "Boyd", "id": 980, "credit_id": "52fe4c67c3a368484e1b6909", "cast_id": 7, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 6}, {"name": "James Lesure", "character": "Craig", "id": 155743, "credit_id": "52fe4c67c3a368484e1b690d", "cast_id": 8, "profile_path": "/nDpg0Muebx45YUDM7ROywgVVxeZ.jpg", "order": 7}, {"name": "Quinton Jackson", "character": "Wallace", "id": 586935, "credit_id": "52fe4c67c3a368484e1b6911", "cast_id": 9, "profile_path": "/nhzVZm9QBWQ98HPiCV7PvrCoqFR.jpg", "order": 8}, {"name": "Arie Verveen", "character": "Darren", "id": 91612, "credit_id": "52fe4c67c3a368484e1b6915", "cast_id": 10, "profile_path": "/yh3mOsRXENzK3JJljFlSgX7p6QL.jpg", "order": 9}, {"name": "Bonnie Somerville", "character": "Karen Westlake", "id": 66579, "credit_id": "52fe4c67c3a368484e1b6919", "cast_id": 11, "profile_path": "/a1tjNEX8Tm5WupP9vEdRnpW2s45.jpg", "order": 10}, {"name": "Nnamdi Asomugha", "character": "Sherrod", "id": 213058, "credit_id": "52fe4c67c3a368484e1b691d", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Kevin Dunn", "character": "Agent Mullens", "id": 14721, "credit_id": "52fe4c67c3a368484e1b6921", "cast_id": 13, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 12}, {"name": "Danny Epper", "character": "Sean", "id": 574380, "credit_id": "52fe4c67c3a368484e1b6925", "cast_id": 14, "profile_path": "/51tZpRQ7ECagFytqbdrGMcAW7T.jpg", "order": 13}, {"name": "Scott A. Martin", "character": "Kane", "id": 1055739, "credit_id": "550bffd092514146a0003417", "cast_id": 71, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 14}], "directors": [{"name": "David Barrett", "department": "Directing", "job": "Director", "credit_id": "52fe4c67c3a368484e1b6973", "profile_path": "/ghWOXqNnJIYKH1GDkym7YyUx882.jpg", "id": 9556}], "vote_average": 5.9, "runtime": 97}, "10014": {"poster_path": "/seEMZxo6bhHWbWPNcBQfsMAk39F.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29999213, "overview": "A new family moves into the house on Elm Street, and before long, the kids are again having nightmares about deceased child murderer Freddy Krueger. This time, Freddy attempts to possess a teenage boy to cause havoc in the real world, and can only be overcome if the boy's sweetheart can master her fear.", "video": false, "id": 10014, "genres": [{"id": 27, "name": "Horror"}], "title": "A Nightmare on Elm Street Part 2: Freddy's Revenge", "tagline": "Someone is coming back to Elm Street!", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089686", "adult": false, "backdrop_path": "/kErjd7tTO9NROwFcETyyLj4ZOGH.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Smart Egg Pictures", "id": 1531}], "release_date": "1985-11-01", "popularity": 0.750617798878697, "original_title": "A Nightmare on Elm Street Part 2: Freddy's Revenge", "budget": 3000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe43079251416c75000bab", "cast_id": 6, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Mark Patton", "character": "Jesse Walsh", "id": 62018, "credit_id": "52fe43079251416c75000b97", "cast_id": 1, "profile_path": "/dYJlmN0bvk0IRqDE8Nrxa4cam3A.jpg", "order": 1}, {"name": "Kim Myers", "character": "Lisa Webber", "id": 55958, "credit_id": "52fe43079251416c75000b9b", "cast_id": 2, "profile_path": "/y6G5XZg2YknJLZETlnNF196cKlJ.jpg", "order": 2}, {"name": "Robert Rusler", "character": "Ron Grady", "id": 52306, "credit_id": "52fe43079251416c75000b9f", "cast_id": 3, "profile_path": "/4LHRIK6ffdUax43WcSqdIZTMh2b.jpg", "order": 3}, {"name": "Clu Gulager", "character": "Ken Walsh", "id": 62019, "credit_id": "52fe43079251416c75000ba3", "cast_id": 4, "profile_path": "/bjmydNfO5v5LocgBGTmCcBSSe6A.jpg", "order": 4}, {"name": "Hope Lange", "character": "Cheryl Walsh", "id": 3382, "credit_id": "52fe43079251416c75000ba7", "cast_id": 5, "profile_path": "/4gJtYaS4iAPBgTYVNIMlspAzGSA.jpg", "order": 5}, {"name": "Marshall Bell", "character": "Coach Schneider", "id": 3041, "credit_id": "52fe43079251416c75000bf1", "cast_id": 19, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 6}, {"name": "Melinda O. Fee", "character": "Mrs. Webber", "id": 197303, "credit_id": "52fe43079251416c75000bf5", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tom McFadden", "character": "Mr. Webber", "id": 58494, "credit_id": "52fe43079251416c75000bf9", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Sydney Walsh", "character": "Kerry", "id": 156925, "credit_id": "52fe43079251416c75000bfd", "cast_id": 22, "profile_path": "/vHYKW1QgoL0wGP6YktK7jZnq0t.jpg", "order": 9}, {"name": "Edward Blackoff", "character": "Biology Teacher", "id": 52146, "credit_id": "52fe43079251416c75000c01", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Christie Clark", "character": "Angela Walsh", "id": 102716, "credit_id": "52fe43079251416c75000c05", "cast_id": 24, "profile_path": "/eHAaKQ4G0mH5ltUCUtZ5Qvr8HRQ.jpg", "order": 11}, {"name": "Lyman Ward", "character": "Mr. Grady", "id": 90198, "credit_id": "52fe43079251416c75000c09", "cast_id": 25, "profile_path": "/lL1dAVbBcSU4O2wD4XZcsmOCcRZ.jpg", "order": 12}, {"name": "Donna Bruce", "character": "Mrs. Grady", "id": 553731, "credit_id": "52fe43079251416c75000c0d", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Hart Sprager", "character": "Teacher", "id": 158696, "credit_id": "52fe43079251416c75000c11", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Allison Barron", "character": "Girl on Bus", "id": 92841, "credit_id": "52fe43079251416c75000c15", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "JoAnn Willette", "character": "Girl on Bus", "id": 158739, "credit_id": "52fe43089251416c75000c19", "cast_id": 29, "profile_path": "/42lp2GFnIqDeJajHmzXiIWt0MMT.jpg", "order": 16}, {"name": "Steve Eastin", "character": "Policeman", "id": 9276, "credit_id": "52fe43089251416c75000c1d", "cast_id": 30, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 17}, {"name": "Brian Wimmer", "character": "Do-Gooder", "id": 113785, "credit_id": "52fe43089251416c75000c21", "cast_id": 31, "profile_path": "/lQkOZGj8JJAmD9Zvpt3S9roxd3p.jpg", "order": 18}, {"name": "Robert Chaskin", "character": "Bar-B-Que Boy", "id": 553732, "credit_id": "52fe43089251416c75000c25", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Kerry Remsen", "character": "Girlfriend", "id": 101301, "credit_id": "52fe43089251416c75000c29", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Kimberly Lynn", "character": "Patty", "id": 553733, "credit_id": "52fe43089251416c75000c2d", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Steven Smith", "character": "Victim", "id": 160356, "credit_id": "52fe43089251416c75000c31", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Jonathan Hart", "character": "Spike", "id": 553734, "credit_id": "52fe43089251416c75000c35", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Tom Tangen", "character": "Victim (uncredited)", "id": 553735, "credit_id": "52fe43089251416c75000c39", "cast_id": 37, "profile_path": "/3IhcC4FmrgBtcCZpl85amgVaVRy.jpg", "order": 24}], "directors": [{"name": "Jack Sholder", "department": "Directing", "job": "Director", "credit_id": "52fe43079251416c75000bb1", "profile_path": "/9EOF314wM4MrBZE9MV7q0BMgcOy.jpg", "id": 62020}], "vote_average": 5.6, "runtime": 87}, "198277": {"poster_path": "/og7KVMqGTFaCNPmGVetxtR30Q0z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Gretta's celebrity boyfriend breaks up with her after a long-term relationship, leaving the singer to find success on her own. With the help of record producer, Dan and hip-hop celebrity, Trouble Gum, Gretta strives to fulfil her musical ambitions.", "video": false, "id": 198277, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Begin Again", "tagline": "You're only as strong as your next move.", "vote_count": 331, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1980929", "adult": false, "backdrop_path": "/1jJVDNz5gan9WYuspnKAHwks39e.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Sycamore Pictures", "id": 14319}, {"name": "Apatow Productions", "id": 10105}, {"name": "Likely Story", "id": 1785}], "release_date": "2014-06-27", "popularity": 2.41663663090419, "original_title": "Begin Again", "budget": 0, "cast": [{"name": "Mark Ruffalo", "character": "Dan", "id": 103, "credit_id": "52fe4d769251416c91116e79", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Gretta", "id": 116, "credit_id": "52fe4d769251416c91116e75", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Adam Levine", "character": "Dave", "id": 217371, "credit_id": "52fe4d769251416c91116e71", "cast_id": 1, "profile_path": "/oHNBWCQRBlcEHKuRpID9lRQNMej.jpg", "order": 2}, {"name": "Hailee Steinfeld", "character": "Violet", "id": 130640, "credit_id": "52fe4d769251416c91116e81", "cast_id": 5, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 3}, {"name": "Catherine Keener", "character": "Miriam", "id": 2229, "credit_id": "52fe4d769251416c91116e91", "cast_id": 8, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 4}, {"name": "James Corden", "character": "Steve", "id": 55466, "credit_id": "52fe4d769251416c91116e95", "cast_id": 9, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 5}, {"name": "Mos Def", "character": "Saul", "id": 4239, "credit_id": "52fe4d769251416c91116e99", "cast_id": 10, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 6}, {"name": "Aya Cash", "character": "Jenny", "id": 133451, "credit_id": "52fe4d769251416c91116e9d", "cast_id": 11, "profile_path": "/ihZqcurACgV6NDy95pkwQ29OawL.jpg", "order": 8}, {"name": "Maddie Corman", "character": "Phillis", "id": 121757, "credit_id": "52fe4d769251416c91116ea1", "cast_id": 12, "profile_path": "/358wSv3l3FPhNTcpcalQvRVXQB4.jpg", "order": 9}, {"name": "Karen Pittman", "character": "Business Woman", "id": 1398879, "credit_id": "54d4c7b392514173cf0088c3", "cast_id": 22, "profile_path": "/vuorMu0MlWLa3nyH2lI9MjoIDov.jpg", "order": 10}, {"name": "Paul Romero", "character": "Bartender", "id": 172053, "credit_id": "54d4cd69c3a3686ac8012d14", "cast_id": 23, "profile_path": "/cZVudMb95XcHgWjv4bv7fxYAMSA.jpg", "order": 11}, {"name": "Andrew Sellon", "character": "Christian Father", "id": 1423807, "credit_id": "54d4cec9c3a36871c100b090", "cast_id": 24, "profile_path": "/JC1VQmBN1WeelF2EI1cbCMlzTI.jpg", "order": 12}, {"name": "Ed Renninger", "character": "Barman", "id": 1423810, "credit_id": "54d4d000c3a368616e0131f2", "cast_id": 25, "profile_path": "/pHkyuwaSklPrzkAG5amFCdzq9Cp.jpg", "order": 13}, {"name": "Eric Burton", "character": "Singer Songwriter 2", "id": 1423812, "credit_id": "54d4d27b9251413fcd013f65", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Marco Assante", "character": "Marco", "id": 60635, "credit_id": "54d4d3e49251413fc1014255", "cast_id": 27, "profile_path": "/sLCbh6L0V7ybcci2ckyXcyqHnXA.jpg", "order": 15}, {"name": "Mary Catherine Garrison", "character": "Jill", "id": 171795, "credit_id": "54d4d5049251417a0400b101", "cast_id": 28, "profile_path": "/3JHGktZVwV7qwZzliQb0v11xclh.jpg", "order": 16}, {"name": "Jen Jacob", "character": "Dave Fangirl", "id": 1423823, "credit_id": "54d4d5f9c3a368746900a940", "cast_id": 29, "profile_path": "/xAXZBoibGgdRIKPvWz0RdK4gkLA.jpg", "order": 17}, {"name": "Rob Morrow", "character": "CEO", "id": 52602, "credit_id": "54d4d6c5c3a3686ac40136db", "cast_id": 30, "profile_path": "/pddqfHQ7AV5I2EUIzz32GFp5m5Q.jpg", "order": 18}, {"name": "Jennifer Li Jackson", "character": "Mim", "id": 1341800, "credit_id": "54d4d85e925141560a000025", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Ian Brodsky", "character": "Malcolm", "id": 1423829, "credit_id": "54d4d89a92514109ba013bba", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Shannon Maree Walsh", "character": "Rachel", "id": 1423837, "credit_id": "54d4da33c3a368746900a9d3", "cast_id": 33, "profile_path": "/ikcBqcvAUFHZ3neIqoXIJBsYq53.jpg", "order": 21}, {"name": "David Abeles", "character": "Glen", "id": 1423882, "credit_id": "54d4f549c3a3686abc013f47", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Ann McGowan", "character": "Ballet Teacher", "id": 1373351, "credit_id": "54d4f5d49251413fca01442c", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Ron Voz", "character": "Butler", "id": 1423884, "credit_id": "54d4f634c3a3686ac201319c", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Cee Lo Green", "character": "Troublegum", "id": 1216901, "credit_id": "54d4fbebc3a3685d5700991f", "cast_id": 37, "profile_path": "/uPsrwCsqiOYXSDcEHKyXgs8OGRJ.jpg", "order": 25}, {"name": "Kena Onyenjekwe", "character": "Troublegum Posse 1 - Rappa DD", "id": 1423901, "credit_id": "54d4fc4cc3a368616e01370b", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Harvey Morris", "character": "Troublegum Posse 2 - Phat Jimmy", "id": 1423906, "credit_id": "54d4fd309251413fca0144ee", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Terry Lewis", "character": "Troublegum Crew Member - Benson", "id": 54605, "credit_id": "54d5006492514109ba013f9e", "cast_id": 40, "profile_path": "/sEMLJpUjmT2tbtT0t1n2DDH0DzE.jpg", "order": 28}, {"name": "Colin Love", "character": "Singing Basketball Player", "id": 1423913, "credit_id": "54d5018ac3a3686ac201327b", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jimmy Palumbo", "character": "Guy Shouting from Window", "id": 157059, "credit_id": "54d502c5c3a368746900ad61", "cast_id": 42, "profile_path": "/lUC10q4XgIUBlVAacIXh2FDtizr.jpg", "order": 30}, {"name": "Simon Delaney", "character": "Lawyer", "id": 163545, "credit_id": "54d503fdc3a3685d570099d8", "cast_id": 43, "profile_path": "/x74QVhesWL0nM0EFIosl6awxcIu.jpg", "order": 31}, {"name": "Danielle Brisebois", "character": "Singer", "id": 1216966, "credit_id": "54d50587c3a368616e013800", "cast_id": 44, "profile_path": "/wPAl4rUyl3r8PkcBlr2iU6WZk5A.jpg", "order": 32}, {"name": "Keen Ruffalo", "character": "Keen", "id": 1424191, "credit_id": "54d6061ec3a3683b89001d4a", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Melissa Maria Gonzalez", "character": "Chris", "id": 1424193, "credit_id": "54d606ad92514171600020bd", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Nicholas Daniel Gonzalez", "character": "Zach", "id": 1424201, "credit_id": "54d607d0c3a368439a001dc6", "cast_id": 47, "profile_path": "/533v8XEFnBGwPuG5tLdfLpjSUwv.jpg", "order": 35}, {"name": "David Pendleton", "character": "Homeless Man", "id": 1375271, "credit_id": "54d60b50c3a3683b99001dd8", "cast_id": 48, "profile_path": "/cONIPh53zQnoOMOLOspZiOMqC1o.jpg", "order": 36}, {"name": "Madison Love", "character": "Singer Songwriter 1", "id": 1424207, "credit_id": "54d60ce49251415f75001c79", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Joanna Mauer", "character": "On Camera Musician", "id": 1424208, "credit_id": "54d60d459251416ba1001da7", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Erik Detusch", "character": "On Camera Musician", "id": 1424209, "credit_id": "54d60d73c3a3683b920022be", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Rich Mercurio", "character": "On Camera Musician", "id": 1424210, "credit_id": "54d60e42c3a3683b89001e2a", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Emilie Cardinaux", "character": "On Camera Musician", "id": 1424211, "credit_id": "54d60e909251416ba8001e3e", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Curtis Fowlkes", "character": "On Camera Musician", "id": 1424213, "credit_id": "54d6106a9251416b9f001fef", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Emily Yarbourgh", "character": "On Camera Musician", "id": 1424214, "credit_id": "54d6113d9251415f75001ce7", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Erin Benin", "character": "On Camera Musician", "id": 1424215, "credit_id": "54d61179925141758c001dd1", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Alexis Sykes", "character": "On Camera Musician", "id": 1424216, "credit_id": "54d611afc3a3683ba00023ac", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Julia Bruskin", "character": "On Camera Musician", "id": 1424217, "credit_id": "54d611dec3a3683b95001fad", "cast_id": 58, "profile_path": null, "order": 46}], "directors": [{"name": "John Carney", "department": "Directing", "job": "Director", "credit_id": "52fe4d769251416c91116e87", "profile_path": null, "id": 45117}], "vote_average": 7.3, "runtime": 104}, "1824": {"poster_path": "/ztMUIJV2nDN0tJ24aW7pjMvTxVV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196482882, "overview": "Henry is a player skilled at seducing women. But when this veterinarian meets Lucy, a girl with a quirky problem when it comes to total recall, he realizes it's possible to fall in love all over again\u2026and again, and again. That's because the delightful Lucy has no short-term memory, so Henry must woo her day after day until he finally sweeps her off her feet.", "video": false, "id": 1824, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "50 First Dates", "tagline": "Imagine having to win over the girl of your dreams... every friggin' day.", "vote_count": 617, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0343660", "adult": false, "backdrop_path": "/eabV1BbZgghMJSOmjZ1EQ987Zuh.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Anonymous Content", "id": 10039}, {"name": "Flower Films (II)", "id": 19813}], "release_date": "2004-02-12", "popularity": 2.13792584164645, "original_title": "50 First Dates", "budget": 75000000, "cast": [{"name": "Adam Sandler", "character": "Henry Roth", "id": 19292, "credit_id": "52fe4318c3a36847f8039b37", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Lucy Whitmore", "id": 69597, "credit_id": "52fe4318c3a36847f8039b3b", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Rob Schneider", "character": "Ula", "id": 60949, "credit_id": "52fe4318c3a36847f8039b3f", "cast_id": 3, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 2}, {"name": "Sean Astin", "character": "Doug Whitmore", "id": 1328, "credit_id": "52fe4318c3a36847f8039b43", "cast_id": 4, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 3}, {"name": "Lusia Strus", "character": "Alexa", "id": 19293, "credit_id": "52fe4318c3a36847f8039b47", "cast_id": 5, "profile_path": "/qbXs16CG5qIyEc2CSfigwZSxDte.jpg", "order": 4}, {"name": "Dan Aykroyd", "character": "Dr. Keats", "id": 707, "credit_id": "52fe4318c3a36847f8039b4b", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 5}, {"name": "Blake Clark", "character": "Marlin Whitmore", "id": 21485, "credit_id": "52fe4318c3a36847f8039b73", "cast_id": 13, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 6}, {"name": "Amy Hill", "character": "Sue", "id": 59401, "credit_id": "52fe4318c3a36847f8039b77", "cast_id": 14, "profile_path": "/uVJnyfKqN5Ex2ueoWhEIgMY6q6Q.jpg", "order": 7}, {"name": "Allen Covert", "character": "Ten Second Tom", "id": 20818, "credit_id": "52fe4318c3a36847f8039b7b", "cast_id": 15, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 8}, {"name": "Maya Rudolph", "character": "Stacy", "id": 52792, "credit_id": "52fe4318c3a36847f8039b7f", "cast_id": 16, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 9}, {"name": "Pomaika'i Brown", "character": "Nick", "id": 1080056, "credit_id": "52fe4318c3a36847f8039b83", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Joe Nakashima", "character": "Old Hawaiian Man", "id": 1080057, "credit_id": "52fe4318c3a36847f8039b87", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Jonathan Loughran", "character": "Jennifer", "id": 58477, "credit_id": "52fe4318c3a36847f8039b8b", "cast_id": 19, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 12}, {"name": "Peter Dante", "character": "Security Guard", "id": 20819, "credit_id": "52fe4318c3a36847f8039b8f", "cast_id": 20, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 13}, {"name": "Dom Magwili", "character": "Security Guard", "id": 116271, "credit_id": "52fe4318c3a36847f8039b93", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039b51", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.5, "runtime": 99}, "1825": {"poster_path": "/rnAxGFrFaHemdjjFDQDtjOzV8z5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16057580, "overview": "Sylvester Stallone stars as hard-luck big-rig trucker Lincoln Hawk and takes us under the glaring Las Vegas lights for all the boisterous action of the World Armwrestling Championship. Relying on wits and willpower, Hawk tries to rebuild his life by capturing the first-place prize money - and the love of the son he abandoned years earlier into the keeping of his his rich, ruthless father-in-law.", "video": false, "id": 1825, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Over the Top", "tagline": "Some fight for money... Some fight for glory... He's fighting for his son's love.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093692", "adult": false, "backdrop_path": "/30Ey6s4eAn8968g0rIMY8vLqxTo.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Cannon Group", "id": 1444}, {"name": "Golan-Globus", "id": 1445}], "release_date": "1987-02-13", "popularity": 0.555075973205159, "original_title": "Over the Top", "budget": 25000000, "cast": [{"name": "Sylvester Stallone", "character": "Lincoln Hawk", "id": 16483, "credit_id": "52fe4318c3a36847f8039bd1", "cast_id": 4, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Robert Loggia", "character": "Jason Cutler", "id": 1162, "credit_id": "52fe4318c3a36847f8039bff", "cast_id": 12, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 1}, {"name": "Rick Zumwalt", "character": "Bob Hurley", "id": 33011, "credit_id": "52fe4318c3a36847f8039c03", "cast_id": 13, "profile_path": "/iRfrVDXSGQDJITh7yQxGYgbmjEC.jpg", "order": 2}, {"name": "David Mendenhall", "character": "Michael Cutler/Michael Hawk", "id": 33012, "credit_id": "52fe4318c3a36847f8039c07", "cast_id": 14, "profile_path": "/eBrFbqMdoM9mdqlK0uuw4X7Gua6.jpg", "order": 3}, {"name": "Bruce Way", "character": "John Grizzly", "id": 33013, "credit_id": "52fe4318c3a36847f8039c0b", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Sam Scarber", "character": "Harry Bosco", "id": 33014, "credit_id": "52fe4318c3a36847f8039c0f", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Chris McCarty", "character": "Tim Salanger", "id": 33015, "credit_id": "52fe4318c3a36847f8039c13", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Terry Funk", "character": "Ruker", "id": 33016, "credit_id": "52fe4318c3a36847f8039c17", "cast_id": 18, "profile_path": "/1sv31PtOnQmCMKizK2rEfplv4jf.jpg", "order": 7}, {"name": "Allan Graf", "character": "Collins", "id": 33017, "credit_id": "52fe4318c3a36847f8039c1b", "cast_id": 19, "profile_path": "/kY2U92OoIr21UGGPHgDf8b4rIHZ.jpg", "order": 8}], "directors": [{"name": "Menahem Golan", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039bc1", "profile_path": "/2nHxQ9j1ExcESFnUpMwotbnWJIK.jpg", "id": 33008}], "vote_average": 5.9, "runtime": 93}, "203739": {"poster_path": "/xxjEjVN0YKLuPUK9dnK97ov4tSk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rose Hathaway is a Dhampir, half human/vampire, guardians of the Moroi, peaceful, mortal vampires living discretely within our world. Her legacy is to protect the Moroi from bloodthirsty, immortal Vampires, the Strigoi. This is her story.", "video": false, "id": 203739, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Vampire Academy", "tagline": "They Suck at School", "vote_count": 156, "homepage": "http://va-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1686821", "adult": false, "backdrop_path": "/xWjzZc437xnQmRxpUKWwESVqPCr.jpg", "production_companies": [{"name": "Angry Films", "id": 12087}, {"name": "Kintop Pictures", "id": 1490}, {"name": "Preger Entertainment", "id": 15682}], "release_date": "2014-02-07", "popularity": 0.799670697034165, "original_title": "Vampire Academy", "budget": 0, "cast": [{"name": "Zoey Deutch", "character": "Rose Hathaway", "id": 1059597, "credit_id": "52fe4ce5c3a368484e1cba61", "cast_id": 3, "profile_path": "/9R7EQhJ4phu4FWdLhCzEobfNnXf.jpg", "order": 0}, {"name": "Lucy Fry", "character": "Lissa Dragomir", "id": 1192759, "credit_id": "52fe4ce5c3a368484e1cba7d", "cast_id": 10, "profile_path": "/yKviaSDVMi8Sw0zpF8mFE9FrFMy.jpg", "order": 1}, {"name": "Danila Kozlovskiy", "character": "Dimitri Belikov", "id": 562730, "credit_id": "52fe4ce5c3a368484e1cba75", "cast_id": 8, "profile_path": "/5vKHEMaAQL7UAWDmvFNI8hq761b.jpg", "order": 2}, {"name": "Gabriel Byrne", "character": "Victor Dashkov", "id": 5168, "credit_id": "52fe4ce5c3a368484e1cba71", "cast_id": 7, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 3}, {"name": "Sarah Hyland", "character": "Natalie Dashkov", "id": 91351, "credit_id": "52fe4ce5c3a368484e1cba59", "cast_id": 1, "profile_path": "/x0Gz56NHgCAn080RZGRFkPi02S.jpg", "order": 4}, {"name": "Olga Kurylenko", "character": "Kirova", "id": 18182, "credit_id": "52fe4ce5c3a368484e1cba5d", "cast_id": 2, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 5}, {"name": "Joely Richardson", "character": "Queen Tatiana", "id": 20810, "credit_id": "52fe4ce5c3a368484e1cba65", "cast_id": 4, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 6}, {"name": "Claire Foy", "character": "Sonya Karp", "id": 120932, "credit_id": "52fe4ce5c3a368484e1cba69", "cast_id": 5, "profile_path": "/cE6R6hil91rzKg3yj71czNsuK8K.jpg", "order": 7}, {"name": "Cameron Monaghan", "character": "Mason Ashford", "id": 37089, "credit_id": "52fe4ce5c3a368484e1cba6d", "cast_id": 6, "profile_path": "/rmzBfqHRUnJjXCL6l7VH8FmVpZu.jpg", "order": 8}, {"name": "Sami Gayle", "character": "Mia Rinalidi", "id": 506085, "credit_id": "52fe4ce5c3a368484e1cba79", "cast_id": 9, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 9}, {"name": "Ashley Charles", "character": "Jesse Zeklos", "id": 1192760, "credit_id": "52fe4ce5c3a368484e1cba81", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Dominic Sherwood", "character": "Christian Ozera", "id": 1192761, "credit_id": "52fe4ce5c3a368484e1cba85", "cast_id": 12, "profile_path": null, "order": 11}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe4ce5c3a368484e1cba8b", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.7, "runtime": 104}, "10020": {"poster_path": "/vGyhh8XB1AnDhBc4ssxrrz6ihdX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 377350553, "overview": "Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.", "video": false, "id": 10020, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Beauty and the Beast", "tagline": "The most beautiful love story ever told.", "vote_count": 1000, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/beauty/?cmp=dcom_VAN_WDSHE_BEA_van_batb__Extl", "belongs_to_collection": {"backdrop_path": "/mWBTUCk4JKNjU3EiBvz3TEpNU11.jpg", "poster_path": "/mIzZxNAT1GIFaEoPYdJsUKC23Oj.jpg", "id": 153010, "name": "Beauty and the Beast Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101414", "adult": false, "backdrop_path": "/q8OEC91NiJOpghWI9hXtC27nFX0.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners IV", "id": 10282}], "release_date": "1991-11-12", "popularity": 3.00361256685994, "original_title": "Beauty and the Beast", "budget": 25000000, "cast": [{"name": "Paige O'Hara", "character": "Belle (voice)", "id": 62050, "credit_id": "52fe43099251416c75000faf", "cast_id": 10, "profile_path": "/98Ba48wIcnOci21yvkWfNiMmni0.jpg", "order": 0}, {"name": "Robby Benson", "character": "Beast (voice)", "id": 15048, "credit_id": "52fe43099251416c75000fb3", "cast_id": 11, "profile_path": "/wUqGufwQwXn3Y6rFdtZ80HqLDPm.jpg", "order": 1}, {"name": "Richard White", "character": "Gaston (voice)", "id": 108055, "credit_id": "52fe43099251416c75000fb7", "cast_id": 12, "profile_path": "/iiX9ytEkszJGOwcZ0qFVClfjzeJ.jpg", "order": 2}, {"name": "Jerry Orbach", "character": "Lumiere (voice)", "id": 725, "credit_id": "52fe43099251416c75000fbb", "cast_id": 13, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 3}, {"name": "David Ogden Stiers", "character": "Cogsworth / Narrator (voice)", "id": 28010, "credit_id": "52fe43099251416c75000fbf", "cast_id": 14, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 4}, {"name": "Angela Lansbury", "character": "Mrs. Potts (voice)", "id": 14730, "credit_id": "52fe43099251416c75000fc3", "cast_id": 15, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 5}, {"name": "Bradley Pierce", "character": "Chip (voice)", "id": 145151, "credit_id": "52fe43099251416c75000fc7", "cast_id": 16, "profile_path": "/rukciCbfBZWWvyJELZqxQWzSqnS.jpg", "order": 6}, {"name": "Rex Everhart", "character": "Maurice (voice)", "id": 170970, "credit_id": "52fe43099251416c75000fcb", "cast_id": 17, "profile_path": "/pW7GyLaz8QrGpVjnC5vvJVjxTqQ.jpg", "order": 7}, {"name": "Jesse Corti", "character": "Lefou (voice)", "id": 75599, "credit_id": "52fe43099251416c75000fcf", "cast_id": 18, "profile_path": "/eiZnJIqQ6JTzusiMF1GnhDjVWdw.jpg", "order": 8}, {"name": "Hal Smith", "character": "Philippe (voice)", "id": 1058259, "credit_id": "52fe43099251416c75000fd3", "cast_id": 19, "profile_path": "/uHJLtfYDSks8fvf6Jjn5Mi8Tnw1.jpg", "order": 9}, {"name": "Jo Anne Worley", "character": "Wardrobe (voice)", "id": 166994, "credit_id": "52fe43099251416c75000fd7", "cast_id": 20, "profile_path": "/9jSk7SOO4uRmJwGcIybEEfb7ORL.jpg", "order": 10}, {"name": "Mary Kay Bergman", "character": "Babette (voice)", "id": 30695, "credit_id": "52fe43099251416c75000fdb", "cast_id": 21, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 11}, {"name": "Brian Cummings", "character": "Stove (voice)", "id": 81842, "credit_id": "52fe43099251416c75000fdf", "cast_id": 22, "profile_path": "/wVos4sRGG1NvDqKDlbUWCD2dMMa.jpg", "order": 12}, {"name": "Alvin Epstein", "character": "Bookseller (voice)", "id": 170898, "credit_id": "52fe43099251416c75000fe3", "cast_id": 23, "profile_path": "/3JRnkuxqYgO7rc9sHUJTWgmxKAI.jpg", "order": 13}, {"name": "Tony Jay", "character": "Monsieur D'Arque (voice)", "id": 65598, "credit_id": "52fe43099251416c75000fe7", "cast_id": 24, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 14}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe43099251416c75000f7b", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}, {"name": "Kirk Wise", "department": "Directing", "job": "Director", "credit_id": "52fe43099251416c75000f81", "profile_path": "/aoh7wnHk3F1HdOUBLI5Yfwd8rnN.jpg", "id": 62048}], "vote_average": 7.0, "runtime": 84}, "1830": {"poster_path": "/nwPUI9WlYtDmE5VO6eEFCfrNXWl.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24127895, "overview": "Yuri Orlov is a globetrotting arms dealer. Through some of the deadliest war zones, Yuri struggles to stay one step ahead of a relentless Interpol agent, his business rivals, even some of his customers who include many of the world's most notorious dictators. Finally, Yuri must also face his own conscience.", "video": false, "id": 1830, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Lord of War", "tagline": "Where there's a will, there's a weapon", "vote_count": 424, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}], "imdb_id": "tt0399295", "adult": false, "backdrop_path": "/fjt8ZNuDH64GxgluSj52UMNkolY.jpg", "production_companies": [{"name": "Endgame Entertainment", "id": 1205}, {"name": "Entertainment Manufacturing Company", "id": 1206}, {"name": "Ascendant Pictures", "id": 1204}, {"name": "Saturn Films", "id": 831}, {"name": "Rising Star", "id": 1208}, {"name": "Copag V", "id": 21938}], "release_date": "2005-09-16", "popularity": 0.639319882967164, "original_title": "Lord of War", "budget": 42000000, "cast": [{"name": "Nicolas Cage", "character": "Yuri Orlov", "id": 2963, "credit_id": "52fe4318c3a36847f8039d57", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Bridget Moynahan", "character": "Ava Fontaine Orlov", "id": 18354, "credit_id": "52fe4318c3a36847f8039d5b", "cast_id": 2, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 1}, {"name": "Jared Leto", "character": "Vitaly Orlov", "id": 7499, "credit_id": "52fe4318c3a36847f8039d5f", "cast_id": 3, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 2}, {"name": "Ethan Hawke", "character": "Jack Valentine", "id": 569, "credit_id": "52fe4318c3a36847f8039d63", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 3}, {"name": "Eamonn Walker", "character": "Andre Baptiste Sr.", "id": 19299, "credit_id": "52fe4318c3a36847f8039d67", "cast_id": 5, "profile_path": "/9vuNtg6IGlUNFOurojwkYThKnvd.jpg", "order": 4}, {"name": "Ian Holm", "character": "Simeon Weisz", "id": 65, "credit_id": "52fe4318c3a36847f8039d6b", "cast_id": 6, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 5}, {"name": "Sammi Rotibi", "character": "Andre Baptiste Jr.", "id": 19300, "credit_id": "52fe4318c3a36847f8039d6f", "cast_id": 7, "profile_path": "/yjktr2trahEBQmuLsCRMzgoDFvh.jpg", "order": 6}, {"name": "Yevgeni Lazarev", "character": "General Dmitri Orlov", "id": 19301, "credit_id": "52fe4318c3a36847f8039d73", "cast_id": 8, "profile_path": "/hLtyGhAuEeJc8qPjQDZswIMpYDd.jpg", "order": 7}, {"name": "Tanit Phoenix", "character": "Candy", "id": 37769, "credit_id": "52fe4318c3a36847f8039dcb", "cast_id": 24, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 8}, {"name": "Shake Tukhmanyan", "character": "Irina Orlov", "id": 1127469, "credit_id": "5397123a0e0a266dce009536", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Jean-Pierre Nshanian", "character": "Anatoly Orlov", "id": 1329526, "credit_id": "5397124d0e0a266dc5009266", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Jared Burke", "character": "Ukrainian Mobster", "id": 1329527, "credit_id": "539712620e0a266dca0095df", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Eric Uys", "character": "Ukrainian Mobster", "id": 1329528, "credit_id": "539712770e0a266db4009666", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "David Shumbris", "character": "Ukrainian Mobster", "id": 34541, "credit_id": "5397128b0e0a266dbb009668", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Stewart Morgan", "character": "Ukrainian Mobster", "id": 1329531, "credit_id": "5397129b0e0a266dc2009384", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Jasper Lenz", "character": "Gregor", "id": 1329532, "credit_id": "539712b10e0a266dbb00966e", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Stephen Gregory", "character": "Eli Kurtzman", "id": 8019, "credit_id": "539712c70e0a266dbf009563", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Kobus Marx", "character": "Boris", "id": 1329534, "credit_id": "539712d50e0a266dbf009568", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Stephan De Abreu", "character": "Liev", "id": 1329536, "credit_id": "539712e80e0a266dbb009678", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Jeremy Crutchley", "character": "Arms Fair Salesman", "id": 20304, "credit_id": "539712f60e0a266dca0095f2", "cast_id": 37, "profile_path": "/17aHojCYOmUyoyuPgLd4di0fdvm.jpg", "order": 19}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039d79", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 6.8, "runtime": 122}, "1832": {"poster_path": "/zuJJAEvyiZiddzRx7JRGNDzjP07.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30651422, "overview": "The latest battle in the eternal war between Good and Evil has come to New Jersey in the late, late 20th Century. Angels, demons, apostles and prophets (of a sort) walk among the cynics and innocents of America and duke it out for the fate of humankind.", "video": false, "id": 1832, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Dogma", "tagline": "It can be Hell getting into Heaven", "vote_count": 238, "homepage": "http://www.dogma-movie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120655", "adult": false, "backdrop_path": "/hyVHeKqCDwZdvgeFvAFZD2pDcFy.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Lions Gate", "id": 6644}], "release_date": "1999-11-12", "popularity": 1.03298821543656, "original_title": "Dogma", "budget": 10000000, "cast": [{"name": "Ben Affleck", "character": "Bartleby", "id": 880, "credit_id": "52fe4318c3a36847f8039e93", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Matt Damon", "character": "Loki", "id": 1892, "credit_id": "52fe4318c3a36847f8039ef7", "cast_id": 25, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Linda Fiorentino", "character": "Bethany Sloane", "id": 9625, "credit_id": "52fe4318c3a36847f8039e97", "cast_id": 3, "profile_path": "/16aVa4evfjWiAnM6srkLhWYJlpZ.jpg", "order": 2}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe4318c3a36847f8039e9b", "cast_id": 4, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 3}, {"name": "Chris Rock", "character": "Rufus", "id": 2632, "credit_id": "52fe4318c3a36847f8039e9f", "cast_id": 5, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Metatron", "id": 4566, "credit_id": "52fe4318c3a36847f8039ea3", "cast_id": 6, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Jason Lee", "character": "Azrael", "id": 11662, "credit_id": "52fe4318c3a36847f8039ea7", "cast_id": 7, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 6}, {"name": "Salma Hayek", "character": "Serendipity", "id": 3136, "credit_id": "52fe4318c3a36847f8039eab", "cast_id": 8, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 7}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe4318c3a36847f8039eaf", "cast_id": 9, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 8}, {"name": "Alanis Morissette", "character": "God", "id": 131024, "credit_id": "52fe4318c3a36847f8039ed7", "cast_id": 17, "profile_path": "/oQJzaTPbP1ffOv7NCLlF8Gswqwt.jpg", "order": 9}, {"name": "Bud Cort", "character": "John Doe Jersey", "id": 4971, "credit_id": "52fe4318c3a36847f8039edb", "cast_id": 18, "profile_path": "/kI7N8eeX8TBWBGFQCZWfKZGbrZ6.jpg", "order": 10}, {"name": "George Carlin", "character": "Cardinal Ignatius Glick", "id": 15903, "credit_id": "52fe4318c3a36847f8039edf", "cast_id": 19, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 11}, {"name": "Brian O'Halloran", "character": "Grant Hicks", "id": 23629, "credit_id": "52fe4318c3a36847f8039ee3", "cast_id": 20, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 12}, {"name": "Janeane Garofalo", "character": "Liz", "id": 21197, "credit_id": "52fe4318c3a36847f8039ee7", "cast_id": 21, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 13}, {"name": "Walt Flanagan", "character": "Protestor #2", "id": 23633, "credit_id": "52fe4318c3a36847f8039eeb", "cast_id": 22, "profile_path": "/mu1THhSjnBbOxd9VxaVQQ3qvf2U.jpg", "order": 14}, {"name": "Scott Mosier", "character": "Smooching Seaman", "id": 20503, "credit_id": "52fe4318c3a36847f8039eef", "cast_id": 23, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 15}, {"name": "Dwight Ewell", "character": "Kane", "id": 20283, "credit_id": "52fe4318c3a36847f8039ef3", "cast_id": 24, "profile_path": null, "order": 16}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039eb5", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.7, "runtime": 130}, "11228": {"poster_path": "/ubVmAxPbvjgY8w2MCoFKFkMXt1A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159212469, "overview": "When an explosion seals off a commuter tunnel, the survivors are faced with toxic fumes, fires and the impending collapse of the tunnel. Their only hope lies in the hands of Kit Latura (Stallone), a former Emergency Medical Services chief who is haunted by a tragic past. As the walls cave in and the tunnel fills up with water, Latura risks his own life to save others and prevent further disaster.", "video": false, "id": 11228, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Daylight", "tagline": "No air. No escape. No time.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116040", "adult": false, "backdrop_path": "/ne5tEv0x7bj8LvSCHhPv0qOhRk4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1996-12-06", "popularity": 0.718968202919476, "original_title": "Daylight", "budget": 80000000, "cast": [{"name": "Sylvester Stallone", "character": "Kit Latura", "id": 16483, "credit_id": "52fe44159251416c75028529", "cast_id": 9, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Amy Brenneman", "character": "Madelyne Thompson", "id": 15851, "credit_id": "52fe44159251416c7502852d", "cast_id": 10, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Roy Nord", "id": 110, "credit_id": "52fe44159251416c75028531", "cast_id": 11, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Dan Hedaya", "character": "Frank Kraft", "id": 6486, "credit_id": "52fe44159251416c75028535", "cast_id": 12, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 3}, {"name": "Jay O. Sanders", "character": "Steven Crighton", "id": 6067, "credit_id": "54975e389251417a810048ae", "cast_id": 16, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 4}, {"name": "Karen Young", "character": "Sarah Crighton", "id": 16215, "credit_id": "54975e46c3a3686ae3006df8", "cast_id": 17, "profile_path": "/pMZYr5eKpXB3PpXq2XRfIUsonHr.jpg", "order": 5}, {"name": "Danielle Harris", "character": "Ashley Crighton", "id": 21320, "credit_id": "53cbf6000e0a265dea002625", "cast_id": 15, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 6}, {"name": "Claire Bloom", "character": "Eleanor Trilling", "id": 29545, "credit_id": "54975e58c3a3686ae3006dfa", "cast_id": 18, "profile_path": "/4x0Cfh1g8apqOPio8AJx9oUV9mK.jpg", "order": 7}, {"name": "Colin Fox", "character": "Roger Trilling", "id": 137161, "credit_id": "54975e849251416e1e006569", "cast_id": 21, "profile_path": "/11YtrErPyJYGnGRWjMlJopV2tnT.jpg", "order": 8}, {"name": "Barry Newman", "character": "Norman Bassett", "id": 27860, "credit_id": "54975e669251417315001e85", "cast_id": 19, "profile_path": "/vAl1PUv9PDy5WMfBLXmhRUhcqVO.jpg", "order": 9}, {"name": "Stan Shaw", "character": "George Tyrell", "id": 16936, "credit_id": "54975e759251413f75005107", "cast_id": 20, "profile_path": "/2KUPUQQFmc8Zyzf16uaiYmVrNvX.jpg", "order": 10}, {"name": "Vanessa Bell Calloway", "character": "Grace Calloway", "id": 100653, "credit_id": "52fe44159251416c7502853d", "cast_id": 14, "profile_path": "/gEn2Iy2aCzNb3E0iZzNyAs2Buf3.jpg", "order": 11}, {"name": "Sage Stallone", "character": "Vincent", "id": 16660, "credit_id": "54975e9a9251417315001e91", "cast_id": 22, "profile_path": "/fwC0O3sWbz8ruIpN3pQ6reViZ2G.jpg", "order": 12}, {"name": "Renoly Santiago", "character": "Mikey", "id": 28863, "credit_id": "54975ea792514130fc0056cc", "cast_id": 23, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 13}, {"name": "Trina McGee-Davis", "character": "LaTonya", "id": 1213343, "credit_id": "54975ebf9251413f7500511e", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Marcello Thedford", "character": "Kadeem", "id": 59300, "credit_id": "54975ec99251416e1e006579", "cast_id": 25, "profile_path": "/r6AOyQWIi7Zi1WQUXjF8T2HafIR.jpg", "order": 15}, {"name": "Mark Rolston", "character": "Chief Dennis Wilson", "id": 6576, "credit_id": "54975ee8c3a3681153004bea", "cast_id": 26, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 16}, {"name": "Lee Oakes", "character": "Gem Thief #3", "id": 59075, "credit_id": "52fe44159251416c75028539", "cast_id": 13, "profile_path": null, "order": 17}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe44159251416c750284fb", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.7, "runtime": 115}, "13700": {"poster_path": "/1KFa2Mzzn2DMlC95eJwRYgRsHI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103951461, "overview": "The Little Piece of Heaven family farm is about to go under and outlaw cattle rustler Alameda Slim sets his sights on it. Three dairy cows -- tough Maggie, leader Mrs. Calloway, and na\u00efve Grace -- team up to save the farm. Along with ambitious stallion Buck, helpful rabbit Lucky Jack, and other helpful barnyard friends, the cows set out to capture Alameda Slim and collect the reward money.", "video": false, "id": 13700, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 37, "name": "Western"}, {"id": 10751, "name": "Family"}], "title": "Home on the Range", "tagline": "Bust a Moo.", "vote_count": 67, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/homeontherange", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0299172", "adult": false, "backdrop_path": "/lMeGuxgmzUVTRfLHekt41iWexip.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2004-04-02", "popularity": 1.51387360894224, "original_title": "Home on the Range", "budget": 110000000, "cast": [{"name": "Randy Quaid", "character": "Alameda Slim", "id": 1811, "credit_id": "52fe458d9251416c7505a86b", "cast_id": 18, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Wesley", "id": 884, "credit_id": "52fe458d9251416c7505a82d", "cast_id": 4, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "Judi Dench", "character": "Mrs. Caloway", "id": 5309, "credit_id": "52fe458d9251416c7505a839", "cast_id": 7, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 2}, {"name": "Cuba Gooding Jr.", "character": "Buck", "id": 9777, "credit_id": "52fe458d9251416c7505a845", "cast_id": 11, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 3}, {"name": "G. W. Bailey", "character": "Rusty, the Dog", "id": 27237, "credit_id": "52fe458d9251416c7505a825", "cast_id": 2, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 4}, {"name": "Bobby Block", "character": "Piggy", "id": 12078, "credit_id": "52fe458d9251416c7505a829", "cast_id": 3, "profile_path": null, "order": 5}, {"name": "Carole Cook", "character": "Pearl Gesner", "id": 41730, "credit_id": "52fe458d9251416c7505a831", "cast_id": 5, "profile_path": "/nqOpt2uNlPgFsRx9FTJ0p1SIYFe.jpg", "order": 6}, {"name": "Charlie Dell", "character": "Ollie, the Pig", "id": 62846, "credit_id": "52fe458d9251416c7505a835", "cast_id": 6, "profile_path": "/z0JgZxazJAVlHxLYXWM8eUZlOk8.jpg", "order": 7}, {"name": "Charles Dennis", "character": "Rico", "id": 43800, "credit_id": "52fe458d9251416c7505a83d", "cast_id": 8, "profile_path": "/nbg2PzCmL08GdlV5BiNxmtunHok.jpg", "order": 8}, {"name": "Marshall Efron", "character": "Larry, the Duck", "id": 9224, "credit_id": "52fe458d9251416c7505a841", "cast_id": 9, "profile_path": null, "order": 9}, {"name": "Charles Haid", "character": "Lucky Jack", "id": 69791, "credit_id": "52fe458d9251416c7505a849", "cast_id": 12, "profile_path": "/Wna0bUskkYJAMFY5UiJMUbPG93.jpg", "order": 10}, {"name": "Jennifer Tilly", "character": "Grace", "id": 7906, "credit_id": "52fe458d9251416c7505a86f", "cast_id": 19, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 11}, {"name": "Joe Flaherty", "character": "Jeb, the Goat", "id": 59196, "credit_id": "52fe458e9251416c7505a873", "cast_id": 20, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 12}, {"name": "Roseanne Barr", "character": "Maggie", "id": 46393, "credit_id": "52fe458e9251416c7505a877", "cast_id": 21, "profile_path": "/p36LMNfQssOQb5vUyYJRBEhQsaR.jpg", "order": 13}], "directors": [{"name": "Will Finn", "department": "Directing", "job": "Director", "credit_id": "52fe458d9251416c7505a84f", "profile_path": null, "id": 70287}, {"name": "John Sanford", "department": "Directing", "job": "Director", "credit_id": "52fe458d9251416c7505a855", "profile_path": null, "id": 80671}], "vote_average": 5.6, "runtime": 76}, "10027": {"poster_path": "/hfyZgFOjZAk10YlsRl9krBMuQ9K.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50871113, "overview": "Raised as a slave, Danny is used to fighting for his survival. In fact, his \"master,\" Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.", "video": false, "id": 10027, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Unleashed", "tagline": "Serve No Master", "vote_count": 128, "homepage": "http://www.universalstudiosentertainment.com/unleashed/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0342258", "adult": false, "backdrop_path": "/4GpEAgs61X8olLUlawswTtp1vnA.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}], "release_date": "2005-09-01", "popularity": 0.664228841591174, "original_title": "Unleashed", "budget": 45000000, "cast": [{"name": "Jet Li", "character": "Danny", "id": 1336, "credit_id": "52fe430b9251416c75001557", "cast_id": 14, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Sam", "id": 192, "credit_id": "52fe430b9251416c75001561", "cast_id": 16, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Bob Hoskins", "character": "Bart", "id": 382, "credit_id": "52fe430b9251416c75001565", "cast_id": 17, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 2}, {"name": "Vincent Regan", "character": "Raffles", "id": 9831, "credit_id": "52fe430b9251416c75001569", "cast_id": 18, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 3}, {"name": "Dylan Brown", "character": "Lefty", "id": 8032, "credit_id": "52fe430b9251416c7500156d", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Tamer Hassan", "character": "Georgie", "id": 39660, "credit_id": "52fe430b9251416c75001571", "cast_id": 20, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 5}, {"name": "Phyllida Law", "character": "Distinguished Lady", "id": 17787, "credit_id": "52fe430b9251416c75001575", "cast_id": 21, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 6}, {"name": "Michael Jenn", "character": "Wyeth", "id": 62106, "credit_id": "52fe430b9251416c75001583", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Carole Ann Wilson", "character": "Maddy", "id": 62107, "credit_id": "52fe430b9251416c7500157f", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Kerry Condon", "character": "Victoria", "id": 62105, "credit_id": "52fe430b9251416c75001587", "cast_id": 26, "profile_path": "/i2wb0N7m1JkUJRcfBcVYmIpExAa.jpg", "order": 9}, {"name": "Mike Lambert", "character": "The Stranger", "id": 62108, "credit_id": "52fe430b9251416c7500158b", "cast_id": 27, "profile_path": "/p0faU9sHhe2n73HPTG5cmEkk5fo.jpg", "order": 10}, {"name": "Puthirith Chou", "character": "Teen Danny", "id": 62110, "credit_id": "52fe430b9251416c7500158f", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Jaclyn Tze Wey", "character": "Danny's Mother", "id": 62109, "credit_id": "52fe430b9251416c75001593", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Georgina Chapman", "character": "Floozy 1", "id": 41547, "credit_id": "52fe430b9251416c75001597", "cast_id": 30, "profile_path": "/nSdhtkVAJ2N0YWWviLS42mMktwC.jpg", "order": 13}, {"name": "Tony Theng", "character": "Little Danny", "id": 62111, "credit_id": "52fe430b9251416c7500159b", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Owen Lay", "character": "Baby Danny", "id": 62112, "credit_id": "52fe430b9251416c7500159f", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Andy Beckwith", "character": "Righty", "id": 1123, "credit_id": "52fe430b9251416c750015a3", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Franck Xie Cheng", "character": "Baby Danny", "id": 62113, "credit_id": "52fe430b9251416c750015a7", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Michael Webber", "character": "Boxing Boss", "id": 62115, "credit_id": "52fe430b9251416c750015ab", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Danielle Louise Harley", "character": "Floozy 2", "id": 62114, "credit_id": "52fe430b9251416c750015af", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Affif Ben Badra", "character": "Tough man", "id": 54807, "credit_id": "52fe430b9251416c750015b9", "cast_id": 38, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 20}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe430b9251416c7500151d", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 6.5, "runtime": 103}, "10028": {"poster_path": "/nC4W7JYMoqFxRBx2HR2MYDYq8Lr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62646763, "overview": "Honey Daniels (Jessica Alba) dreams of making a name for herself as a hip-hop choreographer. When she's not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she's hit the jackpot when she meets a hotshot director (David Moscow) who casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.", "video": false, "id": 10028, "genres": [{"id": 10402, "name": "Music"}], "title": "Honey", "tagline": "Her dream. Her terms", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8u2eChLz2ttOuaUPWHkH6XBUBC.jpg", "poster_path": "/eOEDDWsZmW2M9TKiQK9Nk5MjDe6.jpg", "id": 144689, "name": "Honey Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0322589", "adult": false, "backdrop_path": "/5EIo0RhsNbi7FkFkcf34nL2Z8Ch.jpg", "production_companies": [{"name": "NuAmerica Entertainment", "id": 41963}, {"name": "Universal Pictures", "id": 33}, {"name": "Marc Platt Productions", "id": 2527}], "release_date": "2003-11-24", "popularity": 0.749534419613765, "original_title": "Honey", "budget": 25000000, "cast": [{"name": "Jessica Alba", "character": "Honey Daniels", "id": 56731, "credit_id": "52fe430b9251416c75001657", "cast_id": 16, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Mekhi Phifer", "character": "Chaz", "id": 327, "credit_id": "52fe430b9251416c7500165b", "cast_id": 17, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 1}, {"name": "Joy Bryant", "character": "Gina", "id": 52847, "credit_id": "52fe430b9251416c75001665", "cast_id": 19, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 2}, {"name": "Lil Romeo", "character": "Benny", "id": 62122, "credit_id": "52fe430c9251416c75001669", "cast_id": 20, "profile_path": "/zjhdnMWW1vK2rQwXCLRihsJRBGB.jpg", "order": 3}, {"name": "David Moscow", "character": "Michael Ellis", "id": 62123, "credit_id": "52fe430c9251416c7500166d", "cast_id": 21, "profile_path": "/shlyKoI2kEAcgX0AE5qFEFSrLfv.jpg", "order": 4}, {"name": "Zachary Isaiah Williams", "character": "Raymond", "id": 62124, "credit_id": "52fe430c9251416c75001671", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Missy Elliott", "character": "Herself", "id": 62125, "credit_id": "52fe430c9251416c7500167b", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Anthony Sherwood", "character": "Mr. Daniels", "id": 62126, "credit_id": "52fe430c9251416c7500167f", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Lonette McKee", "character": "Mrs. Daniels", "id": 62127, "credit_id": "52fe430c9251416c75001683", "cast_id": 26, "profile_path": "/yBHA5X3AZKHOtex7chwo2mQQ5Vr.jpg", "order": 8}, {"name": "Maestro", "character": "B.B.", "id": 62128, "credit_id": "52fe430c9251416c75001687", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Judi Embden", "character": "Mrs. Strom", "id": 62129, "credit_id": "52fe430c9251416c7500168b", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Alison Sealy-Smith", "character": "Marisol", "id": 60042, "credit_id": "52fe430c9251416c75001693", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Scott Neil", "character": "Lenny", "id": 62131, "credit_id": "52fe430c9251416c75001697", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Sarah Francis", "character": "Letitia", "id": 62133, "credit_id": "52fe430c9251416c7500169b", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Jull Weber", "character": "Joey", "id": 62132, "credit_id": "52fe430c9251416c7500169f", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Kevin Duhaney", "character": "Otis", "id": 62134, "credit_id": "52fe430c9251416c750016a3", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Brandi Ward", "character": "Choreographer", "id": 62135, "credit_id": "52fe430c9251416c750016a7", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Fonzworth Bentley", "character": "Barber", "id": 62136, "credit_id": "52fe430c9251416c750016ab", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Tracy Dawson", "character": "Assistant Director", "id": 62137, "credit_id": "52fe430c9251416c750016af", "cast_id": 37, "profile_path": "/wBjuo2btfVYjUQIqP5l6wxkZ6VR.jpg", "order": 19}, {"name": "Laurieann Gibson", "character": "Katrina", "id": 557794, "credit_id": "549a02d4925141312900063e", "cast_id": 40, "profile_path": "/7n3twYIasf9gzHPZMuFzBdmrM1e.jpg", "order": 20}], "directors": [{"name": "Bille Woodruff", "department": "Directing", "job": "Director", "credit_id": "52fe430b9251416c75001617", "profile_path": "/oIVFAXUtuUU0QnTtmb7ONoBd6lb.jpg", "id": 62116}], "vote_average": 5.7, "runtime": 94}, "306": {"poster_path": "/tw9gAhqQcBFX0X0XfVbWqUsmzoU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119208989, "overview": "Detroit cop Axel Foley is back in sunny Southern California in the third installment of the comedic fish-out-of-water Beverly Hills Cop series. On the trail of two murderers, Axel again teams up with Los Angeles cop Billy Rosewood. Soon, they discover that an amusement park is being used as a front for a massive counterfeiting ring -- and it's run by the same gang that shot Billy's boss.", "video": false, "id": 306, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Beverly Hills Cop III", "tagline": "In for the ride of his life!", "vote_count": 125, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lhZQuT76B9YcxZIudXZMhhWCKcl.jpg", "poster_path": "/ty7zsl0xkVDUlibYkFUjRAYUkvE.jpg", "id": 85861, "name": "Beverly Hills Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109254", "adult": false, "backdrop_path": "/8zmlsQINxvU5ly3Qn3K1dtAAPGu.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Eddie Murphy Productions", "id": 30}], "release_date": "1994-05-24", "popularity": 0.737076951281153, "original_title": "Beverly Hills Cop III", "budget": 50000000, "cast": [{"name": "Eddie Murphy", "character": "Axel Foley", "id": 776, "credit_id": "52fe4235c3a36847f800c2e7", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Judge Reinhold", "character": "Billy Rosewood", "id": 777, "credit_id": "52fe4235c3a36847f800c2fb", "cast_id": 7, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 1}, {"name": "H\u00e9ctor Elizondo", "character": "Jon Flint", "id": 1210, "credit_id": "52fe4235c3a36847f800c2eb", "cast_id": 2, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 2}, {"name": "George Lucas", "character": "Disappointed Man", "id": 1, "credit_id": "52fe4235c3a36847f800c2f7", "cast_id": 5, "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "order": 3}, {"name": "Bronson Pinchot", "character": "Serge", "id": 4689, "credit_id": "52fe4235c3a36847f800c2ef", "cast_id": 3, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 4}, {"name": "Joe Dante", "character": "Jailer", "id": 4600, "credit_id": "52fe4235c3a36847f800c2f3", "cast_id": 4, "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "order": 5}, {"name": "Jon Tenney", "character": "Levine", "id": 4602, "credit_id": "52fe4235c3a36847f800c2ff", "cast_id": 8, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 6}, {"name": "Joey Travolta", "character": "Giolito", "id": 4603, "credit_id": "52fe4235c3a36847f800c303", "cast_id": 9, "profile_path": "/7wNm5XjMTbMM7EoetlXPfEw6T8x.jpg", "order": 7}, {"name": "Theresa Randle", "character": "Janice", "id": 4604, "credit_id": "52fe4235c3a36847f800c307", "cast_id": 10, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 8}, {"name": "Eugene Collier", "character": "Leppert", "id": 4605, "credit_id": "52fe4235c3a36847f800c30b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jimmy Ortega", "character": "Rondell", "id": 4606, "credit_id": "52fe4235c3a36847f800c30f", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Ousaun Elam", "character": "Pederson", "id": 4607, "credit_id": "52fe4235c3a36847f800c313", "cast_id": 13, "profile_path": "/wYr28o3cuqZ3iLCMWBMwjhrA05o.jpg", "order": 11}, {"name": "Ray Lykins", "character": "Nixon", "id": 4608, "credit_id": "52fe4235c3a36847f800c317", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Tim Gilbert", "character": "McKee", "id": 4609, "credit_id": "52fe4235c3a36847f800c31b", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Gilbert R. Hill", "character": "Insp. Douglas Todd", "id": 787, "credit_id": "52fe4235c3a36847f800c361", "cast_id": 27, "profile_path": "/9kgwJTs4hT9oJuRiC4zj4zxwn68.jpg", "order": 14}, {"name": "Arthur Hiller", "character": "Bar Patron", "id": 133259, "credit_id": "52fe4235c3a36847f800c371", "cast_id": 30, "profile_path": "/irrSj7cAn2ByM7hhu2emkMdFOai.jpg", "order": 15}, {"name": "Timothy Carnhart", "character": "Ellis Dewald", "id": 1264849, "credit_id": "52fe4235c3a36847f800c375", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Timothy Carhart", "character": "Ellis Dewald", "id": 17396, "credit_id": "52fe4235c3a36847f800c379", "cast_id": 32, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 17}, {"name": "John Saxon", "character": "Orrin Sanderson", "id": 11163, "credit_id": "52fe4235c3a36847f800c37d", "cast_id": 33, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 18}, {"name": "Ray Harryhausen", "character": "Bar Patron", "id": 66758, "credit_id": "52fe4235c3a36847f800c381", "cast_id": 34, "profile_path": "/nxsvHuPnWQBFuGOq6Gs100kh74R.jpg", "order": 19}, {"name": "Peter Medak", "character": "Man at Corner", "id": 21377, "credit_id": "52fe4235c3a36847f800c385", "cast_id": 35, "profile_path": null, "order": 20}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe4235c3a36847f800c321", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 5.8, "runtime": 104}, "10030": {"poster_path": "/kmVYfdfjL9RqzAJHJziX7boVZrL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53821887, "overview": "Cursed since childhood, dentist Charlie Kagan (Dane Cook) cannot find the right woman. Even worse, he learns that each of his ex-girlfriends finds true love with the man she meets after her relationship with him ends. Hearing of Charlie's reputation as a good-luck charm, women from all over line up for a quick tryst. But when Charlie meets the woman of his dreams (Jessica Alba), he must find a way to break the curse or risk losing her to the next man she meets.", "video": false, "id": 10030, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Good Luck Chuck", "tagline": "He has to break his curse before she breaks his heart.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452625", "adult": false, "backdrop_path": "/79nRnl5Qbkwfz0Wdw8dVwF4wZEC.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Karz Entertainment", "id": 4194}], "release_date": "2007-06-13", "popularity": 1.46333199818748, "original_title": "Good Luck Chuck", "budget": 25000000, "cast": [{"name": "Jessica Alba", "character": "Cam Wexler", "id": 56731, "credit_id": "52fe430c9251416c75001893", "cast_id": 42, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Dane Cook", "character": "Dr. Charlie Logan", "id": 31837, "credit_id": "52fe430c9251416c75001897", "cast_id": 43, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Dr. Stu Kaminsky", "id": 58873, "credit_id": "52fe430c9251416c7500189b", "cast_id": 44, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Lonny Ross", "character": "Joe", "id": 205300, "credit_id": "52fe430c9251416c7500189f", "cast_id": 45, "profile_path": "/qFUZ40vwlKMt330iewR8nmRILER.jpg", "order": 3}, {"name": "Ellia English", "character": "Reba", "id": 62171, "credit_id": "52fe430c9251416c750018a3", "cast_id": 46, "profile_path": "/iuT91E3ei6ECBWyTVNlL59aJ6sC.jpg", "order": 4}, {"name": "Chelan Simmons", "character": "Carol", "id": 27775, "credit_id": "52fe430c9251416c750018a7", "cast_id": 47, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 5}, {"name": "Chiara Zanni", "character": "Bride", "id": 33053, "credit_id": "52fe430c9251416c750018ab", "cast_id": 48, "profile_path": "/vN7xP1ICUctUflNdYv4QskbuALn.jpg", "order": 6}, {"name": "Carrie Fleming", "character": "Dirty Talker", "id": 58908, "credit_id": "52fe430c9251416c750018af", "cast_id": 49, "profile_path": "/chrDx14YRApEwzD05kdWSjpZSIE.jpg", "order": 7}], "directors": [{"name": "Mark Helfrich", "department": "Directing", "job": "Director", "credit_id": "52fe430c9251416c7500184d", "profile_path": null, "id": 1098}], "vote_average": 5.7, "runtime": 101}, "10032": {"poster_path": "/sGX7RUBhf9i8nI3cfGHISDnAna0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6086508, "overview": "Taj Mahal Badalandabad leaves Coolidge College behind for the halls of Camford University in England, where he looks to continue his education, and teach an uptight student how to make the most out of her academic career.", "video": false, "id": 10032, "genres": [{"id": 35, "name": "Comedy"}], "title": "Van Wilder 2: The Rise of Taj", "tagline": "The Legend is Growing.", "vote_count": 90, "homepage": "http://www.riseoftaj.com/", "belongs_to_collection": {"backdrop_path": "/fvkR1SE5i1qUVHM5vewIf9jozcu.jpg", "poster_path": "/phxBWdWHgtUpns0XU33JbBKMgsx.jpg", "id": 43220, "name": "National Lampoon\u2019s Van Wilder Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480271", "adult": false, "backdrop_path": "/jOkaQNu8LKEHGY3x804SEO3Gs6f.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2006-12-01", "popularity": 0.553539616119303, "original_title": "Van Wilder 2: The Rise of Taj", "budget": 0, "cast": [{"name": "Kal Penn", "character": "Taj", "id": 53493, "credit_id": "52fe430d9251416c75001aab", "cast_id": 30, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 0}, {"name": "Daniel Percival", "character": "Pip", "id": 62221, "credit_id": "52fe430d9251416c75001ac1", "cast_id": 34, "profile_path": "/tLIpxTrz4ASYge2dJcyvD8wgNTd.jpg", "order": 1}, {"name": "Lauren Cohan", "character": "Charlotte", "id": 62220, "credit_id": "52fe430d9251416c75001ac5", "cast_id": 35, "profile_path": "/5W4AV3ZXn38NlEMqPy9QPjwRRz8.jpg", "order": 2}, {"name": "Glen Barry", "character": "Seamus", "id": 62222, "credit_id": "52fe430d9251416c75001ac9", "cast_id": 36, "profile_path": null, "order": 3}, {"name": "Anthony Cozens", "character": "Gethin", "id": 62223, "credit_id": "52fe430d9251416c75001acd", "cast_id": 37, "profile_path": null, "order": 4}, {"name": "Steven Rathman", "character": "Simon", "id": 62224, "credit_id": "52fe430d9251416c75001ad1", "cast_id": 38, "profile_path": null, "order": 5}, {"name": "Amy Steel", "character": "Alexandra", "id": 58710, "credit_id": "52fe430d9251416c75001ad5", "cast_id": 39, "profile_path": "/mO8bYH4O6LnYW9wOTWm9CKzGToU.jpg", "order": 6}, {"name": "Jonathan Cecil", "character": "Provost Cunningham", "id": 47857, "credit_id": "52fe430d9251416c75001ad9", "cast_id": 40, "profile_path": "/x5O04sNEkhljiuewQL2mwW28Yg8.jpg", "order": 7}, {"name": "Holly Davidson", "character": "Sadie", "id": 62225, "credit_id": "52fe430d9251416c75001add", "cast_id": 41, "profile_path": "/xcCOx1iP8KLKHtQ5vkfZ9uvIDiL.jpg", "order": 8}, {"name": "Roger Hammond", "character": "Camford Dean", "id": 27660, "credit_id": "52fe430d9251416c75001ae1", "cast_id": 42, "profile_path": null, "order": 9}, {"name": "Kulvinder Ghir", "character": "Taj's Father", "id": 62229, "credit_id": "52fe430d9251416c75001ae9", "cast_id": 44, "profile_path": null, "order": 10}, {"name": "Beth Steel", "character": "Penelope", "id": 62227, "credit_id": "52fe430d9251416c75001ae5", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "William de Coverly", "character": "Roger", "id": 62226, "credit_id": "52fe430d9251416c75001aed", "cast_id": 45, "profile_path": null, "order": 12}, {"name": "Tom Davey", "character": "Percy", "id": 62228, "credit_id": "52fe430d9251416c75001af1", "cast_id": 46, "profile_path": null, "order": 13}, {"name": "Shobu Kapoor", "character": "Taj's Mother", "id": 62230, "credit_id": "52fe430d9251416c75001af5", "cast_id": 47, "profile_path": null, "order": 14}, {"name": "Trevor Baxter", "character": "Sir Wilfred Owen", "id": 62233, "credit_id": "52fe430d9251416c75001af9", "cast_id": 48, "profile_path": null, "order": 15}, {"name": "Christopher Robbie", "character": "Old Bearded Man", "id": 62234, "credit_id": "52fe430d9251416c75001b05", "cast_id": 51, "profile_path": null, "order": 16}, {"name": "Cornelia Pavlovici", "character": "Charlotte's Mother", "id": 62232, "credit_id": "52fe430d9251416c75001b01", "cast_id": 50, "profile_path": null, "order": 17}, {"name": "Rupert Frazer", "character": "Charlotte's Father", "id": 62231, "credit_id": "52fe430d9251416c75001afd", "cast_id": 49, "profile_path": null, "order": 18}, {"name": "Ashly Margaret Rae", "character": "Irish Woman", "id": 62235, "credit_id": "52fe430d9251416c75001b15", "cast_id": 54, "profile_path": null, "order": 19}], "directors": [{"name": "Mort Nathan", "department": "Directing", "job": "Director", "credit_id": "52fe430d9251416c75001a35", "profile_path": null, "id": 57962}], "vote_average": 5.3, "runtime": 97}, "10033": {"poster_path": "/cyih5NtdEXF0uSGWJFWgiIEQknb.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50817508, "overview": "While visiting his hometown during Christmas, a man comes face-to-face with his old high school crush whom he was best friends with -- a woman whose rejection of him turned him into a ferocious womanizer.", "video": false, "id": 10033, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Just Friends", "tagline": "He loves her. She loves him not.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433400", "adult": false, "backdrop_path": "/d9Qqu2gOnCyf5J6p2ybUyICNGXX.jpg", "production_companies": [{"name": "Cinezeta", "id": 5496}, {"name": "New Line Cinema", "id": 12}], "release_date": "2005-11-23", "popularity": 0.901795324606383, "original_title": "Just Friends", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Chris Brander", "id": 10859, "credit_id": "52fe430e9251416c75001bed", "cast_id": 21, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Amy Smart", "character": "Jamie Palamino", "id": 20189, "credit_id": "52fe430e9251416c75001bf7", "cast_id": 23, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Anna Faris", "character": "Samantha James", "id": 1772, "credit_id": "52fe430e9251416c75001c01", "cast_id": 25, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Chris Klein", "character": "Dusty Dinkleman", "id": 21594, "credit_id": "52fe430e9251416c75001c05", "cast_id": 26, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 3}, {"name": "Chris Marquette", "character": "Mike Brander", "id": 59238, "credit_id": "52fe430e9251416c75001c09", "cast_id": 27, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 4}, {"name": "Julie Hagerty", "character": "Carol Brander", "id": 14415, "credit_id": "52fe430e9251416c75001c13", "cast_id": 29, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 5}, {"name": "Giacomo Beltrami", "character": "Young Mike Brander", "id": 62244, "credit_id": "52fe430e9251416c75001c17", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "Amy Matysio", "character": "Darla", "id": 62246, "credit_id": "52fe430e9251416c75001c1b", "cast_id": 31, "profile_path": "/au9d1bdeFkpjs9OEVl2vKrCmf6z.jpg", "order": 7}, {"name": "Fred Ewanuick", "character": "Clark", "id": 62245, "credit_id": "52fe430e9251416c75001c25", "cast_id": 33, "profile_path": "/gwKOB2XIRzWy6e1ClWSg1OBiuOA.jpg", "order": 8}, {"name": "Wendy Anderson", "character": "Mrs. Palamino", "id": 62247, "credit_id": "52fe430e9251416c75001c29", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Barry Flatman", "character": "Mr. Palamino", "id": 43429, "credit_id": "52fe430e9251416c75001c2d", "cast_id": 35, "profile_path": "/bRFwheAG7219yIbmVfrdqAMVhcI.jpg", "order": 10}, {"name": "Ty Olsson", "character": "Tim", "id": 42711, "credit_id": "52fe430e9251416c75001c31", "cast_id": 36, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 11}, {"name": "Devyn Burant", "character": "Brett", "id": 62248, "credit_id": "52fe430e9251416c75001c35", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Mike O'Brien", "character": "Hockey Dad", "id": 62250, "credit_id": "52fe430e9251416c75001c39", "cast_id": 38, "profile_path": "/p5eI0r5oSwumWjBTZRkyZvoqQs9.jpg", "order": 13}, {"name": "Jaden Ryan", "character": "Joey", "id": 62249, "credit_id": "52fe430e9251416c75001c3d", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Todd Lewis", "character": "Kyle", "id": 62252, "credit_id": "52fe430e9251416c75001c41", "cast_id": 40, "profile_path": null, "order": 15}, {"name": "Annie Brebner", "character": "Sarah", "id": 62251, "credit_id": "52fe430e9251416c75001c45", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Justin Kirby", "character": "Jock #1", "id": 62253, "credit_id": "52fe430e9251416c75001c49", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Jackie Mitchell", "character": "Jock #2", "id": 62254, "credit_id": "52fe430e9251416c75001c4d", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Stephen Root", "character": "KC", "id": 17401, "credit_id": "52fe430e9251416c75001c51", "cast_id": 44, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 19}], "directors": [{"name": "Roger Kumble", "department": "Directing", "job": "Director", "credit_id": "52fe430e9251416c75001bfd", "profile_path": "/uGKg8pacbWifsUK5IBvmPziHDKK.jpg", "id": 11873}], "vote_average": 5.9, "runtime": 96}, "1844": {"poster_path": "/6IKmjW52qeMXx8xXMdX6RRshmY0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87707396, "overview": "When retired thief Robert \"Mac\" MacDougal is implicated in the disappearance of a priceless painting, insurance investigator Virginia \"Gin\" Baker sets a trap to catch her suspect. But Gin is not exactly who she seems. Soon, she and Mac have joined forces to pull off -- quite literally -- the heist of the millennium.", "video": false, "id": 1844, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Entrapment", "tagline": "The trap is set.", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0137494", "adult": false, "backdrop_path": "/rTiBx0BgeBxEsocyVE3gF4eJrJw.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Taurus Films", "id": 897}, {"name": "Fountainbridge Films", "id": 414}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1999-04-29", "popularity": 0.699513235333315, "original_title": "Entrapment", "budget": 66000000, "cast": [{"name": "Catherine Zeta-Jones", "character": "Virginia Baker", "id": 1922, "credit_id": "52fe431ac3a36847f803a4af", "cast_id": 1, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Sean Connery", "character": "Robert MacDougal", "id": 738, "credit_id": "52fe431ac3a36847f803a4b3", "cast_id": 2, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Ving Rhames", "character": "Aaron Thibadeaux", "id": 10182, "credit_id": "52fe431ac3a36847f803a4d5", "cast_id": 8, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 2}, {"name": "Will Patton", "character": "Hector Cruz", "id": 883, "credit_id": "52fe431ac3a36847f803a4d9", "cast_id": 9, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 3}, {"name": "Maury Chaykin", "character": "Conrad Greene", "id": 7868, "credit_id": "52fe431ac3a36847f803a4dd", "cast_id": 10, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 4}, {"name": "Kevin McNally", "character": "Haas", "id": 2449, "credit_id": "52fe431ac3a36847f803a4e1", "cast_id": 11, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 5}, {"name": "Terry O'Neill", "character": "Quinn", "id": 82410, "credit_id": "52fe431ac3a36847f803a4e5", "cast_id": 12, "profile_path": "/gJazxnZsm4sDavnP7gedgO7rtpw.jpg", "order": 6}, {"name": "Madhav Sharma", "character": "Security Chief", "id": 152281, "credit_id": "52fe431ac3a36847f803a4e9", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "David Yip", "character": "Chief of Police", "id": 696, "credit_id": "52fe431ac3a36847f803a4ed", "cast_id": 14, "profile_path": "/s2ApWZ620ZMe8nwvKM2y8TwjenE.jpg", "order": 8}, {"name": "Tim Potter", "character": "Millennium Man", "id": 79888, "credit_id": "52fe431ac3a36847f803a4f1", "cast_id": 15, "profile_path": "/n9FA6vPyAZFdgddoRJLr1aDQWFX.jpg", "order": 9}, {"name": "Aaron Swartz", "character": "Cruz's Man", "id": 185399, "credit_id": "52fe431ac3a36847f803a4f5", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "William Marsh", "character": "Computer Technician", "id": 183930, "credit_id": "52fe431ac3a36847f803a4f9", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Tony Xu", "character": "Banker", "id": 1089911, "credit_id": "52fe431ac3a36847f803a4fd", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Rolf Saxon", "character": "Director", "id": 151438, "credit_id": "52fe431ac3a36847f803a501", "cast_id": 20, "profile_path": "/vyi4D34Gj6FNINOF7abt1ZahFW4.jpg", "order": 13}, {"name": "Tom Clarke Hill", "character": "Operator", "id": 1089912, "credit_id": "52fe431ac3a36847f803a505", "cast_id": 21, "profile_path": "/Ojy1RMeqVH2o5N8v0682q8YMA8.jpg", "order": 14}, {"name": "David Howard", "character": "Technician", "id": 1089913, "credit_id": "52fe431ac3a36847f803a509", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Sai-Kit Yung", "character": "Doctor", "id": 62937, "credit_id": "52fe431ac3a36847f803a50d", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Ravin J. Ganatra", "character": "1st Security Guard", "id": 195599, "credit_id": "52fe431ac3a36847f803a511", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Rhydian Jai-Persad", "character": "2nd Security Guard", "id": 1089914, "credit_id": "52fe431ac3a36847f803a515", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Hari Dhillon", "character": "3rd Security Guard", "id": 202939, "credit_id": "52fe431ac3a36847f803a519", "cast_id": 26, "profile_path": "/mzlWa84jhQNjvgHAqtnMxl03yUK.jpg", "order": 19}, {"name": "Eric Meyers", "character": "Waverly Technician", "id": 933883, "credit_id": "52fe431ac3a36847f803a51d", "cast_id": 27, "profile_path": "/mDMzeDh9TMrfcxoEXZmvtWqgGZ3.jpg", "order": 20}], "directors": [{"name": "Jon Amiel", "department": "Directing", "job": "Director", "credit_id": "52fe431ac3a36847f803a4b9", "profile_path": "/hpKrOAFWUwiPflcSrkAFDcajy1b.jpg", "id": 15148}], "vote_average": 6.0, "runtime": 113}, "10040": {"poster_path": "/fMIm5xFB1VcW67b6VS8OMH89F1y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After her triumph at the Miss United States pageant, FBI agent Gracie Hart becomes an overnight sensation -- and the new \"face of the FBI.\" But it's time to spring into action again when the pageant's winner, Cheryl, and emcee, Stan, are abducted.", "video": false, "id": 10040, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Miss Congeniality 2: Armed and Fabulous", "tagline": "You might feel a little prick", "vote_count": 103, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7TIT28YbhAOeQGD2q2hJ9j83jI1.jpg", "poster_path": "/fyjlq7Xi7d3YPLj4MrDDdmOPlNF.jpg", "id": 93220, "name": "Miss Congeniality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0385307", "adult": false, "backdrop_path": "/6hP5pzQojs062MQiQ2nRNZmIPhv.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Fortis Films", "id": 4258}], "release_date": "2005-03-11", "popularity": 1.6314776590698, "original_title": "Miss Congeniality 2: Armed and Fabulous", "budget": 0, "cast": [{"name": "Sandra Bullock", "character": "Gracie Hart", "id": 18277, "credit_id": "52fe43109251416c750020f9", "cast_id": 12, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Regina King", "character": "Sam Fuller", "id": 9788, "credit_id": "52fe43109251416c750020fd", "cast_id": 13, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 1}, {"name": "Enrique Murciano", "character": "Jeff Foreman", "id": 12798, "credit_id": "52fe43109251416c75002101", "cast_id": 14, "profile_path": "/nC37xKp4UdGylXFSJv94eQNTtja.jpg", "order": 2}, {"name": "William Shatner", "character": "Stan Fields", "id": 1748, "credit_id": "52fe43109251416c75002105", "cast_id": 15, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 3}, {"name": "Eileen Brennan", "character": "Carol Fields", "id": 39015, "credit_id": "52fe43109251416c75002115", "cast_id": 18, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 4}, {"name": "Ernie Hudson", "character": "FBI Asst. Director Harry McDonald", "id": 8874, "credit_id": "52fe43109251416c75002119", "cast_id": 20, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 5}, {"name": "Elisabeth R\u00f6hm", "character": "Agent Janet McKaren", "id": 126932, "credit_id": "52fe43109251416c7500211d", "cast_id": 21, "profile_path": "/67qIdPzAY5XrK895EyUpJI2QF8N.jpg", "order": 6}, {"name": "Nick Offerman", "character": "Karl Steele", "id": 17039, "credit_id": "52fe43109251416c75002121", "cast_id": 22, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 7}, {"name": "Abraham Benrubi", "character": "Lou Steele", "id": 21132, "credit_id": "52fe43109251416c75002125", "cast_id": 23, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 8}, {"name": "Treat Williams", "character": "FBI Asst. Director Walter Collins", "id": 4515, "credit_id": "52fe43109251416c75002129", "cast_id": 24, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 9}, {"name": "Heather Burns", "character": "Cheryl Frasier", "id": 26716, "credit_id": "52fe43109251416c7500212d", "cast_id": 25, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 10}, {"name": "Diedrich Bader", "character": "Joel Meyers", "id": 5727, "credit_id": "52fe43109251416c75002131", "cast_id": 26, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 11}, {"name": "Octavia Spencer", "character": "Octavia", "id": 6944, "credit_id": "52fe43109251416c75002135", "cast_id": 27, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 12}, {"name": "Leslie Grossman", "character": "Pam", "id": 1212123, "credit_id": "52fe43109251416c75002139", "cast_id": 28, "profile_path": "/csgXB866zx0s6Cx45ew50Uh3wHv.jpg", "order": 13}], "directors": [{"name": "John Pasquin", "department": "Directing", "job": "Director", "credit_id": "52fe43109251416c750020c5", "profile_path": null, "id": 58072}], "vote_average": 5.3, "runtime": 115}, "1850": {"poster_path": "/i6jNmO6vynStAy23KUhOwetX6Bs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47434430, "overview": "A film about the life and career of the eccentric avant-garde comedian, Andy Kaufman.", "video": false, "id": 1850, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Man on the Moon", "tagline": "Hello, my name is Andy and this is my movie.", "vote_count": 117, "homepage": "http://www.universalpictures.com/manonthemoon/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0125664", "adult": false, "backdrop_path": "/iFwGjAClduDghlaNTFGwSNNLuGf.jpg", "production_companies": [{"name": "Mutual Film Company", "id": 762}], "release_date": "1999-12-22", "popularity": 0.323482540205087, "original_title": "Man on the Moon", "budget": 82000000, "cast": [{"name": "Jim Carrey", "character": "Andy Kaufman/Tony Clifton", "id": 206, "credit_id": "52fe431ac3a36847f803a85d", "cast_id": 17, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Courtney Love", "character": "Lynne Margulies", "id": 7621, "credit_id": "52fe431ac3a36847f803a87b", "cast_id": 24, "profile_path": "/6AUeDL2aDErq4Kx33uIAP2KyHHi.jpg", "order": 1}, {"name": "Bob Zmuda", "character": "Jack Burns", "id": 25336, "credit_id": "52fe431ac3a36847f803a883", "cast_id": 26, "profile_path": "/jXC1XpcwRxYdNna5cKNeCZkqaVg.jpg", "order": 2}, {"name": "Danny DeVito", "character": "George Shapiro", "id": 518, "credit_id": "52fe431ac3a36847f803a865", "cast_id": 19, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 3}, {"name": "Gerry Becker", "character": "Stanley Kaufman", "id": 19468, "credit_id": "52fe431ac3a36847f803a861", "cast_id": 18, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 4}, {"name": "Leslie Lyles", "character": "Janice Kaufman", "id": 19469, "credit_id": "52fe431ac3a36847f803a869", "cast_id": 20, "profile_path": "/uUsBo2oIA6QDY7LKqs6wEzZKU7C.jpg", "order": 5}, {"name": "Greyson Erik Pendry", "character": "Little Michael Kaufman", "id": 19470, "credit_id": "52fe431ac3a36847f803a86d", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "George Shapiro", "character": "Mr. Besserman", "id": 19471, "credit_id": "52fe431ac3a36847f803a871", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Vincent Schiavelli", "character": "Maynard Smith", "id": 3418, "credit_id": "52fe431ac3a36847f803a87f", "cast_id": 25, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 8}, {"name": "Paul Giamatti", "character": "Bob Zmuda", "id": 13242, "credit_id": "52fe431ac3a36847f803a887", "cast_id": 27, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 9}, {"name": "Christopher Lloyd", "character": "Christopher Lloyd - 'Taxi' Actor", "id": 1062, "credit_id": "52fe431ac3a36847f803a88b", "cast_id": 28, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 10}, {"name": "Jeff Conaway", "character": "Jeff Conaway - 'Taxi' Actor", "id": 8894, "credit_id": "5423b6f80e0a263b74002ecd", "cast_id": 30, "profile_path": "/seX29fe7LrCXvKaq7RPrKD23EIS.jpg", "order": 11}], "directors": [{"name": "Milo\u0161 Forman", "department": "Directing", "job": "Director", "credit_id": "52fe431ac3a36847f803a7ff", "profile_path": "/nKnsrK9h02F1QlMetkyr9R45VGM.jpg", "id": 3974}], "vote_average": 6.7, "runtime": 118}, "26428": {"poster_path": "/hZcl4TuZYTNWztIP8Zpvr6YLxiY.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 38422082, "overview": "A historical drama set in Roman Egypt, concerning philosopher Hypatia of Alexandria and her relationship with her slave Davus, who is torn between his love for her and the possibility of gaining his freedom by joining the rising tide of Christianity.", "video": false, "id": 26428, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Agora", "tagline": "Alexandria, Egypt. 391 A.D. The World Changed Forever.", "vote_count": 93, "homepage": "http://www.agoralapelicula.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1186830", "adult": false, "backdrop_path": "/vxsR4pjm8VNFrywz9TQLj3loxNB.jpg", "production_companies": [{"name": "Mod Producciones", "id": 5444}, {"name": "Himen\u00f3ptero", "id": 784}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "Government of Malta", "id": 19927}, {"name": "Nimar Studios", "id": 7636}], "release_date": "2009-05-17", "popularity": 0.814430941577973, "original_title": "Agora", "budget": 70000000, "cast": [{"name": "Rachel Weisz", "character": "Hypatia", "id": 3293, "credit_id": "52fe4501c3a368484e04337b", "cast_id": 1, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 0}, {"name": "Max Minghella", "character": "Davus", "id": 2978, "credit_id": "52fe4501c3a368484e04337f", "cast_id": 2, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 1}, {"name": "Oscar Isaac", "character": "Orestes", "id": 25072, "credit_id": "52fe4501c3a368484e043383", "cast_id": 3, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 2}, {"name": "Ashraf Barhom", "character": "Ammonius", "id": 766, "credit_id": "52fe4501c3a368484e0433a9", "cast_id": 13, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 3}, {"name": "Michael Lonsdale", "character": "Theon", "id": 2369, "credit_id": "52fe4501c3a368484e0433a1", "cast_id": 11, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 4}, {"name": "Rupert Evans", "character": "Synesius", "id": 17283, "credit_id": "52fe4501c3a368484e043399", "cast_id": 7, "profile_path": "/AuPOKHD18bE2jKXONvrMLGVQ744.jpg", "order": 5}, {"name": "Homayoun Ershadi", "character": "Aspasius", "id": 117528, "credit_id": "544a1c1bc3a3680fc300335d", "cast_id": 80, "profile_path": "/iJ7Oukp3TVfoTYdqkoVXg8ZEleJ.jpg", "order": 6}, {"name": "Sami Samir", "character": "Cyril", "id": 124398, "credit_id": "52fe4501c3a368484e04339d", "cast_id": 10, "profile_path": "/zwVAmtQUMEMPoBIoIzPQ0fhULN.jpg", "order": 7}, {"name": "Richard Durden", "character": "Olympius", "id": 120833, "credit_id": "52fe4501c3a368484e0433b5", "cast_id": 16, "profile_path": "/jtsGAARS6sNDfHPGl4xrJdtSEb3.jpg", "order": 8}, {"name": "Omar Mostafa", "character": "Isidorus", "id": 369256, "credit_id": "52fe4501c3a368484e0433b1", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Manuel Cauchi", "character": "Theophilus", "id": 121546, "credit_id": "52fe4501c3a368484e0433c1", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Oshri Cohen", "character": "Medorus", "id": 77820, "credit_id": "52fe4501c3a368484e0433c5", "cast_id": 21, "profile_path": "/sERLbgSz08OPmz1hn4vK2Se9ciy.jpg", "order": 11}, {"name": "Clint Dyer", "character": "Hierax", "id": 109383, "credit_id": "52fe4501c3a368484e0433a5", "cast_id": 12, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 12}, {"name": "Yousef Sweid", "character": "Pierre", "id": 312548, "credit_id": "52fe4501c3a368484e0433b9", "cast_id": 17, "profile_path": "/sicjElxgtIASUW0y0v1LT9siWTN.jpg", "order": 13}, {"name": "Amber Rose Revah", "character": "Sidonia", "id": 574378, "credit_id": "52fe4501c3a368484e0433bd", "cast_id": 18, "profile_path": "/uWKJDbkZqttvc1os3UNanSmh5Aa.jpg", "order": 14}, {"name": "Charles Thake", "character": "Hesiquius", "id": 968928, "credit_id": "52fe4501c3a368484e0433c9", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Harry Borg", "character": "Prefect Evragius", "id": 968929, "credit_id": "52fe4501c3a368484e0433cd", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Sam Cox", "character": "Pagan Rival", "id": 195232, "credit_id": "52fe4501c3a368484e0433d1", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "George Harris", "character": "Heladius Dignitary", "id": 2247, "credit_id": "52fe4501c3a368484e0433d5", "cast_id": 25, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 18}, {"name": "Sylvester Morand", "character": "Dignitary", "id": 36664, "credit_id": "52fe4501c3a368484e0433d9", "cast_id": 26, "profile_path": "/yKtoG2NtNtWtRa5ZlgWKctUfbPg.jpg", "order": 19}, {"name": "Paul Barnes", "character": "Dignitary", "id": 548417, "credit_id": "52fe4501c3a368484e0433dd", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Jordan Kiziuk", "character": "Hypatia's Disciple", "id": 1069851, "credit_id": "52fe4501c3a368484e0433e1", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Francis Ghersci", "character": "Hypatia's disciple", "id": 1205982, "credit_id": "52fe4501c3a368484e0433e5", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Jonathan Grima", "character": "Hypatia's Disciple", "id": 1205983, "credit_id": "52fe4501c3a368484e0433e9", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Christopher Dingli", "character": "Student", "id": 84298, "credit_id": "52fe4501c3a368484e0433ed", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Stephen Buhagiar", "character": "Parabalano", "id": 1205987, "credit_id": "52fe4501c3a368484e0433f1", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Joseph Camilleri", "character": "Parabolano", "id": 1205988, "credit_id": "52fe4501c3a368484e0433f5", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Charles Sammut", "character": "Philosopher", "id": 1205989, "credit_id": "52fe4501c3a368484e0433f9", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Michael Sciortino", "character": "Philosopher", "id": 1205990, "credit_id": "52fe4501c3a368484e0433fd", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Joe Quattromani", "character": "Old Philosopher", "id": 1205991, "credit_id": "52fe4501c3a368484e043401", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "Alan Meadows", "character": "Rabbi", "id": 1205992, "credit_id": "52fe4501c3a368484e043405", "cast_id": 37, "profile_path": null, "order": 30}, {"name": "Peter Borg", "character": "Pagan Priest", "id": 1205994, "credit_id": "52fe4501c3a368484e043409", "cast_id": 38, "profile_path": null, "order": 31}, {"name": "Portelli Paul", "character": "Troublemaker", "id": 1205995, "credit_id": "52fe4501c3a368484e04340d", "cast_id": 39, "profile_path": null, "order": 32}, {"name": "Robert Ricards", "character": "Roman Officer", "id": 1205998, "credit_id": "52fe4501c3a368484e043411", "cast_id": 40, "profile_path": null, "order": 33}, {"name": "Alan Paris", "character": "Bodyguard", "id": 1206002, "credit_id": "52fe4501c3a368484e043415", "cast_id": 41, "profile_path": null, "order": 34}, {"name": "John Montanaro", "character": "Bodyguard", "id": 1206004, "credit_id": "52fe4501c3a368484e043419", "cast_id": 42, "profile_path": null, "order": 35}, {"name": "Malcolm Ellul", "character": "Bodyguard", "id": 1206006, "credit_id": "52fe4501c3a368484e04341d", "cast_id": 43, "profile_path": null, "order": 36}, {"name": "Ray Mangion", "character": "Crier via Canopica", "id": 1114427, "credit_id": "52fe4501c3a368484e043421", "cast_id": 44, "profile_path": null, "order": 37}, {"name": "Mary Rose Bonello", "character": "Old Jewish Woman", "id": 1206007, "credit_id": "52fe4501c3a368484e043425", "cast_id": 45, "profile_path": null, "order": 38}, {"name": "Clint Dyer", "character": "Parabolano", "id": 109383, "credit_id": "52fe4501c3a368484e043429", "cast_id": 46, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 39}, {"name": "Andre Agius", "character": "Child", "id": 1206008, "credit_id": "52fe4501c3a368484e04342d", "cast_id": 47, "profile_path": null, "order": 40}, {"name": "Frederick Testa", "character": "Christian", "id": 1206009, "credit_id": "52fe4501c3a368484e043431", "cast_id": 48, "profile_path": null, "order": 41}, {"name": "Sean Buhagiar", "character": "Christian student", "id": 1206010, "credit_id": "52fe4501c3a368484e043435", "cast_id": 49, "profile_path": null, "order": 42}, {"name": "Theresa Celia", "character": "Christian Woman", "id": 1206011, "credit_id": "52fe4501c3a368484e043439", "cast_id": 50, "profile_path": null, "order": 43}, {"name": "Frank Tanti", "character": "Deacon", "id": 1206012, "credit_id": "52fe4501c3a368484e04343d", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Anthony Ellul", "character": "Deacon", "id": 991203, "credit_id": "52fe4501c3a368484e043441", "cast_id": 52, "profile_path": null, "order": 45}, {"name": "Pierre Stafrace", "character": "Deacon", "id": 143973, "credit_id": "52fe4501c3a368484e043445", "cast_id": 53, "profile_path": null, "order": 46}, {"name": "Christopher Raikes", "character": "Frightened Hellenic Man", "id": 1206013, "credit_id": "52fe4501c3a368484e043449", "cast_id": 54, "profile_path": null, "order": 47}, {"name": "Clare Agius", "character": "Frightened Hellenic Woman", "id": 1206014, "credit_id": "52fe4501c3a368484e04344d", "cast_id": 55, "profile_path": null, "order": 48}, {"name": "Mario Camilleri", "character": "Alarmed Neighbour", "id": 1206015, "credit_id": "52fe4501c3a368484e043451", "cast_id": 56, "profile_path": null, "order": 49}, {"name": "Wesley Ellul", "character": "Guard", "id": 1206016, "credit_id": "52fe4501c3a368484e043455", "cast_id": 57, "profile_path": null, "order": 50}, {"name": "John Marinelli", "character": "Guard", "id": 1206017, "credit_id": "52fe4501c3a368484e043459", "cast_id": 58, "profile_path": null, "order": 51}, {"name": "Simon Cormi", "character": "Informer", "id": 1206018, "credit_id": "52fe4501c3a368484e04345d", "cast_id": 59, "profile_path": null, "order": 52}, {"name": "Peter Galea", "character": "Roman officer", "id": 1206019, "credit_id": "52fe4501c3a368484e043461", "cast_id": 60, "profile_path": null, "order": 53}, {"name": "Nikovich Sammut", "character": "Roman Officer", "id": 1206020, "credit_id": "52fe4501c3a368484e043465", "cast_id": 61, "profile_path": null, "order": 54}, {"name": "Ronnie Galea", "character": "Ship's Captain", "id": 1206021, "credit_id": "52fe4501c3a368484e043469", "cast_id": 62, "profile_path": null, "order": 55}, {"name": "David Ellul-Mercer", "character": "Slave", "id": 1206022, "credit_id": "52fe4502c3a368484e04346d", "cast_id": 63, "profile_path": null, "order": 56}, {"name": "Philip Mizzi", "character": "Surgeon", "id": 1206023, "credit_id": "52fe4502c3a368484e043471", "cast_id": 64, "profile_path": null, "order": 57}, {"name": "Alan Azzopardi", "character": "Suspicious Jew", "id": 1206024, "credit_id": "52fe4502c3a368484e043475", "cast_id": 65, "profile_path": null, "order": 58}, {"name": "Polly March", "character": "Woman with figs", "id": 1206025, "credit_id": "52fe4502c3a368484e043479", "cast_id": 66, "profile_path": null, "order": 59}, {"name": "Joe Pace", "character": "Stallkeeper", "id": 1206026, "credit_id": "52fe4502c3a368484e04347d", "cast_id": 67, "profile_path": null, "order": 60}, {"name": "John Suda", "character": "Customer", "id": 185321, "credit_id": "52fe4502c3a368484e043481", "cast_id": 68, "profile_path": null, "order": 61}, {"name": "Michael Tabone", "character": "Rabbi", "id": 1206027, "credit_id": "52fe4502c3a368484e043485", "cast_id": 69, "profile_path": null, "order": 62}, {"name": "Angele Galea", "character": "Charition", "id": 1206028, "credit_id": "52fe4502c3a368484e043489", "cast_id": 70, "profile_path": null, "order": 63}, {"name": "Malcolm Galea", "character": "Charition's Brother", "id": 121549, "credit_id": "52fe4502c3a368484e04348d", "cast_id": 71, "profile_path": null, "order": 64}, {"name": "Paul Celia", "character": "Indian King", "id": 1206029, "credit_id": "52fe4502c3a368484e043491", "cast_id": 72, "profile_path": null, "order": 65}, {"name": "Jean-Pierre Agius", "character": "Clown", "id": 1206030, "credit_id": "52fe4502c3a368484e043495", "cast_id": 73, "profile_path": null, "order": 66}, {"name": "Samuel Montague", "character": "Crier", "id": 1206031, "credit_id": "52fe4502c3a368484e043499", "cast_id": 74, "profile_path": null, "order": 67}, {"name": "Marieclaire Camilleri", "character": "Jewish Girl (uncredited)", "id": 1206032, "credit_id": "52fe4502c3a368484e04349d", "cast_id": 75, "profile_path": null, "order": 68}, {"name": "Edward Caruana Galizia", "character": "Student (uncredited)", "id": 1206033, "credit_id": "52fe4502c3a368484e0434a1", "cast_id": 76, "profile_path": null, "order": 69}, {"name": "Guilherme de Franco", "character": "Roman Officer (uncredited)", "id": 1206034, "credit_id": "52fe4502c3a368484e0434a5", "cast_id": 77, "profile_path": null, "order": 70}, {"name": "Juan Serrano", "character": "Dead Jew (uncredited)", "id": 1206035, "credit_id": "52fe4502c3a368484e0434a9", "cast_id": 78, "profile_path": null, "order": 71}, {"name": "Novica Todorovic", "character": "Parabalano Fighter (uncredited)", "id": 1206036, "credit_id": "52fe4502c3a368484e0434ad", "cast_id": 79, "profile_path": null, "order": 72}], "directors": [{"name": "Alejandro Amen\u00e1bar", "department": "Directing", "job": "Director", "credit_id": "52fe4501c3a368484e043389", "profile_path": "/uYDLRrpMM4Q7xf2LSCsMOVsy58Q.jpg", "id": 19840}], "vote_average": 6.7, "runtime": 127}, "10045": {"poster_path": "/AnXvj6g3MB5BLnKuQDNSyX4jvDc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 11208291, "overview": "Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.", "video": false, "id": 10045, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "District B13", "tagline": "Welcome to District B13. Welcome to the future", "vote_count": 143, "homepage": "http://www.banlieue13-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/6d8jbKsWVUKrKBHMcf9mvBkFCgv.jpg", "poster_path": "/j9ZhvTOa9gIQ48PsWfZuqwWNI7p.jpg", "id": 85946, "name": "The District 13 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0414852", "adult": false, "backdrop_path": "/jBXFaflksx1S5IYXgXc1sRBYj3V.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}], "release_date": "2004-11-09", "popularity": 0.670566499948552, "original_title": "Banlieue 13", "budget": 15000000, "cast": [{"name": "David Belle", "character": "Le\u00efto", "id": 62439, "credit_id": "52fe43119251416c75002405", "cast_id": 19, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 0}, {"name": "Tony D'Amario", "character": "K2", "id": 62441, "credit_id": "52fe43119251416c75002409", "cast_id": 20, "profile_path": "/oI4MpEpWONxgvUKnEI0Kvp3qigR.jpg", "order": 1}, {"name": "Bibi Naceri", "character": "Taha Bemamud", "id": 62442, "credit_id": "52fe43119251416c7500240d", "cast_id": 21, "profile_path": "/cbvHiJZ13tEvKUrW9biFcdwHsu9.jpg", "order": 2}, {"name": "Dany Verissimo-Petit", "character": "Lola", "id": 62443, "credit_id": "52fe43119251416c75002411", "cast_id": 23, "profile_path": "/l7eXaYqsVr8Nt4avd0GdXTxDHo9.jpg", "order": 4}, {"name": "Nicolas Woirion", "character": "Corsini", "id": 62445, "credit_id": "52fe43119251416c75002419", "cast_id": 25, "profile_path": "/3SN6yWLFzjV9y5Ie0FORI5Nyrih.jpg", "order": 5}, {"name": "Fran\u00e7ois Chattot", "character": "Kr\u00fcger", "id": 62444, "credit_id": "52fe43119251416c75002415", "cast_id": 24, "profile_path": "/c0RSg3XGPTW7Kf9vj7mObFv10Po.jpg", "order": 6}, {"name": "Patrick Olivier", "character": "Le colonel", "id": 62446, "credit_id": "52fe43119251416c7500241d", "cast_id": 26, "profile_path": "/hddKFQT65pMZojcwQX7yTkSheIp.jpg", "order": 7}, {"name": "Tarik Boucekhine", "character": "Yoyo", "id": 62449, "credit_id": "52fe43119251416c75002421", "cast_id": 27, "profile_path": "/5aFNa2p7Wyp3o5cYhjwt3DpEKFj.jpg", "order": 8}, {"name": "J\u00e9r\u00f4me Gadner", "character": "K2 boy 1", "id": 62448, "credit_id": "52fe43119251416c75002425", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Samir Guesmi", "character": "Jamel", "id": 62447, "credit_id": "52fe43119251416c75002429", "cast_id": 29, "profile_path": "/j0sc12uabqyFiPe2paz3XRof7Gw.jpg", "order": 10}, {"name": "Warren Zavatta", "character": "Para 3", "id": 62451, "credit_id": "52fe43119251416c7500242d", "cast_id": 30, "profile_path": "/1e5Nmrls6h469gRb95gzKxEstZE.jpg", "order": 11}, {"name": "Turan Bagci", "character": "Gorille entr\u00e9e Marronniers", "id": 62455, "credit_id": "52fe43119251416c75002431", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Gr\u00e9gory Jean", "character": "Para 2", "id": 62450, "credit_id": "52fe43119251416c75002435", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Dominique Dorol", "character": "Cerb\u00e8re Taha", "id": 62454, "credit_id": "52fe43119251416c75002439", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Azad", "character": "Tarik", "id": 62453, "credit_id": "52fe43119251416c7500243d", "cast_id": 34, "profile_path": "/1wy7QqQPkFZmRK9XuUXyq0CWiOF.jpg", "order": 15}, {"name": "Ludovic Berthillot", "character": "Le gros mercenaire", "id": 62452, "credit_id": "52fe43119251416c75002441", "cast_id": 35, "profile_path": "/cdJ7RyZfluO233x4jMgLcpOYmh6.jpg", "order": 16}, {"name": "Chamsi Charlesia", "character": "Garde 2", "id": 62456, "credit_id": "52fe43119251416c75002445", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Nicolas Wan Park", "character": "Le Chinois", "id": 62458, "credit_id": "52fe43119251416c75002449", "cast_id": 37, "profile_path": "/idzQyIly8UsDemrlGJTZsYX8icY.jpg", "order": 18}, {"name": "Gilles Gambino", "character": "Garde 1", "id": 62457, "credit_id": "52fe43119251416c7500244d", "cast_id": 38, "profile_path": "/bBsBwpZGcX3o6t4d92S87kXHt2Z.jpg", "order": 19}, {"name": "Cyril Raffaelli", "character": "Capt. Damien Tomaso", "id": 21946, "credit_id": "52fe43119251416c75002457", "cast_id": 40, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 20}], "directors": [{"name": "Pierre Morel", "department": "Directing", "job": "Director", "credit_id": "52fe43119251416c750023ad", "profile_path": "/yyhcEUYW4znC6JbNKZv2OJp1Cy0.jpg", "id": 35453}], "vote_average": 6.4, "runtime": 84}, "10047": {"poster_path": "/3XCzDTqh4X5YHxwys0IOpDyi7ly.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In 1429 a teenage girl from a remote French village stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. Following her mission to reclaim god's dimished kingdom - through her amazing victories until her violent and untimely death.", "video": false, "id": 10047, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Messenger: The Story of Joan of Arc", "tagline": "", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0151137", "adult": false, "backdrop_path": "/2lKD7nIeYkNkmKIOGTeAJRXkDqI.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1999-10-27", "popularity": 1.14977585283111, "original_title": "Joan of Arc", "budget": 0, "cast": [{"name": "Milla Jovovich", "character": "Jeanne d\u2019Arc", "id": 63, "credit_id": "52fe43129251416c75002643", "cast_id": 9, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "The Conscience", "id": 4483, "credit_id": "52fe43129251416c75002647", "cast_id": 10, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Faye Dunaway", "character": "Yolande of Aragon", "id": 6450, "credit_id": "52fe43129251416c7500264b", "cast_id": 11, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 2}, {"name": "John Malkovich", "character": "Charles VII", "id": 6949, "credit_id": "52fe43129251416c7500264f", "cast_id": 12, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 3}, {"name": "Vincent Cassel", "character": "Gilles de Rais", "id": 1925, "credit_id": "52fe43129251416c75002653", "cast_id": 13, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 4}, {"name": "Tch\u00e9ky Karyo", "character": "Jean de Dunois", "id": 10698, "credit_id": "52fe43129251416c75002657", "cast_id": 14, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 5}, {"name": "Rab Affleck", "character": "Comrade", "id": 39678, "credit_id": "52fe43129251416c75002667", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "St\u00e9phane Algoud", "character": "Look Out", "id": 24564, "credit_id": "52fe43129251416c7500266b", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Edwin Apps", "character": "Bishop", "id": 214644, "credit_id": "52fe43129251416c7500266f", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "David Bailie", "character": "English Judge", "id": 1715, "credit_id": "52fe43129251416c75002673", "cast_id": 20, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 9}, {"name": "Christian Barbier", "character": "Captain", "id": 44509, "credit_id": "52fe43129251416c7500267b", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Timothy Bateson", "character": "English Judge", "id": 3548, "credit_id": "52fe43129251416c7500267f", "cast_id": 23, "profile_path": "/dHSn6dpypXLmNCrCwOy3fJDbPsT.jpg", "order": 12}, {"name": "David Begg", "character": "Nobleman", "id": 1077832, "credit_id": "52fe43129251416c75002683", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Christian Bergner", "character": "Captain", "id": 1077833, "credit_id": "52fe43129251416c75002687", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Andrew Birkin", "character": "Talbot", "id": 2355, "credit_id": "52fe43129251416c7500268b", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Dominic Borrelli", "character": "English Judge", "id": 321853, "credit_id": "52fe43129251416c7500268f", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "John Boswall", "character": "Old Priest", "id": 140452, "credit_id": "52fe43129251416c75002693", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Matthew Bowyer", "character": "The Bludgeoned French Soldier", "id": 1077834, "credit_id": "52fe43129251416c75002697", "cast_id": 29, "profile_path": "/sEfjY9lBchn6kHYMa17aCzLyXHY.jpg", "order": 18}, {"name": "Paul Brooke", "character": "Domremy's Priest", "id": 9142, "credit_id": "52fe43129251416c7500269b", "cast_id": 30, "profile_path": "/eiIvFEhS7WABCiIi5UI0XS70ntD.jpg", "order": 19}, {"name": "Bruce Byron", "character": "Joan's Father", "id": 25675, "credit_id": "52fe43129251416c7500269f", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Charles Cork", "character": "Vaucouleurs' Priest", "id": 40651, "credit_id": "52fe43129251416c750026a3", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Patrice Cossoneau", "character": "Captain", "id": 1077835, "credit_id": "52fe43129251416c750026a7", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Tony D'Amario", "character": "Compiegne's Mayor", "id": 62441, "credit_id": "52fe43129251416c750026ab", "cast_id": 34, "profile_path": "/oI4MpEpWONxgvUKnEI0Kvp3qigR.jpg", "order": 23}, {"name": "Daniel Daujon", "character": "Church's Peer", "id": 1077836, "credit_id": "52fe43129251416c750026af", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Tonio Descanvelle", "character": "Xaintrailles", "id": 61623, "credit_id": "52fe43129251416c750026b3", "cast_id": 36, "profile_path": "/6osT2lZvotuNnk9VE9vXUhBPREE.jpg", "order": 25}, {"name": "Philippe du Janerand", "character": "Dijon", "id": 550110, "credit_id": "52fe43129251416c750026b7", "cast_id": 37, "profile_path": "/h6cm0cwVnaLu3i3KD2AOwxeinPf.jpg", "order": 26}, {"name": "Sissi Duparc", "character": "Mary of Anjou's Lady's Companion", "id": 549323, "credit_id": "52fe43129251416c750026bb", "cast_id": 38, "profile_path": "/uhxsNtWXtDyGGU2fFXYaOjHnnZ2.jpg", "order": 27}, {"name": "Barbara Elbourn", "character": "The Aunt", "id": 1077839, "credit_id": "52fe43129251416c750026bf", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Christian Erickson", "character": "La Tremoille", "id": 45849, "credit_id": "52fe43129251416c750026c3", "cast_id": 40, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 29}, {"name": "David Barber", "character": "English Judge", "id": 1229040, "credit_id": "54a53128c3a368764f011133", "cast_id": 45, "profile_path": null, "order": 30}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe43129251416c7500265d", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.3, "runtime": 148}, "18240": {"poster_path": "/xippClkb4VCE15uva13SAGf8Vsd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 317375031, "overview": "When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.", "video": false, "id": 18240, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Proposal", "tagline": "Here comes the bribe...", "vote_count": 447, "homepage": "http://www.myspace.com/proposalmovie", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1041829", "adult": false, "backdrop_path": "/iYQcFgHg4aWzozfVtqqrn6preRx.jpg", "production_companies": [{"name": "Kurtzman/Orci", "id": 12536}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Mandeville Films", "id": 10227}], "release_date": "2009-06-01", "popularity": 1.18869454761828, "original_title": "The Proposal", "budget": 40000000, "cast": [{"name": "Sandra Bullock", "character": "Margaret Tate", "id": 18277, "credit_id": "52fe476d9251416c75098e47", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Andrew Paxton", "id": 10859, "credit_id": "52fe476d9251416c75098e4b", "cast_id": 4, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Mary Steenburgen", "character": "Grace Paxton", "id": 2453, "credit_id": "52fe476d9251416c75098e4f", "cast_id": 5, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 2}, {"name": "Craig T. Nelson", "character": "Joe Paxton", "id": 8977, "credit_id": "52fe476d9251416c75098e53", "cast_id": 6, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 3}, {"name": "Betty White", "character": "Grandma Annie", "id": 71727, "credit_id": "52fe476d9251416c75098e57", "cast_id": 7, "profile_path": "/4cPsS3xppS2EKPwf6j4VJMzIBZ8.jpg", "order": 4}, {"name": "Denis O'Hare", "character": "Mr. Gilbertson", "id": 81681, "credit_id": "52fe476d9251416c75098e5b", "cast_id": 8, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 5}, {"name": "Malin Akerman", "character": "Gertrude", "id": 50463, "credit_id": "52fe476d9251416c75098e5f", "cast_id": 9, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 6}, {"name": "Oscar Nunez", "character": "Ramone", "id": 76094, "credit_id": "52fe476d9251416c75098e63", "cast_id": 10, "profile_path": "/nFyvVjgBTWYg3fyfAnoSKq2WmV5.jpg", "order": 7}, {"name": "Aasif Mandvi", "character": "Bob Spaulding", "id": 20644, "credit_id": "52fe476d9251416c75098e67", "cast_id": 11, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 8}, {"name": "Michael Nouri", "character": "Chairman Bergen", "id": 8699, "credit_id": "52fe476d9251416c75098e6b", "cast_id": 12, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 9}, {"name": "Michael Mosley", "character": "Chuck", "id": 72994, "credit_id": "52fe476d9251416c75098e6f", "cast_id": 13, "profile_path": "/jpcqnjuFnawfwxbNhccqKkLiToL.jpg", "order": 10}, {"name": "Dale Place", "character": "Jim McKittrick", "id": 84436, "credit_id": "52fe476d9251416c75098e73", "cast_id": 14, "profile_path": "/aPBGgkwjSyTSc8Xmx67Uuw20rqW.jpg", "order": 11}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe476d9251416c75098e3d", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 6.3, "runtime": 108}, "56288": {"poster_path": "/rjUCg7XamBEpxeRlt9IaQXKQEEw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Eight years after the third film, the OSS has become the world's top spy agency, while the Spy Kids department has since become defunct. A retired spy Marissa (Jessica Alba) is thrown back into the action along with her stepchildren when a maniacal Timekeeper (Jeremy Piven) attempts to take over the world. In order to save the world, Rebecca (Rowan Blanchard) and Cecil (Mason Cook) must team up with their hated stepmother. Carmen and Juni have since also grown up and will provide gadgets to them.", "video": false, "id": 56288, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids: All the Time in the World", "tagline": "", "vote_count": 51, "homepage": "http://spykidsmovie.net/", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1517489", "adult": false, "backdrop_path": "/aezGIrtl4Q8KaLltPum0hR4VRuB.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "SF Film", "id": 5674}], "release_date": "2011-08-18", "popularity": 1.31853810875389, "original_title": "Spy Kids: All the Time in the World", "budget": 40000000, "cast": [{"name": "Jessica Alba", "character": "Marissa Cortez Wilson", "id": 56731, "credit_id": "52fe48f7c3a36847f818289d", "cast_id": 3, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Mason Cook", "character": "Cecil Wilson", "id": 583040, "credit_id": "54056b5e0e0a264b090011ab", "cast_id": 14, "profile_path": "/19XPc3ggqJSsh5k7oYyncWGrxVz.jpg", "order": 1}, {"name": "Rowan Blanchard", "character": "Rebecca Wilson", "id": 1257205, "credit_id": "54056b4c0e0a2658d800be5b", "cast_id": 13, "profile_path": "/nwFbA1HchirxtQDALJ6hh8f5nu0.jpg", "order": 2}, {"name": "Joel McHale", "character": "Wilber Wilson", "id": 74949, "credit_id": "52fe48f7c3a36847f81828b5", "cast_id": 9, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 3}, {"name": "Jeremy Piven", "character": "Timekeeper", "id": 12799, "credit_id": "52fe48f7c3a36847f81828a5", "cast_id": 5, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 4}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe48f7c3a36847f81828a1", "cast_id": 4, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 5}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe48f7c3a36847f81828b1", "cast_id": 8, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 6}, {"name": "Ricky Gervais", "character": "Argonaut", "id": 17835, "credit_id": "54056b2d0e0a2649e50011d3", "cast_id": 12, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 7}, {"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe48f7c3a36847f81828a9", "cast_id": 6, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 8}, {"name": "Antonio Banderas", "character": "Gregorio Cortrez", "id": 3131, "credit_id": "52fe48f7c3a36847f81828ad", "cast_id": 7, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 9}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe48f7c3a36847f81828bb", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 5.2, "runtime": 89}, "1858": {"poster_path": "/bgSHbGEA1OM6qDs3Qba4VlSZsNG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 709709780, "overview": "Young teenager Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots, the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.", "video": false, "id": 1858, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers", "tagline": "Their war. Our world.", "vote_count": 1701, "homepage": "http://www.transformersmovie.com/", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0418279", "adult": false, "backdrop_path": "/ac0HwGJIU3GxjjGujlIjLJmAGPR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Hasbro", "id": 2598}, {"name": "SprocketHeads", "id": 20011}], "release_date": "2007-07-02", "popularity": 0.520307248379808, "original_title": "Transformers", "budget": 150000000, "cast": [{"name": "Shia LaBeouf", "character": "Sam 'Spike' Witwicky", "id": 10959, "credit_id": "52fe431bc3a36847f803abd1", "cast_id": 9, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Captain Lennox", "id": 19536, "credit_id": "52fe431bc3a36847f803abd5", "cast_id": 10, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Megan Fox", "character": "Mikaela Banes", "id": 19537, "credit_id": "52fe431bc3a36847f803abd9", "cast_id": 11, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 2}, {"name": "Rachael Taylor", "character": "Maggie Madsen", "id": 19538, "credit_id": "52fe431bc3a36847f803abdd", "cast_id": 12, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 3}, {"name": "Tyrese Gibson", "character": "USAF Master Sgt. Epps", "id": 8169, "credit_id": "52fe431bc3a36847f803abe1", "cast_id": 13, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 4}, {"name": "Jon Voight", "character": "John Keller", "id": 10127, "credit_id": "52fe431bc3a36847f803abe5", "cast_id": 14, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 5}, {"name": "John Turturro", "character": "Agent Simmons", "id": 1241, "credit_id": "52fe431bc3a36847f803abe9", "cast_id": 15, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 6}, {"name": "Anthony Anderson", "character": "Glen Whitman", "id": 18471, "credit_id": "52fe431bc3a36847f803abed", "cast_id": 16, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 7}, {"name": "Peter Cullen", "character": "Optimus Prime (voice)", "id": 19540, "credit_id": "52fe431bc3a36847f803abf1", "cast_id": 17, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 8}, {"name": "Mark Ryan", "character": "Transformers (voice)", "id": 19541, "credit_id": "52fe431bc3a36847f803abf5", "cast_id": 18, "profile_path": "/mBvV09ssRRE63gNaG3ZkqaZidPh.jpg", "order": 9}, {"name": "Hugo Weaving", "character": "Megatron (voice)", "id": 1331, "credit_id": "52fe431bc3a36847f803abf9", "cast_id": 19, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 10}, {"name": "Keith David", "character": "Barricade (voice)", "id": 65827, "credit_id": "52fe431bc3a36847f803abfd", "cast_id": 20, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 11}, {"name": "Kevin Dunn", "character": "Ron Witwicky", "id": 14721, "credit_id": "52fe431bc3a36847f803ac01", "cast_id": 21, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 12}, {"name": "Michael O'Neill", "character": "Tom Banacheck", "id": 21710, "credit_id": "52fe431bc3a36847f803ac05", "cast_id": 22, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 13}, {"name": "Julie White", "character": "Judy Witwicky", "id": 24305, "credit_id": "52fe431bc3a36847f803ac09", "cast_id": 23, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 14}, {"name": "Amaury Nolasco", "character": "ACWO Jorge \"Fig\" Figueroa", "id": 17341, "credit_id": "52fe431bc3a36847f803ac0d", "cast_id": 24, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 15}, {"name": "Bernie Mac", "character": "Bobby Bolivia", "id": 1897, "credit_id": "52fe431bc3a36847f803ac4d", "cast_id": 36, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 16}, {"name": "Colton Haynes", "character": "Cafe Kid", "id": 211800, "credit_id": "52fe431bc3a36847f803ac57", "cast_id": 38, "profile_path": "/c5s8Nbl9SbBILyc8wQINkFzJgro.jpg", "order": 17}, {"name": "Brian Stepanek", "character": "Sector Seven Agent", "id": 146391, "credit_id": "52fe431bc3a36847f803ac5b", "cast_id": 39, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 18}, {"name": "Frederic Doss", "character": "SOCCENT Op-Centre Tech", "id": 209680, "credit_id": "54e89ad19251412eae001ebf", "cast_id": 54, "profile_path": null, "order": 19}, {"name": "Michael Bay", "character": "Guy Flicked by Megatron (uncredited)", "id": 865, "credit_id": "551b909c9251414af9001dfd", "cast_id": 56, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 20}, {"name": "John Robinson", "character": "Miles", "id": 19197, "credit_id": "552a9decc3a36830d40008cd", "cast_id": 58, "profile_path": "/qg4baoVSBmL688HIv2Q7e6DTMT5.jpg", "order": 21}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe431bc3a36847f803aba3", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.6, "runtime": 144}, "10054": {"poster_path": "/10zMofjfvnKahF8wqZ4nNzVeNps.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Carmen and Juni think their parents are boring. Little do they know that in their day, Gregorio and Ingrid Cortez were the top secret agents from their respective countries. They gave up that life to raise their children. Now, the disappearances of several of their old colleagues forces the Cortez' return from retirement. What they didn't count on was Carmen and Juni joining the \"family business.\"", "video": false, "id": 10054, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids", "tagline": "Real spies...Only smaller", "vote_count": 183, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0227538", "adult": false, "backdrop_path": "/99g7q5X60VfUZ9XI6o0LW3N54k1.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2001-03-18", "popularity": 1.29228490529956, "original_title": "Spy Kids", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Gregorio Cortez", "id": 3131, "credit_id": "52fe43159251416c75002d65", "cast_id": 9, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Ingrid Cortez", "id": 17832, "credit_id": "52fe43159251416c75002d69", "cast_id": 10, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 1}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe43159251416c75002d6d", "cast_id": 11, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe43159251416c75002d71", "cast_id": 12, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Alan Cumming", "character": "Fegan Floop", "id": 10697, "credit_id": "52fe43159251416c75002d75", "cast_id": 13, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 4}, {"name": "Richard Linklater", "character": "Cool Spy", "id": 564, "credit_id": "52fe43159251416c75002d79", "cast_id": 14, "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "order": 5}, {"name": "Tony Shalhoub", "character": "Alexander Minion", "id": 4252, "credit_id": "52fe43169251416c75002da1", "cast_id": 21, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 6}, {"name": "Teri Hatcher", "character": "Ms. Gradenko", "id": 10742, "credit_id": "52fe43169251416c75002da5", "cast_id": 22, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 7}, {"name": "Cheech Marin", "character": "Felix Gumm", "id": 11159, "credit_id": "52fe43169251416c75002da9", "cast_id": 23, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Mr. Lisp", "id": 418, "credit_id": "52fe43169251416c75002dad", "cast_id": 24, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe43169251416c75002db1", "cast_id": 25, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Mike Judge", "character": "Donnagon / Donnamight", "id": 17403, "credit_id": "52fe43169251416c75002db5", "cast_id": 26, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 11}, {"name": "Guillermo Navarro", "character": "Pastor", "id": 3113, "credit_id": "52fe43169251416c75002db9", "cast_id": 27, "profile_path": "/AfZkxrEiLlqqHONhfJyVOLrHR8A.jpg", "order": 12}, {"name": "Johnny Reno", "character": "Agent Johnny", "id": 96007, "credit_id": "52fe43169251416c75002dbd", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Shannon Shea", "character": "FoOglie #1/Flower", "id": 1189737, "credit_id": "52fe43169251416c75002dc1", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "George Clooney", "character": "Devlin", "id": 1461, "credit_id": "55015cb6c3a3685ba6002b14", "cast_id": 30, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 15}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe43159251416c75002d37", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 5.2, "runtime": 88}, "1865": {"poster_path": "/jUkGuSC9Kt29rW3x6UiB9zyZr1M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1021683000, "overview": "Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.", "video": false, "id": 1865, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: On Stranger Tides", "tagline": "Live Forever Or Die Trying.", "vote_count": 2096, "homepage": "http://disney.go.com/pirates/index-on-stranger-tides.html#/video/", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1298650", "adult": false, "backdrop_path": "/ddPXVUAeCBFMbtTajh8bg4uyBvv.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2011-05-18", "popularity": 1.89500537925571, "original_title": "Pirates of the Caribbean: On Stranger Tides", "budget": 250000000, "cast": [{"name": "Johnny Depp", "character": "Captain Jack Sparrow", "id": 85, "credit_id": "52fe431cc3a36847f803af13", "cast_id": 15, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Ian McShane", "character": "Blackbeard", "id": 6972, "credit_id": "52fe431cc3a36847f803aed9", "cast_id": 2, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 1}, {"name": "Pen\u00e9lope Cruz", "character": "Angelica", "id": 955, "credit_id": "52fe431cc3a36847f803aef5", "cast_id": 7, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 2}, {"name": "Geoffrey Rush", "character": "Barbossa", "id": 118, "credit_id": "52fe431cc3a36847f803aef9", "cast_id": 8, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 3}, {"name": "Gemma Ward", "character": "Tamara", "id": 55901, "credit_id": "52fe431cc3a36847f803aefd", "cast_id": 9, "profile_path": "/vuuCX123OdszoKoppbhtu92xsTS.jpg", "order": 4}, {"name": "Richard Griffiths", "character": "King George II", "id": 10983, "credit_id": "52fe431cc3a36847f803af01", "cast_id": 10, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 5}, {"name": "Stephen Graham", "character": "Scrum", "id": 1115, "credit_id": "52fe431cc3a36847f803af05", "cast_id": 11, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 6}, {"name": "Kevin McNally", "character": "Gibbs", "id": 2449, "credit_id": "52fe431cc3a36847f803af09", "cast_id": 13, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 7}, {"name": "\u00d3scar Jaenada", "character": "Spaniard", "id": 59129, "credit_id": "52fe431cc3a36847f803af17", "cast_id": 16, "profile_path": "/naQmysDM8jhmwhVIrdjdVUTGHLQ.jpg", "order": 8}, {"name": "Roger Allam", "character": "Henry Pelham", "id": 11279, "credit_id": "52fe431cc3a36847f803af1b", "cast_id": 17, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 9}, {"name": "Keith Richards", "character": "Captain Teague", "id": 1430, "credit_id": "52fe431cc3a36847f803af25", "cast_id": 19, "profile_path": "/uGF4AHKqaTI8K98n1lzqtRfv4N2.jpg", "order": 10}, {"name": "Astrid Berg\u00e8s-Frisbey", "character": "Syrena", "id": 469759, "credit_id": "52fe431cc3a36847f803af29", "cast_id": 20, "profile_path": "/tyegg8trgGSRfWwnmbX69DG5rQ5.jpg", "order": 11}, {"name": "Sam Claflin", "character": "Philip", "id": 237455, "credit_id": "52fe431cc3a36847f803af2d", "cast_id": 21, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 12}, {"name": "Judi Dench", "character": "High Society Lady", "id": 5309, "credit_id": "52fe431cc3a36847f803af3d", "cast_id": 24, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 13}, {"name": "Damian O'Hare", "character": "Gillette", "id": 1712, "credit_id": "537a1e8dc3a3681cc100003f", "cast_id": 26, "profile_path": "/fKpaczsKihsuEPWInNENp1WVtwg.jpg", "order": 14}, {"name": "Richard Thomson", "character": "Derrick", "id": 1321379, "credit_id": "537a1f05c3a3681ce4000021", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Derek Mears", "character": "Master-at-Arms", "id": 51300, "credit_id": "537a1f85c3a3681ce400002d", "cast_id": 29, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 17}, {"name": "Anton Lesser", "character": "John Carteret", "id": 27397, "credit_id": "537a200bc3a3681cdf00005b", "cast_id": 30, "profile_path": "/tF6FIgBMgbSQng1ip01DC8h6rkH.jpg", "order": 18}, {"name": "Sebastian Armesto", "character": "King Ferdinand of the Spanish Empire", "id": 229634, "credit_id": "537a2041c3a3681cd5000063", "cast_id": 31, "profile_path": "/oNflfULqkire4ZPHIrWEdNdqjBU.jpg", "order": 19}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe431cc3a36847f803af0f", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.3, "runtime": 136}, "10060": {"poster_path": "/kmP2EA5O760ylJsQHybEI9CwPA1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46442528, "overview": "A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.", "video": false, "id": 10060, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Get Rich or Die Tryin'", "tagline": "If You Think You Know the Story...You Don't Know the Man.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430308", "adult": false, "backdrop_path": "/90rM3lEYz6S05XLV687IiArgAhx.jpg", "production_companies": [{"name": "MTV Films", "id": 746}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2005-11-09", "popularity": 0.753825037031556, "original_title": "Get Rich or Die Tryin'", "budget": 40000000, "cast": [{"name": "50 Cent", "character": "Marcus", "id": 62644, "credit_id": "52fe43179251416c75003083", "cast_id": 26, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 0}, {"name": "Joy Bryant", "character": "Charlene", "id": 52847, "credit_id": "52fe43179251416c7500308d", "cast_id": 28, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 1}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Majestic", "id": 31164, "credit_id": "52fe43179251416c75003091", "cast_id": 29, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 2}, {"name": "Omar Benson Miller", "character": "Keryl", "id": 334, "credit_id": "52fe43179251416c75003095", "cast_id": 30, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Bama", "id": 18288, "credit_id": "52fe43179251416c75003099", "cast_id": 31, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Viola Davis", "character": "Grandma", "id": 19492, "credit_id": "52fe43179251416c750030a1", "cast_id": 33, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}, {"name": "Ashley Walters", "character": "Antwan", "id": 61364, "credit_id": "52fe43179251416c7500309d", "cast_id": 32, "profile_path": "/d2RSHNIL3TsdkNzjPtMDiLSdYEc.jpg", "order": 6}, {"name": "Tory Kittles", "character": "Justice", "id": 62645, "credit_id": "52fe43179251416c750030a5", "cast_id": 34, "profile_path": "/jlR3xLuJug176VllNLgyZGvozhz.jpg", "order": 7}, {"name": "Marc John Jefferies", "character": "Young Marcus", "id": 62646, "credit_id": "52fe43179251416c750030a9", "cast_id": 35, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 8}, {"name": "Sullivan Walker", "character": "Grandpa", "id": 62647, "credit_id": "52fe43179251416c750030ad", "cast_id": 36, "profile_path": "/ixXteZlLb3rth7oVTQ2oGKeNOs1.jpg", "order": 9}, {"name": "Bill Duke", "character": "Levar", "id": 1103, "credit_id": "52fe43179251416c750030b1", "cast_id": 37, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 10}, {"name": "Mpho Koaho", "character": "Junebug", "id": 59713, "credit_id": "52fe43179251416c750030b5", "cast_id": 38, "profile_path": "/fjBdIbrrY9QHT1v3Lqt1Pe2oOUE.jpg", "order": 11}, {"name": "Serena Reeder", "character": "Katrina", "id": 62648, "credit_id": "52fe43179251416c750030b9", "cast_id": 39, "profile_path": "/1gJGeakckth4ZtDRihNJdthnkpw.jpg", "order": 12}, {"name": "Russell Hornsby", "character": "Odell", "id": 62649, "credit_id": "52fe43179251416c750030c1", "cast_id": 41, "profile_path": "/sLWQehUFWePO3jVSJLBCHfJYi1o.jpg", "order": 13}, {"name": "Vanessa Madden", "character": "Marcus' Relative", "id": 62652, "credit_id": "52fe43179251416c750030bd", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Joseph Pierre", "character": "Uncle Deuce", "id": 62650, "credit_id": "52fe43179251416c750030c9", "cast_id": 43, "profile_path": null, "order": 15}, {"name": "Ryan Allen", "character": "Uncle Ray", "id": 62651, "credit_id": "52fe43179251416c750030c5", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Brendan Jeffers", "character": "Marcus' Relative", "id": 62654, "credit_id": "52fe43179251416c750030cd", "cast_id": 44, "profile_path": null, "order": 17}, {"name": "Anastasia Hill", "character": "Marcus' Relative", "id": 62655, "credit_id": "52fe43179251416c750030d1", "cast_id": 45, "profile_path": null, "order": 18}, {"name": "Zainab Musa", "character": "Marcus' Relative", "id": 62653, "credit_id": "52fe43179251416c750030d5", "cast_id": 46, "profile_path": null, "order": 19}, {"name": "Lawrence Bayne", "character": "Security Guard", "id": 133921, "credit_id": "52fe43179251416c750030d9", "cast_id": 47, "profile_path": "/6hzZOxUA7rlN9XMN9BHdhBEfvKE.jpg", "order": 20}], "directors": [{"name": "Jim Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe43169251416c75002ff5", "profile_path": "/mfukw1JcUsXmUzt6IoaayMaescv.jpg", "id": 53334}], "vote_average": 6.7, "runtime": 117}, "10061": {"poster_path": "/oR8E10bBEivuw4D946QKjwGhGxm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42277365, "overview": "This time, a cataclysmic temblor hits Los Angeles, turning it into an island. The president views the quake as a sign from above, expels Los Angeles from the country and makes it a penal colony for those found guilty of moral crimes. When his daughter, part of a resistance movement, steals the control unit for a doomsday weapon, Snake again gets tapped to save the day.", "video": false, "id": 10061, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Escape from L.A.", "tagline": "Snake Is Back.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": "/u3tHIjkTj8C2gHOTFmzZgEXOQxp.jpg", "poster_path": "/8Zih8QGPJNXUuws0fIZmjxjs2Su.jpg", "id": 115838, "name": "Escape From ... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116225", "adult": false, "backdrop_path": "/cXcPYkni9J8JsRfNVmepmyidMp9.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rysher Entertainment", "id": 11661}], "release_date": "1996-08-09", "popularity": 0.795762937457861, "original_title": "Escape from L.A.", "budget": 50000000, "cast": [{"name": "Kurt Russell", "character": "Snake Plissken", "id": 6856, "credit_id": "52fe43179251416c7500313f", "cast_id": 12, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Stacy Keach", "character": "Malloy", "id": 825, "credit_id": "52fe43179251416c75003143", "cast_id": 13, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Eddie", "id": 884, "credit_id": "52fe43179251416c75003147", "cast_id": 14, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Peter Fonda", "character": "Pipeline", "id": 8949, "credit_id": "52fe43179251416c7500314b", "cast_id": 15, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 3}, {"name": "Pam Grier", "character": "Hershe Las Palamas", "id": 2230, "credit_id": "52fe43179251416c7500314f", "cast_id": 16, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 4}, {"name": "Breckin Meyer", "character": "Surfer", "id": 33654, "credit_id": "52fe43179251416c75003153", "cast_id": 17, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 5}, {"name": "Cliff Robertson", "character": "President", "id": 19153, "credit_id": "52fe43179251416c75003157", "cast_id": 18, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 6}, {"name": "Valeria Golino", "character": "Taslima", "id": 3124, "credit_id": "52fe43179251416c7500315b", "cast_id": 19, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 7}, {"name": "Bruce Campbell", "character": "Surgeon General of Beverly Hills", "id": 11357, "credit_id": "52fe43179251416c7500315f", "cast_id": 20, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 8}, {"name": "Georges Corraface", "character": "Cuervo Jones", "id": 35529, "credit_id": "52fe43179251416c75003163", "cast_id": 21, "profile_path": "/aZBnG9VA8bYlk79A70Ro2NKzxI3.jpg", "order": 9}, {"name": "Michelle Forbes", "character": "Brazen", "id": 41820, "credit_id": "52fe43179251416c75003167", "cast_id": 22, "profile_path": "/ji2HPs84VFMiALSP9VnBZEALfT1.jpg", "order": 10}, {"name": "A. J. Langer", "character": "Utopia", "id": 157904, "credit_id": "52fe43179251416c7500316b", "cast_id": 23, "profile_path": "/iA2AfnJZBDgZEcZrjryq7RwGjER.jpg", "order": 11}, {"name": "Leland Orser", "character": "Test Tube", "id": 2221, "credit_id": "52fe43179251416c7500316f", "cast_id": 24, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 12}, {"name": "Jeff Imada", "character": "Saigon Shadow", "id": 169628, "credit_id": "52fe43179251416c75003173", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Al Leong", "character": "Hershe Gang Member", "id": 61704, "credit_id": "52fe43179251416c75003177", "cast_id": 26, "profile_path": "/9f8m0g6BgdwfQfS6ewhDOrW4kzs.jpg", "order": 14}, {"name": "James Lew", "character": "Hershe Gang Member", "id": 94089, "credit_id": "52fe43179251416c7500317b", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe43179251416c7500311d", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 5.7, "runtime": 97}, "9869": {"poster_path": "/9cnA2FDTexrfTNowp37BQQ69yW0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 178000000, "overview": "When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets him and his family for revenge.", "video": false, "id": 9869, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Patriot Games", "tagline": "Not for honor. Not for country. For his wife and child.", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105112", "adult": false, "backdrop_path": "/VQ8unvKZ34jz5Maj6UBWY27iS9.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "1992-06-04", "popularity": 0.685986791098421, "original_title": "Patriot Games", "budget": 42000000, "cast": [{"name": "Harrison Ford", "character": "Jack Ryan", "id": 3, "credit_id": "52fe453bc3a36847f80c33b1", "cast_id": 11, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Anne Archer", "character": "Dr. Caroline \"Cathy\" Ryan", "id": 10427, "credit_id": "52fe453bc3a36847f80c33b5", "cast_id": 12, "profile_path": "/zemspOk1FECjvjRWrH6modUgHiL.jpg", "order": 1}, {"name": "Patrick Bergin", "character": "Kevin O'Donnell", "id": 29459, "credit_id": "52fe453bc3a36847f80c33b9", "cast_id": 13, "profile_path": "/wmwtMCZsFTlckrsCpuz0jtuWu35.jpg", "order": 2}, {"name": "Thora Birch", "character": "Sally Ryan", "id": 2155, "credit_id": "52fe453bc3a36847f80c33bd", "cast_id": 15, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 3}, {"name": "James Fox", "character": "Lord William Holmes", "id": 1292, "credit_id": "52fe453bc3a36847f80c33c1", "cast_id": 16, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 4}, {"name": "Samuel L. Jackson", "character": "Lt. Cmdr. Robby Jackson", "id": 2231, "credit_id": "52fe453bc3a36847f80c33c5", "cast_id": 17, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 5}, {"name": "Polly Walker", "character": "Annette", "id": 6416, "credit_id": "52fe453bc3a36847f80c33c9", "cast_id": 18, "profile_path": "/swfioO83iyf5aB2svD0tgIWlCSr.jpg", "order": 6}, {"name": "J.E. Freeman", "character": "Marty Cantor", "id": 5169, "credit_id": "52fe453bc3a36847f80c33cd", "cast_id": 19, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 7}, {"name": "James Earl Jones", "character": "Adm. James Greer", "id": 15152, "credit_id": "52fe453bc3a36847f80c33d1", "cast_id": 20, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 8}, {"name": "Sean Bean", "character": "Sean Miller", "id": 48, "credit_id": "52fe453bc3a36847f80c33d5", "cast_id": 21, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 9}, {"name": "Richard Harris", "character": "Paddy O'Neil", "id": 194, "credit_id": "52fe453bc3a36847f80c33d9", "cast_id": 22, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 10}, {"name": "Alex Norton", "character": "Dennis Cooley", "id": 2451, "credit_id": "52fe453bc3a36847f80c33dd", "cast_id": 23, "profile_path": "/yqmwlDs8CDxCJNa72lNxNwRKoSa.jpg", "order": 11}, {"name": "Hugh Fraser", "character": "Watkins", "id": 67028, "credit_id": "52fe453bc3a36847f80c33e1", "cast_id": 24, "profile_path": "/jRuVH8p9lWCjnggOAyUBpyJFE4Q.jpg", "order": 12}, {"name": "David Threlfall", "character": "Inspector Highland", "id": 59081, "credit_id": "52fe453bc3a36847f80c33e5", "cast_id": 25, "profile_path": "/qhjrbokMi1DYcrL4B8YuIr3IT5y.jpg", "order": 13}, {"name": "Alun Armstrong", "character": "Owens", "id": 2629, "credit_id": "52fe453bc3a36847f80c33e9", "cast_id": 26, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 14}, {"name": "Berlinda Tolbert", "character": "Sissy", "id": 56951, "credit_id": "52fe453bc3a36847f80c33ed", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Hugh Ross", "character": "Barrister Atkinson", "id": 79648, "credit_id": "52fe453bc3a36847f80c33f1", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Gerald Sim", "character": "Lord Justice", "id": 91663, "credit_id": "52fe453bc3a36847f80c33f5", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Pip Torrens", "character": "First Aide", "id": 36666, "credit_id": "52fe453bc3a36847f80c33f9", "cast_id": 30, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 18}, {"name": "Thomas Russell", "character": "Ashley", "id": 238272, "credit_id": "52fe453bc3a36847f80c33fd", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Jonathan Ryan", "character": "Jimmy Reardon", "id": 207555, "credit_id": "52fe453bc3a36847f80c3401", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Andrew Connolly", "character": "Charlie Dugan", "id": 112267, "credit_id": "52fe453bc3a36847f80c3405", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Keith Campbell", "character": "Ned Clark", "id": 15318, "credit_id": "53b94a080e0a26358800060d", "cast_id": 34, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 22}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe453bc3a36847f80c3377", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 5.9, "runtime": 117}, "10065": {"poster_path": "/t84QerE2iYrvqyDZHPr55veUlf5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A family is terrorized by demonic forces after moving into a home that was the site of a grisly mass-murder.", "video": false, "id": 10065, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Amityville Horror", "tagline": "What happened over the next 28 days has never been explained.", "vote_count": 119, "homepage": "http://www.amityvillehorrormovie.com", "belongs_to_collection": {"backdrop_path": "/py47wV07x4lTFbl90Ebg4vT6ulm.jpg", "poster_path": "/mCgrPiZQL8Z68JY6jsjVKA2YDLK.jpg", "id": 101950, "name": "The Amityville Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384806", "adult": false, "backdrop_path": "/zrLF8DtMgdiLfNbJU6VrhaN8Mpf.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Metro-Goldwyn-Mayer Pictures", "id": 6127}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Radar Pictures", "id": 14718}], "release_date": "2005-04-15", "popularity": 0.871215704622949, "original_title": "The Amityville Horror", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "George Lutz", "id": 10859, "credit_id": "52fe43199251416c750035e3", "cast_id": 25, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Melissa George", "character": "Kathy Lutz", "id": 27755, "credit_id": "52fe43199251416c750035e7", "cast_id": 26, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 1}, {"name": "Jesse James", "character": "Billy Lutz", "id": 10135, "credit_id": "52fe43199251416c750035eb", "cast_id": 27, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 2}, {"name": "Chlo\u00eb Grace Moretz", "character": "Chelsea Lutz", "id": 56734, "credit_id": "52fe43199251416c750035ef", "cast_id": 28, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 3}, {"name": "Jimmy Bennett", "character": "Michael Lutz", "id": 6860, "credit_id": "52fe43199251416c75003603", "cast_id": 32, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 4}, {"name": "Rachel Nichols", "character": "Lisa", "id": 50347, "credit_id": "52fe43199251416c750035f3", "cast_id": 29, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 5}, {"name": "Philip Baker Hall", "character": "Father Callaway", "id": 4492, "credit_id": "52fe43199251416c75003607", "cast_id": 33, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 6}, {"name": "Isabel Conner", "character": "Jodie Defeo", "id": 62728, "credit_id": "52fe43199251416c7500360f", "cast_id": 35, "profile_path": "/fxF7C1NbGiREC6LPCF5b8hv6vpY.jpg", "order": 7}, {"name": "Brendan Donaldson", "character": "Ronald Defeo", "id": 62729, "credit_id": "52fe43199251416c75003613", "cast_id": 36, "profile_path": "/uNR3mGH94fwUqPuQ4Zx8iXwuij4.jpg", "order": 8}, {"name": "David Gee", "character": "ER Doctor", "id": 62732, "credit_id": "52fe43199251416c75003617", "cast_id": 37, "profile_path": "/7xNGc3jWaIOgvKytVb8d6h6uUZp.jpg", "order": 9}, {"name": "Rich Komenich", "character": "Chief of Police", "id": 62731, "credit_id": "52fe43199251416c7500361b", "cast_id": 38, "profile_path": "/51pvjdwa9ar77xjMCS2vnFXoIjD.jpg", "order": 10}, {"name": "Annabel Armour", "character": "Realtor", "id": 62730, "credit_id": "52fe43199251416c7500361f", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Danny McCarthy", "character": "Officer Greguski", "id": 59145, "credit_id": "52fe43199251416c7500360b", "cast_id": 34, "profile_path": "/tP3Clrc63rfIDP5f9uDT2h3aCMs.jpg", "order": 12}, {"name": "Nancy Lollar", "character": "Librarian", "id": 62733, "credit_id": "52fe43199251416c75003623", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Jos\u00e9 Taitano", "character": "Stitch", "id": 62734, "credit_id": "52fe43199251416c75003627", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Lenore Thomas", "character": "Nurse Fuller", "id": 62737, "credit_id": "52fe43199251416c7500362b", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Jenny Strubin", "character": "Grocery Cashier", "id": 62736, "credit_id": "52fe43199251416c7500362f", "cast_id": 43, "profile_path": null, "order": 16}, {"name": "Dorian Kingi", "character": "Scary Leashed Indian", "id": 62735, "credit_id": "52fe43199251416c75003633", "cast_id": 44, "profile_path": null, "order": 17}], "directors": [{"name": "Andrew Douglas", "department": "Directing", "job": "Director", "credit_id": "52fe43199251416c75003597", "profile_path": null, "id": 62721}], "vote_average": 5.8, "runtime": 90}, "10066": {"poster_path": "/mlLHueKU7upuFHowQK80O96xp7O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68, "overview": "A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.", "video": false, "id": 10066, "genres": [{"id": 27, "name": "Horror"}], "title": "House of Wax", "tagline": "Prey. Slay. Display", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397065", "adult": false, "backdrop_path": "/9WRj8tXnfl3aSTv4ydEHTipxQ0e.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2005-05-06", "popularity": 1.03034369592418, "original_title": "House of Wax", "budget": 40000000, "cast": [{"name": "Elisha Cuthbert", "character": "Carly Jones", "id": 25837, "credit_id": "52fe43199251416c75003701", "cast_id": 22, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 0}, {"name": "Paris Hilton", "character": "Paige Edwards", "id": 38406, "credit_id": "52fe43199251416c75003705", "cast_id": 23, "profile_path": "/fFS3dURYg1NTCshT7XxnFDZ3CNI.jpg", "order": 1}, {"name": "Brian Van Holt", "character": "Bo / Vincent", "id": 12792, "credit_id": "52fe43199251416c75003709", "cast_id": 24, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 2}, {"name": "Jared Padalecki", "character": "Wade", "id": 49623, "credit_id": "52fe43199251416c75003713", "cast_id": 26, "profile_path": "/uQLe1lfEBul3locVlV8nXD6n8TI.jpg", "order": 3}, {"name": "Chad Michael Murray", "character": "Nick Jones", "id": 62747, "credit_id": "52fe43199251416c75003717", "cast_id": 27, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 4}, {"name": "Jon Abrahams", "character": "Dalton Chapman", "id": 17866, "credit_id": "52fe43199251416c7500371b", "cast_id": 28, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 5}, {"name": "Robert Ri'chard", "character": "Blake", "id": 52037, "credit_id": "52fe43199251416c7500371f", "cast_id": 29, "profile_path": "/rB75BONTtezBafFI4TzYzYYO8T3.jpg", "order": 6}, {"name": "Thomas Adamson", "character": "Young Bo", "id": 62749, "credit_id": "52fe43199251416c75003727", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Dragicia Debert", "character": "Trudy Sinclair", "id": 62748, "credit_id": "52fe43199251416c75003723", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Murray Smith", "character": "Dr. Victor Sinclair", "id": 62750, "credit_id": "52fe43199251416c7500372b", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Sam Harkess", "character": "Young Vincent", "id": 62751, "credit_id": "52fe43199251416c7500372f", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Damon Herriman", "character": "Roadkill Driver", "id": 62752, "credit_id": "52fe43199251416c75003733", "cast_id": 34, "profile_path": "/dbf7CnLNuMl1sCScOD7MllimLMV.jpg", "order": 11}, {"name": "Emma Lung", "character": "Jennifer", "id": 62754, "credit_id": "52fe43199251416c75003737", "cast_id": 35, "profile_path": "/f60E175MgyoOFluTyCPeJ3PyAMb.jpg", "order": 12}, {"name": "Andy Anderson", "character": "Sheriff", "id": 62753, "credit_id": "52fe43199251416c75003741", "cast_id": 37, "profile_path": "/oqMIHWHvKIFBTSYWPrQSvaeNJi9.jpg", "order": 13}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe43199251416c75003691", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 5.5, "runtime": 113}, "1878": {"poster_path": "/u9ffgobMADj6GCafeImbov566j9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10680275, "overview": "The hallucinogenic misadventures of sportswriter Raoul Duke and his Samoan lawyer, Dr. Gonzo, on a three-day romp from Los Angeles to Las Vegas. Motoring across the Mojave Desert on the way to Sin City, Duke and his purple haze passenger ingest a cornucopia of drugs ranging from acid to ether.", "video": false, "id": 1878, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Fear and Loathing in Las Vegas", "tagline": "Buy the ticket, take the ride.", "vote_count": 347, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120669", "adult": false, "backdrop_path": "/ujdkwg9sIlgBUSVF1NoiipFdUGv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1998-05-21", "popularity": 1.31439158999466, "original_title": "Fear and Loathing in Las Vegas", "budget": 18500000, "cast": [{"name": "Johnny Depp", "character": "Raoul Duke", "id": 85, "credit_id": "52fe431dc3a36847f803b487", "cast_id": 11, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Benicio del Toro", "character": "Dr. Gonzo / Oscar Z. Acosta", "id": 1121, "credit_id": "52fe431dc3a36847f803b4e7", "cast_id": 32, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 1}, {"name": "Tobey Maguire", "character": "Hitchhiker", "id": 2219, "credit_id": "52fe431dc3a36847f803b48b", "cast_id": 12, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 2}, {"name": "Christina Ricci", "character": "Lucy", "id": 6886, "credit_id": "52fe431dc3a36847f803b497", "cast_id": 15, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 3}, {"name": "Ellen Barkin", "character": "Waitress at North Star Cafe", "id": 6913, "credit_id": "52fe431dc3a36847f803b48f", "cast_id": 13, "profile_path": "/rjo0S9uJ9pIEZenvYVCEdqcR8Qu.jpg", "order": 4}, {"name": "Gary Busey", "character": "Highway Patrolman", "id": 2048, "credit_id": "52fe431dc3a36847f803b493", "cast_id": 14, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 5}, {"name": "Cameron Diaz", "character": "Blonde TV Reporter", "id": 6941, "credit_id": "52fe431dc3a36847f803b49f", "cast_id": 17, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 6}, {"name": "Mark Harmon", "character": "Magazine Reporter at Mint 400", "id": 19728, "credit_id": "52fe431dc3a36847f803b49b", "cast_id": 16, "profile_path": "/siHSN1px6pn3EQ3UUj1rOnfpHjI.jpg", "order": 7}, {"name": "Katherine Helmond", "character": "Desk Clerk at Mint Hotel", "id": 381, "credit_id": "52fe431dc3a36847f803b4a3", "cast_id": 18, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 8}, {"name": "Michael Jeter", "character": "Ron Bumquist", "id": 2169, "credit_id": "52fe431dc3a36847f803b4a7", "cast_id": 19, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 9}, {"name": "Penn Jillette", "character": "Carnie Talker", "id": 37221, "credit_id": "52fe431dc3a36847f803b4cf", "cast_id": 26, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 10}, {"name": "Craig Bierko", "character": "Lacerda", "id": 14886, "credit_id": "52fe431dc3a36847f803b4d3", "cast_id": 27, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 11}, {"name": "Lyle Lovett", "character": "Road Person", "id": 11059, "credit_id": "52fe431dc3a36847f803b4d7", "cast_id": 28, "profile_path": "/yDaJWyKH5MKZkAPVCb6vMC2lnlJ.jpg", "order": 12}, {"name": "Laraine Newman", "character": "Frog-Eyed Woman", "id": 35159, "credit_id": "52fe431dc3a36847f803b4db", "cast_id": 29, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 13}, {"name": "Harry Dean Stanton", "character": "Judge", "id": 5048, "credit_id": "52fe431dc3a36847f803b4df", "cast_id": 30, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 14}, {"name": "Tim Thomerson", "character": "Hoodlum", "id": 29712, "credit_id": "52fe431dc3a36847f803b4e3", "cast_id": 31, "profile_path": "/bh8TYtiz09sSen5seoVPdcsZ9SF.jpg", "order": 15}, {"name": "Flea", "character": "Hippie/Musician", "id": 1237, "credit_id": "52fe431dc3a36847f803b4f1", "cast_id": 34, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 16}, {"name": "Christopher Meloni", "character": "Sven, Flamingo Hotel Clerk", "id": 22227, "credit_id": "52fe431dc3a36847f803b4f5", "cast_id": 35, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 17}, {"name": "Troy Evans", "character": "Police Chief", "id": 31006, "credit_id": "52fe431dc3a36847f803b4f9", "cast_id": 36, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 18}, {"name": "Debbie Reynolds", "character": "Herself (voice)", "id": 8857, "credit_id": "52fe431dc3a36847f803b4fd", "cast_id": 37, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 19}, {"name": "Jenette Goldstein", "character": "Alice the Maid", "id": 3981, "credit_id": "52fe431dc3a36847f803b501", "cast_id": 38, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 20}, {"name": "Verne Troyer", "character": "Wee Waiter", "id": 10987, "credit_id": "52fe431dc3a36847f803b505", "cast_id": 39, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 21}, {"name": "Gregory Itzin", "character": "Mint Hotel Clerk", "id": 21142, "credit_id": "52fe431dc3a36847f803b509", "cast_id": 40, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 22}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b453", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.2, "runtime": 118}, "34647": {"poster_path": "/PayQwjnWFJLMbSllV2Gq1kkQs8.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "This psychedelic tour of life after death is seen entirely from the point of view of Oscar (Nathaniel Brown), a young American drug dealer and addict living in Tokyo with his prostitute sister, Linda (Paz de la Huerta). When Oscar is killed by police during a bust gone bad, his spirit journeys from the past -- where he sees his parents before their deaths -- to the present -- where he witnesses his own autopsy -- and then to the future, where he looks out for his sister from beyond the grave.", "video": false, "id": 34647, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Enter the Void", "tagline": "", "vote_count": 64, "homepage": "http://www.ifcfilms.com/films/enter-the-void", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1191111", "adult": false, "backdrop_path": "/AdAxR8ObgT8Cz0d5hp4UuZGibrW.jpg", "production_companies": [{"name": "BIM Distribuzione", "id": 225}, {"name": "Wild Bunch", "id": 856}], "release_date": "2009-05-05", "popularity": 0.406017995685585, "original_title": "Enter the Void", "budget": 13000000, "cast": [{"name": "Nathaniel Brown", "character": "Oscar", "id": 112741, "credit_id": "52fe45719251416c91032793", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Paz de la Huerta", "character": "Linda", "id": 59882, "credit_id": "52fe45719251416c91032797", "cast_id": 4, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 1}, {"name": "Cyril Roy", "character": "Alex", "id": 112745, "credit_id": "52fe45719251416c910327a7", "cast_id": 8, "profile_path": null, "order": 2}, {"name": "Masato Tanno", "character": "Mario", "id": 545627, "credit_id": "52fe45719251416c910327af", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Jesse Kuhn", "character": "Young Oscar", "id": 112743, "credit_id": "52fe45719251416c9103279f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Ed Spear", "character": "Bruno", "id": 112744, "credit_id": "52fe45719251416c910327a3", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Emily Alyn Lind", "character": "Young Linda", "id": 112742, "credit_id": "52fe45719251416c9103279b", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Olly Alexander", "character": "Victor", "id": 89823, "credit_id": "52fe45719251416c910327ab", "cast_id": 9, "profile_path": "/11MOco4DycbgPxRtYKa1Hwhe9oC.jpg", "order": 7}], "directors": [{"name": "Gaspar No\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe45719251416c91032789", "profile_path": "/zuzX3QLKI4FKsOB4QPseYkO73mY.jpg", "id": 14597}], "vote_average": 7.1, "runtime": 161}, "1880": {"poster_path": "/hVyeN1aFmqLsRK9VNElETYBDtnf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35, "overview": "It is the mid-1980s. From out of the sky, Soviet and Cuban troops begin landing on the football field of a Colorado high school. In seconds, the paratroops have attacked the school and sent a group of teenagers fleeing into the mountains. Armed only with hunting rifles, pistols and bows and arrows, the teens struggles to survive the bitter winter and Soviet KGB patrols hunting for them.", "video": false, "id": 1880, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Red Dawn", "tagline": "", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0087985", "adult": false, "backdrop_path": "/9obFHiluXvDaALGsrdJIOhh5HO9.jpg", "production_companies": [{"name": "Valkyrie Films", "id": 774}, {"name": "United Artists", "id": 60}], "release_date": "1984-08-10", "popularity": 0.326183693099396, "original_title": "Red Dawn", "budget": 0, "cast": [{"name": "Patrick Swayze", "character": "Jed", "id": 723, "credit_id": "52fe431dc3a36847f803b5af", "cast_id": 1, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 0}, {"name": "C. Thomas Howell", "character": "Robert", "id": 2878, "credit_id": "52fe431dc3a36847f803b5b3", "cast_id": 2, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Erica", "id": 1063, "credit_id": "52fe431dc3a36847f803b5b7", "cast_id": 3, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Darren Dalton", "character": "Daryl", "id": 2884, "credit_id": "52fe431dc3a36847f803b5bb", "cast_id": 4, "profile_path": "/ilvaY9lSWPWMPXxRmrDBTl3xbWm.jpg", "order": 3}, {"name": "Charlie Sheen", "character": "Matt", "id": 6952, "credit_id": "52fe431dc3a36847f803b5bf", "cast_id": 5, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 4}, {"name": "Jennifer Grey", "character": "Toni", "id": 722, "credit_id": "52fe431dc3a36847f803b5e7", "cast_id": 12, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 5}, {"name": "Brad Savage", "character": "Danny", "id": 19737, "credit_id": "52fe431dc3a36847f803b5eb", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Ben Johnson", "character": "Mr. Mason", "id": 8258, "credit_id": "52fe431dc3a36847f803b5fb", "cast_id": 16, "profile_path": "/39W793yr65FB1JqcctWQMmzYBAD.jpg", "order": 7}, {"name": "Harry Dean Stanton", "character": "Mr. Eckert", "id": 5048, "credit_id": "52fe431dc3a36847f803b5ff", "cast_id": 17, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 8}, {"name": "William Smith", "character": "Strelnikov", "id": 98102, "credit_id": "52fe431dc3a36847f803b603", "cast_id": 18, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 9}, {"name": "Powers Boothe", "character": "Lt. Col. Andrew 'Andy' Tanner", "id": 6280, "credit_id": "52fe431dc3a36847f803b607", "cast_id": 19, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 10}], "directors": [{"name": "John Milius", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b5d7", "profile_path": "/uBNb69DEc84IZxKD1bdo8Ex2j6j.jpg", "id": 8328}], "vote_average": 6.7, "runtime": 114}, "10074": {"poster_path": "/6LDKcAFFNJ3ra1a5LgPSiAbyJHC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13938332, "overview": "For Rod Kimball, performing stunts is a way of life, even though he is rather accident-prone. Poor Rod cannot even get any respect from his stepfather, Frank, who beats him up in weekly sparring matches. When Frank falls ill, Rod devises his most outrageous stunt yet to raise money for Frank's operation -- and then Rod will kick Frank's butt.", "video": false, "id": 10074, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Hot Rod", "tagline": "Smack destiny in the face.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0787475", "adult": false, "backdrop_path": "/jbhGokP7nrCoHwDsWxW5pbOBrjR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2007-08-03", "popularity": 0.584943133437151, "original_title": "Hot Rod", "budget": 0, "cast": [{"name": "Andy Samberg", "character": "Rod Kimble", "id": 62861, "credit_id": "52fe431d9251416c75003fe1", "cast_id": 22, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 0}, {"name": "Isla Fisher", "character": "Denise", "id": 52848, "credit_id": "52fe431d9251416c75003fe5", "cast_id": 23, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 1}, {"name": "Bill Hader", "character": "Dave", "id": 19278, "credit_id": "52fe431d9251416c75003fed", "cast_id": 25, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 2}, {"name": "Sissy Spacek", "character": "Marie Powell", "id": 5606, "credit_id": "52fe431d9251416c75003fe9", "cast_id": 24, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 3}, {"name": "Danny McBride", "character": "Rico", "id": 62862, "credit_id": "52fe431d9251416c75003ff1", "cast_id": 26, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 4}, {"name": "Jorma Taccone", "character": "Kevin Powell", "id": 62863, "credit_id": "52fe431d9251416c75003ff5", "cast_id": 27, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 5}, {"name": "Ian McShane", "character": "Frank Powell", "id": 6972, "credit_id": "52fe431d9251416c75003ff9", "cast_id": 28, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 6}, {"name": "Will Arnett", "character": "Jonathan", "id": 21200, "credit_id": "52fe431d9251416c75003ffd", "cast_id": 29, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 7}, {"name": "Chris Parnell", "character": "Barry Pasternack", "id": 51382, "credit_id": "52fe431d9251416c75004001", "cast_id": 30, "profile_path": "/dLdXHfbJ7TMe3qbtNzPpSLuaMos.jpg", "order": 8}, {"name": "Mark Acheson", "character": "Homeless Dude", "id": 32751, "credit_id": "52fe431d9251416c75004005", "cast_id": 31, "profile_path": "/8XWp2fiHiyYcgMeEgcttdpiJpRw.jpg", "order": 9}, {"name": "Ken Kirzinger", "character": "Trailer Guy", "id": 50094, "credit_id": "52fe431d9251416c75004009", "cast_id": 32, "profile_path": "/g90jZeSii6OmNOlNoxGFwCb2spJ.jpg", "order": 10}, {"name": "Alana Husband", "character": "Waitress", "id": 41434, "credit_id": "52fe431d9251416c7500400d", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Chester Tam", "character": "Richardson", "id": 62864, "credit_id": "52fe431d9251416c75004011", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Britt Irvin", "character": "Cathy", "id": 62866, "credit_id": "52fe431d9251416c75004015", "cast_id": 35, "profile_path": "/mgM6EMxHLlliratzLQC6dJOKTnd.jpg", "order": 13}, {"name": "Brittany Tiplady", "character": "Maggie", "id": 62865, "credit_id": "52fe431d9251416c75004019", "cast_id": 36, "profile_path": "/qfOvLcYe20JdmvZ2PY8M89z3Gzo.jpg", "order": 14}, {"name": "Andrew Moxham", "character": "Sullivan", "id": 62867, "credit_id": "52fe431d9251416c7500401d", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Alvin Sanders", "character": "Furious Boss", "id": 62869, "credit_id": "52fe431d9251416c75004021", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Terri O'Neill", "character": "Angry Mom", "id": 62868, "credit_id": "52fe431d9251416c75004025", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Paulo Ribeiro", "character": "EMT", "id": 62871, "credit_id": "52fe431d9251416c75004029", "cast_id": 40, "profile_path": null, "order": 18}, {"name": "Chris Eastman", "character": "EMT", "id": 62870, "credit_id": "52fe431d9251416c7500402d", "cast_id": 41, "profile_path": null, "order": 19}], "directors": [{"name": "Akiva Schaffer", "department": "Directing", "job": "Director", "credit_id": "52fe431d9251416c75003fa7", "profile_path": "/AndF7ndhBbCgHTicoHjCKDxmoi5.jpg", "id": 62854}], "vote_average": 5.9, "runtime": 88}, "1883": {"poster_path": "/jDQ2iBJuiimvYqk9orA2YaigBmW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48169908, "overview": "The biopic of the controversial and influential Black Nationalist leader.", "video": false, "id": 1883, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Malcolm X", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104797", "adult": false, "backdrop_path": "/zGP6Z763OkhtxcBemkm3HAWSNjF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "JVC Entertainment", "id": 182}], "release_date": "1992-11-18", "popularity": 0.879723779738991, "original_title": "Malcolm X", "budget": 34000000, "cast": [{"name": "Denzel Washington", "character": "Malcolm X", "id": 5292, "credit_id": "52fe431dc3a36847f803b6f1", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Angela Bassett", "character": "Dr. Betty Shabazz", "id": 9780, "credit_id": "52fe431dc3a36847f803b6f5", "cast_id": 2, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 1}, {"name": "Albert Hall", "character": "Baines", "id": 8354, "credit_id": "52fe431dc3a36847f803b6f9", "cast_id": 3, "profile_path": "/yHGN2pIdBcBk19sAu0EchOxfYMY.jpg", "order": 2}, {"name": "Al Freeman, Jr.", "character": "Elijah Muhammad", "id": 19739, "credit_id": "52fe431dc3a36847f803b6fd", "cast_id": 4, "profile_path": "/lDckTN0EKGEPzaWWKtvUd1CNkk7.jpg", "order": 3}, {"name": "Delroy Lindo", "character": "West Indian Archie", "id": 18792, "credit_id": "52fe431dc3a36847f803b701", "cast_id": 5, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 4}, {"name": "Spike Lee", "character": "Shorty", "id": 5281, "credit_id": "52fe431dc3a36847f803b705", "cast_id": 6, "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "order": 5}, {"name": "Theresa Randle", "character": "Laura", "id": 4604, "credit_id": "52fe431dc3a36847f803b709", "cast_id": 7, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 6}, {"name": "Kate Vernon", "character": "Sophia", "id": 19740, "credit_id": "52fe431dc3a36847f803b70d", "cast_id": 8, "profile_path": "/qQRoxwIVkRU0al9J2EUDBSD80kq.jpg", "order": 7}, {"name": "Peter Boyle", "character": "Captain Green", "id": 1039, "credit_id": "52fe431dc3a36847f803b74d", "cast_id": 19, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 8}, {"name": "Giancarlo Esposito", "character": "Thomas Hayer", "id": 4808, "credit_id": "52fe431dc3a36847f803b751", "cast_id": 20, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 9}, {"name": "Karen Allen", "character": "Miss Dunne", "id": 650, "credit_id": "52fe431dc3a36847f803b755", "cast_id": 21, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 10}, {"name": "Christopher Plummer", "character": "Chaplain Gill", "id": 290, "credit_id": "52fe431dc3a36847f803b759", "cast_id": 22, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 11}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b713", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 6.7, "runtime": 202}, "75612": {"poster_path": "/hmOzkHlkGvi8x24fYpFSnXvjklv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 286168572, "overview": "Jack Harper (Tom Cruise) is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack\u2019s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.", "video": false, "id": 75612, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Oblivion", "tagline": "Earth is a memory worth fighting for", "vote_count": 2677, "homepage": "http://www.oblivionmovie2013.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1483013", "adult": false, "backdrop_path": "/8TE77jL2e4zdERpv8hnBAHUmFRx.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Monolith Pictures (III)", "id": 19647}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Radical Studios", "id": 19648}], "release_date": "2013-04-18", "popularity": 2.90611047188882, "original_title": "Oblivion", "budget": 120000000, "cast": [{"name": "Tom Cruise", "character": "Jack", "id": 500, "credit_id": "52fe4909c3a368484e1175c3", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Beech", "id": 192, "credit_id": "52fe4909c3a368484e117651", "cast_id": 39, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Olga Kurylenko", "character": "Julia", "id": 18182, "credit_id": "52fe4909c3a368484e11762d", "cast_id": 28, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 2}, {"name": "Andrea Riseborough", "character": "Victoria", "id": 127558, "credit_id": "52fe4909c3a368484e117631", "cast_id": 29, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 3}, {"name": "Nikolaj Coster-Waldau", "character": "Sykes", "id": 12795, "credit_id": "52fe4909c3a368484e117635", "cast_id": 30, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 4}, {"name": "Melissa Leo", "character": "Sally", "id": 6832, "credit_id": "52fe4909c3a368484e117655", "cast_id": 41, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 5}, {"name": "Zo\u00eb Bell", "character": "Kara", "id": 20494, "credit_id": "52fe4909c3a368484e11768f", "cast_id": 58, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 6}, {"name": "Abigail Lowe", "character": "Julia's Child", "id": 1171690, "credit_id": "52fe4909c3a368484e117693", "cast_id": 59, "profile_path": null, "order": 7}, {"name": "Isabelle Lowe", "character": "Julia's Child", "id": 1171689, "credit_id": "52fe4909c3a368484e117697", "cast_id": 60, "profile_path": null, "order": 8}, {"name": "David Madison", "character": "Grow Hall Survivor", "id": 1198939, "credit_id": "52fe4909c3a368484e11769b", "cast_id": 61, "profile_path": "/iDdNORBzEC0fw37TMpO0uHYCaR7.jpg", "order": 9}, {"name": "John L. Armijo", "character": "NASA Ground Control", "id": 1158069, "credit_id": "53c993adc3a368778d00013e", "cast_id": 62, "profile_path": "/c52EjlXyT7khV9Nb1sqvs7QlYta.jpg", "order": 10}, {"name": "Fileena Bahris", "character": "Survivor", "id": 139188, "credit_id": "53c993c6c3a3687787000133", "cast_id": 63, "profile_path": "/vDi6OPHDtuMPW9G3xEd3zeEBnI6.jpg", "order": 11}, {"name": "Joanne Bahris", "character": "Tourist", "id": 139189, "credit_id": "53c994d3c3a368778a000168", "cast_id": 64, "profile_path": "/y0yFDqmgz44C5gPRMAqGH4JhwN0.jpg", "order": 12}, {"name": "Andrew Breland", "character": "Survivor", "id": 1343401, "credit_id": "53c9952ec3a368778d000159", "cast_id": 65, "profile_path": "/a4ue52wKtwUQhDZEqpFkcNfRycE.jpg", "order": 13}], "directors": [{"name": "Joseph Kosinski", "department": "Directing", "job": "Director", "credit_id": "52fe4909c3a368484e1175c9", "profile_path": "/q83mNUDP6eVjlY9D6LCjJcXPlsX.jpg", "id": 86270}], "vote_average": 6.2, "runtime": 126}, "1885": {"poster_path": "/5kKor5pZ3ov08CAstSyk7FGDKVN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90815558, "overview": "Hassled by the school bullies, Daniel LaRusso has his share of adolescent woes. Luckily, his apartment building houses a resident martial arts master: Kesuke Miyagi, who agrees to train Daniel ... and ends up teaching him much more than self-defense. Armed with newfound confidence, skill and wisdom, Daniel ultimately faces off against his tormentors in this hugely popular classic underdog tale.", "video": false, "id": 1885, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid", "tagline": "Only the 'Old One' could teach him the secrets of the masters.", "vote_count": 261, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sq4c328WCIFIVD7B9ZGFRwDbUTH.jpg", "poster_path": "/o6h2F0C5eZOy50Q76fNYzc9mvvw.jpg", "id": 8580, "name": "The Karate Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087538", "adult": false, "backdrop_path": "/lpJGmjxZ9ONC4efcnQdbyYyxFR5.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1984-06-22", "popularity": 0.654461559643568, "original_title": "The Karate Kid", "budget": 0, "cast": [{"name": "Ralph Macchio", "character": "Daniel LaRusso", "id": 2877, "credit_id": "52fe431dc3a36847f803b84d", "cast_id": 10, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 0}, {"name": "Pat Morita", "character": "Mr. Kesuke Miyagi", "id": 23915, "credit_id": "52fe431ec3a36847f803b851", "cast_id": 11, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 1}, {"name": "William Zabka", "character": "Johnny Lawrence", "id": 56124, "credit_id": "52fe431ec3a36847f803b86d", "cast_id": 18, "profile_path": "/kHcFbjmtF3CPK8uIDzKh5aj2bUv.jpg", "order": 2}, {"name": "Martin Kove", "character": "John Kreese", "id": 56117, "credit_id": "52fe431ec3a36847f803b869", "cast_id": 17, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 3}, {"name": "Chad McQueen", "character": "Dutch", "id": 23920, "credit_id": "52fe431ec3a36847f803b865", "cast_id": 16, "profile_path": "/bQxqP7npaJTSxhsNoaEllaYypwa.jpg", "order": 4}, {"name": "Randee Heller", "character": "Lucille LaRusso", "id": 23916, "credit_id": "52fe431ec3a36847f803b855", "cast_id": 12, "profile_path": "/birMI3xI4SiX8swADkjhZoAzTza.jpg", "order": 5}, {"name": "Elisabeth Shue", "character": "Ali Mills", "id": 1951, "credit_id": "52fe431ec3a36847f803b859", "cast_id": 13, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 6}, {"name": "Ron Thomas", "character": "Bobby", "id": 23918, "credit_id": "52fe431ec3a36847f803b85d", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Rob Garrison", "character": "Tommy", "id": 23919, "credit_id": "52fe431ec3a36847f803b861", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Scott Strader", "character": "Eddie", "id": 189512, "credit_id": "539a0d9a0e0a260bfe0006c3", "cast_id": 19, "profile_path": "/A3GzKeXTMdEnYtWSBM7PN0bbtLb.jpg", "order": 9}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b819", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 6.7, "runtime": 126}, "1887": {"poster_path": "/fMiJZQ3o1Q4WVje2aZFxO4wxb2w.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60474340, "overview": "The retelling of France's iconic but ill-fated queen, Marie Antoinette. From her betrothal and marriage to Louis XVI at 15 to her reign as queen at 19 and ultimately the fall of Versailles.", "video": false, "id": 1887, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Marie Antoinette", "tagline": "Rumor. Scandal. Fame. Revolution.", "vote_count": 111, "homepage": "http://www.sonypictures.com/homevideo/marieantoinette/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0422720", "adult": false, "backdrop_path": "/cKUFvH2PFYSW4698z5VG0sP08lw.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Pricel", "id": 6542}, {"name": "Tohokushinsha Film", "id": 12387}, {"name": "American Zoetrope", "id": 70}, {"name": "Commission du Film France", "id": 20637}, {"name": "Commission du Film \u00cele-de-France", "id": 20638}], "release_date": "2006-05-24", "popularity": 0.891641208312712, "original_title": "Marie Antoinette", "budget": 40000000, "cast": [{"name": "Kirsten Dunst", "character": "Marie Antoinette", "id": 205, "credit_id": "52fe431ec3a36847f803b92b", "cast_id": 19, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Jason Schwartzman", "character": "Louis XVI", "id": 17881, "credit_id": "52fe431ec3a36847f803b92f", "cast_id": 20, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 1}, {"name": "Judy Davis", "character": "Comtesse de Noailles", "id": 351, "credit_id": "52fe431ec3a36847f803b933", "cast_id": 21, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 2}, {"name": "Rip Torn", "character": "Louis XV", "id": 9626, "credit_id": "52fe431ec3a36847f803b937", "cast_id": 22, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 3}, {"name": "Asia Argento", "character": "Comtesse du Barry", "id": 18514, "credit_id": "52fe431ec3a36847f803b93b", "cast_id": 23, "profile_path": "/dCbZQbhfpJqPHYXGyMNf5LT5pBz.jpg", "order": 4}, {"name": "Rose Byrne", "character": "Duchesse de Polignac", "id": 9827, "credit_id": "52fe431ec3a36847f803b93f", "cast_id": 24, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 5}, {"name": "Mary Nighy", "character": "Princesse Lamballe", "id": 19774, "credit_id": "52fe431ec3a36847f803b943", "cast_id": 25, "profile_path": "/vUBhiWzuETlJjWKgGLldp8aEjcc.jpg", "order": 6}, {"name": "James Lance", "character": "L\u00e9onard", "id": 19775, "credit_id": "52fe431ec3a36847f803b947", "cast_id": 26, "profile_path": "/9xmBW177n0WfWjHa5AhV47zLuLD.jpg", "order": 7}, {"name": "Steve Coogan", "character": "Ambassador Mercy", "id": 4581, "credit_id": "52fe431ec3a36847f803b94b", "cast_id": 27, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 8}, {"name": "Jean-Christophe Bouvet", "character": "Duc de Choiseul", "id": 19776, "credit_id": "52fe431ec3a36847f803b94f", "cast_id": 28, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 9}, {"name": "Florrie Betts", "character": "Marie Therese - 6 years", "id": 19777, "credit_id": "52fe431ec3a36847f803b953", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Guillaume Gallienne", "character": "Vergennes", "id": 6554, "credit_id": "52fe431ec3a36847f803b957", "cast_id": 30, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 11}, {"name": "Marianne Faithfull", "character": "Maria Theresa", "id": 19995, "credit_id": "52fe431ec3a36847f803b95b", "cast_id": 31, "profile_path": "/sVWt2U1im7YZcCVlW6YF9RT5yZR.jpg", "order": 12}, {"name": "Aurore Cl\u00e9ment", "character": "Duchesse de Char", "id": 9893, "credit_id": "52fe431ec3a36847f803b95f", "cast_id": 32, "profile_path": "/i6p9msKzKG1P9I2QcCk3h3vuO5F.jpg", "order": 13}, {"name": "Alain Doutey", "character": "Chief Valet", "id": 35608, "credit_id": "52fe431ec3a36847f803b963", "cast_id": 33, "profile_path": "/kkuuCbxtmz22my8djZOw7CgwGXv.jpg", "order": 14}, {"name": "Shirley Henderson", "character": "Aunt Sophie", "id": 1834, "credit_id": "52fe431ec3a36847f803b973", "cast_id": 36, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 15}, {"name": "Molly Shannon", "character": "Aunt Victoire", "id": 28640, "credit_id": "52fe431ec3a36847f803b977", "cast_id": 37, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 16}, {"name": "Danny Huston", "character": "Emperor Joseph II", "id": 6413, "credit_id": "52fe431ec3a36847f803b97b", "cast_id": 38, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 17}, {"name": "Jamie Dornan", "character": "", "id": 1254583, "credit_id": "5443d92ac3a3683e0100510a", "cast_id": 39, "profile_path": "/11sPIeECW74loLh3tconPk842c2.jpg", "order": 18}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803b8c1", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 6.6, "runtime": 123}, "26466": {"poster_path": "/ykF5bw7xJtCIRZcrbnUisHjc4Pp.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The story revolves around the passengers of a yachting trip in the Atlantic Ocean who, when struck by mysterious weather conditions, jump to another ship only to experience greater havoc on the open seas.", "video": false, "id": 26466, "genres": [{"id": 27, "name": "Horror"}], "title": "Triangle", "tagline": "A Passage to Hell", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1187064", "adult": false, "backdrop_path": "/cL1R5nz7BUVU3d2shLDTaDcU0Ga.jpg", "production_companies": [{"name": "Triangle Film Corporation", "id": 1307}, {"name": "UK Film Council", "id": 2452}, {"name": "Icon Entertainment International", "id": 4564}, {"name": "Framestore", "id": 13502}, {"name": "Pacific Film and Television Commission", "id": 4024}, {"name": "Dan Films", "id": 1854}, {"name": "Pictures in Paradise", "id": 3207}], "release_date": "2009-10-16", "popularity": 0.348556549465537, "original_title": "Triangle", "budget": 12000000, "cast": [{"name": "Melissa George", "character": "Jess", "id": 27755, "credit_id": "52fe4504c3a368484e043c11", "cast_id": 7, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 0}, {"name": "Liam Hemsworth", "character": "Victor", "id": 96066, "credit_id": "52fe4504c3a368484e043c0d", "cast_id": 6, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 1}, {"name": "Emma Lung", "character": "Heather", "id": 62754, "credit_id": "52fe4504c3a368484e043c15", "cast_id": 8, "profile_path": "/f60E175MgyoOFluTyCPeJ3PyAMb.jpg", "order": 2}, {"name": "Rachael Carpani", "character": "Sally", "id": 77767, "credit_id": "52fe4504c3a368484e043c19", "cast_id": 9, "profile_path": "/imjkboHNPo1mKeqGvpbau1TZXxA.jpg", "order": 3}, {"name": "Michael Dorman", "character": "Greg", "id": 76068, "credit_id": "52fe4504c3a368484e043c1d", "cast_id": 10, "profile_path": "/4nx438tUqBtF7tQPAyMIGGxgSps.jpg", "order": 4}, {"name": "Joshua McIvor", "character": "Tommy", "id": 993846, "credit_id": "52fe4504c3a368484e043c27", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Henry Nixon", "character": "Downey", "id": 555945, "credit_id": "52fe4504c3a368484e043c2b", "cast_id": 14, "profile_path": "/ulSJ1TPhQa3807nkyreb1xy2h9E.jpg", "order": 6}], "directors": [{"name": "Christopher Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4504c3a368484e043bf7", "profile_path": null, "id": 41041}], "vote_average": 7.1, "runtime": 99}, "1891": {"poster_path": "/6u1fYtxG5eqjhtCPDx04pJphQRW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 538400000, "overview": "The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.", "video": false, "id": 1891, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode V - The Empire Strikes Back", "tagline": "The Adventure Continues...", "vote_count": 2229, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080684", "adult": false, "backdrop_path": "/AkE7LQs2hPMG5tpWYcum847Knre.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "1980-05-17", "popularity": 3.47978050415862, "original_title": "Star Wars: Episode V - The Empire Strikes Back", "budget": 18000000, "cast": [{"name": "Mark Hamill", "character": "Luke Skywalker", "id": 2, "credit_id": "52fe431ec3a36847f803bb6b", "cast_id": 7, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Han Solo", "id": 3, "credit_id": "52fe431ec3a36847f803bb6f", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Princess Leia", "id": 4, "credit_id": "52fe431ec3a36847f803bb73", "cast_id": 9, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "David Prowse", "character": "Darth Vader", "id": 24342, "credit_id": "52fe431ec3a36847f803bb77", "cast_id": 10, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 3}, {"name": "Billy Dee Williams", "character": "Lando Calrissian", "id": 3799, "credit_id": "52fe431ec3a36847f803bb7b", "cast_id": 11, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe431ec3a36847f803bb7f", "cast_id": 12, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "52fe431ec3a36847f803bb83", "cast_id": 13, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 6}, {"name": "James Earl Jones", "character": "Darth Vader (Voice)", "id": 15152, "credit_id": "52fe431ec3a36847f803bb8d", "cast_id": 15, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 7}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431ec3a36847f803bb91", "cast_id": 16, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 8}, {"name": "Frank Oz", "character": "Yoda (Voice)", "id": 7908, "credit_id": "52fe431ec3a36847f803bb95", "cast_id": 17, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 9}, {"name": "Alec Guinness", "character": "Ben 'Obi-wan' Kenobi", "id": 12248, "credit_id": "52fe431ec3a36847f803bb99", "cast_id": 18, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 10}, {"name": "Jeremy Bulloch", "character": "Boba Fett", "id": 33185, "credit_id": "52fe431ec3a36847f803bb9d", "cast_id": 19, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 11}, {"name": "John Hollis", "character": "Lando's aide", "id": 27165, "credit_id": "52fe431ec3a36847f803bba1", "cast_id": 20, "profile_path": "/ts7bAzI7hvePWVprMjzHyvpBwNB.jpg", "order": 12}, {"name": "Jack Purvis", "character": "Chief Ugnaught", "id": 132538, "credit_id": "52fe431ec3a36847f803bba5", "cast_id": 21, "profile_path": "/tuFTY1jhlEgZm3vM80KdAEvHwNI.jpg", "order": 13}, {"name": "Des Webb", "character": "Snow Creature", "id": 132539, "credit_id": "52fe431ec3a36847f803bba9", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Clive Revill", "character": "Emperor (voice)", "id": 20128, "credit_id": "52fe431ec3a36847f803bbad", "cast_id": 23, "profile_path": "/5o1d59FBQ9i8xtd1aWZClDdzZ3E.jpg", "order": 15}, {"name": "Julian Glover", "character": "Imperial Force General Veers", "id": 740, "credit_id": "52fe431ec3a36847f803bbb1", "cast_id": 24, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 16}, {"name": "Kenneth Colley", "character": "Imperial Force Admiral Piett", "id": 10734, "credit_id": "52fe431ec3a36847f803bbb5", "cast_id": 25, "profile_path": "/yNZF27tBauzUcg6Fw7M2xsRD8IC.jpg", "order": 17}, {"name": "John Ratzenberger", "character": "Rebel Force Major Derlin", "id": 7907, "credit_id": "52fe431ec3a36847f803bbbf", "cast_id": 28, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 18}, {"name": "Michael Sheard", "character": "Admiral Ozzel", "id": 70417, "credit_id": "54e6fe74c3a3681fec000bff", "cast_id": 31, "profile_path": "/a29SbacT0kV8WWuoAMp2FHI5Y7I.jpg", "order": 19}, {"name": "Michael Culver", "character": "Captain Needa", "id": 47520, "credit_id": "54e6ff64c3a3681fec000c1b", "cast_id": 32, "profile_path": "/njBI1pTMMMlon5LufetA1vHn819.jpg", "order": 20}, {"name": "John Dicks", "character": "Captain Lennox, Imperial Officer", "id": 1429986, "credit_id": "54e9886a925141117c002ec7", "cast_id": 33, "profile_path": "/89ivSwkSHcXIfZabh7PDp0LaZF7.jpg", "order": 21}, {"name": "Milton Johns", "character": "Bewil, an Imperial officer", "id": 24625, "credit_id": "54e98baac3a36836e000376d", "cast_id": 34, "profile_path": "/114XmLdlsWn9yY4ACX4U604Ueql.jpg", "order": 22}, {"name": "Mark Jones", "character": "Commander Nemet, an Imperial Officer", "id": 1229839, "credit_id": "54e98eb8c3a36836ea003893", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Oliver Maguire", "character": "Cabbel, an Imperial Officer", "id": 1221792, "credit_id": "54e99076c3a3684ea6002c94", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Robin Scobey", "character": "Lieutenant Venka, an Imperial Officer", "id": 1429987, "credit_id": "54e99169c3a36836ea0038d9", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Bruce Boa", "character": "General Carlist Rieekan, an Rebel Force", "id": 8664, "credit_id": "54e9930dc3a36836d9003564", "cast_id": 38, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 26}, {"name": "Christopher Malcolm", "character": "Rebel pilot Zev Senesca (Rogue 2)", "id": 47808, "credit_id": "54e9945d9251412eae0038c4", "cast_id": 39, "profile_path": "/9Ua0yZoI6dZQ5VDqfU096dAM1Un.jpg", "order": 27}, {"name": "Denis Lawson", "character": "Rebel Force Wedge (Rogue 3)", "id": 47698, "credit_id": "54e994e49251412ebd00379d", "cast_id": 40, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 28}, {"name": "Ian Liston", "character": "Wes Janson, a Rebel Force (Wedge's Gunner)", "id": 79957, "credit_id": "54e99c159251412eb10038c0", "cast_id": 43, "profile_path": "/k6jCo3N5kFJ7PBybJRRR4b0ngKV.jpg", "order": 31}, {"name": "John Morton", "character": "Dak Ralter, a Rebel Force", "id": 1430007, "credit_id": "54e99c24925141117c003066", "cast_id": 44, "profile_path": "/dizbXcyBZr1BKdjYlWpjy64FJcV.jpg", "order": 32}, {"name": "Richard Oldfield", "character": "Derek Klivian, a Rebel Force Hobbie (Rogue 4)", "id": 1181937, "credit_id": "54e99c2fc3a36836ed003b0b", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Jack McKenzie", "character": "Cal Alder, a Rebel Force Deck Lieutenant", "id": 1211845, "credit_id": "54e99f4fc3a36836dc00390c", "cast_id": 46, "profile_path": "/lyAWpv4xY7reSZoeBGoYSexGmhz.jpg", "order": 34}, {"name": "Jerry Harte", "character": "Rebel Force Head Controller", "id": 1270880, "credit_id": "54e9a042c3a36836d900369f", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Norman Chancer", "character": "Tamizander Rey, a Other Rebel Officer", "id": 116123, "credit_id": "54e9ae4c9251412eb4003837", "cast_id": 48, "profile_path": "/qLKyW9MHMT4TU00CyQt14pSsJzM.jpg", "order": 36}, {"name": "Norwich Duff", "character": "Jeroen Webb, a Other Rebel Officer", "id": 1430038, "credit_id": "54e9afb19251412eb4003852", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Ray Hassett", "character": "Tigran Jamiro, Other Rebel Officer", "id": 1250671, "credit_id": "54e9b13f9251412eb1003ace", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Brigitte Kahn", "character": "Toryn Farr, Other Rebel Officer", "id": 1430048, "credit_id": "54e9b1cac3a36836e0003aeb", "cast_id": 51, "profile_path": "/3GaAIdS0vkFGYQUnKL1c6Cg7HFg.jpg", "order": 39}, {"name": "Burnell Tucker", "character": "Wyron Serper, Other Rebel Officer", "id": 184980, "credit_id": "54e9b3bf925141117c0032e8", "cast_id": 52, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 40}], "directors": [{"name": "Irvin Kershner", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803bb55", "profile_path": "/ttTefShgVMqX85QawaGpfE1RT3M.jpg", "id": 10930}], "vote_average": 7.8, "runtime": 124}, "1892": {"poster_path": "/jx5p0aHlbPXqe3AH9G15NvmWaqQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 572700000, "overview": "As Rebel leaders map their strategy for an all-out attack on the Emperor's newer, bigger Death Star. Han Solo remains frozen in the cavernous desert fortress of Jabba the Hutt, the most loathsome outlaw in the universe, who is also keeping Princess Leia as a slave girl. Now a master of the Force, Luke Skywalker rescues his friends, but he cannot become a true Jedi Knight until he wages his own crucial battle against Darth Vader, who has sworn to win Luke over to the dark side of the Force.", "video": false, "id": 1892, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode VI - Return of the Jedi", "tagline": "The Empire Falls...", "vote_count": 1821, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086190", "adult": false, "backdrop_path": "/bvJOpyHYWACDusvQvXxKEHFNjce.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "1983-05-25", "popularity": 3.00770561872384, "original_title": "Star Wars: Episode VI - Return of the Jedi", "budget": 32350000, "cast": [{"name": "Mark Hamill", "character": "Luke Skywalker", "id": 2, "credit_id": "52fe431ec3a36847f803bc13", "cast_id": 8, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Han Solo", "id": 3, "credit_id": "52fe431ec3a36847f803bc17", "cast_id": 9, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Princess Leia", "id": 4, "credit_id": "52fe431ec3a36847f803bc1b", "cast_id": 10, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "Billy Dee Williams", "character": "Lando Calrissian", "id": 3799, "credit_id": "52fe431ec3a36847f803bc1f", "cast_id": 11, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 3}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe431ec3a36847f803bc23", "cast_id": 12, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 4}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "52fe431ec3a36847f803bc27", "cast_id": 13, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 5}, {"name": "James Earl Jones", "character": "Voice of Darth Vader (voice)", "id": 15152, "credit_id": "52fe431ec3a36847f803bc2b", "cast_id": 14, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 6}, {"name": "Frank Oz", "character": "Yoda (voice)", "id": 7908, "credit_id": "52fe431ec3a36847f803bc2f", "cast_id": 15, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 7}, {"name": "Ian McDiarmid", "character": "The Emperor", "id": 27762, "credit_id": "52fe431ec3a36847f803bc33", "cast_id": 16, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 8}, {"name": "Sebastian Shaw", "character": "Anakin Skywalker", "id": 28235, "credit_id": "52fe431ec3a36847f803bc37", "cast_id": 17, "profile_path": "/j6SFQiU0isXWNfMK6Cq4XQPdJDl.jpg", "order": 9}, {"name": "David Prowse", "character": "Darth Vader", "id": 24342, "credit_id": "52fe431ec3a36847f803bc3b", "cast_id": 20, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 10}, {"name": "Alec Guinness", "character": "Ben 'Obi-Wan' Kenobi", "id": 12248, "credit_id": "52fe431ec3a36847f803bc3f", "cast_id": 21, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 11}, {"name": "Kenny Baker", "character": "R2-D2 / Paploo", "id": 130, "credit_id": "52fe431ec3a36847f803bc43", "cast_id": 22, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 12}, {"name": "Warwick Davis", "character": "Wicket", "id": 11184, "credit_id": "52fe431ec3a36847f803bc47", "cast_id": 23, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 13}, {"name": "Caroline Blakiston", "character": "Mon Mothma", "id": 37442, "credit_id": "52fe431ec3a36847f803bc57", "cast_id": 26, "profile_path": "/tbABMp1c3zgiJKOoRaIkw9XWQ2Y.jpg", "order": 14}, {"name": "Michael Pennington", "character": "Moff Jerjerrod", "id": 1230989, "credit_id": "54e9c09a92514111b80030b8", "cast_id": 28, "profile_path": "/jreFHCg8golvAEbcwzKtPoqg6YZ.jpg", "order": 15}, {"name": "Kenneth Colley", "character": "Admiral Piett", "id": 10734, "credit_id": "54e9c0e8c3a3684ea60030b6", "cast_id": 29, "profile_path": "/yNZF27tBauzUcg6Fw7M2xsRD8IC.jpg", "order": 16}, {"name": "Michael Carter", "character": "Bib Fortuna", "id": 199055, "credit_id": "54e9c2519251412eb1003c6a", "cast_id": 30, "profile_path": "/rYVKZQ4uYLf7cpAGfdFzDcRNJXw.jpg", "order": 17}, {"name": "Denis Lawson", "character": "Wedge", "id": 47698, "credit_id": "54e9c284c3a36836ea003dd3", "cast_id": 31, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 18}, {"name": "Tim Rose", "character": "Admiral Ackbar", "id": 114761, "credit_id": "54e9c457c3a36836ea003df9", "cast_id": 32, "profile_path": "/oIJel5ldcVQew5XpTG4lne5fvkA.jpg", "order": 19}, {"name": "Dermot Crowley", "character": "General Madine", "id": 17484, "credit_id": "54e9c57bc3a36836d6003757", "cast_id": 33, "profile_path": "/z2flyEd3eV8Ho8mXa8rXOHZw9Yg.jpg", "order": 20}, {"name": "Jeremy Bulloch", "character": "Boba Fett", "id": 33185, "credit_id": "54e9ef85c3a36836ed0043c2", "cast_id": 34, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 21}, {"name": "Femi Taylor", "character": "Oola", "id": 137295, "credit_id": "54e9f1219251412eb1004102", "cast_id": 35, "profile_path": "/565XzSM9ytiM62tUsY9lEsPMZSy.jpg", "order": 22}, {"name": "Annie Arbogast", "character": "Sy Snootles", "id": 1430215, "credit_id": "54e9f1769251412ebd0040c7", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Claire Davenport", "character": "Fat Dancer", "id": 1218876, "credit_id": "54e9f3c992514111b800358c", "cast_id": 37, "profile_path": "/AtPzM3Ot5jpO1CAHe92stDzebjI.jpg", "order": 24}, {"name": "Jack Purvis", "character": "Teebo", "id": 132538, "credit_id": "54e9f40ec3a36836d6003bc5", "cast_id": 38, "profile_path": "/tuFTY1jhlEgZm3vM80KdAEvHwNI.jpg", "order": 25}, {"name": "Mike Edmonds", "character": "Logray", "id": 1220451, "credit_id": "54e9f5eec3a36836e00041c3", "cast_id": 39, "profile_path": "/2sjtnY8P7OZF5L9smPK1grhZmCy.jpg", "order": 26}, {"name": "Jane Busby", "character": "Chief Chirpa", "id": 1430217, "credit_id": "54e9f6cc9251412eae00428a", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Malcolm Dixon", "character": "Ewok Warrior", "id": 995639, "credit_id": "54e9f8fbc3a36836e0004210", "cast_id": 41, "profile_path": "/9Z4ZDKXe6S6gH9S361mM8wJd9Ai.jpg", "order": 28}, {"name": "Mike Cottrell", "character": "Ewok Warrior", "id": 1430487, "credit_id": "54eafc329251412ebd006453", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Nicki Reade", "character": "Nicki", "id": 1430492, "credit_id": "54eafe14c3a36836ea00661a", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Adam Bareham", "character": "Jhoff, a traffic control officer on the Executor", "id": 1430494, "credit_id": "54eafec79251412eb40060b8", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Jonathan Oliver", "character": "Stardestroyer Controller #2", "id": 1430499, "credit_id": "54eb00499251416824003867", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Pip Miller", "character": "Stardestroyer Captain #1", "id": 110422, "credit_id": "54eb0296c3a36836ea006699", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Tom Mannion", "character": "Stardestroyer Captain #2", "id": 147482, "credit_id": "54eb11d5c3a36836ed006b59", "cast_id": 47, "profile_path": "/fjJPHD96Jsko9w1M3vwINRVYoi9.jpg", "order": 34}, {"name": "Margo Apostolos", "character": "Ewok Tokkat", "id": 1430525, "credit_id": "54eb1268c3a36836dc0069f6", "cast_id": 48, "profile_path": "/g40OAFZPuOrRBDDfdpmofaNEarD.jpg", "order": 35}, {"name": "Ray Armstrong", "character": "Ewok", "id": 1430526, "credit_id": "54eb139bc3a36836ed006b8b", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Eileen Baker", "character": "Ewok", "id": 1430527, "credit_id": "54eb1439c3a36836e7006c0c", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Michael Henbury Ballan", "character": "Ewok", "id": 1430528, "credit_id": "54eb1525c3a36836ea006832", "cast_id": 51, "profile_path": "/FGuHVLOjg2im8TdKAgq5QqUmpP.jpg", "order": 38}, {"name": "Bobby Bell", "character": "Ewok", "id": 81414, "credit_id": "54eb191ac3a36836dc006a91", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Patty Bell", "character": "Ewok", "id": 1430556, "credit_id": "54eb1974c3a36836e0006773", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Alan Bennett", "character": "Ewok", "id": 1430564, "credit_id": "54eb1afc9251412eb1006701", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Sarah Bennett", "character": "Ewok", "id": 1430565, "credit_id": "54eb1c82c3a36836ea0068e6", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Pamela Betts", "character": "Ewok", "id": 1430566, "credit_id": "54eb1d64c3a36810020010df", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Danny Blackner", "character": "Ewok", "id": 1430567, "credit_id": "54eb1de3c3a36810020010eb", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Linda Bowley", "character": "Ewok", "id": 1430568, "credit_id": "54eb1e4bc3a36836e7006d24", "cast_id": 58, "profile_path": null, "order": 45}, {"name": "Peter Burroughs", "character": "Ewok", "id": 1430569, "credit_id": "54eb1f0fc3a36836ea006931", "cast_id": 59, "profile_path": "/tsvjxgE4XdmuKTxQxF0s7ThQmkd.jpg", "order": 46}, {"name": "Debbie Lee Carrington", "character": "Romba an Ewok", "id": 19753, "credit_id": "54eb207fc3a36836e000680e", "cast_id": 60, "profile_path": "/xMynWwkjNbBJsiPdjs8aJ977oBq.jpg", "order": 47}, {"name": "Maureen Charlton", "character": "Ewok", "id": 1430576, "credit_id": "54eb20d4c3a36836dc006b6b", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Willie Coppen", "character": "Ewok", "id": 1430580, "credit_id": "54eb213e925141117c005f95", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Sadie Corre", "character": "Ewok", "id": 121478, "credit_id": "54eb22ca9251416824003b58", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Tony Cox", "character": "Ewok Wicket's younger brother Widdle", "id": 19754, "credit_id": "54eb2400c3a36836d9006559", "cast_id": 64, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 51}, {"name": "John Cumming", "character": "Ewok", "id": 1430588, "credit_id": "54eb2b6d9251416824003c13", "cast_id": 65, "profile_path": null, "order": 52}, {"name": "Jean D'Agostino", "character": "Ewok", "id": 1430590, "credit_id": "54eb2be092514111b8005ba0", "cast_id": 66, "profile_path": null, "order": 53}, {"name": "Luis De Jesus", "character": "Ewok", "id": 106406, "credit_id": "54eb2d909251416824003c4c", "cast_id": 67, "profile_path": null, "order": 54}, {"name": "Debbie Dixon", "character": "Ewok Wijunkee", "id": 1430594, "credit_id": "54eb2e06c3a36836d900661d", "cast_id": 68, "profile_path": "/yQAcft0HcCx6GzYjNktnyff7LHp.jpg", "order": 55}, {"name": "Margarita Fern\u00e1ndez", "character": "Ewok", "id": 19756, "credit_id": "54eb30749251412eb10068c8", "cast_id": 69, "profile_path": null, "order": 56}, {"name": "Phil Fondacaro", "character": "Ewok", "id": 12662, "credit_id": "54eb30f09251412ebd00698b", "cast_id": 70, "profile_path": "/3Ao8VPvlytIm3DWFffdSPxwxFdC.jpg", "order": 57}, {"name": "Sal Fondacaro", "character": "Ewok", "id": 1430595, "credit_id": "54eb316a92514111b8005c13", "cast_id": 71, "profile_path": null, "order": 58}, {"name": "Tony Friel", "character": "Ewok", "id": 1430596, "credit_id": "54eb333fc3a36836d60062a8", "cast_id": 72, "profile_path": null, "order": 59}, {"name": "Daniel Frishman", "character": "Ewok", "id": 19751, "credit_id": "54eb3570c3a36836d90066b8", "cast_id": 73, "profile_path": "/ly1pZwHpG74yXjAbjOFDgJqbVQS.jpg", "order": 60}, {"name": "John Ghavan", "character": "Ewok", "id": 1430610, "credit_id": "54eb49ca925141117c00634a", "cast_id": 74, "profile_path": null, "order": 61}, {"name": "Michael Gilden", "character": "Ewok", "id": 1224317, "credit_id": "54eb4b5f9251412ebd006bfe", "cast_id": 75, "profile_path": "/lIF4AHqkogLnCO3xGDVKDPuHKOh.jpg", "order": 62}, {"name": "Paul Grant", "character": "Ewok", "id": 1430611, "credit_id": "54eb4c0cc3a36836dc006f4c", "cast_id": 76, "profile_path": null, "order": 63}, {"name": "Lydia Green", "character": "Ewok", "id": 1430613, "credit_id": "54eb4c899251412ebd006c19", "cast_id": 77, "profile_path": null, "order": 64}, {"name": "Lars Green", "character": "Ewok", "id": 1430615, "credit_id": "54eb4cecc3a36810020014d0", "cast_id": 78, "profile_path": null, "order": 65}, {"name": "Pam Grizz", "character": "Ewok", "id": 1430857, "credit_id": "54ebb5bfc3a368676d00038a", "cast_id": 79, "profile_path": null, "order": 66}, {"name": "Andrew Herd", "character": "Ewok", "id": 1430858, "credit_id": "54ebb6639251417961000006", "cast_id": 80, "profile_path": null, "order": 67}, {"name": "J.J. Jackson", "character": "Ewok", "id": 1430859, "credit_id": "54ebb779c3a3686d56000017", "cast_id": 81, "profile_path": null, "order": 68}, {"name": "Richard Jones", "character": "Ewok", "id": 1430860, "credit_id": "54ebb8639251417965000030", "cast_id": 82, "profile_path": null, "order": 69}, {"name": "Trevor Jones", "character": "Ewok", "id": 1430915, "credit_id": "54ec25a9c3a3686d5e000ed1", "cast_id": 83, "profile_path": null, "order": 70}, {"name": "Glynn Jones", "character": "Ewok", "id": 1430916, "credit_id": "54ec2648c3a3686d58000f2a", "cast_id": 84, "profile_path": null, "order": 71}, {"name": "Karen Lay", "character": "Ewok", "id": 1430917, "credit_id": "54ec28709251417971000fad", "cast_id": 85, "profile_path": null, "order": 72}, {"name": "John Lummiss", "character": "Ewok", "id": 1430918, "credit_id": "54ec28d9925141796100100a", "cast_id": 86, "profile_path": null, "order": 73}, {"name": "Nancy MacLean", "character": "Ewok", "id": 1430919, "credit_id": "54ec2970c3a3686d58000f8d", "cast_id": 87, "profile_path": null, "order": 74}, {"name": "Peter Mandell", "character": "Ewok", "id": 362851, "credit_id": "54ec2a4fc3a3686d660011e0", "cast_id": 88, "profile_path": null, "order": 75}, {"name": "Carole Morris", "character": "Ewok", "id": 1430920, "credit_id": "54ec2ab69251417971000fe4", "cast_id": 89, "profile_path": null, "order": 76}, {"name": "Stacie Nichols", "character": "Ewok", "id": 1430921, "credit_id": "54ec2affc3a3686d6d0010f8", "cast_id": 90, "profile_path": null, "order": 77}, {"name": "Chris Nunn", "character": "Ewok", "id": 1430922, "credit_id": "54ec2ba3c3a3686d6400126d", "cast_id": 91, "profile_path": null, "order": 78}, {"name": "Barbara O'Laughlin", "character": "Ewok", "id": 1430923, "credit_id": "54ec2c05c3a3686d5600101b", "cast_id": 92, "profile_path": null, "order": 79}, {"name": "Brian Orenstein", "character": "Ewok", "id": 1430924, "credit_id": "54ec2c68c3a3686d6400128b", "cast_id": 93, "profile_path": null, "order": 80}, {"name": "Harrell Parker Jr.", "character": "Ewok", "id": 1430925, "credit_id": "54ec2cb1925141796e00108f", "cast_id": 94, "profile_path": null, "order": 81}, {"name": "John Pedrick", "character": "Ewok", "id": 1430926, "credit_id": "54ec2d13c3a3686d6400129f", "cast_id": 95, "profile_path": null, "order": 82}, {"name": "April Perkins", "character": "Ewok", "id": 1430950, "credit_id": "54ec33d1c3a3686d6d00120c", "cast_id": 96, "profile_path": null, "order": 83}, {"name": "Ronnie Phillips", "character": "Ewok", "id": 1430951, "credit_id": "54ec3433c3a3686d64001364", "cast_id": 97, "profile_path": null, "order": 84}, {"name": "Katie Purvis", "character": "Ewok", "id": 1430952, "credit_id": "54ec3593c3a3686d66001357", "cast_id": 98, "profile_path": "/2xCF8e5v7RwDaBYCpDAKVTFWFuf.jpg", "order": 85}, {"name": "Carol Read", "character": "Ewok", "id": 1430955, "credit_id": "54ec3648c3a3680be600103a", "cast_id": 99, "profile_path": null, "order": 86}, {"name": "Nicholas Read", "character": "Ewok", "id": 1430957, "credit_id": "54ec36dfc3a3680be600104f", "cast_id": 100, "profile_path": "/7j0jdzXtTMARV9AD9zpMKmAYXJk.jpg", "order": 87}, {"name": "Diana Reynolds", "character": "Ewok", "id": 1430958, "credit_id": "54ec389dc3a3686d660013c2", "cast_id": 101, "profile_path": null, "order": 88}, {"name": "Danielle Rodgers", "character": "Ewok Graak", "id": 1430961, "credit_id": "54ec3aa9c3a3680be600109d", "cast_id": 102, "profile_path": null, "order": 89}, {"name": "Chris Romano", "character": "Ewok", "id": 1370759, "credit_id": "54ec3c01c3a3686d6d001304", "cast_id": 103, "profile_path": null, "order": 90}, {"name": "Dean Shackelford", "character": "Ewok", "id": 1430964, "credit_id": "54ec3c3ac3a3680be60010cf", "cast_id": 104, "profile_path": null, "order": 91}, {"name": "Kiran Shah", "character": "Ewok", "id": 5531, "credit_id": "54ec3ce3c3a3686d64001485", "cast_id": 105, "profile_path": "/oQer3lBnxD8gKFHoz7o7eJMF6od.jpg", "order": 92}, {"name": "Felix Silla", "character": "Ewok", "id": 33853, "credit_id": "54ec3e0fc3a3680b80001297", "cast_id": 106, "profile_path": "/blKYI3w0lf124hvCaHiVcjhQpZ5.jpg", "order": 93}, {"name": "Linda Spriggs", "character": "Ewok", "id": 1430978, "credit_id": "54ec3e62c3a3686d5e001143", "cast_id": 107, "profile_path": null, "order": 94}, {"name": "Gerald Staddon", "character": "Ewok", "id": 1430979, "credit_id": "54ec3f34925141797100127a", "cast_id": 108, "profile_path": null, "order": 95}, {"name": "Josephine Staddon", "character": "Ewok", "id": 1430980, "credit_id": "54ec3fbb92514179710012a5", "cast_id": 109, "profile_path": null, "order": 96}, {"name": "Kevin Thompson", "character": "Ewok", "id": 53760, "credit_id": "54ec40ce9251417965001400", "cast_id": 110, "profile_path": "/pUKpoqEjQg7Isu0dJFBtootlWad.jpg", "order": 97}, {"name": "Kendra Wall", "character": "Ewok", "id": 1430983, "credit_id": "54ec4129c3a3686d660014ea", "cast_id": 111, "profile_path": null, "order": 98}, {"name": "Brian Wheeler", "character": "Ewok", "id": 224526, "credit_id": "54ec4214c3a3680be6001170", "cast_id": 112, "profile_path": null, "order": 99}, {"name": "Butch Wilhelm", "character": "Ewok", "id": 1430984, "credit_id": "54ec423b92514179680012dc", "cast_id": 113, "profile_path": null, "order": 100}, {"name": "Dalyn Chew", "character": "Jedi Rocks Dancer (special edition)", "id": 1430987, "credit_id": "54ec4316c3a3686d56001369", "cast_id": 114, "profile_path": "/weeQGjh3zA9uWmqoyixVAFXoVqg.jpg", "order": 101}, {"name": "Celia Fushille-Burke", "character": "Greeata Jendowanian a Jedi Rocks Dancer (special edition)", "id": 1430991, "credit_id": "54ec448fc3a3686d5600138c", "cast_id": 115, "profile_path": null, "order": 102}, {"name": "Mercedes Ngoh", "character": "Ryst\u00e1ll Sant a Jedi Rocks Dancer (special edition)", "id": 1430994, "credit_id": "54ec451b925141796100136a", "cast_id": 116, "profile_path": null, "order": 103}, {"name": "Jennifer Jaffe", "character": "Jedi Rocks Dancer (special edition)", "id": 1430996, "credit_id": "54ec460f925141796e001390", "cast_id": 117, "profile_path": null, "order": 104}], "directors": [{"name": "Richard Marquand", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803bbfd", "profile_path": "/wuO69rNp2mMG9unvRpZhbccoAh9.jpg", "id": 19800}], "vote_average": 7.6, "runtime": 135}, "1893": {"poster_path": "/n8V09dDc02KsSN6Q4hC2BX6hN8X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 924317558, "overview": "Stranded on the desert planet Tatooine after rescuing young Queen Amidala from the impending invasion of Naboo, Jedi apprentice Obi-Wan Kenobi and his Jedi Master discover nine-year-old Anakin Skywalker, a young slave unusually strong in the Force.", "video": false, "id": 1893, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode I - The Phantom Menace", "tagline": "Every generation has a legend. Every journey has a first step. Every saga has a beginning.", "vote_count": 1564, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120915", "adult": false, "backdrop_path": "/wdp4unWJWY9hGKN1tM56HeSt6PZ.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "1999-05-19", "popularity": 2.73363453002881, "original_title": "Star Wars: Episode I - The Phantom Menace", "budget": 115000000, "cast": [{"name": "Natalie Portman", "character": "Queen Amidala / Padm\u00e9", "id": 524, "credit_id": "52fe431ec3a36847f803bcb9", "cast_id": 6, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Obi Wan Kenobi", "id": 3061, "credit_id": "52fe431ec3a36847f803bcbd", "cast_id": 7, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Liam Neeson", "character": "Qui-Gon Jinn", "id": 3896, "credit_id": "52fe431ec3a36847f803bcc1", "cast_id": 8, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 2}, {"name": "Ian McDiarmid", "character": "Senator Palpatine", "id": 27762, "credit_id": "52fe431ec3a36847f803bcc5", "cast_id": 9, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 3}, {"name": "Anthony Daniels", "character": "C-3PO (voice)", "id": 6, "credit_id": "52fe431ec3a36847f803bcc9", "cast_id": 10, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 4}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431ec3a36847f803bccd", "cast_id": 11, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 5}, {"name": "Jake Lloyd", "character": "Anakin Skywalker", "id": 33196, "credit_id": "52fe431ec3a36847f803bcd1", "cast_id": 12, "profile_path": "/1MndIkdjjDypRDi3PpMzy3j0Lof.jpg", "order": 6}, {"name": "Pernilla August", "character": "Shmi Skywalker", "id": 33190, "credit_id": "52fe431ec3a36847f803bcd5", "cast_id": 13, "profile_path": "/zDMvEQCCUcjJeDWEstDBjoK8kA4.jpg", "order": 7}, {"name": "Frank Oz", "character": "Yoda (voice)", "id": 7908, "credit_id": "52fe431ec3a36847f803bcd9", "cast_id": 14, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 8}, {"name": "Oliver Ford Davies", "character": "Governor Sio Bibble", "id": 31923, "credit_id": "52fe431ec3a36847f803bcdd", "cast_id": 15, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 9}, {"name": "Ray Park", "character": "Darth Maul", "id": 11007, "credit_id": "52fe431ec3a36847f803bce1", "cast_id": 16, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 10}, {"name": "Hugh Quarshie", "character": "Capt. Panaka", "id": 31925, "credit_id": "52fe431ec3a36847f803bce5", "cast_id": 17, "profile_path": "/klpbBUBEwIuVHt2RWCNOxNvuprS.jpg", "order": 11}, {"name": "Ahmed Best", "character": "Jar Jar Binks (Voice)", "id": 33197, "credit_id": "52fe431ec3a36847f803bce9", "cast_id": 18, "profile_path": "/7yBAaveSHtYkzutJOKv18pq7pDI.jpg", "order": 12}, {"name": "Andrew Secombe", "character": "Watto (voice)", "id": 33198, "credit_id": "52fe431ec3a36847f803bced", "cast_id": 19, "profile_path": "/oKLhyJo4doxuPBpuGzLQ3WGGu9f.jpg", "order": 13}, {"name": "Steve Speirs", "character": "Capt. Tarpals", "id": 25441, "credit_id": "52fe431ec3a36847f803bcf1", "cast_id": 20, "profile_path": "/cCNJouXVxnXJv9j26PaEWJxIkOE.jpg", "order": 14}, {"name": "Samuel L. Jackson", "character": "Mace Windu", "id": 2231, "credit_id": "52fe431ec3a36847f803bcf5", "cast_id": 21, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 15}, {"name": "Keira Knightley", "character": "Sab\u00e9", "id": 116, "credit_id": "52fe431ec3a36847f803bcf9", "cast_id": 22, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 16}, {"name": "Sofia Coppola", "character": "Sach\u00e9", "id": 1769, "credit_id": "52fe431ec3a36847f803bcfd", "cast_id": 23, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 17}, {"name": "Warwick Davis", "character": "Wald / Pod race spectator / Mos Espa Citizen", "id": 11184, "credit_id": "52fe431ec3a36847f803bd2b", "cast_id": 31, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 18}, {"name": "Terence Stamp", "character": "Chacellor Valorum", "id": 28641, "credit_id": "54088d4ec3a36858330012b5", "cast_id": 34, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 19}, {"name": "Greg Proops", "character": "Fode (voice)", "id": 61965, "credit_id": "54d7b7cfc3a3683b8900636b", "cast_id": 35, "profile_path": "/vZCffFyddRuuMlHBUwgaUa9D9A4.jpg", "order": 20}, {"name": "Brian Blessed", "character": "Boss Nass (voice)", "id": 8318, "credit_id": "54e1a956c3a368454d0070b6", "cast_id": 36, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 21}, {"name": "Lewis Macleod", "character": "Sebulba (voice)", "id": 1074722, "credit_id": "54e1acbf9251411953006dad", "cast_id": 37, "profile_path": "/mv3TTVkxdDn11Gs2AWKvFzAuW7Y.jpg", "order": 22}, {"name": "Silas Carson", "character": "Nute Gunray / Ki-Adi-Mundi / Lott Dodd / Republic Cruiser Pilot", "id": 20806, "credit_id": "54e1afcdc3a3685756005437", "cast_id": 38, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 23}, {"name": "Jerome Blake", "character": "Mas Amenda / Orn Free Taa / Oppo Rancisis / Rune Haako / Horox Ryyder / Graxol Kelvynn / Mick Reckrap", "id": 589398, "credit_id": "54e1b19e925141109900124b", "cast_id": 39, "profile_path": "/tUJwV5OUV4P8zrlfkMtp1vU47Ot.jpg", "order": 24}, {"name": "Alan Ruscoe", "character": "Daultay Dofine / Plo Koon / Bib Fortuna", "id": 33186, "credit_id": "54e1b278c3a368454d007190", "cast_id": 40, "profile_path": "/xVVYK5Axi0R7PzUi1RnEB0mOPVv.jpg", "order": 25}, {"name": "Ralph Brown", "character": "Ric Oli\u00e9", "id": 53916, "credit_id": "54e1b321925141469f00510c", "cast_id": 41, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 26}, {"name": "Celia Imrie", "character": "Fighter Pilot Bravo 5", "id": 9139, "credit_id": "54e1b391c3a368087b0011a5", "cast_id": 42, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 27}, {"name": "Benedict Taylor", "character": "Fighter Pilot Bravo 2", "id": 37055, "credit_id": "54e1b57ac3a368454b0068b0", "cast_id": 43, "profile_path": "/tyZAHcq5IfK7rco9JptkRh4oNGS.jpg", "order": 28}, {"name": "Clarence Smith", "character": "Fighter Pilot Bravo 3", "id": 1198147, "credit_id": "54e1ba45c3a36855c7005332", "cast_id": 44, "profile_path": "/zKvjmgqf08T3Xz7uwTrEvxB7qqZ.jpg", "order": 29}, {"name": "Dominic West", "character": "Palace Guard", "id": 17287, "credit_id": "54e1bb3f925141195a006b3b", "cast_id": 45, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 30}, {"name": "Karol Cristina da Silva", "character": "Rab\u00e9", "id": 1427789, "credit_id": "54e1bc45c3a368454d0072c2", "cast_id": 46, "profile_path": "/2YpNv0In4HZHByd6vSPbMSoKDFL.jpg", "order": 31}, {"name": "Liz Wilson", "character": "Eirta\u00e9", "id": 1427790, "credit_id": "54e1bdcdc3a36857560055ac", "cast_id": 47, "profile_path": "/81HfRD7WWatGSyDfhwFg9gmZx6s.jpg", "order": 32}, {"name": "Candice Orwell", "character": "Yan\u00e9", "id": 1427792, "credit_id": "54e1bf60c3a368454d00731d", "cast_id": 48, "profile_path": "/8k6YGo9hqHbCseBV1D1JeCkT7F2.jpg", "order": 33}, {"name": "Bronagh Gallagher", "character": "Republic Cruiser Captain", "id": 33399, "credit_id": "54e1c0f9c3a368454d007350", "cast_id": 49, "profile_path": "/h44VuQ4yxA9ssITldXngDKSLoBQ.jpg", "order": 34}, {"name": "John Fensom", "character": "TC-14", "id": 1427795, "credit_id": "54e1c282c3a36855c700541f", "cast_id": 50, "profile_path": null, "order": 35}, {"name": "Scott Capurro", "character": "Beed (voice)", "id": 11719, "credit_id": "54e1c6b2c3a36857560056a8", "cast_id": 51, "profile_path": "/gBpjitYCEs0YapiNCDB2K8GyXMC.jpg", "order": 36}, {"name": "Margaret Towner", "character": "Jira", "id": 1427805, "credit_id": "54e1c714c3a368454d0073dc", "cast_id": 52, "profile_path": "/wNWY8JXwlGzNVcY7JdMKCjRZHj5.jpg", "order": 37}, {"name": "Dhruv Chanchani", "character": "Kitster", "id": 1427806, "credit_id": "54e1c9cf9251412c8e001193", "cast_id": 53, "profile_path": "/wHMU3yngBSH98EHgtPT0r4G6LcM.jpg", "order": 38}, {"name": "Oliver Walpole", "character": "Seek", "id": 1427809, "credit_id": "54e1cb28c3a3684551007c1f", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Katie Lucas", "character": "Amee", "id": 1235784, "credit_id": "54e1ce55c3a3684551007c6f", "cast_id": 55, "profile_path": "/bsnHZ1iGkc3i8RT0r3PkuGLR4u4.jpg", "order": 40}, {"name": "Megan Udall", "character": "Melee", "id": 1427810, "credit_id": "54e1cfb79251411950007103", "cast_id": 56, "profile_path": "/wvRCifIEh9CYMnASO8lZteCy2h2.jpg", "order": 41}, {"name": "Hassani Shapi", "character": "Eeth Koth", "id": 27175, "credit_id": "54e1d1d692514119560076dc", "cast_id": 57, "profile_path": "/tCvlauMnlxLektrbg4HXKpw1NtD.jpg", "order": 42}, {"name": "Gin Clarke", "character": "Adi Gallia", "id": 1427818, "credit_id": "54e1d320c3a368454d0074cb", "cast_id": 58, "profile_path": "/ooMF4KHxYZKyBG1qccPpT6IGZgL.jpg", "order": 43}, {"name": "Khan Bonfils", "character": "Saesee Tiin", "id": 986518, "credit_id": "54e1d583c3a368575600581d", "cast_id": 59, "profile_path": "/1MExWtw6hqcem369MO6byZmWcZl.jpg", "order": 44}, {"name": "Michelle Taylor", "character": "Yarael Poof", "id": 1404342, "credit_id": "54e1d805c3a36855c70055d1", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Michaela Cottrell", "character": "Even Piell", "id": 1427835, "credit_id": "54e1d84dc3a368087b001489", "cast_id": 61, "profile_path": null, "order": 46}, {"name": "Dipika O'Neill Joti", "character": "Depa Billaba", "id": 1427836, "credit_id": "54e1d8cac3a3684551007d7e", "cast_id": 62, "profile_path": null, "order": 47}, {"name": "Phil Eason", "character": "Yaddle", "id": 1427839, "credit_id": "54e1d9be92514119500071cf", "cast_id": 63, "profile_path": null, "order": 48}, {"name": "Mark Coulier", "character": "Aks Moe", "id": 1427843, "credit_id": "54e1daeec3a368087b0014cd", "cast_id": 64, "profile_path": "/hdH3eFYfY58CuaB0Yn7Rm6FHbrg.jpg", "order": 49}, {"name": "Lindsay Duncan", "character": "TC-14 (voice)", "id": 30083, "credit_id": "54e1dbeb9251411953007224", "cast_id": 65, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 50}, {"name": "Peter Serafinowicz", "character": "Darth Maul / Battle Droid Commander / Gungan Scout (voice)", "id": 11115, "credit_id": "54e1dc31c3a36845410083ec", "cast_id": 66, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 51}, {"name": "James Taylor", "character": "Rune Haako (voice)", "id": 1427852, "credit_id": "54e1df5b9251411099001694", "cast_id": 67, "profile_path": null, "order": 52}, {"name": "Chris Sanders", "character": "Daultay Dofine (voice)", "id": 1427858, "credit_id": "54e1e1b3c3a368454100845e", "cast_id": 68, "profile_path": null, "order": 53}, {"name": "Toby Longworth", "character": "Sen. Lott Dodd / Gragra (voice)", "id": 1220998, "credit_id": "54e1e3f4c3a368454b006c5b", "cast_id": 69, "profile_path": "/lryzAo6jEWibWVPCfNHPdjpHTC9.jpg", "order": 54}, {"name": "Marc Silk", "character": "Aks Moe (voice)", "id": 1329799, "credit_id": "54e1e5cdc3a3684095001117", "cast_id": 70, "profile_path": "/6F1jv4wykHy637aSTcqnEr0B7vN.jpg", "order": 55}, {"name": "Amanda Lucas", "character": "Tey How / Diva Funquita (voice) (as Tyger)", "id": 1427863, "credit_id": "54e1e6c59251411956007890", "cast_id": 71, "profile_path": "/orl2zrSpf4WQUd268DsP7EspUCo.jpg", "order": 56}, {"name": "Danny Wagner", "character": "Mawhonic", "id": 1444238, "credit_id": "550f7257c3a3681db200a7e9", "cast_id": 72, "profile_path": null, "order": 57}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803bca9", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.2, "runtime": 136}, "1894": {"poster_path": "/2vcNFtrZXNwIcBgH5e2xXCmVR8t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 649398328, "overview": "Ten years after the events of the Battle of Naboo, the galaxy has undergone significant changes. Anakin Skywalker and Obi-Wan Kenobi are assigned to protect Padm\u00e9 from political separatists. As relationships form and powerful forces collide, these heroes face choices that will impact the destiny of the Republic.", "video": false, "id": 1894, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode II - Attack of the Clones", "tagline": "A Jedi Shall Not Know Anger. Nor Hatred. Nor Love.", "vote_count": 1382, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0121765", "adult": false, "backdrop_path": "/560F7BPaxRy8BsOfVU6cW4ivM46.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "2002-05-16", "popularity": 2.69559210696562, "original_title": "Star Wars: Episode II - Attack of the Clones", "budget": 120000000, "cast": [{"name": "Ewan McGregor", "character": "Obi Wan Kenobi", "id": 3061, "credit_id": "52fe431fc3a36847f803bdad", "cast_id": 7, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Padm\u00e9 Amidala", "id": 524, "credit_id": "52fe431fc3a36847f803bdb7", "cast_id": 9, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Hayden Christensen", "character": "Anakin Skywalker", "id": 17244, "credit_id": "52fe431fc3a36847f803bdbb", "cast_id": 10, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 2}, {"name": "Christopher Lee", "character": "Count Dooku", "id": 113, "credit_id": "52fe431fc3a36847f803bdbf", "cast_id": 11, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 3}, {"name": "Ian McDiarmid", "character": "Chancellor Palpatine", "id": 27762, "credit_id": "52fe431fc3a36847f803bdc3", "cast_id": 12, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 4}, {"name": "Samuel L. Jackson", "character": "Mace Windu", "id": 2231, "credit_id": "52fe431fc3a36847f803bdc7", "cast_id": 13, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 5}, {"name": "Rose Byrne", "character": "Dorm\u00e9", "id": 9827, "credit_id": "52fe431fc3a36847f803bdcb", "cast_id": 14, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 6}, {"name": "Frank Oz", "character": "Yoda (Voice)", "id": 7908, "credit_id": "52fe431fc3a36847f803bdcf", "cast_id": 15, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 7}, {"name": "Anthony Daniels", "character": "C-3PO / Dannl Faytonni", "id": 6, "credit_id": "52fe431fc3a36847f803bdd3", "cast_id": 16, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 8}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431fc3a36847f803bdd7", "cast_id": 17, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 9}, {"name": "Matt Doran", "character": "Elan Sleazebaggano", "id": 9374, "credit_id": "52fe431fc3a36847f803bddb", "cast_id": 18, "profile_path": "/gLpWm3azLiXgDPRWo23AnG5WM7O.jpg", "order": 10}, {"name": "Alan Ruscoe", "character": "Gilramos Libkath", "id": 33186, "credit_id": "52fe431fc3a36847f803bddf", "cast_id": 19, "profile_path": "/xVVYK5Axi0R7PzUi1RnEB0mOPVv.jpg", "order": 11}, {"name": "Veronica Segura", "character": "Cord\u00e9", "id": 33187, "credit_id": "52fe431fc3a36847f803bde3", "cast_id": 20, "profile_path": "/4U8pdmprcEnvCjhKybo5XGkXWpe.jpg", "order": 12}, {"name": "Silas Carson", "character": "Ki-Adi-Mundi / Viceroy Nute Gunray", "id": 20806, "credit_id": "52fe431fc3a36847f803bde7", "cast_id": 21, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 13}, {"name": "Oliver Ford Davies", "character": "Govenor Sio Bibble", "id": 31923, "credit_id": "52fe431fc3a36847f803bdeb", "cast_id": 23, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 14}, {"name": "Ron Falk", "character": "Dexter Jettster (voice)", "id": 33188, "credit_id": "52fe431fc3a36847f803bdef", "cast_id": 24, "profile_path": "/xgJUl9PEcEFxXl1EXq8ZK29dLL5.jpg", "order": 15}, {"name": "Jay Laga'aia", "character": "Capt. Typho", "id": 33182, "credit_id": "52fe431fc3a36847f803bdf3", "cast_id": 25, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 16}, {"name": "Jimmy Smits", "character": "Senator Bail Organa", "id": 33181, "credit_id": "52fe431fc3a36847f803bdf7", "cast_id": 26, "profile_path": "/tZfr6EaIxzlT9MhY5T4C6cL3UjF.jpg", "order": 17}, {"name": "Daniel Logan", "character": "Boba Fett", "id": 33189, "credit_id": "52fe431fc3a36847f803bdfb", "cast_id": 27, "profile_path": "/oZ4tJ2qszpK8goamVxYCCMo2QTD.jpg", "order": 18}, {"name": "Temuera Morrison", "character": "Jango Fett", "id": 7242, "credit_id": "52fe431fc3a36847f803bdff", "cast_id": 28, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 19}, {"name": "Pernilla August", "character": "Shmi Skywalker", "id": 33190, "credit_id": "52fe431fc3a36847f803be03", "cast_id": 29, "profile_path": "/zDMvEQCCUcjJeDWEstDBjoK8kA4.jpg", "order": 20}, {"name": "Ayesha Dharker", "character": "Queen Jamillia", "id": 33191, "credit_id": "52fe431fc3a36847f803be07", "cast_id": 30, "profile_path": "/3ymSI0lIRizXB8oLb82aberQ7nc.jpg", "order": 21}, {"name": "Joel Edgerton", "character": "Owen Lars", "id": 33192, "credit_id": "52fe431fc3a36847f803be0b", "cast_id": 31, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 22}, {"name": "Jack Thompson", "character": "Cliegg Lars", "id": 12536, "credit_id": "52fe431fc3a36847f803be51", "cast_id": 43, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 23}, {"name": "Bonnie Piesse", "character": "Beru", "id": 131634, "credit_id": "52fe431fc3a36847f803be55", "cast_id": 44, "profile_path": "/xM4s2HYCmSunDpExLnllYCp8rjZ.jpg", "order": 24}, {"name": "Andrew Secombe", "character": "Watto (voice)", "id": 33198, "credit_id": "52fe431fc3a36847f803be59", "cast_id": 45, "profile_path": "/oKLhyJo4doxuPBpuGzLQ3WGGu9f.jpg", "order": 25}, {"name": "Leeanna Walsman", "character": "Zam Wesell", "id": 93114, "credit_id": "54e21b2f925141195a0080f9", "cast_id": 46, "profile_path": "/lio7YuWt8btr6CvdLy4e2rkbBJT.jpg", "order": 26}, {"name": "Ahmed Best", "character": "Jar Jar Binks / Achk Med-Beq (voice)", "id": 33197, "credit_id": "54e21b91c3a368087b001db0", "cast_id": 47, "profile_path": "/7yBAaveSHtYkzutJOKv18pq7pDI.jpg", "order": 27}, {"name": "Anthony Phelan", "character": "Lama Su (voice)", "id": 75742, "credit_id": "54e2290f9251411953007c46", "cast_id": 48, "profile_path": "/81fH305g9TTVvRj6xYO73bdS8X1.jpg", "order": 28}, {"name": "Rena Owen", "character": "Taun We (voice)", "id": 7241, "credit_id": "54e2297f92514110990021ca", "cast_id": 49, "profile_path": "/sgJpdxXO6ATawDqzFQak5HSqs9y.jpg", "order": 29}, {"name": "Alethea McGrath", "character": "Madame Jocasta Nu", "id": 79106, "credit_id": "54e22adec3a36845510088fc", "cast_id": 50, "profile_path": "/5AuTSkd7hdv5zCa6Kr1oVncEmwB.jpg", "order": 30}, {"name": "Susie Porter", "character": "Hermione Bagwa / WA-7", "id": 51671, "credit_id": "54e22c58c3a3684541008fdc", "cast_id": 51, "profile_path": "/1qBjH56g7YyhhGppkfHOvIpz7dP.jpg", "order": 31}, {"name": "Matt Sloan", "character": "Plo Koon", "id": 1427911, "credit_id": "54e23061c3a3684541009027", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "David Bowers", "character": "Mas Amedda", "id": 1167087, "credit_id": "54e23494c3a3684095001b33", "cast_id": 53, "profile_path": "/fu7caj9zHUMhYP2XbZdpCrPJepx.jpg", "order": 33}, {"name": "Steve John Shepherd", "character": "Naboo lieutenant", "id": 39679, "credit_id": "54e2365bc3a36845410090b6", "cast_id": 54, "profile_path": "/jMnHejQferJmu5huDTXaOoIGt2s.jpg", "order": 34}, {"name": "Bodie Taylor", "character": "Clone Trooper", "id": 1427935, "credit_id": "54e23ff5c3a36855c70062cf", "cast_id": 55, "profile_path": "/4zcLynlqnNG9pqBGeb6T8owPYj7.jpg", "order": 35}, {"name": "Matt Rowan", "character": "Senator Orn Free Taa", "id": 1427941, "credit_id": "54e24155c3a368454b007735", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Steven Boyle", "character": "Senator Ask Aak / Passel Argente", "id": 56504, "credit_id": "54e24268c3a3684551008ac9", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Zachariah Jensen", "character": "Kit Fisto", "id": 1427944, "credit_id": "54e242c6925141195a008442", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Alex Knoll", "character": "J.K. Burtola", "id": 1427945, "credit_id": "54e24339c3a3684541009193", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Phoebe Yiamkiati", "character": "Mari Amithest", "id": 1427946, "credit_id": "54e2439fc3a36845410091a3", "cast_id": 60, "profile_path": null, "order": 40}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe431fc3a36847f803bd8b", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.2, "runtime": 142}, "1895": {"poster_path": "/tgr5Pdy7ehZYBqBkN2K7Q02xgOb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 850000000, "overview": "Three years after the onset of the Clone Wars, the Jedi Knights have been leading the clone army into a galaxy-wide war against the Separatists. Only by embracing the Dark Side can Anakin Skywalker end the war and -- he believes -- save the woman he loves.", "video": false, "id": 1895, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode III - Revenge of the Sith", "tagline": "The saga is complete.", "vote_count": 1398, "homepage": "http://www.starwars.com/movies/episode-iii/", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0121766", "adult": false, "backdrop_path": "/wUYTfFbfPiZC6Lcyt1nonr69ZmK.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "2005-05-19", "popularity": 2.68473458282093, "original_title": "Star Wars: Episode III - Revenge of the Sith", "budget": 113000000, "cast": [{"name": "Hayden Christensen", "character": "Anakin Skywalker", "id": 17244, "credit_id": "52fe431fc3a36847f803bed7", "cast_id": 12, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Obi-Wan Kenobi", "id": 3061, "credit_id": "52fe431fc3a36847f803bedb", "cast_id": 13, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Natalie Portman", "character": "Padm\u00e9 Amidala", "id": 524, "credit_id": "52fe431fc3a36847f803bedf", "cast_id": 14, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 2}, {"name": "Ian McDiarmid", "character": "Chancellor Palpatine", "id": 27762, "credit_id": "52fe431fc3a36847f803bee3", "cast_id": 15, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 3}, {"name": "Frank Oz", "character": "Yoda (Voice)", "id": 7908, "credit_id": "52fe431fc3a36847f803bee7", "cast_id": 16, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe431fc3a36847f803beeb", "cast_id": 17, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Christopher Lee", "character": "Count Dooku", "id": 113, "credit_id": "52fe431fc3a36847f803beef", "cast_id": 18, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 6}, {"name": "Samuel L. Jackson", "character": "Mace Windu", "id": 2231, "credit_id": "52fe431fc3a36847f803bef3", "cast_id": 19, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 7}, {"name": "Jimmy Smits", "character": "Senator Bail Organa", "id": 33181, "credit_id": "52fe431fc3a36847f803bef7", "cast_id": 20, "profile_path": "/tZfr6EaIxzlT9MhY5T4C6cL3UjF.jpg", "order": 8}, {"name": "Jay Laga'aia", "character": "Captain Typho", "id": 33182, "credit_id": "52fe431fc3a36847f803befb", "cast_id": 21, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 9}, {"name": "Temuera Morrison", "character": "Commander Cody", "id": 7242, "credit_id": "52fe431fc3a36847f803beff", "cast_id": 22, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 10}, {"name": "Rohan Nichol", "character": "Captain Antilles", "id": 33184, "credit_id": "52fe431fc3a36847f803bf03", "cast_id": 24, "profile_path": "/nzvL3MRpADYWlH4ppyYgmCnM1kZ.jpg", "order": 11}, {"name": "Jeremy Bulloch", "character": "Captain Colton", "id": 33185, "credit_id": "52fe431fc3a36847f803bf07", "cast_id": 25, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 12}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431fc3a36847f803bf0b", "cast_id": 26, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 13}, {"name": "Silas Carson", "character": "Ki-Adi-Mundi / Nute Gunray", "id": 20806, "credit_id": "52fe431fc3a36847f803bf0f", "cast_id": 27, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 14}, {"name": "David Bowers", "character": "Mas Amedda", "id": 1167087, "credit_id": "52fe431fc3a36847f803bf13", "cast_id": 28, "profile_path": "/fu7caj9zHUMhYP2XbZdpCrPJepx.jpg", "order": 15}, {"name": "Keisha Castle-Hughes", "character": "Queen of Naboo", "id": 15293, "credit_id": "5408b08dc3a36812bf00012d", "cast_id": 34, "profile_path": "/i3hRf7FyBXnwNFK3phm3wRsS9N4.jpg", "order": 16}, {"name": "Wayne Pygram", "character": "Governor Tarkin", "id": 82434, "credit_id": "5408b0fdc3a36812d0000151", "cast_id": 35, "profile_path": "/mBy1Zs6PBwuVWoiHxc8ChhC0YD1.jpg", "order": 17}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "5408b34fc3a36812ba000186", "cast_id": 36, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 18}, {"name": "Bruce Spence", "character": "Tion Medon", "id": 27752, "credit_id": "54e345779251411953009419", "cast_id": 37, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 19}, {"name": "Oliver Ford Davies", "character": "Sio Bibble", "id": 31923, "credit_id": "54e346c19251411099003b08", "cast_id": 39, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 21}, {"name": "Ahmed Best", "character": "Jar Jar Binks", "id": 33197, "credit_id": "54e3472b925141469f0078bb", "cast_id": 40, "profile_path": "/7yBAaveSHtYkzutJOKv18pq7pDI.jpg", "order": 22}, {"name": "Amanda Lucas", "character": "Terr Taneel", "id": 1427863, "credit_id": "54e34d6ac3a368486f001312", "cast_id": 41, "profile_path": "/orl2zrSpf4WQUd268DsP7EspUCo.jpg", "order": 23}, {"name": "Matt Sloan", "character": "Plo Koon", "id": 1427911, "credit_id": "54e34db4c3a3684897001388", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Rebecca Jackson Mendoza", "character": "Queen of Alderaan", "id": 1428211, "credit_id": "54e34f4fc3a368489700139f", "cast_id": 43, "profile_path": "/7lR45zyqlWArPo5aGOkzDYhMRao.jpg", "order": 25}, {"name": "Joel Edgerton", "character": "Owen Lars", "id": 33192, "credit_id": "54e350f7c3a368486f00135f", "cast_id": 44, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 26}, {"name": "Bonnie Piesse", "character": "Beru Lars", "id": 131634, "credit_id": "54e351249251412c8e0035e7", "cast_id": 45, "profile_path": "/xM4s2HYCmSunDpExLnllYCp8rjZ.jpg", "order": 27}, {"name": "Jett Lucas", "character": "Zett Jukassa", "id": 1428219, "credit_id": "54e358efc3a368454b008c62", "cast_id": 46, "profile_path": "/vHM9Ta1ddrT22ejnnjqDev5ZKwa.jpg", "order": 28}, {"name": "Tux Akindoyeni", "character": "Agen Kolar", "id": 1428220, "credit_id": "54e35a799251411099003ca4", "cast_id": 47, "profile_path": "/ta8Gd1qxN56gsqzKTJ0aMz1enuS.jpg", "order": 29}, {"name": "Matt Rowan", "character": "Senator Orn Free Taa", "id": 1427941, "credit_id": "54e35b0b92514119530095ce", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Kenji Oates", "character": "Saesee Tiin", "id": 1428221, "credit_id": "54e35b8a9251411956009cf8", "cast_id": 49, "profile_path": null, "order": 31}, {"name": "Amy Allen", "character": "Aayla Secura", "id": 1428222, "credit_id": "54e35bd7925141469f007a6f", "cast_id": 50, "profile_path": "/tdo5t436U3brCu1UiXUIJVL1D8v.jpg", "order": 32}, {"name": "Bodie Taylor", "character": "Clone Trooper", "id": 1427935, "credit_id": "54e35d6e925141469f007a93", "cast_id": 51, "profile_path": "/4zcLynlqnNG9pqBGeb6T8owPYj7.jpg", "order": 33}, {"name": "Graeme Blundell", "character": "Ruwee Naberrie", "id": 85351, "credit_id": "54e35e849251411956009d3c", "cast_id": 52, "profile_path": "/gVV7qhA0bXBUa0XmVHUnOJH3u2k.jpg", "order": 34}, {"name": "Trisha Noble", "character": "Jobal Naberrie", "id": 117451, "credit_id": "54e35f56c3a368454100abd9", "cast_id": 53, "profile_path": "/zDlrzpJUyVqynhH5hzZK9v4urS8.jpg", "order": 35}, {"name": "Claudia Karvan", "character": "Sola Naberrie", "id": 79966, "credit_id": "54e35fb5c3a368454100abe3", "cast_id": 54, "profile_path": "/8o2xMWxL9SkkxXrJOGI8THZhS8Q.jpg", "order": 36}, {"name": "Keira Wingate", "character": "Ryoo Naberrie", "id": 1428223, "credit_id": "54e360349251412c8e0036ff", "cast_id": 55, "profile_path": "/mUUO263qCZReUVNIdHXtU6KwF15.jpg", "order": 37}, {"name": "Hayley Mooy", "character": "Pooja Naberrie", "id": 1428224, "credit_id": "54e361179251417add0013ba", "cast_id": 56, "profile_path": "/8D6LQUyIY7XDEBin3vzUBv0JaTf.jpg", "order": 38}, {"name": "Sandi Finlay", "character": "Sly Moore", "id": 1428225, "credit_id": "54e36173c3a3685756008621", "cast_id": 57, "profile_path": "/2kE92N7oNZ33XHlObZ1uY9npk7X.jpg", "order": 39}, {"name": "Katie Lucas", "character": "Chi Eekway", "id": 1235784, "credit_id": "54e36248925141195300964f", "cast_id": 58, "profile_path": "/bsnHZ1iGkc3i8RT0r3PkuGLR4u4.jpg", "order": 40}, {"name": "Genevieve O'Reilly", "character": "Mon Mothma", "id": 139654, "credit_id": "54e363729251412c8e003760", "cast_id": 59, "profile_path": "/8NrrFxrGng88GU7lxwOyK3PZv05.jpg", "order": 41}, {"name": "Warren Owens", "character": "Fang Zar", "id": 1322179, "credit_id": "54e365e49251411956009dbf", "cast_id": 60, "profile_path": null, "order": 42}, {"name": "Kee Chan", "character": "Mal\u00e9-Dee", "id": 15342, "credit_id": "54e3673ec3a368454d009987", "cast_id": 61, "profile_path": "/daRXLJaABxXgHK65IKlsqvyrG12.jpg", "order": 43}, {"name": "Rena Owen", "character": "Nee Alavar", "id": 7241, "credit_id": "54e367c5c3a368486f00152a", "cast_id": 62, "profile_path": "/sgJpdxXO6ATawDqzFQak5HSqs9y.jpg", "order": 44}, {"name": "Christopher Kirby", "character": "Giddean Danu", "id": 75175, "credit_id": "54e36836c3a368454d009997", "cast_id": 63, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 45}, {"name": "Matthew Wood", "character": "General Grievous (voice)", "id": 71536, "credit_id": "54e38255c3a368454b008eff", "cast_id": 64, "profile_path": "/oB9wVbEIg8fjY3ulDKjKsGn2A55.jpg", "order": 46}, {"name": "Kristy Wright", "character": "Mote\u00e9", "id": 1231126, "credit_id": "54e383ffc3a368486f0016b4", "cast_id": 65, "profile_path": "/auobXN4q0r07biMy9PS88vcdoks.jpg", "order": 47}, {"name": "Coinneach Alexander", "character": "Whie", "id": 1428265, "credit_id": "54e38486c3a36823d4000fb8", "cast_id": 66, "profile_path": "/wi6bJG4NhBnSLuYgUMzfZL0hh26.jpg", "order": 48}, {"name": "Mousy McCallum", "character": "Bene", "id": 1428270, "credit_id": "54e385a5925141454f007523", "cast_id": 67, "profile_path": "/fTz4FzUewJ7XfueJCSYCYM26STf.jpg", "order": 49}, {"name": "Michael Kingma", "character": "Wookiee", "id": 1428273, "credit_id": "54e38724925141469f007d23", "cast_id": 68, "profile_path": "/5CyOFwOokhvoBmLLL9ftlbCtbpt.jpg", "order": 50}, {"name": "Axel Dench", "character": "Wookiee", "id": 1428274, "credit_id": "54e388bec3a368486f00171d", "cast_id": 69, "profile_path": "/mTMElGQitW4llfRehJxFgOZHPPx.jpg", "order": 51}, {"name": "Steven Foy", "character": "Wookiee", "id": 1428276, "credit_id": "54e38970c3a368486f001735", "cast_id": 70, "profile_path": null, "order": 52}, {"name": "Julian Khazzouh", "character": "Wookiee", "id": 1428279, "credit_id": "54e389fe9251412c8e0039f6", "cast_id": 71, "profile_path": "/m4qAAtvEvR6QMo18Fp3cit0gCIl.jpg", "order": 53}, {"name": "James Rowland", "character": "Wookiee", "id": 1428284, "credit_id": "54e38b54925141454f0076d2", "cast_id": 72, "profile_path": null, "order": 54}, {"name": "David Stiff", "character": "Wookiee", "id": 1428287, "credit_id": "54e38c95c3a368454b008fac", "cast_id": 73, "profile_path": null, "order": 55}, {"name": "Robert Cope", "character": "Wookiee", "id": 1428293, "credit_id": "54e38de59251412c8e003a3a", "cast_id": 74, "profile_path": null, "order": 56}, {"name": "Aidan Barton", "character": "Luke Skywalker & Leia Organa", "id": 1445414, "credit_id": "5512360bc3a3681db200f1fb", "cast_id": 75, "profile_path": null, "order": 57}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe431fc3a36847f803be97", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.8, "runtime": 140}, "157547": {"poster_path": "/ic8C94ylSfcoLkXqPOKzL6DqPcH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44030246, "overview": "A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.", "video": false, "id": 157547, "genres": [{"id": 27, "name": "Horror"}], "title": "Oculus", "tagline": "You see what it wants you to see", "vote_count": 239, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2388715", "adult": false, "backdrop_path": "/fedByntH8KdlT8WCoLsH6xAVXmw.jpg", "production_companies": [{"name": "MICA Entertainment", "id": 24510}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "WWE Studios", "id": 10339}, {"name": "Relativity Media", "id": 7295}], "release_date": "2014-04-03", "popularity": 0.987598165052184, "original_title": "Oculus", "budget": 5000000, "cast": [{"name": "Katee Sackhoff", "character": "Marie Russell", "id": 51798, "credit_id": "52fe4bc89251416c910e586d", "cast_id": 2, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 0}, {"name": "Karen Gillan", "character": "Kaylie Russell", "id": 543261, "credit_id": "52fe4bc89251416c910e5871", "cast_id": 3, "profile_path": "/3ip17StrlDLs9CmYaEyVxRK94t.jpg", "order": 1}, {"name": "Brenton Thwaites", "character": "Tim Russell", "id": 1017347, "credit_id": "52fe4bc89251416c910e5875", "cast_id": 4, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 2}, {"name": "James Lafferty", "character": "Michael Dumont", "id": 98050, "credit_id": "52fe4bc89251416c910e587d", "cast_id": 6, "profile_path": "/gD8pKrlMxk7eqz7gCceL3U5F4KO.jpg", "order": 3}, {"name": "Rory Cochrane", "character": "Alan Russell", "id": 51792, "credit_id": "52fe4bc89251416c910e5881", "cast_id": 7, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 4}, {"name": "Kate Siegel", "character": "Marisol Chavez", "id": 932076, "credit_id": "53ee19df0e0a261935001f9d", "cast_id": 47, "profile_path": "/eSZbiRiRYN3VwTqZddNyFV1AzEv.jpg", "order": 5}, {"name": "Garrett Ryan", "character": "Young Tim", "id": 206505, "credit_id": "53d4a88e0e0a26284400377d", "cast_id": 45, "profile_path": "/kjwH7BG5iTO5e6W6kyzgCUC6AUr.jpg", "order": 6}, {"name": "Katie Parker", "character": "Phone Store Clerk", "id": 551462, "credit_id": "52fe4bc89251416c910e588d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Miguel Sandoval", "character": "Dr. Shawn Graham", "id": 30488, "credit_id": "52fe4bc89251416c910e5891", "cast_id": 11, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 8}, {"name": "Annalise Basso", "character": "Young Kaylie", "id": 1024722, "credit_id": "53e13e760e0a265a83007ca4", "cast_id": 46, "profile_path": "/e1wamWCv5frXtXMa32NkeRR5hny.jpg", "order": 9}], "directors": [{"name": "Mike Flanagan", "department": "Directing", "job": "Director", "credit_id": "52fe4bc89251416c910e5869", "profile_path": "/tKZNHwieLMbh03XPA8unuG8Tw3i.jpg", "id": 551463}], "vote_average": 6.1, "runtime": 104}, "51052": {"poster_path": "/crjzhg2T1sPL9yE7bFHkYp0OfXG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This Christmas movie highlights the technological advances of operations at the North Pole, revealing how Santa and his vast army of highly trained elves produce gifts and distribute them around the world in one night. However, every operation has a margin of error\u2026 When one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed \"acceptable\" to all but one, Arthur. Arthur Claus is Santa\u2019s misfit son who executes an unauthorized rookie mission to get the last present half way around the globe before dawn on Christmas morning.", "video": false, "id": 51052, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Arthur Christmas", "tagline": "Ever wonder how 2 Billion presents get delivered all in 1 night?", "vote_count": 102, "homepage": "http://www.arthurchristmas.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430607", "adult": false, "backdrop_path": "/5mfMJpkO0mxDViHEeebFrzesdwc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Aardman Animations", "id": 297}], "release_date": "2011-11-10", "popularity": 1.00540387225657, "original_title": "Arthur Christmas", "budget": 0, "cast": [{"name": "Bill Nighy", "character": "Grandsanta (voice)", "id": 2440, "credit_id": "52fe47dfc3a36847f814ce29", "cast_id": 1, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "James McAvoy", "character": "Arthur (voice)", "id": 5530, "credit_id": "52fe47dfc3a36847f814ce2d", "cast_id": 2, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Jim Broadbent", "character": "Santa (voice)", "id": 388, "credit_id": "52fe47dfc3a36847f814ce31", "cast_id": 4, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 2}, {"name": "Hugh Laurie", "character": "Steve Claus (voice)", "id": 41419, "credit_id": "52fe47dfc3a36847f814ce41", "cast_id": 7, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 3}, {"name": "Ramona Marquez", "character": "Gwen (voice)", "id": 224878, "credit_id": "52fe47dfc3a36847f814ce45", "cast_id": 8, "profile_path": "/oLT0EWlrSVxkH6VMmGEnWUCC63M.jpg", "order": 4}, {"name": "Imelda Staunton", "character": "Mrs. Santa (voice)", "id": 11356, "credit_id": "52fe47dfc3a36847f814ce55", "cast_id": 11, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 5}, {"name": "Marc Wootton", "character": "Peter (voice)", "id": 92574, "credit_id": "52fe47dfc3a36847f814ce59", "cast_id": 13, "profile_path": "/vcQq2epz9CvIOOCaE9T5RW8spB5.jpg", "order": 6}, {"name": "Laura Linney", "character": "North Pole Computer (voice)", "id": 350, "credit_id": "52fe47dfc3a36847f814ce5d", "cast_id": 14, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 7}, {"name": "Eva Longoria", "character": "Chief De Silva (voice)", "id": 52605, "credit_id": "52fe47dfc3a36847f814ce61", "cast_id": 15, "profile_path": "/AtG3fZHkLcoJGEZfbgDOaeY6Hcx.jpg", "order": 8}, {"name": "Michael Palin", "character": "Ernie Clicker (voice)", "id": 383, "credit_id": "52fe47dfc3a36847f814ce65", "cast_id": 16, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 9}, {"name": "Robbie Coltrane", "character": "Lead Elf (voice)", "id": 1923, "credit_id": "52fe47dfc3a36847f814ce69", "cast_id": 17, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 10}, {"name": "Joan Cusack", "character": "Lead Elf (voice)", "id": 3234, "credit_id": "52fe47dfc3a36847f814ce6d", "cast_id": 18, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 11}, {"name": "Ashley Jensen", "character": "Bryony (voice)", "id": 55398, "credit_id": "52fe47dfc3a36847f814ce71", "cast_id": 19, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 12}, {"name": "Danny John-Jules", "character": "Elf (voice)", "id": 115787, "credit_id": "550c8ea192514133c3001f10", "cast_id": 22, "profile_path": "/d9yIjilG7BdiPYIsXyZBV0hCuyv.jpg", "order": 13}], "directors": [{"name": "Barry Cook", "department": "Directing", "job": "Director", "credit_id": "52fe47dfc3a36847f814ce37", "profile_path": "/j2SNU8S0RGxs9jWnm71GJRyOIc0.jpg", "id": 66191}, {"name": "Sarah Smith", "department": "Directing", "job": "Director", "credit_id": "52fe47dfc3a36847f814ce3d", "profile_path": null, "id": 208113}], "vote_average": 6.7, "runtime": 97}, "1903": {"poster_path": "/ujMy9P4VczTW9YSpAM31uqdOMpz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 203388341, "overview": "David Aames (Tom Cruise) has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia (Penelope Cruz), his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.", "video": false, "id": 1903, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Vanilla Sky", "tagline": "Forget everything you know, and open your eyes.", "vote_count": 259, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0259711", "adult": false, "backdrop_path": "/vf02KIcSx4Iq9J6R7n0qxNeL8Lm.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cruise-Wagner Productions", "id": 349}, {"name": "Vinyl Films", "id": 485}], "release_date": "2001-12-10", "popularity": 1.051511053776, "original_title": "Vanilla Sky", "budget": 75000000, "cast": [{"name": "Tom Cruise", "character": "David Aames", "id": 500, "credit_id": "52fe4320c3a36847f803c36d", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Sofia Serrano", "id": 955, "credit_id": "52fe4320c3a36847f803c371", "cast_id": 14, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Julie", "id": 6941, "credit_id": "52fe4320c3a36847f803c375", "cast_id": 15, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Kurt Russell", "character": "Dr. Curtis McCabe", "id": 6856, "credit_id": "52fe4320c3a36847f803c379", "cast_id": 16, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 3}, {"name": "Jason Lee", "character": "Brian", "id": 11662, "credit_id": "52fe4320c3a36847f803c37d", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Noah Taylor", "character": "Edmund Ventura", "id": 1284, "credit_id": "52fe4320c3a36847f803c381", "cast_id": 18, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 5}, {"name": "Timothy Spall", "character": "Thomas Tipp", "id": 9191, "credit_id": "52fe4320c3a36847f803c385", "cast_id": 19, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 6}, {"name": "Tilda Swinton", "character": "Rebecca Dearborn", "id": 3063, "credit_id": "52fe4320c3a36847f803c389", "cast_id": 20, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 7}, {"name": "Armand Schultz", "character": "Dr. Pomeranz", "id": 19851, "credit_id": "52fe4320c3a36847f803c38d", "cast_id": 21, "profile_path": "/oKcmZbjESiUybY7AgWeRvaBWCFu.jpg", "order": 8}, {"name": "Alicia Witt", "character": "Libby", "id": 3128, "credit_id": "52fe4320c3a36847f803c391", "cast_id": 22, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 9}, {"name": "Michael Shannon", "character": "Aaron", "id": 335, "credit_id": "52fe4320c3a36847f803c395", "cast_id": 23, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 10}, {"name": "Ivana Mili\u010devi\u0107", "character": "Emma", "id": 29930, "credit_id": "53ab0f30c3a3684bc80000ec", "cast_id": 24, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 11}, {"name": "Shalom Harlow", "character": "Colleen", "id": 92857, "credit_id": "53ab0f61c3a3684bc2000116", "cast_id": 25, "profile_path": "/vrXxkJBKAKiGg0tsUlUbdQK5WJv.jpg", "order": 12}, {"name": "Johnny Galecki", "character": "Peter Brown", "id": 16478, "credit_id": "53ab0f82c3a3684bc2000119", "cast_id": 26, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 13}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe4320c3a36847f803c327", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.2, "runtime": 136}, "1904": {"poster_path": "/e8FHAqAYpYQ7P3yHRIs4hwjvnSU.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 162242962, "overview": "Based on the internationally acclaimed novel by Arthur Golden, Memoirs of a Geisha is a sweeping romantic epic set in a mysterious and exotic world that still casts a potent spell today. The story begins in the years before WWII when a penniless Japanese child is torn from her family to work as a maid in a geisha house.", "video": false, "id": 1904, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Memoirs of a Geisha", "tagline": "My world is as forbidden as it is fragile; without its mysteries, it cannot survive.", "vote_count": 141, "homepage": "http://www.sonypictures.com/homevideo/memoirsofageisha/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0397535", "adult": false, "backdrop_path": "/mIE9sQ64BmB8LoJkuKXTXPS8IlO.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Red Wagon Productions", "id": 780}], "release_date": "2005-12-06", "popularity": 0.911124910951948, "original_title": "Memoirs of a Geisha", "budget": 85000000, "cast": [{"name": "Zhang Ziyi", "character": "Sayuri", "id": 1339, "credit_id": "52fe4320c3a36847f803c3f3", "cast_id": 4, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 0}, {"name": "Gong Li", "character": "Hatsumomo", "id": 643, "credit_id": "52fe4320c3a36847f803c3f7", "cast_id": 5, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 1}, {"name": "Youki Kudoh", "character": "Pumpkin", "id": 16145, "credit_id": "52fe4320c3a36847f803c3fb", "cast_id": 6, "profile_path": "/4QtenZ3cLevnIDY831Y0YRQDJax.jpg", "order": 2}, {"name": "Tsai Chin", "character": "Auntie", "id": 10075, "credit_id": "52fe4320c3a36847f803c3ff", "cast_id": 7, "profile_path": "/2icB7ENqRRXxqzirAH3PupzTyqQ.jpg", "order": 3}, {"name": "Suzuka Ohgo", "character": "Chiyo", "id": 19855, "credit_id": "52fe4320c3a36847f803c403", "cast_id": 8, "profile_path": "/cyzZgrDSPk0FoUSNVmdggOvZ12w.jpg", "order": 4}, {"name": "Ken Watanabe", "character": "The Chairman", "id": 3899, "credit_id": "52fe4320c3a36847f803c407", "cast_id": 9, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 5}, {"name": "Michelle Yeoh", "character": "Mameha", "id": 1620, "credit_id": "52fe4320c3a36847f803c40b", "cast_id": 10, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 6}, {"name": "Navia Nguyen", "character": "Izuko", "id": 19856, "credit_id": "52fe4320c3a36847f803c40f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "K\u014dji Yakusho", "character": "Nobu", "id": 18056, "credit_id": "52fe4320c3a36847f803c413", "cast_id": 12, "profile_path": "/mG4niNLZbyKHEfCA7EJP8vsi7rV.jpg", "order": 8}, {"name": "Kaori Momoi", "character": "Mother", "id": 19857, "credit_id": "52fe4320c3a36847f803c417", "cast_id": 13, "profile_path": "/aHPQaKWk1foxvieDZubUJE8olaO.jpg", "order": 9}, {"name": "Zoe Weizenbaum", "character": "Young Pumpkin", "id": 19858, "credit_id": "52fe4320c3a36847f803c41b", "cast_id": 14, "profile_path": "/8OtQTNFkchKOEjOaEhN8kWnIgWD.jpg", "order": 10}, {"name": "Cary-Hiroyuki Tagawa", "character": "The Baron", "id": 11398, "credit_id": "52fe4320c3a36847f803c41f", "cast_id": 15, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 11}, {"name": "Kenneth Tsang", "character": "The General", "id": 10885, "credit_id": "52fe4320c3a36847f803c423", "cast_id": 16, "profile_path": "/6oYTIjKlp8vsyxod7nPJ1R9V8Hf.jpg", "order": 12}, {"name": "Randall Duk Kim", "character": "Dr. Crab", "id": 9462, "credit_id": "52fe4320c3a36847f803c427", "cast_id": 17, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 13}, {"name": "Paul Adelstein", "character": "Lieutenant Hutchins", "id": 17342, "credit_id": "52fe4320c3a36847f803c42b", "cast_id": 18, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 14}, {"name": "Ted Levine", "character": "Colonel Derricks", "id": 15854, "credit_id": "52fe4320c3a36847f803c42f", "cast_id": 19, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 15}, {"name": "Samantha Futerman", "character": "Satsu", "id": 19859, "credit_id": "52fe4320c3a36847f803c433", "cast_id": 20, "profile_path": "/9Wx5VKwW60g7WEREbufz7CYKamC.jpg", "order": 16}, {"name": "Karl Yune", "character": "Koichi", "id": 19860, "credit_id": "52fe4320c3a36847f803c437", "cast_id": 21, "profile_path": "/qK315vPObCNdywdRN66971FtFez.jpg", "order": 17}, {"name": "Togo Igawa", "character": "Tanaka", "id": 9192, "credit_id": "52fe4320c3a36847f803c43b", "cast_id": 22, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 18}, {"name": "Elizabeth Sung", "character": "Sakamoto's Wife", "id": 19861, "credit_id": "52fe4320c3a36847f803c43f", "cast_id": 23, "profile_path": "/m8q9gRb9owm33pDuNlEeC59ck8W.jpg", "order": 19}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4320c3a36847f803c3e3", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.9, "runtime": 145}, "10098": {"poster_path": "/fhr4sGNA69XaoaqymNaUFHolIPI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2500000, "overview": "Considered one of Charlie Chaplin's best films, The Kid also made a star of little Jackie Coogan, who plays a boy cared for by The Tramp when he's abandoned by his mother, Edna. Later, Edna has a change of heart and aches to be reunited with her son. When she finds him and wrests him from The Tramp, it makes for what turns out be one of the most heart-wrenching scenes ever included in a comedy.", "video": false, "id": 10098, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Kid", "tagline": "6 reels of Joy.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0012349", "adult": false, "backdrop_path": "/6hEfCdZ2PMbu3XH8jVRKCdROlyD.jpg", "production_companies": [{"name": "Charles Chaplin Productions", "id": 1315}], "release_date": "1921-01-21", "popularity": 0.736963317722044, "original_title": "The Kid", "budget": 0, "cast": [{"name": "Charles Chaplin", "character": "A Tramp", "id": 13848, "credit_id": "52fe43269251416c7500562d", "cast_id": 10, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Jackie Coogan", "character": "The Kid", "id": 19426, "credit_id": "52fe43269251416c75005615", "cast_id": 4, "profile_path": "/AsRLmcdR5fqhxXlPlwH5TkMMJ2C.jpg", "order": 1}, {"name": "Edna Purviance", "character": "Mother", "id": 21301, "credit_id": "52fe43269251416c75005619", "cast_id": 5, "profile_path": "/lbu4Ji7ePiozKMfYlAazX6HkHUj.jpg", "order": 2}, {"name": "Albert Austin", "character": "Man in shelter", "id": 21306, "credit_id": "52fe43269251416c7500561d", "cast_id": 6, "profile_path": "/36dRfFUJTJ66D0odwVbRM0eAIfZ.jpg", "order": 3}, {"name": "Beulah Bains", "character": "Bride", "id": 63380, "credit_id": "52fe43269251416c75005631", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Carl Miller", "character": "The Man", "id": 63378, "credit_id": "52fe43269251416c75005635", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Henry Bergman", "character": "Night shelter keeper", "id": 14438, "credit_id": "52fe43269251416c75005639", "cast_id": 13, "profile_path": "/lXhkLU19RhgFD95zx84jjXhhyE.jpg", "order": 6}, {"name": "Kitty Bradbury", "character": "Bride's mother", "id": 10531, "credit_id": "52fe43269251416c7500563d", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Nellie Bly Baker", "character": "Slum nurse", "id": 63381, "credit_id": "52fe43269251416c75005641", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "F. Blinn", "character": "His assistant", "id": 63382, "credit_id": "52fe43269251416c75005645", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Frances Cochran", "character": "Extra in reception scene", "id": 63386, "credit_id": "52fe43269251416c75005649", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Frank Campeau", "character": "Welfare officer", "id": 63383, "credit_id": "52fe43269251416c7500564d", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Bliss Chevalier", "character": "Extra in wedding scene", "id": 63384, "credit_id": "52fe43269251416c75005651", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Elsie Codd", "character": "Extra in alley scene", "id": 63385, "credit_id": "52fe43269251416c75005655", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Jack Coogan Sr.", "character": "Pickpocket / Guest / Devil", "id": 63387, "credit_id": "52fe43269251416c75005659", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Estelle Cook", "character": "Extra in wedding scene", "id": 63388, "credit_id": "52fe43269251416c7500565d", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Dan Dillon", "character": "Bum", "id": 63390, "credit_id": "52fe43269251416c75005661", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Philip D'Oench", "character": "Extra in wedding scene", "id": 63391, "credit_id": "52fe43269251416c75005665", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Lillian Crane", "character": "Extra in wedding scene", "id": 63389, "credit_id": "52fe43269251416c75005669", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Robert Dunbar", "character": "Bridegroom", "id": 63392, "credit_id": "52fe43269251416c7500566d", "cast_id": 26, "profile_path": null, "order": 19}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe43269251416c75005605", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.9, "runtime": 68}, "13971": {"poster_path": "/vH2Z6JO2r6Q0aQaPDbIAYDOSG4H.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rebellious 16 year old Poppy from Mailibu is sent to an English boarding school. Realising her Father isn't coming back to rescue her she tries to get expelled.", "video": false, "id": 13971, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Wild Child", "tagline": "New Girl. New School. New Rules.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1024255", "adult": false, "backdrop_path": "/18W6hUmP9sVzDlzzlrsP4RaKJ7H.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2008-01-01", "popularity": 0.69684327401262, "original_title": "Wild Child", "budget": 0, "cast": [{"name": "Emma Roberts", "character": "Poppy", "id": 34847, "credit_id": "52fe45bd9251416c75060d9b", "cast_id": 2, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "Lexi Ainsworth", "character": "Molly", "id": 76226, "credit_id": "52fe45bd9251416c75060d9f", "cast_id": 3, "profile_path": "/sS4gKvUFuuUnJwZIDDCXj3gyotu.jpg", "order": 1}, {"name": "Shelby Young", "character": "Ruby", "id": 25113, "credit_id": "52fe45bd9251416c75060da3", "cast_id": 4, "profile_path": "/p5AgNnqgGC4FyZoQTIjwykwQxOy.jpg", "order": 2}, {"name": "Johnny Pacar", "character": "Roddy", "id": 76227, "credit_id": "52fe45bd9251416c75060da7", "cast_id": 5, "profile_path": "/ebTDDwnCqexS5YNYA0Mq3jBL8gT.jpg", "order": 3}, {"name": "Natasha Richardson", "character": "Mrs Kingsley", "id": 20162, "credit_id": "52fe45bd9251416c75060dab", "cast_id": 6, "profile_path": "/eHBBsS6JLSEoLBi61nYfTs5t55u.jpg", "order": 4}, {"name": "Georgia King", "character": "Harriet", "id": 73462, "credit_id": "52fe45bd9251416c75060daf", "cast_id": 7, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 5}, {"name": "Sophie Wu", "character": "Kiki", "id": 116883, "credit_id": "52fe45bd9251416c75060db3", "cast_id": 9, "profile_path": "/AtwCdj7Dk8qe3otYLAjARxlaD7.jpg", "order": 6}, {"name": "Juno Temple", "character": "Jennifer 'Drippy' Logan", "id": 36594, "credit_id": "52fe45bd9251416c75060db7", "cast_id": 10, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 7}, {"name": "Aidan Quinn", "character": "Gerry Moore", "id": 18992, "credit_id": "52fe45bd9251416c75060dfd", "cast_id": 22, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 8}, {"name": "Ruby Thomas", "character": "Jane", "id": 1017854, "credit_id": "52fe45bd9251416c75060e01", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Eleanor Turner-Moss", "character": "Charlotte", "id": 1130143, "credit_id": "52fe45bd9251416c75060e05", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Kimberley Nixon", "character": "Kate", "id": 124828, "credit_id": "52fe45bd9251416c75060e09", "cast_id": 25, "profile_path": "/frdqvlqCWK76ERBB9cMVeRCKcHv.jpg", "order": 11}, {"name": "Maisie Preston", "character": "'Wow' Girl", "id": 946844, "credit_id": "52fe45bd9251416c75060e0d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Linzey Cocker", "character": "Josie", "id": 123497, "credit_id": "52fe45bd9251416c75060e11", "cast_id": 27, "profile_path": "/xw2AsgVOjJ7JJzort7nDxKpr9rM.jpg", "order": 13}, {"name": "Shirley Henderson", "character": "Matron", "id": 1834, "credit_id": "52fe45bd9251416c75060e15", "cast_id": 28, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 14}, {"name": "Alex Pettyfer", "character": "Freddie", "id": 61363, "credit_id": "52fe45bd9251416c75060e19", "cast_id": 29, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 15}], "directors": [{"name": "Nick Moore", "department": "Directing", "job": "Director", "credit_id": "52fe45bd9251416c75060d97", "profile_path": null, "id": 3310}], "vote_average": 6.4, "runtime": 98}, "75638": {"poster_path": "/iiNGtxUhO2oDeCci7E6OF7OEASk.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.", "video": false, "id": 75638, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Red Lights", "tagline": "How much do you want to believe?", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748179", "adult": false, "backdrop_path": "/jk5al2dckPNLf22flMs2JZ6nru4.jpg", "production_companies": [{"name": "Nostromo Pictures", "id": 11068}, {"name": "Cindy Cowan Entertainment", "id": 22862}, {"name": "Antena 3 Films", "id": 6538}, {"name": "Televisi\u00f3 de Catalunya", "id": 5085}, {"name": "Instituto de la Cinematograf\u00eda y de las Artes Audiovisuales (ICAA)", "id": 9974}, {"name": "La Sexta", "id": 22863}, {"name": "Canal+ Espana", "id": 12625}], "release_date": "2012-07-12", "popularity": 0.611728864835055, "original_title": "Red Lights", "budget": 0, "cast": [{"name": "Sigourney Weaver", "character": "Margaret Matheson", "id": 10205, "credit_id": "52fe490ac3a368484e117a03", "cast_id": 3, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Simon Silver", "id": 380, "credit_id": "52fe490ac3a368484e1179f9", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Cillian Murphy", "character": "Tom Buckley", "id": 2037, "credit_id": "52fe490ac3a368484e117a07", "cast_id": 4, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 2}, {"name": "Elizabeth Olsen", "character": "Sally Owen", "id": 550843, "credit_id": "52fe490ac3a368484e117a0b", "cast_id": 5, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 3}, {"name": "Toby Jones", "character": "Paul Shackleton", "id": 13014, "credit_id": "52fe490ac3a368484e117a0f", "cast_id": 6, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 4}, {"name": "Joely Richardson", "character": "Monica Handsen", "id": 20810, "credit_id": "52fe490ac3a368484e117a13", "cast_id": 7, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 5}, {"name": "Karen David", "character": "Dana", "id": 79124, "credit_id": "532862739251411a05002468", "cast_id": 20, "profile_path": "/pBR1dQvCEBpRaaL6dF8L9FtfJE8.jpg", "order": 6}, {"name": "Craig Roberts", "character": "Ben", "id": 104561, "credit_id": "52fe490ac3a368484e117a1b", "cast_id": 9, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 7}, {"name": "Burn Gorman", "character": "Benedict Cohen", "id": 39659, "credit_id": "52fe490ac3a368484e117a1f", "cast_id": 10, "profile_path": "/qV6MEseSjTkz1SKw9RoNHaesdRr.jpg", "order": 8}, {"name": "Gina Bramhill", "character": "Judi Cale", "id": 990278, "credit_id": "52fe490ac3a368484e117a23", "cast_id": 11, "profile_path": "/q49XA11Yks5eqPXi8rmzs1X1IgG.jpg", "order": 9}, {"name": "Jan Cornet", "character": "David Matheson", "id": 440879, "credit_id": "52fe490ac3a368484e117a27", "cast_id": 12, "profile_path": "/mSvPtwX5nP9gkoXsXtTHripMU4G.jpg", "order": 10}, {"name": "Leonardo Sbaraglia", "character": "Palladino", "id": 19803, "credit_id": "52fe490ac3a368484e117a2b", "cast_id": 13, "profile_path": "/u3UxARVRPxOg1DqVbjq3Qe934ZJ.jpg", "order": 11}, {"name": "Garrick Hagon", "character": "Howard McColm", "id": 17356, "credit_id": "52fe490ac3a368484e117a2f", "cast_id": 14, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 12}, {"name": "Jesse Bostick", "character": "TV Boy", "id": 1026218, "credit_id": "52fe490ac3a368484e117a33", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Jeany Spark", "character": "Traci Northrop", "id": 495384, "credit_id": "52fe490ac3a368484e117a37", "cast_id": 16, "profile_path": "/9hx80tezCDEvpAzOhg97RZvKmUh.jpg", "order": 14}, {"name": "Eloise Webb", "character": "Susan Sidgwick", "id": 1394373, "credit_id": "550bd58a9251414699003070", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Rodrigo Cort\u00e9s", "department": "Directing", "job": "Director", "credit_id": "52fe490ac3a368484e1179ff", "profile_path": "/iGeAsnt5Ni96dbQD7FnClc4UQDB.jpg", "id": 95320}], "vote_average": 6.0, "runtime": 119}, "1911": {"poster_path": "/6isysxWoD204IWMMXhFU4f7Uhe6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61698899, "overview": "In AD 922, Arab courtier Ahmad Ibn Fadlan (Antonio Banderas) accompanies a party of Vikings to the barbaric North to combat a terror that slaughters Vikings and devours their flesh.", "video": false, "id": 1911, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The 13th Warrior", "tagline": "Prey for the living.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120657", "adult": false, "backdrop_path": "/cAWjH6Oz0fb10F75vRPbRIM2q6Z.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1999-08-27", "popularity": 0.999026560451981, "original_title": "The 13th Warrior", "budget": 160000000, "cast": [{"name": "Antonio Banderas", "character": "Ahmad Ibn Fadl\u0101n", "id": 3131, "credit_id": "52fe4321c3a36847f803c6d9", "cast_id": 4, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Vladimir Kulich", "character": "Buliwyf", "id": 19898, "credit_id": "52fe4321c3a36847f803c6e3", "cast_id": 6, "profile_path": "/A2g8P9LbEhi34s4I5my4Soo5Y30.jpg", "order": 1}, {"name": "Dennis Storh\u00f8i", "character": "Herger the Joyous", "id": 19899, "credit_id": "52fe4321c3a36847f803c6e7", "cast_id": 7, "profile_path": "/zc8O7O8l8wtX3EQmDV7jWOPjmHJ.jpg", "order": 2}, {"name": "Daniel Southern", "character": "Edgtho the Silent", "id": 19900, "credit_id": "52fe4321c3a36847f803c6eb", "cast_id": 8, "profile_path": "/4usRNd9ETuQxeJNvrOG5PZXOHS8.jpg", "order": 3}, {"name": "Clive Russell", "character": "Helfdane the Fat", "id": 19901, "credit_id": "52fe4321c3a36847f803c6ef", "cast_id": 9, "profile_path": "/3dkiAdWPMPiPRqwi5MVBFOSD9Xo.jpg", "order": 4}, {"name": "Mischa Hausserman", "character": "Rethel the Archer", "id": 19902, "credit_id": "52fe4321c3a36847f803c6f3", "cast_id": 10, "profile_path": "/4CJ8dgYS1QJWANpivJ8CI9aARog.jpg", "order": 5}, {"name": "Richard Bremmer", "character": "Skeld the Superstitious", "id": 19903, "credit_id": "52fe4321c3a36847f803c6f7", "cast_id": 11, "profile_path": "/eRLxQ7sTWqtI24OPo5wz3p95RI3.jpg", "order": 6}, {"name": "Diane Venora", "character": "Queen Weilew", "id": 6200, "credit_id": "52fe4321c3a36847f803c701", "cast_id": 13, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 7}, {"name": "Neil Maffin", "character": "Roneth", "id": 156000, "credit_id": "544e9eefc3a3686aa800058f", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "John DeSantis", "character": "Ragnar - Dour", "id": 43299, "credit_id": "544e9f0a0e0a267114000534", "cast_id": 15, "profile_path": "/vRAZhbcTbS56k5CpfO1NckaJf9N.jpg", "order": 9}, {"name": "Oliver Sveinall", "character": "Haltaf - Boy", "id": 1378404, "credit_id": "544e9f2fc3a368565d00060d", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Asbj\u00f8rn 'Bear' Riis", "character": "Halga - Wise", "id": 1378405, "credit_id": "544e9f4fc3a3686376000599", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Tony Curran", "character": "Weath - Musician", "id": 2220, "credit_id": "544e9f6d0e0a26421e00064b", "cast_id": 18, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 12}, {"name": "Albie Woodington", "character": "Hyglak - Quarrelsome", "id": 53353, "credit_id": "544e9f81c3a36855d1000251", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Omar Sharif", "character": "Melchisidek", "id": 5004, "credit_id": "544e9f970e0a263c710005b4", "cast_id": 20, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 14}, {"name": "Erick Avari", "character": "Caravan Leader", "id": 18917, "credit_id": "544e9faac3a368565d000619", "cast_id": 21, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 15}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe4321c3a36847f803c6df", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.3, "runtime": 102}, "8247": {"poster_path": "/mIz6FQabZrrzsOwYFpUpreijpvx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222231186, "overview": "A genetic anomaly allows a young man to teleport himself anywhere. He discovers this gift has existed for centuries and finds himself in a war that has been raging for thousands of years between \"Jumpers\" and those who have sworn to kill them.", "video": false, "id": 8247, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Jumper", "tagline": "anywhere is possible.", "vote_count": 565, "homepage": "http://www.jumperthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489099", "adult": false, "backdrop_path": "/3gZ2iiqCqwVg7sKm2KUspzxfelQ.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Hypnotic", "id": 7384}, {"name": "Dune Entertainment", "id": 444}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Jumper Productions", "id": 11805}], "release_date": "2008-02-10", "popularity": 0.793669791636738, "original_title": "Jumper", "budget": 85000000, "cast": [{"name": "Hayden Christensen", "character": "David Rice", "id": 17244, "credit_id": "52fe4498c3a36847f809f2f9", "cast_id": 29, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Roland", "id": 2231, "credit_id": "52fe4498c3a36847f809f26d", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Rachel Bilson", "character": "Millie Harris", "id": 52783, "credit_id": "52fe4498c3a36847f809f279", "cast_id": 6, "profile_path": "/tb5sDcY2QR72oyJthVEn4xaLJ7J.jpg", "order": 2}, {"name": "Jamie Bell", "character": "Griffin", "id": 478, "credit_id": "52fe4498c3a36847f809f275", "cast_id": 5, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 3}, {"name": "Diane Lane", "character": "Mary Rice", "id": 2882, "credit_id": "52fe4498c3a36847f809f271", "cast_id": 4, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 4}, {"name": "Michael Rooker", "character": "William Rice", "id": 12132, "credit_id": "52fe4498c3a36847f809f27d", "cast_id": 7, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 5}, {"name": "Max Thieriot", "character": "Young David", "id": 41883, "credit_id": "52fe4498c3a36847f809f281", "cast_id": 8, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 6}, {"name": "AnnaSophia Robb", "character": "Young Millie", "id": 1285, "credit_id": "52fe4498c3a36847f809f2e5", "cast_id": 25, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 7}, {"name": "Kristen Stewart", "character": "Sophie", "id": 37917, "credit_id": "52fe4498c3a36847f809f2e9", "cast_id": 26, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 8}, {"name": "Jesse James", "character": "Young Mark", "id": 10135, "credit_id": "52fe4498c3a36847f809f2fd", "cast_id": 30, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 9}, {"name": "Tom Hulce", "character": "Mr. Bowker", "id": 3999, "credit_id": "52fe4498c3a36847f809f301", "cast_id": 31, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 10}, {"name": "Teddy Dunn", "character": "Mark Kobold", "id": 115729, "credit_id": "52fe4498c3a36847f809f305", "cast_id": 32, "profile_path": "/Aps4GgLsUsijrzcHozPEQeggwGf.jpg", "order": 11}, {"name": "Barbara Garrick", "character": "Ellen", "id": 12932, "credit_id": "52fe4498c3a36847f809f309", "cast_id": 33, "profile_path": "/rGnwUug86oil1pZ9whjohbBBRqj.jpg", "order": 12}, {"name": "Massimiliano Pazzaglia", "character": "Italian Desk Cop", "id": 27427, "credit_id": "52fe4498c3a36847f809f30d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Michael Winther", "character": "Day Bank Manager", "id": 1184028, "credit_id": "52fe4498c3a36847f809f33b", "cast_id": 43, "profile_path": "/mcQ2TfhyGOpfENiaRskdzbdS0fM.jpg", "order": 14}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a36847f809f269", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 5.8, "runtime": 88}, "10110": {"poster_path": "/mD5BkLNSPXS8GZDB0VRRrI7YV5V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of young English boy who lives with his parents in Shanghai during World War II. After the Pearl Harbor attack, the Japanese occupy the Shanghai International Settlement, and in the following chaos Jim becomes separated from his parents.", "video": false, "id": 10110, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Empire of the Sun", "tagline": "To survive in a world at war, he must find a strength greater than all the events that surround him.", "vote_count": 170, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0092965", "adult": false, "backdrop_path": "/uayKpWZjHngQXjop6amA4EPJC2R.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-12-08", "popularity": 0.982191189588627, "original_title": "Empire of the Sun", "budget": 38000000, "cast": [{"name": "Christian Bale", "character": "Jim 'Jamie' Graham", "id": 3894, "credit_id": "52fe43299251416c75005c7f", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "John Malkovich", "character": "Basie", "id": 6949, "credit_id": "52fe43299251416c75005c83", "cast_id": 2, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Miranda Richardson", "character": "Mrs. Victor", "id": 8436, "credit_id": "52fe43299251416c75005c87", "cast_id": 3, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 2}, {"name": "Nigel Havers", "character": "Dr. Rawlins", "id": 53517, "credit_id": "52fe43299251416c75005c8b", "cast_id": 4, "profile_path": "/yujuXwxZibgl7NMhk0uZ1FX7Nyf.jpg", "order": 3}, {"name": "Ben Stiller", "character": "Dainty", "id": 7399, "credit_id": "52fe43299251416c75005c8f", "cast_id": 5, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 4}, {"name": "Joe Pantoliano", "character": "Frank Demarest", "id": 532, "credit_id": "53616fb0c3a368395d000420", "cast_id": 18, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Leslie Phillips", "character": "Maxton", "id": 10655, "credit_id": "53616fc1c3a368397600041a", "cast_id": 19, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 6}, {"name": "Masat\u014d Ibu", "character": "Sgt. Nagata", "id": 93892, "credit_id": "53616fcfc3a368394e000425", "cast_id": 20, "profile_path": "/oVy1sMt7DVttkG5Gpxcv6ullVU9.jpg", "order": 7}, {"name": "Emily Richard", "character": "Mary Graham, Jim's mother", "id": 1239914, "credit_id": "536170a9c3a368396e000420", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Rupert Frazer", "character": "John Graham, Jim's father", "id": 62231, "credit_id": "536170d7c3a368394e00043a", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Peter Galea", "character": "Mr. Victor", "id": 1206019, "credit_id": "536170e5c3a368394700043d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Takatar\u00f4 Kataoka", "character": "Kamikaze Boy Pilot", "id": 1169235, "credit_id": "536170f7c3a36839650003ed", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "David Neidorf", "character": "Tiptree", "id": 4042, "credit_id": "53617109c3a3683947000440", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Ralph Seymour", "character": "Cohen", "id": 5147, "credit_id": "53617118c3a3683947000442", "cast_id": 26, "profile_path": "/7lu95loRqfN0TTWZGM1QfI5hX8W.jpg", "order": 13}, {"name": "Robert Stephens", "character": "Mr. Lockwood", "id": 41957, "credit_id": "5361712bc3a368395d000433", "cast_id": 27, "profile_path": "/q1GXvr08N9MzkTrMQjSXwDPrzRV.jpg", "order": 14}, {"name": "Zhai Nai She", "character": "Yang", "id": 1315503, "credit_id": "53617149c3a368394e000442", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Guts Ishimatsu", "character": "Sgt. Uchida", "id": 1315504, "credit_id": "5361717cc3a368397600043a", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Emma Piper", "character": "Amy Matthews", "id": 1315505, "credit_id": "5361718bc3a36839650003f5", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "James Walker", "character": "Mr. Radik", "id": 1315316, "credit_id": "5361725e0e0a2649bf0004c9", "cast_id": 31, "profile_path": null, "order": 18}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe43299251416c75005c95", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.0, "runtime": 153}, "10112": {"poster_path": "/jKEwHW5feriPFA0QGZsk3cjQ5T9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55675257, "overview": "When Madame Adelaide Bonfamille leaves her fortune to Duchess and her children -- Bonfamille's prize family of domesticated house cats -- the butler plots to steal the money and kidnaps the heirs, leaving them out on a country road. All seems lost until the wily Thomas O'Malley Cat and his jazz-playing alley cats come to the Aristocats's rescue.", "video": false, "id": 10112, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Aristocats", "tagline": "A tune-filled animated extravaganza.", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065421", "adult": false, "backdrop_path": "/wdAFkYTSxdzbQx35aZdfv4Nm9l.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1970-12-24", "popularity": 1.59041421044054, "original_title": "The Aristocats", "budget": 4000000, "cast": [{"name": "Phil Harris", "character": "O'Malley", "id": 57329, "credit_id": "52fe43299251416c75005e47", "cast_id": 1, "profile_path": "/cNfUGziMuqXlrw5i3w1VqugwIt5.jpg", "order": 0}, {"name": "Sterling Holloway", "character": "Roquefort", "id": 34759, "credit_id": "52fe43299251416c75005e4b", "cast_id": 3, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 1}, {"name": "Scatman Crothers", "character": "Scat Cat", "id": 7077, "credit_id": "52fe43299251416c75005e4f", "cast_id": 4, "profile_path": "/n3REW3TGbjLC8SbaZG7g48pm98n.jpg", "order": 2}, {"name": "Eva Gabor", "character": "Duchess", "id": 44714, "credit_id": "52fe432a9251416c75005e9b", "cast_id": 18, "profile_path": "/1TffwJuOCaQSHmiQoI3ShogsMTP.jpg", "order": 3}, {"name": "Paul Winchell", "character": "Chinese Cat", "id": 77548, "credit_id": "52fe432a9251416c75005ea5", "cast_id": 20, "profile_path": "/hAhbU0lCkYA0yCHZb6sVKWluY3Y.jpg", "order": 4}, {"name": "Lord Tim Hudson", "character": "English Cat", "id": 951459, "credit_id": "52fe432a9251416c75005ea9", "cast_id": 21, "profile_path": "/6gfzXSEqnKLg4cKZ9cA9VM27M9f.jpg", "order": 5}, {"name": "Vito Scotti", "character": "Italian Cat", "id": 82779, "credit_id": "52fe432a9251416c75005ead", "cast_id": 22, "profile_path": "/pN3aRdEF78xyCHsZrju56FO12wK.jpg", "order": 6}, {"name": "Thurl Ravenscroft", "character": "Russian Cat", "id": 150739, "credit_id": "52fe432a9251416c75005eb1", "cast_id": 23, "profile_path": "/6DSmCbrUeNP7lDJkhTkJ7I9hTeq.jpg", "order": 7}, {"name": "Dean Clark", "character": "Berlioz", "id": 949102, "credit_id": "52fe432a9251416c75005eb5", "cast_id": 24, "profile_path": "/uhJhqdZdUnF6RtBo5jIvnk8nofm.jpg", "order": 8}, {"name": "Liz English", "character": "Marie", "id": 950035, "credit_id": "52fe432a9251416c75005eb9", "cast_id": 25, "profile_path": "/F1MTpnjKKJkLWhcRTS7QTIaPNP.jpg", "order": 9}, {"name": "Gary Dubin", "character": "Toulouse", "id": 16202, "credit_id": "52fe432a9251416c75005ebd", "cast_id": 26, "profile_path": "/wEmM0j6H57x1YQy4WFu5p9Ibh4A.jpg", "order": 10}, {"name": "Nancy Kulp", "character": "Frou-Frou", "id": 30519, "credit_id": "52fe432a9251416c75005ec1", "cast_id": 27, "profile_path": "/b7paqBqgqbbGZs1hTsXC0sfBtSQ.jpg", "order": 11}, {"name": "Pat Buttram", "character": "Napoleon", "id": 21460, "credit_id": "52fe432a9251416c75005ec5", "cast_id": 28, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 12}, {"name": "George Lindsey", "character": "Lafayette", "id": 141693, "credit_id": "52fe432a9251416c75005ec9", "cast_id": 29, "profile_path": "/dvlW5KWKZuub9nqkwwePA5Tf1yX.jpg", "order": 13}, {"name": "Monica Evans", "character": "Abigail", "id": 143770, "credit_id": "52fe432a9251416c75005ecd", "cast_id": 30, "profile_path": "/hp8qc9ZB0U3hehc6mseyHVd8j0p.jpg", "order": 14}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe43299251416c75005e55", "profile_path": null, "id": 57314}], "vote_average": 6.5, "runtime": 78}, "1921": {"poster_path": "/o93LJC8y88MGBC3C7e71C45G5bx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.", "video": false, "id": 1921, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sweet November", "tagline": "She Just Needed A Month To Change His Life For Ever.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0230838", "adult": false, "backdrop_path": "/bOEoGixpghPwrHOsMnKq98rqLLq.jpg", "production_companies": [{"name": "Bel Air Entertainment", "id": 788}], "release_date": "2001-02-16", "popularity": 0.736560131086694, "original_title": "Sweet November", "budget": 40000000, "cast": [{"name": "Keanu Reeves", "character": "Nelson", "id": 6384, "credit_id": "52fe4322c3a36847f803cc3d", "cast_id": 15, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Sara", "id": 6885, "credit_id": "52fe4322c3a36847f803cc41", "cast_id": 16, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Jason Isaacs", "character": "Chaz", "id": 11355, "credit_id": "52fe4322c3a36847f803cc45", "cast_id": 17, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 2}, {"name": "Greg Germann", "character": "Vince", "id": 19974, "credit_id": "52fe4322c3a36847f803cc49", "cast_id": 18, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 3}, {"name": "Lauren Graham", "character": "Angelica", "id": 16858, "credit_id": "52fe4322c3a36847f803cc4d", "cast_id": 19, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 4}, {"name": "Michael Rosenbaum", "character": "Brandon", "id": 19975, "credit_id": "52fe4322c3a36847f803cc51", "cast_id": 20, "profile_path": "/kfitDCFN9JJxZF6IE0XzgdgDtXr.jpg", "order": 5}, {"name": "Frank Langella", "character": "Edgar Price", "id": 8924, "credit_id": "52fe4322c3a36847f803cc55", "cast_id": 21, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 6}, {"name": "Robert Joy", "character": "Raeford Dunne", "id": 19976, "credit_id": "52fe4322c3a36847f803cc59", "cast_id": 22, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 7}, {"name": "Liam Aiken", "character": "Abner", "id": 19977, "credit_id": "52fe4322c3a36847f803cc5d", "cast_id": 23, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 8}, {"name": "Jason Kravits", "character": "Manny", "id": 19978, "credit_id": "52fe4322c3a36847f803cc61", "cast_id": 24, "profile_path": "/cVKEiEDx84xV2KiMKYZcNJLQDWX.jpg", "order": 9}, {"name": "June Carryl", "character": "Beatrice", "id": 19979, "credit_id": "52fe4322c3a36847f803cc65", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Kelvin Han Yee", "character": "Burly Man", "id": 19980, "credit_id": "52fe4322c3a36847f803cc69", "cast_id": 26, "profile_path": "/qTLQx8LDGKSeGfDdFxidsMpFAGv.jpg", "order": 11}, {"name": "David Fine", "character": "Homeless Person", "id": 19981, "credit_id": "52fe4322c3a36847f803cc6d", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Diane Amos", "character": "Rachel, Coffee Shop Waitress", "id": 19982, "credit_id": "52fe4322c3a36847f803cc71", "cast_id": 28, "profile_path": null, "order": 13}], "directors": [{"name": "Pat O'Connor", "department": "Directing", "job": "Director", "credit_id": "52fe4322c3a36847f803cbeb", "profile_path": null, "id": 19969}], "vote_average": 6.6, "runtime": 119}, "1923": {"poster_path": "/lGdKDTZLXPFzij5Q3LJ8djbt2Ed.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4000000, "overview": "In the folksy town of Deerfield, Wash., FBI Agent Desmond (Chris Isaak) inexplicably disappears while hunting for the man who murdered a teen girl. The killer is never apprehended, and, after experiencing dark visions and supernatural encounters, Agent Dale Cooper (Kyle MacLachlan) chillingly predicts that the culprit will claim another life. Meanwhile, in the similarly cozy town of Twin Peaks, hedonistic beauty Lara Palmer (Sheryl Lee) hangs with lowlifes and seems destined for a grisly fate.", "video": false, "id": 1923, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Twin Peaks: Fire Walk with Me", "tagline": "Meet Laura Palmer... In a town where nothing is as it seems... And everyone has something to hide.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105665", "adult": false, "backdrop_path": "/5TWV9almHDBywbULDFdYMMdmEEw.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1992-05-01", "popularity": 1.14767216902549, "original_title": "Twin Peaks: Fire Walk with Me", "budget": 10000000, "cast": [{"name": "Sheryl Lee", "character": "Laura Palmer", "id": 6726, "credit_id": "52fe4322c3a36847f803cd81", "cast_id": 9, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 0}, {"name": "Ray Wise", "character": "Leland Palmer", "id": 6719, "credit_id": "52fe4322c3a36847f803cd95", "cast_id": 14, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 1}, {"name": "M\u00e4dchen Amick", "character": "Shelly Johnson", "id": 6714, "credit_id": "52fe4322c3a36847f803cd89", "cast_id": 11, "profile_path": "/y9qpjIzfm78aPHR8wxeTo20bDyV.jpg", "order": 2}, {"name": "Dana Ashbrook", "character": "Bobby Briggs", "id": 6715, "credit_id": "53da4f9ac3a3681ecd00174a", "cast_id": 27, "profile_path": "/qk2BsFN6ITljgG7wtGAcitbkFQC.jpg", "order": 3}, {"name": "Phoebe Augustine", "character": "Ronette Pulaski", "id": 15796, "credit_id": "52fe4322c3a36847f803cd8d", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "David Bowie", "character": "Phillip Jeffries", "id": 7487, "credit_id": "52fe4322c3a36847f803cd91", "cast_id": 13, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 5}, {"name": "Eric DaRe", "character": "Leo Johnson", "id": 9323, "credit_id": "53da506f0e0a2652e50023c4", "cast_id": 28, "profile_path": "/ifUTWQVVl9uYm0EweI1uy4fKPbP.jpg", "order": 6}, {"name": "Miguel Ferrer", "character": "Albert Rosenfeld", "id": 15860, "credit_id": "52fe4322c3a36847f803cdc5", "cast_id": 26, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 7}, {"name": "Moira Kelly", "character": "Donna Hayward", "id": 20005, "credit_id": "52fe4322c3a36847f803cd85", "cast_id": 10, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 8}, {"name": "Heather Graham", "character": "Annie Blackburn", "id": 69122, "credit_id": "52fe4322c3a36847f803cd99", "cast_id": 15, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 9}, {"name": "James Marshall", "character": "James Hurley", "id": 6717, "credit_id": "52fe4322c3a36847f803cd9d", "cast_id": 16, "profile_path": "/8ytq4mu3fLWlLU80QeGCBz4z0tW.jpg", "order": 10}, {"name": "David Lynch", "character": "Gordon Cole", "id": 5602, "credit_id": "52fe4322c3a36847f803cda1", "cast_id": 17, "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "order": 11}, {"name": "Kiefer Sutherland", "character": "Sam Stanley", "id": 2628, "credit_id": "52fe4322c3a36847f803cda5", "cast_id": 18, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 12}, {"name": "Kyle MacLachlan", "character": "Special Agent Dale Cooper", "id": 6677, "credit_id": "52fe4322c3a36847f803cdc1", "cast_id": 25, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 13}, {"name": "Lenny Von Dohlen", "character": "Harold Smith (as Lenny Von Dohlen)", "id": 15799, "credit_id": "52fe4322c3a36847f803cda9", "cast_id": 19, "profile_path": "/7duYOdfUgAX7JL1zsXaKZEhuEVY.jpg", "order": 14}, {"name": "Grace Zabriskie", "character": "Sarah Palmer", "id": 6465, "credit_id": "52fe4322c3a36847f803cdad", "cast_id": 20, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 15}, {"name": "Frances Bay", "character": "Mrs. Tremond (Chalfont)", "id": 11794, "credit_id": "52fe4322c3a36847f803cdb1", "cast_id": 21, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 16}, {"name": "Catherine E. Coulson", "character": "The Log Lady", "id": 123516, "credit_id": "52fe4322c3a36847f803cdb5", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Michael J. Anderson", "character": "Man From Another Place", "id": 123517, "credit_id": "52fe4322c3a36847f803cdb9", "cast_id": 23, "profile_path": "/3YhlfQLwReWY3xSjh5VJriOkiLA.jpg", "order": 18}, {"name": "Frank Silva", "character": "Bob", "id": 123518, "credit_id": "52fe4322c3a36847f803cdbd", "cast_id": 24, "profile_path": null, "order": 19}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4322c3a36847f803cd53", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 6.7, "runtime": 125}, "1924": {"poster_path": "/rLTdj7oB9oxsYwuweeglWRzRng7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300218018, "overview": "Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane \u2212 who's in love with Superman. Clark must summon his superhero alter ego when the nefarious Lex Luthor launches a plan to take over the world.", "video": false, "id": 1924, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman", "tagline": "You'll Believe a Man Can Fly!", "vote_count": 270, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0078346", "adult": false, "backdrop_path": "/nS0rEXPbkHI449SF6R4WUQvTVxE.jpg", "production_companies": [{"name": "Dovemead Films", "id": 51861}, {"name": "International Film Productions", "id": 2039}, {"name": "Film Export A.G.", "id": 51862}], "release_date": "1978-12-14", "popularity": 1.56581089010793, "original_title": "Superman", "budget": 55000000, "cast": [{"name": "Marlon Brando", "character": "Jor-El", "id": 3084, "credit_id": "52fe4322c3a36847f803ce03", "cast_id": 2, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Lex Luthor", "id": 193, "credit_id": "52fe4322c3a36847f803ce19", "cast_id": 8, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe4322c3a36847f803cdff", "cast_id": 1, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 2}, {"name": "Ned Beatty", "character": "Otis", "id": 13726, "credit_id": "52fe4322c3a36847f803ce21", "cast_id": 10, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 3}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe4322c3a36847f803ce25", "cast_id": 11, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 4}, {"name": "Glenn Ford", "character": "Jonathan Kent", "id": 3381, "credit_id": "52fe4322c3a36847f803ce29", "cast_id": 12, "profile_path": "/jEvXdJXH2JeN2hGviyHnKwVOWIf.jpg", "order": 5}, {"name": "Trevor Howard", "character": "1st Elder", "id": 12726, "credit_id": "52fe4322c3a36847f803ce2d", "cast_id": 13, "profile_path": "/drj1FPryhAimWCiufEnMLzUxpBQ.jpg", "order": 6}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe4322c3a36847f803ce1d", "cast_id": 9, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 7}, {"name": "Jack O'Halloran", "character": "Non", "id": 41224, "credit_id": "54ea672b9251412eb100543c", "cast_id": 41, "profile_path": null, "order": 8}, {"name": "Valerie Perrine", "character": "Eve Teschmacher", "id": 26483, "credit_id": "52fe4322c3a36847f803ce31", "cast_id": 15, "profile_path": "/1Er0uPPTmQ7perH3hZmozvbYDX.jpg", "order": 9}, {"name": "Maria Schell", "character": "Vond-Ah", "id": 40954, "credit_id": "52fe4322c3a36847f803ce35", "cast_id": 16, "profile_path": "/sicfakzbA93nxpsuwRbDAMGEjj9.jpg", "order": 10}, {"name": "Terence Stamp", "character": "General Zod", "id": 28641, "credit_id": "52fe4322c3a36847f803ce39", "cast_id": 17, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 11}, {"name": "Phyllis Thaxter", "character": "Martha Kent", "id": 85042, "credit_id": "52fe4322c3a36847f803ce3d", "cast_id": 18, "profile_path": "/iS0nG2doPQdObLWUOYqnvBRHa83.jpg", "order": 12}, {"name": "Susannah York", "character": "Lara", "id": 13326, "credit_id": "52fe4322c3a36847f803ce41", "cast_id": 19, "profile_path": "/uVWQdc4Oae7JlhewHYmxysOnORl.jpg", "order": 13}, {"name": "Sarah Douglas", "character": "Ursa", "id": 31364, "credit_id": "54ea67489251412eb80052fe", "cast_id": 42, "profile_path": "/als2MT3X28mDol3e5uEy25agNRM.jpg", "order": 14}, {"name": "Harry Andrews", "character": "2nd Elder", "id": 19463, "credit_id": "54ea675e925141117c004c5a", "cast_id": 43, "profile_path": "/1EJXH5DyJWDtHfX8MeqSrCrUlwD.jpg", "order": 15}, {"name": "Jeff East", "character": "Young Clark Kent", "id": 53088, "credit_id": "52fe4322c3a36847f803ce45", "cast_id": 20, "profile_path": "/36LSdYlmaqidx2TYZbaNTxPlcpm.jpg", "order": 16}, {"name": "Michael Ensign", "character": "Newscaster", "id": 1080265, "credit_id": "52fe4322c3a36847f803ce6d", "cast_id": 29, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 17}, {"name": "John Stuart", "character": "10th Elder", "id": 30709, "credit_id": "53285a1c9251411a1700213f", "cast_id": 32, "profile_path": "/zZzUldf0EqwbrNVHx9anw7YInHp.jpg", "order": 18}, {"name": "Noel Neill", "character": "Ella Lane (uncredited)", "id": 243805, "credit_id": "552e611992514103ce006f77", "cast_id": 44, "profile_path": "/zYp8iKSPrHIZb7bt76hxZqgSXm.jpg", "order": 19}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4322c3a36847f803ce09", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.7, "runtime": 143}, "1927": {"poster_path": "/ogCQV6mnLtCJuiiHtMB83jvSRfY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245360480, "overview": "Bruce Banner, a genetics researcher with a tragic past, suffers an accident that causes him to transform into a raging green monster when he gets angry", "video": false, "id": 1927, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Hulk", "tagline": "Unleash the hero within", "vote_count": 429, "homepage": "http://www.universalstudiosentertainment.com/hulk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0286716", "adult": false, "backdrop_path": "/vwqnLTtNZCAo41nNOuX0He6bwKs.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Marvel Entertainment, LLC", "id": 325}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "Good Machine", "id": 10565}], "release_date": "2003-06-20", "popularity": 0.961096562909356, "original_title": "Hulk", "budget": 137000000, "cast": [{"name": "Eric Bana", "character": "Bruce Banner", "id": 8783, "credit_id": "52fe4323c3a36847f803d073", "cast_id": 7, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Betty Ross", "id": 6161, "credit_id": "52fe4323c3a36847f803d077", "cast_id": 8, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Sam Elliott", "character": "Ross", "id": 16431, "credit_id": "52fe4323c3a36847f803d07b", "cast_id": 9, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 2}, {"name": "Josh Lucas", "character": "Talbot", "id": 6164, "credit_id": "52fe4323c3a36847f803d083", "cast_id": 11, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 3}, {"name": "Nick Nolte", "character": "Father", "id": 1733, "credit_id": "52fe4323c3a36847f803d07f", "cast_id": 10, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 4}, {"name": "Paul Kersey", "character": "Young David Banner", "id": 20048, "credit_id": "52fe4323c3a36847f803d08f", "cast_id": 14, "profile_path": "/5q5DcZArw1wcnqGGpupbooiCGb2.jpg", "order": 5}, {"name": "Cara Buono", "character": "Edith Banner", "id": 20047, "credit_id": "52fe4323c3a36847f803d08b", "cast_id": 13, "profile_path": "/bqweBHdazr7dQj5Ml1ylnCqqxUE.jpg", "order": 6}, {"name": "Stan Lee", "character": "Security Guard", "id": 7624, "credit_id": "52fe4323c3a36847f803d087", "cast_id": 12, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 7}, {"name": "Todd Tesen", "character": "Young Ross", "id": 155873, "credit_id": "52fe4323c3a36847f803d0a5", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Celia Weston", "character": "Mrs. Krensler", "id": 1989, "credit_id": "52fe4323c3a36847f803d0a9", "cast_id": 19, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 9}, {"name": "Mike Erwin", "character": "Teenage Bruce Banner", "id": 164618, "credit_id": "52fe4323c3a36847f803d0ad", "cast_id": 20, "profile_path": "/4Kbevae3JcKv0bPJzL6DxkPX2rP.jpg", "order": 10}, {"name": "Lou Ferrigno", "character": "Security Guard", "id": 19137, "credit_id": "52fe4323c3a36847f803d0b1", "cast_id": 21, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 11}, {"name": "Regi Davis", "character": "Security Guard", "id": 169615, "credit_id": "52fe4323c3a36847f803d0b5", "cast_id": 22, "profile_path": "/nnJEbzJiSd2IQF12jMS9vPBl1qX.jpg", "order": 12}, {"name": "Craig Damon", "character": "Security Guard", "id": 177018, "credit_id": "52fe4323c3a36847f803d0b9", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d069", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 5.2, "runtime": 138}, "75656": {"poster_path": "/hGsi9bPp4PEQANCUxswQDLymJag.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117698894, "overview": "An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.", "video": false, "id": 75656, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Now You See Me", "tagline": "4 amazing magicians. 3 impossible heists. 1 billion dollars. This is no illusion.", "vote_count": 1743, "homepage": "http://www.nowyouseememovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1670345", "adult": false, "backdrop_path": "/9wbXqcx6rHhoZ9Esp03C7amQzom.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "K/O Paper Products", "id": 7296}, {"name": "SOIXAN7E QUIN5E", "id": 23271}, {"name": "See Me Louisiana", "id": 23272}], "release_date": "2013-05-31", "popularity": 2.16368850714408, "original_title": "Now You See Me", "budget": 75000000, "cast": [{"name": "Jesse Eisenberg", "character": "J. Daniel Atlas", "id": 44735, "credit_id": "52fe490bc3a368484e117c75", "cast_id": 3, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Woody Harrelson", "character": "Merritt McKinney", "id": 57755, "credit_id": "52fe490bc3a368484e117c71", "cast_id": 2, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 1}, {"name": "Dave Franco", "character": "Jack Wilder", "id": 54697, "credit_id": "52fe490bc3a368484e117c93", "cast_id": 11, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 2}, {"name": "Isla Fisher", "character": "Henley Reeves", "id": 52848, "credit_id": "52fe490bc3a368484e117c81", "cast_id": 7, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 3}, {"name": "Mark Ruffalo", "character": "Dylan Rhodes", "id": 103, "credit_id": "52fe490bc3a368484e117c7d", "cast_id": 6, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 4}, {"name": "M\u00e9lanie Laurent", "character": "Alma Dray", "id": 19119, "credit_id": "52fe490bc3a368484e117c85", "cast_id": 8, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 5}, {"name": "Morgan Freeman", "character": "Thaddeus Bradley", "id": 192, "credit_id": "52fe490bc3a368484e117c79", "cast_id": 5, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 6}, {"name": "Michael Caine", "character": "Arthur Tressler", "id": 3895, "credit_id": "52fe490bc3a368484e117c89", "cast_id": 9, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 7}, {"name": "Michael Kelly", "character": "Agent Fuller", "id": 50217, "credit_id": "52fe490bc3a368484e117cb5", "cast_id": 17, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 8}, {"name": "Common", "character": "Evans", "id": 4238, "credit_id": "52fe490bc3a368484e117cb9", "cast_id": 18, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 9}, {"name": "David Warshofsky", "character": "Cowan", "id": 37204, "credit_id": "52fe490bc3a368484e117cbd", "cast_id": 19, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 10}, {"name": "Jos\u00e9 Garcia", "character": "Etienne Forcier", "id": 24895, "credit_id": "52fe490bc3a368484e117cc1", "cast_id": 20, "profile_path": "/9OlwiWiBgxCGd85HcxuljDXZn3U.jpg", "order": 11}, {"name": "Jessica Lindsey", "character": "Hermia", "id": 1178995, "credit_id": "52fe490bc3a368484e117cc5", "cast_id": 21, "profile_path": "/1HtWGanA2Duom5aWKA1P19Y5SOQ.jpg", "order": 12}, {"name": "Caitriona Balfe", "character": "Jasmine Trassler", "id": 147056, "credit_id": "52fe490bc3a368484e117cc9", "cast_id": 22, "profile_path": "/nZJyyXOKB5JtEArihhzcedRkLQ7.jpg", "order": 13}, {"name": "Stephanie Honor\u00e9", "character": "Atlas Groupie", "id": 94427, "credit_id": "52fe490bc3a368484e117ccd", "cast_id": 23, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 14}, {"name": "Elias Koteas", "character": "Lionel Shrike", "id": 13550, "credit_id": "52fe490bc3a368484e117d2b", "cast_id": 39, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 15}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe490bc3a368484e117c6d", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 7.2, "runtime": 115}, "26505": {"poster_path": "/m4PuHaEIT5teXSKu6Mdv7Gl9ORy.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Arthur answers a distress call from Princess Selenia, who is menaced by the nefarious Maltazard.", "video": false, "id": 26505, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Arthur and the Revenge of Maltazard", "tagline": "", "vote_count": 56, "homepage": "http://www.arthuretlesminimoys.com/arthur2/", "belongs_to_collection": {"backdrop_path": "/e8Q363orc1wi02TSSoDDlil2qXh.jpg", "poster_path": "/lpKNbnUpP0h0cnVwC1LaE9YJB3U.jpg", "id": 85817, "name": "Arthur and the Invisibles Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0940657", "adult": false, "backdrop_path": "/eO2SzacumPHe7MZNOXfbGGumFfd.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Apipoula\u00ef", "id": 1076}, {"name": "Avalanche Productions", "id": 2525}, {"name": "Canal+", "id": 5358}, {"name": "Sofica Europacorp", "id": 854}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2009-11-26", "popularity": 0.394993703014222, "original_title": "Arthur et la vengeance de Maltazard", "budget": 87000000, "cast": [{"name": "Selena Gomez", "character": "Selenia", "id": 77948, "credit_id": "52fe4507c3a368484e044545", "cast_id": 8, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Freddie Highmore", "character": "Arthur", "id": 1281, "credit_id": "52fe4507c3a368484e044549", "cast_id": 9, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 1}, {"name": "Fergie", "character": "Replay", "id": 20497, "credit_id": "52fe4507c3a368484e04454d", "cast_id": 10, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 2}, {"name": "Jimmy Fallon", "character": "Prince Betameche", "id": 11669, "credit_id": "52fe4507c3a368484e044551", "cast_id": 11, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 3}, {"name": "Mia Farrow", "character": "Granny", "id": 12021, "credit_id": "52fe4507c3a368484e044555", "cast_id": 12, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 4}, {"name": "Snoop Dogg", "character": "Max", "id": 19767, "credit_id": "52fe4507c3a368484e044559", "cast_id": 13, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 5}, {"name": "Logan Miller", "character": "Jake", "id": 116088, "credit_id": "52fe4507c3a368484e04455d", "cast_id": 14, "profile_path": "/4KGktClGusmqFr1b193Fair5rlK.jpg", "order": 6}, {"name": "Robert Stanton", "character": "Armand", "id": 53963, "credit_id": "52fe4507c3a368484e044561", "cast_id": 15, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 7}, {"name": "Omar Sy", "character": "Snow", "id": 78423, "credit_id": "52fe4507c3a368484e04458f", "cast_id": 23, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 8}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4507c3a368484e044523", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 5.3, "runtime": 93}, "10122": {"poster_path": "/69kD2bpkwSadpN30JB9vJrlz8HW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18564613, "overview": "In Flight of the Navigator, 12-year old David Freeman goes missing in 1978, only to reappear in 1986. In the eight years that have passed, he hasn't aged. It's no coincidence that at the time he comes back, a flying saucer is found. David feels inexplicably connected to the fantastic machine...", "video": false, "id": 10122, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Flight of the Navigator", "tagline": "Come along on the greatest adventure of the summer!", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091059", "adult": false, "backdrop_path": "/frQ7WuW595dispaIW66SYmzKasG.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Producers Sales Organization", "id": 1256}, {"name": "New Star Entertainment", "id": 1340}], "release_date": "1986-07-29", "popularity": 0.579927170390149, "original_title": "Flight of the Navigator", "budget": 0, "cast": [{"name": "Joey Cramer", "character": "David Scott Freeman", "id": 63871, "credit_id": "52fe432d9251416c75006739", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Paul Reubens", "character": "Max (voice) (as Paul Mall)", "id": 5129, "credit_id": "52fe432d9251416c7500673d", "cast_id": 2, "profile_path": "/3g77Qz12qjCpVGfBP2kOPx4rRai.jpg", "order": 1}, {"name": "Matt Adler", "character": "Jeff (16 years)", "id": 92623, "credit_id": "52fe432d9251416c7500679b", "cast_id": 19, "profile_path": "/hklcdXdKkvW15x4g1XrrdrDiLGX.jpg", "order": 2}, {"name": "Veronica Cartwright", "character": "Helen Freeman", "id": 5047, "credit_id": "52fe432d9251416c75006741", "cast_id": 3, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 3}, {"name": "Cliff DeYoung", "character": "Bill Freeman", "id": 44301, "credit_id": "52fe432d9251416c75006745", "cast_id": 4, "profile_path": "/ut5RFMqeVDxyTJ5YP2J9DbzEh4V.jpg", "order": 4}, {"name": "Sarah Jessica Parker", "character": "Carolyn McAdams", "id": 520, "credit_id": "52fe432d9251416c75006749", "cast_id": 5, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 5}, {"name": "Robert Small", "character": "Troy", "id": 1116654, "credit_id": "52fe432d9251416c7500679f", "cast_id": 20, "profile_path": "/uNFXBnlUH89HcG0FTDg70kCWH4q.jpg", "order": 6}], "directors": [{"name": "Randal Kleiser", "department": "Directing", "job": "Director", "credit_id": "52fe432d9251416c7500674f", "profile_path": "/lK8FzeNDwD9VmNvKPRGd3dFVzJy.jpg", "id": 8876}], "vote_average": 6.9, "runtime": 90}, "50839": {"poster_path": "/h4Cv588VpNpO9twXsdorhz6K8t1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5148397, "overview": "A thriller that revolves around the key people at a investment bank over a 24-hour period during the early stages of the financial crisis.", "video": false, "id": 50839, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Margin Call", "tagline": "Be first. Be smarter. Or cheat.", "vote_count": 137, "homepage": "http://www.margincallmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1615147", "adult": false, "backdrop_path": "/rPVPJga5BTKK1cpeaChJeUh5ZMK.jpg", "production_companies": [{"name": "Untitled Entertainment", "id": 46225}, {"name": "Before the Door Pictures", "id": 14861}, {"name": "Benaroya Pictures", "id": 6692}, {"name": "Washington Square Films", "id": 14862}], "release_date": "2011-09-28", "popularity": 0.67086372106163, "original_title": "Margin Call", "budget": 3395000, "cast": [{"name": "Kevin Spacey", "character": "Sam Rogers", "id": 1979, "credit_id": "52fe47d8c3a36847f814b741", "cast_id": 2, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Will Emerson", "id": 6162, "credit_id": "52fe47d8c3a36847f814b745", "cast_id": 3, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Jeremy Irons", "character": "John Tuld", "id": 16940, "credit_id": "52fe47d8c3a36847f814b749", "cast_id": 4, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 2}, {"name": "Zachary Quinto", "character": "Peter Sullivan", "id": 17306, "credit_id": "52fe47d8c3a36847f814b74d", "cast_id": 5, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 3}, {"name": "Ashley Williams", "character": "Heather Burke", "id": 122888, "credit_id": "52fe47d8c3a36847f814b751", "cast_id": 6, "profile_path": "/fq4hNuLVpsbrnzjPCtoFIcf3nXN.jpg", "order": 4}, {"name": "Demi Moore", "character": "Sarah Robertson", "id": 3416, "credit_id": "52fe47d8c3a36847f814b761", "cast_id": 9, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 5}, {"name": "Simon Baker", "character": "Jared Cohen", "id": 1284159, "credit_id": "52fe47d9c3a36847f814b801", "cast_id": 39, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 6}, {"name": "Penn Badgley", "character": "Seth Bregman", "id": 110927, "credit_id": "52fe47d8c3a36847f814b765", "cast_id": 11, "profile_path": "/key2cKLsZYLyV03b8NMdmvJjBe9.jpg", "order": 7}, {"name": "Mary McDonnell", "character": "Mary Rogers", "id": 1581, "credit_id": "52fe47d9c3a36847f814b7ed", "cast_id": 34, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 8}, {"name": "Stanley Tucci", "character": "Eric Dale", "id": 2283, "credit_id": "52fe47d9c3a36847f814b7f1", "cast_id": 35, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 9}, {"name": "Aasif Mandvi", "character": "Ramesh Shah", "id": 20644, "credit_id": "52fe47d9c3a36847f814b7f5", "cast_id": 36, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 10}, {"name": "Susan Blackwell", "character": "Lauren Bratberg", "id": 163664, "credit_id": "52fe47d9c3a36847f814b7f9", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Maria Dizzia", "character": "Executive Assistant", "id": 205797, "credit_id": "52fe47d9c3a36847f814b7fd", "cast_id": 38, "profile_path": "/ouZrbDHEIMg2nLxd7RA2EYmecvO.jpg", "order": 12}], "directors": [{"name": "J.C. Chandor ", "department": "Directing", "job": "Director", "credit_id": "52fe47d8c3a36847f814b757", "profile_path": "/mvNMQ2c23j6mVG0jqplWRneHLmU.jpg", "id": 556172}], "vote_average": 6.4, "runtime": 107}, "1933": {"poster_path": "/s1AgCknn4t2OUPZynuGsi4yNFfq.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209947037, "overview": "Grace is a religious woman who lives in an old house kept dark because her two children, Anne and Nicholas, have a rare sensitivity to light. When the family begins to suspect the house is haunted, Grace fights to protect her children at any cost in the face of strange events and disturbing visions.", "video": false, "id": 1933, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Others", "tagline": "Sooner or later she'll see them, then everything will be different.", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0230600", "adult": false, "backdrop_path": "/4mb6yCuf9Gl05FVzT25GpAFHVRj.jpg", "production_companies": [{"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Las Producciones del Escorpi\u00f3n S.L.", "id": 18332}, {"name": "Sociedad General de Cine (SOGECINE) S.A.", "id": 11954}, {"name": "Dimension Films", "id": 7405}], "release_date": "2001-08-10", "popularity": 0.741613660539544, "original_title": "The Others", "budget": 17000000, "cast": [{"name": "Nicole Kidman", "character": "Grace Stewart", "id": 2227, "credit_id": "52fe4323c3a36847f803d343", "cast_id": 8, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Christopher Eccleston", "character": "Charles Stewart", "id": 2040, "credit_id": "52fe4323c3a36847f803d347", "cast_id": 10, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 1}, {"name": "Alakina Mann", "character": "Anne Stewart", "id": 20051, "credit_id": "52fe4323c3a36847f803d34b", "cast_id": 11, "profile_path": "/u6Zm6crP9femMxdBW0KUQpLELTJ.jpg", "order": 2}, {"name": "James Bentley", "character": "Nicholas Stewart", "id": 20052, "credit_id": "52fe4323c3a36847f803d34f", "cast_id": 12, "profile_path": "/aRJ5RbPTkuCarO7U6mBuQsX57fJ.jpg", "order": 3}, {"name": "Eric Sykes", "character": "Mr. Edmund Tuttle", "id": 20053, "credit_id": "52fe4323c3a36847f803d353", "cast_id": 13, "profile_path": "/yI7Z5BfaYmbFyPUR3idA5DCXOQY.jpg", "order": 4}, {"name": "Elaine Cassidy", "character": "Lydia", "id": 20054, "credit_id": "52fe4323c3a36847f803d357", "cast_id": 14, "profile_path": "/k6Nlte5S62h2A7sDSA2h91Uq23V.jpg", "order": 5}, {"name": "Ren\u00e9e Asherson", "character": "Old Lady", "id": 20055, "credit_id": "52fe4323c3a36847f803d35b", "cast_id": 15, "profile_path": "/syUX5Gu5TnMMHxDlgl6pqymuK5Y.jpg", "order": 6}, {"name": "Keith Allen", "character": "Mr. Marlish", "id": 20056, "credit_id": "52fe4323c3a36847f803d35f", "cast_id": 16, "profile_path": "/48DcW1C0dgKCWpbnl37Kg1fhvGO.jpg", "order": 7}, {"name": "Michelle Fairley", "character": "Mrs. Marlish", "id": 20057, "credit_id": "52fe4323c3a36847f803d363", "cast_id": 17, "profile_path": "/u7EDh4RuXnK5PykiNAT3oly6sf9.jpg", "order": 8}, {"name": "Alexander Vince", "character": "Victor Marlish", "id": 20058, "credit_id": "52fe4323c3a36847f803d367", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Gordon Reid", "character": "Assistant", "id": 20059, "credit_id": "52fe4323c3a36847f803d36b", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Ricardo L\u00f3pez", "character": "Second Assistant", "id": 20060, "credit_id": "52fe4323c3a36847f803d36f", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Fionnula Flanagan", "character": "Mrs. Bertha Mills", "id": 58068, "credit_id": "52fe4323c3a36847f803d373", "cast_id": 21, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 12}], "directors": [{"name": "Alejandro Amen\u00e1bar", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d321", "profile_path": "/uYDLRrpMM4Q7xf2LSCsMOVsy58Q.jpg", "id": 19840}], "vote_average": 6.9, "runtime": 101}, "1934": {"poster_path": "/sAN5jedynbs3pa3ww0UXQ1k0lRF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 289317794, "overview": "Young Shakespeare is forced to stage his latest comedy, \"Romeo and Ethel, the Pirate's Daughter,\" before it's even written. When a lovely noblewoman auditions for a role, they fall into forbidden love -- and his play finds a new life (and title). As their relationship progresses, Shakespeare's comedy soon transforms into tragedy.", "video": false, "id": 1934, "genres": [{"id": 36, "name": "History"}], "title": "Shakespeare in Love", "tagline": "Love is the only inspiration.", "vote_count": 168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138097", "adult": false, "backdrop_path": "/qvhpBNfb53wLnEbVnmC5GNGFRHO.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Miramax Films", "id": 14}, {"name": "Bedford Falls Productions", "id": 348}], "release_date": "1998-12-11", "popularity": 0.803394284145674, "original_title": "Shakespeare in Love", "budget": 25000000, "cast": [{"name": "Joseph Fiennes", "character": "Will Shakespeare", "id": 12763, "credit_id": "52fe4323c3a36847f803d455", "cast_id": 18, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Viola De Lesseps", "id": 12052, "credit_id": "52fe4323c3a36847f803d46d", "cast_id": 25, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Geoffrey Rush", "character": "Philip Henslowe", "id": 118, "credit_id": "52fe4323c3a36847f803d459", "cast_id": 19, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Hugh Fennyman", "id": 207, "credit_id": "52fe4323c3a36847f803d45d", "cast_id": 20, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Judi Dench", "character": "Queen Elizabeth", "id": 5309, "credit_id": "52fe4323c3a36847f803d461", "cast_id": 21, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Imelda Staunton", "character": "Nurse", "id": 11356, "credit_id": "52fe4323c3a36847f803d465", "cast_id": 22, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 5}, {"name": "Colin Firth", "character": "Lord Wessex", "id": 5472, "credit_id": "52fe4323c3a36847f803d469", "cast_id": 23, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 6}, {"name": "Ben Affleck", "character": "Ned Alleyn", "id": 880, "credit_id": "52fe4323c3a36847f803d475", "cast_id": 27, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 7}, {"name": "Simon Callow", "character": "Tilney", "id": 4001, "credit_id": "52fe4323c3a36847f803d471", "cast_id": 26, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 8}, {"name": "Steven Beard", "character": "Makepeace", "id": 20069, "credit_id": "52fe4323c3a36847f803d479", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Jim Carter", "character": "Ralph Bashford", "id": 20070, "credit_id": "52fe4323c3a36847f803d47d", "cast_id": 31, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 10}, {"name": "Rupert Everett", "character": "Christopher Marlowe", "id": 4757, "credit_id": "52fe4323c3a36847f803d481", "cast_id": 32, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 11}, {"name": "Martin Clunes", "character": "Richard Burbage", "id": 22159, "credit_id": "52fe4323c3a36847f803d485", "cast_id": 33, "profile_path": "/ymns20R5QMrDQHbXi5MRdZl5P5L.jpg", "order": 12}, {"name": "Tim McMullan", "character": "Frees", "id": 15740, "credit_id": "52fe4323c3a36847f803d489", "cast_id": 34, "profile_path": "/8se9JhmD9LE6tiibkGiV51M8rdD.jpg", "order": 13}, {"name": "Joe Roberts", "character": "John Webster", "id": 1125580, "credit_id": "52fe4323c3a36847f803d48d", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "John Madden", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d3f1", "profile_path": "/8HPERxuUmp44PJcwbweQfICo149.jpg", "id": 18844}], "vote_average": 6.7, "runtime": 122}, "18320": {"poster_path": "/kNMUKWshK6qVA9fXGBRJaUSRNoz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26324963, "overview": "A dramatization of the turbulent first years of Queen Victoria's rule, and her enduring romance with Prince Albert.", "video": false, "id": 18320, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "The Young Victoria", "tagline": "Love rules all", "vote_count": 60, "homepage": "http://www.theyoungvictoriamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0962736", "adult": false, "backdrop_path": "/aJEystDjSReWXYuac5jDquT7UJ8.jpg", "production_companies": [{"name": "GK Films", "id": 3281}], "release_date": "2009-03-04", "popularity": 0.190094452862214, "original_title": "The Young Victoria", "budget": 45000000, "cast": [{"name": "Emily Blunt", "character": "Queen Victoria", "id": 5081, "credit_id": "53b52211c3a3685eb7000bc3", "cast_id": 27, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Jim Broadbent", "character": "King William", "id": 388, "credit_id": "52fe47739251416c75099dc7", "cast_id": 2, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 1}, {"name": "Mark Strong", "character": "Sir John Conroy", "id": 2983, "credit_id": "52fe47739251416c75099dcb", "cast_id": 3, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Lord Melbourne", "id": 6162, "credit_id": "52fe47739251416c75099dcf", "cast_id": 4, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Miranda Richardson", "character": "Duchess of Kent", "id": 8436, "credit_id": "52fe47749251416c75099dd3", "cast_id": 5, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 4}, {"name": "Rupert Friend", "character": "Prince Albert", "id": 36669, "credit_id": "52fe47749251416c75099dd7", "cast_id": 6, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 5}, {"name": "Jeanette Hain", "character": "Baroness Lehzen", "id": 49018, "credit_id": "52fe47749251416c75099e17", "cast_id": 17, "profile_path": "/icET9X1pV73INdR7YYZcYXJeCDU.jpg", "order": 6}], "directors": [{"name": "Jean-Marc Vall\u00e9e", "department": "Directing", "job": "Director", "credit_id": "52fe47749251416c75099ddd", "profile_path": "/zFb4XBBx3TYSeeTXYv6GkAKYYcK.jpg", "id": 69371}], "vote_average": 6.9, "runtime": 105}, "9880": {"poster_path": "/A3MEJcxjr0iOjTMsQSCNTc1B4E2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 165335153, "overview": "A socially awkward but very bright 15-year-old girl being raised by a single mom discovers that she is the princess of a small European country because of the recent death of her long-absent father, who, unknown to her, was the crown prince of Genovia. She must make a choice between continuing the life of a San Francisco teen or stepping up to the throne.", "video": false, "id": 9880, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Princess Diaries", "tagline": "She rocks. She rules. She reigns.", "vote_count": 185, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zSEtYD77pKRJlUPx34BJgUG9v1c.jpg", "poster_path": "/wt5AMbxPTS4Kfjx7Fgm149qPfZl.jpg", "id": 107674, "name": "The Princess Diaries Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0247638", "adult": false, "backdrop_path": "/ncERp0UvXuImUeJcf27kEANcf1r.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2001-08-03", "popularity": 1.58977474985114, "original_title": "The Princess Diaries", "budget": 37000000, "cast": [{"name": "Anne Hathaway", "character": "Amelia \"Mia\" Thermopolis", "id": 1813, "credit_id": "52fe4540c3a36847f80c3a09", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Julie Andrews", "character": "K\u00f6nigin Clarisse Renaldi", "id": 5823, "credit_id": "52fe4540c3a36847f80c3a19", "cast_id": 15, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 1}, {"name": "Heather Matarazzo", "character": "Lilly Moscovitz", "id": 33656, "credit_id": "52fe4540c3a36847f80c3a0d", "cast_id": 12, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 2}, {"name": "Robert Schwartzman", "character": "Michael Moscovitz", "id": 17242, "credit_id": "52fe4540c3a36847f80c3a11", "cast_id": 13, "profile_path": "/dBsIWM7nIvdUT8MuGzUVcCr8X8c.jpg", "order": 3}, {"name": "H\u00e9ctor Elizondo", "character": "Joe", "id": 1210, "credit_id": "52fe4540c3a36847f80c3a15", "cast_id": 14, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 4}, {"name": "Mandy Moore", "character": "Lana Thomas", "id": 16855, "credit_id": "52fe4540c3a36847f80c3a1d", "cast_id": 16, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 5}, {"name": "Caroline Goodall", "character": "Helen Thermopolis", "id": 6692, "credit_id": "52fe4540c3a36847f80c3a21", "cast_id": 17, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 6}, {"name": "Erik von Detten", "character": "Josh Bryant", "id": 12901, "credit_id": "52fe4540c3a36847f80c3a25", "cast_id": 18, "profile_path": "/cUsIO0mejQ3WLRH8Vgsaya5bPd0.jpg", "order": 7}, {"name": "Sandra Oh", "character": "Vice Principal Gupta", "id": 25540, "credit_id": "52fe4540c3a36847f80c3a29", "cast_id": 19, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 8}, {"name": "Patrick John Flueger", "character": "Jeremiah Hart", "id": 115730, "credit_id": "52fe4540c3a36847f80c3a2d", "cast_id": 20, "profile_path": "/xMGamAcbjj3m8dvl3do0yQNYXg7.jpg", "order": 9}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4540c3a36847f80c39d5", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.9, "runtime": 115}, "10131": {"poster_path": "/6KEBq1HUCKIZWekn35HwNj1VBJl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72500000, "overview": "Dream demon Freddy Krueger is resurrected from his apparent demise, and rapidly tracks down and kills the remainder of the Elm Street kids. However, Kristen, who can draw others into her dreams, wills her special ability to her friend Alice. Alice soon realizes that Freddy is taking advantage of that unknown power to pull a new group of children into his foul domain.", "video": false, "id": 10131, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street 4: The Dream Master", "tagline": "Terror beyond your wildest dreams.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095742", "adult": false, "backdrop_path": "/4180IbpeK3uYWEbKrk1PqNRtDIV.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1988-08-19", "popularity": 0.806925173246861, "original_title": "A Nightmare on Elm Street 4: The Dream Master", "budget": 7000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe432f9251416c75006cf7", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Tuesday Knight", "character": "Kristen Parker", "id": 63914, "credit_id": "52fe432f9251416c75006cfb", "cast_id": 2, "profile_path": "/vQNxbldn4g825XTJqqKqXMWF8xC.jpg", "order": 1}, {"name": "Ken Sagoes", "character": "Roland Kincaid", "id": 63915, "credit_id": "52fe432f9251416c75006cff", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Rodney Eastman", "character": "Joey Crusel", "id": 63916, "credit_id": "52fe432f9251416c75006d03", "cast_id": 4, "profile_path": "/mxA0J0Ky7XZsn4yXWj5koXTkYBq.jpg", "order": 3}, {"name": "Lisa Wilcox", "character": "Alice Johnson", "id": 63917, "credit_id": "52fe432f9251416c75006d07", "cast_id": 5, "profile_path": "/hqKyRn2vl3zYmFPyS0J1Y4OpHQ9.jpg", "order": 4}, {"name": "Andras Jones", "character": "Rick Johnson", "id": 63918, "credit_id": "52fe432f9251416c75006d0b", "cast_id": 6, "profile_path": "/phBnggJDOgrMOp22BzZPduZeL3v.jpg", "order": 5}, {"name": "Danny Hassel", "character": "Dan Jordan", "id": 104275, "credit_id": "52fe43309251416c75006d69", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Brooke Theiss", "character": "Debbie Stevens", "id": 104276, "credit_id": "52fe43309251416c75006d6d", "cast_id": 23, "profile_path": "/xO8OdGBNe94x6L9RqrCZKHfTKOq.jpg", "order": 7}, {"name": "Toy Newkirk", "character": "Sheila Kopecky", "id": 104277, "credit_id": "52fe43309251416c75006d71", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Nicholas Mele", "character": "Dennis Johnson", "id": 87112, "credit_id": "52fe43309251416c75006d75", "cast_id": 25, "profile_path": "/wI1YLddYXotk9JZiFr2aj3ShjoJ.jpg", "order": 9}, {"name": "Brooke Bundy", "character": "Elaine Parker", "id": 72157, "credit_id": "52fe43309251416c75006d79", "cast_id": 26, "profile_path": "/hbmv1jHZNNb7AmpdW8oaMIk3jXs.jpg", "order": 10}, {"name": "Hope Marie Carlton", "character": "Pin Up Girl", "id": 98944, "credit_id": "52fe43309251416c75006d7d", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Mickey Yablans", "character": "Buddy in Locker Room", "id": 15510, "credit_id": "52fe43309251416c75006d81", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Linnea Quigley", "character": "Soul from Freddy's Chest", "id": 97619, "credit_id": "52fe43309251416c75006d85", "cast_id": 29, "profile_path": "/nvOxpSqSQWwS5rUUMCGp30FcLCF.jpg", "order": 13}, {"name": "Duane Davis", "character": "Jock", "id": 62032, "credit_id": "52fe43309251416c75006d89", "cast_id": 30, "profile_path": "/t9tcFEEbffaD64VZdsc0qwnPnr9.jpg", "order": 14}, {"name": "Robert Shaye", "character": "Lecturer", "id": 13663, "credit_id": "52fe43309251416c75006d8d", "cast_id": 31, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 15}, {"name": "Jacquelyn Masche", "character": "Mrs. Crusel", "id": 553742, "credit_id": "52fe43309251416c75006d91", "cast_id": 32, "profile_path": "/yVNNMFxrtmaLt6oY9XE2gse7uLi.jpg", "order": 16}, {"name": "Richard Garrison", "character": "Doctor", "id": 164629, "credit_id": "52fe43309251416c75006d95", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "John Beckman", "character": "Coach", "id": 553743, "credit_id": "52fe43309251416c75006d99", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Kristen Clayton", "character": "Alice (Girl in Freddy's house)", "id": 552162, "credit_id": "52fe43309251416c75006d9d", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Jody Montana", "character": "Buddy in Diner", "id": 191521, "credit_id": "52fe43309251416c75006da1", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Cheryl Richardson", "character": "Girl", "id": 553744, "credit_id": "52fe43309251416c75006da5", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Joie Magidow", "character": "Physics Teacher", "id": 170020, "credit_id": "52fe43309251416c75006da9", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Joanna Lipari", "character": "Nurse", "id": 175806, "credit_id": "52fe43309251416c75006dad", "cast_id": 39, "profile_path": "/h1L7z7Tnqj7uZUtGu6OAzk4INEx.jpg", "order": 23}, {"name": "Wanda Bursey", "character": "Friend in Mourning", "id": 553745, "credit_id": "52fe43309251416c75006db1", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Kisha Brackel", "character": "Friend", "id": 553746, "credit_id": "52fe43309251416c75006db5", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Pat O'Neal", "character": "Student", "id": 170165, "credit_id": "52fe43309251416c75006db9", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Robert Shaye", "character": "Lecturer (as L.E. Moko)", "id": 13663, "credit_id": "52fe43309251416c75006dbd", "cast_id": 44, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 27}, {"name": "Renny Harlin", "character": "Student in Classroom (uncredited)", "id": 16938, "credit_id": "52fe43309251416c75006dc1", "cast_id": 45, "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "order": 28}, {"name": "Jeff Levine", "character": "Paramedic", "id": 553749, "credit_id": "52fe43309251416c75006dc5", "cast_id": 46, "profile_path": null, "order": 29}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe43309251416c75006d11", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.0, "runtime": 99}, "10136": {"poster_path": "/auDjIWIUob3yKfL78SthUl4Cy4z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 79817939, "overview": "A detective specializing in missing children is on a madcap mission to save a youth with mystical powers who's been abducted by an evil cult. He battles a band of super-nasties, scrambles through a booby-trapped chamber of horrors and traverses Tibet to obtain a sacred dagger.", "video": false, "id": 10136, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "The Golden Child", "tagline": "Eddie Murphy is the chosen one.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091129", "adult": false, "backdrop_path": "/on5JDJRFWBeZNh8JZCAlpiqXHQR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-12-12", "popularity": 0.633606423325123, "original_title": "The Golden Child", "budget": 25000000, "cast": [{"name": "Eddie Murphy", "character": "Chandler Jarrell", "id": 776, "credit_id": "52fe43319251416c75007111", "cast_id": 11, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Charles Dance", "character": "Sardo Numspa", "id": 4391, "credit_id": "52fe43319251416c75007115", "cast_id": 12, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 1}, {"name": "Charlotte Lewis", "character": "Kee Nang", "id": 42558, "credit_id": "52fe43319251416c75007119", "cast_id": 13, "profile_path": "/iONeOb1P7XF8dMCXv9GgN3IUCWe.jpg", "order": 2}, {"name": "Victor Wong", "character": "The Old Man", "id": 11395, "credit_id": "52fe43319251416c7500711d", "cast_id": 14, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 3}, {"name": "Peter Kwong", "character": "Tommy Tong", "id": 97695, "credit_id": "52fe43319251416c75007121", "cast_id": 15, "profile_path": "/7IWgFkoeWvESueJHphnd9Q8RqzZ.jpg", "order": 4}, {"name": "Jasmine Reate", "character": "The Golden Child", "id": 559312, "credit_id": "52fe43319251416c75007125", "cast_id": 16, "profile_path": "/qgI4agu15xBlnWkZEVpZhGFsV4Y.jpg", "order": 5}, {"name": "James Hong", "character": "Doctor Hong", "id": 20904, "credit_id": "52fe43319251416c75007129", "cast_id": 17, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 6}, {"name": "Randall 'Tex' Cobb", "character": "Til", "id": 5177, "credit_id": "52fe43319251416c7500712d", "cast_id": 18, "profile_path": "/wtRQp99LgNrJ8bF9XyAzbuoekMb.jpg", "order": 7}], "directors": [{"name": "Michael Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe43319251416c750070dd", "profile_path": "/62566NoTLMRVLdoE07RG1B55zxy.jpg", "id": 12964}], "vote_average": 5.8, "runtime": 94}, "10137": {"poster_path": "/539JU71suy9q4Wd5vvkKQLl5fTC.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300135367, "overview": "The adventures of a heroic and debonair stalwart mouse named Stuart Little with human qualities, who faces some comic misadventures while searching for his lost bird friend and living with a human family as their child.", "video": false, "id": 10137, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Stuart Little", "tagline": "The Little Family Just Got Bigger", "vote_count": 236, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r74LzQMN1EdvdCvbIqHA95TvEKt.jpg", "poster_path": "/tBWjHQBmEa91Pa3R96zGdosULom.jpg", "id": 99727, "name": "Stuart Little Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0164912", "adult": false, "backdrop_path": "/bfiybUiH5TEiuk1Znn2cYG4w0YD.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Franklin%2FWaterman Productions", "id": 5554}, {"name": "Global Medien KG", "id": 5555}], "release_date": "1999-12-17", "popularity": 1.21580025589026, "original_title": "Stuart Little", "budget": 133000000, "cast": [{"name": "Michael J. Fox", "character": "Stuart Little (voice)", "id": 521, "credit_id": "52fe43329251416c75007181", "cast_id": 10, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Geena Davis", "character": "Eleanor Little", "id": 16935, "credit_id": "52fe43329251416c75007185", "cast_id": 12, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Hugh Laurie", "character": "Mr. Fredrick Little", "id": 41419, "credit_id": "52fe43329251416c75007189", "cast_id": 13, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 2}, {"name": "Jonathan Lipnicki", "character": "George Little", "id": 67778, "credit_id": "54559bc40e0a2648cb005fe5", "cast_id": 14, "profile_path": "/mHyAL6ByNXxMLzfykgLTmd4tvMr.jpg", "order": 3}, {"name": "Nathan Lane", "character": "Snowbell (voice)", "id": 78729, "credit_id": "54559bd2c3a3682be900363d", "cast_id": 15, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 4}, {"name": "Jeffrey Jones", "character": "Crenshaw Little", "id": 4004, "credit_id": "54559c0c0e0a2648c200605a", "cast_id": 16, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 5}, {"name": "Connie Ray", "character": "Tina Little", "id": 35517, "credit_id": "54559c19c3a3681473005ccc", "cast_id": 17, "profile_path": "/yJriGT19J24uceLCxVLbE70pd9p.jpg", "order": 6}, {"name": "Allyce Beasley", "character": "Beatrice Little", "id": 94008, "credit_id": "54559c29c3a3683ea0000bb2", "cast_id": 18, "profile_path": "/xXweplMpNuijsILm35IC9h6pUFy.jpg", "order": 7}, {"name": "Brian Doyle-Murray", "character": "Edgar Little", "id": 1535, "credit_id": "54559c34c3a3682be9003650", "cast_id": 19, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 8}, {"name": "Estelle Getty", "character": "Estelle Little", "id": 59956, "credit_id": "54559c500e0a2648cf006143", "cast_id": 20, "profile_path": "/3dfiQNyCietGhFRcghO5owq9YRM.jpg", "order": 9}, {"name": "Harold Gould", "character": "Spencer Little", "id": 14833, "credit_id": "54559c5d0e0a2648cb005ffe", "cast_id": 21, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 10}, {"name": "Chazz Palminteri", "character": "Smokey (voice)", "id": 9046, "credit_id": "54559c6e0e0a2648d2006248", "cast_id": 22, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 11}, {"name": "Steve Zahn", "character": "Monty (voice)", "id": 18324, "credit_id": "54559c7a0e0a2648cb006003", "cast_id": 23, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 12}, {"name": "Bruno Kirby", "character": "Reginald Stout (voice)", "id": 9257, "credit_id": "54559c89c3a3682be9003663", "cast_id": 24, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 13}, {"name": "Jennifer Tilly", "character": "Camille Stout (voice)", "id": 7906, "credit_id": "54559c970e0a2648cf006151", "cast_id": 25, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 14}, {"name": "David Alan Grier", "character": "Red (voice)", "id": 58563, "credit_id": "54559cb00e0a2648c2006080", "cast_id": 26, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 15}, {"name": "Jim Doughan", "character": "Det. Phil Allen / Lucky (voice)", "id": 1219157, "credit_id": "54559cca0e0a2648d200625f", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Julia Sweeney", "character": "Mrs. Keeper", "id": 11806, "credit_id": "54559cd50e0a2648cf00615e", "cast_id": 28, "profile_path": "/hy7ZoNmr0h3AcrBkbnTLOXZnwRd.jpg", "order": 17}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe43319251416c7500714d", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 5.6, "runtime": 84}, "10138": {"poster_path": "/1LoT5WsN4Lc1aR7A18ciSA1LoMy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 623933331, "overview": "Now that his Super Hero secret has been revealed, Tony Stark's life is more intense than ever. Everyone wants in on the Iron Man technology, whether for power or profit... But for Ivan Vanko, it's revenge! Tony must once again suit up and face his most dangerous enemy yet, but not without a few new allies of his own.", "video": false, "id": 10138, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Man 2", "tagline": "It's not the armor that makes the hero, but the man inside.", "vote_count": 3502, "homepage": "http://www.ironmanmovie.com/", "belongs_to_collection": {"backdrop_path": "/rI8zOWkRQJdlAyQ6WJOSlYK6JxZ.jpg", "poster_path": "/fbeJ7f0aD4A112Bc1tnpzyn82xO.jpg", "id": 131292, "name": "Iron Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1228705", "adult": false, "backdrop_path": "/jxdSxqAFrdioKgXwgTs5Qfbazjq.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2010-05-07", "popularity": 4.59224350378575, "original_title": "Iron Man 2", "budget": 200000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe43329251416c75007341", "cast_id": 30, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe43329251416c75007307", "cast_id": 18, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Lt. Col. James \"Rhodey\" Rhodes / War Machine", "id": 1896, "credit_id": "52fe43329251416c7500730b", "cast_id": 19, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Natalie Rushman / Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe43329251416c750072bf", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Mickey Rourke", "character": "Ivan Vanko", "id": 2295, "credit_id": "52fe43329251416c750072b5", "cast_id": 3, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 4}, {"name": "Sam Rockwell", "character": "Justin Hammer", "id": 6807, "credit_id": "52fe43329251416c750072c3", "cast_id": 6, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 5}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe43329251416c750072c7", "cast_id": 7, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Agent Coulson", "id": 9048, "credit_id": "52fe43329251416c7500734d", "cast_id": 33, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "John Slattery", "character": "Howard Stark", "id": 21134, "credit_id": "52fe43329251416c75007349", "cast_id": 32, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 8}, {"name": "Garry Shandling", "character": "Senator Stern", "id": 52865, "credit_id": "52fe43329251416c75007345", "cast_id": 31, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 9}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe43329251416c75007369", "cast_id": 39, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 10}, {"name": "Kate Mara", "character": "U.S. Marshal", "id": 51072, "credit_id": "52fe43329251416c7500731b", "cast_id": 23, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 11}, {"name": "Leslie Bibb", "character": "Christine Everhart", "id": 57451, "credit_id": "52fe43329251416c75007313", "cast_id": 21, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 12}, {"name": "Jon Favreau", "character": "Happy Hogan", "id": 15277, "credit_id": "52fe43329251416c7500730f", "cast_id": 20, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 13}, {"name": "Christiane Amanpour", "character": "Herself", "id": 73641, "credit_id": "52fe43329251416c7500736d", "cast_id": 40, "profile_path": "/zJGVUg4vDWmEpQFlLMWJjWwvCVe.jpg", "order": 14}, {"name": "Philippe Bergeron", "character": "Detective Lemieux", "id": 14741, "credit_id": "52fe43329251416c75007371", "cast_id": 41, "profile_path": "/ugHYNYMyn3zrKEtQJAnuEJrLiBr.jpg", "order": 15}, {"name": "James Bethea", "character": "Security Force #1", "id": 1209714, "credit_id": "52fe43329251416c75007375", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Michael Bruno", "character": "Security Force #2", "id": 216601, "credit_id": "52fe43329251416c75007379", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Kate Clark", "character": "Expo Fan", "id": 1265248, "credit_id": "52fe43329251416c7500737d", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Luminita Docan", "character": "Russian Newscaster", "id": 1265249, "credit_id": "52fe43329251416c75007381", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Fran\u00e7ois Duhamel", "character": "French Photographer", "id": 1177850, "credit_id": "52fe43329251416c75007385", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Larry Ellison", "character": "Himself", "id": 586090, "credit_id": "52fe43329251416c75007389", "cast_id": 47, "profile_path": null, "order": 21}, {"name": "Adam Goldstein", "character": "Himself (as Adam \"DJ AM\" Goldstein)", "id": 1228219, "credit_id": "52fe43329251416c7500738d", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "Tim Guinee", "character": "Major Allen", "id": 40275, "credit_id": "52fe43329251416c75007391", "cast_id": 49, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 23}, {"name": "Eric L. Haney", "character": "General Meade", "id": 1230885, "credit_id": "52fe43329251416c75007395", "cast_id": 50, "profile_path": null, "order": 24}, {"name": "Ali Khan", "character": "10 Rings Gangster", "id": 1265250, "credit_id": "52fe43329251416c75007399", "cast_id": 51, "profile_path": null, "order": 25}, {"name": "Evgeniy Lazarev", "character": "Anton Vanko (as Eugene Lazarev)", "id": 1079976, "credit_id": "52fe43329251416c7500739d", "cast_id": 52, "profile_path": null, "order": 26}, {"name": "Stan Lee", "character": "Himself", "id": 7624, "credit_id": "52fe43329251416c750073a1", "cast_id": 53, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 27}, {"name": "Isaiah Guyman Martin IV", "character": "AV Operator", "id": 1265251, "credit_id": "52fe43329251416c750073a5", "cast_id": 54, "profile_path": null, "order": 28}, {"name": "Helena Mattsson", "character": "Rebecca", "id": 113676, "credit_id": "52fe43329251416c7500731f", "cast_id": 24, "profile_path": "/jXksDiD2NATlan04QXqKusOx5XY.jpg", "order": 29}, {"name": "Keith Middlebrook", "character": "Expo Cop", "id": 118755, "credit_id": "52fe43329251416c750073a9", "cast_id": 55, "profile_path": "/5Qg9QNOdY1bCSAuZCC94DKd5PK9.jpg", "order": 30}, {"name": "Anya Monzikova", "character": "Rebeka", "id": 210292, "credit_id": "52fe43329251416c750073ad", "cast_id": 56, "profile_path": "/zZqz0fngbrKx5Hbdtcz1SqJCNLN.jpg", "order": 31}, {"name": "Margy Moore", "character": "Bambi Arbogast", "id": 1265252, "credit_id": "52fe43329251416c750073b1", "cast_id": 57, "profile_path": null, "order": 32}, {"name": "Olivia Munn", "character": "Chess Roberts", "id": 81364, "credit_id": "52fe43329251416c75007317", "cast_id": 22, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 33}, {"name": "Elon Musk", "character": "Himself", "id": 57563, "credit_id": "52fe43329251416c750073b5", "cast_id": 58, "profile_path": null, "order": 34}, {"name": "Bill O'Reilly", "character": "Himself", "id": 95777, "credit_id": "52fe43329251416c750073b9", "cast_id": 59, "profile_path": "/pX6ft9MEU683jTv4RlMZTnx3tsJ.jpg", "order": 35}, {"name": "Alejandro Patino", "character": "Strawberry Vendor", "id": 81957, "credit_id": "52fe43329251416c750073bd", "cast_id": 60, "profile_path": "/reJQA3dXoxunkOnWIIv0QtCm0BZ.jpg", "order": 36}, {"name": "Davin Ransom", "character": "Young Tony Stark", "id": 1265795, "credit_id": "52fe43329251416c750073c1", "cast_id": 61, "profile_path": null, "order": 37}, {"name": "Karim Saleh", "character": "Guard", "id": 997632, "credit_id": "52fe43329251416c750073c5", "cast_id": 62, "profile_path": null, "order": 38}, {"name": "Brian Schaeffer", "character": "Hammer Expo Tech", "id": 1265796, "credit_id": "52fe43329251416c750073c9", "cast_id": 63, "profile_path": null, "order": 39}, {"name": "Phillipe Simon", "character": "French Waiter", "id": 201883, "credit_id": "52fe43329251416c750073cd", "cast_id": 64, "profile_path": null, "order": 40}, {"name": "Jack White", "character": "Jack", "id": 1265797, "credit_id": "52fe43329251416c750073d1", "cast_id": 65, "profile_path": null, "order": 41}, {"name": "Melanie Brown", "character": "Ironette Dancer", "id": 1265798, "credit_id": "52fe43329251416c750073d5", "cast_id": 66, "profile_path": null, "order": 42}, {"name": "Krystal Ellsworth", "character": "Ironette Dancer", "id": 1003061, "credit_id": "52fe43329251416c750073d9", "cast_id": 67, "profile_path": null, "order": 43}, {"name": "Victoria Gracie", "character": "Ironette Dancer (as Victoria Parsons)", "id": 1265799, "credit_id": "52fe43329251416c750073dd", "cast_id": 68, "profile_path": null, "order": 44}, {"name": "Gina Cantrell", "character": "Ironette Dancer", "id": 1202543, "credit_id": "52fe43329251416c750073e1", "cast_id": 69, "profile_path": null, "order": 45}, {"name": "Renee Herlocker", "character": "Ironette Dancer", "id": 1265800, "credit_id": "52fe43329251416c750073e5", "cast_id": 70, "profile_path": null, "order": 46}, {"name": "Jill Ann Pineda-Arnold", "character": "Ironette Dancer", "id": 1265801, "credit_id": "52fe43329251416c750073e9", "cast_id": 71, "profile_path": null, "order": 47}, {"name": "Sandy Colton", "character": "Ironette Dancer (as Sandra Colton)", "id": 571240, "credit_id": "52fe43329251416c750073ed", "cast_id": 72, "profile_path": null, "order": 48}, {"name": "Annika Ihnat", "character": "Ironette Dancer", "id": 1265802, "credit_id": "52fe43329251416c750073f1", "cast_id": 73, "profile_path": null, "order": 49}, {"name": "Jenny Robinson", "character": "Ironette Dancer", "id": 108725, "credit_id": "52fe43329251416c750073f5", "cast_id": 74, "profile_path": null, "order": 50}, {"name": "Lindsay Dennis", "character": "Ironette Dancer", "id": 1265803, "credit_id": "52fe43329251416c750073f9", "cast_id": 75, "profile_path": null, "order": 51}, {"name": "Jennifer D. Johnson", "character": "Ironette Dancer", "id": 995348, "credit_id": "52fe43329251416c750073fd", "cast_id": 76, "profile_path": null, "order": 52}, {"name": "Lindsay Rosenberg", "character": "Ironette Dancer", "id": 1265804, "credit_id": "52fe43329251416c75007401", "cast_id": 77, "profile_path": null, "order": 53}, {"name": "Hannah Douglass", "character": "Ironette Dancer", "id": 1265805, "credit_id": "52fe43329251416c75007405", "cast_id": 78, "profile_path": null, "order": 54}, {"name": "Brooke Long", "character": "Ironette Dancer", "id": 1265806, "credit_id": "52fe43329251416c75007409", "cast_id": 79, "profile_path": null, "order": 55}, {"name": "Rachele Brooke Smith", "character": "Ironette Dancer", "id": 83274, "credit_id": "52fe43329251416c7500740d", "cast_id": 80, "profile_path": "/fe7Xk9MmNskEDmkAcR6JRCKvZ5K.jpg", "order": 56}, {"name": "Nadine Ellis", "character": "Ironette Dancer", "id": 168925, "credit_id": "52fe43329251416c75007411", "cast_id": 81, "profile_path": "/7HxzDtQgpcWbE8BoMmTRmqZ3rny.jpg", "order": 57}, {"name": "Kylette Zamora", "character": "Ironette Dancer", "id": 1265807, "credit_id": "52fe43329251416c75007415", "cast_id": 82, "profile_path": null, "order": 58}, {"name": "Ted Alderman", "character": "News Cameraman (uncredited)", "id": 98999, "credit_id": "52fe43329251416c75007419", "cast_id": 83, "profile_path": null, "order": 59}, {"name": "Donessa Alexander", "character": "Birthday Party Guest / Expo Guest (uncredited)", "id": 1265808, "credit_id": "52fe43329251416c7500741d", "cast_id": 84, "profile_path": null, "order": 60}, {"name": "Martin Andris", "character": "Expo Greeter (uncredited)", "id": 1265809, "credit_id": "52fe43329251416c75007421", "cast_id": 85, "profile_path": null, "order": 61}, {"name": "Cassity Atkins", "character": "Expo Patron (uncredited)", "id": 1265810, "credit_id": "52fe43339251416c75007425", "cast_id": 86, "profile_path": null, "order": 62}, {"name": "Gregory Baldi", "character": "Monaco Grand Prix Restaurant Guest (uncredited)", "id": 1265811, "credit_id": "52fe43339251416c75007429", "cast_id": 87, "profile_path": null, "order": 63}, {"name": "Elya Beer", "character": "Bartender (uncredited)", "id": 1265812, "credit_id": "52fe43339251416c7500742d", "cast_id": 88, "profile_path": null, "order": 64}, {"name": "Ayelet Ben-Shahar", "character": "Model (uncredited)", "id": 1265813, "credit_id": "52fe43339251416c75007431", "cast_id": 89, "profile_path": null, "order": 65}, {"name": "Jordan Bobbitt", "character": "Little Girl at EXPO Gala (uncredited)", "id": 1265814, "credit_id": "52fe43339251416c75007435", "cast_id": 90, "profile_path": null, "order": 66}, {"name": "Chris Borden", "character": "Dignitary / Expo Attendee (uncredited)", "id": 1265815, "credit_id": "52fe43339251416c75007439", "cast_id": 91, "profile_path": null, "order": 67}, {"name": "Pete Brown", "character": "Air Force Major (uncredited)", "id": 1078574, "credit_id": "52fe43339251416c7500743d", "cast_id": 92, "profile_path": null, "order": 68}, {"name": "Basilina Butler", "character": "Tony Stark Racing Fan (uncredited)", "id": 1265816, "credit_id": "52fe43339251416c75007441", "cast_id": 93, "profile_path": null, "order": 69}, {"name": "John Ceallach", "character": "Captain Anders (uncredited)", "id": 1236642, "credit_id": "52fe43339251416c75007445", "cast_id": 94, "profile_path": null, "order": 70}, {"name": "Katie Cleary", "character": "Beautiful Girl (uncredited)", "id": 1231548, "credit_id": "52fe43339251416c75007449", "cast_id": 95, "profile_path": null, "order": 71}, {"name": "Ajarae Coleman", "character": "Expo Guest (uncredited)", "id": 1265817, "credit_id": "52fe43339251416c7500744d", "cast_id": 96, "profile_path": "/3rA8WzZjfcjlyJiSJ2LM9aeTWRR.jpg", "order": 72}, {"name": "Rick L. Dean", "character": "Monte Carlo Race Fan (uncredited)", "id": 1265818, "credit_id": "52fe43339251416c75007451", "cast_id": 97, "profile_path": null, "order": 73}, {"name": "Timothy 'TJ' James Driscoll", "character": "French Prison Guard #2 (uncredited)", "id": 1265819, "credit_id": "52fe43339251416c75007455", "cast_id": 98, "profile_path": null, "order": 74}, {"name": "Jasmine Dustin", "character": "Watermelon Girl (uncredited)", "id": 1225936, "credit_id": "52fe43339251416c75007459", "cast_id": 99, "profile_path": null, "order": 75}, {"name": "Mark Casimir Dyniewicz", "character": "Justin Hammer Expo Attendee (uncredited)", "id": 97447, "credit_id": "52fe43339251416c7500745d", "cast_id": 100, "profile_path": null, "order": 76}, {"name": "Sam Felman", "character": "Stark Expo Attendee (uncredited)", "id": 1265820, "credit_id": "52fe43339251416c75007461", "cast_id": 101, "profile_path": null, "order": 77}, {"name": "Caitlin Gallo", "character": "I Love You girl (uncredited)", "id": 1265821, "credit_id": "52fe43339251416c75007465", "cast_id": 102, "profile_path": null, "order": 78}, {"name": "Shakira Vanise Gamble", "character": "Pepper's Party Guest (uncredited)", "id": 1265822, "credit_id": "52fe43339251416c75007469", "cast_id": 103, "profile_path": null, "order": 79}, {"name": "Paul Grace", "character": "French Prison Guard #1 (uncredited)", "id": 1265823, "credit_id": "52fe43339251416c7500746d", "cast_id": 104, "profile_path": null, "order": 80}, {"name": "James Granville", "character": "Expo Fan (uncredited)", "id": 1265824, "credit_id": "52fe43339251416c75007471", "cast_id": 105, "profile_path": null, "order": 81}, {"name": "Kathryn Henzler", "character": "Expo Attendee (uncredited)", "id": 1265825, "credit_id": "52fe43339251416c75007475", "cast_id": 106, "profile_path": null, "order": 82}, {"name": "Jennifer Lynne Johnson", "character": "Expo Attendee (uncredited)", "id": 1265826, "credit_id": "52fe43339251416c75007479", "cast_id": 107, "profile_path": null, "order": 83}, {"name": "Mark Kubr", "character": "Prisoner (uncredited)", "id": 193946, "credit_id": "52fe43339251416c7500747d", "cast_id": 108, "profile_path": null, "order": 84}, {"name": "Cameron Lee", "character": "Senate Page (uncredited)", "id": 1265827, "credit_id": "52fe43339251416c75007481", "cast_id": 109, "profile_path": null, "order": 85}, {"name": "Jee-Yun Lee", "character": "Reporter (archive footage) (uncredited)", "id": 201951, "credit_id": "52fe43339251416c75007485", "cast_id": 110, "profile_path": null, "order": 86}, {"name": "Waymond Lee", "character": "Expo Guest (uncredited)", "id": 1200895, "credit_id": "52fe43339251416c75007489", "cast_id": 111, "profile_path": null, "order": 87}, {"name": "Mathew Lorenceau", "character": "Prison Guard Chevalier (uncredited)", "id": 1200313, "credit_id": "52fe43339251416c7500748d", "cast_id": 112, "profile_path": null, "order": 88}, {"name": "Christopher Maleki", "character": "Reporter (uncredited)", "id": 101037, "credit_id": "52fe43339251416c75007491", "cast_id": 113, "profile_path": "/5ZAbMzPFBLcqX1XwILdTW7bL0KH.jpg", "order": 89}, {"name": "Richard Markman", "character": "Photographer at Senate hearing (uncredited)", "id": 1265828, "credit_id": "52fe43339251416c75007495", "cast_id": 114, "profile_path": null, "order": 90}, {"name": "Bryan McCoy", "character": "Expo Guest (uncredited)", "id": 1265829, "credit_id": "52fe43339251416c75007499", "cast_id": 115, "profile_path": null, "order": 91}, {"name": "Ed Moy", "character": "Awards Attendee (uncredited)", "id": 1186481, "credit_id": "52fe43339251416c7500749d", "cast_id": 116, "profile_path": null, "order": 92}, {"name": "Delka Nenkova", "character": "Russian Woman (uncredited)", "id": 1265830, "credit_id": "52fe43339251416c750074a1", "cast_id": 117, "profile_path": null, "order": 93}, {"name": "Tony Nevada", "character": "SWAT Sergeant Bellows (uncredited)", "id": 992389, "credit_id": "52fe43339251416c750074a5", "cast_id": 118, "profile_path": null, "order": 94}, {"name": "Allison Ochmanek", "character": "Watermelon Girl (uncredited)", "id": 1265831, "credit_id": "52fe43339251416c750074a9", "cast_id": 119, "profile_path": null, "order": 95}, {"name": "Nicolas Pajon", "character": "French Reporter (uncredited)", "id": 208056, "credit_id": "52fe43339251416c750074ad", "cast_id": 120, "profile_path": null, "order": 96}, {"name": "H.E. Victor J.W. Pekarcik III", "character": "White House Chief of Staff (uncredited)", "id": 1265832, "credit_id": "52fe43339251416c750074b1", "cast_id": 121, "profile_path": null, "order": 97}, {"name": "Erin Pickett", "character": "Expo Guest (uncredited)", "id": 1265833, "credit_id": "52fe43339251416c750074b5", "cast_id": 122, "profile_path": null, "order": 98}, {"name": "Olivia Presley", "character": "Expo VIP (uncredited)", "id": 223048, "credit_id": "52fe43339251416c750074b9", "cast_id": 123, "profile_path": null, "order": 99}, {"name": "Steven James Price", "character": "Senate Gallery Member (uncredited)", "id": 1197358, "credit_id": "52fe43339251416c750074bd", "cast_id": 124, "profile_path": null, "order": 100}, {"name": "Kiana Prudhont", "character": "Expo Kid (uncredited)", "id": 1265834, "credit_id": "52fe43339251416c750074c1", "cast_id": 125, "profile_path": null, "order": 101}, {"name": "Kristin Quick", "character": "VIP Expo Guest (uncredited)", "id": 1265835, "credit_id": "52fe43339251416c750074c5", "cast_id": 126, "profile_path": null, "order": 102}, {"name": "Tanner Alexander Redman", "character": "1960's Film Crew (uncredited)", "id": 1265836, "credit_id": "52fe43339251416c750074c9", "cast_id": 127, "profile_path": null, "order": 103}, {"name": "Tanoai Reed", "character": "Security Guard Fighting Happy Hogan (uncredited)", "id": 77824, "credit_id": "52fe43339251416c750074cd", "cast_id": 128, "profile_path": "/5CCVaidtpFOEcFUoQWQZjbEwwBd.jpg", "order": 104}, {"name": "Kelly Sarah", "character": "Stark Expo Attendee (uncredited)", "id": 1197040, "credit_id": "52fe43339251416c750074d1", "cast_id": 129, "profile_path": null, "order": 105}, {"name": "Torin Sixx", "character": "Pepper's Birthday Party Guest (uncredited)", "id": 1265837, "credit_id": "52fe43339251416c750074d5", "cast_id": 130, "profile_path": null, "order": 106}, {"name": "Peter Trenholm Smith", "character": "Senator (uncredited)", "id": 1265838, "credit_id": "52fe43339251416c750074d9", "cast_id": 131, "profile_path": null, "order": 107}, {"name": "Grace Stanley", "character": "Model (uncredited)", "id": 1265839, "credit_id": "52fe43339251416c750074dd", "cast_id": 132, "profile_path": null, "order": 108}, {"name": "Doug Swander", "character": "Party Guest (uncredited)", "id": 92189, "credit_id": "52fe43339251416c750074e1", "cast_id": 133, "profile_path": null, "order": 109}, {"name": "Michael A. Templeton", "character": "US Senator (uncredited)", "id": 1265840, "credit_id": "52fe43339251416c750074e5", "cast_id": 134, "profile_path": null, "order": 110}, {"name": "Rosa Tyabji", "character": "Background (uncredited)", "id": 1265841, "credit_id": "52fe43339251416c750074e9", "cast_id": 135, "profile_path": null, "order": 111}, {"name": "Peter Sebastian Wrobel", "character": "Tony Stark Usher (uncredited)", "id": 1122811, "credit_id": "52fe43339251416c750074ed", "cast_id": 136, "profile_path": null, "order": 112}, {"name": "Maria Zambrana", "character": "Expo Attendee (uncredited)", "id": 1205141, "credit_id": "52fe43339251416c750074f1", "cast_id": 137, "profile_path": null, "order": 113}, {"name": "Nick W. Nicholson", "character": "Stark Expo Attendee (uncredited)", "id": 1429470, "credit_id": "54e7e9fc9251412eb8000c7e", "cast_id": 147, "profile_path": null, "order": 114}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe43329251416c750072b1", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 6.6, "runtime": 124}, "10139": {"poster_path": "/sFYmJJSVXqfqPI79tx4UG4IR5Jb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54586584, "overview": "The story of California's first openly gay elected official, Harvey Milk, who became an outspoken agent for change, seeking equal rights and opportunities for all. His great love for the city and its people brought him backing from young and old, straight and gay, alike \u2013 at a time when prejudice and violence against gays was openly accepted as the norm.", "video": false, "id": 10139, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Milk", "tagline": "Never Blend In.", "vote_count": 134, "homepage": "http://focusfeatures.com/film/milk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1013753", "adult": false, "backdrop_path": "/i8NcYenVqMzB95pVz8YOPIqmGj8.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2008-11-26", "popularity": 0.627415527653266, "original_title": "Milk", "budget": 20000000, "cast": [{"name": "Sean Penn", "character": "Harvey Milk", "id": 2228, "credit_id": "52fe43339251416c75007555", "cast_id": 2, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Emile Hirsch", "character": "Cleve Jones", "id": 46593, "credit_id": "52fe43339251416c75007559", "cast_id": 3, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 1}, {"name": "James Franco", "character": "Scott Smith", "id": 17051, "credit_id": "52fe43339251416c7500755d", "cast_id": 4, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Josh Brolin", "character": "Dan White", "id": 16851, "credit_id": "52fe43339251416c75007561", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 3}, {"name": "Diego Luna", "character": "Jack Lira", "id": 8688, "credit_id": "52fe43339251416c75007565", "cast_id": 6, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 4}, {"name": "Alison Pill", "character": "Anne Kronenberg", "id": 17486, "credit_id": "52fe43339251416c75007581", "cast_id": 11, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 5}, {"name": "Victor Garber", "character": "Mayor Moscone", "id": 8536, "credit_id": "52fe43339251416c75007585", "cast_id": 12, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 6}, {"name": "Denis O'Hare", "character": "John Briggs", "id": 81681, "credit_id": "52fe43339251416c75007589", "cast_id": 13, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 7}, {"name": "Joseph Cross", "character": "Dick Pabich", "id": 33528, "credit_id": "52fe43339251416c7500758d", "cast_id": 14, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 8}, {"name": "Stephen Spinella", "character": "Rick Stokes", "id": 57093, "credit_id": "52fe43339251416c75007591", "cast_id": 15, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 9}, {"name": "Lucas Grabeel", "character": "Danny Nicoletta", "id": 67601, "credit_id": "52fe43339251416c75007595", "cast_id": 16, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 10}, {"name": "Boyd Holbrook", "character": "Denton Smith", "id": 467645, "credit_id": "52fe43339251416c75007599", "cast_id": 17, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 11}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe43339251416c75007551", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 7.0, "runtime": 128}, "1948": {"poster_path": "/6RnD3Zfh0tO0cD2vroWyH0F98Ej.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39242841, "overview": "Professional assassin Chev Chelios learns his rival has injected him with a poison that will kill him if his heart rate drops.", "video": false, "id": 1948, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Crank", "tagline": "There are a thousand ways to raise your adrenaline. Today, Chev Chelios will need every single one.", "vote_count": 396, "homepage": "http://www.crankfilm.com/", "belongs_to_collection": {"backdrop_path": "/nHq1qCXy4QKM1BaPG1PbWOcFEcg.jpg", "poster_path": "/wmUzRqcAi0KOW7sqnaAvEQtM8l.jpg", "id": 64751, "name": "Crank Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0479884", "adult": false, "backdrop_path": "/kSTvteM3ekuoeO7u7GJtZQkZuom.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Radical Media", "id": 11152}, {"name": "GreeneStreet Films", "id": 2152}], "release_date": "2006-08-31", "popularity": 1.84574957639095, "original_title": "Crank", "budget": 12000000, "cast": [{"name": "Jason Statham", "character": "Chev Chelios", "id": 976, "credit_id": "52fe4325c3a36847f803dc2b", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Amy Smart", "character": "Eve", "id": 20189, "credit_id": "52fe4325c3a36847f803dc2f", "cast_id": 2, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Efren Ramirez", "character": "Kaylo", "id": 20190, "credit_id": "52fe4325c3a36847f803dc33", "cast_id": 3, "profile_path": "/6VqjTlLm469PDyNbATyqyuSvIw0.jpg", "order": 2}, {"name": "Jose Pablo Cantillo", "character": "Ricky Verona", "id": 20191, "credit_id": "52fe4325c3a36847f803dc37", "cast_id": 4, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 3}, {"name": "Dwight Yoakam", "character": "Doc Miles", "id": 20309, "credit_id": "53014a5ac3a3680a2114a155", "cast_id": 21, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 4}, {"name": "Carlos Sanz", "character": "Carlito", "id": 171136, "credit_id": "53014a66c3a3680a091299a9", "cast_id": 22, "profile_path": "/hUJFwGcUDanE98afwKhaQggL1tC.jpg", "order": 5}, {"name": "Reno Wilson", "character": "Orlando", "id": 117187, "credit_id": "53014a72c3a3680a09129ad1", "cast_id": 23, "profile_path": "/xrxGdoGcF3p79NlWHEFvmj2eyx1.jpg", "order": 6}, {"name": "Edi Gathegi", "character": "Haitian Cab Driver", "id": 39391, "credit_id": "53014a7fc3a3680a2114a469", "cast_id": 24, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 7}, {"name": "Glenn Howerton", "character": "Doctor", "id": 77870, "credit_id": "53014a89c3a3680a2114a4a0", "cast_id": 25, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 8}, {"name": "Jay Xcala", "character": "Alex", "id": 962169, "credit_id": "534f86bbc3a3681cdd00088c", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Keone Young", "character": "Don Kim", "id": 91387, "credit_id": "534f86d4c3a3681cdd00088f", "cast_id": 27, "profile_path": "/bzJWn4q0Vt6l5zZ33Q0dtB77g4S.jpg", "order": 10}, {"name": "Valarie Rae Miller", "character": "Chocolate", "id": 1212687, "credit_id": "534f86e9c3a3681cc300085a", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Yousuf Azami", "character": "Arab Cab Driver", "id": 123102, "credit_id": "534f86f9c3a3681cae000824", "cast_id": 29, "profile_path": "/lEB2ryIlwygt5msLv4ICxPKBYxX.jpg", "order": 12}, {"name": "Laurent Schwaar", "character": "Man in Garage", "id": 1310647, "credit_id": "534f8707c3a3681cc3000861", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "David Brown", "character": "Sin City Brother", "id": 1260146, "credit_id": "534f8717c3a3681cb50008c7", "cast_id": 31, "profile_path": "/rS11US9Th9grQlTN0NdK7Q2VrI1.jpg", "order": 14}], "directors": [{"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dc3d", "profile_path": null, "id": 20192}, {"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dc43", "profile_path": null, "id": 20193}], "vote_average": 6.5, "runtime": 88}, "1949": {"poster_path": "/kIW7N2bKV42OWk1kkMeq5ewZQVh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84785914, "overview": "Based on the actual case files for one of the most intriguing unsolved crimes in America, \"Zodiac\" tells the story of a serial killer that terrified the San Francisco Bay Area, taunting police with his ciphers and letters. The case becomes an obsession for four men as their lives and careers are built and destroyed by the endless trail of clues.", "video": false, "id": 1949, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Zodiac", "tagline": "There's more than one way to lose your life to a killer", "vote_count": 394, "homepage": "http://www.zodiacmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443706", "adult": false, "backdrop_path": "/lXZgNXoMNbCCp0j03AC20LvdiHd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros.", "id": 6194}, {"name": "Phoenix Pictures", "id": 11317}], "release_date": "2007-03-01", "popularity": 1.55025590964691, "original_title": "Zodiac", "budget": 65000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Robert Graysmith", "id": 131, "credit_id": "52fe4325c3a36847f803dd0d", "cast_id": 13, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Paul Avery", "id": 3223, "credit_id": "52fe4325c3a36847f803dd43", "cast_id": 27, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Dave Toschi", "id": 103, "credit_id": "52fe4325c3a36847f803dd11", "cast_id": 14, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Anthony Edwards", "character": "Bill Armstrong", "id": 11085, "credit_id": "52fe4325c3a36847f803dd15", "cast_id": 16, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 3}, {"name": "Brian Cox", "character": "Melvin Belli", "id": 1248, "credit_id": "52fe4325c3a36847f803dd19", "cast_id": 17, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Jack Mulanax", "id": 13550, "credit_id": "52fe4325c3a36847f803dd1d", "cast_id": 18, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Chlo\u00eb Sevigny", "character": "Melanie", "id": 2838, "credit_id": "52fe4325c3a36847f803dd21", "cast_id": 19, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 6}, {"name": "John Carroll Lynch", "character": "Arthur Leigh Allen", "id": 3911, "credit_id": "52fe4325c3a36847f803dd25", "cast_id": 20, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 7}, {"name": "Ed Setrakian", "character": "Al Hyman", "id": 20210, "credit_id": "52fe4325c3a36847f803dd29", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "John Getz", "character": "Templeton Peck", "id": 20211, "credit_id": "52fe4325c3a36847f803dd2d", "cast_id": 22, "profile_path": "/a0uOMxCiYqvcr3h49jopyKzKVfX.jpg", "order": 9}, {"name": "John Terry", "character": "Charles Thieriot", "id": 8659, "credit_id": "52fe4325c3a36847f803dd31", "cast_id": 23, "profile_path": "/ziI8HiAeTLdud06edGUo2AXwdij.jpg", "order": 10}, {"name": "Candy Clark", "character": "Carol Fisher", "id": 12407, "credit_id": "52fe4325c3a36847f803dd35", "cast_id": 24, "profile_path": "/aQKkCUp3tXxw1Mspz8QOfCRCFy2.jpg", "order": 11}, {"name": "Dermot Mulroney", "character": "Captain Martin Lee", "id": 20212, "credit_id": "52fe4325c3a36847f803dd39", "cast_id": 25, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 12}, {"name": "Brett Rickaby", "character": "Detective Roy", "id": 12549, "credit_id": "52fe4325c3a36847f803dd47", "cast_id": 28, "profile_path": "/bsY5Tgy6PTPa4u81eaVIgTs5RwA.jpg", "order": 13}, {"name": "Clea DuVall", "character": "Linda del Buono", "id": 20387, "credit_id": "53b873cd0e0a2676c7008504", "cast_id": 30, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 14}, {"name": "Donal Logue", "character": "Captain Ken Narlow", "id": 10825, "credit_id": "54d6cbba9251416b93003b5d", "cast_id": 31, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 15}, {"name": "Charles Fleischer", "character": "Bob Vaughn", "id": 12826, "credit_id": "54d6cbf8c3a3683b89003b20", "cast_id": 32, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 16}, {"name": "Philip Baker Hall", "character": "Sherwood Morrill", "id": 4492, "credit_id": "54d6d86e92514153b5000a21", "cast_id": 33, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 17}, {"name": "Adam Goldberg", "character": "Duffy Jennings", "id": 6163, "credit_id": "54d6d8a59251413388001027", "cast_id": 34, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 18}, {"name": "Zach Grenier", "character": "Mel Nicolai", "id": 7471, "credit_id": "54d6dfa992514171600043fa", "cast_id": 35, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 19}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dd3f", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.9, "runtime": 157}, "10144": {"poster_path": "/ujlSe3lhp1OKmF2LNu6wRpWbdiU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 211343479, "overview": "This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.", "video": false, "id": 10144, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Little Mermaid", "tagline": "Somewhere under the sea and beyond your imagination is an adventure in fantasy.", "vote_count": 529, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3LVnessjKBjTEVLpVBJf5uh5Y9.jpg", "poster_path": "/y0EOuK02TasfRGSZBdv5U910QaV.jpg", "id": 33085, "name": "The Little Mermaid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0097757", "adult": false, "backdrop_path": "/gJBGcnhGhxoOpcqK29kZNq3UR6i.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1989-11-15", "popularity": 1.96691796813753, "original_title": "The Little Mermaid", "budget": 40000000, "cast": [{"name": "Rene Auberjonois", "character": "Louis (voice)", "id": 9807, "credit_id": "52fe43349251416c7500783f", "cast_id": 12, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 0}, {"name": "Christopher Daniel Barnes", "character": "Prince Eric (voice)", "id": 31468, "credit_id": "52fe43349251416c75007843", "cast_id": 13, "profile_path": "/mbnpGbndavEHgkmu9tgyqF22I0i.jpg", "order": 1}, {"name": "Jodi Benson", "character": "Ariel (voice)", "id": 63978, "credit_id": "52fe43359251416c75007847", "cast_id": 14, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 2}, {"name": "Pat Carroll", "character": "Ursula (voice)", "id": 35232, "credit_id": "52fe43359251416c7500784b", "cast_id": 15, "profile_path": "/u3VKH6kvq3giRZ7UJTaec262HHW.jpg", "order": 3}, {"name": "Paddi Edwards", "character": "Flotsam /Jetsam (voice)", "id": 157660, "credit_id": "52fe43359251416c7500784f", "cast_id": 16, "profile_path": "/l5hQV4JBI2irJFYNfNxdsvXKKQz.jpg", "order": 4}, {"name": "Buddy Hackett", "character": "Scuttle (voice)", "id": 67393, "credit_id": "52fe43359251416c75007853", "cast_id": 17, "profile_path": "/zYLAknEo17XgWU44DbT2FCvLQps.jpg", "order": 5}, {"name": "Jason Marin", "character": "Flounder (voice)", "id": 184030, "credit_id": "52fe43359251416c75007857", "cast_id": 18, "profile_path": "/vt8OeZi93AlWkVGZ3yazBqh4jWx.jpg", "order": 6}, {"name": "Kenneth Mars", "character": "King Triton (voice)", "id": 9601, "credit_id": "52fe43359251416c7500785b", "cast_id": 19, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 7}, {"name": "Edie McClurg", "character": "Carlotta (voice)", "id": 3202, "credit_id": "52fe43359251416c7500785f", "cast_id": 20, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 8}, {"name": "Will Ryan", "character": "Seahorse (voice)", "id": 40352, "credit_id": "52fe43359251416c75007863", "cast_id": 21, "profile_path": "/uY0oWjp7dxBEh03LpMBqApaswn.jpg", "order": 9}, {"name": "Ben Wright", "character": "Grimsby (voice)", "id": 71781, "credit_id": "52fe43359251416c75007867", "cast_id": 22, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 10}, {"name": "Samuel E. Wright", "character": "Sebastian (voice)", "id": 67392, "credit_id": "52fe43359251416c7500786b", "cast_id": 23, "profile_path": "/hOtuep1nRczthyxkJusb68rcuL1.jpg", "order": 11}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe43349251416c750077ff", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe43349251416c75007805", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.9, "runtime": 83}, "10145": {"poster_path": "/iFSotnLnRHZiLoxih9bnYybwBqH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117575636, "overview": "Nine-year-old Sam Paretta is dead, killed in a plane crash. Even though it's been fourteen months since the accident, his mother Telly (Julianne Moore) still grieves over the loss. Suddenly her husband (Anthony Edwards) swears they never had a child and her psychiatrist (Gary Sinise) insists she's delusional. But worst of all, there is absolutely no evidence to prove Sam ever existed.", "video": false, "id": 10145, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Forgotten", "tagline": "You'll Never Forget The Ones You Love", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356618", "adult": false, "backdrop_path": "/mz3d5x6MYyTtyABPGbOk3sd9Rg9.jpg", "production_companies": [{"name": "Visual Arts Entertainment", "id": 30833}, {"name": "Revolution Studios", "id": 497}, {"name": "Jinks/Cohen Company", "id": 2721}], "release_date": "2004-09-24", "popularity": 0.575555438471934, "original_title": "The Forgotten", "budget": 42000000, "cast": [{"name": "Julianne Moore", "character": "Telly Paretta", "id": 1231, "credit_id": "52fe43359251416c750078bd", "cast_id": 9, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Anthony Edwards", "character": "Jim Paretta", "id": 11085, "credit_id": "52fe43359251416c750078c1", "cast_id": 10, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 1}, {"name": "Jessica Hecht", "character": "Eliot", "id": 14984, "credit_id": "52fe43359251416c750078c5", "cast_id": 11, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 2}, {"name": "Christopher Kovaleski", "character": "Sam", "id": 63982, "credit_id": "52fe43359251416c750078c9", "cast_id": 12, "profile_path": "/iLWrnZG2mxgpihZFxksf1i3MqeL.jpg", "order": 3}, {"name": "Dominic West", "character": "Ash Correll", "id": 17287, "credit_id": "52fe43359251416c750078cd", "cast_id": 13, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 4}, {"name": "Tim Kang", "character": "Agent Alec Wong", "id": 52947, "credit_id": "52fe43359251416c750078d1", "cast_id": 14, "profile_path": "/1qKA4ODtnF6SiYuSfcC8x9dI7dD.jpg", "order": 5}, {"name": "Gary Sinise", "character": "Dr. Munce", "id": 33, "credit_id": "5303b7fe925141218f659834", "cast_id": 15, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 6}, {"name": "Lee Tergesen", "character": "Al Petalis", "id": 6906, "credit_id": "5323fee9c3a368572500774d", "cast_id": 16, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 7}, {"name": "Robert Wisdom", "character": "Carl Dayton", "id": 21505, "credit_id": "5516d5a39251416f0a000479", "cast_id": 75, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 8}, {"name": "Kathryn Faughnan", "character": "Lauren Correll", "id": 1446696, "credit_id": "5516d5fdc3a3686302000423", "cast_id": 76, "profile_path": null, "order": 9}, {"name": "Alfre Woodard", "character": "Det. Anne Pope", "id": 1981, "credit_id": "5516d625c3a36862f6000418", "cast_id": 77, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 10}, {"name": "Susan Misner", "character": "Agent Lisa Franks", "id": 17640, "credit_id": "5516d64cc3a36862f600041b", "cast_id": 78, "profile_path": "/ugyXBkbrlG97RufRzII4sPM7kU1.jpg", "order": 11}], "directors": [{"name": "Joseph Ruben", "department": "Directing", "job": "Director", "credit_id": "52fe43359251416c7500788f", "profile_path": null, "id": 52629}], "vote_average": 5.1, "runtime": 91}, "1954": {"poster_path": "/gXnNltCrm5feEEa3BytYy6jwF6v.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96060858, "overview": "A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.", "video": false, "id": 1954, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Butterfly Effect", "tagline": "Such minor changes, such huge consequences.", "vote_count": 526, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bj0jcRYfap4gcI2VsThUMYV2ZAG.jpg", "poster_path": "/2kzjiPuc8pOXreeDQWtskp8QtdU.jpg", "id": 52749, "name": "The Butterfly Effect Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289879", "adult": false, "backdrop_path": "/gGd0EKH2hITKqzeIhBVs1Ng7prg.jpg", "production_companies": [{"name": "FilmEngine", "id": 816}, {"name": "Katalyst Films", "id": 817}, {"name": "BenderSpink", "id": 6363}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}, {"name": "New Line Cinema", "id": 12}], "release_date": "2004-01-23", "popularity": 1.38496276981475, "original_title": "The Butterfly Effect", "budget": 13000000, "cast": [{"name": "Ashton Kutcher", "character": "Evan Treborn", "id": 18976, "credit_id": "52fe4325c3a36847f803deb3", "cast_id": 21, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Amy Smart", "character": "Kayleigh Miller", "id": 20189, "credit_id": "52fe4325c3a36847f803de65", "cast_id": 5, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "William Lee Scott", "character": "Tommy Miller", "id": 10128, "credit_id": "52fe4325c3a36847f803de6d", "cast_id": 7, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 2}, {"name": "Elden Henson", "character": "Lenny Kagan", "id": 20220, "credit_id": "52fe4325c3a36847f803de69", "cast_id": 6, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 3}, {"name": "Melora Walters", "character": "Andrea Treborn", "id": 4766, "credit_id": "52fe4325c3a36847f803de61", "cast_id": 4, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 4}, {"name": "Eric Stoltz", "character": "George Miller", "id": 7036, "credit_id": "53a446db0e0a2667d900159e", "cast_id": 41, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 5}, {"name": "Logan Lerman", "character": "Evan Treborn age 7", "id": 33235, "credit_id": "52fe4325c3a36847f803debb", "cast_id": 23, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 6}, {"name": "Ethan Suplee", "character": "Thumper", "id": 824, "credit_id": "53a446fa0e0a2667c90015ae", "cast_id": 42, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 7}, {"name": "Nathaniel DeVeaux", "character": "Dr. Redfield", "id": 20221, "credit_id": "52fe4325c3a36847f803de71", "cast_id": 8, "profile_path": "/oXBArAwYlxrX4w1hnh0HsdAFEcQ.jpg", "order": 8}, {"name": "Kevin G. Schmidt", "character": "Lenny age 13", "id": 85140, "credit_id": "52fe4326c3a36847f803df0b", "cast_id": 37, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 9}, {"name": "Jesse James", "character": "Tommy age 13", "id": 10135, "credit_id": "52fe4326c3a36847f803df0f", "cast_id": 39, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 10}, {"name": "Callum Keith Rennie", "character": "Jason Treborn", "id": 540, "credit_id": "52fe4325c3a36847f803de75", "cast_id": 9, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 11}, {"name": "Irene Gorovaia", "character": "Kayleigh age 13", "id": 946171, "credit_id": "52fe4326c3a36847f803df07", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "John Patrick Amedori", "character": "Evan Treborn age 13", "id": 43464, "credit_id": "52fe4325c3a36847f803deaf", "cast_id": 20, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 13}, {"name": "Cameron Bright", "character": "Tommy age 7", "id": 52414, "credit_id": "53a448450e0a2667bf0015c7", "cast_id": 43, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 15}, {"name": "Lorena Gale", "character": "Mrs. Boswell", "id": 80348, "credit_id": "53a99483c3a368707a0060e1", "cast_id": 52, "profile_path": null, "order": 16}, {"name": "Kendall Cross", "character": "Mrs. Kagan", "id": 59185, "credit_id": "53a994ecc3a3687a43007003", "cast_id": 53, "profile_path": "/js2mIcx5lZu6P4D3z6hYZqNFPCx.jpg", "order": 17}, {"name": "John Tierney", "character": "Priest", "id": 1234935, "credit_id": "53a99523c3a3687a43007007", "cast_id": 54, "profile_path": null, "order": 18}, {"name": "Ted Friend", "character": "Anchor", "id": 80353, "credit_id": "53a99577c3a3687a40006f9e", "cast_id": 55, "profile_path": null, "order": 19}, {"name": "John B. Lowe", "character": "Professor Carter", "id": 33051, "credit_id": "53a995cfc3a368707a0060f1", "cast_id": 56, "profile_path": "/3ecOmKkovovWXtaMUWdA6t0nHf.jpg", "order": 20}, {"name": "Camille Sullivan", "character": "Cricket", "id": 112557, "credit_id": "53a99668c3a368749500641a", "cast_id": 58, "profile_path": "/fRM5JUhqWBfvhCB6RVvc9nsMe1F.jpg", "order": 22}, {"name": "Tara Wilson", "character": "Heidi", "id": 84270, "credit_id": "53a996a3c3a3687a34007010", "cast_id": 59, "profile_path": "/74qhhsyIziJHZsRefRiMaeI4VXw.jpg", "order": 23}, {"name": "Jesse Hutch", "character": "Spencer", "id": 169469, "credit_id": "53a99721c3a3687495006424", "cast_id": 60, "profile_path": "/4ES1tgoPAcOecGkq10gHkkBcFBS.jpg", "order": 24}], "directors": [{"name": "Eric Bress", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803de57", "profile_path": null, "id": 20218}, {"name": "J. Mackye Gruber", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dec1", "profile_path": null, "id": 20219}], "vote_average": 7.0, "runtime": 113}, "1955": {"poster_path": "/3eQ28JtPB9SsmyVSsLFAQwQWEmW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26010864, "overview": "A Victorian surgeon rescues a heavily disfigured man being mistreated by his \"owner\" as a side-show freak. Behind his monstrous facade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.", "video": false, "id": 1955, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Elephant Man", "tagline": "I am not an animal! I am a human being! I...am...a man!", "vote_count": 137, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080678", "adult": false, "backdrop_path": "/rR479zn26lJp4vNxXKjfBVCHLAW.jpg", "production_companies": [{"name": "Brooksfilms", "id": 5612}], "release_date": "1980-10-09", "popularity": 0.601366871850565, "original_title": "The Elephant Man", "budget": 5000000, "cast": [{"name": "John Hurt", "character": "John Merrick", "id": 5049, "credit_id": "52fe4326c3a36847f803df93", "cast_id": 11, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Dr. Frederick Treves", "id": 4173, "credit_id": "52fe4326c3a36847f803df8f", "cast_id": 10, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Anne Bancroft", "character": "Mrs. Kendal", "id": 10774, "credit_id": "52fe4326c3a36847f803df97", "cast_id": 12, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 2}, {"name": "John Gielgud", "character": "Carr Gomm", "id": 11857, "credit_id": "52fe4326c3a36847f803df9b", "cast_id": 13, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 3}, {"name": "Wendy Hiller", "character": "Mothershead", "id": 13325, "credit_id": "52fe4326c3a36847f803df9f", "cast_id": 14, "profile_path": "/tJoIGdsqvjx01Cz3akTr7kaETa5.jpg", "order": 4}, {"name": "Freddie Jones", "character": "Bytes", "id": 12517, "credit_id": "52fe4326c3a36847f803dfa3", "cast_id": 15, "profile_path": "/mh2aJ6fuzsjsCG8bNyelPuqPHt3.jpg", "order": 5}, {"name": "Michael Elphick", "character": "Night Porter", "id": 1821, "credit_id": "52fe4326c3a36847f803dfa7", "cast_id": 16, "profile_path": "/sb8z3XPy9lKPMyYEgVC6RKMccE6.jpg", "order": 6}, {"name": "John Standing", "character": "Dr. Fox", "id": 11282, "credit_id": "52fe4326c3a36847f803dfab", "cast_id": 17, "profile_path": "/npS8a4mKgqpJJiNeRPn0Ftl7pxj.jpg", "order": 7}, {"name": "Phoebe Nicholls", "character": "Merrick's Mother", "id": 3930, "credit_id": "52fe4326c3a36847f803dfaf", "cast_id": 18, "profile_path": "/7DbtgVQOefeCD4DEcUvfMYfsMM2.jpg", "order": 8}, {"name": "Kenny Baker", "character": "Plumed Dwarf", "id": 130, "credit_id": "52fe4326c3a36847f803dfb3", "cast_id": 19, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 9}, {"name": "Hannah Gordon", "character": "Mrs. Anne Treves", "id": 214495, "credit_id": "52fe4326c3a36847f803dfb7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Helen Ryan", "character": "Princess Alex", "id": 643171, "credit_id": "52fe4326c3a36847f803dfbb", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "John Standing", "character": "Fox", "id": 11282, "credit_id": "52fe4326c3a36847f803dfbf", "cast_id": 22, "profile_path": "/npS8a4mKgqpJJiNeRPn0Ftl7pxj.jpg", "order": 12}, {"name": "Dexter Fletcher", "character": "Bytes' Boy", "id": 974, "credit_id": "52fe4326c3a36847f803dfc3", "cast_id": 23, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 13}, {"name": "Lesley Dunlop", "character": "Nora", "id": 47864, "credit_id": "52fe4326c3a36847f803dfc7", "cast_id": 24, "profile_path": "/bG5zP46aHpjsEcbfGuzg1WiK452.jpg", "order": 14}, {"name": "Pat Gorman", "character": "Fairground Bobby", "id": 1230584, "credit_id": "54916f56925141473b0014df", "cast_id": 33, "profile_path": "/pH2aOd7KbJ2tnAPJglmnP2GeILe.jpg", "order": 15}, {"name": "Claire Davenport", "character": "Fat Lady", "id": 692664, "credit_id": "52fe4326c3a36847f803dfcf", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Orla Pederson", "character": "Skeleton Man", "id": 912036, "credit_id": "52fe4326c3a36847f803dfd3", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Patsy Smart", "character": "Patsy Smart", "id": 158278, "credit_id": "52fe4326c3a36847f803dfd7", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Kathleen Byron", "character": "Lady Waddington", "id": 99905, "credit_id": "52fe4326c3a36847f803dfdb", "cast_id": 30, "profile_path": "/pw90dr1OFji81G8D6N3EROQCY11.jpg", "order": 19}, {"name": "William Morgan Sheppard", "character": "Man In Pub", "id": 938390, "credit_id": "52fe4326c3a36847f803dfdf", "cast_id": 31, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 20}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4326c3a36847f803df5b", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.9, "runtime": 124}, "1957": {"poster_path": "/la9F1MVu1nU4v61trp80dVcr5Ij.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51801187, "overview": "On the run from an abusive husband, a young mother begins to train herself to fight back.", "video": false, "id": 1957, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Enough", "tagline": "Self defense isn't murder.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0278435", "adult": false, "backdrop_path": "/cy5sGMWhOOz2ksfDgELhaPDnqgm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2002-05-24", "popularity": 0.208914482427276, "original_title": "Enough", "budget": 38000000, "cast": [{"name": "Jennifer Lopez", "character": "Slim Hiller", "id": 16866, "credit_id": "52fe4326c3a36847f803e0ab", "cast_id": 8, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Billy Campbell", "character": "Mitch Hiller", "id": 20215, "credit_id": "52fe4326c3a36847f803e0af", "cast_id": 9, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 1}, {"name": "Tessa Allen", "character": "Gracie Hiller", "id": 20216, "credit_id": "52fe4326c3a36847f803e0b3", "cast_id": 10, "profile_path": "/iKtfY6d1K1VJHeCG6exNKVtAtpr.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Ginny", "id": 3196, "credit_id": "52fe4326c3a36847f803e0b7", "cast_id": 11, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Dan Futterman", "character": "Joe", "id": 5346, "credit_id": "52fe4326c3a36847f803e0bb", "cast_id": 12, "profile_path": "/lohvETRKnXTTsvjYCFvmPSylqJH.jpg", "order": 4}, {"name": "Noah Wyle", "character": "Robbie", "id": 13526, "credit_id": "52fe4326c3a36847f803e0bf", "cast_id": 13, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 5}, {"name": "Fred Ward", "character": "Jupiter", "id": 10430, "credit_id": "52fe4326c3a36847f803e0c3", "cast_id": 14, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Jim Toller", "id": 8854, "credit_id": "52fe4326c3a36847f803e0c7", "cast_id": 15, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Janet Carroll", "character": "Mrs. Hiller", "id": 20217, "credit_id": "52fe4326c3a36847f803e0cb", "cast_id": 16, "profile_path": "/drofVPf21d323QGnnXC0lTS2Npu.jpg", "order": 8}], "directors": [{"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe4326c3a36847f803e083", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.2, "runtime": 115}, "10152": {"poster_path": "/eizaKEnF108gQq89f1XsAyVxjq6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This wacky prequel to the 1994 blockbuster goes back to the lame-brained Harry and Lloyd's days as classmates at a Rhode Island high school, where the unprincipled principal puts the pair in remedial courses as part of a scheme to fleece the school.", "video": false, "id": 10152, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dumb and Dumberer: When Harry Met Lloyd", "tagline": "The evolution of dumb...", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fdB86tl7SKIBWZzm0CbrYjOdE1K.jpg", "id": 96665, "name": "Dumb and Dumber Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329028", "adult": false, "backdrop_path": "/dzGocMNPdWMfo52LcofnkfwrMaj.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2003-06-13", "popularity": 0.897050328517493, "original_title": "Dumb and Dumberer: When Harry Met Lloyd", "budget": 0, "cast": [{"name": "Mimi Rogers", "character": "Mrs. Dunne", "id": 13920, "credit_id": "52fe43369251416c75007c75", "cast_id": 12, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 0}, {"name": "Eric Christian Olsen", "character": "Lloyd Christmas", "id": 29020, "credit_id": "52fe43369251416c75007c79", "cast_id": 13, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 1}, {"name": "Luis Guzm\u00e1n", "character": "Ray", "id": 40481, "credit_id": "52fe43369251416c75007c7d", "cast_id": 14, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 2}, {"name": "Rachel Nichols", "character": "Jessica", "id": 50347, "credit_id": "52fe43369251416c75007c81", "cast_id": 15, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 3}, {"name": "Eugene Levy", "character": "", "id": 26510, "credit_id": "533d362cc3a36878ed002dcd", "cast_id": 16, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 4}], "directors": [{"name": "Troy Miller", "department": "Directing", "job": "Director", "credit_id": "52fe43369251416c75007c35", "profile_path": null, "id": 58868}], "vote_average": 4.7, "runtime": 85}, "10153": {"poster_path": "/jrjzPjKnpJq99GPePKf64k7Fzqh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The OSSA discovers a spacecraft thought to be at least 300 years old at the bottom of the ocean. Immediately following the discovery, they decide to send a team down to the depths of the ocean to study the space craft.They are the best of best, smart and logical, and the perfect choice to learn more about the spacecraft.", "video": false, "id": 10153, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Sphere", "tagline": "A thousand feet beneath the sea, the blackest holes are in the mind...", "vote_count": 105, "homepage": "http://www.warnerbros.com/movies/home-entertainment/sphere/7bdffe73-2a0e-4e7a-98e7-cee4d723e0b3.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120184", "adult": false, "backdrop_path": "/41c9Posihpr1acKmY1zfVle8yET.jpg", "production_companies": [{"name": "Baltimore Pictures", "id": 11407}, {"name": "Warner Bros.", "id": 6194}, {"name": "Punch Productions", "id": 2154}, {"name": "Constant c Productions", "id": 23370}], "release_date": "1998-02-13", "popularity": 0.909301315874561, "original_title": "Sphere", "budget": 75000000, "cast": [{"name": "Dustin Hoffman", "character": "Dr. Norman Goodman", "id": 4483, "credit_id": "52fe43369251416c75007ce3", "cast_id": 11, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Dr. Elizabeth 'Beth' Halperin", "id": 4430, "credit_id": "52fe43369251416c75007ce7", "cast_id": 12, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Dr. Harry Adams", "id": 2231, "credit_id": "52fe43369251416c75007ceb", "cast_id": 13, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Peter Coyote", "character": "Captain Harold C. Barnes", "id": 9979, "credit_id": "52fe43369251416c75007cef", "cast_id": 14, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 3}, {"name": "Liev Schreiber", "character": "Dr. Ted Fielding", "id": 23626, "credit_id": "52fe43369251416c75007cf3", "cast_id": 15, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 4}, {"name": "Queen Latifah", "character": "Alice 'Teeny' Fletcher", "id": 15758, "credit_id": "52fe43369251416c75007cf7", "cast_id": 16, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 5}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe43369251416c75007ca9", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 5.7, "runtime": 134}, "1965": {"poster_path": "/3qVJPM6tYilp3x3ckSBb3l4NyzE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128038368, "overview": "Millionaire industrialist Steven Taylor is a man who has everything but what he craves most: the love and fidelity of his wife. A hugely successful player in the New York financial world, he considers her to be his most treasured acquisition. But she needs more than simply the role of dazzling accessory.", "video": false, "id": 1965, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Perfect Murder", "tagline": "A powerful husband. An unfaithful wife. A jealous lover. All of them have a motive. Each of them has a plan.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0120787", "adult": false, "backdrop_path": "/hiPls8A0ExpRscZS15KpxzpXmnE.jpg", "production_companies": [{"name": "Kopelson Entertainment", "id": 824}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1998-06-04", "popularity": 0.501707427590412, "original_title": "A Perfect Murder", "budget": 0, "cast": [{"name": "Michael Douglas", "character": "Steven Taylor", "id": 3392, "credit_id": "52fe4326c3a36847f803e39d", "cast_id": 4, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Emily Taylor", "id": 12052, "credit_id": "52fe4326c3a36847f803e3a1", "cast_id": 5, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "David Shaw", "id": 110, "credit_id": "52fe4326c3a36847f803e3a5", "cast_id": 6, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Michael P. Moran", "character": "Bobby Fain", "id": 1170, "credit_id": "52fe4326c3a36847f803e3a9", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Sarita Choudhury", "character": "Raquel Martinez", "id": 20275, "credit_id": "52fe4326c3a36847f803e3ad", "cast_id": 8, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 4}, {"name": "Constance Towers", "character": "Sandra Bradford", "id": 20276, "credit_id": "52fe4326c3a36847f803e3b1", "cast_id": 9, "profile_path": "/lcf2byO2E8vD7hcYLPtUjH49ktf.jpg", "order": 5}, {"name": "David Suchet", "character": "Mohamed Karaman", "id": 20277, "credit_id": "52fe4326c3a36847f803e3b5", "cast_id": 10, "profile_path": "/z0MuDGLfLLLKhwmbXCErxedHtQ9.jpg", "order": 6}, {"name": "Will Lyman", "character": "Jason Gates", "id": 163671, "credit_id": "54fdf81892514112c200028e", "cast_id": 19, "profile_path": "/xYU1FSeQhXLyg6VskqRBofFyoU8.jpg", "order": 7}, {"name": "Maeve McGuire", "character": "Ann Gates", "id": 1217963, "credit_id": "54fdf835c3a36878c90002a0", "cast_id": 20, "profile_path": null, "order": 8}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe4326c3a36847f803e38d", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.4, "runtime": 107}, "10158": {"poster_path": "/s3ShPeMAN3kn3xBZ0DJABIqtPH1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90753806, "overview": "Billy Hoyle (Woody Harrelson) and Sidney Deane (Wesley Snipes) are an unlikely pair of basketball hustlers. They team up to con their way across the courts of Los Angeles, playing a game that's fast dangerous - and funny.", "video": false, "id": 10158, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "White Men Can't Jump", "tagline": "It ain't easy being this good.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105812", "adult": false, "backdrop_path": "/etXWMus7PsHLsXxYY3tdK8XDJp4.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-03-26", "popularity": 0.972659881599964, "original_title": "White Men Can't Jump", "budget": 0, "cast": [{"name": "Wesley Snipes", "character": "Sidney Deane", "id": 10814, "credit_id": "52fe43389251416c7500801f", "cast_id": 8, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Woody Harrelson", "character": "Billy Hoyle", "id": 57755, "credit_id": "52fe43389251416c75008023", "cast_id": 9, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 1}, {"name": "Rosie Perez", "character": "Gloria Clement", "id": 4810, "credit_id": "52fe43389251416c75008027", "cast_id": 10, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 2}, {"name": "Tyra Ferrell", "character": "Rhonda Deane", "id": 9782, "credit_id": "52fe43389251416c7500802b", "cast_id": 11, "profile_path": "/ehrlTSktNfShujcY3SaZyJYg2On.jpg", "order": 3}], "directors": [{"name": "Ron Shelton", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c75007ff7", "profile_path": null, "id": 4037}], "vote_average": 6.3, "runtime": 115}, "10159": {"poster_path": "/jPkfNgTuVdj8hp2znt5MxIAz5W7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80916492, "overview": "When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.", "video": false, "id": 10159, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "The Rundown", "tagline": "Cut to the chase", "vote_count": 144, "homepage": "http://www.therundown.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327850", "adult": false, "backdrop_path": "/r8YcQqO88VDzdLeN4W7x4qq9xxk.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Universal Pictures", "id": 33}], "release_date": "2003-09-26", "popularity": 0.804662519164783, "original_title": "The Rundown", "budget": 85000000, "cast": [{"name": "Dwayne Johnson", "character": "Beck", "id": 18918, "credit_id": "52fe43389251416c75008093", "cast_id": 11, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Travis", "id": 57599, "credit_id": "52fe43389251416c75008097", "cast_id": 12, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Mariana", "id": 5916, "credit_id": "52fe43389251416c7500809b", "cast_id": 13, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Hatcher", "id": 4690, "credit_id": "52fe43389251416c7500809f", "cast_id": 14, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Ernie Reyes, Jr.", "character": "Manito", "id": 58210, "credit_id": "52fe43389251416c750080a3", "cast_id": 15, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 4}, {"name": "Stephen Bishop", "character": "Knappmiller", "id": 55205, "credit_id": "52fe43389251416c750080a7", "cast_id": 16, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 5}, {"name": "Ewen Bremner", "character": "Declan", "id": 1125, "credit_id": "52fe43389251416c750080b1", "cast_id": 18, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 6}, {"name": "Jon Gries", "character": "Harvey", "id": 9629, "credit_id": "52fe43389251416c750080b5", "cast_id": 19, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 7}, {"name": "William Lucking", "character": "Walker", "id": 131725, "credit_id": "533b3f809251413ba4000241", "cast_id": 20, "profile_path": "/pWDDkUPU83M11T95MrYYwWvB2BY.jpg", "order": 8}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c75008059", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 6.4, "runtime": 104}, "10160": {"poster_path": "/vnorsG2pKAVqIMYsDJbKoOr4CsX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22168359, "overview": "Alice, having survived the previous installment of the Nightmare series, finds the deadly dreams of Freddy Krueger starting once again. This time, the taunting murderer is striking through the sleeping mind of Alice's unborn child. His intention is to be \"born again\" into the real world. The only one who can stop Freddy is his dead mother, but can Alice free her spirit in time to save her own son?", "video": false, "id": 10160, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street 5: The Dream Child", "tagline": "Now Freddy\u2019s a daddy, he\u2019s killing for two.", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097981", "adult": false, "backdrop_path": "/qGaMw8SSkapz9ZBgpMQhUhDWNTU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1989-08-11", "popularity": 0.538345824503121, "original_title": "A Nightmare on Elm Street 5: The Dream Child", "budget": 8000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe43389251416c75008127", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Lisa Wilcox", "character": "Alice Johnson", "id": 63917, "credit_id": "52fe43389251416c7500812b", "cast_id": 2, "profile_path": "/hqKyRn2vl3zYmFPyS0J1Y4OpHQ9.jpg", "order": 1}, {"name": "Erika Anderson", "character": "Greta Gibson", "id": 42882, "credit_id": "52fe43389251416c7500812f", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Valorie Armstrong", "character": "Mrs. Jordan", "id": 64033, "credit_id": "52fe43389251416c75008133", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Michael Ashton", "character": "Gurney Orderly", "id": 64034, "credit_id": "52fe43389251416c75008137", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Kelly Jo Minter", "character": "Yvonne", "id": 63046, "credit_id": "52fe43389251416c7500817d", "cast_id": 17, "profile_path": "/miyC0t5uCSUT07Gtuli7wZCeLFG.jpg", "order": 5}, {"name": "Danny Hassel", "character": "Dan Jordan", "id": 104275, "credit_id": "52fe43389251416c75008181", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Nicholas Mele", "character": "Dennis Johnson", "id": 87112, "credit_id": "52fe43389251416c75008185", "cast_id": 19, "profile_path": "/wI1YLddYXotk9JZiFr2aj3ShjoJ.jpg", "order": 7}, {"name": "Joe Seely", "character": "Mark Gray", "id": 119475, "credit_id": "52fe43389251416c75008189", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Burr DeBenning", "character": "Mr. Jordan", "id": 19484, "credit_id": "52fe43389251416c7500818d", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Clarence Felder", "character": "Mr. Gray", "id": 72408, "credit_id": "52fe43389251416c75008191", "cast_id": 22, "profile_path": "/hbioULG0wwkHlXcjXy89eZIPt2J.jpg", "order": 10}, {"name": "Beatrice Boepple", "character": "Amanda Krueger", "id": 189664, "credit_id": "52fe43389251416c75008195", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Matt Borlenghi", "character": "Jock", "id": 84163, "credit_id": "52fe43389251416c75008199", "cast_id": 24, "profile_path": "/vmZFbUiP6BeRxaeycLkX4Zfed8V.jpg", "order": 12}, {"name": "Noble Craig", "character": "Merging Freddy", "id": 553750, "credit_id": "52fe43389251416c7500819d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "E.R. Davies", "character": "Delivery Doctor", "id": 75034, "credit_id": "52fe43389251416c750081a1", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Beth DePatie", "character": "Anne", "id": 72231, "credit_id": "52fe43389251416c750081a5", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Will Egan", "character": "Semi-Truck Driver", "id": 553752, "credit_id": "52fe43389251416c750081a9", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Stacey Elliott", "character": "Girl in Locker", "id": 553753, "credit_id": "52fe43389251416c750081ad", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Steven Grives", "character": "Dr. Moore", "id": 53591, "credit_id": "52fe43389251416c750081b1", "cast_id": 30, "profile_path": "/zXtQgnVEQ5HqzDLMVOjBKo6y8v5.jpg", "order": 18}, {"name": "Whit Hertford", "character": "Jacob", "id": 166298, "credit_id": "52fe43389251416c750081b5", "cast_id": 31, "profile_path": "/8jhUyJUXdXKh4RJPk2T9NMU5bWP.jpg", "order": 19}, {"name": "Jennifer Honneus", "character": "Asylum Girl", "id": 553754, "credit_id": "52fe43389251416c750081b9", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Jake Jacobs", "character": "Trendy Guest", "id": 193295, "credit_id": "52fe43389251416c750081bd", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Annie Lamaje", "character": "Elm Street Kid", "id": 553755, "credit_id": "52fe43389251416c750081c1", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Gerry Loew", "character": "Orderly #1", "id": 553756, "credit_id": "52fe43389251416c750081c5", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Kara Marie", "character": "Baby Jacob", "id": 553757, "credit_id": "52fe43389251416c750081c9", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Roxanne Mayweather", "character": "Delivery Nurse", "id": 197038, "credit_id": "52fe43389251416c750081cd", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Don Maxwell", "character": "Coach Ostrow", "id": 97955, "credit_id": "52fe43389251416c750081d1", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "John R. Murray", "character": "Customer", "id": 553758, "credit_id": "52fe43389251416c750081d5", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Marnette Patterson", "character": "Little Girl", "id": 71519, "credit_id": "52fe43389251416c750081d9", "cast_id": 40, "profile_path": "/tuVcwHuiWXF8KOqGD04y8BHuQuI.jpg", "order": 28}, {"name": "Cameron Perry", "character": "Guest", "id": 553759, "credit_id": "52fe43389251416c750081dd", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Marc Siegler", "character": "Thirty-Something", "id": 102338, "credit_id": "52fe43389251416c750081e1", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Michael Bailey Smith", "character": "Super Freddy", "id": 37008, "credit_id": "52fe43389251416c750081e5", "cast_id": 43, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 31}, {"name": "Pat Sturges", "character": "Racine Gibson", "id": 177966, "credit_id": "52fe43389251416c750081e9", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Cesar Anthony Torres", "character": "Cop", "id": 553760, "credit_id": "52fe43389251416c750081ed", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Peter Trencher", "character": "Trendy", "id": 156146, "credit_id": "52fe43389251416c750081f1", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Wally George", "character": "Himself", "id": 102934, "credit_id": "52fe43389251416c750081f5", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Ron Armstrong", "character": "Hot Seat Band Member", "id": 553761, "credit_id": "52fe43389251416c750081f9", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Ted Nugent", "character": "Hot Seat Band Member", "id": 170468, "credit_id": "52fe43389251416c750081fd", "cast_id": 49, "profile_path": "/dz23UpuAOmPTcszNOt3ZT7Yb72A.jpg", "order": 37}, {"name": "Rudy Sarzo", "character": "Hot Seat Band Member", "id": 167955, "credit_id": "52fe43399251416c75008201", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Jill Adler", "character": "Dinner Guest (uncredited)", "id": 553762, "credit_id": "52fe43399251416c75008209", "cast_id": 52, "profile_path": "/zzYzhbbtNLpLnGo1x5PU4w8Zd4Z.jpg", "order": 40}, {"name": "Victor A. Haddox", "character": "Asylum Inmate (uncredited)", "id": 553763, "credit_id": "52fe43399251416c7500820d", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "James Vallo", "character": "Paramedic (uncredited)", "id": 553764, "credit_id": "52fe43399251416c75008211", "cast_id": 54, "profile_path": "/tcHvFLIe8o8yQbuGzeKWKV533gn.jpg", "order": 42}, {"name": "Eric Singer", "character": "Hot Seat Band Member", "id": 1038546, "credit_id": "5334b503c3a3680a1e0025df", "cast_id": 55, "profile_path": "/sKXzPqpYRI4GsViyy5LRFOqmonr.jpg", "order": 43}], "directors": [{"name": "Stephen Hopkins", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c7500813d", "profile_path": "/zHwFIL63LbeSS83FMC8J6TAgDNL.jpg", "id": 2042}], "vote_average": 5.6, "runtime": 89}, "1969": {"poster_path": "/6WnSdouYhXDowg9NrKY2fSV5o1W.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10496317, "overview": "Set in the late 19th century. When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance\u2026and a few good heists.", "video": false, "id": 1969, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 37, "name": "Western"}], "title": "Bandidas", "tagline": "Being BAD never looked so GOOD!", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0416496", "adult": false, "backdrop_path": "/q0eS323TqNtxPqYpgtRa2X9G9xx.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "A.J.O.Z. Films", "id": 11473}, {"name": "Ultra Films", "id": 828}, {"name": "Canal+", "id": 5358}, {"name": "TPS Star", "id": 6586}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2006-01-18", "popularity": 0.255750139263501, "original_title": "Bandidas", "budget": 35000000, "cast": [{"name": "Pen\u00e9lope Cruz", "character": "Maria Alvarez", "id": 955, "credit_id": "52fe4327c3a36847f803e6eb", "cast_id": 4, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Sara Sandoval", "id": 3136, "credit_id": "52fe4327c3a36847f803e6ef", "cast_id": 5, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Dwight Yoakam", "character": "Tyler Jackson", "id": 20309, "credit_id": "52fe4327c3a36847f803e6f3", "cast_id": 6, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 2}, {"name": "Steve Zahn", "character": "Quentin", "id": 18324, "credit_id": "52fe4327c3a36847f803e6f7", "cast_id": 7, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 3}, {"name": "Denis Arndt", "character": "Ashe", "id": 10480, "credit_id": "52fe4327c3a36847f803e749", "cast_id": 21, "profile_path": "/yyEYxsqbXF69RgwbhckzxRvHehQ.jpg", "order": 4}, {"name": "Audra Blaser", "character": "Clarissa Ashe", "id": 207286, "credit_id": "52fe4327c3a36847f803e74d", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Sam Shepard", "character": "Bill Buck", "id": 9880, "credit_id": "52fe4327c3a36847f803e751", "cast_id": 23, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 6}, {"name": "Ismael 'East' Carlo", "character": "Don Diego", "id": 160375, "credit_id": "52fe4327c3a36847f803e755", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Gary Carlos Cervantes", "character": "Pedro", "id": 48136, "credit_id": "52fe4327c3a36847f803e779", "cast_id": 34, "profile_path": "/13kjmeYYdJzdeccnJEXo56KH7CO.jpg", "order": 8}, {"name": "Jos\u00e9 Mar\u00eda Negri", "character": "Padre Pablo", "id": 1120515, "credit_id": "52fe4327c3a36847f803e759", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Lenny Zundel", "character": "Bernardo", "id": 962981, "credit_id": "52fe4327c3a36847f803e75d", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "\u00c9dgar Vivar", "character": "Expl. Bank Manager", "id": 51906, "credit_id": "52fe4327c3a36847f803e761", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Ernesto G\u00f3mez Cruz", "character": "Brujo", "id": 7368, "credit_id": "52fe4327c3a36847f803e765", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Filiberto Estrella", "character": "Midget", "id": 1120516, "credit_id": "52fe4327c3a36847f803e769", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Yomo Tlazotlalli", "character": "Gordo", "id": 1120517, "credit_id": "52fe4327c3a36847f803e76d", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Humberto Elizondo", "character": "Governor", "id": 1095101, "credit_id": "52fe4327c3a36847f803e771", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Justo Mart\u00ednez", "character": "Cable Bank Manager", "id": 975424, "credit_id": "52fe4327c3a36847f803e775", "cast_id": 33, "profile_path": null, "order": 16}], "directors": [{"name": "Joachim R\u00f8nning", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e6e1", "profile_path": null, "id": 20307}, {"name": "Espen Sandberg", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e6e7", "profile_path": null, "id": 20308}], "vote_average": 5.7, "runtime": 93}, "1970": {"poster_path": "/nSiz1yAkbKAZUmPfDbcXewNnaAI.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 183474602, "overview": "Karen Davis is an American Nurse moves to Tokyo and encounter a supernatural spirit who is vengeful and often possesses its victims. A series of horrifying and mysterious deaths start to occur, with the spirit passing its curse onto each victim. Karen must now find away to break this spell, before she becomes its next victim.", "video": false, "id": 1970, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Grudge", "tagline": "It never forgives. It never forgets.", "vote_count": 140, "homepage": "", "belongs_to_collection": {"backdrop_path": "/u0fckWIveOOUM9BX0I5puGSR2Wi.jpg", "poster_path": "/dohOSIYDEK42stdfKo0pQfrve0h.jpg", "id": 1974, "name": "The Grudge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0391198", "adult": false, "backdrop_path": "/jsR45u3refVMf6dbvsAtIJ9W5A6.jpg", "production_companies": [{"name": "Colombia Pictures", "id": 4154}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Fellah Pictures", "id": 4710}], "release_date": "2004-10-22", "popularity": 0.805419117193508, "original_title": "The Grudge", "budget": 10000000, "cast": [{"name": "Sarah Michelle Gellar", "character": "Karen Davis", "id": 11863, "credit_id": "52fe4327c3a36847f803e7b1", "cast_id": 4, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 0}, {"name": "Jason Behr", "character": "Doug", "id": 20386, "credit_id": "52fe4327c3a36847f803e7b5", "cast_id": 5, "profile_path": "/9qJw8ah7kGj7WObzIq4KWIuEqHY.jpg", "order": 1}, {"name": "William Mapother", "character": "Matthew Williams", "id": 15338, "credit_id": "52fe4327c3a36847f803e7b9", "cast_id": 6, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 2}, {"name": "Clea DuVall", "character": "Jennifer Williams", "id": 20387, "credit_id": "52fe4327c3a36847f803e7bd", "cast_id": 7, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 3}, {"name": "KaDee Strickland", "character": "Susan Williams", "id": 20388, "credit_id": "52fe4327c3a36847f803e7c1", "cast_id": 8, "profile_path": "/9E0EFvaAY0vVubogVfFtXH1LAXe.jpg", "order": 4}, {"name": "Grace Zabriskie", "character": "Emma Williams", "id": 6465, "credit_id": "52fe4327c3a36847f803e7c5", "cast_id": 9, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 5}, {"name": "Bill Pullman", "character": "Peter Kirk", "id": 8984, "credit_id": "52fe4327c3a36847f803e7c9", "cast_id": 10, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 6}, {"name": "Rosa Blasi", "character": "Maria Kirk", "id": 20389, "credit_id": "52fe4327c3a36847f803e7cd", "cast_id": 11, "profile_path": "/oM0gtFmaaMSq4jLE9qkq7y4SAFv.jpg", "order": 7}, {"name": "Ted Raimi", "character": "Alex", "id": 11769, "credit_id": "52fe4327c3a36847f803e7d1", "cast_id": 12, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 8}, {"name": "Takako Fuji", "character": "Kayako Saeki", "id": 20329, "credit_id": "52fe4327c3a36847f803e7a7", "cast_id": 1, "profile_path": "/nLSke54TL1eIF9LfdNsJzfwmOWv.jpg", "order": 9}, {"name": "Ryo Ishibashi", "character": "Nakagawa", "id": 4994, "credit_id": "52fe4327c3a36847f803e7ed", "cast_id": 18, "profile_path": "/aPyICNQIlt0kUlIbXSQ21bK2mo2.jpg", "order": 10}, {"name": "Yoko Maki", "character": "Yoko", "id": 592147, "credit_id": "52fe4327c3a36847f803e7f1", "cast_id": 19, "profile_path": "/i7ftZi8zm8mZcydTW0qU5fMGTJQ.jpg", "order": 11}, {"name": "Yuya Ozeki", "character": "Toshio", "id": 552504, "credit_id": "52fe4327c3a36847f803e7f5", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Takashi Matsuyama", "character": "Takeo", "id": 216330, "credit_id": "52fe4327c3a36847f803e7f9", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Hiroshi Matsunaga", "character": "Igarashi", "id": 107110, "credit_id": "52fe4327c3a36847f803e7fd", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Takashi Shimizu", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e7ad", "profile_path": "/zY1UnpOyyzreAX2cj1qRcqMwIH3.jpg", "id": 20310}], "vote_average": 5.8, "runtime": 92}, "1975": {"poster_path": "/lPN7FyCuPDHwoupcuPT72cRE8lY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39143839, "overview": "In Tokyo, a young woman (Tamblyn) is exposed to the same mysterious curse that afflicted her sister (Gellar). The supernatural force, which fills a person with rage before spreading to its next victim, brings together a group of previously unrelated people who attempt to unlock its secret to save their lives.", "video": false, "id": 1975, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Grudge 2", "tagline": "What Was Once Trapped, Will Now Be Unleashed", "vote_count": 65, "homepage": "http://www.sonypictures.com/homevideo/thegrudge2/", "belongs_to_collection": {"backdrop_path": "/u0fckWIveOOUM9BX0I5puGSR2Wi.jpg", "poster_path": "/dohOSIYDEK42stdfKo0pQfrve0h.jpg", "id": 1974, "name": "The Grudge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433386", "adult": false, "backdrop_path": "/f5XdBzglTZEWV6aeGhTcGk1RP7B.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2006-10-13", "popularity": 0.38864396014291, "original_title": "The Grudge 2", "budget": 20000000, "cast": [{"name": "Sarah Michelle Gellar", "character": "Karen Davis", "id": 11863, "credit_id": "52fe4327c3a36847f803e83b", "cast_id": 1, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 0}, {"name": "Amber Tamblyn", "character": "Aubrey Davis", "id": 20354, "credit_id": "52fe4327c3a36847f803e83f", "cast_id": 2, "profile_path": "/4nwsbtFzoxzN2YF2HOW4P4vdit2.jpg", "order": 1}, {"name": "Edison Chen", "character": "Eason", "id": 20372, "credit_id": "52fe4327c3a36847f803e855", "cast_id": 6, "profile_path": "/MjNMCwLuknzhgKr2H99s6iaWpp.jpg", "order": 2}, {"name": "Arielle Kebbel", "character": "Allison", "id": 20373, "credit_id": "52fe4327c3a36847f803e859", "cast_id": 7, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 3}, {"name": "Jennifer Beals", "character": "Trish", "id": 3130, "credit_id": "52fe4327c3a36847f803e85d", "cast_id": 8, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 4}, {"name": "Teresa Palmer", "character": "Vanessa", "id": 20374, "credit_id": "52fe4327c3a36847f803e861", "cast_id": 9, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 5}, {"name": "Misako Uno", "character": "Miyuki", "id": 20375, "credit_id": "52fe4327c3a36847f803e865", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Sarah Roemer", "character": "Lacey", "id": 20376, "credit_id": "52fe4327c3a36847f803e869", "cast_id": 11, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 7}, {"name": "Matthew Knight", "character": "Jake", "id": 20377, "credit_id": "52fe4327c3a36847f803e86d", "cast_id": 12, "profile_path": "/704cnOP2UV3oTCRET3yex7WpNhJ.jpg", "order": 8}, {"name": "Takako Fuji", "character": "Kayako Saeki", "id": 20329, "credit_id": "52fe4327c3a36847f803e871", "cast_id": 13, "profile_path": "/nLSke54TL1eIF9LfdNsJzfwmOWv.jpg", "order": 9}, {"name": "Ohga Tanaka", "character": "Toshio Saeki", "id": 20378, "credit_id": "52fe4327c3a36847f803e875", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Joanna Cassidy", "character": "Mrs. Davis", "id": 593, "credit_id": "52fe4327c3a36847f803e879", "cast_id": 15, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 11}, {"name": "Christopher Cousins", "character": "Bill", "id": 20379, "credit_id": "52fe4327c3a36847f803e87d", "cast_id": 16, "profile_path": "/1HGQISEy6FBSse2QuTKj2yfVFrM.jpg", "order": 12}, {"name": "Paul Jarrett", "character": "John Fleming", "id": 20380, "credit_id": "52fe4327c3a36847f803e881", "cast_id": 17, "profile_path": "/o3N4gV1baZ6fzh8aaCPB6wmFVyO.jpg", "order": 13}, {"name": "Jenna Dewan", "character": "Sally", "id": 20381, "credit_id": "52fe4327c3a36847f803e885", "cast_id": 18, "profile_path": "/j8BeJ5VL3jp7JWxgYlZPUscP6FC.jpg", "order": 14}], "directors": [{"name": "Takashi Shimizu", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e845", "profile_path": "/zY1UnpOyyzreAX2cj1qRcqMwIH3.jpg", "id": 20310}], "vote_average": 5.6, "runtime": 102}, "18360": {"poster_path": "/qbU6AxmO69bBwu6Tw8HtcRoltAA.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 413106170, "overview": "Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.", "video": false, "id": 18360, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Night at the Museum: Battle of the Smithsonian", "tagline": "When the lights go off the battle is on.", "vote_count": 478, "homepage": "http://www.nightatthemuseummovie.com", "belongs_to_collection": {"backdrop_path": "/fOmqiIXfJmeANciOTCN6WkKbwK.jpg", "poster_path": "/q2nwE0Qi8U6tsU5HDmiWS2D3dSJ.jpg", "id": 85943, "name": "Night at the Museum Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1078912", "adult": false, "backdrop_path": "/bY2pwWJPsDNntzWgV2b7BXRyWwo.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "1492 Pictures", "id": 436}, {"name": "Dune Entertainment", "id": 444}, {"name": "Moving Picture Company (MPC)", "id": 20478}, {"name": "Museum Canada Productions", "id": 10224}], "release_date": "2009-05-21", "popularity": 2.24969830618224, "original_title": "Night at the Museum: Battle of the Smithsonian", "budget": 150000000, "cast": [{"name": "Ben Stiller", "character": "Larry Daley", "id": 7399, "credit_id": "52fe47759251416c7509a1b9", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Amy Adams", "character": "Amelia Earhart", "id": 9273, "credit_id": "52fe47759251416c7509a1bd", "cast_id": 2, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Jedediah Smith", "id": 887, "credit_id": "52fe47759251416c7509a1c1", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Kahmunrah / The Thinker / Abe Lincoln", "id": 5587, "credit_id": "52fe47759251416c7509a1c5", "cast_id": 4, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Robin Williams", "character": "Theodore Roosevelt", "id": 2157, "credit_id": "52fe47759251416c7509a1c9", "cast_id": 5, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 4}, {"name": "Christopher Guest", "character": "Ivan the Terrible", "id": 13524, "credit_id": "52fe47759251416c7509a1cd", "cast_id": 6, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Octavius", "id": 4581, "credit_id": "52fe47759251416c7509a1d1", "cast_id": 7, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Ricky Gervais", "character": "Dr. McPhee", "id": 17835, "credit_id": "52fe47759251416c7509a1d5", "cast_id": 8, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 7}, {"name": "Bill Hader", "character": "General George Armstrong Custer", "id": 19278, "credit_id": "52fe47759251416c7509a1d9", "cast_id": 9, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 8}, {"name": "Jon Bernthal", "character": "Al Capone", "id": 19498, "credit_id": "52fe47759251416c7509a1dd", "cast_id": 10, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 9}, {"name": "Kai James", "character": "Teenage Boy #3", "id": 1030313, "credit_id": "52fe47759251416c7509a205", "cast_id": 17, "profile_path": "/jn9w2NNjV4aB9xWXkvPf4e0dwn1.jpg", "order": 10}, {"name": "Mizuo Peck", "character": "Sacajawea", "id": 17841, "credit_id": "52fe47759251416c7509a209", "cast_id": 18, "profile_path": "/ohnloj1aKehzgbupxszmgdvdHS3.jpg", "order": 11}, {"name": "Rami Malek", "character": "Ahkmenrah", "id": 17838, "credit_id": "52fe47759251416c7509a20d", "cast_id": 19, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 12}, {"name": "Crystal the Monkey", "character": "Dexter", "id": 1428580, "credit_id": "550a86d6c3a3681db2000be4", "cast_id": 20, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 13}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe47759251416c7509a1e3", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.9, "runtime": 105}, "83899": {"poster_path": "/qhVj0F09RFtQdBrBMPhrdzivRcI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14347000, "overview": "When the Davison family comes under attack during their wedding anniversary getaway, the gang of mysterious killers soon learns that one of their victims harbors a secret talent for fighting back.", "video": false, "id": 83899, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "You're Next", "tagline": "Did You Remember To Lock Your Door?", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1853739", "adult": false, "backdrop_path": "/zzfGL8FggF2owX9ZQfhqvaANFlY.jpg", "production_companies": [{"name": "HanWay Films", "id": 2395}, {"name": "Snoot Entertainment", "id": 15159}], "release_date": "2011-09-10", "popularity": 0.954377250486095, "original_title": "You're Next", "budget": 0, "cast": [{"name": "Sharni Vinson", "character": "Erin", "id": 138010, "credit_id": "52fe48c99251416c910983c3", "cast_id": 3, "profile_path": "/u7TgXhZhSZwtRMuuPOIjkiAqxik.jpg", "order": 0}, {"name": "Nicholas Tucci", "character": "Felix", "id": 149966, "credit_id": "52fe48c99251416c91098415", "cast_id": 22, "profile_path": null, "order": 1}, {"name": "Wendy Glenn", "character": "Zee", "id": 168529, "credit_id": "52fe48c99251416c910983d3", "cast_id": 8, "profile_path": "/lwBPfXM73LuahEhoDH9Wx7sbdKe.jpg", "order": 2}, {"name": "AJ Bowen", "character": "Crispian", "id": 74133, "credit_id": "52fe48c99251416c910983db", "cast_id": 10, "profile_path": "/zsWWKKt0p69mRRgjXGysMpTSQQn.jpg", "order": 3}, {"name": "Joe Swanberg", "character": "Drake", "id": 40863, "credit_id": "52fe48c99251416c910983d7", "cast_id": 9, "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "order": 4}, {"name": "Margaret Laney", "character": "Kelly", "id": 558055, "credit_id": "544b47490e0a2674860060bb", "cast_id": 28, "profile_path": null, "order": 5}, {"name": "Amy Seimetz", "character": "Aimee", "id": 139150, "credit_id": "52fe48c99251416c910983cf", "cast_id": 7, "profile_path": "/zMJK3v7GvyYAgVVkStSFWTEHHHl.jpg", "order": 6}, {"name": "Ti West", "character": "Tariq", "id": 101542, "credit_id": "52fe48c99251416c910983c7", "cast_id": 4, "profile_path": "/vRxN4eGT6X5MMdjpExZ0YvjDeg9.jpg", "order": 7}, {"name": "Rob Moran", "character": "Paul Davison", "id": 162924, "credit_id": "52fe48c99251416c91098411", "cast_id": 21, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 8}, {"name": "Barbara Crampton", "character": "Aubrey", "id": 27995, "credit_id": "52fe48c99251416c910983cb", "cast_id": 6, "profile_path": "/5bQhuSrBSMyXP70SNOFim1Pf8Ta.jpg", "order": 9}, {"name": "L.C. Holt", "character": "Lamb Mask", "id": 1140572, "credit_id": "544b470bc3a36802db000f75", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Simon Barrett", "character": "Tiger Mask", "id": 83858, "credit_id": "52fe48c99251416c9109841f", "cast_id": 24, "profile_path": "/ucJy0Ia79AX6iLZr8A9NaBnVYaw.jpg", "order": 11}, {"name": "Lane Hughes", "character": "Fox Mask", "id": 98632, "credit_id": "52fe48c99251416c9109840d", "cast_id": 20, "profile_path": "/hKFtJDPxt7KAmuxZlsIU1XasE1f.jpg", "order": 12}, {"name": "Kate Lyn Sheil", "character": "Talia", "id": 582722, "credit_id": "52fe48c99251416c91098409", "cast_id": 19, "profile_path": "/mQYnmIY2gGOOKaCxoxKzUue1E9u.jpg", "order": 13}, {"name": "Larry Fessenden", "character": "Erik Harson", "id": 31268, "credit_id": "544b4651c3a36850a7000428", "cast_id": 26, "profile_path": "/ry1FD2hv1mop8QzPCVHzpDeCX1z.jpg", "order": 14}], "directors": [{"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe48c99251416c910983bf", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}], "vote_average": 6.6, "runtime": 95}, "1985": {"poster_path": "/r7QOXMcuIqZUeIVXVc4BCZrd9ni.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82466670, "overview": "Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.", "video": false, "id": 1985, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Constant Gardener", "tagline": "Love. At any cost.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0387131", "adult": false, "backdrop_path": "/cQRFjaXsEfCTtd2h18xZv49REqP.jpg", "production_companies": [{"name": "Scion Films", "id": 7419}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "UK Film Council", "id": 2452}, {"name": "Focus Features", "id": 10146}, {"name": "Blue Sky Films", "id": 33680}, {"name": "Potboiler Productions", "id": 36615}], "release_date": "2005-08-31", "popularity": 0.558857156163366, "original_title": "The Constant Gardener", "budget": 25000000, "cast": [{"name": "Ralph Fiennes", "character": "Justin Quayle", "id": 5469, "credit_id": "52fe4328c3a36847f803ec67", "cast_id": 11, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Tessa Quayle", "id": 3293, "credit_id": "52fe4328c3a36847f803ec6b", "cast_id": 12, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Danny Huston", "character": "Sandy Woodrow", "id": 6413, "credit_id": "52fe4328c3a36847f803ec6f", "cast_id": 13, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Sir Bernard Pellegrin", "id": 2440, "credit_id": "52fe4328c3a36847f803ec73", "cast_id": 14, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Donald Sumpter", "character": "Tim Donohue", "id": 20425, "credit_id": "52fe4328c3a36847f803ec77", "cast_id": 15, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 4}, {"name": "Pete Postlethwaite", "character": "Dr. Lorbeer aka Dr. Brandt", "id": 4935, "credit_id": "52fe4328c3a36847f803ec7b", "cast_id": 16, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 5}, {"name": "Richard McCabe", "character": "Arthur \"Ham\" Hammond", "id": 7025, "credit_id": "52fe4328c3a36847f803ec7f", "cast_id": 17, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 6}, {"name": "Hubert Kound\u00e9", "character": "Dr. Arnold Bluhm", "id": 5418, "credit_id": "52fe4328c3a36847f803eccf", "cast_id": 33, "profile_path": "/rVgtZ1d6bbbaMFcGVujZEznqQNo.jpg", "order": 7}, {"name": "Daniele Harford", "character": "Miriam", "id": 20426, "credit_id": "52fe4328c3a36847f803ec83", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Bernard Otieno Oduor", "character": "Jomo", "id": 20427, "credit_id": "52fe4328c3a36847f803ec87", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Damaris Itenyo Agweyu", "character": "Jomo's Wife", "id": 20428, "credit_id": "52fe4328c3a36847f803ec8b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Keith Pearson", "character": "Porter Coleridge", "id": 20429, "credit_id": "52fe4328c3a36847f803ec8f", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "John Sibi-Okumu", "character": "Dr. Joshua Ngaba", "id": 986513, "credit_id": "52fe4328c3a36847f803ecd3", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Archie Panjabi", "character": "Ghita Pearson", "id": 128645, "credit_id": "52fe4328c3a36847f803ecd7", "cast_id": 35, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 13}, {"name": "Gerard McSorley", "character": "Sir Kenneth Curtiss", "id": 43131, "credit_id": "52fe4328c3a36847f803ecdb", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Juliet Aubrey", "character": "Gloria Woodrow", "id": 18066, "credit_id": "52fe4328c3a36847f803ecdf", "cast_id": 37, "profile_path": "/fnWHSvoWnKURqU3h2PwJUf3IQHi.jpg", "order": 15}, {"name": "Jacqueline Maribe", "character": "Wanza Kiluhu", "id": 1120086, "credit_id": "52fe4328c3a36847f803ece3", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Donald Apiyo", "character": "Kioko", "id": 1120087, "credit_id": "52fe4328c3a36847f803ece7", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Anneke Kim Sarnau", "character": "Birgit", "id": 19911, "credit_id": "53b96cdd0e0a2676c7009edd", "cast_id": 61, "profile_path": "/iIZyqFDNdTHJRGMr6KQEnXEPMqa.jpg", "order": 18}], "directors": [{"name": "Fernando Meirelles", "department": "Directing", "job": "Director", "credit_id": "52fe4328c3a36847f803ec2d", "profile_path": "/j77Z3f2m0e211ocFhPJu5ZiO12R.jpg", "id": 8557}], "vote_average": 6.6, "runtime": 129}, "331": {"poster_path": "/26L7XODsNlxX3VwkfuUnYOslbRF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368780809, "overview": "In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.", "video": false, "id": 331, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Jurassic Park III", "tagline": "This time, it's not just a walk in the park!", "vote_count": 805, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pJjIH9QN0OkHFV9eue6XfRVnPkr.jpg", "poster_path": "/aQR4VLVxfrTZedr5fml385PFRzI.jpg", "id": 328, "name": "Jurassic Park Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0163025", "adult": false, "backdrop_path": "/iqE0xCFCV8MX2xeYh1Tu7QTRE74.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2001-07-15", "popularity": 3.42184015915985, "original_title": "Jurassic Park III", "budget": 93000000, "cast": [{"name": "Sam Neill", "character": "Dr. Alan Grant", "id": 4783, "credit_id": "52fe4238c3a36847f800d44f", "cast_id": 1, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 0}, {"name": "William H. Macy", "character": "Paul Kirby", "id": 3905, "credit_id": "52fe4238c3a36847f800d453", "cast_id": 2, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 1}, {"name": "T\u00e9a Leoni", "character": "Amanda Kirby", "id": 4939, "credit_id": "52fe4238c3a36847f800d457", "cast_id": 3, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 2}, {"name": "Trevor Morgan", "character": "Erik Kirby", "id": 4940, "credit_id": "52fe4238c3a36847f800d45b", "cast_id": 4, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 3}, {"name": "Alessandro Nivola", "character": "Billy Brennan", "id": 4941, "credit_id": "52fe4238c3a36847f800d45f", "cast_id": 5, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 4}, {"name": "Michael Jeter", "character": "Mr. Udesky", "id": 2169, "credit_id": "52fe4238c3a36847f800d463", "cast_id": 6, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 5}, {"name": "John Diehl", "character": "Cooper", "id": 4942, "credit_id": "52fe4238c3a36847f800d467", "cast_id": 7, "profile_path": "/hDUvgqpIv753skoeRGjVw6gYp7A.jpg", "order": 6}, {"name": "Bruce A. Young", "character": "M.B. Nash", "id": 4943, "credit_id": "52fe4238c3a36847f800d46b", "cast_id": 8, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 7}, {"name": "Laura Dern", "character": "Dr. Ellie Sattler", "id": 4784, "credit_id": "52fe4238c3a36847f800d46f", "cast_id": 9, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 8}, {"name": "Taylor Nichols", "character": "Mark Degler", "id": 4944, "credit_id": "52fe4238c3a36847f800d473", "cast_id": 10, "profile_path": "/yls98pv22GPdHpUF8U4uZJydyef.jpg", "order": 9}, {"name": "Mark Harelik", "character": "Ben Hildebrand", "id": 88949, "credit_id": "52fe4238c3a36847f800d4ad", "cast_id": 24, "profile_path": "/iiWjqkiQc9StJjC0KTSjg5AZFSa.jpg", "order": 10}, {"name": "Julio Oscar Mechoso", "character": "Enrique Cardoso", "id": 17413, "credit_id": "52fe4238c3a36847f800d4b1", "cast_id": 25, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 11}, {"name": "Blake Michael Bryan", "character": "Charlie", "id": 1076559, "credit_id": "52fe4238c3a36847f800d4b5", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Sarah Danielle Madison", "character": "Cheryl Logan", "id": 1223986, "credit_id": "52fe4238c3a36847f800d4d5", "cast_id": 33, "profile_path": "/jiQvZnh1ydxa3tSBSN194b6FxFa.jpg", "order": 13}, {"name": "Linda Park", "character": "Hannah", "id": 105646, "credit_id": "52fe4238c3a36847f800d4b9", "cast_id": 28, "profile_path": "/9UhEiVqCElSXs24hJxpODI8WOTP.jpg", "order": 14}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d479", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 5.7, "runtime": 92}, "1989": {"poster_path": "/wfgeoQOoudvPesDax3S5FL6ePpt.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 21786738, "overview": "Elizabeth (Jones) has just been through a particularly nasty breakup, and now she's ready to leave her friends and memories behind as she chases her dreams across the country. In order to support herself on her journey, Elizabeth picks up a series of waitress jobs along the way. As Elizabeth crosses paths with a series of lost souls.", "video": false, "id": 1989, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "My Blueberry Nights", "tagline": "How do you say goodbye to someone you can't imagine living without?", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765120", "adult": false, "backdrop_path": "/q9GJF2ovNcvRmTibmbmCmfM5OZm.jpg", "production_companies": [{"name": "Lou Yi Inc.", "id": 839}], "release_date": "2007-05-16", "popularity": 0.736691583424206, "original_title": "My Blueberry Nights", "budget": 10000000, "cast": [{"name": "Norah Jones", "character": "Elizabeth", "id": 20472, "credit_id": "52fe4329c3a36847f803ef01", "cast_id": 3, "profile_path": "/2EcSIKQe3BsHY4zJkPKdvA8QpRH.jpg", "order": 0}, {"name": "Jude Law", "character": "Jeremy", "id": 9642, "credit_id": "52fe4329c3a36847f803ef05", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "David Strathairn", "character": "Arnie", "id": 11064, "credit_id": "52fe4329c3a36847f803ef3f", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Rachel Weisz", "character": "Sue Lynne", "id": 3293, "credit_id": "52fe4329c3a36847f803ef43", "cast_id": 15, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 3}, {"name": "Cat Power", "character": "Katya", "id": 53865, "credit_id": "52fe4329c3a36847f803ef6b", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Natalie Portman", "character": "Leslie", "id": 524, "credit_id": "52fe4329c3a36847f803ef6f", "cast_id": 23, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 5}, {"name": "Frankie Faison", "character": "Travis", "id": 13936, "credit_id": "52fe4329c3a36847f803ef73", "cast_id": 24, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 6}], "directors": [{"name": "Wong Kar-Wai", "department": "Directing", "job": "Director", "credit_id": "52fe4329c3a36847f803eef7", "profile_path": "/rGk5pKmYcWB3jVPCfZcTZxDrAUr.jpg", "id": 12453}], "vote_average": 6.3, "runtime": 111}, "1991": {"poster_path": "/nyQBcpxqS4im2akQlWG9Y1oeM2V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25037897, "overview": "Austin's hottest DJ, Jungle Julia, sets out into the night to unwind with her two friends Shanna and Arlene. Covertly tracking their moves is Stuntman Mike, a scarred rebel leering from behind the wheel of his muscle car, revving just feet away.", "video": false, "id": 1991, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Death Proof", "tagline": "A crash course in revenge", "vote_count": 324, "homepage": "http://www.deathproof.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1028528", "adult": false, "backdrop_path": "/6Rss31Ui3pvViTObhyuNRTwYsOt.jpg", "production_companies": [{"name": "Troublemaker Studios", "id": 10807}, {"name": "The Weinstein Company", "id": 308}, {"name": "Dimension Films", "id": 7405}, {"name": "Rodriguez International Pictures", "id": 45194}], "release_date": "2007-06-20", "popularity": 0.638657125121035, "original_title": "Death Proof", "budget": 25000000, "cast": [{"name": "Kurt Russell", "character": "Stuntman Mike", "id": 6856, "credit_id": "52fe4329c3a36847f803f0d3", "cast_id": 13, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Zo\u00eb Bell", "character": "Zoe", "id": 20494, "credit_id": "52fe4329c3a36847f803f0f3", "cast_id": 21, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Abernathy", "id": 5916, "credit_id": "52fe4329c3a36847f803f0df", "cast_id": 16, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Vanessa Ferlito", "character": "Arlene", "id": 20491, "credit_id": "52fe4329c3a36847f803f0d7", "cast_id": 14, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 3}, {"name": "Sydney Tamiia Poitier", "character": "Jungle Julia", "id": 20493, "credit_id": "52fe4329c3a36847f803f0e7", "cast_id": 18, "profile_path": "/gguogZGM4FPtGyKAxq6LQDP6Tse.jpg", "order": 4}, {"name": "Tracie Thoms", "character": "Kim", "id": 10580, "credit_id": "52fe4329c3a36847f803f0eb", "cast_id": 19, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 5}, {"name": "Rose McGowan", "character": "Pam", "id": 16850, "credit_id": "52fe4329c3a36847f803f0e3", "cast_id": 17, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 6}, {"name": "Jordan Ladd", "character": "Shanna", "id": 20492, "credit_id": "52fe4329c3a36847f803f0db", "cast_id": 15, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 7}, {"name": "Mary Elizabeth Winstead", "character": "Lee", "id": 17628, "credit_id": "52fe4329c3a36847f803f0ef", "cast_id": 20, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 8}, {"name": "Quentin Tarantino", "character": "Warren", "id": 138, "credit_id": "52fe4329c3a36847f803f111", "cast_id": 30, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 9}, {"name": "Eli Roth", "character": "Dov", "id": 16847, "credit_id": "52fe4329c3a36847f803f0fd", "cast_id": 25, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 10}, {"name": "Omar Doom", "character": "Nate", "id": 23286, "credit_id": "52fe4329c3a36847f803f109", "cast_id": 28, "profile_path": "/gLWD2wYyXpD8d7oZikqGIgNSEZu.jpg", "order": 11}, {"name": "Michael Parks", "character": "Earl McGraw", "id": 2536, "credit_id": "52fe4329c3a36847f803f101", "cast_id": 26, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 12}, {"name": "Marley Shelton", "character": "Dakota McGraw", "id": 6407, "credit_id": "52fe4329c3a36847f803f105", "cast_id": 27, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 13}, {"name": "Helen Kim", "character": "Peg", "id": 1052339, "credit_id": "52fe4329c3a36847f803f11b", "cast_id": 32, "profile_path": "/1FB3lGe4twIY7bwvipKsI59ruPM.jpg", "order": 14}, {"name": "Russ Meyer", "character": "Foto", "id": 4590, "credit_id": "52fe4329c3a36847f803f10d", "cast_id": 29, "profile_path": "/4w6izR5bsjPNTQufl69K7qodcIb.jpg", "order": 15}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4329c3a36847f803f08d", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 6.7, "runtime": 113}, "1992": {"poster_path": "/7Yjzttt0VfPphSsUg8vFUO9WaEt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two doctors find their graveyard shift inundated with townspeople ravaged by sores. Among the wounded is Cherry, a dancer whose leg was ripped from her body. As the invalids quickly become enraged aggressors, Cherry and her ex-boyfriend Wray lead a team of accidental warriors into the night.", "video": false, "id": 1992, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Planet Terror", "tagline": "Humanity's last hope... Rests on a high power machine gun.", "vote_count": 257, "homepage": "http://www.planetterror.senator.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1077258", "adult": false, "backdrop_path": "/a2zIKDg5QGFc2vzdaPXT7uZKipe.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2007-04-06", "popularity": 0.623518761879438, "original_title": "Planet Terror", "budget": 0, "cast": [{"name": "Rose McGowan", "character": "Cherry Darling", "id": 16850, "credit_id": "52fe4329c3a36847f803f15b", "cast_id": 1, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 0}, {"name": "Naveen Andrews", "character": "Abby", "id": 5471, "credit_id": "52fe4329c3a36847f803f15f", "cast_id": 2, "profile_path": "/8Y6GvOC52mnLyiAg8Oz0IIuuW4m.jpg", "order": 1}, {"name": "Michael Biehn", "character": "Sheriff Hague", "id": 2712, "credit_id": "52fe4329c3a36847f803f163", "cast_id": 3, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 2}, {"name": "Jeff Fahey", "character": "J.T.", "id": 20495, "credit_id": "52fe4329c3a36847f803f167", "cast_id": 4, "profile_path": "/6l44xDPdJE4dQAEDN9eShnJOSo8.jpg", "order": 3}, {"name": "Josh Brolin", "character": "Dr. William Block", "id": 16851, "credit_id": "52fe4329c3a36847f803f16b", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 4}, {"name": "Marley Shelton", "character": "Dr. Dakota Block", "id": 6407, "credit_id": "52fe4329c3a36847f803f16f", "cast_id": 6, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 5}, {"name": "Jason Douglas", "character": "Lewis", "id": 20496, "credit_id": "52fe4329c3a36847f803f173", "cast_id": 7, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 6}, {"name": "Fergie", "character": "Tammy", "id": 20497, "credit_id": "52fe4329c3a36847f803f177", "cast_id": 8, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 7}, {"name": "Carlos Gallardo", "character": "Deputy Carlos", "id": 20498, "credit_id": "52fe4329c3a36847f803f17b", "cast_id": 9, "profile_path": "/4ZT5vkGvOdmC8dLHciGN8emkkpj.jpg", "order": 8}, {"name": "Julio Oscar Mechoso", "character": "Romey", "id": 17413, "credit_id": "52fe4329c3a36847f803f17f", "cast_id": 10, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 9}, {"name": "Michael Parks", "character": "Earl McGraw", "id": 2536, "credit_id": "52fe4329c3a36847f803f183", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 10}, {"name": "Freddy Rodr\u00edguez", "character": "El Wray", "id": 6862, "credit_id": "52fe4329c3a36847f803f187", "cast_id": 12, "profile_path": "/iP6RXaUNTj953RoL8jK3iTV2441.jpg", "order": 11}, {"name": "Rebel Rodriguez", "character": "Tony Block", "id": 20499, "credit_id": "52fe4329c3a36847f803f18b", "cast_id": 13, "profile_path": "/nPYABQhepInnQH5ujXLQgDRpg9r.jpg", "order": 12}, {"name": "Quentin Tarantino", "character": "The Rapist", "id": 138, "credit_id": "52fe4329c3a36847f803f18f", "cast_id": 14, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 13}, {"name": "Bruce Willis", "character": "Lieutenant Muldoon", "id": 62, "credit_id": "52fe4329c3a36847f803f193", "cast_id": 15, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 14}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4329c3a36847f803f199", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.3, "runtime": 105}, "10185": {"poster_path": "/be9padYpkmKYj6xsc9CvO6C1LRO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The photographer Leon lives with his girlfriend and waitress Maya waiting for a chance to get in the photo business. When Maya contacts their friend Jurgis, he schedules a meeting for Leon with the successful owner of arts gallery Susan Hoff; she analyzes Leon's work and asks him to improve the quality of his photos. During the night, the upset Leon decides to wander on the streets taking pictures with his camera, and he follows three punks down to the subway station; when the gang attacks a young woman, Leon defends her and the guys move on. On the next morning, Leon discovers that the woman is missing. He goes to the police station, but Detective Lynn Hadley does not give much attention to him and discredits his statement. Leon becomes obsessed to find what happened with the stranger and he watches the subway station. When he sees the elegant butcher Mahogany in the train, Leon believes he might be a murderer and stalks him everywhere, in the beginning of his journey to the darkness.", "video": false, "id": 10185, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Midnight Meat Train", "tagline": "The most terrifying ride you'll ever take", "vote_count": 60, "homepage": "http://www.midnightmeattrainthemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0805570", "adult": false, "backdrop_path": "/vfErxYsTbjbq7M8oHB8v22WKU6D.jpg", "production_companies": [{"name": "GreeneStreet Films", "id": 2152}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Lions Gate Films", "id": 35}, {"name": "Midnight Picture Show", "id": 22056}], "release_date": "2008-08-07", "popularity": 0.500645791405885, "original_title": "The Midnight Meat Train", "budget": 15000000, "cast": [{"name": "Bradley Cooper", "character": "Leon Kaufman", "id": 51329, "credit_id": "52fe433d9251416c75008c8d", "cast_id": 2, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Vinnie Jones", "character": "Mahogany", "id": 980, "credit_id": "52fe433d9251416c75008c91", "cast_id": 3, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 1}, {"name": "Brooke Shields", "character": "Susan Hoff", "id": 15110, "credit_id": "52fe433d9251416c75008c95", "cast_id": 4, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 2}, {"name": "Leslie Bibb", "character": "Maya", "id": 57451, "credit_id": "52fe433d9251416c75008c99", "cast_id": 5, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 3}, {"name": "Roger Bart", "character": "Jurgis", "id": 45566, "credit_id": "52fe433d9251416c75008ccd", "cast_id": 14, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 4}, {"name": "Ted Raimi", "character": "Randle Cooper", "id": 11769, "credit_id": "53e896040e0a266f8d003fbf", "cast_id": 18, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 5}, {"name": "Peter Jacobson", "character": "Otto", "id": 31514, "credit_id": "53e8961d0e0a266f9a003e22", "cast_id": 19, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 6}, {"name": "Barbara Eve Harris", "character": "Detective Lynn Hadley", "id": 157146, "credit_id": "53e8964d0e0a266fa5003ee2", "cast_id": 20, "profile_path": "/dEiJziN5TPJU5LQjeN95tL3lrNk.jpg", "order": 7}, {"name": "Stephanie Mace", "character": "Leigh Cooper", "id": 1352093, "credit_id": "53e896960e0a266fa5003ee8", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Tony Curran", "character": "Driver", "id": 2220, "credit_id": "53e896b90e0a266f9100424f", "cast_id": 22, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 9}, {"name": "Quinton Jackson", "character": "Guardian Angel", "id": 586935, "credit_id": "53e897020e0a266fa5003ef2", "cast_id": 23, "profile_path": "/nhzVZm9QBWQ98HPiCV7PvrCoqFR.jpg", "order": 10}], "directors": [{"name": "Ry\u00fbhei Kitamura", "department": "Directing", "job": "Director", "credit_id": "52fe433d9251416c75008c89", "profile_path": "/wmRHPxLbDqSFVViTWCf7yJ50Mje.jpg", "id": 45996}], "vote_average": 6.1, "runtime": 98}, "239563": {"poster_path": "/w0hzr4eQBk1X4m63fb7sOSt9Bnn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.", "video": false, "id": 239563, "genres": [{"id": 35, "name": "Comedy"}], "title": "St. Vincent", "tagline": "Love Thy Neighbor", "vote_count": 188, "homepage": "http://stvincent-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2170593", "adult": false, "backdrop_path": "/cANfw6Yh10QC4F3mKcLZ4VoUzhA.jpg", "production_companies": [{"name": "Chernin Entertainment", "id": 7076}, {"name": "The Weinstein Company", "id": 308}, {"name": "Crescendo Productions", "id": 3314}, {"name": "Goldenlight Films", "id": 15855}], "release_date": "2014-10-31", "popularity": 3.92222853706898, "original_title": "St. Vincent", "budget": 0, "cast": [{"name": "Bill Murray", "character": "Vincent", "id": 1532, "credit_id": "52fe4e95c3a36847f829a859", "cast_id": 3, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Melissa McCarthy", "character": "Maggie", "id": 55536, "credit_id": "52fe4e95c3a36847f829a851", "cast_id": 1, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 1}, {"name": "Naomi Watts", "character": "Daka", "id": 3489, "credit_id": "52fe4e95c3a36847f829a855", "cast_id": 2, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 2}, {"name": "Chris O'Dowd", "character": "Brother Geraghty", "id": 40477, "credit_id": "52fe4e96c3a36847f829a85d", "cast_id": 4, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Zucko", "id": 18288, "credit_id": "52fe4e96c3a36847f829a861", "cast_id": 5, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Jaeden Lieberher", "character": "Oliver", "id": 1274508, "credit_id": "5464ce110e0a2629460020b1", "cast_id": 25, "profile_path": "/rCPRfOUdTBdDDAC12mqEv74d7M6.jpg", "order": 5}, {"name": "Kimberly Quinn", "character": "Nurse Ana", "id": 168994, "credit_id": "52fe4e96c3a36847f829a86d", "cast_id": 8, "profile_path": "/p9cDKFc4HBtabk60NkWBOnPvMPA.jpg", "order": 6}, {"name": "Lenny Venito", "character": "Coach Mitchell", "id": 37157, "credit_id": "53ea5e4b0e0a266022001b87", "cast_id": 20, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 7}, {"name": "Nate Corddry", "character": "Terry", "id": 127048, "credit_id": "52fe4e96c3a36847f829a865", "cast_id": 6, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 8}, {"name": "Dario Barosso", "character": "Ocinski", "id": 995205, "credit_id": "54678cbdeaeb8118b2000440", "cast_id": 26, "profile_path": "/wkV04IPLZMmQdQZDW9fzKiwja40.jpg", "order": 9}, {"name": "Donna Mitchell", "character": "Sandy", "id": 56694, "credit_id": "546eaf5d92514112f0000b00", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Ann Dowd", "character": "Shirley, Sunnyside Administrator", "id": 43366, "credit_id": "546eaf7192514112eb000b77", "cast_id": 28, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 11}, {"name": "Katharina Damm", "character": "Starlet", "id": 1274509, "credit_id": "52fe4e96c3a36847f829a881", "cast_id": 13, "profile_path": "/eBUOGjlqrWTkqOZNIsFXNePcrNX.jpg", "order": 13}, {"name": "Scott Adsit", "character": "David", "id": 66580, "credit_id": "52fe4e96c3a36847f829a869", "cast_id": 7, "profile_path": "/8VTCE0c8RSLYsgRqA8UDPRbBvYm.jpg", "order": 14}, {"name": "Alyssa Ruland", "character": "Student", "id": 1274507, "credit_id": "52fe4e96c3a36847f829a871", "cast_id": 9, "profile_path": null, "order": 15}, {"name": "Alexandra Fong", "character": "Rachele", "id": 58355, "credit_id": "52fe4e96c3a36847f829a879", "cast_id": 11, "profile_path": null, "order": 16}, {"name": "Greta Lee", "character": "Teller #23", "id": 1260481, "credit_id": "52fe4e96c3a36847f829a87d", "cast_id": 12, "profile_path": null, "order": 17}], "directors": [{"name": "Theodore Melfi", "department": "Directing", "job": "Director", "credit_id": "52fe4e96c3a36847f829a88f", "profile_path": null, "id": 1141683}], "vote_average": 7.4, "runtime": 102}, "1996": {"poster_path": "/pkSnQzjjQ3Z9B2CJVSZCfL0Ea3s.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156505388, "overview": "Intrepid British archaeologist Lara Croft has made perhaps the most important archaeological discovery in history: an orb that leads to the mythical Pandora's Box. Unfortunately, the orb falls into the hands of Jonathan Reiss, an evil scientist who deals in killer viruses and hopes to sell the secrets of the box as the ultimate weapon.", "video": false, "id": 1996, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Lara Croft Tomb Raider: The Cradle of Life", "tagline": "Adventuress Lara Croft goes on a quest to save the mythical Pandora's Box", "vote_count": 664, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AbU9pTDqOhm670DNillEB9Cb8H6.jpg", "poster_path": "/sgaP4WtVlKzz8FIcjbkevOycJiq.jpg", "id": 2467, "name": "Tomb Raider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0325703", "adult": false, "backdrop_path": "/dGGATPdyQaqs0SXmjEtdmbfGw42.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "British Broadcasting Corporation (BBC)", "id": 3324}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Eidos Interactive", "id": 19105}, {"name": "Toho-Towa", "id": 657}, {"name": "October Pictures", "id": 14362}], "release_date": "2003-07-21", "popularity": 1.17772090777437, "original_title": "Lara Croft Tomb Raider: The Cradle of Life", "budget": 95000000, "cast": [{"name": "Angelina Jolie", "character": "Lara Croft", "id": 11701, "credit_id": "52fe432ac3a36847f803f43f", "cast_id": 11, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Terry Sheridan", "id": 17276, "credit_id": "52fe432ac3a36847f803f443", "cast_id": 12, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Noah Taylor", "character": "Bryce", "id": 1284, "credit_id": "52fe432ac3a36847f803f447", "cast_id": 14, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Djimon Hounsou", "character": "Kosa", "id": 938, "credit_id": "52fe432ac3a36847f803f44b", "cast_id": 15, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 4}, {"name": "Til Schweiger", "character": "Sean", "id": 1844, "credit_id": "52fe432ac3a36847f803f44f", "cast_id": 16, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 5}, {"name": "Simon Yam", "character": "Chen Lo", "id": 20519, "credit_id": "52fe432ac3a36847f803f453", "cast_id": 17, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 6}, {"name": "Daniel Caltagirone", "character": "Nicholas Petraki", "id": 19875, "credit_id": "52fe432ac3a36847f803f457", "cast_id": 18, "profile_path": "/cnuEASgMkryLbTMZVNaGltibGFe.jpg", "order": 7}, {"name": "Fabiano Martell", "character": "Jimmy Petraki", "id": 20520, "credit_id": "52fe432ac3a36847f803f45b", "cast_id": 19, "profile_path": "/eHXuNPeFkywQgx9xJLvyzYB1csa.jpg", "order": 8}, {"name": "Robert Cavanah", "character": "MI6 Agent Stevens", "id": 20522, "credit_id": "52fe432ac3a36847f803f463", "cast_id": 21, "profile_path": "/gHuA2uTVZB8prxpzJozwGWli2kI.jpg", "order": 10}, {"name": "Ronan Vibert", "character": "MI6 Agent Calloway", "id": 20523, "credit_id": "52fe432ac3a36847f803f467", "cast_id": 22, "profile_path": "/3mCxRbHuq1aJwrFqLwk3OSdqva9.jpg", "order": 11}, {"name": "Chris Barrie", "character": "Hillary", "id": 20511, "credit_id": "52fe432ac3a36847f803f46b", "cast_id": 23, "profile_path": "/rN7P8WSCAEQ0hHWfaG1P7Em1spx.jpg", "order": 12}, {"name": "Jonny Coyne", "character": "Gus Petraki (as Jonathan Coyne)", "id": 1323612, "credit_id": "53806684c3a368737d000235", "cast_id": 26, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 13}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe432ac3a36847f803f405", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 5.5, "runtime": 117}, "10189": {"poster_path": "/scEvOPl6ZJctQVnRWHvq0pP0DkM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42431017, "overview": "A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.", "video": false, "id": 10189, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Pineapple Express", "tagline": "Put this in your pipe and smoke it.", "vote_count": 340, "homepage": "http://www.sonypictures.com/movies/pineappleexpress/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0910936", "adult": false, "backdrop_path": "/gsQMJV0UM6nDLOhNDTlON8Iezed.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-08-06", "popularity": 1.20268667208699, "original_title": "Pineapple Express", "budget": 27000000, "cast": [{"name": "Seth Rogen", "character": "Dale Denton", "id": 19274, "credit_id": "52fe433d9251416c75008e6f", "cast_id": 6, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "James Franco", "character": "Saul Silver", "id": 17051, "credit_id": "52fe433d9251416c75008e73", "cast_id": 7, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Danny McBride", "character": "Red", "id": 62862, "credit_id": "52fe433d9251416c75008e6b", "cast_id": 5, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 2}, {"name": "Kevin Corrigan", "character": "Budlofsky", "id": 18472, "credit_id": "52fe433e9251416c75008ec7", "cast_id": 25, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 3}, {"name": "Gary Cole", "character": "Ted", "id": 21163, "credit_id": "52fe433d9251416c75008e7b", "cast_id": 9, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Rosie Perez", "character": "Carol", "id": 4810, "credit_id": "52fe433d9251416c75008e77", "cast_id": 8, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 5}, {"name": "Amber Heard", "character": "Angie Anderson", "id": 55085, "credit_id": "52fe433d9251416c75008e7f", "cast_id": 10, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 6}, {"name": "Adam Crosby", "character": "Ack", "id": 64144, "credit_id": "52fe433d9251416c75008e67", "cast_id": 4, "profile_path": "/fdf9CZ3mVHIr5xIRPl642xBfI85.jpg", "order": 7}, {"name": "Dana Lee", "character": "Cheung", "id": 16584, "credit_id": "52fe433e9251416c75008e87", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Brian Scannell", "character": "Carrie Longwood", "id": 64143, "credit_id": "52fe433e9251416c75008e83", "cast_id": 11, "profile_path": "/cuWZ8wo23r5P2iXRhVjrjb27VNF.jpg", "order": 9}, {"name": "Craig Robinson", "character": "Matheson", "id": 64342, "credit_id": "52fe433e9251416c75008ecb", "cast_id": 26, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 10}, {"name": "Ed Begley Jr.", "character": "Robert", "id": 42157, "credit_id": "52fe433e9251416c75008ecf", "cast_id": 27, "profile_path": "/m264FJDCnB5H6qyU2sDKjs9tM86.jpg", "order": 11}, {"name": "Nora Dunn", "character": "Shannon", "id": 4496, "credit_id": "52fe433e9251416c75008ed3", "cast_id": 28, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 12}, {"name": "Joe Lo Truglio", "character": "Mr. Edwards", "id": 21131, "credit_id": "52fe433e9251416c75008ed7", "cast_id": 29, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 13}, {"name": "Arthur Napiontek", "character": "Clark", "id": 82179, "credit_id": "52fe433e9251416c75008edb", "cast_id": 30, "profile_path": "/lt7TYA7GmoVxbPKL55cExu0F1cI.jpg", "order": 14}, {"name": "Cleo King", "character": "Police Liaison Officer", "id": 7574, "credit_id": "52fe433e9251416c75008edf", "cast_id": 31, "profile_path": "/1hyMhXnT6VuC0XA9eBmsbx9QbbY.jpg", "order": 15}, {"name": "Bill Hader", "character": "Private Miller", "id": 19278, "credit_id": "52fe433e9251416c75008ee3", "cast_id": 32, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 16}, {"name": "James Remar", "character": "General Bratt", "id": 1736, "credit_id": "52fe433e9251416c75008ee7", "cast_id": 33, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 17}, {"name": "Ken Jeong", "character": "Ken", "id": 83586, "credit_id": "52fe433e9251416c75008eeb", "cast_id": 34, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 18}, {"name": "Bobby Lee", "character": "Bobby", "id": 198149, "credit_id": "52fe433e9251416c75008eef", "cast_id": 35, "profile_path": "/qyogEhctULt3EnrKxPG6ZS888RP.jpg", "order": 19}, {"name": "Connie Sawyer", "character": "Faye Belogus", "id": 116727, "credit_id": "52fe433e9251416c75008ef3", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "David McDivitt", "character": "Cop with Mole", "id": 201829, "credit_id": "52fe433e9251416c75008ef7", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Mae LaBorde", "character": "Mrs. Mendelson", "id": 63217, "credit_id": "52fe433e9251416c75008efb", "cast_id": 38, "profile_path": "/8AfENrZpycuHFTTMDB58jDZvNSq.jpg", "order": 22}, {"name": "John Robert Tramutola", "character": "Walt", "id": 204379, "credit_id": "52fe433e9251416c75008eff", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Andrew Heald", "character": "Blake", "id": 177909, "credit_id": "52fe433e9251416c75008f03", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Jeannetta Arnette", "character": "Sandra Danby", "id": 2842, "credit_id": "53d3c8fd0e0a262847001df6", "cast_id": 48, "profile_path": "/uVaqZLhpTh5OmJDFSv7wim63sV1.jpg", "order": 25}, {"name": "Jonathan Spencer", "character": "Scientist", "id": 208380, "credit_id": "52fe433e9251416c75008f29", "cast_id": 47, "profile_path": "/irLd1ZUiIwtBHxP4Jje4gMxeou1.jpg", "order": 26}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe433d9251416c75008e57", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 6.4, "runtime": 111}, "10191": {"poster_path": "/zMAm3WYmvD40FaWFsOmpicQFabz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 494878759, "overview": "As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast \u2013 which he names Toothless \u2013 much to the chagrin of his warrior father", "video": false, "id": 10191, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "How to Train Your Dragon", "tagline": "One adventure will change two worlds", "vote_count": 2019, "homepage": "http://www.howtotrainyourdragon.com/", "belongs_to_collection": {"backdrop_path": "/mvcfPkOvgDJG2lEAxTz0NKqoQLo.jpg", "poster_path": "/nJ7ud7XWnNCnGfRQUkUp2t17Sq3.jpg", "id": 89137, "name": "How to Train Your Dragon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0892769", "adult": false, "backdrop_path": "/nMulOcoR6HAahofkcuo4mtA0o9j.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Mad Hatter Entertainment", "id": 20154}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2010-03-05", "popularity": 3.51972017484826, "original_title": "How to Train Your Dragon", "budget": 165000000, "cast": [{"name": "Jay Baruchel", "character": "Hiccup", "id": 449, "credit_id": "52fe433e9251416c75009013", "cast_id": 3, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Stoick", "id": 17276, "credit_id": "52fe433e9251416c75009017", "cast_id": 4, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Craig Ferguson", "character": "Gobber", "id": 24264, "credit_id": "52fe433e9251416c7500901b", "cast_id": 5, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 2}, {"name": "America Ferrera", "character": "Astrid", "id": 59174, "credit_id": "52fe433e9251416c7500901f", "cast_id": 6, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 3}, {"name": "Jonah Hill", "character": "Snotlout", "id": 21007, "credit_id": "52fe433e9251416c75009023", "cast_id": 7, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 4}, {"name": "Christopher Mintz-Plasse", "character": "Fishlegs", "id": 54691, "credit_id": "52fe433e9251416c75009027", "cast_id": 8, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 5}, {"name": "T.J. Miller", "character": "Tuffnut", "id": 51990, "credit_id": "52fe433e9251416c75009079", "cast_id": 25, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 6}, {"name": "Kristen Wiig", "character": "Ruffnut", "id": 41091, "credit_id": "52fe433e9251416c7500907d", "cast_id": 26, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 7}, {"name": "Robin Atkin Downes", "character": "Ack", "id": 130081, "credit_id": "52fe433e9251416c75009081", "cast_id": 27, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 8}, {"name": "Philip McGrade", "character": "Starkard", "id": 138619, "credit_id": "52fe433e9251416c75009085", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Kieron Elliott", "character": "Hoark the Haggard", "id": 138620, "credit_id": "52fe433e9251416c75009089", "cast_id": 29, "profile_path": "/7dRvskBebg36l4FT6jxg2J5sevB.jpg", "order": 10}, {"name": "Ashley Jensen", "character": "Phlegma the Fierce", "id": 55398, "credit_id": "52fe433e9251416c7500908d", "cast_id": 30, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 11}, {"name": "David Tennant", "character": "Spitelout", "id": 20049, "credit_id": "52fe433f9251416c75009091", "cast_id": 31, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 12}], "directors": [{"name": "Dean DeBlois", "department": "Directing", "job": "Director", "credit_id": "52fe433e9251416c7500902d", "profile_path": "/vofzPcdNUzUD1xqaMUwMAJRgFiy.jpg", "id": 69797}, {"name": "Chris Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe433e9251416c75009033", "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "id": 66193}], "vote_average": 7.2, "runtime": 98}, "10192": {"poster_path": "/enqVwbUu6OX5LHq0fuk7sLT35zy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 752600867, "overview": "A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away\u2014where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met\u2014he sets out to restore his world and reclaim his true love.", "video": false, "id": 10192, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek Forever After", "tagline": "It ain't Ogre... Til it's Ogre", "vote_count": 673, "homepage": "http://www.shrekforeverafter.com/", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0892791", "adult": false, "backdrop_path": "/aD8iOuLlEiMfVlHTnAe15fZLo0S.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2010-05-16", "popularity": 1.59895995913267, "original_title": "Shrek Forever After", "budget": 165000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe433f9251416c750090c3", "cast_id": 2, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe433f9251416c750090c7", "cast_id": 3, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe433f9251416c750090cb", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe433f9251416c750090cf", "cast_id": 5, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 3}, {"name": "Julie Andrews", "character": "Queen (voice)", "id": 5823, "credit_id": "52fe433f9251416c750090d3", "cast_id": 6, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 4}, {"name": "Jon Hamm", "character": "Brogan (voice)", "id": 65717, "credit_id": "52fe433f9251416c750090d7", "cast_id": 7, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 5}, {"name": "John Cleese", "character": "King (voice)", "id": 8930, "credit_id": "52fe433f9251416c750090db", "cast_id": 8, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Craig Robinson", "character": "Cookie (voice)", "id": 64342, "credit_id": "52fe433f9251416c750090df", "cast_id": 9, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 7}, {"name": "Walt Dohrn", "character": "Rumpelstiltskin / Priest / Krekraw Ogre (voice)", "id": 118489, "credit_id": "52fe433f9251416c750090e3", "cast_id": 10, "profile_path": "/prfTPdP6tEScSTyZgD0S3APiSOU.jpg", "order": 8}, {"name": "Jane Lynch", "character": "Gretched (voice)", "id": 43775, "credit_id": "52fe433f9251416c750090e7", "cast_id": 11, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 9}, {"name": "Lake Bell", "character": "Patrol Witch / Wagon Witch #2 (voice)", "id": 25703, "credit_id": "52fe433f9251416c750090eb", "cast_id": 12, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 10}, {"name": "Kathy Griffin", "character": "Dancing Witch / Wagon Witch #1 (voice)", "id": 3138, "credit_id": "52fe433f9251416c750090ef", "cast_id": 13, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 11}, {"name": "Mary Kay Place", "character": "Guard Witch (voice)", "id": 5960, "credit_id": "52fe433f9251416c750090f3", "cast_id": 14, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 12}, {"name": "Kristen Schaal", "character": "Pumpkin Witch / Palace Witch (voice)", "id": 109869, "credit_id": "52fe433f9251416c750090f7", "cast_id": 15, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 13}, {"name": "Meredith Vieira", "character": "Broomsy Witch (voice)", "id": 118490, "credit_id": "52fe433f9251416c750090fb", "cast_id": 16, "profile_path": "/ydtUcTxplTDkNs5nbDhLS5OGjTL.jpg", "order": 14}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c750090bf", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.9, "runtime": 93}, "10193": {"poster_path": "/tOwAAVeL1p3ls9dhOBo45ElodU3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1063171911, "overview": "Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.", "video": false, "id": 10193, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story 3", "tagline": "No toy gets left behind.", "vote_count": 1892, "homepage": "http://disney.go.com/toystory/", "belongs_to_collection": {"backdrop_path": "/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg", "poster_path": "/bDSe7UCiShmiTz7kuOjMyP6mz7l.jpg", "id": 10194, "name": "Toy Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0435761", "adult": false, "backdrop_path": "/rpvDBeVazJyBV5SxtnQWIgL5SIb.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2010-06-17", "popularity": 2.49177755816754, "original_title": "Toy Story 3", "budget": 200000000, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "52fe433f9251416c7500915d", "cast_id": 6, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "52fe433f9251416c75009169", "cast_id": 9, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Lotso (voice)", "id": 13726, "credit_id": "52fe433f9251416c75009185", "cast_id": 17, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jessie the Yodeling Cowgirl (voice)", "id": 3234, "credit_id": "52fe433f9251416c75009165", "cast_id": 8, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Michael Keaton", "character": "Ken (voice)", "id": 2232, "credit_id": "52fe433f9251416c75009161", "cast_id": 7, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 4}, {"name": "Whoopi Goldberg", "character": "Stretch the Octopus (voice)", "id": 2395, "credit_id": "52fe433f9251416c7500916d", "cast_id": 10, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 5}, {"name": "Bonnie Hunt", "character": "Purple-haired doll (voice)", "id": 5149, "credit_id": "52fe433f9251416c75009171", "cast_id": 11, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 6}, {"name": "Wallace Shawn", "character": "Rex (voice)", "id": 12900, "credit_id": "52fe433f9251416c75009181", "cast_id": 16, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 7}, {"name": "John Ratzenberger", "character": "Hamm (voice)", "id": 7907, "credit_id": "52fe433f9251416c75009175", "cast_id": 13, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 8}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "52fe433f9251416c75009179", "cast_id": 14, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 9}, {"name": "Estelle Harris", "character": "Mrs. Potato Head (voice)", "id": 61964, "credit_id": "52fe433f9251416c7500917d", "cast_id": 15, "profile_path": "/equDBtZgBkO7e8QKpNokDz9EbY9.jpg", "order": 10}, {"name": "John Morris", "character": "Andy (voice)", "id": 1116442, "credit_id": "52fe433f9251416c75009189", "cast_id": 18, "profile_path": "/vYGyvK4LzeaUCoNSHtsuqJUY15M.jpg", "order": 11}, {"name": "Jodi Benson", "character": "Barbie (voice)", "id": 63978, "credit_id": "52fe433f9251416c7500918d", "cast_id": 19, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 12}, {"name": "Emily Hahn", "character": "Bonnie (voice)", "id": 1096415, "credit_id": "52fe433f9251416c75009191", "cast_id": 20, "profile_path": "/cjCwq4bzHuYMba1kDfEkKCeEOeb.jpg", "order": 13}, {"name": "Laurie Metcalf", "character": "Andy's Mom (voice)", "id": 12133, "credit_id": "52fe433f9251416c75009195", "cast_id": 21, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 14}, {"name": "Blake Clark", "character": "Slinky Dog (voice)", "id": 21485, "credit_id": "52fe433f9251416c75009199", "cast_id": 22, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 15}, {"name": "Teddy Newton", "character": "Chatter Telephone (voice)", "id": 59357, "credit_id": "52fe433f9251416c7500919d", "cast_id": 23, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 16}, {"name": "Kristen Schaal", "character": "Trixie (voice)", "id": 109869, "credit_id": "54bae356c3a3686c6f006840", "cast_id": 24, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 17}, {"name": "R. Lee Ermey", "character": "Sarge", "id": 8655, "credit_id": "552166b99251417be2002ef3", "cast_id": 25, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 18}], "directors": [{"name": "Lee Unkrich", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c75009141", "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "id": 8}], "vote_average": 7.3, "runtime": 103}, "239571": {"poster_path": "/449Qq1XKgurG4IFTohtsEuBWJ8H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A pair of former high school sweethearts reunite after many years when they return to visit their small hometown.", "video": false, "id": 239571, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Best of Me", "tagline": "You never forget your first love.", "vote_count": 115, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1972779", "adult": false, "backdrop_path": "/s39ikTKcPr8KNL6PGNCpbq8UxwI.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}], "release_date": "2014-10-17", "popularity": 1.54133392752105, "original_title": "The Best of Me", "budget": 0, "cast": [{"name": "Michelle Monaghan", "character": "Amanda", "id": 11705, "credit_id": "52fe4e96c3a36847f829aaad", "cast_id": 1, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 0}, {"name": "James Marsden", "character": "Dawson", "id": 11006, "credit_id": "53c623d8c3a3686266001b8a", "cast_id": 7, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Liana Liberato", "character": "Young Amanda", "id": 60458, "credit_id": "540ee652c3a36871c400160d", "cast_id": 8, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 2}, {"name": "Luke Bracey", "character": "Younger Dawson", "id": 972356, "credit_id": "540ee659c3a36871b800162c", "cast_id": 9, "profile_path": "/cfUv5lXfWVlbQeRaD8XZ0WDxqF9.jpg", "order": 3}, {"name": "Gerald McRaney", "character": "Tuck", "id": 29512, "credit_id": "540ee66cc3a36871c10014f3", "cast_id": 10, "profile_path": "/jPS0hN9T3JFhfMLEJ36LEwedTAz.jpg", "order": 4}, {"name": "Caroline Goodall", "character": "Evelyn", "id": 6692, "credit_id": "548068079251416e740029fe", "cast_id": 11, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 5}, {"name": "Clarke Peters", "character": "Morgan Dupree", "id": 61011, "credit_id": "548068139251416e74002a01", "cast_id": 12, "profile_path": "/7a3OTcJlncY32LDvdTjLS6bTMxh.jpg", "order": 6}, {"name": "Sebastian Arcelus", "character": "Frank", "id": 103545, "credit_id": "5480681fc3a36829a7002805", "cast_id": 13, "profile_path": "/3K7Xbstrab2reOW4tcsGcDtMqap.jpg", "order": 7}, {"name": "Jon Tenney", "character": "Harvey Collier", "id": 4602, "credit_id": "5480682ec3a36817a5002635", "cast_id": 14, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 8}, {"name": "Sean Bridgers", "character": "Tommy Cole", "id": 144160, "credit_id": "54806858c3a36829ab0028ad", "cast_id": 15, "profile_path": "/vJfiyvwitCEn6SXA55GI7zbwGrw.jpg", "order": 9}, {"name": "Robert Mello", "character": "Ted Cole (as Robert William Mello)", "id": 1388694, "credit_id": "548068669251414d2100258c", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Hunter Burke", "character": "Abee", "id": 1374151, "credit_id": "54806875c3a36829ae0025a3", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Robby Rasmussen", "character": "Bobby / Aaron", "id": 1394279, "credit_id": "54806881c3a36829a700281a", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Caroline Hebert", "character": "Young April", "id": 1394280, "credit_id": "5480688cc3a36829ab0028bc", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Schuyler Fisk", "character": "April", "id": 70852, "credit_id": "548068a7c3a368299f001fdd", "cast_id": 21, "profile_path": "/ayjUYmT5XFPDoS4XEaAbvQchhpM.jpg", "order": 15}, {"name": "Douglas M. Griffin", "character": "Jack", "id": 60881, "credit_id": "548068b1c3a36829a300288d", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Bill Martin Williams", "character": "Uncle", "id": 1271773, "credit_id": "548068bc9251416e74002a27", "cast_id": 23, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 17}, {"name": "Jimmy Gonzales", "character": "Guard", "id": 1091423, "credit_id": "548068c99251416e7b00260b", "cast_id": 24, "profile_path": "/xHKgZYPiteLS9hCvM1mL11d6bRe.jpg", "order": 18}, {"name": "Mia Frost", "character": "Brandi", "id": 240571, "credit_id": "548068d59251416e810027d3", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Donna DuPlantier", "character": "Dr. Charbeaneau", "id": 230995, "credit_id": "548068f1c3a36829ae0025b0", "cast_id": 26, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 20}, {"name": "David Jensen", "character": "Dr. Pundt", "id": 60875, "credit_id": "54806900c3a36829ab0028d8", "cast_id": 27, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 21}, {"name": "Jim Gleason", "character": "Lawyer", "id": 168942, "credit_id": "5480690fc3a36829ae0025b6", "cast_id": 28, "profile_path": "/yhn0wL58Dt0HGB5O2m9RoWXbK46.jpg", "order": 22}, {"name": "Kesha Bullard", "character": "Leonie (as Kesha Bullard Lewis)", "id": 1292481, "credit_id": "5480691e9251416e74002a39", "cast_id": 29, "profile_path": "/eIORpRv2pazTxSXYu2ms02FwL2S.jpg", "order": 23}, {"name": "Julia Lashae", "character": "Clara", "id": 1394283, "credit_id": "548069289251414efa0028dc", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Jordan Smith", "character": "Rich Kid #1", "id": 1394285, "credit_id": "548069549251416e810027f0", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Laura Meyer", "character": "Receptionist #2", "id": 1394287, "credit_id": "54806973c3a368299f001ff3", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Bailey Winston", "character": "Amanda's Friend", "id": 1394288, "credit_id": "548069849251416e74002a56", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Matthew Metzger", "character": "Rich Kid #2", "id": 1394289, "credit_id": "548069919251416e7b00262a", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Thomas Ryan Smith", "character": "Rich Kid #3 (as Thomas Smith)", "id": 1394290, "credit_id": "5480699ec3a36829b2002fb7", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Brittany Buckner", "character": "Receptionist #1", "id": 1394292, "credit_id": "548069ab9251416e7b002632", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Keith Cieslinski", "character": "Priest", "id": 1394293, "credit_id": "548069b6c3a36829b5002fdf", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Brian Les Weinberger", "character": "Court Lawyer", "id": 1394294, "credit_id": "548069c29251416e74002a6a", "cast_id": 38, "profile_path": null, "order": 32}, {"name": "Virgil Brent Allen", "character": "Oil Rig Worker", "id": 1394295, "credit_id": "548069cec3a368299f002000", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Benji the Cat", "character": "Himself", "id": 1394297, "credit_id": "548069e49251414d210025d4", "cast_id": 40, "profile_path": null, "order": 34}, {"name": "Ian Nelson", "character": "Jared", "id": 1348957, "credit_id": "54de8de6c3a368537a001cd5", "cast_id": 41, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 35}], "directors": [{"name": "Michael Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe4e96c3a36847f829aab3", "profile_path": "/xrMI8tNQgHws3o3Ku5cdH3ayXZx.jpg", "id": 52405}], "vote_average": 7.4, "runtime": 117}, "10196": {"poster_path": "/5kO6hVZrtBZ98VfpgHvwivjXgMg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 318502923, "overview": "The story follows the adventures of Aang, a young successor to a long line of Avatars, who must put his childhood ways aside and stop the Fire Nation from enslaving the Water, Earth and Air nations.", "video": false, "id": 10196, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Last Airbender", "tagline": "Four nations, one destiny", "vote_count": 412, "homepage": "http://www.thelastairbendermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0938283", "adult": false, "backdrop_path": "/fuINagU2N0RxoQWenf00txtXfV5.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Industrial Light & Magic (ILM)", "id": 8805}], "release_date": "2010-06-30", "popularity": 1.68344346260562, "original_title": "The Last Airbender", "budget": 150000000, "cast": [{"name": "Noah Ringer", "character": "Aang", "id": 88816, "credit_id": "52fe433f9251416c750092a3", "cast_id": 2, "profile_path": "/rViKaQd4q8qCFmFRbrZY849ykST.jpg", "order": 0}, {"name": "Nicola Peltz", "character": "Katara", "id": 61186, "credit_id": "52fe433f9251416c750092af", "cast_id": 5, "profile_path": "/3NLYsEVZON71ceR01bb6gf13iRJ.jpg", "order": 1}, {"name": "Jackson Rathbone", "character": "Sokka", "id": 84215, "credit_id": "52fe433f9251416c750092ab", "cast_id": 4, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 2}, {"name": "Dev Patel", "character": "Zuko", "id": 76788, "credit_id": "52fe433f9251416c750092a7", "cast_id": 3, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 3}, {"name": "Shaun Toub", "character": "Uncle Iroh", "id": 17857, "credit_id": "52fe433f9251416c750092b3", "cast_id": 6, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 4}, {"name": "Aasif Mandvi", "character": "Commander Zhao", "id": 20644, "credit_id": "52fe433f9251416c750092b7", "cast_id": 7, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 5}, {"name": "Dee Bradley Baker", "character": "Appa / Momo", "id": 23680, "credit_id": "52fe433f9251416c750092bb", "cast_id": 8, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 6}, {"name": "Ben Cooke", "character": "Avatar Roku", "id": 11354, "credit_id": "52fe433f9251416c750092bf", "cast_id": 9, "profile_path": "/mdYAaW3tctXeEqYFl6pKYcgDKSx.jpg", "order": 7}, {"name": "Katharine Houghton", "character": "Gran Gran", "id": 19729, "credit_id": "52fe433f9251416c750092c3", "cast_id": 10, "profile_path": "/siCl5UOGhViJdbyyOImDyyJRG7J.jpg", "order": 8}, {"name": "Cliff Curtis", "character": "Fire Lord Ozai", "id": 7248, "credit_id": "536a1af70e0a2647ce00998c", "cast_id": 13, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 9}, {"name": "Seychelle Gabriel", "character": "Princess Yue", "id": 559643, "credit_id": "536a1b100e0a2647ce00998f", "cast_id": 14, "profile_path": "/u0j5IiaCllIzr4Kp8kcdbYGpBPt.jpg", "order": 10}, {"name": "Francis Guinan", "character": "Master Pakku", "id": 162754, "credit_id": "536a1b2c0e0a2647d100989b", "cast_id": 15, "profile_path": "/aInGPcXUo7GOefwXSJyN7MtELW9.jpg", "order": 11}, {"name": "Damon Gupton", "character": "Monk Gyatso", "id": 53454, "credit_id": "536a1b410e0a2647c4009e57", "cast_id": 16, "profile_path": "/1mZvC9YKcFciPIl5vUUP01F6Fjy.jpg", "order": 12}, {"name": "Summer Bishil", "character": "Azula", "id": 73336, "credit_id": "536a1b530e0a2647d8009be3", "cast_id": 17, "profile_path": "/nUwjaZLww2EgaS24igMRh7H4mqX.jpg", "order": 13}, {"name": "Randall Duk Kim", "character": "Old Man in Temple", "id": 9462, "credit_id": "536a1b660e0a2647db009b63", "cast_id": 18, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 14}, {"name": "John D'Alonzo", "character": "Zhao's Assistant", "id": 1317363, "credit_id": "536a1b780e0a2647c4009e60", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Keong Sim", "character": "Earthbending Father", "id": 164102, "credit_id": "536a1b880e0a2647db009b69", "cast_id": 20, "profile_path": "/umyWpw8M18I6WsBWuRXWUtw4b2d.jpg", "order": 16}, {"name": "Roberto Lombardi", "character": "Fire Nation Soldier", "id": 1209900, "credit_id": "53c963870e0a2664930027d5", "cast_id": 21, "profile_path": "/qgrG57sp91kCwPJsPvH15psg6UL.jpg", "order": 17}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c7500929f", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 4.9, "runtime": 103}, "2005": {"poster_path": "/7wQxLtybiUbtC6tsJh9htFEmqq3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231605150, "overview": "A Reno singer witnesses a mob murder and the cops stash her in a nunnery to protect her from the hitmen. The mother superior does not trust her, and takes steps to limit her influence on the other nuns. Eventually the singer rescues the failing choir and begins helping with community projects, which gets her an interview on TV.", "video": false, "id": 2005, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Sister Act", "tagline": "No booze! No sex! No drugs!... No way!", "vote_count": 128, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5zLMzYgpx2TNmISTk1MnRyRWY9M.jpg", "poster_path": "/m9xbNgB8MrrGOCvc4vjOtSWdqh9.jpg", "id": 103573, "name": "Sister Act Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105417", "adult": false, "backdrop_path": "/oaLqlJxt8TJSjsdfMpSkLexZ4l5.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1992-05-28", "popularity": 0.506570576506696, "original_title": "Sister Act", "budget": 0, "cast": [{"name": "Whoopi Goldberg", "character": "Deloris Van Cartier/Sister Mary Clarence", "id": 2395, "credit_id": "52fe432bc3a36847f803f985", "cast_id": 7, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 0}, {"name": "Maggie Smith", "character": "Mother Superior", "id": 10978, "credit_id": "52fe432bc3a36847f803f989", "cast_id": 8, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 1}, {"name": "Kathy Najimy", "character": "Sister Mary Patrick", "id": 11074, "credit_id": "52fe432bc3a36847f803f98d", "cast_id": 9, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 2}, {"name": "Wendy Makkena", "character": "Sister Mary Robert", "id": 20623, "credit_id": "52fe432bc3a36847f803f991", "cast_id": 10, "profile_path": "/9Nx0N6vQP3czBYSiRgAZbETqAiC.jpg", "order": 3}, {"name": "Mary Wickes", "character": "Sister Mary Lazarus", "id": 20624, "credit_id": "52fe432bc3a36847f803f995", "cast_id": 11, "profile_path": "/5j9h5zBcsElyv0dHImPieBuQ4eL.jpg", "order": 4}, {"name": "Harvey Keitel", "character": "Vince LaRocca", "id": 1037, "credit_id": "52fe432bc3a36847f803f999", "cast_id": 12, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 5}, {"name": "Bill Nunn", "character": "Lt. Eddie Souther", "id": 5502, "credit_id": "52fe432bc3a36847f803f99d", "cast_id": 13, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 6}, {"name": "Richard Portnow", "character": "Willy", "id": 4255, "credit_id": "52fe432bc3a36847f803f9a1", "cast_id": 14, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 7}, {"name": "Robert Miranda", "character": "Joey", "id": 20625, "credit_id": "52fe432bc3a36847f803f9a5", "cast_id": 15, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 8}, {"name": "Joseph Maher", "character": "Bishop O'Hara", "id": 20626, "credit_id": "52fe432bc3a36847f803f9a9", "cast_id": 16, "profile_path": "/hgq8vDtBsk0ovVxRJHkAyXzTVth.jpg", "order": 9}, {"name": "Jenifer Lewis", "character": "Michelle", "id": 15899, "credit_id": "52fe432bc3a36847f803f9ad", "cast_id": 17, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 10}, {"name": "Charlotte Crossley", "character": "Tina", "id": 20627, "credit_id": "52fe432bc3a36847f803f9b1", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Michael Durrell", "character": "Larry Merrick", "id": 20628, "credit_id": "52fe432bc3a36847f803f9b5", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Adrienne-Joi Johnson", "character": "Lewanda", "id": 88186, "credit_id": "54f10a42c3a36832480003d9", "cast_id": 20, "profile_path": "/ltieu9aznaBoj3hVuzDdUpXyvtX.jpg", "order": 13}], "directors": [{"name": "Emile Ardolino", "department": "Directing", "job": "Director", "credit_id": "52fe432bc3a36847f803f963", "profile_path": "/h4LqsmRshajyuggfxR3wj7aNqyi.jpg", "id": 716}], "vote_average": 6.0, "runtime": 100}, "10198": {"poster_path": "/bVRHirC6uIZL9VtRqYRxdedYnOG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104400899, "overview": "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 do face the same problem after she kisses him.", "video": false, "id": 10198, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Princess and the Frog", "tagline": "Every Love Story Begins With a Kiss...", "vote_count": 289, "homepage": "http://disney.go.com/disneypictures/princessandthefrog/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780521", "adult": false, "backdrop_path": "/wC5xdlg6WceCWUXQzS3pIwTfkEJ.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2009-12-10", "popularity": 1.77110305446217, "original_title": "The Princess and the Frog", "budget": 105000000, "cast": [{"name": "Anika Noni Rose", "character": "Tiana", "id": 15563, "credit_id": "52fe43409251416c7500936d", "cast_id": 3, "profile_path": "/86MzqmhiyoJmiE8U2W0HK504mEL.jpg", "order": 0}, {"name": "Bruno Campos", "character": "Prince Naveen", "id": 66252, "credit_id": "52fe43409251416c75009371", "cast_id": 4, "profile_path": "/kmBzZxo8astYT4qnu9ulWxV7dYy.jpg", "order": 1}, {"name": "Keith David", "character": "Dr. Facilier", "id": 65827, "credit_id": "52fe43409251416c75009375", "cast_id": 5, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 2}, {"name": "Michael-Leon Wooley", "character": "Louis", "id": 110884, "credit_id": "52fe43409251416c75009379", "cast_id": 6, "profile_path": "/iBuzx4O5wSVaost7pMMSJSNPmmN.jpg", "order": 3}, {"name": "Jennifer Cody", "character": "Charlotte", "id": 110885, "credit_id": "52fe43409251416c7500937d", "cast_id": 7, "profile_path": "/xelI1wWTKcBWfBx7vOUObYrMAYb.jpg", "order": 4}, {"name": "Jim Cummings", "character": "Ray", "id": 12077, "credit_id": "52fe43409251416c75009381", "cast_id": 8, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 5}, {"name": "Jenifer Lewis", "character": "Mama Odie", "id": 15899, "credit_id": "52fe43409251416c7500938b", "cast_id": 10, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 6}, {"name": "Oprah Winfrey", "character": "Eudora", "id": 13309, "credit_id": "52fe43409251416c7500938f", "cast_id": 11, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 7}, {"name": "Terrence Howard", "character": "James", "id": 18288, "credit_id": "52fe43409251416c75009393", "cast_id": 12, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 8}, {"name": "John Goodman", "character": "'Big Daddy' La Bouff", "id": 1230, "credit_id": "52fe43409251416c750093a3", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 9}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c75009363", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c75009369", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.3, "runtime": 97}, "10199": {"poster_path": "/8Nge4rXAQzU5w9U8OvnXuuJltL9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50877145, "overview": "The tale of three unlikely heroes - a misfit mouse who prefers reading books to eating them, an unhappy rat who schemes to leave the darkness of the dungeon, and a bumbling servant girl with cauliflower ears - whose fates are intertwined with that of the castle's princess.", "video": false, "id": 10199, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Tale of Despereaux", "tagline": "Small Mouse, Big Dreams", "vote_count": 79, "homepage": "http://www.thetaleofdespereauxmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0420238", "adult": false, "backdrop_path": "/otiDe4tbyTct7hvNXVW6PsGVojZ.jpg", "production_companies": [{"name": "Universal Pictures Corporation", "id": 42}], "release_date": "2008-12-19", "popularity": 1.0275715150433, "original_title": "The Tale of Despereaux", "budget": 60000000, "cast": [{"name": "Emma Watson", "character": "Princess Pea", "id": 10990, "credit_id": "52fe43409251416c750093cb", "cast_id": 4, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Despereaux", "id": 4756, "credit_id": "52fe43409251416c750093cf", "cast_id": 5, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Roscuro", "id": 4483, "credit_id": "52fe43409251416c750093d3", "cast_id": 6, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Sigourney Weaver", "character": "The Narrator", "id": 10205, "credit_id": "52fe43409251416c750093d7", "cast_id": 7, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 3}, {"name": "Tracey Ullman", "character": "Miggery Sow", "id": 30364, "credit_id": "5463b310c3a3681255002bd4", "cast_id": 9, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 4}, {"name": "Kevin Kline", "character": "Andre", "id": 8945, "credit_id": "5463b31f0e0a267803002b2c", "cast_id": 10, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 5}, {"name": "William H. Macy", "character": "Lester", "id": 3905, "credit_id": "5463b32c0e0a267806002bea", "cast_id": 11, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Boldo", "id": 2283, "credit_id": "5463b33ac3a3681252002aa4", "cast_id": 12, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Ciar\u00e1n Hinds", "character": "Botticelli", "id": 8785, "credit_id": "5463b34dc3a36812590029dc", "cast_id": 13, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 8}, {"name": "Robbie Coltrane", "character": "Gregory", "id": 1923, "credit_id": "5463b369c3a3681247002a7e", "cast_id": 14, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 9}, {"name": "Tony Hale", "character": "Furlough", "id": 25147, "credit_id": "5463b3850e0a267810002b93", "cast_id": 15, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 10}, {"name": "Frances Conroy", "character": "Antoinette", "id": 4432, "credit_id": "5463b3a20e0a26780d002b94", "cast_id": 16, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 11}, {"name": "Frank Langella", "character": "Mayor", "id": 8924, "credit_id": "5463b3afc3a3681255002be8", "cast_id": 17, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 12}, {"name": "Richard Jenkins", "character": "Principal", "id": 28633, "credit_id": "5463b3c40e0a26780a002c32", "cast_id": 18, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 13}, {"name": "Christopher Lloyd", "character": "Hovis", "id": 1062, "credit_id": "5463b3d50e0a26780d002b9c", "cast_id": 19, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 14}], "directors": [{"name": "Robert Stevenhagen", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750093bb", "profile_path": null, "id": 64152}, {"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750093c1", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}, {"name": "Sam Fell", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750093c7", "profile_path": "/29NFQubb9A5OrA9OyXhnX4eOfkv.jpg", "id": 58897}], "vote_average": 6.1, "runtime": 100}, "10200": {"poster_path": "/wBb2s60ANgpfOJDL2mLge4B3Ain.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230831978, "overview": "A representative of an alien race that went through drastic evolution to survive its own climate change, Klaatu comes to Earth to assess whether humanity can prevent the environmental damage they have inflicted on their own planet. When barred from speaking to the United Nations, he decides humankind shall be exterminated so the planet can survive.", "video": false, "id": 10200, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Day the Earth Stood Still", "tagline": "12.12.08 is the Day the Earth Stood Still", "vote_count": 320, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970416", "adult": false, "backdrop_path": "/bfRgom0djZB8z7qbtjM542j3xrT.jpg", "production_companies": [{"name": "3 Arts Entertainment", "id": 36390}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Earth Canada Productions", "id": 20374}, {"name": "Hammerhead Productions", "id": 20375}], "release_date": "2008-12-12", "popularity": 1.47949259295324, "original_title": "The Day the Earth Stood Still", "budget": 80000000, "cast": [{"name": "Keanu Reeves", "character": "Klaatu", "id": 6384, "credit_id": "52fe43409251416c7500942b", "cast_id": 4, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Helen Benson", "id": 6161, "credit_id": "52fe43409251416c7500942f", "cast_id": 5, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Mousa Kraish", "character": "Yusef", "id": 54712, "credit_id": "52fe43409251416c75009427", "cast_id": 3, "profile_path": "/bATns500G3T6he2yBeIVQSFRpiU.jpg", "order": 2}, {"name": "Shaine Jones", "character": "Soldier #3", "id": 64153, "credit_id": "52fe43409251416c75009433", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Jaden Smith", "character": "Jacob Benson", "id": 120724, "credit_id": "52fe43409251416c7500943d", "cast_id": 9, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 4}, {"name": "Jon Hamm", "character": "Michael Granier", "id": 65717, "credit_id": "52fe43409251416c75009441", "cast_id": 10, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 5}, {"name": "James Hong", "character": "Mr. Wu", "id": 20904, "credit_id": "52fe43409251416c75009445", "cast_id": 11, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 6}, {"name": "Kathy Bates", "character": "Regina Jackson", "id": 8534, "credit_id": "52fe43409251416c75009449", "cast_id": 12, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 7}, {"name": "John Cleese", "character": "Professor Barnhardt", "id": 8930, "credit_id": "52fe43409251416c7500944d", "cast_id": 13, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 8}, {"name": "Kyle Chandler", "character": "John Driscoll", "id": 3497, "credit_id": "52fe43409251416c75009451", "cast_id": 14, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 9}, {"name": "Robert Knepper", "character": "Colonel", "id": 17343, "credit_id": "52fe43409251416c75009455", "cast_id": 15, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 10}, {"name": "John Rothman", "character": "Dr. Myron", "id": 60205, "credit_id": "52fe43409251416c75009459", "cast_id": 16, "profile_path": "/bRSoDm75c5fKBbCrbrXwaPiAeST.jpg", "order": 11}, {"name": "Sunita Prasad", "character": "Rouhani", "id": 91337, "credit_id": "52fe43409251416c7500945d", "cast_id": 17, "profile_path": "/8oEp2JXrkWqcaQDMgurZ7mePp0a.jpg", "order": 12}, {"name": "Juan Riedinger", "character": "William Kwan", "id": 85613, "credit_id": "52fe43409251416c75009461", "cast_id": 18, "profile_path": "/ddNGEfsafxUzoF92WFzNSB2n9p5.jpg", "order": 13}, {"name": "Sam Gilroy", "character": "Tom", "id": 979103, "credit_id": "52fe43409251416c75009465", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Tanya Champoux", "character": "Isabel", "id": 206669, "credit_id": "52fe43409251416c75009469", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Rukiya Bernard", "character": "Student", "id": 83948, "credit_id": "52fe43409251416c7500946d", "cast_id": 21, "profile_path": null, "order": 16}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c7500941d", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 5.2, "runtime": 103}, "10201": {"poster_path": "/qd8QtH9Lx5tJUEimjAXR7sZUM3q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 225990978, "overview": "Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.", "video": false, "id": 10201, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Yes Man", "tagline": "One Word Can Change Everything.", "vote_count": 423, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "et", "name": "Eesti"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1068680", "adult": false, "backdrop_path": "/nA7a6uJkrkNEa77043GThE7BgPu.jpg", "production_companies": [{"name": "Warner Bros. Entertainment", "id": 17}, {"name": "The Zanuck Company", "id": 80}, {"name": "Heyday films", "id": 437}], "release_date": "2008-12-19", "popularity": 1.6998397968938, "original_title": "Yes Man", "budget": 70000000, "cast": [{"name": "Jim Carrey", "character": "Carl Allen", "id": 206, "credit_id": "52fe43409251416c750094c9", "cast_id": 2, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Renee Allison", "id": 11664, "credit_id": "52fe43409251416c750094cd", "cast_id": 3, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Rhys Darby", "character": "Norman", "id": 82666, "credit_id": "52fe43409251416c750094d9", "cast_id": 6, "profile_path": "/d8mSQJYmuOoT3hvC7FGgSVMzYlz.jpg", "order": 2}, {"name": "Sasha Alexander", "character": "Lucy", "id": 64154, "credit_id": "52fe43409251416c750094d1", "cast_id": 4, "profile_path": "/glTuArtuQbEbhor5MFvTdpF9IKQ.jpg", "order": 3}, {"name": "Fionnula Flanagan", "character": "Tillie", "id": 58068, "credit_id": "52fe43409251416c750094d5", "cast_id": 5, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Jumper", "id": 40481, "credit_id": "52fe43409251416c750094dd", "cast_id": 7, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Danny Masterson", "character": "Rooney", "id": 18972, "credit_id": "52fe43409251416c750094e1", "cast_id": 8, "profile_path": "/qml2xCFDj1cqCvcp9H0dIlrAMT6.jpg", "order": 6}, {"name": "Molly Sims", "character": "Stephanie", "id": 60952, "credit_id": "52fe43409251416c750094e5", "cast_id": 9, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 7}, {"name": "Bradley Cooper", "character": "Peter", "id": 51329, "credit_id": "52fe43409251416c750094e9", "cast_id": 10, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 8}, {"name": "John Michael Higgins", "character": "Nick", "id": 8265, "credit_id": "52fe43409251416c750094ed", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 9}, {"name": "Stephanie Hodge", "character": "Ticket Lady", "id": 1216510, "credit_id": "52fe43409251416c75009509", "cast_id": 16, "profile_path": "/9l85xTB0PQH4dHP8U3lDuFTJlOg.jpg", "order": 10}, {"name": "Jackie Harris", "character": "Bystander", "id": 1226913, "credit_id": "532cd373c3a3685fcb00068e", "cast_id": 17, "profile_path": "/hWhnGL9punPhCIOJ22rH0C6o6lT.jpg", "order": 11}, {"name": "Terence Stamp", "character": "Terence", "id": 28641, "credit_id": "539fee100e0a26507d00144e", "cast_id": 18, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 12}], "directors": [{"name": "Peyton Reed", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750094c5", "profile_path": "/h9lEnyQ60EjKRT3ZAOcrqQVlwn3.jpg", "id": 59026}], "vote_average": 6.3, "runtime": 104}, "51162": {"poster_path": "/dI2oQoJJ1QxDd5D1UiHfLvkoLnp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14460000, "overview": "During an ordinary day in Hundred Acre Wood, Winnie the Pooh sets out to find some honey. Misinterpreting a note from Christopher Robin, Pooh convinces Tigger, Rabbit, Piglet, Owl, Kanga, Roo, and Eeyore that their young friend has been captured by a creature named \"Backson\" and they set out to save him.", "video": false, "id": 51162, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Winnie the Pooh", "tagline": "Oh Pooh.", "vote_count": 87, "homepage": "http://disney.go.com/pooh/home/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1449283", "adult": false, "backdrop_path": "/2kcYTjMfrIufPT2HfcTeOdcvOxr.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2011-07-14", "popularity": 0.994981846177534, "original_title": "Winnie the Pooh", "budget": 30000000, "cast": [{"name": "Jim Cummings", "character": "Winnie the Pooh (Voice)", "id": 12077, "credit_id": "52fe47e4c3a36847f814dd35", "cast_id": 1004, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 0}, {"name": "Travis Oates", "character": "Piglet", "id": 81082, "credit_id": "52fe47e4c3a36847f814dd39", "cast_id": 1005, "profile_path": "/tgnHpDAmF98U3UpoQvg1aLWFhwR.jpg", "order": 1}, {"name": "Jim Cummings", "character": "Tigger (Voice)", "id": 12077, "credit_id": "52fe47e4c3a36847f814dd3d", "cast_id": 1006, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 2}, {"name": "Bud Luckey", "character": "Eeyore (Voice)", "id": 7918, "credit_id": "52fe47e4c3a36847f814dd41", "cast_id": 1007, "profile_path": "/pcCh7G19FKMNijmPQg1PMH1btic.jpg", "order": 3}, {"name": "Craig Ferguson", "character": "Owl (Voice)", "id": 24264, "credit_id": "52fe47e4c3a36847f814dd45", "cast_id": 1008, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 4}, {"name": "Tom Kenny", "character": "Rabbit (Voice)", "id": 78798, "credit_id": "52fe47e4c3a36847f814dd49", "cast_id": 1009, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 5}, {"name": "Kirsten Anderson-Lopez", "character": "Kanga (Voice)", "id": 227444, "credit_id": "52fe47e4c3a36847f814dd4d", "cast_id": 1010, "profile_path": null, "order": 6}, {"name": "Wyatt Hall", "character": "Roo (Voice)", "id": 227445, "credit_id": "52fe47e4c3a36847f814dd51", "cast_id": 1011, "profile_path": null, "order": 7}, {"name": "Jack Bouleter", "character": "Christopher Robin (Voice)", "id": 227446, "credit_id": "52fe47e4c3a36847f814dd55", "cast_id": 1012, "profile_path": null, "order": 8}, {"name": "Huell Howser", "character": "Backson (Voice)", "id": 184176, "credit_id": "52fe47e4c3a36847f814dd59", "cast_id": 1013, "profile_path": null, "order": 9}, {"name": "John Cleese", "character": "Narrator", "id": 8930, "credit_id": "52fe47e4c3a36847f814dd5d", "cast_id": 1014, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 10}], "directors": [{"name": "Stephen Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe47e4c3a36847f814dd1f", "profile_path": "/u3b80Ih4OglwadcChiXyYOxYtaz.jpg", "id": 227438}, {"name": "Don Hall", "department": "Directing", "job": "Director", "credit_id": "52fe47e4c3a36847f814dd25", "profile_path": null, "id": 227439}], "vote_average": 6.7, "runtime": 63}, "2011": {"poster_path": "/dYvyF1RlNokAd1N7Nek0vDpYsV6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IR", "name": "Iran"}], "revenue": 0, "overview": "In 1970s Iran, Marjane 'Marji' Statrapi watches events through her young eyes and her idealistic family of a long dream being fulfilled of the hated Shah's defeat in the Iranian Revolution of 1979. However as Marji grows up, she witnesses first hand how the new Iran, now ruled by Islamic fundamentalists, has become a repressive tyranny on its own.", "video": false, "id": 2011, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "Persepolis", "tagline": "", "vote_count": 93, "homepage": "http://www.sonypictures.com/classics/persepolis/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808417", "adult": false, "backdrop_path": "/fC6iX7PRXLKf6Wst8sYP0hNuyOi.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "France 3 Cin\u00e9ma", "id": 591}, {"name": "Sofica Europacorp", "id": 854}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2007-06-27", "popularity": 0.239322431401523, "original_title": "Persepolis", "budget": 7300000, "cast": [{"name": "Chiara Mastroianni", "character": "Marjane adulte et adolescente (voix)", "id": 20710, "credit_id": "52fe432cc3a36847f803fc5f", "cast_id": 7, "profile_path": "/ctBiQ3I0hQCT6sLVkmvI8Pc3XSt.jpg", "order": 0}, {"name": "Catherine Deneuve", "character": "M\u00e8re de Marjane (voix)", "id": 50, "credit_id": "52fe432cc3a36847f803fc57", "cast_id": 4, "profile_path": "/5xkwq8GelCwOIVtyZ15LVA0UJGJ.jpg", "order": 1}, {"name": "Danielle Darrieux", "character": "Grand-m\u00e8re de Marjane (voix)", "id": 236016, "credit_id": "52fe432cc3a36847f803fca9", "cast_id": 22, "profile_path": "/4o6Wjfx4ahEr1ldLLZ0aEF3OTkP.jpg", "order": 2}, {"name": "Simon Abkarian", "character": "P\u00e8re de Marjane (voix)", "id": 10917, "credit_id": "52fe432cc3a36847f803fc5b", "cast_id": 6, "profile_path": "/oR1F42rVMY8QsmjK0R8ST4RBBe0.jpg", "order": 3}, {"name": "Fran\u00e7ois Jerosme", "character": "Oncle Anouche (voix)", "id": 43780, "credit_id": "52fe432cc3a36847f803fc7f", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Gabrielle Lopes Benites", "character": "Marjane enfant (voix)", "id": 43779, "credit_id": "52fe432cc3a36847f803fc7b", "cast_id": 12, "profile_path": "/zUqyn3aQXTzeP1n8yd8Udt1twYA.jpg", "order": 5}, {"name": "Tilly Mandelbrot", "character": "Lali", "id": 585604, "credit_id": "53860b04c3a3681ada001624", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Paola Cortellesi", "character": "Marjane Satrapi (italian version voice)", "id": 133214, "credit_id": "52fe432cc3a36847f803fc95", "cast_id": 17, "profile_path": "/nTCZ4gHQ6CIujADUL3imcVCPLiM.jpg", "order": 7}, {"name": "Licia Maglietta", "character": "Tadji Satrapi, madre di Marjane (italian version voice)", "id": 7540, "credit_id": "52fe432cc3a36847f803fc99", "cast_id": 18, "profile_path": "/uHqtZ6DVdhNOfijBq35XEH642Yh.jpg", "order": 8}, {"name": "Sergio Castellitto", "character": "Ebi Satrapi, padre di Marjane (italian version voice)", "id": 2166, "credit_id": "52fe432cc3a36847f803fc9d", "cast_id": 19, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 9}, {"name": "Angelica Bolognesi", "character": "Marjane da piccola (italian version voice)", "id": 932401, "credit_id": "52fe432cc3a36847f803fca1", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Miranda Bonansea", "character": "La nonna di Marjane (italian version voice)", "id": 932402, "credit_id": "52fe432cc3a36847f803fca5", "cast_id": 21, "profile_path": null, "order": 11}], "directors": [{"name": "Vincent Paronnaud", "department": "Directing", "job": "Director", "credit_id": "52fe432cc3a36847f803fc47", "profile_path": null, "id": 20709}, {"name": "Marjane Satrapi", "department": "Directing", "job": "Director", "credit_id": "52fe432cc3a36847f803fc4d", "profile_path": "/zkUWH6rO4TC8Jb8IhSo2QyDN3Ty.jpg", "id": 20659}], "vote_average": 7.4, "runtime": 95}, "10204": {"poster_path": "/2glntoCztzLkfjajsJKNOSY0vpn.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72178895, "overview": "A bet pits a British inventor, a Chinese thief, and a French artist on a worldwide adventure that they can circle the globe in 80 days.", "video": false, "id": 10204, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Around the World in 80 Days", "tagline": "Let your imagination soar.", "vote_count": 148, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0327437", "adult": false, "backdrop_path": "/8MquMy25UgrHvphvsrQ3N7tz1VS.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walden Media", "id": 10221}], "release_date": "2004-06-16", "popularity": 1.31409126967217, "original_title": "Around the World in 80 Days", "budget": 110000000, "cast": [{"name": "Jackie Chan", "character": "Passepartout / Lau Xing", "id": 18897, "credit_id": "52fe43419251416c75009763", "cast_id": 12, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "C\u00e9cile De France", "character": "Monique Laroche", "id": 17522, "credit_id": "52fe43419251416c7500976f", "cast_id": 15, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 1}, {"name": "Robert Fyfe", "character": "Jean Michel", "id": 64160, "credit_id": "52fe43419251416c75009767", "cast_id": 13, "profile_path": "/mjPX6LtOGfZFztfAu6ZK9o0TfgP.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Lord Kelvin", "id": 388, "credit_id": "52fe43419251416c7500976b", "cast_id": 14, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Will Forte", "character": "Policeman", "id": 62831, "credit_id": "52fe43419251416c75009773", "cast_id": 16, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 4}, {"name": "Mark Addy", "character": "Steamer Captain", "id": 13633, "credit_id": "52fe43419251416c75009777", "cast_id": 17, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Phileas Fogg", "id": 4581, "credit_id": "52fe43419251416c7500977b", "cast_id": 18, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Kathy Bates", "character": "Queen Victoria", "id": 8534, "credit_id": "52fe43419251416c7500977f", "cast_id": 19, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 7}, {"name": "Daniel Wu", "character": "Bak Mei", "id": 64436, "credit_id": "52fe43419251416c75009783", "cast_id": 20, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 8}, {"name": "Arnold Schwarzenegger", "character": "Prince Hapi", "id": 1100, "credit_id": "52fe43419251416c75009787", "cast_id": 21, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 9}, {"name": "Maggie Q", "character": "Female Agent", "id": 21045, "credit_id": "52fe43419251416c7500978b", "cast_id": 22, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 10}, {"name": "Sammo Hung", "character": "Wong Fei Hung", "id": 62410, "credit_id": "52fe43419251416c7500978f", "cast_id": 23, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 11}, {"name": "Karen Mok", "character": "General Fang", "id": 57831, "credit_id": "52fe43419251416c75009793", "cast_id": 24, "profile_path": "/hfxRryhoRtT05ukFa7ooSM8pDhN.jpg", "order": 12}, {"name": "Richard Branson", "character": "Balloon Man", "id": 158079, "credit_id": "52fe43419251416c75009797", "cast_id": 25, "profile_path": "/7RF4iztNoZebQWp0uKvEXs0mvLa.jpg", "order": 13}, {"name": "John Cleese", "character": "Grizzled Sergeant", "id": 8930, "credit_id": "52fe43419251416c7500979b", "cast_id": 26, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 14}, {"name": "Natalie Denise Sperl", "character": "Stunning Woman", "id": 203194, "credit_id": "52fe43419251416c7500979f", "cast_id": 27, "profile_path": "/ygyKQ6oDLLSIzcW3fspnwJkH6dv.jpg", "order": 15}, {"name": "Ian McNeice", "character": "Colonel Kitchener", "id": 3547, "credit_id": "52fe43419251416c750097a3", "cast_id": 28, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 16}, {"name": "David Ryall", "character": "Lord Salisbury", "id": 27822, "credit_id": "52fe43419251416c750097a7", "cast_id": 29, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 17}, {"name": "Roger Hammond", "character": "Lord Rhodes", "id": 27660, "credit_id": "52fe43419251416c750097ab", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Adam Godley", "character": "Mr. Sutton", "id": 23429, "credit_id": "52fe43419251416c750097af", "cast_id": 31, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 19}, {"name": "Wolfram Teufel", "character": "Belgian Dignitary", "id": 955709, "credit_id": "52fe43419251416c750097b3", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Ewen Bremner", "character": "Inspector Fix", "id": 1125, "credit_id": "52fe43419251416c750097b7", "cast_id": 33, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 21}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe43419251416c75009723", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 5.7, "runtime": 120}, "2018": {"poster_path": "/fiBb7aDRdYc7VAw0iHP9Bl9jZdc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94728529, "overview": "Mary Fiore, San Francisco's premiere wedding planner is rescued from an accident by the man of her dreams, pediatrician Steve Edison, only to find he is the fianc\u00e9 of her latest client, wealthy Fran Donnolly. As Mary continues making the wedding arrangements, she and Steve are put into a string of uncomfortable situations that force them to face their mutual attraction.", "video": false, "id": 2018, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Wedding Planner", "tagline": "His big day is her big problem.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0209475", "adult": false, "backdrop_path": "/u0sfuvRTKILAU3yMjBdAht38lAg.jpg", "production_companies": [{"name": "Dee Gee Entertainment", "id": 869}, {"name": "Tapestry Films", "id": 870}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2001-01-26", "popularity": 1.28649583748966, "original_title": "The Wedding Planner", "budget": 35000000, "cast": [{"name": "Jennifer Lopez", "character": "Mary Fiore", "id": 16866, "credit_id": "52fe432dc3a36847f80400d7", "cast_id": 16, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Steve Edison", "id": 10297, "credit_id": "52fe432dc3a36847f80400db", "cast_id": 17, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Justin Chambers", "character": "Massimo", "id": 20746, "credit_id": "52fe432dc3a36847f80400df", "cast_id": 18, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 2}, {"name": "Joanna Gleason", "character": "Mrs. Donolly", "id": 20747, "credit_id": "52fe432dc3a36847f80400e3", "cast_id": 19, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 3}, {"name": "Lou Myers", "character": "Burt Weinberg", "id": 20748, "credit_id": "52fe432dc3a36847f80400e7", "cast_id": 20, "profile_path": null, "order": 4}, {"name": "Kathy Najimy", "character": "Geri", "id": 11074, "credit_id": "52fe432dc3a36847f80400eb", "cast_id": 21, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 5}, {"name": "Charles Kimbrough", "character": "Mr. Donolly", "id": 20749, "credit_id": "52fe432dc3a36847f80400ef", "cast_id": 22, "profile_path": "/zDQ8y4TZBYN7Q2No94AAyP94osZ.jpg", "order": 6}, {"name": "Judy Greer", "character": "Penny", "id": 20750, "credit_id": "52fe432dc3a36847f80400f3", "cast_id": 23, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 7}, {"name": "Bridgette Wilson", "character": "Fran Donolly", "id": 20751, "credit_id": "52fe432dc3a36847f80400f7", "cast_id": 24, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 8}, {"name": "Alex Rocco", "character": "Salvatore", "id": 20752, "credit_id": "52fe432dc3a36847f80400fb", "cast_id": 25, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 9}, {"name": "Kevin Pollak", "character": "Dr. John Dojny", "id": 7166, "credit_id": "52fe432dc3a36847f80400ff", "cast_id": 26, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 10}, {"name": "Fred Willard", "character": "Basil St. Mosely", "id": 20753, "credit_id": "52fe432dc3a36847f8040103", "cast_id": 27, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 11}, {"name": "Frances Bay", "character": "Dottie", "id": 11794, "credit_id": "52fe432dc3a36847f8040107", "cast_id": 28, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 12}, {"name": "Philip Pavel", "character": "Benton", "id": 20754, "credit_id": "52fe432dc3a36847f804010b", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Natalia Jaroszyk", "character": "Crying Bride", "id": 20755, "credit_id": "52fe432dc3a36847f804010f", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Fabiana Udenio", "character": "Anna Bosco", "id": 13923, "credit_id": "52fe432dc3a36847f8040113", "cast_id": 31, "profile_path": "/60hBZQm3FVtQ99qNmLDUT93z6S6.jpg", "order": 15}, {"name": "Susan Mosher", "character": "Frieda", "id": 20756, "credit_id": "52fe432dc3a36847f8040117", "cast_id": 32, "profile_path": null, "order": 16}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe432cc3a36847f804007f", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.5, "runtime": 103}, "2019": {"poster_path": "/ssI1PsqGM2PfE2rspEzpLkiDGZE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74189677, "overview": "Natasha Binder comes to New Orleans looking for her father, who has gone missing. In doing so, she meets a very hard man called Chance. He helps her find out that her father was killed by an organisation who sell the opportunity to hunt human prey. They are taking advantage of a police strike in New Orleans. Will the Muscles from Brussels win through?", "video": false, "id": 2019, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Hard Target", "tagline": "Don't hunt what you can't kill.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107076", "adult": false, "backdrop_path": "/pZlaL2bn45k87in98N3P57SsDiT.jpg", "production_companies": [{"name": "Alphaville Films", "id": 11462}, {"name": "Universal Pictures", "id": 33}, {"name": "Renaissance Pictures", "id": 467}], "release_date": "1993-08-20", "popularity": 0.325144678480161, "original_title": "Hard Target", "budget": 18000000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Chance Boudreaux", "id": 15111, "credit_id": "52fe432dc3a36847f8040187", "cast_id": 11, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Arnold Vosloo", "character": "Pik van Cleef", "id": 16743, "credit_id": "52fe432dc3a36847f804018b", "cast_id": 12, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 1}, {"name": "Lance Henriksen", "character": "Emil Fouchon", "id": 2714, "credit_id": "52fe432dc3a36847f804018f", "cast_id": 13, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 2}, {"name": "Yancy Butler", "character": "Natasha Binder", "id": 20759, "credit_id": "52fe432dc3a36847f8040193", "cast_id": 14, "profile_path": "/emcS8cLp5aEEMdJS4Am0TLiX6WA.jpg", "order": 3}, {"name": "Willie C. Carpenter", "character": "Elijah Roper", "id": 20760, "credit_id": "52fe432dc3a36847f8040197", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Eliott Keener", "character": "Randal Poe", "id": 9173, "credit_id": "52fe432dc3a36847f804019b", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Sven-Ole Thorsen", "character": "Stephan", "id": 20761, "credit_id": "52fe432dc3a36847f804019f", "cast_id": 17, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 6}, {"name": "Chuck Pfarrer", "character": "Douglas Binder", "id": 20757, "credit_id": "52fe432dc3a36847f80401a3", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Robert Apisa", "character": "Mr. Lopacki", "id": 20762, "credit_id": "52fe432dc3a36847f80401a7", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Douglas Forsythe Rye", "character": "Frick", "id": 20763, "credit_id": "52fe432dc3a36847f80401ab", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Mike Leinert", "character": "Frack", "id": 20764, "credit_id": "52fe432dc3a36847f80401af", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Lenore Banks", "character": "Marie", "id": 20765, "credit_id": "52fe432dc3a36847f80401b3", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Wilford Brimley", "character": "Uncle Douvee", "id": 11065, "credit_id": "52fe432dc3a36847f80401b7", "cast_id": 23, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 12}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f804014d", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.7, "runtime": 97}, "18405": {"poster_path": "/tpjP9MLDRq6aC1MTpFcJEOYOGtj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Last House on the Left follows a group of teenage girls heading into the city when they hook up with a gang of drug-addled ne'er-do-wells and are brutally murdered. The killers find their way to the home of one of their victim's parents, where both father and mother exact a horrible revenge.", "video": false, "id": 18405, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Last House on the Left", "tagline": "If someone hurt someone you love, how far would you go to get revenge?", "vote_count": 90, "homepage": "http://www.thelasthouseontheleft.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0844708", "adult": false, "backdrop_path": "/6s2sJ03lXNXMIsv5HjU2JeiuLaO.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Film Afrika", "id": 773}, {"name": "Sean S. Cunningham Films", "id": 17611}], "release_date": "2009-03-13", "popularity": 0.211673972573433, "original_title": "The Last House on the Left", "budget": 0, "cast": [{"name": "Tony Goldwyn", "character": "John Collingwood", "id": 3417, "credit_id": "52fe47799251416c7509a9f5", "cast_id": 9, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 0}, {"name": "Monica Potter", "character": "Emma Collingwood", "id": 2140, "credit_id": "52fe47799251416c7509a9eb", "cast_id": 7, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 1}, {"name": "Sara Paxton", "character": "Mari Collingwood", "id": 60072, "credit_id": "52fe47799251416c7509a9e7", "cast_id": 6, "profile_path": "/6tgy3NOeP2Cd1NiW9xHETQSbfvB.jpg", "order": 2}, {"name": "Martha MacIsaac", "character": "Paige", "id": 54692, "credit_id": "52fe47799251416c7509a9f9", "cast_id": 10, "profile_path": "/iohyyedpbE1sZcJjYU00f8DnLLJ.jpg", "order": 3}, {"name": "Spencer Treat Clark", "character": "Justin", "id": 4012, "credit_id": "53cc4b200e0a265df0002bd5", "cast_id": 21, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 4}, {"name": "Garret Dillahunt", "character": "Krug", "id": 39520, "credit_id": "52fe47799251416c7509a9d3", "cast_id": 1, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 5}, {"name": "Riki Lindhome", "character": "Sadie", "id": 453, "credit_id": "52fe47799251416c7509a9df", "cast_id": 4, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 6}, {"name": "Joshua Cox", "character": "Giles", "id": 78150, "credit_id": "52fe47799251416c7509a9db", "cast_id": 3, "profile_path": "/bk2zLyfI2Hm2bv6MtdTFMVzidXw.jpg", "order": 7}, {"name": "Michael Bowen", "character": "Morton", "id": 2234, "credit_id": "52fe47799251416c7509a9d7", "cast_id": 2, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 8}, {"name": "Aaron Paul", "character": "Francis", "id": 84497, "credit_id": "52fe47799251416c7509a9e3", "cast_id": 5, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 9}], "directors": [{"name": "Dennis Iliadis", "department": "Directing", "job": "Director", "credit_id": "52fe47799251416c7509a9f1", "profile_path": "/hYagrD5DSqvYXHIBhRwU1cjhPoJ.jpg", "id": 94108}], "vote_average": 6.2, "runtime": 110}, "2022": {"poster_path": "/3zFQcZbJzXv5VH3WgQxXbDNgONu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171269535, "overview": "When Longfellow Deeds, a small-town pizzeria owner and poet, inherits $40 billion from his deceased uncle, he quickly begins rolling in a different kind of dough. Moving to the big city, Deeds finds himself besieged by opportunists all gunning for their piece of the pie. Babe, a television tabloid reporter, poses as an innocent small-town girl to do an expos\u00e9 on Deeds.", "video": false, "id": 2022, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Mr. Deeds", "tagline": "Small town kid, big time right hook.", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0280590", "adult": false, "backdrop_path": "/bDPs32HRBalnN8HyYMH0xoG4VIW.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Happy Madison", "id": 878}, {"name": "Out of the Blue... Entertainment", "id": 879}], "release_date": "2002-06-28", "popularity": 0.802351153786876, "original_title": "Mr. Deeds", "budget": 50000000, "cast": [{"name": "Adam Sandler", "character": "Longfellow Deeds", "id": 19292, "credit_id": "52fe432dc3a36847f8040331", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Babe Bennett", "id": 1920, "credit_id": "52fe432dc3a36847f8040335", "cast_id": 2, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "John Turturro", "character": "Emilio Lopez", "id": 1241, "credit_id": "52fe432dc3a36847f8040339", "cast_id": 3, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 2}, {"name": "Allen Covert", "character": "Marty", "id": 20818, "credit_id": "52fe432dc3a36847f804033d", "cast_id": 4, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 3}, {"name": "Peter Gallagher", "character": "Chuck Cedar", "id": 8212, "credit_id": "52fe432dc3a36847f8040341", "cast_id": 5, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 4}, {"name": "Erick Avari", "character": "Cecil Anderson", "id": 18917, "credit_id": "52fe432dc3a36847f8040345", "cast_id": 6, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 5}, {"name": "Jared Harris", "character": "Mac McGrath", "id": 15440, "credit_id": "52fe432dc3a36847f8040349", "cast_id": 7, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 6}, {"name": "Steve Buscemi", "character": "Crazy Eyes", "id": 884, "credit_id": "52fe432dc3a36847f804034d", "cast_id": 8, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 7}, {"name": "Conchata Ferrell", "character": "Jan", "id": 1909, "credit_id": "52fe432dc3a36847f8040351", "cast_id": 9, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 8}, {"name": "Peter Dante", "character": "Murph", "id": 20819, "credit_id": "52fe432dc3a36847f8040355", "cast_id": 10, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 9}, {"name": "Harve Presnell", "character": "Preston Blake", "id": 3907, "credit_id": "52fe432dc3a36847f8040359", "cast_id": 11, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 10}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f804039b", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.9, "runtime": 96}, "116711": {"poster_path": "/fdXA81BOdZ3pEyBlY8UUvuJj136.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 268426634, "overview": "A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world -- and ours.", "video": false, "id": 116711, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Epic", "tagline": "Discover a world beyond your imagination", "vote_count": 551, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0848537", "adult": false, "backdrop_path": "/v6w2o3ji8aVLph6zNgR5yDGQfmS.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 26162}, {"name": "Twentieth Century Fox Animation", "id": 11749}], "release_date": "2013-05-24", "popularity": 1.28693760773075, "original_title": "Epic", "budget": 100000000, "cast": [{"name": "Josh Hutcherson", "character": "Nod (voice)", "id": 27972, "credit_id": "52fe4b9ac3a36847f820b875", "cast_id": 11, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 0}, {"name": "Amanda Seyfried", "character": "Mary Katherine (voice)", "id": 71070, "credit_id": "52fe4b9ac3a36847f820b879", "cast_id": 12, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 1}, {"name": "Colin Farrell", "character": "Ronin (voice)", "id": 72466, "credit_id": "52fe4b9ac3a36847f820b87d", "cast_id": 13, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 2}, {"name": "Jason Sudeikis", "character": "Bomba (voice)", "id": 58224, "credit_id": "52fe4b9ac3a36847f820b881", "cast_id": 14, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 3}, {"name": "Aziz Ansari", "character": "Mub (voice)", "id": 86626, "credit_id": "52fe4b9ac3a36847f820b885", "cast_id": 15, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 4}, {"name": "Beyonc\u00e9 Knowles", "character": "Queen Tara (voice)", "id": 14386, "credit_id": "52fe4b9ac3a36847f820b889", "cast_id": 16, "profile_path": "/mDDpeDtxuL9Af59rOB8DAjni50A.jpg", "order": 5}, {"name": "Judah Friedlander", "character": "Taxi Driver (voice)", "id": 52860, "credit_id": "52fe4b9ac3a36847f820b88d", "cast_id": 18, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 6}, {"name": "Steven Tyler", "character": "Nim Galuu (voice)", "id": 37935, "credit_id": "52fe4b9ac3a36847f820b891", "cast_id": 19, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 7}, {"name": "Pitbull", "character": "Bufo (voice)", "id": 1009740, "credit_id": "52fe4b9ac3a36847f820b895", "cast_id": 20, "profile_path": "/djoNyIxnlwlV8OxG4jNc9MtT7uH.jpg", "order": 8}, {"name": "Blake Anderson", "character": "Dagda (voice)", "id": 521564, "credit_id": "52fe4b9ac3a36847f820b899", "cast_id": 21, "profile_path": "/ve1wEqjY5dwwVaLzJjXTr9clBZ4.jpg", "order": 9}, {"name": "Christoph Waltz", "character": "Mandrake (voice)", "id": 27319, "credit_id": "52fe4b9ac3a36847f820b89d", "cast_id": 22, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 10}, {"name": "John DiMaggio", "character": "Pinecone Jinn (voice)", "id": 294916, "credit_id": "52fe4b9ac3a36847f820b8a1", "cast_id": 23, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 11}, {"name": "Allison Bills", "character": "Dandelion Jinn (voice)", "id": 1273228, "credit_id": "52fe4b9ac3a36847f820b8c9", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Todd Cummings", "character": "Fruit Fly (Old) (voice)", "id": 1273229, "credit_id": "52fe4b9ac3a36847f820b8cd", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Troy Evans", "character": "Thistle Jinn (voice)", "id": 31006, "credit_id": "52fe4b9ac3a36847f820b8d1", "cast_id": 32, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 14}, {"name": "Emma Kenney", "character": "Marigold Girl (voice)", "id": 1252801, "credit_id": "54c499c8c3a36878d00077fd", "cast_id": 33, "profile_path": "/mQyXSGLYru2Q5pbCOoEjovyVcN5.jpg", "order": 15}], "directors": [{"name": "Chris Wedge", "department": "Directing", "job": "Director", "credit_id": "52fe4b9ac3a36847f820b847", "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "id": 5713}], "vote_average": 6.5, "runtime": 102}, "2024": {"poster_path": "/yQE8Ag9t1wQHjY58rPzJX8G1iIz.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215294342, "overview": "After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.", "video": false, "id": 2024, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Patriot", "tagline": "Some things are worth fighting for.", "vote_count": 340, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0187393", "adult": false, "backdrop_path": "/yQWiRYbsO0ceVm6EJ7TUaFXbYx1.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Mutual Film Company", "id": 762}, {"name": "Global Entertainment Productions GmbH & Company Medien KG", "id": 9269}], "release_date": "2000-03-16", "popularity": 1.57092083374662, "original_title": "The Patriot", "budget": 110000000, "cast": [{"name": "Mel Gibson", "character": "Benjamin Martin", "id": 2461, "credit_id": "52fe432dc3a36847f80404d7", "cast_id": 12, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Heath Ledger", "character": "Gabriel Martin", "id": 1810, "credit_id": "52fe432dc3a36847f80404db", "cast_id": 13, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 1}, {"name": "Joely Richardson", "character": "Charlotte Selton", "id": 20810, "credit_id": "52fe432dc3a36847f80404df", "cast_id": 14, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 2}, {"name": "Jason Isaacs", "character": "Col. William Tavington", "id": 11355, "credit_id": "52fe432dc3a36847f80404e3", "cast_id": 15, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 3}, {"name": "Tch\u00e9ky Karyo", "character": "Jean Villeneuve", "id": 10698, "credit_id": "52fe432dc3a36847f80404e7", "cast_id": 16, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 4}, {"name": "Chris Cooper", "character": "Col. Harry Burwell", "id": 2955, "credit_id": "52fe432dc3a36847f80404eb", "cast_id": 17, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 5}, {"name": "Lisa Brenner", "character": "Anne Howard", "id": 20811, "credit_id": "52fe432dc3a36847f80404ef", "cast_id": 18, "profile_path": "/hTW5X0IQroIyQ8N1Ydqzd2lEuz4.jpg", "order": 6}, {"name": "Tom Wilkinson", "character": "Gen. Cornwallis", "id": 207, "credit_id": "52fe432dc3a36847f80404f3", "cast_id": 19, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 7}, {"name": "Leon Rippy", "character": "John Billings", "id": 15374, "credit_id": "52fe432dc3a36847f80404f7", "cast_id": 20, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 8}, {"name": "Donal Logue", "character": "Dan Scott", "id": 10825, "credit_id": "52fe432dc3a36847f80404fb", "cast_id": 21, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 9}, {"name": "Adam Baldwin", "character": "Capt. Wilkins", "id": 2059, "credit_id": "52fe432dc3a36847f80404ff", "cast_id": 22, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 10}, {"name": "Jay Arlen Jones", "character": "Occam", "id": 20812, "credit_id": "52fe432dc3a36847f8040503", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Joey D. Vieira", "character": "Peter Howard", "id": 20813, "credit_id": "52fe432dc3a36847f8040507", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Gregory Smith", "character": "Thomas Martin", "id": 20814, "credit_id": "52fe432dc3a36847f804050b", "cast_id": 25, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 13}, {"name": "Skye McCole Bartusiak", "character": "Susan Martin", "id": 20815, "credit_id": "52fe432dc3a36847f804050f", "cast_id": 26, "profile_path": "/8CylPAKx5YfX3xryjmj4M5YTLZT.jpg", "order": 14}, {"name": "Trevor Morgan", "character": "Nathan Martin", "id": 4940, "credit_id": "52fe432dc3a36847f8040513", "cast_id": 27, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 15}, {"name": "Bryan Chafin", "character": "Samuel Martin", "id": 20816, "credit_id": "52fe432dc3a36847f8040517", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Peter Woodward", "character": "Charles O'Hara", "id": 20817, "credit_id": "52fe432dc3a36847f804051b", "cast_id": 29, "profile_path": "/fMybhOr9I4K6fC1Bg2i6jXLV0Dg.jpg", "order": 17}, {"name": "Logan Lerman", "character": "William Martin", "id": 33235, "credit_id": "52fe432dc3a36847f804051f", "cast_id": 30, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 18}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f8040497", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.6, "runtime": 165}, "124905": {"poster_path": "/szVwkB4H5yyOJBVuQ432b9boO0N.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 524976069, "overview": "Fifteen years after an 'incident' at a Japanese nuclear power plant, physicist Joe Brody joins forces with his soldier son Ford to discover for themselves what really happened. What they uncover is prelude to global-threatening devastation. An epic rebirth to Toho's iconic Godzilla, this spectacular adventure pits the world's most famous monster against malevolent creatures who, bolstered by humanity's scientific arrogance, threaten our very existence.", "video": false, "id": 124905, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Godzilla", "tagline": "A king's arrival is never silent.", "vote_count": 1185, "homepage": "http://www.godzillamovie.com/", "belongs_to_collection": {"backdrop_path": "/8k47vHM7YtLTH10ZOB5m07fPMMc.jpg", "poster_path": "/nncQXO299wkUWsjQUtpvRmSyFgP.jpg", "id": 221541, "name": "Godzilla Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "jv", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0831387", "adult": false, "backdrop_path": "/2WKcxQbTVkLUgoS5kPnHlecbj02.jpg", "production_companies": [{"name": "RatPac-Dune Entertainment", "id": 41624}, {"name": "Toho Company", "id": 882}, {"name": "Legendary Pictures", "id": 923}, {"name": "Warner Bros.", "id": 6194}, {"name": "Disruption Entertainment", "id": 10256}], "release_date": "2014-05-16", "popularity": 3.24985129485387, "original_title": "Godzilla", "budget": 160000000, "cast": [{"name": "Aaron Taylor-Johnson", "character": "Ford Brody", "id": 27428, "credit_id": "52fe4ab8c3a368484e163445", "cast_id": 23, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 0}, {"name": "CJ Adams", "character": "Young Ford", "id": 1107800, "credit_id": "53fa0824c3a368735e00325f", "cast_id": 39, "profile_path": "/czZGg0TvKY38w0cd7XXqvTIqXy0.jpg", "order": 1}, {"name": "Ken Watanabe", "character": "Dr. Ishiro Serizawa", "id": 3899, "credit_id": "52fe4ab8c3a368484e163413", "cast_id": 9, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 2}, {"name": "Bryan Cranston", "character": "Joe Brody", "id": 17419, "credit_id": "52fe4ab8c3a368484e16341d", "cast_id": 12, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 3}, {"name": "Elizabeth Olsen", "character": "Elle Brody", "id": 550843, "credit_id": "52fe4ab8c3a368484e163421", "cast_id": 13, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 4}, {"name": "Carson Bolde", "character": "Sam Brody", "id": 1356528, "credit_id": "53fa0891c3a3687352003194", "cast_id": 40, "profile_path": "/9pQXzYgErEFGmQVuwjHx2wbrLoY.jpg", "order": 5}, {"name": "Sally Hawkins", "character": "Vivienne Graham", "id": 39658, "credit_id": "52fe4ab8c3a368484e163429", "cast_id": 15, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 6}, {"name": "Juliette Binoche", "character": "Sandra Brody", "id": 1137, "credit_id": "52fe4ab8c3a368484e163425", "cast_id": 14, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 7}, {"name": "David Strathairn", "character": "Admiral William Stenz", "id": 11064, "credit_id": "52fe4ab8c3a368484e16342d", "cast_id": 16, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 8}, {"name": "Richard T. Jones", "character": "Captain Russell Hampton", "id": 55755, "credit_id": "53fa09e1c3a368735b003184", "cast_id": 41, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 9}, {"name": "Victor Rasuk", "character": "Tre Morales", "id": 59251, "credit_id": "52fe4ab8c3a368484e163431", "cast_id": 17, "profile_path": "/zrNF2SQpnsOQsFHTKVs69x1TjEW.jpg", "order": 10}, {"name": "Patrick Sabongui", "character": "Master Sargeant Marcus Waltz", "id": 102742, "credit_id": "52fe4ab8c3a368484e16343d", "cast_id": 21, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 11}, {"name": "Jared Keeso", "character": "Jump Master", "id": 205053, "credit_id": "53fa0a29c3a36873610030cc", "cast_id": 42, "profile_path": "/hRoPfKnk8adZUfQqmi1O109BrFp.jpg", "order": 12}, {"name": "Luc Roderique", "character": "Bomb Tracker", "id": 1356538, "credit_id": "53fa0a8ac3a368735b003195", "cast_id": 43, "profile_path": "/jxnwn6u8RFNo9U9lcBFm0UORypT.jpg", "order": 13}, {"name": "James Pizzinato", "character": "HALO Jumper", "id": 134609, "credit_id": "53fa0bab0e0a267a7b004f8f", "cast_id": 44, "profile_path": "/jFUcy9ilvrXoigFdpeXtXJSTjp4.jpg", "order": 14}, {"name": "Al Sapienza", "character": "Huddleston", "id": 154917, "credit_id": "52fe4ab8c3a368484e163439", "cast_id": 20, "profile_path": "/acfzjSs4lbz5EdCWfZkB45Zxn8y.jpg", "order": 15}, {"name": "Brian Markinson", "character": "Whelan", "id": 28004, "credit_id": "52fe4ab8c3a368484e163435", "cast_id": 19, "profile_path": "/CL63sueT7SSBZQwoPH23FQEIR8.jpg", "order": 16}, {"name": "Yuki Morita", "character": "Akio's Mother", "id": 1278772, "credit_id": "52fe4ab8c3a368484e163441", "cast_id": 22, "profile_path": "/jtdwAv4LvWURYTQ5LdGmSKppUPV.jpg", "order": 17}, {"name": "Chris Shields", "character": "Dispatch Officer", "id": 198615, "credit_id": "53aca5f60e0a2659800006ed", "cast_id": 26, "profile_path": "/cKxfPfZMqCingbrn6MK3OSUhUVF.jpg", "order": 18}, {"name": "Catherine Lough Haggquist", "character": "PO Martinez", "id": 77622, "credit_id": "544f6eaac3a368023300175d", "cast_id": 116, "profile_path": "/bXyoDG0aMwUtObFgLgBi7NkviDY.jpg", "order": 19}, {"name": "Eric Keenleyside", "character": "Boyd", "id": 2250, "credit_id": "544f6eda0e0a263a0a0017ca", "cast_id": 117, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 20}, {"name": "Ken Yamamura", "character": "Takashi", "id": 1155715, "credit_id": "544f6ef9c3a3680233001764", "cast_id": 118, "profile_path": "/jDMgbLU3lziydK9HMS5yvARSPCH.jpg", "order": 21}, {"name": "Hiro Kanagawa", "character": "Hayato", "id": 60719, "credit_id": "544f6f2fc3a3680236001806", "cast_id": 119, "profile_path": "/2vDjvbgOMUx39j2kMcjLvH8bxpu.jpg", "order": 22}, {"name": "James D. Dever", "character": "Captain Freeman", "id": 1205880, "credit_id": "544f6f65c3a368532b001845", "cast_id": 120, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 23}, {"name": "Ty Olsson", "character": "Jainway", "id": 42711, "credit_id": "544f6fc50e0a263a100018bc", "cast_id": 121, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 24}, {"name": "Kurt Max Runte", "character": "Crow's Nest Tech", "id": 60721, "credit_id": "544f6fecc3a3680233001771", "cast_id": 122, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 25}, {"name": "Jill Teed", "character": "Head Nurse", "id": 21214, "credit_id": "544f701bc3a368022a0019a2", "cast_id": 123, "profile_path": "/oiIvgxGTDfh3l8Sellhn9W7Ve4b.jpg", "order": 26}, {"name": "Anthony Konechny", "character": "Thach", "id": 1381295, "credit_id": "54fb595c9251417bb8001cf4", "cast_id": 124, "profile_path": null, "order": 27}], "directors": [{"name": "Gareth Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe4ab8c3a368484e1633eb", "profile_path": "/nUs4hkGgByttwgNYafKlDvGzUsi.jpg", "id": 129894}], "vote_average": 6.2, "runtime": 123}, "2026": {"poster_path": "/q9q1rzyacXLbKyCSRrBiPwapXbU.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77944725, "overview": "A police officer is wracked by guilt from a prior stint as a negotiator. When a mafia accountant is taken hostage on his beat, he must negotiate the standoff, even as his own family is held captive by the mob.", "video": false, "id": 2026, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Hostage", "tagline": "Every Second Counts", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0340163", "adult": false, "backdrop_path": "/k8JTzgjrPfhOGKJqTgBgc29wUel.jpg", "production_companies": [{"name": "Yari Film Group", "id": 2448}, {"name": "Miramax Films", "id": 14}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Stratus Film Co.", "id": 11027}, {"name": "Syndicate Films International", "id": 26947}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG II", "id": 26948}, {"name": "Hostage GmbH", "id": 26949}], "release_date": "2005-03-09", "popularity": 0.583203366824465, "original_title": "Hostage", "budget": 52000000, "cast": [{"name": "Bruce Willis", "character": "Jeff Talley", "id": 62, "credit_id": "52fe432ec3a36847f8040619", "cast_id": 12, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Kevin Pollak", "character": "Walter Smith", "id": 7166, "credit_id": "52fe432ec3a36847f804061d", "cast_id": 13, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 1}, {"name": "Jimmy Bennett", "character": "Tommy Smith", "id": 6860, "credit_id": "52fe432ec3a36847f8040621", "cast_id": 14, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 2}, {"name": "Michelle Horn", "character": "Jennifer Smith", "id": 20847, "credit_id": "52fe432ec3a36847f8040625", "cast_id": 15, "profile_path": "/eFOyaLVvUTcxFuANlhMdT8oqfAu.jpg", "order": 3}, {"name": "Ben Foster", "character": "Mars Krupcheck", "id": 11107, "credit_id": "52fe432ec3a36847f8040629", "cast_id": 16, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 4}, {"name": "Jonathan Tucker", "character": "Dennis Kelly", "id": 17243, "credit_id": "52fe432ec3a36847f804062d", "cast_id": 17, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 5}, {"name": "Marshall Allman", "character": "Kevin Kelly", "id": 17347, "credit_id": "52fe432ec3a36847f8040631", "cast_id": 18, "profile_path": "/fZmvykaxxEWAR38be5MJedCKNO0.jpg", "order": 6}, {"name": "Serena Scott Thomas", "character": "Jane Talley", "id": 10780, "credit_id": "52fe432ec3a36847f8040635", "cast_id": 19, "profile_path": "/dvTjb6V46wOo9JGgcViU54UoZNN.jpg", "order": 7}, {"name": "Rumer Willis", "character": "Amanda Talley", "id": 20848, "credit_id": "52fe432ec3a36847f8040639", "cast_id": 20, "profile_path": "/mj8reEFyNEmeYAO3hsmLUaDfNO0.jpg", "order": 8}, {"name": "Marjean Holden", "character": "Carol Flores", "id": 106728, "credit_id": "52fe432ec3a36847f8040643", "cast_id": 22, "profile_path": "/6oK37CIHfEeJrn2ZdefS0nx9WnW.jpg", "order": 9}, {"name": "Kathryn Joosten", "character": "Louise", "id": 106935, "credit_id": "52fe432ec3a36847f8040647", "cast_id": 23, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 10}, {"name": "Kim Coates", "character": "The Watchman", "id": 8335, "credit_id": "54f22a78c3a368324500251c", "cast_id": 28, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 11}, {"name": "Art La Fleur", "character": "Bill Jorgenson", "id": 1350538, "credit_id": "54f22aa9c3a3681b710001f5", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Glenn Morshower", "character": "Lt. Leifitz", "id": 12797, "credit_id": "54f22adfc3a3683245002523", "cast_id": 30, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 13}], "directors": [{"name": "Florent-Emilio Siri", "department": "Directing", "job": "Director", "credit_id": "52fe432ec3a36847f804064d", "profile_path": "/ub0u9aMCQwO43jpEFgxnkS6jpl6.jpg", "id": 1011158}], "vote_average": 5.9, "runtime": 113}, "10220": {"poster_path": "/j5IzmdWdO5CqgeoyJLZ1dO7w375.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22921898, "overview": "A young man is a reformed gambler who must return to playing big stakes poker to help a friend pay off loan sharks.", "video": false, "id": 10220, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Rounders", "tagline": "Trust everyone... But always cut the cards.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0128442", "adult": false, "backdrop_path": "/hzbeuT5WezSPdf8LYuLlg7KQVyk.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "1998-09-11", "popularity": 0.77526559495037, "original_title": "Rounders", "budget": 12000000, "cast": [{"name": "Matt Damon", "character": "Mike McDermott", "id": 1892, "credit_id": "52fe43449251416c75009f1b", "cast_id": 1, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "John Turturro", "character": "Joey Knish", "id": 1241, "credit_id": "52fe43449251416c75009f1f", "cast_id": 3, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Gretchen Mol", "character": "Jo", "id": 15370, "credit_id": "52fe43449251416c75009f23", "cast_id": 4, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 2}, {"name": "Edward Norton", "character": "Lester 'Worm' Murph", "id": 819, "credit_id": "52fe43449251416c75009f4b", "cast_id": 11, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 3}, {"name": "John Malkovich", "character": "Teddy KGB", "id": 6949, "credit_id": "52fe43459251416c75009f4f", "cast_id": 12, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Famke Janssen", "character": "Petra", "id": 10696, "credit_id": "52fe43459251416c75009f53", "cast_id": 13, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 5}, {"name": "Martin Landau", "character": "Abe Petrovsky", "id": 2641, "credit_id": "52fe43459251416c75009f57", "cast_id": 14, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 6}, {"name": "Mal Z. Lawrence", "character": "Irving", "id": 171476, "credit_id": "53013613c3a3680a030d9022", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Paul Cicero", "character": "Russian Thug", "id": 1392770, "credit_id": "547da3abc3a36841e1001fac", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Ray Iannicelli", "character": "Kenny", "id": 155549, "credit_id": "547da3bbc3a36841e1001fb3", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Merwin Goldsmith", "character": "Sy", "id": 130724, "credit_id": "547da569c3a3685af30046c3", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Sonny Zito", "character": "Tony", "id": 1392772, "credit_id": "547da578c3a3685b05005769", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Josh Mostel", "character": "Zagosh", "id": 33489, "credit_id": "547da5879251412d7c00561f", "cast_id": 20, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 12}, {"name": "Lenny Clarke", "character": "Savino", "id": 87131, "credit_id": "547da59dc3a3685afd005561", "cast_id": 21, "profile_path": "/7JdEGLygOzrvjiOEvg7R4T3t0xJ.jpg", "order": 13}, {"name": "Peter Yoshida", "character": "Henry Lin", "id": 162508, "credit_id": "547da5aac3a3685b05005772", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Jay Boryea", "character": "Russian Thug #2", "id": 1392773, "credit_id": "547da5b7c3a36841e1001feb", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Lenny Venito", "character": "Moogie", "id": 37157, "credit_id": "547da5c59251412d7c005626", "cast_id": 24, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 16}, {"name": "Richard Mawe", "character": "Professor Eisen", "id": 227986, "credit_id": "547da5dc9251412d7800518b", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Michael Lombardi", "character": "D.A. Shields", "id": 205575, "credit_id": "547da5ec9251412d7c005632", "cast_id": 26, "profile_path": "/wO1gEd2sMM59kiTkC3PBgbG2UnH.jpg", "order": 18}, {"name": "Tom Aldredge", "character": "Judge Marinacci", "id": 49835, "credit_id": "547da5fa9251412d7f005370", "cast_id": 27, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 19}, {"name": "Tom Aldredge", "character": "Judge Kaplan", "id": 49835, "credit_id": "547da61d9251412d75004c17", "cast_id": 28, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 20}, {"name": "E. Matthew Yavne", "character": "Professor Green (as Matthew Yavne)", "id": 1392774, "credit_id": "547da62a9251412d7800519b", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Erik LaRay Harvey", "character": "Roy (as Eric LaRay Harvey)", "id": 1392775, "credit_id": "547da6429251411f4e004094", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Dominic Marcus", "character": "Dowling", "id": 180435, "credit_id": "547da64f9251412d780051a4", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Brian Anthony Wilson", "character": "Derald", "id": 127070, "credit_id": "547da65bc3a3685aed005c43", "cast_id": 32, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 24}, {"name": "George Kmeck", "character": "Prison Guard", "id": 1392776, "credit_id": "547da6679251412d6d0052d2", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Joseph Parisi", "character": "Property Guard (as Joe Parisi)", "id": 1392777, "credit_id": "547da6759251412d75004c28", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Melina Kanakaredes", "character": "Barbara", "id": 25972, "credit_id": "547da6819251412d780051af", "cast_id": 35, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 27}, {"name": "Kohl Sudduth", "character": "Wagner", "id": 92276, "credit_id": "547da68dc3a3685afd005582", "cast_id": 36, "profile_path": "/7nXa00ky9T6jfQ8D5KrWTHIaDXC.jpg", "order": 28}, {"name": "Charlie Matthes", "character": "Birch", "id": 1392778, "credit_id": "547da699c3a3685b0500578f", "cast_id": 37, "profile_path": null, "order": 29}, {"name": "Hank Jacobs", "character": "Steiny", "id": 1392780, "credit_id": "547da6a5c3a3685af9004b42", "cast_id": 38, "profile_path": null, "order": 30}, {"name": "Chris Messina", "character": "Higgins", "id": 61659, "credit_id": "547da6b29251412d780051b9", "cast_id": 39, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 31}, {"name": "Famke Janssen", "character": "Petra", "id": 10696, "credit_id": "547da6bfc3a3685b00005a2e", "cast_id": 40, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 32}, {"name": "Michael Ryan Segal", "character": "Griggs", "id": 131007, "credit_id": "547da6cd9251412d7c005654", "cast_id": 41, "profile_path": null, "order": 33}, {"name": "Kerry O'Malley", "character": "Kelly", "id": 100567, "credit_id": "547da6d9c3a3685aed005c5c", "cast_id": 42, "profile_path": "/j42ByTSTXyRmcN3WJAUDOkwNJvQ.jpg", "order": 34}, {"name": "Slava Schoot", "character": "Roman", "id": 122268, "credit_id": "547da6e4c3a3685af0005b00", "cast_id": 43, "profile_path": null, "order": 35}, {"name": "Goran Vi\u0161nji\u0107", "character": "Maurice", "id": 5725, "credit_id": "547da6f09251412d70005b12", "cast_id": 44, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 36}, {"name": "Michael Rispoli", "character": "Grama", "id": 18313, "credit_id": "547da6fb9251412d7c00565d", "cast_id": 45, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 37}, {"name": "Michele Zanes", "character": "Taj Dealer", "id": 1392781, "credit_id": "547da709c3a3685b00005a40", "cast_id": 46, "profile_path": null, "order": 38}, {"name": "Allan Havey", "character": "Guberman", "id": 66657, "credit_id": "547da7149251412d75004c42", "cast_id": 47, "profile_path": "/1AFT5SRHKWUn71CRI6YmzDYchzu.jpg", "order": 39}, {"name": "Joey Vega", "character": "Freddy Face (as Joe Vega)", "id": 1392782, "credit_id": "547da7239251412d75004c45", "cast_id": 48, "profile_path": null, "order": 40}, {"name": "Neal Hemphill", "character": "Claude", "id": 1392783, "credit_id": "547da72fc3a3685af30046f8", "cast_id": 49, "profile_path": null, "order": 41}, {"name": "Vernon E. Jordan Jr.", "character": "Judge McKinnon", "id": 1392784, "credit_id": "547da73d92514123ef003757", "cast_id": 50, "profile_path": null, "order": 42}, {"name": "Johnny Chan", "character": "Johnny Chan (as Jon C. Chan)", "id": 1239073, "credit_id": "547da74a92514123ef00375b", "cast_id": 51, "profile_path": null, "order": 43}, {"name": "Lisa Gorlitsky", "character": "Sherry", "id": 1392785, "credit_id": "547da7589251412d7f0053a5", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "John Di Benedetto", "character": "LaRossa", "id": 60121, "credit_id": "547da764c3a3685af3004701", "cast_id": 53, "profile_path": null, "order": 45}, {"name": "Nicole Brier", "character": "Sunshine", "id": 1392786, "credit_id": "547da771c3a36841e1002020", "cast_id": 54, "profile_path": null, "order": 46}, {"name": "Billy Campbell", "character": "Eisenberg", "id": 20215, "credit_id": "547da7d59251412d780051e0", "cast_id": 55, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 47}, {"name": "Tony Hoty", "character": "Taki", "id": 1392787, "credit_id": "547da7e0c3a3685b00005a6d", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Mario Mendoza", "character": "Zizzo", "id": 177424, "credit_id": "547da7f29251412d70005b42", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "Joe Zaloom", "character": "Cronos", "id": 171688, "credit_id": "547da7fd9251412d780051e5", "cast_id": 58, "profile_path": null, "order": 50}, {"name": "Sal Richards", "character": "Johnny Gold", "id": 1237372, "credit_id": "547da80c9251412d70005b44", "cast_id": 59, "profile_path": null, "order": 51}, {"name": "Josh Pais", "character": "Weitz", "id": 6181, "credit_id": "547da817c3a3685af0005b28", "cast_id": 60, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 52}, {"name": "John Gallagher Jr.", "character": "Bartender", "id": 17487, "credit_id": "547da82b9251411f4e0040e5", "cast_id": 61, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 53}, {"name": "Adam LeFevre", "character": "Sean Frye", "id": 61607, "credit_id": "547da838c3a3685aed005c9a", "cast_id": 62, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 54}, {"name": "P.J. Brown", "character": "Vitter", "id": 1186169, "credit_id": "547da8449251411f4e0040ee", "cast_id": 63, "profile_path": null, "order": 55}, {"name": "David Zayas", "character": "Osborne", "id": 22821, "credit_id": "547da8509251411f4e0040f1", "cast_id": 64, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 56}, {"name": "Michael Arkin", "character": "Bear", "id": 1392788, "credit_id": "547da85bc3a3685aed005ca3", "cast_id": 65, "profile_path": null, "order": 57}, {"name": "Murphy Guyer", "character": "Detweiler", "id": 155547, "credit_id": "547da867c3a3685af9004b79", "cast_id": 66, "profile_path": "/vOuj13cuNCpKTewqN0pBG36Il4l.jpg", "order": 58}, {"name": "Alan Davidson", "character": "Cabbie", "id": 154649, "credit_id": "547da872c3a3685afd0055de", "cast_id": 67, "profile_path": null, "order": 59}], "directors": [{"name": "John Dahl", "department": "Directing", "job": "Director", "credit_id": "52fe43449251416c75009f29", "profile_path": "/klMxcB64Tu0sWCn3YDTMcGWPArQ.jpg", "id": 21053}], "vote_average": 6.7, "runtime": 121}, "10222": {"poster_path": "/8kNEhA31mXwUOuFuBGaN0T5oQwU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "If your enemy refuses to be humbled... Destroy him. Accompanied by his brother Kurt (Van Damme), American kickboxing champion Eric Sloane (Dennis Alexio), arrives in Thailand to defeat the Eastern warriors at their own sport. His opponent: ruthless fighter and Thai champion, Tong Po. Tong not only defeats Eric, he paralyzes him for life. Crazed with anger, Kurt vows revenge.", "video": false, "id": 10222, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Kickboxer", "tagline": "An Ancient Sport Becomes A Deadly Game.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/289pgfTQnR0qaOxeRcUxZMOSahY.jpg", "id": 105322, "name": "Kickboxer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097659", "adult": false, "backdrop_path": "/zGE2sbV0l1m3nFHcszQ4kT8aOos.jpg", "production_companies": [{"name": "Kings Road Entertainment", "id": 4255}], "release_date": "1989-09-09", "popularity": 0.873831127601261, "original_title": "Kickboxer", "budget": 1500000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Kurt Sloane", "id": 15111, "credit_id": "52fe43459251416c75009fbf", "cast_id": 1, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Dennis Alexio", "character": "Eric Sloane", "id": 64655, "credit_id": "52fe43459251416c75009fc3", "cast_id": 2, "profile_path": "/1GDCN4jue2vDT5HKH1iKUJKyniP.jpg", "order": 1}, {"name": "Dennis Chan", "character": "Xian Chow", "id": 64662, "credit_id": "52fe43459251416c75009fc7", "cast_id": 3, "profile_path": "/qZiaEH1JJt8c0WUPJl9gqArGT2P.jpg", "order": 2}, {"name": "Michel Qissi", "character": "Tong Po", "id": 222508, "credit_id": "52fe43459251416c75009ff5", "cast_id": 15, "profile_path": null, "order": 3}, {"name": "Haskell V. Anderson III", "character": "Winston Taylor", "id": 169702, "credit_id": "52fe43459251416c75009ff9", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Rochelle Ashana", "character": "Mylee", "id": 190185, "credit_id": "52fe43459251416c75009ffd", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Ka Ting Lee", "character": "Freddy Li", "id": 1076565, "credit_id": "52fe43459251416c7500a001", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Richard Foo", "character": "Tao Liu", "id": 126051, "credit_id": "52fe43459251416c7500a005", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Ricky Liu", "character": "Big Thai Man", "id": 1076566, "credit_id": "52fe43459251416c7500a009", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ho Ying Sin", "character": "Huge Village Man #1", "id": 551872, "credit_id": "52fe43459251416c7500a00d", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Tony Chan", "character": "Huge Village Man #2", "id": 126732, "credit_id": "52fe43459251416c7500a011", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Brad Kerner", "character": "U.S. Announcer", "id": 1076567, "credit_id": "52fe43459251416c7500a015", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Dean Harrington", "character": "U.S. Announcer", "id": 43670, "credit_id": "52fe43459251416c7500a019", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Mark DiSalle", "character": "U.S. Reporter", "id": 64681, "credit_id": "52fe43459251416c7500a01d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Richard Santoro", "character": "U.S. Reporter", "id": 1076568, "credit_id": "52fe43459251416c7500a021", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Mark DiSalle", "department": "Directing", "job": "Director", "credit_id": "52fe43459251416c75009fcd", "profile_path": null, "id": 64681}, {"name": "David Worth", "department": "Directing", "job": "Director", "credit_id": "52fe43459251416c75009fd3", "profile_path": "/eelvhT2xXPSrk1ANkFZFwUFHegc.jpg", "id": 22012}], "vote_average": 6.4, "runtime": 97}, "15357": {"poster_path": "/xcZf2259XwaM6gs9DrzcN0be22H.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 8786375, "overview": "Damien and Leito return to District 13 on a mission to bring peace to the troubled sector that is controlled by five different gang bosses, before the city's secret services take drastic measures to solve the problem.", "video": false, "id": 15357, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "District 13: Ultimatum", "tagline": "", "vote_count": 99, "homepage": "http://www.b13ultimatum-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/6d8jbKsWVUKrKBHMcf9mvBkFCgv.jpg", "poster_path": "/j9ZhvTOa9gIQ48PsWfZuqwWNI7p.jpg", "id": 85946, "name": "The District 13 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1247640", "adult": false, "backdrop_path": "/xBOHpSyGsz10A9nVJ6XW0L8Y3GV.jpg", "production_companies": [{"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Canal+", "id": 5358}, {"name": "TF1 International", "id": 7799}, {"name": "Sofica Europacorp", "id": 854}, {"name": "EuropaCorp", "id": 6896}, {"name": "CiBy 2000", "id": 7832}], "release_date": "2009-02-18", "popularity": 0.521300794286745, "original_title": "Banlieue 13 - Ultimatum", "budget": 15000000, "cast": [{"name": "Cyril Raffaelli", "character": "Damien", "id": 21946, "credit_id": "52fe464f9251416c75074589", "cast_id": 3, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 0}, {"name": "David Belle", "character": "Le\u00efto", "id": 62439, "credit_id": "52fe464f9251416c7507458d", "cast_id": 4, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 1}, {"name": "Philippe Torreton", "character": "Le Pr\u00e9sident de la R\u00e9publique", "id": 23669, "credit_id": "52fe464f9251416c75074591", "cast_id": 5, "profile_path": "/v4mPR49rRcnqeZzEaRkAV1O93lg.jpg", "order": 2}, {"name": "Daniel Duval", "character": "Walter Gassman", "id": 6018, "credit_id": "52fe464f9251416c75074595", "cast_id": 6, "profile_path": "/vGJSb10cnsF4e218IW43YkuiyYN.jpg", "order": 3}, {"name": "Elodie Yung", "character": "Tao", "id": 78147, "credit_id": "52fe464f9251416c75074599", "cast_id": 7, "profile_path": "/pbhMOW06QNPujrHM2aNX2TS0eXH.jpg", "order": 4}, {"name": "MC Jean Gab'1", "character": "Molko", "id": 571477, "credit_id": "52fe464f9251416c7507459d", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "James Deano", "character": "Karl le skin", "id": 968591, "credit_id": "52fe464f9251416c750745a1", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Laouni Mouhid", "character": "Ali-K", "id": 1092019, "credit_id": "52fe464f9251416c750745a5", "cast_id": 10, "profile_path": "/y0l0l7RC9Obka8yzrGBOiwh8ndp.jpg", "order": 7}, {"name": "Fabrice Feltzinger", "character": "Little Montana", "id": 968377, "credit_id": "52fe464f9251416c750745a9", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Pierre-Marie Mosconi", "character": "Roland", "id": 206991, "credit_id": "52fe46509251416c750745ad", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Johnny Amaro", "character": "Policier centre de contr\u00f4le", "id": 933179, "credit_id": "52fe46509251416c750745b1", "cast_id": 13, "profile_path": null, "order": 10}], "directors": [{"name": "Patrick Alessandrin", "department": "Directing", "job": "Director", "credit_id": "52fe464f9251416c75074585", "profile_path": null, "id": 78146}], "vote_average": 6.2, "runtime": 101}, "75761": {"poster_path": "/fV6dwR0Tx6sl6YORjjdR61FGpYR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It's a drug that promises an out-of-body experience with each hit. On the street they call it Soy Sauce, and users drift across time and dimensions. But some who come back are no longer human. Suddenly a silent otherworldly invasion is underway, and mankind needs a hero. What it gets instead is John and David, a pair of college dropouts who can barely hold down jobs. Can these two stop the oncoming horror in time to save humanity? No. No, they can't.", "video": false, "id": 75761, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "John Dies at the End", "tagline": "Just so you know...they're sorry for anything that's about to happen.", "vote_count": 69, "homepage": "http://johndiesattheend.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1783732", "adult": false, "backdrop_path": "/aliCayqJ0J6TaqcbYhof6gqJzxJ.jpg", "production_companies": [{"name": "Magnet Releasing", "id": 3595}], "release_date": "2012-01-23", "popularity": 0.252772295127851, "original_title": "John Dies at the End", "budget": 0, "cast": [{"name": "Chase Williamson", "character": "Dave", "id": 576222, "credit_id": "52fe4911c3a368484e118ef5", "cast_id": 1017, "profile_path": null, "order": 0}, {"name": "Rob Mayes", "character": "John", "id": 110909, "credit_id": "52fe4911c3a368484e118ef9", "cast_id": 1018, "profile_path": null, "order": 1}, {"name": "Paul Giamatti", "character": "Arnie Blondestone", "id": 13242, "credit_id": "52fe4911c3a368484e118efd", "cast_id": 1019, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Clancy Brown", "character": "Dr. Albert Marconi", "id": 6574, "credit_id": "52fe4911c3a368484e118f01", "cast_id": 1020, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 3}, {"name": "Glynn Turman", "character": "Detective Lawrence 'Morgan Freeman' Appleton", "id": 114674, "credit_id": "52fe4911c3a368484e118f05", "cast_id": 1021, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 4}, {"name": "Doug Jones", "character": "Roger North", "id": 17005, "credit_id": "52fe4911c3a368484e118f09", "cast_id": 1022, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 5}, {"name": "Daniel Roebuck", "character": "Largeman", "id": 43774, "credit_id": "52fe4911c3a368484e118f0d", "cast_id": 1023, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 6}, {"name": "Fabianne Therese", "character": "Amy", "id": 576223, "credit_id": "52fe4911c3a368484e118f11", "cast_id": 1024, "profile_path": "/3HLRTbikOyRPIZjaFw134ytxknx.jpg", "order": 7}, {"name": "Jimmy Wong", "character": "Fred Chu", "id": 447244, "credit_id": "52fe4911c3a368484e118f15", "cast_id": 1026, "profile_path": null, "order": 8}, {"name": "Tai Bennett", "character": "Robert Marley", "id": 291133, "credit_id": "52fe4912c3a368484e118f19", "cast_id": 1027, "profile_path": null, "order": 9}, {"name": "Allison Weissman", "character": "Shelly", "id": 514154, "credit_id": "52fe4912c3a368484e118f1d", "cast_id": 1028, "profile_path": null, "order": 10}, {"name": "Jonny Weston", "character": "Justin White", "id": 928575, "credit_id": "52fe4912c3a368484e118f2d", "cast_id": 1031, "profile_path": "/qv8lrHTf22WO92kdWcIu8ZMee0J.jpg", "order": 11}, {"name": "Angus Scrimm", "character": "Father Shellnut", "id": 79584, "credit_id": "52fe4912c3a368484e118f31", "cast_id": 1032, "profile_path": "/kxKfdjCQ8fU6Xf2uzAetWp2Hb3Z.jpg", "order": 12}], "directors": [{"name": "Don Coscarelli", "department": "Directing", "job": "Director", "credit_id": "52fe4912c3a368484e118f23", "profile_path": "/zuwHEQlrZ78P1PudZsPO2DfS6KA.jpg", "id": 58245}], "vote_average": 6.0, "runtime": 99}, "2034": {"poster_path": "/sDT2biSB7wzBJdXq9o3ldr7VfvY.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104876233, "overview": "On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.", "video": false, "id": 2034, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Training Day", "tagline": "The only thing more dangerous than the line being crossed, is the cop who will cross it.", "vote_count": 457, "homepage": "http://trainingday.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0139654", "adult": false, "backdrop_path": "/n7z6rdjO4n9sVa06dniOfxV3GGq.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2001-10-05", "popularity": 1.40003764589334, "original_title": "Training Day", "budget": 45000000, "cast": [{"name": "Denzel Washington", "character": "Alonzo Harris", "id": 5292, "credit_id": "52fe432ec3a36847f8040975", "cast_id": 5, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "Jake Hoyt", "id": 569, "credit_id": "52fe432ec3a36847f8040979", "cast_id": 6, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Roger", "id": 349, "credit_id": "52fe432ec3a36847f804097d", "cast_id": 7, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Tom Berenger", "character": "Stan Gursky", "id": 13022, "credit_id": "52fe432ec3a36847f8040981", "cast_id": 8, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 3}, {"name": "Harris Yulin", "character": "Doug Rosselli", "id": 1166, "credit_id": "52fe432ec3a36847f8040985", "cast_id": 9, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 4}, {"name": "Cliff Curtis", "character": "Smiley", "id": 7248, "credit_id": "52fe432ec3a36847f8040989", "cast_id": 10, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 5}, {"name": "Snoop Dogg", "character": "Blue", "id": 19767, "credit_id": "52fe432ec3a36847f804098d", "cast_id": 11, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 6}, {"name": "Dr. Dre", "character": "Paul", "id": 2041, "credit_id": "52fe432ec3a36847f8040991", "cast_id": 12, "profile_path": "/lPcS1QAULXTZP53ogsYSW4bZAOe.jpg", "order": 7}, {"name": "Eva Mendes", "character": "Sara", "id": 8170, "credit_id": "52fe432ec3a36847f8040995", "cast_id": 13, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 8}, {"name": "Nick Chinlund", "character": "Tim", "id": 18461, "credit_id": "52fe432ec3a36847f8040999", "cast_id": 14, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 9}, {"name": "Jaime Osorio G\u00f3mez", "character": "Mark", "id": 5874, "credit_id": "52fe432ec3a36847f804099d", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Charlotte Ayanna", "character": "Lisa", "id": 6281, "credit_id": "52fe432ec3a36847f80409a1", "cast_id": 16, "profile_path": "/5bqzLVKlwdt1ePTHnYjZUaBpCC8.jpg", "order": 11}, {"name": "Kyjel N. Jolly", "character": "Alonzo's Son", "id": 1449364, "credit_id": "551f1aff9251415c820002b5", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe432ec3a36847f804095f", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 7.0, "runtime": 122}, "34803": {"poster_path": "/iicn7Nku5G4cwCfN5DfX8aiRDD9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Aaron's father's funeral is today at the family home, and everything goes wrong: the funeral home delivers the wrong body, his cousin accidentally drugs her fianc\u00e9, and Aaron's successful younger brother, Ryan, flies in from New York, broke but arrogant. To top it all off, a mysterious stranger wants a word with Aaron.", "video": false, "id": 34803, "genres": [{"id": 35, "name": "Comedy"}], "title": "Death at a Funeral", "tagline": "This is one sad family.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321509", "adult": false, "backdrop_path": "/eu9T3NiweIyMSY3i0bEUKtpYxTK.jpg", "production_companies": [{"name": "Parabolic Pictures", "id": 1012}, {"name": "Screen Gems", "id": 3287}], "release_date": "2010-04-15", "popularity": 0.522022860603619, "original_title": "Death at a Funeral", "budget": 21000000, "cast": [{"name": "Zoe Saldana", "character": "Elaine", "id": 8691, "credit_id": "52fe457e9251416c91034467", "cast_id": 1, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 0}, {"name": "James Marsden", "character": "Oscar", "id": 11006, "credit_id": "52fe457e9251416c9103446b", "cast_id": 2, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Martin Lawrence", "character": "Ryan", "id": 78029, "credit_id": "52fe457e9251416c9103446f", "cast_id": 4, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 2}, {"name": "Tracy Morgan", "character": "Norman", "id": 56903, "credit_id": "52fe457e9251416c91034473", "cast_id": 5, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 3}, {"name": "Chris Rock", "character": "Aaron", "id": 2632, "credit_id": "52fe457e9251416c91034477", "cast_id": 6, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 4}, {"name": "Danny Glover", "character": "Uncle Russell", "id": 2047, "credit_id": "52fe457e9251416c9103447b", "cast_id": 7, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 5}, {"name": "Columbus Short", "character": "Jeff", "id": 31132, "credit_id": "52fe457e9251416c9103447f", "cast_id": 8, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Frank", "id": 22970, "credit_id": "52fe457e9251416c91034483", "cast_id": 9, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Regina Hall", "character": "Michelle", "id": 35705, "credit_id": "52fe457e9251416c91034487", "cast_id": 10, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 8}, {"name": "Loretta Devine", "character": "Cynthia", "id": 18284, "credit_id": "52fe457e9251416c9103448b", "cast_id": 11, "profile_path": "/zLQFwQTFtHkb8sbFdkPNamFI7jv.jpg", "order": 9}, {"name": "Keith David", "character": "Reverend Davis", "id": 65827, "credit_id": "52fe457e9251416c9103449b", "cast_id": 17, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 10}, {"name": "Luke Wilson", "character": "Derek", "id": 36422, "credit_id": "52fe457e9251416c910344c3", "cast_id": 24, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 11}, {"name": "Regine Nehy", "character": "Martina", "id": 74571, "credit_id": "52fe457e9251416c910344c7", "cast_id": 25, "profile_path": "/kjYJoAKzVF4bCOCXbOuLIVaO3J1.jpg", "order": 12}, {"name": "Ron Glass", "character": "Duncan", "id": 74570, "credit_id": "52fe457e9251416c910344cb", "cast_id": 26, "profile_path": "/4OBVfJUbWo6vhnKkwGu6Qq3r3sf.jpg", "order": 13}, {"name": "Kevin Hart", "character": "Brian", "id": 55638, "credit_id": "52fe457e9251416c910344cf", "cast_id": 27, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 14}, {"name": "Columbus Short", "character": "Jeff", "id": 31132, "credit_id": "52fe457e9251416c910344d3", "cast_id": 28, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 15}], "directors": [{"name": "Neil LaBute", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c91034497", "profile_path": "/snHfcueBlYFinCdUoVmK9CHdZX0.jpg", "id": 58689}], "vote_average": 5.9, "runtime": 92}, "10228": {"poster_path": "/aalTziefHGUVLg44iyWS8B7ee5u.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163644662, "overview": "The adventure explodes into action with the debut of Mewtwo, a bio-engineered Pokemon created from the DNA of Mew, the rarest of all Pokemon. Determined to prove its superiority, Mewtwo lures Ash, Pikachu and others into a Pokemon match like none before. Mewtwo vs. Mew. Super-clones vs. Pokemon. It's the ultimate showdown ... with the very future of the world at stake!", "video": false, "id": 10228, "genres": [{"id": 16, "name": "Animation"}], "title": "Pok\u00e9mon Movie 1: The First Movie", "tagline": "The Pok\u00e9mon Match of All Time is Here.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xQM02GXLgC0HxMHOCUIxTsjzi1O.jpg", "poster_path": "/j5te0YNZAMXDBnsqTUDKIBEt8iu.jpg", "id": 34055, "name": "Pok\u00e9mon Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0190641", "adult": false, "backdrop_path": "/xZvVOnaM3b2te7rf7u4gRVDcamR.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Toho Company", "id": 882}], "release_date": "1998-07-18", "popularity": 0.542858301483602, "original_title": "\u30df\u30e5\u30a6\u30c4\u30fc\u306e\u9006\u8972", "budget": 30000000, "cast": [{"name": "Rica Matsumoto", "character": "Satoshi (\"Ash Ketchum\")", "id": 65424, "credit_id": "52fe43469251416c7500a1f7", "cast_id": 1, "profile_path": "/cjBOFOJTcg786u7w0NQVd7hicRf.jpg", "order": 0}, {"name": "Mayumi Iizuka", "character": "Kasumi (\"Misty\")", "id": 65426, "credit_id": "52fe43469251416c7500a1fb", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Y\u016bji Ueda", "character": "Takeshi (\"Brock\")", "id": 65427, "credit_id": "52fe43469251416c7500a1ff", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Ikue \u014ctani", "character": "Pikachu", "id": 73044, "credit_id": "52fe43469251416c7500a21b", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Satomi K\u014drogi", "character": "Togepi", "id": 1137464, "credit_id": "5452bccf0e0a265f280002a8", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Megumi Hayashibara", "character": "Musashi (''Jessie'')", "id": 40325, "credit_id": "5452be01c3a368092700029a", "cast_id": 24, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 5}, {"name": "Shin'ichir\u014d Miki", "character": "Kojir\u014d (''James'')", "id": 1379717, "credit_id": "5452be24c3a3680923000282", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Inuko Inuyama", "character": "Nyarth (''Miaouss'')", "id": 1238866, "credit_id": "5452befe0e0a265f2e000275", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Masachika Ichimura", "character": "Mewtwo", "id": 9717, "credit_id": "5452bf090e0a265f1e0002b0", "cast_id": 27, "profile_path": "/PewyrEczJmfsef4FB8zln50Hre.jpg", "order": 8}, {"name": "K\u014dichi Yamadera", "character": "Mew", "id": 1379718, "credit_id": "5452bf200e0a265f2e00027a", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "T\u014dru Furuya", "character": "Sorao (''Corey'')", "id": 40327, "credit_id": "5452bf44c3a368091a0002bd", "cast_id": 29, "profile_path": "/9fuENGDDd6C30IudobBV8uh2XaK.jpg", "order": 10}, {"name": "Aiko Sat\u014d", "character": "Sweet (''Neesha'')", "id": 1379719, "credit_id": "5452bf7d0e0a265f190002b5", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Wataru Takagi", "character": "Umio (''Fergus'')", "id": 1241595, "credit_id": "5452bfbcc3a368092e0002af", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Raymond Johnson", "character": "Raymond", "id": 79982, "credit_id": "5452bfec0e0a265f2e000290", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Ayako Shiraishi", "character": "Nurse Joy", "id": 1247765, "credit_id": "5452c0060e0a265f2e000294", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Chinami Nishimura", "character": "Junsar (''Officer Jenny'')", "id": 124480, "credit_id": "5452c036c3a3680931000262", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Sachiko Kobayashi", "character": "Voyager (''Miranda'')", "id": 1200212, "credit_id": "5452c059c3a368092b0002a0", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Y\u014dsuke Akimoto", "character": "Dr. Fuji", "id": 84509, "credit_id": "5452c07f0e0a265f160002e1", "cast_id": 36, "profile_path": "/kfXIFJCXEkVzpOC18x3puDNneTd.jpg", "order": 17}, {"name": "Hirotaka Suzuoki", "character": "Sakaki (''Giovanni'')", "id": 100124, "credit_id": "5452c09bc3a368092b0002a6", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Unsh\u014d Ishizuka", "character": "Narration", "id": 68916, "credit_id": "5452c0ac0e0a265f190002c4", "cast_id": 38, "profile_path": "/msFDooyGBJLzWESwvvnjht6AnbV.jpg", "order": 19}], "directors": [{"name": "Michael Haigney", "department": "Directing", "job": "Director", "credit_id": "52fe43469251416c7500a205", "profile_path": null, "id": 65428}, {"name": "Kunihiko Yuyama", "department": "Directing", "job": "Director", "credit_id": "52fe43469251416c7500a20b", "profile_path": null, "id": 65429}], "vote_average": 6.6, "runtime": 75}, "10229": {"poster_path": "/kso0otMalKy9qSEdrzYP7Bc3Rjg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41227069, "overview": "When the popular, restless Landon Carter is forced to participate in the school drama production he falls in love with Jamie Sullivan, the daughter of the town's minister. Jamie has a \"to-do\" list for her life and also a very big secret she must keep from Landon.", "video": false, "id": 10229, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "A Walk to Remember", "tagline": "She didn't belong. She was misunderstood. And she would change him forever.", "vote_count": 240, "homepage": "http://www2.warnerbros.com/walktoremember/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0281358", "adult": false, "backdrop_path": "/nKHwNmUGe002ayPlfwG9CVTIXC2.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Pandora Pictures", "id": 5329}], "release_date": "2002-01-25", "popularity": 1.12090128402982, "original_title": "A Walk to Remember", "budget": 11000000, "cast": [{"name": "Mandy Moore", "character": "Jamie Sullivan", "id": 16855, "credit_id": "52fe43469251416c7500a23f", "cast_id": 1, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Shane West", "character": "Landon Carter", "id": 81295, "credit_id": "52fe43469251416c7500a243", "cast_id": 2, "profile_path": "/1TiKpPiFwdUbs24yrNZLSzAjsnk.jpg", "order": 1}, {"name": "Peter Coyote", "character": "Reverend Sullivan", "id": 9979, "credit_id": "52fe43469251416c7500a26b", "cast_id": 9, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 2}, {"name": "Daryl Hannah", "character": "Cynthia Carter", "id": 589, "credit_id": "52fe43469251416c7500a26f", "cast_id": 10, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 3}, {"name": "Lauren German", "character": "Belinda", "id": 37014, "credit_id": "52fe43469251416c7500a279", "cast_id": 12, "profile_path": "/7TdS4sFvBzUDahM65VWVYXcFXH2.jpg", "order": 4}, {"name": "Clayne Crawford", "character": "Dean", "id": 59671, "credit_id": "52fe43469251416c7500a27d", "cast_id": 13, "profile_path": "/6JCfyUTPMxwcfZMauVRHBCu0EWh.jpg", "order": 5}, {"name": "Al Thompson", "character": "Eric", "id": 1275307, "credit_id": "52fe43469251416c7500a281", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Paz de la Huerta", "character": "Tracie", "id": 59882, "credit_id": "52fe43469251416c7500a285", "cast_id": 15, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 7}, {"name": "Matt Lutz", "character": "Clay Gephardt", "id": 1230911, "credit_id": "54aa6269c3a3684091000414", "cast_id": 16, "profile_path": "/s21ZFuuPxDdhzTT2OFlASDv7hnu.jpg", "order": 8}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe43469251416c7500a249", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 7.1, "runtime": 101}, "34806": {"poster_path": "/1Ig6ZQpLZfLsdvMLHD0inc2w0HB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77477008, "overview": "When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she's artificially inseminated, she meets Stan, who seems to be just who she's been searching for all her life. Now, Zoe has to figure out how to make her two life's dreams fit with each other.", "video": false, "id": 34806, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Back-Up Plan", "tagline": "Fall in love, get married, have a baby. Not necessarily in that order.", "vote_count": 121, "homepage": "http://www.theback-upplan.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1212436", "adult": false, "backdrop_path": "/4s7TicMuqg0HjFahZgidHCzsfbC.jpg", "production_companies": [{"name": "Escape Artists", "id": 1423}, {"name": "CBS Films", "id": 5490}], "release_date": "2010-04-23", "popularity": 0.511263567423999, "original_title": "The Back-Up Plan", "budget": 35000000, "cast": [{"name": "Jennifer Lopez", "character": "Zoe", "id": 16866, "credit_id": "52fe457e9251416c91034501", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Alex O'Loughlin", "character": "Stan", "id": 41297, "credit_id": "52fe457e9251416c91034505", "cast_id": 2, "profile_path": "/1ala6CFOow9svfbBsxyjh0jYXSl.jpg", "order": 1}, {"name": "Danneel Ackles", "character": "Olivia", "id": 81164, "credit_id": "52fe457e9251416c91034509", "cast_id": 3, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Clive", "id": 29020, "credit_id": "52fe457e9251416c9103450d", "cast_id": 4, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Anthony Anderson", "character": "Dad", "id": 18471, "credit_id": "52fe457e9251416c91034511", "cast_id": 5, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 4}, {"name": "Noureen DeWulf", "character": "Daphne", "id": 66524, "credit_id": "52fe457e9251416c91034515", "cast_id": 6, "profile_path": "/kamvMaDxCe2qdQvX5IWcyYp9np6.jpg", "order": 5}, {"name": "Jennifer Elise Cox", "character": "Babyland Salesgirl", "id": 112052, "credit_id": "52fe457e9251416c91034519", "cast_id": 7, "profile_path": "/rXBb4Ts5jUZTn6jA0Nw9EPUzNs2.jpg", "order": 6}, {"name": "Melissa McCarthy", "character": "Carol", "id": 55536, "credit_id": "52fe457e9251416c9103451d", "cast_id": 8, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 7}, {"name": "Tom Bosley", "character": "Arthur", "id": 41217, "credit_id": "52fe457e9251416c91034521", "cast_id": 9, "profile_path": "/9S95lnM10Qa3PGY86o7dvSFg0VL.jpg", "order": 8}, {"name": "Maribeth Monroe", "character": "Lori", "id": 207250, "credit_id": "52fe457e9251416c9103455d", "cast_id": 20, "profile_path": "/tXXFnOhRs405ZXjAPG3LecP772r.jpg", "order": 9}, {"name": "Linda Lavin", "character": "Nana", "id": 113223, "credit_id": "52fe457e9251416c91034525", "cast_id": 10, "profile_path": "/xb1w97ZCeCXQAnBr0A508AS3pyK.jpg", "order": 10}, {"name": "Michaela Watkins", "character": "Mona", "id": 113224, "credit_id": "52fe457e9251416c91034529", "cast_id": 11, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 11}], "directors": [{"name": "Alan Poul", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c9103452f", "profile_path": "/6wzLRoaq3D4HkE9TEdV3ssLO4Ne.jpg", "id": 113225}], "vote_average": 5.5, "runtime": 106}, "2043": {"poster_path": "/1ZjDmPKMUtout8hR77qmK1llgls.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105178561, "overview": "When a teacher kidnaps a girl from a prestigious school, homicide detective Alex Cross takes the case, teaming up with young security agent Jezzie Flannigan, in hopes of finding the girl and stopping the brutal psychopath. Every second counts as Alex and Jezzie attempt to track down the kidnapper before the spider claims another victim for its web.", "video": false, "id": 2043, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Along Came a Spider", "tagline": "The game is far from over.", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eyKpawn8yMq6kdv03wgKruMuSJX.jpg", "poster_path": "/64mlnEVoq1I0BZe4iDdAv89qO9Z.jpg", "id": 142680, "name": "Alex Cross Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0164334", "adult": false, "backdrop_path": "/tg0qbKJLBzzVwYfwde5UBOVfbFQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "AZL Productions KG", "id": 902}, {"name": "David Brown Productions", "id": 903}, {"name": "MFP Munich Film Partners", "id": 904}, {"name": "Phase 1 Productions", "id": 905}, {"name": "Revelations Entertainment", "id": 906}], "release_date": "2001-04-06", "popularity": 0.575815489217502, "original_title": "Along Came a Spider", "budget": 60000000, "cast": [{"name": "Morgan Freeman", "character": "Alex Cross", "id": 192, "credit_id": "52fe432fc3a36847f8040d35", "cast_id": 11, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Monica Potter", "character": "Jezzie Flannigan", "id": 2140, "credit_id": "52fe432fc3a36847f8040d39", "cast_id": 12, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 1}, {"name": "Michael Wincott", "character": "Garry Sone", "id": 7486, "credit_id": "52fe432fc3a36847f8040d3d", "cast_id": 13, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 2}, {"name": "Dylan Baker", "character": "Ollie McArthur", "id": 19152, "credit_id": "52fe432fc3a36847f8040d41", "cast_id": 14, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 3}, {"name": "Mika Boorem", "character": "Megan Rose", "id": 21027, "credit_id": "52fe432fc3a36847f8040d45", "cast_id": 15, "profile_path": "/amQuR9PGz0yt6IXNnwLOAEkfPcq.jpg", "order": 4}, {"name": "Anton Yelchin", "character": "Dimitri Storodubov", "id": 21028, "credit_id": "52fe432fc3a36847f8040d49", "cast_id": 16, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 5}, {"name": "Jay O. Sanders", "character": "Kyle Craig", "id": 6067, "credit_id": "52fe432fc3a36847f8040d4d", "cast_id": 17, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 6}, {"name": "Billy Burke", "character": "Ben Devine", "id": 21029, "credit_id": "52fe432fc3a36847f8040d51", "cast_id": 18, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 7}, {"name": "Michael Moriarty", "character": "Senator Hank Rose", "id": 21030, "credit_id": "52fe432fc3a36847f8040d55", "cast_id": 19, "profile_path": "/vWDVdQpYvCS0ez1z0zk5N9BffY9.jpg", "order": 8}, {"name": "Penelope Ann Miller", "character": "Elizabeth Rose", "id": 14698, "credit_id": "52fe432fc3a36847f8040d59", "cast_id": 20, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 9}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe432fc3a36847f8040d01", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 5.7, "runtime": 104}, "2044": {"poster_path": "/vbh2xjDVcdIMMva0uGeeExEQAv2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114830111, "overview": "A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late", "video": false, "id": 2044, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Lake House", "tagline": "How do you hold on to someone you've never met?", "vote_count": 184, "homepage": "http://wwws.warnerbros.de/thelakehouse/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0410297", "adult": false, "backdrop_path": "/1G0ElFizADtNo6JPaG1mSfdKXu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2006-06-16", "popularity": 0.716776939287464, "original_title": "The Lake House", "budget": 40000000, "cast": [{"name": "Keanu Reeves", "character": "Alex Wyler", "id": 6384, "credit_id": "52fe432fc3a36847f8040ddd", "cast_id": 14, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Sandra Bullock", "character": "Kate Forster", "id": 18277, "credit_id": "52fe432fc3a36847f8040de1", "cast_id": 15, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 1}, {"name": "Shohreh Aghdashloo", "character": "Anna Klyczynski", "id": 21041, "credit_id": "52fe432fc3a36847f8040de5", "cast_id": 16, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "Simon Wyler", "id": 290, "credit_id": "52fe432fc3a36847f8040de9", "cast_id": 17, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "Ebon Moss-Bachrach", "character": "Henry Wyler", "id": 21042, "credit_id": "52fe432fc3a36847f8040ded", "cast_id": 18, "profile_path": "/ur1xAkenuiahTeQ8cIo20hwAvnm.jpg", "order": 4}, {"name": "Willeke van Ammelrooy", "character": "Kate`s Mother", "id": 13506, "credit_id": "52fe432fc3a36847f8040df1", "cast_id": 19, "profile_path": "/l3q5vBixKV4LrJWaRdnXQ2Rc3PW.jpg", "order": 5}, {"name": "Dylan Walsh", "character": "Morgan", "id": 21043, "credit_id": "52fe432fc3a36847f8040df5", "cast_id": 20, "profile_path": "/jrQiBcQMkhgXAtJ7kpSJ15tq1GQ.jpg", "order": 6}, {"name": "Lynn Collins", "character": "Mona", "id": 21044, "credit_id": "52fe432fc3a36847f8040df9", "cast_id": 21, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 7}], "directors": [{"name": "Alejandro Agresti", "department": "Directing", "job": "Director", "credit_id": "52fe432fc3a36847f8040d91", "profile_path": null, "id": 21031}], "vote_average": 6.1, "runtime": 99}, "34813": {"poster_path": "/e67D7pMpWoo1ckY2QQaKYxhvVuy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23580000, "overview": "A tale of double cross and revenge, centered upon the members of an elite U.S. Special Forces unit sent into the Bolivian jungle on a search and destroy mission. The team-Clay, Jensen, Roque, Pooch and Cougar -find themselves the target of a lethal betrayal instigated from inside by a powerful enemy known only as Max. Presumed dead, the group makes plans to even the score when they're joined by the mysterious Aisha, a beautiful operative with her own agenda. Working together, they must remain deep undercover while tracking the heavily-guarded Max, a ruthless man bent on embroiling the world in a new high-tech global war.", "video": false, "id": 34813, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Losers", "tagline": "Anyone Else Would Be Dead By Now.", "vote_count": 151, "homepage": "http://www.the-losers.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480255", "adult": false, "backdrop_path": "/ukXHOtgta5Dt9eWSmNLHpB1wKi6.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2010-04-23", "popularity": 0.58025250880875, "original_title": "The Losers", "budget": 25000000, "cast": [{"name": "Zoe Saldana", "character": "Aisha", "id": 8691, "credit_id": "52fe457e9251416c910345d7", "cast_id": 1, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 0}, {"name": "Jason Patric", "character": "Max", "id": 12261, "credit_id": "52fe457e9251416c910345db", "cast_id": 2, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 1}, {"name": "Jeffrey Dean Morgan", "character": "Clay", "id": 47296, "credit_id": "52fe457e9251416c910345df", "cast_id": 3, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 2}, {"name": "Chris Evans", "character": "Jensen", "id": 16828, "credit_id": "52fe457e9251416c910345e3", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 3}, {"name": "Idris Elba", "character": "Roque", "id": 17605, "credit_id": "52fe457e9251416c910345e7", "cast_id": 5, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 4}, {"name": "Columbus Short", "character": "Pooch", "id": 31132, "credit_id": "52fe457e9251416c910345eb", "cast_id": 6, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 5}, {"name": "Holt McCallany", "character": "Wade", "id": 7497, "credit_id": "52fe457e9251416c910345ef", "cast_id": 7, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 6}, {"name": "\u00d3scar Jaenada", "character": "Cougar", "id": 59129, "credit_id": "52fe457e9251416c910345f3", "cast_id": 8, "profile_path": "/naQmysDM8jhmwhVIrdjdVUTGHLQ.jpg", "order": 7}, {"name": "Peter Macdissi", "character": "Vikram", "id": 64147, "credit_id": "52fe457e9251416c910345f7", "cast_id": 9, "profile_path": "/3Em1IEoO2gUQEAhjjuNEHIqvEp0.jpg", "order": 8}, {"name": "Peter Francis James", "character": "Fadhil", "id": 113230, "credit_id": "52fe457e9251416c910345fb", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Gunner Wright", "character": "Jet Pilot", "id": 113231, "credit_id": "52fe457e9251416c910345ff", "cast_id": 11, "profile_path": "/4GoIrUIbioXEgoDuctyzyzxmReP.jpg", "order": 10}], "directors": [{"name": "Sylvain White", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c91034605", "profile_path": "/gsXBBFhnaBKDgCdky7qTrn7Dx0M.jpg", "id": 31119}], "vote_average": 6.3, "runtime": 97}, "2048": {"poster_path": "/2mkFzf168xJrV6Leqq0bjqOlJCK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347234916, "overview": "In the year 2035, where robots are common and abide by the three laws of robotics, a techno-phobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.", "video": false, "id": 2048, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "I, Robot", "tagline": "Laws are made to be broken.", "vote_count": 1194, "homepage": "http://foxfilm.terra.com.br/filme.php?id_filme=485", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0343818", "adult": false, "backdrop_path": "/iNeKWgcTqUJhBToaosUXgca2nSY.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Mediastream Vierte Film GmbH & Co. Vermarktungs KG", "id": 19354}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Laurence Mark Productions", "id": 415}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "Canlaws Productions", "id": 19355}], "release_date": "2004-07-15", "popularity": 1.27522330826326, "original_title": "I, Robot", "budget": 120000000, "cast": [{"name": "Will Smith", "character": "Del Spooner", "id": 2888, "credit_id": "52fe4330c3a36847f8041063", "cast_id": 20, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Bridget Moynahan", "character": "Susan Calvin", "id": 18354, "credit_id": "52fe4330c3a36847f8041067", "cast_id": 21, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 1}, {"name": "Alan Tudyk", "character": "Sonny", "id": 21088, "credit_id": "52fe4330c3a36847f804104d", "cast_id": 10, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 2}, {"name": "James Cromwell", "character": "Dr. Alfred Lanning", "id": 2505, "credit_id": "52fe4330c3a36847f8041051", "cast_id": 11, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Bruce Greenwood", "character": "Lawrence Robertson", "id": 21089, "credit_id": "52fe4330c3a36847f8041055", "cast_id": 12, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 4}, {"name": "Shia LaBeouf", "character": "Farber", "id": 10959, "credit_id": "52fe4330c3a36847f804105f", "cast_id": 18, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 5}, {"name": "Chi McBride", "character": "Lt. John Bergin", "id": 8687, "credit_id": "52fe4330c3a36847f804106b", "cast_id": 22, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 6}, {"name": "Jerry Wasserman", "character": "Baldez", "id": 21091, "credit_id": "52fe4330c3a36847f804106f", "cast_id": 23, "profile_path": "/wNIZZXmI0LMnf2231auSExQz7FT.jpg", "order": 7}, {"name": "Peter Shinkoda", "character": "Chin", "id": 172994, "credit_id": "52fe4330c3a36847f8041073", "cast_id": 24, "profile_path": "/4Puo4QPIgclnNW9y8gBmr174g9E.jpg", "order": 8}, {"name": "Terry Chen", "character": "Chin", "id": 11677, "credit_id": "52fe4330c3a36847f8041077", "cast_id": 25, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 9}, {"name": "David Haysom", "character": "NS4 Robot and NS5 Robot", "id": 189001, "credit_id": "52fe4330c3a36847f804107b", "cast_id": 26, "profile_path": "/rcynXqV77Tt5DTc9dwFT0sxDYEn.jpg", "order": 10}, {"name": "Scott Heindl", "character": "NS4 Robot and NS5 Robot", "id": 10869, "credit_id": "52fe4330c3a36847f804107f", "cast_id": 27, "profile_path": "/bgYaBE4RcHM8IjW07djz2EhjrdF.jpg", "order": 11}, {"name": "Adrian Ricard", "character": "Granny", "id": 21090, "credit_id": "52fe4330c3a36847f8041083", "cast_id": 28, "profile_path": "/wmVCNkaNLHMqCYXHoWvf2i6R65i.jpg", "order": 12}, {"name": "Fiona Hogan", "character": "V.I.K.I.", "id": 21092, "credit_id": "52fe4330c3a36847f8041087", "cast_id": 29, "profile_path": "/7dte7kV2rzDAdTmV2MIm5mYH6DI.jpg", "order": 13}, {"name": "Sharon Wilkins", "character": "Asthmatic Woman", "id": 176695, "credit_id": "52fe4330c3a36847f804108b", "cast_id": 30, "profile_path": "/sDuWTO0LZpvfPagJPshQWqOmeOE.jpg", "order": 14}, {"name": "Craig March", "character": "Detective", "id": 61164, "credit_id": "52fe4330c3a36847f804108f", "cast_id": 31, "profile_path": "/w1C567OoZDQZltGTRmEYeqCgxoF.jpg", "order": 15}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe4330c3a36847f8041025", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 6.5, "runtime": 115}, "75780": {"poster_path": "/38bmEXmuJuInLs9dwfgOGCHmZ7l.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 218340595, "overview": "In an innocent heartland city, five are shot dead by an expert sniper. The police quickly identify and arrest the culprit, and build a slam-dunk case. But the accused man claims he's innocent and says \"Get Jack Reacher.\" Reacher himself sees the news report and turns up in the city. The defense is immensely relieved, but Reacher has come to bury the guy. Shocked at the accused's request, Reacher sets out to confirm for himself the absolute certainty of the man's guilt, but comes up with more than he bargained for.", "video": false, "id": 75780, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Jack Reacher", "tagline": "The Law Has Limits. He Does Not.", "vote_count": 1548, "homepage": "http://www.jackreachermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790724", "adult": false, "backdrop_path": "/ezXodpP429qK0Av89pVNlaXWJkQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "Skydance Productions", "id": 6277}, {"name": "TC Productions", "id": 21777}], "release_date": "2012-12-21", "popularity": 1.3868788963671, "original_title": "Jack Reacher", "budget": 60000000, "cast": [{"name": "Tom Cruise", "character": "Reacher", "id": 500, "credit_id": "52fe4912c3a368484e11918f", "cast_id": 1001, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Helen", "id": 10882, "credit_id": "52fe4912c3a368484e119193", "cast_id": 1002, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Richard Jenkins", "character": "Rodin", "id": 28633, "credit_id": "52fe4912c3a368484e1191cf", "cast_id": 1014, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 2}, {"name": "David Oyelowo", "character": "Emerson", "id": 35013, "credit_id": "52fe4912c3a368484e1191d3", "cast_id": 1015, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 3}, {"name": "Werner Herzog", "character": "The Zec", "id": 6818, "credit_id": "52fe4912c3a368484e1191cb", "cast_id": 1013, "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "order": 4}, {"name": "Jai Courtney", "character": "Charlie", "id": 224181, "credit_id": "52fe4912c3a368484e1191d7", "cast_id": 1016, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 5}, {"name": "Vladimir Sizov", "character": "Vlad", "id": 1132335, "credit_id": "52fe4913c3a368484e119247", "cast_id": 1044, "profile_path": "/ubFKPZLkKmked0IYxITaQAeEA7c.jpg", "order": 6}, {"name": "Joseph Sikora", "character": "Barr", "id": 82631, "credit_id": "52fe4913c3a368484e1191e3", "cast_id": 1019, "profile_path": "/rNGXbssgOE9clqMyqGSdeiKvBJD.jpg", "order": 7}, {"name": "Michael Raymond-James", "character": "Linsky", "id": 53259, "credit_id": "52fe4912c3a368484e1191db", "cast_id": 1017, "profile_path": "/35kiFPR1MhaoNbBJYg8wWi187TW.jpg", "order": 8}, {"name": "Alexia Fast", "character": "Sandy", "id": 203630, "credit_id": "52fe4913c3a368484e1191e7", "cast_id": 1021, "profile_path": "/rjCu0ywbStoEAhyKAcGHPSVZmX6.jpg", "order": 9}, {"name": "Josh Helman", "character": "Jeb", "id": 1056053, "credit_id": "52fe4913c3a368484e1191df", "cast_id": 1018, "profile_path": "/rmj2HHc1uNESTlHk50qnCHK11jD.jpg", "order": 10}, {"name": "Robert Duvall", "character": "Cash", "id": 3087, "credit_id": "52fe4912c3a368484e1191c7", "cast_id": 1012, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 11}, {"name": "James Martin Kelly", "character": "Rob Farrior", "id": 162849, "credit_id": "52fe4913c3a368484e119207", "cast_id": 1028, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 12}, {"name": "Dylan Kussman", "character": "Gary", "id": 2695, "credit_id": "52fe4913c3a368484e1191eb", "cast_id": 1022, "profile_path": "/1qxGjFfkYGiEpM6QriVo4gjTTWz.jpg", "order": 13}, {"name": "Denver Milord", "character": "Punk", "id": 1286869, "credit_id": "52fe4913c3a368484e11924b", "cast_id": 1045, "profile_path": "/4L9FQZZfSoV78UZEiVjn3pxzRL7.jpg", "order": 14}, {"name": "Susan Angelo", "character": "Oline Archer", "id": 157081, "credit_id": "52fe4913c3a368484e11924f", "cast_id": 1046, "profile_path": "/dkeJAzIJXTl2OxTRMnVTOLX0p7.jpg", "order": 15}, {"name": "Julia Yorks", "character": "Chrissie Farrior", "id": 155042, "credit_id": "52fe4913c3a368484e11920b", "cast_id": 1029, "profile_path": "/ixsRMf6pLIHSXNzKIbekBaicrfL.jpg", "order": 16}, {"name": "Nicole Forester", "character": "Nancy Holt", "id": 165293, "credit_id": "52fe4913c3a368484e11920f", "cast_id": 1030, "profile_path": "/xmzdRiCNXDFdBSkQesmyzYYFSBX.jpg", "order": 17}, {"name": "Delilah Picart", "character": "Rita Coronado", "id": 1286870, "credit_id": "52fe4913c3a368484e119253", "cast_id": 1047, "profile_path": "/upip3EQHl3Q3UjMxbipTehayNGG.jpg", "order": 18}, {"name": "Joe Coyle", "character": "Darren Sawyer", "id": 219679, "credit_id": "52fe4913c3a368484e119213", "cast_id": 1032, "profile_path": "/sMeAwArD9LMP1bsX6iNYybup5oE.jpg", "order": 19}, {"name": "Alicia Murton", "character": "Mrs. Sawyer", "id": 1272959, "credit_id": "52fe4913c3a368484e119217", "cast_id": 1033, "profile_path": "/jt6d9bAKkeAUog08eNmqBeJSP40.jpg", "order": 20}, {"name": "Peter Gannon", "character": "Mr. Archer", "id": 208762, "credit_id": "52fe4913c3a368484e11921b", "cast_id": 1034, "profile_path": "/1s22NSYqwuvKeCAnW30ZqZvI1u9.jpg", "order": 21}, {"name": "David Whalen", "character": "Mr. Holt", "id": 1124950, "credit_id": "52fe4913c3a368484e11921f", "cast_id": 1035, "profile_path": "/gtJNHMohbiHEYNIdVNd4I3aoUCx.jpg", "order": 22}, {"name": "Tristan Elma", "character": "Marcos Coronado", "id": 1272960, "credit_id": "52fe4913c3a368484e119223", "cast_id": 1036, "profile_path": null, "order": 23}, {"name": "Sophie Guest", "character": "Little Girl", "id": 1272961, "credit_id": "52fe4913c3a368484e119227", "cast_id": 1037, "profile_path": "/ovdkfCOO56ZC71WNSFrV9wcvbfj.jpg", "order": 24}, {"name": "Michael Minor", "character": "Eyewitness", "id": 1799, "credit_id": "52fe4913c3a368484e11922b", "cast_id": 1038, "profile_path": "/purZkN1I9xvNsrXXiFc4WywYpld.jpg", "order": 25}, {"name": "Scott A. Martin", "character": "Wesley", "id": 1055739, "credit_id": "52fe4913c3a368484e11922f", "cast_id": 1039, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 26}, {"name": "CJ Ramirez", "character": "Secretary", "id": 1272962, "credit_id": "52fe4913c3a368484e119233", "cast_id": 1040, "profile_path": "/1MhNzkmmGgCSkQVMw5Vl2Jb4zZ7.jpg", "order": 27}, {"name": "Teri Clark", "character": "Night Manager (as Teri Clark Linden)", "id": 928356, "credit_id": "52fe4913c3a368484e119237", "cast_id": 1041, "profile_path": "/18q4sinIObKCcDH0y7hqGJ0qfFT.jpg", "order": 28}, {"name": "Jarid Faubel", "character": "Man on Bus", "id": 1286871, "credit_id": "52fe4913c3a368484e119257", "cast_id": 1048, "profile_path": "/uW5LZapfDrKbfgA0RwWhmeMCgyv.jpg", "order": 29}, {"name": "Sara Lindsey", "character": "Woman on Bus", "id": 1098033, "credit_id": "52fe4913c3a368484e11925b", "cast_id": 1049, "profile_path": "/jdsEJyq9JbvSq6gerWcei4q7fIE.jpg", "order": 30}, {"name": "Jace Jeanes", "character": "Zec's Thug", "id": 131422, "credit_id": "52fe4913c3a368484e11925f", "cast_id": 1050, "profile_path": "/zTVsCVZiutde01QcuMa3ZlspIRZ.jpg", "order": 31}, {"name": "Andrei Runtso", "character": "Zec's Thug", "id": 1286873, "credit_id": "52fe4913c3a368484e119263", "cast_id": 1051, "profile_path": "/1Nn1YxLrSp5wxoNM370bZi12FXY.jpg", "order": 32}, {"name": "Efka Kvaraciejus", "character": "Zec's Thug", "id": 1272901, "credit_id": "52fe4913c3a368484e119267", "cast_id": 1052, "profile_path": "/oC1hEoxr0Rv8wAY7hlypCEN2YtW.jpg", "order": 33}, {"name": "Lee Child", "character": "Desk Sergeant", "id": 1056052, "credit_id": "52fe4913c3a368484e11926b", "cast_id": 1053, "profile_path": "/n4KwUgMkM7R92PoKBdt8VFqk42t.jpg", "order": 34}, {"name": "Tommy Lafitte", "character": "Man with Ballcap", "id": 1219514, "credit_id": "52fe4913c3a368484e11926f", "cast_id": 1054, "profile_path": "/6aMEXcJtuHoAkPy8Oub1xVYjo6V.jpg", "order": 35}, {"name": "Kristen Dalton", "character": "Mindy", "id": 18475, "credit_id": "52fe4913c3a368484e119273", "cast_id": 1055, "profile_path": "/hJE14DbGUWXVQHUxdIClpEcUfFo.jpg", "order": 36}, {"name": "Jordan Trovillion", "character": "Goodwill Cashier", "id": 558923, "credit_id": "52fe4913c3a368484e119277", "cast_id": 1056, "profile_path": "/qjmARKyWhlx0tPFH0ZTqC2agxtW.jpg", "order": 37}, {"name": "Annie Kitral", "character": "Pawn Shop Cashier", "id": 167110, "credit_id": "52fe4913c3a368484e11927b", "cast_id": 1057, "profile_path": "/esdBJamGHBan37Jh3eRETYNk9ay.jpg", "order": 38}, {"name": "Lissy Gulick", "character": "Diner Waitress", "id": 1286875, "credit_id": "52fe4913c3a368484e11927f", "cast_id": 1058, "profile_path": "/qTptwEDQ3kkDGVByYPcL6brI82b.jpg", "order": 39}, {"name": "Catherine Albers", "character": "Jeb's Mom", "id": 1286876, "credit_id": "52fe4913c3a368484e119283", "cast_id": 1059, "profile_path": "/ajyxszuKHFytJTQpGZNzGY6chDP.jpg", "order": 40}, {"name": "Larissa Emanuele", "character": "Sportsbar Waitress", "id": 1286877, "credit_id": "52fe4913c3a368484e119287", "cast_id": 1060, "profile_path": "/yKZChg2wsONJvpR7PCWV2V08vbo.jpg", "order": 41}, {"name": "Jason McCune", "character": "Construction Foreman", "id": 1023800, "credit_id": "52fe4913c3a368484e11928b", "cast_id": 1061, "profile_path": "/8E2y9FyL6FxghtzPRHE0qW9EJFM.jpg", "order": 42}, {"name": "Shane Callahan", "character": "SWAT Guy", "id": 27687, "credit_id": "52fe4913c3a368484e11928f", "cast_id": 1062, "profile_path": "/rYUkFvz1ZkR1xqWpAbIc7JTiUbw.jpg", "order": 43}, {"name": "Joshua Elijah Reese", "character": "SWAT Guy", "id": 1286878, "credit_id": "52fe4913c3a368484e119293", "cast_id": 1063, "profile_path": "/iJj4z2Z8ifqwyL2OHhyBebifwOR.jpg", "order": 44}, {"name": "Nathan Hollabaugh", "character": "Cop", "id": 1286879, "credit_id": "52fe4913c3a368484e119297", "cast_id": 1064, "profile_path": "/i9YztZeucG8ZvYa43YqbmzGq2XY.jpg", "order": 45}, {"name": "Christopher Stadulis", "character": "Cop", "id": 211964, "credit_id": "52fe4913c3a368484e11929b", "cast_id": 1065, "profile_path": "/wz6OJK4dAoEJcx1L9kMp3Py9bNV.jpg", "order": 46}], "directors": [{"name": "Christopher McQuarrie", "department": "Directing", "job": "Director", "credit_id": "52fe4913c3a368484e1191fd", "profile_path": "/8R89a58B7B3jmU3v4clIheaxD4k.jpg", "id": 9033}], "vote_average": 6.1, "runtime": 130}, "149509": {"poster_path": "/632JG1wY6pGVxZxF5NaO5piNeFe.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the aftermath of his girlfriend's mysterious death, a young man awakens to strange horns sprouting from his temples.", "video": false, "id": 149509, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Horns", "tagline": "He Will Bring Out The Devil In You", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1528071", "adult": false, "backdrop_path": "/kHG4oDfKXvGrpIgysDGqEKL6XfC.jpg", "production_companies": [{"name": "Mandalay Pictures", "id": 551}, {"name": "Red Granite Pictures", "id": 19177}], "release_date": "2013-09-06", "popularity": 1.56975995056737, "original_title": "Horns", "budget": 0, "cast": [{"name": "Daniel Radcliffe", "character": "Ig Perrish", "id": 10980, "credit_id": "52fe4bea9251416c75111e17", "cast_id": 1, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Juno Temple", "character": "Merrin Williams", "id": 36594, "credit_id": "52fe4bea9251416c75111e25", "cast_id": 4, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 1}, {"name": "Kelli Garner", "character": "Glenna", "id": 17442, "credit_id": "52fe4bea9251416c75111e29", "cast_id": 5, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 2}, {"name": "James Remar", "character": "Derrick Perrish", "id": 1736, "credit_id": "52fe4bea9251416c75111e2d", "cast_id": 6, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 3}, {"name": "Max Minghella", "character": "Lee Tourneau", "id": 2978, "credit_id": "52fe4bea9251416c75111e31", "cast_id": 7, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 4}, {"name": "Joe Anderson", "character": "Terry Parrish", "id": 29234, "credit_id": "52fe4bea9251416c75111e3d", "cast_id": 10, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 5}, {"name": "Sabrina Carpenter", "character": "Young Merrin", "id": 1152083, "credit_id": "52fe4bea9251416c75111e21", "cast_id": 3, "profile_path": "/nH7wrgsa0B2rG0omwrjCF3Av0Om.jpg", "order": 6}, {"name": "Laine MacNeil", "character": "Young Glenna", "id": 84468, "credit_id": "52fe4bea9251416c75111e35", "cast_id": 8, "profile_path": "/1CX7wfCXTttRUVwMnfWmHtl9kz1.jpg", "order": 7}, {"name": "Dylan Schmid", "character": "Lee at 13", "id": 973518, "credit_id": "52fe4bea9251416c75111e39", "cast_id": 9, "profile_path": "/qrO6kzqpAXCV8t2UI2V5N6701II.jpg", "order": 8}, {"name": "Kendra Anderson", "character": "Nurse Delilah", "id": 1175501, "credit_id": "54aab89e9251414d67006d5e", "cast_id": 13, "profile_path": "/l4PXRPVSZNqN0A1THJyNayBpyct.jpg", "order": 9}, {"name": "Kathleen Quinlan", "character": "Lydia Perrish", "id": 8183, "credit_id": "54ef06ef925141796e005cec", "cast_id": 14, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 10}, {"name": "Heather Graham", "character": "Veronica", "id": 69122, "credit_id": "54ef07619251417974005e79", "cast_id": 15, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 11}, {"name": "David Morse", "character": "Dale Williams", "id": 52, "credit_id": "54ef07d7c3a3686d58005b39", "cast_id": 16, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 12}, {"name": "Michael Adamthwaite", "character": "Eric Hannity", "id": 63566, "credit_id": "54ef0847c3a36869e50036a1", "cast_id": 17, "profile_path": "/cLHvXOFJgGPEN4ym0a2Ys4s3p85.jpg", "order": 13}, {"name": "Nels Lennarson", "character": "Wallace Sturtz", "id": 63564, "credit_id": "54ef098a9251413ae800323b", "cast_id": 18, "profile_path": "/fA6Qt7EdoVO4kLWyg4KneFSIPwl.jpg", "order": 14}, {"name": "Don Thompson", "character": "Al O'Hara", "id": 56749, "credit_id": "54ef1b6ec3a3686d58005cda", "cast_id": 19, "profile_path": "/gw4gG6uN4IItV0OeAWYFftmxvRn.jpg", "order": 15}, {"name": "Jay Brazeau", "character": "Father Mould", "id": 63791, "credit_id": "54ef1be99251413ae80033a9", "cast_id": 20, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 16}, {"name": "Alex Zahara", "character": "Dr. Renald", "id": 62919, "credit_id": "54ef22d0c3a3684aff001622", "cast_id": 21, "profile_path": "/7nL163KHo0LpGlzndjNfKVrwpkZ.jpg", "order": 17}, {"name": "Christine Willes", "character": "Receptionist", "id": 189719, "credit_id": "54f41ff1c3a3681de0001940", "cast_id": 53, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 18}, {"name": "Meredith McGeachie", "character": "Mary, young mother", "id": 196694, "credit_id": "54ef27539251417961005f5c", "cast_id": 23, "profile_path": "/qJPOZaDzRL6D4nIWoV1YmPgjDn1.jpg", "order": 19}, {"name": "Sarah Boey", "character": "Little Girl", "id": 1432087, "credit_id": "54ef28049251417965006118", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Panou", "character": "Golf Pro", "id": 1219446, "credit_id": "54ef292ac3a368402d0033a7", "cast_id": 25, "profile_path": "/2ZlQp0ZenSK9vNscU0Ye4hbi1U4.jpg", "order": 21}, {"name": "Reese Alexander", "character": "TV Reporter", "id": 141774, "credit_id": "54ef2a49c3a3686b9a003a83", "cast_id": 26, "profile_path": "/eFv7F7LDzkw2mQUfRh9C0FBGvph.jpg", "order": 22}, {"name": "Desiree Zurowski", "character": "Radio Reporter", "id": 59242, "credit_id": "54ef2c0cc3a368402d0033d1", "cast_id": 27, "profile_path": "/9UGai7oXtZQZdEjQpoCRlfmzjgz.jpg", "order": 23}, {"name": "Marilyn Norry", "character": "Protester", "id": 143307, "credit_id": "54ef2cfdc3a3686b9a003ac8", "cast_id": 28, "profile_path": "/hPOdJREJdMgDpCmO0r4vWN2kobs.jpg", "order": 24}, {"name": "Nancy Sivak", "character": "Mrs. Tourneau", "id": 1224877, "credit_id": "54ef2f6cc3a3684aff001762", "cast_id": 29, "profile_path": "/o48b3gOVQSMthmRMJksxuHAd93m.jpg", "order": 25}, {"name": "Cameron McDonald", "character": "E.R. Doctor", "id": 1432096, "credit_id": "54ef2fb5925141795f006340", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "John Stewart", "character": "Diner Manager", "id": 1432102, "credit_id": "54ef33acc3a368402d003479", "cast_id": 31, "profile_path": "/avL5BANvV3V98Vxi78qRbU5koD4.jpg", "order": 27}, {"name": "Dean Wray", "character": "Stan, the Barfly", "id": 117997, "credit_id": "54efcd0b9251410ebe000319", "cast_id": 32, "profile_path": "/1Bk0OKpzgvKlHsbrGnLaVybltiY.jpg", "order": 28}, {"name": "Graem Beddoes", "character": "Unemployed Barfly", "id": 1432440, "credit_id": "54efce42c3a36869e5004877", "cast_id": 33, "profile_path": "/pj827X3BG9LaArkIRCGMK68sl4a.jpg", "order": 29}, {"name": "Eric Pollins", "character": "Exhibitionist Barfly", "id": 1265674, "credit_id": "54f073049251417961008af8", "cast_id": 34, "profile_path": "/vpAxNdbHHCRw8DPqTohdkm3823.jpg", "order": 30}, {"name": "Pesi Daruwalla", "character": "Antique Store Owner", "id": 1432725, "credit_id": "54f09452c3a3686b9a006097", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Ryan Clare", "character": "Terry's Bass Player", "id": 1432726, "credit_id": "54f094d0c3a3686d58007fef", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Richard Mitchell", "character": "Terry's Jazz Quintet", "id": 1432727, "credit_id": "54f0950b9251417961008d90", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Kieron Rhys Lillo", "character": "Terry's Jazz Quintet", "id": 1432729, "credit_id": "54f095c0c3a3687be20019f4", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Tyson Sully", "character": "Terry's Jazz Quintet", "id": 1432730, "credit_id": "54f09635925141795f008782", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Mark Muskiw", "character": "Terry's Jazz Quintet", "id": 1432731, "credit_id": "54f09666c3a3686b9a0060c4", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Mitchell Kummen", "character": "Ig Perrish at 13", "id": 1432732, "credit_id": "54f096a6c3a3687be2001a07", "cast_id": 41, "profile_path": "/73KpS85Tojg4zRlKRFHZMJM4jU5.jpg", "order": 37}, {"name": "Jared Ager-Foster", "character": "Terry Perrish at 15", "id": 1432758, "credit_id": "54f09e58c3a3682e71001cef", "cast_id": 42, "profile_path": "/1PnhoeRn39Ju1i7r4l1CZudQx44.jpg", "order": 38}, {"name": "Erik McNamee", "character": "Eric Hannity at 15", "id": 1255070, "credit_id": "54f09fc0925141795f00889a", "cast_id": 43, "profile_path": "/5goGMSw2hytVBSggWY7DPhpA4mK.jpg", "order": 39}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe4bea9251416c75111e1d", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 6.4, "runtime": 120}, "198663": {"poster_path": "/coss7RgL0NH6g4fC2s5atvf3dFO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 166914185, "overview": "Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow \"runners\" for a shot at escape.", "video": false, "id": 198663, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Maze Runner", "tagline": "Run - Remember - Survive", "vote_count": 1217, "homepage": "http://themazerunnermovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/rvz3oQj4uz30wcdI1tvAD7dlq0X.jpg", "id": 295130, "name": "The Maze Runner Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1790864", "adult": false, "backdrop_path": "/yTbPPmLAn7DiiM0sPYfZduoAjB.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "20th Century Fox", "id": 25}, {"name": "Gotham Group", "id": 3672}, {"name": "Temple Hill Entertainment", "id": 12292}, {"name": "Dayday Films", "id": 8569}, {"name": "Ingenious Media", "id": 290}], "release_date": "2014-09-19", "popularity": 7.39835036100066, "original_title": "The Maze Runner", "budget": 34000000, "cast": [{"name": "Dylan O'Brien", "character": "Thomas", "id": 527393, "credit_id": "52fe4d859251416c9111909d", "cast_id": 3, "profile_path": "/6u7aDtMnAGaRjOGWgjMIrNNr0rp.jpg", "order": 0}, {"name": "Aml Ameen", "character": "Alby", "id": 78062, "credit_id": "5350129cc3a3681cbc00131a", "cast_id": 14, "profile_path": "/hEzY6Uk9bMhs9pV6Kp64gcBMUIE.jpg", "order": 1}, {"name": "Ki Hong Lee", "character": "Minho", "id": 1310760, "credit_id": "53501286c3a3681cc30012a9", "cast_id": 12, "profile_path": "/8QodPxf0yrBUzG0ZIVIPXJ4MgdA.jpg", "order": 2}, {"name": "Blake Cooper", "character": "Chuck", "id": 1389339, "credit_id": "5474ea4ac3a3686bf3000e60", "cast_id": 63, "profile_path": "/dPy339yRfqvhzi6k9RFxLW94YlB.jpg", "order": 3}, {"name": "Thomas Sangster", "character": "Newt", "id": 25663, "credit_id": "52fe4d859251416c911190a1", "cast_id": 4, "profile_path": "/x8floQ1YshVhPdwdTQDz9aJjuXE.jpg", "order": 4}, {"name": "Will Poulter", "character": "Gally", "id": 93491, "credit_id": "52fe4d859251416c91119099", "cast_id": 2, "profile_path": "/d3wR8o9y9jmTha426ms1m70h0HC.jpg", "order": 5}, {"name": "Dexter Darden", "character": "Fry Pan", "id": 1036196, "credit_id": "535012c7c3a3681cd40012d7", "cast_id": 18, "profile_path": "/m73vzIpVN3LJAzeANE1eJczqyda.jpg", "order": 6}, {"name": "Kaya Scodelario", "character": "Teresa", "id": 115150, "credit_id": "52fe4d859251416c911190a5", "cast_id": 5, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 7}, {"name": "Chris Sheffield", "character": "Ben", "id": 969045, "credit_id": "535012a4c3a3681ccc00138b", "cast_id": 15, "profile_path": "/nt9NuusCxlfNRaW37kolvWc5rU9.jpg", "order": 8}, {"name": "Joe Adler", "character": "Zart", "id": 970561, "credit_id": "535012afc3a3681ce50011ab", "cast_id": 16, "profile_path": "/pxtG8pdhLOrtEJwW9Teh5BYgohm.jpg", "order": 9}, {"name": "Alexander Flores", "character": "Winston", "id": 1340889, "credit_id": "548348a99251416e81008b6e", "cast_id": 69, "profile_path": "/h7xByuXKW2N9L72CuPj0hRc84UK.jpg", "order": 10}, {"name": "Jacob Latimore", "character": "Jeff", "id": 512316, "credit_id": "53501295c3a3681cae001253", "cast_id": 13, "profile_path": "/2v3nhyEuay3zIbDL5fc04ZdXjCm.jpg", "order": 11}, {"name": "Randall D. Cunningham", "character": "Clint", "id": 1395491, "credit_id": "548348f7c3a36817a50091cc", "cast_id": 70, "profile_path": "/gozEP0R51DyGYGINUUvyvGz96jd.jpg", "order": 12}, {"name": "Patricia Clarkson", "character": "Ava Paige", "id": 1276, "credit_id": "5350127ac3a3681cd40012bc", "cast_id": 11, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 13}, {"name": "Don McManus", "character": "Masked Man", "id": 79025, "credit_id": "535012bec3a3681cc30012b9", "cast_id": 17, "profile_path": "/8JOjJkZBQmhVb6n8yHw70LIgC7i.jpg", "order": 14}, {"name": "Michael Bow", "character": "Glader", "id": 1415403, "credit_id": "54bcc846c3a36840460054f8", "cast_id": 72, "profile_path": "/vpLSimr7UF4IRKDaqhUguUIVeKq.jpg", "order": 15}, {"name": "Jerry Clark", "character": "Glader", "id": 1415405, "credit_id": "54bccab29251416e9b0039d6", "cast_id": 73, "profile_path": "/kXI1d9UfK4dwhqCdu7ZpBBb5PaQ.jpg", "order": 16}, {"name": "Michael Deville", "character": "Glader", "id": 1415406, "credit_id": "54bccb229251411d7700a524", "cast_id": 74, "profile_path": null, "order": 17}, {"name": "Dylan Gaspard", "character": "Glader", "id": 1415408, "credit_id": "54bccb59c3a3684046005544", "cast_id": 75, "profile_path": null, "order": 18}, {"name": "Mark Gibson", "character": "Glader", "id": 1415410, "credit_id": "54bccbf0c3a3684046005564", "cast_id": 76, "profile_path": null, "order": 19}, {"name": "Cory Gooding", "character": "Glader", "id": 1415412, "credit_id": "54bccc3f9251413635004d30", "cast_id": 77, "profile_path": null, "order": 20}, {"name": "Cazi Greene", "character": "Glader", "id": 1415413, "credit_id": "54bccd2292514148b000778f", "cast_id": 78, "profile_path": "/jz7olKDnTdzPahtEKYPqY0S5Ah2.jpg", "order": 21}, {"name": "Dustin Guitreau", "character": "Glader", "id": 1415416, "credit_id": "54bccdf5c3a3686c6b00c278", "cast_id": 79, "profile_path": null, "order": 22}, {"name": "Tyler Harrison", "character": "Glader", "id": 1415417, "credit_id": "54bcce2a9251411d7700a59f", "cast_id": 80, "profile_path": null, "order": 23}, {"name": "Landon Hazel", "character": "Glader", "id": 1415418, "credit_id": "54bcce63c3a3686c6b00c291", "cast_id": 81, "profile_path": null, "order": 24}, {"name": "Gary Hood", "character": "Glader", "id": 1415421, "credit_id": "54bccf00c3a3681da00012eb", "cast_id": 82, "profile_path": "/rvtWgnU2r3LzCOiAOYDktbAk2j3.jpg", "order": 25}, {"name": "Nick Killebrew", "character": "Glader", "id": 1415423, "credit_id": "54bccf999251416e9b003a79", "cast_id": 83, "profile_path": "/wfd6LvpfNkBKNQPrCZaHd3Ikse7.jpg", "order": 26}, {"name": "John Langston", "character": "Glader", "id": 1415424, "credit_id": "54bcd054c3a368404600560b", "cast_id": 84, "profile_path": "/1h5fNG4qWNXjA74TDBY5D6RNiuh.jpg", "order": 27}, {"name": "Chad Martinez", "character": "Glader", "id": 1415426, "credit_id": "54bcd0e5c3a368389c003cb0", "cast_id": 85, "profile_path": null, "order": 28}, {"name": "Lester Millet", "character": "Glader", "id": 1415428, "credit_id": "54bcd1159251416e6000397e", "cast_id": 86, "profile_path": null, "order": 29}, {"name": "Sawyer Pierce", "character": "Glader", "id": 1415429, "credit_id": "54bcd15ec3a368389c003cc0", "cast_id": 87, "profile_path": null, "order": 30}, {"name": "Weston Rachal", "character": "Glader", "id": 1415431, "credit_id": "54bcd18e9251411d6a00ae1b", "cast_id": 88, "profile_path": null, "order": 31}, {"name": "Bryce Romero", "character": "Glader", "id": 1415436, "credit_id": "54bcd2009251416e6000399b", "cast_id": 89, "profile_path": "/leM5kfYAJ8hE7FG7KfyHbDXuwBt.jpg", "order": 32}, {"name": "Johnny Stockwell", "character": "Glader", "id": 1415437, "credit_id": "54bcd2419251416eae0036dd", "cast_id": 90, "profile_path": null, "order": 33}, {"name": "SanChavis Torns", "character": "Glader", "id": 1415442, "credit_id": "54bcd2849251416e9b003ae5", "cast_id": 91, "profile_path": null, "order": 34}, {"name": "Lane Westerhaus", "character": "Glader", "id": 1415443, "credit_id": "54bcd2ba9251416e600039d1", "cast_id": 92, "profile_path": null, "order": 35}, {"name": "Gentry Williams", "character": "Glader", "id": 1415446, "credit_id": "54bcd2e6c3a3686c61009f34", "cast_id": 93, "profile_path": null, "order": 36}], "directors": [{"name": "Wes Ball", "department": "Directing", "job": "Director", "credit_id": "52fe4d859251416c91119095", "profile_path": null, "id": 1179066}], "vote_average": 7.1, "runtime": 113}, "116745": {"poster_path": "/fthuzm8T4bowlPtP5M9cFOjv0Ld.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.", "video": false, "id": 116745, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Secret Life of Walter Mitty", "tagline": "Stop Dreaming, Start Living", "vote_count": 1013, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0359950", "adult": false, "backdrop_path": "/mrvlpJFAzKwZZkLm9VD7Rh2VECi.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "New Line Cinema", "id": 12}, {"name": "Samuel Goldwyn Films", "id": 9118}, {"name": "Red Hour Films", "id": 12178}, {"name": "TSG Entertainment", "id": 22213}], "release_date": "2013-12-25", "popularity": 1.98147056303458, "original_title": "The Secret Life of Walter Mitty", "budget": 90000000, "cast": [{"name": "Ben Stiller", "character": "Walter Mitty", "id": 7399, "credit_id": "52fe4b9dc3a36847f820c115", "cast_id": 11, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Kristen Wiig", "character": "Cheryl Melhoff", "id": 41091, "credit_id": "52fe4b9dc3a36847f820c119", "cast_id": 12, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 1}, {"name": "Patton Oswalt", "character": "Todd Maher", "id": 10872, "credit_id": "52fe4b9dc3a36847f820c11d", "cast_id": 13, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 2}, {"name": "Shirley MacLaine", "character": "Edna Mitty", "id": 4090, "credit_id": "52fe4b9dc3a36847f820c121", "cast_id": 14, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 3}, {"name": "Adam Scott", "character": "Ted Hendricks", "id": 36801, "credit_id": "52fe4b9dc3a36847f820c125", "cast_id": 15, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Odessa Mitty", "id": 17696, "credit_id": "52fe4b9dc3a36847f820c129", "cast_id": 16, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Sean Penn", "character": "Sean O'Connell", "id": 2228, "credit_id": "52fe4b9dc3a36847f820c12d", "cast_id": 17, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 6}, {"name": "Terence Bernie Hines", "character": "Gary Mannheim", "id": 28419, "credit_id": "52fe4b9dc3a36847f820c131", "cast_id": 18, "profile_path": "/uMC8ILPk0h2fN6ZM8N7kHq8Uxym.jpg", "order": 7}, {"name": "Gurdeep Singh", "character": "Cab Driver", "id": 185705, "credit_id": "52fe4b9dc3a36847f820c135", "cast_id": 19, "profile_path": "/dCrHZdnH1vxLuWdyatORaB9ggYc.jpg", "order": 8}, {"name": "Alex Anfanger", "character": "Ted's Toner Box Associate", "id": 961834, "credit_id": "52fe4b9dc3a36847f820c139", "cast_id": 20, "profile_path": "/fgYr1YJKpDBQBMESsdFDfrTC4xv.jpg", "order": 9}, {"name": "Gary Wilmes", "character": "Walter's Dad", "id": 78404, "credit_id": "52fe4b9dc3a36847f820c13d", "cast_id": 21, "profile_path": "/i4AGTHkO84bc0LCQA6EaN9FtIyj.jpg", "order": 10}, {"name": "Adrian Martinez", "character": "Hernando", "id": 94432, "credit_id": "53a48d76c3a3687a400000c4", "cast_id": 28, "profile_path": "/zDnnzak4BLb5dNc9taqLNprkRvw.jpg", "order": 11}, {"name": "Jon Daly", "character": "Tim Naughton", "id": 1406450, "credit_id": "54a2e309c3a36864280007d1", "cast_id": 29, "profile_path": "/prpAj1fEUXOF1ydKbuT0I4rzAxm.jpg", "order": 12}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe4b9dc3a36847f820c0e1", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 7.1, "runtime": 114}, "2059": {"poster_path": "/luMoc56LLMWUt60vUNNpwxrbTNt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347451894, "overview": "Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.", "video": false, "id": 2059, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "National Treasure", "tagline": "The greatest adventure history has ever revealed.", "vote_count": 638, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9QtM9ie1x8z0vl6IFFepmyoOLQN.jpg", "poster_path": "/z5EIRaI8XS0brelYwDFEVlxcpzM.jpg", "id": 52984, "name": "National Treasure Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0368891", "adult": false, "backdrop_path": "/a8MKD2z2UuptTaA26ueJVJk3GGb.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Junction Entertainment", "id": 19097}, {"name": "Saturn Films", "id": 831}, {"name": "Walt Disney", "id": 5888}], "release_date": "2004-11-08", "popularity": 1.53365134129941, "original_title": "National Treasure", "budget": 1000000, "cast": [{"name": "Nicolas Cage", "character": "Benjamin Franklin Gates", "id": 2963, "credit_id": "52fe4331c3a36847f804144b", "cast_id": 14, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Diane Kruger", "character": "Abigail Chase", "id": 9824, "credit_id": "52fe4331c3a36847f804144f", "cast_id": 15, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "Sean Bean", "character": "Ian Howe", "id": 48, "credit_id": "52fe4331c3a36847f8041453", "cast_id": 16, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 2}, {"name": "Jon Voight", "character": "Patrick Henry Gates", "id": 10127, "credit_id": "52fe4331c3a36847f8041467", "cast_id": 21, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 3}, {"name": "Harvey Keitel", "character": "Sadusky", "id": 1037, "credit_id": "52fe4331c3a36847f8041457", "cast_id": 17, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 4}, {"name": "Justin Bartha", "character": "Riley Poole", "id": 21180, "credit_id": "52fe4331c3a36847f8041463", "cast_id": 20, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 5}, {"name": "Christopher Plummer", "character": "John Adams Gates", "id": 290, "credit_id": "52fe4331c3a36847f804145b", "cast_id": 18, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 6}, {"name": "David Dayan Fisher", "character": "Shaw", "id": 21182, "credit_id": "52fe4331c3a36847f804145f", "cast_id": 19, "profile_path": "/micncVbNKBlyFFyRHG01azk6p6H.jpg", "order": 7}, {"name": "Jason Earles", "character": "Thomas Gates", "id": 54594, "credit_id": "52fe4331c3a36847f8041477", "cast_id": 24, "profile_path": "/lwHIA7z8LAyKx7B4eV9bWUBT7tk.jpg", "order": 8}, {"name": "Stewart Finlay-McLennan", "character": "Powell", "id": 60461, "credit_id": "52fe4331c3a36847f804147b", "cast_id": 25, "profile_path": "/8yHyhqFcS5cLzjLBX0QABdVhW0J.jpg", "order": 9}, {"name": "Oleg Taktarov", "character": "Shippen", "id": 77351, "credit_id": "52fe4331c3a36847f804147f", "cast_id": 26, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 10}, {"name": "Stephen A. Pope", "character": "Phil", "id": 176558, "credit_id": "52fe4331c3a36847f8041483", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Annie Parisse", "character": "Agent Dawes", "id": 24291, "credit_id": "52fe4331c3a36847f8041487", "cast_id": 28, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 12}, {"name": "Mark Pellegrino", "character": "Agent Johnson", "id": 1236, "credit_id": "52fe4331c3a36847f804148b", "cast_id": 29, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 13}, {"name": "Armando Riesco", "character": "Agent Hendricks", "id": 19497, "credit_id": "52fe4331c3a36847f804148f", "cast_id": 30, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 14}, {"name": "Erik King", "character": "Agent Colfax", "id": 154759, "credit_id": "52fe4331c3a36847f8041493", "cast_id": 31, "profile_path": "/svrv513FlrnRshuA5YSaCLIcix9.jpg", "order": 15}, {"name": "Sharon Wilkins", "character": "Butcher Lady", "id": 176695, "credit_id": "52fe4331c3a36847f8041497", "cast_id": 32, "profile_path": "/sDuWTO0LZpvfPagJPshQWqOmeOE.jpg", "order": 16}, {"name": "Alexandra Balahoutis", "character": "Clothing Store Clerk", "id": 948015, "credit_id": "52fe4331c3a36847f804149b", "cast_id": 33, "profile_path": "/lOWvqXdITKxdXBaCxMmona8xbwk.jpg", "order": 17}, {"name": "Dior Raye", "character": "Gift Store Clerk", "id": 989247, "credit_id": "52fe4331c3a36847f804149f", "cast_id": 34, "profile_path": "/5R3vW6OWzCm3Gu7hQDOd6YF16EH.jpg", "order": 18}, {"name": "Antony Alda", "character": "Guard Ferguson", "id": 159047, "credit_id": "52fe4331c3a36847f80414a3", "cast_id": 35, "profile_path": "/4uZQNXeuTPPoeBscPIUVhAc45gO.jpg", "order": 19}, {"name": "Terrence Currier", "character": "Charles Carroll", "id": 174241, "credit_id": "52fe4331c3a36847f80414ab", "cast_id": 37, "profile_path": "/e5IbBJ3I4BGFIiqG3MBADE8321n.jpg", "order": 20}, {"name": "John Travis (VII)", "character": "Guard Mike", "id": 581390, "credit_id": "52fe4331c3a36847f80414a7", "cast_id": 36, "profile_path": null, "order": 21}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4330c3a36847f804140b", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.3, "runtime": 131}, "2062": {"poster_path": "/wbG9OoWlkZ7QRyxfvpjdWUbfREX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 623722818, "overview": "In one of Paris' finest restaurants, Remy, a determined young rat, dreams of becoming a renowned French chef. Torn between his family's wishes and his true calling. Remy and his pal Linguini set in motion a hilarious chain of events that turns the City of Lights upside down.", "video": false, "id": 2062, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Ratatouille", "tagline": "He's dying to become a chef.", "vote_count": 1380, "homepage": "http://disney.go.com/disneypictures/ratatouille/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0382932", "adult": false, "backdrop_path": "/sFpGI08aeHIRKlLi9SxLyYrRyZ8.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Pixar Animation Studios", "id": 3}], "release_date": "2007-06-28", "popularity": 1.62463661182111, "original_title": "Ratatouille", "budget": 150000000, "cast": [{"name": "Patton Oswalt", "character": "Remy", "id": 10872, "credit_id": "52fe4331c3a36847f80415f5", "cast_id": 2, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 0}, {"name": "Lou Romano", "character": "Linguini", "id": 7962, "credit_id": "52fe4331c3a36847f80415f9", "cast_id": 3, "profile_path": "/q5BXFPkFZA7RJh9Oj15WRQawMfk.jpg", "order": 1}, {"name": "Janeane Garofalo", "character": "Colette", "id": 21197, "credit_id": "52fe4331c3a36847f80415fd", "cast_id": 4, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 2}, {"name": "Ian Holm", "character": "Skinner", "id": 65, "credit_id": "52fe4331c3a36847f8041601", "cast_id": 5, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 3}, {"name": "Peter Sohn", "character": "Emile", "id": 21198, "credit_id": "52fe4331c3a36847f8041605", "cast_id": 6, "profile_path": "/ouaPg2hdBBXfq8N7HPatvEq3P81.jpg", "order": 4}, {"name": "Brian Dennehy", "character": "Django", "id": 6197, "credit_id": "52fe4331c3a36847f8041609", "cast_id": 7, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 5}, {"name": "Brad Garrett", "character": "Auguste Gusteau", "id": 18, "credit_id": "52fe4331c3a36847f804160d", "cast_id": 8, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 6}, {"name": "Peter O'Toole", "character": "Anton Ego", "id": 11390, "credit_id": "52fe4331c3a36847f8041611", "cast_id": 9, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 7}, {"name": "John Ratzenberger", "character": "Mustafa", "id": 7907, "credit_id": "52fe4331c3a36847f8041615", "cast_id": 10, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 8}, {"name": "Jake Steinfeld", "character": "Git", "id": 21199, "credit_id": "52fe4331c3a36847f8041619", "cast_id": 11, "profile_path": "/oqxN4mZG7U2TFIAZMl3AWLY3rGb.jpg", "order": 9}, {"name": "Will Arnett", "character": "Horst", "id": 21200, "credit_id": "52fe4331c3a36847f804161d", "cast_id": 12, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 10}, {"name": "Julius Callahan", "character": "Lalo/Francois", "id": 32536, "credit_id": "52fe4331c3a36847f804165d", "cast_id": 23, "profile_path": "/kCbjdzPh9Fh6LCYFi1pSm2sXfYo.jpg", "order": 11}, {"name": "James Remar", "character": "Larousse", "id": 1736, "credit_id": "52fe4331c3a36847f8041661", "cast_id": 24, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 12}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f80415f1", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 7.0, "runtime": 111}, "2064": {"poster_path": "/9StV7DX4ZtRZGJs9VcVEPvxIKL6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 182057016, "overview": "A love story built on a misunderstanding. A transit worker pulls commuter Peter off the tracks after he's mugged. But while he's in a coma, his family mistakenly thinks she's Peter's fianc\u00e9e, and she doesn't correct them. Things get more complicated when she falls for his brother, who's not quite sure that she's who she claims to be.", "video": false, "id": 2064, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "While You Were Sleeping", "tagline": "A story about love at second sight.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114924", "adult": false, "backdrop_path": "/oVdrgR93wiZfc4wbOhFFIP9ev9y.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1995-04-21", "popularity": 0.736881651671693, "original_title": "While You Were Sleeping", "budget": 17000000, "cast": [{"name": "Sandra Bullock", "character": "Lucy Eleanor Moderatz", "id": 18277, "credit_id": "52fe4331c3a36847f80416b7", "cast_id": 9, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Bill Pullman", "character": "Jack Callaghan", "id": 8984, "credit_id": "52fe4331c3a36847f80416bb", "cast_id": 10, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Peter Gallagher", "character": "Peter Callaghan", "id": 8212, "credit_id": "52fe4331c3a36847f80416bf", "cast_id": 11, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 2}, {"name": "Peter Boyle", "character": "Ox Callaghan", "id": 1039, "credit_id": "52fe4331c3a36847f80416c3", "cast_id": 12, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 3}, {"name": "Jack Warden", "character": "Saul", "id": 5251, "credit_id": "52fe4331c3a36847f80416c7", "cast_id": 13, "profile_path": "/7Pfj27pVjkQIu5HS85MlGdsl7MQ.jpg", "order": 4}, {"name": "Glynis Johns", "character": "Elsie", "id": 5826, "credit_id": "52fe4331c3a36847f80416cb", "cast_id": 14, "profile_path": "/36ysTAkDW1234XmgWVPYB15XhIl.jpg", "order": 5}, {"name": "Micole Mercurio", "character": "Midge Callaghan", "id": 21202, "credit_id": "52fe4331c3a36847f80416cf", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Monica Keena", "character": "Mary Callaghan", "id": 18315, "credit_id": "52fe4331c3a36847f80416d3", "cast_id": 16, "profile_path": "/26ed24koWQ6cjJHCGIllR2CE8Rj.jpg", "order": 7}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f8041689", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.1, "runtime": 103}, "8688": {"poster_path": "/lCKdTf0Cy3R3kBuw2xmWmbxX6pZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103891409, "overview": "All bets are off when corrupt homicide cop Rick Santoro witnesses a murder during a boxing match. It's up to him and lifelong friend and naval intelligence agent Kevin Dunne to uncover the conspiracy behind the killing. At every turn, Santoro makes increasingly shocking discoveries that even he can't turn a blind eye to.", "video": false, "id": 8688, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Snake Eyes", "tagline": "Believe everything except your eyes.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120832", "adult": false, "backdrop_path": "/pK5G5br9ooo55zCgyjGDGs4p4Hl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DeBart", "id": 2519}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-08-07", "popularity": 0.308759082069292, "original_title": "Snake Eyes", "budget": 73000000, "cast": [{"name": "Nicolas Cage", "character": "Rick Santoro", "id": 2963, "credit_id": "52fe44b4c3a36847f80a551b", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Gary Sinise", "character": "Commander Kevin Dunne", "id": 33, "credit_id": "52fe44b4c3a36847f80a551f", "cast_id": 2, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 1}, {"name": "John Heard", "character": "Gilbert Powell", "id": 11512, "credit_id": "52fe44b4c3a36847f80a5523", "cast_id": 3, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 2}, {"name": "Carla Gugino", "character": "Julia Costello", "id": 17832, "credit_id": "52fe44b4c3a36847f80a5527", "cast_id": 4, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 3}, {"name": "Tamara Tunie", "character": "Anthea", "id": 42694, "credit_id": "52fe44b4c3a36847f80a554f", "cast_id": 12, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 4}, {"name": "Stan Shaw", "character": "Lincoln Tyler", "id": 16936, "credit_id": "52fe44b4c3a36847f80a5553", "cast_id": 13, "profile_path": "/2KUPUQQFmc8Zyzf16uaiYmVrNvX.jpg", "order": 5}, {"name": "Kevin Dunn", "character": "Lou Logan", "id": 14721, "credit_id": "52fe44b4c3a36847f80a5557", "cast_id": 14, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 6}, {"name": "Michael Rispoli", "character": "Jimmy George", "id": 18313, "credit_id": "52fe44b4c3a36847f80a555b", "cast_id": 15, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 7}, {"name": "Joel Fabiani", "character": "Charles Kirkland", "id": 118478, "credit_id": "52fe44b4c3a36847f80a555f", "cast_id": 16, "profile_path": "/jOqdOrgelg6313aOAr4aI0t4NQ1.jpg", "order": 8}, {"name": "Luis Guzm\u00e1n", "character": "Cyrus", "id": 40481, "credit_id": "52fe44b4c3a36847f80a5563", "cast_id": 17, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 9}, {"name": "David Anthony Higgins", "character": "Ned Campbell", "id": 78102, "credit_id": "52fe44b4c3a36847f80a5567", "cast_id": 18, "profile_path": "/oQvcJp7JciyEce28MBOZArznIue.jpg", "order": 10}, {"name": "Mike Starr", "character": "Walt McGahn", "id": 5170, "credit_id": "52fe44b4c3a36847f80a556b", "cast_id": 19, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 11}, {"name": "Chip Zien", "character": "Mickey Alter", "id": 90039, "credit_id": "52fe44b4c3a36847f80a556f", "cast_id": 20, "profile_path": "/wxHjA9yl28p49sN93bByO36ZBtZ.jpg", "order": 12}, {"name": "Michaella Bassey", "character": "Tyler's Party Girl #2", "id": 1206174, "credit_id": "52fe44b4c3a36847f80a5573", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Paul Joseph Bernardo", "character": "Casino Security #1", "id": 1206175, "credit_id": "52fe44b4c3a36847f80a5577", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Jernard Burks", "character": "Tyler's Bodyguard", "id": 55275, "credit_id": "52fe44b4c3a36847f80a557b", "cast_id": 23, "profile_path": "/uDxTWoUD79M7Hbmawp7ARexw0c1.jpg", "order": 15}, {"name": "Mark Camacho", "character": "C.J.", "id": 7013, "credit_id": "52fe44b4c3a36847f80a557f", "cast_id": 24, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe44b4c3a36847f80a552d", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 5.8, "runtime": 98}, "2067": {"poster_path": "/eco5chujn3Mt7HnuMTUIuobPMoX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60874615, "overview": "When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.", "video": false, "id": 2067, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Mission to Mars", "tagline": "Let There Be Life.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0183523", "adult": false, "backdrop_path": "/y97xS60jrTzOmDb2jwB0IP57qig.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "The Jacobson Company", "id": 3638}, {"name": "Red Horizon Productions", "id": 22103}], "release_date": "2000-03-10", "popularity": 0.572649117559597, "original_title": "Mission to Mars", "budget": 90000000, "cast": [{"name": "Gary Sinise", "character": "Jim McConnell", "id": 33, "credit_id": "52fe4331c3a36847f8041817", "cast_id": 23, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 0}, {"name": "Tim Robbins", "character": "Woodrow 'Woody' Blake", "id": 504, "credit_id": "52fe4331c3a36847f80417f3", "cast_id": 13, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Luke Graham", "id": 1896, "credit_id": "52fe4331c3a36847f80417f7", "cast_id": 14, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Connie Nielsen", "character": "Terri Fisher", "id": 935, "credit_id": "52fe4331c3a36847f80417fb", "cast_id": 15, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 3}, {"name": "Jerry O'Connell", "character": "Phil Ohlmyer", "id": 3035, "credit_id": "52fe4331c3a36847f804181b", "cast_id": 24, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 4}, {"name": "Peter Outerbridge", "character": "Sergei Kirov", "id": 12978, "credit_id": "52fe4331c3a36847f80417ff", "cast_id": 17, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 5}, {"name": "Kavan Smith", "character": "Nicholas Willis", "id": 21213, "credit_id": "52fe4331c3a36847f8041803", "cast_id": 18, "profile_path": "/41DoBsnM7UM3M4hS7oBkQceFwbv.jpg", "order": 6}, {"name": "Jill Teed", "character": "Reene Cote", "id": 21214, "credit_id": "52fe4331c3a36847f8041807", "cast_id": 19, "profile_path": "/oiIvgxGTDfh3l8Sellhn9W7Ve4b.jpg", "order": 7}, {"name": "Elise Neal", "character": "Debra Graham", "id": 21215, "credit_id": "52fe4331c3a36847f804180b", "cast_id": 20, "profile_path": "/6Z6LVIlaCVMWsRgOPFOA4NOXAQO.jpg", "order": 8}, {"name": "Kim Delaney", "character": "Maggie McConnell", "id": 21216, "credit_id": "52fe4331c3a36847f804180f", "cast_id": 21, "profile_path": "/9CTIlehx2Qsefgr2NIyqLISbMxr.jpg", "order": 9}, {"name": "Armin Mueller-Stahl", "character": "Ramier Beck", "id": 12647, "credit_id": "52fe4331c3a36847f8041813", "cast_id": 22, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 10}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f80417c5", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 5.9, "runtime": 114}, "2069": {"poster_path": "/rnXnZrKipVb8v4mS2Oo6Ga2O0fg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A mobster named Jimmy the Tulip agrees to cooperate with an FBI investigation in order to stay out of prison; he's relocated by the authorities to a life of suburban anonymity as part of a witness protection program. It's not long before a couple of his new neighbors figure out his true identity and come knocking to see if he'd be up for one more hit, suburban style.", "video": false, "id": 2069, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Whole Nine Yards", "tagline": "In the heart of suburbia, a hit man with heart has just moved in.", "vote_count": 168, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ttaiuuOHjYLTszcbADBZImqRK5H.jpg", "poster_path": "/m6tkyCcOm4wzklAvsT0jyaM5mgY.jpg", "id": 103577, "name": "The Whole Nine Yards Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0190138", "adult": false, "backdrop_path": "/1Qdk7B4hFLdQO8OTWDhcVAqcdTk.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Franchise Pictures", "id": 1403}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2000-02-18", "popularity": 0.878281914204314, "original_title": "The Whole Nine Yards", "budget": 0, "cast": [{"name": "Bruce Willis", "character": "Jimmy \"The Tulip\" Tudeski", "id": 62, "credit_id": "52fe4331c3a36847f80418c1", "cast_id": 10, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Matthew Perry", "character": "Nicholas \"Oz\" Oseransky", "id": 14408, "credit_id": "52fe4331c3a36847f80418c5", "cast_id": 11, "profile_path": "/hkszOdJc14ULRdsy7JnRAvlrbCY.jpg", "order": 1}, {"name": "Rosanna Arquette", "character": "Sophie Oseransky", "id": 2165, "credit_id": "52fe4331c3a36847f80418c9", "cast_id": 12, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 2}, {"name": "Michael Clarke Duncan", "character": "Franklin \"Frankie Figs\" Figueroa", "id": 61981, "credit_id": "52fe4331c3a36847f80418cd", "cast_id": 13, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 3}, {"name": "Kevin Pollak", "character": "Janni Pytor Gogolak", "id": 7166, "credit_id": "52fe4331c3a36847f80418d1", "cast_id": 15, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 4}, {"name": "Harland Williams", "character": "Special Agent Steve Hanson", "id": 16846, "credit_id": "52fe4331c3a36847f80418d5", "cast_id": 16, "profile_path": "/ncbsGnC41SsM7VpCOGBJGQ44dwF.jpg", "order": 5}, {"name": "Amanda Peet", "character": "Jill St. Claire", "id": 2956, "credit_id": "52fe4331c3a36847f80418d9", "cast_id": 17, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 6}, {"name": "Natasha Henstridge", "character": "Cynthia Tudeski", "id": 57395, "credit_id": "52fe4332c3a36847f80418dd", "cast_id": 18, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 7}], "directors": [{"name": "Jonathan Lynn", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f804188d", "profile_path": "/nvMGnGbGdXrRvGAjulNqhJWUB9c.jpg", "id": 21217}], "vote_average": 6.2, "runtime": 98}, "2080": {"poster_path": "/vbaV7DalSF6Uy4qLyVK7uNdtmFy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 341131793, "overview": "After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.", "video": false, "id": 2080, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "X-Men Origins: Wolverine", "tagline": "Witness the Origin.", "vote_count": 1975, "homepage": "http://www.x-menorigins.com/", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458525", "adult": false, "backdrop_path": "/mEuDxpLNBCarVgXRqDznHT7bdS8.jpg", "production_companies": [{"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Dune Entertainment", "id": 444}, {"name": "Donners' Company", "id": 431}, {"name": "Seed Productions", "id": 9076}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Big Screen Productions", "id": 10893}], "release_date": "2009-04-30", "popularity": 0.253862367520321, "original_title": "X-Men Origins: Wolverine", "budget": 150000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe4333c3a36847f8041ded", "cast_id": 3, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Taylor Kitsch", "character": "Remy LeBeau", "id": 60900, "credit_id": "52fe4333c3a36847f8041e1b", "cast_id": 13, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 1}, {"name": "Daniel Henney", "character": "Agent Zero", "id": 82093, "credit_id": "52fe4333c3a36847f8041e1f", "cast_id": 14, "profile_path": "/kR4h7S7ny30HaqJpe5rv88RrKYA.jpg", "order": 2}, {"name": "Ryan Reynolds", "character": "Wade Wilson / Deadpool", "id": 10859, "credit_id": "52fe4333c3a36847f8041e23", "cast_id": 15, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 3}, {"name": "Troye Sivan", "character": "James", "id": 1003248, "credit_id": "53f01f9dc3a3685af2002094", "cast_id": 26, "profile_path": "/tdzTuNH7dB2csMwVHY6DTxTa7lI.jpg", "order": 4}, {"name": "Liev Schreiber", "character": "Victor Creed", "id": 23626, "credit_id": "52fe4333c3a36847f8041e03", "cast_id": 7, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 5}, {"name": "Danny Huston", "character": "Stryker", "id": 6413, "credit_id": "52fe4333c3a36847f8041e07", "cast_id": 8, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "Will.i.am", "character": "John Wraith", "id": 82092, "credit_id": "52fe4333c3a36847f8041e0b", "cast_id": 9, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 7}, {"name": "Lynn Collins", "character": "Kayla Silverfox", "id": 21044, "credit_id": "52fe4333c3a36847f8041e0f", "cast_id": 10, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 8}, {"name": "Kevin Durand", "character": "Fred Dukes", "id": 79072, "credit_id": "52fe4333c3a36847f8041e13", "cast_id": 11, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 9}, {"name": "Dominic Monaghan", "character": "Bradley", "id": 1330, "credit_id": "52fe4333c3a36847f8041e17", "cast_id": 12, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 10}, {"name": "Tim Pocock", "character": "Scott Summers", "id": 82094, "credit_id": "52fe4333c3a36847f8041e2b", "cast_id": 17, "profile_path": "/5hQNHKvQqtkgwPIzZ9UdCVfAoj4.jpg", "order": 11}, {"name": "Julia Blake", "character": "Heather Hudson", "id": 77561, "credit_id": "53f01f49c3a3685ae7002081", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Max Cullen", "character": "Travis Hudson", "id": 38665, "credit_id": "53f01f66c3a3685ad90023d4", "cast_id": 25, "profile_path": "/ceHlZnHwEDyMZWNT5PhuJJVPZPZ.jpg", "order": 13}, {"name": "Michael James Olsen", "character": "Young Victor", "id": 1353634, "credit_id": "53f01faac3a3685af2002098", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Peter O'Brien", "character": "John Howlett", "id": 63295, "credit_id": "53f02035c3a3685ad90023f3", "cast_id": 29, "profile_path": "/ebW9eoPY57aR1CKp8G82Hl9PyL.jpg", "order": 15}, {"name": "Aaron Jeffrey", "character": "Thomas Logan", "id": 1353635, "credit_id": "53f01fc1c3a3685aed001fd1", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Alice Parkinson", "character": "Elizabeth Howlett", "id": 144286, "credit_id": "52fe4333c3a36847f8041e2f", "cast_id": 18, "profile_path": "/8dfn4pbCdvf1EYSJhMn4fTF2ZZZ.jpg", "order": 17}, {"name": "Philip A. Patterson", "character": "Firing Squad Leader (as Phil Patterson)", "id": 59792, "credit_id": "53f0208c0e0a2675b20027d9", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Anthony Gee", "character": "Carnival Guy", "id": 1200536, "credit_id": "53f021bc0e0a2675ac002667", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Adelaide Clemens", "character": "Carnival Girl", "id": 205474, "credit_id": "52fe4333c3a36847f8041e33", "cast_id": 19, "profile_path": "/mgOHGacftimR5qBXVzaQoMyVoTX.jpg", "order": 20}, {"name": "Karl Beattie", "character": "School Child", "id": 1353637, "credit_id": "53f022acc3a3685aed002007", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Tom O'Sullivan", "character": "Logging Supervisor", "id": 1244355, "credit_id": "53f022080e0a2675a90027ba", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Myles Pollard", "character": "Phelan", "id": 190856, "credit_id": "53f0221f0e0a2675a90027be", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Stephen Anderton", "character": "Marcuse", "id": 1353638, "credit_id": "53f022d3c3a3685aed002011", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Chris Sadrinna", "character": "Van Mier", "id": 94350, "credit_id": "53f022f1c3a3685ae70020c3", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Septimus Caton", "character": "Bartender", "id": 626531, "credit_id": "53f0230cc3a3685ad900241c", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Matthew Dale", "character": "Surgeon", "id": 1353639, "credit_id": "53f02332c3a3685af20020d8", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Nathin Butler", "character": "Male Nurse #1", "id": 55903, "credit_id": "53f02358c3a3685ae2001fb1", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Peter Barry", "character": "Male Nurse #2", "id": 1353640, "credit_id": "53f02366c3a3685aff0020e9", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "David Ritchie", "character": "Dr. Cornelius", "id": 1353641, "credit_id": "53f02375c3a3685ad9002429", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Asher Keddie", "character": "Dr. Carol Frost", "id": 125565, "credit_id": "52fe4333c3a36847f8041e37", "cast_id": 20, "profile_path": "/undrFT5aTqwXLFSM6AnU8dlYPsj.jpg", "order": 31}, {"name": "Socratis Otto", "character": "Lead Technician - Alkali Lake", "id": 75174, "credit_id": "53f02397c3a3685aff0020ed", "cast_id": 43, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 32}, {"name": "Stephen Leeder", "character": "General Munson", "id": 75720, "credit_id": "53f023eb0e0a2675bc0026ad", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "James D. Dever", "character": "Platoon Leader", "id": 1205880, "credit_id": "53f024150e0a2675a90027f3", "cast_id": 45, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 34}, {"name": "Martin Obuga", "character": "Muttering Man", "id": 1353642, "credit_id": "53f024210e0a2675b50026d6", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Rita Affua Connell", "character": "Nervous African Woman", "id": 1353643, "credit_id": "53f024310e0a2675ac0026a6", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "John Shrimpton", "character": "Stryker Aide", "id": 1353644, "credit_id": "53f0243d0e0a2675a90027fb", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Henry Browne", "character": "Curtis", "id": 1353646, "credit_id": "53f0244b0e0a2675b50026df", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Tahyna Tozzi", "character": "Kayla's Sister / Emma", "id": 92175, "credit_id": "52fe4333c3a36847f8041e3b", "cast_id": 21, "profile_path": "/5UIPwdpSF54dZHkwXYPzTOgYbuq.jpg", "order": 39}, {"name": "Daniel Negreanu", "character": "Poker Player", "id": 1239053, "credit_id": "53f0249a0e0a2675b200283f", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Alexandra Davies", "character": "Woman of the Night (as Alex Davies)", "id": 148428, "credit_id": "52fe4333c3a36847f8041e3f", "cast_id": 22, "profile_path": "/Ac9DWdVpEc8hMLKR53NOcssxXXm.jpg", "order": 41}, {"name": "Don Battee", "character": "Huge Doorman", "id": 1091387, "credit_id": "53f024b30e0a2675bc0026bf", "cast_id": 51, "profile_path": "/wldKStDYxScihvLnObITQV4GuUb.jpg", "order": 42}, {"name": "Evan Sturrock", "character": "Drunken Man in Alley", "id": 1353647, "credit_id": "53f024c10e0a2675b80027b4", "cast_id": 52, "profile_path": null, "order": 43}, {"name": "Rob Flanagan", "character": "Driver", "id": 1353649, "credit_id": "53f025730e0a2675a900281f", "cast_id": 53, "profile_path": null, "order": 44}, {"name": "Hakeem Kae-Kazim", "character": "African Businessman", "id": 2603, "credit_id": "53f025920e0a2675a9002826", "cast_id": 54, "profile_path": "/cYHDYQbnvju1g8XIAnvwRr0bWSB.jpg", "order": 45}, {"name": "Alison Araya", "character": "Teacher", "id": 79351, "credit_id": "52fe4333c3a36847f8041e43", "cast_id": 23, "profile_path": "/jfulWxtEmU5grAmR0iZwpKsMq88.jpg", "order": 46}, {"name": "Eric Breker", "character": "Special Forces Commander", "id": 91404, "credit_id": "53f025b50e0a2675b2002857", "cast_id": 55, "profile_path": "/ipjCpokW77mQ3tixLJERoohJPZm.jpg", "order": 47}, {"name": "Eileen Bui", "character": "Vietnamese Child", "id": 1353652, "credit_id": "53f025e20e0a2675ac0026cc", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Adrian Hughes", "character": "Hunter #1", "id": 1172763, "credit_id": "53f026060e0a2675bf002760", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "Bryon Chief-Moon", "character": "Hunter #2", "id": 1353653, "credit_id": "53f026120e0a2675bc0026eb", "cast_id": 58, "profile_path": null, "order": 50}, {"name": "Mike Dopud", "character": "Vietnam Army Officer", "id": 64674, "credit_id": "53f0262d0e0a2675b5002716", "cast_id": 59, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 51}, {"name": "Beatrice Ilg", "character": "Waitress", "id": 1353654, "credit_id": "53f026440e0a2675a9002833", "cast_id": 60, "profile_path": null, "order": 52}, {"name": "Kanako Takegishi", "character": "Waitress", "id": 1353656, "credit_id": "53f0264e0e0a2675af0027ee", "cast_id": 61, "profile_path": null, "order": 53}, {"name": "Panou", "character": "Tank Soldier", "id": 1219446, "credit_id": "53f026690e0a2675ac0026e4", "cast_id": 62, "profile_path": "/2ZlQp0ZenSK9vNscU0Ye4hbi1U4.jpg", "order": 54}, {"name": "Johnson Phan", "character": "Vietnamese Man", "id": 1353657, "credit_id": "53f026770e0a2675b500271e", "cast_id": 63, "profile_path": null, "order": 55}, {"name": "Elizabeth Thai", "character": "Vietnamese Woman", "id": 43297, "credit_id": "53f0268f0e0a2675b5002722", "cast_id": 64, "profile_path": null, "order": 56}, {"name": "Jade Tang", "character": "Mutant Twin #1", "id": 1353658, "credit_id": "53f0269b0e0a2675b80027e6", "cast_id": 65, "profile_path": null, "order": 57}, {"name": "Joelle Tang", "character": "Mutant Twin #2", "id": 1353659, "credit_id": "53f026a40e0a2675ac0026eb", "cast_id": 66, "profile_path": null, "order": 58}, {"name": "Scott Adkins", "character": "Weapon XI", "id": 78110, "credit_id": "52fe4333c3a36847f8041e27", "cast_id": 16, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 59}, {"name": "Warwick Young", "character": "Helicopter Pilot", "id": 213087, "credit_id": "53f026be0e0a2675af0027ff", "cast_id": 67, "profile_path": null, "order": 60}], "directors": [{"name": "Gavin Hood", "department": "Directing", "job": "Director", "credit_id": "52fe4333c3a36847f8041dff", "profile_path": "/1W4NlD5YpGHnXdD2HGeG9bWSqYV.jpg", "id": 13079}], "vote_average": 6.2, "runtime": 107}, "34480": {"poster_path": "/hdiPZ3vnM6fPvfvbGY6C3gfTFEn.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Distraught, confused, and half-wild with fear, Sarah Carter emerges alone from the Appalachian cave system where she encountered unspeakable terrors. Unable to plausibly explain to the authorities what happened - or why she's covered in her friends' blood - Sarah is forced back to the subterranean depths to help locate her five missing companions.", "video": false, "id": 34480, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Descent: Part 2", "tagline": "Fear runs deeper", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/o6nAtQxqqANvRzpr4d1LqGvzlZ8.jpg", "id": 87258, "name": "The Descent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1073105", "adult": false, "backdrop_path": "/m0YwLST0nm2oh4t1udfzfnp42Sw.jpg", "production_companies": [{"name": "Celador Films", "id": 3573}], "release_date": "2009-12-02", "popularity": 0.565220727634421, "original_title": "The Descent: Part 2", "budget": 0, "cast": [{"name": "Shauna Macdonald", "character": "Sarah Carter", "id": 57574, "credit_id": "52fe45679251416c910310c1", "cast_id": 1, "profile_path": "/9FInrBy6ngLURnncUCbWk3iLsJE.jpg", "order": 0}, {"name": "Natalie Mendoza", "character": "Juno Kaplan", "id": 57575, "credit_id": "52fe45679251416c910310c5", "cast_id": 2, "profile_path": "/4yeZSEKGvUiCcljsFub2SxFGGuz.jpg", "order": 1}, {"name": "Gavin O'Herlihy", "character": "Vaines", "id": 12660, "credit_id": "52fe45679251416c910310cd", "cast_id": 4, "profile_path": "/brFrEXHx5vaeWJmqhQJMEaZhUHl.jpg", "order": 2}, {"name": "Krysten Cummings", "character": "Ellen Rios", "id": 112893, "credit_id": "52fe45679251416c910310c9", "cast_id": 3, "profile_path": "/z8lAA5tg6AnmGm24y27SzDA8D7r.jpg", "order": 3}, {"name": "Josh Dallas", "character": "Greg", "id": 77880, "credit_id": "52fe45679251416c910310d1", "cast_id": 5, "profile_path": "/4DoeVyhq2DSIinBvb9AOj52OUrS.jpg", "order": 4}, {"name": "Anna Skellern", "character": "Cath", "id": 112894, "credit_id": "52fe45679251416c910310d5", "cast_id": 6, "profile_path": "/A1jx4awTisdd7UIXF53SvXWvHNX.jpg", "order": 5}, {"name": "Douglas Hodge", "character": "Dan", "id": 80149, "credit_id": "52fe45679251416c910310d9", "cast_id": 7, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 6}, {"name": "Michael J. Reynolds", "character": "Ed Oswald", "id": 86442, "credit_id": "52fe45679251416c910310dd", "cast_id": 12, "profile_path": "/3JA1yjTfSM35GNzWR2dZgubRZ8B.jpg", "order": 7}, {"name": "Jessika Williams", "character": "Susanne Small", "id": 512997, "credit_id": "52fe45679251416c910310e1", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Saskia Mulder", "character": "Rebecca", "id": 57577, "credit_id": "53a46276c3a3682a4e00128e", "cast_id": 27, "profile_path": "/uvoxZyLCKFoGuHle4vfAzYIb3Uc.jpg", "order": 9}, {"name": "MyAnna Buring", "character": "Sam", "id": 57578, "credit_id": "53a46392c3a3682a4b00142a", "cast_id": 29, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 11}, {"name": "Nora-Jane Noone", "character": "Holly", "id": 53998, "credit_id": "53a463acc3a3682a450013ae", "cast_id": 30, "profile_path": "/fhXObJ2HvASXvbfPHxAPzc9ueZc.jpg", "order": 12}], "directors": [{"name": "Jon Harris", "department": "Directing", "job": "Director", "credit_id": "52fe45679251416c910310ed", "profile_path": null, "id": 1114}], "vote_average": 6.2, "runtime": 94}, "2082": {"poster_path": "/YiqEqeu3fibeaCcEdTUf6q7hzO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After being committed for 17 years, Michael Myers, now a grown man and still very dangerous, escapes from the mental institution (where he was committed as a 10 year old) and he immediately returns to Haddonfield, where he wants to find his baby sister, Laurie. Anyone who crosses his path is in mortal danger", "video": false, "id": 2082, "genres": [{"id": 27, "name": "Horror"}], "title": "Halloween", "tagline": "Evil. Unmasked.", "vote_count": 104, "homepage": "http://www.halloweenmovies.com/", "belongs_to_collection": {"backdrop_path": "/tXXPOkcFLcDiJ4OU5SOU3JnhQrg.jpg", "poster_path": "/9FXXvpOSnOosyiYbhVuWpZubTzA.jpg", "id": 126209, "name": "Halloween Collection (Rob Zombie Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373883", "adult": false, "backdrop_path": "/ewk1RjLDX4zynDZFGcDLHWblAbH.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Nightfall Productions", "id": 21438}, {"name": "Spectacle Entertainment Group", "id": 10370}], "release_date": "2007-08-31", "popularity": 0.460234209832526, "original_title": "Halloween", "budget": 20000000, "cast": [{"name": "Malcolm McDowell", "character": "Dr. Loomis", "id": 56890, "credit_id": "52fe4333c3a36847f8041eab", "cast_id": 2, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 0}, {"name": "Brad Dourif", "character": "Sheriff Leigh Brackett", "id": 1370, "credit_id": "52fe4333c3a36847f8041eaf", "cast_id": 3, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 1}, {"name": "Daeg Faerch", "character": "Michael Myers (young)", "id": 21317, "credit_id": "52fe4333c3a36847f8041eb3", "cast_id": 4, "profile_path": "/9JxK3k0BuQN7LubeiHQ9GEAC2A5.jpg", "order": 2}, {"name": "Tyler Mane", "character": "Michael Myers", "id": 9832, "credit_id": "52fe4333c3a36847f8041eb7", "cast_id": 5, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 3}, {"name": "Scout Taylor-Compton", "character": "Laurie Strode", "id": 21318, "credit_id": "52fe4333c3a36847f8041ebb", "cast_id": 6, "profile_path": "/w0fiP2VOXkHJclbElyOEBuDyONI.jpg", "order": 4}, {"name": "Sheri Moon Zombie", "character": "Deborah Myers", "id": 21319, "credit_id": "52fe4333c3a36847f8041ebf", "cast_id": 7, "profile_path": "/ecPGCsrhqwR6clWmtqtlS6ZFdY3.jpg", "order": 5}, {"name": "William Forsythe", "character": "Ronnie White", "id": 4520, "credit_id": "52fe4333c3a36847f8041ec3", "cast_id": 8, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 6}, {"name": "Danielle Harris", "character": "Annie Brackett", "id": 21320, "credit_id": "52fe4333c3a36847f8041ec7", "cast_id": 9, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 7}, {"name": "Kristina Klebe", "character": "Lynda van der Klok", "id": 21321, "credit_id": "52fe4333c3a36847f8041ecb", "cast_id": 10, "profile_path": "/8vFonAbOtAjPAKdsh0ocn4Drq7.jpg", "order": 8}, {"name": "Udo Kier", "character": "Morgan Walker", "id": 1646, "credit_id": "52fe4333c3a36847f8041ecf", "cast_id": 11, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Ismael Cruz", "id": 11160, "credit_id": "52fe4333c3a36847f8041f09", "cast_id": 21, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Skyler Gisondo", "character": "Tommy Doyle", "id": 61263, "credit_id": "52fe4333c3a36847f8041f0d", "cast_id": 22, "profile_path": "/aA6PhyCQy32YZwOitQva10hjcq5.jpg", "order": 11}, {"name": "Tom Towles", "character": "Larry Redgrave", "id": 27736, "credit_id": "52fe4333c3a36847f8041f11", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Bill Moseley", "character": "Zach 'Z-Man' Garrett", "id": 27737, "credit_id": "52fe4333c3a36847f8041f15", "cast_id": 25, "profile_path": "/zZP7ijcocjYN6cNKwpPwmRDWsv1.jpg", "order": 13}, {"name": "Leslie Easterbrook", "character": "Patty Frost", "id": 22252, "credit_id": "52fe4333c3a36847f8041f19", "cast_id": 26, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 14}, {"name": "Richard Lynch", "character": "Principal Chambers", "id": 97878, "credit_id": "52fe4333c3a36847f8041f1d", "cast_id": 27, "profile_path": "/8e1KM2XCGh8X2Ekoc6AB9yvUaYS.jpg", "order": 15}, {"name": "Lew Temple", "character": "Noel Kluggs", "id": 37027, "credit_id": "52fe4333c3a36847f8041f21", "cast_id": 28, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 16}, {"name": "Pat Skipper", "character": "Mason Strode", "id": 6326, "credit_id": "52fe4333c3a36847f8041f25", "cast_id": 29, "profile_path": "/yz3OrX0JKWcNDLLc8TBoRUhWAcC.jpg", "order": 17}, {"name": "Ken Foree", "character": "Big Joe Grizzly", "id": 15070, "credit_id": "52fe4333c3a36847f8041f29", "cast_id": 30, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 18}, {"name": "Sybil Danning", "character": "Nurse Wynn", "id": 29541, "credit_id": "52fe4333c3a36847f8041f2d", "cast_id": 31, "profile_path": "/6WydVNd7JTYY0zbYtH2iwKGGo7k.jpg", "order": 19}, {"name": "Micky Dolenz", "character": "Derek Allen", "id": 82775, "credit_id": "52fe4333c3a36847f8041f31", "cast_id": 32, "profile_path": "/1BxIIDy4rocM35G6U3CpXD9Vm7N.jpg", "order": 20}, {"name": "Daniel Roebuck", "character": "Lou Martini", "id": 43774, "credit_id": "52fe4333c3a36847f8041f35", "cast_id": 33, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 21}, {"name": "Sid Haig", "character": "Chester Chesterfield", "id": 5695, "credit_id": "52fe4333c3a36847f8041f39", "cast_id": 34, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 22}, {"name": "Hanna Hall", "character": "Judith Myers", "id": 204997, "credit_id": "52fe4333c3a36847f8041f3d", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Dee Wallace", "character": "Cynthia Strode", "id": 62001, "credit_id": "52fe4333c3a36847f8041f41", "cast_id": 37, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 24}, {"name": "Steve Boyles", "character": "Stan Payne", "id": 1205487, "credit_id": "52fe4333c3a36847f8041f45", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Clint Howard", "character": "Doctor Koplenson", "id": 15661, "credit_id": "52fe4333c3a36847f8041f49", "cast_id": 39, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 26}, {"name": "Jenny Gregg Stewart", "character": "Lindsey Wallace", "id": 1205490, "credit_id": "52fe4333c3a36847f8041f4d", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Adam Weisman", "character": "Steve Haley", "id": 181719, "credit_id": "52fe4333c3a36847f8041f51", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Sydnie Pitzer", "character": "Baby Boo", "id": 1205493, "credit_id": "52fe4333c3a36847f8041f55", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Myla Pitzer", "character": "Baby Boo", "id": 1205494, "credit_id": "52fe4333c3a36847f8041f59", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Stella Altman", "character": "Baby Boo", "id": 1205495, "credit_id": "52fe4333c3a36847f8041f5d", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Max Van Ville", "character": "Paul", "id": 76008, "credit_id": "52fe4333c3a36847f8041f61", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Nick Mennell", "character": "Bob Simms", "id": 79189, "credit_id": "52fe4333c3a36847f8041f65", "cast_id": 46, "profile_path": "/5EOALTNvekSuJUWCF1SrRAMKHTE.jpg", "order": 33}, {"name": "Daryl Sabara", "character": "Wesley Rhoades", "id": 57675, "credit_id": "52fe4333c3a36847f8041f69", "cast_id": 47, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 34}, {"name": "Richmond Arquette", "character": "Deputy Charles", "id": 7472, "credit_id": "52fe4333c3a36847f8041f6d", "cast_id": 48, "profile_path": "/xW4bb2qsPYilO27ex4Xoy2Ik1Ai.jpg", "order": 35}], "directors": [{"name": "Rob Zombie", "department": "Directing", "job": "Director", "credit_id": "52fe4333c3a36847f8041ea7", "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "id": 16848}], "vote_average": 6.0, "runtime": 109}, "34851": {"poster_path": "/xtx2kOAySd2jUVU4eylCgkkIi5v.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126248813, "overview": "A mercenary named Royce reluctantly leads a motley crew of warriors who soon come to realize they've been captured and deposited on an alien planet by an unknown nemesis. With the exception of a peculiar physician, they are all cold-blooded killers, convicts, death squad members...hunters who have now become the hunted.", "video": false, "id": 34851, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predators", "tagline": "Fear is Reborn", "vote_count": 351, "homepage": "http://www.predators-movie.com/", "belongs_to_collection": {"backdrop_path": "/e8ycFoI8vGoZSOY7KmxFzZA1dkE.jpg", "poster_path": "/6Z7lASptoiRVxiCFvZaFgH9qp7u.jpg", "id": 399, "name": "Predator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1424381", "adult": false, "backdrop_path": "/sLn5HvFwLIL7Fof2Jj0JEeJSrGC.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Troublemaker Studios", "id": 10807}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2010-07-06", "popularity": 1.18879536721663, "original_title": "Predators", "budget": 40000000, "cast": [{"name": "Topher Grace", "character": "Edwin", "id": 17052, "credit_id": "52fe45819251416c91034a89", "cast_id": 5, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 0}, {"name": "Alice Braga", "character": "Isabelle", "id": 8602, "credit_id": "52fe45819251416c91034a8d", "cast_id": 6, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 1}, {"name": "Laurence Fishburne", "character": "Noland", "id": 2975, "credit_id": "52fe45819251416c91034a91", "cast_id": 7, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 2}, {"name": "Adrien Brody", "character": "Royce", "id": 3490, "credit_id": "52fe45819251416c91034a85", "cast_id": 4, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 3}, {"name": "Danny Trejo", "character": "Cuchillo", "id": 11160, "credit_id": "52fe45819251416c91034a95", "cast_id": 8, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 4}, {"name": "Walton Goggins", "character": "Stans", "id": 27740, "credit_id": "52fe45819251416c91034a99", "cast_id": 9, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 5}, {"name": "Oleg Taktarov", "character": "Nikolai", "id": 77351, "credit_id": "52fe45819251416c91034a9d", "cast_id": 11, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 6}, {"name": "Louis Ozawa Changchien", "character": "Hanzo", "id": 113308, "credit_id": "52fe45819251416c91034aa1", "cast_id": 12, "profile_path": "/2mQAXKYbqP7Lhhsdz3OBYB6IMCw.jpg", "order": 7}, {"name": "Carey Jones", "character": "Tracker Predator", "id": 1015924, "credit_id": "52fe45819251416c91034ae7", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Brian Steele", "character": "Berserker Predator / Falconer Predator", "id": 12359, "credit_id": "52fe45819251416c91034aeb", "cast_id": 25, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 9}, {"name": "Derek Mears", "character": "Classic Predator", "id": 51300, "credit_id": "52fe45819251416c91034aef", "cast_id": 26, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 10}, {"name": "Mahershalalhashbaz Ali", "character": "Mombasa", "id": 932967, "credit_id": "52fe45819251416c91034af9", "cast_id": 28, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 11}], "directors": [{"name": "Nimr\u00f3d Antal", "department": "Directing", "job": "Director", "credit_id": "52fe45819251416c91034a75", "profile_path": "/rI5DZmGXhZcNYaREK9vy2khqm1o.jpg", "id": 41671}], "vote_average": 6.0, "runtime": 107}, "10276": {"poster_path": "/xdm4tJedPT6UDcNGLgCt3YO7A06.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63710000, "overview": "Bob Wiley is a man who can hardly leave his house without his lips going numb from fear. Dr. Leo Marvin is the egotistical psychiatrist who has the misfortune of getting Bob pawned off on him by a fellow doctor. What Dr. Marvin thinks is just another aspect of his life that can be meticulously controlled turns out to be anything but.", "video": false, "id": 10276, "genres": [{"id": 35, "name": "Comedy"}], "title": "What About Bob?", "tagline": "Bob's a special kind of friend. The kind that drives you crazy!", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103241", "adult": false, "backdrop_path": "/bHYccWMUQIeuXXNAmTUgDgDdqie.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Touchwood Pacific Partners 1", "id": 8830}], "release_date": "1991-05-17", "popularity": 0.801878893026901, "original_title": "What About Bob?", "budget": 0, "cast": [{"name": "Bill Murray", "character": "Bob 'Bobby' Wiley", "id": 1532, "credit_id": "52fe43519251416c7500bcb5", "cast_id": 1, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Richard Dreyfuss", "character": "Dr. Leo Marvin", "id": 3037, "credit_id": "52fe43519251416c7500bcb9", "cast_id": 2, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 1}, {"name": "Julie Hagerty", "character": "Fay Marvin", "id": 14415, "credit_id": "52fe43519251416c7500bcbd", "cast_id": 3, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 2}, {"name": "Charlie Korsmo", "character": "Sigmund 'Siggy' Marvin", "id": 13389, "credit_id": "52fe43519251416c7500bcc1", "cast_id": 4, "profile_path": "/5TiMQj3AXDVL1wDVtQss2xUPzTC.jpg", "order": 3}, {"name": "Kathryn Erbe", "character": "Anna Marvin", "id": 49824, "credit_id": "52fe43519251416c7500bcc5", "cast_id": 5, "profile_path": "/g08nZHy3iksjhczFfT8VctUIJ73.jpg", "order": 4}, {"name": "Tom Aldredge", "character": "Mr. Guttman", "id": 49835, "credit_id": "52fe43519251416c7500bcc9", "cast_id": 6, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 5}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe43519251416c7500bccf", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.9, "runtime": 99}, "2085": {"poster_path": "/pJfYg8odBx1NOVFafOM1ahfvr4V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91036760, "overview": "Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang SIng and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead \u2026 or worse!", "video": false, "id": 2085, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Romeo Must Die", "tagline": "In the city ruled by criminals, two families have forgotten their fear. He will make them remember.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0165929", "adult": false, "backdrop_path": "/mYPkgYPf6o6cVdfZdoR7HMtseBj.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2000-06-08", "popularity": 0.899154371303489, "original_title": "Romeo Must Die", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Hang Sing", "id": 1336, "credit_id": "52fe4333c3a36847f8042141", "cast_id": 8, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Aaliyah", "character": "Trish O`Day", "id": 21352, "credit_id": "52fe4333c3a36847f8042145", "cast_id": 9, "profile_path": "/9AUA7yvMocrm9A5TtaHZ12hxQjT.jpg", "order": 1}, {"name": "Isaiah Washington", "character": "Mac", "id": 21353, "credit_id": "52fe4333c3a36847f8042149", "cast_id": 10, "profile_path": "/d6J3fo5ad2XeoQ53421eL7YcpoJ.jpg", "order": 2}, {"name": "Russell Wong", "character": "Kai", "id": 21354, "credit_id": "52fe4333c3a36847f804214d", "cast_id": 11, "profile_path": "/ow2nODo1eKRchSLJMjEW7BUTXgy.jpg", "order": 3}, {"name": "DMX", "character": "Silk", "id": 21355, "credit_id": "52fe4333c3a36847f8042151", "cast_id": 12, "profile_path": "/eoAfTjFs6SiXGBmdlfasb0J9fHw.jpg", "order": 4}, {"name": "Delroy Lindo", "character": "Isaak O`Day", "id": 18792, "credit_id": "52fe4333c3a36847f8042155", "cast_id": 13, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 5}, {"name": "D. B. Woodside", "character": "Colin O`Day", "id": 21356, "credit_id": "52fe4333c3a36847f8042159", "cast_id": 14, "profile_path": "/deDzc1UEZsOvamdhvBPNbwrBSrM.jpg", "order": 6}, {"name": "Jon Kit Lee", "character": "Po Sing", "id": 21358, "credit_id": "52fe4333c3a36847f804215d", "cast_id": 16, "profile_path": "/mbaz0eYZxaUVHS72fJsI1Y5b12b.jpg", "order": 8}, {"name": "Edoardo Ballerini", "character": "Vincent Roth", "id": 21359, "credit_id": "52fe4333c3a36847f8042161", "cast_id": 17, "profile_path": "/2Xkuux55UDZ3LSlOx9tIkQLrDdQ.jpg", "order": 9}, {"name": "Anthony Anderson", "character": "Maurice", "id": 18471, "credit_id": "52fe4333c3a36847f8042165", "cast_id": 18, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 10}, {"name": "Matthew Harrison", "character": "Dave", "id": 21360, "credit_id": "52fe4333c3a36847f8042169", "cast_id": 19, "profile_path": "/2dUfVxMEM1ilto1YP78XaEVppKI.jpg", "order": 11}, {"name": "Terry Chen", "character": "Kuang", "id": 11677, "credit_id": "52fe4333c3a36847f804216d", "cast_id": 20, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "Henry O", "character": "Ch`u Sing", "id": 39829, "credit_id": "52fe4333c3a36847f8042177", "cast_id": 22, "profile_path": "/cJ7rk3cmGOc0m1T90oPgZylntcs.jpg", "order": 13}], "directors": [{"name": "Andrzej Bartkowiak", "department": "Directing", "job": "Director", "credit_id": "52fe4333c3a36847f804211f", "profile_path": "/taaHl0nMtXgKTx8YbeQoJCuO5Ac.jpg", "id": 10765}], "vote_average": 6.2, "runtime": 115}, "59436": {"poster_path": "/xxSopLYATHXSepXcEaBh9Gazv6p.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70278363, "overview": "A romantic comedy about a family traveling to the French capital for business. The party includes a young engaged couple forced to confront the illusion that a life different from their own is better.", "video": false, "id": 59436, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Midnight in Paris", "tagline": "Written and directed by Woody Allen", "vote_count": 456, "homepage": "http://www.sonyclassics.com/midnightinparis", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1605783", "adult": false, "backdrop_path": "/mtTKXG925gRdYHVto6cxC9NdfBZ.jpg", "production_companies": [{"name": "Pontchartrain Productions", "id": 24785}, {"name": "Gravier Productions", "id": 1824}, {"name": "Mediapro", "id": 12010}, {"name": "Vers\u00e1til Cinema", "id": 8531}, {"name": "Televisi\u00f3 de Catalunya (TV3)", "id": 8530}], "release_date": "2011-05-11", "popularity": 1.26203895736239, "original_title": "Midnight in Paris", "budget": 30000000, "cast": [{"name": "Owen Wilson", "character": "Gil", "id": 887, "credit_id": "52fe4990c3a36847f81a0ba7", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Inez", "id": 53714, "credit_id": "52fe4990c3a36847f81a0bab", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Kurt Fuller", "character": "John", "id": 29685, "credit_id": "52fe4990c3a36847f81a0baf", "cast_id": 5, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 2}, {"name": "Mimi Kennedy", "character": "Helen", "id": 91495, "credit_id": "52fe4990c3a36847f81a0bbb", "cast_id": 8, "profile_path": "/2bg8ItAMtb18GCX7OEICxxjxVID.jpg", "order": 3}, {"name": "Michael Sheen", "character": "Paul", "id": 3968, "credit_id": "52fe4990c3a36847f81a0bb7", "cast_id": 7, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 4}, {"name": "Nina Arianda", "character": "Carol", "id": 971329, "credit_id": "52fe4990c3a36847f81a0bf9", "cast_id": 23, "profile_path": "/9JFj7CPIkH9NCqtqT5SN3ECsBYh.jpg", "order": 5}, {"name": "Carla Bruni", "character": "Museum Guide", "id": 937039, "credit_id": "52fe4990c3a36847f81a0bfd", "cast_id": 24, "profile_path": "/xrRvz1hXXT74vS2zdp3HRbS70GP.jpg", "order": 6}, {"name": "Maurice Sonnenberg", "character": "Man at Wine Tasting", "id": 28005, "credit_id": "52fe4990c3a36847f81a0c83", "cast_id": 53, "profile_path": "/vEoIXwvbHghKymwtaDQtuNQg4mk.jpg", "order": 7}, {"name": "Thierry Hancisse", "character": "1920's Partygoer", "id": 96376, "credit_id": "52fe4990c3a36847f81a0c35", "cast_id": 38, "profile_path": "/l6HTy5ymkwISo93bSyfWGFiQDzZ.jpg", "order": 8}, {"name": "Audrey Fleurot", "character": "1920's Partygoer", "id": 219708, "credit_id": "52fe4990c3a36847f81a0c3d", "cast_id": 40, "profile_path": "/cvCRChF1HzYviQsfZzFpeNzjYap.jpg", "order": 10}, {"name": "Marie-Sohna Conde", "character": "1920's Partygoer (as Marie-Sohna Cond\u00e9)", "id": 7284, "credit_id": "52fe4990c3a36847f81a0c41", "cast_id": 41, "profile_path": "/uFIa5WmWvU41T7urdTvYGg6JFHr.jpg", "order": 11}, {"name": "Yves Heck", "character": "Cole Porter", "id": 1151450, "credit_id": "52fe4990c3a36847f81a0bf5", "cast_id": 22, "profile_path": "/lyWiIpnReZv9erUlJq5kZc2kYXI.jpg", "order": 12}, {"name": "Alison Pill", "character": "Zelda Fitzgerald", "id": 17486, "credit_id": "52fe4990c3a36847f81a0bb3", "cast_id": 6, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 13}, {"name": "Tom Hiddleston", "character": "F. Scott Fitzgerald", "id": 91606, "credit_id": "52fe4990c3a36847f81a0bf1", "cast_id": 21, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 14}, {"name": "Sonia Rolland", "character": "Jos\u00e9phine Baker", "id": 585668, "credit_id": "52fe4990c3a36847f81a0bed", "cast_id": 20, "profile_path": "/AjHfJzjKtrmUGO8sgDQHow277De.jpg", "order": 15}, {"name": "Corey Stoll", "character": "Ernest Hemingway", "id": 74541, "credit_id": "52fe4990c3a36847f81a0bc3", "cast_id": 10, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 16}, {"name": "Daniel Lundh", "character": "Juan Belmonte", "id": 144957, "credit_id": "52fe4990c3a36847f81a0c31", "cast_id": 37, "profile_path": "/k5w8eIj08voHbJYCMWCDC07hrI7.jpg", "order": 17}, {"name": "Laurent Spielvogel", "character": "Antiques Dealer", "id": 115686, "credit_id": "52fe4990c3a36847f81a0c2d", "cast_id": 36, "profile_path": "/tMaZJH2bkINTTxYsY4B4Gmt9rlE.jpg", "order": 18}, {"name": "Th\u00e9r\u00e8se Bourou-Rubinsztein", "character": "Alice B. Toklas", "id": 1151451, "credit_id": "52fe4990c3a36847f81a0c01", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Kathy Bates", "character": "Gertrude Stein", "id": 8534, "credit_id": "52fe4990c3a36847f81a0bc7", "cast_id": 11, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 20}, {"name": "Marcial Di Fonzo Bo", "character": "Pablo Picasso", "id": 85016, "credit_id": "52fe4990c3a36847f81a0c05", "cast_id": 26, "profile_path": "/u5R8SQIhrHLnuerG4YE3Dlw8j08.jpg", "order": 21}, {"name": "Marion Cotillard", "character": "Adriana", "id": 8293, "credit_id": "52fe4990c3a36847f81a0bbf", "cast_id": 9, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 22}, {"name": "L\u00e9a Seydoux", "character": "Gabrielle", "id": 121529, "credit_id": "52fe4990c3a36847f81a0bd9", "cast_id": 15, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 23}, {"name": "Emmanuelle Uzan", "character": "Djuna Barnes", "id": 1151449, "credit_id": "52fe4990c3a36847f81a0bdd", "cast_id": 16, "profile_path": "/dDlPHExEjWeLtR8hxvQ0OSw7bz.jpg", "order": 24}, {"name": "Adrien Brody", "character": "Salvador Dal\u00ed", "id": 3490, "credit_id": "52fe4990c3a36847f81a0bcb", "cast_id": 12, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 25}, {"name": "Tom Cordier", "character": "Man Ray", "id": 1151452, "credit_id": "52fe4990c3a36847f81a0c09", "cast_id": 27, "profile_path": "/2ZjRx2TSwhq04zYxlR0hhU3nZDz.jpg", "order": 26}, {"name": "Adrien de Van", "character": "Luis Bu\u00f1uel", "id": 260836, "credit_id": "52fe4990c3a36847f81a0be9", "cast_id": 19, "profile_path": "/1luce7nNxUZZZL0GjdapTwuLk4M.jpg", "order": 27}, {"name": "Serge Bagdassarian", "character": "D\u00e9tective Duluc", "id": 1151455, "credit_id": "52fe4990c3a36847f81a0c25", "cast_id": 34, "profile_path": "/UXoVtUa4joxu1aRVMz3bmdCtte.jpg", "order": 28}, {"name": "Gad Elmaleh", "character": "Detective Tisserant", "id": 51100, "credit_id": "52fe4990c3a36847f81a0bd5", "cast_id": 14, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 29}, {"name": "David Lowe", "character": "T.S. Eliot", "id": 180906, "credit_id": "52fe4990c3a36847f81a0be5", "cast_id": 18, "profile_path": "/ljFTdKSae3dhdnijz1lyOitdNpz.jpg", "order": 30}, {"name": "Atmen Kelif", "character": "Hotel Doctor", "id": 234022, "credit_id": "52fe4990c3a36847f81a0c87", "cast_id": 54, "profile_path": "/w7XYquidRB8RmxoTnRo0ZqbSr26.jpg", "order": 31}, {"name": "Yves-Antoine Spoto", "character": "Henri Matisse", "id": 1151453, "credit_id": "52fe4990c3a36847f81a0c0d", "cast_id": 28, "profile_path": "/2s1ev4OMEtBB7gNRd6lTrxDycyc.jpg", "order": 32}, {"name": "Laurent Claret", "character": "Leo Stein", "id": 51105, "credit_id": "52fe4990c3a36847f81a0c11", "cast_id": 29, "profile_path": "/vrp7WpVVo4vlFDMx2u7PPHMtExe.jpg", "order": 33}, {"name": "Sava Lolov", "character": "Belle \u00c9poque Couple", "id": 32515, "credit_id": "52fe4990c3a36847f81a0c19", "cast_id": 31, "profile_path": "/xVQWPAX2vaowIC4dfcNZC9ZvNb4.jpg", "order": 34}, {"name": "Karine Vanasse", "character": "Belle \u00c9poque Couple", "id": 81418, "credit_id": "52fe4990c3a36847f81a0c1d", "cast_id": 32, "profile_path": "/qHlf3tUuamBdagrmpNMh7zDg5JO.jpg", "order": 35}, {"name": "Catherine Benguigui", "character": "Maxim's Hostess", "id": 220582, "credit_id": "52fe4990c3a36847f81a0c21", "cast_id": 33, "profile_path": "/fFtijqi9D3E77DjywvfTIWwaRvX.jpg", "order": 36}, {"name": "Vincent Menjou Cortes", "character": "Henri de Toulouse-Lautrec", "id": 1151456, "credit_id": "52fe4990c3a36847f81a0c29", "cast_id": 35, "profile_path": "/mxPw2JWWnykT4kezn4BjcbNimSq.jpg", "order": 37}, {"name": "Olivier Rabourdin", "character": "Paul Gauguin", "id": 49278, "credit_id": "52fe4990c3a36847f81a0be1", "cast_id": 17, "profile_path": "/6txdehoOPpGllEsU31WnBkvgRJa.jpg", "order": 38}, {"name": "Fran\u00e7ois Rostain", "character": "Edgar Degas", "id": 1151454, "credit_id": "52fe4990c3a36847f81a0c15", "cast_id": 30, "profile_path": "/jeJ8McTsfh9pgyaHQ0HGroJ1X8o.jpg", "order": 39}, {"name": "Marianne Basler", "character": "Versailles Royalty", "id": 15481, "credit_id": "52fe4990c3a36847f81a0c45", "cast_id": 42, "profile_path": "/7o0p5kukWtfkp4sxfKwVQaPI778.jpg", "order": 40}, {"name": "Michel Vuillermoz", "character": "Versailles Royalty", "id": 20082, "credit_id": "52fe4990c3a36847f81a0c49", "cast_id": 43, "profile_path": "/lLiG1CRAeTlakncRBweT78JGZ6Y.jpg", "order": 41}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe4990c3a36847f81a0b9d", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.1, "runtime": 94}, "1979": {"poster_path": "/fXpziQgnBnB4bLgjKhjTbLQumE5.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 289047763, "overview": "The Fantastic Four return to the big screen as a new and all powerful enemy threatens the Earth. The seemingly unstoppable 'Silver Surfer', but all is not what it seems and there are old and new enemies that pose a greater threat than the intrepid superheroes realize.", "video": false, "id": 1979, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Fantastic 4: Rise of the Silver Surfer", "tagline": "Discover the secret of the Surfer.", "vote_count": 943, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3JFe9AWoKuQWox7HO8HKgYRMOF7.jpg", "poster_path": "/prObnUSCHIBC8ZjkGo2KHgjkWOo.jpg", "id": 9744, "name": "Fantastic Four Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0486576", "adult": false, "backdrop_path": "/nq60mZOlrD4mZJg1T4hHUtWTIkN.jpg", "production_companies": [{"name": "Ingenious Film Partners", "id": 289}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "1492 Pictures", "id": 436}, {"name": "Dune Entertainment", "id": 444}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Bernd Eichinger Productions", "id": 10881}], "release_date": "2007-06-14", "popularity": 1.67831692178212, "original_title": "4: Rise of the Silver Surfer", "budget": 130000000, "cast": [{"name": "Ioan Gruffudd", "character": "Reed Richards / Mr. Fantastic", "id": 65524, "credit_id": "52fe4328c3a36847f803eacb", "cast_id": 7, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sue Richards / Invisible Woman", "id": 56731, "credit_id": "52fe4328c3a36847f803eacf", "cast_id": 8, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Chris Evans", "character": "Johnny Storm / Human Torch", "id": 16828, "credit_id": "52fe4328c3a36847f803ead3", "cast_id": 9, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Ben Grimm / The Thing", "id": 19654, "credit_id": "52fe4328c3a36847f803ead7", "cast_id": 10, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Doug Jones", "character": "Norrin Radd / Silver Surfer", "id": 17005, "credit_id": "52fe4328c3a36847f803eadb", "cast_id": 11, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 4}, {"name": "Laurence Fishburne", "character": "Silver Surfer (voice)", "id": 2975, "credit_id": "52fe4328c3a36847f803eadf", "cast_id": 12, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 5}, {"name": "Julian McMahon", "character": "Victor von Doom / Doctor Doom", "id": 20402, "credit_id": "52fe4328c3a36847f803eae3", "cast_id": 13, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 6}, {"name": "Kerry Washington", "character": "Alicia Masters", "id": 11703, "credit_id": "52fe4328c3a36847f803eae7", "cast_id": 14, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 7}, {"name": "Beau Garrett", "character": "Frankie Raye", "id": 20403, "credit_id": "52fe4328c3a36847f803eaeb", "cast_id": 15, "profile_path": "/eSnhComJ12wMk4PoMNpuoz7bTKO.jpg", "order": 8}, {"name": "Vanessa Lachey", "character": "Julie Angel", "id": 20404, "credit_id": "52fe4328c3a36847f803eaef", "cast_id": 16, "profile_path": "/pS4nxWDSwimJz1yobwhgtFQ1u0M.jpg", "order": 9}, {"name": "Andre Braugher", "character": "General Hager", "id": 6861, "credit_id": "52fe4328c3a36847f803eaf3", "cast_id": 17, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 10}, {"name": "Stan Lee", "character": "himself", "id": 7624, "credit_id": "52fe4328c3a36847f803eaf7", "cast_id": 18, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 11}, {"name": "Brian Posehn", "character": "Priest", "id": 20405, "credit_id": "52fe4328c3a36847f803eafb", "cast_id": 19, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 12}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4328c3a36847f803eb25", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 5.4, "runtime": 92}, "59440": {"poster_path": "/qzeShckQ34eJJFQ24dTx9QI8kcS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23, "overview": "An ex-Marine haunted by a tragic past, Tommy Riordan (Tom Hardy) returns to his hometown of Pittsburgh and enlists his father (Nick Nolte), a recovering alcoholic and his former coach, to train him for an MMA tournament awarding the biggest purse in the history of the sport. As Tommy blazes a violent path toward the title prize, his brother Brendan (Joel Edgerton), a former MMA fighter unable to make ends meet as a public school teacher, returns to the amateur ring to provide for his family. Even though years have passed, recriminations and past betrayals keep Brendan bitterly estranged from both Tommy and his father. But when Brendan's unlikely rise as an underdog sets him on a collision course with Tommy, the two brothers must finally confront the forces that tore them apart, all the while waging the most intense winner-take-all battle of their lives.", "video": false, "id": 59440, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Warrior", "tagline": "Fight for Family", "vote_count": 347, "homepage": "http://www.warriorfilm.com/index2.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1291584", "adult": false, "backdrop_path": "/t3Y0rPTraupA90fo8o5g64FiuCC.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Mimran Schur Pictures", "id": 6573}, {"name": "Solaris Film", "id": 1001}, {"name": "Filmtribe", "id": 12425}], "release_date": "2011-09-09", "popularity": 1.63877614773058, "original_title": "Warrior", "budget": 30000000, "cast": [{"name": "Tom Hardy", "character": "Tom Conlon", "id": 2524, "credit_id": "52fe4990c3a36847f81a0d8d", "cast_id": 3, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Jennifer Morrison", "character": "Tess Conlon", "id": 41421, "credit_id": "52fe4990c3a36847f81a0d91", "cast_id": 4, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Paddy Conlon", "id": 1733, "credit_id": "52fe4990c3a36847f81a0d95", "cast_id": 5, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Brendan Conlon", "id": 33192, "credit_id": "52fe4990c3a36847f81a0d99", "cast_id": 6, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Frank Grillo", "character": "Frank Campana", "id": 81685, "credit_id": "52fe4990c3a36847f81a0da3", "cast_id": 8, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 4}, {"name": "Kevin Dunn", "character": "Principal Zito", "id": 14721, "credit_id": "52fe4990c3a36847f81a0da7", "cast_id": 10, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 5}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Colt Boyd", "id": 1018947, "credit_id": "52fe4990c3a36847f81a0dab", "cast_id": 11, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 6}, {"name": "Bryan Callen", "character": "Himself", "id": 78320, "credit_id": "52fe4990c3a36847f81a0e2d", "cast_id": 33, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 7}, {"name": "Sam Sheridan", "character": "Himself", "id": 972459, "credit_id": "52fe4990c3a36847f81a0e31", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Jake McLaughlin", "character": "Mark Bradford", "id": 51683, "credit_id": "52fe4990c3a36847f81a0e35", "cast_id": 35, "profile_path": "/ocDxrwFDqbDmkpmgXpwpwdSzl7T.jpg", "order": 9}, {"name": "Vanessa Martinez", "character": "Pilar Fernandez", "id": 235782, "credit_id": "52fe4990c3a36847f81a0e39", "cast_id": 36, "profile_path": "/dCMompNhK7IwLtVs6dVAjOeOzxL.jpg", "order": 10}, {"name": "Denzel Whitaker", "character": "Stephon", "id": 77278, "credit_id": "52fe4991c3a36847f81a0e3d", "cast_id": 37, "profile_path": "/yN4ZZDDDJI2UoKVI1BlIWwd5mp8.jpg", "order": 11}, {"name": "Carlos Miranda", "character": "Tito", "id": 39007, "credit_id": "52fe4991c3a36847f81a0e41", "cast_id": 38, "profile_path": "/4AaU3V2VYU9SLZpt11Mv7BONbgG.jpg", "order": 12}, {"name": "Nick Lehane", "character": "Nash", "id": 1130135, "credit_id": "52fe4991c3a36847f81a0e45", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Laura Chinn", "character": "KC", "id": 225622, "credit_id": "52fe4991c3a36847f81a0e49", "cast_id": 40, "profile_path": null, "order": 14}], "directors": [{"name": "Gavin O'Connor", "department": "Directing", "job": "Director", "credit_id": "52fe4990c3a36847f81a0d83", "profile_path": "/ySCeCte0VOVT9jWft6TwBKGU9KM.jpg", "id": 77003}], "vote_average": 7.6, "runtime": 140}, "44040": {"poster_path": "/m54c0mMcsQfNcRk2As2qH8Y5DQG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33583175, "overview": "A group of people trapped in a elevator realize that the devil is among them.", "video": false, "id": 44040, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Devil", "tagline": "Bad Things Happen For A Reason", "vote_count": 209, "homepage": "http://www.thenightchronicles.com/devil/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}], "imdb_id": "tt1314655", "adult": false, "backdrop_path": "/3sbWB2s3AHmxUamnuwKKeYVFicx.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Night Chronicles", "id": 6006}, {"name": "Relativity Media", "id": 7295}], "release_date": "2010-09-17", "popularity": 0.44017997550948, "original_title": "Devil", "budget": 10000000, "cast": [{"name": "Chris Messina", "character": "Detective Bowden", "id": 61659, "credit_id": "52fe4673c3a36847f80ffbe9", "cast_id": 8, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 0}, {"name": "Jacob Vargas", "character": "Ramirez", "id": 16429, "credit_id": "52fe4673c3a36847f80ffbf5", "cast_id": 11, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 1}, {"name": "Bojana Novakovi\u0107", "character": "Young Woman", "id": 81682, "credit_id": "52fe4673c3a36847f80ffc25", "cast_id": 23, "profile_path": "/huxuKuGq26pHRE6nO0WJu3aS0hU.jpg", "order": 2}, {"name": "Logan Marshall-Green", "character": "Mechanic", "id": 130253, "credit_id": "52fe4673c3a36847f80ffc21", "cast_id": 22, "profile_path": "/bLVRAvM9WnTVQ42Nm4jVR0IpOIk.jpg", "order": 3}, {"name": "Bokeem Woodbine", "character": "Guard", "id": 71913, "credit_id": "52fe4673c3a36847f80ffbf1", "cast_id": 10, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 4}, {"name": "Matt Craven", "character": "Lustig", "id": 13525, "credit_id": "52fe4673c3a36847f80ffbf9", "cast_id": 12, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 6}, {"name": "Joshua Peace", "character": "Detective Markowitz", "id": 5925, "credit_id": "52fe4673c3a36847f80ffbfd", "cast_id": 13, "profile_path": "/C5xx4dU6NtB7vzoX9Ho6p7CgOb.jpg", "order": 7}, {"name": "Caroline Dhavernas", "character": "Elsa Nahai", "id": 31383, "credit_id": "52fe4673c3a36847f80ffc01", "cast_id": 14, "profile_path": "/nLj1IbeBb3aYPcfJKMuE0JHzhcy.jpg", "order": 8}, {"name": "Zoie Palmer", "character": "Cheryl", "id": 133252, "credit_id": "52fe4673c3a36847f80ffc09", "cast_id": 16, "profile_path": "/nmBoKoXnCII4ShanCzEWuHNnvNK.jpg", "order": 9}, {"name": "Vincent Laresca", "character": "Henry", "id": 1983, "credit_id": "52fe4673c3a36847f80ffc0d", "cast_id": 17, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 10}, {"name": "Jenny O'Hara", "character": "Old Woman", "id": 4734, "credit_id": "52fe4673c3a36847f80ffbed", "cast_id": 9, "profile_path": "/yyr6dyBOP1BQedXbQ3RDsvoLicb.jpg", "order": 11}, {"name": "Joe Cobden", "character": "Dwight", "id": 51389, "credit_id": "52fe4673c3a36847f80ffc05", "cast_id": 15, "profile_path": "/kTf7OtOY1qBPmEbc4Kky9uMN58K.jpg", "order": 12}, {"name": "Rudy Webb", "character": "Old Janitor", "id": 133253, "credit_id": "52fe4673c3a36847f80ffc11", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Craig Eldridge", "character": "Donnelly", "id": 133254, "credit_id": "52fe4673c3a36847f80ffc15", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Robert Lee", "character": "Chinese Man", "id": 133255, "credit_id": "52fe4673c3a36847f80ffc19", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Geoffrey Arend", "character": "Salesman", "id": 5375, "credit_id": "52fe4673c3a36847f80ffc1d", "cast_id": 21, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 15}], "directors": [{"name": "John Erick Dowdle", "department": "Directing", "job": "Director", "credit_id": "52fe4673c3a36847f80ffbdf", "profile_path": null, "id": 77147}], "vote_average": 5.7, "runtime": 80}, "100402": {"poster_path": "/pH4oeiZAh9a40tly4D0l6aAB3ms.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 714766572, "overview": "After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemy\u2014the Winter Soldier.", "video": false, "id": 100402, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Captain America: The Winter Soldier", "tagline": "In heroes we trust.", "vote_count": 1762, "homepage": "http://www.captainamericathewintersoldiermovie.com", "belongs_to_collection": {"backdrop_path": "/g8rel9GDznWJkt4rxMO2HIrNuEo.jpg", "poster_path": "/r14U0p13M99ccWhMg0wHprp8TQi.jpg", "id": 131295, "name": "Captain America Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1843866", "adult": false, "backdrop_path": "/4qfXT9BtxeFuamR4F49m2mpKQI1.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2014-04-04", "popularity": 7.04996504285238, "original_title": "Captain America: The Winter Soldier", "budget": 170000000, "cast": [{"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe49d8c3a36847f81a957d", "cast_id": 1, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe49d8c3a36847f81a959d", "cast_id": 8, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Sebastian Stan", "character": "James Buchanan 'Bucky' Barnes / The Winter Soldier", "id": 60898, "credit_id": "52fe49d8c3a36847f81a9585", "cast_id": 3, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe49d8c3a36847f81a9581", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Robert Redford", "character": "Alexander Pierce", "id": 4135, "credit_id": "52fe49d8c3a36847f81a95bb", "cast_id": 15, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 4}, {"name": "Anthony Mackie", "character": "Sam Wilson / Falcon", "id": 53650, "credit_id": "52fe49d8c3a36847f81a9589", "cast_id": 4, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 5}, {"name": "Cobie Smulders", "character": "Maria Hill", "id": 71189, "credit_id": "52fe49d8c3a36847f81a95a1", "cast_id": 9, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 6}, {"name": "Frank Grillo", "character": "Brock Rumlow / Crossbones", "id": 81685, "credit_id": "52fe49d8c3a36847f81a9599", "cast_id": 7, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 7}, {"name": "Emily VanCamp", "character": "Sharon Carter", "id": 84247, "credit_id": "52fe49d8c3a36847f81a95a9", "cast_id": 11, "profile_path": "/2nBBndedoyJvuDaUwZ1nNgip6Tn.jpg", "order": 8}, {"name": "Toby Jones", "character": "Arnim Zola", "id": 13014, "credit_id": "52fe49d8c3a36847f81a95a5", "cast_id": 10, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 9}, {"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "52fe49d8c3a36847f81a95ad", "cast_id": 12, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 10}, {"name": "Georges St. Pierre", "character": "Batroc the Leaper", "id": 74750, "credit_id": "52fe49d8c3a36847f81a95b7", "cast_id": 14, "profile_path": "/fwY38OK6iTrAPZWV8ZTNJUYkUgI.jpg", "order": 11}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Agent Jasper Sitwell", "id": 1018947, "credit_id": "52fe49d8c3a36847f81a95cb", "cast_id": 18, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 12}, {"name": "Alan Dale", "character": "World Security Council member", "id": 52760, "credit_id": "52fe49d8c3a36847f81a95d5", "cast_id": 20, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 13}, {"name": "Stan Lee", "character": "Security Guard", "id": 7624, "credit_id": "52fe49d8c3a36847f81a95d9", "cast_id": 21, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 14}, {"name": "Jenny Agutter", "character": "Councilwoman Hawley", "id": 14464, "credit_id": "5346fe75c3a3682f0400198a", "cast_id": 22, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 15}, {"name": "Garry Shandling", "character": "Senator Stern", "id": 52865, "credit_id": "5346fe83c3a3682f19001941", "cast_id": 23, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 16}, {"name": "Danny Pudi", "character": "Com Tech #1", "id": 205179, "credit_id": "5346fea1c3a3682f26001a55", "cast_id": 24, "profile_path": "/tQePBWCu70VyqBWZNQBHFFV09E9.jpg", "order": 17}, {"name": "Chin Han", "character": "Councilman Yen", "id": 101015, "credit_id": "53d65bd0c3a3686b9a0058cd", "cast_id": 25, "profile_path": "/xvMCVDvrQ2WlAB2LmkG6HAzlYag.jpg", "order": 18}, {"name": "Bernard White", "character": "Councilman Singh", "id": 156739, "credit_id": "53f701980e0a267f7a007402", "cast_id": 55, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 19}, {"name": "Pat Healy", "character": "Scientist #1", "id": 60846, "credit_id": "5404197a0e0a2658db00962a", "cast_id": 56, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 20}, {"name": "Callan Mulvey", "character": "Jack Rollins", "id": 208296, "credit_id": "552a89bc925141323600248f", "cast_id": 63, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 21}, {"name": "Branka Kati\u0107", "character": "Renata", "id": 15268, "credit_id": "550c9b65c3a36848830043ba", "cast_id": 58, "profile_path": "/6dtxxJyeGL5kHpUEeshDfe3T4wB.jpg", "order": 22}, {"name": "Elizabeth Olsen", "character": "Wanda Maximoff / Scarlet Witch (uncredited)", "id": 550843, "credit_id": "552a8909c3a368596e0038c5", "cast_id": 59, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 23}, {"name": "Aaron Taylor-Johnson", "character": "Pietro Maximoff / Quicksilver (uncredited)", "id": 27428, "credit_id": "552a8922c3a3681f5c00447e", "cast_id": 60, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 24}, {"name": "Thomas Kretschmann", "character": "Baron Wolfgang von Strucker (uncredited)", "id": 3491, "credit_id": "552a894ac3a3681f5c004483", "cast_id": 61, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 25}, {"name": "Henry Goodman", "character": "Dr. List (uncredited)", "id": 7030, "credit_id": "552a896bc3a36859cf00425e", "cast_id": 62, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 26}], "directors": [{"name": "Joe Russo", "department": "Directing", "job": "Director", "credit_id": "52fe49d8c3a36847f81a958f", "profile_path": "/5bMVczVDqLJFpfLQZhQ4hhwkSQD.jpg", "id": 19272}, {"name": "Anthony Russo", "department": "Directing", "job": "Director", "credit_id": "52fe49d8c3a36847f81a9595", "profile_path": "/mwokQ8u2RgeFRkDUtcNctTgd8bg.jpg", "id": 19271}], "vote_average": 7.7, "runtime": 136}, "222899": {"poster_path": "/scGmWVpSt0Yaanwuxe1IvA5lZRG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49002684, "overview": "A modern reimagining of the classic romantic comedy, this contemporary version closely follows new love for two couples as they journey from the bar to the bedroom and are eventually put to the test in the real world.", "video": false, "id": 222899, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "About Last Night", "tagline": "It's about compromise. It's about love. It's about a good wingman.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1826590", "adult": false, "backdrop_path": "/1wyFgywBCCSnniSOHLlIZijNcty.jpg", "production_companies": [{"name": "Screen Gems, Inc.", "id": 127}, {"name": "Olive Bridge Entertainment", "id": 7291}, {"name": "Rainforest Films", "id": 1309}], "release_date": "2014-02-14", "popularity": 0.926296382242476, "original_title": "About Last Night", "budget": 12500000, "cast": [{"name": "Kevin Hart", "character": "Bernie", "id": 55638, "credit_id": "52fe4e009251416c7514811f", "cast_id": 4, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 0}, {"name": "Michael Ealy", "character": "Danny", "id": 8177, "credit_id": "52fe4e009251416c75148123", "cast_id": 5, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 1}, {"name": "Regina Hall", "character": "Joan", "id": 35705, "credit_id": "52fe4e009251416c7514812b", "cast_id": 7, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 2}, {"name": "Joy Bryant", "character": "Debbie", "id": 52847, "credit_id": "52fe4e009251416c75148127", "cast_id": 6, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 3}, {"name": "Christopher McDonald", "character": "Casey McNeil", "id": 4443, "credit_id": "52fe4e009251416c7514813b", "cast_id": 13, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 4}, {"name": "Paula Patton", "character": "Alison", "id": 52851, "credit_id": "52fe4e009251416c7514811b", "cast_id": 3, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 5}, {"name": "Adam Rodr\u00edguez", "character": "Steven Thaler", "id": 49706, "credit_id": "52fe4e009251416c7514813f", "cast_id": 14, "profile_path": "/jMBghQKSROfpN2wZ5usK019DA2G.jpg", "order": 6}, {"name": "Jovanny Venegas", "character": "DJ", "id": 1277549, "credit_id": "52fe4e009251416c75148143", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Joe Lo Truglio", "character": "Ryan Keller", "id": 21131, "credit_id": "52fe4e009251416c7514814d", "cast_id": 17, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Terrell Owens", "character": "Himself", "id": 214729, "credit_id": "52fe4e009251416c75148151", "cast_id": 18, "profile_path": "/clai68fZEYFB3PtO1WbO7JjcpaE.jpg", "order": 9}, {"name": "Jessica Lu", "character": "Ad Executive", "id": 1254925, "credit_id": "531682b99251412ccd00054f", "cast_id": 19, "profile_path": "/c4fhDtv7PqTTmzKnXMiUnbyeUuQ.jpg", "order": 10}, {"name": "Selita Ebanks", "character": "Pretty Lady", "id": 139844, "credit_id": "54a49731c3a3682f21013122", "cast_id": 20, "profile_path": "/ibmXm0ZOesWCWZugAtrrmm8Elv1.jpg", "order": 11}], "directors": [{"name": "Steve Pink", "department": "Directing", "job": "Director", "credit_id": "52fe4e009251416c75148111", "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "id": 3227}], "vote_average": 6.1, "runtime": 100}, "2100": {"poster_path": "/tfbZvbK3mVNcgsYwC0Npj96GRux.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27642707, "overview": "A Court Martialed general rallies together 1200 inmates to rise against the system that put him away.", "video": false, "id": 2100, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Last Castle", "tagline": "A Castle Can Only Have One King", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0272020", "adult": false, "backdrop_path": "/kicduIe2pMRsLYZf3ZTn98uZyC7.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2001-10-19", "popularity": 0.591890040250744, "original_title": "The Last Castle", "budget": 72000000, "cast": [{"name": "Robert Redford", "character": "Lt. Gen. Eugene Irwin", "id": 4135, "credit_id": "52fe4335c3a36847f80429e9", "cast_id": 16, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "James Gandolfini", "character": "Col. Winter", "id": 4691, "credit_id": "52fe4335c3a36847f80429ed", "cast_id": 17, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Yates", "id": 103, "credit_id": "52fe4335c3a36847f80429f1", "cast_id": 18, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Steve Burton", "character": "Cap. Peretz", "id": 21530, "credit_id": "52fe4335c3a36847f80429f5", "cast_id": 19, "profile_path": "/9MBX4Ld0GCa9Ko4fXdtsAvFxM73.jpg", "order": 3}, {"name": "Delroy Lindo", "character": "Gen. Wheeler", "id": 18792, "credit_id": "52fe4335c3a36847f80429f9", "cast_id": 20, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 4}, {"name": "Paul Calderon", "character": "Dellwo", "id": 3137, "credit_id": "52fe4335c3a36847f80429fd", "cast_id": 21, "profile_path": "/uS3RyQ6QWr5P6bwHDJWc4UeTnvG.jpg", "order": 5}, {"name": "Samuel Ball", "character": "Duffy", "id": 21532, "credit_id": "52fe4335c3a36847f8042a01", "cast_id": 22, "profile_path": "/knII4e66jnaGEdVpVjFEJrFgSeU.jpg", "order": 6}, {"name": "Jeremy Childs", "character": "Cutbush", "id": 21533, "credit_id": "52fe4335c3a36847f8042a05", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "George W. Scott", "character": "Thumper", "id": 21535, "credit_id": "52fe4335c3a36847f8042a09", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Clifton Collins, Jr.", "character": "Cp. Ramov Aguilar", "id": 5365, "credit_id": "52fe4335c3a36847f8042a0d", "cast_id": 25, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 9}], "directors": [{"name": "Rod Lurie", "department": "Directing", "job": "Director", "credit_id": "52fe4335c3a36847f8042991", "profile_path": "/cMHBVZ7siplx5RlbW6OscBTwbId.jpg", "id": 21526}], "vote_average": 7.0, "runtime": 131}, "10294": {"poster_path": "/wZjZkzHdePRg0iaFAfVxLwXINhR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young married couple becomes stranded at an isolated motel and find hidden video cameras in their room. They realize that unless they escape, they'll be the next victims of a snuff film.", "video": false, "id": 10294, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Vacancy", "tagline": "Once you've checked in... The terror begins.", "vote_count": 75, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wDLo8s0HEd1ci5980gpk3GoD2DL.jpg", "id": 86112, "name": "Vacancy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452702", "adult": false, "backdrop_path": "/n2ayb7ko6OpKTqgsAmWROoDgB9b.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Hal Lieberman Company", "id": 23890}], "release_date": "2007-04-20", "popularity": 0.73333129804015, "original_title": "Vacancy", "budget": 19000000, "cast": [{"name": "Kate Beckinsale", "character": "Amy Fox", "id": 3967, "credit_id": "52fe43549251416c7500c2d3", "cast_id": 1, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Luke Wilson", "character": "David Fox", "id": 36422, "credit_id": "52fe43549251416c7500c2d7", "cast_id": 2, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Ethan Embry", "character": "Mechanic", "id": 58019, "credit_id": "52fe43549251416c7500c2db", "cast_id": 3, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 2}, {"name": "Scott G. Anderson", "character": "Killer", "id": 8549, "credit_id": "52fe43549251416c7500c2df", "cast_id": 4, "profile_path": "/7F1Tj6ORbCUtXCBnKJ0nCf0bOY2.jpg", "order": 3}, {"name": "Frank Whaley", "character": "Mason", "id": 11805, "credit_id": "52fe43549251416c7500c30d", "cast_id": 12, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 4}, {"name": "Mark Casella", "character": "Le routier", "id": 163838, "credit_id": "52fe43549251416c7500c311", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "David Doty", "character": "L'agent de Police", "id": 124086, "credit_id": "52fe43549251416c7500c315", "cast_id": 14, "profile_path": null, "order": 6}], "directors": [{"name": "Nimr\u00f3d Antal", "department": "Directing", "job": "Director", "credit_id": "52fe43549251416c7500c2e5", "profile_path": "/rI5DZmGXhZcNYaREK9vy2khqm1o.jpg", "id": 41671}], "vote_average": 5.8, "runtime": 80}, "2103": {"poster_path": "/rKM78gDXAwtH9f63VcR7KTMnXEB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30002758, "overview": "Upon arrival at the space station orbiting an ocean world called Solaris a psychologist discovers that the commander of an expedition to the planet has died mysteriously. Other strange events soon start happening as well, such as the appearance of old acquaintances of the crew, including some who are dead.", "video": false, "id": 2103, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Solaris", "tagline": "How far will you go for a second chance?", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307479", "adult": false, "backdrop_path": "/ulF7FPcs6Z4PiNkLf0RMn1FTpvE.jpg", "production_companies": [{"name": "Lightstorm Entertainment", "id": 574}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2002-11-27", "popularity": 0.503284566038284, "original_title": "Solaris", "budget": 47000000, "cast": [{"name": "George Clooney", "character": "Chris Kelvin", "id": 1461, "credit_id": "52fe4336c3a36847f8042b8d", "cast_id": 14, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Natascha McElhone", "character": "Rheya", "id": 11317, "credit_id": "52fe4336c3a36847f8042b91", "cast_id": 15, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 1}, {"name": "Viola Davis", "character": "Gordon", "id": 19492, "credit_id": "52fe4336c3a36847f8042b95", "cast_id": 16, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 2}, {"name": "Jeremy Davies", "character": "Snow", "id": 4654, "credit_id": "52fe4336c3a36847f8042b99", "cast_id": 17, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 3}, {"name": "Ulrich Tukur", "character": "Gibarian", "id": 8198, "credit_id": "52fe4336c3a36847f8042b9d", "cast_id": 18, "profile_path": "/assJYvivgfukHFWim6o9T3sUmu9.jpg", "order": 4}, {"name": "Michael Ensign", "character": "Friend", "id": 1080265, "credit_id": "52fe4336c3a36847f8042ba1", "cast_id": 20, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 5}, {"name": "John Cho", "character": "DBA Emissary", "id": 68842, "credit_id": "547f496892514166be000055", "cast_id": 26, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 6}, {"name": "Morgan Rusler", "character": "DBA Emissary", "id": 155295, "credit_id": "547f498092514166bc000057", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Shane Skelton", "character": "Gibarian's Son", "id": 1393682, "credit_id": "547f49dd92514166cb000057", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Donna Kimball", "character": "Mrs. Gibarian", "id": 1247688, "credit_id": "547f4a0cc3a368796100006d", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Elpidia Carrillo", "character": "Friend", "id": 1102, "credit_id": "547f4a1fc3a3687964000078", "cast_id": 30, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 10}, {"name": "Kent Faulcon", "character": "Patient", "id": 9634, "credit_id": "547f4a3592514166cb000065", "cast_id": 31, "profile_path": "/oOKr7nJJwpGNrPijma1MhhkDRPv.jpg", "order": 11}, {"name": "Lauren Cohn", "character": "Patient", "id": 41506, "credit_id": "547f4a48c3a368795e000073", "cast_id": 32, "profile_path": null, "order": 12}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042b4d", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.3, "runtime": 99}, "2105": {"poster_path": "/dxkSApFLkKkcEQgjCH2KPwTHvw4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 235483004, "overview": "At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to try to be the first to \"score.\" And of course, the senior prom is their last best chance. As the fateful date draws near, the boys wonder who among them will get lucky.", "video": false, "id": 2105, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "American Pie", "tagline": "There's nothing like your first piece.", "vote_count": 802, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0163651", "adult": false, "backdrop_path": "/jlU4FvYxUXaxyYM0worlD7wHdQj.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Newmarket Capital Group", "id": 506}], "release_date": "1999-07-09", "popularity": 2.2251440895484, "original_title": "American Pie", "budget": 11000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe4336c3a36847f8042cb7", "cast_id": 16, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Chris Klein", "character": "Chris 'Oz' Ostreicher", "id": 21594, "credit_id": "52fe4336c3a36847f8042cbb", "cast_id": 17, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 1}, {"name": "Thomas Ian Nicholas", "character": "Kevin Meyers", "id": 21403, "credit_id": "52fe4336c3a36847f8042cbf", "cast_id": 18, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 2}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty", "id": 21595, "credit_id": "52fe4336c3a36847f8042cc3", "cast_id": 19, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 3}, {"name": "Shannon Elizabeth", "character": "Nadia", "id": 21596, "credit_id": "52fe4336c3a36847f8042cc7", "cast_id": 20, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 4}, {"name": "Tara Reid", "character": "Victoria 'Vicky' Lathum", "id": 1234, "credit_id": "52fe4336c3a36847f8042ccb", "cast_id": 21, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 5}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe4336c3a36847f8042cdf", "cast_id": 27, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 6}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe4336c3a36847f8042ccf", "cast_id": 23, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 7}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe4336c3a36847f8042cd7", "cast_id": 25, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 8}, {"name": "Natasha Lyonne", "character": "Jessica", "id": 10871, "credit_id": "52fe4336c3a36847f8042ce3", "cast_id": 28, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 9}, {"name": "Mena Suvari", "character": "Heather", "id": 8211, "credit_id": "52fe4336c3a36847f8042cdb", "cast_id": 26, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 10}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "52fe4336c3a36847f8042cd3", "cast_id": 24, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 11}, {"name": "Chris Owen", "character": "Chuck Sherman", "id": 26999, "credit_id": "52fe4336c3a36847f8042ce7", "cast_id": 29, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 12}, {"name": "Eric Lively", "character": "Albert", "id": 53116, "credit_id": "53bc249a0e0a26196b003158", "cast_id": 31, "profile_path": "/wEl6qozyL6UrjsNcMmAG2T2r9n0.jpg", "order": 13}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "53bc24bb0e0a26196e003189", "cast_id": 32, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 14}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "53bc2b30c3a368661e00268c", "cast_id": 33, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 15}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc2b48c3a36866280025ce", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Eli Marienthal", "character": "Matt Stifler", "id": 116027, "credit_id": "53bc2b6ec3a368661e002691", "cast_id": 35, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 17}, {"name": "Casey Affleck", "character": "Tom Myers", "id": 1893, "credit_id": "53bc2bca0e0a26198400334f", "cast_id": 36, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 18}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042c6b", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}, {"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042c71", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}], "vote_average": 6.3, "runtime": 95}, "209247": {"poster_path": "/cKR7yXINpyt38PoJCzuodNocNiO.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 64065, "overview": "Crunch Calhoun, a third-rate motorcycle daredevil and part-time art thief, teams up with his snaky brother to steal one of the most valuable books in the world. But it's not just about the book for Crunch \u2014 he's keen to rewrite some chapters of his own past as well.", "video": false, "id": 209247, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Art of the Steal", "tagline": "It takes a great artist to pull off the perfect con", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2172985", "adult": false, "backdrop_path": "/4mErncWN6TrLujvTQlbkfW9HNzp.jpg", "production_companies": [{"name": "Sony Pictures", "id": 34}, {"name": "Darius Films", "id": 5486}, {"name": "Entertainment One", "id": 8147}], "release_date": "2013-10-01", "popularity": 1.11955024255449, "original_title": "The Art of the Steal", "budget": 0, "cast": [{"name": "Kurt Russell", "character": "Crunch Calhoun", "id": 6856, "credit_id": "52fe4d5fc3a368484e1e5979", "cast_id": 3, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Matt Dillon", "character": "Nicky Calhoun", "id": 2876, "credit_id": "52fe4d5fc3a368484e1e5981", "cast_id": 5, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 1}, {"name": "Jay Baruchel", "character": "Francie", "id": 449, "credit_id": "52fe4d5fc3a368484e1e597d", "cast_id": 4, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 2}, {"name": "Kenneth Welsh", "character": "'Uncle' Paddy MacCarthy", "id": 6074, "credit_id": "552d867392514107a0001aed", "cast_id": 23, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 3}, {"name": "Chris Diamantopoulos", "character": "Guy de Cornet", "id": 1217648, "credit_id": "52fe4d5fc3a368484e1e5991", "cast_id": 9, "profile_path": "/fd9RKydcraURoZnsy0EDzwVyP80.jpg", "order": 4}, {"name": "Katheryn Winnick", "character": "Lola", "id": 26723, "credit_id": "52fe4d5fc3a368484e1e5985", "cast_id": 6, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 5}, {"name": "Jason Jones", "character": "Interpol Agent Bick", "id": 185805, "credit_id": "531f500ec3a3685c3d009bf8", "cast_id": 10, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 6}, {"name": "Terence Stamp", "character": "Samuel Winter", "id": 28641, "credit_id": "52fe4d5fc3a368484e1e5989", "cast_id": 7, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 7}, {"name": "Devon Bostick", "character": "Ponch", "id": 90498, "credit_id": "52fe4d5fc3a368484e1e598d", "cast_id": 8, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 8}, {"name": "Karyn Dwyer", "character": "Ginger", "id": 104151, "credit_id": "531f5019c3a3685baa00265f", "cast_id": 11, "profile_path": "/tokDjZqdkM3k5ngsqjM6biuOIQO.jpg", "order": 9}, {"name": "Joe Pingue", "character": "Carmen", "id": 86237, "credit_id": "531f5025c3a3685baa002661", "cast_id": 12, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Stephen McHattie", "character": "Dirty Ernie", "id": 230, "credit_id": "531f5032c3a3685c56009d96", "cast_id": 13, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 11}, {"name": "Eugene Lipinski", "character": "Bartkowiak", "id": 28871, "credit_id": "552d0335c3a3687941001fd4", "cast_id": 22, "profile_path": "/rhpOJsibsqA4SG71GcH0LMfnygd.jpg", "order": 12}], "directors": [{"name": "Jonathan Sobol", "department": "Directing", "job": "Director", "credit_id": "52fe4d5fc3a368484e1e596f", "profile_path": null, "id": 1041418}], "vote_average": 6.2, "runtime": 90}, "2108": {"poster_path": "/4ZejrrCpfoypR5lHoT3pq6yVldW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45875171, "overview": "Five high school students, all different stereotypes, meet in detention, where they pour their hearts out to each other, and discover how they have a lot more in common than they thought.", "video": false, "id": 2108, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Breakfast Club", "tagline": "They only met once, but it changed their lives forever.", "vote_count": 376, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088847", "adult": false, "backdrop_path": "/tUSXZ37j0XpNtmOb5uwqogdcq7E.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "A&M Films", "id": 11043}, {"name": "Channel Productions", "id": 8812}], "release_date": "1985-02-15", "popularity": 2.49445934498517, "original_title": "The Breakfast Club", "budget": 1000000, "cast": [{"name": "Emilio Estevez", "character": "Andrew \"Andy\" Clark", "id": 2880, "credit_id": "52fe4336c3a36847f8042e55", "cast_id": 3, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 0}, {"name": "Anthony Michael Hall", "character": "Brian Ralph Johnson", "id": 1904, "credit_id": "52fe4336c3a36847f8042e59", "cast_id": 4, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 1}, {"name": "Judd Nelson", "character": "John Bender", "id": 21624, "credit_id": "52fe4336c3a36847f8042e4d", "cast_id": 1, "profile_path": "/6mwumgsKDEYy0F9GVdfw8TsNDHL.jpg", "order": 2}, {"name": "Molly Ringwald", "character": "Claire Standish", "id": 21625, "credit_id": "52fe4336c3a36847f8042e51", "cast_id": 2, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 3}, {"name": "Paul Gleason", "character": "Richard Vernon", "id": 7675, "credit_id": "52fe4336c3a36847f8042e5d", "cast_id": 5, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 4}, {"name": "Ally Sheedy", "character": "Allison Reynolds", "id": 12851, "credit_id": "52fe4336c3a36847f8042ea3", "cast_id": 17, "profile_path": "/xfNrfzgDwyvmczadJWw4fN70siS.jpg", "order": 5}, {"name": "John Kapelos", "character": "Carl", "id": 55554, "credit_id": "52fe4336c3a36847f8042ea7", "cast_id": 18, "profile_path": "/9bpUaLNbcmeT7OwgPh84bCFFP9c.jpg", "order": 6}, {"name": "Perry Crawford", "character": "Allison's Father", "id": 1073863, "credit_id": "52fe4336c3a36847f8042eab", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Mary Christian", "character": "Brian's Sister", "id": 1073864, "credit_id": "52fe4336c3a36847f8042eaf", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ron Dean", "character": "Andy's Father", "id": 57597, "credit_id": "52fe4336c3a36847f8042eb3", "cast_id": 21, "profile_path": "/a910oOgeYR0IxutHf3GeyDNw3qY.jpg", "order": 9}, {"name": "Tim Gamble", "character": "Claire's Father", "id": 987357, "credit_id": "52fe4336c3a36847f8042eb7", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Fran Gargano", "character": "Allison's Mom", "id": 1073865, "credit_id": "52fe4336c3a36847f8042ebb", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Mercedes Hall", "character": "Brian's Mom", "id": 1073866, "credit_id": "52fe4336c3a36847f8042ebf", "cast_id": 24, "profile_path": null, "order": 12}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042e69", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 7.4, "runtime": 97}, "2109": {"poster_path": "/jdfxpW5LF36sHsHjyH8CMBEG4TF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244386864, "overview": "When Hong Kong Inspector Lee is summoned to Los Angeles to investigate a kidnapping, the FBI doesn't want any outside help and assigns cocky LAPD Detective James Carter to distract Lee from the case. Not content to watch the action from the sidelines, Lee and Carter form an unlikely partnership and investigate the case themselves.", "video": false, "id": 2109, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rush Hour", "tagline": "The Fastest Hands in the East Meet the Biggest Mouth in the West.", "vote_count": 355, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rUwky6VBdRb2R5yQme5hPtCdf1P.jpg", "poster_path": "/mPBCN49MF2SSR27EU3Al5ebMQM4.jpg", "id": 90863, "name": "Rush Hour Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120812", "adult": false, "backdrop_path": "/2Oeh3v9LGkfUWVWopXS842CGZvX.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1998-09-18", "popularity": 1.04700452745978, "original_title": "Rush Hour", "budget": 33000000, "cast": [{"name": "Jackie Chan", "character": "Chief Insp. Lee", "id": 18897, "credit_id": "52fe4336c3a36847f8042f25", "cast_id": 2, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Chris Tucker", "character": "Detec. James Carter", "id": 66, "credit_id": "52fe4336c3a36847f8042f2d", "cast_id": 4, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 1}, {"name": "Ken Leung", "character": "Sang", "id": 2131, "credit_id": "52fe4336c3a36847f8042f21", "cast_id": 1, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Thomas Griffin", "id": 207, "credit_id": "52fe4336c3a36847f8042f29", "cast_id": 3, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Tzi Ma", "character": "Consul Han", "id": 21629, "credit_id": "52fe4336c3a36847f8042f31", "cast_id": 5, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 4}, {"name": "Chris Penn", "character": "Clive Cod", "id": 2969, "credit_id": "52fe4336c3a36847f8042f35", "cast_id": 6, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 5}, {"name": "Robert Littman", "character": "First Caucasien", "id": 21630, "credit_id": "52fe4336c3a36847f8042f39", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Michael Chow", "character": "Diner Guest", "id": 21631, "credit_id": "52fe4336c3a36847f8042f3d", "cast_id": 8, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 7}, {"name": "Julia Hsu", "character": "Soo Yung", "id": 21632, "credit_id": "52fe4336c3a36847f8042f41", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Kai Lennox", "character": "Cop", "id": 21633, "credit_id": "52fe4336c3a36847f8042f45", "cast_id": 10, "profile_path": "/m0mkP40z9aIQ0fYZxXmphdhpWk8.jpg", "order": 9}, {"name": "Elizabeth Pe\u00f1a", "character": "Tania Johnson", "id": 7430, "credit_id": "52fe4336c3a36847f8042fb5", "cast_id": 30, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 10}, {"name": "Roger Fan", "character": "Soo Yung's Bodyguard", "id": 263229, "credit_id": "52fe4336c3a36847f8042fb9", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "George Cheung", "character": "Soo Yung's Driver", "id": 16580, "credit_id": "52fe4336c3a36847f8042fbd", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Larry Sullivan", "character": "Cop at Diner", "id": 117087, "credit_id": "52fe4336c3a36847f8042fc1", "cast_id": 33, "profile_path": "/9l268KsSd673KONSu634dtNYQwy.jpg", "order": 13}, {"name": "Rex Linn", "character": "Agent Dan Whitney", "id": 16937, "credit_id": "52fe4336c3a36847f8042fc5", "cast_id": 34, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 14}, {"name": "Lucy Lin", "character": "Exposition Official", "id": 167160, "credit_id": "52fe4336c3a36847f8042fc9", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Mark Rolston", "character": "Agent Warren Russ", "id": 6576, "credit_id": "52fe4336c3a36847f8042fcd", "cast_id": 36, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 16}, {"name": "Philip Baker Hall", "character": "Captain Diel", "id": 4492, "credit_id": "52fe4337c3a36847f8042fd1", "cast_id": 37, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 17}, {"name": "John Hawkes", "character": "Stucky", "id": 16861, "credit_id": "52fe4337c3a36847f8042fd5", "cast_id": 38, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 18}, {"name": "Ai Wan", "character": "Foo Chow Hostess", "id": 1198786, "credit_id": "537332a2c3a3681530000e2d", "cast_id": 39, "profile_path": "/fKHWhRNkwDs2itR4ouL0xf4vN0M.jpg", "order": 19}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042f4b", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.7, "runtime": 98}, "2110": {"poster_path": "/wU9LGkxWv1zq5sB4e4RSQVSOWxX.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.", "video": false, "id": 2110, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Wasabi", "tagline": "For those who take their action raw.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0281364", "adult": false, "backdrop_path": "/nbKYCQcSAieG8zDYabFzCZWCp91.jpg", "production_companies": [{"name": "Canal Plus", "id": 104}, {"name": "TF1 Films Productions", "id": 356}, {"name": "Tobis", "id": 480}, {"name": "Destiny", "id": 963}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2001-10-31", "popularity": 0.393875940770992, "original_title": "Wasabi", "budget": 18, "cast": [{"name": "Jean Reno", "character": "Hubert Fiorentini", "id": 1003, "credit_id": "52fe4337c3a36847f804303b", "cast_id": 12, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Ryoko Hirosue", "character": "Yumi Yoshimido", "id": 21658, "credit_id": "52fe4337c3a36847f804303f", "cast_id": 13, "profile_path": "/zCpP0iet4lmNxtF0tgE1yHE4DTO.jpg", "order": 1}, {"name": "Michel Muller", "character": "Maurice \" Momo \"", "id": 21659, "credit_id": "52fe4337c3a36847f8043043", "cast_id": 14, "profile_path": "/nL3e4cEuJC0TpZm5RWfsrJHpPxo.jpg", "order": 2}, {"name": "Carole Bouquet", "character": "Sofia", "id": 10500, "credit_id": "52fe4337c3a36847f8043047", "cast_id": 15, "profile_path": "/7zhFzzEEGVT0DonbSyaXgzKjAGI.jpg", "order": 3}, {"name": "Yoshi O\u00efda", "character": "Takanawa", "id": 21663, "credit_id": "52fe4337c3a36847f804304b", "cast_id": 16, "profile_path": "/c7uQkdtLirDGTAHhMF77YG7I213.jpg", "order": 4}, {"name": "Christian Sinniger", "character": "Le Squale", "id": 21664, "credit_id": "52fe4337c3a36847f804304f", "cast_id": 17, "profile_path": "/gfIjB6MPRd2yq25BnTjyMEvYaEF.jpg", "order": 5}, {"name": "Alexandre Brik", "character": "Irene", "id": 21665, "credit_id": "52fe4337c3a36847f8043053", "cast_id": 18, "profile_path": "/ceRcQVbf0VeiGxkJtpI6n42hegg.jpg", "order": 6}, {"name": "Jean-Marc Montalto", "character": "Olivier", "id": 21666, "credit_id": "52fe4337c3a36847f8043057", "cast_id": 19, "profile_path": "/dUkKCW0kuKz0JJiRzGdgQ18IMm9.jpg", "order": 7}, {"name": "V\u00e9ronique Balme", "character": "Betty", "id": 21667, "credit_id": "52fe4337c3a36847f804305b", "cast_id": 20, "profile_path": "/8BzX78nSpZeoYhFatz54ggRufWv.jpg", "order": 8}, {"name": "Fabio Zenoni", "character": "Josy", "id": 21668, "credit_id": "52fe4337c3a36847f804305f", "cast_id": 21, "profile_path": "/yhoAnAg6M0MbQtUzQUjmPjmMj6D.jpg", "order": 9}, {"name": "Kiyohiko Shibukawa", "character": "", "id": 58611, "credit_id": "54a5751f92514135c80004a6", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f8043007", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 6.7, "runtime": 94}, "10303": {"poster_path": "/l1aw2VITfokYqoizjoF39OrrLow.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96773200, "overview": "Joan Wilder is thrust back into a world of murder, chases, foreign intrigue... and love. This time out she's duped by a duplicitous Arab dignitary who brings her to the Middle East, ostensibly to write a book about his life. Of course he's up to no good, and Joan is just another pawn in his wicked game. But Jack Colton and his sidekick Ralph show up to help our intrepid heroine save the day.", "video": false, "id": 10303, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Jewel of the Nile", "tagline": "When the going gets tough, the tough get going.", "vote_count": 68, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5jBCjoc1skU4KvRdLITP49fKFlD.jpg", "poster_path": "/ml0ikDZPzgRNOVBeytHLrDyuYiQ.jpg", "id": 89264, "name": "Romancing the Stone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089370", "adult": false, "backdrop_path": "/ulv3akwg3mep2oGvSL7qZ9cxjp3.jpg", "production_companies": [{"name": "Stone Group Pictures", "id": 3470}, {"name": "SLM Production Group", "id": 396}, {"name": "20th Century Fox", "id": 25}], "release_date": "1985-12-04", "popularity": 0.99865285474415, "original_title": "The Jewel of the Nile", "budget": 25000000, "cast": [{"name": "Michael Douglas", "character": "Jack Colton", "id": 3392, "credit_id": "52fe43559251416c7500c621", "cast_id": 9, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Kathleen Turner", "character": "Joan Wilder", "id": 3391, "credit_id": "52fe43559251416c7500c625", "cast_id": 10, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Ralph", "id": 518, "credit_id": "52fe43559251416c7500c629", "cast_id": 11, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "Spiros Foc\u00e1s", "character": "Omar", "id": 6783, "credit_id": "52fe43559251416c7500c62d", "cast_id": 12, "profile_path": null, "order": 3}, {"name": "Avner Eisenberg", "character": "Jewel", "id": 943150, "credit_id": "52fe43559251416c7500c631", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Paul David Magid", "character": "Tarak", "id": 1076195, "credit_id": "52fe43559251416c7500c635", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Howard Jay Patterson", "character": "Barak", "id": 1076196, "credit_id": "52fe43559251416c7500c639", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Randall Edwin Nelson", "character": "Karak", "id": 1076197, "credit_id": "52fe43559251416c7500c63d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Samuel Ross Williams", "character": "Arak", "id": 1076198, "credit_id": "52fe43559251416c7500c641", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Timothy Daniel Furst", "character": "Sarak", "id": 1076199, "credit_id": "52fe43559251416c7500c645", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Hamid Fillali", "character": "Rachid", "id": 1076200, "credit_id": "52fe43559251416c7500c649", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Holland Taylor", "character": "Gloria", "id": 11318, "credit_id": "52fe43559251416c7500c64d", "cast_id": 20, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 11}, {"name": "Guy Cuevas", "character": "Le Vasseur", "id": 1076201, "credit_id": "52fe43559251416c7500c651", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Peter DePalma", "character": "Missionary", "id": 1076202, "credit_id": "52fe43559251416c7500c655", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Mark Daly Richards", "character": "Pirate", "id": 1076203, "credit_id": "52fe43559251416c7500c659", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Lewis Teague", "department": "Directing", "job": "Director", "credit_id": "52fe43559251416c7500c5f3", "profile_path": "/8S7HOgNIpqqa7CpkV5uMR4hMSvx.jpg", "id": 21819}], "vote_average": 6.3, "runtime": 106}, "2112": {"poster_path": "/qQ1uvRviTWpc1xrDjt8IOlb6rib.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161626121, "overview": "With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.", "video": false, "id": 2112, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Payback", "tagline": "No More Mr. Nice Guy.", "vote_count": 168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120784", "adult": false, "backdrop_path": "/n079v4kobeJGLDvib1sK0N271Do.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Icon Productions", "id": 152}], "release_date": "1999-02-04", "popularity": 0.561953611942579, "original_title": "Payback", "budget": 50000000, "cast": [{"name": "Mel Gibson", "character": "Porter", "id": 2461, "credit_id": "52fe4337c3a36847f8043131", "cast_id": 15, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Kris Kristofferson", "character": "Bronson", "id": 10823, "credit_id": "52fe4337c3a36847f8043135", "cast_id": 16, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 1}, {"name": "Gregg Henry", "character": "Val Resnick", "id": 2518, "credit_id": "52fe4337c3a36847f8043139", "cast_id": 17, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 2}, {"name": "Maria Bello", "character": "Rosie", "id": 49, "credit_id": "52fe4337c3a36847f804313d", "cast_id": 18, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "David Paymer", "character": "Arthur Stegman", "id": 19839, "credit_id": "52fe4337c3a36847f8043141", "cast_id": 19, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 4}, {"name": "Bill Duke", "character": "Det. Hicks", "id": 1103, "credit_id": "52fe4337c3a36847f8043145", "cast_id": 20, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 5}, {"name": "Deborah Kara Unger", "character": "Mrs. Lynn Porter", "id": 13549, "credit_id": "52fe4337c3a36847f8043149", "cast_id": 21, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 6}, {"name": "John Glover", "character": "Phil", "id": 5589, "credit_id": "52fe4337c3a36847f804314d", "cast_id": 22, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 7}, {"name": "William Devane", "character": "Carter", "id": 21416, "credit_id": "52fe4337c3a36847f8043151", "cast_id": 23, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 8}, {"name": "Lucy Liu", "character": "Pearl", "id": 140, "credit_id": "52fe4337c3a36847f8043155", "cast_id": 24, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 9}, {"name": "Jack Conley", "character": "Det. Leary", "id": 21675, "credit_id": "52fe4337c3a36847f8043159", "cast_id": 25, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 10}], "directors": [{"name": "Paul Abascal", "department": "Directing", "job": "Director", "credit_id": "53af11d90e0a265983004e53", "profile_path": null, "id": 1216735}, {"name": "Brian Helgeland", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f80430e5", "profile_path": "/oJrbZ6efL7CalCeypRyusRbHzPF.jpg", "id": 4723}], "vote_average": 6.4, "runtime": 100}, "9072": {"poster_path": "/xbwQDrCq8epP8Jx67IaBKBDDVfy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A wannabe dad mistakes a vertically challenged criminal on the lam as his newly adopted son.", "video": false, "id": 9072, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Little Man", "tagline": "Big things come in small packages", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430304", "adult": false, "backdrop_path": "/ga4ovMTK6nqCnvPDGGxzokeESpu.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2006-08-31", "popularity": 0.447200657649294, "original_title": "Little Man", "budget": 64000000, "cast": [{"name": "Marlon Wayans", "character": "Calvin", "id": 9562, "credit_id": "52fe44d8c3a36847f80ad7ad", "cast_id": 1, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 0}, {"name": "Shawn Wayans", "character": "Darryl", "id": 35690, "credit_id": "52fe44d8c3a36847f80ad7b1", "cast_id": 2, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 1}, {"name": "Kerry Washington", "character": "Vanessa", "id": 11703, "credit_id": "52fe44d8c3a36847f80ad7b5", "cast_id": 3, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 2}, {"name": "John Witherspoon", "character": "Pops", "id": 56902, "credit_id": "52fe44d8c3a36847f80ad7b9", "cast_id": 4, "profile_path": "/quHpadwIQIQQZdFDoYKoGFhPXnH.jpg", "order": 3}, {"name": "Tracy Morgan", "character": "Percy", "id": 56903, "credit_id": "52fe44d8c3a36847f80ad7bd", "cast_id": 5, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 4}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe44d8c3a36847f80ad7f3", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 5.7, "runtime": 98}, "2114": {"poster_path": "/sAvveSNjaV66MvYf6u8piFT5oyf.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85131830, "overview": "Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.", "video": false, "id": 2114, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Final Fantasy: The Spirits Within", "tagline": "Unleash a new reality", "vote_count": 123, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/x6HZaopJw26YnjBZjo06sWmPEPM.jpg", "id": 140760, "name": "Final Fantasy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0173840", "adult": false, "backdrop_path": "/4kEgfSDpz7kH6mMe75s5YHX5Ob8.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Square USA", "id": 4164}, {"name": "Chris Lee Productions", "id": 20033}], "release_date": "2001-07-02", "popularity": 0.607442416508757, "original_title": "Final Fantasy: The Spirits Within", "budget": 137000000, "cast": [{"name": "Donald Sutherland", "character": "Dr. Cid ( voice )", "id": 55636, "credit_id": "52fe4337c3a36847f80431e5", "cast_id": 16, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 0}, {"name": "Ming-Na Wen", "character": "Dr. Aki Ross ( voice )", "id": 21702, "credit_id": "52fe4337c3a36847f80431e9", "cast_id": 17, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Cap. Gray Edwards ( voice )", "id": 7447, "credit_id": "52fe4337c3a36847f80431ed", "cast_id": 18, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Sgt. Ryan Whitaker (voice)", "id": 10182, "credit_id": "52fe4337c3a36847f80431f1", "cast_id": 19, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Off. Neil Fleming ( Voice )", "id": 884, "credit_id": "52fe4337c3a36847f80431f5", "cast_id": 20, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Peri Gilpin", "character": "Off. Jane Proudfoot (voice)", "id": 21703, "credit_id": "52fe4337c3a36847f80431f9", "cast_id": 21, "profile_path": "/3CQtUiYmacTofZ75OaKEBUmvPeH.jpg", "order": 5}, {"name": "James Woods", "character": "General Hein (voice)", "id": 4512, "credit_id": "52fe4337c3a36847f80431fd", "cast_id": 22, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 6}, {"name": "Keith David", "character": "Council Member", "id": 65827, "credit_id": "550af4fb9251414689001c09", "cast_id": 53, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "Jean Simmons", "character": "Council Member (voice)", "id": 14500, "credit_id": "550af52bc3a3684872001b6c", "cast_id": 54, "profile_path": "/lVE40Hx4s2VI2nPxkNaF0hBjPw9.jpg", "order": 8}, {"name": "Keith David", "character": "Council Member (voice)", "id": 65827, "credit_id": "550af555c3a3684874001b35", "cast_id": 55, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 9}], "directors": [{"name": "Hironobu Sakaguchi", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f804318d", "profile_path": "/vvBIwKfRIxuojbdLP5R8rjU0MW2.jpg", "id": 21692}, {"name": "Motonori Sakakibara", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f8043193", "profile_path": "/7bStVvJFRCL17G2MTlCHoLHraKJ.jpg", "id": 21693}], "vote_average": 5.7, "runtime": 106}, "10307": {"poster_path": "/n60ugx0EbccAfBIQdvd6pCASXNl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A priest from the Vatican is sent in to investigate claims that a town in Brazil has a church where statues bleed from the eyes. Meanwhile, a young woman in the U.S. begins to show signs of stigmata.", "video": false, "id": 10307, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Stigmata", "tagline": "The messenger must be silenced.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145531", "adult": false, "backdrop_path": "/iK4SuyfrddLWuDEeGPhFOqZy2VC.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "FGM Entertainment", "id": 2347}], "release_date": "1999-09-10", "popularity": 0.780450421945141, "original_title": "Stigmata", "budget": 0, "cast": [{"name": "Patricia Arquette", "character": "Frankie Paige", "id": 4687, "credit_id": "52fe43569251416c7500c81f", "cast_id": 10, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 0}, {"name": "Gabriel Byrne", "character": "Father Andrew Kiernan", "id": 5168, "credit_id": "52fe43569251416c7500c823", "cast_id": 11, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 1}, {"name": "Jonathan Pryce", "character": "Cardinal Daniel Houseman", "id": 378, "credit_id": "52fe43569251416c7500c827", "cast_id": 12, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 2}, {"name": "Nia Long", "character": "Donna Chadway", "id": 9781, "credit_id": "52fe43569251416c7500c82b", "cast_id": 13, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 3}, {"name": "Thomas Kopache", "character": "Father Durning", "id": 9284, "credit_id": "52fe43569251416c7500c82f", "cast_id": 14, "profile_path": "/x7ef1rpmCE6rjeuJq30rw0zSQE0.jpg", "order": 4}, {"name": "Rade \u0160erbed\u017eija", "character": "Marion Petrocelli", "id": 1118, "credit_id": "52fe43569251416c7500c833", "cast_id": 15, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 5}, {"name": "Enrico Colantoni", "character": "Father Dario", "id": 15029, "credit_id": "52fe43569251416c7500c837", "cast_id": 16, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 6}, {"name": "Dick Latessa", "character": "Father Gianni Delmonico", "id": 131879, "credit_id": "52fe43569251416c7500c83b", "cast_id": 17, "profile_path": "/qBJquzz6eH51JCbSFCGKt52yA0V.jpg", "order": 7}, {"name": "Portia de Rossi", "character": "Jennifer Kelliho", "id": 62010, "credit_id": "52fe43569251416c7500c83f", "cast_id": 18, "profile_path": "/sPf2YdfciJT2ov1i7xp0IqfMaKP.jpg", "order": 8}, {"name": "Patrick Muldoon", "character": "Steven", "id": 41687, "credit_id": "52fe43569251416c7500c843", "cast_id": 19, "profile_path": "/bQXk6dGI2zjRY2rvfwmpdHpyh9F.jpg", "order": 9}, {"name": "Ann Cusack", "character": "Dr. Reston", "id": 59260, "credit_id": "52fe43569251416c7500c847", "cast_id": 20, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 10}, {"name": "Shaun Toub", "character": "Doctor", "id": 17857, "credit_id": "52fe43569251416c7500c84b", "cast_id": 21, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 11}, {"name": "Tom Hodges", "character": "ER Nurse", "id": 112300, "credit_id": "52fe43569251416c7500c84f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Lydia Hazan", "character": "Attending Nurse", "id": 156517, "credit_id": "52fe43569251416c7500c853", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Shaun Duke", "character": "Dr. Eckworth (as Duke Moosekian)", "id": 177131, "credit_id": "52fe43569251416c7500c857", "cast_id": 24, "profile_path": "/4gkGAqQF6ZGvM9hcFZpXaWzKyzl.jpg", "order": 14}], "directors": [{"name": "Rupert Wainwright", "department": "Directing", "job": "Director", "credit_id": "52fe43569251416c7500c7eb", "profile_path": null, "id": 11809}], "vote_average": 5.9, "runtime": 103}, "2116": {"poster_path": "/3k3YJByOHT7z8DQa43yj6P5LFHI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55495563, "overview": "Matt Lee Whitlock, respected chief of police in small Banyan Key, Florida, must solve a vicious double homicide before he himself falls under suspicion. Matt Lee has to stay a few steps ahead of his own police force and everyone he's trusted in order to find out the truth.", "video": false, "id": 2116, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Out of Time", "tagline": "The Clock Is Ticking...", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0313443", "adult": false, "backdrop_path": "/AmzCMsWyWAsUCRSTXHPmm3cK8mm.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2003-10-03", "popularity": 0.599087171589435, "original_title": "Out of Time", "budget": 50000000, "cast": [{"name": "Denzel Washington", "character": "Matthias \" Lee \" Whitlock", "id": 5292, "credit_id": "52fe4337c3a36847f804330b", "cast_id": 13, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Alex Diaz Whitlock", "id": 8170, "credit_id": "52fe4337c3a36847f804330f", "cast_id": 14, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Sanaa Lathan", "character": "Ann Merai Harrison", "id": 5411, "credit_id": "52fe4337c3a36847f8043327", "cast_id": 20, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 2}, {"name": "John Billingsley", "character": "Chae", "id": 21722, "credit_id": "52fe4337c3a36847f8043317", "cast_id": 16, "profile_path": "/fHQ6ecMufxLwUAbN3dX3yxFAn5d.jpg", "order": 3}, {"name": "Dean Cain", "character": "Chris Harrison", "id": 21721, "credit_id": "52fe4337c3a36847f8043313", "cast_id": 15, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 4}, {"name": "Alex Carter", "character": "Cabot", "id": 21724, "credit_id": "52fe4337c3a36847f804331f", "cast_id": 18, "profile_path": "/sBt6dJhsdQih3fKBHH2TYkn8VFX.jpg", "order": 5}, {"name": "Antoni Corone", "character": "Deput Basle", "id": 20562, "credit_id": "52fe4337c3a36847f8043323", "cast_id": 19, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 6}, {"name": "Robert Baker", "character": "Tony Dalton", "id": 21723, "credit_id": "52fe4337c3a36847f804331b", "cast_id": 17, "profile_path": "/6nywOWGA7dJLzwDhHY4AzFRQ3b8.jpg", "order": 7}, {"name": "Ron Madoff", "character": "Detective (as Ronald J. Madoff)", "id": 1286269, "credit_id": "52fe4337c3a36847f8043343", "cast_id": 25, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 8}], "directors": [{"name": "Carl Franklin", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f80432d7", "profile_path": "/qNFOzZb4kFqkg6wiSfHtVvRzLLa.jpg", "id": 21712}], "vote_average": 6.3, "runtime": 105}, "18501": {"poster_path": "/ki0s06d4iUeDEdLfCcQQO2NY6Co.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40828540, "overview": "Mind-control technology has taken society by a storm, a multiplayer on-line game called \"Slayers\" allows players to control human prisoners in mass-scale. Simon (Lerman) controls Kable (Butler), the online champion of the game. Kable's ultimate challenge becomes regaining his identity and independence by defeating the game's mastermind (Hall).", "video": false, "id": 18501, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Gamer", "tagline": "In the near future, you don't live to play... you'll play to live.", "vote_count": 239, "homepage": "http://gamerthemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034032", "adult": false, "backdrop_path": "/gCVAvKhsD5BrGZhyj1sNnwsqCY5.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Lionsgate", "id": 1632}], "release_date": "2009-09-04", "popularity": 0.623621910559261, "original_title": "Gamer", "budget": 50000000, "cast": [{"name": "Gerard Butler", "character": "Kable", "id": 17276, "credit_id": "52fe47819251416c7509bdb7", "cast_id": 1, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Michael C. Hall", "character": "Ken Castle", "id": 53820, "credit_id": "52fe47819251416c7509bdd7", "cast_id": 9, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 1}, {"name": "Logan Lerman", "character": "Simon", "id": 33235, "credit_id": "52fe47819251416c7509bdbb", "cast_id": 2, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Amber Valletta", "character": "Angie", "id": 38425, "credit_id": "52fe47819251416c7509bde7", "cast_id": 13, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Terry Crews", "character": "Hackman", "id": 53256, "credit_id": "52fe47819251416c7509bdcb", "cast_id": 6, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 4}, {"name": "Kyra Sedgwick", "character": "Gina Parker Smith", "id": 26467, "credit_id": "52fe47819251416c7509bdd3", "cast_id": 8, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 5}, {"name": "Ludacris", "character": "Humanez Brother", "id": 8171, "credit_id": "52fe47819251416c7509bdc7", "cast_id": 5, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 6}, {"name": "Alison Lohman", "character": "Trace", "id": 8291, "credit_id": "52fe47819251416c7509bdcf", "cast_id": 7, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 7}, {"name": "Milo Ventimiglia", "character": "Rick Rape", "id": 16501, "credit_id": "52fe47819251416c7509bdbf", "cast_id": 3, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 8}, {"name": "Aaron Yoo", "character": "Humanez Dude", "id": 54247, "credit_id": "52fe47819251416c7509bdc3", "cast_id": 4, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 9}, {"name": "John Leguizamo", "character": "Freek", "id": 5723, "credit_id": "52fe47819251416c7509bddb", "cast_id": 10, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 10}, {"name": "Johnny Whitworth", "character": "Scotch", "id": 73589, "credit_id": "52fe47819251416c7509bddf", "cast_id": 11, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 11}, {"name": "Zo\u00eb Bell", "character": "Sandra", "id": 20494, "credit_id": "52fe47819251416c7509bde3", "cast_id": 12, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 12}, {"name": "Ashley Rickards", "character": "2Katchapredator", "id": 208225, "credit_id": "52fe47819251416c7509be03", "cast_id": 18, "profile_path": "/21s0lfhCx2hzjNzTFOwmkde665a.jpg", "order": 13}, {"name": "Brighid Fleming", "character": "Delia", "id": 965550, "credit_id": "52fe47819251416c7509be07", "cast_id": 19, "profile_path": "/7owoTpZMIxfcmfUAgWlQCGSodr.jpg", "order": 14}, {"name": "Maggie Lawson", "character": "Female News Host #1", "id": 51873, "credit_id": "52fe47819251416c7509be0b", "cast_id": 20, "profile_path": "/jpe1XChOxlzJ0dHRsQK5nBvduRQ.jpg", "order": 15}, {"name": "Nikita Ramsey", "character": "Kumdumpsta #1", "id": 558934, "credit_id": "52fe47819251416c7509be0f", "cast_id": 21, "profile_path": "/7KiVRILBHrO7TQrYckklHhixkuV.jpg", "order": 16}, {"name": "Jade Ramsey", "character": "Kumdumpsta #2", "id": 406191, "credit_id": "52fe47819251416c7509be13", "cast_id": 22, "profile_path": "/zk48eek1wv92cCybT7cFb4anHR4.jpg", "order": 17}, {"name": "Mimi Michaels", "character": "Stikkimuffin", "id": 78046, "credit_id": "52fe47819251416c7509be17", "cast_id": 23, "profile_path": "/vkhTeaepcYe361B87gWDZDjtEMJ.jpg", "order": 18}, {"name": "Sadie Alexandru", "character": "Society Victim", "id": 1270179, "credit_id": "52fe47819251416c7509be1b", "cast_id": 24, "profile_path": "/ckzjYUk5SmwJ9oYbgbq9fCRZQpz.jpg", "order": 19}], "directors": [{"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe47819251416c7509bded", "profile_path": null, "id": 20193}, {"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe47819251416c7509bdf3", "profile_path": null, "id": 20192}], "vote_average": 5.6, "runtime": 95}, "2118": {"poster_path": "/rIXzJCAvyd3Ci8ipylDQ5wUKqwh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126216940, "overview": "Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner in this lush tribute to tough film noir crime films. Based on the multi-layered James Ellroy novel.", "video": false, "id": 2118, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "L.A. Confidential", "tagline": "Everything is suspect... Everyone is for sale... And nothing is what it seems.", "vote_count": 363, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119488", "adult": false, "backdrop_path": "/orhLhvWPRYcW2isnqtNKE08sAPV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Regency Enterprises", "id": 508}, {"name": "Wolper Organization", "id": 2428}], "release_date": "1997-09-05", "popularity": 0.71220718537898, "original_title": "L.A. Confidential", "budget": 35000000, "cast": [{"name": "Kevin Spacey", "character": "Det. Sgt. Jack Vincennes", "id": 1979, "credit_id": "52fe4337c3a36847f804345d", "cast_id": 17, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Det. Lt. Edmund Jennings \" Ed \" Exley", "id": 529, "credit_id": "52fe4337c3a36847f8043461", "cast_id": 18, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Sid Hudgens", "id": 518, "credit_id": "52fe4337c3a36847f8043459", "cast_id": 16, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "James Cromwell", "character": "Cap. Dudley Liam Smith", "id": 2505, "credit_id": "52fe4337c3a36847f8043465", "cast_id": 19, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Kim Basinger", "character": "Lynn Bracken", "id": 326, "credit_id": "52fe4337c3a36847f8043469", "cast_id": 20, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 4}, {"name": "Russell Crowe", "character": "Bud White", "id": 934, "credit_id": "52fe4337c3a36847f804346d", "cast_id": 21, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 5}, {"name": "David Strathairn", "character": "Pierce Patchett", "id": 11064, "credit_id": "52fe4337c3a36847f8043471", "cast_id": 22, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 6}, {"name": "Ron Rifkin", "character": "D.A. Ellis Loew", "id": 12122, "credit_id": "52fe4337c3a36847f8043487", "cast_id": 26, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 7}, {"name": "Matt McCoy", "character": "'Badge of Honor' Star Brett Chase", "id": 42206, "credit_id": "52fe4337c3a36847f804348b", "cast_id": 27, "profile_path": "/hBbrWq1WolrEG9kSxEASywFz5OK.jpg", "order": 8}, {"name": "Paul Guilfoyle", "character": "Mickey Cohen", "id": 925, "credit_id": "52fe4337c3a36847f804348f", "cast_id": 28, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 9}, {"name": "Paolo Seganti", "character": "Johnny Stompanato", "id": 156294, "credit_id": "52fe4337c3a36847f8043493", "cast_id": 29, "profile_path": "/ueHr5H9a7Dn9ttw6QNAmQ29iwMk.jpg", "order": 10}, {"name": "Elisabeth Granli", "character": "Mickey Cohen's Mambo Partner", "id": 184250, "credit_id": "52fe4337c3a36847f8043497", "cast_id": 30, "profile_path": "/9hQcsYQR4Zo0bs7X34TfSTHBix3.jpg", "order": 11}, {"name": "Sandra Taylor", "character": "Mickey Cohen's Mambo Partner", "id": 32291, "credit_id": "52fe4337c3a36847f804349b", "cast_id": 31, "profile_path": "/2PO8r6s8IgfzWHc2ajfDgdp95JR.jpg", "order": 12}, {"name": "Steve Rankin", "character": "Officer Arresting Mickey Cohen", "id": 10137, "credit_id": "52fe4337c3a36847f804349f", "cast_id": 32, "profile_path": "/5qMs4c4I7tcmubYy0xqBU7BVwSm.jpg", "order": 13}, {"name": "Graham Beckel", "character": "Dick Stensland", "id": 6110, "credit_id": "52fe4337c3a36847f80434a3", "cast_id": 33, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 14}, {"name": "Simon Baker", "character": "Matt Reynolds", "id": 1284159, "credit_id": "52fe4337c3a36847f80434a7", "cast_id": 34, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 15}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f8043413", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}], "vote_average": 7.2, "runtime": 138}, "2119": {"poster_path": "/75Yg43XRrjflm3xIeCxQompV9Qi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157920733, "overview": "Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.", "video": false, "id": 2119, "genres": [{"id": 12, "name": "Adventure"}], "title": "Days of Thunder", "tagline": "You can't stop the thunder.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099371", "adult": false, "backdrop_path": "/bE2MZM5QAKbcwSzcmlxvRzHJ4tj.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}], "release_date": "1990-06-27", "popularity": 0.517922052781305, "original_title": "Days of Thunder", "budget": 60000000, "cast": [{"name": "Tom Cruise", "character": "Cole Trickle", "id": 500, "credit_id": "52fe4338c3a36847f8043555", "cast_id": 19, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Harry Hogge", "id": 3087, "credit_id": "52fe4338c3a36847f8043559", "cast_id": 20, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Dr. Claire Lewicki", "id": 2227, "credit_id": "52fe4338c3a36847f804355d", "cast_id": 21, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "Randy Quaid", "character": "Tim Dalander", "id": 1811, "credit_id": "52fe4338c3a36847f8043561", "cast_id": 22, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 3}, {"name": "Cary Elwes", "character": "Russ Weehler", "id": 2130, "credit_id": "52fe4338c3a36847f8043565", "cast_id": 23, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 4}, {"name": "Fred Thompson", "character": "Big John", "id": 17874, "credit_id": "52fe4338c3a36847f8043569", "cast_id": 25, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 6}, {"name": "John C. Reilly", "character": "Buck Bretherton", "id": 4764, "credit_id": "52fe4338c3a36847f804356d", "cast_id": 26, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 7}, {"name": "J.C. Quinn", "character": "Waddle", "id": 21757, "credit_id": "52fe4338c3a36847f8043571", "cast_id": 27, "profile_path": "/wNvCFv3EfT2og032UGcfWQ8hatV.jpg", "order": 8}, {"name": "Don Simpson", "character": "Aldo Bennedetti", "id": 771, "credit_id": "52fe4338c3a36847f8043575", "cast_id": 28, "profile_path": "/vYpPZLSh4ylzgP5KsEUnjt1UDRh.jpg", "order": 9}, {"name": "Michael Rooker", "character": "Rowdy Burns", "id": 12132, "credit_id": "52fe4338c3a36847f8043579", "cast_id": 29, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 10}, {"name": "Caroline Williams", "character": "Jennie Burns", "id": 86923, "credit_id": "52fe4338c3a36847f804357d", "cast_id": 30, "profile_path": "/iOwBSdPQ1adtucfm3eyLjmlCVbt.jpg", "order": 11}, {"name": "Margo Martindale", "character": "Racetrack timer", "id": 452, "credit_id": "52fe4338c3a36847f8043581", "cast_id": 31, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 12}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f80434eb", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 5.8, "runtime": 107}, "10312": {"poster_path": "/2T0Mj8gkTXgciedz8W5nsnjCHig.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 202292902, "overview": "Meet Patch Adams, a doctor who doesn't look, act or think like any doctor you've met before. For Patch, humor is the best medicine, and he's willing to do just anything to make his patients laugh - even if it means risking his own career.", "video": false, "id": 10312, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Patch Adams", "tagline": "Laughter is contagious.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0129290", "adult": false, "backdrop_path": "/9CtyPVGETuWUlqnNswo7R98xGgU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Bungalow 78 Productions", "id": 369}, {"name": "Blue Wolf", "id": 10230}, {"name": "Farrell/Minoff", "id": 10231}], "release_date": "1998-12-25", "popularity": 0.860928000213037, "original_title": "Patch Adams", "budget": 50000000, "cast": [{"name": "Robin Williams", "character": "Hunter 'Patch' Adams", "id": 2157, "credit_id": "52fe43579251416c7500ca11", "cast_id": 11, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Mitch Roman", "id": 1233, "credit_id": "52fe43579251416c7500ca15", "cast_id": 12, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Dean Walcott", "id": 4029, "credit_id": "52fe43579251416c7500ca19", "cast_id": 13, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "Peter Coyote", "character": "Bill Davis", "id": 9979, "credit_id": "52fe43579251416c7500ca1d", "cast_id": 14, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 3}, {"name": "Michael Jeter", "character": "Rudy", "id": 2169, "credit_id": "52fe43579251416c7500ca21", "cast_id": 15, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 4}, {"name": "Monica Potter", "character": "Carin", "id": 2140, "credit_id": "52fe43579251416c7500ca25", "cast_id": 16, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 5}, {"name": "Harve Presnell", "character": "Dean Anderson", "id": 3907, "credit_id": "52fe43579251416c7500ca29", "cast_id": 17, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 6}, {"name": "Daniel London", "character": "Truman", "id": 95604, "credit_id": "52fe43579251416c7500ca2d", "cast_id": 18, "profile_path": "/yX7Nga9EYG1ejlRFRV5wbZBM60W.jpg", "order": 7}, {"name": "Josef Sommer", "character": "Dr. Eaton", "id": 14792, "credit_id": "52fe43579251416c7500ca31", "cast_id": 19, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 8}, {"name": "Irma P. Hall", "character": "Joletta", "id": 43853, "credit_id": "52fe43579251416c7500ca35", "cast_id": 20, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 9}, {"name": "Frances Lee McCain", "character": "Judy", "id": 1070, "credit_id": "52fe43579251416c7500ca39", "cast_id": 21, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 10}, {"name": "Daniella Kuhn", "character": "Adelane", "id": 198772, "credit_id": "52fe43579251416c7500ca3d", "cast_id": 22, "profile_path": "/kc7soeWGkiHcA3KtdGbyar44ugZ.jpg", "order": 11}, {"name": "James Greene", "character": "Bile", "id": 43544, "credit_id": "52fe43579251416c7500ca41", "cast_id": 23, "profile_path": "/kaNlGbXykxy7xyQY1sQzUDjXiUz.jpg", "order": 12}, {"name": "Harold Gould", "character": "Arthur Mendelson", "id": 14833, "credit_id": "52fe43579251416c7500ca45", "cast_id": 24, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 13}, {"name": "Bruce Bohne", "character": "Trevor Beene", "id": 155861, "credit_id": "52fe43579251416c7500ca49", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Harry Groener", "character": "Dr. Prack", "id": 35518, "credit_id": "52fe43579251416c7500ca4d", "cast_id": 26, "profile_path": "/y9Z0ZIbFDwe7V7PQEMeCyTld3zM.jpg", "order": 15}, {"name": "Barry Shabaka Henley", "character": "Emmet", "id": 8689, "credit_id": "52fe43579251416c7500ca51", "cast_id": 27, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 16}, {"name": "Steven Anthony Jones", "character": "Charlie", "id": 176386, "credit_id": "52fe43579251416c7500ca55", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Richard Kiley", "character": "Dr. Titan", "id": 26660, "credit_id": "52fe43579251416c7500ca59", "cast_id": 29, "profile_path": "/jqyhpE74uT5F2H1Ey8LllbKpdAK.jpg", "order": 18}, {"name": "Douglas Roberts", "character": "Larry", "id": 82585, "credit_id": "52fe43579251416c7500ca5d", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Ellen Dow", "character": "Aggie", "id": 85171, "credit_id": "52fe43579251416c7500ca61", "cast_id": 31, "profile_path": "/suREaXoLKSBhJPsMXnD6P0EnGXf.jpg", "order": 20}, {"name": "Alan Tudyk", "character": "Everton", "id": 21088, "credit_id": "52fe43579251416c7500ca65", "cast_id": 32, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 21}, {"name": "Ryan Hurst", "character": "Neil", "id": 43858, "credit_id": "52fe43579251416c7500ca69", "cast_id": 33, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 22}, {"name": "Peter Siteri", "character": "Chess Man", "id": 1077966, "credit_id": "52fe43579251416c7500ca6d", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Don West", "character": "Instructor", "id": 194571, "credit_id": "52fe43579251416c7500ca71", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Greg Sestero", "character": "Jaime (Monica Potter's brother)", "id": 81918, "credit_id": "52ffc7839251416ae10c30fb", "cast_id": 36, "profile_path": "/nAVfXdOL9n4PoYi0KDRj1rpGzFW.jpg", "order": 25}, {"name": "Jason Aaron Baca", "character": "Patch Pirate", "id": 1363928, "credit_id": "5415a3430e0a261c2e00210d", "cast_id": 37, "profile_path": "/uHoqZxmyVYocSDCk1tX5EkSr6Da.jpg", "order": 26}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500c9d7", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 7.1, "runtime": 115}, "10313": {"poster_path": "/ddkZVyIKO85CL4P2qTj6G6liAMg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68729358, "overview": "A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.", "video": false, "id": 10313, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10752, "name": "War"}], "title": "The Men Who Stare at Goats", "tagline": "No goats. No glory.", "vote_count": 216, "homepage": "http://www.themenwhostareatgoatsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1234548", "adult": false, "backdrop_path": "/rmg1iMCveruz7mQaY28gPvD0I23.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Smoke House", "id": 1782}], "release_date": "2009-11-05", "popularity": 1.50246232521188, "original_title": "The Men Who Stare at Goats", "budget": 24000000, "cast": [{"name": "George Clooney", "character": "Lyn Cassady", "id": 1461, "credit_id": "52fe43579251416c7500ca95", "cast_id": 3, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Bob Wilton", "id": 3061, "credit_id": "52fe43579251416c7500ca9f", "cast_id": 5, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Jeff Bridges", "character": "Bill Django", "id": 1229, "credit_id": "52fe43579251416c7500caa3", "cast_id": 6, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 2}, {"name": "Kevin Spacey", "character": "Larry Hooper", "id": 1979, "credit_id": "52fe43579251416c7500caa7", "cast_id": 7, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 3}, {"name": "Robert Patrick", "character": "Todd Nixon", "id": 418, "credit_id": "52fe43579251416c7500caab", "cast_id": 8, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 4}, {"name": "Stephen Lang", "character": "Brigadier General Dean Hopgood", "id": 32747, "credit_id": "52fe43579251416c7500caaf", "cast_id": 9, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 5}], "directors": [{"name": "Grant Heslov", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500ca8b", "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "id": 31511}], "vote_average": 5.8, "runtime": 93}, "2122": {"poster_path": "/pc2xIaRjmOxBiVqluPISzHRTKSr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"The Tulip\" Tudeski now spends his days compulsively cleaning his house and perfecting his culinary skills with his wife, Jill, a purported assassin who has yet to pull off a clean hit. Suddenly, an uninvited and unwelcome connection to their past unexpectedly shows up on Jimmy and Jill's doorstep: it's Oz, and he's begging them to help him rescue his wife Cynthia.", "video": false, "id": 2122, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Whole Ten Yards", "tagline": "They missed each other. This time, their aim is better.", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ttaiuuOHjYLTszcbADBZImqRK5H.jpg", "poster_path": "/m6tkyCcOm4wzklAvsT0jyaM5mgY.jpg", "id": 103577, "name": "The Whole Nine Yards Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0327247", "adult": false, "backdrop_path": "/A4iX2LXAhJwMtBER8T2ewgITXsK.jpg", "production_companies": [{"name": "Nine Yards Two Productions", "id": 51771}, {"name": "Nine Yards Productions", "id": 51772}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Franchise Pictures", "id": 1403}, {"name": "MHF Zweite Academy Film", "id": 8848}, {"name": "Eclipse Catering", "id": 23787}], "release_date": "2004-04-08", "popularity": 0.602456943965894, "original_title": "The Whole Ten Yards", "budget": 0, "cast": [{"name": "Bruce Willis", "character": "Jimmy", "id": 62, "credit_id": "52fe4338c3a36847f80436b1", "cast_id": 15, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Matthew Perry", "character": "Oz", "id": 14408, "credit_id": "52fe4338c3a36847f80436b5", "cast_id": 16, "profile_path": "/hkszOdJc14ULRdsy7JnRAvlrbCY.jpg", "order": 1}, {"name": "Amanda Peet", "character": "Jill", "id": 2956, "credit_id": "52fe4338c3a36847f80436b9", "cast_id": 17, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 2}, {"name": "Kevin Pollak", "character": "Lazlo", "id": 7166, "credit_id": "52fe4338c3a36847f80436bd", "cast_id": 18, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 3}, {"name": "Frank Collison", "character": "Strabo", "id": 1479, "credit_id": "52fe4338c3a36847f80436c1", "cast_id": 20, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 4}, {"name": "Johnny Messner", "character": "Zevo", "id": 21798, "credit_id": "52fe4338c3a36847f80436c5", "cast_id": 21, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 5}, {"name": "Natasha Henstridge", "character": "Cynthia", "id": 57395, "credit_id": "52fe4338c3a36847f80436c9", "cast_id": 23, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 6}, {"name": "Tasha Smith", "character": "Julie", "id": 74610, "credit_id": "52fe4338c3a36847f80436cd", "cast_id": 24, "profile_path": "/9WOYRySKNSnlDTiREXHEQbWHJTv.jpg", "order": 7}], "directors": [{"name": "Howard Deutch", "department": "Directing", "job": "Director", "credit_id": "52fe4338c3a36847f804365f", "profile_path": "/68Vae1HkU1NxQZ6KEmuxIpno7c9.jpg", "id": 26502}], "vote_average": 5.8, "runtime": 98}, "10315": {"poster_path": "/3lVrR9K9vd68vYy8tZum2fVn5BP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Fantastic Mr. Fox bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.", "video": false, "id": 10315, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Fantastic Mr. Fox", "tagline": "Dig the life fantastic!", "vote_count": 335, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0432283", "adult": false, "backdrop_path": "/uxQ1n8yLqRZgnrimiBXJ5rsaa.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2009-11-13", "popularity": 1.11050572485591, "original_title": "Fantastic Mr. Fox", "budget": 0, "cast": [{"name": "George Clooney", "character": "Mr. Fox (voice)", "id": 1461, "credit_id": "52fe43589251416c7500cb83", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Mrs. Fox (voice)", "id": 5064, "credit_id": "52fe43589251416c7500cb87", "cast_id": 5, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Jason Schwartzman", "character": "Ash (voice)", "id": 17881, "credit_id": "52fe43589251416c7500cb8b", "cast_id": 6, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 2}, {"name": "Bill Murray", "character": "Badger (voice)", "id": 1532, "credit_id": "52fe43589251416c7500cb8f", "cast_id": 7, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Wallace Wolodarsky", "character": "Kylie (voice) (as Wally Wolodarsky)", "id": 486, "credit_id": "52fe43589251416c7500cb93", "cast_id": 8, "profile_path": "/dvmEq92L4UwL20uO2BOQ8vnpPBP.jpg", "order": 4}, {"name": "Eric Chase Anderson", "character": "Kristofferson (voice) (as Eric Anderson)", "id": 1332415, "credit_id": "53a4cd6a0e0a261449000426", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Michael Gambon", "character": "Franklin Bean (voice)", "id": 5658, "credit_id": "52fe43589251416c7500cb97", "cast_id": 9, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Willem Dafoe", "character": "Rat (voice)", "id": 5293, "credit_id": "52fe43589251416c7500cb9b", "cast_id": 10, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 7}, {"name": "Owen Wilson", "character": "Coach Skip (voice)", "id": 887, "credit_id": "52fe43589251416c7500cb9f", "cast_id": 11, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 8}, {"name": "Jarvis Cocker", "character": "Petey (voice)", "id": 107170, "credit_id": "52fe43589251416c7500cba3", "cast_id": 12, "profile_path": "/smJVxtorc3yZHcKo2OQHXG3caQt.jpg", "order": 9}, {"name": "Wes Anderson", "character": "Weasel (voice)", "id": 5655, "credit_id": "52fe43589251416c7500cba7", "cast_id": 13, "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "order": 10}, {"name": "Karen Duffy", "character": "Linda Otter (voice)", "id": 76131, "credit_id": "52fe43589251416c7500cbab", "cast_id": 14, "profile_path": "/c3G9gFCbBf6zHRQTqUZjXYgZUh4.jpg", "order": 11}, {"name": "Robin Hurlstone", "character": "Walter Boggis (voice)", "id": 1332416, "credit_id": "53a4ce64c3a3687a43000477", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Hugo Guinness", "character": "Nathan Bunce (voice)", "id": 992097, "credit_id": "53a4cede0e0a26143c0004f0", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Helen McCrory", "character": "Mrs. Bean (voice)", "id": 15737, "credit_id": "52fe43589251416c7500cbaf", "cast_id": 15, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 14}, {"name": "Roman Coppola", "character": "Squirrel Contractor (voice)", "id": 38803, "credit_id": "52fe43589251416c7500cbb3", "cast_id": 16, "profile_path": "/enVWg7QHchGcWmWYRu0iohM6SFg.jpg", "order": 15}, {"name": "Juman Malouf", "character": "Agnes (voice)", "id": 1332418, "credit_id": "53a4cf3b0e0a261436000470", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Jeremy Dawson", "character": "Beaver's Son (voice)", "id": 1004835, "credit_id": "53a4cf7e0e0a2614450004ab", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Garth Jennings", "character": "Bean's Son (voice)", "id": 52842, "credit_id": "52fe43589251416c7500cbb7", "cast_id": 17, "profile_path": "/ahQh5uW5CXLe1LotxN4Y20aj5Gx.jpg", "order": 18}, {"name": "Brian Cox", "character": "Action 12 Reporter (voice)", "id": 1248, "credit_id": "52fe43589251416c7500cbbb", "cast_id": 18, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 19}, {"name": "Tristan Oliver", "character": "Explosives Man (voice)", "id": 53331, "credit_id": "53a4d031c3a3687a3a0003e4", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "James Hamilton", "character": "Mole (voice)", "id": 1332423, "credit_id": "53a4d061c3a3687a310004e3", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Steven M. Rales", "character": "Beaver (voice) (as Steven Rales)", "id": 1004836, "credit_id": "53a4d0c2c3a3687a310004f4", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Rob Hersov", "character": "Pilot (voice)", "id": 1332426, "credit_id": "53a4d0d5c3a3687a370004a0", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Jennifer Furches", "character": "Dr. Badger (voice)", "id": 1332428, "credit_id": "53a4d10ac3a3687a2e0004ae", "cast_id": 29, "profile_path": null, "order": 24}, {"name": "Allison Abbate", "character": "Rabbit's Ex-Girlfriend (voice)", "id": 34894, "credit_id": "5488de23c3a3686f5500032a", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Molly Cooper", "character": "Rabbit Girl (voice)", "id": 1332433, "credit_id": "53a4d160c3a3687a2b000506", "cast_id": 31, "profile_path": null, "order": 26}, {"name": "Adrien Brody", "character": "Field Mouse (voice)", "id": 3490, "credit_id": "52fe43589251416c7500cbbf", "cast_id": 19, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 27}, {"name": "Mario Batali", "character": "Rabbit (voice)", "id": 146747, "credit_id": "53a4d191c3a3687a370004b8", "cast_id": 32, "profile_path": "/ryTLhqtjQkT3LfZ4UYRoGqBpxpg.jpg", "order": 28}, {"name": "Martin Ballard", "character": "Fire Chief (voice)", "id": 1332434, "credit_id": "53a4d1a0c3a3687a4000046a", "cast_id": 33, "profile_path": null, "order": 29}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500cb73", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.3, "runtime": 87}, "67660": {"poster_path": "/4tK8k1YbF58nEMW76bnm76jWpnZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96000000, "overview": "Four friends conspire to turn the tables on their women when they discover the ladies have been using Steve Harvey's relationship advice against them.", "video": false, "id": 67660, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Think Like a Man", "tagline": "Let the mind games begin", "vote_count": 75, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hCRM2diNsHt60vopldseJJ6o1Rr.jpg", "id": 239430, "name": "Think Like a Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1621045", "adult": false, "backdrop_path": "/rjjeKcJ0gw3wu1aNqg1sEvBaABc.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Rainforest Films", "id": 1309}], "release_date": "2012-04-20", "popularity": 0.705849220569431, "original_title": "Think Like a Man", "budget": 12000000, "cast": [{"name": "Taraji P. Henson", "character": "Lauren", "id": 40036, "credit_id": "52fe4770c3a368484e0c7045", "cast_id": 4, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 0}, {"name": "Gabrielle Union", "character": "Kristen", "id": 17773, "credit_id": "52fe4770c3a368484e0c7049", "cast_id": 5, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 1}, {"name": "Michael Ealy", "character": "Dominic", "id": 8177, "credit_id": "52fe4770c3a368484e0c704d", "cast_id": 6, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 2}, {"name": "Kevin Hart", "character": "Cedric", "id": 55638, "credit_id": "52fe4770c3a368484e0c7051", "cast_id": 7, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 3}, {"name": "Chris Brown", "character": "Alex", "id": 31136, "credit_id": "52fe4770c3a368484e0c7055", "cast_id": 8, "profile_path": "/4k8sacCMG9jI2jo7x5XVSzq2Mnt.jpg", "order": 4}, {"name": "Arielle Kebbel", "character": "Gina", "id": 20373, "credit_id": "52fe4770c3a368484e0c7059", "cast_id": 9, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 5}, {"name": "Jerry Ferrara", "character": "Jeremy", "id": 98953, "credit_id": "52fe4770c3a368484e0c705d", "cast_id": 10, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 6}, {"name": "Meagan Good", "character": "Mya", "id": 22122, "credit_id": "52fe4770c3a368484e0c7061", "cast_id": 11, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 7}, {"name": "Regina Hall", "character": "Candace", "id": 35705, "credit_id": "52fe4770c3a368484e0c7065", "cast_id": 12, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 8}, {"name": "Terrence Jenkins", "character": "Michael", "id": 143242, "credit_id": "52fe4770c3a368484e0c7069", "cast_id": 13, "profile_path": "/h9hYAsDHevmr3mHFpP8CbsX0BUA.jpg", "order": 9}, {"name": "Jenifer Lewis", "character": "Loretta", "id": 15899, "credit_id": "52fe4770c3a368484e0c706d", "cast_id": 14, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 10}, {"name": "Romany Malco", "character": "Zeke", "id": 71530, "credit_id": "52fe4770c3a368484e0c7071", "cast_id": 15, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 11}, {"name": "Gary Owen", "character": "Bennett", "id": 214108, "credit_id": "52fe4770c3a368484e0c7075", "cast_id": 16, "profile_path": "/419tCojrRrEDhINC38wXuiUOTC4.jpg", "order": 12}, {"name": "La La Anthony", "character": "Sonia", "id": 1034453, "credit_id": "52fe4770c3a368484e0c7079", "cast_id": 17, "profile_path": "/aejPE9ZCj0SMWO9ovjYKk0Uuyff.jpg", "order": 13}, {"name": "Sherri Shepherd", "character": "Vicki", "id": 109561, "credit_id": "52fe4770c3a368484e0c707d", "cast_id": 20, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 14}, {"name": "Wendy Williams", "character": "Gail", "id": 540281, "credit_id": "52fe4770c3a368484e0c7081", "cast_id": 21, "profile_path": "/s7zL8AawUQhN95Bcnbw2n6M5NOc.jpg", "order": 15}, {"name": "Jessica Camacho", "character": "Melissa", "id": 1030995, "credit_id": "52fe4770c3a368484e0c70a9", "cast_id": 28, "profile_path": "/51pVkQBx30Pn0ScWXCtJSyVb75N.jpg", "order": 16}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4770c3a368484e0c70a5", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 6.6, "runtime": 122}, "10320": {"poster_path": "/fuCino2dZ5i7WwnzGxAUV1MrmRA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A female journalist (Naomi Watts) must prevent evil Samara from taking possession of her son's (David Dorfman) soul.", "video": false, "id": 10320, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Ring Two", "tagline": "The dead don't sleep.", "vote_count": 94, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/xk4Yrpz00gxitMLCLCUVOjvmkOq.jpg", "id": 14563, "name": "The Ring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377109", "adult": false, "backdrop_path": "/tidW5tNNP99fIxbG3slm5ZnjYEq.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "BenderSpink", "id": 6363}, {"name": "MacDonald/Parkes Productions", "id": 384}], "release_date": "2005-03-17", "popularity": 0.603405240620078, "original_title": "The Ring Two", "budget": 0, "cast": [{"name": "Naomi Watts", "character": "Rachel Keller", "id": 3489, "credit_id": "52fe43589251416c7500cdf7", "cast_id": 10, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Simon Baker", "character": "Max Rourke", "id": 1284159, "credit_id": "52fe43599251416c7500ce33", "cast_id": 27, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 1}, {"name": "Elizabeth Perkins", "character": "Dr. Emma Temple", "id": 20, "credit_id": "52fe43589251416c7500cdfb", "cast_id": 13, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 2}, {"name": "David Dorfman", "character": "Aidan Keller", "id": 26292, "credit_id": "52fe43589251416c7500cdff", "cast_id": 14, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 3}, {"name": "Gary Cole", "character": "Martin Savide", "id": 21163, "credit_id": "52fe43599251416c7500ce03", "cast_id": 15, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Sissy Spacek", "character": "Evelyn", "id": 5606, "credit_id": "52fe43599251416c7500ce07", "cast_id": 16, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 5}, {"name": "Ryan Merriman", "character": "Jake", "id": 57136, "credit_id": "52fe43599251416c7500ce0b", "cast_id": 17, "profile_path": "/sdo2IMtBRjiIJOLpmBrebAJaF89.jpg", "order": 6}, {"name": "Emily VanCamp", "character": "Emily", "id": 84247, "credit_id": "52fe43599251416c7500ce0f", "cast_id": 18, "profile_path": "/2nBBndedoyJvuDaUwZ1nNgip6Tn.jpg", "order": 7}, {"name": "Kelly Overton", "character": "Betsy", "id": 61829, "credit_id": "52fe43599251416c7500ce13", "cast_id": 19, "profile_path": "/z4ConG73glBC7RJPOUvClLlb0k5.jpg", "order": 8}, {"name": "James Lesure", "character": "Doctor", "id": 155743, "credit_id": "52fe43599251416c7500ce17", "cast_id": 20, "profile_path": "/nDpg0Muebx45YUDM7ROywgVVxeZ.jpg", "order": 9}, {"name": "Daveigh Chase", "character": "Samara (archive footage)", "id": 1580, "credit_id": "52fe43599251416c7500ce1b", "cast_id": 21, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 10}, {"name": "Kelly Stables", "character": "Evil Samara", "id": 107791, "credit_id": "52fe43599251416c7500ce1f", "cast_id": 22, "profile_path": "/vw7kfaITPSFNwQrDMrubNOt7uuZ.jpg", "order": 11}, {"name": "Cooper Thornton", "character": "Father of Emily", "id": 162828, "credit_id": "52fe43599251416c7500ce23", "cast_id": 23, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 12}, {"name": "Marilyn McIntyre", "character": "Mother of Emily", "id": 167098, "credit_id": "52fe43599251416c7500ce27", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Jesse Burch", "character": "Male Reporter", "id": 169672, "credit_id": "52fe43599251416c7500ce2b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Mary Elizabeth Winstead", "character": "Young Evelyn", "id": 17628, "credit_id": "52fe43599251416c7500ce2f", "cast_id": 26, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 15}], "directors": [{"name": "Hideo Nakata", "department": "Directing", "job": "Director", "credit_id": "52fe43589251416c7500cdc3", "profile_path": "/fQ3XJXTNpxzt6gMpMM0pJOyuibA.jpg", "id": 26875}], "vote_average": 5.6, "runtime": 110}, "10323": {"poster_path": "/75OBW467vx8ceJMSRK4NhOXk5Rc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41092328, "overview": "To win the right to marry his love, the beautiful princess Andromeda, and fulfil his destiny, Perseus must complete various tasks including taming Pegasus, capturing Medusa's head, and battling the Kraken monster.", "video": false, "id": 10323, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Clash of the Titans", "tagline": "You will feel the power. Live the adventure. Experience the fantastic.", "vote_count": 53, "homepage": "http://www.warnervideo.com/clashofthetitans1981/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082186", "adult": false, "backdrop_path": "/5xh0qSAIBnE4RlntpjlVUAWKObn.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Peerford Ltd.", "id": 8846}], "release_date": "1981-06-12", "popularity": 0.395131987358523, "original_title": "Clash of the Titans", "budget": 15000000, "cast": [{"name": "Laurence Olivier", "character": "Zeus", "id": 3359, "credit_id": "52fe43599251416c7500cf0f", "cast_id": 1, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 0}, {"name": "Claire Bloom", "character": "Hera", "id": 29545, "credit_id": "52fe43599251416c7500cf13", "cast_id": 2, "profile_path": "/4x0Cfh1g8apqOPio8AJx9oUV9mK.jpg", "order": 1}, {"name": "Maggie Smith", "character": "Thetis", "id": 10978, "credit_id": "52fe43599251416c7500cf17", "cast_id": 3, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 2}, {"name": "Jack Gwillim", "character": "Poseidon", "id": 13331, "credit_id": "52fe43599251416c7500cf1b", "cast_id": 4, "profile_path": "/6NOuBVu9fSWObuONEfuCtWfViBJ.jpg", "order": 3}, {"name": "Harry Hamlin", "character": "Perseus", "id": 64825, "credit_id": "52fe43599251416c7500cf2b", "cast_id": 7, "profile_path": "/1GyWuD8en3R7geCakmvzCRyvKod.jpg", "order": 4}, {"name": "Ursula Andress", "character": "Aphrodite", "id": 9871, "credit_id": "52fe43599251416c7500cf53", "cast_id": 14, "profile_path": "/omY7AbTTKODYR730aHtB9UNaGM0.jpg", "order": 5}, {"name": "Burgess Meredith", "character": "Ammon", "id": 16523, "credit_id": "52fe43599251416c7500cf57", "cast_id": 15, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 6}, {"name": "Susan Fleetwood", "character": "Athena", "id": 87415, "credit_id": "52fe43599251416c7500cf5b", "cast_id": 16, "profile_path": "/sOcuuRW1sr9DIxvTIpPb30JBKY5.jpg", "order": 7}, {"name": "Pat Roach", "character": "Hephaestus", "id": 10942, "credit_id": "52fe43599251416c7500cf5f", "cast_id": 17, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 8}, {"name": "Judi Bowker", "character": "Andromeda", "id": 26256, "credit_id": "52fe43599251416c7500cf63", "cast_id": 18, "profile_path": "/yo92o0WES6AGcPbQKMDbRmANV4G.jpg", "order": 9}, {"name": "Si\u00e2n Phillips", "character": "Cassiopeia", "id": 12522, "credit_id": "52fe43599251416c7500cf67", "cast_id": 19, "profile_path": "/dihKDaexR40FUl4GGaoDb2RBhVx.jpg", "order": 10}, {"name": "Flora Robson", "character": "A Stygian Witch", "id": 30126, "credit_id": "52fe43599251416c7500cf6b", "cast_id": 20, "profile_path": "/oNESDzVvnZbQx4aAEEVUXOKCS21.jpg", "order": 11}, {"name": "Anna Manahan", "character": "A Stygian Witch", "id": 975564, "credit_id": "52fe43599251416c7500cf6f", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Freda Jackson", "character": "A Stygian Witch", "id": 39002, "credit_id": "52fe43599251416c7500cf73", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Tim Pigott-Smith", "character": "Thallo", "id": 11276, "credit_id": "52fe43599251416c7500cf77", "cast_id": 23, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 14}, {"name": "Neil McCarthy", "character": "Calibos", "id": 2601, "credit_id": "52fe43599251416c7500cf7b", "cast_id": 24, "profile_path": "/sNQxZARN2qUtNzL28oyJnmuZWGe.jpg", "order": 15}, {"name": "Donald Houston", "character": "Acrisius", "id": 38358, "credit_id": "52fe43599251416c7500cf7f", "cast_id": 25, "profile_path": "/yyMettco7cwI341gCc6JLm0shRq.jpg", "order": 16}, {"name": "Vida Taylor", "character": "Danae", "id": 955663, "credit_id": "52fe43599251416c7500cf83", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Harry Jones", "character": "Huntsman", "id": 121112, "credit_id": "52fe43599251416c7500cf87", "cast_id": 27, "profile_path": null, "order": 18}], "directors": [{"name": "Desmond Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43599251416c7500cf21", "profile_path": null, "id": 64823}], "vote_average": 6.9, "runtime": 118}, "2133": {"poster_path": "/uARMPDyjiENKyUz7JRmQmLCH8L5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 325756637, "overview": "In October 1991, a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail. Magnificent foreshadowing and anticipation fill this true-life drama while minute details of the fishing boats, their gear and the weather are juxtaposed with the sea adventure.", "video": false, "id": 2133, "genres": [{"id": 18, "name": "Drama"}], "title": "The Perfect Storm", "tagline": "The storm is coming.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0177971", "adult": false, "backdrop_path": "/ht1Sgx744CIYeFgsZTdwwK70HyO.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Baltimore Spring Creek Productions", "id": 16061}, {"name": "Radiant Productions", "id": 18990}], "release_date": "2000-06-26", "popularity": 1.50515829265432, "original_title": "The Perfect Storm", "budget": 120000000, "cast": [{"name": "George Clooney", "character": "Capt. Billy Tyne", "id": 1461, "credit_id": "52fe4339c3a36847f8043acb", "cast_id": 16, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Bobby Shatford", "id": 13240, "credit_id": "52fe4339c3a36847f8043acf", "cast_id": 17, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Diane Lane", "character": "Christina \" Chris \" Cotter", "id": 2882, "credit_id": "52fe4339c3a36847f8043ad3", "cast_id": 18, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 2}, {"name": "John C. Reilly", "character": "Dale \" Murp \" Murphy", "id": 4764, "credit_id": "52fe4339c3a36847f8043ad7", "cast_id": 19, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 3}, {"name": "William Fichtner", "character": "David \" Sully \" Sullivan", "id": 886, "credit_id": "52fe4339c3a36847f8043adb", "cast_id": 20, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 4}, {"name": "Bob Gunton", "character": "Alexander McAnally III", "id": 4029, "credit_id": "52fe4339c3a36847f8043adf", "cast_id": 21, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 5}, {"name": "Karen Allen", "character": "Melissa Brown", "id": 650, "credit_id": "52fe4339c3a36847f8043ae3", "cast_id": 22, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 6}, {"name": "Allen Payne", "character": "Alfred Pierre", "id": 32486, "credit_id": "52fe4339c3a36847f8043ae7", "cast_id": 24, "profile_path": "/yKbFOE7R0PwyKVUDJyuChXUNB8r.jpg", "order": 7}, {"name": "Mary Elizabeth Mastrantonio", "character": "Linda Greenlaw", "id": 1161, "credit_id": "52fe4339c3a36847f8043aeb", "cast_id": 25, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 8}, {"name": "John Hawkes", "character": "Mike 'Bugsy' Moran", "id": 16861, "credit_id": "52fe4339c3a36847f8043aef", "cast_id": 26, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 9}, {"name": "Cherry Jones", "character": "Edie Bailey", "id": 1956, "credit_id": "52fe4339c3a36847f8043af3", "cast_id": 27, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 10}, {"name": "Christopher McDonald", "character": "Todd Gross", "id": 4443, "credit_id": "52fe4339c3a36847f8043af7", "cast_id": 28, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 11}, {"name": "Michael Ironside", "character": "Bob Brown", "id": 11086, "credit_id": "52fe4339c3a36847f8043afb", "cast_id": 29, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 12}, {"name": "Rusty Schwimmer", "character": "Irene 'Big Red' Johnson", "id": 34407, "credit_id": "52fe4339c3a36847f8043aff", "cast_id": 30, "profile_path": "/5syOxoKZboIDq5r5cQCfOpDyaoQ.jpg", "order": 13}, {"name": "Janet Wright", "character": "Ethel Shatford", "id": 106460, "credit_id": "52fe4339c3a36847f8043b03", "cast_id": 31, "profile_path": "/8MC9PGDb0lqKbpwwUfTzNxE8k9P.jpg", "order": 14}, {"name": "Dash Mihok", "character": "Sgt. Jeremy Mitchell", "id": 6066, "credit_id": "52fe4339c3a36847f8043b07", "cast_id": 32, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 15}, {"name": "Josh Hopkins", "character": "Capt. Darryl Ennis", "id": 31532, "credit_id": "52fe4339c3a36847f8043b0b", "cast_id": 33, "profile_path": "/4FF6p6G6SAUDJcfOx6GSFQrfTfq.jpg", "order": 16}, {"name": "Todd Kimsey", "character": "Lt. Rob Pettit", "id": 170805, "credit_id": "52fe4339c3a36847f8043b0f", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Chris Palermo", "character": "Flight Engineer Borgers", "id": 35546, "credit_id": "52fe4339c3a36847f8043b13", "cast_id": 35, "profile_path": "/tt6esR3LjJ3XOVknYzCTXdHtpii.jpg", "order": 18}, {"name": "Wiley M. Pickett", "character": "Sgt. Millard Jones", "id": 104191, "credit_id": "52fe4339c3a36847f8043b17", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Hayden Tank", "character": "Dale Murphy, Jr.", "id": 156927, "credit_id": "52fe4339c3a36847f8043b1b", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Merle Kennedy", "character": "Debra Murphy", "id": 105000, "credit_id": "52fe4339c3a36847f8043b1f", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Jennifer Sommerfeld", "character": "Alfred Pierre's Girlfriend", "id": 37624, "credit_id": "52fe4339c3a36847f8043b23", "cast_id": 39, "profile_path": "/wxLnDRYapdJIcUbWd7rFzSJdFzk.jpg", "order": 22}, {"name": "Joseph D. Reitman", "character": "Douglas Kosco", "id": 58620, "credit_id": "52fe4339c3a36847f8043b27", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Sandy Ward", "character": "Quentin - The Old Timer", "id": 102823, "credit_id": "52fe4339c3a36847f8043b2b", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Melissa Samuels", "character": "Pam - Todd Gross' Assistant", "id": 177621, "credit_id": "52fe4339c3a36847f8043b2f", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Steven Barr", "character": "Commander Brudnicki", "id": 26994, "credit_id": "52fe4339c3a36847f8043b33", "cast_id": 43, "profile_path": null, "order": 26}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe4339c3a36847f8043a73", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 6.0, "runtime": 130}, "10326": {"poster_path": "/AvkLZ5EqehwUlJD93ZeobesDmHB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128000000, "overview": "A 1939 test pilot asks his best friend to use him as a guinea pig for a cryogenics experiment. Daniel McCormick wants to be frozen for a year so that he doesn't have to watch his love lying in a coma. The next thing Daniel knows is that he's been awoken in 1992.", "video": false, "id": 10326, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Forever Young", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104291", "adult": false, "backdrop_path": "/5EYLPXzlU2phGotXqW1qAE9bGnh.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Icon Entertainment International", "id": 4564}], "release_date": "1992-12-16", "popularity": 0.431187129173771, "original_title": "Forever Young", "budget": 0, "cast": [{"name": "Mel Gibson", "character": "Capt. Daniel McCormick", "id": 2461, "credit_id": "52fe43599251416c7500d025", "cast_id": 7, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Claire Cooper", "id": 8944, "credit_id": "52fe43599251416c7500d029", "cast_id": 8, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Nat Cooper", "id": 109, "credit_id": "52fe43599251416c7500d02d", "cast_id": 9, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Isabel Glasser", "character": "Helen", "id": 64826, "credit_id": "52fe43599251416c7500d031", "cast_id": 10, "profile_path": "/fPSHD9NUMLges3NDex1NTsQgasC.jpg", "order": 3}, {"name": "George Wendt", "character": "Harry Finley", "id": 66606, "credit_id": "52fe43599251416c7500d03b", "cast_id": 12, "profile_path": "/lSdmC56kCl08Wr8wEE8ff2KXrhr.jpg", "order": 4}, {"name": "Joe Morton", "character": "Cameron", "id": 3977, "credit_id": "52fe43599251416c7500d03f", "cast_id": 13, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "Nicolas Surovy", "character": "John", "id": 82433, "credit_id": "52fe43599251416c7500d043", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "David Marshall Grant", "character": "Lt. Col. Wilcox USAF", "id": 24535, "credit_id": "52fe43599251416c7500d047", "cast_id": 15, "profile_path": "/tKe6LIoceX8738rIELToYMuefCH.jpg", "order": 7}, {"name": "Robert Hy Gorman", "character": "Felix", "id": 84598, "credit_id": "52fe43599251416c7500d04b", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Michael A. Goorjian", "character": "Steven", "id": 49424, "credit_id": "5516cab79251416f0a000114", "cast_id": 48, "profile_path": "/y8yhMiLlNDnaxGpDkhHaj18gtAS.jpg", "order": 9}, {"name": "Veronica Lauren", "character": "Alice", "id": 76031, "credit_id": "5516cada9251416f12000126", "cast_id": 49, "profile_path": null, "order": 10}, {"name": "Art LaFleur", "character": "Alice's Father", "id": 44792, "credit_id": "5516cb03c3a36862f900012b", "cast_id": 50, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 11}, {"name": "Eric Pierpoint", "character": "Fred", "id": 155996, "credit_id": "5516cb25c3a36862f9000131", "cast_id": 51, "profile_path": "/ve5RokAerAN3H5wgobvI5KIobdL.jpg", "order": 12}, {"name": "Walton Goggins", "character": "Gate MP", "id": 27740, "credit_id": "5516cb4c9251416f04000152", "cast_id": 52, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 13}, {"name": "Amanda Foreman", "character": "Debbie", "id": 13024, "credit_id": "5516cb6bc3a36862f3000151", "cast_id": 53, "profile_path": "/fitfsjRoC2i8YocBndcOFOuV7EU.jpg", "order": 14}, {"name": "Karla Tamburrelli", "character": "Blanche Finley", "id": 33491, "credit_id": "5516cb899251416efe000125", "cast_id": 54, "profile_path": "/oJB0bnFcwHgh1ZnbWiszTWjw5Cz.jpg", "order": 15}], "directors": [{"name": "Steve Miner", "department": "Directing", "job": "Director", "credit_id": "52fe43599251416c7500d037", "profile_path": "/yk90jxBifKosxEyP8CITJk1BTtt.jpg", "id": 58712}], "vote_average": 5.8, "runtime": 102}, "2135": {"poster_path": "/elWjfgdsKQbk5E02npdy5Q0Ziee.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123729176, "overview": "Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds humankind divided into two warring races.", "video": false, "id": 2135, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Time Machine", "tagline": "The greatest adventure THROUGH all time!", "vote_count": 157, "homepage": "http://timemachine.countingdown.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0268695", "adult": false, "backdrop_path": "/a1J0zF6k6RYK9Cfp7rllXwUmB4L.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Arnold Leibovit Entertainment", "id": 967}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2002-03-04", "popularity": 0.611837201014824, "original_title": "The Time Machine", "budget": 80000000, "cast": [{"name": "Guy Pearce", "character": "Alexander Hartdegen", "id": 529, "credit_id": "52fe4339c3a36847f8043c55", "cast_id": 17, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Samantha Mumba", "character": "Mara", "id": 97049, "credit_id": "52fe4339c3a36847f8043c71", "cast_id": 25, "profile_path": "/tYN2uZAe0OWHM10epuNk1O74IWh.jpg", "order": 1}, {"name": "Phyllida Law", "character": "Mrs. Watchett", "id": 17787, "credit_id": "52fe4339c3a36847f8043c59", "cast_id": 19, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 2}, {"name": "Laura Kirk", "character": "Flower Seller", "id": 21881, "credit_id": "52fe4339c3a36847f8043c5d", "cast_id": 20, "profile_path": "/s8isCe7huZp1PR5SuSy5e4y8yGb.jpg", "order": 3}, {"name": "Josh Stamberg", "character": "Motorist", "id": 21882, "credit_id": "52fe4339c3a36847f8043c61", "cast_id": 21, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 4}, {"name": "Sienna Guillory", "character": "Emma", "id": 7055, "credit_id": "52fe4339c3a36847f8043c65", "cast_id": 22, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 5}, {"name": "Max Baker", "character": "Roboter", "id": 10960, "credit_id": "52fe4339c3a36847f8043c69", "cast_id": 23, "profile_path": "/v0JLmmMcCG97Kz7xQ8qpj6tNAGj.jpg", "order": 6}, {"name": "Mark Addy", "character": "David Filby", "id": 13633, "credit_id": "52fe4339c3a36847f8043c6d", "cast_id": 24, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 7}, {"name": "Jeremy Irons", "character": "\u00dcber-Morlock", "id": 16940, "credit_id": "52fe4339c3a36847f8043c75", "cast_id": 26, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 8}], "directors": [{"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4339c3a36847f8043bf7", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 5.8, "runtime": 96}, "10328": {"poster_path": "/foIhEPQoqDctfwsHmmYwbNz5A2g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85313124, "overview": "A group of aliens return to earth to take back some cocoons of their people they left behind from an earlier trip. They kept the recovered cocoons in the swimming pool of a house they rented in a small Florida town. Their mission is hampered by a number of old people from an elderly home nearby, who have been secretly using the pool and discovering the unusual power of these cocoons.", "video": false, "id": 10328, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Cocoon", "tagline": "Beyond the innocence of youth, and the wisdom of age, lies the wonder of... Cocoon", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o32F4wuQJPBnP5FVkOGP9DxGYJI.jpg", "poster_path": "/gl5n88EJeVEMVv3rrGsDUUtibHf.jpg", "id": 86307, "name": "Cocoon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088933", "adult": false, "backdrop_path": "/k6UMKqeJ4v749zvQaz2UBDjTNv.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1985-06-21", "popularity": 0.564425457668256, "original_title": "Cocoon", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Jack Bonner", "id": 26472, "credit_id": "52fe435a9251416c7500d163", "cast_id": 14, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Tahnee Welch", "character": "Kitty", "id": 194670, "credit_id": "52fe435a9251416c7500d173", "cast_id": 18, "profile_path": "/2ukOU34TyotPuy8sYNMW4w1kOcX.jpg", "order": 1}, {"name": "Brian Dennehy", "character": "Walter", "id": 6197, "credit_id": "52fe435a9251416c7500d159", "cast_id": 12, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 2}, {"name": "Don Ameche", "character": "Arthur Selwyn", "id": 18156, "credit_id": "52fe435a9251416c7500d14d", "cast_id": 9, "profile_path": "/nEALranFWJsZoAyNqgLX28kdM9n.jpg", "order": 3}, {"name": "Wilford Brimley", "character": "Benjamin Luckett", "id": 11065, "credit_id": "52fe435a9251416c7500d151", "cast_id": 10, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 4}, {"name": "Hume Cronyn", "character": "Joseph Finley", "id": 7668, "credit_id": "52fe435a9251416c7500d155", "cast_id": 11, "profile_path": "/28X1o4MxUHq4pgyv5VrsdpNSdB4.jpg", "order": 5}, {"name": "Maureen Stapleton", "character": "Mary Luckett", "id": 21151, "credit_id": "52fe435a9251416c7500d167", "cast_id": 15, "profile_path": "/w0H1432eANSJBjk6SG6xOVWnfuW.jpg", "order": 6}, {"name": "Jack Gilford", "character": "Bernie Lefkowitz", "id": 64929, "credit_id": "52fe435a9251416c7500d16b", "cast_id": 16, "profile_path": "/fXrElDPanfn1Trb1kkyK0HEnw9q.jpg", "order": 7}, {"name": "Jessica Tandy", "character": "Alma Finley", "id": 5698, "credit_id": "52fe435a9251416c7500d16f", "cast_id": 17, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 8}, {"name": "Clint Howard", "character": "John Dexter", "id": 15661, "credit_id": "52fe435a9251416c7500d177", "cast_id": 19, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 9}, {"name": "Linda Harrison", "character": "Susan", "id": 13260, "credit_id": "52fe435a9251416c7500d17b", "cast_id": 20, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 10}, {"name": "Gwen Verdon", "character": "Bess McCarthy", "id": 54122, "credit_id": "52fe435a9251416c7500d17f", "cast_id": 21, "profile_path": "/wDs6NbixGiYxXsVZawrWKVGbPZV.jpg", "order": 11}, {"name": "Herta Ware", "character": "Rosie Lefkowitz", "id": 136482, "credit_id": "52fe435a9251416c7500d183", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Barret Oliver", "character": "David", "id": 29508, "credit_id": "52fe435a9251416c7500d187", "cast_id": 23, "profile_path": "/tRcMJl1gNu4KRjnZ7wpENLaJ46Q.jpg", "order": 13}, {"name": "Tyrone Power Jr.", "character": "Pillsbury", "id": 102392, "credit_id": "52fe435a9251416c7500d18b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Clint Howard", "character": "John Dexter", "id": 15661, "credit_id": "52fe435a9251416c7500d18f", "cast_id": 25, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 15}, {"name": "Charles Lampkin", "character": "Pops", "id": 140584, "credit_id": "52fe435a9251416c7500d193", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Mike Nomad", "character": "Doc", "id": 92821, "credit_id": "52fe435a9251416c7500d197", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Jorge Gil", "character": "Lou Pine", "id": 190194, "credit_id": "52fe435a9251416c7500d19b", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "James Ritz", "character": "DMV Clerk", "id": 129466, "credit_id": "52fe435a9251416c7500d19f", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Charles Rainsbury", "character": "Smiley", "id": 1205162, "credit_id": "52fe435a9251416c7500d1a3", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Wendy J. Cooke", "character": "Alien", "id": 1164530, "credit_id": "52fe435a9251416c7500d1a7", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Pamela Prescott", "character": "Alien", "id": 1205163, "credit_id": "52fe435a9251416c7500d1ab", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Dinah Sue Rowley", "character": "Alien", "id": 1205164, "credit_id": "52fe435a9251416c7500d1af", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Gabriella Sinclair", "character": "Alien", "id": 1205165, "credit_id": "52fe435a9251416c7500d1b3", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Cyndi Vicino", "character": "Bank Teller", "id": 1205166, "credit_id": "52fe435a9251416c7500d1b7", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Russ Wheeler", "character": "Doctor", "id": 201224, "credit_id": "52fe435a9251416c7500d1bb", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Harold Bergman", "character": "Reverend", "id": 56039, "credit_id": "52fe435a9251416c7500d1bf", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Ivy Thayer", "character": "Waitress", "id": 39924, "credit_id": "52fe435a9251416c7500d1c3", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Fred Broderson", "character": "Kirk", "id": 1205167, "credit_id": "52fe435a9251416c7500d1c7", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Mark Cheresnick", "character": "Salvatore", "id": 1205168, "credit_id": "52fe435a9251416c7500d1cb", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Bette Shoor", "character": "Realtor", "id": 1205169, "credit_id": "52fe435a9251416c7500d1cf", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Mark Simpson", "character": "Coast Guard First Class BM", "id": 972383, "credit_id": "52fe435a9251416c7500d1d3", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Robert Slacum Jr.", "character": "Coast Guard Second Class BM", "id": 1205170, "credit_id": "52fe435a9251416c7500d1d7", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Rance Howard", "character": "St. Petersburg Dectective", "id": 22250, "credit_id": "53832ad0c3a368737d0038ef", "cast_id": 58, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 34}, {"name": "Jean Speegle Howard", "character": "Woman", "id": 8188, "credit_id": "52fe435a9251416c7500d1df", "cast_id": 45, "profile_path": "/6GxAKydN0p77XI0ixTAJeWFPiRR.jpg", "order": 35}, {"name": "Charles Voelker", "character": "Leader, New Yorkers Dance Band", "id": 1205171, "credit_id": "52fe435a9251416c7500d1e3", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Irving Krone", "character": "Jasper", "id": 1205172, "credit_id": "52fe435a9251416c7500d1e7", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Clarence Thomas", "character": "Policeman", "id": 942263, "credit_id": "52fe435a9251416c7500d1eb", "cast_id": 48, "profile_path": null, "order": 38}, {"name": "Ted Science", "character": "Policeman", "id": 1205173, "credit_id": "52fe435a9251416c7500d1ef", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Jim Fitzpatrick", "character": "Dock Worker (uncredited)", "id": 1205174, "credit_id": "52fe435a9251416c7500d1f3", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Tracy Roberts", "character": "Bar Patron (uncredited)", "id": 93695, "credit_id": "52fe435a9251416c7500d1f7", "cast_id": 57, "profile_path": null, "order": 41}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe435a9251416c7500d15f", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.5, "runtime": 117}, "10330": {"poster_path": "/nFuJqQ1MRTlEJZQhZKDAxET4tJU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jamie Lee Curtis stars as Tess Coleman, mother of 15-year-old Anna (Lindsay Lohan), in this remake of the 1976 Jodie Foster comedy. Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fianc\u00e9 (Mark Harmon). When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.", "video": false, "id": 10330, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Freaky Friday", "tagline": "Mondays are manic. Wednesdays are wild. And Fridays are about to get a little freaky.", "vote_count": 169, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 262995, "name": "Freaky Friday"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0322330", "adult": false, "backdrop_path": "/w6TR7kTsKmlBYps2i5hzoukBLCn.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-08-03", "popularity": 0.984302364031311, "original_title": "Freaky Friday", "budget": 0, "cast": [{"name": "Jamie Lee Curtis", "character": "Tess Coleman", "id": 8944, "credit_id": "52fe435a9251416c7500d2d1", "cast_id": 7, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 0}, {"name": "Lindsay Lohan", "character": "Anna Coleman", "id": 49265, "credit_id": "52fe435a9251416c7500d2d5", "cast_id": 8, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 1}, {"name": "Mark Harmon", "character": "Ryan", "id": 19728, "credit_id": "52fe435b9251416c7500d2d9", "cast_id": 9, "profile_path": "/siHSN1px6pn3EQ3UUj1rOnfpHjI.jpg", "order": 2}, {"name": "Harold Gould", "character": "Grandpa", "id": 14833, "credit_id": "52fe435b9251416c7500d2dd", "cast_id": 10, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 3}, {"name": "Haley Hudson", "character": "Peg", "id": 159985, "credit_id": "52fe435b9251416c7500d2e1", "cast_id": 12, "profile_path": "/4He22Zr4W5w2oHUzqnAnxtNe1fa.jpg", "order": 4}, {"name": "Chad Michael Murray", "character": "Jake", "id": 62747, "credit_id": "52fe435b9251416c7500d2eb", "cast_id": 14, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 5}, {"name": "Dina Spybey-Waters", "character": "Dottie Robertson", "id": 56567, "credit_id": "52fe435b9251416c7500d2ef", "cast_id": 15, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 6}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe435b9251416c7500d2e7", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.8, "runtime": 97}, "10331": {"poster_path": "/hLRyP2V8oLQ4MKNcZ131jOXmfww.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of people try to survive an attack of bloodthirsty zombies while trapped in a rural Pennsylvania farmhouse. Although not the first zombie film, Night of the Living Dead is the progenitor of the contemporary \"zombie apocalypse\" horror film, and it greatly influenced the modern pop-culture zombie archetype.", "video": false, "id": 10331, "genres": [{"id": 27, "name": "Horror"}], "title": "Night of the Living Dead", "tagline": "If it doesn't scare you, you're already dead!", "vote_count": 164, "homepage": "", "belongs_to_collection": {"backdrop_path": "/inPPfnJ9Wzc9rg1MpkPm0P3D9rJ.jpg", "poster_path": "/mSJ20RTWWgtt3aTyn1iwNZ9fbYl.jpg", "id": 261590, "name": "Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0063350", "adult": false, "backdrop_path": "/yzUc4vR6bQGK9HhCOUqxIsRM3r4.jpg", "production_companies": [{"name": "Image Ten", "id": 14121}, {"name": "Laurel Group", "id": 638}, {"name": "Market Square Productions", "id": 14122}, {"name": "Off Color Films", "id": 3139}], "release_date": "1968-10-01", "popularity": 0.5486682508452, "original_title": "Night of the Living Dead", "budget": 0, "cast": [{"name": "Duane Jones", "character": "Ben", "id": 97912, "credit_id": "52fe435b9251416c7500d351", "cast_id": 10, "profile_path": "/9JykB5zs5MVwzBQQXfxjNUbOGsj.jpg", "order": 0}, {"name": "Judith O'Dea", "character": "Barbra", "id": 97913, "credit_id": "52fe435b9251416c7500d355", "cast_id": 11, "profile_path": "/wRaaASNqF47tQGUogNgpc55bHha.jpg", "order": 1}, {"name": "Karl Hardman", "character": "Harry Cooper", "id": 97914, "credit_id": "52fe435b9251416c7500d359", "cast_id": 12, "profile_path": "/3zzyB9NUwoQpjwtoDlpSzF2wxYU.jpg", "order": 2}, {"name": "Marilyn Eastman", "character": "Helen Cooper", "id": 97915, "credit_id": "52fe435b9251416c7500d35d", "cast_id": 13, "profile_path": "/3zzyB9NUwoQpjwtoDlpSzF2wxYU.jpg", "order": 3}, {"name": "Keith Wayne", "character": "Tom", "id": 97916, "credit_id": "52fe435b9251416c7500d361", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Judith Ridley", "character": "Judy", "id": 97917, "credit_id": "52fe435b9251416c7500d365", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Kyra Schon", "character": "Karen Cooper", "id": 97918, "credit_id": "52fe435b9251416c7500d369", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Charles Craig", "character": "Newscaster / Zombie", "id": 97919, "credit_id": "52fe435b9251416c7500d36d", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "S. William Hinzman", "character": "Cemetery Zombie", "id": 97920, "credit_id": "52fe435b9251416c7500d371", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Bill 'Chilly Billy' Cardille", "character": "Field Reporter", "id": 97921, "credit_id": "52fe435b9251416c7500d375", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "George A. Romero", "character": "Washington Reporter", "id": 14999, "credit_id": "52fe435b9251416c7500d379", "cast_id": 20, "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "order": 10}, {"name": "Russell Streiner", "character": "Johnny", "id": 64833, "credit_id": "52fe435b9251416c7500d37d", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "John A. Russo", "character": "Washington Military Reporter", "id": 64831, "credit_id": "52fe435b9251416c7500d381", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "George A. Romero", "department": "Directing", "job": "Director", "credit_id": "52fe435b9251416c7500d34d", "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "id": 14999}], "vote_average": 7.0, "runtime": 96}, "2140": {"poster_path": "/eOBwDUiDLmz1BX8PQL5U1tQloRB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64437847, "overview": "Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.", "video": false, "id": 2140, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Kiss of the Dragon", "tagline": "Kiss Fear Goodbye", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0271027", "adult": false, "backdrop_path": "/kZMZ3PqcKmtBifHjfoI8JnURHJj.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Current Entertainment", "id": 972}, {"name": "Immortal Entertainment", "id": 973}], "release_date": "2001-07-06", "popularity": 0.56086122110291, "original_title": "Kiss of the Dragon", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Liu Jian", "id": 1336, "credit_id": "52fe433ac3a36847f8043f37", "cast_id": 18, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Bridget Fonda", "character": "Jessica Kamen", "id": 2233, "credit_id": "52fe433ac3a36847f8043f3b", "cast_id": 19, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 1}, {"name": "Tch\u00e9ky Karyo", "character": "Insp. Richard", "id": 10698, "credit_id": "52fe433ac3a36847f8043f3f", "cast_id": 20, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 2}, {"name": "Max Ryan", "character": "Lupo", "id": 21942, "credit_id": "52fe433ac3a36847f8043f43", "cast_id": 21, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 3}, {"name": "Ric Young", "character": "Mister Big", "id": 11397, "credit_id": "52fe433ac3a36847f8043f53", "cast_id": 26, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 4}, {"name": "Burt Kwouk", "character": "Uncle Tai", "id": 21944, "credit_id": "52fe433ac3a36847f8043f47", "cast_id": 23, "profile_path": "/7s1Sul5L6NU2TEfgLarBqrde65v.jpg", "order": 5}, {"name": "Laurence Ashley", "character": "Aja", "id": 21945, "credit_id": "52fe433ac3a36847f8043f4b", "cast_id": 24, "profile_path": "/85DqATSlGBXmh9GJ11WbdValFnO.jpg", "order": 6}, {"name": "Cyril Raffaelli", "character": "Twin", "id": 21946, "credit_id": "52fe433ac3a36847f8043f4f", "cast_id": 25, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 7}], "directors": [{"name": "Chris Nahon", "department": "Directing", "job": "Director", "credit_id": "52fe433ac3a36847f8043ed3", "profile_path": "/5ei81yfFCVBPdDw8AntZPM1U0Jy.jpg", "id": 21931}], "vote_average": 6.5, "runtime": 98}, "2142": {"poster_path": "/th2UDVewgUAfIXFUaWGWWBxCM91.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44862187, "overview": "Freddy Heflin is the sheriff of a place everyone calls \u201cCop Land\u201d \u2014 a small and seemingly peaceful town populated by the big city police officers he\u2019s long admired. Yet something ugly is taking place behind the town\u2019s peaceful facade. And when Freddy uncovers a massive, deadly conspiracy among these local residents, he is forced to take action and make a dangerous choice between protecting his idols and upholding the law.", "video": false, "id": 2142, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Cop Land", "tagline": "No One Is Above The Law.", "vote_count": 69, "homepage": "http://www.miramax.com/movie/cop-land", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118887", "adult": false, "backdrop_path": "/ginZN2Kk7KHUGs15BSTN24sQwUp.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Across the River Productions", "id": 978}, {"name": "Woods Entertainment", "id": 979}], "release_date": "1997-08-05", "popularity": 0.598649545531204, "original_title": "Cop Land", "budget": 15000000, "cast": [{"name": "Sylvester Stallone", "character": "Sheriff Freddy Heflin", "id": 16483, "credit_id": "52fe433ac3a36847f804405f", "cast_id": 15, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Harvey Keitel", "character": "Ray Donlan", "id": 1037, "credit_id": "52fe433ac3a36847f8044063", "cast_id": 16, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Gary \" Figgsy \" Figgis", "id": 11477, "credit_id": "52fe433ac3a36847f8044067", "cast_id": 17, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Robert De Niro", "character": "Lt. Moe Tilden", "id": 380, "credit_id": "52fe433ac3a36847f804406b", "cast_id": 18, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 3}, {"name": "Peter Berg", "character": "Joey Randone", "id": 36602, "credit_id": "52fe433ac3a36847f8044085", "cast_id": 25, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 4}, {"name": "Janeane Garofalo", "character": "Deputy Cindy Betts", "id": 21197, "credit_id": "52fe433ac3a36847f804406f", "cast_id": 20, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 5}, {"name": "Robert Patrick", "character": "Jack Rucker", "id": 418, "credit_id": "52fe433ac3a36847f8044073", "cast_id": 21, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 5}, {"name": "Michael Rapaport", "character": "Murray \" Superboy \" Babitch", "id": 4688, "credit_id": "52fe433ac3a36847f8044077", "cast_id": 22, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 6}, {"name": "Annabella Sciorra", "character": "Liz Randone", "id": 18750, "credit_id": "52fe433ac3a36847f804407b", "cast_id": 23, "profile_path": "/hYnhZFxfac6Q009StxjcF06iJXz.jpg", "order": 7}, {"name": "Noah Emmerich", "character": "Deputy Bill Geisler", "id": 11315, "credit_id": "52fe433ac3a36847f8044095", "cast_id": 28, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 8}, {"name": "Cathy Moriarty", "character": "Rose Donlan", "id": 14702, "credit_id": "52fe433ac3a36847f8044099", "cast_id": 29, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 9}, {"name": "John Spencer", "character": "Leo Crasky", "id": 34691, "credit_id": "52fe433ac3a36847f804409d", "cast_id": 30, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 10}, {"name": "Frank Vincent", "character": "PDA President Lassaro", "id": 7164, "credit_id": "52fe433ac3a36847f80440a1", "cast_id": 31, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 11}, {"name": "Malik Yoba", "character": "Detective Carson", "id": 12977, "credit_id": "52fe433ac3a36847f80440a5", "cast_id": 32, "profile_path": "/v0BfJRbZ6ECq3VQ1YZRi7ONQ4T4.jpg", "order": 12}, {"name": "Arthur J. Nascarella", "character": "Frank Lagonda", "id": 28033, "credit_id": "52fe433ac3a36847f80440a9", "cast_id": 33, "profile_path": "/3hWjDrHfNSS1BxJ5GeIDtxm5975.jpg", "order": 13}, {"name": "Edie Falco", "character": "Berta", "id": 36190, "credit_id": "53d058e0c3a368777a0082e1", "cast_id": 34, "profile_path": "/fq3v805DiJUE5oMp1VnR5AQQ3Vy.jpg", "order": 14}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe433ac3a36847f804401f", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.6, "runtime": 104}, "10336": {"poster_path": "/jMKsirHIMY5QYiwb04PGTrwTABA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87840042, "overview": "After being murdered by corrupt colleagues in a covert government agency, Al Simmons (Michael Jai White) makes a pact with the devil to be resurrected to see his beloved wife Wanda (Theresa Randle). In exchange for his return to Earth, Simmons agrees to lead Hell's Army in the destruction of mankind.", "video": false, "id": 10336, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Spawn", "tagline": "Born in darkness. Sworn to justice.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120177", "adult": false, "backdrop_path": "/9lQKvI6hCqblUn1XgVqZbN7kl6.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Pull Down Your Pants Pictures", "id": 3907}, {"name": "Todd McFarlane Entertainment", "id": 23364}], "release_date": "1997-07-31", "popularity": 0.370049379898313, "original_title": "Spawn", "budget": 40000000, "cast": [{"name": "Michael Jai White", "character": "Al Simmons", "id": 64856, "credit_id": "52fe435b9251416c7500d503", "cast_id": 9, "profile_path": "/5iJ5lnq2ttl0uP7MORd6dUHUrIf.jpg", "order": 0}, {"name": "Martin Sheen", "character": "Jason Wynn", "id": 8349, "credit_id": "52fe435b9251416c7500d507", "cast_id": 13, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Clown / Violator", "id": 5723, "credit_id": "52fe435b9251416c7500d511", "cast_id": 15, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Theresa Randle", "character": "Wanda Blake", "id": 4604, "credit_id": "52fe435b9251416c7500d515", "cast_id": 16, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 3}, {"name": "Nicol Williamson", "character": "Cogliostro", "id": 51812, "credit_id": "52fe435b9251416c7500d519", "cast_id": 17, "profile_path": "/kCvjXpYSCYH14mo0gtRmnV7DroV.jpg", "order": 4}, {"name": " D.B. Sweeney", "character": "Terry Fitzgerald", "id": 61962, "credit_id": "52fe435b9251416c7500d51d", "cast_id": 18, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 5}, {"name": "Melinda Clarke", "character": "Jessica Priest", "id": 89251, "credit_id": "52fe435b9251416c7500d521", "cast_id": 19, "profile_path": "/hwhM70KOncsxVoQVzvs5U24m6VF.jpg", "order": 6}, {"name": "Miko Hughes", "character": "Zack", "id": 8186, "credit_id": "52fe435b9251416c7500d525", "cast_id": 20, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 7}, {"name": "Sydni Beaudoin", "character": "Cyan", "id": 1072036, "credit_id": "52fe435b9251416c7500d529", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Frank Welker", "character": "The Devil Malebolgia", "id": 15831, "credit_id": "52fe435b9251416c7500d52d", "cast_id": 22, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 9}], "directors": [{"name": "Mark A.Z. Dipp\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe435b9251416c7500d50d", "profile_path": "/aXHVL2NmsCnMgwnacF2YBkOJ73x.jpg", "id": 87130}], "vote_average": 5.1, "runtime": 96}, "10340": {"poster_path": "/kpfbF0C0lSvvKE3JQVuAGufA6UT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93600000, "overview": "Lady, a golden cocker spaniel, meets up with a mongrel dog who calls himself the Tramp. He is obviously from the wrong side of town, but happenings at Lady's home make her decide to travel with him for a while.", "video": false, "id": 10340, "genres": [{"id": 16, "name": "Animation"}], "title": "Lady and the Tramp", "tagline": "She's from the leash and license set... he's footloose and collar free!", "vote_count": 271, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8YIec6FKfOHn9uw7MMH1200wbyK.jpg", "poster_path": "/fvk72hTShONXVDDSdoTEVm7DJh0.jpg", "id": 97460, "name": "Lady and the Tramp Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0048280", "adult": false, "backdrop_path": "/osSsQ4QWXS7Flu3y39QqP924Lud.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1955-06-16", "popularity": 1.531393968252, "original_title": "Lady and the Tramp", "budget": 0, "cast": [{"name": "Peggy Lee", "character": "Darling / Si / Am / Peg (voice)", "id": 64870, "credit_id": "52fe435d9251416c7500d77f", "cast_id": 12, "profile_path": "/dtil2nERiDJjmVtvE1oS6YL3Q9W.jpg", "order": 0}, {"name": "Barbara Luddy", "character": "Lady (voice)", "id": 64871, "credit_id": "52fe435d9251416c7500d783", "cast_id": 14, "profile_path": "/cK7NjpqJmjaFTT52vwAq9bYH2VA.jpg", "order": 1}, {"name": "Larry Roberts", "character": "Tramp (voice)", "id": 64872, "credit_id": "52fe435d9251416c7500d787", "cast_id": 15, "profile_path": "/qwVxQaSTgOmpOb6JfflhWor4nDu.jpg", "order": 2}, {"name": "Bill Thompson", "character": "Jock / Bull / Policeman at Zoo / Dachsie / Joe (voice)", "id": 67230, "credit_id": "52fe435d9251416c7500d791", "cast_id": 17, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 3}, {"name": "Bill Baucom", "character": "Trusty (voice)", "id": 1022053, "credit_id": "52fe435d9251416c7500d795", "cast_id": 18, "profile_path": "/dXIjn8ZsTNBBiiA0rQ0uWDqg2ey.jpg", "order": 4}, {"name": "Stan Freberg", "character": "Beaver (voice)", "id": 110654, "credit_id": "52fe435d9251416c7500d799", "cast_id": 19, "profile_path": "/cV3AZiwx7FMBjApPh2oJkrqFKVY.jpg", "order": 5}, {"name": "Verna Felton", "character": "Aunt Sarah (voice)", "id": 67290, "credit_id": "52fe435d9251416c7500d79d", "cast_id": 20, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 6}, {"name": "Alan Reed", "character": "Boris (voice)", "id": 1944, "credit_id": "52fe435d9251416c7500d7a1", "cast_id": 21, "profile_path": "/8s1O9NJNM8kZQCmlvfYdFUiyODt.jpg", "order": 7}, {"name": "George Givot", "character": "Tony (voice)", "id": 124506, "credit_id": "52fe435d9251416c7500d7a5", "cast_id": 22, "profile_path": "/gd5xgniY8Ex6pEghzD1rZf1wMrD.jpg", "order": 8}, {"name": "Dal McKennon", "character": "Toughy / Professor / Pedro (voice)", "id": 44676, "credit_id": "52fe435d9251416c7500d7a9", "cast_id": 23, "profile_path": "/uL8UjbVwrKXGpMJ22nITyTSbHjU.jpg", "order": 9}, {"name": "Lee Millar", "character": "Jim Dear / Dog Catcher (voice)", "id": 148170, "credit_id": "52fe435d9251416c7500d7ad", "cast_id": 24, "profile_path": "/aZncFY7lKKI9NfX8i6VupJc41ZI.jpg", "order": 10}, {"name": "The Mellomen", "character": "Dogs (voice)", "id": 573997, "credit_id": "52fe435d9251416c7500d7b1", "cast_id": 25, "profile_path": "/zfvBnWCAjiL5bpyjAjJkUtIhJYs.jpg", "order": 11}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe435c9251416c7500d74b", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe435c9251416c7500d751", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe435c9251416c7500d757", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}], "vote_average": 6.4, "runtime": 76}, "18533": {"poster_path": "/1NIvCUisS19jADD7Ktm391iXkab.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A young man who was sentenced to 7 years on prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.", "video": false, "id": 18533, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bronson", "tagline": "The Man. The Myth. The Celebrity.", "vote_count": 88, "homepage": "http://www.bronsonthemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1172570", "adult": false, "backdrop_path": "/pkcSa3xIi1rNrivl5MRwtRgbEYI.jpg", "production_companies": [{"name": "Vertigo Films", "id": 10393}, {"name": "Aramid Entertainment Fund", "id": 3272}, {"name": "Str8jacket Creations", "id": 11366}, {"name": "EM Media", "id": 1917}, {"name": "4DH Films", "id": 11367}, {"name": "Perfume Films", "id": 11368}], "release_date": "2008-10-09", "popularity": 0.311079593166163, "original_title": "Bronson", "budget": 0, "cast": [{"name": "Tom Hardy", "character": "Michael Peterson (Charles Bronson)", "id": 2524, "credit_id": "52fe47849251416c7509c3eb", "cast_id": 4, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Matt King", "character": "Paul Daniels", "id": 23776, "credit_id": "52fe47849251416c7509c3ef", "cast_id": 5, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 1}, {"name": "James Lance", "character": "Phil", "id": 19775, "credit_id": "52fe47849251416c7509c3f3", "cast_id": 6, "profile_path": "/9xmBW177n0WfWjHa5AhV47zLuLD.jpg", "order": 2}, {"name": "Kelly Adams", "character": "Irene", "id": 125718, "credit_id": "52fe47849251416c7509c3f7", "cast_id": 7, "profile_path": "/pCnidIiMkcx9CXPl1vsZ7jfaTWR.jpg", "order": 3}, {"name": "Katy Barker", "character": "Julie", "id": 1117431, "credit_id": "52fe47849251416c7509c45f", "cast_id": 25, "profile_path": "/46EE8CpmPNHLDFViUHmRKLY66LV.jpg", "order": 4}, {"name": "Amanda Burton", "character": "Charlie's Mum", "id": 190405, "credit_id": "52fe47849251416c7509c463", "cast_id": 26, "profile_path": "/i3BJ9AnU9djtKswXgze17tlc24z.jpg", "order": 5}, {"name": "Andrew Forbes", "character": "Charlie's Dad", "id": 476761, "credit_id": "52fe47849251416c7509c467", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Jon House", "character": "Webber", "id": 1117432, "credit_id": "52fe47849251416c7509c46b", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Juliet Oldfield", "character": "Alison", "id": 1105701, "credit_id": "52fe47849251416c7509c46f", "cast_id": 29, "profile_path": "/kcVBUHpCIyymZ8p2N2JcEiZDAMa.jpg", "order": 8}, {"name": "Mark Powley", "character": "Andy Love / Friendly Screw", "id": 106385, "credit_id": "52fe47849251416c7509c477", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Hugh Ross", "character": "Uncle Jack", "id": 79648, "credit_id": "52fe47849251416c7509c47b", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Andrew St. John", "character": "Workshop Supervisor", "id": 1117433, "credit_id": "52fe47849251416c7509c47f", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Joe Tucker", "character": "John White", "id": 143181, "credit_id": "52fe47849251416c7509c483", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Tracy Wiles", "character": "Jewellery Shop Assistant 1", "id": 1264495, "credit_id": "52fe47849251416c7509c487", "cast_id": 35, "profile_path": "/f7ewibLNfSFvL51LLlw01BzP4UG.jpg", "order": 14}, {"name": "Luing Andrews", "character": "Hysterical Screw", "id": 1117430, "credit_id": "52fe47849251416c7509c45b", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Jonathan Phillips", "character": "Prison Governor", "id": 8547, "credit_id": "54db0fdcc3a36812240010e8", "cast_id": 36, "profile_path": "/9d7aKSqfqXHWaETmTKifetsekDa.jpg", "order": 16}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe47849251416c7509c3db", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 6.8, "runtime": 92}, "10345": {"poster_path": "/rarsqkzeUH1Ab4FxkTjFqIB91fs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78247647, "overview": "The extravagant cop Michael Dooley needs some help to fight a drug dealer who has tried to kill him. A \"friend\" gives him a dog named Jerry Lee (Officer Lewis), who has been trained to smell drugs. With his help, Dooley sets out to put his enemy behind the bars, but Jerry Lee has a personality of his own and works only when he wants to. On the other hand, the dog is quite good at destroying Dooley's car, house and sex-life...", "video": false, "id": 10345, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "K-9", "tagline": "Meet the two toughest cops in town. One's just a little smarter than the other!", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mdG3H2w9Ktc2Ua6tJie3eUE8Zte.jpg", "poster_path": "/1kjDZilRkEVVJVpoh9iuEdVnb87.jpg", "id": 88735, "name": "K-9 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097637", "adult": false, "backdrop_path": "/ll9MpIdvt2DvHXolysp3cTiQegl.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1989-04-28", "popularity": 0.359633254334133, "original_title": "K-9", "budget": 18598420, "cast": [{"name": "James Belushi", "character": "Dooley", "id": 26485, "credit_id": "52fe435d9251416c7500d983", "cast_id": 9, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 0}, {"name": "Mel Harris", "character": "Tracy", "id": 25306, "credit_id": "52fe435d9251416c7500d987", "cast_id": 10, "profile_path": "/p0gcTWZfJrSDzUnGcdHOz6l8lzh.jpg", "order": 1}, {"name": "Kevin Tighe", "character": "Lyman", "id": 17770, "credit_id": "52fe435e9251416c7500d98b", "cast_id": 11, "profile_path": "/5Q1Z89xsrnLdQWdHLuiaraS89vV.jpg", "order": 2}, {"name": "Ed O'Neill", "character": "Brannigan", "id": 18977, "credit_id": "52fe435e9251416c7500d98f", "cast_id": 12, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 3}, {"name": "Rando", "character": "Jerry Lee", "id": 1116738, "credit_id": "52fe435e9251416c7500d99f", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Daniel Davis", "character": "Halstead", "id": 177765, "credit_id": "52fe435e9251416c7500d9a3", "cast_id": 17, "profile_path": "/f6mEupwpKQGlxk2mKwb0pz1UiFT.jpg", "order": 5}, {"name": "Cotter Smith", "character": "Gilliam", "id": 115858, "credit_id": "52fe435e9251416c7500d9a7", "cast_id": 18, "profile_path": "/4lMLsN7hLmtGPqOt626dnui64Cb.jpg", "order": 6}, {"name": "John Snyder", "character": "Freddie", "id": 152408, "credit_id": "52fe435e9251416c7500d9ab", "cast_id": 19, "profile_path": "/aZQoXztNm5C6Rz0ZjIdjV0vHKdO.jpg", "order": 7}, {"name": "Pruitt Taylor Vince", "character": "Benny the Mule", "id": 3201, "credit_id": "52fe435e9251416c7500d9af", "cast_id": 20, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 8}, {"name": "James Handy", "character": "Byers", "id": 51551, "credit_id": "52fe435e9251416c7500d9b3", "cast_id": 21, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 9}], "directors": [{"name": "Rod Daniel", "department": "Directing", "job": "Director", "credit_id": "52fe435d9251416c7500d955", "profile_path": null, "id": 64877}], "vote_average": 5.6, "runtime": 101}, "2157": {"poster_path": "/kkBDPkUnYwAkWbYY2bnyf5ANObA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136159423, "overview": "The prospects for continuing life on Earth in the year 2058 are grim. So the Robinsons are launched into space to colonize Alpha Prime, the only other inhabitable planet in the galaxy. But when a stowaway sabotages the mission, the Robinsons find themselves hurtling through uncharted space.", "video": false, "id": 2157, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Lost in Space", "tagline": "Danger, Will Robinson!", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120738", "adult": false, "backdrop_path": "/g3jly9UILhoVba6Dy5V7ifpuJYH.jpg", "production_companies": [{"name": "Saltire Entertainment", "id": 30253}, {"name": "New Line Cinema", "id": 12}, {"name": "Irwin Allen Productions", "id": 14024}, {"name": "Prelude Pictures", "id": 19902}], "release_date": "1998-04-03", "popularity": 0.463419225647169, "original_title": "Lost in Space", "budget": 80000000, "cast": [{"name": "Gary Oldman", "character": "Dr. Zachary Smith", "id": 64, "credit_id": "52fe433cc3a36847f8044937", "cast_id": 26, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 0}, {"name": "William Hurt", "character": "Prof. John Robinson", "id": 227, "credit_id": "52fe433bc3a36847f8044923", "cast_id": 20, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 1}, {"name": "Matt LeBlanc", "character": "Maj. Don West", "id": 14407, "credit_id": "52fe433cc3a36847f8044933", "cast_id": 25, "profile_path": "/35sPf8IBVl54vdmc9Tyv17otMnk.jpg", "order": 2}, {"name": "Mimi Rogers", "character": "Dr. Maureen Robinson", "id": 13920, "credit_id": "52fe433bc3a36847f8044927", "cast_id": 21, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 3}, {"name": "Heather Graham", "character": "Dr. Judy Robinson", "id": 69122, "credit_id": "52fe433bc3a36847f804492b", "cast_id": 22, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 4}, {"name": "Lacey Chabert", "character": "Penny Robinson", "id": 22082, "credit_id": "52fe433bc3a36847f804492f", "cast_id": 23, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 5}, {"name": "Jack Johnson", "character": "Will Robinson", "id": 135526, "credit_id": "52fe433cc3a36847f804493f", "cast_id": 28, "profile_path": "/3yI4yZkVbvwXSOUmg6YHCalcc2S.jpg", "order": 6}, {"name": "Jared Harris", "character": "Older Will Robinson", "id": 15440, "credit_id": "52fe433cc3a36847f804493b", "cast_id": 27, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 7}, {"name": "Mark Goddard", "character": "General", "id": 161433, "credit_id": "52fe433cc3a36847f8044949", "cast_id": 30, "profile_path": "/mJ8Ctib5EiS6p9aX7TDEJYLB7U0.jpg", "order": 8}, {"name": "Lennie James", "character": "Jeb Walker", "id": 1120, "credit_id": "52fe433cc3a36847f804494d", "cast_id": 31, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 9}, {"name": "Marta Kristen", "character": "Reporter #1", "id": 148605, "credit_id": "52fe433cc3a36847f8044951", "cast_id": 32, "profile_path": "/xornxHCCYTMkBRAW5Rvci6CeSEm.jpg", "order": 10}, {"name": "June Lockhart", "character": "Principal Cartwright", "id": 13997, "credit_id": "52fe433cc3a36847f8044955", "cast_id": 33, "profile_path": "/oVKYbTNxXso4j1qZEAv9H2UkD5d.jpg", "order": 11}, {"name": "Adam Sims", "character": "Lab Technician", "id": 1077780, "credit_id": "52fe433cc3a36847f8044959", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Angela Cartwright", "character": "Reporter #2", "id": 121640, "credit_id": "52fe433cc3a36847f804495d", "cast_id": 36, "profile_path": "/ngoU570GKnzVuq21RKdGDYq8itE.jpg", "order": 13}, {"name": "John Sharian", "character": "Noah Freeman", "id": 36900, "credit_id": "52fe433cc3a36847f8044961", "cast_id": 37, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 14}, {"name": "Abigail Canton", "character": "Annie Tech", "id": 1077781, "credit_id": "52fe433cc3a36847f8044965", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Richard Saperstein", "character": "Global Sedition attack pilot", "id": 65753, "credit_id": "52fe433cc3a36847f8044969", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Dick Tufeld", "character": "Rambler-Crane series Robot (voice)", "id": 165898, "credit_id": "52fe433cc3a36847f804496d", "cast_id": 40, "profile_path": "/bfcCxkfWAOC5UQ0PVT5jkAR1FbJ.jpg", "order": 17}, {"name": "Gary A. Hecker", "character": "Blarp (voice)", "id": 1077782, "credit_id": "52fe433cc3a36847f8044971", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Edward Fox", "character": "Businessman", "id": 9126, "credit_id": "52fe433cc3a36847f8044975", "cast_id": 42, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 19}], "directors": [{"name": "Stephen Hopkins", "department": "Directing", "job": "Director", "credit_id": "52fe433bc3a36847f80448b9", "profile_path": "/zHwFIL63LbeSS83FMC8J6TAgDNL.jpg", "id": 2042}], "vote_average": 5.1, "runtime": 130}, "26736": {"poster_path": "/k4mH6wGL1JBmsDjHSPGMxDAOSYa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Powerful magic cast by Alex spells trouble for the Russo's. The kids must go on an adventure to save their family and their existence.", "video": false, "id": 26736, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Wizards of Waverly Place: The Movie", "tagline": "Family vacations can be tricky.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1369845", "adult": false, "backdrop_path": "/czxiNLwdLLmt8GEgSVOUw7bxHIR.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2009-08-28", "popularity": 0.404912432693241, "original_title": "Wizards of Waverly Place: The Movie", "budget": 0, "cast": [{"name": "Selena Gomez", "character": "Alex Russo", "id": 77948, "credit_id": "52fe4516c3a368484e047b75", "cast_id": 4, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Jake T. Austin", "character": "Max Russo", "id": 60255, "credit_id": "52fe4516c3a368484e047b79", "cast_id": 5, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 1}, {"name": "David Henrie", "character": "Justin Russo", "id": 95136, "credit_id": "52fe4516c3a368484e047b7d", "cast_id": 6, "profile_path": "/yzD9H0890KvgsrSVY2dD1OU1gDS.jpg", "order": 2}, {"name": "Maria Canals-Barrera", "character": "", "id": 85759, "credit_id": "5443c22c0e0a26634d004ea7", "cast_id": 9, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 3}, {"name": "David DeLuise", "character": "", "id": 97600, "credit_id": "53d8bd8e0e0a261c81001ea0", "cast_id": 8, "profile_path": "/qbYy7xfsJB8QxNy3oB6tBUReNUe.jpg", "order": 4}], "directors": [{"name": "Lev L. Spiro", "department": "Directing", "job": "Director", "credit_id": "52fe4516c3a368484e047b65", "profile_path": null, "id": 107658}], "vote_average": 5.7, "runtime": 94}, "2164": {"poster_path": "/muA1cUuVaWTRoaqkMtQGSxRPqJS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196567262, "overview": "An interstellar teleportation device, found in Egypt, leads to a planet with humans resembling ancient Egyptians who worship the god Ra.", "video": false, "id": 2164, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Stargate", "tagline": "It will take you a million light years from home. But will it bring you back?", "vote_count": 290, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fwVVh9o0WZsZNstpX3O55ff7Hs8.jpg", "poster_path": "/5TTU7voIo3t0IYzZTPQQAbawy6Y.jpg", "id": 44215, "name": "Stargate SG-1 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0111282", "adult": false, "backdrop_path": "/vgnrUb8KbV3S8gVUcq6rXng9cnz.jpg", "production_companies": [{"name": "Carolco Pictures", "id": 14723}, {"name": "Canal+", "id": 5358}, {"name": "Centropolis Film Productions", "id": 620}], "release_date": "1994-10-27", "popularity": 0.951246816772628, "original_title": "Stargate", "budget": 55000000, "cast": [{"name": "Kurt Russell", "character": "Colonel Jonathan O'Neil", "id": 6856, "credit_id": "52fe433cc3a36847f8044caf", "cast_id": 17, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "James Spader", "character": "Dr. Daniel Jackson", "id": 13548, "credit_id": "52fe433cc3a36847f8044cc7", "cast_id": 23, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 1}, {"name": "Alexis Cruz", "character": "Skaara", "id": 22138, "credit_id": "52fe433cc3a36847f8044cb3", "cast_id": 18, "profile_path": "/3vTlvOsUx5UfrOMhayQljM8AsVV.jpg", "order": 2}, {"name": "Viveca Lindfors", "character": "Catherine", "id": 22137, "credit_id": "52fe433cc3a36847f8044ccb", "cast_id": 24, "profile_path": "/r7F33o0rlbeQkxVGlRunhJ0gxjH.jpg", "order": 3}, {"name": "Mili Avital", "character": "Sha`uri", "id": 15441, "credit_id": "52fe433cc3a36847f8044cb7", "cast_id": 19, "profile_path": "/molppCadjV0Cy6YRmYmobGv3VyP.jpg", "order": 4}, {"name": "Leon Rippy", "character": "General West", "id": 15374, "credit_id": "52fe433cc3a36847f8044cbb", "cast_id": 20, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 5}, {"name": "John Diehl", "character": "Lt. Kawalsky", "id": 4942, "credit_id": "52fe433cc3a36847f8044cbf", "cast_id": 21, "profile_path": "/hDUvgqpIv753skoeRGjVw6gYp7A.jpg", "order": 6}, {"name": "Carlos Lauchu", "character": "Anubis", "id": 22139, "credit_id": "52fe433cc3a36847f8044cc3", "cast_id": 22, "profile_path": "/VcnqlKYcJ5PRoRT1Rluqg95HdG.jpg", "order": 7}, {"name": "Jaye Davidson", "character": "Ra", "id": 228173, "credit_id": "52fe433cc3a36847f8044ccf", "cast_id": 25, "profile_path": "/jn6LgWIsuRuFbnljXg7kTXI2UT.jpg", "order": 8}, {"name": "Djimon Hounsou", "character": "Horus", "id": 938, "credit_id": "52fe433cc3a36847f8044cd3", "cast_id": 26, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 9}, {"name": "Erick Avari", "character": "Kasuf", "id": 18917, "credit_id": "52fe433cc3a36847f8044cd7", "cast_id": 27, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 10}, {"name": "French Stewart", "character": "Lieutenant Ferretti", "id": 67711, "credit_id": "52fe433cc3a36847f8044cdb", "cast_id": 28, "profile_path": "/8IpVIyRvwRAeWjsGtM7eAcZlj4t.jpg", "order": 11}, {"name": "Derek Webster", "character": "Brown", "id": 157029, "credit_id": "52fe433cc3a36847f8044cdf", "cast_id": 29, "profile_path": "/vS6FyYyx2G41Zozn1bINybpmsKY.jpg", "order": 12}, {"name": "Gianin Loffler", "character": "Nabeh", "id": 1179059, "credit_id": "52fe433cc3a36847f8044ce3", "cast_id": 30, "profile_path": "/kVmL3C8J6Y36ikpN9gNEHMQvWmT.jpg", "order": 13}, {"name": "Christopher John Fields", "character": "Freeman", "id": 145531, "credit_id": "52fe433cc3a36847f8044ce7", "cast_id": 31, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 14}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe433cc3a36847f8044c51", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.6, "runtime": 121}, "10357": {"poster_path": "/feHAmHVEGhluDYxOruYG1WTv0nM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An earthquake shatters a peaceful Los Angeles morning and opens a fissure deep into the earth, causing lava to start bubbling up. As a volcano begins forming in the La Brea Tar Pits, the director of the city's emergency management service, Mike Roark, working with geologist Amy Barnes, must then use every resource in the city to try and stop the volcano from consuming Los Angeles.", "video": false, "id": 10357, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Volcano", "tagline": "The coast is toast", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120461", "adult": false, "backdrop_path": "/yYNfVE2GlIjFJRCIAgIsiaSUWnb.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1997-04-25", "popularity": 0.750634831054862, "original_title": "Volcano", "budget": 90000000, "cast": [{"name": "Tommy Lee Jones", "character": "Mike Roark", "id": 2176, "credit_id": "52fe435f9251416c7500de03", "cast_id": 10, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Anne Heche", "character": "Dr. Amy Barnes", "id": 8256, "credit_id": "52fe435f9251416c7500de07", "cast_id": 11, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 1}, {"name": "Gaby Hoffmann", "character": "Kelly Roark", "id": 12930, "credit_id": "52fe435f9251416c7500de0b", "cast_id": 12, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 2}, {"name": "Don Cheadle", "character": "Emmit Reese", "id": 1896, "credit_id": "52fe435f9251416c7500de0f", "cast_id": 13, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 3}, {"name": "Joshua Fardon", "character": "Medic", "id": 197872, "credit_id": "52fe435f9251416c7500de13", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Jacqueline Kim", "character": "Dr. Jaye Calder", "id": 56485, "credit_id": "52fe435f9251416c7500de17", "cast_id": 15, "profile_path": "/3xvzDHNIKnkdK5YU6raXdkjqWBJ.jpg", "order": 5}, {"name": "Keith David", "character": "Police Lieutenant Ed Fox", "id": 65827, "credit_id": "52fe43609251416c7500de1b", "cast_id": 16, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 6}, {"name": "John Corbett", "character": "Norman Calder", "id": 38405, "credit_id": "52fe43609251416c7500de1f", "cast_id": 17, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 7}, {"name": "Michael Rispoli", "character": "Gator Harris", "id": 18313, "credit_id": "52fe43609251416c7500de23", "cast_id": 18, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 8}, {"name": "John Carroll Lynch", "character": "Stan Olber", "id": 3911, "credit_id": "52fe43609251416c7500de27", "cast_id": 19, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 9}, {"name": "Marcello Thedford", "character": "Kevin", "id": 59300, "credit_id": "52fe43609251416c7500de2b", "cast_id": 20, "profile_path": "/r6AOyQWIi7Zi1WQUXjF8T2HafIR.jpg", "order": 10}, {"name": "Bert Kramer", "character": "L.A. Fire Chief", "id": 152339, "credit_id": "52fe43609251416c7500de2f", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bo Eason", "character": "Bud McVie", "id": 158012, "credit_id": "52fe43609251416c7500de33", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "James MacDonald", "character": "Terry Jasper", "id": 1188456, "credit_id": "52fe43609251416c7500de37", "cast_id": 23, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 13}, {"name": "Dayton Callie", "character": "Roger Lapher", "id": 87108, "credit_id": "52fe43609251416c7500de3b", "cast_id": 24, "profile_path": "/rcIfgRTAh6EHdxTcV8Qio3nx8Dh.jpg", "order": 14}, {"name": "Phil Nee", "character": "O.E.M. Staffer #5", "id": 1357100, "credit_id": "53fc68430e0a267a6c00a79d", "cast_id": 25, "profile_path": "/pZGJkVIw1RFmZuNiUzRQGupqMzW.jpg", "order": 15}], "directors": [{"name": "Mick Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe435f9251416c7500ddcf", "profile_path": "/vB2oia3vFL0kaq8re4VgWB1Huig.jpg", "id": 8843}], "vote_average": 4.9, "runtime": 104}, "10358": {"poster_path": "/zxwEJBhSSu5AuKTTd4ugWaCqmg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42105111, "overview": "Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.", "video": false, "id": 10358, "genres": [{"id": 35, "name": "Comedy"}], "title": "Zack and Miri Make a Porno", "tagline": "What would you do to get out of debt?", "vote_count": 199, "homepage": "http://www.zackandmiri.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1007028", "adult": false, "backdrop_path": "/kKoVVOd3HBDz9EVarFEGl6xU7r6.jpg", "production_companies": [{"name": "Blue Askew", "id": 2599}, {"name": "View Askew Productions", "id": 16934}], "release_date": "2008-09-18", "popularity": 0.976266930700764, "original_title": "Zack and Miri Make a Porno", "budget": 24000000, "cast": [{"name": "Seth Rogen", "character": "Zack", "id": 19274, "credit_id": "52fe43609251416c7500de77", "cast_id": 3, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Miri", "id": 9281, "credit_id": "52fe43609251416c7500de7b", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Jennifer Schwalbach Smith", "character": "Betsy", "id": 23658, "credit_id": "52fe43609251416c7500de7f", "cast_id": 5, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 2}, {"name": "Jason Mewes", "character": "Lester", "id": 19302, "credit_id": "52fe43609251416c7500de83", "cast_id": 6, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 3}, {"name": "Gerry Bednob", "character": "Mr. Surya", "id": 76525, "credit_id": "52fe43609251416c7500de87", "cast_id": 7, "profile_path": "/ueWmRIf5eMoRJJ70PmkmPiwFTI4.jpg", "order": 4}, {"name": "Traci Lords", "character": "Bubbles", "id": 10826, "credit_id": "52fe43609251416c7500de8b", "cast_id": 8, "profile_path": "/wvvedrFTml3kJZ3eSMMX3QvDacr.jpg", "order": 5}, {"name": "Brandon Routh", "character": "Bobby Long", "id": 17271, "credit_id": "52fe43609251416c7500de8f", "cast_id": 9, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 6}, {"name": "Justin Long", "character": "Brandon St. Randy", "id": 15033, "credit_id": "52fe43609251416c7500de93", "cast_id": 10, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 7}, {"name": "Jeff Anderson", "character": "Deacon", "id": 23630, "credit_id": "52fe43609251416c7500de97", "cast_id": 11, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 8}, {"name": "Craig Robinson", "character": "Delaney", "id": 64342, "credit_id": "52fe43609251416c7500de9b", "cast_id": 12, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 9}, {"name": "Tisha Campbell-Martin", "character": "Delaney's Wife", "id": 141823, "credit_id": "52fe43609251416c7500de9f", "cast_id": 13, "profile_path": "/8nfymZ8Ohi7P5mNGOMddRmm5pgF.jpg", "order": 10}, {"name": "Tom Savini", "character": "Jenkins", "id": 11161, "credit_id": "54b19b4ac3a3684012002323", "cast_id": 26, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 11}, {"name": "Kenny Hotz", "character": "Zack II", "id": 1229795, "credit_id": "54b19b60c3a3680940002951", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Katie Morgan", "character": "Stacey", "id": 140406, "credit_id": "55324b88c3a368221d002990", "cast_id": 28, "profile_path": "/fJU0qSk4C4ohHLeAg3dxqnvLFby.jpg", "order": 13}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe43609251416c7500de73", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.9, "runtime": 102}, "10360": {"poster_path": "/k0WJs6EVHYJ1etEq7V64KjLtmjP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The story of Bobby Sands, the IRA member who led the 1981 hunger strike in which Republican prisoners tried to win political status. It dramatises events in the Maze prison in the six weeks prior to Sands\u2019 death.", "video": false, "id": 10360, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Hunger", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0986233", "adult": false, "backdrop_path": "/oHKoKiAoXw4zdOD8j6PyU2lvx7i.jpg", "production_companies": [{"name": "Blast! Films", "id": 2600}], "release_date": "2008-05-15", "popularity": 0.773656850000478, "original_title": "Hunger", "budget": 0, "cast": [{"name": "Michael Fassbender", "character": "Bobby Sands", "id": 17288, "credit_id": "52fe43609251416c7500df73", "cast_id": 6, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Stuart Graham", "character": "Ray Lohan", "id": 18993, "credit_id": "52fe43609251416c7500df5b", "cast_id": 1, "profile_path": "/nbmECI9jthzBuXwpaCXVXveY0NZ.jpg", "order": 1}, {"name": "Helena Bereen", "character": "Helena Bereen", "id": 64916, "credit_id": "52fe43609251416c7500df65", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Liam Cunningham", "character": "Priest", "id": 15498, "credit_id": "52fe43609251416c7500df69", "cast_id": 4, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 3}], "directors": [{"name": "Steve McQueen", "department": "Directing", "job": "Director", "credit_id": "52fe43609251416c7500df6f", "profile_path": "/6w2fWkuhYQuv18OQi8cmSIq8srN.jpg", "id": 72757}], "vote_average": 7.2, "runtime": 96}, "75900": {"poster_path": "/n3B3se46CWsRHx1EGbGZBLePaXq.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Sir Laurence Olivier is making a movie in London. Young Colin Clark, an eager film student, wants to be involved and he navigates himself a job on the set. When film star Marilyn Monroe arrives for the start of shooting, all of London is excited to see the blonde bombshell, while Olivier is struggling to meet her many demands and acting ineptness, and Colin is intrigued by her. Colin's intrigue is met when Marilyn invites him into her inner world where she struggles with her fame, her beauty and her desire to be a great actress.", "video": false, "id": 75900, "genres": [{"id": 18, "name": "Drama"}], "title": "My Week with Marilyn", "tagline": "Sometimes You Just Need to Get Away", "vote_count": 80, "homepage": "http://myweekwithmarilynmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1655420", "adult": false, "backdrop_path": "/ez5WJJ9VsFvOASh0nbm8L4lkdju.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "BBC Films", "id": 288}, {"name": "Lip Sync Post", "id": 10247}, {"name": "Trademark Films", "id": 22153}, {"name": "UK Film Council", "id": 2452}], "release_date": "2011-10-17", "popularity": 0.55093648702911, "original_title": "My Week with Marilyn", "budget": 6400000, "cast": [{"name": "Michelle Williams", "character": "Marilyn Monroe", "id": 1812, "credit_id": "52fe491ac3a368484e11a49b", "cast_id": 2, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 0}, {"name": "Eddie Redmayne", "character": "Colin Clark", "id": 37632, "credit_id": "52fe491ac3a368484e11a49f", "cast_id": 3, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 1}, {"name": "Kenneth Branagh", "character": "Sir Laurence Olivier", "id": 11181, "credit_id": "52fe491ac3a368484e11a4a3", "cast_id": 4, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 2}, {"name": "Julia Ormond", "character": "Vivien Leigh", "id": 15887, "credit_id": "52fe491ac3a368484e11a4a7", "cast_id": 5, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 3}, {"name": "Judi Dench", "character": "Sybil Thorndike", "id": 5309, "credit_id": "52fe491ac3a368484e11a4ab", "cast_id": 6, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Emma Watson", "character": "Lucy", "id": 10990, "credit_id": "52fe491ac3a368484e11a4b3", "cast_id": 8, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 5}, {"name": "Pip Torrens", "character": "Sir Kenneth Clark", "id": 36666, "credit_id": "52fe491ac3a368484e11a4af", "cast_id": 7, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 6}, {"name": "Dominic Cooper", "character": "Milton Greene", "id": 55470, "credit_id": "52fe491ac3a368484e11a4b7", "cast_id": 9, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 7}, {"name": "Geraldine Somerville", "character": "Lady Jane Clark", "id": 10988, "credit_id": "52fe491ac3a368484e11a4bb", "cast_id": 10, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 8}, {"name": "Michael Kitchen", "character": "Hugh Perceval", "id": 10648, "credit_id": "52fe491ac3a368484e11a4bf", "cast_id": 11, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 9}, {"name": "Miranda Raison", "character": "Vanessa", "id": 195525, "credit_id": "52fe491ac3a368484e11a4c3", "cast_id": 12, "profile_path": "/A3UbPTpbDkvM1L1UoPSvhpzJvn8.jpg", "order": 10}, {"name": "Simon Russell Beale", "character": "Cotes-Preedy", "id": 57461, "credit_id": "52fe491ac3a368484e11a4c7", "cast_id": 13, "profile_path": "/kHOLDJzCeHoAC2byUGUCfzMn0Sy.jpg", "order": 11}, {"name": "Toby Jones", "character": "Arthur Jacobs", "id": 13014, "credit_id": "52fe491ac3a368484e11a4cb", "cast_id": 14, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 12}, {"name": "Robert Portal", "character": "David Orton", "id": 121606, "credit_id": "52fe491ac3a368484e11a4cf", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Jim Carter", "character": "Barry", "id": 20070, "credit_id": "52fe491ac3a368484e11a4d3", "cast_id": 16, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 14}, {"name": "Philip Jackson", "character": "Roger Smith", "id": 25532, "credit_id": "52fe491ac3a368484e11a4d7", "cast_id": 17, "profile_path": "/5pVwSFvjEgOprlMn3s6O7bQM1qc.jpg", "order": 15}], "directors": [{"name": "Simon Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe491ac3a368484e11a497", "profile_path": "/qnURh5v5N5jnS9kPYWCo4rwwxWA.jpg", "id": 133502}], "vote_average": 6.8, "runtime": 99}, "2176": {"poster_path": "/pZNdq3a49iJibUIExhe3TXqHoDu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17951431, "overview": "After the sudden death of their parents in a car accident, 16-year-old Ruby Baker and her 11-year-old brother Rhett are sent to live in the posh Malibu house of Terry and Erin Glass, old friends of their parents. But Ruby soon learns that her new foster parents are not all they seem to be.", "video": false, "id": 2176, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Glass House", "tagline": "Be Careful Who You Trust", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0221218", "adult": false, "backdrop_path": "/udE7c7hLPY1Nb1eKTsFPNdpnzoq.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2001-09-14", "popularity": 0.0861998774913227, "original_title": "The Glass House", "budget": 22000000, "cast": [{"name": "Leelee Sobieski", "character": "Ruby Baker", "id": 22290, "credit_id": "52fe433dc3a36847f8045235", "cast_id": 1, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 0}, {"name": "Trevor Morgan", "character": "Rhett Baker", "id": 4940, "credit_id": "52fe433dc3a36847f8045239", "cast_id": 2, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 1}, {"name": "Stellan Skarsg\u00e5rd", "character": "Terence Glass", "id": 1640, "credit_id": "52fe433dc3a36847f804523d", "cast_id": 3, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 2}, {"name": "Diane Lane", "character": "Erin Glass", "id": 2882, "credit_id": "52fe433dc3a36847f8045241", "cast_id": 4, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 3}, {"name": "Bruce Dern", "character": "Begleiter", "id": 6905, "credit_id": "52fe433dc3a36847f8045245", "cast_id": 5, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 4}, {"name": "Kathy Baker", "character": "Nancy Ryan", "id": 1907, "credit_id": "52fe433dc3a36847f804526d", "cast_id": 12, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 5}, {"name": "Chris Noth", "character": "Uncle Jack", "id": 38026, "credit_id": "52fe433dc3a36847f8045291", "cast_id": 23, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 6}, {"name": "Michael O'Keefe", "character": "Dave Baker", "id": 38085, "credit_id": "52fe433dc3a36847f804528d", "cast_id": 22, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 7}, {"name": "Vyto Ruginis", "character": "Don", "id": 61216, "credit_id": "52fe433dc3a36847f8045271", "cast_id": 15, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 8}, {"name": "Gavin O'Connor", "character": "Whitey", "id": 77003, "credit_id": "52fe433dc3a36847f8045275", "cast_id": 16, "profile_path": "/ySCeCte0VOVT9jWft6TwBKGU9KM.jpg", "order": 9}, {"name": "Carly Pope", "character": "Tasha", "id": 43903, "credit_id": "52fe433dc3a36847f8045279", "cast_id": 17, "profile_path": "/4KLHkJZKFtVdmMkHtCSD1Ridku4.jpg", "order": 10}, {"name": "China Shavers", "character": "E.B.", "id": 235848, "credit_id": "52fe433dc3a36847f804527d", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Agnes Bruckner", "character": "Zoe", "id": 51536, "credit_id": "52fe433dc3a36847f8045281", "cast_id": 19, "profile_path": "/jDrPSJne4BHWcCa3U8Y4uhoNUC6.jpg", "order": 12}, {"name": "Michael Paul Chan", "character": "Mr. Kim", "id": 17355, "credit_id": "52fe433dc3a36847f8045285", "cast_id": 20, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 13}, {"name": "Rachel Wilson", "character": "Hannah", "id": 87020, "credit_id": "52fe433dc3a36847f8045289", "cast_id": 21, "profile_path": "/x0gyK8XAl56rx6yHYoEGk9QdRRs.jpg", "order": 14}], "directors": [{"name": "Daniel Sackheim", "department": "Directing", "job": "Director", "credit_id": "52fe433dc3a36847f804524b", "profile_path": "/wSMRjEWrrYFUDd1KQCJvW2cAvh3.jpg", "id": 12632}], "vote_average": 5.1, "runtime": 106}, "157825": {"poster_path": "/1p4nQ1PHiA786dmMeW9ndIK7KCC.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kat Connors is 17 years old when her perfect homemaker mother, Eve, disappears. Having lived for so long in an emotionally repressed household, she barely registers her mother's absence and certainly doesn't blame her doormat of a father, Brock, for the loss. But as time passes, Kat begins to come to grips with how deeply Eve's disappearance has affected her. Returning home on a break from college, she finds herself confronted with the truth about her mother's departure, and her own denial about the events surrounding it...", "video": false, "id": 157825, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "White Bird in a Blizzard", "tagline": "I was 17 when my mother disappeared...", "vote_count": 63, "homepage": "http://www.magpictures.com/whitebirdinablizzard/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2238050", "adult": false, "backdrop_path": "/7X6Cn2YZnAioH3iIjBhhGq6Or70.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Wild Bunch", "id": 856}, {"name": "Desperate Pictures", "id": 1474}, {"name": "Orange Studios", "id": 15433}], "release_date": "2014-09-25", "popularity": 0.872872536286835, "original_title": "White Bird in a Blizzard", "budget": 0, "cast": [{"name": "Shailene Woodley", "character": "Kat Connor", "id": 94185, "credit_id": "52fe4bd39251416c910e6e5b", "cast_id": 1, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Eva Green", "character": "Eve Connor", "id": 10912, "credit_id": "52fe4bd39251416c910e6e5f", "cast_id": 2, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Christopher Meloni", "character": "Brock Connor", "id": 22227, "credit_id": "52fe4bd39251416c910e6e63", "cast_id": 3, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 2}, {"name": "Shiloh Fernandez", "character": "Phil", "id": 79795, "credit_id": "52fe4bd39251416c910e6e67", "cast_id": 4, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 3}, {"name": "Gabourey Sidibe", "character": "Beth", "id": 109560, "credit_id": "52fe4bd39251416c910e6e6b", "cast_id": 5, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 4}, {"name": "Thomas Jane", "character": "Detective Scieziesciez", "id": 11155, "credit_id": "52fe4bd39251416c910e6e6f", "cast_id": 6, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 5}, {"name": "Angela Bassett", "character": "Dr. Thaler", "id": 9780, "credit_id": "52fe4bd39251416c910e6e91", "cast_id": 13, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 6}, {"name": "Dale Dickey", "character": "Mrs. Hillman", "id": 46814, "credit_id": "52fe4bd39251416c910e6e95", "cast_id": 14, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 7}, {"name": "Sheryl Lee", "character": "May", "id": 6726, "credit_id": "52fe4bd39251416c910e6e99", "cast_id": 15, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 8}, {"name": "Jacob Artist", "character": "", "id": 1074888, "credit_id": "52fe4bd39251416c910e6e9d", "cast_id": 16, "profile_path": "/novsAlYfcku1PCQiZRN7pOnzolA.jpg", "order": 9}, {"name": "Mark Indelicato", "character": "Mickey", "id": 1224971, "credit_id": "54270091c3a3680b28000407", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Ava Acres", "character": "Kat (age 8)", "id": 1340664, "credit_id": "542700b80e0a265566000400", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Tia Barr", "character": "Secretary", "id": 1368142, "credit_id": "542700d0c3a3680b1e0003e9", "cast_id": 19, "profile_path": null, "order": 12}], "directors": [{"name": "Gregg Araki", "department": "Directing", "job": "Director", "credit_id": "52fe4bd39251416c910e6e75", "profile_path": "/sL3WcqyhiIedJg6mSYz1lsKn0d4.jpg", "id": 19224}], "vote_average": 6.0, "runtime": 91}, "2179": {"poster_path": "/gQThU8AftVJEBug4ToHUbQ3Lg7M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13405595, "overview": "In Venice Beach, naive Midwesterner JB bonds with local slacker KG and they form the rock band Tenacious D. Setting out to become the world's greatest band is no easy feat, so they set out to steal what could be the answer to their prayers... a magical guitar pick housed in a rock-and-roll museum some 300 miles away.", "video": false, "id": 2179, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Tenacious D in The Pick of Destiny", "tagline": "An epic quest. A magical guitar pick. A chance to put the D in Destiny.", "vote_count": 89, "homepage": "http://www.tenaciousdmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365830", "adult": false, "backdrop_path": "/fDuTOIYY9Bg3VLc4kLkn9V8THlV.jpg", "production_companies": [{"name": "Red Hour Films", "id": 12178}], "release_date": "2006-11-22", "popularity": 0.776013769948894, "original_title": "Tenacious D in The Pick of Destiny", "budget": 22000000, "cast": [{"name": "Jack Black", "character": "Jack Black", "id": 70851, "credit_id": "52fe433ec3a36847f8045463", "cast_id": 1, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Kyle Gass", "character": "Kyle Gass", "id": 22297, "credit_id": "52fe433ec3a36847f8045467", "cast_id": 2, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 1}, {"name": "Ronnie James Dio", "character": "himself", "id": 22304, "credit_id": "52fe433ec3a36847f8045489", "cast_id": 9, "profile_path": "/AgjPqbD8ehPydyYNksRp0ZDIkiB.jpg", "order": 2}, {"name": "Tim Robbins", "character": "The Stranger", "id": 504, "credit_id": "52fe433ec3a36847f804548d", "cast_id": 10, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 3}, {"name": "Meat Loaf", "character": "Bud Black", "id": 7470, "credit_id": "52fe433ec3a36847f8045495", "cast_id": 12, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 4}, {"name": "Ben Stiller", "character": "Guitar Center Guy", "id": 7399, "credit_id": "52fe433ec3a36847f8045491", "cast_id": 11, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 5}, {"name": "Dave Grohl", "character": "Satan", "id": 533061, "credit_id": "52fe433ec3a36847f8045499", "cast_id": 13, "profile_path": "/ywJweFzFBeZXXJNmDnWT0xLrH37.jpg", "order": 6}, {"name": "JR Reed", "character": "Lee", "id": 938432, "credit_id": "52fe433ec3a36847f804549d", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Paul F. Tompkins", "character": "Open Mic Host", "id": 1219029, "credit_id": "53353bc4c3a3682a940044bb", "cast_id": 22, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 8}, {"name": "Troy Gentile", "character": "Lil' JB", "id": 55673, "credit_id": "52fe433ec3a36847f80454a5", "cast_id": 16, "profile_path": "/qX6Py6V8sGMC004CIjqitPssrM.jpg", "order": 9}, {"name": "Ned Bellamy", "character": "Security Guard", "id": 2141, "credit_id": "52fe433ec3a36847f80454a9", "cast_id": 17, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 10}, {"name": "Fred Armisen", "character": "Security Guard", "id": 61110, "credit_id": "52fe433ec3a36847f80454ad", "cast_id": 18, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 11}, {"name": "Kirk Ward", "character": "Car Chase Cop / Gang Leader", "id": 154697, "credit_id": "52fe433ec3a36847f80454b1", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Amy Poehler", "character": "Truck Stop Waitress", "id": 56322, "credit_id": "52fe433ec3a36847f80454b5", "cast_id": 20, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 13}, {"name": "John C. Reilly", "character": "", "id": 4764, "credit_id": "52fe433ec3a36847f80454b9", "cast_id": 21, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 14}], "directors": [{"name": "Liam Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe433ec3a36847f804546d", "profile_path": "/fUpqzS8f73CHnqSwgZGrJljtCgs.jpg", "id": 22301}], "vote_average": 6.4, "runtime": 93}, "10376": {"poster_path": "/4qmMvfkFWEZ9SocG2CeA57WAutF.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "The story of a virtuoso piano player who lives his entire life aboard an ocean liner. Born and raised on the ship, 1900 (Tim Roth) learned about the outside world through interactions with passengers, never setting foot on land, even for the love of his life. Years later, the ship may be destroyed, and a former band member fears that 1900 may still be aboard, willing to go down with the ship.", "video": false, "id": 10376, "genres": [{"id": 14, "name": "Fantasy"}], "title": "The Legend of 1900", "tagline": "A beatiful story of a man who could do anything... except be ordinary.", "vote_count": 204, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120731", "adult": false, "backdrop_path": "/cqYMfKZSF8OylvQe88IGy0JX39J.jpg", "production_companies": [{"name": "Medusa Film", "id": 6246}, {"name": "Sciarl\u00f2", "id": 27597}], "release_date": "1998-10-28", "popularity": 0.475673844877521, "original_title": "La leggenda del pianista sull'oceano", "budget": 9000000, "cast": [{"name": "Tim Roth", "character": "Danny Boodmann T.D. Lemon Nineteen Hundred '1900'", "id": 3129, "credit_id": "52fe43629251416c7500e4dd", "cast_id": 1, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 0}, {"name": "Pruitt Taylor Vince", "character": "Max Tooney", "id": 3201, "credit_id": "52fe43629251416c7500e4e1", "cast_id": 2, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 1}, {"name": "M\u00e9lanie Thierry", "character": "das M\u00e4dchen", "id": 59373, "credit_id": "52fe43629251416c7500e4e5", "cast_id": 3, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 2}, {"name": "Bill Nunn", "character": "Danny Boodmann", "id": 5502, "credit_id": "52fe43629251416c7500e4e9", "cast_id": 4, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 3}, {"name": "Gabriele Lavia", "character": "Farmer", "id": 80503, "credit_id": "52fe43629251416c7500e4ff", "cast_id": 8, "profile_path": "/vBdzMW3adlYO41A0nhFmis8ixTA.jpg", "order": 4}, {"name": "Clarence Williams III", "character": "Jelly Roll Morton", "id": 15864, "credit_id": "54b19a5cc3a3684012002303", "cast_id": 9, "profile_path": "/hDjTPLvUNDnoA6rHDX5JrftAWZa.jpg", "order": 5}, {"name": "M\u00e9lanie Thierry", "character": "The Girl", "id": 59373, "credit_id": "54b19a6dc3a3680939002c2e", "cast_id": 10, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 6}, {"name": "Peter Vaughan", "character": "'Pops', the Shopkeeper", "id": 386, "credit_id": "54b19a7fc3a3680945002bac", "cast_id": 11, "profile_path": "/z9ZplbTA1ojYhgZ8kJUKKhsJ7Gs.jpg", "order": 7}, {"name": "Niall O'Brien", "character": "Harbor Master", "id": 104758, "credit_id": "54b19a8e92514107e00012d0", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Alberto Vazquez", "character": "Mexican Stoker", "id": 163808, "credit_id": "54b19aa092514107e00012d2", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Luca De Luigi", "character": "Neapolitan Stoker", "id": 558801, "credit_id": "54b19ab1c3a3684138002214", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Femi Elufowoju Jr.", "character": "Black Stoker", "id": 1411985, "credit_id": "54b19acac3a3680939002c33", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Nigel Fan", "character": "Chinese Stoker", "id": 1411986, "credit_id": "54b19addc3a368413800221b", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Roger Monk", "character": "Irish Stoker", "id": 126316, "credit_id": "54b19aeec3a3680940002948", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Leonid Zaslavski", "character": "Polish Stoker", "id": 1411987, "credit_id": "54b19afe92514107e00012df", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Bernard Padden", "character": "Boatswain", "id": 1356009, "credit_id": "54b19b0e925141746c002696", "cast_id": 19, "profile_path": null, "order": 15}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe43629251416c7500e4ef", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.7, "runtime": 170}, "10377": {"poster_path": "/zcd2U5BAP0rYOucfcj8nE4VVVKC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52929168, "overview": "Two carefree pals traveling through Alabama are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend , to try his first case, it's a real shock - for him and the Deep South!", "video": false, "id": 10377, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "My Cousin Vinny", "tagline": "Truth, Justice and the Gambini Way", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104952", "adult": false, "backdrop_path": "/AsQfq68MrMt5Itb8wTIzkLLGGoI.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-03-13", "popularity": 0.419521294556193, "original_title": "My Cousin Vinny", "budget": 11000000, "cast": [{"name": "Joe Pesci", "character": "Vincent 'Vinny' Gambini", "id": 4517, "credit_id": "52fe43639251416c7500e52b", "cast_id": 1, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 0}, {"name": "Ralph Macchio", "character": "William 'Billy' Gambini", "id": 2877, "credit_id": "52fe43639251416c7500e52f", "cast_id": 2, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Mona Lisa Vito", "id": 3141, "credit_id": "52fe43639251416c7500e533", "cast_id": 3, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Mitchell Whitfield", "character": "Stan Rothenstein", "id": 19505, "credit_id": "52fe43639251416c7500e537", "cast_id": 4, "profile_path": "/xvLWnBsTbUmW9KcDkH7pvi5W6v0.jpg", "order": 3}, {"name": "Fred Gwynne", "character": "Judge Chamberlain Haller", "id": 56266, "credit_id": "52fe43639251416c7500e53b", "cast_id": 5, "profile_path": "/xwDhOItVPzmBDfPqNMPHSSdXOMj.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Sheriff Farley", "id": 14888, "credit_id": "52fe43639251416c7500e56f", "cast_id": 14, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "Lane Smith", "character": "Jim Trotter III", "id": 65019, "credit_id": "52fe43639251416c7500e573", "cast_id": 15, "profile_path": "/js7GonfBVNHLYhaB0Xjtnm93DpH.jpg", "order": 6}, {"name": "Austin Pendleton", "character": "John Gibbons", "id": 6168, "credit_id": "52fe43639251416c7500e577", "cast_id": 16, "profile_path": "/pxcdhd4oAsnhvUg0BalmiiKJyXg.jpg", "order": 7}, {"name": "Raynor Scheine", "character": "Ernie Crane", "id": 21082, "credit_id": "52fe43639251416c7500e57b", "cast_id": 17, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 8}, {"name": "James Rebhorn", "character": "George Wilbur", "id": 8986, "credit_id": "52fe43639251416c7500e57f", "cast_id": 18, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 9}, {"name": "Chris Ellis", "character": "J.T.", "id": 8191, "credit_id": "52fe43639251416c7500e583", "cast_id": 19, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 10}], "directors": [{"name": "Jonathan Lynn", "department": "Directing", "job": "Director", "credit_id": "52fe43639251416c7500e541", "profile_path": "/nvMGnGbGdXrRvGAjulNqhJWUB9c.jpg", "id": 21217}], "vote_average": 7.2, "runtime": 120}, "157834": {"poster_path": "/4weMGX5UvFDYFvRp2uXuupm1PsU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A computer hacker's goal to discover the reason for human existence continually finds his work interrupted thanks to the Management; this time, they send a teenager and lusty love interest to distract him.", "video": false, "id": 157834, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Zero Theorem", "tagline": "Nothing is Everything", "vote_count": 101, "homepage": "http://www.thezerotheorem-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2333804", "adult": false, "backdrop_path": "/chS1f9wbCRvlQajAsgZqw8wSahk.jpg", "production_companies": [{"name": "Picture Perfect Corporation", "id": 27993}, {"name": "Voltage Pictures", "id": 10255}, {"name": "Zanuck Independent", "id": 6716}, {"name": "Zephyr Films", "id": 16923}, {"name": "MediaPro Pictures", "id": 11819}, {"name": "Le Pacte", "id": 5125}, {"name": "Wild Side Films", "id": 27994}], "release_date": "2013-09-02", "popularity": 1.58052727792615, "original_title": "The Zero Theorem", "budget": 0, "cast": [{"name": "Christoph Waltz", "character": "Qohen Leth", "id": 27319, "credit_id": "52fe4bd49251416c910e6f6b", "cast_id": 3, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 0}, {"name": "David Thewlis", "character": "Joby", "id": 11207, "credit_id": "52fe4bd49251416c910e6f77", "cast_id": 6, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 1}, {"name": "M\u00e9lanie Thierry", "character": "Bainsley", "id": 59373, "credit_id": "52fe4bd49251416c910e6f81", "cast_id": 8, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 2}, {"name": "Lucas Hedges", "character": "Bob", "id": 1105079, "credit_id": "52fe4bd49251416c910e6f85", "cast_id": 9, "profile_path": "/pmsZ0DDOa0PAZ5uVHbcwMb3UryS.jpg", "order": 3}, {"name": "Matt Damon", "character": "Management", "id": 1892, "credit_id": "52fe4bd49251416c910e6f67", "cast_id": 2, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 4}, {"name": "Ben Whishaw", "character": "Doctor 3", "id": 17064, "credit_id": "52fe4bd49251416c910e6f6f", "cast_id": 4, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 5}, {"name": "Tilda Swinton", "character": "Dr. Shrink-Rom", "id": 3063, "credit_id": "52fe4bd49251416c910e6f73", "cast_id": 5, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 6}, {"name": "Sanjeev Bhaskar", "character": "Doctor 1", "id": 145997, "credit_id": "53d612c70e0a26283e007035", "cast_id": 10, "profile_path": "/3cEenHNguFskMlsuhyyQj4UIDOK.jpg", "order": 7}, {"name": "Margarita Doyle", "character": "Mancom Computerised Lips", "id": 1346933, "credit_id": "53d613000e0a262838006e91", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Rupert Friend", "character": "TV Presenter", "id": 36669, "credit_id": "53d613180e0a262841006e26", "cast_id": 12, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 9}, {"name": "Peter Stormare", "character": "Doctor 2", "id": 53, "credit_id": "53d613380e0a262844006dc0", "cast_id": 13, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 10}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e6f63", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 6.0, "runtime": 107}, "157841": {"poster_path": "/fZVmbF1sL1MsZe3Bz1n4SXOl1zt.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A 12-year-old cartographer secretly leaves his family's ranch in Montana where he lives with his cowboy father and scientist mother and travels across the country on board a freight train to receive an award at the Smithsonian Institute.", "video": false, "id": 157841, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Young and Prodigious T.S. Spivet", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1981107", "adult": false, "backdrop_path": "/o86EvBA9SGAmvisXuQLLnfNKP1S.jpg", "production_companies": [{"name": "Epith\u00e8te Films", "id": 7286}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Tapioca Films", "id": 12000}], "release_date": "2013-10-16", "popularity": 0.933488831323124, "original_title": "The Young and Prodigious T.S. Spivet", "budget": 33000000, "cast": [{"name": "Kyle Catlett", "character": "T.S. Spivet", "id": 1043693, "credit_id": "52fe4bd49251416c910e6fff", "cast_id": 16, "profile_path": "/h963ot4DjREGEh1bXq2uA4psskd.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Dr. Clair", "id": 1283, "credit_id": "52fe4bd49251416c910e6fcb", "cast_id": 2, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Judy Davis", "character": "G.H. Jibsen", "id": 351, "credit_id": "52fe4bd49251416c910e6fd7", "cast_id": 5, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 2}, {"name": "Callum Keith Rennie", "character": "Father", "id": 540, "credit_id": "52fe4bd49251416c910e6fdb", "cast_id": 6, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 3}, {"name": "Niamh Wilson", "character": "Gracie", "id": 51042, "credit_id": "52fe4bd49251416c910e6fd3", "cast_id": 4, "profile_path": "/rFsDF73n6ipaF15OSSKnAXBtlSt.jpg", "order": 4}, {"name": "Jakob Davies", "character": "Layton", "id": 139618, "credit_id": "52fe4bd49251416c910e7003", "cast_id": 17, "profile_path": "/9401kh3am1lZijYUbPUnnYBrw3Z.jpg", "order": 5}, {"name": "Rick Mercer", "character": "Roy", "id": 1212661, "credit_id": "53bec0140e0a26157c0044c4", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Robert Maillet", "character": "Giant Hobo", "id": 112692, "credit_id": "52fe4bd49251416c910e6fcf", "cast_id": 3, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 7}, {"name": "Julian Richings", "character": "Ricky", "id": 2320, "credit_id": "52fe4bd49251416c910e6fdf", "cast_id": 7, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 8}, {"name": "Dominique Pinon", "character": "Two Clouds", "id": 2413, "credit_id": "52fe4bd49251416c910e6fe3", "cast_id": 8, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 9}, {"name": "Dawn Ford", "character": "Marge", "id": 1091868, "credit_id": "52fe4bd49251416c910e7037", "cast_id": 26, "profile_path": "/1aKWK9ksGeSUEwWCg3FnvNFEYBq.jpg", "order": 10}, {"name": "Lisa Bronwyn Moore", "character": "Judy", "id": 216778, "credit_id": "52fe4bd49251416c910e703b", "cast_id": 27, "profile_path": "/ggy0GUKPA6PQnszBBYbnFscqFcQ.jpg", "order": 11}, {"name": "Richard Jutras", "character": "Lecturer", "id": 1225492, "credit_id": "5453fa5dc3a36814840020a1", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "James Bradford", "character": "Smithsonian President", "id": 29468, "credit_id": "5453fa7bc3a3681473001f20", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Michel Perron", "character": "", "id": 7014, "credit_id": "5453fa890e0a2648cb00201e", "cast_id": 32, "profile_path": "/qHx0U6EattCgT6m46f9RXwRlTya.jpg", "order": 15}, {"name": "Susan Glover", "character": "", "id": 86488, "credit_id": "5453fa97c3a368147c001f1c", "cast_id": 33, "profile_path": "/7KQaRx8YpuEvVZ1mxtS32OFa83t.jpg", "order": 16}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e6fc7", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 6.8, "runtime": 105}, "10386": {"poster_path": "/ujvIxDj4sQknluvhcbJeqYVBV5p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23159305, "overview": "A giant metal machine falls to Earth and frightens the residents of a small town in Maine in 1958, until it befriends a nine-year-old boy named Hogarth and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.", "video": false, "id": 10386, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "The Iron Giant", "tagline": "It came from outer space!", "vote_count": 386, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0129167", "adult": false, "backdrop_path": "/11XLucJQvdgtchSfO0ZTbo966pp.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}], "release_date": "1999-08-06", "popularity": 1.22322261229611, "original_title": "The Iron Giant", "budget": 70000000, "cast": [{"name": "Jennifer Aniston", "character": "Annie Hughes (voice)", "id": 4491, "credit_id": "52fe43649251416c7500e86b", "cast_id": 1, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Harry Connick Jr.", "character": "Dean McCoppin (voice)", "id": 18688, "credit_id": "52fe43649251416c7500e86f", "cast_id": 2, "profile_path": "/zdIXPJyfpje8BGBjNQAe73CzSTx.jpg", "order": 1}, {"name": "Vin Diesel", "character": "The Iron Giant (voice)", "id": 12835, "credit_id": "52fe43649251416c7500e873", "cast_id": 3, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 2}, {"name": "Cloris Leachman", "character": "Mrs. Lynley Tensedge (voice)", "id": 9599, "credit_id": "52fe43649251416c7500e877", "cast_id": 4, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 3}, {"name": "James Gammon", "character": "Foreman Marv Loach / Floyd Turbeaux (voice)", "id": 16433, "credit_id": "52fe43649251416c7500e8ab", "cast_id": 15, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Kent Mansley (voice)", "id": 4443, "credit_id": "52fe43649251416c7500e8af", "cast_id": 16, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "John Mahoney", "character": "General Rogard (voice)", "id": 4251, "credit_id": "52fe43649251416c7500e8b3", "cast_id": 17, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 6}, {"name": "Eli Marienthal", "character": "Hogarth Hughes (voice)", "id": 116027, "credit_id": "52fe43649251416c7500e8b7", "cast_id": 18, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 7}, {"name": "M. Emmet Walsh", "character": "Earl Stutz (voice)", "id": 588, "credit_id": "52fe43649251416c7500e8bb", "cast_id": 19, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 8}, {"name": "Jack Angel", "character": "Additional Voices", "id": 19545, "credit_id": "52fe43649251416c7500e8bf", "cast_id": 20, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 9}, {"name": "Bob Bergen", "character": "Additional Voices", "id": 78317, "credit_id": "52fe43649251416c7500e8c3", "cast_id": 21, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 10}, {"name": "Mary Kay Bergman", "character": "Additional Voices", "id": 30695, "credit_id": "52fe43649251416c7500e8c7", "cast_id": 22, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 11}, {"name": "Michael Bird", "character": "Additional Voices", "id": 1075148, "credit_id": "52fe43649251416c7500e8cb", "cast_id": 23, "profile_path": "/7vE1uNNUi76GwwVlcnvJ6gAKIh0.jpg", "order": 12}, {"name": "Devon Cole Borisoff", "character": "Additional Voices", "id": 1075150, "credit_id": "52fe43649251416c7500e8cf", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Rodger Bumpass", "character": "Additional Voices", "id": 70615, "credit_id": "52fe43649251416c7500e8d3", "cast_id": 25, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 14}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe43649251416c7500e87d", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 7.2, "runtime": 86}, "2196": {"poster_path": "/zV4kwbDckeTMoIsbSt1lsTIZ2in.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 46, "overview": "Chaos ensues when a man tries to expose a dark secret regarding a recently deceased patriarch of a dysfunctional British family.", "video": false, "id": 2196, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Death at a Funeral", "tagline": "From director Frank Oz comes the story of a family that puts the F U in funeral.", "vote_count": 121, "homepage": "http://www.deathatafuneral-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0795368", "adult": false, "backdrop_path": "/ffXvlcmRhl0F9gyNdvTpFFa4ybt.jpg", "production_companies": [{"name": "Target Media Entertainment", "id": 1014}, {"name": "VIP 2 Medienfonds", "id": 3801}, {"name": "VIP 1 Medienfonds", "id": 10760}, {"name": "Parabolic Pictures", "id": 1012}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Stable Way Entertainment", "id": 1013}], "release_date": "2007-11-02", "popularity": 0.649206546364856, "original_title": "Death at a Funeral", "budget": 9000000, "cast": [{"name": "Matthew Macfadyen", "character": "Daniel", "id": 15576, "credit_id": "52fe4340c3a36847f8045d1d", "cast_id": 4, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 0}, {"name": "Keeley Hawes", "character": "Jane", "id": 22809, "credit_id": "52fe4340c3a36847f8045d21", "cast_id": 5, "profile_path": "/l6gt960OMUsX72Ytv2AkogldjNn.jpg", "order": 1}, {"name": "Andy Nyman", "character": "Howard", "id": 22810, "credit_id": "52fe4340c3a36847f8045d25", "cast_id": 6, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 2}, {"name": "Ewen Bremner", "character": "Justin", "id": 1125, "credit_id": "52fe4340c3a36847f8045d29", "cast_id": 7, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 3}, {"name": "Daisy Donovan", "character": "Martha", "id": 22811, "credit_id": "52fe4340c3a36847f8045d2d", "cast_id": 8, "profile_path": "/2mRIPWHALwGKuB8FtJ79gaJv3dd.jpg", "order": 4}, {"name": "Peter Vaughan", "character": "Alfie", "id": 386, "credit_id": "52fe4340c3a36847f8045d49", "cast_id": 13, "profile_path": "/z9ZplbTA1ojYhgZ8kJUKKhsJ7Gs.jpg", "order": 5}, {"name": "Jane Asher", "character": "Sandra", "id": 22969, "credit_id": "52fe4340c3a36847f8045d4d", "cast_id": 14, "profile_path": "/vL9Y4ArXO1Q4ctMYw6Q4JEeiiwm.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Peter", "id": 22970, "credit_id": "52fe4340c3a36847f8045d51", "cast_id": 15, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Peter Egan", "character": "Victor", "id": 16480, "credit_id": "52fe4340c3a36847f8045d55", "cast_id": 16, "profile_path": "/kmJJEd3MXSXzbRACya76avqSB8w.jpg", "order": 8}, {"name": "Rupert Graves", "character": "Robert", "id": 11278, "credit_id": "52fe4340c3a36847f8045d59", "cast_id": 17, "profile_path": "/wWMJKCYIaD9TKLKTKQL34jVrHjk.jpg", "order": 9}, {"name": "Kris Marshall", "character": "Troy", "id": 7058, "credit_id": "52fe4340c3a36847f8045d5d", "cast_id": 18, "profile_path": "/qFYjr7vVdSlsRD3bPlIfwft532m.jpg", "order": 10}, {"name": "Alan Tudyk", "character": "Simon", "id": 21088, "credit_id": "52fe4340c3a36847f8045d61", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 11}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe4340c3a36847f8045d0d", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.8, "runtime": 90}, "157845": {"poster_path": "/82Ig28QEEVEjAl3AGNfnLwwCi1n.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 2300000, "overview": "A decade after the collapse of the western world, Australia has become a lawless wasteland. As desperate outsiders pillage the country's precious mineral resources, taciturn Eric travels from town to town searching for signs of life.", "video": false, "id": 157845, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Rover", "tagline": "Fear the man with nothing left to lose.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2345737", "adult": false, "backdrop_path": "/yPWwmfwWJxalMXjzio3ufMhGyv6.jpg", "production_companies": [{"name": "Screen NSW", "id": 10951}, {"name": "Porchlight Films", "id": 6237}, {"name": "Screen Australia", "id": 7584}, {"name": "Blue-Tongue Films", "id": 32299}, {"name": "Lava Bear Films", "id": 32300}, {"name": "South Australian Film Corporation, The", "id": 33905}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2014-05-18", "popularity": 0.990814334878673, "original_title": "The Rover", "budget": 12250000, "cast": [{"name": "Robert Pattinson", "character": "Reynolds", "id": 11288, "credit_id": "52fe4bd49251416c910e7061", "cast_id": 1, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Eric", "id": 529, "credit_id": "52fe4bd49251416c910e7065", "cast_id": 2, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Scoot McNairy", "character": "Henry", "id": 59233, "credit_id": "52fe4bd49251416c910e707b", "cast_id": 6, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 2}, {"name": "Nash Edgerton", "character": "Town Soldier", "id": 75131, "credit_id": "52fe4bd49251416c910e707f", "cast_id": 7, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 3}, {"name": "Anthony Hayes", "character": "Sgt. Rickofferson", "id": 75711, "credit_id": "52fe4bd49251416c910e7083", "cast_id": 8, "profile_path": "/6Uros6khPptET5CgkmYkU0hJla7.jpg", "order": 4}, {"name": "Susan Prior", "character": "Dot", "id": 76069, "credit_id": "52fe4bd49251416c910e7087", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Gillian Jones", "character": "Grandma", "id": 75540, "credit_id": "52fe4bd49251416c910e708b", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Tawanda Manyimo", "character": "Caleb", "id": 1291958, "credit_id": "52fe4bd49251416c910e708f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Chan Kien", "character": "Karaoke", "id": 1410566, "credit_id": "54ae561e925141131f000f1b", "cast_id": 57, "profile_path": null, "order": 8}, {"name": "Tek Kong Lim", "character": "Karaoke", "id": 1410567, "credit_id": "54ae5637c3a368404f0011dc", "cast_id": 58, "profile_path": null, "order": 9}], "directors": [{"name": "David Mich\u00f4d", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e706b", "profile_path": "/2BD1vy3Q96l7jhXdA3t8KM8xkmP.jpg", "id": 114334}], "vote_average": 6.3, "runtime": 100}, "157847": {"poster_path": "/bvcLnoffCm67n7pZPVdJ6pluJsi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2365467, "overview": "The rough-hewn boss (Nicolas Cage) of a lumber crew courts trouble when he steps in to protect the youngest member (Tye Sheridan) of his team from an abusive father.", "video": false, "id": 157847, "genres": [{"id": 18, "name": "Drama"}], "title": "Joe", "tagline": "", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2382396", "adult": false, "backdrop_path": "/183Jzh007eOZRkrfIDAcpvhzKli.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}, {"name": "Dreambridge Films", "id": 14037}, {"name": "Rough House Pictures", "id": 20848}, {"name": "Muskat Filmed Properties", "id": 10989}], "release_date": "2013-08-30", "popularity": 1.04415488247014, "original_title": "Joe", "budget": 4000000, "cast": [{"name": "Nicolas Cage", "character": "Joe Ransom", "id": 2963, "credit_id": "52fe4bd49251416c910e70a9", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Tye Sheridan", "character": "Gary", "id": 1034681, "credit_id": "52fe4bd49251416c910e70b3", "cast_id": 3, "profile_path": "/tdplYVnd1bEWjv41B4gk8D1vLfO.jpg", "order": 1}, {"name": "Ronnie Gene Blevins", "character": "Willie", "id": 98804, "credit_id": "52fe4bd49251416c910e70b7", "cast_id": 4, "profile_path": "/oRQxtpbG1jeeUJjx1oKuLldHtol.jpg", "order": 2}, {"name": "Sue Rock", "character": "Merle", "id": 969635, "credit_id": "52fe4bd49251416c910e70bb", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Heather Kafka", "character": "Lacy", "id": 71565, "credit_id": "52fe4bd49251416c910e70bf", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Robert Johnson", "character": "Cop #1", "id": 1176993, "credit_id": "52fe4bd49251416c910e70c3", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Gary Poulter", "character": "Wade", "id": 1206062, "credit_id": "52fe4bd49251416c910e70d3", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Adriene Mishler", "character": "Connie", "id": 1049938, "credit_id": "532b39ca9251410836001b91", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Brenda Isaacs Booth", "character": "Mother Jones", "id": 229777, "credit_id": "532b39df9251410845001ac1", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Aaron Spivey-Sorrells", "character": "Sammy", "id": 205525, "credit_id": "532b39ea9251410845001ac3", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Dana Freitag", "character": "Sue", "id": 1302856, "credit_id": "532b39fd925141083f001b1c", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Anna Niemtschk", "character": "Dorothy", "id": 1372217, "credit_id": "5434f6530e0a26583400a9f9", "cast_id": 44, "profile_path": null, "order": 11}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e70af", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 6.6, "runtime": 118}, "231576": {"poster_path": "/8b54J6gCM27QodPBoBWAcC9JHnd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5483299, "overview": "Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he'd always dreamed he'd be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn't find.", "video": false, "id": 231576, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Wish I Was Here", "tagline": "Life is an occasion. Rise to it.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2870708", "adult": false, "backdrop_path": "/5ARi1zU692Bj7pAdXJUM0zGBRax.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Worldview Entertainment", "id": 9015}, {"name": "Double Feature Films", "id": 215}], "release_date": "2014-01-18", "popularity": 1.13483083055256, "original_title": "Wish I Was Here", "budget": 5500000, "cast": [{"name": "Zach Braff", "character": "Aidan Bloom", "id": 5367, "credit_id": "52fe4df1c3a36847f8275aa9", "cast_id": 1, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Sarah Bloom", "id": 11661, "credit_id": "52fe4df1c3a36847f8275ab5", "cast_id": 5, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Joey King", "character": "Grace", "id": 125025, "credit_id": "52fe4df1c3a36847f8275ab1", "cast_id": 4, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 2}, {"name": "Pierce Gagnon", "character": "Tucker", "id": 992427, "credit_id": "53c69649c3a3686266002224", "cast_id": 14, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 3}, {"name": "Donald Faison", "character": "Anthony", "id": 49002, "credit_id": "52fe4df1c3a36847f8275aad", "cast_id": 2, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 4}, {"name": "Mandy Patinkin", "character": "Saul Bloom", "id": 25503, "credit_id": "52fe4df1c3a36847f8275ab9", "cast_id": 6, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 5}, {"name": "Ashley Greene", "character": "Janine", "id": 45827, "credit_id": "52fe4df1c3a36847f8275abd", "cast_id": 7, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 6}, {"name": "Jim Parsons", "character": "Paul", "id": 5374, "credit_id": "52fe4df1c3a36847f8275ad3", "cast_id": 11, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 7}, {"name": "James Avery", "character": "Audition Actor #2", "id": 51547, "credit_id": "53c69607c3a3686266002213", "cast_id": 12, "profile_path": "/iDJcKHZ67yQv8nAeAUhM8PhQxzb.jpg", "order": 8}, {"name": "Alexander Chaplin", "character": "Rabbi Rosenberg", "id": 87951, "credit_id": "53c69628c3a36862470022f9", "cast_id": 13, "profile_path": "/yvKgSPgmmAprXMHl0HLlKvxeft6.jpg", "order": 9}, {"name": "Josh Gad", "character": "Noah", "id": 54415, "credit_id": "53c6969dc3a368624b002143", "cast_id": 15, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 10}, {"name": "Leslie David Baker", "character": "Audition Actor #1", "id": 1230842, "credit_id": "5488aae8c3a3684148001c87", "cast_id": 16, "profile_path": "/rciNlHMHmYNrjWMvXMgGSbQh529.jpg", "order": 11}, {"name": "Leslie David Baker", "character": "Audition Actor #2", "id": 1230842, "credit_id": "5488abf8c3a368415c001d5d", "cast_id": 17, "profile_path": "/rciNlHMHmYNrjWMvXMgGSbQh529.jpg", "order": 12}, {"name": "Ato Essandoh", "character": "Audition Actor #3", "id": 5377, "credit_id": "5488ad24c3a368415c001d97", "cast_id": 18, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 13}, {"name": "Mark Thudium", "character": "Terry", "id": 1397412, "credit_id": "5488af14c3a3684145001f40", "cast_id": 19, "profile_path": "/6jq6dVyqMJskhaDGd79YZiANOkv.jpg", "order": 14}, {"name": "Allan Rich", "character": "Rabbi Twersky", "id": 568531, "credit_id": "5488ba58c3a3684155001ea6", "cast_id": 20, "profile_path": "/Asmdc5LrKtjklKyWuEochYe3Rn2.jpg", "order": 15}, {"name": "Michael Weston", "character": "Jerry", "id": 51381, "credit_id": "5488bc5ac3a3682d010008bf", "cast_id": 21, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 16}, {"name": "Cody Sullivan", "character": "Jesse", "id": 1397448, "credit_id": "5488bd6fc3a36841510024ba", "cast_id": 22, "profile_path": "/y90n7Nm2PW6nJ8iy7l6mfPyHPTo.jpg", "order": 17}, {"name": "Bruce Nozick", "character": "Dr. Becker", "id": 59223, "credit_id": "5488bf5192514151fd0021d3", "cast_id": 23, "profile_path": "/z6NjMhldGtQu4g8htZHLjhkvNWj.jpg", "order": 18}, {"name": "Matt Winston", "character": "Alan", "id": 35521, "credit_id": "5488c31892514161d9000058", "cast_id": 24, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 19}, {"name": "Taylor Bagley", "character": "Janine's Friend", "id": 1397453, "credit_id": "5488c4bcc3a3686f4e000091", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "Jennifer Terry", "character": "Janine's Other Friend", "id": 1397454, "credit_id": "5488c4f9c3a3686f4a00008a", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Jackie Johnson", "character": "Female Supermarket Employee", "id": 1397455, "credit_id": "5488c54f92514161d30000a9", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Bob Clendenin", "character": "Defense Attorney", "id": 129661, "credit_id": "5488c6bdc3a3686f520000d8", "cast_id": 28, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 23}, {"name": "Silvia Curiel", "character": "Esperanza", "id": 945426, "credit_id": "5488c7da92514161d50000f8", "cast_id": 29, "profile_path": "/jPbaQ6ej6WnqkheUwhubnQA9fJk.jpg", "order": 24}, {"name": "Nichole Galicia", "character": "Juliet", "id": 1037108, "credit_id": "5488c8f1c3a3686f470000ed", "cast_id": 30, "profile_path": "/mVt9uits1dAhVNKRwJlOmbwwIeB.jpg", "order": 25}, {"name": "Charlie", "character": "Kugel", "id": 1397469, "credit_id": "5488c93392514161d5000128", "cast_id": 31, "profile_path": null, "order": 26}], "directors": [{"name": "Zach Braff", "department": "Directing", "job": "Director", "credit_id": "52fe4df1c3a36847f8275ac3", "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "id": 5367}], "vote_average": 7.0, "runtime": 120}, "157849": {"poster_path": "/iSMTe79efcxgI5jSFBAg6GjxEPs.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a half-Chechen, half-Russian, tortured half-to-death immigrant turns up in Hamburg's Islamic community, laying claim to his father's ill gotten fortune, both German and US security agencies take a close interest: as the clock ticks down and the stakes rise, the race is on to establish this most wanted man's true identity - oppressed victim or destruction-bent extremist?", "video": false, "id": 157849, "genres": [{"id": 53, "name": "Thriller"}], "title": "A Most Wanted Man", "tagline": "", "vote_count": 196, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1972571", "adult": false, "backdrop_path": "/4NSc5ZBMYuetFLpbktlcCOb7EM9.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Senator Film Produktion", "id": 191}, {"name": "Film4", "id": 9349}, {"name": "Demarest Films", "id": 13241}, {"name": "The Ink Factory", "id": 28275}, {"name": "Senator Film", "id": 36614}, {"name": "Potboiler Productions", "id": 36615}, {"name": "Amusement Park Films", "id": 36616}, {"name": "Deutscher Filmf\u00f6rderfonds (DFFF)", "id": 45198}, {"name": "Filmf\u00f6rderung Hamburg Schleswig-Holstein", "id": 45199}, {"name": "Medienboard Berlin-Brandenburg", "id": 45201}], "release_date": "2014-07-25", "popularity": 1.04714380108348, "original_title": "A Most Wanted Man", "budget": 0, "cast": [{"name": "Philip Seymour Hoffman", "character": "G\u00fcnther Bachmann", "id": 1233, "credit_id": "52fe4bd49251416c910e7109", "cast_id": 4, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Annabel Richter", "id": 53714, "credit_id": "52fe4bd49251416c910e7101", "cast_id": 2, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Robin Wright", "character": "Martha Sullivan", "id": 32, "credit_id": "52fe4bd49251416c910e710d", "cast_id": 5, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Daniel Br\u00fchl", "character": "Max", "id": 3872, "credit_id": "52fe4bd59251416c910e7111", "cast_id": 6, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 3}, {"name": "Willem Dafoe", "character": "Tommy Brue", "id": 5293, "credit_id": "52fe4bd49251416c910e7105", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 4}, {"name": "Grigoriy Dobrygin", "character": "Issa Karpov", "id": 107722, "credit_id": "52fe4bd59251416c910e7119", "cast_id": 8, "profile_path": "/lYjf1G9naB9vTzaZyMRseyB2LeM.jpg", "order": 5}, {"name": "Nina Hoss", "character": "Erna Frey", "id": 681, "credit_id": "52fe4bd59251416c910e7115", "cast_id": 7, "profile_path": "/5D6DH6PjSldIf3LkPGFSLAkMRIC.jpg", "order": 6}, {"name": "Martin Wuttke", "character": "The Admiral", "id": 49056, "credit_id": "52fe4bd59251416c910e7135", "cast_id": 13, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 7}, {"name": "Kostja Ullmann", "character": "Rasheed", "id": 5202, "credit_id": "52fe4bd59251416c910e7139", "cast_id": 14, "profile_path": "/zGlasppmZ86jmBfWXEvI77eGgaF.jpg", "order": 8}, {"name": "Rainer Bock", "character": "Dieter Mohr", "id": 65054, "credit_id": "52fe4bd59251416c910e713d", "cast_id": 15, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 9}, {"name": "Vicky Krieps", "character": "Niki", "id": 1080195, "credit_id": "52fe4bd59251416c910e7141", "cast_id": 16, "profile_path": "/4vUB4fcPeSfOp31ZybLp94bRKXU.jpg", "order": 10}, {"name": "Homayoun Ershadi", "character": "Abdullah", "id": 117528, "credit_id": "544a1b230e0a2674830037d2", "cast_id": 17, "profile_path": "/iJ7Oukp3TVfoTYdqkoVXg8ZEleJ.jpg", "order": 11}, {"name": "Mehdi Dehbi", "character": "Jamal", "id": 146358, "credit_id": "54893616c3a3686f4e000d68", "cast_id": 18, "profile_path": "/4mwfsLYlDRvH4dKY5QMmbZYDoOZ.jpg", "order": 12}, {"name": "Neil Malik Abdullah", "character": "Abdullah's Bodyguard", "id": 559593, "credit_id": "548937ff92514161d9000cf7", "cast_id": 19, "profile_path": "/5Umjh0F7LPgBEsxG8PmEDuSmWdT.jpg", "order": 13}, {"name": "Franz Hartwig", "character": "Karl", "id": 1397634, "credit_id": "548945f0c3a3686f5b000e59", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Vedat Erincin", "character": "Storekeeper", "id": 1074378, "credit_id": "548949d1c3a3686f4e000f52", "cast_id": 21, "profile_path": "/mSfMOseGjFA7uSdysq841xwl2No.jpg", "order": 15}, {"name": "Derya Alabora", "character": "Leyla Oktay", "id": 133818, "credit_id": "54894aaac3a3686f55000ff1", "cast_id": 22, "profile_path": "/gdI0Q4x6zgHaD8SRTRXYAIVQhgf.jpg", "order": 16}, {"name": "Tamer Yigit", "character": "Melik Oktay", "id": 133819, "credit_id": "54894c2bc3a3686f5500101f", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Ren\u00e9 Lay", "character": "Sparring Partner", "id": 1397639, "credit_id": "54894ca092514161cc000f6c", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "Herbert Gr\u00f6nemeyer", "character": "Michael Axelrod", "id": 5228, "credit_id": "54895016c3a3686f52001016", "cast_id": 25, "profile_path": "/sd500lUOKffH6GjTgmO72eCfmmL.jpg", "order": 19}, {"name": "Georg Ebinal", "character": "Axelrod's Driver", "id": 1397642, "credit_id": "54895074c3a3686f4e001013", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Bernhard Sch\u00fctz", "character": "Otto Keller", "id": 44516, "credit_id": "54895276c3a3686f52001048", "cast_id": 27, "profile_path": "/gAUHJJMmoXiCvLdBZwPWgo8qBSL.jpg", "order": 21}, {"name": "Jessica Joffe", "character": "Lotta", "id": 1397649, "credit_id": "54895398c3a3686f4e001052", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Imke B\u00fcchel", "character": "Frau Elli", "id": 24064, "credit_id": "548954c292514161cc001028", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Ursina Lardi", "character": "Mitzi Brue", "id": 54948, "credit_id": "54895689c3a3686f5200109d", "cast_id": 30, "profile_path": "/qyFN0VlX0Ds1EV9wajiTrvb6nzX.jpg", "order": 24}, {"name": "Uwe Dag Berlin", "character": "Tattooed Man", "id": 36406, "credit_id": "5489574f92514161c700110a", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Corinna Kropiunig", "character": "Lonely Dancing Woman", "id": 1397653, "credit_id": "5489577692514161c900103f", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Max Volkert Martens", "character": "Otto Burgdorf", "id": 33121, "credit_id": "5489587192514161cc001077", "cast_id": 33, "profile_path": "/n1xpn9lGnHkDG2jMBABmjH6dWQh.jpg", "order": 27}], "directors": [{"name": "Anton Corbijn", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e70fd", "profile_path": "/ov4kjSJGwaYnlgPCENRVexTt4q2.jpg", "id": 45052}], "vote_average": 6.5, "runtime": 121}, "157851": {"poster_path": "/AvDuz23E36zy6IPVLNNpNrlWJsb.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Led by the loathsome yet funny and touching child-star Benjie, we witness the convoluted world of shallow, selfish celebrities and their minions, all of whom are about to be manipulated and destroyed by the young woman who literally represents the fruit of their twisted machinations, Agatha, Benjie\u2019s tormented, apparently psychotic sister.", "video": false, "id": 157851, "genres": [{"id": 18, "name": "Drama"}], "title": "Maps to the Stars", "tagline": "A Film By David Cronenberg", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2172584", "adult": false, "backdrop_path": "/i1DPN19CK8rTkwyMS9iy4D9iRAO.jpg", "production_companies": [{"name": "Prospero Pictures", "id": 2844}, {"name": "Sentient Entertainment", "id": 23514}, {"name": "SBS Productions", "id": 8997}, {"name": "Integral Film", "id": 1905}], "release_date": "2014-05-21", "popularity": 0.930775528307154, "original_title": "Maps to the Stars", "budget": 0, "cast": [{"name": "Julianne Moore", "character": "Havana Segrand", "id": 1231, "credit_id": "52fe4bd59251416c910e7169", "cast_id": 4, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Mia Wasikowska", "character": "Agatha Weiss", "id": 76070, "credit_id": "52fe4bd59251416c910e716d", "cast_id": 5, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 1}, {"name": "Evan Bird", "character": "Benjie Weiss", "id": 1366725, "credit_id": "542749cec3a3680b1b000aca", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "John Cusack", "character": "Dr. Stafford Weiss", "id": 3036, "credit_id": "52fe4bd59251416c910e7161", "cast_id": 2, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 3}, {"name": "Robert Pattinson", "character": "Jerome Fontana", "id": 11288, "credit_id": "52fe4bd59251416c910e7165", "cast_id": 3, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 4}, {"name": "Sarah Gadon", "character": "Clarice Taggart", "id": 190895, "credit_id": "52fe4bd59251416c910e7175", "cast_id": 7, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 5}, {"name": "Carrie Fisher", "character": "herself", "id": 4, "credit_id": "54274a87c3a3680b25000b2f", "cast_id": 16, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 6}, {"name": "Olivia Williams", "character": "Christina Weiss", "id": 11616, "credit_id": "52fe4bd59251416c910e7171", "cast_id": 6, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 7}, {"name": "Emilia McCarthy", "character": "Kayla", "id": 1361975, "credit_id": "54274a28c3a3680b21000a52", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Niamh Wilson", "character": "Sam", "id": 51042, "credit_id": "54274a0ec3a3680b25000b1d", "cast_id": 10, "profile_path": "/rFsDF73n6ipaF15OSSKnAXBtlSt.jpg", "order": 9}, {"name": "Amanda Brugel", "character": "Victoria", "id": 1232769, "credit_id": "54274a3b0e0a26555f000c4d", "cast_id": 12, "profile_path": "/h7gjTxkROWvaKgC0YeigrbjU4lf.jpg", "order": 10}, {"name": "Jayne Heitmeyer", "character": "Azita Wachtel", "id": 29460, "credit_id": "54274a4f0e0a265575000a61", "cast_id": 13, "profile_path": "/k7fVm55V9jneIJORYc8OLBFbbjS.jpg", "order": 11}, {"name": "Clara Pasieka", "character": "Gretchen", "id": 1170844, "credit_id": "54274a62c3a3680b31000a6e", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Jennifer Gibson", "character": "Starla Gent", "id": 184815, "credit_id": "54274a77c3a3680b370009ba", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Joe Pingue", "character": "Arnold", "id": 86237, "credit_id": "54274a97c3a3680b1e000a52", "cast_id": 17, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 14}, {"name": "Jonathan Watton", "character": "Sterl Carruth", "id": 130365, "credit_id": "54274aab0e0a26556c000b2f", "cast_id": 18, "profile_path": "/U4VNM0fSMZbbY9G0lsPyW7NnU9.jpg", "order": 15}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4bd59251416c910e715d", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 5.7, "runtime": 112}, "10398": {"poster_path": "/9Pl7lqUzU7lxQHYjcmTT6ZvbbDY.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177841558, "overview": "A woman framed for her husband's murder suspects he is still alive; as she has already been tried for the crime, she can't be re-prosecuted if she finds and kills him.", "video": false, "id": 10398, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Double Jeopardy", "tagline": "Murder isn't always a crime.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0150377", "adult": false, "backdrop_path": "/o7jtzBS4OQId8yHXzPoxGzXY6oE.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1999-09-24", "popularity": 0.570529178023413, "original_title": "Double Jeopardy", "budget": 70000000, "cast": [{"name": "Tommy Lee Jones", "character": "Travis Lehman", "id": 2176, "credit_id": "52fe43669251416c7500eec3", "cast_id": 1, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Ashley Judd", "character": "Elizabeth \"Libby\" Parsons", "id": 15852, "credit_id": "52fe43669251416c7500eec7", "cast_id": 2, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 1}, {"name": "Bruce Greenwood", "character": "Nicholas \"Nick\" Parsons / Jonathan Devereaux", "id": 21089, "credit_id": "52fe43669251416c7500eecb", "cast_id": 3, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 2}, {"name": "Annabeth Gish", "character": "Angela \"Angie\" Green", "id": 49425, "credit_id": "52fe43669251416c7500eecf", "cast_id": 4, "profile_path": "/tA2iInfNHuqWvAec0wtnrji0nGw.jpg", "order": 3}, {"name": "Benjamin Weir", "character": "Matty - Age 4", "id": 942021, "credit_id": "52fe43679251416c7500eefd", "cast_id": 12, "profile_path": "/qddAUZWZ6LZsLL4IlQ0FEMEOH3N.jpg", "order": 4}, {"name": "Jay Brazeau", "character": "Bobby", "id": 63791, "credit_id": "52fe43679251416c7500ef01", "cast_id": 13, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 5}, {"name": "John Maclaren", "character": "Rudy", "id": 21021, "credit_id": "52fe43679251416c7500ef05", "cast_id": 14, "profile_path": "/bLAjD9xwJgRHk1dmTIjDV4e8rqf.jpg", "order": 6}], "directors": [{"name": "Bruce Beresford", "department": "Directing", "job": "Director", "credit_id": "52fe43669251416c7500eed5", "profile_path": "/2BM92YfwzMpFkk5IlNZfZqPmODy.jpg", "id": 5696}], "vote_average": 5.8, "runtime": 105}, "2207": {"poster_path": "/wpKBLDjNRddmH6N32ni4bASogt8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65664721, "overview": "An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.", "video": false, "id": 2207, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "16 Blocks", "tagline": "For a New York cop and his witness, the distance between life and death just got very short.", "vote_count": 212, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450232", "adult": false, "backdrop_path": "/31SqCV9NfHvGJ8n7v60fV3oMobZ.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Millennium Films", "id": 10254}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG III", "id": 10885}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "16 Block Productions", "id": 10886}, {"name": "Donners' Company", "id": 431}], "release_date": "2006-02-28", "popularity": 0.965293676385315, "original_title": "16 Blocks", "budget": 55000000, "cast": [{"name": "Bruce Willis", "character": "Jack Mosley", "id": 62, "credit_id": "52fe4341c3a36847f804622b", "cast_id": 14, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Mos Def", "character": "Eddie Bunker", "id": 4239, "credit_id": "52fe4341c3a36847f804622f", "cast_id": 15, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 1}, {"name": "David Morse", "character": "Frank Nugent", "id": 52, "credit_id": "52fe4341c3a36847f8046233", "cast_id": 16, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Jenna Stern", "character": "Diane Mosley", "id": 22820, "credit_id": "52fe4341c3a36847f8046237", "cast_id": 17, "profile_path": "/9cpTe2q0UR7tNJmJGnrYcveAxj.jpg", "order": 3}, {"name": "David Zayas", "character": "Robert Torres", "id": 22821, "credit_id": "52fe4341c3a36847f804623b", "cast_id": 18, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 4}, {"name": "Casey Sander", "character": "Captain Dan Gruber", "id": 42141, "credit_id": "52fe4341c3a36847f8046245", "cast_id": 20, "profile_path": "/aibkwqOKJK2Qf9pS7rHqsI0Xw5H.jpg", "order": 5}, {"name": "Cylk Cozart", "character": "Jimmy Mulvey", "id": 56040, "credit_id": "52fe4341c3a36847f8046249", "cast_id": 21, "profile_path": "/9jjnxj9Rhn5MRsTbkvitwUWIbG2.jpg", "order": 6}, {"name": "Robert Racki", "character": "Jerry Shue", "id": 538297, "credit_id": "52fe4341c3a36847f804624d", "cast_id": 22, "profile_path": "/xbRGlPrymqL6T2WYXoYeOwokx1v.jpg", "order": 7}, {"name": "Patrick Garrow", "character": "Touhey", "id": 190961, "credit_id": "52fe4341c3a36847f8046251", "cast_id": 23, "profile_path": "/4jcTiet490Nd6A3VvyAkt6oAWoi.jpg", "order": 8}, {"name": "Sasha Roiz", "character": "Kaller", "id": 6071, "credit_id": "52fe4341c3a36847f8046255", "cast_id": 24, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 9}, {"name": "Conrad Pla", "character": "Ortiz", "id": 21291, "credit_id": "52fe4341c3a36847f8046259", "cast_id": 25, "profile_path": "/zbuVbADIl0l02QxMLC6w0AAOyLs.jpg", "order": 10}, {"name": "Hechter Ubarry", "character": "Maldonado", "id": 243333, "credit_id": "52fe4341c3a36847f804625d", "cast_id": 26, "profile_path": "/pjvrOhOjyh0nzfiyNjObXgjCkBa.jpg", "order": 11}, {"name": "Richard Fitzpatrick", "character": "Deputy Commissioner Wagner", "id": 44103, "credit_id": "52fe4341c3a36847f8046261", "cast_id": 27, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 12}, {"name": "Peter McRobbie", "character": "Mike Sheehan", "id": 19489, "credit_id": "52fe4341c3a36847f8046265", "cast_id": 28, "profile_path": "/kx0PjY89aGd3WX1Bf1zSw3lKYvg.jpg", "order": 13}, {"name": "Michael F. Keenan", "character": "Fitzpatrick", "id": 574368, "credit_id": "52fe4341c3a36847f8046269", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Robert Clohessy", "character": "Cannova", "id": 2256, "credit_id": "52fe4341c3a36847f804626d", "cast_id": 30, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 15}, {"name": "Tig Fong", "character": "Briggs", "id": 190917, "credit_id": "52fe4341c3a36847f8046271", "cast_id": 31, "profile_path": "/6gRBRkmFqgX2Ek7ACmb1arpGmLv.jpg", "order": 16}, {"name": "David Sparrow", "character": "Holding Cell Officer", "id": 36816, "credit_id": "52fe4341c3a36847f8046275", "cast_id": 32, "profile_path": "/wpv5m3TePP3ju8lrugwUquPDaON.jpg", "order": 17}, {"name": "Beatriz Yuste", "character": "Subway Commuter", "id": 178076, "credit_id": "52fe4341c3a36847f8046279", "cast_id": 33, "profile_path": "/mMt2YKMSANAsnLQhk3St30TMIMH.jpg", "order": 18}, {"name": "Danny Lima", "character": "Russian", "id": 166436, "credit_id": "52fe4341c3a36847f804627d", "cast_id": 34, "profile_path": "/fC4zCMOTgUw7WiBD8b2pT4fjMQ9.jpg", "order": 19}, {"name": "Angela Seto", "character": "Chinese Wife", "id": 574369, "credit_id": "52fe4341c3a36847f8046281", "cast_id": 35, "profile_path": null, "order": 20}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4341c3a36847f80461e5", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.0, "runtime": 105}, "10400": {"poster_path": "/r4tTjItPX7ziaadHsvTtPK35Kw1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50668906, "overview": "The story of Rubin \"Hurricane\" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.", "video": false, "id": 10400, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hurricane", "tagline": "", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0174856", "adult": false, "backdrop_path": "/i8AGAKxZL5aXnDcXVOZK5JkkDhn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Azoff Entertainment", "id": 10619}, {"name": "Beacon Communications", "id": 919}], "release_date": "1999-09-17", "popularity": 1.04178702138651, "original_title": "The Hurricane", "budget": 38000000, "cast": [{"name": "Denzel Washington", "character": "Rubin \"Hurricane\" Carter", "id": 5292, "credit_id": "52fe43679251416c7500efa1", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Vicellous Reon Shannon", "character": "Lesra Martin", "id": 25868, "credit_id": "52fe43679251416c7500efa5", "cast_id": 2, "profile_path": "/paAiswc2A5u2jMi785nswXjjWdQ.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Lisa Peters", "id": 13549, "credit_id": "52fe43679251416c7500efa9", "cast_id": 3, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Sam Chaiton", "id": 23626, "credit_id": "52fe43679251416c7500efad", "cast_id": 4, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "John Hannah", "character": "Terry", "id": 10727, "credit_id": "53d8bd0f0e0a261c81001e8f", "cast_id": 15, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 4}, {"name": "Dan Hedaya", "character": "Della Pesca", "id": 6486, "credit_id": "547ee5b8c3a368395a000fdf", "cast_id": 16, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 5}, {"name": "Debbi Morgan", "character": "Mae Thelma", "id": 88161, "credit_id": "547ee5c7c3a3683961000ca5", "cast_id": 17, "profile_path": "/kNau0qkayNwApCQiAlX8v2H9KdW.jpg", "order": 6}, {"name": "Clancy Brown", "character": "Lt. Jimmy Williams", "id": 6574, "credit_id": "547ee5d392514124af000dfb", "cast_id": 18, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 7}, {"name": "David Paymer", "character": "Myron Bedlock", "id": 19839, "credit_id": "547ee5dec3a3683968000deb", "cast_id": 19, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 8}, {"name": "Harris Yulin", "character": "Leon Friedman", "id": 1166, "credit_id": "547ee5ed92514124b9000ee4", "cast_id": 20, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 9}, {"name": "Rod Steiger", "character": "Judge Sarokin", "id": 522, "credit_id": "547ee5f9c3a3683965000eb4", "cast_id": 21, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 10}, {"name": "Badja Djola", "character": "Mobutu", "id": 107009, "credit_id": "547ee606c3a368395c0010e6", "cast_id": 22, "profile_path": "/i5j8WpNKydvBs2Vu3cYJyXNBy3V.jpg", "order": 11}, {"name": "Vincent Pastore", "character": "Alfred Bello", "id": 47774, "credit_id": "547ee61cc3a368396f001069", "cast_id": 23, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 12}, {"name": "Al Waxman", "character": "Warden", "id": 36172, "credit_id": "547ee628c3a368396c000fc1", "cast_id": 24, "profile_path": "/8bZfhAZbKTHt2qi5B86Q4WNAGRo.jpg", "order": 13}, {"name": "David Lansbury", "character": "U.S. Court Prosecutor", "id": 80991, "credit_id": "547ee63692514124ad000e85", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Garland Whitt", "character": "John Artis", "id": 59570, "credit_id": "547ee64392514124af000e0d", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Chuck Cooper", "character": "Earl Martin", "id": 4892, "credit_id": "547ee650c3a368395c0010ef", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Brenda Denmark", "character": "Alma Martin (as Brenda Thomas Denmark)", "id": 171079, "credit_id": "547ee65fc3a368395a000ff6", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Marcia Bennett", "character": "Jean Wahl", "id": 40385, "credit_id": "547ee66dc3a368395e00104b", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Beatrice Winde", "character": "Louise Cockersham", "id": 168638, "credit_id": "547ee67ac3a368395c0010f7", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Mitchell Taylor Jr.", "character": "Young Rubin Carter", "id": 1393328, "credit_id": "547ee68692514124b9000ef8", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Bill Raymond", "character": "Paterson Judge", "id": 7576, "credit_id": "547ee693c3a368396f001081", "cast_id": 32, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 21}, {"name": "Merwin Goldsmith", "character": "Judge Larner", "id": 130724, "credit_id": "547ee69f92514124aa001037", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "John A. MacKay", "character": "Man at Falls", "id": 1393330, "credit_id": "547ee6ab92514124b9000f01", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Donnique Privott", "character": "Boy at the Falls", "id": 1393331, "credit_id": "547ee6bb92514124b6000fd4", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Moynan King", "character": "Tina Barbieri", "id": 941550, "credit_id": "547ee6c892514124ad000e98", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Gary DeWitt Marshall", "character": "Nite Spot Cabbie", "id": 944895, "credit_id": "547ee6d6c3a3683968000e05", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "John Christopher Jones", "character": "Reporter at Bar", "id": 51532, "credit_id": "547ee6e292514124ad000e9d", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Gwendolyn Mulamba", "character": "Nite Spot Woman", "id": 1393332, "credit_id": "547ee6ef92514124bb000f62", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Richard Davidson", "character": "Paterson Detective", "id": 209380, "credit_id": "547ee6fd92514124b3000ec0", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "George T. Odom", "character": "Big Ed (as George Odom)", "id": 1217610, "credit_id": "547ee70d92514124af000e29", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Tonye Patano", "character": "Woman at Prison", "id": 1214060, "credit_id": "547ee71892514124bb000f6c", "cast_id": 42, "profile_path": "/vmxQm19ncWnZDCIKsN74b13o6Rc.jpg", "order": 31}, {"name": "Fulvio Cecere", "character": "Paterson Policeman", "id": 65808, "credit_id": "547ee72492514124bb000f6e", "cast_id": 43, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 32}, {"name": "Phillip Jarrett", "character": "Soldier #1 in U.S.O. Club", "id": 23874, "credit_id": "547ee73192514124b9000f0f", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Rodney 'Bear' Jackson", "character": "Soldier #2 in U.S.O. Club (as Rodney M. Jackson)", "id": 5304, "credit_id": "547ee73fc3a3683961000cd4", "cast_id": 45, "profile_path": "/qi6H0wVTcWoaj0V6c0YfP9O17Pt.jpg", "order": 34}, {"name": "Judi Embden", "character": "Woman in U.S.O. Club", "id": 62129, "credit_id": "547ee74cc3a368395e00106e", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Terry Claybon", "character": "Emile Griffith", "id": 1393338, "credit_id": "547ee75992514124b3000ed9", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Ben Bray", "character": "Joey Giardello", "id": 59674, "credit_id": "547ee76692514124ad000eaf", "cast_id": 48, "profile_path": "/hBty1r73HUkvB30hFgrCxY2llcs.jpg", "order": 37}, {"name": "Michael Justus", "character": "Joey Cooper", "id": 1393339, "credit_id": "547ee77cc3a3683961000cdd", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Kenneth McGregor", "character": "Detective at Hospital", "id": 115856, "credit_id": "547ee7a4c3a368395a00102e", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Frank Proctor", "character": "Pittsburgh Ring Announcer", "id": 1393342, "credit_id": "547ee7bd92514124aa001056", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Peter Wylie", "character": "Pittsburgh Referee", "id": 1393343, "credit_id": "547ee7cb92514124b6000fff", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "David Gray", "character": "Pittsburgh TV Announcer", "id": 1218566, "credit_id": "547ee7d892514124aa00105f", "cast_id": 53, "profile_path": null, "order": 42}, {"name": "Joe Matheson", "character": "Philadelphia Ring Announcer", "id": 1393344, "credit_id": "547ee7e4c3a368395e001089", "cast_id": 54, "profile_path": null, "order": 43}, {"name": "Bill Lake", "character": "Philadelphia TV Announcer", "id": 166489, "credit_id": "547ee7f0c3a3683961000ceb", "cast_id": 55, "profile_path": null, "order": 44}, {"name": "Robin Ward", "character": "Reading, PA. TV Announcer", "id": 31581, "credit_id": "547ee80092514124b3000efe", "cast_id": 56, "profile_path": null, "order": 45}, {"name": "Harry Davis", "character": "Reading, PA. Referee", "id": 19787, "credit_id": "547ee80fc3a368395a001041", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Pippa Pearthree", "character": "Patty Valentine", "id": 169077, "credit_id": "547ee81a92514124b3000f02", "cast_id": 58, "profile_path": null, "order": 47}, {"name": "Jean Daigle", "character": "Detective", "id": 174952, "credit_id": "547ee827c3a3683968000e1f", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "Rob Evans", "character": "Detective at Lafayette Bar (as Robert Evans)", "id": 1393348, "credit_id": "547ee83d92514124af000e46", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Scott Gibson", "character": "Reporter at Banquet", "id": 63859, "credit_id": "547ee84ac3a3683968000e25", "cast_id": 61, "profile_path": "/7eyU1bC6wrXs9D1O67HlfufCpfN.jpg", "order": 50}, {"name": "Ann Holloway", "character": "Cashier", "id": 219407, "credit_id": "547ee857c3a368396f0010c3", "cast_id": 62, "profile_path": null, "order": 51}, {"name": "Bruce McFee", "character": "Prison Guard", "id": 82647, "credit_id": "547ee867c3a368395a00104c", "cast_id": 63, "profile_path": null, "order": 52}, {"name": "Conrad Bergschneider", "character": "Prison Guard", "id": 27586, "credit_id": "547ee87292514124b9000f42", "cast_id": 64, "profile_path": "/pQyFp7bBxyd8AjRoPugGTNeideN.jpg", "order": 53}, {"name": "Satori Shakoor", "character": "", "id": 1393349, "credit_id": "547ee87bc3a368395a001050", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "Zoran Radusinovic", "character": "", "id": 1393350, "credit_id": "547ee88392514124b6001019", "cast_id": 66, "profile_path": null, "order": 55}, {"name": "Stephen Lee Wright", "character": "", "id": 1393352, "credit_id": "547ee88ac3a3683961000cf9", "cast_id": 67, "profile_path": null, "order": 56}, {"name": "Michael Bodnar", "character": "", "id": 41658, "credit_id": "547ee89292514124af000e5b", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Carson Manning", "character": "", "id": 1239597, "credit_id": "547ee89bc3a3683961000cfe", "cast_id": 69, "profile_path": null, "order": 58}, {"name": "Debrah Ellen Waller", "character": "", "id": 1393353, "credit_id": "547ee8a392514124b600101f", "cast_id": 70, "profile_path": null, "order": 59}, {"name": "Richard Litt", "character": "", "id": 1393354, "credit_id": "547ee8ad92514124af000e66", "cast_id": 71, "profile_path": null, "order": 60}, {"name": "Adam Large", "character": "", "id": 1393355, "credit_id": "547ee8b4c3a368395c001158", "cast_id": 72, "profile_path": null, "order": 61}, {"name": "Peter Graham", "character": "Prisoner with Camera", "id": 1399075, "credit_id": "548da47a92514122f9004703", "cast_id": 91, "profile_path": null, "order": 62}, {"name": "Satori Shakoor", "character": "Prison Guard", "id": 1393349, "credit_id": "547ee8be92514124bb000fa0", "cast_id": 73, "profile_path": null, "order": 63}, {"name": "Zoran Radusinovic", "character": "Prison Guard", "id": 1393350, "credit_id": "547ee8c192514124bf000e93", "cast_id": 74, "profile_path": null, "order": 64}, {"name": "Stephen Lee Wright", "character": "Prison Guard", "id": 1393352, "credit_id": "547ee8c392514124b9000f49", "cast_id": 75, "profile_path": null, "order": 65}, {"name": "Michael Bodnar", "character": "Prison Guard", "id": 41658, "credit_id": "547ee8c692514124b3000f1e", "cast_id": 76, "profile_path": null, "order": 66}, {"name": "Carson Manning", "character": "Prison Guard", "id": 1239597, "credit_id": "547ee8c892514124b3000f20", "cast_id": 77, "profile_path": null, "order": 67}, {"name": "Debrah Ellen Waller", "character": "Prison Guard", "id": 1393353, "credit_id": "547ee8ca92514124ad000ee3", "cast_id": 78, "profile_path": null, "order": 68}, {"name": "Richard Litt", "character": "Prison Guard", "id": 1393354, "credit_id": "547ee8cdc3a368395a001063", "cast_id": 79, "profile_path": null, "order": 69}, {"name": "Adam Large", "character": "Prison Guard", "id": 1393355, "credit_id": "547ee8cf92514124aa00107c", "cast_id": 80, "profile_path": null, "order": 70}, {"name": "George Masswohl", "character": "Mechanic", "id": 1393357, "credit_id": "547ee8ee92514124b3000f27", "cast_id": 82, "profile_path": null, "order": 71}, {"name": "Lawrence Sacco", "character": "New Jersey Policeman", "id": 1393358, "credit_id": "547ee8f992514124ad000eec", "cast_id": 83, "profile_path": null, "order": 72}, {"name": "David Frisch", "character": "New Jersey Policeman", "id": 1393359, "credit_id": "547ee90492514124bf000e9f", "cast_id": 84, "profile_path": null, "order": 73}, {"name": "Ralph Brown", "character": "Federal Court Assistant Prosecutor", "id": 1393360, "credit_id": "547ee926c3a368395e0010b6", "cast_id": 85, "profile_path": null, "order": 74}, {"name": "Dyron Holmes", "character": "Reporter", "id": 1196490, "credit_id": "547ee93292514124aa001089", "cast_id": 86, "profile_path": null, "order": 75}, {"name": "Ryan Williams", "character": "Elstan Martin (as Ryann Williams)", "id": 1393361, "credit_id": "547ee953c3a3683965000f3c", "cast_id": 87, "profile_path": null, "order": 76}, {"name": "Bruce Vavrina", "character": "St. Joseph's Doctor", "id": 1393362, "credit_id": "547ee965c3a368396c00101f", "cast_id": 88, "profile_path": null, "order": 77}, {"name": "Brenda Braxton", "character": "Dancer with John Artis", "id": 1293297, "credit_id": "547ee97192514124b6001038", "cast_id": 89, "profile_path": null, "order": 78}, {"name": "Christopher Riordan", "character": "Jury Foreman", "id": 1240845, "credit_id": "547ee97e92514124b3000f41", "cast_id": 90, "profile_path": null, "order": 79}], "directors": [{"name": "Norman Jewison", "department": "Directing", "job": "Director", "credit_id": "52fe43679251416c7500efb3", "profile_path": "/yKm8CzUBaDagNFe9NLIcF3Dqhcv.jpg", "id": 13563}], "vote_average": 7.4, "runtime": 146}, "10402": {"poster_path": "/1AGR1KdIk1llaW983XsW5YsoPsI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65535067, "overview": "Deuce Bigalow is a fish tank cleaner until he gets a temporary job watching over a gigolo's house. But when Deuce accidentally wrecks the house, he is forced to compensate by becoming a gigolo himself! He takes on interesting clients (a tall Norwegian woman, a rotund eater in drag, a roommate who curses every five seconds, a nurse)...and together with a detective chasing Deuce down...", "video": false, "id": 10402, "genres": [{"id": 35, "name": "Comedy"}], "title": "Deuce Bigalow: Male Gigolo", "tagline": "He charges $10 but he\u2019s willing to negotiate.", "vote_count": 68, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/szTJbYJnm3OPwYxQKLuTtgsUsQ1.jpg", "id": 95664, "name": "Deuce Bigalow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0205000", "adult": false, "backdrop_path": "/x5a4GwJ7qLyjNQTTFGXEMtfXT95.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Quinta Communications", "id": 6370}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1999-12-10", "popularity": 0.824404259453595, "original_title": "Deuce Bigalow: Male Gigolo", "budget": 18000000, "cast": [{"name": "Rob Schneider", "character": "Deuce Bigalow", "id": 60949, "credit_id": "52fe43679251416c7500f08b", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "William Forsythe", "character": "Det. Chuck Fowler", "id": 4520, "credit_id": "52fe43679251416c7500f08f", "cast_id": 2, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 1}, {"name": "Eddie Griffin", "character": "Tiberius Jefferson \"T.J.\" Hicks", "id": 62842, "credit_id": "52fe43679251416c7500f093", "cast_id": 3, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 2}, {"name": "Arija Bareikis", "character": "Kate", "id": 33432, "credit_id": "52fe43679251416c7500f097", "cast_id": 4, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 3}, {"name": "Oded Fehr", "character": "Antoine Laconte", "id": 18041, "credit_id": "52fe43679251416c7500f0bf", "cast_id": 11, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 4}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe43679251416c7500f09d", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.8, "runtime": 88}, "9894": {"poster_path": "/mqb62jLrlrT6XS1rR8cprtEW2Z6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60240295, "overview": "When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up -- and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the \"friendship,\" Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behavior.", "video": false, "id": 9894, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Cable Guy", "tagline": "There's no such thing as free cable.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115798", "adult": false, "backdrop_path": "/9Z67nL04U2mMGQlpgcVNif9DqFz.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1996-06-10", "popularity": 0.524826099233123, "original_title": "The Cable Guy", "budget": 47000000, "cast": [{"name": "Jim Carrey", "character": "Cable Guy", "id": 206, "credit_id": "52fe4542c3a36847f80c41bd", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Steven M. Kovacs", "id": 4756, "credit_id": "52fe4542c3a36847f80c41c1", "cast_id": 2, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Robin Harris", "id": 41087, "credit_id": "52fe4542c3a36847f80c41c5", "cast_id": 3, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Jack Black", "character": "Rick", "id": 70851, "credit_id": "52fe4542c3a36847f80c41c9", "cast_id": 4, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "George Segal", "character": "Steven's father", "id": 18364, "credit_id": "52fe4542c3a36847f80c41cd", "cast_id": 5, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 4}, {"name": "Diane Baker", "character": "Steven's Mother", "id": 6930, "credit_id": "52fe4542c3a36847f80c420d", "cast_id": 19, "profile_path": "/pExT2sv2tCRBxNzGKKNf2cdYI2q.jpg", "order": 5}, {"name": "Ben Stiller", "character": "Sam Sweet / Stan Sweet", "id": 7399, "credit_id": "52fe4542c3a36847f80c4211", "cast_id": 20, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 6}, {"name": "Eric Roberts", "character": "Eric Roberts", "id": 21315, "credit_id": "52fe4542c3a36847f80c4215", "cast_id": 21, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 7}, {"name": "Janeane Garofalo", "character": "Medieval Times Waitress", "id": 21197, "credit_id": "52fe4542c3a36847f80c4219", "cast_id": 22, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 8}, {"name": "Andy Dick", "character": "Medieval Times Host", "id": 43120, "credit_id": "52fe4542c3a36847f80c421d", "cast_id": 23, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 9}, {"name": "Harry O'Reilly", "character": "Steven's Boss", "id": 28101, "credit_id": "52fe4542c3a36847f80c4221", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "David Cross", "character": "Sales Manager", "id": 212, "credit_id": "52fe4542c3a36847f80c4225", "cast_id": 25, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 11}, {"name": "Amy Stiller", "character": "Steven's Secretary", "id": 26046, "credit_id": "52fe4542c3a36847f80c4229", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Owen Wilson", "character": "Robin's Date", "id": 887, "credit_id": "52fe4542c3a36847f80c422d", "cast_id": 27, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 13}, {"name": "Keith Gibbs", "character": "Basketball Player", "id": 134772, "credit_id": "52fe4542c3a36847f80c4231", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Kathy Griffin", "character": "Cable Boy's Mother", "id": 3138, "credit_id": "5305ccd7925141349718de90", "cast_id": 30, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 15}, {"name": "Misa Koprova", "character": "Heather", "id": 198878, "credit_id": "5325584ec3a3684133002629", "cast_id": 31, "profile_path": "/AsKAZK6lscFlV8FOyTMct3N20mM.jpg", "order": 16}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe4542c3a36847f80c41d3", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 5.3, "runtime": 96}, "10428": {"poster_path": "/uu62T87qkLkapeuu7ArlnQ6tAap.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.", "video": false, "id": 10428, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hackers", "tagline": "There is no right or wrong, only fun and boring", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/yxkdsov2rx6ysCPPUEi4xIrJC3Z.jpg", "poster_path": "/1tIKPSCcICJ1wPbJESqDomqaG9f.jpg", "id": 248131, "name": "Hackers - The Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0113243", "adult": false, "backdrop_path": "/ar4ualmjUcyuNczshn16IOGmcKD.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1995-09-14", "popularity": 0.884754050670744, "original_title": "Hackers", "budget": 0, "cast": [{"name": "Jonny Lee Miller", "character": "Dade Murphy / 'Crash Override' / 'Zero Cool'", "id": 9012, "credit_id": "52fe436e9251416c750100d7", "cast_id": 16, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Kate Libby / 'Acid Burn'", "id": 11701, "credit_id": "52fe436e9251416c750100db", "cast_id": 17, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Jesse Bradford", "character": "Joey Pardella", "id": 17772, "credit_id": "52fe436e9251416c750100eb", "cast_id": 20, "profile_path": "/dOoAK7pcl1OtIcLUcs1LeFpJOJG.jpg", "order": 2}, {"name": "Matthew Lillard", "character": "Emmanuel Goldstein / 'Cereal Killer'", "id": 26457, "credit_id": "52fe436e9251416c750100ef", "cast_id": 21, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 3}, {"name": "Renoly Santiago", "character": "Ramon Sanchez / 'Phantom Phreak'", "id": 28863, "credit_id": "52fe436e9251416c750100f3", "cast_id": 22, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 4}, {"name": "Fisher Stevens", "character": "Eugene Belford / 'The Plague' / Mr. Babbage", "id": 26473, "credit_id": "52fe436e9251416c750100f7", "cast_id": 23, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 5}, {"name": "Alberta Watson", "character": "Lauren Murphy", "id": 19958, "credit_id": "52fe436e9251416c750100fb", "cast_id": 24, "profile_path": "/iy3Qgqap1U1GRqNzjoX2mFwdqD3.jpg", "order": 6}, {"name": "Laurence Mason", "character": "Paul Cook / 'Lord Nikon'", "id": 65141, "credit_id": "52fe436e9251416c750100ff", "cast_id": 25, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 7}, {"name": "Lorraine Bracco", "character": "Margo", "id": 11478, "credit_id": "52fe436e9251416c75010103", "cast_id": 26, "profile_path": "/1neO0scj7QyrrWDp1JZRrN0tA8Y.jpg", "order": 8}, {"name": "Wendell Pierce", "character": "S.S. Agent Richard Gill", "id": 17859, "credit_id": "52fe436e9251416c75010107", "cast_id": 27, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 9}, {"name": "Michael Gaston", "character": "S.S. Agent Bob", "id": 33241, "credit_id": "52fe436e9251416c7501010b", "cast_id": 28, "profile_path": "/tAmpD16aVzWbs8evbCFaed9perN.jpg", "order": 10}, {"name": "Marc Anthony", "character": "S.S. Agent Ray", "id": 47775, "credit_id": "52fe436e9251416c7501010f", "cast_id": 29, "profile_path": "/b6E5BCQkOXlxT1E4nHRyOpehuYU.jpg", "order": 11}, {"name": "Penn Jillette", "character": "Hal", "id": 37221, "credit_id": "52fe436e9251416c75010113", "cast_id": 30, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 12}, {"name": "Peter Y. Kim", "character": "Blade", "id": 65143, "credit_id": "52fe436e9251416c75010117", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Darren Lee", "character": "Razor", "id": 65142, "credit_id": "52fe436e9251416c7501011b", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Liza Walker", "character": "Laura", "id": 65145, "credit_id": "52fe436e9251416c7501012b", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Bob Sessions", "character": "Duke Ellingson", "id": 65146, "credit_id": "52fe436e9251416c75010123", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Ethan Browne", "character": "Curtis", "id": 65144, "credit_id": "52fe436e9251416c7501011f", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Blake Willett", "character": "S.S. Agent, Seattle", "id": 65147, "credit_id": "52fe436e9251416c75010127", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Max Ligosh", "character": "Young Dade Murphy / 'Zero Cool'", "id": 65148, "credit_id": "52fe436e9251416c7501012f", "cast_id": 37, "profile_path": null, "order": 19}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe436e9251416c75010097", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.6, "runtime": 107}, "1738": {"poster_path": "/dPHxHzdL5P3LYnQgdyQjTfTQwoW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18211013, "overview": "A Las Vegas magician who can see into the future is pursued by FBI agents seeking to use his abilities to prevent a nuclear terrorist attack.", "video": false, "id": 1738, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Next", "tagline": "If you can see the future, you can save it.", "vote_count": 222, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0435705", "adult": false, "backdrop_path": "/kj2Qa6KsfkKSVl1QoHamTuQha6y.jpg", "production_companies": [{"name": "Virtual Studios", "id": 449}, {"name": "Revolution Studios", "id": 497}, {"name": "Saturn Films", "id": 831}, {"name": "Paramount Pictures", "id": 4}, {"name": "Broken Road Productions", "id": 8000}], "release_date": "2007-04-26", "popularity": 0.794425724653893, "original_title": "Next", "budget": 70000000, "cast": [{"name": "Nicolas Cage", "character": "Cris Johnson", "id": 2963, "credit_id": "52fe4313c3a36847f80385e9", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Callie Ferris", "id": 1231, "credit_id": "52fe4313c3a36847f80385ed", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Tory Kittles", "character": "Cavanaugh", "id": 62645, "credit_id": "52fe4313c3a36847f8038629", "cast_id": 15, "profile_path": "/jlR3xLuJug176VllNLgyZGvozhz.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Mr. Smith", "id": 3491, "credit_id": "52fe4313c3a36847f80385f1", "cast_id": 4, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Enzo Cilenti", "character": "Mr. Jones", "id": 91494, "credit_id": "52fe4313c3a36847f803862d", "cast_id": 16, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 3}, {"name": "Peter Falk", "character": "Irv", "id": 2314, "credit_id": "52fe4313c3a36847f80385f5", "cast_id": 6, "profile_path": "/mjgykviG6rY2WlF14aeDRsvVA6x.jpg", "order": 4}, {"name": "Jessica Biel", "character": "Liz", "id": 10860, "credit_id": "52fe4313c3a36847f8038631", "cast_id": 17, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 7}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe4313c3a36847f80385fb", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 6.0, "runtime": 96}, "11804": {"poster_path": "/jilH5XTvUdF8vCo4aCWscctGG7V.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56094360, "overview": "An architect's desire to speak with his wife from beyond the grave using EVP (Electronic Voice Phenomenon), becomes an obsession with supernatural repercussions.", "video": false, "id": 11804, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "White Noise", "tagline": "The line separating the living from the dead has been crossed.", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gvg1pvlr2A7cX4CzvVwar01qWVB.jpg", "poster_path": "/vvQYwRvYQ4Q5MIwr6OSReFC5RvI.jpg", "id": 102777, "name": "White Noise Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375210", "adult": false, "backdrop_path": "/4CRg1Pw8CNNPSKK8SK5QJvcNyf3.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Brightlight Pictures", "id": 1063}, {"name": "Endgame Entertainment", "id": 1205}, {"name": "Corus", "id": 11573}, {"name": "The Movie Network (TMN)", "id": 3388}, {"name": "Province of British Columbia Film Incentive BC", "id": 11567}, {"name": "Canadian Film or Video Production Tax Credit (CPTC)", "id": 8582}], "release_date": "2005-01-07", "popularity": 0.550967231347547, "original_title": "White Noise", "budget": 10000000, "cast": [{"name": "Michael Keaton", "character": "Jonathan Rivers", "id": 2232, "credit_id": "52fe44889251416c750382e3", "cast_id": 8, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Chandra West", "character": "Anna Rivers", "id": 54634, "credit_id": "52fe44889251416c750382e7", "cast_id": 9, "profile_path": "/a7C4SveYi0E9yxQR10StOaPJTbS.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Sarah Tate", "id": 13549, "credit_id": "52fe44889251416c750382eb", "cast_id": 10, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "Ian McNeice", "character": "Raymond Price", "id": 3547, "credit_id": "52fe44889251416c750382ef", "cast_id": 11, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 3}, {"name": "Keegan Connor Tracy", "character": "Mirabelle Keegan", "id": 42710, "credit_id": "52fe44889251416c750382f3", "cast_id": 12, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 4}, {"name": "Sarah Strange", "character": "Jane", "id": 83023, "credit_id": "5456799cc3a368607500088e", "cast_id": 19, "profile_path": "/hUoOu3LSStULUTDe8B0OFrFz6EY.jpg", "order": 5}, {"name": "Nicholas Elia", "character": "Mike Rivers", "id": 65202, "credit_id": "54567a310e0a2648d2007cf6", "cast_id": 20, "profile_path": "/rA8FxBDAN9w1aeHdf88LATCtTK1.jpg", "order": 6}, {"name": "Mike Dopud", "character": "Detective Smits", "id": 64674, "credit_id": "54567a590e0a2648d60077f4", "cast_id": 21, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 7}, {"name": "Marsha Regis", "character": "Police Woman", "id": 168455, "credit_id": "54567a7e0e0a2648d60077f7", "cast_id": 22, "profile_path": null, "order": 8}], "directors": [{"name": "Geoffrey Sax", "department": "Directing", "job": "Director", "credit_id": "52fe44889251416c750382bb", "profile_path": "/jGOfYpxhMotpDiWfFDox02MH7hc.jpg", "id": 61357}], "vote_average": 6.1, "runtime": 101}, "10431": {"poster_path": "/envBC1uSYRWVj2p3Im8XbPKZ4B5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40452643, "overview": "FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?", "video": false, "id": 10431, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "War", "tagline": "Vengeance is the ultimate weapon.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0499556", "adult": false, "backdrop_path": "/p7xkGTUYTzU5IateDstefi0MBVG.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Fierce Entertainment", "id": 12138}, {"name": "Current Entertainment", "id": 972}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}, {"name": "Rogue Films", "id": 23956}], "release_date": "2007-08-24", "popularity": 1.259072803419, "original_title": "War", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Rogue", "id": 1336, "credit_id": "52fe436f9251416c75010357", "cast_id": 19, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Jason Statham", "character": "Special Agent Jack Crawford", "id": 976, "credit_id": "52fe436f9251416c7501035b", "cast_id": 20, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "John Lone", "character": "Li Chang", "id": 11389, "credit_id": "52fe436f9251416c7501035f", "cast_id": 21, "profile_path": "/qlzum4vK8Snzp65jiUVpZGYPzFE.jpg", "order": 2}, {"name": "Devon Aoki", "character": "Kira Yanagawa", "id": 6278, "credit_id": "52fe436f9251416c75010363", "cast_id": 22, "profile_path": "/mytZpvb5lykocoOCDelFy8Eqezm.jpg", "order": 3}, {"name": "Luis Guzm\u00e1n", "character": "Benny", "id": 40481, "credit_id": "52fe436f9251416c75010367", "cast_id": 23, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 4}, {"name": "Saul Rubinek", "character": "Dr. Sherman", "id": 3712, "credit_id": "52fe436f9251416c75010371", "cast_id": 25, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 5}, {"name": "Ryo Ishibashi", "character": "Shiro Yanagawa", "id": 4994, "credit_id": "52fe436f9251416c75010375", "cast_id": 26, "profile_path": "/aPyICNQIlt0kUlIbXSQ21bK2mo2.jpg", "order": 6}, {"name": "Sung Kang", "character": "Special Agent Goi", "id": 61697, "credit_id": "52fe436f9251416c75010379", "cast_id": 27, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 7}, {"name": "Andrea Roth", "character": "Jenny Crawford", "id": 44151, "credit_id": "52fe436f9251416c7501037d", "cast_id": 28, "profile_path": "/7iTt4N1bT7UmNdFyADLKMi1TwDk.jpg", "order": 8}, {"name": "Kenneth Choi", "character": "Takada", "id": 41561, "credit_id": "52fe436f9251416c75010381", "cast_id": 29, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 9}, {"name": "Mathew St. Patrick", "character": "Special Agent Wick", "id": 65195, "credit_id": "52fe436f9251416c75010385", "cast_id": 30, "profile_path": "/oWMNfUCgYoHirLZ2aSQl9UpEsxN.jpg", "order": 10}, {"name": "Nadine Velazquez", "character": "Maria", "id": 65196, "credit_id": "52fe436f9251416c75010389", "cast_id": 31, "profile_path": "/7bd8Qtmz25PtMuVN8uSzTp8wemx.jpg", "order": 11}, {"name": "Terry Chen", "character": "Special Agent Tom Lone", "id": 11677, "credit_id": "52fe436f9251416c7501038d", "cast_id": 32, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "Mark Cheng", "character": "Wu Ti", "id": 65197, "credit_id": "52fe436f9251416c75010391", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Steph Song", "character": "Diane Lone", "id": 65200, "credit_id": "52fe436f9251416c75010395", "cast_id": 34, "profile_path": "/hK72NoQGP3lb518s4kfeqMLZyl6.jpg", "order": 14}, {"name": "Kennedy Montano", "character": "Ana Chang", "id": 65199, "credit_id": "52fe436f9251416c7501039d", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Kane Kosugi", "character": "Temple Garden Warrior", "id": 65198, "credit_id": "52fe436f9251416c75010399", "cast_id": 35, "profile_path": "/5px5s4CQI5RdO8sX0wbGJEBx6EW.jpg", "order": 16}, {"name": "Eric Keenleyside", "character": "Leevie", "id": 2250, "credit_id": "52fe436f9251416c750103a1", "cast_id": 37, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 17}, {"name": "Annika Foo", "character": "Amy Lone", "id": 65201, "credit_id": "52fe436f9251416c750103a5", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Nicholas Elia", "character": "Daniel Crawford", "id": 65202, "credit_id": "52fe436f9251416c750103a9", "cast_id": 39, "profile_path": "/rA8FxBDAN9w1aeHdf88LATCtTK1.jpg", "order": 19}], "directors": [{"name": "Philip G. Atwell", "department": "Directing", "job": "Director", "credit_id": "52fe436f9251416c7501032f", "profile_path": null, "id": 65190}], "vote_average": 6.1, "runtime": 103}, "49526": {"poster_path": "/yo4lOPF5SVNbUZVeBuAb6bvfkV2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.", "video": false, "id": 49526, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Premium Rush", "tagline": "Ride Like Hell", "vote_count": 329, "homepage": "http://www.premiumrush.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1547234", "adult": false, "backdrop_path": "/Yavh2wmlZKFcqT4VIr2i4OZ4lZ.jpg", "production_companies": [{"name": "Pariah Entertainment Group", "id": 1271}], "release_date": "2012-08-24", "popularity": 1.68953793272041, "original_title": "Premium Rush", "budget": 0, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Wilee", "id": 24045, "credit_id": "52fe479ac3a36847f813e911", "cast_id": 1, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Michael Shannon", "character": "Bobby Monday", "id": 335, "credit_id": "52fe479ac3a36847f813e919", "cast_id": 3, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 1}, {"name": "Dania Ramirez", "character": "Vanessa", "id": 37046, "credit_id": "52fe479ac3a36847f813e91d", "cast_id": 4, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 2}, {"name": "Jamie Chung", "character": "Mima", "id": 78324, "credit_id": "52fe479ac3a36847f813e915", "cast_id": 2, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 3}, {"name": "Wol\u00e9 Parks", "character": "Manny", "id": 1132104, "credit_id": "52fe479ac3a36847f813e943", "cast_id": 12, "profile_path": "/gy1SONtvcsuI2GVwxSf2IUF5AEh.jpg", "order": 4}, {"name": "Aasif Mandvi", "character": "Raj", "id": 20644, "credit_id": "52fe479ac3a36847f813e94b", "cast_id": 14, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 5}, {"name": "Christopher Place", "character": "Bike Cop", "id": 204339, "credit_id": "52fe479ac3a36847f813e95b", "cast_id": 18, "profile_path": "/nHSXl6Y8ZNyv7noxTrh1uXHp0tE.jpg", "order": 6}, {"name": "Tet Wada", "character": "Office Worker", "id": 1417527, "credit_id": "54c28325c3a3687c4000e26d", "cast_id": 19, "profile_path": "/gqbYiD2Lsw0srPRgueu2wgemOGT.jpg", "order": 7}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813e923", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 6.2, "runtime": 91}, "10439": {"poster_path": "/okCXNIX9QXNXbWM9NBnKlMpYVBd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39514713, "overview": "After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it us up to three kids and their newfound feline friend to put an end to the witches' reign of terror once and for all.", "video": false, "id": 10439, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Hocus Pocus", "tagline": "It's just a bunch of Hocus Pocus.", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107120", "adult": false, "backdrop_path": "/tFNHw6u2UQ3jW1xuciD0mQmcLZn.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1993-07-16", "popularity": 1.1453092798465, "original_title": "Hocus Pocus", "budget": 28000000, "cast": [{"name": "Bette Midler", "character": "Winifred 'Winnie' Sanderson", "id": 73931, "credit_id": "52fe43719251416c75010891", "cast_id": 1, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 0}, {"name": "Sarah Jessica Parker", "character": "Sarah Sanderson", "id": 520, "credit_id": "52fe43719251416c75010895", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 1}, {"name": "Kathy Najimy", "character": "Mary Sanderson", "id": 11074, "credit_id": "52fe43719251416c75010899", "cast_id": 3, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 2}, {"name": "Omri Katz", "character": "Max Dennison", "id": 65309, "credit_id": "52fe43719251416c7501089d", "cast_id": 4, "profile_path": "/3Bci7H4Lmz4pCSeilKj8kZsSN3O.jpg", "order": 3}, {"name": "Thora Birch", "character": "Dani", "id": 2155, "credit_id": "52fe43719251416c750108a1", "cast_id": 5, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 4}, {"name": "Vinessa Shaw", "character": "Allison", "id": 5025, "credit_id": "52fe43719251416c750108e1", "cast_id": 16, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 5}, {"name": "Jodie Rivera", "character": "Emily Binx (as Amanda Shepherd)", "id": 1106749, "credit_id": "52fe43719251416c750108e5", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Jason Marsden", "character": "Thackery Binx (voice)", "id": 61983, "credit_id": "5452fae2c3a368147300020d", "cast_id": 46, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 7}, {"name": "Larry Bagby", "character": "Ernie / 'Ice'", "id": 426, "credit_id": "52fe43719251416c750108e9", "cast_id": 18, "profile_path": "/zBXOdQkskwkYCK34RnVKTVaI8DR.jpg", "order": 8}, {"name": "Tobias Jelinek", "character": "Jay", "id": 951643, "credit_id": "52fe43719251416c750108ed", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Stephanie Faracy", "character": "Jenny Dennison", "id": 14105, "credit_id": "52fe43719251416c750108f1", "cast_id": 20, "profile_path": "/tA4zlFK1ke8U15TxPMZeKdblB8P.jpg", "order": 10}, {"name": "Charles Rocket", "character": "Dave Dennison", "id": 7867, "credit_id": "52fe43719251416c750108f5", "cast_id": 21, "profile_path": "/9UJTYqaPaYNPuVTjGd0Cr4XVNqe.jpg", "order": 11}, {"name": "Doug Jones", "character": "Billy Butcherson", "id": 17005, "credit_id": "52fe43719251416c750108f9", "cast_id": 22, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 12}, {"name": "Karyn Malchus", "character": "Headless Billy Butcherson", "id": 1210516, "credit_id": "52fe43719251416c75010949", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Sean Murray", "character": "Thackery", "id": 1230381, "credit_id": "52fe43719251416c75010955", "cast_id": 45, "profile_path": "/nRkJoWGHTDp45vbJ61yJdOwGH7u.jpg", "order": 14}, {"name": "Steve Voboril", "character": "Elijah", "id": 1210517, "credit_id": "52fe43719251416c7501094d", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Norbert Weisser", "character": "Thackery's Father", "id": 6701, "credit_id": "52fe43719251416c750108fd", "cast_id": 23, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 16}, {"name": "Kathleen Freeman", "character": "Miss Olin", "id": 7210, "credit_id": "52fe43719251416c7501090d", "cast_id": 26, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 17}, {"name": "D.A. Pauley", "character": "Fireman #1", "id": 4211, "credit_id": "52fe43719251416c75010911", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Ezra Sutton", "character": "Fireman #2", "id": 1210503, "credit_id": "52fe43719251416c75010915", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Don Yesso", "character": "Bus Driver", "id": 172734, "credit_id": "52fe43719251416c75010919", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Michael McGrady", "character": "Cop", "id": 157015, "credit_id": "52fe43719251416c75010951", "cast_id": 44, "profile_path": "/1BVROvpyydpWNTBvTvxK5akRVj5.jpg", "order": 21}, {"name": "Leigh Hamilton", "character": "Cop's Girlfriend", "id": 167379, "credit_id": "52fe43719251416c7501091d", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Devon Reeves", "character": "Little Girl 'Neat Broom'", "id": 156960, "credit_id": "52fe43719251416c75010921", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Joseph Malone", "character": "Singer", "id": 170211, "credit_id": "52fe43719251416c75010925", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Jordan Redmond", "character": "Little Angel", "id": 1210513, "credit_id": "52fe43719251416c75010929", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Frank Del Boccio", "character": "Lobster Man", "id": 1210514, "credit_id": "52fe43719251416c7501092d", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Jeff Neubauer", "character": "Boy in Class", "id": 1210515, "credit_id": "52fe43719251416c75010931", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Teda Bracci", "character": "Calamity Jane", "id": 89569, "credit_id": "52fe43719251416c75010935", "cast_id": 36, "profile_path": null, "order": 28}, {"name": "Peggy Holmes", "character": "Dancer", "id": 80672, "credit_id": "52fe43719251416c75010939", "cast_id": 37, "profile_path": null, "order": 29}, {"name": "Garry Marshall", "character": "Devil (Husband) (uncredited)", "id": 1201, "credit_id": "52fe43719251416c75010941", "cast_id": 39, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 31}, {"name": "Penny Marshall", "character": "The Master's Wife (uncredited)", "id": 14911, "credit_id": "52fe43719251416c75010945", "cast_id": 40, "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "order": 32}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe43719251416c750108a7", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 6.0, "runtime": 96}, "2251": {"poster_path": "/ztenZXLECkDXTXN6KEugPVvMTIl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119137784, "overview": "Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.", "video": false, "id": 2251, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Unfaithful", "tagline": "Where do you go when you've gone too far?", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0250797", "adult": false, "backdrop_path": "/mdP4XVSJ9lfCK8PJYYrttVmZ9Xz.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Intertainment", "id": 1029}, {"name": "20th Century Fox", "id": 25}], "release_date": "2002-05-10", "popularity": 0.629790579983337, "original_title": "Unfaithful", "budget": 50000000, "cast": [{"name": "Diane Lane", "character": "Connie Sumner", "id": 2882, "credit_id": "52fe4346c3a36847f8047927", "cast_id": 12, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 0}, {"name": "Richard Gere", "character": "Ed Sumner", "id": 1205, "credit_id": "52fe4346c3a36847f804792b", "cast_id": 13, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Olivier Martinez", "character": "Paul Martel", "id": 15533, "credit_id": "52fe4346c3a36847f804792f", "cast_id": 14, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 2}, {"name": "Erik Per Sullivan", "character": "Charlie Sumner", "id": 17190, "credit_id": "52fe4346c3a36847f8047933", "cast_id": 15, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 3}, {"name": "Chad Lowe", "character": "Bill Stone", "id": 21549, "credit_id": "52fe4346c3a36847f8047937", "cast_id": 16, "profile_path": "/pskKim9BpycKRRIhxSEDQuwEwlA.jpg", "order": 4}, {"name": "Myra Lucretia Taylor", "character": "Gloria", "id": 20318, "credit_id": "52fe4346c3a36847f804793b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Michelle Monaghan", "character": "Lindsay", "id": 11705, "credit_id": "52fe4346c3a36847f804793f", "cast_id": 18, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 6}, {"name": "Kate Burton", "character": "Tracy", "id": 20879, "credit_id": "52fe4346c3a36847f8047943", "cast_id": 19, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 7}, {"name": "Margaret Colin", "character": "Sally", "id": 8985, "credit_id": "52fe4346c3a36847f8047947", "cast_id": 20, "profile_path": "/A9nBbgguaRqjssJyqTfoFIQgADV.jpg", "order": 8}], "directors": [{"name": "Adrian Lyne", "department": "Directing", "job": "Director", "credit_id": "52fe4345c3a36847f80478e7", "profile_path": null, "id": 7270}], "vote_average": 6.4, "runtime": 124}, "2252": {"poster_path": "/l6t3moPhlJ0hb2zev3GGJwxtgzc.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55112356, "overview": "A Russian teenager living in London who dies during childbirth leaves clues to a midwife in her journal that could tie her child to a rape involving a violent Russian mob family.", "video": false, "id": 2252, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Eastern Promises", "tagline": "Every sin leaves a mark.", "vote_count": 180, "homepage": "http://www.focusfeatures.com/easternpromises/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}], "imdb_id": "tt0765443", "adult": false, "backdrop_path": "/4momnziEMiFuOOFBrUHtO0VyjjX.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "BBC Films", "id": 288}, {"name": "Astral Media", "id": 2743}, {"name": "Corus Entertainment", "id": 11550}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Kudos Film and Television", "id": 20244}, {"name": "Serendipity Point Films", "id": 805}, {"name": "Scion Films", "id": 7419}, {"name": "Shine Pictures", "id": 16880}], "release_date": "2007-09-14", "popularity": 0.594274420674473, "original_title": "Eastern Promises", "budget": 51500000, "cast": [{"name": "Naomi Watts", "character": "Anna Khitrova", "id": 3489, "credit_id": "52fe4346c3a36847f80479a7", "cast_id": 8, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Viggo Mortensen", "character": "Nikolai Luzhin", "id": 110, "credit_id": "52fe4346c3a36847f80479a3", "cast_id": 7, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 1}, {"name": "Vincent Cassel", "character": "Kirill", "id": 1925, "credit_id": "52fe4346c3a36847f80479ab", "cast_id": 9, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 2}, {"name": "Armin Mueller-Stahl", "character": "Semyon", "id": 12647, "credit_id": "52fe4346c3a36847f804799f", "cast_id": 6, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 3}, {"name": "Sin\u00e9ad Cusack", "character": "Helen", "id": 11281, "credit_id": "52fe4346c3a36847f80479af", "cast_id": 10, "profile_path": "/r9eWOKN1WtE7RMDAwIhOpMRh3wL.jpg", "order": 4}, {"name": "Donald Sumpter", "character": "Yuri", "id": 20425, "credit_id": "52fe4346c3a36847f80479b3", "cast_id": 11, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 5}, {"name": "Jerzy Skolimowski", "character": "Stepan", "id": 43553, "credit_id": "52fe4346c3a36847f80479b7", "cast_id": 12, "profile_path": "/uQGDiNRAcTrOH9CNEWzTgJFkn7L.jpg", "order": 6}, {"name": "Josef Altin", "character": "Ekren", "id": 43554, "credit_id": "52fe4346c3a36847f80479bb", "cast_id": 13, "profile_path": "/lnr6IQUAyXP0y1oj7sEZgmNpzpL.jpg", "order": 7}, {"name": "Mina E. Mina", "character": "Azim", "id": 43555, "credit_id": "52fe4346c3a36847f80479bf", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Aleksander Mikic", "character": "Soyka", "id": 43556, "credit_id": "52fe4346c3a36847f80479c3", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Sarah-Jeanne Labrosse", "character": "Tatiana", "id": 79610, "credit_id": "52fe4346c3a36847f80479fd", "cast_id": 26, "profile_path": "/i3Df3vA4ZRJyn5aDpjsRcGVxQPm.jpg", "order": 10}, {"name": "Tatiana Maslany", "character": "Tatiana (voice)", "id": 61134, "credit_id": "52fe4346c3a36847f8047a01", "cast_id": 27, "profile_path": "/ab7IuPThWGtcAxxwn9po9Npk5xf.jpg", "order": 11}, {"name": "Tereza Srbov\u00e1", "character": "Kirilenko", "id": 1428513, "credit_id": "54e492cfc3a368454d00b34c", "cast_id": 63, "profile_path": null, "order": 12}, {"name": "Tamer Hassan", "character": "Chechen", "id": 39660, "credit_id": "54e492f4c3a3684897003220", "cast_id": 64, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 13}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4346c3a36847f8047983", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.9, "runtime": 100}, "2253": {"poster_path": "/ewxjB0ijJsGiXpyVgNP6BeCdKRK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200276000, "overview": "Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the F\u00fchrer.", "video": false, "id": 2253, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Valkyrie", "tagline": "Many saw evil. They dared to stop it.", "vote_count": 354, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0985699", "adult": false, "backdrop_path": "/ptNcTh2bewqzcV2qVpjDgsh6pTs.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Achte Babelsberg Film", "id": 6100}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2008-12-25", "popularity": 1.46692492157734, "original_title": "Valkyrie", "budget": 75000000, "cast": [{"name": "Tom Cruise", "character": "Claus Schenk Graf von Stauffenberg", "id": 500, "credit_id": "52fe4346c3a36847f8047a79", "cast_id": 8, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Carice van Houten", "character": "Nina Schenk Gr\u00e4fin von Stauffenberg", "id": 23229, "credit_id": "52fe4346c3a36847f8047a7d", "cast_id": 9, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 1}, {"name": "Kenneth Branagh", "character": "Henning von Tresckow", "id": 11181, "credit_id": "52fe4346c3a36847f8047a81", "cast_id": 10, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 2}, {"name": "Eddie Izzard", "character": "Erich Fellgiebel", "id": 1926, "credit_id": "52fe4346c3a36847f8047a85", "cast_id": 11, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Friedrich Olbricht", "id": 2440, "credit_id": "52fe4346c3a36847f8047a89", "cast_id": 12, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "Friedrich Fromm", "id": 207, "credit_id": "52fe4346c3a36847f8047a8d", "cast_id": 13, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "David Bamber", "character": "Adolf Hitler", "id": 26657, "credit_id": "52fe4346c3a36847f8047a9d", "cast_id": 16, "profile_path": "/chjj2qhiN49sOy2PYu32DmnX6k0.jpg", "order": 6}, {"name": "Thomas Kretschmann", "character": "Otto Ernst Remer", "id": 3491, "credit_id": "52fe4346c3a36847f8047aa1", "cast_id": 17, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 7}, {"name": "David Schofield", "character": "Erwin von Witzleben", "id": 939, "credit_id": "52fe4346c3a36847f8047aa5", "cast_id": 18, "profile_path": "/6FdYsGTI85M5s5QDbFCogmQWsOR.jpg", "order": 8}, {"name": "Kevin McNally", "character": "Carl-Friedrich Goerdeler", "id": 2449, "credit_id": "52fe4346c3a36847f8047aa9", "cast_id": 19, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 9}, {"name": "Christian Berkel", "character": "Albrecht Ritter Mertz von Quirnheim", "id": 7803, "credit_id": "52fe4346c3a36847f8047aad", "cast_id": 20, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 10}, {"name": "Gerhard Haase-Hindenberg", "character": "Hermann G\u00f6ring", "id": 39846, "credit_id": "52fe4346c3a36847f8047ab1", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Matthias Freihof", "character": "Heinrich Himmler", "id": 36746, "credit_id": "52fe4346c3a36847f8047ab5", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Halina Reijn", "character": "Margarethe Van Oven", "id": 39847, "credit_id": "52fe4346c3a36847f8047ab9", "cast_id": 23, "profile_path": "/wkXlorWKdVziK9h3g0Lizc8aO2J.jpg", "order": 13}, {"name": "Manfred-Anton Algrang", "character": "Albert Speer", "id": 39848, "credit_id": "52fe4346c3a36847f8047abd", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Werner Daehn", "character": "Ernst-John Von Freyend", "id": 39849, "credit_id": "52fe4346c3a36847f8047ac1", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Matthias Schweigh\u00f6fer", "character": "SS-Soldat im Erschie\u00dfungskommando", "id": 16808, "credit_id": "52fe4346c3a36847f8047ac5", "cast_id": 26, "profile_path": "/qp2AD7quBf4busgntuk0kd1Bsiq.jpg", "order": 16}, {"name": "Andy Gatjen", "character": "SS-Soldat", "id": 39850, "credit_id": "52fe4346c3a36847f8047ac9", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Christopher Karl Hemeyer", "character": "SS-Major", "id": 39851, "credit_id": "52fe4346c3a36847f8047acd", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Philipp von Schulthess", "character": "SS-Adjutant von Henning von Tresckow", "id": 39852, "credit_id": "52fe4346c3a36847f8047ad1", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Jamie Parker", "character": "Werner von Haeften", "id": 40633, "credit_id": "52fe4346c3a36847f8047ad5", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Terence Stamp", "character": "Ludwig Beck", "id": 28641, "credit_id": "52fe4346c3a36847f8047ad9", "cast_id": 31, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 21}, {"name": "Karl Alexander Seidel", "character": "Berthold Schenk Graf von Stauffenberg", "id": 41276, "credit_id": "52fe4346c3a36847f8047ae1", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Justus Kammerer", "character": "Heimeran Schenk Graf von Stauffenberg", "id": 41277, "credit_id": "52fe4346c3a36847f8047ae5", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Frank Christian Marx", "character": "Thomas Arnold", "id": 28586, "credit_id": "52fe4346c3a36847f8047ae9", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Florian Panzner", "character": "Leutnant Hans Wilhelm Hagen", "id": 40634, "credit_id": "5348e606c3a3684ba8000d79", "cast_id": 37, "profile_path": "/uFThrzolaV3zPRnHyEpmmB1djOx.jpg", "order": 26}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe4346c3a36847f8047a51", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 6.6, "runtime": 121}, "84174": {"poster_path": "/4lbsAlqCqXgocPdWuN6C95x2KC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11947954, "overview": "Regan is used to being first at everything. Imagine her horror and chagrin when she finds out the girl everyone called Pig Face in high school is going to tie the knot before she does! But Regan sucks it up and takes on bridesmaid duties along with her childhood pals: substance-abusing, promiscuous Gena and ditzy Katie. The single ladies are determined to put their bitterness aside and have an awesomely hedonistic bachelorette party. Armed with acerbic wit and seemingly endless supplies of coke and booze, the foul-mouthed femmes embark on one very long and emotional night filled with major wedding-dress panic, various bodily fluids, and cute ex-boyfriends.", "video": false, "id": 84174, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Bachelorette", "tagline": "Last fling, before the ring", "vote_count": 118, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1920849", "adult": false, "backdrop_path": "/hZ2TGfo6yAh3KUBLKj59CKH0NRd.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "BCDF Pictures", "id": 10290}], "release_date": "2012-09-06", "popularity": 0.45840500044259, "original_title": "Bachelorette", "budget": 3000000, "cast": [{"name": "Kirsten Dunst", "character": "Regan", "id": 205, "credit_id": "52fe48dd9251416c9109accf", "cast_id": 7, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Isla Fisher", "character": "Katie", "id": 52848, "credit_id": "52fe48dd9251416c9109acd3", "cast_id": 8, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 1}, {"name": "James Marsden", "character": "Trevor", "id": 11006, "credit_id": "52fe48dd9251416c9109acd7", "cast_id": 9, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 2}, {"name": "Lizzy Caplan", "character": "Gena", "id": 51988, "credit_id": "52fe48dd9251416c9109acdb", "cast_id": 10, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 3}, {"name": "Adam Scott", "character": "Clyde", "id": 36801, "credit_id": "52fe48dd9251416c9109acdf", "cast_id": 11, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Rebel Wilson", "character": "Becky", "id": 221581, "credit_id": "52fe48dd9251416c9109ace3", "cast_id": 12, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 5}, {"name": "Ella Rae Peck", "character": "Stefanie", "id": 83244, "credit_id": "52fe48dd9251416c9109ace7", "cast_id": 13, "profile_path": "/mKDSED8DS0mZQVj9LclrSlR4DFE.jpg", "order": 6}, {"name": "Hayes MacArthur", "character": "Dale", "id": 74930, "credit_id": "52fe48dd9251416c9109aceb", "cast_id": 14, "profile_path": "/semGIgbhjhtBR0PncRzRmdttSJz.jpg", "order": 7}, {"name": "Andrew Rannells", "character": "Manny", "id": 990369, "credit_id": "52fe48dd9251416c9109acef", "cast_id": 15, "profile_path": "/59jrwCCeVmKklDD0jmK3U7KwVi1.jpg", "order": 8}, {"name": "Ann Dowd", "character": "Victoria", "id": 43366, "credit_id": "52fe48dd9251416c9109acf3", "cast_id": 16, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 9}, {"name": "Horatio Sanz", "character": "Barely Attractive Guy", "id": 52117, "credit_id": "52fe48dd9251416c9109acf7", "cast_id": 17, "profile_path": "/rKaWVBB0PqyKuNwUfpOeRZ220oI.jpg", "order": 10}, {"name": "Kyle Bornheimer", "character": "Joe", "id": 1215836, "credit_id": "52fe48dd9251416c9109acfb", "cast_id": 18, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 11}, {"name": "Megan Neuringer", "character": "Singing Cousin 1", "id": 1242860, "credit_id": "5501aa3a925141275c002848", "cast_id": 19, "profile_path": "/a9Om0ltEdq261z5HgPOF3XBW6bo.jpg", "order": 12}], "directors": [{"name": "Leslye Headland", "department": "Directing", "job": "Director", "credit_id": "52fe48dd9251416c9109acc5", "profile_path": null, "id": 217587}], "vote_average": 5.1, "runtime": 91}, "84175": {"poster_path": "/uS6aDWRNHvr0ofjPkmvCkzy0x8d.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Hushpuppy, an intrepid six-year-old girl, lives with her father, Wink, in \u201cthe Bathtub,\u201d a southern Delta community at the edge of the world. Wink\u2019s tough love prepares her for the unraveling of the universe; for a time when he\u2019s no longer there to protect her. When Wink contracts a mysterious illness, nature flies out of whack\u2014temperatures rise, and the ice caps melt, unleashing an army of prehistoric creatures called aurochs. With the waters rising, the aurochs coming, and Wink\u2019s health fading, Hushpuppy goes in search of her lost mother.", "video": false, "id": 84175, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Beasts of the Southern Wild", "tagline": "I gotta take care of mine.", "vote_count": 132, "homepage": "http://www.welcometothebathtub.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2125435", "adult": false, "backdrop_path": "/vo420YVwVA9Lbm1gVItdtrkvGFT.jpg", "production_companies": [{"name": "Cinereach", "id": 12219}, {"name": "Court 13 Pictures", "id": 6714}, {"name": "Journeyman Pictures", "id": 2291}], "release_date": "2012-06-29", "popularity": 0.551977240034955, "original_title": "Beasts of the Southern Wild", "budget": 0, "cast": [{"name": "Quvenzhan\u00e9 Wallis", "character": "Hushpuppy", "id": 1055235, "credit_id": "52fe48dd9251416c9109ad55", "cast_id": 7, "profile_path": "/khaGuAENEdm1gnfszBJjyGuN0jl.jpg", "order": 0}, {"name": "Dwight Henry", "character": "Wink", "id": 1055236, "credit_id": "52fe48dd9251416c9109ad59", "cast_id": 8, "profile_path": "/fJZw6IV6j0qKuNRfhYmh1f3PhpT.jpg", "order": 1}, {"name": "Levy Easterly", "character": "Jean Battiste", "id": 1073500, "credit_id": "52fe48dd9251416c9109ad5d", "cast_id": 9, "profile_path": "/hlg5IK6sdVbyP7BCS7NS3HOzSPm.jpg", "order": 2}, {"name": "Gina Montana", "character": "Miss Bathsheeba", "id": 1073501, "credit_id": "52fe48dd9251416c9109ad61", "cast_id": 10, "profile_path": "/j5OEZDtDL9osjQGeOha9ZxDJNTv.jpg", "order": 3}, {"name": "Lowell Landes", "character": "Walrus", "id": 1118577, "credit_id": "52fe48dd9251416c9109ad71", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Pamela Harper", "character": "Little Jo", "id": 1118578, "credit_id": "52fe48dd9251416c9109ad75", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Amber Henry", "character": "LZA", "id": 1137369, "credit_id": "52fe48dd9251416c9109ad79", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Jonshel Alexander", "character": "Joy Strong", "id": 1137370, "credit_id": "52fe48dd9251416c9109ad7d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Nicholas Clark", "character": "Boy with Bell", "id": 1118579, "credit_id": "52fe48dd9251416c9109ad81", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Joseph Brown", "character": "Winston", "id": 1137371, "credit_id": "52fe48dd9251416c9109ad85", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Henry D. Coleman", "character": "Peter T", "id": 1137372, "credit_id": "52fe48dd9251416c9109ad89", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Kaliana Brower", "character": "T-Lou", "id": 1137373, "credit_id": "52fe48dd9251416c9109ad8d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Phillip Lawrence", "character": "Dr. Maloney", "id": 1137374, "credit_id": "52fe48dd9251416c9109ad91", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Hannah Holby", "character": "Open Arms Babysitter", "id": 1137375, "credit_id": "52fe48dd9251416c9109ad95", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Jimmy Lee Moore", "character": "Sgt. Major", "id": 1137376, "credit_id": "52fe48dd9251416c9109ad99", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Benh Zeitlin", "department": "Directing", "job": "Director", "credit_id": "52fe48dd9251416c9109ad3f", "profile_path": "/vyOv48kG3s03cwNhAWPv1Yp71D8.jpg", "id": 223516}], "vote_average": 6.7, "runtime": 93}, "75": {"poster_path": "/sM4VrptBRIFHmN7mLJZ2BaGKYNq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101371017, "overview": "'We come in peace' is not what those green men from Mars mean when they invade our planet, armed with irresistible weapons and a cruel sense of humor. This star studded cast must play victim to the alien\u2019s fun and games in this comedy homage to science fiction films of the '50s and '60s.", "video": false, "id": 75, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Mars Attacks!", "tagline": "Nice planet. We'll take it!", "vote_count": 266, "homepage": "http://marsattacks.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0116996", "adult": false, "backdrop_path": "/bAlizRLmB0yJubWCwtJyofBfY0f.jpg", "production_companies": [{"name": "Tim Burton Productions", "id": 8601}], "release_date": "1996-12-12", "popularity": 1.24848221493716, "original_title": "Mars Attacks!", "budget": 70000000, "cast": [{"name": "Jack Nicholson", "character": "President James Dale / Art Land", "id": 514, "credit_id": "52fe4214c3a36847f8002301", "cast_id": 6, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Glenn Close", "character": "First Lady Marsha Dale", "id": 515, "credit_id": "52fe4214c3a36847f8002305", "cast_id": 7, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 1}, {"name": "Annette Bening", "character": "Barbara Land", "id": 516, "credit_id": "52fe4214c3a36847f8002309", "cast_id": 8, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 2}, {"name": "Pierce Brosnan", "character": "Professor Donald Kessler", "id": 517, "credit_id": "52fe4214c3a36847f800230d", "cast_id": 9, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 3}, {"name": "Danny DeVito", "character": "Rude Gambler", "id": 518, "credit_id": "52fe4214c3a36847f8002311", "cast_id": 10, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 4}, {"name": "Martin Short", "character": "Press Secretary Jerry Ross", "id": 519, "credit_id": "52fe4214c3a36847f8002315", "cast_id": 11, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 5}, {"name": "Sarah Jessica Parker", "character": "Nathalie Lake", "id": 520, "credit_id": "52fe4214c3a36847f8002319", "cast_id": 12, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 6}, {"name": "Michael J. Fox", "character": "Jason Stone", "id": 521, "credit_id": "52fe4214c3a36847f800231d", "cast_id": 13, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 7}, {"name": "Rod Steiger", "character": "General Decker", "id": 522, "credit_id": "52fe4214c3a36847f8002321", "cast_id": 14, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 8}, {"name": "Tom Jones", "character": "Himself", "id": 523, "credit_id": "52fe4214c3a36847f8002325", "cast_id": 15, "profile_path": "/tGdzG0YIOmyjhfdTFLPrqDy1w1h.jpg", "order": 9}, {"name": "Natalie Portman", "character": "Taffy Dale", "id": 524, "credit_id": "52fe4214c3a36847f8002329", "cast_id": 16, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 10}, {"name": "Lukas Haas", "character": "Richie Norris", "id": 526, "credit_id": "52fe4214c3a36847f800232d", "cast_id": 17, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 11}, {"name": "Sylvia Sidney", "character": "Grandma Florence Norris", "id": 528, "credit_id": "52fe4214c3a36847f8002331", "cast_id": 18, "profile_path": "/A1btt1FKCXFSeLYsfC3i9JL08Op.jpg", "order": 12}, {"name": "Lisa Marie", "character": "Martian Girl", "id": 4452, "credit_id": "52fe4214c3a36847f8002377", "cast_id": 30, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 13}, {"name": "Jim Brown", "character": "Byron Williams", "id": 4774, "credit_id": "52fe4214c3a36847f800237b", "cast_id": 31, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 14}, {"name": "Pam Grier", "character": "Louise Williams", "id": 2230, "credit_id": "52fe4214c3a36847f800237f", "cast_id": 32, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f80022eb", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 5.9, "runtime": 106}, "49529": {"poster_path": "/l9NSxNdaHnzsp391kZBgaWNIeaS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 284139100, "overview": "Civil War vet John Carter is transplanted to Mars, where he discovers a lush, wildly diverse planet whose main inhabitants are 12-foot tall green barbarians. Finding himself a prisoner of these creatures, he escapes, only to encounter Dejah Thoris, Princess of Helium, who is in desperate need of a savior.", "video": false, "id": 49529, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "John Carter", "tagline": "Lost in Our World. Found in Another.", "vote_count": 862, "homepage": "http://disney.go.com/johncarter/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0401729", "adult": false, "backdrop_path": "/qFrJlsJaKr0nIbyRQbb6bdTnkHZ.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2012-03-07", "popularity": 1.59533995654365, "original_title": "John Carter", "budget": 250000000, "cast": [{"name": "Taylor Kitsch", "character": "John Carter", "id": 60900, "credit_id": "52fe479ac3a36847f813ea75", "cast_id": 5, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 0}, {"name": "Mark Strong", "character": "Matai Shang", "id": 2983, "credit_id": "52fe479ac3a36847f813ea69", "cast_id": 2, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Tars Tarkas", "id": 5293, "credit_id": "52fe479ac3a36847f813ea6d", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Ciar\u00e1n Hinds", "character": "Tardos Mors", "id": 8785, "credit_id": "52fe479ac3a36847f813ea71", "cast_id": 4, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 3}, {"name": "Samantha Morton", "character": "Sola", "id": 2206, "credit_id": "52fe479ac3a36847f813ea79", "cast_id": 7, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 4}, {"name": "Thomas Haden Church", "character": "Tal Hajus", "id": 19159, "credit_id": "52fe479ac3a36847f813ea7d", "cast_id": 8, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 5}, {"name": "Dominic West", "character": "Sab Than", "id": 17287, "credit_id": "52fe479ac3a36847f813ea81", "cast_id": 9, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 6}, {"name": "James Purefoy", "character": "Kantos Kan", "id": 17648, "credit_id": "52fe479ac3a36847f813ea85", "cast_id": 10, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 7}, {"name": "Bryan Cranston", "character": "Powell", "id": 17419, "credit_id": "52fe479ac3a36847f813ea89", "cast_id": 11, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 8}, {"name": "Polly Walker", "character": "Sarkoja", "id": 6416, "credit_id": "52fe479ac3a36847f813ea8d", "cast_id": 12, "profile_path": "/swfioO83iyf5aB2svD0tgIWlCSr.jpg", "order": 9}, {"name": "Daryl Sabara", "character": "Edgar Rice Burroughs", "id": 57675, "credit_id": "52fe479ac3a36847f813ea91", "cast_id": 13, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 10}, {"name": "Arkie Reece", "character": "Stayman #1 / Helm", "id": 89830, "credit_id": "52fe479ac3a36847f813ea95", "cast_id": 14, "profile_path": "/1g4cbjJtQOguoYIzEOp0gK8fQ1s.jpg", "order": 11}, {"name": "Davood Ghadami", "character": "Stayman #3", "id": 205278, "credit_id": "52fe479ac3a36847f813ea99", "cast_id": 15, "profile_path": "/p46W5hwCi2ucFsx0HiZVSthBQdI.jpg", "order": 12}, {"name": "Pippa Nixon", "character": "Lightmaster", "id": 218345, "credit_id": "52fe479ac3a36847f813ea9d", "cast_id": 16, "profile_path": "/iQEsVOcfRDbJfRqbemRSUEEeaB7.jpg", "order": 13}, {"name": "Lynn Collins", "character": "Dejah Thoris", "id": 21044, "credit_id": "52fe479ac3a36847f813eab3", "cast_id": 20, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 14}, {"name": "Christopher Goodman", "character": "Stockade Guard", "id": 62082, "credit_id": "54e5a58d925141529c000f89", "cast_id": 37, "profile_path": null, "order": 15}], "directors": [{"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813ea65", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}], "vote_average": 6.0, "runtime": 132}, "84184": {"poster_path": "/nYR7GrheXMfLg7OMgkhv2aHw2Fb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each other\u2019s sentences. They are forever linked in their friends\u2019 minds as the perfect couple \u2013 she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?", "video": false, "id": 84184, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Celeste & Jesse Forever", "tagline": "A Loved Story", "vote_count": 59, "homepage": "http://www.celesteandjesse.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1405365", "adult": false, "backdrop_path": "/GOEAttqxiLlFM2UNNaAjNvGkS1.jpg", "production_companies": [{"name": "Team Todd", "id": 598}], "release_date": "2012-08-03", "popularity": 0.568778444073825, "original_title": "Celeste & Jesse Forever", "budget": 0, "cast": [{"name": "Rashida Jones", "character": "Celeste", "id": 80591, "credit_id": "52fe48de9251416c9109b001", "cast_id": 1, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 0}, {"name": "Andy Samberg", "character": "Jesse", "id": 62861, "credit_id": "52fe48de9251416c9109b005", "cast_id": 2, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Scott", "id": 109, "credit_id": "52fe48de9251416c9109b00f", "cast_id": 4, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Emma Roberts", "character": "Riley", "id": 34847, "credit_id": "52fe48de9251416c9109b013", "cast_id": 5, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 3}, {"name": "Ari Graynor", "character": "Beth", "id": 71552, "credit_id": "52fe48df9251416c9109b017", "cast_id": 6, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 4}, {"name": "Eric Christian Olsen", "character": "Tucker", "id": 29020, "credit_id": "52fe48df9251416c9109b01b", "cast_id": 7, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 5}, {"name": "Janel Parrish", "character": "Savannah", "id": 93377, "credit_id": "52fe48df9251416c9109b01f", "cast_id": 8, "profile_path": "/eQBJWnvib4aEwf3Rx6E6Ev7fD0P.jpg", "order": 6}, {"name": "Chris Messina", "character": "Paul", "id": 61659, "credit_id": "52fe48df9251416c9109b035", "cast_id": 12, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 7}, {"name": "Sarah Haskins", "character": "Parent", "id": 1181324, "credit_id": "52fe48df9251416c9109b039", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Matthew Del Negro", "character": "Nick", "id": 85484, "credit_id": "52fe48df9251416c9109b03d", "cast_id": 14, "profile_path": "/cahAPp4zghvMRZPeJLFHo6Ri7UU.jpg", "order": 9}], "directors": [{"name": "Lee Toland Krieger", "department": "Directing", "job": "Director", "credit_id": "52fe48df9251416c9109b025", "profile_path": null, "id": 109745}], "vote_average": 6.3, "runtime": 91}, "2266": {"poster_path": "/5rsmOrGRqQmvTChQve87kIEJTNA.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 4857367, "overview": "Olivier Assayas, Gus Van Sant, Wes Craven and Alfonso Cuaron are among the 20 distinguished directors who contribute to this collection of 18 stories, each exploring a different aspect of Parisian life. The colourful characters in this drama include a pair of mimes, a husband trying to chose between his wife and his lover, and a married man who turns to a prostitute for advice.", "video": false, "id": 2266, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Paris, je t'aime", "tagline": "Stories of love from the heart of the city", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0401711", "adult": false, "backdrop_path": "/Alq0EOj1Ik7UJ6lueLxK5V2Oywy.jpg", "production_companies": [{"name": "Filmazure", "id": 1031}, {"name": "Pirol Stiftung", "id": 1032}, {"name": "Victoires International", "id": 1033}], "release_date": "2006-06-20", "popularity": 0.631680115921873, "original_title": "Paris, je t'aime", "budget": 13000000, "cast": [{"name": "Steve Buscemi", "character": "Touriste (Tuileries)", "id": 884, "credit_id": "52fe4347c3a36847f80482cd", "cast_id": 24, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 0}, {"name": "Axel Kiener", "character": "Axel (Tuileries)", "id": 22165, "credit_id": "52fe4347c3a36847f80482d1", "cast_id": 25, "profile_path": null, "order": 1}, {"name": "Julie Bataille", "character": "Julie (Tuileries)", "id": 21550, "credit_id": "52fe4347c3a36847f80482d5", "cast_id": 26, "profile_path": "/tET8k60OeRpTuoECHeJyZVe5hXj.jpg", "order": 2}, {"name": "Bruno Podalyd\u00e8s", "character": "L'automobiliste (Montmartre)", "id": 21769, "credit_id": "52fe4347c3a36847f80482d9", "cast_id": 27, "profile_path": "/1ENmeheKsHVUiOptPbU3CgoucLx.jpg", "order": 3}, {"name": "Florence Muller", "character": "Jeune Femme (Montmartre)", "id": 22163, "credit_id": "52fe4347c3a36847f80482dd", "cast_id": 28, "profile_path": null, "order": 4}, {"name": "Fanny Ardant", "character": "Fanny Forestier (Pigalle)", "id": 20234, "credit_id": "52fe4347c3a36847f80482e1", "cast_id": 29, "profile_path": "/ys1DzohNJqKIyefq4NzdYk5Z1vZ.jpg", "order": 5}, {"name": "Le\u00efla Bekhti", "character": "Zarka (Quais de Seine)", "id": 23383, "credit_id": "52fe4347c3a36847f80482e5", "cast_id": 30, "profile_path": "/whlTg4xpvMeeXszBGxDyQYsD0fk.jpg", "order": 6}, {"name": "Maggie Gyllenhaal", "character": "Liz (Quartier des Enfants Rouges)", "id": 1579, "credit_id": "52fe4347c3a36847f80482e9", "cast_id": 31, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 7}, {"name": "Juliette Binoche", "character": "Suzanne (Place des Victoires)", "id": 1137, "credit_id": "52fe4347c3a36847f80482ed", "cast_id": 32, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 8}, {"name": "Seydou Boro", "character": "Hassan (Place des F\u00eates)", "id": 23384, "credit_id": "52fe4347c3a36847f80482f1", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Javier C\u00e1mara", "character": "Le docteur (Bastille)", "id": 1610, "credit_id": "52fe4347c3a36847f80482f5", "cast_id": 34, "profile_path": "/pbS8PFYTSh2LqODPUuygKLmytVu.jpg", "order": 10}, {"name": "Sergio Castellitto", "character": "Le mari (Bastille)", "id": 2166, "credit_id": "52fe4347c3a36847f80482f9", "cast_id": 35, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 11}, {"name": "Martin Combes", "character": "Le gar\u00e7on (Place des Victoires)", "id": 23385, "credit_id": "52fe4347c3a36847f80482fd", "cast_id": 36, "profile_path": "/6tiMd0iKeSOKnZ1AsJ1NUMEg0OO.jpg", "order": 12}, {"name": "Willem Dafoe", "character": "Le cow-boy (Place des Victoires)", "id": 5293, "credit_id": "52fe4347c3a36847f8048301", "cast_id": 37, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 13}, {"name": "Cyril Descours", "character": "Fran\u00e7ois (Quais de Seine)", "id": 23386, "credit_id": "52fe4347c3a36847f8048305", "cast_id": 38, "profile_path": "/cQcpjz04ldYXp96zdKUazva7Ot1.jpg", "order": 14}, {"name": "Lionel Dray", "character": "Ken (Quartier des Enfants Rouges)", "id": 23387, "credit_id": "52fe4347c3a36847f8048309", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Marianne Faithfull", "character": "Marianne (Le Marais)", "id": 19995, "credit_id": "52fe4347c3a36847f804830d", "cast_id": 40, "profile_path": "/sVWt2U1im7YZcCVlW6YF9RT5yZR.jpg", "order": 16}, {"name": "Ben Gazzara", "character": "Ben (Quartier Latin)", "id": 856, "credit_id": "52fe4347c3a36847f8048311", "cast_id": 41, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 17}, {"name": "Hippolyte Girardot", "character": "Le p\u00e8re (Place des Victoires)", "id": 23388, "credit_id": "52fe4347c3a36847f8048315", "cast_id": 42, "profile_path": "/5MrRtrWxuaILbiZCYyP3y0bopop.jpg", "order": 18}, {"name": "Bob Hoskins", "character": "Bob (Pigalle)", "id": 382, "credit_id": "52fe4347c3a36847f8048319", "cast_id": 43, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 19}, {"name": "Olga Kurylenko", "character": "La vampire (Quartier de la Madeleine)", "id": 18182, "credit_id": "52fe4347c3a36847f804831d", "cast_id": 44, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 20}, {"name": "Sara Martins", "character": "Sara (Parc Monceau)", "id": 23390, "credit_id": "52fe4347c3a36847f8048321", "cast_id": 47, "profile_path": "/gXX5NfXheVoBRLibWMR2gnMrf2U.jpg", "order": 22}, {"name": "Elias McConnell", "character": "Elie (Le Marais)", "id": 19198, "credit_id": "52fe4347c3a36847f8048325", "cast_id": 48, "profile_path": "/8IEAprAbOp03JnkojHAeyzLo9RB.jpg", "order": 23}, {"name": "Yolande Moreau", "character": "La mime (Tour Eiffel)", "id": 2415, "credit_id": "52fe4347c3a36847f8048329", "cast_id": 49, "profile_path": "/9FTIYqBRisPqgT4HV30EjRg4hkb.jpg", "order": 24}, {"name": "Catalina Sandino Moreno", "character": "Ana (Loin du 16e)", "id": 5887, "credit_id": "52fe4347c3a36847f804832d", "cast_id": 50, "profile_path": "/6TsJDZOmhBxfTKFp6ldC68OW65n.jpg", "order": 25}, {"name": "Emily Mortimer", "character": "Frances (P\u00e8re-Lachaise)", "id": 1246, "credit_id": "52fe4347c3a36847f8048331", "cast_id": 51, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 26}, {"name": "Nick Nolte", "character": "Vincent (Parc Monceau)", "id": 1733, "credit_id": "52fe4347c3a36847f8048335", "cast_id": 52, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 27}, {"name": "Natalie Portman", "character": "Francine (Faubourg Saint-Denis)", "id": 524, "credit_id": "52fe4347c3a36847f8048339", "cast_id": 53, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 28}, {"name": "Paul Putner", "character": "Le mime (Tour Eiffel)", "id": 23391, "credit_id": "52fe4347c3a36847f804833d", "cast_id": 54, "profile_path": "/7cSJnqE8YlQyGNww4DFE6XFxfzG.jpg", "order": 29}, {"name": "Joana Preiss", "character": "Joana (Quartier des Enfants Rouges)", "id": 23392, "credit_id": "52fe4347c3a36847f8048341", "cast_id": 55, "profile_path": "/pWJsblNkBBcTP4iG5RZxuEBgDYc.jpg", "order": 30}, {"name": "Gena Rowlands", "character": "Gena (Quartier Latin)", "id": 4800, "credit_id": "52fe4347c3a36847f8048345", "cast_id": 56, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 31}, {"name": "Miranda Richardson", "character": "La femme au trench rouge (Bastille)", "id": 8436, "credit_id": "52fe4347c3a36847f8048349", "cast_id": 57, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 32}, {"name": "Ludivine Sagnier", "character": "Claire (Parc Monceau)", "id": 4390, "credit_id": "52fe4347c3a36847f804834d", "cast_id": 58, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 33}, {"name": "Barbet Schroeder", "character": "Monsieur Henny (Porte de Choisy)", "id": 23393, "credit_id": "52fe4347c3a36847f8048351", "cast_id": 59, "profile_path": "/zgsgO9eVfSi9BOXbjvjyVsWAE5J.jpg", "order": 34}, {"name": "Rufus Sewell", "character": "William (P\u00e8re-Lachaise)", "id": 17328, "credit_id": "52fe4347c3a36847f8048355", "cast_id": 60, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 35}, {"name": "Gaspard Ulliel", "character": "Gaspard (Le Marais)", "id": 16790, "credit_id": "52fe4347c3a36847f8048359", "cast_id": 61, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 36}, {"name": "Leonor Watling", "character": "La ma\u00eetresse (Bastille)", "id": 101, "credit_id": "52fe4347c3a36847f804835d", "cast_id": 62, "profile_path": "/6M9s0VigBmmVOBbkRTQz1K0LbN4.jpg", "order": 37}, {"name": "Elijah Wood", "character": "Le gar\u00e7on (Quartier de la Madeleine)", "id": 109, "credit_id": "52fe4347c3a36847f8048361", "cast_id": 63, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 38}, {"name": "Li Xin", "character": "Madame Li (Porte de Choisy)", "id": 23394, "credit_id": "52fe4347c3a36847f8048365", "cast_id": 64, "profile_path": null, "order": 39}, {"name": "Margo Martindale", "character": "Carol (14\u00e8me arrondissement)", "id": 452, "credit_id": "52fe4348c3a36847f8048447", "cast_id": 102, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 40}, {"name": "A\u00efssa Ma\u00efga", "character": "Sophie (Place des F\u00eates)", "id": 132429, "credit_id": "52fe4348c3a36847f80484c9", "cast_id": 124, "profile_path": "/crmb5vZhgDR6cBdyHc0hzmBg2tn.jpg", "order": 41}], "directors": [{"name": "Olivier Assayas", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804844d", "profile_path": "/bB5TzDaPHLbHxPdsYzQ1blNRcxS.jpg", "id": 21678}, {"name": "Fr\u00e9d\u00e9ric Auburtin", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048453", "profile_path": null, "id": 21126}, {"name": "Gurinder Chadha", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048459", "profile_path": "/AbUt77nmapBzaXMq9EvNNjK0ZMm.jpg", "id": 6220}, {"name": "Sylvain Chomet", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804845f", "profile_path": null, "id": 21768}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "54a0eddbc3a36851ce002eb3", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Isabel Coixet", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048471", "profile_path": null, "id": 90}, {"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048477", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}, {"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804847d", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}, {"name": "G\u00e9rard Depardieu", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048483", "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "id": 16927}, {"name": "Christopher Doyle", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048489", "profile_path": "/u7xRErdN6ya9qzOG8PVa2QshZFC.jpg", "id": 1357}, {"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804848f", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}, {"name": "Vincenzo Natali", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048495", "profile_path": "/4rdmLwBRQKs1gpjEfrTxabOUerv.jpg", "id": 5877}, {"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804849b", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}, {"name": "Walter Salles", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484a7", "profile_path": "/sqIg1ziNhNbxmAbwKY9BJ6iMUzP.jpg", "id": 8574}, {"name": "Oliver Schmitz", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484ad", "profile_path": null, "id": 21683}, {"name": "Nobuhiro Suwa", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484b3", "profile_path": "/1ILr9W6lm7WZrc0Bu59nfJeEvgP.jpg", "id": 21681}, {"name": "Daniela Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484b9", "profile_path": null, "id": 21771}, {"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484bf", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}, {"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484c5", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "54a0ed9cc3a368764f0087e4", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.9, "runtime": 120}, "84188": {"poster_path": "/1kW3cUREVpmlVUiOmZmNUOYTtSi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 319285, "overview": "Becky and Sandra aren\u2019t the best of friends. Sandra is a middle-aged manager at a fast-food restaurant; Becky is a teenaged counter girl who really needs the job. One stressful day (too many customers and too little bacon), a police officer calls, accusing Becky of stealing money from a customer\u2019s purse, which she vehemently denies. Sandra, overwhelmed by her managerial responsibilities, complies with the officer\u2019s orders to detain Becky. This choice begins a nightmare that tragically blurs the lines between expedience and prudence, legality and reason.", "video": false, "id": 84188, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Compliance", "tagline": "Power. Manipulation. Obedience.", "vote_count": 53, "homepage": "http://www.magpictures.com/compliance/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1971352", "adult": false, "backdrop_path": "/yCD1tisM8dWg1axxZDcXsmdY6hx.jpg", "production_companies": [{"name": "Bad Cop Bad Cop Film Productions", "id": 12649}, {"name": "Dogfish Pictures", "id": 12650}, {"name": "Muskat Filmed Properties", "id": 10989}], "release_date": "2012-08-24", "popularity": 0.444350257240801, "original_title": "Compliance", "budget": 0, "cast": [{"name": "Ann Dowd", "character": "Sandra", "id": 43366, "credit_id": "52fe48df9251416c9109b0cf", "cast_id": 3, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 0}, {"name": "Dreama Walker", "character": "Becky", "id": 74303, "credit_id": "52fe48df9251416c9109b0d3", "cast_id": 4, "profile_path": "/s0d0pYG4ZECFGt87bBu4iEORh0K.jpg", "order": 1}, {"name": "Pat Healy", "character": "Officer Daniels", "id": 60846, "credit_id": "52fe48df9251416c9109b0d7", "cast_id": 5, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 2}, {"name": "Philip Ettinger", "character": "Kevin", "id": 211991, "credit_id": "52fe48df9251416c9109b0db", "cast_id": 6, "profile_path": "/uRKNDo4N49I7tc9mGruT6gKApj4.jpg", "order": 3}, {"name": "James McCaffrey", "character": "Detective Neals", "id": 155173, "credit_id": "52fe48df9251416c9109b0df", "cast_id": 7, "profile_path": "/hE228gPvpr5OTWvm17X3guPJ6bF.jpg", "order": 4}, {"name": "Ashlie Atkinson", "character": "Marti", "id": 77264, "credit_id": "52fe48df9251416c9109b0e3", "cast_id": 8, "profile_path": "/h0ykP84QXTDLxfzizdQaFXZzzY8.jpg", "order": 5}, {"name": "Bill Camp", "character": "Van", "id": 121718, "credit_id": "52fe48df9251416c9109b0e7", "cast_id": 9, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 6}, {"name": "Nikiya Mathis", "character": "Connie", "id": 1137379, "credit_id": "52fe48df9251416c9109b0f1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Ralph Rodriguez", "character": "Julio", "id": 1104350, "credit_id": "52fe48df9251416c9109b0f5", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Stephen Payne", "character": "Harold", "id": 616517, "credit_id": "52fe48df9251416c9109b0f9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Amelia Fowler", "character": "Brie", "id": 1137380, "credit_id": "52fe48df9251416c9109b0fd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "John Merolla", "character": "Customer", "id": 1137381, "credit_id": "52fe48df9251416c9109b101", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Desmin Borges", "character": "Officer Morris", "id": 972079, "credit_id": "52fe48df9251416c9109b105", "cast_id": 16, "profile_path": "/kCvZU59nmeHx5NWr0xTHROAqvVm.jpg", "order": 12}, {"name": "Matt Skibiak", "character": "Robert Gilmour", "id": 1137382, "credit_id": "52fe48df9251416c9109b109", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Craig Zobel", "department": "Directing", "job": "Director", "credit_id": "52fe48df9251416c9109b0c5", "profile_path": null, "id": 79434}], "vote_average": 6.3, "runtime": 90}, "49530": {"poster_path": "/lnYuAr3QOPzvuEFlzpsRUq41IEy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173930596, "overview": "In the not-too-distant future the aging gene has been switched off. To avoid overpopulation, time has become the currency and the way people pay for luxuries and necessities. The rich can live forever, while the rest try to negotiate for their immortality. A poor young man who comes into a fortune of time, though too late to help his mother from dying. He ends up on the run from a corrupt police force known as 'time keepers'.", "video": false, "id": 49530, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "In Time", "tagline": "Time Is Power", "vote_count": 1108, "homepage": "http://www.intimemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1637688", "adult": false, "backdrop_path": "/cnGPiAd7D50YFcpt6HK7CwTUCew.jpg", "production_companies": [{"name": "Strike Entertainment", "id": 655}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2011-10-27", "popularity": 2.19067355336019, "original_title": "In Time", "budget": 40000000, "cast": [{"name": "Justin Timberlake", "character": "Will Salas", "id": 12111, "credit_id": "52fe479ac3a36847f813eb8b", "cast_id": 11, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 0}, {"name": "Amanda Seyfried", "character": "Sylvia Weis", "id": 71070, "credit_id": "52fe479ac3a36847f813eb7f", "cast_id": 8, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 1}, {"name": "Cillian Murphy", "character": "Timekeeper Raymond Leon", "id": 2037, "credit_id": "52fe479ac3a36847f813eb87", "cast_id": 10, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 2}, {"name": "Olivia Wilde", "character": "Rachel Salas", "id": 59315, "credit_id": "52fe479ac3a36847f813eb77", "cast_id": 6, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 3}, {"name": "Alex Pettyfer", "character": "Fortis", "id": 61363, "credit_id": "52fe479ac3a36847f813eb7b", "cast_id": 7, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 4}, {"name": "Johnny Galecki", "character": "Borel", "id": 16478, "credit_id": "52fe479ac3a36847f813eb83", "cast_id": 9, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 5}, {"name": "Matt Bomer", "character": "Henry Hamilton", "id": 66743, "credit_id": "52fe479ac3a36847f813eb8f", "cast_id": 12, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 6}, {"name": "Vincent Kartheiser", "character": "Philippe Weis", "id": 52646, "credit_id": "52fe479ac3a36847f813eb93", "cast_id": 15, "profile_path": "/zgSvuYVE59Ry9Q2qIXM7XAe8R03.jpg", "order": 7}, {"name": "Yaya DaCosta", "character": "Greta", "id": 60033, "credit_id": "52fe479ac3a36847f813eb97", "cast_id": 16, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 8}, {"name": "Toby Hemingway", "character": "Timekeeper Kors", "id": 60901, "credit_id": "52fe479ac3a36847f813eb9b", "cast_id": 17, "profile_path": "/b5ZlB5Ct7xRg4ypRjAA7mjFA1Jq.jpg", "order": 9}, {"name": "Bella Heathcote", "character": "Michele Weis", "id": 234982, "credit_id": "52fe479ac3a36847f813eba7", "cast_id": 20, "profile_path": "/iqk9bZnrkLhIQbHPyrGcMK0Bzni.jpg", "order": 12}, {"name": "Shyloh Oostwald", "character": "Maya", "id": 1011100, "credit_id": "52fe479ac3a36847f813ebb5", "cast_id": 24, "profile_path": "/Am2bhaE5GxyEo6Lw7xqcGY7h84U.jpg", "order": 14}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813eb73", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 6.6, "runtime": 109}, "2270": {"poster_path": "/A9gXvPOnMu961E36x5p3RT4FQ5E.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IS", "name": "Iceland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135560026, "overview": "In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm. His journey takes him into a world beyond his wildest dreams and reveals his true identity.", "video": false, "id": 2270, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Stardust", "tagline": "The fairytale that won't behave", "vote_count": 346, "homepage": "http://www.stardustmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0486655", "adult": false, "backdrop_path": "/q9FPpi6AkccX3nfQoA22P5S1HFp.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Marv Films", "id": 5374}, {"name": "Vaughn Productions", "id": 23420}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2007-08-09", "popularity": 1.04858984008042, "original_title": "Stardust", "budget": 70000000, "cast": [{"name": "Charlie Cox", "character": "Tristan", "id": 23458, "credit_id": "52fe4349c3a36847f80488a5", "cast_id": 23, "profile_path": "/zxkaGPuJ7MfO7s1uOhVqBdYqW9z.jpg", "order": 0}, {"name": "Claire Danes", "character": "Yvaine", "id": 6194, "credit_id": "52fe4349c3a36847f80488a9", "cast_id": 24, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Cap. Shakespeare", "id": 380, "credit_id": "52fe4349c3a36847f80488ad", "cast_id": 25, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Lamia", "id": 1160, "credit_id": "52fe4349c3a36847f80488b5", "cast_id": 27, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Sienna Miller", "character": "Victoria", "id": 23459, "credit_id": "52fe4349c3a36847f80488b1", "cast_id": 26, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 4}, {"name": "Jason Flemyng", "character": "Primus", "id": 973, "credit_id": "52fe4349c3a36847f80488b9", "cast_id": 28, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Ian McKellen", "character": "Narrator", "id": 1327, "credit_id": "52fe4349c3a36847f80488bd", "cast_id": 29, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 6}, {"name": "Mark Strong", "character": "Septimus", "id": 2983, "credit_id": "52fe4349c3a36847f80488d3", "cast_id": 35, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 7}, {"name": "Peter O'Toole", "character": "King of Stormhold", "id": 11390, "credit_id": "52fe4349c3a36847f80488d7", "cast_id": 36, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 8}, {"name": "Henry Cavill", "character": "Humphrey", "id": 73968, "credit_id": "52fe4349c3a36847f80488e7", "cast_id": 39, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 9}, {"name": "Ben Barnes", "character": "Young Dunstan", "id": 25130, "credit_id": "52fe4349c3a36847f80488eb", "cast_id": 40, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 10}, {"name": "Olivia Grant", "character": "Girl Bernard", "id": 209630, "credit_id": "52fe4349c3a36847f80488ef", "cast_id": 41, "profile_path": "/mc8psLLszJ8Pm59Pc8aR4go0W6M.jpg", "order": 11}, {"name": "Adam Buxton", "character": "Quintus", "id": 155532, "credit_id": "52fe4349c3a36847f80488f3", "cast_id": 42, "profile_path": "/zL31NlBBKL1NTjR48h610by5Rld.jpg", "order": 12}, {"name": "Sarah Alexander", "character": "Empusa", "id": 84035, "credit_id": "52fe4349c3a36847f80488f7", "cast_id": 43, "profile_path": "/veVkPVejJ8OqMqGOh4XcXchKO3a.jpg", "order": 13}, {"name": "Kate Magowan", "character": "Una / Slave Girl", "id": 71282, "credit_id": "546fc77f92514112e70035f3", "cast_id": 46, "profile_path": "/hTZYJt7UhRfSVk17zYGdbH0EDwP.jpg", "order": 14}, {"name": "David Kelly", "character": "Wall Guardian", "id": 1282, "credit_id": "546fc7ddc3a3682fa7002f57", "cast_id": 47, "profile_path": "/jxPBAzbia65yJAsNxoyGQri5Bah.jpg", "order": 15}, {"name": "Nathaniel Parker", "character": "Billy (Goat)", "id": 27631, "credit_id": "546fc87a92514112e9002ef1", "cast_id": 49, "profile_path": "/w5SnRNxxY00lIDPB1SUh47nx46n.jpg", "order": 17}, {"name": "Mark Williams", "character": "Billy (Goat)", "id": 20999, "credit_id": "546fc8c29251417066000e3c", "cast_id": 50, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 18}, {"name": "Dexter Fletcher", "character": "Skinny Pirate", "id": 974, "credit_id": "546fc8e6c3a3682ad50004bf", "cast_id": 51, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 19}, {"name": "Ricky Gervais", "character": "Ferdy the Fence", "id": 17835, "credit_id": "546fc90692514112e700363b", "cast_id": 52, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 20}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804882f", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.8, "runtime": 127}, "10466": {"poster_path": "/vzUfCSAXDIQemW6Kdk2RU2JtfiV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54999651, "overview": "After being evicted from their Manhattan apartment, a couple buy what looks like the home of their dreams - only to find themselves saddled with a bank-account-draining nightmare. Struggling to keep their relationship together as their rambling mansion falls to pieces around them, the two watch in hilarious horror as everything - including the kitchen sink, disppears into the Money Pit.", "video": false, "id": 10466, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Money Pit", "tagline": "For everyone who's ever been deeply in Love or deeply in debt.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091541", "adult": false, "backdrop_path": "/vgmU9aR1vGsCxl8Hr8D8970HIwe.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Universal Pictures", "id": 33}], "release_date": "1986-03-15", "popularity": 1.08992261956105, "original_title": "The Money Pit", "budget": 10000000, "cast": [{"name": "Tom Hanks", "character": "Walter Fielding, Jr.", "id": 31, "credit_id": "52fe43759251416c75011265", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Shelley Long", "character": "Anna Crowley Beissart", "id": 56881, "credit_id": "52fe43759251416c75011269", "cast_id": 2, "profile_path": "/AayPPPyPLi4rxNoU3NCZiq3h2yp.jpg", "order": 1}, {"name": "Alexander Godunov", "character": "Max Beissart", "id": 7674, "credit_id": "52fe43759251416c7501126d", "cast_id": 3, "profile_path": "/lZyg3u3i2OrJJMKGhHDglln5GUm.jpg", "order": 2}, {"name": "Maureen Stapleton", "character": "Estelle", "id": 21151, "credit_id": "52fe43759251416c75011271", "cast_id": 4, "profile_path": "/w0H1432eANSJBjk6SG6xOVWnfuW.jpg", "order": 3}, {"name": "Joe Mantegna", "character": "Art Shirk", "id": 3266, "credit_id": "52fe43759251416c75011275", "cast_id": 5, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 4}, {"name": "Leslie West", "character": "Lana", "id": 238615, "credit_id": "52fe43759251416c750112b5", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Philip Bosco", "character": "Curly", "id": 6541, "credit_id": "52fe43759251416c750112b9", "cast_id": 17, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 6}, {"name": "Josh Mostel", "character": "Jack Schnittman", "id": 33489, "credit_id": "52fe43759251416c750112bd", "cast_id": 18, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 7}, {"name": "Yakov Smirnoff", "character": "Shatov", "id": 159755, "credit_id": "52fe43759251416c750112c1", "cast_id": 19, "profile_path": "/aum8vNjkCQTpLhqxri6PMaBIisV.jpg", "order": 8}, {"name": "Carmine Caridi", "character": "Brad Shirk", "id": 133853, "credit_id": "52fe43759251416c750112c5", "cast_id": 20, "profile_path": "/1BQ7WLUtywjSWoH2G08VixhJXLG.jpg", "order": 9}, {"name": "Brian Backer", "character": "Ethan", "id": 118946, "credit_id": "52fe43759251416c750112c9", "cast_id": 21, "profile_path": "/fUs5ipPXE3jdTSkxoC75tMML1Fz.jpg", "order": 10}, {"name": "Billy Lombardo", "character": "Benny", "id": 1105814, "credit_id": "52fe43759251416c750112cd", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "John van Dreelen", "character": "Carlos", "id": 24554, "credit_id": "546620b0c3a3683b280001b6", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Douglass Watson", "character": "Walter Fielding, Sr.", "id": 124934, "credit_id": "52fe43759251416c750112d9", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Lucille Dobrin", "character": "Macumba Lady", "id": 1105816, "credit_id": "52fe43759251416c750112dd", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Mia Dillon", "character": "Marika", "id": 1218005, "credit_id": "5538c11f9251416518008dff", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Richard Benjamin", "department": "Directing", "job": "Director", "credit_id": "52fe43759251416c7501127b", "profile_path": "/9dPGoVKAwtgT8zTrWKqhJxY5jK7.jpg", "id": 24318}], "vote_average": 6.5, "runtime": 91}, "10468": {"poster_path": "/xONkXGxLfN23UbT9avSdB2Ify2p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After getting into a car accident while drunk on the day of her sister's wedding, Gwen Cummings is given a choice between prison or a rehab center. She chooses rehab, but is extremely resistant to taking part in any of the treatment programs they have to offer, refusing to admit that she has an alcohol addiction.", "video": false, "id": 10468, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "28 Days", "tagline": "The Life of the Party... before she got a life.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0191754", "adult": false, "backdrop_path": "/lI39mS9ANlahs2uZ13kI99jAE04.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2000-04-06", "popularity": 0.372114856213025, "original_title": "28 Days", "budget": 0, "cast": [{"name": "Sandra Bullock", "character": "Gwen Cummings", "id": 18277, "credit_id": "52fe43769251416c7501139f", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Viggo Mortensen", "character": "Eddie Boone", "id": 110, "credit_id": "52fe43769251416c750113a3", "cast_id": 4, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 1}, {"name": "Dominic West", "character": "Jasper", "id": 17287, "credit_id": "52fe43769251416c750113a7", "cast_id": 5, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 2}, {"name": "Elizabeth Perkins", "character": "Lily Cummings", "id": 20, "credit_id": "52fe43769251416c750113ab", "cast_id": 6, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 3}, {"name": "Alan Tudyk", "character": "Gerhardt", "id": 21088, "credit_id": "52fe43769251416c750113cd", "cast_id": 12, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 4}, {"name": "Steve Buscemi", "character": "Cornell", "id": 884, "credit_id": "52fe43769251416c750113d1", "cast_id": 13, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 5}, {"name": "Reni Santoni", "character": "Daniel", "id": 14784, "credit_id": "52fe43769251416c750113d5", "cast_id": 14, "profile_path": "/6dNgWQgTgT4u5jeux3gOX34Fjiu.jpg", "order": 6}, {"name": "Marianne Jean-Baptiste", "character": "Roshanda", "id": 17352, "credit_id": "52fe43769251416c750113d9", "cast_id": 15, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 7}, {"name": "Mike O'Malley", "character": "Oliver", "id": 87192, "credit_id": "52fe43769251416c750113dd", "cast_id": 16, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 8}, {"name": "Azura Skye", "character": "Andrea", "id": 31715, "credit_id": "52fe43769251416c750113e1", "cast_id": 17, "profile_path": "/9dyxe8DOX8eEGrCo6ieW4ZiPZWC.jpg", "order": 9}, {"name": "Diane Ladd", "character": "Bobbie Jean", "id": 6587, "credit_id": "52fe43769251416c750113e5", "cast_id": 18, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 10}, {"name": "Margo Martindale", "character": "Betty", "id": 452, "credit_id": "52fe43769251416c750113e9", "cast_id": 19, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 11}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe43769251416c75011395", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.5, "runtime": 103}, "2277": {"poster_path": "/pt57Kwkd2g2xdYFZKx3yCoz9Xim.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93700000, "overview": "In the not so distant future, androids are owned as household servants. Andrew, is an extraordinary robot who exhibits emotional and creative characteristics that were never expected of him. Over a period of 200 years he evolves far beyond his initial design.", "video": false, "id": 2277, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "Bicentennial Man", "tagline": "One robot's 200 year journey to become an ordinary man.", "vote_count": 174, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0182789", "adult": false, "backdrop_path": "/k3ccsowPEK40pWrTuvybSZDqPKN.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Laurence Mark Productions", "id": 415}, {"name": "Radiant Productions", "id": 18990}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1999-12-17", "popularity": 0.915408923985478, "original_title": "Bicentennial Man", "budget": 100000000, "cast": [{"name": "Robin Williams", "character": "Andrew Martin", "id": 2157, "credit_id": "52fe4349c3a36847f8048a25", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Sam Neill", "character": "Richard Martin", "id": 4783, "credit_id": "52fe4349c3a36847f8048a29", "cast_id": 2, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 1}, {"name": "Embeth Davidtz", "character": "Little Miss", "id": 6368, "credit_id": "52fe4349c3a36847f8048a2d", "cast_id": 3, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 2}, {"name": "Oliver Platt", "character": "Rupert Burns", "id": 17485, "credit_id": "52fe4349c3a36847f8048a31", "cast_id": 4, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 3}, {"name": "Kiersten Warren", "character": "Galatea", "id": 23504, "credit_id": "52fe4349c3a36847f8048a35", "cast_id": 5, "profile_path": "/nzbUkAYhC6x3Zwdmm93nusN5vg6.jpg", "order": 4}, {"name": "Wendy Crewson", "character": "'Ma'am' Martin", "id": 19957, "credit_id": "52fe4349c3a36847f8048a69", "cast_id": 14, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 5}, {"name": "Bradley Whitford", "character": "Lloyd Charney", "id": 11367, "credit_id": "52fe4349c3a36847f8048a6d", "cast_id": 15, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "Lindze Letherman", "character": "'Miss' Grace Martin - Age 9", "id": 90423, "credit_id": "52fe4349c3a36847f8048a75", "cast_id": 17, "profile_path": "/zFgbXVCZgHaO1kAsShaDBN17SVU.jpg", "order": 8}, {"name": "Angela Landis", "character": "'Miss' Grace Martin", "id": 156933, "credit_id": "52fe4349c3a36847f8048a79", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "John Michael Higgins", "character": "Bill Feingold - Martin's Lawyer", "id": 8265, "credit_id": "52fe4349c3a36847f8048a7d", "cast_id": 19, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 10}, {"name": "Igor Hiller", "character": "Lloyd Charney - Age 10", "id": 981910, "credit_id": "52fe4349c3a36847f8048a81", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Joe Bellan", "character": "Robot Delivery Man #1", "id": 548090, "credit_id": "52fe4349c3a36847f8048a85", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Brett Wagner", "character": "Robot Delivery Man #2", "id": 60081, "credit_id": "52fe4349c3a36847f8048a89", "cast_id": 22, "profile_path": "/p3ufSavK8iDa5BEKoZHyenhY2Lq.jpg", "order": 13}, {"name": "Stephen Root", "character": "Dennis Mansky - Head of NorthAm Robotics", "id": 17401, "credit_id": "52fe4349c3a36847f8048a8d", "cast_id": 23, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 14}, {"name": "Hallie Kate Eisenberg", "character": "Little Miss Amanda Martin - Age 7", "id": 15674, "credit_id": "547a34589251417bd7000cd8", "cast_id": 24, "profile_path": "/hKxnAGbWiiMzOiZKwrbJIul8DTH.jpg", "order": 15}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4349c3a36847f8048a41", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.4, "runtime": 132}, "84199": {"poster_path": "/irXYBRweXT3VvSP7WAQ0LQrtZSf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Dave, a high school senior, spends most of his time pining away over a girl he can\u2019t have. Aubrey, a junior with artistic aspirations, has a hot boyfriend who doesn\u2019t quite understand her or seem to care. Although they go to different schools, Dave and Aubrey find themselves at the same party. When both head outside to get some air, they meet. A casual conversation sparks an instant connection, and, over the course of a weekend, things turn magical, romantic, complicated, and funny as Aubrey and Dave discover what it's like to fall in love for the first time.", "video": false, "id": 84199, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The First Time", "tagline": "Nervous is normal.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1763303", "adult": false, "backdrop_path": "/8REktwko3rCacAndRRwwPxFgj7i.jpg", "production_companies": [{"name": "Destination Films", "id": 769}, {"name": "Samuel Goldwyn Films", "id": 9118}], "release_date": "2012-10-19", "popularity": 0.640282306883863, "original_title": "The First Time", "budget": 0, "cast": [{"name": "Dylan O'Brien", "character": "Dave Hodgman", "id": 527393, "credit_id": "52fe48e09251416c9109b397", "cast_id": 2, "profile_path": "/6u7aDtMnAGaRjOGWgjMIrNNr0rp.jpg", "order": 0}, {"name": "Britt Robertson", "character": "Aubrey Miller", "id": 52018, "credit_id": "52fe48e09251416c9109b39b", "cast_id": 3, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 1}, {"name": "Craig Roberts", "character": "Simon Daldry", "id": 104561, "credit_id": "52fe48e09251416c9109b3c5", "cast_id": 13, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 2}, {"name": "James Frecheville", "character": "Ronny", "id": 968863, "credit_id": "52fe48e09251416c9109b3af", "cast_id": 8, "profile_path": "/fdm3sOJgXVgM1yo7a5GF53mVi7I.jpg", "order": 3}, {"name": "Victoria Justice", "character": "Jane Harmon", "id": 191228, "credit_id": "52fe48e09251416c9109b3b3", "cast_id": 9, "profile_path": "/5RgrN47P3R4q3rEkx6UYJORMYlq.jpg", "order": 4}, {"name": "Maggie Elizabeth Jones", "character": "Stella", "id": 1046348, "credit_id": "52fe48e09251416c9109b3b7", "cast_id": 10, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 5}, {"name": "Lamarcus Tinker", "character": "Big Corporation", "id": 970139, "credit_id": "52fe48e09251416c9109b3a3", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Joshua Malina", "character": "Aubrey's Dad", "id": 131642, "credit_id": "52fe48e09251416c9109b3ab", "cast_id": 7, "profile_path": "/me30212mRTU5zS1tI0CQ5jSidNT.jpg", "order": 7}, {"name": "Christine Taylor", "character": "Aubrey's Mom", "id": 15286, "credit_id": "52fe48e09251416c9109b39f", "cast_id": 4, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 8}, {"name": "Molly C. Quinn", "character": "Erica #1", "id": 96349, "credit_id": "52fe48e09251416c9109b3a7", "cast_id": 6, "profile_path": "/8i908NzSx5K4LBxxh5qtzLe6U8e.jpg", "order": 9}, {"name": "Matthew Fahey", "character": "Brendan Meltzer", "id": 198812, "credit_id": "52fe48e09251416c9109b3bb", "cast_id": 11, "profile_path": null, "order": 10}], "directors": [{"name": "Jon Kasdan", "department": "Directing", "job": "Director", "credit_id": "5476381d92514151af000a8e", "profile_path": "/7U1J4kSFfXjZPtX1WdCkIN7tws5.jpg", "id": 30368}], "vote_average": 7.1, "runtime": 95}, "2280": {"poster_path": "/cCglgzP9hXrqPqUMGNzISZrK338.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160000000, "overview": "When a boy wishes to be big at a magic wish machine, he wakes up the next morning and finds himself in an adult body literally overnight.", "video": false, "id": 2280, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Big", "tagline": "Have you ever had a really big secret?", "vote_count": 253, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094737", "adult": false, "backdrop_path": "/tVpkaXfP5xCS2Fd19JijUSDvpbg.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gracie Films", "id": 18}], "release_date": "1988-06-03", "popularity": 0.796907894799606, "original_title": "Big", "budget": 18000000, "cast": [{"name": "Tom Hanks", "character": "Joshua \"Josh\" Baskin", "id": 31, "credit_id": "52fe4349c3a36847f8048ac3", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Elizabeth Perkins", "character": "Susan", "id": 20, "credit_id": "52fe4349c3a36847f8048ac7", "cast_id": 2, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 1}, {"name": "Robert Loggia", "character": "MacMillan", "id": 1162, "credit_id": "52fe4349c3a36847f8048acb", "cast_id": 3, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 2}, {"name": "John Heard", "character": "Paul", "id": 11512, "credit_id": "52fe4349c3a36847f8048acf", "cast_id": 4, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Jon Lovitz", "character": "Scotty Brennen", "id": 16165, "credit_id": "52fe4349c3a36847f8048ad3", "cast_id": 5, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 4}, {"name": "Mercedes Ruehl", "character": "Mrs. Baskin", "id": 2167, "credit_id": "52fe4349c3a36847f8048ad7", "cast_id": 6, "profile_path": "/nPsSRaDQxiviOVY8ouqTBLGaui6.jpg", "order": 5}, {"name": "Jared Rushton", "character": "Billy", "id": 57422, "credit_id": "52fe4349c3a36847f8048b11", "cast_id": 16, "profile_path": "/qbyP9UM7xHEFyrop3XKgb26V55q.jpg", "order": 6}, {"name": "David Moscow", "character": "Young Josh", "id": 62123, "credit_id": "52fe4349c3a36847f8048b15", "cast_id": 17, "profile_path": "/shlyKoI2kEAcgX0AE5qFEFSrLfv.jpg", "order": 7}, {"name": "Josh Clark", "character": "Mr. Baskin", "id": 143205, "credit_id": "52fe4349c3a36847f8048b19", "cast_id": 18, "profile_path": "/5MfUFuksjtkJVmWqiDmIfsKIWH.jpg", "order": 8}, {"name": "Kimberlee M. Davis", "character": "Cynthia Benson", "id": 1073814, "credit_id": "52fe4349c3a36847f8048b1d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Oliver Block", "character": "Freddie Benson", "id": 1073816, "credit_id": "52fe4349c3a36847f8048b21", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Erika Katz", "character": "Cynthia's Friend", "id": 80138, "credit_id": "52fe4349c3a36847f8048b25", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Allan Wasserman", "character": "Gym Teacher", "id": 123728, "credit_id": "52fe4349c3a36847f8048b29", "cast_id": 22, "profile_path": "/u6xfuaLDoLMkSWHPW5I2njOsWPI.jpg", "order": 12}, {"name": "Mark Ballou", "character": "Derek", "id": 166788, "credit_id": "52fe4349c3a36847f8048b2d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Gary Howard Klar", "character": "Ticket Taker", "id": 994134, "credit_id": "52fe4349c3a36847f8048b31", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Penny Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4349c3a36847f8048add", "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "id": 14911}], "vote_average": 6.6, "runtime": 104}, "4476": {"poster_path": "/uh0sJcx3SLtclJSuKAXl6Tt6AV0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160638883, "overview": "An epic tale of three brothers and their father living in the remote wilderness of 1900s USA and how their lives are affected by nature, history, war, and love.", "video": false, "id": 4476, "genres": [{"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Legends of the Fall", "tagline": "After the Fall from Innocence the Legend begins.", "vote_count": 180, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "kw", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110322", "adult": false, "backdrop_path": "/ftKZn79wtRqPdBJ95s5DGqbfhSy.jpg", "production_companies": [{"name": "Bedford Falls Productions", "id": 348}, {"name": "TriStar Pictures", "id": 559}, {"name": "Pangaea", "id": 1656}], "release_date": "1994-12-16", "popularity": 0.658561489549263, "original_title": "Legends of the Fall", "budget": 30000000, "cast": [{"name": "Brad Pitt", "character": "Tristan Ludlow", "id": 287, "credit_id": "52fe43c4c3a36847f806e20d", "cast_id": 17, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Col. William Ludlow", "id": 4173, "credit_id": "52fe43c4c3a36847f806e211", "cast_id": 18, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Aidan Quinn", "character": "Alfred Ludlow", "id": 18992, "credit_id": "52fe43c4c3a36847f806e215", "cast_id": 19, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 2}, {"name": "Julia Ormond", "character": "Susannah Fincannon Ludlow", "id": 15887, "credit_id": "52fe43c4c3a36847f806e219", "cast_id": 20, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 3}, {"name": "Henry Thomas", "character": "Samuel Ludlow", "id": 9976, "credit_id": "52fe43c4c3a36847f806e21d", "cast_id": 21, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 4}, {"name": "Karina Lombard", "character": "Isabel Two Decker Ludlow", "id": 11068, "credit_id": "52fe43c4c3a36847f806e221", "cast_id": 22, "profile_path": "/8uS7dXBJCTQaHQGyTFc2EhB9mKD.jpg", "order": 5}, {"name": "Gordon Tootoosis", "character": "One Stab", "id": 37430, "credit_id": "52fe43c4c3a36847f806e225", "cast_id": 23, "profile_path": "/l10aLDp4D8ZwWdmfRdlj6FedUYk.jpg", "order": 6}, {"name": "John Novak", "character": "James O'Banion", "id": 37431, "credit_id": "52fe43c4c3a36847f806e229", "cast_id": 24, "profile_path": "/4d7dFppd9XDURcPUY8e6UqtVPwY.jpg", "order": 7}, {"name": "Robert Wisden", "character": "John T. O'Banion", "id": 37432, "credit_id": "52fe43c4c3a36847f806e22d", "cast_id": 25, "profile_path": "/pytxV426R5R712DOGTtFb8J1a5g.jpg", "order": 8}, {"name": "David Kaye", "character": "Samuel Decker", "id": 1048574, "credit_id": "52fe43c4c3a36847f806e231", "cast_id": 26, "profile_path": "/gEJuuELGPXGOLw8qi4sgMn4ueUJ.jpg", "order": 9}, {"name": "Tantoo Cardinal", "character": "Pet", "id": 7863, "credit_id": "52fe43c4c3a36847f806e235", "cast_id": 27, "profile_path": "/2FEYWnf9jbc5VY5fEFiX91vx80k.jpg", "order": 10}, {"name": "Paul Desmond", "character": "Decker", "id": 174943, "credit_id": "52fe43c4c3a36847f806e239", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Christina Pickles", "character": "Isabel Ludlow", "id": 94978, "credit_id": "52fe43c4c3a36847f806e23d", "cast_id": 29, "profile_path": "/vhUkCPm78zsv9P1PfWzm4INE02d.jpg", "order": 12}, {"name": "Kenneth Welsh", "character": "Sheriff Tynert", "id": 6074, "credit_id": "52fe43c4c3a36847f806e241", "cast_id": 30, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 13}, {"name": "Bill Dow", "character": "Longley", "id": 118462, "credit_id": "52fe43c4c3a36847f806e245", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Sam Sarkar", "character": "Rodriguez", "id": 184106, "credit_id": "52fe43c4c3a36847f806e249", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Nigel Bennett", "character": "Asgaard", "id": 44208, "credit_id": "52fe43c4c3a36847f806e24d", "cast_id": 33, "profile_path": "/wx1zmmpMi9luYFGzikSBIvwyDdR.jpg", "order": 16}, {"name": "Keegan Macintosh", "character": "Boy Tristan", "id": 78105, "credit_id": "52fe43c4c3a36847f806e251", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Eric Johnson", "character": "Teen Tristan", "id": 33337, "credit_id": "52fe43c4c3a36847f806e255", "cast_id": 35, "profile_path": "/e9pkotPfskmBxIlDZG9Fyr1btPL.jpg", "order": 18}, {"name": "Randall Slavin", "character": "Teen Alfred", "id": 95825, "credit_id": "52fe43c4c3a36847f806e259", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Doug Hughes", "character": "Teen Samuel", "id": 1077328, "credit_id": "52fe43c4c3a36847f806e25d", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Sekwan Auger", "character": "Young Isabel Two", "id": 222556, "credit_id": "52fe43c4c3a36847f806e261", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Christine Harder", "character": "Isabel Three", "id": 1077329, "credit_id": "52fe43c4c3a36847f806e265", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Charles Andre", "character": "Federal Officer", "id": 105791, "credit_id": "52fe43c4c3a36847f806e269", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Weston McMillan", "character": "Noel", "id": 1077330, "credit_id": "52fe43c4c3a36847f806e26d", "cast_id": 41, "profile_path": null, "order": 24}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806e1b5", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 7.1, "runtime": 133}, "10474": {"poster_path": "/8BkedYL5LdpkyHc7JtuohMr8a9N.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Film adaptation of street tough Jim Carroll's epistle about his kaleidoscopic free fall into the harrowing world of drug addiction.", "video": false, "id": 10474, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Basketball Diaries", "tagline": "The true story of the death of innocence and the birth of an artist.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112461", "adult": false, "backdrop_path": "/6rGA5l7Ykdge27x3wysSdOouVPk.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Island Pictures", "id": 3492}], "release_date": "1995-04-21", "popularity": 1.06484313746498, "original_title": "The Basketball Diaries", "budget": 0, "cast": [{"name": "Leonardo DiCaprio", "character": "Jim Carroll", "id": 6193, "credit_id": "52fe43779251416c750116ab", "cast_id": 9, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Lorraine Bracco", "character": "Jim's Mother", "id": 11478, "credit_id": "52fe43779251416c750116af", "cast_id": 10, "profile_path": "/1neO0scj7QyrrWDp1JZRrN0tA8Y.jpg", "order": 1}, {"name": "James Madio", "character": "Pedro", "id": 65395, "credit_id": "52fe43779251416c750116b3", "cast_id": 11, "profile_path": "/3s32FSsr95w6nGtoH5f9sPk1mPw.jpg", "order": 2}, {"name": "Mark Wahlberg", "character": "Mickey", "id": 13240, "credit_id": "52fe43779251416c750116b7", "cast_id": 12, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 3}, {"name": "Bruno Kirby", "character": "Swifty", "id": 9257, "credit_id": "52fe43779251416c750116d7", "cast_id": 21, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 4}, {"name": "Patrick McGaw", "character": "Neutron", "id": 186526, "credit_id": "52fe43779251416c750116bb", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Juliette Lewis", "character": "Diane Moody", "id": 3196, "credit_id": "52fe43779251416c750116bf", "cast_id": 15, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 6}, {"name": "Michael Imperioli", "character": "Bobby", "id": 11486, "credit_id": "52fe43779251416c750116c3", "cast_id": 16, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 7}, {"name": "Ernie Hudson", "character": "Reggie", "id": 8874, "credit_id": "52fe43779251416c750116c7", "cast_id": 17, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 8}, {"name": "Manny Alfaro", "character": "Manny", "id": 163985, "credit_id": "52fe43779251416c750116cb", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Cynthia Daniel", "character": "Winkie", "id": 185889, "credit_id": "52fe43779251416c750116cf", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Brittany Daniel", "character": "Blinkie", "id": 35476, "credit_id": "52fe43779251416c750116d3", "cast_id": 20, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 11}], "directors": [{"name": "Scott Kalvert", "department": "Directing", "job": "Director", "credit_id": "52fe43779251416c7501167d", "profile_path": null, "id": 65390}], "vote_average": 6.9, "runtime": 102}, "2284": {"poster_path": "/75m4IBZE6gUrltcDgTSBTFg68QT.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69474661, "overview": "Molly Mahoney is the awkward and insecure manager of Mr. Magorium's Wonder Emporium, the strangest, most fantastic, most wonderful toy store in the world. But when Mr. Magorium bequeaths the store to her, a dark and ominous change begins to take over the once remarkable Emporium.", "video": false, "id": 2284, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Mr. Magorium's Wonder Emporium", "tagline": "You have to believe it to see it.", "vote_count": 74, "homepage": "http://www.magorium.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457419", "adult": false, "backdrop_path": "/icq8EO55IEvDo7OGCQfFXZ8l3Sv.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Walden Media", "id": 10221}, {"name": "FilmColony", "id": 1811}], "release_date": "2007-11-14", "popularity": 0.722549277304365, "original_title": "Mr. Magorium's Wonder Emporium", "budget": 0, "cast": [{"name": "Dustin Hoffman", "character": "Mr. Edward Magorium", "id": 4483, "credit_id": "52fe4349c3a36847f8048c23", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Jason Bateman", "character": "Henry Weston", "id": 23532, "credit_id": "52fe4349c3a36847f8048c27", "cast_id": 2, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 1}, {"name": "Zach Mills", "character": "Eric Applebaum", "id": 23533, "credit_id": "52fe4349c3a36847f8048c2b", "cast_id": 3, "profile_path": "/xziEsJgAFjQeWN3Z1tJdQZmJ2LX.jpg", "order": 2}, {"name": "Jonathan Potts", "character": "Dr. Sage", "id": 23534, "credit_id": "52fe4349c3a36847f8048c2f", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Rebecca Northan", "character": "Ellie Applebaum", "id": 23535, "credit_id": "52fe4349c3a36847f8048c33", "cast_id": 5, "profile_path": "/idm46AJeOnOMyOfhz2nBWiAiIy5.jpg", "order": 4}, {"name": "David Rendall", "character": "Tim", "id": 23536, "credit_id": "52fe4349c3a36847f8048c37", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jade Cohen", "character": "Kangaroo Girl", "id": 23538, "credit_id": "52fe4349c3a36847f8048c3b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Natalie Portman", "character": "Molly Mahoney", "id": 524, "credit_id": "52fe4349c3a36847f8048cbd", "cast_id": 30, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 7}, {"name": "Marcia Bennett", "character": "Lora", "id": 40385, "credit_id": "52fe4349c3a36847f8048cc1", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Ted Ludzik", "character": "Bellini", "id": 40386, "credit_id": "52fe4349c3a36847f8048cc5", "cast_id": 32, "profile_path": "/fz7de231z4eWHkIA8vSqPSmB9US.jpg", "order": 9}, {"name": "Madalena Brancatella", "character": "Jessica", "id": 1077854, "credit_id": "52fe4349c3a36847f8048ccf", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Paula Boudreau", "character": "Brenda", "id": 204964, "credit_id": "52fe4349c3a36847f8048cd3", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Mike Realba", "character": "Dave Wolf", "id": 28869, "credit_id": "52fe4349c3a36847f8048cd7", "cast_id": 36, "profile_path": "/9VSNPVauGKQlV1cXENaUI60OoZH.jpg", "order": 12}, {"name": "Steve Whitmire", "character": "Kermit the Frog (voice)", "id": 64180, "credit_id": "52fe4349c3a36847f8048cdb", "cast_id": 37, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 13}, {"name": "Liam Powley-Webster", "character": "Andy", "id": 1077855, "credit_id": "52fe4349c3a36847f8048cdf", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Oliver Masuda", "character": "Jordan", "id": 1077856, "credit_id": "52fe4349c3a36847f8048ce3", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Samantha Harvey", "character": "Cassie", "id": 1077857, "credit_id": "52fe4349c3a36847f8048ce7", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Jesse Bostick", "character": "Derek", "id": 1026218, "credit_id": "52fe4349c3a36847f8048ceb", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Isaac Durnford", "character": "Jason", "id": 201732, "credit_id": "52fe4349c3a36847f8048cef", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Daniyah Ysrayl", "character": "Jimmy", "id": 1062878, "credit_id": "52fe4349c3a36847f8048cf3", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Dash Grundy", "character": "Ari", "id": 1077858, "credit_id": "52fe4349c3a36847f8048cf7", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Dylan Authors", "character": "Mark", "id": 1077859, "credit_id": "52fe4349c3a36847f8048cfb", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Aidan Koper", "character": "Brett", "id": 1077860, "credit_id": "52fe4349c3a36847f8048cff", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Lin Lin Feng", "character": "Angie", "id": 1077861, "credit_id": "52fe4349c3a36847f8048d03", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "He Wen", "character": "Larry", "id": 1077862, "credit_id": "52fe4349c3a36847f8048d07", "cast_id": 48, "profile_path": null, "order": 24}, {"name": "Gan Zhen", "character": "David", "id": 1077863, "credit_id": "52fe4349c3a36847f8048d0b", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Quancetia Hamilton", "character": "Gia", "id": 184388, "credit_id": "52fe4349c3a36847f8048d0f", "cast_id": 50, "profile_path": null, "order": 26}, {"name": "Kiele Sanchez", "character": "Mrs. Goodman", "id": 31168, "credit_id": "52fe4349c3a36847f8048d13", "cast_id": 51, "profile_path": "/i0YEpWuk1zSvadwwa1r0rahDONt.jpg", "order": 27}, {"name": "David Collins", "character": "Tom", "id": 45119, "credit_id": "52fe4349c3a36847f8048d17", "cast_id": 52, "profile_path": null, "order": 28}], "directors": [{"name": "Zach Helm", "department": "Directing", "job": "Director", "credit_id": "52fe4349c3a36847f8048c41", "profile_path": "/qjXdGnMAoNIcsqBfqpa7hoB7gIx.jpg", "id": 23539}], "vote_average": 5.8, "runtime": 93}, "2288": {"poster_path": "/jZINusxU1VUKae1s6j39jeFrnJt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115505027, "overview": "Set in contemporary London, a story of passion, drama, love, and abandonment involving four strangers--their chance meetings, instant attractions and casual betrayals.", "video": false, "id": 2288, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Closer", "tagline": "If you believe in love at first sight, you never stop looking.", "vote_count": 176, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0376541", "adult": false, "backdrop_path": "/ocml2PiclZHpIy1MvT2mvGSJFpH.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2004-12-02", "popularity": 0.479045984044516, "original_title": "Closer", "budget": 27000000, "cast": [{"name": "Natalie Portman", "character": "Alice", "id": 524, "credit_id": "52fe434ac3a36847f8048f89", "cast_id": 8, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Jude Law", "character": "Dan", "id": 9642, "credit_id": "52fe434ac3a36847f8048f75", "cast_id": 3, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Julia Roberts", "character": "Anna", "id": 1204, "credit_id": "52fe434ac3a36847f8048f79", "cast_id": 4, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 2}, {"name": "Clive Owen", "character": "Larry", "id": 2296, "credit_id": "52fe434ac3a36847f8048f7d", "cast_id": 5, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 3}, {"name": "Colin Stinton", "character": "Customs Officer", "id": 23608, "credit_id": "52fe434ac3a36847f8048f85", "cast_id": 7, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 4}, {"name": "Nick Hobbs", "character": "Taxi Driver", "id": 23607, "credit_id": "52fe434ac3a36847f8048f81", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Steve Benham", "character": "Car driver (uncredited)", "id": 1220476, "credit_id": "5498152d9251416e2b0082a2", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Elizabeth Bower", "character": "Chatty Exhibition Guest (uncredited)", "id": 1232670, "credit_id": "5498154cc3a3686ae9008464", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Ray Donn", "character": "Customs Officer (uncredited)", "id": 1392726, "credit_id": "54981577c3a3680511001488", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Daniel Dresner", "character": "Coughing Man (uncredited)", "id": 1402622, "credit_id": "549815a392514130fc006996", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Rrenford Junior Fagan", "character": "Bus Passenger (uncredited)", "id": 1402625, "credit_id": "549815c29251416e2b0082af", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Antony Gabriel", "character": "Luke (uncredited)", "id": 1402629, "credit_id": "549815dec3a3686ae900847c", "cast_id": 25, "profile_path": null, "order": 11}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f8048f6b", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 6.7, "runtime": 104}, "2289": {"poster_path": "/9MYfag0sPAaJUq3Lc0rXxhQHLA5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173013509, "overview": "In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.", "video": false, "id": 2289, "genres": [{"id": 18, "name": "Drama"}], "title": "Cold Mountain", "tagline": "Find the strength. Find the courage. No matter what it takes... find the way home.", "vote_count": 135, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0159365", "adult": false, "backdrop_path": "/tLDljWDR3Rz3zrtxHGWlVQI8UCI.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Mirage Enterprises", "id": 932}, {"name": "Bona Fide Productions", "id": 2570}, {"name": "Castel Film Romania", "id": 1370}, {"name": "Cattleya", "id": 10102}], "release_date": "2003-12-24", "popularity": 0.665374994212847, "original_title": "Cold Mountain", "budget": 79000000, "cast": [{"name": "Jude Law", "character": "Inman", "id": 9642, "credit_id": "52fe434ac3a36847f8049027", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Ada Monroe", "id": 2227, "credit_id": "52fe434ac3a36847f804902b", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Ruby Thewes", "id": 9137, "credit_id": "52fe434ac3a36847f804902f", "cast_id": 6, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Eileen Atkins", "character": "Maddy", "id": 20300, "credit_id": "52fe434ac3a36847f8049033", "cast_id": 7, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Stobrod Thewes", "id": 2039, "credit_id": "52fe434ac3a36847f8049037", "cast_id": 8, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Reverend Veasey", "id": 1233, "credit_id": "52fe434ac3a36847f804903b", "cast_id": 9, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Natalie Portman", "character": "Sara", "id": 524, "credit_id": "52fe434ac3a36847f804903f", "cast_id": 10, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 6}, {"name": "Emily Deschanel", "character": "Mrs. Morgan", "id": 25933, "credit_id": "52fe434ac3a36847f8049055", "cast_id": 16, "profile_path": "/f5FjmOlXEcjLz4qxi5Rfbu3ZO4Y.jpg", "order": 7}, {"name": "Giovanni Ribisi", "character": "Junior", "id": 1771, "credit_id": "52fe434ac3a36847f8049059", "cast_id": 17, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 8}, {"name": "Donald Sutherland", "character": "Reverend Monroe", "id": 55636, "credit_id": "52fe434ac3a36847f804905d", "cast_id": 18, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 9}, {"name": "Ray Winstone", "character": "Teague", "id": 5538, "credit_id": "52fe434ac3a36847f8049061", "cast_id": 19, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 10}, {"name": "Kathy Baker", "character": "Sally Swanger", "id": 1907, "credit_id": "52fe434ac3a36847f8049065", "cast_id": 20, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 11}, {"name": "Charlie Hunnam", "character": "Bosie", "id": 56365, "credit_id": "52fe434ac3a36847f8049069", "cast_id": 21, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 12}, {"name": "Ethan Suplee", "character": "Pangle", "id": 824, "credit_id": "52fe434ac3a36847f8049097", "cast_id": 30, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 13}, {"name": "Jena Malone", "character": "Ferry Girl", "id": 20089, "credit_id": "52fe434ac3a36847f804909b", "cast_id": 31, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 14}, {"name": "Lucas Black", "character": "Oakley", "id": 155, "credit_id": "52fe434ac3a36847f804909f", "cast_id": 32, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 15}, {"name": "Taryn Manning", "character": "Shyla", "id": 343, "credit_id": "52fe434ac3a36847f80490a3", "cast_id": 33, "profile_path": "/vgLUb0mjZqJsDCnZZ3I9VKeyo9J.jpg", "order": 16}, {"name": "Tom Aldredge", "character": "Blind Man", "id": 49835, "credit_id": "52fe434ac3a36847f80490a7", "cast_id": 34, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 17}, {"name": "James Rebhorn", "character": "Doctor", "id": 8986, "credit_id": "52fe434ac3a36847f80490ab", "cast_id": 35, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 18}, {"name": "Cillian Murphy", "character": "Bardolph", "id": 2037, "credit_id": "52fe434ac3a36847f80490af", "cast_id": 36, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 19}, {"name": "Jack White", "character": "Georgia", "id": 13611, "credit_id": "52fe434ac3a36847f80490b3", "cast_id": 37, "profile_path": "/7VaPV6dQQvJND4xvxgaPc4AU3jL.jpg", "order": 20}, {"name": "William Boyer", "character": "Confederate Officer", "id": 1187550, "credit_id": "54b25d049251412ae7003341", "cast_id": 114, "profile_path": null, "order": 21}], "directors": [{"name": "Anthony Minghella", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f8049017", "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "id": 2239}], "vote_average": 6.3, "runtime": 154}, "2291": {"poster_path": "/2Byg7AV91LF7pfByz4ZMvnkZnH7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25965144, "overview": "A traumatized Vietnam war veteran finds out that his post-war life isn't what he believes it to be when he's attacked by horned creatures in the subway and his dead son comes to visit him...", "video": false, "id": 2291, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Jacob's Ladder", "tagline": "The most frightening thing about Jacob Singer's nightmare is that he isn't dreaming.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099871", "adult": false, "backdrop_path": "/xahHn2vJFHgqXUdFcG83rE7crFh.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1990-11-02", "popularity": 0.275559472888777, "original_title": "Jacob's Ladder", "budget": 25000000, "cast": [{"name": "Tim Robbins", "character": "Jacob Singer", "id": 504, "credit_id": "52fe434ac3a36847f80491e3", "cast_id": 8, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 0}, {"name": "Elizabeth Pe\u00f1a", "character": "Jezebel", "id": 7430, "credit_id": "52fe434ac3a36847f80491e7", "cast_id": 9, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 1}, {"name": "Danny Aiello", "character": "Louis", "id": 1004, "credit_id": "52fe434ac3a36847f80491eb", "cast_id": 10, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 2}, {"name": "Matt Craven", "character": "Michael", "id": 13525, "credit_id": "52fe434ac3a36847f80491ef", "cast_id": 11, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 3}, {"name": "Pruitt Taylor Vince", "character": "Paul", "id": 3201, "credit_id": "52fe434ac3a36847f80491f3", "cast_id": 12, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 4}, {"name": "Jason Alexander", "character": "Geary", "id": 1206, "credit_id": "52fe434ac3a36847f80491f7", "cast_id": 13, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 5}, {"name": "Patricia Kalember", "character": "Sarah", "id": 23627, "credit_id": "52fe434ac3a36847f80491fb", "cast_id": 14, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 6}, {"name": "Eriq La Salle", "character": "Frank", "id": 23628, "credit_id": "52fe434ac3a36847f80491ff", "cast_id": 15, "profile_path": "/iUjzxU9h9omJ9OTVkXreu6Q7YsK.jpg", "order": 7}, {"name": "Ving Rhames", "character": "George", "id": 10182, "credit_id": "52fe434ac3a36847f8049203", "cast_id": 16, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 8}, {"name": "Brian Tarantina", "character": "Doug", "id": 4890, "credit_id": "52fe434ac3a36847f8049207", "cast_id": 17, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 9}, {"name": "Brent Hinkley", "character": "Jerry", "id": 7134, "credit_id": "52fe434ac3a36847f8049211", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "S. Epatha Merkerson", "character": "Elsa", "id": 3978, "credit_id": "52fe434ac3a36847f8049215", "cast_id": 21, "profile_path": "/wuzhs2DR1ImE3Y8kuMoCXpFaHVK.jpg", "order": 11}, {"name": "Suzanne Shepherd", "character": "Hospital Receptionist", "id": 11484, "credit_id": "52fe434ac3a36847f8049219", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Doug Barron", "character": "Group Leader", "id": 85566, "credit_id": "52fe434ac3a36847f804921d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Anthony Alessandro", "character": "Rod", "id": 166890, "credit_id": "52fe434ac3a36847f8049221", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Macaulay Culkin", "character": "Gabe (uncredited)", "id": 11510, "credit_id": "52fe434ac3a36847f8049225", "cast_id": 25, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 15}], "directors": [{"name": "Adrian Lyne", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f80491bb", "profile_path": null, "id": 7270}], "vote_average": 6.9, "runtime": 113}, "2292": {"poster_path": "/dmNytzvQTjylI83qrgDoS1KQ0ev.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.", "video": false, "id": 2292, "genres": [{"id": 35, "name": "Comedy"}], "title": "Clerks", "tagline": "Just because they serve you doesn't mean they like you.", "vote_count": 168, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109445", "adult": false, "backdrop_path": "/a3sogs3NLDj3d2ITPd6TTBR0Eax.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Miramax Films", "id": 14}], "release_date": "1994-10-19", "popularity": 0.248323112616539, "original_title": "Clerks", "budget": 230000, "cast": [{"name": "Brian O'Halloran", "character": "Dante Hicks", "id": 23629, "credit_id": "52fe434bc3a36847f8049275", "cast_id": 7, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 0}, {"name": "Jeff Anderson", "character": "Randal Graves", "id": 23630, "credit_id": "52fe434bc3a36847f8049279", "cast_id": 8, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 1}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f804927d", "cast_id": 10, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 2}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f8049281", "cast_id": 11, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 3}, {"name": "Lisa Spoonhauer", "character": "Caitlin Bree", "id": 23632, "credit_id": "52fe434bc3a36847f8049285", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Marilyn Ghigliotti", "character": "Veronica Loughran", "id": 23631, "credit_id": "52fe434bc3a36847f80492a5", "cast_id": 20, "profile_path": "/3UmNH4sNfnBUDiu8PDzpcf3vxcH.jpg", "order": 5}, {"name": "Scott Mosier", "character": "Willam Black/Angry Hockey Playing Customer/Angry Mourner", "id": 20503, "credit_id": "52fe434bc3a36847f8049289", "cast_id": 13, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 6}, {"name": "Walt Flanagan", "character": "Woolen Cap Smoker/Egg Man/Offended Customer/Cat Admiring Bitter Customer", "id": 23633, "credit_id": "52fe434bc3a36847f804928d", "cast_id": 14, "profile_path": "/mu1THhSjnBbOxd9VxaVQQ3qvf2U.jpg", "order": 7}, {"name": "Scott Schiaffo", "character": "Chewlie's Rep", "id": 23634, "credit_id": "52fe434bc3a36847f8049291", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "David Klein", "character": "Hunting Cap Smoking Boy/Low I.Q. Video Customer/Hubcap Searching Customer/Angry Mourner/Angry Crowd at Door", "id": 21405, "credit_id": "52fe434bc3a36847f8049295", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Ed Hapstak", "character": "Sanford/Angry Mourner", "id": 23635, "credit_id": "52fe434bc3a36847f8049299", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Pattijean Csik", "character": "Coroner", "id": 23636, "credit_id": "52fe434bc3a36847f804929d", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "John Henry Westhead", "character": "Olaf Oleeson", "id": 23637, "credit_id": "52fe434bc3a36847f80492a1", "cast_id": 19, "profile_path": null, "order": 12}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f8049253", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 7.3, "runtime": 92}, "2293": {"poster_path": "/dwWAr8T0q0KHv5rTu0eVaqpCJ2C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Both dumped by their girlfriends, two best friends seek refuge in the local mall.", "video": false, "id": 2293, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Mallrats", "tagline": "They're not there to shop. They're not there to work. They're just there.", "vote_count": 115, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113749", "adult": false, "backdrop_path": "/gDwBLX0rZL6whM6iRsPMzXXU9yt.jpg", "production_companies": [{"name": "Alphaville Films", "id": 11462}, {"name": "View Askew Productions", "id": 16934}, {"name": "Gramercy Pictures", "id": 37}], "release_date": "1995-10-20", "popularity": 0.595330349606988, "original_title": "Mallrats", "budget": 6000000, "cast": [{"name": "Jason Lee", "character": "Brodie Bruce", "id": 11662, "credit_id": "52fe434bc3a36847f8049311", "cast_id": 13, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 0}, {"name": "Jeremy London", "character": "T.S. Quint", "id": 23646, "credit_id": "52fe434bc3a36847f8049315", "cast_id": 14, "profile_path": "/uZgGh9GYQYAvaThDrVB4ZtiyquF.jpg", "order": 1}, {"name": "Shannen Doherty", "character": "Rene Mosier", "id": 19144, "credit_id": "52fe434bc3a36847f804930d", "cast_id": 12, "profile_path": "/1q3BKF6vnOFUOCRier8hfH9Nyxo.jpg", "order": 2}, {"name": "Claire Forlani", "character": "Brandi Svenning", "id": 4174, "credit_id": "52fe434bc3a36847f8049319", "cast_id": 15, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 3}, {"name": "Ben Affleck", "character": "Shannon Hamilton", "id": 880, "credit_id": "52fe434bc3a36847f804931d", "cast_id": 16, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 4}, {"name": "Joey Lauren Adams", "character": "Gwen Turner", "id": 16484, "credit_id": "52fe434bc3a36847f8049325", "cast_id": 18, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 5}, {"name": "Michael Rooker", "character": "Mr. Jared Svenning", "id": 12132, "credit_id": "52fe434bc3a36847f8049339", "cast_id": 23, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 6}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f804932d", "cast_id": 20, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 7}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f8049321", "cast_id": 17, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 8}, {"name": "Priscilla Barnes", "character": "Miss Ivannah", "id": 23648, "credit_id": "52fe434bc3a36847f8049335", "cast_id": 22, "profile_path": "/llDEiCLnmEm68b658dv29Bh2wtR.jpg", "order": 9}, {"name": "Ren\u00e9e Humphrey", "character": "Tricia Jones", "id": 23647, "credit_id": "52fe434bc3a36847f8049329", "cast_id": 19, "profile_path": "/q8Kf2vOuU80APe2cxDS0kSrp7BC.jpg", "order": 10}, {"name": "Ethan Suplee", "character": "Willam Black", "id": 824, "credit_id": "52fe434bc3a36847f8049331", "cast_id": 21, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 11}, {"name": "Stan Lee", "character": "Himself", "id": 7624, "credit_id": "52fe434bc3a36847f8049347", "cast_id": 26, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 12}, {"name": "Brian O'Halloran", "character": "Gil Hicks, Suitor #3", "id": 23629, "credit_id": "52fe434bc3a36847f8049343", "cast_id": 25, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 13}, {"name": "Sven-Ole Thorsen", "character": "LaFours", "id": 20761, "credit_id": "52fe434bc3a36847f8049357", "cast_id": 29, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 14}, {"name": "Scott Mosier", "character": "Roddy", "id": 20503, "credit_id": "52fe434bc3a36847f804935b", "cast_id": 30, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 15}, {"name": "Walt Flanagan", "character": "Walt \"Fanboy\" Grover", "id": 23633, "credit_id": "52fe434bc3a36847f804935f", "cast_id": 31, "profile_path": "/mu1THhSjnBbOxd9VxaVQQ3qvf2U.jpg", "order": 16}, {"name": "Bryan Johnson", "character": "Steve-Dave Pulasti", "id": 572591, "credit_id": "52fe434bc3a36847f8049363", "cast_id": 32, "profile_path": null, "order": 17}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f804933f", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.8, "runtime": 94}, "2294": {"poster_path": "/8xI9g6su8aKwg3Nk5qUnS025NyA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33788161, "overview": "When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.", "video": false, "id": 2294, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jay and Silent Bob Strike Back", "tagline": "Hollywood had it coming", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0261392", "adult": false, "backdrop_path": "/1Y3ThCgBgGy0woQTUgjGxQmEByS.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Dimension Films", "id": 7405}], "release_date": "2001-08-24", "popularity": 0.614224981547126, "original_title": "Jay and Silent Bob Strike Back", "budget": 22000000, "cast": [{"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f80493d9", "cast_id": 9, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 0}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f80493dd", "cast_id": 10, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 1}, {"name": "Ben Affleck", "character": "Holden McNeil/Himself", "id": 880, "credit_id": "52fe434bc3a36847f80493e1", "cast_id": 11, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 2}, {"name": "Jeff Anderson", "character": "Randal Graves", "id": 23630, "credit_id": "52fe434bc3a36847f80493e5", "cast_id": 12, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 3}, {"name": "Brian O'Halloran", "character": "Dante Hicks", "id": 23629, "credit_id": "52fe434bc3a36847f80493e9", "cast_id": 13, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 4}, {"name": "Shannon Elizabeth", "character": "Justice", "id": 21596, "credit_id": "52fe434bc3a36847f80493ed", "cast_id": 14, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 5}, {"name": "Eliza Dushku", "character": "Sissy", "id": 13446, "credit_id": "52fe434bc3a36847f80493f1", "cast_id": 15, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 6}, {"name": "Ali Larter", "character": "Chrissy", "id": 17303, "credit_id": "52fe434bc3a36847f80493f5", "cast_id": 16, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 7}, {"name": "Jennifer Schwalbach Smith", "character": "Missy", "id": 23658, "credit_id": "52fe434bc3a36847f80493f9", "cast_id": 17, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 8}, {"name": "Will Ferrell", "character": "Federal Wildlife Marshal Willenholly", "id": 23659, "credit_id": "52fe434bc3a36847f80493fd", "cast_id": 18, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 9}, {"name": "Jason Lee", "character": "Brodie Bruce/Banky Edwards", "id": 11662, "credit_id": "52fe434bc3a36847f8049401", "cast_id": 19, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 10}, {"name": "Judd Nelson", "character": "Sheriff", "id": 21624, "credit_id": "52fe434bc3a36847f8049405", "cast_id": 20, "profile_path": "/6mwumgsKDEYy0F9GVdfw8TsNDHL.jpg", "order": 11}, {"name": "George Carlin", "character": "Hitchhiker", "id": 15903, "credit_id": "52fe434bc3a36847f8049409", "cast_id": 21, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 12}, {"name": "Carrie Fisher", "character": "Nun", "id": 4, "credit_id": "52fe434bc3a36847f804940d", "cast_id": 22, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 13}, {"name": "Seann William Scott", "character": "Brent", "id": 57599, "credit_id": "52fe434bc3a36847f8049411", "cast_id": 23, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 14}, {"name": "Jon Stewart", "character": "Reg Hartner", "id": 12219, "credit_id": "52fe434bc3a36847f8049415", "cast_id": 24, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 15}, {"name": "Mark Hamill", "character": "Cock-Knocker", "id": 2, "credit_id": "52fe434bc3a36847f8049419", "cast_id": 25, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 16}, {"name": "Joey Lauren Adams", "character": "Alyssa Jones", "id": 16484, "credit_id": "52fe434bc3a36847f804941d", "cast_id": 26, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 17}, {"name": "Tracy Morgan", "character": "Pumpkin Escobar", "id": 56903, "credit_id": "52fe434bc3a36847f8049421", "cast_id": 27, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 18}, {"name": "Gus Van Sant", "character": "Himself", "id": 5216, "credit_id": "52fe434bc3a36847f8049425", "cast_id": 28, "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "order": 19}, {"name": "Shannen Doherty", "character": "Herself", "id": 19144, "credit_id": "52fe434bc3a36847f8049429", "cast_id": 29, "profile_path": "/1q3BKF6vnOFUOCRier8hfH9Nyxo.jpg", "order": 20}, {"name": "Wes Craven", "character": "Himself", "id": 5140, "credit_id": "52fe434bc3a36847f804942d", "cast_id": 30, "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "order": 21}, {"name": "Chris Rock", "character": "Chaka", "id": 2632, "credit_id": "52fe434bc3a36847f8049431", "cast_id": 31, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 22}, {"name": "Joe Quesada", "character": "Pizza Delivery Guy", "id": 1187909, "credit_id": "52fe434bc3a36847f8049435", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Matt Damon", "character": "Himself", "id": 1892, "credit_id": "53b7be1cc3a3685ec10039c1", "cast_id": 33, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 24}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f80493ab", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.3, "runtime": 104}, "2295": {"poster_path": "/luPEGTlN8egktVeomdf2nEap5SP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26888376, "overview": "A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.", "video": false, "id": 2295, "genres": [{"id": 35, "name": "Comedy"}], "title": "Clerks II", "tagline": "With No Power Comes No Responsibility", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0424345", "adult": false, "backdrop_path": "/dIF8r4OUVaRfy6O7mfIJjufEC9j.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2006-05-25", "popularity": 0.638707169394916, "original_title": "Clerks II", "budget": 5000000, "cast": [{"name": "Brian O'Halloran", "character": "Dante", "id": 23629, "credit_id": "52fe434bc3a36847f8049493", "cast_id": 9, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 0}, {"name": "Jeff Anderson", "character": "Randall", "id": 23630, "credit_id": "52fe434bc3a36847f8049497", "cast_id": 10, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 1}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f804949b", "cast_id": 11, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 2}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f804949f", "cast_id": 12, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 3}, {"name": "Jennifer Schwalbach Smith", "character": "Emma", "id": 23658, "credit_id": "52fe434bc3a36847f80494a3", "cast_id": 13, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 4}, {"name": "Ben Affleck", "character": "Gawking Guy", "id": 880, "credit_id": "52fe434bc3a36847f80494a7", "cast_id": 14, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 5}, {"name": "Trevor Fehrman", "character": "Elias", "id": 23740, "credit_id": "52fe434bc3a36847f80494ab", "cast_id": 15, "profile_path": "/eRTV4HgLad7InVpVeBKYekeCasv.jpg", "order": 6}, {"name": "Rosario Dawson", "character": "Becky", "id": 5916, "credit_id": "52fe434bc3a36847f80494af", "cast_id": 16, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 7}, {"name": "Scott Mosier", "character": "Concerned Father", "id": 20503, "credit_id": "52fe434bc3a36847f80494b3", "cast_id": 17, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 8}, {"name": "Jason Lee", "character": "Lance Dowds", "id": 11662, "credit_id": "52fe434bc3a36847f80494b7", "cast_id": 18, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 9}, {"name": "Ethan Suplee", "character": "Teen #2", "id": 824, "credit_id": "52fe434bc3a36847f80494bb", "cast_id": 19, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 10}, {"name": "Jake Richardson", "character": "Teen #1", "id": 177165, "credit_id": "52fe434bc3a36847f80494bf", "cast_id": 20, "profile_path": "/e3Aldv2LbCsf2oFMTb0Kej9X7Pu.jpg", "order": 11}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f8049465", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.8, "runtime": 97}, "10488": {"poster_path": "/aK9pn7ivx4P72E5yYZ69A4sChVc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100074624, "overview": "A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.", "video": false, "id": 10488, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Nim's Island", "tagline": "Your adventure starts here.", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iRh0E4dR2m7ZiJQ9u58r8jPV0WU.jpg", "poster_path": "/rRPq295zZflnjp9Y8uhJppJBayQ.jpg", "id": 232844, "name": "Nim's Island Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0410377", "adult": false, "backdrop_path": "/hVzII4DQU9X9TVhXwQoLgeweZV9.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}], "release_date": "2008-04-03", "popularity": 0.918762240081398, "original_title": "Nim's Island", "budget": 37000000, "cast": [{"name": "Abigail Breslin", "character": "Nim Rusoe", "id": 17140, "credit_id": "52fe43799251416c75011cad", "cast_id": 1, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Alexandra Rover", "id": 1038, "credit_id": "52fe43799251416c75011cb1", "cast_id": 2, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Gerard Butler", "character": "Jack Rusoe / Alex Rover", "id": 17276, "credit_id": "52fe43799251416c75011cb5", "cast_id": 3, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 2}, {"name": "Michael Carman", "character": "Captain", "id": 68321, "credit_id": "52fe43799251416c75011cd1", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Mark Brady", "character": "Purser", "id": 985532, "credit_id": "52fe43799251416c75011ced", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Anthony Simcoe", "character": "First Mate", "id": 26056, "credit_id": "52fe43799251416c75011cf1", "cast_id": 15, "profile_path": "/cD188ImayMqPNYqj960fjPF8D4J.jpg", "order": 5}, {"name": "Christopher James Baker", "character": "Ensign", "id": 59118, "credit_id": "52fe43799251416c75011cf5", "cast_id": 16, "profile_path": "/m5MnqQQtgDPUmoPX9Zi0AC7hwzz.jpg", "order": 6}, {"name": "Maddison Joyce", "character": "Edmund", "id": 1077896, "credit_id": "52fe43799251416c75011cf9", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Peter Callan", "character": "Edmund's Father", "id": 78567, "credit_id": "52fe43799251416c75011cfd", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Rhonda Doyle", "character": "Edmund's Mother", "id": 207938, "credit_id": "52fe43799251416c75011d01", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Russell Butler", "character": "Old Fisherman", "id": 1077897, "credit_id": "52fe43799251416c75011d05", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Colin Gibson", "character": "Cruise Director", "id": 939990, "credit_id": "52fe43799251416c75011d09", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bryan Probets", "character": "Australian Tourist #1", "id": 1014587, "credit_id": "52fe43799251416c75011d0d", "cast_id": 22, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 12}, {"name": "Andrew Nason", "character": "Australian Tourist #2", "id": 1077898, "credit_id": "52fe43799251416c75011d11", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Dorothy Thorsen", "character": "Blue-Haired Woman", "id": 1077899, "credit_id": "52fe43799251416c75011d15", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Penny Everingham", "character": "Older Woman Tourist", "id": 1077900, "credit_id": "52fe43799251416c75011d19", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Tony Bellette", "character": "Older Man Tourist", "id": 109545, "credit_id": "52fe43799251416c75011d1d", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Jeff Dornan", "character": "Taxi Driver", "id": 1077901, "credit_id": "52fe43799251416c75011d21", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Jay Laga'aia", "character": "Helicopter Pilot", "id": 33182, "credit_id": "52fe43799251416c75011d25", "cast_id": 28, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 18}], "directors": [{"name": "Jennifer Flackett", "department": "Directing", "job": "Director", "credit_id": "52fe43799251416c75011cbb", "profile_path": null, "id": 66218}, {"name": "Mark Levin", "department": "Directing", "job": "Director", "credit_id": "52fe43799251416c75011cc1", "profile_path": null, "id": 66219}], "vote_average": 5.5, "runtime": 96}, "76025": {"poster_path": "/9RWPh1e9bxTJu46ln0tI61hMmlO.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 17693675, "overview": "In New York City, Brandon's carefully cultivated private life -- which allows him to indulge his sexual addiction -- is disrupted when his sister Cissy arrives unannounced for an indefinite stay.", "video": false, "id": 76025, "genres": [{"id": 18, "name": "Drama"}], "title": "Shame", "tagline": "", "vote_count": 197, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1723811", "adult": false, "backdrop_path": "/8RMuOjf52e4BDDojLQxkcuMlS2k.jpg", "production_companies": [{"name": "See-Saw Films", "id": 7217}], "release_date": "2011-12-02", "popularity": 0.749888840561339, "original_title": "Shame", "budget": 6500000, "cast": [{"name": "Carey Mulligan", "character": "Sissy", "id": 36662, "credit_id": "52fe4923c3a368484e11c185", "cast_id": 1, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Brandon", "id": 17288, "credit_id": "52fe4923c3a368484e11c189", "cast_id": 2, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "James Badge Dale", "character": "David", "id": 18473, "credit_id": "52fe4923c3a368484e11c18d", "cast_id": 3, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 2}, {"name": "Hannah Ware", "character": "Samantha", "id": 577478, "credit_id": "52fe4923c3a368484e11c191", "cast_id": 4, "profile_path": "/4pMeRW68hxn9LiTDfEzfR2AuIhC.jpg", "order": 3}, {"name": "Nicole Beharie", "character": "Marianne", "id": 87243, "credit_id": "52fe4924c3a368484e11c1a7", "cast_id": 10, "profile_path": "/9HiTyj5xHy6uLnbYE1TngB2ausz.jpg", "order": 4}, {"name": "Alex Manette", "character": "Steven", "id": 172150, "credit_id": "52fe4924c3a368484e11c1ab", "cast_id": 11, "profile_path": "/hnIIHAlPyqFMGbJCy0nY5xw7DyX.jpg", "order": 5}, {"name": "Elizabeth Masucci", "character": "Elizabeth", "id": 1030329, "credit_id": "52fe4924c3a368484e11c1af", "cast_id": 12, "profile_path": "/uaqBGqXtAZdFLsSFNJoEI8N2Xhf.jpg", "order": 6}, {"name": "Marta Milans", "character": "cocktail waitress", "id": 1181306, "credit_id": "52fe4924c3a368484e11c1b3", "cast_id": 13, "profile_path": "/4UnnZvfWLoZTdjdPa8BvYXV4As.jpg", "order": 7}], "directors": [{"name": "Steve McQueen", "department": "Directing", "job": "Director", "credit_id": "52fe4924c3a368484e11c19d", "profile_path": "/6w2fWkuhYQuv18OQi8cmSIq8srN.jpg", "id": 72757}], "vote_average": 7.1, "runtime": 101}, "2300": {"poster_path": "/9T9ucCk6wO0crRBUIkBJMRAVcKp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230000000, "overview": "Michael Jordan agrees to help the Looney Tunes play a basketball game against alien slavers to determine their freedom.", "video": false, "id": 2300, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Space Jam", "tagline": "Get ready to jam.", "vote_count": 275, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117705", "adult": false, "backdrop_path": "/kBTdPNTAzagAY6UiwY957KCDGuu.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Bros. Entertainment", "id": 17}], "release_date": "1996-11-15", "popularity": 0.778260445788321, "original_title": "Space Jam", "budget": 80000000, "cast": [{"name": "Michael Jordan", "character": "Himself", "id": 23678, "credit_id": "52fe434bc3a36847f80496c9", "cast_id": 2, "profile_path": "/7y16frD57Ztzk2mY4JeI2pQQhan.jpg", "order": 0}, {"name": "Wayne Knight", "character": "Stan Podolak", "id": 4201, "credit_id": "52fe434bc3a36847f80496cd", "cast_id": 3, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 1}, {"name": "Billy West", "character": "Bugs Bunny/Elmer Fudd (voice)", "id": 23679, "credit_id": "52fe434bc3a36847f80496d1", "cast_id": 4, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 2}, {"name": "Dee Bradley Baker", "character": "Daffy Duck/Tazmanian Devil/Bull (voice)", "id": 23680, "credit_id": "52fe434bc3a36847f80496d5", "cast_id": 5, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 3}, {"name": "Theresa Randle", "character": "Juanita Jordan", "id": 4604, "credit_id": "52fe434bc3a36847f80496d9", "cast_id": 6, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 4}, {"name": "Danny DeVito", "character": "Mr. Swackhammer (voice)", "id": 518, "credit_id": "52fe434bc3a36847f80496dd", "cast_id": 7, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 5}, {"name": "Brandon Hammond", "character": "Michael Jordan (at 10)", "id": 23681, "credit_id": "52fe434bc3a36847f80496e1", "cast_id": 8, "profile_path": "/ooljlVi5IYf2w4Px3jqc8OQdjjS.jpg", "order": 6}, {"name": "Larry Bird", "character": "Himself", "id": 23682, "credit_id": "52fe434bc3a36847f80496e5", "cast_id": 9, "profile_path": "/1KRnQVsXS8mz4tHHWD1yPAQBXq2.jpg", "order": 7}, {"name": "Bill Murray", "character": "Himself", "id": 1532, "credit_id": "52fe434bc3a36847f80496e9", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 8}, {"name": "Charles Barkley", "character": "Himself", "id": 1211812, "credit_id": "5361746b0e0a2649bf0004e6", "cast_id": 37, "profile_path": "/mqHWhTtrja9vI8kfI6z7tCq5gB1.jpg", "order": 9}, {"name": "Patrick Ewing", "character": "Himself", "id": 1231141, "credit_id": "53614c6cc3a368397e0001d2", "cast_id": 19, "profile_path": "/aaXM8PuixEHNTLmvBQJLH8vV1SV.jpg", "order": 11}, {"name": "Tyrone Bogues", "character": "Himself", "id": 1232432, "credit_id": "53614e44c3a36839650001b4", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Larry Johnson", "character": "Himself", "id": 1225517, "credit_id": "53614eb1c3a36839650001bc", "cast_id": 21, "profile_path": "/gbfwZWitnSrcQwkAughr5Ji4iT5.jpg", "order": 13}, {"name": "Shawn Bradley", "character": "Himself", "id": 1234833, "credit_id": "5361565a0e0a2649b800027a", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Ahmad Rashad", "character": "Himself", "id": 1197748, "credit_id": "5361566c0e0a2649a6000277", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Del Harris", "character": "Himself", "id": 1251369, "credit_id": "536156930e0a2649b800027f", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Vlade Divac", "character": "Himself", "id": 193304, "credit_id": "536156a50e0a2649a90002a3", "cast_id": 25, "profile_path": "/ivflYHUbWXKyDe5B9su5HSidMA9.jpg", "order": 17}, {"name": "Cedric Ceballos", "character": "Himself", "id": 1230823, "credit_id": "536156d20e0a2649b8000282", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Jim Rome", "character": "Himself", "id": 1215304, "credit_id": "536156e10e0a2649ad000272", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Paul Westphal", "character": "Himself", "id": 1315402, "credit_id": "536156ee0e0a2649b8000285", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Danny Ainge", "character": "Himself", "id": 1315446, "credit_id": "536156fe0e0a2649ad000275", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Alonzo Mourning", "character": "Himself", "id": 180625, "credit_id": "5361571f0e0a2649b8000287", "cast_id": 30, "profile_path": "/ukR2lS5Z8avrJnN3Kua1ks3Habf.jpg", "order": 22}, {"name": "A.C. Green", "character": "Himself", "id": 1315447, "credit_id": "5361572a0e0a2649bf000295", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Charles Oakley", "character": "Himself", "id": 1315403, "credit_id": "536157540e0a2649bf00029b", "cast_id": 32, "profile_path": "/l35FQsV529lOhDFvMGk8aJ82AV9.jpg", "order": 24}, {"name": "Derek Harper", "character": "Himself", "id": 1315448, "credit_id": "536157680e0a2649a90002b5", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Jeff Malone", "character": "Himself", "id": 1315449, "credit_id": "536157780e0a2649a6000287", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Anthony Miller", "character": "Himself", "id": 1315450, "credit_id": "536157ba0e0a2649bb0002d3", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Sharone Wright", "character": "Himself", "id": 1315451, "credit_id": "536157cb0e0a2649bf0002a7", "cast_id": 36, "profile_path": null, "order": 28}], "directors": [{"name": "Joe Pytka", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f80496c5", "profile_path": "/c46Ah1KxlfC4W8mHVrGDsJ7dMPJ.jpg", "id": 23677}], "vote_average": 6.3, "runtime": 88}, "10495": {"poster_path": "/2Z0EJl11kOSPMMvHqZ4r5Csh7Ph.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kreese, his life in tatters after his karate schools was defeated by Daniel and Mr Miyagi, visits Terry, a friend from Vietnam. Terry is a ruthless business man and a martial arts expert, and he vows to help Kresse take revenge on Daniel and Mr Miyagi.", "video": false, "id": 10495, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid, Part III", "tagline": "First it was teacher to student. Then it was father to son. Now, it's man to man.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sq4c328WCIFIVD7B9ZGFRwDbUTH.jpg", "poster_path": "/o6h2F0C5eZOy50Q76fNYzc9mvvw.jpg", "id": 8580, "name": "The Karate Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097647", "adult": false, "backdrop_path": "/dDNWXkbRLOgah7sVh1aedbjMRB5.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1989-06-29", "popularity": 0.374853305229742, "original_title": "The Karate Kid, Part III", "budget": 0, "cast": [{"name": "Ralph Macchio", "character": "Daniel LaRusso", "id": 2877, "credit_id": "52fe437b9251416c75012081", "cast_id": 1, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 0}, {"name": "Pat Morita", "character": "Mr. Keisuke Miyagi", "id": 23915, "credit_id": "52fe437b9251416c75012085", "cast_id": 2, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 1}, {"name": "Martin Kove", "character": "John Kreese", "id": 56117, "credit_id": "52fe437b9251416c75012089", "cast_id": 3, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 2}, {"name": "Thomas Ian Griffith", "character": "Terry Silver", "id": 60705, "credit_id": "52fe437b9251416c7501208d", "cast_id": 4, "profile_path": "/eBXSCzKTo9EuNHbKWQqrAhETaSm.jpg", "order": 3}, {"name": "Robyn Lively", "character": "Jessica Andrews", "id": 15905, "credit_id": "52fe437b9251416c750120b5", "cast_id": 11, "profile_path": "/gxXVCbEXPG0Emzx28rVk5eBpAYn.jpg", "order": 4}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe437b9251416c75012099", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 5.8, "runtime": 112}, "7211": {"poster_path": "/2HnyNUcQ9B5OJVJBIbidb0F9gT1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47642963, "overview": "Advice columnist Dan Burns (Carell) is an expert on relationships, but somehow struggles to succeed as a brother, a son and a single parent to three precocious daughters. Things get even more complicated when Dan finds out that the woman he falls in love with is actually his brother's new girlfriend.", "video": false, "id": 7211, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Dan in Real Life", "tagline": "Something's happening to Dan. It's confusing. It's awkward. It's family.", "vote_count": 74, "homepage": "http://daninreallife.movies.go.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480242", "adult": false, "backdrop_path": "/eOwGABfsp5rZG5HUMh2Ggbk9MM4.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Focus Features", "id": 10146}, {"name": "Jon Shestack Productions", "id": 10991}], "release_date": "2007-10-26", "popularity": 0.482260369830737, "original_title": "Dan in Real Life", "budget": 25000000, "cast": [{"name": "Steve Carell", "character": "Dan Burns", "id": 4495, "credit_id": "52fe4473c3a36847f8096ba5", "cast_id": 13, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Juliette Binoche", "character": "Marie", "id": 1137, "credit_id": "52fe4473c3a36847f8096ba9", "cast_id": 14, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 1}, {"name": "Dane Cook", "character": "Mitch", "id": 31837, "credit_id": "52fe4473c3a36847f8096bad", "cast_id": 15, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 2}, {"name": "Dianne Wiest", "character": "Nana", "id": 1902, "credit_id": "52fe4473c3a36847f8096bb1", "cast_id": 16, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 3}, {"name": "John Mahoney", "character": "Poppy", "id": 4251, "credit_id": "52fe4473c3a36847f8096bb5", "cast_id": 17, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 4}, {"name": "Emily Blunt", "character": "Ruthie Draper", "id": 5081, "credit_id": "52fe4473c3a36847f8096bb9", "cast_id": 18, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 5}, {"name": "Alison Pill", "character": "Jane", "id": 17486, "credit_id": "52fe4473c3a36847f8096bbd", "cast_id": 19, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 6}, {"name": "Britt Robertson", "character": "Cara", "id": 52018, "credit_id": "52fe4473c3a36847f8096bc1", "cast_id": 20, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 7}, {"name": "Marlene Lawston", "character": "Lilly", "id": 52019, "credit_id": "52fe4473c3a36847f8096bc5", "cast_id": 21, "profile_path": "/pYRmhahQG7dWiAc9EyhaPD92oTH.jpg", "order": 8}, {"name": "Norbert Leo Butz", "character": "Clay", "id": 52020, "credit_id": "52fe4473c3a36847f8096bc9", "cast_id": 22, "profile_path": "/yYonYgBHg9ocOWWNJnQaEtmMhrq.jpg", "order": 9}, {"name": "Amy Ryan", "character": "Eileen", "id": 39388, "credit_id": "52fe4473c3a36847f8096bcd", "cast_id": 23, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 10}, {"name": "Jessica Hecht", "character": "Amy", "id": 14984, "credit_id": "52fe4473c3a36847f8096bd1", "cast_id": 24, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 11}, {"name": "Frank Wood", "character": "Howard", "id": 52021, "credit_id": "52fe4473c3a36847f8096bd5", "cast_id": 25, "profile_path": "/7g06FytDzIpbRTw7ONlB2ofara5.jpg", "order": 12}, {"name": "CJ Adams", "character": "Elliot (as Cameron 'CJ' Adams)", "id": 1107800, "credit_id": "52fe4473c3a36847f8096bdf", "cast_id": 27, "profile_path": "/czZGg0TvKY38w0cd7XXqvTIqXy0.jpg", "order": 13}], "directors": [{"name": "Peter Hedges", "department": "Directing", "job": "Director", "credit_id": "52fe4473c3a36847f8096b65", "profile_path": "/sj2jd4t9nDYol6oNdupbQE2VVaC.jpg", "id": 3290}], "vote_average": 6.4, "runtime": 98}, "10501": {"poster_path": "/lQnNNjT4yW3i2rmQhGibiPBnc6e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50802661, "overview": "After a failed swindle, two con-men end up with a map to El Dorado, the fabled \"city of gold,\" and an unintended trip to the New World. Much to their surprise, the map does lead the pair to the mythical city, where the startled inhabitants promptly begin to worship them as gods. The only question is, do they take the worshipful natives for all they're worth, or is there a bit more to El Dorado than riches?", "video": false, "id": 10501, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Road to El Dorado", "tagline": "They came for the gold... they stayed for the adventure.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "eu", "name": "euskera"}, {"iso_639_1": "fi", "name": "suomi"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138749", "adult": false, "backdrop_path": "/j8XMblbxKceZqTWkvfR04QK3EHA.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2000-03-31", "popularity": 1.26330383574188, "original_title": "The Road to El Dorado", "budget": 95000000, "cast": [{"name": "Kenneth Branagh", "character": "Miguel", "id": 11181, "credit_id": "52fe437c9251416c750122cb", "cast_id": 1, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 0}, {"name": "Kevin Kline", "character": "Tulio", "id": 8945, "credit_id": "52fe437c9251416c750122cf", "cast_id": 2, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 1}, {"name": "Rosie Perez", "character": "Chel", "id": 4810, "credit_id": "52fe437c9251416c750122d3", "cast_id": 3, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 2}, {"name": "Armand Assante", "character": "Tzekel-Kan", "id": 23346, "credit_id": "52fe437c9251416c750122d7", "cast_id": 4, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 3}], "directors": [{"name": "Don Michael Paul", "department": "Directing", "job": "Director", "credit_id": "52fe437c9251416c750122dd", "profile_path": "/z8wOHvKYEAuR2s5q0JZRkt5Blu5.jpg", "id": 27005}, {"name": "Bibo Bergeron", "department": "Directing", "job": "Director", "credit_id": "52fe437c9251416c75012301", "profile_path": null, "id": 65629}], "vote_average": 6.6, "runtime": 89}, "2310": {"poster_path": "/j90lLkvlcPNL6VVoLGQ0yzPUfJV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 195735876, "overview": "An epic tale concerning a 6th-century Scandinavian warrior named Beowulf and his mission to slay the manlike ogre Grendel, a descendant of Cain.", "video": false, "id": 2310, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Beowulf", "tagline": "Evil breeds pain.", "vote_count": 245, "homepage": "http://www.beowulfmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0442933", "adult": false, "backdrop_path": "/lw9OluUfC72V3jmUCkq7TXfaPfv.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Shangri-La Entertainment", "id": 2265}, {"name": "ImageMovers", "id": 11395}], "release_date": "2007-11-05", "popularity": 0.743847209742831, "original_title": "Beowulf", "budget": 70000000, "cast": [{"name": "Ray Winstone", "character": "Beowulf / Golden Man / Dragon", "id": 5538, "credit_id": "52fe434cc3a36847f8049c75", "cast_id": 24, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Grendel's Mother", "id": 11701, "credit_id": "52fe434cc3a36847f8049c61", "cast_id": 19, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Anthony Hopkins", "character": "Hrothgar", "id": 4173, "credit_id": "52fe434cc3a36847f8049c65", "cast_id": 20, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 2}, {"name": "Robin Wright", "character": "Wealthow", "id": 32, "credit_id": "52fe434cc3a36847f8049c71", "cast_id": 23, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 3}, {"name": "John Malkovich", "character": "Unferth", "id": 6949, "credit_id": "52fe434cc3a36847f8049c79", "cast_id": 25, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "Wiglaf", "id": 2039, "credit_id": "52fe434cc3a36847f8049c69", "cast_id": 21, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "Crispin Glover", "character": "Grendel", "id": 1064, "credit_id": "52fe434cc3a36847f8049c6d", "cast_id": 22, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 6}, {"name": "Alison Lohman", "character": "Ursula", "id": 8291, "credit_id": "52fe434cc3a36847f8049c7d", "cast_id": 26, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 7}, {"name": "Greg Ellis", "character": "Garmund", "id": 4031, "credit_id": "52fe434cc3a36847f8049c81", "cast_id": 27, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 8}, {"name": "Sebastian Roch\u00e9", "character": "Wulfgar", "id": 23789, "credit_id": "52fe434cc3a36847f8049c85", "cast_id": 28, "profile_path": "/bOSLShSCLhZ4VtbgInX6SjhqlRb.jpg", "order": 9}, {"name": "Dominic Keating", "character": "Old Cain", "id": 23790, "credit_id": "52fe434cc3a36847f8049c89", "cast_id": 29, "profile_path": "/20lcxmytSdnm0skx63oYKdW3bFN.jpg", "order": 10}, {"name": "Charlotte Salt", "character": "Estrith", "id": 42216, "credit_id": "52fe434cc3a36847f8049c8d", "cast_id": 30, "profile_path": "/hPCsJwahhJ8elYzM1f41DMUXNKV.jpg", "order": 11}, {"name": "Rik Young", "character": "Eofor", "id": 42217, "credit_id": "52fe434cc3a36847f8049c91", "cast_id": 31, "profile_path": "/1m9t6jEdUV9O7jXxYXymYmdEoVk.jpg", "order": 12}, {"name": "Sonje Fortag", "character": "Gitte", "id": 42284, "credit_id": "52fe434dc3a36847f8049d2b", "cast_id": 60, "profile_path": "/7fNJeQK9nXt5EoxqaZkuni71S9d.jpg", "order": 13}, {"name": "Keith Kraft", "character": "Additional Adult Performer (uncredited)", "id": 1429705, "credit_id": "54e8a4c2c3a36836dc001f0c", "cast_id": 77, "profile_path": null, "order": 14}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe434cc3a36847f8049bfd", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 5.5, "runtime": 115}, "2312": {"poster_path": "/bV18YaqIQh0aeOWnfkOvD0iqfUJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man named Farmer sets out to rescue his kidnapped wife and avenge the death of his son -- two acts committed by the Krugs, a race of animal-warriors who are controlled by the evil Gallian.", "video": false, "id": 2312, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "In the Name of the King: A Dungeon Siege Tale", "tagline": "Rise and fight", "vote_count": 65, "homepage": "http://www.inthenameoftheking.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/gBVOsxHbidWHHCOmfhrR5ghkmYn.jpg", "id": 122922, "name": "In the Name of the King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0460780", "adult": false, "backdrop_path": "/u14b6vdFieOm9OXGa49c7n5gmQS.jpg", "production_companies": [{"name": "Boll Kino Beteiligungs GmbH & Co. KG", "id": 1062}, {"name": "Brightlight Pictures", "id": 1063}, {"name": "Herold Productions", "id": 1064}], "release_date": "2007-11-29", "popularity": 0.726612863107373, "original_title": "In the Name of the King: A Dungeon Siege Tale", "budget": 60000000, "cast": [{"name": "Jason Statham", "character": "Farmer", "id": 976, "credit_id": "52fe434dc3a36847f8049e1d", "cast_id": 13, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "John Rhys-Davies", "character": "Merick", "id": 655, "credit_id": "52fe434dc3a36847f8049e21", "cast_id": 14, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Gallian", "id": 11477, "credit_id": "52fe434dc3a36847f8049e25", "cast_id": 15, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Leelee Sobieski", "character": "Muriella", "id": 22290, "credit_id": "52fe434dc3a36847f8049e29", "cast_id": 17, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 3}, {"name": "Burt Reynolds", "character": "King Konreid", "id": 16475, "credit_id": "52fe434dc3a36847f8049e2d", "cast_id": 18, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 4}, {"name": "Ron Perlman", "character": "Norick", "id": 2372, "credit_id": "52fe434dc3a36847f8049e31", "cast_id": 19, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 5}, {"name": "Brian J. White", "character": "Tarish", "id": 31137, "credit_id": "52fe434dc3a36847f8049e35", "cast_id": 21, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 6}, {"name": "William Sanderson", "character": "Bastian", "id": 590, "credit_id": "52fe434dc3a36847f8049e39", "cast_id": 22, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 7}, {"name": "Kristanna Loken", "character": "Elora", "id": 7218, "credit_id": "52fe434dc3a36847f8049e7f", "cast_id": 35, "profile_path": "/rxeYONGXlnNYOn50KjjiwgLxiGX.jpg", "order": 8}, {"name": "Matthew Lillard", "character": "Duke Fallow", "id": 26457, "credit_id": "52fe434dc3a36847f8049e89", "cast_id": 37, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 9}, {"name": "Claire Forlani", "character": "Solana", "id": 4174, "credit_id": "52fe434dc3a36847f8049e8d", "cast_id": 38, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 10}, {"name": "Mike Dopud", "character": "General Backler", "id": 64674, "credit_id": "52fe434dc3a36847f8049e97", "cast_id": 40, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 11}, {"name": "Tania Saulnier", "character": "Talwyn", "id": 59244, "credit_id": "52fe434dc3a36847f8049e9b", "cast_id": 41, "profile_path": "/bEMuffxifJMZkcAmZ2J9NbHehJu.jpg", "order": 12}, {"name": "Gabrielle Rose", "character": "Delinda", "id": 58804, "credit_id": "52fe434dc3a36847f8049e9f", "cast_id": 42, "profile_path": "/wHJfGv13nIsph7Oam0Mf3boxDHK.jpg", "order": 13}, {"name": "Terence Kelly", "character": "Trumaine", "id": 27112, "credit_id": "52fe434dc3a36847f8049ea3", "cast_id": 43, "profile_path": null, "order": 14}, {"name": "Carrie Fleming", "character": "Crying Woman", "id": 58908, "credit_id": "52fe434dc3a36847f8049ead", "cast_id": 45, "profile_path": "/chrDx14YRApEwzD05kdWSjpZSIE.jpg", "order": 15}, {"name": "Eva Padberg", "character": "Handmaiden", "id": 998517, "credit_id": "5307869f925141111100013b", "cast_id": 46, "profile_path": "/uThpUVZQibPlrLtkSETUPD2iMd2.jpg", "order": 16}], "directors": [{"name": "Uwe Boll", "department": "Directing", "job": "Director", "credit_id": "52fe434dc3a36847f8049dd7", "profile_path": "/8i6o27RrRGRR5iAcLSOBt06fcM7.jpg", "id": 23799}], "vote_average": 4.1, "runtime": 127}, "2313": {"poster_path": "/dQxtI83slU5fAq6WZjEmIDAtYvM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A career driven professional from Manhattan is wooed by a young painter, who also happens to be the son of her psychoanalyst.", "video": false, "id": 2313, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Prime", "tagline": "A Therapeutic New Comedy", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387514", "adult": false, "backdrop_path": "/j6MfYUiDrtJ54f0FqD4xcHr8fZO.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Team Todd", "id": 598}, {"name": "Prime Film Productions LLC", "id": 1046}, {"name": "Younger Than You", "id": 1047}], "release_date": "2005-09-21", "popularity": 0.504277404580122, "original_title": "Prime", "budget": 0, "cast": [{"name": "Uma Thurman", "character": "Rafi Gardet", "id": 139, "credit_id": "52fe434dc3a36847f8049ed5", "cast_id": 1, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "Bryan Greenberg", "character": "David Bloomberg", "id": 23821, "credit_id": "52fe434dc3a36847f8049ed9", "cast_id": 2, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 1}, {"name": "Meryl Streep", "character": "Lisa Metzger", "id": 5064, "credit_id": "52fe434dc3a36847f8049edd", "cast_id": 3, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 2}, {"name": "Annie Parisse", "character": "Catherine", "id": 24291, "credit_id": "52fe434dc3a36847f8049ee1", "cast_id": 4, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 3}, {"name": "Zak Orth", "character": "Randall", "id": 6212, "credit_id": "52fe434dc3a36847f8049ee5", "cast_id": 5, "profile_path": "/rKupoahQ3pgeVVXS8EWd1WSnKEO.jpg", "order": 4}, {"name": "Jerry Adler", "character": "Sam", "id": 24292, "credit_id": "52fe434dc3a36847f8049ee9", "cast_id": 6, "profile_path": "/3oS2KYKYUxo40nNFv08asY9mNQA.jpg", "order": 5}, {"name": "Doris Belack", "character": "Blanch", "id": 24293, "credit_id": "52fe434dc3a36847f8049eed", "cast_id": 7, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 6}, {"name": "Jon Abrahams", "character": "Morris", "id": 17866, "credit_id": "52fe434dc3a36847f8049ef1", "cast_id": 8, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 7}, {"name": "Mini Anden", "character": "Sue", "id": 142953, "credit_id": "52fe434dc3a36847f8049f19", "cast_id": 15, "profile_path": "/m92JfMnAl6KC5d0ho3r1lFpABQJ.jpg", "order": 8}, {"name": "Ato Essandoh", "character": "Damien", "id": 5377, "credit_id": "52fe434dc3a36847f8049f1d", "cast_id": 16, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 9}, {"name": "Sebastian Sozzi", "character": "Friend #1", "id": 53066, "credit_id": "52fe434dc3a36847f8049f21", "cast_id": 17, "profile_path": "/6XiSiPEhZjatykjZnNusp2u5wKF.jpg", "order": 10}], "directors": [{"name": "Ben Younger", "department": "Directing", "job": "Director", "credit_id": "52fe434dc3a36847f8049ef7", "profile_path": "/7KzvNpsJT4qHV4owEMBvnMMfIdH.jpg", "id": 24294}], "vote_average": 5.6, "runtime": 102}, "2320": {"poster_path": "/wmgkFuEr8bHRAgs1HS5U46Rzo0I.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68000000, "overview": "Terrorists hijack a 747 inbound to Washington D.C., demanding the the release of their imprisoned leader. Intelligence expert David Grant (Kurt Russell) suspects another reason and he is soon the reluctant member of a special assault team that is assigned to intercept the plane and hijackers.", "video": false, "id": 2320, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Executive Decision", "tagline": "Fasten your seat belts", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116253", "adult": false, "backdrop_path": "/6WIG9ozIHNtHCkpgGl2edPjASel.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1996-03-15", "popularity": 0.582108756895521, "original_title": "Executive Decision", "budget": 55000000, "cast": [{"name": "Kurt Russell", "character": "Dr. David Grant", "id": 6856, "credit_id": "52fe434ec3a36847f804a20d", "cast_id": 2, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Steven Seagal", "character": "Lt. Colonel Austin Travis", "id": 23880, "credit_id": "52fe434ec3a36847f804a211", "cast_id": 3, "profile_path": "/f8OFR4h3ngyFesiudCygrNFdsCE.jpg", "order": 1}, {"name": "Halle Berry", "character": "Jean, Flight Attendant", "id": 4587, "credit_id": "52fe434ec3a36847f804a215", "cast_id": 4, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 2}, {"name": "John Leguizamo", "character": "Captain Rat", "id": 5723, "credit_id": "52fe434ec3a36847f804a261", "cast_id": 17, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 3}, {"name": "Joe Morton", "character": "Sergeant 'Cappy' Matheny", "id": 3977, "credit_id": "52fe434ec3a36847f804a265", "cast_id": 18, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 4}, {"name": "BD Wong", "character": "Sergeant Louie", "id": 14592, "credit_id": "52fe434ec3a36847f804a269", "cast_id": 19, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 5}, {"name": "Whip Hubley", "character": "Sergeant Baker", "id": 11089, "credit_id": "52fe434ec3a36847f804a26d", "cast_id": 21, "profile_path": "/bk8Z3dtqRB0N4hGodG5zY0yiu3a.jpg", "order": 6}, {"name": "Mary Ellen Trainor", "character": "Allison, Flight Attendant", "id": 23967, "credit_id": "52fe434ec3a36847f804a271", "cast_id": 22, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 7}, {"name": "Oliver Platt", "character": "Dennis Cahill", "id": 17485, "credit_id": "52fe434ec3a36847f804a275", "cast_id": 23, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 8}, {"name": "Len Cariou", "character": "Secretary of Defense Charles White", "id": 41247, "credit_id": "52fe434ec3a36847f804a279", "cast_id": 24, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 9}, {"name": "Andreas Katsulas", "character": "El Sayed Jaffa", "id": 43773, "credit_id": "52fe434ec3a36847f804a27d", "cast_id": 25, "profile_path": "/z1bbvx6O7VWGrtxCFugo5aCyqMS.jpg", "order": 10}, {"name": "Marla Maples", "character": "Nancy, Flight Attendant", "id": 153884, "credit_id": "52fe434ec3a36847f804a281", "cast_id": 26, "profile_path": "/7ST8hjZvX85QGRUuRAmkHiQL99y.jpg", "order": 11}, {"name": "J. T. Walsh", "character": "Senator Mavros", "id": 22131, "credit_id": "52fe434ec3a36847f804a285", "cast_id": 27, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 12}, {"name": "Ingo Neuhaus", "character": "Doc", "id": 149471, "credit_id": "52fe434ec3a36847f804a289", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "William James Jones", "character": "Catman", "id": 974432, "credit_id": "52fe434ec3a36847f804a28d", "cast_id": 29, "profile_path": null, "order": 14}], "directors": [{"name": "Stuart Baird", "department": "Directing", "job": "Director", "credit_id": "52fe434ec3a36847f804a21b", "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "id": 2523}], "vote_average": 5.1, "runtime": 133}, "2322": {"poster_path": "/pAGKtPF8nMiJq4lsINOYJWvMS2D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105232691, "overview": "When shadowy U.S. intelligence agents blackmail a reformed computer hacker and his eccentric team of security experts into stealing a code-breaking \"black box\" from a Soviet-funded genius, they uncover a bigger conspiracy. Now, he and his \"sneakers\" must save themselves and the world economy by retrieving the box back from their blackmailers.", "video": false, "id": 2322, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sneakers", "tagline": "We could tell you what it's about. But then, of course, we'd have to kill you.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105435", "adult": false, "backdrop_path": "/6PY7nlksGTxjhgJRCHm6De1hSXs.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1992-09-09", "popularity": 0.703406373624171, "original_title": "Sneakers", "budget": 0, "cast": [{"name": "Robert Redford", "character": "Martin 'Marty' Bishop", "id": 4135, "credit_id": "52fe434ec3a36847f804a435", "cast_id": 1, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Sidney Poitier", "character": "Donald Crease", "id": 16897, "credit_id": "52fe434ec3a36847f804a439", "cast_id": 2, "profile_path": "/9LV17m3H7nGCJTXg7pzhK857g6V.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Darren 'Mother' Roskow", "id": 707, "credit_id": "52fe434ec3a36847f804a43d", "cast_id": 3, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "David Strathairn", "character": "Irwin 'Whistler' Emery", "id": 11064, "credit_id": "52fe434ec3a36847f804a441", "cast_id": 4, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 3}, {"name": "River Phoenix", "character": "Carl Arbegast", "id": 741, "credit_id": "52fe434ec3a36847f804a445", "cast_id": 5, "profile_path": "/qfokbmRwRvmIVsLHScshxLPAB3C.jpg", "order": 4}, {"name": "Timothy Busfield", "character": "Dick Gordon", "id": 23881, "credit_id": "52fe434ec3a36847f804a449", "cast_id": 6, "profile_path": "/8sQr5B1h0wJ4kOcTgwWyCDfzzYq.jpg", "order": 5}, {"name": "Mary McDonnell", "character": "Liz", "id": 1581, "credit_id": "52fe434ec3a36847f804a44d", "cast_id": 7, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Cosmo", "id": 2282, "credit_id": "52fe434ec3a36847f804a451", "cast_id": 8, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "James Earl Jones", "character": "NSA Agent Bernard Abbott", "id": 15152, "credit_id": "52fe434ec3a36847f804a455", "cast_id": 9, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 8}, {"name": "Donal Logue", "character": "Dr. Gunter Janek", "id": 10825, "credit_id": "52fe434ec3a36847f804a459", "cast_id": 10, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 9}, {"name": "Denise Dowse", "character": "Bank Teller", "id": 23970, "credit_id": "52fe434ec3a36847f804a499", "cast_id": 21, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 10}, {"name": "Eddie Jones", "character": "Buddy Wallace", "id": 8692, "credit_id": "52fe434ec3a36847f804a49d", "cast_id": 22, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 11}, {"name": "Time Winters", "character": "Homeless Man", "id": 85421, "credit_id": "52fe434ec3a36847f804a4a1", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Bodhi Elfman", "character": "Centurion S&L Night Guard", "id": 154883, "credit_id": "52fe434ec3a36847f804a4a5", "cast_id": 24, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 13}, {"name": "Stephen Tobolowsky", "character": "Werner Brandes", "id": 537, "credit_id": "53c8d3d50e0a26649c0016ec", "cast_id": 30, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 14}], "directors": [{"name": "Phil Alden Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe434ec3a36847f804a45f", "profile_path": "/aDkpgJkcHHnd3cCY1Umiouxbxw0.jpg", "id": 23968}], "vote_average": 6.7, "runtime": 126}, "2323": {"poster_path": "/ps5B8ZNSFvqLczD5e4Yh3whV66B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84431625, "overview": "Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.", "video": false, "id": 2323, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Field of Dreams", "tagline": "If you believe the impossible, the incredible can come true.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097351", "adult": false, "backdrop_path": "/zXXGo9SGPQLsmdewEYV6WvShLcM.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}], "release_date": "1989-04-21", "popularity": 0.379489202474586, "original_title": "Field of Dreams", "budget": 0, "cast": [{"name": "Kevin Costner", "character": "Ray Kinsella", "id": 1269, "credit_id": "52fe434ec3a36847f804a501", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "James Earl Jones", "character": "Terrence Mann", "id": 15152, "credit_id": "52fe434ec3a36847f804a505", "cast_id": 2, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 1}, {"name": "Amy Madigan", "character": "Annie Kinsella", "id": 23882, "credit_id": "52fe434ec3a36847f804a509", "cast_id": 3, "profile_path": "/pNdNJPKRdl3veCRH8fZv3H76ywJ.jpg", "order": 2}, {"name": "Timothy Busfield", "character": "Mark", "id": 23881, "credit_id": "52fe434ec3a36847f804a50d", "cast_id": 4, "profile_path": "/8sQr5B1h0wJ4kOcTgwWyCDfzzYq.jpg", "order": 3}, {"name": "Ray Liotta", "character": "\"Shoeless\" Joe Jackson", "id": 11477, "credit_id": "52fe434ec3a36847f804a511", "cast_id": 5, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 4}, {"name": "Burt Lancaster", "character": "Doc \"Moonlight\" Graham", "id": 13784, "credit_id": "52fe434ec3a36847f804a515", "cast_id": 6, "profile_path": "/p45iFmVBoBCVE1HS8Fg7iaF8cZS.jpg", "order": 5}, {"name": "Frank Whaley", "character": "Archie Graham", "id": 11805, "credit_id": "52fe434ec3a36847f804a567", "cast_id": 20, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 6}, {"name": "Dwier Brown", "character": "John Kinsella", "id": 23974, "credit_id": "52fe434ec3a36847f804a56b", "cast_id": 21, "profile_path": "/57WrIyOdUgcfs7R2JnSTqlp7Q2g.jpg", "order": 7}, {"name": "Lee Garlington", "character": "Beulah Gasnick", "id": 23975, "credit_id": "52fe434ec3a36847f804a56f", "cast_id": 22, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 8}, {"name": "Gaby Hoffmann", "character": "Karin Kinsella", "id": 12930, "credit_id": "52fe434ec3a36847f804a573", "cast_id": 23, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 9}, {"name": "Kelly Coffield Park", "character": "Dee, Mark's Wife", "id": 944116, "credit_id": "52fe434ec3a36847f804a577", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Michael Milhoan", "character": "Buck Weaver", "id": 154295, "credit_id": "52fe434ec3a36847f804a57b", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Art LaFleur", "character": "Chick Gandil", "id": 44792, "credit_id": "52fe434ec3a36847f804a57f", "cast_id": 26, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 12}, {"name": "Mike Nussbaum", "character": "Principal", "id": 9628, "credit_id": "52fe434ec3a36847f804a583", "cast_id": 27, "profile_path": "/gcsqhh40flXDPJ9s3U6clD9Jb59.jpg", "order": 13}, {"name": "Larry Brandenburg", "character": "PTA Heckler", "id": 92119, "credit_id": "52fe434ec3a36847f804a587", "cast_id": 28, "profile_path": "/3TGsmGFwJps4dmVncOZIO3p6ToO.jpg", "order": 14}], "directors": [{"name": "Phil Alden Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe434ec3a36847f804a51b", "profile_path": "/aDkpgJkcHHnd3cCY1Umiouxbxw0.jpg", "id": 23968}], "vote_average": 7.0, "runtime": 107}, "10521": {"poster_path": "/y5O46J9i98MkcExaPIeZaRImF4C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58715510, "overview": "Two best friends become rivals when their respective weddings are accidentally booked for the same day.", "video": false, "id": 10521, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bride Wars", "tagline": "May the best bride win", "vote_count": 198, "homepage": "http://www.bridewars.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0901476", "adult": false, "backdrop_path": "/wkXDBT7CsTSaiVbtduhZhMaQsHw.jpg", "production_companies": [{"name": "Sunrise Entertainment (II)", "id": 26670}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Biride Productions", "id": 26671}, {"name": "Dune Entertainment", "id": 444}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2009-01-09", "popularity": 1.28921955579402, "original_title": "Bride Wars", "budget": 30000000, "cast": [{"name": "Anne Hathaway", "character": "Emma", "id": 1813, "credit_id": "52fe437f9251416c75012b79", "cast_id": 2, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Liv", "id": 11661, "credit_id": "52fe437f9251416c75012b7d", "cast_id": 3, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Bryan Greenberg", "character": "Nate", "id": 23821, "credit_id": "52fe437f9251416c75012b93", "cast_id": 7, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 2}, {"name": "Chris Pratt", "character": "Fletcher", "id": 73457, "credit_id": "52fe437f9251416c75012b97", "cast_id": 8, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 3}, {"name": "Steve Howey", "character": "Daniel", "id": 81388, "credit_id": "52fe437f9251416c75012b9b", "cast_id": 9, "profile_path": "/ecy3WAyASPhmFnbUduknWFb0aMg.jpg", "order": 4}, {"name": "Candice Bergen", "character": "Marion St. Claire", "id": 11850, "credit_id": "52fe437f9251416c75012b9f", "cast_id": 10, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 5}, {"name": "Kristen Johnston", "character": "Deb", "id": 13635, "credit_id": "52fe437f9251416c75012ba3", "cast_id": 11, "profile_path": "/r0FSG3VDWDxu5sAlC6EoXjHvjdi.jpg", "order": 6}, {"name": "Michael Arden", "character": "Kevin", "id": 83874, "credit_id": "52fe437f9251416c75012ba7", "cast_id": 12, "profile_path": "/ldZi8TFKz5tA7TRtwMs4gjxbdaS.jpg", "order": 7}, {"name": "Victor Slezak", "character": "Colson", "id": 10379, "credit_id": "52fe437f9251416c75012bab", "cast_id": 13, "profile_path": "/m3Wi4uifukUJl2GA3QEOHctPESz.jpg", "order": 8}, {"name": "Kelly Coffield Park", "character": "Kathy", "id": 944116, "credit_id": "53b6baa0c3a3685ebd002712", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "John Pankow", "character": "John", "id": 59872, "credit_id": "53b6bab0c3a3685eb1002686", "cast_id": 15, "profile_path": "/ur2Lfv0X2I5URYc1SZyWYcngbd2.jpg", "order": 10}, {"name": "Zoe O'Grady", "character": "Young Liv", "id": 1337520, "credit_id": "53b6bac0c3a3685ec1002756", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Shannon Ferber", "character": "Young Emma", "id": 1337521, "credit_id": "53b6bacdc3a3685eb4002697", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "June Diane Raphael", "character": "Amanda", "id": 83873, "credit_id": "53b6badbc3a3685eb70026b6", "cast_id": 18, "profile_path": "/ArhEeYtPoKmu9grgmmTLFMqXpdY.jpg", "order": 13}, {"name": "Charles Bernard", "character": "Wedding DJ", "id": 1337522, "credit_id": "53b6bae7c3a3685eab0026b2", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Casey Wilson", "character": "Stacy", "id": 83872, "credit_id": "54a24dc392514117dd000e5a", "cast_id": 20, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 15}, {"name": "Paul Scheer", "character": "Ricky Coo", "id": 59843, "credit_id": "54a24e66c3a3684d8f000ee4", "cast_id": 21, "profile_path": "/A81J8vYUdhVGhXFac1XHy2xO5QD.jpg", "order": 16}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe437f9251416c75012b75", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 5.5, "runtime": 89}, "2330": {"poster_path": "/13vrEB6T3DuDz26rWAUfHZV0eSm.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In Marseilles (France), skilled pizza delivery boy Daniel who drives a scooter finally has his dreams come true. He gets a taxi license. Caught by the police for a huge speed infraction, he will help Emilien, a loser inspector who can't drive, on the track of German bank robbers, so he doesn't lose his license and his dream job.", "video": false, "id": 2330, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Taxi", "tagline": "", "vote_count": 171, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0152930", "adult": false, "backdrop_path": "/5EuvViTrHeR2ZPgkp95Ug0aWayQ.jpg", "production_companies": [{"name": "ARP S\u00e9lection", "id": 189}, {"name": "TF1 Films Productions", "id": 356}, {"name": "Canal+", "id": 5358}], "release_date": "1998-04-04", "popularity": 0.682658707252337, "original_title": "Taxi", "budget": 0, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804a759", "cast_id": 1, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804a75d", "cast_id": 2, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Lilly Bertineau", "id": 8293, "credit_id": "52fe434fc3a36847f804a761", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804a765", "cast_id": 4, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 3}, {"name": "Manuela Gourary", "character": "Camille Coutant-Kerbalec", "id": 23983, "credit_id": "52fe434fc3a36847f804a7a5", "cast_id": 16, "profile_path": "/66w2NBAdQIB8lxZ5WHE6ia5lYlK.jpg", "order": 4}, {"name": "Bernard Farcy", "character": "Commissaire Gibert", "id": 23984, "credit_id": "52fe434fc3a36847f804a7a9", "cast_id": 17, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 6}, {"name": "Dan Herzberg", "character": "Paulo", "id": 554591, "credit_id": "52fe434fc3a36847f804a7cf", "cast_id": 25, "profile_path": "/C0CNy7V5k5bU8cdjHk4borBbfH.jpg", "order": 11}, {"name": "S\u00e9bastien Thiery", "character": "Driving Instructor", "id": 554592, "credit_id": "52fe434fc3a36847f804a7d3", "cast_id": 26, "profile_path": "/ofMAtIE9TwVl4I1DooxRjc2Jmuf.jpg", "order": 12}, {"name": "Eric B\u00e9renger", "character": "Butcher", "id": 554593, "credit_id": "52fe434fc3a36847f804a7d7", "cast_id": 27, "profile_path": "/gfCrudPrfwJCvCccQRxwHFtdHEj.jpg", "order": 13}, {"name": "Richard Sammel", "character": "German Gangster #1", "id": 49487, "credit_id": "530e526592514114310028dc", "cast_id": 31, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 16}, {"name": "Dominique No\u00e9", "character": "Ministre", "id": 1445240, "credit_id": "5511c437c3a36801740022aa", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Gr\u00e9gory Knop", "character": "Kr\u00fcger", "id": 1445241, "credit_id": "5511c456c3a36801740022b1", "cast_id": 33, "profile_path": null, "order": 18}], "directors": [{"name": "G\u00e9rard Pir\u00e8s", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a771", "profile_path": "/n1bm4dG5Cf3ofErC318g5PyqsO7.jpg", "id": 23945}], "vote_average": 6.5, "runtime": 86}, "2332": {"poster_path": "/bsbllNS0oeKoxKJB0mAKnaeUjkE.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The Japanese ambassaor is visiting Marseilles to view the city police's anti-gang tactics. During the visit he is kidnapped by a group working for the Japanese yakuza. Young officer Emilien is determined to rescue the ambassador and officer Petra (his girlfriend), who was also kidnapped, and restore the honor of his department. Once again, speed demon taxi-driver Daniel is called to save the day.", "video": false, "id": 2332, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Taxi 2", "tagline": "", "vote_count": 97, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0183869", "adult": false, "backdrop_path": "/eD0pr8PZlCA3HjFN49KYlfAYwYq.jpg", "production_companies": [{"name": "ARP S\u00e9lection", "id": 189}, {"name": "TF1 Films Productions", "id": 356}], "release_date": "2000-03-24", "popularity": 0.749216485942332, "original_title": "Taxi 2", "budget": 0, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804a8b3", "cast_id": 1, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804a8b7", "cast_id": 2, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Lilly Bertineau", "id": 8293, "credit_id": "52fe434fc3a36847f804a8bb", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804a8bf", "cast_id": 4, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 3}, {"name": "Bernard Farcy", "character": "Commissaire Gibert", "id": 23984, "credit_id": "52fe434fc3a36847f804a8e7", "cast_id": 11, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 4}, {"name": "Jean-Christophe Bouvet", "character": "G\u00e9n\u00e9ral Edmond Bertineau", "id": 19776, "credit_id": "52fe434fc3a36847f804a8eb", "cast_id": 12, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 5}, {"name": "Fr\u00e9d\u00e9rique Tirmont", "character": "Mother", "id": 554595, "credit_id": "52fe434fc3a36847f804a8ef", "cast_id": 13, "profile_path": "/vsqA1dHLdGpMpb68BiK818SoqjK.jpg", "order": 6}, {"name": "Marc Faure", "character": "French Minister", "id": 554596, "credit_id": "52fe434fc3a36847f804a8f3", "cast_id": 14, "profile_path": "/spPJGtUNZBZFSUqqjaCVINWoIg.jpg", "order": 7}, {"name": "Haruhiko Hirata", "character": "Japanese Minister", "id": 554597, "credit_id": "52fe434fc3a36847f804a8f7", "cast_id": 15, "profile_path": "/xe1Kjrek1Z0fKcYAJriuuOY8pa.jpg", "order": 8}, {"name": "Tsuyu Shimizu", "character": "Yuli", "id": 146382, "credit_id": "52fe434fc3a36847f804a8fb", "cast_id": 16, "profile_path": "/axwiNH3wCgkC9uYNg2ynyMxH9yM.jpg", "order": 9}, {"name": "Ko Suzuki", "character": "Katano", "id": 554598, "credit_id": "52fe434fc3a36847f804a8ff", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Yoshi O\u00efda", "character": "Yuke Tsumoto", "id": 21663, "credit_id": "52fe434fc3a36847f804a903", "cast_id": 18, "profile_path": "/c7uQkdtLirDGTAHhMF77YG7I213.jpg", "order": 11}, {"name": "Kentaro", "character": "Yakuza", "id": 554599, "credit_id": "52fe434fc3a36847f804a907", "cast_id": 19, "profile_path": "/5GBHIczhjdmNe4jX0xKyiRNeAfN.jpg", "order": 12}, {"name": "\u00c9douard Montoute", "character": "Alain", "id": 5441, "credit_id": "52fe434fc3a36847f804a913", "cast_id": 22, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 15}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a8c5", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 6.2, "runtime": 88}, "59678": {"poster_path": "/n2qLb5UPj0sKUnlzkthp30wM0g2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 3964682, "overview": "A teen gang in South London defend their block from an alien invasion. Attack the Block is a 2011 British science fiction action film written and directed by Joe Cornish. The film stars Jodie Whittaker, John Boyega, Alex Esmail, Franz Drameh, Leeon Jones, Simon Howard. Set on a council estate in South London on Bonfire night, the film follows a street gang which have to defend themselves from hostile alien invaders. The film was released in the United Kingdom on 11 May 2011. Attack the Block is the directorial debut of Cornish.", "video": false, "id": 59678, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Attack the Block", "tagline": "Inner City vs. Outer Space", "vote_count": 149, "homepage": "http://attacktheblock.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1478964", "adult": false, "backdrop_path": "/bWvLioeu9DUv4aP5kWPHj8NMoNJ.jpg", "production_companies": [{"name": "Studio Canal", "id": 5870}, {"name": "Film4", "id": 9349}, {"name": "UK Film Council", "id": 2452}], "release_date": "2011-05-12", "popularity": 0.226788311143381, "original_title": "Attack the Block", "budget": 14350531, "cast": [{"name": "Nick Frost", "character": "Ron", "id": 11109, "credit_id": "52fe4997c3a36847f81a25cd", "cast_id": 3, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 0}, {"name": "Jodie Whittaker", "character": "Sam", "id": 66431, "credit_id": "52fe4997c3a36847f81a25d1", "cast_id": 4, "profile_path": "/1uCyLazOjo1mepIgagMQFTcfPOX.jpg", "order": 1}, {"name": "John Boyega", "character": "Moses", "id": 236695, "credit_id": "52fe4997c3a36847f81a25dd", "cast_id": 7, "profile_path": "/aPhWLzjqCRUvjBXHyGU2ptPBSa8.jpg", "order": 2}, {"name": "Luke Treadaway", "character": "Brewis", "id": 103351, "credit_id": "52fe4997c3a36847f81a25d5", "cast_id": 5, "profile_path": "/uSROaOirY0WIBhz9fuIcroK1gA2.jpg", "order": 3}, {"name": "Joey Ansah", "character": "Policeman 1", "id": 29406, "credit_id": "52fe4997c3a36847f81a25d9", "cast_id": 6, "profile_path": "/jHubXiYEiUhonrVzXUJfVTOJ2Jq.jpg", "order": 4}, {"name": "Flaminia Cinque", "character": "Italian Woman", "id": 176188, "credit_id": "52fe4997c3a36847f81a25e1", "cast_id": 8, "profile_path": "/hZ2Oj35tMmqHms1uRWk7T0SPmMx.jpg", "order": 5}, {"name": "Chris Wilson", "character": "Arresting Police Officer", "id": 127005, "credit_id": "52fe4997c3a36847f81a25e5", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Terry Notary", "character": "The Creature", "id": 236696, "credit_id": "52fe4997c3a36847f81a25e9", "cast_id": 10, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 7}, {"name": "Paige Meade", "character": "Dimples", "id": 236697, "credit_id": "52fe4997c3a36847f81a25ed", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Adam Leese", "character": "Policeman 2", "id": 82738, "credit_id": "52fe4997c3a36847f81a25f1", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Danielle Vitalis", "character": "Tia", "id": 236698, "credit_id": "52fe4997c3a36847f81a25f5", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Selom Awadzi", "character": "Tonks", "id": 1161609, "credit_id": "52fe4997c3a36847f81a2605", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Adam Buxton", "character": "Documentary Voice Over", "id": 155532, "credit_id": "52fe4997c3a36847f81a2609", "cast_id": 17, "profile_path": "/zL31NlBBKL1NTjR48h610by5Rld.jpg", "order": 12}, {"name": "Jumayn Hunter", "character": "", "id": 85067, "credit_id": "542f2b18c3a3680442000c3d", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Joe Cornish", "department": "Directing", "job": "Director", "credit_id": "52fe4997c3a36847f81a25c3", "profile_path": "/95xxFo1uBbVK0OANUEvDlRQFSD1.jpg", "id": 155531}], "vote_average": 6.2, "runtime": 88}, "10527": {"poster_path": "/9mohxwknsHcwFBSAAhoQXwFV5zn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 603900354, "overview": "Alex, Marty, Melman, Gloria, King Julien, Maurice, the penguins and the chimps are back and still marooned on Madagascar. In the face of this obstacle, the New Yorkers have hatched a plan so crazy it just might work. With military precision, the penguins have repaired an old crashed plane... sort of.", "video": false, "id": 10527, "genres": [{"id": 16, "name": "Animation"}], "title": "Madagascar: Escape 2 Africa", "tagline": "Still together. Still lost!", "vote_count": 673, "homepage": "http://www.madagascar-themovie.com", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0479952", "adult": false, "backdrop_path": "/anxiz37Z9FPKeuCsJcxViSWmPxg.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2008-11-06", "popularity": 1.82527460160649, "original_title": "Madagascar: Escape 2 Africa", "budget": 150000000, "cast": [{"name": "Ben Stiller", "character": "Alex (voice)", "id": 7399, "credit_id": "52fe43809251416c75012d4f", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Jada Pinkett Smith", "character": "Gloria (voice)", "id": 9575, "credit_id": "52fe43809251416c75012d53", "cast_id": 2, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Melman (voice)", "id": 14409, "credit_id": "52fe43809251416c75012d57", "cast_id": 3, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Chris Rock", "character": "Marty / Additional Zebras (voice)", "id": 2632, "credit_id": "52fe43809251416c75012d5b", "cast_id": 4, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 3}, {"name": "Cedric the Entertainer", "character": "Maurice (voice)", "id": 5726, "credit_id": "52fe43809251416c75012d71", "cast_id": 8, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 4}, {"name": "Andy Richter", "character": "Mort (voice)", "id": 28637, "credit_id": "52fe43809251416c75012d75", "cast_id": 9, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 5}, {"name": "Bernie Mac", "character": "Zuba (voice)", "id": 1897, "credit_id": "52fe43809251416c75012d79", "cast_id": 10, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 6}, {"name": "Alec Baldwin", "character": "Makunga (voice)", "id": 7447, "credit_id": "52fe43809251416c75012d7d", "cast_id": 11, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 7}, {"name": "Sacha Baron Cohen", "character": "Julien (voice)", "id": 6730, "credit_id": "52fe43809251416c75012d81", "cast_id": 12, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 8}, {"name": "Sherri Shepherd", "character": "Mom (voice)", "id": 109561, "credit_id": "52fe43809251416c75012d85", "cast_id": 13, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 9}, {"name": "Will.i.am", "character": "Moto Moto (voice)", "id": 82092, "credit_id": "52fe43809251416c75012d89", "cast_id": 14, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 10}, {"name": "Elisa Gabrielli", "character": "Nana (voice)", "id": 64445, "credit_id": "52fe43809251416c75012d8d", "cast_id": 15, "profile_path": "/u2e1WxQ6ML5NlNcj4XLSEvYBahG.jpg", "order": 11}, {"name": "Tom McGrath", "character": "Skipper / Lemur (voice)", "id": 18864, "credit_id": "52fe43809251416c75012d91", "cast_id": 16, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 12}, {"name": "Chris Miller", "character": "Kowalski (voice)", "id": 12098, "credit_id": "52fe43809251416c75012d95", "cast_id": 17, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 13}, {"name": "Christopher Knights", "character": "Private (voice)", "id": 12097, "credit_id": "52fe43809251416c75012d99", "cast_id": 18, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 14}, {"name": "Conrad Vernon", "character": "Mason (voice)", "id": 12080, "credit_id": "52fe43809251416c75012d9d", "cast_id": 19, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 15}, {"name": "Quinn Dempsey Stiller", "character": "Baby Alex (voice)", "id": 1077795, "credit_id": "52fe43809251416c75012da1", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Declan Swift", "character": "Baby Alex (voice)", "id": 1077796, "credit_id": "52fe43809251416c75012da5", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Fred Tatasciore", "character": "Teetsi / Poacher #1 / Elephant (voice)", "id": 60279, "credit_id": "52fe43809251416c75012da9", "cast_id": 22, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 18}, {"name": "Eric Darnell", "character": "Joe the Witch Doctor / Poacher #2 (voice)", "id": 18863, "credit_id": "52fe43809251416c75012dad", "cast_id": 23, "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "order": 19}, {"name": "Willow Smith", "character": "Baby Glorida (voice)", "id": 49920, "credit_id": "52fe43809251416c75012db1", "cast_id": 24, "profile_path": "/1wd5w9wYSwMBOvMSzGYrf2Ilk9H.jpg", "order": 20}, {"name": "Thomas Stanley", "character": "Baby Marty (voice)", "id": 205171, "credit_id": "52fe43809251416c75012db5", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Zachary Gordon", "character": "Baby Melman (voice)", "id": 89819, "credit_id": "52fe43809251416c75012db9", "cast_id": 26, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 22}, {"name": "Meredith Vieira", "character": "Newscaster (voice)", "id": 118490, "credit_id": "52fe43809251416c75012dbd", "cast_id": 27, "profile_path": "/ydtUcTxplTDkNs5nbDhLS5OGjTL.jpg", "order": 23}, {"name": "Lesley Stahl", "character": "Newscaster (voice)", "id": 197819, "credit_id": "52fe43809251416c75012dc1", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Al Roker", "character": "Newscaster (voice)", "id": 111875, "credit_id": "52fe43809251416c75012dc5", "cast_id": 29, "profile_path": "/gl113PsTnmLTAFCjNthTyXwZJyI.jpg", "order": 25}, {"name": "David Soren", "character": "Lemur (voice)", "id": 94075, "credit_id": "52fe43809251416c75012dc9", "cast_id": 30, "profile_path": "/gDxfltxyHeR0uhBAhYniT9zQEEw.jpg", "order": 26}, {"name": "Phil LaMarr", "character": "Guide (voice)", "id": 31549, "credit_id": "52fe43809251416c75012dcd", "cast_id": 31, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 27}, {"name": "Stephen Kearin", "character": "Stephen the Giraffe / Tourist with Video Camera / Rhino (voice)", "id": 1448984, "credit_id": "55390b7692514138a90029e9", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Dan O'Connor", "character": "Tourist with University Shirt / Cape Buffalo (voice)", "id": 1232325, "credit_id": "55390ba2925141651800979b", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Edie Mirman", "character": "Telephone Recording (voice)", "id": 1229809, "credit_id": "55390bc89251413f5a001fe5", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Fergie", "character": "Hippo Girlfriend (voice) (as Stacy Ferguson)", "id": 20497, "credit_id": "55390c2d92514138a90029f8", "cast_id": 35, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 31}, {"name": "Harland Williams", "character": "Additional Giraffe (voice)", "id": 16846, "credit_id": "55390cbbc3a3681be4005027", "cast_id": 36, "profile_path": "/ncbsGnC41SsM7VpCOGBJGQ44dwF.jpg", "order": 32}, {"name": "Danny Jacobs", "character": "Tourist with New York T-Shirt (voice)", "id": 62389, "credit_id": "55390d07c3a36815ac009a74", "cast_id": 37, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 33}, {"name": "Bridget Hoffman", "character": "Female Tourist (voice)", "id": 173428, "credit_id": "55390d47c3a36878fd005b23", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Terrence Hardy Jr.", "character": "Cub (voice) (as Terence Hardy)", "id": 61305, "credit_id": "55390f5e9251411256005d42", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Conner Rayburn", "character": "Little Giraffe (voice)", "id": 1224835, "credit_id": "55390fab9251412423000170", "cast_id": 40, "profile_path": "/8XWlZotOHDqyZirBrjwJAE0gbOs.jpg", "order": 36}, {"name": "Holly Dorff", "character": "Fish (voice)", "id": 64449, "credit_id": "55390fcfc3a3687845006b34", "cast_id": 41, "profile_path": "/90CsT8F67gH2uQIVppIBMXm7qvf.jpg", "order": 37}, {"name": "David P. Smith", "character": "Bobby the Dik Dik (voice) (as David Smith)", "id": 1077844, "credit_id": "55390ff29251416518009818", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Lynnanne Zager", "character": "Lioness (voice)", "id": 64451, "credit_id": "5539101c92514138a9002a67", "cast_id": 43, "profile_path": "/bfxb3RNWKKxCdurwYQz7t48dCZI.jpg", "order": 39}, {"name": "Jackie Gonneau", "character": "Additional Dik Dik (voice)", "id": 950773, "credit_id": "55391040c3a36815ac009ac2", "cast_id": 44, "profile_path": null, "order": 40}, {"name": "John Eric Bentley", "character": "Additional Dialogue (voice) (as John Bentley)", "id": 183507, "credit_id": "553910709251412d91005be3", "cast_id": 45, "profile_path": "/vtVFmQMvMuWbypTZRu9dmlmOi3k.jpg", "order": 41}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe43809251416c75012d61", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe43809251416c75012d67", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}], "vote_average": 6.1, "runtime": 89}, "10528": {"poster_path": "/22ngurXbLqab7Sko6aTSdwOCe5W.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 524028679, "overview": "Eccentric consulting detective Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.", "video": false, "id": 10528, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sherlock Holmes", "tagline": "Nothing escapes him.", "vote_count": 2683, "homepage": "http://sherlock-holmes-movie.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/aeLom584FZdu6253WMaYEUCrTdu.jpg", "poster_path": "/bsUN9Ph1nUituteKWOhPQGguNXt.jpg", "id": 102322, "name": "Sherlock Holmes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0988045", "adult": false, "backdrop_path": "/k8nSKp54r0j1uy9QwM9RaD3goah.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "Wigram Productions", "id": 23202}, {"name": "Internationale Filmproduktion Blackbird Dritte", "id": 19855}], "release_date": "2009-12-25", "popularity": 2.01144629862967, "original_title": "Sherlock Holmes", "budget": 90000000, "cast": [{"name": "Robert Downey Jr.", "character": "Sherlock Holmes", "id": 3223, "credit_id": "52fe43809251416c75012ef9", "cast_id": 30, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Jude Law", "character": "Dr. John Watson", "id": 9642, "credit_id": "52fe43809251416c75012e79", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Rachel McAdams", "character": "Irene Adler", "id": 53714, "credit_id": "52fe43809251416c75012e75", "cast_id": 3, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 2}, {"name": "Mark Strong", "character": "Lord Blackwood", "id": 2983, "credit_id": "52fe43809251416c75012e7d", "cast_id": 5, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "Inspector Lestrade", "id": 1665, "credit_id": "52fe43809251416c75012ee3", "cast_id": 25, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "Robert Maillet", "character": "Dredger", "id": 112692, "credit_id": "52fe43809251416c75012ee7", "cast_id": 26, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 5}, {"name": "Geraldine James", "character": "Mrs. Hudson", "id": 11855, "credit_id": "52fe43809251416c75012eeb", "cast_id": 27, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 6}, {"name": "Kelly Reilly", "character": "Mary", "id": 17521, "credit_id": "52fe43809251416c75012e81", "cast_id": 6, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 7}, {"name": "William Houston", "character": "Constable Clark", "id": 84865, "credit_id": "52fe43809251416c75012eef", "cast_id": 28, "profile_path": "/cDRUNHUyHB29YKrTmzkQqBRCdla.jpg", "order": 8}, {"name": "Hans Matheson", "character": "Lord Coward", "id": 37168, "credit_id": "52fe43819251416c75012f2b", "cast_id": 40, "profile_path": "/4MQAI6g3AabzUDm29UbadjjWteL.jpg", "order": 9}, {"name": "James Fox", "character": "Sir Thomas Rotheram", "id": 1292, "credit_id": "52fe43809251416c75012efd", "cast_id": 32, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 10}, {"name": "William Hope", "character": "Ambassador Standish", "id": 10207, "credit_id": "52fe43809251416c75012e85", "cast_id": 7, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 11}, {"name": "Clive Russell", "character": "Captain Tanner", "id": 19901, "credit_id": "52fe43819251416c75012f2f", "cast_id": 41, "profile_path": "/3dkiAdWPMPiPRqwi5MVBFOSD9Xo.jpg", "order": 12}, {"name": "Oran Gurel", "character": "Reordan", "id": 1270734, "credit_id": "52fe43819251416c75012f33", "cast_id": 42, "profile_path": null, "order": 13}, {"name": "David Garrick", "character": "McMurdo", "id": 1121204, "credit_id": "52fe43819251416c75012f37", "cast_id": 43, "profile_path": null, "order": 14}, {"name": "Kylie Hutchinson", "character": "Maid", "id": 1156243, "credit_id": "52fe43819251416c75012f3b", "cast_id": 44, "profile_path": null, "order": 15}, {"name": "Andrew Brooke", "character": "Guard Captain", "id": 202760, "credit_id": "52fe43819251416c75012f3f", "cast_id": 45, "profile_path": "/vXyNaZWVYGWQCXYmH7hVRaRAyVP.jpg", "order": 16}, {"name": "Tom Watt", "character": "Carriage Driver", "id": 1227670, "credit_id": "52fe43819251416c75012f43", "cast_id": 46, "profile_path": null, "order": 17}, {"name": "John Kearney", "character": "Carriage Driver", "id": 1270741, "credit_id": "52fe43819251416c75012f47", "cast_id": 47, "profile_path": null, "order": 18}, {"name": "Sebastian Abineri", "character": "Coach Driver", "id": 174524, "credit_id": "52fe43819251416c75012f4b", "cast_id": 48, "profile_path": null, "order": 19}, {"name": "Jonathan Gabriel Robbins", "character": "Guard", "id": 1270742, "credit_id": "52fe43819251416c75012f4f", "cast_id": 49, "profile_path": null, "order": 20}, {"name": "James A. Stephens", "character": "Captain Philips", "id": 1187835, "credit_id": "52fe43819251416c75012f53", "cast_id": 50, "profile_path": null, "order": 21}, {"name": "Terry Taplin", "character": "Groundskeeper", "id": 237767, "credit_id": "52fe43819251416c75012f57", "cast_id": 51, "profile_path": null, "order": 22}, {"name": "Bronagh Gallagher", "character": "Palm Reader", "id": 33399, "credit_id": "52fe43819251416c75012f5b", "cast_id": 52, "profile_path": "/h44VuQ4yxA9ssITldXngDKSLoBQ.jpg", "order": 23}, {"name": "Ed Tolputt", "character": "Anonymous Man", "id": 1270828, "credit_id": "52fe43819251416c75012f5f", "cast_id": 53, "profile_path": null, "order": 24}, {"name": "Joe Egan", "character": "Big Man", "id": 1000873, "credit_id": "52fe43819251416c75012f63", "cast_id": 54, "profile_path": null, "order": 25}, {"name": "Jefferson Hall", "character": "Young Guard", "id": 109322, "credit_id": "52fe43819251416c75012f67", "cast_id": 55, "profile_path": null, "order": 26}, {"name": "Miles Jupp", "character": "Waiter", "id": 221857, "credit_id": "52fe43819251416c75012f6b", "cast_id": 56, "profile_path": "/46I2b7aManVdNQ3XFy9IPRkCDS9.jpg", "order": 27}, {"name": "Marn Davies", "character": "Police Officer", "id": 1270829, "credit_id": "52fe43819251416c75012f6f", "cast_id": 57, "profile_path": null, "order": 28}, {"name": "Andrew Greenough", "character": "Prison Guard", "id": 59082, "credit_id": "52fe43819251416c75012f73", "cast_id": 58, "profile_path": null, "order": 29}, {"name": "Ned Dennehy", "character": "Man with Roses", "id": 63362, "credit_id": "52fe43819251416c75012f77", "cast_id": 59, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 30}, {"name": "Martin Ewens", "character": "Removable Man", "id": 1270830, "credit_id": "52fe43819251416c75012f7b", "cast_id": 60, "profile_path": null, "order": 31}, {"name": "Amanda Grace Johnson", "character": "Young Woman Sacrifice", "id": 1270831, "credit_id": "52fe43819251416c75012f7f", "cast_id": 61, "profile_path": null, "order": 32}, {"name": "James Greene", "character": "Governor", "id": 1266585, "credit_id": "52fe43819251416c75012f83", "cast_id": 62, "profile_path": "/mQNSBTK93AXGGd5f0mbQqPhgBtY.jpg", "order": 33}, {"name": "David Emmings", "character": "Grave Policeman", "id": 1270832, "credit_id": "52fe43819251416c75012f87", "cast_id": 63, "profile_path": null, "order": 34}, {"name": "Ben Cartwright", "character": "Grave Policeman", "id": 1255828, "credit_id": "52fe43819251416c75012f8b", "cast_id": 64, "profile_path": null, "order": 35}, {"name": "Chris Sunley", "character": "Grave Policeman", "id": 208451, "credit_id": "52fe43819251416c75012f8f", "cast_id": 65, "profile_path": null, "order": 36}, {"name": "Michael Jenn", "character": "Preacher", "id": 62106, "credit_id": "52fe43819251416c75012f93", "cast_id": 66, "profile_path": null, "order": 37}, {"name": "Timothy O'Hara", "character": "Porter / Smith", "id": 1270833, "credit_id": "52fe43819251416c75012f97", "cast_id": 67, "profile_path": null, "order": 38}, {"name": "Guy Williams", "character": "Golden Dawn Envoy", "id": 974063, "credit_id": "52fe43819251416c75012f9b", "cast_id": 68, "profile_path": null, "order": 39}, {"name": "Peter Miles", "character": "Thug", "id": 1230574, "credit_id": "52fe43819251416c75012f9f", "cast_id": 69, "profile_path": null, "order": 40}, {"name": "Jonathan Bridge", "character": "Man Carrying Tray of Fish in Market (uncredited)", "id": 1034905, "credit_id": "52fe43819251416c75012fa3", "cast_id": 70, "profile_path": null, "order": 41}, {"name": "Sam Creed", "character": "Thug (uncredited)", "id": 1030253, "credit_id": "52fe43819251416c75012fa7", "cast_id": 71, "profile_path": "/grHsE56RRIsmzXe3i7W7ORaV5rG.jpg", "order": 42}, {"name": "Radu Andrei Cucu", "character": "Frenzy Man (uncredited)", "id": 1270834, "credit_id": "52fe43819251416c75012fab", "cast_id": 72, "profile_path": null, "order": 43}, {"name": "James Currie", "character": "Prison Guard (uncredited)", "id": 1031711, "credit_id": "52fe43819251416c75012faf", "cast_id": 73, "profile_path": null, "order": 44}, {"name": "Jason Daly", "character": "Man with Dog (uncredited)", "id": 1270836, "credit_id": "52fe43819251416c75012fb3", "cast_id": 74, "profile_path": null, "order": 45}, {"name": "Paul J. Dove", "character": "Bishop (uncredited)", "id": 1270837, "credit_id": "52fe43819251416c75012fb7", "cast_id": 75, "profile_path": null, "order": 46}, {"name": "Neil Findlater", "character": "Photographer (uncredited)", "id": 1270838, "credit_id": "52fe43819251416c75012fbb", "cast_id": 76, "profile_path": null, "order": 47}, {"name": "Kas Graham", "character": "Dog Fighter (uncredited)", "id": 93715, "credit_id": "52fe43819251416c75012fbf", "cast_id": 77, "profile_path": null, "order": 48}, {"name": "Thomas Kadman", "character": "Pallbearer (uncredited)", "id": 1270839, "credit_id": "52fe43819251416c75012fc3", "cast_id": 78, "profile_path": null, "order": 49}, {"name": "Brendan McCoy", "character": "Fishmonger (uncredited)", "id": 1270840, "credit_id": "52fe43819251416c75012fc7", "cast_id": 79, "profile_path": null, "order": 50}, {"name": "Matthew Radway", "character": "Barman (uncredited)", "id": 1270841, "credit_id": "52fe43819251416c75012fcb", "cast_id": 80, "profile_path": null, "order": 51}, {"name": "Robert Stone", "character": "Prizefighter (uncredited)", "id": 1209051, "credit_id": "52fe43819251416c75012fcf", "cast_id": 81, "profile_path": null, "order": 52}, {"name": "John Warman", "character": "Policeman (uncredited)", "id": 1209055, "credit_id": "52fe43819251416c75012fd3", "cast_id": 82, "profile_path": null, "order": 53}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe43809251416c75012e71", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.8, "runtime": 128}, "10529": {"poster_path": "/fjRXOzuBEg0VGDM701ftBaVqWTr.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7033683, "overview": "During the reign of the Vikings, a man from another world crash-lands on Earth, bringing with him an alien predator. The man must fuse his advanced technology with the weaponry of the vikings to fight the monster.", "video": false, "id": 10529, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Outlander", "tagline": "It destroyed his world. He won't let it destroy ours.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462465", "adult": false, "backdrop_path": "/rOmTlcLUmNbjpSM03MqPmVe35aC.jpg", "production_companies": [{"name": "Ascendant Pictures", "id": 1204}, {"name": "Rising Star", "id": 1208}, {"name": "VIP Medienfonds 4", "id": 2116}, {"name": "Virtual Films", "id": 2366}, {"name": "Outlander Productions", "id": 20571}], "release_date": "2008-04-24", "popularity": 0.808212990394027, "original_title": "Outlander", "budget": 50000000, "cast": [{"name": "Jim Caviezel", "character": "Kainan", "id": 8767, "credit_id": "52fe43819251416c75012ff1", "cast_id": 1, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 0}, {"name": "Sophia Myles", "character": "Freya", "id": 3971, "credit_id": "52fe43819251416c75012ffb", "cast_id": 3, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 1}, {"name": "Jack Huston", "character": "Wulfric", "id": 54738, "credit_id": "52fe43819251416c75012fff", "cast_id": 4, "profile_path": "/fy9PKaLfxVMJ4Ycz8C7xdWrYvFi.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Gunnar", "id": 2372, "credit_id": "52fe43819251416c75013003", "cast_id": 5, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "John Hurt", "character": "Rothgar", "id": 5049, "credit_id": "52fe43819251416c75013007", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Cliff Saunders", "character": "Boromir", "id": 17638, "credit_id": "52fe43819251416c75013017", "cast_id": 9, "profile_path": "/3c72UmrKyk05bXP07cY26j6R7Rr.jpg", "order": 5}, {"name": "Patrick Stevenson", "character": "Unferth", "id": 175203, "credit_id": "52fe43819251416c7501301b", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Aidan Devine", "character": "Einar", "id": 237, "credit_id": "52fe43819251416c7501301f", "cast_id": 11, "profile_path": "/8RyUP2FYu4xuEkpJZFFlf2204Si.jpg", "order": 7}, {"name": "Bailey Maughan", "character": "Erick", "id": 1059892, "credit_id": "52fe43819251416c75013023", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "John Nelles", "character": "Donal", "id": 123307, "credit_id": "5314f2c09251410ffc0079c7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "James Preston Rogers", "character": "Bjorn", "id": 1084758, "credit_id": "5314f2d79251411013007913", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Scott Owen", "character": "Aethril", "id": 944870, "credit_id": "5314f2f69251411042007ced", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Petra Prazak", "character": "Mara", "id": 1298377, "credit_id": "5314f30d925141102a007b52", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Owen Pattison", "character": "Galen, son of Kainen", "id": 1032340, "credit_id": "5314f327925141104d007cee", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Matt Cooke", "character": "Captain", "id": 44237, "credit_id": "5314f342925141104d007cf1", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Howard McCain", "department": "Directing", "job": "Director", "credit_id": "52fe43819251416c75012ff7", "profile_path": "/wd6Z0ACz1KuM1LC1JaxAU9qheNI.jpg", "id": 65525}], "vote_average": 6.5, "runtime": 115}, "10530": {"poster_path": "/cmK0GIn2TdcmuVlyAkK6maoHSmH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 346079773, "overview": "History comes gloriously to life in Disney's epic animated tale about love and adventure in the New World. Pocahontas is a Native American woman whose father has arranged for her to marry her village's best warrior. But a vision tells her change is coming, and soon she comes face to face with it in the form of Capt. John Smith.", "video": false, "id": 10530, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Pocahontas", "tagline": "An American legend comes to life.", "vote_count": 343, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qqeOxNmtAW7WXdbrmQftgluvve7.jpg", "poster_path": "/rf6COd7IMIdzEDXxjHu9VLbkdp2.jpg", "id": 136214, "name": "Pocahontas Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114148", "adult": false, "backdrop_path": "/vb9ypjVwBKnxQaCGEkduSdJv0Hx.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1995-06-14", "popularity": 1.26892038210478, "original_title": "Pocahontas", "budget": 55000000, "cast": [{"name": "Irene Bedard", "character": "Pocahontas (voice)", "id": 65529, "credit_id": "52fe43819251416c7501305b", "cast_id": 1, "profile_path": "/eUX06X7ZpioIO7rHRsaAyNzL646.jpg", "order": 0}, {"name": "Mel Gibson", "character": "John Smith (voice)", "id": 2461, "credit_id": "52fe43819251416c7501305f", "cast_id": 2, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "David Ogden Stiers", "character": "Governor Ratcliffe (voice)", "id": 28010, "credit_id": "52fe43819251416c75013063", "cast_id": 3, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 2}, {"name": "John Kassir", "character": "Meeko (voice)", "id": 31365, "credit_id": "52fe43819251416c75013067", "cast_id": 4, "profile_path": "/dC0Icg60BabhLJFwR0FbZzFazPq.jpg", "order": 3}, {"name": "Russell Means", "character": "Powhatan (voice)", "id": 3203, "credit_id": "52fe43819251416c7501306b", "cast_id": 5, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 4}, {"name": "Christian Bale", "character": "Thomas (voice)", "id": 3894, "credit_id": "52fe43819251416c7501306f", "cast_id": 6, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 5}, {"name": "Judy Kuhn", "character": "Pocahontas (singing voice)", "id": 110316, "credit_id": "52fe43819251416c750130a9", "cast_id": 16, "profile_path": "/lgdq078b2NZ8f9jeikfXJUhh86A.jpg", "order": 6}, {"name": "Linda Hunt", "character": "Grandmother Willow (voice)", "id": 12516, "credit_id": "52fe43819251416c750130ad", "cast_id": 17, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 7}, {"name": "Danny Mann", "character": "Percy (voice)", "id": 52699, "credit_id": "52fe43819251416c750130b1", "cast_id": 18, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 8}, {"name": "Billy Connolly", "character": "Ben (voice)", "id": 9188, "credit_id": "52fe43819251416c750130b5", "cast_id": 19, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 9}, {"name": "Joe Baker", "character": "Lon (voice)", "id": 181486, "credit_id": "52fe43819251416c750130b9", "cast_id": 20, "profile_path": "/9vWEEzpr2K8DR3uQqgK2QvAygty.jpg", "order": 10}, {"name": "Frank Welker", "character": "Flit (voice)", "id": 15831, "credit_id": "52fe43819251416c750130bd", "cast_id": 21, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 11}, {"name": "Michelle St. John", "character": "Nakoma (voice)", "id": 163070, "credit_id": "52fe43819251416c750130c1", "cast_id": 22, "profile_path": "/iXasoYctdAQ9geELcF25WI7b5Jw.jpg", "order": 12}, {"name": "James Apaumut Fall", "character": "Kocoum (voice)", "id": 950126, "credit_id": "52fe43819251416c750130c5", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Gordon Tootoosis", "character": "Kekata (voice)", "id": 37430, "credit_id": "52fe43819251416c750130c9", "cast_id": 24, "profile_path": "/l10aLDp4D8ZwWdmfRdlj6FedUYk.jpg", "order": 14}, {"name": "Jim Cummings", "character": "Powhatan / Kekata (singing voice)", "id": 12077, "credit_id": "52fe43819251416c750130cd", "cast_id": 25, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 15}], "directors": [{"name": "Mike Gabriel", "department": "Directing", "job": "Director", "credit_id": "52fe43819251416c75013075", "profile_path": null, "id": 65530}, {"name": "Eric Goldberg", "department": "Directing", "job": "Director", "credit_id": "52fe43819251416c7501307b", "profile_path": null, "id": 65531}], "vote_average": 6.4, "runtime": 81}, "9947": {"poster_path": "/dyvqAJs20UrqTJGOHtJ0tNbU54m.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56681566, "overview": "Elektra the warrior survives a near-death experience, becomes an assassin-for-hire, and tries to protect her two latest targets, a single father and his young daughter, from a group of supernatural assassins.", "video": false, "id": 9947, "genres": [{"id": 28, "name": "Action"}], "title": "Elektra", "tagline": "Looks can kill", "vote_count": 172, "homepage": "http://marvel.com/movies/daredevil.elektra", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0357277", "adult": false, "backdrop_path": "/xM54vMnWLytz1sgLkx4Fg2DKHMW.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Horseshoe Bay Productions", "id": 19552}, {"name": "Elektra Productions", "id": 19553}, {"name": "SAI Productions", "id": 19554}], "release_date": "2005-01-14", "popularity": 1.02667533511845, "original_title": "Elektra", "budget": 43000000, "cast": [{"name": "Jennifer Garner", "character": "Elektra", "id": 9278, "credit_id": "52fe454dc3a36847f80c6a77", "cast_id": 23, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 0}, {"name": "Goran Vi\u0161nji\u0107", "character": "Mark Miller", "id": 5725, "credit_id": "52fe454dc3a36847f80c6a7b", "cast_id": 24, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 1}, {"name": "Will Yun Lee", "character": "Kirigi", "id": 10884, "credit_id": "52fe454dc3a36847f80c6a7f", "cast_id": 25, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 2}, {"name": "Cary-Hiroyuki Tagawa", "character": "Roshi", "id": 11398, "credit_id": "52fe454dc3a36847f80c6a83", "cast_id": 26, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 3}, {"name": "Terence Stamp", "character": "Stick", "id": 28641, "credit_id": "52fe454dc3a36847f80c6a87", "cast_id": 27, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 4}, {"name": "Natassia Malthe", "character": "Typhoid", "id": 21430, "credit_id": "52fe454dc3a36847f80c6a8b", "cast_id": 28, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 5}, {"name": "Kirsten Prout", "character": "Abby Miller", "id": 60715, "credit_id": "52fe454dc3a36847f80c6a9b", "cast_id": 31, "profile_path": "/ohKIk8kA8TJoIfF2BNTPkgf4XEo.jpg", "order": 6}, {"name": "Colin Cunningham", "character": "McCabe", "id": 1218926, "credit_id": "52fe454dc3a36847f80c6adb", "cast_id": 47, "profile_path": "/3EW9uprWwgzJy2jIcN0QFzKbVFX.jpg", "order": 7}, {"name": "Edson T. Ribeiro", "character": "Kinkou", "id": 60718, "credit_id": "52fe454dc3a36847f80c6a9f", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Chris Ackerman", "character": "Tattoo", "id": 60717, "credit_id": "52fe454dc3a36847f80c6aa9", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Bob Sapp", "character": "Stone", "id": 60716, "credit_id": "52fe454dc3a36847f80c6aad", "cast_id": 36, "profile_path": "/y11Km6dAfrBB4asSIvBewR8UocA.jpg", "order": 10}, {"name": "Mark Houghton", "character": "Bauer", "id": 26782, "credit_id": "52fe454dc3a36847f80c6ab1", "cast_id": 37, "profile_path": "/cNXgbzlsbucTlj0w3PHhMDCLe0K.jpg", "order": 11}, {"name": "Hiro Kanagawa", "character": "Meizumi", "id": 60719, "credit_id": "52fe454dc3a36847f80c6ab5", "cast_id": 38, "profile_path": "/2vDjvbgOMUx39j2kMcjLvH8bxpu.jpg", "order": 12}, {"name": "Laura Ward", "character": "Young Elektra", "id": 60720, "credit_id": "52fe454dc3a36847f80c6ab9", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Ian Tracey", "character": "Pool Shark", "id": 25386, "credit_id": "52fe454dc3a36847f80c6abd", "cast_id": 40, "profile_path": "/p2JEHCudpbZNOeNo3lYpLPOCaCD.jpg", "order": 14}, {"name": "Aaron Au", "character": "Hand Ninja #2", "id": 60604, "credit_id": "52fe454dc3a36847f80c6ac1", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Kevan Ohtsji", "character": "Roshi Servant", "id": 60723, "credit_id": "52fe454dc3a36847f80c6ac5", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Kurt Max Runte", "character": "Nikolas Natchios", "id": 60721, "credit_id": "52fe454dc3a36847f80c6ac9", "cast_id": 43, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 17}, {"name": "Nathaniel Arcand", "character": "Hand Ninja #1", "id": 60722, "credit_id": "52fe454dc3a36847f80c6acd", "cast_id": 44, "profile_path": "/eh4mavNMo55nWRg8IZc3havwbZc.jpg", "order": 18}, {"name": "Jana Mitsoula", "character": "Young Elektra's Mother", "id": 60724, "credit_id": "52fe454dc3a36847f80c6ad1", "cast_id": 45, "profile_path": null, "order": 19}], "directors": [{"name": "Rob Bowman", "department": "Directing", "job": "Director", "credit_id": "52fe454dc3a36847f80c6a01", "profile_path": "/u9iJgOc7XOkStRXbAHZe2qJ2O8p.jpg", "id": 12523}], "vote_average": 5.0, "runtime": 97}, "10536": {"poster_path": "/zK3fpSmNvUS42sw3t9ojopu0Grl.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Charlie 's got a 'job' to do. Having just left prison he finds one his of friends has attempted a high risk job in Italy, right under the nose of the mafia. Charlie's friend doesn't get very far, so Charlie takes over the 'job'. Using three Mini Coopers, a couple of Jaguars and a bus, he hopes to bring Torino to a standstill, steal a fortune in gold and escape in the chaos.", "video": false, "id": 10536, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Italian Job", "tagline": "Introducing the plans for a new business venture: \"The Italian Job.\"", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0064505", "adult": false, "backdrop_path": "/kvcRUcDOE9ShpCn02IQZsKboTTA.jpg", "production_companies": [{"name": "Oakhurst Productions", "id": 8912}], "release_date": "1969-06-02", "popularity": 0.668963740555876, "original_title": "The Italian Job", "budget": 0, "cast": [{"name": "Michael Caine", "character": "Charlie Croker", "id": 3895, "credit_id": "52fe43829251416c75013383", "cast_id": 8, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 0}, {"name": "No\u00ebl Coward", "character": "Mr. Bridger", "id": 12718, "credit_id": "52fe43829251416c75013387", "cast_id": 9, "profile_path": "/nwEUYc2LZW7RIdVha8HK1zAusTe.jpg", "order": 1}, {"name": "Benny Hill", "character": "Professor Simon Peach", "id": 55879, "credit_id": "52fe43829251416c7501338b", "cast_id": 10, "profile_path": "/dfzklG9OHMEeWEeneaxG3cZRsjh.jpg", "order": 2}, {"name": "Margaret Blye", "character": "Lorna", "id": 65552, "credit_id": "52fe43829251416c7501338f", "cast_id": 11, "profile_path": "/hc23lp1JvAqQYKJvrdOJMlhvJ3S.jpg", "order": 3}, {"name": "Raf Vallone", "character": "Altabani", "id": 3268, "credit_id": "52fe43829251416c7501339f", "cast_id": 14, "profile_path": "/kmXprY5YSYc5ubCVzDjGTK0lntq.jpg", "order": 4}, {"name": "Tony Beckley", "character": "Freddie", "id": 14816, "credit_id": "52fe43829251416c750133a3", "cast_id": 15, "profile_path": "/A64IcyG8O9lBCMz7jiBLF2OXlaF.jpg", "order": 5}, {"name": "Rossano Brazzi", "character": "Beckerman", "id": 29327, "credit_id": "52fe43829251416c750133a7", "cast_id": 16, "profile_path": "/dUPvEX4qQMX9Cu4tknkLgN0eePV.jpg", "order": 6}, {"name": "Irene Handl", "character": "Miss Peach", "id": 79641, "credit_id": "52fe43829251416c750133ab", "cast_id": 17, "profile_path": "/ydgfpIXL3Abx8wf0qpJue9QztG1.jpg", "order": 7}, {"name": "John Le Mesurier", "character": "Governor", "id": 14264, "credit_id": "52fe43829251416c750133af", "cast_id": 18, "profile_path": "/42H9hrRtpFrQ7LFlBr8AnHfgDnr.jpg", "order": 8}, {"name": "Fred Emney", "character": "Birkinshaw", "id": 980345, "credit_id": "52fe43829251416c750133b3", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "John Clive", "character": "Garage Manager", "id": 117548, "credit_id": "52fe43829251416c750133b7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Graham Payn", "character": "Keats", "id": 1127186, "credit_id": "52fe43829251416c750133bb", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Michael Standing", "character": "Arthur", "id": 199884, "credit_id": "52fe43839251416c750133bf", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Stanley Caine", "character": "Coco", "id": 1127187, "credit_id": "52fe43839251416c750133c3", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Barry Cox", "character": "Chris", "id": 1127188, "credit_id": "52fe43839251416c750133c7", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Peter Collinson", "department": "Directing", "job": "Director", "credit_id": "52fe43829251416c75013367", "profile_path": null, "id": 39779}], "vote_average": 7.0, "runtime": 99}, "51497": {"poster_path": "/cA81CI8odKv5KHRUUzJbj83yN7c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 626137675, "overview": "Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.", "video": false, "id": 51497, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Fast Five", "tagline": "Get the Fifth Gear.", "vote_count": 747, "homepage": "http://www.watchvideoseries.com/movies/fast-five-2011-2/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt1596343", "adult": false, "backdrop_path": "/nL1Q0micYpF5nNkaI2ZNeLuOLGZ.jpg", "production_companies": [{"name": "Original Film", "id": 333}, {"name": "Universal Pictures", "id": 33}, {"name": "One Race Productions", "id": 1225}], "release_date": "2011-04-28", "popularity": 1.21575253896071, "original_title": "Fast Five", "budget": 125000000, "cast": [{"name": "Dwayne Johnson", "character": "Luke Hobbs", "id": 18918, "credit_id": "52fe47f6c3a36847f8151ab7", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe47f6c3a36847f8151abb", "cast_id": 2, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe47f6c3a36847f8151abf", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "52fe47f6c3a36847f8151ac3", "cast_id": 4, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "52fe47f6c3a36847f8151ac7", "cast_id": 5, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 4}, {"name": "Elsa Pataky", "character": "Elena Neves", "id": 73269, "credit_id": "52fe47f6c3a36847f8151acb", "cast_id": 6, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 5}, {"name": "Ludacris", "character": "Tej", "id": 8171, "credit_id": "52fe47f6c3a36847f8151acf", "cast_id": 7, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 6}, {"name": "Sung Kang", "character": "Han", "id": 61697, "credit_id": "52fe47f6c3a36847f8151ad3", "cast_id": 8, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 7}, {"name": "Gal Gadot", "character": "Gisele Harabo", "id": 90633, "credit_id": "52fe47f6c3a36847f8151ad7", "cast_id": 9, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 8}, {"name": "Matt Schulze", "character": "Vince", "id": 31841, "credit_id": "52fe47f6c3a36847f8151adb", "cast_id": 10, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 9}, {"name": "Joaquim de Almeida", "character": "Hernan Reyes", "id": 22462, "credit_id": "52fe47f6c3a36847f8151adf", "cast_id": 11, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 10}, {"name": "Tego Calderon", "character": "Tego Leo", "id": 96321, "credit_id": "52fe47f6c3a36847f8151b4f", "cast_id": 31, "profile_path": "/pz7i7LV35XRC5Si8liRoYWdrcr0.jpg", "order": 11}, {"name": "Don Omar", "character": "Rico Santos", "id": 90634, "credit_id": "52fe47f6c3a36847f8151b53", "cast_id": 32, "profile_path": "/f1INIG2TE9jXXp5A3gGJR9UkePK.jpg", "order": 12}, {"name": "Michael Irby", "character": "Zizi", "id": 124304, "credit_id": "52fe47f6c3a36847f8151b57", "cast_id": 33, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 13}, {"name": "Fernando Chien", "character": "Wilkes", "id": 216782, "credit_id": "52fe47f6c3a36847f8151b5b", "cast_id": 34, "profile_path": "/lnMvhgE5ZKBaWvGN6beUJUqeHxD.jpg", "order": 14}, {"name": "Alimi Ballard", "character": "Fusco", "id": 165284, "credit_id": "52fe47f6c3a36847f8151b5f", "cast_id": 35, "profile_path": "/zCYjN3Lkkx9GmhEoT9lUV6Dt2hR.jpg", "order": 15}, {"name": "Yorgo Constantine", "character": "Chato", "id": 21051, "credit_id": "52fe47f6c3a36847f8151b63", "cast_id": 36, "profile_path": "/e5kenJiOgpX9bvldQibR8ODpm4U.jpg", "order": 16}, {"name": "Geoff Meed", "character": "Macroy", "id": 86204, "credit_id": "52fe47f6c3a36847f8151b67", "cast_id": 37, "profile_path": "/rv3ClSULRuvxuQvvXpC6Ki8BAKD.jpg", "order": 17}, {"name": "Joseph Melendez", "character": "Chief of Police Alemeida", "id": 1014572, "credit_id": "52fe47f6c3a36847f8151b6b", "cast_id": 38, "profile_path": "/l0bsVQaWCpowRhqI2h0aO7aIaL6.jpg", "order": 18}, {"name": "Jeirmarie Osorio", "character": "Rosa", "id": 1093706, "credit_id": "52fe47f6c3a36847f8151b6f", "cast_id": 39, "profile_path": "/gxFfZDaVVyGbNfX6J3dm3TfRv4h.jpg", "order": 19}, {"name": "Mark Hicks", "character": "Capa", "id": 80242, "credit_id": "52fe47f6c3a36847f8151b73", "cast_id": 40, "profile_path": "/xPXK9kXnKh97eES0SSxx83QKTfw.jpg", "order": 20}, {"name": "Esteban Cueto", "character": "Berto", "id": 60653, "credit_id": "52fe47f6c3a36847f8151b77", "cast_id": 41, "profile_path": "/jJYm6K3g3lQvic2Sgjh9SPb4FDq.jpg", "order": 21}, {"name": "Corey Michael Eubanks", "character": "Lanzo", "id": 147207, "credit_id": "52fe47f6c3a36847f8151b7b", "cast_id": 42, "profile_path": "/kLm0RuB7J5SBnKL8oLoyIBMwL3f.jpg", "order": 22}, {"name": "Luis Da Silva Jr.", "character": "Diogo", "id": 37149, "credit_id": "52fe47f6c3a36847f8151b7f", "cast_id": 43, "profile_path": "/6VADPoVvQTFqiFhmHMJovneXX26.jpg", "order": 23}, {"name": "Luis Gonzaga", "character": "Cash House Door Guard", "id": 979307, "credit_id": "52fe47f6c3a36847f8151b83", "cast_id": 44, "profile_path": "/mQahpzXaMSO71D2AyCZVY8DVfPa.jpg", "order": 24}, {"name": "Carlos Sanchez", "character": "Evidence Technician", "id": 170653, "credit_id": "52fe47f6c3a36847f8151b87", "cast_id": 45, "profile_path": "/uMTRNudOKcpASr1WlIlgbS8FjP8.jpg", "order": 25}, {"name": "Benjamin Blankenship", "character": "Lead DEA Agent", "id": 1093707, "credit_id": "52fe47f6c3a36847f8151b8b", "cast_id": 46, "profile_path": "/xl0O9d7xS6XGSRqQl16StOxtkOR.jpg", "order": 26}, {"name": "Pedro Garc\u00eda", "character": "Conductor", "id": 1077794, "credit_id": "52fe47f6c3a36847f8151b8f", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Arturo Gaskins", "character": "Croupier", "id": 1093708, "credit_id": "52fe47f6c3a36847f8151b93", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Jay Jackson", "character": "Field Reporter", "id": 1093709, "credit_id": "52fe47f6c3a36847f8151b97", "cast_id": 49, "profile_path": "/xudGrbxeRjngwGZFubQ02kKQmNr.jpg", "order": 29}, {"name": "Arlene Santana", "character": "Field Reporter", "id": 986813, "credit_id": "52fe47f6c3a36847f8151b9b", "cast_id": 50, "profile_path": "/x96NJ31fHxtqhkbQzB83HCBJsC5.jpg", "order": 30}, {"name": "Kent Shocknek", "character": "News Anchor", "id": 79086, "credit_id": "52fe47f6c3a36847f8151b9f", "cast_id": 51, "profile_path": "/zmX6fNZ7zH18FokBGv5r1sfPmGw.jpg", "order": 31}, {"name": "Sharon Tay", "character": "News Anchor", "id": 156131, "credit_id": "52fe47f6c3a36847f8151ba3", "cast_id": 52, "profile_path": "/qJhvCSCXHD9Duvz5pP0sLQQl6n2.jpg", "order": 32}, {"name": "Andy Rosa Adler", "character": "News Anchor", "id": 1093710, "credit_id": "52fe47f6c3a36847f8151ba7", "cast_id": 53, "profile_path": "/dFW4zpOYAOfsVyguGvJAafyraSe.jpg", "order": 33}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe47f6c3a36847f8151ae5", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 7.1, "runtime": 130}, "10538": {"poster_path": "/u08JSmddkrqmx8ciFikhprWKqqB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44065653, "overview": "An infamous terrorist has evaded capture for a long time by being extremely clever and ruthless. Things get interesting when he hijacks a plane carrying famous security expert John Cutter, who isn't about to stand this sort of thing.", "video": false, "id": 10538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Passenger 57", "tagline": "He's an ex-cop with a bad mouth, a bad attitude, and a bad seat. For the terrorists on flight 163 . . . he's very bad news.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105104", "adult": false, "backdrop_path": "/w9ecomJahB1UlVkXWFgnFtRAgkc.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1992-11-05", "popularity": 0.629259439836711, "original_title": "Passenger 57", "budget": 15000000, "cast": [{"name": "Wesley Snipes", "character": "John Cutter", "id": 10814, "credit_id": "52fe43839251416c750134b3", "cast_id": 10, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Bruce Payne", "character": "Charles Rane", "id": 27422, "credit_id": "52fe43839251416c750134b7", "cast_id": 11, "profile_path": "/nUfoRt0YA3SXbTAPKjNGq5lYuOc.jpg", "order": 1}, {"name": "Tom Sizemore", "character": "Sly Delvecchio", "id": 3197, "credit_id": "52fe43839251416c750134bb", "cast_id": 12, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 2}, {"name": "Alex Datcher", "character": "Marti Slayton", "id": 46924, "credit_id": "52fe43839251416c750134bf", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Bruce Greenwood", "character": "Stuart Ramsey", "id": 21089, "credit_id": "52fe43839251416c750134c3", "cast_id": 14, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 4}, {"name": "Robert Hooks", "character": "Dwight Henderson", "id": 88094, "credit_id": "52fe43839251416c750134c7", "cast_id": 15, "profile_path": "/9VwM5d69z55UQTwvpJpHe8W3v4p.jpg", "order": 5}, {"name": "Elizabeth Hurley", "character": "Sabrina Ritchie", "id": 13918, "credit_id": "52fe43839251416c750134cb", "cast_id": 16, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 6}, {"name": "Michael Horse", "character": "Forget", "id": 175468, "credit_id": "52fe43839251416c750134cf", "cast_id": 17, "profile_path": "/yZEThGByfkWGYMK0bYBJkjsucNm.jpg", "order": 7}, {"name": "Marc Macaulay", "character": "Vincent", "id": 6908, "credit_id": "52fe43839251416c750134d3", "cast_id": 18, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 8}, {"name": "Ernie Lively", "character": "Chief Biggs", "id": 59184, "credit_id": "52fe43839251416c750134d7", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Duchess Tomasello", "character": "Mrs. Edwards", "id": 128123, "credit_id": "52fe43839251416c750134db", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "William Edward Roberts", "character": "Matthew", "id": 1161627, "credit_id": "52fe43839251416c750134df", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "James Short", "character": "Allen", "id": 191339, "credit_id": "52fe43839251416c750134e3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Joel Fogel", "character": "Dr. Bauman", "id": 1161630, "credit_id": "52fe43839251416c750134e7", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Jane McPherson", "character": "Nurse", "id": 1161631, "credit_id": "52fe43839251416c750134eb", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Hooks", "department": "Directing", "job": "Director", "credit_id": "52fe43839251416c7501347f", "profile_path": "/xqzV7byaH95GSvR86JjGzHceIY4.jpg", "id": 40230}], "vote_average": 5.6, "runtime": 84}, "10539": {"poster_path": "/fDfgO1jkPAIX9ZbXka9XcOfDWl3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28921264, "overview": "James' happy life at the English seaside is rudely ended when his parents are killed by a rhinoceros and he goes to live with his two horrid aunts. Daringly saving the life of a spider he comes into possession of magic boiled crocodile tongues, after which an enormous peach starts to grow in the garden.", "video": false, "id": 10539, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "James and the Giant Peach", "tagline": "Adventures this big don't grow on trees.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116683", "adult": false, "backdrop_path": "/xxxls5ndPmeFh5rnNjY2zm0kSlK.jpg", "production_companies": [{"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1996-04-12", "popularity": 1.13905167820635, "original_title": "James and the Giant Peach", "budget": 38000000, "cast": [{"name": "Paul Terry", "character": "James", "id": 65565, "credit_id": "52fe43839251416c75013529", "cast_id": 1, "profile_path": "/lWXLHabwAatsruet9UlPjYEbZMi.jpg", "order": 0}, {"name": "Joanna Lumley", "character": "Aunt Spiker", "id": 34901, "credit_id": "52fe43839251416c7501352d", "cast_id": 2, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 1}, {"name": "Miriam Margolyes", "character": "Aunt Sponge / Glowworm (voice)", "id": 6199, "credit_id": "52fe43839251416c75013531", "cast_id": 3, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Miss Spider (voice)", "id": 4038, "credit_id": "52fe43839251416c75013535", "cast_id": 4, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Richard Dreyfuss", "character": "Centipede (voice)", "id": 3037, "credit_id": "52fe43839251416c75013539", "cast_id": 5, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 4}, {"name": "Jane Leeves", "character": "Ladybug (voice)", "id": 52951, "credit_id": "52fe43839251416c7501358b", "cast_id": 20, "profile_path": "/wioqL9owN0Rap04qeGXchc7fi20.jpg", "order": 5}, {"name": "Pete Postlethwaite", "character": "Old Man", "id": 4935, "credit_id": "52fe43839251416c7501358f", "cast_id": 21, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 6}, {"name": "David Thewlis", "character": "Earthworm (voice)", "id": 11207, "credit_id": "52fe43839251416c75013593", "cast_id": 22, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 7}, {"name": "J. Stephen Coyle", "character": "Reporter #2", "id": 1011424, "credit_id": "52fe43839251416c75013597", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Steven Culp", "character": "James' Father", "id": 63544, "credit_id": "52fe43839251416c7501359b", "cast_id": 24, "profile_path": "/7ovUpn6k3JgM3OFDzz8C8vN3Bdh.jpg", "order": 9}, {"name": "Cirocco Dunlap", "character": "Girl with Telescope", "id": 1011436, "credit_id": "52fe43839251416c7501359f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Michael Girardin", "character": "Reporter #1", "id": 177175, "credit_id": "52fe43839251416c750135a3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Tony Haney", "character": "Reporter #3", "id": 215904, "credit_id": "52fe43839251416c750135a7", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Kathryn Howell", "character": "Woman in Bathrobe (as Kathrine Howell)", "id": 12555, "credit_id": "52fe43839251416c750135ab", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Simon Callow", "character": "Grasshopper (voice)", "id": 4001, "credit_id": "52fe43839251416c750135af", "cast_id": 29, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 14}], "directors": [{"name": "Henry Selick", "department": "Directing", "job": "Director", "credit_id": "52fe43839251416c7501353f", "profile_path": "/kiTzGq0peOTsjQnzQI3ttwqqsOv.jpg", "id": 57646}], "vote_average": 6.0, "runtime": 79}, "10545": {"poster_path": "/xS6f48xcKsRHYI4XZh2tBwLcgku.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100138851, "overview": "When Quasi defies the evil Frollo and ventures out to the Festival of Fools, the cruel crowd jeers him. Rescued by fellow outcast the gypsy Esmeralda, Quasi soon finds himself battling to save the people and the city he loves.", "video": false, "id": 10545, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Hunchback of Notre Dame", "tagline": "", "vote_count": 222, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oAq4tE4fTXfsWz35kyajoWNzHfo.jpg", "poster_path": "/vX0k6lP6tBi8XHdvNtOvsbNgyxM.jpg", "id": 97456, "name": "The Hunchback of Notre Dame Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116583", "adult": false, "backdrop_path": "/emX6VwN8C3Q1T9wCTDMa8r3mfQA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1996-06-21", "popularity": 1.44295709866167, "original_title": "The Hunchback of Notre Dame", "budget": 100000000, "cast": [{"name": "Tom Hulce", "character": "Quasimodo", "id": 3999, "credit_id": "52fe43859251416c750138ff", "cast_id": 1, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 0}, {"name": "Demi Moore", "character": "Esmeralda", "id": 3416, "credit_id": "52fe43859251416c75013903", "cast_id": 2, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Jason Alexander", "character": "Hugo", "id": 1206, "credit_id": "52fe43859251416c75013907", "cast_id": 3, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 2}, {"name": "Kevin Kline", "character": "Phoebus", "id": 8945, "credit_id": "52fe43859251416c7501390b", "cast_id": 4, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 3}, {"name": "Tony Jay", "character": "Frollo", "id": 65598, "credit_id": "52fe43859251416c7501390f", "cast_id": 5, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 4}, {"name": "Mary Kay Bergman", "character": "Quasimodo's Mother", "id": 30695, "credit_id": "52fe43859251416c75013955", "cast_id": 17, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 5}, {"name": "Corey Burton", "character": "Brutish Guard", "id": 35219, "credit_id": "52fe43859251416c75013959", "cast_id": 18, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 6}, {"name": "Bill Fagerbakke", "character": "Oafish Guard", "id": 34398, "credit_id": "52fe43859251416c7501395d", "cast_id": 19, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 7}, {"name": "Paul Kandel", "character": "Clopin", "id": 72250, "credit_id": "52fe43859251416c75013961", "cast_id": 20, "profile_path": "/3GlZndc7isMc6CDGpPb998XsafD.jpg", "order": 8}, {"name": "Charles Kimbrough", "character": "Victor", "id": 20749, "credit_id": "52fe43859251416c75013965", "cast_id": 21, "profile_path": "/zDQ8y4TZBYN7Q2No94AAyP94osZ.jpg", "order": 9}, {"name": "Heidi Mollenhauer", "character": "Esmeralda (singing voice)", "id": 1022161, "credit_id": "52fe43859251416c75013969", "cast_id": 22, "profile_path": "/ul5uck01Famoaw86764XMR8d4X8.jpg", "order": 10}, {"name": "Patrick Pinney", "character": "Guards / Gypsies", "id": 61968, "credit_id": "52fe43859251416c7501396d", "cast_id": 23, "profile_path": "/eU2rqG140FCPwzIjJTymVOd5RBY.jpg", "order": 11}, {"name": "Gary Trousdale", "character": "The Old Heretic", "id": 62047, "credit_id": "52fe43859251416c75013971", "cast_id": 24, "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "order": 12}, {"name": "Jim Cummings", "character": "Guards / Gypsies", "id": 12077, "credit_id": "52fe43859251416c75013975", "cast_id": 25, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 13}, {"name": "David Ogden Stiers", "character": "Archdeacon", "id": 28010, "credit_id": "52fe43859251416c75013979", "cast_id": 26, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 14}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe43859251416c75013915", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}, {"name": "Kirk Wise", "department": "Directing", "job": "Director", "credit_id": "52fe43859251416c7501391b", "profile_path": "/aoh7wnHk3F1HdOUBLI5Yfwd8rnN.jpg", "id": 62048}], "vote_average": 6.6, "runtime": 91}, "16991": {"poster_path": "/nqde2Ud03uLrekBZaCMXBa16Cm2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24007324, "overview": "Bi-polar mall security guard Ronnie Barnhardt is called into action to stop a flasher from turning shopper's paradise into his personal peep show. But when Barnhardt can't bring the culprit to justice, a surly police detective, is recruited to close the case.", "video": false, "id": 16991, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Observe and Report", "tagline": "Right now, the world needs a hero.", "vote_count": 54, "homepage": "http://observe-and-report.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1197628", "adult": false, "backdrop_path": "/abFNACvdD8Ml2Qa7ZhIILx2MG30.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2009-04-10", "popularity": 0.281532787596587, "original_title": "Observe and Report", "budget": 0, "cast": [{"name": "Seth Rogen", "character": "Ronnie Barnhardt", "id": 19274, "credit_id": "52fe46fb9251416c7508a1b3", "cast_id": 3, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Anna Faris", "character": "Brandi", "id": 1772, "credit_id": "52fe46fb9251416c7508a1b7", "cast_id": 4, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Michael Pe\u00f1a", "character": "Dennis", "id": 454, "credit_id": "52fe46fc9251416c7508a1bb", "cast_id": 5, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Detective Harrison", "id": 11477, "credit_id": "52fe46fc9251416c7508a1bf", "cast_id": 6, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Collette Wolfe", "character": "Nell", "id": 86624, "credit_id": "52fe46fc9251416c7508a1c3", "cast_id": 7, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 4}, {"name": "Danny McBride", "character": "Caucasian Crackhead", "id": 62862, "credit_id": "52fe46fc9251416c7508a1c7", "cast_id": 8, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 5}, {"name": "Aziz Ansari", "character": "Saddamn", "id": 86626, "credit_id": "52fe46fc9251416c7508a1cb", "cast_id": 9, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 6}, {"name": "Celia Weston", "character": "Mom", "id": 1989, "credit_id": "54ac43199251414d67009431", "cast_id": 10, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "Dan Bakkedahl", "character": "Mark", "id": 1183546, "credit_id": "54ac4580c3a368077b00784d", "cast_id": 11, "profile_path": "/oAZhhAPfh9maSN7airJZUaJXh60.jpg", "order": 8}, {"name": "Jesse Plemons", "character": "Charles", "id": 88124, "credit_id": "54ac45d792514155f2004481", "cast_id": 12, "profile_path": "/5EOD7UtSHYWR66BcDE2EnSvrQ1L.jpg", "order": 9}, {"name": "Eddie Rouse", "character": "Angry Store Owner", "id": 79419, "credit_id": "54ac7529c3a368235200493c", "cast_id": 19, "profile_path": "/9SQXQBYsnMaLtsXx3Baxye8JVon.jpg", "order": 10}, {"name": "John Yuan", "character": "John Yuen", "id": 1026789, "credit_id": "54ac462a92514163430015c4", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Matt Yuan", "character": "Matt Yuen", "id": 1104394, "credit_id": "54ac466592514157570043c3", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Randy Gambill", "character": "Flasher", "id": 963885, "credit_id": "54ac72fc925141575700479a", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Alston Brown", "character": "Bruce", "id": 1026790, "credit_id": "54ac7359c3a36822b7004ac4", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Cody Midthunder", "character": "D-Rock", "id": 1026791, "credit_id": "54ac73a692514157570047a4", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Debra-Jayne Brown", "character": "Female Reporter", "id": 1410029, "credit_id": "54ac73f0c3a36824c2004566", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Patton Oswalt", "character": "Toast A Bun Manager", "id": 10872, "credit_id": "54ac76599251416343001989", "cast_id": 20, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 17}, {"name": "Lauren Miller", "character": "Girl Employee", "id": 54716, "credit_id": "54ac76b992514157570047e6", "cast_id": 21, "profile_path": "/baHXpn6DK8ai7Pg7lsywD642uT2.jpg", "order": 18}, {"name": "Ben Best", "character": "Detective Nichols", "id": 54709, "credit_id": "54ad9a3e92514150a70002b4", "cast_id": 22, "profile_path": "/39Rn6j5zFapIadjoA5l5AbpE0pu.jpg", "order": 19}, {"name": "William Sterchi", "character": "Department Store Manager", "id": 202830, "credit_id": "54ad9a99c3a36824be0001e2", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Danny McBride", "character": "Caucasian Crackhead", "id": 62862, "credit_id": "54ad9cfd92514169e00002a1", "cast_id": 24, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 21}, {"name": "David House", "character": "Policeman", "id": 79211, "credit_id": "54ad9dcbc3a3682f9d000228", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Fran Martone", "character": "Psychologist", "id": 1054505, "credit_id": "54ada0c2c3a368201d000379", "cast_id": 26, "profile_path": "/kifmtJey3f3zAvH0Krw6yeXWoN7.jpg", "order": 23}, {"name": "Amy Baklini", "character": "Young Mother", "id": 1011304, "credit_id": "54ada46a925141508c000336", "cast_id": 27, "profile_path": "/oPJh1C4WxsCDGcNNHV95HP3C11J.jpg", "order": 24}], "directors": [{"name": "Jody Hill", "department": "Directing", "job": "Director", "credit_id": "52fe46fb9251416c7508a1a9", "profile_path": "/vVQbPkXeRBsZxA45tNa7sXyNGct.jpg", "id": 54710}], "vote_average": 5.8, "runtime": 86}, "158011": {"poster_path": "/ekKVxnKeHEQiBznaEnj0VmK28bc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51872378, "overview": "Jordan Turner (Halle Berry) is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But then teenager Casey Welson (Abigail Breslin) is abducted in the back of a man's car and calls 911. And Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save Casey, but to make sure the man is brought to justice.", "video": false, "id": 158011, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Call", "tagline": "There are 188 million 911 calls a year. This one made it personal.", "vote_count": 680, "homepage": "http://www.call-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1911644", "adult": false, "backdrop_path": "/dQq32z4XmYIiK406tZhMhfxmnr.jpg", "production_companies": [{"name": "Troika Pictures", "id": 15462}, {"name": "WWE Studios", "id": 10339}, {"name": "Emergency Films", "id": 15463}, {"name": "Apotheosis Media Group", "id": 15464}, {"name": "Amasia Entertainment", "id": 15465}, {"name": "TriStar Pictures", "id": 559}], "release_date": "2013-03-14", "popularity": 0.780812436302133, "original_title": "The Call", "budget": 13000000, "cast": [{"name": "Halle Berry", "character": "Jordan Turner", "id": 4587, "credit_id": "52fe4bd99251416c910e7871", "cast_id": 4, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 0}, {"name": "Abigail Breslin", "character": "Casey Welson", "id": 17140, "credit_id": "52fe4bd99251416c910e786d", "cast_id": 3, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 1}, {"name": "Morris Chestnut", "character": "Officer Phillips", "id": 9779, "credit_id": "52fe4bd99251416c910e7875", "cast_id": 5, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 2}, {"name": "Michael Imperioli", "character": "Alan Denado", "id": 11486, "credit_id": "52fe4bd99251416c910e7879", "cast_id": 6, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 3}, {"name": "Ella Rae Peck", "character": "Autumn", "id": 83244, "credit_id": "52fe4bd99251416c910e787d", "cast_id": 7, "profile_path": "/mKDSED8DS0mZQVj9LclrSlR4DFE.jpg", "order": 4}, {"name": "Roma Maffia", "character": "Maddy", "id": 21366, "credit_id": "52fe4bd99251416c910e7881", "cast_id": 8, "profile_path": "/tfscWeBOGA9aysLbYoOduimpTOk.jpg", "order": 5}, {"name": "Steven Williams", "character": "Terrance", "id": 51579, "credit_id": "52fe4bd99251416c910e7885", "cast_id": 9, "profile_path": "/jJCa0bKe9zBe31bbuDsiNtgoo5W.jpg", "order": 6}, {"name": "Michael Eklund", "character": "Michael Foster", "id": 67979, "credit_id": "52fe4bd99251416c910e7889", "cast_id": 10, "profile_path": "/rELfDk8X4yYFjjY7c6so3KqaBA6.jpg", "order": 7}, {"name": "Justina Machado", "character": "Michael Foster's Wife", "id": 95517, "credit_id": "52fe4bd99251416c910e788d", "cast_id": 11, "profile_path": "/rklLmYPB4fKFP3mKZw2C3oWNaQJ.jpg", "order": 8}, {"name": "Jos\u00e9 Z\u00fa\u00f1iga", "character": "Marco", "id": 10963, "credit_id": "52fe4bd99251416c910e7891", "cast_id": 12, "profile_path": "/8RqlMIr7hDRWkph3wqo9BFmbuDo.jpg", "order": 9}, {"name": "Tara Platt", "character": "Female Trainee", "id": 191252, "credit_id": "52fe4bd99251416c910e78b9", "cast_id": 19, "profile_path": "/mFa8gLfNhOp3NDiAKDdx1yQ5we4.jpg", "order": 10}], "directors": [{"name": "Brad Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4bd99251416c910e7863", "profile_path": "/5SAJd9sEFefkFoStAPXuKVHnMoX.jpg", "id": 37948}], "vote_average": 6.4, "runtime": 94}, "10559": {"poster_path": "/n0QAAZmIaPPIShVkk8eiKwfGV9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68106245, "overview": "When a rare phenomenon gives police officer John Sullivan the chance to speak to his father, 30 years in the past, he takes the opportunity to prevent his dad's tragic death. After his actions inadvertently give rise to a series of brutal murders he and his father must find a way to fix the consequences of altering time.", "video": false, "id": 10559, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Frequency", "tagline": "The future is listening.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0186151", "adult": false, "backdrop_path": "/5kqYX0wHIHmZtoEzh1PD4qA2tCE.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2000-04-28", "popularity": 0.833649967088661, "original_title": "Frequency", "budget": 31000000, "cast": [{"name": "Dennis Quaid", "character": "Frank Sullivan", "id": 6065, "credit_id": "52fe43879251416c75014029", "cast_id": 20, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Jim Caviezel", "character": "John Sullivan", "id": 8767, "credit_id": "52fe43879251416c7501402d", "cast_id": 21, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 1}, {"name": "Shawn Doyle", "character": "Jack Shepard", "id": 25878, "credit_id": "52fe43879251416c75014031", "cast_id": 22, "profile_path": "/3NGdSQFTpcv5Bbv5YmaLKDW60M4.jpg", "order": 2}, {"name": "Elizabeth Mitchell", "character": "Julia 'Jules' Sullivan", "id": 31167, "credit_id": "52fe43889251416c75014041", "cast_id": 25, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 3}, {"name": "Andre Braugher", "character": "Satch DeLeon", "id": 6861, "credit_id": "52fe43889251416c75014045", "cast_id": 26, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 4}, {"name": "Noah Emmerich", "character": "Gordo Hersch", "id": 11315, "credit_id": "52fe43889251416c75014049", "cast_id": 27, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 5}, {"name": "Michael Cera", "character": "Gordy Jr.", "id": 39995, "credit_id": "52fe43889251416c75014053", "cast_id": 29, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 6}, {"name": "Melissa Errico", "character": "Samantha Thomas", "id": 65756, "credit_id": "52fe43889251416c75014057", "cast_id": 30, "profile_path": "/alEwV5OsTuKzLRqQeuEiR8ZTpud.jpg", "order": 7}, {"name": "Peter MacNeill", "character": "Butch Foster", "id": 229, "credit_id": "52fe43889251416c7501405b", "cast_id": 31, "profile_path": "/wNBsE9FqylAdCwzRvZtkvZJCfVI.jpg", "order": 8}, {"name": "Daniel Henson", "character": "Johnny Sullivan", "id": 65757, "credit_id": "52fe43889251416c7501405f", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Jack McCormack", "character": "Commander Butch O'Connell", "id": 65759, "credit_id": "52fe43889251416c75014067", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Stephen Joffe", "character": "Gordo Hersch", "id": 65758, "credit_id": "52fe43889251416c75014063", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Nesbitt Blaisdell", "character": "Fred Shepard", "id": 21152, "credit_id": "52fe43889251416c7501406b", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Marin Hinkle", "character": "Sissy Clark", "id": 65760, "credit_id": "52fe43889251416c7501406f", "cast_id": 36, "profile_path": "/gqMABmd8yE6nhpdK900zqRDEjor.jpg", "order": 13}, {"name": "Richard Sali", "character": "Chuck Hayes", "id": 65761, "credit_id": "52fe43889251416c75014073", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Joan Heney", "character": "Laura Shepard", "id": 59199, "credit_id": "52fe43889251416c75014077", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Jordan Bridges", "character": "Graham 'Gib' Gibson", "id": 65762, "credit_id": "52fe43889251416c7501407b", "cast_id": 39, "profile_path": "/ooj3gLk1klzp4SD4Sg4NsHSpM2v.jpg", "order": 16}, {"name": "Jessica Meyer", "character": "Teenage Runaway", "id": 65763, "credit_id": "52fe43889251416c7501407f", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Kirsten Bishop", "character": "Carrie Reynolds", "id": 65764, "credit_id": "52fe43889251416c75014083", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Rocco Sisto", "character": "Daryl Simpson", "id": 65765, "credit_id": "52fe43889251416c75014087", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013fd7", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 6.8, "runtime": 118}, "395": {"poster_path": "/9xzRKUBIqLwhhOYtcE7P1BbWXP9.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171183863, "overview": "When scientists discover something in the Arctic that appears to be a buried Pyramid, they send a research team out to investigate. Little do they know that they are about to step into a hunting ground where Aliens are grown as sport for the Predator race. The films sees two of the largest comic and movie franchises collide in an all out war.", "video": false, "id": 395, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "AVP: Alien vs. Predator", "tagline": "Whoever wins... We lose", "vote_count": 394, "homepage": "http://www.avp-movie.com/", "belongs_to_collection": {"backdrop_path": "/c5ccDw4lcTUnYGdCxc2yEl8PjTk.jpg", "poster_path": "/zrApSsUX9i0qVntcCD0Pp55TdCy.jpg", "id": 115762, "name": "AVP Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0370263", "adult": false, "backdrop_path": "/1vRCFWKPydH82T1wsPMYkRjcZXY.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Stillking Films", "id": 11345}, {"name": "Brandywine Productions", "id": 19747}, {"name": "Lonlink Productions", "id": 19828}, {"name": "Kut Productions", "id": 19829}, {"name": "Zweite Babelsberg Film GmbH", "id": 19830}, {"name": "Inside Track Films", "id": 19834}, {"name": "Charenton Productions Limited", "id": 19835}], "release_date": "2004-08-13", "popularity": 1.50759960204486, "original_title": "AVP: Alien vs. Predator", "budget": 70000000, "cast": [{"name": "Sanaa Lathan", "character": "Alexa Woods", "id": 5411, "credit_id": "52fe423ec3a36847f800f085", "cast_id": 7, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 0}, {"name": "Raoul Bova", "character": "Sebastian de Rosa", "id": 5412, "credit_id": "52fe423ec3a36847f800f089", "cast_id": 8, "profile_path": "/t3EgxATMC90KozckK3QXWS5Yn7a.jpg", "order": 1}, {"name": "Ewen Bremner", "character": "Graeme Miller", "id": 1125, "credit_id": "52fe423ec3a36847f800f08d", "cast_id": 9, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 2}, {"name": "Colin Salmon", "character": "Maxwell Stafford", "id": 5414, "credit_id": "52fe423ec3a36847f800f091", "cast_id": 10, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 3}, {"name": "Tommy Flanagan", "character": "Mark Verheiden", "id": 2478, "credit_id": "52fe423ec3a36847f800f095", "cast_id": 11, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 4}, {"name": "Joseph Rye", "character": "Joe Connors", "id": 5415, "credit_id": "52fe423ec3a36847f800f099", "cast_id": 12, "profile_path": "/oPqpgbXaAKQkbVqh3eBlJ6Mu8QJ.jpg", "order": 5}, {"name": "Agathe de La Boulaye", "character": "Adele Rousseau", "id": 5416, "credit_id": "52fe423ec3a36847f800f09d", "cast_id": 13, "profile_path": "/qM8M1ZFp1kmn1IFTwPghxH2spYB.jpg", "order": 6}, {"name": "Carsten Norgaard", "character": "Rusten Quinn", "id": 5417, "credit_id": "52fe423ec3a36847f800f0a1", "cast_id": 14, "profile_path": "/aAbBoUqBS5d8vngGj6KsVzW0p64.jpg", "order": 7}, {"name": "Sam Troughton", "character": "Thomas Parks", "id": 5421, "credit_id": "52fe423ec3a36847f800f0a5", "cast_id": 15, "profile_path": "/yGSOUqTaeRwZ8A2Kh5Xy79NdXkM.jpg", "order": 8}, {"name": "Lance Henriksen", "character": "Charles Bishop Weyland", "id": 2714, "credit_id": "52fe423ec3a36847f800f0df", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 9}, {"name": "Kieran Bew", "character": "Klaus", "id": 176199, "credit_id": "548d7109c3a36820be003577", "cast_id": 72, "profile_path": "/7M8zEhrRMEKwOij0rrUDV9t70FT.jpg", "order": 10}, {"name": "Adrian Bouchet", "character": "Sven", "id": 101923, "credit_id": "548d712b92514122fc003a82", "cast_id": 73, "profile_path": "/ad4W4W5bmKM6ablaCbXxSYilehd.jpg", "order": 11}, {"name": "Liz May Brice", "character": "Supervisor", "id": 68224, "credit_id": "548d714dc3a36820b8004285", "cast_id": 74, "profile_path": "/5cAhs4oR33lHJcjEIfDCnnOynX7.jpg", "order": 12}, {"name": "Tom Woodruff Jr.", "character": "Grid", "id": 109870, "credit_id": "548d716dc3a368153b0018f8", "cast_id": 75, "profile_path": null, "order": 13}, {"name": "Ian Whyte", "character": "Scar", "id": 946696, "credit_id": "548d7184c3a3684ea10038f1", "cast_id": 76, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 14}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe423ec3a36847f800f063", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.5, "runtime": 101}, "10567": {"poster_path": "/jZDp3C5howi40aCeqXDJliodXk9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 354248063, "overview": "An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.", "video": false, "id": 10567, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Dinosaur", "tagline": "You have never seen anything like this.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0130623", "adult": false, "backdrop_path": "/avv35YJ1Qd8OaGjON8Fbp3uqsHV.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2000-05-13", "popularity": 1.66648050190902, "original_title": "Dinosaur", "budget": 127500000, "cast": [{"name": " D.B. Sweeney", "character": "Aladar", "id": 61962, "credit_id": "52fe43899251416c75014325", "cast_id": 1, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 0}, {"name": "Alfre Woodard", "character": "Plio", "id": 1981, "credit_id": "52fe43899251416c75014329", "cast_id": 2, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 1}, {"name": "Ossie Davis", "character": "Yar", "id": 15531, "credit_id": "52fe43899251416c7501432d", "cast_id": 3, "profile_path": "/3NU3mq5ZiiX0D41DTB5fNsjFlDB.jpg", "order": 2}, {"name": "Max Casella", "character": "Zini", "id": 7133, "credit_id": "52fe43899251416c75014331", "cast_id": 4, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 3}, {"name": "Hayden Panettiere", "character": "Suri", "id": 17265, "credit_id": "52fe43899251416c75014377", "cast_id": 16, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 4}, {"name": "Samuel E. Wright", "character": "Kron", "id": 67392, "credit_id": "52fe43899251416c7501437b", "cast_id": 17, "profile_path": "/hOtuep1nRczthyxkJusb68rcuL1.jpg", "order": 5}, {"name": "Julianna Margulies", "character": "Neera", "id": 25654, "credit_id": "52fe43899251416c7501437f", "cast_id": 18, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 6}, {"name": "Peter Siragusa", "character": "Bruton", "id": 154693, "credit_id": "52fe43899251416c75014383", "cast_id": 19, "profile_path": "/ujsyxmkFL2Co1kJeNPPTVQrE9Dq.jpg", "order": 7}, {"name": "Joan Plowright", "character": "Baylene", "id": 23709, "credit_id": "52fe43899251416c75014387", "cast_id": 20, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 8}, {"name": "Della Reese", "character": "Eema", "id": 56950, "credit_id": "52fe43899251416c7501438b", "cast_id": 21, "profile_path": "/oTjpKi89cOCTIzejQ50CknDRnN5.jpg", "order": 9}], "directors": [{"name": "Ralph Zondag", "department": "Directing", "job": "Director", "credit_id": "52fe43899251416c75014337", "profile_path": "/qOB3JSCPedmXlAg5H6DkrP3l5J7.jpg", "id": 65855}, {"name": "Eric Leighton", "department": "Directing", "job": "Director", "credit_id": "52fe43899251416c7501433d", "profile_path": "/zTkxKEqz9No7MgN8wVXFBObfoYx.jpg", "id": 65856}], "vote_average": 6.2, "runtime": 82}, "67913": {"poster_path": "/iUHePguAaumQGvf3rlXHHAkAMoh.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 5358148, "overview": "An unorthodox Irish policeman with a confrontational personality is teamed up with an uptight FBI agent to investigate an international drug-smuggling ring.", "video": false, "id": 67913, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Guard", "tagline": "The FBI are about to discover that things work a little differently around here.", "vote_count": 87, "homepage": "http://www.sonyclassics.com/theguard", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1540133", "adult": false, "backdrop_path": "/uvmk0VM74sfJ6dgmEviqaxtZZ7n.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "Reprisal Films", "id": 7308}, {"name": "Aegis Film Fund", "id": 7309}, {"name": "Bord Scannan na hEireann / Irish Film Board", "id": 7310}], "release_date": "2011-07-07", "popularity": 0.463695361212681, "original_title": "The Guard", "budget": 6000000, "cast": [{"name": "Brendan Gleeson", "character": "Sergeant Gerry Boyle", "id": 2039, "credit_id": "52fe477dc3a368484e0c9ceb", "cast_id": 17, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 0}, {"name": "Don Cheadle", "character": "FBI agent Wendell Everett", "id": 1896, "credit_id": "52fe477dc3a368484e0c9cef", "cast_id": 18, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 1}, {"name": "Liam Cunningham", "character": "Francis Sheehy", "id": 15498, "credit_id": "52fe477dc3a368484e0c9cf3", "cast_id": 19, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 2}, {"name": "Mark Strong", "character": "Clive Cornell", "id": 2983, "credit_id": "52fe477dc3a368484e0c9cf7", "cast_id": 20, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 3}, {"name": "Katarina Cas", "character": "Gabriela McBride", "id": 549981, "credit_id": "52fe477dc3a368484e0c9cfb", "cast_id": 21, "profile_path": "/bgbjA8ZkmN3CGXo24Lgd5TInHDP.jpg", "order": 4}, {"name": "David Wilmot", "character": "Liam O'Leary", "id": 73287, "credit_id": "52fe477dc3a368484e0c9cff", "cast_id": 22, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 5}, {"name": "Rory Keenan", "character": "Garda Aidan McBride", "id": 1041731, "credit_id": "52fe477dc3a368484e0c9d03", "cast_id": 23, "profile_path": "/lWvTE3d8JQVQbPyIVadoy6OYbEk.jpg", "order": 6}, {"name": "Laurence Kinlan", "character": "Photographer", "id": 17019, "credit_id": "52fe477dc3a368484e0c9d07", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Dominique McElligott", "character": "Aoife O'Carroll", "id": 115146, "credit_id": "52fe477dc3a368484e0c9d0b", "cast_id": 25, "profile_path": "/v7c8fYjnBOVRnE2X9FnRQBtvK3x.jpg", "order": 8}, {"name": "Sarah Greene", "character": "Sinead Mulligan", "id": 1048644, "credit_id": "52fe477dc3a368484e0c9d0f", "cast_id": 26, "profile_path": "/8kzqNhc8kOUHZ61RJu0nIy7K4EZ.jpg", "order": 9}, {"name": "Fionnula Flanagan", "character": "Eileen Boyle", "id": 58068, "credit_id": "52fe477dc3a368484e0c9d13", "cast_id": 27, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 10}, {"name": "Gary Lydon", "character": "Garda Inspector Gerry Stanton", "id": 93209, "credit_id": "52fe477dc3a368484e0c9d17", "cast_id": 28, "profile_path": "/azTMUVMcNbJG3wdmBUIlzCHHEJw.jpg", "order": 11}], "directors": [{"name": "John Michael McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe477dc3a368484e0c9cdb", "profile_path": "/kYGIKwsaKLkXfWDJIm2ClHuvzby.jpg", "id": 65594}], "vote_average": 6.7, "runtime": 96}, "84306": {"poster_path": "/c9Q2to1Jpq8a0Zqto6Mqc1ujLYn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Newly single, 35, and uninspired by his job, Jesse Fisher worries that his best days are behind him. But no matter how much he buries his head in a book, life keeps pulling Jesse back. When his favorite college professor invites him to campus to speak at his retirement dinner, Jesse jumps at the chance. He is prepared for the nostalgia of the dining halls and dorm rooms, the parties and poetry seminars; what he doesn\u2019t see coming is Zibby \u2013 a beautiful, precocious, classical-music-loving sophomore. Zibby awakens scary, exciting, long-dormant feelings of possibility and connection that Jesse thought he had buried forever.", "video": false, "id": 84306, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Liberal Arts", "tagline": "", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1872818", "adult": false, "backdrop_path": "/z27PNUrpd8WYKSyacfbhUP1u6DR.jpg", "production_companies": [], "release_date": "2012-09-14", "popularity": 0.426668696670237, "original_title": "Liberal Arts", "budget": 0, "cast": [{"name": "Josh Radnor", "character": "Jesse", "id": 144009, "credit_id": "52fe48e99251416c9109c565", "cast_id": 2, "profile_path": "/NiPvX9YvxMNuUNqonYuF4EKLAV.jpg", "order": 0}, {"name": "Elizabeth Olsen", "character": "Zibby", "id": 550843, "credit_id": "52fe48e99251416c9109c569", "cast_id": 3, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 1}, {"name": "Richard Jenkins", "character": "Prof. Peter Hoberg", "id": 28633, "credit_id": "52fe48e99251416c9109c56d", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 2}, {"name": "Zac Efron", "character": "Nat", "id": 29222, "credit_id": "52fe48e99251416c9109c561", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 3}, {"name": "Allison Janney", "character": "Prof. Judith Fairfield", "id": 19, "credit_id": "52fe48e99251416c9109c571", "cast_id": 5, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 4}, {"name": "Elizabeth Reaser", "character": "Ana", "id": 53755, "credit_id": "52fe48e99251416c9109c575", "cast_id": 6, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 5}, {"name": "Kate Burton", "character": "Susan", "id": 20879, "credit_id": "52fe48e99251416c9109c579", "cast_id": 7, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 6}, {"name": "Kristen Bush", "character": "Leslie", "id": 205701, "credit_id": "52fe48e99251416c9109c589", "cast_id": 11, "profile_path": "/1OBUJ8QrQtHBym6AXYqC2w2G2mL.jpg", "order": 7}], "directors": [{"name": "Josh Radnor", "department": "Directing", "job": "Director", "credit_id": "52fe48e99251416c9109c57f", "profile_path": "/NiPvX9YvxMNuUNqonYuF4EKLAV.jpg", "id": 144009}], "vote_average": 6.1, "runtime": 97}, "26963": {"poster_path": "/hTmIGCqLKKUoEKJYOAJJau8mgne.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?", "video": false, "id": 26963, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Secret of Kells", "tagline": "Turn the darkness into light", "vote_count": 50, "homepage": "http://www.thesecretofkells.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0485601", "adult": false, "backdrop_path": "/i9KqqGDw6aOOxtQDdzP4xHmjyHT.jpg", "production_companies": [{"name": "G\u00e9b\u00e9ka Films", "id": 4621}], "release_date": "2009-02-09", "popularity": 0.60840924777655, "original_title": "The Secret of Kells", "budget": 0, "cast": [{"name": "Evan McGuire", "character": "Brendan", "id": 96669, "credit_id": "52fe4525c3a368484e04af97", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Brendan Gleeson", "character": "Abbot Cellach", "id": 2039, "credit_id": "52fe4525c3a368484e04af9b", "cast_id": 2, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 1}, {"name": "Liam Hourican", "character": "Brother Tang/Leonardo", "id": 96670, "credit_id": "52fe4525c3a368484e04af9f", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Mick Lally", "character": "Brother Aidan", "id": 96671, "credit_id": "52fe4525c3a368484e04afa3", "cast_id": 4, "profile_path": "/kEehdLmBQ56Byvr1yY7giUTM1Jd.jpg", "order": 3}, {"name": "Michael McGrath", "character": "Adult Brendan", "id": 96672, "credit_id": "52fe4525c3a368484e04afa7", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Christen Mooney", "character": "Aisling", "id": 96673, "credit_id": "52fe4525c3a368484e04afab", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Paul Tylak", "character": "Brother Assoua", "id": 96674, "credit_id": "52fe4525c3a368484e04afaf", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Paul Young", "character": "Brother Square", "id": 96675, "credit_id": "52fe4525c3a368484e04afb3", "cast_id": 8, "profile_path": null, "order": 7}], "directors": [{"name": "Tomm Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a368484e04afb9", "profile_path": "/mQsxkLXfPgUdtBZsUgfG1oDGucm.jpg", "id": 96676}, {"name": "Nora Twomey", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a368484e04afbf", "profile_path": null, "id": 96677}], "vote_average": 7.1, "runtime": 75}, "51540": {"poster_path": "/17rVRW7ond0PR2KJHY0xY00isTB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117, "overview": "For Nick (Jason Bateman), Kurt (Jason Sudeikis) and Dale (Charlie Day), the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses (Kevin Spacey, Colin Farrell, Jennifer Aniston) into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con (Jamie Foxx), the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers... permanently.", "video": false, "id": 51540, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Horrible Bosses", "tagline": "Ever wish your boss was dead?", "vote_count": 687, "homepage": "http://horriblebossesmovie.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zU3dVVBa3JW1nQVUsaFM0BeTnK.jpg", "id": 280588, "name": "Horrible Bosses Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1499658", "adult": false, "backdrop_path": "/1iVZJmeHW8MVMq7xlaHgLSv6qrc.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Rat Entertainment", "id": 12007}], "release_date": "2011-07-08", "popularity": 2.56791276967644, "original_title": "Horrible Bosses", "budget": 35000000, "cast": [{"name": "Jennifer Aniston", "character": "Dr. Julia Harris", "id": 4491, "credit_id": "52fe47f8c3a36847f8151faf", "cast_id": 1, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Jason Bateman", "character": "Nick Hendricks", "id": 23532, "credit_id": "52fe47f8c3a36847f8151fb3", "cast_id": 2, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 1}, {"name": "Charlie Day", "character": "Dale Arbus", "id": 95101, "credit_id": "52fe47f8c3a36847f8151fb7", "cast_id": 3, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 2}, {"name": "Jason Sudeikis", "character": "Kurt Buckman", "id": 58224, "credit_id": "52fe47f8c3a36847f8151fbb", "cast_id": 4, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 3}, {"name": "Colin Farrell", "character": "Bobby Pellitt", "id": 72466, "credit_id": "52fe47f8c3a36847f8151fbf", "cast_id": 5, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 4}, {"name": "Jamie Foxx", "character": "Motherfucker Jones", "id": 134, "credit_id": "52fe47f8c3a36847f8151fc3", "cast_id": 6, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 5}, {"name": "Donald Sutherland", "character": "Jack Pellit", "id": 55636, "credit_id": "52fe47f8c3a36847f8151fc7", "cast_id": 7, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 6}, {"name": "Lindsay Sloane", "character": "Stacey", "id": 41662, "credit_id": "52fe47f8c3a36847f8151fcb", "cast_id": 8, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 7}, {"name": "John Francis Daley", "character": "Carter", "id": 52935, "credit_id": "52fe47f8c3a36847f8151fcf", "cast_id": 9, "profile_path": "/xg5gaLLmB0d79ge91fUCnjBCjwk.jpg", "order": 8}, {"name": "Kevin Spacey", "character": "Dave Harken", "id": 1979, "credit_id": "52fe47f8c3a36847f8151fe5", "cast_id": 13, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 9}, {"name": "Julie Bowen", "character": "Rhonda Harken", "id": 31171, "credit_id": "52fe47f8c3a36847f8151fe9", "cast_id": 15, "profile_path": "/fbELrYxMYvUftgceh0KXnw2mQ8r.jpg", "order": 10}, {"name": "Meghan Markle", "character": "Jamie", "id": 1216701, "credit_id": "52fe47f8c3a36847f8151fed", "cast_id": 16, "profile_path": "/vCYRriV2w19TBoRWn65Bo8vKy0l.jpg", "order": 11}, {"name": "Steve Wiebe", "character": "Thomas, Head of Security", "id": 76112, "credit_id": "530c4d919251411444000891", "cast_id": 17, "profile_path": "/x6CduU4HKFZtBs3z78xwuQXck8S.jpg", "order": 12}, {"name": "Michael Albala", "character": "Mr. Anderton", "id": 133593, "credit_id": "530c4dc59251411428000906", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Jennifer Hasty", "character": "Kurt's Co-Worker", "id": 191897, "credit_id": "530c4de9925141142800090e", "cast_id": 19, "profile_path": "/p2MKBorcVylJoYl7XKNVd4EsB9s.jpg", "order": 14}, {"name": "Reginald Ballard", "character": "Kurt's Co-Worker", "id": 154096, "credit_id": "530c4e0192514114310008f5", "cast_id": 20, "profile_path": "/qXIp0OCsERavYTLQu8pbgIBRdQh.jpg", "order": 15}, {"name": "George Back", "character": "Kurt's Co-Worker", "id": 66523, "credit_id": "530c4e119251411444000896", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Barry Livingston", "character": "Kurt's Co-Worker", "id": 75344, "credit_id": "530c4e24925141142e000917", "cast_id": 22, "profile_path": "/mttrxc8jZnd2y0qAmdSKJpSUDNe.jpg", "order": 17}, {"name": "Donald Sutherland", "character": "Jack Pellit", "id": 55636, "credit_id": "530c4e5592514114310008f9", "cast_id": 23, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 18}, {"name": "Celia Finkelstein", "character": "Margie Emerman", "id": 968697, "credit_id": "530c4e66925141142100097e", "cast_id": 24, "profile_path": "/q6mBuK5KNkoQg07aLfuyebADzDT.jpg", "order": 19}], "directors": [{"name": "Seth Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe47f8c3a36847f8151fd5", "profile_path": "/gstUEbopSacaQTpxYjfSwz0gzLl.jpg", "id": 71600}], "vote_average": 6.4, "runtime": 98}, "10585": {"poster_path": "/2ghJjnv19CQTjTYd5zXsslyGCl2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44196684, "overview": "A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed with the soul of a serial killer.", "video": false, "id": 10585, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Child's Play", "tagline": "Chucky is one mean S.O.B.", "vote_count": 103, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094862", "adult": false, "backdrop_path": "/hWEaHxO6mcT9ifMFTVHzikLVpq9.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1988-11-08", "popularity": 0.767868166373217, "original_title": "Child's Play", "budget": 9000000, "cast": [{"name": "Catherine Hicks", "character": "Karen Barclay", "id": 2022, "credit_id": "52fe438c9251416c75014c07", "cast_id": 10, "profile_path": "/pAqwxZ5AgpgsExQC79fDVtFdvhe.jpg", "order": 0}, {"name": "Chris Sarandon", "character": "Mike Norris", "id": 14541, "credit_id": "52fe438c9251416c75014c0b", "cast_id": 11, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 1}, {"name": "Alex Vincent", "character": "Andy Barclay", "id": 65683, "credit_id": "52fe438c9251416c75014c0f", "cast_id": 12, "profile_path": "/jR4RmOgv77uVsxOWbTMy5LWZiBg.jpg", "order": 2}, {"name": "Brad Dourif", "character": "Charles Lee Ray/Chucky", "id": 1370, "credit_id": "52fe438c9251416c75014c13", "cast_id": 13, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 3}, {"name": "Dinah Manoff", "character": "Maggie Peterson", "id": 8900, "credit_id": "52fe438c9251416c75014c17", "cast_id": 14, "profile_path": "/kCULJZUXCTWUTolDb2C9saK2PMj.jpg", "order": 4}], "directors": [{"name": "Tom Holland", "department": "Directing", "job": "Director", "credit_id": "52fe438c9251416c75014bd3", "profile_path": null, "id": 64796}], "vote_average": 6.3, "runtime": 87}, "10587": {"poster_path": "/g7JVqQPOCKQLJDfxTaBpVM21DWY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28061343, "overview": "A new batch of recruits arrives at Police Academy, this time a group of civilian volunteers who have joined Commandant Lassard's new Citizens on Patrol program. Although the community relations project has strong governmental support, a disgusted Captain Harris is determined to see it fail.", "video": false, "id": 10587, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy 4: Citizens on Patrol", "tagline": "On land, on sea, or in the air, no place is safe from them!", "vote_count": 56, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093756", "adult": false, "backdrop_path": "/aHiWHHqO1a1WY02KQGwvECJ7hzH.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-04-02", "popularity": 0.810000682686953, "original_title": "Police Academy 4: Citizens on Patrol", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Sgt. Carey Mahoney", "id": 26472, "credit_id": "52fe438d9251416c75014cef", "cast_id": 7, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Bubba Smith", "character": "Sgt. Moses Hightowe", "id": 57349, "credit_id": "52fe438d9251416c75014cf3", "cast_id": 8, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 1}, {"name": "Michael Winslow", "character": "Sgt. Larvelle Jones", "id": 14672, "credit_id": "52fe438d9251416c75014cf7", "cast_id": 9, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 2}, {"name": "Sharon Stone", "character": "Claire Mattson", "id": 4430, "credit_id": "52fe438d9251416c75014cfb", "cast_id": 10, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 3}, {"name": "David Graf", "character": "Sgt. Eugene Tackleberry", "id": 57353, "credit_id": "52fe438d9251416c75014cff", "cast_id": 11, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 4}, {"name": "Bobcat Goldthwait", "character": "Cadet Zed", "id": 95024, "credit_id": "52fe438d9251416c75014d03", "cast_id": 12, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 5}, {"name": "G. W. Bailey", "character": "Captain Thaddeus Harris", "id": 27237, "credit_id": "52fe438d9251416c75014d07", "cast_id": 13, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 6}, {"name": "David Spade", "character": "Kyle", "id": 60950, "credit_id": "52fe438d9251416c75014d0b", "cast_id": 14, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 7}, {"name": "Steve Caballero", "character": "Skateboarder", "id": 110393, "credit_id": "52fe438d9251416c75014d0f", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Tony Hawk", "character": "Skateboarder", "id": 16832, "credit_id": "52fe438d9251416c75014d13", "cast_id": 16, "profile_path": "/hrGNPp2erLimOo2wyFWgXVpIqPN.jpg", "order": 9}, {"name": "Tab Thacker", "character": "Officer Thomas 'House' Conklin", "id": 1276381, "credit_id": "52fe438d9251416c75014d17", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Colleen Camp", "character": "Sgt. Kathleen Kirkland-Tackleberry", "id": 13023, "credit_id": "52fe438d9251416c75014d1b", "cast_id": 18, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 11}, {"name": "Tim Kazurinsky", "character": "Sweetchuck", "id": 95216, "credit_id": "53c0bd9a0e0a261576008318", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Marion Ramsey", "character": "Hooks", "id": 186816, "credit_id": "53c0bde20e0a261589008139", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Lance Kinsey", "character": "Proctor", "id": 141429, "credit_id": "53c0be0c0e0a261579007f7d", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "George Gaynes", "character": "Commandant Lassard", "id": 57351, "credit_id": "53c0be2b0e0a261579007f82", "cast_id": 22, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 15}, {"name": "Scott Thomson", "character": "Copeland", "id": 9997, "credit_id": "53c0be3f0e0a26157f008375", "cast_id": 23, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 16}, {"name": "Billie Bird", "character": "Mrs. Feldman", "id": 140778, "credit_id": "53c0be520e0a261576008334", "cast_id": 24, "profile_path": "/jJzRnD39UAvbU1ihaXMRcPZN9Xq.jpg", "order": 17}, {"name": "Leslie Easterbrook", "character": "Callahan", "id": 22252, "credit_id": "53c0be8f0e0a261579007f94", "cast_id": 25, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 18}, {"name": "Brian Tochi", "character": "Nogata", "id": 16060, "credit_id": "53c0bf880e0a26158f007d37", "cast_id": 26, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 19}, {"name": "Brian Backer", "character": "Arnie", "id": 118946, "credit_id": "53c1e307c3a3684cdf00724b", "cast_id": 27, "profile_path": "/fUs5ipPXE3jdTSkxoC75tMML1Fz.jpg", "order": 20}, {"name": "Jack Creley", "character": "Judge", "id": 12485, "credit_id": "550204bf9251413da80036d9", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Jim Drake", "department": "Directing", "job": "Director", "credit_id": "52fe438d9251416c75014ccd", "profile_path": null, "id": 65688}], "vote_average": 5.3, "runtime": 88}, "10588": {"poster_path": "/cyfCsdxGYIRlMd2z3dncOZWrgvk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Conrad and Sally Walden are home alone with their pet fish. It is raining outside, and there is nothing to do. Until The Cat in the Hat walks in the front door. He introduces them to their imagination, and at first it's all fun and games, until things get out of hand, and The Cat must go, go, go, before their parents get back.", "video": false, "id": 10588, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Dr. Seuss' The Cat in the Hat", "tagline": "Don't mess with the hat.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0312528", "adult": false, "backdrop_path": "/gcqChVuR9n43ktuA5Pi7klrsGKJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2003-11-21", "popularity": 0.482382737665738, "original_title": "The Cat in the Hat", "budget": 0, "cast": [{"name": "Mike Myers", "character": "The Cat", "id": 12073, "credit_id": "52fe438d9251416c75014d51", "cast_id": 1, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Quinn", "id": 7447, "credit_id": "52fe438d9251416c75014d55", "cast_id": 2, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Mom", "id": 11164, "credit_id": "52fe438d9251416c75014d59", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Dakota Fanning", "character": "Sally", "id": 501, "credit_id": "52fe438d9251416c75014d5d", "cast_id": 4, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 3}, {"name": "Spencer Breslin", "character": "Conrad", "id": 35654, "credit_id": "52fe438d9251416c75014d61", "cast_id": 5, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 4}, {"name": "Amy Hill", "character": "Mrs. Kwan", "id": 59401, "credit_id": "52fe438d9251416c75014d65", "cast_id": 6, "profile_path": "/uVJnyfKqN5Ex2ueoWhEIgMY6q6Q.jpg", "order": 5}, {"name": "Sean Hayes", "character": "Mr. Humberfloob / Voice of the Fish", "id": 52601, "credit_id": "52fe438d9251416c75014db7", "cast_id": 20, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 6}, {"name": "Danielle Chuchran", "character": "Thing One (as Danielle Ryan Chuchran)", "id": 135532, "credit_id": "52fe438d9251416c75014dbb", "cast_id": 21, "profile_path": "/1QRjXnG0uqrXo6zrDmvLc1XXoaR.jpg", "order": 7}, {"name": "Taylor Rice", "character": "Thing One", "id": 1056728, "credit_id": "52fe438d9251416c75014dbf", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Brittany Oaks", "character": "Thing Two", "id": 982705, "credit_id": "52fe438d9251416c75014dc3", "cast_id": 23, "profile_path": "/y2qMh6T6dqTQ1Icga2H6zLr61sr.jpg", "order": 9}, {"name": "Talia-Lynn Prairie", "character": "Thing Two (as Talia Prairie)", "id": 168388, "credit_id": "52fe438d9251416c75014dc7", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "Bo Welch", "department": "Directing", "job": "Director", "credit_id": "52fe438d9251416c75014d6b", "profile_path": null, "id": 5133}], "vote_average": 5.3, "runtime": 82}, "18781": {"poster_path": "/lSahgFbmbmCPdZ3X6cZynblkP6R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64895970, "overview": "When the Campbell family moves to upstate Connecticut, they soon learn that their charming Victorian home has a disturbing history: not only was the house a transformed funeral parlor where inconceivable acts occurred, but the owner's clairvoyant son Jonah served as a demonic messenger, providing a gateway for spiritual entities to crossover.", "video": false, "id": 18781, "genres": [{"id": 27, "name": "Horror"}], "title": "The Haunting in Connecticut", "tagline": "Some things cannot be explained.", "vote_count": 60, "homepage": "http://www.hauntinginconnecticut.com/", "belongs_to_collection": {"backdrop_path": "/1sWTV5QaoDnBTTSbElUfe5zBcu2.jpg", "poster_path": "/6uIGXwqIfdg0IQw3bvfS49VMKHh.jpg", "id": 169740, "name": "The Haunting in Connecticut Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0492044", "adult": false, "backdrop_path": "/na8T1ykPKAYmseM8gkSjuoHOZP.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Integrated Films & Management", "id": 21458}], "release_date": "2009-03-27", "popularity": 0.462595242138706, "original_title": "The Haunting in Connecticut", "budget": 0, "cast": [{"name": "Virginia Madsen", "character": "Sara Campbell", "id": 12519, "credit_id": "52fe479a9251416c7509f46d", "cast_id": 4, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 0}, {"name": "Kyle Gallner", "character": "Matt Campbell", "id": 59219, "credit_id": "52fe479a9251416c7509f471", "cast_id": 5, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Reverend Popescu", "id": 13550, "credit_id": "52fe479a9251416c7509f475", "cast_id": 6, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Amanda Crew", "character": "Wendy", "id": 58370, "credit_id": "52fe479a9251416c7509f479", "cast_id": 7, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 3}, {"name": "Martin Donovan", "character": "Peter Campbell", "id": 42993, "credit_id": "52fe479a9251416c7509f47d", "cast_id": 8, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 4}, {"name": "Sophi Knight", "character": "Mary Campbell", "id": 83568, "credit_id": "52fe479a9251416c7509f481", "cast_id": 9, "profile_path": "/xx5XJqvjGRhfzOhZFG5kKGVmaeo.jpg", "order": 5}, {"name": "Ty Wood", "character": "Billy Campbell", "id": 61166, "credit_id": "52fe479a9251416c7509f485", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Erik J. Berg", "character": "Jonah", "id": 83569, "credit_id": "52fe479a9251416c7509f489", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "John Bluethner", "character": "Ramsey Aickman", "id": 54235, "credit_id": "54073ed4c3a3686905000e98", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Peter Cornwell", "department": "Directing", "job": "Director", "credit_id": "52fe479a9251416c7509f45d", "profile_path": "/4MZYF47rLAMAjChyY2owptcIZtb.jpg", "id": 63303}], "vote_average": 6.4, "runtime": 92}, "10590": {"poster_path": "/kjG02l5Nqcgd3ZOb7aMBb9CIIIi.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114660784, "overview": "The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.", "video": false, "id": 10590, "genres": [{"id": 28, "name": "Action"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "We Were Soldiers", "tagline": "400 U.S paratroopers. 4000 Vietnamese soldiers. 12 000 miles away from home. 1 man led them into battle.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0277434", "adult": false, "backdrop_path": "/8ikyF16LecHlHkkMmuZJDV9GWa7.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Icon Productions", "id": 152}], "release_date": "2002-03-01", "popularity": 1.08502086129833, "original_title": "We Were Soldiers", "budget": 75000000, "cast": [{"name": "Mel Gibson", "character": "Lt. Col. Hal Moore", "id": 2461, "credit_id": "52fe438e9251416c75014f9d", "cast_id": 19, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Maj. Bruce 'Snake' Crandall", "id": 17141, "credit_id": "52fe438e9251416c75014fa1", "cast_id": 20, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Madeleine Stowe", "character": "Julie Moore", "id": 289, "credit_id": "52fe438e9251416c75014fa5", "cast_id": 21, "profile_path": "/jqd70MNVUs3nTbxn3B3G6UNV4Oc.jpg", "order": 2}, {"name": "Sam Elliott", "character": "Sgt. Maj. Basil Plumley", "id": 16431, "credit_id": "52fe438e9251416c75014fa9", "cast_id": 22, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 3}, {"name": "Chris Klein", "character": "2nd Lt. Jack Geoghegan", "id": 21594, "credit_id": "52fe438e9251416c75014fad", "cast_id": 23, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 4}, {"name": "Keri Russell", "character": "Barbara Geoghegan", "id": 41292, "credit_id": "52fe438e9251416c75014fb1", "cast_id": 24, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 5}, {"name": "Barry Pepper", "character": "Joe Galloway", "id": 12834, "credit_id": "52fe438e9251416c75014fb5", "cast_id": 25, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Capt. Tom Metsker", "id": 9048, "credit_id": "52fe438e9251416c75014fc5", "cast_id": 29, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "Marc Blucas", "character": "2nd Lt. Henry Herrick", "id": 46772, "credit_id": "52fe438e9251416c75014fc9", "cast_id": 30, "profile_path": "/5OdBu0DFKca1mxjeqNruz00DSRF.jpg", "order": 8}, {"name": "Jsu Garcia", "character": "Capt. Tony Nadal", "id": 13657, "credit_id": "52fe438e9251416c75014fcd", "cast_id": 31, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 9}, {"name": "Robert Bagnell", "character": "1st Lt. Charlie Hastings", "id": 65715, "credit_id": "52fe438e9251416c75014fd1", "cast_id": 34, "profile_path": "/pUDVP9u5cGrpVkufCnG4V8Y49Mu.jpg", "order": 12}, {"name": "Blake Heron", "character": "Sp4 Galen Bungum", "id": 57127, "credit_id": "52fe438e9251416c75014fd5", "cast_id": 35, "profile_path": "/dpbSkgTckGSYRXvbZV2MwFN38LI.jpg", "order": 13}, {"name": "Josh Daugherty", "character": "Sp4 Robert Ouellette", "id": 65716, "credit_id": "52fe438e9251416c75014fd9", "cast_id": 36, "profile_path": "/6o2nk5pA49ky3lOKfWGVM193cof.jpg", "order": 14}, {"name": "Jon Hamm", "character": "Capt. Matt Dillon", "id": 65717, "credit_id": "52fe438e9251416c75014fdd", "cast_id": 37, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 15}, {"name": "Dylan Walsh", "character": "Capt. Robert Edwards", "id": 21043, "credit_id": "52fe438e9251416c75014fe1", "cast_id": 38, "profile_path": "/jrQiBcQMkhgXAtJ7kpSJ15tq1GQ.jpg", "order": 16}, {"name": "Erik MacArthur", "character": "Sp4 Russell Adams", "id": 65719, "credit_id": "52fe438e9251416c75014fe5", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Mark McCracken", "character": "Capt. Ed 'Too Tall' Freeman", "id": 65720, "credit_id": "52fe438e9251416c75014fe9", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Desmond Harrington", "character": "Sp4 Bill Beck", "id": 6365, "credit_id": "52fe438e9251416c75014ff3", "cast_id": 43, "profile_path": "/Wyv2jiCnJXkVtrRwXOvy1aVemb.jpg", "order": 19}, {"name": "Duong Don", "character": "Lt. Col. Nguyen Huu An", "id": 35053, "credit_id": "52fe438e9251416c75014ff7", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Ryan Hurst", "character": "Sgt. Ernie Savage", "id": 43858, "credit_id": "52fe438e9251416c75014ffb", "cast_id": 45, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 21}], "directors": [{"name": "Randall Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe438e9251416c75014f45", "profile_path": "/sHaZ1TAca9o8f4m8obTOt4p7tlg.jpg", "id": 2460}], "vote_average": 6.7, "runtime": 138}, "10591": {"poster_path": "/qKr9OV9F05clqVyPCULwB3KKJzP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30411183, "overview": "Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.", "video": false, "id": 10591, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Girl Next Door", "tagline": "Matt never saw her coming... but all his friends had!", "vote_count": 262, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265208", "adult": false, "backdrop_path": "/4CTCZLCm2THhBuGjdF3UnKzxmYX.jpg", "production_companies": [{"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Daybreak", "id": 49241}], "release_date": "2004-03-04", "popularity": 0.861362642700975, "original_title": "The Girl Next Door", "budget": 25000000, "cast": [{"name": "Emile Hirsch", "character": "Matthew Kidman", "id": 46593, "credit_id": "52fe438e9251416c750150b7", "cast_id": 17, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Timothy Olyphant", "character": "Kelly", "id": 18082, "credit_id": "52fe438e9251416c750150c7", "cast_id": 21, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 1}, {"name": "Elisha Cuthbert", "character": "Danielle", "id": 25837, "credit_id": "52fe438e9251416c750150cb", "cast_id": 22, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 2}, {"name": "James Remar", "character": "Hugo Posh", "id": 1736, "credit_id": "52fe438e9251416c750150cf", "cast_id": 23, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 3}, {"name": "Chris Marquette", "character": "Eli", "id": 59238, "credit_id": "52fe438e9251416c750150d3", "cast_id": 24, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 4}, {"name": "Paul Dano", "character": "Klitz", "id": 17142, "credit_id": "52fe438e9251416c750150d7", "cast_id": 25, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 5}, {"name": "Timothy Bottoms", "character": "Mr. Kidman", "id": 19207, "credit_id": "52fe438e9251416c750150db", "cast_id": 26, "profile_path": "/pTw7LySB4jJv9PfJfx3Hjj9GKQw.jpg", "order": 6}, {"name": "Amanda Swisten", "character": "April", "id": 54587, "credit_id": "52fe438e9251416c750150df", "cast_id": 27, "profile_path": "/zRrt4ZhwAe6VtCog4DA4n28itjq.jpg", "order": 7}, {"name": "Brian Kolodziej", "character": "Derek", "id": 65738, "credit_id": "52fe438e9251416c750150e3", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Julie Osburn", "character": "Jeannie", "id": 65745, "credit_id": "52fe438e9251416c750150e7", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Ulysses Lee", "character": "Samnang", "id": 65742, "credit_id": "52fe438e9251416c750150ef", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Brandon Irons", "character": "Troy", "id": 65741, "credit_id": "52fe438e9251416c750150eb", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Donna Bullock", "character": "Mrs. Kidman", "id": 65740, "credit_id": "52fe438e9251416c750150f3", "cast_id": 32, "profile_path": "/bz6ybejRPtrNw9Ul8eXcflgMy8K.jpg", "order": 12}, {"name": "Sung-Hi Lee", "character": "Ferrari", "id": 65739, "credit_id": "52fe438e9251416c750150f7", "cast_id": 33, "profile_path": "/rDn5yxqahHDo0aSZ64TMiMAB95G.jpg", "order": 13}, {"name": "Jacob Young", "character": "Hunter", "id": 65743, "credit_id": "52fe438e9251416c750150fb", "cast_id": 34, "profile_path": "/lDPWD606D346VYGEHruAYx9YYks.jpg", "order": 14}, {"name": "Harris Laskawy", "character": "Dr. Salinger", "id": 65744, "credit_id": "52fe438e9251416c750150ff", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Laird Stuart", "character": "Mr. Ruether", "id": 65746, "credit_id": "52fe438e9251416c75015103", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Richard Fancy", "character": "Mr. Peterson", "id": 65748, "credit_id": "52fe438e9251416c75015107", "cast_id": 37, "profile_path": "/gqMB9kzTff3X42jhG8doZIftzTe.jpg", "order": 17}, {"name": "Catherine McGoohan", "character": "Mrs. Peterson", "id": 65749, "credit_id": "52fe438e9251416c7501510b", "cast_id": 38, "profile_path": "/oVFDGAuDNM5wMwBqggIfnePVZla.jpg", "order": 18}, {"name": "Dane Garretson", "character": "Ryan Wenger", "id": 65747, "credit_id": "52fe438e9251416c7501510f", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Olivia Wilde", "character": "Kellie", "id": 59315, "credit_id": "552d7f11c3a3686201000cd0", "cast_id": 42, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 20}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe438e9251416c75015077", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 6.1, "runtime": 108}, "10592": {"poster_path": "/pNfnaPlxUtlkmWuDK3i5zBT79LP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19076815, "overview": "Fourth-generation Army Col. William McNamara is imprisoned in a brutal German POW camp. Still, as the senior-ranking American officer, he commands his fellow inmates, keeping a sense of honor alive in a place where honor is easy to destroy, all under the dangerous eye of the Luftwafe vetran Col. Wilhelm Visser. Never giving up the fight to win the war, McNamara is silently planning, waiting for his moment to strike back at the enemy. A murder in the camp gives him the chance to set a risky plan in motion. With a court martial to keep Visser and the Germans distracted, McNamara orchestrates a cunning scheme to escape and destroy a nearby munitions plant, enlisting the unwitting help of young Lt. Tommy Hart. Together with his men, McNamara uses a hero's resolve to carry out his mission, ultimately forced to weigh the value of his life against the good of his country.", "video": false, "id": 10592, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Hart's War", "tagline": "Beyond Courage, Beyond Honor.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251114", "adult": false, "backdrop_path": "/p5ay5m2w40QZzmRmUO19oJ4QrTk.jpg", "production_companies": [{"name": "Cheyenne Enterprises", "id": 890}, {"name": "David Foster Productions", "id": 496}, {"name": "David Ladd Films", "id": 21447}, {"name": "MGM", "id": 5899}], "release_date": "2002-02-15", "popularity": 0.864713337323243, "original_title": "Hart's War", "budget": 60000000, "cast": [{"name": "Bruce Willis", "character": "Col. William A. McNamara", "id": 62, "credit_id": "52fe438f9251416c750151d7", "cast_id": 19, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Lt. Thomas W. Hart", "id": 72466, "credit_id": "52fe438f9251416c750151db", "cast_id": 20, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Terrence Howard", "character": "Lt. Lincoln A. Scott", "id": 18288, "credit_id": "52fe438f9251416c750151e5", "cast_id": 22, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 2}, {"name": "Marcel Iures", "character": "Col. Werner Visser", "id": 15320, "credit_id": "52fe438f9251416c750151e9", "cast_id": 23, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 3}, {"name": "Cole Hauser", "character": "Staff Sgt. Vic W. Bedford", "id": 6614, "credit_id": "52fe438f9251416c750151ed", "cast_id": 24, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 4}, {"name": "Linus Roache", "character": "Capt. Peter A. Ross", "id": 3900, "credit_id": "52fe438f9251416c750151f1", "cast_id": 25, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 5}, {"name": "Vicellous Reon Shannon", "character": "Lt. Lamar T. Archer", "id": 25868, "credit_id": "52fe438f9251416c750151f5", "cast_id": 26, "profile_path": "/paAiswc2A5u2jMi785nswXjjWdQ.jpg", "order": 6}, {"name": "Rory Cochrane", "character": "Sgt. Carl S. Webb", "id": 51792, "credit_id": "52fe438f9251416c750151f9", "cast_id": 27, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 7}, {"name": "Joe Spano", "character": "Col. J.M. Lange", "id": 8192, "credit_id": "52fe438f9251416c75015203", "cast_id": 29, "profile_path": "/ApY9rdhS1Qrvd0byprtlMxMAQ1q.jpg", "order": 8}, {"name": "Michael Weston", "character": "Pfc. W. Roy Potts", "id": 51381, "credit_id": "52fe438f9251416c75015207", "cast_id": 30, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 9}, {"name": "Adrian Grenier", "character": "Pvt. Daniel E. Abrams", "id": 5090, "credit_id": "52fe438f9251416c7501520f", "cast_id": 32, "profile_path": "/rZ0y8mxadSJexY2c3DDo6yzGHnr.jpg", "order": 10}, {"name": "Jonathan Brandis", "character": "Pvt. Lewis P. Wakely", "id": 27773, "credit_id": "52fe438f9251416c7501520b", "cast_id": 31, "profile_path": "/dWKS1zkrHt1mtaTuAjQNr6nNnlb.jpg", "order": 11}, {"name": "Maury Sterling", "character": "Pfc. Dennis A. Gerber", "id": 65726, "credit_id": "52fe438f9251416c75015213", "cast_id": 33, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 12}, {"name": "Sam Jaeger", "character": "Capt. R.G. Sisk", "id": 65727, "credit_id": "52fe438f9251416c75015217", "cast_id": 34, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 13}, {"name": "Scott Michael Campbell", "character": "Cpl. Joe S. Cromin", "id": 65728, "credit_id": "52fe438f9251416c7501521b", "cast_id": 35, "profile_path": "/kMHZLJUwa8QCaLsBEAdEj8UtMGL.jpg", "order": 14}, {"name": "Rick Ravanello", "character": "Maj. Joe Clary", "id": 65730, "credit_id": "52fe438f9251416c7501521f", "cast_id": 36, "profile_path": "/tQqdbPyol2awlcZhlouaYqtO6YB.jpg", "order": 15}, {"name": "Sebastian Tillinger", "character": "Pvt. Bert D. 'Moose' Codman", "id": 65729, "credit_id": "52fe438f9251416c75015227", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Brad Hunt", "character": "Pvt. G.H. 'Cookie' Bell", "id": 65732, "credit_id": "52fe438f9251416c75015223", "cast_id": 37, "profile_path": "/5VP0Rn0cKsktqrvo60olV3cpcCe.jpg", "order": 17}, {"name": "R\u00faaidhr\u00ed Conroy", "character": "Cpl. D.F. Lisko", "id": 65733, "credit_id": "52fe438f9251416c7501522b", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Sam Worthington", "character": "as Cpl. B.J. 'Depot' Guidry", "id": 65731, "credit_id": "52fe438f9251416c7501522f", "cast_id": 40, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 19}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe438e9251416c75015173", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 5.9, "runtime": 125}, "18785": {"poster_path": "/eshEkiG7NmU4ekA8CtpIdYiYufZ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 459270619, "overview": "When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug -- who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.", "video": false, "id": 18785, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Hangover", "tagline": "Some guys just can't handle Vegas.", "vote_count": 2500, "homepage": "http://hangoverpart2.warnerbros.com/dvd/", "belongs_to_collection": {"backdrop_path": "/uEtsf26a9RsRDy85MOIv1xAj44x.jpg", "poster_path": "/aMmNLuyXvdBih1R5RRHtdtNaS6N.jpg", "id": 86119, "name": "The Hangover Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1119646", "adult": false, "backdrop_path": "/39LohvXfll5dGCQIV9B9VJ16ImE.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Legendary Pictures", "id": 923}, {"name": "Green Hat Films", "id": 3527}, {"name": "IFP Westcoast Erste", "id": 12235}], "release_date": "2009-06-05", "popularity": 1.53509772666155, "original_title": "The Hangover", "budget": 35000000, "cast": [{"name": "Bradley Cooper", "character": "Phil Wenneck", "id": 51329, "credit_id": "52fe479a9251416c7509f5eb", "cast_id": 1, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Ed Helms", "character": "Stu Price", "id": 27105, "credit_id": "52fe479a9251416c7509f5ef", "cast_id": 2, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Alan Garner", "id": 58225, "credit_id": "52fe479a9251416c7509f5f3", "cast_id": 3, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Doug Billings", "id": 21180, "credit_id": "52fe479a9251416c7509f5f7", "cast_id": 4, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Heather Graham", "character": "Jade", "id": 69122, "credit_id": "52fe479a9251416c7509f5fb", "cast_id": 5, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 4}, {"name": "Sasha Barrese", "character": "Tracy Garner", "id": 83585, "credit_id": "52fe479a9251416c7509f5ff", "cast_id": 6, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 5}, {"name": "Jeffrey Tambor", "character": "Sid Garner", "id": 4175, "credit_id": "52fe479a9251416c7509f603", "cast_id": 7, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 6}, {"name": "Ken Jeong", "character": "Mr. Chow", "id": 83586, "credit_id": "52fe479a9251416c7509f60b", "cast_id": 9, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 7}, {"name": "Rachael Harris", "character": "Melissa", "id": 46074, "credit_id": "52fe479a9251416c7509f607", "cast_id": 8, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 8}, {"name": "Mike Tyson", "character": "Himself", "id": 80757, "credit_id": "52fe479a9251416c7509f60f", "cast_id": 10, "profile_path": "/dENp2l4nk5wv6F0AT1iQ3pf4Os1.jpg", "order": 9}, {"name": "Mike Epps", "character": "Black Doug", "id": 51944, "credit_id": "52fe479a9251416c7509f613", "cast_id": 11, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 10}, {"name": "Jernard Burks", "character": "Leonard", "id": 55275, "credit_id": "52fe479a9251416c7509f617", "cast_id": 12, "profile_path": "/uDxTWoUD79M7Hbmawp7ARexw0c1.jpg", "order": 11}, {"name": "Rob Riggle", "character": "Officer Franklin", "id": 71403, "credit_id": "52fe479a9251416c7509f61b", "cast_id": 13, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 12}, {"name": "Cleo King", "character": "Officer Garden", "id": 7574, "credit_id": "52fe479a9251416c7509f61f", "cast_id": 14, "profile_path": "/1hyMhXnT6VuC0XA9eBmsbx9QbbY.jpg", "order": 13}, {"name": "Bryan Callen", "character": "Eddie Palermo", "id": 78320, "credit_id": "52fe479a9251416c7509f623", "cast_id": 15, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 14}, {"name": "Matt Walsh", "character": "Dr. Valsh", "id": 59841, "credit_id": "52fe479a9251416c7509f699", "cast_id": 35, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 15}, {"name": "Ian Anthony Dale", "character": "Chow's #1", "id": 123813, "credit_id": "5451f4dc0e0a263a18006040", "cast_id": 106, "profile_path": "/8lF1E9MNYDXVPUy4YB3In4mi46N.jpg", "order": 16}, {"name": "Michael Li", "character": "Chow's #2", "id": 1265844, "credit_id": "52fe479a9251416c7509f6a1", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Sondra Currie", "character": "Linda", "id": 153621, "credit_id": "52fe479a9251416c7509f6a5", "cast_id": 38, "profile_path": "/an6mZEO5SMAsOkgEOBg7jSN1jmu.jpg", "order": 18}, {"name": "Gillian Vigman", "character": "Stephanie", "id": 61182, "credit_id": "52fe479a9251416c7509f6a9", "cast_id": 39, "profile_path": "/2uwR6JalWrZWZq3NhL7CdDlDKhL.jpg", "order": 19}, {"name": "Nathalie Fay", "character": "Lisa", "id": 142375, "credit_id": "52fe479a9251416c7509f6ad", "cast_id": 40, "profile_path": "/iPxcnlMUgfT2bKmVOX4ZtM3WH1u.jpg", "order": 20}, {"name": "Chuck Pacheco", "character": "Hotel Guest at Valet", "id": 52654, "credit_id": "52fe479a9251416c7509f6b1", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Jesse Erwin", "character": "Hotel Valet", "id": 98397, "credit_id": "52fe479a9251416c7509f6b5", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Dan Finnerty", "character": "Wedding Singer", "id": 151121, "credit_id": "52fe479a9251416c7509f6b9", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Keith Lyle", "character": "Casino Dealer", "id": 1265845, "credit_id": "52fe479a9251416c7509f6bd", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Brody Stevens", "character": "Officer Foltz", "id": 142373, "credit_id": "52fe479a9251416c7509f6c1", "cast_id": 45, "profile_path": "/dzypgW3rNwGImzyKeOlZg8Olhwi.jpg", "order": 25}, {"name": "Todd Phillips", "character": "Mr. Creepy", "id": 57130, "credit_id": "52fe479a9251416c7509f6c5", "cast_id": 46, "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "order": 26}, {"name": "Mike Vallely", "character": "Neeco", "id": 558036, "credit_id": "52fe479a9251416c7509f6c9", "cast_id": 47, "profile_path": "/hrty7GRM2pdwrNiMDJaBHk8XRU8.jpg", "order": 27}, {"name": "James Martin Kelly", "character": "Police Clerk", "id": 162849, "credit_id": "52fe479a9251416c7509f6cd", "cast_id": 48, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 28}, {"name": "Murray Gershenz", "character": "Felix", "id": 981814, "credit_id": "52fe479a9251416c7509f6d1", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Andrew Astor", "character": "Eli", "id": 208524, "credit_id": "52fe479a9251416c7509f6d5", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Casey Margolis", "character": "Budnick", "id": 54721, "credit_id": "52fe479a9251416c7509f6d9", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Ken Flaherty", "character": "Old Timer at Gas Station", "id": 1265846, "credit_id": "52fe479b9251416c7509f6dd", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Joe Alexander", "character": "Pit Boss", "id": 1265847, "credit_id": "52fe479b9251416c7509f6e1", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Constance Broge", "character": "Woman in Elevator", "id": 1265848, "credit_id": "52fe479b9251416c7509f6e5", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "Sue Pierce", "character": "Mini-Mart Cashier", "id": 1265849, "credit_id": "52fe479b9251416c7509f6e9", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Floyd Levine", "character": "Tailor", "id": 58927, "credit_id": "52fe479b9251416c7509f6ed", "cast_id": 56, "profile_path": "/qP8m9hTm9DDIslygjManiBqktj8.jpg", "order": 36}, {"name": "Robert A. Ringler", "character": "Minister", "id": 1265850, "credit_id": "52fe479b9251416c7509f6f1", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Britt Barrett", "character": "Bridesmaid", "id": 1265851, "credit_id": "52fe479b9251416c7509f6f5", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Chauntae Davies", "character": "Bridesmaid", "id": 62818, "credit_id": "52fe479b9251416c7509f6f9", "cast_id": 59, "profile_path": "/uMc7qhOQb9Z6KQCrYk9fcs9nkPB.jpg", "order": 39}, {"name": "Alisa Allapach", "character": "Bridesmaid", "id": 1265852, "credit_id": "52fe479b9251416c7509f6fd", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Nicholas Furu", "character": "Stun Gun Boy", "id": 1120016, "credit_id": "52fe479b9251416c7509f701", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Angelica Flameno", "character": "Stun Gun Girl", "id": 1265853, "credit_id": "52fe479b9251416c7509f705", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Lily Winn", "character": "Screaming Girl", "id": 1265854, "credit_id": "52fe479b9251416c7509f709", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Katerina Moutsatsou", "character": "Eddie's Assistant (as Katerina Moutsatsos)", "id": 1265855, "credit_id": "52fe479b9251416c7509f70d", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Faleolo Alailima", "character": "Tyson's Bodyguard", "id": 175174, "credit_id": "52fe479b9251416c7509f711", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Rio Ahn", "character": "Orderly (uncredited)", "id": 66650, "credit_id": "52fe479b9251416c7509f715", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "John Bailey", "character": "Ceasar's Palace Pimp (uncredited)", "id": 567226, "credit_id": "548dc72fc3a36820be003e18", "cast_id": 107, "profile_path": null, "order": 47}, {"name": "Bart Blackburn", "character": "Drunk Casino Patron (uncredited)", "id": 1265856, "credit_id": "52fe479b9251416c7509f71d", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Jordan Bobbitt", "character": "Flower Girl #1 (uncredited)", "id": 1265814, "credit_id": "52fe479b9251416c7509f721", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Guile Branco", "character": "Guest at Casino (uncredited)", "id": 1265857, "credit_id": "52fe479b9251416c7509f725", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Joey Brander", "character": "Student (uncredited)", "id": 208952, "credit_id": "52fe479b9251416c7509f729", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Michael Bravo", "character": "Convenience Store Patron (uncredited)", "id": 1265858, "credit_id": "52fe479b9251416c7509f72d", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Kaitlin Clark", "character": "Girl in Elevator (uncredited)", "id": 1265859, "credit_id": "52fe479b9251416c7509f731", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Natalie Cohen", "character": "Casino Patron #6 (uncredited)", "id": 221942, "credit_id": "52fe479b9251416c7509f735", "cast_id": 74, "profile_path": "/eNg0Zi8eeLJLrfYXMcdQxjDu4fU.jpg", "order": 54}, {"name": "Matthew Corbett Davis", "character": "Blackjack Player (uncredited)", "id": 1265860, "credit_id": "52fe479b9251416c7509f739", "cast_id": 75, "profile_path": null, "order": 55}, {"name": "Cody Deal", "character": "Roman Soldier at Caesar's Palace (uncredited)", "id": 240945, "credit_id": "52fe479b9251416c7509f73d", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "Lanette Fugit", "character": "High Roller (uncredited)", "id": 1017323, "credit_id": "52fe479b9251416c7509f741", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Charlene Geisler", "character": "Katie - Girl in the elevator (uncredited)", "id": 1265861, "credit_id": "52fe479b9251416c7509f745", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "David Hill", "character": "Parent Driving Jaguar (uncredited)", "id": 128971, "credit_id": "52fe479b9251416c7509f749", "cast_id": 79, "profile_path": null, "order": 59}, {"name": "Mitch Holleman", "character": "Max - Student (uncredited)", "id": 1214803, "credit_id": "52fe479b9251416c7509f74d", "cast_id": 80, "profile_path": null, "order": 60}, {"name": "Brian Irvin", "character": "VIP Hotel Guest (uncredited)", "id": 1265864, "credit_id": "52fe479b9251416c7509f751", "cast_id": 81, "profile_path": null, "order": 61}, {"name": "Ty Izquierdo", "character": "Bartender (uncredited)", "id": 1265865, "credit_id": "52fe479b9251416c7509f755", "cast_id": 82, "profile_path": null, "order": 62}, {"name": "Brittani Jenee'", "character": "Bachelorette (uncredited)", "id": 1265866, "credit_id": "52fe479b9251416c7509f759", "cast_id": 83, "profile_path": null, "order": 63}, {"name": "Carrie Keagan", "character": "Casino Guest (uncredited)", "id": 970104, "credit_id": "52fe479b9251416c7509f75d", "cast_id": 84, "profile_path": "/vLYbT8NYY0P3GvqCiSwLVSjqxGZ.jpg", "order": 64}, {"name": "Niko Koshet", "character": "Wedding Guest (uncredited)", "id": 1265867, "credit_id": "52fe479b9251416c7509f761", "cast_id": 85, "profile_path": null, "order": 65}, {"name": "Dov Markowich", "character": "Blackjack Player (uncredited)", "id": 1265868, "credit_id": "52fe479b9251416c7509f765", "cast_id": 86, "profile_path": null, "order": 66}, {"name": "Stephanie Mathis", "character": "Casino Guest (uncredited)", "id": 1265869, "credit_id": "52fe479b9251416c7509f769", "cast_id": 87, "profile_path": null, "order": 67}, {"name": "Anthony Mingilino", "character": "Precision Driver (uncredited)", "id": 1265870, "credit_id": "52fe479b9251416c7509f76d", "cast_id": 88, "profile_path": null, "order": 68}, {"name": "April Montgomery", "character": "Groom's Wedding Guest (uncredited)", "id": 1265871, "credit_id": "52fe479b9251416c7509f771", "cast_id": 89, "profile_path": null, "order": 69}, {"name": "Roy C. Peterson", "character": "Tri Card Player (uncredited)", "id": 1265872, "credit_id": "52fe479b9251416c7509f775", "cast_id": 90, "profile_path": null, "order": 70}, {"name": "Alex Pulido", "character": "Private School Student (uncredited)", "id": 1265873, "credit_id": "52fe479b9251416c7509f779", "cast_id": 91, "profile_path": null, "order": 71}, {"name": "Richard Reid", "character": "Vegas High Roller (uncredited)", "id": 984422, "credit_id": "52fe479b9251416c7509f77d", "cast_id": 92, "profile_path": "/3n8vYYFchIgqwrGbeMTJNGFxs2V.jpg", "order": 72}, {"name": "Joan Riegert", "character": "High Roller Wife (uncredited)", "id": 1265874, "credit_id": "52fe479b9251416c7509f781", "cast_id": 93, "profile_path": null, "order": 73}, {"name": "Rachael Riegert", "character": "Cocktail Waitress (uncredited)", "id": 1265875, "credit_id": "52fe479b9251416c7509f785", "cast_id": 94, "profile_path": null, "order": 74}, {"name": "Michael A. Rizza", "character": "Guy in the elevator (uncredited)", "id": 1265876, "credit_id": "52fe479b9251416c7509f789", "cast_id": 95, "profile_path": null, "order": 75}, {"name": "Heather Roop", "character": "Mom in Elevator (uncredited)", "id": 1172720, "credit_id": "52fe479b9251416c7509f78d", "cast_id": 96, "profile_path": null, "order": 76}, {"name": "Joe Satriani", "character": "Guitarist in Wedding Band (uncredited)", "id": 123476, "credit_id": "52fe479b9251416c7509f791", "cast_id": 97, "profile_path": "/1vPtOl0vj8Yt6woqcsuSUYqWL3.jpg", "order": 77}, {"name": "Fran Severini", "character": "Dancing Grandma (uncredited)", "id": 1265877, "credit_id": "52fe479b9251416c7509f795", "cast_id": 98, "profile_path": null, "order": 78}, {"name": "Jessica Simons", "character": "Casino Guest (uncredited)", "id": 139202, "credit_id": "52fe479b9251416c7509f799", "cast_id": 99, "profile_path": null, "order": 79}, {"name": "Tom Spano", "character": "Casino High Roller (uncredited)", "id": 1063037, "credit_id": "52fe479b9251416c7509f79d", "cast_id": 100, "profile_path": null, "order": 80}, {"name": "Scott 'Carrot Top' Thompson", "character": "Himself (uncredited)", "id": 96010, "credit_id": "52fe479b9251416c7509f7a1", "cast_id": 101, "profile_path": "/qjuUAVQF57M66iuX3GOGFaTlYjp.jpg", "order": 81}, {"name": "Jaira Valenti", "character": "Bartender Hostess (uncredited)", "id": 1265878, "credit_id": "52fe479b9251416c7509f7a5", "cast_id": 102, "profile_path": null, "order": 82}, {"name": "Ryan Van de Kamp Buchanan", "character": "Wedding Waiter (uncredited)", "id": 1265879, "credit_id": "52fe479b9251416c7509f7a9", "cast_id": 103, "profile_path": null, "order": 83}, {"name": "Yvonne Vera", "character": "Extra (uncredited)", "id": 1265880, "credit_id": "52fe479b9251416c7509f7ad", "cast_id": 104, "profile_path": null, "order": 84}, {"name": "Victor Yerrid", "character": "Tiger (uncredited)", "id": 1219668, "credit_id": "52fe479b9251416c7509f7b1", "cast_id": 105, "profile_path": null, "order": 85}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe479a9251416c7509f635", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 6.9, "runtime": 100}, "11323": {"poster_path": "/1Yi0js9ifoe3i5zYTRbbuvvSArH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35424826, "overview": "A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company\u2019s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.", "video": false, "id": 11323, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Informant!", "tagline": "Based on a tattle-tale.", "vote_count": 79, "homepage": "http://theinformantmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1130080", "adult": false, "backdrop_path": "/e7CVA0d35oWcEzOCmw5DFsmnOBp.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2009-09-18", "popularity": 0.663765638251769, "original_title": "The Informant!", "budget": 22000000, "cast": [{"name": "Matt Damon", "character": "Mark Whitacre", "id": 1892, "credit_id": "52fe44269251416c7502a82d", "cast_id": 2, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Melanie Lynskey", "character": "Ginger Whitacre", "id": 15091, "credit_id": "52fe44269251416c7502a831", "cast_id": 3, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 1}, {"name": "Scott Bakula", "character": "Brian Shepard", "id": 2154, "credit_id": "52fe44269251416c7502a835", "cast_id": 4, "profile_path": "/o0lOdRjvFe0DEjquR1miMnjUUzt.jpg", "order": 2}, {"name": "Patton Oswalt", "character": "Ed Herbst", "id": 10872, "credit_id": "52fe44269251416c7502a839", "cast_id": 5, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 3}, {"name": "Joel McHale", "character": "Robert Herndon", "id": 74949, "credit_id": "52fe44269251416c7502a85b", "cast_id": 11, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 4}, {"name": "Ann Dowd", "character": "Kate Medford", "id": 43366, "credit_id": "52fe44269251416c7502a85f", "cast_id": 12, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 5}, {"name": "Tom Papa", "character": "Mick Andreas", "id": 170364, "credit_id": "52fe44269251416c7502a863", "cast_id": 13, "profile_path": "/aWhxq4lUIY8iLVUqYPLhTi7Di4c.jpg", "order": 6}, {"name": "Eddie Jemison", "character": "Kirk Schmidt", "id": 1898, "credit_id": "52fe44269251416c7502a867", "cast_id": 14, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 7}, {"name": "Clancy Brown", "character": "Aubrey Daniel", "id": 6574, "credit_id": "52fe44269251416c7502a86b", "cast_id": 15, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 8}, {"name": "Tony Hale", "character": "James Epstein", "id": 25147, "credit_id": "52fe44269251416c7502a86f", "cast_id": 16, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 9}, {"name": "Dick Smothers", "character": "Judge Harold Baker", "id": 166789, "credit_id": "52fe44269251416c7502a873", "cast_id": 17, "profile_path": "/lwQKlZHqUjJw4JcoxSPeGAUraRV.jpg", "order": 10}, {"name": "Tom Smothers", "character": "Dwayne Andreas", "id": 160263, "credit_id": "52fe44269251416c7502a877", "cast_id": 18, "profile_path": "/ersRQadUTbJvEr1suAvTq4W2Z5L.jpg", "order": 11}, {"name": "Paul F. Tompkins", "character": "Anthony D'Angelo", "id": 1219029, "credit_id": "53353a7bc3a3682a9c004286", "cast_id": 19, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 12}, {"name": "Candy Clark", "character": "Mark Whitacre's Mother", "id": 12407, "credit_id": "54bf3cac9251416e9b008257", "cast_id": 20, "profile_path": "/aQKkCUp3tXxw1Mspz8QOfCRCFy2.jpg", "order": 13}, {"name": "Frank Welker", "character": "Mark Whitacre's Father", "id": 15831, "credit_id": "54bf3cc9c3a3687c40008572", "cast_id": 21, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 14}, {"name": "Andrew Daly", "character": "Marty Allison", "id": 95875, "credit_id": "54bf3d41c3a368142100b152", "cast_id": 22, "profile_path": "/1jUiCZOJOGE1LKBCaeMkrNceSj0.jpg", "order": 15}, {"name": "Thomas F. Wilson", "character": "Mark Cheviron", "id": 1065, "credit_id": "54bf3d8e92514148b000be29", "cast_id": 23, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 16}, {"name": "Rick Overton", "character": "Terry Wilson", "id": 1539, "credit_id": "54bf3db2c3a368145e00ce05", "cast_id": 24, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 17}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe44269251416c7502a829", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.0, "runtime": 108}, "10601": {"poster_path": "/kN9nWy36vyCJyMTRjQPgolxEr8l.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In stifling Edwardian London, Wendy Darling mesmerizes her brothers every night with bedtime tales of swordplay, swashbuckling and the fearsome Captain Hook. But the children become the heroes of an even greater story, when Peter Pan flies into their nursery one night and leads them over moonlit rooftops through a galaxy of stars and to the lush jungles of Neverland.", "video": false, "id": 10601, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Peter Pan", "tagline": "All children grow up except one.", "vote_count": 168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0316396", "adult": false, "backdrop_path": "/ouaMDEeYjwhksfzAWQHqmkuESi9.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Quinta Communications", "id": 6370}, {"name": "Universal Pictures", "id": 33}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2003-12-25", "popularity": 1.19801174143425, "original_title": "Peter Pan", "budget": 100000000, "cast": [{"name": "Jeremy Sumpter", "character": "Peter Pan", "id": 65838, "credit_id": "52fe43919251416c75015729", "cast_id": 1, "profile_path": "/erNaw0imhMzn3OqGcOQPQeQ4RtI.jpg", "order": 0}, {"name": "Jason Isaacs", "character": "Captain Hook, Mr Darling", "id": 11355, "credit_id": "52fe43919251416c7501572d", "cast_id": 2, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 1}, {"name": "Rachel Hurd-Wood", "character": "Wendy Darling", "id": 129050, "credit_id": "53626247c3a3683976001796", "cast_id": 23, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 2}, {"name": "Richard Briers", "character": "Smee", "id": 29859, "credit_id": "536262b70e0a2649b1001a7a", "cast_id": 24, "profile_path": "/gT5VvCAipkqxtCWfRRIaAVNezQh.jpg", "order": 3}, {"name": "Olivia Williams", "character": "Mrs. Darling", "id": 11616, "credit_id": "536263130e0a2649a6001b37", "cast_id": 25, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 4}, {"name": "Ludivine Sagnier", "character": "Tinker Bell", "id": 4390, "credit_id": "5362638b0e0a2620d3000184", "cast_id": 27, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 6}, {"name": "Harry Newell", "character": "John Darling", "id": 1315716, "credit_id": "536263cfc3a368394e0018d6", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Freddie Popplewell", "character": "Michael Darling", "id": 1315717, "credit_id": "536263fdc3a36839760017ae", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Lynn Redgrave", "character": "Aunt Millicent", "id": 29791, "credit_id": "536264440e0a2649b1001a9d", "cast_id": 30, "profile_path": "/jnXKuScyfE4zZ5AqBpmrVBMKeVz.jpg", "order": 9}], "directors": [{"name": "P.J. Hogan", "department": "Directing", "job": "Director", "credit_id": "52fe43919251416c7501578d", "profile_path": "/1ioLJjWkfihb4SllJIh8K9ilyBO.jpg", "id": 3045}], "vote_average": 6.6, "runtime": 113}, "10603": {"poster_path": "/wTvuMi6YlO6bVe2Ax5mEL1dbVYv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Baby George got into a plane crash in a jungle, stayed alive and was adopted by a wise ape. Ursula Stanhope, US noble woman is saved from death on safari by grown-up George, and he takes her to jungle to live with him. He slowly learns a rules of human relationships, while Ursula's lover Lyle is looking for her and the one who took her. After they are found, Ursula takes George to the USA.", "video": false, "id": 10603, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "George of the Jungle", "tagline": "Watch out!", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hUiYlza9hxgAhI203WuzB4HbhDv.jpg", "id": 126221, "name": "George of the Jungle Collection"}, "original_language": "pt", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0119190", "adult": false, "backdrop_path": "/4T2EpBzG4VyqDijObJFjWse8RaH.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1997-07-15", "popularity": 0.876677283675681, "original_title": "George of the Jungle", "budget": 55000000, "cast": [{"name": "Brendan Fraser", "character": "George of the Jungle", "id": 18269, "credit_id": "52fe43919251416c750157db", "cast_id": 5, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Ursula Stanhope", "id": 41087, "credit_id": "52fe43919251416c750157df", "cast_id": 6, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Thomas Haden Church", "character": "Lyle van de Groot", "id": 19159, "credit_id": "52fe43919251416c750157e3", "cast_id": 7, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 2}, {"name": "John Cleese", "character": "An Ape Named 'Ape' (voice)", "id": 8930, "credit_id": "52fe43919251416c750157e7", "cast_id": 8, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 3}, {"name": "Richard Roundtree", "character": "Kwame", "id": 6487, "credit_id": "52fe43919251416c75015815", "cast_id": 16, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 4}, {"name": "Abraham Benrubi", "character": "Thor", "id": 21132, "credit_id": "52fe43919251416c75015819", "cast_id": 17, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 5}, {"name": "Holland Taylor", "character": "Beatrice Stanhope", "id": 11318, "credit_id": "52fe43919251416c7501581d", "cast_id": 18, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 6}, {"name": "John Bennett Perry", "character": "Arthur Stanhope", "id": 20361, "credit_id": "52fe43919251416c75015821", "cast_id": 19, "profile_path": "/bzFhwuXsdZiOHRtBgz4XVELIFYO.jpg", "order": 7}, {"name": "Greg Cruttwell", "character": "Max", "id": 58090, "credit_id": "52fe43919251416c75015825", "cast_id": 20, "profile_path": "/44afCUYh5lG4zDhCPp1uV8Srxuu.jpg", "order": 8}], "directors": [{"name": "Sam Weisman", "department": "Directing", "job": "Director", "credit_id": "52fe43919251416c750157c5", "profile_path": "/xTUHl1nYyGoTqcEfAxuiFq82Xcr.jpg", "id": 54967}], "vote_average": 5.1, "runtime": 92}, "84332": {"poster_path": "/18jsp9dpGnpIluiCLwrFv75pIZR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4007792, "overview": "Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.", "video": false, "id": 84332, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Safety Not Guaranteed", "tagline": "What would you go back for?", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1862079", "adult": false, "backdrop_path": "/bfxgK56UAy45s0yKE0pv2szyg1K.jpg", "production_companies": [{"name": "Big Beach Films", "id": 12808}, {"name": "Duplass Brothers Productions", "id": 1974}], "release_date": "2012-06-08", "popularity": 0.381761197937891, "original_title": "Safety Not Guaranteed", "budget": 750000, "cast": [{"name": "Aubrey Plaza", "character": "Darius Britt", "id": 119592, "credit_id": "52fe48ec9251416c9109ccb1", "cast_id": 1004, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 0}, {"name": "Mark Duplass", "character": "Kenneth Calloway", "id": 45407, "credit_id": "52fe48ec9251416c9109ccb9", "cast_id": 1006, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 1}, {"name": "Jake M. Johnson", "character": "Jeff Schwensen", "id": 543505, "credit_id": "52fe48ec9251416c9109cccd", "cast_id": 1011, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 2}, {"name": "Karan Soni", "character": "Arnau", "id": 1109702, "credit_id": "52fe48ec9251416c9109ccc5", "cast_id": 1009, "profile_path": null, "order": 3}, {"name": "Jenica Bergere", "character": "Liz McHollis", "id": 113818, "credit_id": "52fe48ec9251416c9109ccc1", "cast_id": 1008, "profile_path": null, "order": 4}, {"name": "Kristen Bell", "character": "Belinda", "id": 40462, "credit_id": "52fe48ec9251416c9109ccc9", "cast_id": 1010, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 5}, {"name": "Jeff Garlin", "character": "Mr. Britt", "id": 60074, "credit_id": "52fe48ec9251416c9109ccbd", "cast_id": 1007, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 6}, {"name": "Mary Lynn Rajskub", "character": "Bridget Bay", "id": 25884, "credit_id": "52fe48ec9251416c9109ccb5", "cast_id": 1005, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 7}, {"name": "William Hall Jr.", "character": "Shannon", "id": 5702, "credit_id": "52fe48ec9251416c9109cd3d", "cast_id": 1030, "profile_path": null, "order": 8}, {"name": "Tony Doupe", "character": "Smith (as Tony Doup\u00e9)", "id": 79907, "credit_id": "52fe48ec9251416c9109cd41", "cast_id": 1031, "profile_path": null, "order": 9}, {"name": "Xola Malik", "character": "Jones", "id": 1173424, "credit_id": "52fe48ed9251416c9109cd45", "cast_id": 1032, "profile_path": null, "order": 10}, {"name": "Kimberly Durham", "character": "Linsey", "id": 1173425, "credit_id": "52fe48ed9251416c9109cd49", "cast_id": 1033, "profile_path": null, "order": 11}, {"name": "Grace Arends", "character": "Darcy", "id": 1173426, "credit_id": "52fe48ed9251416c9109cd4d", "cast_id": 1034, "profile_path": null, "order": 12}, {"name": "Scott Swan", "character": "Halloween", "id": 1173427, "credit_id": "52fe48ed9251416c9109cd51", "cast_id": 1035, "profile_path": null, "order": 13}, {"name": "Basil Harris", "character": "Restaurant Manager", "id": 176048, "credit_id": "52fe48ed9251416c9109cd55", "cast_id": 1036, "profile_path": "/syZPH3wa6JzLrvOiPlP0z72ZEW2.jpg", "order": 14}, {"name": "Tom Ricciardelli", "character": "Security Guard", "id": 1173428, "credit_id": "52fe48ed9251416c9109cd59", "cast_id": 1037, "profile_path": null, "order": 15}, {"name": "Lynn Shelton", "character": "Uptight Mom", "id": 90492, "credit_id": "52fe48ed9251416c9109cd5d", "cast_id": 1038, "profile_path": "/rKidRtakuSjXv13CjkYXcOeiKPq.jpg", "order": 16}, {"name": "Eli Borozan", "character": "Kid in Diner", "id": 1173429, "credit_id": "52fe48ed9251416c9109cd61", "cast_id": 1039, "profile_path": null, "order": 17}, {"name": "Alice Hung", "character": "Shift Manager", "id": 1173430, "credit_id": "52fe48ed9251416c9109cd65", "cast_id": 1040, "profile_path": null, "order": 18}], "directors": [{"name": "Colin Trevorrow", "department": "Directing", "job": "Director", "credit_id": "52fe48ec9251416c9109cca7", "profile_path": null, "id": 930707}], "vote_average": 6.7, "runtime": 85}, "149870": {"poster_path": "/3OTcCyf7QbGdVxsS8GLtaSsTZtP.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 134965832, "overview": "The Wind Rises is the 11th animated theatrical film directed by Hayao Miyazaki at Studio Ghibli. Based on Miyazaki\u2019s own manga and the 1937 short novel of the same name by Tatsuo Hori, this is the story of Jir\u014d Horikoshi, the aircraft engineer most remembered for his design work on the Mitsubishi A6M Reisen \u201cZero\u201d, Japan\u2019s famous World War II fighter aircraft. During the WWII years, the Miyazaki family business manufactured aircraft parts, including the windshields and rudders used on the Zero.", "video": false, "id": 149870, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Wind Rises", "tagline": "We must live.", "vote_count": 140, "homepage": "http://www.kazetachinu.jp", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2013293", "adult": false, "backdrop_path": "/cMrvn4Hl0A0NAL61BpDWQIsMsiN.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Studio Ghibli", "id": 10342}], "release_date": "2013-07-20", "popularity": 0.96082646030901, "original_title": "Kaze Tachinu", "budget": 30000000, "cast": [{"name": "Hideaki Anno", "character": "Jir\u00f4 Horikoshi (voice)", "id": 77921, "credit_id": "52fe4bf69251416c75113511", "cast_id": 7, "profile_path": "/sUOFgMAkhn0rROo1nFX4c38tJDQ.jpg", "order": 0}, {"name": "Jun Kunimura", "character": "Hattori (voice)", "id": 2541, "credit_id": "52fe4bf69251416c75113515", "cast_id": 8, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 1}, {"name": "Mirai Shida", "character": "Kayo Horikoshi (voice)", "id": 227611, "credit_id": "52fe4bf69251416c75113519", "cast_id": 9, "profile_path": "/pCS5YQSbXsLmxdPVoD8ngyAMkNl.jpg", "order": 2}, {"name": "Miori Takimoto", "character": "Naoko Satomi (voice)", "id": 227612, "credit_id": "52fe4bf69251416c7511351d", "cast_id": 10, "profile_path": "/lCLY0wEEle6XHONKYeoZVU2NZxj.jpg", "order": 3}, {"name": "Hidetoshi Nishijima", "character": "Honj\u00f4 (voice)", "id": 13250, "credit_id": "52fe4bf69251416c75113521", "cast_id": 11, "profile_path": "/e5F33DjoyFHyGHQnGibiO3VHKoy.jpg", "order": 4}, {"name": "Joseph Gordon-Levitt", "character": "Jir\u00f4 Horikoshi (voice: English version)", "id": 24045, "credit_id": "5534000e9251415291005b40", "cast_id": 69, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 5}, {"name": "John Krasinski", "character": "Honj\u00f4 (voice: English version)", "id": 17697, "credit_id": "5534003fc3a3682226005ed4", "cast_id": 70, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 6}, {"name": "Emily Blunt", "character": "Nahoko Satomi (voice: English version)", "id": 5081, "credit_id": "5534005b92514125dc001ebd", "cast_id": 71, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 7}, {"name": "Martin Short", "character": "Kurokawa (voice: English version)", "id": 519, "credit_id": "55340067c3a368222300588a", "cast_id": 72, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 8}, {"name": "Stanley Tucci", "character": "Caproni (voice: English version)", "id": 2283, "credit_id": "553400ab92514140b5003d1c", "cast_id": 73, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 9}, {"name": "Mandy Patinkin", "character": "Hattori (voice: English version)", "id": 25503, "credit_id": "553400b692514140b5003d1f", "cast_id": 74, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 10}, {"name": "Mae Whitman", "character": "Kayo Horikoshi / Kinu (voice: English version)", "id": 52404, "credit_id": "553400c39251416f88000cd3", "cast_id": 75, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 11}, {"name": "Werner Herzog", "character": "Castorp (voice: English version)", "id": 6818, "credit_id": "553400d0c3a3680bdc000440", "cast_id": 76, "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "order": 12}, {"name": "Jennifer Grey", "character": "Mrs. Kurokawa (voice: English version)", "id": 722, "credit_id": "553400e292514140b5003d27", "cast_id": 77, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 13}, {"name": "William H. Macy", "character": "Satomi (voice: English version)", "id": 3905, "credit_id": "553400eec3a3682dc20006f7", "cast_id": 78, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 14}, {"name": "Zach Callison", "character": "Young Jir\u00f4 (voice: English version)", "id": 225863, "credit_id": "55340119c3a36822190061c9", "cast_id": 79, "profile_path": null, "order": 15}, {"name": "Madeleine Rose Yen", "character": "Young Nahoko (voice: English version)", "id": 1251354, "credit_id": "55340125c3a368523e001ef6", "cast_id": 80, "profile_path": null, "order": 16}, {"name": "Eva Bella", "character": "Young Kayo (voice: English version)", "id": 1207488, "credit_id": "5534012f92514140b5003d2e", "cast_id": 81, "profile_path": "/lKDJgAVwWh8j8K0wk3r5V0axa9Y.jpg", "order": 17}, {"name": "Edie Mirman", "character": "Jir\u00f4's Mother (voice: English version)", "id": 1229809, "credit_id": "5534013bc3a36852de001f14", "cast_id": 82, "profile_path": null, "order": 18}, {"name": "Darren Criss", "character": "Katayama (voice: English version)", "id": 228721, "credit_id": "55340145c3a368523e001efd", "cast_id": 83, "profile_path": "/8Ia3ZJXonTxQEFQvbA1ASMFtjto.jpg", "order": 19}, {"name": "Elijah Wood", "character": "Sone (voice: English version)", "id": 109, "credit_id": "55340152925141675e0001fe", "cast_id": 84, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 20}, {"name": "Ronan Farrow", "character": "Mitsubishi Employee (voice: English version)", "id": 1456640, "credit_id": "5534018ac3a36822190061e3", "cast_id": 85, "profile_path": null, "order": 21}, {"name": "David Cowgill", "character": "Flight Engineer (voice: English version)", "id": 60232, "credit_id": "553401959251415291005b6d", "cast_id": 86, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 22}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe4bf59251416c75113507", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.5, "runtime": 126}, "149871": {"poster_path": "/qiJJQ797PwvUO2FsTh0Axn5srzj.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 24615571, "overview": "Found inside a shining stalk of bamboo by an old bamboo cutter and his wife, a tiny girl grows rapidly into an exquisite young lady. The mysterious young princess enthralls all who encounter her - but ultimately she must confront her fate, the punishment for her crime.", "video": false, "id": 149871, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Tale of the Princess Kaguya", "tagline": "A princess's crime and punishment", "vote_count": 58, "homepage": "http://www.kaguyahime-monogatari.jp/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2576852", "adult": false, "backdrop_path": "/uIhEU2VUVgez3tKyPmMG9pf1q0g.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Walt Disney Studios Home Entertainment", "id": 3202}, {"name": "Toho", "id": 5897}, {"name": "Dentsu", "id": 6452}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "KDDI Corporation", "id": 11848}, {"name": "Mitsubishi Shoji", "id": 20191}, {"name": "Gkids", "id": 32853}], "release_date": "2013-11-23", "popularity": 1.29009158404831, "original_title": "Kaguya Hime no Monogatari", "budget": 49300000, "cast": [{"name": "Aki Asakura", "character": "Princess Kaguya (voice)", "id": 1115687, "credit_id": "54444c640e0a2663360060b8", "cast_id": 5, "profile_path": "/jiyJJzRm6vQDbSMp288GL3mtua6.jpg", "order": 1}, {"name": "Kengo Kora", "character": "Sutemaru (voice)", "id": 120690, "credit_id": "54444d0ac3a3683df2005e55", "cast_id": 6, "profile_path": "/z7lrLbWz8qgdPA3x3wJcQuSFwwk.jpg", "order": 2}, {"name": "Nobuko Miyamoto", "character": "The Bamboo Cutter's Wife (voice)", "id": 70627, "credit_id": "54444d5a0e0a26634d005d20", "cast_id": 8, "profile_path": "/87cCQByNL6oQ6nYMJpthhKXIWo.jpg", "order": 4}, {"name": "Atsuko Takahata", "character": "Lady Sagami (voice)", "id": 90570, "credit_id": "54444d9bc3a3683e01005d6f", "cast_id": 9, "profile_path": "/oOm9afBtARBzKsQBnsRzpZF8gE6.jpg", "order": 5}, {"name": "Tomoko Tabata", "character": "Menowarawa (voice)", "id": 148286, "credit_id": "54444df70e0a2663330061c9", "cast_id": 10, "profile_path": "/fa4J2s9lXGI48yzB41Eqqx8lHYX.jpg", "order": 6}, {"name": "Hidetoshi Nishijima", "character": "The Minister of Culture (voice)", "id": 13250, "credit_id": "5444522ec3a3683df7005e33", "cast_id": 18, "profile_path": "/e5F33DjoyFHyGHQnGibiO3VHKoy.jpg", "order": 14}, {"name": "Chlo\u00eb Grace Moretz", "character": "Princess Kaguya (voice)", "id": 56734, "credit_id": "544452610e0a266336006192", "cast_id": 19, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 15}, {"name": "Darren Criss", "character": "Sutemaru (voice)", "id": 228721, "credit_id": "54445274c3a3683df2005f2a", "cast_id": 20, "profile_path": "/8Ia3ZJXonTxQEFQvbA1ASMFtjto.jpg", "order": 16}, {"name": "James Caan", "character": "The Bamboo Cutter (voice)", "id": 3085, "credit_id": "544452860e0a26633a006099", "cast_id": 21, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 17}, {"name": "Mary Steenburgen", "character": "The Bamboo Cutter's Wife (voice)", "id": 2453, "credit_id": "5444529f0e0a26632d005eb2", "cast_id": 22, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 18}, {"name": "Lucy Liu", "character": "Lady Sagami (voice)", "id": 140, "credit_id": "544452afc3a36848940001a6", "cast_id": 23, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 19}, {"name": "Hynden Walch", "character": "Menowarawa (voice)", "id": 113919, "credit_id": "544452d1c3a3683e05005df4", "cast_id": 24, "profile_path": "/gCHMyVwt2vlQt3AYPfoknVmklXI.jpg", "order": 20}, {"name": "George Segal", "character": "Inventory of Akita (voice)", "id": 18364, "credit_id": "544452f60e0a26634d005e02", "cast_id": 25, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 21}, {"name": "James Marsden", "character": "Prince Ishitsukuri (voice)", "id": 11006, "credit_id": "544453550e0a26633d006058", "cast_id": 26, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 22}, {"name": "Dean Cain", "character": "The Mikado (voice)", "id": 21721, "credit_id": "5444536b0e0a26633a0060d2", "cast_id": 27, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 23}, {"name": "Beau Bridges", "character": "Prince Kuramochi (voice)", "id": 2222, "credit_id": "5444538dc3a3683e0e005ea7", "cast_id": 28, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 24}, {"name": "Oliver Platt", "character": "The Minister of Finance (voice)", "id": 17485, "credit_id": "544453dcc3a36819fb0000a2", "cast_id": 30, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 26}, {"name": "Daniel Dae Kim", "character": "The Minister of the Military (voice)", "id": 18307, "credit_id": "544454040e0a26634d005e3d", "cast_id": 31, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 27}, {"name": "John Cho", "character": "The Minister of Culture (voice)", "id": 68842, "credit_id": "544454200e0a26632d005f02", "cast_id": 32, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 28}, {"name": "Takaya Kamikawa", "character": "", "id": 1248335, "credit_id": "54a1e15a925141190d0021fc", "cast_id": 41, "profile_path": null, "order": 29}], "directors": [{"name": "Isao Takahata", "department": "Directing", "job": "Director", "credit_id": "52fe4bf69251416c75113549", "profile_path": "/okibTp5aDbYfATefDQjxU5Owsoz.jpg", "id": 628}], "vote_average": 8.3, "runtime": 137}, "10610": {"poster_path": "/5JDLNIxaKd96vq43qY5KmiSkycR.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.", "video": false, "id": 10610, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Medallion", "tagline": "", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0288045", "adult": false, "backdrop_path": "/3xUXBdbHA0NBTs09mlfmWV5i05O.jpg", "production_companies": [{"name": "Screen Gems, Inc.", "id": 127}], "release_date": "2003-08-15", "popularity": 0.775953974928944, "original_title": "The Medallion", "budget": 41000000, "cast": [{"name": "Jackie Chan", "character": "Eddie Yang", "id": 18897, "credit_id": "52fe43939251416c75015b9d", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Lee Evans", "character": "Arthur Watson", "id": 7400, "credit_id": "52fe43939251416c75015ba1", "cast_id": 2, "profile_path": "/oMMGnjjU9bPxtaS4swZ4dxkifwX.jpg", "order": 1}, {"name": "Claire Forlani", "character": "Nicole James", "id": 4174, "credit_id": "52fe43939251416c75015ba5", "cast_id": 3, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 2}, {"name": "Julian Sands", "character": "Snakehead", "id": 6104, "credit_id": "52fe43939251416c75015ba9", "cast_id": 4, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "Cmdr. Hammerstock-Smythe", "id": 655, "credit_id": "52fe43939251416c75015bad", "cast_id": 5, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Carl Ng", "character": "Interpol officer in van", "id": 137146, "credit_id": "53053b8c925141348e06089e", "cast_id": 23, "profile_path": "/73qKbSPCjiCPWrTLdcjRxv9XOVT.jpg", "order": 5}], "directors": [{"name": "Gordon Chan", "department": "Directing", "job": "Director", "credit_id": "52fe43939251416c75015bfb", "profile_path": "/loFRCbxYk5Mt6of9jAXVEtaAyZJ.jpg", "id": 64901}], "vote_average": 5.7, "runtime": 88}, "84348": {"poster_path": "/yo49x6Jhr1ecCjy1ByFqwAbtARJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a group of misfits is hired by an unknown third party to burglarize a desolate house and acquire a rare VHS tape, they discover more found footage than they bargained for.", "video": false, "id": 84348, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "V/H/S", "tagline": "This collection is killer.", "vote_count": 114, "homepage": "http://www.magnetreleasing.com/vhs/", "belongs_to_collection": {"backdrop_path": "/wSdVm0uxEvYlwMxOAhipUUzey4w.jpg", "poster_path": "/esfk62fcqTWqB90dAHaVMbDWmbM.jpg", "id": 207621, "name": "V/H/S Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2105044", "adult": false, "backdrop_path": "/wSdVm0uxEvYlwMxOAhipUUzey4w.jpg", "production_companies": [{"name": "The Collective", "id": 15156}, {"name": "Bloody Disgusting", "id": 15157}, {"name": "8383 Productions", "id": 15158}], "release_date": "2012-10-05", "popularity": 0.460854790159405, "original_title": "V/H/S", "budget": 0, "cast": [{"name": "Calvin Reeder", "character": "Gary", "id": 928453, "credit_id": "52fe48ee9251416c9109d0eb", "cast_id": 1, "profile_path": "/7ObgJKGeseLITNYuyUcuLCpGDEz.jpg", "order": 0}, {"name": "Lane Hughes", "character": "Zak", "id": 98632, "credit_id": "52fe48ee9251416c9109d0ef", "cast_id": 2, "profile_path": "/hKFtJDPxt7KAmuxZlsIU1XasE1f.jpg", "order": 1}, {"name": "Adam Wingard", "character": "Rock", "id": 98631, "credit_id": "52fe48ee9251416c9109d13b", "cast_id": 16, "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "order": 2}, {"name": "Hannah Fierman", "character": "Lily", "id": 111692, "credit_id": "52fe48ee9251416c9109d13f", "cast_id": 17, "profile_path": "/jw6o8TaCoVpp5wX7wzvAi3HjunX.jpg", "order": 3}, {"name": "Mike Donlan", "character": "Shane", "id": 1039531, "credit_id": "52fe48ee9251416c9109d143", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Joe Sykes", "character": "Patrick", "id": 1039532, "credit_id": "52fe48ee9251416c9109d147", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Drew Sawyer", "character": "Clint", "id": 1039533, "credit_id": "52fe48ee9251416c9109d14b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Jas Sams", "character": "Lisa", "id": 1039534, "credit_id": "52fe48ee9251416c9109d14f", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Joe Swanberg", "character": "Sam", "id": 40863, "credit_id": "52fe48ee9251416c9109d153", "cast_id": 22, "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "order": 8}, {"name": "Sophia Takal", "character": "Stephanie", "id": 1031943, "credit_id": "52fe48ee9251416c9109d175", "cast_id": 28, "profile_path": "/3ypOZqKk9RZklpU1RQnKmwUlyLL.jpg", "order": 9}, {"name": "Kate Lyn Sheil", "character": "The Stalker", "id": 582722, "credit_id": "52fe48ef9251416c9109d179", "cast_id": 29, "profile_path": "/mQYnmIY2gGOOKaCxoxKzUue1E9u.jpg", "order": 10}, {"name": "Drew Moerlein", "character": "Joey Brenner", "id": 1090686, "credit_id": "52fe48ef9251416c9109d17d", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Jason Yachanin", "character": "Spider", "id": 81577, "credit_id": "52fe48ef9251416c9109d181", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Helen Rogers", "character": "Emily", "id": 1090687, "credit_id": "52fe48ef9251416c9109d185", "cast_id": 32, "profile_path": "/sm4uIAGTyaFSs5TF068848umsoy.jpg", "order": 13}, {"name": "Chad Villella", "character": "Chad", "id": 1039529, "credit_id": "52fe48ef9251416c9109d189", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Matt Bettinelli-Olpin", "character": "Matt", "id": 66681, "credit_id": "52fe48ef9251416c9109d18d", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Tyler Gillett", "character": "Tyler", "id": 1039527, "credit_id": "52fe48ef9251416c9109d191", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Paul Natonek", "character": "Paul", "id": 1090688, "credit_id": "52fe48ef9251416c9109d195", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Nicholas Tecosky", "character": "Bartender", "id": 1061519, "credit_id": "52fe48ef9251416c9109d199", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Nicole Erb", "character": "The Girl", "id": 1090689, "credit_id": "52fe48ef9251416c9109d19d", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "John Walcutt", "character": "Cult Leader", "id": 131833, "credit_id": "52fe48ef9251416c9109d1a1", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Bilal Mir", "character": "Cult Dude", "id": 1090690, "credit_id": "52fe48ef9251416c9109d1a5", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Damion Stephens", "character": "Cult Dude", "id": 1090691, "credit_id": "52fe48ef9251416c9109d1a9", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Koz McRae", "character": "Cult Dude", "id": 1090692, "credit_id": "52fe48ef9251416c9109d1ad", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Eric Curtis", "character": "Eric", "id": 1090693, "credit_id": "52fe48ef9251416c9109d1b1", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Nicole Boccumini", "character": "Niky", "id": 1090694, "credit_id": "52fe48ef9251416c9109d1b5", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Lisa Marie Thomas", "character": "Lisa's Friend", "id": 1090695, "credit_id": "52fe48ef9251416c9109d1b9", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Melinda Fleming", "character": "Melinda", "id": 1090696, "credit_id": "52fe48ef9251416c9109d1bd", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Rob Mosca", "character": "Bouncer", "id": 1090697, "credit_id": "52fe48ef9251416c9109d1c1", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Kentucker Audley", "character": "", "id": 107766, "credit_id": "52fe48ef9251416c9109d1cb", "cast_id": 49, "profile_path": "/oFeyT31aUrh9GHzsjLuvm713lyl.jpg", "order": 29}], "directors": [{"name": "Matt Bettinelli-Olpin", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d0f5", "profile_path": null, "id": 66681}, {"name": "David Bruckner", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d0fb", "profile_path": "/ogcp72B4ry8Rtbj8trpsplHBz7W.jpg", "id": 141962}, {"name": "Tyler Gillett", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d101", "profile_path": null, "id": 1039527}, {"name": "Justin Martinez", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d107", "profile_path": null, "id": 1039528}, {"name": "Glenn McQuaid", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d10d", "profile_path": null, "id": 88556}, {"name": "Joe Swanberg", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d113", "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "id": 40863}, {"name": "Chad Villella", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d119", "profile_path": null, "id": 1039529}, {"name": "Ti West", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d11f", "profile_path": "/vRxN4eGT6X5MMdjpExZ0YvjDeg9.jpg", "id": 101542}, {"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d125", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}], "vote_average": 5.8, "runtime": 116}, "10623": {"poster_path": "/6wIVys3Ixd0saAOPo2msQzgrSbC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56489558, "overview": "Gang leader Tony pulls off a major diamond heist with his crew, but cop-turned-criminal Ling knows who has the loot and responds by kidnapping Tony's daughter and holding her for ransom. Unfortunately, Tony's lost the diamonds as well. As he frantically searches for his daughter and the jewels, Tony pairs with a high-kicking government agent who once worked with Ling and seeks revenge on him.", "video": false, "id": 10623, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Cradle 2 the Grave", "tagline": "Mortal enemies make dangerous friends.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0306685", "adult": false, "backdrop_path": "/1SWYvFhQvAEI3CkbxQOg3VTqjlp.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}], "release_date": "2003-02-28", "popularity": 0.625968912346929, "original_title": "Cradle 2 the Grave", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Su", "id": 1336, "credit_id": "52fe43979251416c75016571", "cast_id": 9, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "DMX", "character": "Anthony Fait", "id": 21355, "credit_id": "52fe43979251416c75016575", "cast_id": 10, "profile_path": "/eoAfTjFs6SiXGBmdlfasb0J9fHw.jpg", "order": 1}, {"name": "Kelly Hu", "character": "Sona", "id": 11024, "credit_id": "52fe43979251416c75016579", "cast_id": 11, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 2}, {"name": "Anthony Anderson", "character": "Tommy", "id": 18471, "credit_id": "52fe43979251416c7501657d", "cast_id": 12, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 3}, {"name": "Tom Arnold", "character": "Archie", "id": 74036, "credit_id": "52fe43979251416c75016581", "cast_id": 13, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 4}, {"name": "Mark Dacascos", "character": "Yao Ling", "id": 18702, "credit_id": "52fe43979251416c75016585", "cast_id": 14, "profile_path": "/rg28gJ7hVgoKehCIzA7sf4dDuRN.jpg", "order": 5}, {"name": "Gabrielle Union", "character": "Daria", "id": 17773, "credit_id": "52fe43979251416c75016589", "cast_id": 15, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 6}, {"name": "Johnny Tri Nguyen", "character": "Ling's Hitman", "id": 127451, "credit_id": "52fe43979251416c7501658d", "cast_id": 16, "profile_path": "/oEw80HIGhs9ORBUMAhLab49bxFg.jpg", "order": 7}], "directors": [{"name": "Andrzej Bartkowiak", "department": "Directing", "job": "Director", "credit_id": "52fe43969251416c75016543", "profile_path": "/taaHl0nMtXgKTx8YbeQoJCuO5Ac.jpg", "id": 10765}], "vote_average": 6.3, "runtime": 101}, "10625": {"poster_path": "/lDlGPZS0UJYKxVlpyff3BMyPc2H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129042871, "overview": "Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.", "video": false, "id": 10625, "genres": [{"id": 35, "name": "Comedy"}], "title": "Mean Girls", "tagline": "Welcome to girl world.", "vote_count": 382, "homepage": "http://www.meangirls.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/9XoyvX5uWQRoiz9IodCgUoXLw2V.jpg", "id": 99606, "name": "Mean Girls Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377092", "adult": false, "backdrop_path": "/mysdd7fPyvhPdlOLgeruv4J2olB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-04-30", "popularity": 1.20633234892977, "original_title": "Mean Girls", "budget": 17000000, "cast": [{"name": "Lindsay Lohan", "character": "Cady Heron", "id": 49265, "credit_id": "52fe43979251416c7501664b", "cast_id": 9, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Regina George", "id": 53714, "credit_id": "52fe43979251416c7501664f", "cast_id": 10, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Lacey Chabert", "character": "Gretchen Wieners", "id": 22082, "credit_id": "52fe43979251416c7501665b", "cast_id": 13, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Karen Smith", "id": 71070, "credit_id": "52fe43979251416c7501665f", "cast_id": 14, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Tina Fey", "character": "Ms. Norbury", "id": 56323, "credit_id": "52fe43979251416c75016653", "cast_id": 11, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 4}, {"name": "Tim Meadows", "character": "Mr. Duvall", "id": 51857, "credit_id": "52fe43979251416c75016657", "cast_id": 12, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 5}, {"name": "Lizzy Caplan", "character": "Janis Ian", "id": 51988, "credit_id": "52fe43979251416c75016663", "cast_id": 15, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 6}, {"name": "Amy Poehler", "character": "Mrs. George", "id": 56322, "credit_id": "52fe43979251416c7501666d", "cast_id": 17, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 7}, {"name": "Daniel Franzese", "character": "Damian", "id": 32598, "credit_id": "52fe43979251416c75016671", "cast_id": 18, "profile_path": "/6KzFC4ypjbKcgoRKo4Bi1IWq1rK.jpg", "order": 8}, {"name": "Ana Gasteyer", "character": "Cady's mom", "id": 86267, "credit_id": "52fe43979251416c75016675", "cast_id": 19, "profile_path": "/8Gp1zad6m0QBpqP7wgIah1Ka1l3.jpg", "order": 9}, {"name": "Jonathan Bennett", "character": "Aaron Samuels", "id": 76996, "credit_id": "547fa0d9c3a36829b500028c", "cast_id": 20, "profile_path": "/7IdoFyD20nGmfb1eh8AW71htRJM.jpg", "order": 10}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe43979251416c7501661d", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 6.8, "runtime": 97}, "76163": {"poster_path": "/dJPnTe1qOcO7XqsJvESFph83m6m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 312573423, "overview": "Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.", "video": false, "id": 76163, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Expendables 2", "tagline": "Back for War.", "vote_count": 1656, "homepage": "http://theexpendables2film.com/", "belongs_to_collection": {"backdrop_path": "/lA7oDSt6LkyDqtbFGbyuG0afmTI.jpg", "poster_path": "/mpzHpaXjBc7bHAhwcerIznnq9qV.jpg", "id": 126125, "name": "The Expendables Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1764651", "adult": false, "backdrop_path": "/xCfHomVxzeAmbZlbiZbpp2igIsl.jpg", "production_companies": [{"name": "Nu Image Films", "id": 925}, {"name": "Millennium Films", "id": 10254}], "release_date": "2012-08-17", "popularity": 1.54951916239655, "original_title": "The Expendables 2", "budget": 100000000, "cast": [{"name": "Sylvester Stallone", "character": "Barney Ross", "id": 16483, "credit_id": "52fe4929c3a368484e11d755", "cast_id": 2, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Jason Statham", "character": "Lee Christmas", "id": 976, "credit_id": "52fe4929c3a368484e11d76d", "cast_id": 8, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Dolph Lundgren", "character": "Gunnar Jensen", "id": 16644, "credit_id": "52fe4929c3a368484e11d775", "cast_id": 10, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 2}, {"name": "Bruce Willis", "character": "Church", "id": 62, "credit_id": "52fe4929c3a368484e11d759", "cast_id": 3, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 3}, {"name": "Arnold Schwarzenegger", "character": "Trench", "id": 1100, "credit_id": "52fe4929c3a368484e11d75d", "cast_id": 4, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 4}, {"name": "Jean-Claude Van Damme", "character": "Vilain", "id": 15111, "credit_id": "52fe4929c3a368484e11d761", "cast_id": 5, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 5}, {"name": "Chuck Norris", "character": "Booker", "id": 51576, "credit_id": "52fe4929c3a368484e11d765", "cast_id": 6, "profile_path": "/v37EfVIoKV4ooy1KE5z8BxsT6wU.jpg", "order": 6}, {"name": "Scott Adkins", "character": "Hector", "id": 78110, "credit_id": "52fe4929c3a368484e11d769", "cast_id": 7, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 7}, {"name": "Liam Hemsworth", "character": "Billy", "id": 96066, "credit_id": "52fe4929c3a368484e11d771", "cast_id": 9, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 8}, {"name": "Jet Li", "character": "Yin Yang", "id": 1336, "credit_id": "52fe4929c3a368484e11d779", "cast_id": 11, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 9}, {"name": "Randy Couture", "character": "Toll Road", "id": 74748, "credit_id": "52fe4929c3a368484e11d77d", "cast_id": 12, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 10}, {"name": "Terry Crews", "character": "Hale Caesar", "id": 53256, "credit_id": "52fe4929c3a368484e11d781", "cast_id": 13, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 11}, {"name": "Charisma Carpenter", "character": "Lacy", "id": 126502, "credit_id": "52fe492ac3a368484e11d785", "cast_id": 14, "profile_path": "/y5PFIcVmgycJWzwp4VcaZIOqVY2.jpg", "order": 12}, {"name": "Nikolette Noel", "character": "Billy's Wife", "id": 934869, "credit_id": "52fe492ac3a368484e11d789", "cast_id": 15, "profile_path": "/3HjH0jkOcKuIfFiYxPkaU6M73TR.jpg", "order": 13}, {"name": "Nan Yu", "character": "Maggie", "id": 27084, "credit_id": "52fe492ac3a368484e11d78d", "cast_id": 16, "profile_path": "/xKWnjXyp5wb6HVbj5CbY7gywLTL.jpg", "order": 14}, {"name": "Amanda Ooms", "character": "Pilar", "id": 46128, "credit_id": "52fe492ac3a368484e11d791", "cast_id": 17, "profile_path": "/wRM8rypHbumz7RkUigR6ASdKpPc.jpg", "order": 15}, {"name": "George Zlatarev", "character": "Bojan", "id": 67246, "credit_id": "52fe492ac3a368484e11d795", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe4929c3a368484e11d751", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.9, "runtime": 103}, "18823": {"poster_path": "/n8W2Y72VzSi8Yz6IvYWwfoiMTS6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 232713139, "overview": "Born of a god but raised as a man, Perseus is helpless to save his family from Hades, vengeful god of the underworld. With nothing to lose, Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts, Perseus and his warriors will only survive if Perseus accepts his power as a god, defies fate and creates his own destiny.", "video": false, "id": 18823, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Clash of the Titans", "tagline": "Titans will clash.", "vote_count": 992, "homepage": "http://www.clash-of-the-titans.com/", "belongs_to_collection": {"backdrop_path": "/Awy2ye1yJ75ukpDP0qtOx0r7Eng.jpg", "poster_path": "/3TXIuCHr2m9oZcLJOc5qo9o5WsT.jpg", "id": 86780, "name": "Clash of the Titans Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800320", "adult": false, "backdrop_path": "/ma5Ps40txofscTtWpjs39swMnwZ.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "The Zanuck Company", "id": 80}, {"name": "Legendary Pictures", "id": 923}, {"name": "Thunder Road Pictures", "id": 3528}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2010-04-02", "popularity": 1.48708694239058, "original_title": "Clash of the Titans", "budget": 125000000, "cast": [{"name": "Sam Worthington", "character": "Perseus", "id": 65731, "credit_id": "52fe479e9251416c7509fe41", "cast_id": 1, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Hades", "id": 5469, "credit_id": "52fe479e9251416c7509fe45", "cast_id": 3, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Gemma Arterton", "character": "Io", "id": 59620, "credit_id": "52fe479e9251416c7509fe95", "cast_id": 17, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 2}, {"name": "Jason Flemyng", "character": "Calibos / Acrisius", "id": 973, "credit_id": "52fe479e9251416c7509fe91", "cast_id": 16, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 3}, {"name": "Alexa Davalos", "character": "Andromeda", "id": 28109, "credit_id": "52fe479e9251416c7509fe99", "cast_id": 18, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 4}, {"name": "Tine Stapelfeldt", "character": "Danae", "id": 114018, "credit_id": "52fe479e9251416c7509fe9d", "cast_id": 19, "profile_path": "/t9Q5Hwaeh8kbYapEGISrpZgVWks.jpg", "order": 5}, {"name": "Mads Mikkelsen", "character": "Draco", "id": 1019, "credit_id": "52fe479e9251416c7509fea1", "cast_id": 20, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 6}, {"name": "Luke Evans", "character": "Apollo", "id": 114019, "credit_id": "52fe479e9251416c7509fea5", "cast_id": 21, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 7}, {"name": "Izabella Miko", "character": "Athena", "id": 59592, "credit_id": "52fe479e9251416c7509fea9", "cast_id": 22, "profile_path": "/y17WPWE0tOFroVttwayzU3Q2Mxb.jpg", "order": 8}, {"name": "Liam Neeson", "character": "Zeus", "id": 3896, "credit_id": "52fe479e9251416c7509fead", "cast_id": 23, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 9}, {"name": "Agyness Deyn", "character": "Aphrodite", "id": 1060671, "credit_id": "52fe479e9251416c7509feb1", "cast_id": 24, "profile_path": "/7c3mQs3cfEhgrcYZBrIIGbJZ21V.jpg", "order": 10}, {"name": "Kaya Scodelario", "character": "Peshet", "id": 115150, "credit_id": "52fe479e9251416c7509feb5", "cast_id": 25, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 11}, {"name": "Nathalie Cox", "character": "Artemis", "id": 17337, "credit_id": "52fe479e9251416c7509feb9", "cast_id": 26, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 12}, {"name": "Pete Postlethwaite", "character": "Spyros", "id": 4935, "credit_id": "52fe479e9251416c7509fedb", "cast_id": 32, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 13}, {"name": "Polly Walker", "character": "Cassiopeia", "id": 6416, "credit_id": "52fe479e9251416c7509fedf", "cast_id": 33, "profile_path": "/swfioO83iyf5aB2svD0tgIWlCSr.jpg", "order": 14}, {"name": "Ashraf Barhom", "character": "Ozal", "id": 766, "credit_id": "52fe479e9251416c7509fee3", "cast_id": 34, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 15}, {"name": "Elizabeth McGovern", "character": "Marmara", "id": 4513, "credit_id": "52fe479e9251416c7509fee7", "cast_id": 35, "profile_path": "/oECBsmiZ8OWxm6iQCV5o0eViLRg.jpg", "order": 16}, {"name": "Nicholas Hoult", "character": "Eusebios", "id": 3292, "credit_id": "52fe479e9251416c7509feeb", "cast_id": 36, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 17}, {"name": "Liam Cunningham", "character": "Solon", "id": 15498, "credit_id": "52fe479f9251416c7509feef", "cast_id": 37, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 18}, {"name": "Hans Matheson", "character": "Ixas", "id": 37168, "credit_id": "52fe479f9251416c7509fef3", "cast_id": 38, "profile_path": "/4MQAI6g3AabzUDm29UbadjjWteL.jpg", "order": 19}, {"name": "Vincent Regan", "character": "Kepheus", "id": 9831, "credit_id": "52fe479f9251416c7509fef7", "cast_id": 39, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 20}, {"name": "Alexander Siddig", "character": "Hermes", "id": 2957, "credit_id": "52fe479f9251416c7509fefb", "cast_id": 40, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 21}, {"name": "Luke Treadaway", "character": "Prokopion", "id": 103351, "credit_id": "52fe479f9251416c7509feff", "cast_id": 41, "profile_path": "/uSROaOirY0WIBhz9fuIcroK1gA2.jpg", "order": 22}, {"name": "Mouloud Achour", "character": "Kucuk", "id": 78225, "credit_id": "52fe479f9251416c7509ff03", "cast_id": 42, "profile_path": "/oNsblO8sTFRuQ5pR8kgVYjEPovr.jpg", "order": 23}, {"name": "Ian Whyte", "character": "Sheikh Sulieman", "id": 946696, "credit_id": "52fe479f9251416c7509ff07", "cast_id": 43, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 24}, {"name": "Katherine Loeppky", "character": "Aged Cassiopeia", "id": 969143, "credit_id": "52fe479f9251416c7509ff0b", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Danny Huston", "character": "Poseidon", "id": 6413, "credit_id": "52fe479f9251416c7509ff0f", "cast_id": 45, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 26}, {"name": "Phil McKee", "character": "Harbourmaster", "id": 231272, "credit_id": "53b013d70e0a26598900624e", "cast_id": 85, "profile_path": null, "order": 27}, {"name": "Laura Kachergus", "character": "Citizen (Argos)", "id": 45840, "credit_id": "53b014190e0a265989006256", "cast_id": 86, "profile_path": null, "order": 28}, {"name": "David Kennedy", "character": "Kepheus' General", "id": 62498, "credit_id": "53b014500e0a26597d006305", "cast_id": 87, "profile_path": "/refiQ4V3hLc9xzBwCbemVrXXpNB.jpg", "order": 29}, {"name": "Nina Young", "character": "Hera", "id": 58778, "credit_id": "53b014860e0a265986006137", "cast_id": 88, "profile_path": null, "order": 30}, {"name": "Jane March", "character": "Hestia", "id": 21817, "credit_id": "53b014f80e0a2659830061e5", "cast_id": 89, "profile_path": "/H7RsKkIJbgxoY4t8ia6JSJB7bG.jpg", "order": 31}, {"name": "Natalia Vodianova", "character": "Medusa", "id": 1105030, "credit_id": "53b015c9c3a3682edb004eef", "cast_id": 90, "profile_path": "/bJR63E2QUSwQRvDzwDGojrcmeb1.jpg", "order": 32}, {"name": "Charlotte Comer", "character": "Demeter", "id": 181045, "credit_id": "53b015f7c3a3682ed8004d10", "cast_id": 91, "profile_path": null, "order": 33}, {"name": "Rory McCann", "character": "Bello", "id": 3075, "credit_id": "546eb798c3a3682fad000b9a", "cast_id": 92, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 34}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe479e9251416c7509fe4b", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 5.6, "runtime": 106}, "10634": {"poster_path": "/A66Lze4KZb1fgBkB2blv1a4XwDP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28215918, "overview": "Craig and Smokey are two guys in Los Angeles hanging out on their porch on a Friday afternoon, smoking and drinking, looking for something to do. Encounters with neighbors and other friends over the course of the day and night, and their ensuing antics, make up the rest of the movie.", "video": false, "id": 10634, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Friday", "tagline": "A lot can go down between thursday and saturday...", "vote_count": 152, "homepage": "http://www.newline.com/properties/friday.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dWh1Fohgx07AEd4vRUwgIj8BYxD.jpg", "id": 43563, "name": "Friday Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113118", "adult": false, "backdrop_path": "/isWyP4jWmcCHjUcanVwGBDwVSsA.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1995-04-26", "popularity": 0.831743840973857, "original_title": "Friday", "budget": 3500000, "cast": [{"name": "Ice Cube", "character": "Craig Jones", "id": 9778, "credit_id": "52fe43999251416c75016ac3", "cast_id": 1, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Chris Tucker", "character": "Smokey", "id": 66, "credit_id": "52fe43999251416c75016ac7", "cast_id": 2, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 1}, {"name": "Nia Long", "character": "Debbie", "id": 9781, "credit_id": "52fe43999251416c75016acb", "cast_id": 3, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 2}, {"name": "Tommy Lister", "character": "Deebo", "id": 8396, "credit_id": "52fe43999251416c75016acf", "cast_id": 4, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 3}, {"name": "John Witherspoon", "character": "Mr. Jones", "id": 56902, "credit_id": "52fe43999251416c75016af1", "cast_id": 10, "profile_path": "/quHpadwIQIQQZdFDoYKoGFhPXnH.jpg", "order": 4}, {"name": "Anna Maria Horsford", "character": "Mrs. Jones", "id": 54800, "credit_id": "52fe43999251416c75016af5", "cast_id": 11, "profile_path": "/l2WIo8fAWrksNIBO6tzhFkN23Cb.jpg", "order": 5}, {"name": "Regina King", "character": "Dana Jones", "id": 9788, "credit_id": "52fe43999251416c75016af9", "cast_id": 12, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 6}, {"name": "Paula Jai Parker", "character": "Joi", "id": 45245, "credit_id": "52fe43999251416c75016afd", "cast_id": 13, "profile_path": "/hCFVh90DDs7bhv6qEhepXeJvFtY.jpg", "order": 7}, {"name": "Faizon Love", "character": "Big Worm", "id": 62066, "credit_id": "52fe43999251416c75016b01", "cast_id": 14, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 8}, {"name": "DJ Pooh", "character": "Red", "id": 65134, "credit_id": "52fe43999251416c75016b05", "cast_id": 15, "profile_path": "/rdhmGM82GL5er2N2YmwRPVQxD9U.jpg", "order": 9}, {"name": "Tony Cox", "character": "Mr. Parker", "id": 19754, "credit_id": "52fe43999251416c75016b09", "cast_id": 16, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 10}, {"name": "Anthony Johnson", "character": "Ezal", "id": 83101, "credit_id": "52fe43999251416c75016b0d", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Bernie Mac", "character": "Pastor Clever", "id": 1897, "credit_id": "52fe43999251416c75016b11", "cast_id": 18, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 12}, {"name": "Meagan Good", "character": "Kid #2", "id": 22122, "credit_id": "52fe43999251416c75016b15", "cast_id": 19, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 13}, {"name": "Terri J. Vaughn", "character": "China", "id": 74613, "credit_id": "52fe43999251416c75016b19", "cast_id": 20, "profile_path": "/xCwMcIi9qBPzU0w7pu2c9OP1Igu.jpg", "order": 14}, {"name": "F. Gary Gray", "character": "Black Man at Store", "id": 37932, "credit_id": "52fe43999251416c75016b1d", "cast_id": 21, "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "order": 15}, {"name": "Reynaldo Rey", "character": "Red's Father", "id": 97781, "credit_id": "52fe43999251416c75016b21", "cast_id": 22, "profile_path": "/t6A6xsI7A1Kk9MeXkqkC2pdhnH4.jpg", "order": 16}, {"name": "Michael Clarke Duncan", "character": "Craps Player", "id": 61981, "credit_id": "52fe43999251416c75016b25", "cast_id": 23, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 17}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe43999251416c75016ad5", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 7.2, "runtime": 91}, "190859": {"poster_path": "/ooy5M7QXEWVpOTAZIRGMskBQbQ9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118990000, "overview": "A Navy SEAL recounts his military career, which includes more than 150 confirmed kills. U.S. Navy SEAL Chris Kyle (Bradley Cooper) takes his sole mission -- protect his comrades -- to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.", "video": false, "id": 190859, "genres": [{"id": 28, "name": "Action"}, {"id": 10752, "name": "War"}], "title": "American Sniper", "tagline": "The most lethal sniper in U.S. history.", "vote_count": 835, "homepage": "http://www.americansnipermovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2179136", "adult": false, "backdrop_path": "/oJNu8vS6Wf10Cv2996KO65jt4C0.jpg", "production_companies": [{"name": "22 & Indiana Productions", "id": 14318}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros.", "id": 6194}, {"name": "Mad Chance", "id": 1757}], "release_date": "2014-12-25", "popularity": 8.14335455265938, "original_title": "American Sniper", "budget": 58800000, "cast": [{"name": "Bradley Cooper", "character": "Chris Kyle", "id": 51329, "credit_id": "549e6afec3a368764f0039ca", "cast_id": 44, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Sienna Miller", "character": "Taya Renae Kyle", "id": 23459, "credit_id": "5430143a0e0a26464c0008ab", "cast_id": 11, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 1}, {"name": "Jake McDorman", "character": "Ryan Job", "id": 94791, "credit_id": "543014bbc3a36831a90008d3", "cast_id": 12, "profile_path": "/7DHDZrBne3diRwoWirg9djgKzTg.jpg", "order": 2}, {"name": "Luke Grimes", "character": "Marc Lee", "id": 56680, "credit_id": "543014ff0e0a2646490009a2", "cast_id": 13, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 3}, {"name": "Kyle Gallner", "character": "Winston", "id": 59219, "credit_id": "5430150cc3a36831ac000939", "cast_id": 14, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 4}, {"name": "Navid Negahban", "character": "Sheikh al-Obeidi", "id": 103330, "credit_id": "5430153f0e0a26463d000971", "cast_id": 15, "profile_path": "/qxp9X0SIA0FWts2qK60IcrmUhnF.jpg", "order": 5}, {"name": "Keir O'Donnell", "character": "Jeff Kyle", "id": 39213, "credit_id": "54301557c3a36831b800093b", "cast_id": 16, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 6}, {"name": "Max Charles", "character": "Colton Kyle", "id": 558928, "credit_id": "547dc587c3a3685af0005f09", "cast_id": 23, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 7}, {"name": "Brando Eaton", "character": "", "id": 208406, "credit_id": "547dc599c3a3685af3004a79", "cast_id": 24, "profile_path": "/2FGegT5jzhD94616bMZ7k5ExyXT.jpg", "order": 8}, {"name": "Brian Hallisay", "character": "Captain Gillespie", "id": 207396, "credit_id": "547dc5b692514123ef003b85", "cast_id": 25, "profile_path": "/oFPwpghpgIcqKV3Qb9YV8NMCKaq.jpg", "order": 9}, {"name": "Sam Jaeger", "character": "Captain Martens", "id": 65727, "credit_id": "547dc5c8c3a3685af0005f15", "cast_id": 26, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 10}, {"name": "E.R. Ruiz", "character": "Carjacker #2", "id": 1392837, "credit_id": "547dc5d79251412d7c005a86", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Eric Close", "character": "", "id": 119520, "credit_id": "547dc5de9251412d7f005798", "cast_id": 28, "profile_path": "/pMpkLILUIcWHNwTvDmrJ7AKM3Jd.jpg", "order": 12}, {"name": "Owain Yeoman", "character": "", "id": 61527, "credit_id": "547dc5ef9251412d7f00579a", "cast_id": 29, "profile_path": "/5ZyPXgyJF18zpOjwnvpWbSS8Bgr.jpg", "order": 13}, {"name": "Marnette Patterson", "character": "Sarah", "id": 71519, "credit_id": "547dc6019251412d75004fa9", "cast_id": 30, "profile_path": "/tuVcwHuiWXF8KOqGD04y8BHuQuI.jpg", "order": 14}, {"name": "Cory Hardrict", "character": "D", "id": 74302, "credit_id": "547dc61dc3a3685aed0060e9", "cast_id": 31, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 15}, {"name": "Chance Kelly", "character": "Col. Jones", "id": 17194, "credit_id": "547dc62dc3a3685afd005989", "cast_id": 32, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 16}, {"name": "Chance Kelly", "character": "Naval Recruiter", "id": 17194, "credit_id": "547dc6559251412d70005f54", "cast_id": 33, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 17}, {"name": "Leonard Roberts", "character": "Instructor Rolle", "id": 83859, "credit_id": "547dc666c3a3685af9004eb1", "cast_id": 34, "profile_path": "/stLgqI31p8ULs3lDZg57KWpYL68.jpg", "order": 18}, {"name": "Eric Ladin", "character": "Squirrel", "id": 188311, "credit_id": "547dc6719251412d780055ac", "cast_id": 35, "profile_path": "/jc6zPIMdG3cFaxcmlveKdJgnPzl.jpg", "order": 19}, {"name": "Emerson Brooks", "character": "Marine Sniper", "id": 1392838, "credit_id": "547dc67d9251412d75004fb7", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Evan Gamble", "character": "Jag Officer #1", "id": 963450, "credit_id": "547dc68c9251411f4e00446b", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Assaf Cohen", "character": "Terp #2", "id": 117824, "credit_id": "547dc69892514123ef003ba8", "cast_id": 38, "profile_path": "/oomyDwiJ6LxMH6CCx8oyzDC6kZZ.jpg", "order": 22}, {"name": "Tim Griffin", "character": "Colonel Gronski", "id": 27031, "credit_id": "547dc6a5c3a3685b00005f3a", "cast_id": 39, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 23}, {"name": "Sammy Sheik", "character": "Mustafa", "id": 1230897, "credit_id": "547dc6b1c3a36841e10023e9", "cast_id": 40, "profile_path": "/6v7kafnGC2c3lJyW6IRMsXrXjRB.jpg", "order": 24}, {"name": "Robert Clotworthy", "character": "Navy Doctor", "id": 35172, "credit_id": "547dc6c09251412d70005f62", "cast_id": 41, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 25}, {"name": "Reynaldo Gallegos", "character": "Tony", "id": 52946, "credit_id": "547dc6cd9251412d780055b9", "cast_id": 42, "profile_path": "/9Auh1zaVGGBTYSDwjBs5PRChju1.jpg", "order": 26}, {"name": "Zack Duhame", "character": "Contractor", "id": 186573, "credit_id": "547dc6e4c3a3685af9004ebc", "cast_id": 43, "profile_path": null, "order": 27}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4c6f9251416c910f4d57", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.6, "runtime": 134}, "10637": {"poster_path": "/iI12IRzif2VjTkQJRDQw3WyWKdS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136706683, "overview": "The year is 1971, and the people of Alexandria, VA. are none too pleased when African American Herman Boone is given the nod to head a newly integrated football team. As the season progresses, however, their contentious attitudes begin to change.", "video": false, "id": 10637, "genres": [{"id": 18, "name": "Drama"}], "title": "Remember the Titans", "tagline": "Before they could win, they had to become one.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0210945", "adult": false, "backdrop_path": "/wyTpmdwCOYA7NpuQIA1vjNlHBTh.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2000-09-28", "popularity": 0.751826458779369, "original_title": "Remember the Titans", "budget": 30000000, "cast": [{"name": "Denzel Washington", "character": "Herman Boone", "id": 5292, "credit_id": "52fe43999251416c75016bc7", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Will Patton", "character": "Bill Yoast", "id": 883, "credit_id": "52fe43999251416c75016bcb", "cast_id": 2, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 1}, {"name": "Ryan Hurst", "character": "Gerry Bertier", "id": 43858, "credit_id": "52fe43999251416c75016bcf", "cast_id": 3, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 2}, {"name": "Wood Harris", "character": "Julius Campbell", "id": 65829, "credit_id": "52fe43999251416c75016bd3", "cast_id": 4, "profile_path": "/u88haG6iG7zwV0PTk9tSG5obaeP.jpg", "order": 3}, {"name": "Hayden Panettiere", "character": "Sheryl Yoast", "id": 17265, "credit_id": "52fe43999251416c75016bfb", "cast_id": 11, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 4}, {"name": "Ryan Gosling", "character": "Alan Bosley", "id": 30614, "credit_id": "52fe43999251416c75016bff", "cast_id": 12, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 5}], "directors": [{"name": "Boaz Yakin", "department": "Directing", "job": "Director", "credit_id": "52fe43999251416c75016bd9", "profile_path": "/4NL3F6iwVlwdWvBKue5H8OpZrp2.jpg", "id": 52358}], "vote_average": 7.2, "runtime": 113}, "27022": {"poster_path": "/ZNSrRpdJ6FjMy4Iu6JpRTJ5Q87.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215283991, "overview": "Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can't do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant prot\u00e9g\u00e9. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.", "video": false, "id": 27022, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Sorcerer's Apprentice", "tagline": "It's The Coolest Job Ever.", "vote_count": 407, "homepage": "http://disney.go.com/disneypictures/sorcerersapprentice/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0963966", "adult": false, "backdrop_path": "/v0o9M1us65w1kDQp8Q6KnB5a11s.jpg", "production_companies": [{"name": "Junction Entertainment", "id": 19097}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Saturn Films", "id": 831}, {"name": "Broken Road Productions", "id": 8000}], "release_date": "2010-07-13", "popularity": 1.66380000378832, "original_title": "The Sorcerer's Apprentice", "budget": 150000000, "cast": [{"name": "Nicolas Cage", "character": "Balthazar Blake", "id": 2963, "credit_id": "52fe4528c3a368484e04b991", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Jay Baruchel", "character": "Dave Stutler", "id": 449, "credit_id": "52fe4528c3a368484e04b995", "cast_id": 5, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 1}, {"name": "Monica Bellucci", "character": "Veronica Gorloisen", "id": 28782, "credit_id": "52fe4528c3a368484e04b999", "cast_id": 6, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Maxim Horvath", "id": 658, "credit_id": "52fe4528c3a368484e04b99d", "cast_id": 7, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Teresa Palmer", "character": "Becky", "id": 20374, "credit_id": "52fe4528c3a368484e04b9a1", "cast_id": 9, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 4}, {"name": "Ethan Peck", "character": "Andre", "id": 119586, "credit_id": "52fe4528c3a368484e04b9a5", "cast_id": 10, "profile_path": "/wji1IaAZpGissuJRdGOx7SCcy7N.jpg", "order": 5}, {"name": "Alice Krige", "character": "Morgana le Fay", "id": 2506, "credit_id": "52fe4528c3a368484e04b9a9", "cast_id": 11, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 6}, {"name": "Peyton List", "character": "Young Becky", "id": 1254435, "credit_id": "52fe4528c3a368484e04b9c1", "cast_id": 18, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 7}, {"name": "Toby Kebbell", "character": "Drake Stone", "id": 20286, "credit_id": "52fe4528c3a368484e04b9ad", "cast_id": 13, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 8}, {"name": "Omar Benson Miller", "character": "Bennet", "id": 334, "credit_id": "52fe4528c3a368484e04b9b1", "cast_id": 14, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 9}, {"name": "Jake Cherry", "character": "Young Dave", "id": 17834, "credit_id": "52fe4528c3a368484e04b9b5", "cast_id": 15, "profile_path": "/e7bPRIJq7Ub3CBJtlCykB3UmiAr.jpg", "order": 10}, {"name": "James A. Stephens", "character": "Merlin", "id": 1187835, "credit_id": "52fe4528c3a368484e04b9b9", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Gregory Woo", "character": "Sun-Lok", "id": 1187836, "credit_id": "52fe4528c3a368484e04b9bd", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a368484e04b981", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 5.9, "runtime": 109}, "2454": {"poster_path": "/kSSyzqw9C4wUggicG4D81XmptR1.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "PL", "name": "Poland"}, {"iso_3166_1": "SI", "name": "Slovenia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 419651413, "overview": "One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.", "video": false, "id": 2454, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Chronicles of Narnia: Prince Caspian", "tagline": "Hope has a new face.", "vote_count": 425, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ojjzZUQlqKTsN1T7s5OAVZSjYMH.jpg", "poster_path": "/sh6Kn8VBfXotJ6qsvJkdfscxXKR.jpg", "id": 420, "name": "The Chronicles of Narnia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0499448", "adult": false, "backdrop_path": "/eiET76GO3xECOic1rL8VcTLuy3L.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "Ozumi Films", "id": 11440}, {"name": "Propeler", "id": 11441}, {"name": "Silverbell Films", "id": 11442}, {"name": "Stillking Films", "id": 11345}, {"name": "Walt Disney", "id": 5888}], "release_date": "2008-05-16", "popularity": 1.18684054230161, "original_title": "The Chronicles of Narnia: Prince Caspian", "budget": 225000000, "cast": [{"name": "Ben Barnes", "character": "Prince Caspian", "id": 25130, "credit_id": "52fe4358c3a36847f804d6ad", "cast_id": 1, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 0}, {"name": "Georgie Henley", "character": "Lucy Pevensie", "id": 5526, "credit_id": "52fe4358c3a36847f804d6b1", "cast_id": 2, "profile_path": "/u8zyLaHTqx4V8LyHnYL2vDsxbrC.jpg", "order": 1}, {"name": "Skandar Keynes", "character": "Edmund Pevensie", "id": 5527, "credit_id": "52fe4359c3a36847f804d757", "cast_id": 36, "profile_path": "/7Wc58Opf4EDjHDotwjK2XLTFLqU.jpg", "order": 2}, {"name": "William Moseley", "character": "Peter Pevensie", "id": 5528, "credit_id": "52fe4358c3a36847f804d6b5", "cast_id": 3, "profile_path": "/zBJ00uNw4nK0gFetNfnVmbGC5ly.jpg", "order": 3}, {"name": "Anna Popplewell", "character": "Susan Pevensie", "id": 5529, "credit_id": "52fe4358c3a36847f804d6b9", "cast_id": 4, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 4}, {"name": "Sergio Castellitto", "character": "King Miraz", "id": 2166, "credit_id": "52fe4358c3a36847f804d6bd", "cast_id": 5, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 5}, {"name": "Alicia Borrachero", "character": "Queen Prunaprismia", "id": 25132, "credit_id": "52fe4358c3a36847f804d6c1", "cast_id": 6, "profile_path": "/wnxiLdliR9HWmarKFmGO8Gk0eu.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Trumpkin", "id": 22970, "credit_id": "52fe4358c3a36847f804d6c5", "cast_id": 7, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Warwick Davis", "character": "Nikabrik", "id": 11184, "credit_id": "52fe4359c3a36847f804d6c9", "cast_id": 8, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 8}, {"name": "Vincent Grass", "character": "Doktor Cornelius", "id": 25133, "credit_id": "52fe4359c3a36847f804d6cd", "cast_id": 9, "profile_path": "/7XMoWw7jONg4xc7npyNfJGnKBZx.jpg", "order": 9}, {"name": "Pierfrancesco Favino", "character": "Lord Glozell", "id": 17839, "credit_id": "52fe4359c3a36847f804d6d1", "cast_id": 10, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 10}, {"name": "Dami\u00e1n Alc\u00e1zar", "character": "Lord Sopespian", "id": 7370, "credit_id": "52fe4359c3a36847f804d6d5", "cast_id": 11, "profile_path": "/kGdrBKHr01ZzX4fDwpSo4fNVst7.jpg", "order": 11}, {"name": "Sim\u00f3n Andreu", "character": "Lord Scythley", "id": 24496, "credit_id": "52fe4359c3a36847f804d6d9", "cast_id": 12, "profile_path": "/6G1JcihI3dS3Dpk4RowWqgVCKmP.jpg", "order": 12}, {"name": "Predrag Bjelac", "character": "Lord Donnon", "id": 12044, "credit_id": "52fe4359c3a36847f804d6dd", "cast_id": 13, "profile_path": "/lv74T1lR0UwubTaE6FaIRLP1tu2.jpg", "order": 13}, {"name": "Shane Rangi", "character": "Asterius", "id": 25134, "credit_id": "52fe4359c3a36847f804d6e1", "cast_id": 14, "profile_path": "/27LjnxN8dMQ3r2yRatAoht3iDhJ.jpg", "order": 14}, {"name": "Cornell John", "character": "Glenstorm", "id": 25135, "credit_id": "52fe4359c3a36847f804d6e5", "cast_id": 15, "profile_path": "/rl0EawwZcysnbKhoA4g99k8kLFf.jpg", "order": 15}, {"name": "Liam Neeson", "character": "Aslan", "id": 3896, "credit_id": "52fe4359c3a36847f804d6e9", "cast_id": 16, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 16}, {"name": "Ken Stott", "character": "Tr\u00fcffelj\u00e4ger", "id": 25136, "credit_id": "52fe4359c3a36847f804d6ed", "cast_id": 17, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 17}, {"name": "Tilda Swinton", "character": "White Witch", "id": 3063, "credit_id": "52fe4359c3a36847f804d75b", "cast_id": 37, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 18}, {"name": "Eddie Izzard", "character": "Reepicheep", "id": 1926, "credit_id": "52fe4359c3a36847f804d78f", "cast_id": 46, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 19}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4359c3a36847f804d6f3", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}], "vote_average": 6.0, "runtime": 150}, "10647": {"poster_path": "/l5diVKdxKMUkn4jOAxASbbGtSl1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55707411, "overview": "Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.", "video": false, "id": 10647, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Pay It Forward", "tagline": "When someone does you a big favor, don't pay it back... Pay It Forward", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0223897", "adult": false, "backdrop_path": "/oiqgXrlMEFm8mhoTPf3PKjr3iHu.jpg", "production_companies": [{"name": "Bel Air Entertainment", "id": 788}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2000-10-12", "popularity": 0.862778064681372, "original_title": "Pay It Forward", "budget": 40000000, "cast": [{"name": "Kevin Spacey", "character": "Eugene Simonet", "id": 1979, "credit_id": "52fe439b9251416c75016fad", "cast_id": 1, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Arlene McKinney", "id": 9994, "credit_id": "52fe439b9251416c75016fb1", "cast_id": 2, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "Haley Joel Osment", "character": "Trevor McKinney", "id": 9640, "credit_id": "52fe439b9251416c75016fb5", "cast_id": 3, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 2}, {"name": "Jay Mohr", "character": "Chris Chandler", "id": 12217, "credit_id": "52fe439b9251416c75016fb9", "cast_id": 4, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 3}, {"name": "Jim Caviezel", "character": "Jerry", "id": 8767, "credit_id": "533d21e4c3a36878ed002ba1", "cast_id": 11, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 4}, {"name": "Jon Bon Jovi", "character": "Ricky McKinney", "id": 32362, "credit_id": "5521d18bc3a36828d100224f", "cast_id": 12, "profile_path": "/gCVfbPMPaIEatCRwEwWhKKzo0AQ.jpg", "order": 5}, {"name": "Angie Dickinson", "character": "Grace", "id": 4301, "credit_id": "5521d19d9251415c8200420a", "cast_id": 13, "profile_path": "/3pnCoPtk3Fv5IJywId5hUjQ33yR.jpg", "order": 6}, {"name": "David Ramsey", "character": "Sidney Parker", "id": 116774, "credit_id": "5521d1be9251415c870042da", "cast_id": 14, "profile_path": "/8ZbdY0yrA4GTg0g9LrrhzDHRRy.jpg", "order": 7}, {"name": "Gary Werntz", "character": "Mr. Thorsen", "id": 1087649, "credit_id": "5521d1f89251415c870042e7", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Colleen Flynn", "character": "Woman on Bridge", "id": 81375, "credit_id": "5521d238c3a3684dda004640", "cast_id": 16, "profile_path": "/vowf6vmqj0PtItiHxL3GgBpHFvD.jpg", "order": 9}, {"name": "Marc Donato", "character": "Adam", "id": 112600, "credit_id": "5521d259c3a36828d1002279", "cast_id": 17, "profile_path": "/2u5zIQRq4ps3PLTm8EqsDYrjnp8.jpg", "order": 10}, {"name": "Kathleen Wilhoite", "character": "Bonnie", "id": 42335, "credit_id": "5521d2769251415c8400416b", "cast_id": 18, "profile_path": "/vVqaPBDr54BgryNaGb9IIyDQExD.jpg", "order": 11}, {"name": "Liza Snyder", "character": "Michelle", "id": 1229915, "credit_id": "5521d28b92514171cb001c78", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Jeannetta Arnette", "character": "Nurse", "id": 2842, "credit_id": "5521d2a5c3a3683453001ddf", "cast_id": 20, "profile_path": "/uVaqZLhpTh5OmJDFSv7wim63sV1.jpg", "order": 13}, {"name": "Hannah Leder", "character": "Thorsen's Daughter", "id": 1450290, "credit_id": "5521d2db9251415c8700431b", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe439b9251416c75016fbf", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 6.6, "runtime": 122}, "51608": {"poster_path": "/owZopv729tpgNvybqtZO9tSIynJ.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 43000000, "overview": "His only friend called him 'the man from nowhere'... Taesik, a former special agent becomes a loner after losing his wife in a miserable accident and lives a bitter life running a pawnshop. He only has a few customers and a friend named Somi, a little girl next door. As Taesik spends more and more time with Somi, he gets attached to her. Then Somi is kidnapped by a gang, and as Taesik tries to save Somi by becoming deeply associated with the gang his mysterious past is revealed...", "video": false, "id": 51608, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Man from Nowhere", "tagline": "Nothing to lose, nothing to compromise.", "vote_count": 78, "homepage": "http://www.mannowhere.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1527788", "adult": false, "backdrop_path": "/clAY7PPLpdMeOoJvR1aGYPCa3Fq.jpg", "production_companies": [{"name": "Cinema Service", "id": 868}, {"name": "Opus Pictures", "id": 7270}, {"name": "United Pictures", "id": 7271}], "release_date": "2010-08-04", "popularity": 0.485361230046653, "original_title": "\uc544\uc800\uc528", "budget": 0, "cast": [{"name": "Won Bin", "character": "Cha Tae-sik", "id": 70336, "credit_id": "52fe47fbc3a36847f8152999", "cast_id": 1002, "profile_path": "/hROkYFXEk7TNIPlwdttQQFFCBzE.jpg", "order": 0}, {"name": "Kim Sae-Ron", "character": "Jeong So-mi", "id": 144591, "credit_id": "52fe47fbc3a36847f815299d", "cast_id": 1003, "profile_path": "/sPKjboN02XhQryWyibNXwGJwe5a.jpg", "order": 1}, {"name": "Kim Tae-Hoon", "character": "Kim Chi-gon", "id": 552067, "credit_id": "52fe47fbc3a36847f81529d3", "cast_id": 1014, "profile_path": "/xeGeseFCjRonh0E832MXaXf6uOz.jpg", "order": 2}, {"name": "Kim Hee-Won", "character": "Man-seok", "id": 550683, "credit_id": "52fe47fbc3a36847f81529ab", "cast_id": 1006, "profile_path": "/9sVftalohbpO6GTxI6vTTW367dK.jpg", "order": 3}, {"name": "Kim Seong-Oh", "character": "Jong-seok", "id": 1102155, "credit_id": "52fe47fbc3a36847f81529cb", "cast_id": 1012, "profile_path": "/q1jmk4vVaIODkAEJ9UBsjP8t0ki.jpg", "order": 4}, {"name": "Lee Jong-Pil", "character": "Detective No", "id": 1075354, "credit_id": "53e66a66c3a368443300153a", "cast_id": 1017, "profile_path": "/3a6TosQKmdNkGbUXvgYiCxxpzUB.jpg", "order": 5}, {"name": "Thanayong Wongtrakul", "character": "Ramrowan", "id": 1041679, "credit_id": "52fe47fbc3a36847f81529c7", "cast_id": 1011, "profile_path": "/fzAf5NKAPnS3XenhKk6RAengN70.jpg", "order": 6}, {"name": "Kim Hyo-Seo", "character": "Hyo-jeong", "id": 144954, "credit_id": "52fe47fbc3a36847f81529a1", "cast_id": 1004, "profile_path": "/7jjuR0q4JaCF9cCxsWDhCEA1aEg.jpg", "order": 7}, {"name": "Song Young-Chang", "character": "Oh Myung-gyu", "id": 88298, "credit_id": "53e66b4fc3a3684439001592", "cast_id": 1018, "profile_path": "/dOnYp40NiTQGxPIlcu0Qivd5ZQF.jpg", "order": 8}, {"name": "Baek Su-Ryeon", "character": "Bookstore Lady", "id": 1190219, "credit_id": "53e66bb3c3a3684430001503", "cast_id": 1019, "profile_path": "/fJzoFYf9Y9N4XR8KY2Nwl2NRRoi.jpg", "order": 9}, {"name": "Nam Kyung-eub", "character": "Section Chief", "id": 1045484, "credit_id": "53e66c940e0a2628d5002242", "cast_id": 1020, "profile_path": null, "order": 10}, {"name": "Kwak Do-won", "character": "Detective Kim", "id": 1155298, "credit_id": "53e66d81c3a36844390015ba", "cast_id": 1021, "profile_path": "/dTpMVzntSFeK3WazegiCV9T1Uhl.jpg", "order": 11}, {"name": "Seok-hyeon Jo", "character": "Moon Dal-seo", "id": 1074064, "credit_id": "53e66ead0e0a2628c4002174", "cast_id": 1022, "profile_path": null, "order": 12}, {"name": "Hong So-Hee", "character": "Kim Yeon-soo", "id": 564861, "credit_id": "52fe47fbc3a36847f81529cf", "cast_id": 1013, "profile_path": "/wchNePkW9HFd1t7LBtnitLEQmJA.jpg", "order": 13}], "directors": [{"name": "Lee Jeong-Beom", "department": "Directing", "job": "Director", "credit_id": "5312abd1925141104200413c", "profile_path": "/3LceHDnVnW5qZvfaPNlMIdIvRqv.jpg", "id": 144590}], "vote_average": 7.6, "runtime": 119}, "190880": {"poster_path": "/A8qFJaPp9VuxyHaDBMchjFG3GqO.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "How to become a man when your mother and your closed circle have decided otherwise? This is the challenge Guillaume took up. The film recounts Guillaume's tragicomic battle from the young age of eight, as he adopts the role of a girl then of a homosexual... until, aged 30, he meets the woman who, after his mother, will become the other woman in his life. Beyond this story of a heterosexual coming-out, the film tells the tale of an actor who never stopped loving women, maybe even a little too much.", "video": false, "id": 190880, "genres": [{"id": 35, "name": "Comedy"}], "title": "Me, Myself and Mum", "tagline": "", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2315200", "adult": false, "backdrop_path": "/lL1aDCZQjdzZJx6YtexrLnXqdcy.jpg", "production_companies": [{"name": "LGM Productions", "id": 2490}, {"name": "Rectangle Productions", "id": 2700}, {"name": "Gaumont", "id": 9}, {"name": "France 3 Cinema", "id": 16804}, {"name": "Gaumont Distribution", "id": 13800}], "release_date": "2013-11-20", "popularity": 0.425829741207558, "original_title": "Les Gar\u00e7ons et Guillaume, \u00e0 Table !", "budget": 10735974, "cast": [{"name": "Guillaume Gallienne", "character": "Guillaume", "id": 6554, "credit_id": "52fe4c709251416c910f4f41", "cast_id": 6, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 0}, {"name": "Fran\u00e7oise Fabian", "character": "Babou", "id": 9765, "credit_id": "52fe4c709251416c910f4f45", "cast_id": 7, "profile_path": "/l8fJpeV3naLD53CEqxWD1shXI2a.jpg", "order": 1}, {"name": "Andr\u00e9 Marcon", "character": "Le P\u00e8re", "id": 55805, "credit_id": "52fe4c709251416c910f4f49", "cast_id": 8, "profile_path": "/dsuU4KIb8Av5rGk5T605S7utlpg.jpg", "order": 2}, {"name": "Diane Kruger", "character": "Ingeborg", "id": 9824, "credit_id": "52fe4c709251416c910f4f4d", "cast_id": 9, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 3}, {"name": "Nanou Garcia", "character": "Paqui", "id": 130448, "credit_id": "52fe4c709251416c910f4f51", "cast_id": 10, "profile_path": "/2kbvJzHwEuHNdLEX7aCEF2Xy9kf.jpg", "order": 4}, {"name": "G\u00f6tz Otto", "character": "Raymund", "id": 10744, "credit_id": "531621a4c3a36813bb000e1d", "cast_id": 12, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 5}, {"name": "Brigitte Catillon", "character": "Tante d'Am\u00e9rique", "id": 20081, "credit_id": "531621d2c3a36813a6000eb8", "cast_id": 13, "profile_path": "/5Lk7epqxqcd8TdxfexOc06kiTNn.jpg", "order": 6}, {"name": "Reda Kateb", "character": "Karim", "id": 89626, "credit_id": "53162202c3a36813a6000ebf", "cast_id": 14, "profile_path": "/zfrJui3N3UybfLJQOMC6SalcBlJ.jpg", "order": 7}, {"name": "Carole Brenner", "character": "Tante Polyglote", "id": 1148198, "credit_id": "53162238c3a36813a6000ec4", "cast_id": 15, "profile_path": "/8lkK4k042RwYcCD5j9LlvJEr16m.jpg", "order": 8}, {"name": "Charlie Anson", "character": "J\u00e9r\u00e9my", "id": 578939, "credit_id": "53162252c3a36813bb000e2c", "cast_id": 16, "profile_path": null, "order": 9}], "directors": [{"name": "Guillaume Gallienne", "department": "Directing", "job": "Director", "credit_id": "52fe4c709251416c910f4f57", "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "id": 6554}], "vote_average": 6.9, "runtime": 85}, "51620": {"poster_path": "/5ARRXaWPgtIT9qKl8Db3MNuGvo3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "In the world's most dangerous prison, a new game is born: Death Race. The rules of this adrenaline-fueled blood sport are simple, drive or die. When repentant convict Carl Lucas discovers there's a price on his head, his only hope is to survive a twisted race against an army of hardened criminals and tricked-out cars.", "video": false, "id": 51620, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Death Race 2", "tagline": "10 killer drivers, 20,000 rounds of ammo. 1 survivor.", "vote_count": 104, "homepage": "http://deathrace2.craveonline.com/", "belongs_to_collection": {"backdrop_path": "/cGaVuq8ZjX1UPD9wPRlzx6lP9kK.jpg", "poster_path": "/uffHLg0ekFlErCp7OkpecXkWPng.jpg", "id": 86116, "name": "Death Race Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1500491", "adult": false, "backdrop_path": "/e1CMBwdeWytbSFSiEc9ax5ZSTzg.jpg", "production_companies": [{"name": "Moonlighting Films", "id": 9137}, {"name": "CC Capital Arts Entertainment SRL", "id": 17008}], "release_date": "2010-12-27", "popularity": 1.08874211072971, "original_title": "Death Race 2", "budget": 7000000, "cast": [{"name": "Luke Goss", "character": "Carl 'Luke' Lucas / Frankenstein", "id": 10843, "credit_id": "52fe47fbc3a36847f8152b95", "cast_id": 6, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 0}, {"name": "Sean Bean", "character": "Markus Kane", "id": 48, "credit_id": "52fe47fbc3a36847f8152b99", "cast_id": 7, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 1}, {"name": "Danny Trejo", "character": "Goldberg", "id": 11160, "credit_id": "52fe47fbc3a36847f8152b9d", "cast_id": 8, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Weyland", "id": 10182, "credit_id": "52fe47fbc3a36847f8152ba1", "cast_id": 9, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Tanit Phoenix", "character": "Katrina Banks", "id": 37769, "credit_id": "52fe47fbc3a36847f8152ba5", "cast_id": 11, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 4}, {"name": "Robin Shou", "character": "14K", "id": 57250, "credit_id": "52fe47fbc3a36847f8152ba9", "cast_id": 12, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 5}, {"name": "Fred Koehler", "character": "Lists", "id": 76513, "credit_id": "52fe47fbc3a36847f8152bad", "cast_id": 13, "profile_path": "/f52RmqmKKbHS9JFb2sJ28dnyaUr.jpg", "order": 6}, {"name": "Joe Vaz", "character": "Rocco", "id": 137463, "credit_id": "52fe47fbc3a36847f8152bb1", "cast_id": 14, "profile_path": "/wNW0XpdWxAe2pzVjbRagqdhBEHk.jpg", "order": 7}, {"name": "Sean Higgs", "character": "Hillbilly Con", "id": 68501, "credit_id": "52fe47fbc3a36847f8152bb5", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Lauren Cohan", "character": "September Jones", "id": 62220, "credit_id": "52fe47fbc3a36847f8152bbf", "cast_id": 17, "profile_path": "/5W4AV3ZXn38NlEMqPy9QPjwRRz8.jpg", "order": 9}, {"name": "Patrick Lyster", "character": "Warden Medford Parks", "id": 109653, "credit_id": "5328867cc3a3683d5d00018e", "cast_id": 22, "profile_path": "/175ns2a0dS1Q8Dg3S9xlZKSH7ge.jpg", "order": 10}, {"name": "Deobia Oparei", "character": "Big Bill", "id": 58758, "credit_id": "53288691c3a3683d5300018f", "cast_id": 23, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 11}, {"name": "Danny Keogh", "character": "Dr. Klein", "id": 137681, "credit_id": "532886e2c3a3683d53000195", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Henie Bosman", "character": "Xander Grady", "id": 1302090, "credit_id": "532886fb9251413d80000190", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Warrick Grier", "character": "Calin", "id": 107550, "credit_id": "532887079251413d730001f8", "cast_id": 26, "profile_path": "/t12KLQgyB9oC86IvfbLB5J2BlZE.jpg", "order": 14}], "directors": [{"name": "Roel Rein\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe47fbc3a36847f8152b7f", "profile_path": "/f4KlQ4lfZZwbuz6Wu5N6Gfbur6p.jpg", "id": 97555}], "vote_average": 5.7, "runtime": 96}, "10661": {"poster_path": "/3n9FYKLJVqwrZ7Wf96eoF2cAowU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201596308, "overview": "An Israeli counterterrorism soldier with a secretly fabulous ambition to become a Manhattan hairstylist. Zohan's desire runs so deep that he'll do anything -- including faking his own death and going head-to-head with an Arab cab driver -- to make his dreams come true.", "video": false, "id": 10661, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "You Don't Mess With the Zohan", "tagline": "Lather. Rinse. Save the world.", "vote_count": 299, "homepage": "http://www.youdontmesswiththezohan.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0960144", "adult": false, "backdrop_path": "/5WVCXiuJPMsRbRFRsH7khHszswF.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2008-06-04", "popularity": 1.01800865084606, "original_title": "You Don't Mess With the Zohan", "budget": 90000000, "cast": [{"name": "Adam Sandler", "character": "Zohan", "id": 19292, "credit_id": "52fe439e9251416c750176e1", "cast_id": 4, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "John Turturro", "character": "The Phantom", "id": 1241, "credit_id": "52fe439e9251416c750176e5", "cast_id": 5, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Emmanuelle Chriqui", "character": "Dalia", "id": 59192, "credit_id": "52fe439e9251416c750176e9", "cast_id": 6, "profile_path": "/d2PyTKZyt5Ndk9am6PJ8u6jRdjH.jpg", "order": 2}, {"name": "Nick Swardson", "character": "Michael", "id": 32907, "credit_id": "52fe439e9251416c750176ed", "cast_id": 7, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 3}, {"name": "Lainie Kazan", "character": "Gail", "id": 53647, "credit_id": "52fe439e9251416c750176f1", "cast_id": 8, "profile_path": "/qI20obSkCyWbo13xh20rWeUuMXp.jpg", "order": 4}, {"name": "Daoud Heidami", "character": "Nasi", "id": 66069, "credit_id": "52fe439e9251416c750176f5", "cast_id": 9, "profile_path": "/83wsAMfFqXsBXOqP8yYj4BfRd9Y.jpg", "order": 5}, {"name": "Dave Matthews", "character": "James", "id": 66070, "credit_id": "52fe439e9251416c750176f9", "cast_id": 10, "profile_path": "/izo0HKZEdaJiZ1zW8bizpopMfmz.jpg", "order": 6}, {"name": "Charlotte Rae", "character": "Mrs. Greenhouse", "id": 66071, "credit_id": "52fe439e9251416c750176fd", "cast_id": 11, "profile_path": "/t6UyU97bkrGreYvLlUutomhTyIP.jpg", "order": 7}, {"name": "Michael Buffer", "character": "Walbridge", "id": 66072, "credit_id": "52fe439e9251416c75017701", "cast_id": 12, "profile_path": "/yOqMbIPkf6HtbVRBxu1o1RK7jZd.jpg", "order": 8}, {"name": "Rob Schneider", "character": "Salim", "id": 60949, "credit_id": "52fe439e9251416c75017705", "cast_id": 13, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 9}, {"name": "Ido Mosseri", "character": "Oori", "id": 66073, "credit_id": "52fe439e9251416c75017709", "cast_id": 14, "profile_path": "/rTtzDCYcSJA7asnbNVIUtqg9Hx7.jpg", "order": 10}, {"name": "Sayed Badreya", "character": "Hamdi", "id": 173810, "credit_id": "52fe439e9251416c75017737", "cast_id": 22, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 11}, {"name": "Kevin Nealon", "character": "Kevin", "id": 58478, "credit_id": "52fe439e9251416c7501773b", "cast_id": 23, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 12}, {"name": "Robert Smigel", "character": "Yosi", "id": 53684, "credit_id": "52fe439e9251416c7501773f", "cast_id": 24, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 13}, {"name": "Mariah Carey", "character": "Mariah Carey", "id": 66586, "credit_id": "5419bb67c3a3683f0900028e", "cast_id": 25, "profile_path": "/qU9qrbTkLwsyFL9mb6RUHxKmpp.jpg", "order": 14}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c750176d1", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 5.7, "runtime": 113}, "10663": {"poster_path": "/wZKa2NZgEKJ85NoO2cQ7xzj8eBn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185991646, "overview": "Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.", "video": false, "id": 10663, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Waterboy", "tagline": "You can mess with him. But don't mess with his water.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120484", "adult": false, "backdrop_path": "/kOsuuZAlBuy6i2nuQNnRhANsY0X.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-11-06", "popularity": 0.898391373605166, "original_title": "The Waterboy", "budget": 23000000, "cast": [{"name": "Adam Sandler", "character": "Bobby Boucher", "id": 19292, "credit_id": "52fe439e9251416c75017775", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Kathy Bates", "character": "Mama Boucher", "id": 8534, "credit_id": "52fe439e9251416c75017779", "cast_id": 2, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 1}, {"name": "Fairuza Balk", "character": "Vicki Vallencourt", "id": 826, "credit_id": "52fe439e9251416c7501777d", "cast_id": 3, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 2}, {"name": "Henry Winkler", "character": "Coach Klein", "id": 31903, "credit_id": "52fe439e9251416c75017781", "cast_id": 4, "profile_path": "/o3QkTZkDYMkKYJphYJkvMSx8eB3.jpg", "order": 3}, {"name": "Jerry Reed", "character": "Coach Red Beaulieu", "id": 67764, "credit_id": "52fe439e9251416c750177b5", "cast_id": 14, "profile_path": "/frRWrgo0V92TOQt3u2WrgldzFf4.jpg", "order": 4}, {"name": "Lawrence Gilliard Jr.", "character": "Derek Wallace", "id": 37947, "credit_id": "52fe439e9251416c750177b9", "cast_id": 15, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 5}, {"name": "Blake Clark", "character": "Farmer Fran", "id": 21485, "credit_id": "52fe439e9251416c750177bd", "cast_id": 16, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 6}, {"name": "Peter Dante", "character": "Gee Grenouille", "id": 20819, "credit_id": "52fe439e9251416c750177c1", "cast_id": 17, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 7}, {"name": "Jonathan Loughran", "character": "Lyle Robideaux", "id": 58477, "credit_id": "52fe439e9251416c750177c5", "cast_id": 18, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 8}, {"name": "Al Whiting", "character": "Casey Bugge", "id": 124016, "credit_id": "52fe439e9251416c750177c9", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Clint Howard", "character": "Paco", "id": 15661, "credit_id": "52fe439e9251416c750177cd", "cast_id": 20, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 10}, {"name": "Allen Covert", "character": "Walter", "id": 20818, "credit_id": "52fe439e9251416c750177d1", "cast_id": 21, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 11}, {"name": "Rob Schneider", "character": "Townie", "id": 60949, "credit_id": "52fe439e9251416c750177d5", "cast_id": 22, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 12}, {"name": "Lawrence Taylor", "character": "Himself", "id": 185731, "credit_id": "52fe439e9251416c750177df", "cast_id": 24, "profile_path": "/cb9W1czwoOy3tgu7U7O5N48veB4.jpg", "order": 13}, {"name": "Dan Patrick", "character": "Himself", "id": 166029, "credit_id": "52fe439e9251416c750177e3", "cast_id": 25, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 14}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c75017787", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.0, "runtime": 90}, "10664": {"poster_path": "/g2Dk8ud1KpXt2RWzvcgsuuPkPuJ.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 18469680, "overview": "The action continues from [REC], with the medical officer and a SWAT team outfitted with video cameras are sent into the sealed off apartment to control the situation.", "video": false, "id": 10664, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "[REC]\u00b2", "tagline": "Fear Revisited", "vote_count": 112, "homepage": "http://www.rec2themovie.com/", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1245112", "adult": false, "backdrop_path": "/hBfzloLznfN0FWLfheSEObyicqs.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2009-09-15", "popularity": 0.65103268615372, "original_title": "[REC]\u00b2", "budget": 5600000, "cast": [{"name": "Manuela Velasco", "character": "\u00c1ngela Vidal", "id": 34793, "credit_id": "52fe439e9251416c7501780f", "cast_id": 3, "profile_path": "/kQQrHFhTCazfWScBwTaSTtRFWUU.jpg", "order": 0}, {"name": "Ferran Terraza", "character": "Manu", "id": 54532, "credit_id": "52fe439e9251416c75017813", "cast_id": 7, "profile_path": "/7lvI2rC9emIAkEZeW5zYGr3RKnw.jpg", "order": 1}, {"name": "Claudia Silva", "character": "Jennifer", "id": 111091, "credit_id": "52fe439e9251416c7501781f", "cast_id": 10, "profile_path": "/jqFSfItsXSiXrqD3cI2Bt7WoRdH.jpg", "order": 2}, {"name": "Javier Botet", "character": "Ni\u00f1a Medeiros", "id": 111090, "credit_id": "52fe439e9251416c7501781b", "cast_id": 9, "profile_path": "/4u8ZkMMt5ipQgfpb81YudFW5rQG.jpg", "order": 3}, {"name": "Pablo Rosso", "character": "Rosso", "id": 54520, "credit_id": "52fe439e9251416c75017817", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Martha Carbonell", "character": "Sra. Izquierdo", "id": 54523, "credit_id": "52fe439e9251416c75017823", "cast_id": 11, "profile_path": "/vdNJsDSvNggyFRYFAJer6ZTzyph.jpg", "order": 5}, {"name": "Andrea Ros", "character": "Mire", "id": 19824, "credit_id": "52fe439e9251416c75017827", "cast_id": 12, "profile_path": "/lWjsKT28IbyKBHAaRYk3SwdRvqi.jpg", "order": 6}, {"name": "Alejandro Casaseca", "character": "Martos", "id": 111092, "credit_id": "52fe439e9251416c7501782b", "cast_id": 13, "profile_path": "/snilCy8gQmmJ9S8fUTOLcB2YU0c.jpg", "order": 7}], "directors": [{"name": "Jaume Balaguer\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c75017805", "profile_path": "/zH7TzIJgzrYKbUecPLoTEPP7qxX.jpg", "id": 54525}, {"name": "Paco Plaza", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c7501780b", "profile_path": "/kj5tBKhLcC8PcZHwGerEMZakXi5.jpg", "id": 54526}], "vote_average": 6.3, "runtime": 85}, "10665": {"poster_path": "/pZwTosOfiB9hGvXvPg9fpoOqKmp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52597610, "overview": "After returning from a wedding reception, a couple staying in an isolated vacation house receive a knock on the door in the mid-hours of the night. What ensues is a violent invasion by three strangers, their faces hidden behind masks. The couple find themselves in a violent struggle, in which they go beyond what either of them thought capable in order to survive.", "video": false, "id": 10665, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Strangers", "tagline": "Lock the door. Pretend you're safe.", "vote_count": 90, "homepage": "http://www.universalstudiosentertainment.com/the-strangers/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0482606", "adult": false, "backdrop_path": "/bYHJgWapJepVT9Jirr6ZK4J3q8K.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2008-05-29", "popularity": 0.522966521506959, "original_title": "The Strangers", "budget": 10000000, "cast": [{"name": "Liv Tyler", "character": "Kristen McKay", "id": 882, "credit_id": "52fe439e9251416c7501785d", "cast_id": 2, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 0}, {"name": "Scott Speedman", "character": "James Hoyt", "id": 100, "credit_id": "52fe439e9251416c75017861", "cast_id": 3, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Alex Fisher", "character": "Mormon Boy #1", "id": 448998, "credit_id": "52fe439e9251416c75017865", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Peter Clayton-Luce", "character": "Mormon Boy #2", "id": 448999, "credit_id": "52fe439e9251416c75017869", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Gemma Ward", "character": "Dollface", "id": 55901, "credit_id": "52fe439e9251416c7501786d", "cast_id": 6, "profile_path": "/vuuCX123OdszoKoppbhtu92xsTS.jpg", "order": 4}, {"name": "Kip Weeks", "character": "Man in the Mask", "id": 60509, "credit_id": "52fe439e9251416c75017871", "cast_id": 7, "profile_path": "/tMpnSTyEYH4m5DZtgTa5rhJA7Av.jpg", "order": 5}, {"name": "Laura Margolis", "character": "Pin-Up Girl", "id": 162813, "credit_id": "52fe439e9251416c75017875", "cast_id": 8, "profile_path": "/MPHO8VtZibtOvdoXa1p22dzhS8.jpg", "order": 6}, {"name": "Glenn Howerton", "character": "Mike", "id": 77870, "credit_id": "52fe439e9251416c75017879", "cast_id": 9, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 7}], "directors": [{"name": "Bryan Bertino", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c75017859", "profile_path": null, "id": 66074}], "vote_average": 5.8, "runtime": 90}, "76203": {"poster_path": "/kb3X943WMIJYVg4SOAyK0pmWL5D.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 187, "overview": "In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon\u2019s chance meeting with a Canadian abolitionist will forever alter his life.", "video": false, "id": 76203, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "12 Years a Slave", "tagline": "The extraordinary true story of Solomon Northup", "vote_count": 888, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2024544", "adult": false, "backdrop_path": "/xnRPoFI7wzOYviw3PmoG94X2Lnc.jpg", "production_companies": [{"name": "New Regency Pictures", "id": 10104}, {"name": "Plan B Entertainment", "id": 81}, {"name": "River Road Entertainment", "id": 1246}, {"name": "Regency Enterprises", "id": 508}, {"name": "Film4", "id": 9349}], "release_date": "2013-10-30", "popularity": 2.92129178811078, "original_title": "12 Years a Slave", "budget": 20000000, "cast": [{"name": "Chiwetel Ejiofor", "character": "Solomon Northup", "id": 5294, "credit_id": "52fe492cc3a368484e11dfad", "cast_id": 6, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Edwin Epps", "id": 17288, "credit_id": "52fe492cc3a368484e11df9f", "cast_id": 2, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Benedict Cumberbatch", "character": "William Ford", "id": 71580, "credit_id": "52fe492cc3a368484e11dfb9", "cast_id": 9, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 2}, {"name": "Paul Dano", "character": "John Tibeats", "id": 17142, "credit_id": "52fe492cc3a368484e11dfb5", "cast_id": 8, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 3}, {"name": "Paul Giamatti", "character": "Theophilus Freeman", "id": 13242, "credit_id": "52fe492cc3a368484e11dfe5", "cast_id": 19, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 4}, {"name": "Scoot McNairy", "character": "Brown", "id": 59233, "credit_id": "52fe492cc3a368484e11dfc9", "cast_id": 13, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 5}, {"name": "Lupita Nyong'o", "character": "Patsey", "id": 1267329, "credit_id": "52fe492cc3a368484e11dff5", "cast_id": 25, "profile_path": "/y3p0OMzIuAmcNt700RayK5A0k6t.jpg", "order": 6}, {"name": "Adepero Oduye", "character": "Eliza", "id": 467633, "credit_id": "52fe492cc3a368484e11dfed", "cast_id": 22, "profile_path": "/kDomNljeEMWp1pxp3MaVka9Bhoy.jpg", "order": 7}, {"name": "Sarah Paulson", "character": "Mary Epps", "id": 34490, "credit_id": "52fe492cc3a368484e11dfc5", "cast_id": 12, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 8}, {"name": "Brad Pitt", "character": "Samuel Bass", "id": 287, "credit_id": "52fe492cc3a368484e11dfa3", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 9}, {"name": "Michael Kenneth Williams", "character": "Robert (as Michael Kenneth Williams)", "id": 39390, "credit_id": "52fe492cc3a368484e11dfb1", "cast_id": 7, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 10}, {"name": "Alfre Woodard", "character": "Mistress Shaw", "id": 1981, "credit_id": "52fe492cc3a368484e11dfe9", "cast_id": 21, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 11}, {"name": "Chris Chalk", "character": "Clemens", "id": 172096, "credit_id": "5319054192514177b10018f2", "cast_id": 46, "profile_path": "/jWWPDMD8i8EICQUco7NCt5mp0Ty.jpg", "order": 12}, {"name": "Taran Killam", "character": "Hamilton", "id": 1213573, "credit_id": "52fe492cc3a368484e11dff9", "cast_id": 26, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 13}, {"name": "Bill Camp", "character": "Radburn", "id": 121718, "credit_id": "531904bc92514177c20017cd", "cast_id": 45, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 14}, {"name": "Kelsey Scott", "character": "Anne Northup", "id": 218667, "credit_id": "5319013b92514177c200175c", "cast_id": 41, "profile_path": "/wU34oZdA0mtLwblB0GbcGJJ47WD.jpg", "order": 15}, {"name": "Bryan Batt", "character": "Judge Turner", "id": 180422, "credit_id": "52fe492cc3a368484e11dff1", "cast_id": 24, "profile_path": "/dDfpQZ00K1poeqgTINj2D4D6SrF.jpg", "order": 16}, {"name": "Quvenzhan\u00e9 Wallis", "character": "Margaret Northup", "id": 1055235, "credit_id": "52fe492cc3a368484e11e003", "cast_id": 28, "profile_path": "/khaGuAENEdm1gnfszBJjyGuN0jl.jpg", "order": 17}, {"name": "Garret Dillahunt", "character": "Armsby", "id": 39520, "credit_id": "52fe492cc3a368484e11dfbd", "cast_id": 10, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 18}, {"name": "Dwight Henry", "character": "Uncle Abram", "id": 1055236, "credit_id": "5314e286c3a3687e380009d8", "cast_id": 39, "profile_path": "/fJZw6IV6j0qKuNRfhYmh1f3PhpT.jpg", "order": 19}, {"name": "Dickie Gravois", "character": "Overseer", "id": 1344342, "credit_id": "53cc786a0e0a265dfa002fda", "cast_id": 51, "profile_path": null, "order": 20}, {"name": "Ashley Dyke", "character": "Anna", "id": 1031785, "credit_id": "5318fff892514177c2001744", "cast_id": 40, "profile_path": "/ujbE51Rcz6XaAi6Tt4SMrRaOIen.jpg", "order": 21}, {"name": "Cameron Zeigler", "character": "Alonzo Northup", "id": 1299189, "credit_id": "5319025f92514177bc001802", "cast_id": 42, "profile_path": "/2yTmUqf3cexsUXoEb1MVFocDCE7.jpg", "order": 22}, {"name": "Tony Bentley", "character": "Mr. Moon", "id": 120253, "credit_id": "5319030892514177bf0017f5", "cast_id": 43, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 23}, {"name": "Christopher Berry", "character": "Burch", "id": 1173099, "credit_id": "531903e092514177c200178a", "cast_id": 44, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 24}, {"name": "Mister Mackey Jr.", "character": "Randall", "id": 1344343, "credit_id": "53cc79720e0a265e01002f29", "cast_id": 52, "profile_path": null, "order": 25}, {"name": "Craig Tate", "character": "John", "id": 1299192, "credit_id": "5319056492514177ab00186a", "cast_id": 47, "profile_path": "/oM0sp2ObrSLnnFdnVXPrP2R9qn1.jpg", "order": 26}, {"name": "Storm Reid", "character": "Emily", "id": 1344344, "credit_id": "53cc79d00e0a265df300319b", "cast_id": 53, "profile_path": null, "order": 27}, {"name": "Tom Proctor", "character": "Biddee", "id": 95051, "credit_id": "53cc7a200e0a265dfa003004", "cast_id": 54, "profile_path": "/ueuCn76nV670Kt1UOVOPaki9Zu7.jpg", "order": 28}, {"name": "Marc Macaulay", "character": "Captain", "id": 6908, "credit_id": "53cc7a9e0e0a265dfc002fbb", "cast_id": 57, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 29}, {"name": "Vivian Fleming-Alvarez", "character": "Mulatto Woman", "id": 1344345, "credit_id": "53cc7a600e0a265e01002f48", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Douglas M. Griffin", "character": "Sailor", "id": 60881, "credit_id": "53cc7b290e0a265dea0031d0", "cast_id": 58, "profile_path": null, "order": 31}, {"name": "John McConnell", "character": "Jonus Ray", "id": 16459, "credit_id": "53cc7b8f0e0a265ded0031ab", "cast_id": 59, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 32}, {"name": "Marcus Lyle Brown", "character": "Jasper", "id": 16460, "credit_id": "53cc7bfb0e0a265de700317c", "cast_id": 60, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 33}, {"name": "Richard Holden", "character": "Fitzgerald", "id": 109765, "credit_id": "53cc7c200e0a265df30031cf", "cast_id": 61, "profile_path": null, "order": 34}, {"name": "Rob Steinberg", "character": "Parker", "id": 1002306, "credit_id": "53cc7ca50e0a265de7003197", "cast_id": 62, "profile_path": null, "order": 35}, {"name": "Anwan Glover", "character": "Cape", "id": 1224609, "credit_id": "53cc7cb50e0a265ded0031c6", "cast_id": 63, "profile_path": "/wASbPFJJicC61Oqd4DzeEqwi8dd.jpg", "order": 36}, {"name": "James C. Victor", "character": "Buyer (as J. C. Victor)", "id": 156955, "credit_id": "53cc7d150e0a265dfa003042", "cast_id": 64, "profile_path": null, "order": 37}, {"name": "Liza J. Bennett", "character": "Mistress Ford", "id": 1344349, "credit_id": "53cc7d6a0e0a265df30031e8", "cast_id": 65, "profile_path": "/y68dpoDsNow2VPPytN6eUBfIIYZ.jpg", "order": 38}, {"name": "Nicole Collins", "character": "Rachel", "id": 1344350, "credit_id": "53cc7d890e0a265dea00320a", "cast_id": 66, "profile_path": null, "order": 39}, {"name": "J.D. Evermore", "character": "Chapin (as JD Evermore)", "id": 129868, "credit_id": "53cc7dad0e0a265dfa003050", "cast_id": 67, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 40}, {"name": "Andy Dylan", "character": "Treach", "id": 1344352, "credit_id": "53cc7e32c3a3687771001eb8", "cast_id": 68, "profile_path": null, "order": 41}, {"name": "Deneen Tyler", "character": "Phebe (as Deneen D. Tyler)", "id": 29933, "credit_id": "53cc7e5dc3a3687771001ebd", "cast_id": 69, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 42}, {"name": "Mustafa Harris", "character": "Sam", "id": 1273239, "credit_id": "53cc7e7fc3a368776d001f8f", "cast_id": 70, "profile_path": "/e0moNlfMRCJkdzU3nfblnWxd2vC.jpg", "order": 43}, {"name": "Gregory Bright", "character": "Edward", "id": 1344357, "credit_id": "53cc7e8ec3a368776d001f94", "cast_id": 71, "profile_path": null, "order": 44}, {"name": "Austin Purnell", "character": "Bob", "id": 1344358, "credit_id": "53cc7e9cc3a3687771001ec6", "cast_id": 72, "profile_path": null, "order": 45}, {"name": "Thomas Francis Murphy", "character": "Patroller", "id": 1295668, "credit_id": "53cc7ea9c3a3687767002040", "cast_id": 73, "profile_path": null, "order": 46}, {"name": "Andre Shanks", "character": "Victim 1", "id": 1344359, "credit_id": "53cc7ef6c3a368776d001f9f", "cast_id": 74, "profile_path": null, "order": 47}, {"name": "Kelvin Harrison", "character": "Victim 2", "id": 1344361, "credit_id": "53cc7f17c3a3687771001ed6", "cast_id": 76, "profile_path": null, "order": 48}, {"name": "Scott M. Jefferson", "character": "Master Shaw", "id": 1344360, "credit_id": "53cc7f0cc3a3687771001ed1", "cast_id": 75, "profile_path": null, "order": 49}, {"name": "Isaiah Jackson", "character": "Zachary", "id": 1344362, "credit_id": "53cc7f8bc3a368776a001f3e", "cast_id": 77, "profile_path": null, "order": 50}, {"name": "Topsy Chapman", "character": "Slave Spiritual Singer 1", "id": 1344363, "credit_id": "53cc7f9fc3a368776a001f43", "cast_id": 78, "profile_path": null, "order": 51}, {"name": "Devin Maurice Evans", "character": "Slave Spiritual Singer 2", "id": 1344364, "credit_id": "53cc7faec3a368777a001dca", "cast_id": 79, "profile_path": null, "order": 52}, {"name": "Jay Huguley", "character": "Sheriff", "id": 1198191, "credit_id": "53cc7fd5c3a3687767002052", "cast_id": 80, "profile_path": "/kXZ77QBOZ6dwwZfYiVYRhoLfcdg.jpg", "order": 53}, {"name": "Devyn A. Tyler", "character": "Margaret Northup (adult)", "id": 1344365, "credit_id": "53cc7fecc3a3687771001ee9", "cast_id": 81, "profile_path": "/od8wqG8pc7s8JCyq7oz74WlQP4p.jpg", "order": 54}, {"name": "Willo Jean-Baptiste", "character": "Margaret's Husband", "id": 1344366, "credit_id": "53cc7fffc3a3687767002059", "cast_id": 82, "profile_path": null, "order": 55}, {"name": "Ruth Negga", "character": "Celeste (uncredited)", "id": 17018, "credit_id": "52fe492cc3a368484e11dfc1", "cast_id": 11, "profile_path": "/fIVB9H48rDgcV0hhnP7gYrv18zB.jpg", "order": 56}, {"name": "Jason Ament", "character": "Cooke (uncredited)", "id": 1438284, "credit_id": "550115949251413da1002219", "cast_id": 119, "profile_path": null, "order": 57}, {"name": "Jon Arthur", "character": "Steamboat Crew 1st Mate (uncredited)", "id": 1438286, "credit_id": "550116ac9251413da100222b", "cast_id": 120, "profile_path": null, "order": 58}, {"name": "Sean Paul Braud", "character": "Lynchman (uncredited)", "id": 148999, "credit_id": "5501182f9251413d9b0024a9", "cast_id": 121, "profile_path": null, "order": 59}, {"name": "Blake Burt", "character": "Upper Class Pedestrian (uncredited)", "id": 1438287, "credit_id": "550118679251413d9f00255c", "cast_id": 122, "profile_path": null, "order": 60}, {"name": "Carroll Burt", "character": "Lower Class Pedestrian (uncredited)", "id": 1438288, "credit_id": "5501188cc3a3687b69001d2e", "cast_id": 123, "profile_path": null, "order": 61}, {"name": "Joseph Randy Causin", "character": "Steamboat Crew (uncredited)", "id": 1426635, "credit_id": "550118dd9251413da500233d", "cast_id": 124, "profile_path": null, "order": 62}, {"name": "Edward J. Clare", "character": "Restaurant Patron (uncredited)", "id": 1292482, "credit_id": "55011913c3a36826b9000fa7", "cast_id": 125, "profile_path": "/83oSP3VgReqSZRvEubGiYjui7on.jpg", "order": 63}, {"name": "JJ Coker", "character": "Mr. Bartholomew (uncredited)", "id": 1438289, "credit_id": "550119389251413d9b0024ba", "cast_id": 126, "profile_path": null, "order": 64}, {"name": "Haylie Creppel", "character": "Child in the Park (uncredited)", "id": 1438290, "credit_id": "55011967c3a3685ba200294e", "cast_id": 127, "profile_path": null, "order": 65}, {"name": "Justin Edward Davis", "character": "Saratoga Park Pedestrian (uncredited)", "id": 1438302, "credit_id": "55011ca59251413da1002296", "cast_id": 128, "profile_path": null, "order": 66}, {"name": "Emily D. Haley", "character": "Tea Seller (uncredited)", "id": 1037370, "credit_id": "55011d449251414ea6000636", "cast_id": 129, "profile_path": null, "order": 67}, {"name": "Jim Johnson", "character": "Lower Class Pedestrian (uncredited)", "id": 1438303, "credit_id": "55011d90c3a3685ba60026ed", "cast_id": 130, "profile_path": null, "order": 68}, {"name": "Mark Joyce", "character": "Street Merchant (uncredited)", "id": 1438304, "credit_id": "55011dbe9251413da10022aa", "cast_id": 131, "profile_path": null, "order": 69}, {"name": "John C. Klein", "character": "Lumber Mill Customer (uncredited)", "id": 1438305, "credit_id": "55011de7c3a3685b9b002376", "cast_id": 132, "profile_path": null, "order": 70}, {"name": "Cynthia LeBlanc", "character": "Washington D.C. Pedestrian (uncredited)", "id": 1140085, "credit_id": "55011e2ec3a3685ba20029c1", "cast_id": 133, "profile_path": null, "order": 71}, {"name": "Elton LeBlanc", "character": "Hotel Dining Patron (uncredited)", "id": 1246772, "credit_id": "55011e779251413da80026c9", "cast_id": 134, "profile_path": "/iYdSkAu2keNfUKSw78PJJOExB8z.jpg", "order": 72}, {"name": "Gerard 'Jerry' Lewis", "character": "Slave Guard (uncredited)", "id": 1438307, "credit_id": "55011e9f9251413da5002395", "cast_id": 135, "profile_path": null, "order": 73}, {"name": "Kevonte Mcdonald", "character": "Slave (uncredited)", "id": 1438308, "credit_id": "55011ec79251413d9b00253f", "cast_id": 136, "profile_path": null, "order": 74}, {"name": "Ritchie Montgomery", "character": "Roadman (uncredited)", "id": 52885, "credit_id": "55011ef19251414ea6000655", "cast_id": 137, "profile_path": "/znNRxqrYkOskK3jlm3ftHyAzJDg.jpg", "order": 75}, {"name": "Myesha-Tiara", "character": "Edwin Epps's Slave (uncredited)", "id": 1438309, "credit_id": "55011f16c3a3685b9b002387", "cast_id": 138, "profile_path": null, "order": 76}, {"name": "Jason Owen", "character": "Safty (uncredited)", "id": 1438310, "credit_id": "55011f5ec3a3685b9e0023c6", "cast_id": 139, "profile_path": null, "order": 77}, {"name": "Shawn Parsons", "character": "Road Man (uncredited)", "id": 1070870, "credit_id": "5501205cc3a36826b9001037", "cast_id": 140, "profile_path": "/m75dCgDJ1kGgjrP52TJGp2y4HVY.jpg", "order": 78}, {"name": "Haley Powell", "character": "Slave Girl (uncredited)", "id": 1438311, "credit_id": "550120869251413d9b00255f", "cast_id": 141, "profile_path": null, "order": 79}, {"name": "Wayne P\u00e9re", "character": "Winslow (uncredited)", "id": 31528, "credit_id": "550120ecc3a3685ba20029f9", "cast_id": 142, "profile_path": null, "order": 80}, {"name": "Terrell Ransom Jr.", "character": "Slave Boy (uncredited)", "id": 1066609, "credit_id": "5501212e925141282f001d55", "cast_id": 143, "profile_path": null, "order": 81}, {"name": "Erin Rementer", "character": "Ballroom Dancer (uncredited)", "id": 1438314, "credit_id": "55012155c3a3685b96002632", "cast_id": 144, "profile_path": null, "order": 82}, {"name": "Andre Robinson", "character": "Slave Boy (uncredited)", "id": 1438315, "credit_id": "550121869251413d9b00257a", "cast_id": 145, "profile_path": null, "order": 83}, {"name": "Corrina Roshea", "character": "Slave Buyer (uncredited)", "id": 1438316, "credit_id": "550121ad9251413d9f002613", "cast_id": 146, "profile_path": null, "order": 84}, {"name": "Katherine Jeanie Russell", "character": "Upper Class Pedestrian (uncredited)", "id": 1438676, "credit_id": "5501da989251413d9f0032a1", "cast_id": 147, "profile_path": null, "order": 85}, {"name": "Jarett Shorts", "character": "Hornboy (uncredited)", "id": 1438677, "credit_id": "5501dabec3a3685ba60033a8", "cast_id": 148, "profile_path": null, "order": 86}, {"name": "Chaz Smith", "character": "Cigar Smoker (uncredited)", "id": 1438678, "credit_id": "5501dae5c3a3685ba60033b2", "cast_id": 149, "profile_path": null, "order": 87}, {"name": "Tyler Soerries", "character": "Boy Playing in Park (uncredited)", "id": 1438679, "credit_id": "5501db0fc3a3685ba60033ba", "cast_id": 150, "profile_path": null, "order": 88}, {"name": "Tre Tureaud", "character": "Saratoga Park Pedestrians (uncredited)", "id": 1438680, "credit_id": "5501db34c3a3685b9600328d", "cast_id": 151, "profile_path": null, "order": 89}, {"name": "Justin Christopher Vaughn", "character": "Ezra (uncredited)", "id": 1438681, "credit_id": "5501db5c9251413d9f0032ad", "cast_id": 152, "profile_path": null, "order": 90}, {"name": "Bob Walker", "character": "Abolitionist Landowner (uncredited)", "id": 1438682, "credit_id": "5501dc869251413da80033e6", "cast_id": 153, "profile_path": null, "order": 91}, {"name": "Caroline Grace Williamson", "character": "Ford Daughter (uncredited)", "id": 1438683, "credit_id": "5501dcad9251413da5002f92", "cast_id": 154, "profile_path": null, "order": 92}, {"name": "Timothy Wyant", "character": "Ford Lumber Buyer (uncredited)", "id": 1438684, "credit_id": "5501dcd7c3a3685b9e002ede", "cast_id": 155, "profile_path": null, "order": 93}], "directors": [{"name": "Steve McQueen", "department": "Directing", "job": "Director", "credit_id": "52fe492cc3a368484e11df9b", "profile_path": "/6w2fWkuhYQuv18OQi8cmSIq8srN.jpg", "id": 72757}], "vote_average": 8.0, "runtime": 134}, "10669": {"poster_path": "/ig4ciwj5bfiXlvZOdeCuewktJw6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46122355, "overview": "Intent on seeing the Cahulawassee River before it's turned into one huge lake, outdoor fanatic Lewis Medlock takes his friends on a river-rafting trip they'll never forget into the dangerous American back-country.", "video": false, "id": 10669, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Deliverance", "tagline": "This is the weekend they didn't play golf.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0068473", "adult": false, "backdrop_path": "/1iE3vVXx3Q7sFlJbNvNYsGHZEvO.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Elmer Enterprises", "id": 12282}], "release_date": "1972-07-30", "popularity": 0.643389890341031, "original_title": "Deliverance", "budget": 2000000, "cast": [{"name": "Jon Voight", "character": "Ed", "id": 10127, "credit_id": "52fe439f9251416c75017989", "cast_id": 13, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 0}, {"name": "Burt Reynolds", "character": "Lewis", "id": 16475, "credit_id": "52fe439f9251416c75017955", "cast_id": 2, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Bobby", "id": 13726, "credit_id": "52fe439f9251416c75017959", "cast_id": 3, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Ronny Cox", "character": "Drew", "id": 780, "credit_id": "52fe439f9251416c7501795d", "cast_id": 4, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 3}, {"name": "Ed Ramey", "character": "Alter Mann", "id": 66178, "credit_id": "52fe439f9251416c75017961", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Billy Redden", "character": "Lonnie", "id": 1152299, "credit_id": "52fe439f9251416c7501798d", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Seamon Glass", "character": "First Griner", "id": 153393, "credit_id": "52fe439f9251416c75017991", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Randall Deal", "character": "Second Griner", "id": 138884, "credit_id": "52fe439f9251416c75017995", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Bill McKinney", "character": "Mountain Man", "id": 16555, "credit_id": "52fe439f9251416c75017999", "cast_id": 17, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 8}], "directors": [{"name": "John Boorman", "department": "Directing", "job": "Director", "credit_id": "52fe439f9251416c75017967", "profile_path": "/8o9Z3rAFrn3JNBY5cUBKcqqCXYx.jpg", "id": 19665}], "vote_average": 7.6, "runtime": 109}, "92591": {"poster_path": "/yfYjg789qjxHCTTcyOqXtpoetQU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In this true story in the tiny, rural town of Carthage, TX, assistant funeral director Bernie Tiede was one of the town's most beloved residents. He taught Sunday school, sang in the church choir and was always willing to lend a helping hand. Everyone loved and appreciated Bernie, so it came as no surprise when he befriended Marjorie Nugent, an affluent widow who was as well known for her sour attitude as her fortune. Bernie frequently traveled with Marjorie and even managed her banking affairs. Marjorie quickly became fully dependent on Bernie and his generosity and Bernie struggled to meet her increasing demands. Bernie continued to handle her affairs, and the townspeople went months without seeing Marjorie. The people of Carthage were shocked when it was reported that Marjorie Nugent had been dead for some time, and Bernie Tiede was being charged with the murder.", "video": false, "id": 92591, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bernie", "tagline": "A story so unbelievable it must be true.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1704573", "adult": false, "backdrop_path": "/vtBvAKRWlvNCsdldduqBwy38oSB.jpg", "production_companies": [{"name": "Mandalay Vision", "id": 6667}, {"name": "Wind Dancer Productions", "id": 8116}, {"name": "Detour Filmproduction", "id": 11510}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Horsethief Pictures", "id": 6352}], "release_date": "2011-06-16", "popularity": 0.570769277857861, "original_title": "Bernie", "budget": 0, "cast": [{"name": "Jack Black", "character": "Bernie Tiede", "id": 70851, "credit_id": "52fe49039251416c750babe9", "cast_id": 13, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Shirley MacLaine", "character": "Marjorie Nugent", "id": 4090, "credit_id": "52fe49039251416c750babed", "cast_id": 14, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 1}, {"name": "Matthew McConaughey", "character": "Danny Buck Davidson", "id": 10297, "credit_id": "52fe49039251416c750babe5", "cast_id": 12, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 2}, {"name": "Tommy G. Kendrick", "character": "Larry Brumley", "id": 995329, "credit_id": "52fe49039251416c750babf1", "cast_id": 15, "profile_path": null, "order": 3}, {"name": "Gary Teague", "character": "Neighborhood Onlooker", "id": 131427, "credit_id": "52fe49039251416c750babf5", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Rick Dial", "character": "Don Leggett", "id": 308843, "credit_id": "52fe49039251416c750babf9", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Mona Lee Fultz", "character": "Cashier", "id": 79008, "credit_id": "52fe49039251416c750babfd", "cast_id": 18, "profile_path": "/NDIFJvOcdb6v9SosCZApjTluMg.jpg", "order": 6}, {"name": "Brady Coleman", "character": "Scrappy Holmes", "id": 111002, "credit_id": "52fe49039251416c750bac01", "cast_id": 19, "profile_path": "/lezl6XUlisuJiBr0ar48LsFthlv.jpg", "order": 7}, {"name": "Dale Dudley", "character": "Jerry", "id": 995330, "credit_id": "52fe49039251416c750bac05", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Grant James", "character": "Mr. Estes", "id": 116433, "credit_id": "52fe49039251416c750bac09", "cast_id": 21, "profile_path": "/sgOV6UORfBnba13gVlz38tnm7Wn.jpg", "order": 9}, {"name": "Veronica Orosco", "character": "Church Patron", "id": 1041561, "credit_id": "52fe49049251416c750bac37", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Christian Stokes", "character": "Truck Driver", "id": 575674, "credit_id": "52fe49049251416c750bac3b", "cast_id": 30, "profile_path": "/3Mduql3DgOxlBp00acdQU34Jwoj.jpg", "order": 11}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe49039251416c750baba5", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 6.5, "runtime": 100}, "10673": {"poster_path": "/iWDAsG7SYRnGsRBXf6sgfNvwkWM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.", "video": false, "id": 10673, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Wall Street", "tagline": "Every dream has a price.", "vote_count": 134, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dmGQDIrfvmr5rahYcVhpS2xx6oy.jpg", "id": 52783, "name": "Wall Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094291", "adult": false, "backdrop_path": "/za0qmvuPocJ6zz2GK1g9ETyDNt4.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1987-12-10", "popularity": 1.11255189787056, "original_title": "Wall Street", "budget": 15000000, "cast": [{"name": "Charlie Sheen", "character": "Bud Fox", "id": 6952, "credit_id": "52fe43a09251416c75017be3", "cast_id": 8, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 0}, {"name": "Michael Douglas", "character": "Gordon Gekko", "id": 3392, "credit_id": "52fe43a09251416c75017be7", "cast_id": 9, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 1}, {"name": "Martin Sheen", "character": "Carl Fox", "id": 8349, "credit_id": "52fe43a09251416c75017beb", "cast_id": 10, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 2}, {"name": "Daryl Hannah", "character": "Darien Taylor", "id": 589, "credit_id": "52fe43a09251416c75017bef", "cast_id": 11, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 3}, {"name": "John C. McGinley", "character": "Marvin", "id": 11885, "credit_id": "52fe43a09251416c75017c03", "cast_id": 16, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Lou Mannheim", "id": 11066, "credit_id": "52fe43a09251416c75017c07", "cast_id": 17, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Sean Young", "character": "Kate Gekko", "id": 586, "credit_id": "52fe43a09251416c75017c2f", "cast_id": 27, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 6}, {"name": "Terence Stamp", "character": "Sir Larry Wildman", "id": 28641, "credit_id": "52fe43a09251416c75017c2b", "cast_id": 26, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 7}, {"name": "James Spader", "character": "Roger Barnes", "id": 13548, "credit_id": "540d0ac9c3a36879ae004a55", "cast_id": 34, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 8}, {"name": "Chuck Pfeiffer", "character": "Chuckie (as Chuck Pfeifer)", "id": 118757, "credit_id": "52fe43a09251416c75017bff", "cast_id": 15, "profile_path": "/shBqO45qp7SscsWZGvJ1BclYpKL.jpg", "order": 9}, {"name": "Lauren Tom", "character": "Lady Broker", "id": 15100, "credit_id": "52fe43a09251416c75017bf3", "cast_id": 12, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 10}, {"name": "Tamara Tunie", "character": "Carolyn", "id": 42694, "credit_id": "52fe43a09251416c75017bf7", "cast_id": 13, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 11}, {"name": "Franklin Cover", "character": "Dan", "id": 166598, "credit_id": "52fe43a09251416c75017bfb", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "James Karen", "character": "Lynch", "id": 14852, "credit_id": "52fe43a09251416c75017c0b", "cast_id": 18, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 13}, {"name": "Saul Rubinek", "character": "Harry Salt", "id": 3712, "credit_id": "540d1418c3a36879ab004c60", "cast_id": 35, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 14}, {"name": "Leslie Lyles", "character": "Natalie", "id": 19469, "credit_id": "52fe43a09251416c75017c0f", "cast_id": 19, "profile_path": "/uUsBo2oIA6QDY7LKqs6wEzZKU7C.jpg", "order": 15}, {"name": "Faith Geer", "character": "Natalie's Assistant", "id": 569512, "credit_id": "52fe43a09251416c75017c13", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Frank Adonis", "character": "Charlie", "id": 4692, "credit_id": "52fe43a09251416c75017c17", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "John Capodice", "character": "Dominick", "id": 31007, "credit_id": "52fe43a09251416c75017c1b", "cast_id": 22, "profile_path": "/sQuJV9o2FSXr5UBo2MaiTLObXiY.jpg", "order": 18}, {"name": "Suzen Murakoshi", "character": "Girl in Bed", "id": 569513, "credit_id": "52fe43a09251416c75017c1f", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Dani Klein", "character": "Receptionist", "id": 171541, "credit_id": "52fe43a09251416c75017c23", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Fran\u00e7ois Giroday", "character": "Alex", "id": 86169, "credit_id": "52fe43a09251416c75017c27", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Paul Guilfoyle", "character": "Stone Livingston", "id": 925, "credit_id": "52fe43a09251416c75017c33", "cast_id": 28, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 22}, {"name": "Monique van Vooren", "character": "Woman at '21'", "id": 29916, "credit_id": "52fe43a09251416c75017c37", "cast_id": 29, "profile_path": "/5qHx9L7Zn9ZHOf2hv2FdOapLhSp.jpg", "order": 23}, {"name": "Sylvia Miles", "character": "Dolores the Realtor", "id": 19335, "credit_id": "52fe43a09251416c75017c3b", "cast_id": 30, "profile_path": "/osHOZQ4Mu9xyNDT79fgeSgJeLlH.jpg", "order": 24}, {"name": "Annie McEnroe", "character": "Muffie Livingston", "id": 34535, "credit_id": "52fe43a09251416c75017c3f", "cast_id": 31, "profile_path": "/yjaUtjmCnF0PrKmE7bpVNEUFRP0.jpg", "order": 25}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe43a09251416c75017bc7", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.7, "runtime": 126}, "10674": {"poster_path": "/ztD0iLfeyESQZV95GwPeSE3Uyqn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 304320254, "overview": "A tomboyish girl disguises herself as a young man so she can fight with the Imperial Chinese Army against the invading Huns. With help from wise-cracking dragon Mushu, Mulan just might save her country -- and win the heart of handsome Captain Li Shang.", "video": false, "id": 10674, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Mulan", "tagline": "This time, the princess saves the prince.", "vote_count": 467, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zruSw8cPMrB753gisLZcbHISS8x.jpg", "poster_path": "/1fjZKATXsAKvtO6uJqCiNL5u4mK.jpg", "id": 87236, "name": "Mulan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0120762", "adult": false, "backdrop_path": "/lfwwqgMWZn6Th56hHOue9syKO3l.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1998-06-18", "popularity": 1.66512617762069, "original_title": "Mulan", "budget": 90000000, "cast": [{"name": "Ming-Na Wen", "character": "Mulan (voice)", "id": 21702, "credit_id": "52fe43a09251416c75017cd5", "cast_id": 16, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 0}, {"name": "Lea Salonga", "character": "Mulan (singing voice)", "id": 15838, "credit_id": "52fe43a09251416c75017cb7", "cast_id": 8, "profile_path": "/2ox720dGoY45wSzRLT2XKeAseor.jpg", "order": 1}, {"name": "June Foray", "character": "Grandmother Fa (voice)", "id": 15098, "credit_id": "52fe43a09251416c75017ce5", "cast_id": 20, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 2}, {"name": "Soon-Tek Oh", "character": "Fa Zhou (voice)", "id": 10345, "credit_id": "52fe43a09251416c75017cf9", "cast_id": 25, "profile_path": "/6ZNOhKG5ZhqVhVb3qbdZSZ1np65.jpg", "order": 3}, {"name": "Freda Foh Shen", "character": "Fa Li (voice)", "id": 51754, "credit_id": "52fe43a09251416c75017ce1", "cast_id": 19, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 4}, {"name": "James Hong", "character": "Chi Fu (voice)", "id": 20904, "credit_id": "52fe43a09251416c75017ce9", "cast_id": 21, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 5}, {"name": "BD Wong", "character": "Shang (voice)", "id": 14592, "credit_id": "52fe43a09251416c75017cd1", "cast_id": 15, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 6}, {"name": "Donny Osmond", "character": "Shang (singing voice)", "id": 140567, "credit_id": "52fe43a09251416c75017cfd", "cast_id": 26, "profile_path": "/u82A7dinGiZVDrg5pajB61ntS5u.jpg", "order": 7}, {"name": "Pat Morita", "character": "The Emperor (voice)", "id": 23915, "credit_id": "52fe43a09251416c75017cf1", "cast_id": 23, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 8}, {"name": "Harvey Fierstein", "character": "Yao (voice)", "id": 7420, "credit_id": "52fe43a09251416c75017cdd", "cast_id": 18, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 9}, {"name": "Eddie Murphy", "character": "Mushu (voice)", "id": 776, "credit_id": "52fe43a09251416c75017cbb", "cast_id": 10, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 10}, {"name": "Marni Nixon", "character": "Grandmother Fa (singing voice)", "id": 187678, "credit_id": "52fe43a09251416c75017cf5", "cast_id": 24, "profile_path": "/hPWlkETSB5V7OQkixZic3QDxmwq.jpg", "order": 11}, {"name": "George Takei", "character": "First Ancestor (voice)", "id": 1752, "credit_id": "52fe43a09251416c75017d05", "cast_id": 28, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 12}, {"name": "Jerry Tondo", "character": "Chien-Po (voice)", "id": 71858, "credit_id": "52fe43a09251416c75017d09", "cast_id": 29, "profile_path": "/ui6AU4y7GrlDwNLgN46kRcKppf7.jpg", "order": 13}, {"name": "Gedde Watanabe", "character": "Ling (voice)", "id": 16183, "credit_id": "52fe43a09251416c75017d0d", "cast_id": 30, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 14}, {"name": "Miguel Ferrer", "character": "Shan-Yu (voice)", "id": 15860, "credit_id": "52fe43a09251416c75017cd9", "cast_id": 17, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 15}, {"name": "James Shigeta", "character": "General Li (voice)", "id": 4995, "credit_id": "52fe43a09251416c75017d01", "cast_id": 27, "profile_path": "/rBqmvcdbuMU7NCOxqmfjSxZfDsh.jpg", "order": 16}, {"name": "Frank Welker", "character": "Khan / Cri-Kee (voice)", "id": 15831, "credit_id": "52fe43a09251416c75017d11", "cast_id": 31, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 17}, {"name": "Miriam Margolyes", "character": "The Matchmaker (voice)", "id": 6199, "credit_id": "52fe43a09251416c75017ced", "cast_id": 22, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 18}, {"name": "Matthew Wilder", "character": "Ling (singing voice)", "id": 129889, "credit_id": "52fe43a09251416c75017d15", "cast_id": 32, "profile_path": "/2cxG4iZFmJifTY1sJzmaMyg3gEn.jpg", "order": 19}], "directors": [{"name": "Tony Bancroft", "department": "Directing", "job": "Director", "credit_id": "52fe43a09251416c75017c8f", "profile_path": null, "id": 66190}, {"name": "Barry Cook", "department": "Directing", "job": "Director", "credit_id": "52fe43a09251416c75017c95", "profile_path": "/j2SNU8S0RGxs9jWnm71GJRyOIc0.jpg", "id": 66191}], "vote_average": 6.9, "runtime": 88}, "2486": {"poster_path": "/xKv0dHXe4RORNDCGnFkIYWjv5tI.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 249288105, "overview": "In his homeland of Alagaesia, a farm boy happens upon a dragon's egg -- a discovery that leads him on a predestined journey where he realized he's the one person who can defend his home against an evil king.", "video": false, "id": 2486, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Eragon", "tagline": "When darkness falls, a hero will ride.", "vote_count": 237, "homepage": "http://www.eragonmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449010", "adult": false, "backdrop_path": "/pugQ0pfT7bz9MFf6EFh2P3fBjkp.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Major Studio Partners", "id": 445}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2006-12-13", "popularity": 0.727381612042469, "original_title": "Eragon", "budget": 100000000, "cast": [{"name": "Ed Speleers", "character": "Eragon", "id": 25438, "credit_id": "52fe435ac3a36847f804dd99", "cast_id": 1, "profile_path": "/7FIPZ8fZupVSp7yTpCWGLyWtYlS.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Brom", "id": 16940, "credit_id": "52fe435ac3a36847f804dd9d", "cast_id": 2, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "Sienna Guillory", "character": "Arya", "id": 7055, "credit_id": "52fe435ac3a36847f804dda1", "cast_id": 3, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 2}, {"name": "Robert Carlyle", "character": "Durza", "id": 18023, "credit_id": "52fe435ac3a36847f804dda5", "cast_id": 4, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 3}, {"name": "John Malkovich", "character": "Kung Galbatorix", "id": 6949, "credit_id": "52fe435ac3a36847f804dda9", "cast_id": 5, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Garrett Hedlund", "character": "Murtagh", "id": 9828, "credit_id": "52fe435ac3a36847f804ddad", "cast_id": 6, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 5}, {"name": "Alun Armstrong", "character": "Morbror Garrow", "id": 2629, "credit_id": "52fe435ac3a36847f804ddb1", "cast_id": 7, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 6}, {"name": "Gary Lewis", "character": "Kung Hrothgar", "id": 480, "credit_id": "52fe435ac3a36847f804ddb5", "cast_id": 9, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 8}, {"name": "Djimon Hounsou", "character": "Ajihad", "id": 938, "credit_id": "52fe435ac3a36847f804ddb9", "cast_id": 10, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 9}, {"name": "Rachel Weisz", "character": "Saphiras r\u00f6st", "id": 3293, "credit_id": "52fe435ac3a36847f804ddbd", "cast_id": 11, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 10}, {"name": "Richard Rifkin", "character": "Horst", "id": 25440, "credit_id": "52fe435ac3a36847f804ddc1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Steve Speirs", "character": "Sloan", "id": 25441, "credit_id": "52fe435ac3a36847f804ddc5", "cast_id": 13, "profile_path": "/cCNJouXVxnXJv9j26PaEWJxIkOE.jpg", "order": 12}, {"name": "Joss Stone", "character": "Angela", "id": 25442, "credit_id": "52fe435ac3a36847f804ddc9", "cast_id": 14, "profile_path": "/ttGQ7bi2ZEZnlYWdilVWd6VTqHN.jpg", "order": 13}, {"name": "Michael Mehlmann", "character": "Bybo # 1", "id": 25443, "credit_id": "52fe435ac3a36847f804ddcd", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Tam\u00e1s De\u00e1k", "character": "Bybo # 2", "id": 25444, "credit_id": "52fe435ac3a36847f804ddd1", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Matt Devere", "character": "Kapten", "id": 25445, "credit_id": "52fe435ac3a36847f804ddd5", "cast_id": 17, "profile_path": "/mtp0cfPOGZG2aLEw0N6RuJFYA6j.jpg", "order": 16}, {"name": "M\u00e1t\u00e9 Haumann", "character": "Soldat", "id": 25446, "credit_id": "52fe435ac3a36847f804ddd9", "cast_id": 18, "profile_path": "/hbEOBOxhXIdOZYgWUFsTws5fEYf.jpg", "order": 17}, {"name": "Andrea Fazekas", "character": "Horsts fru", "id": 25447, "credit_id": "52fe435ac3a36847f804dddd", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Caroline Chikezie", "character": "Nasuada", "id": 25448, "credit_id": "52fe435ac3a36847f804dde1", "cast_id": 20, "profile_path": "/qXHS3UhFx2dd6tSuBpPqfSbAy3.jpg", "order": 19}, {"name": "\u00c1gnes B\u00e1nfalvy", "character": "Fru hos Varden", "id": 25449, "credit_id": "52fe435ac3a36847f804dde5", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "P\u00e1l Makrai", "character": "Wache der Varden", "id": 25450, "credit_id": "52fe435ac3a36847f804dde9", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Spencer Wilding", "character": "Razac # 1", "id": 25451, "credit_id": "52fe435ac3a36847f804dded", "cast_id": 23, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 22}, {"name": "G\u00e1bor Hortob\u00e1gyi", "character": "Razac # 2", "id": 25452, "credit_id": "52fe435ac3a36847f804ddf1", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Christopher Egan", "character": "", "id": 1312315, "credit_id": "552265abc3a3684dd4005dfc", "cast_id": 49, "profile_path": "/bheD2SRyi1UtAC6VXBj2K9fNZ0C.jpg", "order": 24}], "directors": [{"name": "Stefen Fangmeier", "department": "Directing", "job": "Director", "credit_id": "52fe435ac3a36847f804ddf7", "profile_path": "/fv6ObyJnaielYg2YbgHFbszinYd.jpg", "id": 25453}], "vote_average": 4.7, "runtime": 104}, "10679": {"poster_path": "/cHbKiMtqJLHOJwgJHoKglir6rNi.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FI", "name": "Finland"}], "revenue": 2523739, "overview": "In the last moments of World War II, a secret Nazi space program evaded destruction by fleeing to the Dark Side of the Moon. During 70 years of utter secrecy, the Nazis construct a gigantic space fortress with a massive armada of flying saucers.", "video": false, "id": 10679, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Sky", "tagline": "We come in peace!", "vote_count": 198, "homepage": "http://www.ironsky.net/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 312977, "name": "Iron Sky Collection"}, "original_language": "fi", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1034314", "adult": false, "backdrop_path": "/mIOWtdsUg9VZXVMwVdO30TejAxn.jpg", "production_companies": [{"name": "Blind Spot Pictures Oy", "id": 7330}, {"name": "27 Films Production", "id": 9282}, {"name": "New Holland Pictures", "id": 10229}], "release_date": "2012-04-03", "popularity": 0.791817383832949, "original_title": "Iron Sky", "budget": 7500000, "cast": [{"name": "Julia Dietze", "character": "Renate Richter", "id": 6674, "credit_id": "52fe43a19251416c75017fab", "cast_id": 4, "profile_path": "/jbR4JueL03RoSX7JlEdCUrDL8k8.jpg", "order": 0}, {"name": "Christopher Kirby", "character": "James Washington", "id": 75175, "credit_id": "52fe43a19251416c75017faf", "cast_id": 5, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 1}, {"name": "G\u00f6tz Otto", "character": "Klaus Adler", "id": 10744, "credit_id": "52fe43a19251416c75017fb3", "cast_id": 7, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 2}, {"name": "Udo Kier", "character": "Wolfgang Kortzfleisch", "id": 1646, "credit_id": "52fe43a19251416c75017fbb", "cast_id": 9, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 3}, {"name": "Stephanie Paul", "character": "Jenna Bush", "id": 936496, "credit_id": "52fe43a19251416c75017fbf", "cast_id": 10, "profile_path": "/lBoLBnYlzBtxdx1NsyiD76LnFym.jpg", "order": 4}, {"name": "Peta Sergeant", "character": "Vivian Wagner", "id": 1234188, "credit_id": "52fe43a19251416c75017fe5", "cast_id": 21, "profile_path": "/6bBsXTbMtmEMh4CuzR7tbctucqs.jpg", "order": 5}, {"name": "Tilo Pr\u00fcckner", "character": "Doctor Richter", "id": 13812, "credit_id": "52fe43a19251416c75017fb7", "cast_id": 8, "profile_path": "/b1CKloEXUcA1mXEgPcDHEHWiH63.jpg", "order": 6}, {"name": "Nick Dong-Sik", "character": "North Korean Representative", "id": 556728, "credit_id": "52fe43a19251416c75017fd7", "cast_id": 16, "profile_path": "/3KappMnbXLvMaR93xLtz3j9xHGg.jpg", "order": 7}, {"name": "Yuki Iwamoto", "character": "Japanese Representative", "id": 53174, "credit_id": "52fe43a19251416c75017fd3", "cast_id": 15, "profile_path": "/bUHh5Y6jvJdnMEIb8UmIh3V7hvz.jpg", "order": 8}, {"name": "Claus Wilcke", "character": "Russian Representative", "id": 36856, "credit_id": "52fe43a19251416c75017fe9", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Irshad Panjatan", "character": "Indian Representative", "id": 35540, "credit_id": "52fe43a19251416c75017fed", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Samir Fuchs", "character": "Middle East Representative", "id": 1094448, "credit_id": "52fe43a19251416c75017ff1", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Tom Ho\u00dfbach", "character": "Dieter", "id": 150804, "credit_id": "52fe43a19251416c75017fc3", "cast_id": 11, "profile_path": "/hl5P660scf9BPcY7aA0CpGi7EoK.jpg", "order": 12}, {"name": "Kym Jackson", "character": "Julia McLennan", "id": 999445, "credit_id": "52fe43a19251416c75017fc7", "cast_id": 12, "profile_path": "/mcqEkFJ4EmQJE58bZi1FswaX5ig.jpg", "order": 13}, {"name": "Jim Knobeloch", "character": "Nazi Weapons Officer", "id": 199432, "credit_id": "52fe43a19251416c75017fcb", "cast_id": 13, "profile_path": "/ndiYsn4J7bBk5gJ3aVKkF3RFLkh.jpg", "order": 14}, {"name": "Monika Gossmann", "character": "Designer", "id": 999446, "credit_id": "52fe43a19251416c75017fcf", "cast_id": 14, "profile_path": "/aMK4uDhftdNE8z6J4nc4Q9blqDv.jpg", "order": 15}, {"name": "Martin Grelis", "character": "2nd GWB Officer", "id": 999448, "credit_id": "52fe43a19251416c75017fdb", "cast_id": 19, "profile_path": "/dCQi5riuITw7xhDCob1cwmOWzUR.jpg", "order": 16}, {"name": "Andrew Buchanan", "character": "3rd GWB Officer", "id": 1325838, "credit_id": "53bb21f9c3a368662300038e", "cast_id": 39, "profile_path": "/nlaUZ1PqcmGpX2Cng8U7Z5GudX0.jpg", "order": 17}], "directors": [{"name": "Timo Vuorensola", "department": "Directing", "job": "Director", "credit_id": "52fe43a19251416c75017f9b", "profile_path": "/vOvgjfKURnz7HledfDyEY3JfQ9Z.jpg", "id": 66212}], "vote_average": 5.7, "runtime": 93}, "10681": {"poster_path": "/9cJETuLMc6R0bTWRA5i7ctY9bxk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 521311860, "overview": "WALL\u2022E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean up the mess, but has developed some rather interesting human-like qualities. When a ship arrives with a sleek new type of robot, WALL\u2022E thinks he's finally found a friend and stows away on the ship when it leaves.", "video": false, "id": 10681, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "WALL\u00b7E", "tagline": "An adventure beyond the ordinar-E.", "vote_count": 2607, "homepage": "http://disney.go.com/disneypictures/wall-e/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0910970", "adult": false, "backdrop_path": "/2nFyTvssbtJMLC6eyYwwZ88gALD.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2008-06-22", "popularity": 2.7597075537853, "original_title": "WALL\u00b7E", "budget": 180000000, "cast": [{"name": "Ben Burtt", "character": "WALL\u00b7E / M-O (voice)", "id": 670, "credit_id": "52fe43a29251416c75018111", "cast_id": 12, "profile_path": "/pYSkspLspSDVLZUQ43pByOebsCX.jpg", "order": 0}, {"name": "Elissa Knight", "character": "EVE (voice)", "id": 72754, "credit_id": "52fe43a29251416c75018115", "cast_id": 13, "profile_path": "/21JKhZc6bTAoHcwSjQhZcdhhx5d.jpg", "order": 1}, {"name": "Jeff Garlin", "character": "Captain (voice)", "id": 60074, "credit_id": "52fe43a29251416c75018119", "cast_id": 14, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 2}, {"name": "Fred Willard", "character": "Shelby Forthright, BnL CEO", "id": 20753, "credit_id": "52fe43a29251416c7501811d", "cast_id": 21, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 3}, {"name": "John Ratzenberger", "character": "", "id": 7907, "credit_id": "53c61bc6c3a3686251001af8", "cast_id": 22, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 4}, {"name": "Sigourney Weaver", "character": "Ship's Computer (voice)", "id": 10205, "credit_id": "546a2cedeaeb816b4b0038ab", "cast_id": 23, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 5}], "directors": [{"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe43a29251416c750180d1", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}], "vote_average": 7.4, "runtime": 98}, "10684": {"poster_path": "/lPAzGRgc2afaGsYwFX7Iez8gzmq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A US Army officer had made a \"friendly fire\" mistake that was covered up and he was reassigned to a desk job. Later he was tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor posthumously. At first all seemed in order then he begins to notice inconsistencies between the testimonies of the witnesses....", "video": false, "id": 10684, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Courage Under Fire", "tagline": "A medal for honor. A search for justice. A battle for truth.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115956", "adult": false, "backdrop_path": "/oplJNCsJhBPGhANhHp9uTpwWpx.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1996-07-04", "popularity": 0.214147902270698, "original_title": "Courage Under Fire", "budget": 46000000, "cast": [{"name": "Denzel Washington", "character": "Lieutenant Colonel Nathaniel Serling", "id": 5292, "credit_id": "52fe43a29251416c7501819d", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Captain Karen Emma Walden", "id": 5344, "credit_id": "52fe43a29251416c750181a1", "cast_id": 2, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Lou Diamond Phillips", "character": "Staff Sergeant John Monfriez", "id": 38560, "credit_id": "52fe43a29251416c750181a5", "cast_id": 3, "profile_path": "/afXcQRss7rZ6Ocx7PUQFbz7tPOm.jpg", "order": 2}, {"name": "Matt Damon", "character": "Ilario", "id": 1892, "credit_id": "52fe43a29251416c750181d1", "cast_id": 11, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 3}, {"name": "Michael Moriarty", "character": "Brigadier General Hershberg", "id": 21030, "credit_id": "52fe43a29251416c750181a9", "cast_id": 4, "profile_path": "/vWDVdQpYvCS0ez1z0zk5N9BffY9.jpg", "order": 4}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe43a29251416c750181af", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.1, "runtime": 117}, "2493": {"poster_path": "/gpxjoE0yvRwIhFEJgNArtKtaN7S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30857814, "overview": "In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.", "video": false, "id": 2493, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Princess Bride", "tagline": "It's as real as the feelings you feel.", "vote_count": 696, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093779", "adult": false, "backdrop_path": "/npIKgqpD8jbowpem9L3U4NUkEO3.jpg", "production_companies": [{"name": "The Princess Bride Ltd.", "id": 49243}, {"name": "Act III Communications", "id": 1153}, {"name": "Buttercup Films Ltd.", "id": 49244}], "release_date": "1987-09-18", "popularity": 1.04007846200596, "original_title": "The Princess Bride", "budget": 16000000, "cast": [{"name": "Cary Elwes", "character": "Westley", "id": 2130, "credit_id": "52fe435ac3a36847f804df59", "cast_id": 2, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 0}, {"name": "Robin Wright", "character": "Buttercup", "id": 32, "credit_id": "52fe435ac3a36847f804df5d", "cast_id": 3, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 1}, {"name": "Mandy Patinkin", "character": "Inigo Montoya", "id": 25503, "credit_id": "52fe435ac3a36847f804df69", "cast_id": 6, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 2}, {"name": "Andr\u00e9 the Giant", "character": "Fezzik", "id": 25504, "credit_id": "52fe435ac3a36847f804df6d", "cast_id": 7, "profile_path": "/wVlQm9XEs9Nvvmf9vcXEFmXYae2.jpg", "order": 3}, {"name": "Chris Sarandon", "character": "Prince Humperdinck", "id": 14541, "credit_id": "52fe435ac3a36847f804df61", "cast_id": 4, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 4}, {"name": "Christopher Guest", "character": "Count Tyrone Rugen", "id": 13524, "credit_id": "52fe435ac3a36847f804df81", "cast_id": 12, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Vizzini", "id": 12900, "credit_id": "52fe435ac3a36847f804df65", "cast_id": 5, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "Peter Falk", "character": "Grandfather", "id": 2314, "credit_id": "52fe435ac3a36847f804df7d", "cast_id": 11, "profile_path": "/mjgykviG6rY2WlF14aeDRsvVA6x.jpg", "order": 7}, {"name": "Billy Crystal", "character": "Miracle Max", "id": 7904, "credit_id": "52fe435ac3a36847f804df71", "cast_id": 8, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 8}, {"name": "Fred Savage", "character": "Grandson", "id": 2223, "credit_id": "52fe435ac3a36847f804df79", "cast_id": 10, "profile_path": "/q6u7yhINrALOC9wD2tc6mifQ9sJ.jpg", "order": 9}, {"name": "Carol Kane", "character": "Valerie", "id": 10556, "credit_id": "52fe435ac3a36847f804df75", "cast_id": 9, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 10}, {"name": "Mel Smith", "character": "The Albino", "id": 141450, "credit_id": "52fe435ac3a36847f804df91", "cast_id": 17, "profile_path": "/WutScDw47AhIIErXEZtmI5KvGh.jpg", "order": 11}, {"name": "Peter Cook", "character": "The Impressive Clergyman", "id": 18266, "credit_id": "53dedab7c3a3686c5d001b38", "cast_id": 18, "profile_path": "/5l1lXeD3cCKQ58AXt5p040LNzpQ.jpg", "order": 12}, {"name": "Willoughby Gray", "character": "The King", "id": 10664, "credit_id": "54c2f8619251416185000351", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe435ac3a36847f804df55", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.5, "runtime": 98}, "124459": {"poster_path": "/5WpMIIEfRaJL2WrgQMImu4S79ME.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27437881, "overview": "After breaking up with his longtime stage partner, a famous but jaded Vegas magician fights for relevance when a new, \"hip\" street magician appears on the scene.", "video": false, "id": 124459, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Incredible Burt Wonderstone", "tagline": "Abracatastic!", "vote_count": 481, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790628", "adult": false, "backdrop_path": "/nl7fSIHSYYUSb1kTOUlWA5DLH7D.jpg", "production_companies": [{"name": "Benderspink", "id": 11175}, {"name": "Carousel Productions", "id": 11176}], "release_date": "2013-03-15", "popularity": 1.27589072358301, "original_title": "The Incredible Burt Wonderstone", "budget": 30000000, "cast": [{"name": "Steve Carell", "character": "Burt Wonderstone", "id": 4495, "credit_id": "52fe4aacc3a368484e161031", "cast_id": 5, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Jim Carrey", "character": "Steve Gray", "id": 206, "credit_id": "52fe4aacc3a368484e161035", "cast_id": 6, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Anton Marvelton", "id": 884, "credit_id": "52fe4aacc3a368484e161039", "cast_id": 7, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Olivia Wilde", "character": "Jane", "id": 59315, "credit_id": "52fe4aacc3a368484e16103d", "cast_id": 8, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 3}, {"name": "James Gandolfini", "character": "Doug Munny", "id": 4691, "credit_id": "52fe4aacc3a368484e161041", "cast_id": 9, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 4}, {"name": "Alan Arkin", "character": "Rance Holloway", "id": 1903, "credit_id": "52fe4aacc3a368484e161045", "cast_id": 10, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 5}, {"name": "Jay Mohr", "character": "Rick the Implausible", "id": 12217, "credit_id": "52fe4aacc3a368484e161049", "cast_id": 11, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 6}, {"name": "Gillian Jacobs", "character": "Miranda", "id": 94098, "credit_id": "52fe4aacc3a368484e16104d", "cast_id": 12, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 7}, {"name": "Brad Garrett", "character": "Dom", "id": 18, "credit_id": "5327b0ecc3a368315e0016f1", "cast_id": 13, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 8}, {"name": "David Copperfield", "character": "Himself", "id": 570335, "credit_id": "5327b145c3a3683152001684", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Michael Herbig", "character": "Lucius Belvedere", "id": 18072, "credit_id": "53362641c3a3680e9f00045e", "cast_id": 15, "profile_path": "/n4HuBxCVORNVdZaPQa2sanSFNMF.jpg", "order": 10}], "directors": [{"name": "Don Scardino", "department": "Directing", "job": "Director", "credit_id": "52fe4aacc3a368484e16101b", "profile_path": "/6rBKmyqtLd2elNYUk1lDqgbsOue.jpg", "id": 93419}], "vote_average": 5.2, "runtime": 100}, "2501": {"poster_path": "/bXQIL36VQdzJ69lcjQR1WQzJqQR.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214034224, "overview": "Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. Bourne realizes, though, that he has the combat and mental skills of a world-class spy, but who does he work for?", "video": false, "id": 2501, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Identity", "tagline": "He was the perfect weapon until he became the target.", "vote_count": 1734, "homepage": "http://www.universalstudiosentertainment.com/the-bourne-identity/", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0258463", "adult": false, "backdrop_path": "/vACyyzY1VZnHEl5AnzjLgDf6SRM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Hypnotic", "id": 7384}, {"name": "Kalima Productions GmbH & Co. KG", "id": 7385}, {"name": "Stillking Films", "id": 11345}], "release_date": "2002-06-06", "popularity": 1.62465429553229, "original_title": "The Bourne Identity", "budget": 60000000, "cast": [{"name": "Matt Damon", "character": "Jason Bourne", "id": 1892, "credit_id": "52fe435ac3a36847f804dffd", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Franka Potente", "character": "Marie Helena Kreutz", "id": 679, "credit_id": "52fe435ac3a36847f804e001", "cast_id": 9, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Alexander Conklin", "id": 2955, "credit_id": "52fe435ac3a36847f804e005", "cast_id": 10, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Clive Owen", "character": "The Professor", "id": 2296, "credit_id": "52fe435ac3a36847f804e009", "cast_id": 11, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 3}, {"name": "Brian Cox", "character": "Ward Abbott", "id": 1248, "credit_id": "52fe435ac3a36847f804e00d", "cast_id": 12, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Wombosi", "id": 31164, "credit_id": "52fe435ac3a36847f804e02f", "cast_id": 18, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 5}, {"name": "Julia Stiles", "character": "Nicolette", "id": 12041, "credit_id": "52fe435ac3a36847f804e033", "cast_id": 19, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 6}, {"name": "Gabriel Mann", "character": "Zorn", "id": 32458, "credit_id": "52fe435ac3a36847f804e067", "cast_id": 28, "profile_path": "/bv6zwRM5pKaETM3XdnLe7JFzVVI.jpg", "order": 7}, {"name": "Walton Goggins", "character": "Research Tech", "id": 27740, "credit_id": "52fe435ac3a36847f804e06b", "cast_id": 29, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 8}, {"name": "Josh Hamilton", "character": "Research Tech", "id": 52419, "credit_id": "52fe435ac3a36847f804e06f", "cast_id": 30, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 9}, {"name": "Orso Maria Guerrini", "character": "Giancarlo", "id": 27198, "credit_id": "52fe435ac3a36847f804e073", "cast_id": 31, "profile_path": "/9Gpe7JoCuCeKqiriAqDsrvOVBLi.jpg", "order": 10}, {"name": "Tim Dutton", "character": "Eamon", "id": 49965, "credit_id": "52fe435ac3a36847f804e077", "cast_id": 32, "profile_path": "/lYzAZgSn1dkZp7s9NXzO0ke9Nrn.jpg", "order": 11}, {"name": "Denis Braccini", "character": "Picot", "id": 271623, "credit_id": "52fe435ac3a36847f804e07b", "cast_id": 33, "profile_path": "/tsyErtX1vcOtuTnDG7lr3UlUDfN.jpg", "order": 12}, {"name": "Nicky Naude", "character": "Castel", "id": 370383, "credit_id": "52fe435ac3a36847f804e07f", "cast_id": 34, "profile_path": "/7o0JhUIHRd7R0A5yY6g0blNNQNf.jpg", "order": 13}, {"name": "David Selburg", "character": "Marshall", "id": 153938, "credit_id": "52fe435bc3a36847f804e083", "cast_id": 35, "profile_path": "/jJmRPiieI1eIgVRccEl4U8m04kU.jpg", "order": 14}, {"name": "Demetri Goritsas", "character": "Com Tech", "id": 20471, "credit_id": "52fe435bc3a36847f804e087", "cast_id": 36, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 15}, {"name": "Russell Levy", "character": "Manheim", "id": 1117335, "credit_id": "52fe435bc3a36847f804e08b", "cast_id": 37, "profile_path": "/8hdmkcjEdwuzin4AZrz3luEt9i5.jpg", "order": 16}, {"name": "Anthony Green", "character": "Security Chief", "id": 153208, "credit_id": "52fe435bc3a36847f804e08f", "cast_id": 38, "profile_path": "/gVi3WW7Icv77cNGYibTKgz2q0eG.jpg", "order": 17}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe435ac3a36847f804dfe1", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 7.0, "runtime": 119}, "2502": {"poster_path": "/6a74OaZArLNNDHK9SdiLBUu2JYj.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176000000, "overview": "When a CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.", "video": false, "id": 2502, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Supremacy", "tagline": "They should have left him alone.", "vote_count": 1116, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0372183", "adult": false, "backdrop_path": "/86dbA7HYT5x2OVh4xzUIUiay7fm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Motion Picture THETA Produktionsgesellschaft", "id": 11346}, {"name": "The Kennedy/Marshall Company", "id": 862}, {"name": "Ludlum Entertainment", "id": 11347}, {"name": "Hypnotic", "id": 7384}], "release_date": "2004-07-23", "popularity": 1.27601612059888, "original_title": "The Bourne Supremacy", "budget": 75000000, "cast": [{"name": "Matt Damon", "character": "Jason Bourne", "id": 1892, "credit_id": "52fe435bc3a36847f804e0f3", "cast_id": 6, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Brian Cox", "character": "Ward Abbott", "id": 1248, "credit_id": "52fe435bc3a36847f804e0fb", "cast_id": 8, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 1}, {"name": "Julia Stiles", "character": "Nicky", "id": 12041, "credit_id": "52fe435bc3a36847f804e0ff", "cast_id": 9, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 2}, {"name": "Joan Allen", "character": "Pamela Landy", "id": 11148, "credit_id": "52fe435bc3a36847f804e103", "cast_id": 10, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 3}, {"name": "Karl Urban", "character": "Kirill", "id": 1372, "credit_id": "52fe435bc3a36847f804e107", "cast_id": 11, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 4}, {"name": "Franka Potente", "character": "Marie", "id": 679, "credit_id": "52fe435bc3a36847f804e0f7", "cast_id": 7, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 5}, {"name": "Marton Csokas", "character": "Jarda", "id": 20982, "credit_id": "52fe435bc3a36847f804e10b", "cast_id": 12, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 6}, {"name": "Karel Roden", "character": "Gretkov", "id": 10841, "credit_id": "52fe435bc3a36847f804e10f", "cast_id": 13, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 7}, {"name": "Tom Gallop", "character": "Tom Cronin", "id": 27030, "credit_id": "52fe435bc3a36847f804e11f", "cast_id": 16, "profile_path": "/t799Vz0ATVN24NmXpvFOPkrJLU9.jpg", "order": 8}, {"name": "Michelle Monaghan", "character": "Kim", "id": 11705, "credit_id": "52fe435bc3a36847f804e123", "cast_id": 17, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 9}, {"name": "Oksana Akinshina", "character": "Irena Neski", "id": 77667, "credit_id": "52fe435bc3a36847f804e127", "cast_id": 18, "profile_path": "/sgG7JJIGOfCWEaoWnXPE5oZ3VnX.jpg", "order": 10}, {"name": "Ethan Sandler", "character": "Kurt", "id": 166654, "credit_id": "52fe435bc3a36847f804e173", "cast_id": 31, "profile_path": "/biCZAwndeR6QiBQ4etNeeI0XUVM.jpg", "order": 11}, {"name": "Tomas Arana", "character": "Martin Marshall", "id": 941, "credit_id": "52fe435bc3a36847f804e177", "cast_id": 32, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 12}, {"name": "Tim Griffin", "character": "John Nevins", "id": 27031, "credit_id": "53a6b3cbc3a3687a40003015", "cast_id": 47, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 13}, {"name": "Maxim Kovalevski", "character": "Ivan", "id": 43456, "credit_id": "53a6b4f10e0a2614320037b3", "cast_id": 48, "profile_path": null, "order": 14}, {"name": "Jon Collin Barclay", "character": "Jarhead", "id": 1099879, "credit_id": "53a6b5130e0a261442003743", "cast_id": 49, "profile_path": null, "order": 15}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe435bc3a36847f804e0dd", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 7.0, "runtime": 108}, "2503": {"poster_path": "/fHho6JYYY0nRcETWSoeI19iZsNF.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227471070, "overview": "Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.", "video": false, "id": 2503, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Ultimatum", "tagline": "Remember everything. Forgive nothing.", "vote_count": 1318, "homepage": "http://www.universalstudiosentertainment.com/the-bourne-ultimatum/", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0440963", "adult": false, "backdrop_path": "/6WpDOqkZFmhNJ0rwuLJiZVKlZi1.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Motion Picture BETA Produktionsgesellschaft", "id": 11348}, {"name": "The Kennedy/Marshall Company", "id": 862}, {"name": "Ludlum Entertainment", "id": 11347}, {"name": "Bourne Again", "id": 11349}, {"name": "Angel Studios", "id": 11350}], "release_date": "2007-08-03", "popularity": 1.62646039264984, "original_title": "The Bourne Ultimatum", "budget": 70000000, "cast": [{"name": "Matt Damon", "character": "Jason Bourne", "id": 1892, "credit_id": "52fe435bc3a36847f804e231", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Julia Stiles", "character": "Nicky Parsons", "id": 12041, "credit_id": "52fe435bc3a36847f804e283", "cast_id": 24, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 1}, {"name": "David Strathairn", "character": "Noah Vosen", "id": 11064, "credit_id": "52fe435bc3a36847f804e287", "cast_id": 25, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Scott Glenn", "character": "Ezra Kramer", "id": 349, "credit_id": "52fe435bc3a36847f804e28b", "cast_id": 26, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Simon Ross", "id": 14887, "credit_id": "52fe435bc3a36847f804e235", "cast_id": 9, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Paz", "id": 25616, "credit_id": "52fe435bc3a36847f804e239", "cast_id": 10, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 5}, {"name": "Albert Finney", "character": "Dr. Albert Hirsch", "id": 3926, "credit_id": "52fe435bc3a36847f804e28f", "cast_id": 27, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 6}, {"name": "Joan Allen", "character": "Pamela Landy", "id": 11148, "credit_id": "52fe435bc3a36847f804e293", "cast_id": 28, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 7}, {"name": "Tom Gallop", "character": "Tom Cronin", "id": 27030, "credit_id": "52fe435bc3a36847f804e297", "cast_id": 29, "profile_path": "/t799Vz0ATVN24NmXpvFOPkrJLU9.jpg", "order": 8}, {"name": "Corey Johnson", "character": "Conrad Wills", "id": 17199, "credit_id": "52fe435bc3a36847f804e23d", "cast_id": 11, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 9}, {"name": "Daniel Br\u00fchl", "character": "Martin Kreutz", "id": 3872, "credit_id": "52fe435bc3a36847f804e29b", "cast_id": 30, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 10}, {"name": "Joey Ansah", "character": "Desh Bouksani", "id": 29406, "credit_id": "52fe435bc3a36847f804e29f", "cast_id": 31, "profile_path": "/jHubXiYEiUhonrVzXUJfVTOJ2Jq.jpg", "order": 11}, {"name": "Colin Stinton", "character": "Neal Daniels", "id": 23608, "credit_id": "52fe435bc3a36847f804e2a3", "cast_id": 32, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 12}, {"name": "Dan Fredenburgh", "character": "Jimmy", "id": 175400, "credit_id": "52fe435bc3a36847f804e2cb", "cast_id": 39, "profile_path": "/9EiaeIZ4udfQ8E13L6ug4JX1lXX.jpg", "order": 13}, {"name": "Lucy Liemann", "character": "Lucy", "id": 204167, "credit_id": "52fe435bc3a36847f804e2cf", "cast_id": 40, "profile_path": "/odhYpqFaGWehGNN9BCf7V7fjobW.jpg", "order": 14}, {"name": "Bryan Reents", "character": "Technician", "id": 122296, "credit_id": "52fe435bc3a36847f804e2d3", "cast_id": 41, "profile_path": "/jG2djIJpg21105tC3syRUohtKIw.jpg", "order": 15}, {"name": "Arkie Reece", "character": "Technician", "id": 89830, "credit_id": "52fe435bc3a36847f804e2d7", "cast_id": 42, "profile_path": "/1g4cbjJtQOguoYIzEOp0gK8fQ1s.jpg", "order": 16}, {"name": "John Roberson", "character": "Technician", "id": 122293, "credit_id": "52fe435bc3a36847f804e2db", "cast_id": 43, "profile_path": "/hPL55RJv5VuNU2bFuAtwXnMQvU1.jpg", "order": 17}, {"name": "Russ Huards", "character": "Technician", "id": 1280230, "credit_id": "52fe435bc3a36847f804e2df", "cast_id": 44, "profile_path": "/eVVXikM0ZB41fLSOO5kpxz81m7m.jpg", "order": 18}, {"name": "Mark Bazeley", "character": "Betancourt", "id": 124686, "credit_id": "52fe435bc3a36847f804e2e3", "cast_id": 45, "profile_path": "/w94J1KnyfAol8A17aMKFZvm8UAe.jpg", "order": 19}, {"name": "Sinead O'Keefe", "character": "Chamberlain", "id": 1280231, "credit_id": "52fe435bc3a36847f804e2e7", "cast_id": 46, "profile_path": "/tRn6CW8ODg4MGFGnpDzrxpxaQwp.jpg", "order": 20}, {"name": "Chucky Venice", "character": "Agent Hammond", "id": 1280232, "credit_id": "52fe435bc3a36847f804e2eb", "cast_id": 47, "profile_path": "/rzwDO12JfJ0hfToj7rUfGgOj3gg.jpg", "order": 21}, {"name": "Scott Adkins", "character": "Agent Kiley", "id": 78110, "credit_id": "52fe435bc3a36847f804e2ef", "cast_id": 48, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 22}, {"name": "Branko Tomovic", "character": "Russian Policeman", "id": 944548, "credit_id": "52fe435bc3a36847f804e2f3", "cast_id": 49, "profile_path": "/hQBTvwJyOUAvNH50pZa1RJ3bvSp.jpg", "order": 23}, {"name": "Laurentiu Possa", "character": "Russian Policeman", "id": 1280233, "credit_id": "52fe435bc3a36847f804e2f7", "cast_id": 50, "profile_path": "/aCarXz5DoC6ycy4Sn3RptzQeNGE.jpg", "order": 24}, {"name": "Trevor St. John", "character": "Tactical Team Leader", "id": 199298, "credit_id": "52fe435bc3a36847f804e2fb", "cast_id": 51, "profile_path": "/nLzyfCCDK3TPPHjbMi7x7NMrGUP.jpg", "order": 25}, {"name": "Albert Jones", "character": "Tactical Team Agent", "id": 164382, "credit_id": "52fe435bc3a36847f804e2ff", "cast_id": 52, "profile_path": "/yE5Jmmjd7JIqh6RE7H6QI3ar9PZ.jpg", "order": 26}, {"name": "Jeffrey Lee Gibson", "character": "Vosen's Driver", "id": 1280234, "credit_id": "52fe435bc3a36847f804e303", "cast_id": 53, "profile_path": "/eKx2kXjvgSyDYZkw5DfOwcK57QI.jpg", "order": 27}, {"name": "Uriel Emil Pollack", "character": "Morgue Attendant (as Uriel Emil)", "id": 1084850, "credit_id": "52fe435bc3a36847f804e307", "cast_id": 54, "profile_path": "/kZALdOtkmvLcUsOF7cf5JugD1FX.jpg", "order": 28}, {"name": "Omar Hernandez", "character": "NYPD Officer", "id": 1280235, "credit_id": "52fe435bc3a36847f804e30b", "cast_id": 55, "profile_path": "/h0NaLPlG7xGMIXTuzsyg0patNTn.jpg", "order": 29}, {"name": "William H. Burns", "character": "NYPD Officer", "id": 164021, "credit_id": "52fe435bc3a36847f804e30f", "cast_id": 56, "profile_path": "/1JePKS9eyOny5Qwsmofvbs0MC4Q.jpg", "order": 30}, {"name": "Michael Wildman", "character": "CRI Agent", "id": 30085, "credit_id": "52fe435bc3a36847f804e313", "cast_id": 57, "profile_path": "/lMD5D5luP2n70SZJI97FYNxLFdi.jpg", "order": 31}, {"name": "Kai Martin", "character": "Hoody", "id": 1280236, "credit_id": "52fe435bc3a36847f804e317", "cast_id": 58, "profile_path": "/hcQ6NvdR1HnRjK5SIkZE58geHuU.jpg", "order": 32}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe435bc3a36847f804e215", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 7.1, "runtime": 115}, "146227": {"poster_path": "/5UJQhrdzxnxAumgyJMgVX9DguC6.jpg", "production_countries": [{"iso_3166_1": "BG", "name": "Bulgaria"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Former race car driver Brent Magna (Hawke) is pitted against the clock. Desperately trying to save the life of his kidnapped wife, Brent commandeers a custom Ford Shelby GT500 Super Snake, taking it and its unwitting owner (Gomez) on a high-speed race against time, at the command of the mysterious villain holding his wife hostage.", "video": false, "id": 146227, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Getaway", "tagline": "Get in. Get out. Getaway.", "vote_count": 85, "homepage": "http://www.getawaymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2167202", "adult": false, "backdrop_path": "/jUuyZJjjz1KQCrc3PUajrfjkZwe.jpg", "production_companies": [{"name": "After Dark Films", "id": 3608}], "release_date": "2013-08-29", "popularity": 0.638846085273186, "original_title": "Getaway", "budget": 18000000, "cast": [{"name": "Ethan Hawke", "character": "Brent Magna", "id": 569, "credit_id": "52fe4b789251416c75103de1", "cast_id": 1, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Selena Gomez", "character": "The Kid", "id": 77948, "credit_id": "52fe4b789251416c75103de5", "cast_id": 2, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 1}, {"name": "Jon Voight", "character": "The Voice", "id": 10127, "credit_id": "52fe4b789251416c75103de9", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Paul Freeman", "character": "The Man (voice)", "id": 652, "credit_id": "52fe4b789251416c75103dff", "cast_id": 9, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 3}, {"name": "Bruce Payne", "character": "Distinguished man", "id": 27422, "credit_id": "52fe4b789251416c75103e03", "cast_id": 10, "profile_path": "/nUfoRt0YA3SXbTAPKjNGq5lYuOc.jpg", "order": 4}, {"name": "Rebecca Budig", "character": "Leanne", "id": 105173, "credit_id": "52fe4b789251416c75103e07", "cast_id": 11, "profile_path": "/7UazqKqWVGxD7WAp5ZI5FmjP9B2.jpg", "order": 5}, {"name": "Dimo Alexiev", "character": "Henchman #1", "id": 1000981, "credit_id": "52fe4b789251416c75103e0b", "cast_id": 13, "profile_path": "/ksG50JRNYK14VobFBSdTxGdqsQC.jpg", "order": 6}, {"name": "Velislav Pavlov", "character": "Henchman #2", "id": 105834, "credit_id": "52fe4b789251416c75103e0f", "cast_id": 14, "profile_path": "/fHX4kmpoGkdixhZNui28KwXpUUu.jpg", "order": 7}, {"name": "Dejan Angelov", "character": "Henchman #3", "id": 94699, "credit_id": "52fe4b789251416c75103e13", "cast_id": 15, "profile_path": "/zCszCjsbCe80H9ZZhQXXg9pE0ak.jpg", "order": 8}, {"name": "Peewee Piemonte", "character": "Thug", "id": 1270921, "credit_id": "52fe4b789251416c75103e17", "cast_id": 16, "profile_path": "/bHFNfoJ931JgoxEKv6bppaxDHWO.jpg", "order": 9}, {"name": "Ivaylo Geraskov", "character": "Detective", "id": 90112, "credit_id": "52fe4b789251416c75103e63", "cast_id": 29, "profile_path": "/8mAfsChTkqINGh5C8TDUrXdClN6.jpg", "order": 10}, {"name": "Esteban Cueto", "character": "Thug", "id": 60653, "credit_id": "52fe4b789251416c75103e67", "cast_id": 30, "profile_path": "/jJYm6K3g3lQvic2Sgjh9SPb4FDq.jpg", "order": 11}], "directors": [{"name": "Courtney Solomon", "department": "Directing", "job": "Director", "credit_id": "52fe4b789251416c75103def", "profile_path": "/hLZpb39CB97wwoLGfxgEDdyYq2s.jpg", "id": 61921}], "vote_average": 5.0, "runtime": 90}, "59859": {"poster_path": "/xEDiYvObe2enHa5utvbJlnbp0KJ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29000000, "overview": "After Kick-Ass\u2019 insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist \u2014 reborn as The Mother F%&*^r \u2014 only the blade-wielding Hit-Girl can prevent their annihilation.", "video": false, "id": 59859, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "Kick-Ass 2", "tagline": "You Can't Fight Your Destiny.", "vote_count": 784, "homepage": "", "belongs_to_collection": {"backdrop_path": "/kelR7BTeIP2ENVjmSz76lD3r5Ht.jpg", "poster_path": "/2DtPSyODKWXluIRV7PVru0SSzja.jpg", "id": 179892, "name": "Kick-Ass Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1650554", "adult": false, "backdrop_path": "/fGuoOLZeM4elFV8CBcPCLMc1fwj.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "Universal Pictures", "id": 33}], "release_date": "2013-08-16", "popularity": 1.56030975402809, "original_title": "Kick-Ass 2", "budget": 28000000, "cast": [{"name": "Aaron Taylor-Johnson", "character": "Dave Lizewski / Kick-Ass", "id": 27428, "credit_id": "52fe499dc3a36847f81a3a93", "cast_id": 35, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Mindy Macready / Hit-Girl", "id": 56734, "credit_id": "52fe499dc3a36847f81a3a59", "cast_id": 24, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Christopher Mintz-Plasse", "character": "Chris D'Amico / The Motherfucker", "id": 54691, "credit_id": "52fe499dc3a36847f81a3a17", "cast_id": 4, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 2}, {"name": "Clark Duke", "character": "Marty Eisenberg / Battle Guy", "id": 54729, "credit_id": "52fe499dc3a36847f81a3a1f", "cast_id": 7, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 3}, {"name": "Jim Carrey", "character": "Colonel Stars and Stripes", "id": 206, "credit_id": "52fe499dc3a36847f81a3a23", "cast_id": 8, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 4}, {"name": "Lindy Booth", "character": "Night Bitch", "id": 51936, "credit_id": "53ae107dc3a3682edf0022b1", "cast_id": 46, "profile_path": "/bzquwgIrGxF8xfPCmSiNZ563VdH.jpg", "order": 5}, {"name": "Donald Faison", "character": "Doctor Gravity", "id": 49002, "credit_id": "52fe499dc3a36847f81a3a27", "cast_id": 9, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 6}, {"name": "Steven Mackintosh", "character": "Tommy's Dad", "id": 978, "credit_id": "52fe499dc3a36847f81a3abb", "cast_id": 43, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 7}, {"name": "Monica Dolan", "character": "Tommy's Mum", "id": 229606, "credit_id": "52fe499dc3a36847f81a3abf", "cast_id": 44, "profile_path": "/rH2PyFU4ZpvNF1guqDXV5Qqrtwv.jpg", "order": 8}, {"name": "Morris Chestnut", "character": "Detective Marcus Williams", "id": 9779, "credit_id": "52fe499dc3a36847f81a3a43", "cast_id": 16, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 9}, {"name": "Claudia Lee", "character": "Brooke", "id": 984658, "credit_id": "52fe499dc3a36847f81a3a4b", "cast_id": 18, "profile_path": "/jaWNpr6wnwhKeLwxM4Czt0UBO8C.jpg", "order": 10}, {"name": "Amy Anzel", "character": "Mrs. Zane", "id": 1199002, "credit_id": "52fe499dc3a36847f81a3a97", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Augustus Prew", "character": "Todd/Ass Kicker", "id": 3309, "credit_id": "52fe499dc3a36847f81a3a55", "cast_id": 23, "profile_path": "/k3pRpdfeHZq0BGBAYqhXyKjDuic.jpg", "order": 12}, {"name": "Mary Kitchen", "character": "News Reporter", "id": 1272888, "credit_id": "52fe499dc3a36847f81a3ab3", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Garrett M. Brown", "character": "Mr.Lizewski", "id": 27492, "credit_id": "52fe499dc3a36847f81a3ac3", "cast_id": 45, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 14}, {"name": "Lyndsy Fonseca", "character": "Katie Deauxma", "id": 116882, "credit_id": "52fe499dc3a36847f81a3a1b", "cast_id": 5, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 15}, {"name": "Yancy Butler", "character": "Angie D'Amico", "id": 20759, "credit_id": "52fe499dc3a36847f81a3a47", "cast_id": 17, "profile_path": "/emcS8cLp5aEEMdJS4Am0TLiX6WA.jpg", "order": 16}, {"name": "John Leguizamo", "character": "Javier", "id": 5723, "credit_id": "52fe499dc3a36847f81a3a3b", "cast_id": 14, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 17}, {"name": "Robert Emms", "character": "Insect Man", "id": 589652, "credit_id": "52fe499dc3a36847f81a3a2b", "cast_id": 10, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 18}, {"name": "Ella Purnell", "character": "Dolce", "id": 989325, "credit_id": "54b22fe6c3a368210c000c9c", "cast_id": 47, "profile_path": "/3g0n8TEbQQpLT3ZEbSjlTO8lnK5.jpg", "order": 19}], "directors": [{"name": "Jeff Wadlow", "department": "Directing", "job": "Director", "credit_id": "52fe499dc3a36847f81a3a51", "profile_path": null, "id": 55075}], "vote_average": 6.4, "runtime": 103}, "264660": {"poster_path": "/iXWt1prw5xbpjf3hmOm8Fo3dFa.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 13700000, "overview": "Caleb, a 24 year old coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.", "video": false, "id": 264660, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Ex Machina", "tagline": "There is nothing more human than the will to survive", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0470752", "adult": false, "backdrop_path": "/9X3cDZb4GYGQeOnZHLwMcCFz2Ro.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "DNA Films", "id": 284}], "release_date": "2015-01-21", "popularity": 3.15463816255217, "original_title": "Ex Machina", "budget": 16400000, "cast": [{"name": "Domhnall Gleeson", "character": "Caleb", "id": 93210, "credit_id": "534c28bcc3a3682ddf00326a", "cast_id": 1, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 1}, {"name": "Oscar Isaac", "character": "Nathan", "id": 25072, "credit_id": "534c28c2c3a3682e07003423", "cast_id": 2, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "Ava", "id": 227454, "credit_id": "534c28cdc3a3682de40033f8", "cast_id": 3, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Corey Johnson", "character": "Jay", "id": 17199, "credit_id": "54ad02ec9251414d6700a8c4", "cast_id": 17, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 4}, {"name": "Sonoya Mizuno", "character": "Kyoko", "id": 1457238, "credit_id": "5535b5c6c3a368447c0004a9", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Claire Selby", "character": "Lily", "id": 1457239, "credit_id": "5535b5d4c3a3681785000a37", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Symara A. Templeman", "character": "Jasmine", "id": 1394342, "credit_id": "5535b5e292514152cf000ca4", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Gana Bayarsaikhan", "character": "Jade", "id": 1457240, "credit_id": "5535b5edc3a3681785000a3e", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Tiffany Pisani", "character": "Katya", "id": 1457241, "credit_id": "5535b5f992514152aa000d39", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Elina Alminas", "character": "Amber", "id": 1394348, "credit_id": "5535b605c3a368523e004fe1", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Alex Garland", "department": "Directing", "job": "Director", "credit_id": "534c28adc3a3682dd80033cc", "profile_path": null, "id": 2036}], "vote_average": 8.1, "runtime": 108}, "59861": {"poster_path": "/9IJgzuDEd1qHwmUiT38YYPYSYnt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36160375, "overview": "After losing his job, a middle-aged man reinvents himself by going back to college.", "video": false, "id": 59861, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Larry Crowne", "tagline": "Rediscover life and love", "vote_count": 102, "homepage": "http://www.larrycrowne.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1583420", "adult": false, "backdrop_path": "/w2iM7qOcQVjBH4WOwhej92DWGbK.jpg", "production_companies": [{"name": "Playtone Productions", "id": 4170}, {"name": "Universal Pictures", "id": 33}, {"name": "Vendome Pictures", "id": 7460}], "release_date": "2011-06-30", "popularity": 0.792046942841073, "original_title": "Larry Crowne", "budget": 30000000, "cast": [{"name": "Tom Hanks", "character": "Larry Crowne", "id": 31, "credit_id": "52fe499dc3a36847f81a3b1f", "cast_id": 3, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Mercedes Tainot", "id": 1204, "credit_id": "52fe499dc3a36847f81a3b23", "cast_id": 4, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Bryan Cranston", "character": "Dean Tainot", "id": 17419, "credit_id": "52fe499dc3a36847f81a3b27", "cast_id": 6, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 2}, {"name": "Cedric the Entertainer", "character": "Lamar", "id": 5726, "credit_id": "52fe499dc3a36847f81a3b2b", "cast_id": 7, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 3}, {"name": "Pam Grier", "character": "Frances", "id": 2230, "credit_id": "52fe499dc3a36847f81a3b2f", "cast_id": 8, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 4}, {"name": "Taraji P. Henson", "character": "B'Ella", "id": 40036, "credit_id": "52fe499dc3a36847f81a3b33", "cast_id": 9, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 5}, {"name": "George Takei", "character": "Dr. Matsutani", "id": 1752, "credit_id": "52fe499dc3a36847f81a3b37", "cast_id": 10, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 6}, {"name": "Nia Vardalos", "character": "Map Genie", "id": 54645, "credit_id": "52fe499dc3a36847f81a3b3b", "cast_id": 11, "profile_path": "/5gFPZcVc00uXhzslKOZ2DmWoTSH.jpg", "order": 7}, {"name": "Sarah Mahoney", "character": "Samantha", "id": 204588, "credit_id": "52fe499dc3a36847f81a3b3f", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Roxana Ortega", "character": "Alvarez", "id": 98292, "credit_id": "52fe499dc3a36847f81a3b43", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Rami Malek", "character": "", "id": 17838, "credit_id": "52fe499dc3a36847f81a3b53", "cast_id": 16, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 10}, {"name": "Wilmer Valderrama", "character": "", "id": 18975, "credit_id": "52fe499dc3a36847f81a3b57", "cast_id": 17, "profile_path": "/8hN3liZjFROTdGXuwituNSAg55F.jpg", "order": 11}, {"name": "Gugu Mbatha-Raw", "character": "Talia", "id": 1216606, "credit_id": "52fe499dc3a36847f81a3b5b", "cast_id": 18, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 12}], "directors": [{"name": "Tom Hanks", "department": "Directing", "job": "Director", "credit_id": "52fe499dc3a36847f81a3b15", "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "id": 31}], "vote_average": 5.8, "runtime": 98}, "10715": {"poster_path": "/ownVrxw7OYOo8vwk2g4q74Oe8Wa.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68514844, "overview": "Bugs Bunny and Daffy Duck are up to their feuding ways again. Tired of playing second fiddle to Bugs, Daffy has decided to leave the Studio for good. He is aided by Warner Bros.' humor impaired Vice President of Comedy, Kate Houghton, who releases him from his contract and instructs WB security guard/aspiring stunt man DJ Drake to capture and \"escort\" Daffy off the studio lot.", "video": false, "id": 10715, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Looney Tunes: Back In Action", "tagline": "Real life has never been so animated.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0318155", "adult": false, "backdrop_path": "/zbvGbnOniU53SucXxfqpWXOH05X.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2003-11-14", "popularity": 0.846819070462537, "original_title": "Looney Tunes: Back In Action", "budget": 80000000, "cast": [{"name": "Brendan Fraser", "character": "DJ Drake", "id": 18269, "credit_id": "52fe43a79251416c75018e2d", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Jenna Elfman", "character": "Kate", "id": 40279, "credit_id": "52fe43a79251416c75018e31", "cast_id": 2, "profile_path": "/cTXzciaLL96Pa75HzEr1u1kbfeH.jpg", "order": 1}, {"name": "Steve Martin", "character": "Mr. Chairman", "id": 67773, "credit_id": "52fe43a79251416c75018e35", "cast_id": 3, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 2}, {"name": "Timothy Dalton", "character": "Damien Drake", "id": 10669, "credit_id": "52fe43a79251416c75018e39", "cast_id": 4, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 3}, {"name": "Heather Locklear", "character": "Dusty Tails", "id": 58691, "credit_id": "52fe43a79251416c75018e3d", "cast_id": 5, "profile_path": "/djRAJGjg73Cao0x5m11XPHrjBll.jpg", "order": 4}, {"name": "Joan Cusack", "character": "Mother", "id": 3234, "credit_id": "52fe43a79251416c75018e41", "cast_id": 6, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 5}, {"name": "Marc Lawrence", "character": "Acme VP, Stating the Obvious", "id": 3140, "credit_id": "52fe43a79251416c75018e93", "cast_id": 20, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 6}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe43a79251416c75018e8f", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 5.6, "runtime": 90}, "10719": {"poster_path": "/2BCvh9w8YXP30Jst8PkMngEo619.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173398518, "overview": "When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic publisher.", "video": false, "id": 10719, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Elf", "tagline": "This holiday, discover your inner elf.", "vote_count": 243, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0319343", "adult": false, "backdrop_path": "/J9XLTBsutjnLnyGH1v4foLgtdG.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Guy Walks into a Bar Productions", "id": 2645}, {"name": "Gold/Miller Productions", "id": 1607}], "release_date": "2003-10-09", "popularity": 1.46991830352774, "original_title": "Elf", "budget": 32000000, "cast": [{"name": "Will Ferrell", "character": "Buddy", "id": 23659, "credit_id": "52fe43a89251416c7501900d", "cast_id": 1, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Jovie", "id": 11664, "credit_id": "52fe43a89251416c7501906b", "cast_id": 24, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Daniel Tay", "character": "Michael", "id": 27974, "credit_id": "52fe43a89251416c75019083", "cast_id": 30, "profile_path": "/bEf5utuWQgnSREDVxg9EhEWqCGe.jpg", "order": 2}, {"name": "James Caan", "character": "Walter", "id": 3085, "credit_id": "52fe43a89251416c75019011", "cast_id": 2, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 3}, {"name": "Bob Newhart", "character": "Papa Elf", "id": 64930, "credit_id": "52fe43a89251416c75019015", "cast_id": 3, "profile_path": "/uBEjNF7rOgrG3aKlfq6xY5aPmSg.jpg", "order": 4}, {"name": "Ed Asner", "character": "Santa", "id": 68812, "credit_id": "52fe43a89251416c75019019", "cast_id": 4, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 5}, {"name": "Amy Sedaris", "character": "Deb", "id": 12110, "credit_id": "52fe43a89251416c7501906f", "cast_id": 25, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 6}, {"name": "Andy Richter", "character": "Morris", "id": 28637, "credit_id": "52fe43a89251416c75019073", "cast_id": 26, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 7}, {"name": "Mary Steenburgen", "character": "Emily", "id": 2453, "credit_id": "52fe43a89251416c75019077", "cast_id": 27, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 8}, {"name": "Kyle Gass", "character": "Eugene", "id": 22297, "credit_id": "52fe43a89251416c7501907b", "cast_id": 28, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 9}, {"name": "Artie Lange", "character": "Gimbel's Santa", "id": 20788, "credit_id": "52fe43a89251416c7501907f", "cast_id": 29, "profile_path": "/ifXG3HVuOgYhSTuvugGJCthfcN.jpg", "order": 10}, {"name": "Faizon Love", "character": "Gimbel's Manager", "id": 62066, "credit_id": "52fe43a89251416c75019087", "cast_id": 31, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 11}, {"name": "Peter Dinklage", "character": "Miles Finch", "id": 22970, "credit_id": "52fe43a89251416c7501908b", "cast_id": 32, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 12}, {"name": "Michael Lerner", "character": "Fulton", "id": 4250, "credit_id": "52fe43a89251416c7501908f", "cast_id": 33, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 13}, {"name": "Leon Redbone", "character": "Leon the Snowman", "id": 1051916, "credit_id": "52fe43a89251416c75019093", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Peter Billingsley", "character": "Maymay", "id": 12708, "credit_id": "52fe43a89251416c75019097", "cast_id": 35, "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "order": 15}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe43a89251416c7501901f", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 6.3, "runtime": 97}, "254375": {"poster_path": "/8EXGHKbT8EQRStYEYlNZUdCP414.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "A psychiatrist searches the globe to find the secret of happiness.", "video": false, "id": 254375, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Hector and the Search for Happiness", "tagline": "Sometimes to find yourself you need to get a little lost.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1626146", "adult": false, "backdrop_path": "/bT5eROQOUx4bfiFkgdgw5mgGyIV.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Egoli Tossell Film", "id": 44224}, {"name": "Film Afrika Worldwide", "id": 4792}, {"name": "Construction Film", "id": 44225}, {"name": "Erfttal Film", "id": 2221}, {"name": "Head Gear Films", "id": 5056}, {"name": "Metrol Technology", "id": 25954}, {"name": "Screen Siren Pictures", "id": 44226}], "release_date": "2014-09-19", "popularity": 1.26265794840908, "original_title": "Hector and the Search for Happiness", "budget": 0, "cast": [{"name": "Simon Pegg", "character": "Hector", "id": 11108, "credit_id": "52fe4eb69251416c9113b255", "cast_id": 1, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Clara", "id": 10882, "credit_id": "52fe4eb69251416c9113b259", "cast_id": 2, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Toni Collette", "character": "Agnes", "id": 3051, "credit_id": "52fe4eb69251416c9113b25d", "cast_id": 3, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Edward", "id": 1640, "credit_id": "52fe4eb69251416c9113b261", "cast_id": 4, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Christopher Plummer", "character": "Professor Coreman", "id": 290, "credit_id": "52fe4eb69251416c9113b265", "cast_id": 5, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 4}, {"name": "Jean Reno", "character": "Diego", "id": 1003, "credit_id": "52fe4eb69251416c9113b269", "cast_id": 6, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 5}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe4eb69251416c9113b26f", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 6.9, "runtime": 120}, "10734": {"poster_path": "/lBAxIEywz3KfzXimn9qHBArLHU8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43000000, "overview": "A dramatization of the one possibly successful escape from the notorious prison.", "video": false, "id": 10734, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Escape from Alcatraz", "tagline": "No one has ever escaped from Alcatraz... And no one ever will!", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079116", "adult": false, "backdrop_path": "/doJGjcWPpuGuDPJwCpCNnYUG9x4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1979-06-22", "popularity": 1.35735980752741, "original_title": "Escape from Alcatraz", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Frank Morris", "id": 190, "credit_id": "52fe43ac9251416c7501994f", "cast_id": 30, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Patrick McGoohan", "character": "Warden", "id": 2463, "credit_id": "52fe43ac9251416c75019957", "cast_id": 32, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 1}, {"name": "Fred Ward", "character": "John Anglin", "id": 10430, "credit_id": "52fe43ac9251416c75019953", "cast_id": 31, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 4}, {"name": "David Cryer", "character": "Wagner", "id": 66296, "credit_id": "52fe43ab9251416c75019927", "cast_id": 20, "profile_path": "/uBp5ZZBtZH1cnYMK2l6XBvRVh60.jpg", "order": 5}, {"name": "Blair Burrows", "character": "Fight Guard", "id": 66298, "credit_id": "52fe43ac9251416c7501992f", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Roberts Blossom", "character": "Doc", "id": 66288, "credit_id": "52fe43ab9251416c75019917", "cast_id": 14, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 7}, {"name": "Bob Balhatchet", "character": "Medical Technical Assistant", "id": 66299, "credit_id": "52fe43ac9251416c75019933", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Bruce M. Fischer", "character": "Wolf", "id": 66293, "credit_id": "52fe43ab9251416c7501991b", "cast_id": 17, "profile_path": "/mRMjsb3yQOj7VfQ6MGXgk46jUE9.jpg", "order": 11}, {"name": "Matthew Locricchio", "character": "Exam Guard", "id": 66300, "credit_id": "52fe43ac9251416c75019937", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Jason Ronard", "character": "Bobs", "id": 66304, "credit_id": "52fe43ac9251416c7501993b", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Ron Vernan", "character": "Stone", "id": 66305, "credit_id": "52fe43ac9251416c7501993f", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Ray K. Goman", "character": "Cellblock Captain", "id": 66302, "credit_id": "52fe43ac9251416c75019943", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Ed Vasgersian", "character": "Cranston", "id": 66303, "credit_id": "52fe43ac9251416c75019947", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Frank Ronzio", "character": "Litmus", "id": 66294, "credit_id": "52fe43ab9251416c7501991f", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Don Michaelian", "character": "Beck", "id": 66301, "credit_id": "52fe43ac9251416c7501994b", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Fred Stuthman", "character": "Johnson", "id": 66295, "credit_id": "52fe43ab9251416c75019923", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Madison Arnold", "character": "Zimmerman", "id": 66297, "credit_id": "52fe43ab9251416c7501992b", "cast_id": 21, "profile_path": null, "order": 19}, {"name": "Paul Benjamin", "character": "English", "id": 15534, "credit_id": "52fe43ac9251416c7501996d", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Larry Hankin", "character": "Charley Butts", "id": 11519, "credit_id": "52fe43ac9251416c7501997d", "cast_id": 39, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 21}, {"name": "Jack Thibeau", "character": "Clarence Anglin", "id": 14320, "credit_id": "52fe43ac9251416c7501998d", "cast_id": 42, "profile_path": "/ugO5Vb7ZXUz5VMpM9dZghJSt6ui.jpg", "order": 22}], "directors": [{"name": "Don Siegel", "department": "Directing", "job": "Director", "credit_id": "52fe43ab9251416c750198fb", "profile_path": "/dptmMoVlEB9o8O8C8vf5CPILg6n.jpg", "id": 14773}], "vote_average": 7.1, "runtime": 112}, "10735": {"poster_path": "/fz7hIWLvyEAzH0hjGNwWEoWyNQn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.", "video": false, "id": 10735, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "What a Girl Wants", "tagline": "Trying to fit in. Born to stand out.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0286788", "adult": false, "backdrop_path": "/8ELLcGJkQD1JrjJ6A5LS3Frn87q.jpg", "production_companies": [{"name": "DiNovi Pictures", "id": 813}, {"name": "Gaylord Films", "id": 5367}, {"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2003-03-27", "popularity": 1.02205974879816, "original_title": "What a Girl Wants", "budget": 0, "cast": [{"name": "Amanda Bynes", "character": "Daphne Reynolds", "id": 29220, "credit_id": "52fe43ac9251416c750199b5", "cast_id": 1, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 0}, {"name": "Colin Firth", "character": "Henry Dashwood", "id": 5472, "credit_id": "52fe43ac9251416c750199b9", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Libby Reynolds", "id": 11164, "credit_id": "52fe43ac9251416c750199bd", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Jonathan Pryce", "character": "Alistair Payne", "id": 378, "credit_id": "52fe43ac9251416c750199c1", "cast_id": 4, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 3}, {"name": "Oliver James", "character": "Ian Wallace", "id": 78730, "credit_id": "52fe43ac9251416c75019a0d", "cast_id": 17, "profile_path": "/lzKEBfE8tVTH9kr1ZPmIapFJ99i.jpg", "order": 4}], "directors": [{"name": "Dennie Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe43ac9251416c750199c7", "profile_path": "/3ykd6ByuQ77EpPYVGWate1BBtVP.jpg", "id": 66960}], "vote_average": 6.0, "runtime": 105}, "10747": {"poster_path": "/59ywz8rQmXn4bl60WOMJddPc7z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.", "video": false, "id": 10747, "genres": [{"id": 37, "name": "Western"}, {"id": 10752, "name": "War"}], "title": "The Outlaw Josey Wales", "tagline": "...an army of one.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075029", "adult": false, "backdrop_path": "/vkE1ROrP1gA5c1L31XZ8JR9QRMJ.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Malpaso Company", "id": 15298}], "release_date": "1976-06-30", "popularity": 0.821835969155016, "original_title": "The Outlaw Josey Wales", "budget": 3700000, "cast": [{"name": "Clint Eastwood", "character": "Josey Wales", "id": 190, "credit_id": "52fe43ad9251416c75019df7", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Chief Dan George", "character": "Lone Watie", "id": 66670, "credit_id": "52fe43ad9251416c75019dfb", "cast_id": 2, "profile_path": "/qGPiWgk9gblAPiF2Az1g2nkZlLx.jpg", "order": 1}, {"name": "Sondra Locke", "character": "Laura Lee", "id": 66223, "credit_id": "52fe43ad9251416c75019dff", "cast_id": 3, "profile_path": "/vzuYg4TGd2YSJy4I6ZNaLUVxuuV.jpg", "order": 2}, {"name": "Bill McKinney", "character": "Terrill", "id": 16555, "credit_id": "52fe43ad9251416c75019e03", "cast_id": 4, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 3}, {"name": "John Vernon", "character": "Fletcher", "id": 17580, "credit_id": "52fe43ad9251416c75019e07", "cast_id": 5, "profile_path": "/8jESb02RChcuBEh4yZrLHElNhWa.jpg", "order": 4}, {"name": "Paula Trueman", "character": "Grandma Sarah", "id": 734, "credit_id": "54d7978cc3a3683b890061b7", "cast_id": 15, "profile_path": "/qXZAw0uswXslggmg5hJmeC0iAAL.jpg", "order": 5}, {"name": "Sam Bottoms", "character": "Jamie", "id": 8350, "credit_id": "54d797aa925141758c005dd4", "cast_id": 16, "profile_path": "/4J8AQtnLV8OFIyTl3p0YnxZoPsi.jpg", "order": 6}, {"name": "Geraldine Keams", "character": "Little Moonlight", "id": 1173474, "credit_id": "54d797d0c3a3683b8f00668e", "cast_id": 17, "profile_path": "/6UwlPREttyRXJNTyJNtWf7lvGU1.jpg", "order": 7}, {"name": "Woodrow Parfrey", "character": "Carpetbagger", "id": 13263, "credit_id": "54d797ebc3a368439a005e7d", "cast_id": 18, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 8}, {"name": "Joyce Jameson", "character": "Rose", "id": 40381, "credit_id": "54d7980d9251413388003421", "cast_id": 19, "profile_path": "/d2yiYVWs1pHJjbL8MRlQaTFjPwI.jpg", "order": 9}, {"name": "Sheb Wooley", "character": "Travis Cobb", "id": 4080, "credit_id": "54d798389251416b93005f5b", "cast_id": 20, "profile_path": "/wngAcuEA3AslnYxoJSonPcaLJ3f.jpg", "order": 10}, {"name": "Royal Dano", "character": "Ten Spot", "id": 19968, "credit_id": "54d799a4c3a3683ba0006d64", "cast_id": 21, "profile_path": "/nmq1TZwdznQrkWxEyMP2dAWFjxc.jpg", "order": 11}, {"name": "Matt Clark", "character": "Kelly (as Matt Clarke)", "id": 2454, "credit_id": "54d799bac3a3683b99005e00", "cast_id": 22, "profile_path": "/hDNQhAEns3nl9cgQJ4udgCdBABI.jpg", "order": 12}, {"name": "John Verros", "character": "Chato", "id": 117028, "credit_id": "54d799d39251416b9f0060cc", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Will Sampson", "character": "Ten Bears", "id": 68301, "credit_id": "54d799f1c3a3683ba0006d67", "cast_id": 24, "profile_path": "/qcufMVWjaK0jlcDkkUZ6Kawvj2l.jpg", "order": 14}, {"name": "Len Lesser", "character": "Abe", "id": 78087, "credit_id": "54d79a09c3a368439a005ea9", "cast_id": 25, "profile_path": "/h6mL9dHhYa4sHppv4GRJIkUTqwe.jpg", "order": 15}, {"name": "Doug McGrath", "character": "Lige", "id": 62033, "credit_id": "54d79a34c3a3683b890061ed", "cast_id": 26, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 16}, {"name": "John Russell", "character": "Bloody Bill Anderson", "id": 4304, "credit_id": "54d79a4ac3a3683b890061ef", "cast_id": 27, "profile_path": "/td1PYzG0wBy36tJx7HsnMcabwzp.jpg", "order": 17}, {"name": "Charles Tyner", "character": "Zukie Limmer", "id": 4974, "credit_id": "54d79a6e9251416b9f0060d3", "cast_id": 28, "profile_path": "/fnwUB0jM9XwBlH7hAwFQk1x4L2o.jpg", "order": 18}, {"name": "John Mitchum", "character": "Al", "id": 14786, "credit_id": "54d79b349251415f9c006055", "cast_id": 29, "profile_path": "/varG7DgJQjNwwCeUcwpZhCs40uo.jpg", "order": 19}, {"name": "Madeleine Taylor Holmes", "character": "Grannie Hawkins (as Madeline T. Holmes)", "id": 1424766, "credit_id": "54d79b7a9251415f9c00605a", "cast_id": 30, "profile_path": null, "order": 20}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe43ad9251416c75019e0d", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.2, "runtime": 135}, "76285": {"poster_path": "/cjNvhte8I318miZucl9MIFFyWQJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 174578751, "overview": "In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.", "video": false, "id": 76285, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Percy Jackson: Sea of Monsters", "tagline": "Where There Are Gods, There Are Monsters.", "vote_count": 514, "homepage": "http://www.percyjacksonthemovie.com/us/#!/home", "belongs_to_collection": {"backdrop_path": "/ae7DIULlFVTPp6mjgBLr4hzP59O.jpg", "poster_path": "/fimFFNm5LTSTaYcQEbjrFXT4rgo.jpg", "id": 179919, "name": "Percy Jackson Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1854564", "adult": false, "backdrop_path": "/im2ljgv5BEJsUlb4mVQEt4vYgr7.jpg", "production_companies": [{"name": "Dune Entertainment III", "id": 6332}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Sunswept Entertainment", "id": 5219}, {"name": "1492 Pictures", "id": 436}, {"name": "Dune Entertainment", "id": 444}, {"name": "TSG Entertainment", "id": 22213}], "release_date": "2013-08-07", "popularity": 1.16639297087517, "original_title": "Percy Jackson: Sea of Monsters", "budget": 90000000, "cast": [{"name": "Logan Lerman", "character": "Percy Jackson", "id": 33235, "credit_id": "52fe492fc3a368484e11eca5", "cast_id": 2, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 0}, {"name": "Alexandra Daddario", "character": "Annabeth", "id": 109513, "credit_id": "52fe4930c3a368484e11ed0f", "cast_id": 37, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 1}, {"name": "Douglas Smith", "character": "Tyson", "id": 60077, "credit_id": "52fe492fc3a368484e11ecb7", "cast_id": 13, "profile_path": "/6iIV8IebkXio2mgFB3Xw7XPntXX.jpg", "order": 2}, {"name": "Leven Rambin", "character": "Clarisse", "id": 207401, "credit_id": "52fe4930c3a368484e11ed13", "cast_id": 38, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 3}, {"name": "Brandon T. Jackson", "character": "Grover", "id": 53336, "credit_id": "52fe4930c3a368484e11ed17", "cast_id": 39, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 4}, {"name": "Jake Abel", "character": "Luke", "id": 105727, "credit_id": "52fe4930c3a368484e11ed1b", "cast_id": 40, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 5}, {"name": "Anthony Stewart Head", "character": "Chiron", "id": 34257, "credit_id": "52fe492fc3a368484e11ecbb", "cast_id": 15, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Mr.D", "id": 2283, "credit_id": "52fe492fc3a368484e11ecbf", "cast_id": 17, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Nathan Fillion", "character": "Hermes", "id": 51797, "credit_id": "52fe492fc3a368484e11ecc3", "cast_id": 18, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 8}, {"name": "Derek Mears", "character": "Cyclops", "id": 51300, "credit_id": "52fe492fc3a368484e11eccd", "cast_id": 22, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 9}, {"name": "Robert Maillet", "character": "Polyphemus / Laistrygonian", "id": 112692, "credit_id": "52fe492fc3a368484e11ecaf", "cast_id": 10, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 10}, {"name": "Grey Damon", "character": "Chris Rodriguez", "id": 130769, "credit_id": "52fe492fc3a368484e11ecd1", "cast_id": 24, "profile_path": "/q3Dw5yaDiGTyET52YvYfi2Fa4Pv.jpg", "order": 11}, {"name": "Ron Perlman", "character": "Polyphemus (voice)", "id": 2372, "credit_id": "52fe4930c3a368484e11ecf3", "cast_id": 30, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 12}, {"name": "Connor Dunn", "character": "Tereus", "id": 1272881, "credit_id": "52fe4930c3a368484e11ecf7", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Paloma Kwiatkowski", "character": "Thalia", "id": 1257753, "credit_id": "52fe4930c3a368484e11ecfb", "cast_id": 32, "profile_path": "/4E783I5hvMiVBaYys7gF18hSSH.jpg", "order": 14}, {"name": "Alisha Newton", "character": "Young Annabeth", "id": 1272883, "credit_id": "52fe4930c3a368484e11ecff", "cast_id": 33, "profile_path": "/5NrA7cr1WxHspyx6BlZnDh23btK.jpg", "order": 15}, {"name": "Bjorn Yearwood", "character": "Young Grover", "id": 1272884, "credit_id": "52fe4930c3a368484e11ed03", "cast_id": 34, "profile_path": "/2HAFI1UjYEJtOjP6gkjPJLikLyG.jpg", "order": 16}, {"name": "Samuel Braun", "character": "Young Luke", "id": 1272885, "credit_id": "52fe4930c3a368484e11ed07", "cast_id": 35, "profile_path": "/kHYwVC5tXEXf4DHoJgDUgYxlr70.jpg", "order": 17}, {"name": "Katelyn Mager", "character": "Young Thalia", "id": 116416, "credit_id": "52fe4930c3a368484e11ed0b", "cast_id": 36, "profile_path": "/yreMxRMJFtxtVoKoDxt4Yfkkwpt.jpg", "order": 18}, {"name": "Yvette Nicole Brown", "character": "Gray Sister #2", "id": 111513, "credit_id": "52fe492fc3a368484e11ecb3", "cast_id": 12, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 19}, {"name": "Missi Pyle", "character": "Gray Sister #3", "id": 1294, "credit_id": "52fe4930c3a368484e11ed1f", "cast_id": 41, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 20}], "directors": [{"name": "Thor Freudenthal", "department": "Directing", "job": "Director", "credit_id": "52fe492fc3a368484e11eca1", "profile_path": null, "id": 109857}], "vote_average": 6.1, "runtime": 106}, "18947": {"poster_path": "/9yPSnwksl3vcTISI3Jn4zpVSMRA.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 36348784, "overview": "The Boat that Rocked is an ensemble comedy, where the romance is between the young people of the 60s, and pop music. It's about a band of DJs that captivate Britain, playing the music that defines a generation and standing up to a government that, incomprehensibly, prefers jazz.", "video": false, "id": 18947, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Boat That Rocked", "tagline": "On air. Off shore. Out of control.", "vote_count": 178, "homepage": "http://www.theboatthatrocked.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1131729", "adult": false, "backdrop_path": "/hzlvvttpWUMCVrux7n4TAGBMlQ5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Working Title Films", "id": 10163}, {"name": "Medienproduktion Prometheus Filmgesellschaft", "id": 12196}, {"name": "Portobello Studios", "id": 12197}, {"name": "Tightrope Pictures", "id": 12198}], "release_date": "2009-04-01", "popularity": 1.05110782937434, "original_title": "The Boat That Rocked", "budget": 50000000, "cast": [{"name": "Tom Sturridge", "character": "Carl", "id": 90451, "credit_id": "52fe47ad9251416c750a1d4f", "cast_id": 13, "profile_path": "/dJUgs1ypjB4Vfauq9hi64hg2oqn.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "The Count", "id": 1233, "credit_id": "52fe47ad9251416c750a1d27", "cast_id": 3, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Rhys Ifans", "character": "Gavin", "id": 7026, "credit_id": "52fe47ad9251416c750a1d2b", "cast_id": 4, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Quentin", "id": 2440, "credit_id": "52fe47ad9251416c750a1d2f", "cast_id": 5, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Emma Thompson", "character": "Charlotte", "id": 7056, "credit_id": "52fe47ad9251416c750a1d33", "cast_id": 6, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 4}, {"name": "Nick Frost", "character": "Dave", "id": 11109, "credit_id": "52fe47ad9251416c750a1d37", "cast_id": 7, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 5}, {"name": "Kenneth Branagh", "character": "Dormandy", "id": 11181, "credit_id": "52fe47ad9251416c750a1d3b", "cast_id": 8, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 6}, {"name": "January Jones", "character": "Eleonore", "id": 31717, "credit_id": "52fe47ad9251416c750a1d3f", "cast_id": 9, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 7}, {"name": "Gemma Arterton", "character": "Desiree", "id": 59620, "credit_id": "52fe47ad9251416c750a1d43", "cast_id": 10, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 8}, {"name": "Jack Davenport", "character": "Twatt", "id": 1709, "credit_id": "52fe47ad9251416c750a1d47", "cast_id": 11, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 9}, {"name": "Rhys Darby", "character": "Angus", "id": 82666, "credit_id": "52fe47ad9251416c750a1d4b", "cast_id": 12, "profile_path": "/d8mSQJYmuOoT3hvC7FGgSVMzYlz.jpg", "order": 10}, {"name": "Chris O'Dowd", "character": "Simon", "id": 40477, "credit_id": "52fe47ad9251416c750a1d53", "cast_id": 14, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 11}, {"name": "Katherine Parkinson", "character": "Felicity", "id": 74158, "credit_id": "52fe47ad9251416c750a1d57", "cast_id": 15, "profile_path": "/sdJIbvXYT7dmnd4FzYoaia4rYbo.jpg", "order": 12}, {"name": "Katie Lyons", "character": "Angus' Boat Girl", "id": 77266, "credit_id": "52fe47ad9251416c750a1d5b", "cast_id": 16, "profile_path": "/bjBlcNH0VWf9MKkY5zaqXrXY63n.jpg", "order": 13}, {"name": "Tom Wisdom", "character": "Mark", "id": 17292, "credit_id": "52fe47ae9251416c750a1dad", "cast_id": 30, "profile_path": "/3G9RdJHEfTcuBk5ArYSMOrnYYG9.jpg", "order": 14}, {"name": "Will Adamsdale", "character": "News John", "id": 979167, "credit_id": "52fe47ae9251416c750a1db1", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Tom Brooke", "character": "Thick Kevin", "id": 75066, "credit_id": "52fe47ae9251416c750a1db5", "cast_id": 32, "profile_path": "/9uUjIfjlQ3qxdR5z37YD2bEE97p.jpg", "order": 16}, {"name": "Ralph Brown", "character": "Bob", "id": 53916, "credit_id": "52fe47ae9251416c750a1db9", "cast_id": 33, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 17}, {"name": "Ike Hamilton", "character": "Harold", "id": 1135106, "credit_id": "52fe47ae9251416c750a1dbd", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Sinead Matthews", "character": "Miss C", "id": 36668, "credit_id": "52fe47ae9251416c750a1dc1", "cast_id": 35, "profile_path": "/r1RPRMPbkgu4WMyysXTs75LEMiW.jpg", "order": 19}, {"name": "Talulah Riley", "character": "Marianne", "id": 66441, "credit_id": "52fe47ae9251416c750a1dc5", "cast_id": 36, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 20}], "directors": [{"name": "Richard Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe47ad9251416c750a1d1d", "profile_path": "/uLjkovqtUtM4SckCFtrevZKKJNM.jpg", "id": 7018}], "vote_average": 7.0, "runtime": 116}, "10756": {"poster_path": "/gEAvUQ4357Fghaqthi7X3wK9Y9U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 182290266, "overview": "Workaholic Jim Evers, his wife/business partner Sara Evers get a call one night from a mansion owner named Edward Gracey wants to sell his house. Once the Evers family arrive at the mansion a butler named ramsley takes them to dine with Master Gracey. Master Gracey takes one look at Sara and he thinks she's his lost lover. The evers family are trapped in the mansion. Then the magic begins.", "video": false, "id": 10756, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "The Haunted Mansion", "tagline": "Check your pulse at the door... if you have one.", "vote_count": 100, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338094", "adult": false, "backdrop_path": "/8QYPReam3nKcowSxHKuQ4kFv6Dq.jpg", "production_companies": [{"name": "Doom Buggy Productions", "id": 47122}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Gunn Films", "id": 3538}], "release_date": "2003-11-25", "popularity": 1.05978510607133, "original_title": "The Haunted Mansion", "budget": 90000000, "cast": [{"name": "Eddie Murphy", "character": "Jim Evers", "id": 776, "credit_id": "52fe43af9251416c7501a30b", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Terence Stamp", "character": "Ramsley", "id": 28641, "credit_id": "52fe43af9251416c7501a30f", "cast_id": 2, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 1}, {"name": "Nathaniel Parker", "character": "Master Gracey", "id": 27631, "credit_id": "52fe43af9251416c7501a313", "cast_id": 3, "profile_path": "/w5SnRNxxY00lIDPB1SUh47nx46n.jpg", "order": 2}, {"name": "Marsha Thomason", "character": "Sara Evers", "id": 36219, "credit_id": "52fe43af9251416c7501a317", "cast_id": 4, "profile_path": "/idSdwvSs3f6U8WjjccVhvrxOY7l.jpg", "order": 3}, {"name": "Jennifer Tilly", "character": "Madame Leota", "id": 7906, "credit_id": "52fe43af9251416c7501a31b", "cast_id": 5, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 4}, {"name": "Dina Spybey-Waters", "character": "Emma", "id": 56567, "credit_id": "52fe43b09251416c7501a355", "cast_id": 15, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Ezra", "id": 12900, "credit_id": "5347f60fc3a3686704001481", "cast_id": 16, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "Marc John Jefferies", "character": "Megan", "id": 62646, "credit_id": "54e9ec759251412eb4003e13", "cast_id": 19, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 9}, {"name": "Jim Doughan", "character": "Mr. Coleman", "id": 1219157, "credit_id": "54e9ec9ac3a36836ed00436e", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Rachael Harris", "character": "Mrs. Coleman", "id": 46074, "credit_id": "54e9ecc2c3a36836ed00437d", "cast_id": 21, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 11}, {"name": "Steve Hytner", "character": "Mr. Silverman", "id": 56576, "credit_id": "54e9ecd792514111b80034d5", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Aree Davis", "character": "Megan", "id": 1430209, "credit_id": "54e9ed0f9251412eb8003f77", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Heather Juergensen", "character": "Mrs. Silverman", "id": 89500, "credit_id": "54e9ed2592514111b80034db", "cast_id": 24, "profile_path": "/1S48eauaUgZTSn7uM1Mnm7U2i92.jpg", "order": 14}, {"name": "Jeremy Howard", "character": "Hitchhiking Ghost", "id": 15034, "credit_id": "54e9ed39925141117c0038a7", "cast_id": 25, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 15}, {"name": "Deep Roy", "character": "Hitchhiking Ghost", "id": 1295, "credit_id": "54e9ed4a9251412eb8003f7f", "cast_id": 26, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 16}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe43b09251416c7501a321", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 5.0, "runtime": 99}, "2567": {"poster_path": "/1cT3LP4pzZEQ0DLrEL8jdpA8NKd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102000000, "overview": "Martin Scorsese\u2019s Oscar-winning biopic about the life of film-maker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate while simultaneously growing more unstable due to severe obsessive-compulsive disorder. After a scene from 1914, which may explain his later fear of dirt and disease, the film starts in 1927 during Hughes' filming of the World War I aviation film \"Hell's Angels\". He's 22 years old, has inherited the family's fortune and tool company, but wants to spend his time making film instead. However, he soon finds himself just as involved in the aviation industry, buying an airline and developing new planes.", "video": false, "id": 2567, "genres": [{"id": 18, "name": "Drama"}], "title": "The Aviator", "tagline": "Imagine a life without limits", "vote_count": 338, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338751", "adult": false, "backdrop_path": "/kCnwpd8kfOmxH3qra2xnaPuJQn7.jpg", "production_companies": [{"name": "Initial Entertainment Group (IEG)", "id": 7380}, {"name": "Miramax Films", "id": 14}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Appian Way", "id": 562}, {"name": "Forward Pass", "id": 675}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}], "release_date": "2004-12-25", "popularity": 1.63017630829929, "original_title": "The Aviator", "budget": 116000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Howard Hughes", "id": 6193, "credit_id": "52fe435dc3a36847f804ed4b", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Katharine Hepburn", "id": 112, "credit_id": "52fe435dc3a36847f804ed4f", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Kate Beckinsale", "character": "Ava Gardner", "id": 3967, "credit_id": "52fe435dc3a36847f804ed57", "cast_id": 4, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 2}, {"name": "John C. Reilly", "character": "Noah Dietrich", "id": 4764, "credit_id": "52fe435dc3a36847f804ed53", "cast_id": 3, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 3}, {"name": "Alec Baldwin", "character": "Juan Trippe", "id": 7447, "credit_id": "52fe435dc3a36847f804ed5b", "cast_id": 5, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 4}, {"name": "Alan Alda", "character": "Senator Ralph Owen Brewster", "id": 21278, "credit_id": "52fe435dc3a36847f804ed5f", "cast_id": 6, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 5}, {"name": "Ian Holm", "character": "Professor Fitz", "id": 65, "credit_id": "52fe435dc3a36847f804ed63", "cast_id": 7, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 6}, {"name": "Jude Law", "character": "Errol Flynn", "id": 9642, "credit_id": "52fe435dc3a36847f804ed67", "cast_id": 8, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 7}, {"name": "Kelli Garner", "character": "Faith Domergue", "id": 17442, "credit_id": "52fe435dc3a36847f804ed6b", "cast_id": 9, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 8}, {"name": "Danny Huston", "character": "Jack Frye", "id": 6413, "credit_id": "52fe435dc3a36847f804ed6f", "cast_id": 11, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 9}, {"name": "Brent Spiner", "character": "Robert Gross", "id": 1213786, "credit_id": "52fe435dc3a36847f804edbb", "cast_id": 24, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 10}, {"name": "Willem Dafoe", "character": "Roland Sweet", "id": 5293, "credit_id": "537034510e0a2647d401365c", "cast_id": 25, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 11}, {"name": "Gwen Stefani", "character": "Jean Harlow", "id": 77070, "credit_id": "539c53ffc3a36810da002304", "cast_id": 33, "profile_path": "/3rXTUPjqPkSCGn5EgIinphBsXmm.jpg", "order": 12}, {"name": "Adam Scott", "character": "Johnny Meyer", "id": 36801, "credit_id": "539c5441c3a36810da002313", "cast_id": 34, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 13}, {"name": "Matt Ross", "character": "Glenn Odekirk", "id": 11154, "credit_id": "539c549cc3a36810e3002169", "cast_id": 35, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 14}, {"name": "Frances Conroy", "character": "Mrs. Hepburn", "id": 4432, "credit_id": "539c54f2c3a36810ba002324", "cast_id": 36, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 15}, {"name": "Stanley DeSantis", "character": "Louis B. Mayer", "id": 4171, "credit_id": "539c5561c3a36810b5002149", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Keith Campbell", "character": "Marine", "id": 15318, "credit_id": "53b9570dc3a3685eba00560f", "cast_id": 38, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 17}, {"name": "Amy Sloan", "character": "Howard Hughes's Mother", "id": 99185, "credit_id": "5496b2329251416e2b006084", "cast_id": 98, "profile_path": "/xFIc1V7BLHX1C4YMZXnPnp9S6gc.jpg", "order": 18}, {"name": "Kevin O'Rourke", "character": "Spencer Tracy", "id": 1218282, "credit_id": "5496b288c3a3686ae100658b", "cast_id": 99, "profile_path": "/bhvhxxlkVpZqraqfVJIhjGaVIuw.jpg", "order": 19}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe435dc3a36847f804ed75", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.5, "runtime": 170}, "10761": {"poster_path": "/b7w9BOieXq3qzwtOoXRUCNWc1Hz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84601681, "overview": "Tom and Hannah have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her \"maid\" of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her.", "video": false, "id": 10761, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Made of Honor", "tagline": "He'll do anything to get the groom out of the picture.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0866439", "adult": false, "backdrop_path": "/xBJkWoxwWwrtK4CQUzIGhUA8SDm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Original Film", "id": 333}], "release_date": "2008-05-02", "popularity": 1.25532205005232, "original_title": "Made of Honor", "budget": 40000000, "cast": [{"name": "Patrick Dempsey", "character": "Thomas 'Tom' Bailey", "id": 18352, "credit_id": "52fe43b19251416c7501a7f5", "cast_id": 23, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Hannah", "id": 11705, "credit_id": "52fe43b19251416c7501a7f9", "cast_id": 24, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Kevin McKidd", "character": "Colin McMurray", "id": 9013, "credit_id": "52fe43b19251416c7501a7fd", "cast_id": 25, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 2}, {"name": "Chris Messina", "character": "Dennis", "id": 61659, "credit_id": "52fe43b19251416c7501a801", "cast_id": 26, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 3}, {"name": "Richmond Arquette", "character": "Gary", "id": 7472, "credit_id": "52fe43b19251416c7501a805", "cast_id": 27, "profile_path": "/xW4bb2qsPYilO27ex4Xoy2Ik1Ai.jpg", "order": 4}, {"name": "Busy Philipps", "character": "Melissa", "id": 60928, "credit_id": "52fe43b19251416c7501a809", "cast_id": 28, "profile_path": "/uerCtOFqXQlbKG7FvjMDStD961y.jpg", "order": 5}, {"name": "Kadeem Hardison", "character": "Felix", "id": 66554, "credit_id": "52fe43b19251416c7501a813", "cast_id": 31, "profile_path": "/b3HZkM9wyEhXC1bE89bG7XRFtme.jpg", "order": 6}, {"name": "Whitney Cummings", "character": "Stephanie", "id": 66555, "credit_id": "52fe43b19251416c7501a81d", "cast_id": 33, "profile_path": "/ahpNleas5qmtfUEkulea2WFFFgn.jpg", "order": 7}, {"name": "Kathleen Quinlan", "character": "Joan", "id": 8183, "credit_id": "52fe43b19251416c7501a821", "cast_id": 34, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 8}, {"name": "Sydney Pollack", "character": "Thomas Bailey Sr.", "id": 2226, "credit_id": "52fe43b19251416c7501a825", "cast_id": 35, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 9}, {"name": "Emily Nelson", "character": "Hilary", "id": 66556, "credit_id": "52fe43b19251416c7501a829", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "James Sikking", "character": "Reverend Foote", "id": 65568, "credit_id": "52fe43b29251416c7501a82d", "cast_id": 37, "profile_path": "/iNUO38duu0gW91PIOQk3ffxaqXz.jpg", "order": 11}, {"name": "Kevin Sussman", "character": "Tiny Shorts Guy", "id": 60633, "credit_id": "52fe43b29251416c7501a831", "cast_id": 38, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 12}, {"name": "Beau Garrett", "character": "Gloria", "id": 20403, "credit_id": "52fe43b29251416c7501a835", "cast_id": 39, "profile_path": "/eSnhComJ12wMk4PoMNpuoz7bTKO.jpg", "order": 13}, {"name": "Selma Stern", "character": "Grandma Pearl", "id": 66557, "credit_id": "52fe43b29251416c7501a839", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Kelly Carlson", "character": "Christie - Wife #6", "id": 56447, "credit_id": "52fe43b29251416c7501a83d", "cast_id": 41, "profile_path": "/39pX3ORNowOUhfnb7HfgiQJ5H7K.jpg", "order": 15}, {"name": "Lilly McDowell", "character": "Lingerie Salesgirl", "id": 66559, "credit_id": "52fe43b29251416c7501a841", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Corinne Reilly", "character": "Restaurant Hostess", "id": 66561, "credit_id": "52fe43b29251416c7501a845", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Craig Susser", "character": "Christie's Lawyer", "id": 66560, "credit_id": "52fe43b29251416c7501a849", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Christine Barger", "character": "Psycho Blogger", "id": 66558, "credit_id": "52fe43b29251416c7501a84d", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Sarah Mason", "character": "Sexy Blonde", "id": 131723, "credit_id": "52fe43b29251416c7501a857", "cast_id": 47, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 20}], "directors": [{"name": "Paul Weiland", "department": "Directing", "job": "Director", "credit_id": "52fe43b19251416c7501a7df", "profile_path": "/eTTmELMGFXFybc3Gl65jk6G71gn.jpg", "id": 66548}], "vote_average": 5.7, "runtime": 101}, "162903": {"poster_path": "/uIMI7d9DXe8uc5KzXnMFdmmEnNC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8555008, "overview": "A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website's growth and influence led to an irreparable rift between the two friends.", "video": false, "id": 162903, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Fifth Estate", "tagline": "You can't expose the world's secrets without exposing yourself.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1837703", "adult": false, "backdrop_path": "/vgtjJhY0vgMWdPEQOoXBVDnSCDl.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Participant Media", "id": 6735}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2013-10-18", "popularity": 0.863949097274085, "original_title": "The Fifth Estate", "budget": 28000000, "cast": [{"name": "Benedict Cumberbatch", "character": "Julian Assange", "id": 71580, "credit_id": "52fe4c60c3a36847f822b10b", "cast_id": 1, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 0}, {"name": "Dan Stevens", "character": "Ian Katz", "id": 221018, "credit_id": "52fe4c60c3a36847f822b10f", "cast_id": 2, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 1}, {"name": "Daniel Br\u00fchl", "character": "Daniel Domscheit-Berg", "id": 3872, "credit_id": "52fe4c60c3a36847f822b113", "cast_id": 3, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "Anke Domscheit", "id": 227454, "credit_id": "52fe4c60c3a36847f822b117", "cast_id": 4, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Carice van Houten", "character": "Birgitta Jonsdottir", "id": 23229, "credit_id": "52fe4c60c3a36847f822b11b", "cast_id": 5, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 4}, {"name": "Peter Capaldi", "character": "Alan Rusbridger", "id": 12982, "credit_id": "52fe4c60c3a36847f822b11f", "cast_id": 6, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 5}, {"name": "Jamie Blackley", "character": "Ziggy", "id": 221985, "credit_id": "52fe4c60c3a36847f822b123", "cast_id": 7, "profile_path": "/AiRZjxoqNHh4pR7ngfwhLBvGe3F.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "James Boswell", "id": 2283, "credit_id": "52fe4c60c3a36847f822b139", "cast_id": 11, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Laura Linney", "character": "Sarah Shaw", "id": 350, "credit_id": "52fe4c60c3a36847f822b13d", "cast_id": 12, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 8}, {"name": "David Thewlis", "character": "Nick Davies", "id": 11207, "credit_id": "52fe4c60c3a36847f822b141", "cast_id": 13, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 9}, {"name": "Moritz Bleibtreu", "character": "Marcus", "id": 677, "credit_id": "52fe4c60c3a36847f822b163", "cast_id": 20, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 10}, {"name": "Alexander Beyer", "character": "Marcel Rosenbach", "id": 4796, "credit_id": "52fe4c60c3a36847f822b167", "cast_id": 21, "profile_path": "/krl8hF4VBmbizQuddEoG6KvDW0o.jpg", "order": 11}], "directors": [{"name": "Bill Condon", "department": "Directing", "job": "Director", "credit_id": "52fe4c60c3a36847f822b129", "profile_path": "/lMNARbVEd2VKcEZCBQwy1fPWWVG.jpg", "id": 15557}], "vote_average": 5.5, "runtime": 128}, "10764": {"poster_path": "/gXksXNwEk3h8tvSdhbsRp5GGJAk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 586090727, "overview": "Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr. White, who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.", "video": false, "id": 10764, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Quantum of Solace", "tagline": "For love, for hate, for justice, for revenge.", "vote_count": 1392, "homepage": "http://www.mgm.com/view/movie/234/Quantum-of-Solace/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0830515", "adult": false, "backdrop_path": "/hfZVY8lMiE7HH1cDc2qzSFF6Kbt.jpg", "production_companies": [{"name": "B22", "id": 22790}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Columbia Pictures", "id": 5}, {"name": "Eon Productions", "id": 7576}], "release_date": "2008-10-30", "popularity": 1.79033458541768, "original_title": "Quantum of Solace", "budget": 200000000, "cast": [{"name": "Daniel Craig", "character": "James Bond", "id": 8784, "credit_id": "52fe43b29251416c7501aa5d", "cast_id": 1, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Olga Kurylenko", "character": "Camille", "id": 18182, "credit_id": "52fe43b29251416c7501aab5", "cast_id": 17, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 1}, {"name": "Mathieu Amalric", "character": "Dominic Greene", "id": 8789, "credit_id": "52fe43b29251416c7501aab9", "cast_id": 18, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 2}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe43b29251416c7501aabd", "cast_id": 19, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Giancarlo Giannini", "character": "Ren\u00e9 Mathis", "id": 3753, "credit_id": "52fe43b29251416c7501aac1", "cast_id": 20, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 4}, {"name": "Gemma Arterton", "character": "Strawberry Fields", "id": 59620, "credit_id": "52fe43b39251416c7501aac5", "cast_id": 21, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "Felix Leiter", "id": 2954, "credit_id": "52fe43b39251416c7501aac9", "cast_id": 22, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "David Harbour", "character": "Gregg Beam", "id": 35029, "credit_id": "52fe43b39251416c7501aacd", "cast_id": 23, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 7}, {"name": "Jesper Christensen", "character": "Mr. White", "id": 2244, "credit_id": "52fe43b39251416c7501aad1", "cast_id": 24, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 8}, {"name": "Anatole Taubman", "character": "Elvis", "id": 62892, "credit_id": "52fe43b39251416c7501aad5", "cast_id": 25, "profile_path": "/ykaA067K1LYyERSGTM98qzSw2Rl.jpg", "order": 9}, {"name": "Rory Kinnear", "character": "Tanner", "id": 139549, "credit_id": "52fe43b39251416c7501aadf", "cast_id": 27, "profile_path": "/wfBmg2FVEDQCCFnjiTC3lhg1THP.jpg", "order": 10}, {"name": "Tim Pigott-Smith", "character": "Foreign Secretary", "id": 11276, "credit_id": "52fe43b39251416c7501aae3", "cast_id": 28, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 11}, {"name": "Joaqu\u00edn Cosio", "character": "General Medrano", "id": 76857, "credit_id": "52fe43b39251416c7501ab2f", "cast_id": 51, "profile_path": "/nRdZ0BNi8JOG7cJ10OTZeVmDxTE.jpg", "order": 12}, {"name": "Glenn Foster", "character": "Henry Mitchell", "id": 574355, "credit_id": "52fe43b39251416c7501aae7", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Paul Ritter", "character": "Guy Haines", "id": 52888, "credit_id": "52fe43b39251416c7501aaeb", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Stana Katic", "character": "Corinne Veneau", "id": 34408, "credit_id": "52fe43b39251416c7501aaef", "cast_id": 35, "profile_path": "/5Uv6wssCvAZfSTaXbiEiySQquHC.jpg", "order": 15}, {"name": "Lucrezia Lante della Rovere", "character": "Gemma", "id": 136290, "credit_id": "52fe43b39251416c7501aaf3", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Neil Jackson", "character": "Monsieur Slate", "id": 20289, "credit_id": "52fe43b39251416c7501aaf7", "cast_id": 37, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 17}, {"name": "Oona Chaplin", "character": "la r\u00e9ceptionniste de l'h\u00f4tel", "id": 566331, "credit_id": "52fe43b39251416c7501aafb", "cast_id": 38, "profile_path": "/25hiavig6bfXJ8DjLjbtIkM6mO1.jpg", "order": 18}, {"name": "Laurence Richardson", "character": "l'officier de police", "id": 473460, "credit_id": "52fe43b39251416c7501aaff", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Rachel McDowall", "character": "Anna", "id": 127000, "credit_id": "52fe43b39251416c7501ab03", "cast_id": 40, "profile_path": "/7nU3c5o386U1EMGJoMbLNtTKcv0.jpg", "order": 20}, {"name": "Gustavo Nanez", "character": "Un membre de Quantum", "id": 574361, "credit_id": "52fe43b39251416c7501ab07", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Mark Wakeling", "character": "Un agent du MI6", "id": 205222, "credit_id": "52fe43b39251416c7501ab0b", "cast_id": 42, "profile_path": "/jzhe2GqIv36Ekz0RIDMtE0AEJi4.jpg", "order": 22}, {"name": "Sarah Hadland", "character": "La r\u00e9ceptionniste \u00e0 l'Ocean Sky", "id": 62961, "credit_id": "52fe43b39251416c7501ab0f", "cast_id": 43, "profile_path": "/ze81FuL9Clxq2RFp7Bkvrcsj4Br.jpg", "order": 23}, {"name": "David Decio", "character": "Un agent du MI6 (non cr\u00e9dit\u00e9)", "id": 193339, "credit_id": "52fe43b39251416c7501ab13", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Aaron King", "character": "Un agent du MI6 (non cr\u00e9dit\u00e9)", "id": 424182, "credit_id": "52fe43b39251416c7501ab17", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Alexandra Prusa", "character": "Un membre de Quantum", "id": 574364, "credit_id": "52fe43b39251416c7501ab1b", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Brandon Jovanovich", "character": "Mario Cavaradossi", "id": 574365, "credit_id": "52fe43b39251416c7501ab1f", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Alexandre Krawetz", "character": "Spoletta", "id": 574367, "credit_id": "52fe43b39251416c7501ab23", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Fernando Guill\u00e9n Cuervo", "character": "Police Liutennant", "id": 149307, "credit_id": "52fe43b39251416c7501ab27", "cast_id": 49, "profile_path": "/jl5RYE2byiE9ScZ8rsvbz31f5NZ.jpg", "order": 29}, {"name": "Jes\u00fas Ochoa", "character": "Lieutenant Orso", "id": 69865, "credit_id": "52fe43b39251416c7501ab2b", "cast_id": 50, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 30}, {"name": "Simon Kassianides", "character": "Yusef", "id": 1234388, "credit_id": "52fe43b39251416c7501ab33", "cast_id": 52, "profile_path": "/3psuuKWeKuXGSoKtwcEM3QNNUMT.jpg", "order": 31}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe43b39251416c7501aadb", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.0, "runtime": 106}, "1995": {"poster_path": "/m6aodY7SrvlTRiUFkxClaNAIQT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 274703340, "overview": "English aristocrat Lara Croft is skilled in hand-to-hand combat and in the middle of a battle with a secret society. The shapely archaeologist moonlights as a tomb raider to recover lost antiquities and meets her match in the evil Powell, who's in search of a powerful relic.", "video": false, "id": 1995, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Lara Croft: Tomb Raider", "tagline": "Born into Wealth. Groomed by the Elite. Trained for Combat.", "vote_count": 846, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AbU9pTDqOhm670DNillEB9Cb8H6.jpg", "poster_path": "/sgaP4WtVlKzz8FIcjbkevOycJiq.jpg", "id": 2467, "name": "Tomb Raider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146316", "adult": false, "backdrop_path": "/e6nQFLsLP60Erv41JE4QrsEgJbI.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "British Broadcasting Corporation (BBC)", "id": 3324}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Marubeni", "id": 4650}, {"name": "Eidos Interactive", "id": 19105}, {"name": "Toho-Towa", "id": 657}], "release_date": "2001-06-11", "popularity": 1.51626970070652, "original_title": "Lara Croft: Tomb Raider", "budget": 115000000, "cast": [{"name": "Angelina Jolie", "character": "Lara Croft", "id": 11701, "credit_id": "52fe432ac3a36847f803f391", "cast_id": 12, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Jon Voight", "character": "Lord Croft", "id": 10127, "credit_id": "52fe432ac3a36847f803f395", "cast_id": 13, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Iain Glen", "character": "Powell", "id": 20508, "credit_id": "52fe432ac3a36847f803f399", "cast_id": 14, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 2}, {"name": "Noah Taylor", "character": "Bryce", "id": 1284, "credit_id": "52fe432ac3a36847f803f39d", "cast_id": 15, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Daniel Craig", "character": "Alex", "id": 8784, "credit_id": "52fe432ac3a36847f803f3a1", "cast_id": 16, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 4}, {"name": "Richard Johnson", "character": "Distinguished Gentleman", "id": 20510, "credit_id": "52fe432ac3a36847f803f3a9", "cast_id": 18, "profile_path": "/miDA5sN3ijfED6M4oRZ0NTdBfBR.jpg", "order": 5}, {"name": "Chris Barrie", "character": "Hillary", "id": 20511, "credit_id": "52fe432ac3a36847f803f3ad", "cast_id": 19, "profile_path": "/rN7P8WSCAEQ0hHWfaG1P7Em1spx.jpg", "order": 6}, {"name": "Julian Rhind-Tutt", "character": "Mr. Pimms", "id": 7031, "credit_id": "52fe432ac3a36847f803f3b5", "cast_id": 21, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 7}, {"name": "Leslie Phillips", "character": "Wilson", "id": 10655, "credit_id": "52fe432ac3a36847f803f3b9", "cast_id": 22, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 8}, {"name": "Robert Phillips", "character": "Assault Team Leader", "id": 20509, "credit_id": "52fe432ac3a36847f803f3a5", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Rachel Appleton", "character": "Young Lara", "id": 20512, "credit_id": "52fe432ac3a36847f803f3b1", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Henry Wyndham", "character": "Boothby's Auctioneer", "id": 1371446, "credit_id": "5431b9700e0a2658b2002750", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "David Cheung", "character": "Head Laborer (as David Y. Cheung)", "id": 1371452, "credit_id": "5431bac0c3a368117b00289f", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "David Tse", "character": "Head Laborer (as David K. S. Tse)", "id": 1013950, "credit_id": "5431ba83c3a36831bb003e85", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Ayla Amiral", "character": "Little Cambodian Girl", "id": 1371450, "credit_id": "5431b9a00e0a2658340027f4", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Ozzie Yue", "character": "Aged Buddhist Monk", "id": 1227314, "credit_id": "5431b9f0c3a3681143002704", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Wai-Keat Lau", "character": "Young Buddhist Monk", "id": 1371453, "credit_id": "5431baf4c3a36831ac003e3e", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Stephanie Burns", "character": "Little Inuit Girl", "id": 1371454, "credit_id": "5431bb02c3a36831a6003e9d", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Carl Chase", "character": "Ancient High Priest", "id": 127166, "credit_id": "5431bb1dc3a36831a6003ea7", "cast_id": 36, "profile_path": "/3HLdJB6ZQNi3DK4Ix9FXZ0a67K8.jpg", "order": 18}, {"name": "Richenda Carey", "character": "Imperious Woman", "id": 90764, "credit_id": "5431bb39c3a368117b0028b2", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Sylvano Clarke", "character": "UPS Guy", "id": 1371455, "credit_id": "5431bb470e0a265834002842", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Anna Maria Everett", "character": "Maid", "id": 129840, "credit_id": "5431bb840e0a264643003e98", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Olegar Fedoro", "character": "Russian Commander", "id": 69471, "credit_id": "5481d3659251416e6c005ade", "cast_id": 41, "profile_path": null, "order": 23}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe432ac3a36847f803f351", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.6, "runtime": 100}, "117263": {"poster_path": "/a2r2mvky2D5QCyYLdu2c3A4LOmb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161025640, "overview": "When the White House (Secret Service Code: \"Olympus\") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.", "video": false, "id": 117263, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Olympus Has Fallen", "tagline": "When our flag falls our nation will rise.", "vote_count": 1816, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt2302755", "adult": false, "backdrop_path": "/lxbMXD12UCj7kMgfqjaZq5irGAu.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Films", "id": 925}], "release_date": "2013-03-22", "popularity": 1.671184372544, "original_title": "Olympus Has Fallen", "budget": 70000000, "cast": [{"name": "Gerard Butler", "character": "Mike Banning", "id": 17276, "credit_id": "52fe4bafc3a36847f820f645", "cast_id": 7, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "President Benjamin Asher", "id": 6383, "credit_id": "52fe4bafc3a36847f820f649", "cast_id": 8, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Angela Bassett", "character": "Lynne Jacobs", "id": 9780, "credit_id": "52fe4bafc3a36847f820f64d", "cast_id": 9, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "Speaker Trumbull", "id": 192, "credit_id": "52fe4bafc3a36847f820f669", "cast_id": 14, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Radha Mitchell", "character": "Leah", "id": 8329, "credit_id": "52fe4bafc3a36847f820f66d", "cast_id": 15, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 4}, {"name": "Rick Yune", "character": "Kang", "id": 10883, "credit_id": "52fe4bafc3a36847f820f671", "cast_id": 16, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 5}, {"name": "Dylan McDermott", "character": "Forbes", "id": 32597, "credit_id": "52fe4bafc3a36847f820f68d", "cast_id": 23, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 6}, {"name": "Finley Jacobsen", "character": "Connor", "id": 965819, "credit_id": "52fe4bafc3a36847f820f6c9", "cast_id": 35, "profile_path": "/4dEyL8uoHqf8lqDjPwW2QqRR25q.jpg", "order": 7}, {"name": "Tory Kittles", "character": "Jones", "id": 62645, "credit_id": "52fe4bafc3a36847f820f67d", "cast_id": 19, "profile_path": "/jlR3xLuJug176VllNLgyZGvozhz.jpg", "order": 8}, {"name": "Shanna Forrestall", "character": "Mary Jane", "id": 120251, "credit_id": "52fe4bafc3a36847f820f681", "cast_id": 20, "profile_path": "/3obLXjztke735vaes6XAdP0o1P8.jpg", "order": 9}, {"name": "Melissa Leo", "character": "Secretary of Defense Ruth McMillan", "id": 6832, "credit_id": "52fe4bafc3a36847f820f685", "cast_id": 21, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 10}, {"name": "Cole Hauser", "character": "Roma", "id": 6614, "credit_id": "52fe4bafc3a36847f820f689", "cast_id": 22, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 11}, {"name": "Phil Austin", "character": "Vice President Charlie Rodriguez", "id": 92058, "credit_id": "52fe4bafc3a36847f820f691", "cast_id": 24, "profile_path": "/gZfvR7jJCqYx64Y6QWdizQXsx3j.jpg", "order": 12}, {"name": "Robert Forster", "character": "General Edward Clegg", "id": 5694, "credit_id": "52fe4bafc3a36847f820f695", "cast_id": 25, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 13}, {"name": "Ashley Judd", "character": "Margaret Asher", "id": 15852, "credit_id": "52fe4bafc3a36847f820f6a1", "cast_id": 28, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 14}, {"name": "Han Soto", "character": "Dr. Guildes", "id": 1116011, "credit_id": "52fe4bafc3a36847f820f679", "cast_id": 18, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 15}, {"name": "Shane Land", "character": "Davis", "id": 1116009, "credit_id": "52fe4bafc3a36847f820f675", "cast_id": 17, "profile_path": "/afIMN6FiokAsFwodpFGsux9C5Ka.jpg", "order": 16}, {"name": "Sam Medina", "character": "Yu", "id": 1044954, "credit_id": "52fe4bafc3a36847f820f699", "cast_id": 26, "profile_path": "/5erle4K8m7QbK8ITKnY7F4PMMAp.jpg", "order": 17}, {"name": "Malana Lea", "character": "Lim", "id": 1024143, "credit_id": "52fe4bafc3a36847f820f69d", "cast_id": 27, "profile_path": "/k9h1UOg1HOhTI9vFrd5Fc50W802.jpg", "order": 18}, {"name": "Keong Sim", "character": "Lee Tae-Woo", "id": 164102, "credit_id": "52fe4bafc3a36847f820f6cd", "cast_id": 36, "profile_path": "/umyWpw8M18I6WsBWuRXWUtw4b2d.jpg", "order": 19}, {"name": "Arden Cho", "character": "Korean Sniper", "id": 144279, "credit_id": "52ff367e9251417cd913e1eb", "cast_id": 41, "profile_path": "/pqMreu71EYEo2QeLkZ2Q33KvnLl.jpg", "order": 20}, {"name": "Michael Dudikoff", "character": "Mr. Smith (uncredited)", "id": 21259, "credit_id": "53dbc1cac3a368432a0000c0", "cast_id": 42, "profile_path": "/oUsn5aUJ4f9V4a5mcucTVbQMRj1.jpg", "order": 21}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe4bafc3a36847f820f62f", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.1, "runtime": 120}, "43539": {"poster_path": "/odZECgJpQSUUK1tOMrkT7LWxSkI.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51148651, "overview": "A married couple's life is turned upside down when the wife is accused of a murder. Lara Brennan is arrested for murdering her boss with whom she had an argument. It seems she was seen leaving the scene of the crime and her fingerprints were on the murder weapon. Her husband, John would spend the next few years trying to get her released, but there's no evidence that negates the evidence against her. And when the strain of being separated from her family, especially her son, gets to her, John decides to break her out. So he does a lot of research to find a way.", "video": false, "id": 43539, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Next Three Days", "tagline": "What if you had 72 hours to save everything you live for?", "vote_count": 309, "homepage": "http://www.thenextthreedaysmovie.com/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1458175", "adult": false, "backdrop_path": "/cGB5Z26ooEFwYdf3fEMZ71RuHGU.jpg", "production_companies": [{"name": "Hwy61", "id": 6320}, {"name": "Lionsgate", "id": 1632}, {"name": "Fid\u00e9lit\u00e9 Films", "id": 2927}], "release_date": "2010-11-19", "popularity": 1.06215819664124, "original_title": "The Next Three Days", "budget": 30000000, "cast": [{"name": "Russell Crowe", "character": "John Brennan", "id": 934, "credit_id": "52fe464fc3a36847f80f819b", "cast_id": 20, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Brian Dennehy", "character": "George Brennan", "id": 6197, "credit_id": "52fe464fc3a36847f80f817b", "cast_id": 11, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 1}, {"name": "RZA", "character": "Mouss", "id": 150, "credit_id": "52fe464fc3a36847f80f817f", "cast_id": 12, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 2}, {"name": "Moran Atias", "character": "Erit", "id": 84261, "credit_id": "52fe464fc3a36847f80f8183", "cast_id": 13, "profile_path": "/3PBK2kfcqXI5POh9yGWX6Z5BXty.jpg", "order": 3}, {"name": "Jason Beghe", "character": "Detective Quinn", "id": 37203, "credit_id": "52fe464fc3a36847f80f8187", "cast_id": 14, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 4}, {"name": "Nazanin Boniadi", "character": "Elaine", "id": 142213, "credit_id": "52fe464fc3a36847f80f818b", "cast_id": 15, "profile_path": "/eo5kuNvxk1Ve9pjetcIb3tzIECV.jpg", "order": 5}, {"name": "Tyrone Giordano", "character": "Mike", "id": 142215, "credit_id": "52fe464fc3a36847f80f818f", "cast_id": 16, "profile_path": "/wQ7zXkauiSOI8TgULlrlCCPsBLD.jpg", "order": 6}, {"name": "Ty Simpkins", "character": "Luke", "id": 17181, "credit_id": "52fe464fc3a36847f80f8193", "cast_id": 17, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 7}, {"name": "Patrick Brennan", "character": "Security Gaurd", "id": 76022, "credit_id": "52fe464fc3a36847f80f8197", "cast_id": 18, "profile_path": "/2qmf0YHd1eipphiG1XCcfiKLPSY.jpg", "order": 8}, {"name": "Elizabeth Banks", "character": "Lara", "id": 9281, "credit_id": "52fe464fc3a36847f80f819f", "cast_id": 21, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 9}, {"name": "Olivia Wilde", "character": "Nicole", "id": 59315, "credit_id": "52fe464fc3a36847f80f81a3", "cast_id": 22, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 10}, {"name": "Liam Neeson", "character": "Damon", "id": 3896, "credit_id": "52fe464fc3a36847f80f81a7", "cast_id": 23, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 11}, {"name": "Jonathan Tucker", "character": "David", "id": 17243, "credit_id": "52fe464fc3a36847f80f81ab", "cast_id": 24, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 12}, {"name": "Lennie James", "character": "Lieutenant Nabulsi", "id": 1120, "credit_id": "52fe464fc3a36847f80f81af", "cast_id": 25, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 13}, {"name": "Michael Buie", "character": "Mick Brennan", "id": 85812, "credit_id": "52fe464fc3a36847f80f81b3", "cast_id": 26, "profile_path": "/bbOL5cofgLQFm8SF7JW0D0d8lqz.jpg", "order": 14}, {"name": "Helen Carey", "character": "Grace Brennan", "id": 17185, "credit_id": "52fe464fc3a36847f80f81b7", "cast_id": 27, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 15}], "directors": [{"name": "Paul Haggis", "department": "Directing", "job": "Director", "credit_id": "52fe464fc3a36847f80f8165", "profile_path": "/v2MadHJVrBAv0tEgs9H9PJ9y50z.jpg", "id": 455}], "vote_average": 6.7, "runtime": 133}, "10774": {"poster_path": "/nFovf0eUlbdGRqjdxETFunUAtI0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23689877, "overview": "A TV network cynically exploits a deranged ex-TV anchor's ravings and revelations about the media for their own profit.", "video": false, "id": 10774, "genres": [{"id": 18, "name": "Drama"}], "title": "Network", "tagline": "Not since the dawn of time has America experienced a man like Howard Beale!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074958", "adult": false, "backdrop_path": "/cD3uUR1xEOB856YUlNxWYJwkuil.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "United Artists", "id": 60}], "release_date": "1976-11-14", "popularity": 0.797047746244591, "original_title": "Network", "budget": 3800000, "cast": [{"name": "Faye Dunaway", "character": "Diana Christensen", "id": 6450, "credit_id": "52fe43b49251416c7501aee3", "cast_id": 1, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 0}, {"name": "William Holden", "character": "Max Schumacher", "id": 8252, "credit_id": "52fe43b49251416c7501aee7", "cast_id": 2, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 1}, {"name": "Peter Finch", "character": "Howard Beale", "id": 29903, "credit_id": "52fe43b49251416c7501aeeb", "cast_id": 3, "profile_path": "/rfG6zneBXQJxFxez865nlSt5ExM.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Frank Hackett", "id": 3087, "credit_id": "52fe43b49251416c7501aeef", "cast_id": 4, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "Wesley Addy", "character": "Nelson Chaney", "id": 66712, "credit_id": "52fe43b49251416c7501aef3", "cast_id": 5, "profile_path": "/qc8DGqS0pZJon3cVgDl3jVzW4SU.jpg", "order": 4}, {"name": "Ned Beatty", "character": "Arthur Jensen", "id": 13726, "credit_id": "52fe43b49251416c7501aef7", "cast_id": 6, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 5}, {"name": "Arthur Burghardt", "character": "Great Ahmed Kahn", "id": 66713, "credit_id": "52fe43b49251416c7501aefb", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Conchata Ferrell", "character": "Barbara Schlesinger", "id": 1909, "credit_id": "52fe43b49251416c7501aeff", "cast_id": 8, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 7}, {"name": "Jerome Dempsey", "character": "Walter C. Amundsen", "id": 192660, "credit_id": "52fe43b49251416c7501af45", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Ed Crowley", "character": "Joe Donnelly", "id": 554628, "credit_id": "52fe43b49251416c7501af49", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Kathy Cronkite", "character": "Mary Ann Gifford", "id": 949374, "credit_id": "52fe43b49251416c7501af4d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Beatrice Straight", "character": "Louise Schumacher", "id": 10083, "credit_id": "52fe43b49251416c7501af51", "cast_id": 24, "profile_path": "/e88n8bvcpLTz6Tz1VYhccFsov7r.jpg", "order": 11}, {"name": "Marlene Warfield", "character": "Laureen Hobbs", "id": 156603, "credit_id": "52fe43b49251416c7501af55", "cast_id": 25, "profile_path": "/yvcOO9xdkNEMQ0ZLJKvs7Fey8Mv.jpg", "order": 12}, {"name": "William Prince", "character": "Edward George Ruddy", "id": 46099, "credit_id": "52fe43b49251416c7501af59", "cast_id": 26, "profile_path": "/qVGGOidsbebFUep7tPVmCqnldUB.jpg", "order": 13}, {"name": "Darryl Hickman", "character": "Bill Herron", "id": 81481, "credit_id": "52fe43b49251416c7501af5d", "cast_id": 27, "profile_path": "/bRMxUW00nvYWJZf2X0k09i2tjyz.jpg", "order": 14}, {"name": "Ken Kercheval", "character": "Merrill Grant", "id": 41350, "credit_id": "52fe43b49251416c7501af61", "cast_id": 28, "profile_path": "/yCA5BNAXdt9nIplmzhaVwEO7BKB.jpg", "order": 15}, {"name": "Ted Sorel", "character": "Giannini", "id": 99036, "credit_id": "52fe43b49251416c7501af65", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Lane Smith", "character": "Robert McDonough", "id": 65019, "credit_id": "52fe43b49251416c7501af69", "cast_id": 30, "profile_path": "/js7GonfBVNHLYhaB0Xjtnm93DpH.jpg", "order": 17}, {"name": "Cindy Grover", "character": "Caroline Schumacher", "id": 1026534, "credit_id": "52fe43b49251416c7501af6d", "cast_id": 31, "profile_path": null, "order": 18}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe43b49251416c7501af1d", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 7.4, "runtime": 121}, "10775": {"poster_path": "/6v86wopD9NQf9Hj0e3jXKcL5zTG.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Chan Wing Yan, a young police officer, has been sent undercover as a mole in the local mafia. Lau Kin Ming, a young mafia member, infiltrates the police force. Years later, their older counterparts, Chen Wing Yan and Inspector Lau Kin Ming, respectively, race against time to expose the mole within their midst.", "video": false, "id": 10775, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Infernal Affairs", "tagline": "Loyalty. Honor. Betrayal.", "vote_count": 208, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ieW4mJg2C3HYBWSUM8lElbf9s6D.jpg", "poster_path": "/dE6QUGhmVYxqKNaWl23dfevArUL.jpg", "id": 58588, "name": "Infernal Affairs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0338564", "adult": false, "backdrop_path": "/u7OoqcZzOIL6VXD9JZ5EOSTLt6p.jpg", "production_companies": [{"name": "Media Asia Films", "id": 5552}], "release_date": "2002-12-12", "popularity": 1.01557060815773, "original_title": "\u7121\u9593\u9053", "budget": 0, "cast": [{"name": "Andy Lau", "character": "Inspector Lau Kin Ming", "id": 25246, "credit_id": "52fe43b59251416c7501aff5", "cast_id": 25, "profile_path": "/ukyTNTiGM8vnHynIy9JBaI9XDaN.jpg", "order": 0}, {"name": "Tony Leung Chiu-Wai", "character": "Chan Wing Yan", "id": 1337, "credit_id": "52fe43b59251416c7501afed", "cast_id": 23, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 1}, {"name": "Anthony Wong", "character": "Superintendent Wong Chi Shing", "id": 66717, "credit_id": "52fe43b49251416c7501afa3", "cast_id": 2, "profile_path": "/pCwuQUam6Xy8AhFddQFKYa74xGQ.jpg", "order": 2}, {"name": "Eric Tsang", "character": "Hon Sam", "id": 26724, "credit_id": "52fe43b49251416c7501afa7", "cast_id": 3, "profile_path": "/xJJZEKanRVgB7u5G3Fg7Xj9Fuoz.jpg", "order": 3}, {"name": "Kelly Chen", "character": "Dr. Lee Sum Yee", "id": 72730, "credit_id": "52fe43b59251416c7501afdd", "cast_id": 17, "profile_path": "/28xxkZIYFPGjo8uYKJvH0ZN4soC.jpg", "order": 4}, {"name": "Sammi Cheng", "character": "Mary", "id": 86318, "credit_id": "52fe43b59251416c7501aff1", "cast_id": 24, "profile_path": "/20LQ1NDgyKCU6u16SmRwpVPkgxb.jpg", "order": 5}, {"name": "Edison Chen", "character": "Lau Kin Ming (young)", "id": 20372, "credit_id": "52fe43b59251416c7501afd9", "cast_id": 16, "profile_path": "/MjNMCwLuknzhgKr2H99s6iaWpp.jpg", "order": 6}, {"name": "Shawn Yue", "character": "Chan Wing Yan (young)", "id": 78869, "credit_id": "52fe43b59251416c7501afd5", "cast_id": 15, "profile_path": "/vUqHw9944ZBN8MBuQ2QN6qDVNOd.jpg", "order": 7}, {"name": "Elva Hsiao", "character": "May", "id": 236115, "credit_id": "52fe43b59251416c7501afe1", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Chapman To", "character": "'Crazy' Tsui Wai Keung", "id": 118742, "credit_id": "52fe43b59251416c7501afe5", "cast_id": 20, "profile_path": "/mq5pyx9q9Lkzq2rHbHG98GypOf3.jpg", "order": 9}, {"name": "Dion Lam", "character": "Del Piero", "id": 236116, "credit_id": "52fe43b59251416c7501afe9", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Gordon Lam Ka-Tung", "character": "Inspector B", "id": 83820, "credit_id": "52fe43b59251416c7501afff", "cast_id": 27, "profile_path": "/oG1viIlfpK4MXaPQSqJwJSi5u1M.jpg", "order": 11}, {"name": "Wan Chi-keung", "character": "Officer Leung", "id": 1000109, "credit_id": "52fe43b59251416c7501b003", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Berg Ng Ting-Yip", "character": "Senior Inspector Cheung", "id": 1139045, "credit_id": "53e159cd0e0a266dea0000cb", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Tony Ho Wah-Chiu", "character": "", "id": 586484, "credit_id": "548743b6c3a368581b00011e", "cast_id": 31, "profile_path": "/3QO0ZJEsEg1U5LZQhzvx0m8Jpya.jpg", "order": 14}], "directors": [{"name": "Alan Mak", "department": "Directing", "job": "Director", "credit_id": "52fe43b49251416c7501afad", "profile_path": "/rfBFhpcCfRvDnqKYPdtXgiM7iOL.jpg", "id": 66718}, {"name": "Andrew Lau Wai-Keung", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501afb9", "profile_path": "/7jPFuUNPJp09XKPRBjudYy6TIRx.jpg", "id": 65994}], "vote_average": 7.6, "runtime": 101}, "10776": {"poster_path": "/kvCeLFleENrOSNpuJreUltm4cF3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Seymour Krelborn is a nerdy orphan working at Mushnik's, a flower shop in urban Skid Row. He harbors a crush on fellow co-worker Audrey Fulquard, and is berated by Mr. Mushnik daily. One day as Seymour is seeking a new mysterious plant, he finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.", "video": false, "id": 10776, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 10402, "name": "Music"}], "title": "Little Shop of Horrors", "tagline": "Don't feed the plants.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091419", "adult": false, "backdrop_path": "/kGOuFe4EJKBcgj4VPodYTFuDAFY.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Geffen Company, The", "id": 4354}], "release_date": "1986-12-19", "popularity": 0.878479836803738, "original_title": "Little Shop of Horrors", "budget": 0, "cast": [{"name": "Rick Moranis", "character": "Seymour Krelborn", "id": 8872, "credit_id": "52fe43b59251416c7501b051", "cast_id": 8, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 0}, {"name": "Ellen Greene", "character": "Audrey", "id": 13420, "credit_id": "52fe43b59251416c7501b055", "cast_id": 9, "profile_path": "/1EHwrl4PzPJzVbheXoqW6uzhMos.jpg", "order": 1}, {"name": "Vincent Gardenia", "character": "Mr. Mushnik", "id": 14830, "credit_id": "52fe43b59251416c7501b059", "cast_id": 10, "profile_path": "/g7iwqHaaIKh5lSTW39pXT0OOXVC.jpg", "order": 2}, {"name": "Steve Martin", "character": "Orin Scrivello, DDS", "id": 67773, "credit_id": "52fe43b59251416c7501b05d", "cast_id": 11, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 3}, {"name": "Tisha Campbell-Martin", "character": "Chiffon", "id": 141823, "credit_id": "52fe43b59251416c7501b061", "cast_id": 12, "profile_path": "/8nfymZ8Ohi7P5mNGOMddRmm5pgF.jpg", "order": 4}, {"name": "Levi Stubbs", "character": "Audrey II (Voice)", "id": 218028, "credit_id": "52fe43b59251416c7501b065", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "John Candy", "character": "Wink Wilkinson", "id": 7180, "credit_id": "52fe43b59251416c7501b069", "cast_id": 14, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 6}, {"name": "Bill Murray", "character": "Arthur Denton", "id": 1532, "credit_id": "52fe43b59251416c7501b06d", "cast_id": 15, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 7}, {"name": "Miriam Margolyes", "character": "Dental Nurse", "id": 6199, "credit_id": "530711f6c3a3685181000043", "cast_id": 16, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 8}, {"name": "James Belushi", "character": "Partick Martin", "id": 26485, "credit_id": "54091885c3a36812cd000992", "cast_id": 17, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 9}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b029", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.2, "runtime": 94}, "10778": {"poster_path": "/52sWHVCpMEba2mXT8OHg2WYlp2w.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A tale of passion, crime and punishment set in the summer of 1949. Ed Crane, a barber in a small California town, is dissatisfied with his life, but his wife Doris' infidelity presents him with a chance to change it.", "video": false, "id": 10778, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Man Who Wasn't There", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243133", "adult": false, "backdrop_path": "/lDhsA4edjDf5ZZHQFTrn5pgOpEN.jpg", "production_companies": [{"name": "The KL Line", "id": 4378}], "release_date": "2001-05-13", "popularity": 1.028736054009, "original_title": "The Man Who Wasn't There", "budget": 0, "cast": [{"name": "Billy Bob Thornton", "character": "Ed Crane", "id": 879, "credit_id": "52fe43b59251416c7501b0cf", "cast_id": 11, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Doris Crane", "id": 3910, "credit_id": "52fe43b59251416c7501b0d3", "cast_id": 12, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Michael Badalucco", "character": "Frank", "id": 1010, "credit_id": "52fe43b59251416c7501b0d7", "cast_id": 13, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 2}, {"name": "James Gandolfini", "character": "Big Dave Brewster", "id": 4691, "credit_id": "52fe43b59251416c7501b0db", "cast_id": 14, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Birdy Abundas", "id": 1245, "credit_id": "52fe43b59251416c7501b0e5", "cast_id": 16, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Jon Polito", "character": "Creighton Tolliver", "id": 4253, "credit_id": "52fe43b59251416c7501b0e9", "cast_id": 17, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 5}, {"name": "Richard Jenkins", "character": "Walter Abundas", "id": 28633, "credit_id": "52fe43b59251416c7501b0ed", "cast_id": 18, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 6}, {"name": "Tony Shalhoub", "character": "Freddy Riedenschneider", "id": 4252, "credit_id": "52fe43b59251416c7501b0f1", "cast_id": 19, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 7}, {"name": "Gregg Binkley", "character": "The New Man", "id": 170185, "credit_id": "52fe43b59251416c7501b0f5", "cast_id": 20, "profile_path": "/gTmsOFfFqHDcEzeqh3ezcSuk7TB.jpg", "order": 8}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b09b", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b0a7", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.3, "runtime": 116}, "10779": {"poster_path": "/cS3QPtMsE1jsEWUww5WsPE275Jb.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16524115, "overview": "After a car accident in which his wife, Debra, was killed and he was injured, Frank Bannister develops psychic abilities allowing him to see, hear, and communicate with ghosts.", "video": false, "id": 10779, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "The Frighteners", "tagline": "No Rest for the Wicked.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116365", "adult": false, "backdrop_path": "/tUjjDjFRLIXS0298EnskwskTA23.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1996-07-18", "popularity": 0.846200293164372, "original_title": "The Frighteners", "budget": 30000000, "cast": [{"name": "Michael J. Fox", "character": "Frank Bannister", "id": 521, "credit_id": "52fe43b59251416c7501b163", "cast_id": 10, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Jeffrey Combs", "character": "Milton Dammers", "id": 27993, "credit_id": "52fe43b59251416c7501b167", "cast_id": 11, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 1}, {"name": "Jake Busey", "character": "Johnny Charles Bartlett", "id": 28410, "credit_id": "52fe43b59251416c7501b16b", "cast_id": 12, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 2}, {"name": "Chi McBride", "character": "Cyrus", "id": 8687, "credit_id": "52fe43b59251416c7501b16f", "cast_id": 13, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 3}, {"name": "Trini Alvarado", "character": "Dr. Lucy Lynskey", "id": 17187, "credit_id": "52fe43b59251416c7501b173", "cast_id": 14, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 4}, {"name": "Peter Dobson", "character": "Ray Lynskey", "id": 37822, "credit_id": "52fe43b59251416c7501b177", "cast_id": 15, "profile_path": "/3laM5gryWnG2tfjE2jt0UuPTFlp.jpg", "order": 5}, {"name": "John Astin", "character": "The Judge", "id": 41230, "credit_id": "52fe43b59251416c7501b17b", "cast_id": 16, "profile_path": "/thWruW63AhnJUiQu4hcqi600dNH.jpg", "order": 6}, {"name": "Jim Fyfe", "character": "Stuart", "id": 101776, "credit_id": "52fe43b59251416c7501b17f", "cast_id": 18, "profile_path": "/iLZ3CQRRebc0nqIPufgnuYliKjq.jpg", "order": 7}, {"name": "Troy Evans", "character": "Sheriff Walt Perry", "id": 31006, "credit_id": "52fe43b59251416c7501b183", "cast_id": 19, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 8}, {"name": "Julianna McCarthy", "character": "Old Lady Bradley", "id": 101777, "credit_id": "52fe43b59251416c7501b187", "cast_id": 20, "profile_path": "/tJJJJUjXRlTgLxVZViQ2MPPs5ai.jpg", "order": 9}, {"name": "R. Lee Ermey", "character": "Sgt. Hiles", "id": 8655, "credit_id": "52fe43b59251416c7501b18b", "cast_id": 21, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 10}, {"name": "Elizabeth Hawthorne", "character": "Magda Rees-Jones", "id": 5533, "credit_id": "52fe43b59251416c7501b18f", "cast_id": 22, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 11}, {"name": "Melanie Lynskey", "character": "Deputy", "id": 15091, "credit_id": "52fe43b59251416c7501b193", "cast_id": 23, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 12}, {"name": "Stuart Devenie", "character": "Museum Curator", "id": 81876, "credit_id": "52fe43b59251416c7501b197", "cast_id": 24, "profile_path": "/24ULaHp8antJCog28T59tJByJZ1.jpg", "order": 13}, {"name": "Leslie Wing", "character": "Mrs. Waterhouse", "id": 101778, "credit_id": "52fe43b59251416c7501b19b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Dee Wallace", "character": "Patricia Ann Bradley", "id": 62001, "credit_id": "52fe43b59251416c7501b19f", "cast_id": 26, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 15}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b12f", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.5, "runtime": 110}, "10780": {"poster_path": "/7OfQM3VRp6UljUjeZCOEMxi009z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26713187, "overview": "Heiress Joanna Stayton hires carpenter Dean Proffitt to build a closet on her yacht -- and refuses to pay him for the project when it's done. But after Joanna accidentally falls overboard and loses her memory, Dean sees an opportunity to get even.", "video": false, "id": 10780, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Overboard", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093693", "adult": false, "backdrop_path": "/kyu7WKqnwXCly03KPmo3OQY8Kjq.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Star Partners II Ltd.", "id": 206}], "release_date": "1987-12-16", "popularity": 0.658851909548755, "original_title": "Overboard", "budget": 1880006, "cast": [{"name": "Goldie Hawn", "character": "Joanna Stayton", "id": 18892, "credit_id": "52fe43b59251416c7501b1f5", "cast_id": 9, "profile_path": "/dIwbk78Ult7xTyN4Z4B53bfN8Cx.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Dean Proffitt", "id": 6856, "credit_id": "52fe43b59251416c7501b1f9", "cast_id": 10, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Edward Herrmann", "character": "Grant Stayton III", "id": 52995, "credit_id": "52fe43b59251416c7501b1fd", "cast_id": 11, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 2}, {"name": "Katherine Helmond", "character": "Edith Mintz", "id": 381, "credit_id": "52fe43b69251416c7501b201", "cast_id": 12, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 3}, {"name": "Mike Hagerty", "character": "Billy Pratt", "id": 15105, "credit_id": "52fe43b69251416c7501b205", "cast_id": 13, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 4}, {"name": "Roddy McDowall", "character": "Andrew", "id": 7505, "credit_id": "52fe43b69251416c7501b209", "cast_id": 14, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 5}, {"name": "Jared Rushton", "character": "Charlie Proffitt", "id": 57422, "credit_id": "52fe43b69251416c7501b20d", "cast_id": 15, "profile_path": "/qbyP9UM7xHEFyrop3XKgb26V55q.jpg", "order": 6}, {"name": "Jamie Wild", "character": "Greg Proffitt", "id": 1037633, "credit_id": "52fe43b69251416c7501b211", "cast_id": 16, "profile_path": null, "order": 7}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b1c7", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 6.8, "runtime": 106}, "43549": {"poster_path": "/kW6vfjG2HnXj3kaBMu2BRLkRlkq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "20 men are chosen to participate in the roles of guards and prisoners in a psychological study that ultimately spirals out of control.", "video": false, "id": 43549, "genres": [{"id": 18, "name": "Drama"}], "title": "The Experiment", "tagline": "They never imagined it would go this far.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0997152", "adult": false, "backdrop_path": "/tvKHINCvEhLjFlY8eSOtgB92iS.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Tax Credit Finance", "id": 3782}, {"name": "Inferno Entertainment", "id": 13648}, {"name": "Cinedigm", "id": 20659}, {"name": "Magnet Media Productions", "id": 22545}, {"name": "Magnet Media Group", "id": 22546}, {"name": "Adelstein-Parouse Productions", "id": 22548}, {"name": "Mercator Pictures", "id": 22549}, {"name": "Natural Selection", "id": 22550}, {"name": "Westeast Films", "id": 22551}], "release_date": "2010-07-15", "popularity": 0.584285756178896, "original_title": "The Experiment", "budget": 21800000, "cast": [{"name": "Forest Whitaker", "character": "Barris", "id": 2178, "credit_id": "52fe4650c3a36847f80f847f", "cast_id": 2, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Cam Gigandet", "character": "Chase", "id": 55086, "credit_id": "52fe4650c3a36847f80f8483", "cast_id": 3, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 2}, {"name": "Adrien Brody", "character": "Travis", "id": 3490, "credit_id": "52fe4650c3a36847f80f8499", "cast_id": 7, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 3}, {"name": "Maggie Grace", "character": "Kelly", "id": 11825, "credit_id": "52fe4650c3a36847f80f849d", "cast_id": 8, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 4}, {"name": "Clifton Collins, Jr.", "character": "Nix", "id": 5365, "credit_id": "52fe4650c3a36847f80f84a1", "cast_id": 9, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 5}, {"name": "Ethan Cohn", "character": "Benji", "id": 63280, "credit_id": "52fe4650c3a36847f80f84a5", "cast_id": 10, "profile_path": "/l95OAzSrCvol5kEdR1nfC2CMLMx.jpg", "order": 6}, {"name": "Fisher Stevens", "character": "Archaleta", "id": 26473, "credit_id": "535f9963c3a3683099006861", "cast_id": 13, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 9}, {"name": "Travis Fimmel", "character": "Helweg", "id": 77700, "credit_id": "535f9992c3a36830a00065be", "cast_id": 14, "profile_path": "/s2eX7lG0n35AtkenfZV0uoLSudv.jpg", "order": 10}, {"name": "David Banner", "character": "Bosch", "id": 53258, "credit_id": "535f99a5c3a3683084006898", "cast_id": 15, "profile_path": "/v9KDy0PrFdkvYvDtHacpgnDwh73.jpg", "order": 11}, {"name": "Jason Lewis", "character": "Oscar", "id": 32224, "credit_id": "535f99b5c3a3683099006866", "cast_id": 16, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 12}, {"name": "Damien Leake", "character": "Govenor", "id": 159948, "credit_id": "535f99d3c3a36830b9006965", "cast_id": 17, "profile_path": "/wjDB58ft8TnutP6lCegsPaGYIpH.jpg", "order": 13}, {"name": "Rod Maiorano", "character": "Rex", "id": 1314908, "credit_id": "535f99e7c3a36830a90066e7", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Rachel O'Meara", "character": "Female Administrator", "id": 203526, "credit_id": "535f99f8c3a3683091006677", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Jeanne Hopson", "character": "Gertrude", "id": 1314909, "credit_id": "535f9a07c3a36830a90066ee", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Jack Mishler", "character": "Henry", "id": 1314910, "credit_id": "535f9a1bc3a3682273002c19", "cast_id": 21, "profile_path": null, "order": 17}], "directors": [{"name": "Paul Scheuring", "department": "Directing", "job": "Director", "credit_id": "52fe4650c3a36847f80f8489", "profile_path": "/fW8lD3VXm9ikxWOxoS2YJ9MZKLS.jpg", "id": 54869}], "vote_average": 6.6, "runtime": 120}, "10782": {"poster_path": "/1h3miwR99Osy4zqh5LK8pSqt1Qf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A DEA agent investigates the disappearance of a legendary Army ranger drill sergeant and several of his cadets during a training exercise gone severely awry.", "video": false, "id": 10782, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Basic", "tagline": "Deception is their most deadly weapon.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264395", "adult": false, "backdrop_path": "/6DE62dhAbC0QLpwBOT6GKw79NgX.jpg", "production_companies": [{"name": "Intermedia Films", "id": 763}, {"name": "Krane Entertainment", "id": 25358}], "release_date": "2003-04-18", "popularity": 0.606437070402749, "original_title": "Basic", "budget": 0, "cast": [{"name": "John Travolta", "character": "Hardy", "id": 8891, "credit_id": "52fe43b69251416c7501b2cb", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Connie Nielsen", "character": "Osborne", "id": 935, "credit_id": "52fe43b69251416c7501b2cf", "cast_id": 2, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "West", "id": 2231, "credit_id": "52fe43b69251416c7501b2d3", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "Kendall", "id": 1771, "credit_id": "52fe43b69251416c7501b2fb", "cast_id": 10, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "Tim Daly", "character": "Styles", "id": 68122, "credit_id": "52fe43b69251416c7501b2ff", "cast_id": 11, "profile_path": "/eLBlqpzOv1F9oPcWSU76yiuXneU.jpg", "order": 4}, {"name": "Brian Van Holt", "character": "Dunbar", "id": 12792, "credit_id": "52fe43b69251416c7501b303", "cast_id": 12, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 5}, {"name": "Roselyn S\u00e1nchez", "character": "Nunez", "id": 41901, "credit_id": "52fe43b69251416c7501b307", "cast_id": 13, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 6}, {"name": "Cristi\u00e1n de la Fuente", "character": "Castro", "id": 66143, "credit_id": "52fe43b69251416c7501b30b", "cast_id": 14, "profile_path": "/M7XlkDidelmHjOaJ63uyUP5MKa.jpg", "order": 7}, {"name": "Taye Diggs", "character": "Pike", "id": 17637, "credit_id": "52fe43b69251416c7501b30f", "cast_id": 15, "profile_path": "/1g1demRAGhwdUpwi8PA0wgFe2IX.jpg", "order": 8}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe43b69251416c7501b2d9", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.0, "runtime": 98}, "109091": {"poster_path": "/uxp6rHVBzUqZCyTaUI8xzUP5sOf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71009334, "overview": "A rich and successful lawyer named Counselor is about to get married to his fianc\u00e9e but soon meets up with the middle-man known as Westray who tells him his drug trafficking plan has taken a horrible twist and now he must protect himself and his soon bride-to-be lover as the truth of the drug business uncovers and targets become chosen.", "video": false, "id": 109091, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Counselor", "tagline": "Sin Is A Choice.", "vote_count": 255, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2193215", "adult": false, "backdrop_path": "/62xHmGnxMi0wV40BS3iKnDru0nO.jpg", "production_companies": [{"name": "Translux", "id": 14384}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Chockstone Pictures", "id": 13649}, {"name": "TSG Entertainment", "id": 22213}, {"name": "Ingenious Media", "id": 290}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Kanzaman", "id": 4169}], "release_date": "2013-10-25", "popularity": 0.969423144650464, "original_title": "The Counselor", "budget": 25000000, "cast": [{"name": "Michael Fassbender", "character": "The Counselor", "id": 17288, "credit_id": "52fe4aaac3a36847f81db479", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Malkina", "id": 6941, "credit_id": "52fe4aaac3a36847f81db49b", "cast_id": 10, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Reiner", "id": 3810, "credit_id": "52fe4aaac3a36847f81db485", "cast_id": 6, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Laura", "id": 955, "credit_id": "52fe4aaac3a36847f81db481", "cast_id": 5, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "Brad Pitt", "character": "Westray", "id": 287, "credit_id": "52fe4aaac3a36847f81db47d", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 4}, {"name": "Dean Norris", "character": "Buyer", "id": 14329, "credit_id": "52fe4aaac3a36847f81db4b3", "cast_id": 19, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 5}, {"name": "Emma Rigby", "character": "Tony's Girl", "id": 1078568, "credit_id": "52fe4aaac3a36847f81db4af", "cast_id": 18, "profile_path": "/5pMA7z3BZP7YdWqphbPRqu2peWq.jpg", "order": 6}, {"name": "Rosie Perez", "character": "Ruth", "id": 4810, "credit_id": "52fe4aaac3a36847f81db4a3", "cast_id": 15, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 7}, {"name": "Goran Vi\u0161nji\u0107", "character": "Banker", "id": 5725, "credit_id": "52fe4aaac3a36847f81db4a7", "cast_id": 16, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 8}, {"name": "Bruno Ganz", "character": "Diamond Dealer", "id": 2310, "credit_id": "52fe4aaac3a36847f81db4ab", "cast_id": 17, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 9}, {"name": "Toby Kebbell", "character": "Tony", "id": 20286, "credit_id": "52fe4aaac3a36847f81db4b7", "cast_id": 20, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 10}, {"name": "Barbara Durkin", "character": "Cafe Waitress", "id": 1218936, "credit_id": "52fe4aaac3a36847f81db4bb", "cast_id": 21, "profile_path": "/frnhWKFUJbOruYO5oP9OWyEyK7y.jpg", "order": 11}, {"name": "Donna Air", "character": "Chauffeur", "id": 120886, "credit_id": "52fe4aaac3a36847f81db4bf", "cast_id": 22, "profile_path": "/x9SjwmJlvu1FJ7ZIDKcwACnQfXz.jpg", "order": 12}, {"name": "Giannina Facio", "character": "Woman with Mobile Phone", "id": 58787, "credit_id": "52fe4aaac3a36847f81db4c3", "cast_id": 23, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 13}, {"name": "Richard Brake", "character": "Second Man", "id": 3901, "credit_id": "52fe4aaac3a36847f81db4c7", "cast_id": 24, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 14}, {"name": "Sam Spruell", "character": "Wireman", "id": 55585, "credit_id": "52fe4aaac3a36847f81db4cb", "cast_id": 25, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 15}, {"name": "Sam Spruell", "character": "Watching Girl", "id": 55585, "credit_id": "52fe4aaac3a36847f81db4cf", "cast_id": 26, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 16}, {"name": "Alex Hafner", "character": "Highway Patrolman", "id": 1114061, "credit_id": "52fe4aaac3a36847f81db4d3", "cast_id": 27, "profile_path": "/rxHWT1t1YCxpqe2CS8lMerTH4La.jpg", "order": 17}, {"name": "Richard Cabral", "character": "Young Biker", "id": 1105711, "credit_id": "52fe4aaac3a36847f81db4d7", "cast_id": 28, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 18}, {"name": "Dar Dash", "character": "Barman", "id": 575927, "credit_id": "52fe4aaac3a36847f81db4db", "cast_id": 29, "profile_path": "/7x3X7aOkfa3iog7MZydBA4jWvTi.jpg", "order": 19}, {"name": "Paris Jefferson", "character": "Waitress", "id": 185429, "credit_id": "52fe4aaac3a36847f81db4df", "cast_id": 30, "profile_path": "/3S2XuHA9RQ67gqc4RHlUJaDrIjD.jpg", "order": 20}, {"name": "Christopher Obi", "character": "Malkina's Bodyguard", "id": 1088913, "credit_id": "52fe4aaac3a36847f81db4e3", "cast_id": 31, "profile_path": "/9mkVa3qKba8S7UcyzUYZPkeRG37.jpg", "order": 21}, {"name": "Velibor Topi\u0107", "character": "Sedan Man", "id": 34515, "credit_id": "52fe4aaac3a36847f81db4e7", "cast_id": 32, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 22}, {"name": "Gerard Monaco", "character": "Hotel Waiter", "id": 110872, "credit_id": "52fe4aaac3a36847f81db4eb", "cast_id": 33, "profile_path": "/uAUEHu3o7ngTudz7wBec9e8sc4a.jpg", "order": 23}, {"name": "Fernando Cayo", "character": "Abogado", "id": 51902, "credit_id": "52fe4aaac3a36847f81db4ef", "cast_id": 34, "profile_path": "/oDbXZgeh03v6OzgeIcrk0YZ556L.jpg", "order": 24}, {"name": "Carlos Julio Molina", "character": "Workman", "id": 1177536, "credit_id": "52fe4aaac3a36847f81db4f7", "cast_id": 36, "profile_path": "/opcOTTnGVvSM1WKH5rkFs05nqnS.jpg", "order": 25}, {"name": "Natalie Dormer", "character": "Blonde", "id": 58502, "credit_id": "52fe4aaac3a36847f81db4ff", "cast_id": 38, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 26}, {"name": "Rub\u00e9n Blades", "character": "Jefe", "id": 2049, "credit_id": "52fe4aaac3a36847f81db4fb", "cast_id": 37, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 27}, {"name": "Julien Vialon", "character": "Ma\u00eetre D'", "id": 212093, "credit_id": "52fe4aaac3a36847f81db503", "cast_id": 39, "profile_path": "/eYajr9BYN3QHVv6PGwVqUSMfvSP.jpg", "order": 28}, {"name": "Goran Vi\u0161nji\u0107", "character": "Banker", "id": 5725, "credit_id": "52fe4aaac3a36847f81db507", "cast_id": 40, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 29}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4aaac3a36847f81db46f", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 5.0, "runtime": 117}, "10795": {"poster_path": "/9caHoo7Acpc4GMfgBdNZIC6kVCb.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A man receives a mysterious e-mail appearing to be from his wife, who was murdered years earlier. As he frantically tries to find out whether she's alive, he finds himself being implicated in her death.", "video": false, "id": 10795, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Tell No One", "tagline": "8 years ago Alex's wife was MURDERED. Today... she e-mailed him.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0362225", "adult": false, "backdrop_path": "/r4supNyXFTjqYp6Kldm1j0kFgAx.jpg", "production_companies": [{"name": "Les Productions du Tr\u00e9sor", "id": 2612}], "release_date": "2006-11-01", "popularity": 0.679566217340801, "original_title": "Ne le dis \u00e0 personne", "budget": 0, "cast": [{"name": "Fran\u00e7ois Cluzet", "character": "Docteur Alexandre Arnaud Beck", "id": 33161, "credit_id": "52fe43b89251416c7501b84d", "cast_id": 3, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 0}, {"name": "Marie-Jos\u00e9e Croze", "character": "Margot Beck", "id": 8791, "credit_id": "52fe43b89251416c7501b851", "cast_id": 4, "profile_path": "/geZ08Bzueh6qDEGGUR7jQgomLks.jpg", "order": 1}, {"name": "Kristin Scott Thomas", "character": "H\u00e9l\u00e8ne Perkins", "id": 5470, "credit_id": "52fe43b89251416c7501b855", "cast_id": 5, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 2}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Eric Levkowitch", "id": 7693, "credit_id": "52fe43b89251416c7501b859", "cast_id": 6, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 3}, {"name": "Andr\u00e9 Dussollier", "character": "Jacques Laurentin", "id": 18177, "credit_id": "52fe43b89251416c7501b85d", "cast_id": 7, "profile_path": "/rKZXoZJBUMKRbACbAGEat7wvAr7.jpg", "order": 4}, {"name": "Marina Hands", "character": "Anne Beck", "id": 32511, "credit_id": "52fe43b89251416c7501b861", "cast_id": 9, "profile_path": "/mscpyqeKZbLlBL6JyaMlJNVVjEG.jpg", "order": 6}, {"name": "Jean Rochefort", "character": "Gilbert Neuville", "id": 24421, "credit_id": "52fe43b89251416c7501b865", "cast_id": 10, "profile_path": "/egQw0mikF0oVfZo3kqUXbr622RC.jpg", "order": 7}, {"name": "Guillaume Canet", "character": "Philippe Neuville", "id": 19866, "credit_id": "52fe43b89251416c7501b869", "cast_id": 12, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 9}, {"name": "Olivier Marchal", "character": "Bernard Valenti", "id": 52342, "credit_id": "52fe43b89251416c7501b86d", "cast_id": 13, "profile_path": "/7ATecIMp8xaPFotelxbS9HvsmPp.jpg", "order": 10}, {"name": "Florence Thomassin", "character": "Charlotte Bertaud", "id": 66838, "credit_id": "52fe43b89251416c7501b871", "cast_id": 14, "profile_path": "/dTl02iZ9mgxbXOLElidgqr79ZDX.jpg", "order": 11}, {"name": "Philippe Lefebvre", "character": "Lieutenant Philippe Meynard", "id": 66839, "credit_id": "52fe43b89251416c7501b875", "cast_id": 15, "profile_path": "/3OgeaSSNSQCWliABQcQoq2NrwvC.jpg", "order": 12}, {"name": "Gilles Lellouche", "character": "Bruno", "id": 54291, "credit_id": "52fe43b89251416c7501b891", "cast_id": 20, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 13}, {"name": "Nathalie Baye", "character": "Ma\u00eetre Elysabeth Feldman", "id": 136761, "credit_id": "552c6633c3a3685bc1000601", "cast_id": 21, "profile_path": "/1Jgb6SsdVhQhoPykMWIKzfV5s5U.jpg", "order": 14}], "directors": [{"name": "Guillaume Canet", "department": "Directing", "job": "Director", "credit_id": "52fe43b89251416c7501b843", "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "id": 19866}], "vote_average": 7.5, "runtime": 131}, "2604": {"poster_path": "/iAUSzQNpxf9fX1EvhNbeguo6aVA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161001698, "overview": "The biography of Ron Kovic. Paralyzed in the Vietnam war, he becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for.", "video": false, "id": 2604, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Born on the Fourth of July", "tagline": "A story of innocence lost and courage found.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0096969", "adult": false, "backdrop_path": "/uuAGxNyckS2pBbx0jKKQ7j4dMEF.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Ixtlan", "id": 4198}], "release_date": "1989-12-20", "popularity": 1.35260262895744, "original_title": "Born on the Fourth of July", "budget": 14000000, "cast": [{"name": "Tom Cruise", "character": "Ron Kovic", "id": 500, "credit_id": "52fe435fc3a36847f804f4bf", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Raymond J. Barry", "character": "Mr. Kovic", "id": 10361, "credit_id": "52fe435fc3a36847f804f4c3", "cast_id": 2, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 1}, {"name": "Caroline Kava", "character": "Mrs. Kovic", "id": 26466, "credit_id": "52fe435fc3a36847f804f4c7", "cast_id": 3, "profile_path": "/eabqpRROV3ZfZJWNZb4vImOlXMZ.jpg", "order": 2}, {"name": "Holly Marie Combs", "character": "Jenny", "id": 26469, "credit_id": "52fe435fc3a36847f804f4e7", "cast_id": 11, "profile_path": "/6nBsYLxhHzzf7Q0PQzBjnGjz5kX.jpg", "order": 3}, {"name": "Kyra Sedgwick", "character": "Donna", "id": 26467, "credit_id": "52fe435fc3a36847f804f4cb", "cast_id": 4, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 4}, {"name": "Tom Berenger", "character": "Recruiting Gunnery Sgt. Hayes", "id": 13022, "credit_id": "52fe435fc3a36847f804f4cf", "cast_id": 5, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 5}, {"name": "Rob Camilletti", "character": "Tommy Finnelli", "id": 26468, "credit_id": "52fe435fc3a36847f804f4d3", "cast_id": 6, "profile_path": "/saI6oFTpyojo3T8JziAWoVpjhel.jpg", "order": 6}, {"name": "Stephen Baldwin", "character": "Billy Vorsovich", "id": 9045, "credit_id": "52fe435fc3a36847f804f4d7", "cast_id": 7, "profile_path": "/u1pITf1MUXVbCdiJaFxbHEda1oQ.jpg", "order": 7}, {"name": "Mark Moses", "character": "Arzt", "id": 11889, "credit_id": "52fe435fc3a36847f804f4db", "cast_id": 8, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 8}, {"name": "Vivica A. Fox", "character": "Hooker", "id": 2535, "credit_id": "52fe435fc3a36847f804f4df", "cast_id": 9, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 9}, {"name": "Lili Taylor", "character": "Jamie Wilson", "id": 3127, "credit_id": "52fe435fc3a36847f804f4e3", "cast_id": 10, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 10}, {"name": "Jerry Levine", "character": "Steve Boyer", "id": 26470, "credit_id": "52fe435fc3a36847f804f4eb", "cast_id": 12, "profile_path": "/6pNnyI19jquUa5dziLPZPsQn4WP.jpg", "order": 11}, {"name": "Frank Whaley", "character": "Timmy", "id": 11805, "credit_id": "52fe435fc3a36847f804f4ef", "cast_id": 13, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 12}, {"name": "Willem Dafoe", "character": "Charlie", "id": 5293, "credit_id": "52fe435fc3a36847f804f529", "cast_id": 23, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 13}, {"name": "Josh Evans", "character": "Tommy Kovic", "id": 1044946, "credit_id": "5347eb76c3a368672d00131b", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Bob Gunton", "character": "Doctor", "id": 4029, "credit_id": "54cef36e925141475d007063", "cast_id": 30, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 15}, {"name": "Cordelia Gonz\u00e1lez", "character": "Maria Elena", "id": 126096, "credit_id": "54cef394c3a3687f8c00727c", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Tony Frank", "character": "Mr. Wilson", "id": 1218890, "credit_id": "54cef3c3c3a3687f8400765c", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Jayne Haynes", "character": "Mrs. Wilson", "id": 181312, "credit_id": "54cef3d3c3a3687f84007661", "cast_id": 33, "profile_path": null, "order": 18}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe435fc3a36847f804f4f5", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.5, "runtime": 145}, "2605": {"poster_path": "/kiIoZ05pRYEepIs7apiwTmmKBJe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40697761, "overview": "After a lightning bolt zaps a robot named Number 5, the lovable machine starts to think he's human and escapes the lab. Hot on his trail is his designer, Newton, who hopes to get to Number 5 before the military does. In the meantime, a spunky animal lover mistakes the robot for an alien and takes him in, teaching her new guest about life on Earth.", "video": false, "id": 2605, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Short Circuit", "tagline": "Something wonderful has happened... No. 5 is alive!", "vote_count": 116, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o3C0qlKyg7Haot9ZVqtRtsrKwWc.jpg", "poster_path": "/AZFGrT6LotCm69uNgVnTkUYBGh.jpg", "id": 86347, "name": "Short Circuit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091949", "adult": false, "backdrop_path": "/yoOgUFzKst23wCcW4TdakAJ1lXd.jpg", "production_companies": [{"name": "PSO International", "id": 427}, {"name": "David Foster Productions", "id": 496}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1986-05-09", "popularity": 0.278870916294037, "original_title": "Short Circuit", "budget": 0, "cast": [{"name": "Ally Sheedy", "character": "Stephanie Speck", "id": 12851, "credit_id": "52fe435fc3a36847f804f575", "cast_id": 1, "profile_path": "/xfNrfzgDwyvmczadJWw4fN70siS.jpg", "order": 0}, {"name": "Steve Guttenberg", "character": "Newton Crosby", "id": 26472, "credit_id": "52fe435fc3a36847f804f579", "cast_id": 2, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 1}, {"name": "Fisher Stevens", "character": "Ben Jabituya", "id": 26473, "credit_id": "52fe435fc3a36847f804f57d", "cast_id": 3, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 2}, {"name": "Austin Pendleton", "character": "Howard Marner", "id": 6168, "credit_id": "52fe435fc3a36847f804f593", "cast_id": 7, "profile_path": "/5zCfkpsDFAilHv1nMFWiz5lx6ZH.jpg", "order": 3}, {"name": "G. W. Bailey", "character": "Skroeder", "id": 27237, "credit_id": "52fe435fc3a36847f804f5c1", "cast_id": 15, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 4}, {"name": "Brian McNamara", "character": "Frank", "id": 27238, "credit_id": "52fe435fc3a36847f804f5c5", "cast_id": 16, "profile_path": "/eHBvnSkMrhNB57yU2nlQCfH8Kl8.jpg", "order": 5}, {"name": "Tim Blaney", "character": "Number 5", "id": 1036563, "credit_id": "52fe435fc3a36847f804f5c9", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Marvin J. McIntyre", "character": "Duke", "id": 13003, "credit_id": "52fe435fc3a36847f804f5cd", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "John Garber", "character": "Otis", "id": 950548, "credit_id": "52fe435fc3a36847f804f5d1", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Penny Santon", "character": "Mrs. Cepeda", "id": 80599, "credit_id": "52fe435fc3a36847f804f5d5", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "John Badham", "department": "Directing", "job": "Director", "credit_id": "52fe435fc3a36847f804f583", "profile_path": "/oAhHnnyoIY7qgg7aERbsOuqFdow.jpg", "id": 12840}], "vote_average": 6.3, "runtime": 98}, "2609": {"poster_path": "/t7Rrs11VNjWAi8loMLhRe94gesE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49230280, "overview": "A man must struggle to travel home for Thanksgiving, with an obnoxious slob of a shower ring salesman his only companion.", "video": false, "id": 2609, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Planes, Trains and Automobiles", "tagline": "What he really wanted was to spend Thanksgiving with his family. What he got was three days with the turkey.", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093748", "adult": false, "backdrop_path": "/w8wOF8n52L3npxj3cBYejoc2Zkj.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1987-11-26", "popularity": 0.647056321952319, "original_title": "Planes, Trains and Automobiles", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Neal Page", "id": 67773, "credit_id": "52fe435fc3a36847f804f679", "cast_id": 1, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "John Candy", "character": "Del Griffith", "id": 7180, "credit_id": "52fe435fc3a36847f804f67d", "cast_id": 2, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 1}, {"name": "Laila Robins", "character": "Susan Page", "id": 27260, "credit_id": "52fe435fc3a36847f804f6b1", "cast_id": 11, "profile_path": "/3Ku9V79Nr6o8xR4Aw1kpq9w2MC1.jpg", "order": 2}, {"name": "Michael McKean", "character": "State Trooper", "id": 21731, "credit_id": "52fe435fc3a36847f804f6b5", "cast_id": 12, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 3}, {"name": "Dylan Baker", "character": "Owen", "id": 19152, "credit_id": "52fe435fc3a36847f804f6b9", "cast_id": 13, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 4}, {"name": "Kevin Bacon", "character": "Taxi Racer", "id": 4724, "credit_id": "52fe435fc3a36847f804f6bd", "cast_id": 14, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Olivia Burnette", "character": "Marti Page", "id": 27261, "credit_id": "52fe435fc3a36847f804f6c1", "cast_id": 15, "profile_path": "/7K8Hqv59v96QqkDHh9vQo91h3Gx.jpg", "order": 6}, {"name": "Carol Bruce", "character": "Joy Page", "id": 27262, "credit_id": "52fe435fc3a36847f804f6c5", "cast_id": 16, "profile_path": "/rw8lliecsteL1D4D8hLzc41HJBA.jpg", "order": 7}, {"name": "Diana Douglas", "character": "Peg", "id": 27263, "credit_id": "52fe435fc3a36847f804f6c9", "cast_id": 17, "profile_path": "/ohPVMTqNOE4NvRF7amqFSYWnqRl.jpg", "order": 8}, {"name": "Martin Ferrero", "character": "Second Motel Clerk", "id": 4790, "credit_id": "52fe435fc3a36847f804f6cd", "cast_id": 18, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 9}, {"name": "Larry Hankin", "character": "Doobie", "id": 11519, "credit_id": "52fe435fc3a36847f804f6d1", "cast_id": 19, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 10}, {"name": "Richard Herd", "character": "Walt", "id": 13732, "credit_id": "52fe435fc3a36847f804f6d5", "cast_id": 20, "profile_path": "/1wsn9V7kkrvD2Qr3bD1vSH2OjpK.jpg", "order": 11}, {"name": "Susan Kellermann", "character": "Waitress", "id": 27264, "credit_id": "52fe435fc3a36847f804f6d9", "cast_id": 21, "profile_path": "/1WTM0L9rpgv0Urgi7P0IoHaMlsX.jpg", "order": 12}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe435fc3a36847f804f683", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.5, "runtime": 93}, "76338": {"poster_path": "/aROh4ZwLfv9tmtOAsrnkYTbpujA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 479765000, "overview": "Thor fights to restore order across the cosmos\u2026 but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.", "video": false, "id": 76338, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Thor: The Dark World", "tagline": "Delve into the darkness", "vote_count": 1504, "homepage": "http://marvel.com/thor", "belongs_to_collection": {"backdrop_path": "/FZhEgAes4PX86BJGJPXyZCXHrj.jpg", "poster_path": "/7vx64r9HS57yz2T53i31SdmqdEi.jpg", "id": 131296, "name": "Thor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1981115", "adult": false, "backdrop_path": "/3FweBee0xZoY77uO1bhUOlQorNH.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2013-11-08", "popularity": 4.09233212611027, "original_title": "Thor: The Dark World", "budget": 170000000, "cast": [{"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe4932c3a368484e11f66f", "cast_id": 2, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Jane Foster", "id": 524, "credit_id": "52fe4932c3a368484e11f673", "cast_id": 3, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Tom Hiddleston", "character": "Loki", "id": 91606, "credit_id": "52fe4932c3a368484e11f677", "cast_id": 4, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 2}, {"name": "Anthony Hopkins", "character": "Odin", "id": 4173, "credit_id": "52fe4933c3a368484e11f6a5", "cast_id": 17, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 3}, {"name": "Christopher Eccleston", "character": "Malekith", "id": 2040, "credit_id": "52fe4933c3a368484e11f691", "cast_id": 12, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 4}, {"name": "Jaimie Alexander", "character": "Sif", "id": 59817, "credit_id": "52fe4933c3a368484e11f685", "cast_id": 9, "profile_path": "/vPXy9FBK272nqrJDlQX9zU57vmj.jpg", "order": 5}, {"name": "Zachary Levi", "character": "Fandral", "id": 69899, "credit_id": "52fe4933c3a368484e11f68d", "cast_id": 11, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 6}, {"name": "Ray Stevenson", "character": "Volstagg", "id": 56614, "credit_id": "52fe4933c3a368484e11f713", "cast_id": 42, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 7}, {"name": "Tadanobu Asano", "character": "Hogun", "id": 13275, "credit_id": "52fe4933c3a368484e11f69d", "cast_id": 15, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 8}, {"name": "Idris Elba", "character": "Heimdall", "id": 17605, "credit_id": "52fe4933c3a368484e11f681", "cast_id": 7, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 9}, {"name": "Rene Russo", "character": "Frigga", "id": 14343, "credit_id": "52fe4933c3a368484e11f6a1", "cast_id": 16, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 10}, {"name": "Stellan Skarsg\u00e5rd", "character": "Dr. Erik Selvig", "id": 1640, "credit_id": "52fe4933c3a368484e11f689", "cast_id": 10, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 11}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Algrim / Kurse", "id": 31164, "credit_id": "52fe4933c3a368484e11f695", "cast_id": 13, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 12}, {"name": "Kat Dennings", "character": "Darcy Lewis", "id": 52852, "credit_id": "52fe4933c3a368484e11f699", "cast_id": 14, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 13}, {"name": "Alice Krige", "character": "Eir", "id": 2506, "credit_id": "52fe4933c3a368484e11f717", "cast_id": 43, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 14}, {"name": "Clive Russell", "character": "Tyr", "id": 19901, "credit_id": "52fe4933c3a368484e11f6a9", "cast_id": 18, "profile_path": "/3dkiAdWPMPiPRqwi5MVBFOSD9Xo.jpg", "order": 15}, {"name": "Stan Lee", "character": "Himself", "id": 7624, "credit_id": "52fe4933c3a368484e11f6ad", "cast_id": 19, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 16}, {"name": "Chris O'Dowd", "character": "Richard", "id": 40477, "credit_id": "52fe4933c3a368484e11f6db", "cast_id": 27, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 17}, {"name": "Tony Curran", "character": "Bor", "id": 2220, "credit_id": "52fe4933c3a368484e11f6df", "cast_id": 29, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 18}, {"name": "Talulah Riley", "character": "Nurse", "id": 66441, "credit_id": "52fe4933c3a368484e11f6e3", "cast_id": 30, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 19}, {"name": "Richard Brake", "character": "Einherjar Lieutenant", "id": 3901, "credit_id": "52fe4933c3a368484e11f6e7", "cast_id": 31, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 20}, {"name": "Richard Wharton", "character": "Asylum Patient", "id": 87115, "credit_id": "52fe4933c3a368484e11f6eb", "cast_id": 32, "profile_path": "/hklENMg9f6pAbTHafbbOZpUbZUN.jpg", "order": 21}, {"name": "Chris Evans", "character": "Captain America (uncredited)", "id": 16828, "credit_id": "52fe4933c3a368484e11f6ef", "cast_id": 33, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 22}, {"name": "Ophelia Lovibond", "character": "Carina (uncredited)", "id": 82639, "credit_id": "52fe4933c3a368484e11f6f3", "cast_id": 34, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 23}, {"name": "Benicio del Toro", "character": "Taneleer Tivan / The Collector (uncredited)", "id": 1121, "credit_id": "52fe4933c3a368484e11f6f7", "cast_id": 35, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 24}, {"name": "Jonathan Howard", "character": "Ian Boothby", "id": 1270111, "credit_id": "52fe4933c3a368484e11f71b", "cast_id": 44, "profile_path": "/tQHHmna3gp74flis6MxsnYXsbgm.jpg", "order": 25}], "directors": [{"name": "Alan Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe4932c3a368484e11f67d", "profile_path": "/elbdMfF9adhtJq5Sle5P3JFZgyI.jpg", "id": 47005}], "vote_average": 7.0, "runtime": 112}, "2614": {"poster_path": "/krRl7QKdIYsVUPYmOwElA1sqQE7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25893810, "overview": "A hapless store clerk must foil criminals to save the life of the man who, miniaturized in a secret experiment, was accidentally injected into him.", "video": false, "id": 2614, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Innerspace", "tagline": "This summer take a trip you'll never forget.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093260", "adult": false, "backdrop_path": "/u7qwHw01k9RxKv0zPdcJONlZXJu.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Guber-Peters Company", "id": 4357}], "release_date": "1987-06-30", "popularity": 0.878180368217018, "original_title": "Innerspace", "budget": 0, "cast": [{"name": "Martin Short", "character": "Jack Putter", "id": 519, "credit_id": "52fe4360c3a36847f804f901", "cast_id": 1, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Lt. Tuck Pendleton", "id": 6065, "credit_id": "52fe4360c3a36847f804f905", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Meg Ryan", "character": "Lydia Maxwell", "id": 5344, "credit_id": "52fe4360c3a36847f804f909", "cast_id": 3, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 2}, {"name": "Kevin McCarthy", "character": "Victor Eugene Scrimshaw", "id": 34597, "credit_id": "52fe4360c3a36847f804f955", "cast_id": 18, "profile_path": "/6789RKVg3Gc7ADIiod4wHXB5bWX.jpg", "order": 3}, {"name": "Fiona Lewis", "character": "Dr. Margaret Canker", "id": 26490, "credit_id": "52fe4360c3a36847f804f90d", "cast_id": 5, "profile_path": "/iGyGj6bVRqjAJpUs94Ye3V7cJvv.jpg", "order": 5}, {"name": "Vernon Wells", "character": "Mr. Igoe", "id": 26491, "credit_id": "52fe4360c3a36847f804f911", "cast_id": 6, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 6}, {"name": "Robert Picardo", "character": "The Cowboy", "id": 16180, "credit_id": "52fe4360c3a36847f804f915", "cast_id": 7, "profile_path": "/5L0WCl3TzjeWdP8TqXfQ1n9uaOn.jpg", "order": 7}, {"name": "Dick Miller", "character": "Cab Driver", "id": 102441, "credit_id": "52fe4360c3a36847f804f959", "cast_id": 19, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 8}, {"name": "Wendy Schaal", "character": "Wendy", "id": 37600, "credit_id": "547d93e99251412d7f0050a7", "cast_id": 20, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 9}, {"name": "Harold Sylvester", "character": "Pete Blanchard", "id": 27540, "credit_id": "547d93f7c3a3685b00005763", "cast_id": 21, "profile_path": "/d7caCyjDpaemQzO4DlVfF2uIKQ1.jpg", "order": 10}, {"name": "William Schallert", "character": "Dr. Greenbush", "id": 15992, "credit_id": "547d9407c3a3685aed00599a", "cast_id": 22, "profile_path": "/d171pyQqJT272px9knj9crpYcSf.jpg", "order": 11}, {"name": "Henry Gibson", "character": "Mr. Wormwood", "id": 19439, "credit_id": "547d9414c3a3685af90048d6", "cast_id": 23, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 12}, {"name": "John Hora", "character": "Ozzie Wexler", "id": 16156, "credit_id": "547d9421c3a3685b050054ec", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Mark L. Taylor", "character": "Dr. Niles", "id": 78003, "credit_id": "547d94309251412d7c0053a2", "cast_id": 25, "profile_path": "/uvqfJeuIQEHvbEDJWDZJcTBlzNy.jpg", "order": 14}, {"name": "Orson Bean", "character": "Lydia's Editor", "id": 863, "credit_id": "547d943dc3a3685af90048db", "cast_id": 26, "profile_path": "/vMG49W2jMiOn1wgAxCeSdtnUNjx.jpg", "order": 15}, {"name": "Kevin Hooks", "character": "Duane", "id": 40230, "credit_id": "547d944ac3a3685b050054f0", "cast_id": 27, "profile_path": "/xqzV7byaH95GSvR86JjGzHceIY4.jpg", "order": 16}, {"name": "Kathleen Freeman", "character": "Dream Lady", "id": 7210, "credit_id": "547d94569251412d7000583e", "cast_id": 28, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 17}, {"name": "Archie Hahn", "character": "Messenger", "id": 93670, "credit_id": "547d94639251412d7c0053ad", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Kenneth Tobey", "character": "Man in Restroom (as Ken Tobey)", "id": 103069, "credit_id": "547d94749251412d78004f18", "cast_id": 30, "profile_path": "/8oWlDuUkUjsmDv0TxRAq4PsfAnG.jpg", "order": 19}, {"name": "Joe Flaherty", "character": "Waiting Room Patient", "id": 59196, "credit_id": "547d94839251412d750049a3", "cast_id": 31, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 20}, {"name": "Andrea Martin", "character": "Waiting Room Patient", "id": 8263, "credit_id": "547d9495c3a36841e1001d84", "cast_id": 32, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 21}, {"name": "Jason Laskay", "character": "Scrimshaw's Henchman", "id": 1392678, "credit_id": "547d94a59251412d78004f21", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Frank Miller", "character": "Scrimshaw's Henchman", "id": 1392680, "credit_id": "547d94cb9251411f4e003e58", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Christine Avila", "character": "Lab Technician", "id": 1377370, "credit_id": "547d94f4c3a3685af30044ca", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Alexandra Borrie", "character": "Lab Technician", "id": 1392683, "credit_id": "547d94fd9251412d7f0050e6", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "Jenny Gago", "character": "Lab Technician", "id": 129872, "credit_id": "547d950b9251411f4e003e61", "cast_id": 38, "profile_path": "/pflr8vyv1CF9024D8cnUCZpZfwb.jpg", "order": 27}, {"name": "Robert Gounley", "character": "Lab Technician", "id": 1392685, "credit_id": "547d9515c3a3685af30044cd", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Grainger Hines", "character": "Rusty", "id": 169839, "credit_id": "547d9520c3a3685af90048fe", "cast_id": 40, "profile_path": "/8eKbbE6CCtPS5NcIRQ7evoORr22.jpg", "order": 29}, {"name": "Mike Garibaldi", "character": "Cop", "id": 1392686, "credit_id": "547d952e9251412d750049c7", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Richard McGonagle", "character": "Cop", "id": 80416, "credit_id": "547d9539c3a3685b000057a3", "cast_id": 42, "profile_path": "/xY4y27xOSrzliCfR5ihqSt3NKOw.jpg", "order": 31}, {"name": "Terence McGovern", "character": "Travel Agent", "id": 162323, "credit_id": "547d95469251412d6d005042", "cast_id": 43, "profile_path": "/yO86kO0EFrBIOHJWTx6RkeH9DEE.jpg", "order": 32}, {"name": "Robert Neches", "character": "Lab Guard", "id": 162092, "credit_id": "547d95539251412d6d005046", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Rance Howard", "character": "Supermarket Customer", "id": 22250, "credit_id": "547d95659251411f4e003e78", "cast_id": 45, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 34}, {"name": "Chuck Jones", "character": "Supermarket Customer", "id": 100888, "credit_id": "547d956e9251412d78004f5f", "cast_id": 46, "profile_path": "/6JpwLPN4ugD5sw5Z0zjPQf6nhh8.jpg", "order": 35}, {"name": "Laura Waterbury", "character": "Supermarket Customer", "id": 182416, "credit_id": "547d957a9251412d750049d9", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Kurt Braunreiter", "character": "Lab Assault Henchman", "id": 1392687, "credit_id": "547d9588c3a3685b05005531", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Robert Gray", "character": "Lab Assault Henchman", "id": 1392690, "credit_id": "547d95bc9251412d750049e2", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Brewster Sears", "character": "Lab Assault Henchman", "id": 1392691, "credit_id": "547d95d59251412d7c0053ee", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Alan Blumenfeld", "character": "Man with Camera", "id": 22053, "credit_id": "547d95e1c3a3685af30044ea", "cast_id": 51, "profile_path": "/2ag56MvKkTuhGnUFgJza4hJZl8u.jpg", "order": 40}, {"name": "Jeffrey Boam", "character": "Lydia's Interviewee", "id": 737, "credit_id": "547d95ed9251412d70005894", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Sydne Squire", "character": "Stewardess", "id": 1392693, "credit_id": "547d95f9c3a3685aed0059dc", "cast_id": 53, "profile_path": null, "order": 42}, {"name": "Paul Barselou", "character": "Man on Plane", "id": 1392694, "credit_id": "547d96049251412d750049f2", "cast_id": 54, "profile_path": null, "order": 43}, {"name": "John Miranda", "character": "Man in Elevator", "id": 166387, "credit_id": "547d9610c3a3685b000057ca", "cast_id": 55, "profile_path": null, "order": 44}, {"name": "Jordan Benjamin", "character": "Little Kid in Mall", "id": 1392695, "credit_id": "547d9621c3a3685aed0059eb", "cast_id": 56, "profile_path": null, "order": 45}, {"name": "Roberto Ramirez", "character": "Chef", "id": 1392696, "credit_id": "547d9634c3a36841e1001dcc", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Virginia Boyle", "character": "Shopping Lady", "id": 1392697, "credit_id": "547d9644c3a3685b000057d5", "cast_id": 58, "profile_path": null, "order": 47}, {"name": "Herb Mitchell", "character": "Camera Store Clerk", "id": 81903, "credit_id": "547d96519251412d750049fc", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "Neil Ross", "character": "Pod Computer (voice)", "id": 64951, "credit_id": "547d96859251412d78004f81", "cast_id": 61, "profile_path": "/dgcStU8y6YccpzuLeG0U0bC5xvC.jpg", "order": 50}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe4360c3a36847f804f951", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.2, "runtime": 120}, "2616": {"poster_path": "/pfRn0CzYq5n49EDl8BV8Jjry6ZM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66758538, "overview": "As an idle, good-natured bachelor, Uncle Buck is the last person you would think of to watch the kids. However, during a family crisis, he is suddenly left in charge of his nephew and nieces. Unaccustomed to suburban life, fun-loving Uncle Buck soon charms his younger relatives Miles and Maizy with his hefty cooking and his new way of doing the laundry. His carefree style does not impress everyone though - especially his rebellious teenage niece, Tia, and his impatient girlfriend, Chanice. With a little bit of luck and a lot of love, Uncle Buck manages to surprise everyone in this heartwarming family comedy.", "video": false, "id": 2616, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Uncle Buck", "tagline": "He's crude. He's crass. He's family.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098554", "adult": false, "backdrop_path": "/hXijgyAgIgPREv6H7AZN8L2W0Oe.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1989-08-16", "popularity": 0.349613237516466, "original_title": "Uncle Buck", "budget": 0, "cast": [{"name": "John Candy", "character": "Buck Russell", "id": 7180, "credit_id": "52fe4360c3a36847f804f987", "cast_id": 1, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 0}, {"name": "Jean Louisa Kelly", "character": "Tia Russell", "id": 26495, "credit_id": "52fe4360c3a36847f804f993", "cast_id": 4, "profile_path": "/9oZl7GU9pfXMYEv4BrpnvosHBQu.jpg", "order": 1}, {"name": "Macaulay Culkin", "character": "Miles Russell", "id": 11510, "credit_id": "52fe4360c3a36847f804f98b", "cast_id": 2, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 2}, {"name": "Gaby Hoffmann", "character": "Mazy Russell", "id": 12930, "credit_id": "52fe4360c3a36847f804f997", "cast_id": 5, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 3}, {"name": "Amy Madigan", "character": "Chanice Kobolowski", "id": 23882, "credit_id": "52fe4360c3a36847f804f98f", "cast_id": 3, "profile_path": "/pNdNJPKRdl3veCRH8fZv3H76ywJ.jpg", "order": 4}, {"name": "Elaine Bromka", "character": "Cindy Russell", "id": 27491, "credit_id": "52fe4360c3a36847f804f9a7", "cast_id": 8, "profile_path": "/xpGz2zFVrzTxc1OIW9nOoHzL75i.jpg", "order": 5}, {"name": "Garrett M. Brown", "character": "Bob Russell", "id": 27492, "credit_id": "52fe4360c3a36847f804f9ab", "cast_id": 9, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 6}, {"name": "Laurie Metcalf", "character": "Marcie Dahlgren-Frost", "id": 12133, "credit_id": "52fe4360c3a36847f804f9af", "cast_id": 10, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 7}, {"name": "Jay Underwood", "character": "Bug", "id": 27493, "credit_id": "52fe4360c3a36847f804f9b3", "cast_id": 11, "profile_path": "/1nXq2fcoJCkRgrhsGCMqVzjJGpG.jpg", "order": 8}, {"name": "Brian Tarantina", "character": "E. Roger Coswell", "id": 4890, "credit_id": "5377f359c3a3685542002434", "cast_id": 21, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 9}, {"name": "Mike Starr", "character": "Pooter-the-Clown", "id": 5170, "credit_id": "5377f375c3a3685525002544", "cast_id": 22, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 10}, {"name": "Suzanne Shepherd", "character": "Mrs. Hogarth", "id": 11484, "credit_id": "5377f391c3a368553a00257c", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "William Windom", "character": "Mr. Hatfield (voice)", "id": 8499, "credit_id": "5377f3b1c3a368553100268a", "cast_id": 24, "profile_path": "/nTqbMx3o9rk6Q5PfS3fwh5LEbGw.jpg", "order": 12}, {"name": "Dennis Cockrum", "character": "Pal", "id": 155825, "credit_id": "5377f41ec3a368553a002582", "cast_id": 25, "profile_path": "/3RGfs2kJ71XCho8VsDxpYlzlFur.jpg", "order": 13}, {"name": "Ryan Goldstein", "character": "School Child (uncredited)", "id": 1107987, "credit_id": "52fe4360c3a36847f804f9c9", "cast_id": 15, "profile_path": "/wqpzKnYuTGuj2KBhvTZRbtBtUgF.jpg", "order": 15}, {"name": "Anna Chlumsky", "character": "School Child", "id": 34612, "credit_id": "5377f53ac3a368551e00262d", "cast_id": 26, "profile_path": "/9wwtj8lfHKGna2L0CXBWllHIDUq.jpg", "order": 16}, {"name": "Patricia Arquette", "character": "Additional Voices (voice)", "id": 4687, "credit_id": "5377f55dc3a368554a002648", "cast_id": 27, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 17}, {"name": "Devon Odessa", "character": "Additional Voices (voice)", "id": 54456, "credit_id": "5377f580c3a368554a00264c", "cast_id": 28, "profile_path": "/gVwKvpPAdlgBTCHQIvK63Yf0C4y.jpg", "order": 18}, {"name": "Jack Blessing", "character": "Additional Voices (voice)", "id": 102336, "credit_id": "5377f5a1c3a3685525002568", "cast_id": 29, "profile_path": "/xadJ0CFul9YT84hRTZ3c0YmFASy.jpg", "order": 19}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4360c3a36847f804f99d", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.6, "runtime": 100}, "59961": {"poster_path": "/q83VacoG2hHLvORTPtvCXKsdBSN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 208076205, "overview": "Denzel Washington plays the most dangerous renegade from the CIA, who comes back onto the grid after a decade on the run. When the South African safe house he's remanded to is attacked by mercenaries, a rookie operative (Ryan Reynolds) escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.", "video": false, "id": 59961, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Safe House", "tagline": "No one is safe", "vote_count": 672, "homepage": "http://www.nooneissafe.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1599348", "adult": false, "backdrop_path": "/wX0mOAa91dTAT2WCGRvvpWUKAeD.jpg", "production_companies": [{"name": "Dentsu", "id": 6452}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Bluegrass Films", "id": 13778}], "release_date": "2012-02-10", "popularity": 1.30859848410431, "original_title": "Safe House", "budget": 85000000, "cast": [{"name": "Denzel Washington", "character": "Tobin Frost", "id": 5292, "credit_id": "52fe49a4c3a36847f81a4ed7", "cast_id": 3, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Matt Weston", "id": 10859, "credit_id": "52fe49a4c3a36847f81a4edb", "cast_id": 4, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Catherine Linklater", "id": 21657, "credit_id": "52fe49a4c3a36847f81a4edf", "cast_id": 5, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Joel Kinnaman", "character": "Keller", "id": 92404, "credit_id": "52fe49a4c3a36847f81a4ee3", "cast_id": 6, "profile_path": "/kn3AcrSxa0ApgQVcjQ8m6YsWVq.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "David Barlow", "id": 2039, "credit_id": "52fe49a4c3a36847f81a4ee7", "cast_id": 7, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Sam Shepard", "character": "Harlan Whitford", "id": 9880, "credit_id": "52fe49a4c3a36847f81a4eeb", "cast_id": 8, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 5}, {"name": "Nora Arnezeder", "character": "Ana Moreau", "id": 453272, "credit_id": "52fe49a4c3a36847f81a4eef", "cast_id": 10, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 6}, {"name": "Liam Cunningham", "character": "Alec Wade", "id": 15498, "credit_id": "52fe49a4c3a36847f81a4ef3", "cast_id": 12, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 7}, {"name": "Fares Fares", "character": "Vargas", "id": 57012, "credit_id": "52fe49a4c3a36847f81a4ef7", "cast_id": 13, "profile_path": "/1BE5IG3hcFXfMjBuJJyKs2JpPjI.jpg", "order": 8}, {"name": "Jenna Dover", "character": "CIA Analyst", "id": 936402, "credit_id": "52fe49a4c3a36847f81a4efb", "cast_id": 14, "profile_path": "/3sPpYR122yoFS83mdlQcBKSwAHb.jpg", "order": 9}, {"name": "Stephen Rider", "character": "CIA Analyst", "id": 936403, "credit_id": "52fe49a4c3a36847f81a4eff", "cast_id": 15, "profile_path": "/oS4eTt8qKF9320mGceFgArbFO0v.jpg", "order": 10}, {"name": "Daniel Fox", "character": "CIA Analyst", "id": 936404, "credit_id": "52fe49a4c3a36847f81a4f03", "cast_id": 16, "profile_path": "/kfBnrqHmNUmnKs9A6R21ok03PV7.jpg", "order": 11}, {"name": "Tracie Thoms", "character": "CIA Analyst", "id": 10580, "credit_id": "52fe49a4c3a36847f81a4f07", "cast_id": 17, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 12}, {"name": "Robert Patrick", "character": "Daniel Kiefe", "id": 418, "credit_id": "52fe49a4c3a36847f81a4f0b", "cast_id": 18, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 13}, {"name": "Rub\u00e9n Blades", "character": "Carlos Villar", "id": 2049, "credit_id": "52fe49a4c3a36847f81a4f0f", "cast_id": 19, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 14}, {"name": "Stephen Bishop", "character": "Marine Guard", "id": 55205, "credit_id": "52fe49a4c3a36847f81a4f13", "cast_id": 20, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 15}, {"name": "Tanit Phoenix", "character": "Hostess", "id": 37769, "credit_id": "52fe49a4c3a36847f81a4f83", "cast_id": 40, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 16}], "directors": [{"name": "Daniel Espinosa", "department": "Directing", "job": "Director", "credit_id": "52fe49a4c3a36847f81a4ecd", "profile_path": "/q7OXWizbUr6fdDAkEJiOynR4Zh1.jpg", "id": 125738}], "vote_average": 6.1, "runtime": 115}, "59962": {"poster_path": "/8eqEw3NGdqAfGtHyCTiuoMb4RrM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.", "video": false, "id": 59962, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "This Means War", "tagline": "It's SPY Against SPY", "vote_count": 598, "homepage": "http://www.thismeanswarmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1596350", "adult": false, "backdrop_path": "/aJh5rFH6jQRqvZyd0HR8BMiHhRn.jpg", "production_companies": [{"name": "Overbrook Films", "id": 907}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2012-02-17", "popularity": 0.953831210427114, "original_title": "This Means War", "budget": 65000000, "cast": [{"name": "Reese Witherspoon", "character": "Lauren", "id": 368, "credit_id": "52fe49a4c3a36847f81a4fb9", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Chris Pine", "character": "FDR Foster", "id": 62064, "credit_id": "52fe49a4c3a36847f81a4fbd", "cast_id": 4, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 1}, {"name": "Tom Hardy", "character": "Tuck", "id": 2524, "credit_id": "52fe49a4c3a36847f81a4fc9", "cast_id": 7, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 2}, {"name": "Laura Vandervoort", "character": "Britta", "id": 43286, "credit_id": "52fe49a4c3a36847f81a4fc1", "cast_id": 5, "profile_path": "/5IWtsAzhSISq1gGxFx9G3kONprX.jpg", "order": 3}, {"name": "Angela Bassett", "character": "Collins", "id": 9780, "credit_id": "52fe49a4c3a36847f81a4fc5", "cast_id": 6, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 4}, {"name": "Kasey Ryne Mazak", "character": "Ken", "id": 1048580, "credit_id": "52fe49a4c3a36847f81a4fd3", "cast_id": 9, "profile_path": "/lSpgCJ5bkTfz7en5uCXjEKZwYKW.jpg", "order": 5}, {"name": "Warren Christie", "character": "Steve", "id": 232525, "credit_id": "52fe49a4c3a36847f81a4fe9", "cast_id": 13, "profile_path": "/AhIoN1YIXpTxWAgf4lTyR30oU8Y.jpg", "order": 6}, {"name": "Natassia Malthe", "character": "Xenia", "id": 21430, "credit_id": "52fe49a4c3a36847f81a4fed", "cast_id": 14, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 7}, {"name": "Til Schweiger", "character": "Heinrich", "id": 1844, "credit_id": "52fe49a4c3a36847f81a4ff1", "cast_id": 15, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 8}, {"name": "Chelsea Handler", "character": "Trish", "id": 151254, "credit_id": "52fe49a4c3a36847f81a4ff5", "cast_id": 16, "profile_path": "/pACHYdiEy4NHtu4bJIgKqeRji85.jpg", "order": 9}, {"name": "John Paul Ruttan", "character": "Joe", "id": 1154244, "credit_id": "52fe49a4c3a36847f81a4ff9", "cast_id": 17, "profile_path": "/zt8R71Ec4WqHxLUNgVYfiJlXtbm.jpg", "order": 10}, {"name": "Abigail Spencer", "character": "Katie", "id": 123725, "credit_id": "52fe49a4c3a36847f81a4ffd", "cast_id": 18, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 11}, {"name": "Rosemary Harris", "character": "Nana Foster", "id": 18998, "credit_id": "52fe49a4c3a36847f81a5001", "cast_id": 19, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 12}, {"name": "George Touliatos", "character": "Grandpa Foster", "id": 59179, "credit_id": "52fe49a4c3a36847f81a5005", "cast_id": 20, "profile_path": "/5dhhJXgozmVffYlJiOweZIMPvSo.jpg", "order": 13}, {"name": "Clint Carleton", "character": "Jonas", "id": 84338, "credit_id": "52fe49a4c3a36847f81a5009", "cast_id": 21, "profile_path": "/9LlwEeJiVtQsvBTdB87M9fk7Nw0.jpg", "order": 14}, {"name": "Leela Savasta", "character": "Kelly", "id": 58399, "credit_id": "52fe49a4c3a36847f81a500d", "cast_id": 22, "profile_path": "/ynkdwkDXqnqYPkrwmsh5xDpuyWo.jpg", "order": 15}, {"name": "Paul Wu", "character": "Korean Leader", "id": 206861, "credit_id": "52fe49a4c3a36847f81a5011", "cast_id": 23, "profile_path": "/lWitc67iWGq4Jd3LjYV3vqD9uVq.jpg", "order": 16}, {"name": "Daren A. Herbert", "character": "Agent Bothwick", "id": 211907, "credit_id": "52fe49a4c3a36847f81a5015", "cast_id": 24, "profile_path": "/tzfTnJsCKwWJRHrjtboFMzJZIou.jpg", "order": 17}, {"name": "Kevin O'Grady", "character": "Agent Boyles", "id": 205560, "credit_id": "52fe49a4c3a36847f81a5019", "cast_id": 25, "profile_path": "/sv7mkS8La7wVlo2mO5KPla9IhCi.jpg", "order": 18}, {"name": "Jesse Reid", "character": "Agent Dickerman", "id": 228890, "credit_id": "52fe49a4c3a36847f81a501d", "cast_id": 26, "profile_path": "/wl5wKdhMBPJMdPS3xRa2vK8ah8i.jpg", "order": 19}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe49a4c3a36847f81a4fcf", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.8, "runtime": 97}, "2619": {"poster_path": "/nP4O0DUMvqlxvptcjOHdyzK0T2Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62599495, "overview": "A successful businessman falls in love with the girl of his dreams. There's one big complication though; he's fallen hook, line and sinker for a mermaid.", "video": false, "id": 2619, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Splash", "tagline": "Allen Bauer Thought He'd Never Find The Right Woman... He Was Only Half Wrong!", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9uSHQAAUYFt6WSL2sz9zgvnXnvk.jpg", "poster_path": "/tI0RB8ezHm7NMRuLfWIh4mWuGXY.jpg", "id": 248126, "name": "Splash Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0088161", "adult": false, "backdrop_path": "/mHZ9i2NWnVlds80l1xrUgzTIqWf.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1984-03-08", "popularity": 0.296377661581804, "original_title": "Splash", "budget": 8000000, "cast": [{"name": "Tom Hanks", "character": "Allen Bauer", "id": 31, "credit_id": "52fe4360c3a36847f804faaf", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Daryl Hannah", "character": "Madison", "id": 589, "credit_id": "52fe4360c3a36847f804fab3", "cast_id": 2, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 1}, {"name": "Eugene Levy", "character": "Walter Kornbluth", "id": 26510, "credit_id": "52fe4360c3a36847f804fab7", "cast_id": 3, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 2}, {"name": "John Candy", "character": "Freddie Bauer", "id": 7180, "credit_id": "52fe4360c3a36847f804facd", "cast_id": 7, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 3}, {"name": "Dody Goodman", "character": "Mrs. Stimler", "id": 8903, "credit_id": "52fe4360c3a36847f804fae9", "cast_id": 12, "profile_path": "/hLWhBWoSrBGhO9kUJiG8Q4Qy4EV.jpg", "order": 4}, {"name": "Shecky Greene", "character": "Mr. Buyrite", "id": 27514, "credit_id": "52fe4360c3a36847f804faed", "cast_id": 13, "profile_path": "/50sKFzbrmgY87HUIgLewvgMYF6n.jpg", "order": 5}, {"name": "Richard B. Shull", "character": "Dr. Ross", "id": 27515, "credit_id": "52fe4360c3a36847f804faf1", "cast_id": 14, "profile_path": "/eDosLV4XIsZoARHm77evMPACHUs.jpg", "order": 6}, {"name": "Bobby Di Cicco", "character": "Jerry", "id": 27516, "credit_id": "52fe4360c3a36847f804faf5", "cast_id": 15, "profile_path": "/qD8pDomLp2BQeXn3JIHQizDEPOb.jpg", "order": 7}, {"name": "Howard Morris", "character": "Dr. Zidell", "id": 27517, "credit_id": "52fe4360c3a36847f804faf9", "cast_id": 16, "profile_path": "/dYOSuyGJg5oOS31Ls8sNvvjogw2.jpg", "order": 8}, {"name": "Lowell Ganz", "character": "Stan", "id": 27518, "credit_id": "52fe4360c3a36847f804fafd", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Babaloo Mandel", "character": "Rudy", "id": 27519, "credit_id": "52fe4360c3a36847f804fb01", "cast_id": 18, "profile_path": null, "order": 10}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4360c3a36847f804fabd", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.4, "runtime": 111}, "59965": {"poster_path": "/cUT6NQP5LAJpmUoStGtXmvNt4zA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82087155, "overview": "A thriller centered on a young man who sets out to uncover the truth about his life after finding his baby photo on a missing persons website.", "video": false, "id": 59965, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Abduction", "tagline": "They stole his life. He's taking it back.", "vote_count": 301, "homepage": "http://www.abductionthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1600195", "adult": false, "backdrop_path": "/4h6c98SPvXCfmZ0Qn5TaCZisy2K.jpg", "production_companies": [{"name": "Tailor Made", "id": 24557}, {"name": "Lions Gate Films", "id": 35}, {"name": "Gotham Group", "id": 3672}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Quick Six Entertainment", "id": 24561}, {"name": "Mango Farms", "id": 24558}], "release_date": "2011-09-23", "popularity": 0.925122828940876, "original_title": "Abduction", "budget": 35000000, "cast": [{"name": "Taylor Lautner", "character": "Nathan", "id": 84214, "credit_id": "52fe49a5c3a36847f81a5137", "cast_id": 2, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 0}, {"name": "Lily Collins", "character": "Karen", "id": 112561, "credit_id": "52fe49a5c3a36847f81a513b", "cast_id": 3, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 1}, {"name": "Alfred Molina", "character": "Frank Burton", "id": 658, "credit_id": "52fe49a5c3a36847f81a513f", "cast_id": 4, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 2}, {"name": "Jason Isaacs", "character": "Kevin", "id": 11355, "credit_id": "52fe49a5c3a36847f81a5143", "cast_id": 5, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 3}, {"name": "Maria Bello", "character": "Mara", "id": 49, "credit_id": "52fe49a5c3a36847f81a5147", "cast_id": 6, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 4}, {"name": "Michael Nyqvist", "character": "Kozlow", "id": 6283, "credit_id": "52fe49a5c3a36847f81a514b", "cast_id": 7, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "Dr. Bennett", "id": 10205, "credit_id": "52fe49a5c3a36847f81a514f", "cast_id": 8, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Antonique Smith", "character": "Sandra Burns", "id": 171941, "credit_id": "52fe49a5c3a36847f81a5153", "cast_id": 9, "profile_path": "/rXnTrZbWtA2Mr1Teb9LB7berlha.jpg", "order": 7}, {"name": "Denzel Whitaker", "character": "Gilly", "id": 77278, "credit_id": "52fe49a5c3a36847f81a5157", "cast_id": 10, "profile_path": "/yN4ZZDDDJI2UoKVI1BlIWwd5mp8.jpg", "order": 8}, {"name": "Jake Andolina", "character": "CIA Man", "id": 132217, "credit_id": "54f191acc3a368324500145a", "cast_id": 58, "profile_path": null, "order": 9}, {"name": "Oriah Acima Andrews", "character": "Riah", "id": 1432979, "credit_id": "54f191c19251416b380013a5", "cast_id": 59, "profile_path": null, "order": 10}, {"name": "Ken Arnold", "character": "Thermal", "id": 572038, "credit_id": "54f191db9251416b2c0013b7", "cast_id": 60, "profile_path": "/19fy0tQQ70QpVG7XLOPKOsjnAIq.jpg", "order": 11}, {"name": "Steve Blass", "character": "Game Announcer", "id": 1432980, "credit_id": "54f191f3c3a3683248001738", "cast_id": 61, "profile_path": null, "order": 12}, {"name": "Derek Burnell", "character": "Hot Dog Vendor", "id": 1432981, "credit_id": "54f1920f9251416b350012ed", "cast_id": 62, "profile_path": null, "order": 13}, {"name": "Benjamin J. Cain Jr.", "character": "Driver", "id": 1430509, "credit_id": "54f192219251416b350012f3", "cast_id": 63, "profile_path": null, "order": 14}, {"name": "Holly Scott Cavanaugh", "character": "Mrs. Murphy", "id": 1432982, "credit_id": "54f19232c3a3683232001863", "cast_id": 64, "profile_path": null, "order": 15}, {"name": "Radick Cembrzynski", "character": "Kozlow's Tech", "id": 1432984, "credit_id": "54f19249c3a3683232001869", "cast_id": 65, "profile_path": null, "order": 16}, {"name": "Richard Cetrone", "character": "Gregory", "id": 12371, "credit_id": "54f1925b9251416b2f0014ac", "cast_id": 66, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 17}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe49a5c3a36847f81a5133", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 5.4, "runtime": 106}, "133694": {"poster_path": "/dzbv1mDRERrEvhUIJIRqvFB3IVL.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8138788, "overview": "A salesman for a natural gas company experiences life-changing events after arriving in a small town, where his corporation wants to tap into the available resources.", "video": false, "id": 133694, "genres": [{"id": 18, "name": "Drama"}], "title": "Promised Land", "tagline": "What's your price?", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2091473", "adult": false, "backdrop_path": "/a4TcSTendjjerZr3GuwVhwbppDp.jpg", "production_companies": [{"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Focus Features", "id": 10146}, {"name": "Media Farm", "id": 29311}, {"name": "Sunday Night", "id": 29312}, {"name": "Pearl Street Films", "id": 29313}, {"name": "Participant Media", "id": 6735}], "release_date": "2012-12-28", "popularity": 1.44259182010379, "original_title": "Promised Land", "budget": 15000000, "cast": [{"name": "Matt Damon", "character": "Steve Butler", "id": 1892, "credit_id": "52fe4bb8c3a368484e196937", "cast_id": 5, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "John Krasinski", "character": "Dustin Noble", "id": 17697, "credit_id": "52fe4bb8c3a368484e19693b", "cast_id": 6, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 1}, {"name": "Frances McDormand", "character": "Sue Thomason", "id": 3910, "credit_id": "52fe4bb8c3a368484e19693f", "cast_id": 7, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 2}, {"name": "Rosemarie DeWitt", "character": "Alice", "id": 14892, "credit_id": "52fe4bb8c3a368484e196943", "cast_id": 8, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 3}, {"name": "Lucas Black", "character": "Paul Geary", "id": 155, "credit_id": "52fe4bb8c3a368484e196947", "cast_id": 9, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Frank Yates", "id": 11066, "credit_id": "52fe4bb9c3a368484e19694b", "cast_id": 10, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Titus Welliver", "character": "Rob", "id": 39389, "credit_id": "52fe4bb9c3a368484e196999", "cast_id": 26, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 6}, {"name": "Tim Guinee", "character": "Drew", "id": 40275, "credit_id": "52fe4bb9c3a368484e19694f", "cast_id": 11, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 7}, {"name": "Scoot McNairy", "character": "Jeff Dennon", "id": 59233, "credit_id": "52fe4bb9c3a368484e196953", "cast_id": 12, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 8}, {"name": "Terry Kinney", "character": "David Stonehill", "id": 11067, "credit_id": "52fe4bb9c3a368484e196957", "cast_id": 13, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 9}, {"name": "Johnny Cicco", "character": "Donny", "id": 1083451, "credit_id": "52fe4bb9c3a368484e19695b", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sara Lindsey", "character": "Claire Allen", "id": 1098033, "credit_id": "52fe4bb9c3a368484e19695f", "cast_id": 15, "profile_path": "/jdsEJyq9JbvSq6gerWcei4q7fIE.jpg", "order": 11}, {"name": "Lennon Wynn", "character": "Lemonade Girl", "id": 1098034, "credit_id": "52fe4bb9c3a368484e196963", "cast_id": 16, "profile_path": "/vCQ9i5QfNb8JyNjRDPcT3xmacEP.jpg", "order": 12}, {"name": "Rosemary Howard", "character": "Spanish Teacher", "id": 130843, "credit_id": "52fe4bb9c3a368484e196967", "cast_id": 17, "profile_path": "/e85Daf6qGv9iCEfpoW2lHeWu1xw.jpg", "order": 13}, {"name": "John W. Iwanonkiw", "character": "Officer Breedlove", "id": 1098036, "credit_id": "52fe4bb9c3a368484e19696b", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4bb8c3a368484e196921", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 5.9, "runtime": 106}, "59967": {"poster_path": "/5jf80zzaD5JUPF2laZdH3J1gjxj.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47042000, "overview": "In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.", "video": false, "id": 59967, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Looper", "tagline": "Hunted By Your Future, Haunted By Your Past", "vote_count": 2578, "homepage": "http://loopermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1276104", "adult": false, "backdrop_path": "/cZkPJ0noQvcR3oCCZ4pwYZeWUYi.jpg", "production_companies": [{"name": "Ram Bergman Productions", "id": 11092}, {"name": "Endgame Entertainment", "id": 1205}, {"name": "DMG Entertainment", "id": 10289}, {"name": "FilmDistrict", "id": 7263}], "release_date": "2012-09-28", "popularity": 2.22573362848713, "original_title": "Looper", "budget": 30000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Joe", "id": 24045, "credit_id": "52fe49a5c3a36847f81a523f", "cast_id": 3, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Bruce Willis", "character": "Older Joe", "id": 62, "credit_id": "52fe49a5c3a36847f81a5243", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Sara", "id": 5081, "credit_id": "52fe49a5c3a36847f81a523b", "cast_id": 2, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "Paul Dano", "character": "Seth", "id": 17142, "credit_id": "52fe49a5c3a36847f81a524f", "cast_id": 7, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 3}, {"name": "Noah Segan", "character": "Kid Blue", "id": 48312, "credit_id": "52fe49a5c3a36847f81a52b7", "cast_id": 26, "profile_path": "/hxRWVwtxvzz0NTaaZMQwtPz8CDE.jpg", "order": 4}, {"name": "Piper Perabo", "character": "Suzie", "id": 15555, "credit_id": "52fe49a5c3a36847f81a5247", "cast_id": 5, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 5}, {"name": "Jeff Daniels", "character": "Abe", "id": 8447, "credit_id": "52fe49a5c3a36847f81a524b", "cast_id": 6, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 6}, {"name": "Pierce Gagnon", "character": "Cid", "id": 992427, "credit_id": "52fe49a5c3a36847f81a52bb", "cast_id": 27, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 7}, {"name": "Xu Qing", "character": "Old Joe's Wife (as Summer Qing)", "id": 78879, "credit_id": "52fe49a5c3a36847f81a52bf", "cast_id": 28, "profile_path": "/gRhCq9vBu8eLGKNWvmNbZ9xb1Z.jpg", "order": 8}, {"name": "Tracie Thoms", "character": "Beatrix", "id": 10580, "credit_id": "52fe49a5c3a36847f81a5253", "cast_id": 8, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 9}, {"name": "Frank Brennan", "character": "Old Seth", "id": 565504, "credit_id": "52fe49a5c3a36847f81a52c3", "cast_id": 29, "profile_path": "/A1Z23UqiwBxX66iJTB4q9xjnG5P.jpg", "order": 10}, {"name": "Garret Dillahunt", "character": "Jesse", "id": 39520, "credit_id": "52fe49a5c3a36847f81a52c7", "cast_id": 30, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 11}, {"name": "Nick Gomez", "character": "Dale", "id": 84760, "credit_id": "52fe49a5c3a36847f81a52cb", "cast_id": 31, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 12}, {"name": "Marcus Hester", "character": "Zach", "id": 62076, "credit_id": "52fe49a5c3a36847f81a52cf", "cast_id": 32, "profile_path": "/mOlrvlDpYUzDJhG6yc2wiRCdH5X.jpg", "order": 13}, {"name": "Jon Eyez", "character": "Gat Man", "id": 231857, "credit_id": "52fe49a5c3a36847f81a52d3", "cast_id": 33, "profile_path": "/1v11aZ5TmwtORs10OcU4wzhX2NW.jpg", "order": 14}, {"name": "Kevin Stillwell", "character": "Gat Man", "id": 183099, "credit_id": "52fe49a5c3a36847f81a52dd", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Thirl Haston", "character": "Gat Man", "id": 1132300, "credit_id": "52fe49a5c3a36847f81a52e1", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "James Landry H\u00e9bert", "character": "Looper", "id": 1170659, "credit_id": "52fe49a5c3a36847f81a52e5", "cast_id": 37, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 17}, {"name": "Kenneth Brown Jr.", "character": "Looper", "id": 1088041, "credit_id": "52fe49a5c3a36847f81a52e9", "cast_id": 38, "profile_path": "/kGGEedmcWvH1EpjyqEimH9pEgYn.jpg", "order": 18}, {"name": "Cody Wood", "character": "Looper", "id": 1132301, "credit_id": "52fe49a5c3a36847f81a52ed", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Adam Boyer", "character": "Tye", "id": 111693, "credit_id": "52fe49a5c3a36847f81a52f1", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Kamden Beauchamp", "character": "Daniel", "id": 1271661, "credit_id": "52fe49a5c3a36847f81a52f5", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Sylvia Jefferies", "character": "Neighbor Girl", "id": 1104568, "credit_id": "52fe49a5c3a36847f81a52f9", "cast_id": 42, "profile_path": "/jtbJjvDrGAuBW3OGHSCGekuVo8J.jpg", "order": 22}, {"name": "Ian Patrick", "character": "Beggar Kid", "id": 1256260, "credit_id": "530f4297925141736c000b03", "cast_id": 43, "profile_path": "/53Dq8lug1bSWwlTRr7uzUzR5UpS.jpg", "order": 23}], "directors": [{"name": "Rian Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe49a5c3a36847f81a5237", "profile_path": "/pCdsaqBaG6SozL5HGwVRyIfjWtM.jpg", "id": 67367}], "vote_average": 6.4, "runtime": 118}, "59968": {"poster_path": "/yEKHFUkFP6bGfsy9aNRA6IscB6b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17273593, "overview": "Everybody has one. The sibling who is always just a little bit behind the curve when it comes to getting his life together. For sisters Liz (Emily Mortimer), Miranda (Elizabeth Banks) and Natalie (Zooey Deschanel), that person is their perennially upbeat brother Ned (Paul Rudd), an erstwhile organic farmer whose willingness to rely on the honesty of mankind is a less-than-optimum strategy for a tidy, trouble-free existence. Ned may be utterly lacking in common sense, but he is their brother and so, after his girlfriend dumps him and boots him off the farm, his sisters once again come to his rescue. As Liz, Miranda and Natalie each take a turn at housing Ned, their brother's unfailing commitment to honesty creates more than a few messes in their comfortable routines. But as each of their lives begins to unravel, Ned's family comes to realize that maybe, in believing and trusting the people around him, Ned isn't such an idiot after all.", "video": false, "id": 59968, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Our Idiot Brother", "tagline": "Everybody has one.", "vote_count": 107, "homepage": "http://www.ouridiotbrother.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1637706", "adult": false, "backdrop_path": "/lAmJ2RomLgS6wjpBWlT7WNjEiv6.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}], "release_date": "2011-08-26", "popularity": 0.655199103500401, "original_title": "Our Idiot Brother", "budget": 10000000, "cast": [{"name": "Paul Rudd", "character": "Ned", "id": 22226, "credit_id": "52fe49a5c3a36847f81a533d", "cast_id": 2, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Miranda", "id": 9281, "credit_id": "52fe49a5c3a36847f81a5341", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Natalie", "id": 11664, "credit_id": "52fe49a5c3a36847f81a5345", "cast_id": 4, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Emily Mortimer", "character": "Liz", "id": 1246, "credit_id": "52fe49a5c3a36847f81a5349", "cast_id": 5, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 3}, {"name": "Hugh Dancy", "character": "Christian", "id": 12791, "credit_id": "52fe49a5c3a36847f81a534d", "cast_id": 6, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 4}, {"name": "Steve Coogan", "character": "Dylan", "id": 4581, "credit_id": "52fe49a5c3a36847f81a5351", "cast_id": 7, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 5}, {"name": "Kathryn Hahn", "character": "Janet", "id": 17696, "credit_id": "52fe49a5c3a36847f81a5355", "cast_id": 8, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 6}, {"name": "Rashida Jones", "character": "Cindy", "id": 80591, "credit_id": "52fe49a5c3a36847f81a5359", "cast_id": 9, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 7}, {"name": "Bob Stephenson", "character": "Washburn", "id": 17449, "credit_id": "534c6a98c3a36813bb0000b6", "cast_id": 29, "profile_path": "/jHjchnxDsghomSglNryppVWdBGC.jpg", "order": 8}, {"name": "Adam Scott", "character": "Jeremy", "id": 36801, "credit_id": "534c6aa8c3a36813c90000d2", "cast_id": 30, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 9}, {"name": "Shirley Knight", "character": "Ilene", "id": 28778, "credit_id": "534c6acbc3a36813a20000be", "cast_id": 31, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 10}], "directors": [{"name": "Jesse Peretz", "department": "Directing", "job": "Director", "credit_id": "52fe49a5c3a36847f81a5339", "profile_path": "/1oLwXu3xXFzcaMv1hMRb8rrngbn.jpg", "id": 130816}], "vote_average": 5.6, "runtime": 90}, "27205": {"poster_path": "/tAXARVreJnWfoANIHASmgYk4SB0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 825500000, "overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.", "video": false, "id": 27205, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Inception", "tagline": "Your mind is the scene of the crime.", "vote_count": 6571, "homepage": "http://inceptionmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1375666", "adult": false, "backdrop_path": "/s2bT29y0ngXxxu2IA8AOzzXTRhd.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Syncopy", "id": 9996}], "release_date": "2010-07-16", "popularity": 4.50571625286968, "original_title": "Inception", "budget": 160000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Dom Cobb", "id": 6193, "credit_id": "52fe4534c3a368484e04de03", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Joseph Gordon-Levitt", "character": "Arthur", "id": 24045, "credit_id": "52fe4534c3a368484e04de0b", "cast_id": 3, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 1}, {"name": "Ellen Page", "character": "Ariadne", "id": 27578, "credit_id": "52fe4534c3a368484e04de13", "cast_id": 5, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 2}, {"name": "Tom Hardy", "character": "Eames", "id": 2524, "credit_id": "52fe4534c3a368484e04de1b", "cast_id": 7, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 3}, {"name": "Ken Watanabe", "character": "Saito", "id": 3899, "credit_id": "52fe4534c3a368484e04de07", "cast_id": 2, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 4}, {"name": "Cillian Murphy", "character": "Robert Fischer", "id": 2037, "credit_id": "52fe4534c3a368484e04de1f", "cast_id": 8, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Mal", "id": 8293, "credit_id": "52fe4534c3a368484e04de0f", "cast_id": 4, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Michael Caine", "character": "Miles", "id": 3895, "credit_id": "52fe4534c3a368484e04de17", "cast_id": 6, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 7}, {"name": "Dileep Rao", "character": "Yusuf", "id": 95697, "credit_id": "52fe4534c3a368484e04de4f", "cast_id": 19, "profile_path": "/f9xQkvWw5guOePcCxkso1i09w12.jpg", "order": 8}, {"name": "Tom Berenger", "character": "Browning", "id": 13022, "credit_id": "52fe4534c3a368484e04de23", "cast_id": 9, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 9}, {"name": "Pete Postlethwaite", "character": "Maurice Fischer", "id": 4935, "credit_id": "52fe4534c3a368484e04de59", "cast_id": 22, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 10}, {"name": "Lukas Haas", "character": "Nash", "id": 526, "credit_id": "52fe4534c3a368484e04de27", "cast_id": 10, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 11}, {"name": "Talulah Riley", "character": "Blonde", "id": 66441, "credit_id": "52fe4534c3a368484e04de99", "cast_id": 89, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 12}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4534c3a368484e04de4b", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.6, "runtime": 148}, "248390": {"poster_path": "/mvciZQYxQkHab2RmLaCLNmtLpGQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Leslie Konda young talented French footballer spotted in his teens by Didier , a small-scale agent who was able to take under his wing , has signed its first contract striker in a large Spanish club . At the same time, his growing reputation and its origins Botswanga , small, poor state of Central Africa, earned him an invitation by the President of the Republic in person Babimbi Bobo , a football enthusiast, freshly installed in power after a coup military state. Leslie therefore went for the first time in the country of his ancestors accompanied by Didier to be decorated by the President Bobo which quickly turns out, despite his great humanist discourse be a megalomaniac and paranoid dictator under the bad influence of his wife .dropoff window Hardly have they landed Bobo enters into a sordid deal with Didier put pressure on his player so that it plays for the national team : Crocodiles of Botswanga ...", "video": false, "id": 248390, "genres": [{"id": 35, "name": "Comedy"}], "title": "Le Crocodile du Botswanga", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2969776", "adult": false, "backdrop_path": "/5L4uKP7JjMcmUhgUwMVgsdWTxXQ.jpg", "production_companies": [{"name": "Mars Distribution", "id": 2908}, {"name": "M6 Films", "id": 1115}, {"name": "Mars Films", "id": 819}, {"name": "Legend Films", "id": 3794}], "release_date": "2014-02-19", "popularity": 0.239598843178424, "original_title": "Le Crocodile du Botswanga", "budget": 10916704, "cast": [{"name": "Fabrice Ebou\u00e9", "character": "Didier", "id": 544655, "credit_id": "52fe4f31c3a36847f82c4761", "cast_id": 1, "profile_path": "/wqqKuqmIGQYcvQANJwJm6nnq8Pd.jpg", "order": 0}, {"name": "Thomas Ngijol", "character": "Capitaine Bobo", "id": 147042, "credit_id": "52fe4f31c3a36847f82c4765", "cast_id": 2, "profile_path": "/kbNMgC4Iv4nGYd3FgGA4GQRpGdE.jpg", "order": 1}, {"name": "Franck de la Personne", "character": "Pierre", "id": 41528, "credit_id": "52fe4f31c3a36847f82c4769", "cast_id": 3, "profile_path": "/9vOlxvaGni3KvtvzYcZ88VCQg7C.jpg", "order": 2}, {"name": "Etienne Chicot", "character": "Taucard", "id": 150792, "credit_id": "52fe4f31c3a36847f82c476d", "cast_id": 4, "profile_path": "/pYbudifKWa0sYY5QkQc5YKLHfMf.jpg", "order": 3}, {"name": "Eriq Ebouaney", "character": "Lieutenant Yaya", "id": 25078, "credit_id": "52fe4f31c3a36847f82c4771", "cast_id": 5, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 4}, {"name": "Claudia Tagbo", "character": "Jacqueline", "id": 1192468, "credit_id": "52fe4f32c3a36847f82c4775", "cast_id": 6, "profile_path": "/zqbfQ64B7eNFZSzPtDfDWWq2RrF.jpg", "order": 5}], "directors": [{"name": "Fabrice Ebou\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4f32c3a36847f82c477b", "profile_path": "/wqqKuqmIGQYcvQANJwJm6nnq8Pd.jpg", "id": 544655}], "vote_average": 4.4, "runtime": 90}, "43593": {"poster_path": "/zghq2XWVP1Aa6OPCddOwzXec0Zo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24995888, "overview": "Each year the population of sleepy Lake Victoria, Arizona explodes from 5,000 to 50,000 residents for the annual Spring Break celebration. But then, an earthquake opens an underwater chasm, releasing an enormous swarm of ancient Piranha that have been dormant for thousands of years, now with a taste for human flesh. This year, there's something more to worry about than the usual hangovers and complaints from locals, a new type of terror is about to be cut loose on Lake Victoria.", "video": false, "id": 43593, "genres": [{"id": 27, "name": "Horror"}], "title": "Piranha 3D", "tagline": "Sea, sex and... blood.", "vote_count": 161, "homepage": "http://www.piranha-3d.com", "belongs_to_collection": {"backdrop_path": "/6FzU0eEVXOizfDEdJUlaCEt2t3m.jpg", "poster_path": "/gjFaylmB7ZMK7BsKzAcuu0UKc4j.jpg", "id": 104830, "name": "Piranha 3D Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0464154", "adult": false, "backdrop_path": "/pX7Cpy6mIejuk1dWxJ1LwvZcVmt.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Chako Film Company", "id": 7332}, {"name": "Dimension Films", "id": 7405}, {"name": "Intellectual Properties Worldwide", "id": 18524}, {"name": "Aja / Levasseur Productions", "id": 22596}], "release_date": "2010-08-20", "popularity": 1.20746962158064, "original_title": "Piranha 3D", "budget": 24000000, "cast": [{"name": "Elisabeth Shue", "character": "Julie Forester", "id": 1951, "credit_id": "52fe4652c3a36847f80f8b05", "cast_id": 23, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 0}, {"name": "Adam Scott", "character": "Novak Radzinsky", "id": 36801, "credit_id": "52fe4652c3a36847f80f8b09", "cast_id": 24, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 1}, {"name": "Jerry O'Connell", "character": "Derrick Jones", "id": 3035, "credit_id": "52fe4652c3a36847f80f8b0d", "cast_id": 25, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 2}, {"name": "Steven R. McQueen", "character": "Jake Forester", "id": 88699, "credit_id": "52fe4652c3a36847f80f8b15", "cast_id": 27, "profile_path": "/5a5l2rCeWoG2NuHfHXZDBJVwAZ2.jpg", "order": 3}, {"name": "Jessica Szohr", "character": "Kelly Driscoll", "id": 130782, "credit_id": "52fe4652c3a36847f80f8b19", "cast_id": 28, "profile_path": "/ijp9eZ0Toq2WfrHwThfLRmGugWD.jpg", "order": 4}, {"name": "Ving Rhames", "character": "Deputy Fallon", "id": 10182, "credit_id": "52fe4652c3a36847f80f8b11", "cast_id": 26, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 5}, {"name": "Dina Meyer", "character": "Paula Montellano", "id": 2133, "credit_id": "52fe4652c3a36847f80f8b1d", "cast_id": 29, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 6}, {"name": "Kelly Brook", "character": "Danni", "id": 38561, "credit_id": "52fe4652c3a36847f80f8b21", "cast_id": 30, "profile_path": "/e54Ib0yKgNqH2Zlwjr7NESbMyu9.jpg", "order": 7}, {"name": "Richard Dreyfuss", "character": "Matthew Boyd", "id": 3037, "credit_id": "52fe4652c3a36847f80f8b25", "cast_id": 31, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 8}, {"name": "Christopher Lloyd", "character": "Henry Goodman", "id": 1062, "credit_id": "52fe4652c3a36847f80f8b29", "cast_id": 32, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 9}, {"name": "Riley Steele", "character": "Crystal", "id": 76582, "credit_id": "5510778692514146a000ce2e", "cast_id": 49, "profile_path": "/3WZXVbYQsqCQrmQjGiAb6BokkrD.jpg", "order": 10}, {"name": "Cody Longo", "character": "Todd Dupree", "id": 87567, "credit_id": "53c0430ec3a3684cdb005c44", "cast_id": 47, "profile_path": "/lYHftZ1nckHGsUyBKDgsRUNb2v6.jpg", "order": 12}, {"name": "Ricardo Antonio Chavira", "character": "Sam", "id": 80967, "credit_id": "53c04337c3a3684cf40053a4", "cast_id": 48, "profile_path": "/4BxXzT10wfg9MSxUEJmwHgbSJFd.jpg", "order": 13}, {"name": "Paul Scheer", "character": "Andrew", "id": 59843, "credit_id": "52fe4652c3a36847f80f8b2d", "cast_id": 34, "profile_path": "/A81J8vYUdhVGhXFac1XHy2xO5QD.jpg", "order": 14}, {"name": "Eli Roth", "character": "Wet T-Shirt Host", "id": 16847, "credit_id": "52fe4652c3a36847f80f8b35", "cast_id": 36, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 15}, {"name": "Gianna Michaels", "character": "Parasailing Girl", "id": 125610, "credit_id": "5523568fc3a368333a005761", "cast_id": 51, "profile_path": "/mCriCcaW5tFzNIxEYfSa7ixGzU3.jpg", "order": 17}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe4652c3a36847f80f8afb", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 5.3, "runtime": 88}, "8271": {"poster_path": "/eyQ7vWEm2SClbAlNLTOhQhkSkFF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117573043, "overview": "Kale is a 17-year-old placed under house arrest after punching his teacher. He is confined to his house, and decides to use his free time spying on his neighbors. Things start to get weird when guests enter the Turner's house and don't come back out. Kale and his friends, Ronnie and Ashley, start to grow more and more interested in what is actually happening within the house of Robert Turner.", "video": false, "id": 8271, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Disturbia", "tagline": "The quieter the street, the darker the secrets....", "vote_count": 239, "homepage": "http://www.disturbia.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0486822", "adult": false, "backdrop_path": "/7MwVv7CXQ9hzLeGx2a4QWUEEC5J.jpg", "production_companies": [{"name": "Montecito Picture Company, The", "id": 4607}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Paramount Pictures", "id": 4}, {"name": "Cold Spring Pictures", "id": 2363}], "release_date": "2007-04-13", "popularity": 0.836599832595636, "original_title": "Disturbia", "budget": 20000000, "cast": [{"name": "Shia LaBeouf", "character": "Kale Brecht", "id": 10959, "credit_id": "52fe449ac3a36847f809f80b", "cast_id": 1, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Sarah Roemer", "character": "Ashley Carlson", "id": 20376, "credit_id": "52fe449ac3a36847f809f80f", "cast_id": 2, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 1}, {"name": "Carrie-Anne Moss", "character": "Julie Brecht", "id": 530, "credit_id": "52fe449ac3a36847f809f813", "cast_id": 3, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 2}, {"name": "David Morse", "character": "Robert Turner", "id": 52, "credit_id": "52fe449ac3a36847f809f817", "cast_id": 4, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 3}, {"name": "Aaron Yoo", "character": "Ronnie", "id": 54247, "credit_id": "52fe449ac3a36847f809f81b", "cast_id": 5, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 4}, {"name": "Jose Pablo Cantillo", "character": "Officer Gutierrez", "id": 20191, "credit_id": "52fe449ac3a36847f809f81f", "cast_id": 6, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 5}, {"name": "Matt Craven", "character": "Daniel Brecht", "id": 13525, "credit_id": "52fe449ac3a36847f809f823", "cast_id": 7, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 6}, {"name": "Viola Davis", "character": "Detective Parker", "id": 19492, "credit_id": "52fe449ac3a36847f809f86f", "cast_id": 21, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 7}, {"name": "Brandon Caruso", "character": "Greenwood Boy", "id": 1386253, "credit_id": "5469c89a22136e68cf002df6", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Luciano Rauso", "character": "Greenwood Boy", "id": 1386254, "credit_id": "5469c8a922136e68c7002d1e", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Daniel Caruso", "character": "Greenwood Boy", "id": 1386255, "credit_id": "5469c90d22136e68c90031f8", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Elyse Mirto", "character": "Mrs. Carlson", "id": 1074628, "credit_id": "5469c92122136e68c90031fd", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Kevin Quinn ", "character": "Mr. Carlson", "id": 582716, "credit_id": "5469c93522136e284f000c7c", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Suzanne Rico", "character": "News Anchor", "id": 1237614, "credit_id": "5469c94f22136e284f000c80", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Kent Shocknek", "character": "News Anchor", "id": 79086, "credit_id": "5469c96aeaeb816b43002e32", "cast_id": 28, "profile_path": "/zmX6fNZ7zH18FokBGv5r1sfPmGw.jpg", "order": 14}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809f829", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 6.4, "runtime": 105}, "2636": {"poster_path": "/flK0OtdFRvfbs5BixEqU327H8ZB.jpg", "production_countries": [{"iso_3166_1": "PE", "name": "Peru"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170000000, "overview": "May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert to kill her parent's killers. When Ned Trent, embittered ex-partner of Quick's is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.", "video": false, "id": 2636, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Specialist", "tagline": "The government taught him to kill. Now he's using his skills to help a woman seek revenge against the Miami underworld.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111255", "adult": false, "backdrop_path": "/dcHU8hCNqo5TEPLJSX4nFW2jDVY.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Iguana Producciones", "id": 11134}], "release_date": "1994-10-07", "popularity": 0.77892177290399, "original_title": "The Specialist", "budget": 45000000, "cast": [{"name": "Sylvester Stallone", "character": "Ray Quick", "id": 16483, "credit_id": "52fe4361c3a36847f804fd67", "cast_id": 8, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Sharon Stone", "character": "May Munro", "id": 4430, "credit_id": "52fe4361c3a36847f804fd6b", "cast_id": 9, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "James Woods", "character": "Ned Trent", "id": 4512, "credit_id": "52fe4361c3a36847f804fd6f", "cast_id": 10, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 2}, {"name": "Rod Steiger", "character": "Joe Leon", "id": 522, "credit_id": "52fe4361c3a36847f804fd73", "cast_id": 11, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 3}, {"name": "Eric Roberts", "character": "Tomas Leon", "id": 21315, "credit_id": "52fe4361c3a36847f804fd77", "cast_id": 12, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 4}, {"name": "Mario Ernesto S\u00e1nchez", "character": "Charlie", "id": 26651, "credit_id": "52fe4361c3a36847f804fd7b", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Sergio Dor\u00e9 Jr.", "character": "Strongarm", "id": 26652, "credit_id": "52fe4361c3a36847f804fd7f", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Chase Randolph", "character": "Stan Munro", "id": 26653, "credit_id": "52fe4361c3a36847f804fd83", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Jeana Bell", "character": "Alice Munro", "id": 26654, "credit_id": "52fe4361c3a36847f804fd87", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Brittany Paige Bouck", "character": "Young May", "id": 26655, "credit_id": "52fe4361c3a36847f804fd8b", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Emilio Estefan", "character": "Pianoplayer", "id": 26656, "credit_id": "52fe4361c3a36847f804fd8f", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "LaGaylia Frazier", "character": "Singer #1", "id": 1176261, "credit_id": "52fe4361c3a36847f804fd99", "cast_id": 20, "profile_path": "/wPorrajfTZKar9AQArCEEMKLu0D.jpg", "order": 11}], "directors": [{"name": "Luis Llosa", "department": "Directing", "job": "Director", "credit_id": "52fe4361c3a36847f804fd3f", "profile_path": null, "id": 26648}], "vote_average": 5.7, "runtime": 110}, "3170": {"poster_path": "/laABfcpEKweQsaZwCWzmGNUpij9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 267447150, "overview": "The animated story of Bambi, a young deer hailed as the 'Prince of the Forest' at his birth. As Bambi grows, he makes friends with the other animals of the forest, learns the skills needed to survive, and even finds love. One day, however, the hunters come, and Bambi must learn to be as brave as his father if he is to lead the other deer to safety.", "video": false, "id": 3170, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Bambi", "tagline": "A great love story.", "vote_count": 335, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pdeV9HC6ECDvUfICMWeMHvWsCIa.jpg", "poster_path": "/b941y7oiWBXJZaoWemW4exlpDxf.jpg", "id": 87250, "name": "Bambi Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0034492", "adult": false, "backdrop_path": "/ig4XAkoBAGFo2PG1ANjVYeAN2FA.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1942-08-12", "popularity": 1.25584239172027, "original_title": "Bambi", "budget": 858000, "cast": [{"name": "Hardie Albright", "character": "Adolescent Bambi (voice)", "id": 31702, "credit_id": "52fe438cc3a36847f805ca7d", "cast_id": 6, "profile_path": "/4wTdULXac5ewxYHyyMBlcnNex8l.jpg", "order": 0}, {"name": "Stan Alexander", "character": "Young Flower", "id": 31703, "credit_id": "52fe438cc3a36847f805ca81", "cast_id": 7, "profile_path": null, "order": 1}, {"name": "Peter Behn", "character": "Young Thumper", "id": 31704, "credit_id": "52fe438cc3a36847f805ca85", "cast_id": 8, "profile_path": "/A1686KHpRYtffORkQzjCd3EHKQ3.jpg", "order": 2}, {"name": "Donnie Dunagan", "character": "Young Bambi (Voice)", "id": 30161, "credit_id": "52fe438cc3a36847f805ca89", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Sam Edwards", "character": "Adult Thumper (voice)", "id": 31705, "credit_id": "52fe438cc3a36847f805ca8d", "cast_id": 10, "profile_path": "/7k4ezTf3mnHy6PEtYzVfhmjJngH.jpg", "order": 4}, {"name": "Thelma Boardman", "character": "Mrs. Quail (voice)", "id": 31706, "credit_id": "52fe438cc3a36847f805ca91", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Tim Davis", "character": "Adult Thumper / Adolescent Flower", "id": 31707, "credit_id": "52fe438cc3a36847f805ca95", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Marion Darlington", "character": "Birds", "id": 5463, "credit_id": "52fe438cc3a36847f805ca99", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Ann Gillis", "character": "Adult Faline", "id": 107445, "credit_id": "52fe438cc3a36847f805ca9d", "cast_id": 15, "profile_path": "/pj9tiEfMxDe4vedKtmlGu5oMB9m.jpg", "order": 8}, {"name": "Otis Harlan", "character": "Mr. Mole", "id": 5465, "credit_id": "52fe438cc3a36847f805caa1", "cast_id": 16, "profile_path": "/dvoCiNNoupmtAh3qUfBX5zOOO1P.jpg", "order": 9}, {"name": "Eddie Holden", "character": "Chipmunk", "id": 227460, "credit_id": "52fe438cc3a36847f805caa5", "cast_id": 17, "profile_path": "/8ObfPqjXG4ieuvpCpcRul5w2rEB.jpg", "order": 10}], "directors": [{"name": "David Hand", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805ca67", "profile_path": "/4VzUnNNHSwGT0qH99Zgd0nhmmIU.jpg", "id": 5446}, {"name": "James Algar", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805caab", "profile_path": "/3dSa9LsutXEjnsEuZfuIWznQkkC.jpg", "id": 5690}, {"name": "Samuel Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cab1", "profile_path": null, "id": 5691}, {"name": "Graham Heid", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cab7", "profile_path": null, "id": 150003}, {"name": "William Roberts", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cabd", "profile_path": "/mkfgT5RdFbFOwJpigXWALq9hOvz.jpg", "id": 11427}, {"name": "Paul Satterfield", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cac3", "profile_path": null, "id": 11428}, {"name": "Norman Wright", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cac9", "profile_path": null, "id": 160942}], "vote_average": 6.4, "runtime": 70}, "10830": {"poster_path": "/vddUwPL3L8MBH4FrEDCAZM9T6sj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33459416, "overview": "See the world from a kid's-eye view with Matilda, a modern fairytale that mixes hilarious humour with the magical message of love. Matilda is a super-smart little girl who's woefully misunderstood by her parents, her brother, and an evil school principal. But with the help of a brave best friend and a wonderful teacher, Matilda discovers she doesn't have to get mad to get even.", "video": false, "id": 10830, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Matilda", "tagline": "A little magic goes a long way.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117008", "adult": false, "backdrop_path": "/r8nIuvtJBmFvvW07KmOGKKm6NQF.jpg", "production_companies": [{"name": "Jersey Films", "id": 216}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1996-07-28", "popularity": 0.843524389321088, "original_title": "Matilda", "budget": 36000000, "cast": [{"name": "Mara Wilson", "character": "Matilda Wormwood", "id": 11717, "credit_id": "52fe43be9251416c7501c641", "cast_id": 1, "profile_path": "/lVfLBgPMUFcRd0eSF09dDW34nKH.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Harry Wormwood", "id": 518, "credit_id": "52fe43be9251416c7501c645", "cast_id": 2, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Embeth Davidtz", "character": "Miss Jennifer \"Jenny\" Honey", "id": 6368, "credit_id": "52fe43be9251416c7501c64d", "cast_id": 4, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 2}, {"name": "Rhea Perlman", "character": "Zinnia Wormwood", "id": 24203, "credit_id": "52fe43be9251416c7501c649", "cast_id": 3, "profile_path": "/cq7Cf4z3BHD9o58ki7MgCioty8q.jpg", "order": 3}, {"name": "Pam Ferris", "character": "Agatha Trunchbull", "id": 11213, "credit_id": "52fe43be9251416c7501c687", "cast_id": 14, "profile_path": "/i9ou0K069ce8rL1OeWEZRukCBCk.jpg", "order": 4}, {"name": "Paul Reubens", "character": "FBI Agent Bob", "id": 5129, "credit_id": "52fe43be9251416c7501c68b", "cast_id": 15, "profile_path": "/3g77Qz12qjCpVGfBP2kOPx4rRai.jpg", "order": 5}, {"name": "Tracey Walter", "character": "FBI Agent Bill", "id": 3801, "credit_id": "52fe43be9251416c7501c68f", "cast_id": 16, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 6}, {"name": "Brian Levinson", "character": "Michael 'Mikey' Wormwood", "id": 109693, "credit_id": "52fe43be9251416c7501c693", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Kiami Davael", "character": "Lavender", "id": 109694, "credit_id": "52fe43be9251416c7501c697", "cast_id": 18, "profile_path": null, "order": 8}], "directors": [{"name": "Danny DeVito", "department": "Directing", "job": "Director", "credit_id": "52fe43be9251416c7501c653", "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "id": 518}], "vote_average": 6.6, "runtime": 98}, "256591": {"poster_path": "/a4bDdCh2fh9hpc6aK0ghKzUZ2dl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A veteran grifter takes a young, attractive woman under his wing, but things get complicated when they become romantically involved.", "video": false, "id": 256591, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Focus", "tagline": "Never Drop The Con.", "vote_count": 219, "homepage": "http://focusmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2381941", "adult": false, "backdrop_path": "/czjU8NpPVTx5NzEk0zxe433xN9R.jpg", "production_companies": [{"name": "Zaftig Films", "id": 47586}, {"name": "Kramer & Sigman Films", "id": 21914}], "release_date": "2015-02-27", "popularity": 3.95461590318098, "original_title": "Focus", "budget": 0, "cast": [{"name": "Will Smith", "character": "Nicky", "id": 2888, "credit_id": "530789e0925141111100018d", "cast_id": 4, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Margot Robbie", "character": "Jess Barrett", "id": 234352, "credit_id": "530789e9925141110b00017c", "cast_id": 5, "profile_path": "/cdc4z3uOFUoM7VNq7FqLUVDalwf.jpg", "order": 2}, {"name": "Rodrigo Santoro", "character": "G\u00e1rriga", "id": 17289, "credit_id": "530789f69251411114000147", "cast_id": 6, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 3}, {"name": "Robert Taylor", "character": "McEwen", "id": 39545, "credit_id": "53c63397c3a3686255001bad", "cast_id": 7, "profile_path": "/aqRJQj0KBPhGLDxfmOAXCUzCcSJ.jpg", "order": 4}, {"name": "Gerald McRaney", "character": "Ownes", "id": 29512, "credit_id": "53c633a0c3a3686251001c12", "cast_id": 8, "profile_path": "/jPS0hN9T3JFhfMLEJ36LEwedTAz.jpg", "order": 5}, {"name": "Adrian Martinez", "character": "Farhad", "id": 94432, "credit_id": "5505d3799251412c05002f7c", "cast_id": 19, "profile_path": "/zDnnzak4BLb5dNc9taqLNprkRvw.jpg", "order": 6}, {"name": "BD Wong", "character": "Liyuan", "id": 14592, "credit_id": "5505d3a7c3a368262e002f3e", "cast_id": 20, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 7}, {"name": "Brennan Brown", "character": "Horst", "id": 1218149, "credit_id": "5505d3c7c3a3682529002f73", "cast_id": 21, "profile_path": "/si4VTKGM6dFyZ6liBSDbjCkn3bf.jpg", "order": 8}, {"name": "Dotan Bonen", "character": "Gordon", "id": 1440537, "credit_id": "5505d408c3a3682529002f7b", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Griff Furst", "character": "Gareth", "id": 76021, "credit_id": "5505d42dc3a36862e5002eda", "cast_id": 23, "profile_path": "/rRAtuKLOq27DFZ0MWu6FCVbbhS8.jpg", "order": 10}, {"name": "Stephanie Honor\u00e9", "character": "Janice", "id": 94427, "credit_id": "5505d444c3a36862e100303f", "cast_id": 24, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 11}, {"name": "David Stanford", "character": "Drunken Stranger", "id": 1319345, "credit_id": "5505d46f92514179fb000974", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Dominic Fumusa", "character": "Jared", "id": 154784, "credit_id": "5505d484c3a3682529002f83", "cast_id": 26, "profile_path": "/79mhkiUnN4CbRun195Qm5oJZIDw.jpg", "order": 13}, {"name": "Steve Kim", "character": "Liyuan\u0092s Bodyguard", "id": 1440538, "credit_id": "5505d49bc3a3686b75000954", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Don Yesso", "character": "Card Player / Football Coach", "id": 172734, "credit_id": "5505d4c892514174b000306b", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "Glenn Ficarra", "department": "Directing", "job": "Director", "credit_id": "530789649251411111000187", "profile_path": "/nYiriOot9jZihyuhH7utfTh7vtH.jpg", "id": 56411}, {"name": "John Requa", "department": "Directing", "job": "Director", "credit_id": "53078973925141110b000177", "profile_path": null, "id": 56412}], "vote_average": 6.5, "runtime": 104}, "10833": {"poster_path": "/2yiDk4RnGL01HvMxXu96J4zmjle.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Max and Page are a mother and daughter con team. Max seduces wealthy men into marrying her, and then Page seduces them into infidelity so Max can rake them over the divorce court coals. And then it's on to the next victim", "video": false, "id": 10833, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Heartbreakers", "tagline": "They Will Love You For Richer. And Leave You For Poorer!", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0125022", "adult": false, "backdrop_path": "/55XMmw8oAuW4VPqDnrPN5w3gfTO.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2001-03-23", "popularity": 0.736120139650473, "original_title": "Heartbreakers", "budget": 35000000, "cast": [{"name": "Sigourney Weaver", "character": "Max Conners", "id": 10205, "credit_id": "52fe43be9251416c7501c777", "cast_id": 1, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Jennifer Love Hewitt", "character": "Page Conners", "id": 33259, "credit_id": "52fe43be9251416c7501c77b", "cast_id": 2, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Dean Cumanno", "id": 11477, "credit_id": "52fe43be9251416c7501c77f", "cast_id": 3, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Gene Hackman", "character": "William B. Tensy", "id": 193, "credit_id": "52fe43be9251416c7501c783", "cast_id": 4, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 3}, {"name": "Jason Lee", "character": "Jack Withrowe", "id": 11662, "credit_id": "52fe43be9251416c7501c787", "cast_id": 5, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Anne Bancroft", "character": "Gloria Vogal", "id": 10774, "credit_id": "52fe43be9251416c7501c78b", "cast_id": 6, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 5}, {"name": "Stacey Travis", "character": "Nurse Gale Grey", "id": 31714, "credit_id": "52fe43be9251416c7501c7cb", "cast_id": 17, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 6}, {"name": "Jeffrey Jones", "character": "Mr. Appel", "id": 4004, "credit_id": "52fe43be9251416c7501c7cf", "cast_id": 18, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 7}, {"name": "Nora Dunn", "character": "Miss Madress", "id": 4496, "credit_id": "52fe43bf9251416c7501c7d3", "cast_id": 19, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 8}, {"name": "Sarah Silverman", "character": "Linda", "id": 7404, "credit_id": "52fe43bf9251416c7501c7d7", "cast_id": 20, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 9}, {"name": "Zach Galifianakis", "character": "Bill", "id": 58225, "credit_id": "52fe43bf9251416c7501c7db", "cast_id": 21, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 10}, {"name": "Michael Hitchcock", "character": "Dr. Arnold Davis", "id": 75463, "credit_id": "52fe43bf9251416c7501c7df", "cast_id": 22, "profile_path": "/6OuyZXfWMJ82c96VHOOLU1xFPG0.jpg", "order": 11}, {"name": "Carrie Fisher", "character": "Ms. Surpin", "id": 4, "credit_id": "52fe43bf9251416c7501c7e3", "cast_id": 23, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 12}, {"name": "Kevin Nealon", "character": "Man at the Bar", "id": 58478, "credit_id": "52fe43bf9251416c7501c7e7", "cast_id": 24, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 13}], "directors": [{"name": "David Mirkin", "department": "Directing", "job": "Director", "credit_id": "52fe43be9251416c7501c791", "profile_path": null, "id": 58178}], "vote_average": 5.3, "runtime": 123}, "2642": {"poster_path": "/oDxJfvHz6dEVvbTGH2SmLu5HA7q.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93354918, "overview": "Millionaire real estate developer George Wade doesn't make a move without Lucy Kelson, his multitasking chief counsel and virtual right arm. But after a year of calling the shots, Lucy is giving her two weeks' notice. It seems Lucy's finally free of George and his 24-hour requests, which included everything from taking care of George's clothing to handling his divorce settlements. But George has other ideas.", "video": false, "id": 2642, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Two Weeks Notice", "tagline": "A comedy about love at last glance.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0313737", "adult": false, "backdrop_path": "/8qhRVRsllClfhomp6oddvTTwtnl.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2002-12-18", "popularity": 0.742419921523952, "original_title": "Two Weeks Notice", "budget": 60000000, "cast": [{"name": "Sandra Bullock", "character": "Lucy Kelson", "id": 18277, "credit_id": "52fe4362c3a36847f80502d9", "cast_id": 8, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Hugh Grant", "character": "George Wade", "id": 3291, "credit_id": "52fe4362c3a36847f80502dd", "cast_id": 9, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 1}, {"name": "Alicia Witt", "character": "June Carver", "id": 3128, "credit_id": "52fe4362c3a36847f80502e1", "cast_id": 10, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 2}, {"name": "Dana Ivey", "character": "Ruth Kelson", "id": 13314, "credit_id": "52fe4362c3a36847f80502e5", "cast_id": 11, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 3}, {"name": "Robert Klein", "character": "Larry Kelson", "id": 26715, "credit_id": "52fe4362c3a36847f80502e9", "cast_id": 12, "profile_path": "/pDRrQXkFDomlFL9jnhBAjymLAGh.jpg", "order": 4}, {"name": "Heather Burns", "character": "Meryl Brooks", "id": 26716, "credit_id": "52fe4362c3a36847f80502ed", "cast_id": 13, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 5}, {"name": "David Haig", "character": "Howard Wade", "id": 26717, "credit_id": "52fe4362c3a36847f80502f1", "cast_id": 14, "profile_path": "/5XwGvOPP5wh85CrPMycbj4573el.jpg", "order": 6}, {"name": "Dorian Missick", "character": "Tony", "id": 26718, "credit_id": "52fe4362c3a36847f80502f5", "cast_id": 15, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 7}, {"name": "Veanne Cox", "character": "Melanie Corman", "id": 26719, "credit_id": "52fe4362c3a36847f80502f9", "cast_id": 16, "profile_path": "/7fxVktlpPBAEWImceQB9wTPb90H.jpg", "order": 8}, {"name": "Janine LaManna", "character": "Elaine Cominsky", "id": 26720, "credit_id": "52fe4362c3a36847f80502fd", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Iraida Polanco", "character": "Rosario", "id": 26721, "credit_id": "52fe4362c3a36847f8050301", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Charlotte Maier", "character": "Helen Wade", "id": 26722, "credit_id": "52fe4362c3a36847f8050305", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Katheryn Winnick", "character": "Tiffany", "id": 26723, "credit_id": "52fe4362c3a36847f8050309", "cast_id": 20, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 12}, {"name": "Tim Kang", "character": "Paul the Attorney", "id": 52947, "credit_id": "52fe4362c3a36847f805030d", "cast_id": 21, "profile_path": "/1qKA4ODtnF6SiYuSfcC8x9dI7dD.jpg", "order": 13}], "directors": [{"name": "Marc Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4362c3a36847f80502b1", "profile_path": "/6842GmjEw9svtkqA3XhXWWNY7px.jpg", "id": 18323}], "vote_average": 5.7, "runtime": 101}, "68179": {"poster_path": "/ql8q3VrEWQ7h0zdrUj0NF9IAm5i.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Astronaut Scorch Supernova finds himself caught in a trap when he responds to an SOS from a notoriously dangerous alien planet.", "video": false, "id": 68179, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Escape from Planet Earth", "tagline": "Earth's greatest secrets are about to break out!", "vote_count": 159, "homepage": "http://www.escapeearthmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765446", "adult": false, "backdrop_path": "/w0no28UKW3Z9CIv9kTiCoan6RWl.jpg", "production_companies": [{"name": "Mainframe Entertainment", "id": 5024}], "release_date": "2013-02-14", "popularity": 0.903356545603129, "original_title": "Escape from Planet Earth", "budget": 0, "cast": [{"name": "Brendan Fraser", "character": "Scorch Supernova (Voice)", "id": 18269, "credit_id": "52fe4788c3a368484e0cc2cb", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Rob Corddry", "character": "Gary Supernova (voice)", "id": 52997, "credit_id": "52fe4788c3a368484e0cc2f3", "cast_id": 10, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 1}, {"name": "Ricky Gervais", "character": "Mr Bing (Voice)", "id": 17835, "credit_id": "52fe4788c3a368484e0cc315", "cast_id": 17, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 2}, {"name": "Jessica Alba", "character": "Lena (Voice)", "id": 56731, "credit_id": "52fe4788c3a368484e0cc2e7", "cast_id": 6, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 3}, {"name": "Sarah Jessica Parker", "character": "Kira Supernova (Voice)", "id": 520, "credit_id": "52fe4788c3a368484e0cc2eb", "cast_id": 7, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 4}, {"name": "Kaitlin Olson", "character": "Gabby Babblebrook", "id": 95102, "credit_id": "52fe4788c3a368484e0cc2ef", "cast_id": 9, "profile_path": "/oRSDYUN7fXVWHp7FNq1P874i1Yf.jpg", "order": 5}, {"name": "Ashley Eckstein", "character": "Alien", "id": 41345, "credit_id": "52fe4788c3a368484e0cc2f7", "cast_id": 11, "profile_path": "/aEAQPWFv2mlH2Pp9TPJMfIDnIOJ.jpg", "order": 6}, {"name": "Gregg Binkley", "character": "Ralph", "id": 170185, "credit_id": "52fe4788c3a368484e0cc2fb", "cast_id": 12, "profile_path": "/gTmsOFfFqHDcEzeqh3ezcSuk7TB.jpg", "order": 7}, {"name": "Sof\u00eda Vergara", "character": "Gabby (Voice)", "id": 63522, "credit_id": "52fe4788c3a368484e0cc319", "cast_id": 18, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 9}, {"name": "Steve Zahn", "character": "Hawk (Voice)", "id": 18324, "credit_id": "52fe4788c3a368484e0cc31d", "cast_id": 19, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 10}, {"name": "Craig Robinson", "character": "Doc (Voice)", "id": 64342, "credit_id": "52fe4788c3a368484e0cc321", "cast_id": 20, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 11}, {"name": "Jane Lynch", "character": "Io (Voice)", "id": 43775, "credit_id": "52fe4788c3a368484e0cc325", "cast_id": 21, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 12}, {"name": "Jonathan Morgan Heit", "character": "Kip Supernova (voice)", "id": 576511, "credit_id": "52fe4788c3a368484e0cc329", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Chris Parnell", "character": "Hammer (voice)", "id": 51382, "credit_id": "52fe4788c3a368484e0cc32d", "cast_id": 23, "profile_path": "/dLdXHfbJ7TMe3qbtNzPpSLuaMos.jpg", "order": 14}, {"name": "William Shatner", "character": "General Shanker (voice)", "id": 1748, "credit_id": "52fe4788c3a368484e0cc331", "cast_id": 24, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 15}, {"name": "Bob Bergen", "character": "3D Movie Guy (voice)", "id": 78317, "credit_id": "52fe4788c3a368484e0cc335", "cast_id": 25, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 16}, {"name": "George Lopez", "character": "Thurman (voice)", "id": 41798, "credit_id": "52fe4788c3a368484e0cc339", "cast_id": 26, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 17}], "directors": [{"name": "Callan Brunker", "department": "Directing", "job": "Director", "credit_id": "52fe4788c3a368484e0cc301", "profile_path": null, "id": 1098477}], "vote_average": 5.9, "runtime": 89}, "297556": {"poster_path": "/3n0zmm2dPF0TQt2ikJ2tUjKr2FT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the events of Justice League: War, Ocean Master and Black Manta have declared a war against the surface in retaliation of the aftermath of Apokoliptian-tyrant Darkseid's planetary invasion. Queen Atlanna seeks out her other son, Ocean Master\u2019s half-brother Arthur Curry, a half-human with aquatic powers with no knowledge of his Atlantean heritage, to restore balance. Living with powers he doesn\u2019t understand and seeing the danger around him, Curry takes steps to embrace his destiny, joining the Justice League, and with his new teammates he battles to save Earth from total destruction.", "video": false, "id": 297556, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Justice League: Throne of Atlantis", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3878542", "adult": false, "backdrop_path": "/yIAxebMW8bvGJhZO8Q3TSi4zMDQ.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Feature Animation", "id": 20734}], "release_date": "2015-01-27", "popularity": 1.74678299013691, "original_title": "Justice League: Throne of Atlantis", "budget": 3500000, "cast": [{"name": "Sean Astin", "character": "Shazam", "id": 1328, "credit_id": "543e4d800e0a266f8e001e48", "cast_id": 4, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 1}, {"name": "Steve Blum", "character": "Computer", "id": 81379, "credit_id": "543e4d8dc3a3682500001fd3", "cast_id": 5, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 2}, {"name": "Rosario Dawson", "character": "Wonder Woman", "id": 5916, "credit_id": "543e4d9cc3a368250d001cdd", "cast_id": 6, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 3}, {"name": "Nathan Fillion", "character": "Green Lantern", "id": 51797, "credit_id": "543e4dabc3a3682517001e3a", "cast_id": 7, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 4}, {"name": "Christopher Gorham", "character": "The Flash", "id": 53761, "credit_id": "543e4dbb0e0a266f8e001e58", "cast_id": 8, "profile_path": "/1fAcWAtGeTluNjbGVGxaShQD090.jpg", "order": 5}, {"name": "Sirena Irwin", "character": "Queen Atlanna", "id": 48163, "credit_id": "543e4dcf0e0a266f84001f20", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Matt Lanter", "character": "Aquaman / Arthur Curry", "id": 34202, "credit_id": "543e4de5c3a368250a001ea0", "cast_id": 10, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 7}, {"name": "Sumalee Montano", "character": "Mera", "id": 66655, "credit_id": "543e4df0c3a3682513001e16", "cast_id": 11, "profile_path": "/c3eoetU8QCfdc6F0N0QjJtGYjqs.jpg", "order": 8}, {"name": "Jerry O'Connell", "character": "Superman", "id": 3035, "credit_id": "543e4dffc3a368250a001ea8", "cast_id": 12, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 9}, {"name": "Jason O'Mara", "character": "Batman", "id": 183812, "credit_id": "543e4e0b0e0a266f81001e64", "cast_id": 13, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 10}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "543e4d3b0e0a266f8b001df9", "profile_path": null, "id": 105643}, {"name": "Ethan Spaulding", "department": "Directing", "job": "Director", "credit_id": "543e4d520e0a266f7a001f5f", "profile_path": null, "id": 529806}], "vote_average": 6.5, "runtime": 72}, "2649": {"poster_path": "/reLfX4fIasqLXCdgZ7vnnYWYhe3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109423648, "overview": "In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a coldhearted loner, receives an unusual present from his younger brother, Conrad -- a gift certificate to play a unique kind of game. In nary a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.", "video": false, "id": 2649, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Game", "tagline": "What do you get for the man who has everything?", "vote_count": 448, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119174", "adult": false, "backdrop_path": "/3Eux3wcYYb79D2sr8aA6BEH9kVl.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Popaganda Films", "id": 10164}, {"name": "A&B Producoes", "id": 1519}], "release_date": "1997-09-12", "popularity": 1.73882635140805, "original_title": "The Game", "budget": 50000000, "cast": [{"name": "Michael Douglas", "character": "Nicholas Van Orton", "id": 3392, "credit_id": "52fe4362c3a36847f80506d3", "cast_id": 10, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Sean Penn", "character": "Conrad Van Orton", "id": 2228, "credit_id": "52fe4362c3a36847f80506d7", "cast_id": 11, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Christine", "id": 13549, "credit_id": "52fe4362c3a36847f80506db", "cast_id": 12, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "James Rebhorn", "character": "Jim Feingold", "id": 8986, "credit_id": "52fe4363c3a36847f80506df", "cast_id": 13, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 3}, {"name": "Peter Donat", "character": "Samuel Sutherland", "id": 14849, "credit_id": "52fe4363c3a36847f80506e3", "cast_id": 14, "profile_path": "/uHnhxFAfc9mStZG2lFFyFPeJFYV.jpg", "order": 4}, {"name": "Armin Mueller-Stahl", "character": "Anson Baer", "id": 12647, "credit_id": "52fe4363c3a36847f80506e7", "cast_id": 15, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 5}, {"name": "Carroll Baker", "character": "Ilsa", "id": 14701, "credit_id": "52fe4363c3a36847f80506eb", "cast_id": 16, "profile_path": "/flubg7SaCJZdZbuLvtWYv13cAaS.jpg", "order": 6}, {"name": "Anna Katarina", "character": "Elizabeth", "id": 27570, "credit_id": "52fe4363c3a36847f80506ef", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Charles Martinet", "character": "Nicholas' Father", "id": 176340, "credit_id": "52fe4363c3a36847f80506f9", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Scott Hunter McGuire", "character": "Young Nicholas", "id": 1075080, "credit_id": "52fe4363c3a36847f80506fd", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Florentine Mocanu", "character": "Nicholas' Mother", "id": 1075081, "credit_id": "52fe4363c3a36847f8050701", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Elizabeth Dennehy", "character": "Maria", "id": 154954, "credit_id": "52fe4363c3a36847f8050705", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Caroline Barclay", "character": "Maggie", "id": 178446, "credit_id": "52fe4363c3a36847f8050709", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Daniel Schorr", "character": "Himself", "id": 553720, "credit_id": "52fe4363c3a36847f805070d", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "John Aprea", "character": "Power Executive", "id": 104504, "credit_id": "52fe4363c3a36847f8050711", "cast_id": 25, "profile_path": "/rydYJR1h5wICOCxVHQuJRgfnjhe.jpg", "order": 14}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f80506f5", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.2, "runtime": 129}, "2652": {"poster_path": "/1xInhmQVOOVS7xFT5DthpIwUTDI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7022209, "overview": "A mature 14-year old girl meets a charming 32-year old photographer on the Internet. Suspecting that he is a pedophile, she goes to his home in an attempt to expose him.", "video": false, "id": 2652, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hard Candy", "tagline": "Strangers shouldn't talk to little girls.", "vote_count": 165, "homepage": "http://hardcandymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0424136", "adult": false, "backdrop_path": "/pQUxfw0ZVb5AK9PYyTzjYaEIs3m.jpg", "production_companies": [{"name": "Vulcan Productions Inc.", "id": 12355}], "release_date": "2005-01-21", "popularity": 0.752239085004001, "original_title": "Hard Candy", "budget": 950000, "cast": [{"name": "Patrick Wilson", "character": "Jeff Kohlver", "id": 17178, "credit_id": "52fe4363c3a36847f805078d", "cast_id": 11, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Ellen Page", "character": "Hayley Stark", "id": 27578, "credit_id": "52fe4363c3a36847f8050791", "cast_id": 12, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 1}, {"name": "Sandra Oh", "character": "Judy Tokuda", "id": 25540, "credit_id": "52fe4363c3a36847f8050795", "cast_id": 13, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 2}, {"name": "Odessa Rae", "character": "Janelle Rogers", "id": 27579, "credit_id": "52fe4363c3a36847f8050799", "cast_id": 14, "profile_path": "/yDTam4xkQWJH5qDUKtuoL26Xc8P.jpg", "order": 3}, {"name": "G.J. Echternkamp", "character": "Nighthawks Clerk", "id": 27580, "credit_id": "52fe4363c3a36847f805079d", "cast_id": 15, "profile_path": "/tIkzpE1pWI5lbeNc8eOHrzvsyyM.jpg", "order": 4}], "directors": [{"name": "David Slade", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050759", "profile_path": "/ksOn4mssJbmdBX1AvzZF4nCUAiQ.jpg", "id": 27571}], "vote_average": 6.7, "runtime": 103}, "70074": {"poster_path": "/in6KZhkj6UCpXhjVm00VzdisHyf.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19900000, "overview": "After watching their respective partners die, a cop and a hitman form an alliance in order to bring down their common enemy.", "video": false, "id": 70074, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Bullet to the Head", "tagline": "Revenge Never Gets Old.", "vote_count": 253, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1308729", "adult": false, "backdrop_path": "/ubCbg2zgJv7hLeA7JIhEE5iPyzg.jpg", "production_companies": [{"name": "Dark Castle Entertainment", "id": 1786}, {"name": "After Dark Films", "id": 3608}, {"name": "IM Global", "id": 7437}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Silver Reel", "id": 12075}, {"name": "EMJAG Productions", "id": 14654}, {"name": "Millar Gough Ink", "id": 20356}, {"name": "Headshot Films", "id": 25876}], "release_date": "2012-11-14", "popularity": 0.648161521196493, "original_title": "Bullet to the Head", "budget": 55000000, "cast": [{"name": "Sylvester Stallone", "character": "James Bonomo", "id": 16483, "credit_id": "52fe47e9c3a368484e0dffd7", "cast_id": 4, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Sung Kang", "character": "Taylor Kwon", "id": 61697, "credit_id": "531cbacac3a3685c37006ced", "cast_id": 42, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 1}, {"name": "Sarah Shahi", "character": "Lisa", "id": 164945, "credit_id": "52fe47e9c3a368484e0dffdb", "cast_id": 6, "profile_path": "/hTV326FBAlLmHOdPPiXVItCoivR.jpg", "order": 2}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Robert Nkomo Morel", "id": 31164, "credit_id": "52fe47e9c3a368484e0dfff1", "cast_id": 13, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 3}, {"name": "Jason Momoa", "character": "Keegan", "id": 117642, "credit_id": "52fe47e9c3a368484e0dffdf", "cast_id": 7, "profile_path": "/PSK6GmsVwdhqz9cd1lwzC6a7EA.jpg", "order": 4}, {"name": "Christian Slater", "character": "Marcus Baptiste", "id": 2224, "credit_id": "52fe47e9c3a368484e0dffe3", "cast_id": 8, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 5}, {"name": "Jon Seda", "character": "Louis Blanchard", "id": 288, "credit_id": "52fe47e9c3a368484e0dfff9", "cast_id": 15, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 6}, {"name": "Holt McCallany", "character": "Hank Greely", "id": 7497, "credit_id": "52fe47e9c3a368484e0dfff5", "cast_id": 14, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 7}, {"name": "Brian Van Holt", "character": "Ronnie Earl", "id": 12792, "credit_id": "52fe47e9c3a368484e0e0005", "cast_id": 18, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 8}, {"name": "Weronika Rosati", "character": "Lola", "id": 235492, "credit_id": "52fe47e9c3a368484e0dfffd", "cast_id": 16, "profile_path": "/zhjhBfASgzV7vEuvE2ldjyCc0hW.jpg", "order": 9}, {"name": "Dominique DuVernay", "character": "Waitress", "id": 550471, "credit_id": "52fe47e9c3a368484e0e0001", "cast_id": 17, "profile_path": "/h5VftC7nwV0UD1qcrSfLWFSm1ZE.jpg", "order": 10}, {"name": "Don Thai Theerathada", "character": "Kim", "id": 1083165, "credit_id": "52fe47e9c3a368484e0e0009", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Dana Gourrier ", "character": "Deputy Coroner", "id": 1133063, "credit_id": "53a9685d0e0a261439007897", "cast_id": 50, "profile_path": "/hj7pAGBEy9XzqT23kHxKrpJYT6W.jpg", "order": 13}, {"name": "Douglas M. Griffin", "character": "Baby Jack Lemoyne", "id": 60881, "credit_id": "53a968e30e0a2614390078a4", "cast_id": 51, "profile_path": null, "order": 14}, {"name": "Donna DuPlantier", "character": "Newscaster", "id": 230995, "credit_id": "53a9698b0e0a261442007836", "cast_id": 52, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 15}, {"name": "Andrea Frankle", "character": "Masseuse", "id": 946356, "credit_id": "53a969d20e0a26143c0076e6", "cast_id": 53, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 16}, {"name": "Teri Wyble", "character": "Belle", "id": 565501, "credit_id": "53a96a120e0a26144200783a", "cast_id": 54, "profile_path": "/4peyoUZx7wqQpLCII4Kcb5VmaaV.jpg", "order": 17}, {"name": "Lin Oeding", "character": "Lee", "id": 1031463, "credit_id": "53a96a4d0e0a26144900797a", "cast_id": 55, "profile_path": null, "order": 18}, {"name": "Marcus Lyle Brown", "character": "Detective Towne", "id": 16460, "credit_id": "5510b9e7c3a36801740003e6", "cast_id": 110, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 19}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe47e9c3a368484e0dffc7", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 5.1, "runtime": 92}, "2655": {"poster_path": "/A1mrfm8LEv7L28q50ld8QI5z9Iu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155464351, "overview": "When Claire Spencer starts hearing ghostly voices and seeing spooky images, she wonders if an otherworldly spirit is trying to contact her. All the while, her husband tries to reassure her by telling her it's all in her head. But as Claire investigates, she discovers that the man she loves might know more than he's letting on.", "video": false, "id": 2655, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "What Lies Beneath", "tagline": "He was the perfect husband until his one mistake followed them home.", "vote_count": 94, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0161081", "adult": false, "backdrop_path": "/hpZnP0w1XVAdOgWgfuglMCeMzSy.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "DreamWorks SKG", "id": 27}, {"name": "ImageMovers", "id": 11395}], "release_date": "2000-07-21", "popularity": 0.587150291604744, "original_title": "What Lies Beneath", "budget": 100000000, "cast": [{"name": "Harrison Ford", "character": "Dr. Norman Spencer", "id": 3, "credit_id": "52fe4363c3a36847f8050867", "cast_id": 2, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Claire Spencer", "id": 1160, "credit_id": "52fe4363c3a36847f805086b", "cast_id": 3, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Diana Scarwid", "character": "Jody", "id": 2958, "credit_id": "52fe4363c3a36847f805088d", "cast_id": 9, "profile_path": "/oljzUqUTrZcqEATP02ZvuNb7vZ.jpg", "order": 2}, {"name": "James Remar", "character": "Warren Feur", "id": 1736, "credit_id": "52fe4363c3a36847f8050891", "cast_id": 10, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 3}, {"name": "Miranda Otto", "character": "Mary Feur", "id": 502, "credit_id": "52fe4363c3a36847f8050895", "cast_id": 11, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 4}, {"name": "Ray Baker", "character": "Dr. Stan Powell", "id": 12889, "credit_id": "52fe4363c3a36847f8050899", "cast_id": 12, "profile_path": "/cDmi2buNK0WR5OdqAJDk6OcvC2N.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Elena", "id": 19957, "credit_id": "52fe4363c3a36847f805089d", "cast_id": 13, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}, {"name": "Amber Valletta", "character": "Madison Elizabeth Frank", "id": 38425, "credit_id": "52fe4363c3a36847f80508a1", "cast_id": 14, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 7}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050863", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.2, "runtime": 130}, "2657": {"poster_path": "/x8MtiTDDhmQBRKRw06d7o05Nss7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Geeky teenager David and his popular twin sister, Jennifer, get sucked into the black-and-white world of a 1950s TV sitcom called \"Pleasantville,\" and find a world where everything is peachy keen all the time. But when Jennifer's modern attitude disrupts Pleasantville's peaceful but boring routine, she literally brings color into its life.", "video": false, "id": 2657, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Pleasantville", "tagline": "Nothing is as simple as black and white.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120789", "adult": false, "backdrop_path": "/dCxDSrWH5rScn1RQn3NZZh6iY0r.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Larger Than Life Productions", "id": 1163}], "release_date": "1998-09-17", "popularity": 0.740588599005699, "original_title": "Pleasantville", "budget": 0, "cast": [{"name": "Tobey Maguire", "character": "David", "id": 2219, "credit_id": "52fe4363c3a36847f80508df", "cast_id": 2, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Jennifer", "id": 368, "credit_id": "52fe4363c3a36847f80508e3", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "William H. Macy", "character": "George Parker", "id": 3905, "credit_id": "52fe4363c3a36847f80508e7", "cast_id": 4, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 2}, {"name": "Joan Allen", "character": "Betty Parker", "id": 11148, "credit_id": "52fe4363c3a36847f8050921", "cast_id": 14, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 3}, {"name": "Jeff Daniels", "character": "Bill Johnson", "id": 8447, "credit_id": "52fe4363c3a36847f8050925", "cast_id": 15, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 4}, {"name": "Marley Shelton", "character": "Margaret Henderson", "id": 6407, "credit_id": "52fe4363c3a36847f8050929", "cast_id": 16, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 5}, {"name": "Jane Kaczmarek", "character": "David's Mother", "id": 27725, "credit_id": "52fe4363c3a36847f805092d", "cast_id": 17, "profile_path": "/1zgssbeKuvPrXfI92pWLHKtx2xB.jpg", "order": 6}, {"name": "J. T. Walsh", "character": "Big Bob", "id": 22131, "credit_id": "52fe4363c3a36847f8050931", "cast_id": 18, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 7}, {"name": "Don Knotts", "character": "TV Repairman", "id": 27726, "credit_id": "52fe4363c3a36847f8050935", "cast_id": 19, "profile_path": "/qMqpOuJj69ozHCViUZSiFvgggva.jpg", "order": 8}, {"name": "Giuseppe Andrews", "character": "Howard", "id": 4133, "credit_id": "52fe4363c3a36847f8050939", "cast_id": 20, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 9}, {"name": "Marissa Ribisi", "character": "Kimmy", "id": 27727, "credit_id": "52fe4363c3a36847f805093d", "cast_id": 22, "profile_path": "/cKbSKPlaPIFbp5v32rekgENjYi2.jpg", "order": 10}, {"name": "Paul Walker", "character": "Skip Martin", "id": 8167, "credit_id": "52fe4363c3a36847f8050953", "cast_id": 26, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 11}], "directors": [{"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f80508db", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}], "vote_average": 6.7, "runtime": 124}, "10851": {"poster_path": "/jEgXJhWPUYfVPu5arBrawpq598X.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Hotshot gambler Jake Green (Jason Statham) is long on bravado and seriously short of common sense. Rarely is he allowed in any casino because he's a bona fide winner and, in fact, has taken so much money over the years that he's the sole client of his accountant elder brother, Billy. Invited to a private game, Jake is in fear of losing his life.", "video": false, "id": 10851, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Revolver", "tagline": "Your mind will not accept a game this big", "vote_count": 101, "homepage": "http://www.sonypictures.com/movies/revolver/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365686", "adult": false, "backdrop_path": "/61Kpt3kubCNNY3xFdv20Jon3Axc.jpg", "production_companies": [{"name": "Revolver Pictures Co.", "id": 2899}, {"name": "Toff Guy Films", "id": 2900}, {"name": "EuropaCorp", "id": 6896}, {"name": "Isle of Man Film", "id": 2268}, {"name": "Canal+", "id": 5358}, {"name": "Destination Films", "id": 769}], "release_date": "2005-09-22", "popularity": 1.10979500585556, "original_title": "Revolver", "budget": 0, "cast": [{"name": "Jason Statham", "character": "Jake", "id": 976, "credit_id": "52fe43c39251416c7501d26d", "cast_id": 18, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Macha", "id": 11477, "credit_id": "52fe43c39251416c7501d289", "cast_id": 23, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Vincent Pastore", "character": "Zach", "id": 47774, "credit_id": "52fe43c39251416c7501d28d", "cast_id": 24, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 2}, {"name": "Andr\u00e9 Benjamin", "character": "Avi", "id": 37934, "credit_id": "52fe43c39251416c7501d291", "cast_id": 25, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 3}, {"name": "Mark Strong", "character": "Sorter", "id": 2983, "credit_id": "52fe43c39251416c7501d295", "cast_id": 26, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Terence Maynard", "character": "French Paul", "id": 67205, "credit_id": "52fe43c39251416c7501d299", "cast_id": 27, "profile_path": "/pFxcJnlfp1lAnDbgumYynzlkfQE.jpg", "order": 5}, {"name": "Francesca Annis", "character": "Lily Walker", "id": 12513, "credit_id": "52fe43c39251416c7501d29d", "cast_id": 28, "profile_path": "/gzk3kD4qWhOBUVF536JeMLmlVbo.jpg", "order": 6}, {"name": "Elana Binysh", "character": "Rachel", "id": 67208, "credit_id": "52fe43c39251416c7501d2a1", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "Shend", "character": "Teddy", "id": 67210, "credit_id": "52fe43c39251416c7501d2a9", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Andrew Howard", "character": "Billy", "id": 67206, "credit_id": "52fe43c39251416c7501d2a5", "cast_id": 30, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 9}, {"name": "Faruk Pruti", "character": "Ivan", "id": 67209, "credit_id": "52fe43c39251416c7501d2b1", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Anjela Lauren Smith", "character": "Doreen", "id": 67207, "credit_id": "52fe43c39251416c7501d2ad", "cast_id": 32, "profile_path": "/j3jGmacxOrsFjDLztQNBYlvqED3.jpg", "order": 11}, {"name": "Stephen Walters", "character": "Joe", "id": 39681, "credit_id": "52fe43c39251416c7501d2b5", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Ian Puleston-Davies", "character": "Eddie A", "id": 67213, "credit_id": "52fe43c39251416c7501d2b9", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Tom Wu", "character": "Lord John", "id": 67212, "credit_id": "52fe43c39251416c7501d2bd", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Bill Moody", "character": "Al", "id": 67211, "credit_id": "52fe43c39251416c7501d2c5", "cast_id": 39, "profile_path": "/nd9HJkjj8GJIT4FPIkHbmvd1tYh.jpg", "order": 16}, {"name": "Jimmy Flint", "character": "Eddie B", "id": 67214, "credit_id": "52fe43c39251416c7501d2c1", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Brian Hibbard", "character": "Eddie C", "id": 67215, "credit_id": "52fe43c39251416c7501d2c9", "cast_id": 40, "profile_path": "/ktjhdIq5b6P8HveT6kof3HoLnsA.jpg", "order": 18}, {"name": "Bruce Wang", "character": "Fat Dan", "id": 67216, "credit_id": "52fe43c39251416c7501d2cd", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "Vincent Riotta", "character": "Benny", "id": 26669, "credit_id": "52fe43c39251416c7501d2d1", "cast_id": 42, "profile_path": "/4xlR6xTLzzxv6yudPZOunAVmR9n.jpg", "order": 20}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe43c39251416c7501d227", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.0, "runtime": 115}, "7270": {"poster_path": "/vRjT0WdjQbbIpYSG5f520BAS2dn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65565672, "overview": "A phobic con artist and his protege are on the verge of pulling off a lucrative swindle when the con artist's teenage daughter arrives unexpectedly.", "video": false, "id": 7270, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Matchstick Men", "tagline": "Lie. Cheat. Steal. Rinse. Repeat.", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0325805", "adult": false, "backdrop_path": "/m6pNJykwJetbPmXBjifBv4K8WgP.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "ImageMovers", "id": 11395}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Rickshaw Productions", "id": 2201}, {"name": "LivePlanet", "id": 7161}, {"name": "HorsePower Entertainment", "id": 21002}], "release_date": "2003-09-01", "popularity": 0.393010627285521, "original_title": "Matchstick Men", "budget": 0, "cast": [{"name": "Nicolas Cage", "character": "Roy Waller", "id": 2963, "credit_id": "52fe4475c3a36847f8097541", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Sam Rockwell", "character": "Frank Mercer", "id": 6807, "credit_id": "52fe4475c3a36847f8097545", "cast_id": 2, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 1}, {"name": "Alison Lohman", "character": "Angela", "id": 8291, "credit_id": "52fe4475c3a36847f8097549", "cast_id": 3, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 2}, {"name": "Bruce Altman", "character": "Dr. Klein", "id": 27545, "credit_id": "52fe4475c3a36847f809754d", "cast_id": 4, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Chuck Frechette", "id": 14888, "credit_id": "52fe4475c3a36847f8097557", "cast_id": 6, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Jenny O'Hara", "character": "Mrs. Schaffer", "id": 4734, "credit_id": "52fe4475c3a36847f809755b", "cast_id": 7, "profile_path": "/yyr6dyBOP1BQedXbQ3RDsvoLicb.jpg", "order": 5}, {"name": "Steve Eastin", "character": "Mr. Schaffer", "id": 9276, "credit_id": "52fe4475c3a36847f809755f", "cast_id": 8, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 6}, {"name": "Beth Grant", "character": "Laundry Lady", "id": 5151, "credit_id": "52fe4475c3a36847f8097563", "cast_id": 9, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Sheila Kelley", "character": "Kathy", "id": 68109, "credit_id": "52fe4475c3a36847f8097567", "cast_id": 10, "profile_path": "/chbHBKXxpEKTKWhY6aazEAZGKRb.jpg", "order": 8}, {"name": "Fran Kranz", "character": "Slacker Boyfriend", "id": 51533, "credit_id": "52fe4475c3a36847f809756b", "cast_id": 11, "profile_path": "/rcd82G7YYnJNhA9Vz0bMOmM4dAK.jpg", "order": 9}, {"name": "Tim Kelleher", "character": "Bishop", "id": 72864, "credit_id": "52fe4475c3a36847f809756f", "cast_id": 12, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 10}, {"name": "Nigel Gibbs", "character": "Holt", "id": 11915, "credit_id": "52fe4475c3a36847f8097573", "cast_id": 13, "profile_path": "/6AE4p72zOtpR9Q385eiwrPwGPaj.jpg", "order": 11}, {"name": "Bill Saito", "character": "Pharmacist #1", "id": 151479, "credit_id": "52fe4476c3a36847f8097577", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Tim Maculan", "character": "Pharmacist #2", "id": 155696, "credit_id": "52fe4476c3a36847f809757b", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Giannina Facio", "character": "Bank Teller", "id": 58787, "credit_id": "52fe4476c3a36847f8097585", "cast_id": 17, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 14}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a36847f8097553", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.0, "runtime": 116}, "2662": {"poster_path": "/8l9wpDtIXcVxZPp2IMtCj6I1iCx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16829545, "overview": "Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.", "video": false, "id": 2662, "genres": [{"id": 27, "name": "Horror"}], "title": "House of 1000 Corpses", "tagline": "You'll never get out alive.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/osLewbX6FJMy1iUcNHm6hoiNH0j.jpg", "poster_path": "/rNLKZ2sgHuLoxV63wEaWAwCrsLN.jpg", "id": 105625, "name": "House of 1000 Corpses Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251736", "adult": false, "backdrop_path": "/bnXs5dibTbH8YdoFCgPUf52GASd.jpg", "production_companies": [{"name": "Spectacle Entertainment Group", "id": 10370}, {"name": "Universal Pictures", "id": 33}], "release_date": "2003-03-13", "popularity": 0.652291790638039, "original_title": "House of 1000 Corpses", "budget": 7000000, "cast": [{"name": "Sid Haig", "character": "Captain Spaulding", "id": 5695, "credit_id": "52fe4363c3a36847f8050a1b", "cast_id": 5, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 0}, {"name": "Bill Moseley", "character": "Otis B. Driftwood", "id": 27737, "credit_id": "52fe4363c3a36847f8050a1f", "cast_id": 6, "profile_path": "/zZP7ijcocjYN6cNKwpPwmRDWsv1.jpg", "order": 1}, {"name": "Sheri Moon Zombie", "character": "Baby Firefly", "id": 21319, "credit_id": "52fe4363c3a36847f8050a23", "cast_id": 7, "profile_path": "/ecPGCsrhqwR6clWmtqtlS6ZFdY3.jpg", "order": 2}, {"name": "Karen Black", "character": "Mother Firefly", "id": 8963, "credit_id": "52fe4363c3a36847f8050a27", "cast_id": 8, "profile_path": "/d2Zf3vIWOWovWKnPe13GSz2BTLY.jpg", "order": 3}, {"name": "Erin Daniels", "character": "Denise Willis", "id": 18662, "credit_id": "52fe4363c3a36847f8050a2f", "cast_id": 10, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 4}, {"name": "Chris Hardwick", "character": "Jerry Goldsmith", "id": 27738, "credit_id": "52fe4363c3a36847f8050a2b", "cast_id": 9, "profile_path": "/4neHtCQpQgOwmUil43R3syamU4z.jpg", "order": 5}, {"name": "Rainn Wilson", "character": "Bill Hudley", "id": 11678, "credit_id": "52fe4363c3a36847f8050a37", "cast_id": 12, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 6}, {"name": "Jennifer Jostyn", "character": "Mary Knowles", "id": 27739, "credit_id": "52fe4363c3a36847f8050a33", "cast_id": 11, "profile_path": "/ryxfr10cqSMdWQT8oWQG5OBgFQ2.jpg", "order": 7}, {"name": "Tom Towles", "character": "Lieutenant George Wydell", "id": 27736, "credit_id": "52fe4363c3a36847f8050a17", "cast_id": 4, "profile_path": null, "order": 8}, {"name": "Walton Goggins", "character": "Deputy Steve Naish", "id": 27740, "credit_id": "52fe4363c3a36847f8050a3b", "cast_id": 13, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 9}, {"name": "Matthew McGrory", "character": "Tiny Firefly", "id": 8295, "credit_id": "53d4095dc3a3686b88001b76", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Robert Allen Mukes", "character": "Rufus 'RJ' Firefly Jr.", "id": 27741, "credit_id": "52fe4363c3a36847f8050a3f", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Dennis Fimple", "character": "Grandpa Hugo Firefly", "id": 27742, "credit_id": "52fe4363c3a36847f8050a43", "cast_id": 15, "profile_path": "/iqufXf1lSczFfi8ZKfwD35jwpdF.jpg", "order": 12}, {"name": "Jake McKinnon", "character": "Rufus 'Earl' Firefly Sr.", "id": 555328, "credit_id": "53d4077e0e0a2628410025dc", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Harrison Young", "character": "Don Willis", "id": 51931, "credit_id": "53d407c70e0a26283b0025de", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Irwin Keyes", "character": "Ravelli", "id": 13592, "credit_id": "53d407ed0e0a26283e00279a", "cast_id": 28, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 15}, {"name": "Michael J. Pollard", "character": "Stucky", "id": 6451, "credit_id": "52fe4363c3a36847f8050a5d", "cast_id": 20, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 16}, {"name": "Chad Bannon", "character": "Killer Karl", "id": 44824, "credit_id": "52fe4363c3a36847f8050a59", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "William Bassett", "character": "Sheriff Frank Huston", "id": 83978, "credit_id": "52fe4363c3a36847f8050a65", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "David Reynolds", "character": "Richard 'Little Dick' Wick", "id": 44825, "credit_id": "52fe4363c3a36847f8050a61", "cast_id": 21, "profile_path": null, "order": 19}], "directors": [{"name": "Rob Zombie", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050a07", "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "id": 16848}], "vote_average": 5.7, "runtime": 89}, "2666": {"poster_path": "/yR7rapBFxBoBT0vkZQIXhLBr726.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14435076, "overview": "A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.", "video": false, "id": 2666, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Dark City", "tagline": "A world where the night never ends.", "vote_count": 197, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118929", "adult": false, "backdrop_path": "/rIWui0S2ugwTWlhna6CTS3RYW9q.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mystery Clock Cinema", "id": 908}], "release_date": "1998-02-27", "popularity": 1.14962628019977, "original_title": "Dark City", "budget": 27000000, "cast": [{"name": "Rufus Sewell", "character": "John Murdoch", "id": 17328, "credit_id": "52fe4363c3a36847f8050b6d", "cast_id": 12, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 0}, {"name": "William Hurt", "character": "Inspector Frank Bumstead", "id": 227, "credit_id": "52fe4363c3a36847f8050b71", "cast_id": 13, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 1}, {"name": "Kiefer Sutherland", "character": "Dr. Daniel P. Schreber", "id": 2628, "credit_id": "52fe4363c3a36847f8050b75", "cast_id": 14, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 2}, {"name": "Jennifer Connelly", "character": "Emma Murdoch", "id": 6161, "credit_id": "52fe4363c3a36847f8050b79", "cast_id": 15, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 3}, {"name": "Richard O'Brien", "character": "Mr. Hand", "id": 13474, "credit_id": "52fe4363c3a36847f8050b7d", "cast_id": 16, "profile_path": "/pCxCt82DQQLTgOryp6FPczmN3L9.jpg", "order": 4}, {"name": "Ian Richardson", "character": "Mr. Book", "id": 385, "credit_id": "52fe4363c3a36847f8050b81", "cast_id": 17, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 5}, {"name": "Bruce Spence", "character": "Mr. Wall", "id": 27752, "credit_id": "52fe4363c3a36847f8050b85", "cast_id": 18, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 6}, {"name": "Colin Friels", "character": "Det. Eddie Walenski", "id": 27753, "credit_id": "52fe4363c3a36847f8050b89", "cast_id": 19, "profile_path": "/tXKCpTwCs4TZYdQ6p5Kch7sRkkS.jpg", "order": 7}, {"name": "Mitchell Butel", "character": "Officer Husselbeck", "id": 27754, "credit_id": "52fe4363c3a36847f8050b8d", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Melissa George", "character": "May", "id": 27755, "credit_id": "52fe4363c3a36847f8050b91", "cast_id": 21, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 9}, {"name": "Frank Gallacher", "character": "Chief Inspector Stromboli", "id": 40046, "credit_id": "52fe4363c3a36847f8050bb3", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Ritchie Singer", "character": "Hotel Manager / Vendor", "id": 1040112, "credit_id": "52fe4363c3a36847f8050bb7", "cast_id": 28, "profile_path": "/vLlS5rNEiEPOSuZaxAIex8Y53K6.jpg", "order": 11}, {"name": "Justin Monjo", "character": "Taxi Driver", "id": 152463, "credit_id": "52fe4363c3a36847f8050bbb", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Nicholas Bell", "character": "Mr. Rain", "id": 15340, "credit_id": "52fe4363c3a36847f8050bbf", "cast_id": 30, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 13}, {"name": "Satya Gumbert", "character": "Mr. Sleep", "id": 1121516, "credit_id": "52fe4363c3a36847f8050bc3", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050b2d", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 7.1, "runtime": 100}, "2667": {"poster_path": "/tza7aJw3kpybgs4ztwaBsJ0jC8Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 248000000, "overview": "In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.", "video": false, "id": 2667, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "The Blair Witch Project", "tagline": "The scariest movie of all time is a true story.", "vote_count": 192, "homepage": "http://www.blairwitch.com/", "belongs_to_collection": {"backdrop_path": "/e5GwLq0zBer3SuSJZodcNROnT6Z.jpg", "poster_path": "/qDQuKJZYLHrs1Ej64tYYFooFxc1.jpg", "id": 64750, "name": "Blair Witch Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0185937", "adult": false, "backdrop_path": "/9HYKoCCQTQC8b769rSTQKM8b75A.jpg", "production_companies": [{"name": "Haxan Films", "id": 15160}, {"name": "Artisan Entertainment", "id": 2188}], "release_date": "1999-01-25", "popularity": 0.726971879969302, "original_title": "The Blair Witch Project", "budget": 25000, "cast": [{"name": "Heather Donahue", "character": "Heather Donahue", "id": 26851, "credit_id": "52fe4364c3a36847f8050c0b", "cast_id": 5, "profile_path": "/k9U6agK7Vfl5X2cOSIt9LQatyNA.jpg", "order": 0}, {"name": "Joshua Leonard", "character": "Joshua 'Josh' Leonard", "id": 26852, "credit_id": "52fe4364c3a36847f8050c0f", "cast_id": 6, "profile_path": "/61n2FqQ4k1VbN2hM66zvr8fc2Tp.jpg", "order": 1}, {"name": "Michael C. Williams", "character": "Michael 'Mike' Williams", "id": 26853, "credit_id": "52fe4364c3a36847f8050c13", "cast_id": 7, "profile_path": "/fMyq5fYpBBiry87DpHSDtp8a51D.jpg", "order": 2}, {"name": "Bob Griffith", "character": "Short Fisherman", "id": 81061, "credit_id": "52fe4364c3a36847f8050c2f", "cast_id": 12, "profile_path": null, "order": 3}, {"name": "Jim King", "character": "Interviewee", "id": 81062, "credit_id": "52fe4364c3a36847f8050c33", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Sandra S\u00e1nchez", "character": "Waitress (as Sandra Sanchez)", "id": 81063, "credit_id": "52fe4364c3a36847f8050c37", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Ed Swanson", "character": "Fisherman With Glasses", "id": 81064, "credit_id": "52fe4364c3a36847f8050c3b", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Patricia DeCou", "character": "Mary Brown", "id": 81065, "credit_id": "52fe4364c3a36847f8050c3f", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mark Mason", "character": "Man in Yellow Hat", "id": 81066, "credit_id": "52fe4364c3a36847f8050c43", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Jackie Hallex", "character": "Interviewee with Child", "id": 81067, "credit_id": "52fe4364c3a36847f8050c47", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "Daniel Myrick", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050c01", "profile_path": "/aLSbwsdEhiae9Vb4vmo6c1RVkb.jpg", "id": 26849}, {"name": "Eduardo S\u00e1nchez", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050c07", "profile_path": "/3ejhF82WeB3Au5z0a4ZbpXWd5QU.jpg", "id": 26850}], "vote_average": 6.1, "runtime": 81}, "2668": {"poster_path": "/yaX0WQstEi2akQXffoJUxyOsZkj.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 206071502, "overview": "New York detective Ichabod Crane is sent to Sleepy Hollow to investigate a series of mysterious deaths in which the victims are found beheaded. But the locals believe the culprit to be none other than the ghost of the legendary Headless Horseman.", "video": false, "id": 2668, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sleepy Hollow", "tagline": "Heads will roll.", "vote_count": 417, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0162661", "adult": false, "backdrop_path": "/d7yZz1SmFNLSbZGilW2wAd9gcBd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mandalay Pictures", "id": 551}, {"name": "American Zoetrope", "id": 70}, {"name": "Tim Burton Productions", "id": 8601}, {"name": "Karol Film Productions", "id": 23310}], "release_date": "1999-11-18", "popularity": 1.09871864914851, "original_title": "Sleepy Hollow", "budget": 65000000, "cast": [{"name": "Johnny Depp", "character": "Ichabod Crane", "id": 85, "credit_id": "52fe4364c3a36847f8050ca1", "cast_id": 1, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Ian McDiarmid", "character": "Dr. Lancaster", "id": 27762, "credit_id": "52fe4364c3a36847f8050cd5", "cast_id": 13, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 1}, {"name": "Casper Van Dien", "character": "Brom Van Brunt", "id": 27763, "credit_id": "52fe4364c3a36847f8050cd9", "cast_id": 14, "profile_path": "/ktJIgsilxxQeOvA9I789veHnDnt.jpg", "order": 2}, {"name": "Michael Gough", "character": "Notar Hardenbrook", "id": 3796, "credit_id": "52fe4364c3a36847f8050cdd", "cast_id": 15, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 3}, {"name": "Christopher Walken", "character": "Hessian Horseman", "id": 4690, "credit_id": "52fe4364c3a36847f8050ce1", "cast_id": 16, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 4}, {"name": "Lisa Marie", "character": "Lady Crane", "id": 4452, "credit_id": "52fe4364c3a36847f8050ce5", "cast_id": 17, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 5}, {"name": "Steven Waddington", "character": "Kilian", "id": 27764, "credit_id": "52fe4364c3a36847f8050ce9", "cast_id": 18, "profile_path": "/wFZoh6mW51RK0kHs64OPndEa19q.jpg", "order": 6}, {"name": "Christopher Lee", "character": "Burgomaster", "id": 113, "credit_id": "52fe4364c3a36847f8050ced", "cast_id": 19, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 7}, {"name": "Miranda Richardson", "character": "Crone", "id": 8436, "credit_id": "52fe4364c3a36847f8050cf1", "cast_id": 20, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 8}, {"name": "Michael Gambon", "character": "Baltus Van Tassel", "id": 5658, "credit_id": "52fe4364c3a36847f8050cf5", "cast_id": 21, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 9}, {"name": "Jeffrey Jones", "character": "Reverend Steenwyck", "id": 4004, "credit_id": "52fe4364c3a36847f8050cf9", "cast_id": 22, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 10}, {"name": "Richard Griffiths", "character": "B\u00fcrgermeister Phillipse", "id": 10983, "credit_id": "52fe4364c3a36847f8050cfd", "cast_id": 23, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 11}, {"name": "Christina Ricci", "character": "Katrina Van Tassel", "id": 6886, "credit_id": "52fe4364c3a36847f8050d01", "cast_id": 24, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 12}, {"name": "Martin Landau", "character": "Peter Van Garrett", "id": 2641, "credit_id": "52fe4364c3a36847f8050d05", "cast_id": 25, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 13}, {"name": "Marc Pickering", "character": "Young Masbath", "id": 73528, "credit_id": "52fe4364c3a36847f8050d33", "cast_id": 34, "profile_path": "/3xOapB4eNc5QU1Oo0NcBDX8Jolh.jpg", "order": 14}, {"name": "Claire Skinner", "character": "Beth Killian", "id": 42641, "credit_id": "52fe4364c3a36847f8050d37", "cast_id": 35, "profile_path": "/eWQfFgp4w7dQAW7r0GxyesfrLcN.jpg", "order": 15}, {"name": "Alun Armstrong", "character": "High Constable", "id": 2629, "credit_id": "52fe4364c3a36847f8050d3b", "cast_id": 36, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 16}, {"name": "Jessica Oyelowo", "character": "Sarah", "id": 208507, "credit_id": "52fe4364c3a36847f8050d3f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Mark Spalding", "character": "Jonathan Masbath", "id": 176228, "credit_id": "52fe4364c3a36847f8050d43", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Peter Guinness", "character": "Lord Crane", "id": 27172, "credit_id": "52fe4364c3a36847f8050d47", "cast_id": 39, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 19}, {"name": "Tony Maudsley", "character": "Van Ripper", "id": 79856, "credit_id": "52fe4364c3a36847f8050d4b", "cast_id": 40, "profile_path": "/7VjhAftH1YBVEm3GRznNiX0Q3Pu.jpg", "order": 20}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050ca7", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.7, "runtime": 105}, "2670": {"poster_path": "/paW0Tc8qNsddCuMJ9M1WnNgOvy1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A series of murders prompts Mike Hanlon to suspect that the supernatural menace that he and a group of friends battled as children has returned. He begins to call his friends to remind them of the oath they swore: if It returned again, they would come back to Derry to do battle again.", "video": false, "id": 2670, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Stephen King's It", "tagline": "From the King of terror, a chilling new dimension in horror.", "vote_count": 133, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099864", "adult": false, "backdrop_path": "/gQ23EIbgY1OWGzRond6BLOg6U9E.jpg", "production_companies": [{"name": "Lorimar Television", "id": 1193}], "release_date": "1990-11-18", "popularity": 0.502994276560237, "original_title": "Stephen King's It", "budget": 0, "cast": [{"name": "Tim Curry", "character": "Pennywise / Robert Gray", "id": 13472, "credit_id": "52fe4364c3a36847f8050ef9", "cast_id": 20, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 0}, {"name": "Annette O'Toole", "character": "Beverly Marsh Rogan", "id": 1734, "credit_id": "52fe4364c3a36847f8050ed9", "cast_id": 11, "profile_path": "/hFmg2LVQD0w0A9uDNu5na9pQamV.jpg", "order": 1}, {"name": "Harry Anderson", "character": "Richard Tozier", "id": 27769, "credit_id": "52fe4364c3a36847f8050ec5", "cast_id": 6, "profile_path": "/gTWCVCdyw2GNbBz6ppzoneoh8fy.jpg", "order": 2}, {"name": "Seth Green", "character": "Richard Tozier - Age 12", "id": 13922, "credit_id": "52fe4364c3a36847f8050ec9", "cast_id": 7, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 3}, {"name": "Dennis Christopher", "character": "Eddie Kaspbrak", "id": 27770, "credit_id": "52fe4364c3a36847f8050ecd", "cast_id": 8, "profile_path": "/sNFwlPHBAVn2fQIMVBTXMfx5E69.jpg", "order": 4}, {"name": "Adam Faraizl", "character": "Eddie Kaspbrak - Age 12", "id": 27768, "credit_id": "52fe4364c3a36847f8050ec1", "cast_id": 5, "profile_path": "/xZ6FvVFQUUHFRyJVR60PVDVePC1.jpg", "order": 5}, {"name": "Brandon Crane", "character": "Benjamin Hascom - Age 12", "id": 27774, "credit_id": "52fe4364c3a36847f8050eed", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Richard Thomas", "character": "William Denbrough", "id": 19576, "credit_id": "52fe4364c3a36847f8050ee5", "cast_id": 14, "profile_path": "/6ifcrt9f8rkdp2VP6wmvHhJ9Z9V.jpg", "order": 7}, {"name": "Olivia Hussey", "character": "Audra Phillips Denbrough", "id": 24695, "credit_id": "52fe4364c3a36847f8050ed1", "cast_id": 9, "profile_path": "/zYa1KWgDIZ841HVBH3Az4V17ytA.jpg", "order": 8}, {"name": "Richard Masur", "character": "Stanley Uris", "id": 15416, "credit_id": "52fe4364c3a36847f8050ed5", "cast_id": 10, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 9}, {"name": "Tim Reid", "character": "Michael Hanlon", "id": 27771, "credit_id": "52fe4364c3a36847f8050edd", "cast_id": 12, "profile_path": "/Aeo6asp9LjO8X0WHx7OJQbP83hR.jpg", "order": 10}, {"name": "John Ritter", "character": "Benjamin Hascom", "id": 27772, "credit_id": "52fe4364c3a36847f8050ee1", "cast_id": 13, "profile_path": "/oM4iv6O97gK7JFiNkdjEBeuN5Q4.jpg", "order": 11}, {"name": "Jonathan Brandis", "character": "William Denbrough - Age 12", "id": 27773, "credit_id": "52fe4364c3a36847f8050ee9", "cast_id": 16, "profile_path": "/dWKS1zkrHt1mtaTuAjQNr6nNnlb.jpg", "order": 12}, {"name": "Chelan Simmons", "character": "Laurie Ann Winterbarger", "id": 27775, "credit_id": "52fe4364c3a36847f8050ef1", "cast_id": 18, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 13}, {"name": "William B. Davis", "character": "Mr. Gedreau", "id": 12643, "credit_id": "52fe4364c3a36847f8050ef5", "cast_id": 19, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 14}], "directors": [{"name": "Tommy Lee Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050eb1", "profile_path": null, "id": 11777}], "vote_average": 6.7, "runtime": 192}, "10865": {"poster_path": "/pJx5AMkZL5BzmkQbf6x7X7Oj9Hf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186053725, "overview": "The world's most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea.", "video": false, "id": 10865, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Atlantis: The Lost Empire", "tagline": "Atlantis is waiting...", "vote_count": 184, "homepage": "http://www.disney.com/atlantis", "belongs_to_collection": {"backdrop_path": "/vJOfi2m9yaQGu7LPRcBL44KDU7r.jpg", "poster_path": "/l9wffaf3zMw2fOYDnMrU479IeBv.jpg", "id": 100965, "name": "Atlantis Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0230011", "adult": false, "backdrop_path": "/6tDYT0R7uzVroxR7W2nppuTv2Ha.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Toon City", "id": 12203}], "release_date": "2001-06-15", "popularity": 1.74357087489534, "original_title": "Atlantis: The Lost Empire", "budget": 120000000, "cast": [{"name": "Michael J. Fox", "character": "Milo James Thatch", "id": 521, "credit_id": "52fe43c69251416c7501d9db", "cast_id": 1, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Corey Burton", "character": "Gaetan 'The Mole' Moliere", "id": 35219, "credit_id": "52fe43c69251416c7501d9df", "cast_id": 2, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 1}, {"name": "Claudia Christian", "character": "Helga Katrina Sinclair", "id": 52300, "credit_id": "52fe43c69251416c7501d9e3", "cast_id": 3, "profile_path": "/qETXhDBqmQaB1DJZGqlWQ1kYAJb.jpg", "order": 2}, {"name": "James Garner", "character": "Commander Lyle Tiberius Rourke", "id": 16896, "credit_id": "52fe43c69251416c7501d9e7", "cast_id": 4, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 3}, {"name": "John Mahoney", "character": "Preston B. Whitmore", "id": 4251, "credit_id": "52fe43c69251416c7501da09", "cast_id": 10, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 4}, {"name": "Phil Morris", "character": "Dr. Joshua Strongbear Sweet", "id": 56853, "credit_id": "52fe43c69251416c7501da0d", "cast_id": 11, "profile_path": "/e8FKG1DoVsUibW8cI4gvRluwPav.jpg", "order": 5}, {"name": "Leonard Nimoy", "character": "King Kashekim Nedakh", "id": 1749, "credit_id": "52fe43c69251416c7501da11", "cast_id": 12, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 6}, {"name": "Don Novello", "character": "Vincenzo 'Vinny' Santorini", "id": 161860, "credit_id": "52fe43c69251416c7501da15", "cast_id": 13, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 7}, {"name": "Jacqueline Obradors", "character": "Audrey Rocio Ramirez", "id": 49818, "credit_id": "52fe43c69251416c7501da19", "cast_id": 14, "profile_path": "/p7QydGjTdM6sya62gSvMNMEqMT4.jpg", "order": 8}, {"name": "Florence Stanley", "character": "Wilhelmina Bertha Packard", "id": 84323, "credit_id": "52fe43c69251416c7501da1d", "cast_id": 15, "profile_path": "/1roD2CmG6K1lBdVQXDwvzGFnZBv.jpg", "order": 9}, {"name": "David Ogden Stiers", "character": "Fenton Q. Harcourt", "id": 28010, "credit_id": "52fe43c69251416c7501da21", "cast_id": 16, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 10}, {"name": "Natalie Strom", "character": "Young Kida", "id": 182258, "credit_id": "52fe43c69251416c7501da25", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Cree Summer", "character": "Princess 'Kida' Kidagakash", "id": 34985, "credit_id": "52fe43c69251416c7501da29", "cast_id": 18, "profile_path": "/f2ezohBr8bBuLl85YTV2UNOa5j5.jpg", "order": 12}, {"name": "Jim Varney", "character": "Jebidiah Allardyce 'Cookie' Farnsworth", "id": 12899, "credit_id": "52fe43c69251416c7501da2d", "cast_id": 19, "profile_path": "/eIo2jVVXYgjDtaHoF19Ll9vtW7h.jpg", "order": 13}, {"name": "Jim Cummings", "character": "Additional Voices", "id": 12077, "credit_id": "52fe43c69251416c7501da31", "cast_id": 20, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 14}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe43c69251416c7501d9ed", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}, {"name": "Kirk Wise", "department": "Directing", "job": "Director", "credit_id": "52fe43c69251416c7501d9f9", "profile_path": "/aoh7wnHk3F1HdOUBLI5Yfwd8rnN.jpg", "id": 62048}], "vote_average": 6.3, "runtime": 95}, "10866": {"poster_path": "/q8y2T2LvJV0mvia1RA9pS1K33GR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21973182, "overview": "Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.", "video": false, "id": 10866, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Joy Ride", "tagline": "It was just a joke, just for fun.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/ln6CZn4pEBOea3757FaMukhgp25.jpg", "id": 166378, "name": "Joy Ride Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0206314", "adult": false, "backdrop_path": "/wr9KMaCGGquZQqmjN8mRqOR2FeM.jpg", "production_companies": [{"name": "Bad Robot", "id": 11461}, {"name": "Regency Enterprises", "id": 508}, {"name": "LivePlanet", "id": 7161}, {"name": "New Regency Productions", "id": 490}], "release_date": "2001-10-05", "popularity": 0.53961332522518, "original_title": "Joy Ride", "budget": 23000000, "cast": [{"name": "Steve Zahn", "character": "Fuller Thomas", "id": 18324, "credit_id": "52fe43c69251416c7501da8d", "cast_id": 1, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 0}, {"name": "Paul Walker", "character": "Lewis Thomas", "id": 8167, "credit_id": "52fe43c69251416c7501da91", "cast_id": 2, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 1}, {"name": "Leelee Sobieski", "character": "Venna", "id": 22290, "credit_id": "52fe43c69251416c7501da95", "cast_id": 3, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 2}, {"name": "Jessica Bowman", "character": "Charlotte", "id": 67538, "credit_id": "52fe43c69251416c7501da99", "cast_id": 4, "profile_path": "/bupDSHUwDCPLpL0eRytkLHb04Mz.jpg", "order": 3}, {"name": "Stuart Stone", "character": "Danny, Lewis' Roommate", "id": 156011, "credit_id": "52fe43c69251416c7501dabb", "cast_id": 13, "profile_path": "/xLAtmUL0GtXMnwCrendFcXSu1Eq.jpg", "order": 4}, {"name": "Basil Wallace", "character": "Car Salesman", "id": 16754, "credit_id": "52fe43c69251416c7501dabf", "cast_id": 14, "profile_path": "/7PI3AEAAVnnXIjFMQ7rHUDnIBOF.jpg", "order": 5}, {"name": "Brian Leckner", "character": "Officer Keeney", "id": 154838, "credit_id": "52fe43c69251416c7501dac3", "cast_id": 15, "profile_path": "/beXhkO2heP1HycpM0D8SE3BenBn.jpg", "order": 6}, {"name": "Mary Wickliffe", "character": "Salt Lake City Police Desk Clerk", "id": 154996, "credit_id": "52fe43c69251416c7501dac7", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "McKenzie Satterthwaite", "character": "Assistant Salt Lake City Police Desk Clerk", "id": 552465, "credit_id": "52fe43c69251416c7501dacb", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Dell Yount", "character": "Gas Station Mechanic", "id": 149526, "credit_id": "52fe43c69251416c7501dacf", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Kenneth White", "character": "Ronald Ellinghouse", "id": 12548, "credit_id": "52fe43c69251416c7501dad3", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Luis Cort\u00e9s", "character": "Night Manager", "id": 552466, "credit_id": "52fe43c69251416c7501dad7", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Michael McCleery", "character": "Officer Akins", "id": 552467, "credit_id": "52fe43c69251416c7501dadb", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Jim Beaver", "character": "Sheriff Ritter", "id": 29862, "credit_id": "52fe43c69251416c7501dadf", "cast_id": 22, "profile_path": "/eyHu6p58acumBmJhRDrueBa2o9X.jpg", "order": 13}, {"name": "Rachel Singer", "character": "Gas Station Manager", "id": 7473, "credit_id": "52fe43c69251416c7501dae3", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Satch Huizenga", "character": "Ice Truck Man", "id": 552468, "credit_id": "52fe43c69251416c7501dae7", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Terry Leonard", "character": "Bartender", "id": 19567, "credit_id": "52fe43c69251416c7501daeb", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Gwenda Deacon", "character": "Truck Stop Waitress", "id": 552469, "credit_id": "52fe43c69251416c7501daef", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Robert Winley", "character": "Truck Stop Manager", "id": 87404, "credit_id": "52fe43c69251416c7501daf3", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Ali Gage", "character": "Waitress", "id": 552470, "credit_id": "52fe43c69251416c7501daf7", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Jack Moore", "character": "Hotwire Consultant", "id": 117564, "credit_id": "52fe43c69251416c7501dafb", "cast_id": 30, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 20}, {"name": "Hugh Dane", "character": "Man at Door", "id": 154195, "credit_id": "52fe43c69251416c7501daff", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Lee Stepp", "character": "Traveling Salesman", "id": 552471, "credit_id": "52fe43c69251416c7501db03", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Jay Hernandez", "character": "Marine", "id": 19487, "credit_id": "52fe43c69251416c7501db07", "cast_id": 33, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 23}, {"name": "Huey Redwine", "character": "Policeman #1", "id": 552472, "credit_id": "52fe43c69251416c7501db0b", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "John Maynard", "character": "Policeman #2", "id": 99231, "credit_id": "52fe43c69251416c7501db0f", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Peter Weireter", "character": "Policeman #3", "id": 552473, "credit_id": "52fe43c69251416c7501db13", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "James MacDonald", "character": "Local in Nebraska Bar", "id": 1188456, "credit_id": "52fe43c69251416c7501db17", "cast_id": 37, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 27}], "directors": [{"name": "John Dahl", "department": "Directing", "job": "Director", "credit_id": "52fe43c69251416c7501da9f", "profile_path": "/klMxcB64Tu0sWCn3YDTMcGWPArQ.jpg", "id": 21053}], "vote_average": 6.5, "runtime": 97}, "10867": {"poster_path": "/hW1D5Zn3rWJA7pynier0osbN0Gz.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "On the day in 1940 that Italy enters the war, two things happen to the 12-year-old Renato: he gets his first bike, and he gets his first look at Mal\u00e8na. She is a beautiful, silent outsider who's moved to this Sicilian town to be with her husband, Nico. He promptly goes off to war, leaving her to the lustful eyes of the men and the sharp tongues of the women. During the next few years, as Renato grows toward manhood, he watches Mal\u00e8na suffer and prove her mettle. He sees her loneliness, then grief when Nico is reported dead, the effects of slander on her relationship with her father, her poverty and search for work, and final humiliations. Will Renato learn courage from Mal\u00e8na and stand up for her?", "video": false, "id": 10867, "genres": [{"id": 18, "name": "Drama"}], "title": "Malena", "tagline": "She was too young to be a widow, and too beautiful to be alone. Every man wanted to have her. One boy risked everything to protect her", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0213847", "adult": false, "backdrop_path": "/1pKWd4LfusFfKZ2YchFLYcsANIE.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Medusa Produzione", "id": 1702}], "release_date": "2000-10-27", "popularity": 1.08710361811214, "original_title": "Mal\u00e8na", "budget": 0, "cast": [{"name": "Monica Bellucci", "character": "Malena Scordia", "id": 28782, "credit_id": "52fe43c69251416c7501dba3", "cast_id": 1, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 0}, {"name": "Giuseppe Sulfaro", "character": "Renato Amoroso", "id": 67612, "credit_id": "52fe43c69251416c7501dba7", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Luciano Federico", "character": "Renato's Father", "id": 67613, "credit_id": "52fe43c69251416c7501dbab", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Matilde Piana", "character": "Renato's Mother", "id": 67614, "credit_id": "52fe43c79251416c7501dbaf", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Pietro Notarianni", "character": "Professor Bonsignore", "id": 15134, "credit_id": "52fe43c79251416c7501dbd7", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Gaetano Aronica", "character": "Nino Scordia", "id": 147156, "credit_id": "52fe43c79251416c7501dbdb", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Gilberto Idonea", "character": "Avvocato Centorbi", "id": 120657, "credit_id": "52fe43c79251416c7501dbdf", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Angelo Pellegrino", "character": "Segretario politico", "id": 232886, "credit_id": "52fe43c79251416c7501dbe3", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Gabriella Di Luzio", "character": "Mantenuta del Barone", "id": 553177, "credit_id": "52fe43c79251416c7501dbe7", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Pippo Provvidenti", "character": "Dott. Cusimano", "id": 553178, "credit_id": "52fe43c79251416c7501dbeb", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Maria Terranova", "character": "Moglie Dott. Cusimano", "id": 553179, "credit_id": "52fe43c79251416c7501dbef", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Marcello Catalano", "character": "Lieutenant Cadel", "id": 553180, "credit_id": "52fe43c79251416c7501dbf3", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Elisa Morucci", "character": "Lupetta", "id": 553181, "credit_id": "52fe43c79251416c7501dbf7", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Domenico Gennaro", "character": "Farmacista", "id": 553182, "credit_id": "52fe43c79251416c7501dbfb", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Vitalba Andrea", "character": "Moglie farmacista", "id": 7545, "credit_id": "52fe43c79251416c7501dbff", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Giuseppe Pattavina", "character": "Pretore", "id": 553183, "credit_id": "52fe43c79251416c7501dc03", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Franco Catalano", "character": "Negoziante", "id": 553184, "credit_id": "52fe43c79251416c7501dc07", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Daniele Arena", "character": "Agostino", "id": 553185, "credit_id": "52fe43c79251416c7501dc0b", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Giovanni Litrico", "character": "Pin\u00e8", "id": 553186, "credit_id": "52fe43c79251416c7501dc0f", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Gianluca Guarrera", "character": "Nicola", "id": 553187, "credit_id": "52fe43c79251416c7501dc13", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Michel Daniel Bramanti", "character": "Sas\u00e0", "id": 553188, "credit_id": "52fe43c79251416c7501dc17", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Giuseppe Zizzo", "character": "Tanino", "id": 553189, "credit_id": "52fe43c79251416c7501dc1b", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Tot\u00f2 Borgese", "character": "Milite fascista", "id": 553190, "credit_id": "52fe43c79251416c7501dc1f", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Emanuele Gullotto", "character": "Negoziante dischi", "id": 553191, "credit_id": "52fe43c79251416c7501dc23", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Aurora Quattrocchi", "character": "Tenutaria bordello", "id": 20589, "credit_id": "52fe43c79251416c7501dc27", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Claudia Muzi", "character": "1a Prostituta", "id": 553192, "credit_id": "52fe43c79251416c7501dc2b", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Ornella Giusto", "character": "2a Prostituta", "id": 35107, "credit_id": "52fe43c79251416c7501dc2f", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Conchita Puglisi", "character": "3a Prostituta", "id": 553193, "credit_id": "52fe43c79251416c7501dc33", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Noemi Giarratana", "character": "Sorella Renato", "id": 553194, "credit_id": "52fe43c79251416c7501dc37", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Paola Pace", "character": "1a Donna linciaggio", "id": 553195, "credit_id": "52fe43c79251416c7501dc3b", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "Lucia Sardo", "character": "2a Donna linciaggio", "id": 129571, "credit_id": "52fe43c79251416c7501dc3f", "cast_id": 37, "profile_path": null, "order": 30}, {"name": "Alessandro Cremona", "character": "", "id": 1381616, "credit_id": "5517b4099251416f0a0031eb", "cast_id": 38, "profile_path": null, "order": 31}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe43c79251416c7501dbb5", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.3, "runtime": 109}, "51828": {"poster_path": "/xzOz17yC3K6SZWtWylXimcHUqpD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59389433, "overview": "A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.", "video": false, "id": 51828, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "One Day", "tagline": "Twenty years. Two people.", "vote_count": 244, "homepage": "http://www.focusfeatures.com/one_day", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1563738", "adult": false, "backdrop_path": "/e3rK3o87k8UjR6Sq2cKWks30Jfa.jpg", "production_companies": [{"name": "Film 4", "id": 2335}, {"name": "Color Force", "id": 5420}], "release_date": "2011-03-02", "popularity": 0.871774907907548, "original_title": "One Day", "budget": 15000000, "cast": [{"name": "Anne Hathaway", "character": "Emma", "id": 1813, "credit_id": "52fe4806c3a36847f815497b", "cast_id": 2, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Dexter", "id": 38941, "credit_id": "52fe4806c3a36847f815497f", "cast_id": 3, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Patricia Clarkson", "character": "Alison Mayhew", "id": 1276, "credit_id": "52fe4806c3a36847f8154983", "cast_id": 6, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 2}, {"name": "Romola Garai", "character": "Sylvie Cope", "id": 6979, "credit_id": "52fe4806c3a36847f8154987", "cast_id": 7, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 3}, {"name": "Heida Reed", "character": "Ingrid", "id": 1035194, "credit_id": "52fe4806c3a36847f8154991", "cast_id": 9, "profile_path": "/o1VSfC7KaFlK6yQUL3fY2xcM9AX.jpg", "order": 4}, {"name": "Tom Mison", "character": "Callum", "id": 75073, "credit_id": "54fe350cc3a36810a40002ed", "cast_id": 10, "profile_path": "/j7Hs9RStUNrwedqILRMcolI3QZz.jpg", "order": 5}, {"name": "Jodie Whittaker", "character": "Tilly", "id": 66431, "credit_id": "54fe351c9251417893000010", "cast_id": 11, "profile_path": "/1uCyLazOjo1mepIgagMQFTcfPOX.jpg", "order": 6}, {"name": "Rafe Spall", "character": "Ian", "id": 28847, "credit_id": "54fe352fc3a368155f00001a", "cast_id": 12, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 7}, {"name": "Jos\u00e9phine de La Baume", "character": "Marie", "id": 512079, "credit_id": "54fe35429251410e4b0002ec", "cast_id": 13, "profile_path": "/jVn9KIkjlMIve64eZSFPRk4uoVW.jpg", "order": 8}, {"name": "Ken Stott", "character": "Stephen", "id": 25136, "credit_id": "54fe3556c3a36810980002b2", "cast_id": 14, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 9}, {"name": "Amanda Fairbank-Hynes", "character": "Tara", "id": 235837, "credit_id": "54fe356c9251410e540002ca", "cast_id": 15, "profile_path": "/127xlkSaLK92NaYdStJQxWkqR1I.jpg", "order": 10}, {"name": "Georgia King", "character": "Suki", "id": 73462, "credit_id": "54fe357ec3a36810a4000306", "cast_id": 16, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 11}, {"name": "Matt Berry", "character": "Aaron", "id": 119904, "credit_id": "54fe3599c3a36810930002e4", "cast_id": 17, "profile_path": "/xlPqH1tKaBUZVTZpwH7E3EkqbUR.jpg", "order": 12}], "directors": [{"name": "Lone Scherfig", "department": "Directing", "job": "Director", "credit_id": "52fe4806c3a36847f8154977", "profile_path": "/zJDZjeBfJxVUslaOU2lI9zfsU3F.jpg", "id": 1176}], "vote_average": 6.8, "runtime": 107}, "18911": {"poster_path": "/vQ8MWxp81xcmaVsk76mwEVTzVt2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "West Midlands based filmmaker Stephen Reynolds\u2019 latest 60 minute feature, Tomb Raider Ascension. Shot in 7 days with a budget of \u00a310,000, Stephen directs Anna Tyrie in his own spin on the Tomb Raider franchise, taking the story back to the beginning of Lara Croft\u2019s journey and showing her rise to become \u2018Tomb Raider\u2019", "video": false, "id": 18911, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Tomb Raider: Ascension", "tagline": "Everything has a beginning.", "vote_count": 214, "homepage": "http://www.tombraiderascension.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1629741", "adult": false, "backdrop_path": "/uCuKMiI7aVYhNQu7SuMhWae5z0i.jpg", "production_companies": [], "release_date": "2008-01-01", "popularity": 0.0122338785314616, "original_title": "Tomb Raider: Ascension", "budget": 20000, "cast": [{"name": "Anna Tyrie", "character": "Lara Croft", "id": 83855, "credit_id": "52fe47aa9251416c750a1547", "cast_id": 1, "profile_path": "/cPlRM7gtuNWpeiysLBMt1nd665w.jpg", "order": 0}, {"name": "Philip Goldacre", "character": "Lord Richard Croft, Lara's Father", "id": 108494, "credit_id": "52fe47aa9251416c750a1561", "cast_id": 10, "profile_path": "/8AwVcdhVpGl4I73U8Q4jPE437ZJ.jpg", "order": 1}, {"name": "Peter Wear", "character": "Lord Errol Croft, Lara's Uncle", "id": 108489, "credit_id": "52fe47aa9251416c750a1551", "cast_id": 5, "profile_path": "/czxF1RYbCygXLpgK73liU3hkKUv.jpg", "order": 2}, {"name": "Ava Hunt", "character": "Amelia Croft, Lara's Mother", "id": 108490, "credit_id": "52fe47aa9251416c750a1555", "cast_id": 6, "profile_path": "/gpCPtafDhYl53lzYiMH3EMT9b30.jpg", "order": 3}, {"name": "Hugh Hemmings", "character": "Winston, the Buttler", "id": 108491, "credit_id": "52fe47aa9251416c750a1559", "cast_id": 7, "profile_path": "/hq0yYJOtsA4MYYIIkLgsyszlqFN.jpg", "order": 4}, {"name": "Jamie Duncombe", "character": "Jax, Lara's personal trainer", "id": 108492, "credit_id": "52fe47aa9251416c750a155d", "cast_id": 8, "profile_path": "/fmXxP0v6OUhs2T231tJZqOUZXE.jpg", "order": 5}, {"name": "Gabriella Higginbottom", "character": "Young Lara", "id": 1280138, "credit_id": "52fe47aa9251416c750a1571", "cast_id": 13, "profile_path": "/cD17PrNRgsjad3Qje6f7qHeet0M.jpg", "order": 6}, {"name": "Ben Goodridge", "character": "Doctor Crowley", "id": 1280139, "credit_id": "52fe47aa9251416c750a1575", "cast_id": 14, "profile_path": "/zzvcpyn8IlSzErosKh0yfVUgjpZ.jpg", "order": 7}], "directors": [{"name": "Stephen Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe47aa9251416c750a1567", "profile_path": null, "id": 108486}], "vote_average": 5.3, "runtime": 60}, "106747": {"poster_path": "/ltblMRM8clWKsjC2qQITuRN40Yr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15008161, "overview": "Ex-Federale agent Machete is recruited by the President of the United States for a mission which would be impossible for any mortal man \u2013 he must take down a madman revolutionary and an eccentric billionaire arms dealer who has hatched a plan to spread war and anarchy across the planet.", "video": false, "id": 106747, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Machete Kills", "tagline": "Trained to kill. Left for dead. Back for more.", "vote_count": 199, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vURYjEnOd8if3juhZh6HRcTJs7T.jpg", "poster_path": "/7kN9MY7htPG0sI598VJK2pB6zEs.jpg", "id": 210006, "name": "Machete Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2002718", "adult": false, "backdrop_path": "/5bxyCKV3AHlzwmvtqXkcr7Li56s.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Overnight Films", "id": 10808}, {"name": "AR Films", "id": 11005}, {"name": "Aldamisa Entertainment", "id": 11006}, {"name": "Demarest Films", "id": 13241}, {"name": "1821 Pictures", "id": 14358}, {"name": "Quick Draw Productions", "id": 25608}], "release_date": "2013-10-11", "popularity": 1.16043095259467, "original_title": "Machete Kills", "budget": 12000000, "cast": [{"name": "Danny Trejo", "character": "Machete Cortez", "id": 11160, "credit_id": "52fe4a70c3a36847f81cde77", "cast_id": 11, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 0}, {"name": "Mel Gibson", "character": "Luther Voz", "id": 2461, "credit_id": "52fe4a70c3a36847f81cde6f", "cast_id": 9, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "Amber Heard", "character": "Miss San Antonio", "id": 55085, "credit_id": "52fe4a70c3a36847f81cde8f", "cast_id": 18, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 2}, {"name": "Michelle Rodriguez", "character": "Luz", "id": 17647, "credit_id": "52fe4a70c3a36847f81cde73", "cast_id": 10, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 3}, {"name": "Sof\u00eda Vergara", "character": "Desdemona", "id": 63522, "credit_id": "52fe4a70c3a36847f81cde7f", "cast_id": 13, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 4}, {"name": "Jessica Alba", "character": "Sartana", "id": 56731, "credit_id": "52fe4a70c3a36847f81cde6b", "cast_id": 8, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 5}, {"name": "Tom Savini", "character": "Osiris Amanpour", "id": 11161, "credit_id": "52fe4a70c3a36847f81cde7b", "cast_id": 12, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 6}, {"name": "Lady Gaga", "character": "La Camaleon", "id": 237405, "credit_id": "52fe4a70c3a36847f81cde83", "cast_id": 14, "profile_path": "/uPlzD1ARsApOsU20eeWradHpWjr.jpg", "order": 7}, {"name": "Vanessa Hudgens", "character": "Cereza", "id": 67599, "credit_id": "52fe4a70c3a36847f81cde87", "cast_id": 15, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 8}, {"name": "Cuba Gooding Jr.", "character": "El Camaleon", "id": 9777, "credit_id": "52fe4a70c3a36847f81cde8b", "cast_id": 17, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 9}, {"name": "Demi\u00e1n Bichir", "character": "Mendez", "id": 76961, "credit_id": "52fe4a70c3a36847f81cde93", "cast_id": 19, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 10}, {"name": "Charlie Sheen", "character": "Mr. President", "id": 6952, "credit_id": "52fe4a70c3a36847f81cde97", "cast_id": 20, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 11}, {"name": "Antonio Banderas", "character": "El Camaleon", "id": 3131, "credit_id": "52fe4a70c3a36847f81cde9b", "cast_id": 21, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 12}, {"name": "Walton Goggins", "character": "El Camaleon", "id": 27740, "credit_id": "52fe4a70c3a36847f81cde9f", "cast_id": 22, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 13}, {"name": "William Sadler", "character": "Sheriff Doakes", "id": 6573, "credit_id": "52fe4a70c3a36847f81cdea3", "cast_id": 23, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 14}, {"name": "Crystal Martinez", "character": "Wife of Mendez", "id": 1265929, "credit_id": "52fe4a70c3a36847f81cdedd", "cast_id": 33, "profile_path": "/mbmgK6gcIlsaW2gEvZtY94aHbMW.jpg", "order": 15}, {"name": "Alexa PenaVega", "character": "KillJoy", "id": 57674, "credit_id": "5408df460e0a263a1e000621", "cast_id": 37, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 16}, {"name": "Billy Blair", "character": "Billy", "id": 968889, "credit_id": "54466bb0c3a3683691002420", "cast_id": 38, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 17}, {"name": "Marko Zaror", "character": "", "id": 118370, "credit_id": "5522310bc3a368333a002a90", "cast_id": 39, "profile_path": "/gg4gcPVpGYs2fYduvau2g17uZKU.jpg", "order": 18}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4a70c3a36847f81cde43", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 5.4, "runtime": 107}, "26389": {"poster_path": "/41yioNp9apJ7xtYDaSxqBfm1p5T.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52615806, "overview": "While working at the American embassy in Paris, low-level intelligence agent James Reece gets involved in espionage when he's pulled into a terrorist plot by high-ranking but uncouth American operative Charlie Wax, who's trying to stop it.", "video": false, "id": 26389, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "From Paris with Love", "tagline": "Two agents. One city. No merci.", "vote_count": 265, "homepage": "http://www.frompariswithlovefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1179034", "adult": false, "backdrop_path": "/zQSdINGXiEelKf4qfzPZAdxxwyI.jpg", "production_companies": [{"name": "TPS Star", "id": 6586}, {"name": "JTP Films", "id": 7406}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Grive Productions", "id": 6877}, {"name": "M6 Films", "id": 1115}], "release_date": "2010-02-05", "popularity": 1.07520905773998, "original_title": "From Paris with Love", "budget": 52000000, "cast": [{"name": "John Travolta", "character": "FBI agent Charlie Wax", "id": 8891, "credit_id": "52fe44ffc3a368484e042d21", "cast_id": 3, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Jonathan Rhys Meyers", "character": "James Reece / Richard Stevens", "id": 1244, "credit_id": "52fe44ffc3a368484e042d25", "cast_id": 4, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 1}, {"name": "Kasia Smutniak", "character": "Caroline", "id": 120832, "credit_id": "52fe44ffc3a368484e042d29", "cast_id": 5, "profile_path": "/ldNnr3j2i3q8VTTXoBSAvt33lY2.jpg", "order": 2}, {"name": "Richard Durden", "character": "Ambassador Bennington", "id": 120833, "credit_id": "52fe44ffc3a368484e042d2d", "cast_id": 6, "profile_path": "/jtsGAARS6sNDfHPGl4xrJdtSEb3.jpg", "order": 3}, {"name": "Amber Rose Revah", "character": "Nichole", "id": 574378, "credit_id": "52fe44ffc3a368484e042d37", "cast_id": 8, "profile_path": "/uWKJDbkZqttvc1os3UNanSmh5Aa.jpg", "order": 4}, {"name": "Bing Yin", "character": "M. Wong", "id": 1019987, "credit_id": "52fe44ffc3a368484e042d3b", "cast_id": 9, "profile_path": "/3P9z2fjxKbNPX3PabrsKq3XYOWA.jpg", "order": 5}, {"name": "Eric Godon", "character": "Foreign Minister", "id": 145299, "credit_id": "52fe44ffc3a368484e042d3f", "cast_id": 10, "profile_path": "/iKWCAMxgHIWoJ1EJG4gWKEPYxbE.jpg", "order": 6}], "directors": [{"name": "Pierre Morel", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a368484e042d17", "profile_path": "/yyhcEUYW4znC6JbNKZv2OJp1Cy0.jpg", "id": 35453}], "vote_average": 6.2, "runtime": 92}, "10882": {"poster_path": "/biXVl7xLv1sD9ucBEYzheuMYX8b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51000000, "overview": "A beautiful princess born in a faraway kingdom is destined by a terrible curse to prick her finger on the spindle of a spinning wheel and fall into a deep sleep that can only be awakened by true love's first kiss. Determined to protect her, her parents ask three fairies to raise her in hiding. But the evil Maleficent is just as determined to seal the princess's fate.", "video": false, "id": 10882, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Sleeping Beauty", "tagline": "Awaken to a World of Wonders!", "vote_count": 258, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053285", "adult": false, "backdrop_path": "/q45ooDygidJB4pPjEE2xW3sHVUt.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1959-01-29", "popularity": 1.82131799842273, "original_title": "Sleeping Beauty", "budget": 6000000, "cast": [{"name": "Mary Costa", "character": "Princess Aurora", "id": 67287, "credit_id": "52fe43c99251416c7501e207", "cast_id": 1, "profile_path": "/wj3vPSTQb1bO9KQios9QqqYaqcv.jpg", "order": 0}, {"name": "Bill Shirley", "character": "Prince Phillip", "id": 67288, "credit_id": "52fe43c99251416c7501e20b", "cast_id": 2, "profile_path": "/4PSxq5rKm6sZUktIss0ndRPv15O.jpg", "order": 1}, {"name": "Eleanor Audley", "character": "Maleficent", "id": 67289, "credit_id": "52fe43c99251416c7501e20f", "cast_id": 3, "profile_path": "/eTU6naXyRKll0dLWxN8fp2Iiqdy.jpg", "order": 2}, {"name": "Verna Felton", "character": "Flora", "id": 67290, "credit_id": "52fe43c99251416c7501e213", "cast_id": 4, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 3}, {"name": "Barbara Luddy", "character": "Merryweather", "id": 64871, "credit_id": "52fe43c99251416c7501e241", "cast_id": 12, "profile_path": "/cK7NjpqJmjaFTT52vwAq9bYH2VA.jpg", "order": 4}, {"name": "Barbara Jo Allen", "character": "Fauna", "id": 103448, "credit_id": "52fe43c99251416c7501e245", "cast_id": 13, "profile_path": "/ajxHQNS0o0JjLH0MfY1Abqrqnnx.jpg", "order": 5}, {"name": "Taylor Holmes", "character": "Stefan", "id": 11172, "credit_id": "52fe43c99251416c7501e249", "cast_id": 14, "profile_path": "/dmdGm5SHP6gJDbbANZMHTrYM4Kn.jpg", "order": 6}, {"name": "Bill Thompson", "character": "Hubert", "id": 67230, "credit_id": "52fe43c99251416c7501e24d", "cast_id": 15, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 7}, {"name": "Rosa Crosby", "character": "Queen Leah", "id": 1445661, "credit_id": "551300d2c3a36861610017f2", "cast_id": 16, "profile_path": null, "order": 8}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe43c99251416c7501e219", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}], "vote_average": 6.5, "runtime": 75}, "8273": {"poster_path": "/lcLuBjI3Hr12mGFKJvdMeZdf3AN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231449203, "overview": "With high school a distant memory, Jim and Michelle are getting married -- and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle -- prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.", "video": false, "id": 8273, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "American Wedding", "tagline": "Forever hold your piece.", "vote_count": 303, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0328828", "adult": false, "backdrop_path": "/xNbvAMx3YGcBXX9dzUIMGsbV7CR.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "LivePlanet", "id": 7161}], "release_date": "2003-07-24", "popularity": 1.02440483777879, "original_title": "American Wedding", "budget": 55000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe449ac3a36847f809f973", "cast_id": 7, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty", "id": 21595, "credit_id": "52fe449ac3a36847f809f977", "cast_id": 8, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 1}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe449ac3a36847f809f97b", "cast_id": 9, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 2}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe449ac3a36847f809f97f", "cast_id": 10, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 3}, {"name": "Thomas Ian Nicholas", "character": "Kevin Myers", "id": 21403, "credit_id": "52fe449ac3a36847f809f983", "cast_id": 11, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 4}, {"name": "January Jones", "character": "Cadence Flaherty", "id": 31717, "credit_id": "52fe449ac3a36847f809f987", "cast_id": 12, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 5}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe449ac3a36847f809f98b", "cast_id": 13, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 6}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "52fe449ac3a36847f809f98f", "cast_id": 14, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 7}, {"name": "Deborah Rush", "character": "Mary Flaherty", "id": 44830, "credit_id": "52fe449ac3a36847f809f993", "cast_id": 15, "profile_path": "/68JfXOKiUsiZ9mQAt14RRNb28tS.jpg", "order": 8}, {"name": "Fred Willard", "character": "Harold Flaherty", "id": 20753, "credit_id": "52fe449ac3a36847f809f997", "cast_id": 16, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 9}, {"name": "Angela Paton", "character": "Grandma", "id": 1537, "credit_id": "52fe449ac3a36847f809f99b", "cast_id": 17, "profile_path": "/eJZpJyEuMT4mQ8d8tbU0addZ1kD.jpg", "order": 10}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "53bc2ffac3a368663b0025a9", "cast_id": 28, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 11}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc300dc3a368661e0026c4", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "53bc3053c3a368662800260b", "cast_id": 30, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 13}], "directors": [{"name": "Jesse Dylan", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809f951", "profile_path": "/An83VcuHDbyNxOoJMj7sOnXyyex.jpg", "id": 54584}], "vote_average": 5.9, "runtime": 103}, "2698": {"poster_path": "/mtIjd19s4eOSkUm9P9iDVY35TsQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32000000, "overview": "Buffalo newsman Evan Baxter is elected to Congress with the slogan, \"Change the world.\" He lucks into a huge house in a new Virginia suburb. His Capitol office is also fantastic, but there's a catch: he's tapped by the powerful Congressman Long to co-sponsor a bill to allow development in national parks. In steps God, who appears to a disbelieving Evan and gently commands him to build an ark", "video": false, "id": 2698, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Evan Almighty", "tagline": "A comedy of biblical proportions", "vote_count": 302, "homepage": "http://www.evanalmighty.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8DWF5nzKeZvwC4Fi7iacobtMlbU.jpg", "id": 124949, "name": "Almighty Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0413099", "adult": false, "backdrop_path": "/cKVcHq9qdctpY8v9XMmqcwuG2Jn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Shady Acres Entertainment", "id": 159}, {"name": "Original Film", "id": 333}], "release_date": "2007-06-09", "popularity": 1.19816371696756, "original_title": "Evan Almighty", "budget": 140000000, "cast": [{"name": "Steve Carell", "character": "Evan Baxter", "id": 4495, "credit_id": "52fe4365c3a36847f8051479", "cast_id": 19, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Lauren Graham", "character": "Joan Baxter", "id": 16858, "credit_id": "52fe4365c3a36847f805147d", "cast_id": 20, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 1}, {"name": "John Goodman", "character": "Congressman Long", "id": 1230, "credit_id": "52fe4365c3a36847f8051481", "cast_id": 21, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Jimmy Bennett", "character": "Ryan Baxter", "id": 6860, "credit_id": "52fe4365c3a36847f8051485", "cast_id": 22, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 3}, {"name": "John Michael Higgins", "character": "Marty", "id": 8265, "credit_id": "52fe4365c3a36847f8051489", "cast_id": 23, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 4}, {"name": "Morgan Freeman", "character": "God", "id": 192, "credit_id": "52fe4365c3a36847f805148d", "cast_id": 24, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 5}, {"name": "Wanda Sykes", "character": "Rita", "id": 27102, "credit_id": "52fe4365c3a36847f8051491", "cast_id": 25, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 6}, {"name": "Graham Phillips", "character": "Jordan Baxter", "id": 27103, "credit_id": "52fe4365c3a36847f8051495", "cast_id": 26, "profile_path": "/lurz14Abqtyo1qBQJRDx34qDAye.jpg", "order": 7}, {"name": "Johnny Simmons", "character": "Dylan Baxter", "id": 27104, "credit_id": "52fe4365c3a36847f8051499", "cast_id": 27, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 8}, {"name": "Jonah Hill", "character": "Eugene", "id": 21007, "credit_id": "52fe4365c3a36847f805149d", "cast_id": 28, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 9}, {"name": "Ed Helms", "character": "Ed Carson", "id": 27105, "credit_id": "52fe4365c3a36847f80514a1", "cast_id": 29, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 10}, {"name": "Dean Norris", "character": "Officer Collins", "id": 14329, "credit_id": "52fe4365c3a36847f80514a5", "cast_id": 30, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 11}, {"name": "James Newman", "character": "Congressperson", "id": 151124, "credit_id": "52fe4365c3a36847f80514b5", "cast_id": 33, "profile_path": "/yIDXqkrb290f9xAd6yNU0g2QmYQ.jpg", "order": 12}, {"name": "Molly Shannon", "character": "Eve Adams", "id": 28640, "credit_id": "52fe4365c3a36847f80514bf", "cast_id": 35, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 13}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4365c3a36847f805141b", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 5.4, "runtime": 96}, "10895": {"poster_path": "/eAIJ1RRQRlaeUy2sdxKcRRNBMjC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84300000, "overview": "Lonely toymaker Geppetto has his wishes answered when the Blue Fairy arrives to bring his wooden puppet Pinocchio to life. Before becoming a real boy, however, Pinocchio must prove he's worthy as he sets off on an adventure with his whistling sidekick and conscience, Jiminy Cricket. From Stromboli's circus to Pleasure Island, Pinocchio is tested by many temptations, but slowly learns how to navigate right from wrong. With a few mishaps along the way, Geppetto's \"little woodenhead\" finally gets it right, proving that when you wish upon a star dreams really can come true!", "video": false, "id": 10895, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Pinocchio", "tagline": "For anyone who has ever wished upon a star.", "vote_count": 312, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032910", "adult": false, "backdrop_path": "/n8v2ugyc3DPYiU68d0XqNKWNQIv.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}, {"name": "RKO Radio Pictures", "id": 6}], "release_date": "1940-02-07", "popularity": 1.44480139325982, "original_title": "Pinocchio", "budget": 2600000, "cast": [{"name": "Mel Blanc", "character": "Gideon", "id": 33923, "credit_id": "52fe43cb9251416c7501e6df", "cast_id": 37, "profile_path": "/v7E4ABdhvaF1W604vIUD5Xj1jnb.jpg", "order": 0}, {"name": "Don Brodie", "character": "Carnival Barkers", "id": 67369, "credit_id": "52fe43cb9251416c7501e6cf", "cast_id": 33, "profile_path": "/fmXrW1JF7DevZwT8bLsYTtaIzD2.jpg", "order": 1}, {"name": "Walter Catlett", "character": "John Worthington Foulfellow", "id": 13819, "credit_id": "52fe43cb9251416c7501e6e3", "cast_id": 38, "profile_path": "/qwTfz5uMIYjWGofyUdnAffx2C8h.jpg", "order": 2}, {"name": "Marion Darlington", "character": "Birds", "id": 5463, "credit_id": "544bff37c3a36872d800080f", "cast_id": 41, "profile_path": null, "order": 3}, {"name": "Frankie Darro", "character": "Lampwick", "id": 67370, "credit_id": "52fe43cb9251416c7501e6db", "cast_id": 36, "profile_path": "/mjRY07gpz3DTpQHa0uxtNkIvZX5.jpg", "order": 4}, {"name": "Cliff Edwards", "character": "Jiminy Cricket", "id": 30236, "credit_id": "52fe43cb9251416c7501e6c7", "cast_id": 31, "profile_path": "/kbWXXmugxdX3rOEa0hUlJWHZ9pA.jpg", "order": 5}, {"name": "Dickie Jones", "character": "Pinocchio", "id": 67371, "credit_id": "52fe43cb9251416c7501e6cb", "cast_id": 32, "profile_path": "/4dGe5gm0nDGwUN9u6hVx7iFlxaU.jpg", "order": 6}, {"name": "Charles Judels", "character": "Stromboli", "id": 96053, "credit_id": "544bff800e0a2608be00080a", "cast_id": 42, "profile_path": "/tJr3v1i6KEwEfZJTOM68RcleZxN.jpg", "order": 7}, {"name": "Clarence Nash", "character": "Figaro", "id": 78077, "credit_id": "544bff94c3a36872bc00083f", "cast_id": 43, "profile_path": "/bEtwgcLncIDovv9qplhTVffQB7e.jpg", "order": 8}, {"name": "Patricia Page", "character": "Marionettes", "id": 1377560, "credit_id": "544bffa60e0a2608cd0007bf", "cast_id": 44, "profile_path": null, "order": 9}, {"name": "Christian Rub", "character": "Geppetto", "id": 985275, "credit_id": "530ad7aa925141785e00261c", "cast_id": 40, "profile_path": "/pbXqN3qxPMiMZ8hS5hD39qKK1nH.jpg", "order": 10}, {"name": "Evelyn Venable", "character": "Blue Fairy", "id": 117073, "credit_id": "52fe43cb9251416c7501e6d7", "cast_id": 35, "profile_path": "/umByXgmx1VJrsAqhPWq3o7pey30.jpg", "order": 11}], "directors": [{"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe43cb9251416c7501e681", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}, {"name": "Ben Sharpsteen", "department": "Directing", "job": "Director", "credit_id": "52fe43cb9251416c7501e687", "profile_path": "/1dfzGLuG0n4IeR6ONjAFuhh8Kli.jpg", "id": 11426}], "vote_average": 6.4, "runtime": 88}, "10898": {"poster_path": "/bjqp9REebK6Iwu2dOBWEAs8J7nm.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set several years after the first film, Ariel and Prince Eric are happily married with a daughter, Melody. In order to protect Melody from the Sea Witch, Morgana, they have not told her about her mermaid heritage. Melody is curious and ventures into the sea, where she meets new friends. But will she become a pawn in Morgana's quest to take control of the ocean from King Triton?", "video": false, "id": 10898, "genres": [{"id": 16, "name": "Animation"}], "title": "The Little Mermaid II: Return to the Sea", "tagline": "Return to the sea September 19", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3LVnessjKBjTEVLpVBJf5uh5Y9.jpg", "poster_path": "/y0EOuK02TasfRGSZBdv5U910QaV.jpg", "id": 33085, "name": "The Little Mermaid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240684", "adult": false, "backdrop_path": "/rFxoz5577jcnsNDDvH4Hceo05Qw.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Television Animation", "id": 18978}, {"name": "Walt Disney Animation Canada", "id": 12402}, {"name": "Walt Disney Animation Australia", "id": 3476}], "release_date": "2000-08-30", "popularity": 0.128903967358434, "original_title": "The Little Mermaid II: Return to the Sea", "budget": 0, "cast": [{"name": "Jodi Benson", "character": "Ariel", "id": 63978, "credit_id": "52fe43cc9251416c7501e85d", "cast_id": 1, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 0}, {"name": "Samuel E. Wright", "character": "Sebastian", "id": 67392, "credit_id": "52fe43cc9251416c7501e861", "cast_id": 2, "profile_path": "/hOtuep1nRczthyxkJusb68rcuL1.jpg", "order": 1}, {"name": "Tara Strong", "character": "Melody", "id": 15762, "credit_id": "52fe43cc9251416c7501e865", "cast_id": 3, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 2}, {"name": "Pat Carroll", "character": "Morgana", "id": 35232, "credit_id": "52fe43cc9251416c7501e869", "cast_id": 4, "profile_path": "/u3VKH6kvq3giRZ7UJTaec262HHW.jpg", "order": 3}, {"name": "Buddy Hackett", "character": "Scuttle", "id": 67393, "credit_id": "52fe43cc9251416c7501e86d", "cast_id": 5, "profile_path": "/zYLAknEo17XgWU44DbT2FCvLQps.jpg", "order": 4}, {"name": "Kenneth Mars", "character": "King Triton", "id": 9601, "credit_id": "550d8cfac3a36848740065dd", "cast_id": 13, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 5}, {"name": "Max Casella", "character": "Tip", "id": 7133, "credit_id": "550d8d3192514133c3003b03", "cast_id": 14, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 6}, {"name": "Stephen Furst", "character": "Dash", "id": 52304, "credit_id": "550d8d449251414691005b12", "cast_id": 15, "profile_path": "/omZKqkF9PrOS4mNyFPpu5iZcdAL.jpg", "order": 7}, {"name": "Rob Paulsen", "character": "Prince Eric", "id": 43125, "credit_id": "550d8d5492514133c3003b09", "cast_id": 16, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 8}, {"name": "Clancy Brown", "character": "Undertow", "id": 6574, "credit_id": "550d8d84c3a36848720062bc", "cast_id": 17, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 9}, {"name": "Cam Clarke", "character": "Flounder", "id": 60272, "credit_id": "550d8d9c925141469c005c7b", "cast_id": 18, "profile_path": "/7ecYo1hD0zHPxdKHSzkvHuM95Yj.jpg", "order": 10}, {"name": "Rene Auberjonois", "character": "Chef Louis", "id": 9807, "credit_id": "550d8e20c3a36848720062c9", "cast_id": 19, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 11}, {"name": "Kay E. Kuter", "character": "Grimsby", "id": 61702, "credit_id": "550d8e30c3a3684886005f61", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Edie McClurg", "character": "Carlotta", "id": 3202, "credit_id": "550d8e44c3a3684883005e1a", "cast_id": 21, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 13}], "directors": [{"name": "Jim Kammerud", "department": "Directing", "job": "Director", "credit_id": "52fe43cc9251416c7501e873", "profile_path": null, "id": 60725}], "vote_average": 5.9, "runtime": 72}, "41411": {"poster_path": "/iHJtP74X9hie5LZDwmFW7wugX1H.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "HU", "name": "Hungary"}], "revenue": 0, "overview": "1942. Joseph is eleven. And this June morning, he must go to school, a yellow star sown on his chest. He receives the support of a goods dealer. The mockery of a baker. Between kindness and contempt, Jo, his Jewish friends, their families, learn of life in an occupied Paris, on the Butte Montmartre, where they've taken shelter. At least that's what they think, until that morning on July 16th 1942, when their fragile happiness is toppled over.", "video": false, "id": 41411, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Round Up", "tagline": "", "vote_count": 53, "homepage": "http://larafle.gaumont.fr/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt1382725", "adult": false, "backdrop_path": "/yw2QRHwsMSCH0gIUZirvxDOpHs7.jpg", "production_companies": [{"name": "Centre National de la Cin\u00e9matographie (CNC)", "id": 18367}, {"name": "Gaumont", "id": 9}, {"name": "TF1 Films Production", "id": 3823}, {"name": "France 3 Cinema", "id": 16804}, {"name": "EOS Entertainment", "id": 2278}, {"name": "Eurofilm St\u00fadi\u00f3", "id": 16016}, {"name": "L\u00e9gende Films", "id": 22997}, {"name": "L\u00e9gende des Si\u00e8cles", "id": 22998}, {"name": "SMTS", "id": 22999}, {"name": "KS2 Cin\u00e9ma", "id": 23000}, {"name": "Alva Films", "id": 23001}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "Filmf\u00f6rderungsanstalt (FFA)", "id": 4247}, {"name": "R\u00e9gion Ile-de-France", "id": 11246}], "release_date": "2010-03-10", "popularity": 0.199411727520293, "original_title": "La Rafle", "budget": 25000000, "cast": [{"name": "Jean Reno", "character": "Dr. David Sheinbaum", "id": 1003, "credit_id": "52fe45c7c3a36847f80d9ff1", "cast_id": 18, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "M\u00e9lanie Laurent", "character": "Annette Monod", "id": 19119, "credit_id": "52fe45c7c3a36847f80d9ff5", "cast_id": 19, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 1}, {"name": "Gad Elmaleh", "character": "Schmuel Weismann", "id": 51100, "credit_id": "52fe45c7c3a36847f80d9fc5", "cast_id": 7, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 2}, {"name": "Rapha\u00eblle Agogu\u00e9", "character": "Sura Weismann", "id": 126386, "credit_id": "52fe45c7c3a36847f80d9ff9", "cast_id": 20, "profile_path": "/pPIXtMP7DnpFDCmo9icLgDH8OaE.jpg", "order": 3}, {"name": "Sylvie Testud", "character": "Bella Zygler", "id": 4529, "credit_id": "52fe45c7c3a36847f80d9fed", "cast_id": 17, "profile_path": "/u2fqcyDIKZk8plRHthpJtI7FdZd.jpg", "order": 4}, {"name": "Hugo Leverdez", "character": "Jo Weismann", "id": 131603, "credit_id": "52fe45c7c3a36847f80d9fc9", "cast_id": 8, "profile_path": "/anPmaNt7xjEA7DLbP4Pgscs5RQd.jpg", "order": 5}, {"name": "Oliver Cywie", "character": "Simon Zygler (as Olivier Cywie)", "id": 131604, "credit_id": "52fe45c7c3a36847f80d9fcd", "cast_id": 9, "profile_path": "/gK7jzznvLQC0weMkIddnFLtNYyi.jpg", "order": 6}, {"name": "Mathieu Di Concerto", "character": "No\u00e9 Zygler", "id": 131605, "credit_id": "52fe45c7c3a36847f80d9fd1", "cast_id": 10, "profile_path": "/vXC9xIRPuI60wN2PzJezbhUICbk.jpg", "order": 7}, {"name": "Romain Di Concerto", "character": "No\u00e9 Zygler", "id": 131606, "credit_id": "52fe45c7c3a36847f80d9fd5", "cast_id": 11, "profile_path": "/vXC9xIRPuI60wN2PzJezbhUICbk.jpg", "order": 8}, {"name": "Rebecca Marder", "character": "Rachel Weismann", "id": 131607, "credit_id": "52fe45c7c3a36847f80d9fd9", "cast_id": 12, "profile_path": "/qQKKezR8OzA5t3XmNW3TZZSneLI.jpg", "order": 9}, {"name": "Anne Brochet", "character": "Dina Traube", "id": 70182, "credit_id": "52fe45c7c3a36847f80d9fdd", "cast_id": 13, "profile_path": "/oX6GbBRscemBnbG0TRR594VenRa.jpg", "order": 10}, {"name": "Isabelle G\u00e9linas", "character": "H\u00e9l\u00e8ne Timonier", "id": 78475, "credit_id": "52fe45c7c3a36847f80d9fe1", "cast_id": 14, "profile_path": "/wHWFvU6NHo830dKPSWYCgMpOQbv.jpg", "order": 11}, {"name": "Thierry Fr\u00e9mont", "character": "Capitaine Pierret", "id": 96413, "credit_id": "52fe45c7c3a36847f80d9fe5", "cast_id": 15, "profile_path": "/c9makGlIHhO0f37LrUqEaQNnWhm.jpg", "order": 12}, {"name": "Catherine All\u00e9gret", "character": "La concierge 'Tati'", "id": 16926, "credit_id": "52fe45c7c3a36847f80d9fe9", "cast_id": 16, "profile_path": "/kb6186eWhiozkAmF3O2UziwY0G9.jpg", "order": 13}, {"name": "Denis M\u00e9nochet", "character": "Corot", "id": 81125, "credit_id": "52fe45c7c3a36847f80da003", "cast_id": 23, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 14}, {"name": "Ad\u00e8le Exarchopoulos", "character": "Anna Traube", "id": 586757, "credit_id": "52fe45c7c3a36847f80da007", "cast_id": 24, "profile_path": "/tPXch7Cb8NLg1pQ2n2Rd8CqaCFd.jpg", "order": 15}, {"name": "Jean-Pierre Lorit", "character": "Docteur Jousse", "id": 1356, "credit_id": "52fe45c7c3a36847f80da00b", "cast_id": 25, "profile_path": "/5GeQllohEVRvLhYFuowJHCW9tAf.jpg", "order": 16}, {"name": "Jean-Michel Noirey", "character": "Pierre Laval", "id": 28787, "credit_id": "52fe45c7c3a36847f80da00f", "cast_id": 26, "profile_path": "/72CqtzfTcXC7vWGXo5R7FqAluZ1.jpg", "order": 17}, {"name": "Anne Beno\u00eet", "character": "Matthey Jouanis", "id": 7282, "credit_id": "52fe45c7c3a36847f80da013", "cast_id": 27, "profile_path": "/1AynsV5oeLrn3qhAHWp0pdcURm7.jpg", "order": 18}, {"name": "Fr\u00e9d\u00e9ric Moulin", "character": "Ren\u00e9 Bousquet", "id": 1156339, "credit_id": "52fe45c7c3a36847f80da017", "cast_id": 28, "profile_path": "/pi3hJ1Q6WfQiTXXQHZlAJSnDpNM.jpg", "order": 19}, {"name": "Roland Cop\u00e9", "character": "Mar\u00e9chal P\u00e9tain", "id": 1176091, "credit_id": "52fe45c7c3a36847f80da01b", "cast_id": 29, "profile_path": "/231xQeIdcnDpqQNiymB3A6zYIf0.jpg", "order": 20}, {"name": "Armelle", "character": "Directrice \u00e9cole infirmi\u00e8res", "id": 77736, "credit_id": "52fe45c7c3a36847f80da01f", "cast_id": 30, "profile_path": "/wM36ChCOpQ2jTwXGjcw7yKvtTW5.jpg", "order": 21}, {"name": "Caroline Raynaud", "character": "Paule P\u00e9tiveau", "id": 230038, "credit_id": "52fe45c7c3a36847f80da023", "cast_id": 31, "profile_path": "/1r7bXlvUEqAsr7nJW2Qp2NJkOIV.jpg", "order": 22}, {"name": "Swann Arlaud", "character": "Milicien PPP Weismann", "id": 145120, "credit_id": "52fe45c7c3a36847f80da027", "cast_id": 32, "profile_path": "/rNnt25NME2EXavLGVaDhe1trDFc.jpg", "order": 23}, {"name": "Christelle Cornil", "character": "Jacqueline", "id": 234492, "credit_id": "52fe45c7c3a36847f80da05b", "cast_id": 45, "profile_path": "/t6EEsgODAde3WQf0Gkz2H3SNm0T.jpg", "order": 24}, {"name": "Udo Schenk", "character": "Adolf Hitler", "id": 31643, "credit_id": "52fe45c7c3a36847f80da02b", "cast_id": 33, "profile_path": "/3hSjt1GAANVJzQVGrktDR9mx54H.jpg", "order": 25}, {"name": "Franziska Schubert", "character": "Eva Braun", "id": 1176092, "credit_id": "52fe45c7c3a36847f80da02f", "cast_id": 34, "profile_path": "/aNVAFv6yl1mKFdNqMUAtK1v6JGS.jpg", "order": 26}, {"name": "Thomas Darchinger", "character": "Heinrich Himmler", "id": 43455, "credit_id": "52fe45c7c3a36847f80da033", "cast_id": 35, "profile_path": "/7l1GLC7pucsn5gKzBzevQk8cNTi.jpg", "order": 27}, {"name": "Bernhard Sch\u00fctz", "character": "Karl Oberg", "id": 44516, "credit_id": "52fe45c7c3a36847f80da037", "cast_id": 36, "profile_path": "/gAUHJJMmoXiCvLdBZwPWgo8qBSL.jpg", "order": 28}, {"name": "Nadia Barentin", "character": "Grand-M\u00e8re Ida", "id": 229136, "credit_id": "52fe45c7c3a36847f80da05f", "cast_id": 46, "profile_path": "/b5IEpt0FI2WHfVvWk14kjhG2Hq2.jpg", "order": 29}, {"name": "Catherine Hosmalin", "character": "La boulang\u00e8re", "id": 54280, "credit_id": "52fe45c7c3a36847f80da063", "cast_id": 47, "profile_path": "/gJloGKI2oHatdShjwJdbtVne6zp.jpg", "order": 30}, {"name": "Marc Rioufol", "character": "Jean Leguay", "id": 19362, "credit_id": "52fe45c7c3a36847f80da067", "cast_id": 48, "profile_path": "/mI6pC01BsSYuSk7njjCLIfvKyua.jpg", "order": 31}, {"name": "Gr\u00e9gory Gatignol", "character": "Policier Weissmann", "id": 43999, "credit_id": "52fe45c7c3a36847f80da087", "cast_id": 56, "profile_path": "/rctSbXAxJX1keEN46XeriSaYAfL.jpg", "order": 32}, {"name": "Christian Erickson", "character": "MacLelland", "id": 45849, "credit_id": "52fe45c7c3a36847f80da09b", "cast_id": 61, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 33}, {"name": "Charlotte Driesen", "character": "Charlotte Weismann", "id": 1176093, "credit_id": "52fe45c7c3a36847f80da03b", "cast_id": 37, "profile_path": "/hJH88O6nQqn8hSnvzoYYSh9ZMml.jpg", "order": 34}, {"name": "Sandra Moreno", "character": "Lucienne", "id": 1176094, "credit_id": "52fe45c7c3a36847f80da03f", "cast_id": 38, "profile_path": "/h7AMElrgQ8uoH79hWE8XJ35ZuGc.jpg", "order": 35}, {"name": "Maurice Vaudaux", "character": "L'abb\u00e9 Bernard", "id": 1176095, "credit_id": "52fe45c7c3a36847f80da043", "cast_id": 39, "profile_path": "/2ypXTchIHhmY46hAelCw1HTcF8v.jpg", "order": 36}, {"name": "Salom\u00e9 Sebbag", "character": "Louise Zygler", "id": 1176096, "credit_id": "52fe45c7c3a36847f80da047", "cast_id": 40, "profile_path": "/7ALgzsFZmf9rRoTO0ZY1aYmxgoe.jpg", "order": 37}, {"name": "Nastasia Juszczak", "character": "Ren\u00e9e Traube", "id": 1176097, "credit_id": "52fe45c7c3a36847f80da04b", "cast_id": 41, "profile_path": "/1Eap0PbTSpovA6pAvVbznINmFlg.jpg", "order": 38}, {"name": "Ariane Seguillon", "character": "Putain 1", "id": 143001, "credit_id": "52fe45c7c3a36847f80da04f", "cast_id": 42, "profile_path": "/tSUNXXzZE3RPDfmAsVahbybphG1.jpg", "order": 39}, {"name": "Mathilde Snodgrass", "character": "Putain 2", "id": 1176098, "credit_id": "52fe45c7c3a36847f80da053", "cast_id": 43, "profile_path": null, "order": 40}, {"name": "Samuel Diot", "character": "Raymond", "id": 1176099, "credit_id": "52fe45c7c3a36847f80da057", "cast_id": 44, "profile_path": null, "order": 41}, {"name": "Patrick Courtois", "character": "Emile Hennequin", "id": 1176100, "credit_id": "52fe45c7c3a36847f80da06b", "cast_id": 49, "profile_path": "/sXg7rzTOuL2oQ0gg0JYBnIkrdZ3.jpg", "order": 42}, {"name": "Rodolphe Saulnier", "character": "Gendarme dragueur", "id": 1175845, "credit_id": "52fe45c7c3a36847f80da06f", "cast_id": 50, "profile_path": "/3ZByFMRBBgp8ygM1P0aJzRQ4bDA.jpg", "order": 43}, {"name": "Nicolas Bridet", "character": "Gendarme Lemaire", "id": 931398, "credit_id": "52fe45c7c3a36847f80da073", "cast_id": 51, "profile_path": "/9MuMZwcsmnY7DlH9YbgBdqU5m7W.jpg", "order": 44}, {"name": "Djamel Mehnane", "character": "Lieutenant gendarme Vel d'Hiv", "id": 1176101, "credit_id": "52fe45c7c3a36847f80da077", "cast_id": 52, "profile_path": "/fwbkKd4rDjEOQqztzoQ2zT4OpER.jpg", "order": 45}, {"name": "Alban Aumard", "character": "Gaston Roques", "id": 1088197, "credit_id": "52fe45c7c3a36847f80da07b", "cast_id": 53, "profile_path": "/4Y41NxGrTNCN3ZqSptehr5zDLs4.jpg", "order": 46}, {"name": "Nicolas Merlin", "character": "Milicien fouille Beaune", "id": 1176102, "credit_id": "52fe45c7c3a36847f80da07f", "cast_id": 54, "profile_path": "/rQoxGvJcedvt3FNcf0CesOWTGSr.jpg", "order": 47}, {"name": "Christian Adam", "character": "Brocanteur russe", "id": 1176103, "credit_id": "52fe45c7c3a36847f80da083", "cast_id": 55, "profile_path": null, "order": 48}, {"name": "Frank Berjot", "character": "Milicien Traube 1 (as Franck Berjot)", "id": 1165766, "credit_id": "52fe45c7c3a36847f80da08b", "cast_id": 57, "profile_path": "/iN96FtmmiAKuxq9x6lIHCrvBpWu.jpg", "order": 49}, {"name": "Salvatore Ingoglia", "character": "L'Hirondelle 'Louise'", "id": 1176104, "credit_id": "52fe45c7c3a36847f80da08f", "cast_id": 58, "profile_path": "/deD7uxJDn2fsF7cr1llqImgKyE7.jpg", "order": 50}, {"name": "Philippe Beautier", "character": "Garde mobile quare", "id": 1176105, "credit_id": "52fe45c7c3a36847f80da093", "cast_id": 59, "profile_path": "/eSdjTo2d6goIRvDiZfoTHOsXXjX.jpg", "order": 51}, {"name": "Gaspard Meier-Chaurand", "character": "Lucien Timonier", "id": 543817, "credit_id": "52fe45c7c3a36847f80da097", "cast_id": 60, "profile_path": "/3NSsNpnfuaDaac9PHJmqyaFmXK8.jpg", "order": 52}, {"name": "Antoine Stip", "character": "Prof. Saul Traube", "id": 1176106, "credit_id": "52fe45c7c3a36847f80da09f", "cast_id": 62, "profile_path": "/lwur3xYeTeQS05ZWsPyKwzO4ipj.jpg", "order": 53}, {"name": "Aur\u00e9lien Ringelheim", "character": "Tailleur '9e Ordonnance'", "id": 1177059, "credit_id": "52fe45c7c3a36847f80da0d9", "cast_id": 72, "profile_path": "/wnvFo3RsBcrdk1SR6aDwPxNsHca.jpg", "order": 54}, {"name": "Samuel Jaudon", "character": "Le chanteur des rues", "id": 1177060, "credit_id": "52fe45c7c3a36847f80da0dd", "cast_id": 73, "profile_path": null, "order": 55}, {"name": "Sabine Pernette", "character": "Femme '9\u00e8me ordonnance'", "id": 1177061, "credit_id": "52fe45c7c3a36847f80da0e1", "cast_id": 74, "profile_path": "/dbcE5Wl6fOohe9pdjKXtcbwb0n0.jpg", "order": 56}, {"name": "J\u00e9r\u00e9mie Segard", "character": "Garde mobile Zygler", "id": 45160, "credit_id": "52fe45c7c3a36847f80da0e5", "cast_id": 75, "profile_path": "/cXXcEc6qikhQGGqoUHSW0oqXlHu.jpg", "order": 57}, {"name": "Jonathan Brecher", "character": "Adjudant-chef Guillem", "id": 1177062, "credit_id": "52fe45c7c3a36847f80da0e9", "cast_id": 76, "profile_path": "/eSq5lVH1M3ZrNSgPhBXGzdzzbZo.jpg", "order": 58}, {"name": "Francis Weismann", "character": "Adjudant-chef Desnoyers", "id": 1177063, "credit_id": "52fe45c7c3a36847f80da0ed", "cast_id": 77, "profile_path": null, "order": 59}, {"name": "Fran\u00e7ois Bureloup", "character": "L'Instituteur M. Joyeux", "id": 544669, "credit_id": "52fe45c7c3a36847f80da0f1", "cast_id": 78, "profile_path": "/nAt8wMTkbs1slq0pP18POw0x48z.jpg", "order": 60}, {"name": "Jonas Hamon", "character": "Petit gar\u00e7on qui tremble", "id": 1012109, "credit_id": "52fe45c7c3a36847f80da0f5", "cast_id": 79, "profile_path": "/r1OvPfBYShAiaVdXJFN2CKInG79.jpg", "order": 61}, {"name": "Catherine Toublanc", "character": "M\u00e8re 'gar\u00e7on qui tremble'", "id": 1177064, "credit_id": "52fe45c7c3a36847f80da0f9", "cast_id": 80, "profile_path": "/eQa3kHKxiQNCoHNrDi7oXfNOcy8.jpg", "order": 62}, {"name": "Gabrielle Bonacini", "character": "M\u00e8re \u00e9plor\u00e9e", "id": 1177065, "credit_id": "52fe45c7c3a36847f80da0fd", "cast_id": 81, "profile_path": "/obcPHO7EP4V1SKYXcYddPPTiWh6.jpg", "order": 63}, {"name": "Philippe Mangione", "character": "Ouvrier t\u00e9moin", "id": 1177066, "credit_id": "52fe45c7c3a36847f80da101", "cast_id": 82, "profile_path": "/tvhnZnzyFwHxusGPG7TFt3WSaxD.jpg", "order": 64}, {"name": "Michelle Figlarz", "character": "M\u00e8re s\u00e9paration (as Mich\u00e8le Guetta-Figlarz)", "id": 1177067, "credit_id": "52fe45c7c3a36847f80da105", "cast_id": 83, "profile_path": "/uqZfu9f8NJRjUJsOg6GXnnKhHEX.jpg", "order": 65}, {"name": "Johannes Oliver Hamm", "character": "Grad\u00e9 allemand caf\u00e9 (as Johannes Hamm)", "id": 1177068, "credit_id": "52fe45c7c3a36847f80da109", "cast_id": 84, "profile_path": "/f40mIdUVu6iRjzWV9GOvZMSO1xz.jpg", "order": 66}, {"name": "Jerome Henry", "character": "Garde mobile square 2", "id": 1177069, "credit_id": "52fe45c7c3a36847f80da10d", "cast_id": 85, "profile_path": "/jGsEdD50kQT92cybJUrYgeYdqib.jpg", "order": 67}, {"name": "Holger Daemgen", "character": "Helmut Knochen", "id": 1177070, "credit_id": "52fe45c7c3a36847f80da111", "cast_id": 86, "profile_path": "/ftFDBR1C7ddFh24pDKQOlbce2Ej.jpg", "order": 68}, {"name": "J\u00e1nos F\u00fczi", "character": "Jeune intello", "id": 1177071, "credit_id": "52fe45c7c3a36847f80da115", "cast_id": 87, "profile_path": null, "order": 69}, {"name": "Vir\u00e1g B\u00e1r\u00e1ny", "character": "Femme rou\u00e9e de coups", "id": 1177072, "credit_id": "52fe45c7c3a36847f80da119", "cast_id": 88, "profile_path": "/lzxW7V6galKUlPZp5haOtLpW7ng.jpg", "order": 70}, {"name": "Gabriella Gub\u00e1s", "character": "M\u00e8re de famille Vel d'Hiv (as Gabi Gubas)", "id": 930368, "credit_id": "52fe45c7c3a36847f80da11d", "cast_id": 89, "profile_path": "/ameuIJbJO1M29Zcj7eqsQbpPiNA.jpg", "order": 71}, {"name": "Peter Kollar", "character": "Joseph Kogan", "id": 1177073, "credit_id": "52fe45c7c3a36847f80da121", "cast_id": 90, "profile_path": null, "order": 72}, {"name": "Tam\u00e1s Lengyel", "character": "Rudolf Hess", "id": 1177074, "credit_id": "52fe45c7c3a36847f80da125", "cast_id": 91, "profile_path": "/s1clUipXMHeiGUnrpbFunnbZl9Q.jpg", "order": 73}, {"name": "Iv\u00e1n Feny\u0151", "character": "Grad\u00e9 allemand M\u00fcller", "id": 125444, "credit_id": "52fe45c7c3a36847f80da129", "cast_id": 92, "profile_path": "/pmAeJgYwFPNA2nZVejDZFikszgw.jpg", "order": 74}, {"name": "Hanna Becker", "character": "Hilde Speer", "id": 1177076, "credit_id": "52fe45c7c3a36847f80da12d", "cast_id": 93, "profile_path": null, "order": 75}, {"name": "Geoffry Thomas", "character": "Noble", "id": 1177078, "credit_id": "52fe45c7c3a36847f80da131", "cast_id": 94, "profile_path": null, "order": 76}, {"name": "Kata Varga", "character": "Agricultrice Lut\u00e9tia", "id": 1177081, "credit_id": "52fe45c8c3a36847f80da135", "cast_id": 95, "profile_path": null, "order": 77}, {"name": "R\u00f3bert Bolla", "character": "Agriculteur Lut\u00e9tia", "id": 1177084, "credit_id": "52fe45c8c3a36847f80da139", "cast_id": 96, "profile_path": null, "order": 78}, {"name": "Soma Z\u00e1mbori", "character": "Heinz Rothke", "id": 1177086, "credit_id": "52fe45c8c3a36847f80da13d", "cast_id": 97, "profile_path": "/sJTxlHaoQXxm08sMkS4kPfMNn5I.jpg", "order": 79}, {"name": "\u00c1d\u00e1m F\u00f6ldi", "character": "Th\u00e9o Dannecker (as Adam Foldi)", "id": 1177087, "credit_id": "52fe45c8c3a36847f80da141", "cast_id": 98, "profile_path": "/2uwEecsPlOCXV40ceHUnJCaEaqc.jpg", "order": 80}, {"name": "P\u00e9ter Barbinek", "character": "Docteur Morell", "id": 1177088, "credit_id": "52fe45c8c3a36847f80da145", "cast_id": 99, "profile_path": "/8MZLT4mNpoGXkiRfaPt4LHn3GIS.jpg", "order": 81}, {"name": "Adel Martin", "character": "Femme juive chic", "id": 1177089, "credit_id": "52fe45c8c3a36847f80da149", "cast_id": 100, "profile_path": null, "order": 82}, {"name": "Viktoria Molnar", "character": "Odile", "id": 1177090, "credit_id": "52fe45c8c3a36847f80da14d", "cast_id": 101, "profile_path": null, "order": 83}, {"name": "Szofia Sztepanov", "character": "Lisa", "id": 1177091, "credit_id": "52fe45c8c3a36847f80da151", "cast_id": 102, "profile_path": null, "order": 84}, {"name": "Lora Balogh", "character": "Gilberte", "id": 1177092, "credit_id": "52fe45c8c3a36847f80da155", "cast_id": 103, "profile_path": null, "order": 85}, {"name": "J\u00e9r\u00f4me Cusin", "character": "Dieter", "id": 1177093, "credit_id": "52fe45c8c3a36847f80da159", "cast_id": 104, "profile_path": "/5U8PwyB7Vpf3mIKgqTj91Ki7TgM.jpg", "order": 86}, {"name": "Jennifer Kerner", "character": "La m\u00e8re sur le toit", "id": 1177094, "credit_id": "52fe45c8c3a36847f80da15d", "cast_id": 105, "profile_path": "/2RSIGJP75XdfI0vcCsCESBJOARl.jpg", "order": 87}, {"name": "Gyula Mesterh\u00e1zy", "character": "Otto G\u00fcnsche", "id": 1177095, "credit_id": "52fe45c8c3a36847f80da161", "cast_id": 106, "profile_path": "/hUrzRSf7vwIb6Qee1CaCqQ4shFW.jpg", "order": 88}, {"name": "Tam\u00e1s G\u00e1bor", "character": "Pompier Fernand Baudvin", "id": 1177096, "credit_id": "52fe45c8c3a36847f80da165", "cast_id": 107, "profile_path": null, "order": 89}, {"name": "Tam\u00e1s Csaszar", "character": "Grad\u00e9 Beaune", "id": 1177097, "credit_id": "52fe45c8c3a36847f80da169", "cast_id": 108, "profile_path": null, "order": 90}, {"name": "Ilona Kassai", "character": "Femme \u00e2g\u00e9e Vel d'Hiv", "id": 933031, "credit_id": "52fe45c8c3a36847f80da16d", "cast_id": 109, "profile_path": "/7jSXaSoldlwA8TtN0LRUcPyc0xX.jpg", "order": 91}, {"name": "Zsuzsa Sz\u00e1ger", "character": "Femme orthodoxe Vel d'Hiv", "id": 1177098, "credit_id": "52fe45c8c3a36847f80da171", "cast_id": 110, "profile_path": "/ltrCs4yaPF1hhzB6lAAiZT2wbUh.jpg", "order": 92}, {"name": "Katalin Pap", "character": "Femme au b\u00e9b\u00e9 Vel d'Hiv", "id": 1177099, "credit_id": "52fe45c8c3a36847f80da175", "cast_id": 111, "profile_path": null, "order": 93}, {"name": "Csaba Jakab", "character": "P\u00e8re de famille Vel d'Hiv", "id": 1177100, "credit_id": "52fe45c8c3a36847f80da179", "cast_id": 112, "profile_path": "/uWAnF9vHzhuzADAw8pAEA30ZP6o.jpg", "order": 94}, {"name": "Vir\u00e1g Sallai", "character": "Concierge pr\u00e9fecture Loiret", "id": 1177101, "credit_id": "52fe45c8c3a36847f80da17d", "cast_id": 113, "profile_path": "/egSGzGal9q68I67tONQ0pTNFY3o.jpg", "order": 95}, {"name": "Zolt\u00e1n Horv\u00e1th", "character": "Gendarme Gatien", "id": 1177102, "credit_id": "52fe45c8c3a36847f80da181", "cast_id": 114, "profile_path": "/p9e0YgzSSGuovm6DriBSGc77Zml.jpg", "order": 96}, {"name": "Barnab\u00e1s Timon", "character": "Adolescent 1", "id": 1177103, "credit_id": "52fe45c8c3a36847f80da185", "cast_id": 115, "profile_path": "/wTZdT9A9qXiMCLXRKlayxzEfeuy.jpg", "order": 97}, {"name": "Aaron Boujenah", "character": "Adolescent 2", "id": 1177104, "credit_id": "52fe45c8c3a36847f80da189", "cast_id": 116, "profile_path": null, "order": 98}, {"name": "Lili Karolyi", "character": "Fille femme rou\u00e9e de coups", "id": 1177105, "credit_id": "52fe45c8c3a36847f80da18d", "cast_id": 117, "profile_path": null, "order": 99}, {"name": "Bea T\u00f6vispataki", "character": "Infirmi\u00e8re", "id": 1177106, "credit_id": "52fe45c8c3a36847f80da191", "cast_id": 118, "profile_path": "/zqph7YxgnCVORB4kY4kA2y8xEmE.jpg", "order": 100}], "directors": [{"name": "Roselyne Bosch", "department": "Directing", "job": "Director", "credit_id": "52fe45c7c3a36847f80d9fc1", "profile_path": null, "id": 21269}], "vote_average": 7.1, "runtime": 115}, "7278": {"poster_path": "/uDIaiQS98bViJR9TIlUuRPntEID.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40339721, "overview": "From the creators of Scary Movie and Date Movie comes this tongue-in-cheek parody of the sword-and-sandal epics, dubbed Meet the Spartans. The 20th Century Fox production was written and directed by the filmmaking team of Jason Friedberg and Aaron Seltzer. Sure, Leonidas may have nothing more than a cape and some leather underwear to protect him from the razor-sharp swords of his Persian enemies,", "video": false, "id": 7278, "genres": [{"id": 35, "name": "Comedy"}], "title": "Meet the Spartans", "tagline": "The Bigger the Hit, The Harder They Fall", "vote_count": 91, "homepage": "http://www.meetthespartans.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1073498", "adult": false, "backdrop_path": "/2vsk7Iq4wXqaWg6kNM280H8In5i.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2008-01-24", "popularity": 0.732063927237289, "original_title": "Meet the Spartans", "budget": 0, "cast": [{"name": "Sean Maguire", "character": "Leonidas", "id": 52262, "credit_id": "52fe4476c3a36847f8097861", "cast_id": 14, "profile_path": "/axVjykZUTmM4aFCsurslXAQZGjC.jpg", "order": 0}, {"name": "Carmen Electra", "character": "K\u00f6nigin Margo", "id": 28639, "credit_id": "52fe4476c3a36847f8097865", "cast_id": 15, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 1}, {"name": "Ken Davitian", "character": "Xerxes", "id": 6734, "credit_id": "52fe4476c3a36847f8097869", "cast_id": 16, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 2}, {"name": "Kevin Sorbo", "character": "Hauptmann", "id": 51965, "credit_id": "52fe4476c3a36847f809786d", "cast_id": 17, "profile_path": "/kPwVLsAMDZDsFVmXjg1zG5cLltT.jpg", "order": 3}, {"name": "Diedrich Bader", "character": "Traitoro", "id": 5727, "credit_id": "54b3de61c3a368210c0033f9", "cast_id": 18, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 4}, {"name": "Method Man", "character": "Persian", "id": 5384, "credit_id": "54b3de72c3a36820a7003064", "cast_id": 19, "profile_path": "/qzZv7AWVVKex2IOe65a1WaQuW0g.jpg", "order": 5}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe4476c3a36847f8097815", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4476c3a36847f8097827", "profile_path": null, "id": 35734}], "vote_average": 4.5, "runtime": 84}, "10009": {"poster_path": "/5qSEndgjSbshCK3OqxxRfREFCAP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 250, "overview": "When a young Inuit hunter needlessly kills a bear, he is magically changed into a bear himself as punishment with a talkative cub being his only guide to changing back.", "video": false, "id": 10009, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Brother Bear", "tagline": "The story of a boy who became a man by becoming a bear.", "vote_count": 220, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8QuwV9WoZTs4Nnz6GMIISP2WblF.jpg", "poster_path": "/eWjO8diAZlCUWT9mXUJeQCVSICg.jpg", "id": 96472, "name": "Brother Bear Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "iu", "name": ""}, {"iso_639_1": "sr", "name": "Srpski"}, {"iso_639_1": "hr", "name": "Hrvatski"}], "imdb_id": "tt0328880", "adult": false, "backdrop_path": "/fAzT4AboZXP2Sj3zE2HcQ7qjMi.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-10-31", "popularity": 1.41718791251737, "original_title": "Brother Bear", "budget": 100000000, "cast": [{"name": "Joaquin Phoenix", "character": "Kenai (voice)", "id": 73421, "credit_id": "52fe43069251416c750007d3", "cast_id": 17, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Rick Moranis", "character": "Rutt (voice)", "id": 8872, "credit_id": "52fe43069251416c750007d7", "cast_id": 19, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 1}, {"name": "Jeremy Suarez", "character": "Koda (voice)", "id": 61959, "credit_id": "52fe43069251416c750007e7", "cast_id": 22, "profile_path": "/ktydBVBvNUlmfJj56aYwJ0O31JN.jpg", "order": 2}, {"name": "Joan Copeland", "character": "Tanana (voice)", "id": 31504, "credit_id": "52fe43069251416c750007eb", "cast_id": 23, "profile_path": "/Ysia52uqzGx3wN0rwslRSp6E46.jpg", "order": 3}, {"name": "Michael Clarke Duncan", "character": "Tug (voice)", "id": 61981, "credit_id": "52fe43069251416c750007ef", "cast_id": 24, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 4}, {"name": "Harold Gould", "character": "Old Denahi (voice)", "id": 14833, "credit_id": "52fe43069251416c750007f3", "cast_id": 25, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 5}, {"name": "Jason Raize", "character": "Denahi (voice)", "id": 61960, "credit_id": "52fe43069251416c750007f7", "cast_id": 26, "profile_path": "/h8CtmQYtKGbWkD271nqezR1JvgE.jpg", "order": 6}, {"name": "Paul Christie", "character": "Ram #1 (voice)", "id": 54221, "credit_id": "52fe43069251416c750007fb", "cast_id": 27, "profile_path": "/zWUkbCu56DBGIYNI7Rh619HJiOL.jpg", "order": 7}, {"name": "Danny Mastrogiorgio", "character": "Ram #2 (voice)", "id": 61963, "credit_id": "52fe43069251416c750007ff", "cast_id": 28, "profile_path": "/bFh9cROuMeuyKGkkzN613427ZdB.jpg", "order": 8}, {"name": "Dave Thomas", "character": "Tuke (voice)", "id": 61961, "credit_id": "52fe43069251416c75000803", "cast_id": 29, "profile_path": "/qWQ330du0Uu1Q8wAq9hMoYmOJ5Q.jpg", "order": 9}, {"name": "Estelle Harris", "character": "Old Lady Bear (voice)", "id": 61964, "credit_id": "52fe43069251416c7500080b", "cast_id": 31, "profile_path": "/equDBtZgBkO7e8QKpNokDz9EbY9.jpg", "order": 10}, {"name": " D.B. Sweeney", "character": "Sitka (voice)", "id": 61962, "credit_id": "52fe43069251416c75000807", "cast_id": 30, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 11}, {"name": "Pauley Perrette", "character": "Female Lover Bear (voice)", "id": 11680, "credit_id": "52fe43069251416c7500080f", "cast_id": 32, "profile_path": "/dXpCSxJKgIVLmSXGlK64VOMq3zb.jpg", "order": 12}, {"name": "Bumper Robinson", "character": "Chipmunks (voice)", "id": 35111, "credit_id": "52fe43069251416c75000813", "cast_id": 33, "profile_path": "/upWJKbhdN19W8GEgNujTJavzeca.jpg", "order": 13}, {"name": "Brian Posehn", "character": "Additional Voice (voice)", "id": 20405, "credit_id": "52fe43069251416c75000817", "cast_id": 34, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 14}, {"name": "Greg Proops", "character": "Male Lover Bear (voice)", "id": 61965, "credit_id": "52fe43069251416c7500081b", "cast_id": 35, "profile_path": "/vZCffFyddRuuMlHBUwgaUa9D9A4.jpg", "order": 15}, {"name": "Angayuqaq Oscar Kawagley", "character": "Inuit Narrator (voice)", "id": 61967, "credit_id": "52fe43069251416c75000823", "cast_id": 37, "profile_path": "/2UCo2Hhs1XjDMRqyZuJCFh016F8.jpg", "order": 16}, {"name": "Philip Proctor", "character": "Additional Voice", "id": 61969, "credit_id": "52fe43069251416c7500081f", "cast_id": 36, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 17}, {"name": "Patrick Pinney", "character": "Additional Voice", "id": 61968, "credit_id": "52fe43069251416c75000827", "cast_id": 38, "profile_path": "/eU2rqG140FCPwzIjJTymVOd5RBY.jpg", "order": 18}, {"name": "Darko Cesar", "character": "Foreign Croatian Bear (voice)", "id": 61966, "credit_id": "52fe43069251416c7500082b", "cast_id": 39, "profile_path": "/cJ70Wvt2ZRqZ1pGER6Qfmc0rSlm.jpg", "order": 19}], "directors": [{"name": "Aaron Blaise", "department": "Directing", "job": "Director", "credit_id": "52fe43069251416c75000793", "profile_path": "/eZkkRhetqoTBRF1yGA8v2wht9KR.jpg", "id": 61952}, {"name": "Robert Walker", "department": "Directing", "job": "Director", "credit_id": "52fe43069251416c75000799", "profile_path": "/1NQnhRYxgr5lJmxtx2kyOY9UmlO.jpg", "id": 61949}], "vote_average": 6.4, "runtime": 85}, "11547": {"poster_path": "/pDFFHha2KwW6ZjvrZQtXaS6PIYV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of five college graduates rent a cabin in the woods and begin to fall victim to a horrifying flesh-eating virus, which attracts the unwanted attention of the homicidal locals.", "video": false, "id": 11547, "genres": [{"id": 27, "name": "Horror"}], "title": "Cabin Fever", "tagline": "Terror\u2026 in the flesh.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/j82lEJUxFlXC35Pi75P3sAbkTUq.jpg", "poster_path": "/u4SLX7S1SdBzaUzPpGWfRaEa1E1.jpg", "id": 201576, "name": "The Cabin Fever Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0303816", "adult": false, "backdrop_path": "/1v3EJG30IWmgdTVRQLvKqQBthKe.jpg", "production_companies": [{"name": "Tonic Films", "id": 2763}, {"name": "Down Home Entertainment", "id": 22953}, {"name": "Cabin Pictures", "id": 22954}, {"name": "Black Sky Entertainment", "id": 22955}, {"name": "Deer Path Films", "id": 22956}], "release_date": "2002-09-13", "popularity": 0.89553855859025, "original_title": "Cabin Fever", "budget": 1500000, "cast": [{"name": "Rider Strong", "character": "Paul", "id": 69807, "credit_id": "52fe44579251416c75031481", "cast_id": 12, "profile_path": "/n7ujEcNfCGkkLnNg8Ur5vXchrs6.jpg", "order": 0}, {"name": "Jordan Ladd", "character": "Karen", "id": 20492, "credit_id": "52fe44579251416c75031485", "cast_id": 13, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 1}, {"name": "James DeBello", "character": "Bert", "id": 35768, "credit_id": "52fe44579251416c75031489", "cast_id": 14, "profile_path": "/xhDScFpgfM9gfIyNQm8KOr0qEU5.jpg", "order": 2}, {"name": "Cerina Vincent", "character": "Marcy", "id": 52365, "credit_id": "52fe44579251416c7503148d", "cast_id": 15, "profile_path": "/AnGfLx2gE8ZnRJrQwlXAVcednMZ.jpg", "order": 3}, {"name": "Joey Kern", "character": "Jeff", "id": 84763, "credit_id": "52fe44579251416c750314af", "cast_id": 21, "profile_path": "/i0gXdhnoTGwAooTysudWrH5ZtPz.jpg", "order": 4}, {"name": "Arie Verveen", "character": "Henry", "id": 91612, "credit_id": "52fe44579251416c750314b3", "cast_id": 22, "profile_path": "/yh3mOsRXENzK3JJljFlSgX7p6QL.jpg", "order": 5}, {"name": "Giuseppe Andrews", "character": "Deputy Winston", "id": 4133, "credit_id": "53dcb2080e0a264816001e7d", "cast_id": 34, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 6}, {"name": "Richard Fullerton", "character": "The Sheriff", "id": 159109, "credit_id": "53deb50e0e0a265a83002f3b", "cast_id": 35, "profile_path": null, "order": 7}, {"name": "Hal Courtney", "character": "Tommy", "id": 1348582, "credit_id": "53dcae74c3a368433b000fab", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Eli Roth", "character": "Justin / Grim", "id": 16847, "credit_id": "52fe44579251416c750314b7", "cast_id": 23, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 9}, {"name": "Robert Harris", "character": "Old Man Cadwell", "id": 951120, "credit_id": "53aa8c240e0a2646d80033cb", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Tim Parati", "character": "Andy", "id": 65171, "credit_id": "53aa8ca30e0a2646cc0015ff", "cast_id": 29, "profile_path": "/qu3AMF9AXrAAXKI9MfdxZKW7mgm.jpg", "order": 11}, {"name": "Matthew Helms", "character": "Dennis", "id": 1348583, "credit_id": "53dcae93c3a368432d000fd6", "cast_id": 31, "profile_path": null, "order": 12}], "directors": [{"name": "Eli Roth", "department": "Directing", "job": "Director", "credit_id": "52fe44579251416c75031441", "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "id": 16847}], "vote_average": 5.3, "runtime": 93}, "10911": {"poster_path": "/lTtu8Y1Lu4tJXLbAmWKZ5FXBZxu.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28900000, "overview": "A team of allied saboteurs are assigned an impossible mission: infiltrate an impregnable Nazi-held island and destroy the two enormous long-range field guns that prevent the rescue of 2,000 trapped British soldiers.", "video": false, "id": 10911, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "The Guns of Navarone", "tagline": "The Greatest High Adventure Ever Filmed!", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054953", "adult": false, "backdrop_path": "/oSUAezCAa2dXbkJblUqJQwcKVKK.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1961-06-22", "popularity": 0.964139033592109, "original_title": "The Guns of Navarone", "budget": 6000000, "cast": [{"name": "Gregory Peck", "character": "Capt. Keith Mallory", "id": 8487, "credit_id": "52fe43cf9251416c7501f021", "cast_id": 1, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "David Niven", "character": "Cpl. Miller", "id": 14261, "credit_id": "52fe43cf9251416c7501f025", "cast_id": 2, "profile_path": "/fLtUBsOLe2Ln84MjZ2HJQjSI8HE.jpg", "order": 1}, {"name": "Anthony Quinn", "character": "Col. Andrea Stavros", "id": 5401, "credit_id": "52fe43cf9251416c7501f029", "cast_id": 3, "profile_path": "/9sKpm4KCoUbmMbR86fpqcgBCHrJ.jpg", "order": 2}, {"name": "Stanley Baker", "character": "Pvt. 'Butcher' Brown", "id": 67449, "credit_id": "52fe43cf9251416c7501f02d", "cast_id": 4, "profile_path": "/uK2pnimWKxTV3nsdZTKiK0QQdS9.jpg", "order": 3}, {"name": "Anthony Quayle", "character": "Maj. Roy Franklin", "id": 14371, "credit_id": "52fe43cf9251416c7501f061", "cast_id": 13, "profile_path": "/cGxouSdw4SoGE5Soxlj6KnpZObE.jpg", "order": 4}, {"name": "James Darren", "character": "Pvt. Spyros Pappadimos", "id": 100318, "credit_id": "52fe43cf9251416c7501f065", "cast_id": 14, "profile_path": "/5zG5hPKxajSj5LGtXiLj938IpCG.jpg", "order": 5}, {"name": "Irene Papas", "character": "Maria Pappadimos", "id": 18847, "credit_id": "52fe43cf9251416c7501f069", "cast_id": 15, "profile_path": "/tJ0ErVqe8bmqz5vuU9iJLwiBGle.jpg", "order": 6}, {"name": "Gia Scala", "character": "Anna", "id": 91639, "credit_id": "52fe43cf9251416c7501f06d", "cast_id": 16, "profile_path": "/2zznYhC2xG6833AZQml2Jo1ClEB.jpg", "order": 7}, {"name": "James Robertson Justice", "character": "Commodore Jensen / Prologue Narrator", "id": 11130, "credit_id": "52fe43cf9251416c7501f071", "cast_id": 17, "profile_path": "/4HlWt2MBP1R34CdCsQGQFi4TUrg.jpg", "order": 8}, {"name": "Richard Harris", "character": "Squadron Leader Howard Barnsby RAAF", "id": 194, "credit_id": "52fe43cf9251416c7501f075", "cast_id": 18, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 9}, {"name": "Bryan Forbes", "character": "Cohn", "id": 31439, "credit_id": "52fe43cf9251416c7501f079", "cast_id": 19, "profile_path": "/2jVyi8jPtZ84FTmVt7Zc6DxvB09.jpg", "order": 10}, {"name": "Allan Cuthbertson", "character": "Maj. Baker", "id": 47860, "credit_id": "52fe43cf9251416c7501f07d", "cast_id": 20, "profile_path": "/v76kZbEXg5IHVZxc7Xff9EchukU.jpg", "order": 11}, {"name": "Michael Trubshawe", "character": "Weaver", "id": 107540, "credit_id": "52fe43cf9251416c7501f081", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Percy Herbert", "character": "Sgt. Grogan", "id": 33220, "credit_id": "52fe43cf9251416c7501f085", "cast_id": 22, "profile_path": "/5ZUj6cyhZ237SbeyF5fwAv2jvjD.jpg", "order": 13}, {"name": "George Mikell", "character": "SS Hauptman Sessler", "id": 137383, "credit_id": "52fe43cf9251416c7501f089", "cast_id": 23, "profile_path": "/ak4YIVTrl5KWuxbIW9n7tOjtxzp.jpg", "order": 14}], "directors": [{"name": "J. Lee Thompson", "department": "Directing", "job": "Director", "credit_id": "52fe43cf9251416c7501f033", "profile_path": "/mAJwhh1RABqN6P7pNxPE21nTOUF.jpg", "id": 18669}, {"name": "Alexander Mackendrick", "department": "Directing", "job": "Director", "credit_id": "52fe43cf9251416c7501f039", "profile_path": "/ydhfNeN3bHmiFNcGcMS6kATJHEB.jpg", "id": 14566}], "vote_average": 7.6, "runtime": 158}, "1819": {"poster_path": "/mtdjrysC3phP4ZtCjdTJsHfZtIU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130431368, "overview": "After standing in as best man for his longtime friend Carl Petersen, Randy Dupree loses his job, becomes a barfly and attaches himself to the newlywed couple almost permanently -- as their houseguest. But the longer Dupree camps out on their couch, the closer he gets to Carl's bride, Molly, leaving the frustrated groom wondering when his pal will be moving out.", "video": false, "id": 1819, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "You, Me and Dupree", "tagline": "Two's company. Dupree's a crowd.", "vote_count": 103, "homepage": "http://www.youmeanddupree.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0463034", "adult": false, "backdrop_path": "/tJCyWjBGSkuzPH6fkYYi5ubBGC7.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-07-14", "popularity": 0.626986094718651, "original_title": "You, Me and Dupree", "budget": 54000000, "cast": [{"name": "Kate Hudson", "character": "Molly", "id": 11661, "credit_id": "52fe4317c3a36847f8039a87", "cast_id": 4, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Dupree", "id": 887, "credit_id": "52fe4317c3a36847f8039a8b", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Carl", "id": 2876, "credit_id": "52fe4317c3a36847f8039a8f", "cast_id": 6, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Michael Douglas", "character": "Mr. Thompson", "id": 3392, "credit_id": "52fe4317c3a36847f8039a93", "cast_id": 7, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 3}, {"name": "Seth Rogen", "character": "Neil", "id": 19274, "credit_id": "52fe4317c3a36847f8039a97", "cast_id": 8, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 4}, {"name": "Amanda Detmer", "character": "Annie", "id": 19275, "credit_id": "52fe4318c3a36847f8039a9b", "cast_id": 9, "profile_path": "/egJuJpoKVr9ZXsWYkBlGeqZZTEd.jpg", "order": 5}, {"name": "Ralph Ting", "character": "Toshi", "id": 19276, "credit_id": "52fe4318c3a36847f8039a9f", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Todd Stashwick", "character": "Tony", "id": 19277, "credit_id": "52fe4318c3a36847f8039aa3", "cast_id": 11, "profile_path": "/vTY2rqUPQnY3gZNRyoebOZPpsmr.jpg", "order": 7}, {"name": "Bill Hader", "character": "Mark", "id": 19278, "credit_id": "52fe4318c3a36847f8039aa7", "cast_id": 12, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 8}, {"name": "Lance Armstrong", "character": "Himself", "id": 19279, "credit_id": "52fe4318c3a36847f8039aab", "cast_id": 13, "profile_path": "/3kwzkBuq0PlDpm9bm6C0YdTq015.jpg", "order": 9}, {"name": "Suzanne Ford", "character": "Thompson's Secretary", "id": 19280, "credit_id": "52fe4318c3a36847f8039aaf", "cast_id": 14, "profile_path": "/3NBp6jtQxIaDsMnelRr7VIAE8R.jpg", "order": 10}, {"name": "Claudia Choi", "character": "Carl's Secretary", "id": 19281, "credit_id": "52fe4318c3a36847f8039ab3", "cast_id": 15, "profile_path": "/2PFjE0wjABq22NfzHt9Q32LV8Ib.jpg", "order": 11}], "directors": [{"name": "Anthony Russo", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039a77", "profile_path": "/mwokQ8u2RgeFRkDUtcNctTgd8bg.jpg", "id": 19271}, {"name": "Joe Russo", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039a7d", "profile_path": "/5bMVczVDqLJFpfLQZhQ4hhwkSQD.jpg", "id": 19272}], "vote_average": 5.3, "runtime": 108}, "51876": {"poster_path": "/hGHmdbovLuPi1Vdr6JLp7LhqZ3s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161849455, "overview": "A paranoia-fuelled action thriller about an unsuccessful writer whose life is transformed by a top-secret \"smart drug\" that allows him to use 100% of his brain and become a perfect version of himself. His enhanced abilities soon attract shadowy forces that threaten his new life in this darkly comic and provocative film.", "video": false, "id": 51876, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Limitless", "tagline": "What if a pill could make you rich and powerful?", "vote_count": 1236, "homepage": "http://www.iamrogue.com/limitless/fullsite/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1219289", "adult": false, "backdrop_path": "/9ISArgiVBdNLASKmvflRDMOYYMj.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Virgin Produced", "id": 8852}, {"name": "Many Rivers Productions", "id": 8854}, {"name": "Boy of the Year", "id": 8855}, {"name": "Intermedia", "id": 8856}, {"name": "Rogue Pictures", "id": 134}], "release_date": "2011-03-08", "popularity": 1.17057997363083, "original_title": "Limitless", "budget": 27000000, "cast": [{"name": "Bradley Cooper", "character": "Eddie Morra", "id": 51329, "credit_id": "52fe4809c3a36847f81552c9", "cast_id": 2, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Carl Van Loon", "id": 380, "credit_id": "52fe4809c3a36847f81552cd", "cast_id": 3, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Abbie Cornish", "character": "Lindy", "id": 37260, "credit_id": "52fe4809c3a36847f81552d1", "cast_id": 4, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 2}, {"name": "Andrew Howard", "character": "Gennady", "id": 67206, "credit_id": "52fe4809c3a36847f81552d5", "cast_id": 5, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 3}, {"name": "Anna Friel", "character": "Melissa", "id": 58016, "credit_id": "52fe4809c3a36847f81552d9", "cast_id": 6, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 4}, {"name": "Johnny Whitworth", "character": "Vernon", "id": 73589, "credit_id": "52fe4809c3a36847f81552dd", "cast_id": 7, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 5}, {"name": "Robert John Burke", "character": "Pierce", "id": 31512, "credit_id": "52fe4809c3a36847f81552e1", "cast_id": 8, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 6}, {"name": "Darren Goldstein", "character": "Kevin Doyle", "id": 164242, "credit_id": "52fe4809c3a36847f81552e5", "cast_id": 9, "profile_path": "/cSY244Drv8JO0Kwgf0rMmo93dc9.jpg", "order": 7}, {"name": "Tomas Arana", "character": "Man in Tan Coat", "id": 941, "credit_id": "5304cdbc92514104cc1b6142", "cast_id": 34, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 8}, {"name": "Ned Eisenberg", "character": "Morris Brandt", "id": 137529, "credit_id": "5304cdd392514104bb1e9ab9", "cast_id": 35, "profile_path": "/ohy0wy7JbQCD0qPqtLJ3NcxJ8C8.jpg", "order": 9}, {"name": "T.V. Carpio", "character": "Valerie", "id": 38944, "credit_id": "5304cde092514104be1cc9aa", "cast_id": 36, "profile_path": "/a62I1Ke8gvNxSfajHhCe2PyVlvu.jpg", "order": 10}, {"name": "Richard Bekins", "character": "Hank Atwood", "id": 59691, "credit_id": "5304cdee92514104be1cce05", "cast_id": 37, "profile_path": "/zNn7lSWpuiWIUriG48GfO6OzSLS.jpg", "order": 11}, {"name": "Patricia Kalember", "character": "Mrs. Atwood", "id": 23627, "credit_id": "5304cdfc92514104b51b17d2", "cast_id": 38, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 12}, {"name": "Cindy Katz", "character": "Marla Sutton", "id": 161939, "credit_id": "5304ce0f92514104d51ecf5a", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Brian Anthony Wilson", "character": "Detective", "id": 127070, "credit_id": "5304ce2292514104cc1b8f40", "cast_id": 40, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 14}], "directors": [{"name": "Neil Burger", "department": "Directing", "job": "Director", "credit_id": "52fe4809c3a36847f81552c5", "profile_path": "/eUDHt2OWYnCwC8FOVIgU2uTPK3x.jpg", "id": 17329}], "vote_average": 6.8, "runtime": 105}, "10923": {"poster_path": "/bVw0GpAhBvnlZcySdmNvwmcHgjO.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58795814, "overview": "Recruited by the U.S. government to be a special agent, nerdy teenager Cody Banks must get closer to cute classmate Natalie in order to learn about an evil plan hatched by her father. But despite the agent persona, Cody struggles with teen angst.", "video": false, "id": 10923, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Agent Cody Banks", "tagline": "Save the world. Get the girl. Pass math.", "vote_count": 70, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gh0OZpG16E5LtTAkCRkr5j0v1Fh.jpg", "poster_path": "/bVw0GpAhBvnlZcySdmNvwmcHgjO.jpg", "id": 91427, "name": "Agent Cody Banks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0313911", "adult": false, "backdrop_path": "/7sW3r7gqpoalBTsEi6SbBdmEYP7.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2003-03-14", "popularity": 0.698561843258111, "original_title": "Agent Cody Banks", "budget": 28000000, "cast": [{"name": "Frankie Muniz", "character": "Cody Banks", "id": 51391, "credit_id": "52fe43d19251416c7501f677", "cast_id": 1, "profile_path": "/pjVw8EUl3zQR5dP4wRy5spSR9ws.jpg", "order": 0}, {"name": "Hilary Duff", "character": "Natalie Connors", "id": 5958, "credit_id": "52fe43d19251416c7501f67b", "cast_id": 2, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 1}, {"name": "Angie Harmon", "character": "Ronica Miles", "id": 52929, "credit_id": "52fe43d19251416c7501f67f", "cast_id": 3, "profile_path": "/oFsZQuVxgMm9yUl0dZe4ROznIex.jpg", "order": 2}, {"name": "Keith David", "character": "CIA Director", "id": 65827, "credit_id": "52fe43d19251416c7501f683", "cast_id": 4, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 3}, {"name": "Cynthia Stevenson", "character": "Mrs. Banks", "id": 65528, "credit_id": "52fe43d19251416c7501f687", "cast_id": 5, "profile_path": "/b59DN25UqjxOLHVBFLMtbiOwn0W.jpg", "order": 4}, {"name": "Noel Fisher", "character": "Fenster", "id": 80352, "credit_id": "53ee7f340e0a26191e002861", "cast_id": 27, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 5}, {"name": "Darrell Hammond", "character": "Earl", "id": 58954, "credit_id": "53ee7f5e0e0a267a7100121e", "cast_id": 28, "profile_path": "/gxLHYyptnLLtak6E5eR7HqvMXRM.jpg", "order": 6}, {"name": "Martin Donovan", "character": "Dr. Connors", "id": 42993, "credit_id": "5512d758c3a3681db200fedf", "cast_id": 29, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 7}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe43d19251416c7501f68d", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 4.8, "runtime": 102}, "10925": {"poster_path": "/1vydUitzC8W8W5oNevEArCltydJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14237000, "overview": "When a bumbling pair of employees at a medical supply warehouse accidentally release a deadly gas into the air, the vapors cause the dead to re-animate as they go on a rampage seeking their favorite food: brains!", "video": false, "id": 10925, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "The Return of the Living Dead", "tagline": "They're Back From The Grave and Ready To Party!", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sgOyuSHKowya0OJprukWUpXsZGq.jpg", "poster_path": "/tqIP7Hnwqpj9tsKkbALmVrwzvtl.jpg", "id": 101471, "name": "Return of the Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089907", "adult": false, "backdrop_path": "/j07uv5zbzHCj7uFg62wR72i58u7.jpg", "production_companies": [{"name": "Hemdale Film Corporation", "id": 469}, {"name": "Fox Films Ltd.", "id": 4763}, {"name": "Cinema 84", "id": 4764}], "release_date": "1985-08-16", "popularity": 0.52916925346436, "original_title": "The Return of the Living Dead", "budget": 4000000, "cast": [{"name": "Clu Gulager", "character": "Burt Wilson", "id": 62019, "credit_id": "52fe43d19251416c7501f73b", "cast_id": 1, "profile_path": "/bjmydNfO5v5LocgBGTmCcBSSe6A.jpg", "order": 0}, {"name": "James Karen", "character": "Frank", "id": 14852, "credit_id": "52fe43d19251416c7501f73f", "cast_id": 2, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 1}, {"name": "Don Calfa", "character": "Ernie Kaltenbrunner", "id": 41262, "credit_id": "52fe43d29251416c7501f743", "cast_id": 3, "profile_path": "/4jnB2f6ADtC7pIuvGCzuZUzQhAn.jpg", "order": 2}, {"name": "Thom Mathews", "character": "Freddy", "id": 64198, "credit_id": "52fe43d29251416c7501f747", "cast_id": 4, "profile_path": "/xRAZ4YVZbX34vJw1tKGWgkqOq0P.jpg", "order": 3}, {"name": "Linnea Quigley", "character": "Trash", "id": 97619, "credit_id": "52fe43d29251416c7501f781", "cast_id": 14, "profile_path": "/nvOxpSqSQWwS5rUUMCGp30FcLCF.jpg", "order": 4}, {"name": "Beverly Randolph", "character": "Tina", "id": 536499, "credit_id": "52fe43d29251416c7501f785", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "John Philbin", "character": "Chuck", "id": 103011, "credit_id": "52fe43d29251416c7501f789", "cast_id": 16, "profile_path": "/hVRZLok1DmiiUQ5lBXOYx04Ibk4.jpg", "order": 6}, {"name": "Jewel Shepard", "character": "Casey", "id": 106669, "credit_id": "52fe43d29251416c7501f78d", "cast_id": 17, "profile_path": "/fWYq5bvnmfytgYDbLD24a16p5SG.jpg", "order": 7}, {"name": "Miguel A. N\u00fa\u00f1ez, Jr.", "character": "Spider (as Miguel Nunez)", "id": 74354, "credit_id": "52fe43d29251416c7501f791", "cast_id": 18, "profile_path": "/7uju1sYJOoT78cHpxVk0Sspo3S7.jpg", "order": 8}, {"name": "Brian Peck", "character": "Scuz", "id": 93149, "credit_id": "52fe43d29251416c7501f795", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Mark Venturini", "character": "Suicide", "id": 179625, "credit_id": "52fe43d29251416c7501f799", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jonathan Terry", "character": "Colonel Glover", "id": 97953, "credit_id": "52fe43d29251416c7501f79d", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Cathleen Cordell", "character": "Colonel's Wife", "id": 153422, "credit_id": "52fe43d29251416c7501f7a1", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Drew Deighan", "character": "Paramedic #1", "id": 949636, "credit_id": "52fe43d29251416c7501f7a5", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "James Dalesandro", "character": "Paramedic #2", "id": 155907, "credit_id": "52fe43d29251416c7501f7a9", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Dan O'Bannon", "department": "Directing", "job": "Director", "credit_id": "52fe43d29251416c7501f753", "profile_path": "/slLZWXZ1lmdF763166ATRRI200n.jpg", "id": 5045}], "vote_average": 7.1, "runtime": 91}, "174772": {"poster_path": "/hXRqbBilaYTUg8t10pJawynDFFB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A crew of international astronauts are sent on a private mission to Jupiter's fourth moon.", "video": false, "id": 174772, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Europa Report", "tagline": "Fear. Sacrifice. Contact.", "vote_count": 180, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2051879", "adult": false, "backdrop_path": "/w7duQ0vVhhKmhq8VpJgVjbr3NeR.jpg", "production_companies": [{"name": "Wayfare Entertainment", "id": 5703}, {"name": "Misher Films", "id": 11581}, {"name": "Start Motion Pictures", "id": 19961}], "release_date": "2013-06-27", "popularity": 0.81649471005053, "original_title": "Europa Report", "budget": 125687, "cast": [{"name": "Sharlto Copley", "character": "James Corrigan", "id": 82191, "credit_id": "52fe4d51c3a36847f825a8f1", "cast_id": 1, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Daniel Wu", "character": "William Xu", "id": 64436, "credit_id": "52fe4d51c3a36847f825a8f5", "cast_id": 2, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 1}, {"name": "Michael Nyqvist", "character": "Andrei Blok", "id": 6283, "credit_id": "52fe4d51c3a36847f825a8f9", "cast_id": 3, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 2}, {"name": "Christian Camargo", "character": "Dr. Daniel Luxembourg", "id": 122029, "credit_id": "52fe4d51c3a36847f825a8fd", "cast_id": 4, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 3}, {"name": "Karolina Wydra", "character": "Dr. Katya Petrovna", "id": 210829, "credit_id": "52fe4d51c3a36847f825a901", "cast_id": 5, "profile_path": "/rh3Tczs80TxVZqVCCqidAbho8CW.jpg", "order": 4}, {"name": "Anamaria Marinca", "character": "Rosa Dasque", "id": 20699, "credit_id": "52fe4d51c3a36847f825a905", "cast_id": 6, "profile_path": "/ajLN2RMuYHgTEFAzs8x8vZH0Rlu.jpg", "order": 5}, {"name": "Embeth Davidtz", "character": "Dr. Samantha Unger", "id": 6368, "credit_id": "52fe4d51c3a36847f825a90f", "cast_id": 9, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 6}, {"name": "Dan Fogler", "character": "Dan Fogler", "id": 58873, "credit_id": "54f5c682c3a3683502002618", "cast_id": 58, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 7}, {"name": "Dan Fogler", "character": "Dr. Sokolov", "id": 58873, "credit_id": "54f5c691c3a36834fd0023bd", "cast_id": 59, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 8}, {"name": "Isiah Whitlock, Jr.", "character": "Dr. Pamuk", "id": 17490, "credit_id": "54f5c6b39251412ba20024b3", "cast_id": 60, "profile_path": "/yLaKPYOvrea7dU0Xa86SY1WN7Gc.jpg", "order": 9}], "directors": [{"name": "Sebasti\u00e1n Cordero", "department": "Directing", "job": "Director", "credit_id": "52fe4d51c3a36847f825a90b", "profile_path": null, "id": 86255}], "vote_average": 6.1, "runtime": 90}, "150202": {"poster_path": "/fmMxrwMW6MVxPHLgjY7NTP5olIY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sequel to the 2009 mezzo-mezzo supernatural horror purporting to be based on a true story in which a cancer-afflicted teen starts seeing things in the new Victorian house he and his family moved into.", "video": false, "id": 150202, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Haunting in Connecticut 2: Ghosts of Georgia", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1sWTV5QaoDnBTTSbElUfe5zBcu2.jpg", "poster_path": "/6uIGXwqIfdg0IQw3bvfS49VMKHh.jpg", "id": 169740, "name": "The Haunting in Connecticut Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1457765", "adult": false, "backdrop_path": "/gv4vhStXehlD3S6mxciqmuIK4kh.jpg", "production_companies": [{"name": "Gold Circle Films", "id": 12026}], "release_date": "2013-02-01", "popularity": 0.203805002784917, "original_title": "The Haunting in Connecticut 2: Ghosts of Georgia", "budget": 0, "cast": [{"name": "Chad Michael Murray", "character": "", "id": 62747, "credit_id": "52fe4adb9251416c910c80bb", "cast_id": 3, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 0}, {"name": "Katee Sackhoff", "character": "", "id": 51798, "credit_id": "52fe4adb9251416c910c80bf", "cast_id": 4, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 1}, {"name": "Abigail Spencer", "character": "", "id": 123725, "credit_id": "52fe4adb9251416c910c80c3", "cast_id": 5, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 2}, {"name": "Cicely Tyson", "character": "", "id": 18249, "credit_id": "52fe4adb9251416c910c80c7", "cast_id": 6, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 3}, {"name": "Emily Alyn Lind", "character": "", "id": 112742, "credit_id": "52fe4adb9251416c910c80cb", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Andrea Frankle", "character": "", "id": 946356, "credit_id": "52fe4adb9251416c910c80cf", "cast_id": 8, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 5}, {"name": "Lauren Pennington", "character": "", "id": 1137888, "credit_id": "52fe4adb9251416c910c80d3", "cast_id": 9, "profile_path": "/bnN4ihzU4ql7McXZpvIMnG2iMDP.jpg", "order": 6}], "directors": [{"name": "Tom Elkins", "department": "Directing", "job": "Director", "credit_id": "52fe4adb9251416c910c80b1", "profile_path": null, "id": 51795}], "vote_average": 5.7, "runtime": 101}, "248507": {"poster_path": "/b4fFxsZvCxH16raJwf7PRMGiy4E.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Roman Faubert is one man who, almost 40 years, has neither wife nor child. The business that photographer for online medical dictionary, does not help a sickly hypochondriac who guides his lifestyle for far too long and made him a neurotic coward.", "video": false, "id": 248507, "genres": [{"id": 35, "name": "Comedy"}], "title": "Superchondriac", "tagline": "", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3421514", "adult": false, "backdrop_path": "/anbyB6Aw4AaAFplCGfT4ODZ0lNZ.jpg", "production_companies": [{"name": "TF1 Films Productions", "id": 356}, {"name": "TF1", "id": 22123}, {"name": "Path\u00e9 Distribution", "id": 3012}, {"name": "Les Productions du Ch'timi", "id": 23441}, {"name": "Art\u00e9mis Productions", "id": 11773}, {"name": "Fortis Film Fund", "id": 23081}, {"name": "Casa Kafka Pictures", "id": 11924}, {"name": "Tax Shelter Film Funding", "id": 15893}, {"name": "La Wallonie", "id": 33956}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}], "release_date": "2014-02-26", "popularity": 0.438059228402338, "original_title": "Supercondriaque", "budget": 0, "cast": [{"name": "Dany Boon", "character": "Romain Faubert", "id": 37627, "credit_id": "52fe4f33c3a36847f82c5081", "cast_id": 2, "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "order": 0}, {"name": "Kad Merad", "character": "Dr Dimitri Zvenka", "id": 22306, "credit_id": "52fe4f33c3a36847f82c5085", "cast_id": 3, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 1}, {"name": "Alice Pol", "character": "Anna Zvenka", "id": 129168, "credit_id": "52fe4f33c3a36847f82c5089", "cast_id": 4, "profile_path": "/iIZXvCswvL0liBt6CsvteBnqKCq.jpg", "order": 2}, {"name": "Jean-Yves Berteloot", "character": "Anton Miroslav", "id": 34259, "credit_id": "52fe4f33c3a36847f82c508d", "cast_id": 5, "profile_path": "/fJzUeNDhSZmKSmjaIW5dHhTwdYS.jpg", "order": 3}, {"name": "Judith El Zein", "character": "Norah Zvenka", "id": 64590, "credit_id": "52fe4f33c3a36847f82c5091", "cast_id": 6, "profile_path": "/hNOoT8PHPll504DgweJMpE0oscu.jpg", "order": 4}, {"name": "Marthe Villalonga", "character": "la m\u00e8re de Dimitri", "id": 25181, "credit_id": "52fe4f33c3a36847f82c5095", "cast_id": 7, "profile_path": "/7dV8WmNp5dB18eMAF8Zch5A3cnT.jpg", "order": 5}, {"name": "Val\u00e9rie Bonneton", "character": "Isabelle", "id": 54324, "credit_id": "52fe4f34c3a36847f82c5099", "cast_id": 8, "profile_path": "/uqWDC3lrOjD87OI3Lfg3QEqENbL.jpg", "order": 6}, {"name": "Bruno Lochet", "character": "le flic de l'immigration", "id": 71377, "credit_id": "52fe4f34c3a36847f82c509d", "cast_id": 9, "profile_path": "/aYltrcpgwa9CxSD2wy1UfFp9u4q.jpg", "order": 7}, {"name": "J\u00e9r\u00f4me Commandeur", "character": "Guillaume Lempreur", "id": 54170, "credit_id": "542ed37e0e0a26259600035e", "cast_id": 10, "profile_path": "/oD7b6OOvypJxHDLScoNkEpxnRPA.jpg", "order": 8}, {"name": "Jonathan Cohen", "character": "Marc", "id": 129765, "credit_id": "542ed3880e0a26258f000336", "cast_id": 11, "profile_path": "/li3fqJckKNZWsBPWhEXxYzYJSVD.jpg", "order": 9}, {"name": "Warren Zavatta", "character": "Marc Harris", "id": 62451, "credit_id": "542ed3930e0a262596000365", "cast_id": 12, "profile_path": "/1e5Nmrls6h469gRb95gzKxEstZE.jpg", "order": 10}, {"name": "St\u00e9phane De Groodt", "character": "l'avocat de Romain", "id": 97085, "credit_id": "542ed3a00e0a26259900032f", "cast_id": 13, "profile_path": "/cCw50gGyGzGoTL0P7nETDoQuwDt.jpg", "order": 11}, {"name": "Etienne Chicot", "character": "un m\u00e9decin", "id": 150792, "credit_id": "542ed3ad0e0a262596000369", "cast_id": 14, "profile_path": "/pYbudifKWa0sYY5QkQc5YKLHfMf.jpg", "order": 12}, {"name": "Guy Lecluyse", "character": "le malade avec un chat dans la gorge", "id": 52348, "credit_id": "542ed3c1c3a3680436000353", "cast_id": 15, "profile_path": "/w7zCQreyVrMIpkerskuXbivGlYI.jpg", "order": 13}, {"name": "Gudule", "character": "une voisine", "id": 1370583, "credit_id": "542ed3cec3a36804320002f6", "cast_id": 16, "profile_path": null, "order": 14}], "directors": [{"name": "Dany Boon", "department": "Directing", "job": "Director", "credit_id": "52fe4f33c3a36847f82c507d", "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "id": 37627}], "vote_average": 5.7, "runtime": 107}, "9620": {"poster_path": "/fvp8I0d21MMbpd0Z8HMeGZXMKGU.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96269812, "overview": "Michael Jennings is a genius who's hired -- and paid handsomely -- by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he's incapable of breaching security. But at the end of a three-year job, he's told he isn't getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn't paid \u2026 and how he's gotten in hot water.", "video": false, "id": 9620, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Paycheck", "tagline": "Remember the future.", "vote_count": 155, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338337", "adult": false, "backdrop_path": "/pJB1yZ4nGiU8M2H8Wit5HEbUp5s.jpg", "production_companies": [{"name": "Province of British Columbia Film Incentive BC", "id": 11567}, {"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Lion Rock Productions", "id": 2812}, {"name": "Solomon/Hackett Productions", "id": 22536}], "release_date": "2003-12-25", "popularity": 0.963963345382497, "original_title": "Paycheck", "budget": 60000000, "cast": [{"name": "Ben Affleck", "character": "Michael Jennings", "id": 880, "credit_id": "52fe4512c3a36847f80bac6f", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "James Rethrick", "id": 6383, "credit_id": "52fe4512c3a36847f80bac73", "cast_id": 8, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Uma Thurman", "character": "Dr. Rachel Porte", "id": 139, "credit_id": "52fe4512c3a36847f80bac77", "cast_id": 9, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Shorty", "id": 13242, "credit_id": "52fe4512c3a36847f80bac7b", "cast_id": 10, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Colm Feore", "character": "Wolfe", "id": 10132, "credit_id": "52fe4512c3a36847f80bac8b", "cast_id": 13, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 4}, {"name": "Joe Morton", "character": "Agent Dodge", "id": 3977, "credit_id": "52fe4512c3a36847f80bac8f", "cast_id": 14, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "Michael C. Hall", "character": "Agent Klein", "id": 53820, "credit_id": "52fe4512c3a36847f80bac93", "cast_id": 15, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 6}, {"name": "Peter Friedman", "character": "Attorney General Brown", "id": 54246, "credit_id": "52fe4512c3a36847f80bac97", "cast_id": 16, "profile_path": "/1plom5G0I425wj8l8xXhnvaFcPs.jpg", "order": 7}, {"name": "Kathryn Morris", "character": "Rita Dunne", "id": 2208, "credit_id": "52fe4512c3a36847f80bac9b", "cast_id": 17, "profile_path": "/kacv3Og9yU1bp6RJGb4Asnhsavt.jpg", "order": 8}, {"name": "Ivana Mili\u010devi\u0107", "character": "Maya-Rachel", "id": 29930, "credit_id": "52fe4512c3a36847f80bac9f", "cast_id": 18, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 9}, {"name": "Christopher Kennedy", "character": "Stevens", "id": 172822, "credit_id": "5469b54e22136e68da0027e0", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Fulvio Cecere", "character": "Agent Fuman", "id": 65808, "credit_id": "5469b561eaeb816b4b002ad2", "cast_id": 24, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 11}, {"name": "John Cassini", "character": "Agent Mitchell", "id": 12055, "credit_id": "5469b572eaeb816b4f002a42", "cast_id": 25, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 12}, {"name": "Callum Keith Rennie", "character": "Jude - Guard", "id": 540, "credit_id": "5469b583eaeb816b4b002ad6", "cast_id": 26, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 13}, {"name": "Michelle Harrison", "character": "Jane", "id": 59240, "credit_id": "5469b59222136e68c9002f79", "cast_id": 27, "profile_path": "/oRsgaQcINUjFgPeffNJNOTnx9uB.jpg", "order": 14}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bac81", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.9, "runtime": 119}, "2752": {"poster_path": "/bIyZfvT4kwfR6pus69kpbQKIokJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When easy-on-the-eyes Matt Sullivan is dumped by his girlfriend, he swears off all sex for Lent, which lasts 40 days and 40 nights. But his abstinence is tested when he meets beautiful and sexy Erica Sutton. Feeling like he's doomed if he doesn't stick to his plan, he struggles to resist the girl of his dreams.", "video": false, "id": 2752, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "40 Days and 40 Nights", "tagline": "One Man Is About To Do The Unthinkable. No Sex. Whatsoever. For...", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243736", "adult": false, "backdrop_path": "/v8qppTQ6cK8rIInke51WDi1rRM9.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}], "release_date": "2002-03-01", "popularity": 0.339850283510249, "original_title": "40 Days and 40 Nights", "budget": 17000000, "cast": [{"name": "Josh Hartnett", "character": "Matt Sulivan", "id": 2299, "credit_id": "52fe436ac3a36847f8052687", "cast_id": 1, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Shannyn Sossamon", "character": "Erica Sutton", "id": 27855, "credit_id": "52fe436ac3a36847f805268b", "cast_id": 2, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 1}, {"name": "Adam Trese", "character": "John Sullivan", "id": 27858, "credit_id": "52fe436ac3a36847f805268f", "cast_id": 4, "profile_path": "/zV9wi8IWumLMNP7qm3lFV9jyae7.jpg", "order": 3}, {"name": "Emmanuelle Vaugier", "character": "Susie", "id": 2684, "credit_id": "52fe436ac3a36847f8052693", "cast_id": 5, "profile_path": "/k8bjOJmREhKUHeUj33Sihnk89V9.jpg", "order": 4}, {"name": "Barry Newman", "character": "Walter Sullivan", "id": 27860, "credit_id": "52fe436ac3a36847f8052697", "cast_id": 6, "profile_path": "/vAl1PUv9PDy5WMfBLXmhRUhcqVO.jpg", "order": 5}, {"name": "Mary Gross", "character": "Bev Sullivan", "id": 27862, "credit_id": "52fe436ac3a36847f805269b", "cast_id": 7, "profile_path": "/2gk7Ld7Ah3QveJCMJvUH0LQrO9u.jpg", "order": 6}, {"name": "Paulo Costanzo", "character": "Ryan", "id": 57133, "credit_id": "52fe436ac3a36847f80526e1", "cast_id": 19, "profile_path": "/7ALI5nYarzuLGjsQA3NuvTKvy9h.jpg", "order": 7}, {"name": "Keegan Connor Tracy", "character": "Mandy", "id": 42710, "credit_id": "52fe436ac3a36847f80526e5", "cast_id": 20, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 8}, {"name": "Maggie Gyllenhaal", "character": "Sam", "id": 1579, "credit_id": "52fe436ac3a36847f80526e9", "cast_id": 21, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 9}, {"name": "Michael C. Maronna", "character": "Bagel Boy", "id": 945734, "credit_id": "52fe436ac3a36847f80526ed", "cast_id": 22, "profile_path": null, "order": 10}], "directors": [{"name": "Michael Lehmann", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f80526a1", "profile_path": "/rM0KmE5Fr9zAi5gzQv9bc78Q1GX.jpg", "id": 7145}], "vote_average": 5.3, "runtime": 96}, "10016": {"poster_path": "/imbaEfMwIMKEtD4OTosktJ4VX1R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8709640, "overview": "Melanie Ballard (Natasha Henstridge) is a hard nosed police chief in the year 2025. She and a police snatch squad are sent to Mars to apprehend a dangerous criminal James Williams (Ice Cube). Mars has been occupied by humans for some time and they have set up mining facilities. The mining activities on Mars have unleashed the spirits of alien beings who gradually possess the bodies of the workers. It soon turns out that catching the dangerous fugitive takes a back seat as the alien spirits begin to rid their planet of the 'invaders'.", "video": false, "id": 10016, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Ghosts of Mars", "tagline": "Terror is the same on any planet.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0228333", "adult": false, "backdrop_path": "/rdrA8jUAUe6VVr2umZQzbpkDxEC.jpg", "production_companies": [{"name": "Animationwerks", "id": 51312}, {"name": "Screen Gems", "id": 3287}, {"name": "Storm King Productions", "id": 23895}], "release_date": "2001-08-24", "popularity": 0.995290764884802, "original_title": "Ghosts of Mars", "budget": 28000000, "cast": [{"name": "Natasha Henstridge", "character": "Lt. Melanie Ballard", "id": 57395, "credit_id": "52fe43089251416c75000d71", "cast_id": 10, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 0}, {"name": "Ice Cube", "character": "James 'Desolation' Williams", "id": 9778, "credit_id": "52fe43089251416c75000d75", "cast_id": 11, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 1}, {"name": "Jason Statham", "character": "Sgt. Jericho Butler", "id": 976, "credit_id": "52fe43089251416c75000d79", "cast_id": 12, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Clea DuVall", "character": "Bashira Kincaid", "id": 20387, "credit_id": "52fe43089251416c75000d7d", "cast_id": 13, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 3}, {"name": "Pam Grier", "character": "Commander Helena Braddock", "id": 2230, "credit_id": "52fe43089251416c75000d81", "cast_id": 14, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 4}, {"name": "Joanna Cassidy", "character": "Dr. Arlene Whitlock", "id": 593, "credit_id": "52fe43089251416c75000d85", "cast_id": 15, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 5}, {"name": "Richard Cetrone", "character": "Big Daddy Mars", "id": 12371, "credit_id": "52fe43089251416c75000d95", "cast_id": 18, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 6}, {"name": "Rosemary Forsyth", "character": "Inquisitor", "id": 49958, "credit_id": "52fe43089251416c75000dab", "cast_id": 22, "profile_path": "/tZx3Vs1ZTfwQuAnP6Ljs1AwnaU0.jpg", "order": 7}, {"name": "Lobo Sebastian", "character": "Dos", "id": 48071, "credit_id": "52fe43089251416c75000daf", "cast_id": 23, "profile_path": "/muw74umbo9s6KI22pxzc7RSNqi9.jpg", "order": 8}, {"name": "Rodney A. Grant", "character": "Tres", "id": 7853, "credit_id": "52fe43089251416c75000db3", "cast_id": 24, "profile_path": "/zJI1ES5cvy7xtEvRnRURbgW03Bf.jpg", "order": 9}, {"name": "Peter Jason", "character": "Engineer McSimms", "id": 6916, "credit_id": "52fe43089251416c75000db7", "cast_id": 25, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 10}, {"name": "Wanda De Jesus", "character": "Akooshay", "id": 57991, "credit_id": "52fe43089251416c75000dbb", "cast_id": 26, "profile_path": "/iaMj5a3Wogclzzjaa0vv2b8huVi.jpg", "order": 11}, {"name": "Liam Waite", "character": "Michael Descanso", "id": 62031, "credit_id": "52fe43089251416c75000dbf", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Duane Davis", "character": "Uno", "id": 62032, "credit_id": "52fe43089251416c75000dc3", "cast_id": 28, "profile_path": "/t9tcFEEbffaD64VZdsc0qwnPnr9.jpg", "order": 13}, {"name": "Doug McGrath", "character": "Benchley", "id": 62033, "credit_id": "52fe43089251416c75000dc7", "cast_id": 29, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 14}, {"name": "Rick Edelstein", "character": "Zimmerman", "id": 62034, "credit_id": "52fe43089251416c75000dcb", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Rex Linn", "character": "Yared", "id": 16937, "credit_id": "52fe43089251416c75000dcf", "cast_id": 31, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 16}, {"name": "Michael Krawic", "character": "Man in the Rover", "id": 62035, "credit_id": "52fe43089251416c75000dd3", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Robert Carradine", "character": "Rodale", "id": 62036, "credit_id": "52fe43089251416c75000dd7", "cast_id": 33, "profile_path": "/bHC0DdCEJ3frEWADFnTnftSmdgF.jpg", "order": 18}, {"name": "Eileen Weisinger", "character": "Woman Warrior", "id": 62037, "credit_id": "52fe43089251416c75000ddb", "cast_id": 34, "profile_path": null, "order": 19}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe43089251416c75000d3d", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 5.1, "runtime": 98}, "2755": {"poster_path": "/riJV5Bq0IXItG3ceywNWkw7il7K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105834556, "overview": "Warren Schmidt is a retired insurance salesman, who at age 66, has no particular plans other than to drive around in the motor home his wife insisted they buy. He's not altogether bitter, but not happy either, as everything his wife does annoys him, and he disapproves of the man his daughter is about to marry. When his wife suddenly dies, he sets out to postpone the imminent marriage of his daughter to a man he doesn't like, while coping with discoveries about his late wife and himself in the process.", "video": false, "id": 2755, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "About Schmidt", "tagline": "Schmidt Happens", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0257360", "adult": false, "backdrop_path": "/e24dN60wkwD6wt2i9FN2QOJWJV3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2002-12-13", "popularity": 0.423071766697407, "original_title": "About Schmidt", "budget": 30000000, "cast": [{"name": "Jack Nicholson", "character": "Warren R. Schmidt", "id": 514, "credit_id": "52fe436ac3a36847f8052821", "cast_id": 4, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Kathy Bates", "character": "Roberta Hertzel", "id": 8534, "credit_id": "52fe436ac3a36847f8052825", "cast_id": 5, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 1}, {"name": "Hope Davis", "character": "Jeannie Schmidt", "id": 15250, "credit_id": "52fe436ac3a36847f8052829", "cast_id": 6, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 2}, {"name": "Dermot Mulroney", "character": "Randall Hertzel", "id": 20212, "credit_id": "52fe436ac3a36847f8052869", "cast_id": 17, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 3}, {"name": "June Squibb", "character": "Helen Schmidt", "id": 35515, "credit_id": "52fe436ac3a36847f805286d", "cast_id": 18, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 4}, {"name": "Howard Hesseman", "character": "Larry Hertzel", "id": 35516, "credit_id": "52fe436ac3a36847f8052871", "cast_id": 19, "profile_path": "/q0glWtVUVnPoB3AoAMe8SqMRJ5e.jpg", "order": 5}, {"name": "Connie Ray", "character": "Vicki Rusk", "id": 35517, "credit_id": "52fe436ac3a36847f8052875", "cast_id": 20, "profile_path": "/yJriGT19J24uceLCxVLbE70pd9p.jpg", "order": 6}, {"name": "Harry Groener", "character": "John Rusk", "id": 35518, "credit_id": "52fe436ac3a36847f8052879", "cast_id": 21, "profile_path": "/y9Z0ZIbFDwe7V7PQEMeCyTld3zM.jpg", "order": 7}, {"name": "Mark Venhuizen", "character": "Duncan Hertzel", "id": 35519, "credit_id": "52fe436ac3a36847f805287d", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Cheryl Hamada", "character": "Saundra", "id": 35520, "credit_id": "52fe436ac3a36847f8052881", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Matt Winston", "character": "Gary Nordin", "id": 35521, "credit_id": "52fe436ac3a36847f8052885", "cast_id": 24, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 10}, {"name": "Len Cariou", "character": "Ray Nichols", "id": 41247, "credit_id": "54a11ae7c3a368554200989f", "cast_id": 25, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 11}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f8052811", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 6.6, "runtime": 125}, "10948": {"poster_path": "/99j3UwX7h2Bfe7btonaiSWoUvtQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29800000, "overview": "The fun and adventure begin when a lonely widow adopts an orphaned fox cub named Tod. The mischievous fox soon meets up with Copper, an adorable hound puppy. As the innocent pair grow up together in the forest, they become inseparable friends. But the day soon arrives when their friendship is put to the ultimate test!", "video": false, "id": 10948, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Fox and the Hound", "tagline": "Two friends that didn't know they were supposed to be enemies.", "vote_count": 212, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fEix7vMN09DUvt7nHh9qFwN9Op9.jpg", "poster_path": "/ph2KiQxp8xmgA5ENoBhETvJnYw9.jpg", "id": 100970, "name": "The Fox and the Hound Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082406", "adult": false, "backdrop_path": "/i6JYzuTiCDLF1gC3oufEalwJAQ9.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1981-07-10", "popularity": 1.10445961187644, "original_title": "The Fox and the Hound", "budget": 12000000, "cast": [{"name": "Mickey Rooney", "character": "Adult Tod (voice)", "id": 1937, "credit_id": "52fe43d79251416c7502031f", "cast_id": 1, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Adult Copper (voice)", "id": 6856, "credit_id": "52fe43d79251416c75020323", "cast_id": 2, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Pearl Bailey", "character": "Big Mama (voice)", "id": 20157, "credit_id": "52fe43d79251416c75020327", "cast_id": 3, "profile_path": "/100KJq10WmDno3xoZjDTiYUVCT1.jpg", "order": 2}, {"name": "Jack Albertson", "character": "Amos Slade (voice)", "id": 3461, "credit_id": "52fe43d79251416c7502032b", "cast_id": 4, "profile_path": "/k9oqFrLhgd6v1hGG8Jg2mluM1XL.jpg", "order": 3}, {"name": "Sandy Duncan", "character": "Vixey (voice)", "id": 88947, "credit_id": "52fe43d79251416c7502039b", "cast_id": 25, "profile_path": "/AuNmo9KppBRuHQpyAiSELrZ0R7A.jpg", "order": 4}, {"name": "Jeanette Nolan", "character": "Widow Tweed (voice)", "id": 7520, "credit_id": "52fe43d79251416c7502039f", "cast_id": 26, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 5}, {"name": "Pat Buttram", "character": "Chief (voice)", "id": 21460, "credit_id": "52fe43d79251416c750203a3", "cast_id": 27, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 6}, {"name": "John Fiedler", "character": "Porcupine (voice)", "id": 5247, "credit_id": "52fe43d79251416c750203a7", "cast_id": 28, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 7}, {"name": "John McIntire", "character": "Badger (voice)", "id": 53010, "credit_id": "52fe43d79251416c750203ab", "cast_id": 29, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 8}, {"name": "Richard Bakalyan", "character": "Dinky (voice)", "id": 12299, "credit_id": "52fe43d79251416c750203af", "cast_id": 30, "profile_path": "/flHUIu0hpigaZYXb7XfkEFmPc7j.jpg", "order": 9}, {"name": "Paul Winchell", "character": "Boomer (voice)", "id": 77548, "credit_id": "52fe43d79251416c750203b3", "cast_id": 31, "profile_path": "/hAhbU0lCkYA0yCHZb6sVKWluY3Y.jpg", "order": 10}, {"name": "Keith Coogan", "character": "Young Tod (voice)", "id": 56145, "credit_id": "52fe43d79251416c750203b7", "cast_id": 32, "profile_path": "/uAMrErJNb1IW78RkgpMq9id2ec8.jpg", "order": 11}, {"name": "Corey Feldman", "character": "Young Copper (voice)", "id": 3034, "credit_id": "52fe43d79251416c750203bb", "cast_id": 33, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 12}], "directors": [{"name": "Ted Berman", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c75020331", "profile_path": null, "id": 67604}, {"name": "Art Stevens", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c75020337", "profile_path": null, "id": 67607}, {"name": "Richard Rich", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c75020397", "profile_path": null, "id": 107274}], "vote_average": 6.7, "runtime": 83}, "2757": {"poster_path": "/5trb1V5f3IsjpZx2GiuUylowl3W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32801173, "overview": "A love-lorn script writer grows increasingly desperate in his quest to adapt the book 'The Orchid Thief'.", "video": false, "id": 2757, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Adaptation.", "tagline": "Charlie Kaufman writes the way he lives... With Great Difficulty. His Twin Brother Donald Lives the way he writes... with foolish abandon. Susan writes about life... But can't live it. John's life is a book... Waiting to be adapted. One story... Four Lives... A million ways it can end.", "vote_count": 120, "homepage": "http://www.sonypictures.com/homevideo/adaptation/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0268126", "adult": false, "backdrop_path": "/nL9o28hfjYogauJUBmMzBXbp32T.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Beverly Detroit", "id": 267}, {"name": "Propaganda Films", "id": 278}, {"name": "Clinica Estetico", "id": 1274}, {"name": "Intermedia", "id": 8856}, {"name": "Good Machine", "id": 10565}], "release_date": "2002-12-06", "popularity": 0.336992697837255, "original_title": "Adaptation.", "budget": 19000000, "cast": [{"name": "Nicolas Cage", "character": "Charlie/Donald Kaufman", "id": 2963, "credit_id": "52fe436ac3a36847f8052987", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Susan Orlean", "id": 5064, "credit_id": "52fe436ac3a36847f805298b", "cast_id": 5, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Chris Cooper", "character": "John Laroche", "id": 2955, "credit_id": "52fe436ac3a36847f805298f", "cast_id": 6, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Tilda Swinton", "character": "Valerie Thomas", "id": 3063, "credit_id": "52fe436ac3a36847f80529d3", "cast_id": 18, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 3}, {"name": "Cara Seymour", "character": "Amelia Kavan", "id": 2617, "credit_id": "52fe436ac3a36847f80529cf", "cast_id": 17, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 4}, {"name": "Ron Livingston", "character": "Marty Bowen", "id": 17402, "credit_id": "52fe436ac3a36847f80529d7", "cast_id": 19, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 5}, {"name": "Brian Cox", "character": "Robert McKee", "id": 1248, "credit_id": "52fe436ac3a36847f80529db", "cast_id": 20, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 6}, {"name": "Maggie Gyllenhaal", "character": "Caroline Cunningham", "id": 1579, "credit_id": "52fe436ac3a36847f80529df", "cast_id": 21, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 7}, {"name": "Jay Tavare", "character": "Matthew Osceola", "id": 29861, "credit_id": "52fe436ac3a36847f80529e3", "cast_id": 22, "profile_path": "/v1ILbH1HGgaB5OvAL7aGhbHFZ3R.jpg", "order": 8}, {"name": "Jim Beaver", "character": "Ranger Tony", "id": 29862, "credit_id": "52fe436ac3a36847f80529e7", "cast_id": 23, "profile_path": "/eyHu6p58acumBmJhRDrueBa2o9X.jpg", "order": 9}, {"name": "Doug Jones", "character": "Augustus Margary", "id": 17005, "credit_id": "5497caf29251417315002a8b", "cast_id": 24, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 10}, {"name": "Gary Farmer", "character": "Buster Baxley", "id": 15439, "credit_id": "5497cb2a9251417315002a93", "cast_id": 25, "profile_path": "/iiIgfaFmsL1zqXozZtAqygXpYvy.jpg", "order": 11}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f8052977", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 7.1, "runtime": 114}, "10950": {"poster_path": "/gr0jLIUd5Os0RAFH9U5iZMpQ5cw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40270895, "overview": "Sam has the mental capacity of a 7-year-old. He has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations start to become a problem and the authorities take her away. Sam shames high-priced lawyer Rita into taking his case pro bono and in turn teaches her the value of love and family.", "video": false, "id": 10950, "genres": [{"id": 18, "name": "Drama"}], "title": "I Am Sam", "tagline": "love is all you need", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0277027", "adult": false, "backdrop_path": "/mTN2pjZKWteb6B7WOGtrMx8FEpu.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2001-12-28", "popularity": 0.369053433672555, "original_title": "I Am Sam", "budget": 22000000, "cast": [{"name": "Sean Penn", "character": "Sam Dawson", "id": 2228, "credit_id": "52fe43d89251416c7502044b", "cast_id": 1, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Rita Harrison Williams", "id": 1160, "credit_id": "52fe43d89251416c7502044f", "cast_id": 2, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Dakota Fanning", "character": "Lucy Diamond Dawson", "id": 501, "credit_id": "52fe43d89251416c75020453", "cast_id": 3, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 2}, {"name": "Dianne Wiest", "character": "Annie Cassell", "id": 1902, "credit_id": "52fe43d89251416c75020457", "cast_id": 4, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 3}, {"name": "Marin Hinkle", "character": "Patricia", "id": 65760, "credit_id": "52fe43d89251416c75020473", "cast_id": 9, "profile_path": "/gqMABmd8yE6nhpdK900zqRDEjor.jpg", "order": 4}, {"name": "Loretta Devine", "character": "Margaret Calgrove", "id": 18284, "credit_id": "54a42276c3a3682f1e011fc8", "cast_id": 10, "profile_path": "/zLQFwQTFtHkb8sbFdkPNamFI7jv.jpg", "order": 5}, {"name": "Richard Schiff", "character": "Mr. Turner", "id": 31028, "credit_id": "54a4228692514117dd004d12", "cast_id": 11, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 6}, {"name": "Laura Dern", "character": "Randy Carpenter", "id": 4784, "credit_id": "54a42294c3a3682f1e011fd0", "cast_id": 12, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 7}, {"name": "Brad Silverman", "character": "Brad", "id": 1235193, "credit_id": "54a422c392514118600052a8", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Joseph Rosenberg", "character": "Joe", "id": 1407026, "credit_id": "54a422d592514117dd004d20", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Stanley DeSantis", "character": "Robert", "id": 4171, "credit_id": "54a422f3c3a368642800330c", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Doug Hutchison", "character": "Ifty", "id": 6806, "credit_id": "54a42305c3a3682f21012560", "cast_id": 16, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 11}], "directors": [{"name": "Jessie Nelson", "department": "Directing", "job": "Director", "credit_id": "52fe43d89251416c7502045d", "profile_path": null, "id": 16853}], "vote_average": 7.1, "runtime": 132}, "76487": {"poster_path": "/xClxu7PoHWMpCHHaqd3ZRdwOCnr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Italy, a woman becomes involved in a series of unauthorized exorcisms during her mission to discover what happened to her mother, who allegedly murdered three people during her own exorcism.", "video": false, "id": 76487, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Devil Inside", "tagline": "No soul is safe.", "vote_count": 76, "homepage": "http://www.devilinsidemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1560985", "adult": false, "backdrop_path": "/jp4uQV79C1WzAaVjW5hRTu1iSxd.jpg", "production_companies": [{"name": "Room 101", "id": 6302}, {"name": "Prototype", "id": 24048}], "release_date": "2012-01-06", "popularity": 0.929723279755128, "original_title": "The Devil Inside", "budget": 0, "cast": [{"name": "Fernanda Andrade", "character": "Isabella Rossi", "id": 134365, "credit_id": "52fe493dc3a368484e1214df", "cast_id": 4, "profile_path": "/rTes0DuqdCQ3gpvlV4B2OJzcCOf.jpg", "order": 0}, {"name": "Simon Quarterman", "character": "Ben", "id": 141463, "credit_id": "52fe493dc3a368484e1214e3", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Evan Helmuth", "character": "David", "id": 114036, "credit_id": "52fe493dc3a368484e1214e7", "cast_id": 6, "profile_path": "/bQz4Lz8do2JwXQ1aQ8euYn0p8Ap.jpg", "order": 2}, {"name": "Ionut Grama", "character": "Michael", "id": 579061, "credit_id": "52fe493dc3a368484e1214eb", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Suzan Crowley", "character": "Maria Rossi", "id": 94348, "credit_id": "52fe493dc3a368484e1214fb", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Bonnie Morgan", "character": "Rosa", "id": 58517, "credit_id": "52fe493dc3a368484e1214ff", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Brian D. Johnson", "character": "Lieutenant Dreyfus", "id": 1179997, "credit_id": "52fe493dc3a368484e121503", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "John Prosky", "character": "Father Christopher Aimes", "id": 42724, "credit_id": "54d3419d92514109ba002679", "cast_id": 51, "profile_path": null, "order": 7}, {"name": "Claudiu Istodor", "character": "Doctor Antonio Costa", "id": 1328110, "credit_id": "54d341cdc3a3686abf002f61", "cast_id": 52, "profile_path": null, "order": 8}, {"name": "Claudiu Trandafir", "character": "Father Robert Gallo", "id": 31639, "credit_id": "54d341edc3a3686abf002f6f", "cast_id": 53, "profile_path": null, "order": 9}], "directors": [{"name": "William Brent Bell", "department": "Directing", "job": "Director", "credit_id": "52fe493dc3a368484e1214cf", "profile_path": null, "id": 62768}], "vote_average": 4.7, "runtime": 83}, "76492": {"poster_path": "/8DGGcTCl47s1tmzSLxUNLXDcJge.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 358375603, "overview": "Dracula, who operates a high-end resort away from the human world, goes into overprotective mode when a boy discovers the resort and falls for the count's teen-aged daughter.", "video": false, "id": 76492, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Hotel Transylvania", "tagline": "Where monsters go to get away from it all", "vote_count": 952, "homepage": "http://www.welcometohotelt.com", "belongs_to_collection": {"backdrop_path": "/arH2YrpG7EVMnA4JCtzAXt9wQQJ.jpg", "poster_path": "/5BdZEDsRLYpmlhYTUvWH56Quots.jpg", "id": 185103, "name": "Hotel Transylvania Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0837562", "adult": false, "backdrop_path": "/pQPRp30zd0BSaefterJnLmh4Rs9.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}], "release_date": "2012-09-27", "popularity": 2.66955368480374, "original_title": "Hotel Transylvania", "budget": 85000000, "cast": [{"name": "Adam Sandler", "character": "Dracula (voice)", "id": 19292, "credit_id": "52fe493ec3a368484e1216ab", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Wayne (voice)", "id": 884, "credit_id": "52fe493ec3a368484e1216af", "cast_id": 3, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "David Spade", "character": "Griffin - The Invisible Man (voice)", "id": 60950, "credit_id": "52fe493ec3a368484e1216b3", "cast_id": 5, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 2}, {"name": "Kevin James", "character": "Frank / Frankenstein (voice)", "id": 32895, "credit_id": "52fe493ec3a368484e1216b7", "cast_id": 6, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 3}, {"name": "Selena Gomez", "character": "Mavis (voice)", "id": 77948, "credit_id": "52fe493ec3a368484e1216c1", "cast_id": 10, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 4}, {"name": "Andy Samberg", "character": "Jonathan (voice)", "id": 62861, "credit_id": "52fe493ec3a368484e1216c5", "cast_id": 11, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 5}, {"name": "Fran Drescher", "character": "Eunice (voice)", "id": 53122, "credit_id": "52fe493ec3a368484e1216c9", "cast_id": 12, "profile_path": "/vQxr8CRgyDkH3GTFLwacs9W9tF4.jpg", "order": 6}, {"name": "Molly Shannon", "character": "Wanda (voice)", "id": 28640, "credit_id": "52fe493ec3a368484e1216cd", "cast_id": 14, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 7}, {"name": "Cee Lo Green", "character": "Murray the Mummy (voice)", "id": 458843, "credit_id": "52fe493ec3a368484e1216d1", "cast_id": 15, "profile_path": "/zWFtm54BWktE9fp4GBAyZjmbQdN.jpg", "order": 8}, {"name": "Jon Lovitz", "character": "Quasimodo (voice)", "id": 16165, "credit_id": "52fe493ec3a368484e1216d5", "cast_id": 16, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 9}, {"name": "Rick Kavanian", "character": "Dracula (German voice)", "id": 37034, "credit_id": "5378cc550e0a26141f0054c1", "cast_id": 19, "profile_path": "/lLU5juQUAV7FXaBVO6yiYtjpYyp.jpg", "order": 10}, {"name": "Elyas M\u2019Barek", "character": "Jonathan (German voice)", "id": 25409, "credit_id": "5378cc930e0a261425005450", "cast_id": 20, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 11}, {"name": "Josefine Preu\u00df", "character": "Mavis (German voice)", "id": 25401, "credit_id": "5378ccae0e0a261419005109", "cast_id": 21, "profile_path": "/kvneY1YAGfq1uiQhjzzhihbsTsf.jpg", "order": 12}], "directors": [{"name": "Genndy Tartakovsky", "department": "Directing", "job": "Director", "credit_id": "52fe493ec3a368484e1216a7", "profile_path": null, "id": 185438}], "vote_average": 6.5, "runtime": 91}, "199373": {"poster_path": "/2bD6kKCqzsHdcDRxfpMJjSHQmey.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5496951, "overview": "An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.", "video": false, "id": 199373, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Frozen Ground", "tagline": "The hunter becomes the hunted", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2005374", "adult": false, "backdrop_path": "/ezrXYtsPg1hpSk0wXG8zUIIMqMA.jpg", "production_companies": [{"name": "Picture Perfect Corporation", "id": 27993}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Court Five", "id": 30023}, {"name": "Envision Entertainment", "id": 31832}, {"name": "Valentina Films", "id": 31833}, {"name": "K5 International", "id": 6715}, {"name": "Paradox Entertainment", "id": 6819}], "release_date": "2013-08-23", "popularity": 0.859644093407042, "original_title": "The Frozen Ground", "budget": 27220000, "cast": [{"name": "Nicolas Cage", "character": "Jack Halcombe", "id": 2963, "credit_id": "52fe4d9b9251416c9111bfa3", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Cindy Paulson", "id": 67599, "credit_id": "52fe4d9b9251416c9111bfa7", "cast_id": 2, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "John Cusack", "character": "Robert Hansen", "id": 3036, "credit_id": "52fe4d9b9251416c9111bfab", "cast_id": 3, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 2}, {"name": "Radha Mitchell", "character": "Allie Halcombe", "id": 8329, "credit_id": "52fe4d9b9251416c9111bfaf", "cast_id": 4, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 3}, {"name": "Jodi Lyn O'Keefe", "character": "Chelle Ringell", "id": 58006, "credit_id": "52fe4d9b9251416c9111bfc5", "cast_id": 8, "profile_path": "/w1Yx9bpt3ZqVwo33SEXVF5bkY6Z.jpg", "order": 4}, {"name": "Katherine LaNasa", "character": "Fran Hansen", "id": 169337, "credit_id": "52fe4d9b9251416c9111bfc9", "cast_id": 9, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 5}, {"name": "Dean Norris", "character": "Sgt. Lyle Haugsven", "id": 14329, "credit_id": "52fe4d9b9251416c9111bfcd", "cast_id": 10, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 6}, {"name": "50 Cent", "character": "Pimp Clate Johnson", "id": 62644, "credit_id": "52fe4d9b9251416c9111bfd1", "cast_id": 11, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 7}, {"name": "Gia Mantegna", "character": "Debbie Peters", "id": 137424, "credit_id": "52fe4d9b9251416c9111bfd5", "cast_id": 12, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 8}, {"name": "Kevin Dunn", "character": "Lt. Bob Jent", "id": 14721, "credit_id": "52fe4d9b9251416c9111bfd9", "cast_id": 13, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 9}, {"name": "Kurt Fuller", "character": "D.A. Pat Clives", "id": 29685, "credit_id": "52fe4d9b9251416c9111bfdd", "cast_id": 14, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 10}, {"name": "Matt Gerald", "character": "Ed Stauber", "id": 98215, "credit_id": "52fe4d9b9251416c9111bfe1", "cast_id": 15, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 11}, {"name": "Brad William Henke", "character": "Carl Galenski", "id": 15376, "credit_id": "52fe4d9b9251416c9111bfe5", "cast_id": 16, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 12}, {"name": "Michael McGrady", "character": "Vice Det. John Gentile", "id": 157015, "credit_id": "52fe4d9b9251416c9111bfe9", "cast_id": 17, "profile_path": "/1BVROvpyydpWNTBvTvxK5akRVj5.jpg", "order": 13}, {"name": "Ryan O'Nan", "character": "Gregg Baker", "id": 142192, "credit_id": "52fe4d9b9251416c9111bfed", "cast_id": 18, "profile_path": "/sXZOZiVoAm4kKR437AoLECfxBNi.jpg", "order": 14}], "directors": [{"name": "Scott Walker", "department": "Directing", "job": "Director", "credit_id": "52fe4d9b9251416c9111bfb5", "profile_path": null, "id": 1179590}], "vote_average": 6.3, "runtime": 105}, "76494": {"poster_path": "/4vD9uLJHfTOx9vRHdKEXgGvqYZU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 79700000, "overview": "Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who's expecting twins with his young trophy wife; a photographer's husband isn't sure about his wife's adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.", "video": false, "id": 76494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "What to Expect When You're Expecting", "tagline": "It's too late to pull out now.", "vote_count": 147, "homepage": "http://whattoexpectthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1586265", "adult": false, "backdrop_path": "/pQVTUyQUqTKB9nWw0OeJrRrQOp2.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "What to Expect Productions", "id": 19577}], "release_date": "2012-05-18", "popularity": 1.07860656668531, "original_title": "What to Expect When You're Expecting", "budget": 40000000, "cast": [{"name": "Cameron Diaz", "character": "Jules", "id": 6941, "credit_id": "52fe493ec3a368484e1217bd", "cast_id": 3, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Holly", "id": 16866, "credit_id": "52fe493ec3a368484e1217c5", "cast_id": 5, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Wendy", "id": 9281, "credit_id": "52fe493ec3a368484e1217c1", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Anna Kendrick", "character": "Rosie", "id": 84223, "credit_id": "52fe493ec3a368484e1217b9", "cast_id": 2, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 3}, {"name": "Brooklyn Decker", "character": "Skyler", "id": 131520, "credit_id": "52fe493ec3a368484e1217df", "cast_id": 10, "profile_path": "/ll0ujxAqZUTcWSuA8NNsXoLppsG.jpg", "order": 4}, {"name": "Matthew Morrison", "character": "Evan", "id": 155209, "credit_id": "52fe493ec3a368484e121803", "cast_id": 19, "profile_path": "/oB5gRfmJLQYHfm1zSgeyeewnZr5.jpg", "order": 5}, {"name": "Rodrigo Santoro", "character": "Alex", "id": 17289, "credit_id": "52fe493ec3a368484e121807", "cast_id": 20, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 6}, {"name": "Ben Falcone", "character": "Gary", "id": 170820, "credit_id": "52fe493ec3a368484e1217ff", "cast_id": 18, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 7}, {"name": "Dennis Quaid", "character": "Ramsey", "id": 6065, "credit_id": "52fe493ec3a368484e1217e3", "cast_id": 11, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 8}, {"name": "Chace Crawford", "character": "Marco", "id": 60899, "credit_id": "52fe493ec3a368484e1217db", "cast_id": 9, "profile_path": "/ay3fAn4ya7BUfBcHkSGGw0dapUg.jpg", "order": 9}, {"name": "Chris Rock", "character": "Vic", "id": 2632, "credit_id": "52fe493ec3a368484e1217e7", "cast_id": 12, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 10}, {"name": "Rob Huebel", "character": "Gabe", "id": 80595, "credit_id": "52fe493ec3a368484e1217eb", "cast_id": 13, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 11}, {"name": "Thomas Lennon", "character": "Craig", "id": 539, "credit_id": "52fe493ec3a368484e1217ef", "cast_id": 14, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 12}, {"name": "Amir Talai", "character": "Patel", "id": 203086, "credit_id": "52fe493ec3a368484e1217fb", "cast_id": 17, "profile_path": "/srxTWgHM68erYRK3Vr02MLyR7Se.jpg", "order": 13}, {"name": "Rebel Wilson", "character": "Janice", "id": 221581, "credit_id": "52fe493ec3a368484e1217f3", "cast_id": 15, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 14}, {"name": "Joe Manganiello", "character": "Davis", "id": 20580, "credit_id": "54589a50c3a36839a400160a", "cast_id": 23, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 15}, {"name": "Wendi McLendon-Covey", "character": "Kara", "id": 63234, "credit_id": "52fe493ec3a368484e1217f7", "cast_id": 16, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 16}, {"name": "Kim Fields", "character": "Social Worker", "id": 98628, "credit_id": "52fe493ec3a368484e12180b", "cast_id": 21, "profile_path": "/dAJYp4lrXouBaYUMDxcYV5KS3l.jpg", "order": 17}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Courtney", "id": 589162, "credit_id": "52fe493ec3a368484e12180f", "cast_id": 22, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 18}, {"name": "Megan Mullally", "character": "Herself", "id": 52119, "credit_id": "54589a8c0e0a26115e001686", "cast_id": 24, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 19}, {"name": "Cheryl Cole", "character": "Herself", "id": 216321, "credit_id": "54589aa2c3a368398f0015a5", "cast_id": 25, "profile_path": "/ao4AwbBkaxYcoD8nRREpwSAWr4h.jpg", "order": 20}, {"name": "Tyce Diorio", "character": "Himself", "id": 1212446, "credit_id": "54589aafc3a368399700170a", "cast_id": 26, "profile_path": "/cyUa0eUg8erPXXdnU2wZYSg72XB.jpg", "order": 21}, {"name": "Taboo", "character": "Himself", "id": 557830, "credit_id": "54589ac80e0a26116a00155c", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Dwyane Wade", "character": "Himself", "id": 968922, "credit_id": "54589ae30e0a26116a00155f", "cast_id": 28, "profile_path": "/yAoKI84J6mjSBzCzydBJONRU3Ui.jpg", "order": 23}, {"name": "Whitney Port", "character": "Herself", "id": 1224518, "credit_id": "54589af30e0a2611580016bd", "cast_id": 29, "profile_path": null, "order": 24}, {"name": "Taylor Kowalski", "character": "J. J.", "id": 928235, "credit_id": "54589b26c3a368398f0015b4", "cast_id": 30, "profile_path": null, "order": 25}], "directors": [{"name": "Kirk Jones", "department": "Directing", "job": "Director", "credit_id": "52fe493ec3a368484e1217b5", "profile_path": "/uvQskd4gGNN2J91kUnn1lGl2W3d.jpg", "id": 64045}], "vote_average": 5.7, "runtime": 110}, "167032": {"poster_path": "/qoFfZa6b9xsr1dJwdb6SCiw2KHs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the passing of her mother, a young woman in a wheelchair since birth, is forced to deal with her sister, brother-in-law, niece and their nanny as they say their goodbyes to mother. When people start turning up dead, Nica discovers the culprit might be a strange doll she received a few days earlier.", "video": false, "id": 167032, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Curse of Chucky", "tagline": "Fear has a new home", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2230358", "adult": false, "backdrop_path": "/e95CLG02scalwpHgR0BSCUXWeE3.jpg", "production_companies": [{"name": "Universal 1440 Entertainment", "id": 17009}], "release_date": "2013-10-04", "popularity": 0.912161741097232, "original_title": "Curse of Chucky", "budget": 0, "cast": [{"name": "Brad Dourif", "character": "Chucky (Voice)", "id": 1370, "credit_id": "52fe4ca8c3a36847f8238fd5", "cast_id": 3, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 0}, {"name": "Brennan Elliott", "character": "Ian", "id": 43458, "credit_id": "52fe4ca8c3a36847f8238fd9", "cast_id": 4, "profile_path": "/7Wilyo6uHlKK4IiD3HkzJriVEaZ.jpg", "order": 1}, {"name": "A Martinez", "character": "Father Frank", "id": 78398, "credit_id": "52fe4ca8c3a36847f8238fdd", "cast_id": 5, "profile_path": "/4ihGfQ2DouHGRGAb3M5Ihu5Nw8D.jpg", "order": 2}, {"name": "Danielle Bisutti", "character": "Barb", "id": 154839, "credit_id": "52fe4ca8c3a36847f8238fe1", "cast_id": 6, "profile_path": "/PmZmuwEYgqZmETwR8rwpe4gVXK.jpg", "order": 3}, {"name": "Fiona Dourif", "character": "Nica", "id": 204468, "credit_id": "52fe4ca8c3a36847f8238fe5", "cast_id": 7, "profile_path": "/bHf4d9fITrmrNBvXfs27fSnmPCt.jpg", "order": 4}, {"name": "Chantal Quesnel", "character": "Sarah", "id": 1105418, "credit_id": "52fe4ca8c3a36847f8238fe9", "cast_id": 8, "profile_path": "/yyQNaxi0ru3u3fATv9W8pTOAT29.jpg", "order": 5}, {"name": "Ali Tataryn", "character": "US X Girl", "id": 1116281, "credit_id": "52fe4ca8c3a36847f8238fed", "cast_id": 9, "profile_path": "/xRxzASuufQ35yTMaoksau1Ose6O.jpg", "order": 6}, {"name": "Maitland McConnell", "character": "Jill", "id": 85215, "credit_id": "52fe4ca8c3a36847f8238ff1", "cast_id": 10, "profile_path": "/xUlypbK7VPYO9ZbPX6Z6ZrJIYEA.jpg", "order": 7}, {"name": "Kally Berard", "character": "Young Barb", "id": 1071199, "credit_id": "52fe4ca8c3a36847f8238ff5", "cast_id": 11, "profile_path": "/3OM0hihqaVIudm1r4R8KPQWroTn.jpg", "order": 8}, {"name": "Kyle Nobess", "character": "Young Dad", "id": 1148696, "credit_id": "52fe4ca8c3a36847f8238ff9", "cast_id": 12, "profile_path": "/sQ0KnG65OZrFaTu5pXNFnRN5c4y.jpg", "order": 9}, {"name": "Will Woytowich", "character": "Lead Fireman", "id": 48313, "credit_id": "52fe4ca8c3a36847f8238ffd", "cast_id": 13, "profile_path": "/zpZisXnw0dNErO4EIH2oNjjGcRY.jpg", "order": 10}, {"name": "Adam Hurtig", "character": "Officer Stanton", "id": 1148697, "credit_id": "52fe4ca8c3a36847f8239001", "cast_id": 14, "profile_path": "/sbOsPViyNz1C2wBI3u0o4iN4RYF.jpg", "order": 11}, {"name": "Candace Smith", "character": "Postal Worker", "id": 386938, "credit_id": "52fe4ca8c3a36847f8239005", "cast_id": 15, "profile_path": "/pz5HzcA572jjpkBBwZ7JOX1ZOuH.jpg", "order": 12}, {"name": "Jennifer Tilly", "character": "Tiffany", "id": 7906, "credit_id": "52fe4ca8c3a36847f823900d", "cast_id": 17, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 14}, {"name": "Kevin Anderson", "character": "Judge", "id": 51805, "credit_id": "53b99542c3a3685eb4005999", "cast_id": 18, "profile_path": "/roCItER7LbrJJvAV1Fku3jG9g8k.jpg", "order": 15}], "directors": [{"name": "Don Mancini", "department": "Directing", "job": "Director", "credit_id": "52fe4ca8c3a36847f8238fcb", "profile_path": null, "id": 65677}], "vote_average": 5.5, "runtime": 97}, "2770": {"poster_path": "/q4LNgUnRfltxzp3gf1MAGiK5LhV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 287553595, "overview": "The whole gang are back and as close as ever. They decide to get even closer by spending the summer together at a beach house. They decide to hold the biggest party ever to be seen, even if the preparation doesn't always go to plan. Especially when Stifler, Finch and Jim become more close to each other than they ever want to be and when Jim mistakes super glue for lubricant...", "video": false, "id": 2770, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "American Pie 2", "tagline": "This Summer It's All About Sticking Together.", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0252866", "adult": false, "backdrop_path": "/1C1d3Tpesm8Vn3BRqsQZt0LfZcG.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Liveplanet", "id": 2200}, {"name": "Zide-Perry Productions", "id": 3169}], "release_date": "2001-08-06", "popularity": 1.10689042184131, "original_title": "American Pie 2", "budget": 30000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe436cc3a36847f8053085", "cast_id": 1, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Thomas Ian Nicholas", "character": "Kevin Myers", "id": 21403, "credit_id": "52fe436cc3a36847f8053089", "cast_id": 2, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 1}, {"name": "Chris Klein", "character": "Chris 'Oz' Ostreicher", "id": 21594, "credit_id": "52fe436cc3a36847f805308d", "cast_id": 3, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 2}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe436cc3a36847f8053091", "cast_id": 4, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 3}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe436cc3a36847f8053095", "cast_id": 5, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 4}, {"name": "Shannon Elizabeth", "character": "Nadia", "id": 21596, "credit_id": "52fe436cc3a36847f8053099", "cast_id": 6, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 5}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty", "id": 21595, "credit_id": "52fe436cc3a36847f80530a9", "cast_id": 9, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 6}, {"name": "Natasha Lyonne", "character": "Jessica", "id": 10871, "credit_id": "52fe436cc3a36847f80530ad", "cast_id": 11, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 7}, {"name": "Tara Reid", "character": "Victoria 'Vicky' Lathum", "id": 1234, "credit_id": "52fe436cc3a36847f80530b1", "cast_id": 12, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 8}, {"name": "Mena Suvari", "character": "Heather", "id": 8211, "credit_id": "52fe436cc3a36847f80530b5", "cast_id": 13, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 9}, {"name": "Chris Owen", "character": "Chuck Sherman", "id": 26999, "credit_id": "52fe436cc3a36847f80530b9", "cast_id": 14, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 10}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe436cc3a36847f80530bd", "cast_id": 15, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 11}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "52fe436cc3a36847f80530c1", "cast_id": 16, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 12}, {"name": "Denise Faye", "character": "Danielle", "id": 17641, "credit_id": "52fe436cc3a36847f80530c5", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Lisa Arturo", "character": "Amber", "id": 55619, "credit_id": "52fe436cc3a36847f80530c9", "cast_id": 18, "profile_path": "/osZvDdZKMMoLsiVaq3igLwpNhQ5.jpg", "order": 14}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "53bc2a190e0a26197100323d", "cast_id": 23, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 15}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc2a2d0e0a26196b0031b1", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Eli Marienthal", "character": "Matt Stifler", "id": 116027, "credit_id": "53bc2a800e0a261978003304", "cast_id": 25, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 17}, {"name": "Casey Affleck", "character": "Tom Myers", "id": 1893, "credit_id": "53bc2a9d0e0a26197c00324e", "cast_id": 26, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 18}, {"name": "Tsianina Joelson", "character": "Amy", "id": 168014, "credit_id": "52fe436cc3a36847f80530d5", "cast_id": 21, "profile_path": "/vXKULq7hYnxRJuyRXfvI6BXhFsu.jpg", "order": 19}, {"name": "Lacey Beeman", "character": "Amy's Friend", "id": 168897, "credit_id": "52fe436cc3a36847f80530d1", "cast_id": 20, "profile_path": "/h8coFumNNoCK6wJ0XYXSeO6Q6C7.jpg", "order": 20}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "52fe436cc3a36847f80530cd", "cast_id": 19, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 21}], "directors": [{"name": "J.B. Rogers", "department": "Directing", "job": "Director", "credit_id": "52fe436cc3a36847f805309f", "profile_path": "/rL2r7j20Aq2JRWeDpTpk35YxUzb.jpg", "id": 7409}], "vote_average": 5.9, "runtime": 108}, "307663": {"poster_path": "/bBhYuiSxZClVlaz2kT73oT31fcp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Julian Michaels (Bruce Willis) has designed the ultimate resort: VICE, where anything goes and the customers can play out their wildest fantasies with artificial inhabitants who look, think and feel like humans. When an artificial (Ambyr Childers) becomes self-aware and escapes, she finds herself caught in the crossfire between Julian's mercenaries and a cop (Thomas Jane) who is hell-bent on shutting down Vice, and stopping the violence once and for all.", "video": false, "id": 307663, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Vice", "tagline": "Where the future is your past.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3480796", "adult": false, "backdrop_path": "/sXFad2FfZGyAoD97omqEs4q1VI7.jpg", "production_companies": [{"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "K5 International", "id": 6715}, {"name": "Aperture Entertainment", "id": 33832}], "release_date": "2015-01-16", "popularity": 4.40131723823802, "original_title": "Vice", "budget": 15000000, "cast": [{"name": "Ambyr Childers", "character": "Kelly", "id": 75330, "credit_id": "547ee63a92514124af000e0a", "cast_id": 2, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 0}, {"name": "Thomas Jane", "character": "Roy", "id": 11155, "credit_id": "547ee62492514124b3000e9d", "cast_id": 1, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 1}, {"name": "Bruce Willis", "character": "Julian", "id": 62, "credit_id": "547ee60ec3a368396c000fbd", "cast_id": 0, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 2}, {"name": "Bryan Greenberg", "character": "Evan", "id": 23821, "credit_id": "547ee6a892514124b3000eb1", "cast_id": 3, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 3}, {"name": "Johnathon Schaech", "character": "Chris", "id": 51670, "credit_id": "54d879a892514142410003b9", "cast_id": 7, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 4}, {"name": "Ryan O'Nan", "character": "Det. Matthews", "id": 142192, "credit_id": "54d879bbc3a3683b8f007b8b", "cast_id": 8, "profile_path": "/sXZOZiVoAm4kKR437AoLECfxBNi.jpg", "order": 5}, {"name": "Charlotte Kirk", "character": "Melissa", "id": 1352662, "credit_id": "54d879d89251413cd000036b", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Colin Egglesfield", "character": "Reiner", "id": 83225, "credit_id": "54d87a1bc3a3683b89007848", "cast_id": 10, "profile_path": "/ggHUyXwcrxFjSFKwSJOFvV1b0be.jpg", "order": 7}, {"name": "Tyler J. Olson", "character": "Steve", "id": 1388479, "credit_id": "54d87a449251413cd000038d", "cast_id": 11, "profile_path": "/LFjGtC3gg0XHBRyEZGk8DR5CTq.jpg", "order": 8}, {"name": "Don Harvey", "character": "Kasansky", "id": 1280, "credit_id": "54d87a589251416ba8006fa8", "cast_id": 12, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 9}, {"name": "Brett Granstaff", "character": "James", "id": 1438026, "credit_id": "55007595c3a3685b9b0017e5", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "David Gordon", "character": "Mitch", "id": 1177283, "credit_id": "550075d99251413da100170a", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Cameron Brexler", "character": "Keith", "id": 1438027, "credit_id": "550075edc3a36826b900054b", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jesse Pruett", "character": "Officer Pullman", "id": 139197, "credit_id": "550075fc9251413da5001737", "cast_id": 16, "profile_path": "/8VBlaffStPHz89oXnki14Gv2Yw6.jpg", "order": 13}, {"name": "Lydia Hull", "character": "Stacey", "id": 1042684, "credit_id": "55007630c3a3685b9b0017f0", "cast_id": 17, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 14}], "directors": [{"name": "Brian A Miller", "department": "Directing", "job": "Director", "credit_id": "547ee6edc3a368396f001093", "profile_path": null, "id": 1024823}], "vote_average": 3.9, "runtime": 96}, "10731": {"poster_path": "/bCWpxGGcP9DsCLwfNpnfcl1vLk8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.", "video": false, "id": 10731, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Client", "tagline": "A District Attorney Out For A Conviction. A New Lawyer Out Of Her League. A Young Boy Who Knew Too Much.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109446", "adult": false, "backdrop_path": "/cmJeM2aXBHWIsftfb7dz3ksjyDV.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1994-07-20", "popularity": 0.792898219259574, "original_title": "The Client", "budget": 45000000, "cast": [{"name": "Susan Sarandon", "character": "Regina \"Reggie\" Love", "id": 4038, "credit_id": "52fe43ab9251416c75019761", "cast_id": 11, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "'Reverend' Roy Foltrigg", "id": 2176, "credit_id": "52fe43ab9251416c75019765", "cast_id": 12, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Mary-Louise Parker", "character": "Dianne Sway", "id": 18248, "credit_id": "52fe43ab9251416c75019769", "cast_id": 13, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 2}, {"name": "Anthony LaPaglia", "character": "Barry 'The Blade' Muldano", "id": 57829, "credit_id": "52fe43ab9251416c7501976d", "cast_id": 14, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 3}, {"name": "Bradley Whitford", "character": "Thomas Fink", "id": 11367, "credit_id": "52fe43ab9251416c75019777", "cast_id": 16, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 4}, {"name": "Will Patton", "character": "Sergeant Hardy", "id": 883, "credit_id": "52fe43ab9251416c7501977b", "cast_id": 17, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 5}, {"name": "Brad Renfro", "character": "Mark Sway", "id": 51214, "credit_id": "52fe43ab9251416c7501977f", "cast_id": 18, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 6}, {"name": "Anthony Edwards", "character": "Clint Von Hooser", "id": 11085, "credit_id": "52fe43ab9251416c75019783", "cast_id": 19, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 7}, {"name": "J. T. Walsh", "character": "Jason McThune", "id": 22131, "credit_id": "52fe43ab9251416c75019787", "cast_id": 20, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 8}, {"name": "Anthony Heald", "character": "Larry Trumann", "id": 16293, "credit_id": "52fe43ab9251416c7501978b", "cast_id": 21, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 9}, {"name": "Kim Coates", "character": "Paul Gronke", "id": 8335, "credit_id": "52fe43ab9251416c7501978f", "cast_id": 22, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 10}, {"name": "Kimberly Scott", "character": "Doreen", "id": 1984, "credit_id": "52fe43ab9251416c75019793", "cast_id": 23, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 11}, {"name": "David Speck", "character": "Ricky Sway", "id": 268179, "credit_id": "52fe43ab9251416c75019797", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "William H. Macy", "character": "Dr. Greenway", "id": 3905, "credit_id": "52fe43ab9251416c7501979b", "cast_id": 25, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 13}, {"name": "Rebecca Jernigan", "character": "Emergency Room Nurse", "id": 1158447, "credit_id": "52fe43ab9251416c7501979f", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe43ab9251416c7501972d", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.6, "runtime": 119}, "35552": {"poster_path": "/ldAmE8LsRGNXlI1lUEbPjbC83o9.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "An adventure set in the early part of the 20th century, focused on a popular novelist and her dealings with would-be suitors, the cops, monsters, and other distractions.", "video": false, "id": 35552, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "The Extraordinary Adventures of Ad\u00e8le Blanc-Sec", "tagline": "", "vote_count": 74, "homepage": "http://www.adeleblancsec-lefilm.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1179025", "adult": false, "backdrop_path": "/yZgIHV8MrJtNV1ay2PemdboqSnT.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}], "release_date": "2010-04-14", "popularity": 0.91723164365629, "original_title": "Les Aventures extraordinaires d'Ad\u00e8le Blanc-Sec", "budget": 35000000, "cast": [{"name": "Louise Bourgoin", "character": "Ad\u00e8le Blanc-Sec", "id": 78216, "credit_id": "52fe45a89251416c91039d91", "cast_id": 8, "profile_path": "/sTqanaZbDPV0GkZTy1lrUswpDuc.jpg", "order": 0}, {"name": "Mathieu Amalric", "character": "Dieuleveult", "id": 8789, "credit_id": "52fe45a89251416c91039d95", "cast_id": 9, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 1}, {"name": "Gilles Lellouche", "character": "Inspecteur Caponi", "id": 54291, "credit_id": "52fe45a89251416c91039d99", "cast_id": 10, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 2}, {"name": "Philippe Nahon", "character": "Professeur M\u00e9nard", "id": 5444, "credit_id": "52fe45a89251416c91039d9d", "cast_id": 11, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 3}, {"name": "Gr\u00e9gory Ragot", "character": "Assistant Bertrand", "id": 114365, "credit_id": "52fe45a89251416c91039da1", "cast_id": 12, "profile_path": "/312QP3rNWBKOIvXYI5d7qp5hYE.jpg", "order": 4}, {"name": "Jean-Paul Rouve", "character": "Justin de Saint-Hubert", "id": 16922, "credit_id": "52fe45a89251416c91039da5", "cast_id": 13, "profile_path": "/iHOZd4VO0dZ2H3ADCJhUk2BmkOd.jpg", "order": 5}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe45a89251416c91039d69", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.7, "runtime": 105}, "2787": {"poster_path": "/u6oDHb3z0uZNQHNdJwHJAW1jD4q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53187659, "overview": "After crash-landing on a seemingly lifeless planet, pilot Carolyn Fry and the remaining passengers -- including murderer Riddick and policeman William J. Johns -- encounter an army of creatures whose only weakness is light. As night approaches and the aliens emerge, the passengers must rely on Riddick's powerful night vision to lead them through the darkness.", "video": false, "id": 2787, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Pitch Black", "tagline": "Don't be afraid of the dark. Be afraid of what's in the dark", "vote_count": 810, "homepage": "http://www.pitchblack.com/", "belongs_to_collection": {"backdrop_path": "/xb5zyHecWA7UACdiNPXDA3m5HSY.jpg", "poster_path": "/4R2zrqk9KzgxU9UDH3yUUsENXR.jpg", "id": 2794, "name": "The Chronicles of Riddick Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134847", "adult": false, "backdrop_path": "/yc0cEEZ9OO6ydyYmCEfY90Q9jII.jpg", "production_companies": [{"name": "Interscope Communications", "id": 10201}], "release_date": "2000-02-18", "popularity": 0.905551213010835, "original_title": "Pitch Black", "budget": 23000000, "cast": [{"name": "Vin Diesel", "character": "Richard B. Riddick", "id": 12835, "credit_id": "52fe436dc3a36847f80535fd", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Carolyn Fry", "id": 8329, "credit_id": "52fe436dc3a36847f8053601", "cast_id": 2, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Cole Hauser", "character": "William J. Johns", "id": 6614, "credit_id": "52fe436dc3a36847f8053605", "cast_id": 3, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 2}, {"name": "Rhiana Griffith", "character": "Jack / Jackie", "id": 28098, "credit_id": "52fe436dc3a36847f8053609", "cast_id": 4, "profile_path": "/2aHeZDmtcqdN2cfAZDlhnEW7rQ3.jpg", "order": 3}, {"name": "Lewis Fitz-Gerald", "character": "Paris P. Ogilvie", "id": 28099, "credit_id": "52fe436dc3a36847f805360d", "cast_id": 5, "profile_path": "/o0XcTwIcOVY1HHiKouvpx363PXu.jpg", "order": 4}, {"name": "Claudia Black", "character": "Shazza", "id": 26054, "credit_id": "52fe436dc3a36847f8053611", "cast_id": 6, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 5}, {"name": "Simon Burke", "character": "Greg Owens", "id": 28100, "credit_id": "52fe436dc3a36847f8053615", "cast_id": 7, "profile_path": "/f0NpWdQevKUbndxBNngFnMHwcMY.jpg", "order": 6}, {"name": "Keith David", "character": "Abu \"Imam\" al-Walid", "id": 65827, "credit_id": "52fe436dc3a36847f8053619", "cast_id": 8, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "John Moore", "character": "John 'Zeke' Ezekiel", "id": 12028, "credit_id": "53fc98000e0a267a7800a81f", "cast_id": 21, "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "order": 8}, {"name": "Les Chantery", "character": "Suleiman", "id": 230602, "credit_id": "53fc98200e0a267a6c00acc0", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Sam Sari", "character": "Hassan", "id": 1357177, "credit_id": "53fc98390e0a267a6600aabc", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Firass Dirani", "character": "Ali", "id": 56450, "credit_id": "53fc98490e0a267a6f00ac8e", "cast_id": 25, "profile_path": "/dqIE2ckazhjMc5ETNCPgn8B4Mr9.jpg", "order": 12}, {"name": "Ric Anderson", "character": "Total Stranger", "id": 1357178, "credit_id": "53fc98670e0a267a7200aca5", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Vic Wilson", "character": "Captain Tom Mitchell", "id": 1357179, "credit_id": "53fc98770e0a267a6900acd2", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Angela Moore", "character": "Dead Crew Member", "id": 1357180, "credit_id": "53fc98840e0a267a7200acaa", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f805361f", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}, {"name": "Carolynne Cunningham", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f8053637", "profile_path": null, "id": 3506}], "vote_average": 6.6, "runtime": 109}, "2789": {"poster_path": "/tGNj5xxw5td0SBih1UmuqkHZ8ga.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115772733, "overview": "Five years after the events in sci-fi film Pitch Black, escaped convict Riddick finds himself caught in the middle of a galactic war waged by Lord Marshal, the leader of a sect called the Necromongers. Riddick is charged with stopping the Necromonger army, all while rescuing an old friend from a prison planet and evading capture by bounty hunters.", "video": false, "id": 2789, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Chronicles of Riddick", "tagline": "All the power in the universe can't change destiny.", "vote_count": 823, "homepage": "http://www.thechroniclesofriddick.com/", "belongs_to_collection": {"backdrop_path": "/xb5zyHecWA7UACdiNPXDA3m5HSY.jpg", "poster_path": "/4R2zrqk9KzgxU9UDH3yUUsENXR.jpg", "id": 2794, "name": "The Chronicles of Riddick Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0296572", "adult": false, "backdrop_path": "/AoLVfcYPziZZQbAFQuKoceHreXD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Radar Pictures Inc.", "id": 350}, {"name": "One Race Productions", "id": 1225}, {"name": "Primal Foe Productions", "id": 11443}], "release_date": "2004-06-11", "popularity": 0.786101078293155, "original_title": "The Chronicles of Riddick", "budget": 105000000, "cast": [{"name": "Vin Diesel", "character": "Richard B. Riddick", "id": 12835, "credit_id": "52fe436dc3a36847f805374d", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Christina Cox", "character": "Eve Logan", "id": 28110, "credit_id": "52fe436dc3a36847f8053765", "cast_id": 8, "profile_path": "/qkbxOma6tBghX6sYJW0avfYaimV.jpg", "order": 1}, {"name": "Colm Feore", "character": "Lord Marshal", "id": 10132, "credit_id": "52fe436dc3a36847f8053751", "cast_id": 2, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 2}, {"name": "Karl Urban", "character": "Vaako", "id": 1372, "credit_id": "52fe436dc3a36847f8053755", "cast_id": 3, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 3}, {"name": "Judi Dench", "character": "Aereon", "id": 5309, "credit_id": "52fe436dc3a36847f8053793", "cast_id": 16, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Alexa Davalos", "character": "Kyra", "id": 28109, "credit_id": "52fe436dc3a36847f8053759", "cast_id": 5, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 5}, {"name": "Nick Chinlund", "character": "Toombs", "id": 18461, "credit_id": "52fe436dc3a36847f805375d", "cast_id": 6, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 6}, {"name": "Keith David", "character": "Abu \"Imam\" al-Walid", "id": 65827, "credit_id": "52fe436dc3a36847f8053761", "cast_id": 7, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "Thandie Newton", "character": "Dame Vaako", "id": 9030, "credit_id": "52fe436dc3a36847f8053797", "cast_id": 17, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 8}, {"name": "Linus Roache", "character": "Purifier", "id": 3900, "credit_id": "52fe436dc3a36847f805379b", "cast_id": 18, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 9}, {"name": "Yorick van Wageningen", "character": "The Guv", "id": 31387, "credit_id": "52fe436dc3a36847f805379f", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Mark Gibbon", "character": "Irgun", "id": 118459, "credit_id": "52fe436dc3a36847f80537a3", "cast_id": 20, "profile_path": "/4zbhBlYulslr2SJ7SMcm3xPtLAU.jpg", "order": 11}, {"name": "Roger R. Cross", "character": "Toal", "id": 25877, "credit_id": "52fe436dc3a36847f80537a7", "cast_id": 21, "profile_path": "/kObbLStIBSrYJ8iFCp7LB9NMsh8.jpg", "order": 12}, {"name": "Terry Chen", "character": "Merc Pilot", "id": 11677, "credit_id": "52fe436dc3a36847f80537ab", "cast_id": 22, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 13}, {"name": "Nigel Vonas", "character": "Merc", "id": 172880, "credit_id": "52fe436dc3a36847f80537af", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Alexis Llewellyn", "character": "Ziza", "id": 169780, "credit_id": "54ae67a592514169e00018d1", "cast_id": 154, "profile_path": "/hAmPonbTxGoYFEwz7nNHt5ca0Lg.jpg", "order": 15}, {"name": "Charles Zuckermann", "character": "Scales", "id": 90726, "credit_id": "54ae67d7c3a3683fba0013b1", "cast_id": 155, "profile_path": null, "order": 16}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f805376b", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}], "vote_average": 6.3, "runtime": 119}, "10982": {"poster_path": "/cx7CmTKBa5sgZqLp6680CdMrZc1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51053787, "overview": "The recipes of candies of the goody shops have been stolen by the Goody Bandit, and many animals are out of business. While the police are chasing the criminal, there is a mess at Granny's house evolving Little Red Hiding Hood, The Wolf, The Woodsman and Granny, disturbing the peace in the forest and they are all arrested by the impatient Chief Grizzly.", "video": false, "id": 10982, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Hoodwinked!", "tagline": "Armed And Dangerously Dumb.", "vote_count": 128, "homepage": "http://www.hoodwinkedthemovie.com", "belongs_to_collection": {"backdrop_path": "/sIn465LgZqpxWnNjXSmpygpRnl3.jpg", "poster_path": "/srNJ36UACIY88HwPAM7ugBpeWOE.jpg", "id": 87255, "name": "Hoodwinked! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443536", "adult": false, "backdrop_path": "/4KWtkmddn9bu537mU2WRsmJuoBe.jpg", "production_companies": [{"name": "Blue Yonder Films", "id": 49126}, {"name": "The Weinstein Company", "id": 308}, {"name": "Kanbar Entertainment", "id": 7580}], "release_date": "2005-12-16", "popularity": 1.36874356855621, "original_title": "Hoodwinked!", "budget": 15000000, "cast": [{"name": "Anne Hathaway", "character": "Red (voice)", "id": 1813, "credit_id": "52fe43dc9251416c75020fa3", "cast_id": 1, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Glenn Close", "character": "Granny (voice)", "id": 515, "credit_id": "52fe43dc9251416c75020fa7", "cast_id": 2, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 1}, {"name": "James Belushi", "character": "The Woodsman (voice)", "id": 26485, "credit_id": "52fe43dc9251416c75020fab", "cast_id": 3, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 2}, {"name": "Patrick Warburton", "character": "The Wolf (voice)", "id": 9657, "credit_id": "52fe43dc9251416c75020faf", "cast_id": 4, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 3}, {"name": "Anthony Anderson", "character": "Detective Bill Stork (voice)", "id": 18471, "credit_id": "52fe43dc9251416c75021001", "cast_id": 20, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 4}, {"name": "David Ogden Stiers", "character": "Nicky Flippers (voice)", "id": 28010, "credit_id": "52fe43dc9251416c75021005", "cast_id": 21, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 5}, {"name": "Xzibit", "character": "Chief Grizzly (voice)", "id": 336, "credit_id": "52fe43dc9251416c75021009", "cast_id": 22, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 6}, {"name": "Chazz Palminteri", "character": "Woolworth (voice)", "id": 9046, "credit_id": "52fe43dc9251416c7502100d", "cast_id": 23, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 7}, {"name": "Andy Dick", "character": "Boingo (voice)", "id": 43120, "credit_id": "52fe43dc9251416c75021011", "cast_id": 24, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 8}, {"name": "Cory Edwards", "character": "Twitchy (voice)", "id": 61373, "credit_id": "52fe43dc9251416c75021015", "cast_id": 25, "profile_path": "/8tjra5RWTMHjYMRKP61P500TmG8.jpg", "order": 9}, {"name": "Benjy Gaither", "character": "Japeth the Goat (voice)", "id": 427964, "credit_id": "52fe43dc9251416c75021019", "cast_id": 26, "profile_path": "/174Q2QaK2HI94il04MegCSSnVi5.jpg", "order": 10}, {"name": "Ken Marino", "character": "Raccoon Jerry (voice)", "id": 77089, "credit_id": "52fe43dc9251416c7502101d", "cast_id": 27, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 11}, {"name": "Tom Kenny", "character": "Tommy (voice)", "id": 78798, "credit_id": "52fe43dc9251416c75021021", "cast_id": 28, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 12}, {"name": "Preston Stutzman", "character": "Timmy (voice)", "id": 61379, "credit_id": "52fe43dc9251416c75021025", "cast_id": 29, "profile_path": "/ylJAq8y7Ic445Gknns2snwXLj7K.jpg", "order": 13}, {"name": "Tony Leech", "character": "Glen (voice)", "id": 61372, "credit_id": "52fe43dc9251416c75021029", "cast_id": 30, "profile_path": "/hDywC1mqBpJgXWbUlOpx6w7XSSL.jpg", "order": 14}, {"name": "Kang Hye-jung", "character": "Red (Korean dubbing Voice)", "id": 1299317, "credit_id": "53c619fc0e0a267fe5001c88", "cast_id": 31, "profile_path": "/lF4wt0m522K79tgy18ykgDtmsAO.jpg", "order": 15}], "directors": [{"name": "Cory Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe43dc9251416c75020fb5", "profile_path": "/8tjra5RWTMHjYMRKP61P500TmG8.jpg", "id": 61373}, {"name": "Todd Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe43dc9251416c75020fbb", "profile_path": null, "id": 61371}, {"name": "Tony Leech", "department": "Directing", "job": "Director", "credit_id": "52fe43dc9251416c75020fc7", "profile_path": "/hDywC1mqBpJgXWbUlOpx6w7XSSL.jpg", "id": 61372}], "vote_average": 6.1, "runtime": 80}, "2791": {"poster_path": "/ewqSDOOyjyODmyuVuxHmKGYKZR9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After their narrow escape at the end of \"Pitch Black,\" Riddick, Jack and the Imam find themselves at the mercy of a madwoman who intends to entomb Riddick forever as part of a twisted art exhibit. With little but a shiv and Riddick's innate viciousness to aid them, Riddick and his allies must find a way to escape from their captor and her band of mercenaries.", "video": false, "id": 2791, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Chronicles of Riddick: Dark Fury", "tagline": "", "vote_count": 93, "homepage": "http://www.thechroniclesofriddick.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0407658", "adult": false, "backdrop_path": "/jrZbDux6c99QxpxHqnLS6W8Jffc.jpg", "production_companies": [{"name": "Universal Home Video", "id": 3487}, {"name": "Universal Pictures", "id": 33}], "release_date": "2004-06-15", "popularity": 0.0807029070205403, "original_title": "The Chronicles of Riddick: Dark Fury", "budget": 0, "cast": [{"name": "Vin Diesel", "character": "Richard B. Riddick (Voice)", "id": 12835, "credit_id": "52fe436dc3a36847f8053867", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Rhiana Griffith", "character": "Jack (Voice)", "id": 28098, "credit_id": "52fe436dc3a36847f805386b", "cast_id": 2, "profile_path": "/2aHeZDmtcqdN2cfAZDlhnEW7rQ3.jpg", "order": 1}, {"name": "Keith David", "character": "Abu al-Walid (Voice)", "id": 65827, "credit_id": "52fe436dc3a36847f805386f", "cast_id": 3, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 2}, {"name": "Nick Chinlund", "character": "Toombs (Voice)", "id": 18461, "credit_id": "52fe436dc3a36847f8053873", "cast_id": 4, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 3}, {"name": "Dwight Schultz", "character": "Skiff A.I. (Voice)", "id": 28248, "credit_id": "52fe436dc3a36847f8053877", "cast_id": 5, "profile_path": "/lvhnIeUHMUvjfxRS2xWeF6xbsJc.jpg", "order": 4}], "directors": [{"name": "Peter Chung", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f805387d", "profile_path": "/oLqG2MqnrQgSG0jQzzUVMU8gyz5.jpg", "id": 28249}], "vote_average": 5.7, "runtime": 34}, "142061": {"poster_path": "/wPeorCnD9MRR2S9Dzh4OpIgNLiv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.", "video": false, "id": 142061, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}], "title": "Batman: The Dark Knight Returns, Part 2", "tagline": "Justice Returns... Vengeance Returns... Redemption Comes to Gotham", "vote_count": 156, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/9OMTLs9efR8UYLoAD7JhGbmEurm.jpg", "id": 248534, "name": "Batman: The Dark Knight Returns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2166834", "adult": false, "backdrop_path": "/wDWPuqhgZ0INvqHsyLa470xeabT.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Premiere", "id": 4811}, {"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2013-01-29", "popularity": 0.916914079605683, "original_title": "Batman: The Dark Knight Returns, Part 2", "budget": 3500000, "cast": [{"name": "Peter Weller", "character": "Batman / Bruce Wayne", "id": 27811, "credit_id": "52fe4acb9251416c750ee4f9", "cast_id": 3, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Ariel Winter", "character": "Robin / Carrie Kelley", "id": 42160, "credit_id": "52fe4acb9251416c750ee4fd", "cast_id": 4, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 1}, {"name": "David Selby", "character": "Commissioner Gordon", "id": 56930, "credit_id": "52fe4acb9251416c750ee501", "cast_id": 5, "profile_path": "/31FZf0TdcYm53S9R9q1KWNNxVaH.jpg", "order": 2}, {"name": "Michael Emerson", "character": "Joker", "id": 2136, "credit_id": "52fe4acb9251416c750ee505", "cast_id": 7, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 3}, {"name": "Mark Valley", "character": "Clark Kent / Superman", "id": 136530, "credit_id": "52fe4acb9251416c750ee519", "cast_id": 12, "profile_path": "/bWCr7EhKM0aB19fONmeGcetMlQa.jpg", "order": 4}, {"name": "Grey DeLisle", "character": "Anchor Carla", "id": 15761, "credit_id": "52fe4acb9251416c750ee509", "cast_id": 8, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 5}, {"name": "Frank Welker", "character": "Mayor Stevenson", "id": 15831, "credit_id": "52fe4acb9251416c750ee50d", "cast_id": 9, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 6}, {"name": "Dee Bradley Baker", "character": "Don", "id": 23680, "credit_id": "52fe4acb9251416c750ee511", "cast_id": 10, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 7}, {"name": "Michael McKean", "character": "Dr. Bartholomew Wolper", "id": 21731, "credit_id": "52fe4acb9251416c750ee515", "cast_id": 11, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 8}, {"name": "James Patrick Stuart", "character": "Murray", "id": 105641, "credit_id": "52fe4acb9251416c750ee521", "cast_id": 14, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 9}, {"name": "Maria Canals-Barrera", "character": "Ellen Yindel", "id": 85759, "credit_id": "52fe4acb9251416c750ee529", "cast_id": 16, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 10}, {"name": "Gwendoline Yeo", "character": "Lola Chong", "id": 46774, "credit_id": "52fe4acb9251416c750ee531", "cast_id": 18, "profile_path": "/mTd2DqE4zDcfLDBcy6DdT6nZKyv.jpg", "order": 12}, {"name": "Danny Jacobs", "character": "Merkel", "id": 62389, "credit_id": "52fe4acb9251416c750ee535", "cast_id": 19, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 13}, {"name": "Townsend Coleman", "character": "Morrie", "id": 35035, "credit_id": "52fe4acb9251416c750ee539", "cast_id": 20, "profile_path": "/j7PvxQ7XuOQc1ggSRHWRP6CB8CU.jpg", "order": 14}, {"name": "Michael A. Jackson", "character": "Alfred Pennyworth", "id": 159572, "credit_id": "52fe4acb9251416c750ee565", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Bruce Timm", "character": "Hydrant Fireman (voice)", "id": 34934, "credit_id": "52fe4acb9251416c750ee54f", "cast_id": 25, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 16}, {"name": "Tress MacNeille", "character": "Selina Kyle / Bruno / Old Woman (voice)", "id": 34983, "credit_id": "52fe4acb9251416c750ee553", "cast_id": 26, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 17}, {"name": "Paget Brewster", "character": "Lana Lang (voice)", "id": 15423, "credit_id": "52fe4acb9251416c750ee557", "cast_id": 27, "profile_path": "/rnOb1bTjYVSj868mXNWJoQYq8Rn.jpg", "order": 18}, {"name": "Gary Anthony Williams", "character": "Anchor Bill (voice)", "id": 54043, "credit_id": "549bae68c3a3682f230030cd", "cast_id": 33, "profile_path": "/2aS1bHnkEnQErbnJl8ZzQQJSzBM.jpg", "order": 19}, {"name": "Conan O'Brien", "character": "David Endocrine", "id": 81200, "credit_id": "53b4fa950e0a2676d300196a", "cast_id": 31, "profile_path": "/qADVUyXUC8hVbVNQLpf4a6xGiA7.jpg", "order": 20}, {"name": "Robin Atkin Downes", "character": "Oliver Queen", "id": 130081, "credit_id": "54784bf2c3a3685e7e000634", "cast_id": 32, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 21}, {"name": "Yuri Lowenthal", "character": "", "id": 127387, "credit_id": "54e73228c3a3681fec000ffc", "cast_id": 34, "profile_path": "/d5vbYEkrPYAiVdTee8e4xCm7Fg1.jpg", "order": 22}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4acb9251416c750ee561", "profile_path": null, "id": 105643}], "vote_average": 7.8, "runtime": 78}, "2800": {"poster_path": "/6Hj5mFf1nv6gsYhGpz0xetPGYbg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88933562, "overview": "Jennifer Aniston portrays Sarah Huttinger, whose return home with her fiance convinces her that the sedate, proper, country-club lifestyle of her family isn't for her, and that maybe the Huttinger family isn't even hers. Join Sarah as she uncovers secrets that suggest the Huttingers are neither sedate nor proper. The story is rumor. The laughs are real!", "video": false, "id": 2800, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Rumor Has It...", "tagline": "Based on a true rumor.", "vote_count": 60, "homepage": "http://rumorhasitmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398375", "adult": false, "backdrop_path": "/dTenIZe8F2JlKCfFBs59qWeZ0t5.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2005-12-25", "popularity": 0.473493102019322, "original_title": "Rumor Has It...", "budget": 0, "cast": [{"name": "Jennifer Aniston", "character": "Sarah Huttinger", "id": 4491, "credit_id": "52fe436ec3a36847f8053ab1", "cast_id": 9, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Kevin Costner", "character": "Beau Burroughs", "id": 1269, "credit_id": "52fe436ec3a36847f8053ab5", "cast_id": 10, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 1}, {"name": "Shirley MacLaine", "character": "Katharine Richelieu", "id": 4090, "credit_id": "52fe436ec3a36847f8053ab9", "cast_id": 11, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Jeff Daly", "id": 103, "credit_id": "52fe436ec3a36847f8053abd", "cast_id": 12, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Earl Huttinger", "id": 28633, "credit_id": "52fe436ec3a36847f8053ac1", "cast_id": 13, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Roger McManus", "id": 4443, "credit_id": "52fe436ec3a36847f8053ac5", "cast_id": 14, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "Mena Suvari", "character": "Annie Huttinger", "id": 8211, "credit_id": "52fe436ec3a36847f8053ac9", "cast_id": 15, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 6}, {"name": "Steve Sandvoss", "character": "Scott", "id": 28634, "credit_id": "52fe436ec3a36847f8053acd", "cast_id": 16, "profile_path": "/2GrHYFPuwEcSER7BPbHLcCFKkxs.jpg", "order": 7}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe436ec3a36847f8053a83", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 5.1, "runtime": 97}, "10024": {"poster_path": "/rViNhZ10YdEmuis2g5wkxcEUJsA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49200230, "overview": "Sara and Brian live an idyllic life with their young son and daughter. But their family is rocked by sudden, heartbreaking news that forces them to make a difficult and unorthodox choice in order to save their baby girl's life. The parents' desperate decision raises both ethical and moral questions and rips away at the foundation of their relationship. Their actions ultimately set off a court case that threatens to tear the family apart, while revealing surprising truths that challenge everyone's perceptions of love and loyalty and give new meaning to the definition of healing.", "video": false, "id": 10024, "genres": [{"id": 18, "name": "Drama"}], "title": "My Sister's Keeper", "tagline": "Based on the Best Selling Novel", "vote_count": 116, "homepage": "http://www.mysisterskeepermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hr", "name": "Hrvatski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1078588", "adult": false, "backdrop_path": "/jmIEKbkqPbZPSwT6AGBxCvnkRZI.jpg", "production_companies": [{"name": "Mark Johnson Productions", "id": 2604}, {"name": "Gran Via Productions", "id": 2605}, {"name": "Curmudgeon Films", "id": 12029}], "release_date": "2009-06-26", "popularity": 1.25726661018295, "original_title": "My Sister's Keeper", "budget": 30000000, "cast": [{"name": "Cameron Diaz", "character": "Sara Fitzgerald", "id": 6941, "credit_id": "52fe430a9251416c750011fd", "cast_id": 2, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Campbell Alexander", "id": 7447, "credit_id": "52fe430a9251416c75001201", "cast_id": 3, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Abigail Breslin", "character": "Andromeda Fitzgerald", "id": 17140, "credit_id": "52fe430a9251416c75001205", "cast_id": 4, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Judge De Salvo", "id": 3234, "credit_id": "52fe430a9251416c75001209", "cast_id": 5, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Emily Deschanel", "character": "Dr. Farquad", "id": 25933, "credit_id": "52fe430a9251416c7500120d", "cast_id": 6, "profile_path": "/f5FjmOlXEcjLz4qxi5Rfbu3ZO4Y.jpg", "order": 4}, {"name": "Heather Wahlquist", "character": "Aunt Kelly", "id": 55317, "credit_id": "52fe430a9251416c7500128f", "cast_id": 28, "profile_path": "/232o4HJQu4M5cv6VNOxdvXV8itx.jpg", "order": 5}, {"name": "Jason Patric", "character": "Brian Fitzgerald", "id": 12261, "credit_id": "52fe430a9251416c75001293", "cast_id": 29, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 6}, {"name": "Evan Ellingson", "character": "Jesse Fitzgerald", "id": 181074, "credit_id": "52fe430a9251416c75001297", "cast_id": 30, "profile_path": "/h7HcdRd6aGsAFKNFi4jmeBwW2vO.jpg", "order": 7}, {"name": "Nicole Marie Lenz", "character": "Gloria", "id": 1109920, "credit_id": "52fe430a9251416c7500129b", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Joan Cusack", "character": "Judge De Salvo", "id": 3234, "credit_id": "52fe430a9251416c7500129f", "cast_id": 32, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 9}, {"name": "Keith Kraft", "character": "Paramedic (uncredited)", "id": 1429705, "credit_id": "54e8a4fec3a36836ea00209f", "cast_id": 33, "profile_path": null, "order": 10}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe430a9251416c750011f9", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 7.1, "runtime": 109}, "10996": {"poster_path": "/48PioggzfUbpRHjyQom4q9nmWGS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Stuart, an adorable white mouse, still lives happily with his adoptive family, the Littles, on the east side of Manhattan's Central Park. More crazy mouse adventures are in store as Stuart, his human brother, George, and their mischievous cat, Snowbell, set out to rescue a friend.", "video": false, "id": 10996, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Stuart Little 2", "tagline": "A Little Goes A Long Way", "vote_count": 124, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r74LzQMN1EdvdCvbIqHA95TvEKt.jpg", "poster_path": "/tBWjHQBmEa91Pa3R96zGdosULom.jpg", "id": 99727, "name": "Stuart Little Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243585", "adult": false, "backdrop_path": "/p8Z1nsE1HXSQgh8thJVAlMSSSHz.jpg", "production_companies": [{"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2002-07-19", "popularity": 0.736312549182429, "original_title": "Stuart Little 2", "budget": 120000000, "cast": [{"name": "Michael J. Fox", "character": "Voice of Stuart Little", "id": 521, "credit_id": "52fe43df9251416c750215a9", "cast_id": 1, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Geena Davis", "character": "Mrs. Eleanor Little", "id": 16935, "credit_id": "52fe43df9251416c750215ad", "cast_id": 2, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Hugh Laurie", "character": "Mr. Frederick Little", "id": 41419, "credit_id": "52fe43df9251416c750215b1", "cast_id": 3, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 2}, {"name": "Jonathan Lipnicki", "character": "George Little", "id": 67778, "credit_id": "52fe43df9251416c750215b5", "cast_id": 4, "profile_path": "/mHyAL6ByNXxMLzfykgLTmd4tvMr.jpg", "order": 3}, {"name": "Anna Hoelck", "character": "Martha Little", "id": 122552, "credit_id": "52fe43df9251416c750215dd", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Ashley Hoelck", "character": "Martha Little", "id": 122553, "credit_id": "52fe43df9251416c750215e1", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Nathan Lane", "character": "Snowbell (voice)", "id": 78729, "credit_id": "52fe43df9251416c750215e5", "cast_id": 13, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 6}, {"name": "Melanie Griffith", "character": "Margalo the Bird (voice)", "id": 29369, "credit_id": "52fe43df9251416c750215e9", "cast_id": 14, "profile_path": "/cb2IeaETE0oVV5JZc79Vi0dS6m2.jpg", "order": 7}, {"name": "James Woods", "character": "The Evil Falcon (voice)", "id": 4512, "credit_id": "52fe43df9251416c750215ed", "cast_id": 15, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 8}, {"name": "Steve Zahn", "character": "Monty the Alley-Cat (voice)", "id": 18324, "credit_id": "52fe43df9251416c750215f1", "cast_id": 16, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 9}, {"name": "Maria Bamford", "character": "Teacher", "id": 60278, "credit_id": "52fe43df9251416c750215f5", "cast_id": 18, "profile_path": "/kYrYlMNqWjl85zfoJlks90hWbLR.jpg", "order": 11}, {"name": "Kevin Olson", "character": "Irwin (as Kevin Johnson Olson)", "id": 120256, "credit_id": "52fe43df9251416c750215f9", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Rachael Harris", "character": "Additional Voices (voice)", "id": 46074, "credit_id": "52fe43df9251416c750215fd", "cast_id": 20, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 13}, {"name": "Marc John Jefferies", "character": "Will, George's Friend", "id": 62646, "credit_id": "52fe43df9251416c75021601", "cast_id": 21, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 14}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c750215bb", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 5.2, "runtime": 78}, "10999": {"poster_path": "/ypfLBI0xT9yyn38BFaRtp0Ny3uw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34896317, "overview": "Colonel Matrix has retired and is living with his 10-year-old daughter in the country. She is kidnapped to ensure that Matrix will kill the president of a Latin American country and make way for the return of a dictator. Matrix escapes off a plane flight and has until it lands to rescue his daughter.", "video": false, "id": 10999, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Commando", "tagline": "Somewhere... somehow... someone's going to pay", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088944", "adult": false, "backdrop_path": "/p8MHS8hyMmrZafKDMzIdESJb1rI.jpg", "production_companies": [{"name": "SLM Production Group", "id": 396}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1985-10-03", "popularity": 1.28929210152487, "original_title": "Commando", "budget": 10000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "John Matrix", "id": 1100, "credit_id": "52fe43df9251416c750216eb", "cast_id": 9, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Rae Dawn Chong", "character": "Cindy", "id": 13312, "credit_id": "52fe43df9251416c750216ef", "cast_id": 10, "profile_path": "/6mk5lSTIUav9T1M0VAdUP46FTSH.jpg", "order": 1}, {"name": "Dan Hedaya", "character": "Arius", "id": 6486, "credit_id": "52fe43df9251416c750216f3", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 2}, {"name": "Vernon Wells", "character": "Bennett", "id": 26491, "credit_id": "52fe43df9251416c750216f7", "cast_id": 12, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 3}, {"name": "David Patrick Kelly", "character": "Sully", "id": 1737, "credit_id": "52fe43df9251416c750216fb", "cast_id": 13, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 4}, {"name": "Bill Duke", "character": "Cooke", "id": 1103, "credit_id": "52fe43df9251416c750216ff", "cast_id": 14, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 5}, {"name": "Alyssa Milano", "character": "Jenny Matrix", "id": 24967, "credit_id": "52fe43df9251416c75021703", "cast_id": 15, "profile_path": "/s1aew8uoqK993VBU33LE5JwtOkO.jpg", "order": 6}, {"name": "Ava Cadell", "character": "Girl in Bed at Motel", "id": 1337282, "credit_id": "53b60184c3a3685eb70017bc", "cast_id": 17, "profile_path": "/47V3pzDMy2WovfFl6MtfMm97PRz.jpg", "order": 7}, {"name": "Drew Snyder", "character": "Lawson", "id": 52188, "credit_id": "53b6047dc3a3685ec100184c", "cast_id": 18, "profile_path": "/xW8V4eZaFRm0J2FCNNrcojN8yOg.jpg", "order": 8}, {"name": "Sharon Wyatt", "character": "Leslie", "id": 1229170, "credit_id": "53b607ffc3a3685eb400188e", "cast_id": 19, "profile_path": "/fcpQu4jg3IySBCpLPM6Zoz6c9fJ.jpg", "order": 9}, {"name": "Michael Delano", "character": "Forrestal", "id": 105089, "credit_id": "53b60a180e0a2676d3004454", "cast_id": 20, "profile_path": "/1YnOWZ3rxZX86LpIKf3BZ2K3fWj.jpg", "order": 10}, {"name": "Bob Minor", "character": "Jackson", "id": 156869, "credit_id": "53b60caf0e0a2676cf0043d5", "cast_id": 21, "profile_path": "/jwCeTNiNZcAQYohUksglnNYJezJ.jpg", "order": 11}, {"name": "Julie Hayek", "character": "Western Flight Attendant", "id": 1228048, "credit_id": "53b610ab0e0a2676cb00449e", "cast_id": 22, "profile_path": "/l7VvW9jSdGn14CrwpgpxGoPxAtX.jpg", "order": 12}, {"name": "Michael Adams", "character": "Harris", "id": 999672, "credit_id": "53bba940c3a368661e001e61", "cast_id": 46, "profile_path": null, "order": 13}, {"name": "Gary Carlos Cervantes", "character": "Diaz", "id": 48136, "credit_id": "53bbaa00c3a368661e001e6f", "cast_id": 47, "profile_path": "/13kjmeYYdJzdeccnJEXo56KH7CO.jpg", "order": 14}, {"name": "Walter Scott", "character": "Cates", "id": 16474, "credit_id": "53bbaa6ac3a368661a001e5e", "cast_id": 48, "profile_path": "/l8uXZW6xypNY7e4wd7a0HqzP6iA.jpg", "order": 15}, {"name": "Branscombe Richmond", "character": "Vega", "id": 106730, "credit_id": "53bbaaa8c3a3686628001eaa", "cast_id": 49, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 16}], "directors": [{"name": "Mark L. Lester", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c750216bd", "profile_path": null, "id": 67753}], "vote_average": 6.4, "runtime": 90}, "11000": {"poster_path": "/oXP90sp3sTXbmJCW6WX5BUhKthJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185260553, "overview": "A gay cabaret owner and his drag queen companion agree to put up a false straight front so that their son can introduce them to his fianc\u00e9's right-wing moralistic parents.", "video": false, "id": 11000, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Birdcage", "tagline": "Come as you are.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115685", "adult": false, "backdrop_path": "/hU7YAbnf49QLnvxs30aCgGgSb9T.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1996-03-08", "popularity": 0.490663358258419, "original_title": "The Birdcage", "budget": 0, "cast": [{"name": "Robin Williams", "character": "Armand Goldman", "id": 2157, "credit_id": "52fe43df9251416c7502174b", "cast_id": 6, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Sen. Kevin Keeley", "id": 193, "credit_id": "52fe43df9251416c7502174f", "cast_id": 7, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Nathan Lane", "character": "Albert Goldman", "id": 78729, "credit_id": "52fe43df9251416c75021753", "cast_id": 8, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 2}, {"name": "Dianne Wiest", "character": "Louise Keeley", "id": 1902, "credit_id": "52fe43df9251416c75021757", "cast_id": 9, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 3}, {"name": "Grant Heslov", "character": "National Enquirer Photographer", "id": 31511, "credit_id": "52fe43df9251416c7502175b", "cast_id": 10, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 4}, {"name": "Hank Azaria", "character": "Agador Spartacus", "id": 5587, "credit_id": "52fe43df9251416c7502175f", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 5}, {"name": "Dan Futterman", "character": "Val Goldman", "id": 5346, "credit_id": "52fe43df9251416c75021763", "cast_id": 12, "profile_path": "/lohvETRKnXTTsvjYCFvmPSylqJH.jpg", "order": 6}, {"name": "Calista Flockhart", "character": "Barbara Keeley", "id": 49148, "credit_id": "52fe43df9251416c75021767", "cast_id": 13, "profile_path": "/8QHgAF3p4GsGdh7bbt9b6Ni30Ap.jpg", "order": 7}, {"name": "Christine Baranski", "character": "Katherine Archer", "id": 11870, "credit_id": "52fe43df9251416c7502176b", "cast_id": 14, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 8}, {"name": "Tom McGowan", "character": "Harry Radman", "id": 77338, "credit_id": "52fe43df9251416c7502176f", "cast_id": 15, "profile_path": "/40M1HdJmCfhGykN0Wl23BB59duY.jpg", "order": 9}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c7502172f", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 6.6, "runtime": 117}, "11001": {"poster_path": "/czfw7EkBCK6SD1pBH0eheo1qPx9.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117758500, "overview": "Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as a LAPD detective", "video": false, "id": 11001, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Blue Streak", "tagline": "He's A Cop That's Not.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181316", "adult": false, "backdrop_path": "/lXZwfjhpTHcTDUdr87C2nZtTuUm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-09-17", "popularity": 0.493583544003728, "original_title": "Blue Streak", "budget": 65000000, "cast": [{"name": "Martin Lawrence", "character": "Miles Logan", "id": 78029, "credit_id": "52fe43df9251416c750217d1", "cast_id": 10, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Luke Wilson", "character": "Carlson", "id": 36422, "credit_id": "52fe43df9251416c750217d5", "cast_id": 11, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Dave Chappelle", "character": "Tulley", "id": 4169, "credit_id": "52fe43e09251416c750217dd", "cast_id": 13, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 2}, {"name": "Peter Greene", "character": "Deacon", "id": 11803, "credit_id": "52fe43df9251416c750217d9", "cast_id": 12, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 3}, {"name": "Nicole Ari Parker", "character": "Mellisa Green", "id": 74615, "credit_id": "52fe43e09251416c750217e1", "cast_id": 14, "profile_path": "/vvEt8sXPKm9HxxDrHyg9aIxwvEM.jpg", "order": 4}, {"name": "William Forsythe", "character": "Detective Hardcastle", "id": 4520, "credit_id": "54b34de9c3a36820a7002453", "cast_id": 21, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 5}, {"name": "Graham Beckel", "character": "Rizzo", "id": 6110, "credit_id": "52fe43e09251416c750217e5", "cast_id": 15, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 6}, {"name": "Robert Miranda", "character": "Glenfiddish", "id": 20625, "credit_id": "52fe43e09251416c750217e9", "cast_id": 16, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 7}, {"name": "Olek Krupa", "character": "Jean LaFleur", "id": 53573, "credit_id": "52fe43e09251416c750217ed", "cast_id": 17, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 8}, {"name": "Saverio Guerra", "character": "Benny", "id": 56691, "credit_id": "52fe43e09251416c750217f1", "cast_id": 18, "profile_path": "/30zqGjuEdlhkHDfQIIiMCMEMUpZ.jpg", "order": 9}, {"name": "Tamala Jones", "character": "Janiece", "id": 59154, "credit_id": "52fe43e09251416c750217f5", "cast_id": 19, "profile_path": "/gG0PHm94ArObvF8LqbuoaWP2ye5.jpg", "order": 10}, {"name": "John Hawkes", "character": "Eddie", "id": 16861, "credit_id": "54b34d699251412ffc00083f", "cast_id": 20, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 11}], "directors": [{"name": "Les Mayfield", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c7502179d", "profile_path": "/qFl6z4jAfvb3bfMeGDMD4ch61tI.jpg", "id": 56911}], "vote_average": 6.0, "runtime": 93}, "11003": {"poster_path": "/t4M6RrwBQKTqbnG9vqG339G7FCC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123, "overview": "Robbie, a local rock star turned wedding singer, is dumped on the day of his wedding. Meanwhile, waitress Julia finally sets a wedding date with her fianc\u00e9e Glenn. When Julia and Robbie meet and hit it off, they find that things are more complicated than anybody thought.", "video": false, "id": 11003, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Wedding Singer", "tagline": "He's gonna party like it's 1985.", "vote_count": 160, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120888", "adult": false, "backdrop_path": "/sWGFvPVwfzMu8o259fA2j76m2uI.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Juno Pix", "id": 4286}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "1998-02-13", "popularity": 0.654147238585717, "original_title": "The Wedding Singer", "budget": 22000000, "cast": [{"name": "Adam Sandler", "character": "Robbie Hart", "id": 19292, "credit_id": "52fe43e09251416c750218a7", "cast_id": 8, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Julia Sullivan", "id": 69597, "credit_id": "52fe43e09251416c750218ab", "cast_id": 9, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Christine Taylor", "character": "Holly Sullivan", "id": 15286, "credit_id": "52fe43e09251416c750218af", "cast_id": 10, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 2}, {"name": "Allen Covert", "character": "Sammy", "id": 20818, "credit_id": "52fe43e09251416c750218b3", "cast_id": 11, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 3}, {"name": "Jon Lovitz", "character": "Jimmie Moore", "id": 16165, "credit_id": "52fe43e09251416c750218bd", "cast_id": 15, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 4}, {"name": "Ellen Dow", "character": "Rosie", "id": 85171, "credit_id": "52fe43e09251416c750218c7", "cast_id": 17, "profile_path": "/suREaXoLKSBhJPsMXnD6P0EnGXf.jpg", "order": 5}, {"name": "Angela Featherstone", "character": "Linda", "id": 15276, "credit_id": "52fe43e09251416c750218cb", "cast_id": 18, "profile_path": "/jC0jKdQL3M2M3WYVqojg8OcRdwJ.jpg", "order": 6}, {"name": "Billy Idol", "character": "Himself", "id": 80117, "credit_id": "52fe43e09251416c750218cf", "cast_id": 20, "profile_path": "/p7FpDfrUdcUsWUZcxdPM0ahhfBm.jpg", "order": 7}, {"name": "Alexis Arquette", "character": "George", "id": 19578, "credit_id": "52fe43e09251416c750218d3", "cast_id": 21, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 8}, {"name": "Christina Pickles", "character": "Angie Sullivan", "id": 94978, "credit_id": "52fe43e09251416c750218d7", "cast_id": 22, "profile_path": "/vhUkCPm78zsv9P1PfWzm4INE02d.jpg", "order": 9}, {"name": "Jodi Thelen", "character": "Kate", "id": 170306, "credit_id": "52fe43e09251416c750218db", "cast_id": 23, "profile_path": "/mO6aCVVhfkV5oBCbl1cRcVh89vr.jpg", "order": 10}, {"name": "Matthew Glave", "character": "Glenn Guglia", "id": 1219226, "credit_id": "52fe43e09251416c750218df", "cast_id": 24, "profile_path": "/vrJpneVBPIeH0DjnKVpLpgpxQRr.jpg", "order": 11}, {"name": "Steve Buscemi", "character": "David 'Dave' Veltri", "id": 884, "credit_id": "54133a70c3a3687d9e0003bd", "cast_id": 25, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 12}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe43e09251416c7502188b", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.3, "runtime": 95}, "11005": {"poster_path": "/6vkJhhd9h9QxMGHYQjVY1fY5XSI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52096475, "overview": "The victims of an encephalitis epidemic many years ago have been catatonic ever since, but now a new drug offers the prospect of reviving them.", "video": false, "id": 11005, "genres": [{"id": 18, "name": "Drama"}], "title": "Awakenings", "tagline": "There is no such thing as a simple miracle.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099077", "adult": false, "backdrop_path": "/qbHJsDJLyPfBLkHfdsNTWvSirv8.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1990-12-12", "popularity": 0.758464092468438, "original_title": "Awakenings", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Leonard Lowe", "id": 380, "credit_id": "52fe43e09251416c750219f9", "cast_id": 10, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Robin Williams", "character": "Dr. Malcolm Sayer", "id": 2157, "credit_id": "52fe43e09251416c750219fd", "cast_id": 11, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Julie Kavner", "character": "Eleanor Costello", "id": 199, "credit_id": "52fe43e09251416c75021a01", "cast_id": 12, "profile_path": "/AuhOCpsQwr09nBvTtaqArggLNd7.jpg", "order": 2}, {"name": "Ruth Nelson", "character": "Mrs. Lowe", "id": 67761, "credit_id": "52fe43e09251416c75021a05", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "John Heard", "character": "Dr. Kaufman", "id": 11512, "credit_id": "52fe43e09251416c75021a0f", "cast_id": 15, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 4}, {"name": "Penelope Ann Miller", "character": "Paula", "id": 14698, "credit_id": "52fe43e09251416c75021a1b", "cast_id": 18, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 5}, {"name": "Alice Drummond", "character": "Lucy", "id": 17488, "credit_id": "52fe43e09251416c75021a1f", "cast_id": 19, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 6}, {"name": "Judith Malina", "character": "Rose", "id": 119864, "credit_id": "52fe43e09251416c75021a23", "cast_id": 20, "profile_path": "/kO8TlnKZvrW3NuIBZhucbeBxDDH.jpg", "order": 7}, {"name": "Barton Heyman", "character": "Bert", "id": 79732, "credit_id": "52fe43e09251416c75021a27", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "George Martin", "character": "Frank", "id": 2701, "credit_id": "52fe43e09251416c75021a2b", "cast_id": 22, "profile_path": "/lax77fIWSWrMYuS9zJi7VquNOeI.jpg", "order": 9}, {"name": "Anne Meara", "character": "Miriam", "id": 32394, "credit_id": "52fe43e09251416c75021a2f", "cast_id": 23, "profile_path": "/oNZszKpUZHfbT1mk2cD53uuZsnp.jpg", "order": 10}, {"name": "Richard Libertini", "character": "Sidney", "id": 20163, "credit_id": "52fe43e09251416c75021a33", "cast_id": 24, "profile_path": "/hWqF6BHojClGbQCfLU3fS2aYz2B.jpg", "order": 11}, {"name": "Laura Esterman", "character": "Lolly", "id": 171425, "credit_id": "52fe43e09251416c75021a37", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Dexter Gordon", "character": "Rolando", "id": 77135, "credit_id": "52fe43e09251416c75021a3b", "cast_id": 26, "profile_path": "/kHXBnU2XstegyqXlYYvPQKwMSH8.jpg", "order": 13}, {"name": "Jayne Haynes", "character": "Frances", "id": 181312, "credit_id": "52fe43e09251416c75021a3f", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Le Clanch\u00e9 du Rand", "character": "Magda", "id": 557850, "credit_id": "52fe43e09251416c75021a43", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Yusef Bulos", "character": "Joseph", "id": 142757, "credit_id": "52fe43e09251416c75021a47", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Steven Randazzo", "character": "Luis (as Steve Randazzo)", "id": 59281, "credit_id": "52fe43e09251416c75021a4b", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Gloria Harper", "character": "Dottie", "id": 1170964, "credit_id": "52fe43e09251416c75021a4f", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Gwyllum Evans", "character": "Desmond", "id": 196311, "credit_id": "52fe43e09251416c75021a53", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Mary Catherine Wright", "character": "Nurse Beth", "id": 163989, "credit_id": "52fe43e09251416c75021a57", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Mary Alice", "character": "Nurse Margaret", "id": 9572, "credit_id": "52fe43e09251416c75021a5b", "cast_id": 34, "profile_path": "/2h20nF8gvhqhgVDV6Lru55dKB44.jpg", "order": 21}, {"name": "Keith Diamond", "character": "Anthony", "id": 154629, "credit_id": "52fe43e09251416c75021a5f", "cast_id": 35, "profile_path": "/yCjWqiIccAoN8vuAm0tM3l5Qnyu.jpg", "order": 22}, {"name": "Steve Vinovich", "character": "Ray", "id": 88948, "credit_id": "52fe43e19251416c75021a63", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Tiger Haynes", "character": "Janitor", "id": 90186, "credit_id": "52fe43e19251416c75021a67", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "John Christopher Jones", "character": "Dr. Sullivan", "id": 51532, "credit_id": "52fe43e19251416c75021a6b", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Bradley Whitford", "character": "Dr. Tyler", "id": 11367, "credit_id": "52fe43e09251416c75021a13", "cast_id": 16, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 26}, {"name": "Max von Sydow", "character": "Dr. Peter Ingham", "id": 2201, "credit_id": "52fe43e19251416c75021a6f", "cast_id": 39, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 27}, {"name": "Harvey Miller", "character": "Hospital Director", "id": 29706, "credit_id": "52fe43e19251416c75021a73", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Tanya Berezin", "character": "Psychiatrist", "id": 163809, "credit_id": "52fe43e19251416c75021a77", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Peter Stormare", "character": "Neurochemist", "id": 53, "credit_id": "52fe43e19251416c75021a7b", "cast_id": 42, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 30}, {"name": "Shane Fistell", "character": "Man in Hall", "id": 1170965, "credit_id": "52fe43e19251416c75021a7f", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Waheedah Ahmad", "character": "Hysterical Woman", "id": 1170966, "credit_id": "52fe43e19251416c75021a83", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Charles Keating", "character": "Mr. Kean", "id": 13937, "credit_id": "52fe43e19251416c75021a87", "cast_id": 45, "profile_path": "/c2vPVQidD2pf77iiTwgDcIGGQaP.jpg", "order": 33}, {"name": "Christina Huertes", "character": "Christina", "id": 1170967, "credit_id": "52fe43e19251416c75021a8b", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Linda Burns", "character": "Fishsticks", "id": 1170968, "credit_id": "52fe43e19251416c75021a8f", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Judy Jacksina", "character": "Hospital Receptionist", "id": 171229, "credit_id": "52fe43e19251416c75021a93", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Gary Tacon", "character": "George, Security Guard", "id": 91835, "credit_id": "52fe43e19251416c75021a97", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Rico Elias", "character": "Orderly #1", "id": 1003901, "credit_id": "52fe43e19251416c75021a9b", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Mel Gorham", "character": "Nurse Sara", "id": 46394, "credit_id": "52fe43e19251416c75021a9f", "cast_id": 51, "profile_path": "/80hkRQgJPYiwJ8QqqCMiemkn8Ta.jpg", "order": 39}, {"name": "Chris Carolan", "character": "EEG Technician", "id": 1170969, "credit_id": "52fe43e19251416c75021aa3", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Debra Kovner-Zaks", "character": "Cafeteria Nurse", "id": 1170970, "credit_id": "52fe43e19251416c75021aa7", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Vin Diesel", "character": "Hospital Orderly (Uncredited)", "id": 12835, "credit_id": "52fe43e09251416c75021a17", "cast_id": 17, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 42}, {"name": "Laurence Fishburne", "character": "Orderly", "id": 2975, "credit_id": "52fe43e19251416c75021acf", "cast_id": 60, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 43}], "directors": [{"name": "Penny Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43e09251416c750219c5", "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "id": 14911}], "vote_average": 6.8, "runtime": 121}, "11007": {"poster_path": "/8vhbMWKJOcGJuX5bAtm8d7QqpAY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 190212113, "overview": "The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.", "video": false, "id": 11007, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Cheaper by the Dozen", "tagline": "Growing pains? They've got twelve of them!", "vote_count": 147, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5LCXYjHCy78SJqGhpAgabHmyf2s.jpg", "id": 114783, "name": "Cheaper by the Dozen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0349205", "adult": false, "backdrop_path": "/j5h1ATCyQ2WivqdANA1ACVeQr61.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2003-12-25", "popularity": 0.883204800953025, "original_title": "Cheaper by the Dozen", "budget": 40000000, "cast": [{"name": "Steve Martin", "character": "Tom Baker", "id": 67773, "credit_id": "52fe43e19251416c75021b95", "cast_id": 1, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Bonnie Hunt", "character": "Kate Baker", "id": 5149, "credit_id": "52fe43e19251416c75021b99", "cast_id": 2, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 1}, {"name": "Piper Perabo", "character": "Nora Baker", "id": 15555, "credit_id": "52fe43e19251416c75021b9d", "cast_id": 3, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 2}, {"name": "Tom Welling", "character": "Charlie Baker", "id": 11824, "credit_id": "52fe43e19251416c75021ba1", "cast_id": 4, "profile_path": "/45hE6LdT31IyMKLtu8JPopByMEH.jpg", "order": 3}, {"name": "Hilary Duff", "character": "Lorraine Baker", "id": 5958, "credit_id": "52fe43e19251416c75021ba5", "cast_id": 5, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 4}, {"name": "Kevin G. Schmidt", "character": "Henry Baker", "id": 85140, "credit_id": "52fe43e19251416c75021bf7", "cast_id": 19, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 5}, {"name": "Alyson Stoner", "character": "Sarah Baker", "id": 58965, "credit_id": "52fe43e19251416c75021bfb", "cast_id": 20, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 6}, {"name": "Jacob Smith", "character": "Jake Baker", "id": 9829, "credit_id": "52fe43e19251416c75021bff", "cast_id": 21, "profile_path": "/gWdoJZzinaMLniOFTGfWooZPo91.jpg", "order": 7}, {"name": "Liliana Mumy", "character": "Jessica Baker", "id": 71861, "credit_id": "52fe43e19251416c75021c03", "cast_id": 22, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 8}, {"name": "Morgan York", "character": "Kim Baker", "id": 148615, "credit_id": "52fe43e19251416c75021c07", "cast_id": 23, "profile_path": "/AhcT2J8Kk1mRpDhDdhszAeQslBg.jpg", "order": 9}, {"name": "Forrest Landis", "character": "Mark Baker", "id": 60393, "credit_id": "52fe43e19251416c75021c0b", "cast_id": 24, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 10}, {"name": "Blake Woodruff", "character": "Mike Baker", "id": 142635, "credit_id": "52fe43e19251416c75021c0f", "cast_id": 25, "profile_path": "/oNsSKbH4rIGY8AnyCyChp4NRQ8C.jpg", "order": 11}, {"name": "Brent Kinsman", "character": "Nigel Baker", "id": 148617, "credit_id": "52fe43e19251416c75021c13", "cast_id": 26, "profile_path": "/vMr6zID6ZJBJPY28uWvdu3vsqDS.jpg", "order": 12}, {"name": "Brent and Shane Kinsman", "character": "Kyle Baker", "id": 148618, "credit_id": "52fe43e19251416c75021c17", "cast_id": 27, "profile_path": "/f69HcZsO5xnTi0JcuvP8RxyIYm6.jpg", "order": 13}, {"name": "Paula Marshall", "character": "Tina Shenk", "id": 59449, "credit_id": "52fe43e19251416c75021c1b", "cast_id": 28, "profile_path": "/gK8r5RwH8Guf4YxbhLGXeRZjot4.jpg", "order": 14}, {"name": "Ashton Kutcher", "character": "Hank (uncredited)", "id": 18976, "credit_id": "52fe43e19251416c75021c1f", "cast_id": 29, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 15}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe43e19251416c75021bab", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.7, "runtime": 98}, "76544": {"poster_path": "/42MutxsgeJS5pYLNWUGv8d6B9wa.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2054941, "overview": "In Beijing, a young martial artist's skill places him in position to experience opportunities and sacrifices.", "video": false, "id": 76544, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Man of Tai Chi", "tagline": "No Rules. No Mercy. Pure Fighting.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt2016940", "adult": false, "backdrop_path": "/fQsnOE6OpjV2wkCVBBoC47T4wUH.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Universal Pictures", "id": 33}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Company Films", "id": 22339}, {"name": "Dalian Wanda Group", "id": 22340}], "release_date": "2013-11-01", "popularity": 0.843359082339003, "original_title": "Man of Tai Chi", "budget": 25000000, "cast": [{"name": "Keanu Reeves", "character": "Donaka Mark", "id": 6384, "credit_id": "52fe4941c3a368484e122215", "cast_id": 2, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Tiger Hu Chen", "character": "Chen Lin-Hu", "id": 579330, "credit_id": "52fe4941c3a368484e122219", "cast_id": 3, "profile_path": "/49EWQmIg5fxJd1sEOiUODNvQzh5.jpg", "order": 1}, {"name": "Jeremy Marinas", "character": "MMA Fighter", "id": 1188571, "credit_id": "52fe4941c3a368484e122223", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Steven Dasz", "character": "Vip audience", "id": 590919, "credit_id": "52fe4941c3a368484e122227", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Karen Mok", "character": "Sun Jingshi", "id": 57831, "credit_id": "52fe4941c3a368484e12222b", "cast_id": 7, "profile_path": "/hfxRryhoRtT05ukFa7ooSM8pDhN.jpg", "order": 4}, {"name": "Michael Chan", "character": "Police Officer #1", "id": 200754, "credit_id": "52fe4941c3a368484e12222f", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Qing Ye", "character": "Qingsha", "id": 1210413, "credit_id": "52fe4941c3a368484e122233", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Yu Hai", "character": "Yang", "id": 1210414, "credit_id": "52fe4941c3a368484e122237", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Sam Lee", "character": "Tak Ming", "id": 74193, "credit_id": "52fe4941c3a368484e12223b", "cast_id": 11, "profile_path": "/peBEATyBMxLnbqdg9DLBZVyJXkY.jpg", "order": 8}, {"name": "Iko Uwais", "character": "Gilang Sanjaya", "id": 113732, "credit_id": "52fe4941c3a368484e12223f", "cast_id": 12, "profile_path": "/5unOYIpJUl35q5Q7dG1A6tJF2Jk.jpg", "order": 9}, {"name": "Silvio Simac", "character": "Uri Romanov", "id": 134414, "credit_id": "52fe4941c3a368484e122243", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Simon Yam", "character": "Wong", "id": 20519, "credit_id": "52fe4941c3a368484e122247", "cast_id": 14, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 11}], "directors": [{"name": "Keanu Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe4941c3a368484e122211", "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "id": 6384}], "vote_average": 5.9, "runtime": 105}, "11009": {"poster_path": "/uC0GIPI54UiqrIQsnq6C0qXSIwp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237113184, "overview": "Nineteen-year-old Tony Manero lives for Saturday nights at the local disco, where he's king of the dance floor. But outside of the club, things don't look so rosy. At home, he fights constantly with his father and has to compete with his family's starry-eyed view of his older brother, a priest. Then, he meets Stephanie at the disco and they agree to dance together in a competition. Stephanie resists Tony's attempts to romance her, as she aspires to greater things; she is moving across the river to Manhattan. Gradually, Tony also becomes disillusioned with the life he is leading and he and Stephanie decide to help one another to start afresh", "video": false, "id": 11009, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Saturday Night Fever", "tagline": "Catch it.", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/66JFemhPp5qh0pGYPkGqjocR0Fv.jpg", "id": 288280, "name": "Saturday Night Fever Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076666", "adult": false, "backdrop_path": "/gqTwlRkQ2FBCeeq6JxzCj4ctjHF.jpg", "production_companies": [{"name": "Robert Stigwood Organization (RSO)", "id": 3978}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1977-12-16", "popularity": 0.978946869932291, "original_title": "Saturday Night Fever", "budget": 3500000, "cast": [{"name": "John Travolta", "character": "Tony Manero", "id": 8891, "credit_id": "52fe43e29251416c75021d25", "cast_id": 9, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Karen Lynn Gorney", "character": "Stephanie Mangano", "id": 67787, "credit_id": "52fe43e29251416c75021d29", "cast_id": 10, "profile_path": "/Z7KD1t1HhoSfbm8OS15Q2vTFBK.jpg", "order": 1}, {"name": "Barry Miller", "character": "Bobby C.", "id": 62014, "credit_id": "52fe43e29251416c75021d2d", "cast_id": 11, "profile_path": "/tYZZCu2YvgUPqtqUeAj4StZrhGO.jpg", "order": 2}, {"name": "Joseph Cali", "character": "Joey", "id": 67788, "credit_id": "52fe43e29251416c75021d31", "cast_id": 12, "profile_path": "/bPI8PiXfE04d5dmNkc9j1RU03b3.jpg", "order": 3}, {"name": "Paul Pape", "character": "Double J.", "id": 174563, "credit_id": "52fe43e29251416c75021d35", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Bruce Ornstein", "character": "Gus", "id": 171758, "credit_id": "52fe43e29251416c75021d39", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Julie Bovasso", "character": "Flo", "id": 20972, "credit_id": "52fe43e29251416c75021d3d", "cast_id": 16, "profile_path": "/hki5xcknSNW8KZGB3hoJWv1gLEL.jpg", "order": 6}, {"name": "Martin Shakar", "character": "Frank Jr.", "id": 119054, "credit_id": "52fe43e29251416c75021d41", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Sam Coppola", "character": "Dan Fusco (as Sam J. Coppola)", "id": 118132, "credit_id": "52fe43e29251416c75021d45", "cast_id": 18, "profile_path": "/nw61T8Yuua0OCabfdoWult2qbeQ.jpg", "order": 8}, {"name": "Nina Hansen", "character": "Grandmother", "id": 951077, "credit_id": "52fe43e29251416c75021d49", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Lisa Peluso", "character": "Linda", "id": 1191736, "credit_id": "52fe43e29251416c75021d4d", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Denny Dillon", "character": "Doreen", "id": 59695, "credit_id": "52fe43e29251416c75021d51", "cast_id": 21, "profile_path": "/rc67RDrAKtN0qWBkB2AzXAxztHr.jpg", "order": 11}, {"name": "Bert Michaels", "character": "Pete", "id": 1161044, "credit_id": "52fe43e29251416c75021d55", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Robert Costanzo", "character": "Paint Store Customer (as Robert Costanza)", "id": 33492, "credit_id": "52fe43e29251416c75021d59", "cast_id": 23, "profile_path": "/o8B9lwbDUUT7DwWKixoTUFMKlyf.jpg", "order": 13}, {"name": "Robert Weil", "character": "Becker", "id": 1191737, "credit_id": "52fe43e29251416c75021d5d", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Shelly Batt", "character": "Girl in Disco", "id": 1191738, "credit_id": "52fe43e29251416c75021d61", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Fran Drescher", "character": "Connie", "id": 53122, "credit_id": "52fe43e29251416c75021d65", "cast_id": 26, "profile_path": "/vQxr8CRgyDkH3GTFLwacs9W9tF4.jpg", "order": 16}, {"name": "Donna Pescow", "character": "Annette", "id": 1216751, "credit_id": "52fe43e29251416c75021d73", "cast_id": 29, "profile_path": "/2yJE8kzwFDO1pXaaQYzuzMgiWQV.jpg", "order": 18}, {"name": "Val Bisoglio", "character": "Frank Manero Sr.", "id": 107068, "credit_id": "540b0a5a0e0a262b46002591", "cast_id": 30, "profile_path": "/wxeAHpKODn5oYRu359jCRgmHGDL.jpg", "order": 19}], "directors": [{"name": "John Badham", "department": "Directing", "job": "Director", "credit_id": "52fe43e29251416c75021cf7", "profile_path": "/oAhHnnyoIY7qgg7aERbsOuqFdow.jpg", "id": 12840}], "vote_average": 6.5, "runtime": 118}, "11011": {"poster_path": "/hbNmaqJcjg4ChZ5vvfQpNzizoiR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Billionaire heir Richie Rich has it all, including Reggie Jackson as a batting coach and Claudia Schiffer as a personal trainer -- but no playmates. What's more, scoundrel Laurence Van Dough is scheming to take over the family empire. Uh-oh! Enter faithful butler Cadbury to save the day.", "video": false, "id": 11011, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Richie Rich", "tagline": "An adventure so big... even the world's richest kid can't afford to miss it!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 167985, "name": "Richie Rich Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0110989", "adult": false, "backdrop_path": "/dec4cvdWK4P7hKxiH2Pr0BcBCFW.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Warner Bros. Entertainment", "id": 17}], "release_date": "1994-12-21", "popularity": 0.419444227527316, "original_title": "Ri\u00a2hie Ri\u00a2h", "budget": 40000000, "cast": [{"name": "Macaulay Culkin", "character": "Richie Rich", "id": 11510, "credit_id": "52fe43e29251416c75021e35", "cast_id": 9, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 0}, {"name": "John Larroquette", "character": "Lawrence Van Dough", "id": 14101, "credit_id": "52fe43e29251416c75021e39", "cast_id": 10, "profile_path": "/ilQ3NBO3LDsfSIuVpoh1C9sz6eb.jpg", "order": 1}, {"name": "Edward Herrmann", "character": "Richard Rich", "id": 52995, "credit_id": "52fe43e29251416c75021e3d", "cast_id": 11, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 2}, {"name": "Christine Ebersole", "character": "Regina Rich", "id": 4003, "credit_id": "52fe43e29251416c75021e41", "cast_id": 12, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 3}, {"name": "Michael Maccarone", "character": "Tony", "id": 952664, "credit_id": "52fe43e29251416c75021e45", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Joel Robinson", "character": "Omar", "id": 218589, "credit_id": "52fe43e29251416c75021e49", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Jonathan Hilario", "character": "Pee Wee", "id": 974420, "credit_id": "52fe43e29251416c75021e4d", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Rory Culkin", "character": "Young Richie", "id": 28042, "credit_id": "52fe43e29251416c75021e51", "cast_id": 16, "profile_path": "/ceb0M0ikZj8kg5oXfGr5wi1MDc6.jpg", "order": 7}, {"name": "Jonathan Hyde", "character": "Herbert Cadbury", "id": 8537, "credit_id": "52fe43e29251416c75021e55", "cast_id": 17, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 8}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe43e29251416c75021e07", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 5.2, "runtime": 95}, "11013": {"poster_path": "/dZaTYgy6sc6Z8ylaKdXw8yq5sRv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9304609, "overview": "A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.", "video": false, "id": 11013, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Secretary", "tagline": "Assume the position.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0274812", "adult": false, "backdrop_path": "/gAAZt8QGa9o2xtU5Ag3ITQIgVXk.jpg", "production_companies": [{"name": "Slough Pond", "id": 4730}, {"name": "double A Films", "id": 4731}], "release_date": "2002-01-11", "popularity": 1.15600752950925, "original_title": "Secretary", "budget": 0, "cast": [{"name": "James Spader", "character": "E. Edward Grey", "id": 13548, "credit_id": "52fe43e39251416c75021f61", "cast_id": 9, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Lee Holloway", "id": 1579, "credit_id": "52fe43e39251416c75021f65", "cast_id": 10, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Jeremy Davies", "character": "Peter", "id": 4654, "credit_id": "52fe43e39251416c75021f69", "cast_id": 11, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 2}, {"name": "Lesley Ann Warren", "character": "Joan Holloway", "id": 21818, "credit_id": "52fe43e39251416c75021f6d", "cast_id": 12, "profile_path": "/4I5VPyumsxYGKST9b0FL2harYRK.jpg", "order": 3}, {"name": "Stephen McHattie", "character": "Burt Holloway", "id": 230, "credit_id": "53c0cc410e0a2615790081d4", "cast_id": 14, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 4}, {"name": "Amy Locane", "character": "Lee's Sister", "id": 21412, "credit_id": "53c0cc7b0e0a261576008584", "cast_id": 15, "profile_path": "/6F3aO7rTxHSXTW0Eax3EHSU9Eu2.jpg", "order": 5}, {"name": "Patrick Bauchau", "character": "Dr. Twardon", "id": 5274, "credit_id": "5490a8a69251411f6d00032d", "cast_id": 18, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 6}, {"name": "Jessica Tuck", "character": "Tricia O'Connor", "id": 156689, "credit_id": "5490a8d1c3a368740500030e", "cast_id": 19, "profile_path": "/smsznskzjz5c6SbjEFW6kENGhho.jpg", "order": 7}, {"name": "Oz Perkins", "character": "Jonathan", "id": 90609, "credit_id": "5490a905c3a36873f90003a7", "cast_id": 20, "profile_path": "/mFMTeyafafTqSgaWaRvGaLNgG7j.jpg", "order": 8}], "directors": [{"name": "Steven Shainberg", "department": "Directing", "job": "Director", "credit_id": "52fe43e39251416c75021f39", "profile_path": "/nkJrwamjmx5ZMQvEyTa5zWnRNId.jpg", "id": 67795}], "vote_average": 6.7, "runtime": 104}, "19585": {"poster_path": "/ecTQ40F6Ob4JW2qMRUf8ThxViyd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A team of trained secret agent animals, guinea pigs Darwin, Juarez, Blaster, mole Speckles, and fly Mooch takes on a mission for the US government to stop evil Leonard Saber, who plans to destroy the world with household appliances. But the government shuts them down and they are sentenced to a pet shop. Can they escape to defeat the villain and save the world?", "video": false, "id": 19585, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "G-Force", "tagline": "The world needs bigger heroes", "vote_count": 166, "homepage": "http://disney.go.com/disneypictures/gforce/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0436339", "adult": false, "backdrop_path": "/dnBiiPKJnIKb1e8BcDo3cicdjFG.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Whamaphram Productions", "id": 3639}], "release_date": "2009-07-21", "popularity": 0.991785077223304, "original_title": "G-Force", "budget": 0, "cast": [{"name": "Sam Rockwell", "character": "Darwin the Guinea Pig (voice)", "id": 6807, "credit_id": "52fe47e19251416c750a88f5", "cast_id": 1, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Juarez the Guinea Pig (voice)", "id": 955, "credit_id": "52fe47e19251416c750a88f9", "cast_id": 2, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Tracy Morgan", "character": "Blaster the Guinea Pig (voice)", "id": 56903, "credit_id": "52fe47e19251416c750a88fd", "cast_id": 3, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 2}, {"name": "Jon Favreau", "character": "Hurley the Guinea Pig (voice)", "id": 15277, "credit_id": "52fe47e19251416c750a8901", "cast_id": 4, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Bucky the Hamster (voice)", "id": 884, "credit_id": "52fe47e19251416c750a8905", "cast_id": 5, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Nicolas Cage", "character": "Speckles the Mole (voice)", "id": 2963, "credit_id": "52fe47e19251416c750a8909", "cast_id": 6, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 5}, {"name": "Edwin Louis", "character": "Mooch the Fly (voice)", "id": 84845, "credit_id": "52fe47e19251416c750a890d", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Jared Lavette", "character": "Jared the Skunk (voice)", "id": 84846, "credit_id": "52fe47e19251416c750a8911", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Micah Lavette", "character": "Micah the Fox (voice)", "id": 84847, "credit_id": "52fe47e19251416c750a8915", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Bill Nighy", "character": "Leonard Saber", "id": 2440, "credit_id": "52fe47e19251416c750a8919", "cast_id": 10, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 9}, {"name": "Will Arnett", "character": "Kip Killian", "id": 21200, "credit_id": "52fe47e19251416c750a891d", "cast_id": 11, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 10}, {"name": "Zach Galifianakis", "character": "Ben", "id": 58225, "credit_id": "52fe47e19251416c750a8921", "cast_id": 12, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 11}, {"name": "Kelli Garner", "character": "Marcie", "id": 17442, "credit_id": "52fe47e19251416c750a8925", "cast_id": 13, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 12}, {"name": "Niecy Nash", "character": "Rosalita", "id": 63231, "credit_id": "52fe47e19251416c750a8929", "cast_id": 14, "profile_path": "/uDgMY19qLLxJLGGr0JYzbi01JmW.jpg", "order": 13}, {"name": "Loudon Wainwright III", "character": "Grandpa Goodman", "id": 84848, "credit_id": "52fe47e19251416c750a892d", "cast_id": 15, "profile_path": "/dXknB49LSGxMcmhYGch7hcsYFY1.jpg", "order": 14}, {"name": "Tyler Patrick Jones", "character": "Connor", "id": 62821, "credit_id": "52fe47e19251416c750a8931", "cast_id": 16, "profile_path": "/deBdsmXr0VPBWuUhUfJcJT6jp5n.jpg", "order": 15}, {"name": "Piper Mackenzie Harris", "character": "Penny", "id": 84849, "credit_id": "52fe47e19251416c750a8935", "cast_id": 17, "profile_path": "/iTiubeqPER1X8x7Q76DjtL5tQ83.jpg", "order": 16}, {"name": "Chris Ellis", "character": "NSA Director", "id": 8191, "credit_id": "52fe47e19251416c750a8939", "cast_id": 18, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 17}, {"name": "Gabriel Casseus", "character": "Carter", "id": 18272, "credit_id": "52fe47e19251416c750a893d", "cast_id": 19, "profile_path": "/pAp9Rhl0X3kpNlk0ms0lDpQrPDF.jpg", "order": 18}, {"name": "Justin Mentell", "character": "Terrell", "id": 84850, "credit_id": "52fe47e19251416c750a8941", "cast_id": 20, "profile_path": "/kPQOd6S9kklkTdmPZfSQ56ZSmyD.jpg", "order": 19}], "directors": [{"name": "Hoyt Yeatman", "department": "Directing", "job": "Director", "credit_id": "52fe47e19251416c750a8947", "profile_path": null, "id": 84851}], "vote_average": 5.3, "runtime": 88}, "11017": {"poster_path": "/5mP8F0NYSVrwrlWRCSD4uywMNnX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26488734, "overview": "Billy Madison is the 27 year-old son of Bryan Madison, a very rich man who has made his living in the hotel industry. Billy stands to inherit his father's empire but only if he can make it through all 12 grades, 2 weeks per grade, to prove that he has what it takes to run the family business.", "video": false, "id": 11017, "genres": [{"id": 35, "name": "Comedy"}], "title": "Billy Madison", "tagline": "Billy is going back to school... Way back.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112508", "adult": false, "backdrop_path": "/m7p9XaukI9c3IGdX8w9NaKgOrin.jpg", "production_companies": [{"name": "Jack Giarraputo Productions", "id": 6365}], "release_date": "1995-02-10", "popularity": 0.784182827716718, "original_title": "Billy Madison", "budget": 10000000, "cast": [{"name": "Adam Sandler", "character": "Billy Madison", "id": 19292, "credit_id": "52fe43e49251416c750220f9", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Darren McGavin", "character": "Brian Madison", "id": 7333, "credit_id": "52fe43e49251416c750220fd", "cast_id": 2, "profile_path": "/issKaw0mcujeUZLiLkizs1KYG98.jpg", "order": 1}, {"name": "Bridgette Wilson", "character": "Veronica Vaughn", "id": 20751, "credit_id": "52fe43e49251416c75022101", "cast_id": 3, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 2}, {"name": "Bradley Whitford", "character": "Eric Gordon", "id": 11367, "credit_id": "52fe43e49251416c75022105", "cast_id": 4, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 3}, {"name": "Josh Mostel", "character": "Principal Max Anderson", "id": 33489, "credit_id": "52fe43e49251416c75022109", "cast_id": 5, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 4}, {"name": "Norm Macdonald", "character": "Frank", "id": 77075, "credit_id": "52fe43e49251416c75022143", "cast_id": 15, "profile_path": "/5jAVTWdeGGtSCZ37jT4uOyP2O0T.jpg", "order": 5}, {"name": "Mark Beltzman", "character": "Jack", "id": 188694, "credit_id": "52fe43e49251416c75022147", "cast_id": 16, "profile_path": "/re1ysFDhkw7E1OyGv1oLzwv6YZZ.jpg", "order": 6}, {"name": "Larry Hankin", "character": "Carl Alphonse", "id": 11519, "credit_id": "52fe43e49251416c7502214b", "cast_id": 17, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 7}, {"name": "Theresa Merritt", "character": "Juanita", "id": 77226, "credit_id": "52fe43e49251416c7502214f", "cast_id": 18, "profile_path": "/aTxceAux9NNaclxPJGOhMKvEruM.jpg", "order": 8}, {"name": "Dina Platias", "character": "Miss Lippy", "id": 954122, "credit_id": "52fe43e49251416c75022153", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Hrant Alianak", "character": "Pete", "id": 44155, "credit_id": "52fe43e49251416c75022157", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Vincent Marino", "character": "Cook", "id": 185154, "credit_id": "52fe43e49251416c7502215b", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Jack Mather", "character": "Ted 'Old Man' Clemens", "id": 151771, "credit_id": "52fe43e49251416c7502215f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Christopher Kelk", "character": "Rollo the Janitor", "id": 1073822, "credit_id": "52fe43e49251416c75022163", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Marc Donato", "character": "Nodding 1st Grader", "id": 112600, "credit_id": "52fe43e49251416c75022167", "cast_id": 24, "profile_path": "/2u5zIQRq4ps3PLTm8EqsDYrjnp8.jpg", "order": 14}, {"name": "Chris Farley", "character": "Bus Driver", "id": 58198, "credit_id": "52fe43e49251416c7502216b", "cast_id": 25, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 15}, {"name": "Steve Buscemi", "character": "", "id": 884, "credit_id": "5517955e9251416f00002cbe", "cast_id": 26, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 16}], "directors": [{"name": "Tamra Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43e49251416c7502210f", "profile_path": "/8N9WC5CJK0ADmfPJFN4NohFKRbP.jpg", "id": 57691}], "vote_average": 6.3, "runtime": 89}, "71469": {"poster_path": "/vRfn8Zxm4Xfssb7TFiSMDfpJEn.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story tells of a group of young people who fight to survive in Russia after an alien invasion.", "video": false, "id": 71469, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Darkest Hour", "tagline": "Survive The Holidays", "vote_count": 185, "homepage": "http://www.darkesthourmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1093357", "adult": false, "backdrop_path": "/j1XyMamFu0xrAZSA3vXBKbLDVeM.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Bazelevs Production", "id": 1038}, {"name": "The Jacobson Company", "id": 3638}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2011-12-25", "popularity": 0.376070929960302, "original_title": "The Darkest Hour", "budget": 44000000, "cast": [{"name": "Emile Hirsch", "character": "Sean", "id": 46593, "credit_id": "52fe4835c3a368484e0edf09", "cast_id": 1, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Rachael Taylor", "character": "Anne", "id": 19538, "credit_id": "52fe4835c3a368484e0edf0d", "cast_id": 2, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 1}, {"name": "Olivia Thirlby", "character": "Natalie", "id": 52442, "credit_id": "52fe4835c3a368484e0edf11", "cast_id": 3, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 2}, {"name": "Joel Kinnaman", "character": "Skyler", "id": 92404, "credit_id": "52fe4835c3a368484e0edf15", "cast_id": 4, "profile_path": "/kn3AcrSxa0ApgQVcjQ8m6YsWVq.jpg", "order": 3}, {"name": "Max Minghella", "character": "Ben", "id": 2978, "credit_id": "52fe4835c3a368484e0edf19", "cast_id": 5, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 4}, {"name": "Veronika Ozerova", "character": "Vika", "id": 1030490, "credit_id": "52fe4835c3a368484e0edf3b", "cast_id": 12, "profile_path": "/nSuAHtGh3u1wMS65QLYd0KnmLAu.jpg", "order": 5}, {"name": "Dato Bakhtadze", "character": "Sergei", "id": 18283, "credit_id": "52fe4835c3a368484e0edf3f", "cast_id": 13, "profile_path": "/icfjC4D6saHKCMXhoEUoK3mngzL.jpg", "order": 6}, {"name": "Yuriy Kutsenko", "character": "Matvei (as Gosha Kutsenko)", "id": 29839, "credit_id": "52fe4835c3a368484e0edf43", "cast_id": 14, "profile_path": "/zRM4ekQodkCFPvbk9GenbedywIi.jpg", "order": 7}, {"name": "Nikolay Efremov", "character": "Sasha", "id": 1030491, "credit_id": "52fe4835c3a368484e0edf47", "cast_id": 15, "profile_path": "/zCIHfiy7ngtneFZzVNmIhd6lRUA.jpg", "order": 8}, {"name": "Georgiy Gromov", "character": "Boris", "id": 1030492, "credit_id": "52fe4835c3a368484e0edf4b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Artur Smolyaninov", "character": "Yuri (as Arthur Smoljaninov)", "id": 101423, "credit_id": "52fe4835c3a368484e0edf4f", "cast_id": 17, "profile_path": "/oVfRnT94aUJwrk1a9qnVJmkHaMb.jpg", "order": 10}, {"name": "Anna Roudakova", "character": "Tess", "id": 1030493, "credit_id": "52fe4835c3a368484e0edf53", "cast_id": 18, "profile_path": "/iUdjsTZDXx0fwrqi2PByTqe4gzm.jpg", "order": 11}, {"name": "Pyotr Fyodorov", "character": "Anton Batkin (as Petr Fedorov)", "id": 80997, "credit_id": "52fe4835c3a368484e0edf57", "cast_id": 19, "profile_path": "/1fY9OPWAd1B2h9mrmHj6tLVSNqL.jpg", "order": 12}, {"name": "Ivan Gromov", "character": "Bartender No. 1", "id": 1030494, "credit_id": "52fe4835c3a368484e0edf5b", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Aleksandr Chernykh", "character": "Bartender No. 2 (as Alexsandr Chernyh)", "id": 237570, "credit_id": "52fe4835c3a368484e0edf5f", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Chris Gorak", "department": "Directing", "job": "Director", "credit_id": "52fe4835c3a368484e0edf1f", "profile_path": null, "id": 10855}], "vote_average": 4.7, "runtime": 89}, "2832": {"poster_path": "/7yjj5XveaKUAOA8nHxrpQAWPTkP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90259536, "overview": "Complete strangers stranded at a remote desert motel during a raging storm soon find themselves the target of a deranged murderer. As their numbers thin out, the travelers begin to turn on each other, as each tries to figure out who the killer is.", "video": false, "id": 2832, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Identity", "tagline": "The secret lies within.", "vote_count": 292, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0309698", "adult": false, "backdrop_path": "/arcpWGGnUkGkakOwZo7xfPsaz7h.jpg", "production_companies": [{"name": "Konrad Pictures", "id": 85}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2003-04-25", "popularity": 0.676629373849799, "original_title": "Identity", "budget": 30000000, "cast": [{"name": "John Cusack", "character": "Ed", "id": 3036, "credit_id": "52fe436fc3a36847f8054175", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Rhodes", "id": 11477, "credit_id": "52fe436fc3a36847f8054179", "cast_id": 8, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Amanda Peet", "character": "Paris", "id": 2956, "credit_id": "52fe436fc3a36847f805417d", "cast_id": 9, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 2}, {"name": "John Hawkes", "character": "Larry", "id": 16861, "credit_id": "52fe436fc3a36847f8054181", "cast_id": 10, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Dr. Malick", "id": 658, "credit_id": "52fe436fc3a36847f8054185", "cast_id": 11, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "Clea DuVall", "character": "Ginny", "id": 20387, "credit_id": "52fe436fc3a36847f8054189", "cast_id": 12, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 5}, {"name": "John C. McGinley", "character": "George York", "id": 11885, "credit_id": "52fe436fc3a36847f805418d", "cast_id": 13, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 6}, {"name": "William Lee Scott", "character": "Lou", "id": 10128, "credit_id": "52fe436fc3a36847f8054191", "cast_id": 14, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 7}, {"name": "Jake Busey", "character": "Robert Maine", "id": 28410, "credit_id": "52fe436fc3a36847f8054195", "cast_id": 15, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 8}, {"name": "Rebecca De Mornay", "character": "Caroline Suzanne", "id": 28412, "credit_id": "52fe436fc3a36847f8054199", "cast_id": 17, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 10}, {"name": "Carmen Argenziano", "character": "Verteidiger", "id": 28413, "credit_id": "52fe436fc3a36847f805419d", "cast_id": 18, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 11}, {"name": "Marshall Bell", "character": "Staatsanwalt", "id": 3041, "credit_id": "52fe436fc3a36847f80541a1", "cast_id": 19, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 12}, {"name": "Leila Kenzle", "character": "Alice York", "id": 15044, "credit_id": "52fe436fc3a36847f80541a5", "cast_id": 20, "profile_path": "/8U9S4cYQTq0nbG01RDAIluEKZk4.jpg", "order": 13}, {"name": "Matt Letscher", "character": "Staatsanwaltsmitarbeiter", "id": 28414, "credit_id": "52fe436fc3a36847f80541a9", "cast_id": 21, "profile_path": "/4VwdiM9PUBxswxy7g7nGGeIC4o8.jpg", "order": 14}, {"name": "Bret Loehr", "character": "Timmy York", "id": 28415, "credit_id": "52fe436fc3a36847f80541ad", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Holmes Osborne", "character": "Richter Taylor", "id": 1578, "credit_id": "52fe436fc3a36847f80541b1", "cast_id": 23, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 16}, {"name": "Frederick Coffin", "character": "Detective Varole", "id": 28416, "credit_id": "52fe436fc3a36847f80541b5", "cast_id": 24, "profile_path": "/knyrsXPtKDU8F3Rp1ZGuGRHfxAe.jpg", "order": 17}, {"name": "Joe Hart", "character": "Bailiff Jenkins", "id": 28417, "credit_id": "52fe436fc3a36847f80541b9", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Michael Hirsch", "character": "Nackter Gesch\u00e4ftsmann", "id": 28418, "credit_id": "52fe436fc3a36847f80541bd", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Terence Bernie Hines", "character": "Bailiff", "id": 28419, "credit_id": "52fe436fc3a36847f80541c1", "cast_id": 27, "profile_path": "/uMC8ILPk0h2fN6ZM8N7kHq8Uxym.jpg", "order": 20}, {"name": "Stuart M. Besser", "character": "Gefrorene Leiche", "id": 28401, "credit_id": "52fe436fc3a36847f80541c5", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Pruitt Taylor Vince", "character": "Malcolm Rivers", "id": 3201, "credit_id": "52fe436fc3a36847f80541c9", "cast_id": 29, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 22}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe436fc3a36847f8054153", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 7.0, "runtime": 90}, "41154": {"poster_path": "/sIuneIyme2O3qYxEZTVNyJ0F0LC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 624026776, "overview": "Agents J (Will Smith) and K (Tommy Lee Jones) are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K (Josh Brolin) to save his partner, the agency, and the future of humankind.", "video": false, "id": 41154, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Men in Black 3", "tagline": "They are back... in time.", "vote_count": 2153, "homepage": "http://www.sonypictures.ca/english/movies/meninblack3/", "belongs_to_collection": {"backdrop_path": "/iGEoxfkFZXQcqAkDUDpnjqGCN6R.jpg", "poster_path": "/rWcgZaoJ0nxTFRn0H6w9bdtoDUI.jpg", "id": 86055, "name": "Men In Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1409024", "adult": false, "backdrop_path": "/7u3UyejCbhM3jXcZ86xzA9JJxge.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Hemisphere Media Capital", "id": 9169}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Media Magik Entertainment", "id": 5627}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2012-05-25", "popularity": 1.7883520936843, "original_title": "Men in Black 3", "budget": 225000000, "cast": [{"name": "Will Smith", "character": "Agent J", "id": 2888, "credit_id": "52fe45b7c3a36847f80d6875", "cast_id": 4, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Agent K", "id": 2176, "credit_id": "52fe45b7c3a36847f80d6879", "cast_id": 5, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Young Agent K", "id": 16851, "credit_id": "52fe45b7c3a36847f80d687d", "cast_id": 6, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Michael Stuhlbarg", "character": "Griffin", "id": 72873, "credit_id": "52fe45b7c3a36847f80d68a9", "cast_id": 15, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 3}, {"name": "Emma Thompson", "character": "Agent O", "id": 7056, "credit_id": "52fe45b7c3a36847f80d6893", "cast_id": 10, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 4}, {"name": "Jemaine Clement", "character": "Boris The Animal", "id": 55936, "credit_id": "52fe45b7c3a36847f80d6901", "cast_id": 31, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 5}, {"name": "Nicole Scherzinger", "character": "Boris's Girlfriend", "id": 151246, "credit_id": "52fe45b7c3a36847f80d6897", "cast_id": 11, "profile_path": "/vJksimGKKHXx6NlvqVIBfmo1XQA.jpg", "order": 6}, {"name": "Alice Eve", "character": "Young Agent O", "id": 59860, "credit_id": "52fe45b7c3a36847f80d68a1", "cast_id": 13, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 7}, {"name": "Bill Hader", "character": "Andy Warhol", "id": 19278, "credit_id": "52fe45b7c3a36847f80d68a5", "cast_id": 14, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 8}, {"name": "Michael Chernus", "character": "Jeffrey Price", "id": 87070, "credit_id": "52fe45b7c3a36847f80d6905", "cast_id": 33, "profile_path": "/z3H7if45AI2bpT98m5geAXdlrSV.jpg", "order": 9}, {"name": "David Rasche", "character": "Agent X", "id": 33533, "credit_id": "52fe45b7c3a36847f80d6909", "cast_id": 34, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 10}, {"name": "Keone Young", "character": "Mr. Wu", "id": 91387, "credit_id": "52fe45b7c3a36847f80d690d", "cast_id": 35, "profile_path": "/bzJWn4q0Vt6l5zZ33Q0dtB77g4S.jpg", "order": 11}, {"name": "Cayen Martin", "character": "Colonel's Son", "id": 1068400, "credit_id": "52fe45b7c3a36847f80d6911", "cast_id": 36, "profile_path": "/unS8e1UmhF3EMS3p79M5xgPHwfn.jpg", "order": 12}, {"name": "Mike Colter", "character": "Colonel", "id": 450, "credit_id": "52fe45b7c3a36847f80d6915", "cast_id": 37, "profile_path": "/eP0RelLOZrlMH2W3qFVx87VG9ij.jpg", "order": 13}, {"name": "Dan Bittner", "character": "MIB Tech #1 (uncredited)", "id": 1152008, "credit_id": "54c4157f92514124ed0064ab", "cast_id": 38, "profile_path": null, "order": 14}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe45b7c3a36847f80d6883", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.1, "runtime": 106}, "215830": {"poster_path": "/uO9pr6aMgHz8ofLrOAjHvhv7J3e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man awakes-- without memory -- in a pit full of bodies and must figure out if the people who rescued him are the killers, or if he is the murderer.", "video": false, "id": 215830, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Open Grave", "tagline": "The moment you wake up, the nightmare begins.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2071550", "adult": false, "backdrop_path": "/9aPAt8qyf3fMeQYRy743MarHrX4.jpg", "production_companies": [{"name": "Atlas Independent", "id": 18239}, {"name": "Speranza Films A/S", "id": 8703}, {"name": "852 Films", "id": 18892}], "release_date": "2013-08-13", "popularity": 0.440810919201106, "original_title": "Open Grave", "budget": 0, "cast": [{"name": "Sharlto Copley", "character": "John", "id": 82191, "credit_id": "52fe4e0ac3a368484e20aeb5", "cast_id": 5, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Joseph Morgan", "character": "Nathan", "id": 79505, "credit_id": "52fe4e0ac3a368484e20aeb1", "cast_id": 4, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 1}, {"name": "Thomas Kretschmann", "character": "Lukas", "id": 3491, "credit_id": "52fe4e0ac3a368484e20aeb9", "cast_id": 6, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 2}, {"name": "Erin Richards", "character": "Sharon", "id": 990300, "credit_id": "52fe4e0ac3a368484e20aebd", "cast_id": 7, "profile_path": "/3oIHsTEFUJd1jpnfOguM5s7hI6E.jpg", "order": 3}, {"name": "Josie Ho", "character": "Brown Eyes", "id": 78429, "credit_id": "52fe4e0ac3a368484e20aec1", "cast_id": 8, "profile_path": "/lbKcMciswqKaG6Sz6RylyoeGkoo.jpg", "order": 4}, {"name": "Max Wrottesley", "character": "Michael", "id": 1202683, "credit_id": "52fe4e0ac3a368484e20aec5", "cast_id": 9, "profile_path": "/fUU5LC93GA9kTZ8q37qP2wXvoQG.jpg", "order": 5}, {"name": "Kati Dombi", "character": "Moaner Woman", "id": 1282207, "credit_id": "52fe4e0ac3a368484e20aef9", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Eva Botos", "character": "Mother", "id": 1282208, "credit_id": "52fe4e0ac3a368484e20aefd", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Tofi Seffer", "character": "Boy", "id": 1282209, "credit_id": "52fe4e0ac3a368484e20af01", "cast_id": 20, "profile_path": null, "order": 8}], "directors": [{"name": "Gonzalo L\u00f3pez-Gallego", "department": "Directing", "job": "Director", "credit_id": "52fe4e0ac3a368484e20aea1", "profile_path": "/2C0IA635PgBHctQd60RJdROuJ1j.jpg", "id": 77123}], "vote_average": 5.9, "runtime": 102}, "8665": {"poster_path": "/sRLT9pkLnC9gjYnixxw99iLImzN.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35168966, "overview": "When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.", "video": false, "id": 8665, "genres": [{"id": 10752, "name": "War"}], "title": "K-19: The Widowmaker", "tagline": "Fate has found its hero.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0267626", "adult": false, "backdrop_path": "/tPhbQaiiFauAipdEuc9TQVgOmn6.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Intermedia Films", "id": 763}, {"name": "National Geographic Society", "id": 2471}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Palomar Pictures (II)", "id": 11371}, {"name": "First Light Production", "id": 20344}], "release_date": "2002-07-19", "popularity": 0.459599084659295, "original_title": "K-19: The Widowmaker", "budget": 100000000, "cast": [{"name": "Harrison Ford", "character": "Alexei Vostrikov", "id": 3, "credit_id": "52fe44b2c3a36847f80a4f6f", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Liam Neeson", "character": "Mikhail Polenin", "id": 3896, "credit_id": "52fe44b2c3a36847f80a4f73", "cast_id": 2, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Vadim Radtchinko", "id": 133, "credit_id": "52fe44b2c3a36847f80a4f77", "cast_id": 3, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Joss Ackland", "character": "Marshal Zelentsov", "id": 14324, "credit_id": "52fe44b2c3a36847f80a4f7b", "cast_id": 4, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 3}, {"name": "John Shrapnel", "character": "Admiral Bratyeev", "id": 940, "credit_id": "52fe44b2c3a36847f80a4f7f", "cast_id": 5, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 4}, {"name": "Donald Sumpter", "character": "Dr. Savran", "id": 20425, "credit_id": "52fe44b2c3a36847f80a4f83", "cast_id": 6, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 5}, {"name": "Tim Woodward", "character": "Partonov", "id": 27659, "credit_id": "52fe44b2c3a36847f80a4f87", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Steve Nicolson", "character": "Demichev", "id": 55578, "credit_id": "52fe44b2c3a36847f80a4f8b", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "George Anton", "character": "Konstantin", "id": 55581, "credit_id": "52fe44b2c3a36847f80a4f8f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "James Francis Ginty", "character": "Anatoly", "id": 55582, "credit_id": "52fe44b2c3a36847f80a4f93", "cast_id": 12, "profile_path": "/j7jfR3NmzzmmldoF4vqPTddr3ew.jpg", "order": 9}, {"name": "Lex Shrapnel", "character": "Kornilov", "id": 55583, "credit_id": "52fe44b2c3a36847f80a4f97", "cast_id": 13, "profile_path": "/z3CV8Attp3VwSEraDGMAadpnOWc.jpg", "order": 10}, {"name": "Ingvar Eggert Sigur\u00f0sson", "character": "Gorelov", "id": 55584, "credit_id": "52fe44b2c3a36847f80a4f9b", "cast_id": 14, "profile_path": "/yHSbMqfSO4yWjEWwePBMDi8o7jb.jpg", "order": 11}, {"name": "Sam Spruell", "character": "Dmitri", "id": 55585, "credit_id": "52fe44b2c3a36847f80a4f9f", "cast_id": 15, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 12}, {"name": "Sam Redford", "character": "Vasily", "id": 55586, "credit_id": "52fe44b2c3a36847f80a4fa3", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Peter Stebbings", "character": "Kuryshev", "id": 55587, "credit_id": "52fe44b2c3a36847f80a4fa7", "cast_id": 17, "profile_path": "/xIwQc40ilQVKAJM6GmvkMvPBIiw.jpg", "order": 14}, {"name": "Roman Podhora", "character": "Lapinsh", "id": 55588, "credit_id": "52fe44b2c3a36847f80a4fab", "cast_id": 18, "profile_path": "/bsLXnsfdwKkeQw7Q6vCFb5SD2Wv.jpg", "order": 15}, {"name": "Shaun Benson", "character": "Leonid", "id": 55589, "credit_id": "52fe44b2c3a36847f80a4faf", "cast_id": 19, "profile_path": "/9d6QEFzN90bg9ekqnWlJ0IGDIv8.jpg", "order": 16}, {"name": "Dmitry Chepovetsky", "character": "Sergei", "id": 29878, "credit_id": "52fe44b2c3a36847f80a4fb3", "cast_id": 21, "profile_path": "/pZjoP2skZvf0sFaF2GYRCMttp35.jpg", "order": 17}, {"name": "Christopher Redman", "character": "Kiklidze", "id": 32204, "credit_id": "52fe44b2c3a36847f80a4fb7", "cast_id": 22, "profile_path": "/oRUUfZV89SH3l040RZTRNis3IIS.jpg", "order": 18}, {"name": "Tygh Runyan", "character": "Maxim", "id": 55591, "credit_id": "52fe44b2c3a36847f80a4fbb", "cast_id": 23, "profile_path": "/vHlo0lwXAHGzCBEL6mrum39exdO.jpg", "order": 19}, {"name": "Peter Graham", "character": "Danya Yashin", "id": 1399074, "credit_id": "548da3d5c3a3684ea1003e4b", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Shawn Mathieson", "character": "Stepan", "id": 55593, "credit_id": "52fe44b2c3a36847f80a4fc3", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Jacob Pitts", "character": "Grigori", "id": 54414, "credit_id": "52fe44b2c3a36847f80a4fc7", "cast_id": 26, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 22}, {"name": "Christopher Routh", "character": "Oleg", "id": 55594, "credit_id": "52fe44b2c3a36847f80a4fcb", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Lubomir Mykytiuk", "character": "Dr. Gavril", "id": 55595, "credit_id": "52fe44b2c3a36847f80a4fcf", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Michael Gladis", "character": "Yevgeny Borzenkov", "id": 55596, "credit_id": "52fe44b2c3a36847f80a4fd3", "cast_id": 29, "profile_path": "/4hjSAZY4llqxpu1FAJcPWP3llgA.jpg", "order": 25}, {"name": "Christian Camargo", "character": "Pavel", "id": 122029, "credit_id": "52fe44b3c3a36847f80a5025", "cast_id": 43, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 26}, {"name": "Ravil Isyanov", "character": "Suslov", "id": 41742, "credit_id": "52fe44b3c3a36847f80a5029", "cast_id": 44, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 27}, {"name": "Kristen Holden-Ried", "character": "Anton", "id": 557840, "credit_id": "52fe44b3c3a36847f80a502d", "cast_id": 45, "profile_path": "/zhl2SZHzv4lx68BuGaqjvNZ7239.jpg", "order": 28}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe44b2c3a36847f80a4fd9", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 5.8, "runtime": 138}, "2841": {"poster_path": "/jtE7Xrj8KKnhGI3p2yCgwrtUCnd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In 1919, Mathilde was 19 years old. Two years earlier, her fianc\u00e9 Manech left for the front at the Somme. Like millions of others he was \"killed on the field of battle.\" It's written in black and white on the official notice. But Mathilde refuses to believe it. If Manech had died, she would know. She hangs on to her intuition as tightly as she would onto the last thread of hope linking her to her lover. A former sergeant tells her in vain that Manech died in the no man's land of a trench named Bingo Crepescule, in the company of four other men condemned to die for self-inflicted wounds. Her path ahead is full of obstacles but Mathilde is not frightened. Anything is possible to someone who is willing to challenge fate...", "video": false, "id": 2841, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "A Very Long Engagement", "tagline": "Never let go", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "co", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0344510", "adult": false, "backdrop_path": "/klrbSV0LTP5T6lZgLjQ2yvHnReS.jpg", "production_companies": [{"name": "Warner Bros. France", "id": 2913}, {"name": "2003 Productions", "id": 1232}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Tapioca Films", "id": 12000}], "release_date": "2004-10-26", "popularity": 0.63601639612124, "original_title": "Un long dimanche de fian\u00e7ailles", "budget": 47000000, "cast": [{"name": "Audrey Tautou", "character": "Mathilde", "id": 2405, "credit_id": "52fe4370c3a36847f80542c5", "cast_id": 8, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 0}, {"name": "Gaspard Ulliel", "character": "Manech", "id": 16790, "credit_id": "52fe4370c3a36847f80542c9", "cast_id": 9, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 1}, {"name": "Dominique Pinon", "character": "Sylvain", "id": 2413, "credit_id": "52fe4370c3a36847f80542cd", "cast_id": 10, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 2}, {"name": "Chantal Neuwirth", "character": "B\u00e9n\u00e9dicte", "id": 17901, "credit_id": "52fe4370c3a36847f80542d1", "cast_id": 11, "profile_path": "/vHPORFjUCqI74qpuJGaYMfzdkeZ.jpg", "order": 3}, {"name": "Andr\u00e9 Dussollier", "character": "Pierre-Marie Rouvi\u00e8res", "id": 18177, "credit_id": "52fe4370c3a36847f80542d5", "cast_id": 12, "profile_path": "/rKZXoZJBUMKRbACbAGEat7wvAr7.jpg", "order": 4}, {"name": "Ticky Holgado", "character": "Germain Pire", "id": 13689, "credit_id": "52fe4370c3a36847f80542d9", "cast_id": 13, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Tina Lombardi", "id": 8293, "credit_id": "52fe4370c3a36847f80542dd", "cast_id": 14, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Dominique Bettenfeld", "character": "Ange Bassignano", "id": 28462, "credit_id": "52fe4370c3a36847f80542e1", "cast_id": 15, "profile_path": "/4LovjhsdwsUsHjFfIyOoWPYBB6T.jpg", "order": 7}, {"name": "Jodie Foster", "character": "Elodie Gordes", "id": 1038, "credit_id": "52fe4370c3a36847f80542e5", "cast_id": 16, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 8}, {"name": "Jean-Pierre Darroussin", "character": "Benjamin Gordes", "id": 28463, "credit_id": "52fe4370c3a36847f80542e9", "cast_id": 17, "profile_path": "/d3lWrOKPwy0qJGdqe5SZHZ83TU0.jpg", "order": 9}, {"name": "Denis Lavant", "character": "Six-Soux", "id": 27978, "credit_id": "52fe4370c3a36847f80542ed", "cast_id": 18, "profile_path": "/fcMuYJwZvWjk2wf9vButEWiNvNM.jpg", "order": 10}, {"name": "Rufus", "character": "Un Breton", "id": 2407, "credit_id": "52fe4370c3a36847f80542f1", "cast_id": 19, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 11}, {"name": "J\u00e9r\u00f4me Kircher", "character": "Bastoche", "id": 28857, "credit_id": "52fe4370c3a36847f80542f5", "cast_id": 20, "profile_path": "/vBYHMIxRpI8oIiI1o0e2tFyFqjr.jpg", "order": 12}, {"name": "Denis Lavant", "character": "Six Sous", "id": 27978, "credit_id": "52fe4370c3a36847f80542f9", "cast_id": 21, "profile_path": "/fcMuYJwZvWjk2wf9vButEWiNvNM.jpg", "order": 13}, {"name": "Albert Dupontel", "character": "C\u00e9lestin Poux", "id": 14606, "credit_id": "52fe4370c3a36847f80542fd", "cast_id": 22, "profile_path": "/bBqRJl8IQXxKuYTNhoYRER9JO34.jpg", "order": 14}, {"name": "Elina L\u00f6wensohn", "character": "la soeur de G\u00fcnther", "id": 17257, "credit_id": "52fe4370c3a36847f8054301", "cast_id": 23, "profile_path": "/enJyuf5k0QTOiMEBFHf8dePZUTV.jpg", "order": 15}, {"name": "Jean-Claude Dreyfus", "character": "Commandant Lavrouye", "id": 13687, "credit_id": "52fe4370c3a36847f8054305", "cast_id": 24, "profile_path": "/jOM2R4IViRNOnbCpm1YiPavEyw0.jpg", "order": 16}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4370c3a36847f805429d", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 7.1, "runtime": 133}, "11036": {"poster_path": "/gMfstesBXKdsHToAUXVPHujUDfb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115603229, "overview": "An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.", "video": false, "id": 11036, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Notebook", "tagline": "Behind every great love is a great story.", "vote_count": 860, "homepage": "http://www.newline.com/properties/notebookthe.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0332280", "adult": false, "backdrop_path": "/AprhfmDEwy14xyjaAlcwdLolLjq.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2004-06-25", "popularity": 1.30387618522892, "original_title": "The Notebook", "budget": 29000000, "cast": [{"name": "Rachel McAdams", "character": "Allie Hamilton", "id": 53714, "credit_id": "52fe43e89251416c75022ad9", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "Noah Calhoun", "id": 30614, "credit_id": "52fe43e89251416c75022add", "cast_id": 5, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Gena Rowlands", "character": "Allie Calhoun", "id": 4800, "credit_id": "52fe43e89251416c75022ae1", "cast_id": 6, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 2}, {"name": "James Garner", "character": "Duke", "id": 16896, "credit_id": "52fe43e89251416c75022ae5", "cast_id": 7, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 3}, {"name": "Sam Shepard", "character": "Frank Calhoun", "id": 9880, "credit_id": "52fe43e89251416c75022b01", "cast_id": 14, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 4}, {"name": "Joan Allen", "character": "Anne Hamilton", "id": 11148, "credit_id": "52fe43e89251416c75022b05", "cast_id": 15, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 5}, {"name": "James Marsden", "character": "Lon Hammond Jr.", "id": 11006, "credit_id": "52fe43e89251416c75022b0d", "cast_id": 17, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 6}, {"name": "David Thornton", "character": "John Hamilton", "id": 76526, "credit_id": "536269640e0a2649b1001b01", "cast_id": 22, "profile_path": "/jDcmAwRCUYd3QSVEVc9Xq2Yi9Xf.jpg", "order": 7}, {"name": "Kevin Connolly", "character": "Fin", "id": 16666, "credit_id": "536265ddc3a36839560017fd", "cast_id": 21, "profile_path": "/4bKLYeNGbIdFE5iEal9o8yjWQdz.jpg", "order": 8}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe43e89251416c75022ac9", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 7.2, "runtime": 123}, "51999": {"poster_path": "/6MfGnRmzvF0zCnKVKCZ8nOjULuz.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 908000, "overview": "Susan is a scientist searching for answers to important questions. So important that she has given up on other things, like love - until she meets Micheal. Susan and Michael find themselves embarking on a sensual adventure while the world around them seems to be falling apart. A life-affirming look at what it means to love and be loved in turbulent times.", "video": false, "id": 51999, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Perfect Sense", "tagline": "Without love there is nothing.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1439572", "adult": false, "backdrop_path": "/vZvxd57J6rkpnWthrTU2Eo02cMT.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Zentropa Entertainments", "id": 76}, {"name": "Scottish Screen", "id": 698}, {"name": "Danish Filminstitute", "id": 5474}, {"name": "Film i V\u00e4st", "id": 6417}], "release_date": "2011-01-24", "popularity": 0.375165093446422, "original_title": "Perfect Sense", "budget": 0, "cast": [{"name": "Ewan McGregor", "character": "Michael", "id": 3061, "credit_id": "52fe4811c3a36847f8156c1b", "cast_id": 7, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Eva Green", "character": "Susan", "id": 10912, "credit_id": "52fe4811c3a36847f8156c1f", "cast_id": 8, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Ewen Bremner", "character": "James", "id": 1125, "credit_id": "52fe4811c3a36847f8156c23", "cast_id": 9, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Samuel", "id": 8435, "credit_id": "52fe4811c3a36847f8156c27", "cast_id": 10, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Denis Lawson", "character": "Detective", "id": 47698, "credit_id": "52fe4811c3a36847f8156c2b", "cast_id": 11, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 4}, {"name": "James Watson", "character": "Bus Driver", "id": 135056, "credit_id": "52fe4811c3a36847f8156c2f", "cast_id": 12, "profile_path": "/p1khTr6wrKb1n3hFm03POdR2swG.jpg", "order": 5}, {"name": "Richard Mack", "character": "Apprentice Chef", "id": 239568, "credit_id": "52fe4811c3a36847f8156c33", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Shabana Akhtar Bakhsh", "character": "Nurse", "id": 16904, "credit_id": "52fe4811c3a36847f8156c37", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Liz Strange", "character": "Pretty Girl", "id": 544188, "credit_id": "52fe4811c3a36847f8156c3b", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Caroline Paterson", "character": "Patient's Wife", "id": 544189, "credit_id": "52fe4811c3a36847f8156c3f", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Malcolm Shields", "character": "Patient", "id": 143419, "credit_id": "52fe4811c3a36847f8156c43", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Adam Smith", "character": "Virology Technician", "id": 207004, "credit_id": "52fe4811c3a36847f8156c47", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Connie Nielsen", "character": "Jenny", "id": 935, "credit_id": "52fe4811c3a36847f8156c4b", "cast_id": 19, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 12}, {"name": "Alastair Mackenzie", "character": "", "id": 39970, "credit_id": "52fe4811c3a36847f8156c4f", "cast_id": 20, "profile_path": "/jGgIabBwHh4Ixp2rHCJCkngZXfF.jpg", "order": 13}], "directors": [{"name": "David Mackenzie", "department": "Directing", "job": "Director", "credit_id": "52fe4811c3a36847f8156c11", "profile_path": "/oHZ2kkGICUnSbm73BQFK3Hau82f.jpg", "id": 3055}], "vote_average": 6.9, "runtime": 92}, "16859": {"poster_path": "/auOehwejihm5F1Bxr9XiZA0VFUH.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 18172849, "overview": "A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.", "video": false, "id": 16859, "genres": [{"id": 16, "name": "Animation"}], "title": "Kiki's Delivery Service", "tagline": "I was feeling blue, but I'm better now.", "vote_count": 205, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0097814", "adult": false, "backdrop_path": "/fSbiMnUXJ6rrSuf3MN7pFqUtws4.jpg", "production_companies": [{"name": "Tokuma Shoten", "id": 1779}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Nibariki", "id": 12516}], "release_date": "1989-07-29", "popularity": 1.11273680877772, "original_title": "\u9b54\u5973\u306e\u5b85\u6025\u4fbf", "budget": 0, "cast": [{"name": "Minami Takayama", "character": "Kiki / Ursula", "id": 68470, "credit_id": "52fe46f19251416c750889cb", "cast_id": 19, "profile_path": null, "order": 0}, {"name": "Rei Sakuma", "character": "Jiji", "id": 218144, "credit_id": "52fe46f19251416c750889cf", "cast_id": 20, "profile_path": null, "order": 1}, {"name": "Kappei Yamaguchi", "character": "Tombo", "id": 68472, "credit_id": "52fe46f19251416c750889d3", "cast_id": 21, "profile_path": "/8QpMGuviKgXS9Kx3IbAJeQclQY.jpg", "order": 2}, {"name": "Keiko Toda", "character": "Osono", "id": 57736, "credit_id": "52fe46f19251416c750889d7", "cast_id": 22, "profile_path": "/suGI9j1XVMsbUq6K8FbXTm5vIWN.jpg", "order": 3}, {"name": "Mieko Nobusawa", "character": "Kokiri, Kiki's mother", "id": 552598, "credit_id": "52fe46f19251416c750889db", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "K\u00f4ichi Miura", "character": "Okino, Kiki's Dad", "id": 552599, "credit_id": "52fe46f19251416c750889df", "cast_id": 24, "profile_path": null, "order": 5}, {"name": "Haruko Kato", "character": "R\u00f4-fujin (Madame)", "id": 40453, "credit_id": "52fe46f19251416c750889e3", "cast_id": 25, "profile_path": "/fpI47MewcRZn0Ro5LXRfrEptaWW.jpg", "order": 6}, {"name": "Hiroko Seki", "character": "Barsa", "id": 551769, "credit_id": "52fe46f19251416c750889e7", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Yuriko Fuchizaki", "character": "Ketto", "id": 1684, "credit_id": "52fe46f19251416c750889eb", "cast_id": 27, "profile_path": "/mFvqwyTM9ArTbWgOOCMGsDeEwG3.jpg", "order": 8}, {"name": "K\u00f4ichi Yamadera", "character": "Bakery worker, policeman", "id": 40328, "credit_id": "52fe46f19251416c750889ef", "cast_id": 28, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 9}, {"name": "Kikuko Inoue", "character": "Beautiful designer girl", "id": 101913, "credit_id": "52fe46f19251416c750889f3", "cast_id": 29, "profile_path": "/5L2IMLJIN7XynIn5tVr80dcaKNG.jpg", "order": 10}, {"name": "Y\u00fbko Kobayashi", "character": "Young sempai witch", "id": 552600, "credit_id": "52fe46f19251416c750889f7", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Mika Doi", "character": "Ketto's mother", "id": 76396, "credit_id": "52fe46f19251416c750889fb", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Takaya Hashi", "character": "Ketto's father", "id": 111373, "credit_id": "52fe46f19251416c750889ff", "cast_id": 32, "profile_path": "/fjESGfbh2CSJuuKl9zh6kE9vBZQ.jpg", "order": 16}, {"name": "Chika Sakamoto", "character": "Baby", "id": 55664, "credit_id": "52fe46f19251416c75088a03", "cast_id": 33, "profile_path": "/b84KZUb7zjrXP21aYLSJXcJoRTC.jpg", "order": 17}, {"name": "Toshiko Asai", "character": "", "id": 552601, "credit_id": "52fe46f19251416c75088a07", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Yoshiko Kamei", "character": "", "id": 121712, "credit_id": "52fe46f19251416c75088a0b", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Hiroko Maruyama", "character": "", "id": 552602, "credit_id": "52fe46f19251416c75088a0f", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Shinpachi Tsuji", "character": "", "id": 65438, "credit_id": "52fe46f19251416c75088a13", "cast_id": 37, "profile_path": "/wW5VJ3jIWn9S4OelGId5MaRzIdw.jpg", "order": 21}, {"name": "Y\u00fbko Maruyama", "character": "", "id": 552603, "credit_id": "52fe46f19251416c75088a17", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Masa Sait\u00f4", "character": "", "id": 552604, "credit_id": "52fe46f19251416c75088a1b", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Y\u00fbko Tsuga", "character": "", "id": 552605, "credit_id": "52fe46f19251416c75088a1f", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Akio Ohtsuka", "character": "", "id": 550623, "credit_id": "52fe46f19251416c75088a23", "cast_id": 41, "profile_path": "/lxew3RhQ7q8zMMuHTdRmSlXHFO8.jpg", "order": 25}, {"name": "Tomomichi Nishimura", "character": "", "id": 81859, "credit_id": "52fe46f19251416c75088a27", "cast_id": 42, "profile_path": "/kZXRpvXwI0F1qbKNff3dOG2BodA.jpg", "order": 26}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe46f09251416c75088967", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.2, "runtime": 103}, "11045": {"poster_path": "/7ACo6yQbtXjt5bP1EPhkShAizgc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36609966, "overview": "A mouthy and feisty taxicab driver has hot tips for a green and inept cop set on solving a string of New York City bank robberies committed by a quartet of female Brazilian bank robbers.", "video": false, "id": 11045, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Taxi", "tagline": "Take a Ride on the Wild Side.", "vote_count": 60, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0316732", "adult": false, "backdrop_path": "/wPbv4JgnF6aKVLvD6NS4nDvTX6C.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2004-10-06", "popularity": 0.641596829424643, "original_title": "Taxi", "budget": 25000000, "cast": [{"name": "Queen Latifah", "character": "Isabelle 'Belle' Williams", "id": 15758, "credit_id": "52fe43ea9251416c75022e9b", "cast_id": 1, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 0}, {"name": "Jimmy Fallon", "character": "Andrew 'Andy' Washburn", "id": 11669, "credit_id": "52fe43ea9251416c75022e9f", "cast_id": 2, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 1}, {"name": "Gisele B\u00fcndchen", "character": "Vanessa", "id": 10583, "credit_id": "52fe43ea9251416c75022eab", "cast_id": 5, "profile_path": "/j3Lm6iGXPE57990A8DKW563BzYt.jpg", "order": 2}, {"name": "Henry Simmons", "character": "Jesse", "id": 67913, "credit_id": "52fe43ea9251416c75022ea3", "cast_id": 3, "profile_path": "/ajSaqDbQfi6eAFULhpCSezYplUF.jpg", "order": 3}, {"name": "Jennifer Esposito", "character": "Lt. Marta Robbins", "id": 18285, "credit_id": "52fe43ea9251416c75022ea7", "cast_id": 4, "profile_path": "/faY5fwjsJ8da3wJWSE7kQ3MPhgz.jpg", "order": 4}, {"name": "Ann-Margret", "character": "Mrs. Washburn", "id": 13567, "credit_id": "52fe43ea9251416c75022ef7", "cast_id": 18, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 5}, {"name": "Christian Kane", "character": "Agent Mullins", "id": 71198, "credit_id": "52fe43ea9251416c75022efb", "cast_id": 19, "profile_path": "/urL5yaMaEhm5HLOfkDOsZgX1I5f.jpg", "order": 6}, {"name": "Henry Simmons", "character": "Jesse", "id": 67913, "credit_id": "52fe43ea9251416c75022eff", "cast_id": 20, "profile_path": "/ajSaqDbQfi6eAFULhpCSezYplUF.jpg", "order": 7}, {"name": "Ana Cristina Oliveira", "character": "Redhead", "id": 73753, "credit_id": "52fe43ea9251416c75022f03", "cast_id": 21, "profile_path": "/nK8I9mOfA4wzOAaosP3jnjPL6tC.jpg", "order": 8}, {"name": "Patton Oswalt", "character": "Clerk at Inpound Office", "id": 10872, "credit_id": "52fe43ea9251416c75022f07", "cast_id": 22, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 9}, {"name": "John Krasinski", "character": "Messenger #3", "id": 17697, "credit_id": "52fe43ea9251416c75022f0b", "cast_id": 23, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 10}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe43ea9251416c75022eb1", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 5.0, "runtime": 97}, "11046": {"poster_path": "/70lTWYeTtQfQ9HVKE12ZS7r89jM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "World War II is raging, and an American general has been captured and is being held hostage in the Schloss Adler, a Bavarian castle that's nearly impossible to breach. It's up to a group of skilled Allied soldiers to liberate the general before it's too late.", "video": false, "id": 11046, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Where Eagles Dare", "tagline": "They dare to climb a terrifying new peak in suspense... all the way up to hell!", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065207", "adult": false, "backdrop_path": "/aZBg3z7G2QkddfXRZ8H0MY2pgGT.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Jerry Gershwin Productions", "id": 14390}, {"name": "Elliott Kastner Productions", "id": 14391}, {"name": "Winkast Film Productions", "id": 13721}], "release_date": "1968-12-04", "popularity": 0.665622618625099, "original_title": "Where Eagles Dare", "budget": 0, "cast": [{"name": "Richard Burton", "character": "Maj. Jonathan Smith, MC", "id": 5341, "credit_id": "52fe43ea9251416c75022f3f", "cast_id": 1, "profile_path": "/fRoBAQQP9sfnIYuqw546yFs3qKn.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Lt. Morris Schaffer", "id": 190, "credit_id": "52fe43ea9251416c75022f43", "cast_id": 2, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Mary Ure", "character": "Mary Elison", "id": 67916, "credit_id": "52fe43ea9251416c75022f47", "cast_id": 3, "profile_path": "/3RLNwYPjiV3RZXqOUixOfAki6o6.jpg", "order": 2}, {"name": "Patrick Wymark", "character": "Col. Wyatt Turner, DSO MC", "id": 67917, "credit_id": "52fe43ea9251416c75022f4b", "cast_id": 4, "profile_path": "/vrXTDBBGi4UdXFt8aEupKPTee9R.jpg", "order": 3}, {"name": "Michael Hordern", "character": "Adm. Rolland", "id": 39741, "credit_id": "52fe43ea9251416c75022f7f", "cast_id": 13, "profile_path": "/jvy4gJc9cS1MJPgHJXefRUYGUYJ.jpg", "order": 4}, {"name": "Donald Houston", "character": "Christiansen", "id": 38358, "credit_id": "52fe43ea9251416c75022f83", "cast_id": 14, "profile_path": "/yyMettco7cwI341gCc6JLm0shRq.jpg", "order": 5}, {"name": "Peter Barkworth", "character": "Berkeley", "id": 183207, "credit_id": "52fe43ea9251416c75022f87", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "William Squire", "character": "Thomas", "id": 16271, "credit_id": "52fe43ea9251416c75022f8b", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Robert Beatty", "character": "Gen. George Carnaby", "id": 251, "credit_id": "52fe43ea9251416c75022f8f", "cast_id": 17, "profile_path": "/nQrvFDN5pIo4y5qHRgsCJ3zpoQM.jpg", "order": 8}, {"name": "Brook Williams", "character": "Sgt. Harrod", "id": 102663, "credit_id": "52fe43eb9251416c75022f93", "cast_id": 18, "profile_path": "/6tkfggZ0AujmPo8QZ2DMOEb2hwr.jpg", "order": 9}, {"name": "Neil McCarthy", "character": "Sgt. Jock MacPherson", "id": 2601, "credit_id": "52fe43eb9251416c75022f97", "cast_id": 19, "profile_path": "/sNQxZARN2qUtNzL28oyJnmuZWGe.jpg", "order": 10}, {"name": "Vincent Ball", "character": "Carpenter", "id": 75395, "credit_id": "52fe43eb9251416c75022f9b", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Anton Diffring", "character": "Col. Kramer", "id": 97935, "credit_id": "52fe43eb9251416c75022f9f", "cast_id": 21, "profile_path": "/uxeoDzNhNrarOask3HjYpekrGl6.jpg", "order": 12}, {"name": "Ferdy Mayne", "character": "Rosemeyer", "id": 26557, "credit_id": "52fe43eb9251416c75022fa3", "cast_id": 22, "profile_path": "/cUfriRFlTJpP5XxITl5Y4KxTsfl.jpg", "order": 13}, {"name": "Derren Nesbitt", "character": "Von Hapen", "id": 74262, "credit_id": "52fe43eb9251416c75022fa7", "cast_id": 23, "profile_path": "/6R5B10NmU0NMJqwLITL20m18ku1.jpg", "order": 14}, {"name": "Victor Beaumont", "character": "Col. Weissner", "id": 119360, "credit_id": "5374f40a0e0a267c590043df", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Ingrid Pitt", "character": "Heidi", "id": 83739, "credit_id": "5374f4230e0a267c5f0042b0", "cast_id": 32, "profile_path": "/dlFxz3UkLq3EjV0WClzbcfEzYXu.jpg", "order": 16}, {"name": "Guy Deghy", "character": "Maj. Wilhelm Wilner (uncredited)", "id": 93946, "credit_id": "5479efe8c3a36803df000439", "cast_id": 41, "profile_path": null, "order": 17}], "directors": [{"name": "Brian G. Hutton", "department": "Directing", "job": "Director", "credit_id": "52fe43ea9251416c75022f51", "profile_path": "/cem8wlan7z6amIzoeKmAvC8yRZF.jpg", "id": 54451}], "vote_average": 7.0, "runtime": 155}, "95": {"poster_path": "/coINnuCzcw5FMHBty8hcudMOBnO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 553799566, "overview": "An asteroid the size of Texas is heading directly toward Earth at 22,000 mph. NASA's executive director, Dan Truman, has only one option - to send up a crew to destroy the asteroid. He enlists the help of Harry S. Stamper - the world's foremost deep core oil driller - and Stamper's roughneck team of drillers to land on the asteroid, drill into its surface, and drop a nuclear device.", "video": false, "id": 95, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Armageddon", "tagline": "Earth. It Was Fun While It Lasted.", "vote_count": 956, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0120591", "adult": false, "backdrop_path": "/ouNshZ43nE4tWdZo3QAFH8525Ps.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Valhalla Motion Pictures", "id": 11533}], "release_date": "1998-06-30", "popularity": 1.54251550105097, "original_title": "Armageddon", "budget": 140000000, "cast": [{"name": "Bruce Willis", "character": "Harry S. Stamper", "id": 62, "credit_id": "52fe4216c3a36847f800316b", "cast_id": 7, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Billy Bob Thornton", "character": "Dan Truman, NASA Administrator", "id": 879, "credit_id": "52fe4216c3a36847f800316f", "cast_id": 8, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 1}, {"name": "Ben Affleck", "character": "A.J. Frost", "id": 880, "credit_id": "52fe4216c3a36847f8003173", "cast_id": 9, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Grace Stamper", "id": 882, "credit_id": "52fe4216c3a36847f8003177", "cast_id": 10, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Will Patton", "character": "Charles 'Chick' Chapple", "id": 883, "credit_id": "52fe4216c3a36847f800317b", "cast_id": 11, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 4}, {"name": "Steve Buscemi", "character": "Rockhound", "id": 884, "credit_id": "52fe4216c3a36847f800317f", "cast_id": 12, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 5}, {"name": "William Fichtner", "character": "Colonel William Sharp, Shuttle Freedom Pilot", "id": 886, "credit_id": "52fe4216c3a36847f8003183", "cast_id": 13, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 6}, {"name": "Michael Clarke Duncan", "character": "Jayotis 'Bear' Kurleenbear", "id": 61981, "credit_id": "52fe4216c3a36847f8003187", "cast_id": 15, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 7}, {"name": "Peter Stormare", "character": "Lev Andropov, Russian Cosmonaut", "id": 53, "credit_id": "52fe4216c3a36847f800318b", "cast_id": 16, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 8}, {"name": "Owen Wilson", "character": "Oscar Choi", "id": 887, "credit_id": "52fe4216c3a36847f80031e3", "cast_id": 31, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 9}, {"name": "Ken Hudson Campbell", "character": "Max", "id": 236327, "credit_id": "52fe4216c3a36847f80031e7", "cast_id": 32, "profile_path": "/lN9e975UkER6sRu9tKpeL2XyU5D.jpg", "order": 10}, {"name": "Jessica Steen", "character": "Co-Pilot Jennifer Watts", "id": 42707, "credit_id": "52fe4216c3a36847f80031eb", "cast_id": 33, "profile_path": "/lZMvl7tJZPThfF7Lnui4wgEoOIf.jpg", "order": 11}, {"name": "Chris Ellis", "character": "Flight Director Clark", "id": 8191, "credit_id": "52fe4216c3a36847f80031ef", "cast_id": 34, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 12}, {"name": "Keith David", "character": "General Kimsey", "id": 65827, "credit_id": "52fe4216c3a36847f80031f3", "cast_id": 35, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 13}, {"name": "Jason Isaacs", "character": "Ronald Quincy", "id": 11355, "credit_id": "52fe4216c3a36847f80031f7", "cast_id": 36, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 14}, {"name": "Marshall R. Teague", "character": "Colonel Davis", "id": 63941, "credit_id": "539824c50e0a266db400c7ec", "cast_id": 42, "profile_path": "/qRDCvSWg76O071pggoGeru30SGk.jpg", "order": 15}, {"name": "J. Patrick McCormack", "character": "General Boffer", "id": 93958, "credit_id": "5398251d0e0a266db700c72e", "cast_id": 43, "profile_path": "/m7UeFeNJ6F2bABqi893zJXZLHkO.jpg", "order": 16}, {"name": "Ian Quinn", "character": "Astronaut Pete Shelby", "id": 1329760, "credit_id": "539825660e0a266dbf00c5f7", "cast_id": 44, "profile_path": "/emd0IL5L91NIUNwYS98K8DUXFKA.jpg", "order": 17}, {"name": "Charlton Heston", "character": "Narrator", "id": 10017, "credit_id": "53ead48cc3a36868a0000546", "cast_id": 45, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 18}, {"name": "Eddie Griffin", "character": "Bike Messenger", "id": 62842, "credit_id": "53ead4a1c3a3686891000576", "cast_id": 46, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 19}, {"name": "Grace Zabriskie", "character": "Dottie", "id": 6465, "credit_id": "5492a342c3a36860680006a2", "cast_id": 117, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 20}, {"name": "Stanley Anderson", "character": "President", "id": 15253, "credit_id": "5492a371925141090e0012ea", "cast_id": 118, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 21}, {"name": "James Harper", "character": "Admiral Kelso", "id": 167178, "credit_id": "5492a3f0925141090c001364", "cast_id": 119, "profile_path": null, "order": 22}, {"name": "Ellen Cleghorne", "character": "Helga the Nurse", "id": 1232807, "credit_id": "5492a41192514118f2001196", "cast_id": 120, "profile_path": null, "order": 23}, {"name": "Udo Kier", "character": "Psychologist", "id": 1646, "credit_id": "5492a428c3a3683cf800121f", "cast_id": 121, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 24}, {"name": "Michael Bay", "character": "NASA Scientist (uncredited)", "id": 865, "credit_id": "551b911a9251413f6f0010ea", "cast_id": 122, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 25}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f8003149", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 151}, "76589": {"poster_path": "/4KIk5Odvkpwlf5y0QYqohTTlujw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An adaptation of Mark Waid's \"Tower of Babel\" story from the JLA comic. Vandal Savage steals confidential files Batman has compiled on the members of the Justice League, and learns all their weaknesses.", "video": false, "id": 76589, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 53, "name": "Thriller"}], "title": "Justice League: Doom", "tagline": "The end of justice.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2027128", "adult": false, "backdrop_path": "/dfgkhmFGmyynhcejN0Il36eBQc2.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2012-02-28", "popularity": 0.584568414715323, "original_title": "Justice League: Doom", "budget": 0, "cast": [{"name": "Nathan Fillion", "character": "Hal Jordan / Green Lantern", "id": 51797, "credit_id": "52fe4942c3a368484e1227a3", "cast_id": 1, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 0}, {"name": "Olivia d'Abo", "character": "Star Sapphire", "id": 46423, "credit_id": "52fe4942c3a368484e1227a7", "cast_id": 2, "profile_path": "/ffeCJwgPXSrurcfFrjEyvCXsPUz.jpg", "order": 1}, {"name": "Claudia Black", "character": "Cheetah", "id": 26054, "credit_id": "52fe4942c3a368484e1227ab", "cast_id": 3, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 2}, {"name": "Michael Rosenbaum", "character": "The Flash", "id": 19975, "credit_id": "52fe4942c3a368484e1227af", "cast_id": 4, "profile_path": "/kfitDCFN9JJxZF6IE0XzgdgDtXr.jpg", "order": 3}, {"name": "Tim Daly", "character": "Superman", "id": 68122, "credit_id": "52fe4942c3a368484e1227b3", "cast_id": 6, "profile_path": "/eLBlqpzOv1F9oPcWSU76yiuXneU.jpg", "order": 4}, {"name": "Kevin Conroy", "character": "Batman", "id": 34947, "credit_id": "52fe4942c3a368484e122805", "cast_id": 27, "profile_path": "/oWfPFRH65zNdeV46zSTXD0jVr8q.jpg", "order": 5}, {"name": "Phil Morris", "character": "Vandal Savage", "id": 56853, "credit_id": "52fe4942c3a368484e1227b7", "cast_id": 8, "profile_path": "/e8FKG1DoVsUibW8cI4gvRluwPav.jpg", "order": 6}, {"name": "Paul Blackthorne", "character": "Metallo / John Corben", "id": 43231, "credit_id": "52fe4942c3a368484e1227bb", "cast_id": 9, "profile_path": "/cr11VQutjQCjPK8sq1ec08c04yw.jpg", "order": 7}, {"name": "Carl Lumbly", "character": "Martian Manhunter", "id": 29382, "credit_id": "52fe4942c3a368484e1227bf", "cast_id": 10, "profile_path": "/2MMwOIeJGlVrk5JgF4ap47RNbjB.jpg", "order": 8}, {"name": "Carlos Alazraqui", "character": "Bane", "id": 59784, "credit_id": "52fe4942c3a368484e1227c3", "cast_id": 11, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 9}, {"name": "Bumper Robinson", "character": "Cyborg", "id": 35111, "credit_id": "52fe4942c3a368484e1227c7", "cast_id": 12, "profile_path": "/upWJKbhdN19W8GEgNujTJavzeca.jpg", "order": 10}, {"name": "Susan Eisenberg", "character": "Wonder Woman", "id": 112043, "credit_id": "52fe4942c3a368484e1227cb", "cast_id": 13, "profile_path": "/vXqVM8pUuXn0IqmRBFJOyM1VnQ8.jpg", "order": 11}, {"name": "David Kaufman", "character": "Jimmy Olsen", "id": 157536, "credit_id": "52fe4942c3a368484e1227cf", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Dee Bradley Baker", "character": "Officer in Charge / Newscaster", "id": 23680, "credit_id": "52fe4942c3a368484e1227e5", "cast_id": 19, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 13}, {"name": "Grey DeLisle", "character": "Lois Lane / Queen", "id": 15761, "credit_id": "52fe4942c3a368484e1227e9", "cast_id": 20, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 14}, {"name": "Robin Atkin Downes", "character": "Alfred Pennyworth / Jack", "id": 130081, "credit_id": "52fe4942c3a368484e1227ed", "cast_id": 21, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 15}, {"name": "Brian George", "character": "Mayor", "id": 58511, "credit_id": "52fe4942c3a368484e1227f1", "cast_id": 22, "profile_path": "/g0bVyXsHDhRhd5WuQwRQDv2TkG9.jpg", "order": 16}, {"name": "Juliet Landau", "character": "Ten", "id": 7137, "credit_id": "52fe4942c3a368484e1227f5", "cast_id": 23, "profile_path": "/78ohsJtUTo0ZLdSRfiTgYQQQSWI.jpg", "order": 17}, {"name": "Jim Meskimen", "character": "King", "id": 30697, "credit_id": "52fe4942c3a368484e1227f9", "cast_id": 24, "profile_path": "/fZ1Eu6Pb98LUn0wwTU7D32a6WGR.jpg", "order": 18}, {"name": "Andrea Romano", "character": "Bat Computer", "id": 34945, "credit_id": "52fe4942c3a368484e1227fd", "cast_id": 25, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 19}, {"name": "Bruce Timm", "character": "Ace", "id": 34934, "credit_id": "52fe4942c3a368484e122801", "cast_id": 26, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 20}, {"name": "Alexis Denisof", "character": "Mirror Master", "id": 1214673, "credit_id": "52fe4942c3a368484e122809", "cast_id": 28, "profile_path": "/hAcTJxSbSPHLfa59D8mnJOzxpmE.jpg", "order": 21}], "directors": [{"name": "Lauren Montgomery", "department": "Directing", "job": "Director", "credit_id": "52fe4942c3a368484e1227d5", "profile_path": null, "id": 74863}], "vote_average": 7.2, "runtime": 77}, "52015": {"poster_path": "/xohrZtjqSsP5hWK5J3dn8YyelKY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33245, "overview": "Martin was a normal teenage boy before the country collapsed in an empty pit of economic and political disaster. A vampire epidemic has swept across what is left of the nation's abandoned towns and cities, and it's up to Mister, a death dealing, rogue vampire hunter, to get Martin safely north to Canada, the continent's New Eden.", "video": false, "id": 52015, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Stake Land", "tagline": "The Most Dangerous Thing Is To Be Alive.", "vote_count": 52, "homepage": "http://www.stakelandthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1464580", "adult": false, "backdrop_path": "/6lBB6bYjnQe0mPQTn1sJBkTux1l.jpg", "production_companies": [{"name": "Glass Eye Pix", "id": 1360}, {"name": "Belladonna Productions", "id": 2341}, {"name": "Off Hollywood Pictures", "id": 3768}], "release_date": "2010-09-30", "popularity": 0.678707016868434, "original_title": "Stake Land", "budget": 650000, "cast": [{"name": "Danielle Harris", "character": "Belle", "id": 21320, "credit_id": "52fe4812c3a36847f8156f4b", "cast_id": 2, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 0}, {"name": "Kelly McGillis", "character": "Sister", "id": 11084, "credit_id": "52fe4812c3a36847f8156f4f", "cast_id": 3, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 1}, {"name": "Nick Damici", "character": "Mister", "id": 67580, "credit_id": "52fe4812c3a36847f8156f53", "cast_id": 4, "profile_path": "/vkZ2H5vLITyVyl4OkYe4r8cBMrS.jpg", "order": 2}, {"name": "Connor Paolo", "character": "Martin", "id": 4738, "credit_id": "52fe4812c3a36847f8156f57", "cast_id": 5, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 3}, {"name": "Gregory Jones", "character": "Martin's Father", "id": 1015892, "credit_id": "52fe4813c3a36847f8156fa9", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Traci Hovel", "character": "Martin's Mother", "id": 206352, "credit_id": "52fe4813c3a36847f8156fad", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Marianne Hagan", "character": "Doctor Foley", "id": 67838, "credit_id": "52fe4813c3a36847f8156fb1", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "James Godwin", "character": "Barn Vamp", "id": 939290, "credit_id": "52fe4813c3a36847f8156fb5", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Tim House", "character": "Sheriff", "id": 82851, "credit_id": "52fe4813c3a36847f8156fb9", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Michael Cerveris", "character": "Jebedia Loven", "id": 49827, "credit_id": "52fe4813c3a36847f8156fbd", "cast_id": 24, "profile_path": "/1cMSbaBloNvWYHLPRxeSHoHrj1U.jpg", "order": 9}, {"name": "Sean Nelson", "character": "Willie", "id": 75601, "credit_id": "52fe4813c3a36847f8156fc1", "cast_id": 25, "profile_path": "/8ylzaMgIfGxbaDrhe7uJmYBSFBB.jpg", "order": 10}, {"name": "Adam Scarimbolo", "character": "Kevin", "id": 53939, "credit_id": "52fe4813c3a36847f8156fc5", "cast_id": 26, "profile_path": "/bAQpz2DfwbXWdLEXXf7ZG6Q1cuA.jpg", "order": 11}, {"name": "Chance Kelly", "character": "Officer Harley", "id": 17194, "credit_id": "52fe4813c3a36847f8156fc9", "cast_id": 27, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 12}], "directors": [{"name": "Jim Mickle", "department": "Directing", "job": "Director", "credit_id": "52fe4812c3a36847f8156f47", "profile_path": null, "id": 87082}], "vote_average": 6.0, "runtime": 98}, "479": {"poster_path": "/bqlpFp96uWu2VDpsm4MVvLXdumh.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 107196498, "overview": "New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.", "video": false, "id": 479, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Shaft", "tagline": "Still the man, any questions?", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0162650", "adult": false, "backdrop_path": "/2p9NtyrnFZtGRyCGN5SBk1eARNK.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2000-06-15", "popularity": 0.995739421563572, "original_title": "Shaft", "budget": 46000000, "cast": [{"name": "Samuel L. Jackson", "character": "John Shaft", "id": 2231, "credit_id": "52fe4248c3a36847f801217b", "cast_id": 6, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Jeffrey Wright", "character": "Peoples Hernandez", "id": 2954, "credit_id": "52fe4248c3a36847f801217f", "cast_id": 8, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 1}, {"name": "Christian Bale", "character": "Walter Wade, Jr.", "id": 3894, "credit_id": "52fe4248c3a36847f8012183", "cast_id": 9, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 2}, {"name": "Busta Rhymes", "character": "Rasaan", "id": 6485, "credit_id": "52fe4248c3a36847f8012187", "cast_id": 10, "profile_path": "/1NqDmMk2jnrLjJUfb68gtMnSyF8.jpg", "order": 3}, {"name": "Dan Hedaya", "character": "Jack Roselli", "id": 6486, "credit_id": "52fe4248c3a36847f801218b", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 4}, {"name": "Toni Collette", "character": "Diane Palmieri", "id": 3051, "credit_id": "52fe4248c3a36847f801218f", "cast_id": 12, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 5}, {"name": "Richard Roundtree", "character": "(Uncle) John Shaft", "id": 6487, "credit_id": "52fe4248c3a36847f8012193", "cast_id": 13, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 6}, {"name": "Pat Hingle", "character": "Judge Dennis Bradford", "id": 3798, "credit_id": "52fe4248c3a36847f80121cd", "cast_id": 23, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 7}, {"name": "Philip Bosco", "character": "Walter Wade Senior", "id": 6541, "credit_id": "52fe4248c3a36847f80121d1", "cast_id": 24, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 8}, {"name": "Vanessa Williams", "character": "Carmen Vasquez", "id": 27011, "credit_id": "52fe4248c3a36847f80121db", "cast_id": 26, "profile_path": "/t5tyW5nSk5ikeU8cWPdg4ImsMuq.jpg", "order": 9}, {"name": "Lee Tergesen", "character": "Luger", "id": 6906, "credit_id": "5323fe7e92514115440001c1", "cast_id": 28, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 10}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe4248c3a36847f801215f", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 5.0, "runtime": 99}, "11072": {"poster_path": "/yccgwPNVaqtgS1d0U5jjM6Mnza8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119500000, "overview": "The Ultimate Western Spoof. A town where everyone seems to be named Johnson is in the way of the railroad. In order to grab their land, Hedley Lemar, a politically connected nasty person, sends in his henchmen to make the town unlivable. After the sheriff is killed, the town demands a new sheriff from the Governor. Hedley convinces him to send the town the first Black sheriff in the west.", "video": false, "id": 11072, "genres": [{"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Blazing Saddles", "tagline": "Never give a saga an even break!", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "yi", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071230", "adult": false, "backdrop_path": "/tzJmubvEPw2etDhzqpA6Wb3K2EZ.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Crossbow Productions", "id": 1296}], "release_date": "1974-02-07", "popularity": 0.63983360588985, "original_title": "Blazing Saddles", "budget": 2600000, "cast": [{"name": "Cleavon Little", "character": "Sheriff Bart", "id": 68091, "credit_id": "52fe43f19251416c75023ba9", "cast_id": 1, "profile_path": "/qZAzZAjD0vyjhE5ZTDXOq6wpg8l.jpg", "order": 0}, {"name": "Gene Wilder", "character": "Jim, aka \"The Waco Kid\"", "id": 3460, "credit_id": "52fe43f19251416c75023bad", "cast_id": 2, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 0}, {"name": "Mel Brooks", "character": "Gov. William J. Le Petomane / Indian Chief", "id": 14639, "credit_id": "52fe43f19251416c75023bb1", "cast_id": 3, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 0}, {"name": "Madeline Kahn", "character": "Lili Von Sht\u00fcpp, the Teutonic Titwillow", "id": 29803, "credit_id": "52fe43f19251416c75023bb5", "cast_id": 4, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 1}, {"name": "Slim Pickens", "character": "Taggart", "id": 14253, "credit_id": "52fe43f19251416c75023bd7", "cast_id": 13, "profile_path": "/xO2rvqSBgZRJKjkVrFy1xeygxLF.jpg", "order": 4}, {"name": "Harvey Korman", "character": "Hedley Lamarr", "id": 13640, "credit_id": "52fe43f19251416c75023bdb", "cast_id": 14, "profile_path": "/zXLYvJP3ReKPI6lJr2VuDGupL1j.jpg", "order": 5}, {"name": "Burton Gilliam", "character": "Lyle", "id": 133952, "credit_id": "52fe43f19251416c75023c03", "cast_id": 22, "profile_path": "/vy97LXXW4hRjwJa4h9IbTBwuGN5.jpg", "order": 6}, {"name": "Alex Karras", "character": "Mongo", "id": 73234, "credit_id": "52fe43f19251416c75023c07", "cast_id": 23, "profile_path": "/yD8ZW7yHzrRlJnSi2fqjkosTnCE.jpg", "order": 7}, {"name": "David Huddleston", "character": "Olson Johnson", "id": 1232, "credit_id": "52fe43f19251416c75023c0b", "cast_id": 24, "profile_path": "/6cXqGzHB0zJautJVPCtbEsCtsCQ.jpg", "order": 8}, {"name": "Liam Dunn", "character": "Rev. Johnson", "id": 152711, "credit_id": "52fe43f19251416c75023c0f", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "John Hillerman", "character": "Howard Johnson", "id": 12296, "credit_id": "52fe43f19251416c75023c13", "cast_id": 26, "profile_path": "/93n8VRJIlZivnNES3W1utuWfvkp.jpg", "order": 10}, {"name": "George Furth", "character": "Van Johnson", "id": 9597, "credit_id": "52fe43f19251416c75023c17", "cast_id": 27, "profile_path": "/sSku0t0IXJRj3GmHNWSIivYPCT3.jpg", "order": 11}, {"name": "Carol Arthur", "character": "Harriett Johnson", "id": 80626, "credit_id": "52fe43f19251416c75023c1f", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Richard Collier", "character": "Dr. Sam Johnson", "id": 151849, "credit_id": "52fe43f19251416c75023c23", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Charles McGregor", "character": "Charlie", "id": 981005, "credit_id": "52fe43f19251416c75023c27", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Don Megowan", "character": "Gum Chewer", "id": 31208, "credit_id": "52fe43f19251416c75023c2b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Dom DeLuise", "character": "Buddy Bizarre", "id": 6844, "credit_id": "52fe43f19251416c75023c2f", "cast_id": 34, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 17}, {"name": "Count Basie", "character": "Himself", "id": 240728, "credit_id": "52fe43f19251416c75023c33", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Karl Lukas", "character": "Cutthroat #1", "id": 153618, "credit_id": "52fe43f19251416c75023c37", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Robyn Hilton", "character": "Miss Stein", "id": 101461, "credit_id": "52fe43f19251416c75023c3b", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Jack Starrett", "character": "Gabby Johnson", "id": 16556, "credit_id": "541aef630e0a26013e001a60", "cast_id": 39, "profile_path": null, "order": 21}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe43f19251416c75023bbb", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 6.7, "runtime": 93}, "19265": {"poster_path": "/zW8SJChuvFKVtaZkE4rMH6aum4B.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Whatever Works explores the relationship between a crotchety misanthrope, Boris and a na\u00efve, impressionable young runaway from the south, Melody. When Melody's uptight parents arrive in New York to rescue her, they are quickly drawn into wildly unexpected romantic entanglements. Everyone discovers that finding love is just a combination of lucky chance and appreciating the value of \"whatever works.\"", "video": false, "id": 19265, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Whatever Works", "tagline": "A new comedy", "vote_count": 50, "homepage": "http://www.sonypictures.com/classics/whateverworks/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1178663", "adult": false, "backdrop_path": "/7KUfpN82cevnzh7F4rX5r12GZfE.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "Wild Bunch", "id": 856}, {"name": "Gravier Productions", "id": 1824}, {"name": "Perdido Productions", "id": 12966}], "release_date": "2009-06-19", "popularity": 0.503436284715012, "original_title": "Whatever Works", "budget": 15000000, "cast": [{"name": "Larry David", "character": "Boris Yellnikoff", "id": 16376, "credit_id": "52fe47ca9251416c750a596b", "cast_id": 5, "profile_path": "/nU0K1Z7HEFEkuLMQb1qDlZhDhij.jpg", "order": 0}, {"name": "Evan Rachel Wood", "character": "Melodie St. Ann Celestine", "id": 38940, "credit_id": "52fe47ca9251416c750a596f", "cast_id": 6, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 1}, {"name": "Adam Brooks", "character": "Boris' Friend #1", "id": 16328, "credit_id": "52fe47ca9251416c750a5973", "cast_id": 7, "profile_path": "/yUyhsz2KZ87ePFxyQGeW9FjoGZ6.jpg", "order": 2}, {"name": "Michael McKean", "character": "Joe - Boris' Friend #3", "id": 21731, "credit_id": "52fe47ca9251416c750a5977", "cast_id": 8, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 3}, {"name": "Lyle Kanouse", "character": "Boris' Friend #2", "id": 84421, "credit_id": "52fe47ca9251416c750a597b", "cast_id": 9, "profile_path": "/8haoaqa7rcsyFtpbKxT43xxXP2N.jpg", "order": 4}, {"name": "Carolyn McCormick", "character": "Jessica", "id": 84422, "credit_id": "52fe47ca9251416c750a597f", "cast_id": 10, "profile_path": "/21OGOTdd5TYkeS0gYTqaWEubf61.jpg", "order": 5}, {"name": "John Gallagher Jr.", "character": "Perry", "id": 17487, "credit_id": "52fe47ca9251416c750a5983", "cast_id": 11, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 6}, {"name": "Conleth Hill", "character": "Leo Brockman", "id": 84423, "credit_id": "52fe47ca9251416c750a5987", "cast_id": 12, "profile_path": "/nxSh1w1MTyAfQ1cCSie3HtjQot6.jpg", "order": 7}, {"name": "Nicole Patrick", "character": "Perry's Friend", "id": 84424, "credit_id": "52fe47ca9251416c750a598b", "cast_id": 13, "profile_path": "/aV4InXJFf7M2NYoczFBPLZZnWu0.jpg", "order": 8}, {"name": "Patricia Clarkson", "character": "Marietta", "id": 1276, "credit_id": "52fe47ca9251416c750a598f", "cast_id": 14, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 9}, {"name": "Henry Cavill", "character": "Randy James", "id": 73968, "credit_id": "52fe47ca9251416c750a5993", "cast_id": 15, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 10}, {"name": "Olek Krupa", "character": "Morgenstern", "id": 53573, "credit_id": "52fe47ca9251416c750a5997", "cast_id": 16, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 11}, {"name": "Ed Begley Jr.", "character": "John", "id": 42157, "credit_id": "52fe47cb9251416c750a599b", "cast_id": 17, "profile_path": "/m264FJDCnB5H6qyU2sDKjs9tM86.jpg", "order": 12}, {"name": "Christopher Evan Welch", "character": "Howard", "id": 60021, "credit_id": "52fe47cb9251416c750a599f", "cast_id": 18, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 13}, {"name": "Jessica Hecht", "character": "Helena", "id": 14984, "credit_id": "52fe47cb9251416c750a59a3", "cast_id": 19, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 14}, {"name": "Kristen Ruhlin", "character": "Melodie Club Friend #3", "id": 79999, "credit_id": "52fe47cb9251416c750a59a7", "cast_id": 20, "profile_path": "/tyZaLxTG16qHyvSfW3GRLkVyjxe.jpg", "order": 15}, {"name": "Yolonda Ross", "character": "Boy's Mother", "id": 36549, "credit_id": "52fe47cb9251416c750a59ab", "cast_id": 21, "profile_path": "/wVy8MPKJD6oM8JUEJdpsdbEWlrn.jpg", "order": 16}, {"name": "Samantha Bee", "character": "Chess Mother", "id": 1218277, "credit_id": "52fe47cb9251416c750a59af", "cast_id": 22, "profile_path": "/vamycSzxXCAFi6lXGERYUpmcPrk.jpg", "order": 17}, {"name": "Willa Cuthrell-Tuttleman", "character": "Chess Girl", "id": 1285414, "credit_id": "52fe47cb9251416c750a59b3", "cast_id": 23, "profile_path": "/A8M9hogEZoQF7kjvxP14SCmz4Ne.jpg", "order": 18}, {"name": "Julie Basem", "character": "Cafe Waitress", "id": 1285539, "credit_id": "52fe47cb9251416c750a59b7", "cast_id": 24, "profile_path": "/5pkCDwpQNenjhNODJkWKpiU9i5a.jpg", "order": 19}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe47ca9251416c750a5955", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.6, "runtime": 92}, "256835": {"poster_path": "/aGDVBwpxlA95mn7yTxwM8r0oTR0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "During a post-Christmas play date, the gang find themselves in uncharted territory when the coolest set of action figures ever turn out to be dangerously delusional. It's all up to Trixie, the triceratops, if the gang hopes to return to Bonnie's room in this Toy Story That Time Forgot.", "video": false, "id": 256835, "genres": [{"id": 16, "name": "Animation"}, {"id": 10770, "name": "TV Movie"}], "title": "Toy Story That Time Forgot", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3473654", "adult": false, "backdrop_path": "/lBIU50ihAcSJtxrayTv1CmyP7r0.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2014-12-02", "popularity": 1.11082648112818, "original_title": "Toy Story That Time Forgot", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "543d70930e0a266f8400032c", "cast_id": 0, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "543d70a40e0a266f8e0002c6", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jessie (voice)", "id": 3234, "credit_id": "543d70ba0e0a266f7d0002ff", "cast_id": 2, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Kristen Schaal", "character": "Trixie (voice)", "id": 109869, "credit_id": "543d70d00e0a266f7d000303", "cast_id": 3, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 4}, {"name": "Wallace Shawn", "character": "Rex (voice)", "id": 12900, "credit_id": "543d70e1c3a368250d0002bc", "cast_id": 4, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 5}, {"name": "Timothy Dalton", "character": "Mr. Pricklepants (voice)", "id": 10669, "credit_id": "543d70f40e0a266f81000330", "cast_id": 5, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 6}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "543d7107c3a368251f000301", "cast_id": 6, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 7}, {"name": "Kevin McKidd", "character": "Reptillus Maximus (voice)", "id": 9013, "credit_id": "543d711ec3a3682513000324", "cast_id": 7, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 8}], "directors": [{"name": "Steve Purcell", "department": "Directing", "job": "Director", "credit_id": "543d7160c3a36825040002ff", "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "id": 137262}], "vote_average": 6.5, "runtime": 22}, "11078": {"poster_path": "/5YFPkMgy5NCzUSYl5Ep8p0vK9qB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36288951, "overview": "Two mismatched security guards are thrown together to bust a smuggling operation.", "video": false, "id": 11078, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "National Security", "tagline": "They only look like cops.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0271668", "adult": false, "backdrop_path": "/tnSB171AQf4hnAR1simsgROtF0h.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2003-01-17", "popularity": 0.370808429288049, "original_title": "National Security", "budget": 0, "cast": [{"name": "Martin Lawrence", "character": "Earl Montgomery", "id": 78029, "credit_id": "52fe43f29251416c75023e9f", "cast_id": 1, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Hank Rafferty", "id": 18324, "credit_id": "52fe43f29251416c75023ea3", "cast_id": 2, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Colm Feore", "character": "Detective Frank McDuff", "id": 10132, "credit_id": "52fe43f29251416c75023ea7", "cast_id": 3, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 2}, {"name": "Bill Duke", "character": "Lieutenant Washington", "id": 1103, "credit_id": "52fe43f29251416c75023eab", "cast_id": 4, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 3}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe43f29251416c75023eb1", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.0, "runtime": 88}, "11081": {"poster_path": "/2LE560KT69RLnxIU83wrTvClj8D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32682342, "overview": "Recruited to assist Montreal police in their desperate search for a serial killer who assumes the identities of his victims, FBI profiler Illeana Scott knows it's only a matter of time before the killer strikes again. Her most promising lead is a museum employee who might be the killer's only eyewitness.", "video": false, "id": 11081, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Taking Lives", "tagline": "He would kill to be you.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0364045", "adult": false, "backdrop_path": "/qcjTmSVyYqGMCVRH7FjXwMdan40.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Atmosphere Entertainment MM", "id": 2995}], "release_date": "2004-03-16", "popularity": 0.927488263975579, "original_title": "Taking Lives", "budget": 0, "cast": [{"name": "Angelina Jolie", "character": "Illeana Scott", "id": 11701, "credit_id": "52fe43f29251416c75023eed", "cast_id": 1, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "James Costa", "id": 569, "credit_id": "52fe43f29251416c75023ef1", "cast_id": 2, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Kiefer Sutherland", "character": "Christopher Hart", "id": 2628, "credit_id": "52fe43f39251416c75023ef5", "cast_id": 3, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 2}, {"name": "Gena Rowlands", "character": "Mrs. Rebecca Asher", "id": 4800, "credit_id": "52fe43f39251416c75023ef9", "cast_id": 4, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 3}, {"name": "Olivier Martinez", "character": "Paquette", "id": 15533, "credit_id": "52fe43f39251416c75023f27", "cast_id": 13, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 4}, {"name": "Tch\u00e9ky Karyo", "character": "Leclair", "id": 10698, "credit_id": "54ad5d079251414b4d00007f", "cast_id": 14, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 5}, {"name": "Jean-Hugues Anglade", "character": "Duval", "id": 7037, "credit_id": "54ad5d3e925141517b000047", "cast_id": 15, "profile_path": "/iy8Tfcb3Zq1INu1kGm069wccRev.jpg", "order": 6}, {"name": "Tch\u00e9ky Karyo", "character": "Leclair", "id": 10698, "credit_id": "54ad5d499251414b5700006f", "cast_id": 16, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 7}, {"name": "Paul Dano", "character": "Young Asher", "id": 17142, "credit_id": "54ad5d7bc3a3682fcc0000ac", "cast_id": 17, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 8}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe43f39251416c75023f23", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 5.8, "runtime": 103}, "2898": {"poster_path": "/q2645aW8vgg1g7RL5lil6K93yaA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 314178011, "overview": "New York City. Melvin Udall, a cranky, bigoted, obsessive-compulsive writer, finds his life turned upside down when neighboring gay artist Simon is hospitalized and his dog is entrusted to Melvin. In addition, Carol, the only waitress who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.", "video": false, "id": 2898, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "As Good as It Gets", "tagline": "A comedy from the heart that goes for the throat.", "vote_count": 232, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119822", "adult": false, "backdrop_path": "/f3Fkt6uwfOfk26O8rH4rfhHHkw7.jpg", "production_companies": [{"name": "Gracie Films", "id": 18}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1997-12-19", "popularity": 0.369098792959792, "original_title": "As Good as It Gets", "budget": 5000000, "cast": [{"name": "Jack Nicholson", "character": "Melvin Udall", "id": 514, "credit_id": "52fe4373c3a36847f80550e5", "cast_id": 1, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Carol Connelly", "id": 9994, "credit_id": "52fe4373c3a36847f80550e9", "cast_id": 2, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "Greg Kinnear", "character": "Simon Bishop", "id": 17141, "credit_id": "52fe4373c3a36847f80550ed", "cast_id": 3, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 2}, {"name": "Cuba Gooding Jr.", "character": "Frank Sachs", "id": 9777, "credit_id": "52fe4373c3a36847f80550f1", "cast_id": 4, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 3}, {"name": "Skeet Ulrich", "character": "Vincent Lopiano", "id": 22108, "credit_id": "52fe4373c3a36847f80550f5", "cast_id": 5, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 4}, {"name": "Shirley Knight", "character": "Beverly Connelly", "id": 28778, "credit_id": "52fe4373c3a36847f80550f9", "cast_id": 6, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 5}, {"name": "Yeardley Smith", "character": "Jackie Simpson", "id": 5586, "credit_id": "52fe4373c3a36847f80550fd", "cast_id": 7, "profile_path": "/g2LYM8XqkFiPsupUgky6PNuIenL.jpg", "order": 6}, {"name": "Lupe Ontiveros", "character": "Nora Manning", "id": 28779, "credit_id": "52fe4373c3a36847f8055101", "cast_id": 8, "profile_path": "/7omMwfHNyQ6T2O8Trppbpj8ED2W.jpg", "order": 7}, {"name": "Bibi Osterwald", "character": "Neighbor Woman", "id": 161439, "credit_id": "52fe4373c3a36847f805511d", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Ross Bleckner", "character": "Carl", "id": 1080069, "credit_id": "52fe4373c3a36847f8055121", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Bernadette Balagtas", "character": "Caterer", "id": 239061, "credit_id": "52fe4373c3a36847f8055125", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jaffe Cohen", "character": "Partygoer", "id": 1080070, "credit_id": "52fe4373c3a36847f8055129", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Laurie Kilpatrick", "character": "Partygoer", "id": 1080071, "credit_id": "52fe4373c3a36847f805512d", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Alice Vaughn", "character": "Partygoer", "id": 1080072, "credit_id": "52fe4373c3a36847f8055131", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Harold Ramis", "character": "Dr. Bettes", "id": 1524, "credit_id": "530ce9159251411431001485", "cast_id": 19, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 14}, {"name": "Harold Ramis", "character": "Dr. Bettes", "id": 1524, "credit_id": "530ce916925141141e00146a", "cast_id": 20, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 15}], "directors": [{"name": "James L. Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe4373c3a36847f8055107", "profile_path": "/9Hx9JbnQBChJhlfJTvmnYF8o8DK.jpg", "id": 3388}], "vote_average": 6.6, "runtime": 139}, "60243": {"poster_path": "/AvkYY1ALKmBkV8WDUFwUiBdxVG7.jpg", "production_countries": [{"iso_3166_1": "IR", "name": "Iran"}], "revenue": 0, "overview": "The movie is centered on a couple, Nader and Simin, and their 11-year-old daughter, Termeh. Nader and Simin are about to leave the country for good; however, Nader has a change of heart and decides to stay and look after his father who suffers from Alzheimer's disease. Simin is determined to get a divorce and leave the country with her daughter, but the court does not find in her favor. Simin goes to live with her mother and Termeh returns to live with her father with the hope that her mother will be back some day.", "video": false, "id": 60243, "genres": [{"id": 18, "name": "Drama"}], "title": "A Separation", "tagline": "Ugly truth, sweet lies.", "vote_count": 163, "homepage": "", "belongs_to_collection": null, "original_language": "fa", "status": "Released", "spoken_languages": [{"iso_639_1": "fa", "name": ""}], "imdb_id": "tt1832382", "adult": false, "backdrop_path": "/iz8eaAVK0HawY8yuoeqAs6Uk83u.jpg", "production_companies": [], "release_date": "2011-03-15", "popularity": 0.499108450738985, "original_title": "\u062c\u062f\u0627\u06cc\u06cc \u0646\u0627\u062f\u0631 \u0627\u0632 \u0633\u06cc\u0645\u06cc\u0646", "budget": 800000, "cast": [{"name": "Leila Hatami", "character": "Simin", "id": 240240, "credit_id": "52fe461dc3a368484e07f915", "cast_id": 3, "profile_path": "/ppI1Q4a7zAXTaAyPRSvPm0vhove.jpg", "order": 0}, {"name": "Kimia Hosseini", "character": "Somayyeh", "id": 240242, "credit_id": "52fe461dc3a368484e07f919", "cast_id": 6, "profile_path": "/kjf7nIYnwadt4vCkELQ4jNvJmLv.jpg", "order": 1}, {"name": "Merila Zarei", "character": "Miss Ghahraii", "id": 240243, "credit_id": "52fe461dc3a368484e07f91d", "cast_id": 7, "profile_path": "/k5i3Afiuohcn457Zta2UzvpRQFO.jpg", "order": 2}, {"name": "Peyman Moaadi", "character": "Nader", "id": 559566, "credit_id": "52fe461dc3a368484e07f921", "cast_id": 8, "profile_path": "/eLD0NU2F0rkbjcPWPtrOHvgmLv1.jpg", "order": 3}, {"name": "Sareh Bayat", "character": "Razieh", "id": 559567, "credit_id": "52fe461dc3a368484e07f925", "cast_id": 9, "profile_path": "/pR4MIPTumYnt9j00uVwFV76Wb0f.jpg", "order": 4}, {"name": "Shahab Hosseini", "character": "Hojjat", "id": 229933, "credit_id": "52fe461dc3a368484e07f929", "cast_id": 10, "profile_path": "/iX43seeXL6ksZaTYXxt1HPIUbzO.jpg", "order": 5}, {"name": "Ali-Asghar Shahbazi", "character": "Nader's Father", "id": 559568, "credit_id": "52fe461dc3a368484e07f92d", "cast_id": 11, "profile_path": "/eYI5wbqaQCa8dQY1MOfgm6e7HSZ.jpg", "order": 6}, {"name": "Shirin Yazdanbakhsh", "character": "Simin's Mother", "id": 559569, "credit_id": "52fe461dc3a368484e07f931", "cast_id": 12, "profile_path": "/dYDPPg73vAzFlTJ1fok5IXf11CK.jpg", "order": 7}, {"name": "Mohammad Sajadian", "character": "Soldier", "id": 1141703, "credit_id": "52fe461dc3a368484e07f971", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Armine Zeytounchian ", "character": "Mrs. Kalaani", "id": 1029121, "credit_id": "52fe461dc3a368484e07f975", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Asghar Farhadi", "department": "Directing", "job": "Director", "credit_id": "52fe461dc3a368484e07f911", "profile_path": "/kgcV55oG7Z0RHF0fvrWsAoiu8UA.jpg", "id": 229931}], "vote_average": 7.8, "runtime": 123}, "2900": {"poster_path": "/2zm3a3453aWN078Qd6nIQngbEkM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19598588, "overview": "A NASA astronaut and his wife's lives are propelled into utter dismay upon his return home from a space mission that lost contact with Earth for two minutes. What happened during those frightening 120 seconds in space will effect their marriage, sanity, and ultimately threaten their lives.", "video": false, "id": 2900, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Astronaut's Wife", "tagline": "How well do you know the one you love?", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138304", "adult": false, "backdrop_path": "/3z9eCqGkOgpyq55XnEgmuytAU3f.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mad Chance", "id": 1757}], "release_date": "1999-08-26", "popularity": 0.478440408112327, "original_title": "The Astronaut's Wife", "budget": 75000000, "cast": [{"name": "Johnny Depp", "character": "Commander Spencer Armacost", "id": 85, "credit_id": "52fe4373c3a36847f805527f", "cast_id": 16, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Jillian Armacost", "id": 6885, "credit_id": "52fe4373c3a36847f8055235", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Joe Morton", "character": "Sherman Reese", "id": 3977, "credit_id": "52fe4373c3a36847f8055239", "cast_id": 3, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 2}, {"name": "Clea DuVall", "character": "Nan", "id": 20387, "credit_id": "52fe4373c3a36847f8055245", "cast_id": 6, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 3}, {"name": "Nick Cassavetes", "character": "Captain Alex Streck", "id": 11151, "credit_id": "52fe4373c3a36847f805523d", "cast_id": 4, "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "order": 4}, {"name": "Donna Murphy", "character": "Natalie Streck", "id": 2517, "credit_id": "52fe4373c3a36847f8055241", "cast_id": 5, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 5}, {"name": "Gary Grubbs", "character": "NASA Director", "id": 68180, "credit_id": "52fe4373c3a36847f8055283", "cast_id": 17, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 6}, {"name": "Blair Brown", "character": "Shelly McLaren", "id": 7571, "credit_id": "52fe4373c3a36847f8055287", "cast_id": 18, "profile_path": "/zBMLu9wTu36i0RkQGSQ5adH6Lvu.jpg", "order": 7}, {"name": "Tom Noonan", "character": "Jackson McLaren", "id": 119232, "credit_id": "52fe4373c3a36847f805528b", "cast_id": 19, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 8}, {"name": "Tom O'Brien", "character": "Allen Dodge", "id": 1170309, "credit_id": "52fe4373c3a36847f80552a3", "cast_id": 25, "profile_path": "/m37cykfnDJPWfMcZFcfSiLbGmwO.jpg", "order": 9}, {"name": "Lucy Lin", "character": "Shelly Carter", "id": 167160, "credit_id": "52fe4373c3a36847f805528f", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Michael Crider", "character": "Pat Elliott", "id": 169588, "credit_id": "52fe4373c3a36847f8055293", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Samantha Eggar", "character": "Dr. Patraba", "id": 46780, "credit_id": "539ad3900e0a264508000937", "cast_id": 27, "profile_path": "/uPcE3Vra0l4E5f8GNKUjCX88w3c.jpg", "order": 12}, {"name": "Rondi Reed", "character": "Dr. Conlin", "id": 172664, "credit_id": "539ad3f50e0a264528000973", "cast_id": 28, "profile_path": "/1UqfI9ntQqy7i93TV96KNDHklAO.jpg", "order": 13}, {"name": "Conrad Bachmann", "character": "Reporter", "id": 158052, "credit_id": "539ad57ec3a3684b730006ef", "cast_id": 30, "profile_path": null, "order": 15}], "directors": [{"name": "Rand Ravich", "department": "Directing", "job": "Director", "credit_id": "52fe4373c3a36847f805524b", "profile_path": "/2NIQNh1o5Rmp1WStc5K1XbR6cKR.jpg", "id": 29524}], "vote_average": 5.8, "runtime": 109}, "207703": {"poster_path": "/pXN5zQHdqmvpUZDPkLooGD6PnAW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kingsman: The Secret Service tells the story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.", "video": false, "id": 207703, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Kingsman: The Secret Service", "tagline": "PUT THE KING, BACK IN KINGSMAN!", "vote_count": 488, "homepage": "http://www.kingsmanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2802144", "adult": false, "backdrop_path": "/3DFKIuDEHBWtBcP1bjzckjOFyfp.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "20th Century Fox Film Corporation", "id": 22573}], "release_date": "2014-02-13", "popularity": 3.56224146819503, "original_title": "Kingsman: The Secret Service", "budget": 0, "cast": [{"name": "Taron Egerton", "character": "Gary 'Eggsy' Unwin", "id": 1303037, "credit_id": "537d333b0e0a2611c8000092", "cast_id": 17, "profile_path": "/bVsLVoO3BGoHRLjWoM4Gjav2hNb.jpg", "order": 0}, {"name": "Colin Firth", "character": "Harry Hart", "id": 5472, "credit_id": "52fe4d3ac3a368484e1ddc97", "cast_id": 1, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Valentine", "id": 2231, "credit_id": "532c5f4192514160cb0000de", "cast_id": 6, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Michael Caine", "character": "Arthur", "id": 3895, "credit_id": "532c5f3792514160cb0000dc", "cast_id": 5, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Mark Strong", "character": "Merlin", "id": 2983, "credit_id": "537d32970e0a2611ce000070", "cast_id": 9, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Sofia Boutella", "character": "Gazelle", "id": 568657, "credit_id": "532c5f8e92514160c40000f5", "cast_id": 8, "profile_path": "/dnFE6lIyN7p0RcS664Xde6mbR7U.jpg", "order": 5}, {"name": "Sophie Cookson", "character": "Roxy", "id": 1282054, "credit_id": "540d4981c3a368799c0052cf", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Jack Davenport", "character": "Lancelot", "id": 1709, "credit_id": "537d32c10e0a2611d100006c", "cast_id": 10, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 8}, {"name": "Mark Hamill", "character": "James Arnold", "id": 2, "credit_id": "540d4968c3a36879a8004fc9", "cast_id": 30, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 9}, {"name": "Geoff Bell", "character": "Dean", "id": 6969, "credit_id": "540d498dc3a368799f0051ae", "cast_id": 32, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 10}, {"name": "Samantha Zoe Womack", "character": "Michelle", "id": 78952, "credit_id": "537d33320e0a2611c4000087", "cast_id": 16, "profile_path": "/meylSWBDezTf9sZ7DQv664imNp5.jpg", "order": 11}, {"name": "Tom Prior", "character": "Hugo", "id": 1361963, "credit_id": "540d49a2c3a368799f0051b6", "cast_id": 33, "profile_path": "/oHHV5txGjAXBTVIj7kkkqoy3hUC.jpg", "order": 12}, {"name": "Jaymes Butler", "character": "Dean's Gang member #2", "id": 74225, "credit_id": "540d49aec3a36879a2005531", "cast_id": 34, "profile_path": "/eKIytH97XBE8Oe87qGsmKTifHVF.jpg", "order": 13}, {"name": "Corey Johnson", "character": "Church Leader", "id": 17199, "credit_id": "537d32fb0e0a2611c4000080", "cast_id": 11, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 14}, {"name": "Neve Gachev", "character": "Reporter", "id": 1186597, "credit_id": "537d330e0e0a2611d7000088", "cast_id": 13, "profile_path": "/rMkCANQP59CaTG8t1FlehuhIepw.jpg", "order": 15}, {"name": "Hanna Alstr\u00f6m", "character": "Princess Tilde", "id": 931785, "credit_id": "54e38779c3a368486f001708", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Bj\u00f8rn Floberg", "character": "Swedish Prime Minister", "id": 67988, "credit_id": "54e387b192514119530098c7", "cast_id": 36, "profile_path": "/53XYly3kVMLlYbYgM5Rf84DVBuR.jpg", "order": 17}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe4d3ac3a368484e1ddca1", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 7.9, "runtime": 130}, "11096": {"poster_path": "/yG1RGIGCcq2AQvB8h4E3azCWMZR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122644820, "overview": "At their new home in upstate New York, newly widowed psychologist David Callaway tries desperately to help his traumatized daughter Emily deal with her mother's death. But before long, both David and Emily are being terrorized by someone - or something - named charlie: a \"friend\" who may or may not be imaginary but is definately the stuff nightmares are made of!", "video": false, "id": 11096, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Hide and Seek", "tagline": "Come out, come out, whatever you are.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0382077", "adult": false, "backdrop_path": "/fnTLBV3npamlk6ouMS6C9z4So9J.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2005-01-27", "popularity": 0.498670709858037, "original_title": "Hide and Seek", "budget": 25000000, "cast": [{"name": "Robert De Niro", "character": "David Callaway", "id": 380, "credit_id": "52fe43f69251416c75024589", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Dakota Fanning", "character": "Emily Callaway", "id": 501, "credit_id": "52fe43f69251416c7502458d", "cast_id": 2, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Katherine", "id": 10696, "credit_id": "52fe43f69251416c75024591", "cast_id": 3, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Elisabeth Shue", "character": "Elizabeth", "id": 1951, "credit_id": "52fe43f69251416c75024595", "cast_id": 4, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 3}, {"name": "Amy Irving", "character": "Alison Callaway", "id": 27563, "credit_id": "52fe43f69251416c75024599", "cast_id": 5, "profile_path": "/7bKYl70P5UmpaoNnlvZD82FLdR.jpg", "order": 4}, {"name": "Dylan Baker", "character": "Sheriff Hafferty", "id": 19152, "credit_id": "52fe43f69251416c750245cd", "cast_id": 14, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 5}, {"name": "Melissa Leo", "character": "Laura", "id": 6832, "credit_id": "52fe43f69251416c750245d1", "cast_id": 15, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 6}, {"name": "Robert John Burke", "character": "Steven", "id": 31512, "credit_id": "52fe43f69251416c750245d5", "cast_id": 16, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 7}], "directors": [{"name": "John Polson", "department": "Directing", "job": "Director", "credit_id": "52fe43f69251416c7502459f", "profile_path": "/l5NGqc8aLYuw6RUpI0ko7Cdv41e.jpg", "id": 15337}], "vote_average": 5.9, "runtime": 101}, "2907": {"poster_path": "/twmpuXRxbZSJV87VOi1pes1Kwk6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 191502426, "overview": "Uncle Fester has been missing for 25 years. An evil doctor finds out and introduces a fake Fester in an attempt to get the Adams Family's money. The youngest daughter has some doubts about the new uncle Fester, but the fake uncle adapts very well to the strange family. Can the doctor carry out her evil plans and take over the Adams Family's fortune?", "video": false, "id": 2907, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Addams Family", "tagline": "Weird Is Relative", "vote_count": 172, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gS5yZLrSJ6uNbsz17xoxf70X2Ws.jpg", "poster_path": "/iqAjYCir8x2fc8eeQ2k4qZqOMP1.jpg", "id": 11716, "name": "Addams Family Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101272", "adult": false, "backdrop_path": "/cf9WjvymdQMYyHHpp30ePvXrUZG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Orion Pictures", "id": 41}], "release_date": "1991-11-22", "popularity": 0.763148676791468, "original_title": "The Addams Family", "budget": 30000000, "cast": [{"name": "Anjelica Huston", "character": "Morticia Addams", "id": 5657, "credit_id": "52fe4374c3a36847f80554c3", "cast_id": 2, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 0}, {"name": "Ra\u00fal Juli\u00e1", "character": "Gomez Addams", "id": 27888, "credit_id": "52fe4374c3a36847f80554c7", "cast_id": 3, "profile_path": "/nr6Vm3KVdwzIADFThKQhG3uTRfJ.jpg", "order": 1}, {"name": "Christopher Lloyd", "character": "Uncle Fester", "id": 1062, "credit_id": "52fe4374c3a36847f80554cb", "cast_id": 4, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 2}, {"name": "Christina Ricci", "character": "Wednesday Addams", "id": 6886, "credit_id": "52fe4374c3a36847f80554cf", "cast_id": 5, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 3}, {"name": "Elizabeth Wilson", "character": "Abigail Craven/Dr. Greta Pinder-Schloss", "id": 10776, "credit_id": "52fe4374c3a36847f80554d3", "cast_id": 6, "profile_path": "/tXmYFqRiQjuiXgnzBpdzRexROAd.jpg", "order": 4}, {"name": "Dana Ivey", "character": "Margaret Alford/Margaret Addams", "id": 13314, "credit_id": "52fe4374c3a36847f80554d7", "cast_id": 7, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 5}, {"name": "Dan Hedaya", "character": "Tully Alford", "id": 6486, "credit_id": "52fe4374c3a36847f805550b", "cast_id": 16, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 6}, {"name": "Judith Malina", "character": "Grandma", "id": 119864, "credit_id": "52fe4374c3a36847f805550f", "cast_id": 17, "profile_path": "/kO8TlnKZvrW3NuIBZhucbeBxDDH.jpg", "order": 7}, {"name": "Carel Struycken", "character": "Lurch", "id": 9631, "credit_id": "52fe4374c3a36847f8055513", "cast_id": 18, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 8}, {"name": "Paul Benedict", "character": "Judge Womack", "id": 41243, "credit_id": "52fe4374c3a36847f8055517", "cast_id": 19, "profile_path": "/rpFv1bKzfAYvlND1aXSTOtKX8fD.jpg", "order": 9}, {"name": "Christopher Hart", "character": "Thing", "id": 50400, "credit_id": "52fe4374c3a36847f805551b", "cast_id": 20, "profile_path": "/4PahosMIjfwAji2rBd7izqzu9yB.jpg", "order": 10}, {"name": "Jimmy Workman", "character": "Pugsley Addams", "id": 119866, "credit_id": "52fe4374c3a36847f805551f", "cast_id": 21, "profile_path": "/si15LijCxnGCSbjle6zIiUC4LE9.jpg", "order": 11}, {"name": "John Franklin", "character": "Cousin Itt", "id": 66986, "credit_id": "52fe4374c3a36847f8055523", "cast_id": 22, "profile_path": "/3IZAPwKfnn4XwtXBBn4PHRisdRf.jpg", "order": 12}, {"name": "Tony Azito", "character": "Digit Addams", "id": 119867, "credit_id": "52fe4374c3a36847f8055527", "cast_id": 23, "profile_path": "/a1kWt2wLwYEXQRFoQPvKfIUJQL5.jpg", "order": 13}, {"name": "Douglas Brian Martin", "character": "Dexter Addams", "id": 119868, "credit_id": "52fe4374c3a36847f805552b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Mercedes McNab", "character": "Girl Scout", "id": 123149, "credit_id": "54dd82a5925141027c00074c", "cast_id": 28, "profile_path": "/6lZx80GFjfkBbjeKEZoe1261uNs.jpg", "order": 15}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe4374c3a36847f80554bf", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.5, "runtime": 99}, "83770": {"poster_path": "/uORuwLgdDFkA4BuU9b9nuhTkuy.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8784318, "overview": "Dean and Sal are the portrait of the Beat Generation. Their search for \"It\" results in a fast paced, energetic roller coaster ride with highs and lows throughout the U.S.", "video": false, "id": 83770, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "On the Road", "tagline": "The best teacher is experience.", "vote_count": 84, "homepage": "http://www.ontheroad-themovie.com/?lang=en", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0337692", "adult": false, "backdrop_path": "/h5OB8Hj5EN6HTcqazIULYs6rQnW.jpg", "production_companies": [{"name": "SPAD Films", "id": 8372}, {"name": "MK2 Productions", "id": 9209}, {"name": "Film Four International", "id": 9210}, {"name": "Canal+", "id": 5358}, {"name": "MK2 Production", "id": 6274}, {"name": "American Zoetrope", "id": 70}, {"name": "Vanguard Films", "id": 614}], "release_date": "2012-05-22", "popularity": 0.884287393258082, "original_title": "On the Road", "budget": 25000000, "cast": [{"name": "Kristen Stewart", "character": "Marylou", "id": 37917, "credit_id": "52fe48be9251416c91096df9", "cast_id": 3, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Garrett Hedlund", "character": "Dean Moriarty", "id": 9828, "credit_id": "52fe48be9251416c91096df5", "cast_id": 2, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 1}, {"name": "Sam Riley", "character": "Sal Paradise", "id": 32987, "credit_id": "52fe48be9251416c91096df1", "cast_id": 1, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 2}, {"name": "Kirsten Dunst", "character": "Camille", "id": 205, "credit_id": "52fe48be9251416c91096dfd", "cast_id": 4, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 3}, {"name": "Tom Sturridge", "character": "Carlo Marx", "id": 90451, "credit_id": "52fe48be9251416c91096e01", "cast_id": 5, "profile_path": "/dJUgs1ypjB4Vfauq9hi64hg2oqn.jpg", "order": 4}, {"name": "Viggo Mortensen", "character": "Old Bull Lee", "id": 110, "credit_id": "52fe48be9251416c91096e05", "cast_id": 6, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 5}, {"name": "Amy Adams", "character": "Jane", "id": 9273, "credit_id": "52fe48be9251416c91096e09", "cast_id": 7, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 6}, {"name": "Alice Braga", "character": "Terry", "id": 8602, "credit_id": "52fe48be9251416c91096e0d", "cast_id": 8, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 7}, {"name": "Steve Buscemi", "character": "", "id": 884, "credit_id": "52fe48be9251416c91096e11", "cast_id": 9, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 8}, {"name": "Danny Morgan", "character": "Ed Dunkel", "id": 548120, "credit_id": "52fe48be9251416c91096e15", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Elisabeth Moss", "character": "Galatea Dunkel", "id": 32798, "credit_id": "52fe48be9251416c91096e1d", "cast_id": 12, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 10}, {"name": "Giovanna Zacar\u00edas", "character": "Puta Loca Roja", "id": 18466, "credit_id": "52fe48be9251416c91096e19", "cast_id": 11, "profile_path": "/MBMoFv0fmJ7gayFi0QC58cRt2t.jpg", "order": 11}, {"name": "Terrence Howard", "character": "Walter", "id": 18288, "credit_id": "52fe48be9251416c91096e33", "cast_id": 16, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 12}], "directors": [{"name": "Walter Salles", "department": "Directing", "job": "Director", "credit_id": "52fe48be9251416c91096e23", "profile_path": "/sqIg1ziNhNbxmAbwKY9BJ6iMUzP.jpg", "id": 8574}], "vote_average": 5.9, "runtime": 137}, "76640": {"poster_path": "/eOfpuaNcCcitHi3HOik7XFavRP4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts", "video": false, "id": 76640, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Last Stand", "tagline": "Not in his town. Not on his watch.", "vote_count": 697, "homepage": "http://www.thelaststandfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1549920", "adult": false, "backdrop_path": "/p4Xazn7f63Sqwslw8va7IqDQBki.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2013-01-12", "popularity": 1.06600656508951, "original_title": "The Last Stand", "budget": 30000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Sheriff Ray Owens", "id": 1100, "credit_id": "52fe4945c3a368484e123233", "cast_id": 2, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Agent John Bannister", "id": 2178, "credit_id": "52fe4945c3a368484e123237", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Rodrigo Santoro", "character": "Frank Martinez", "id": 17289, "credit_id": "52fe4945c3a368484e12323b", "cast_id": 4, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 2}, {"name": "Johnny Knoxville", "character": "Lewis Dinkum", "id": 9656, "credit_id": "52fe4945c3a368484e12323f", "cast_id": 5, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 3}, {"name": "Jaimie Alexander", "character": "Sarah Torrance", "id": 59817, "credit_id": "52fe4945c3a368484e123243", "cast_id": 6, "profile_path": "/vPXy9FBK272nqrJDlQX9zU57vmj.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Mike Figuerola", "id": 40481, "credit_id": "52fe4945c3a368484e123247", "cast_id": 7, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Peter Stormare", "character": "Burrell", "id": 53, "credit_id": "52fe4945c3a368484e12324b", "cast_id": 9, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 6}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Agent Ellen Richards", "id": 589162, "credit_id": "52fe4945c3a368484e123255", "cast_id": 11, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 7}, {"name": "Zach Gilford", "character": "Jerry Bailey", "id": 70303, "credit_id": "52fe4945c3a368484e123259", "cast_id": 12, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 8}, {"name": "John Patrick Amedori", "character": "Agent Mitchell", "id": 43464, "credit_id": "52fe4945c3a368484e12325d", "cast_id": 13, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 9}, {"name": "Daniel Henney", "character": "Phil Hayes", "id": 82093, "credit_id": "52fe4945c3a368484e123261", "cast_id": 14, "profile_path": "/kR4h7S7ny30HaqJpe5rv88RrKYA.jpg", "order": 10}, {"name": "Eduardo Noriega", "character": "Gabriel Cortez", "id": 17093, "credit_id": "52fe4945c3a368484e123289", "cast_id": 21, "profile_path": "/5B1D3MChVAZ5z7cypJbCbSGgDge.jpg", "order": 11}, {"name": "Christiana Leucas", "character": "Christie", "id": 1144930, "credit_id": "52fe4945c3a368484e12328d", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Harry Dean Stanton", "character": "Mr. Parson", "id": 5048, "credit_id": "52fe4945c3a368484e123291", "cast_id": 23, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 13}, {"name": "Kristen Rakes", "character": "Agent Devers", "id": 1144931, "credit_id": "52fe4945c3a368484e123295", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Diana R. Lupo", "character": "Magnet Girl", "id": 200465, "credit_id": "52fe4945c3a368484e123299", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Billy Blair", "character": "Man in Orange Suit", "id": 968889, "credit_id": "52fe4945c3a368484e12329d", "cast_id": 26, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 16}, {"name": "Titos Menchaca", "character": "Mayor", "id": 1033495, "credit_id": "52fe4945c3a368484e1232a1", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Kim Jee-woon", "department": "Directing", "job": "Director", "credit_id": "52fe4945c3a368484e123251", "profile_path": "/tqZ0HprSHXrxGC4V7R4uA1BCLM4.jpg", "id": 543568}], "vote_average": 5.6, "runtime": 107}, "109410": {"poster_path": "/vlP18ooLmvYVNnqidbot0FupY05.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94380428, "overview": "\"42\" is the powerful story of Jackie Robinson, the legendary baseball player who broke Major League Baseball's color barrier when he joined the roster of the Brooklyn Dodgers. The film follows the innovative Dodger's general manager Branch Rickey, the MLB executive who first signed Robinson to the minors and then helped to bring him up to the show.", "video": false, "id": 109410, "genres": [{"id": 18, "name": "Drama"}], "title": "42", "tagline": "The True Story Of An American Legend", "vote_count": 524, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453562", "adult": false, "backdrop_path": "/d9PybHYHlthumdJSTCXN1cmRsjF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2013-04-12", "popularity": 1.14893801793666, "original_title": "42", "budget": 40000000, "cast": [{"name": "Chadwick Boseman", "character": "Jackie Robinson", "id": 172069, "credit_id": "52fe4ab2c3a36847f81dcdfb", "cast_id": 19, "profile_path": "/xE2sR6skskfCmbVKkebbDXSURiT.jpg", "order": 0}, {"name": "T.R. Knight", "character": "Harold Parrott", "id": 164205, "credit_id": "52fe4ab2c3a36847f81dcde3", "cast_id": 13, "profile_path": "/aaeEWrTdZnLWrqdFdgnexMunBDx.jpg", "order": 1}, {"name": "Harrison Ford", "character": "Branch Rickey", "id": 3, "credit_id": "52fe4ab2c3a36847f81dcdd7", "cast_id": 9, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 2}, {"name": "Nicole Beharie", "character": "Rachel Isum", "id": 87243, "credit_id": "52fe4ab2c3a36847f81dcdf7", "cast_id": 18, "profile_path": "/9HiTyj5xHy6uLnbYE1TngB2ausz.jpg", "order": 3}, {"name": "Christopher Meloni", "character": "Leo Durocher", "id": 22227, "credit_id": "52fe4ab2c3a36847f81dcddb", "cast_id": 10, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 4}, {"name": "John C. McGinley", "character": "Red Barber", "id": 11885, "credit_id": "52fe4ab2c3a36847f81dcddf", "cast_id": 12, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 5}, {"name": "Ryan Merriman", "character": "Dixie Walker", "id": 57136, "credit_id": "52fe4ab2c3a36847f81dcde7", "cast_id": 14, "profile_path": "/sdo2IMtBRjiIJOLpmBrebAJaF89.jpg", "order": 6}, {"name": "Jud Tylor", "character": "Laraine Day", "id": 169476, "credit_id": "52fe4ab2c3a36847f81dcdeb", "cast_id": 15, "profile_path": "/xlaYPWHpEkZP1X5C1ZuFyds3yAk.jpg", "order": 7}, {"name": "Brett Cullen", "character": "Clay Hopper", "id": 16841, "credit_id": "52fe4ab2c3a36847f81dcdef", "cast_id": 16, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 8}, {"name": "Brad Beyer", "character": "Kirby Higbe", "id": 19227, "credit_id": "52fe4ab2c3a36847f81dcdf3", "cast_id": 17, "profile_path": "/1yrzFDWNOxM75obKSe1744oQf2h.jpg", "order": 9}, {"name": "Lucas Black", "character": "Pee Wee Reese", "id": 155, "credit_id": "52fe4ab2c3a36847f81dcdff", "cast_id": 20, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 10}, {"name": "Andre Holland", "character": "Wendell Smith", "id": 459980, "credit_id": "52fe4ab2c3a36847f81dce03", "cast_id": 21, "profile_path": "/nq6qk6P5idimcSJ0bpFqLQrb0Li.jpg", "order": 11}, {"name": "Alan Tudyk", "character": "Ben Chapman", "id": 21088, "credit_id": "52fe4ab2c3a36847f81dce07", "cast_id": 22, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 12}, {"name": "Hamish Linklater", "character": "Ralph Branca", "id": 184581, "credit_id": "52fe4ab2c3a36847f81dce0b", "cast_id": 23, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 13}, {"name": "James Pickens Jr.", "character": "Mr. Brock", "id": 25544, "credit_id": "52fe4ab2c3a36847f81dce0f", "cast_id": 24, "profile_path": "/wKuyPcNtK73AdWabMyIjbuPAS6G.jpg", "order": 14}, {"name": "Gino Anthony Pesi", "character": "Joe Garagiola", "id": 150664, "credit_id": "52fe4ab2c3a36847f81dce13", "cast_id": 25, "profile_path": "/4Ai4t02qQfC5XhvcL3u7Th7lW2o.jpg", "order": 15}, {"name": "Kelley Jakle", "character": "Alice", "id": 1107298, "credit_id": "52fe4ab2c3a36847f81dce17", "cast_id": 26, "profile_path": null, "order": 16}], "directors": [{"name": "Brian Helgeland", "department": "Directing", "job": "Director", "credit_id": "52fe4ab2c3a36847f81dcda9", "profile_path": "/oJrbZ6efL7CalCeypRyusRbHzPF.jpg", "id": 4723}], "vote_average": 6.7, "runtime": 128}, "109414": {"poster_path": "/1rMzHyOsk1b1ddcFJgMSB6kOASu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101470202, "overview": "While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.", "video": false, "id": 109414, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "This Is the End", "tagline": "Nothing ruins a party like the end of the world.", "vote_count": 975, "homepage": "http://www.thisistheend.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1245492", "adult": false, "backdrop_path": "/hkuPAYz0TstcAquVpibaDnADqQS.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mandate Pictures", "id": 771}, {"name": "Point Grey Pictures", "id": 16615}, {"name": "Sony Pictures Entertainment (SPE)", "id": 7431}], "release_date": "2013-06-12", "popularity": 2.70444670650157, "original_title": "This Is the End", "budget": 32000000, "cast": [{"name": "James Franco", "character": "James Franco", "id": 17051, "credit_id": "52fe4ab2c3a36847f81dcf33", "cast_id": 14, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Jonah Hill", "id": 21007, "credit_id": "52fe4ab2c3a36847f81dcf2f", "cast_id": 13, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Seth Rogen", "character": "Seth Rogen", "id": 19274, "credit_id": "52fe4ab2c3a36847f81dcf43", "cast_id": 18, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Jay Baruchel", "id": 449, "credit_id": "52fe4ab2c3a36847f81dcf47", "cast_id": 19, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Danny McBride", "character": "Danny McBride", "id": 62862, "credit_id": "52fe4ab2c3a36847f81dcf5b", "cast_id": 26, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 4}, {"name": "Craig Robinson", "character": "Craig Robinson", "id": 64342, "credit_id": "52fe4ab2c3a36847f81dcf5f", "cast_id": 28, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 5}, {"name": "Michael Cera", "character": "Michael Cera", "id": 39995, "credit_id": "52fe4ab2c3a36847f81dcf63", "cast_id": 29, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 6}, {"name": "Emma Watson", "character": "Emma Watson", "id": 10990, "credit_id": "52fe4ab2c3a36847f81dcf3b", "cast_id": 16, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 7}, {"name": "Mindy Kaling", "character": "Mindy Kaling", "id": 125167, "credit_id": "52fe4ab2c3a36847f81dcf57", "cast_id": 25, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 8}, {"name": "David Krumholtz", "character": "David Krumholtz", "id": 38582, "credit_id": "52fe4ab2c3a36847f81dcf4f", "cast_id": 22, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 9}, {"name": "Christopher Mintz-Plasse", "character": "Christopher Mintz-Plasse", "id": 54691, "credit_id": "52fe4ab2c3a36847f81dcf67", "cast_id": 30, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 10}, {"name": "Rihanna", "character": "Rihanna", "id": 131519, "credit_id": "52fe4ab2c3a36847f81dcf37", "cast_id": 15, "profile_path": "/ssguCAeEMq74FS2ICMJ3Q9Wy7Bf.jpg", "order": 11}, {"name": "Martin Starr", "character": "Martin Starr", "id": 41089, "credit_id": "52fe4ab2c3a36847f81dcf53", "cast_id": 24, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 12}, {"name": "Paul Rudd", "character": "Paul Rudd", "id": 22226, "credit_id": "52fe4ab2c3a36847f81dcf6b", "cast_id": 31, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 13}, {"name": "Channing Tatum", "character": "Channing Tatum", "id": 38673, "credit_id": "52fe4ab2c3a36847f81dcf6f", "cast_id": 33, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 14}, {"name": "Kevin Hart", "character": "Kevin Hart", "id": 55638, "credit_id": "52fe4ab2c3a36847f81dcfc1", "cast_id": 47, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 15}, {"name": "Aziz Ansari", "character": "Aziz Ansari", "id": 86626, "credit_id": "52fe4ab2c3a36847f81dcf4b", "cast_id": 21, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 16}, {"name": "Jason Segel", "character": "Jason Segel", "id": 41088, "credit_id": "52fe4ab2c3a36847f81dcf3f", "cast_id": 17, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 17}, {"name": "Nick Carter", "character": "", "id": 82602, "credit_id": "55221a0ec3a368345300260a", "cast_id": 50, "profile_path": "/EwGA9BeBp31GxS6ZzHnOIMFGVZ.jpg", "order": 18}, {"name": "Kevin Richardson", "character": "", "id": 154013, "credit_id": "55221a1fc3a3684dd4005186", "cast_id": 51, "profile_path": "/qwEW7VuGm1u5TK65dHSxdVyaQxc.jpg", "order": 19}, {"name": "A.J. McLean", "character": "", "id": 82603, "credit_id": "55221a26c3a36812ee003eef", "cast_id": 52, "profile_path": "/tn4fzkG0Ql5R7rxIuH9efE4gLYl.jpg", "order": 20}, {"name": "Howie Dorough", "character": "", "id": 82604, "credit_id": "55221a2e92514171cb002405", "cast_id": 53, "profile_path": "/9s8RdbOLuNZzVvT1l8JObo9ylIT.jpg", "order": 21}, {"name": "Brian Littrell", "character": "", "id": 82601, "credit_id": "55221a399251417be2003cf9", "cast_id": 54, "profile_path": "/kBq06Z5G4OurfYVqs3QuznEw6j5.jpg", "order": 22}], "directors": [{"name": "Seth Rogen", "department": "Directing", "job": "Director", "credit_id": "52fe4ab2c3a36847f81dcefb", "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "id": 19274}, {"name": "Evan Goldberg", "department": "Directing", "job": "Director", "credit_id": "52fe4ab2c3a36847f81dcf01", "profile_path": "/evgasY3JkcPEyQ1Jqz5BHCxb5oc.jpg", "id": 54734}], "vote_average": 6.3, "runtime": 107}, "11113": {"poster_path": "/AiyysCDn0l5SHO5dTGHsrKjPBN8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72000000, "overview": "A misogynistic and snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.", "video": false, "id": 11113, "genres": [{"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "My Fair Lady", "tagline": "The loverliest motion picture of them all!", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0058385", "adult": false, "backdrop_path": "/soKwqxI1j5rNkVfDeuarmTHetcH.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1964-10-21", "popularity": 1.0183957652015, "original_title": "My Fair Lady", "budget": 17000000, "cast": [{"name": "Audrey Hepburn", "character": "Eliza Doolittle", "id": 1932, "credit_id": "52fe43fb9251416c75024eab", "cast_id": 1, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 0}, {"name": "Rex Harrison", "character": "Professor Henry Higgins", "id": 35321, "credit_id": "52fe43fb9251416c75024eaf", "cast_id": 2, "profile_path": "/4kwLkcMGpOolb9eGx9v4RaD36Ng.jpg", "order": 1}, {"name": "Stanley Holloway", "character": "Alfred P. Doolittle", "id": 12727, "credit_id": "52fe43fb9251416c75024eb3", "cast_id": 3, "profile_path": "/gUjzJmb2xupsq0GATfNHUApSUm3.jpg", "order": 2}, {"name": "Wilfrid Hyde-White", "character": "Colonel Hugh Pickering", "id": 15387, "credit_id": "52fe43fb9251416c75024eb7", "cast_id": 4, "profile_path": "/kqMDVX6MR0wRAFWO85M0geJPFHV.jpg", "order": 3}, {"name": "Gladys Cooper", "character": "Mrs. Higgins", "id": 3366, "credit_id": "538e0730c3a368713f005282", "cast_id": 14, "profile_path": "/muj0IC75UJn841IME4LILMMFwtc.jpg", "order": 4}, {"name": "Jeremy Brett", "character": "Freddy Eynsford-Hill", "id": 140914, "credit_id": "538e073fc3a3687143005101", "cast_id": 15, "profile_path": "/xIxerBymUzzEkxNq0YlF0HdfRid.jpg", "order": 5}, {"name": "Theodore Bikel", "character": "Zoltan Karpathy", "id": 6609, "credit_id": "538e074cc3a368714e0053aa", "cast_id": 16, "profile_path": "/4HM8869sjfCNKVnOgADBAh4eWU3.jpg", "order": 6}, {"name": "Mona Washbourne", "character": "Mrs. Pearce", "id": 89895, "credit_id": "538e0757c3a36871550051ce", "cast_id": 17, "profile_path": "/dYMq56N0O2r1zHM2qJ1ir4FyyIb.jpg", "order": 7}, {"name": "Isobel Elsom", "character": "Mrs. Eynsford- Hill", "id": 95263, "credit_id": "538e0763c3a368713f00528b", "cast_id": 18, "profile_path": "/k7C1YSVRbTp33QebdDEfqMgGBiy.jpg", "order": 8}, {"name": "John Holland", "character": "Butler", "id": 126656, "credit_id": "538e076cc3a36871550051d2", "cast_id": 19, "profile_path": null, "order": 9}], "directors": [{"name": "George Cukor", "department": "Directing", "job": "Director", "credit_id": "52fe43fb9251416c75024ebd", "profile_path": "/t2RWv3nzCoqKWYiCGCjwiIHW4Sj.jpg", "id": 14674}], "vote_average": 7.3, "runtime": 170}, "35690": {"poster_path": "/90ICc0MXgDgTtWD3qfA1BfkA21t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A drama centered on a rebellious girl who is sent to a Southern beach town for the summer to stay with her father. Through their mutual love of music, the estranged duo learn to reconnect.", "video": false, "id": 35690, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Last Song", "tagline": "A story about family, first love, second chances and the moment in life that lead you back home.", "vote_count": 140, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1294226", "adult": false, "backdrop_path": "/vlsf3SDSNqMtnirDSX17lLGIh2d.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2010-03-31", "popularity": 0.974100605219012, "original_title": "The Last Song", "budget": 0, "cast": [{"name": "Miley Cyrus", "character": "Ronnie Miller", "id": 76594, "credit_id": "52fe45b09251416c9103af59", "cast_id": 5, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Steve Miller", "id": 17141, "credit_id": "52fe45b09251416c9103af5d", "cast_id": 6, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Bobby Coleman", "character": "Jonah Miller", "id": 41308, "credit_id": "52fe45b09251416c9103af61", "cast_id": 7, "profile_path": "/gayxsFfMHH8GW1EfzXtqcevLzve.jpg", "order": 2}, {"name": "Liam Hemsworth", "character": "Will Blakelee", "id": 96066, "credit_id": "52fe45b09251416c9103af65", "cast_id": 8, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 3}, {"name": "Hallock Beals", "character": "Scott", "id": 114599, "credit_id": "52fe45b09251416c9103af69", "cast_id": 9, "profile_path": "/cp8qmpaKnm6wHmWEgLqwJruIn3c.jpg", "order": 4}, {"name": "Kelly Preston", "character": "Kim", "id": 11164, "credit_id": "52fe45b09251416c9103af6d", "cast_id": 10, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 5}, {"name": "Nick Lashaway", "character": "Marcus", "id": 114600, "credit_id": "52fe45b09251416c9103af71", "cast_id": 11, "profile_path": "/85QB6H3EnmrGoIvDZ2V8FFwie2j.jpg", "order": 6}, {"name": "Carly Chaikin", "character": "Blaze", "id": 114601, "credit_id": "52fe45b09251416c9103af75", "cast_id": 12, "profile_path": "/yNtb4RxjMWxKzPuUg1MIYrTJ9vf.jpg", "order": 7}, {"name": "Kate Vernon", "character": "Susan Blakelee", "id": 19740, "credit_id": "52fe45b09251416c9103af79", "cast_id": 13, "profile_path": "/qQRoxwIVkRU0al9J2EUDBSD80kq.jpg", "order": 8}, {"name": "Melissa Ordway", "character": "Ashley", "id": 114602, "credit_id": "52fe45b09251416c9103af7d", "cast_id": 14, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 9}, {"name": "Nick Searcy", "character": "Tom Blakelee", "id": 12538, "credit_id": "52fe45b09251416c9103af81", "cast_id": 15, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 10}, {"name": "Adam Barnett", "character": "Teddy", "id": 114603, "credit_id": "52fe45b09251416c9103af85", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Brandon Cyrus", "character": "Volleyball Guy", "id": 1329572, "credit_id": "53973605c3a368642300602a", "cast_id": 17, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 12}], "directors": [{"name": "Julie Anne Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe45b09251416c9103af43", "profile_path": "/6NBh5K9k5OV3RoU458RajwLjqOi.jpg", "id": 114597}], "vote_average": 6.7, "runtime": 107}, "2924": {"poster_path": "/iApcM7uzI0oHk4cxHhg5BqZzShh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152368585, "overview": "They say a blast of flames can take a life ... and hide a secret. But now firemen brothers Brian and Stephen McCaffrey are battling each other over past slights while trying to stop an arsonist with a diabolical agenda from torching Chicago.", "video": false, "id": 2924, "genres": [{"id": 12, "name": "Adventure"}], "title": "Backdraft", "tagline": "Silently behind a door, it waits.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101393", "adult": false, "backdrop_path": "/iosYFI66bhoB5uC27qvIejrEvJu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Trilogy Entertainment Group", "id": 2231}, {"name": "Imagine Films Entertainment", "id": 11262}], "release_date": "1991-05-24", "popularity": 1.46245176687872, "original_title": "Backdraft", "budget": 75000000, "cast": [{"name": "Kurt Russell", "character": "Dennis McCaffrey", "id": 6856, "credit_id": "52fe4374c3a36847f8055921", "cast_id": 3, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Donald Rimgale", "id": 380, "credit_id": "52fe4375c3a36847f8055925", "cast_id": 4, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Ronald Bartel", "id": 55636, "credit_id": "52fe4375c3a36847f8055929", "cast_id": 5, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "William Baldwin", "character": "Brian McCaffrey", "id": 13021, "credit_id": "52fe4375c3a36847f805592d", "cast_id": 6, "profile_path": "/wQjXdPYT524QJ0YqKrjPcZWfkHu.jpg", "order": 3}, {"name": "Jennifer Jason Leigh", "character": "Jennifer Vaitkus", "id": 10431, "credit_id": "52fe4375c3a36847f8055931", "cast_id": 7, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 4}, {"name": "Scott Glenn", "character": "John 'Axe' Adcox", "id": 349, "credit_id": "52fe4375c3a36847f8055935", "cast_id": 8, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 5}, {"name": "Rebecca De Mornay", "character": "Helen McCaffrey", "id": 28412, "credit_id": "52fe4375c3a36847f8055939", "cast_id": 9, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 6}, {"name": "Jason Gedrick", "character": "Tim Kirzminski", "id": 48012, "credit_id": "52fe4375c3a36847f805593d", "cast_id": 10, "profile_path": "/jjmmSmluDOdXAZpAqsYUQcX7qOl.jpg", "order": 7}, {"name": "J. T. Walsh", "character": "Alderman Marty Swayzak", "id": 22131, "credit_id": "52fe4375c3a36847f8055941", "cast_id": 11, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 8}, {"name": "Anthony Mockus Sr.", "character": "Chief John Fitzgerald", "id": 83197, "credit_id": "52fe4375c3a36847f8055945", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Cedric Young", "character": "Grindle", "id": 156598, "credit_id": "52fe4375c3a36847f8055949", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Juan Ram\u00edrez", "character": "Ray Santos", "id": 148306, "credit_id": "52fe4375c3a36847f805594d", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Kevin Casey", "character": "Nightingale", "id": 987107, "credit_id": "52fe4375c3a36847f8055951", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jack McGee", "character": "Schmidt", "id": 10489, "credit_id": "52fe4375c3a36847f8055955", "cast_id": 16, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 13}, {"name": "Mark Wheeler", "character": "Pengelly", "id": 152718, "credit_id": "52fe4375c3a36847f8055959", "cast_id": 17, "profile_path": "/5Sx48iaEVE5G4OktUcZ1sJHePeE.jpg", "order": 14}, {"name": "Ryan Goldstein", "character": "Brian, Age 7", "id": 1107987, "credit_id": "52fe4375c3a36847f80559a5", "cast_id": 30, "profile_path": "/wqpzKnYuTGuj2KBhvTZRbtBtUgF.jpg", "order": 15}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4374c3a36847f805591d", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.2, "runtime": 137}, "109421": {"poster_path": "/ttD69Yhh2BV1WVqr27NRbF8ubOW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32086041, "overview": "A woman turns to prescription medication as a way of handling her anxiety concerning her husband's upcoming release from prison.", "video": false, "id": 109421, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Side Effects", "tagline": "One pill can change your life.", "vote_count": 702, "homepage": "http://www.sideeffectsmayvary.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2053463", "adult": false, "backdrop_path": "/nG2QqzTAmfNsD33ltFIrhErJQh9.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Endgame Entertainment", "id": 1205}], "release_date": "2013-02-08", "popularity": 0.980201184373569, "original_title": "Side Effects", "budget": 30000000, "cast": [{"name": "Rooney Mara", "character": "Emily Taylor", "id": 108916, "credit_id": "52fe4ab4c3a36847f81dd449", "cast_id": 13, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 0}, {"name": "Jude Law", "character": "Jonathan Banks", "id": 9642, "credit_id": "52fe4ab4c3a36847f81dd44d", "cast_id": 14, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Channing Tatum", "character": "Martin Taylor", "id": 38673, "credit_id": "52fe4ab4c3a36847f81dd445", "cast_id": 12, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 2}, {"name": "Catherine Zeta-Jones", "character": "Dr. Victoria Siebert", "id": 1922, "credit_id": "52fe4ab4c3a36847f81dd451", "cast_id": 15, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 3}, {"name": "Vinessa Shaw", "character": "Dierdre Banks", "id": 5025, "credit_id": "52fe4ab4c3a36847f81dd455", "cast_id": 16, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 4}, {"name": "David Costabile", "character": "Carl Millbank", "id": 82167, "credit_id": "52fe4ab4c3a36847f81dd459", "cast_id": 17, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 5}, {"name": "Polly Draper", "character": "Eileen Spicer", "id": 114470, "credit_id": "52fe4ab4c3a36847f81dd45d", "cast_id": 18, "profile_path": "/1zViE8Kn2i6Idg2uOMJOnptRwnj.jpg", "order": 6}, {"name": "Andrea Bogart", "character": "Tracey Sutton", "id": 39171, "credit_id": "52fe4ab4c3a36847f81dd461", "cast_id": 19, "profile_path": "/1DLKPdD96Rb6lagQctq8eDjGqsb.jpg", "order": 7}, {"name": "Mamie Gummer", "character": "Kayla", "id": 47281, "credit_id": "52fe4ab4c3a36847f81dd465", "cast_id": 22, "profile_path": "/ptz8SYBGt8XJlH6m7pjqhQMr6D3.jpg", "order": 8}, {"name": "Ann Dowd", "character": "Martin's Mother", "id": 43366, "credit_id": "52fe4ab4c3a36847f81dd469", "cast_id": 23, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 9}, {"name": "Peter Friedman", "character": "Banks' Partner #1", "id": 54246, "credit_id": "52fe4ab4c3a36847f81dd46d", "cast_id": 24, "profile_path": "/1plom5G0I425wj8l8xXhnvaFcPs.jpg", "order": 10}, {"name": "Carmen Pelaez", "character": "Prison Desk Guard", "id": 103373, "credit_id": "52fe4ab4c3a36847f81dd47d", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Marin Ireland", "character": "Upset Visitor", "id": 164094, "credit_id": "52fe4ab4c3a36847f81dd481", "cast_id": 28, "profile_path": "/wtoGyUBq04qGjEEB9OHFBBOggVJ.jpg", "order": 12}, {"name": "James Martinez", "character": "Police Officer at the Hospital", "id": 104482, "credit_id": "52fe4ab4c3a36847f81dd485", "cast_id": 29, "profile_path": "/x9lfg8FS25BASd8woEkoM94HHvV.jpg", "order": 13}, {"name": "Vladimi Versailles", "character": "Augustin", "id": 1005939, "credit_id": "52fe4ab4c3a36847f81dd489", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Michelle Vergara Moore", "character": "Joan", "id": 1271790, "credit_id": "52fe4ab4c3a36847f81dd48d", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Victor Cruz", "character": "NYPD Officer Beahan", "id": 979216, "credit_id": "52fe4ab4c3a36847f81dd491", "cast_id": 32, "profile_path": "/aDn5Kxft6FcK9fxmgf7oxGSpHaJ.jpg", "order": 16}, {"name": "Mitchell Michaeliszyn", "character": "Ezra Banks", "id": 1271791, "credit_id": "52fe4ab4c3a36847f81dd495", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Michael Nathanson", "character": "Assistant District Attorney", "id": 995514, "credit_id": "52fe4ab4c3a36847f81dd499", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Timothy Klein", "character": "Transporting Officer Kevin", "id": 1045969, "credit_id": "52fe4ab4c3a36847f81dd49d", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Sheila Tapia", "character": "Emily's Attorney", "id": 1046157, "credit_id": "52fe4ab4c3a36847f81dd4a1", "cast_id": 36, "profile_path": null, "order": 20}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4ab4c3a36847f81dd405", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.1, "runtime": 106}, "109424": {"poster_path": "/AnMTMPTUzeWNbYxzp29WqYf1br1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95000000, "overview": "The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.", "video": false, "id": 109424, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Captain Phillips", "tagline": "Out here survival is everything.", "vote_count": 924, "homepage": "http://www.captainphillipsmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "so", "name": "Somali"}], "imdb_id": "tt1535109", "adult": false, "backdrop_path": "/w0RHju6nGeLhj1Ryb7mqf5xCbtG.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "Trigger Street Productions", "id": 11801}], "release_date": "2013-10-11", "popularity": 2.08116008711726, "original_title": "Captain Phillips", "budget": 55000000, "cast": [{"name": "Tom Hanks", "character": "Captain Richard Phillips", "id": 31, "credit_id": "52fe4ab5c3a36847f81dd51d", "cast_id": 10, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Andrea Phillips", "id": 2229, "credit_id": "52fe4ab5c3a36847f81dd521", "cast_id": 11, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "Max Martini", "character": "SEAL Commander", "id": 94864, "credit_id": "52fe4ab5c3a36847f81dd525", "cast_id": 12, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 2}, {"name": "Chris Mulkey", "character": "John Cronan", "id": 15824, "credit_id": "52fe4ab5c3a36847f81dd529", "cast_id": 13, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 3}, {"name": "Yul Vazquez", "character": "Captain Frank Castellano", "id": 75604, "credit_id": "52fe4ab5c3a36847f81dd52d", "cast_id": 14, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 4}, {"name": "Corey Johnson", "character": "Ken Quinn", "id": 17199, "credit_id": "52fe4ab5c3a36847f81dd531", "cast_id": 15, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 5}, {"name": "David Warshofsky", "character": "Mike Perry", "id": 37204, "credit_id": "52fe4ab5c3a36847f81dd535", "cast_id": 16, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 6}, {"name": "John Magaro", "character": "Dan Phillips", "id": 37154, "credit_id": "52fe4ab5c3a36847f81dd539", "cast_id": 17, "profile_path": "/v1SUpbMcu46dRBACoTnzkdfBgIn.jpg", "order": 7}, {"name": "Michael Chernus", "character": "Shane Murphy", "id": 87070, "credit_id": "52fe4ab5c3a36847f81dd53d", "cast_id": 18, "profile_path": "/z3H7if45AI2bpT98m5geAXdlrSV.jpg", "order": 8}, {"name": "Barkhad Abdi", "character": "Muse", "id": 1261694, "credit_id": "52fe4ab5c3a36847f81dd545", "cast_id": 20, "profile_path": "/bF7mXBHfGZWVi5OyfWAqLhfd8F0.jpg", "order": 9}, {"name": "Faysal Ahmed", "character": "Najee", "id": 1266858, "credit_id": "52fe4ab5c3a36847f81dd549", "cast_id": 21, "profile_path": "/hpziqMCwFZopAZ4me3S7l21BZ0f.jpg", "order": 10}, {"name": "Barkhad Abdirahman", "character": "Bilal", "id": 1266859, "credit_id": "52fe4ab5c3a36847f81dd54d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Mahat M. Ali", "character": "Elmi", "id": 1266862, "credit_id": "52fe4ab5c3a36847f81dd551", "cast_id": 23, "profile_path": "/A11hg1ZViMugGJFq8pmiTpc1Wbv.jpg", "order": 12}, {"name": "Angus MacInnes", "character": "Maersk Alabama Crew", "id": 58475, "credit_id": "52fe4ab5c3a36847f81dd541", "cast_id": 19, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 13}, {"name": "San Shella", "character": "Maersk Alabama Crew", "id": 203541, "credit_id": "53ac0ecf0e0a267616001d18", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Amr El-Bayoumi", "character": "Maersk Alabama Crew", "id": 1323776, "credit_id": "53ac0f060e0a267612001bed", "cast_id": 42, "profile_path": "/yRsJPhtk29pvA81GEzg0CfkRGde.jpg", "order": 15}, {"name": "Azeez Mohammed", "character": "Pirate Leader", "id": 1334464, "credit_id": "53ac0fd00e0a267625001e65", "cast_id": 43, "profile_path": null, "order": 16}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe4ab4c3a36847f81dd4ef", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 7.8, "runtime": 134}, "109428": {"poster_path": "/3m2YYPmPSIFtAEQyU6mto67SpG5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97542952, "overview": "Evil Dead, the fourth installment of the Evil Dead franchise, serving as both a reboot and as a loose continuation of the series, features Mia, a young woman struggling with sobriety, heads to a remote cabin with a group of friends where the discovery of a Book of the Dead unwittingly summon up dormant demons which possess the youngsters one by one.", "video": false, "id": 109428, "genres": [{"id": 27, "name": "Horror"}], "title": "Evil Dead", "tagline": "The most terrifying film you will ever experience.", "vote_count": 895, "homepage": "http://www.evildead-movie.com/", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1288558", "adult": false, "backdrop_path": "/6sIvoRBrX6YqCFquQ6sKMUQN9qX.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "FilmDistrict", "id": 7263}, {"name": "Ghost House Pictures", "id": 768}], "release_date": "2013-04-05", "popularity": 1.30381888459992, "original_title": "Evil Dead", "budget": 17000000, "cast": [{"name": "Jane Levy", "character": "Mia", "id": 530618, "credit_id": "52fe4ab5c3a36847f81dd661", "cast_id": 12, "profile_path": "/5mHf6oyQGcSi5YXA95Gi2em8Sha.jpg", "order": 0}, {"name": "Jessica Lucas", "character": "Olivia", "id": 51989, "credit_id": "52fe4ab5c3a36847f81dd665", "cast_id": 13, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 1}, {"name": "Shiloh Fernandez", "character": "David", "id": 79795, "credit_id": "52fe4ab5c3a36847f81dd669", "cast_id": 14, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 2}, {"name": "Lou Taylor Pucci", "character": "Eric", "id": 17441, "credit_id": "52fe4ab5c3a36847f81dd66d", "cast_id": 15, "profile_path": "/bl2iZAdBRjq9I7LhZTmxfxKdNcQ.jpg", "order": 3}, {"name": "Elizabeth Blackmore", "character": "Natalie", "id": 1046233, "credit_id": "52fe4ab5c3a36847f81dd671", "cast_id": 16, "profile_path": "/gCJqH1ATAUs6EjAe2A4m9NuSxHS.jpg", "order": 4}, {"name": "Rupert Degas", "character": "Demon (voice)", "id": 211412, "credit_id": "54f72d0b9251416ee400162d", "cast_id": 57, "profile_path": "/8ONoi0l5Np7AZzczk3ddnsVcXq9.jpg", "order": 5}, {"name": "Jim McLarty", "character": "Harold", "id": 196780, "credit_id": "54f72d2ac3a3683a6900214f", "cast_id": 58, "profile_path": null, "order": 6}], "directors": [{"name": "Fede Alvarez", "department": "Directing", "job": "Director", "credit_id": "52fe4ab5c3a36847f81dd639", "profile_path": "/dFlExxHuo6hl3GbNM8gisSsGp9P.jpg", "id": 932248}], "vote_average": 6.2, "runtime": 90}, "8681": {"poster_path": "/q2ufZ5zgbyvwSVR9J5wR6nEAEyy.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 226830568, "overview": "While vacationing with a friend in Paris, an American girl is kidnapped by a gang of human traffickers intent on selling her into forced prostitution. Working against the clock, her ex-spy father must pull out all the stops to save her. But with his best years possibly behind him, the job may be more than he can handle.", "video": false, "id": 8681, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Taken", "tagline": "They took his daughter. He'll take their lives.", "vote_count": 1893, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hO1R1TI429PjkOjby4dTPBrWFwn.jpg", "poster_path": "/4PNFiSaJWvWhkdOw0KF9Vf7v3gC.jpg", "id": 135483, "name": "Taken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "sq", "name": "shqip"}], "imdb_id": "tt0936501", "adult": false, "backdrop_path": "/lcqVBBirzzX520AyOK3k7kXBDJ6.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "EuropaCorp", "id": 6896}, {"name": "M6 Films", "id": 1115}, {"name": "Grive Productions", "id": 6877}, {"name": "Canal+", "id": 5358}, {"name": "TPS Star", "id": 6586}, {"name": "M6", "id": 11261}, {"name": "All Pictures Media", "id": 23614}], "release_date": "2008-09-25", "popularity": 3.06632550294664, "original_title": "Taken", "budget": 25000000, "cast": [{"name": "Liam Neeson", "character": "Bryan", "id": 3896, "credit_id": "52fe44b4c3a36847f80a546b", "cast_id": 1, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Famke Janssen", "character": "Lenore", "id": 10696, "credit_id": "52fe44b4c3a36847f80a546f", "cast_id": 2, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 1}, {"name": "Maggie Grace", "character": "Kim", "id": 11825, "credit_id": "52fe44b4c3a36847f80a54ab", "cast_id": 13, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 2}, {"name": "Katie Cassidy", "character": "Amanda", "id": 55775, "credit_id": "52fe44b4c3a36847f80a54a3", "cast_id": 11, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 3}, {"name": "Holly Valance", "character": "La chanteuse", "id": 55776, "credit_id": "52fe44b4c3a36847f80a54a7", "cast_id": 12, "profile_path": "/vxy32d9cFizzYY5Xi6MefOu3P10.jpg", "order": 4}, {"name": "Xander Berkeley", "character": "Stuart", "id": 3982, "credit_id": "52fe44b4c3a36847f80a54af", "cast_id": 14, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 5}, {"name": "Olivier Rabourdin", "character": "Jean-Claude", "id": 49278, "credit_id": "52fe44b4c3a36847f80a54b3", "cast_id": 16, "profile_path": "/6txdehoOPpGllEsU31WnBkvgRJa.jpg", "order": 6}, {"name": "Leland Orser", "character": "Sam", "id": 2221, "credit_id": "52fe44b4c3a36847f80a54b7", "cast_id": 17, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 7}, {"name": "Jon Gries", "character": "Casey", "id": 9629, "credit_id": "52fe44b4c3a36847f80a54bb", "cast_id": 18, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 8}, {"name": "Camille Japy", "character": "Isabelle", "id": 35893, "credit_id": "52fe44b4c3a36847f80a54bf", "cast_id": 19, "profile_path": "/xbR1gFPNIAF1Jq0zpYECYxcLYA4.jpg", "order": 9}, {"name": "David Warshofsky", "character": "Bernie", "id": 37204, "credit_id": "52fe44b4c3a36847f80a54c3", "cast_id": 20, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 10}, {"name": "Goran Kosti\u0107", "character": "Gregor", "id": 44736, "credit_id": "52fe44b4c3a36847f80a54c7", "cast_id": 21, "profile_path": "/3L0bBollvrXMH7BcuUKpcMue8Lo.jpg", "order": 11}, {"name": "Radivoje Bukvi\u0107", "character": "Anton", "id": 230400, "credit_id": "52fe44b4c3a36847f80a54cb", "cast_id": 22, "profile_path": "/aiTCplxQF67wOASBAdHGp7fhZ6U.jpg", "order": 12}, {"name": "Nicolas Giraud", "character": "Peter", "id": 143389, "credit_id": "52fe44b4c3a36847f80a54cf", "cast_id": 23, "profile_path": "/gTiPcKYypU2YWaMxrn2wRi8giCQ.jpg", "order": 13}, {"name": "G\u00e9rard Watkins", "character": "Saint-Clair", "id": 49947, "credit_id": "52fe44b4c3a36847f80a54d3", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Arben Bajraktaraj", "character": "Marko", "id": 234921, "credit_id": "52fe44b4c3a36847f80a54d7", "cast_id": 25, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 15}, {"name": "Jalil Naciri", "character": "Ali", "id": 562155, "credit_id": "52fe44b4c3a36847f80a54db", "cast_id": 26, "profile_path": "/4o1rYCIO9R13B9XbgFDw1Zh1m1P.jpg", "order": 16}, {"name": "Affif Ben Badra", "character": "", "id": 54807, "credit_id": "52fe44b4c3a36847f80a54df", "cast_id": 27, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 17}], "directors": [{"name": "Pierre Morel", "department": "Directing", "job": "Director", "credit_id": "52fe44b4c3a36847f80a5475", "profile_path": "/yyhcEUYW4znC6JbNKZv2OJp1Cy0.jpg", "id": 35453}], "vote_average": 7.0, "runtime": 93}, "11130": {"poster_path": "/eu79w5ekffqqzxxwBdaxVPiURwB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95149435, "overview": "Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Her best friend Lilly also joins her for the summer. Mia continues her 'princess lessons'- riding horses side-saddle, archery, and other royal. But her complicated life is turned upside down once again when she not only learns that she is to take the crown as queen earlier than expected...", "video": false, "id": 11130, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Princess Diaries 2: Royal Engagement", "tagline": "It can take a lifetime to find true love; she's got 30 days!", "vote_count": 125, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zSEtYD77pKRJlUPx34BJgUG9v1c.jpg", "poster_path": "/wt5AMbxPTS4Kfjx7Fgm149qPfZl.jpg", "id": 107674, "name": "The Princess Diaries Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368933", "adult": false, "backdrop_path": "/f0frE29Bds70oHdYwnfRoAWAUM7.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2004-08-06", "popularity": 1.24551867383638, "original_title": "The Princess Diaries 2: Royal Engagement", "budget": 40000000, "cast": [{"name": "Anne Hathaway", "character": "Mia Thermopolis", "id": 1813, "credit_id": "52fe43fe9251416c7502561f", "cast_id": 1, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Julie Andrews", "character": "Queen Clarisse Renaldi", "id": 5823, "credit_id": "52fe43fe9251416c75025623", "cast_id": 2, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 1}, {"name": "H\u00e9ctor Elizondo", "character": "Joe", "id": 1210, "credit_id": "52fe43fe9251416c75025627", "cast_id": 3, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 2}, {"name": "John Rhys-Davies", "character": "Viscount Mabrey", "id": 655, "credit_id": "52fe43fe9251416c7502562b", "cast_id": 4, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 3}, {"name": "Heather Matarazzo", "character": "Lilly Moscovitz", "id": 33656, "credit_id": "52fe43fe9251416c7502562f", "cast_id": 5, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 4}, {"name": "Chris Pine", "character": "Nicholas Devereaux", "id": 62064, "credit_id": "52fe43fe9251416c75025633", "cast_id": 6, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 5}, {"name": "Callum Blue", "character": "Andrew Jacoby", "id": 68287, "credit_id": "52fe43fe9251416c75025637", "cast_id": 7, "profile_path": "/jEeLPZg7GlNhdkAmtPQXLGqOMZF.jpg", "order": 6}, {"name": "Larry Miller", "character": "Paolo", "id": 1211, "credit_id": "52fe43fe9251416c75025671", "cast_id": 17, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 7}, {"name": "Raven-Symon\u00e9", "character": "Asana", "id": 66896, "credit_id": "52fe43fe9251416c75025675", "cast_id": 18, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 8}, {"name": "Kathleen Marshall", "character": "Charlotte Kutaway", "id": 303542, "credit_id": "52fe43fe9251416c75025679", "cast_id": 19, "profile_path": "/zaS1vOZ0HRIwPSibns1WJLeQrvw.jpg", "order": 9}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43fe9251416c7502563d", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.5, "runtime": 113}, "18239": {"poster_path": "/yR87vK2thajbGdxJDvaxJeUZJkn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 709710948, "overview": "Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.", "video": false, "id": 18239, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: New Moon", "tagline": "The Next Chapter Begins.", "vote_count": 650, "homepage": "http://www.twilightthemovie.com/", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt1259571", "adult": false, "backdrop_path": "/fOI3kFfMGBnNJJlnwYAXunpqzze.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2009-11-20", "popularity": 1.33493214519702, "original_title": "The Twilight Saga: New Moon", "budget": 50000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe476d9251416c75098db7", "cast_id": 54, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe476d9251416c75098dbb", "cast_id": 55, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe476d9251416c75098dbf", "cast_id": 56, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe476d9251416c75098ddb", "cast_id": 63, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 3}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe476d9251416c75098dc3", "cast_id": 57, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 4}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe476d9251416c75098dd7", "cast_id": 62, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 5}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe476d9251416c75098dc7", "cast_id": 58, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 6}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe476d9251416c75098dcb", "cast_id": 59, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 7}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe476d9251416c75098dcf", "cast_id": 60, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 8}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe476d9251416c75098dd3", "cast_id": 61, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 9}, {"name": "Edi Gathegi", "character": "Laurent", "id": 39391, "credit_id": "52fe476d9251416c75098ddf", "cast_id": 64, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 10}, {"name": "Rachelle Lefevre", "character": "Victoria", "id": 58168, "credit_id": "52fe476d9251416c75098de3", "cast_id": 65, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 11}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe476d9251416c75098de7", "cast_id": 66, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 12}, {"name": "Michael Welch", "character": "Mike Newton", "id": 56676, "credit_id": "52fe476d9251416c75098deb", "cast_id": 67, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 13}, {"name": "Christian Serratos", "character": "Angela Weber", "id": 84224, "credit_id": "52fe476d9251416c75098def", "cast_id": 68, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 14}, {"name": "Gil Birmingham", "character": "Billy Black", "id": 84225, "credit_id": "52fe476d9251416c75098df3", "cast_id": 69, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 15}, {"name": "Graham Greene", "character": "Harry Clearwater", "id": 6804, "credit_id": "52fe476d9251416c75098df7", "cast_id": 70, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 16}, {"name": "Michael Sheen", "character": "Aro", "id": 3968, "credit_id": "52fe476d9251416c75098dfb", "cast_id": 71, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 17}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe476d9251416c75098e0f", "cast_id": 76, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 18}, {"name": "Jamie Campbell Bower", "character": "Caius", "id": 83356, "credit_id": "52fe476d9251416c75098dff", "cast_id": 72, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 19}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe476d9251416c75098e03", "cast_id": 73, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 20}, {"name": "Christopher Heyerdahl", "character": "Marcus", "id": 32887, "credit_id": "52fe476d9251416c75098e07", "cast_id": 74, "profile_path": "/imu1EK0I8J5xesKxLweLqqhKq8q.jpg", "order": 21}, {"name": "Cameron Bright", "character": "Alec", "id": 52414, "credit_id": "52fe476d9251416c75098e0b", "cast_id": 75, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 22}], "directors": [{"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe476c9251416c75098d47", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}], "vote_average": 5.6, "runtime": 130}, "11135": {"poster_path": "/vweXLAZP6E55EaMeedndhBdXQGu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27931461, "overview": "A lawless poacher wants to capture a majestic and rare golden eagle, so he kidnaps the boy who knows where to find the bird. Not to worry -- the Rescue Aid Society's top agents, heroic mice Miss Bianca and Bernard, fly to Australia to save the day. Accompanying the fearless duo are bumbling albatross Wilbur and llocal field operative Jake the Kangaroo Rat.", "video": false, "id": 11135, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}], "title": "The Rescuers Down Under", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/27YQ0qV5AolUQ4eX5caP0VbNLdQ.jpg", "id": 57971, "name": "The Rescuers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100477", "adult": false, "backdrop_path": "/u7QsZ2ixSxXFpHIei7eURO4ksrp.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1990-11-16", "popularity": 0.873858712767155, "original_title": "The Rescuers Down Under", "budget": 37931000, "cast": [{"name": "Bob Newhart", "character": "Bernard (voice)", "id": 64930, "credit_id": "52fe44009251416c750258f9", "cast_id": 8, "profile_path": "/uBEjNF7rOgrG3aKlfq6xY5aPmSg.jpg", "order": 0}, {"name": "Eva Gabor", "character": "Miss Bianca (voice)", "id": 44714, "credit_id": "52fe44009251416c750258fd", "cast_id": 9, "profile_path": "/1TffwJuOCaQSHmiQoI3ShogsMTP.jpg", "order": 1}, {"name": "John Candy", "character": "Wilbur (voice)", "id": 7180, "credit_id": "52fe44009251416c75025901", "cast_id": 10, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 2}, {"name": "Tristan Rogers", "character": "Jake (voice)", "id": 94962, "credit_id": "52fe44009251416c75025905", "cast_id": 11, "profile_path": "/wDY049tRTGLTWdxcs1nBjT91aTU.jpg", "order": 3}, {"name": "Adam Ryen", "character": "Cody (voice)", "id": 122605, "credit_id": "52fe44009251416c75025909", "cast_id": 12, "profile_path": "/Nv8SY8qxfP5Jmtn0JSZqqEj7nD.jpg", "order": 4}, {"name": "George C. Scott", "character": "McLeach (voice)", "id": 862, "credit_id": "52fe44009251416c7502590d", "cast_id": 13, "profile_path": "/mWXDFKbEgb7ID845I1LNeaeoXT4.jpg", "order": 5}, {"name": "Wayne Robson", "character": "Frank (voice)", "id": 5897, "credit_id": "52fe44009251416c75025911", "cast_id": 14, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 6}, {"name": "Douglas Seale", "character": "Krebbs (voice)", "id": 15833, "credit_id": "52fe44009251416c75025915", "cast_id": 15, "profile_path": "/1Tbu7xnv3iwiLtKIJg1taQITbKC.jpg", "order": 7}, {"name": "Frank Welker", "character": "Joanna (voice)", "id": 15831, "credit_id": "52fe44009251416c75025919", "cast_id": 16, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 8}, {"name": "Bernard Fox", "character": "Chairman / Doctor (voice)", "id": 8545, "credit_id": "52fe44009251416c7502591d", "cast_id": 17, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 9}, {"name": "Peter Firth", "character": "Red (voice)", "id": 22109, "credit_id": "52fe44009251416c75025921", "cast_id": 18, "profile_path": "/2qFPG3fIwshfPGDwIoP5aKVKFQM.jpg", "order": 10}, {"name": "Ed Gilbert", "character": "Francois (voice)", "id": 35243, "credit_id": "52fe44009251416c75025925", "cast_id": 20, "profile_path": "/43ePekrTBudc90uDDMoRAqvNxGM.jpg", "order": 11}, {"name": "Carla Meyer", "character": "Faloo / Mother (voice)", "id": 122607, "credit_id": "52fe44009251416c75025929", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Russi Taylor", "character": "Nurse Mouse (voice)", "id": 6035, "credit_id": "52fe44009251416c7502592d", "cast_id": 22, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 13}, {"name": "Peter Greenwood", "character": "Radio Announcer / Airplane Captain (voice)", "id": 122608, "credit_id": "52fe44009251416c75025931", "cast_id": 23, "profile_path": "/abxggnXzy9TUXqGgzhhZOmnNkSy.jpg", "order": 14}, {"name": "Billy Barty", "character": "Baitmouse (voice)", "id": 12659, "credit_id": "52fe44009251416c75025953", "cast_id": 30, "profile_path": "/4tDse78ebbkwAh8mr7BLqY9QMp9.jpg", "order": 15}], "directors": [{"name": "Hendel Butoy", "department": "Directing", "job": "Director", "credit_id": "52fe44009251416c750258d1", "profile_path": null, "id": 74297}, {"name": "Mike Gabriel", "department": "Directing", "job": "Director", "credit_id": "52fe44009251416c750258d7", "profile_path": null, "id": 65530}], "vote_average": 6.3, "runtime": 77}, "11137": {"poster_path": "/gfPUb9giqUBqXwd4LlcnNs05Syp.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince \"Eddie\" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.", "video": false, "id": 11137, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Prince & Me", "tagline": "Finding your inner princess can be such a royal pain.", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/gw6Mu3cfjNEQ5IUeNpqs7z8CIOE.jpg", "id": 86334, "name": "The Prince & Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337697", "adult": false, "backdrop_path": "/6GxmYUfaDXMlSlFiCf5WoNSf0zm.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-03-28", "popularity": 0.370388293956513, "original_title": "The Prince & Me", "budget": 0, "cast": [{"name": "Julia Stiles", "character": "Paige Morgan", "id": 12041, "credit_id": "52fe44009251416c7502597d", "cast_id": 1, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 0}, {"name": "Luke Mably", "character": "Prince Edvard", "id": 68307, "credit_id": "52fe44009251416c75025981", "cast_id": 2, "profile_path": "/cBs0W1IB8qhn89xkubT6u1nJx8K.jpg", "order": 1}, {"name": "Ben Miller", "character": "Soren", "id": 18025, "credit_id": "52fe44009251416c75025985", "cast_id": 3, "profile_path": "/tKZaENabPtnvDyeDWZvXkz8IBQ4.jpg", "order": 2}, {"name": "Miranda Richardson", "character": "Queen Rosalind", "id": 8436, "credit_id": "52fe44009251416c75025989", "cast_id": 4, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 3}, {"name": "James Fox", "character": "King Haraald", "id": 1292, "credit_id": "52fe44009251416c7502598d", "cast_id": 5, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 4}], "directors": [{"name": "Martha Coolidge", "department": "Directing", "job": "Director", "credit_id": "52fe44009251416c75025993", "profile_path": "/6XDmHbCLMtzvVU8h5ZauG8CkSIl.jpg", "id": 63713}], "vote_average": 5.8, "runtime": 111}, "109443": {"poster_path": "/66HbvNKmfxYoOHAp1IVIYQsFoeA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173649015, "overview": "With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm.", "video": false, "id": 109443, "genres": [{"id": 35, "name": "Comedy"}], "title": "Anchorman 2: The Legend Continues", "tagline": "It's kind of a big deal", "vote_count": 321, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eUU6edsZcr7I0AO8rHcB3vQwcOH.jpg", "poster_path": "/xjnbrB93Vj5yGYwU0uuW8Tu2qoc.jpg", "id": 93791, "name": "Anchorman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1229340", "adult": false, "backdrop_path": "/mTMnfiWuvhbCdez9LAzbYy0vLSG.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Paramount Pictures", "id": 4}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2013-12-18", "popularity": 1.62332023010106, "original_title": "Anchorman 2: The Legend Continues", "budget": 50000000, "cast": [{"name": "Will Ferrell", "character": "Ron Burgundy", "id": 23659, "credit_id": "52fe4ab7c3a36847f81ddd4b", "cast_id": 5, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Steve Carell", "character": "Brick Tamland", "id": 4495, "credit_id": "52fe4ab7c3a36847f81ddd4f", "cast_id": 6, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Paul Rudd", "character": "Brian Fantana", "id": 22226, "credit_id": "52fe4ab7c3a36847f81ddd53", "cast_id": 7, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 2}, {"name": "Luke Wilson", "character": "Frank Vitchard", "id": 36422, "credit_id": "52fe4ab7c3a36847f81ddd57", "cast_id": 8, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 3}, {"name": "Christina Applegate", "character": "Veronica Corningstone", "id": 18979, "credit_id": "52fe4ab7c3a36847f81ddd5b", "cast_id": 9, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 4}, {"name": "David Koechner", "character": "Champ Kind", "id": 28638, "credit_id": "52fe4ab7c3a36847f81ddd5f", "cast_id": 10, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 5}, {"name": "James Marsden", "character": "Jack Lime", "id": 11006, "credit_id": "52fe4ab7c3a36847f81ddd63", "cast_id": 12, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 6}, {"name": "Kristen Wiig", "character": "Chani Lastnam\u00e9", "id": 41091, "credit_id": "52fe4ab7c3a36847f81ddd67", "cast_id": 13, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 7}, {"name": "Meagan Good", "character": "Linda Jackson", "id": 22122, "credit_id": "52fe4ab7c3a36847f81ddd6b", "cast_id": 14, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 8}, {"name": "Dylan Baker", "character": "Freddie Shapp", "id": 19152, "credit_id": "52fe4ab7c3a36847f81ddd6f", "cast_id": 15, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 9}, {"name": "Tina Fey", "character": "Entertainment Tonight Reporter", "id": 56323, "credit_id": "52fe4ab7c3a36847f81ddd73", "cast_id": 17, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 10}, {"name": "Kirsten Dunst", "character": "El Trousias Maiden of the Clouds", "id": 205, "credit_id": "52fe4ab7c3a36847f81ddd77", "cast_id": 19, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 11}, {"name": "Liam Neeson", "character": "History Channel Host", "id": 3896, "credit_id": "52fe4ab7c3a36847f81ddd7b", "cast_id": 21, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 12}, {"name": "Vince Vaughn", "character": "Wes Mantooth", "id": 4937, "credit_id": "52fe4ab7c3a36847f81ddd7f", "cast_id": 23, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 13}, {"name": "Marion Cotillard", "character": "CBS News Anchor", "id": 8293, "credit_id": "52fe4ab7c3a36847f81ddd83", "cast_id": 26, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 14}, {"name": "Harrison Ford", "character": "Mack Tannen", "id": 3, "credit_id": "535fd2de0e0a264fe1008072", "cast_id": 27, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 15}, {"name": "Will Smith", "character": "ESPN Reporter", "id": 2888, "credit_id": "535fd3060e0a264fd50081b4", "cast_id": 28, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 16}, {"name": "Sacha Baron Cohen", "character": "BBC News Anchor", "id": 6730, "credit_id": "535fd3220e0a264fdb007ed5", "cast_id": 29, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 17}, {"name": "Jim Carrey", "character": "CBC News Anchor", "id": 206, "credit_id": "535fd3450e0a264fd80081d7", "cast_id": 30, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 18}, {"name": "Amy Poehler", "character": "Entertainment Tonight Host", "id": 56322, "credit_id": "535fd399c3a36830a9006b51", "cast_id": 31, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 19}, {"name": "Kanye West", "character": "MTV Host", "id": 4720, "credit_id": "535fd3bac3a3683091006a13", "cast_id": 32, "profile_path": "/doy5fbV907464np9OfySoQySEAl.jpg", "order": 20}, {"name": "Fred Willard", "character": "Ed Harken", "id": 20753, "credit_id": "54f208659251416b350020aa", "cast_id": 35, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 21}, {"name": "John C. Reilly", "character": "ghost of General Thomas J. \"Stonewall\" Jackson", "id": 4764, "credit_id": "54f224459251416b4100261b", "cast_id": 36, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 22}, {"name": "Bill Kurtis", "character": "Narrator", "id": 204352, "credit_id": "54f226d09251416b41002646", "cast_id": 37, "profile_path": null, "order": 23}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe4ab7c3a36847f81ddd35", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.2, "runtime": 119}, "109445": {"poster_path": "/jIjdFXKUNtdf1bwqMrhearpyjMj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1274219009, "overview": "Young princess Anna of Arendelle dreams about finding true love at her sister Elsa\u2019s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.", "video": false, "id": 109445, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Frozen", "tagline": "Only the act of true love will thaw a frozen heart", "vote_count": 1667, "homepage": "http://movies.disney.com/frozen", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2294629", "adult": false, "backdrop_path": "/irHmdlkdJphmk4HPfyAQfklKMbY.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2013-11-27", "popularity": 4.40223653182942, "original_title": "Frozen", "budget": 150000000, "cast": [{"name": "Kristen Bell", "character": "Anna (voice)", "id": 40462, "credit_id": "52fe4ab7c3a36847f81dddcf", "cast_id": 5, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Idina Menzel", "character": "Elsa (voice)", "id": 19394, "credit_id": "52fe4ab7c3a36847f81dddd3", "cast_id": 6, "profile_path": "/h7xxQ7jVPBy5jjOsE89V3LSAkns.jpg", "order": 1}, {"name": "Jonathan Groff", "character": "Kristoff (voice)", "id": 221611, "credit_id": "52fe4ab7c3a36847f81dddd7", "cast_id": 7, "profile_path": "/iGQSz9GIWQ88jS9OZeF78wVwXtR.jpg", "order": 2}, {"name": "Josh Gad", "character": "Olaf (voice)", "id": 54415, "credit_id": "52fe4ab7c3a36847f81ddddb", "cast_id": 8, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 3}, {"name": "Santino Fontana", "character": "Hans (voice)", "id": 1188241, "credit_id": "52fe4ab7c3a36847f81dddf1", "cast_id": 13, "profile_path": "/eyMvIdw7ECpVlRy3QfV9GNp8rmZ.jpg", "order": 4}, {"name": "Alan Tudyk", "character": "Duke (voice)", "id": 21088, "credit_id": "52fe4ab7c3a36847f81ddde5", "cast_id": 10, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 5}, {"name": "Ciar\u00e1n Hinds", "character": "Pabbie / Grandpa (voice)", "id": 8785, "credit_id": "52fe4ab7c3a36847f81dde17", "cast_id": 21, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 6}, {"name": "Chris Williams", "character": "Oaken (voice)", "id": 70238, "credit_id": "52fe4ab7c3a36847f81dddf5", "cast_id": 14, "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "order": 7}, {"name": "Stephen J. Anderson", "character": "Kai (voice) (as Stephen John Anderson)", "id": 16842, "credit_id": "52fe4ab7c3a36847f81dde23", "cast_id": 24, "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "order": 8}, {"name": "Maia Wilson", "character": "Bulda (voice)", "id": 1297610, "credit_id": "5311d4ff9251410fe6002262", "cast_id": 26, "profile_path": "/cuHzXhPE61DtCtJZwixaSGuBYtO.jpg", "order": 9}, {"name": "Edie McClurg", "character": "Gerda (voice)", "id": 3202, "credit_id": "5311d3ec925141102a00227d", "cast_id": 25, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 10}, {"name": "Robert Pine", "character": "Bishop (voice)", "id": 74573, "credit_id": "52fe4ab7c3a36847f81dde1b", "cast_id": 22, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 11}, {"name": "Maurice LaMarche", "character": "King (voice)", "id": 34521, "credit_id": "52fe4ab7c3a36847f81dde1f", "cast_id": 23, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 12}, {"name": "Livvy Stubenrauch", "character": "Young Anna (voice)", "id": 1207489, "credit_id": "52fe4ab7c3a36847f81ddded", "cast_id": 12, "profile_path": "/wdpXRUthua2RB20ut32gT4HG4XA.jpg", "order": 13}, {"name": "Eva Bella", "character": "Young Elsa (voice)", "id": 1207488, "credit_id": "52fe4ab7c3a36847f81ddde9", "cast_id": 11, "profile_path": "/lKDJgAVwWh8j8K0wk3r5V0axa9Y.jpg", "order": 14}, {"name": "Spencer Ganus", "character": "Teen Elsa (voice)", "id": 1340660, "credit_id": "53c098900e0a261579007a7d", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Jesse Corti", "character": "Spanish Dignitary (voice)", "id": 1340661, "credit_id": "53c09983c3a3684cef0060be", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Jeffrey Marcus", "character": "German Dignitary (voice)", "id": 1340662, "credit_id": "53c099a6c3a3687e59005846", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Tucker Gilmore", "character": "Irish Dignitary (voice)", "id": 1340663, "credit_id": "53c099f1c3a3684cf4005a47", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Ava Acres", "character": "Additional Voices (voice)", "id": 1340664, "credit_id": "53c09a14c3a3687e59005853", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Stephen Apostolina", "character": "Additional Voices (voice)", "id": 1340665, "credit_id": "53c09a54c3a3684cec005d68", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Krik Baily", "character": "Additional Voices (voice)", "id": 1340667, "credit_id": "53c09a75c3a3684cdf005b91", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Jenica Bergere", "character": "Additional Voices (voice)", "id": 1340668, "credit_id": "53c09a8c0e0a26158f007859", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Dave Boat", "character": "Additional Voices (voice)", "id": 87176, "credit_id": "53c09f170e0a26157f007f2e", "cast_id": 68, "profile_path": "/4ewxttZW0bhlta27oc5Tjrxel3p.jpg", "order": 24}, {"name": "Paul Briggs", "character": "Additional Voices (voice)", "id": 1340669, "credit_id": "53c09ac20e0a26157f007ea2", "cast_id": 41, "profile_path": "/vccGfQWvG6nBaMD080uDS4Vaj26.jpg", "order": 25}, {"name": "Tyree Brown", "character": "Additional Voices (voice)", "id": 1340670, "credit_id": "53c09ad60e0a261582007d72", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Woody Buck", "character": "Additional Voices (voice)", "id": 1340671, "credit_id": "53c09ae20e0a261585007a5a", "cast_id": 43, "profile_path": null, "order": 27}, {"name": "June Christopher", "character": "Additional Voices (voice)", "id": 1340672, "credit_id": "53c09af90e0a26158f00786f", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Lewis Cleale", "character": "Additional Voices (voice)", "id": 1340673, "credit_id": "53c09b180e0a261585007a68", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Wendy Cutler", "character": "Additional Voices (voice)", "id": 1340674, "credit_id": "53c09b220e0a261585007a6e", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Terri Douglas", "character": "Additional Voices (voice)", "id": 1340675, "credit_id": "53c09b3fc3a3684cf9005ca1", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Eddie Frierson", "character": "Additional Voices (voice)", "id": 1225791, "credit_id": "53c09b7cc3a3684cf9005ca7", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Jean Gilpin", "character": "Additional Voices (voice)", "id": 59051, "credit_id": "53c09f620e0a26157c007b3c", "cast_id": 69, "profile_path": "/txLMRcg9CCbrDlZQi9mg4BhKb40.jpg", "order": 33}, {"name": "Jackie Gonneau", "character": "Additional Voices (voice)", "id": 950773, "credit_id": "53c09b89c3a3684cf9005caa", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Nicholas Guest", "character": "Additional Voices (voice)", "id": 36821, "credit_id": "53c09b94c3a3687e59005888", "cast_id": 51, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 35}, {"name": "Bridget Hoffman", "character": "Additional Voices (voice)", "id": 173428, "credit_id": "53c09bc7c3a3684cf4005a7f", "cast_id": 53, "profile_path": null, "order": 36}, {"name": "Nick Jameson", "character": "Additional Voices (voice)", "id": 39214, "credit_id": "53c09c08c3a3687e59005893", "cast_id": 54, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 37}, {"name": "Daniel Kaz", "character": "Additional Voices (voice)", "id": 1340676, "credit_id": "53c09c11c3a3684ce9005e02", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "John Lavelle", "character": "Additional Voices (voice)", "id": 1340677, "credit_id": "53c09c4bc3a3684cdf005bc1", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Jennifer Lee", "character": "Additional Voices (voice)", "id": 1120694, "credit_id": "53c09d3bc3a3684cf4005aa6", "cast_id": 57, "profile_path": "/9BkQnsppXFWcNSRGo4GJ6QNq313.jpg", "order": 40}, {"name": "Patricia Lentz", "character": "Additional Voices (voice) (as Pat Lentz)", "id": 1207490, "credit_id": "53c09d55c3a3684cef00613c", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Annie Lopez", "character": "Additional Voices (voice)", "id": 1340678, "credit_id": "53c09d61c3a3684cf4005aaf", "cast_id": 59, "profile_path": null, "order": 42}, {"name": "Katie Lowes", "character": "Additional Voices (voice)", "id": 108253, "credit_id": "53c09da2c3a3684cdb00635c", "cast_id": 61, "profile_path": "/yn29ZcNXEyFewrrNtcCpyBfjXnR.jpg", "order": 43}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "53c09dbdc3a3684cec005dc9", "cast_id": 62, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 44}, {"name": "Dara McGarry", "character": "Additional Voices (voice)", "id": 1077828, "credit_id": "53c09df3c3a3684cf9005cf0", "cast_id": 63, "profile_path": null, "order": 45}, {"name": "Scott Menville", "character": "Additional Voices (voice)", "id": 113916, "credit_id": "53c0a1720e0a26158f00795b", "cast_id": 80, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 46}, {"name": "Adam Overett", "character": "Additional Voices (voice)", "id": 1340680, "credit_id": "53c09e040e0a261582007df0", "cast_id": 64, "profile_path": null, "order": 47}, {"name": "Paul Pape", "character": "Additional Voices (voice)", "id": 1340681, "credit_id": "53c09e1a0e0a26157f007f0e", "cast_id": 65, "profile_path": null, "order": 48}, {"name": "Courtney Peldon", "character": "Additional Voices (voice)", "id": 76461, "credit_id": "53c09e590e0a26157c007b1e", "cast_id": 66, "profile_path": "/wKNMmbkkHT3buStUNNcgyCAveyc.jpg", "order": 49}, {"name": "Jennifer Perry", "character": "Additional Voices (voice)", "id": 1340682, "credit_id": "53c09fcf0e0a26157c007b51", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Raymond S. Persi", "character": "Additional Voices (voice)", "id": 1340683, "credit_id": "53c09fe90e0a26157c007b5b", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Jean-Michel Richaud", "character": "Additional Voices (voice)", "id": 59060, "credit_id": "53c0a02c0e0a26157f007f5a", "cast_id": 74, "profile_path": "/hUBf7t28fATtiBIsGhMpepN6Iu5.jpg", "order": 52}, {"name": "Lynwood Robinson", "character": "Additional Voices (voice)", "id": 1296646, "credit_id": "53c0a00e0e0a261576007f3c", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Carter Sand", "character": "Additional Voices (voice)", "id": 1340684, "credit_id": "53c0a0880e0a26157f007f6e", "cast_id": 75, "profile_path": null, "order": 54}, {"name": "Jadon Sand", "character": "Additional Voices (voice)", "id": 1340685, "credit_id": "53c0a0920e0a261589007d84", "cast_id": 76, "profile_path": "/uM4knNZ0kZJMtJt669vRBb8TtSo.jpg", "order": 55}, {"name": "Katie Silverman", "character": "Additional Voices (voice)", "id": 1009221, "credit_id": "551424f1925141045c003723", "cast_id": 83, "profile_path": "/iWeuUdcvQtAmTuHClbPOb0nZh7U.jpg", "order": 56}, {"name": "Pepper Sweeney", "character": "Additional Voices (voice)", "id": 131365, "credit_id": "53c0a1bac3a3684cf9005d56", "cast_id": 81, "profile_path": null, "order": 58}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "53c0a0d70e0a26158f00793e", "cast_id": 79, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 59}, {"name": "Annaleigh Ashford", "character": "Additional Voices (voice)", "id": 120831, "credit_id": "551868ce9251412c1e003106", "cast_id": 84, "profile_path": "/qTJcLe7vNbYSNsmvO4ju0LMsHJ4.jpg", "order": 60}], "directors": [{"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "52fe4ab7c3a36847f81dddb9", "profile_path": null, "id": 15774}, {"name": "Jennifer Lee", "department": "Directing", "job": "Director", "credit_id": "52fe4ab7c3a36847f81dddfb", "profile_path": "/9BkQnsppXFWcNSRGo4GJ6QNq313.jpg", "id": 1120694}], "vote_average": 7.7, "runtime": 102}, "109451": {"poster_path": "/oZjluB568NJVtRrny4rpeApGuNi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 248384621, "overview": "After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.", "video": false, "id": 109451, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cloudy with a Chance of Meatballs 2", "tagline": "Something big was leftover.", "vote_count": 319, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eANL41F9Zp1xHMD6VnHnD3QS7ui.jpg", "poster_path": "/pRAzOs9cZN8LlhaCKo6LQ0bSfyi.jpg", "id": 177467, "name": "Cloudy with a Chance of Meatballs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1985966", "adult": false, "backdrop_path": "/3RaqDhBxvGUPCROtZUaWxjh3ynD.jpg", "production_companies": [{"name": "Sony", "id": 649}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2013-09-27", "popularity": 1.72016311993001, "original_title": "Cloudy with a Chance of Meatballs 2", "budget": 78000000, "cast": [{"name": "Neil Patrick Harris", "character": "Steve (voice)", "id": 41686, "credit_id": "52fe4ab8c3a36847f81ddf7b", "cast_id": 9, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Anna Faris", "character": "Sam Sparks (voice)", "id": 1772, "credit_id": "52fe4ab8c3a36847f81ddf7f", "cast_id": 10, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Terry Crews", "character": "Earl Devereaux (voice)", "id": 53256, "credit_id": "52fe4ab8c3a36847f81ddf83", "cast_id": 11, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 2}, {"name": "James Caan", "character": "Tim Lockwood (voice)", "id": 3085, "credit_id": "52fe4ab8c3a36847f81ddf87", "cast_id": 12, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 3}, {"name": "Andy Samberg", "character": "Baby Brent (voice)", "id": 62861, "credit_id": "52fe4ab8c3a36847f81ddf8b", "cast_id": 13, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 4}, {"name": "Kristen Schaal", "character": "Barb (voice)", "id": 109869, "credit_id": "52fe4ab8c3a36847f81ddf8f", "cast_id": 14, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 5}, {"name": "Bill Hader", "character": "Flint Lockwood (voice)", "id": 19278, "credit_id": "52fe4ab8c3a36847f81ddf93", "cast_id": 15, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 6}, {"name": "Benjamin Bratt", "character": "Manny (voice)", "id": 4589, "credit_id": "52fe4ab8c3a36847f81ddf97", "cast_id": 16, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 7}, {"name": "Will Forte", "character": "Chester V (voice)", "id": 62831, "credit_id": "52fe4ab8c3a36847f81ddf9b", "cast_id": 17, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 8}, {"name": "Melissa Sturm", "character": "Sentinel Louise (voice)", "id": 587697, "credit_id": "52fe4ab8c3a36847f81ddfa5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Khamani Griffin", "character": "Cal Devereaux (voice)", "id": 87056, "credit_id": "52fe4ab8c3a36847f81ddfa9", "cast_id": 20, "profile_path": "/6gpZY25Hc1B4MgBTrfgP1KxnAP5.jpg", "order": 10}, {"name": "Cody Cameron", "character": "Barry/ Dill Pickle (voice)", "id": 12095, "credit_id": "52fe4ab8c3a36847f81ddfad", "cast_id": 21, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 11}], "directors": [{"name": "Cody Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4ab8c3a36847f81ddf4d", "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "id": 12095}, {"name": "Kris Pearn", "department": "Directing", "job": "Director", "credit_id": "52fe4ab8c3a36847f81ddf53", "profile_path": null, "id": 1046494}], "vote_average": 6.7, "runtime": 95}, "224141": {"poster_path": "/5h91odPFNlBuJbRBj5N4MEBfXDE.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A witch conspires to teach important lessons to various characters of popular children's stories including Little Red Riding Hood, Cinderella, Jack and the Beanstalk and Rapunzel.", "video": false, "id": 224141, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Into the Woods", "tagline": "Be careful what you wish for", "vote_count": 339, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2180411", "adult": false, "backdrop_path": "/lzJzB0QfkjpGCm9qUC4XpEIB6pm.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Lucamar Productions", "id": 17021}], "release_date": "2014-12-25", "popularity": 5.29933048785263, "original_title": "Into the Woods", "budget": 50000000, "cast": [{"name": "Anna Kendrick", "character": "Cinderella", "id": 84223, "credit_id": "52fe4e319251416c7514e625", "cast_id": 7, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "James Corden", "character": "The Baker", "id": 55466, "credit_id": "52fe4e319251416c7514e63d", "cast_id": 13, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 1}, {"name": "Chris Pine", "character": "Cinderella's Prince", "id": 62064, "credit_id": "52fe4e319251416c7514e629", "cast_id": 8, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 2}, {"name": "Johnny Depp", "character": "The Wolf", "id": 85, "credit_id": "52fe4e319251416c7514e62d", "cast_id": 9, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 3}, {"name": "Emily Blunt", "character": "The Baker's Wife", "id": 5081, "credit_id": "52fe4e319251416c7514e631", "cast_id": 10, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 4}, {"name": "Meryl Streep", "character": "The Witch", "id": 5064, "credit_id": "52fe4e319251416c7514e635", "cast_id": 11, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 5}, {"name": "Lucy Punch", "character": "Lucinda", "id": 66446, "credit_id": "52fe4e319251416c7514e639", "cast_id": 12, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 6}, {"name": "Christine Baranski", "character": "Cinderella's Stepmother", "id": 11870, "credit_id": "52fe4e319251416c7514e641", "cast_id": 14, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 7}, {"name": "Daniel Huttlestone", "character": "Jack", "id": 1133684, "credit_id": "52fe4e319251416c7514e645", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "MacKenzie Mauzy", "character": "Rapunzel", "id": 1218238, "credit_id": "52fe4e319251416c7514e669", "cast_id": 25, "profile_path": "/wKRz7tYo4COSpzfjNXGWV2cyttJ.jpg", "order": 9}, {"name": "Tammy Blanchard", "character": "Florinda", "id": 16859, "credit_id": "52fe4e319251416c7514e649", "cast_id": 17, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 10}, {"name": "Frances de la Tour", "character": "The Giant", "id": 47468, "credit_id": "52fe4e319251416c7514e64d", "cast_id": 18, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 11}, {"name": "Billy Magnussen", "character": "Rapunzel's Prince", "id": 141034, "credit_id": "52fe4e319251416c7514e651", "cast_id": 19, "profile_path": "/9iEugwAOkNLIzkwl2388OnCLHEw.jpg", "order": 12}, {"name": "Tracey Ullman", "character": "Jack's Mother", "id": 30364, "credit_id": "52fe4e319251416c7514e655", "cast_id": 20, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 13}, {"name": "Lilla Crawford", "character": "Red Riding Hood", "id": 1127625, "credit_id": "52fe4e319251416c7514e659", "cast_id": 21, "profile_path": "/oaYKtNEkk3tdUSB3cD9Tji4vlIW.jpg", "order": 14}, {"name": "Simon Russell Beale", "character": "The Baker's Father", "id": 57461, "credit_id": "52fe4e319251416c7514e65d", "cast_id": 22, "profile_path": "/kHOLDJzCeHoAC2byUGUCfzMn0Sy.jpg", "order": 15}, {"name": "Annette Crosbie", "character": "Grandmother", "id": 55688, "credit_id": "52fe4e319251416c7514e661", "cast_id": 23, "profile_path": "/hmqAtCeYPkUwnId930OV27dE0ZW.jpg", "order": 16}, {"name": "Richard Glover", "character": "The Steward", "id": 193020, "credit_id": "52fe4e319251416c7514e665", "cast_id": 24, "profile_path": null, "order": 17}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4e319251416c7514e603", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.1, "runtime": 125}, "2959": {"poster_path": "/9I8NiY5cfFmwgI8Y5NKQqsuDawS.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42749736, "overview": "Newly engaged, Ben and Sadie can't wait to start their life together and live happily ever after. However Sadie's family church's Reverend Frank won't bless their union until they pass his patented, \"foolproof\" marriage prep course consisting of outrageous classes, outlandish homework assignments and some outright invasion of privacy.", "video": false, "id": 2959, "genres": [{"id": 35, "name": "Comedy"}], "title": "License to Wed", "tagline": "First came love... then came Reverend Frank.", "vote_count": 51, "homepage": "http://licensetowedthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0762114", "adult": false, "backdrop_path": "/fm6bpJxls3QdxGchiZAVbDySmri.jpg", "production_companies": [{"name": "Underground", "id": 49326}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Robert Simonds Productions", "id": 3929}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Proposal Productions", "id": 49327}], "release_date": "2007-07-04", "popularity": 1.18462209240883, "original_title": "License to Wed", "budget": 25000000, "cast": [{"name": "Robin Williams", "character": "Reverend Frank", "id": 2157, "credit_id": "52fe4376c3a36847f8056039", "cast_id": 18, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Mandy Moore", "character": "Sadie Jones", "id": 16855, "credit_id": "52fe4376c3a36847f805603d", "cast_id": 19, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 1}, {"name": "John Krasinski", "character": "Ben Murphy", "id": 17697, "credit_id": "52fe4376c3a36847f8056041", "cast_id": 20, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Carlisle", "id": 29020, "credit_id": "52fe4376c3a36847f8056045", "cast_id": 21, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Christine Taylor", "character": "Lindsey Jones", "id": 15286, "credit_id": "52fe4376c3a36847f8056049", "cast_id": 22, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 4}, {"name": "Josh Flitter", "character": "Choir Boy", "id": 216, "credit_id": "52fe4376c3a36847f805604d", "cast_id": 23, "profile_path": "/6RCA8tDWBxIVk9N3IqUjJEAzYGv.jpg", "order": 5}, {"name": "DeRay Davis", "character": "Joel", "id": 11827, "credit_id": "52fe4376c3a36847f8056051", "cast_id": 24, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 6}, {"name": "Peter Strauss", "character": "Mr. Jones", "id": 21368, "credit_id": "52fe4376c3a36847f8056055", "cast_id": 25, "profile_path": "/gzgt88W2vUgwiYC7izlKXIcosWx.jpg", "order": 7}, {"name": "Grace Zabriskie", "character": "Grandma Jones", "id": 6465, "credit_id": "52fe4376c3a36847f8056059", "cast_id": 26, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 8}, {"name": "Roxanne Hart", "character": "Mrs. Jones", "id": 29021, "credit_id": "52fe4376c3a36847f805605d", "cast_id": 27, "profile_path": "/2Zale2M3jj2G2rwNSifzklYxluX.jpg", "order": 9}], "directors": [{"name": "Ken Kwapis", "department": "Directing", "job": "Director", "credit_id": "52fe4376c3a36847f8055fd5", "profile_path": "/oPjor2KnZcSXmtude62KT62yBsu.jpg", "id": 29009}], "vote_average": 5.1, "runtime": 91}, "60304": {"poster_path": "/yDIVWFJqFLIeS8E1R6GG9uwPMS3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 224803475, "overview": "After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past.", "video": false, "id": 60304, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Hansel & Gretel: Witch Hunters", "tagline": "Classic tale. New twist.", "vote_count": 1978, "homepage": "http://www.hanselandgretelmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1428538", "adult": false, "backdrop_path": "/4wieJ74tXkZDMiiwJ6yMr7LgSpR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "MTV Films", "id": 746}, {"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Deutsche Filmf\u00f6rderfonds (DFFF)", "id": 11238}], "release_date": "2013-01-25", "popularity": 2.14858075727224, "original_title": "Hansel & Gretel: Witch Hunters", "budget": 50000000, "cast": [{"name": "Jeremy Renner", "character": "Hansel", "id": 17604, "credit_id": "52fe461fc3a368484e07ff71", "cast_id": 3, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Gretel", "id": 59620, "credit_id": "52fe461fc3a368484e07ff6d", "cast_id": 2, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Muriel", "id": 10696, "credit_id": "52fe461fc3a368484e07ff75", "cast_id": 4, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Pihla Viitala", "character": "Mina", "id": 93564, "credit_id": "52fe461fc3a368484e07ffb5", "cast_id": 18, "profile_path": "/5FevFcJazUVQYAICo7GHDtz8rkI.jpg", "order": 3}, {"name": "Derek Mears", "character": "Edward", "id": 51300, "credit_id": "52fe461fc3a368484e07ffe5", "cast_id": 27, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Berringer", "id": 53, "credit_id": "52fe461fc3a368484e07ff79", "cast_id": 5, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Thomas Mann", "character": "Ben", "id": 1142720, "credit_id": "52fe461fc3a368484e07ffa9", "cast_id": 15, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 6}, {"name": "Ingrid Bols\u00f8 Berdal", "character": "Horned Witch", "id": 87879, "credit_id": "52fe461fc3a368484e07ffa1", "cast_id": 12, "profile_path": "/raEPYKXAe6NP0m3WUyJDh7PQUR3.jpg", "order": 7}, {"name": "Zo\u00eb Bell", "character": "Tall Witch", "id": 20494, "credit_id": "52fe461fc3a368484e07ffa5", "cast_id": 14, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 8}, {"name": "Joanna Kulig", "character": "Red Haired Witch", "id": 908548, "credit_id": "52fe461fc3a368484e07ffad", "cast_id": 16, "profile_path": "/cHEhGQ7XyxGeInAupSvESNJpUEv.jpg", "order": 9}, {"name": "Monique Ganderton", "character": "Candy Witch", "id": 102744, "credit_id": "52fe461fc3a368484e07ffb1", "cast_id": 17, "profile_path": "/8BNtDzQwv8CWW0jmtcwa2YiJqta.jpg", "order": 10}, {"name": "Stephanie Corneliussen", "character": "Desert Witch", "id": 1142724, "credit_id": "52fe461fc3a368484e07ffb9", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Christian Rubeck", "character": "Tracker Jonathan", "id": 47647, "credit_id": "52fe461fc3a368484e07ffbd", "cast_id": 20, "profile_path": "/6KHeIoaS3eIn2TVBEyatMdFwEWv.jpg", "order": 12}, {"name": "Thomas Scharff", "character": "Father", "id": 1173431, "credit_id": "52fe461fc3a368484e07ffe9", "cast_id": 28, "profile_path": "/3hW7OkiWq6a8HSKxO2tiUBxG53e.jpg", "order": 13}, {"name": "Kathrin K\u00fchnel", "character": "Adrianna", "id": 1192096, "credit_id": "52fe461fc3a368484e07ffed", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Cedric Eich", "character": "Young Hansel", "id": 147636, "credit_id": "52fe461fc3a368484e07fff1", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Alea Sophia Boudodimos", "character": "Young Gretel", "id": 1272984, "credit_id": "52fe461fc3a368484e07fff5", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Matthias Ziesing", "character": "Deputy", "id": 1272985, "credit_id": "52fe461fc3a368484e07fff9", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Sebastian H\u00fclk", "character": "Deputy", "id": 550554, "credit_id": "52fe461fc3a368484e07fffd", "cast_id": 33, "profile_path": "/1lgRo298X6MZMzf2cWKuELXE74T.jpg", "order": 18}, {"name": "Vegar Hoel", "character": "Gamekeeper", "id": 76920, "credit_id": "52fe461fc3a368484e080001", "cast_id": 34, "profile_path": "/ekteFS1uufBQuRQX5Xwi7s23Nci.jpg", "order": 19}, {"name": "Jeppe Beck Laursen", "character": "Tracker William", "id": 1287263, "credit_id": "52fe461fc3a368484e080009", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Stig Frode Henriksen", "character": "Mute Tracker", "id": 76919, "credit_id": "52fe461fc3a368484e080005", "cast_id": 36, "profile_path": "/9dmquAOhzmBSmIIIcaw8MiQMFoK.jpg", "order": 21}, {"name": "Rainer Bock", "character": "B\u00fcrgermeister Englemann", "id": 65054, "credit_id": "54143e1fc3a3687dc5001b92", "cast_id": 38, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 22}], "directors": [{"name": "Tommy Wirkola", "department": "Directing", "job": "Director", "credit_id": "52fe461fc3a368484e07ff69", "profile_path": "/vkpnQg4eX722Tz283OZOpzSyweK.jpg", "id": 76927}], "vote_average": 5.6, "runtime": 88}, "11153": {"poster_path": "/ySI88wO1IFyKGWpSKRTSPilE3t2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Griswold family are on a quest. A quest to a Walley World theme park for a family vacation, but things aren't going to go exactly as planned, especially when Clark Griswold is losing all thought towards a mysterious blonde in a red Ferrari.", "video": false, "id": 11153, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "National Lampoon's Vacation", "tagline": "Every summer Chevy Chase takes his family on a little trip. This year he went too far.", "vote_count": 87, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gwKsTIUgBRtTd4M2m5EKuTQrYaf.jpg", "poster_path": "/66PJIC2ahIZOCg7AkQFszllroCm.jpg", "id": 108693, "name": "National Lampoon's Vacation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085995", "adult": false, "backdrop_path": "/zcJxJVhvxNHJJ2J7Q7NhgO9nPUV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1983-07-28", "popularity": 0.784111033420931, "original_title": "National Lampoon's Vacation", "budget": 15000000, "cast": [{"name": "Chevy Chase", "character": "Clark Griswold", "id": 54812, "credit_id": "52fe44039251416c75025ef7", "cast_id": 1, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Beverly D'Angelo", "character": "Ellen Griswold", "id": 821, "credit_id": "52fe44039251416c75025efb", "cast_id": 2, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 1}, {"name": "Imogene Coca", "character": "Aunt Edna", "id": 70089, "credit_id": "52fe44039251416c75025eff", "cast_id": 3, "profile_path": "/y4EzofufjbbLg80noE4vEpTw1w2.jpg", "order": 2}, {"name": "Randy Quaid", "character": "Cousin Eddie", "id": 1811, "credit_id": "52fe44039251416c75025f03", "cast_id": 4, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 3}, {"name": "Anthony Michael Hall", "character": "Rusty Griswold", "id": 1904, "credit_id": "52fe44039251416c75025f2b", "cast_id": 12, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 4}, {"name": "Miriam Flynn", "character": "Cousin Catherine", "id": 35109, "credit_id": "52fe44039251416c75025f2f", "cast_id": 13, "profile_path": "/6VKACA883vyve6uuviO4I6QpluL.jpg", "order": 5}, {"name": "John Candy", "character": "Lasky, Guard at Walleyworld", "id": 7180, "credit_id": "52fe44039251416c75025f33", "cast_id": 14, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 6}, {"name": "Dana Barron", "character": "Audrey Griswold", "id": 1217003, "credit_id": "52fe44039251416c75025f57", "cast_id": 24, "profile_path": "/pA96AvipoiQxNck5Kvxt3sQPkTZ.jpg", "order": 7}, {"name": "Eddie Bracken", "character": "Roy Walley", "id": 115457, "credit_id": "52fe44039251416c75025f37", "cast_id": 16, "profile_path": "/rBCEY264VgZXaWTB8IY64hgI1U0.jpg", "order": 8}, {"name": "Brian Doyle-Murray", "character": "Kamp Komfort Clerk", "id": 1535, "credit_id": "52fe44039251416c75025f3b", "cast_id": 17, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 9}, {"name": "James Keach", "character": "Motorcycle Cop", "id": 408, "credit_id": "52fe44039251416c75025f3f", "cast_id": 18, "profile_path": "/5k6C8JLApbI52sjaYAHHnIdsrnv.jpg", "order": 10}, {"name": "Eugene Levy", "character": "Car Salesman", "id": 26510, "credit_id": "52fe44039251416c75025f43", "cast_id": 19, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 11}, {"name": "Frank McRae", "character": "Grover", "id": 1735, "credit_id": "52fe44039251416c75025f47", "cast_id": 20, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 12}, {"name": "Christie Brinkley", "character": "The Girl in the Ferrari", "id": 942808, "credit_id": "52fe44039251416c75025f4b", "cast_id": 21, "profile_path": "/6Gc4V7ibpFqi2ZnFlMV3Dug7lJR.jpg", "order": 13}, {"name": "Jane Krakowski", "character": "Cousin Vicki", "id": 13636, "credit_id": "52fe44039251416c75025f4f", "cast_id": 22, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 14}, {"name": "John P. Navin, Jr.", "character": "Cousin Dale", "id": 92557, "credit_id": "52fe44039251416c75025f53", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe44039251416c75025f27", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.8, "runtime": 98}, "43923": {"poster_path": "/wADblWdHMk2SIaZRBazTGOTBf4w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6491240, "overview": "A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.", "video": false, "id": 43923, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "It's Kind of a Funny Story", "tagline": "Sometimes what's in your head isn't as crazy as you think.", "vote_count": 116, "homepage": "http://focusfeatures.com/its_kind_of_a_funny_story", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804497", "adult": false, "backdrop_path": "/u3kOcfdPhZXdYM1axAkU5sPYZS9.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2010-07-06", "popularity": 0.84724414506312, "original_title": "It's Kind of a Funny Story", "budget": 8000000, "cast": [{"name": "Keir Gilchrist", "character": "Craig", "id": 132712, "credit_id": "52fe466bc3a36847f80fdfcf", "cast_id": 11, "profile_path": "/3qD75fzIrNvTAgYQCVczZ0SBsxI.jpg", "order": 0}, {"name": "Emma Roberts", "character": "Noelle", "id": 34847, "credit_id": "52fe466bc3a36847f80fdfa5", "cast_id": 1, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Bobby", "id": 58225, "credit_id": "52fe466bc3a36847f80fdfa9", "cast_id": 2, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Lauren Graham", "character": "Lynn", "id": 16858, "credit_id": "52fe466bc3a36847f80fdfd3", "cast_id": 12, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 3}, {"name": "Zo\u00eb Kravitz", "character": "", "id": 37153, "credit_id": "52fe466bc3a36847f80fdfad", "cast_id": 4, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 4}, {"name": "Jeremy Davies", "character": "Smitty", "id": 4654, "credit_id": "52fe466bc3a36847f80fdfd7", "cast_id": 13, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 5}, {"name": "Thomas Mann", "character": "Aaron", "id": 1142720, "credit_id": "52fe466bc3a36847f80fdfdb", "cast_id": 14, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 6}], "directors": [{"name": "Anna Boden", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fdfb3", "profile_path": "/h5YMXdI42zb0uqn5UJHF4fT9AER.jpg", "id": 53069}, {"name": "Ryan Fleck", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fdfb9", "profile_path": null, "id": 53068}], "vote_average": 6.7, "runtime": 101}, "60308": {"poster_path": "/Onw1pBlHSgcTZ7Bomx1M2RfSk3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110206216, "overview": "The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.", "video": false, "id": 60308, "genres": [{"id": 18, "name": "Drama"}], "title": "Moneyball", "tagline": "What are you really worth?", "vote_count": 495, "homepage": "http://www.moneyball-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1210166", "adult": false, "backdrop_path": "/pxlaSPleGSNI8jJZYGhXH5LdI1B.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2011-09-22", "popularity": 1.08100687247013, "original_title": "Moneyball", "budget": 50000000, "cast": [{"name": "Brad Pitt", "character": "Billy Beane", "id": 287, "credit_id": "52fe461fc3a368484e0800bd", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Peter Brand", "id": 21007, "credit_id": "52fe461fc3a368484e0800c1", "cast_id": 3, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Robin Wright", "character": "Sharon", "id": 32, "credit_id": "52fe461fc3a368484e0800c5", "cast_id": 4, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Philip Seymour Hoffman", "character": "Art Howe", "id": 1233, "credit_id": "52fe461fc3a368484e0800c9", "cast_id": 5, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 3}, {"name": "Chris Pratt", "character": "Scott Hatteberg", "id": 73457, "credit_id": "52fe461fc3a368484e0800cd", "cast_id": 6, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 4}, {"name": "Stephen Bishop", "character": "David Justice", "id": 55205, "credit_id": "52fe461fc3a368484e0800d1", "cast_id": 11, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 5}, {"name": "Brent Jennings", "character": "Ron Washington", "id": 84685, "credit_id": "52fe461fc3a368484e0800d5", "cast_id": 12, "profile_path": "/wkKnquYyWGT5ciIfgJAdy7tAxXX.jpg", "order": 6}, {"name": "Ken Medlock", "character": "Grady Fuson", "id": 181067, "credit_id": "52fe461fc3a368484e0800d9", "cast_id": 13, "profile_path": "/mHWHCbYkOwUPVHdAo7LvIMe1967.jpg", "order": 7}, {"name": "Tammy Blanchard", "character": "Elizabeth Hatteberg", "id": 16859, "credit_id": "52fe461fc3a368484e0800dd", "cast_id": 14, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 8}, {"name": "Jack McGee", "character": "John Poloni", "id": 10489, "credit_id": "52fe461fc3a368484e0800e1", "cast_id": 15, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 9}, {"name": "Vyto Ruginis", "character": "Pittaro", "id": 61216, "credit_id": "52fe461fc3a368484e0800e5", "cast_id": 16, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 10}, {"name": "Nick Searcy", "character": "Matt Keough", "id": 12538, "credit_id": "52fe461fc3a368484e0800e9", "cast_id": 17, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 11}, {"name": "Glenn Morshower", "character": "Ron Hopkins", "id": 12797, "credit_id": "52fe461fc3a368484e0800ed", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 12}, {"name": "Casey Bond", "character": "Chad Bradford", "id": 178466, "credit_id": "52fe461fc3a368484e0800f1", "cast_id": 19, "profile_path": "/mnSxjSETv8Kw2W1Gbj1ILJ5slUc.jpg", "order": 13}, {"name": "Nick Porrazzo", "character": "Jeremy Giambi", "id": 938701, "credit_id": "52fe461fc3a368484e0800f5", "cast_id": 20, "profile_path": "/1MtwyJikWbNyIgusFn7cssLCuIe.jpg", "order": 14}, {"name": "Chris McGarry", "character": "Ed Wade", "id": 120890, "credit_id": "52fe461fc3a368484e0800f9", "cast_id": 21, "profile_path": "/fGQtYAn6tGudVerMn8u6USdbnkX.jpg", "order": 15}, {"name": "Reed Diamond", "character": "Mark Shapiro", "id": 31508, "credit_id": "52fe461fc3a368484e080109", "cast_id": 24, "profile_path": "/mASm3pG5IzLMQlORD8v7vb8oEly.jpg", "order": 16}, {"name": "Kerris Dorsey", "character": "Casey Beane", "id": 220064, "credit_id": "52fe461fc3a368484e08010d", "cast_id": 25, "profile_path": "/v2Sy5s73M7QyGdpbTZSJH1YzYjr.jpg", "order": 17}, {"name": "Arliss Howard", "character": "John Henry", "id": 3229, "credit_id": "52fe461fc3a368484e080111", "cast_id": 26, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 18}, {"name": "Reed Thompson", "character": "Young Billy", "id": 1146390, "credit_id": "52fe461fc3a368484e080115", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "James Shanklin", "character": "Billy's Dad", "id": 170376, "credit_id": "52fe461fc3a368484e080119", "cast_id": 28, "profile_path": "/wkxQIGquwfH4SjcTFNHedge4kYx.jpg", "order": 20}, {"name": "Diane Behrens", "character": "Billy's Mom", "id": 167519, "credit_id": "52fe461fc3a368484e08011d", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Takayo Fischer", "character": "Suzanne", "id": 33500, "credit_id": "52fe461fc3a368484e080121", "cast_id": 30, "profile_path": "/gNIFc8rWnFzplkisEonefyxjmG1.jpg", "order": 22}, {"name": "Derrin Ebert", "character": "Mike Magnante", "id": 1146391, "credit_id": "52fe461fc3a368484e080125", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Miguel Mendoza", "character": "Ricardo Rincon", "id": 119710, "credit_id": "52fe461fc3a368484e080129", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Adrian Bellani", "character": "Carlos Pe\u00f1a", "id": 1146392, "credit_id": "52fe461fc3a368484e08012d", "cast_id": 33, "profile_path": null, "order": 25}], "directors": [{"name": "Bennett Miller", "department": "Directing", "job": "Director", "credit_id": "52fe461fc3a368484e0800b9", "profile_path": "/jlnO6Hg6jChoGWr6ScVBpLJBAiI.jpg", "id": 5345}], "vote_average": 6.8, "runtime": 133}, "207768": {"poster_path": "/qHCHcx5Kwl7bRPPbOK59yrzYAR9.jpg", "production_countries": [{"iso_3166_1": "BG", "name": "Bulgaria"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Naturally beautiful, Katie has just settled into New York where she, like many other young women, is trying to make it as a model. But what starts out as an innocent and simple photo shoot soon turns into something disturbingly unthinkable! Raped, tortured and kidnapped to a foreign country, Jessica is buried alive and left to die. Against all odds, she manages to escape. Severely injured, she will have to tap into the darkest places of the human psyche to not only survive, but to exact her revenge\u2026", "video": false, "id": 207768, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I Spit On Your Grave 2", "tagline": "", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pXSHMjNXeIaYVjYd285LLg6385m.jpg", "poster_path": "/twoKFP4fjfOReWw8U13P39cj8xG.jpg", "id": 219691, "name": "I Spit on Your Grave Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2537176", "adult": false, "backdrop_path": "/gGLCX1CaUlXUt7ucg0yHJPJ1HzN.jpg", "production_companies": [{"name": "Cinetel Films", "id": 10399}], "release_date": "2013-08-25", "popularity": 0.603648874877925, "original_title": "I Spit On Your Grave 2", "budget": 0, "cast": [{"name": "Jemma Dallender", "character": "Katie", "id": 1154842, "credit_id": "52fe4d3cc3a368484e1de287", "cast_id": 2, "profile_path": "/qNcoaDNjIFu7a3vqLWCg0lzRjpj.jpg", "order": 0}, {"name": "Joe Absolom", "character": "Ivan", "id": 97430, "credit_id": "52fe4d3cc3a368484e1de28b", "cast_id": 3, "profile_path": "/51n328Chn44jLh3jzI7EZAU2DjV.jpg", "order": 1}, {"name": "Yavor Baharov", "character": "Georgy", "id": 586060, "credit_id": "52fe4d3cc3a368484e1de28f", "cast_id": 4, "profile_path": "/8Rhhsgk98tDK83Dm7oqIt8Q10Ya.jpg", "order": 2}, {"name": "Aleksandar Aleksiev", "character": "Nicolay", "id": 1202317, "credit_id": "52fe4d3cc3a368484e1de293", "cast_id": 5, "profile_path": "/pxThnyg2FU5NVZ6DhP58GZ2XRWG.jpg", "order": 3}, {"name": "Mary Stockley", "character": "Ana", "id": 40672, "credit_id": "52fe4d3cc3a368484e1de297", "cast_id": 6, "profile_path": "/duzAifGRp5avCoefoDapemvBL3h.jpg", "order": 4}, {"name": "Michael Dixon", "character": "Jayson", "id": 73401, "credit_id": "52fe4d3cc3a368484e1de2a7", "cast_id": 9, "profile_path": "/HdUE9PAD1DBkS1gur72sVT10kR.jpg", "order": 5}, {"name": "Valentine Pelka", "character": "Father Dimov", "id": 52375, "credit_id": "52fe4d3cc3a368484e1de2ab", "cast_id": 10, "profile_path": "/478wMmYjjio8h2kaHkHsRJTqfYX.jpg", "order": 6}, {"name": "Peter Silverleaf", "character": "Valko", "id": 207274, "credit_id": "52fe4d3cc3a368484e1de2af", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "George Zlatarev", "character": "Kiril", "id": 67246, "credit_id": "52fe4d3cc3a368484e1de2b3", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Steven R. Monroe", "department": "Directing", "job": "Director", "credit_id": "52fe4d3cc3a368484e1de283", "profile_path": "/6CeSKA4OIbdPpkuX6SKYCH3RAnk.jpg", "id": 88039}], "vote_average": 6.3, "runtime": 106}, "43930": {"poster_path": "/qsMtWLQezzPFRJ2kfhZwCUaaoxr.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 13361614, "overview": "Based on the first of seven books by acclaimed Australian author, John Marsden, Tomorrow When The War Began is the story of seven teenagers who return from a week-long camping trip to find that Australia has been invaded by a foreign power. Banding together to fight guerrilla-style against the enemy, this is not a typical heroic war movie - it is a terrifying situation where they must sometimes use little more than a knife or a belt to murder a soldier in cold blood. It's a graphic tale of the violence, the blood, the fear, and the insanity of war. These kids are underdogs, they're not going to win the war, they're more likely to end up dead in a ditch than send the enemy retreating, but it's their land, their parents, and friends in prison camps. They give a damn and they'd rather die fighting than give up.", "video": false, "id": 43930, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Tomorrow, When the War Began", "tagline": "Where Were You When Everything Changed?", "vote_count": 59, "homepage": "http://www.twtwb.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1456941", "adult": false, "backdrop_path": "/vfVnXL31f38fEmRTLwuH6tMVZfe.jpg", "production_companies": [{"name": "Ambience Entertainment", "id": 3427}, {"name": "Omnilab Media", "id": 2729}], "release_date": "2010-08-08", "popularity": 0.552727000407288, "original_title": "Tomorrow, When the War Began", "budget": 27000000, "cast": [{"name": "Caitlin Stasey", "character": "Ellie Linton", "id": 145245, "credit_id": "52fe466bc3a36847f80fe0c5", "cast_id": 3, "profile_path": "/7eE8VYl2oej8jpNaWqsrAJxCXYM.jpg", "order": 0}, {"name": "Rachel Hurd-Wood", "character": "Corrie Mackenzie", "id": 129050, "credit_id": "52fe466bc3a36847f80fe0c9", "cast_id": 4, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 1}, {"name": "Phoebe Tonkin", "character": "Fiona Maxwell", "id": 145247, "credit_id": "52fe466bc3a36847f80fe0d5", "cast_id": 7, "profile_path": "/hKDrWcfp0e0rf13AP4uS28phuz.jpg", "order": 2}, {"name": "Deniz Akdeniz", "character": "Homer Yannos", "id": 145246, "credit_id": "52fe466bc3a36847f80fe0d1", "cast_id": 6, "profile_path": "/4ONfe9SHo6N3hkJyJ61qHJevJPJ.jpg", "order": 3}, {"name": "Lincoln Lewis", "character": "Kevin Holmes", "id": 94798, "credit_id": "52fe466bc3a36847f80fe0cd", "cast_id": 5, "profile_path": "/lvvMmWd4Xx4FBDO6uXuLdLVGbHv.jpg", "order": 4}, {"name": "Chris Pang", "character": "Lee Takkam", "id": 145248, "credit_id": "52fe466bc3a36847f80fe0d9", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Ashleigh Cummings", "character": "Robyn Mathers", "id": 1255846, "credit_id": "52fe466bc3a36847f80fe0dd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Andrew Ryan", "character": "Chris Lang", "id": 1090945, "credit_id": "52fe466bc3a36847f80fe0e1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Colin Friels", "character": "Dr. Clements", "id": 27753, "credit_id": "52fe466bc3a36847f80fe0e5", "cast_id": 12, "profile_path": "/tXKCpTwCs4TZYdQ6p5Kch7sRkkS.jpg", "order": 8}, {"name": "Don Halbert", "character": "Mr. Linton", "id": 192817, "credit_id": "52fe466bc3a36847f80fe0e9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Olivia Pigeot", "character": "Mrs. Linton", "id": 1236200, "credit_id": "52fe466bc3a36847f80fe0ed", "cast_id": 14, "profile_path": null, "order": 10}], "directors": [{"name": "Stuart Beattie", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fe0bb", "profile_path": null, "id": 1707}], "vote_average": 6.9, "runtime": 103}, "84892": {"poster_path": "/s9R55JZF8g0WEqZvf7YWh4FZVYl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33400000, "overview": "A coming-of-age story based on the best-selling novel by Stephen Chbosky, which follows 15-year-old freshman Charlie, an endearing and naive outsider who is taken under the wings of two seniors. A moving tale of love, loss, fear and hope - and the unforgettable friends that help us through life.", "video": false, "id": 84892, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Perks of Being a Wallflower", "tagline": "We are infinite.", "vote_count": 686, "homepage": "http://perks-of-being-a-wallflower.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt1659337", "adult": false, "backdrop_path": "/ncsbzGl0r3wRWFWQMREATaFoywm.jpg", "production_companies": [{"name": "Mr. Mudd Production", "id": 2130}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2012-09-20", "popularity": 1.31085068772659, "original_title": "The Perks of Being a Wallflower", "budget": 13000000, "cast": [{"name": "Logan Lerman", "character": "Charlie", "id": 33235, "credit_id": "52fe49169251416c910a23af", "cast_id": 6, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 0}, {"name": "Emma Watson", "character": "Sam", "id": 10990, "credit_id": "53173900c3a368136e0029f1", "cast_id": 12, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 1}, {"name": "Ezra Miller", "character": "Patrick", "id": 132157, "credit_id": "52fe49169251416c910a23bb", "cast_id": 9, "profile_path": "/swxGHWhm95cgQgwt7XNqAlnAUwF.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Bill", "id": 22226, "credit_id": "52fe49169251416c910a23b3", "cast_id": 7, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Nina Dobrev", "character": "Candace", "id": 19961, "credit_id": "52fe49169251416c910a23a7", "cast_id": 4, "profile_path": "/7YM2mqfrO9mrNJ6GwBNmSSiWNTR.jpg", "order": 4}, {"name": "Mae Whitman", "character": "Mary Elizabeth", "id": 52404, "credit_id": "52fe49169251416c910a23b7", "cast_id": 8, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 5}, {"name": "Erin Wilhelmi", "character": "Alice", "id": 1053419, "credit_id": "531739c992514158a0001c42", "cast_id": 16, "profile_path": "/81JQCHJyMJy55ypRBj2y6C1HrJF.jpg", "order": 6}, {"name": "Johnny Simmons", "character": "Brad", "id": 27104, "credit_id": "5317393b9251415861001b5d", "cast_id": 13, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 7}, {"name": "Joan Cusack", "character": "Dr. Burton", "id": 3234, "credit_id": "5317399f92514158a0001c3f", "cast_id": 15, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 8}, {"name": "Melanie Lynskey", "character": "Aunt Helen", "id": 15091, "credit_id": "52fe49169251416c910a23bf", "cast_id": 10, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 9}, {"name": "Kate Walsh", "character": "Mrs. Kelmeckis", "id": 61114, "credit_id": "531739709251412ccd001076", "cast_id": 14, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 10}, {"name": "Julia Garner", "character": "Susan", "id": 936970, "credit_id": "5381f182c3a368737d00224e", "cast_id": 17, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 11}, {"name": "Nicholas Braun", "character": "Derek", "id": 85139, "credit_id": "54984f1c9251417a810060e6", "cast_id": 18, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 12}], "directors": [{"name": "Stephen Chbosky", "department": "Directing", "job": "Director", "credit_id": "52fe49169251416c910a2397", "profile_path": "/yh3b133GGLUpHnutKVGkYbGJch0.jpg", "id": 19311}], "vote_average": 7.4, "runtime": 102}, "43933": {"poster_path": "/fMpauUPt2ldsiEoZxG1olPFksfZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 4188738, "overview": "Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain \"the creatures,\" while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.", "video": false, "id": 43933, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Monsters", "tagline": "After Six Years, They're No Longer Aliens. They're Residents", "vote_count": 132, "homepage": "http://www.monstersfilm.com/", "belongs_to_collection": {"backdrop_path": "/2k8KXYTcqxkKpq7lBZFMJ4zjBUF.jpg", "poster_path": "/64tYLixu5g9W3l4u9mTHnhbVYlz.jpg", "id": 306926, "name": "Monsters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1470827", "adult": false, "backdrop_path": "/nfAeL5txnyRlxNwU9tIx9y9jxLP.jpg", "production_companies": [{"name": "Vertigo Entertainment", "id": 829}], "release_date": "2010-06-18", "popularity": 0.736852616898164, "original_title": "Monsters", "budget": 800000, "cast": [{"name": "Whitney Able", "character": "Samantha Wynden", "id": 56677, "credit_id": "52fe466bc3a36847f80fe1dd", "cast_id": 3, "profile_path": "/6y5KdwVTlB3o9ZGJ9iIoSCW850M.jpg", "order": 0}, {"name": "Scoot McNairy", "character": "Andrew Kaulder", "id": 59233, "credit_id": "52fe466bc3a36847f80fe1e1", "cast_id": 4, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 1}, {"name": "Kevon Kane", "character": "Josh Jones", "id": 141768, "credit_id": "52fe466bc3a36847f80fe1e5", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Fernando Lara", "character": "U.S. Soldier", "id": 556436, "credit_id": "52fe466bc3a36847f80fe1e9", "cast_id": 6, "profile_path": null, "order": 3}], "directors": [{"name": "Gareth Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fe1d9", "profile_path": "/nUs4hkGgByttwgNYafKlDvGzUsi.jpg", "id": 129894}], "vote_average": 6.5, "runtime": 94}, "2976": {"poster_path": "/ndOpIx4BXpFCRRIxgMoGHxZxlE9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90450008, "overview": "Pleasantly plump teenager Tracy Turnblad and her best friend Penny Pingleton audition to be on The Corny Collins Show and Tracy wins. But when scheming Amber Von Tussle and her mother plot to destroy Tracy, it turns to chaos.", "video": false, "id": 2976, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Hairspray", "tagline": "When you follow your own beat, the world will follow you.", "vote_count": 149, "homepage": "http://www.hairspraymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427327", "adult": false, "backdrop_path": "/qOcVMGFaUrJ6npQXUujVXWVS96C.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2007-07-13", "popularity": 0.643465519208362, "original_title": "Hairspray", "budget": 50000000, "cast": [{"name": "John Travolta", "character": "Edna Turnblad", "id": 8891, "credit_id": "52fe4378c3a36847f80568ed", "cast_id": 18, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Velma Von Tussle", "id": 1160, "credit_id": "52fe4378c3a36847f80568f1", "cast_id": 19, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Wilbur Turnblad", "id": 4690, "credit_id": "52fe4378c3a36847f80568f5", "cast_id": 20, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Amanda Bynes", "character": "Penny Pingleton", "id": 29220, "credit_id": "52fe4378c3a36847f80568f9", "cast_id": 21, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 3}, {"name": "James Marsden", "character": "Corny Collins", "id": 11006, "credit_id": "52fe4378c3a36847f80568fd", "cast_id": 22, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 4}, {"name": "Queen Latifah", "character": "Motormouth Maybelle", "id": 15758, "credit_id": "52fe4378c3a36847f8056901", "cast_id": 23, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 5}, {"name": "Brittany Snow", "character": "Amber Von Tussle", "id": 29221, "credit_id": "52fe4378c3a36847f8056905", "cast_id": 24, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 6}, {"name": "Zac Efron", "character": "Link Larkin", "id": 29222, "credit_id": "52fe4378c3a36847f8056909", "cast_id": 25, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 7}, {"name": "Elijah Kelley", "character": "Seaweed", "id": 29223, "credit_id": "52fe4378c3a36847f805690d", "cast_id": 26, "profile_path": "/yxVGYJCvBsUpVziLtQ0QQwVO1qB.jpg", "order": 8}, {"name": "Allison Janney", "character": "Prudy Pringleton", "id": 19, "credit_id": "52fe4378c3a36847f8056911", "cast_id": 27, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 9}, {"name": "Nikki Blonsky", "character": "Tracy Turnblad", "id": 29224, "credit_id": "52fe4378c3a36847f8056915", "cast_id": 28, "profile_path": "/8k6vMdFsxfz194ZVGDbSGrKqWex.jpg", "order": 10}, {"name": "Taylor Parks", "character": "Little Inez", "id": 29225, "credit_id": "52fe4378c3a36847f8056919", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Jayne Eastwood", "character": "Miss Wimsey", "id": 4568, "credit_id": "52fe4378c3a36847f805691d", "cast_id": 30, "profile_path": "/fUYBG960fMkGDiNzcz7ERjB6BHe.jpg", "order": 12}, {"name": "Paul Dooley", "character": "Mr. Spritzer", "id": 15900, "credit_id": "52fe4378c3a36847f8056921", "cast_id": 31, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 13}, {"name": "Jerry Stiller", "character": "Mr. Pinky", "id": 26042, "credit_id": "52fe4378c3a36847f8056925", "cast_id": 32, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 14}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe4378c3a36847f805692b", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 6.2, "runtime": 117}, "2977": {"poster_path": "/iLNBdoaKzXNhZV4qbhJPkIEfLEg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.", "video": false, "id": 2977, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Becoming Jane", "tagline": "Her own life is her greatest inspiration.", "vote_count": 59, "homepage": "http://becomingjane-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416508", "adult": false, "backdrop_path": "/wf8GI3QtL4IM2645Fm7OqRqXCkH.jpg", "production_companies": [{"name": "Ecosse Films", "id": 1267}, {"name": "2 Entertain", "id": 2689}, {"name": "Bueprint Pictures", "id": 6342}], "release_date": "2007-03-02", "popularity": 0.580198544068316, "original_title": "Becoming Jane", "budget": 12000000, "cast": [{"name": "Anne Hathaway", "character": "Jane Austen", "id": 1813, "credit_id": "52fe4378c3a36847f805699f", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "James McAvoy", "character": "Tom Lefroy", "id": 5530, "credit_id": "52fe4378c3a36847f80569a3", "cast_id": 11, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Julie Walters", "character": "Mrs. Austen", "id": 477, "credit_id": "52fe4378c3a36847f80569a7", "cast_id": 12, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 2}, {"name": "James Cromwell", "character": "Mr. Austen", "id": 2505, "credit_id": "52fe4378c3a36847f80569ab", "cast_id": 13, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Lady Gresham", "id": 10978, "credit_id": "52fe4378c3a36847f80569af", "cast_id": 14, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Joe Anderson", "character": "Henry Austen", "id": 29234, "credit_id": "52fe4378c3a36847f80569b3", "cast_id": 15, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 5}, {"name": "Lucy Cohu", "character": "Eliza de Feuillide", "id": 29235, "credit_id": "52fe4378c3a36847f80569b7", "cast_id": 16, "profile_path": "/fMIOyKGpremDJs5NJP44TutbyfO.jpg", "order": 6}, {"name": "Laurence Fox", "character": "Mr. Wisley", "id": 6366, "credit_id": "52fe4378c3a36847f80569bb", "cast_id": 17, "profile_path": "/1LuB3Xd7P0oJQzylGErxIeJFf44.jpg", "order": 7}, {"name": "Ian Richardson", "character": "Richter Langlois", "id": 385, "credit_id": "52fe4378c3a36847f80569bf", "cast_id": 18, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 8}, {"name": "Anna Maxwell Martin", "character": "Cassandra Austen", "id": 29236, "credit_id": "52fe4378c3a36847f80569c3", "cast_id": 19, "profile_path": "/gUJuwFUTNaj7U2mC3DBe8DaYuuX.jpg", "order": 9}, {"name": "Leo Bill", "character": "John Warren", "id": 29237, "credit_id": "52fe4378c3a36847f80569c7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jessica Ashworth", "character": "Lucy Lefroy", "id": 29238, "credit_id": "52fe4378c3a36847f80569cb", "cast_id": 21, "profile_path": "/3NIKnL37sOGuWOGeZhzsz1q0BJo.jpg", "order": 11}, {"name": "Michael James Ford", "character": "Mr. Lefroy", "id": 29239, "credit_id": "52fe4378c3a36847f80569cf", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Tom Vaughan-Lawlor", "character": "Robert Fowle", "id": 29240, "credit_id": "52fe4378c3a36847f80569d3", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Chris McHallem", "character": "Mr. Curtis", "id": 33452, "credit_id": "52fe4378c3a36847f80569f5", "cast_id": 30, "profile_path": "/aUTRtF4KnyGTF0VmE63hA8kMZgn.jpg", "order": 14}], "directors": [{"name": "Julian Jarrold", "department": "Directing", "job": "Director", "credit_id": "52fe4378c3a36847f8056971", "profile_path": "/pyWwnd4dYjxSCynxmLkPO1JTzDV.jpg", "id": 29226}], "vote_average": 6.6, "runtime": 120}, "11170": {"poster_path": "/5QElczp80krYemPJwamBi9IZMd3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43545364, "overview": "When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.", "video": false, "id": 11170, "genres": [{"id": 18, "name": "Drama"}], "title": "We Are Marshall", "tagline": "From the ashes we rose.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758794", "adult": false, "backdrop_path": "/qZvPzSUI3qGlQtK1mVXt9Z6UCZA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2006-12-12", "popularity": 1.06952362339836, "original_title": "We Are Marshall", "budget": 65000000, "cast": [{"name": "Matthew McConaughey", "character": "Jack Lengyel", "id": 10297, "credit_id": "52fe44079251416c75026731", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Matthew Fox", "character": "Red Dawson", "id": 28657, "credit_id": "52fe44079251416c75026735", "cast_id": 2, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 1}, {"name": "Anthony Mackie", "character": "Nate Ruffin", "id": 53650, "credit_id": "52fe44079251416c75026739", "cast_id": 3, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 2}, {"name": "David Strathairn", "character": "President Dedmon", "id": 11064, "credit_id": "52fe44079251416c7502673d", "cast_id": 4, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 3}, {"name": "Ian McShane", "character": "Paul Griffen", "id": 6972, "credit_id": "52fe44079251416c75026741", "cast_id": 5, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 4}, {"name": "Kate Mara", "character": "Annie Cantrell", "id": 51072, "credit_id": "52fe44079251416c75026745", "cast_id": 6, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 5}, {"name": "January Jones", "character": "Carole Dawson", "id": 31717, "credit_id": "52fe44079251416c75026749", "cast_id": 7, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 6}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe44079251416c75026791", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 6.3, "runtime": 124}, "11172": {"poster_path": "/jhv9qSAuwGkzVj1pSnu3HQBb8Qe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145896422, "overview": "A washed up singer is given a couple days to compose a chart-topping hit for an aspiring teen sensation. Though he's never written a decent lyric in his life, he sparks with an offbeat younger woman with a flair for words.", "video": false, "id": 11172, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Music and Lyrics", "tagline": "Share the music with someone you love.", "vote_count": 171, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758766", "adult": false, "backdrop_path": "/t6FwromtGll1dOwVwRu8YcWQdZO.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Reserve Room", "id": 10222}, {"name": "Flower Films (II)", "id": 19813}], "release_date": "2007-02-09", "popularity": 0.354820005131745, "original_title": "Music and Lyrics", "budget": 40000000, "cast": [{"name": "Drew Barrymore", "character": "Sophie Fisher", "id": 69597, "credit_id": "52fe44079251416c75026869", "cast_id": 1, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Hugh Grant", "character": "Alex Fletcher", "id": 3291, "credit_id": "52fe44079251416c7502686d", "cast_id": 2, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 1}, {"name": "Scott Porter", "character": "Colin Thompson", "id": 53368, "credit_id": "52fe44079251416c75026871", "cast_id": 3, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 2}, {"name": "Brad Garrett", "character": "Chris Riley", "id": 18, "credit_id": "52fe44079251416c75026875", "cast_id": 4, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 3}, {"name": "Haley Bennett", "character": "Cora Corman", "id": 58754, "credit_id": "52fe44079251416c750268a9", "cast_id": 15, "profile_path": "/wYmPPXn61F1ecMwIFF8AGla8pKQ.jpg", "order": 4}, {"name": "Nick Bacon", "character": "Pop Bass Player", "id": 1077875, "credit_id": "52fe44079251416c750268b9", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Andrew Wyatt", "character": "Pop Guitar Player", "id": 1077876, "credit_id": "52fe44079251416c750268bd", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Dan McMillan", "character": "Pop Drummer", "id": 1077877, "credit_id": "52fe44079251416c750268c1", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tom Foligno", "character": "Has-Beens Promo Announcer (voice)", "id": 1077878, "credit_id": "52fe44079251416c750268c5", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Zak Orth", "character": "David Newbert", "id": 6212, "credit_id": "52fe44079251416c750268c9", "cast_id": 22, "profile_path": "/rKupoahQ3pgeVVXS8EWd1WSnKEO.jpg", "order": 9}, {"name": "Brooke Tansley", "character": "Janice Stern", "id": 207915, "credit_id": "52fe44079251416c750268cd", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Daniel Stewart Sherman", "character": "Willy", "id": 225629, "credit_id": "52fe44079251416c750268d1", "cast_id": 24, "profile_path": "/c8Y5O8oFlTq3c0SJhd80ALg82EC.jpg", "order": 11}, {"name": "Aasif Mandvi", "character": "Khan", "id": 20644, "credit_id": "52fe44079251416c750268d5", "cast_id": 25, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 12}, {"name": "Matthew Morrison", "character": "Ray", "id": 155209, "credit_id": "52fe44079251416c750268d9", "cast_id": 26, "profile_path": "/oB5gRfmJLQYHfm1zSgeyeewnZr5.jpg", "order": 13}, {"name": "Jason Antoon", "character": "Greg Antonsky", "id": 130749, "credit_id": "52fe44079251416c750268dd", "cast_id": 27, "profile_path": "/muhQKtaOAZ7d3kG1zZ8nNakuIuz.jpg", "order": 14}, {"name": "Jeremy Karson", "character": "Charlie", "id": 1024027, "credit_id": "52fe44089251416c750268e1", "cast_id": 28, "profile_path": "/tN9AzlOxFaHTdCTZnIVGM4jhOay.jpg", "order": 15}, {"name": "Emma Lesser", "character": "Lucy", "id": 163934, "credit_id": "52fe44089251416c750268e5", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Kristen Johnston", "character": "Rhonda", "id": 13635, "credit_id": "52fe44089251416c750268e9", "cast_id": 30, "profile_path": "/r0FSG3VDWDxu5sAlC6EoXjHvjdi.jpg", "order": 17}, {"name": "Adam Grupper", "character": "Gary", "id": 159826, "credit_id": "52fe44089251416c750268ed", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Charlotte Maier", "character": "Barbara", "id": 26722, "credit_id": "52fe44089251416c750268f1", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Toni Trucks", "character": "Tricia", "id": 105831, "credit_id": "52fe44089251416c750268f5", "cast_id": 33, "profile_path": "/pmXJ5l5udyotzZzeRbhLq62f4wa.jpg", "order": 20}, {"name": "Lanette Ware", "character": "Mia", "id": 164433, "credit_id": "52fe44089251416c750268f9", "cast_id": 34, "profile_path": "/1j0P8BSRoSfj3RBtMJMtGz6xJQh.jpg", "order": 21}, {"name": "Campbell Scott", "character": "Sloan Cates", "id": 55152, "credit_id": "52fe44089251416c750268fd", "cast_id": 35, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 22}, {"name": "Billy Griffith", "character": "Derek", "id": 163866, "credit_id": "52fe44089251416c75026901", "cast_id": 36, "profile_path": "/hNCw3Eb3Q06VY3YTDPTAx6M4P2I.jpg", "order": 23}, {"name": "Kathleen McNenny", "character": "Gloria", "id": 171673, "credit_id": "52fe44089251416c75026905", "cast_id": 37, "profile_path": "/rKL9p7vvxBYwCGfQuocAcWxp13h.jpg", "order": 24}, {"name": "Stevie Ray Dallimore", "character": "Maitre d'", "id": 155077, "credit_id": "52fe44089251416c75026909", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Spenser Leigh", "character": "Beth Riley", "id": 978719, "credit_id": "52fe44089251416c7502690d", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Lou Torres", "character": "Security Guard", "id": 163991, "credit_id": "52fe44089251416c75026911", "cast_id": 40, "profile_path": null, "order": 27}], "directors": [{"name": "Marc Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe44079251416c750268af", "profile_path": "/6842GmjEw9svtkqA3XhXWWNY7px.jpg", "id": 18323}], "vote_average": 6.0, "runtime": 96}, "43947": {"poster_path": "/7hA8FfUAwBJut4MSIhR6eCF8li7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 280581, "overview": "A remake of the 1979 controversial cult classic, I Spit on Your Grave retells the horrific tale of writer Jennifer Hills who takes a retreat from the city to a charming cabin in the woods to start on her next book. But Jennifer's presence in the small town attracts the attention of a few morally deprived locals led by Johnny, the town's service station owner, his two co-workers, Andy and Stanley, who along with their socially and mentally challenged friend Matthew, set out one night to teach this city girl a lesson.", "video": false, "id": 43947, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I Spit on Your Grave", "tagline": "It's Date Night", "vote_count": 113, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pXSHMjNXeIaYVjYd285LLg6385m.jpg", "poster_path": "/twoKFP4fjfOReWw8U13P39cj8xG.jpg", "id": 219691, "name": "I Spit on Your Grave Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1242432", "adult": false, "backdrop_path": "/2xyzIvklnHNkJ69HdEQYLCI18SY.jpg", "production_companies": [{"name": "Anchor Bay Films", "id": 5860}, {"name": "Family of the Year Productions", "id": 21624}, {"name": "Cinetel Films", "id": 10399}], "release_date": "2010-06-17", "popularity": 0.899400310914206, "original_title": "I Spit on Your Grave", "budget": 2000000, "cast": [{"name": "Sarah Butler", "character": "Jennifer Hills", "id": 129928, "credit_id": "52fe466dc3a36847f80fe6cf", "cast_id": 2, "profile_path": "/9di1qZk4hLeDQk50miaA0VmIhTu.jpg", "order": 0}, {"name": "Daniel Franzese", "character": "Stanley", "id": 32598, "credit_id": "52fe466dc3a36847f80fe6d3", "cast_id": 3, "profile_path": "/6KzFC4ypjbKcgoRKo4Bi1IWq1rK.jpg", "order": 1}, {"name": "Chad Lindberg", "character": "Matthew", "id": 9186, "credit_id": "52fe466dc3a36847f80fe6d7", "cast_id": 4, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 2}, {"name": "Jeff Branson", "character": "John 'Johnny' Miller", "id": 90576, "credit_id": "52fe466dc3a36847f80fe6f9", "cast_id": 13, "profile_path": "/uQaSufoEnD1rPn8Sgf3i4mK8INz.jpg", "order": 3}, {"name": "Rodney Eastman", "character": "Andy", "id": 63916, "credit_id": "52fe466dc3a36847f80fe6fd", "cast_id": 14, "profile_path": "/mxA0J0Ky7XZsn4yXWj5koXTkYBq.jpg", "order": 4}, {"name": "Andrew Howard", "character": "Sheriff Storch", "id": 67206, "credit_id": "52fe466dc3a36847f80fe701", "cast_id": 15, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 5}, {"name": "Tracey Walter", "character": "Earl", "id": 3801, "credit_id": "53e89ce9c3a368398a003699", "cast_id": 23, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 6}, {"name": "Mollie Milligan", "character": "Mrs. Storch", "id": 1352105, "credit_id": "53e89d18c3a3683995003604", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Saxon Sharbino", "character": "Chastity Storch", "id": 1079805, "credit_id": "53e89d46c3a36839990035d1", "cast_id": 25, "profile_path": "/eV1AWBvNJql4U5uFOCJZg4ZD8ob.jpg", "order": 8}], "directors": [{"name": "Steven R. Monroe", "department": "Directing", "job": "Director", "credit_id": "52fe466dc3a36847f80fe6cb", "profile_path": "/6CeSKA4OIbdPpkuX6SKYCH3RAnk.jpg", "id": 88039}], "vote_average": 6.5, "runtime": 108}, "43949": {"poster_path": "/y83lXCINtnoW2yTiQrSMhobkjyr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1755212, "overview": "Two eighth graders start to have feelings for each other despite being total opposites. Based on the novel \"Flipped\" by Wendelin Van Draanen.", "video": false, "id": 43949, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Flipped", "tagline": "You never forget your first love.", "vote_count": 87, "homepage": "http://flipped-movie.warnerbros.com/dvd/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0817177", "adult": false, "backdrop_path": "/29DDoPM1qV6DqLUfNAY9jRhd7sR.jpg", "production_companies": [{"name": "Biograf Jan Sv\u011br\u00e1k", "id": 6419}], "release_date": "2010-10-14", "popularity": 0.766298674462303, "original_title": "Flipped", "budget": 14000000, "cast": [{"name": "Madeline Carroll", "character": "Juli Baker", "id": 62564, "credit_id": "52fe466dc3a36847f80fe771", "cast_id": 2, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 0}, {"name": "Callan McAuliffe", "character": "Bryce Loski", "id": 236851, "credit_id": "52fe466dc3a36847f80fe795", "cast_id": 13, "profile_path": "/a4oVlU0LMJjwOjP5a1jHol1Nv5l.jpg", "order": 1}, {"name": "Anthony Edwards", "character": "Steven Loski", "id": 11085, "credit_id": "52fe466dc3a36847f80fe779", "cast_id": 5, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 3}, {"name": "Aidan Quinn", "character": "Richard Baker", "id": 18992, "credit_id": "52fe466dc3a36847f80fe785", "cast_id": 8, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 5}, {"name": "Rebecca De Mornay", "character": "Pasty Loski", "id": 28412, "credit_id": "52fe466dc3a36847f80fe775", "cast_id": 4, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 6}, {"name": "John Mahoney", "character": "Chet Duncan", "id": 4251, "credit_id": "52fe466dc3a36847f80fe77d", "cast_id": 6, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 7}, {"name": "Penelope Ann Miller", "character": "Trina Baker", "id": 14698, "credit_id": "52fe466dc3a36847f80fe781", "cast_id": 7, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 7}, {"name": "Morgan Lily", "character": "Young Juli Baker", "id": 74227, "credit_id": "52fe466dc3a36847f80fe7a5", "cast_id": 18, "profile_path": "/iYa30gYkaxXLsGvUZ9WhieQw2xo.jpg", "order": 8}, {"name": "Kevin Weisman", "character": "Daniel Baker", "id": 149670, "credit_id": "52fe466dc3a36847f80fe7a9", "cast_id": 19, "profile_path": "/dISGU7Xf0O25wbRn2tGtg7XoJyp.jpg", "order": 9}, {"name": "Cody Horn", "character": "Lynetta", "id": 582816, "credit_id": "52fe466dc3a36847f80fe7ad", "cast_id": 20, "profile_path": "/3cBTrMdZF9Yj12IUAHb9a46qplS.jpg", "order": 10}, {"name": "Israel Broussard", "character": "Garrett", "id": 969140, "credit_id": "52fe466dc3a36847f80fe7b1", "cast_id": 21, "profile_path": "/ztE0nfwxNRYSh4EpDyhs9OrYFAT.jpg", "order": 11}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe466dc3a36847f80fe76d", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.2, "runtime": 90}, "11186": {"poster_path": "/rDJg9f89bEzSe3eXuAUIZXToAUZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35763605, "overview": "Chuckie's back as the doll possessed by the soul of a serial killer, butchering all who stand in his way of possessing the body of a boy.", "video": false, "id": 11186, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Child's Play 2", "tagline": "Look out Jack! Chucky's back!", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099253", "adult": false, "backdrop_path": "/ri0SMQlUWCIBE5nRpLHRnFQYjyh.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1990-11-09", "popularity": 0.772648753010926, "original_title": "Child's Play 2", "budget": 13000000, "cast": [{"name": "Alex Vincent", "character": "Andy Barclay", "id": 65683, "credit_id": "52fe440b9251416c75026f6d", "cast_id": 1, "profile_path": "/jR4RmOgv77uVsxOWbTMy5LWZiBg.jpg", "order": 0}, {"name": "Jenny Agutter", "character": "Joanne Simpson", "id": 14464, "credit_id": "52fe440b9251416c75026f71", "cast_id": 2, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 1}, {"name": "Gerrit Graham", "character": "Phil Simpson", "id": 26283, "credit_id": "52fe440b9251416c75026f75", "cast_id": 3, "profile_path": "/uXcWDznKXAbquPEHLlKKm7EeyoF.jpg", "order": 2}, {"name": "Christine Elise", "character": "Kyle", "id": 39113, "credit_id": "52fe440b9251416c75026f79", "cast_id": 4, "profile_path": "/2xyE07usRwBL8g9vVWWuvAbAbrO.jpg", "order": 3}, {"name": "Brad Dourif", "character": "Chucky", "id": 1370, "credit_id": "52fe440b9251416c75026f7d", "cast_id": 5, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 4}, {"name": "Grace Zabriskie", "character": "Grace Poole", "id": 6465, "credit_id": "52fe440b9251416c75026f81", "cast_id": 6, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 5}, {"name": "Peter Haskell", "character": "Sullivan", "id": 152647, "credit_id": "52fe440b9251416c75026faf", "cast_id": 15, "profile_path": "/3RNGnjaZyxbt3kIgHrxekjw4G3c.jpg", "order": 6}, {"name": "Beth Grant", "character": "Miss Kettlewell", "id": 5151, "credit_id": "52fe440b9251416c75026fb3", "cast_id": 16, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Greg Germann", "character": "Mattson", "id": 19974, "credit_id": "52fe440b9251416c75026fb7", "cast_id": 17, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 8}, {"name": "Raymond Singer", "character": "Social Worker", "id": 66194, "credit_id": "52fe440b9251416c75026fbb", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "John Lafia", "department": "Directing", "job": "Director", "credit_id": "52fe440b9251416c75026f87", "profile_path": null, "id": 65678}], "vote_average": 5.9, "runtime": 84}, "101299": {"poster_path": "/tAhSyLxpaZJCr1oc2a3flvC2B7x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 847423452, "overview": "Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a \"Victor's Tour\" of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.", "video": false, "id": 101299, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Hunger Games: Catching Fire", "tagline": "Every revolution begins with a spark.", "vote_count": 1874, "homepage": "http://www.thehungergamesexplorer.com/us/epk/catching-fire/", "belongs_to_collection": {"backdrop_path": "/lWZB4VFSlU292oJ3ZAzAzPi9GU0.jpg", "poster_path": "/cEBNDEMGqvSvU0knEv9Wl3dk5kv.jpg", "id": 131635, "name": "The Hunger Games Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1951264", "adult": false, "backdrop_path": "/sRJjliXA7ZqHCr7HCK0ZB83xxjr.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Color Force", "id": 5420}], "release_date": "2013-11-22", "popularity": 2.77974926683829, "original_title": "The Hunger Games: Catching Fire", "budget": 130000000, "cast": [{"name": "Jennifer Lawrence", "character": "Katniss Everdeen", "id": 72129, "credit_id": "52fe49eec3a36847f81ae117", "cast_id": 4, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Peeta Mellark", "id": 27972, "credit_id": "52fe49eec3a36847f81ae11b", "cast_id": 5, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Sam Claflin", "character": "Finnick Odair", "id": 237455, "credit_id": "52fe49eec3a36847f81ae149", "cast_id": 15, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 2}, {"name": "Elizabeth Banks", "character": "Effie Trinket", "id": 9281, "credit_id": "52fe49eec3a36847f81ae14d", "cast_id": 16, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 3}, {"name": "Alan Ritchson", "character": "Gloss", "id": 64295, "credit_id": "52fe49eec3a36847f81ae151", "cast_id": 17, "profile_path": "/aCyp11i8yTFqa8vOAksarDkRfR7.jpg", "order": 4}, {"name": "Jena Malone", "character": "Johanna Mason", "id": 20089, "credit_id": "52fe49eec3a36847f81ae155", "cast_id": 18, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 5}, {"name": "Stanley Tucci", "character": "Caeser Flickerman", "id": 2283, "credit_id": "52fe49eec3a36847f81ae159", "cast_id": 19, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 6}, {"name": "Willow Shields", "character": "Primrose Everdeen", "id": 530025, "credit_id": "52fe49eec3a36847f81ae15d", "cast_id": 20, "profile_path": "/bKMAnqGbyVeiRBG3im1Y33Vtrgx.jpg", "order": 7}, {"name": "Woody Harrelson", "character": "Haymitch Abernathy", "id": 57755, "credit_id": "52fe49eec3a36847f81ae161", "cast_id": 21, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 8}, {"name": "Philip Seymour Hoffman", "character": "Plutarch Heavensbee", "id": 1233, "credit_id": "52fe49eec3a36847f81ae165", "cast_id": 22, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 9}, {"name": "Donald Sutherland", "character": "President Snow", "id": 55636, "credit_id": "52fe49eec3a36847f81ae169", "cast_id": 23, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 10}, {"name": "Jeffrey Wright", "character": "Beetee", "id": 2954, "credit_id": "54ef97be9251413ae8003cff", "cast_id": 43, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 11}, {"name": "Amanda Plummer", "character": "Wiress", "id": 99, "credit_id": "52fe49eec3a36847f81ae16d", "cast_id": 24, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 12}, {"name": "Meta Golding", "character": "Enobaria", "id": 165242, "credit_id": "52fe49eec3a36847f81ae171", "cast_id": 25, "profile_path": "/fvIy2cWlYs2PcuXjTLMt4QpOQnf.jpg", "order": 13}, {"name": "Lenny Kravitz", "character": "Cinna", "id": 77069, "credit_id": "52fe49eec3a36847f81ae175", "cast_id": 26, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 14}, {"name": "Lynn Cohen", "character": "Mags", "id": 8792, "credit_id": "52fe49eec3a36847f81ae179", "cast_id": 27, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 15}, {"name": "Toby Jones", "character": "Claudius Templesmith", "id": 13014, "credit_id": "52fe49eec3a36847f81ae17d", "cast_id": 28, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 16}, {"name": "Stephanie Leigh Schlund", "character": "Cashmere", "id": 1086221, "credit_id": "52fe49eec3a36847f81ae181", "cast_id": 29, "profile_path": "/x90FxHKLJRpGxKf06fFAcs0fUZe.jpg", "order": 17}, {"name": "Bruno Gunn", "character": "Brutus", "id": 1086222, "credit_id": "52fe49eec3a36847f81ae185", "cast_id": 30, "profile_path": "/gvjIPGaYREusDXwGIgK4H2aMFyM.jpg", "order": 18}, {"name": "Maria Howell", "character": "Seeder", "id": 80616, "credit_id": "52fe49eec3a36847f81ae189", "cast_id": 31, "profile_path": "/slp3efuuvxwTFA65zmFAHVo96K9.jpg", "order": 19}, {"name": "E. Roger Mitchell", "character": "Chaff", "id": 41020, "credit_id": "52fe49eec3a36847f81ae18d", "cast_id": 32, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 20}, {"name": "Patrick St. Esprit", "character": "Romulus Thread", "id": 117437, "credit_id": "52fe49eec3a36847f81ae191", "cast_id": 33, "profile_path": "/bcbLFQUGDcgrlbJz0blywlfGutL.jpg", "order": 21}, {"name": "Liam Hemsworth", "character": "Gale Hawthorne", "id": 96066, "credit_id": "52fe49eec3a36847f81ae19b", "cast_id": 35, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 22}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe49eec3a36847f81ae1a7", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 7.6, "runtime": 146}, "9647": {"poster_path": "/9gUQPVt0QZYKUBrGGtknfrsRQ1c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60328000, "overview": "Frank Cross runs a US TV station which is planning a live adaptation of Dickens' Christmas Carol. Frank's childhood wasn't a particularly pleasant one, and so he doesn't really appreciate the Christmas spirit. With the help of the ghosts of Christmas past, present and future, Frank realizes he must change.", "video": false, "id": 9647, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Scrooged", "tagline": "The spirits will move you in odd and hysterical ways.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096061", "adult": false, "backdrop_path": "/6xezVJoUp0cZUBQeIDpW6lFuhcd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-11-22", "popularity": 0.553232201938376, "original_title": "Scrooged", "budget": 0, "cast": [{"name": "Bill Murray", "character": "Francis Xavier Cross", "id": 1532, "credit_id": "52fe4516c3a36847f80bba6f", "cast_id": 11, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Karen Allen", "character": "Claire Phillips", "id": 650, "credit_id": "52fe4516c3a36847f80bba73", "cast_id": 12, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 1}, {"name": "John Glover", "character": "Bryce Cummings", "id": 5589, "credit_id": "52fe4516c3a36847f80bba77", "cast_id": 13, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 2}, {"name": "John Forsythe", "character": "Lew Hayward", "id": 24367, "credit_id": "52fe4516c3a36847f80bba7b", "cast_id": 14, "profile_path": "/5sEnkUlmynZtmV9mzpn896GmtX.jpg", "order": 3}, {"name": "Bobcat Goldthwait", "character": "Eliot Loudermilk", "id": 95024, "credit_id": "52fe4516c3a36847f80bba7f", "cast_id": 15, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 4}, {"name": "Jamie Farr", "character": "Jacob Marley", "id": 55432, "credit_id": "52fe4516c3a36847f80bba83", "cast_id": 16, "profile_path": "/rvM7jVzQru580RPg3kBXNmyZCnU.jpg", "order": 5}, {"name": "Brian Doyle-Murray", "character": "Earl Cross", "id": 1535, "credit_id": "52fe4516c3a36847f80bba87", "cast_id": 17, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 6}, {"name": "Carol Kane", "character": "Ghost of Christmas Present", "id": 10556, "credit_id": "52fe4516c3a36847f80bba8b", "cast_id": 18, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 7}, {"name": "Michael J. Pollard", "character": "Herman", "id": 6451, "credit_id": "52fe4516c3a36847f80bba8f", "cast_id": 19, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 8}, {"name": "Robert Goulet", "character": "Himself", "id": 128621, "credit_id": "52fe4516c3a36847f80bba93", "cast_id": 20, "profile_path": "/776KzwV8l62Wz4gGWnifTUtf8A2.jpg", "order": 9}, {"name": "Mary Ellen Trainor", "character": "Ted", "id": 23967, "credit_id": "52fe4516c3a36847f80bba97", "cast_id": 21, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 10}, {"name": "John Houseman", "character": "Himself", "id": 11783, "credit_id": "52fe4516c3a36847f80bba9b", "cast_id": 22, "profile_path": "/cfG4HXRJRnkJqzlfpjtc9T2L9Ls.jpg", "order": 11}, {"name": "Buddy Hackett", "character": "Scrooge", "id": 67393, "credit_id": "52fe4516c3a36847f80bba9f", "cast_id": 23, "profile_path": "/zYLAknEo17XgWU44DbT2FCvLQps.jpg", "order": 12}, {"name": "Robert Mitchum", "character": "Grace Cooley", "id": 10158, "credit_id": "52fe4516c3a36847f80bbaa7", "cast_id": 25, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 14}, {"name": "David Johansen", "character": "Ghost of Christmas Past", "id": 57116, "credit_id": "52fe4516c3a36847f80bbaab", "cast_id": 26, "profile_path": "/SbnUy4Iiag3WCvDdgAmYYwA0sn.jpg", "order": 15}, {"name": "Al 'Red Dog' Weber", "character": "Santa Clause", "id": 1445668, "credit_id": "5513036a92514104ab0018bd", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Robert Hammond", "character": "Ghost of Christmas Future", "id": 1445670, "credit_id": "55130445c3a3683f3900a0b1", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Nicholas Phillips", "character": "Calvin Cooley", "id": 1445671, "credit_id": "551304fe92514104ab0018df", "cast_id": 29, "profile_path": null, "order": 18}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4516c3a36847f80bba47", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.4, "runtime": 101}, "76726": {"poster_path": "/6uaJhUNP1VXyRQS6cGyQD4RbZsj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145000000, "overview": "Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.", "video": false, "id": 76726, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Chronicle", "tagline": "What are you capable of?", "vote_count": 536, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1706593", "adult": false, "backdrop_path": "/f54d3tpzdRW02IDIIVRuwiY2N3K.jpg", "production_companies": [{"name": "Adam Schroeder Productions", "id": 43394}, {"name": "Dune Entertainment", "id": 444}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2012-02-02", "popularity": 1.33305233501353, "original_title": "Chronicle", "budget": 15000000, "cast": [{"name": "Dane DeHaan", "character": "Andrew Detmer", "id": 122889, "credit_id": "52fe494ac3a368484e12407f", "cast_id": 2, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 0}, {"name": "Alex Russell", "character": "Matt Garetty", "id": 558466, "credit_id": "52fe494ac3a368484e124083", "cast_id": 4, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "John Olfman", "id": 1072642, "credit_id": "553758ea9251414ab90015a6", "cast_id": 82, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Michael Kelly", "character": "Richard Detmer", "id": 50217, "credit_id": "52fe494ac3a368484e124087", "cast_id": 5, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 3}, {"name": "Michael B. Jordan", "character": "Steve Montgomery", "id": 135651, "credit_id": "52fe494ac3a368484e12408b", "cast_id": 6, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 4}, {"name": "Anna Wood", "character": "Monica", "id": 213044, "credit_id": "52fe494ac3a368484e12408f", "cast_id": 7, "profile_path": "/hbIqlG4mv9ruNZigHCtecLA49gs.jpg", "order": 5}, {"name": "Ashley Hinshaw", "character": "Casey Letter", "id": 589098, "credit_id": "52fe494ac3a368484e124093", "cast_id": 8, "profile_path": "/7PgDm9aDweOtr6y0dmtemoR4nFW.jpg", "order": 6}, {"name": "Joe Vaz", "character": "Michael Ernesto", "id": 137463, "credit_id": "52fe494ac3a368484e124097", "cast_id": 9, "profile_path": "/wNW0XpdWxAe2pzVjbRagqdhBEHk.jpg", "order": 7}, {"name": "Luke Tyler", "character": "Sean", "id": 934796, "credit_id": "52fe494ac3a368484e12409b", "cast_id": 10, "profile_path": "/1dFufId1Q8qex5bz6RhVBARhuz0.jpg", "order": 8}, {"name": "Crystal-Donna Roberts", "character": "Samantha", "id": 231651, "credit_id": "54ad5627c3a3680c2100c0d8", "cast_id": 81, "profile_path": null, "order": 9}], "directors": [{"name": "Josh Trank", "department": "Directing", "job": "Director", "credit_id": "52fe494ac3a368484e1240a1", "profile_path": null, "id": 934803}], "vote_average": 6.2, "runtime": 84}, "43959": {"poster_path": "/t7twsxCK3vIkn4z0w4WwHuVZPNy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43000000, "overview": "Soul Surfer is the inspiring true story of teen surfer Bethany Hamilton. Bethany lost her left arm in a shark attack and courageously overcame all odds to become a champion again, through her sheer determination and unwavering faith.Bethany (AnnaSophia Robb) was born to surf. A natural talent who took to the waves at a young age, she was leading an idyllic life on Kauai, participating in national surf competitions with her best friend Alana (Lorraine Nicholson), when everything changed. On Halloween morning, a 14-foot tiger shark came out of nowhere and seemed to shatter all her dreams.Soul Surfer reveals Bethany's fight to recover from her ordeal and how she grappled with the question of her future. Strengthened by the love of her parents, Tom (Dennis Quaid) and Cheri (Helen Hunt), and supported by her youth group leader Sara (Carrie Underwood), Bethany refuses to give in or give up, and begins a bold return to the water.", "video": false, "id": 43959, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Soul Surfer", "tagline": "When you come back from a loss, beat the odds, and never say never, you find a champion.", "vote_count": 101, "homepage": "http://www.soulsurferthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1596346", "adult": false, "backdrop_path": "/kkRc3JndbQtbH6ZQeOvU4vztgKS.jpg", "production_companies": [{"name": "FilmDistrict", "id": 7263}, {"name": "Brookwell-McNamara Entertainment", "id": 3235}, {"name": "Affirm Films", "id": 10156}, {"name": "Mandalay Pictures", "id": 551}, {"name": "TriStar Pictures", "id": 559}], "release_date": "2011-04-08", "popularity": 0.58233843133009, "original_title": "Soul Surfer", "budget": 18000000, "cast": [{"name": "AnnaSophia Robb", "character": "Bethany Hamilton", "id": 1285, "credit_id": "52fe466dc3a36847f80fe91d", "cast_id": 3, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Tom Hamilton", "id": 6065, "credit_id": "52fe466dc3a36847f80fe919", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Helen Hunt", "character": "Cheri Hamilton", "id": 9994, "credit_id": "52fe466dc3a36847f80fe921", "cast_id": 4, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 2}, {"name": "Lorraine Nicholsan", "character": "Alana Blanchard", "id": 231312, "credit_id": "52fe466dc3a36847f80fe925", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Carrie Underwood", "character": "Sarah Hill", "id": 96091, "credit_id": "52fe466dc3a36847f80fe929", "cast_id": 6, "profile_path": "/bJf4NqWpOdXUHqOGISHC8qWnpLo.jpg", "order": 4}, {"name": "Kevin Sorbo", "character": "Holt Blanchard", "id": 51965, "credit_id": "52fe466dc3a36847f80fe92d", "cast_id": 7, "profile_path": "/kPwVLsAMDZDsFVmXjg1zG5cLltT.jpg", "order": 5}, {"name": "Jeremy Sumter", "character": "Byron", "id": 231313, "credit_id": "52fe466dc3a36847f80fe931", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Ross Thomas", "character": "Noah Hamilton", "id": 77448, "credit_id": "52fe466dc3a36847f80fe935", "cast_id": 9, "profile_path": "/g55grA2w6q9UJYreo3K5zuiAT38.jpg", "order": 7}, {"name": "Sonya Balmores Chung", "character": "Malina Birch", "id": 206833, "credit_id": "52fe466dc3a36847f80fe939", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Chris Brochu", "character": "Timmy Hamilton", "id": 146510, "credit_id": "52fe466dc3a36847f80fe93d", "cast_id": 11, "profile_path": "/sS8QCd4LhgxMde8Zr2OKXeQJ6Bz.jpg", "order": 9}], "directors": [{"name": "Sean McNamara", "department": "Directing", "job": "Director", "credit_id": "52fe466dc3a36847f80fe915", "profile_path": "/pKKDKqlqaIN1brq0RGYCEgKEn3P.jpg", "id": 129952}], "vote_average": 6.9, "runtime": 106}, "27576": {"poster_path": "/956xMjH4sPoqimqoLOP6AI19mjm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 293329073, "overview": "As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a defector accuses her of being a Russian spy. Salt goes on the run, using all her skills and years of experience as a covert operative to elude capture. Salt's efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: \"Who is Salt?\"", "video": false, "id": 27576, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Salt", "tagline": "Who is Salt?", "vote_count": 776, "homepage": "http://www.sonypictures.com/homevideo/salt/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0944835", "adult": false, "backdrop_path": "/vHLsgsvLtFWDlhBigKDRsYIC1p6.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2010-07-23", "popularity": 1.42294219247014, "original_title": "Salt", "budget": 110000000, "cast": [{"name": "Angelina Jolie", "character": "Evelyn Salt", "id": 11701, "credit_id": "52fe4555c3a368484e054141", "cast_id": 45, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Liev Schreiber", "character": "Winter", "id": 23626, "credit_id": "52fe4555c3a368484e05409f", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 1}, {"name": "Corey Stoll", "character": "Shnaider", "id": 74541, "credit_id": "52fe4555c3a368484e0540c3", "cast_id": 12, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 2}, {"name": "Chiwetel Ejiofor", "character": "Peabody", "id": 5294, "credit_id": "52fe4555c3a368484e0540a3", "cast_id": 4, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 3}, {"name": "Daniel Olbrychski", "character": "Russian Ex-Secret Agent", "id": 7107, "credit_id": "52fe4555c3a368484e0540bb", "cast_id": 10, "profile_path": "/nfqJ8xiVNyBQQhnYRkwJzl3iS7s.jpg", "order": 4}, {"name": "August Diehl", "character": "Mike Krause", "id": 6091, "credit_id": "52fe4555c3a368484e05412b", "cast_id": 38, "profile_path": "/A3MqiHyxUVrTHmuSh4nvzOLUeNx.jpg", "order": 5}, {"name": "Yara Shahidi", "character": "Cleo", "id": 118372, "credit_id": "52fe4555c3a368484e0540ab", "cast_id": 6, "profile_path": "/v3AVrFCOGVoehv4zeyqH26rydot.jpg", "order": 6}, {"name": "Gaius Charles", "character": "Todd Bottoms", "id": 118374, "credit_id": "52fe4555c3a368484e0540af", "cast_id": 7, "profile_path": "/vvzqcei1Ja4sy8pzwnTWO7IhsXQ.jpg", "order": 7}, {"name": "Victor Slezak", "character": "3-Star General", "id": 10379, "credit_id": "52fe4555c3a368484e0540b3", "cast_id": 8, "profile_path": "/m3Wi4uifukUJl2GA3QEOHctPESz.jpg", "order": 8}, {"name": "Cassidy Hinkle", "character": "Young Salt", "id": 118377, "credit_id": "52fe4555c3a368484e0540b7", "cast_id": 9, "profile_path": "/wB0o6gekywhHwvvX2o8tnL7BWWp.jpg", "order": 9}, {"name": "Zoe Lister-Jones", "character": "Zoe Kinnally", "id": 82885, "credit_id": "52fe4555c3a368484e0540a7", "cast_id": 5, "profile_path": "/n7iv3J9vsb05KTioPzhORZCKdRT.jpg", "order": 10}, {"name": "Nicole Signore", "character": "Precision Driver", "id": 118380, "credit_id": "52fe4555c3a368484e0540bf", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Mardi Jones", "character": "CIA / SWAT team", "id": 118403, "credit_id": "52fe4555c3a368484e054127", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Nick Poltoranin", "character": "Russian Thug #1", "id": 118389, "credit_id": "52fe4555c3a368484e0540eb", "cast_id": 22, "profile_path": "/lKAikbeJ5HaWKCJE1ushE89RoIG.jpg", "order": 13}, {"name": "Michelle Ray Smith", "character": "Lead Technician", "id": 118383, "credit_id": "52fe4555c3a368484e0540c7", "cast_id": 13, "profile_path": "/u3LYrrrJ8D3utStTzaUrDC3mvET.jpg", "order": 14}, {"name": "Kevin O'Donnell", "character": "Francis", "id": 118384, "credit_id": "52fe4555c3a368484e0540cb", "cast_id": 14, "profile_path": "/fwKwtaidyl4GU5BSylVcxfax5GS.jpg", "order": 15}, {"name": "Hunt Block", "character": "U.S. President", "id": 44826, "credit_id": "52fe4555c3a368484e0540cf", "cast_id": 15, "profile_path": "/n2OVzSreEqmdmkohl5VkskHRexh.jpg", "order": 16}, {"name": "James Schram", "character": "Corporal Davis - U.S. Military", "id": 118385, "credit_id": "52fe4555c3a368484e0540d3", "cast_id": 16, "profile_path": null, "order": 17}, {"name": "Frosty Lawson", "character": "CIA Agent", "id": 118395, "credit_id": "52fe4555c3a368484e054103", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Cecilia Foss", "character": "The Ritual Matchmaker", "id": 118386, "credit_id": "52fe4555c3a368484e0540d7", "cast_id": 17, "profile_path": "/mvdYcysfPmHX67h9vki2BWveNIa.jpg", "order": 19}, {"name": "Gary Wilmes", "character": "Paul Tracey", "id": 78404, "credit_id": "52fe4555c3a368484e0540db", "cast_id": 18, "profile_path": "/i4AGTHkO84bc0LCQA6EaN9FtIyj.jpg", "order": 20}, {"name": "Harry L. Seddon", "character": "Cop escorting Evelyn Salt from Bombing", "id": 118387, "credit_id": "52fe4555c3a368484e0540df", "cast_id": 19, "profile_path": null, "order": 21}, {"name": "Marion McCorry", "character": "CIA Director Medford", "id": 28046, "credit_id": "52fe4555c3a368484e0540e3", "cast_id": 20, "profile_path": "/kLyiSUWs9kmRG1UurMSAJNMg59E.jpg", "order": 22}, {"name": "Victoria Cartagena", "character": "Portico Checkpoint Agent", "id": 118388, "credit_id": "52fe4555c3a368484e0540e7", "cast_id": 21, "profile_path": "/uJ84HU2eEF4skZJ5e4eq9NSJDO1.jpg", "order": 23}, {"name": "Hristo Hristov", "character": "Russian Thug #3", "id": 118390, "credit_id": "52fe4555c3a368484e0540ef", "cast_id": 23, "profile_path": null, "order": 24}, {"name": "Zach Shaffer", "character": "Security Officer", "id": 118391, "credit_id": "52fe4555c3a368484e0540f3", "cast_id": 24, "profile_path": null, "order": 25}, {"name": "Jewel Elizabeth", "character": "Mourning Granddaughter", "id": 118392, "credit_id": "52fe4555c3a368484e0540f7", "cast_id": 25, "profile_path": null, "order": 26}, {"name": "James Cronin", "character": "Joe Oates", "id": 118393, "credit_id": "52fe4555c3a368484e0540fb", "cast_id": 26, "profile_path": "/mGsXs2033cIeEVo6y4NjFpOn52E.jpg", "order": 27}, {"name": "Philip Willingham", "character": "Camera man", "id": 118394, "credit_id": "52fe4555c3a368484e0540ff", "cast_id": 27, "profile_path": "/6qHAywpfvq92fd75QoTIWgPzEPM.jpg", "order": 28}, {"name": "Dionne Audain", "character": "Coms Agent / Radio Op", "id": 118397, "credit_id": "52fe4555c3a368484e05410b", "cast_id": 30, "profile_path": null, "order": 30}, {"name": "Angelo Lopez", "character": "202. SS Bunker Tech #3", "id": 118398, "credit_id": "52fe4555c3a368484e05410f", "cast_id": 31, "profile_path": "/twsMgWs01NTBNniA5yEOl3hQDhp.jpg", "order": 31}, {"name": "Ivo Velon", "character": "Basayev", "id": 83242, "credit_id": "52fe4555c3a368484e054113", "cast_id": 32, "profile_path": null, "order": 32}, {"name": "Xavier Rafael", "character": "Secret service agent", "id": 118399, "credit_id": "52fe4555c3a368484e054117", "cast_id": 33, "profile_path": null, "order": 33}, {"name": "William Henderson White", "character": "Russian Reporter", "id": 118400, "credit_id": "52fe4555c3a368484e05411b", "cast_id": 34, "profile_path": null, "order": 34}, {"name": "Ethan Ladd", "character": "7-year-old Schnaider", "id": 118401, "credit_id": "52fe4555c3a368484e05411f", "cast_id": 35, "profile_path": null, "order": 35}, {"name": "Tobias Campbell", "character": "12-year-old Schnaider", "id": 118402, "credit_id": "52fe4555c3a368484e054123", "cast_id": 36, "profile_path": null, "order": 36}, {"name": "James Nuciforo", "character": "Military Aide", "id": 1358758, "credit_id": "5417e5ee0e0a263801001fa8", "cast_id": 54, "profile_path": "/6MkEN05F7SK8MFgJIfBtDrv7fue.jpg", "order": 37}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe4555c3a368484e05409b", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.2, "runtime": 100}, "27578": {"poster_path": "/y2qJoYxOhzyidsA60Mqn29H38Lk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 274470394, "overview": "Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert, heavy weapons specialist, demolitionist, and a loose-cannon sniper. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.", "video": false, "id": 27578, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Expendables", "tagline": "Choose Your Weapon.", "vote_count": 1435, "homepage": "http://expendablesthemovie.com/", "belongs_to_collection": {"backdrop_path": "/lA7oDSt6LkyDqtbFGbyuG0afmTI.jpg", "poster_path": "/mpzHpaXjBc7bHAhwcerIznnq9qV.jpg", "id": 126125, "name": "The Expendables Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1320253", "adult": false, "backdrop_path": "/x5u73uBylbyCCnkzUGzt3uozqRp.jpg", "production_companies": [{"name": "Rogue Marble", "id": 696}, {"name": "Nu Image Films", "id": 925}, {"name": "Nimar Studios", "id": 7636}, {"name": "Millennium Films", "id": 10254}], "release_date": "2010-08-03", "popularity": 1.57904027463574, "original_title": "The Expendables", "budget": 80000000, "cast": [{"name": "Sylvester Stallone", "character": "Barney Ross", "id": 16483, "credit_id": "52fe4555c3a368484e0541b5", "cast_id": 4, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Jason Statham", "character": "Lee Christmas", "id": 976, "credit_id": "52fe4555c3a368484e0541b9", "cast_id": 5, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Dolph Lundgren", "character": "Gunnar Jensen", "id": 16644, "credit_id": "52fe4555c3a368484e0541bd", "cast_id": 7, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 2}, {"name": "Eric Roberts", "character": "Monroe", "id": 21315, "credit_id": "52fe4555c3a368484e0541c1", "cast_id": 8, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 3}, {"name": "Randy Couture", "character": "Toll Road", "id": 74748, "credit_id": "52fe4555c3a368484e0541c5", "cast_id": 9, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 4}, {"name": "Steve Austin", "character": "Dan Paine", "id": 77120, "credit_id": "52fe4555c3a368484e0541c9", "cast_id": 10, "profile_path": "/brwLpcsqly66jchMWjrcrc93siI.jpg", "order": 5}, {"name": "David Zayas", "character": "General Garza", "id": 22821, "credit_id": "52fe4555c3a368484e0541cd", "cast_id": 11, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 6}, {"name": "Giselle Iti\u00e9", "character": "Sandra", "id": 99414, "credit_id": "52fe4555c3a368484e0541d1", "cast_id": 12, "profile_path": "/c30T0eE4DVgrbLS6cFQa6X2kk5e.jpg", "order": 7}, {"name": "Terry Crews", "character": "Hale Caesar", "id": 53256, "credit_id": "52fe4555c3a368484e0541d5", "cast_id": 13, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 8}, {"name": "Mickey Rourke", "character": "Tool", "id": 2295, "credit_id": "52fe4555c3a368484e0541d9", "cast_id": 14, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 9}, {"name": "Bruce Willis", "character": "Mr. Church", "id": 62, "credit_id": "52fe4555c3a368484e0541dd", "cast_id": 15, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 10}, {"name": "Arnold Schwarzenegger", "character": "Trench", "id": 1100, "credit_id": "52fe4555c3a368484e0541e1", "cast_id": 16, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 11}, {"name": "Charisma Carpenter", "character": "Lacy", "id": 126502, "credit_id": "52fe4555c3a368484e0541e5", "cast_id": 17, "profile_path": "/y5PFIcVmgycJWzwp4VcaZIOqVY2.jpg", "order": 12}, {"name": "Amin Joseph", "character": "Pirate Leader", "id": 131772, "credit_id": "52fe4555c3a368484e0541e9", "cast_id": 19, "profile_path": "/skvXr7EjcsgVfwoZnmNNjIk4Jmr.jpg", "order": 14}, {"name": "Senyo Amoaku", "character": "Tall Pirate Leader", "id": 115840, "credit_id": "52fe4555c3a368484e0541ed", "cast_id": 20, "profile_path": "/bVmp0pJQoZSPQjOIMaXaRhEjlzf.jpg", "order": 15}, {"name": "Hank Amos", "character": "Paul", "id": 9437, "credit_id": "52fe4555c3a368484e0541f1", "cast_id": 21, "profile_path": "/uBYjSESkBQxoouoImf192XZ4dPl.jpg", "order": 16}, {"name": "Antonio Rodrigo Nogueira", "character": "Garza's Bodyguard #1 and #2", "id": 78815, "credit_id": "52fe4555c3a368484e0541f5", "cast_id": 22, "profile_path": "/kPcJvYXbrFpQ7nsFDXSI1Ex9rp3.jpg", "order": 17}, {"name": "Sassa Nacimento", "character": "Vilena Customs Agent", "id": 131773, "credit_id": "52fe4555c3a368484e0541f9", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "R.A. Rondell", "character": "Gunner's Goon", "id": 14771, "credit_id": "52fe4555c3a368484e0541fd", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Tze Yep", "character": "Gagged Hostage", "id": 131774, "credit_id": "52fe4555c3a368484e054201", "cast_id": 26, "profile_path": "/aV80ilLXK2o50hs7YnY1sX2hoM8.jpg", "order": 20}, {"name": "Gary Daniels", "character": "The Brit", "id": 68559, "credit_id": "52fe4555c3a368484e054205", "cast_id": 27, "profile_path": "/qLzJNzU1mjkywkDSwUZ3xmqGdcu.jpg", "order": 21}, {"name": "Jet Li", "character": "Yin Yang", "id": 1336, "credit_id": "52fe4555c3a368484e054209", "cast_id": 28, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 22}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe4555c3a368484e0541a5", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 5.9, "runtime": 103}, "27579": {"poster_path": "/fSjOt5mNKb1ht8oKu4mVICAwbAt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65464324, "overview": "Alone among assassins, Jack is a master craftsman. When a job in Sweden ends more harshly than expected for this American abroad, he vows to his contact Larry that his next assignment will be his last. Jack reports to the Italian countryside, where he holes up in a small town and relishes being away from death for a spell. The assignment, as specified by a Belgian woman, Mathilde, is in the offing as a weapon is constructed. Surprising himself, Jack seeks out the friendship of local priest Father Benedetto and pursues romance with local woman Clara. But by stepping out of the shadows, Jack may be tempting fate.", "video": false, "id": 27579, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The American", "tagline": "", "vote_count": 164, "homepage": "http://focusfeatures.com/film/the_american/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt1440728", "adult": false, "backdrop_path": "/rRrMFgcn0rsNjywDzjAT5TofVXl.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2010-09-01", "popularity": 0.496079424176239, "original_title": "The American", "budget": 20000000, "cast": [{"name": "George Clooney", "character": "Jack / Edward", "id": 1461, "credit_id": "52fe4555c3a368484e0542c5", "cast_id": 2, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Irina Bj\u00f6rklund", "character": "Ingrid", "id": 85386, "credit_id": "52fe4555c3a368484e054327", "cast_id": 21, "profile_path": "/kfPRkNXKhcD3ufp0XMrjkQONFoT.jpg", "order": 1}, {"name": "Lars Hjelm", "character": "Hunter #1", "id": 1280827, "credit_id": "52fe4555c3a368484e054333", "cast_id": 24, "profile_path": null, "order": 2}, {"name": "Bj\u00f6rn Granath", "character": "Hunter #2", "id": 55002, "credit_id": "52fe4555c3a368484e054337", "cast_id": 25, "profile_path": "/vnAD5t7vyCP7GPicOa2bB3WXJxD.jpg", "order": 3}, {"name": "Johan Leysen", "character": "Pavel", "id": 53904, "credit_id": "52fe4555c3a368484e054323", "cast_id": 20, "profile_path": "/cjLEEzFfEGoEEpHnNxjfso04Dd0.jpg", "order": 4}, {"name": "Paolo Bonacelli", "character": "Father Benedetto", "id": 4819, "credit_id": "52fe4555c3a368484e0542d1", "cast_id": 6, "profile_path": "/evLXJ9ufstKWN00SElhuSVe7FUD.jpg", "order": 5}, {"name": "Giorgio Gobbi", "character": "Man on Vespa", "id": 226029, "credit_id": "52fe4555c3a368484e05433b", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Silvana Bosi", "character": "Old Cheese Vendor", "id": 7556, "credit_id": "52fe4555c3a368484e05433f", "cast_id": 27, "profile_path": "/ipEi2FrAUO3iUM3MGfQKL5g1Wjm.jpg", "order": 7}, {"name": "Thekla Reuten", "character": "Mathilde", "id": 45749, "credit_id": "52fe4555c3a368484e0542c9", "cast_id": 3, "profile_path": "/n6qovt4SJ5hefsW1RHgpdbOPENL.jpg", "order": 8}, {"name": "Guido Palliggiano", "character": "Waiter (Market)", "id": 1223739, "credit_id": "52fe4555c3a368484e054343", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Samuli Vauramo", "character": "Young Swedish Man", "id": 147734, "credit_id": "52fe4555c3a368484e054347", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Antonio Rampino", "character": "Postmaster", "id": 1280828, "credit_id": "52fe4556c3a368484e05434b", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Violante Placido", "character": "Clara", "id": 44649, "credit_id": "52fe4555c3a368484e0542cd", "cast_id": 5, "profile_path": "/371gOs0Tdd8mUFet7PwzCP0s47I.jpg", "order": 12}, {"name": "Filippo Timi", "character": "Fabio", "id": 105868, "credit_id": "52fe4555c3a368484e05432b", "cast_id": 22, "profile_path": "/4ktWnWWHpf2oI5EvDa3DDf9gaAM.jpg", "order": 13}, {"name": "Ilaria Cramerotti", "character": "Hooker #2", "id": 1280829, "credit_id": "52fe4556c3a368484e05434f", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Angelica Novak", "character": "Hooker #3", "id": 1280830, "credit_id": "52fe4556c3a368484e054353", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Isabelle Adriani", "character": "Hooker #1", "id": 585365, "credit_id": "52fe4556c3a368484e054357", "cast_id": 33, "profile_path": "/kYnUgRoFCNZ1voOnuv5PDXR6TFZ.jpg", "order": 16}, {"name": "Raffaele Serao", "character": "Barman (Town Square Bar)", "id": 1280831, "credit_id": "52fe4556c3a368484e05435b", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Anna Foglietta", "character": "Anna", "id": 586953, "credit_id": "52fe4555c3a368484e05432f", "cast_id": 23, "profile_path": "/34KM6wHlpD2Y5Gs6kFVgmNOTNWs.jpg", "order": 18}, {"name": "Sandro Dori", "character": "Waiter (Locanda Grapelli)", "id": 1040332, "credit_id": "52fe4556c3a368484e05435f", "cast_id": 35, "profile_path": null, "order": 19}], "directors": [{"name": "Anton Corbijn", "department": "Directing", "job": "Director", "credit_id": "52fe4555c3a368484e0542c1", "profile_path": "/ov4kjSJGwaYnlgPCENRVexTt4q2.jpg", "id": 45052}], "vote_average": 5.5, "runtime": 105}, "27581": {"poster_path": "/b4mYjC8kKx32BnCNBQeDCA76WBd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152006678, "overview": "NYPD detectives Christopher Danson (Johnson) and P.K. Highsmith (Jackson) are the baddest and most beloved cops in New York City. They don't get tattoos, other men get tattoos of them. Two desks over and one back, sit detectives Allen Gamble (Ferrell) and Terry Hoitz (Wahlberg). You've seen them in the background of photos of Danson and Highsmith, out of focus and eyes closed. They're not heroes, they're \"the other guys.\" But every cop has his or her day and soon Gamble and Hoitz stumble into a seemingly innocuous case no other detective wants to touch that could turn into NYC's biggest crime. It's the opportunity of their lives, but do these guys have the right stuff?", "video": false, "id": 27581, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Other Guys", "tagline": "When the cops are busy... Our only hope is...", "vote_count": 477, "homepage": "http://www.theotherguys-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1386588", "adult": false, "backdrop_path": "/awMESdeGymmNYTMhWvjJE5AP61a.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2010-08-06", "popularity": 0.938639609006253, "original_title": "The Other Guys", "budget": 100000000, "cast": [{"name": "Will Ferrell", "character": "Detective Allen Gamble", "id": 23659, "credit_id": "52fe4556c3a368484e054395", "cast_id": 4, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Detective Terry Hoitz", "id": 13240, "credit_id": "52fe4556c3a368484e054399", "cast_id": 5, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Sheila Gamble", "id": 8170, "credit_id": "52fe4556c3a368484e05439d", "cast_id": 8, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "P.K. Highsmith", "id": 2231, "credit_id": "52fe4556c3a368484e0543a7", "cast_id": 11, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Dwayne Johnson", "character": "Christopher Danson", "id": 18918, "credit_id": "52fe4556c3a368484e0543ab", "cast_id": 12, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 4}, {"name": "Michael Keaton", "character": "Captain Gene Mauch", "id": 2232, "credit_id": "52fe4556c3a368484e0543af", "cast_id": 13, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 5}, {"name": "Brett Gelman", "character": "Hal", "id": 224197, "credit_id": "52fe4556c3a368484e0543b3", "cast_id": 14, "profile_path": "/ox8Tetm16FgBmwR3U2eYZGxRomN.jpg", "order": 6}, {"name": "Ray Stevenson", "character": "Roger Wesley", "id": 56614, "credit_id": "52fe4556c3a368484e0543b7", "cast_id": 15, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 7}, {"name": "Roy T. Anderson", "character": "Rasta", "id": 932748, "credit_id": "52fe4556c3a368484e0543bb", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Larnell Stovall", "character": "Rasta", "id": 84459, "credit_id": "52fe4556c3a368484e0543bf", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Steve Coogan", "character": "David Ershon", "id": 4581, "credit_id": "52fe4556c3a368484e0543c3", "cast_id": 18, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 10}, {"name": "Rob Riggle", "character": "Martin", "id": 71403, "credit_id": "52fe4556c3a368484e0543c7", "cast_id": 19, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 11}, {"name": "Damon Wayans Jr.", "character": "Fosse", "id": 87822, "credit_id": "52fe4556c3a368484e0543cb", "cast_id": 20, "profile_path": "/wOYJdq19v0rnUTY9vC0BZJowQiC.jpg", "order": 12}, {"name": "Bobby Cannavale", "character": "Jimmy", "id": 21127, "credit_id": "52fe4556c3a368484e0543cf", "cast_id": 21, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 13}, {"name": "Brooke Shields", "character": "Brooke Shields", "id": 15110, "credit_id": "52fe4556c3a368484e0543d3", "cast_id": 22, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 14}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a368484e05438b", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 5.9, "runtime": 107}, "27582": {"poster_path": "/7S5ImFBwi2BTxL5mQbWgfNbbbxa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51070807, "overview": "Arthur Bishop (Statham) is a 'mechanic' - an elite assassin with a strict code and unique talent for cleanly eliminating targets. It's a job that requires professional perfection and total detachment, and Bishop is the best in the business. But when he is ordered to take out his mentor and close friend Harry (Sutherland), Bishop is anything but detached.", "video": false, "id": 27582, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Mechanic", "tagline": "Someone has to fix the problems.", "vote_count": 365, "homepage": "http://www.themechanicmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zYSLOsUYlGAM5bN7LX3E8rICIVh.jpg", "id": 280504, "name": "The Mechanic Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472399", "adult": false, "backdrop_path": "/fLMv873bBAvrCtzeAbRVjb4Mi9Y.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "CBS Films", "id": 5490}, {"name": "Chartoff-Winkler Productions", "id": 12252}, {"name": "Scared Productions", "id": 22035}], "release_date": "2011-01-28", "popularity": 0.96919766541127, "original_title": "The Mechanic", "budget": 40000000, "cast": [{"name": "Jason Statham", "character": "Arthur Bishop", "id": 976, "credit_id": "52fe4556c3a368484e0543fb", "cast_id": 3, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Ben Foster", "character": "Steve Mckenna", "id": 11107, "credit_id": "52fe4556c3a368484e0543ff", "cast_id": 4, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Harry Mckenna", "id": 55636, "credit_id": "52fe4556c3a368484e054403", "cast_id": 5, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "Mini Anden", "character": "Sara", "id": 142953, "credit_id": "52fe4556c3a368484e054407", "cast_id": 6, "profile_path": "/m92JfMnAl6KC5d0ho3r1lFpABQJ.jpg", "order": 3}, {"name": "Tony Goldwyn", "character": "Dean Sanderson", "id": 3417, "credit_id": "52fe4556c3a368484e05440b", "cast_id": 7, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 4}, {"name": "Christa Campbell", "character": "Kelly", "id": 85178, "credit_id": "52fe4556c3a368484e05440f", "cast_id": 8, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 5}, {"name": "Katarzyna Wolejnio", "character": "Maria", "id": 90113, "credit_id": "52fe4556c3a368484e054413", "cast_id": 9, "profile_path": "/fvPALtfjqN7FbCdpbm4IbrhoADw.jpg", "order": 6}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a368484e0543f1", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 6.3, "runtime": 93}, "11199": {"poster_path": "/auKcnTuYtB7v1t4yLC4y29ZwyTq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Restless and ready for adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.", "video": false, "id": 11199, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Wild Hogs", "tagline": "A lot can happen on the road to nowhere.", "vote_count": 159, "homepage": "http://video.movies.go.com/wildhogs/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0486946", "adult": false, "backdrop_path": "/pyllS8OfE5ld539TToT2qSC6iw7.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Wild Hogs Productions", "id": 6354}], "release_date": "2007-03-02", "popularity": 0.898332245333013, "original_title": "Wild Hogs", "budget": 0, "cast": [{"name": "Tim Allen", "character": "Doug Madsen", "id": 12898, "credit_id": "52fe440e9251416c7502766b", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "John Travolta", "character": "Woody Stevens", "id": 8891, "credit_id": "52fe440e9251416c7502766f", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Martin Lawrence", "character": "Bobby Davis", "id": 78029, "credit_id": "52fe440e9251416c75027673", "cast_id": 3, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 2}, {"name": "William H. Macy", "character": "Dudley Frank", "id": 3905, "credit_id": "52fe440e9251416c75027677", "cast_id": 4, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 3}, {"name": "Ray Liotta", "character": "Jack", "id": 11477, "credit_id": "52fe440e9251416c7502767b", "cast_id": 5, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 4}, {"name": "Marisa Tomei", "character": "Maggie", "id": 3141, "credit_id": "52fe440e9251416c7502767f", "cast_id": 6, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 5}, {"name": "John C. McGinley", "character": "Highway Patrolman", "id": 11885, "credit_id": "52fe440e9251416c750276c5", "cast_id": 18, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 6}, {"name": "M.C. Gainey", "character": "Murdock", "id": 22132, "credit_id": "53b46235c3a3682edb009714", "cast_id": 19, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 7}, {"name": "Jill Hennessy", "character": "Kelly Madsen", "id": 50877, "credit_id": "53b46241c3a3682edb009719", "cast_id": 20, "profile_path": "/maXA4XgLsHLFy2ww3UvI4jUK27z.jpg", "order": 8}, {"name": "Dominic Janes", "character": "Billy Madsen", "id": 1223903, "credit_id": "53b4624cc3a3682eea0097b0", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Tichina Arnold", "character": "Karen Davis", "id": 83600, "credit_id": "53b46258c3a3682edf00938c", "cast_id": 22, "profile_path": "/A9L6I9tzUg0FSl626JMtMuDodZc.jpg", "order": 10}], "directors": [{"name": "Walt Becker", "department": "Directing", "job": "Director", "credit_id": "52fe440e9251416c75027685", "profile_path": "/ioshEghgcfUsaDN2rYfEJDPBUqZ.jpg", "id": 68573}], "vote_average": 5.5, "runtime": 100}, "11202": {"poster_path": "/6pyN7udgYaGr6uNIP2MuLUcqmPh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89800000, "overview": "\"Patton\" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.", "video": false, "id": 11202, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Patton", "tagline": "The Rebel Warrior", "vote_count": 127, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066206", "adult": false, "backdrop_path": "/iCLuDtSSU0cFLH1oTM1828STIOB.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1970-01-25", "popularity": 0.798865275114198, "original_title": "Patton", "budget": 12000000, "cast": [{"name": "George C. Scott", "character": "Gen. George S. Patton Jr.", "id": 862, "credit_id": "52fe440e9251416c750277fd", "cast_id": 1, "profile_path": "/mWXDFKbEgb7ID845I1LNeaeoXT4.jpg", "order": 0}, {"name": "Karl Malden", "character": "Gen. Omar N. Bradley", "id": 9857, "credit_id": "52fe440e9251416c75027801", "cast_id": 2, "profile_path": "/ekqh6qVUFbYkIPFu2ZyTEcHi5gI.jpg", "order": 1}, {"name": "Stephen Young", "character": "Capt. Chester B. Hansen", "id": 40551, "credit_id": "52fe440e9251416c75027805", "cast_id": 3, "profile_path": "/c5GWhpWEnLCTJQLEQR1P5n81fsp.jpg", "order": 2}, {"name": "Michael Strong", "character": "Brig. Gen. Hobart Carver", "id": 15650, "credit_id": "52fe440e9251416c75027809", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Carey Loftin", "character": "General Bradley's driver", "id": 12431, "credit_id": "52fe440f9251416c75027873", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Albert Dumortier", "character": "Moroccan minister", "id": 1089965, "credit_id": "52fe440f9251416c75027877", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Frank Latimore", "character": "Lieutenant Colonel Henry Davenport", "id": 13733, "credit_id": "52fe440f9251416c7502787b", "cast_id": 24, "profile_path": "/dZiU5PnoSQIzgICKpKA6wft6xOU.jpg", "order": 6}, {"name": "Morgan Paull", "character": "Captain Richard N. Jenson", "id": 58495, "credit_id": "52fe440f9251416c7502787f", "cast_id": 25, "profile_path": "/k8EaOIcEWYrWknWyR4zfQbansPN.jpg", "order": 7}, {"name": "Karl Michael Vogler", "character": "Field Marshal Erwin Rommel", "id": 32021, "credit_id": "52fe440f9251416c75027883", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Bill Hickman", "character": "General Patton's driver", "id": 15186, "credit_id": "52fe440f9251416c75027887", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Pat Zurica", "character": "First Lieutenant Alexander Stiller", "id": 198025, "credit_id": "52fe440f9251416c7502788b", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "James Edwards", "character": "Sergeant William George Meeks", "id": 3342, "credit_id": "52fe440f9251416c7502788f", "cast_id": 29, "profile_path": "/zykEIcf2G92rh8Znhk5JPSamSiD.jpg", "order": 11}, {"name": "Lawrence Dobkin", "character": "Colonel Gaston Bell", "id": 15625, "credit_id": "52fe440f9251416c75027893", "cast_id": 30, "profile_path": "/mI7q9C7Z0tagylB9ew4C6mmKwFp.jpg", "order": 12}, {"name": "David Bauer", "character": "Lieutenant General Harry Buford", "id": 93949, "credit_id": "52fe440f9251416c75027897", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "John Barrie", "character": "Air Vice-Marshal Sir Arthur Coningham", "id": 558445, "credit_id": "52fe440f9251416c7502789b", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Richard M\u00fcnch", "character": "Colonel General Alfred Jodl", "id": 18964, "credit_id": "52fe440f9251416c7502789f", "cast_id": 33, "profile_path": "/r1ffCIqQZYy8uQIYhKb8BsbOKLp.jpg", "order": 15}, {"name": "Siegfried Rauch", "character": "Captain Oskar Steiger", "id": 35826, "credit_id": "52fe440f9251416c750278a3", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Michael Bates", "character": "Field Marshal Sir Bernard Law Montgomery", "id": 2267, "credit_id": "52fe440f9251416c750278a7", "cast_id": 35, "profile_path": "/ftE2KiyBW8inxUWhJqnv4iPhGik.jpg", "order": 17}, {"name": "Paul Stevens", "character": "Lieutenant Colonel Charles R. Codman", "id": 160494, "credit_id": "52fe440f9251416c750278ab", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Gerald Flood", "character": "Air Chief Marshal Sir Arthur Tedder", "id": 200911, "credit_id": "52fe440f9251416c750278af", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Jack Gwillim", "character": "General Sir Harold Alexander", "id": 13331, "credit_id": "52fe440f9251416c750278b3", "cast_id": 38, "profile_path": "/6NOuBVu9fSWObuONEfuCtWfViBJ.jpg", "order": 20}, {"name": "Edward Binns", "character": "Major General Walter Bedell Smith", "id": 2651, "credit_id": "52fe440f9251416c750278b7", "cast_id": 39, "profile_path": "/uTPEszrP1ZgDVo1nkRIYwAeYHnO.jpg", "order": 21}, {"name": "Peter Barkworth", "character": "Colonel John Welkin", "id": 183207, "credit_id": "52fe440f9251416c750278bb", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Lionel Murton", "character": "Third Army chaplain", "id": 141494, "credit_id": "52fe440f9251416c750278bf", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "David Healy", "character": "clergyman", "id": 120676, "credit_id": "52fe440f9251416c750278c3", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Sandy McPeak", "character": "correspondent", "id": 106726, "credit_id": "52fe440f9251416c750278c7", "cast_id": 43, "profile_path": null, "order": 25}, {"name": "Douglas Wilmer", "character": "Major General Francis de Guingand", "id": 89065, "credit_id": "52fe440f9251416c750278cb", "cast_id": 44, "profile_path": "/3aUnwOD2fBGMBcaE9Hj4EqtxKWO.jpg", "order": 26}, {"name": "John Doucette", "character": "Major General Lucian K. Truscott", "id": 34130, "credit_id": "52fe440f9251416c750278cf", "cast_id": 45, "profile_path": "/2J6UfUe9nNkd6wjtIF5Yp3ilnZ8.jpg", "order": 27}, {"name": "Tim Considine", "character": "the soldier who gets slapped", "id": 163280, "credit_id": "52fe440f9251416c750278d3", "cast_id": 46, "profile_path": "/ubHluSs6vOkiOHdpXTVlNKQGLYG.jpg", "order": 28}, {"name": "Abraxas Aaran", "character": "Willy", "id": 1089966, "credit_id": "52fe440f9251416c750278d7", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Clint Ritchie", "character": "tank captain", "id": 87473, "credit_id": "52fe440f9251416c750278db", "cast_id": 48, "profile_path": "/8lEiJ3sHOznsp8cArd9IdxTBRBz.jpg", "order": 30}, {"name": "Alan MacNaughton", "character": "British briefing officer", "id": 1047752, "credit_id": "52fe440f9251416c750278df", "cast_id": 49, "profile_path": "/uN76tF9LMaWk7OtvhcFfAJrdCJa.jpg", "order": 31}, {"name": "Florencio Amarilla", "character": "soldier", "id": 1022040, "credit_id": "52fe440f9251416c750278e3", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Brandon Brady", "character": "Lieutenant Young", "id": 153085, "credit_id": "52fe440f9251416c750278e7", "cast_id": 51, "profile_path": null, "order": 33}, {"name": "Charles Dennis", "character": "soldier", "id": 43800, "credit_id": "52fe440f9251416c750278eb", "cast_id": 52, "profile_path": "/nbg2PzCmL08GdlV5BiNxmtunHok.jpg", "order": 34}, {"name": "Paul Frees", "character": "voice", "id": 16417, "credit_id": "52fe440f9251416c750278ef", "cast_id": 53, "profile_path": "/ey4xNbw7AfFW7brHnb3C9ADL34Q.jpg", "order": 35}, {"name": "Dolores Judson", "character": "Knustford Welcome Club Dignitary", "id": 1089967, "credit_id": "52fe440f9251416c750278f3", "cast_id": 54, "profile_path": null, "order": 36}, {"name": "Hellmut Lange", "character": "Major Dorian von Haarenwege", "id": 32526, "credit_id": "52fe440f9251416c750278f7", "cast_id": 55, "profile_path": null, "order": 37}, {"name": "Bruce Rhodewalt", "character": "cynical wounded soldier", "id": 1089968, "credit_id": "52fe440f9251416c750278fb", "cast_id": 56, "profile_path": null, "order": 38}, {"name": "Lowell Thomas", "character": "himself", "id": 589823, "credit_id": "52fe440f9251416c750278ff", "cast_id": 57, "profile_path": null, "order": 39}, {"name": "Harry Towb", "character": "G.I. cook", "id": 116645, "credit_id": "52fe440f9251416c75027903", "cast_id": 58, "profile_path": null, "order": 40}], "directors": [{"name": "Franklin J. Schaffner", "department": "Directing", "job": "Director", "credit_id": "52fe440e9251416c7502780f", "profile_path": "/dqrDUANz8sf0BXTBh0gr1heUr5U.jpg", "id": 13265}], "vote_average": 7.1, "runtime": 172}, "248774": {"poster_path": "/sEhkasIDghckmUGnhmxJ6RYc3T8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.", "video": false, "id": 248774, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Obvious Child", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2910274", "adult": false, "backdrop_path": "/cgrQ6Vp9tuNVtZAKwgEiTyhAqNt.jpg", "production_companies": [{"name": "Votiv Films", "id": 34455}, {"name": "Rooks Nest Entertainment", "id": 34456}, {"name": "Sundial Pictures", "id": 10479}], "release_date": "2014-06-06", "popularity": 0.418731068567954, "original_title": "Obvious Child", "budget": 0, "cast": [{"name": "Jenny Slate", "character": "Donna Stern", "id": 213001, "credit_id": "52fe4f38c3a36847f82c6577", "cast_id": 3, "profile_path": "/bKyUz4N566bXBEhj1TkFfMiNFyT.jpg", "order": 0}, {"name": "Jake Lacy", "character": "Max", "id": 1230856, "credit_id": "52fe4f38c3a36847f82c657b", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Gaby Hoffmann", "character": "Nellie", "id": 12930, "credit_id": "53b75aedc3a3685ec1003290", "cast_id": 13, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 2}, {"name": "Polly Draper", "character": "Nancy Stern", "id": 114470, "credit_id": "52fe4f38c3a36847f82c6583", "cast_id": 6, "profile_path": "/1zViE8Kn2i6Idg2uOMJOnptRwnj.jpg", "order": 3}, {"name": "Richard Kind", "character": "Jacob Stern", "id": 21125, "credit_id": "52fe4f38c3a36847f82c6587", "cast_id": 7, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 4}, {"name": "David Cross", "character": "Sam", "id": 212, "credit_id": "52fe4f38c3a36847f82c658b", "cast_id": 8, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 5}, {"name": "Gabe Liedman", "character": "Joey", "id": 1304330, "credit_id": "53307844c3a3685fbb006e25", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Cindy Cheung", "character": "Dr. Bernard", "id": 58619, "credit_id": "53307851c3a3685fd3006fcd", "cast_id": 10, "profile_path": "/7BMISfQFjHTBO1yFPYNISHpg0vG.jpg", "order": 7}, {"name": "Paul Briganti", "character": "Ryan", "id": 1304331, "credit_id": "53307861c3a3685fbb006e2b", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Stephen Singer", "character": "Gene", "id": 25214, "credit_id": "5330786ec3a3685fc3007045", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Gillian Robespierre", "department": "Directing", "job": "Director", "credit_id": "52fe4f38c3a36847f82c656d", "profile_path": null, "id": 1284099}], "vote_average": 6.7, "runtime": 83}, "109513": {"poster_path": "/plAguR4bce1vNI9e588geNQelsH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16377000, "overview": "Former getaway driver Charlie Bronson jeopardizes his Witness Protection Plan identity in order to help his girlfriend get to Los Angeles. The feds and Charlie's former gang chase them on the road.", "video": false, "id": 109513, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Hit and Run", "tagline": "A Comedy That Never Takes Its Foot Off The Gas", "vote_count": 105, "homepage": "http://www.hitandrunmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt2097307", "adult": false, "backdrop_path": "/wxx7fHnNl7IpN9oJTH07NzIapW3.jpg", "production_companies": [{"name": "Primate Pictures", "id": 10424}, {"name": "Kim and Jim Productions", "id": 10425}, {"name": "Panay Films", "id": 10426}, {"name": "Exclusive Media Group", "id": 11448}], "release_date": "2012-08-22", "popularity": 0.627797575412155, "original_title": "Hit and Run", "budget": 2000000, "cast": [{"name": "Kristen Bell", "character": "Annie Bean", "id": 40462, "credit_id": "52fe4abcc3a36847f81decdf", "cast_id": 11, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Dax Shepard", "character": "Charles Bronson/Yul Perrkins", "id": 51298, "credit_id": "52fe4abcc3a36847f81dece7", "cast_id": 13, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 1}, {"name": "Tom Arnold", "character": "Randy Anderson", "id": 74036, "credit_id": "52fe4abcc3a36847f81decfb", "cast_id": 18, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 2}, {"name": "Kristin Chenoweth", "character": "Debbie Kreeger", "id": 52775, "credit_id": "52fe4abcc3a36847f81dece3", "cast_id": 12, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 3}, {"name": "Michael Rosenbaum", "character": "Gil Rathbinn", "id": 19975, "credit_id": "52fe4abcc3a36847f81deceb", "cast_id": 14, "profile_path": "/kfitDCFN9JJxZF6IE0XzgdgDtXr.jpg", "order": 4}, {"name": "Jess Rowland", "character": "Terry Rathbinn", "id": 1177774, "credit_id": "52fe4abcc3a36847f81ded0d", "cast_id": 23, "profile_path": "/nRJaouK8hlZXvzN8xTjQgVHXsdD.jpg", "order": 5}, {"name": "Carly Hatter", "character": "Angella Roth", "id": 1289567, "credit_id": "52fe4abcc3a36847f81ded11", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Bradley Cooper", "character": "Alex Dmitri", "id": 51329, "credit_id": "52fe4abcc3a36847f81decdb", "cast_id": 10, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 8}, {"name": "Joy Bryant", "character": "Neve Tatum", "id": 52847, "credit_id": "52fe4abcc3a36847f81decff", "cast_id": 19, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 9}, {"name": "Kal Bennett", "character": "Cashier Mary Ann", "id": 1047653, "credit_id": "52fe4abcc3a36847f81ded19", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "John Duff", "character": "Body Builder Catalyst", "id": 159482, "credit_id": "52fe4abcc3a36847f81ded1d", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "David Koechner", "character": "Sanders", "id": 28638, "credit_id": "52fe4abcc3a36847f81decf3", "cast_id": 16, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 12}, {"name": "Ryan Hansen", "character": "Allen", "id": 78433, "credit_id": "52fe4abcc3a36847f81decf7", "cast_id": 17, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 13}, {"name": "Beau Bridges", "character": "Clint Perrkins", "id": 2222, "credit_id": "52fe4abcc3a36847f81decef", "cast_id": 15, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 14}, {"name": "Jason Bateman", "character": "Keith Yert", "id": 23532, "credit_id": "52fe4abcc3a36847f81ded09", "cast_id": 22, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 15}, {"name": "Sean Hayes", "character": "Sandy Osterman", "id": 52601, "credit_id": "52fe4abcc3a36847f81ded25", "cast_id": 29, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 17}], "directors": [{"name": "David Palmer", "department": "Directing", "job": "Director", "credit_id": "52fe4abcc3a36847f81deca7", "profile_path": null, "id": 140372}, {"name": "Dax Shepard", "department": "Directing", "job": "Director", "credit_id": "52fe4abcc3a36847f81decad", "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "id": 51298}], "vote_average": 5.7, "runtime": 100}, "3021": {"poster_path": "/4onX7UF2MPUgIpkUerLC3dpVfNZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94679598, "overview": "A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.", "video": false, "id": 3021, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "1408", "tagline": "The only demons in room 1408 are those within you.", "vote_count": 387, "homepage": "http://www.1408-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450385", "adult": false, "backdrop_path": "/om5m4YIDzHC5nEQkyLUUxIwcXZa.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2007-12-06", "popularity": 1.06656879285027, "original_title": "1408", "budget": 25000000, "cast": [{"name": "John Cusack", "character": "Mike Enslin", "id": 3036, "credit_id": "52fe437dc3a36847f8057f55", "cast_id": 19, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Gerald Olin", "id": 2231, "credit_id": "52fe437dc3a36847f8057f59", "cast_id": 20, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "Tommy Glinge", "id": 1072642, "credit_id": "553762e89251411256001e3c", "cast_id": 31, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Mary McCormack", "character": "Lilly Enslin", "id": 1980, "credit_id": "52fe437dc3a36847f8057f5d", "cast_id": 21, "profile_path": "/vMS1VGv0Cd2PMo2cuceNBPsd1GH.jpg", "order": 3}, {"name": "Jasmine Jessica Anthony", "character": "Katie", "id": 29612, "credit_id": "52fe437dc3a36847f8057f61", "cast_id": 22, "profile_path": "/obb2Jy4J6GoIEoTHqh9eYGy7JvK.jpg", "order": 4}, {"name": "Tony Shalhoub", "character": "Sam Farrell", "id": 4252, "credit_id": "52fe437dc3a36847f8057f65", "cast_id": 23, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 5}, {"name": "Alexandra Silber", "character": "junge Frau", "id": 29613, "credit_id": "52fe437dc3a36847f8057f69", "cast_id": 24, "profile_path": "/s6zKxJmFm4dkgm4bERVUdYjKy0e.jpg", "order": 6}, {"name": "Emily Harvey", "character": "Sekret\u00e4rin", "id": 29614, "credit_id": "52fe437dc3a36847f8057f6d", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Noah Lee Margetts", "character": "Noah", "id": 29615, "credit_id": "52fe437dc3a36847f8057f71", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "William Armstrong", "character": "Clay", "id": 29616, "credit_id": "52fe437dc3a36847f8057f75", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Paul Birchard", "character": "Mr. Innkeeper", "id": 29617, "credit_id": "52fe437dc3a36847f8057f79", "cast_id": 28, "profile_path": "/iDEyo8cSZAVy9HsmZMv9mPs5tx4.jpg", "order": 10}, {"name": "Margot Leicester", "character": "Mrs. Innkeeper", "id": 192933, "credit_id": "52fe437dc3a36847f8057f83", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe437dc3a36847f8057ef1", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 6.2, "runtime": 104}, "35791": {"poster_path": "/wEgqGu01JtIyxXhYrr4hsgds1uZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 268918090, "overview": "In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead - and Alice and her comrades are about to step into a deadly trap.", "video": false, "id": 35791, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Afterlife", "tagline": "She's back...And she's bringing a few of her friends.", "vote_count": 618, "homepage": "http://www.sonypictures.com/movies/residentevilafterlife/site/", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1220634", "adult": false, "backdrop_path": "/o3P90r3owOlD86e27aC801rk4QI.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Davis-Films", "id": 342}, {"name": "Impact Pictures", "id": 248}], "release_date": "2010-09-10", "popularity": 0.109325960358318, "original_title": "Resident Evil: Afterlife", "budget": 60000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe45b59251416c9103bae9", "cast_id": 11, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Wentworth Miller", "character": "Chris Redfield", "id": 3972, "credit_id": "52fe45b59251416c9103baed", "cast_id": 12, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 1}, {"name": "Ali Larter", "character": "Claire Redfield", "id": 17303, "credit_id": "52fe45b59251416c9103baf1", "cast_id": 13, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 2}, {"name": "Kim Coates", "character": "Bennett", "id": 8335, "credit_id": "52fe45b59251416c9103baf5", "cast_id": 14, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 3}, {"name": "Kacey Barnfield", "character": "Crystal", "id": 114760, "credit_id": "52fe45b59251416c9103baf9", "cast_id": 15, "profile_path": "/3BboSrXM1F3Mgr8dyvV7nYD0vb6.jpg", "order": 4}, {"name": "Shawn Roberts", "character": "Albert Wesker", "id": 81097, "credit_id": "52fe45b59251416c9103bafd", "cast_id": 16, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 5}, {"name": "Sergio Peris-Mencheta", "character": "Angel", "id": 78994, "credit_id": "52fe45b59251416c9103bb01", "cast_id": 18, "profile_path": "/gR5xjxcaXWI7N8i34HqHrB7JiIL.jpg", "order": 6}, {"name": "Boris Kodjoe", "character": "Luther West", "id": 80758, "credit_id": "52fe45b59251416c9103bb0b", "cast_id": 20, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 7}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "52fe45b59251416c9103bb0f", "cast_id": 21, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 8}, {"name": "Spencer Locke", "character": "K-Mart", "id": 57192, "credit_id": "52fe45b59251416c9103bb1d", "cast_id": 25, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 11}, {"name": "Norman Yeung", "character": "Kim Yong", "id": 970017, "credit_id": "534fab94c3a3681cc3000b7c", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Ray Olubowale", "character": "Axeman", "id": 969189, "credit_id": "534fababc3a3681ccc000bc6", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Christopher Kano", "character": "Sniper", "id": 1310668, "credit_id": "534fabbbc3a3681cdd000b24", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Tatsuya Goke", "character": "Sniper", "id": 1310669, "credit_id": "534fabc6c3a3681cc3000b87", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Fulvio Cecere", "character": "Wendell", "id": 65808, "credit_id": "5427aed2c3a3680b1b001a31", "cast_id": 40, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 16}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c9103babb", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.8, "runtime": 97}, "11216": {"poster_path": "/hYzCLju3W74nLhhRXfPkwDi1Tun.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 11990401, "overview": "A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.", "video": false, "id": 11216, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Cinema Paradiso", "tagline": "A celebration of youth, friendship, and the everlasting magic of the movies.", "vote_count": 237, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095765", "adult": false, "backdrop_path": "/tVi83ttAeyMJinYpy6xfgJSpzvP.jpg", "production_companies": [{"name": "Cristaldifilm S.r.l.", "id": 48}, {"name": "Les Films Ariane", "id": 7110}, {"name": "Rai Tre Radiotelevisione Italiana", "id": 10209}], "release_date": "1988-11-17", "popularity": 0.697602967109972, "original_title": "Nuovo cinema Paradiso", "budget": 0, "cast": [{"name": "Philippe Noiret", "character": "Alfredo", "id": 24366, "credit_id": "52fe44129251416c75027f25", "cast_id": 8, "profile_path": "/cxqfBaHzXOOMVcxHYfAewhG2Cjc.jpg", "order": 0}, {"name": "Jacques Perrin", "character": "Salvatore 'Toto' Di Vita - Adult", "id": 20030, "credit_id": "52fe44129251416c75027f29", "cast_id": 9, "profile_path": "/dC3hgCkcTvsrw6fKxxTegJDQRzp.jpg", "order": 1}, {"name": "Marco Leonardi", "character": "Salvatore 'Toto' Di Vita - Teenager", "id": 27643, "credit_id": "52fe44129251416c75027f2d", "cast_id": 10, "profile_path": "/vyBWitXBSfFJpJRff14GrIZimta.jpg", "order": 2}, {"name": "Salvatore Cascio", "character": "Salvatore 'Toto' Di Vita - Child", "id": 68635, "credit_id": "52fe44129251416c75027f31", "cast_id": 11, "profile_path": "/zZ6vZ8gTp1GjCKzxZTSwP55acHL.jpg", "order": 3}, {"name": "Agnese Nano", "character": "Elena Mendola", "id": 120152, "credit_id": "52fe44129251416c75027f35", "cast_id": 12, "profile_path": "/AoBa7v5dZeNduRyBfVoU5umyB1L.jpg", "order": 4}, {"name": "Antonella Attili", "character": "Maria Di Vita - Younger", "id": 70083, "credit_id": "52fe44129251416c75027f39", "cast_id": 13, "profile_path": "/cbnn6Nai1kVPQ1jamIp3BQByHxt.jpg", "order": 5}, {"name": "Enzo Cannavale", "character": "Spaccafico", "id": 52657, "credit_id": "52fe44129251416c75027f3d", "cast_id": 14, "profile_path": "/hkJ732FpjvADraxMI2UaHO5x8qe.jpg", "order": 6}, {"name": "Isa Danieli", "character": "Anna", "id": 1014911, "credit_id": "52fe44129251416c75027f41", "cast_id": 15, "profile_path": "/yM3HYSBkR1jUumd8v3TRlnAAJBP.jpg", "order": 7}, {"name": "Leo Gullotta", "character": "Usher", "id": 119992, "credit_id": "52fe44129251416c75027f45", "cast_id": 16, "profile_path": "/etsfULUJFtVXCRc8eSuO8BRKHLw.jpg", "order": 8}, {"name": "Pupella Maggio", "character": "Maria Di Vita - Older", "id": 25780, "credit_id": "52fe44129251416c75027f49", "cast_id": 17, "profile_path": "/PGM231rayPxOcQyg7g2NQtGlZd.jpg", "order": 9}, {"name": "Leopoldo Trieste", "character": "Father Adelfio", "id": 14151, "credit_id": "52fe44129251416c75027f4d", "cast_id": 18, "profile_path": "/yPdmZwmCW4cvmENFKMBj63NCFCq.jpg", "order": 10}, {"name": "Tano Cimarosa", "character": "Blacksmith", "id": 103627, "credit_id": "52fe44129251416c75027f51", "cast_id": 19, "profile_path": "/x4A4eKik5JxvHWjj9828MgpkzGM.jpg", "order": 11}, {"name": "Nicola Di Pinto", "character": "Village Idiot", "id": 39618, "credit_id": "52fe44129251416c75027f55", "cast_id": 20, "profile_path": "/fqix0TJ4Fd8Ab2O8ziqr0UuNAkY.jpg", "order": 12}, {"name": "Roberta Lena", "character": "Lia", "id": 1077256, "credit_id": "52fe44129251416c75027f59", "cast_id": 21, "profile_path": "/mc5BfH64zSJo5fgXp2s2oTVQRtL.jpg", "order": 13}, {"name": "Nino Terzo", "character": "Peppino's Father", "id": 134215, "credit_id": "52fe44129251416c75027f5d", "cast_id": 22, "profile_path": "/vDu5NDG0q4EIcgEAh4umXf8EEBT.jpg", "order": 14}, {"name": "Brigitte Fossey", "character": "Elena Mendola - Adult", "id": 1959, "credit_id": "52fe44139251416c75027f61", "cast_id": 23, "profile_path": "/i711oGYxYv82yV3sOSbhitS4MPP.jpg", "order": 15}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe44129251416c75027efd", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.6, "runtime": 124}, "76757": {"poster_path": "/jsqInq6iXrKkf9aDOVzpjViGeiG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96084036, "overview": "In a universe where human genetic material is the most precious commodity, an impoverished young Earth woman becomes the key to strategic maneuvers and internal strife within a powerful dynasty\u2026", "video": false, "id": 76757, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Jupiter Ascending", "tagline": "Expand your universe.", "vote_count": 344, "homepage": "http://www.jupiterascending.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1617661", "adult": false, "backdrop_path": "/4liSXBZZdURI0c1Id1zLJo6Z3Gu.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2015-02-27", "popularity": 36.5179255768799, "original_title": "Jupiter Ascending", "budget": 176000003, "cast": [{"name": "Mila Kunis", "character": "Jupiter Jones", "id": 18973, "credit_id": "52fe494bc3a368484e12446b", "cast_id": 6, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Caine", "id": 38673, "credit_id": "52fe494bc3a368484e124467", "cast_id": 5, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Sean Bean", "character": "Stinger", "id": 48, "credit_id": "52fe494bc3a368484e12447d", "cast_id": 11, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 2}, {"name": "Eddie Redmayne", "character": "Balem", "id": 37632, "credit_id": "52fe494bc3a368484e12446f", "cast_id": 8, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 3}, {"name": "Douglas Booth", "character": "Titus", "id": 230680, "credit_id": "52fe494bc3a368484e124481", "cast_id": 12, "profile_path": "/3YMp0bU20VKCzJj6xTEO2u34VRE.jpg", "order": 4}, {"name": "Tuppence Middleton", "character": "Kalique Abrasax", "id": 89822, "credit_id": "52fe494bc3a368484e124473", "cast_id": 9, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 5}, {"name": "Nikki Amuka-Bird", "character": "Diomika Tsing", "id": 109319, "credit_id": "548072ce9251416e78002977", "cast_id": 31, "profile_path": null, "order": 6}, {"name": "Christina Cole", "character": "Gemma Chatterjee", "id": 47625, "credit_id": "5480721cc3a36829a30029f5", "cast_id": 20, "profile_path": "/mZ0CeSVd6ylHVPjsn9ugQvhvLdw.jpg", "order": 7}, {"name": "Nicholas A. Newman", "character": "Nesh", "id": 1360221, "credit_id": "548074899251416e7b0027c9", "cast_id": 63, "profile_path": null, "order": 8}, {"name": "Ramon Tikaram", "character": "Phylo Percadium", "id": 178622, "credit_id": "5535ba6a9251414716001945", "cast_id": 72, "profile_path": "/lsR2X7T6FJcNIkY651zQ46D0nAw.jpg", "order": 9}, {"name": "Ariyon Bakare", "character": "Greeghan", "id": 1238461, "credit_id": "5480738cc3a36829b50031c8", "cast_id": 45, "profile_path": null, "order": 10}, {"name": "Maria Doyle Kennedy", "character": "Aleksa", "id": 33394, "credit_id": "548072009251416e7e002aab", "cast_id": 19, "profile_path": "/t7wdC2MGTXEmvJ2LL42j6u6EIcG.jpg", "order": 11}, {"name": "Frog Stone", "character": "Aunt Nino", "id": 1394352, "credit_id": "54807462c3a368299f002131", "cast_id": 60, "profile_path": null, "order": 12}, {"name": "David Ajala", "character": "Ibis", "id": 971049, "credit_id": "548072ac9251416e78002972", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "DooNa Bae", "character": "Razo", "id": 21688, "credit_id": "52fe494bc3a368484e12448d", "cast_id": 15, "profile_path": "/hE9dmpQOIdgt1GGVoZObPZmVSPh.jpg", "order": 14}, {"name": "Gugu Mbatha-Raw", "character": "Famulus", "id": 1216606, "credit_id": "548071c3c3a36829b200318c", "cast_id": 18, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 15}, {"name": "Terry Gilliam", "character": "Seal and Signet Minister", "id": 280, "credit_id": "52fe494bc3a368484e124489", "cast_id": 14, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 17}, {"name": "Vanessa Kirby", "character": "Katharine Dunlevy", "id": 556356, "credit_id": "52fe494bc3a368484e124491", "cast_id": 16, "profile_path": "/ndrtjCvIXEuHerMBOz8sLyxgIlc.jpg", "order": 18}, {"name": "James D'Arcy", "character": "Maximilian Jones", "id": 19655, "credit_id": "52fe494bc3a368484e124495", "cast_id": 17, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 19}, {"name": "Simon Dutton", "character": "Tskalikin", "id": 1223149, "credit_id": "5480722ec3a36817a50027de", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Spencer Wilding", "character": "Falque", "id": 25451, "credit_id": "5480723d9251416e6c0025f5", "cast_id": 22, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 21}, {"name": "Demi Kazanis", "character": "Abrasax Alien", "id": 1394330, "credit_id": "5480724e9251416e7800295f", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Kick Gurry", "character": "Vladie", "id": 93111, "credit_id": "5480725b9251416e74002bab", "cast_id": 24, "profile_path": "/8XzZ6hw2ctF55O4Ia6WaH2Fnx0Y.jpg", "order": 23}, {"name": "Tim Pigott-Smith", "character": "Malidictes", "id": 11276, "credit_id": "54807269c3a36829b20031ad", "cast_id": 25, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 24}, {"name": "Charlotte Beaumont", "character": "Kiza", "id": 1084851, "credit_id": "5480727f9251414efa002a7b", "cast_id": 26, "profile_path": "/980H4W6kk4WSsbdoCvAD8R0zCJr.jpg", "order": 25}, {"name": "Neil Fingleton", "character": "Sargon / Greegan", "id": 1394331, "credit_id": "5480728ec3a36829b20031b1", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Jeremy Swift", "character": "Vasilliy Bolodnikov", "id": 3555, "credit_id": "548072a19251414efa002a85", "cast_id": 28, "profile_path": null, "order": 27}, {"name": "Katherine Cunningham", "character": "Debutante", "id": 1369057, "credit_id": "548072dfc3a36829a3002a15", "cast_id": 32, "profile_path": "/coMfYN2IeWQfVSOUUInf0FthR7K.jpg", "order": 28}, {"name": "Luke Neal", "character": "Royal guard", "id": 1052603, "credit_id": "548072eec3a36829ab002a3e", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Dilyana Bouklieva", "character": "Test subject", "id": 1394333, "credit_id": "548072fdc3a36829ab002a43", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Edward Hogg", "character": "Chicanery Night", "id": 114252, "credit_id": "54807307c3a36829ae002723", "cast_id": 35, "profile_path": "/cZ9Iqj7l0vmpHcJBA26JYKgqVLP.jpg", "order": 31}, {"name": "Jozef Aoki", "character": "Commonwealth", "id": 1388891, "credit_id": "5480732c9251416e7b002798", "cast_id": 38, "profile_path": "/yROpOphdySQ4jNYh0RWvdx9ASJE.jpg", "order": 32}, {"name": "Tamela D'Amico", "character": "Plinth", "id": 1368433, "credit_id": "54807333c3a36829ae00272a", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Kara Lily Hayworth", "character": "Titus Handmaiden", "id": 1347128, "credit_id": "54807342c3a36829ab002a53", "cast_id": 40, "profile_path": "/taKspozJe98ClQzITulHV0lhFKv.jpg", "order": 34}, {"name": "Tim Connolly", "character": "Trigger", "id": 1089920, "credit_id": "54807350c3a36829a3002a22", "cast_id": 41, "profile_path": "/vbOiWLjS6fpVkgx8b7Owsw8v8ml.jpg", "order": 35}, {"name": "Alexandra Fraser", "character": "Peacock Hybrid", "id": 1394335, "credit_id": "5480735c9251416e7800298b", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "Charlotte Rickard", "character": "Synth", "id": 1394337, "credit_id": "5480736ac3a36829a70029c0", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Hazel D'Jan", "character": "Shiro Miku", "id": 1394339, "credit_id": "548073789251414efa002ab6", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Ekaterina Zalitko", "character": "Cyber Beauty", "id": 1394341, "credit_id": "548073999251416e74002be1", "cast_id": 46, "profile_path": null, "order": 39}, {"name": "Edd Osmond", "character": "Droid", "id": 1278780, "credit_id": "548073a59251416e74002be7", "cast_id": 47, "profile_path": null, "order": 40}, {"name": "Symara A. Templeman", "character": "Aegis Crew", "id": 1394342, "credit_id": "548073b29251416e7800299b", "cast_id": 48, "profile_path": null, "order": 41}, {"name": "Jon Norris", "character": "Servant", "id": 1394343, "credit_id": "548073c09251414efa002acb", "cast_id": 49, "profile_path": null, "order": 42}, {"name": "Eric Ian", "character": "Zoe", "id": 1394344, "credit_id": "548073e4c3a36829b50031db", "cast_id": 50, "profile_path": null, "order": 43}, {"name": "Sharon Coleman", "character": "Pedistrian", "id": 1394345, "credit_id": "548073f19251416e7b0027b1", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Georgia Winters", "character": "Handmaiden", "id": 1394346, "credit_id": "548073fec3a368299f00211a", "cast_id": 52, "profile_path": null, "order": 45}, {"name": "Mark Norris", "character": "Servant", "id": 1394347, "credit_id": "548074099251414d21002723", "cast_id": 53, "profile_path": null, "order": 46}, {"name": "Derek Blankenship", "character": "Shawn", "id": 1383511, "credit_id": "548074159251414d21002728", "cast_id": 54, "profile_path": null, "order": 47}, {"name": "Elina Alminas", "character": "Robot Servant", "id": 1394348, "credit_id": "548074229251416e780029b1", "cast_id": 55, "profile_path": null, "order": 48}, {"name": "Andy Ahrens", "character": "Dante Rothemere", "id": 1394350, "credit_id": "5480742ec3a36829ae002743", "cast_id": 56, "profile_path": null, "order": 49}, {"name": "Jermaine Tindell", "character": "Lime Orism", "id": 1394351, "credit_id": "5480743b9251414efa002adc", "cast_id": 57, "profile_path": null, "order": 50}, {"name": "Karen Anderson", "character": "Droid", "id": 1218685, "credit_id": "54807449c3a368299f002129", "cast_id": 58, "profile_path": null, "order": 51}, {"name": "Vander McLeod", "character": "Kalique Gene Tech", "id": 1379944, "credit_id": "548074569251414efa002ae2", "cast_id": 59, "profile_path": null, "order": 52}, {"name": "Thomas Gaitsch", "character": "Walker Dunlevy", "id": 1394354, "credit_id": "548074729251416e7b0027c5", "cast_id": 61, "profile_path": null, "order": 53}, {"name": "Oleg Nasobin", "character": "Zeno", "id": 1394355, "credit_id": "5480747f9251416e8100298d", "cast_id": 62, "profile_path": null, "order": 54}, {"name": "Sarah Campbell", "character": "Gynaecological Nurse", "id": 1109370, "credit_id": "54807498c3a36829b50031fc", "cast_id": 64, "profile_path": null, "order": 55}, {"name": "Olia Klein", "character": "Russian Refugee", "id": 1394356, "credit_id": "548074a89251416e74002c10", "cast_id": 65, "profile_path": null, "order": 56}, {"name": "Kenny Knight", "character": "Test subject", "id": 1394357, "credit_id": "548074b4c3a36829a70029f3", "cast_id": 66, "profile_path": null, "order": 57}, {"name": "Rimmel Daniel", "character": "Royal Guard", "id": 1394358, "credit_id": "54807502c3a36829a3002a4c", "cast_id": 67, "profile_path": null, "order": 58}, {"name": "Nathan Geist", "character": "Chicago Pedestrian (uncredited)", "id": 1394359, "credit_id": "5480750f9251416e74002c21", "cast_id": 68, "profile_path": null, "order": 59}, {"name": "Raiden Integra", "character": "Chicago Pedestrian (uncredited)", "id": 1298706, "credit_id": "5480751ac3a36829ae00275c", "cast_id": 69, "profile_path": "/jNS1cQU4LpQb1B5XCWok5YE1EMz.jpg", "order": 60}, {"name": "Ryan Browning Johnson", "character": "Chicago Pedestrian (uncredited)", "id": 1394360, "credit_id": "54807527c3a36829ae002762", "cast_id": 70, "profile_path": null, "order": 61}, {"name": "Clem So", "character": "Kalique Coder (uncredited)", "id": 1394361, "credit_id": "54807535c3a36829ae002769", "cast_id": 71, "profile_path": null, "order": 62}], "directors": [{"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe494bc3a368484e124451", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}, {"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe494bc3a368484e124457", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}], "vote_average": 5.6, "runtime": 124}, "11224": {"poster_path": "/8zkulWy8yzjYEd8wGZp80wadtdD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62141149, "overview": "When Cinderella's cruel stepmother prevents her from attending the Royal Ball, she gets some unexpected help from the lovable mice Gus and Jaq, and from her Fairy Godmother.", "video": false, "id": 11224, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Cinderella", "tagline": "The greatest love story ever told.", "vote_count": 378, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jKPAvcvAgoEbay3umTtMhAT9plp.jpg", "poster_path": "/hV605L6y9B6f8wHakjFH8wE2Wdj.jpg", "id": 55419, "name": "Cinderella Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0042332", "adult": false, "backdrop_path": "/xSN1cpugrzi8DjpVxtHeRRlbB6Q.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1950-03-04", "popularity": 2.44466498297895, "original_title": "Cinderella", "budget": 2900000, "cast": [{"name": "Ilene Woods", "character": "Cinderella (voice)", "id": 68652, "credit_id": "52fe44149251416c750282ff", "cast_id": 1, "profile_path": "/gUYHqg3166nXSFM1WBtzFboRhUC.jpg", "order": 0}, {"name": "Eleanor Audley", "character": "Lady Tremaine (voice)", "id": 67289, "credit_id": "52fe44149251416c75028303", "cast_id": 2, "profile_path": "/eTU6naXyRKll0dLWxN8fp2Iiqdy.jpg", "order": 1}, {"name": "Verna Felton", "character": "Fairy Godmother (voice)", "id": 67290, "credit_id": "52fe44149251416c75028307", "cast_id": 3, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 2}, {"name": "Rhoda Williams", "character": "Drizella (voice)", "id": 179371, "credit_id": "52fe44149251416c7502836b", "cast_id": 21, "profile_path": null, "order": 3}, {"name": "James MacDonald", "character": "Bruno / Gus / Jaques (voice)", "id": 137461, "credit_id": "52fe44149251416c7502836f", "cast_id": 22, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 4}, {"name": "Luis van Rooten", "character": "King / Grand Duke (voice)", "id": 85361, "credit_id": "52fe44149251416c75028373", "cast_id": 23, "profile_path": "/q3p3zhtnjsbB4iChG0lsNdBIzRq.jpg", "order": 5}, {"name": "Don Barclay", "character": "Doorman (voice)", "id": 30144, "credit_id": "52fe44149251416c75028377", "cast_id": 24, "profile_path": "/eg54HOmaOCtvERwSHPpQWqR8uJZ.jpg", "order": 6}, {"name": "Lucille Bliss", "character": "Anastasia (voice)", "id": 148111, "credit_id": "52fe44149251416c7502837b", "cast_id": 25, "profile_path": "/uBmRWAZ2ZU6Ett5ti7Zb4AMnQxF.jpg", "order": 7}, {"name": "Marion Darlington", "character": "Birds (voice)", "id": 5463, "credit_id": "52fe44149251416c7502837f", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Mike Douglas", "character": "Prince Charming (singing voice) (uncredited)", "id": 334719, "credit_id": "52fe44149251416c75028383", "cast_id": 27, "profile_path": "/tf0aOc2kRnFeDScZvM8Y5RYDkwH.jpg", "order": 9}, {"name": "June Foray", "character": "Lucifer (voice) (uncredited)", "id": 15098, "credit_id": "52fe44149251416c75028387", "cast_id": 28, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 10}, {"name": "Betty Lou Gerson", "character": "Narrator (voice) (uncredited)", "id": 71779, "credit_id": "52fe44149251416c7502838b", "cast_id": 29, "profile_path": "/sqapDTfgfIy6j0KHJTjzPaPzMJ8.jpg", "order": 11}, {"name": "Earl Keen", "character": "Bruno (voice) (uncredited)", "id": 1102204, "credit_id": "52fe44149251416c7502838f", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Clint McCauley", "character": "Mouse (voice) (uncredited)", "id": 1068186, "credit_id": "52fe44149251416c75028393", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Marni Nixon", "character": "Main Title Soloist (voice) (uncredited)", "id": 187678, "credit_id": "544cc7b2c3a36872c7001c0b", "cast_id": 40, "profile_path": "/hPWlkETSB5V7OQkixZic3QDxmwq.jpg", "order": 14}, {"name": "William Phipps", "character": "Prince Charming (voice) (uncredited)", "id": 99754, "credit_id": "52fe44149251416c7502839b", "cast_id": 33, "profile_path": "/qtysYKmvkkUgRDSfY5Mb3nO0MXn.jpg", "order": 15}, {"name": "Thurl Ravenscroft", "character": "Additional Voices (voice) (uncredited)", "id": 150739, "credit_id": "52fe44149251416c7502839f", "cast_id": 34, "profile_path": "/6DSmCbrUeNP7lDJkhTkJ7I9hTeq.jpg", "order": 16}, {"name": "Helen Seibert", "character": "Mouse (voice) (uncredited)", "id": 1269614, "credit_id": "52fe44149251416c750283a3", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Jeffrey Stone", "character": "Additional Voices (voice) (uncredited)", "id": 150521, "credit_id": "52fe44149251416c750283a7", "cast_id": 36, "profile_path": "/so5ok7UKtS7kFjFjQsytpHCnAFa.jpg", "order": 18}, {"name": "June Sullivan", "character": "Mouse (voice) (uncredited)", "id": 1269615, "credit_id": "52fe44159251416c750283ab", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Lucille Williams", "character": "Perla - a Mouse (voice) (uncredited)", "id": 1269616, "credit_id": "52fe44159251416c750283af", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "John Woodbury", "character": "Additional Voices (voice) (uncredited)", "id": 1269617, "credit_id": "52fe44159251416c750283b3", "cast_id": 39, "profile_path": null, "order": 21}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe44149251416c7502830d", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe44149251416c75028313", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe44149251416c75028319", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}], "vote_average": 6.4, "runtime": 74}, "265177": {"poster_path": "/qAaRYr9Pnr0TaMa19497U3l7w69.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 3500000, "overview": "A widowed single mother, raising her violent son alone, finds new hope when a mysterious neighbor inserts herself into their household.", "video": false, "id": 265177, "genres": [{"id": 18, "name": "Drama"}], "title": "Mommy", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3612616", "adult": false, "backdrop_path": "/e1JukFYKIahB9L0IrLJpa03IarG.jpg", "production_companies": [{"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Metafilms", "id": 13839}, {"name": "SODEC", "id": 13311}, {"name": "Super \u00c9cran", "id": 11578}], "release_date": "2014-09-19", "popularity": 2.43362331555727, "original_title": "Mommy", "budget": 4900000, "cast": [{"name": "Anne Dorval", "character": "Diane (Die) Despr\u00e9s", "id": 86612, "credit_id": "534fc9cd0e0a267ea1000e09", "cast_id": 2, "profile_path": "/4iU4Cjkgq2ekIDK0IlOcDNcEdnC.jpg", "order": 1}, {"name": "Antoine-Olivier Pilon", "character": "Steve O'Connor Despr\u00e9s", "id": 1310706, "credit_id": "534fca000e0a267eab000d52", "cast_id": 3, "profile_path": "/ysTepsTcZyXXVpLUhKoZgxELpiJ.jpg", "order": 2}, {"name": "Suzanne Cl\u00e9ment", "character": "Kyla", "id": 142689, "credit_id": "534fca140e0a267ea8000df0", "cast_id": 4, "profile_path": "/gIJRi7RLfALUgFbxsSVLnodwt8T.jpg", "order": 3}, {"name": "Patrick Huard", "character": "Paul", "id": 142995, "credit_id": "54084210c3a368581b000ea2", "cast_id": 5, "profile_path": "/nsUGZgUSYWQCR5RBQaOgrECyCFA.jpg", "order": 4}, {"name": "Alexandre Goyette", "character": "Patrick", "id": 123185, "credit_id": "550576e49251416cb70003ca", "cast_id": 6, "profile_path": "/nG6hOmNgrtaMmQ2egKaWLuvXP8c.jpg", "order": 5}, {"name": "Mich\u00e8le Lituac", "character": "Directrice du centre", "id": 1440314, "credit_id": "5505770592514174b000291c", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Viviane Pascal", "character": "Marthe", "id": 1440315, "credit_id": "55057715c3a3686b75000324", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Natalie Hamel-Roy", "character": "Natache", "id": 227059, "credit_id": "55057724c3a368262e002854", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Xavier Dolan", "department": "Directing", "job": "Director", "credit_id": "534fc9810e0a267eb6000d87", "profile_path": "/rXWs3ojOKvdRj95PP8dXY9yVqDe.jpg", "id": 143593}], "vote_average": 8.4, "runtime": 138}, "3034": {"poster_path": "/3desYoraj5zngFxvSwmh3Jmbeib.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86273333, "overview": "A young neurosurgeon (Gene Wilder) inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback called Igor, a pretty lab assistant named Inga and the old housekeeper, Frau Blucher. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind...", "video": false, "id": 3034, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Young Frankenstein", "tagline": "The scariest comedy of all time!", "vote_count": 231, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072431", "adult": false, "backdrop_path": "/xniibygKalBzJg2yCugPwZCJe31.jpg", "production_companies": [{"name": "Crossbow Productions", "id": 1296}, {"name": "Gruskoff/Venture Films", "id": 1297}, {"name": "Jouer Limited", "id": 1298}], "release_date": "1974-12-15", "popularity": 0.882882845797331, "original_title": "Young Frankenstein", "budget": 2800000, "cast": [{"name": "Gene Wilder", "character": "Dr. Frederick Frankenstein", "id": 3460, "credit_id": "52fe437fc3a36847f805875b", "cast_id": 17, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 0}, {"name": "Marty Feldman", "character": "Igor", "id": 29802, "credit_id": "52fe437fc3a36847f805875f", "cast_id": 18, "profile_path": "/g9MR6KKP1sBeOKBof0Sp0ksauuy.jpg", "order": 1}, {"name": "Madeline Kahn", "character": "Elizabeth", "id": 29803, "credit_id": "52fe437fc3a36847f8058763", "cast_id": 19, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 2}, {"name": "Cloris Leachman", "character": "Frau Bl\u00fccher", "id": 9599, "credit_id": "52fe437fc3a36847f8058767", "cast_id": 20, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 3}, {"name": "Kenneth Mars", "character": "Insp. Hans Wilhelm Friedrich Kamp", "id": 9601, "credit_id": "52fe437fc3a36847f805876b", "cast_id": 21, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 4}, {"name": "Richard Haydn", "character": "Gerhard Falkstein", "id": 29283, "credit_id": "52fe437fc3a36847f805876f", "cast_id": 22, "profile_path": "/fEUsWCS5Pd2pnarasaPIV9ksEst.jpg", "order": 5}, {"name": "Peter Boyle", "character": "The Monster", "id": 1039, "credit_id": "52fe437fc3a36847f8058773", "cast_id": 23, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 6}, {"name": "Teri Garr", "character": "Inga", "id": 8437, "credit_id": "52fe437fc3a36847f8058777", "cast_id": 24, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 7}, {"name": "Liam Dunn", "character": "Mr. Hilltop", "id": 152711, "credit_id": "52fe437fc3a36847f8058781", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Danny Goldman", "character": "Medical Student", "id": 111383, "credit_id": "52fe437fc3a36847f8058785", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Oscar Beregi Jr.", "character": "Sadistic Jailor (as Oscar Beregi)", "id": 213641, "credit_id": "52fe437fc3a36847f8058789", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Arthur Malet", "character": "Village Elder", "id": 13392, "credit_id": "52fe437fc3a36847f805878d", "cast_id": 29, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 11}, {"name": "Anne Beesley", "character": "Little Girl", "id": 1068894, "credit_id": "52fe437fc3a36847f8058791", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Monte Landis", "character": "Gravedigger", "id": 44823, "credit_id": "52fe437fc3a36847f8058795", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Rusty Blitz", "character": "Gravedigger", "id": 1068895, "credit_id": "52fe437fc3a36847f8058799", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "John Madison", "character": "Villager", "id": 1068896, "credit_id": "52fe437fc3a36847f805879d", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "John Dennis", "character": "Orderly in Frankenstein's Class", "id": 134613, "credit_id": "52fe437fc3a36847f80587a1", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Gene Hackman", "character": "Blindman", "id": 193, "credit_id": "52fe437fc3a36847f80587a5", "cast_id": 35, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 17}, {"name": "Berry Kroeger", "character": "First Village Elder (uncredited)", "id": 85988, "credit_id": "52fe437fc3a36847f80587a9", "cast_id": 36, "profile_path": "/dIP8Ah1uGvbZjItzkjWJf82Y7qz.jpg", "order": 18}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe437ec3a36847f8058703", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 7.3, "runtime": 106}, "3036": {"poster_path": "/1TDzKNhsFy4JCE8PscFPX10fBvf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112000000, "overview": "Based on Mary Shelley's novel, \"Frankenstein\" tells the story of Victor Frankenstein, a promising young doctor who, devastated by the death of his mother during childbirth, becomes obsessed with bringing the dead back to life. His experiments lead to the creation of a monster, which Frankenstein has put together with the remains of corpses. It's not long before Frankenstein regrets his actions.", "video": false, "id": 3036, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Frankenstein", "tagline": "Be Warned. It's Alive", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109836", "adult": false, "backdrop_path": "/eUhGqCRzPDb6bw01Mb9aHBXVjnM.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1994-11-04", "popularity": 0.615505825424932, "original_title": "Frankenstein", "budget": 45000000, "cast": [{"name": "Robert De Niro", "character": "The Creature", "id": 380, "credit_id": "52fe437fc3a36847f80588e3", "cast_id": 16, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Kenneth Branagh", "character": "Victor Frankenstein", "id": 11181, "credit_id": "52fe437fc3a36847f80588e7", "cast_id": 17, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 1}, {"name": "Tom Hulce", "character": "Henry Clerval", "id": 3999, "credit_id": "52fe437fc3a36847f80588eb", "cast_id": 18, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Elizabeth", "id": 1283, "credit_id": "52fe437fc3a36847f80588ef", "cast_id": 19, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Aidan Quinn", "character": "Cap. Robert Walton", "id": 18992, "credit_id": "52fe437fc3a36847f80588f3", "cast_id": 20, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 4}, {"name": "Ian Holm", "character": "Baron Frankenstein", "id": 65, "credit_id": "52fe437fc3a36847f80588f7", "cast_id": 21, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 5}, {"name": "Richard Briers", "character": "Gro\u00dfvater", "id": 29859, "credit_id": "52fe437fc3a36847f80588fb", "cast_id": 22, "profile_path": "/gT5VvCAipkqxtCWfRRIaAVNezQh.jpg", "order": 6}, {"name": "John Cleese", "character": "Prof. Waldman", "id": 8930, "credit_id": "52fe437fc3a36847f80588ff", "cast_id": 23, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 7}, {"name": "Robert Hardy", "character": "Prof. Krempe", "id": 23076, "credit_id": "52fe437fc3a36847f8058903", "cast_id": 24, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 8}, {"name": "Cherie Lunghi", "character": "Caroline Beaufort Frankenstein", "id": 20768, "credit_id": "52fe437fc3a36847f8058907", "cast_id": 25, "profile_path": "/1veFTb3GYMxcw6B65ff2y2xBsMM.jpg", "order": 9}, {"name": "Celia Imrie", "character": "Mrs. Moritz", "id": 9139, "credit_id": "52fe437fc3a36847f805890b", "cast_id": 26, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 10}, {"name": "Trevyn McDowell", "character": "Justine", "id": 29860, "credit_id": "52fe437fc3a36847f805890f", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Jimmy Yuill", "character": "Greigori", "id": 151797, "credit_id": "542d9e9ac3a36859e20003fc", "cast_id": 29, "profile_path": "/zeuinVj4XOYzWSty96mM3SaD1mB.jpg", "order": 12}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe437fc3a36847f8058915", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 6.0, "runtime": 123}, "11232": {"poster_path": "/cpydhxnOQra4knQpcvGugwCqgpI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.", "video": false, "id": 11232, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Kate & Leopold", "tagline": "If they lived in the same century they'd be perfect for each other.", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0035423", "adult": false, "backdrop_path": "/peukS1zqbrHl4WuKb4LAGBarSb8.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2001-12-25", "popularity": 0.561561149143469, "original_title": "Kate & Leopold", "budget": 0, "cast": [{"name": "Meg Ryan", "character": "Kate McKay", "id": 5344, "credit_id": "52fe44169251416c750286e7", "cast_id": 8, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "Leopold", "id": 6968, "credit_id": "52fe44169251416c750286eb", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Liev Schreiber", "character": "Stuart Besser", "id": 23626, "credit_id": "52fe44169251416c750286ef", "cast_id": 10, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Charlie McKay", "id": 33654, "credit_id": "52fe44169251416c750286f3", "cast_id": 11, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Natasha Lyonne", "character": "Darci", "id": 10871, "credit_id": "52fe44169251416c750286f7", "cast_id": 12, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 4}, {"name": "Bradley Whitford", "character": "J.J. Camden", "id": 11367, "credit_id": "52fe44169251416c750286fb", "cast_id": 13, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 5}, {"name": "Paxton Whitehead", "character": "Uncle Millard", "id": 129996, "credit_id": "52fe44169251416c750286ff", "cast_id": 14, "profile_path": "/kqj2BMIx8BZiHNW4Ilay889QFiv.jpg", "order": 6}, {"name": "Spalding Gray", "character": "Dr. Geisler", "id": 8978, "credit_id": "52fe44169251416c75028703", "cast_id": 15, "profile_path": "/q3kkmr5ars0K56OQq49MqZ9Orgo.jpg", "order": 7}, {"name": "Josh Stamberg", "character": "Colleague Bob", "id": 21882, "credit_id": "52fe44169251416c75028707", "cast_id": 16, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 8}, {"name": "Matthew Sussman", "character": "Ad Executive Phil", "id": 159869, "credit_id": "52fe44169251416c7502870b", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Charlotte Ayanna", "character": "Patrice", "id": 6281, "credit_id": "52fe44169251416c7502870f", "cast_id": 18, "profile_path": "/5bqzLVKlwdt1ePTHnYjZUaBpCC8.jpg", "order": 10}, {"name": "Philip Bosco", "character": "Otis", "id": 6541, "credit_id": "52fe44169251416c75028713", "cast_id": 19, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 11}, {"name": "Andrew Jack", "character": "Roebling", "id": 240629, "credit_id": "52fe44169251416c75028717", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Stan Tracy", "character": "Photographer", "id": 205583, "credit_id": "52fe44169251416c7502871b", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Kristen Schaal", "character": "Miss Tree", "id": 109869, "credit_id": "52fe44169251416c7502871f", "cast_id": 22, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 14}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe44169251416c750286bf", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 5.8, "runtime": 118}, "11238": {"poster_path": "/hTDQAA9ww2lGYOvLzENWYCYuyON.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "At long last, Aladdin is about to marry the Princess Jasmine. Despite the presence and encouragement of his friends Genie, Carpet, and Abu, he is fearful and anxious. He is most worried as to what kind of father he will be, having never known his own. But when the 40 Thieves disrupt the wedding trying to steal a magical oracular talisman, Aladdin is drawn into a dangerous quest to stop the thieves.", "video": false, "id": 11238, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Aladdin and the King of Thieves", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/acIVr0B6wWxvtEzoIOzWWgY6bs2.jpg", "poster_path": "/9jAbtLbAbebtuF5q1gZIPUCuegd.jpg", "id": 86027, "name": "Aladdin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115491", "adult": false, "backdrop_path": "/wxdHHQ0MtOEa9qtdHfROC2xvUT9.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}], "release_date": "1996-08-13", "popularity": 1.05819378945112, "original_title": "Aladdin and the King of Thieves", "budget": 0, "cast": [{"name": "Robin Williams", "character": "Genie", "id": 2157, "credit_id": "5516af98c3a368348900131d", "cast_id": 23, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Scott Weinger", "character": "Aladdin (voice)", "id": 15827, "credit_id": "52fe44179251416c7502895f", "cast_id": 2, "profile_path": "/rlZpPoORiJzStzIuAyrPOlLhnaL.jpg", "order": 1}, {"name": "Linda Larkin", "character": "Princess Jasmine (voice)", "id": 15829, "credit_id": "52fe44179251416c75028963", "cast_id": 3, "profile_path": "/7dFMvof0vdGHVvtfpAewjzGOZhf.jpg", "order": 2}, {"name": "John Rhys-Davies", "character": "The King of Thieves / Cassim (voice)", "id": 655, "credit_id": "52fe44179251416c75028967", "cast_id": 4, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 3}, {"name": "Gilbert Gottfried", "character": "Iago the Parrot (voice)", "id": 15832, "credit_id": "52fe44179251416c7502896b", "cast_id": 5, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 4}, {"name": "Jerry Orbach", "character": "Sa'luk (voice)", "id": 725, "credit_id": "52fe44189251416c750289ab", "cast_id": 16, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 5}, {"name": "Val Bettin", "character": "Sultan of Agrabah (voice)", "id": 61674, "credit_id": "52fe44189251416c750289af", "cast_id": 17, "profile_path": "/dwdUalc3PdmC1zoAX7qHl6FMvrq.jpg", "order": 6}, {"name": "Frank Welker", "character": "Abu the Monkey (voice)", "id": 15831, "credit_id": "52fe44189251416c750289b3", "cast_id": 18, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 7}, {"name": "Jim Cummings", "character": "Razoul (voice)", "id": 12077, "credit_id": "52fe44189251416c750289b7", "cast_id": 19, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 8}, {"name": "C. C. H. Pounder", "character": "The Magic Oracle (voice)", "id": 30485, "credit_id": "52fe44189251416c750289bb", "cast_id": 20, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 9}, {"name": "Liz Callaway", "character": "Princess Jasmine (singing voice)", "id": 58828, "credit_id": "52fe44189251416c750289bf", "cast_id": 21, "profile_path": "/pIZwTupFvJCppbYt26q4ydKIbnl.jpg", "order": 10}, {"name": "Brad Kane", "character": "Aladdin (singing voice)", "id": 228428, "credit_id": "52fe44189251416c750289c3", "cast_id": 22, "profile_path": "/g4UmBOKZfYYD5VtyuAO4t4LpCcP.jpg", "order": 11}], "directors": [{"name": "Tad Stones", "department": "Directing", "job": "Director", "credit_id": "52fe44179251416c75028971", "profile_path": null, "id": 56852}], "vote_average": 6.1, "runtime": 80}, "3049": {"poster_path": "/nZirljb8XYbKTWsRQTplDGhx39Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man . . . or beast!", "video": false, "id": 3049, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "Ace Ventura: Pet Detective", "tagline": "He's the best there is! (Actually, he's the only one there is.)", "vote_count": 578, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aPoX8RAxA9J2XW44Ud0AozTUFop.jpg", "poster_path": "/guYqF6CvU48aGH5nTx160Bjg35F.jpg", "id": 3167, "name": "Ace Ventura Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109040", "adult": false, "backdrop_path": "/1gTzKQ55FnVm0TNrii4L4bf0oDV.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1994-02-04", "popularity": 1.45367694865685, "original_title": "Ace Ventura: Pet Detective", "budget": 12000000, "cast": [{"name": "Jim Carrey", "character": "Ace Ventura", "id": 206, "credit_id": "52fe4380c3a36847f8058c7f", "cast_id": 3, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Sean Young", "character": "Lt. Lois Einhorn/Ray Finkel", "id": 586, "credit_id": "52fe4380c3a36847f8058ca5", "cast_id": 10, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Melissa Robinson", "id": 14405, "credit_id": "52fe4380c3a36847f8058c83", "cast_id": 4, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Tone-L\u014dc", "character": "Emilio", "id": 31004, "credit_id": "52fe4380c3a36847f8058ca9", "cast_id": 11, "profile_path": "/bKiyKnsDJFcaBdI0X23FHqkYrPv.jpg", "order": 3}, {"name": "Dan Marino", "character": "Himself", "id": 1223629, "credit_id": "53de6c230e0a265a990024e7", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4380c3a36847f8058c75", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 6.2, "runtime": 86}, "3050": {"poster_path": "/ebomUCgc1QhtuxWiEHnmJlesv2g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 294456605, "overview": "A successful physician and devoted family man, John Dolittle (Eddie Murphy) seems to have the world by the tail, until a long suppressed talent he possessed as a child, the ability to communicate with animals is suddenly reawakened with a vengeance! Now every creature within squawking distance wants the good doctor's advice, unleashing an outrageous chain of events that turns his world upside down!", "video": false, "id": 3050, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Doctor Dolittle", "tagline": "He doesn't just talk to the animals!", "vote_count": 123, "homepage": "", "belongs_to_collection": {"backdrop_path": "/dtz0ju3dikZaiSJ9HmVoMs9imT8.jpg", "poster_path": "/lbETpGm7Fw6LmB0H1LlGwHFwPPw.jpg", "id": 3169, "name": "Dr. Dolittle Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118998", "adult": false, "backdrop_path": "/g97xTt18p0WWnj6wxLGC0vBKFwQ.jpg", "production_companies": [{"name": "Joseph M. Singer Entertainment", "id": 1301}], "release_date": "1998-06-22", "popularity": 0.847789927635866, "original_title": "Doctor Dolittle", "budget": 71000000, "cast": [{"name": "Eddie Murphy", "character": "Dr. John Dolittle", "id": 776, "credit_id": "52fe4380c3a36847f8058d01", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Ossie Davis", "character": "Archer Dolittle", "id": 15531, "credit_id": "52fe4380c3a36847f8058d47", "cast_id": 13, "profile_path": "/3NU3mq5ZiiX0D41DTB5fNsjFlDB.jpg", "order": 1}, {"name": "Oliver Platt", "character": "Dr. Mark Weller", "id": 17485, "credit_id": "52fe4380c3a36847f8058d4b", "cast_id": 14, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 2}, {"name": "Peter Boyle", "character": "Calloway", "id": 1039, "credit_id": "52fe4380c3a36847f8058d4f", "cast_id": 15, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 3}, {"name": "Richard Schiff", "character": "Dr. Gene Reiss", "id": 31028, "credit_id": "52fe4380c3a36847f8058d53", "cast_id": 16, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 4}, {"name": "Kristen Wilson", "character": "Lisa Dolittle", "id": 31029, "credit_id": "52fe4380c3a36847f8058d57", "cast_id": 17, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 5}, {"name": "Kyla Pratt", "character": "Maya Dolittle", "id": 31031, "credit_id": "52fe4380c3a36847f8058d5b", "cast_id": 18, "profile_path": "/4BGV47PlqqgCcVb7zSveNOFtqjc.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Dr. Fish", "id": 4175, "credit_id": "52fe4380c3a36847f8058d5f", "cast_id": 19, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "Steven Gilborn", "character": "Dr. Sam Litvack", "id": 31032, "credit_id": "52fe4380c3a36847f8058d63", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Raven-Symon\u00e9", "character": "Charisse Dolittle", "id": 66896, "credit_id": "52fe4380c3a36847f8058d67", "cast_id": 21, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 9}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4380c3a36847f8058d07", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.4, "runtime": 85}, "265195": {"poster_path": "/idBELLgvTJ7ZiZ88B1EuVaXYlpO.jpg", "production_countries": [{"iso_3166_1": "AR", "name": "Argentina"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "A story about love deception, the return of the past, a tragedy, or even the violence contained in an everyday detail, appear themselves to push them towards the abyss, into the undeniable pleasure of losing control.", "video": false, "id": 265195, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Wild Tales", "tagline": "", "vote_count": 117, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt3011894", "adult": false, "backdrop_path": "/v8k6ZKOIs2aFhGajSPuGej9OJDh.jpg", "production_companies": [{"name": "El Deseo S.A.", "id": 11736}, {"name": "Kramer & Sigman Films", "id": 21914}, {"name": "Televisi\u00f3n Federal (Telefe)", "id": 21915}, {"name": "INCAA", "id": 8205}], "release_date": "2014-08-21", "popularity": 1.94835733167305, "original_title": "Relatos salvajes", "budget": 0, "cast": [{"name": "Ricardo Dar\u00edn", "character": "Simon Fisher", "id": 69310, "credit_id": "534fe33a0e0a267eb6000f5f", "cast_id": 0, "profile_path": "/1TQ9iE2d7r91ohbHi93KLw3QULU.jpg", "order": 1}, {"name": "Leonardo Sbaraglia", "character": "Diego", "id": 19803, "credit_id": "534fe3460e0a267eb2000ef9", "cast_id": 1, "profile_path": "/u3UxARVRPxOg1DqVbjq3Qe934ZJ.jpg", "order": 2}, {"name": "Dar\u00edo Grandinetti", "character": "Salgado", "id": 3618, "credit_id": "534fe3550e0a267ea4001030", "cast_id": 2, "profile_path": "/UQN0TZJyEsxP06yAlS1OuAZEoL.jpg", "order": 3}, {"name": "Erica Rivas", "character": "Romina", "id": 141455, "credit_id": "534fe3610e0a267eab000ee3", "cast_id": 3, "profile_path": null, "order": 4}, {"name": "Erica Rivas", "character": "Moza", "id": 141455, "credit_id": "534fe3d40e0a267ea8000fca", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Nancy Dupl\u00e1a", "character": "Victoria", "id": 114811, "credit_id": "534fe3e00e0a267eb9000fde", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Mar\u00eda Onetto ", "character": "Helena", "id": 1051297, "credit_id": "534fe3ec0e0a267ea8000fd3", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Mar\u00eda Onetto ", "character": "Mauricio", "id": 1051297, "credit_id": "534fe3f90e0a267eb6000f6f", "cast_id": 7, "profile_path": null, "order": 8}, {"name": "Rita Cortese", "character": "Cocinera", "id": 99113, "credit_id": "534fe4020e0a267eb2000f0e", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Rita Cortese", "character": "Abogado", "id": 99113, "credit_id": "534fe40a0e0a267ea8000fd8", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Julieta Zylberberg", "character": "Moza", "id": 145025, "credit_id": "55243db5c3a36847c800367d", "cast_id": 33, "profile_path": null, "order": 11}], "directors": [{"name": "Dami\u00e1n Szifr\u00f3n", "department": "Directing", "job": "Director", "credit_id": "54463243c3a368369100184c", "profile_path": null, "id": 591600}], "vote_average": 7.9, "runtime": 125}, "11247": {"poster_path": "/lzIjehNqNCFOuCRT9xJ2FYf1WPS.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70067909, "overview": "Sam Montgomery is a tomboyish, unpopular girl at school. She has been text messaging a somebody named Nomad for a few months and he asks her to meet him at the Halloween dance at 11:00 in the middle of the dance floor. The only problem is, she must get back to the diner, ran by her wicked Stepmom Fiona by 12 sharp because she is not supposed to be there. Before Nomad can found out who she is, she must leave with her best friend, Carter driving her back to the diner. After that night, everything in Sam's life goes wacko!", "video": false, "id": 11247, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "A Cinderella Story", "tagline": "Once upon a time... can happen any time.", "vote_count": 117, "homepage": "http://www2.warnerbros.com/acinderellastory/index.html", "belongs_to_collection": {"backdrop_path": "/c9RAmtGUgoa7ljS6MHLqZPBEyTx.jpg", "poster_path": "/34X6jwkjrvrtZiH6kNBhEaN2NcF.jpg", "id": 178799, "name": "A Cinderella Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356470", "adult": false, "backdrop_path": "/rUAlqyUDN2KHpAHdF2NPEWOilPa.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-07-10", "popularity": 0.857849253583638, "original_title": "A Cinderella Story", "budget": 19000000, "cast": [{"name": "Hilary Duff", "character": "Sam Montgomery", "id": 5958, "credit_id": "52fe44199251416c75028d25", "cast_id": 1, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 0}, {"name": "Jennifer Coolidge", "character": "Fiona", "id": 38334, "credit_id": "52fe44199251416c75028d29", "cast_id": 2, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 1}, {"name": "Chad Michael Murray", "character": "Austin Ames", "id": 62747, "credit_id": "52fe44199251416c75028d2d", "cast_id": 3, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 2}, {"name": "Dan Byrd", "character": "Carter Farrell", "id": 59283, "credit_id": "52fe44199251416c75028d31", "cast_id": 4, "profile_path": "/j68CP63mC20q25IFSJvvRP3TGlm.jpg", "order": 3}, {"name": "Regina King", "character": "Rhonda", "id": 9788, "credit_id": "52fe44199251416c75028d35", "cast_id": 5, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 4}, {"name": "Julie Gonzalo", "character": "Shelby Cummings", "id": 68769, "credit_id": "52fe44199251416c75028d39", "cast_id": 6, "profile_path": "/9V9qPwOVAeEcExbGkxomgWWBs1w.jpg", "order": 5}], "directors": [{"name": "Mark Rosman", "department": "Directing", "job": "Director", "credit_id": "52fe44199251416c75028d3f", "profile_path": "/vOyUS7Z64KVV3VJZu2Li4r0j2Cg.jpg", "id": 68770}], "vote_average": 6.0, "runtime": 95}, "11249": {"poster_path": "/vOykTC4dMzEHt2fyOxVRWFnl2pl.jpg", "production_countries": [{"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24829644, "overview": "The killer doll is back! The all-new film is the fifth in the popular series of Chucky (\"Child's Play\") horror comedies. Making his directorial debut is the franchise creator and writer of all five films, Don Mancini. The film introduces Glen (voiced by \"The Lord of the Rings\" star Billy Boyd), the orphan doll offspring of the irrepressible devilish-doll-come-to-life Chucky (again voiced by series", "video": false, "id": 11249, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Seed of Chucky", "tagline": "Fear The Second Coming", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387575", "adult": false, "backdrop_path": "/dKEXsWwRWCtKIGdZUzZLesz2HK6.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}], "release_date": "2004-11-11", "popularity": 0.86651450585203, "original_title": "Seed of Chucky", "budget": 12000000, "cast": [{"name": "Brad Dourif", "character": "Chucky", "id": 1370, "credit_id": "52fe441a9251416c75028e13", "cast_id": 1, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 0}, {"name": "Jennifer Tilly", "character": "Tiffany", "id": 7906, "credit_id": "52fe441a9251416c75028e17", "cast_id": 2, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 1}, {"name": "Billy Boyd", "character": "Glen", "id": 1329, "credit_id": "52fe441a9251416c75028e1b", "cast_id": 3, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 2}, {"name": "Redman", "character": "sich", "id": 54799, "credit_id": "52fe441a9251416c75028e1f", "cast_id": 4, "profile_path": "/2a9i6FjwJQWZzfU1Nw7FOvy5EqG.jpg", "order": 3}, {"name": "Hannah Spearritt", "character": "Joan", "id": 35865, "credit_id": "52fe441a9251416c75028e23", "cast_id": 5, "profile_path": "/xJlws5XMI3jzncqgJ46jgCwbOCm.jpg", "order": 4}, {"name": "John Waters", "character": "Pete Peters", "id": 10367, "credit_id": "52fe441a9251416c75028e27", "cast_id": 6, "profile_path": "/3qDSp0LlJ1Q2y802OyJcHVARsbZ.jpg", "order": 5}], "directors": [{"name": "Don Mancini", "department": "Directing", "job": "Director", "credit_id": "52fe441a9251416c75028e2d", "profile_path": null, "id": 65677}], "vote_average": 5.1, "runtime": 87}, "11253": {"poster_path": "/aCnLkOI81kW1nmU7VZAP647SoKI.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160388063, "overview": "In this continuation to the adventure of the demon superhero, an evil elf breaks an ancient pact between humans and creatures, as he declares war against humanity. He is on a mission to release The Golden Army, a deadly group of fighting machines that can destroy the human race. As Hell on Earth is ready to erupt, Hellboy and his crew set out to defeat the evil prince.", "video": false, "id": 11253, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Hellboy II: The Golden Army", "tagline": "Saving the world is a hell of a job.", "vote_count": 429, "homepage": "", "belongs_to_collection": {"backdrop_path": "/i6WF7cYiogl8g5ryZDbZBw8RNVN.jpg", "poster_path": "/81B1OdGY7f3TVN06eKra25vHzYk.jpg", "id": 17235, "name": "Hellboy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411477", "adult": false, "backdrop_path": "/df21ZOrmNzHU63jiLm1NYwSOegE.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Internationale Filmproduktion Eagle", "id": 21498}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Relativity Media", "id": 7295}, {"name": "Lawrence Gordon Productions", "id": 840}], "release_date": "2008-07-11", "popularity": 0.876502175050303, "original_title": "Hellboy II: The Golden Army", "budget": 85000000, "cast": [{"name": "Ron Perlman", "character": "Hellboy", "id": 2372, "credit_id": "52fe441b9251416c75028f73", "cast_id": 3, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 0}, {"name": "Selma Blair", "character": "Liz Sherman", "id": 11826, "credit_id": "52fe441b9251416c75028f77", "cast_id": 4, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 1}, {"name": "Jeffrey Tambor", "character": "Tom Manning", "id": 4175, "credit_id": "52fe441b9251416c75028f7b", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 2}, {"name": "Doug Jones", "character": "Abe Sapien", "id": 17005, "credit_id": "52fe441b9251416c75028f7f", "cast_id": 6, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 3}, {"name": "John Hurt", "character": "Trevor Bruttenholm", "id": 5049, "credit_id": "52fe441b9251416c75028f83", "cast_id": 7, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Luke Goss", "character": "Prince Nuada", "id": 10843, "credit_id": "52fe441b9251416c75028f87", "cast_id": 8, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 5}, {"name": "John Alexander", "character": "Johann Krauss / Bethmoora Goblin", "id": 443770, "credit_id": "52fe441b9251416c75028f91", "cast_id": 10, "profile_path": "/5tcxoXCC4hh12OowR1kITzkrCmC.jpg", "order": 6}, {"name": "James Dodd", "character": "Johann Krauss", "id": 1050937, "credit_id": "52fe441b9251416c75028f95", "cast_id": 11, "profile_path": "/29JxbaBmOFoDgXAG2VjqZyj1Krz.jpg", "order": 7}, {"name": "Seth MacFarlane", "character": "Johann (voice)", "id": 52139, "credit_id": "52fe441b9251416c75028f99", "cast_id": 12, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 8}, {"name": "Anna Walton", "character": "Princess Nuala", "id": 221553, "credit_id": "52fe441b9251416c75028f9d", "cast_id": 13, "profile_path": "/tGhVmFNpG5Z5EUAHnPzeAc8uPuJ.jpg", "order": 9}, {"name": "Brian Steele", "character": "Wink / Cronie / Spice Shop Troll / Cathedral Head / Fragglewump", "id": 12359, "credit_id": "52fe441b9251416c75028fa1", "cast_id": 14, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 10}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe441b9251416c75028f69", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.3, "runtime": 120}, "265208": {"poster_path": "/cZMjg5fWkhJ1D7MouzZuiB16Hdk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a Las Vegas bodyguard with lethal skills and a gambling problem gets in trouble with the mob, he has one last play\u2026 and it's all or nothing.", "video": false, "id": 265208, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Wild Card", "tagline": "It's a card\u2026 and it's wild. Now watch the movie.", "vote_count": 140, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2231253", "adult": false, "backdrop_path": "/tm5DQMU1jCSHCAjSyC6MzGGbWw7.jpg", "production_companies": [{"name": "Sierra / Affinity", "id": 24049}, {"name": "Lionsgate", "id": 1632}, {"name": "SJ Heat Productions", "id": 45980}], "release_date": "2015-01-30", "popularity": 6.15744914092498, "original_title": "Wild Card", "budget": 30000000, "cast": [{"name": "Jason Statham", "character": "Nick Wild", "id": 976, "credit_id": "534febb30e0a267eaf00109a", "cast_id": 0, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Michael Angarano", "character": "Cyrus Kinnick", "id": 11665, "credit_id": "5396113d0e0a266dce00755c", "cast_id": 10, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 1}, {"name": "Dominik Garc\u00eda-Lorido", "character": "Holly", "id": 58635, "credit_id": "54cdd813c3a3681c9c001d80", "cast_id": 14, "profile_path": "/zQJDrk8GTVZFYMFlwQuE9Dmnvb8.jpg", "order": 2}, {"name": "Hope Davis", "character": "Cassandra", "id": 15250, "credit_id": "54cdd844925141475b004487", "cast_id": 15, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 3}, {"name": "Milo Ventimiglia", "character": "Danny DeMarco", "id": 16501, "credit_id": "539611160e0a266dc2007413", "cast_id": 8, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 4}, {"name": "Max Casella", "character": "Osgood", "id": 7133, "credit_id": "539611830e0a266dca0074f9", "cast_id": 13, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 5}, {"name": "Stanley Tucci", "character": "Baby", "id": 2283, "credit_id": "539610fe0e0a266db4007604", "cast_id": 7, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 6}, {"name": "Jason Alexander", "character": "Pinky", "id": 1206, "credit_id": "5396116e0e0a266dbf00762a", "cast_id": 12, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 7}, {"name": "Sof\u00eda Vergara", "character": "D.D.", "id": 63522, "credit_id": "539610d80e0a266dbb0076c4", "cast_id": 5, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 8}, {"name": "Anne Heche", "character": "Roxy", "id": 8256, "credit_id": "539611280e0a266dc500732b", "cast_id": 9, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 9}, {"name": "Fran\u00e7ois Vincentelli", "character": "Benny", "id": 225479, "credit_id": "55318293925141529b0009e9", "cast_id": 16, "profile_path": "/a5E9Afd5hhBEJTwmrslihKcyWU0.jpg", "order": 10}, {"name": "Chris Browning", "character": "Tiel", "id": 76543, "credit_id": "553182fcc3a3682219000a37", "cast_id": 17, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 11}, {"name": "Matthew Willig", "character": "Kinlaw", "id": 92617, "credit_id": "5396115a0e0a266dbf007627", "cast_id": 11, "profile_path": "/5ZW9nqkmFnWTIkr4ALNCiHdPt9S.jpg", "order": 12}, {"name": "Davenia McFadden", "character": "Millicent", "id": 75620, "credit_id": "553183569251415289000955", "cast_id": 18, "profile_path": "/uX5egRwfOly93uuJeSahVIxfLFV.jpg", "order": 13}, {"name": "Michael Papajohn", "character": "Pit Boss", "id": 20582, "credit_id": "5531837d925141528f0009d2", "cast_id": 19, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 14}, {"name": "Jean Claude Leuyer", "character": "Julian Reeves", "id": 52904, "credit_id": "553183c6c3a3682219000a57", "cast_id": 20, "profile_path": "/qwWruzfs5vC4V5FCyNIEGJvupKm.jpg", "order": 15}, {"name": "Greice Santo", "character": "Cocktail Waitress", "id": 1450383, "credit_id": "553183edc3a3682226000ad2", "cast_id": 21, "profile_path": "/x7SIECWrGFPVzqRPjsNJpNjZkWd.jpg", "order": 16}, {"name": "Freddie Poole", "character": "Frank", "id": 1386325, "credit_id": "55318500925141528f0009f7", "cast_id": 22, "profile_path": "/ynLllVrf9oS61EYEycYR489s3Fu.jpg", "order": 17}, {"name": "Nick Epper", "character": "Tony", "id": 1455749, "credit_id": "553185c8925141529e000a36", "cast_id": 23, "profile_path": "/16cVCwAYJMM7k4LTu64vJDTELEk.jpg", "order": 18}, {"name": "Lara Grice", "character": "First Doctor", "id": 94428, "credit_id": "55318709c3a3682223000d0f", "cast_id": 24, "profile_path": "/5bVR1UvnPyLgCcJqGHCnRCeLKPI.jpg", "order": 19}, {"name": "D'Arcy Allen", "character": "HotShot Dealer", "id": 570706, "credit_id": "553187b8c3a3682219000ad1", "cast_id": 25, "profile_path": "/sYUlDdzLJflvSJ2WAVmTpRz79dO.jpg", "order": 20}, {"name": "Shanna Forrestall", "character": "Marie", "id": 120251, "credit_id": "55318806c3a3682223000d2d", "cast_id": 26, "profile_path": "/3obLXjztke735vaes6XAdP0o1P8.jpg", "order": 21}, {"name": "Lee Perkins", "character": "Mean Dealer", "id": 98175, "credit_id": "5531882a925141528c000a44", "cast_id": 27, "profile_path": "/6Zy5TrYeol8di9HUJVneFc1mHwt.jpg", "order": 22}, {"name": "Angela Kerecz", "character": "Sexy Santa Annie", "id": 1285499, "credit_id": "539610ef0e0a266dbf00761c", "cast_id": 6, "profile_path": "/pTsh8auk8614t2rghDD4waA6l7A.jpg", "order": 23}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "534febd40e0a267eab000f92", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.2, "runtime": 92}, "14164": {"poster_path": "/yERkcVylXAcTCi8f0qrba4rmWwg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The young warrior Son Goku sets out on a quest, racing against time and the vengeful King Piccolo, to collect a set of seven magical orbs that will grant their wielder unlimited power.", "video": false, "id": 14164, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dragonball Evolution", "tagline": "The legend comes to life.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt1098327", "adult": false, "backdrop_path": "/whfRBkEMlY3wdRsMNv9hDz5afJu.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2009-04-01", "popularity": 0.365108811461441, "original_title": "Dragonball Evolution", "budget": 100000000, "cast": [{"name": "Justin Chatwin", "character": "Goku", "id": 503, "credit_id": "52fe45d29251416c75063aff", "cast_id": 1, "profile_path": "/rG5aYePsnpDf3H5NS6iH0F63WIy.jpg", "order": 0}, {"name": "Joon Park", "character": "Yamcha", "id": 78323, "credit_id": "52fe45d29251416c75063b15", "cast_id": 5, "profile_path": "/bEBDDiHMdPk2cXtMVb3sDBU52ND.jpg", "order": 1}, {"name": "Jamie Chung", "character": "Chi Chi", "id": 78324, "credit_id": "52fe45d29251416c75063b19", "cast_id": 6, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 2}, {"name": "Emmy Rossum", "character": "Bulma", "id": 4730, "credit_id": "52fe45d29251416c75063b1d", "cast_id": 7, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 3}, {"name": "James Marsters", "character": "Lord Piccolo", "id": 47297, "credit_id": "52fe45d39251416c75063b21", "cast_id": 8, "profile_path": "/asmCNHg9nUC2Yv1d7LMQrQ5Adul.jpg", "order": 4}, {"name": "Randall Duk Kim", "character": "Grandpa Gohan", "id": 9462, "credit_id": "52fe45d39251416c75063b25", "cast_id": 9, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 5}, {"name": "Ernie Hudson", "character": "Master Mutaito", "id": 8874, "credit_id": "52fe45d39251416c75063b29", "cast_id": 10, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 6}, {"name": "Texas Battle", "character": "Carey Fuller", "id": 53185, "credit_id": "52fe45d39251416c75063b2d", "cast_id": 11, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 7}, {"name": "Shavon Kirksey", "character": "Emi", "id": 78325, "credit_id": "52fe45d39251416c75063b31", "cast_id": 12, "profile_path": "/AhFWsZegizadYuoJ62CUfJiFwPI.jpg", "order": 8}, {"name": "Eriko Tamura", "character": "Mai", "id": 37492, "credit_id": "52fe45d39251416c75063b35", "cast_id": 13, "profile_path": "/xlrEm5myJZmYjiJUohIa9QiRaLD.jpg", "order": 9}, {"name": "Luis Arrieta", "character": "Weaver", "id": 78326, "credit_id": "52fe45d39251416c75063b39", "cast_id": 14, "profile_path": "/s7dcaUvhvv6p55Ag1aBP5vVL8vE.jpg", "order": 10}, {"name": "Richard Blake", "character": "Agundas", "id": 78327, "credit_id": "52fe45d39251416c75063b3d", "cast_id": 15, "profile_path": "/cRnVHYiiouJb6jgDnUiLX6xvIiI.jpg", "order": 11}, {"name": "Julian Sedgwick", "character": "Mr. Kingery", "id": 78328, "credit_id": "52fe45d39251416c75063b41", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Chow Yun-Fat", "character": "Master Roshi", "id": 1619, "credit_id": "52fe45d39251416c75063b45", "cast_id": 17, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 13}, {"name": "Megumi Seki", "character": "Seki", "id": 147880, "credit_id": "52fe45d39251416c75063b49", "cast_id": 18, "profile_path": "/t8e85snpMy2FKNH3O4HT33ghCdk.jpg", "order": 14}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe45d29251416c75063b05", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 3.5, "runtime": 85}, "11259": {"poster_path": "/yNdfm55jkgFk1IeAqxSEPFDPR5x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 137783840, "overview": "A young man (Cruise) leaves Ireland with his landlord's daughter (Kidman) after some trouble with her father, and they dream of owning land at the big giveaway in Oklahoma ca. 1893. When they get to the new land, they find jobs and begin saving money. The man becomes a local barehands boxer, and rides in glory until he is beaten, then his employers steal all the couple's money and they must fight off starvation in the winter, and try to keep their dream of owning land alive. Meanwhile, the woman's parents find out where she has gone and have come to America to find her and take her back.", "video": false, "id": 11259, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}], "title": "Far and Away", "tagline": "What they needed was a country big enough for their dreams.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104231", "adult": false, "backdrop_path": "/lYTimGLaSjxZPiyoJjg3fHeCj5D.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}], "release_date": "1992-05-22", "popularity": 1.0796961487264, "original_title": "Far and Away", "budget": 60000000, "cast": [{"name": "Tom Cruise", "character": "Joseph Donnelly", "id": 500, "credit_id": "52fe441c9251416c7502916d", "cast_id": 10, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Shannon Christie", "id": 2227, "credit_id": "52fe441c9251416c75029171", "cast_id": 11, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Thomas Gibson", "character": "Stephen Chase", "id": 13638, "credit_id": "52fe441c9251416c75029175", "cast_id": 12, "profile_path": "/xi0vxwCqAxTSUPiBH3O00kyVoWq.jpg", "order": 2}, {"name": "Robert Prosky", "character": "Daniel Christie", "id": 10360, "credit_id": "52fe441c9251416c75029179", "cast_id": 13, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 3}, {"name": "Barbara Babcock", "character": "Nora Christie", "id": 15746, "credit_id": "52fe441c9251416c7502917d", "cast_id": 14, "profile_path": "/gKQge0krT6yuh4zTOOWQlsTfRBf.jpg", "order": 4}, {"name": "Cyril Cusack", "character": "Danty Duff", "id": 4973, "credit_id": "52fe441c9251416c75029181", "cast_id": 15, "profile_path": "/5d6OeKNqpRSMhwXd1FHV9KeX4WS.jpg", "order": 5}, {"name": "Eileen Pollock", "character": "Molly Kay", "id": 163619, "credit_id": "52fe441c9251416c75029185", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Colm Meaney", "character": "Kelly", "id": 17782, "credit_id": "52fe441c9251416c75029189", "cast_id": 17, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 7}, {"name": "Douglas Gillison", "character": "Dermody", "id": 938160, "credit_id": "52fe441c9251416c7502918d", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Michelle Johnson", "character": "Grace", "id": 17225, "credit_id": "52fe441c9251416c75029191", "cast_id": 20, "profile_path": "/28bU4ZZkZvmmAVg8tiJqKbcdOsr.jpg", "order": 9}, {"name": "Wayne Grace", "character": "Bourke", "id": 52145, "credit_id": "52fe441c9251416c75029195", "cast_id": 21, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 10}, {"name": "Niall T\u00f3ib\u00edn", "character": "Joe", "id": 140230, "credit_id": "52fe441c9251416c75029199", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Barry McGovern", "character": "McGuire", "id": 26094, "credit_id": "52fe441c9251416c7502919d", "cast_id": 23, "profile_path": "/mRZu7DJYxextwlIltLXx2ED4jG6.jpg", "order": 12}, {"name": "Gary Lee Davis", "character": "Gordon", "id": 32656, "credit_id": "52fe441c9251416c750291a1", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Jared Harris", "character": "Paddy", "id": 15440, "credit_id": "52fe441c9251416c750291a5", "cast_id": 25, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 14}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe441b9251416c75029139", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 5.9, "runtime": 140}, "11260": {"poster_path": "/qOnhIXHq12airS0iLMFpYoo9CZa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11, "overview": "A crew of miniature aliens operate a spaceship that has a human form. While trying to save their planet, the aliens encounter a new problem, as their ship becomes smitten with an Earth woman.", "video": false, "id": 11260, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Meet Dave", "tagline": "There's a Whole Other World Going on Inside of Him.", "vote_count": 73, "homepage": "http://www.meetdavemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765476", "adult": false, "backdrop_path": "/dvzGZAJOYDVqSjTJTst6x6Wu7Fi.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Guy Walks into a Bar Productions", "id": 2645}, {"name": "Deep River Productions", "id": 2646}], "release_date": "2008-07-08", "popularity": 0.452781858174432, "original_title": "Meet Dave", "budget": 60, "cast": [{"name": "Eddie Murphy", "character": "Dave Ming Chang / Kapit\u00e4n", "id": 776, "credit_id": "52fe441c9251416c75029229", "cast_id": 14, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Gina Morrison", "id": 9281, "credit_id": "52fe441c9251416c7502922d", "cast_id": 15, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Gabrielle Union", "character": "Nr.3- Kulturoffizierin", "id": 17773, "credit_id": "52fe441c9251416c75029231", "cast_id": 16, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 2}, {"name": "Scott Caan", "character": "Dooley", "id": 1894, "credit_id": "52fe441c9251416c75029235", "cast_id": 17, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 3}, {"name": "Ed Helms", "character": "Nr.2- Stellvertreter des Kapit\u00e4ns", "id": 27105, "credit_id": "52fe441c9251416c75029239", "cast_id": 18, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 4}, {"name": "Kevin Hart", "character": "Nr. 17", "id": 55638, "credit_id": "52fe441c9251416c7502923d", "cast_id": 19, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 5}, {"name": "Pat Kilbane", "character": "Nr.4- Sicherheitsoffizier", "id": 68836, "credit_id": "52fe441c9251416c75029241", "cast_id": 21, "profile_path": "/4GUyFuVlpedrN2iucZmfEXuoGu9.jpg", "order": 6}, {"name": "Judah Friedlander", "character": "Ingenieur", "id": 52860, "credit_id": "52fe441c9251416c75029245", "cast_id": 22, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 7}, {"name": "Marc Blucas", "character": "Mark", "id": 46772, "credit_id": "52fe441c9251416c75029249", "cast_id": 23, "profile_path": "/5OdBu0DFKca1mxjeqNruz00DSRF.jpg", "order": 8}, {"name": "Jim Turner", "character": "Doktor", "id": 58768, "credit_id": "52fe441c9251416c7502924d", "cast_id": 24, "profile_path": "/mujwEKBe86I89VblEvK3zQbE81j.jpg", "order": 9}, {"name": "Austyn Myers", "character": "Josh Morrison", "id": 68837, "credit_id": "52fe441c9251416c75029251", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Mario Loya", "character": "Old Navy Customer", "id": 91274, "credit_id": "52fe441c9251416c75029255", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Mike O'Malley", "character": "Knox", "id": 87192, "credit_id": "52fe441c9251416c75029259", "cast_id": 27, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 12}, {"name": "Allisyn Ashley Arm", "character": "Nerdy Girl", "id": 154997, "credit_id": "52fe441c9251416c75029263", "cast_id": 29, "profile_path": "/rotyaTzDwEooYsy0HnP7wI6XMpF.jpg", "order": 13}], "directors": [{"name": "Brian Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe441c9251416c750291e3", "profile_path": "/l7UfY9nBeus8bHHXvf3mUmtagQJ.jpg", "id": 53177}], "vote_average": 5.3, "runtime": 90}, "19458": {"poster_path": "/lhmzN3E8kJxrqaRGr1THaFSyubT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Princess Rosalinda is about to become queen of her country of Costa Luna, the country is invaded by an evil dictator. She is put into the Princess Protection Program, a secret organization funded by royal families that looks after endangered princesses. Rosalinda is taken under the wing of Mason Verica, an agent in the PPP from rural Louisiana. While there, she meets his daughter,", "video": false, "id": 19458, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Princess Protection Program", "tagline": "Royality meets reality.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1196339", "adult": false, "backdrop_path": "/eFKjp8nqrOGCA616WkKW0G1agGx.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2009-06-18", "popularity": 0.380546122566904, "original_title": "Princess Protection Program", "budget": 0, "cast": [{"name": "Selena Gomez", "character": "Carter Mason", "id": 77948, "credit_id": "52fe47d99251416c750a7753", "cast_id": 1, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Demi Lovato", "character": "Rosalinda / Rosie Gonzales", "id": 85138, "credit_id": "52fe47d99251416c750a7757", "cast_id": 2, "profile_path": "/bfAQFvBe2M3FifZVfFnb3joqDnO.jpg", "order": 1}, {"name": "Jamie Chung", "character": "Chelsea Barnes", "id": 78324, "credit_id": "52fe47d99251416c750a775b", "cast_id": 3, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 2}, {"name": "Nicholas Braun", "character": "Ed", "id": 85139, "credit_id": "52fe47d99251416c750a775f", "cast_id": 4, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 3}, {"name": "Kevin G. Schmidt", "character": "Bull", "id": 85140, "credit_id": "52fe47d99251416c750a7763", "cast_id": 5, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 4}], "directors": [{"name": "Allison Liddi-Brown", "department": "Directing", "job": "Director", "credit_id": "52fe47d99251416c750a7769", "profile_path": "/zv2JC6RpBZMr2YHfPWllgbyLWMm.jpg", "id": 1213560}], "vote_average": 6.1, "runtime": 89}, "60420": {"poster_path": "/2fZBxMPmUdvDW7XKj9yD6RBpkRF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1076000, "overview": "A British college student falls for an American student, only to be separated from him when she's banned from the U.S. after overstaying her visa.", "video": false, "id": 60420, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Like Crazy", "tagline": "I Want You. I Need You. I Love You. I Miss You.", "vote_count": 92, "homepage": "http://www.likecrazy.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758692", "adult": false, "backdrop_path": "/llyyZzIlmReLc2Gd5CiGbercbjk.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Andrea Sperling Productions", "id": 2313}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "Super Crispy Entertainment", "id": 13369}, {"name": "Ascension Productions", "id": 21892}], "release_date": "2011-10-28", "popularity": 0.269380911330428, "original_title": "Like Crazy", "budget": 250000, "cast": [{"name": "Anton Yelchin", "character": "Jacob", "id": 21028, "credit_id": "52fe4623c3a368484e080d75", "cast_id": 1, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Felicity Jones", "character": "Anna", "id": 72855, "credit_id": "52fe4623c3a368484e080d79", "cast_id": 2, "profile_path": "/gU3lCDCdiY1uAVGFFyTcSQ3M7E8.jpg", "order": 1}, {"name": "Jennifer Lawrence", "character": "Sam", "id": 72129, "credit_id": "52fe4623c3a368484e080d7d", "cast_id": 3, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 2}, {"name": "Charlie Bewley", "character": "Simon", "id": 84221, "credit_id": "52fe4623c3a368484e080d81", "cast_id": 4, "profile_path": "/3uiZaU1NwEPNmiAZT2vJM7EeXvb.jpg", "order": 3}, {"name": "Alex Kingston", "character": "Jackie", "id": 83701, "credit_id": "52fe4623c3a368484e080d85", "cast_id": 5, "profile_path": "/xhTlKeijcYEudc70FXt2ZcBBtpU.jpg", "order": 4}, {"name": "Oliver Muirhead", "character": "Bernard", "id": 93035, "credit_id": "52fe4623c3a368484e080d89", "cast_id": 6, "profile_path": "/vyWab6wD6r3yP56FA87hwInmdPZ.jpg", "order": 5}, {"name": "Finola Hughes", "character": "Liz", "id": 66881, "credit_id": "52fe4623c3a368484e080d8d", "cast_id": 7, "profile_path": "/yOiawt1x8XAYYblM0WVdiGuqjiI.jpg", "order": 6}, {"name": "Chris Messina", "character": "Mike Appletree", "id": 61659, "credit_id": "52fe4623c3a368484e080d91", "cast_id": 8, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 7}, {"name": "Ben York Jones", "character": "Ross", "id": 132963, "credit_id": "52fe4623c3a368484e080d95", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Edy Ganem", "character": "Isabelle", "id": 1293753, "credit_id": "5302248dc3a3680a1132f31f", "cast_id": 15, "profile_path": "/qAXuUs5vDbColJKpMj5ZiiwH7g6.jpg", "order": 9}], "directors": [{"name": "Drake Doremus", "department": "Directing", "job": "Director", "credit_id": "52fe4623c3a368484e080d9b", "profile_path": "/6giCKXwwLyJAb1AShikj82TexCd.jpg", "id": 132964}], "vote_average": 6.7, "runtime": 90}, "175112": {"poster_path": "/tgninaaS0wn1qV3M57jX0Cfeils.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20300000, "overview": "When a misunderstood dust-keeper fairy named Zarina steals Pixie Hollow's all-important Blue Pixie Dust and flies away to join forces with the pirates of Skull Rock, Tinker Bell and her fairy friends must embark on the adventure of a lifetime to return it to its rightful place.", "video": false, "id": 175112, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Pirate Fairy", "tagline": "", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nTEOjP7JpFa9VZlawzqNBy4g5KY.jpg", "id": 315595, "name": "Tinker Bell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2483260", "adult": false, "backdrop_path": "/1DfcGAQ4EVIZFnveo1IzHFtgFTS.jpg", "production_companies": [{"name": "Prana Studios", "id": 18713}, {"name": "Prana Animation Studios", "id": 22135}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2014-04-01", "popularity": 2.10577424452301, "original_title": "The Pirate Fairy", "budget": 0, "cast": [{"name": "Mae Whitman", "character": "Tinker Bell (voice)", "id": 52404, "credit_id": "52fe4d58c3a36847f825bfe9", "cast_id": 1, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 0}, {"name": "Tom Hiddleston", "character": "Captain Hook (voice)", "id": 91606, "credit_id": "52fe4d58c3a36847f825bfed", "cast_id": 2, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 1}, {"name": "Christina Hendricks", "character": "Zarina (voice)", "id": 110014, "credit_id": "52fe4d58c3a36847f825bff1", "cast_id": 4, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 2}, {"name": "Pamela Adlon", "character": "Vidia (voice)", "id": 21063, "credit_id": "530b998e92514158ca000068", "cast_id": 6, "profile_path": "/8zunKeNg9XTpmDQjokeEi3K6hvG.jpg", "order": 3}, {"name": "Angela Bartys", "character": "Fawn (voice)", "id": 93842, "credit_id": "5431315e0e0a2658b200194e", "cast_id": 21, "profile_path": "/iOt35bRDbdOOXVeW5b3ElfOowK7.jpg", "order": 4}, {"name": "Jeff Bennett", "character": "Dewey (voice)", "id": 34982, "credit_id": "530b99a892514158c7000054", "cast_id": 8, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 5}, {"name": "Jim Cummings", "character": "Oppenheimer (voice)", "id": 12077, "credit_id": "530b99b192514158c7000056", "cast_id": 9, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 6}, {"name": "Grey DeLisle", "character": "Gliss (voice)", "id": 15761, "credit_id": "530b99be92514158d800004c", "cast_id": 10, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 7}, {"name": "Lucy Hale", "character": "Periwinkle (voice)", "id": 205307, "credit_id": "530b99cb92514158c7000059", "cast_id": 11, "profile_path": "/osMiB2nzn0Dedtv0AkyOCDuNmqb.jpg", "order": 8}, {"name": "Megan Hilty", "character": "Rosetta (voice)", "id": 146748, "credit_id": "530b99d792514158c4000066", "cast_id": 12, "profile_path": "/1mmJSmnMjL7RS93ndFBJnPsAXvf.jpg", "order": 9}, {"name": "Lucy Liu", "character": "Silvermist (voice)", "id": 140, "credit_id": "5430f5f70e0a2658b200127b", "cast_id": 15, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 10}, {"name": "Raven-Symon\u00e9", "character": "Iridessa (voice)", "id": 66896, "credit_id": "5430f616c3a368114300123a", "cast_id": 16, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 11}, {"name": "Carlos Ponce", "character": "Bonito (voice)", "id": 62067, "credit_id": "5430f68ec3a368114300124b", "cast_id": 17, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 12}, {"name": "Mick Wingert", "character": "Starboard (voice)", "id": 971877, "credit_id": "5430f6afc3a368114300124f", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Kevin Michael Richardson", "character": "Yang (voice)", "id": 24362, "credit_id": "5430f6cac3a36831a6002a11", "cast_id": 19, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 14}, {"name": "Rob Paulsen", "character": "Bobble (voice)", "id": 43125, "credit_id": "5430f6f10e0a2658720012b8", "cast_id": 20, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 15}], "directors": [{"name": "Peggy Holmes", "department": "Directing", "job": "Director", "credit_id": "52fe4d58c3a36847f825bff7", "profile_path": null, "id": 80672}], "vote_average": 6.7, "runtime": 78}, "3082": {"poster_path": "/rHkLAGAo8j3MOYOVupwn4fafVBt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8500000, "overview": "The Tramp struggles to live in modern industrial society with the help of a young homeless woman.", "video": false, "id": 3082, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Modern Times", "tagline": "He stands alone as the greatest entertainer of modern times! No one on earth can make you laugh as heartily or touch your heart as deeply...the whole world laughs, cries and thrills to his priceless genius!", "vote_count": 247, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0027977", "adult": false, "backdrop_path": "/s58uDwuyVMqgsbmnfyrbpfF147.jpg", "production_companies": [{"name": "Charles Chaplin Productions", "id": 1315}], "release_date": "1936-02-05", "popularity": 0.813740957159585, "original_title": "Modern Times", "budget": 1500000, "cast": [{"name": "Charles Chaplin", "character": "A factory worker", "id": 13848, "credit_id": "52fe4383c3a36847f8059ee9", "cast_id": 8, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Paulette Goddard", "character": "A gamin", "id": 14027, "credit_id": "52fe4383c3a36847f8059eed", "cast_id": 9, "profile_path": "/jxAbHtod2vVi2kUj0gp3sCzUYRe.jpg", "order": 1}, {"name": "Henry Bergman", "character": "Cafe proprietor", "id": 14438, "credit_id": "52fe4383c3a36847f8059ef1", "cast_id": 10, "profile_path": "/lXhkLU19RhgFD95zx84jjXhhyE.jpg", "order": 2}, {"name": "Tiny Sandford", "character": "Big Bill", "id": 30194, "credit_id": "52fe4383c3a36847f8059ef5", "cast_id": 11, "profile_path": "/4Tw4KnA3S8dhl9tIs2v9aa0Va1c.jpg", "order": 3}, {"name": "Chester Conklin", "character": "Mechanic", "id": 30195, "credit_id": "52fe4383c3a36847f8059ef9", "cast_id": 12, "profile_path": "/s9P3OhaUEMcs84P0oSfUewTMRjC.jpg", "order": 4}, {"name": "Hank Mann", "character": "Burglar", "id": 13856, "credit_id": "52fe4383c3a36847f8059efd", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Stanley Blystone", "character": "Gamin's father", "id": 30196, "credit_id": "52fe4383c3a36847f8059f01", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Al Ernest Garcia", "character": "President of the Electro Steel Corp.", "id": 13855, "credit_id": "52fe4383c3a36847f8059f05", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Richard Alexander", "character": "Cellmate", "id": 30197, "credit_id": "52fe4383c3a36847f8059f09", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Cecil Reynolds", "character": "Minister", "id": 30198, "credit_id": "52fe4383c3a36847f8059f0d", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Mira McKinney", "character": "Minister's wife", "id": 30199, "credit_id": "52fe4383c3a36847f8059f11", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Murdock MacQuarrie", "character": "J. Widdecombe Billows", "id": 30200, "credit_id": "52fe4383c3a36847f8059f15", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Wilfred Lucas", "character": "Juvenile officer", "id": 30201, "credit_id": "52fe4383c3a36847f8059f19", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Edward LeSaint", "character": "Sheriff Couler", "id": 30202, "credit_id": "52fe4383c3a36847f8059f1d", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Fred Malatesta", "character": "Head waiter", "id": 30203, "credit_id": "52fe4383c3a36847f8059f21", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Sammy Stein", "character": "Turbine operator", "id": 30204, "credit_id": "52fe4383c3a36847f8059f25", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Juana Sutton", "character": "Woman with buttoned bosom", "id": 30205, "credit_id": "52fe4383c3a36847f8059f29", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Ted Oliver", "character": "Billows' assistant", "id": 30206, "credit_id": "52fe4383c3a36847f8059f2d", "cast_id": 25, "profile_path": null, "order": 17}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe4383c3a36847f8059ec1", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.9, "runtime": 87}, "44048": {"poster_path": "/b2uI9tSssC4D7vCgdES6IZJXuCs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167805466, "overview": "A runaway train, transporting deadly, toxic chemicals, is barreling down on Stanton, Pennsylvania, and only two men can stop it: a veteran engineer and a young conductor. Thousands of lives hang in the balance as these ordinary heroes attempt to chase down one million tons of hurtling steel and prevent an epic disaster.", "video": false, "id": 44048, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Unstoppable", "tagline": "1,000,000 Tons. 100,000 Lives. 100 Minutes.", "vote_count": 335, "homepage": "http://www.unstoppablemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477080", "adult": false, "backdrop_path": "/pddDWflAgEUex06MOjfRmAl9ZWq.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Prospect Park", "id": 19776}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Firm Films", "id": 1838}, {"name": "Millbrook Farm Productions", "id": 19777}], "release_date": "2010-11-12", "popularity": 1.20040746688071, "original_title": "Unstoppable", "budget": 100000000, "cast": [{"name": "Denzel Washington", "character": "Frank Barnes", "id": 5292, "credit_id": "52fe4674c3a36847f80ffef3", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Chris Pine", "character": "Will Gordon", "id": 62064, "credit_id": "52fe4674c3a36847f80ffef7", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Connie Hooper", "id": 5916, "credit_id": "52fe4674c3a36847f80ffefb", "cast_id": 3, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Jessy Schram", "character": "Darcy Gordon", "id": 26974, "credit_id": "52fe4674c3a36847f80ffeff", "cast_id": 4, "profile_path": "/xIU2h01K7fL46RdjZ1mqY9Hvtxm.jpg", "order": 3}, {"name": "Elizabeth Mathis", "character": "Nicole Barnes", "id": 130108, "credit_id": "52fe4674c3a36847f80fff03", "cast_id": 5, "profile_path": "/uOI0gbMG6D6j5IDM6h2kxYcsqn0.jpg", "order": 3}, {"name": "Ethan Suplee", "character": "Dewey", "id": 824, "credit_id": "52fe4674c3a36847f80fff0d", "cast_id": 9, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 4}, {"name": "Kevin Dunn", "character": "Oscar Galvin", "id": 14721, "credit_id": "52fe4674c3a36847f80fff11", "cast_id": 10, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 5}, {"name": "Kevin Corrigan", "character": "Scott Werner", "id": 18472, "credit_id": "52fe4674c3a36847f80fff15", "cast_id": 11, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 6}, {"name": "Kevin Chapman", "character": "Bunny", "id": 4728, "credit_id": "52fe4674c3a36847f80fff19", "cast_id": 12, "profile_path": "/7uhnHTZ8W4FsSTtbBSCuyeGGqlK.jpg", "order": 7}, {"name": "Lew Temple", "character": "Ned Oldham", "id": 37027, "credit_id": "52fe4674c3a36847f80fff1d", "cast_id": 13, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 8}, {"name": "T.J. Miller", "character": "Gilleece", "id": 51990, "credit_id": "52fe4674c3a36847f80fff21", "cast_id": 14, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 9}, {"name": "David Warshofsky", "character": "Judd Stewart", "id": 37204, "credit_id": "52fe4674c3a36847f80fff25", "cast_id": 16, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 11}, {"name": "Andy Umberger", "character": "Janeway", "id": 142204, "credit_id": "52fe4674c3a36847f80fff29", "cast_id": 17, "profile_path": "/nDuiFTa0qzfaD1KFmoq97Ae10N9.jpg", "order": 12}, {"name": "Meagan Tandy", "character": "Maya Barnes", "id": 142205, "credit_id": "52fe4674c3a36847f80fff2d", "cast_id": 18, "profile_path": "/ucSUkzvLFRWIbPdpDgMlTogdFhZ.jpg", "order": 13}, {"name": "Dylan Bruce", "character": "Michael Colson (as Dylan L. Bruce)", "id": 142206, "credit_id": "52fe4674c3a36847f80fff31", "cast_id": 19, "profile_path": "/mbzxOy15D2RjGxhlYIwtgfms849.jpg", "order": 14}, {"name": "Chase Ellison", "character": "Teenage Witness", "id": 64148, "credit_id": "52fe4674c3a36847f80fff77", "cast_id": 31, "profile_path": "/zNDpEo3p5zJPxwFlbRJfVtLSeCj.jpg", "order": 15}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a36847f80fff09", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.2, "runtime": 98}, "11281": {"poster_path": "/xABk00mhTfhbmadgaWGvG2ydsvT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25533818, "overview": "After failing to kill stubborn survivor Laurie and taking a bullet or six from former psychiatrist Dr. Sam Loomis, Michael Myers has followed Laurie to the Haddonfield Memorial Hospital, where she's been admitted for Myers' attempt on her life. The institution proves to be particularly suited to serial killers, however, as Myers cuts, stabs and slashes his way through hospital staff to reach his favorite victim.", "video": false, "id": 11281, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Halloween II", "tagline": "The nightmare isn't over!", "vote_count": 54, "homepage": "http://www.halloweenmovies.com/", "belongs_to_collection": {"backdrop_path": "/mmxf1sOe2T1sma0tH0TgTdcit1p.jpg", "poster_path": "/2uqHV6YcD9jEL2WuJYjXiiuRDqd.jpg", "id": 91361, "name": "Halloween Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082495", "adult": false, "backdrop_path": "/7pUKrrLS59rU8tXlj7VBhENqflv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1981-10-30", "popularity": 0.471496640802333, "original_title": "Halloween II", "budget": 2500000, "cast": [{"name": "Jamie Lee Curtis", "character": "Laurie Strode", "id": 8944, "credit_id": "52fe441c9251416c75029347", "cast_id": 1, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 0}, {"name": "Donald Pleasence", "character": "Dr. Sam Loomis", "id": 9221, "credit_id": "52fe441c9251416c7502934b", "cast_id": 2, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 1}, {"name": "Charles Cyphers", "character": "Sheriff Leigh Brackett", "id": 11786, "credit_id": "52fe441c9251416c7502934f", "cast_id": 3, "profile_path": "/pglMfoHMVEcziDlnl33DrZjRSM3.jpg", "order": 2}, {"name": "Jeffrey Kramer", "character": "Graham", "id": 8609, "credit_id": "52fe441c9251416c75029353", "cast_id": 4, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 3}, {"name": "Lance Guest", "character": "Jimmy Lloyd", "id": 16213, "credit_id": "52fe441c9251416c75029357", "cast_id": 5, "profile_path": "/7bzggMGfzqYNMiObpAJ8IU8LZ7Q.jpg", "order": 4}, {"name": "Pamela Susan Shoop", "character": "Karen", "id": 151423, "credit_id": "52fe441d9251416c750293a9", "cast_id": 19, "profile_path": "/iK2vsvbv9mMJpD4ZDpWGv2PzWft.jpg", "order": 5}, {"name": "Hunter von Leer", "character": "Deputy Gary Hunt", "id": 119855, "credit_id": "52fe441d9251416c750293ad", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Dick Warlock", "character": "The Shape / Patrolman #3", "id": 14663, "credit_id": "52fe441d9251416c750293b1", "cast_id": 21, "profile_path": "/n0TfOxlMYfqxclyRAN4kj2dajkk.jpg", "order": 7}, {"name": "Leo Rossi", "character": "Budd", "id": 67524, "credit_id": "52fe441d9251416c750293b5", "cast_id": 22, "profile_path": "/giRD3mgdg6KG1Nwua5FVkvqPKFQ.jpg", "order": 8}, {"name": "Gloria Gifford", "character": "Mrs. Alves", "id": 92587, "credit_id": "52fe441d9251416c750293b9", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Tawny Moyer", "character": "Jill", "id": 162733, "credit_id": "52fe441d9251416c750293bd", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Ana Alicia", "character": "Janet", "id": 109622, "credit_id": "52fe441d9251416c750293c1", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Ford Rainey", "character": "Dr. Mixter", "id": 83812, "credit_id": "52fe441d9251416c750293c5", "cast_id": 26, "profile_path": "/ySS8F1QyR4qh9ROJcGuYCWXJA2s.jpg", "order": 12}, {"name": "Cliff Emmich", "character": "Mr. Garrett", "id": 101755, "credit_id": "52fe441d9251416c750293c9", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Nancy Stephens", "character": "Marion", "id": 15508, "credit_id": "52fe441d9251416c750293cd", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Nancy Kyes", "character": "Annie Brackett", "id": 11787, "credit_id": "52fe441d9251416c750293d1", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Anne Bruner", "character": "Alice", "id": 178224, "credit_id": "52fe441d9251416c750293d5", "cast_id": 30, "profile_path": null, "order": 16}], "directors": [{"name": "Rick Rosenthal", "department": "Directing", "job": "Director", "credit_id": "52fe441c9251416c7502935d", "profile_path": null, "id": 33341}], "vote_average": 6.8, "runtime": 92}, "11282": {"poster_path": "/wmLW4WTxXTTzD3nruLVWTl3m55b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23936908, "overview": "Sometimes, it takes a strange night to put everything else into focus. And that's exactly what happens to Harold and his roommate, Kumar, when they set out to get the best stoner fix money can buy: White Castle hamburgers. Both guys are at a crossroads, about to make major decisions that will affect the course of their lives. Yet they arrive at wisdom by accident as they drive around New Jersey in search of fast food.", "video": false, "id": 11282, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Harold & Kumar Go to White Castle", "tagline": "Fast Food. High Times.", "vote_count": 245, "homepage": "", "belongs_to_collection": {"backdrop_path": "/b70mFgsSn2hl3CvC0nRx0SHUEX0.jpg", "poster_path": "/9OBP4MQBAXnBZ1uXLZykIWRGnBb.jpg", "id": 30663, "name": "Harold & Kumar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt0366551", "adult": false, "backdrop_path": "/nCP8WeXDgFf2WQmnFaDjTWTo59L.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2004-05-30", "popularity": 0.62171021897455, "original_title": "Harold & Kumar Go to White Castle", "budget": 9000000, "cast": [{"name": "John Cho", "character": "Harold Lee", "id": 68842, "credit_id": "52fe441d9251416c7502940b", "cast_id": 1, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 0}, {"name": "Kal Penn", "character": "Kumar Patel", "id": 53493, "credit_id": "52fe441d9251416c7502940f", "cast_id": 2, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 1}, {"name": "Paula Garc\u00e9s", "character": "Maria", "id": 21124, "credit_id": "52fe441d9251416c75029413", "cast_id": 3, "profile_path": "/bc1NhQCaUsoJFCi6vIGxiljQl86.jpg", "order": 2}, {"name": "Neil Patrick Harris", "character": "Neil Patrick Harris", "id": 41686, "credit_id": "52fe441d9251416c75029417", "cast_id": 4, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 3}, {"name": "David Krumholtz", "character": "Goldstein", "id": 38582, "credit_id": "52fe441d9251416c7502941b", "cast_id": 5, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 4}, {"name": "Malin Akerman", "character": "Liane", "id": 50463, "credit_id": "52fe441d9251416c75029473", "cast_id": 21, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 5}, {"name": "Brooke D'Orsay", "character": "Clarissa", "id": 42297, "credit_id": "52fe441d9251416c75029477", "cast_id": 22, "profile_path": "/EOVVzdsInYY7HFjUmvWIRyL8bS.jpg", "order": 6}, {"name": "Steve Braun", "character": "Cole", "id": 10867, "credit_id": "52fe441d9251416c7502947b", "cast_id": 23, "profile_path": "/wtLIbojDvKr0bGuTKng5DqO6w36.jpg", "order": 7}, {"name": "Fred Willard", "character": "Dr. Willoughby", "id": 20753, "credit_id": "52fe441d9251416c7502947f", "cast_id": 24, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 8}, {"name": "Robert Tinkler", "character": "J.D.", "id": 118814, "credit_id": "52fe441d9251416c75029483", "cast_id": 25, "profile_path": null, "order": 9}], "directors": [{"name": "Danny Leiner", "department": "Directing", "job": "Director", "credit_id": "52fe441d9251416c75029421", "profile_path": "/baaonHW8JdQXyuQJODB0UvQfTAi.jpg", "id": 56591}], "vote_average": 6.2, "runtime": 88}, "11283": {"poster_path": "/2DyvZv9hExVjZtL7861gWrxcrR6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122489822, "overview": "Emma Thompson stars as a governess who uses magic to rein in the behavior of seven ne'er-do-well children in her charge.", "video": false, "id": 11283, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Nanny McPhee", "tagline": "You'll Learn To Love Her. Warts And All.", "vote_count": 130, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zxj5yar9KeGiCfZu57GfalPsBbL.jpg", "poster_path": "/iM75l6CCjaMOLUAIyAEfv6ISyQJ.jpg", "id": 35792, "name": "Nanny McPhee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396752", "adult": false, "backdrop_path": "/6KMnX8fWgMOVkPK1UjYyzao2nPD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}], "release_date": "2005-10-21", "popularity": 0.602882713521174, "original_title": "Nanny McPhee", "budget": 25000000, "cast": [{"name": "Emma Thompson", "character": "Nanny McPhee", "id": 7056, "credit_id": "52fe441d9251416c750294bb", "cast_id": 1, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 0}, {"name": "Colin Firth", "character": "Mr. Brown", "id": 5472, "credit_id": "52fe441d9251416c750294bf", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Kelly Macdonald", "character": "Evangeline", "id": 9015, "credit_id": "52fe441d9251416c750294c3", "cast_id": 3, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 2}, {"name": "Thomas Sangster", "character": "Simon", "id": 25663, "credit_id": "52fe441d9251416c750294c7", "cast_id": 4, "profile_path": "/x8floQ1YshVhPdwdTQDz9aJjuXE.jpg", "order": 3}, {"name": "Eliza Bennett", "character": "Tora", "id": 23775, "credit_id": "52fe441d9251416c750294cb", "cast_id": 5, "profile_path": "/fdJ729tbU48xUNVqG4k27NrPYMg.jpg", "order": 4}, {"name": "Rapha\u00ebl Coleman", "character": "Eric", "id": 89827, "credit_id": "52fe441d9251416c75029517", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Samuel Honywood", "character": "Sebastian", "id": 150544, "credit_id": "52fe441d9251416c7502951b", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Angela Lansbury", "character": "Aunt Adelaide", "id": 14730, "credit_id": "52fe441d9251416c7502951f", "cast_id": 20, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 7}, {"name": "Celia Imrie", "character": "Mrs. Quickly", "id": 9139, "credit_id": "52fe441d9251416c75029523", "cast_id": 21, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 8}, {"name": "Imelda Staunton", "character": "Mrs. Blatherwick", "id": 11356, "credit_id": "52fe441d9251416c75029527", "cast_id": 22, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 9}, {"name": "Elizabeth Berrington", "character": "Letita", "id": 42998, "credit_id": "52fe441d9251416c7502952b", "cast_id": 23, "profile_path": "/kMipntnzem6NBzy0pCTBjc7eKxd.jpg", "order": 10}, {"name": "Derek Jacobi", "character": "Mr. Wheen", "id": 937, "credit_id": "52fe441d9251416c7502952f", "cast_id": 24, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 11}, {"name": "Phyllida Law", "character": "Mrs. Partridge (voice)", "id": 17787, "credit_id": "52fe441d9251416c75029533", "cast_id": 25, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 12}], "directors": [{"name": "Kirk Jones", "department": "Directing", "job": "Director", "credit_id": "52fe441d9251416c750294d1", "profile_path": "/uvQskd4gGNN2J91kUnn1lGl2W3d.jpg", "id": 64045}], "vote_average": 6.1, "runtime": 97}, "11284": {"poster_path": "/m4IFNmheHcjbLsVWbUq9TIpWL5S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34872033, "overview": "Just when you thought it was safe to sleep, Freddy Krueger returns in this sixth installment of the Nightmare on Elm Street films, as psychologist Maggie Burroughs, tormented by recurring nightmares, meets a patient with the same horrific dreams. Their quest for answers leads to a certain house on Elm Street -- where the nightmares become reality.", "video": false, "id": 11284, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Freddy's Dead: The Final Nightmare", "tagline": "They saved the best for last.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101917", "adult": false, "backdrop_path": "/atDDJBJ9eUeXbySh6wFbUBIQlQ1.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1991-09-05", "popularity": 0.882860848894649, "original_title": "Freddy's Dead: The Final Nightmare", "budget": 11000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe441d9251416c7502958b", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Lisa Zane", "character": "Maggie Burroughs", "id": 68848, "credit_id": "52fe441d9251416c7502958f", "cast_id": 2, "profile_path": "/rOYsHyqk5Jr4lKwQFnPbnBFVEGZ.jpg", "order": 1}, {"name": "Shon Greenblatt", "character": "John Doe", "id": 68849, "credit_id": "52fe441d9251416c75029593", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Lezlie Deane", "character": "Tracy", "id": 68850, "credit_id": "52fe441d9251416c75029597", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Ricky Dean Logan", "character": "Carlos", "id": 68851, "credit_id": "52fe441d9251416c7502959b", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Breckin Meyer", "character": "Spencer", "id": 33654, "credit_id": "52fe441d9251416c750295d5", "cast_id": 15, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 5}, {"name": "Yaphet Kotto", "character": "Doc", "id": 5050, "credit_id": "52fe441d9251416c750295d9", "cast_id": 16, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 6}, {"name": "Tom Arnold", "character": "Childless Man", "id": 74036, "credit_id": "52fe441e9251416c750295dd", "cast_id": 17, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 7}, {"name": "Roseanne Barr", "character": "Childless Woman", "id": 46393, "credit_id": "5305c75f92514134a217df61", "cast_id": 42, "profile_path": "/p36LMNfQssOQb5vUyYJRBEhQsaR.jpg", "order": 8}, {"name": "Elinor Donahue", "character": "Orphanage Woman", "id": 1209, "credit_id": "52fe441e9251416c750295e5", "cast_id": 19, "profile_path": "/mEsZ2YLvmni9S1dUS1pTeQYhdf3.jpg", "order": 9}, {"name": "Johnny Depp", "character": "Guy on TV (as Oprah Noodlemantra)", "id": 85, "credit_id": "52fe441e9251416c750295e9", "cast_id": 20, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 10}, {"name": "Cassandra Rachel Friel", "character": "Little Maggie / Katherine Krueger", "id": 553765, "credit_id": "52fe441e9251416c750295ed", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "David Dunard", "character": "Kelly", "id": 105708, "credit_id": "52fe441e9251416c750295f1", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Marilyn Rockafellow", "character": "Mrs. Burroughs", "id": 171005, "credit_id": "52fe441e9251416c750295f5", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Virginia Peters", "character": "Woman in Plane", "id": 165659, "credit_id": "52fe441e9251416c750295f9", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Stella Hall", "character": "Stewardess", "id": 551937, "credit_id": "52fe441e9251416c750295fd", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Lindsey Fields", "character": "Loretta Krueger", "id": 166609, "credit_id": "52fe441e9251416c75029601", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Angelina Estrada", "character": "Carlos' Mother", "id": 3424, "credit_id": "52fe441e9251416c75029605", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Peter Spellos", "character": "Tracy's Father", "id": 9659, "credit_id": "52fe441e9251416c75029609", "cast_id": 28, "profile_path": "/sj2YF20Rqe8uvS1QQajCV5bdaky.jpg", "order": 18}, {"name": "Tobe Sexton", "character": "Teen Freddy", "id": 42530, "credit_id": "52fe441e9251416c7502960d", "cast_id": 29, "profile_path": "/eFbUkbcf8Da4rQTpK6wbOlWsToA.jpg", "order": 19}, {"name": "Chason Schirmer", "character": "Young Freddy", "id": 553766, "credit_id": "52fe441e9251416c75029611", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Michael McNab", "character": "Spencer's Father", "id": 152286, "credit_id": "52fe441e9251416c75029615", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Matthew Faison", "character": "Springwood Teacher", "id": 98555, "credit_id": "52fe441e9251416c75029619", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Vic Watterson", "character": "Officer #1", "id": 553767, "credit_id": "52fe441e9251416c7502961d", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Carlease Burke", "character": "Officer #2", "id": 149486, "credit_id": "52fe441e9251416c75029621", "cast_id": 34, "profile_path": "/vqYAwiodYB8a02iLqM2iYLqPQvR.jpg", "order": 24}, {"name": "Robert Shaye", "character": "Ticket Seller (as L.E. Moko)", "id": 13663, "credit_id": "52fe441e9251416c75029625", "cast_id": 35, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 25}, {"name": "Warren Barrington", "character": "Cop in Shelter", "id": 170132, "credit_id": "52fe441e9251416c75029629", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Mel Scott-Thomas", "character": "Security Guard", "id": 553768, "credit_id": "52fe441e9251416c7502962d", "cast_id": 37, "profile_path": "/n4M13BUQKq98CNqaJys5Y0AsQKj.jpg", "order": 27}, {"name": "Jonathan Mazer", "character": "Angry Boy", "id": 553769, "credit_id": "52fe441e9251416c75029631", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Frank Catalano", "character": "Various (uncredited)", "id": 553770, "credit_id": "52fe441e9251416c75029635", "cast_id": 39, "profile_path": "/vUfSqcD87ZmnrQd6Fn1HCBxby1J.jpg", "order": 29}, {"name": "Alice Cooper", "character": "Freddy's Father (uncredited)", "id": 35824, "credit_id": "52fe441e9251416c75029639", "cast_id": 40, "profile_path": "/Aj964wqD6ItA2rwSBKlgl0kzuGf.jpg", "order": 30}, {"name": "Joshua Weisel", "character": "Freddy (uncredited)", "id": 553771, "credit_id": "52fe441e9251416c7502963d", "cast_id": 41, "profile_path": null, "order": 31}], "directors": [{"name": "Rachel Talalay", "department": "Directing", "job": "Director", "credit_id": "52fe441d9251416c750295a1", "profile_path": null, "id": 56891}], "vote_average": 5.5, "runtime": 89}, "11287": {"poster_path": "/lchzTUKbC8fXkHhUJata0n1H6RL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 107458785, "overview": "Small-town sisters Dottie and Kit join an all-female baseball league formed after World War II brings pro baseball to a standstill. When their team hits the road with its drunken coach, the siblings find troubles and triumphs on and off the field.", "video": false, "id": 11287, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "A League of Their Own", "tagline": "To achieve the incredible, you have to attempt the impossible.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104694", "adult": false, "backdrop_path": "/y7KGSKgLRRrEm8InmItPF266UYV.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Parkway Productions", "id": 1350}], "release_date": "1992-07-01", "popularity": 0.341746404993555, "original_title": "A League of Their Own", "budget": 40000000, "cast": [{"name": "Tom Hanks", "character": "Jimmy Dugan", "id": 31, "credit_id": "52fe441e9251416c750297e3", "cast_id": 9, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Geena Davis", "character": "Dottie Hinson", "id": 16935, "credit_id": "52fe441e9251416c750297e7", "cast_id": 10, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Madonna", "character": "Mae Mordabito", "id": 3125, "credit_id": "52fe441e9251416c750297eb", "cast_id": 11, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 2}, {"name": "Lori Petty", "character": "Kit Keller", "id": 15309, "credit_id": "52fe441e9251416c750297ef", "cast_id": 12, "profile_path": "/u2D3zteSlOj4zLp7jBcGqQVBsR1.jpg", "order": 3}, {"name": "Jon Lovitz", "character": "Ernie Capadino", "id": 16165, "credit_id": "52fe441e9251416c750297f3", "cast_id": 13, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 4}, {"name": "David Strathairn", "character": "Ira Lowenstein", "id": 11064, "credit_id": "52fe441e9251416c750297f7", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 5}, {"name": "Garry Marshall", "character": "Walter Harvey", "id": 1201, "credit_id": "52fe441e9251416c750297fb", "cast_id": 15, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 6}, {"name": "Bill Pullman", "character": "Bob Hinson", "id": 8984, "credit_id": "52fe441e9251416c750297ff", "cast_id": 16, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 7}, {"name": "Megan Cavanagh", "character": "Marla Hooch - 2nd Base", "id": 53570, "credit_id": "52fe441e9251416c75029803", "cast_id": 17, "profile_path": "/xZML4JXgD7Yd0f19hXhq7bXLXfC.jpg", "order": 8}, {"name": "Rosie O'Donnell", "character": "Doris Murphy - 3rd Base", "id": 12929, "credit_id": "52fe441e9251416c75029807", "cast_id": 18, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 9}, {"name": "Tracy Reiner", "character": "Betty 'Betty Spaghetti' Horn - Left Field", "id": 8189, "credit_id": "52fe441f9251416c7502980b", "cast_id": 19, "profile_path": "/fsmETZI9aoKZD1CvYlcaTsstuZ9.jpg", "order": 10}, {"name": "Bitty Schram", "character": "Evelyn Gardner - Right Field", "id": 138240, "credit_id": "52fe441f9251416c7502980f", "cast_id": 20, "profile_path": "/fcUmGsYdoK31CGxIyk1D4clnBK0.jpg", "order": 11}, {"name": "Don S. Davis", "character": "Charlie Collins, Racine Coach", "id": 15863, "credit_id": "52fe441f9251416c75029813", "cast_id": 21, "profile_path": "/w93ia4AoKKyRhgX2gzcW9IFJ3Xv.jpg", "order": 12}, {"name": "Ren\u00e9e Coleman", "character": "Alice Gaspers - Left Field / Center Field", "id": 138241, "credit_id": "52fe441f9251416c75029817", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Ann Cusack", "character": "Shirley Baker - Left Field", "id": 59260, "credit_id": "52fe441f9251416c7502981b", "cast_id": 23, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 14}, {"name": "Eddie Jones", "character": "Dave Hooch", "id": 8692, "credit_id": "52fe441f9251416c7502981f", "cast_id": 24, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 15}, {"name": "Freddie Simpson", "character": "Ellen Sue Gotlander", "id": 1077313, "credit_id": "52fe441f9251416c75029823", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Anne Ramsay", "character": "Helen Haley", "id": 25023, "credit_id": "52fe441f9251416c75029827", "cast_id": 26, "profile_path": "/wmATITkd0jQ2XHex1bQKDxtdpAP.jpg", "order": 17}, {"name": "Robin Knight", "character": "'Beans' Babbitt", "id": 1077314, "credit_id": "52fe441f9251416c7502982b", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Patti Pelton", "character": "Marbleann Wilkenson", "id": 156025, "credit_id": "52fe441f9251416c7502982f", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Kelli Simpkins", "character": "Beverly Dixon", "id": 163825, "credit_id": "52fe441f9251416c75029833", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Neezer Tarleton", "character": "Neezer Dalton", "id": 1077315, "credit_id": "52fe441f9251416c75029837", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "T\u00e9a Leoni", "character": "Racine 1st Base", "id": 4939, "credit_id": "52fe441f9251416c7502983b", "cast_id": 31, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 22}], "directors": [{"name": "Penny Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe441e9251416c750297b5", "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "id": 14911}], "vote_average": 6.3, "runtime": 128}, "64689": {"poster_path": "/3WPa43edrQeLRFgXdiLiWnWV34a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14938570, "overview": "Jackie Cogan is an enforcer hired to restore order after three dumb guys rob a Mob protected card game, causing the local criminal economy to collapse.", "video": false, "id": 64689, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Killing Them Softly", "tagline": "In America you're on your own.", "vote_count": 292, "homepage": "http://killingthemsoftlymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1764234", "adult": false, "backdrop_path": "/jikIWGfMFq8YxYziXVFyqBI7e3o.jpg", "production_companies": [{"name": "Plan B Entertainment", "id": 81}, {"name": "Chockstone Pictures", "id": 13649}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Annapurna Pictures", "id": 13184}, {"name": "Inferno Entertainment", "id": 13648}], "release_date": "2012-11-30", "popularity": 0.898771224082838, "original_title": "Killing Them Softly", "budget": 28000000, "cast": [{"name": "Brad Pitt", "character": "Jackie Cogan", "id": 287, "credit_id": "52fe46e4c3a368484e0a9a51", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Scoot McNairy", "character": "Frankie", "id": 59233, "credit_id": "52fe46e4c3a368484e0a9a69", "cast_id": 7, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Mickey", "id": 4691, "credit_id": "52fe46e4c3a368484e0a9a59", "cast_id": 3, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Markie Trattman", "id": 11477, "credit_id": "52fe46e4c3a368484e0a9a55", "cast_id": 2, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Ben Mendelsohn", "character": "Russell", "id": 77335, "credit_id": "52fe46e4c3a368484e0a9a6d", "cast_id": 8, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 4}, {"name": "Richard Jenkins", "character": "Driver", "id": 28633, "credit_id": "52fe46e4c3a368484e0a9a75", "cast_id": 10, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 5}, {"name": "Vincent Curatola", "character": "Johnny Amato", "id": 171719, "credit_id": "52fe46e4c3a368484e0a9a71", "cast_id": 9, "profile_path": "/pFC7RYclvs1YDcuYhOrkAPOMdb7.jpg", "order": 6}, {"name": "Sam Shepard", "character": "Dillon", "id": 9880, "credit_id": "52fe46e4c3a368484e0a9a7d", "cast_id": 12, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 7}, {"name": "Slaine (George Carroll)", "character": "Kenny Gill", "id": 133067, "credit_id": "52fe46e4c3a368484e0a9aef", "cast_id": 32, "profile_path": "/wq0FQBzfiFfEXfjaGm3FE43IuTJ.jpg", "order": 8}, {"name": "Max Casella", "character": "Barry Caprio", "id": 7133, "credit_id": "52fe46e4c3a368484e0a9a79", "cast_id": 11, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 9}, {"name": "Trevor Long", "character": "Steve Caprio", "id": 1163266, "credit_id": "52fe46e4c3a368484e0a9ae7", "cast_id": 30, "profile_path": "/9klUYrviefNEzNcHTUVIKi1kUrb.jpg", "order": 10}, {"name": "Linara Washington", "character": "Hooker", "id": 155520, "credit_id": "52fe46e4c3a368484e0a9aeb", "cast_id": 31, "profile_path": "/zvHRQpZmEE8WiACP09GYkm2wyjS.jpg", "order": 11}], "directors": [{"name": "Andrew Dominik", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9a5f", "profile_path": "/r80gQB1iYTMSjnxQZYqSbvE66tq.jpg", "id": 37618}], "vote_average": 5.7, "runtime": 104}, "3114": {"poster_path": "/4cL3P7XPRH7Ihbc8jzVYbrk1Jlh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.", "video": false, "id": 3114, "genres": [{"id": 37, "name": "Western"}], "title": "The Searchers", "tagline": "He had to find her... he had to find her...", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0049730", "adult": false, "backdrop_path": "/iob9MPYquOckNbhhjFUazRDlgGG.jpg", "production_companies": [{"name": "C.V. Whitney Pictures", "id": 1322}], "release_date": "1956-03-13", "popularity": 0.510945785945736, "original_title": "The Searchers", "budget": 3750000, "cast": [{"name": "John Wayne", "character": "Ethan Edwards", "id": 4165, "credit_id": "52fe4388c3a36847f805b3f3", "cast_id": 10, "profile_path": "/8I83wLVUil6tIe50yb82LdEggFR.jpg", "order": 0}, {"name": "Jeffrey Hunter", "character": "Martin Pawley", "id": 30551, "credit_id": "52fe4388c3a36847f805b3f7", "cast_id": 11, "profile_path": "/vytx9GGm87e5jGt763oPeHsMXAA.jpg", "order": 1}, {"name": "Vera Miles", "character": "Laurie Jorgensen", "id": 7303, "credit_id": "52fe4388c3a36847f805b3fb", "cast_id": 12, "profile_path": "/qWP9L969DOSFgBhRV2Ik2ve8Z4r.jpg", "order": 2}, {"name": "Natalie Wood", "character": "Debbie Edwards (older)", "id": 2769, "credit_id": "52fe4388c3a36847f805b403", "cast_id": 14, "profile_path": "/iAFtRflUEWSUObRZaqHPxx5CWSn.jpg", "order": 3}, {"name": "Ward Bond", "character": "Rev. Capt. Samuel Johnston Clayton", "id": 4303, "credit_id": "52fe4388c3a36847f805b3ff", "cast_id": 13, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 4}, {"name": "John Qualen", "character": "Lars Jorgensen", "id": 4119, "credit_id": "52fe4388c3a36847f805b407", "cast_id": 15, "profile_path": "/nbXFHZo4TUpNnFGnADXfPwQIvEn.jpg", "order": 5}, {"name": "Olive Carey", "character": "Mrs. Jorgensen", "id": 30552, "credit_id": "52fe4388c3a36847f805b40b", "cast_id": 16, "profile_path": "/sEdBHXtghCgHUFT1pMQyhVKk6T0.jpg", "order": 6}, {"name": "Henry Brandon", "character": "Chief Cicatrice (Scar)", "id": 30553, "credit_id": "52fe4388c3a36847f805b40f", "cast_id": 17, "profile_path": "/xjkd8VhfGkYidjMiqJ4tjihLHsH.jpg", "order": 7}, {"name": "Ken Curtis", "character": "Charlie McCorry", "id": 30554, "credit_id": "52fe4388c3a36847f805b413", "cast_id": 18, "profile_path": "/rY1vWoI4hANlZ9wBT7RL4lMqqCB.jpg", "order": 8}, {"name": "Harry Carey, Jr.", "character": "Brad Jorgensen", "id": 4316, "credit_id": "52fe4388c3a36847f805b417", "cast_id": 19, "profile_path": "/7Via2uVuYnnz8gJ5qx0zXqIKTkz.jpg", "order": 9}, {"name": "Antonio Moreno", "character": "Emilio Gabriel Fernandez y Figueroa", "id": 30555, "credit_id": "52fe4388c3a36847f805b41b", "cast_id": 20, "profile_path": "/a19BasFcDM1lWAXKM27XMfHnyET.jpg", "order": 10}, {"name": "Hank Worden", "character": "Mose Harper", "id": 30299, "credit_id": "52fe4388c3a36847f805b41f", "cast_id": 21, "profile_path": "/n2vqVwUdNBjzWXRN3HIiMENxMBt.jpg", "order": 11}, {"name": "Beulah Archuletta", "character": "Wild Goose Flying in the Night Sky (Look)", "id": 30556, "credit_id": "52fe4388c3a36847f805b423", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Walter Coy", "character": "Aaron Edwards", "id": 30557, "credit_id": "52fe4388c3a36847f805b427", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Dorothy Jordan", "character": "Martha Edwards", "id": 30558, "credit_id": "52fe4388c3a36847f805b42b", "cast_id": 24, "profile_path": "/AwmgQVCqSlVyLkHSImvKpaKHEnf.jpg", "order": 14}, {"name": "Pippa Scott", "character": "Lucy Edwards", "id": 30559, "credit_id": "52fe4388c3a36847f805b42f", "cast_id": 25, "profile_path": "/aNghY1DDH7QppS4tTB8oAu7NJZC.jpg", "order": 15}, {"name": "Patrick Wayne", "character": "Lt. Greenhill", "id": 30560, "credit_id": "52fe4388c3a36847f805b433", "cast_id": 26, "profile_path": "/plZJV39nkOfo9kGEzmkvZKz19rU.jpg", "order": 16}, {"name": "Lana Wood", "character": "Debbie Edwards (younger)", "id": 10191, "credit_id": "52fe4388c3a36847f805b437", "cast_id": 27, "profile_path": "/8ENomc6bZLSADOFDxJaiyR0s8fJ.jpg", "order": 17}], "directors": [{"name": "John Ford", "department": "Directing", "job": "Director", "credit_id": "52fe4388c3a36847f805b3bf", "profile_path": "/nwkPz2ytSBiv1zFhrcg4kYJIK3d.jpg", "id": 8500}], "vote_average": 8.0, "runtime": 119}, "3116": {"poster_path": "/jEeyGsyoiRPwwxDkR1WWNT8eoyN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44785053, "overview": "A naive male prostitute and his sickly friend struggle to survive on the streets of New York City.", "video": false, "id": 3116, "genres": [{"id": 18, "name": "Drama"}], "title": "Midnight Cowboy", "tagline": "Whatever you hear about Midnight Cowboy is true.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064665", "adult": false, "backdrop_path": "/6bkR6eMCafikq0Nvi665MwsUddk.jpg", "production_companies": [{"name": "Florin Productions", "id": 1323}, {"name": "Jerome Hellman Productions", "id": 1324}], "release_date": "1969-05-25", "popularity": 1.13666500840352, "original_title": "Midnight Cowboy", "budget": 3600000, "cast": [{"name": "Dustin Hoffman", "character": "'Ratso' Rizzo", "id": 4483, "credit_id": "52fe4388c3a36847f805b511", "cast_id": 10, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Jon Voight", "character": "Joe Buck", "id": 10127, "credit_id": "52fe4388c3a36847f805b515", "cast_id": 11, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Sylvia Miles", "character": "Cass", "id": 19335, "credit_id": "52fe4388c3a36847f805b519", "cast_id": 12, "profile_path": "/osHOZQ4Mu9xyNDT79fgeSgJeLlH.jpg", "order": 2}, {"name": "John McGiver", "character": "Mr. O'Daniel", "id": 1943, "credit_id": "52fe4388c3a36847f805b51d", "cast_id": 13, "profile_path": "/4SPN4He1egZ60aIMNuh7tArx21x.jpg", "order": 3}, {"name": "Brenda Vaccaro", "character": "Shirley", "id": 30585, "credit_id": "52fe4388c3a36847f805b521", "cast_id": 14, "profile_path": "/fHVkcW5lLi915Y2JszN1lWB907a.jpg", "order": 4}, {"name": "Barnard Hughes", "character": "Towny", "id": 2549, "credit_id": "52fe4388c3a36847f805b525", "cast_id": 15, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 5}, {"name": "Ruth White", "character": "Sally Buck - Texas", "id": 8493, "credit_id": "52fe4388c3a36847f805b529", "cast_id": 16, "profile_path": "/fpz3aVtyHw3luNQxoRkYBlOOqIa.jpg", "order": 6}, {"name": "Jennifer Salt", "character": "Annie - Texas", "id": 41258, "credit_id": "52fe4388c3a36847f805b52d", "cast_id": 17, "profile_path": "/2Qyc9aLHRmeEFF69XiYpIxUI0bp.jpg", "order": 7}, {"name": "Gilman Rankin", "character": "Woodsy Niles - Texas (as Gil Rankin)", "id": 109957, "credit_id": "52fe4388c3a36847f805b531", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "T. Tom Marlow", "character": "Little Joe - Texas", "id": 1075091, "credit_id": "52fe4388c3a36847f805b535", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "George Eppersen", "character": "Ralph - Texas", "id": 1075092, "credit_id": "52fe4388c3a36847f805b539", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Georgann Johnson", "character": "Rich Lady - New York", "id": 14109, "credit_id": "52fe4388c3a36847f805b53d", "cast_id": 21, "profile_path": "/KFAp2rl3xtvdhqfcUbEHQeUM7o.jpg", "order": 11}, {"name": "Bob Balaban", "character": "The Young Student - New York", "id": 12438, "credit_id": "52fe4388c3a36847f805b541", "cast_id": 22, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 12}], "directors": [{"name": "John Schlesinger", "department": "Directing", "job": "Director", "credit_id": "52fe4388c3a36847f805b4dd", "profile_path": "/vFCJ4RxvHysxeiwcFsiSGg7Tgre.jpg", "id": 19304}], "vote_average": 7.2, "runtime": 113}, "34653": {"poster_path": "/k3nMMJzsT5xougUAyJ9G0oIVOjf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Adapted from a 1964 novel of the same name, the film follows a day in the life of George Falconer (Colin Firth), a British college professor reeling with the recent and sudden loss of his longtime parter. This traumatic event makes George challenge his own will to live as he seeks the console of close friend Charley (Juliane Moore) who is struggling with her own questions about life.", "video": false, "id": 34653, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Single Man", "tagline": "", "vote_count": 91, "homepage": "http://www.asingleman-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1315981", "adult": false, "backdrop_path": "/76l4nbcPbClrAtM3xypKy34TXLF.jpg", "production_companies": [{"name": "Fade to Black Productions", "id": 9351}, {"name": "Depth of Field", "id": 1473}, {"name": "Artina Films", "id": 2394}], "release_date": "2009-10-19", "popularity": 0.994982732248117, "original_title": "A Single Man", "budget": 7000000, "cast": [{"name": "Colin Firth", "character": "George", "id": 5472, "credit_id": "52fe45729251416c910329cf", "cast_id": 4, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Charley", "id": 1231, "credit_id": "52fe45729251416c910329d3", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Nicholas Hoult", "character": "Kenny", "id": 3292, "credit_id": "52fe45729251416c910329d7", "cast_id": 6, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 2}, {"name": "Matthew Goode", "character": "Jim", "id": 1247, "credit_id": "52fe45729251416c910329db", "cast_id": 7, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 3}, {"name": "Paulette Lamori", "character": "Alva", "id": 142380, "credit_id": "52fe45729251416c910329df", "cast_id": 8, "profile_path": "/jEN7bHjkaZ3gdkSak60wuXzchld.jpg", "order": 4}, {"name": "Ryan Simpkins", "character": "Jennifer Strunk", "id": 35027, "credit_id": "52fe45729251416c910329e3", "cast_id": 9, "profile_path": "/lTOB3hz1xPvgMKe3QhRAxvz2O6U.jpg", "order": 5}, {"name": "Ginnifer Goodwin", "character": "Mrs. Strunk", "id": 417, "credit_id": "52fe45729251416c910329e7", "cast_id": 10, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 6}, {"name": "Teddy Sears", "character": "Mr. Strunk", "id": 63540, "credit_id": "52fe45729251416c910329eb", "cast_id": 11, "profile_path": "/57umEw6wGHQzwQCZURWkKmcYIhd.jpg", "order": 7}, {"name": "Paul Butler", "character": "Christopher Strunk", "id": 162526, "credit_id": "52fe45729251416c91032a01", "cast_id": 17, "profile_path": "/hikZp4WHMaILaD0CDnWCfy4w03g.jpg", "order": 8}, {"name": "Aaron Sanders", "character": "Tom Strunk", "id": 142381, "credit_id": "52fe45729251416c910329ef", "cast_id": 13, "profile_path": "/hFoXiBCghlTKqBzC8gvGIVBGSHr.jpg", "order": 9}, {"name": "Keri Lynn Pratt", "character": "Blonde Secretary", "id": 77803, "credit_id": "52fe45729251416c910329f3", "cast_id": 14, "profile_path": "/qLrUKUM4GEzCuq5VTUFQNaJOB3Z.jpg", "order": 10}, {"name": "Elisabeth Harnois", "character": "Young Woman", "id": 78197, "credit_id": "52fe45729251416c910329fd", "cast_id": 16, "profile_path": "/bBVitNtkzupyXn8HKtLTduPclje.jpg", "order": 11}, {"name": "Lee Pace", "character": "Grant", "id": 72095, "credit_id": "52fe45729251416c91032a05", "cast_id": 18, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 12}, {"name": "Jon Kortajarena", "character": "Carlos", "id": 1316023, "credit_id": "536394c6c3a3681586002170", "cast_id": 20, "profile_path": null, "order": 13}], "directors": [{"name": "Tom Ford", "department": "Directing", "job": "Director", "credit_id": "52fe45729251416c910329bf", "profile_path": "/yyOaH6eVlraIqQFoNq5zYtswOmK.jpg", "id": 120615}], "vote_average": 7.2, "runtime": 101}, "11319": {"poster_path": "/46W2yCZgfhpeV1OOLeOCczoosXD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71215869, "overview": "What can two little mice possibly do to save an orphan girl who's fallen into evil hands? With a little cooperation and faith in oneself, anything is possible! As members of the mouse-run International Rescue Aid Society, Bernard and Miss Bianca respond to orphan Penny's call for help. The two mice search for clues with the help of an old cat named Rufus.", "video": false, "id": 11319, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Rescuers", "tagline": "Two tiny agents vs. the world's wickedest woman in a dazzling animated adventure!", "vote_count": 121, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/27YQ0qV5AolUQ4eX5caP0VbNLdQ.jpg", "id": 57971, "name": "The Rescuers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076618", "adult": false, "backdrop_path": "/bHRboVSfqYzILQSm4o7lPG031HT.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1977-06-22", "popularity": 1.44852952359893, "original_title": "The Rescuers", "budget": 1200000, "cast": [{"name": "Bob Newhart", "character": "Bernard (voice)", "id": 64930, "credit_id": "52fe44259251416c7502a5c9", "cast_id": 18, "profile_path": "/uBEjNF7rOgrG3aKlfq6xY5aPmSg.jpg", "order": 0}, {"name": "Eva Gabor", "character": "Miss Bianca (voice)", "id": 44714, "credit_id": "52fe44259251416c7502a5cd", "cast_id": 19, "profile_path": "/1TffwJuOCaQSHmiQoI3ShogsMTP.jpg", "order": 1}, {"name": "Geraldine Page", "character": "Madame Medusa (voice)", "id": 41283, "credit_id": "52fe44259251416c7502a5d1", "cast_id": 20, "profile_path": "/zyGpaCsHZUJRUyFUJNlTQ6dBs6F.jpg", "order": 2}, {"name": "Joe Flynn", "character": "Mr. Snoops (voice)", "id": 23586, "credit_id": "52fe44259251416c7502a5d5", "cast_id": 21, "profile_path": "/jUZjkepueZTzW6X4PaaMwPxD95.jpg", "order": 3}, {"name": "Jeanette Nolan", "character": "Ellie Mae (voice)", "id": 7520, "credit_id": "52fe44259251416c7502a5e5", "cast_id": 24, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 4}, {"name": "Pat Buttram", "character": "Luke (voice)", "id": 21460, "credit_id": "52fe44259251416c7502a5e9", "cast_id": 25, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 5}, {"name": "Jim Jordan", "character": "Orville (voice)", "id": 145529, "credit_id": "52fe44259251416c7502a5ed", "cast_id": 26, "profile_path": "/wUNY8o64iWH4T91kiLxZZlvsVQD.jpg", "order": 6}, {"name": "John McIntire", "character": "Rufus (voice)", "id": 53010, "credit_id": "52fe44259251416c7502a5f1", "cast_id": 27, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 7}, {"name": "Michelle Stacy", "character": "Penny (voice)", "id": 166120, "credit_id": "52fe44259251416c7502a5f5", "cast_id": 28, "profile_path": "/lQflyVFPkKgl8OS1uZmcUYypLku.jpg", "order": 8}, {"name": "Bernard Fox", "character": "The Chairman (voice)", "id": 8545, "credit_id": "52fe44259251416c7502a5f9", "cast_id": 29, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 9}, {"name": "Larry Clemmons", "character": "Gramps (voice)", "id": 57332, "credit_id": "52fe44259251416c7502a5fd", "cast_id": 30, "profile_path": "/A8SsomYXhY8yMju5N0pPj5xzcYK.jpg", "order": 10}, {"name": "James MacDonald", "character": "Evinrude (voice)", "id": 137461, "credit_id": "52fe44259251416c7502a601", "cast_id": 31, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 11}, {"name": "George Lindsey", "character": "Rabbit (voice)", "id": 141693, "credit_id": "52fe44259251416c7502a605", "cast_id": 32, "profile_path": "/dvlW5KWKZuub9nqkwwePA5Tf1yX.jpg", "order": 12}, {"name": "Bill McMillian", "character": "TV Announcer (voice)", "id": 1016690, "credit_id": "52fe44259251416c7502a609", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Dub Taylor", "character": "Digger (voice)", "id": 6463, "credit_id": "52fe44259251416c7502a60d", "cast_id": 34, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 14}], "directors": [{"name": "John Lounsbery", "department": "Directing", "job": "Director", "credit_id": "52fe44249251416c7502a56b", "profile_path": null, "id": 69003}, {"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44249251416c7502a571", "profile_path": null, "id": 57314}, {"name": "Art Stevens", "department": "Directing", "job": "Director", "credit_id": "52fe44249251416c7502a577", "profile_path": null, "id": 67607}], "vote_average": 6.5, "runtime": 78}, "11321": {"poster_path": "/mX8SsTw2uApc02W8SBIKeprcWr1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 168167691, "overview": "An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.", "video": false, "id": 11321, "genres": [{"id": 18, "name": "Drama"}], "title": "Seven Pounds", "tagline": "Seven names. Seven strangers. One secret.", "vote_count": 430, "homepage": "http://www.sonypictures.com/movies/sevenpounds/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0814314", "adult": false, "backdrop_path": "/ymzaJLm2EIYbG9n7snVfCnHAPQk.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Escape Artists", "id": 1423}], "release_date": "2008-12-18", "popularity": 0.793687837702097, "original_title": "Seven Pounds", "budget": 55000000, "cast": [{"name": "Will Smith", "character": "Ben", "id": 2888, "credit_id": "52fe44259251416c7502a685", "cast_id": 14, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Rosario Dawson", "character": "Emily", "id": 5916, "credit_id": "52fe44259251416c7502a64b", "cast_id": 3, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 1}, {"name": "Sarah Jane Morris", "character": "Susan", "id": 70304, "credit_id": "52fe44259251416c7502a64f", "cast_id": 4, "profile_path": "/ykk7CjHP7iXcX0XBWrtEYVG9Nc4.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Ezra Turner", "id": 57755, "credit_id": "52fe44259251416c7502a67d", "cast_id": 12, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Michael Ealy", "character": "Ben's Brother", "id": 8177, "credit_id": "52fe44259251416c7502a681", "cast_id": 13, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 4}, {"name": "Connor Cruise", "character": "Young Ben", "id": 235547, "credit_id": "52fe44259251416c7502a689", "cast_id": 15, "profile_path": "/wQUTaFEcO67FxHZ6OHS91sBC6Q2.jpg", "order": 5}, {"name": "Barry Pepper", "character": "Dan", "id": 12834, "credit_id": "52fe44259251416c7502a68d", "cast_id": 16, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 6}, {"name": "Elpidia Carrillo", "character": "Connie", "id": 1102, "credit_id": "52fe44259251416c7502a691", "cast_id": 17, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 7}, {"name": "Robinne Lee", "character": "Sarah", "id": 55258, "credit_id": "52fe44259251416c7502a695", "cast_id": 18, "profile_path": "/dkt0s7GjQ2fEJGHYVd1T2pTqBET.jpg", "order": 8}, {"name": "Joe Nunez", "character": "Larry", "id": 54696, "credit_id": "52fe44259251416c7502a699", "cast_id": 19, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 9}, {"name": "Bill Smitrovich", "character": "George Ristuccia", "id": 17200, "credit_id": "52fe44259251416c7502a69d", "cast_id": 20, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 10}, {"name": "Tim Kelleher", "character": "Stewart Goodman", "id": 72864, "credit_id": "52fe44259251416c7502a6a1", "cast_id": 21, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 11}, {"name": "Gina Hecht", "character": "Dr. Briar", "id": 156818, "credit_id": "52fe44259251416c7502a6a5", "cast_id": 22, "profile_path": "/heybFsT6FKB7CdZ8Uj6cxt52EwY.jpg", "order": 12}, {"name": "Andy Milder", "character": "George's Doctor", "id": 1043304, "credit_id": "52fe44259251416c7502a6a9", "cast_id": 23, "profile_path": "/pUxbi636gXl6CaeGvKrPr3j22Ea.jpg", "order": 13}, {"name": "Judyann Elder", "character": "Holly", "id": 77033, "credit_id": "52fe44259251416c7502a6ad", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Madison Pettis", "character": "Connie's Daughter", "id": 74929, "credit_id": "52fe44259251416c7502a6b1", "cast_id": 25, "profile_path": "/lEYkyecOFfRTCftwG75aVZZVfhw.jpg", "order": 15}, {"name": "Octavia Spencer", "character": "Kate the Home Health Care Nurse", "id": 6944, "credit_id": "52fe44259251416c7502a6b5", "cast_id": 26, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 16}], "directors": [{"name": "Gabriele Muccino", "department": "Directing", "job": "Director", "credit_id": "52fe44259251416c7502a647", "profile_path": "/uU23lwEwz3TnHl0DvvyePpaGuEG.jpg", "id": 20646}], "vote_average": 7.3, "runtime": 123}, "11322": {"poster_path": "/54oAkM0syutE3hkoYD5mFqRGdfD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214104620, "overview": "In the shadow of the Great Depression, criminal minds are thriving -- notorious men such as John Dillinger, \"Baby Face\" Nelson and \"Pretty Boy\" Floyd -- and it's up to J. Edgar Hoover and the FBI to bring them down in this gritty crime drama.", "video": false, "id": 11322, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Public Enemies", "tagline": "America's Most Wanted.", "vote_count": 432, "homepage": "http://www.publicenemies.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1152836", "adult": false, "backdrop_path": "/if8Mr1HJyS9sEtI8VMa01udmLuM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Forward Pass", "id": 675}, {"name": "Misher Films", "id": 11581}, {"name": "Tribeca Productions", "id": 11391}, {"name": "Appian Way", "id": 562}, {"name": "Dentsu", "id": 6452}], "release_date": "2009-07-01", "popularity": 1.44235867292833, "original_title": "Public Enemies", "budget": 80000000, "cast": [{"name": "Christian Bale", "character": "Melvin Purvis", "id": 3894, "credit_id": "52fe44259251416c7502a719", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Johnny Depp", "character": "John Dillinger", "id": 85, "credit_id": "52fe44259251416c7502a71d", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 1}, {"name": "Giovanni Ribisi", "character": "Alvin Karpis", "id": 1771, "credit_id": "52fe44259251416c7502a721", "cast_id": 3, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 2}, {"name": "Billy Crudup", "character": "J. Edgar Hoover", "id": 8289, "credit_id": "52fe44259251416c7502a725", "cast_id": 4, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 3}, {"name": "Emilie de Ravin", "character": "Anna Patzke", "id": 28660, "credit_id": "52fe44259251416c7502a729", "cast_id": 5, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 4}, {"name": "Channing Tatum", "character": "Pretty Boy Floyd", "id": 38673, "credit_id": "52fe44259251416c7502a72d", "cast_id": 6, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Billie Frechette", "id": 8293, "credit_id": "52fe44259251416c7502a74f", "cast_id": 12, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Leelee Sobieski", "character": "Polly Hamilton", "id": 22290, "credit_id": "52fe44259251416c7502a753", "cast_id": 13, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 7}, {"name": "Domenick Lombardozzi", "character": "Gilbert Catena", "id": 17941, "credit_id": "52fe44259251416c7502a757", "cast_id": 14, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 8}, {"name": "Stephen Lang", "character": "Charles Winstead", "id": 32747, "credit_id": "52fe44259251416c7502a75b", "cast_id": 15, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 9}, {"name": "Carey Mulligan", "character": "Carol Slayman", "id": 36662, "credit_id": "52fe44259251416c7502a7b9", "cast_id": 32, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 10}, {"name": "James Russo", "character": "Walter Dietrich", "id": 785, "credit_id": "52fe44259251416c7502a7bd", "cast_id": 33, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 11}, {"name": "David Wenham", "character": "Harry 'Pete' Pierpont", "id": 1371, "credit_id": "52fe44259251416c7502a7c1", "cast_id": 34, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 12}, {"name": "Christian Stolte", "character": "Charles Makley", "id": 36091, "credit_id": "52fe44259251416c7502a7c5", "cast_id": 35, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 13}, {"name": "Jason Clarke", "character": "'Red' Hamilton", "id": 76512, "credit_id": "52fe44259251416c7502a7c9", "cast_id": 36, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 14}, {"name": "John Judd", "character": "Turnkey", "id": 156701, "credit_id": "52fe44269251416c7502a7cd", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Stephen Dorff", "character": "Homer Van Meter", "id": 10822, "credit_id": "52fe44269251416c7502a7d1", "cast_id": 38, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 16}, {"name": "Michael Vieau", "character": "Ed Shouse", "id": 1052875, "credit_id": "52fe44269251416c7502a7d5", "cast_id": 39, "profile_path": "/AkeYIbEkVjIwWLCbxYkxcOf3FvI.jpg", "order": 17}, {"name": "John Kishline", "character": "Guard Dainard", "id": 1052876, "credit_id": "52fe44269251416c7502a7d9", "cast_id": 40, "profile_path": null, "order": 18}, {"name": "Wesley Walker", "character": "Jim Leslie", "id": 83402, "credit_id": "52fe44269251416c7502a7dd", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "John Scherp", "character": "Earl Adams", "id": 1052877, "credit_id": "52fe44269251416c7502a7e1", "cast_id": 42, "profile_path": null, "order": 20}, {"name": "Elena Kenney", "character": "Viola Norris", "id": 1052878, "credit_id": "52fe44269251416c7502a7e5", "cast_id": 43, "profile_path": null, "order": 21}, {"name": "William Nero Jr.", "character": "Toddler on Farm", "id": 1052879, "credit_id": "52fe44269251416c7502a7e9", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Don Frye", "character": "Clarence Hurt", "id": 82042, "credit_id": "52fe44269251416c7502a7f3", "cast_id": 46, "profile_path": "/tdPVsqfph4xWccgviz2ZYU5VYk5.jpg", "order": 23}, {"name": "Branka Kati\u0107", "character": "Anna Sage", "id": 15268, "credit_id": "52fe44269251416c7502a7f7", "cast_id": 47, "profile_path": "/6dtxxJyeGL5kHpUEeshDfe3T4wB.jpg", "order": 24}, {"name": "Stephen Graham", "character": "Baby Face Nelson", "id": 1115, "credit_id": "52fe44269251416c7502a7fb", "cast_id": 48, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 25}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44259251416c7502a733", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.4, "runtime": 140}, "3131": {"poster_path": "/ytKo2tLvKUd9Kbs0poXSQh6ft7d.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 193772504, "overview": "1863. America was born in the streets. In this movie, we see Amsterdam Vallon returning to the Five Points of America to seek vengeance against the psychotic gangland kingpin Bill the Butcher who murdered his father years ago. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.", "video": false, "id": 3131, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Gangs of New York", "tagline": "America Was Born In The Streets.", "vote_count": 382, "homepage": "http://video.movies.go.com/gangsofnewyork/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0217505", "adult": false, "backdrop_path": "/5JadVEOVqxydiUOvz6BYlTMkDQP.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}, {"name": "Alberto Grimaldi Productions", "id": 7381}], "release_date": "2002-12-19", "popularity": 1.35480644028649, "original_title": "Gangs of New York", "budget": 97000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Amsterdam Vallon", "id": 6193, "credit_id": "52fe4389c3a36847f805bbc1", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Daniel Day-Lewis", "character": "Bill 'The Butcher' Cutting", "id": 11856, "credit_id": "52fe4389c3a36847f805bbc5", "cast_id": 3, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Jenny Everdeane", "id": 6941, "credit_id": "52fe4389c3a36847f805bbc9", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Liam Neeson", "character": "Priest Vallon", "id": 3896, "credit_id": "52fe4389c3a36847f805bc09", "cast_id": 15, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Monk McGinn", "id": 2039, "credit_id": "52fe4389c3a36847f805bc0d", "cast_id": 16, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "John C. Reilly", "character": "Happy Jack", "id": 4764, "credit_id": "52fe4389c3a36847f805bc11", "cast_id": 17, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "William Tweed", "id": 388, "credit_id": "52fe4389c3a36847f805bc15", "cast_id": 18, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Roger Ashton-Griffiths", "character": "P.T. Barnum", "id": 20243, "credit_id": "52fe4389c3a36847f805bc19", "cast_id": 19, "profile_path": "/3lvWs4Kz0aATpcSY7PyPhkKgH6W.jpg", "order": 7}, {"name": "David Hemmings", "character": "Mr. Schermerhorn", "id": 15196, "credit_id": "52fe4389c3a36847f805bc1d", "cast_id": 21, "profile_path": "/k2M6UrbkWYF8FewmKQm3TWu6KMX.jpg", "order": 8}, {"name": "Lawrence Gilliard Jr.", "character": "Jimmy Spoils", "id": 37947, "credit_id": "52fe4389c3a36847f805bc81", "cast_id": 40, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 9}, {"name": "Michael Byrne", "character": "Horace Greeley", "id": 742, "credit_id": "52fe4389c3a36847f805bc8b", "cast_id": 43, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 10}, {"name": "Gary Lewis", "character": "McGloin", "id": 480, "credit_id": "52fe4389c3a36847f805bc93", "cast_id": 45, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 11}, {"name": "Henry Thomas", "character": "Johnny Sirocco", "id": 9976, "credit_id": "52fe4389c3a36847f805bc8f", "cast_id": 44, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 12}, {"name": "Barbara Bouchet", "character": "Mrs. Schermerhorn", "id": 16021, "credit_id": "5461db7e0e0a2609b60011bc", "cast_id": 47, "profile_path": "/5S6SyduMT1bQKupKWkRdZVc47W0.jpg", "order": 13}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4389c3a36847f805bbbd", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.8, "runtime": 167}, "11324": {"poster_path": "/aZqKsvpJDFy2UzUMsdskNFbfkOd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 294804195, "overview": "World War II soldier-turned-U.S. marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by his own troubling visions and by Dr. Cawley.", "video": false, "id": 11324, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Shutter Island", "tagline": "Someone is missing.", "vote_count": 1935, "homepage": "http://www.shutterisland.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1130884", "adult": false, "backdrop_path": "/fmLWuAfDPaUa3Vi5nO1YUUyZaX6.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Sikelia Productions", "id": 23243}, {"name": "Appian Way", "id": 562}], "release_date": "2010-02-18", "popularity": 2.80804808336516, "original_title": "Shutter Island", "budget": 80000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Teddy Daniels", "id": 6193, "credit_id": "52fe44269251416c7502a8ab", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Mark Ruffalo", "character": "Chuck Aule", "id": 103, "credit_id": "52fe44269251416c7502a8af", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Dr. John Cawley", "id": 2282, "credit_id": "52fe44269251416c7502a8b3", "cast_id": 4, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 2}, {"name": "Emily Mortimer", "character": "Rachel Solando", "id": 1246, "credit_id": "52fe44269251416c7502a8b7", "cast_id": 5, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 3}, {"name": "Michelle Williams", "character": "Dolores Chanal", "id": 1812, "credit_id": "52fe44269251416c7502a8bb", "cast_id": 6, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 4}, {"name": "Max von Sydow", "character": "Dr. Jeremiah Naehring", "id": 2201, "credit_id": "52fe44269251416c7502a8bf", "cast_id": 7, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 5}, {"name": "Jackie Earle Haley", "character": "George Noyce", "id": 17183, "credit_id": "52fe44269251416c7502a8c3", "cast_id": 8, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 6}, {"name": "Patricia Clarkson", "character": "Rachel 2", "id": 1276, "credit_id": "52fe44269251416c7502a8d3", "cast_id": 12, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 7}, {"name": "Ted Levine", "character": "Warden", "id": 15854, "credit_id": "52fe44269251416c7502a8d7", "cast_id": 13, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 8}, {"name": "John Carroll Lynch", "character": "Deputy Warden McPherson", "id": 3911, "credit_id": "52fe44269251416c7502a8db", "cast_id": 14, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 9}, {"name": "Elias Koteas", "character": "Laeddis", "id": 13550, "credit_id": "52fe44269251416c7502a8df", "cast_id": 15, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 10}, {"name": "Robin Bartlett", "character": "Bridget Kearns", "id": 11902, "credit_id": "52fe44269251416c7502a8e3", "cast_id": 16, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 11}, {"name": "Christopher Denham", "character": "Christian", "id": 61510, "credit_id": "52fe44269251416c7502a8e7", "cast_id": 17, "profile_path": "/oPnHnLW51n9qFtCxh4phejRm6xe.jpg", "order": 12}, {"name": "Spencer Treat Clark", "character": "Timothy", "id": 4012, "credit_id": "52fe44269251416c7502a8eb", "cast_id": 18, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 13}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe44269251416c7502a8a7", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.2, "runtime": 138}, "207933": {"poster_path": "/6PXtqaYOpLTpxfKtwvAK3xCQfXZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A Harvard Medical School graduate takes a position at a mental institution and soon becomes obsessed with a female mental patient, but he has no idea of a recent and horrifying staffing change.", "video": false, "id": 207933, "genres": [{"id": 53, "name": "Thriller"}], "title": "Stonehearst Asylum", "tagline": "No one is what they seem.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1772264", "adult": false, "backdrop_path": "/4NYzyugV9AoTq0e0SJ1cRHfn4BL.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}, {"name": "Sobini Films", "id": 13923}], "release_date": "2014-10-24", "popularity": 3.14822797987093, "original_title": "Stonehearst Asylum", "budget": 0, "cast": [{"name": "Kate Beckinsale", "character": "Eliza Graves", "id": 3967, "credit_id": "540b11aac3a368799f001657", "cast_id": 3, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Edward Newgate", "id": 38941, "credit_id": "540b11f4c3a36879a2001705", "cast_id": 7, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Silas Lamb", "id": 2282, "credit_id": "540b11c1c3a36879ae00156f", "cast_id": 4, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 2}, {"name": "Michael Caine", "character": "Dr. Salt", "id": 3895, "credit_id": "540b11d1c3a368799c001660", "cast_id": 5, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "The Alienist", "id": 2039, "credit_id": "540b11e4c3a36879b20014fe", "cast_id": 6, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "David Thewlis", "character": "Mickey Finn", "id": 11207, "credit_id": "540b1207c3a36879a5001564", "cast_id": 8, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 5}, {"name": "Jason Flemyng", "character": "Swanwick", "id": 973, "credit_id": "544de2070e0a2608d4003cc7", "cast_id": 9, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 6}, {"name": "Sin\u00e9ad Cusack", "character": "Mrs. Pike", "id": 11281, "credit_id": "544de2160e0a2608d4003cc9", "cast_id": 10, "profile_path": "/r9eWOKN1WtE7RMDAwIhOpMRh3wL.jpg", "order": 7}, {"name": "Sophie Kennedy Clark", "character": "Millie", "id": 1151957, "credit_id": "544de227c3a36872b4003dbd", "cast_id": 11, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 8}, {"name": "Guillaume Delaunay", "character": "Arthur Timbs", "id": 1125601, "credit_id": "544de2470e0a2608d0003da5", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Edmund Kingsley", "character": "Charles Graves", "id": 1080628, "credit_id": "544de2690e0a2608d4003ccf", "cast_id": 13, "profile_path": "/VLKvYY892zR4lw25OKSdZZhe5b.jpg", "order": 10}, {"name": "Christopher Fulford", "character": "Paxton", "id": 6970, "credit_id": "544de287c3a36872e0003fc4", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Ekaterina Stoyanova", "character": "Curios Follower", "id": 1378096, "credit_id": "544de2b40e0a2608cd003d1d", "cast_id": 15, "profile_path": null, "order": 12}], "directors": [{"name": "Brad Anderson", "department": "Directing", "job": "Director", "credit_id": "540b10fc0e0a262b46002651", "profile_path": "/5SAJd9sEFefkFoStAPXuKVHnMoX.jpg", "id": 37948}], "vote_average": 6.6, "runtime": 112}, "11327": {"poster_path": "/afgAGwV1WXjMoooUzaSnw7XAvhj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Billy Hayes is caught attempting to smuggle drugs out of Turkey. The Turkish courts decide to make an example of him, sentencing him to more than 30 years in prison. Hayes has two opportunities for release: the appeals made by his lawyer, his family, and the American government, or the \"Midnight Express\".", "video": false, "id": 11327, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Midnight Express", "tagline": "Walk into the incredible true experience of Billy Hayes, and bring all the courage you can!", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "mt", "name": "Malti"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0077928", "adult": false, "backdrop_path": "/g468LAK5y5EfEtsjqYz4ulVXKkM.jpg", "production_companies": [{"name": "Columbia Films S.A.", "id": 6386}], "release_date": "1978-10-06", "popularity": 0.763865020528728, "original_title": "Midnight Express", "budget": 2300000, "cast": [{"name": "Brad Davis", "character": "Billy Hayes", "id": 69010, "credit_id": "52fe44279251416c7502aa0d", "cast_id": 11, "profile_path": "/xutVl1hr1wtBSneWo7aW5BWULu8.jpg", "order": 0}, {"name": "Irene Miracle", "character": "Susan", "id": 69011, "credit_id": "52fe44279251416c7502aa11", "cast_id": 12, "profile_path": "/3EImLyVuzaRGV0tEytXAbwNVMBT.jpg", "order": 1}, {"name": "Bo Hopkins", "character": "Tex", "id": 12410, "credit_id": "52fe44279251416c7502aa15", "cast_id": 13, "profile_path": "/tfned4hs0rrq7L5PPuS5GnlHFc6.jpg", "order": 2}, {"name": "Randy Quaid", "character": "Jimmy Booth", "id": 1811, "credit_id": "52fe44279251416c7502aa19", "cast_id": 14, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 3}, {"name": "John Hurt", "character": "Max", "id": 5049, "credit_id": "52fe44279251416c7502aa1d", "cast_id": 15, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Michael Ensign", "character": "Stanley Daniels", "id": 1080265, "credit_id": "52fe44279251416c7502aa2d", "cast_id": 18, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 5}, {"name": "Paul L. Smith", "character": "Hamidou", "id": 39782, "credit_id": "52fe44279251416c7502aa31", "cast_id": 19, "profile_path": "/1NZXecko55r4vchJkUAshliIctS.jpg", "order": 6}, {"name": "Norbert Weisser", "character": "Erich", "id": 6701, "credit_id": "52fe44279251416c7502aa35", "cast_id": 20, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 7}, {"name": "Mike Kellin", "character": "Mr. Hayes", "id": 50762, "credit_id": "52fe44279251416c7502aa39", "cast_id": 21, "profile_path": "/28LFcecwpDIMVIJUdzqko87popk.jpg", "order": 8}, {"name": "Frano Diogene", "character": "Yesil", "id": 1282662, "credit_id": "52fe44279251416c7502aa3d", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Michael Ensign", "character": "Stanley Daniels", "id": 1080265, "credit_id": "52fe44279251416c7502aa41", "cast_id": 23, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}, {"name": "Paolo Bonacelli", "character": "Rifki", "id": 4819, "credit_id": "54baee5fc3a3681421003bc0", "cast_id": 24, "profile_path": "/evLXJ9ufstKWN00SElhuSVe7FUD.jpg", "order": 11}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44279251416c7502a9d3", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.5, "runtime": 121}, "11329": {"poster_path": "/dWq7p5HmfZAphAMikFARr1cJ6IN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80154140, "overview": "A juror on the inside and a woman on the outside manipulate a court trial involving a major gun manufacturer.", "video": false, "id": 11329, "genres": [{"id": 18, "name": "Drama"}], "title": "Runaway Jury", "tagline": "Trials are too important to be decided by juries.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt0313542", "adult": false, "backdrop_path": "/mSFzYuqATKYAXIVgk6nPqyk59J7.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2003-10-09", "popularity": 0.702250412689117, "original_title": "Runaway Jury", "budget": 60000000, "cast": [{"name": "John Cusack", "character": "Nicholas Easter", "id": 3036, "credit_id": "52fe44279251416c7502ab2f", "cast_id": 13, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Rankin Fitch", "id": 193, "credit_id": "52fe44279251416c7502ab33", "cast_id": 14, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Wendell Rohr", "id": 4483, "credit_id": "52fe44279251416c7502ab37", "cast_id": 15, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Rachel Weisz", "character": "Marlee", "id": 3293, "credit_id": "52fe44279251416c7502ab3b", "cast_id": 16, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Judge Harkin", "id": 14888, "credit_id": "52fe44279251416c7502ab3f", "cast_id": 17, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Bruce Davison", "character": "Durwood Cable", "id": 52374, "credit_id": "52fe44279251416c7502ab43", "cast_id": 18, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 5}, {"name": "Jeremy Piven", "character": "Lawrence Green", "id": 12799, "credit_id": "52fe44279251416c7502ab47", "cast_id": 19, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 6}, {"name": "Nick Searcy", "character": "Doyle", "id": 12538, "credit_id": "53660c9b0e0a2647d1002dc8", "cast_id": 20, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 7}, {"name": "Stanley Anderson", "character": "Henry Jankle", "id": 15253, "credit_id": "53660cc60e0a2647db002e02", "cast_id": 21, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 8}, {"name": "Nestor Serrano", "character": "Janovich", "id": 14331, "credit_id": "53660d280e0a2647d4002d23", "cast_id": 23, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 10}, {"name": "Cliff Curtis", "character": "Frank Herrera", "id": 7248, "credit_id": "53660d530e0a2647c4002f5b", "cast_id": 24, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 11}, {"name": "Leland Orser", "character": "Lamb", "id": 2221, "credit_id": "53660da80e0a2647d8002f10", "cast_id": 25, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 12}, {"name": "Jennifer Beals", "character": "Vanessa Lembeck", "id": 3130, "credit_id": "53660dcd0e0a2647c8002f77", "cast_id": 26, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 13}, {"name": "Joanna Going", "character": "Celeste Wood", "id": 59662, "credit_id": "53a4a6e20e0a26144500020e", "cast_id": 27, "profile_path": "/8wPmJGGj4HEUfaYzYjoL1AzOSlf.jpg", "order": 14}], "directors": [{"name": "Gary Fleder", "department": "Directing", "job": "Director", "credit_id": "52fe44279251416c7502aae9", "profile_path": "/rRxdnJbRT8Ygg8KNpdoxULszClx.jpg", "id": 5501}], "vote_average": 6.7, "runtime": 127}, "11336": {"poster_path": "/nfGUupEUffOkNyuQBN7Pp5hhqTU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee's home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.", "video": false, "id": 11336, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Dead Zone", "tagline": "In his mind, he has the power to see the future. In his hands, he has the power to change it.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085407", "adult": false, "backdrop_path": "/7LRuImFC4NKxutT3yvdqxinEXjo.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lorimar Film Entertainment", "id": 1176}, {"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "1983-10-21", "popularity": 0.160437098300941, "original_title": "The Dead Zone", "budget": 10000000, "cast": [{"name": "Christopher Walken", "character": "Johnny Smith", "id": 4690, "credit_id": "52fe44299251416c7502ae31", "cast_id": 1, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 0}, {"name": "Brooke Adams", "character": "Sarah Bracknell", "id": 69054, "credit_id": "52fe44299251416c7502ae35", "cast_id": 2, "profile_path": "/l0SXHIA1T6aX61YJTLz5HntjmFg.jpg", "order": 1}, {"name": "Tom Skerritt", "character": "Sheriff George Bannerman", "id": 4139, "credit_id": "52fe44299251416c7502ae39", "cast_id": 3, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 2}, {"name": "Martin Sheen", "character": "Greg Stillson", "id": 8349, "credit_id": "52fe44299251416c7502ae3d", "cast_id": 4, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 3}, {"name": "Herbert Lom", "character": "Dr. Sam Weizak", "id": 14503, "credit_id": "52fe44299251416c7502ae71", "cast_id": 14, "profile_path": "/uPQNrZvgfAJNUAAYjmDubMmKEZ5.jpg", "order": 4}, {"name": "Anthony Zerbe", "character": "Roger Stuart", "id": 2516, "credit_id": "52fe44299251416c7502ae75", "cast_id": 15, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 5}, {"name": "Colleen Dewhurst", "character": "Henrietta Dodd", "id": 10559, "credit_id": "52fe44299251416c7502ae79", "cast_id": 16, "profile_path": "/2dALCygtziRLWRZx0CH0IFLJGAn.jpg", "order": 6}, {"name": "Nicholas Campbell", "character": "Frank Dodd", "id": 14902, "credit_id": "52fe44299251416c7502ae7d", "cast_id": 17, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 7}, {"name": "William B. Davis", "character": "Ambulance Driver", "id": 12643, "credit_id": "52fe44299251416c7502ae81", "cast_id": 18, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 8}, {"name": "Ram\u00f3n Est\u00e9vez", "character": "Teenage Boy with Camera", "id": 104489, "credit_id": "52fe44299251416c7502ae85", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Sean Sullivan", "character": "Herb Smith", "id": 252, "credit_id": "52fe44299251416c7502ae89", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jackie Burroughs", "character": "Vera Smith", "id": 61185, "credit_id": "52fe44299251416c7502ae8d", "cast_id": 21, "profile_path": "/6Fo0MPMTiDng8rS9d7PG6X7avFX.jpg", "order": 11}, {"name": "G\u00e9za Kov\u00e1cs", "character": "Sonny Elliman", "id": 1081827, "credit_id": "52fe44299251416c7502ae91", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Roberta Weiss", "character": "Alma Frechette", "id": 243939, "credit_id": "52fe44299251416c7502ae95", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Peter Dvorsky", "character": "Dardis", "id": 12483, "credit_id": "52fe44299251416c7502ae99", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Barry Flatman", "character": "Walt", "id": 43429, "credit_id": "52fe44299251416c7502ae9d", "cast_id": 25, "profile_path": "/bRFwheAG7219yIbmVfrdqAMVhcI.jpg", "order": 15}, {"name": "Cindy Hinds", "character": "Natalie", "id": 103864, "credit_id": "52fe44299251416c7502aea1", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "David Rigby", "character": "Truck Driver", "id": 982406, "credit_id": "52fe44299251416c7502aea9", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Helene Udy", "character": "Weizak's Mother", "id": 133800, "credit_id": "543ffbd50e0a26027300014a", "cast_id": 29, "profile_path": "/A44EUYsJnqw8xwdfwp8yequmKc8.jpg", "order": 19}, {"name": "Roger Dunn", "character": "Reporters", "id": 1351508, "credit_id": "54ff7bcec3a3685ba6000643", "cast_id": 38, "profile_path": null, "order": 20}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe44299251416c7502ae43", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.5, "runtime": 103}, "44115": {"poster_path": "/c6Nu7UjhGCQtV16WXabqOQfikK6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35692920, "overview": "127 Hours is the true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah. Over the next five days Ralston examines his life and survives the elements to finally discover he has the courage and the wherewithal to extricate himself by any means necessary, scale a 65 foot wall and hike over eight miles before he is finally rescued. Throughout his journey, Ralston recalls friends, lovers, family, and the two hikers he met before his accident. Will they be the last two people he ever had the chance to meet?", "video": false, "id": 44115, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "127 Hours", "tagline": "There is no force more powerful than the will to live.", "vote_count": 751, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1542344", "adult": false, "backdrop_path": "/eHUoB8NbvrvKp7KQMNgvc7yLpzM.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Path\u00e9", "id": 7981}, {"name": "Everest Entertainment", "id": 10892}, {"name": "Cloud Eight Films", "id": 6708}, {"name": "Decibel Films", "id": 8286}, {"name": "Darlow Smithson Productions", "id": 2015}, {"name": "Dune Entertainment", "id": 444}, {"name": "Big Screen Productions", "id": 10893}], "release_date": "2010-11-05", "popularity": 1.46121318384635, "original_title": "127 Hours", "budget": 18000000, "cast": [{"name": "James Franco", "character": "Aron Ralston", "id": 17051, "credit_id": "52fe4677c3a36847f8100abf", "cast_id": 2, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Kate Mara", "character": "Christie", "id": 51072, "credit_id": "52fe4677c3a36847f8100ac3", "cast_id": 8, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 1}, {"name": "Amber Tamblyn", "character": "Megan", "id": 20354, "credit_id": "52fe4677c3a36847f8100ac7", "cast_id": 9, "profile_path": "/4nwsbtFzoxzN2YF2HOW4P4vdit2.jpg", "order": 2}, {"name": "Sean Bott", "character": "Aaron's Friend", "id": 142182, "credit_id": "52fe4677c3a36847f8100acb", "cast_id": 10, "profile_path": "/bR2mxZXLOcKKEiaMO1vNnU4ZN9c.jpg", "order": 3}, {"name": "Koleman Stinger", "character": "Aaron Age 5", "id": 142183, "credit_id": "52fe4677c3a36847f8100acf", "cast_id": 11, "profile_path": "/iHN1K8TNN8v0FA10sIK03UlAaX1.jpg", "order": 4}, {"name": "Treat Williams", "character": "Aaron's Dad", "id": 4515, "credit_id": "52fe4677c3a36847f8100ad3", "cast_id": 12, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 5}, {"name": "Kate Burton", "character": "Aaron's Mom", "id": 20879, "credit_id": "52fe4677c3a36847f8100ad7", "cast_id": 14, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 6}, {"name": "Bailee Michelle Johnson", "character": "Sonja Age 10", "id": 142184, "credit_id": "52fe4677c3a36847f8100adb", "cast_id": 15, "profile_path": "/bB98FpXpnoZsmG0W8o4NBKZQnqx.jpg", "order": 7}, {"name": "Rebecca C. Olson", "character": "Monique Meijer", "id": 142185, "credit_id": "52fe4677c3a36847f8100adf", "cast_id": 16, "profile_path": "/jELR1nx5w0dFaFkq33MeMl4Zaxq.jpg", "order": 8}, {"name": "Parker Hadley", "character": "Aaron age 15", "id": 60467, "credit_id": "52fe4677c3a36847f8100ae3", "cast_id": 17, "profile_path": "/4XbL4cLG590TuAj4XfiXCi4TcHs.jpg", "order": 9}, {"name": "Fenton Quinn", "character": "Blue John", "id": 63484, "credit_id": "52fe4677c3a36847f8100ae7", "cast_id": 19, "profile_path": "/qncZNh1lbKYqxXNLQGTohRf7I1z.jpg", "order": 10}, {"name": "Lizzy Caplan", "character": "Sonja Ralston", "id": 51988, "credit_id": "52fe4677c3a36847f8100aeb", "cast_id": 20, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 11}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Rana", "id": 11291, "credit_id": "52fe4677c3a36847f8100b01", "cast_id": 24, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 12}, {"name": "John Lawrence", "character": "Brian", "id": 1178035, "credit_id": "52fe4677c3a36847f8100b65", "cast_id": 42, "profile_path": "/oWRpCkQqQID9qssui93sqhTxmgz.jpg", "order": 13}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4677c3a36847f8100abb", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.8, "runtime": 94}, "8834": {"poster_path": "/pJi8zosVnrIyfZDDsLmrNvX84QG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136982834, "overview": "A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.", "video": false, "id": 8834, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Conspiracy Theory", "tagline": "What if your most paranoid nightmares had just come true?", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118883", "adult": false, "backdrop_path": "/qvShPytEWjFFdcpA6c7LN0wetaV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}, {"name": "Donner/Shuler-Donner Productions", "id": 23397}], "release_date": "1997-08-07", "popularity": 1.03146679354918, "original_title": "Conspiracy Theory", "budget": 75000000, "cast": [{"name": "Mel Gibson", "character": "Jerry Fletcher", "id": 2461, "credit_id": "52fe44bbc3a36847f80a6f75", "cast_id": 9, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Alice Sutton", "id": 1204, "credit_id": "52fe44bbc3a36847f80a6f79", "cast_id": 10, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Patrick Stewart", "character": "Dr. Jonas", "id": 2387, "credit_id": "52fe44bbc3a36847f80a6f7d", "cast_id": 11, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 2}, {"name": "Cylk Cozart", "character": "Agent Lowry", "id": 56040, "credit_id": "52fe44bbc3a36847f80a6f81", "cast_id": 12, "profile_path": "/9jjnxj9Rhn5MRsTbkvitwUWIbG2.jpg", "order": 3}, {"name": "Steve Kahan", "character": "Mr. Wilson", "id": 14328, "credit_id": "52fe44bbc3a36847f80a6f85", "cast_id": 13, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 4}, {"name": "Terry Alexander", "character": "Flip", "id": 54854, "credit_id": "52fe44bbc3a36847f80a6f89", "cast_id": 14, "profile_path": "/uao9PqvUYOiJPoGbMxL0DmKqna4.jpg", "order": 5}, {"name": "Alex McArthur", "character": "Cynic", "id": 58293, "credit_id": "52fe44bbc3a36847f80a6f8d", "cast_id": 15, "profile_path": "/aYA5RdEffj4qPz8E647UByWyp5x.jpg", "order": 6}, {"name": "Rod McLachlan", "character": "Justice Guard", "id": 155560, "credit_id": "52fe44bbc3a36847f80a6f91", "cast_id": 16, "profile_path": "/rwsfhaAKON4I5KxugffiYlXlyjA.jpg", "order": 7}, {"name": "Michael Potts", "character": "Justice Guard", "id": 167566, "credit_id": "52fe44bbc3a36847f80a6f95", "cast_id": 17, "profile_path": "/9aZNXxYHvBSuavENRHu0UQVXJW9.jpg", "order": 8}, {"name": "Jim Sterling", "character": "Justice Guard", "id": 164002, "credit_id": "52fe44bbc3a36847f80a6f99", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Rich Hebert", "character": "Public Works Man", "id": 177247, "credit_id": "52fe44bbc3a36847f80a6f9d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Brian J. Williams", "character": "Clarke", "id": 203950, "credit_id": "52fe44bbc3a36847f80a6fa1", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "G.A. Aguilar", "character": "Piper", "id": 1074163, "credit_id": "52fe44bbc3a36847f80a6fa5", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Cece Neber Labao", "character": "Henry Finch's Secretary", "id": 1074164, "credit_id": "52fe44bbc3a36847f80a6fa9", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Saxon Trainor", "character": "Alice's Secretary", "id": 42721, "credit_id": "52fe44bbc3a36847f80a6fad", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe44bbc3a36847f80a6f47", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.2, "runtime": 135}, "11355": {"poster_path": "/1F9EAhEQxa0I5Pa5Z10hWIBFS3r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84565230, "overview": "Josie Geller, a baby-faced junior copywriter at the Chicago Sun-Times, must pose as a student at her former high school to research contemporary teenage culture. With the help of her brother, Rob, Josie infiltrates the inner circle of the most popular clique on campus. But she hits a major snag in her investigation -- not to mention her own failed love life -- when she falls for her dreamy English teacher, Sam Coulson.", "video": false, "id": 11355, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Never Been Kissed", "tagline": "A Comedy With Class.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0151738", "adult": false, "backdrop_path": "/zffzhr30v7nCHRcyfnVr8PmNLbM.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Bushwood Pictures", "id": 21241}, {"name": "Flower Films (II)", "id": 19813}, {"name": "Never Been Kissed Productions", "id": 21242}], "release_date": "1999-04-09", "popularity": 0.600429377271696, "original_title": "Never Been Kissed", "budget": 25000000, "cast": [{"name": "Drew Barrymore", "character": "Josie Geller", "id": 69597, "credit_id": "52fe442f9251416c7502bbd3", "cast_id": 10, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "David Arquette", "character": "Rob Geller", "id": 15234, "credit_id": "52fe442f9251416c7502bbd7", "cast_id": 11, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 1}, {"name": "Michael Vartan", "character": "Sam Coulson", "id": 15424, "credit_id": "52fe442f9251416c7502bbdb", "cast_id": 12, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 2}, {"name": "Molly Shannon", "character": "Anita", "id": 28640, "credit_id": "52fe442f9251416c7502bbdf", "cast_id": 13, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 3}, {"name": "Jenny Bicks", "character": "Miss Haskell", "id": 66962, "credit_id": "52fe442f9251416c7502bbe3", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Jessica Alba", "character": "Kirsten", "id": 56731, "credit_id": "52fe442f9251416c7502bbe7", "cast_id": 15, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 5}, {"name": "John C. Reilly", "character": "Gus", "id": 4764, "credit_id": "52fe442f9251416c7502bbeb", "cast_id": 16, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 6}, {"name": "James Franco", "character": "Jason", "id": 17051, "credit_id": "52fe442f9251416c7502bbef", "cast_id": 17, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 7}, {"name": "Octavia Spencer", "character": "Cynthia", "id": 6944, "credit_id": "52fe442f9251416c7502bbf3", "cast_id": 18, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 8}, {"name": "Garry Marshall", "character": "Rigfort", "id": 1201, "credit_id": "53342311c3a3682a8e001eb0", "cast_id": 19, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 9}, {"name": "Sean Whalen", "character": "Merkin", "id": 9996, "credit_id": "53342328c3a3682aac001e4b", "cast_id": 20, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 10}, {"name": "Cress Williams", "character": "George", "id": 157847, "credit_id": "5334233ac3a3680a1e0018dd", "cast_id": 21, "profile_path": "/wgdfCdEtiw4T9XhsLp4XNhQKClB.jpg", "order": 11}, {"name": "Sarah DeVincentis", "character": "Rhoda", "id": 79649, "credit_id": "53342350c3a3682a8e001eb3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Allen Covert", "character": "Roger in Op-Ed", "id": 20818, "credit_id": "53342362c3a3682a87001fa1", "cast_id": 23, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 13}, {"name": "Rock Reiser", "character": "Dutton", "id": 149770, "credit_id": "53342372c3a3682abb001e7e", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "David Doty", "character": "Hairplug Bruns", "id": 124086, "credit_id": "53342380c3a3680a1e0018e1", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Derek Morgan", "character": "Armcast Henson", "id": 944953, "credit_id": "53342391c3a3682abb001e83", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Kathleen Marshall", "character": "Sun-Times Worker", "id": 303542, "credit_id": "533423a2c3a3682ab5001e86", "cast_id": 27, "profile_path": "/zaS1vOZ0HRIwPSibns1WJLeQrvw.jpg", "order": 17}, {"name": "Leelee Sobieski", "character": "Aldys", "id": 22290, "credit_id": "5508da389251413066001eb9", "cast_id": 28, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 18}, {"name": "Marley Shelton", "character": "Kristin", "id": 6407, "credit_id": "5508da589251413c71000b42", "cast_id": 29, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 19}, {"name": "Jordan Ladd", "character": "Gibby", "id": 20492, "credit_id": "5508da8492514110da00248b", "cast_id": 30, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 20}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe442f9251416c7502bb9f", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.6, "runtime": 107}, "109491": {"poster_path": "/77bAKEVH0FMb7J7SDZ3Xr52raEk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60052138, "overview": "Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena's 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.", "video": false, "id": 109491, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Beautiful Creatures", "tagline": "Dark secrets will come to light.", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1559547", "adult": false, "backdrop_path": "/nNLXwveZGi4Dk90Ogw47B4jQVyG.jpg", "production_companies": [{"name": "Warner Bros. Entertainment", "id": 17}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Belle Pictures", "id": 32184}], "release_date": "2013-02-15", "popularity": 1.11482509506592, "original_title": "Beautiful Creatures", "budget": 60000000, "cast": [{"name": "Emmy Rossum", "character": "Ridley Duchaness", "id": 4730, "credit_id": "52fe4abbc3a36847f81de8c3", "cast_id": 5, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Macon Ravenwood", "id": 16940, "credit_id": "52fe4abbc3a36847f81de8c7", "cast_id": 6, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "Emma Thompson", "character": "Mrs. Lincoln", "id": 7056, "credit_id": "52fe4abbc3a36847f81de8cb", "cast_id": 7, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 2}, {"name": "Viola Davis", "character": "Amma", "id": 19492, "credit_id": "52fe4abbc3a36847f81de8cf", "cast_id": 8, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 3}, {"name": "Kyle Gallner", "character": "Larkin Ravenwood", "id": 59219, "credit_id": "52fe4abbc3a36847f81de8d3", "cast_id": 9, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 4}, {"name": "Alice Englert", "character": "Lena Duchannes", "id": 587823, "credit_id": "52fe4abbc3a36847f81de8d7", "cast_id": 10, "profile_path": "/xfUWs2eRLrjsq9zStFBsq0G3k7s.jpg", "order": 5}, {"name": "Thomas Mann", "character": "Link", "id": 1142720, "credit_id": "52fe4abbc3a36847f81de8db", "cast_id": 11, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 6}, {"name": "Alden Ehrenreich", "character": "Ethan Wate", "id": 71375, "credit_id": "52fe4abbc3a36847f81de8df", "cast_id": 12, "profile_path": "/zJr5mpATjAxiJ1BRucMABJdys82.jpg", "order": 7}, {"name": "Margo Martindale", "character": "Aunt Del", "id": 452, "credit_id": "52fe4abbc3a36847f81de8e3", "cast_id": 13, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 8}, {"name": "Zoey Deutch", "character": "Emily Asher", "id": 1059597, "credit_id": "52fe4abbc3a36847f81de8e7", "cast_id": 14, "profile_path": "/9R7EQhJ4phu4FWdLhCzEobfNnXf.jpg", "order": 9}, {"name": "Rachel Brosnahan", "character": "Genevieve Duchannes", "id": 993774, "credit_id": "52fe4abbc3a36847f81de8eb", "cast_id": 15, "profile_path": "/ySfFf8MMfj2Unw0wBl1u2CMDVYV.jpg", "order": 10}], "directors": [{"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4abbc3a36847f81de8ad", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}], "vote_average": 5.6, "runtime": 124}, "11358": {"poster_path": "/mgYJjfWiuL2jPbypv1ICnd9JSCs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46123824, "overview": "A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.", "video": false, "id": 11358, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Walking Tall", "tagline": "One man will stand up for what's right.", "vote_count": 107, "homepage": "http://www.mgm.com/view/Movie/2113/Walking-Tall/home.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wdk59P3cjnx8w78o1K5pos0yUgN.jpg", "id": 299748, "name": "Walking Tall Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0351977", "adult": false, "backdrop_path": "/9a3lNFkZbOoQwSRhEDAOfzasi3o.jpg", "production_companies": [{"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Mandeville Films", "id": 10227}, {"name": "Burke/Samples/Foster Productions", "id": 23938}, {"name": "WWE Studios", "id": 10339}, {"name": "Cub Eight Productions", "id": 23940}], "release_date": "2004-04-02", "popularity": 0.941378880536355, "original_title": "Walking Tall", "budget": 56000000, "cast": [{"name": "Dwayne Johnson", "character": "Chris Vaughn", "id": 18918, "credit_id": "52fe44309251416c7502bd67", "cast_id": 15, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Johnny Knoxville", "character": "Ray Templeton", "id": 9656, "credit_id": "52fe44309251416c7502bd6b", "cast_id": 16, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 1}, {"name": "Neal McDonough", "character": "Jay Hamilton", "id": 2203, "credit_id": "52fe44309251416c7502bd6f", "cast_id": 17, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 2}, {"name": "Kristen Wilson", "character": "Michelle Vaughn", "id": 31029, "credit_id": "52fe44309251416c7502bd73", "cast_id": 18, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 3}, {"name": "Cobie Smulders", "character": "Exotic Beauty", "id": 71189, "credit_id": "52fe44309251416c7502bd7d", "cast_id": 20, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 4}, {"name": "Michael Bowen", "character": "Sheriff Stan Watkins", "id": 2234, "credit_id": "52fe44309251416c7502bd81", "cast_id": 21, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 5}, {"name": "Ashley Scott", "character": "Deni", "id": 71128, "credit_id": "52fe44309251416c7502bd85", "cast_id": 22, "profile_path": "/pHQXzpZbb1T5HobppWZtIMbjyIC.jpg", "order": 6}, {"name": "John Beasley", "character": "Chris Vaughn Sr.", "id": 38571, "credit_id": "52fe44309251416c7502bd89", "cast_id": 23, "profile_path": "/mboK7DsL33Ulmoj6LwJIfJKV5tu.jpg", "order": 7}, {"name": "Barbara Tarbuck", "character": "Connie Vaughn", "id": 31391, "credit_id": "52fe44309251416c7502bd8d", "cast_id": 24, "profile_path": "/i7at1EiZ8DLQB8AVi3NwZ7Yv5BC.jpg", "order": 8}, {"name": "Kristen Wilson", "character": "Michelle Vaughn", "id": 31029, "credit_id": "52fe44309251416c7502bd91", "cast_id": 25, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 9}, {"name": "Khleo Thomas", "character": "Pete Vaughn", "id": 54495, "credit_id": "52fe44309251416c7502bd95", "cast_id": 26, "profile_path": "/3SXGiCUQfrGNPJABrTaDuzo1Ibe.jpg", "order": 10}, {"name": "Kevin Durand", "character": "Booth", "id": 79072, "credit_id": "53e7cc820e0a266f97002475", "cast_id": 35, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 11}], "directors": [{"name": "Kevin Bray", "department": "Directing", "job": "Director", "credit_id": "52fe442f9251416c7502bd1b", "profile_path": "/npkd2oUXtUvNPTfN4YDIMsXKznm.jpg", "id": 34453}], "vote_average": 6.3, "runtime": 86}, "14181": {"poster_path": "/ciRwkOEfDjZxa5chxB5Nnw1lxsF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28780255, "overview": "A college dropout gets a job as a broker for a suburban investment firm, which puts him on the fast track to success, but the job might not be as legitimate as it sounds.", "video": false, "id": 14181, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Boiler Room", "tagline": "Welcome to the new American dream.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0181984", "adult": false, "backdrop_path": "/8uXj6bhduUMCcAm4OalDMHOUkt3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2000-02-18", "popularity": 0.41178920772729, "original_title": "Boiler Room", "budget": 26000000, "cast": [{"name": "Giovanni Ribisi", "character": "Seth Davis", "id": 1771, "credit_id": "52fe45d59251416c7506402b", "cast_id": 1, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Chris Varick", "id": 12835, "credit_id": "52fe45d59251416c7506402f", "cast_id": 2, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Nia Long", "character": "Abbie Halpert", "id": 9781, "credit_id": "52fe45d59251416c75064033", "cast_id": 3, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 2}, {"name": "Tom Everett Scott", "character": "Michael Brantley", "id": 16857, "credit_id": "52fe45d59251416c75064037", "cast_id": 4, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 3}, {"name": "Ben Affleck", "character": "Jim Young", "id": 880, "credit_id": "52fe45d59251416c7506403b", "cast_id": 5, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 4}, {"name": "Nicky Katt", "character": "Greg Weinstein", "id": 18070, "credit_id": "52fe45d59251416c75064045", "cast_id": 7, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 5}, {"name": "Scott Caan", "character": "Richie O'Flaherty", "id": 1894, "credit_id": "52fe45d59251416c75064049", "cast_id": 8, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "Ron Rifkin", "character": "Judge Marty Davis", "id": 12122, "credit_id": "52fe45d59251416c7506404d", "cast_id": 9, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 7}, {"name": "Jamie Kennedy", "character": "Adam", "id": 6213, "credit_id": "52fe45d59251416c75064051", "cast_id": 10, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 8}, {"name": "Kirk Acevedo", "character": "Broker", "id": 55861, "credit_id": "52fe45d59251416c75064055", "cast_id": 11, "profile_path": "/9CTkCXyKQrHTFZWFN3JtDM2mF0U.jpg", "order": 9}, {"name": "Siobhan Fallon", "character": "Michelle", "id": 6751, "credit_id": "52fe45d59251416c7506405f", "cast_id": 13, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 10}], "directors": [{"name": "Ben Younger", "department": "Directing", "job": "Director", "credit_id": "52fe45d59251416c75064041", "profile_path": "/7KzvNpsJT4qHV4owEMBvnMMfIdH.jpg", "id": 24294}], "vote_average": 6.3, "runtime": 118}, "11360": {"poster_path": "/r5IqhwZ61OuKlsyDwvXWyWQZK30.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1600000, "overview": "Dumbo is a baby elephant born with oversized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy -- Timothy the Mouse -- the pint-sized pachyderm learns to surmount all obstacles.", "video": false, "id": 11360, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Dumbo", "tagline": "The One...The Only...The FABULOUS...", "vote_count": 257, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0033563", "adult": false, "backdrop_path": "/sa5vHfu5n4NFqZbVf2hzqGr6bim.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1941-10-23", "popularity": 1.42058233895123, "original_title": "Dumbo", "budget": 812000, "cast": [{"name": "Sterling Holloway", "character": "Mr. Stork (voice)", "id": 34759, "credit_id": "52fe44309251416c7502be55", "cast_id": 10, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 1}, {"name": "Herman Bing", "character": "The Ringmaster (voice)", "id": 9084, "credit_id": "52fe44309251416c7502be59", "cast_id": 11, "profile_path": "/1cb3BsqWkFUoz5dBFEtbhaSKAa7.jpg", "order": 2}, {"name": "John McLeish", "character": "Narrator (voice)", "id": 69136, "credit_id": "52fe44309251416c7502be5d", "cast_id": 12, "profile_path": "/7tNWyT3FFY1tigZC1kdgKlH9nTY.jpg", "order": 3}, {"name": "Edward Brophy", "character": "Timothy Q. Mouse (voice)", "id": 32437, "credit_id": "52fe44309251416c7502be61", "cast_id": 13, "profile_path": "/7VZfkNrqLAm4XqHoySAogIRVuDD.jpg", "order": 4}, {"name": "James Baskett", "character": "Crow (voice)", "id": 535025, "credit_id": "52fe44309251416c7502be65", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Billy Bletcher", "character": "Clown (voice)", "id": 31771, "credit_id": "52fe44309251416c7502be69", "cast_id": 15, "profile_path": "/oSVlEOCgrHdYl7OifMxDffIUhHC.jpg", "order": 6}, {"name": "Jim Carmichael", "character": "Crow (voice)", "id": 222315, "credit_id": "52fe44309251416c7502be6d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Hall Johnson Choir", "character": "Choral Sounds", "id": 1046804, "credit_id": "52fe44309251416c7502be71", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Cliff Edwards", "character": "Jim Crow (voice)", "id": 30236, "credit_id": "52fe44309251416c7502be75", "cast_id": 18, "profile_path": "/kbWXXmugxdX3rOEa0hUlJWHZ9pA.jpg", "order": 9}, {"name": "Verna Felton", "character": "The Elephant Matriarch / Mrs. Jumbo (voice)", "id": 67290, "credit_id": "52fe44309251416c7502be79", "cast_id": 19, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 10}, {"name": "Noreen Gammill", "character": "Catty the Elephant (voice)", "id": 193820, "credit_id": "52fe44309251416c7502be7d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Eddie Holden", "character": "Clown (voice)", "id": 227460, "credit_id": "52fe44309251416c7502be81", "cast_id": 21, "profile_path": "/8ObfPqjXG4ieuvpCpcRul5w2rEB.jpg", "order": 12}, {"name": "Malcolm Hutton", "character": "Skinny (voice)", "id": 951504, "credit_id": "52fe44309251416c7502be85", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "The King's Men", "character": "Choral Effects", "id": 142531, "credit_id": "52fe44309251416c7502be89", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Harold Manley", "character": "Boy (voice)", "id": 1097241, "credit_id": "52fe44309251416c7502be8d", "cast_id": 24, "profile_path": null, "order": 15}], "directors": [{"name": "Ben Sharpsteen", "department": "Directing", "job": "Director", "credit_id": "52fe44309251416c7502be27", "profile_path": "/1dfzGLuG0n4IeR6ONjAFuhh8Kli.jpg", "id": 11426}], "vote_average": 6.2, "runtime": 64}, "44129": {"poster_path": "/xP1FWgiUT1v1GGCwd94hXLaHyg8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4882577, "overview": "Bobby Walker is living the proverbial American dream: great job, beautiful family, shiny Porsche in the garage. When corporate downsizing leaves him and co-workers Phil Woodward and Gene McClary jobless, the three men are forced to re-define their lives as men, husbands and fathers.", "video": false, "id": 44129, "genres": [{"id": 18, "name": "Drama"}], "title": "The Company Men", "tagline": "In America, we give our lives to our jobs. It's time to take them back.", "vote_count": 69, "homepage": "http://www.companymenmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1172991", "adult": false, "backdrop_path": "/7U5ORIO4QUL56EFnt0mV6C1SCze.jpg", "production_companies": [{"name": "Battle Mountain Films", "id": 7288}, {"name": "Spring Creek Productions", "id": 705}], "release_date": "2010-10-21", "popularity": 0.821315545462664, "original_title": "The Company Men", "budget": 15000000, "cast": [{"name": "Ben Affleck", "character": "Bobby Walker", "id": 880, "credit_id": "52fe4678c3a36847f8100dd3", "cast_id": 2, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Gene McClary", "id": 2176, "credit_id": "52fe4678c3a36847f8100ddf", "cast_id": 5, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Phil Woodward", "id": 2955, "credit_id": "52fe4678c3a36847f8100de3", "cast_id": 6, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Kevin Costner", "character": "Jack Dolan", "id": 1269, "credit_id": "52fe4678c3a36847f8100dd7", "cast_id": 3, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 3}, {"name": "Maria Bello", "character": "Sally Wilcox", "id": 49, "credit_id": "52fe4678c3a36847f8100ddb", "cast_id": 4, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 4}, {"name": "Rosemarie DeWitt", "character": "Maggie Walker", "id": 14892, "credit_id": "52fe4678c3a36847f8100e23", "cast_id": 26, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Conal Doherty", "id": 8977, "credit_id": "52fe4678c3a36847f8100de7", "cast_id": 7, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Eamonn Walker", "character": "Danny", "id": 19299, "credit_id": "549d1886c3a368764f000fb2", "cast_id": 28, "profile_path": "/9vuNtg6IGlUNFOurojwkYThKnvd.jpg", "order": 7}, {"name": "Tom Kemp", "character": "Conal Doherty", "id": 58333, "credit_id": "52fe4678c3a36847f8100deb", "cast_id": 14, "profile_path": "/iQ3etbD6KycVsVK3VSCatpTBeZr.jpg", "order": 8}, {"name": "Nancy Villone", "character": "Diane Lindstrom", "id": 141451, "credit_id": "52fe4678c3a36847f8100def", "cast_id": 15, "profile_path": "/vNhZW5op8tXnaoiGkCGESS7dzQI.jpg", "order": 9}, {"name": "Patricia Kalember", "character": "Cynthia McClary", "id": 23627, "credit_id": "52fe4678c3a36847f8100e27", "cast_id": 27, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 10}], "directors": [{"name": "John Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4678c3a36847f8100e1f", "profile_path": "/rpVdPsbj7QLJ0VRRDmhPcYoF6m0.jpg", "id": 47333}], "vote_average": 6.5, "runtime": 104}, "11362": {"poster_path": "/u1tLUDAMjOutrnSCyDhiiyZs50L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75395048, "overview": "Edmond Dant\u00e9s's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dant\u00e9s escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.", "video": false, "id": 11362, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Count of Monte Cristo", "tagline": "Prepare for adventure. Count on revenge.", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245844", "adult": false, "backdrop_path": "/79RWu5NGhRMJqgrnSgQiOb5nNkK.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "World 2000 Entertainment", "id": 7692}, {"name": "Count of Monte Cristo Ltd.", "id": 7693}], "release_date": "2002-01-23", "popularity": 0.543515304545366, "original_title": "The Count of Monte Cristo", "budget": 0, "cast": [{"name": "Jim Caviezel", "character": "Edmond Dantes", "id": 8767, "credit_id": "52fe44319251416c7502bf6b", "cast_id": 17, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Fernand Mondego", "id": 529, "credit_id": "52fe44309251416c7502bf23", "cast_id": 2, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Richard Harris", "character": "Abb\u00e9 Faria", "id": 194, "credit_id": "52fe44309251416c7502bf27", "cast_id": 3, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 2}, {"name": "James Frain", "character": "J.F. Villefort", "id": 22063, "credit_id": "52fe44309251416c7502bf2b", "cast_id": 4, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 3}, {"name": "Dagmara Domi\u0144czyk", "character": "Merced\u00e8s Iguanada", "id": 52776, "credit_id": "52fe44309251416c7502bf53", "cast_id": 11, "profile_path": "/wQ15ftdMUkwt281XZYBhyHAci0z.jpg", "order": 4}, {"name": "Michael Wincott", "character": "Armand Dorleac", "id": 7486, "credit_id": "52fe44319251416c7502bf57", "cast_id": 12, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 5}, {"name": "Luis Guzm\u00e1n", "character": "Jacopo", "id": 40481, "credit_id": "52fe44319251416c7502bf5b", "cast_id": 13, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 6}, {"name": "Christopher Adamson", "character": "Maurice", "id": 64102, "credit_id": "52fe44319251416c7502bf5f", "cast_id": 14, "profile_path": "/8yLz3515hR5RgjeH0kbGcjSYylO.jpg", "order": 7}, {"name": "J. B. Blanc", "character": "Luigi Vampa", "id": 136152, "credit_id": "52fe44319251416c7502bf63", "cast_id": 15, "profile_path": "/6P15QAzQKhaaE60LMsyepnbdrjS.jpg", "order": 8}, {"name": "Henry Cavill", "character": "Albert Mondego", "id": 73968, "credit_id": "52fe44319251416c7502bf67", "cast_id": 16, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 9}], "directors": [{"name": "Kevin Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe44309251416c7502bf31", "profile_path": "/drxXtPvCxVtw0VLn1on073OrW9s.jpg", "id": 8300}], "vote_average": 7.0, "runtime": 131}, "3172": {"poster_path": "/3wTzOr0CekiBJZL7ZiNE2y2H16N.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67631903, "overview": "Two bank robbers fall in love with the girl they've kidnapped.", "video": false, "id": 3172, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "Bandits", "tagline": "Two's Company, Three's A Crime.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0219965", "adult": false, "backdrop_path": "/k86wUuUvPVZvM3zwxEhImpfyLq0.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Parkway Productions", "id": 1350}], "release_date": "2001-10-12", "popularity": 0.528632466849428, "original_title": "Bandits", "budget": 75000000, "cast": [{"name": "Bruce Willis", "character": "Joshep Blake", "id": 62, "credit_id": "52fe438cc3a36847f805cb53", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Billy Bob Thornton", "character": "Terry Lee Collins", "id": 879, "credit_id": "52fe438cc3a36847f805cb57", "cast_id": 2, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 1}, {"name": "Cate Blanchett", "character": "Kate Wheeler", "id": 112, "credit_id": "52fe438cc3a36847f805cb5b", "cast_id": 3, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 2}, {"name": "Troy Garity", "character": "Harvey Pollard", "id": 31711, "credit_id": "52fe438cc3a36847f805cbb3", "cast_id": 18, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 3}, {"name": "William Converse-Roberts", "character": "Charles Wheeler", "id": 31712, "credit_id": "52fe438cc3a36847f805cbb7", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Br\u00edan F. O'Byrne", "character": "Darill Miller", "id": 31713, "credit_id": "52fe438cc3a36847f805cbbb", "cast_id": 20, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 5}, {"name": "Stacey Travis", "character": "Cloe Miller", "id": 31714, "credit_id": "52fe438cc3a36847f805cbbf", "cast_id": 21, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 6}, {"name": "Azura Skye", "character": "Cheri", "id": 31715, "credit_id": "52fe438cc3a36847f805cbc3", "cast_id": 22, "profile_path": "/9dyxe8DOX8eEGrCo6ieW4ZiPZWC.jpg", "order": 7}, {"name": "Peggy Miley", "character": "Mildred Kronenberg", "id": 31716, "credit_id": "52fe438cc3a36847f805cbc7", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "January Jones", "character": "Claire/Pink Boots", "id": 31717, "credit_id": "52fe438cc3a36847f805cbcb", "cast_id": 24, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 9}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cb61", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 6.2, "runtime": 123}, "3175": {"poster_path": "/htHCOsF4oUdMWfLh2PKEDFMn8Oc.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20000000, "overview": "In the Eighteenth Century, in a small village in Ireland, Redmond Barry is a young farm boy in love with his cousin Nora Brady. When Nora engages to the British Captain John Quin, Barry challenges him for a duel of pistols. He wins and escapes to Dublin, but is robbed on the road. Without any other alternative, Barry joins the British Army to fight in the Seven Years War.", "video": false, "id": 3175, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Barry Lyndon", "tagline": "At long last Redmond Barry became a gentleman -- and that was his tragedy.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072684", "adult": false, "backdrop_path": "/o7oWKUhuwJhjFcxLwKqebk3HLq7.jpg", "production_companies": [{"name": "Hawk Films", "id": 88}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Peregrine", "id": 11272}], "release_date": "1975-12-18", "popularity": 0.77487379829765, "original_title": "Barry Lyndon", "budget": 11000000, "cast": [{"name": "Ryan O'Neal", "character": "Barry Lyndon", "id": 31070, "credit_id": "52fe438dc3a36847f805ccd1", "cast_id": 9, "profile_path": "/fTqIq5voXV1hQd3Ol4VtnUWy7j2.jpg", "order": 0}, {"name": "Marisa Berenson", "character": "Lady Lyndon", "id": 31071, "credit_id": "52fe438dc3a36847f805ccd5", "cast_id": 10, "profile_path": "/gUXUngbaDX2AfugAjKuInMQe2rj.jpg", "order": 1}, {"name": "Hardy Kr\u00fcger", "character": "Capt. Potzdorf", "id": 37777, "credit_id": "52fe438dc3a36847f805cd0d", "cast_id": 26, "profile_path": "/yZd3hiAk3ZR3LdsPXdwtjNk05hR.jpg", "order": 2}, {"name": "Diana K\u00f6rner", "character": "Lischen", "id": 22703, "credit_id": "52fe438dc3a36847f805ccd9", "cast_id": 13, "profile_path": "/lLw8souihs7d5ozOVHKwCWHyHZS.jpg", "order": 3}, {"name": "Frank Middlemass", "character": "Sir Charles Reginald Lyndon", "id": 31718, "credit_id": "52fe438dc3a36847f805ccdd", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Arthur O'Sullivan", "character": "Captain Feeny", "id": 31719, "credit_id": "52fe438dc3a36847f805cce1", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Godfrey Quigley", "character": "Capt. Grogan", "id": 2279, "credit_id": "52fe438dc3a36847f805cce5", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Patrick Magee", "character": "The Chevalier de Balibari", "id": 2264, "credit_id": "52fe438dc3a36847f805cce9", "cast_id": 17, "profile_path": "/97RYoo5XQj0R8rr5Fvua9HlB55E.jpg", "order": 7}, {"name": "Steven Berkoff", "character": "Lord Ludd", "id": 782, "credit_id": "52fe438dc3a36847f805cced", "cast_id": 18, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 8}, {"name": "Gay Hamilton", "character": "Nora Brady", "id": 31720, "credit_id": "52fe438dc3a36847f805ccf1", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Marie Kean", "character": "Belle, Barry's mother", "id": 31721, "credit_id": "52fe438dc3a36847f805ccf5", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Murray Melvin", "character": "Rev. Samuel Runt", "id": 31722, "credit_id": "52fe438dc3a36847f805ccf9", "cast_id": 21, "profile_path": "/qaCr8aNv6rHoWfonVjsAii5lNiM.jpg", "order": 11}, {"name": "Andr\u00e9 Morell", "character": "Lord Gustavos Adolphus Wendover", "id": 10029, "credit_id": "52fe438dc3a36847f805ccfd", "cast_id": 22, "profile_path": "/slGvSoLbXaR1g23Rxj9N2WyKNWi.jpg", "order": 12}, {"name": "Leonard Rossiter", "character": "Capt. John Quin", "id": 249, "credit_id": "52fe438dc3a36847f805cd01", "cast_id": 23, "profile_path": "/a9AKQbnY69kRwwBgkL3wqfJgQru.jpg", "order": 13}, {"name": "Leon Vitali", "character": "Lord Bullingdon", "id": 5020, "credit_id": "52fe438dc3a36847f805cd05", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Billy Boyle", "character": "Seamus Feeny", "id": 31723, "credit_id": "52fe438dc3a36847f805cd09", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe438dc3a36847f805cca3", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.2, "runtime": 184}, "3176": {"poster_path": "/4J5hW5wwT20hYSEPfxvfxNLjHcg.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "In the future, the Japanese government captures a class of ninth-grade students and forces them to kill each other under the revolutionary \"Battle Royale\" act.", "video": false, "id": 3176, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Battle Royale", "tagline": "Could you kill your best friend?", "vote_count": 230, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gKpdj5aKtxrAoAbJJ3EtBZHcsyP.jpg", "poster_path": "/rKlCCB5PXnrZmL0KkmpfhWcx0kB.jpg", "id": 16302, "name": "Battle Royale Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0266308", "adult": false, "backdrop_path": "/zIunndG2AYbZ7CIAwNb6SOkOb7A.jpg", "production_companies": [{"name": "AM Associates", "id": 11538}, {"name": "Kobi Co.", "id": 11539}, {"name": "Nippon Shuppan Hanbai (Nippan) K.K.", "id": 3032}, {"name": "MF Pictures", "id": 11540}, {"name": "WoWow", "id": 5073}, {"name": "GAGA", "id": 3656}], "release_date": "2000-12-16", "popularity": 0.970189593044205, "original_title": "\u30d0\u30c8\u30eb\u30fb\u30ed\u30ef\u30a4\u30a2\u30eb", "budget": 4500000, "cast": [{"name": "Takeshi Kitano", "character": "Kitano", "id": 3317, "credit_id": "52fe438dc3a36847f805cd91", "cast_id": 9, "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "order": 0}, {"name": "Tatsuya Fujiwara", "character": "Shuya Nanahara (Boy #15)", "id": 31078, "credit_id": "52fe438dc3a36847f805cd95", "cast_id": 10, "profile_path": "/xPFYGeg1tE4e21AnQGuwbbHNXgB.jpg", "order": 1}, {"name": "Aki Maeda", "character": "Noriko Nakagawa (Girl #15)", "id": 31079, "credit_id": "52fe438dc3a36847f805cd99", "cast_id": 11, "profile_path": "/wpRkVndISU2bjhOyM61cT6OTDs9.jpg", "order": 2}, {"name": "Taro Yamamoto", "character": "Shogo Kawada (Boy #5)", "id": 31080, "credit_id": "52fe438dc3a36847f805cd9d", "cast_id": 12, "profile_path": "/kZI8zf8imvjzk9KHwgfMHqHNU0R.jpg", "order": 3}, {"name": "Masanobu Ando", "character": "Kazuo Kiriyama (Boy #6)", "id": 74862, "credit_id": "52fe438dc3a36847f805cdd9", "cast_id": 27, "profile_path": "/nrOOXnq0fpGIBp2ld1FmMj3T4BI.jpg", "order": 4}, {"name": "Kou Shibasaki", "character": "Mitsuko Souma (Girl #11)", "id": 58593, "credit_id": "52fe438dc3a36847f805cdc1", "cast_id": 21, "profile_path": "/5TWIdBWk1fQeitEjKD10VtaqKfT.jpg", "order": 5}, {"name": "Takashi Tsukamoto", "character": "Shinji Mimura (Boy #19)", "id": 121796, "credit_id": "52fe438dc3a36847f805cda5", "cast_id": 14, "profile_path": "/h8AL47RXoqrjwGn8u1mUW7w010R.jpg", "order": 6}, {"name": "Sousuke Takaoka", "character": "Hiroki Sugimura (Boy #11)", "id": 105405, "credit_id": "540630f6c3a36816af003e6b", "cast_id": 37, "profile_path": null, "order": 8}, {"name": "Chiaki Kuriyama", "character": "Takako Chigusa (Girl #13)", "id": 2538, "credit_id": "52fe438dc3a36847f805cda1", "cast_id": 13, "profile_path": "/ccaYcabNnxA4MPItZdKAMdqEqTk.jpg", "order": 9}, {"name": "Eri Ishikawa", "character": "Yukie Utsumi (Girl #2)", "id": 1006726, "credit_id": "52fe438dc3a36847f805cdb9", "cast_id": 19, "profile_path": "/gjPcD4ycrTh0pDCCkiNSVNg8Uda.jpg", "order": 10}, {"name": "Yukihiro Kotani", "character": "Y\u00f4shitoki Kuninobu (Boy #7)", "id": 1006725, "credit_id": "52fe438dc3a36847f805cdb5", "cast_id": 18, "profile_path": "/pZyFuxrx5irtyxFV4fdYONPzaIE.jpg", "order": 11}, {"name": "Sayaka Kamiya", "character": "Satomi Noda (Girl #17)", "id": 1006727, "credit_id": "52fe438dc3a36847f805cdbd", "cast_id": 20, "profile_path": "/e1tFSH0Xpjm85ulJOD2h95fGtxA.jpg", "order": 12}, {"name": "Aki Inoue", "character": "Fumiyo Fujiy\u00f4shi (Girl #18)", "id": 1083282, "credit_id": "52fe438dc3a36847f805cdc5", "cast_id": 22, "profile_path": "/ttRponp9heWuBR9uvzZ9HsORCZy.jpg", "order": 13}, {"name": "Takayo Mimura", "character": "Kayoko Kot\u00f4hiki (Girl #8)", "id": 97565, "credit_id": "52fe438dc3a36847f805cdc9", "cast_id": 23, "profile_path": "/Gw9koGm0EItuyvTPMnpIJKN4xt.jpg", "order": 14}, {"name": "Yutaka Shimada", "character": "Y\u00fbtaka Seto (Boy #12)", "id": 1083285, "credit_id": "52fe438dc3a36847f805cdcd", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Ren Matsuzawa", "character": "Keita \u00cejima (Boy #2)", "id": 1083287, "credit_id": "52fe438dc3a36847f805cdd1", "cast_id": 25, "profile_path": "/ApUUk3lr2LraehSvrnnKmurwiGS.jpg", "order": 16}, {"name": "Hirohito Honda", "character": "Kazushi N\u00eeda (Boy #16)", "id": 1083288, "credit_id": "52fe438dc3a36847f805cdd5", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Y\u016bko Miyamura", "character": "Training Video Girl", "id": 83768, "credit_id": "52fe438dc3a36847f805cddd", "cast_id": 28, "profile_path": "/aXRz2l0YzDtiuJSTkKJPaeKdLNN.jpg", "order": 18}, {"name": "Kazutoshi Yokoyama", "character": "Basketball referee", "id": 1095960, "credit_id": "52fe438dc3a36847f805cde1", "cast_id": 29, "profile_path": "/hSrVYQeeWbZfv96CnkXNCq1DQ5q.jpg", "order": 19}, {"name": "Minami", "character": "Keiko", "id": 1104911, "credit_id": "52fe438dc3a36847f805cdfd", "cast_id": 34, "profile_path": "/c2kUMHqk03lrxKGO8PioCBdUjZ5.jpg", "order": 20}, {"name": "Jir\u00f4 Nitta", "character": "Ky\u00f4ichi Motobuchi (Boy #20)", "id": 1089195, "credit_id": "53e7f9d1c3a368398a0023a2", "cast_id": 36, "profile_path": null, "order": 21}], "directors": [{"name": "Kinji Fukasaku", "department": "Directing", "job": "Director", "credit_id": "52fe438dc3a36847f805cd6f", "profile_path": null, "id": 31074}], "vote_average": 7.1, "runtime": 114}, "1494": {"poster_path": "/nujK5GAM7Gd37A3kYuBTFZ7a39y.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "During China's Tang dynasty the emperor has taken the princess of a neighboring province as wife. She has borne him two sons and raised his eldest. Now his control over his dominion is complete, including the royal family itself.", "video": false, "id": 1494, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Curse of the Golden Flower", "tagline": "Unspeakable secrets are hidden within the Forbidden City.", "vote_count": 60, "homepage": "http://ent.sina.com.cn/hjj/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0473444", "adult": false, "backdrop_path": "/bXo7ydNJxww2q4KSgobqUfhEofz.jpg", "production_companies": [{"name": "Beijing New Picture Film Co. Ltd.", "id": 724}], "release_date": "2006-12-21", "popularity": 0.450612109451545, "original_title": "Man cheng jin dai huang jin jia", "budget": 45, "cast": [{"name": "Chow Yun-Fat", "character": "Cesarz Ping", "id": 1619, "credit_id": "52fe42fac3a36847f8031249", "cast_id": 15, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 0}, {"name": "Gong Li", "character": "Cesarzowa Phoenix", "id": 643, "credit_id": "52fe42fac3a36847f803124d", "cast_id": 16, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 1}, {"name": "Jay Chou", "character": "Ksi\u0105\u017c\u0119 Jai/Drugi syn", "id": 17380, "credit_id": "52fe42fac3a36847f8031251", "cast_id": 17, "profile_path": "/g2fvgW2IVgLHt988eYoAl0REILQ.jpg", "order": 2}, {"name": "Liu Ye", "character": "Ksi\u0105\u017c\u0119 Wan/Pierwszy Syn", "id": 20654, "credit_id": "52fe42fac3a36847f8031267", "cast_id": 24, "profile_path": "/mHJPqzjeO5I2wKKnGytoJMbqKQG.jpg", "order": 3}, {"name": "Qin Jun-Jie", "character": "Ksi\u0105\u017c\u0119 Yu/Trzeci syn", "id": 17385, "credit_id": "52fe42fac3a36847f803125d", "cast_id": 22, "profile_path": "/rpEr6w3tFwlfgduCiYdYpHDwifG.jpg", "order": 4}, {"name": "Li Man", "character": "Jiang Chan/C\u00f3rka medyka", "id": 17384, "credit_id": "52fe42fac3a36847f8031259", "cast_id": 21, "profile_path": "/hngpwkoX4XJdhJp71bCqHbX6zLX.jpg", "order": 5}, {"name": "Ni Da-Hong", "character": "Cesarski medyk Jiang", "id": 17382, "credit_id": "52fe42fac3a36847f8031255", "cast_id": 19, "profile_path": "/2mRc3oSiQ6VxlJgN08HmKcuDAa9.jpg", "order": 6}, {"name": "Chen Jin", "character": "Pani Jiang/\u017bona medyka", "id": 557424, "credit_id": "52fe42fac3a36847f8031277", "cast_id": 27, "profile_path": "/nWMCTLyqFbIjr4dVydx7bW8g19a.jpg", "order": 7}], "directors": [{"name": "Zhang Yimou", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031273", "profile_path": "/rXancm9GMRLQlGc4dz6o5BFtnRy.jpg", "id": 607}], "vote_average": 6.3, "runtime": 114}, "11371": {"poster_path": "/8d9HG9An0WOPNQywo99QyEptLHz.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71069884, "overview": "An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.", "video": false, "id": 11371, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Score", "tagline": "There are no partners in crime", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0227445", "adult": false, "backdrop_path": "/cQ7y4GAwmDZAHev8IwOzA6Utr3z.jpg", "production_companies": [{"name": "Mandalay Pictures", "id": 551}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2001-07-13", "popularity": 0.597319500531464, "original_title": "The Score", "budget": 68000000, "cast": [{"name": "Robert De Niro", "character": "Nick Wells", "id": 380, "credit_id": "52fe44339251416c7502c3c7", "cast_id": 10, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Edward Norton", "character": "Jack Teller", "id": 819, "credit_id": "52fe44339251416c7502c3d3", "cast_id": 14, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Marlon Brando", "character": "Max", "id": 3084, "credit_id": "52fe44339251416c7502c3cb", "cast_id": 12, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 2}, {"name": "Angela Bassett", "character": "Diane", "id": 9780, "credit_id": "52fe44339251416c7502c3cf", "cast_id": 13, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 3}, {"name": "Paul Soles", "character": "Danny", "id": 1215283, "credit_id": "52fe44339251416c7502c3d7", "cast_id": 15, "profile_path": "/2vDC8SwTcE59TZlRg1tSpNPxrxk.jpg", "order": 4}, {"name": "Jamie Harrold", "character": "Steven", "id": 86919, "credit_id": "530a3f5f925141110e003dd9", "cast_id": 18, "profile_path": "/psJL3yck7Dd0EzlKnmXmJcCG6Ee.jpg", "order": 5}, {"name": "Serge Houde", "character": "Laurent", "id": 41746, "credit_id": "54862fc7c3a3682612000286", "cast_id": 20, "profile_path": "/txotfOoZhyo7DXaga0vmHkMS5aD.jpg", "order": 6}, {"name": "Jean-Rene Ouellet", "character": "Andr\u00e9", "id": 1058750, "credit_id": "530a3f059251411108003abe", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Mark Camacho", "character": "Sapperstein's Cousin", "id": 7013, "credit_id": "530a3faa9251411114003a16", "cast_id": 19, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 8}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe44329251416c7502c393", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.7, "runtime": 124}, "68718": {"poster_path": "/5WJnxuw41sddupf8cwOxYftuvJG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 425368238, "overview": "With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.", "video": false, "id": 68718, "genres": [{"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Django Unchained", "tagline": "Life, liberty and the pursuit of vengeance.", "vote_count": 5101, "homepage": "http://unchainedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1853728", "adult": false, "backdrop_path": "/kFwUy1Nu9tM4ywZAGXHoetBY2pk.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2012-12-25", "popularity": 4.145669064052, "original_title": "Django Unchained", "budget": 100000000, "cast": [{"name": "Jamie Foxx", "character": "Django", "id": 134, "credit_id": "52fe479fc3a368484e0d12e3", "cast_id": 6, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Christoph Waltz", "character": "Dr. King Schultz", "id": 27319, "credit_id": "52fe479fc3a368484e0d12df", "cast_id": 5, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 1}, {"name": "Leonardo DiCaprio", "character": "Calvin Candie", "id": 6193, "credit_id": "52fe479fc3a368484e0d12db", "cast_id": 3, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 2}, {"name": "Kerry Washington", "character": "Broomhilda von Shaft", "id": 11703, "credit_id": "52fe479fc3a368484e0d12ef", "cast_id": 13, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 3}, {"name": "Samuel L. Jackson", "character": "Stephen", "id": 2231, "credit_id": "52fe479fc3a368484e0d12eb", "cast_id": 12, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 4}, {"name": "Walton Goggins", "character": "Billy Crash", "id": 27740, "credit_id": "52fe479fc3a368484e0d135f", "cast_id": 45, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 5}, {"name": "Dennis Christopher", "character": "Leonide Moguy", "id": 27770, "credit_id": "52fe479fc3a368484e0d1315", "cast_id": 27, "profile_path": "/sNFwlPHBAVn2fQIMVBTXMfx5E69.jpg", "order": 6}, {"name": "James Remar", "character": "Ace Speck", "id": 1736, "credit_id": "52fe479fc3a368484e0d1305", "cast_id": 18, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 7}, {"name": "Don Johnson", "character": "Spencer Gordon Bennet", "id": 25129, "credit_id": "52fe479fc3a368484e0d1309", "cast_id": 19, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 8}, {"name": "Michael Parks", "character": "The LeQuint Dickey Mining Co. Employee", "id": 2536, "credit_id": "52fe479fc3a368484e0d134d", "cast_id": 41, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 9}, {"name": "M.C. Gainey", "character": "Big John Brittle", "id": 22132, "credit_id": "52fe479fc3a368484e0d1311", "cast_id": 22, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 10}, {"name": "Laura Cayouette", "character": "Lara Lee Candie-Fitzwilly", "id": 565498, "credit_id": "52fe479fc3a368484e0d1325", "cast_id": 31, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 11}, {"name": "David Steen", "character": "Mr. Stonesipher", "id": 1067187, "credit_id": "52fe479fc3a368484e0d1319", "cast_id": 28, "profile_path": "/kgdUlAb34rXiSamG5It02YDmDnU.jpg", "order": 12}, {"name": "Dana Gourrier ", "character": "Cora", "id": 1133063, "credit_id": "52fe479fc3a368484e0d131d", "cast_id": 29, "profile_path": "/hj7pAGBEy9XzqT23kHxKrpJYT6W.jpg", "order": 13}, {"name": "Nichole Galicia", "character": "Sheba", "id": 1037108, "credit_id": "52fe479fc3a368484e0d1321", "cast_id": 30, "profile_path": "/mVt9uits1dAhVNKRwJlOmbwwIeB.jpg", "order": 14}, {"name": "Ato Essandoh", "character": "D'Artagnan", "id": 5377, "credit_id": "52fe479fc3a368484e0d1329", "cast_id": 32, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 15}, {"name": "Sammi Rotibi", "character": "Rodney", "id": 19300, "credit_id": "52fe479fc3a368484e0d132d", "cast_id": 33, "profile_path": "/yjktr2trahEBQmuLsCRMzgoDFvh.jpg", "order": 16}, {"name": "Escalante Lundy", "character": "Big Fred", "id": 1129647, "credit_id": "52fe479fc3a368484e0d13bd", "cast_id": 62, "profile_path": "/yfIXDhC4JeyfTFdtH2od3WyACnQ.jpg", "order": 18}, {"name": "Miriam F. Glover", "character": "Betina", "id": 1291798, "credit_id": "52fe479fc3a368484e0d13c1", "cast_id": 63, "profile_path": "/yl1LH4l7Ccs8zOdEgdAL4wd69vQ.jpg", "order": 19}, {"name": "Franco Nero", "character": "Amerigo Vessepi", "id": 22383, "credit_id": "52fe479fc3a368484e0d1331", "cast_id": 34, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 20}, {"name": "James Russo", "character": "Dicky Speck", "id": 785, "credit_id": "52fe479fc3a368484e0d130d", "cast_id": 21, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 21}, {"name": "Tom Wopat", "character": "U.S. Marshall Gill Tatum", "id": 114293, "credit_id": "52fe479fc3a368484e0d1335", "cast_id": 35, "profile_path": "/dGToGnJAKsrPZuC1ulnkvzBiTot.jpg", "order": 22}, {"name": "Don Stroud", "character": "Sheriff Bill Sharp", "id": 69494, "credit_id": "52fe479fc3a368484e0d1339", "cast_id": 36, "profile_path": "/xXzHqpByk7c29kx6SOcnQkxwqlo.jpg", "order": 23}, {"name": "Russ Tamblyn", "character": "Son of a Gunfighter", "id": 6725, "credit_id": "52fe479fc3a368484e0d133d", "cast_id": 37, "profile_path": "/gc0wmr0vyqYRhA7piZsqKVvy0uX.jpg", "order": 24}, {"name": "Jonah Hill", "character": "Bag Head #2", "id": 21007, "credit_id": "52fe479fc3a368484e0d1349", "cast_id": 40, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 29}, {"name": "Zo\u00eb Bell", "character": "Tracker", "id": 20494, "credit_id": "52fe479fc3a368484e0d13d5", "cast_id": 68, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 31}, {"name": "Michael Bowen", "character": "Tracker", "id": 2234, "credit_id": "52fe479fc3a368484e0d13d9", "cast_id": 69, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 32}, {"name": "James Parks", "character": "Tracker", "id": 87312, "credit_id": "52fe479fc3a368484e0d13e9", "cast_id": 73, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 36}, {"name": "Quentin Tarantino", "character": "The LeQuint Dickey Mining Co. Employee", "id": 138, "credit_id": "52fe479fc3a368484e0d1355", "cast_id": 43, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 39}, {"name": "John Jarratt", "character": "Le Quint Dickie Mining Company Employee", "id": 45210, "credit_id": "538c1f280e0a266712003842", "cast_id": 74, "profile_path": "/pG2OV7KBXbMzcirLuoLWN7Uoyfq.jpg", "order": 40}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe479fc3a368484e0d12d1", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.4, "runtime": 165}, "68721": {"poster_path": "/1Ilv6ryHUv6rt9zIsbSEJUmmbEi.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1215439994, "overview": "The brash-but-brilliant industrialist Tony Stark faces an enemy whose reach knows no bounds. When Stark finds his personal world destroyed at his enemy\u2019s hands, he embarks on a harrowing quest to find those responsible. This journey, at every turn, will test his mettle. With his back against the wall, Stark is left to survive by his own devices, relying on his ingenuity and instincts to protect those closest to him. As he fights his way back, Stark discovers the answer to the question that has secretly haunted him: does the man make the suit or does the suit make the man?", "video": false, "id": 68721, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Man 3", "tagline": "Unleash the power behind the armor.", "vote_count": 5304, "homepage": "http://marvel.com/ironman3", "belongs_to_collection": {"backdrop_path": "/rI8zOWkRQJdlAyQ6WJOSlYK6JxZ.jpg", "poster_path": "/fbeJ7f0aD4A112Bc1tnpzyn82xO.jpg", "id": 131292, "name": "Iron Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1300854", "adult": false, "backdrop_path": "/n9X2DKItL3V0yq1q1jrk8z5UAki.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2013-05-03", "popularity": 3.73014541115945, "original_title": "Iron Man 3", "budget": 200000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe47a0c3a368484e0d15ff", "cast_id": 40, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe479fc3a368484e0d157b", "cast_id": 6, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Guy Pearce", "character": "Aldrich Killian", "id": 529, "credit_id": "52fe47a0c3a368484e0d15eb", "cast_id": 35, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 2}, {"name": "Don Cheadle", "character": "Col. James \"Rhodey\" Rhodes / Iron Patriot", "id": 1896, "credit_id": "52fe479fc3a368484e0d157f", "cast_id": 8, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 3}, {"name": "Ben Kingsley", "character": "Trevor Slattery", "id": 2282, "credit_id": "52fe479fc3a368484e0d1583", "cast_id": 9, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 4}, {"name": "Rebecca Hall", "character": "Maya Hansen", "id": 15556, "credit_id": "52fe479fc3a368484e0d158b", "cast_id": 13, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Happy Hogan", "id": 15277, "credit_id": "52fe479fc3a368484e0d158f", "cast_id": 14, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe479fc3a368484e0d1587", "cast_id": 12, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 7}, {"name": "William Sadler", "character": "President Ellis", "id": 6573, "credit_id": "52fe479fc3a368484e0d1593", "cast_id": 15, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 8}, {"name": "James Badge Dale", "character": "Savin", "id": 18473, "credit_id": "52fe47a0c3a368484e0d1597", "cast_id": 16, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 9}, {"name": "Yvonne Zima", "character": "Miss Elkridge", "id": 37252, "credit_id": "52fe47a0c3a368484e0d159b", "cast_id": 17, "profile_path": "/1F810ZLGGFw5NJxaCb3dmiC1IyK.jpg", "order": 10}, {"name": "Ashley Hamilton", "character": "Jack Taggert", "id": 992507, "credit_id": "52fe47a0c3a368484e0d159f", "cast_id": 18, "profile_path": "/7k2SH5xKV5pq7ntJDxNz4T9hItT.jpg", "order": 11}, {"name": "Spencer Garrett", "character": "Rose Hills Sherrif", "id": 49275, "credit_id": "52fe47a0c3a368484e0d15a3", "cast_id": 19, "profile_path": "/ifHCwS6Shlqp1H6N2YVVBo5PAbw.jpg", "order": 12}, {"name": "Bridger Zadina", "character": "Richie", "id": 445918, "credit_id": "52fe47a0c3a368484e0d15a7", "cast_id": 20, "profile_path": "/tboCwZFTgogpbY2PQI7FcjoLdNK.jpg", "order": 13}, {"name": "Chris Gethard", "character": "Juan", "id": 169265, "credit_id": "52fe47a0c3a368484e0d15ab", "cast_id": 21, "profile_path": "/3xIiXWjUTmmsD3A9c4KZklXbBrq.jpg", "order": 14}, {"name": "Roy McCrerey", "character": "Military Advisor", "id": 51464, "credit_id": "52fe47a0c3a368484e0d15af", "cast_id": 22, "profile_path": "/tsLn8BBb9BaflBbT1HakZ8ZwIKJ.jpg", "order": 15}, {"name": "Jonathan Jackson", "character": "Hollywood Type", "id": 23495, "credit_id": "52fe47a0c3a368484e0d15b3", "cast_id": 23, "profile_path": "/duZP6q1JQ1Is797xsZplydvgsRL.jpg", "order": 16}, {"name": "Stephanie Szostak", "character": "Ellen Brandt", "id": 121953, "credit_id": "52fe47a0c3a368484e0d15e7", "cast_id": 34, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 17}, {"name": "Noah Visconti", "character": "Neptune's Net Boy", "id": 1171688, "credit_id": "52fe47a0c3a368484e0d15ef", "cast_id": 36, "profile_path": "/1peWm6jFbi6HQgHibZtTi59z6eL.jpg", "order": 18}, {"name": "Ty Simpkins", "character": "Harley Keener", "id": 17181, "credit_id": "52fe47a0c3a368484e0d15f3", "cast_id": 37, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 19}, {"name": "Jenna Ortega", "character": "Vice President's Daughter", "id": 974169, "credit_id": "52fe47a0c3a368484e0d15f7", "cast_id": 38, "profile_path": "/tmjPdfhrteYChDVtMqgN84GkigD.jpg", "order": 20}, {"name": "Bronte D'Esposito", "character": "Neptune's Net Girl", "id": 1171861, "credit_id": "52fe47a0c3a368484e0d15fb", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Miguel Ferrer", "character": "Vice President Rodriguez", "id": 15860, "credit_id": "52fe47a0c3a368484e0d1603", "cast_id": 41, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 22}, {"name": "Stan Lee", "character": "Pageant Judge", "id": 7624, "credit_id": "52fe47a0c3a368484e0d165b", "cast_id": 56, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 23}, {"name": "Mark Ruffalo", "character": "Bruce Banner (uncredited)", "id": 103, "credit_id": "54b2606dc3a368094e004441", "cast_id": 59, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 24}, {"name": "Nick W. Nicholson", "character": "White House Reporter (uncredited)", "id": 1429470, "credit_id": "54e7e98ac3a3684ea60003de", "cast_id": 60, "profile_path": null, "order": 25}, {"name": "Shaun Toub", "character": "Yinsen", "id": 17857, "credit_id": "552a8f12925141265f001afa", "cast_id": 61, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 26}], "directors": [{"name": "Shane Black", "department": "Directing", "job": "Director", "credit_id": "52fe479fc3a368484e0d1577", "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "id": 1108}], "vote_average": 6.8, "runtime": 130}, "68722": {"poster_path": "/7IgXHrfZdGZ6HEMlLGbBsIhIwrg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28258060, "overview": "An agitated Naval veteran arrives home from war unsettled and uncertain of his future - until he is tantalized by The Cause and its charismatic leader.", "video": false, "id": 68722, "genres": [{"id": 18, "name": "Drama"}], "title": "The Master", "tagline": "Every Man Needs a Sub Dig Guide", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1560747", "adult": false, "backdrop_path": "/pF996qNhWgdpHT6qIY4fExQnqun.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "The Weinstein Company", "id": 308}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "2012-09-07", "popularity": 0.602514867601573, "original_title": "The Master", "budget": 32000000, "cast": [{"name": "Joaquin Phoenix", "character": "Freddie Quell", "id": 73421, "credit_id": "52fe47a0c3a368484e0d16ad", "cast_id": 4, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Lancaster Dodd", "id": 1233, "credit_id": "52fe47a0c3a368484e0d16b1", "cast_id": 5, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Amy Adams", "character": "Peggy Dodd", "id": 9273, "credit_id": "52fe47a0c3a368484e0d16a9", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 2}, {"name": "Laura Dern", "character": "Helen", "id": 4784, "credit_id": "52fe47a0c3a368484e0d16b5", "cast_id": 6, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Jesse Plemons", "character": "Val Dodd", "id": 88124, "credit_id": "52fe47a0c3a368484e0d16b9", "cast_id": 7, "profile_path": "/5EOD7UtSHYWR66BcDE2EnSvrQ1L.jpg", "order": 4}, {"name": "Ambyr Childers", "character": "Elizabeth Dodd", "id": 75330, "credit_id": "52fe47a0c3a368484e0d16ff", "cast_id": 20, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 5}, {"name": "Rami Malek", "character": "Clark", "id": 17838, "credit_id": "52fe47a0c3a368484e0d16bd", "cast_id": 8, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 6}, {"name": "Madisen Beaty", "character": "Doris Solstad", "id": 219666, "credit_id": "52fe47a0c3a368484e0d1703", "cast_id": 21, "profile_path": "/sCiab3TILScQqTo477arWbdImkk.jpg", "order": 7}, {"name": "Kevin J. O'Connor", "character": "Bill White", "id": 18916, "credit_id": "52fe47a0c3a368484e0d16c1", "cast_id": 9, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 8}, {"name": "Patty McCormack", "character": "Mildred Drummond", "id": 125026, "credit_id": "52fe47a0c3a368484e0d16c5", "cast_id": 10, "profile_path": "/xUNk8RjLVDTvtA4mAPX8aWBRMlR.jpg", "order": 9}, {"name": "Lena Endre", "character": "Mrs. Solstad", "id": 79196, "credit_id": "52fe47a0c3a368484e0d1707", "cast_id": 22, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 10}, {"name": "Barbara Brownell", "character": "Margaret O'Brien", "id": 157583, "credit_id": "52fe47a0c3a368484e0d170b", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Amy Ferguson", "character": "Martha the Salesgirl", "id": 230060, "credit_id": "52fe47a0c3a368484e0d170f", "cast_id": 24, "profile_path": "/3d3WDkIYiRSkwpgkmAHB2jaDonW.jpg", "order": 12}, {"name": "Jennifer Neala Page", "character": "Winn Manchester", "id": 1149893, "credit_id": "52fe47a0c3a368484e0d1713", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Christopher Evan Welch", "character": "John More", "id": 60021, "credit_id": "52fe47a0c3a368484e0d1717", "cast_id": 26, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 14}, {"name": "Mike Howard", "character": "Rorschach Doctor", "id": 1149894, "credit_id": "52fe47a0c3a368484e0d171b", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Bruce Goodchild", "character": "V.A. Doctor / Interview", "id": 1149895, "credit_id": "52fe47a0c3a368484e0d171f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Frank Bettag", "character": "Frank", "id": 1149896, "credit_id": "52fe47a0c3a368484e0d1723", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Mimi Cozzens", "character": "Chi Chi Crawford", "id": 158664, "credit_id": "52fe47a0c3a368484e0d1727", "cast_id": 30, "profile_path": null, "order": 18}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe47a0c3a368484e0d169f", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 6.7, "runtime": 137}, "68724": {"poster_path": "/tHkjoAxmhp3Eau1h0Ir7maKMwUz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 286140700, "overview": "In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes (Jodie Foster), a hard line government of\ufb01cial, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesn\u2019t stop the people of Earth from trying to get in, by any means they can. When unlucky Max (Matt Damon) is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.", "video": false, "id": 68724, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Elysium", "tagline": "He can save us all.", "vote_count": 1402, "homepage": "http://www.itsbetterupthere.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1535108", "adult": false, "backdrop_path": "/vSbjlX9y8S2hKNURHEO4GsoIOay.jpg", "production_companies": [{"name": "Genre Films", "id": 28788}, {"name": "TriStar Pictures", "id": 559}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Sony Pictures Entertainment (SPE)", "id": 7431}, {"name": "QED International", "id": 11029}, {"name": "Alpha Core", "id": 18209}, {"name": "Simon Kinberg Productions", "id": 31076}], "release_date": "2013-08-09", "popularity": 2.48871225812203, "original_title": "Elysium", "budget": 115000000, "cast": [{"name": "Matt Damon", "character": "Max", "id": 1892, "credit_id": "52fe47a0c3a368484e0d1775", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Delacourt", "id": 1038, "credit_id": "52fe47a0c3a368484e0d1779", "cast_id": 4, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "Murto", "id": 1072642, "credit_id": "55375d5c9251415704002e17", "cast_id": 143, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Kruger", "id": 82191, "credit_id": "52fe47a0c3a368484e0d17ad", "cast_id": 18, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Alice Braga", "character": "Frey", "id": 8602, "credit_id": "52fe47a0c3a368484e0d1781", "cast_id": 6, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 4}, {"name": "Diego Luna", "character": "Julio", "id": 8688, "credit_id": "52fe47a0c3a368484e0d1789", "cast_id": 8, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 5}, {"name": "Wagner Moura", "character": "Spider", "id": 52583, "credit_id": "52fe47a0c3a368484e0d1785", "cast_id": 7, "profile_path": "/bESNWiGHjMhMGoqBMVtbpJBazKx.jpg", "order": 6}, {"name": "William Fichtner", "character": "John Carlyle", "id": 886, "credit_id": "52fe47a0c3a368484e0d177d", "cast_id": 5, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 7}, {"name": "Faran Tahir", "character": "President Patel", "id": 57452, "credit_id": "52fe47a0c3a368484e0d179d", "cast_id": 14, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 8}, {"name": "Jose Pablo Cantillo", "character": "Sandro", "id": 20191, "credit_id": "52fe47a0c3a368484e0d17a1", "cast_id": 15, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 9}, {"name": "Maxwell Perry Cotton", "character": "Young Max", "id": 206928, "credit_id": "52fe47a0c3a368484e0d17a9", "cast_id": 17, "profile_path": "/nhVxraRhGDmWHgEU0I0gBjpp8pI.jpg", "order": 10}, {"name": "Brandon Auret", "character": "Drake", "id": 1029029, "credit_id": "52fe47a0c3a368484e0d17b1", "cast_id": 19, "profile_path": "/ne7Q7CodcxZnkE9oQiJhzkdcJ8D.jpg", "order": 11}, {"name": "Josh Blacker", "character": "Crowe", "id": 204420, "credit_id": "52fe47a0c3a368484e0d17f1", "cast_id": 30, "profile_path": "/yfSQdXChDb4DmHyikHLldazF55V.jpg", "order": 12}, {"name": "Emma Tremblay", "character": "Matilda", "id": 1272862, "credit_id": "52fe47a0c3a368484e0d17f5", "cast_id": 31, "profile_path": "/p6sRtFi1cNmR2qOXWX6buzDTFIr.jpg", "order": 13}, {"name": "Adrian Holmes", "character": "Manuel", "id": 33348, "credit_id": "52fe47a0c3a368484e0d17f9", "cast_id": 32, "profile_path": "/jGvsYbrvsok5QAYEJ9V8VHvDy9I.jpg", "order": 14}, {"name": "Jared Keeso", "character": "Rico", "id": 205053, "credit_id": "52fe47a0c3a368484e0d17fd", "cast_id": 33, "profile_path": "/hRoPfKnk8adZUfQqmi1O109BrFp.jpg", "order": 15}, {"name": "Talisa Soto", "character": "(uncredited)", "id": 10680, "credit_id": "52fe47a0c3a368484e0d178d", "cast_id": 10, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 16}, {"name": "Michael Shanks", "character": "CCB Agent", "id": 26086, "credit_id": "52fe47a0c3a368484e0d1791", "cast_id": 11, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 17}, {"name": "Carly Pope", "character": "CCB Agent", "id": 43903, "credit_id": "52fe47a0c3a368484e0d1795", "cast_id": 12, "profile_path": "/4KLHkJZKFtVdmMkHtCSD1Ridku4.jpg", "order": 18}, {"name": "Ona Grauer", "character": "CCB Agent", "id": 67978, "credit_id": "52fe47a0c3a368484e0d1799", "cast_id": 13, "profile_path": "/dGP6WGaBnEiPhOrOirrPRcxCd2S.jpg", "order": 19}, {"name": "Terry Chen", "character": "Technician", "id": 11677, "credit_id": "52fe47a0c3a368484e0d17a5", "cast_id": 16, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 20}, {"name": "Chris Shields", "character": "Dr. Faizel", "id": 198615, "credit_id": "53aca5370e0a26597d00076e", "cast_id": 37, "profile_path": "/cKxfPfZMqCingbrn6MK3OSUhUVF.jpg", "order": 21}], "directors": [{"name": "Neill Blomkamp", "department": "Directing", "job": "Director", "credit_id": "52fe47a0c3a368484e0d1771", "profile_path": "/wM1ACz7B2km2KGkxA1sg3QyHrtL.jpg", "id": 82194}], "vote_average": 6.6, "runtime": 109}, "11381": {"poster_path": "/6HyFhz2RutIuOAeVOtAXN4cDHbO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32648673, "overview": "Party animal Tommy Callahan is a few cans short of a six-pack. But when the family business starts tanking, it's up to Tommy and number-cruncher Richard Hayden to save the day.", "video": false, "id": 11381, "genres": [{"id": 35, "name": "Comedy"}], "title": "Tommy Boy", "tagline": "If at first you don't succeed, lower your standards.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114694", "adult": false, "backdrop_path": "/ua22k2wSZ34ft2FzDYtBnF23V4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1995-03-31", "popularity": 0.591316487769741, "original_title": "Tommy Boy", "budget": 0, "cast": [{"name": "Chris Farley", "character": "Thomas 'Tommy' Callahan III", "id": 58198, "credit_id": "52fe44359251416c7502c86b", "cast_id": 1, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 0}, {"name": "David Spade", "character": "Richard Hayden", "id": 60950, "credit_id": "52fe44359251416c7502c86f", "cast_id": 2, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 1}, {"name": "Brian Dennehy", "character": "Thomas 'Big Tom' Callahan", "id": 6197, "credit_id": "52fe44359251416c7502c873", "cast_id": 3, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 2}, {"name": "Bo Derek", "character": "Beverly Barish, aka Beverly Burns", "id": 37995, "credit_id": "52fe44359251416c7502c877", "cast_id": 4, "profile_path": "/7WI05Puq8rxZKjXK7nMp82LoNNY.jpg", "order": 3}, {"name": "Julie Warner", "character": "Michelle", "id": 63681, "credit_id": "52fe44359251416c7502c89f", "cast_id": 11, "profile_path": "/bWoFkg4mQ3cQTW0hUxy8EqGVbwD.jpg", "order": 4}, {"name": "Dan Aykroyd", "character": "Zalinsky", "id": 707, "credit_id": "52fe44359251416c7502c8a3", "cast_id": 12, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 5}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44359251416c7502c87d", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 7.4, "runtime": 97}, "68726": {"poster_path": "/sCJEwEShZvruTpQ2a4yiX3Q9EyZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 407602906, "overview": "When legions of monstrous creatures, known as Kaiju, started rising from the sea, a war began that would take millions of lives and consume humanity's resources for years on end. To combat the giant Kaiju, a special type of weapon was devised: massive robots, called Jaegers, which are controlled simultaneously by two pilots whose minds are locked in a neural bridge. But even the Jaegers are proving nearly defenseless in the face of the relentless Kaiju. On the verge of defeat, the forces defending mankind have no choice but to turn to two unlikely heroes\u2014a washed-up former pilot (Charlie Hunnam) and an untested trainee (Rinko Kikuchi)\u2014who are teamed to drive a legendary but seemingly obsolete Jaeger from the past. Together, they stand as mankind's last hope against the mounting apocalypse.", "video": false, "id": 68726, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Pacific Rim", "tagline": "To Fight Monsters, We Created Monsters", "vote_count": 2295, "homepage": "http://www.pacificrimmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1663662", "adult": false, "backdrop_path": "/iB0RsWVoOXzicPi2Yy5xmTYMbho.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Disney Double Dare You (DDY)", "id": 19750}, {"name": "Indochina Productions", "id": 19751}], "release_date": "2013-07-12", "popularity": 2.38356229204832, "original_title": "Pacific Rim", "budget": 180000000, "cast": [{"name": "Idris Elba", "character": "Stacker Pentecost", "id": 17605, "credit_id": "52fe47a0c3a368484e0d1845", "cast_id": 2, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 0}, {"name": "Charlie Hunnam", "character": "Raleigh Becket", "id": 56365, "credit_id": "52fe47a0c3a368484e0d1849", "cast_id": 3, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 1}, {"name": "Charlie Day", "character": "Dr. Newton Geiszler", "id": 95101, "credit_id": "52fe47a0c3a368484e0d184d", "cast_id": 4, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Hannibal Chau", "id": 2372, "credit_id": "52fe47a0c3a368484e0d1857", "cast_id": 6, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Burn Gorman", "character": "Gottlieb", "id": 39659, "credit_id": "52fe47a0c3a368484e0d185b", "cast_id": 7, "profile_path": "/qV6MEseSjTkz1SKw9RoNHaesdRr.jpg", "order": 4}, {"name": "Rinko Kikuchi", "character": "Mako Mori", "id": 18054, "credit_id": "52fe47a0c3a368484e0d185f", "cast_id": 8, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 5}, {"name": "Max Martini", "character": "Herc Hansen", "id": 94864, "credit_id": "52fe47a0c3a368484e0d1863", "cast_id": 9, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 6}, {"name": "Robert Maillet", "character": "Aleksis Kaidanovsky", "id": 112692, "credit_id": "52fe47a0c3a368484e0d1867", "cast_id": 10, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 7}, {"name": "Robert Kazinsky", "character": "Chuck Hansen", "id": 1038379, "credit_id": "52fe47a0c3a368484e0d186b", "cast_id": 11, "profile_path": "/h54Qs5LK19NT2ZA2ysRzjjnuODH.jpg", "order": 8}, {"name": "Larry Joe Campbell", "character": "Tommy T", "id": 118590, "credit_id": "52fe47a0c3a368484e0d186f", "cast_id": 12, "profile_path": "/91kXO2XCIv8B9bP3720QIrTJNfs.jpg", "order": 9}, {"name": "Brad William Henke", "character": "Miles", "id": 15376, "credit_id": "52fe47a0c3a368484e0d1873", "cast_id": 13, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 10}, {"name": "Clifton Collins, Jr.", "character": "Ops Tendo Choi", "id": 5365, "credit_id": "52fe47a0c3a368484e0d1877", "cast_id": 14, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 11}, {"name": "Diego Klattenhoff", "character": "Yancy Becket", "id": 142193, "credit_id": "52fe47a0c3a368484e0d187b", "cast_id": 15, "profile_path": "/qGAmMLw289Q64Hyh7XFiDAFkmgP.jpg", "order": 12}, {"name": "Santiago Segura", "character": "Wizened Man", "id": 10847, "credit_id": "52fe47a0c3a368484e0d187f", "cast_id": 16, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 13}, {"name": "Jane Watson", "character": "Raleigh and Yancy's Mom", "id": 1428550, "credit_id": "54e49936c3a368486f003000", "cast_id": 38, "profile_path": null, "order": 14}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe47a0c3a368484e0d1841", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.7, "runtime": 131}, "68727": {"poster_path": "/jdVPz8ecjBRnboXQx4jmK7f5bLu.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 24000000, "overview": "A fine art auctioneer mixed up with a gang, joins forces with a hypnotherapist to recover a lost painting. As boundaries between desire, reality and hypnotic suggestion begin to blur, the stakes rise faster than anyone could have anticipated.", "video": false, "id": 68727, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Trance", "tagline": "Don't be a hero.", "vote_count": 440, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1924429", "adult": false, "backdrop_path": "/bsa7cusK4Uw7wX7szy8ilXiJavN.jpg", "production_companies": [{"name": "Path\u00e9", "id": 7981}, {"name": "Cloud Eight Films", "id": 6708}, {"name": "Decibel Films", "id": 8286}, {"name": "Film4", "id": 9349}], "release_date": "2013-03-27", "popularity": 1.48628780561764, "original_title": "Trance", "budget": 20000000, "cast": [{"name": "James McAvoy", "character": "Simon", "id": 5530, "credit_id": "52fe47a1c3a368484e0d18f7", "cast_id": 1, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Franck", "id": 1925, "credit_id": "52fe47a1c3a368484e0d1905", "cast_id": 6, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "Romero Wile", "id": 1072642, "credit_id": "5537624c9251412d91001b35", "cast_id": 35, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Rosario Dawson", "character": "Elizabeth", "id": 5916, "credit_id": "52fe47a1c3a368484e0d1901", "cast_id": 5, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 3}, {"name": "Matt Cross", "character": "Dominic", "id": 219737, "credit_id": "52fe47a1c3a368484e0d1921", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Danny Sapani", "character": "Nate", "id": 165424, "credit_id": "52fe47a1c3a368484e0d190d", "cast_id": 8, "profile_path": "/4VeGdZjOEMCdO6AHbYiLI7FdT39.jpg", "order": 5}, {"name": "Tuppence Middleton", "character": "Young Woman", "id": 89822, "credit_id": "52fe47a1c3a368484e0d1909", "cast_id": 7, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 6}, {"name": "Lee Nicholas Harris", "character": "Paramedic", "id": 578690, "credit_id": "52fe47a1c3a368484e0d1911", "cast_id": 9, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 7}, {"name": "Sam Creed", "character": "Dj", "id": 1030253, "credit_id": "52fe47a1c3a368484e0d1915", "cast_id": 10, "profile_path": "/grHsE56RRIsmzXe3i7W7ORaV5rG.jpg", "order": 8}, {"name": "Hamza Jeetooa", "character": "MRI Technician", "id": 1030254, "credit_id": "52fe47a1c3a368484e0d1919", "cast_id": 11, "profile_path": "/kaUrFwbi1Y8l2kyh3MYO7QSuI24.jpg", "order": 9}, {"name": "Ben Cura", "character": "New Client", "id": 1030255, "credit_id": "52fe47a1c3a368484e0d191d", "cast_id": 12, "profile_path": "/mbECXHN3JDVOYyUISyxnjFjIekk.jpg", "order": 10}, {"name": "Kelvin Wise", "character": "Fireman", "id": 937218, "credit_id": "52fe47a1c3a368484e0d1925", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Simon Kunz", "character": "Surgeon", "id": 10701, "credit_id": "52fe47a1c3a368484e0d1929", "cast_id": 17, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 12}, {"name": "Wahab Sheikh", "character": "Riz", "id": 1182596, "credit_id": "52fe47a1c3a368484e0d1975", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Mark Poltimore", "character": "Francis Lemaitre", "id": 1272656, "credit_id": "52fe47a1c3a368484e0d1979", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe47a1c3a368484e0d18fd", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.4, "runtime": 101}, "68728": {"poster_path": "/7qzLIcYR7ev7iXngY8NKHBZHwwT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 491868548, "overview": "Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.", "video": false, "id": 68728, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Oz: The Great and Powerful", "tagline": "In Oz, nothing is what it seems", "vote_count": 2331, "homepage": "http://www.ozthegreatandpowerfulmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1623205", "adult": false, "backdrop_path": "/4jv4TsBccZt60ltlPYmL8vaG8cu.jpg", "production_companies": [{"name": "Miller Roth Films", "id": 5829}, {"name": "Walt Disney", "id": 5888}], "release_date": "2013-03-08", "popularity": 1.38468355538671, "original_title": "Oz: The Great and Powerful", "budget": 200000000, "cast": [{"name": "James Franco", "character": "Oz", "id": 17051, "credit_id": "52fe47a1c3a368484e0d19e5", "cast_id": 6, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Theodora", "id": 18973, "credit_id": "52fe47a1c3a368484e0d19e1", "cast_id": 5, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Evanora", "id": 3293, "credit_id": "52fe47a1c3a368484e0d19dd", "cast_id": 4, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Michelle Williams", "character": "Annie / Glinda", "id": 1812, "credit_id": "52fe47a1c3a368484e0d19e9", "cast_id": 7, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 3}, {"name": "Zach Braff", "character": "Frank / Finley", "id": 5367, "credit_id": "52fe47a1c3a368484e0d19ed", "cast_id": 8, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 4}, {"name": "Bill Cobbs", "character": "Master Tinker", "id": 8854, "credit_id": "52fe47a1c3a368484e0d19f1", "cast_id": 9, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 5}, {"name": "Joey King", "character": "Girl in Wheelchair / China Girl", "id": 125025, "credit_id": "52fe47a1c3a368484e0d19f5", "cast_id": 10, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 6}, {"name": "Tony Cox", "character": "Knuck", "id": 19754, "credit_id": "52fe47a1c3a368484e0d19f9", "cast_id": 11, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 7}, {"name": "Stephen R. Hart", "character": "Winkie General", "id": 224723, "credit_id": "52fe47a1c3a368484e0d19fd", "cast_id": 12, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 8}, {"name": "Abigail Spencer", "character": "May", "id": 123725, "credit_id": "52fe47a1c3a368484e0d1a01", "cast_id": 13, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 9}, {"name": "Bruce Campbell", "character": "Winkie Gate Keeper", "id": 11357, "credit_id": "52fe47a1c3a368484e0d1a05", "cast_id": 14, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 10}, {"name": "Ted Raimi", "character": "Skeptic in Audience", "id": 11769, "credit_id": "52fe47a1c3a368484e0d1a09", "cast_id": 15, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 11}, {"name": "Toni Wynne", "character": "Strong Man's Wife", "id": 99932, "credit_id": "52fe47a1c3a368484e0d1a0d", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Rob Crites", "character": "Firebreather", "id": 1157664, "credit_id": "52fe47a1c3a368484e0d1a11", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Martin Klebba", "character": "Munchkin Rebel", "id": 4030, "credit_id": "52fe47a1c3a368484e0d1a15", "cast_id": 18, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 14}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe47a1c3a368484e0d19cd", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 5.6, "runtime": 130}, "109689": {"poster_path": "/pwlqkymWu0I4E6Xqk9WGA9E73n7.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Sequel to \"Three Steps Above Heaven\". The sexy Gin (Clara Lago) is the new love of Hache (Mario Casas), but this can not forget his former girlfriend (Maria Valverde), so the love triangle is inevitable.", "video": false, "id": 109689, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "I Want You", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/v0j8pUKeYvlzyQeRVp1bhX0tomm.jpg", "poster_path": null, "id": 141649, "name": "Three Steps Above Heaven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1797504", "adult": false, "backdrop_path": "/7B3I7S9a4bLonbYw6XVcoDzW8RT.jpg", "production_companies": [{"name": "Zeta Audiovisual", "id": 9967}], "release_date": "2012-06-22", "popularity": 0.817809332011558, "original_title": "Tengo ganas de ti", "budget": 0, "cast": [{"name": "Mario Casas", "character": "Hache", "id": 82700, "credit_id": "52fe4ac1c3a36847f81dffa5", "cast_id": 2, "profile_path": "/p2C58kRezc0goIWDMYCn194C78a.jpg", "order": 0}, {"name": "Mar\u00eda Valverde", "character": "Babi", "id": 77122, "credit_id": "52fe4ac1c3a36847f81dffa9", "cast_id": 3, "profile_path": "/43htKmIzJGfRUJ95a0d7ZVLQFnR.jpg", "order": 1}, {"name": "\u00c1lvaro Cervantes", "character": "Pollo", "id": 224874, "credit_id": "52fe4ac1c3a36847f81dffad", "cast_id": 4, "profile_path": "/uEyDrAtn2sX3xhZ0NdTg7F649AE.jpg", "order": 2}, {"name": "Clara Lago", "character": "Gin", "id": 224731, "credit_id": "52fe4ac1c3a36847f81dffb1", "cast_id": 5, "profile_path": "/eO3vaBbQRVKYagr26VINxlisiSS.jpg", "order": 3}, {"name": "Diego Mart\u00edn", "character": "Alejandro", "id": 126771, "credit_id": "52fe4ac1c3a36847f81dffc1", "cast_id": 8, "profile_path": "/4WKXdMHCmjgEleKBFccr7KWW3Du.jpg", "order": 4}, {"name": "Cristina Plazas", "character": "Rafaella", "id": 234620, "credit_id": "550d7bbbc3a3684872006096", "cast_id": 9, "profile_path": "/4PgjV2Sw53oRHDhRZsHD4ah8RvI.jpg", "order": 5}, {"name": "Marcel Borr\u00e0s", "character": "Chico", "id": 574223, "credit_id": "550d7bce9251414695005aaa", "cast_id": 10, "profile_path": "/kjG3OydpYP3OBJR7NXHPAaLKMIq.jpg", "order": 6}, {"name": "Carles Francino", "character": "Vidal", "id": 1294750, "credit_id": "550d7bf09251414699005805", "cast_id": 11, "profile_path": "/hh8LYpgmcy1Qm1sIU13gpbuDGhl.jpg", "order": 7}, {"name": "Nerea Camacho", "character": "Daniela", "id": 82455, "credit_id": "550dbcc492514146910060fc", "cast_id": 12, "profile_path": "/cLtaC2j8VswIe7UxybuZpQFGbL.jpg", "order": 8}, {"name": "Antonio Vel\u00e1zquez", "character": "Serpiente", "id": 1073185, "credit_id": "550dc06cc3a36848830064fd", "cast_id": 13, "profile_path": "/111uQyajSp9KGstpzAyVZpzUWlg.jpg", "order": 9}, {"name": "Marina Salas", "character": "Katina", "id": 234619, "credit_id": "550dd5b29251414691006955", "cast_id": 14, "profile_path": "/3LGs4MiL9RzD6BKsr7teioJ2dqK.jpg", "order": 10}], "directors": [{"name": "Fernando Gonz\u00e1lez Molina", "department": "Directing", "job": "Director", "credit_id": "52fe4ac1c3a36847f81dffa1", "profile_path": null, "id": 82724}], "vote_average": 7.3, "runtime": 75}, "68734": {"poster_path": "/oai3xLBQHpIh18VJdRCcL7D0Yg0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 232324128, "overview": "As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.", "video": false, "id": 68734, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Argo", "tagline": "The movie was fake. The mission was real.", "vote_count": 1739, "homepage": "http://argothemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}], "imdb_id": "tt1024648", "adult": false, "backdrop_path": "/6Fy20wTtylup7EMUzCb5nuqjrU2.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "GK Films", "id": 3281}, {"name": "Smokehouse Pictures", "id": 22695}], "release_date": "2012-10-12", "popularity": 1.69489900192312, "original_title": "Argo", "budget": 44500000, "cast": [{"name": "Ben Affleck", "character": "Tony Mendez", "id": 880, "credit_id": "52fe47a1c3a368484e0d1b65", "cast_id": 3, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Bryan Cranston", "character": "Jack O'Donnell", "id": 17419, "credit_id": "52fe47a1c3a368484e0d1b69", "cast_id": 4, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 1}, {"name": "Alan Arkin", "character": "Lester Siegel", "id": 1903, "credit_id": "52fe47a1c3a368484e0d1b71", "cast_id": 6, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "John Goodman", "character": "John Chambers", "id": 1230, "credit_id": "52fe47a1c3a368484e0d1b6d", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Victor Garber", "character": "Ken Taylor", "id": 8536, "credit_id": "52fe47a1c3a368484e0d1b81", "cast_id": 10, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 4}, {"name": "Tate Donovan", "character": "Bob Anders", "id": 15455, "credit_id": "52fe47a1c3a368484e0d1b85", "cast_id": 11, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 5}, {"name": "Clea DuVall", "character": "Cora Lijek", "id": 20387, "credit_id": "52fe47a1c3a368484e0d1b7d", "cast_id": 9, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 6}, {"name": "Scoot McNairy", "character": "Joe Stafford", "id": 59233, "credit_id": "52fe47a1c3a368484e0d1bad", "cast_id": 19, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 7}, {"name": "Rory Cochrane", "character": "Lee Schatz", "id": 51792, "credit_id": "52fe47a1c3a368484e0d1bb1", "cast_id": 20, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 8}, {"name": "Christopher Denham", "character": "Mark Lijek", "id": 61510, "credit_id": "52fe47a1c3a368484e0d1b91", "cast_id": 14, "profile_path": "/oPnHnLW51n9qFtCxh4phejRm6xe.jpg", "order": 9}, {"name": "Kerry Bish\u00e9", "character": "Kathy Stafford", "id": 58356, "credit_id": "52fe47a1c3a368484e0d1bb5", "cast_id": 21, "profile_path": "/vgyxPcX86ASm1fn3S64TEVQ47Uv.jpg", "order": 10}, {"name": "Kyle Chandler", "character": "Hamilton Jordan", "id": 3497, "credit_id": "52fe47a1c3a368484e0d1b79", "cast_id": 8, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 11}, {"name": "Chris Messina", "character": "Malinov", "id": 61659, "credit_id": "52fe47a1c3a368484e0d1bb9", "cast_id": 22, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 12}, {"name": "\u017deljko Ivanek", "character": "Robert Pender", "id": 6752, "credit_id": "52fe47a1c3a368484e0d1bbd", "cast_id": 23, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 13}, {"name": "Titus Welliver", "character": "Bates", "id": 39389, "credit_id": "52fe47a1c3a368484e0d1bc1", "cast_id": 24, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 14}, {"name": "Richard Kind", "character": "Max Klein", "id": 21125, "credit_id": "52fe47a1c3a368484e0d1b89", "cast_id": 12, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 15}, {"name": "Mark Rhino Smith", "character": "Evil Villain", "id": 1106258, "credit_id": "52fe47a1c3a368484e0d1b8d", "cast_id": 13, "profile_path": "/6jhkdSwjFQKfbzQCKX9wLQ40PPQ.jpg", "order": 16}, {"name": "Taylor Schilling", "character": "Christine Mendez", "id": 221809, "credit_id": "52fe47a1c3a368484e0d1b75", "cast_id": 7, "profile_path": "/eTC6YEW9kx508bIEzgxFKDE64X6.jpg", "order": 17}, {"name": "Keith Szarabajka", "character": "Adam Engell", "id": 87957, "credit_id": "52fe47a1c3a368484e0d1bdd", "cast_id": 29, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 18}, {"name": "Bob Gunton", "character": "Cyrus Vance", "id": 4029, "credit_id": "52fe47a1c3a368484e0d1be1", "cast_id": 30, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 19}, {"name": "Page Leong", "character": "Pat Taylor", "id": 156729, "credit_id": "52fe47a1c3a368484e0d1be5", "cast_id": 31, "profile_path": "/2RsStgOBJliUSUrqTaJwio974gV.jpg", "order": 20}, {"name": "Omid Abtahi", "character": "Reza Borhani", "id": 167862, "credit_id": "52fe47a1c3a368484e0d1be9", "cast_id": 32, "profile_path": "/fk1qZBpQls4G6jV7PzYr5TELAhk.jpg", "order": 21}, {"name": "Sheila Vand", "character": "Sahar", "id": 220573, "credit_id": "52fe47a1c3a368484e0d1bed", "cast_id": 33, "profile_path": "/vkQkGIAzTxjR5GFexxmoziJbYMM.jpg", "order": 22}, {"name": "Karina Logue", "character": "Elizabeth Ann Swift", "id": 62567, "credit_id": "52fe47a1c3a368484e0d1bf1", "cast_id": 34, "profile_path": "/wMzRD3X1tMJ8TNl9JgItDyl4nIq.jpg", "order": 23}, {"name": "Ryan Ahern", "character": "Sgt. Sickmann", "id": 970534, "credit_id": "52fe47a1c3a368484e0d1bf5", "cast_id": 35, "profile_path": "/2tBMelAO96HXjgqgEa2KXMFeSCY.jpg", "order": 24}, {"name": "Bill Tangradi", "character": "Alan B. Golacinski", "id": 1212192, "credit_id": "52fe47a1c3a368484e0d1bf9", "cast_id": 36, "profile_path": "/A60IOdfVN8IEOee0KCJask1YVkY.jpg", "order": 25}, {"name": "Jamie McShane", "character": "William J. Daugherty", "id": 79079, "credit_id": "52fe47a1c3a368484e0d1bfd", "cast_id": 37, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 26}, {"name": "Roberto Garcia", "character": "Sgt. William Gallegos", "id": 1272989, "credit_id": "52fe47a1c3a368484e0d1c01", "cast_id": 39, "profile_path": "/sJkrACnWpzSASRhD8fnKg9UYI6h.jpg", "order": 27}, {"name": "Christopher Stanley", "character": "Thomas L. Ahern", "id": 1222215, "credit_id": "52fe47a1c3a368484e0d1c05", "cast_id": 40, "profile_path": "/rSUWxdpMjqTIqqw4Sq8B40sENQI.jpg", "order": 28}, {"name": "Jon Woodward Kirby", "character": "Fred Kupke", "id": 1272990, "credit_id": "52fe47a1c3a368484e0d1c09", "cast_id": 41, "profile_path": "/nrj0EWxYWpTvCqf69FuBlEdKjL3.jpg", "order": 29}, {"name": "Victor McCay", "character": "Malick", "id": 155030, "credit_id": "52fe47a1c3a368484e0d1c0d", "cast_id": 42, "profile_path": "/cq6AxzkHCyNuxWoOKqiMc1HOB2u.jpg", "order": 30}, {"name": "Matt Nolan", "character": "Peter Genco", "id": 159720, "credit_id": "52fe47a1c3a368484e0d1c11", "cast_id": 43, "profile_path": "/9zUwjviDEOv8KCBHWA0x2RzmQTL.jpg", "order": 31}, {"name": "J.R. Cacia", "character": "Brice", "id": 207736, "credit_id": "52fe47a1c3a368484e0d1c15", "cast_id": 44, "profile_path": "/fUW0yaM0PyJyvRJhMuU7gnSsIwc.jpg", "order": 32}, {"name": "Bill Kalmenson", "character": "Hal Saunders", "id": 157119, "credit_id": "52fe47a1c3a368484e0d1c19", "cast_id": 45, "profile_path": "/cAw26JQoADDq4iSzo4NyYbrXtyg.jpg", "order": 33}, {"name": "Rob Brownstein", "character": "Landon Butler", "id": 62146, "credit_id": "52fe47a1c3a368484e0d1c1d", "cast_id": 46, "profile_path": "/a50wlUl3tBUKeSQwKDagwCFCzs1.jpg", "order": 34}, {"name": "David Sullivan", "character": "Jon Titterton", "id": 76625, "credit_id": "52fe47a1c3a368484e0d1c21", "cast_id": 47, "profile_path": "/t62pMFeVdn81HY9ephGux6deaYw.jpg", "order": 35}, {"name": "John Boyd", "character": "Lamont", "id": 58621, "credit_id": "52fe47a1c3a368484e0d1c25", "cast_id": 48, "profile_path": "/28TTucFQTEY2TU6GmKoTYP5oXTP.jpg", "order": 36}, {"name": "Yuriy Sardarov", "character": "Rossi", "id": 150672, "credit_id": "52fe47a1c3a368484e0d1c29", "cast_id": 49, "profile_path": "/kM5kbXtXEPfD76EbulrAGiAuF1u.jpg", "order": 37}, {"name": "Nikka Far", "character": "Tehran Mary", "id": 1272991, "credit_id": "52fe47a1c3a368484e0d1c2d", "cast_id": 50, "profile_path": "/fJk7RHLawTlKfU3EJ8EVkkVf3c0.jpg", "order": 38}, {"name": "Aidan Sussman", "character": "Ian Mendez", "id": 998350, "credit_id": "52fe47a1c3a368484e0d1c31", "cast_id": 51, "profile_path": "/9Ub9oqDWDQi5JImLCBWLopviMpt.jpg", "order": 39}, {"name": "Barry Livingston", "character": "David Marmor", "id": 75344, "credit_id": "52fe47a1c3a368484e0d1c35", "cast_id": 52, "profile_path": "/mttrxc8jZnd2y0qAmdSKJpSUDNe.jpg", "order": 40}, {"name": "Ali Saam", "character": "Ali Khalkhali", "id": 1272992, "credit_id": "52fe47a1c3a368484e0d1c39", "cast_id": 53, "profile_path": "/2j2GfqYvhEYSOSKRfANEVU7cpMP.jpg", "order": 41}, {"name": "Araz Vahid Ebrahim Nia", "character": "Moradi", "id": 1272993, "credit_id": "52fe47a1c3a368484e0d1c3d", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Scott Anthony Leet", "character": "The Minotaur", "id": 108699, "credit_id": "52fe47a1c3a368484e0d1c41", "cast_id": 55, "profile_path": "/exPGryvTCMBPk2WYBXqLWeLTT5J.jpg", "order": 43}, {"name": "Michael Parks", "character": "Jack Kirby", "id": 2536, "credit_id": "52fe47a1c3a368484e0d1c45", "cast_id": 56, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 44}, {"name": "Mehrdad Sarlak", "character": "Immigration Officer", "id": 1288785, "credit_id": "52fe47a1c3a368484e0d1c7f", "cast_id": 66, "profile_path": "/80Ebq49cl1ipz3WM9u9uT968tS5.jpg", "order": 45}, {"name": "Ray Haratian", "character": "Immigration Officer", "id": 965673, "credit_id": "52fe47a1c3a368484e0d1c83", "cast_id": 67, "profile_path": "/adVe7rnpnGj0P8mphL8ziG6Ld6Z.jpg", "order": 46}, {"name": "Matthew Glave", "character": "Col. Charles W. Scott", "id": 1219226, "credit_id": "52fe47a1c3a368484e0d1c87", "cast_id": 68, "profile_path": "/vrJpneVBPIeH0DjnKVpLpgpxQRr.jpg", "order": 47}, {"name": "Nancy Stelle", "character": "Swissair Flight Attendant", "id": 1115997, "credit_id": "53022af192514121a13046a0", "cast_id": 69, "profile_path": "/31yKCmHc7ArQhDDxGMIbQXVkmyH.jpg", "order": 48}], "directors": [{"name": "Ben Affleck", "department": "Directing", "job": "Director", "credit_id": "52fe47a1c3a368484e0d1b5b", "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "id": 880}], "vote_average": 6.8, "runtime": 120}, "68737": {"poster_path": "/A3SBRfCSgKNcW2IkbaaOgugLwRt.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108123265, "overview": "John Gregory, who is a seventh son of a seventh son and also the local spook, has protected he country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer's son named Thomas Ward. Will he survive the training to become the spook that so many others couldn't?", "video": false, "id": 68737, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Seventh Son", "tagline": "When darkness falls, the son will rise. When the son falls, the dark knight will rise.", "vote_count": 144, "homepage": "http://www.seventhsonmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1121096", "adult": false, "backdrop_path": "/iSGPkXh5lnOgK3ihNfxvLM9bmej.jpg", "production_companies": [{"name": "Thunder Road Pictures", "id": 3528}, {"name": "Legendary Pictures", "id": 923}, {"name": "Moving Picture Company (MPC)", "id": 20478}, {"name": "Outlaw Sinema", "id": 13444}, {"name": "Pendle Mountain Productions", "id": 40112}], "release_date": "2015-02-06", "popularity": 22.9493764652645, "original_title": "Seventh Son", "budget": 95000000, "cast": [{"name": "Jeff Bridges", "character": "Master Gregory", "id": 1229, "credit_id": "52fe47a2c3a368484e0d1d41", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Mother Malkin", "id": 1231, "credit_id": "52fe47a2c3a368484e0d1d45", "cast_id": 3, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Ben Barnes", "character": "Tom Ward", "id": 25130, "credit_id": "52fe47a2c3a368484e0d1d49", "cast_id": 4, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "Alice", "id": 227454, "credit_id": "52fe47a2c3a368484e0d1d4d", "cast_id": 5, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Kit Harington", "character": "Billy Bradley", "id": 239019, "credit_id": "53da2ce9c3a3681eee0013f8", "cast_id": 10, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 4}, {"name": "Djimon Hounsou", "character": "Radu", "id": 938, "credit_id": "547dd4aec3a3685af3004c70", "cast_id": 11, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 5}, {"name": "Olivia Williams", "character": "Mam Ward", "id": 11616, "credit_id": "547dd4b69251412d780057a9", "cast_id": 12, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 6}, {"name": "Antje Traue", "character": "Bony Lizzie", "id": 43202, "credit_id": "547dd4d9c3a3685b05005daf", "cast_id": 13, "profile_path": "/xWbtFJyN8ynIpdKNCB0KpsKldM7.jpg", "order": 7}, {"name": "Jason Scott Lee", "character": "Urag", "id": 58319, "credit_id": "547dd4e59251412d7c005cae", "cast_id": 14, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 8}, {"name": "David Cubitt", "character": "Rogue Knight", "id": 155282, "credit_id": "547dd4f192514123ef003de4", "cast_id": 15, "profile_path": "/ibAM06dGc04FL9XD0Y03k05O2sC.jpg", "order": 9}, {"name": "Eric Keenleyside", "character": "Old Guard", "id": 2250, "credit_id": "547dd4fc9251412d780057ad", "cast_id": 16, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 10}, {"name": "Thai-Hoa Le", "character": "Fisherman", "id": 1300745, "credit_id": "547dd50ac3a3685aed006312", "cast_id": 17, "profile_path": "/nQlNNcG18Ddy7ludyi3E8MwbNmF.jpg", "order": 11}, {"name": "Carmel Amit", "character": "Member of Mob", "id": 1392937, "credit_id": "547dd51692514123ef003dee", "cast_id": 18, "profile_path": "/8uTwuzwq8Ny7I0yG5bYqV4MZmCw.jpg", "order": 12}, {"name": "Gerard Plunkett", "character": "Prelate", "id": 27124, "credit_id": "547dd5229251412d780057b2", "cast_id": 19, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 13}, {"name": "Jim Shield", "character": "Leader Soldier", "id": 1328755, "credit_id": "547dd5329251412d780057b5", "cast_id": 20, "profile_path": "/wIumEHhYR8ZLKysrtG4TLVxC4hR.jpg", "order": 14}, {"name": "Timothy Webber", "character": "Malcom Ward", "id": 53720, "credit_id": "547dd541c3a3685b05005dbc", "cast_id": 21, "profile_path": "/aUB7F6LlfbWaExVRVARAfrUrcpS.jpg", "order": 15}, {"name": "Julian Black Antelope", "character": "Tomb Robber", "id": 1061054, "credit_id": "547dd54ec3a3685aed00631f", "cast_id": 22, "profile_path": "/pYtm0h1Y5FNMW2s5CqBlzVawzol.jpg", "order": 16}, {"name": "Luc Roderique", "character": "Strix", "id": 1356538, "credit_id": "547dd5ad9251412d6d005916", "cast_id": 23, "profile_path": "/jxnwn6u8RFNo9U9lcBFm0UORypT.jpg", "order": 17}, {"name": "Sean Carey", "character": "Soldier", "id": 583052, "credit_id": "547dd5c592514123ef003e0a", "cast_id": 24, "profile_path": "/cHPQ2J1ksbo2RJO6eg74EAssR0E.jpg", "order": 18}, {"name": "Fraser Aitcheson", "character": "Grave Robber", "id": 1366510, "credit_id": "547dd5d4c3a3685af90050ae", "cast_id": 25, "profile_path": "/o9kl9aGxbW8D8Kx4YKn1Pebfdlv.jpg", "order": 19}, {"name": "Zahf Paroo", "character": "Virahadra", "id": 58902, "credit_id": "547dd6f49251412d7f005a0d", "cast_id": 26, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 20}, {"name": "Loyd Catlett", "character": "Grave-robber", "id": 2277, "credit_id": "547dd7009251412d700061b9", "cast_id": 27, "profile_path": "/kdoZBvpFfVnsIsEhT76HF5Aj2zS.jpg", "order": 21}, {"name": "Primo Allon", "character": "Simon Ward", "id": 1366661, "credit_id": "547dd70ec3a3685af90050d6", "cast_id": 28, "profile_path": "/tsMc3e9Mqm0BcqWfX5pCMRDHbze.jpg", "order": 22}, {"name": "Lilah Fitzgerald", "character": "Cate Ward", "id": 584543, "credit_id": "547dd7199251412d700061bf", "cast_id": 29, "profile_path": "/tR5ZCcwhSlJLtFcx8ExbNYIR4LW.jpg", "order": 23}, {"name": "Faustino Di Bauda", "character": "Innkeeper", "id": 1368501, "credit_id": "547dd7249251412d6d005940", "cast_id": 30, "profile_path": "/fi2seiryBvvYPvk4etv2TkgrCod.jpg", "order": 24}, {"name": "Taya Clyne", "character": "Little Girl", "id": 1392949, "credit_id": "547dd733c3a3685b05005e0c", "cast_id": 31, "profile_path": "/qOkwhJTWoxZ3rVnm7KfdJebiT4Y.jpg", "order": 25}, {"name": "Billy Wickman", "character": "Young Guard", "id": 1392950, "credit_id": "547dd73f9251411f4e004697", "cast_id": 32, "profile_path": "/iEcjrowtU4xExVvk1cBGBsdOO5E.jpg", "order": 26}, {"name": "Duffy", "character": "Stray Dog", "id": 219303, "credit_id": "547dd7619251412d7c005cff", "cast_id": 34, "profile_path": "/deNVIYnej2osauRN1h0RyXz7WqY.jpg", "order": 28}, {"name": "Marcel Bridges", "character": "Jack Ward", "id": 1392952, "credit_id": "547dd76c9251412d7c005d03", "cast_id": 35, "profile_path": "/qccK707gaeEtp9G8K55Myz2UtVk.jpg", "order": 29}, {"name": "Yaroslav Poverlo", "character": "Head Counselor", "id": 1392953, "credit_id": "547dd7779251412d700061d1", "cast_id": 36, "profile_path": "/sG6h94BHWoJOGK5PqF1jSt0aZJl.jpg", "order": 30}, {"name": "Isabelle Landry", "character": "Priest's Wife", "id": 1392954, "credit_id": "547dd7889251412d7c005d08", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Jason Asuncion", "character": "Mongolian", "id": 1259945, "credit_id": "547dd795c3a3685aed006374", "cast_id": 38, "profile_path": "/nNK2UihM5M23nUpekR7IjNsMxjK.jpg", "order": 32}, {"name": "Joanne Bentley", "character": "Noblewoman", "id": 1392956, "credit_id": "547dd7a3c3a3685af0006190", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Anthony Welch", "character": "Soldier", "id": 1392957, "credit_id": "547dd7ae9251412d6d005956", "cast_id": 40, "profile_path": "/xOqwU1rkdNiNYk5l6f0fz3RwIuI.jpg", "order": 34}, {"name": "Brenda McDonald", "character": "Timeless Hag", "id": 61168, "credit_id": "553b2c219251413f5a005344", "cast_id": 55, "profile_path": "/wlRF7hHwPe3RV3TxdeLcDR1t0pS.jpg", "order": 35}], "directors": [{"name": "Sergey Bodrov", "department": "Directing", "job": "Director", "credit_id": "52fe47a2c3a368484e0d1d3d", "profile_path": "/2SWZcHMt9c02OrTqV1lXMAhx0tg.jpg", "id": 130938}], "vote_average": 5.6, "runtime": 102}, "11395": {"poster_path": "/nlO5GZTBlpv88TRf1IhtvRjgTsP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144833357, "overview": "Scott Calvin is an ordinary man, who accidentally causes Santa Claus to fall from his roof on Christmas Eve and is knocked unconscious. When he and his young son finish Santa's trip and deliveries, they go to the North Pole, where Scott learns he must become the new Santa and convince those he loves that he is indeed, Father Christmas.", "video": false, "id": 11395, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Santa Clause", "tagline": "What if your dad was Santa Claus?", "vote_count": 110, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1h8iA6i2DpPhsHC65nUB2voVnm5.jpg", "id": 53159, "name": "The Santa Clause Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0111070", "adult": false, "backdrop_path": "/ajcpbJWZTsg4fEMMuZLxoZSduJZ.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1994-11-10", "popularity": 0.448241038366939, "original_title": "The Santa Clause", "budget": 22000000, "cast": [{"name": "Tim Allen", "character": "Santa Claus / Scott Calvin", "id": 12898, "credit_id": "52fe44379251416c7502ce9b", "cast_id": 10, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Wendy Crewson", "character": "Laura Calvin Miller", "id": 19957, "credit_id": "52fe44379251416c7502ce9f", "cast_id": 11, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 1}, {"name": "Judge Reinhold", "character": "Dr. Neil Miller", "id": 777, "credit_id": "52fe44379251416c7502cea3", "cast_id": 12, "profile_path": "/oN7TsF0yFJhsoKe9KzxXEOhheci.jpg", "order": 2}, {"name": "Eric Lloyd", "character": "Charlie Calvin", "id": 27564, "credit_id": "52fe44379251416c7502cea7", "cast_id": 13, "profile_path": "/qemoEBG9JeAerb3RsXUOa2peZxQ.jpg", "order": 3}, {"name": "David Krumholtz", "character": "Bernard the Elf", "id": 38582, "credit_id": "52fe44379251416c7502ceab", "cast_id": 14, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 4}, {"name": "Paige Tamada", "character": "Judy the Elf", "id": 141801, "credit_id": "52fe44379251416c7502ceaf", "cast_id": 15, "profile_path": null, "order": 5}], "directors": [{"name": "John Pasquin", "department": "Directing", "job": "Director", "credit_id": "52fe44379251416c7502ce6d", "profile_path": null, "id": 58072}], "vote_average": 6.4, "runtime": 97}, "10708": {"poster_path": "/fApwJRtMEML829MMlAAA5w1dGhu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164433867, "overview": "Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center.", "video": false, "id": 10708, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Daddy Day Care", "tagline": "Who's your daddy?", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/x6sXJspIoqj3CWqSfv8IYxukKP9.jpg", "id": 228887, "name": "Daddy Day Camp Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317303", "adult": false, "backdrop_path": "/ovAxqg6WTlfi6QbPAJOiyHwNABM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2003-05-03", "popularity": 0.644998617942266, "original_title": "Daddy Day Care", "budget": 60000000, "cast": [{"name": "Eddie Murphy", "character": "Charlie Hinton", "id": 776, "credit_id": "52fe43a69251416c75018b77", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Jeff Garlin", "character": "Phil", "id": 60074, "credit_id": "52fe43a69251416c75018b7b", "cast_id": 2, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 1}, {"name": "Steve Zahn", "character": "Marvin", "id": 18324, "credit_id": "52fe43a69251416c75018b7f", "cast_id": 3, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 2}, {"name": "Regina King", "character": "Kim Hinton", "id": 9788, "credit_id": "52fe43a69251416c75018b83", "cast_id": 4, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 3}, {"name": "Kevin Nealon", "character": "Bruce", "id": 58478, "credit_id": "52fe43a69251416c75018b87", "cast_id": 5, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 4}, {"name": "Siobhan Fallon", "character": "Peggy", "id": 6751, "credit_id": "52fe43a69251416c75018bcd", "cast_id": 17, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 5}, {"name": "Lacey Chabert", "character": "Jenny", "id": 22082, "credit_id": "52fe43a69251416c75018bd1", "cast_id": 18, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 6}, {"name": "Jonathan Katz", "character": "Dan Kubitz", "id": 96072, "credit_id": "52fe43a69251416c75018bd5", "cast_id": 19, "profile_path": "/yidiAN21zVUhWuUGGg1waFLzi2q.jpg", "order": 7}, {"name": "Lisa Edelstein", "character": "Crispin's Mom", "id": 41420, "credit_id": "52fe43a69251416c75018bd9", "cast_id": 20, "profile_path": "/pKwsvcm1Etgue4zZyBiNEh1Ngc3.jpg", "order": 8}, {"name": "Laura Kightlinger", "character": "Sheila", "id": 61409, "credit_id": "52fe43a69251416c75018bdd", "cast_id": 21, "profile_path": "/vfBERhrH1yfyTS0tD9JJ3DkJ6JM.jpg", "order": 9}, {"name": "Leila Arcieri", "character": "Kelli", "id": 65240, "credit_id": "52fe43a69251416c75018be1", "cast_id": 22, "profile_path": "/mTg8yjkDHO6qoNxISuORh5gSfpF.jpg", "order": 10}, {"name": "Anjelica Huston", "character": "Mrs. Gwyneth Harridan", "id": 5657, "credit_id": "52fe43a69251416c75018be5", "cast_id": 23, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 11}, {"name": "Khamani Griffin", "character": "Ben Hinton", "id": 87056, "credit_id": "52fe43a69251416c75018be9", "cast_id": 24, "profile_path": "/6gpZY25Hc1B4MgBTrfgP1KxnAP5.jpg", "order": 12}, {"name": "Max Burkholder", "character": "Max", "id": 81083, "credit_id": "52fe43a69251416c75018bed", "cast_id": 25, "profile_path": "/8tM61XfapNvBnXum2WcBKlmDDeE.jpg", "order": 13}, {"name": "Arthur Young", "character": "Nicky", "id": 62563, "credit_id": "52fe43a69251416c75018bf1", "cast_id": 26, "profile_path": "/wskriBM2JwztaR7mnFbWEWB86ly.jpg", "order": 14}, {"name": "Cheap Trick", "character": "Cheap Trick", "id": 1038347, "credit_id": "52fe43a69251416c75018bf5", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Damani Roberts", "character": "German Speaking Boy", "id": 74616, "credit_id": "52fe43a69251416c75018bf9", "cast_id": 28, "profile_path": "/rMdDbBNIvF6aDHtykKyHGN8M5ht.jpg", "order": 16}], "directors": [{"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe43a69251416c75018b8d", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}], "vote_average": 5.7, "runtime": 92}, "11397": {"poster_path": "/lGOp9D7FMrMwPqGKGMXdHxCaQhh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66468332, "overview": "On a bet, a gridiron hero at John Hughes High School sets out to turn a bespectacled plain Jane into a beautiful and popular prom queen in this outrageous send-up of the teen movie genre.", "video": false, "id": 11397, "genres": [{"id": 35, "name": "Comedy"}], "title": "Not Another Teen Movie", "tagline": "They served you Breakfast. They gave you Pie. Now we\u2019re gonna stuff your face.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0277371", "adult": false, "backdrop_path": "/3hjBNPpCIBmU6ILnofzK6oOqMUT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Original Film", "id": 333}, {"name": "Neal H. Moritz Productions", "id": 2882}], "release_date": "2001-12-07", "popularity": 1.02150481139291, "original_title": "Not Another Teen Movie", "budget": 16000000, "cast": [{"name": "Chyler Leigh", "character": "Janey Briggs", "id": 69210, "credit_id": "52fe44389251416c7502cf79", "cast_id": 11, "profile_path": "/nVE6gMC5x6NhM9ALt0N3FPwt5c9.jpg", "order": 0}, {"name": "Chris Evans", "character": "Jake Wyler", "id": 16828, "credit_id": "52fe44389251416c7502cf7d", "cast_id": 12, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 1}, {"name": "Jaime Pressly", "character": "Priscilla", "id": 56824, "credit_id": "52fe44389251416c7502cf81", "cast_id": 13, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Austin", "id": 29020, "credit_id": "52fe44389251416c7502cf85", "cast_id": 14, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Mia Kirshner", "character": "Catherine Wyler", "id": 18658, "credit_id": "52fe44389251416c7502cf89", "cast_id": 15, "profile_path": "/pgQw5mlHRwWKBwLMdMj2jqiwK5D.jpg", "order": 4}, {"name": "Lacey Chabert", "character": "Amanda Becker", "id": 22082, "credit_id": "52fe44389251416c7502cf8d", "cast_id": 16, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 5}, {"name": "Cerina Vincent", "character": "Areola", "id": 52365, "credit_id": "52fe44389251416c7502cf91", "cast_id": 17, "profile_path": "/AnGfLx2gE8ZnRJrQwlXAVcednMZ.jpg", "order": 6}, {"name": "Molly Ringwald", "character": "Flight Attendant", "id": 21625, "credit_id": "52fe44389251416c7502cf95", "cast_id": 18, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 7}, {"name": "Samaire Armstrong", "character": "Kara Fratelli", "id": 19664, "credit_id": "52fe44389251416c7502cf99", "cast_id": 19, "profile_path": "/n1EvtBt47rE7VgiBNipnV589YYw.jpg", "order": 8}, {"name": "Michael Ensign", "character": "Father O'Flannagan", "id": 1080265, "credit_id": "52fe44389251416c7502cf9d", "cast_id": 20, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 9}, {"name": "Kyle Cease", "character": "Slow Clapper", "id": 40981, "credit_id": "52fe44389251416c7502cfa1", "cast_id": 21, "profile_path": "/fcVmEbnYzgkFLqrUsBIitXzWJlz.jpg", "order": 10}, {"name": "Desi Lydic", "character": "Cutie", "id": 90719, "credit_id": "530c5ad1925141141e000a15", "cast_id": 22, "profile_path": "/hefkrpjs4TtM7ogAFJnRiHkZiLw.jpg", "order": 11}, {"name": "Jackie Harris", "character": "Preston's Mother", "id": 1226913, "credit_id": "532cd319c3a3685fcb00067b", "cast_id": 23, "profile_path": "/hWhnGL9punPhCIOJ22rH0C6o6lT.jpg", "order": 12}, {"name": "Mr. T", "character": "", "id": 16619, "credit_id": "5534ea4bc3a36848ca006202", "cast_id": 24, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 13}], "directors": [{"name": "Joel Gallen", "department": "Directing", "job": "Director", "credit_id": "52fe44389251416c7502cf3f", "profile_path": null, "id": 57604}], "vote_average": 5.6, "runtime": 89}, "11400": {"poster_path": "/3PcQkXbfyJuJHQxXABLBQbt0R2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30536013, "overview": "A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.", "video": false, "id": 11400, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "The New World", "tagline": "Once discovered, it was changed forever.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402399", "adult": false, "backdrop_path": "/eJw95HMmQdOb3uGUpOeJwLLui5J.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Sunflower Productions", "id": 22253}, {"name": "Sarah Green Film", "id": 22254}, {"name": "First Foot Films", "id": 22110}, {"name": "The Virginia Company LLC", "id": 22255}], "release_date": "2005-12-25", "popularity": 0.797158554640492, "original_title": "The New World", "budget": 30000000, "cast": [{"name": "Colin Farrell", "character": "Captain Smith", "id": 72466, "credit_id": "52fe44389251416c7502d097", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Q'orianka Kilcher", "character": "Pocahontas", "id": 69225, "credit_id": "52fe44389251416c7502d09b", "cast_id": 2, "profile_path": "/6mhkgMuwtDfQCNFYttURrjeZELk.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Captain Newport", "id": 290, "credit_id": "52fe44389251416c7502d09f", "cast_id": 3, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Christian Bale", "character": "John Rolfe", "id": 3894, "credit_id": "52fe44389251416c7502d0a3", "cast_id": 4, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 3}, {"name": "August Schellenberg", "character": "Powhatan", "id": 18260, "credit_id": "52fe44389251416c7502d0a7", "cast_id": 5, "profile_path": "/iZ7dQ3JMdrWoUyh4vB8vOxhqoSI.jpg", "order": 4}, {"name": "Wes Studi", "character": "Opechancanough", "id": 15853, "credit_id": "52fe44389251416c7502d0ab", "cast_id": 6, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 5}, {"name": "David Thewlis", "character": "Wingfield", "id": 11207, "credit_id": "53356e249251410985001b72", "cast_id": 25, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 6}, {"name": "Yorick van Wageningen", "character": "Captain Argall", "id": 31387, "credit_id": "53356e6b925141445d00433b", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Ben Mendelsohn", "character": "Ben", "id": 77335, "credit_id": "52fe44389251416c7502d103", "cast_id": 21, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 8}, {"name": "Noah Taylor", "character": "Selway", "id": 1284, "credit_id": "53356e8492514144600042bd", "cast_id": 27, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 9}, {"name": "Jason Aaron Baca", "character": "Parker", "id": 1363928, "credit_id": "54159f42c3a3684cf7002055", "cast_id": 31, "profile_path": "/uHoqZxmyVYocSDCk1tX5EkSr6Da.jpg", "order": 10}, {"name": "Eddie Marsan", "character": "Eddie", "id": 1665, "credit_id": "541907afc3a3686da1000119", "cast_id": 32, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 11}], "directors": [{"name": "Terrence Malick", "department": "Directing", "job": "Director", "credit_id": "52fe44389251416c7502d0b1", "profile_path": "/4w0C0RaJ3qS6YZ7Ons6VZcEdfl7.jpg", "id": 30715}], "vote_average": 5.8, "runtime": 135}, "1900": {"poster_path": "/9qPLd5hdXIlrAyknVWK38eZyUMo.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 207515725, "overview": "An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.", "video": false, "id": 1900, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Traffic", "tagline": "No one gets away clean", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181865", "adult": false, "backdrop_path": "/1edydp18PYIaihYLfG52e3v9jwQ.jpg", "production_companies": [{"name": "Bedford Falls Productions", "id": 348}, {"name": "USA Films", "id": 987}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}], "release_date": "2000-12-27", "popularity": 0.895397746299143, "original_title": "Traffic", "budget": 48000000, "cast": [{"name": "Michael Douglas", "character": "Robert Wakefield", "id": 3392, "credit_id": "52fe431fc3a36847f803c159", "cast_id": 15, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Benicio del Toro", "character": "Javier Rodriguez", "id": 1121, "credit_id": "52fe431fc3a36847f803c15d", "cast_id": 16, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 1}, {"name": "Jacob Vargas", "character": "Manolo Sanchez", "id": 16429, "credit_id": "52fe431fc3a36847f803c161", "cast_id": 17, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 2}, {"name": "Tom\u00e1s Mili\u00e1n", "character": "Gen. Arturo Salazar", "id": 21708, "credit_id": "52fe431fc3a36847f803c165", "cast_id": 18, "profile_path": "/wylTdKie6zK1dgT5e3sZk4a1tD1.jpg", "order": 3}, {"name": "Russell G. Jones", "character": "Mark", "id": 21709, "credit_id": "52fe431fc3a36847f803c169", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Michael O'Neill", "character": "Lawery Rodman", "id": 21710, "credit_id": "52fe431fc3a36847f803c16d", "cast_id": 20, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 5}, {"name": "Catherine Zeta-Jones", "character": "Helena Ayala", "id": 1922, "credit_id": "52fe431fc3a36847f803c171", "cast_id": 21, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 6}, {"name": "Dennis Quaid", "character": "Arnie Metzger", "id": 6065, "credit_id": "52fe431fc3a36847f803c175", "cast_id": 22, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 7}, {"name": "Erika Christensen", "character": "Caroline Wakefield", "id": 21711, "credit_id": "52fe431fc3a36847f803c179", "cast_id": 23, "profile_path": "/v68rJrHWLcv49xDFScRK9TYEiFY.jpg", "order": 8}, {"name": "Don Cheadle", "character": "Montel Gordon", "id": 1896, "credit_id": "52fe431fc3a36847f803c17d", "cast_id": 24, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 9}, {"name": "Stacey Travis", "character": "Helena's Friend", "id": 31714, "credit_id": "52fe431fc3a36847f803c187", "cast_id": 26, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 10}, {"name": "Benjamin Bratt", "character": "Juan Obreg\u00f3n", "id": 4589, "credit_id": "52fe431fc3a36847f803c18b", "cast_id": 27, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 11}, {"name": "Miguel Ferrer", "character": "Eduardo Ruiz", "id": 15860, "credit_id": "52fe431fc3a36847f803c18f", "cast_id": 28, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 12}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe431fc3a36847f803c107", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.5, "runtime": 148}, "11411": {"poster_path": "/t5nNiUawamwhdWM4hHOkbj1k2km.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19300000, "overview": "With global superpowers engaged in an increasingly hostile arms race, Superman leads a crusade to rid the world of nuclear weapons. But Lex Luthor, recently sprung from jail, is declaring war on the Man of Steel and his quest to save the planet. Using a strand of Superman's hair, Luthor synthesizes a powerful ally known as Nuclear Man and ignites an epic battle spanning Earth and space.", "video": false, "id": 11411, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Superman IV: The Quest for Peace", "tagline": "Nuclear Power. In the best hands, it is dangerous. In the hands of Lex Luthor, it is pure evil. This is Superman's greatest battle. And it is for all of us.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0094074", "adult": false, "backdrop_path": "/vYrwtGFzNdRSfr2JveAfadjegym.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Cannon Films", "id": 4110}, {"name": "Golan-Globus Productions", "id": 13549}, {"name": "London-Cannon Films", "id": 6231}], "release_date": "1987-07-24", "popularity": 1.12118724303845, "original_title": "Superman IV: The Quest for Peace", "budget": 17000000, "cast": [{"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe443a9251416c7502d521", "cast_id": 19, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 0}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe443a9251416c7502d525", "cast_id": 20, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 1}, {"name": "Gene Hackman", "character": "Lex Luthor", "id": 193, "credit_id": "52fe443a9251416c7502d529", "cast_id": 21, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 2}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe443a9251416c7502d52d", "cast_id": 22, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 3}, {"name": "Marc McClure", "character": "Jimmy Olsen", "id": 1067, "credit_id": "52fe443a9251416c7502d531", "cast_id": 23, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 4}, {"name": "Jon Cryer", "character": "Lenny", "id": 69718, "credit_id": "52fe443a9251416c7502d541", "cast_id": 28, "profile_path": "/kXoEUv6pfXZGFuxVTTiuSVnac7B.jpg", "order": 5}, {"name": "Sam Wanamaker", "character": "David Warfield", "id": 21520, "credit_id": "52fe443a9251416c7502d535", "cast_id": 25, "profile_path": "/aE8H0qNiON4ZN1r7KDBgPuDSA73.jpg", "order": 6}, {"name": "Mariel Hemingway", "character": "Lacy Warfield", "id": 10447, "credit_id": "52fe443a9251416c7502d539", "cast_id": 26, "profile_path": "/lNlfYgxGwVSLC4tPJXyos02IRQC.jpg", "order": 7}, {"name": "Mark Pillow", "character": "Nuclear Man", "id": 1062160, "credit_id": "52fe443a9251416c7502d53d", "cast_id": 27, "profile_path": "/1wLBofOfETb7XTT16nbwZCHfQb7.jpg", "order": 8}, {"name": "Damian McLawhorn", "character": "Jeremy", "id": 1458949, "credit_id": "553b94dbc3a368784500a7de", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "William Hootkins", "character": "Harry Howler", "id": 663, "credit_id": "553b94e7c3a36820ec001bc6", "cast_id": 31, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Jim Broadbent", "character": "Jean Pierre Dubois", "id": 388, "credit_id": "553b94f992514112560099fe", "cast_id": 32, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 11}, {"name": "Stanley Lebor", "character": "General Romoff", "id": 27823, "credit_id": "553b9515c3a3683e55003827", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Don Fellows", "character": "Levon Hornsby", "id": 662, "credit_id": "553b9527c3a3683c4800219a", "cast_id": 34, "profile_path": "/sQgCr3xz2LVomGMKCvb7rLD9dMX.jpg", "order": 13}, {"name": "Robert Beatty", "character": "U.S. President", "id": 251, "credit_id": "553b9537c3a3682034001614", "cast_id": 35, "profile_path": "/nQrvFDN5pIo4y5qHRgsCJ3zpoQM.jpg", "order": 14}, {"name": "Bradley Lavelle", "character": "Tall Marshall", "id": 25530, "credit_id": "553b95489251416874003557", "cast_id": 36, "profile_path": "/o6TyiPASzAAVLmJB9CgT2DceZ0v.jpg", "order": 15}, {"name": "Mac McDonald", "character": "Marshall #2", "id": 33403, "credit_id": "550c90ebc3a368487200451f", "cast_id": 29, "profile_path": "/cRKziKEi6eucP7EjV4t24Gyf7Ck.jpg", "order": 16}], "directors": [{"name": "Sidney J. Furie", "department": "Directing", "job": "Director", "credit_id": "52fe443a9251416c7502d4f3", "profile_path": "/mGzfybmbXz06h5aUxW3frPtvaLH.jpg", "id": 64508}], "vote_average": 4.3, "runtime": 90}, "11412": {"poster_path": "/ibiC3QkZuzBY9EduUY4nnprOAk5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Samantha Caine, suburban homemaker, is the ideal mom to her 8 year old daughter Caitlin. She lives in Honesdale, PA, has a job teaching school and makes the best Rice Krispie treats in town. But when she receives a bump on her head, she begins to remember small parts of her previous life as a lethal, top-secret agent", "video": false, "id": 11412, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Long Kiss Goodnight", "tagline": "What's forgotten is not always gone.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116908", "adult": false, "backdrop_path": "/clje68pDYWklP50zKg7mgxa73nZ.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1996-10-11", "popularity": 0.638700042083294, "original_title": "The Long Kiss Goodnight", "budget": 65000000, "cast": [{"name": "Geena Davis", "character": "Samantha Caine / Charly Baltimore", "id": 16935, "credit_id": "52fe443b9251416c7502d5ad", "cast_id": 10, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Mitch Henessey", "id": 2231, "credit_id": "52fe443b9251416c7502d5b1", "cast_id": 12, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Yvonne Zima", "character": "Caitlin Caine", "id": 37252, "credit_id": "52fe443b9251416c7502d5b5", "cast_id": 13, "profile_path": "/1F810ZLGGFw5NJxaCb3dmiC1IyK.jpg", "order": 2}, {"name": "Craig Bierko", "character": "Timothy", "id": 14886, "credit_id": "52fe443b9251416c7502d5b9", "cast_id": 14, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 3}, {"name": "Tom Amandes", "character": "Hal", "id": 126471, "credit_id": "52fe443b9251416c7502d5bd", "cast_id": 15, "profile_path": "/xqYpos6TEoWYSqTktn7WsoHrrOa.jpg", "order": 4}, {"name": "Brian Cox", "character": "Dr. Nathan Waldman", "id": 1248, "credit_id": "52fe443b9251416c7502d5c1", "cast_id": 16, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 5}, {"name": "Patrick Malahide", "character": "Leland Perkins", "id": 8979, "credit_id": "52fe443b9251416c7502d5c5", "cast_id": 17, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 6}, {"name": "David Morse", "character": "Luke / Daedalus", "id": 52, "credit_id": "52fe443b9251416c7502d5c9", "cast_id": 18, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 7}, {"name": "Joseph McKenna", "character": "One-Eyed Jack", "id": 141458, "credit_id": "52fe443b9251416c7502d5cd", "cast_id": 19, "profile_path": "/4jDyI8L28ldmzc6RXZuucB8b95Y.jpg", "order": 8}, {"name": "Melina Kanakaredes", "character": "Trin", "id": 25972, "credit_id": "52fe443b9251416c7502d5d1", "cast_id": 20, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 9}, {"name": "Dan Warry-Smith", "character": "Raymond", "id": 141459, "credit_id": "52fe443b9251416c7502d5d5", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Kristen Bone", "character": "Girl #1", "id": 141460, "credit_id": "52fe443b9251416c7502d5d9", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Jennifer Pisana", "character": "Girl #2", "id": 141461, "credit_id": "52fe443b9251416c7502d5dd", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Rex Linn", "character": "Man in Bed", "id": 16937, "credit_id": "52fe443b9251416c7502d5e1", "cast_id": 24, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 13}, {"name": "Alan North", "character": "Earl", "id": 53584, "credit_id": "52fe443b9251416c7502d5e5", "cast_id": 25, "profile_path": "/q79hT4OeYOYzH2WIfqS6VsCmKzg.jpg", "order": 14}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe443a9251416c7502d579", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.3, "runtime": 120}, "182127": {"poster_path": "/hMyFo7nFcAQHCJf5s52poqeAMRe.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 37884, "overview": "In postwar Hong Kong, legendary Wing Chun grandmaster Ip Man is reluctantly called into action once more, when what begin as simple challenges from rival kung fu styles soon draw him into the dark and dangerous underworld of the Triads. Now, to defend life and honor, he has no choice but to fight one last time...", "video": false, "id": 182127, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Ip Man: The Final Fight", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt2495118", "adult": false, "backdrop_path": "/h7NSEaQbVC5dI8pQBuPtVP78deQ.jpg", "production_companies": [{"name": "Emperor Motion Pictures", "id": 2726}], "release_date": "2013-03-22", "popularity": 0.288618906084499, "original_title": "Yip Man: The Final Fight", "budget": 0, "cast": [{"name": "Anthony Wong", "character": "Ip Man", "id": 66717, "credit_id": "52fe4c7b9251416c7511bc45", "cast_id": 1, "profile_path": "/pCwuQUam6Xy8AhFddQFKYa74xGQ.jpg", "order": 0}, {"name": "Anita Yuen", "character": "Cheung Wing-Sing", "id": 64895, "credit_id": "52fe4c7b9251416c7511bc61", "cast_id": 9, "profile_path": "/8kp8FxH33GWtF4WxdhHhAL58SIA.jpg", "order": 1}, {"name": "Gillian Chung", "character": "Chan Sei-Mui", "id": 64433, "credit_id": "52fe4c7b9251416c7511bc49", "cast_id": 2, "profile_path": "/fPAbe8YKKZHPU88ltALNSqIHmgp.jpg", "order": 2}, {"name": "Jordan Chan Siu-Chun", "character": "Tang Sing", "id": 132739, "credit_id": "52fe4c7b9251416c7511bc71", "cast_id": 12, "profile_path": "/zmqfnUGOlnHywYaqoORcdd4wJb3.jpg", "order": 3}, {"name": "Eric Tsang", "character": "Ng Chung", "id": 26724, "credit_id": "52fe4c7b9251416c7511bc4d", "cast_id": 4, "profile_path": "/xJJZEKanRVgB7u5G3Fg7Xj9Fuoz.jpg", "order": 4}, {"name": "Jiang Lu-Xia", "character": "Lee King", "id": 112985, "credit_id": "52fe4c7b9251416c7511bc59", "cast_id": 7, "profile_path": "/njD8jYUKzkDvnmp9RO3opOCZInH.jpg", "order": 5}, {"name": "Timmy Hung", "character": "Leung Sheung", "id": 986480, "credit_id": "52fe4c7b9251416c7511bc55", "cast_id": 6, "profile_path": "/5h8d7TwgcaWnI1Qj7QeXLQjTRsQ.jpg", "order": 6}, {"name": "Zhou Chu-Chu", "character": "Jenny", "id": 142643, "credit_id": "52fe4c7b9251416c7511bc51", "cast_id": 5, "profile_path": "/uoh50MuDBx5BPfigzEyVNWVEWoK.jpg", "order": 7}, {"name": "Xiong Xin-Xin", "character": "Local Dragon", "id": 131732, "credit_id": "52fe4c7b9251416c7511bc5d", "cast_id": 8, "profile_path": "/2JK3glxoTsplb7NmB5QwpgE5ibn.jpg", "order": 8}, {"name": "Marvel Chow", "character": "Wang Dong", "id": 1439516, "credit_id": "55037ebc9251412b8d000072", "cast_id": 22, "profile_path": "/ilvoiSvNujXBlSzgYoUPODtuPXQ.jpg", "order": 9}, {"name": "Yip Chun", "character": "Stall owner with phone", "id": 1439708, "credit_id": "5503fc569251412c05000981", "cast_id": 23, "profile_path": "/t1ItZP4QEJB0Xxs0Orax4S9eVp5.jpg", "order": 10}, {"name": "Liu Kai-chi", "character": "Lee Yiu-wah", "id": 116423, "credit_id": "550534749251412c510024d2", "cast_id": 24, "profile_path": "/iukn7krLa63xMPg4iCwUreeanE.jpg", "order": 11}, {"name": "Wong Cho-lam", "character": "Blind Chan", "id": 126807, "credit_id": "55053d59c3a368252900241a", "cast_id": 25, "profile_path": "/sehshjLdbMsU8WrsZt64pSCe5L6.jpg", "order": 12}, {"name": "Jonathan Wong", "character": "Ni Tang", "id": 1440176, "credit_id": "55053fb492514174b60022e1", "cast_id": 26, "profile_path": "/v6Kzqd3mwpxb11um312y2TN58rs.jpg", "order": 13}, {"name": "Leo Au-Yeung", "character": "Fat Choi", "id": 1440183, "credit_id": "550542aec3a36825290024d1", "cast_id": 27, "profile_path": "/2S6Rq3t50bzoaGiSmBzR3ghH9Xe.jpg", "order": 14}, {"name": "Aki Chan", "character": "Worker", "id": 1440200, "credit_id": "550549399251411db40008ea", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Rose Chan Ka-Wun", "character": "", "id": 1174766, "credit_id": "55054d149251416cb7000113", "cast_id": 29, "profile_path": "/zgJDaOrlojOD9WgcdfCuCfihq2m.jpg", "order": 16}, {"name": "Cho Kwai Chee", "character": "Queen Mary Hospital Doctor", "id": 1440222, "credit_id": "55054ebac3a36862e10026dd", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Kevin Cheng Ga-Wing", "character": "young Ip Man", "id": 1140044, "credit_id": "55056e4992514174b0002885", "cast_id": 31, "profile_path": "/iK1HSYqVFObSjHP6Lo9QuZ3RGGz.jpg", "order": 18}, {"name": "Queenie Chu", "character": "So Fei", "id": 127433, "credit_id": "550571d59251416cb700035e", "cast_id": 32, "profile_path": "/b5MMR9X6dqnTkaSsAJ57cMNSVnR.jpg", "order": 19}, {"name": "Hark-On Fung", "character": "Chess Onlooker", "id": 239015, "credit_id": "5505767a92514153ba000f23", "cast_id": 33, "profile_path": "/h3lxACwwox7qoPEtKHxBNPiNYvq.jpg", "order": 20}, {"name": "Ash Gordey", "character": "Superintendent of Police", "id": 1440316, "credit_id": "55057763c3a36862dd002993", "cast_id": 34, "profile_path": "/lQAKvSP7X52fcCK5UKEgTPSw4Dk.jpg", "order": 21}, {"name": "Junlica", "character": "Worker", "id": 1440319, "credit_id": "55057920c3a36862e9002c8a", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Lam Chi Kit", "character": "Dentist", "id": 1440321, "credit_id": "550579ca92514174b600269f", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Yiu Kin Kong", "character": "Disciple of Pak Hok Pai", "id": 1440327, "credit_id": "55057b0cc3a36862e9002ccf", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "May Law Koon-Lan", "character": "Lee Yiu-wah's wife", "id": 1334856, "credit_id": "55057f6ac3a36862dd002a00", "cast_id": 38, "profile_path": "/tAPvF8WuowPCwfcmCNwGjuEyxfT.jpg", "order": 25}, {"name": "Ken Lo", "character": "Wei Batian", "id": 70690, "credit_id": "5505820292514179fb00039c", "cast_id": 39, "profile_path": "/3cxY30w6S6hraBUpCtY7S8PQhDq.jpg", "order": 26}, {"name": "Joe Luk", "character": "Luk Fu", "id": 1440436, "credit_id": "55059bbbc3a3682529002ba6", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Au Tsui Yea Maggie", "character": "Queen Mary Hospital Nurse", "id": 1440445, "credit_id": "55059c9e9251416cb70006b7", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Mang Hoi", "character": "Chess Onlooker", "id": 83556, "credit_id": "5505a026c3a36805810014a9", "cast_id": 42, "profile_path": "/c4QVmvGxkxrAkpCiTIEASBqqUky.jpg", "order": 29}, {"name": "Mulhall", "character": "Disciple", "id": 1440450, "credit_id": "5505a059c3a368262e002b2e", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Donny Ng", "character": "Ng Chan", "id": 1440451, "credit_id": "5505a116c3a3682529002c01", "cast_id": 44, "profile_path": "/xDuflnZJ595tBMB0r6IZclCPml7.jpg", "order": 31}, {"name": "Wang Qinxi", "character": "Daughter of Lee Yiu-wah", "id": 1440453, "credit_id": "5505a1959251416cb7000739", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Sebastian", "character": "Disciple", "id": 1440455, "credit_id": "5505a3cfc3a36862e1002cb6", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Kasey Tang", "character": "Worker", "id": 1440457, "credit_id": "5505a43192514153ba0012dc", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Chalie Wong", "character": "Worker", "id": 1440458, "credit_id": "5505a5579251416cb700078f", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Donny Wu", "character": "Wu Zan", "id": 1440459, "credit_id": "5505a5fcc3a36862dd002cc1", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Jia Hui Wu", "character": "Loan-shark", "id": 1440461, "credit_id": "5505a856c3a36862dd002cf5", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Xiao Lung Ding", "character": "Monkey", "id": 63581, "credit_id": "5505adc792514153ba00137f", "cast_id": 51, "profile_path": "/dFozMpN60Wr1j1HqwGvVwqj8lNB.jpg", "order": 38}, {"name": "Liang Xinwen", "character": "Daughter of Lee Yiu-wah", "id": 1440482, "credit_id": "5505af319251412c05002cea", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Xu Huang-Li", "character": "Yiu-Wah's second daughter", "id": 1440495, "credit_id": "5505b0ef9251412c05002d10", "cast_id": 53, "profile_path": "/vguyQoWvjWG19XN81R0DP7ftBdK.jpg", "order": 40}, {"name": "Lu Yang-Yang", "character": "Lee Yiu-Wah's daughter", "id": 1440505, "credit_id": "5505bcd792514174b6002b2b", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Chen Yan-Xi", "character": "Lee Yiu-Wah's son", "id": 1440506, "credit_id": "5505be34c3a3682529002db6", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Junjie Zhang", "character": "Disciple of Ip Man", "id": 1440511, "credit_id": "5505c15592514153ba0014e4", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Songwen Zhang", "character": "Yip Chun", "id": 1086250, "credit_id": "5505c6f392514174b6002bf4", "cast_id": 57, "profile_path": "/9opc3TNn0hjp7t7czKeN6RK3GvK.jpg", "order": 44}, {"name": "Lv Ziying", "character": "Son of Chan Sei Mai", "id": 1440522, "credit_id": "5505c8e892514174b6002c10", "cast_id": 58, "profile_path": null, "order": 45}], "directors": [{"name": "Herman Yau", "department": "Directing", "job": "Director", "credit_id": "52fe4c7b9251416c7511bc67", "profile_path": "/ahrznxNTlzUwO4wg10dijD8MF4I.jpg", "id": 92831}], "vote_average": 6.2, "runtime": 100}, "150689": {"poster_path": "/o1F2aloaOUufHHOsV0laA9aw9N0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.", "video": false, "id": 150689, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Cinderella", "tagline": "Midnight is just the beginning.", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1661199", "adult": false, "backdrop_path": "/xjjO3JIdneMBTsS282JffiPqfHW.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2015-03-13", "popularity": 5.3186219924769, "original_title": "Cinderella", "budget": 0, "cast": [{"name": "Lily James", "character": "Cinderella", "id": 1016168, "credit_id": "538e1d650e0a2632c9000123", "cast_id": 12, "profile_path": "/oBeTe9bKFkyDbuhGbEdp06LRR1K.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Lady Tremaine", "id": 112, "credit_id": "52fe4aea9251416c910c9e15", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Richard Madden", "character": "Prince \"Kit\" Charming", "id": 512991, "credit_id": "52fe4aea9251416c910c9e35", "cast_id": 8, "profile_path": "/fBEQiAvjmP6nYv1MyoVtQAf2OPX.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Fairy Godmother", "id": 1283, "credit_id": "52fe4aea9251416c910c9e31", "cast_id": 7, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Holliday Grainger", "character": "Anastasia", "id": 302165, "credit_id": "52fe4aea9251416c910c9e39", "cast_id": 9, "profile_path": "/1DvpsjoDK2mTT4J7MzyHOqbIkXf.jpg", "order": 4}, {"name": "Sophie McShera", "character": "Drizella", "id": 1186087, "credit_id": "52fe4aea9251416c910c9e3d", "cast_id": 10, "profile_path": "/gws3xvELfZg3cgPPUDzeYiALV4W.jpg", "order": 5}, {"name": "Hayley Atwell", "character": "Cinderella's Mother", "id": 39459, "credit_id": "538e1d710e0a2632cc000104", "cast_id": 13, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 6}, {"name": "Stellan Skarsg\u00e5rd", "character": "Grand Duke", "id": 1640, "credit_id": "538e1d7c0e0a2632bd000138", "cast_id": 14, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 7}, {"name": "Nonso Anozie", "character": "Captain", "id": 43547, "credit_id": "538e1d860e0a2632c9000125", "cast_id": 15, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 8}, {"name": "Derek Jacobi", "character": "The King", "id": 937, "credit_id": "538e1d960e0a2632c6000130", "cast_id": 16, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 9}, {"name": "Ben Chaplin", "character": "Cinderella's Father", "id": 21343, "credit_id": "54808099c3a36817a5002a06", "cast_id": 18, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 10}, {"name": "Laurie Calvert", "character": "Chief Guard Cassius", "id": 1267123, "credit_id": "548080b99251416e6c002836", "cast_id": 20, "profile_path": "/vxMKhtLG7bCkHhlar7tJiM6OPs6.jpg", "order": 11}, {"name": "Leila Wong", "character": "Princess Mei Mei", "id": 1312524, "credit_id": "548080c5c3a36829ae00290e", "cast_id": 21, "profile_path": "/fbFl7hbj7UYLrrbdKB2VddiLf8e.jpg", "order": 12}, {"name": "Rob Brydon", "character": "Master Phineus", "id": 47632, "credit_id": "550bd3c8c3a3684886003230", "cast_id": 83, "profile_path": "/cNXgoMllciglCr4QT8mdwvBjBN6.jpg", "order": 13}, {"name": "Eloise Webb", "character": "Cinderella (10 years)", "id": 1394373, "credit_id": "550bd47e925141469c003150", "cast_id": 84, "profile_path": null, "order": 14}, {"name": "Gareth Mason", "character": "Goose Coachman", "id": 1394387, "credit_id": "551e3b82c3a3682eaf001e29", "cast_id": 85, "profile_path": null, "order": 15}, {"name": "Nari Blair-Mangat", "character": "Prince's Retinue Member", "id": 229320, "credit_id": "551e3bda925141173f001e0f", "cast_id": 86, "profile_path": null, "order": 16}, {"name": "Richard McCabe", "character": "Baron", "id": 7025, "credit_id": "551e3beac3a3683a250022ac", "cast_id": 87, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 17}, {"name": "Adetomiwa Edun", "character": "Trooper", "id": 1019865, "credit_id": "551e3c03c3a3683a0d0025b3", "cast_id": 88, "profile_path": "/naNSt7oEPDHSyGoeEVwv1I43FbI.jpg", "order": 18}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe4aea9251416c910c9e2d", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 7.3, "runtime": 112}, "11430": {"poster_path": "/vDfaIoXTaQLUD5HVAv2hLIFKAcq.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Timon the meerkat and Pumbaa the warthog are best pals and the unsung heroes of the African savanna. This prequel to the smash Disney animated adventure takes you back -- way back -- before Simba's adventure began. You'll find out all about Timon and Pumbaa and tag along as they search for the perfect home and attempt to raise a rambunctious lion cub.", "video": false, "id": 11430, "genres": [{"id": 16, "name": "Animation"}], "title": "The Lion King 1\u00bd", "tagline": "You Don't Know The \u00bd Of It!", "vote_count": 168, "homepage": "", "belongs_to_collection": {"backdrop_path": "/A9IEaj9cPAwEgFnTmteB70oxgJY.jpg", "poster_path": "/y3n3SDoRDqgz3LLWuvcfi3ZiF84.jpg", "id": 94032, "name": "The Lion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0318403", "adult": false, "backdrop_path": "/pql1l2FPU5e4nPxoY2TbYaPwjLj.jpg", "production_companies": [{"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "Walt Disney Television Animation", "id": 3475}], "release_date": "2004-02-09", "popularity": 1.48434543395983, "original_title": "The Lion King 1\u00bd", "budget": 0, "cast": [{"name": "Nathan Lane", "character": "Timon", "id": 78729, "credit_id": "52fe443e9251416c7502de8f", "cast_id": 1, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 0}, {"name": "Ernie Sabella", "character": "Pumbaa", "id": 69415, "credit_id": "52fe443e9251416c7502de93", "cast_id": 2, "profile_path": "/nwdAp8FacfZ1eRU7gNkOwWvDqnc.jpg", "order": 1}, {"name": "Julie Kavner", "character": "Mom", "id": 199, "credit_id": "52fe443e9251416c7502de97", "cast_id": 3, "profile_path": "/AuhOCpsQwr09nBvTtaqArggLNd7.jpg", "order": 2}, {"name": "Jerry Stiller", "character": "Uncle Max", "id": 26042, "credit_id": "52fe443e9251416c7502de9b", "cast_id": 4, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 3}, {"name": "Matthew Broderick", "character": "Simba", "id": 4756, "credit_id": "52fe443e9251416c7502de9f", "cast_id": 5, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 4}, {"name": "Robert Guillaume", "character": "Rafiki (voice)", "id": 8294, "credit_id": "52fe443f9251416c7502dedf", "cast_id": 16, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 5}, {"name": "Moira Kelly", "character": "Nala (voice)", "id": 20005, "credit_id": "52fe443f9251416c7502dee3", "cast_id": 17, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 6}, {"name": "Whoopi Goldberg", "character": "Shenzi (voice)", "id": 2395, "credit_id": "52fe443f9251416c7502dee7", "cast_id": 18, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 7}, {"name": "Cheech Marin", "character": "Banzai (voice)", "id": 11159, "credit_id": "52fe443f9251416c7502deeb", "cast_id": 19, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 8}, {"name": "Jim Cummings", "character": "Ed (voice)", "id": 12077, "credit_id": "52fe443f9251416c7502deef", "cast_id": 20, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}, {"name": "Edward Hibbert", "character": "Zazu (voice)", "id": 84249, "credit_id": "52fe443f9251416c7502def3", "cast_id": 21, "profile_path": "/mpKpvpRM7EHgjaNNQ0PvEhBEqUu.jpg", "order": 10}, {"name": "Jason Rudofsky", "character": "Flinchy (voice)", "id": 177756, "credit_id": "52fe443f9251416c7502def7", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Matt Weinberg", "character": "Young Simba (voice)", "id": 60956, "credit_id": "52fe443f9251416c7502defb", "cast_id": 23, "profile_path": "/g0MVUMfhkyv5kcIsMOEX0LaHpQM.jpg", "order": 12}, {"name": "Corey Burton", "character": "Grumpy (voice)", "id": 35219, "credit_id": "54425a66c3a3683e08001c95", "cast_id": 27, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 13}, {"name": "Jeff Bennett", "character": "Additional Voices", "id": 34982, "credit_id": "5402d5ba0e0a2658de006ee8", "cast_id": 26, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 14}], "directors": [{"name": "Bradley Raymond", "department": "Directing", "job": "Director", "credit_id": "52fe443e9251416c7502dea5", "profile_path": "/eFJSeWaJrduYGwRNtvQXNMKONA7.jpg", "id": 69416}], "vote_average": 6.1, "runtime": 77}, "38843": {"poster_path": "/13LKcXe0gSmxNiVLMKdoeNmV9jX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When free-spirited grade-schooler Ramona Quimby's wild imagination leads her into another adventure, she plunges in with her trademark energy \u2026 and penchant for mishaps, much to the consternation of her parents and big sister Beezus.", "video": false, "id": 38843, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Ramona and Beezus", "tagline": "A Little Sister Goes A Long Way.", "vote_count": 55, "homepage": "http://www.ramonaandbeezus.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0493949", "adult": false, "backdrop_path": "/hvDaWWm1fMECcCSvfFUtB8u7NNv.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2010-07-23", "popularity": 1.11252832772911, "original_title": "Ramona and Beezus", "budget": 0, "cast": [{"name": "Selena Gomez", "character": "Beezus Quimby", "id": 77948, "credit_id": "52fe46e59251416c91063671", "cast_id": 16, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Joey King", "character": "Ramona Quimby", "id": 125025, "credit_id": "52fe46e59251416c9106362b", "cast_id": 1, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 1}, {"name": "John Corbett", "character": "Robert Quimby", "id": 38405, "credit_id": "52fe46e59251416c9106362f", "cast_id": 3, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 2}, {"name": "Bridget Moynahan", "character": "Dorothy Quimby", "id": 18354, "credit_id": "52fe46e59251416c91063633", "cast_id": 4, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 3}, {"name": "Ginnifer Goodwin", "character": "Aunt Bea", "id": 417, "credit_id": "52fe46e59251416c91063637", "cast_id": 5, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 4}], "directors": [{"name": "Elizabeth Allen", "department": "Directing", "job": "Director", "credit_id": "52fe46e59251416c91063655", "profile_path": "/8Njf10gbKo1IMan4KgK2669xJ5K.jpg", "id": 78896}], "vote_average": 6.3, "runtime": 103}, "11439": {"poster_path": "/p4HtT6IHPAVg8usYdyv8gZN8Qbm.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60222298, "overview": "A writer stumbles upon a long-hidden secret when he agrees to help former British Prime Minister Adam Lang complete his memoirs on a remote island after the politician's assistant drowns in a mysterious accident. In director Roman Polanski's tense drama, the author realizes that his discovery threatens some very powerful people who will do anything to ensure that certain episodes from Lang's past remain buried.", "video": false, "id": 11439, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Ghost Writer", "tagline": "Read between the lies.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1139328", "adult": false, "backdrop_path": "/rgi3ykaqwcC8s4FiQ8QEhdvk662.jpg", "production_companies": [{"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "R.P. Productions", "id": 355}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Runteam Ltd.", "id": 265}], "release_date": "2010-02-12", "popularity": 1.54696436514185, "original_title": "The Ghost Writer", "budget": 45000000, "cast": [{"name": "Ewan McGregor", "character": "The Ghost", "id": 3061, "credit_id": "52fe443f9251416c7502e01b", "cast_id": 4, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Pierce Brosnan", "character": "Adam Lang", "id": 517, "credit_id": "52fe443f9251416c7502e05f", "cast_id": 24, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 1}, {"name": "Jon Bernthal", "character": "Rick", "id": 19498, "credit_id": "52fe443f9251416c7502e033", "cast_id": 10, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 2}, {"name": "Kim Cattrall", "character": "Amelia", "id": 2109, "credit_id": "52fe443f9251416c7502e01f", "cast_id": 5, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 3}, {"name": "Tom Wilkinson", "character": "Paul Emmett", "id": 207, "credit_id": "52fe443f9251416c7502e023", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 4}, {"name": "Olivia Williams", "character": "Ruth Lang", "id": 11616, "credit_id": "52fe443f9251416c7502e02b", "cast_id": 8, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 5}, {"name": "Timothy Hutton", "character": "Sidney Kroll", "id": 16327, "credit_id": "52fe443f9251416c7502e027", "cast_id": 7, "profile_path": "/qSLWuXpkuuqAXzI3dQkYshXAv2O.jpg", "order": 6}, {"name": "James Belushi", "character": "John Maddox", "id": 26485, "credit_id": "52fe443f9251416c7502e02f", "cast_id": 9, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 7}, {"name": "Nyasha Hatendi", "character": "Josh", "id": 84070, "credit_id": "52fe443f9251416c7502e047", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Tim Preece", "character": "Roy", "id": 113360, "credit_id": "52fe443f9251416c7502e053", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Michael S. Ruscheinsky", "character": "The Island Reporter", "id": 84071, "credit_id": "52fe443f9251416c7502e04b", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Eben Young", "character": "FBI Agent #1", "id": 84073, "credit_id": "52fe443f9251416c7502e04f", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Jaymes Butler", "character": "FBI Officer", "id": 74225, "credit_id": "52fe443f9251416c7502e037", "cast_id": 11, "profile_path": "/eKIytH97XBE8Oe87qGsmKTifHVF.jpg", "order": 12}, {"name": "Robert Seeliger", "character": "CNN Newscaster #1", "id": 5755, "credit_id": "52fe443f9251416c7502e05b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Anna Botting", "character": "SKY TV newsreader", "id": 113361, "credit_id": "52fe443f9251416c7502e057", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Marianne Graffam", "character": "Lucy", "id": 84067, "credit_id": "52fe443f9251416c7502e03b", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "Daphne Alexander", "character": "Connie", "id": 84068, "credit_id": "52fe443f9251416c7502e03f", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Angelique Fernandez", "character": "War Crime Prosecutor", "id": 84069, "credit_id": "52fe443f9251416c7502e043", "cast_id": 14, "profile_path": null, "order": 17}, {"name": "Milton Welsh", "character": "Taxi Driver", "id": 902, "credit_id": "52fe443f9251416c7502e063", "cast_id": 25, "profile_path": "/n3BYt4bbPey6UwMGRyhlRCaaFkB.jpg", "order": 18}, {"name": "Alister Mazzotti", "character": "Protection Officer #1", "id": 16716, "credit_id": "52fe443f9251416c7502e073", "cast_id": 28, "profile_path": "/9OOhGXLSyuCZHrhDvo3uP1K914t.jpg", "order": 19}, {"name": "Eli Wallach", "character": "Old man", "id": 3265, "credit_id": "52fe443f9251416c7502e07b", "cast_id": 30, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 20}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe443f9251416c7502e011", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 6.4, "runtime": 128}, "1907": {"poster_path": "/s8iK2hsNO6Glw9a8LVfdnYItQ1B.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144056873, "overview": "British director Danny Boyle, known for the cult movie Trainspotting, makes a movie out of the bestseller and debut novel The Beach by Alex Garland.", "video": false, "id": 1907, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Beach", "tagline": "Somewhere on this planet it must exist.", "vote_count": 230, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hr", "name": "Hrvatski"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt0163978", "adult": false, "backdrop_path": "/c9KMiGDMJGw0tuc0KJsLKDFf5ot.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Figment Films", "id": 359}], "release_date": "2000-02-11", "popularity": 1.00956443730343, "original_title": "The Beach", "budget": 40000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Richard", "id": 6193, "credit_id": "52fe4320c3a36847f803c4fb", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Guillaume Canet", "character": "\u00c9tienne", "id": 19866, "credit_id": "52fe4320c3a36847f803c4ff", "cast_id": 3, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Sal", "id": 3063, "credit_id": "52fe4320c3a36847f803c503", "cast_id": 4, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Virginie Ledoyen", "character": "Fran\u00e7oise", "id": 19163, "credit_id": "52fe4320c3a36847f803c50f", "cast_id": 7, "profile_path": "/lwGZemynQGiGeCQDPc2Tb7kmXOn.jpg", "order": 3}, {"name": "Staffan Kihlbom", "character": "Christo", "id": 19867, "credit_id": "52fe4320c3a36847f803c507", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Paterson Joseph", "character": "Keaty", "id": 19868, "credit_id": "52fe4320c3a36847f803c50b", "cast_id": 6, "profile_path": "/8UipvAExpG59oYeQ8LZ5xJD4VSq.jpg", "order": 5}, {"name": "Peter Youngblood Hills", "character": "Zeph", "id": 19869, "credit_id": "52fe4320c3a36847f803c513", "cast_id": 8, "profile_path": "/gpuAUjccfnOu96Uk1crvZ5Rfk0j.jpg", "order": 6}, {"name": "Robert Carlyle", "character": "Daffy", "id": 18023, "credit_id": "52fe4320c3a36847f803c517", "cast_id": 9, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 7}, {"name": "Jerry Swindall", "character": "Sammy", "id": 19870, "credit_id": "52fe4320c3a36847f803c51b", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Lars Arentz-Hansen", "character": "Bugs", "id": 19871, "credit_id": "52fe4320c3a36847f803c51f", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jukka Hiltunen", "character": "Karl", "id": 2063, "credit_id": "52fe4320c3a36847f803c559", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Magnus Lindgren", "character": "Sten", "id": 19873, "credit_id": "52fe4320c3a36847f803c55d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Daniel York", "character": "Hustler", "id": 19874, "credit_id": "52fe4320c3a36847f803c561", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Daniel Caltagirone", "character": "Unhygienix", "id": 19875, "credit_id": "52fe4320c3a36847f803c565", "cast_id": 24, "profile_path": "/cnuEASgMkryLbTMZVNaGltibGFe.jpg", "order": 13}, {"name": "Zelda Tinska", "character": "Sonja", "id": 19876, "credit_id": "52fe4320c3a36847f803c569", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Sian Martin", "character": "", "id": 1328285, "credit_id": "53b17e000e0a2659800082c3", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4320c3a36847f803c4f7", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.3, "runtime": 119}, "44214": {"poster_path": "/9aipydFnWTBSyFBxM46rVor7FZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 327803731, "overview": "A ballet dancer wins the lead in \"Swan Lake\" and is perfect for the role of the delicate White Swan - Princess Odette - but slowly loses her mind as she becomes more and more like Odile, the Black Swan.", "video": false, "id": 44214, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Black Swan", "tagline": "In the era of personal branding, the scariest possibility is that someone might be better at being you than you are.", "vote_count": 1283, "homepage": "http://www.foxsearchlight.com/blackswan/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0947798", "adult": false, "backdrop_path": "/t8jFs6cOl1YVSfXXZivWtEb14tF.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "2010-12-02", "popularity": 1.41550056387642, "original_title": "Black Swan", "budget": 13000000, "cast": [{"name": "Natalie Portman", "character": "Nina", "id": 524, "credit_id": "52fe467ec3a36847f810219b", "cast_id": 21, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Thomas Leroy", "id": 1925, "credit_id": "52fe467ec3a36847f8102159", "cast_id": 5, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Erica", "id": 10767, "credit_id": "52fe467ec3a36847f8102165", "cast_id": 9, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Mila Kunis", "character": "Lilly", "id": 18973, "credit_id": "52fe467ec3a36847f8102151", "cast_id": 3, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 3}, {"name": "Winona Ryder", "character": "Beth MacIntyre", "id": 1920, "credit_id": "52fe467ec3a36847f8102155", "cast_id": 4, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 4}, {"name": "Chris Gartin", "character": "Handsome scott", "id": 68108, "credit_id": "52fe467ec3a36847f8102171", "cast_id": 12, "profile_path": "/uhFnE7Nj1UnqmVGeZ75QKohGFXz.jpg", "order": 5}, {"name": "Ksenia Solo", "character": "Veronica", "id": 140407, "credit_id": "52fe467ec3a36847f810215d", "cast_id": 6, "profile_path": "/f8YWCgu4Aj5tKULti8VV5jZcRSG.jpg", "order": 6}, {"name": "Toby Hemingway", "character": "Tom", "id": 60901, "credit_id": "52fe467ec3a36847f8102161", "cast_id": 8, "profile_path": "/b5ZlB5Ct7xRg4ypRjAA7mjFA1Jq.jpg", "order": 7}, {"name": "Janet Montgomery", "character": "Madeline", "id": 90755, "credit_id": "52fe467ec3a36847f8102169", "cast_id": 10, "profile_path": "/wSmjDCMwM2WSrWkeVULkBfoTYEA.jpg", "order": 8}, {"name": "Kristina Anapau", "character": "Galina", "id": 43443, "credit_id": "52fe467ec3a36847f810216d", "cast_id": 11, "profile_path": "/n3qMKBBnINi63AL9U1AIIutOLzv.jpg", "order": 9}, {"name": "Marcia Jean Kurtz", "character": "Costume Mistress", "id": 14548, "credit_id": "52fe467ec3a36847f8102175", "cast_id": 13, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 10}, {"name": "Deborah Offner", "character": "Susie", "id": 11872, "credit_id": "52fe467ec3a36847f8102179", "cast_id": 14, "profile_path": "/ywOLdDO1sXMc5ygatNxeHgg4SQo.jpg", "order": 11}, {"name": "Adriene Couvillion", "character": "Violinist", "id": 140408, "credit_id": "52fe467ec3a36847f810217d", "cast_id": 15, "profile_path": "/fbMPXElvLtOavZLjiBAYQ7XeMql.jpg", "order": 12}, {"name": "Shaun O'Hagan", "character": "Stage Manager", "id": 140409, "credit_id": "52fe467ec3a36847f8102181", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Sebastian Stan", "character": "Andrew", "id": 60898, "credit_id": "52fe467ec3a36847f8102191", "cast_id": 19, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 14}, {"name": "Benjamin Millepied", "character": "David", "id": 970088, "credit_id": "52fe467ec3a36847f810219f", "cast_id": 22, "profile_path": "/ZdGuSF6xBYZBIQq6SewGYgtHXs.jpg", "order": 15}, {"name": "Sergio Torrado", "character": "Sergio", "id": 1081121, "credit_id": "52fe467ec3a36847f81021a3", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Mark Margolis", "character": "Mr. Fithian", "id": 1173, "credit_id": "52fe467ec3a36847f81021a7", "cast_id": 24, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 17}, {"name": "Tina Sloan", "character": "Mrs. Fithian", "id": 28030, "credit_id": "52fe467ec3a36847f81021ab", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Abraham Aronofsky", "character": "Mr. Stein", "id": 1081122, "credit_id": "52fe467ec3a36847f81021af", "cast_id": 26, "profile_path": "/vqOnhVVShEqBeTiDlkYdiJzLwLk.jpg", "order": 19}, {"name": "Charlotte Aronofsky", "character": "Mrs. Stein", "id": 1081123, "credit_id": "52fe467ec3a36847f81021b3", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Sarah Hay", "character": "", "id": 1429010, "credit_id": "54e5fee19251412201000055", "cast_id": 98, "profile_path": null, "order": 21}, {"name": "Irina Dvorovenko", "character": "", "id": 1429011, "credit_id": "54e5ff1d92514121f0000078", "cast_id": 99, "profile_path": null, "order": 22}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe467ec3a36847f810214d", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 6.7, "runtime": 108}, "60599": {"poster_path": "/tn8a9qdYmUF8NMy1tmhoH4WnDXq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35485056, "overview": "A troubled hedge fund magnate, desperate to complete the sale of his trading empire, makes an error that forces him to turn to an unlikely person for help.", "video": false, "id": 60599, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Arbitrage", "tagline": "Power is the best alibi.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1764183", "adult": false, "backdrop_path": "/4yr7WC1qRoWBZa1QvS5YBz1aEGT.jpg", "production_companies": [{"name": "Lucky Monkey Pictures", "id": 11093}, {"name": "Lionsgate", "id": 1632}, {"name": "Green Room Films", "id": 12501}, {"name": "Treehouse Pictures", "id": 14580}, {"name": "Parlay Films", "id": 24934}, {"name": "LB Productions", "id": 24933}, {"name": "Artina Films", "id": 2394}, {"name": "Alvernia Studios", "id": 24930}], "release_date": "2012-09-14", "popularity": 0.467108394799215, "original_title": "Arbitrage", "budget": 12000000, "cast": [{"name": "Richard Gere", "character": "Robert Miller", "id": 1205, "credit_id": "52fe462dc3a368484e082ec7", "cast_id": 2, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Ellen Miller", "id": 4038, "credit_id": "52fe462dc3a368484e082ecf", "cast_id": 4, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Tim Roth", "character": "Det. Michael Bryer", "id": 3129, "credit_id": "52fe462dc3a368484e082ecb", "cast_id": 3, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 2}, {"name": "Brit Marling", "character": "Brooke Miller", "id": 222330, "credit_id": "52fe462dc3a368484e082ed9", "cast_id": 7, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 3}, {"name": "Monica Raymund", "character": "Reina", "id": 221600, "credit_id": "52fe462dc3a368484e082edd", "cast_id": 8, "profile_path": "/bbqP14ukes1Ya9tPTOHqw9XEPRY.jpg", "order": 4}, {"name": "Nate Parker", "character": "Jimmy Grant", "id": 77277, "credit_id": "52fe462dc3a368484e082f01", "cast_id": 15, "profile_path": "/tgE3z5WbXyaxKcgEEIaaEic988h.jpg", "order": 5}, {"name": "Bruce Altman", "character": "Chris Vogler", "id": 27545, "credit_id": "52fe462dc3a368484e082ee1", "cast_id": 9, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 6}, {"name": "Laetitia Casta", "character": "Julie Cote", "id": 119499, "credit_id": "52fe462dc3a368484e082efd", "cast_id": 14, "profile_path": "/v0H9UWF5UK0axZBU54SdKtsLl7p.jpg", "order": 7}, {"name": "Chris Eigeman", "character": "Gavin Briar", "id": 78190, "credit_id": "53691513c3a36812410066ec", "cast_id": 20, "profile_path": "/gUPkpZnACB78kRqPnFuQXK0PLjf.jpg", "order": 8}, {"name": "Larry Pine", "character": "Jeffrey Greenberg", "id": 19511, "credit_id": "5369152fc3a3681220006519", "cast_id": 21, "profile_path": "/cVw0dH0MKSu6ckFuqkbQK4rNcRI.jpg", "order": 9}, {"name": "Reg E. Cathey", "character": "Earl Monroe", "id": 38951, "credit_id": "5369153fc3a36812380061b9", "cast_id": 22, "profile_path": "/5SKwwUhSCgzggT6iRcO951e13XM.jpg", "order": 10}, {"name": "Stuart Margolin", "character": "Syd Felder", "id": 41406, "credit_id": "53971381c3a3686415005c95", "cast_id": 30, "profile_path": "/aPY5PDrURHBlZv45XXCvrijmjsx.jpg", "order": 11}, {"name": "Curtiss Cook", "character": "Det. Mills", "id": 2254, "credit_id": "539714710e0a266dc20093c9", "cast_id": 31, "profile_path": "/qX97rykGHn3wpxRkM8nSmE1Jfkj.jpg", "order": 12}, {"name": "Tibor Feldman", "character": "Judge Rittenband", "id": 1192389, "credit_id": "539715300e0a266dbb0096d3", "cast_id": 32, "profile_path": "/6NR8t0gDsgoQKtL8mYUYmuEjRq6.jpg", "order": 13}, {"name": "Austin Lysy", "character": "Peter Miller", "id": 5370, "credit_id": "5397158e0e0a266dc20093e6", "cast_id": 33, "profile_path": "/7MAYRiYplZmGlGEMBsIiHGoitX5.jpg", "order": 14}, {"name": "Gabrielle Lazure", "character": "Sandrine Cote", "id": 35082, "credit_id": "539715d70e0a266dbb0096e2", "cast_id": 34, "profile_path": "/wE7pY69b7jgXGqX8TMUgUACIrK5.jpg", "order": 15}, {"name": "Shawn Elliott", "character": "Flores", "id": 1327735, "credit_id": "539716290e0a266dbf0095cc", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Sophie Curtis", "character": "Ava Stanton", "id": 1329537, "credit_id": "5397166e0e0a266dbb0096f4", "cast_id": 36, "profile_path": "/y2uEcjwuo8GqdQw4AwK2VmqiOQ6.jpg", "order": 17}], "directors": [{"name": "Nicholas Jarecki", "department": "Directing", "job": "Director", "credit_id": "52fe462dc3a368484e082ec3", "profile_path": null, "id": 81856}], "vote_average": 5.6, "runtime": 100}, "11451": {"poster_path": "/a0zQJrWYHiUC6EzTofznsBKWzh0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66002004, "overview": "Maggie Peyton, the new owner of Number 53 - the free-wheelin' Volkswagen bug with a mind of its own - puts the car through its paces on the road to becoming a NASCAR competitor.", "video": false, "id": 11451, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Herbie Fully Loaded", "tagline": "Start your engines...", "vote_count": 100, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hgi9EeU50KFhv9pCDmJyx4VLp5G.jpg", "poster_path": "/uFvt8t7HlB6BzjiJDU6ea1eI28L.jpg", "id": 12087, "name": "Herbie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0400497", "adult": false, "backdrop_path": "/pBgGl3GfVxs84T7ZniUAz5FMMNx.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2005-06-18", "popularity": 0.870685551176827, "original_title": "Herbie Fully Loaded", "budget": 50000000, "cast": [{"name": "Lindsay Lohan", "character": "Maggie Peyton", "id": 49265, "credit_id": "52fe44429251416c7502e70d", "cast_id": 1, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Michael Keaton", "character": "Ray Peyton Sr.", "id": 2232, "credit_id": "52fe44429251416c7502e711", "cast_id": 2, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Trip Murphy", "id": 2876, "credit_id": "52fe44429251416c7502e715", "cast_id": 3, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Ray Peyton Jr.", "id": 33654, "credit_id": "52fe44429251416c7502e719", "cast_id": 4, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Justin Long", "character": "Kevin", "id": 15033, "credit_id": "52fe44429251416c7502e71d", "cast_id": 5, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 4}, {"name": "Cheryl Hines", "character": "Sally", "id": 57854, "credit_id": "52fe44429251416c7502e76f", "cast_id": 19, "profile_path": "/g6CJqdMVRENrMRiva5spTuJkWRd.jpg", "order": 5}, {"name": "Jimmi Simpson", "character": "Crash", "id": 22125, "credit_id": "52fe44429251416c7502e773", "cast_id": 20, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 6}, {"name": "Scoot McNairy", "character": "Augie", "id": 59233, "credit_id": "52fe44429251416c7502e777", "cast_id": 21, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 7}, {"name": "Thomas Lennon", "character": "Larry Murphy", "id": 539, "credit_id": "52fe44429251416c7502e77b", "cast_id": 22, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 8}, {"name": "Jill Ritchie", "character": "Charisma", "id": 22124, "credit_id": "52fe44429251416c7502e77f", "cast_id": 23, "profile_path": "/8WqoS3WJCg9Yif0Flzlaj1Ux3S2.jpg", "order": 9}, {"name": "Jeremy Roberts", "character": "Crazy Dave", "id": 15372, "credit_id": "52fe44429251416c7502e783", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "E.E. Bell", "character": "Beeman", "id": 173756, "credit_id": "52fe44429251416c7502e787", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Peter Pasco", "character": "Juan Hernandez", "id": 200145, "credit_id": "52fe44429251416c7502e78b", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Mario Larraza", "character": "Miguel Hernandez", "id": 157193, "credit_id": "52fe44429251416c7502e78f", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Patrick Cranshaw", "character": "Jimmy D.", "id": 58513, "credit_id": "52fe44429251416c7502e793", "cast_id": 28, "profile_path": "/onUKpczej5fMG84mLs3aLgQAnDJ.jpg", "order": 14}], "directors": [{"name": "Angela Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe44429251416c7502e723", "profile_path": "/fA8mw3bRWALK7ZGi0YUpDxNWVVf.jpg", "id": 7312}], "vote_average": 5.1, "runtime": 101}, "11452": {"poster_path": "/zjFnJVCDPqlL7ysBy8CXavg35Ac.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38275483, "overview": "Van Wilder is an outgoing, and extremely popular student who has been at Coolidge College for seven years. For the past three years he has made no effort to graduate, instead spending his time organizing parties, helping other students, and posing for figure drawing classes. But after seven years, with no return on his investment, Van's father decides it is time to stop paying Van's tuition.", "video": false, "id": 11452, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "National Lampoon\u2019s Van Wilder", "tagline": "Don't Graduate. Celebrate.", "vote_count": 557, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fvkR1SE5i1qUVHM5vewIf9jozcu.jpg", "poster_path": "/phxBWdWHgtUpns0XU33JbBKMgsx.jpg", "id": 43220, "name": "National Lampoon\u2019s Van Wilder Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0283111", "adult": false, "backdrop_path": "/audTjUWgmjexseDrur5iAwtJPS.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}, {"name": "Tapestry Films", "id": 870}], "release_date": "2002-03-29", "popularity": 1.44511169795176, "original_title": "National Lampoon\u2019s Van Wilder", "budget": 5000000, "cast": [{"name": "Ryan Reynolds", "character": "Van Wilder", "id": 10859, "credit_id": "52fe44439251416c7502e7c3", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Tara Reid", "character": "Gwen Pearson", "id": 1234, "credit_id": "52fe44439251416c7502e7c7", "cast_id": 2, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 1}, {"name": "Tim Matheson", "character": "Vance Wilder senior", "id": 21561, "credit_id": "52fe44439251416c7502e7cb", "cast_id": 3, "profile_path": "/iQQCtIS9bQJlQ8OMOzeidsJptAQ.jpg", "order": 2}, {"name": "Kal Penn", "character": "Taj Mahal Badalandabad", "id": 53493, "credit_id": "52fe44439251416c7502e7d5", "cast_id": 5, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 3}, {"name": "Simon Helberg", "character": "Vernon", "id": 53863, "credit_id": "52fe44439251416c7502e80f", "cast_id": 15, "profile_path": "/zic1gEH1qEMHhbm5Vxwp9J2XrAO.jpg", "order": 4}, {"name": "Teck Holmes", "character": "Hutch", "id": 155801, "credit_id": "52fe44439251416c7502e813", "cast_id": 16, "profile_path": "/od10Dh7c6qY76Rsyq93YJPgvL78.jpg", "order": 5}, {"name": "Deon Richmond", "character": "Mini Cochran", "id": 35596, "credit_id": "52fe44439251416c7502e817", "cast_id": 17, "profile_path": "/ussG1tkxeGe1iVj234A3c1MbuHo.jpg", "order": 6}, {"name": "Alex Burns", "character": "Gordon", "id": 5395, "credit_id": "52fe44439251416c7502e81b", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Paul Gleason", "character": "Professor McDoogle", "id": 7675, "credit_id": "52fe44439251416c7502e81f", "cast_id": 19, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 8}, {"name": "Daniel Cosgrove", "character": "Richard Bagg", "id": 203511, "credit_id": "52fe44439251416c7502e823", "cast_id": 20, "profile_path": "/21nO29gfTNgLHh21KMuKsCBah9i.jpg", "order": 9}, {"name": "Emily Rutherfurd", "character": "Jeannie", "id": 1233672, "credit_id": "52fe44439251416c7502e827", "cast_id": 21, "profile_path": "/1clXrlBKFAAQ7ltkMp1uogAa6Ji.jpg", "order": 10}], "directors": [{"name": "Walt Becker", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e7d1", "profile_path": "/ioshEghgcfUsaDN2rYfEJDPBUqZ.jpg", "id": 68573}], "vote_average": 6.0, "runtime": 92}, "11453": {"poster_path": "/1P8fWex0NzgtPE4cgIUDHrVSARM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22400154, "overview": "Deuce Bigalow goes to Amsterdam after a little accident including two irritating kids and a bunch of aggressive dolphins. There he meets up with his old friend T.J. Hicks. But a mysterious killer starts killing some of Amsterdam's finest gigolos and T.J. is mistaken for the extremely gay murderer. Deuce must enter the gigolo industry again to find the real murderer and clear T.J.'s name.", "video": false, "id": 11453, "genres": [{"id": 35, "name": "Comedy"}], "title": "Deuce Bigalow: European Gigolo", "tagline": "For the women of Europe... The price of love just got a lot cheaper.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/szTJbYJnm3OPwYxQKLuTtgsUsQ1.jpg", "id": 95664, "name": "Deuce Bigalow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367652", "adult": false, "backdrop_path": "/9r6hn0oASpT89WDjsJ4U10Bh0Dn.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Out of the Blue... Entertainment", "id": 879}], "release_date": "2005-08-06", "popularity": 0.655266980289341, "original_title": "Deuce Bigalow: European Gigolo", "budget": 22000000, "cast": [{"name": "Rob Schneider", "character": "Deuce Bigalow", "id": 60949, "credit_id": "52fe44439251416c7502e853", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "Eddie Griffin", "character": "T.J. Hicks", "id": 62842, "credit_id": "52fe44439251416c7502e857", "cast_id": 2, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 1}, {"name": "Jeroen Krabb\u00e9", "character": "Gaspar Voorsboch", "id": 1924, "credit_id": "52fe44439251416c7502e85b", "cast_id": 3, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 2}, {"name": "Til Schweiger", "character": "Heinz Hummer", "id": 1844, "credit_id": "52fe44439251416c7502e85f", "cast_id": 4, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 3}, {"name": "Hanna Verboom", "character": "Eva", "id": 69497, "credit_id": "52fe44439251416c7502e863", "cast_id": 5, "profile_path": "/cj3JAcQHWLUaUg9Yz2qthJGLVAf.jpg", "order": 4}, {"name": "Oded Fehr", "character": "Antoine Laconte", "id": 18041, "credit_id": "52fe44439251416c7502e8a9", "cast_id": 18, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 5}, {"name": "Carlos Ponce", "character": "Rodrigo", "id": 62067, "credit_id": "52fe44439251416c7502e8ad", "cast_id": 19, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 6}], "directors": [{"name": "Mike Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e869", "profile_path": null, "id": 69498}], "vote_average": 4.8, "runtime": 83}, "11454": {"poster_path": "/l43BtbZnLU2DaKvU7aNIZwZxpKC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8620929, "overview": "FBI Agent Will Graham, who retired after catching Hannibal Lecktor, returns to duty to engage in a risky cat-and-mouse game with Lecktor to capture a new killer. This film is based on the novel \"Red Dragon\" and predates all the later films with Anthony Hopkins as Hannibal Lecter (which also spells Lecter's name correctly).", "video": false, "id": 11454, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Manhunter", "tagline": "Enter the mind of a serial killer \u2026 you may never come back.", "vote_count": 92, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091474", "adult": false, "backdrop_path": "/pzeR3bzYhywYQW8ANROgfKPhhd7.jpg", "production_companies": [{"name": "De Laurentiis Entertainment Group (DEG)", "id": 484}], "release_date": "1986-08-14", "popularity": 0.0889086127404237, "original_title": "Manhunter", "budget": 0, "cast": [{"name": "William Petersen", "character": "Will Graham", "id": 52267, "credit_id": "52fe44439251416c7502e8d5", "cast_id": 1, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 0}, {"name": "Kim Greist", "character": "Molly Graham", "id": 387, "credit_id": "52fe44439251416c7502e8d9", "cast_id": 2, "profile_path": "/1qLn5aQeL02ysauDs1hJhL0ozfs.jpg", "order": 1}, {"name": "Dennis Farina", "character": "Jack Crawford", "id": 1117, "credit_id": "52fe44439251416c7502e8dd", "cast_id": 3, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 2}, {"name": "Brian Cox", "character": "Dr. Hannibal Lecktor", "id": 1248, "credit_id": "52fe44439251416c7502e8e1", "cast_id": 4, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Joan Allen", "character": "Reba McClane", "id": 11148, "credit_id": "52fe44439251416c7502e909", "cast_id": 11, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 4}, {"name": "Tom Noonan", "character": "Francis Dollarhyde", "id": 119232, "credit_id": "52fe44439251416c7502e90d", "cast_id": 12, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 5}, {"name": "Stephen Lang", "character": "Freddy Lounds", "id": 32747, "credit_id": "52fe44439251416c7502e911", "cast_id": 13, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 6}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e8e7", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.4, "runtime": 119}, "11455": {"poster_path": "/8LQLT5H0QZmAsbdqhwY5uCvCds3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41590893, "overview": "Two directionless musicans, a Chicano guitarist (Cheech Marin) and a White drummer (Tommy Chong), meet up in a chance encounter and embark on a series of odd adventures, including being the unwitting partcipants of a bizarre marijuana smuggling plot.", "video": false, "id": 11455, "genres": [{"id": 35, "name": "Comedy"}], "title": "Up in Smoke", "tagline": "The Movie That'll Have You Rolling in the Aisles", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tJqD18aCja9kNpZ1W2r5gZK2qdq.jpg", "poster_path": "/fhv20EC3EeLlVGsSaDpPjft9iTv.jpg", "id": 33071, "name": "Cheech & Chong Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0078446", "adult": false, "backdrop_path": "/Kgidr24QuAUy50HBn0eYR4qIc2.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1978-01-01", "popularity": 0.885350643480095, "original_title": "Up in Smoke", "budget": 0, "cast": [{"name": "Cheech Marin", "character": "Pedro De Pacas", "id": 11159, "credit_id": "52fe44439251416c7502e933", "cast_id": 1, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 0}, {"name": "Tommy Chong", "character": "Anthony 'Man' Stoner", "id": 63208, "credit_id": "52fe44439251416c7502e937", "cast_id": 2, "profile_path": "/vojsacJiMNgVozXSFD6CLSyxylX.jpg", "order": 1}, {"name": "Strother Martin", "character": "Arnold Stoner", "id": 8260, "credit_id": "52fe44439251416c7502e93b", "cast_id": 3, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 2}, {"name": "Edie Adams", "character": "Mrs. Tempest Stoner", "id": 4098, "credit_id": "52fe44439251416c7502e93f", "cast_id": 4, "profile_path": "/nR9nzWhHMZeRrk5EeJhOVhxILbk.jpg", "order": 3}, {"name": "Harold Fong", "character": "Chauffeur", "id": 137582, "credit_id": "53f72f390e0a26419b0062a1", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Richard Novo", "character": "Richard", "id": 1355576, "credit_id": "53f72f540e0a267f770076d1", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Jane Moder", "character": "Jail Bait", "id": 1355577, "credit_id": "53f72f690e0a267f8d007869", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Pam Bille", "character": "Jail Bait", "id": 1355578, "credit_id": "53f72f850e0a267f890077ac", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Arthur Roberts", "character": "Arresting Officer", "id": 120177, "credit_id": "53f72fa20e0a267f8300767d", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Tom Skerritt", "character": "Strawberry", "id": 4139, "credit_id": "53f72fc10e0a267f8d007877", "cast_id": 17, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 9}, {"name": "Stacy Keach", "character": "Sgt. Stedenko (Narc)", "id": 825, "credit_id": "53f72fdd0e0a267f8300768b", "cast_id": 18, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 10}], "directors": [{"name": "Lou Adler", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e963", "profile_path": "/191YHkoHeu9UAOJ1Qu6z8fNpxIH.jpg", "id": 69500}], "vote_average": 6.3, "runtime": 86}, "240832": {"poster_path": "/rwn876MeqienhOVSSjtUPnwxn0Z.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 458863600, "overview": "A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.", "video": false, "id": 240832, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Lucy", "tagline": "The average person uses 10% of their brain capacity. Imagine what she could do with 100%.", "vote_count": 1647, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2872732", "adult": false, "backdrop_path": "/eCgIoGvfNXrbSiQGqQHccuHjQHm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}, {"name": "EuropaCorp", "id": 6896}, {"name": "Cin\u00e9+", "id": 23616}], "release_date": "2014-07-25", "popularity": 7.04650815853768, "original_title": "Lucy", "budget": 40000000, "cast": [{"name": "Scarlett Johansson", "character": "Lucy", "id": 1245, "credit_id": "52fe4eadc3a36847f82a0ac9", "cast_id": 1, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Professor Norman", "id": 192, "credit_id": "52fe4eadc3a36847f82a0acd", "cast_id": 2, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Choi Min-sik", "character": "Mr. Jang", "id": 64880, "credit_id": "533c9c54c3a36878e6000dd6", "cast_id": 12, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 2}, {"name": "Amr Waked", "character": "Pierre Del Rio", "id": 2960, "credit_id": "533c9bb4c3a36878fb000d76", "cast_id": 11, "profile_path": "/am80pES7tfN6RgWqmuQg6e7pkiD.jpg", "order": 3}, {"name": "Julian Rhind-Tutt", "character": "The Limey", "id": 7031, "credit_id": "54255ad3c3a368698c00075d", "cast_id": 56, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 4}, {"name": "Pilou Asb\u00e6k", "character": "Richard", "id": 90060, "credit_id": "54255af4c3a368698c000760", "cast_id": 57, "profile_path": "/r0Z1eqyYcJYGy0x9MqgIKDHUrHG.jpg", "order": 5}, {"name": "Analeigh Tipton", "character": "Caroline", "id": 124644, "credit_id": "533e675fc3a368137e000dc6", "cast_id": 13, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 6}, {"name": "Nicolas Phongpheth", "character": "Jii", "id": 1367830, "credit_id": "54255b1bc3a36808760058f6", "cast_id": 58, "profile_path": "/o6sq2UAv2bpLINEato6DaueGj3D.jpg", "order": 7}, {"name": "Jan Oliver Schroeder", "character": "German Mule", "id": 1367831, "credit_id": "54255b340e0a263b7a005a02", "cast_id": 59, "profile_path": "/kTPxq6iDB1mm1oHdQEQokt7BPlj.jpg", "order": 8}, {"name": "Luca Angeletti", "character": "Italian Mule", "id": 109335, "credit_id": "547a0578925141299000294b", "cast_id": 63, "profile_path": "/nUekkscqluOKytYIW1tn20Q16UW.jpg", "order": 9}, {"name": "Lo\u00efc Brabant", "character": "Professeur", "id": 6024, "credit_id": "54dc7f59c3a3681237003558", "cast_id": 94, "profile_path": "/nKv2UNtlWIwJIiZm8m2k04EeS24.jpg", "order": 10}, {"name": "Pierre Grammont", "character": "Professeur", "id": 1426308, "credit_id": "54dc8178c3a36812370035dc", "cast_id": 95, "profile_path": "/ysoa8QA0snyArsSu6ukWfl8ixN6.jpg", "order": 11}, {"name": "Pierre Poirot", "character": "Professeur", "id": 586371, "credit_id": "54dc84be92514155bb0011cf", "cast_id": 96, "profile_path": "/9VSnofZOHksJPavsO0gdInduLgq.jpg", "order": 12}, {"name": "Bertrand Quoniam", "character": "Professeur", "id": 1426347, "credit_id": "54dc99c3925141618c003f1f", "cast_id": 97, "profile_path": "/gz9dJVnQ5WSSr7xdnLuAd4N06Dm.jpg", "order": 13}, {"name": "Pascal Loison", "character": "Drug Addict", "id": 1426348, "credit_id": "54dc9b89c3a36812240038c6", "cast_id": 98, "profile_path": "/qEwvbkJuGR3OvOD6zEggzCriCMB.jpg", "order": 14}, {"name": "Isabelle Cagnat", "character": "Airport Nurse", "id": 24769, "credit_id": "54dc9e89c3a368122d003d47", "cast_id": 100, "profile_path": "/o5l9mN1TRenYi1n6ew4Yve1E6Ed.jpg", "order": 16}, {"name": "Pierre G\u00e9rard", "character": "Airport Doctor", "id": 1318456, "credit_id": "54dc9e98c3a3683102003a99", "cast_id": 101, "profile_path": "/i3VnI6VHpDoTTGrIUsbufl6dbOg.jpg", "order": 17}, {"name": "Fr\u00e9d\u00e9ric Chau", "character": "Cabin Manager", "id": 226021, "credit_id": "54dc9fb892514101bf00075a", "cast_id": 102, "profile_path": "/9QRFgZqIv08TxaR19ouomv8FgWs.jpg", "order": 18}, {"name": "Claire Tran", "character": "Flight Attendant", "id": 1426355, "credit_id": "54dca037925141619e003e06", "cast_id": 103, "profile_path": "/w5zseHo30QTqSIYGHYF9N35QExw.jpg", "order": 19}, {"name": "Fran\u00e7ois Legrand", "character": "Business Man Plane", "id": 1366325, "credit_id": "54dca3cdc3a368123b004096", "cast_id": 104, "profile_path": "/dGerNJcOieqd6j1qkv8vlo1vYj.jpg", "order": 20}, {"name": "Bob Martet", "character": "Customs Officer", "id": 139168, "credit_id": "54dca4e692514161910042dc", "cast_id": 105, "profile_path": "/2ZD8eL43K0SEhbrqNocB4BFrm2v.jpg", "order": 21}, {"name": "C\u00e9dric Chevalme", "character": "Cop Daniel", "id": 94066, "credit_id": "54dcac87c3a3683102003c89", "cast_id": 106, "profile_path": "/42eN6L1YzPaTokfB1w6gGRgS2kS.jpg", "order": 22}, {"name": "Alexis Rangheard", "character": "Cop Robert", "id": 1426365, "credit_id": "54dcad32925141619b003c8e", "cast_id": 107, "profile_path": "/1KkVyuZQon1mlhXaBe9NjRuJ7Nx.jpg", "order": 23}, {"name": "Tonio Descanvelle", "character": "Cop Sergeant", "id": 61623, "credit_id": "54dcae6dc3a3683102003cae", "cast_id": 108, "profile_path": "/6osT2lZvotuNnk9VE9vXUhBPREE.jpg", "order": 24}, {"name": "Christophe Lavalle", "character": "Cop", "id": 226023, "credit_id": "54dcaffdc3a368122a004372", "cast_id": 109, "profile_path": "/hIpTTERDgn1VVqFwGmjVvHL3IU6.jpg", "order": 25}, {"name": "Julien Personnaz", "character": "Cop", "id": 1426372, "credit_id": "54dcb09792514161910043c4", "cast_id": 110, "profile_path": "/6rDvPCJyxASfGPKMZV5sQn38gzK.jpg", "order": 26}, {"name": "Matthew Bravais", "character": "Student", "id": 1426373, "credit_id": "54dcb16292514101bf0009a3", "cast_id": 111, "profile_path": null, "order": 27}, {"name": "Renaud Cestre", "character": "Student", "id": 1118743, "credit_id": "54dcb331c3a3681224003c3a", "cast_id": 112, "profile_path": "/pe1Sh1U3fTRxUS2DGXpfNUnPS1f.jpg", "order": 28}, {"name": "Thibault Segouin", "character": "Student", "id": 1426644, "credit_id": "54dd754bc3a3684551000bc2", "cast_id": 113, "profile_path": null, "order": 29}, {"name": "Claire Zaniolo", "character": "Student", "id": 1426645, "credit_id": "54dd7593c3a3684541000ca4", "cast_id": 114, "profile_path": null, "order": 30}, {"name": "Alessandro Giallocosta", "character": "Marco Brezzi", "id": 1138749, "credit_id": "54dd789292514103bb000667", "cast_id": 115, "profile_path": "/cXWbDDEgofYwehwEC97pn0N7CK9.jpg", "order": 31}, {"name": "Wolfgang Pissors", "character": "Berlin Custom Officer", "id": 1416230, "credit_id": "54ddebf9c3a36845410017f2", "cast_id": 116, "profile_path": "/4X4xFXuQ3M9RdXBb4CvefholXbE.jpg", "order": 32}, {"name": "Sifan Shao", "character": "Chinese Doctor", "id": 1086249, "credit_id": "54de26f492514119500019c7", "cast_id": 117, "profile_path": "/dvMRA0wtPmHYoLCQDSObOZQOWqP.jpg", "order": 33}, {"name": "Paul Chan", "character": "Taipei Surgeon", "id": 1426877, "credit_id": "54de2998925141195a001942", "cast_id": 118, "profile_path": "/76Ha64k7S2TW3CaGC8Nwu3aSxWW.jpg", "order": 34}, {"name": "I. Cheng-Sheng", "character": "Jang's Men", "id": 1426879, "credit_id": "54de2a0cc3a3684551001cfb", "cast_id": 119, "profile_path": null, "order": 35}, {"name": "Chou Chung-Wei", "character": "Jang's Men", "id": 1426883, "credit_id": "54de2a3e9251411953001925", "cast_id": 120, "profile_path": null, "order": 36}, {"name": "Huan Jhih-Cyuan", "character": "Jang's Men", "id": 1426888, "credit_id": "54de2a6dc3a3684541001e05", "cast_id": 121, "profile_path": null, "order": 37}, {"name": "Frank Ma", "character": "Jang's Men", "id": 1426893, "credit_id": "54de2aca925141027c0014ee", "cast_id": 122, "profile_path": null, "order": 38}, {"name": "Tseng Sheng-En", "character": "Jang's Men", "id": 1426895, "credit_id": "54de2b069251411956001aaa", "cast_id": 123, "profile_path": null, "order": 39}, {"name": "Liu Hsieh-Min", "character": "Mahjong Room Man", "id": 1426897, "credit_id": "54de2b3dc3a368454b0017c6", "cast_id": 124, "profile_path": null, "order": 40}, {"name": "Sandra Abouav", "character": "Prehistoric Lucy", "id": 1426899, "credit_id": "54de2b6d9251411956001ab6", "cast_id": 125, "profile_path": null, "order": 41}, {"name": "Abel Aboualiten", "character": "Prehistoric Man", "id": 1426900, "credit_id": "54de2b9f9251411950001a1a", "cast_id": 126, "profile_path": null, "order": 42}, {"name": "Ken Lin", "character": "Regent Hotel Concierge #1", "id": 1123732, "credit_id": "54de2ce9925141194b001c97", "cast_id": 127, "profile_path": "/2wQJ47jGMlolaSefPlsClwV3BCc.jpg", "order": 43}, {"name": "Feng Hsing", "character": "Lucy's Driver", "id": 1426905, "credit_id": "54de2d36925141027c001529", "cast_id": 128, "profile_path": null, "order": 44}, {"name": "Hao-Hsiang Hsu", "character": "Warehouse Man Driver", "id": 1426906, "credit_id": "54de2d969251417feb0016b6", "cast_id": 129, "profile_path": null, "order": 45}, {"name": "Laura D'Arista", "character": "Lucy's Mother (voice)", "id": 1164329, "credit_id": "54de2f06c3a3684555001a62", "cast_id": 130, "profile_path": "/nLt79Ne3f3aXkrTmm2n8Mk2cQNs.jpg", "order": 46}, {"name": "Eunyul Hong", "character": "Phone Voice Royal Suite (voice)", "id": 1426914, "credit_id": "54de2f2a9251411950001a70", "cast_id": 131, "profile_path": null, "order": 47}, {"name": "Samuel Churin", "character": "The Receptionist", "id": 1426915, "credit_id": "54de2fe0c3a3684541001eb6", "cast_id": 132, "profile_path": "/hqBiI0zjCsaKiTs5jKfOsrTjMEq.jpg", "order": 48}, {"name": "Mason Lee", "character": "Regent Hotel Concierge #2", "id": 543138, "credit_id": "54de3187c3a3684558001c05", "cast_id": 133, "profile_path": "/urYsvKa9JnJd79Evg4rDwfcRsTP.jpg", "order": 49}, {"name": "Mohammad Aslam Ansari", "character": "Fakir", "id": 1426916, "credit_id": "54de31a3c3a3684558001c10", "cast_id": 134, "profile_path": null, "order": 50}, {"name": "Kevin Dust", "character": "Native American", "id": 1196388, "credit_id": "54de32739251411956001b6e", "cast_id": 137, "profile_path": null, "order": 53}, {"name": "Diego Llano", "character": "Native American", "id": 1426917, "credit_id": "54de328d925141027c001596", "cast_id": 138, "profile_path": null, "order": 54}, {"name": "Timothy Reevis", "character": "Native American", "id": 1426918, "credit_id": "54de32eac3a3684551001df6", "cast_id": 139, "profile_path": null, "order": 55}, {"name": "German Tintaya Mamani", "character": "Native American", "id": 1426919, "credit_id": "54de3332c3a3684558001c44", "cast_id": 140, "profile_path": null, "order": 56}, {"name": "Kanneti Sawe Han", "character": "Rubik's Cube Boy", "id": 1426920, "credit_id": "54de3366c3a368537a00159e", "cast_id": 141, "profile_path": null, "order": 57}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4eadc3a36847f82a0adb", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.3, "runtime": 89}, "8292": {"poster_path": "/spb6ir8Z1PzheaxagpCELAhZG4O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92374674, "overview": "Four adopted brothers come to avenge their mother's death in what appears to be a random killing in a grocery store robbery. However, the boys' investigation of the death reveals more nefarious activities involving the one brother's business dealings with a notorious local hoodlum. Two cops who are trying to solve the case may also not be what they seem.", "video": false, "id": 8292, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Four Brothers", "tagline": "They came home to bury mom... and her killer", "vote_count": 195, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430105", "adult": false, "backdrop_path": "/atnxWxIOFLzUfmR8hLuNMObeuWY.jpg", "production_companies": [{"name": "Four Brothers Films", "id": 25710}, {"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2005-08-11", "popularity": 0.868392790600816, "original_title": "Four Brothers", "budget": 45000000, "cast": [{"name": "Mark Wahlberg", "character": "Bobby Mercer", "id": 13240, "credit_id": "52fe449dc3a36847f80a04bf", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Tyrese Gibson", "character": "Angel Mercer", "id": 8169, "credit_id": "52fe449dc3a36847f80a04c3", "cast_id": 3, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 1}, {"name": "Andr\u00e9 Benjamin", "character": "Jeremiah Mercer", "id": 37934, "credit_id": "52fe449ec3a36847f80a04c7", "cast_id": 4, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 2}, {"name": "Garrett Hedlund", "character": "Jack Mercer", "id": 9828, "credit_id": "52fe449ec3a36847f80a04cb", "cast_id": 5, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Lt. Green", "id": 18288, "credit_id": "52fe449ec3a36847f80a04cf", "cast_id": 6, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Josh Charles", "character": "Det. Fowler", "id": 2694, "credit_id": "52fe449ec3a36847f80a04d3", "cast_id": 7, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Sofi", "id": 63522, "credit_id": "52fe449ec3a36847f80a04fb", "cast_id": 14, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Fionnula Flanagan", "character": "Evelyn Mercer", "id": 58068, "credit_id": "52fe449ec3a36847f80a04ff", "cast_id": 15, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 7}, {"name": "Chiwetel Ejiofor", "character": "Victor Sweet", "id": 5294, "credit_id": "52fe449ec3a36847f80a0503", "cast_id": 16, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 8}, {"name": "Taraji P. Henson", "character": "Camille Mercer", "id": 40036, "credit_id": "52fe449ec3a36847f80a0507", "cast_id": 17, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 9}, {"name": "Barry Shabaka Henley", "character": "Councilman Douglas", "id": 8689, "credit_id": "52fe449ec3a36847f80a050b", "cast_id": 18, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 10}, {"name": "Jernard Burks", "character": "Evan", "id": 55275, "credit_id": "52fe449ec3a36847f80a050f", "cast_id": 19, "profile_path": "/uDxTWoUD79M7Hbmawp7ARexw0c1.jpg", "order": 11}, {"name": "Kenneth Welsh", "character": "Robert Bradford", "id": 6074, "credit_id": "52fe449ec3a36847f80a0513", "cast_id": 20, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 12}, {"name": "Tony Nappo", "character": "Charlie", "id": 76528, "credit_id": "52fe449ec3a36847f80a0517", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Victor A. Young", "character": "Father Lamont", "id": 1212933, "credit_id": "52fe449ec3a36847f80a0527", "cast_id": 24, "profile_path": "/1zBPxaO34RLoN2Tj5OFGuJKOl51.jpg", "order": 14}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe449dc3a36847f80a04bb", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 6.6, "runtime": 109}, "11459": {"poster_path": "/ddskSEIu1B2PwodOzZNWB5YVQzq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86369815, "overview": "Set in a world where superheroes are commonly known and accepted, young Will Stronghold, the son of the Commander and Jetstream, tries to find a balance between being a normal teenager and an extraordinary being.", "video": false, "id": 11459, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Sky High", "tagline": "Saving The World... One Homework Assignment At A Time.", "vote_count": 138, "homepage": "http://disney.go.com/disneypictures/skyhigh/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405325", "adult": false, "backdrop_path": "/quMeyMOwKUQZXrhtnlDkseaBFyr.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Buena Vista", "id": 32}], "release_date": "2005-07-29", "popularity": 0.824514827422429, "original_title": "Sky High", "budget": 35000000, "cast": [{"name": "Michael Angarano", "character": "Will Stronghold", "id": 11665, "credit_id": "52fe44449251416c7502eab9", "cast_id": 1, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Steve Stronghold / The Commander", "id": 6856, "credit_id": "52fe44449251416c7502eabd", "cast_id": 2, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Josie Stronghold / Jetstream", "id": 11164, "credit_id": "52fe44449251416c7502eac1", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Danielle Panabaker", "character": "Layla Williams", "id": 31838, "credit_id": "52fe44449251416c7502eac5", "cast_id": 4, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 3}, {"name": "Kevin Heffernan", "character": "Ron Wilson, Bus Driver", "id": 56251, "credit_id": "52fe44449251416c7502eb15", "cast_id": 19, "profile_path": "/afuCF27oMcjV8wNf6YIPXl3XZPE.jpg", "order": 4}, {"name": "Dee Jay Daniels", "character": "Ethan", "id": 69507, "credit_id": "52fe44449251416c7502eac9", "cast_id": 5, "profile_path": null, "order": 5}, {"name": "Kelly Vitz", "character": "Magenta", "id": 69508, "credit_id": "52fe44449251416c7502eacd", "cast_id": 6, "profile_path": "/vR0GGeWnB0Vb1Ite5YqDn6YC0lN.jpg", "order": 6}, {"name": "Mary Elizabeth Winstead", "character": "Gwen Grayson / Royal Pain", "id": 17628, "credit_id": "52fe44449251416c7502eb11", "cast_id": 18, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 7}, {"name": "Lynda Carter", "character": "Principal Powers", "id": 44935, "credit_id": "52fe44449251416c7502eb19", "cast_id": 20, "profile_path": "/lC89jUGkfwEm9bD732uJ2nHzavl.jpg", "order": 8}, {"name": "Bruce Campbell", "character": "Coach Boomer", "id": 11357, "credit_id": "52fe44449251416c7502ead1", "cast_id": 7, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 9}, {"name": "Steven Strait", "character": "Warren Peace", "id": 54815, "credit_id": "52fe44449251416c7502eb1d", "cast_id": 21, "profile_path": "/yL9IKHHVaDupVstNLwWWDpdhW8k.jpg", "order": 10}, {"name": "Cloris Leachman", "character": "Nurse Spex", "id": 9599, "credit_id": "52fe44449251416c7502eb21", "cast_id": 22, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 11}, {"name": "Jim Rash", "character": "Mr. Grayson / Stitches", "id": 161932, "credit_id": "52fe44449251416c7502eb25", "cast_id": 23, "profile_path": "/eWBHlcgATCzoAqNDI7xiAPi7g1d.jpg", "order": 12}, {"name": "Dave Foley", "character": "Mr. Boy", "id": 21290, "credit_id": "52fe44449251416c7502eb29", "cast_id": 24, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 13}, {"name": "Kevin McDonald", "character": "Mr. Medulla", "id": 58955, "credit_id": "52fe44449251416c7502eb2d", "cast_id": 25, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 14}, {"name": "Tom Kenny", "character": "Mr. Timmerman", "id": 78798, "credit_id": "52fe44449251416c7502eb31", "cast_id": 26, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 15}, {"name": "Patrick Warburton", "character": "Royal Pain (voice)", "id": 9657, "credit_id": "52fe44449251416c7502eb35", "cast_id": 27, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 16}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe44449251416c7502ead7", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.8, "runtime": 100}, "11460": {"poster_path": "/tc83C6riJLNbZhfYgzpBd93oRp3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57891803, "overview": "After attending the funeral of her grandmother in Dallas, the Lux Atlantic Hotel manager Lisa is waiting for a flight to Miami. Due to the bad weather and consequent flight delay, she meets in the airport bar Jack Rippner, who is also in the waiting list. They sit together in the plane, and Jack reveals that he wants Lisa to change the room in Lux of an important American politician to facilitate a terrorist attempt against him. Otherwise, Lisa's father will be killed by a hit man. Lisa has to decide what to do with the menacing man at her side.", "video": false, "id": 11460, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Red Eye", "tagline": "Fear takes flight.", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421239", "adult": false, "backdrop_path": "/zgqm6rDn2CMVGplLieJ1XCneKCm.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "BenderSpink", "id": 6363}, {"name": "Craven-Maddalena Films", "id": 1600}], "release_date": "2005-08-04", "popularity": 0.618893302796747, "original_title": "Red Eye", "budget": 26000000, "cast": [{"name": "Rachel McAdams", "character": "Lisa Reisert", "id": 53714, "credit_id": "52fe44449251416c7502eb77", "cast_id": 1, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Cillian Murphy", "character": "Jackson Rippner", "id": 2037, "credit_id": "52fe44449251416c7502eb7b", "cast_id": 2, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 1}, {"name": "Brian Cox", "character": "Joe Reisert", "id": 1248, "credit_id": "52fe44449251416c7502eb7f", "cast_id": 3, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 2}, {"name": "Jayma Mays", "character": "Cynthia", "id": 34195, "credit_id": "52fe44449251416c7502eb83", "cast_id": 4, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 3}, {"name": "Laura Johnson", "character": "Blonde Woman", "id": 42186, "credit_id": "52fe44449251416c7502eb87", "cast_id": 5, "profile_path": "/cJouqkND1HvXASNaOi0brmDjGI9.jpg", "order": 4}, {"name": "Max Kasch", "character": "Headphone Kid", "id": 52939, "credit_id": "52fe44449251416c7502ebd3", "cast_id": 18, "profile_path": "/4NzNJEJ6NWU40GKO6BS1Ne6ECNL.jpg", "order": 5}, {"name": "Angela Paton", "character": "Nice Lady", "id": 1537, "credit_id": "52fe44449251416c7502ebd7", "cast_id": 19, "profile_path": "/eJZpJyEuMT4mQ8d8tbU0addZ1kD.jpg", "order": 6}, {"name": "Suzie Plakson", "character": "Senior Flight Attendant", "id": 8266, "credit_id": "52fe44449251416c7502ebdb", "cast_id": 20, "profile_path": "/ngAW6Wue6z5LtGN00C6dwGfNm4V.jpg", "order": 7}, {"name": "Jack Scalia", "character": "Charles Keefe", "id": 58792, "credit_id": "52fe44449251416c7502ebdf", "cast_id": 21, "profile_path": "/uOKlOhx0OplrqQ8g7DIRLbxlGXo.jpg", "order": 8}, {"name": "Robert Pine", "character": "Bob Taylor", "id": 74573, "credit_id": "52fe44449251416c7502ebe3", "cast_id": 22, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 9}, {"name": "Carl Gilliard", "character": "Taxi Driver", "id": 155308, "credit_id": "52fe44449251416c7502ebe7", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Mary Kathleen Gordon", "character": "Airline Representative", "id": 562701, "credit_id": "52fe44449251416c7502ebeb", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Loren Lester", "character": "Irate Passenger", "id": 34979, "credit_id": "52fe44449251416c7502ebef", "cast_id": 25, "profile_path": "/9X2b77dNQhfZmpdgnK9H5KzQLf1.jpg", "order": 12}, {"name": "Philip Pavel", "character": "Dallas Ticket Agent", "id": 20754, "credit_id": "52fe44449251416c7502ebf3", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Amber Mead", "character": "Dallas Ticket Agent", "id": 205394, "credit_id": "52fe44449251416c7502ebf7", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Dey Young", "character": "Dallas Gate Agent", "id": 39568, "credit_id": "52fe44449251416c7502ebfb", "cast_id": 28, "profile_path": "/lre6y4tsk304L5C72MFph1glCYl.jpg", "order": 15}, {"name": "Brittany Oaks", "character": "Rebecca", "id": 982705, "credit_id": "52fe44449251416c7502ebff", "cast_id": 29, "profile_path": "/y2qMh6T6dqTQ1Icga2H6zLr61sr.jpg", "order": 16}, {"name": "Jeanine Jackson", "character": "Passenger with Iced Mocha", "id": 152355, "credit_id": "52fe44449251416c7502ec03", "cast_id": 30, "profile_path": "/aTPsYoKNIZFZKche4OGOPoyd639.jpg", "order": 17}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe44449251416c7502eb8d", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.1, "runtime": 85}, "11467": {"poster_path": "/AgaHBiG3Drkl7lWCjtrYj1oLpKY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the midst of a nasty public breakup of married movie stars, a studio publicist scrambles to put a cap on the escalating situation as the couple's latest film has found it's only print kidnapped by the director.", "video": false, "id": 11467, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "America's Sweethearts", "tagline": "Hollywood's hottest couple just split up. It'll take more than special effects to reunite them.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265029", "adult": false, "backdrop_path": "/lcpb3uG2xgB57QeITb0HDKdHaJM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Roth-Arnold Productions", "id": 1560}], "release_date": "2001-07-17", "popularity": 0.321425651357402, "original_title": "America's Sweethearts", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Kathleen \"Kiki\" Harrison", "id": 1204, "credit_id": "52fe44469251416c7502ef49", "cast_id": 10, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Lee Phillips", "id": 7904, "credit_id": "52fe44469251416c7502ef4d", "cast_id": 11, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Gwen Harrison", "id": 1922, "credit_id": "52fe44469251416c7502ef51", "cast_id": 12, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "John Cusack", "character": "Eddie Thomas", "id": 3036, "credit_id": "52fe44469251416c7502ef55", "cast_id": 13, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 3}, {"name": "Hank Azaria", "character": "Hector Gorgonzolas", "id": 5587, "credit_id": "52fe44469251416c7502ef59", "cast_id": 14, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Stanley Tucci", "character": "Dave Kingman", "id": 2283, "credit_id": "52fe44469251416c7502ef5d", "cast_id": 15, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 5}, {"name": "Christopher Walken", "character": "Hal Weidmann", "id": 4690, "credit_id": "52fe44469251416c7502ef61", "cast_id": 16, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 6}, {"name": "Alan Arkin", "character": "Wellness Guide", "id": 1903, "credit_id": "52fe44469251416c7502ef65", "cast_id": 17, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 7}, {"name": "Seth Green", "character": "Danny Wax", "id": 13922, "credit_id": "52fe44469251416c7502ef69", "cast_id": 18, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 8}, {"name": "Rainn Wilson", "character": "Dave O'Hanlon", "id": 11678, "credit_id": "52fe44469251416c7502ef6d", "cast_id": 19, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 9}, {"name": "Eric Balfour", "character": "Security Guard", "id": 34489, "credit_id": "52fe44469251416c7502ef71", "cast_id": 20, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 10}, {"name": "Scot Zeller", "character": "Davis", "id": 149740, "credit_id": "52fe44469251416c7502ef75", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Larry King", "character": "Himself", "id": 44127, "credit_id": "52fe44469251416c7502ef79", "cast_id": 22, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 12}, {"name": "Steve Pink", "character": "Limo Driver", "id": 3227, "credit_id": "52fe44469251416c7502ef7d", "cast_id": 23, "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "order": 13}, {"name": "Eric Balfour", "character": "Security Guard", "id": 34489, "credit_id": "52fe44469251416c7502ef81", "cast_id": 24, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 14}, {"name": "Marty Belafsky", "character": "Security Guard", "id": 60634, "credit_id": "52fe44469251416c7502ef85", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Keri Lynn Pratt", "character": "Leaf Weidmann", "id": 77803, "credit_id": "52fe44469251416c7502ef89", "cast_id": 26, "profile_path": "/qLrUKUM4GEzCuq5VTUFQNaJOB3Z.jpg", "order": 16}, {"name": "Maria Canals-Barrera", "character": "Adinah", "id": 85759, "credit_id": "52fe44469251416c7502ef8d", "cast_id": 27, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 17}], "directors": [{"name": "Joe Roth", "department": "Directing", "job": "Director", "credit_id": "52fe44469251416c7502ef15", "profile_path": "/yJlpAAKxe0FFpzPaICtudNVPHSA.jpg", "id": 18311}], "vote_average": 5.5, "runtime": 102}, "68812": {"poster_path": "/wX1DKsaCm8IjGQAIFuAyM6yvCWI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1969193, "overview": "The true story of Richard Kuklinski, the notorious contract killer and family man.", "video": false, "id": 68812, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Iceman", "tagline": "Loving husband. Devoted father. Ruthless killer.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1491044", "adult": false, "backdrop_path": "/cR7lFfi0swhnfx4bZADohHVW7wh.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Bleiberg Entertainment", "id": 1872}], "release_date": "2012-09-01", "popularity": 0.932841263695291, "original_title": "The Iceman", "budget": 20000000, "cast": [{"name": "Michael Shannon", "character": "Richard Kuklinski", "id": 335, "credit_id": "52fe47a7c3a368484e0d2a5d", "cast_id": 5, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Deborah Kuklinski", "id": 1920, "credit_id": "52fe47a7c3a368484e0d2a61", "cast_id": 6, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Roy Demeo", "id": 11477, "credit_id": "52fe47a7c3a368484e0d2a69", "cast_id": 8, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Chris Evans", "character": "Robert Pronge", "id": 16828, "credit_id": "52fe47a7c3a368484e0d2a65", "cast_id": 7, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 3}, {"name": "David Schwimmer", "character": "Josh Rosenthal", "id": 14409, "credit_id": "52fe47a7c3a368484e0d2a6d", "cast_id": 9, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 4}, {"name": "James Franco", "character": "Marty Freeman", "id": 17051, "credit_id": "52fe47a7c3a368484e0d2a59", "cast_id": 3, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 5}, {"name": "Stephen Dorff", "character": "Joey Kuklinski", "id": 10822, "credit_id": "52fe47a7c3a368484e0d2a71", "cast_id": 10, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 6}, {"name": "Robert Davi", "character": "Leo Marks", "id": 2055, "credit_id": "52fe47a7c3a368484e0d2a75", "cast_id": 11, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 7}, {"name": "John Ventimiglia", "character": "Mickey Scicoli", "id": 87707, "credit_id": "52fe47a7c3a368484e0d2a79", "cast_id": 12, "profile_path": "/ws3R1TndkITQMGBariX3UaUjqXP.jpg", "order": 8}, {"name": "Danny A. Abeckaser", "character": "Dino Lapron (as Danny Abeckaser)", "id": 131946, "credit_id": "547f22c792514124ad0015e6", "cast_id": 21, "profile_path": "/ryDEgy5y8YRfwoyiSGJxtc7ZLAy.jpg", "order": 9}, {"name": "Ryan O'Nan", "character": "Terry Franzo", "id": 142192, "credit_id": "547f22db92514124bb001671", "cast_id": 22, "profile_path": "/sXZOZiVoAm4kKR437AoLECfxBNi.jpg", "order": 10}, {"name": "McKaley Miller", "character": "Anabel", "id": 1355176, "credit_id": "547f22ebc3a368395e001758", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Hector Hank", "character": "Tender Bar Earl", "id": 136139, "credit_id": "547f235092514124bf0014da", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Zoran Radanovich", "character": "Jimmy", "id": 945442, "credit_id": "547f2363c3a36839650015af", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Shira Vilensky", "character": "Coffee Shop Waitress", "id": 1245982, "credit_id": "547f2371c3a368396f0017e1", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Kelly Lind", "character": "Hospital Nurse", "id": 1393517, "credit_id": "547f238dc3a368396f0017e7", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "John P. Fertitta", "character": "Uncle Bill (as John Fertitta)", "id": 1190851, "credit_id": "547f239d92514124b6001711", "cast_id": 28, "profile_path": "/ym9cir7KWJcdq8otWzaPC8bg10l.jpg", "order": 16}, {"name": "Erin Cummings", "character": "Ellen", "id": 113734, "credit_id": "547f23a992514124b30015e4", "cast_id": 29, "profile_path": "/76bNbceGypp8j8OEtVFOFraPtnm.jpg", "order": 17}, {"name": "Jimmy Lee Jr.", "character": "Homeless Man", "id": 1393519, "credit_id": "547f23c192514124ad001605", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Johnny Martin", "character": "Mareilli", "id": 63423, "credit_id": "547f23d192514124bb00168f", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Nick Gomez", "character": "Alvaro", "id": 84760, "credit_id": "547f23df92514124b900158b", "cast_id": 32, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 20}, {"name": "Vincent Fuentes", "character": "JC", "id": 1393520, "credit_id": "547f23edc3a36839610012b4", "cast_id": 33, "profile_path": "/aVkkvyAEON8lZuFhwDLAYRHPJp5.jpg", "order": 21}, {"name": "Brian Kinney", "character": "Slick BMW Guy", "id": 1393521, "credit_id": "547f23f992514124b9001590", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Ashlynn Ross", "character": "Alex", "id": 978996, "credit_id": "547f240692514124b9001596", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Weronika Rosati", "character": "Livi", "id": 235492, "credit_id": "547f241bc3a3683968001476", "cast_id": 36, "profile_path": "/zhjhBfASgzV7vEuvE2ldjyCc0hW.jpg", "order": 24}, {"name": "Christa Campbell", "character": "Adele", "id": 85178, "credit_id": "547f2429c3a368395e00176e", "cast_id": 37, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 25}, {"name": "Alexandra Doke", "character": "Park Little Girl", "id": 1123267, "credit_id": "547f2436c3a368396f001801", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Bill Martin Williams", "character": "Club Maitre D'", "id": 1271773, "credit_id": "547f244492514124ad001612", "cast_id": 39, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 27}, {"name": "Lindsay Clift", "character": "Club USA Dance Partner (as Lindsay Erin Clift)", "id": 1393522, "credit_id": "547f2451c3a368396800147c", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Katarzyna Wolejnio", "character": "Romy", "id": 90113, "credit_id": "547f246492514124ad001614", "cast_id": 41, "profile_path": "/fvPALtfjqN7FbCdpbm4IbrhoADw.jpg", "order": 29}, {"name": "Jay Giannone", "character": "Dominick Provenzano", "id": 170240, "credit_id": "547f247192514124aa00176e", "cast_id": 42, "profile_path": "/5T3PAzHKZudfot8FNY9hXqAjYgb.jpg", "order": 30}, {"name": "Freddy Bosche", "character": "Detective Beaumont", "id": 1393524, "credit_id": "547f247fc3a368396f001809", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Tim Bell", "character": "Cop", "id": 186922, "credit_id": "547f248cc3a368396f001813", "cast_id": 44, "profile_path": "/vLVgOTnJnigcPkm8kYOL6JAv2B9.jpg", "order": 32}, {"name": "Garrett Kruithof", "character": "Stanley Kuklinski", "id": 1272847, "credit_id": "547f249d92514124af0014bf", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Ray Gaspard", "character": "Dennis", "id": 1346619, "credit_id": "547f24a8c3a368396c001784", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Juan Michael Konshuk-Mas", "character": "Mr. Freezy's Son", "id": 1393525, "credit_id": "547f24b6c3a368396f00181e", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Ehud Bleiberg", "character": "Trial Judge", "id": 36999, "credit_id": "547f24c292514124ad001619", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Jonathan Vender", "character": "Trial Judge (voice)", "id": 1393526, "credit_id": "547f24cf92514124b6001736", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Tommy Alastra", "character": "", "id": 1393527, "credit_id": "547f24dac3a36839610012ca", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Tommy Alastra", "character": "Documentary Interviewer (voice)", "id": 1393527, "credit_id": "547f24e4c3a368395c0018e1", "cast_id": 51, "profile_path": null, "order": 39}], "directors": [{"name": "Ariel Vromen", "department": "Directing", "job": "Director", "credit_id": "52fe47a7c3a368484e0d2a4f", "profile_path": null, "id": 81476}], "vote_average": 6.4, "runtime": 105}, "11469": {"poster_path": "/xJnGEOnYUelD6wLgpQfNg5tq8jV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Martin Lawrence plays Jamal, an employee in Medieval World amusement park. After sustaining a blow to the head, he awakens to find himself in 14th century England.", "video": false, "id": 11469, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Black Knight", "tagline": "It's only a flesh wound!", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265087", "adult": false, "backdrop_path": "/7cRdp2KZWz1RZLpP603k4y3vSQq.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2001-11-21", "popularity": 0.526090580394564, "original_title": "Black Knight", "budget": 0, "cast": [{"name": "Martin Lawrence", "character": "Skywalker", "id": 78029, "credit_id": "52fe44469251416c7502f03f", "cast_id": 1, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Jamal Walker", "id": 78029, "credit_id": "52fe44469251416c7502f043", "cast_id": 2, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "Marsha Thomason", "character": "Victoria the Chambermaid / Nicole", "id": 36219, "credit_id": "52fe44469251416c7502f047", "cast_id": 3, "profile_path": "/idSdwvSs3f6U8WjjccVhvrxOY7l.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Sir Knolte of Marlborough", "id": 207, "credit_id": "52fe44469251416c7502f04b", "cast_id": 4, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Vincent Regan", "character": "Percival, Leo's Chief Henchman", "id": 9831, "credit_id": "52fe44469251416c7502f04f", "cast_id": 5, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 4}, {"name": "Daryl Mitchell", "character": "Steve", "id": 15028, "credit_id": "52fe44469251416c7502f053", "cast_id": 6, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 5}, {"name": "Michael Countryman", "character": "Phillip, Leo's Chamberlain", "id": 121939, "credit_id": "542de1730e0a261fe2000a6f", "cast_id": 13, "profile_path": "/dkjaMJzyHUiXHBGJM1jYE4k9cMg.jpg", "order": 6}, {"name": "Kevin Conway", "character": "King Leo", "id": 27116, "credit_id": "542de1e1c3a36859de000a91", "cast_id": 14, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 7}, {"name": "Kevin Conway", "character": "Derek", "id": 27116, "credit_id": "542de3710e0a261fdc000a4a", "cast_id": 15, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 8}], "directors": [{"name": "Gil Junger", "department": "Directing", "job": "Director", "credit_id": "52fe44469251416c7502f059", "profile_path": null, "id": 40243}], "vote_average": 5.5, "runtime": 95}, "11470": {"poster_path": "/4RuaJhF4Gw0W1pdpIJi91ZBe17.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16000000, "overview": "In the year 2455, Old Earth is now a contaminated planet abandoned for centuries -- a brown world of violent storms, toxic landmasses and poisonous seas. Yet humans have returned to the deadly place that they once fled, not to live, but to research the ancient, rusting artifacts of the long-gone civilizations. But it's not the harmful environment that could prove fatal to the intrepid, young explorers who have just landed on Old Earth. For them, it's Friday the 13th, and Jason lives!", "video": false, "id": 11470, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Jason X", "tagline": "Evil has an upgrade.", "vote_count": 56, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0211443", "adult": false, "backdrop_path": "/4ZllCdF83k95CJUzQ4f6eEoxSL0.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Crystal Lake Entertainment", "id": 21783}, {"name": "Sean S. Cunningham Films", "id": 17611}], "release_date": "2001-07-24", "popularity": 0.351501425626691, "original_title": "Jason X", "budget": 11000000, "cast": [{"name": "Kane Hodder", "character": "Jason Voorhees / Uber-Jason", "id": 62596, "credit_id": "52fe44469251416c7502f09f", "cast_id": 1, "profile_path": "/1bTc6ACp6bLCBhhfNUZyqwnZ5fY.jpg", "order": 0}, {"name": "Lexa Doig", "character": "Rowan", "id": 69574, "credit_id": "52fe44469251416c7502f0a3", "cast_id": 3, "profile_path": "/oLhVcnb2iVXmE25nCXBlDwdfKs4.jpg", "order": 1}, {"name": "Chuck Campbell", "character": "Tsunaron", "id": 69575, "credit_id": "52fe44469251416c7502f0a7", "cast_id": 4, "profile_path": "/yiZPuDleA8oV7EF4wuDolWERY1X.jpg", "order": 2}, {"name": "Lisa Ryder", "character": "Kay-Em 14", "id": 69576, "credit_id": "52fe44469251416c7502f0ab", "cast_id": 5, "profile_path": "/j1cMrorXonNR1gKqQrDaxcLOJyX.jpg", "order": 3}, {"name": "David Cronenberg", "character": "Dr. Wimmer", "id": 224, "credit_id": "52fe44479251416c7502f0d3", "cast_id": 12, "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "order": 4}, {"name": "Markus Parilo", "character": "Sgt. Marcus (as Marcus Parilo)", "id": 180916, "credit_id": "52fe44479251416c7502f0d7", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Jonathan Potts", "character": "Professor Lowe", "id": 23534, "credit_id": "52fe44479251416c7502f0db", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Dov Tiefenbach", "character": "Azrael", "id": 44176, "credit_id": "52fe44479251416c7502f0df", "cast_id": 15, "profile_path": "/duaQFXOy3WcUrE20J5f75tH1Hb.jpg", "order": 7}, {"name": "Melyssa Ade", "character": "Janessa", "id": 85926, "credit_id": "52fe44479251416c7502f0e3", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Todd Farmer", "character": "Dallas", "id": 61117, "credit_id": "52fe44479251416c7502f0e7", "cast_id": 17, "profile_path": "/xMd0pkgpgjfLwKX01mXpW68eYAu.jpg", "order": 9}], "directors": [{"name": "James Isaac", "department": "Directing", "job": "Director", "credit_id": "52fe44479251416c7502f0b1", "profile_path": "/j1j2q5iVzPptPNr1p9NluULP89L.jpg", "id": 69579}], "vote_average": 4.5, "runtime": 91}, "68817": {"poster_path": "/kDpo6G7rYRHQ1bFhyLiJEW9ESPO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "City kid Ren MacCormack moves to a small town where rock 'n' roll and dancing have been banned, and his rebellious spirit shakes up the populace.", "video": false, "id": 68817, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Footloose", "tagline": "There comes a time to cut loose.", "vote_count": 83, "homepage": "http://www.footloosemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1068242", "adult": false, "backdrop_path": "/cH19PJpfgxpVDr4UYOH3ARtgb7z.jpg", "production_companies": [{"name": "Spyglass Entertainment", "id": 158}, {"name": "MTV Films", "id": 746}], "release_date": "2011-10-06", "popularity": 0.422471628714508, "original_title": "Footloose", "budget": 25000000, "cast": [{"name": "Kenny Wormald", "character": "Ren MacCormack", "id": 83276, "credit_id": "52fe47a8c3a368484e0d2d71", "cast_id": 3, "profile_path": "/e0vpQOl6WgBlJqXzWpYbS5twB6B.jpg", "order": 0}, {"name": "Julianne Hough", "character": "Ariel Moore", "id": 143240, "credit_id": "52fe47a8c3a368484e0d2d75", "cast_id": 4, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 1}, {"name": "Dennis Quaid", "character": "Rev. Shaw Moore", "id": 6065, "credit_id": "52fe47a8c3a368484e0d2d79", "cast_id": 5, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 2}, {"name": "Andie MacDowell", "character": "Vi Moore", "id": 1533, "credit_id": "52fe47a8c3a368484e0d2d81", "cast_id": 7, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 3}, {"name": "Miles Teller", "character": "Willard", "id": 996701, "credit_id": "52fe47a8c3a368484e0d2d85", "cast_id": 8, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 4}, {"name": "Ray McKinnon", "character": "Wes Warnicker", "id": 1472, "credit_id": "52fe47a8c3a368484e0d2d89", "cast_id": 9, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 5}, {"name": "Patrick John Flueger", "character": "Chuck Cranston (as Patrick John Flueger)", "id": 115730, "credit_id": "52fe47a8c3a368484e0d2d8d", "cast_id": 10, "profile_path": "/xMGamAcbjj3m8dvl3do0yQNYXg7.jpg", "order": 6}, {"name": "Kim Dickens", "character": "Lulu Warnicker", "id": 21165, "credit_id": "52fe47a8c3a368484e0d2d91", "cast_id": 11, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 7}, {"name": "Ziah Colon", "character": "Rusty Rodriguez", "id": 553878, "credit_id": "52fe47a8c3a368484e0d2d7d", "cast_id": 6, "profile_path": "/oPctkBEYe4pVL6d7soRRwzf4OL9.jpg", "order": 8}, {"name": "Ser'Darius Blain", "character": "Woody", "id": 1160181, "credit_id": "52fe47a8c3a368484e0d2d9d", "cast_id": 14, "profile_path": "/qpHplsNLribEDcrnHzC8EvQ8FSz.jpg", "order": 9}, {"name": "L. Warren Young", "character": "Andy Beamis", "id": 80618, "credit_id": "52fe47a8c3a368484e0d2d95", "cast_id": 12, "profile_path": "/mS5jEWRaWXJfzDDjPuVzs4HcYGm.jpg", "order": 10}, {"name": "Brett Rice", "character": "Roger Dunbar", "id": 29934, "credit_id": "52fe47a8c3a368484e0d2da1", "cast_id": 15, "profile_path": "/1gWgDmlT9WCIPTDzkYQSs1NIt7F.jpg", "order": 11}, {"name": "Maggie Elizabeth Jones", "character": "Amy Warnicker (as Maggie Jones)", "id": 1046348, "credit_id": "52fe47a8c3a368484e0d2d99", "cast_id": 13, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 12}, {"name": "Mary-Charles Jones", "character": "Sarah Warnicker", "id": 1046352, "credit_id": "52fe47a8c3a368484e0d2da5", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Enisha Brewster", "character": "Etta", "id": 1114368, "credit_id": "52fe47a8c3a368484e0d2da9", "cast_id": 17, "profile_path": "/iz1xZgcmoAaA9YsFv1LqTVciCRk.jpg", "order": 14}, {"name": "Josh Warren", "character": "Rich", "id": 1181557, "credit_id": "52fe47a8c3a368484e0d2dad", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Corey Flaspoler", "character": "Russell", "id": 963451, "credit_id": "52fe47a8c3a368484e0d2db1", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Anessa Ramsey", "character": "Caroline", "id": 74131, "credit_id": "52fe47a8c3a368484e0d2db5", "cast_id": 20, "profile_path": "/4spbX2OQTg39uICf5nBBQKIo4ko.jpg", "order": 17}, {"name": "Jason Ferguson", "character": "Travis", "id": 1290554, "credit_id": "52fe47a8c3a368484e0d2db9", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Frank Hoyt Taylor", "character": "Mr. Parker", "id": 77522, "credit_id": "52fe47a8c3a368484e0d2dbd", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Jayson Smith", "character": "Officer Herb", "id": 1290555, "credit_id": "52fe47a8c3a368484e0d2dc1", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Claude Phillips", "character": "Claude", "id": 53264, "credit_id": "52fe47a8c3a368484e0d2dc5", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Clay Chappell", "character": "Councilperson", "id": 1190890, "credit_id": "52fe47a8c3a368484e0d2dc9", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Tony Vaughn", "character": "Councilperson", "id": 114850, "credit_id": "52fe47a8c3a368484e0d2dcd", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Tony Vaughn", "character": "Councilperson", "id": 114850, "credit_id": "52fe47a8c3a368484e0d2dd1", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Daniel Burnley", "character": "Councilperson", "id": 225363, "credit_id": "52fe47a8c3a368484e0d2dd5", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Jack Davidson", "character": "Councilperson", "id": 1290557, "credit_id": "52fe47a8c3a368484e0d2dd9", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Alisa Pettit", "character": "Councilperson", "id": 1290558, "credit_id": "52fe47a8c3a368484e0d2ddd", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Tracy Goode", "character": "Judge", "id": 135800, "credit_id": "52fe47a8c3a368484e0d2de1", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Clayton Landey", "character": "Coach Guerntz", "id": 101013, "credit_id": "52fe47a8c3a368484e0d2de5", "cast_id": 32, "profile_path": "/4e1GziFKqLh5V5tEnqwT1NvMMvL.jpg", "order": 29}, {"name": "John Still", "character": "Track Official", "id": 1009469, "credit_id": "52fe47a8c3a368484e0d2de9", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "Brian Durkin", "character": "Big Cowboy", "id": 190288, "credit_id": "52fe47a8c3a368484e0d2ded", "cast_id": 34, "profile_path": null, "order": 31}, {"name": "Amber Wallace", "character": "Instructor", "id": 99207, "credit_id": "52fe47a8c3a368484e0d2df1", "cast_id": 35, "profile_path": null, "order": 32}, {"name": "Sandra Ellis Lafferty", "character": "Mrs. Allyson (as Sandra Lafferty)", "id": 427, "credit_id": "52fe47a8c3a368484e0d2df5", "cast_id": 36, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 33}, {"name": "D. Dylan Schettina", "character": "Drive-In Bus Boy", "id": 1290559, "credit_id": "52fe47a8c3a368484e0d2df9", "cast_id": 37, "profile_path": null, "order": 34}, {"name": "Blair Jasin", "character": "Bobby", "id": 1003792, "credit_id": "52fe47a8c3a368484e0d2dfd", "cast_id": 38, "profile_path": null, "order": 35}, {"name": "Jasmine Cook", "character": "Car Accident Victim", "id": 1290560, "credit_id": "52fe47a8c3a368484e0d2e01", "cast_id": 39, "profile_path": null, "order": 36}, {"name": "Reece Thomas", "character": "Car Accident Victim", "id": 1290561, "credit_id": "52fe47a8c3a368484e0d2e05", "cast_id": 40, "profile_path": null, "order": 37}, {"name": "Ivey Lowe", "character": "Car Accident Victim", "id": 1290562, "credit_id": "52fe47a8c3a368484e0d2e09", "cast_id": 41, "profile_path": null, "order": 38}, {"name": "Anna Marie Dobbins", "character": "Car Accident Victim", "id": 1290563, "credit_id": "52fe47a8c3a368484e0d2e0d", "cast_id": 42, "profile_path": null, "order": 39}, {"name": "Kevin Renard Fisher", "character": "Woody's Cousin", "id": 1290564, "credit_id": "52fe47a8c3a368484e0d2e11", "cast_id": 43, "profile_path": null, "order": 40}, {"name": "Andrew Ruark", "character": "Cotton Gin Worker", "id": 1290565, "credit_id": "52fe47a8c3a368484e0d2e15", "cast_id": 44, "profile_path": null, "order": 41}, {"name": "Travis Young", "character": "Big Bubba", "id": 1290566, "credit_id": "52fe47a8c3a368484e0d2e19", "cast_id": 45, "profile_path": null, "order": 42}, {"name": "Jamal Sims", "character": "Kegger D. J.", "id": 29215, "credit_id": "52fe47a8c3a368484e0d2e1d", "cast_id": 46, "profile_path": "/9GagwrpYPzSgEPppIEcMFugsU5I.jpg", "order": 43}, {"name": "Kyle Wayne Cordova", "character": "Dancer", "id": 1290567, "credit_id": "52fe47a8c3a368484e0d2e21", "cast_id": 47, "profile_path": null, "order": 44}, {"name": "Alvester Martin", "character": "Dancer", "id": 1290568, "credit_id": "52fe47a8c3a368484e0d2e25", "cast_id": 48, "profile_path": null, "order": 45}, {"name": "Madison Benson", "character": "Kegger Dancer", "id": 1290569, "credit_id": "52fe47a8c3a368484e0d2e29", "cast_id": 49, "profile_path": null, "order": 46}, {"name": "Jonathan Sylvan Carey", "character": "Kegger Dancer", "id": 1290570, "credit_id": "52fe47a8c3a368484e0d2e2d", "cast_id": 50, "profile_path": null, "order": 47}, {"name": "Craig Brewer", "character": "Kegger Dancer", "id": 53267, "credit_id": "52fe47a8c3a368484e0d2e31", "cast_id": 51, "profile_path": "/1F5Sjw9oAkKQOLaD2Bs3vrsIlMg.jpg", "order": 48}, {"name": "Bubba Carr", "character": "Kegger Dancer (as Charles Carr)", "id": 1050312, "credit_id": "52fe47a8c3a368484e0d2e35", "cast_id": 52, "profile_path": null, "order": 49}, {"name": "Sora Connor", "character": "Kegger Dancer (as Sarah Connor)", "id": 1290572, "credit_id": "52fe47a8c3a368484e0d2e39", "cast_id": 53, "profile_path": null, "order": 50}, {"name": "Kasey Davage", "character": "Kegger Dancer", "id": 1290573, "credit_id": "52fe47a8c3a368484e0d2e3d", "cast_id": 54, "profile_path": null, "order": 51}, {"name": "Chynna Dulac", "character": "Kegger Dancer", "id": 1290574, "credit_id": "52fe47a8c3a368484e0d2e41", "cast_id": 55, "profile_path": null, "order": 52}, {"name": "Brett Frost", "character": "Kegger Dancer", "id": 1290575, "credit_id": "52fe47a8c3a368484e0d2e45", "cast_id": 56, "profile_path": null, "order": 53}, {"name": "Terrence Gilbert Green", "character": "Kegger Dancer", "id": 1290576, "credit_id": "52fe47a8c3a368484e0d2e49", "cast_id": 57, "profile_path": null, "order": 54}, {"name": "Ashlyn Henson", "character": "Kegger Dancer", "id": 1290577, "credit_id": "52fe47a8c3a368484e0d2e4d", "cast_id": 58, "profile_path": null, "order": 55}, {"name": "Cicely Kelley", "character": "Kegger Dancer", "id": 1290578, "credit_id": "52fe47a8c3a368484e0d2e51", "cast_id": 59, "profile_path": null, "order": 56}, {"name": "Elysandra Quinones", "character": "Kegger Dancer", "id": 1290579, "credit_id": "52fe47a8c3a368484e0d2e55", "cast_id": 60, "profile_path": null, "order": 57}, {"name": "Brandon Sauve", "character": "Kegger Dancer", "id": 1290580, "credit_id": "52fe47a8c3a368484e0d2e59", "cast_id": 61, "profile_path": null, "order": 58}, {"name": "Allan Skeene, Jr.", "character": "Kegger Dancer", "id": 1290581, "credit_id": "52fe47a8c3a368484e0d2e5d", "cast_id": 62, "profile_path": null, "order": 59}, {"name": "Katherine Slatery", "character": "Kegger Dancer", "id": 1290582, "credit_id": "52fe47a8c3a368484e0d2e61", "cast_id": 63, "profile_path": null, "order": 60}, {"name": "Amanda Topper", "character": "Kegger Dancer", "id": 1290583, "credit_id": "52fe47a8c3a368484e0d2e65", "cast_id": 64, "profile_path": null, "order": 61}, {"name": "Jasmine Badie", "character": "Drive-In Grill Dancer", "id": 1290584, "credit_id": "52fe47a8c3a368484e0d2e69", "cast_id": 65, "profile_path": null, "order": 62}, {"name": "Sean Bankhead", "character": "Drive-In Grill Dancer", "id": 1290585, "credit_id": "52fe47a8c3a368484e0d2e6d", "cast_id": 66, "profile_path": null, "order": 63}, {"name": "Terence Dickson", "character": "Drive-In Grill Dancer (as Terence Terell Dickson)", "id": 1148759, "credit_id": "52fe47a8c3a368484e0d2e71", "cast_id": 67, "profile_path": "/36Ba9N0SxSOrnvgMn1HRuEToaGR.jpg", "order": 64}, {"name": "Kiara Ely", "character": "Drive-In Grill Dancer", "id": 1290586, "credit_id": "52fe47a8c3a368484e0d2e75", "cast_id": 68, "profile_path": null, "order": 65}, {"name": "Comfort Fedoke", "character": "Drive-In Grill Dancer", "id": 964776, "credit_id": "52fe47a8c3a368484e0d2e79", "cast_id": 69, "profile_path": "/yYYxj2dpmkH68sU0U8psY1wewlF.jpg", "order": 66}, {"name": "Hannah Huddleston", "character": "Drive-In Grill Dancer", "id": 1290587, "credit_id": "52fe47a8c3a368484e0d2e7d", "cast_id": 70, "profile_path": null, "order": 67}, {"name": "Stephen Stevo Jones", "character": "Drive-In Grill Dancer", "id": 1290588, "credit_id": "52fe47a8c3a368484e0d2e81", "cast_id": 71, "profile_path": "/7nWO9auqUfPOhLQGS7BTW7coLI3.jpg", "order": 68}, {"name": "JaQuel Knight", "character": "Drive-In Grill Dancer", "id": 1290589, "credit_id": "52fe47a8c3a368484e0d2e85", "cast_id": 72, "profile_path": null, "order": 69}, {"name": "Tamara Levinson", "character": "Drive-In Grill Dancer", "id": 568659, "credit_id": "52fe47a8c3a368484e0d2e89", "cast_id": 73, "profile_path": "/rszBSN45sRNOBs60CtY5JOIRh4L.jpg", "order": 70}, {"name": "Ron Myles", "character": "Drive-In Grill Dancer", "id": 1290590, "credit_id": "52fe47a8c3a368484e0d2e8d", "cast_id": 74, "profile_path": null, "order": 71}, {"name": "Britney Chelene Thomas", "character": "Drive-In Grill Dancer", "id": 1290591, "credit_id": "52fe47a8c3a368484e0d2e91", "cast_id": 75, "profile_path": null, "order": 72}, {"name": "Christopher Toler", "character": "Drive-In Grill Dancer", "id": 23591, "credit_id": "52fe47a8c3a368484e0d2e95", "cast_id": 76, "profile_path": null, "order": 73}, {"name": "Nanci Anderson", "character": "Cowboys' Dancer", "id": 1290592, "credit_id": "52fe47a8c3a368484e0d2e99", "cast_id": 77, "profile_path": null, "order": 74}, {"name": "Kendra Andrews", "character": "Cowboys' Dancer (as Kendra Lauren Andrews)", "id": 138012, "credit_id": "52fe47a8c3a368484e0d2e9d", "cast_id": 78, "profile_path": "/lUuz8TVkl5FFfsszzZylwtZJ4IY.jpg", "order": 75}, {"name": "Jeffery Scott Bailey", "character": "Cowboys' Dancer", "id": 1290594, "credit_id": "52fe47a8c3a368484e0d2ea1", "cast_id": 79, "profile_path": null, "order": 76}, {"name": "Liana Blackburn", "character": "Cowboys' Dancer", "id": 1290595, "credit_id": "52fe47a8c3a368484e0d2ea5", "cast_id": 80, "profile_path": null, "order": 77}, {"name": "Brent L. Boxberger", "character": "Cowboys' Dancer", "id": 1290596, "credit_id": "52fe47a8c3a368484e0d2ea9", "cast_id": 81, "profile_path": null, "order": 78}, {"name": "Taylor Bradley", "character": "Cowboys' Dancer", "id": 1290597, "credit_id": "52fe47a8c3a368484e0d2ead", "cast_id": 82, "profile_path": null, "order": 79}, {"name": "Kelley Bradshaw", "character": "Cowboys' Dancer", "id": 1290598, "credit_id": "52fe47a8c3a368484e0d2eb1", "cast_id": 83, "profile_path": null, "order": 80}, {"name": "Claire Callaway", "character": "Cowboys' Dancer", "id": 948782, "credit_id": "52fe47a8c3a368484e0d2eb5", "cast_id": 84, "profile_path": null, "order": 81}, {"name": "Robert Chabott", "character": "Cowboys' Dancer", "id": 1290599, "credit_id": "52fe47a8c3a368484e0d2eb9", "cast_id": 85, "profile_path": null, "order": 82}, {"name": "C. Ryan Chandler", "character": "Cowboys' Dancer", "id": 1290600, "credit_id": "52fe47a8c3a368484e0d2ebd", "cast_id": 86, "profile_path": null, "order": 83}, {"name": "Amanda Davisson", "character": "Cowboys' Dancer", "id": 1290601, "credit_id": "52fe47a8c3a368484e0d2ec1", "cast_id": 87, "profile_path": null, "order": 84}, {"name": "Troy Dela Rosa", "character": "Cowboys' Dancer", "id": 1290602, "credit_id": "52fe47a8c3a368484e0d2ec5", "cast_id": 88, "profile_path": null, "order": 85}, {"name": "Hannah Douglass", "character": "Cowboys' Dancer", "id": 1265805, "credit_id": "52fe47a8c3a368484e0d2ec9", "cast_id": 89, "profile_path": null, "order": 86}, {"name": "Danella Dutton", "character": "Cowboys' Dancer", "id": 1290603, "credit_id": "52fe47a8c3a368484e0d2ecd", "cast_id": 90, "profile_path": null, "order": 87}, {"name": "Aisha Francis", "character": "Cowboys' Dancer", "id": 1008084, "credit_id": "52fe47a8c3a368484e0d2ed1", "cast_id": 91, "profile_path": null, "order": 88}, {"name": "Jonathan Fritschi", "character": "Cowboys' Dancer", "id": 1290604, "credit_id": "52fe47a8c3a368484e0d2ed5", "cast_id": 92, "profile_path": null, "order": 89}, {"name": "Larke Hasstedt", "character": "Cowboys' Dancer", "id": 1290605, "credit_id": "52fe47a8c3a368484e0d2ed9", "cast_id": 93, "profile_path": null, "order": 90}, {"name": "Joey Hernandez", "character": "Cowboys' Dancer", "id": 1290606, "credit_id": "52fe47a8c3a368484e0d2edd", "cast_id": 94, "profile_path": null, "order": 91}, {"name": "Katherine Hough", "character": "Cowboys' Dancer", "id": 1290607, "credit_id": "52fe47a8c3a368484e0d2ee1", "cast_id": 95, "profile_path": null, "order": 92}, {"name": "Jeremy Hudson", "character": "Cowboys' Dancer", "id": 1290608, "credit_id": "52fe47a8c3a368484e0d2ee5", "cast_id": 96, "profile_path": null, "order": 93}, {"name": "Dacia James", "character": "Cowboys' Dancer", "id": 1290609, "credit_id": "52fe47a8c3a368484e0d2ee9", "cast_id": 97, "profile_path": null, "order": 94}, {"name": "George Jones, Jr.", "character": "Cowboys' Dancer", "id": 1290610, "credit_id": "52fe47a8c3a368484e0d2eed", "cast_id": 98, "profile_path": null, "order": 95}, {"name": "William Ladd", "character": "Cowboys' Dancer", "id": 1290611, "credit_id": "52fe47a8c3a368484e0d2ef1", "cast_id": 99, "profile_path": null, "order": 96}, {"name": "Meryl Lester", "character": "Cowboys' Dancer", "id": 1290612, "credit_id": "52fe47a8c3a368484e0d2ef5", "cast_id": 100, "profile_path": null, "order": 97}, {"name": "Katherine Levy", "character": "Cowboys' Dancer", "id": 1290613, "credit_id": "52fe47a8c3a368484e0d2ef9", "cast_id": 101, "profile_path": null, "order": 98}, {"name": "Megan Mackey", "character": "Cowboys' Dancer", "id": 1290614, "credit_id": "52fe47a8c3a368484e0d2efd", "cast_id": 102, "profile_path": null, "order": 99}, {"name": "Michelle Maniscalco", "character": "Cowboys' Dancer", "id": 559770, "credit_id": "52fe47a8c3a368484e0d2f01", "cast_id": 103, "profile_path": null, "order": 100}, {"name": "Brian Mason", "character": "Cowboys' Dancer", "id": 1290615, "credit_id": "52fe47a8c3a368484e0d2f05", "cast_id": 104, "profile_path": null, "order": 101}, {"name": "Michael McDonough", "character": "Cowboys' Dancer", "id": 958512, "credit_id": "52fe47a8c3a368484e0d2f09", "cast_id": 105, "profile_path": null, "order": 102}, {"name": "Dennis McKinnie", "character": "Cowboys' Dancer", "id": 1290616, "credit_id": "52fe47a8c3a368484e0d2f0d", "cast_id": 106, "profile_path": null, "order": 103}, {"name": "Keltie Colleen Minksky", "character": "Cowboys' Dancer", "id": 1290617, "credit_id": "52fe47a8c3a368484e0d2f11", "cast_id": 107, "profile_path": null, "order": 104}, {"name": "Marriann Nelson", "character": "Cowboys' Dancer", "id": 1290618, "credit_id": "52fe47a8c3a368484e0d2f15", "cast_id": 108, "profile_path": null, "order": 105}, {"name": "Brent Ours", "character": "Cowboys' Dancer", "id": 1290619, "credit_id": "52fe47a8c3a368484e0d2f19", "cast_id": 109, "profile_path": null, "order": 106}, {"name": "Jamie Overla", "character": "Cowboys' Dancer", "id": 1290620, "credit_id": "52fe47a8c3a368484e0d2f1d", "cast_id": 110, "profile_path": null, "order": 107}, {"name": "Marabeth Poole", "character": "Cowboys' Dancer", "id": 1290621, "credit_id": "52fe47a8c3a368484e0d2f21", "cast_id": 111, "profile_path": null, "order": 108}, {"name": "Harrison Jonathan Prater", "character": "Cowboys' Dancer", "id": 1290622, "credit_id": "52fe47a8c3a368484e0d2f25", "cast_id": 112, "profile_path": null, "order": 109}, {"name": "Melissa Rummels", "character": "Cowboys' Dancer", "id": 1290623, "credit_id": "52fe47a8c3a368484e0d2f29", "cast_id": 113, "profile_path": null, "order": 110}, {"name": "Monique Slaughter", "character": "Cowboys' Dancer", "id": 1290624, "credit_id": "52fe47a8c3a368484e0d2f2d", "cast_id": 114, "profile_path": null, "order": 111}, {"name": "Lisa Marie Thomas", "character": "Cowboys' Dancer (as Lisa Thomas)", "id": 1090695, "credit_id": "52fe47a8c3a368484e0d2f31", "cast_id": 115, "profile_path": null, "order": 112}, {"name": "Gissette E. Valentin", "character": "Cowboys' Dancer", "id": 1290625, "credit_id": "52fe47a8c3a368484e0d2f35", "cast_id": 116, "profile_path": null, "order": 113}, {"name": "Tyler Duncan Wall", "character": "Cowboys' Dancer", "id": 1290626, "credit_id": "52fe47a8c3a368484e0d2f39", "cast_id": 117, "profile_path": null, "order": 114}, {"name": "Quincy Lamar Willis", "character": "Cowboys' Dancer", "id": 1290627, "credit_id": "52fe47a8c3a368484e0d2f3d", "cast_id": 118, "profile_path": null, "order": 115}, {"name": "Sharee Wise", "character": "Cowboys' Dancer", "id": 1290628, "credit_id": "52fe47a8c3a368484e0d2f41", "cast_id": 119, "profile_path": null, "order": 116}, {"name": "Joshua Allen", "character": "Finale Dancer", "id": 1290629, "credit_id": "52fe47a8c3a368484e0d2f45", "cast_id": 120, "profile_path": "/6H0W8ZmTY3hBi3jlFpL2ljBpihp.jpg", "order": 117}, {"name": "Tucker Barkley", "character": "Finale Dancer", "id": 1290630, "credit_id": "52fe47a8c3a368484e0d2f49", "cast_id": 121, "profile_path": null, "order": 118}, {"name": "Bianca Brewton", "character": "Finale Dancer", "id": 1290631, "credit_id": "52fe47a8c3a368484e0d2f4d", "cast_id": 122, "profile_path": null, "order": 119}, {"name": "Whitney Brown", "character": "Finale Dancer", "id": 1290632, "credit_id": "52fe47a8c3a368484e0d2f51", "cast_id": 123, "profile_path": null, "order": 120}, {"name": "Bboy Kid David", "character": "Finale Dancer", "id": 1290633, "credit_id": "52fe47a8c3a368484e0d2f55", "cast_id": 124, "profile_path": null, "order": 121}, {"name": "Justin Michael De Vera", "character": "Finale Dancer", "id": 1290634, "credit_id": "52fe47a8c3a368484e0d2f59", "cast_id": 125, "profile_path": null, "order": 122}, {"name": "Michael Brandon Dizon", "character": "Finale Dancer", "id": 1290635, "credit_id": "52fe47a8c3a368484e0d2f5d", "cast_id": 126, "profile_path": null, "order": 123}, {"name": "Laura Edwards", "character": "Finale Dancer", "id": 1290636, "credit_id": "52fe47a8c3a368484e0d2f61", "cast_id": 127, "profile_path": null, "order": 124}, {"name": "Christina Glur", "character": "Finale Dancer", "id": 1290637, "credit_id": "52fe47a8c3a368484e0d2f65", "cast_id": 128, "profile_path": null, "order": 125}, {"name": "Cory Graves", "character": "Finale Dancer", "id": 1290638, "credit_id": "52fe47a8c3a368484e0d2f69", "cast_id": 129, "profile_path": null, "order": 126}, {"name": "Misha Hamilton", "character": "Finale Dancer", "id": 1119287, "credit_id": "52fe47a8c3a368484e0d2f6d", "cast_id": 130, "profile_path": null, "order": 127}, {"name": "Dayna Michelle Harris", "character": "Finale Dancer", "id": 1290639, "credit_id": "52fe47a8c3a368484e0d2f71", "cast_id": 131, "profile_path": null, "order": 128}, {"name": "Ivan Koumaev", "character": "Finale Dancer", "id": 1290640, "credit_id": "52fe47a8c3a368484e0d2f75", "cast_id": 132, "profile_path": null, "order": 129}, {"name": "Nicholas Lanzisera", "character": "Finale Dancer", "id": 1290641, "credit_id": "52fe47a8c3a368484e0d2f79", "cast_id": 133, "profile_path": null, "order": 130}, {"name": "Matthew Laraway", "character": "Finale Dancer", "id": 1290642, "credit_id": "52fe47a8c3a368484e0d2f7d", "cast_id": 134, "profile_path": null, "order": 131}, {"name": "Spencer Liff", "character": "Finale Dancer", "id": 38945, "credit_id": "52fe47a8c3a368484e0d2f81", "cast_id": 135, "profile_path": null, "order": 132}, {"name": "Ahrielle Mace", "character": "Finale Dancer", "id": 1290643, "credit_id": "52fe47a8c3a368484e0d2f85", "cast_id": 136, "profile_path": null, "order": 133}, {"name": "Candace Neolani Maxwell", "character": "Finale Dancer", "id": 1290644, "credit_id": "52fe47a8c3a368484e0d2f89", "cast_id": 137, "profile_path": null, "order": 134}, {"name": "Glenda Morales", "character": "Finale Dancer", "id": 1290645, "credit_id": "52fe47a8c3a368484e0d2f8d", "cast_id": 138, "profile_path": null, "order": 135}, {"name": "Abbye Myers", "character": "Finale Dancer", "id": 1290646, "credit_id": "52fe47a8c3a368484e0d2f91", "cast_id": 139, "profile_path": null, "order": 136}, {"name": "Christian Owens", "character": "Finale Dancer", "id": 1290647, "credit_id": "52fe47a8c3a368484e0d2f95", "cast_id": 140, "profile_path": null, "order": 137}, {"name": "Kayla Jenee Radomski", "character": "Finale Dancer", "id": 1290648, "credit_id": "52fe47a8c3a368484e0d2f99", "cast_id": 141, "profile_path": null, "order": 138}, {"name": "Luis Rosado", "character": "Finale Dancer", "id": 1148762, "credit_id": "52fe47a8c3a368484e0d2f9d", "cast_id": 142, "profile_path": "/3WQyLA5js8eioERwZBNdCLlejdd.jpg", "order": 139}, {"name": "Carson Marie Seeley", "character": "Finale Dancer", "id": 1290650, "credit_id": "52fe47a8c3a368484e0d2fa1", "cast_id": 143, "profile_path": null, "order": 140}, {"name": "Dakota Scott Smith", "character": "Finale Dancer", "id": 1290651, "credit_id": "52fe47a9c3a368484e0d2fa5", "cast_id": 144, "profile_path": null, "order": 141}, {"name": "Brittny Sugarman", "character": "Finale Dancer", "id": 1290652, "credit_id": "52fe47a9c3a368484e0d2fa9", "cast_id": 145, "profile_path": null, "order": 142}, {"name": "Melanie Ullmann", "character": "Finale Dancer", "id": 1290653, "credit_id": "52fe47a9c3a368484e0d2fad", "cast_id": 146, "profile_path": null, "order": 143}, {"name": "Miguel Angel Zarate", "character": "Finale Dancer", "id": 1290654, "credit_id": "52fe47a9c3a368484e0d2fb1", "cast_id": 147, "profile_path": null, "order": 144}], "directors": [{"name": "Craig Brewer", "department": "Directing", "job": "Director", "credit_id": "52fe47a7c3a368484e0d2d67", "profile_path": "/1F5Sjw9oAkKQOLaD2Bs3vrsIlMg.jpg", "id": 53267}], "vote_average": 6.3, "runtime": 113}, "11474": {"poster_path": "/ikwR74siRBhSdtAUMxNzUJvT59A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22490039, "overview": "Prominent gang leader Cyrus calls a meeting of New York's gangs to set aside their turf wars and take over the city. At the meeting, a rival leader kills Cyrus, but a Coney Island gang called the Warriors is wrongly blamed for Cyrus' death. Before you know it, the cops and every gangbanger in town is hot on the Warriors' trail.", "video": false, "id": 11474, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Warriors", "tagline": "These Are The Armies Of The Night........", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080120", "adult": false, "backdrop_path": "/nQ3FP6QMV7L0XjiVpumgNJnxzUT.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1979-02-09", "popularity": 0.554074570611999, "original_title": "The Warriors", "budget": 0, "cast": [{"name": "James Remar", "character": "Ajax", "id": 1736, "credit_id": "52fe44479251416c7502f205", "cast_id": 3, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 0}, {"name": "Michael Beck", "character": "Swan", "id": 36409, "credit_id": "52fe44479251416c7502f22d", "cast_id": 10, "profile_path": "/gpaKVOeavCeK08GiukvnUgAiHFD.jpg", "order": 1}, {"name": "David Patrick Kelly", "character": "Luther", "id": 1737, "credit_id": "52fe44479251416c7502f231", "cast_id": 11, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 2}, {"name": "Dorsey Wright", "character": "Cleon", "id": 69564, "credit_id": "52fe44479251416c7502f23b", "cast_id": 13, "profile_path": "/kzkgvlhX2BsrvbrNo18nQdUmg4c.jpg", "order": 3}, {"name": "David Harris", "character": "Cochise", "id": 1058172, "credit_id": "52fe44479251416c7502f23f", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Deborah Van Valkenburgh", "character": "Mercy", "id": 77256, "credit_id": "52fe44479251416c7502f243", "cast_id": 15, "profile_path": "/d17eio3cj1iwwtFR927oKCou681.jpg", "order": 5}, {"name": "Brian Tyler", "character": "Snow", "id": 1080553, "credit_id": "52fe44479251416c7502f247", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Steve James", "character": "Baseball Fury", "id": 55271, "credit_id": "52fe44479251416c7502f24b", "cast_id": 17, "profile_path": "/pNK50BHuGfegOJo8scrd3ys5KNB.jpg", "order": 7}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe44479251416c7502f211", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 7.0, "runtime": 93}, "44244": {"poster_path": "/j0NzAIdVDSRj9y7YtFlGoVUtqXD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mitchie can't wait to go back to Camp Rock and spend the summer making new music with her friends and superstar Shane Gray. But the slick new camp across the lake, Camp Star, has drummed up some serious competition \u2014 featuring newcomers Luke (Matthew \"Mdot\" Finley) and Dana (Chloe Bridges). In a sensational battle of the bands, with Camp Rock's future at stake, will Camp Star's flashy production and over-the-top antics win out, or will Camp Rockers prove that music, teamwork, and spirit are what truly matter?", "video": false, "id": 44244, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Camp Rock 2: The Final Jam", "tagline": "", "vote_count": 61, "homepage": "http://tv.disney.go.com/disneychannel/originalmovies/camprock2/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/kfYLaRTq2UEG31tdrvsg4JeTM4O.jpg", "id": 148055, "name": "Camp Rock Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1252380", "adult": false, "backdrop_path": "/ki5QUifXwY3ZQ7RcQUXjR4vKhtW.jpg", "production_companies": [], "release_date": "2010-06-06", "popularity": 0.670060100992888, "original_title": "Camp Rock 2: The Final Jam", "budget": 0, "cast": [{"name": "Demi Lovato", "character": "Mitchie Torres", "id": 85138, "credit_id": "52fe467fc3a36847f8102641", "cast_id": 1, "profile_path": "/bfAQFvBe2M3FifZVfFnb3joqDnO.jpg", "order": 0}, {"name": "Alyson Stoner", "character": "Caitlyn Geller", "id": 58965, "credit_id": "52fe467fc3a36847f8102645", "cast_id": 2, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 1}, {"name": "Joe Jonas", "character": "Shane Gray", "id": 85757, "credit_id": "52fe467fc3a36847f8102649", "cast_id": 3, "profile_path": "/chP0tAO3UfgmyipvNNqlGD7ctID.jpg", "order": 2}, {"name": "Nick Jonas", "character": "Nate", "id": 130565, "credit_id": "52fe467fc3a36847f810264d", "cast_id": 4, "profile_path": "/5xKjPntwYmTeCNaYS0w30ekyXRZ.jpg", "order": 3}, {"name": "Kevin Jonas", "character": "Jason", "id": 130566, "credit_id": "52fe467fc3a36847f8102651", "cast_id": 5, "profile_path": "/demDxdp2PHLCaQI87LtmCHab0J4.jpg", "order": 4}, {"name": "Meaghan Jette Martin", "character": "Tess Tyler (as Meaghan Jette Martin)", "id": 130567, "credit_id": "52fe467fc3a36847f8102655", "cast_id": 6, "profile_path": "/xZAKFoELIpW8ghKEXAL17yQjyg.jpg", "order": 5}], "directors": [{"name": "Paul Hoen", "department": "Directing", "job": "Director", "credit_id": "52fe467fc3a36847f810265b", "profile_path": null, "id": 38692}], "vote_average": 5.7, "runtime": 97}, "77016": {"poster_path": "/suqikqv0DjOsW8e0hst4YWDTmAX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39907640, "overview": "Shot documentary-style, this film follows the daily grind of two young police officers in LA who are partners and friends, and what happens when they meet criminal forces greater than themselves.", "video": false, "id": 77016, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "End of Watch", "tagline": "Every moment of your life they stand watch", "vote_count": 371, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1855199", "adult": false, "backdrop_path": "/udoddkfohAuWpVi6FkzkVB3hJOa.jpg", "production_companies": [{"name": "5150 Action", "id": 47354}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Hedge Fund Film Partners", "id": 11449}, {"name": "Crave Films", "id": 16312}, {"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Le Grisbi Productions", "id": 47169}], "release_date": "2012-09-21", "popularity": 0.756656615591269, "original_title": "End of Watch", "budget": 7000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Brian Taylor", "id": 131, "credit_id": "52fe4957c3a368484e12691f", "cast_id": 2, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Michael Pe\u00f1a", "character": "Mike Zavala", "id": 454, "credit_id": "52fe4957c3a368484e126939", "cast_id": 9, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 1}, {"name": "Natalie Martinez", "character": "Gabby", "id": 76511, "credit_id": "52fe4957c3a368484e126927", "cast_id": 5, "profile_path": "/9F8hCTTuDfPn5DPjsSuwxaJVwT4.jpg", "order": 2}, {"name": "Anna Kendrick", "character": "Janet", "id": 84223, "credit_id": "52fe4957c3a368484e126923", "cast_id": 4, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 3}, {"name": "David Harbour", "character": "Van Hauser", "id": 35029, "credit_id": "52fe4957c3a368484e126941", "cast_id": 11, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 4}, {"name": "Frank Grillo", "character": "Sarge", "id": 81685, "credit_id": "52fe4957c3a368484e12693d", "cast_id": 10, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 5}, {"name": "America Ferrera", "character": "Officer Orozco", "id": 59174, "credit_id": "52fe4957c3a368484e126935", "cast_id": 8, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 6}, {"name": "Cody Horn", "character": "Officer Davis", "id": 582816, "credit_id": "52fe4957c3a368484e126931", "cast_id": 7, "profile_path": "/3cBTrMdZF9Yj12IUAHb9a46qplS.jpg", "order": 7}, {"name": "Shondrella Avery", "character": "Bonita", "id": 53928, "credit_id": "52fe4957c3a368484e126945", "cast_id": 12, "profile_path": "/tTRyVWKBCmZR0Eq3XQHMG682kUJ.jpg", "order": 8}, {"name": "Hugh Daly", "character": "Homicide Detective 2", "id": 85414, "credit_id": "52fe4957c3a368484e126949", "cast_id": 13, "profile_path": "/lNp0J8OVq3LnxnpBgGfckXRuHkI.jpg", "order": 9}, {"name": "Gene Hong", "character": "Officer Cho", "id": 458014, "credit_id": "52fe4957c3a368484e12694d", "cast_id": 14, "profile_path": "/qLvIbTnVFkI369VeAEsYcn6Xo3k.jpg", "order": 10}, {"name": "Cle Shaheed Sloan", "character": "Mr. Tre", "id": 55394, "credit_id": "52fe4957c3a368484e12695d", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Jaime Fitzsimmons", "character": "Captain Reese", "id": 1138844, "credit_id": "52fe4957c3a368484e126961", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Everton Lawrence", "character": "Man Friend", "id": 969413, "credit_id": "52fe4957c3a368484e126965", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Everton Lawrence", "character": "CK", "id": 969413, "credit_id": "52fe4957c3a368484e126969", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Everton Lawrence", "character": "DJ", "id": 969413, "credit_id": "52fe4957c3a368484e12696d", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Zone", "character": "Too Tall", "id": 210256, "credit_id": "52fe4957c3a368484e126971", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Alvin Norman", "character": "Peanut", "id": 1271758, "credit_id": "52fe4957c3a368484e126975", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Richard Cabral", "character": "Demon", "id": 1105711, "credit_id": "52fe4957c3a368484e126979", "cast_id": 24, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 18}, {"name": "Diamonique", "character": "Wicked", "id": 1271759, "credit_id": "52fe4957c3a368484e12697d", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Maurice Compte", "character": "Big Evil", "id": 48530, "credit_id": "52fe4957c3a368484e126981", "cast_id": 26, "profile_path": "/gt8vrkSOmv4dt5AfIcVsevNQ05b.jpg", "order": 20}, {"name": "Flakiss", "character": "La La", "id": 1271760, "credit_id": "52fe4957c3a368484e126985", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Manny Jimenez Jr.", "character": "Casper", "id": 1271761, "credit_id": "52fe4957c3a368484e126989", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Nikki Nicholle Barreras", "character": "Cindy", "id": 1271762, "credit_id": "52fe4957c3a368484e12698d", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Kristy Wu", "character": "Sook", "id": 94135, "credit_id": "52fe4957c3a368484e126991", "cast_id": 30, "profile_path": "/shPbdHP7augnWkTDhz0UO8xxID1.jpg", "order": 24}, {"name": "Candace Smith", "character": "Sharice", "id": 175585, "credit_id": "52fe4957c3a368484e126995", "cast_id": 31, "profile_path": "/qG5I4sebfVR29vNaRF8IfxEc5Qc.jpg", "order": 25}, {"name": "Corina Calderon", "character": "Jazmine", "id": 932158, "credit_id": "52fe4957c3a368484e126999", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "David Fernandez Jr.", "character": "Spooky", "id": 1117232, "credit_id": "52fe4957c3a368484e12699d", "cast_id": 33, "profile_path": "/eJvgc6jgVOePGvYbEyI1ZUy7KdG.jpg", "order": 27}, {"name": "McKinley Freeman", "character": "Williams", "id": 200483, "credit_id": "52fe4957c3a368484e1269a1", "cast_id": 34, "profile_path": null, "order": 28}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe4957c3a368484e12691b", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 7.0, "runtime": 109}, "44249": {"poster_path": "/rmg8nylhpNqPZ9Hq8Gs8OcgriMg.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Featuring some of the most spectacular, innovative and explosive martial arts ever staged, The Legend Is Born is the remarkable true story of the early life of Ip Man, the formidable kung fu genius who would become Bruce Lee's mentor.Beginning at the start of his journey from his initial training through to the ultimate battle to become supreme master of the art of Wing Chun, The Legend Is Born has already been hailed as one of the greatest martial arts films of all time and features an all-star cast, including Sammo Hung (Enter The Dragon), Yuen Biao and Ip Man's real life son, 76-year-old Ip Chun, as Ip Man's kung fu master.", "video": false, "id": 44249, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Legend Is Born: Ip Man", "tagline": "", "vote_count": 118, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1641638", "adult": false, "backdrop_path": "/8QmBeErLzskPVWkMXwkfxujXtO5.jpg", "production_companies": [{"name": "Mei Ah Entertainment", "id": 7885}], "release_date": "2010-06-24", "popularity": 0.392057746763227, "original_title": "Yip Man chinchyun", "budget": 0, "cast": [{"name": "Dennis To Yue-Hong", "character": "IP Man", "id": 130597, "credit_id": "52fe4680c3a36847f8102833", "cast_id": 4, "profile_path": "/dJ7tDtwazd5RiheT0oenbzEqENa.jpg", "order": 0}, {"name": "Fan Siu-Wong", "character": "Ip Tin-chi", "id": 130598, "credit_id": "52fe4680c3a36847f8102837", "cast_id": 5, "profile_path": "/tFfXqPjqhVItv5lkUVtSMbw1SPd.jpg", "order": 1}, {"name": "Leung Bik", "character": "Ip Chun", "id": 130600, "credit_id": "52fe4680c3a36847f810283f", "cast_id": 7, "profile_path": "/1wvxkhA1v4iv9ZcMnhAwDR7ZZwa.jpg", "order": 3}, {"name": "Sammo Hung", "character": "Chan Wah-shun", "id": 62410, "credit_id": "52fe4680c3a36847f8102843", "cast_id": 8, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 4}, {"name": "Hins Cheung", "character": "Young master Cho", "id": 130601, "credit_id": "52fe4680c3a36847f8102847", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Sire Ma", "character": "Cheung Wing-wah", "id": 130605, "credit_id": "52fe4680c3a36847f810284b", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Bernice Liu", "character": "Yumi", "id": 112987, "credit_id": "52fe4680c3a36847f810284f", "cast_id": 13, "profile_path": "/q7zLvpAatgAnrVgiljzs85QWvjp.jpg", "order": 8}, {"name": "Kenny Kwan", "character": "", "id": 130606, "credit_id": "52fe4680c3a36847f8102853", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Andy Taylor", "character": "Foreign challenger at hockey match", "id": 130607, "credit_id": "52fe4680c3a36847f8102857", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Lam Suet", "character": "Cheung Ho-tin", "id": 25251, "credit_id": "52fe4680c3a36847f810285b", "cast_id": 17, "profile_path": "/lncRaBwS0ok9PZNHkxz5UhANouT.jpg", "order": 11}, {"name": "Yuen Biao", "character": "", "id": 62414, "credit_id": "52fe4680c3a36847f810285f", "cast_id": 18, "profile_path": "/hdBQMhtzpamgodIURGPQAcKdbWC.jpg", "order": 12}, {"name": "Yi Huang", "character": "", "id": 127108, "credit_id": "54944d3e9251413af7000296", "cast_id": 21, "profile_path": "/r425JT3CADCCcF4j7dxwxg36HPM.jpg", "order": 13}], "directors": [{"name": "Herman Yau", "department": "Directing", "job": "Director", "credit_id": "52fe4680c3a36847f8102823", "profile_path": "/ahrznxNTlzUwO4wg10dijD8MF4I.jpg", "id": 92831}], "vote_average": 6.3, "runtime": 100}, "216282": {"poster_path": "/dtuyhlOtqj8zPPFgTgWJ0bF3s2h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The town of Silverton is in one day destroyed by the unprecedented power of a series of tornadoes. The population is at the mercy of the unpredictable and deadly cyclones, while hunters warn that the worst is yet to come. Most people find shelter, but some just go to the tornado for that one, unique shot.", "video": false, "id": 216282, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Into the Storm", "tagline": "Prepare to go", "vote_count": 282, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2106361", "adult": false, "backdrop_path": "/i0umpdqVURR1VZFX67QGJEXKvLe.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Broken Road Productions", "id": 8000}, {"name": "New Line Cinema", "id": 12}], "release_date": "2014-08-08", "popularity": 1.05202076774146, "original_title": "Into the Storm", "budget": 0, "cast": [{"name": "Richard Armitage", "character": "Gary Morris", "id": 30315, "credit_id": "52fe4e16c3a368484e20d769", "cast_id": 3, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 0}, {"name": "Sarah Wayne Callies", "character": "Allison", "id": 86468, "credit_id": "53f2e23fc3a3685af2006338", "cast_id": 11, "profile_path": "/1WTsRFbvxU9lOWonAigOO9UCxmY.jpg", "order": 1}, {"name": "Matt Walsh", "character": "Pete", "id": 59841, "credit_id": "52fe4e16c3a368484e20d775", "cast_id": 7, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 2}, {"name": "Nathan Kress", "character": "Trey", "id": 212913, "credit_id": "52fe4e16c3a368484e20d771", "cast_id": 6, "profile_path": "/4B9z58nrAaNXJi4uVkvWsztK7LF.jpg", "order": 3}, {"name": "Alycia Debnam Carey", "character": "Kaitlyn", "id": 1129464, "credit_id": "53f2dfeb0e0a2675b2007e21", "cast_id": 10, "profile_path": "/xIYaVcmAti9ADefT4jI36i1J48h.jpg", "order": 4}, {"name": "Jeremy Sumpter", "character": "Jacob", "id": 65838, "credit_id": "52fe4e16c3a368484e20d76d", "cast_id": 5, "profile_path": "/erNaw0imhMzn3OqGcOQPQeQ4RtI.jpg", "order": 5}, {"name": "Kyle Davis", "character": "Donk", "id": 54850, "credit_id": "53439827c3a36814f9004b44", "cast_id": 8, "profile_path": "/q1mjfGBnoXFwWZwxMbHUF2SYpIi.jpg", "order": 6}, {"name": "Brandon Ruiter", "character": "Todd White", "id": 1360027, "credit_id": "540697c4c3a36869090000d3", "cast_id": 12, "profile_path": "/xAhRF8jZEOpNWtKO06q9v35BQdi.jpg", "order": 7}, {"name": "Max Deacon", "character": "Donnie", "id": 75566, "credit_id": "54818e5a9251416e74005df2", "cast_id": 18, "profile_path": "/2hYF0Imhp70xbr7CHOByEyZQ0ov.jpg", "order": 8}, {"name": "Arlen Escarpeta", "character": "Daryl", "id": 78432, "credit_id": "5481912b9251414efa006036", "cast_id": 19, "profile_path": "/j6UsveHGfxcnohafoCDAVqQBLpC.jpg", "order": 9}, {"name": "Lee Whittaker", "character": "Lucas", "id": 92508, "credit_id": "548194cdc3a36829b5006ee0", "cast_id": 20, "profile_path": "/4Sb5QaGq25kriyt2zRD4mpIyrB2.jpg", "order": 10}, {"name": "Jon Reep", "character": "Reevis", "id": 1226531, "credit_id": "54819690c3a3684afd00140b", "cast_id": 21, "profile_path": "/gLyZQeTjGxWrEhQNThFZAwhPSpi.jpg", "order": 11}, {"name": "Scott Lawrence", "character": "Principal Thomas Walker", "id": 42317, "credit_id": "548197d6c3a36829b5006f59", "cast_id": 22, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 12}, {"name": "David Drumm", "character": "Chester", "id": 1394781, "credit_id": "5481986b9251416e7b00560f", "cast_id": 23, "profile_path": "/34mTixHl12TtXn2GU9keHVvRjKC.jpg", "order": 13}, {"name": "Jimmy Groce", "character": "Studious Male", "id": 1394785, "credit_id": "548199c2c3a36829a3005c85", "cast_id": 24, "profile_path": "/kGR92e93VA2aRf98bx3DS9h8PFM.jpg", "order": 14}, {"name": "Linda Gehringer", "character": "Linda", "id": 1394788, "credit_id": "54819aee9251416e74005f7c", "cast_id": 25, "profile_path": "/hWRDJvcBLHu2iRCXSIBpmgvmPbG.jpg", "order": 15}, {"name": "Keala Wayne Winterhalt", "character": "Grace", "id": 1394794, "credit_id": "54819cc39251416e74005fbb", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Maryanne Nagel", "character": "Ms. McGee", "id": 1394795, "credit_id": "54819e9c9251416e78005bc3", "cast_id": 27, "profile_path": "/9rkyt8jBJ9TusObytJ8pZ5HseOC.jpg", "order": 17}, {"name": "Frank Zieger", "character": "Road Worker", "id": 83401, "credit_id": "5481e7239251416e74006806", "cast_id": 28, "profile_path": "/6kcmQluRAOeZIbsM35Bq2i7olAq.jpg", "order": 18}, {"name": "Kron Moore", "character": "Teacher (Mrs. Blasky)", "id": 1395039, "credit_id": "5481e79b9251416e780063b6", "cast_id": 29, "profile_path": "/y0FhbSiVnGtaWQnGNk2XUpNsQYG.jpg", "order": 19}, {"name": "London Elise Moore", "character": "Cheerleader", "id": 1395045, "credit_id": "5481ea1d9251416e7400685c", "cast_id": 30, "profile_path": "/u7j6JCAdsAyBqOT3vvx9jXYBGoV.jpg", "order": 20}, {"name": "Michael Ellison", "character": "Volunteer Fireman", "id": 1395050, "credit_id": "5481ec379251414efa006bad", "cast_id": 31, "profile_path": "/194R89TUr1M5WavBSTyyOXty5Kf.jpg", "order": 21}, {"name": "Vincent McCurdy-Clark", "character": "", "id": 1395054, "credit_id": "5481edea9251416e7800647f", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Stephanie Koenig", "character": "Marcia", "id": 1395056, "credit_id": "5481eeadc3a3685c0e00055e", "cast_id": 33, "profile_path": "/3JpJScCkbE8eN5R5gqvK0nYAkmE.jpg", "order": 23}, {"name": "Gary England", "character": "Himself", "id": 1228464, "credit_id": "5481f0969251414d210065d8", "cast_id": 34, "profile_path": "/6c0bXOz1frrZFm9ErliO5rPAIaH.jpg", "order": 24}, {"name": "Don Lemon", "character": "Himself", "id": 1395060, "credit_id": "5481f1b8c3a3685c0e0005a4", "cast_id": 35, "profile_path": "/hPew8UbPKHI239ajVMRqUljpZeE.jpg", "order": 25}, {"name": "Chuck Gaidica", "character": "Weather Anchor", "id": 1395063, "credit_id": "5481f35f9251414efa006c88", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Steve Garagiola", "character": "News Anchor", "id": 1395064, "credit_id": "5481f3e1c3a36829b5007c63", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "John W. Hardy", "character": "Preacher", "id": 1395066, "credit_id": "5481f4bfc3a3685c0e0005ec", "cast_id": 38, "profile_path": "/jlXheK3t7NocSLAk9KEwEXTr3sh.jpg", "order": 28}, {"name": "Mikayla Bouchard", "character": "Crying Woman", "id": 1395067, "credit_id": "5481f57fc3a36829a300668a", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Gino Borri", "character": "David Brody", "id": 1395068, "credit_id": "5481f64dc3a36817a5006900", "cast_id": 40, "profile_path": "/1NA3ROrycPNF4s2kpCGf9Z8nE1K.jpg", "order": 30}, {"name": "Amanda Ryskamp", "character": "Jenny", "id": 1395069, "credit_id": "5481f719c3a36829a70067c5", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Taras Los", "character": "Fireman", "id": 204261, "credit_id": "5481f830c3a36829ae005fe1", "cast_id": 42, "profile_path": "/pHnqDObzaakpa6xKNELWJCrhSKB.jpg", "order": 32}, {"name": "Niki Cipriano", "character": "Sister of Graduate", "id": 1283942, "credit_id": "54adb07d9251411ef6000353", "cast_id": 102, "profile_path": "/hauENXlAZ6AncUUxJy6cOvE2Tvz.jpg", "order": 33}], "directors": [{"name": "Steven Quale", "department": "Directing", "job": "Director", "credit_id": "52fe4e16c3a368484e20d75f", "profile_path": null, "id": 93214}], "vote_average": 5.7, "runtime": 89}, "3291": {"poster_path": "/lV7C9j2FjHp8mjQeP3bqtdCj9JF.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54600000, "overview": "George Clooney\u2019s fact-based drama about the famous radio journalist Edward R Murrow's stand against Senator McCarthy's anti-communist witch-hunts in the early 1950s.", "video": false, "id": 3291, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Good Night, and Good Luck.", "tagline": "They took on the Government with nothing but the truth.", "vote_count": 62, "homepage": "http://wip.warnerbros.com/goodnightgoodluck/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433383", "adult": false, "backdrop_path": "/uFuS7ee3n4F8atSJEB4to4htX0d.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2005-09-16", "popularity": 0.716713720512602, "original_title": "Good Night, and Good Luck.", "budget": 7000000, "cast": [{"name": "Jeff Daniels", "character": "Sig Mickelson", "id": 8447, "credit_id": "52fe438fc3a36847f805dadf", "cast_id": 1, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 0}, {"name": "David Strathairn", "character": "Edward R. Murrow", "id": 11064, "credit_id": "52fe438fc3a36847f805dae3", "cast_id": 2, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 1}, {"name": "Alex Borstein", "character": "Natalie", "id": 24357, "credit_id": "52fe438fc3a36847f805dae7", "cast_id": 3, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 2}, {"name": "Rose Abdoo", "character": "Millie Lerner", "id": 31507, "credit_id": "52fe438fc3a36847f805daeb", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Dianne Reeves", "character": "Jazz S\u00e4ngerin", "id": 31513, "credit_id": "52fe438fc3a36847f805db23", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Tate Donovan", "character": "Jesse Zousmer", "id": 15455, "credit_id": "52fe438fc3a36847f805daef", "cast_id": 5, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 5}, {"name": "Reed Diamond", "character": "John Aaron", "id": 31508, "credit_id": "52fe438fc3a36847f805daf3", "cast_id": 6, "profile_path": "/mASm3pG5IzLMQlORD8v7vb8oEly.jpg", "order": 6}, {"name": "Matt Ross", "character": "Eddie Scott", "id": 11154, "credit_id": "52fe438fc3a36847f805daf7", "cast_id": 7, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 7}, {"name": "Patricia Clarkson", "character": "Shirley Wershba", "id": 1276, "credit_id": "52fe438fc3a36847f805dafb", "cast_id": 8, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 8}, {"name": "Robert Downey Jr.", "character": "Joe Wershba", "id": 3223, "credit_id": "52fe438fc3a36847f805daff", "cast_id": 9, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 9}, {"name": "George Clooney", "character": "Fred Friendly", "id": 1461, "credit_id": "52fe438fc3a36847f805db03", "cast_id": 10, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 10}, {"name": "Thomas McCarthy", "character": "Palmer Williams", "id": 17867, "credit_id": "52fe438fc3a36847f805db07", "cast_id": 11, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 11}, {"name": "Glenn Morshower", "character": "Colonel Anderson", "id": 12797, "credit_id": "52fe438fc3a36847f805db0b", "cast_id": 12, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 12}, {"name": "Don Creech", "character": "Colonel Jenkins", "id": 1007, "credit_id": "52fe4390c3a36847f805dba1", "cast_id": 47, "profile_path": "/sI2hA8u4BiMfqtMLaKwLgeH5vGy.jpg", "order": 13}, {"name": "Grant Heslov", "character": "Don Hewitt", "id": 31511, "credit_id": "52fe438fc3a36847f805db13", "cast_id": 15, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 14}, {"name": "Robert John Burke", "character": "Charlie Mack", "id": 31512, "credit_id": "52fe438fc3a36847f805db17", "cast_id": 16, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 15}, {"name": "Ray Wise", "character": "Don Hollenbeck", "id": 6719, "credit_id": "52fe438fc3a36847f805db1b", "cast_id": 17, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 16}, {"name": "Robert Knepper", "character": "Don Surine", "id": 17343, "credit_id": "52fe438fc3a36847f805db1f", "cast_id": 18, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 17}, {"name": "Helen Slayton-Hughes", "character": "Mary", "id": 31510, "credit_id": "52fe438fc3a36847f805db0f", "cast_id": 14, "profile_path": "/j3KIRdFgiAyqtdsLQXxgMZO6el4.jpg", "order": 18}, {"name": "Frank Langella", "character": "William Paley", "id": 8924, "credit_id": "52fe438fc3a36847f805db27", "cast_id": 20, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 19}, {"name": "Peter Jacobson", "character": "Jimmy", "id": 31514, "credit_id": "52fe438fc3a36847f805db2b", "cast_id": 21, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 20}], "directors": [{"name": "George Clooney", "department": "Directing", "job": "Director", "credit_id": "52fe4390c3a36847f805db79", "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "id": 1461}], "vote_average": 6.4, "runtime": 93}, "3293": {"poster_path": "/62NXimypwBEiu9IS2Z6R5OI5Ncu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This film is the semi-humorous documentary about the men who made the world of technology what it is today, their struggles during college, the founding of their companies, and the ingenious actions they took to build up the global corporate empires of Apple Computer Inc. and Microsoft Corporation.", "video": false, "id": 3293, "genres": [{"id": 18, "name": "Drama"}], "title": "Pirates of Silicon Valley", "tagline": "The true story of how Bill Gates and Steve Jobs changed the world.", "vote_count": 70, "homepage": "http://alt.tnt.tv/movies/tntoriginals/pirates/frame_index.htm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0168122", "adult": false, "backdrop_path": "/zKJ5KT4yLoIg2P3xrcs6yLAO6Zi.jpg", "production_companies": [{"name": "Turner Network Television", "id": 678}, {"name": "Haft Entertainment", "id": 1363}, {"name": "St. Nick Productions", "id": 1364}], "release_date": "1999-06-20", "popularity": 0.47649346821352, "original_title": "Pirates of Silicon Valley", "budget": 0, "cast": [{"name": "Noah Wyle", "character": "Steve Jobs", "id": 13526, "credit_id": "52fe4390c3a36847f805dbd9", "cast_id": 1, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 0}, {"name": "Joey Slotnick", "character": "Steve Wozniak", "id": 9998, "credit_id": "52fe4390c3a36847f805dbdd", "cast_id": 2, "profile_path": "/mEMRP0j65jpYVI4Xv5o0slFpRxP.jpg", "order": 1}, {"name": "J. G. Hertzler", "character": "Ridley Scott", "id": 31527, "credit_id": "52fe4390c3a36847f805dbe1", "cast_id": 3, "profile_path": "/qVrA7iW81MyOe9LOZun7AufETRw.jpg", "order": 2}, {"name": "Anthony Michael Hall", "character": "Bill Gates", "id": 1904, "credit_id": "52fe4390c3a36847f805dbe5", "cast_id": 4, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 3}, {"name": "Wayne P\u00e9re", "character": "Captain Crunch", "id": 31528, "credit_id": "52fe4390c3a36847f805dbe9", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Sheila Shaw", "character": "Mrs. Wozniak", "id": 31529, "credit_id": "52fe4390c3a36847f805dbed", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Gema Zamprogna", "character": "Arlene", "id": 31530, "credit_id": "52fe4390c3a36847f805dbf1", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "John Di Maggio", "character": "Steve Ballmer", "id": 31531, "credit_id": "52fe4390c3a36847f805dbf5", "cast_id": 8, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 7}, {"name": "Josh Hopkins", "character": "Paul Allen", "id": 31532, "credit_id": "52fe4390c3a36847f805dbf9", "cast_id": 9, "profile_path": "/4FF6p6G6SAUDJcfOx6GSFQrfTfq.jpg", "order": 8}, {"name": "Gailard Sartain", "character": "Ed Roberts", "id": 2886, "credit_id": "52fe4390c3a36847f805dbfd", "cast_id": 10, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 9}, {"name": "Allan Kolman", "character": "Therapeut", "id": 31533, "credit_id": "52fe4390c3a36847f805dc01", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Marcus Giamatti", "character": "Dan Kottke", "id": 31534, "credit_id": "52fe4390c3a36847f805dc05", "cast_id": 12, "profile_path": "/ajRY1q4z8tIRXLcaNxU7o05MPtY.jpg", "order": 11}, {"name": "Melissa McBride", "character": "Elizabeth Holmes", "id": 31535, "credit_id": "52fe4390c3a36847f805dc09", "cast_id": 13, "profile_path": "/mWx65szXSk2iywkkKSM8tTVHap5.jpg", "order": 12}, {"name": "Jeffrey Nordling", "character": "Mike Markkula", "id": 24048, "credit_id": "52fe4390c3a36847f805dc0d", "cast_id": 14, "profile_path": "/qLEiNpTGAoizKW9nzINSlrg9d2h.jpg", "order": 13}, {"name": "Marc Worden", "character": "Chris Larson", "id": 31536, "credit_id": "52fe4390c3a36847f805dc11", "cast_id": 15, "profile_path": "/mC7aL1zkm6U23tfPyqJ6w2TyIre.jpg", "order": 14}], "directors": [{"name": "Martyn Burke", "department": "Directing", "job": "Director", "credit_id": "52fe4390c3a36847f805dc35", "profile_path": null, "id": 15872}], "vote_average": 6.3, "runtime": 97}, "232672": {"poster_path": "/l99PKd9tdwtpOS5jxHwDGKTsVUo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123494610, "overview": "After a bad blind date, a man and woman find themselves stuck together at a resort for families, where their attractions grows as their respective kids benefit from the burgeoning relationship.", "video": false, "id": 232672, "genres": [{"id": 35, "name": "Comedy"}], "title": "Blended", "tagline": "Single Dad, No Clue. Single Mum, Flying Solo.", "vote_count": 323, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1086772", "adult": false, "backdrop_path": "/pA6FQxybVUjNlbYUAJJupLTfUsN.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Gulfstream Pictures", "id": 20788}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Karz Entertainment", "id": 4194}], "release_date": "2014-05-23", "popularity": 1.77732224993831, "original_title": "Blended", "budget": 40000000, "cast": [{"name": "Drew Barrymore", "character": "Lauren", "id": 69597, "credit_id": "52fe4e07c3a36847f827a1f3", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Adam Sandler", "character": "Jim", "id": 19292, "credit_id": "52fe4e07c3a36847f827a1ef", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 1}, {"name": "Wendi McLendon-Covey", "character": "Jen", "id": 63234, "credit_id": "52fe4e07c3a36847f827a1f7", "cast_id": 3, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 2}, {"name": "Bella Thorne", "character": "Hilary", "id": 98285, "credit_id": "52fe4e07c3a36847f827a1fb", "cast_id": 4, "profile_path": "/8dHvzSKt9Lfz75kMzN2eznQ8ci8.jpg", "order": 3}, {"name": "Terry Crews", "character": "Nickens", "id": 53256, "credit_id": "52fe4e07c3a36847f827a1ff", "cast_id": 5, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 4}, {"name": "Joel McHale", "character": "Mark", "id": 74949, "credit_id": "52fe4e07c3a36847f827a209", "cast_id": 7, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 5}, {"name": "Lauren Lapkus", "character": "Tracy", "id": 591834, "credit_id": "52fe4e07c3a36847f827a20d", "cast_id": 8, "profile_path": "/jVfj2ZsbIDOjjTXaQMMURrhLEHM.jpg", "order": 6}, {"name": "Kevin Nealon", "character": "Eddy", "id": 58478, "credit_id": "52fe4e07c3a36847f827a211", "cast_id": 9, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 7}, {"name": "Alyvia Alyn Lind", "character": "Lou", "id": 1274510, "credit_id": "52fe4e07c3a36847f827a219", "cast_id": 11, "profile_path": "/iRgOBaCvrBLJm1q2vob9lQNpQa6.jpg", "order": 9}, {"name": "Emma Fuhrmann", "character": "Espn", "id": 1028454, "credit_id": "52fe4e07c3a36847f827a21d", "cast_id": 13, "profile_path": "/d3hfaTf5yWmUVQUDkL6QY8f42WX.jpg", "order": 10}, {"name": "Anna Colwell", "character": "Bubbles", "id": 118593, "credit_id": "52fe4e07c3a36847f827a221", "cast_id": 14, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 11}, {"name": "Abdoulaye N'Gom", "character": "Mfana", "id": 953505, "credit_id": "52fe4e07c3a36847f827a225", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Kyle Red Silverstein", "character": "Tyler", "id": 1274511, "credit_id": "52fe4e07c3a36847f827a229", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Braxton Beckham", "character": "Brendan", "id": 1428393, "credit_id": "54e3e07492514110990048d9", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Zak Henri", "character": "Jake", "id": 1428394, "credit_id": "54e3e095925141454f007dc6", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Jessica Lowe", "character": "Ginger", "id": 1428395, "credit_id": "54e3e0a79251411953009f38", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Shaquille O'Neal", "character": "Doug", "id": 35806, "credit_id": "54e3e0b3c3a36823d4001732", "cast_id": 28, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 17}, {"name": "Dan Patrick", "character": "Dick", "id": 166029, "credit_id": "54e3e0b99251411953009f3e", "cast_id": 29, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 18}, {"name": "Alexis Arquette", "character": "Georgina", "id": 19578, "credit_id": "54e3e0c7925141195600a836", "cast_id": 30, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 19}, {"name": "Mary Pat Gleason", "character": "Pharmacy Cashier", "id": 62595, "credit_id": "54e3e0d2c3a368486f001e5a", "cast_id": 31, "profile_path": "/crJCES2ttMVhuU2gFxrRg1jDWum.jpg", "order": 20}, {"name": "Allen Covert", "character": "220 Tom", "id": 20818, "credit_id": "54e3e0e4c3a368454d00a273", "cast_id": 32, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 21}, {"name": "Jared Sandler", "character": "Cute Teenage Boy", "id": 60961, "credit_id": "54ee55859251417971004a2c", "cast_id": 33, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 22}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe4e07c3a36847f827a205", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.7, "runtime": 117}, "52449": {"poster_path": "/ejTcAKe5F3zsvU9GXyl2ODAhkWl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 216197492, "overview": "A lazy, incompetent middle school teacher who hates her job and her students is forced to return to her job to make enough money for a boob job after her rich fianc\u00e9 dumps her.", "video": false, "id": 52449, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bad Teacher", "tagline": "She doesn't give an F.", "vote_count": 432, "homepage": "http://www.areyouabadteacher.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1284575", "adult": false, "backdrop_path": "/qllCPxcPbwbrOAXcQqXjVeJfuvF.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mosaic Media Group", "id": 748}], "release_date": "2011-06-19", "popularity": 0.948632036473938, "original_title": "Bad Teacher", "budget": 20000000, "cast": [{"name": "Jason Segel", "character": "Russell Gettis", "id": 41088, "credit_id": "52fe482cc3a36847f815b159", "cast_id": 2, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Elizabeth Halsey", "id": 6941, "credit_id": "52fe482cc3a36847f815b15d", "cast_id": 3, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Scott Delacorte", "id": 12111, "credit_id": "52fe482cc3a36847f815b161", "cast_id": 4, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Lucy Punch", "character": "Amy Squirrel", "id": 66446, "credit_id": "52fe482cc3a36847f815b165", "cast_id": 5, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 3}, {"name": "Phyllis Smith", "character": "Lynn Davies", "id": 169200, "credit_id": "52fe482cc3a36847f815b181", "cast_id": 10, "profile_path": "/yjDRnyOcK3acHYLRYTplnvhLnUn.jpg", "order": 4}, {"name": "John Michael Higgins", "character": "Principal Wally Snur", "id": 8265, "credit_id": "52fe482cc3a36847f815b185", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 5}, {"name": "Jillian Armenante", "character": "Ms. Pavicic", "id": 20469, "credit_id": "52fe482cc3a36847f815b189", "cast_id": 12, "profile_path": "/3nvYOL6Vq7iY5OJgeubowsmbLTA.jpg", "order": 6}, {"name": "Dave Allen", "character": "Sandy Pinkus", "id": 88971, "credit_id": "5332f5e4c3a3686a7f00478c", "cast_id": 13, "profile_path": "/rvSLaWzULGUqwieZyMJ3BNCZYTd.jpg", "order": 7}, {"name": "Matthew J. Evans", "character": "Garrett Tiara", "id": 207006, "credit_id": "5332f5fbc3a3686a9d0046d0", "cast_id": 14, "profile_path": "/yvPTr2Twct3VPRaUJ3GlQmkJ8VS.jpg", "order": 8}, {"name": "Kaitlyn Dever", "character": "Sasha Abernathy", "id": 481337, "credit_id": "5332f60ac3a3686aaf004758", "cast_id": 15, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 9}, {"name": "Igal Ben Yair", "character": "Arkady", "id": 980152, "credit_id": "5332f62dc3a3686a9d0046d6", "cast_id": 17, "profile_path": "/7nPidWYQcR33PXtwNwsKGeD1xjR.jpg", "order": 11}, {"name": "Aja Bair", "character": "Devon", "id": 980153, "credit_id": "5332f639c3a3686a8e0045be", "cast_id": 18, "profile_path": "/rAC5O0qx008LsL8SKrgyMFJLilM.jpg", "order": 12}, {"name": "Andra Nechita", "character": "Gaby", "id": 997379, "credit_id": "5332f647c3a3686a7f004794", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Noah Munck", "character": "Tristan", "id": 221125, "credit_id": "5332f656c3a3686aaf004762", "cast_id": 20, "profile_path": "/azP86nJZHgtpX2hNagzx8VVJSNT.jpg", "order": 14}, {"name": "Molly Shannon", "character": "Melody", "id": 28640, "credit_id": "53f587a9c3a36833fa003022", "cast_id": 22, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 15}, {"name": "Kathryn Newton", "character": "Chase Rubin-Rosse", "id": 221192, "credit_id": "54fe28409251410e5a0001bf", "cast_id": 23, "profile_path": "/3GeXNWqXLrf7yut63ce3fU3oGmR.jpg", "order": 16}], "directors": [{"name": "Jake Kasdan", "department": "Directing", "job": "Director", "credit_id": "52fe482cc3a36847f815b155", "profile_path": "/1jmlwJ7Y0a7fp28bJLr73u12wbv.jpg", "id": 51851}], "vote_average": 5.4, "runtime": 92}, "191714": {"poster_path": "/xFJqU1W5WlJiKr4Witnb7h9HNHn.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IN", "name": "India"}], "revenue": 0, "overview": "A mistaken delivery in Mumbai's famously efficient lunchbox delivery system (Mumbai's Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.", "video": false, "id": 191714, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Lunchbox", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt2350496", "adult": false, "backdrop_path": "/uLBtXH5t0XQJujyRfnz9ifwnsMj.jpg", "production_companies": [{"name": "UTV Motion Pictures", "id": 2320}], "release_date": "2013-09-19", "popularity": 0.428818778367691, "original_title": "Dabba", "budget": 0, "cast": [{"name": "Irrfan Khan", "character": "Saajan Fernandes", "id": 76793, "credit_id": "52fe4c8f9251416c910f8cd3", "cast_id": 2, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 0}, {"name": "Nimrat Kaur", "character": "Ila", "id": 1077932, "credit_id": "52fe4c8f9251416c910f8cd7", "cast_id": 3, "profile_path": "/r9i6vkn9uzc6mzEU74PUFOJidwK.jpg", "order": 1}, {"name": "Nawazuddin Siddiqui", "character": "Shaikh", "id": 85047, "credit_id": "52fe4c8f9251416c910f8cdb", "cast_id": 4, "profile_path": "/mzkiEQYW96AdxilYzSFp5Wo4Fqt.jpg", "order": 2}, {"name": "Denzil Smith", "character": "Mr. Shroff", "id": 933391, "credit_id": "52fe4c8f9251416c910f8cdf", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Bharati Achrekar", "character": "Mrs. Deshpande", "id": 587092, "credit_id": "52fe4c8f9251416c910f8ce3", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Nakul Vaid", "character": "Rajeev", "id": 1052353, "credit_id": "52fe4c8f9251416c910f8ce7", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Yashvi Puneet Nagar", "character": "Yavshi", "id": 1295644, "credit_id": "53094f5e925141111400283c", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Lillete Dubey", "character": "Ila's Mother", "id": 6498, "credit_id": "530cd97a9251411444001280", "cast_id": 10, "profile_path": "/pO6sx2eb6SREAOGNGtva0J7b6NB.jpg", "order": 7}, {"name": "Shruti Bapna", "character": "Mehrunnisa", "id": 1246781, "credit_id": "530cd9879251411428001379", "cast_id": 11, "profile_path": null, "order": 8}], "directors": [{"name": "Ritesh Batra", "department": "Directing", "job": "Director", "credit_id": "52fe4c8f9251416c910f8ccf", "profile_path": null, "id": 1117026}], "vote_average": 7.0, "runtime": 104}, "52451": {"poster_path": "/n8ob0xjLIjnvqgWY57rPQYOw7t.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132274484, "overview": "The hot-headed young D'Artagnan along with three former legendary but now down on their luck Musketeers must unite and defeat a beautiful double agent and her villainous employer from seizing the French throne and engulfing Europe in war.", "video": false, "id": 52451, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "The Three Musketeers", "tagline": "Every legend has a new beginning.", "vote_count": 326, "homepage": "http://www.threemusketeers-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1509767", "adult": false, "backdrop_path": "/jU5iViCqvycEnmbX04kYZi10lnR.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Impact Pictures", "id": 248}, {"name": "Nouvelles \u00c9ditions de Films (NEF)", "id": 753}, {"name": "New Legacy", "id": 939}], "release_date": "2011-10-20", "popularity": 0.823484854937928, "original_title": "The Three Musketeers", "budget": 75000000, "cast": [{"name": "Milla Jovovich", "character": "M'lady De Winter", "id": 63, "credit_id": "52fe482cc3a36847f815b21b", "cast_id": 2, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Duke of Buckingham", "id": 114, "credit_id": "52fe482cc3a36847f815b21f", "cast_id": 3, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Logan Lerman", "character": "D'Artagnan", "id": 33235, "credit_id": "52fe482cc3a36847f815b223", "cast_id": 4, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Ray Stevenson", "character": "Porthos", "id": 56614, "credit_id": "52fe482cc3a36847f815b227", "cast_id": 5, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 3}, {"name": "Matthew Macfadyen", "character": "Athos", "id": 15576, "credit_id": "52fe482cc3a36847f815b22b", "cast_id": 6, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 4}, {"name": "Luke Evans", "character": "Aramis", "id": 114019, "credit_id": "52fe482cc3a36847f815b22f", "cast_id": 7, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 5}, {"name": "Mads Mikkelsen", "character": "Rochefort", "id": 1019, "credit_id": "52fe482cc3a36847f815b233", "cast_id": 8, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 6}, {"name": "Christoph Waltz", "character": "Cardinal Richelieu", "id": 27319, "credit_id": "52fe482cc3a36847f815b237", "cast_id": 9, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 7}, {"name": "Freddie Fox", "character": "King Louis XVIII of France", "id": 1014931, "credit_id": "52fe482cc3a36847f815b259", "cast_id": 15, "profile_path": "/kOPYh0Jr8lAUTmbyDZiES9Lx1j8.jpg", "order": 8}, {"name": "Gabriella Wilde", "character": "Constance", "id": 1014932, "credit_id": "52fe482cc3a36847f815b25d", "cast_id": 16, "profile_path": "/xbhScoMy3P6pK8Eg5V3EbGoxRSg.jpg", "order": 9}, {"name": "Juno Temple", "character": "Queen Anne", "id": 36594, "credit_id": "52fe482cc3a36847f815b261", "cast_id": 17, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 10}, {"name": "Til Schweiger", "character": "Cagliostro", "id": 1844, "credit_id": "52fe482cc3a36847f815b265", "cast_id": 18, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 11}, {"name": "James Corden", "character": "Planchet", "id": 55466, "credit_id": "52fe482cc3a36847f815b269", "cast_id": 19, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 12}, {"name": "Dexter Fletcher", "character": "D'Artagnan's Father", "id": 974, "credit_id": "52fe482cc3a36847f815b26d", "cast_id": 20, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 13}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe482cc3a36847f815b217", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.6, "runtime": 110}, "134374": {"poster_path": "/3AWSwYavODs0lL916NE9bLJJNTo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86175291, "overview": "Based on the true story of Daniel Lugo (Mark Wahlberg) a Miami bodybuilder who wants to live the American dream. He would like to have the money that other people have. So he enlists the help of fellow bodybuilder Adrian Doorbal (Anthony Mackie) and ex-convict, Christian bodybuilder Paul Doyle (Dwayne Johnson). Their kidnapping and extortion scheme goes terribly wrong since they have muscles for brains and they're left to haphazardly try to hold onto the elusive American dream.", "video": false, "id": 134374, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Pain & Gain", "tagline": "Their American Dream Is Bigger Than Yours", "vote_count": 680, "homepage": "http://www.painandgainmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1980209", "adult": false, "backdrop_path": "/uWREpRwvl2AYqKNmrubGgE68gnC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2013-04-26", "popularity": 1.1588517509769, "original_title": "Pain & Gain", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Daniel Lugo", "id": 13240, "credit_id": "52fe4bcdc3a368484e199c6b", "cast_id": 6, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Dwayne Johnson", "character": "Paul Doyle", "id": 18918, "credit_id": "52fe4bcdc3a368484e199c73", "cast_id": 8, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 1}, {"name": "Anthony Mackie", "character": "Adrian Doorbal", "id": 53650, "credit_id": "52fe4bcdc3a368484e199c7f", "cast_id": 11, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 2}, {"name": "Tony Shalhoub", "character": "Victor Kershaw", "id": 4252, "credit_id": "52fe4bcdc3a368484e199c83", "cast_id": 12, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 3}, {"name": "Ed Harris", "character": "Ed DuBois", "id": 228, "credit_id": "52fe4bcdc3a368484e199c7b", "cast_id": 10, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 4}, {"name": "Rob Corddry", "character": "John Mese", "id": 52997, "credit_id": "52fe4bcdc3a368484e199c87", "cast_id": 13, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 5}, {"name": "Bar Paly", "character": "Sorina Luminita", "id": 963117, "credit_id": "52fe4bcdc3a368484e199ca9", "cast_id": 22, "profile_path": "/e3BkVd6wXrJvTlBfoosuGkAKSTp.jpg", "order": 6}, {"name": "Rebel Wilson", "character": "Ramona Eldridge", "id": 221581, "credit_id": "52fe4bcdc3a368484e199c6f", "cast_id": 7, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 7}, {"name": "Ken Jeong", "character": "Johnny Wu", "id": 83586, "credit_id": "52fe4bcdc3a368484e199c77", "cast_id": 9, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 8}, {"name": "Michael Rispoli", "character": "Frank Griga", "id": 18313, "credit_id": "52fe4bcdc3a368484e199cad", "cast_id": 23, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 9}, {"name": "Keili Lefkovitz", "character": "Krisztina Furton", "id": 89857, "credit_id": "52fe4bcdc3a368484e199cb1", "cast_id": 24, "profile_path": "/c6oMFOtN3DRQfW62BB7vmtR82ab.jpg", "order": 10}, {"name": "Vivi Pineda", "character": "Detective Haworth", "id": 931218, "credit_id": "52fe4bcdc3a368484e199c8b", "cast_id": 14, "profile_path": "/2DpbILrj3wlJ0wjr71yh1W8WsST.jpg", "order": 11}, {"name": "Christopher Jestin Langstaff", "character": "Nine-Year-Old Boy/Rusty", "id": 1172379, "credit_id": "52fe4bcdc3a368484e199c95", "cast_id": 17, "profile_path": "/8G8mo2wrRs7tyfnGnNxHY6TSKY.jpg", "order": 12}, {"name": "Gustavo Quiroz Jr.", "character": "Son of Victor Kershaw", "id": 1172381, "credit_id": "52fe4bcdc3a368484e199c99", "cast_id": 18, "profile_path": "/7L5W81c3rbwcv6eNvUqiy7v9cl4.jpg", "order": 13}, {"name": "Corinne Ferrer", "character": "Basketball Girl", "id": 1172382, "credit_id": "52fe4bcdc3a368484e199c9d", "cast_id": 19, "profile_path": "/iA3zNzsoVkD1p6ijdZSsST7VRNg.jpg", "order": 14}, {"name": "Zack Moore", "character": "Young Daniel Lugo", "id": 1172383, "credit_id": "52fe4bcdc3a368484e199ca1", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Kory Getman", "character": "Teenage Daniel Lugo", "id": 1172384, "credit_id": "52fe4bcdc3a368484e199ca5", "cast_id": 21, "profile_path": "/dlLdhSH4yIvXgxmttR2PZozH5Hd.jpg", "order": 16}, {"name": "Peter Stormare", "character": "Dr. Bjornson", "id": 53, "credit_id": "52fe4bcdc3a368484e199cb5", "cast_id": 25, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 17}, {"name": "Larry Hankin", "character": "Pastor Randy", "id": 11519, "credit_id": "52fe4bcdc3a368484e199cb9", "cast_id": 26, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 18}, {"name": "Tony Plana", "character": "Captain Lopez", "id": 41737, "credit_id": "52fe4bcdc3a368484e199cbd", "cast_id": 27, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 19}, {"name": "Peter Stormare", "character": "Dr. Bjornson", "id": 53, "credit_id": "52fe4bcdc3a368484e199cc1", "cast_id": 28, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 20}, {"name": "Brian Stepanek", "character": "Brad McCalister", "id": 146391, "credit_id": "52fe4bcdc3a368484e199cc5", "cast_id": 29, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 21}, {"name": "Persei Caputo", "character": "Judy", "id": 1272982, "credit_id": "52fe4bcdc3a368484e199cc9", "cast_id": 30, "profile_path": "/2ixypNCFL6qaNKivACOF8Yu7ywQ.jpg", "order": 22}, {"name": "Bill Kelly", "character": "Jim", "id": 42905, "credit_id": "52fe4bcdc3a368484e199ccd", "cast_id": 31, "profile_path": "/3S1eUI4crF07mZoEil0N4uaFBK5.jpg", "order": 23}, {"name": "Emily Rutherfurd", "character": "Carolyn 'Sissy' Du Bois", "id": 1233672, "credit_id": "52fe4bcdc3a368484e199d1f", "cast_id": 47, "profile_path": "/1clXrlBKFAAQ7ltkMp1uogAa6Ji.jpg", "order": 24}, {"name": "Wladimir Klitschko", "character": "Client", "id": 47780, "credit_id": "530c4b07c3a3685c03000cd0", "cast_id": 54, "profile_path": null, "order": 29}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4bcdc3a368484e199c91", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 130}, "44264": {"poster_path": "/qc7vaF5fIeTllAykdP3wldlMyRh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 249250624, "overview": "Following the murder of her father by hired hand Tom Chaney, 14-year-old farm girl Mattie Ross sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find, a man with \"true grit,\" Reuben J. \"Rooster\" Cogburn. Mattie insists on accompanying Cogburn, whose drinking, sloth, and generally reprobate character do not augment her faith in him. Against his wishes, she joins him in his trek into the Indian Nations in search of Chaney. They are joined by Texas Ranger LaBoeuf, who wants Chaney for his own purposes. The unlikely trio find danger and adventure on the journey, and each has his or her \"grit\" tested.", "video": false, "id": 44264, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "True Grit", "tagline": "Punishment Comes One Way or Another.", "vote_count": 569, "homepage": "http://www.truegritmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1403865", "adult": false, "backdrop_path": "/wDPmggrApz7nxy4BAQk3rCLi3R6.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2010-12-22", "popularity": 1.39620851564112, "original_title": "True Grit", "budget": 38000000, "cast": [{"name": "Jeff Bridges", "character": "Rooster Cogburn", "id": 1229, "credit_id": "52fe4681c3a36847f8102c4b", "cast_id": 24, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 3}, {"name": "Hailee Steinfeld", "character": "Mattie Ross", "id": 130640, "credit_id": "52fe4681c3a36847f8102c4f", "cast_id": 25, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 4}, {"name": "Matt Damon", "character": "LaBoeuf", "id": 1892, "credit_id": "52fe4681c3a36847f8102c53", "cast_id": 26, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 5}, {"name": "Josh Brolin", "character": "Tom Chaney", "id": 16851, "credit_id": "52fe4681c3a36847f8102c57", "cast_id": 27, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 6}, {"name": "Barry Pepper", "character": "Lucky Ned Pepper", "id": 12834, "credit_id": "52fe4681c3a36847f8102c5b", "cast_id": 28, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 7}, {"name": "Dakin Matthews", "character": "Col. Stonehill", "id": 43364, "credit_id": "52fe4681c3a36847f8102c5f", "cast_id": 29, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 8}, {"name": "Jarlath Conroy", "character": "Undertaker", "id": 54856, "credit_id": "52fe4681c3a36847f8102c63", "cast_id": 30, "profile_path": "/azAslEkvpXkTviBokJDV9ecAbBO.jpg", "order": 9}, {"name": "Paul Rae", "character": "Emmett Quincy", "id": 61260, "credit_id": "52fe4681c3a36847f8102c67", "cast_id": 31, "profile_path": "/ny1kzrULA4dA4j95oETiYZCl6GV.jpg", "order": 10}, {"name": "Domhnall Gleeson", "character": "Moon (The Kid)", "id": 93210, "credit_id": "52fe4681c3a36847f8102c6b", "cast_id": 32, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 11}, {"name": "Elizabeth Marvel", "character": "40-Year-Old Mattie", "id": 126713, "credit_id": "52fe4681c3a36847f8102c6f", "cast_id": 33, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 12}, {"name": "Roy Lee Jones", "character": "Yarnell", "id": 177157, "credit_id": "52fe4681c3a36847f8102c73", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Ed Lee Corbin", "character": "Bear Man", "id": 240869, "credit_id": "52fe4681c3a36847f8102c77", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Leon Russom", "character": "Sheriff", "id": 169920, "credit_id": "52fe4681c3a36847f8102c7b", "cast_id": 36, "profile_path": "/kITkYMh1VZgHSAMlMxsZ6jaUF7C.jpg", "order": 15}, {"name": "Bruce Green", "character": "Harold Parmalee", "id": 12970, "credit_id": "52fe4681c3a36847f8102c7f", "cast_id": 37, "profile_path": "/7xCCRDDC11AZRIdV9cMTEOOxrbd.jpg", "order": 16}, {"name": "Candyce Hinkle", "character": "Boarding House Landlady", "id": 52882, "credit_id": "52fe4681c3a36847f8102c83", "cast_id": 38, "profile_path": "/kg3cCCLQG6rx7FulnUcXxHFQZKX.jpg", "order": 17}, {"name": "Peter Leung", "character": "Mr. Lee", "id": 240870, "credit_id": "52fe4681c3a36847f8102c87", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Don Pirl", "character": "Cole Younger", "id": 240871, "credit_id": "52fe4681c3a36847f8102c8b", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Joe Stevens", "character": "Cross-examining Lawyer", "id": 177905, "credit_id": "52fe4681c3a36847f8102c8f", "cast_id": 41, "profile_path": "/kVH3JfyhXdVyBeLJkxjH1Dw6IWm.jpg", "order": 20}, {"name": "David Lipman", "character": "First Lawyer", "id": 181297, "credit_id": "52fe4681c3a36847f8102c93", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Jake Walker", "character": "Judge Parker", "id": 240872, "credit_id": "52fe4681c3a36847f8102c97", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Orlando Smart", "character": "Stableboy", "id": 240873, "credit_id": "52fe4681c3a36847f8102c9b", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Ty Mitchell", "character": "Ferryman", "id": 11788, "credit_id": "52fe4681c3a36847f8102c9f", "cast_id": 45, "profile_path": null, "order": 24}, {"name": "Nicholas Sadler", "character": "Repentant Condemned Man", "id": 50402, "credit_id": "52fe4681c3a36847f8102ca3", "cast_id": 46, "profile_path": "/97hL5ECPZONeQtVBYEgj4osqfgx.jpg", "order": 25}, {"name": "Scott Sowers", "character": "Unrepentant Condemned Man", "id": 32287, "credit_id": "52fe4681c3a36847f8102ca7", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Jonathan Joss", "character": "Condemned Indian", "id": 154778, "credit_id": "52fe4681c3a36847f8102cab", "cast_id": 48, "profile_path": "/1cjHSQcnMI8Zeyn7wAbDrI0D1m.jpg", "order": 27}, {"name": "Maggie A. Goodman", "character": "Woman at Hanging", "id": 240874, "credit_id": "52fe4681c3a36847f8102caf", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Brandon Sanderson", "character": "Indian Youth at Bagby's", "id": 240875, "credit_id": "52fe4681c3a36847f8102cb3", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Ruben Nakai Campana", "character": "Indian Youth at Bagby's", "id": 240876, "credit_id": "52fe4681c3a36847f8102cb7", "cast_id": 51, "profile_path": null, "order": 30}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4681c3a36847f8102c2f", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4681c3a36847f8102c35", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.9, "runtime": 110}, "11497": {"poster_path": "/fb6CRpryYQB5eqjohSnLbjHxJQK.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27100027, "overview": "When a casino owning dog named Charlie is murdered by his rival Carface, he finds himself in Heaven basically by default since all dogs go to heaven. However, since he wants to get back at his killer, he cons his way back to the living with the warning that doing that damns him to Hell. Once back, he teams with his old partner, Itchy to prep his retaliation. He also stumbles on to an orphan girl who can talk to the animals, thus allowing him to get the inside info on the races to ensure his wins to finance his plans. However, all the while, he is still haunted by nightmares on what's waiting for him on the other side unless he can prove that he is worthy of Heaven again.", "video": false, "id": 11497, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "All Dogs Go to Heaven", "tagline": "But not all dogs stay there!", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yzuYenLnjAHbTPeu7DLAySbcNGi.jpg", "id": 140910, "name": "All Dogs Go to Heaven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096787", "adult": false, "backdrop_path": "/46rKRjko3K3nxbmsB0lh4Z2WyUq.jpg", "production_companies": [{"name": "Goldcrest Films International", "id": 500}, {"name": "Sullivan Bluth Studios", "id": 6422}], "release_date": "1989-11-17", "popularity": 0.805702395351903, "original_title": "All Dogs Go to Heaven", "budget": 13800000, "cast": [{"name": "Burt Reynolds", "character": "Charlie B. Barkin", "id": 16475, "credit_id": "52fe444b9251416c7502fad1", "cast_id": 1, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 0}, {"name": "Dom DeLuise", "character": "Itchy Itchiford", "id": 6844, "credit_id": "52fe444b9251416c7502fad5", "cast_id": 2, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 1}, {"name": "Judith Barsi", "character": "Anne-Marie", "id": 16216, "credit_id": "52fe444b9251416c7502fad9", "cast_id": 3, "profile_path": "/us9iqhoNDbjKKVVlr3TciFLVagn.jpg", "order": 2}, {"name": "Melba Moore", "character": "Whippet Angel (Annabelle)", "id": 69604, "credit_id": "52fe444b9251416c7502fadd", "cast_id": 4, "profile_path": "/5sKKFGNDBQVuLkMWdd2l1UMAXfg.jpg", "order": 3}, {"name": "Daryl Gilley", "character": "Dog Caster", "id": 1024536, "credit_id": "52fe444b9251416c7502fb23", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Candy Devine", "character": "Vera", "id": 217091, "credit_id": "52fe444b9251416c7502fb27", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Vic Tayback", "character": "Carface", "id": 14069, "credit_id": "52fe444b9251416c7502fb2f", "cast_id": 20, "profile_path": "/rddNsgbWGeYckB9IB0i2s8uQdv5.jpg", "order": 6}, {"name": "Charles Nelson Reilly", "character": "Killer", "id": 1211888, "credit_id": "538373d60e0a2624cb00c90c", "cast_id": 42, "profile_path": "/33zhRygZgUe4Clge5300ZRJeIiz.jpg", "order": 7}, {"name": "Robert Fuller", "character": "Harold", "id": 38129, "credit_id": "52fe444b9251416c7502fb33", "cast_id": 21, "profile_path": "/wOUkvybLEYDVYJcaofIKS3Bioul.jpg", "order": 8}, {"name": "Earleen Carey", "character": "Kate", "id": 104450, "credit_id": "52fe444b9251416c7502fb37", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Anna Manahan", "character": "Stella Dallas", "id": 975564, "credit_id": "52fe444b9251416c7502fb3b", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Nigel Pegram", "character": "Sir Reginald", "id": 1063136, "credit_id": "52fe444b9251416c7502fb3f", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Loni Anderson", "character": "Flo", "id": 34735, "credit_id": "52fe444b9251416c7502fb43", "cast_id": 25, "profile_path": "/pVCCxFOOr6zgzvKry2rrrFWN9Ue.jpg", "order": 12}, {"name": "Ken Page", "character": "King Gator", "id": 95758, "credit_id": "52fe444b9251416c7502fb47", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Godfrey Quigley", "character": "Terrier", "id": 2279, "credit_id": "52fe444b9251416c7502fb4b", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Jay Stevens", "character": "Mastiff", "id": 1080066, "credit_id": "52fe444b9251416c7502fb4f", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe444b9251416c7502fae3", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}, {"name": "Gary Goldman", "department": "Directing", "job": "Director", "credit_id": "52fe444b9251416c7502fae9", "profile_path": "/3GPDphDxHIlT3D8GiMCKsf3X4Rj.jpg", "id": 12881}, {"name": "Dan Kuenster", "department": "Directing", "job": "Director", "credit_id": "52fe444b9251416c7502faef", "profile_path": null, "id": 69605}], "vote_average": 6.4, "runtime": 89}, "11499": {"poster_path": "/qCs0Vc3QhyqRSDLCDinOai5CVT5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost's team harboured doubts about their boss's ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.", "video": false, "id": 11499, "genres": [{"id": 18, "name": "Drama"}], "title": "Frost/Nixon", "tagline": "400 million people were waiting for the truth", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0870111", "adult": false, "backdrop_path": "/n7VX5nsHUiQargJKVCJ5dcsa39o.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Working Title Films", "id": 10163}], "release_date": "2008-10-15", "popularity": 0.524612942746119, "original_title": "Frost/Nixon", "budget": 0, "cast": [{"name": "Michael Sheen", "character": "David Frost", "id": 3968, "credit_id": "52fe444c9251416c7502fc61", "cast_id": 6, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 0}, {"name": "Frank Langella", "character": "Richard Nixon", "id": 8924, "credit_id": "52fe444c9251416c7502fc5d", "cast_id": 5, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Jack Brennan", "id": 4724, "credit_id": "52fe444c9251416c7502fc55", "cast_id": 3, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "James Reston Jr.", "id": 6807, "credit_id": "52fe444c9251416c7502fc59", "cast_id": 4, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Mark Simich", "character": "Hugh Hefner", "id": 66660, "credit_id": "52fe444c9251416c7502fc4b", "cast_id": 1, "profile_path": "/vpuMqT1t73jKKLqo80yI3rNTcRX.jpg", "order": 4}, {"name": "Matthew Macfadyen", "character": "John Birt", "id": 15576, "credit_id": "52fe444c9251416c7502fc6b", "cast_id": 8, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 5}, {"name": "Oliver Platt", "character": "Bob Zelnick", "id": 17485, "credit_id": "52fe444c9251416c7502fc6f", "cast_id": 9, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 6}, {"name": "Rebecca Hall", "character": "Caroline Cushing", "id": 15556, "credit_id": "52fe444c9251416c7502fc73", "cast_id": 10, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 7}, {"name": "Toby Jones", "character": "Swifty Lazar", "id": 13014, "credit_id": "52fe444c9251416c7502fc77", "cast_id": 11, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Andy Milder", "character": "Frank Gannon", "id": 1043304, "credit_id": "52fe444c9251416c7502fc7b", "cast_id": 12, "profile_path": "/pUxbi636gXl6CaeGvKrPr3j22Ea.jpg", "order": 9}, {"name": "Kate Jennings Grant", "character": "Diane Sawyer", "id": 59697, "credit_id": "52fe444c9251416c7502fc7f", "cast_id": 13, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 10}, {"name": "Gabriel Jarret", "character": "Ken Khachigian", "id": 92808, "credit_id": "52fe444c9251416c7502fc83", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Jim Meskimen", "character": "Ray Price", "id": 30697, "credit_id": "52fe444c9251416c7502fc87", "cast_id": 15, "profile_path": "/fZ1Eu6Pb98LUn0wwTU7D32a6WGR.jpg", "order": 12}, {"name": "Patty McCormack", "character": "Pat Nixon", "id": 125026, "credit_id": "52fe444c9251416c7502fc8b", "cast_id": 16, "profile_path": "/xUNk8RjLVDTvtA4mAPX8aWBRMlR.jpg", "order": 13}, {"name": "Geoffrey Blake", "character": "Interview Director", "id": 148122, "credit_id": "52fe444c9251416c7502fc8f", "cast_id": 17, "profile_path": "/8DTss5Bkio4k81k6SM1AXaNfKOA.jpg", "order": 14}, {"name": "Clint Howard", "character": "Lloyd Davis", "id": 15661, "credit_id": "52fe444c9251416c7502fc93", "cast_id": 18, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 15}, {"name": "Rance Howard", "character": "Ollie", "id": 22250, "credit_id": "53832dc00e0a2624bd00c5ed", "cast_id": 28, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 16}, {"name": "Gavin Grazer", "character": "White House Director", "id": 38572, "credit_id": "52fe444c9251416c7502fc9b", "cast_id": 20, "profile_path": "/qe5J2NMzcN2NVgVS1D04tuDUyke.jpg", "order": 17}, {"name": "Simon James", "character": "Frost Show Director", "id": 152306, "credit_id": "52fe444c9251416c7502fc9f", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Eloy Casados", "character": "Manolo Sanchez", "id": 64351, "credit_id": "52fe444c9251416c7502fca3", "cast_id": 22, "profile_path": "/myddrZZnKBZWLXS5TeisQjIBfdT.jpg", "order": 19}, {"name": "Jay White", "character": "Neil Diamond", "id": 1089547, "credit_id": "52fe444c9251416c7502fca7", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Wil Albert", "character": "Sammy Cahn", "id": 157452, "credit_id": "52fe444c9251416c7502fcab", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Keith MacKechnie", "character": "Marv Minoff", "id": 239021, "credit_id": "52fe444c9251416c7502fcaf", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Penny L. Moore", "character": "Lady with Dachshund", "id": 1089549, "credit_id": "52fe444c9251416c7502fcb3", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Janneke Arent", "character": "Frost's Female Assistant", "id": 1089550, "credit_id": "52fe444c9251416c7502fcb7", "cast_id": 27, "profile_path": null, "order": 24}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe444c9251416c7502fc51", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.8, "runtime": 122}, "41513": {"poster_path": "/8W9L7ByduypXKD7AticK7GvGqTE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125948234, "overview": "When the evil wizard Gargamel chases the tiny blue Smurfs out of their village, they tumble from their magical world and into ours -- in fact, smack dab in the middle of Central Park. Just three apples high and stuck in the Big Apple, the Smurfs must find a way to get back to their village before Gargamel tracks them down.", "video": false, "id": 41513, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Smurfs", "tagline": "Smurf Happens.", "vote_count": 466, "homepage": "http://www.smurfhappens.com/", "belongs_to_collection": {"backdrop_path": "/4q6O2Z569yHhcSDwcLEwhuNsmFV.jpg", "poster_path": "/oHnEQNLwyxPlaolWKInN85CQfOx.jpg", "id": 134897, "name": "The Smurfs Collection (Theatrical Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472181", "adult": false, "backdrop_path": "/83lCHxDeIrovVxPw2ztvwcoH6rA.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}, {"name": "Kerner Entertainment Company", "id": 7311}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2011-07-29", "popularity": 0.955388922740366, "original_title": "The Smurfs", "budget": 110000000, "cast": [{"name": "Neil Patrick Harris", "character": "Patrick Winslow", "id": 41686, "credit_id": "52fe45cfc3a36847f80dbb3b", "cast_id": 4, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Jayma Mays", "character": "Grace Winslow", "id": 34195, "credit_id": "52fe45cfc3a36847f80dbb3f", "cast_id": 5, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 1}, {"name": "Anton Yelchin", "character": "Clumsy Smurf (voice)", "id": 21028, "credit_id": "52fe45cfc3a36847f80dbb43", "cast_id": 6, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Gargamel (voice)", "id": 5587, "credit_id": "52fe45cfc3a36847f80dbb47", "cast_id": 7, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Alan Cumming", "character": "Gutsy Smurf (voice)", "id": 10697, "credit_id": "52fe45cfc3a36847f80dbb4b", "cast_id": 8, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 4}, {"name": "Katy Perry", "character": "Smurfette (voice)", "id": 111455, "credit_id": "52fe45cfc3a36847f80dbb4f", "cast_id": 9, "profile_path": "/mXSbYNKFessbuimdMIxccdRC8ph.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Odile", "id": 63522, "credit_id": "52fe45cfc3a36847f80dbb53", "cast_id": 10, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Jonathan Winters", "character": "Papa Smurf (voice)", "id": 13593, "credit_id": "52fe45cfc3a36847f80dbb5d", "cast_id": 12, "profile_path": "/j63YOBYEXhbDWbXUnqD3gb5KJ5k.jpg", "order": 7}, {"name": "George Lopez", "character": "Grouchy Smurf (voice)", "id": 41798, "credit_id": "52fe45cfc3a36847f80dbb61", "cast_id": 14, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 8}, {"name": "Paul Reubens", "character": "Jokey Smurf (voice)", "id": 5129, "credit_id": "52fe45cfc3a36847f80dbb65", "cast_id": 15, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 9}, {"name": "Kenan Thompson", "character": "Greedy Smurf (voice)", "id": 77330, "credit_id": "52fe45cfc3a36847f80dbb69", "cast_id": 16, "profile_path": "/4mHHu3XXTOQ9yPKOQ3V8jsQyupT.jpg", "order": 10}, {"name": "B. J. Novak", "character": "Baker Smurf (voice)", "id": 107770, "credit_id": "52fe45cfc3a36847f80dbb6d", "cast_id": 17, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 11}, {"name": "Jeff Foxworthy", "character": "Handy Smurf (voice)", "id": 60736, "credit_id": "52fe45cfc3a36847f80dbb71", "cast_id": 18, "profile_path": "/jetIdTUVzIeERHePwrAmKCh2SwR.jpg", "order": 12}, {"name": "Wolfgang Puck", "character": "Chef Smurf (voice)", "id": 1215462, "credit_id": "52fe45cfc3a36847f80dbbdf", "cast_id": 39, "profile_path": "/5uY8O0YkMJjcwXzVIr7zLQs7QBc.jpg", "order": 13}, {"name": "Fred Armisen", "character": "Brainy Smurf (voice)", "id": 61110, "credit_id": "52fe45cfc3a36847f80dbb75", "cast_id": 20, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 14}, {"name": "John Oliver", "character": "Vanity Smurf (voice)", "id": 84292, "credit_id": "52fe45cfc3a36847f80dbb79", "cast_id": 21, "profile_path": "/t1smh9XiGfVof4ep5ZSD8CEFQLk.jpg", "order": 15}, {"name": "Adam Wylie", "character": "Panicky Smurf (voice)", "id": 21402, "credit_id": "52fe45cfc3a36847f80dbb7d", "cast_id": 22, "profile_path": "/qSeYVaE3HKf62J4WQY12mEAKjbz.jpg", "order": 16}, {"name": "Gary Basaraba", "character": "Hefty Smurf (voice)", "id": 96228, "credit_id": "52fe45cfc3a36847f80dbb81", "cast_id": 23, "profile_path": "/mF3JQEIAUDIfNfrNdiAuh2ohFow.jpg", "order": 17}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe45cfc3a36847f80dbb31", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.5, "runtime": 103}, "60670": {"poster_path": "/kkRgQST0bEdEgqpPZMGaUB1twsQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Two French policemen, one investigating a grisly murder at a remote mountain college, the other working on the desecration of a young girl's grave by skinheads, are brought together by the clues from their respective cases. Soon after they start working together, more murders are committed, and the pair begin to discover just what dark secrets are behind the killings.", "video": false, "id": 60670, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Crimson Rivers", "tagline": "Evil rises to new heights.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hNZb0GKybJzF7x5H5dBtLRiw8TA.jpg", "id": 3963, "name": "The Crimson Rivers Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0228786", "adult": false, "backdrop_path": "/pXmMiqordTEbRTDNlKPnyielNVA.jpg", "production_companies": [{"name": "Gaumont International", "id": 7961}], "release_date": "2000-09-26", "popularity": 0.248297422669183, "original_title": "Les Rivi\u00e8res pourpres", "budget": 2365000, "cast": [{"name": "Jean Reno", "character": "Pierre Niemans", "id": 1003, "credit_id": "52fe4630c3a368484e083957", "cast_id": 2, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Max Kerkerian", "id": 1925, "credit_id": "52fe4630c3a368484e08395b", "cast_id": 3, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Nadia Far\u00e8s", "character": "Fanny Ferreira", "id": 34627, "credit_id": "52fe4630c3a368484e08395f", "cast_id": 4, "profile_path": "/lwqyjHyKAHbIqK5BYWEM6gSO8KK.jpg", "order": 2}, {"name": "Dominique Sanda", "character": "Sister Andr\u00e9e", "id": 24590, "credit_id": "52fe4630c3a368484e083963", "cast_id": 5, "profile_path": "/qNLSPZshmNb5j63iCwiKLd10JPI.jpg", "order": 3}, {"name": "Karim Belkhadra", "character": "Captain Dahmane", "id": 35076, "credit_id": "52fe4630c3a368484e083967", "cast_id": 6, "profile_path": "/zUqyn3aQXTzeP1n8yd8Udt1twYA.jpg", "order": 4}, {"name": "Jean-Pierre Cassel", "character": "Dr. Bernard Chernez\u00e9", "id": 19162, "credit_id": "52fe4630c3a368484e08396b", "cast_id": 7, "profile_path": "/yWIAIvRdx0omV9ZOUwLINzHKois.jpg", "order": 5}, {"name": "Didier Flamand", "character": "The Dean", "id": 35077, "credit_id": "52fe4630c3a368484e08396f", "cast_id": 8, "profile_path": "/mYIHYvT9D6tw7zxXI6f5W89kyus.jpg", "order": 6}, {"name": "Philippe Nahon", "character": "Homme \u00e0 la station service", "id": 5444, "credit_id": "52fe4630c3a368484e083973", "cast_id": 10, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 7}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe4630c3a368484e083953", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 6.4, "runtime": 106}, "11522": {"poster_path": "/td6vfzrDZnGXsMfgZQfchRWcqv6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10103647, "overview": "Young Andie is one of the not-so-popular girls in high school. She usually hangs out with her friends Iona or Duckie. Duckie has always had a crush on her, but now she has met a new guy from school, Blane. He's one of the rich and popular guys but can the two worlds meet?", "video": false, "id": 11522, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Pretty in Pink", "tagline": "Blane's a pretty cool guy. Andie's pretty in pink. And Ducky's pretty crazy.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091790", "adult": false, "backdrop_path": "/4MVbLN7eP6B7C7vKz1GhfD6Uyet.jpg", "production_companies": [{"name": "Paramount", "id": 6033}], "release_date": "1986-02-28", "popularity": 0.521301211470995, "original_title": "Pretty in Pink", "budget": 25000000, "cast": [{"name": "Molly Ringwald", "character": "Andie Walsh", "id": 21625, "credit_id": "52fe44519251416c75030885", "cast_id": 1, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 0}, {"name": "Jon Cryer", "character": "Philip F. \"Duckie\" Dale", "id": 69718, "credit_id": "52fe44519251416c75030889", "cast_id": 2, "profile_path": "/kXoEUv6pfXZGFuxVTTiuSVnac7B.jpg", "order": 1}, {"name": "Andrew McCarthy", "character": "Blane McDonough", "id": 37041, "credit_id": "52fe44519251416c7503088d", "cast_id": 3, "profile_path": "/5ChWnInkq2BDpIT1Yoa9guqLiQS.jpg", "order": 2}, {"name": "Harry Dean Stanton", "character": "Jack Walsh", "id": 5048, "credit_id": "52fe44519251416c75030891", "cast_id": 4, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 3}, {"name": "Annie Potts", "character": "Iona", "id": 8873, "credit_id": "52fe44519251416c750308b9", "cast_id": 11, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 4}, {"name": "James Spader", "character": "Steff", "id": 13548, "credit_id": "52fe44519251416c750308bd", "cast_id": 12, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 5}, {"name": "Kate Vernon", "character": "Benny Hanson", "id": 19740, "credit_id": "540d15a4c3a36879a8004bf6", "cast_id": 14, "profile_path": "/qQRoxwIVkRU0al9J2EUDBSD80kq.jpg", "order": 6}, {"name": "Andrew Dice Clay", "character": "Bouncer", "id": 57906, "credit_id": "540d15b0c3a368799c004f11", "cast_id": 15, "profile_path": "/1KzjDfy2r0Q8HUiEYfLvrOqVWH0.jpg", "order": 7}, {"name": "Kristy Swanson", "character": "Duckette", "id": 56128, "credit_id": "540d15c2c3a368799f004dc6", "cast_id": 16, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 8}, {"name": "Dweezil Zappa", "character": "Simon", "id": 120952, "credit_id": "540d15d6c3a368799c004f1b", "cast_id": 17, "profile_path": "/d2HSXwuYiTKzL1Lo1IEtMsAa0WX.jpg", "order": 9}, {"name": "Gina Gershon", "character": "Trombley, Girl Friend/Gym Class", "id": 11150, "credit_id": "52fe44519251416c750308c1", "cast_id": 13, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 13}], "directors": [{"name": "Howard Deutch", "department": "Directing", "job": "Director", "credit_id": "52fe44519251416c75030897", "profile_path": "/68Vae1HkU1NxQZ6KEmuxIpno7c9.jpg", "id": 26502}], "vote_average": 6.9, "runtime": 96}, "208134": {"poster_path": "/9XJ1RICUVM8nxSHFphl5c6ZyQtH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145941988, "overview": "86-year-old Irving Zisman is on a journey across America with the most unlikely companion: his 8 year-old grandson, Billy.", "video": false, "id": 208134, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jackass Presents: Bad Grandpa", "tagline": "Real people. Real reactions. Real messed up.", "vote_count": 309, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3063516", "adult": false, "backdrop_path": "/qPxbuKexc8842G6rPrQb3PV9cKq.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "MTV Films", "id": 746}, {"name": "Dickhouse Productions", "id": 6328}], "release_date": "2013-10-25", "popularity": 0.877876167108976, "original_title": "Jackass Presents: Bad Grandpa", "budget": 15000000, "cast": [{"name": "Johnny Knoxville", "character": "Irving Zisman", "id": 9656, "credit_id": "52fe4d44c3a368484e1dfddd", "cast_id": 1, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 0}, {"name": "Jackson Nicoll", "character": "Billy", "id": 1148130, "credit_id": "52fe4d44c3a368484e1dfde1", "cast_id": 2, "profile_path": "/2sEyIlZFLIzAgBUcL5dovdwQOUa.jpg", "order": 1}, {"name": "Georgina Cates", "character": "Kimmy", "id": 95789, "credit_id": "52fe4d44c3a368484e1dfdf1", "cast_id": 5, "profile_path": "/kgAOadgrgupouhfCux6cOM0Vscp.jpg", "order": 2}, {"name": "Spike Jonze", "character": "Gloria", "id": 5953, "credit_id": "52fe4d44c3a368484e1dfdf5", "cast_id": 6, "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "order": 3}, {"name": "Catherine Keener", "character": "Ellie", "id": 2229, "credit_id": "52fe4d44c3a368484e1dfdf9", "cast_id": 7, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 4}, {"name": "Kamber Hejlik", "character": "Doctor", "id": 1266854, "credit_id": "52fe4d44c3a368484e1dfdfd", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Jack Polick", "character": "Funeral Worker", "id": 60930, "credit_id": "52fe4d44c3a368484e1dfe01", "cast_id": 12, "profile_path": "/bavt2S9iwHSjQAUfvtEkxeHT5SI.jpg", "order": 6}, {"name": "Grasie Mercedes", "character": "Hostess", "id": 928542, "credit_id": "52fe4d44c3a368484e1dfe05", "cast_id": 13, "profile_path": null, "order": 7}], "directors": [{"name": "Jeff Tremaine", "department": "Directing", "job": "Director", "credit_id": "52fe4d44c3a368484e1dfded", "profile_path": "/4xrBnAaPUR91qFumZfd6gFK6xHx.jpg", "id": 56578}], "vote_average": 6.3, "runtime": 92}, "11527": {"poster_path": "/j8UmbdA1TrIVY4FANymwBSmUuCH.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34967437, "overview": "The myth of King Arthur brought to the screen. Uthur Pendragon is given the mystical sword Excalibur by Merlyn. At his death Uthur buries the sword into a stone, and the next man that can pull it out will be King of England. Years later Arthur, Uthur's bastard son draws Excalibur and becomes king. Arthur's evil half-sister Morgana sires a son with him, who may prove his downfall.", "video": false, "id": 11527, "genres": [{"id": 12, "name": "Adventure"}], "title": "Excalibur", "tagline": "Forged by a god. Foretold by a wizard. Found by a king.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082348", "adult": false, "backdrop_path": "/5YELVKk9htZZPyiWkTrNhnI1Nb3.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Orion Pictures", "id": 41}], "release_date": "1981-04-10", "popularity": 0.726061031951279, "original_title": "Excalibur", "budget": 0, "cast": [{"name": "Nigel Terry", "character": "King Arthur", "id": 31431, "credit_id": "52fe44529251416c75030ab1", "cast_id": 1, "profile_path": "/5dtg7yKRfz03zALBSXRsK7Xw0zG.jpg", "order": 0}, {"name": "Helen Mirren", "character": "Morgana", "id": 15735, "credit_id": "52fe44529251416c75030ab5", "cast_id": 2, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 1}, {"name": "Nicholas Clay", "character": "Lancelot", "id": 31196, "credit_id": "52fe44529251416c75030b13", "cast_id": 21, "profile_path": null, "order": 2}, {"name": "Cherie Lunghi", "character": "Guenevere", "id": 20768, "credit_id": "52fe44529251416c75030ab9", "cast_id": 3, "profile_path": "/1veFTb3GYMxcw6B65ff2y2xBsMM.jpg", "order": 3}, {"name": "Paul Geoffrey", "character": "Perceval", "id": 69735, "credit_id": "52fe44529251416c75030aff", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Nicol Williamson", "character": "Merlin", "id": 51812, "credit_id": "52fe44529251416c75030b03", "cast_id": 17, "profile_path": "/kCvjXpYSCYH14mo0gtRmnV7DroV.jpg", "order": 5}, {"name": "Robert Addie", "character": "Mordred", "id": 78525, "credit_id": "52fe44529251416c75030b17", "cast_id": 22, "profile_path": "/ugrPNOiyuyCgy9zNRk7wNY4Q53B.jpg", "order": 6}, {"name": "Gabriel Byrne", "character": "Uther Pendragon", "id": 5168, "credit_id": "52fe44529251416c75030b07", "cast_id": 18, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 7}, {"name": "Keith Buckley", "character": "Uryens", "id": 104757, "credit_id": "52fe44529251416c75030b1b", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Katrine Boorman", "character": "Igrayne", "id": 38402, "credit_id": "52fe44539251416c75030b1f", "cast_id": 24, "profile_path": "/cIxijBUAvwg0QQ7nGKGIltjnCDY.jpg", "order": 9}, {"name": "Liam Neeson", "character": "Gawain", "id": 3896, "credit_id": "52fe44529251416c75030b0b", "cast_id": 19, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 10}, {"name": "Corin Redgrave", "character": "Cornwall", "id": 13328, "credit_id": "52fe44539251416c75030b23", "cast_id": 25, "profile_path": "/wOL5eQawe8hKXtPNLSKfAygzhyS.jpg", "order": 11}, {"name": "Patrick Stewart", "character": "Leondegrance", "id": 2387, "credit_id": "52fe44529251416c75030b0f", "cast_id": 20, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 12}, {"name": "Niall O'Brien", "character": "Kay", "id": 104758, "credit_id": "52fe44539251416c75030b27", "cast_id": 26, "profile_path": null, "order": 13}], "directors": [{"name": "John Boorman", "department": "Directing", "job": "Director", "credit_id": "52fe44529251416c75030abf", "profile_path": "/8o9Z3rAFrn3JNBY5cUBKcqqCXYx.jpg", "id": 19665}], "vote_average": 6.7, "runtime": 140}, "11528": {"poster_path": "/fKJUQrAm5QbVR5DqgH9U5IflHGQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32416586, "overview": "Scotty Smalls moves to a new neighborhood with his mom and stepdad, and wants to learn to play baseball. The neighborhood baseball guru Rodriquez takes Smalls under his wing. They fall into adventures involving baseball, treehouse sleep-ins, the desirous lifeguard at the local pool, the snooty rival ball team, and the travelling fair.", "video": false, "id": 11528, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Sandlot", "tagline": "A piece of paradise a half block wide and a whole summer long.", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/p2m9JzwjQukKKZfMrLF4HdW54X1.jpg", "id": 87214, "name": "The Sandlot Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108037", "adult": false, "backdrop_path": "/wSejWDOrdNj5jQO0Ql3oTwiRiSG.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1993-04-07", "popularity": 0.394476528251127, "original_title": "The Sandlot", "budget": 0, "cast": [{"name": "Tom Guiry", "character": "Scotty Smalls", "id": 4729, "credit_id": "52fe44539251416c75030b63", "cast_id": 1, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 0}, {"name": "Mike Vitar", "character": "Benjamin Franklin Rodriguez", "id": 69738, "credit_id": "52fe44539251416c75030b67", "cast_id": 2, "profile_path": "/rSZIHN0UZTnxADeNaTSFIEW6Fog.jpg", "order": 1}, {"name": "James Earl Jones", "character": "Mr. Mertle", "id": 15152, "credit_id": "52fe44539251416c75030b6b", "cast_id": 3, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 2}, {"name": "Patrick Renna", "character": "Hamilton 'Ham' Porter", "id": 69740, "credit_id": "52fe44539251416c75030b6f", "cast_id": 4, "profile_path": "/753yzJmqBYEAv718yVSE8RmMRz9.jpg", "order": 2}, {"name": "Chauncey Leopardi", "character": "Michael 'Squints' Palledorous", "id": 88599, "credit_id": "52fe44539251416c75030bb5", "cast_id": 17, "profile_path": "/hA6TSw8Bh9hWTNu7EEc2TydBANu.jpg", "order": 3}, {"name": "Marley Shelton", "character": "Wendy", "id": 6407, "credit_id": "52fe44539251416c75030bb9", "cast_id": 20, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 5}, {"name": "Daniel Zacapa", "character": "Police Chief", "id": 12054, "credit_id": "52fe44539251416c75030bbd", "cast_id": 21, "profile_path": "/lGleijPJER3lanO4cGcgfLfGRuX.jpg", "order": 6}, {"name": "Herb Muller", "character": "Young Mr. Mertle", "id": 141457, "credit_id": "52fe44539251416c75030bc1", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Karen Allen", "character": "Mom", "id": 650, "credit_id": "52fe44539251416c75030bc5", "cast_id": 24, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 8}, {"name": "Denis Leary", "character": "Bill", "id": 5724, "credit_id": "52fe44539251416c75030bc9", "cast_id": 25, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 9}, {"name": "Brandon Quintin Adams", "character": "Kenny DeNunez", "id": 148638, "credit_id": "52fe44539251416c75030bcd", "cast_id": 26, "profile_path": "/irqHiNZcjwjHz8Py9TSGtIpSbnG.jpg", "order": 10}, {"name": "Art LaFleur", "character": "The Babe", "id": 44792, "credit_id": "52fe44539251416c75030bd1", "cast_id": 27, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 11}, {"name": "Arliss Howard", "character": "Grown-Up Scotty Smalls", "id": 3229, "credit_id": "52fe44539251416c75030bd5", "cast_id": 28, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 12}, {"name": "Keith Campbell", "character": "Thief", "id": 15318, "credit_id": "53b94a9f0e0a2676bf009792", "cast_id": 29, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 13}], "directors": [{"name": "David M. Evans", "department": "Directing", "job": "Director", "credit_id": "52fe44539251416c75030b75", "profile_path": "/h4PUTxhvUuRVO9EMQznDt5F2vZO.jpg", "id": 69741}], "vote_average": 7.3, "runtime": 101}, "11529": {"poster_path": "/suMTT3YgqeUg9vDJB0xZQhcekh7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127214072, "overview": "New York fashion designer Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But Melanie's past holds many secrets, including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.", "video": false, "id": 11529, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Sweet Home Alabama", "tagline": "Sometimes What You're Looking For Is Right Where You Left It.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0256415", "adult": false, "backdrop_path": "/7rSnmAPdyjWNwsVgAaj9Qb2QRyl.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2002-09-27", "popularity": 0.855336669189686, "original_title": "Sweet Home Alabama", "budget": 38000000, "cast": [{"name": "Reese Witherspoon", "character": "Melanie \"Carmichael\" Smooter Perry", "id": 368, "credit_id": "52fe44539251416c75030bfd", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Josh Lucas", "character": "Jake Perry", "id": 6164, "credit_id": "52fe44539251416c75030c01", "cast_id": 2, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 1}, {"name": "Patrick Dempsey", "character": "Andrew Hennings", "id": 18352, "credit_id": "52fe44539251416c75030c05", "cast_id": 3, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 2}, {"name": "Candice Bergen", "character": "Mayor Kate Hennings", "id": 11850, "credit_id": "52fe44539251416c75030c09", "cast_id": 4, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 3}, {"name": "Rhona Mitra", "character": "Tabatha Wadmore-Smith", "id": 25702, "credit_id": "52fe44539251416c75030c4f", "cast_id": 17, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 4}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44539251416c75030c0f", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.0, "runtime": 108}, "134411": {"poster_path": "/99wcdBt7QLqQVvYI6j21Z47CtV9.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42930462, "overview": "Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.", "video": false, "id": 134411, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Snitch", "tagline": "How far would you go to save your son?", "vote_count": 755, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0882977", "adult": false, "backdrop_path": "/rRK0LRpvRI2didoMaBFt1GqxjEy.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Participant Media", "id": 6735}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Front Street Productions", "id": 1450}, {"name": "Spitfire Pictures", "id": 14739}], "release_date": "2013-02-22", "popularity": 1.0957405846813, "original_title": "Snitch", "budget": 35000000, "cast": [{"name": "Dwayne Johnson", "character": "John Matthews", "id": 18918, "credit_id": "52fe4bd0c3a368484e19a3b3", "cast_id": 12, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Barry Pepper", "character": "Agent Cooper", "id": 12834, "credit_id": "52fe4bd0c3a368484e19a3c7", "cast_id": 18, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 1}, {"name": "Jon Bernthal", "character": "Daniel James", "id": 19498, "credit_id": "52fe4bd0c3a368484e19a3c3", "cast_id": 16, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Joanne Keeghan", "id": 4038, "credit_id": "52fe4bd0c3a368484e19a3b7", "cast_id": 13, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Michael Kenneth Williams", "character": "Malik", "id": 39390, "credit_id": "52fe4bd0c3a368484e19a3e7", "cast_id": 26, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 4}, {"name": "Rafi Gavron", "character": "Jason Collins", "id": 21660, "credit_id": "52fe4bd0c3a368484e19a3df", "cast_id": 24, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 5}, {"name": "Melina Kanakaredes", "character": "Sylvie Collins", "id": 25972, "credit_id": "52fe4bd0c3a368484e19a3db", "cast_id": 23, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 6}, {"name": "Nadine Velazquez", "character": "Analisa", "id": 65196, "credit_id": "52fe4bd0c3a368484e19a3cf", "cast_id": 20, "profile_path": "/7bd8Qtmz25PtMuVN8uSzTp8wemx.jpg", "order": 7}, {"name": "Benjamin Bratt", "character": "Juan Carlos \"El Topo\" Pintera", "id": 4589, "credit_id": "52fe4bd0c3a368484e19a3cb", "cast_id": 19, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 8}, {"name": "Harold Perrineau", "character": "Jeffery Steele", "id": 6195, "credit_id": "52fe4bd0c3a368484e19a3bf", "cast_id": 15, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 9}, {"name": "J. D. Pardo", "character": "Benicio", "id": 81391, "credit_id": "52fe4bd0c3a368484e19a3bb", "cast_id": 14, "profile_path": "/24SYaTtZdQ2wQ5MfORsR3sd29kp.jpg", "order": 10}, {"name": "Richard Cabral", "character": "Flaco", "id": 1105711, "credit_id": "52fe4bd0c3a368484e19a3d3", "cast_id": 21, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 11}, {"name": "Kym Jackson", "character": "Agent Sims", "id": 999445, "credit_id": "52fe4bd0c3a368484e19a3d7", "cast_id": 22, "profile_path": "/mcqEkFJ4EmQJE58bZi1FswaX5ig.jpg", "order": 12}, {"name": "Jason Douglas", "character": "Wayne", "id": 20496, "credit_id": "52fe4bd0c3a368484e19a3e3", "cast_id": 25, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 13}, {"name": "Kyara Campos", "character": "Isabelle Matthews", "id": 1271749, "credit_id": "52fe4bd0c3a368484e19a3eb", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "James Allen McCune", "character": "Craig", "id": 1223879, "credit_id": "52fe4bd0c3a368484e19a3ef", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ashlynn Ross", "character": "Amanda", "id": 978996, "credit_id": "52fe4bd0c3a368484e19a3f3", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Spencer Miller", "character": "Anthony", "id": 1271750, "credit_id": "52fe4bd0c3a368484e19a3f7", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Jayson Floyd", "character": "Agent Thompson", "id": 204895, "credit_id": "52fe4bd0c3a368484e19a3fb", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Benjamin Blankenship", "character": "Agent Torres", "id": 1093707, "credit_id": "52fe4bd0c3a368484e19a3ff", "cast_id": 32, "profile_path": "/xl0O9d7xS6XGSRqQl16StOxtkOR.jpg", "order": 19}, {"name": "Darnell Trotter", "character": "Bones", "id": 1271751, "credit_id": "52fe4bd0c3a368484e19a403", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Tim J. Smith", "character": "Lazy", "id": 1271752, "credit_id": "52fe4bd0c3a368484e19a407", "cast_id": 34, "profile_path": null, "order": 21}], "directors": [{"name": "Ric Roman Waugh", "department": "Directing", "job": "Director", "credit_id": "52fe4bcfc3a368484e19a373", "profile_path": null, "id": 76422}], "vote_average": 5.7, "runtime": 112}, "93456": {"poster_path": "/kQrYyZQHkwkUg2KlUDyvymj9FAp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 970761885, "overview": "Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.", "video": false, "id": 93456, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me 2", "tagline": "Back 2 Work", "vote_count": 2366, "homepage": "http://www.despicableme.com/", "belongs_to_collection": {"backdrop_path": "/15IZl405E664QDVxpFJBl7TtLmw.jpg", "poster_path": "/95prV91f4DxkBnLU43YjLbU1m3q.jpg", "id": 86066, "name": "Despicable Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1690953", "adult": false, "backdrop_path": "/rmgxcw8tGTmdhsWqdjGBS9uI1tO.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2013-07-02", "popularity": 2.31738869660361, "original_title": "Despicable Me 2", "budget": 76000000, "cast": [{"name": "Steve Carell", "character": "Gru", "id": 4495, "credit_id": "52fe492d9251416c750bfc9b", "cast_id": 11, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Kristen Wiig", "character": "Lucy", "id": 41091, "credit_id": "52fe492d9251416c750bfd01", "cast_id": 31, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 1}, {"name": "Benjamin Bratt", "character": "Eduardo/ El Macho", "id": 4589, "credit_id": "52fe492d9251416c750bfd0d", "cast_id": 34, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 2}, {"name": "Miranda Cosgrove", "character": "Margo", "id": 17743, "credit_id": "52fe492d9251416c750bfd05", "cast_id": 32, "profile_path": "/p2rQkLY4Wr4KnCd3S1LwfhE42zu.jpg", "order": 3}, {"name": "Russell Brand", "character": "Dr. Nefario", "id": 59919, "credit_id": "52fe492d9251416c750bfd15", "cast_id": 36, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 4}, {"name": "Ken Jeong", "character": "Floyd", "id": 83586, "credit_id": "52fe492d9251416c750bfcfd", "cast_id": 30, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Silas", "id": 4581, "credit_id": "52fe492d9251416c750bfd11", "cast_id": 35, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Elsie Kate Fisher", "character": "Agnes", "id": 998571, "credit_id": "52fe492d9251416c750bfc9f", "cast_id": 13, "profile_path": "/2ekK6XG4s5knpjLZPwHZCFRA6mJ.jpg", "order": 7}, {"name": "Dana Gaier", "character": "Edith", "id": 124750, "credit_id": "52fe492d9251416c750bfd19", "cast_id": 37, "profile_path": "/rSvNxm2QifFpRCtmzrWHyDy0O9N.jpg", "order": 8}, {"name": "Mois\u00e9s Arias", "character": "Antonio", "id": 57412, "credit_id": "52fe492d9251416c750bfd09", "cast_id": 33, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 9}, {"name": "Nasim Pedrad", "character": "Jillian", "id": 476163, "credit_id": "52fe492d9251416c750bfd1d", "cast_id": 38, "profile_path": "/kA12uJDhiLW6xhTYJEwhMFjJBjb.jpg", "order": 10}, {"name": "Kristen Schaal", "character": "Shannon", "id": 109869, "credit_id": "52fe492d9251416c750bfd21", "cast_id": 39, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 11}, {"name": "Pierre Coffin", "character": "Kevin the Minion / Bob the Minion / Stuart the Minion / Additional Minions / Evil Minions (voice)", "id": 124747, "credit_id": "550f98b4925141065c00442a", "cast_id": 42, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 12}, {"name": "Chris Renaud", "character": "Additional Minions / Evil Minions / Italian Waiter (voice)", "id": 124748, "credit_id": "550f98ff9251416bd1001eb8", "cast_id": 43, "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "order": 13}, {"name": "Nickolai Stoilov", "character": "Arctic Lab Guards (voice)", "id": 303870, "credit_id": "550f9926c3a3683f0a00401c", "cast_id": 44, "profile_path": null, "order": 14}, {"name": "Vanessa Bayer", "character": "Flight Attendant (voice)", "id": 503103, "credit_id": "550f9c7e925141073d004436", "cast_id": 45, "profile_path": "/16lV4eHdbUEOD2iHbdDn2XTCcuE.jpg", "order": 15}, {"name": "Ava Acres", "character": "Additional Voices (voice)", "id": 1340664, "credit_id": "550f9cb3c3a3683e7f004302", "cast_id": 46, "profile_path": null, "order": 16}, {"name": "Lori Alan", "character": "Additional Voices (voice)", "id": 24358, "credit_id": "550f9ccfc3a3683f0a0040b6", "cast_id": 47, "profile_path": "/mNfJWzuaKgkIaK7CuirXOMosd2h.jpg", "order": 17}, {"name": "Jack Angel", "character": "Additional Voices (voice)", "id": 19545, "credit_id": "550f9cee925141073d004448", "cast_id": 48, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 18}, {"name": "Eva Bella", "character": "Additional Voices (voice)", "id": 1207488, "credit_id": "550f9d17c3a3683e7f004314", "cast_id": 49, "profile_path": "/lKDJgAVwWh8j8K0wk3r5V0axa9Y.jpg", "order": 19}, {"name": "Georgia Cook", "character": "Additional Voices (voice)", "id": 1444269, "credit_id": "550f9d31c3a368208a000c66", "cast_id": 50, "profile_path": null, "order": 20}, {"name": "John Cygan", "character": "Additional Voices (voice)", "id": 167295, "credit_id": "550f9d6792514164ac00212b", "cast_id": 51, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 21}, {"name": "Debi Derryberry", "character": "Additional Voices (voice)", "id": 73016, "credit_id": "550f9d9292514164ac002131", "cast_id": 52, "profile_path": "/mfmF3MjoL7sV76BSElFkVgDgA30.jpg", "order": 22}, {"name": "Jess Harnell", "character": "Additional Voices (voice)", "id": 84495, "credit_id": "550f9dadc3a3683f0a0040de", "cast_id": 53, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 23}, {"name": "Danny Mann", "character": "Additional Voices (voice)", "id": 52699, "credit_id": "550f9dd79251416bd1001f74", "cast_id": 54, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 24}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "550f9e4792514166db00214c", "cast_id": 55, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 25}, {"name": "Mickie McGowan", "character": "Additional Voices (voice)", "id": 84493, "credit_id": "550f9e679251413366000c7e", "cast_id": 56, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 26}, {"name": "Mason McNulty", "character": "Additional Voices (voice)", "id": 1444270, "credit_id": "550f9e8592514146a000b7dc", "cast_id": 57, "profile_path": null, "order": 27}, {"name": "Alec Medlock", "character": "Additional Voices (voice)", "id": 91776, "credit_id": "550f9eebc3a368488600bde2", "cast_id": 58, "profile_path": null, "order": 28}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "550f9f1e9251413366000ca9", "cast_id": 59, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 29}, {"name": "Jan Rabson", "character": "Additional Voices (voice)", "id": 157626, "credit_id": "550f9f459251410701004550", "cast_id": 60, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 30}, {"name": "Andre Robinson", "character": "Additional Voices (voice)", "id": 1438315, "credit_id": "550f9f84c3a368488600bdf6", "cast_id": 61, "profile_path": null, "order": 31}, {"name": "Katie Silverman", "character": "Additional Voices (voice)", "id": 1009221, "credit_id": "551425139251410462001f5c", "cast_id": 69, "profile_path": "/iWeuUdcvQtAmTuHClbPOb0nZh7U.jpg", "order": 32}, {"name": "Casey Simpson", "character": "Additional Voices (voice)", "id": 1444271, "credit_id": "550fa050c3a3683f390044ac", "cast_id": 63, "profile_path": null, "order": 34}, {"name": "Claira Nicole Titman", "character": "Additional Voices (voice) (as Claira Titman)", "id": 1444272, "credit_id": "550fa06e9251413366000ccf", "cast_id": 64, "profile_path": null, "order": 35}, {"name": "Jim Ward", "character": "Additional Voices (voice) (as James Kevin Ward)", "id": 86007, "credit_id": "550fa0c6925141073d0044e7", "cast_id": 65, "profile_path": null, "order": 36}, {"name": "April Winchell", "character": "Additional Voices (voice)", "id": 60741, "credit_id": "550fa12e9251410701004588", "cast_id": 66, "profile_path": "/xhSgScZJpyv42WD83LsrU5PavB7.jpg", "order": 37}, {"name": "Bailey Gambertoglio", "character": "Little Girl #2 (voice) (uncredited)", "id": 1258896, "credit_id": "550fa195c3a368488600be36", "cast_id": 67, "profile_path": null, "order": 38}, {"name": "Sherry Lynn", "character": "Additional Voices (uncredited)", "id": 214701, "credit_id": "550fa1afc3a3683dd6003ee8", "cast_id": 68, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 39}], "directors": [{"name": "Pierre Coffin", "department": "Directing", "job": "Director", "credit_id": "52fe492c9251416c750bfc61", "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "id": 124747}, {"name": "Chris Renaud", "department": "Directing", "job": "Director", "credit_id": "52fe492c9251416c750bfc67", "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "id": 124748}], "vote_average": 7.0, "runtime": 98}, "42194": {"poster_path": "/jFhn4Xbfh5zxCw1UYctFpspxoUe.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 967000, "overview": "In the year of 2039, after World Wars destroy much of the civilization as we know it, territories are no longer run by governments, but by corporations; the mightiest of which is the Mishima Zaibatsu. In order to placate the seething masses of this dystopia, Mishima sponsors Tekken, a tournament in which fighters battle until only one is left standing.", "video": false, "id": 42194, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Tekken", "tagline": "Survival is no game", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/amqmsjZIyrq9DqzIhs7fNfai25a.jpg", "id": 294172, "name": "Tekken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411951", "adult": false, "backdrop_path": "/tWD2fkFTygEWxWeDTGpErB1lVGe.jpg", "production_companies": [{"name": "Namco", "id": 5882}, {"name": "Light Song Films", "id": 5883}], "release_date": "2010-03-20", "popularity": 0.642200105292872, "original_title": "Tekken", "budget": 35000000, "cast": [{"name": "Jon Foo", "character": "Jin Kazama", "id": 100586, "credit_id": "52fe45f3c3a36847f80e3e8b", "cast_id": 8, "profile_path": "/dbMtJz50IuDxihBC4921N6XV8bm.jpg", "order": 0}, {"name": "Kelly Overton", "character": "Christie Monteiro", "id": 61829, "credit_id": "52fe45f3c3a36847f80e3e8f", "cast_id": 9, "profile_path": "/z4ConG73glBC7RJPOUvClLlb0k5.jpg", "order": 1}, {"name": "Cary-Hiroyuki Tagawa", "character": "Heihachi Mishima", "id": 11398, "credit_id": "52fe45f3c3a36847f80e3e83", "cast_id": 6, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 2}, {"name": "Ian Anthony Dale", "character": "Kazuya", "id": 123813, "credit_id": "52fe45f3c3a36847f80e3e7f", "cast_id": 5, "profile_path": "/8lF1E9MNYDXVPUy4YB3In4mi46N.jpg", "order": 3}, {"name": "Luke Goss", "character": "Steve Fox", "id": 10843, "credit_id": "52fe45f3c3a36847f80e3e7b", "cast_id": 4, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 4}, {"name": "Lateef Crowder", "character": "Eddy Gordo", "id": 123812, "credit_id": "52fe45f3c3a36847f80e3e87", "cast_id": 7, "profile_path": "/pnsFjc7igJi0SdNs7pDjxpy32yu.jpg", "order": 5}, {"name": "Mircea Monroe", "character": "Kara", "id": 83352, "credit_id": "52fe45f3c3a36847f80e3e93", "cast_id": 10, "profile_path": "/b27UZlc4VBwVbOiJSbkyfnfLWZP.jpg", "order": 6}, {"name": "Tamlyn Tomita", "character": "Jun Kazama", "id": 3134, "credit_id": "52fe45f3c3a36847f80e3e97", "cast_id": 11, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 7}, {"name": "Cung Le", "character": "Marschall Law", "id": 116637, "credit_id": "52fe45f3c3a36847f80e3e9b", "cast_id": 12, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 8}, {"name": "Candice Hillebrand", "character": "Nina Williams", "id": 127585, "credit_id": "52fe45f3c3a36847f80e3e9f", "cast_id": 13, "profile_path": "/u0uqVjweDBcA4pyxY1uOjgW92L2.jpg", "order": 9}, {"name": "Marian Zapico", "character": "Anna Williams", "id": 126789, "credit_id": "52fe45f3c3a36847f80e3ea3", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Darrin Henson", "character": "Raven", "id": 31134, "credit_id": "52fe45f3c3a36847f80e3ea7", "cast_id": 15, "profile_path": "/cdl6kgRRrB6v3Jx5OVTxSIZEaVW.jpg", "order": 11}, {"name": "David Pitt", "character": "Jack", "id": 109795, "credit_id": "52fe45f3c3a36847f80e3eab", "cast_id": 16, "profile_path": "/d38D9FHWAU04viES03xSv55nX5M.jpg", "order": 12}, {"name": "Anton Kasabov", "character": "Sergei Dragunov", "id": 127586, "credit_id": "52fe45f3c3a36847f80e3eaf", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Taiyo Sugiura", "character": "Lee Chaolan", "id": 107113, "credit_id": "52fe45f3c3a36847f80e3eb3", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Jae Hee", "character": "Hwoarang", "id": 16284, "credit_id": "52fe45f3c3a36847f80e3eb7", "cast_id": 19, "profile_path": "/mY1VmkA17Cvv3Du38wUG65Vu5Zg.jpg", "order": 15}, {"name": "Gary Ray Stearns", "character": "Yoshimitsu", "id": 127587, "credit_id": "52fe45f3c3a36847f80e3ebb", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Jonathan Kowalsky", "character": "Vosk", "id": 127588, "credit_id": "52fe45f3c3a36847f80e3ebf", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Gary Daniels", "character": "Bryan Fury", "id": 68559, "credit_id": "52fe45f3c3a36847f80e3ec3", "cast_id": 22, "profile_path": "/qLzJNzU1mjkywkDSwUZ3xmqGdcu.jpg", "order": 18}], "directors": [{"name": "Dwight H. Little", "department": "Directing", "job": "Director", "credit_id": "52fe45f3c3a36847f80e3e71", "profile_path": "/9Q77ZzYvRkVmfdU6twRQyvW4YB8.jpg", "id": 56998}], "vote_average": 5.0, "runtime": 92}, "240916": {"poster_path": "/HwcSgZ4DuvmwdibfKCUz5dnPBx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When up-and-coming District Attorney Mitch Brockden commits a fatal hit-and-run, he feels compelled to throw the case against the accused criminal who was found with the body and blamed for the crime. Following the trial, Mitch's worst fears come true when he realizes that he acquitted a guilty man, and he soon finds himself on the hunt for the killer before more victims pile up.", "video": false, "id": 240916, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Reasonable Doubt", "tagline": "Proof is the Burden", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2304953", "adult": false, "backdrop_path": "/1IsoAseGbqvNxkNYge4mMymGt1Q.jpg", "production_companies": [{"name": "Paradox Entertainment", "id": 6819}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "South Creek Pictures", "id": 12215}, {"name": "Bavariapool", "id": 20681}, {"name": "Eagle Vision Inc.", "id": 214}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Manitoba Film & Music", "id": 11520}], "release_date": "2014-01-17", "popularity": 0.735578643168808, "original_title": "Reasonable Doubt", "budget": 8000000, "cast": [{"name": "Samuel L. Jackson", "character": "Clinton Davis", "id": 2231, "credit_id": "52fe4eaec3a36847f82a1127", "cast_id": 1, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Mitch Brockden", "id": 55470, "credit_id": "52fe4eaec3a36847f82a112b", "cast_id": 2, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Erin Karpluk", "character": "Rachel Brockden", "id": 59313, "credit_id": "52fe4eaec3a36847f82a112f", "cast_id": 3, "profile_path": "/zYqwFR661S8pPigwHci6HlTnPly.jpg", "order": 2}, {"name": "Gloria Reuben", "character": "Detective Blake Kanon", "id": 21369, "credit_id": "52fe4eaec3a36847f82a1133", "cast_id": 4, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 3}, {"name": "Ryan Robbins", "character": "Jimmy Logan", "id": 77164, "credit_id": "52fe4eaec3a36847f82a1137", "cast_id": 5, "profile_path": "/sDEb7Y5mkPFLQpjYDNxbSEs2ofB.jpg", "order": 4}, {"name": "Philippe Brenninkmeyer", "character": "DA Jones", "id": 49201, "credit_id": "52fe4eaec3a36847f82a113f", "cast_id": 7, "profile_path": "/oDOsn36RJnhPtAMzWeoCqJGeqnt.jpg", "order": 5}, {"name": "Dylan Taylor", "character": "Stuart Wilson", "id": 55614, "credit_id": "52fe4eaec3a36847f82a113b", "cast_id": 6, "profile_path": "/8BfilcbTNnDysk8F3gW8FTfZicp.jpg", "order": 6}, {"name": "Lane Styles", "character": "Emma", "id": 1271810, "credit_id": "52fe4eafc3a36847f82a116d", "cast_id": 15, "profile_path": "/5Q3K5wDZROkRNUUUZAS4BVfzAaP.jpg", "order": 7}, {"name": "John B. Lowe", "character": "Judge G. Mckenna", "id": 33051, "credit_id": "52fe4eafc3a36847f82a1171", "cast_id": 16, "profile_path": "/3ecOmKkovovWXtaMUWdA6t0nHf.jpg", "order": 8}, {"name": "Jessica Burleson", "character": "Secretary", "id": 75822, "credit_id": "52fe4eafc3a36847f82a1175", "cast_id": 17, "profile_path": "/s9PxzP3r895rPuV8cNkVyz5XxYm.jpg", "order": 9}, {"name": "Dean Harder", "character": "Terry Roberts", "id": 1285388, "credit_id": "52fe4eafc3a36847f82a1179", "cast_id": 18, "profile_path": "/oQNlNlkGmRSEzuMDbhHDj2vMvNP.jpg", "order": 10}, {"name": "Karl Thordarson", "character": "Cecil Akerman", "id": 1331115, "credit_id": "539eb8e3c3a368724700162b", "cast_id": 20, "profile_path": "/eIj6eFwIpLNP1znUEICIE4ng5AM.jpg", "order": 11}, {"name": "Kelly Wolfman", "character": "Dr. Brown", "id": 1184360, "credit_id": "539eb917c3a3687247001632", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Will Woytowich", "character": "Desk Sargeant", "id": 48313, "credit_id": "539eb980c3a368724000158d", "cast_id": 22, "profile_path": "/zpZisXnw0dNErO4EIH2oNjjGcRY.jpg", "order": 13}], "directors": [{"name": "Peter Howitt", "department": "Directing", "job": "Director", "credit_id": "53379ab5c3a3680e760026ff", "profile_path": "/cwgHjbx5LitEns32kmdmj1diREi.jpg", "id": 7791}], "vote_average": 5.9, "runtime": 91}, "11543": {"poster_path": "/eU5LzCEYNX03WEPuBk5ztFhHXAx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25023434, "overview": "After bowler Roy Munson swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly na\u00efve hit the circuit intent on settling an old score with Big Ern.", "video": false, "id": 11543, "genres": [{"id": 35, "name": "Comedy"}], "title": "Kingpin", "tagline": "You wouldn't want to meet these pinheads in an alley.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116778", "adult": false, "backdrop_path": "/tv42IsD9By9PVZrw7u4UUnoIgRf.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Motion Picture Corporation of America", "id": 2090}], "release_date": "1996-07-04", "popularity": 0.652230879816775, "original_title": "Kingpin", "budget": 27000000, "cast": [{"name": "Woody Harrelson", "character": "Roy Munson", "id": 57755, "credit_id": "52fe44569251416c75031255", "cast_id": 13, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Randy Quaid", "character": "Ishmael Boorg", "id": 1811, "credit_id": "52fe44569251416c75031259", "cast_id": 14, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 1}, {"name": "Vanessa Angel", "character": "Claudia", "id": 25308, "credit_id": "52fe44569251416c7503125d", "cast_id": 15, "profile_path": "/kQ9UOwCmc6jsXRcCZVH8XVmCdqi.jpg", "order": 2}, {"name": "Bill Murray", "character": "Ernie McCracken", "id": 1532, "credit_id": "52fe44569251416c75031261", "cast_id": 16, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Chris Elliott", "character": "The Gambler", "id": 1534, "credit_id": "52fe44569251416c75031265", "cast_id": 17, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 4}, {"name": "William Jordan", "character": "Mr. Boorg", "id": 101975, "credit_id": "52fe44569251416c75031269", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Richard Tyson", "character": "Owner Of Stiffy's", "id": 14700, "credit_id": "52fe44569251416c7503126d", "cast_id": 19, "profile_path": "/pwgw79SpPJmn3406s72supF0EdS.jpg", "order": 6}, {"name": "Lin Shaye", "character": "Landlady", "id": 7401, "credit_id": "52fe44569251416c75031271", "cast_id": 20, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 7}, {"name": "Zen Gesner", "character": "Thomas", "id": 60672, "credit_id": "52fe44569251416c75031275", "cast_id": 21, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 8}, {"name": "Prudence Wright Holmes", "character": "Mrs. Boorg", "id": 951387, "credit_id": "52fe44569251416c75031279", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Rob Moran", "character": "Stanley Osmanski", "id": 162924, "credit_id": "52fe44569251416c7503127d", "cast_id": 23, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 10}, {"name": "Daniel Greene", "character": "Calvert Munson", "id": 42199, "credit_id": "52fe44569251416c75031281", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Will Rothhaar", "character": "Young Roy", "id": 149484, "credit_id": "52fe44569251416c75031285", "cast_id": 25, "profile_path": "/oigxlX2GoRu50q0u6CNwNhfjvyB.jpg", "order": 12}, {"name": "Mark Charpentier", "character": "1979 Bowling Buddy", "id": 7412, "credit_id": "52fe44569251416c75031289", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Brad Faxon", "character": "1979 Bowling Buddy", "id": 1076569, "credit_id": "52fe44569251416c7503128d", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c7503120f", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c75031215", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 6.4, "runtime": 113}, "11544": {"poster_path": "/30ZmDr2RQSd42TDoQbT1y2KqiJi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145771527, "overview": "A lonely Hawaiian girl named Lilo is being raised by her older sister, Nani, after their parents die -- under the watch of social worker Cobra Bubbles. When Lilo adopts a funny-looking dog and names him \"Stitch,\" she doesn't realize her new best friend is a wacky alien created by mad scientist Dr. Jumba.", "video": false, "id": 11544, "genres": [{"id": 16, "name": "Animation"}], "title": "Lilo & Stitch", "tagline": "He's coming to our galaxy.", "vote_count": 291, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oKfkaJLqc1cRURbq8DG2D6TOeAX.jpg", "poster_path": "/bstyyXaLinnYwoyvo5HaDceJN07.jpg", "id": 97461, "name": "Lilo & Stitch Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0275847", "adult": false, "backdrop_path": "/gss26usvT59v4bltFPVg49AiBFZ.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2002-06-21", "popularity": 1.79979960063577, "original_title": "Lilo & Stitch", "budget": 80000000, "cast": [{"name": "Daveigh Chase", "character": "Lilo (voice)", "id": 1580, "credit_id": "52fe44569251416c750312e3", "cast_id": 8, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 0}, {"name": "Chris Sanders", "character": "'Stitch' (voice)", "id": 66193, "credit_id": "52fe44569251416c750312e7", "cast_id": 9, "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "order": 1}, {"name": "Tia Carrere", "character": "Nani (voice)", "id": 13445, "credit_id": "52fe44569251416c750312eb", "cast_id": 10, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 2}, {"name": "David Ogden Stiers", "character": "Dr. Jumba Jookiba (voice)", "id": 28010, "credit_id": "52fe44569251416c750312ef", "cast_id": 11, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 3}, {"name": "Kevin McDonald", "character": "Pleakley (voice)", "id": 58955, "credit_id": "52fe44569251416c750312f9", "cast_id": 13, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 4}, {"name": "Ving Rhames", "character": "Cobra Bubbles (voice)", "id": 10182, "credit_id": "52fe44569251416c750312fd", "cast_id": 14, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 5}, {"name": "Zoe Caldwell", "character": "Grand Councilwoman (voice)", "id": 937681, "credit_id": "52fe44569251416c75031301", "cast_id": 15, "profile_path": "/wbVtmnOg8n0JWXthhttzdi9kcNt.jpg", "order": 6}, {"name": "Jason Scott Lee", "character": "David Kawena (voice)", "id": 58319, "credit_id": "52fe44569251416c75031305", "cast_id": 16, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 7}, {"name": "Kevin Michael Richardson", "character": "Captain Gantu (voice)", "id": 24362, "credit_id": "52fe44569251416c75031309", "cast_id": 17, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 8}, {"name": "Susan Hegarty", "character": "Rescue Lady (voice)", "id": 76003, "credit_id": "52fe44569251416c7503130d", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Amy Hill", "character": "Mrs. Hasagawa (voice)", "id": 59401, "credit_id": "52fe44569251416c75031311", "cast_id": 19, "profile_path": "/uVJnyfKqN5Ex2ueoWhEIgMY6q6Q.jpg", "order": 10}], "directors": [{"name": "Dean DeBlois", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c750312bb", "profile_path": "/vofzPcdNUzUD1xqaMUwMAJRgFiy.jpg", "id": 69797}, {"name": "Chris Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c750312c1", "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "id": 66193}], "vote_average": 6.5, "runtime": 85}, "11545": {"poster_path": "/m4un0nbngs8tr6Dy432m2CsmXZd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Max Fischer, a precocious and eccentric 15 year-old, who is both Rushmore's most extracurricular and least scholarly student; Herman Blume, a disillusioned industrialist who comes to admire Max; and Rosemary Cross, a widowed first grade teacher who becomes the object of both Max's and Herman's affection.", "video": false, "id": 11545, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Rushmore", "tagline": "Love. Expulsion. Revolution.", "vote_count": 169, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0128445", "adult": false, "backdrop_path": "/qPjOUMmEeJFRq0BWcGRvgVwuh0O.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-10-09", "popularity": 0.971266281516242, "original_title": "Rushmore", "budget": 0, "cast": [{"name": "Jason Schwartzman", "character": "Max Fischer", "id": 17881, "credit_id": "52fe44569251416c7503137b", "cast_id": 11, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 0}, {"name": "Bill Murray", "character": "Herman Blume", "id": 1532, "credit_id": "52fe44569251416c7503137f", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 1}, {"name": "Olivia Williams", "character": "Rosemary Cross", "id": 11616, "credit_id": "52fe44569251416c75031383", "cast_id": 13, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 2}, {"name": "Seymour Cassel", "character": "Bert Fischer", "id": 5950, "credit_id": "52fe44569251416c75031387", "cast_id": 14, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 3}, {"name": "Brian Cox", "character": "Dr. Nelson Guggenheim", "id": 1248, "credit_id": "52fe44569251416c7503138b", "cast_id": 15, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Mason Gamble", "character": "Dirk Calloway", "id": 15252, "credit_id": "52fe44569251416c7503138f", "cast_id": 16, "profile_path": "/gcWwvfZLxvk8VH6NEjfmt7j87aR.jpg", "order": 5}, {"name": "Connie Nielsen", "character": "Mrs. Calloway", "id": 935, "credit_id": "52fe44569251416c75031393", "cast_id": 17, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 6}, {"name": "Luke Wilson", "character": "Dr. Peter Flynn", "id": 36422, "credit_id": "52fe44569251416c75031397", "cast_id": 18, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 7}, {"name": "Andrew Wilson", "character": "Coach Beck", "id": 71555, "credit_id": "52fe44569251416c7503139b", "cast_id": 19, "profile_path": "/tGwZ3P9xENc0C8HD7wiuspCm8tM.jpg", "order": 8}, {"name": "Stephen McCole", "character": "Magnus Buchan", "id": 71770, "credit_id": "52fe44569251416c7503139f", "cast_id": 20, "profile_path": "/lS0Em0b2kaEJ5hXIYMU10iN9Fdf.jpg", "order": 9}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c75031341", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.6, "runtime": 93}, "559": {"poster_path": "/uC2pAMjb32NIgQ1GdC1Bl6LZJc2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 890871626, "overview": "The seemingly invincible Spider-Man goes up against an all-new crop of villains -- including the shape-shifting Sandman -- in the third installment of this blockbusting comic book adventure series. While Spidey's superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and gets caught up in a love triangle.", "video": false, "id": 559, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Spider-Man 3", "tagline": "The battle within.", "vote_count": 1163, "homepage": "http://www.sonypictures.com/movies/spider-man3/", "belongs_to_collection": {"backdrop_path": "/waZqriYTuBE3WqXI3SDGi3kfDQE.jpg", "poster_path": "/aNknE3vw8QC5gDHBRYpOz9gzuPc.jpg", "id": 556, "name": "Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0413300", "adult": false, "backdrop_path": "/4dLA0LgN7tOMSsGwSUSZM7VG7AP.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Laura Ziskin Productions", "id": 326}], "release_date": "2007-05-03", "popularity": 2.16867263651246, "original_title": "Spider-Man 3", "budget": 258000000, "cast": [{"name": "Tobey Maguire", "character": "Spider-Man / Peter Parker", "id": 2219, "credit_id": "52fe4252c3a36847f80151c7", "cast_id": 30, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Mary Jane Watson", "id": 205, "credit_id": "52fe4252c3a36847f801514f", "cast_id": 7, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "James Franco", "character": "New Goblin / Harry Osborn", "id": 17051, "credit_id": "52fe4252c3a36847f80151db", "cast_id": 35, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Thomas Haden Church", "character": "Sandman / Flint Marko", "id": 19159, "credit_id": "52fe4252c3a36847f80151df", "cast_id": 36, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 3}, {"name": "Topher Grace", "character": "Venom / Eddie Brock", "id": 17052, "credit_id": "52fe4252c3a36847f80151e3", "cast_id": 37, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 4}, {"name": "Bryce Dallas Howard", "character": "Gwen Stacey", "id": 18997, "credit_id": "52fe4252c3a36847f8015153", "cast_id": 8, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 5}, {"name": "Rosemary Harris", "character": "May Parker", "id": 18998, "credit_id": "52fe4252c3a36847f80151cb", "cast_id": 31, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 6}, {"name": "J.K. Simmons", "character": "J. Jonah Jameson", "id": 18999, "credit_id": "52fe4252c3a36847f801515b", "cast_id": 10, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 7}, {"name": "Elizabeth Banks", "character": "Miss Brant", "id": 9281, "credit_id": "52fe4252c3a36847f80151d3", "cast_id": 33, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 8}, {"name": "James Cromwell", "character": "Captain Stacey", "id": 2505, "credit_id": "52fe4252c3a36847f8015157", "cast_id": 9, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 9}, {"name": "Willem Dafoe", "character": "Green Goblin / Norman Osborn", "id": 5293, "credit_id": "52fe4252c3a36847f80151eb", "cast_id": 39, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 10}, {"name": "Bill Nunn", "character": "Joseph Robertson", "id": 5502, "credit_id": "52fe4252c3a36847f8015169", "cast_id": 13, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 11}, {"name": "Daniel Gillies", "character": "John Jameson", "id": 19154, "credit_id": "52fe4252c3a36847f8015175", "cast_id": 16, "profile_path": "/qBUt7kK7qFpK82Qt8ptHaBvO0QU.jpg", "order": 12}, {"name": "Theresa Russell", "character": "Mrs. Marko", "id": 9207, "credit_id": "52fe4252c3a36847f801516d", "cast_id": 14, "profile_path": "/vn2h90MB16yyRKslCBlPd2MEltG.jpg", "order": 13}, {"name": "Dylan Baker", "character": "Dr. Curt Connors", "id": 19152, "credit_id": "52fe4252c3a36847f8015165", "cast_id": 12, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 14}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4252c3a36847f8015171", "cast_id": 15, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 15}, {"name": "Bruce Campbell", "character": "Ma\u00eetre d", "id": 11357, "credit_id": "52fe4252c3a36847f80151cf", "cast_id": 32, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 16}, {"name": "Ted Raimi", "character": "Hoffman", "id": 11769, "credit_id": "52fe4252c3a36847f80151d7", "cast_id": 34, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 17}, {"name": "Perla Haney-Jardine", "character": "Penny Marko", "id": 6585, "credit_id": "52fe4252c3a36847f80151e7", "cast_id": 38, "profile_path": "/3G3vIBZgZkTzrmvyNiEzOsb5v38.jpg", "order": 18}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4252c3a36847f80151ef", "cast_id": 40, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 19}, {"name": "Elya Baskin", "character": "Mr. Ditkovitch", "id": 2368, "credit_id": "52fe4252c3a36847f80151f3", "cast_id": 41, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 20}, {"name": "Mageina Tovah", "character": "Ursula", "id": 20645, "credit_id": "52fe4252c3a36847f80151f7", "cast_id": 42, "profile_path": "/kxseJKAIiZFKnJFshy3nLXajmFz.jpg", "order": 21}, {"name": "John Paxton", "character": "Houseman", "id": 19326, "credit_id": "52fe4252c3a36847f80151fb", "cast_id": 43, "profile_path": "/bizhhVVs4y8CfHzPfqPYNEvs2eZ.jpg", "order": 22}, {"name": "Becky Ann Baker", "character": "Mrs. Stacy", "id": 59206, "credit_id": "52fe4252c3a36847f80151ff", "cast_id": 44, "profile_path": "/cz9B5ZIPYwOwWzh3Qh8hJAAvAl9.jpg", "order": 23}, {"name": "Stan Lee", "character": "Man in Times Square", "id": 7624, "credit_id": "52fe4252c3a36847f8015203", "cast_id": 45, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 24}, {"name": "Michael Papajohn", "character": "Dennis Carradine / Carjacker", "id": 20582, "credit_id": "52fe4252c3a36847f8015207", "cast_id": 46, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 25}, {"name": "Joe Manganiello", "character": "Flash Thompson", "id": 20580, "credit_id": "52fe4252c3a36847f801520b", "cast_id": 47, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 26}, {"name": "Steve Valentine", "character": "Photographer", "id": 78311, "credit_id": "52fe4252c3a36847f801520f", "cast_id": 48, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 27}, {"name": "Hal Fishman", "character": "Anchorman", "id": 116627, "credit_id": "52fe4252c3a36847f8015213", "cast_id": 49, "profile_path": "/yskUCjhK0w6tL7KZv4UtAlq7uYQ.jpg", "order": 28}, {"name": "Brittany Krall", "character": "ER Nurse", "id": 1292243, "credit_id": "52fe4252c3a36847f801521b", "cast_id": 51, "profile_path": "/i7t7ueAV1n0jnvkhCkRQbtIsiF1.jpg", "order": 29}, {"name": "Lucy Gordon", "character": "Jennifer Dugan", "id": 113608, "credit_id": "52fe4252c3a36847f8015217", "cast_id": 50, "profile_path": "/gNd5p43saMX9VTFVd020RAtm6lV.jpg", "order": 30}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f801512d", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 5.7, "runtime": 139}, "11548": {"poster_path": "/6N2HGV0KgCWVg41zAgAuBbwcE3e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32945979, "overview": "In a soon to be demolished block of apartments, the residents resist the criminal methods used to force them to leave so a greedy tycoon can build his new skyscraper. When tiny mechanical aliens land for a recharge, they decide to stay and help out.", "video": false, "id": 11548, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Batteries Not Included", "tagline": "Five ordinary people needed a miracle. Then one night, Faye Riley left the window open.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092494", "adult": false, "backdrop_path": "/dg6euHvooHXQqgefeycmZoXGhWl.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Universal Pictures", "id": 33}], "release_date": "1987-12-17", "popularity": 0.552629555667242, "original_title": "Batteries Not Included", "budget": 0, "cast": [{"name": "Hume Cronyn", "character": "Frank Riley", "id": 7668, "credit_id": "52fe44579251416c7503152d", "cast_id": 11, "profile_path": "/28X1o4MxUHq4pgyv5VrsdpNSdB4.jpg", "order": 0}, {"name": "Jessica Tandy", "character": "Faye Riley", "id": 5698, "credit_id": "52fe44579251416c75031539", "cast_id": 14, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 1}, {"name": "Frank McRae", "character": "Harry Noble", "id": 1735, "credit_id": "52fe44579251416c75031531", "cast_id": 12, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 2}, {"name": "Elizabeth Pe\u00f1a", "character": "Marisa Esteval", "id": 7430, "credit_id": "52fe44579251416c75031535", "cast_id": 13, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 3}, {"name": "Dennis Boutsikaris", "character": "Mason Baylor", "id": 118937, "credit_id": "52fe44579251416c7503153d", "cast_id": 15, "profile_path": "/uq1dmNevTzOw62hbLhE6JMu7p1H.jpg", "order": 4}, {"name": "Tom Aldredge", "character": "Sid Hogenson", "id": 49835, "credit_id": "52fe44579251416c75031541", "cast_id": 16, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 5}, {"name": "Jane Hoffman", "character": "Muriel Hogenson", "id": 118940, "credit_id": "52fe44579251416c75031545", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "John DiSanti", "character": "Gus", "id": 113922, "credit_id": "52fe44579251416c75031549", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "John Pankow", "character": "Kovacs", "id": 59872, "credit_id": "52fe44579251416c7503154d", "cast_id": 19, "profile_path": "/ur2Lfv0X2I5URYc1SZyWYcngbd2.jpg", "order": 8}, {"name": "MacIntyre Dixon", "character": "DeWitt", "id": 81557, "credit_id": "52fe44579251416c75031551", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Michael Greene", "character": "Lacey, Real Estate Developer", "id": 29368, "credit_id": "52fe44579251416c75031555", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Doris Belack", "character": "Mrs. Thompson", "id": 24293, "credit_id": "52fe44579251416c75031559", "cast_id": 22, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 11}, {"name": "Wendy Schaal", "character": "Pamela", "id": 37600, "credit_id": "52fe44579251416c7503155d", "cast_id": 23, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 12}, {"name": "Michael Carmine", "character": "Carlos", "id": 96442, "credit_id": "545ff6f7c3a3685358009820", "cast_id": 32, "profile_path": "/kgDQUklJdbkuUZD3xeD1Kxayau9.jpg", "order": 13}], "directors": [{"name": "Matthew Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe44579251416c750314f9", "profile_path": "/oK61i61u3G5zZO5EtXmepY9IxGy.jpg", "id": 12677}], "vote_average": 6.3, "runtime": 106}, "11549": {"poster_path": "/fqsd3AZBWPb3FrAXsghumyv5ToU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.", "video": false, "id": 11549, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Invasion of the Body Snatchers", "tagline": "... there was nothing to hold onto - except each other.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0049366", "adult": false, "backdrop_path": "/eTxgy8eROB5Ly7ZXKLukQoF6tKl.jpg", "production_companies": [{"name": "Allied Artists Pictures", "id": 4928}, {"name": "Walter Wanger Productions", "id": 10096}], "release_date": "1956-02-05", "popularity": 0.270614704214001, "original_title": "Invasion of the Body Snatchers", "budget": 417000, "cast": [{"name": "Kevin McCarthy", "character": "Dr. Miles J. Bennell", "id": 34597, "credit_id": "52fe44579251416c75031611", "cast_id": 19, "profile_path": "/6789RKVg3Gc7ADIiod4wHXB5bWX.jpg", "order": 0}, {"name": "Dana Wynter", "character": "Becky Driscoll", "id": 69810, "credit_id": "52fe44579251416c750315bf", "cast_id": 1, "profile_path": "/qih3QKH1nJ29vXsO7CQOOHY4vGx.jpg", "order": 1}, {"name": "Larry Gates", "character": "Dr. Dan 'Danny' Kauffman", "id": 3640, "credit_id": "52fe44579251416c750315c3", "cast_id": 2, "profile_path": "/ldSjOmthzI5gl1cgSXzUMSTsVEN.jpg", "order": 2}, {"name": "King Donovan", "character": "Jack Belicec", "id": 69811, "credit_id": "52fe44579251416c750315c7", "cast_id": 3, "profile_path": "/yKwJm7Bpkw4U3gCT2xRYkxfNH92.jpg", "order": 3}, {"name": "Carolyn Jones", "character": "Theodora 'Teddy' Belicec", "id": 19109, "credit_id": "52fe44579251416c750315cb", "cast_id": 4, "profile_path": "/2MiUzB4xpwjFQhAq3aF5VNxsNA.jpg", "order": 4}, {"name": "Jean Willes", "character": "Nurse Sally Withers", "id": 101479, "credit_id": "52fe44579251416c750315f9", "cast_id": 13, "profile_path": "/tf8Mdg3ULobhiTK1pqikikyS9WB.jpg", "order": 5}, {"name": "Ralph Dumke", "character": "Police Chief Nick Grivett", "id": 83801, "credit_id": "52fe44579251416c750315fd", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Tom Fadden", "character": "Uncle Ira Lentz", "id": 83623, "credit_id": "52fe44579251416c75031605", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Guy Way", "character": "Officer Sam Janzek", "id": 101484, "credit_id": "52fe44579251416c7503160d", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Kenneth Patterson", "character": "Stanley Driscoll", "id": 101483, "credit_id": "52fe44579251416c75031609", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Virginia Christine", "character": "Wilma Lentz", "id": 101481, "credit_id": "52fe44579251416c75031601", "cast_id": 15, "profile_path": "/qVpNBAgaT0fc7WN7UrHp3pd4BJa.jpg", "order": 10}, {"name": "Eileen Stevens", "character": "Anne Grimaldi", "id": 1137031, "credit_id": "52fe44579251416c7503161b", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bobby Clark", "character": "Jimmy Grimaldi", "id": 170573, "credit_id": "52fe44579251416c7503161f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Whit Bissell", "character": "Doctor", "id": 13786, "credit_id": "52fe44579251416c75031623", "cast_id": 23, "profile_path": "/9NyUefvv8sbKVxkrhqubQp3V4Xr.jpg", "order": 13}, {"name": "Richard Deacon", "character": "Doctor", "id": 80206, "credit_id": "52fe44579251416c75031627", "cast_id": 24, "profile_path": "/yLGNyJqX3JuaUHcJ7O1rJi2C1hJ.jpg", "order": 14}, {"name": "Dabbs Greer", "character": "Lomax", "id": 6805, "credit_id": "52fe44579251416c7503162b", "cast_id": 25, "profile_path": "/fYqPZcEkaStHTqDlIqxITnr5iJM.jpg", "order": 15}, {"name": "Sam Peckinpah", "character": "Charlie", "id": 7767, "credit_id": "52fe44589251416c7503162f", "cast_id": 26, "profile_path": "/lsNMJtmZwLYB8pl1gE7S6cBbuSc.jpg", "order": 16}], "directors": [{"name": "Don Siegel", "department": "Directing", "job": "Director", "credit_id": "52fe44579251416c750315d1", "profile_path": "/dptmMoVlEB9o8O8C8vf5CPILg6n.jpg", "id": 14773}], "vote_average": 6.7, "runtime": 80}, "11551": {"poster_path": "/l5laJWvcxgkoqC3nRPs9N5u55jR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54682547, "overview": "When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.", "video": false, "id": 11551, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Small Soldiers", "tagline": "The few, the proud, and the small.", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0122718", "adult": false, "backdrop_path": "/xy9MUcAcUCsxDnp5QEuLJIcFzGJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks Pictures", "id": 7293}], "release_date": "1998-07-10", "popularity": 0.596871291279915, "original_title": "Small Soldiers", "budget": 40000000, "cast": [{"name": "Gregory Smith", "character": "Alan Abernathy", "id": 20814, "credit_id": "52fe44589251416c750316f7", "cast_id": 1, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Christy Fimple", "id": 205, "credit_id": "52fe44589251416c750316fb", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Denis Leary", "character": "Gil Mars", "id": 5724, "credit_id": "52fe44589251416c750316ff", "cast_id": 3, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Phil Hartman", "character": "Phil Fimple", "id": 14104, "credit_id": "52fe44589251416c75031703", "cast_id": 4, "profile_path": "/rf62sAab9vOjm9x7ZA0VBWDkHvD.jpg", "order": 3}, {"name": "David Cross", "character": "Irwin Wayfair", "id": 212, "credit_id": "52fe44589251416c75031749", "cast_id": 16, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Jay Mohr", "character": "Larry Benson", "id": 12217, "credit_id": "52fe44589251416c7503174d", "cast_id": 17, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 5}, {"name": "Kevin Dunn", "character": "Stuart Abernathy", "id": 14721, "credit_id": "52fe44589251416c75031751", "cast_id": 18, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 6}, {"name": "Ann Magnuson", "character": "Irene Abernathy", "id": 37042, "credit_id": "52fe44589251416c75031785", "cast_id": 31, "profile_path": "/ry9H1u1GFbwXiWWolYA63pjBctp.jpg", "order": 7}, {"name": "Wendy Schaal", "character": "Marion Fimple", "id": 37600, "credit_id": "52fe44589251416c75031789", "cast_id": 32, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 8}, {"name": "Jacob Smith", "character": "Timmy Fimple", "id": 9829, "credit_id": "52fe44589251416c7503178d", "cast_id": 33, "profile_path": "/gWdoJZzinaMLniOFTGfWooZPo91.jpg", "order": 9}, {"name": "Tommy Lee Jones", "character": "Chip Hazard", "id": 2176, "credit_id": "52fe44589251416c75031755", "cast_id": 19, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 10}, {"name": "Frank Langella", "character": "Archer", "id": 8924, "credit_id": "52fe44589251416c75031759", "cast_id": 20, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 11}, {"name": "Ernest Borgnine", "character": "Kip Killagin", "id": 7502, "credit_id": "52fe44589251416c7503175d", "cast_id": 21, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 12}, {"name": "Jim Brown", "character": "Butch Meathook", "id": 4774, "credit_id": "52fe44589251416c75031781", "cast_id": 30, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 13}, {"name": "Bruce Dern", "character": "Link Static", "id": 6905, "credit_id": "52fe44589251416c75031761", "cast_id": 22, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 14}, {"name": "George Kennedy", "character": "Brick Bazooka", "id": 12950, "credit_id": "52fe44589251416c75031765", "cast_id": 23, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 15}, {"name": "Clint Walker", "character": "Nick Nitro", "id": 40207, "credit_id": "52fe44589251416c75031779", "cast_id": 28, "profile_path": "/z9EwnoNgmO9hwTHWtkuX3aBkwgv.jpg", "order": 16}, {"name": "Christopher Guest", "character": "Slamfist / Scratch-It", "id": 13524, "credit_id": "52fe44589251416c75031769", "cast_id": 24, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 17}, {"name": "Michael McKean", "character": "Insaniac / Freakenstein", "id": 21731, "credit_id": "52fe44589251416c7503176d", "cast_id": 25, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 18}, {"name": "Harry Shearer", "character": "Punch-It", "id": 6008, "credit_id": "52fe44589251416c7503177d", "cast_id": 29, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 19}, {"name": "Sarah Michelle Gellar", "character": "Gwendy Doll", "id": 11863, "credit_id": "52fe44589251416c75031771", "cast_id": 26, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 20}, {"name": "Christina Ricci", "character": "Gwendy Doll", "id": 6886, "credit_id": "52fe44589251416c75031775", "cast_id": 27, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 21}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe44589251416c75031745", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.1, "runtime": 110}, "52520": {"poster_path": "/76GXWKs2IDi0ZERKLT57wkToV0A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132400000, "overview": "After being held in a coma-like state for fifteen years, vampire Selene learns that she has a fourteen-year-old vampire/Lycan hybrid daughter named Nissa, and when she finds her, they must stop BioCom from creating super Lycans that will kill them all.", "video": false, "id": 52520, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Underworld: Awakening", "tagline": "Vengeance Returns", "vote_count": 1090, "homepage": "http://www.entertheunderworld.com/", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1496025", "adult": false, "backdrop_path": "/8iNsXY3LPsuT0gnUiTBMoNuRZI7.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Saturn Films", "id": 831}, {"name": "Sketch Films", "id": 7738}, {"name": "UW4 Productions", "id": 7740}], "release_date": "2012-01-18", "popularity": 1.69328497857708, "original_title": "Underworld: Awakening", "budget": 70000000, "cast": [{"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "52fe4830c3a36847f815bc9b", "cast_id": 1, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Stephen Rea", "character": "Dr. Jacob Lane", "id": 9029, "credit_id": "52fe4830c3a36847f815bcf3", "cast_id": 22, "profile_path": "/taD1NngDbW8cyCuacAT3YaecSEG.jpg", "order": 1}, {"name": "Michael Ealy", "character": "Detective Sebastian", "id": 8177, "credit_id": "52fe4830c3a36847f815bcd7", "cast_id": 16, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 2}, {"name": "Theo James", "character": "David", "id": 587020, "credit_id": "52fe4830c3a36847f815bceb", "cast_id": 20, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 3}, {"name": "India Eisley", "character": "Eve", "id": 221116, "credit_id": "52fe4830c3a36847f815bcd3", "cast_id": 15, "profile_path": "/dksLN6umGe9VYeraFgihEaAmSK4.jpg", "order": 4}, {"name": "Charles Dance", "character": "Thomas", "id": 4391, "credit_id": "52fe4830c3a36847f815bccf", "cast_id": 14, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 5}, {"name": "Sandrine Holt", "character": "Lida", "id": 65345, "credit_id": "52fe4830c3a36847f815bcef", "cast_id": 21, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 7}, {"name": "Richard Cetrone", "character": "Lycan 1", "id": 12371, "credit_id": "52fe4830c3a36847f815bcf7", "cast_id": 23, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 8}, {"name": "Sanny Van Heteren", "character": "British newscaster", "id": 115177, "credit_id": "52fe4830c3a36847f815bcfb", "cast_id": 24, "profile_path": "/boX7TCFH0I9NzHS6Vi6X7c8cdGL.jpg", "order": 9}, {"name": "Jacob Blair", "character": "Kolb (Officer)", "id": 208069, "credit_id": "52fe4830c3a36847f815bcff", "cast_id": 25, "profile_path": "/8QbiqwUFim60IBZ2p22WoEs2e1w.jpg", "order": 10}, {"name": "Robert Lawrenson", "character": "Waterfront Cop", "id": 211958, "credit_id": "52fe4830c3a36847f815bd03", "cast_id": 26, "profile_path": "/tI33ZRrJTbZZJ9piQOO5siBwXkf.jpg", "order": 11}, {"name": "Kurt Max Runte", "character": "Leader of the Troop", "id": 60721, "credit_id": "52fe4830c3a36847f815bd07", "cast_id": 27, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 12}, {"name": "Marvin Duerkholz", "character": "Lestroy", "id": 582923, "credit_id": "52fe4830c3a36847f815bd0b", "cast_id": 28, "profile_path": "/xlNd5MZNi8U4HtY44vcmza7Rlqw.jpg", "order": 13}, {"name": "Ron Wear", "character": "Jack Fletcher", "id": 928199, "credit_id": "52fe4830c3a36847f815bd0f", "cast_id": 29, "profile_path": "/varhgWh7IHBRgiIMY75Ewj8eOPq.jpg", "order": 14}, {"name": "Dan Payne", "character": "Lycan 2", "id": 85505, "credit_id": "5301429f925141219810dfdd", "cast_id": 54, "profile_path": "/fbp4DoIjJqTe7GnnD5sTirKnto5.jpg", "order": 15}, {"name": "Mark Gibbon", "character": "Announcing Guard", "id": 118459, "credit_id": "530143b0925141219b1082fd", "cast_id": 55, "profile_path": "/4zbhBlYulslr2SJ7SMcm3xPtLAU.jpg", "order": 16}, {"name": "Benita Ha", "character": "Surgical Nurse", "id": 75532, "credit_id": "530143f6925141218f11cff7", "cast_id": 56, "profile_path": "/m1DrOGvyxNOxrx4lND5X1bgL7tx.jpg", "order": 17}, {"name": "Tyler McClendon", "character": "Scientist", "id": 168540, "credit_id": "5301456392514121a110c49e", "cast_id": 57, "profile_path": "/pwUkLAEu0milu8FCgzlwyfLL1hl.jpg", "order": 18}, {"name": "Panou", "character": "Old City Cop #1", "id": 1219446, "credit_id": "530146ee925141218f1251fe", "cast_id": 58, "profile_path": "/2ZlQp0ZenSK9vNscU0Ye4hbi1U4.jpg", "order": 19}, {"name": "Kristen Holden-Ried", "character": "Quint Lane", "id": 557840, "credit_id": "54788e47c3a36839b50000b0", "cast_id": 63, "profile_path": "/zhl2SZHzv4lx68BuGaqjvNZ7239.jpg", "order": 21}], "directors": [{"name": "M\u00e5ns M\u00e5rlind", "department": "Directing", "job": "Director", "credit_id": "52fe4830c3a36847f815bcdd", "profile_path": "/yrO9JKHZY3KWBSInBdKMzjQBHkW.jpg", "id": 80923}, {"name": "Bj\u00f6rn Stein", "department": "Directing", "job": "Director", "credit_id": "52fe4830c3a36847f815bce3", "profile_path": "/djDzNZTxQ7dDURUOtI3FP9U0fsv.jpg", "id": 80924}], "vote_average": 6.1, "runtime": 88}, "11565": {"poster_path": "/nrb1TjVFG4ZGmmIFaWxeEb0VGeE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138259062, "overview": "FBI agent Malcolm Turner goes back undercover as Big Momma, a slick-talking, slam-dunking Southern granny with attitude to spare! Now this granny must play nanny to three dysfunctional upper class kids in order to spy on their computer hacked dad.", "video": false, "id": 11565, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Big Momma's House 2", "tagline": "The momma of all comedies is back!!!", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nFJauk5E72nZNZJU4TZFCdMycYE.jpg", "id": 44979, "name": "Big Momma's House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421729", "adult": false, "backdrop_path": "/3U1NDhGkIqXm0C1HL1xJ4wED3eH.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2006-01-26", "popularity": 0.978040243194948, "original_title": "Big Momma's House 2", "budget": 40000000, "cast": [{"name": "Martin Lawrence", "character": "Malcolm / Big Momma", "id": 78029, "credit_id": "52fe445b9251416c75031e43", "cast_id": 17, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Nia Long", "character": "Sherri", "id": 9781, "credit_id": "52fe445b9251416c75031dfb", "cast_id": 3, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 1}, {"name": "Emily Procter", "character": "Leah Fuller", "id": 6108, "credit_id": "52fe445b9251416c75031dff", "cast_id": 4, "profile_path": "/nZJypfLAXUg8Nn1GpBgbYVdqO4Y.jpg", "order": 2}, {"name": "Zachary Levi", "character": "Kevin", "id": 69899, "credit_id": "52fe445b9251416c75031e03", "cast_id": 5, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 3}, {"name": "Mark Moses", "character": "Tom Fuller", "id": 11889, "credit_id": "52fe445b9251416c75031e47", "cast_id": 18, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 4}, {"name": "Kat Dennings", "character": "Molly", "id": 52852, "credit_id": "52fe445b9251416c75031e4b", "cast_id": 19, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 5}, {"name": "Chlo\u00eb Grace Moretz", "character": "Carrie", "id": 56734, "credit_id": "52fe445b9251416c75031e4f", "cast_id": 20, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 6}, {"name": "Marisol Nichols", "character": "Liliana Morales", "id": 84457, "credit_id": "52fe445b9251416c75031e53", "cast_id": 21, "profile_path": "/zMeWeIF42BY97pZmwBvNKAzrm3L.jpg", "order": 7}], "directors": [{"name": "John Whitesell", "department": "Directing", "job": "Director", "credit_id": "52fe445b9251416c75031e09", "profile_path": "/9wNZkrN7DnPjGIgaVNTnlCC1fpt.jpg", "id": 61175}], "vote_average": 5.6, "runtime": 99}, "42888": {"poster_path": "/5gwKI65TnSAT9PI2iFWZXpmTZ3C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48668907, "overview": "After being cut from the USA softball team and feeling a bit past her prime, Lisa finds herself evaluating her life and in the middle of a love triangle, as a corporate guy in crisis competes with her current, baseball-playing beau.", "video": false, "id": 42888, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "How Do You Know", "tagline": "How do you know it's love?", "vote_count": 66, "homepage": "http://www.howdoyouknow-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1341188", "adult": false, "backdrop_path": "/yxgAcVuXTiPSNG6sFZDnX1Cfo0.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Gracie Films", "id": 18}, {"name": "Road Rebel", "id": 2648}], "release_date": "2010-12-17", "popularity": 0.576583261567137, "original_title": "How Do You Know", "budget": 120000000, "cast": [{"name": "Reese Witherspoon", "character": "Lisa Jorgenson", "id": 368, "credit_id": "52fe4620c3a36847f80ee491", "cast_id": 2, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Paul Rudd", "character": "George", "id": 22226, "credit_id": "52fe4621c3a36847f80ee499", "cast_id": 4, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Manny", "id": 887, "credit_id": "52fe4621c3a36847f80ee495", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Jack Nicholson", "character": "Charles", "id": 514, "credit_id": "52fe4621c3a36847f80ee49d", "cast_id": 5, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 3}, {"name": "Kathryn Hahn", "character": "Annie", "id": 17696, "credit_id": "52fe4621c3a36847f80ee4cb", "cast_id": 14, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 4}, {"name": "Molly Price", "character": "Coach Sally", "id": 150972, "credit_id": "52fe4621c3a36847f80ee4cf", "cast_id": 15, "profile_path": "/ac0F7GOwiSqglHajRHfUwlHUiW4.jpg", "order": 5}, {"name": "Shelley Conn", "character": "Terry", "id": 73707, "credit_id": "52fe4621c3a36847f80ee4d7", "cast_id": 17, "profile_path": "/aB6otZfYzA81v7E1Q1X06aKewpT.jpg", "order": 6}, {"name": "Tony Shalhoub", "character": "Psychiatrist", "id": 4252, "credit_id": "52fe4621c3a36847f80ee4d3", "cast_id": 16, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 7}, {"name": "Mark Linn-Baker", "character": "Ron", "id": 95975, "credit_id": "537b0d310e0a267ff40012c3", "cast_id": 18, "profile_path": "/myqnA6cnH8xdrPZvQyKO1JL8nEB.jpg", "order": 8}, {"name": "Lenny Venito", "character": "Al", "id": 37157, "credit_id": "537b0d400e0a267fed00123c", "cast_id": 19, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 9}, {"name": "Ron McLarty", "character": "George's Lawyer", "id": 167565, "credit_id": "537b0d550e0a267fff0011d8", "cast_id": 20, "profile_path": "/n5uRDc2hl8Y3Worq4e4U1jtBqwK.jpg", "order": 10}, {"name": "Domenick Lombardozzi", "character": "Bullpen Pitcher", "id": 17941, "credit_id": "537b0d780e0a267fea00112e", "cast_id": 21, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 11}, {"name": "John Tormey", "character": "Doorman", "id": 28002, "credit_id": "537b0d960e0a267fed001241", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Teyonah Parris", "character": "Riva", "id": 970219, "credit_id": "537b0dac0e0a26012d001285", "cast_id": 23, "profile_path": "/8JscUEAH1VUeWFzhUDMtAuaSVyj.jpg", "order": 13}, {"name": "Dean Norris", "character": "Softball Coach", "id": 14329, "credit_id": "537b0dca0e0a267ff40012cb", "cast_id": 24, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 14}], "directors": [{"name": "James L. Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe4620c3a36847f80ee48d", "profile_path": "/9Hx9JbnQBChJhlfJTvmnYF8o8DK.jpg", "id": 3388}], "vote_average": 5.0, "runtime": 121}, "1930": {"poster_path": "/AtFhFTNbNo49qn7fkbo9lDtRkeR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 752215857, "overview": "Peter Parker is an outcast high schooler was abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance\u2014leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.", "video": false, "id": 1930, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Amazing Spider-Man", "tagline": "The untold story begins.", "vote_count": 3526, "homepage": "http://www.theamazingspiderman.com", "belongs_to_collection": {"backdrop_path": "/aLrNTcLN2kDu9jAJ4tS5haiWGc6.jpg", "poster_path": "/moNJa86FgDYy8SWeDym2gnsLLMa.jpg", "id": 125574, "name": "The Amazing Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0948470", "adult": false, "backdrop_path": "/4Dd0CcqIHeyJFALYVzpHrsnbOX6.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Laura Ziskin Productions", "id": 326}], "release_date": "2012-07-04", "popularity": 2.66854927860964, "original_title": "The Amazing Spider-Man", "budget": 215000000, "cast": [{"name": "Andrew Garfield", "character": "Spider-Man / Peter Parker", "id": 37625, "credit_id": "531325d5c3a368299b0040db", "cast_id": 56, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 0}, {"name": "Emma Stone", "character": "Gwen Stacy", "id": 54693, "credit_id": "531325e8c3a36829ef003f5b", "cast_id": 57, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Rhys Ifans", "character": "The Lizard / Dr. Curt Connors", "id": 7026, "credit_id": "53132617c3a3682a10003f35", "cast_id": 58, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 2}, {"name": "Denis Leary", "character": "Captain Stacy", "id": 5724, "credit_id": "53132630c3a3682a02003f68", "cast_id": 59, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Uncle Ben", "id": 8349, "credit_id": "530d345a9251411428001777", "cast_id": 54, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "Sally Field", "character": "Aunt May", "id": 35, "credit_id": "530d34679251411444001685", "cast_id": 55, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 5}, {"name": "Irrfan Khan", "character": "Rajit Ratha", "id": 76793, "credit_id": "53132647c3a368299b0040e8", "cast_id": 60, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 6}, {"name": "Campbell Scott", "character": "Richard Parker", "id": 55152, "credit_id": "5362ad880e0a261df80003b3", "cast_id": 62, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 7}, {"name": "Embeth Davidtz", "character": "Mary Parker", "id": 6368, "credit_id": "5339835d9251417da4004842", "cast_id": 61, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 8}, {"name": "Chris Zylka", "character": "Flash Thompson", "id": 231547, "credit_id": "5362add10e0a261e06000379", "cast_id": 63, "profile_path": "/t1fXLPQccNXSEEabN6ORLKq8tnb.jpg", "order": 9}, {"name": "Max Charles", "character": "Peter Parker (Age 4)", "id": 558928, "credit_id": "5362addc0e0a261e1600036b", "cast_id": 64, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 10}, {"name": "C. Thomas Howell", "character": "Jack's Father", "id": 2878, "credit_id": "5362ade80e0a261dfb0003a9", "cast_id": 65, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 11}, {"name": "Jake Keiffer", "character": "Jack", "id": 1315833, "credit_id": "5362adf30e0a261e0600037e", "cast_id": 66, "profile_path": "/cJVZ3IwByiFg4StNDwJXMzxJ6V6.jpg", "order": 12}, {"name": "Kari Coleman", "character": "Helen Stacy", "id": 156989, "credit_id": "5362ae070e0a261e0d0003b8", "cast_id": 67, "profile_path": "/3DjDJrnKo79alMwmeoWLJejDfFo.jpg", "order": 13}, {"name": "Stan Lee", "character": "School Librarian", "id": 7624, "credit_id": "5362ae250e0a261e09000397", "cast_id": 69, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 15}, {"name": "Hannah Marks", "character": "Missy Kallenback", "id": 59261, "credit_id": "5395a831c3a36864230044f9", "cast_id": 85, "profile_path": "/xMahv8210mahplOr9OGPMVAQri7.jpg", "order": 16}, {"name": "Kelsey Chow", "character": "Hot Girl", "id": 205976, "credit_id": "5395a882c3a3684e36000ca0", "cast_id": 86, "profile_path": "/aIa02caevsfy596Fgy19Vdj44Wq.jpg", "order": 17}, {"name": "Kevin McCorkle", "character": "Mr. Cramer", "id": 91658, "credit_id": "5395a8ddc3a368642300450d", "cast_id": 87, "profile_path": "/9AHkmDvct03YJN8Wes3rsowZMOK.jpg", "order": 18}, {"name": "Barbara Eve Harris", "character": "Miss Ritter", "id": 157146, "credit_id": "5395a915c3a3686434004473", "cast_id": 88, "profile_path": "/dEiJziN5TPJU5LQjeN95tL3lrNk.jpg", "order": 19}, {"name": "Danielle Burgio", "character": "Nicky's Girlfriend", "id": 96753, "credit_id": "53a741cb0e0a261442004558", "cast_id": 89, "profile_path": "/ptuZRTCc1cGMcFfPsLl1UWJDJzE.jpg", "order": 20}, {"name": "Michael Barra", "character": "Store Clerk", "id": 1338023, "credit_id": "53b89967c3a3685eb70048d2", "cast_id": 90, "profile_path": "/5tHSSl2c4EhAD3vn3CE1eRUWPAU.jpg", "order": 21}, {"name": "Leif Gantvoort", "character": "Cash Register Thief", "id": 1111328, "credit_id": "53b89f57c3a368072e001ae9", "cast_id": 91, "profile_path": "/cxcafpMo5kr1QNKOla70cbSY6qD.jpg", "order": 22}, {"name": "Andy Pessoa", "character": "Gordon", "id": 1232365, "credit_id": "53b8a0af0e0a2676b8008302", "cast_id": 92, "profile_path": "/h7BIJJFBF5TaJJ3lpUt4Nb66ozP.jpg", "order": 23}, {"name": "Andy Gladbach", "character": "Physics Nerd", "id": 1338034, "credit_id": "53b8a29cc3a3685eb700497f", "cast_id": 93, "profile_path": "/ujDqt9MCFpkYrTUvDRItLxKuKjt.jpg", "order": 24}, {"name": "Ring Hendricks-Tellefsen", "character": "Physics Nerd", "id": 1338061, "credit_id": "53b8b1f30e0a266cb90003e3", "cast_id": 94, "profile_path": "/ubaodFU43ib9vPppM1GLxClwI98.jpg", "order": 25}, {"name": "Tom Waite", "character": "Nicky", "id": 1338215, "credit_id": "53b947c20e0a2676cf009747", "cast_id": 95, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 26}, {"name": "Keith Campbell", "character": "Car Thief", "id": 15318, "credit_id": "53b949210e0a2676bb009650", "cast_id": 96, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 27}, {"name": "Steve DeCastro", "character": "Car Thief Cop", "id": 66668, "credit_id": "53b9644ac3a3685ec1005896", "cast_id": 97, "profile_path": "/foD8RHoCJX6VmHDNOKQKoC0oOW3.jpg", "order": 28}, {"name": "James Chen", "character": "olice Officer", "id": 932116, "credit_id": "53fc5fb60e0a267a7500a7b2", "cast_id": 98, "profile_path": "/2o5Dn9H1iSqSv21XNDFthOz0lrm.jpg", "order": 29}], "directors": [{"name": "Marc Webb", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d167", "profile_path": "/7uFlVK5BDTjk6IK9iBCmfrdaAs6.jpg", "id": 87742}], "vote_average": 6.3, "runtime": 136}, "11024": {"poster_path": "/vEp6qw25qY2n03O9EaeiWNv89vb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Mystery, Inc. are guests of honor at the grand opening of the Coolsville Museum of Criminology, a masked villain shows up and creates havoc before stealing the costumes of the gang's most notorious villains...Could it be that their nemesis, mad scientist Jonathan Jacobo has returned and is trying to recreate their deadliest foes?", "video": false, "id": 11024, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Scooby-Doo 2: Monsters Unleashed", "tagline": "They came. They saw. They ran.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vByvUnAp4eG5RzR1DFExi1lvx2C.jpg", "poster_path": "/YAuhbJKSG1R42QHJmbGsNQ80Fd.jpg", "id": 86860, "name": "Scooby-Doo (Live-action series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0331632", "adult": false, "backdrop_path": "/2vRVzvqY0tydcStBkNn73JPPOPL.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-03-20", "popularity": 0.962051571617711, "original_title": "Scooby-Doo 2: Monsters Unleashed", "budget": 0, "cast": [{"name": "Freddie Prinze Jr.", "character": "Fred", "id": 33260, "credit_id": "52fe43e69251416c75022513", "cast_id": 1, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "Daphne", "id": 11863, "credit_id": "52fe43e69251416c75022517", "cast_id": 2, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Shaggy", "id": 26457, "credit_id": "52fe43e69251416c7502251b", "cast_id": 3, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Linda Cardellini", "character": "Velma", "id": 1817, "credit_id": "52fe43e69251416c7502251f", "cast_id": 4, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 3}, {"name": "Seth Green", "character": "Patrick", "id": 13922, "credit_id": "52fe43e69251416c75022523", "cast_id": 5, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 4}, {"name": "Peter Boyle", "character": "Old Man Wickles", "id": 1039, "credit_id": "52fe43e69251416c75022527", "cast_id": 6, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Jacobo", "id": 1462, "credit_id": "52fe43e69251416c7502252b", "cast_id": 7, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "Alicia Silverstone", "character": "Heather", "id": 5588, "credit_id": "52fe43e69251416c7502252f", "cast_id": 8, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 7}, {"name": "Neil Fanning", "character": "Scooby-Doo (voice)", "id": 58271, "credit_id": "5505c42192514153ba00151b", "cast_id": 20, "profile_path": "/wkVEPmAwycJMwPA9RjjeJusMuxo.jpg", "order": 8}, {"name": "Pat O'Brien", "character": "Himself", "id": 1212818, "credit_id": "5505c5609251416cb70009d0", "cast_id": 22, "profile_path": "/812YjLLiOsBfb4BXm8DpMJIIpEk.jpg", "order": 10}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe43e69251416c75022535", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.0, "runtime": 93}, "126277": {"poster_path": "/95RD12IA9iOpepshVlsMhIwccfw.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "A young med student struggling with her tuition fees is drawn into the shady world of underground body modification.", "video": false, "id": 126277, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "American Mary", "tagline": "Appearances are everything", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1959332", "adult": false, "backdrop_path": "/8JredzZYoEoyXtRbx65rbUFEPUz.jpg", "production_companies": [{"name": "IndustryWorks Pictures", "id": 24901}, {"name": "430 Productions", "id": 24900}, {"name": "Twisted Twins Productions", "id": 24899}, {"name": "Evolution Pictures", "id": 4061}], "release_date": "2012-05-31", "popularity": 0.512727694679558, "original_title": "American Mary", "budget": 0, "cast": [{"name": "Katharine Isabelle", "character": "Mary Mason", "id": 27136, "credit_id": "52fe4adbc3a368484e16aa6d", "cast_id": 10, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 0}, {"name": "Julia Maxwell", "character": "Tessa", "id": 119219, "credit_id": "52fe4adbc3a368484e16aa61", "cast_id": 7, "profile_path": "/98JYMQKnTzlvLMWe33IR17HmW6t.jpg", "order": 1}, {"name": "Antonio Cupo", "character": "Billy", "id": 96555, "credit_id": "52fe4adbc3a368484e16aa65", "cast_id": 8, "profile_path": "/9B76K1FgaalBw17G6Av1L6sZ0II.jpg", "order": 2}, {"name": "Tristan Risk", "character": "Beatrice", "id": 1083260, "credit_id": "52fe4adbc3a368484e16aa69", "cast_id": 9, "profile_path": "/sqDxTrtjvmjnFEj5RZnr81BNWJo.jpg", "order": 3}, {"name": "Paula Lindberg", "character": "Ruby Realgirl", "id": 221085, "credit_id": "5396d5c6c3a3684f450037ad", "cast_id": 23, "profile_path": "/ieQtHJdkqSTlBcB3KXRzZRThMlW.jpg", "order": 4}, {"name": "Paul Anthony", "character": "Rat", "id": 1052900, "credit_id": "5396d6de0e0a266dce008d96", "cast_id": 29, "profile_path": "/mqqoiJjStvalu6QLLRHhbq1NmRQ.jpg", "order": 5}, {"name": "Clay St. Thomas", "character": "Dr. Walsh", "id": 90397, "credit_id": "5396d5f1c3a3686415005878", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "John Emmett Tracy", "character": "Detective Dolor", "id": 1182657, "credit_id": "5396d615c3a3684f450037b2", "cast_id": 25, "profile_path": "/sNWOxrNJULCLV8qDjO1ttwZmiUl.jpg", "order": 9}, {"name": "Twan Holliday", "character": "Lance Delgreggo", "id": 90724, "credit_id": "5396d637c3a3686446005a5f", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Nelson Wong", "character": "Dr. Black", "id": 997197, "credit_id": "5396d7200e0a266dbf008dcf", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Travis Watters", "character": "Mr. Realgirl", "id": 95410, "credit_id": "5396d7520e0a266dbb008ea1", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Marius Soska", "character": "Dr. Janusz", "id": 1329408, "credit_id": "5396d7ad0e0a266dc5008b23", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Sylvia Soska", "character": "Twin #1", "id": 544134, "credit_id": "544b71950e0a26747c0064b7", "cast_id": 35, "profile_path": "/hu1ysqofGcwAAHLMw1cP4UV64e4.jpg", "order": 14}, {"name": "Jen Soska", "character": "Twin #2", "id": 544130, "credit_id": "544b71bac3a3680fb4006922", "cast_id": 36, "profile_path": "/jluqmFK4CCXm6xLOnZdR6e6ULqR.jpg", "order": 15}], "directors": [{"name": "Jen Soska", "department": "Directing", "job": "Director", "credit_id": "52fe4adbc3a368484e16aa45", "profile_path": "/jluqmFK4CCXm6xLOnZdR6e6ULqR.jpg", "id": 544130}, {"name": "Sylvia Soska", "department": "Directing", "job": "Director", "credit_id": "52fe4adbc3a368484e16aa4b", "profile_path": "/hu1ysqofGcwAAHLMw1cP4UV64e4.jpg", "id": 544134}], "vote_average": 5.8, "runtime": 98}, "44363": {"poster_path": "/iJCMU7MS1aTIQeTZj0royhQigll.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3065860, "overview": "Three skiers are stranded on a chairlift and forced to make life-or-death choices that prove more perilous than staying put and freezing to death.", "video": false, "id": 44363, "genres": [{"id": 53, "name": "Thriller"}], "title": "Frozen", "tagline": "No one knows you're up there", "vote_count": 88, "homepage": "http://www.frozen-film.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1323045", "adult": false, "backdrop_path": "/tLS76JVfBWJ4UICTbKVT60a307O.jpg", "production_companies": [{"name": "ArieScope Pictures", "id": 3960}, {"name": "A Bigger Boat", "id": 5855}], "release_date": "2010-02-05", "popularity": 0.845914266708988, "original_title": "Frozen", "budget": 0, "cast": [{"name": "Emma Bell", "character": "Parker O'Neil", "id": 131820, "credit_id": "52fe4685c3a36847f8103925", "cast_id": 1, "profile_path": "/h5gQ1jUduNv6SmFFBPADvDie4nY.jpg", "order": 0}, {"name": "Shawn Ashmore", "character": "Joe Lynch", "id": 11023, "credit_id": "52fe4685c3a36847f8103929", "cast_id": 2, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 1}, {"name": "Kevin Zegers", "character": "Dan Walker", "id": 7431, "credit_id": "52fe4685c3a36847f810392d", "cast_id": 3, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 2}, {"name": "Ed Ackerman", "character": "Jason", "id": 131821, "credit_id": "52fe4685c3a36847f8103931", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Rileah Vanderbilt", "character": "Shannon", "id": 131822, "credit_id": "52fe4685c3a36847f8103935", "cast_id": 5, "profile_path": "/pxxWFuNs8fQQBsEmD99aCxIticz.jpg", "order": 4}, {"name": "Kane Hodder", "character": "Cody", "id": 62596, "credit_id": "52fe4685c3a36847f8103939", "cast_id": 6, "profile_path": "/1bTc6ACp6bLCBhhfNUZyqwnZ5fY.jpg", "order": 5}, {"name": "Adam Johnson", "character": "Rifkin", "id": 107793, "credit_id": "52fe4685c3a36847f810393d", "cast_id": 7, "profile_path": "/jr3cne62q08VNZu7OhSTd4FdirF.jpg", "order": 6}, {"name": "Chris York", "character": "Ryan", "id": 131823, "credit_id": "52fe4685c3a36847f8103941", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Peder Melhuse", "character": "Driver", "id": 131824, "credit_id": "52fe4685c3a36847f8103945", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Adam Green", "department": "Directing", "job": "Director", "credit_id": "52fe4685c3a36847f810394b", "profile_path": "/rdyG298NSBiY6tRp1sB4Ki2IdxZ.jpg", "id": 70890}], "vote_average": 5.8, "runtime": 93}, "249164": {"poster_path": "/isUQKy3cdfN62DfIp0dhl4hD5oc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75400000, "overview": "Based on Gayle Forman's novel of the same name. \"If I Stay\" is the story of the gifted classical musician Mia and her boyfriend, Adam, an up and coming indie-rock star. Torn between two paths in life, her art or her relationship, Mia is forced to make an even starker choice between life and death when she is caught in a fatal car accident with her family one snowy morning in Oregon.", "video": false, "id": 249164, "genres": [{"id": 18, "name": "Drama"}], "title": "If I Stay", "tagline": "Live for Love.", "vote_count": 273, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1355630", "adult": false, "backdrop_path": "/l1UF3Lr1zSUiwKgvdkk8OEEr4Sk.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2014-08-22", "popularity": 1.09499236969286, "original_title": "If I Stay", "budget": 11000000, "cast": [{"name": "Chlo\u00eb Grace Moretz", "character": "Mia Hall", "id": 56734, "credit_id": "52fe4f3ec3a36847f82c806b", "cast_id": 3, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 0}, {"name": "Mireille Enos", "character": "Kat Hall", "id": 175826, "credit_id": "52fe4f3ec3a36847f82c806f", "cast_id": 4, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 1}, {"name": "Jamie Blackley", "character": "Adam", "id": 221985, "credit_id": "52fe4f3ec3a36847f82c8073", "cast_id": 5, "profile_path": "/AiRZjxoqNHh4pR7ngfwhLBvGe3F.jpg", "order": 2}, {"name": "Liana Liberato", "character": "Kim Schein", "id": 60458, "credit_id": "52fe4f3ec3a36847f82c8077", "cast_id": 6, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 3}, {"name": "Stacy Keach", "character": "Gramps", "id": 825, "credit_id": "542d59c50e0a2607b7001d84", "cast_id": 15, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 4}, {"name": "Gabrielle Rose", "character": "Gran", "id": 58804, "credit_id": "542d59fb0e0a2607b7001d87", "cast_id": 17, "profile_path": "/wHJfGv13nIsph7Oam0Mf3boxDHK.jpg", "order": 5}, {"name": "Joshua Leonard", "character": "Denny", "id": 26852, "credit_id": "542d5a09c3a36845ef001cc8", "cast_id": 18, "profile_path": "/61n2FqQ4k1VbN2hM66zvr8fc2Tp.jpg", "order": 6}, {"name": "Jakob Davies", "character": "Teddy", "id": 139618, "credit_id": "542d5a5a0e0a26079e001e77", "cast_id": 19, "profile_path": "/9401kh3am1lZijYUbPUnnYBrw3Z.jpg", "order": 7}, {"name": "Ali Milner", "character": "Liz", "id": 1369431, "credit_id": "542d5a6f0e0a2607ab001cbe", "cast_id": 20, "profile_path": "/w7tYQesSPHQ9ua9O4cy6gHE8gz1.jpg", "order": 8}, {"name": "Aisha Hinds", "character": "Nurse Ramirez", "id": 1192492, "credit_id": "542d5a820e0a2607a7001d57", "cast_id": 21, "profile_path": "/pDgm7OM9pT9rF5Q41lVVWj2cqOv.jpg", "order": 9}, {"name": "Gabrielle Cerys Haslett", "character": "Young Mia", "id": 1369432, "credit_id": "542d5a94c3a3683e31001831", "cast_id": 22, "profile_path": "/lY2OMKLHg2fTXdI7tJWLax7uUGh.jpg", "order": 10}, {"name": "Lauren Lee Smith", "character": "Willow", "id": 52394, "credit_id": "542d5aa40e0a2607b3001dc6", "cast_id": 23, "profile_path": "/bJ9ZEHet5jxAgHrDZJtVzzR4akF.jpg", "order": 11}, {"name": "Adam Solomonian", "character": "Henry", "id": 1369433, "credit_id": "542d5acbc3a36845e5001dc4", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "John Emmett Tracy", "character": "Surgeon", "id": 1182657, "credit_id": "542d5add0e0a2607a1001cd8", "cast_id": 25, "profile_path": "/sNWOxrNJULCLV8qDjO1ttwZmiUl.jpg", "order": 13}, {"name": "Chelah Horsdal", "character": "Liddy", "id": 70175, "credit_id": "542d5aec0e0a2607ab001ccb", "cast_id": 26, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 14}, {"name": "Christine Willes", "character": "Nurse Davis", "id": 189719, "credit_id": "54f41fc4c3a368512b00100c", "cast_id": 57, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 15}, {"name": "Arielle Tuliao", "character": "Astrid", "id": 1406026, "credit_id": "54a25a979251411860000fdd", "cast_id": 28, "profile_path": "/twdKjMjoksByhfBphRLK9XD9FXm.jpg", "order": 16}, {"name": "Sarah Grey", "character": "Cute Groupie", "id": 1197119, "credit_id": "54a25cc99251411860001035", "cast_id": 29, "profile_path": "/r5J14otbKwrDzuZh8L2J6LEkwxp.jpg", "order": 17}, {"name": "Aliyah O'Brien", "character": "Female EMT", "id": 503854, "credit_id": "54a25f59925141198b0031ec", "cast_id": 30, "profile_path": "/oTVeahsFSCQQRypkHs4bpyTkp3b.jpg", "order": 18}, {"name": "William C. Vaughan", "character": "Male EMT", "id": 1287152, "credit_id": "54a260c1925141236b0059f9", "cast_id": 31, "profile_path": "/40WgztCkVXvltgyIVdpBtyoC9E3.jpg", "order": 19}, {"name": "Paul Jarrett", "character": "Surgeon", "id": 20380, "credit_id": "54a2622092514121270056a4", "cast_id": 32, "profile_path": "/o3N4gV1baZ6fzh8aaCPB6wmFVyO.jpg", "order": 20}, {"name": "Giles Panton", "character": "Teddy's Surgeon", "id": 1406035, "credit_id": "54a262e8c3a3682f1b00e879", "cast_id": 33, "profile_path": "/1FzkMiwAYD9F1TBSvPz2a1T1NpD.jpg", "order": 21}, {"name": "Dave Collette", "character": "Orderly", "id": 1406037, "credit_id": "54a264a59251414d270095a1", "cast_id": 34, "profile_path": "/qxmhKnfrYsWFZILCapgWTezuLCU.jpg", "order": 22}, {"name": "David Orth", "character": "Surgeon for Driver", "id": 1221020, "credit_id": "54a26b4192514117dd0011b4", "cast_id": 35, "profile_path": "/qvw7djGPev8EaIvpTWLMtZWDYpE.jpg", "order": 23}, {"name": "Camille Atebe", "character": "Nurse", "id": 206618, "credit_id": "54a26d97c3a3684d8f001283", "cast_id": 36, "profile_path": "/lOg3UvW7OZ4gOutPhDaNr7xwCgD.jpg", "order": 24}, {"name": "Annabel Kershaw", "character": "Wife of Driver", "id": 53715, "credit_id": "54a26f2f9251414e28009b22", "cast_id": 37, "profile_path": "/1VqbvAohBwFhETZtDe76JXQcxKm.jpg", "order": 25}, {"name": "Toby Hargrave", "character": "Mosh Pit Oaf", "id": 1223435, "credit_id": "54a272ff9251411d5300921f", "cast_id": 38, "profile_path": "/wW2kOlVGtrrDEZiNMd3poz7CKAD.jpg", "order": 26}, {"name": "Primo Allon", "character": "Punker", "id": 1366661, "credit_id": "54a27cb3c3a3682f2100ec7e", "cast_id": 40, "profile_path": "/tsMc3e9Mqm0BcqWfX5pCMRDHbze.jpg", "order": 27}, {"name": "John Shaw", "character": "Music Aficionado", "id": 79346, "credit_id": "54a2801ac3a3682f1b00eb7f", "cast_id": 41, "profile_path": "/r5ZeKicyshv5qFBqR4OiHEfNzwP.jpg", "order": 28}, {"name": "Michael Adamthwaite", "character": "Security Guard", "id": 63566, "credit_id": "54a2815a92514121270059d3", "cast_id": 42, "profile_path": "/cLHvXOFJgGPEN4ym0a2Ys4s3p85.jpg", "order": 29}, {"name": "Jameson Trenholm", "character": "Skeleton", "id": 1406094, "credit_id": "54a28227c3a3682f1b00ebc6", "cast_id": 43, "profile_path": "/viIwG4WHWuVg6bQDw7PeeIvguyH.jpg", "order": 30}, {"name": "Donnie MacNeil", "character": "Cool Rocker Guy", "id": 111930, "credit_id": "54a285039251411d530093d9", "cast_id": 44, "profile_path": "/8YKf73rmd0MbbE0nH3XcGB5jps4.jpg", "order": 31}, {"name": "Genevieve Buechner", "character": "Cute Groupie #2", "id": 46903, "credit_id": "54a285d5c3a3682f1e00e9fb", "cast_id": 45, "profile_path": "/sjTZG0L4tgEulkjc59NjnnOwdF2.jpg", "order": 32}, {"name": "Alisa Weilerstein", "character": "Herself", "id": 1406127, "credit_id": "54a286f3925141186000153f", "cast_id": 46, "profile_path": "/2Ndk3xrhRAHjLbJDMWorteFd1mz.jpg", "order": 33}, {"name": "Elisa King", "character": "Autograph Girl", "id": 208230, "credit_id": "54a28ae7c3a3684d600015c4", "cast_id": 47, "profile_path": "/8wzt7KQ4CboPMDbSMrZR9tj7ZEN.jpg", "order": 34}, {"name": "Brett Wise", "character": "Bartender", "id": 1406171, "credit_id": "54a291369251412127005ae9", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Steven Jeays", "character": "High Five Guy", "id": 1406182, "credit_id": "54a2924d9251411d5300950d", "cast_id": 49, "profile_path": "/lg1CCF6d081bP8ltcNgkGs6GWXc.jpg", "order": 36}, {"name": "Boyd Ferguson", "character": "Orderly #2", "id": 1406186, "credit_id": "54a2936cc3a368764f00b662", "cast_id": 50, "profile_path": "/8A07ocrcGF6nBFvusIFppIU4bcL.jpg", "order": 37}, {"name": "Sylvesta Stuart", "character": "Security Guard #2", "id": 1237423, "credit_id": "54a295c5925141236b005fd0", "cast_id": 51, "profile_path": "/n1lqjfpOw6zod8DIBw2xK3KDF8g.jpg", "order": 38}, {"name": "Ben Klassen", "character": "Willamette Stone Band", "id": 1406194, "credit_id": "54a29699c3a3682f1b00edb3", "cast_id": 52, "profile_path": "/2W0ayG0nK8iKGwmoeoMO2qmIWR8.jpg", "order": 39}, {"name": "Ryan Stephenson", "character": "Willamette Stone Band", "id": 1406196, "credit_id": "54a296e3c3a3682f1e00eb48", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Tom Vanderkam", "character": "Willamette Stone Band", "id": 1406198, "credit_id": "54a2974fc3a3682f1e00eb57", "cast_id": 54, "profile_path": "/q2MgxpUca6Dhzkdq8GNd8uNSqNd.jpg", "order": 41}, {"name": "Tony Dubroy", "character": "Bassist for Nasty Bruises", "id": 1406201, "credit_id": "54a297abc3a3682f1b00edd7", "cast_id": 55, "profile_path": null, "order": 42}], "directors": [{"name": "R.J. Cutler", "department": "Directing", "job": "Director", "credit_id": "52fe4f3ec3a36847f82c8061", "profile_path": "/sPtugFlx2CEAV60w5eeGx6z6rhB.jpg", "id": 1284493}], "vote_average": 7.3, "runtime": 106}, "75674": {"poster_path": "/rD7zSU8OVAcYg92nB19qIc7spiw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81272766, "overview": "Go \"down range\" with real, active duty Navy SEALs in this adrenaline-fueled action-adventure that inserts you into the heart of the battle, alongside America's best and bravest. When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.", "video": false, "id": 75674, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Act of Valor", "tagline": "The only easy day was yesterday", "vote_count": 207, "homepage": "http://www.actofvalor.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1591479", "adult": false, "backdrop_path": "/htNeKbkSBubGrdmPPg8lFZjSUdH.jpg", "production_companies": [{"name": "Bandito Brothers", "id": 8403}, {"name": "Relativity Media", "id": 7295}], "release_date": "2012-02-24", "popularity": 0.278765473857006, "original_title": "Act of Valor", "budget": 12000000, "cast": [{"name": "Roselyn S\u00e1nchez", "character": "Lisa Morales", "id": 41901, "credit_id": "52fe490cc3a368484e117eb5", "cast_id": 4, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 0}, {"name": "Emilio Rivera", "character": "Sanchez", "id": 53257, "credit_id": "52fe490cc3a368484e117eb9", "cast_id": 5, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 1}, {"name": "Nestor Serrano", "character": "Walter Ross", "id": 14331, "credit_id": "52fe490cc3a368484e117ebd", "cast_id": 6, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 2}, {"name": "Gonzalo Menendez", "character": "Commander Pedros", "id": 84754, "credit_id": "52fe490cc3a368484e117ec1", "cast_id": 7, "profile_path": "/qubqkIJkHSMwG1bAkiHjqY3xfxu.jpg", "order": 3}, {"name": "Alexander Asefa", "character": "Christo's Thug", "id": 1025647, "credit_id": "52fe490cc3a368484e117ec5", "cast_id": 8, "profile_path": "/fxrz9gOX1YqD3vCuBXu09mukQUT.jpg", "order": 4}, {"name": "Jeffrey Barnachea", "character": "Recruit", "id": 1025648, "credit_id": "52fe490cc3a368484e117ec9", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Kenny Calderon", "character": "Christo's Thug", "id": 1025649, "credit_id": "52fe490cc3a368484e117ecd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Raul Canizales II", "character": "Cartel & Mexican SOF", "id": 1025650, "credit_id": "52fe490cc3a368484e117ed1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Drea Castro", "character": "Recruit", "id": 1025651, "credit_id": "52fe490cc3a368484e117ed5", "cast_id": 12, "profile_path": "/y2lNbT0uvNgMBU6X6I6wymNOJDK.jpg", "order": 8}, {"name": "Sam Cespedes", "character": "Christo's Thug", "id": 1025654, "credit_id": "52fe490cc3a368484e117ed9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Jimmy Chhiu", "character": "Recruit", "id": 1025655, "credit_id": "52fe490cc3a368484e117edd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Charles Chiyangwa", "character": "Somalian", "id": 1025657, "credit_id": "52fe490cc3a368484e117ee1", "cast_id": 15, "profile_path": "/hwn8v4uqKgavahqXxR9QsSBbjeP.jpg", "order": 11}, {"name": "Antoni Corone", "character": "Yacht Henchman #1", "id": 20562, "credit_id": "52fe490cc3a368484e117ee5", "cast_id": 16, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 12}, {"name": "Jason Cottle", "character": "Abu Shabal", "id": 8270, "credit_id": "52fe490cc3a368484e117ee9", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Jesse Cotton", "character": "Somalian", "id": 1025666, "credit_id": "52fe490cc3a368484e117eed", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Craig H. Davidson", "character": "Recruit", "id": 1025667, "credit_id": "52fe490cc3a368484e117ef1", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Juan Diaz", "character": "Cartel & Mexican SOF", "id": 1025668, "credit_id": "52fe490cc3a368484e117ef5", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Aurelius DiBarsanti", "character": "Recruit", "id": 1025669, "credit_id": "52fe490cc3a368484e117ef9", "cast_id": 21, "profile_path": "/xn0TmZdYYooaeUaeaJmEmDAq2K2.jpg", "order": 17}, {"name": "Pedro Sergio Escobedo", "character": "Cartel & Mexican SOF", "id": 1025670, "credit_id": "52fe490cc3a368484e117efd", "cast_id": 22, "profile_path": null, "order": 18}], "directors": [{"name": "Mike McCoy", "department": "Directing", "job": "Director", "credit_id": "52fe490cc3a368484e117ea5", "profile_path": null, "id": 90429}, {"name": "Scott Waugh", "department": "Directing", "job": "Director", "credit_id": "52fe490cc3a368484e117eab", "profile_path": null, "id": 293911}], "vote_average": 6.2, "runtime": 110}, "11601": {"poster_path": "/tdsVfsvvkj9ygu0LIiFtpCgwg8h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21133087, "overview": "After being hypnotized by his sister in law, Tom Witzky begins seeing haunting visions of a girl's ghost and a mystery begins to unfold around her.", "video": false, "id": 11601, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Stir of Echoes", "tagline": "In every mind there is a door that should never be opened.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 143757, "name": "Stir of Echoes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0164181", "adult": false, "backdrop_path": "/kwdmLQgWOmx9oXDpC6KwA2YJOFC.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}], "release_date": "1999-09-10", "popularity": 0.436253431409835, "original_title": "Stir of Echoes", "budget": 12000000, "cast": [{"name": "Kevin Bacon", "character": "Tom Witzky", "id": 4724, "credit_id": "52fe44659251416c75033317", "cast_id": 9, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Zachary David Cope", "character": "Jake Witzky", "id": 69979, "credit_id": "52fe44659251416c75033313", "cast_id": 8, "profile_path": null, "order": 1}, {"name": "Kathryn Erbe", "character": "Maggie Witzky", "id": 49824, "credit_id": "52fe44659251416c7503331b", "cast_id": 10, "profile_path": "/g08nZHy3iksjhczFfT8VctUIJ73.jpg", "order": 2}, {"name": "Illeana Douglas", "character": "Lisa Weil", "id": 7796, "credit_id": "52fe44659251416c7503331f", "cast_id": 11, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Frank McCarthy", "id": 14721, "credit_id": "52fe44659251416c75033329", "cast_id": 13, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Conor O'Farrell", "character": "Harry Damon", "id": 119521, "credit_id": "52fe44659251416c7503332d", "cast_id": 14, "profile_path": "/ugq8gVP47XNWQyvVq5RNhA1yhv5.jpg", "order": 5}, {"name": "Lusia Strus", "character": "Sheila McCarthy", "id": 19293, "credit_id": "52fe44659251416c75033331", "cast_id": 15, "profile_path": "/qbXs16CG5qIyEc2CSfigwZSxDte.jpg", "order": 6}, {"name": "Stephen Eugene Walker", "character": "Bobby", "id": 1060579, "credit_id": "52fe44659251416c75033335", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mary Kay Cook", "character": "Vanessa Damon", "id": 191611, "credit_id": "52fe44659251416c75033339", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Larry Neumann Jr.", "character": "Lenny", "id": 946311, "credit_id": "52fe44659251416c7503333d", "cast_id": 18, "profile_path": "/wn6Ji5i1NoDVJjw3gCfzDIkGk4j.jpg", "order": 9}, {"name": "Jennifer Morrison", "character": "Samantha Kozac", "id": 41421, "credit_id": "52fe44659251416c75033341", "cast_id": 19, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 10}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe44659251416c750332eb", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 6.0, "runtime": 99}, "49014": {"poster_path": "/1L7Ise1Zjj2zbpbfrk7zHFiYrTt.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "PT", "name": "Portugal"}], "revenue": 6063556, "overview": "Riding across Manhattan in a stretch limo in order to get a haircut, a 28-year-old billionaire asset manager's day devolves into an odyssey with a cast of characters that start to tear his world apart.", "video": false, "id": 49014, "genres": [{"id": 18, "name": "Drama"}], "title": "Cosmopolis", "tagline": "How far can he go before he goes too far?", "vote_count": 85, "homepage": "http://cosmopolisthefilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1480656", "adult": false, "backdrop_path": "/ki7xrOPMcFp98TTY87NO0MTrpEw.jpg", "production_companies": [{"name": "Jouror Productions", "id": 12391}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Prospero Pictures", "id": 2844}, {"name": "Alfama Films", "id": 3061}, {"name": "Leopardo Filmes", "id": 44106}, {"name": "Talandracas", "id": 44107}, {"name": "Canal+", "id": 5358}, {"name": "Rai Cinema", "id": 2683}, {"name": "Radiotelevis\u00e3o Portuguesa (RTP)", "id": 26019}], "release_date": "2012-05-25", "popularity": 0.308465419320465, "original_title": "Cosmopolis", "budget": 20500000, "cast": [{"name": "Robert Pattinson", "character": "Eric Packer", "id": 11288, "credit_id": "52fe4780c3a36847f8139387", "cast_id": 5, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Sarah Gadon", "character": "Elise Shifrin", "id": 190895, "credit_id": "52fe4780c3a36847f813939f", "cast_id": 11, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 1}, {"name": "Juliette Binoche", "character": "Didi Fancher", "id": 1137, "credit_id": "52fe4780c3a36847f813939b", "cast_id": 10, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Benno Levin", "id": 13242, "credit_id": "52fe4780c3a36847f8139393", "cast_id": 8, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Samantha Morton", "character": "Vija Kinsky", "id": 2206, "credit_id": "52fe4780c3a36847f813938b", "cast_id": 6, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 4}, {"name": "Jay Baruchel", "character": "Shiner", "id": 449, "credit_id": "52fe4780c3a36847f813938f", "cast_id": 7, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 5}, {"name": "Kevin Durand", "character": "Torval", "id": 79072, "credit_id": "52fe4780c3a36847f8139397", "cast_id": 9, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 6}, {"name": "Mathieu Amalric", "character": "Andre Petrescu", "id": 8789, "credit_id": "52fe4780c3a36847f81393a3", "cast_id": 12, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 7}, {"name": "Emily Hampshire", "character": "Jane Melman", "id": 4570, "credit_id": "52fe4780c3a36847f81393a7", "cast_id": 13, "profile_path": "/qlsKvrMs3aUktygImkHc8zXejgC.jpg", "order": 8}, {"name": "Patricia McKenzie", "character": "Kendra Hays", "id": 181250, "credit_id": "52fe4780c3a36847f81393af", "cast_id": 15, "profile_path": "/plQHNRa5ZQM6bVHSVFZX0iVVkwd.jpg", "order": 9}, {"name": "George Touliatos", "character": "Anthony", "id": 59179, "credit_id": "52fe4780c3a36847f81393b3", "cast_id": 16, "profile_path": "/5dhhJXgozmVffYlJiOweZIMPvSo.jpg", "order": 10}, {"name": "Philip Nozuka", "character": "Michael Chin", "id": 1016143, "credit_id": "52fe4780c3a36847f81393bb", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Abdul Ayoola", "character": "Ibrahim Hamadou", "id": 229561, "credit_id": "52fe4780c3a36847f81393c3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Gouchy Boy", "character": "Kosmo Thomas", "id": 85162, "credit_id": "52fe4780c3a36847f81393c7", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Zeljko Kecojevic", "character": "Danko", "id": 930328, "credit_id": "52fe4780c3a36847f813941d", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Bob Bainborough", "character": "Dr. Ingram", "id": 146588, "credit_id": "52fe4780c3a36847f813942d", "cast_id": 44, "profile_path": null, "order": 15}, {"name": "Jadyn Wong", "character": "Cathy Lee", "id": 86765, "credit_id": "52fe4780c3a36847f81393bf", "cast_id": 19, "profile_path": "/gdG4gGj0zRLFXRtguGpAtIppaBT.jpg", "order": 16}, {"name": "David Schaap", "character": "Arthur Rapp", "id": 1177316, "credit_id": "52fe4780c3a36847f813940d", "cast_id": 36, "profile_path": "/jrG56M9qkTBnT9p4zS5td9HjRBC.jpg", "order": 17}, {"name": "Warren Chow", "character": "Arthur's Attacker", "id": 1177317, "credit_id": "52fe4780c3a36847f8139411", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Ryan Kelly", "character": "Rat Man #1", "id": 1177318, "credit_id": "52fe4780c3a36847f8139415", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Nadeem Umar-Khitab", "character": "Rat Man #2", "id": 1177319, "credit_id": "52fe4780c3a36847f8139419", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "K'Naan", "character": "Brutha Fez", "id": 1177322, "credit_id": "52fe4780c3a36847f8139421", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "John Batkis", "character": "Photographer #1", "id": 1177328, "credit_id": "52fe4780c3a36847f8139435", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Saad Siddiqui", "character": "Photographer #2", "id": 1016142, "credit_id": "52fe4780c3a36847f81393b7", "cast_id": 17, "profile_path": null, "order": 23}, {"name": "Anna Hardwick", "character": "Photographer #3 - Jenn", "id": 135256, "credit_id": "52fe4780c3a36847f81393ab", "cast_id": 14, "profile_path": "/mDQNiY7E0iKdsBYf8YCNB0Nr85z.jpg", "order": 24}, {"name": "Inessa Frantowski", "character": "Woman Holding Rat", "id": 1177323, "credit_id": "52fe4780c3a36847f8139425", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Albert Gomez", "character": "Counterman (as Alberto Gomez)", "id": 1177327, "credit_id": "52fe4780c3a36847f8139431", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Jonathan Seinen", "character": "Man on Fire", "id": 1177324, "credit_id": "52fe4780c3a36847f8139429", "cast_id": 43, "profile_path": null, "order": 27}, {"name": "Milton Barnes", "character": "Videographer", "id": 1226806, "credit_id": "52fe4780c3a36847f813945d", "cast_id": 53, "profile_path": "/8Lb9cegevGfADPuZNQ1BWunisik.jpg", "order": 28}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f8139383", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 4.6, "runtime": 109}, "11615": {"poster_path": "/pN338h8TeEl774vbOHR76VNgOc8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38955598, "overview": "A man against capital punishment is accused of murdering a fellow activist and is sent to death row.", "video": false, "id": 11615, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Life of David Gale", "tagline": "The crime is clear. The truth is not.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0289992", "adult": false, "backdrop_path": "/krjjWXi6pdtR0C7mCNmVH6uGumJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Intermedia Films", "id": 763}, {"name": "Saturn Films", "id": 831}], "release_date": "2003-02-21", "popularity": 0.745780455308722, "original_title": "The Life of David Gale", "budget": 50000000, "cast": [{"name": "Kevin Spacey", "character": "David Gale", "id": 1979, "credit_id": "52fe44679251416c750339b5", "cast_id": 12, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Bitsey Bloom", "id": 204, "credit_id": "52fe44689251416c750339b9", "cast_id": 13, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Laura Linney", "character": "Constance Hallaway", "id": 350, "credit_id": "52fe44689251416c750339bd", "cast_id": 14, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 2}, {"name": "Gabriel Mann", "character": "Zack Stemmons", "id": 32458, "credit_id": "52fe44689251416c750339c1", "cast_id": 15, "profile_path": "/bv6zwRM5pKaETM3XdnLe7JFzVVI.jpg", "order": 3}, {"name": "Rhona Mitra", "character": "Berlin", "id": 25702, "credit_id": "52fe44689251416c750339c5", "cast_id": 16, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 4}, {"name": "Matt Craven", "character": "Dusty Wright", "id": 13525, "credit_id": "52fe44689251416c750339c9", "cast_id": 17, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 5}, {"name": "Melissa McCarthy", "character": "Nico the Goth Girl", "id": 55536, "credit_id": "52fe44689251416c750339cd", "cast_id": 18, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 6}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44679251416c75033975", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.3, "runtime": 130}, "76493": {"poster_path": "/uAvG211cGNKSFyPzXFVMZzjkBB8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167650222, "overview": "The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.", "video": false, "id": 76493, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Dictator", "tagline": "", "vote_count": 704, "homepage": "http://www.dictatorthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt1645170", "adult": false, "backdrop_path": "/akIvhOyNplQibXC8JCZh5dhKlDh.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2012-05-16", "popularity": 0.615310295801348, "original_title": "The Dictator", "budget": 65000000, "cast": [{"name": "Sacha Baron Cohen", "character": "Aladeen / Efawadh", "id": 6730, "credit_id": "52fe493ec3a368484e121721", "cast_id": 4, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Sayed Badreya", "character": "Omar", "id": 173810, "credit_id": "52fe493ec3a368484e121725", "cast_id": 5, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 1}, {"name": "Aasif Mandvi", "character": "Doctor", "id": 20644, "credit_id": "52fe493ec3a368484e121729", "cast_id": 6, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 2}, {"name": "Megan Fox", "character": "Herself", "id": 19537, "credit_id": "52fe493ec3a368484e12172d", "cast_id": 8, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 3}, {"name": "Anna Faris", "character": "Zoey", "id": 1772, "credit_id": "52fe493ec3a368484e121731", "cast_id": 9, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 4}, {"name": "John C. Reilly", "character": "Clayton", "id": 4764, "credit_id": "52fe493ec3a368484e121735", "cast_id": 10, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 5}, {"name": "Michelle Bergh", "character": "Aladeen's Mother", "id": 571570, "credit_id": "52fe493ec3a368484e121763", "cast_id": 19, "profile_path": "/7XREQAEKkTTbpf6XblFbBVpUXze.jpg", "order": 6}, {"name": "Adeel Akhtar", "character": "Maroush", "id": 81840, "credit_id": "52fe493ec3a368484e121767", "cast_id": 20, "profile_path": "/m5nctbJLv1N8uaUxP2aoFySISlC.jpg", "order": 7}, {"name": "Ben Kingsley", "character": "Tamir", "id": 2282, "credit_id": "52fe493ec3a368484e12176b", "cast_id": 21, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 8}, {"name": "Olivia Taylor Dudley", "character": "Nurse Svetlana", "id": 999817, "credit_id": "52fe493ec3a368484e12176f", "cast_id": 22, "profile_path": "/h7IwauTb4Zj0CNXSujNcgGixl7F.jpg", "order": 9}, {"name": "Jason Mantzoukas", "character": "Nadal", "id": 111683, "credit_id": "52fe493ec3a368484e121773", "cast_id": 23, "profile_path": "/lBMDmGGuhLrg0Q4cZi2vDc2ucgF.jpg", "order": 10}, {"name": "Kathryn Hahn", "character": "Pregnant Woman", "id": 17696, "credit_id": "52fe493ec3a368484e121777", "cast_id": 24, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 11}, {"name": "Rizwan Manji", "character": "Patient", "id": 1223718, "credit_id": "52fe493ec3a368484e121781", "cast_id": 26, "profile_path": "/yB9w540vNe4pwa3ptvO1haDUKWy.jpg", "order": 12}], "directors": [{"name": "Larry Charles", "department": "Directing", "job": "Director", "credit_id": "52fe493ec3a368484e121717", "profile_path": "/fg42iXWfuIeRVk4NFNWvWJf4hst.jpg", "id": 6767}], "vote_average": 5.9, "runtime": 83}, "11619": {"poster_path": "/oCdPDusnJvIZN6OpaF2Yj7211w.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64459316, "overview": "London high-society mouse Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs Spike and Whitey.", "video": false, "id": 11619, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Flushed Away", "tagline": "Someone's Going Down", "vote_count": 223, "homepage": "http://www.dreamworksanimation.com/flushed/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0424095", "adult": false, "backdrop_path": "/7gvhqD2l8T6qKlD0ec4nysh077y.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Aardman Animations", "id": 297}], "release_date": "2006-10-22", "popularity": 0.736339324224771, "original_title": "Flushed Away", "budget": 149000000, "cast": [{"name": "Hugh Jackman", "character": "Roddy", "id": 6968, "credit_id": "52fe44689251416c75033bf1", "cast_id": 1, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Rita", "id": 204, "credit_id": "52fe44689251416c75033bf5", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Ian McKellen", "character": "The Toad", "id": 1327, "credit_id": "52fe44689251416c75033bf9", "cast_id": 3, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Jean Reno", "character": "Le Frog", "id": 1003, "credit_id": "52fe44689251416c75033bfd", "cast_id": 4, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Whitey", "id": 2440, "credit_id": "52fe44689251416c75033c01", "cast_id": 5, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Andy Serkis", "character": "Spike", "id": 1333, "credit_id": "52fe44689251416c75033c05", "cast_id": 6, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 5}, {"name": "Shane Richie", "character": "Sid", "id": 215823, "credit_id": "52fe44699251416c75033c5d", "cast_id": 22, "profile_path": "/yVa9fEYwNoylPSCQ1qBIZTKrQ4B.jpg", "order": 6}, {"name": "Kathy Burke", "character": "Rita's Mum", "id": 37759, "credit_id": "52fe44699251416c75033c61", "cast_id": 23, "profile_path": "/3VjQaOV0Wyy1tzwxKI5Os5ZqID8.jpg", "order": 7}, {"name": "David Suchet", "character": "Rita's Dad", "id": 20277, "credit_id": "52fe44699251416c75033c65", "cast_id": 24, "profile_path": "/z0MuDGLfLLLKhwmbXCErxedHtQ9.jpg", "order": 8}, {"name": "Miriam Margolyes", "character": "Rita's Grandma", "id": 6199, "credit_id": "52fe44699251416c75033c69", "cast_id": 25, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 9}, {"name": "Rachel Rawlinson", "character": "Tabitha", "id": 1075046, "credit_id": "52fe44699251416c75033c6d", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Susan Duerden", "character": "Mother", "id": 58893, "credit_id": "52fe44699251416c75033c71", "cast_id": 27, "profile_path": "/q2DELwxwldboe84N9UFKIErjobe.jpg", "order": 11}, {"name": "Miles Richardson", "character": "Father", "id": 206393, "credit_id": "52fe44699251416c75033c75", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "John Motson", "character": "Football Commentator", "id": 1075047, "credit_id": "52fe44699251416c75033c79", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Douglas Weston", "character": "Newspaper Seller", "id": 1060194, "credit_id": "52fe44699251416c75033c7d", "cast_id": 30, "profile_path": null, "order": 14}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe44689251416c75033c0b", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}, {"name": "Sam Fell", "department": "Directing", "job": "Director", "credit_id": "52fe44699251416c75033c11", "profile_path": "/29NFQubb9A5OrA9OyXhnX4eOfkv.jpg", "id": 58897}], "vote_average": 5.8, "runtime": 85}, "11621": {"poster_path": "/d8J98dLZkfTpJY64VvtCOH2UkXP.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Porco Rosso, known in Japan as Crimson Pig (Kurenai no Buta) is the sixth animated film by Hayao Miyazaki and released in 1992. You're introduced to an Italian World War I fighter ace, now living as a freelance bounty hunter chasing \"air pirates\" in the Adriatic Sea. He has been given a curse that changed his head to that of a pig. Once called Marco Pagot, he is now known to the world as \"Porco Rosso\", Italian for \"Red Pig.\"", "video": false, "id": 11621, "genres": [{"id": 16, "name": "Animation"}], "title": "Porco Rosso", "tagline": "A pig's got to fly", "vote_count": 140, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0104652", "adult": false, "backdrop_path": "/6S8i52Q1ipCVYphnBJLhzCy0lb9.jpg", "production_companies": [{"name": "Tokuma Shoten", "id": 1779}, {"name": "Japan Airlines", "id": 12515}, {"name": "Nibariki", "id": 12516}, {"name": "Nippon Television Network (NTV)", "id": 20192}, {"name": "Studio Ghibli", "id": 10342}, {"name": "TNNG", "id": 12517}, {"name": "Toho Company", "id": 882}], "release_date": "1992-07-18", "popularity": 0.968030490889735, "original_title": "Kurenai no buta", "budget": 0, "cast": [{"name": "Sh\u00fbichir\u00f4 Moriyama", "character": "Kurenai no Buta (voice)", "id": 70046, "credit_id": "52fe44699251416c75033dc5", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Tokiko Kat\u00f4", "character": "Jina-sama (voice)", "id": 70047, "credit_id": "52fe44699251416c75033dc9", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Sanshi Katsura", "character": "Pikkoro-oyaji (voice)", "id": 70048, "credit_id": "52fe44699251416c75033dcd", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Tsunehiko Kamij\u00f4", "character": "Manmayuto no shach\u00f4 (voice)", "id": 20334, "credit_id": "52fe44699251416c75033dd1", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Akemi Okamura", "character": "Fio Pikkoro (voice)", "id": 90133, "credit_id": "52fe44699251416c75033e23", "cast_id": 18, "profile_path": "/bqt1vYkQwRvCW8yMibiMWpZicGT.jpg", "order": 4}, {"name": "Akio Ohtsuka", "character": "Donarudo K\u00e2chisu (voice)", "id": 550623, "credit_id": "52fe44699251416c75033e27", "cast_id": 19, "profile_path": "/lxew3RhQ7q8zMMuHTdRmSlXHFO8.jpg", "order": 5}, {"name": "Hiroko Seki", "character": "B\u00e2-chan (voice)", "id": 551769, "credit_id": "52fe44699251416c75033e2b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Mahito Tsujimura", "character": "(voice)", "id": 614, "credit_id": "52fe446a9251416c75033e47", "cast_id": 25, "profile_path": "/dqVhQYTCYWOCuEofBZ5O3Xdgd3y.jpg", "order": 7}, {"name": "Minoru Yada", "character": "(voice)", "id": 620, "credit_id": "52fe446a9251416c75033e4b", "cast_id": 26, "profile_path": "/ou7xfpY5ao7uKfFAWLpJAIr6bHm.jpg", "order": 8}, {"name": "Osamu Saka", "character": "(voice)", "id": 83932, "credit_id": "54b9225ec3a368145e001973", "cast_id": 27, "profile_path": null, "order": 9}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe44699251416c75033dd7", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.3, "runtime": 94}, "85350": {"poster_path": "/5TSUvN9e9yiGOnjyJ8QIjWOot7S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44349000, "overview": "The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.", "video": false, "id": 85350, "genres": [{"id": 18, "name": "Drama"}], "title": "Boyhood", "tagline": "12 years in the making.", "vote_count": 644, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1065073", "adult": false, "backdrop_path": "/f0HeQdnuFkboXWGBgqtwYUKgLZw.jpg", "production_companies": [{"name": "IFC Productions", "id": 26468}], "release_date": "2014-07-11", "popularity": 3.00104561234773, "original_title": "Boyhood", "budget": 4000000, "cast": [{"name": "Ellar Coltrane", "character": "Mason", "id": 931944, "credit_id": "52fe49369251416c910a641d", "cast_id": 3, "profile_path": "/4TgDJjbbv5fR2vGsgMeJgdnLLU4.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Olivia", "id": 4687, "credit_id": "52fe49369251416c910a6421", "cast_id": 4, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Ethan Hawke", "character": "Mason Sr.", "id": 569, "credit_id": "52fe49369251416c910a6425", "cast_id": 5, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 2}, {"name": "Lorelei Linklater", "character": "Samantha", "id": 1327009, "credit_id": "538ce00ac3a368714e0032f1", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Tamara Jolaine", "character": "Tammy", "id": 110990, "credit_id": "52fe49369251416c910a6429", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Zoe Graham", "character": "Sheena", "id": 1327013, "credit_id": "538ce06fc3a368714b003354", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Sam Dillon", "character": "Nick", "id": 1327010, "credit_id": "538ce053c3a368713c00342b", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Nick Krause", "character": "Charlie", "id": 931945, "credit_id": "52fe49369251416c910a642d", "cast_id": 7, "profile_path": "/1UYyquycT8qGioKPRYNNKXLtlqJ.jpg", "order": 7}, {"name": "Shane Graham", "character": "Stanley", "id": 1327011, "credit_id": "538ce05ec3a368714b00334a", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Taylor Weaver", "character": "Barb", "id": 1377614, "credit_id": "54e7e815c3a36836e0000bed", "cast_id": 25, "profile_path": null, "order": 9}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe49369251416c910a6413", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.8, "runtime": 164}, "100241": {"poster_path": "/amJHZ4eOMpqyKo1GK33HFV55zue.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71154592, "overview": "200 years after his shocking creation, Dr. Frankenstein's creature, Adam, still walks the earth. But when he finds himself in the middle of a war over the fate of humanity, Adam discovers he holds the key that could destroy humankind.", "video": false, "id": 100241, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I, Frankenstein", "tagline": "In the battle between good and evil, an immortal holds the key", "vote_count": 257, "homepage": "http://www.ifrankensteinfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1418377", "adult": false, "backdrop_path": "/rzzabQ2HNUDil53Zfueu0iyasgB.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Hopscotch Films", "id": 13788}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Lionsgate", "id": 1632}], "release_date": "2014-01-24", "popularity": 1.7272246236138, "original_title": "I, Frankenstein", "budget": 65000000, "cast": [{"name": "Aaron Eckhart", "character": "Adam", "id": 6383, "credit_id": "52fe49d0c3a36847f81a7b4b", "cast_id": 1, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Yvonne Strahovski", "character": "Terra", "id": 63312, "credit_id": "52fe49d0c3a36847f81a7b4f", "cast_id": 2, "profile_path": "/mgcaJaKhZtakVldW2KXYXhQ6ZJY.jpg", "order": 1}, {"name": "Bill Nighy", "character": "Naberius", "id": 2440, "credit_id": "52fe49d0c3a36847f81a7b53", "cast_id": 3, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 2}, {"name": "Jai Courtney", "character": "Gideon", "id": 224181, "credit_id": "52fe49d0c3a36847f81a7b57", "cast_id": 4, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 3}, {"name": "Miranda Otto", "character": "Leonore", "id": 502, "credit_id": "52fe49d0c3a36847f81a7b5b", "cast_id": 5, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 4}, {"name": "Caitlin Stasey", "character": "Keziah", "id": 145245, "credit_id": "52fe49d0c3a36847f81a7b5f", "cast_id": 6, "profile_path": "/7eE8VYl2oej8jpNaWqsrAJxCXYM.jpg", "order": 5}, {"name": "Kevin Grevioux", "character": "Dekar", "id": 3952, "credit_id": "52fe49d0c3a36847f81a7b63", "cast_id": 7, "profile_path": "/eP1P9jxMBiI1a6cQHlChNdDALKY.jpg", "order": 6}, {"name": "Aden Young", "character": "Dr. Frankenstein", "id": 144081, "credit_id": "52fe49d0c3a36847f81a7b67", "cast_id": 8, "profile_path": "/yXvlTjXdrMqEtHnL1pofXWNjFCJ.jpg", "order": 7}, {"name": "Deniz Akdeniz", "character": "Barachel", "id": 145246, "credit_id": "52fe49d0c3a36847f81a7b6b", "cast_id": 9, "profile_path": "/4ONfe9SHo6N3hkJyJ61qHJevJPJ.jpg", "order": 8}, {"name": "Chris Pang", "character": "Levi", "id": 145248, "credit_id": "52fe49d0c3a36847f81a7b6f", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Socratis Otto", "character": "Zuriel", "id": 75174, "credit_id": "52fe49d0c3a36847f81a7b73", "cast_id": 11, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 10}, {"name": "Steve Mouzakis", "character": "Helek", "id": 187494, "credit_id": "52fe49d1c3a36847f81a7bef", "cast_id": 33, "profile_path": "/z5GjGHH4h5UQOof7bfyPR05Fwl8.jpg", "order": 11}, {"name": "Bruce Spence", "character": "Molokai", "id": 27752, "credit_id": "52fe49d1c3a36847f81a7bf3", "cast_id": 34, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 12}, {"name": "Mahesh Jadu", "character": "Ophir", "id": 1386458, "credit_id": "546a615deaeb816b46003d97", "cast_id": 54, "profile_path": "/gfcZiYji4x3tjGQq7vTK8goz40D.jpg", "order": 13}], "directors": [{"name": "Stuart Beattie", "department": "Directing", "job": "Director", "credit_id": "52fe49d0c3a36847f81a7b79", "profile_path": null, "id": 1707}], "vote_average": 5.4, "runtime": 92}, "3432": {"poster_path": "/atLwYVquG4YrGEk06tx9tJuTcN5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41637263, "overview": "A psychological thriller about a man who is sometimes controlled by his murder-and-mayhem-loving alter ego.", "video": false, "id": 3432, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mr. Brooks", "tagline": "The man who has everything has everything to hide.", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780571", "adult": false, "backdrop_path": "/yJjvkbIZesG6ViXDsOLOufmTEIX.jpg", "production_companies": [{"name": "Tig Productions", "id": 335}, {"name": "Element Films", "id": 2274}, {"name": "Relativity Media", "id": 7295}, {"name": "Eden Rock Media", "id": 2273}], "release_date": "2007-06-01", "popularity": 0.932032185974799, "original_title": "Mr. Brooks", "budget": 20000000, "cast": [{"name": "Kevin Costner", "character": "Earl Brooks", "id": 1269, "credit_id": "52fe4393c3a36847f805ef49", "cast_id": 13, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Demi Moore", "character": "Det. Tracy Atwood", "id": 3416, "credit_id": "52fe4393c3a36847f805ef4d", "cast_id": 14, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Dane Cook", "character": "Mr. Smith", "id": 31837, "credit_id": "52fe4393c3a36847f805ef51", "cast_id": 15, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 2}, {"name": "William Hurt", "character": "Marshall", "id": 227, "credit_id": "52fe4393c3a36847f805ef55", "cast_id": 16, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Marg Helgenberger", "character": "Emma Brooks", "id": 19838, "credit_id": "52fe4393c3a36847f805ef59", "cast_id": 17, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 4}, {"name": "Danielle Panabaker", "character": "Jane Brooks", "id": 31838, "credit_id": "52fe4393c3a36847f805ef5d", "cast_id": 18, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 5}, {"name": "Ruben Santiago-Hudson", "character": "Hawkins", "id": 31839, "credit_id": "52fe4393c3a36847f805ef61", "cast_id": 19, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 6}, {"name": "Reiko Aylesworth", "character": "Sheila", "id": 25869, "credit_id": "52fe4394c3a36847f805ef65", "cast_id": 20, "profile_path": "/59Gu57v2rOtvvBA06rSuYX2w5h2.jpg", "order": 7}, {"name": "Matt Schulze", "character": "Meeks", "id": 31841, "credit_id": "52fe4394c3a36847f805ef69", "cast_id": 21, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 8}, {"name": "Yasmine Delawari", "character": "Sunday", "id": 31842, "credit_id": "52fe4394c3a36847f805ef6d", "cast_id": 22, "profile_path": "/v1sRdrzXc9mpzQT30PUC03tcrvE.jpg", "order": 9}, {"name": "Jason Lewis", "character": "Jesse Vialo", "id": 32224, "credit_id": "52fe4394c3a36847f805ef71", "cast_id": 23, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 10}, {"name": "Lindsay Crouse", "character": "Captain Lister", "id": 32225, "credit_id": "52fe4394c3a36847f805ef75", "cast_id": 24, "profile_path": "/mAZTWVbtfmC0R4R6TZ3rjhJSW0b.jpg", "order": 11}], "directors": [{"name": "Bruce A. Evans", "department": "Directing", "job": "Director", "credit_id": "52fe4393c3a36847f805ef03", "profile_path": null, "id": 3028}], "vote_average": 6.8, "runtime": 120}, "241254": {"poster_path": "/y7jSioitJoolDvn29D0yLJLCk30.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 266586800, "overview": "A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.", "video": false, "id": 241254, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Prince", "tagline": "Mercy is for the Weak", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1085492", "adult": false, "backdrop_path": "/bnACOELViX2XwXjqzC8V5TclrPY.jpg", "production_companies": [{"name": "Oasis Films", "id": 33831}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Aperture Entertainment", "id": 33832}, {"name": "Grindstone Entertainment Group", "id": 3604}], "release_date": "2014-08-22", "popularity": 2.31779630657599, "original_title": "The Prince", "budget": 18000000, "cast": [{"name": "Bruce Willis", "character": "Omar", "id": 62, "credit_id": "52fe4eb5c3a36847f82a2cbb", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Jason Patric", "character": "Paul", "id": 12261, "credit_id": "52fe4eb5c3a36847f82a2cbf", "cast_id": 5, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 1}, {"name": "John Cusack", "character": "Sam", "id": 3036, "credit_id": "52fe4eb5c3a36847f82a2cc3", "cast_id": 6, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 2}, {"name": "Jessica Lowndes", "character": "Angela", "id": 84698, "credit_id": "52fe4eb5c3a36847f82a2cd7", "cast_id": 11, "profile_path": "/9zFdY2ZE9ue5yJmpkQBF7B06JtQ.jpg", "order": 3}, {"name": "Gia Mantegna", "character": "Beth", "id": 137424, "credit_id": "52fe4eb5c3a36847f82a2ccf", "cast_id": 9, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 4}, {"name": "Rain", "character": "Mark", "id": 112013, "credit_id": "52fe4eb5c3a36847f82a2cd3", "cast_id": 10, "profile_path": "/7oLrI71PNp9iGwJkgr2Bq34t2Yt.jpg", "order": 5}, {"name": "50 Cent", "character": "The Pharmacy", "id": 62644, "credit_id": "52fe4eb5c3a36847f82a2cc7", "cast_id": 7, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 6}, {"name": "Don Harvey", "character": "Riley", "id": 1280, "credit_id": "54146c6bc3a3687dc1001f88", "cast_id": 12, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 7}, {"name": "Jesse Pruett", "character": "Wilson", "id": 139197, "credit_id": "54146c77c3a3687dc8001f4c", "cast_id": 13, "profile_path": "/8VBlaffStPHz89oXnki14Gv2Yw6.jpg", "order": 8}, {"name": "Didi Costine", "character": "Rachel", "id": 1363621, "credit_id": "54146c9ac3a3687db2001f6e", "cast_id": 14, "profile_path": "/vLvKAgC1bmGO85zdhTcMwgc8KPN.jpg", "order": 9}, {"name": "Bonnie Somerville", "character": "Susan", "id": 66579, "credit_id": "54146cacc3a3687dc5002067", "cast_id": 15, "profile_path": "/a1tjNEX8Tm5WupP9vEdRnpW2s45.jpg", "order": 10}, {"name": "Tim Fields", "character": "Jimmy", "id": 125332, "credit_id": "54146cb6c3a3687dc8001f5a", "cast_id": 16, "profile_path": "/zzAvH0kNodbKqCxAakIKmaot7sc.jpg", "order": 11}, {"name": "Jonathon Schaech", "character": "Frank", "id": 1276378, "credit_id": "52fe4eb5c3a36847f82a2ccb", "cast_id": 8, "profile_path": "/xZcjqEqfDes0xYZDcqgrZdMbX0N.jpg", "order": 12}, {"name": "Andrea Burns", "character": "Janine", "id": 1363622, "credit_id": "54146cdc0e0a2619a4001f79", "cast_id": 17, "profile_path": "/iH4UC5DrjSKkZOaxj3zc0nPCqOp.jpg", "order": 13}, {"name": "Jim Bennett", "character": "Justin", "id": 1363623, "credit_id": "54146cf30e0a26199b001f44", "cast_id": 18, "profile_path": "/22twthSNUZ5uApgi0b7bczm3A5c.jpg", "order": 14}, {"name": "Johnathon Schaech", "character": "Frank", "id": 51670, "credit_id": "5471e007c3a3681be5000503", "cast_id": 41, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 15}, {"name": "Tyler J. Olson", "character": "Eddie", "id": 1388479, "credit_id": "54720187c3a36833ad000e29", "cast_id": 42, "profile_path": "/LFjGtC3gg0XHBRyEZGk8DR5CTq.jpg", "order": 16}, {"name": "Jonathan Carkeek", "character": "Mitch", "id": 1388480, "credit_id": "547202df92514112ee007bf9", "cast_id": 43, "profile_path": "/oOzTLHtD4ObZHeSGP6SgB1AuWzA.jpg", "order": 17}, {"name": "Jay Oringer", "character": "Brickyard Bouncer", "id": 1388482, "credit_id": "547203799251413813004412", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Tara Holt", "character": "Candice", "id": 1006733, "credit_id": "547204bd9251410ebc00133c", "cast_id": 45, "profile_path": "/iq7yIZgfHbin1qR3sDOtaWIuWfW.jpg", "order": 19}, {"name": "Andrew Wert", "character": "Facetime Stranger", "id": 1388484, "credit_id": "5472078592514112ee007c96", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Danielle Phelan", "character": "Junky Girlfriend", "id": 1388485, "credit_id": "54720934c3a3681be5000afd", "cast_id": 47, "profile_path": "/iIF1YotDzxVABDpVwT6QJly7NzU.jpg", "order": 21}, {"name": "David Gordon", "character": "Omar's Head of Security", "id": 1388486, "credit_id": "547209f49251415cfc00003b", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "Martin Blencowe", "character": "Bartender", "id": 1113450, "credit_id": "54720b20c3a3686fc0000418", "cast_id": 49, "profile_path": null, "order": 23}, {"name": "Courtney B Turk", "character": "Meagan", "id": 1267285, "credit_id": "54720c939251413813004515", "cast_id": 50, "profile_path": "/r8a4Qahyxdb4A5F5l9MkcUGZfi2.jpg", "order": 24}], "directors": [{"name": "Brian A. Miller", "department": "Directing", "job": "Director", "credit_id": "5422234bc3a368087200042a", "profile_path": null, "id": 81613}], "vote_average": 5.1, "runtime": 93}, "11631": {"poster_path": "/gOm2iMMbC6EonrFzmSQ8xvCa4Ei.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 602609487, "overview": "Set on an idyllic Greek island, the plot serves as a background for a wealth of ABBA hit songs. Donna, an independent, single mother who owns a small hotel on the island is about to let go of Sophie, the spirited young daughter she's raised alone. But Sophie has secretly invited three of her mother's ex-lovers in the hopes of finding her father.", "video": false, "id": 11631, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Mamma Mia!", "tagline": "Take a trip down the aisle you'll never forget", "vote_count": 323, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt0795421", "adult": false, "backdrop_path": "/txtRue33MaXv5HQpTiHPOmOcDxE.jpg", "production_companies": [{"name": "Internationale Filmproduktion Richter", "id": 2655}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Littlestar", "id": 34441}, {"name": "Playtone", "id": 4171}], "release_date": "2008-06-30", "popularity": 1.60405854576855, "original_title": "Mamma Mia!", "budget": 52000000, "cast": [{"name": "Meryl Streep", "character": "Donna", "id": 5064, "credit_id": "52fe446c9251416c7503427f", "cast_id": 6, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Pierce Brosnan", "character": "Sam Carmichael", "id": 517, "credit_id": "52fe446c9251416c7503427b", "cast_id": 5, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 1}, {"name": "Amanda Seyfried", "character": "Sophie", "id": 71070, "credit_id": "52fe446c9251416c75034273", "cast_id": 3, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 2}, {"name": "Colin Firth", "character": "Harry Bright", "id": 5472, "credit_id": "52fe446c9251416c7503428b", "cast_id": 10, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 3}, {"name": "Stellan Skarsg\u00e5rd", "character": "Bill", "id": 1640, "credit_id": "52fe446c9251416c75034277", "cast_id": 4, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 4}, {"name": "Julie Walters", "character": "Rosie", "id": 477, "credit_id": "52fe446c9251416c75034283", "cast_id": 7, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 5}, {"name": "Christine Baranski", "character": "Tanya", "id": 11870, "credit_id": "52fe446c9251416c75034287", "cast_id": 8, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 6}, {"name": "Nancy Baldwin", "character": "Sam's PA", "id": 71072, "credit_id": "52fe446c9251416c7503428f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Enzo Squillino, Jr.", "character": "Gregoris", "id": 71073, "credit_id": "52fe446c9251416c75034293", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Rachel McDowall", "character": "Lisa", "id": 127000, "credit_id": "52fe446c9251416c750342d9", "cast_id": 25, "profile_path": "/7nU3c5o386U1EMGJoMbLNtTKcv0.jpg", "order": 10}, {"name": "Dominic Cooper", "character": "Sky", "id": 55470, "credit_id": "52fe446c9251416c750342e3", "cast_id": 27, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 11}, {"name": "Helen Soraya", "character": "Hen", "id": 1105459, "credit_id": "52fe446c9251416c750342e7", "cast_id": 28, "profile_path": "/sdjlyzUXrx5qAZ0cMISZjnLwvTX.jpg", "order": 12}], "directors": [{"name": "Phyllida Lloyd", "department": "Directing", "job": "Director", "credit_id": "52fe446c9251416c75034269", "profile_path": "/jNZ2wVL5lsFvM6pPmRGFWI4SFvm.jpg", "id": 71068}], "vote_average": 6.1, "runtime": 108}, "19824": {"poster_path": "/sJgbsheX4wV1qukwjOyXMFCdT5B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It is freshman year at Coolidge College and Van Wilder is ready to party. To his dismay, all the girls have taken a vow of chastity and the dean rules the school. Van embarks on a crusade to land the campus hottie, Kaitlin, and liberate his school from sexual oppression and party dysfunction.", "video": false, "id": 19824, "genres": [{"id": 35, "name": "Comedy"}], "title": "Van Wilder: Freshman Year", "tagline": "The man. The myth. The beginning.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fvkR1SE5i1qUVHM5vewIf9jozcu.jpg", "poster_path": "/phxBWdWHgtUpns0XU33JbBKMgsx.jpg", "id": 43220, "name": "National Lampoon\u2019s Van Wilder Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1276434", "adult": false, "backdrop_path": "/u3pQOLr9KrsMaPxmtvFDUM0Sh6Y.jpg", "production_companies": [{"name": "Tapestry Films", "id": 870}, {"name": "Paramount Home Entertainment", "id": 6548}], "release_date": "2009-06-02", "popularity": 0.270929671330702, "original_title": "Van Wilder: Freshman Year", "budget": 0, "cast": [{"name": "Jonathan Bennett", "character": "Van Wilder", "id": 76996, "credit_id": "52fe47f29251416c750aace9", "cast_id": 3, "profile_path": "/7IdoFyD20nGmfb1eh8AW71htRJM.jpg", "order": 0}, {"name": "Kristin Cavallari", "character": "Kaitlin", "id": 85206, "credit_id": "52fe47f29251416c750aaced", "cast_id": 4, "profile_path": "/9AKiX4cyuiLZczDb7dP5QRT7bKR.jpg", "order": 1}, {"name": "Jerry Shea", "character": "Yu Dum Fok", "id": 85207, "credit_id": "52fe47f29251416c750aacf1", "cast_id": 5, "profile_path": "/wj8dWwT2jq0qfZZbkdfFjZkQQUe.jpg", "order": 2}, {"name": "Nestor Aaron Absera", "character": "Farley", "id": 85208, "credit_id": "52fe47f29251416c750aacf5", "cast_id": 6, "profile_path": "/pS8XnZ3GfbZpCVmH3DEyTJaZN4t.jpg", "order": 3}, {"name": "Steve Talley", "character": "Dick Arnold", "id": 26975, "credit_id": "52fe47f29251416c750aacf9", "cast_id": 7, "profile_path": "/k0T00nPOY7K0Wocd5l7gfjoTJHF.jpg", "order": 4}, {"name": "Nic Nac", "character": "Corporal Benedict", "id": 27019, "credit_id": "52fe47f29251416c750aacfd", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Meredith Giangrande", "character": "Eve", "id": 85209, "credit_id": "52fe47f29251416c750aad01", "cast_id": 9, "profile_path": "/gnmwYYkvLMdIZhepxlesbViKqid.jpg", "order": 6}], "directors": [{"name": "Harvey Glazer", "department": "Directing", "job": "Director", "credit_id": "52fe47f29251416c750aacdf", "profile_path": null, "id": 62658}], "vote_average": 5.2, "runtime": 100}, "11633": {"poster_path": "/dyROof1YUhe0eul1P1js6ghYtkQ.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 1461989, "overview": "In a utopian society created at the end of the third world war, a female warrior who has been plucked from the badlands begins to see cracks in this new facade. And what does this community have planned for the rest of humankind?", "video": false, "id": 11633, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Appleseed", "tagline": "Humanity's last chance for survival!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3uFYlHmUZtEGBiwdxtSlphbmfjK.jpg", "poster_path": "/AoM1NzRnSpo6VtIs3wpzKUSObUX.jpg", "id": 87800, "name": "Appleseed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0401233", "adult": false, "backdrop_path": "/2ynxC25bh0lTazbCcUv6n1MTOjj.jpg", "production_companies": [{"name": "Toho Company", "id": 882}, {"name": "Tokyo Broadcasting System (TBS)", "id": 1393}, {"name": "Digital Frontier", "id": 3361}, {"name": "Geneon Entertainment", "id": 3362}, {"name": "Mainichi Broadcasting System (MBS)", "id": 3363}, {"name": "Micott Basara K.K.", "id": 3364}, {"name": "TYO Productions", "id": 3365}, {"name": "Appleseed Film Partners", "id": 3360}], "release_date": "2004-04-17", "popularity": 0.678921886874346, "original_title": "\u30a2\u30c3\u30d7\u30eb\u30b7\u30fc\u30c9", "budget": 10000000, "cast": [{"name": "Ai Kobayashi", "character": "Deunan", "id": 68918, "credit_id": "52fe446c9251416c750343e3", "cast_id": 1, "profile_path": "/90iLbU0MZ4gQ9ddi8Sf0wMSPoTE.jpg", "order": 0}, {"name": "J\u016br\u014dta Kosugi", "character": "Briareos", "id": 70098, "credit_id": "52fe446c9251416c750343e7", "cast_id": 2, "profile_path": "/nMj0Pt1i8lbPGeWlIE5rFIXYiII.jpg", "order": 1}, {"name": "Yuki Matsuoka", "character": "Hitomi", "id": 70099, "credit_id": "52fe446c9251416c750343eb", "cast_id": 3, "profile_path": "/9O23DQ0wRBDMaqJ2KdO0GDliegp.jpg", "order": 2}, {"name": "Asumi Miwa", "character": "Deunan (motion actor)", "id": 20313, "credit_id": "52fe446c9251416c750343ef", "cast_id": 4, "profile_path": "/gH3uNPWNNFQgsSCHhD3OrcdmzQq.jpg", "order": 3}, {"name": "Mami Koyama", "character": "Athena", "id": 1680, "credit_id": "52fe446c9251416c750343f3", "cast_id": 5, "profile_path": "/vqdcJrnO2VMMxyvg7j5Pft0dhmn.jpg", "order": 4}, {"name": "Akimoto Tsubasa", "character": "Deunan (motion actor)", "id": 1120475, "credit_id": "52fe446c9251416c75034463", "cast_id": 24, "profile_path": null, "order": 5}, {"name": "Yuzuru Fujimoto", "character": "Uranus", "id": 114739, "credit_id": "52fe446c9251416c75034467", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Tomoko Kawakami", "character": "Young Deunan", "id": 124476, "credit_id": "52fe446d9251416c7503446b", "cast_id": 26, "profile_path": "/4drohdK6CqiGtlQcD8Makj5O28E.jpg", "order": 7}, {"name": "Takehito Koyasu", "character": "Hades", "id": 84508, "credit_id": "52fe446d9251416c7503446f", "cast_id": 27, "profile_path": "/cReYEHxQj6JdLb7bNSUfrGYn44F.jpg", "order": 8}, {"name": "Toshiyuki Morikawa", "character": "Yoshitsune", "id": 9706, "credit_id": "52fe446d9251416c75034473", "cast_id": 28, "profile_path": "/aAmwmPXJBnwTnvWVDx74OdNGo8q.jpg", "order": 9}, {"name": "Ry\u00fbji Nakagi", "character": "1st Elder Electryon", "id": 1120476, "credit_id": "52fe446d9251416c75034477", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Ikuo Nishikawa", "character": "Seven Old Men", "id": 1120477, "credit_id": "52fe446d9251416c7503447b", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Shinji Aramaki", "department": "Directing", "job": "Director", "credit_id": "52fe446c9251416c750343f9", "profile_path": null, "id": 70100}], "vote_average": 6.8, "runtime": 101}, "11635": {"poster_path": "/lvcyZumUoA6OBeqcJknfZVTmKKF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87055349, "overview": "Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.", "video": false, "id": 11635, "genres": [{"id": 35, "name": "Comedy"}], "title": "Old School", "tagline": "All the fun of college, none of the education.", "vote_count": 101, "homepage": "http://www.oldschool-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0302886", "adult": false, "backdrop_path": "/ixpnr4IeYWiuPfPcLPnoy8xNQC6.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "The Montecito Picture Company", "id": 2364}], "release_date": "2003-02-21", "popularity": 0.978536282028428, "original_title": "Old School", "budget": 24000000, "cast": [{"name": "Luke Wilson", "character": "Mitch Martin \u201eThe Godfather\u201c", "id": 36422, "credit_id": "52fe446d9251416c75034583", "cast_id": 13, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Frank \"The Tank\u201c", "id": 23659, "credit_id": "52fe446d9251416c75034587", "cast_id": 14, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Beanie", "id": 4937, "credit_id": "52fe446d9251416c7503458b", "cast_id": 15, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Ellen Pompeo", "character": "Nicole", "id": 9280, "credit_id": "52fe446d9251416c7503458f", "cast_id": 16, "profile_path": "/iX5HdQdWRPLf5Fx87QDNCdehmI9.jpg", "order": 3}, {"name": "Leah Remini", "character": "Lara Campbell", "id": 15050, "credit_id": "52fe446d9251416c75034593", "cast_id": 17, "profile_path": "/bb8HtfAJQSUt0KPwhd46sZ7yupX.jpg", "order": 4}, {"name": "Elisha Cuthbert", "character": "Darcie", "id": 25837, "credit_id": "52fe446d9251416c75034597", "cast_id": 18, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 5}, {"name": "Jeremy Piven", "character": "Dean Gordon \"Cheese\" Pritchard", "id": 12799, "credit_id": "52fe446d9251416c7503459b", "cast_id": 19, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 6}, {"name": "Juliette Lewis", "character": "Heidi", "id": 3196, "credit_id": "52fe446d9251416c7503459f", "cast_id": 20, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 7}, {"name": "Sarah Shahi", "character": "Erica", "id": 164945, "credit_id": "52fe446d9251416c750345a3", "cast_id": 21, "profile_path": "/hTV326FBAlLmHOdPPiXVItCoivR.jpg", "order": 8}, {"name": "Perrey Reeves", "character": "Marissa Jones", "id": 68495, "credit_id": "52fe446d9251416c750345a7", "cast_id": 22, "profile_path": "/fcuYaaYrCjItQzOGzCpL7PDbmSB.jpg", "order": 9}, {"name": "Craig Kilborn", "character": "Mark", "id": 60951, "credit_id": "52fe446d9251416c750345ab", "cast_id": 23, "profile_path": "/mVlE2lpGaKAVCOCoFbKNMouPtsY.jpg", "order": 10}, {"name": "Ashley Jones", "character": "Caterer", "id": 112464, "credit_id": "532c123f9251416e9f000c9f", "cast_id": 24, "profile_path": "/qKzsmyq3tLhCMNTX85XsrCQhNzZ.jpg", "order": 11}, {"name": "Phe Caplan", "character": "Julie", "id": 1244362, "credit_id": "532c13d79251416e8c000d75", "cast_id": 25, "profile_path": "/cI19Yl7uWtPrsc0ul00E5gvrg14.jpg", "order": 12}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe446d9251416c7503453d", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 6.7, "runtime": 91}, "11636": {"poster_path": "/jUt1kFdzwXa1gYYk9jpZ2bHU2Fz.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Sent into a drunken tailspin when his entire unit is killed by a gang of thrill-seeking punks, disgraced Hong Kong police inspector Wing (Jackie Chan) needs help from his new rookie partner, with a troubled past of his own, to climb out of the bottle and track down the gang and its ruthless leader.", "video": false, "id": 11636, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "New Police Story", "tagline": "Failures and suffering make a real hero", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zF4gP4w1xxM7jDKLjTDK3ixkkms.jpg", "id": 269098, "name": "Police Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386005", "adult": false, "backdrop_path": "/llII7YgUqtBbIl8Rkoo8JC56bqs.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}], "release_date": "2004-09-24", "popularity": 0.635137387064611, "original_title": "\u65b0\u8b66\u5bdf\u6545\u4e8b", "budget": 0, "cast": [{"name": "Jackie Chan", "character": "Senior Insp. Chan Kwok-Wing", "id": 18897, "credit_id": "52fe446d9251416c750345e5", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Nicholas Tse", "character": "Zheng Xiaofeng", "id": 70106, "credit_id": "52fe446d9251416c750345e9", "cast_id": 2, "profile_path": "/7nq3EncMV0hRJ1Z2PTWKKulfux8.jpg", "order": 1}, {"name": "Mak Bau", "character": "Negotiator", "id": 70107, "credit_id": "52fe446d9251416c750345ed", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Tak-bun Wong", "character": "Robber", "id": 70108, "credit_id": "52fe446d9251416c750345f1", "cast_id": 4, "profile_path": "/kBauxbwBGLz3RceZ8sLdeqvaVl8.jpg", "order": 3}, {"name": "Andrew Lin", "character": "Hoi, Wing's team member", "id": 130562, "credit_id": "52fe446d9251416c7503463d", "cast_id": 17, "profile_path": "/gFWleSQOWPxFhqirKzUA5GPTasc.jpg", "order": 4}, {"name": "John Shum", "character": "Eric Show", "id": 116906, "credit_id": "52fe446d9251416c75034641", "cast_id": 18, "profile_path": "/v4G13KqlLS97LbEQXD2nF5h6p5D.jpg", "order": 5}, {"name": "Daniel Wu", "character": "Joe Kwan", "id": 64436, "credit_id": "52fe446d9251416c75034645", "cast_id": 19, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 6}, {"name": "Coco Chiang Yi", "character": "Sue Chow", "id": 1139048, "credit_id": "52fe446d9251416c75034649", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Terence Yin", "character": "Fire", "id": 74196, "credit_id": "52fe446d9251416c7503464d", "cast_id": 21, "profile_path": "/tmkFxlLN2fLMj2qrwzicpgW9lhG.jpg", "order": 8}, {"name": "Andy On", "character": "Tin Tin Law", "id": 63585, "credit_id": "52fe446d9251416c75034651", "cast_id": 22, "profile_path": "/sv74TXme3jxPm9a4fXKdj3rAWGE.jpg", "order": 9}, {"name": "Hiro Hayama", "character": "Max Leung", "id": 1039927, "credit_id": "52fe446d9251416c75034655", "cast_id": 23, "profile_path": "/3KOFiv9bExx0cjuC7OBd6AnakvJ.jpg", "order": 10}, {"name": "Charlene Choi", "character": "Sa Sa", "id": 64434, "credit_id": "52fe446d9251416c75034659", "cast_id": 24, "profile_path": "/ccmVWQu5cea5zuOxUjBWH8vztZf.jpg", "order": 11}, {"name": "Asuka Higuchi", "character": "Kwong's Wife", "id": 224059, "credit_id": "52fe446d9251416c7503465d", "cast_id": 25, "profile_path": "/7wL2GxcysGfh5WAfCrevdz0PBQq.jpg", "order": 12}, {"name": "Charlie Yeung", "character": "Sun Ho Yee", "id": 66762, "credit_id": "52fe446d9251416c75034661", "cast_id": 26, "profile_path": "/lImfxZvj75ietpOR9NZC8zXmuco.jpg", "order": 13}, {"name": "Carl Ng", "character": "Carl", "id": 137146, "credit_id": "53053c3b925141348b06d184", "cast_id": 27, "profile_path": "/73qKbSPCjiCPWrTLdcjRxv9XOVT.jpg", "order": 14}], "directors": [{"name": "Benny Chan", "department": "Directing", "job": "Director", "credit_id": "52fe446d9251416c750345f7", "profile_path": "/g8DGwrVSCOpBv0VcjqBmpFtHB2Y.jpg", "id": 70109}], "vote_average": 6.9, "runtime": 123}, "11637": {"poster_path": "/lYaZg12UTcajdV402KG5owNlQFS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The fledgling romance between Nick, a playboy bachelor, and Suzanne, a divorced mother of two, is threatened by a particularly harrowing New Years Eve. When Suzanne's work keeps her in Vancouver for the holiday, Nick offers to bring her kids to the city from Portland, Oregon. The kids, who have never liked any of the men their mom dates, are determined to turn the trip into a nightmare for Nick.", "video": false, "id": 11637, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Are We There Yet?", "tagline": "24 hours. 350 miles. His girlfriend's kids. What could possibly go wrong?", "vote_count": 52, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/gYmkExt7SbDKKdraUJJ6AsbWq4m.jpg", "id": 176118, "name": "The Are We Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368578", "adult": false, "backdrop_path": "/eTkZcuDIGO9VdBCqUpgpJPtkADl.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Cube Vision", "id": 2780}], "release_date": "2005-01-21", "popularity": 0.440574614476338, "original_title": "Are We There Yet?", "budget": 32000000, "cast": [{"name": "Ice Cube", "character": "Nick Persons", "id": 9778, "credit_id": "52fe446d9251416c7503468d", "cast_id": 1, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Nia Long", "character": "Suzanne Kingston", "id": 9781, "credit_id": "52fe446d9251416c75034691", "cast_id": 2, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 1}, {"name": "Aleisha Allen", "character": "Lindsey Kingston", "id": 64064, "credit_id": "52fe446d9251416c75034695", "cast_id": 3, "profile_path": "/i36hnsQITuPz6xuMMEzvPaAaUYT.jpg", "order": 2}, {"name": "Philip Bolden", "character": "Kevin Kingston", "id": 64066, "credit_id": "52fe446d9251416c75034699", "cast_id": 4, "profile_path": "/y6mmwYgkQoJeKzRPHfLoB1rpFOQ.jpg", "order": 3}, {"name": "Jay Mohr", "character": "Marty", "id": 12217, "credit_id": "52fe446d9251416c7503469d", "cast_id": 5, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 4}, {"name": "M.C. Gainey", "character": "Al", "id": 22132, "credit_id": "52fe446d9251416c750346a1", "cast_id": 6, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 5}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe446d9251416c750346a7", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.2, "runtime": 95}, "77174": {"poster_path": "/AtenrJ8HptJOOtvJJwxu4nbo3es.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the town of Blithe Hollow, Norman Babcock is a boy who can speak to the dead, but no one besides his eccentric new friend, Neil, believes his ability is real. One day, Norman's estranged eccentric uncle tells him of an important annual ritual he must take up to protect the town from an curse cast by a witch it condemned centuries ago. Eventually, Norman decides to cooperate, but things don't go according to plan. Now, a magic storm of the witch threatens Blithe Hollow as the accursed dead rise. Together with unexpected new companions, Norman struggles to save his town, only to discover the horrific truth of the curse. With that insight, Norman must resolve the crisis for good as only he can.", "video": false, "id": 77174, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "ParaNorman", "tagline": "It's all fun and games until someone raises the dead.", "vote_count": 324, "homepage": "http://paranorman.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1623288", "adult": false, "backdrop_path": "/tTSXZG8uHc0olcq9gOneDgLQL5G.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Laika Entertainment", "id": 11537}], "release_date": "2012-08-17", "popularity": 1.10632068237223, "original_title": "ParaNorman", "budget": 0, "cast": [{"name": "Anna Kendrick", "character": "Courtney", "id": 84223, "credit_id": "52fe4961c3a368484e1284e5", "cast_id": 4, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "John Goodman", "character": "Mr. Prenderghast", "id": 1230, "credit_id": "52fe4961c3a368484e1284e9", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Sandra Babcock", "id": 41087, "credit_id": "52fe4961c3a368484e1284ed", "cast_id": 6, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Casey Affleck", "character": "Mitch", "id": 1893, "credit_id": "52fe4961c3a368484e1284f1", "cast_id": 7, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 3}, {"name": "Jodelle Ferland", "character": "Aggie", "id": 8338, "credit_id": "52fe4961c3a368484e1284f5", "cast_id": 8, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 4}, {"name": "Christopher Mintz-Plasse", "character": "Alvin", "id": 54691, "credit_id": "52fe4961c3a368484e1284f9", "cast_id": 9, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 5}, {"name": "Kodi Smit-McPhee", "character": "Norman Babcock", "id": 113505, "credit_id": "52fe4961c3a368484e1284fd", "cast_id": 10, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 6}, {"name": "Bernard Hill", "character": "The Judge", "id": 1369, "credit_id": "52fe4961c3a368484e128501", "cast_id": 11, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 7}, {"name": "Tucker Albrizzi", "character": "Neil", "id": 558925, "credit_id": "52fe4961c3a368484e128505", "cast_id": 12, "profile_path": "/jeivgdxm1gDFP8ECJe4HM5p0bdM.jpg", "order": 8}, {"name": "Alicia Lagano", "character": "Female Tourist", "id": 105659, "credit_id": "52fe4961c3a368484e128515", "cast_id": 15, "profile_path": "/6G4A6EHGgWe2xBV1dgMNrrMtMnB.jpg", "order": 9}, {"name": "Jeremy Shada", "character": "Pug", "id": 204131, "credit_id": "52fe4961c3a368484e128519", "cast_id": 16, "profile_path": "/oyBtYOnOCSp2yX8shxqoQsqtBF9.jpg", "order": 10}, {"name": "Scott Menville", "character": "Deputy Dwayne, Rapper G", "id": 113916, "credit_id": "52fe4961c3a368484e12851d", "cast_id": 17, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 11}, {"name": "Ariel Winter", "character": "Blithe Hollow Kid", "id": 42160, "credit_id": "52fe4961c3a368484e128521", "cast_id": 18, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 12}, {"name": "Alex Borstein", "character": "Mrs. Henscher", "id": 24357, "credit_id": "52fe4961c3a368484e128525", "cast_id": 19, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 13}, {"name": "Tempestt Bledsoe", "character": "Sheriff Hooper", "id": 92087, "credit_id": "52fe4961c3a368484e128529", "cast_id": 20, "profile_path": "/ysoE7INLaDrYOsUlhdodD3Om3ke.jpg", "order": 14}, {"name": "Denise Faye", "character": "Blithe Hollow Townspers", "id": 17641, "credit_id": "52fe4961c3a368484e12852d", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Elaine Stritch", "character": "Grandma", "id": 36802, "credit_id": "52fe4961c3a368484e128531", "cast_id": 22, "profile_path": "/4QGJE8HwbJXdb7MrsINR8zJtDzp.jpg", "order": 16}], "directors": [{"name": "Sam Fell", "department": "Directing", "job": "Director", "credit_id": "52fe4961c3a368484e1284db", "profile_path": "/29NFQubb9A5OrA9OyXhnX4eOfkv.jpg", "id": 58897}, {"name": "Chris Butler", "department": "Directing", "job": "Director", "credit_id": "53285c2ac3a36831700028e3", "profile_path": "/1Og4LcnyrdHfWl6nYEtxLbPHjqn.jpg", "id": 154705}], "vote_average": 6.5, "runtime": 90}, "11639": {"poster_path": "/12g8mn6jfU4Hyqi81ot9oRR5hvy.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40577001, "overview": "On another planet in the distant past, a Gelfling embarks on a quest to find the missing shard of a magical crystal and restore order to his world, before the grotesque race of Skeksis find and use the crystal for evil.", "video": false, "id": 11639, "genres": [{"id": 14, "name": "Fantasy"}], "title": "The Dark Crystal", "tagline": "Another World, Another Time... In the Age of Wonder.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083791", "adult": false, "backdrop_path": "/lQBbbNOUvFVlKciHBGp8bNqZKbx.jpg", "production_companies": [{"name": "Henson Associates (HA)", "id": 24931}, {"name": "Incorporated Television Company (ITC)", "id": 15980}, {"name": "Jim Henson Productions", "id": 2504}], "release_date": "1982-12-17", "popularity": 0.356180876488691, "original_title": "The Dark Crystal", "budget": 15000000, "cast": [{"name": "Jim Henson", "character": "Jen", "id": 55983, "credit_id": "52fe446e9251416c750347bf", "cast_id": 1, "profile_path": "/nnPQ50zVkY9JnFUx4Hjtptn4j4p.jpg", "order": 0}, {"name": "Kathryn Mullen", "character": "Kira", "id": 70772, "credit_id": "52fe446e9251416c750347c3", "cast_id": 2, "profile_path": "/4ycUqVxLCHRr1auJbO5obm6ruXO.jpg", "order": 1}, {"name": "Frank Oz", "character": "Aughra, A Keeper Of Secrets / Chamberlain", "id": 7908, "credit_id": "52fe446e9251416c750347c7", "cast_id": 3, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 2}, {"name": "Dave Goelz", "character": "Fizzgig, A Friendly Monster", "id": 64181, "credit_id": "52fe446e9251416c750347cb", "cast_id": 4, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 3}, {"name": "Steve Whitmire", "character": "Scientist", "id": 64180, "credit_id": "52fe446e9251416c750347cf", "cast_id": 5, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 4}, {"name": "Brian Muehl", "character": "Ornamentalist", "id": 219193, "credit_id": "52fe446e9251416c75034809", "cast_id": 17, "profile_path": "/7vjz1b6MbZhJOySwgHPgWcuY1oB.jpg", "order": 5}, {"name": "Stephen Garlick", "character": "Jen (voice)", "id": 202729, "credit_id": "52fe446e9251416c7503480d", "cast_id": 18, "profile_path": "/tkPwFOAh7gYORkWg6fRWfwJIG1E.jpg", "order": 6}, {"name": "Lisa Maxwell", "character": "Kira (voice)", "id": 174420, "credit_id": "52fe446e9251416c75034811", "cast_id": 19, "profile_path": "/vbLunmlwQ2dxAwQHQNq0QOpU9IS.jpg", "order": 7}, {"name": "Billie Whitelaw", "character": "Aughra (voice)", "id": 8226, "credit_id": "52fe446e9251416c75034815", "cast_id": 20, "profile_path": "/5XSUS3oSuG2CtJQPiEBQd9AAmg4.jpg", "order": 8}, {"name": "Percy Edwards", "character": "Fizzgig (voice)", "id": 193526, "credit_id": "52fe446e9251416c75034819", "cast_id": 21, "profile_path": "/3SmhYOEXmKNwhDMTeH3R3bNPFOf.jpg", "order": 9}, {"name": "Barry Dennen", "character": "Chamberlain / Podling (voice)", "id": 72742, "credit_id": "52fe446e9251416c7503481d", "cast_id": 22, "profile_path": "/zELog0P3l2ikmhZ9TIJmk81FFla.jpg", "order": 10}, {"name": "Michael Kilgarriff", "character": "General (voice)", "id": 184970, "credit_id": "52fe446e9251416c75034821", "cast_id": 23, "profile_path": "/hlE3OsEwaewBm0evupt1eYgVPCr.jpg", "order": 11}, {"name": "Jerry Nelson", "character": "High Priest / Dying Emperor (voice)", "id": 68455, "credit_id": "52fe446e9251416c75034825", "cast_id": 24, "profile_path": "/pJGDnYken7kbxNl9sXGqxgEanP.jpg", "order": 12}, {"name": "Thick Wilson", "character": "Gourmand (voice)", "id": 215334, "credit_id": "52fe446e9251416c75034829", "cast_id": 25, "profile_path": "/aWI35GOw9ZVoFrWTGeQkWNlwpDZ.jpg", "order": 13}, {"name": "John Baddeley", "character": "Historian (voice)", "id": 214813, "credit_id": "52fe446e9251416c7503482d", "cast_id": 26, "profile_path": "/9R6RmSXCjbPlZdPVvs6D5mQrwja.jpg", "order": 14}, {"name": "David Buck", "character": "Slave Master (voice)", "id": 16381, "credit_id": "52fe446e9251416c75034831", "cast_id": 27, "profile_path": "/3H40jRDVkwFQBkNKcltURddMXzI.jpg", "order": 15}, {"name": "Charles Collingwood", "character": "Treasurer (voice)", "id": 158673, "credit_id": "52fe446e9251416c75034835", "cast_id": 28, "profile_path": "/8wYhlvVprOotIN3eXuccSd1pul.jpg", "order": 16}, {"name": "Sean Barrett", "character": "Urzah (voice)", "id": 201459, "credit_id": "52fe446e9251416c75034839", "cast_id": 29, "profile_path": "/gy80mFiwXvp1h7u03qcMCrVMFLd.jpg", "order": 17}, {"name": "Patrick Monckton", "character": "Podling (voice)", "id": 199876, "credit_id": "52fe446e9251416c7503483d", "cast_id": 30, "profile_path": "/tOIU3I8dHNHAhQK9T4MWbebzpI7.jpg", "order": 18}, {"name": "Susan Westerby", "character": "Podling (voice)", "id": 153174, "credit_id": "52fe446e9251416c75034841", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Joseph O'Conor", "character": "Narrator / Urskeks (voice)", "id": 88894, "credit_id": "52fe446e9251416c75034845", "cast_id": 32, "profile_path": "/xdfiiYtYABddyJnZiSllIB8o3yB.jpg", "order": 20}], "directors": [{"name": "Jim Henson", "department": "Directing", "job": "Director", "credit_id": "52fe446e9251416c750347d5", "profile_path": "/nnPQ50zVkY9JnFUx4Hjtptn4j4p.jpg", "id": 55983}, {"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe446e9251416c750347db", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 7.7, "runtime": 93}, "11645": {"poster_path": "/dwYUbrcQAyshW22yoUTzWwwC67b.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 313831, "overview": "A story of greed, a lust for power, and ultimate revenge when an elderly lord abdicates to his three sons, and the two corrupt ones turn against him. A profound examination of the folly of war and the crumbling of one family under the weight of betrayal, greed, and the insatiable thirst for power.", "video": false, "id": 11645, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ran", "tagline": "", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0089881", "adult": false, "backdrop_path": "/3QWR9tyxLtCz7xANh7nyIxYPISp.jpg", "production_companies": [{"name": "Greenwich Film Productions", "id": 1657}, {"name": "Herald Ace", "id": 8886}, {"name": "Nippon Herald Films", "id": 1598}], "release_date": "1985-06-01", "popularity": 0.627885706423483, "original_title": "Ran", "budget": 0, "cast": [{"name": "Akira Terao", "character": "Taro Takatora Ichimonji", "id": 70132, "credit_id": "52fe446f9251416c75034a37", "cast_id": 14, "profile_path": "/pwDc5dwNWbuxWK09vFlUtosDdXe.jpg", "order": 0}, {"name": "Jinpachi Nezu", "character": "Jiro Masatora Ichimonji", "id": 70133, "credit_id": "52fe446f9251416c75034a3b", "cast_id": 15, "profile_path": null, "order": 1}, {"name": "Daisuke Ry\u00fb", "character": "Saburo Naotora Ichimonji", "id": 70134, "credit_id": "52fe446f9251416c75034a3f", "cast_id": 16, "profile_path": "/t1Ua2YadGhhBKo6hxGPsEZV2XcK.jpg", "order": 2}, {"name": "Tatsuya Nakadai", "character": "Lord Hidetora Ichimonji", "id": 70131, "credit_id": "52fe446f9251416c75034a43", "cast_id": 17, "profile_path": "/aVwl2VgqRFaFLWlcGx2fSweZ24d.jpg", "order": 3}, {"name": "Kenji Kodama", "character": "", "id": 552198, "credit_id": "54b0b155925141747e001058", "cast_id": 18, "profile_path": null, "order": 4}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe446f9251416c750349f7", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 7.6, "runtime": 162}, "228161": {"poster_path": "/qrc563yL487g9THjE6lOdsHK0wc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet. But when one resourceful girl, Tip (Rihanna), manages to avoid capture, she finds herself the accidental accomplice of a banished Boov named Oh (Jim Parsons). The two fugitives realize there\u2019s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.", "video": false, "id": 228161, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Home", "tagline": "", "vote_count": 59, "homepage": "http://www.meettheboov.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2224026", "adult": false, "backdrop_path": "/6HoS2Hzcye4xGowSLTf0Pox43QW.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2015-03-27", "popularity": 3.26330986150921, "original_title": "Home", "budget": 132, "cast": [{"name": "Jim Parsons", "character": "Oh", "id": 5374, "credit_id": "54195958c3a3686db20010e8", "cast_id": 13, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 0}, {"name": "Rihanna", "character": "Ap\u00e9ritif \"TIF\" Tucci", "id": 131519, "credit_id": "52fe4ec19251416c75161385", "cast_id": 2, "profile_path": "/ssguCAeEMq74FS2ICMJ3Q9Wy7Bf.jpg", "order": 2}, {"name": "Jennifer Lopez", "character": "Lucy Tucci", "id": 16866, "credit_id": "52fe4ec19251416c75161389", "cast_id": 3, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 3}, {"name": "Matt Jones", "character": "Kyle", "id": 191202, "credit_id": "540d44100e0a262b40005b77", "cast_id": 6, "profile_path": "/wcB788lpiyc58s0F3nzqZnspISA.jpg", "order": 4}, {"name": "Steve Martin", "character": "Capitaine Smek", "id": 67773, "credit_id": "52fe4ec19251416c7516138d", "cast_id": 4, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 5}], "directors": [{"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "54a1cbca925141236b00478a", "profile_path": null, "id": 52870}], "vote_average": 7.2, "runtime": 105}, "11652": {"poster_path": "/yB6K696MEnZ79MBHdr2RvgPRpVL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57806952, "overview": "Inspired by the true story of Vince Papale, a man with nothing to lose who ignored the staggering odds and made his dream come true. When the coach of Papale's beloved hometown football team hosted an unprecedented open tryout, the public consensus was that it was a waste of time -- no one good enough to play professional football was going to be found this way.", "video": false, "id": 11652, "genres": [{"id": 18, "name": "Drama"}], "title": "Invincible", "tagline": "Dreams are not lived on the sidelines", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0445990", "adult": false, "backdrop_path": "/tOAb4CBsbtXQVxMLELVap0upaCm.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-08-25", "popularity": 0.319427507879271, "original_title": "Invincible", "budget": 0, "cast": [{"name": "Mark Wahlberg", "character": "Vince Papale", "id": 13240, "credit_id": "52fe44719251416c75034e0b", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Dick Vermeil", "id": 17141, "credit_id": "52fe44719251416c75034e0f", "cast_id": 2, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Janet Cantrell", "id": 9281, "credit_id": "52fe44719251416c75034e13", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Kevin Conway", "character": "Frank Papale", "id": 27116, "credit_id": "52fe44719251416c75034e17", "cast_id": 4, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 3}, {"name": "Michael Rispoli", "character": "Max Cantrell", "id": 18313, "credit_id": "52fe44719251416c75034e1b", "cast_id": 6, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 4}, {"name": "Morgan Turner", "character": "Susan Vermeil", "id": 1188567, "credit_id": "52fe44719251416c75034e61", "cast_id": 18, "profile_path": "/qT1HFFYeW0G4ODQ1EmxUcHa4TIb.jpg", "order": 5}], "directors": [{"name": "Ericson Core", "department": "Directing", "job": "Director", "credit_id": "52fe44719251416c75034e5d", "profile_path": null, "id": 21673}], "vote_average": 6.2, "runtime": 105}, "36668": {"poster_path": "/5QpaN7ZBAR6D3FotvEIMX0qZxHg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 234360014, "overview": "When a cure is found to treat mutations, lines are drawn amongst the X-Men, led by Professor Charles Xavier, and the Brotherhood, a band of powerful mutants organized under Xavier's former ally, Magneto.", "video": false, "id": 36668, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "X-Men: The Last Stand", "tagline": "Take a Stand", "vote_count": 1642, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0376994", "adult": false, "backdrop_path": "/w3Yc8wi2jYLaOyCW6b6svf1B0MG.jpg", "production_companies": [{"name": "Donners' Company", "id": 431}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Twentieth Century Fox", "id": 7392}, {"name": "Major Studio Partners", "id": 445}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2006-05-26", "popularity": 0.0945430838163593, "original_title": "X-Men: The Last Stand", "budget": 210000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe45ff9251416c910459eb", "cast_id": 4, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe45ff9251416c910459ef", "cast_id": 5, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Eric Lehnsherr / Magneto", "id": 1327, "credit_id": "52fe45ff9251416c910459f3", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Patrick Stewart", "character": "Charles Xavier / Professor X", "id": 2387, "credit_id": "52fe45ff9251416c910459f7", "cast_id": 7, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 3}, {"name": "Famke Janssen", "character": "Jean Grey / Phoenix", "id": 10696, "credit_id": "52fe45ff9251416c910459fb", "cast_id": 8, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 4}, {"name": "Anna Paquin", "character": "Marie / Rogue", "id": 10690, "credit_id": "52fe45ff9251416c910459ff", "cast_id": 9, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 5}, {"name": "Kelsey Grammer", "character": "Dr. Henry 'Hank' McCoy / Beast", "id": 7090, "credit_id": "52fe45ff9251416c91045a03", "cast_id": 10, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 6}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "52fe45ff9251416c91045a07", "cast_id": 11, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 7}, {"name": "Rebecca Romijn", "character": "Raven Darkholme / Mystique", "id": 11008, "credit_id": "52fe45ff9251416c91045a0b", "cast_id": 12, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 8}, {"name": "Shawn Ashmore", "character": "Bobby Drake / Iceman", "id": 11023, "credit_id": "52fe45ff9251416c91045a0f", "cast_id": 13, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 9}, {"name": "Aaron Stanford", "character": "John Allerdyce / Pyro", "id": 11022, "credit_id": "52fe45ff9251416c91045a13", "cast_id": 14, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 10}, {"name": "Vinnie Jones", "character": "Cain Marko / Juggernaut", "id": 980, "credit_id": "52fe45ff9251416c91045a17", "cast_id": 15, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 11}, {"name": "Ellen Page", "character": "Kitty Pryde / Shadowcat", "id": 27578, "credit_id": "52fe45ff9251416c91045a1b", "cast_id": 16, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 12}, {"name": "Daniel Cudmore", "character": "Peter Rasputin / Colossus", "id": 84222, "credit_id": "52fe45ff9251416c91045a1f", "cast_id": 17, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 13}, {"name": "Ben Foster", "character": "Warren Worthington III / Angel", "id": 11107, "credit_id": "52fe45ff9251416c91045a23", "cast_id": 18, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 14}, {"name": "Michael Murphy", "character": "Warren Worthington II", "id": 4776, "credit_id": "52fe45ff9251416c91045a27", "cast_id": 19, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 15}, {"name": "Dania Ramirez", "character": "Callisto", "id": 37046, "credit_id": "52fe45ff9251416c91045a2b", "cast_id": 20, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 16}, {"name": "Shohreh Aghdashloo", "character": "Dr. Kavita Rao", "id": 21041, "credit_id": "52fe45ff9251416c91045a2f", "cast_id": 21, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 17}, {"name": "Josef Sommer", "character": "The President", "id": 14792, "credit_id": "52fe45ff9251416c91045a33", "cast_id": 22, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 18}, {"name": "Bill Duke", "character": "Trask", "id": 1103, "credit_id": "52fe45ff9251416c91045a37", "cast_id": 23, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 19}, {"name": "Eric Dane", "character": "Multiple Man", "id": 58115, "credit_id": "52fe45ff9251416c91045a3b", "cast_id": 24, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 20}, {"name": "Cameron Bright", "character": "Jimmy/Leech", "id": 52414, "credit_id": "52fe45ff9251416c91045a3f", "cast_id": 25, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 21}, {"name": "Ken Leung", "character": "Kid Omega", "id": 2131, "credit_id": "52fe45ff9251416c91045a43", "cast_id": 26, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 22}, {"name": "Omahyra Mota", "character": "Arclight", "id": 1199720, "credit_id": "52fe45ff9251416c91045a47", "cast_id": 27, "profile_path": "/ecGJRovt5JEX6ckBM8i0ZaaQHAv.jpg", "order": 23}, {"name": "Stan Lee", "character": "Waterhose Man", "id": 7624, "credit_id": "52fe45ff9251416c91045a4b", "cast_id": 28, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 24}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe45ff9251416c910459db", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.1, "runtime": 104}, "11660": {"poster_path": "/7tVxAcG77tINMJ5gtvQaLfopwz6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A struggling, unemployed young writer takes to following strangers around the streets of London, ostensibly to find inspiration for his new novel.", "video": false, "id": 11660, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Following", "tagline": "", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0154506", "adult": false, "backdrop_path": "/tabZxRLlAxCzH4LUmgebZxam6VY.jpg", "production_companies": [{"name": "Syncopy", "id": 9996}], "release_date": "1998-09-12", "popularity": 0.897650521411164, "original_title": "Following", "budget": 0, "cast": [{"name": "Alex Haw", "character": "Cobb", "id": 70224, "credit_id": "52fe44739251416c750352dd", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Lucy Russell", "character": "The Blonde", "id": 28749, "credit_id": "52fe44739251416c750352e1", "cast_id": 2, "profile_path": "/2Ytkbu8G0OHHBwKMD9gYz7rFxDf.jpg", "order": 1}, {"name": "John Nolan", "character": "The Policeman", "id": 70225, "credit_id": "53842ee20e0a2624b400e67d", "cast_id": 18, "profile_path": "/1Is0RIeDdAXlXft1EfqC97qiJl5.jpg", "order": 2}, {"name": "Dick Bradsell", "character": "The Bald Guy", "id": 70226, "credit_id": "52fe44739251416c750352e9", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Gillian El-Kadi", "character": "Home Owner", "id": 70227, "credit_id": "52fe44739251416c750352ed", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jennifer Angel", "character": "Waitress", "id": 70228, "credit_id": "52fe44739251416c750352f1", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jeremy Theobald", "character": "Bill", "id": 70230, "credit_id": "52fe44739251416c75035331", "cast_id": 17, "profile_path": null, "order": 6}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe44739251416c750352f7", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.2, "runtime": 69}, "74306": {"poster_path": "/9xnVLPkWbrywjrUrwwiDeQ6obCC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122550, "overview": "Fed up with the cruelty and stupidity of American culture, an unlikely duo goes on a killing spree, killing reality TV stars, bigots and others they find repugnant in this black comedy.", "video": false, "id": 74306, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "God Bless America", "tagline": "Taking out the trash, one jerk at a time.", "vote_count": 99, "homepage": "http://www.magnetreleasing.com/godblessamerica/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1912398", "adult": false, "backdrop_path": "/roz9IbL7ygpPdv8ezbG1DSDDY40.jpg", "production_companies": [{"name": "Darko Entertainment", "id": 12622}, {"name": "Jerkschool Productions", "id": 7357}], "release_date": "2011-09-09", "popularity": 0.344385927251391, "original_title": "God Bless America", "budget": 0, "cast": [{"name": "Joel Murray", "character": "Frank", "id": 155649, "credit_id": "52fe48c4c3a368484e109e2d", "cast_id": 3, "profile_path": "/euFBBlZ7Q8clCJE3VYPutQR35R7.jpg", "order": 0}, {"name": "Tara Lynne Barr", "character": "Roxy", "id": 183926, "credit_id": "52fe48c4c3a368484e109e31", "cast_id": 4, "profile_path": "/oKOPc04cSu8SBFug76KpXwiavvR.jpg", "order": 1}, {"name": "Mackenzie Brooke Smith", "character": "Ava", "id": 107777, "credit_id": "52fe48c4c3a368484e109e35", "cast_id": 5, "profile_path": "/2O4fHFPnHAOPbJVTAA3aS5aNllm.jpg", "order": 2}, {"name": "Melinda Page Hamilton", "character": "Alison", "id": 169024, "credit_id": "52fe48c4c3a368484e109e39", "cast_id": 6, "profile_path": "/8h9FAA0syyQGHvl43Lvv3DzpIRS.jpg", "order": 3}, {"name": "Rich McDonald", "character": "Brad", "id": 205930, "credit_id": "52fe48c4c3a368484e109e3d", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Maddie Hasson", "character": "Chloe", "id": 593202, "credit_id": "52fe48c4c3a368484e109e41", "cast_id": 8, "profile_path": "/5Khfzfn5wbN2dVJh7cgV87bkVAA.jpg", "order": 5}, {"name": "Larry Miller", "character": "Chloe's Dad", "id": 1211, "credit_id": "52fe48c4c3a368484e109e45", "cast_id": 9, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 6}, {"name": "Dorie Barton", "character": "Chloe's Mom", "id": 155393, "credit_id": "52fe48c4c3a368484e109e49", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Travis Wester", "character": "Ed", "id": 57404, "credit_id": "52fe48c4c3a368484e109e4d", "cast_id": 11, "profile_path": "/3pRPTZ7jhuMJzING7eouoFoqinQ.jpg", "order": 8}, {"name": "Lauren Benz Phillips", "character": "Donna", "id": 1136520, "credit_id": "52fe48c4c3a368484e109e51", "cast_id": 12, "profile_path": "/k99oOnq7jMRyUWSeShS5SFI0xC1.jpg", "order": 9}, {"name": "Guerrin Gardner", "character": "Tampon-Throwing Tuff Gurl", "id": 172181, "credit_id": "52fe48c4c3a368484e109e55", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Kellie Ramdhanie", "character": "Melissa Tuff Gurl", "id": 1136521, "credit_id": "52fe48c4c3a368484e109e59", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Aris Alvarado", "character": "Steven Clark", "id": 169001, "credit_id": "52fe48c4c3a368484e109e5d", "cast_id": 15, "profile_path": "/xN32kBJy5qQQyPmIffdYgCOG6dx.jpg", "order": 12}, {"name": "Romeo Brown", "character": "John Tyler", "id": 155486, "credit_id": "52fe48c4c3a368484e109e61", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Sandra Vergara", "character": "American Superstarz Judge", "id": 965807, "credit_id": "52fe48c4c3a368484e109e65", "cast_id": 17, "profile_path": "/jDuyzO711Lt1m24RHsUfWovbfcC.jpg", "order": 14}, {"name": "Jamie Harris", "character": "American Superstarz Judge", "id": 111195, "credit_id": "52fe48c4c3a368484e109e69", "cast_id": 18, "profile_path": "/hE8Q0EtDKKgSeSfTm5wTU6QflrS.jpg", "order": 15}, {"name": "Alexie Gilmore", "character": "Morning Show Host", "id": 87669, "credit_id": "52fe48c4c3a368484e109e6d", "cast_id": 19, "profile_path": "/lvWDTug0Jythcqhy3pr4yRx5MEH.jpg", "order": 16}, {"name": "James McAndrew", "character": "Morning Show Host", "id": 989546, "credit_id": "52fe48c4c3a368484e109e71", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Brendalyn Richard", "character": "Karen", "id": 1136522, "credit_id": "52fe48c4c3a368484e109e75", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Geoff Pierson", "character": "Frank's Boss", "id": 25879, "credit_id": "52fe48c4c3a368484e109e79", "cast_id": 22, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 19}, {"name": "Tom Kenny", "character": "Office Staff", "id": 78798, "credit_id": "52fe48c4c3a368484e109e7d", "cast_id": 23, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 20}, {"name": "Eliza Coyle", "character": "Office Staff", "id": 122802, "credit_id": "52fe48c4c3a368484e109e81", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Kill Talley", "character": "Office Staff", "id": 1136523, "credit_id": "52fe48c4c3a368484e109e85", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Joe Liss", "character": "Office Staff", "id": 304070, "credit_id": "52fe48c4c3a368484e109e89", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Cameron Denny", "character": "Office Worker", "id": 1136524, "credit_id": "52fe48c4c3a368484e109e8d", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Danny Geter", "character": "Mutual of Onodaga Security Guard", "id": 1136525, "credit_id": "52fe48c4c3a368484e109e91", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Dan Spencer", "character": "Doctor", "id": 1118076, "credit_id": "52fe48c4c3a368484e109e95", "cast_id": 29, "profile_path": "/useMeqdDMLuR9MBQDZJ76CpZE5X.jpg", "order": 26}], "directors": [{"name": "Bobcat Goldthwait", "department": "Directing", "job": "Director", "credit_id": "52fe48c4c3a368484e109e23", "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "id": 95024}], "vote_average": 6.9, "runtime": 104}, "11665": {"poster_path": "/qWBln0B1Zxc24Lcuhqfhtu6coPR.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230685453, "overview": "When the identities of secret agents from Control are compromised, the Chief promotes hapless but eager analyst Maxwell Smart and teams him with stylish, capable Agent 99, the only spy whose cover remains intact. Can they work together to thwart the evil plans of KAOS and its crafty operative?", "video": false, "id": 11665, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Get Smart", "tagline": "Saving The World...And Loving It!", "vote_count": 323, "homepage": "http://getsmartmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0425061", "adult": false, "backdrop_path": "/jrWrNLPeeB4d7II30EJRSYX7Sbr.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2008-06-19", "popularity": 1.60199164549018, "original_title": "Get Smart", "budget": 80000000, "cast": [{"name": "Steve Carell", "character": "Maxwell Smart", "id": 4495, "credit_id": "52fe44749251416c75035587", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Agent 99", "id": 1813, "credit_id": "52fe44749251416c7503558b", "cast_id": 5, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Dwayne Johnson", "character": "Agent 23", "id": 18918, "credit_id": "52fe44749251416c7503558f", "cast_id": 6, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 2}, {"name": "Alan Arkin", "character": "The Chief", "id": 1903, "credit_id": "52fe44749251416c75035593", "cast_id": 7, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 3}, {"name": "Terence Stamp", "character": "Siegfried", "id": 28641, "credit_id": "52fe44749251416c75035597", "cast_id": 8, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 4}, {"name": "Terry Crews", "character": "Agent 91", "id": 53256, "credit_id": "52fe44749251416c7503559b", "cast_id": 9, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 5}, {"name": "David Koechner", "character": "Larabee", "id": 28638, "credit_id": "52fe44749251416c7503559f", "cast_id": 10, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 6}, {"name": "James Caan", "character": "The President", "id": 3085, "credit_id": "52fe44749251416c750355a3", "cast_id": 11, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 7}, {"name": "Bill Murray", "character": "Agent 13", "id": 1532, "credit_id": "52fe44749251416c750355a7", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 8}, {"name": "Patrick Warburton", "character": "Hymie", "id": 9657, "credit_id": "52fe44749251416c750355ab", "cast_id": 13, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 9}, {"name": "David S. Lee", "character": "Ladislas Krstic", "id": 71078, "credit_id": "52fe44749251416c750355af", "cast_id": 14, "profile_path": "/jcQP0Uonk5cIiYjdmC2toGCpo6w.jpg", "order": 10}, {"name": "Masi Oka", "character": "Bruce", "id": 17273, "credit_id": "52fe44749251416c750355ef", "cast_id": 25, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 11}, {"name": "Nate Torrence", "character": "Lloyd", "id": 41565, "credit_id": "52fe44749251416c750355f3", "cast_id": 26, "profile_path": "/nQoVDAd3MeMEW740Z0Ie9sPTnx5.jpg", "order": 12}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44749251416c75035577", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 5.8, "runtime": 110}, "11667": {"poster_path": "/271l3Gs2Abis6JLQWaMNRjpCFV4.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105414729, "overview": "Col. Guile and various other martial arts heroes fight against the tyranny of Dictator M. Bison and his cohorts.", "video": false, "id": 11667, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Street Fighter", "tagline": "The fight to save the world is on!", "vote_count": 83, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/srmcIOxfqARcnHmgHLVNzzFM2RV.jpg", "id": 261203, "name": "Street Fighter"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111301", "adult": false, "backdrop_path": "/kx9hVXtX8iSbbCwCbuUovbKrWyH.jpg", "production_companies": [{"name": "Capcom", "id": 7220}, {"name": "Universal Pictures", "id": 33}], "release_date": "1994-12-22", "popularity": 0.78337231561846, "original_title": "Street Fighter", "budget": 35000000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Colonel William Guile", "id": 15111, "credit_id": "52fe44759251416c75035701", "cast_id": 14, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Ra\u00fal Juli\u00e1", "character": "General M. Bison", "id": 27888, "credit_id": "52fe44759251416c75035705", "cast_id": 15, "profile_path": "/nr6Vm3KVdwzIADFThKQhG3uTRfJ.jpg", "order": 1}, {"name": "Ming-Na Wen", "character": "Chun-Li Zang", "id": 21702, "credit_id": "52fe44759251416c75035709", "cast_id": 16, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 2}, {"name": "Damian Chapa", "character": "Ken Masters", "id": 58646, "credit_id": "52fe44759251416c7503570d", "cast_id": 17, "profile_path": "/e00LyDBIhDOFWgwfSU0wCTLL4ax.jpg", "order": 3}, {"name": "Kylie Minogue", "character": "Cammy White", "id": 12207, "credit_id": "52fe44759251416c75035711", "cast_id": 18, "profile_path": "/8vOTxDParoNySQrUI2OM9zQkVPu.jpg", "order": 4}, {"name": "Wes Studi", "character": "Victor Sagat", "id": 15853, "credit_id": "52fe44759251416c75035715", "cast_id": 19, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 5}, {"name": "Byron Mann", "character": "Ryu Hoshi", "id": 57748, "credit_id": "52fe44759251416c75035719", "cast_id": 20, "profile_path": "/fF6ZlpZ8Jj5iiI5LQjSlaemeNe5.jpg", "order": 6}, {"name": "Roshan Seth", "character": "Dr. Dhalsim", "id": 693, "credit_id": "52fe44759251416c7503571d", "cast_id": 21, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 7}, {"name": "Grand L. Bush", "character": "Balrog", "id": 14333, "credit_id": "52fe44759251416c75035721", "cast_id": 22, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 8}, {"name": "Jay Tavare", "character": "Vega", "id": 29861, "credit_id": "52fe44759251416c75035725", "cast_id": 23, "profile_path": "/v1ILbH1HGgaB5OvAL7aGhbHFZ3R.jpg", "order": 9}, {"name": "Simon Callow", "character": "A.N. Official", "id": 4001, "credit_id": "52fe44759251416c75035729", "cast_id": 24, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 10}, {"name": "Andrew Bryniarski", "character": "Zangief", "id": 52366, "credit_id": "52fe44759251416c7503572d", "cast_id": 25, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 11}, {"name": "Miguel A. N\u00fa\u00f1ez, Jr.", "character": "Dee Jay", "id": 74354, "credit_id": "52fe44759251416c75035731", "cast_id": 26, "profile_path": "/7uju1sYJOoT78cHpxVk0Sspo3S7.jpg", "order": 12}, {"name": "Robert Mammone", "character": "Carlos Blanka", "id": 83769, "credit_id": "52fe44759251416c75035735", "cast_id": 27, "profile_path": "/aDtHgVRqkCw0H46db8oYtS2y3VE.jpg", "order": 13}], "directors": [{"name": "Steven E. de Souza", "department": "Directing", "job": "Director", "credit_id": "52fe44759251416c750356b5", "profile_path": "/vdNUgaeJEZy67vhwTeJnftfBRzB.jpg", "id": 1726}], "vote_average": 4.1, "runtime": 102}, "169881": {"poster_path": "/jsOZXPSUr64mJCZ8nGvVpXgl05X.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "The story of Rob Cole, a boy who is left a penniless orphan in an 11th-century English mining town when his mother dies of a mysterious illness. Vowing to become a physician and vanquish Death itself, he travels to Isfahan in Persia to study medicine under the great Ibn Sina. Through countless ordeals and challenges, and making many sacrifices along the way, he struggles on unwaveringly. His unflagging quest for knowledge leads to the blossoming of friendship and true love.", "video": false, "id": 169881, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Physician", "tagline": "", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2101473", "adult": false, "backdrop_path": "/ehgPvp4gj2XiOXOv9QtoELxQZXm.jpg", "production_companies": [{"name": "ARD Degeto Film", "id": 10947}, {"name": "Beta Film", "id": 1080}, {"name": "UFA", "id": 7900}], "release_date": "2013-12-25", "popularity": 0.870105530988925, "original_title": "The Physician", "budget": 0, "cast": [{"name": "Tom Payne", "character": "Rob Cole", "id": 30319, "credit_id": "52fe4cecc3a36847f8244d19", "cast_id": 4, "profile_path": "/hhz20xJdo8jhfTI8uBvmNECgtKz.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Ibn Sina", "id": 2282, "credit_id": "52fe4cecc3a36847f8244d1d", "cast_id": 5, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Stellan Skarsg\u00e5rd", "character": "Barber", "id": 1640, "credit_id": "52fe4cecc3a36847f8244d21", "cast_id": 6, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 2}, {"name": "Olivier Martinez", "character": "Shah Ala ad-Daula", "id": 15533, "credit_id": "52fe4cecc3a36847f8244d25", "cast_id": 7, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 3}, {"name": "Emma Rigby", "character": "Rebecca", "id": 1078568, "credit_id": "52fe4cecc3a36847f8244d29", "cast_id": 8, "profile_path": "/5pMA7z3BZP7YdWqphbPRqu2peWq.jpg", "order": 4}, {"name": "Elyas M\u2019Barek", "character": "Karim", "id": 25409, "credit_id": "52fe4cecc3a36847f8244d2d", "cast_id": 9, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 5}, {"name": "Michael Jibson", "character": "Stratford Monk", "id": 56098, "credit_id": "52fe4cecc3a36847f8244d31", "cast_id": 10, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 6}], "directors": [{"name": "Philipp St\u00f6lzl", "department": "Directing", "job": "Director", "credit_id": "52fe4cecc3a36847f8244d09", "profile_path": null, "id": 113500}], "vote_average": 7.6, "runtime": 155}, "159128": {"poster_path": "/evlXBQlXI99bcSSj6nLbriHaY3A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81381, "overview": "In this reimagining of the 2010 Mexican film of the same name, director Jim Mickle paints a gruesome portrait of an introverted family struggling to keep their macabre traditions alive, giving us something we can really sink our teeth into.", "video": false, "id": 159128, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "We Are What We Are", "tagline": "Blood is the strongest bond.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2309021", "adult": false, "backdrop_path": "/BKfK0XIkjLFeNJQGOS0tsF9F2D.jpg", "production_companies": [{"name": "Belladonna Productions", "id": 2341}], "release_date": "2013-09-27", "popularity": 0.776478337551478, "original_title": "We Are What We Are", "budget": 0, "cast": [{"name": "Bill Sage", "character": "Frank Parker", "id": 32029, "credit_id": "52fe4c059251416c910ed213", "cast_id": 4, "profile_path": "/580okgFwmaKyT12s1lUfY8yV9dg.jpg", "order": 0}, {"name": "Ambyr Childers", "character": "Iris Parker", "id": 75330, "credit_id": "52fe4c059251416c910ed217", "cast_id": 5, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 1}, {"name": "Julia Garner", "character": "Rose Parker", "id": 936970, "credit_id": "52fe4c059251416c910ed21b", "cast_id": 6, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 2}, {"name": "Michael Parks", "character": "Doc Barrow", "id": 2536, "credit_id": "52fe4c059251416c910ed21f", "cast_id": 7, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 3}, {"name": "Wyatt Russell", "character": "Deputy Anders", "id": 986808, "credit_id": "52fe4c059251416c910ed223", "cast_id": 8, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 4}, {"name": "Kelly McGillis", "character": "Marge", "id": 11084, "credit_id": "52fe4c059251416c910ed227", "cast_id": 9, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 5}, {"name": "Nick Damici", "character": "Sheriff Meeks", "id": 67580, "credit_id": "52fe4c059251416c910ed22b", "cast_id": 10, "profile_path": "/vkZ2H5vLITyVyl4OkYe4r8cBMrS.jpg", "order": 6}, {"name": "Jack Gore", "character": "Rory Parker", "id": 1181345, "credit_id": "52fe4c059251416c910ed22f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Kassie DePaiva", "character": "Emma Parker", "id": 11751, "credit_id": "52fe4c059251416c910ed233", "cast_id": 12, "profile_path": "/m60qVsCFDeXGSXnGvWVPBEYbeU1.jpg", "order": 8}], "directors": [{"name": "Jim Mickle", "department": "Directing", "job": "Director", "credit_id": "52fe4c059251416c910ed203", "profile_path": null, "id": 87082}], "vote_average": 5.7, "runtime": 105}, "11674": {"poster_path": "/54SKV7ALfiVGJBzoStGTLYkRZEM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Live action adaptation of a Disney Classic. When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.", "video": false, "id": 11674, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "101 Dalmatians", "tagline": "So many dogs. So little time.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eTaNHqpi7VldgcrDetfTzk4FeDi.jpg", "poster_path": "/9WfuNgHNAHKRp8HwtJYHKabJBnV.jpg", "id": 124916, "name": "101 Dalmatians (Live-action series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115433", "adult": false, "backdrop_path": "/4CcoF2VSW6GD21DGbmpxWMWafaE.jpg", "production_companies": [{"name": "Great Oaks Entertainment", "id": 2173}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1996-11-17", "popularity": 1.3608869739286, "original_title": "101 Dalmatians", "budget": 0, "cast": [{"name": "Glenn Close", "character": "Cruella De Vil", "id": 515, "credit_id": "52fe44769251416c75035a2b", "cast_id": 10, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 0}, {"name": "Jeff Daniels", "character": "Roger", "id": 8447, "credit_id": "52fe44769251416c75035a2f", "cast_id": 11, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 1}, {"name": "Joely Richardson", "character": "Anita", "id": 20810, "credit_id": "52fe44769251416c75035a33", "cast_id": 12, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 2}, {"name": "Joan Plowright", "character": "Nanny", "id": 23709, "credit_id": "52fe44769251416c75035a37", "cast_id": 13, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 3}, {"name": "Hugh Laurie", "character": "Jaspar", "id": 41419, "credit_id": "52fe44769251416c75035a3b", "cast_id": 14, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 4}], "directors": [{"name": "Stephen Herek", "department": "Directing", "job": "Director", "credit_id": "52fe44769251416c750359f7", "profile_path": "/v6eEBvBiOoMZwrbbU30u4ObmDWE.jpg", "id": 18356}], "vote_average": 5.6, "runtime": 103}, "11675": {"poster_path": "/crycJDHRvpQyZeQyRYtIZKIpNzK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two decades after surviving a massacre on October 31, 1978, former baby sitter Laurie Strode finds herself hunted by persistent knife-wielder Michael Myers. Laurie now lives in Northern California under an assumed name, where she works as the headmistress of a private school. But it's not far enough to escape Myers, who soon discovers her whereabouts. As Halloween descends upon Laurie's peaceful community, a feeling of dread weighs upon her -- with good reason.", "video": false, "id": 11675, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Halloween: H20", "tagline": "Blood is thicker than Water.", "vote_count": 52, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mmxf1sOe2T1sma0tH0TgTdcit1p.jpg", "poster_path": "/2uqHV6YcD9jEL2WuJYjXiiuRDqd.jpg", "id": 91361, "name": "Halloween Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120694", "adult": false, "backdrop_path": "/owO5bTVUYxJosjVsfnoqT6TIjGJ.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "1998-08-05", "popularity": 0.748216515113103, "original_title": "Halloween: H20", "budget": 17000000, "cast": [{"name": "Jamie Lee Curtis", "character": "Keri Tate", "id": 8944, "credit_id": "52fe44769251416c75035a97", "cast_id": 9, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 0}, {"name": "Josh Hartnett", "character": "John Tate", "id": 2299, "credit_id": "52fe44769251416c75035a9b", "cast_id": 12, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 1}, {"name": "Adam Arkin", "character": "Will Brennan", "id": 55257, "credit_id": "52fe44769251416c75035a9f", "cast_id": 13, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 2}, {"name": "Michelle Williams", "character": "Molly Cartwell", "id": 1812, "credit_id": "52fe44769251416c75035aa3", "cast_id": 14, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 3}, {"name": "Joseph Gordon-Levitt", "character": "Jimmy Howell", "id": 24045, "credit_id": "52fe44769251416c75035aad", "cast_id": 16, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 4}, {"name": "LL Cool J", "character": "Ronald 'Ronny' Jones", "id": 36424, "credit_id": "52fe44769251416c75035ab1", "cast_id": 17, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 5}, {"name": "Jodi Lyn O'Keefe", "character": "Sarah Wainthrope", "id": 58006, "credit_id": "52fe44769251416c75035ab5", "cast_id": 18, "profile_path": "/w1Yx9bpt3ZqVwo33SEXVF5bkY6Z.jpg", "order": 6}, {"name": "Adam Hann-Byrd", "character": "Charles 'Charlie' Deveraux", "id": 46530, "credit_id": "52fe44769251416c75035ab9", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Janet Leigh", "character": "Norma Watson", "id": 7302, "credit_id": "52fe44769251416c75035abd", "cast_id": 20, "profile_path": "/3FWYSCJUOuYVDPG9UoMjtqNMdyb.jpg", "order": 8}, {"name": "Branden Williams", "character": "Tony Allegre", "id": 150109, "credit_id": "52fe44769251416c75035ac1", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Matt Winston", "character": "Detective Matt Sampson", "id": 35521, "credit_id": "52fe44769251416c75035ac5", "cast_id": 22, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 10}, {"name": "Beau Billingslea", "character": "Detective 'Fitz' Fitzsimmons", "id": 78494, "credit_id": "52fe44769251416c75035ac9", "cast_id": 23, "profile_path": "/3Ooz7bdkkSwwbzOs9SPXIXvGKYQ.jpg", "order": 11}, {"name": "Larisa Miller", "character": "Claudia", "id": 150113, "credit_id": "52fe44769251416c75035acd", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Emmalee Thompson", "character": "Casey", "id": 150114, "credit_id": "52fe44769251416c75035ad1", "cast_id": 25, "profile_path": null, "order": 13}], "directors": [{"name": "Steve Miner", "department": "Directing", "job": "Director", "credit_id": "52fe44769251416c75035a6f", "profile_path": "/yk90jxBifKosxEyP8CITJk1BTtt.jpg", "id": 58712}], "vote_average": 6.1, "runtime": 86}, "1946": {"poster_path": "/jvuRnlZvfUnleAZj8g75q4VZedm.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 2856712, "overview": "A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.", "video": false, "id": 1946, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "eXistenZ", "tagline": "Play it. Live it. Kill for it.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120907", "adult": false, "backdrop_path": "/wm8EYTqV7NPgpT0hEHBzN2QruqL.jpg", "production_companies": [{"name": "Canadian Television Fund", "id": 20170}, {"name": "Alliance Atlantis Communications", "id": 803}, {"name": "Natural Nylon Entertainment", "id": 804}, {"name": "Serendipity Point Films", "id": 805}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "The Harold Greenberg Fund", "id": 807}, {"name": "The Movie Network", "id": 808}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique", "id": 809}], "release_date": "1999-04-19", "popularity": 0.157312420292633, "original_title": "eXistenZ", "budget": 15000000, "cast": [{"name": "Jennifer Jason Leigh", "character": "Allegra Geller", "id": 10431, "credit_id": "52fe4325c3a36847f803db37", "cast_id": 3, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 0}, {"name": "Jude Law", "character": "Ted Pikul", "id": 9642, "credit_id": "52fe4325c3a36847f803db3b", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Ian Holm", "character": "Kiri Vinokur", "id": 65, "credit_id": "52fe4325c3a36847f803db3f", "cast_id": 5, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Gas", "id": 5293, "credit_id": "52fe4325c3a36847f803db43", "cast_id": 6, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Don McKellar", "character": "Yevgeny Nourish", "id": 20173, "credit_id": "52fe4325c3a36847f803db47", "cast_id": 7, "profile_path": "/m0UEFyCg5Sl2FHGi5WUNpI2n5AU.jpg", "order": 4}, {"name": "Oscar Hsu", "character": "Chinese Waiter", "id": 20174, "credit_id": "52fe4325c3a36847f803db4b", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Callum Keith Rennie", "character": "Hugo Carlaw", "id": 540, "credit_id": "52fe4325c3a36847f803db4f", "cast_id": 9, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 6}, {"name": "Christopher Eccleston", "character": "Seminar Leader", "id": 2040, "credit_id": "52fe4325c3a36847f803db53", "cast_id": 10, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 7}, {"name": "Sarah Polley", "character": "Merle", "id": 98, "credit_id": "52fe4325c3a36847f803db57", "cast_id": 11, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 8}, {"name": "Robert A. Silverman", "character": "D'Arcy Nader", "id": 20175, "credit_id": "52fe4325c3a36847f803db5b", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Kris Lemche", "character": "Noel Dichter", "id": 20176, "credit_id": "52fe4325c3a36847f803db5f", "cast_id": 13, "profile_path": "/tugdbJ5M7wTNb6v52jqhEkWNDtu.jpg", "order": 10}, {"name": "Vik Sahay", "character": "Male Assistant", "id": 6623, "credit_id": "52fe4325c3a36847f803db63", "cast_id": 14, "profile_path": "/eApnmkajRNYJ0Jrl9Cft1lo93cF.jpg", "order": 11}, {"name": "Kirsten Johnson", "character": "Female Assistant", "id": 20177, "credit_id": "52fe4325c3a36847f803db67", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "James Kirchner", "character": "Landry", "id": 20178, "credit_id": "52fe4325c3a36847f803db6b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Bal\u00e1zs Ko\u00f3s", "character": "Male Volunteer", "id": 20179, "credit_id": "52fe4325c3a36847f803db6f", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Stephanie Belding", "character": "Female Volunteer", "id": 20180, "credit_id": "52fe4325c3a36847f803db73", "cast_id": 18, "profile_path": "/uH66JXFzOQNn29hylhJAm9Ir0mo.jpg", "order": 15}, {"name": "Gerry Quigley", "character": "Trout Farm Worker", "id": 234, "credit_id": "52fe4325c3a36847f803db77", "cast_id": 19, "profile_path": null, "order": 16}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803db2d", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.7, "runtime": 97}, "11678": {"poster_path": "/LYRvXwqgQGJoaxb8bB8i46X9wp.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "PK", "name": "Pakistan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68473360, "overview": "Trapped near the summit of K2, the world's second-highest mountain, Annie Garrett radios to base camp for help. Brother Peter hears Annie's message and assembles a team to save her and her group before they succumb to K2's unforgiving elements. But, as Annie lays injured in an icy cavern, the rescuers face several terrifying events that could end the rescue attempt -- and their lives.", "video": false, "id": 11678, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Vertical Limit", "tagline": "The Mountain Will Decide.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0190865", "adult": false, "backdrop_path": "/rBYgRwSMZX0HOwOVaS5MpLqUC0.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Global Entertainment Productions GmbH & Company Medien KG", "id": 9269}], "release_date": "2000-12-08", "popularity": 0.409861455502431, "original_title": "Vertical Limit", "budget": 75000000, "cast": [{"name": "Chris O'Donnell", "character": "Peter Garrett", "id": 5577, "credit_id": "52fe44779251416c75035c25", "cast_id": 11, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 0}, {"name": "Robin Tunney", "character": "Annie Garrett", "id": 17346, "credit_id": "52fe44779251416c75035c29", "cast_id": 12, "profile_path": "/oQGr5vfYbkarmJQmhGmSpIhSapL.jpg", "order": 1}, {"name": "Bill Paxton", "character": "Elliot Vaughn", "id": 2053, "credit_id": "52fe44779251416c75035c2d", "cast_id": 14, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 2}, {"name": "Scott Glenn", "character": "Montgomery Wick", "id": 349, "credit_id": "53ab1287c3a3684bc5000169", "cast_id": 41, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 3}, {"name": "Izabella Scorupco", "character": "Monique Aubertine", "id": 10695, "credit_id": "52fe44779251416c75035c31", "cast_id": 15, "profile_path": "/7lQ494byqcFfVkJtZYLl38MvfKS.jpg", "order": 4}, {"name": "Nicholas Lea", "character": "Tom", "id": 42706, "credit_id": "52fe44779251416c75035c41", "cast_id": 18, "profile_path": "/tXfhqYTwSixZW623zvM9QyPbyPV.jpg", "order": 5}, {"name": "Temuera Morrison", "character": "Le major Rasul", "id": 7242, "credit_id": "52fe44779251416c75035c45", "cast_id": 20, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 6}, {"name": "Alexander Siddig", "character": "Kareem Nazir", "id": 2957, "credit_id": "52fe44779251416c75035c49", "cast_id": 21, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 7}, {"name": "Stuart Wilson", "character": "Royce Garrett", "id": 14344, "credit_id": "52fe44779251416c75035c4d", "cast_id": 22, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 8}, {"name": "Augie Davis", "character": "Aziz", "id": 1079558, "credit_id": "52fe44779251416c75035c51", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Roshan Seth", "character": "Colonel Amir Salim", "id": 693, "credit_id": "52fe44779251416c75035c55", "cast_id": 24, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 10}, {"name": "Alejandro Valdes-Rochin", "character": "Sergeant Asim", "id": 1079559, "credit_id": "52fe44779251416c75035c59", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Rod Brown", "character": "Ali Hasan", "id": 70908, "credit_id": "52fe44779251416c75035c5d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Steve Le Marquand", "character": "Cyril Bench", "id": 59116, "credit_id": "52fe44779251416c75035c61", "cast_id": 27, "profile_path": "/oCyCwQjXRtjk2MOcv2yGuMRtptQ.jpg", "order": 13}, {"name": "Ben Mendelsohn", "character": "Malcolm Bench", "id": 77335, "credit_id": "52fe44779251416c75035c65", "cast_id": 28, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 14}, {"name": "Ed Viesturs", "character": "Himself", "id": 135673, "credit_id": "52fe44779251416c75035c69", "cast_id": 30, "profile_path": "/osvNB4z05NqhAONWAKlQMIEhmVO.jpg", "order": 15}, {"name": "Robert Taylor", "character": "Skip Taylor", "id": 39545, "credit_id": "52fe44779251416c75035c6d", "cast_id": 31, "profile_path": "/aqRJQj0KBPhGLDxfmOAXCUzCcSJ.jpg", "order": 16}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe44779251416c75035bf1", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.0, "runtime": 124}, "11679": {"poster_path": "/1rKeQyy4eyyuVcNNBlyEfLuh7Cu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71073932, "overview": "Ice Cube stars as Darius Stone, a thrill-seeking troublemaker whose criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert (played by Willem Dafoe).", "video": false, "id": 11679, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "xXx: State of the Union", "tagline": "Prepare for the next level", "vote_count": 146, "homepage": "", "belongs_to_collection": {"backdrop_path": "/g9Q2dmbxd1F2hHB5VslPbqGM1JV.jpg", "poster_path": "/omRo1Pw4phlELRgYOQ7RyAlccLt.jpg", "id": 52785, "name": "xXx Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329774", "adult": false, "backdrop_path": "/cb5C147Cq37qyEWMByOJYryZXCT.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Revolution Studios", "id": 497}, {"name": "Original Film", "id": 333}], "release_date": "2005-04-29", "popularity": 1.39246127693117, "original_title": "xXx: State of the Union", "budget": 87000000, "cast": [{"name": "Ice Cube", "character": "Darius Stone / XXX", "id": 9778, "credit_id": "52fe44779251416c75035cd3", "cast_id": 13, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Gen. George Octavius Deckert", "id": 5293, "credit_id": "52fe44779251416c75035cc3", "cast_id": 9, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Agent Augustus Gibbons", "id": 2231, "credit_id": "52fe44779251416c75035cc7", "cast_id": 10, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Scott Speedman", "character": "Agent Kyle Steele", "id": 100, "credit_id": "52fe44779251416c75035ccb", "cast_id": 11, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 3}, {"name": "Xzibit", "character": "Zeke", "id": 336, "credit_id": "52fe44779251416c75035ccf", "cast_id": 12, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 4}, {"name": "Peter Strauss", "character": "President Sandford", "id": 21368, "credit_id": "52fe44779251416c75035cd7", "cast_id": 15, "profile_path": "/gzgt88W2vUgwiYC7izlKXIcosWx.jpg", "order": 5}, {"name": "Michael Roof", "character": "Toby Lee Shavers", "id": 53347, "credit_id": "52fe44779251416c75035cdb", "cast_id": 16, "profile_path": "/52LqQBBrjzqhcrwuh3eNMdcBPMb.jpg", "order": 6}, {"name": "Sunny Mabrey", "character": "Charlie Mayweather", "id": 58707, "credit_id": "52fe44779251416c75035cdf", "cast_id": 17, "profile_path": "/fKPc0yMFKIMJmvXH8yJcse22BmV.jpg", "order": 7}, {"name": "Nona Gaye", "character": "Lola", "id": 18286, "credit_id": "52fe44779251416c75035ce3", "cast_id": 18, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 8}, {"name": "John G. Connolly", "character": "Lt. Alabama 'Bama' Cobb", "id": 1191451, "credit_id": "530f5247925141734a000cb0", "cast_id": 19, "profile_path": "/vBznbSqqrPjLJnIPUEDKbxo0bka.jpg", "order": 9}, {"name": "Ramon De Ocampo", "character": "Agent Meadows", "id": 171898, "credit_id": "530f5259925141734a000cb3", "cast_id": 20, "profile_path": "/ufbmBwY3P1dA8Cqxn28iZqes5rS.jpg", "order": 10}, {"name": "Barry Sigismondi", "character": "Bull", "id": 169670, "credit_id": "530f5269925141733e000c57", "cast_id": 21, "profile_path": "/vLhZ8xKsKVXdygMd3UHBsEoF1Bt.jpg", "order": 11}, {"name": "Michael Don Evans", "character": "Conductor", "id": 1297083, "credit_id": "530f52769251417332000d5b", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "David Rountree", "character": "Agent", "id": 93929, "credit_id": "530f5282925141733e000c5a", "cast_id": 23, "profile_path": "/3l4sTr0nP1xLKfSnbsACyNlJ3am.jpg", "order": 13}, {"name": "Ned Schmidtke", "character": "General Jack Pettibone", "id": 173739, "credit_id": "530f528e9251417332000d60", "cast_id": 24, "profile_path": "/nCZ1y7sre7m7pVurBwKoR6mzmrc.jpg", "order": 14}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe44779251416c75035c9b", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 5.0, "runtime": 101}, "8845": {"poster_path": "/duxM3HJ55Fpc4A3krziKn1FR22K.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156563139, "overview": "This action-packed thriller takes place on the soon-to-be-decommissioned USS Missouri. Disgruntled ex-CIA operative Strannix, his assistant Krill and their group of terrorists seize the battleship with nuclear blackmail in mind. They've planned for every contingency but ignore the ship's cook, former Navy SEAL Casey Ryback -- an error that could be fatal.", "video": false, "id": 8845, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Under Siege", "tagline": "It's not a job... It's an Adventure!", "vote_count": 99, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4Ysa3x4wDwolRpUXBCrig7szGon.jpg", "poster_path": "/5hkZdonGNmoqatnadpDnIgEbrho.jpg", "id": 112399, "name": "Under Siege Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105690", "adult": false, "backdrop_path": "/7Twk0ewJmB4CI55YkK2IBiEcIFC.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros Pictures", "id": 4209}, {"name": "Canal+", "id": 5358}], "release_date": "1992-10-09", "popularity": 0.975571672715268, "original_title": "Under Siege", "budget": 35000000, "cast": [{"name": "Steven Seagal", "character": "Casey Ryback", "id": 23880, "credit_id": "52fe44c0c3a36847f80a7d23", "cast_id": 1, "profile_path": "/f8OFR4h3ngyFesiudCygrNFdsCE.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "William Stranix", "id": 2176, "credit_id": "52fe44c0c3a36847f80a7d27", "cast_id": 2, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Gary Busey", "character": "Commander Krill", "id": 2048, "credit_id": "52fe44c0c3a36847f80a7d2b", "cast_id": 3, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Erika Eleniak", "character": "Jordan Tate", "id": 23764, "credit_id": "52fe44c0c3a36847f80a7d59", "cast_id": 11, "profile_path": "/7ZdUGY78qpB2MkTzAQvYEYzncwN.jpg", "order": 3}, {"name": "Patrick O'Neal", "character": "Capt. Adams", "id": 54123, "credit_id": "52fe44c0c3a36847f80a7d5d", "cast_id": 12, "profile_path": "/ao2jCOEIew0VuYRjYg9LiFWiYYA.jpg", "order": 4}, {"name": "Damian Chapa", "character": "Tackman", "id": 58646, "credit_id": "52fe44c0c3a36847f80a7d61", "cast_id": 13, "profile_path": "/e00LyDBIhDOFWgwfSU0wCTLL4ax.jpg", "order": 5}, {"name": "Michael Des Barres", "character": "Domiani", "id": 65334, "credit_id": "52fe44c0c3a36847f80a7d65", "cast_id": 14, "profile_path": "/kKXCivEKwYYVirhyIVsqxTlGi5.jpg", "order": 6}, {"name": "Andy Romano", "character": "Adm. Bates", "id": 32289, "credit_id": "52fe44c0c3a36847f80a7d69", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Colm Meaney", "character": "Doumer", "id": 17782, "credit_id": "53096ab0c3a368421b0033ac", "cast_id": 16, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 8}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe44c0c3a36847f80a7d31", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 5.8, "runtime": 103}, "4824": {"poster_path": "/6Hh2ROGTRKdbUfEXVVv5fNhmXK3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159330280, "overview": "Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, the perfectionist Jackal proves an elusive target for the men charged with the task of bringing him down: a deputy FBI boss and a former IRA terrorist.", "video": false, "id": 4824, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Jackal", "tagline": "How do you stop an assassin who has no identity?", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0119395", "adult": false, "backdrop_path": "/ckpSxGKHrzUg8Kh4zVvrDKofdeJ.jpg", "production_companies": [{"name": "Mutual Film Company", "id": 762}, {"name": "Universal Pictures", "id": 33}], "release_date": "1997-11-13", "popularity": 0.982609419899255, "original_title": "The Jackal", "budget": 60000000, "cast": [{"name": "Bruce Willis", "character": "The Jackal", "id": 62, "credit_id": "52fe43dcc3a36847f8074b4b", "cast_id": 11, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Richard Gere", "character": "Declan Mulqueen", "id": 1205, "credit_id": "52fe43dcc3a36847f8074b4f", "cast_id": 12, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Sidney Poitier", "character": "Carter Preston", "id": 16897, "credit_id": "52fe43dcc3a36847f8074b53", "cast_id": 13, "profile_path": "/9LV17m3H7nGCJTXg7pzhK857g6V.jpg", "order": 2}, {"name": "Diane Venora", "character": "Major Valentina Koslova", "id": 6200, "credit_id": "52fe43dcc3a36847f8074b57", "cast_id": 14, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "FBI Agent T. I. Witherspoon", "id": 18999, "credit_id": "52fe43dcc3a36847f8074b5b", "cast_id": 15, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "Jack Black", "character": "Ian Lamont", "id": 70851, "credit_id": "52fe43dcc3a36847f8074b5f", "cast_id": 16, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 5}, {"name": "Sophie Okonedo", "character": "Jamaican Girl", "id": 2598, "credit_id": "52fe43dcc3a36847f8074b63", "cast_id": 17, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 6}, {"name": "Ravil Isyanov", "character": "Ghazzi Murad", "id": 41742, "credit_id": "52fe43dcc3a36847f8074b67", "cast_id": 18, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 7}, {"name": "Maggie Castle", "character": "Maggie", "id": 41743, "credit_id": "52fe43dcc3a36847f8074b6b", "cast_id": 19, "profile_path": "/mNiLxh1UZWXrVoXow3PB094mYCL.jpg", "order": 8}, {"name": "Karen Kirschenbauer", "character": "Speaker", "id": 41744, "credit_id": "52fe43dcc3a36847f8074b6f", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Daniel Dae Kim", "character": "Akashi", "id": 18307, "credit_id": "52fe43dcc3a36847f8074b73", "cast_id": 21, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 10}, {"name": "Jim Grimshaw", "character": "Green Beret Colonel", "id": 41745, "credit_id": "52fe43dcc3a36847f8074b77", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Serge Houde", "character": "Beaufres", "id": 41746, "credit_id": "52fe43dcc3a36847f8074b7b", "cast_id": 23, "profile_path": "/txotfOoZhyo7DXaga0vmHkMS5aD.jpg", "order": 12}, {"name": "Mathilda May", "character": "Isabella Zanconia", "id": 44233, "credit_id": "52fe43dcc3a36847f8074b7f", "cast_id": 24, "profile_path": "/nNqf6LXM52lVKI7xFdynKorf1zH.jpg", "order": 13}, {"name": "Richard Lineback", "character": "FBI Agent McMurphy", "id": 3205, "credit_id": "52fe43dcc3a36847f8074b83", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "John Cunningham", "character": "FBI Director Donald Brown", "id": 167561, "credit_id": "52fe43dcc3a36847f8074b87", "cast_id": 26, "profile_path": "/mGwPTNlYQINjvCrQn0ZoAMCAPge.jpg", "order": 15}, {"name": "Tess Harper", "character": "The First Lady", "id": 41249, "credit_id": "52fe43dcc3a36847f8074b8b", "cast_id": 27, "profile_path": "/gJT9fBX04LjmbOzOzYcNbA2ZLF1.jpg", "order": 16}, {"name": "Leslie Phillips", "character": "Woolburton", "id": 10655, "credit_id": "52fe43dcc3a36847f8074b8f", "cast_id": 28, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 17}, {"name": "Stephen Spinella", "character": "Douglas", "id": 57093, "credit_id": "52fe43dcc3a36847f8074b93", "cast_id": 29, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 18}, {"name": "David Hayman", "character": "Terek Murad", "id": 54014, "credit_id": "52fe43dcc3a36847f8074b97", "cast_id": 30, "profile_path": "/tXhC9zlniU4SYpjOcMKxDIHdQBB.jpg", "order": 19}, {"name": "Steve Bassett", "character": "George Decker", "id": 940950, "credit_id": "52fe43dcc3a36847f8074b9b", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Yuri Stepanov", "character": "Victor Politovsky", "id": 83838, "credit_id": "52fe43dcc3a36847f8074b9f", "cast_id": 32, "profile_path": "/4myq2b2POYYuTj4IfOysv2wIlP0.jpg", "order": 21}, {"name": "Walt MacPherson", "character": "Dennehey", "id": 361969, "credit_id": "52fe43dcc3a36847f8074ba3", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Terrence Currier", "character": "Surgeon General", "id": 174241, "credit_id": "52fe43dcc3a36847f8074ba7", "cast_id": 34, "profile_path": "/e5IbBJ3I4BGFIiqG3MBADE8321n.jpg", "order": 23}, {"name": "Michael Caton-Jones", "character": "Man in Video", "id": 30365, "credit_id": "52fe43dcc3a36847f8074bab", "cast_id": 35, "profile_path": "/oKzuAA9S6VAb0qkmD9v8Z30jGSf.jpg", "order": 24}, {"name": "Laura Viederman", "character": "Woman in Video", "id": 1091218, "credit_id": "52fe43dcc3a36847f8074baf", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Peter Sullivan", "character": "Vasilov", "id": 173668, "credit_id": "52fe43dcc3a36847f8074bb3", "cast_id": 37, "profile_path": "/kp5FvZXp322EI04UMvcH3FKSEj7.jpg", "order": 26}, {"name": "Richard Cubison", "character": "General Belinko", "id": 1091222, "credit_id": "52fe43dcc3a36847f8074bb7", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Gregory Porter Miller", "character": "Paramedic", "id": 181359, "credit_id": "52fe43dcc3a36847f8074bbb", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Bob Kingdom", "character": "Ambassador Koldin", "id": 208490, "credit_id": "52fe43dcc3a36847f8074bbf", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "Murphy Guyer", "character": "NSC Representative", "id": 155547, "credit_id": "52fe43dcc3a36847f8074bc3", "cast_id": 41, "profile_path": "/vOuj13cuNCpKTewqN0pBG36Il4l.jpg", "order": 30}, {"name": "Philip Le Maistre", "character": "Bored Teenage Clerk", "id": 1015988, "credit_id": "52fe43dcc3a36847f8074bc7", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "James McCauley", "character": "CIA Representative #1", "id": 281638, "credit_id": "52fe43dcc3a36847f8074bcb", "cast_id": 43, "profile_path": "/qV0RMhgp8wksfc9QIOiFD7xF7St.jpg", "order": 32}, {"name": "Terry Loughlin", "character": "Davis", "id": 74587, "credit_id": "52fe43dcc3a36847f8074bcf", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Victor Sobchak", "character": "Doctor", "id": 1091236, "credit_id": "52fe43dcc3a36847f8074bd3", "cast_id": 45, "profile_path": null, "order": 34}, {"name": "Serge Christianssens", "character": "Immigration Officer", "id": 1091239, "credit_id": "52fe43dcc3a36847f8074bd7", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Boris Boscovic", "character": "Interrogator", "id": 1091241, "credit_id": "52fe43dcc3a36847f8074bdb", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Ewan Bailey", "character": "Prison Guard", "id": 203467, "credit_id": "52fe43dcc3a36847f8074bdf", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Danette Alberico", "character": "Woman with Champagne #1", "id": 1091246, "credit_id": "52fe43dcc3a36847f8074be3", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Debra Gano", "character": "Woman with Champagne #2", "id": 1091247, "credit_id": "52fe43dcc3a36847f8074be7", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "John Harrington Bland", "character": "Dave", "id": 169202, "credit_id": "52fe43dcc3a36847f8074beb", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Pamela Poitier", "character": "Law Clerk", "id": 1091248, "credit_id": "52fe43ddc3a36847f8074bef", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Jonathan Aris", "character": "Alexander Radzinski", "id": 28477, "credit_id": "52fe43ddc3a36847f8074bf3", "cast_id": 53, "profile_path": "/6RMuwGYfLLGq01LNGBydj9jpTWn.jpg", "order": 42}, {"name": "Eddie Bo Smith Jr.", "character": "Washington Cop", "id": 86573, "credit_id": "52fe43ddc3a36847f8074bf7", "cast_id": 54, "profile_path": null, "order": 43}, {"name": "Larry King", "character": "Himself", "id": 44127, "credit_id": "52fe43ddc3a36847f8074bfb", "cast_id": 55, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 44}, {"name": "Dan Ziskie", "character": "CIA Representative #2", "id": 61323, "credit_id": "52fe43ddc3a36847f8074bff", "cast_id": 56, "profile_path": "/c4TZVcVFAmsqDUSPNhEQ73LFn4s.jpg", "order": 45}, {"name": "Gayle Jessup", "character": "Reporter", "id": 1091249, "credit_id": "52fe43ddc3a36847f8074c03", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Bill Collins", "character": "Medic", "id": 1091250, "credit_id": "52fe43ddc3a36847f8074c07", "cast_id": 58, "profile_path": null, "order": 47}, {"name": "David Gene Gibbs", "character": "Pilot", "id": 1091251, "credit_id": "52fe43ddc3a36847f8074c0b", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "James M. Helkey", "character": "Co-Pilot", "id": 1091252, "credit_id": "52fe43ddc3a36847f8074c0f", "cast_id": 60, "profile_path": null, "order": 49}], "directors": [{"name": "Michael Caton-Jones", "department": "Directing", "job": "Director", "credit_id": "52fe43dcc3a36847f8074b11", "profile_path": "/oKzuAA9S6VAb0qkmD9v8Z30jGSf.jpg", "id": 30365}], "vote_average": 6.1, "runtime": 124}, "11683": {"poster_path": "/xE1ZZ1y5rfqQfkR5fGMCLlsMQff.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46770602, "overview": "The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city.", "video": false, "id": 11683, "genres": [{"id": 27, "name": "Horror"}], "title": "Land of the Dead", "tagline": "The dead shall inherit the Earth.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/inPPfnJ9Wzc9rg1MpkPm0P3D9rJ.jpg", "poster_path": "/mSJ20RTWWgtt3aTyn1iwNZ9fbYl.jpg", "id": 261590, "name": "Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0418819", "adult": false, "backdrop_path": "/auPv1B8wVHnDn9ypAxeit44CFMN.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2005-06-24", "popularity": 0.42318162682723, "original_title": "Land of the Dead", "budget": 15000000, "cast": [{"name": "Simon Baker", "character": "Riley", "id": 1284159, "credit_id": "52fe44789251416c75035ef1", "cast_id": 32, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Cholo", "id": 5723, "credit_id": "52fe44789251416c75035e97", "cast_id": 11, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "Kaufman", "id": 2778, "credit_id": "52fe44789251416c75035e9b", "cast_id": 12, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Robert Joy", "character": "Charlie", "id": 19976, "credit_id": "52fe44789251416c75035e9f", "cast_id": 13, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 3}, {"name": "Asia Argento", "character": "Slack", "id": 18514, "credit_id": "52fe44789251416c75035ea3", "cast_id": 14, "profile_path": "/dCbZQbhfpJqPHYXGyMNf5LT5pBz.jpg", "order": 4}, {"name": "Eugene Clark", "character": "Big Daddy", "id": 61660, "credit_id": "52fe44789251416c75035ea7", "cast_id": 15, "profile_path": "/v1iJYDA4vUWZhef9GE38US43zEB.jpg", "order": 5}, {"name": "Joanne Boland", "character": "Pretty Boy", "id": 99181, "credit_id": "52fe44789251416c75035eab", "cast_id": 16, "profile_path": "/i3m6r3qqI5Mefww6QVCqddWWYhZ.jpg", "order": 6}, {"name": "Tony Nappo", "character": "Foxy", "id": 76528, "credit_id": "52fe44789251416c75035eaf", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Jennifer Baxter", "character": "Number 9", "id": 99182, "credit_id": "52fe44789251416c75035eb3", "cast_id": 18, "profile_path": "/bmIDtgob2MYxAa80pzfjvwYTnNq.jpg", "order": 8}, {"name": "Boyd Banks", "character": "Butcher", "id": 20196, "credit_id": "52fe44789251416c75035eb7", "cast_id": 19, "profile_path": "/mDsIaLKyGqyV1Nt0pV9joGkQNSP.jpg", "order": 9}, {"name": "Shawn Roberts", "character": "Mike", "id": 81097, "credit_id": "52fe44789251416c75035ebb", "cast_id": 20, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 10}, {"name": "Alan van Sprang", "character": "Brubaker", "id": 99183, "credit_id": "52fe44789251416c75035ebf", "cast_id": 21, "profile_path": "/les7cqXIk3UwCT025wSJyumFryX.jpg", "order": 11}, {"name": "Krista Bridges", "character": "Motown", "id": 43257, "credit_id": "52fe44789251416c75035ec3", "cast_id": 22, "profile_path": "/pikldnlwHpuxEKQGiVJHIOB3O8w.jpg", "order": 12}, {"name": "Phil Fondacaro", "character": "Chihuahua", "id": 12662, "credit_id": "52fe44789251416c75035ec7", "cast_id": 23, "profile_path": "/3Ao8VPvlytIm3DWFffdSPxwxFdC.jpg", "order": 13}, {"name": "Peter Outerbridge", "character": "Styles", "id": 12978, "credit_id": "52fe44789251416c75035ecb", "cast_id": 24, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 14}, {"name": "Simon Pegg", "character": "Photo Booth Zombie", "id": 11108, "credit_id": "52fe44789251416c75035ecf", "cast_id": 25, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 15}, {"name": "Edgar Wright", "character": "Photo Booth Zombie", "id": 11090, "credit_id": "52fe44789251416c75035ed3", "cast_id": 26, "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "order": 16}, {"name": "Gregory Nicotero", "character": "Bridgekeeper Zombie", "id": 59287, "credit_id": "52fe44789251416c75035ed7", "cast_id": 27, "profile_path": "/jedpZq1cMzmixzznxzgRZAIzodY.jpg", "order": 17}, {"name": "Tom Savini", "character": "Machete Zombie", "id": 11161, "credit_id": "52fe44789251416c75035edb", "cast_id": 28, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 18}], "directors": [{"name": "George A. Romero", "department": "Directing", "job": "Director", "credit_id": "52fe44789251416c75035e63", "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "id": 14999}], "vote_average": 5.6, "runtime": 93}, "11688": {"poster_path": "/klhsrqyhvFaoM6Rwjo9dFPYJQSK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 169327687, "overview": "Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.", "video": false, "id": 11688, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Emperor's New Groove", "tagline": "It's All About.....ME!", "vote_count": 362, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hrm42649hDK4zCSEZlRWX1k1qS2.jpg", "poster_path": "/c5xqFlKELZOlO7LbgdlbBBKnkny.jpg", "id": 178117, "name": "The Emperor's New Groove Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120917", "adult": false, "backdrop_path": "/Aczojyb0VFBNpFrxARqeCtdd2gA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2000-12-09", "popularity": 1.40777283374237, "original_title": "The Emperor's New Groove", "budget": 100000000, "cast": [{"name": "David Spade", "character": "Kuzco (voice)", "id": 60950, "credit_id": "52fe44799251416c750360c7", "cast_id": 11, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 0}, {"name": "John Goodman", "character": "Patcha (voice)", "id": 1230, "credit_id": "52fe44799251416c750360cf", "cast_id": 13, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Eartha Kitt", "character": "Yzma (voice)", "id": 70243, "credit_id": "52fe44799251416c750360d7", "cast_id": 15, "profile_path": "/m3Ozxzlnl474Hjpe6OYkRNGmKRm.jpg", "order": 4}, {"name": "Patrick Warburton", "character": "Kronk (voice)", "id": 9657, "credit_id": "52fe44799251416c750360df", "cast_id": 17, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 6}, {"name": "Wendie Malick", "character": "Chicha, Pacha's Wife (voice)", "id": 61980, "credit_id": "5458e5e0c3a3683997001e75", "cast_id": 19, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 8}, {"name": "Kellyann Kelso", "character": "Chaca, Pacha's Daughter (voice)", "id": 1381716, "credit_id": "5458e5fac3a3683997001e7a", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Eli Russell Linnetz", "character": "Tipo, Pacha's Son (voice)", "id": 102320, "credit_id": "5458e614c3a36839a4001d9b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Tom Jones", "character": "Theme Song Guy", "id": 1017762, "credit_id": "5458e632c3a368398f001d58", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Stephen J. Anderson", "character": "Stephen J. Anderson", "id": 16842, "credit_id": "5458e6480e0a261165001dd3", "cast_id": 23, "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "order": 12}, {"name": "Bob Bergen", "character": "Bucky the Squirrel", "id": 78317, "credit_id": "5458e65a0e0a261162001db1", "cast_id": 24, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 13}, {"name": "Patti Deutsch", "character": "Waitress", "id": 91024, "credit_id": "5458e66fc3a3683997001e83", "cast_id": 25, "profile_path": "/6eTkh2shxCOo2R90RavfqSzrEY9.jpg", "order": 14}, {"name": "John Fiedler", "character": "Old Man", "id": 5247, "credit_id": "5458e67e0e0a26116f001cb8", "cast_id": 26, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 15}], "directors": [{"name": "Mark Dindal", "department": "Directing", "job": "Director", "credit_id": "52fe44799251416c7503608d", "profile_path": "/8wetJbZVXQrdfU4KaQBEvTSNkRA.jpg", "id": 61411}], "vote_average": 6.8, "runtime": 78}, "10140": {"poster_path": "/pRzEyrMSyvpHf92EhsVSg9Yr81t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415686217, "overview": "This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.", "video": false, "id": 10140, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Chronicles of Narnia: The Voyage of the Dawn Treader", "tagline": "Return to magic. Return to hope. Return to Narnia.", "vote_count": 518, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ojjzZUQlqKTsN1T7s5OAVZSjYMH.jpg", "poster_path": "/sh6Kn8VBfXotJ6qsvJkdfscxXKR.jpg", "id": 420, "name": "The Chronicles of Narnia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0980970", "adult": false, "backdrop_path": "/dAc3Ob868XGnAX8uOptb7HWx0In.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "Dune Entertainment", "id": 444}, {"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2010-12-10", "popularity": 1.37206794774282, "original_title": "The Chronicles of Narnia: The Voyage of the Dawn Treader", "budget": 155000000, "cast": [{"name": "Skandar Keynes", "character": "Edmund Prevensie", "id": 5527, "credit_id": "52fe43339251416c750075f3", "cast_id": 5, "profile_path": "/7Wc58Opf4EDjHDotwjK2XLTFLqU.jpg", "order": 0}, {"name": "Georgie Henley", "character": "Lucy Pevensie", "id": 5526, "credit_id": "52fe43339251416c750075f7", "cast_id": 6, "profile_path": "/u8zyLaHTqx4V8LyHnYL2vDsxbrC.jpg", "order": 1}, {"name": "Simon Pegg", "character": "Reepicheep (Voice)", "id": 11108, "credit_id": "52fe43339251416c750075fb", "cast_id": 8, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 2}, {"name": "Gary Sweet", "character": "Lord Drinian", "id": 75170, "credit_id": "52fe43339251416c750075ff", "cast_id": 9, "profile_path": "/t7DfHinQBAXxIuddZL7r1ke7rZX.jpg", "order": 3}, {"name": "Arthur Angel", "character": "Rhince", "id": 107474, "credit_id": "52fe43339251416c75007603", "cast_id": 10, "profile_path": "/5Zafbt1us6XgqHfBs7iyZ8NnYN1.jpg", "order": 4}, {"name": "Tilda Swinton", "character": "The White Witch", "id": 3063, "credit_id": "52fe43339251416c75007607", "cast_id": 11, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 5}, {"name": "Tony Nixon", "character": "Rynelf", "id": 143270, "credit_id": "52fe43349251416c7500760b", "cast_id": 12, "profile_path": "/7YqSwVuWZXmkQg2scLOXLzaVTCz.jpg", "order": 6}, {"name": "Shane Rangi", "character": "Tavros the Minotaur", "id": 25134, "credit_id": "52fe43349251416c7500760f", "cast_id": 13, "profile_path": "/27LjnxN8dMQ3r2yRatAoht3iDhJ.jpg", "order": 7}, {"name": "Colin Moody", "character": "Auctioneer", "id": 143271, "credit_id": "52fe43349251416c75007613", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ben Barnes", "character": "Caspian", "id": 25130, "credit_id": "52fe43349251416c75007617", "cast_id": 15, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 9}, {"name": "Will Poulter", "character": "Eustace", "id": 93491, "credit_id": "52fe43349251416c75007621", "cast_id": 18, "profile_path": "/d3wR8o9y9jmTha426ms1m70h0HC.jpg", "order": 10}, {"name": "Terry Norris", "character": "Lord Bern", "id": 187107, "credit_id": "52fe43349251416c750076b5", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "Bruce Spence", "character": "Lord Rhoop", "id": 27752, "credit_id": "52fe43349251416c750076b9", "cast_id": 44, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 12}, {"name": "Bille Brown", "character": "Coriakin", "id": 42393, "credit_id": "52fe43349251416c750076bd", "cast_id": 45, "profile_path": "/u6VUTGmbaSt0LfvbXMoY1P2weh8.jpg", "order": 13}, {"name": "Laura Brent", "character": "Liliandil", "id": 962438, "credit_id": "52fe43349251416c750076c1", "cast_id": 46, "profile_path": null, "order": 14}, {"name": "Anna Popplewell", "character": "Susan Pevensie", "id": 5529, "credit_id": "52fe43349251416c750076c5", "cast_id": 47, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 15}, {"name": "William Moseley", "character": "Peter Pevensie", "id": 5528, "credit_id": "52fe43349251416c750076c9", "cast_id": 48, "profile_path": "/zBJ00uNw4nK0gFetNfnVmbGC5ly.jpg", "order": 16}, {"name": "Liam Neeson", "character": "Aslan", "id": 3896, "credit_id": "547e3f6b9251411f4e0051c4", "cast_id": 49, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 17}], "directors": [{"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe43349251416c7500761d", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.0, "runtime": 113}, "11690": {"poster_path": "/oIOzNshRATOn6LiD4GEhznVHYd9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11806119, "overview": "Frank Dux has entered the \"kumite\", an illegal underground martial-arts competition where serious injury and even death are not unknown. Chong Li, a particularly ruthless and vicious fighter is the favorite, but then again Dux has not fought him yet.", "video": false, "id": 11690, "genres": [{"id": 28, "name": "Action"}], "title": "Bloodsport", "tagline": "The true story of an American ninja.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1DXtjAAaK7597GV5MSZH6nn0uqS.jpg", "poster_path": "/sTqv7FQalXNVGSpfSJaWek077w9.jpg", "id": 36694, "name": "Bloodsport Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092675", "adult": false, "backdrop_path": "/5xrZTFHhAdlg0WtjkkGDqf4Knck.jpg", "production_companies": [{"name": "Cannon Films", "id": 4110}], "release_date": "1988-02-26", "popularity": 1.32233773943159, "original_title": "Bloodsport", "budget": 1500000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Frank Dux", "id": 15111, "credit_id": "52fe447a9251416c750361e3", "cast_id": 11, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Donald Gibb", "character": "Ray Jackson", "id": 70254, "credit_id": "52fe447a9251416c750361e7", "cast_id": 12, "profile_path": "/drLNhfpcY1A8WxTVUE05ja47K9q.jpg", "order": 1}, {"name": "Ken Siu", "character": "Victor Lin (as Kenneth Siu)", "id": 70255, "credit_id": "52fe447a9251416c750361eb", "cast_id": 13, "profile_path": "/iwVzP5JgHifEPu8VqE0GZRwmN8h.jpg", "order": 2}, {"name": "Bolo Yeung", "character": "Chong Li", "id": 58123, "credit_id": "52fe447a9251416c750361ef", "cast_id": 14, "profile_path": "/kChDa118ic0VcUo9kPMX7KsLzxG.jpg", "order": 3}, {"name": "Leah Ayres", "character": "Janice Kent", "id": 114809, "credit_id": "52fe447a9251416c750361f9", "cast_id": 16, "profile_path": "/1LF7Ldvr9gKYKHBwXAT1UT6HEqs.jpg", "order": 4}, {"name": "Norman Burton", "character": "Helmer", "id": 10195, "credit_id": "52fe447a9251416c750361fd", "cast_id": 17, "profile_path": "/ezoKMuCDcWSnDaB5pVWMyj21E6H.jpg", "order": 5}, {"name": "Forest Whitaker", "character": "Rawlins", "id": 2178, "credit_id": "52fe447a9251416c75036201", "cast_id": 18, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 6}, {"name": "Roy Chiao", "character": "Senzo Tanaka", "id": 695, "credit_id": "52fe447a9251416c75036205", "cast_id": 19, "profile_path": "/6gBxdImc8eGHeDDEJGFiGrIwx6O.jpg", "order": 7}, {"name": "Philip Chan Yan-Kin", "character": "Captain Chen", "id": 70591, "credit_id": "52fe447a9251416c75036209", "cast_id": 20, "profile_path": "/n1o0tAeQgZWJkJJZKkhIcP6PIjC.jpg", "order": 8}], "directors": [{"name": "Newt Arnold", "department": "Directing", "job": "Director", "credit_id": "52fe447a9251416c750361af", "profile_path": null, "id": 70250}], "vote_average": 6.4, "runtime": 92}, "254473": {"poster_path": "/v6M79FGu0G9KSR7bvXL76NbwyqC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In the criminal underworld of Detroit, the streets are overrun with violence and drugs and the hand of corruption reaches into the lives of everyone; well almost everyone. For Lino (David Belle) every day is a fight to live an honest life. But when a drug lord kidnaps his girlfriend, Lino is forced to team up with Damien Collier (Paul Walker), an undercover cop who\u2019s been tracking this king pin's involvement in something even more sinister \u2013 a plot to devastate the entire city. Together they uncover a trail of corruption that leads all the way to the top.", "video": false, "id": 254473, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Brick Mansions", "tagline": "Undercover and never Outgunned", "vote_count": 235, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430612", "adult": false, "backdrop_path": "/cmVWRQn2zKPL7NEViKkWOepLM6s.jpg", "production_companies": [{"name": "D8", "id": 32999}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 23616}], "release_date": "2014-04-25", "popularity": 1.4215603280552, "original_title": "Brick Mansions", "budget": 0, "cast": [{"name": "Paul Walker", "character": "Damien", "id": 8167, "credit_id": "52fe4ebd9251416c9113c0ef", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "David Belle", "character": "Lino", "id": 62439, "credit_id": "52fe4ebd9251416c9113c0f3", "cast_id": 2, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 1}, {"name": "RZA", "character": "Tremaine", "id": 150, "credit_id": "52fe4ebd9251416c9113c0f7", "cast_id": 3, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 2}, {"name": "Robert Maillet", "character": "Yeti", "id": 112692, "credit_id": "52fe4ebd9251416c9113c0fb", "cast_id": 4, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 3}, {"name": "Carlo Rota", "character": "George the Greek", "id": 54793, "credit_id": "52fe4ebd9251416c9113c0ff", "cast_id": 5, "profile_path": "/arfSlKjQqBWV77Tyu0jjASnvFII.jpg", "order": 4}, {"name": "Kalinka Petrie", "character": "Mayor's Assistant", "id": 1287272, "credit_id": "52fe4ebd9251416c9113c103", "cast_id": 6, "profile_path": "/8luaF8DGCVJqU9UdJSp5Oy7sddn.jpg", "order": 5}, {"name": "Bruce Ramsay", "character": "Mayor", "id": 7039, "credit_id": "52fe4ebd9251416c9113c107", "cast_id": 7, "profile_path": "/o1x3V0eLGQW5B78etUuTIxvcvrH.jpg", "order": 6}, {"name": "Kwasi Songui", "character": "Big Cecil", "id": 207881, "credit_id": "52fe4ebd9251416c9113c10b", "cast_id": 8, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 7}, {"name": "Catalina Denis", "character": "Lola", "id": 113613, "credit_id": "52fe4ebd9251416c9113c10f", "cast_id": 9, "profile_path": "/1oHB2i3Wqt30nyzgSmXURYl6Xa0.jpg", "order": 8}, {"name": "Ayisha Issa", "character": "Rayzah", "id": 231517, "credit_id": "52fe4ebd9251416c9113c113", "cast_id": 10, "profile_path": "/lCrVPwyBgXDBvuwY7NTwZpG8FYu.jpg", "order": 9}, {"name": "Jade Hassoun\u00e9", "character": "Peter", "id": 1063927, "credit_id": "52fe4ebd9251416c9113c117", "cast_id": 11, "profile_path": null, "order": 10}], "directors": [{"name": "Camille Delamarre", "department": "Directing", "job": "Director", "credit_id": "52fe4ebd9251416c9113c11d", "profile_path": null, "id": 928490}], "vote_average": 5.7, "runtime": 90}, "11697": {"poster_path": "/acDlmsvUjuD5E2nmf5QWIu1EfPX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.", "video": false, "id": 11697, "genres": [{"id": 37, "name": "Western"}], "title": "The Man Who Shot Liberty Valance", "tagline": "Together For The First Time - James Stewart - John Wayne - in the masterpiece of four-time Academy Award winner John Ford", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056217", "adult": false, "backdrop_path": "/i5BVAFExVw7IyohdXF8sUcP3Ha0.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "John Ford Productions", "id": 10698}], "release_date": "1962-04-22", "popularity": 0.449782937003921, "original_title": "The Man Who Shot Liberty Valance", "budget": 3200000, "cast": [{"name": "John Wayne", "character": "Tom Doniphon", "id": 4165, "credit_id": "52fe447b9251416c750364df", "cast_id": 1, "profile_path": "/8I83wLVUil6tIe50yb82LdEggFR.jpg", "order": 0}, {"name": "James Stewart", "character": "Ransom Stoddard", "id": 854, "credit_id": "52fe447b9251416c750364e3", "cast_id": 2, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 1}, {"name": "Vera Miles", "character": "Hallie Stoddard", "id": 7303, "credit_id": "52fe447b9251416c750364e7", "cast_id": 3, "profile_path": "/qWP9L969DOSFgBhRV2Ik2ve8Z4r.jpg", "order": 2}, {"name": "Lee Marvin", "character": "Liberty Valance", "id": 18391, "credit_id": "52fe447b9251416c750364eb", "cast_id": 4, "profile_path": "/1UdUtkWNbgU0pTolZKRkwLBLSUt.jpg", "order": 3}, {"name": "Edmond O'Brien", "character": "Dutton Peabody", "id": 8254, "credit_id": "52fe447b9251416c7503651f", "cast_id": 13, "profile_path": "/w3xvMmH5WfHZ5y7ldeIdX2oghVN.jpg", "order": 4}, {"name": "Andy Devine", "character": "Marshal Link Appleyard", "id": 14966, "credit_id": "52fe447b9251416c75036523", "cast_id": 14, "profile_path": "/w4tLltNhtOqQXJzju4TzUJRiesg.jpg", "order": 5}, {"name": "Ken Murray", "character": "Doc Willoughby", "id": 176543, "credit_id": "52fe447b9251416c75036527", "cast_id": 15, "profile_path": "/aW4Nngi8baf4sOHs7hwMIUZ5yDW.jpg", "order": 6}, {"name": "John Carradine", "character": "Maj. Cassius Starbuckle", "id": 8516, "credit_id": "52fe447b9251416c7503652b", "cast_id": 16, "profile_path": "/iWHObxmwHuUS7g4uJFT2SS2hHXu.jpg", "order": 7}, {"name": "Jeanette Nolan", "character": "Nora Ericson", "id": 7520, "credit_id": "52fe447b9251416c7503652f", "cast_id": 17, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 8}, {"name": "John Qualen", "character": "Peter Ericson", "id": 4119, "credit_id": "52fe447b9251416c75036533", "cast_id": 18, "profile_path": "/nbXFHZo4TUpNnFGnADXfPwQIvEn.jpg", "order": 9}, {"name": "Willis Bouchey", "character": "Jason Tully - Conductor", "id": 83149, "credit_id": "52fe447b9251416c75036537", "cast_id": 19, "profile_path": "/uHmTJiyR6srsiQRJct7cUlwibCd.jpg", "order": 10}, {"name": "Carleton Young", "character": "Maxwell Scott", "id": 2098, "credit_id": "52fe447b9251416c7503653b", "cast_id": 20, "profile_path": "/lqKVSnYegb7WprJk2bcSuzSqGas.jpg", "order": 11}, {"name": "Woody Strode", "character": "Pompey", "id": 4963, "credit_id": "52fe447b9251416c7503653f", "cast_id": 21, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 12}, {"name": "Denver Pyle", "character": "Amos Carruthers", "id": 6462, "credit_id": "52fe447b9251416c75036543", "cast_id": 22, "profile_path": "/cnO648FW7r1NQqHZsPkJBACfXal.jpg", "order": 13}, {"name": "Strother Martin", "character": "Floyd", "id": 8260, "credit_id": "52fe447b9251416c75036547", "cast_id": 23, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 14}, {"name": "Lee Van Cleef", "character": "Reese", "id": 4078, "credit_id": "5377dd18c3a3685542002286", "cast_id": 27, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 15}], "directors": [{"name": "John Ford", "department": "Directing", "job": "Director", "credit_id": "52fe447b9251416c750364f1", "profile_path": "/nwkPz2ytSBiv1zFhrcg4kYJIK3d.jpg", "id": 8500}], "vote_average": 6.6, "runtime": 123}, "77234": {"poster_path": "/71KAIi3vVEHtjwrLVLtkBUiLEGg.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the moral values of a longtime wetwork black ops agent is tested during his last operation, he receives an unfavorable psych evaluation. Now he is given a break and a seemingly uncomplicated assignment of simply protecting the security of a young female code announcer, code resources and remote station they are assigned to. After an ambush and one phone call later, it becomes a complicated fight for their survival.", "video": false, "id": 77234, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Numbers Station", "tagline": "The code has never been compromised. Until now.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1659338", "adult": false, "backdrop_path": "/urZuFzVm9rmjcHWeGgYeauNc0Wu.jpg", "production_companies": [{"name": "ContentFilm", "id": 1420}, {"name": "Echo Lake Entertainment", "id": 22308}, {"name": "Piccadilly Pictures", "id": 22309}, {"name": "Atlantic Swiss Productions", "id": 22310}, {"name": "Blue Lake Media Fund", "id": 22311}, {"name": "Furst Films", "id": 3135}, {"name": "Matador Pictures", "id": 707}, {"name": "uFilm", "id": 8676}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}], "release_date": "2013-04-26", "popularity": 0.668816156707696, "original_title": "The Numbers Station", "budget": 10000000, "cast": [{"name": "John Cusack", "character": "Emerson", "id": 3036, "credit_id": "52fe4963c3a368484e128d6d", "cast_id": 2, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Katherine", "id": 50463, "credit_id": "52fe4963c3a368484e128d71", "cast_id": 3, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Hannah Murray", "character": "Rachel Davis", "id": 213395, "credit_id": "52fe4963c3a368484e128d75", "cast_id": 4, "profile_path": "/k8jpr1JwRcIFUp3l2Ugs1QulQbB.jpg", "order": 2}, {"name": "Liam Cunningham", "character": "Grey", "id": 15498, "credit_id": "52fe4963c3a368484e128d79", "cast_id": 5, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 3}, {"name": "Lucy Griffiths", "character": "Meredith", "id": 205257, "credit_id": "52fe4963c3a368484e128d7d", "cast_id": 6, "profile_path": "/haPj7VrjPPZJITPup5gQNKBM7mV.jpg", "order": 4}, {"name": "Bryan Dick", "character": "David", "id": 47703, "credit_id": "52fe4963c3a368484e128d81", "cast_id": 7, "profile_path": "/1kBfn4B2bELdID5af1DYK2AU73M.jpg", "order": 5}, {"name": "Richard Brake", "character": "Max", "id": 3901, "credit_id": "52fe4963c3a368484e128d85", "cast_id": 8, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 6}], "directors": [{"name": "Kasper Barfoed", "department": "Directing", "job": "Director", "credit_id": "52fe4963c3a368484e128d69", "profile_path": null, "id": 145867}], "vote_average": 5.5, "runtime": 90}, "11699": {"poster_path": "/aznE6p9hytgOXHOw6Pq9hStuPtz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10589102, "overview": "Terrence McDonagh, a New Orleans Police sergeant, who starts out as a good cop, receiving a medal and a promotion to lieutenant for heroism during Hurricane Katrina. During his heroic act, McDonagh injures his back and later becomes addicted to prescription pain medication. McDonagh finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants.", "video": false, "id": 11699, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Bad Lieutenant: Port of Call - New Orleans", "tagline": "The only criminal he can't catch is himself.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1095217", "adult": false, "backdrop_path": "/5d8D1wjhHM3iSo8lAb63wV5cGvW.jpg", "production_companies": [{"name": "Nu Image Films", "id": 925}, {"name": "Millennium Films", "id": 10254}, {"name": "Edward R. Pressman Film", "id": 6455}, {"name": "Saturn Films", "id": 831}, {"name": "Polsky Films", "id": 10478}, {"name": "Osiris Productions", "id": 11265}, {"name": "Lieutenant Productions", "id": 11266}], "release_date": "2009-11-20", "popularity": 0.56441801266418, "original_title": "The Bad Lieutenant: Port of Call - New Orleans", "budget": 25000000, "cast": [{"name": "Nicolas Cage", "character": "Terence McDonagh", "id": 2963, "credit_id": "52fe447b9251416c750365f9", "cast_id": 15, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 2}, {"name": "Eva Mendes", "character": "Frankie Donnenfeld", "id": 8170, "credit_id": "52fe447b9251416c75036601", "cast_id": 17, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Val Kilmer", "character": "Stevie Pruit", "id": 5576, "credit_id": "52fe447b9251416c750365fd", "cast_id": 16, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 3}, {"name": "Fairuza Balk", "character": "Heidi", "id": 826, "credit_id": "52fe447b9251416c7503660b", "cast_id": 20, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 4}, {"name": "Shawn Hatosy", "character": "Armand Benoit", "id": 52647, "credit_id": "52fe447b9251416c7503660f", "cast_id": 21, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 5}, {"name": "Jennifer Coolidge", "character": "Genvieve", "id": 38334, "credit_id": "52fe447b9251416c75036613", "cast_id": 22, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 6}, {"name": "Tom Bower", "character": "Pat McDonagh", "id": 19453, "credit_id": "52fe447b9251416c75036617", "cast_id": 23, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 7}, {"name": "Vondie Curtis-Hall", "character": "Captain James Brasser", "id": 6198, "credit_id": "52fe447b9251416c7503661b", "cast_id": 24, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 8}, {"name": "Irma P. Hall", "character": "Binnie Rogers", "id": 43853, "credit_id": "52fe447b9251416c7503661f", "cast_id": 26, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 10}, {"name": "Shea Whigham", "character": "Justin", "id": 74242, "credit_id": "52fe447b9251416c75036623", "cast_id": 27, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 11}, {"name": "Michael Shannon", "character": "Mundt", "id": 335, "credit_id": "52fe447c9251416c75036651", "cast_id": 36, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 12}, {"name": "Brad Dourif", "character": "Ned Schoenholtz", "id": 1370, "credit_id": "52fe447c9251416c75036655", "cast_id": 37, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 13}, {"name": "Xzibit", "character": "Big Fate", "id": 336, "credit_id": "52fe447c9251416c7503669b", "cast_id": 49, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 14}], "directors": [{"name": "Werner Herzog", "department": "Directing", "job": "Director", "credit_id": "52fe447b9251416c750365f5", "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "id": 6818}], "vote_average": 5.6, "runtime": 122}, "3509": {"poster_path": "/wS0QhF2RTwap84BKGr9hKHzNAMx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5480996, "overview": "An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.", "video": false, "id": 3509, "genres": [{"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "A Scanner Darkly", "tagline": "Everything Is Not Going To Be OK", "vote_count": 125, "homepage": "http://www.warnerbros.com/movies/home-entertainment/scanner-darkly-a/d7c290af-c285-41c4-a4d6-efb3a86b3893.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405296", "adult": false, "backdrop_path": "/mjTAZvlmhSyqcpMSfkgGE1iEViT.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Thousand Words", "id": 380}, {"name": "Detour Filmproduction", "id": 11510}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2006-07-07", "popularity": 0.820892397327655, "original_title": "A Scanner Darkly", "budget": 8500000, "cast": [{"name": "Keanu Reeves", "character": "Fred/Bob Arctor", "id": 6384, "credit_id": "52fe4397c3a36847f8060009", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Donna Hawthorne", "id": 1920, "credit_id": "52fe4397c3a36847f8060055", "cast_id": 17, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Ernie Luckman", "id": 57755, "credit_id": "52fe4397c3a36847f8060059", "cast_id": 18, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "Robert Downey Jr.", "character": "James Barris", "id": 3223, "credit_id": "52fe4397c3a36847f80600af", "cast_id": 35, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 3}, {"name": "Mitch Baker", "character": "Brown Bear Lodge Host", "id": 32238, "credit_id": "52fe4397c3a36847f806005d", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Steven Chester Prince", "character": "Cop", "id": 32239, "credit_id": "52fe4397c3a36847f8060061", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Natasha Valdez", "character": "Waitress", "id": 32240, "credit_id": "52fe4397c3a36847f8060065", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Angela Rawna", "character": "Doctor 1", "id": 32241, "credit_id": "52fe4397c3a36847f8060069", "cast_id": 22, "profile_path": "/pUrAKgwIORAglzoCYtnWGJPnOfB.jpg", "order": 7}, {"name": "Chamblee Ferguson", "character": "Doctor 2", "id": 32242, "credit_id": "52fe4397c3a36847f806006d", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Melody Chase", "character": "Arctor's Wife", "id": 32243, "credit_id": "52fe4397c3a36847f8060071", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Rory Cochrane", "character": "Charles Freck", "id": 51792, "credit_id": "52fe4397c3a36847f8060075", "cast_id": 25, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 10}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4397c3a36847f806000f", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 6.7, "runtime": 100}, "82505": {"poster_path": "/847sqy3lbPmtA3rWwghSaWmkxtf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A mother and daughter move to a new town and find themselves living next door to a house where a young girl murdered her parents. When the daughter befriends the surviving son, she learns the story is far from over.", "video": false, "id": 82505, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "House at the End of the Street", "tagline": "Fear reaches out... for the girl next door.", "vote_count": 163, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1582507", "adult": false, "backdrop_path": "/xRfK7mUyMx9a0tGIc7NiHts2mgd.jpg", "production_companies": [{"name": "A Bigger Boat", "id": 5855}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Relativity Media", "id": 7295}], "release_date": "2012-09-21", "popularity": 0.831889459936302, "original_title": "House at the End of the Street", "budget": 6900000, "cast": [{"name": "Jennifer Lawrence", "character": "Elissa", "id": 72129, "credit_id": "52fe48589251416c9108903f", "cast_id": 8, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Max Thieriot", "character": "Ryan", "id": 41883, "credit_id": "52fe48589251416c91089037", "cast_id": 6, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 1}, {"name": "Elisabeth Shue", "character": "Sarah", "id": 1951, "credit_id": "52fe48589251416c9108903b", "cast_id": 7, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 2}, {"name": "Gil Bellows", "character": "Weaver", "id": 6575, "credit_id": "52fe48589251416c91089049", "cast_id": 10, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 3}, {"name": "Nolan Gerard Funk", "character": "Tyler Reynolds", "id": 82819, "credit_id": "52fe48589251416c9108904d", "cast_id": 11, "profile_path": "/ngXbdQRDXQRWpHgWrrjyunWMKai.jpg", "order": 4}, {"name": "Krista Bridges", "character": "Mary Jacobson", "id": 43257, "credit_id": "52fe48589251416c91089051", "cast_id": 12, "profile_path": "/pikldnlwHpuxEKQGiVJHIOB3O8w.jpg", "order": 5}, {"name": "Jonathan Malen", "character": "Ray", "id": 116638, "credit_id": "52fe48589251416c91089055", "cast_id": 13, "profile_path": "/7JyXJnXZ1327otRcmGG3OdfbqMK.jpg", "order": 6}, {"name": "Joy Tanner", "character": "Bonnie Reynolds", "id": 168615, "credit_id": "52fe48589251416c91089059", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Allie MacDonald", "character": "Jillian", "id": 226833, "credit_id": "52fe48589251416c9108905d", "cast_id": 15, "profile_path": "/mr8tHCQqhCqD46ssvqOXc66AzIF.jpg", "order": 8}, {"name": "Jon McLaren", "character": "Zak", "id": 225418, "credit_id": "52fe48589251416c91089061", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jordan Hayes", "character": "Penn State Carrie Anne", "id": 239464, "credit_id": "52fe48589251416c91089065", "cast_id": 17, "profile_path": "/aWV8O05SJuYRJ1ZZqUJ9YNdgoBh.jpg", "order": 10}, {"name": "Will Seatle Bowes", "character": "Robbie", "id": 224724, "credit_id": "52fe48589251416c91089069", "cast_id": 18, "profile_path": "/ifgJ4S5QH1m7PUgNZ823zyCeh7q.jpg", "order": 11}, {"name": "James Thomas", "character": "Ben Reynolds", "id": 210725, "credit_id": "52fe48589251416c9108906d", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Eva Link", "character": "Carrie Anne", "id": 1133027, "credit_id": "52fe48589251416c91089071", "cast_id": 20, "profile_path": null, "order": 13}], "directors": [{"name": "Mark Tonderai", "department": "Directing", "job": "Director", "credit_id": "52fe48589251416c9108901b", "profile_path": "/uDfYWgrwCZbsUIR8CvI9fG0eTnk.jpg", "id": 86482}], "vote_average": 5.7, "runtime": 101}, "19898": {"poster_path": "/qFd7dNvV1neXBV5OZdU5jOhdDZ6.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone - and the reality of their situation is more horrifying than they could have imagined.", "video": false, "id": 19898, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Pandorum", "tagline": "Don't fear the end of the world. Fear what happens next.", "vote_count": 181, "homepage": "http://www.pandorummovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1188729", "adult": false, "backdrop_path": "/srxnkz09MEB2ow59FnC7VHQIaAQ.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Constantin Film Produktion", "id": 5755}], "release_date": "2009-09-08", "popularity": 0.834948675243875, "original_title": "Pandorum", "budget": 40000000, "cast": [{"name": "Ben Foster", "character": "Bower", "id": 11107, "credit_id": "52fe47f69251416c750ab593", "cast_id": 1, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Payton", "id": 6065, "credit_id": "52fe47f69251416c750ab597", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Cam Gigandet", "character": "Gallo", "id": 55086, "credit_id": "52fe47f69251416c750ab59b", "cast_id": 3, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 2}, {"name": "Antje Traue", "character": "Nadia", "id": 43202, "credit_id": "52fe47f69251416c750ab5a5", "cast_id": 5, "profile_path": "/xWbtFJyN8ynIpdKNCB0KpsKldM7.jpg", "order": 3}, {"name": "Cung Le", "character": "Manh", "id": 116637, "credit_id": "52fe47f69251416c750ab5a9", "cast_id": 6, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 4}, {"name": "Eddie Rouse", "character": "Leland", "id": 79419, "credit_id": "52fe47f69251416c750ab5ad", "cast_id": 7, "profile_path": "/9SQXQBYsnMaLtsXx3Baxye8JVon.jpg", "order": 5}, {"name": "Norman Reedus", "character": "Shepard", "id": 4886, "credit_id": "52fe47f69251416c750ab5b1", "cast_id": 8, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 6}, {"name": "Andr\u00e9 Hennicke", "character": "Hunter Leader", "id": 1846, "credit_id": "52fe47f69251416c750ab5b5", "cast_id": 9, "profile_path": "/7cjb7ckyLpEFO7uD9mR5g0Yahwv.jpg", "order": 7}, {"name": "Friederike Kempter", "character": "Evalon", "id": 28273, "credit_id": "52fe47f69251416c750ab5b9", "cast_id": 10, "profile_path": "/k6RXPsZA62S8yYcSKYwnOVvz1Kn.jpg", "order": 8}, {"name": "Niels-Bruno Schmidt", "character": "Insane Officer 'Eden'", "id": 46216, "credit_id": "52fe47f69251416c750ab5bd", "cast_id": 11, "profile_path": "/yiA2dfWszlYl86MjdCvvAiTiATF.jpg", "order": 9}, {"name": "Asia Luna Mohmand", "character": "Child Hunter", "id": 132181, "credit_id": "52fe47f69251416c750ab5c1", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Delphine Chuillot", "character": "Young Bower's Mother", "id": 132182, "credit_id": "52fe47f69251416c750ab5c5", "cast_id": 13, "profile_path": "/49SIT9sfWXwGWDWqtQUyjt0gtdG.jpg", "order": 11}, {"name": "Wotan Wilke M\u00f6hring", "character": "Young Bower's Father", "id": 7805, "credit_id": "52fe47f69251416c750ab5c9", "cast_id": 14, "profile_path": "/xHqMmUZ2b4RgRfsdIvcVcQUMl7V.jpg", "order": 12}, {"name": "Julian Rappe", "character": "Young Bower", "id": 132183, "credit_id": "52fe47f69251416c750ab5cd", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Domenico D'Ambrosio", "character": "Wounded Officer 'Eden'", "id": 73539, "credit_id": "52fe47f69251416c750ab5d1", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Jon Foster", "character": "Big Russian Passenger", "id": 20132, "credit_id": "52fe47f69251416c750ab5d5", "cast_id": 17, "profile_path": "/kCYgj6ZMP7oUWGAHBrl0IBszLEH.jpg", "order": 15}, {"name": "Jeff Burrell", "character": "Trapped Officer 'Eden'", "id": 49491, "credit_id": "52fe47f69251416c750ab5d9", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Neelesha BaVora", "character": "Female Crew Officer", "id": 48883, "credit_id": "52fe47f69251416c750ab5dd", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Yangzom Brauen", "character": "2nd Lieutenant (Team 4)", "id": 54023, "credit_id": "52fe47f69251416c750ab5e1", "cast_id": 20, "profile_path": "/zkfnDTHu7zU1Qwq2LIktdYTt7k1.jpg", "order": 18}, {"name": "Marco Albrecht", "character": "Hunter Weasel", "id": 132184, "credit_id": "52fe47f69251416c750ab5e5", "cast_id": 21, "profile_path": null, "order": 19}, {"name": "Dawid Szatarski", "character": "Hunter Shape", "id": 132185, "credit_id": "52fe47f69251416c750ab5e9", "cast_id": 22, "profile_path": null, "order": 20}, {"name": "Nico Marquardt", "character": "Hunter Brute", "id": 132186, "credit_id": "52fe47f69251416c750ab5ed", "cast_id": 23, "profile_path": null, "order": 21}, {"name": "Don Jeanes", "character": "Mateo (uncredited)", "id": 132187, "credit_id": "52fe47f69251416c750ab5f1", "cast_id": 24, "profile_path": null, "order": 22}, {"name": "David P. Johnson", "character": "Cooper (uncredited)", "id": 116243, "credit_id": "52fe47f69251416c750ab5f5", "cast_id": 25, "profile_path": null, "order": 23}], "directors": [{"name": "Christian Alvart", "department": "Directing", "job": "Director", "credit_id": "52fe47f69251416c750ab5a1", "profile_path": null, "id": 54559}], "vote_average": 6.4, "runtime": 108}, "19899": {"poster_path": "/6mdsH9XA2u4jnVKwWlKE1Mg2OQM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171844840, "overview": "Four couples, all friends, descend on a tropical island resort. Though one husband and wife are there to work on their marriage, the others just want to enjoy some fun in the sun. They soon find, however, that paradise comes at a price: Participation in couples therapy sessions is mandatory. What started out as a cut-rate vacation turns into an examination of the common problems many face.", "video": false, "id": 19899, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Couples Retreat", "tagline": "It may be paradise... but it's no vacation.", "vote_count": 191, "homepage": "http://www.couplesretreatmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1078940", "adult": false, "backdrop_path": "/8NDf9WGgv2glSslJdzK63Sbdwzy.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2009-09-19", "popularity": 0.748962841628151, "original_title": "Couples Retreat", "budget": 70000000, "cast": [{"name": "Vince Vaughn", "character": "Dave", "id": 4937, "credit_id": "52fe47f79251416c750ab685", "cast_id": 8, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Ronnie", "id": 50463, "credit_id": "52fe47f79251416c750ab67d", "cast_id": 6, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Jason Bateman", "character": "Jason", "id": 23532, "credit_id": "52fe47f79251416c750ab679", "cast_id": 5, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 2}, {"name": "Kristen Bell", "character": "Cynthia", "id": 40462, "credit_id": "52fe47f79251416c750ab681", "cast_id": 7, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 3}, {"name": "Jon Favreau", "character": "Joey", "id": 15277, "credit_id": "52fe47f79251416c750ab689", "cast_id": 9, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 4}, {"name": "Ken Jeong", "character": "Therapist #2", "id": 83586, "credit_id": "52fe47f79251416c750ab68d", "cast_id": 10, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 5}, {"name": "Kristin Davis", "character": "Lucy", "id": 38025, "credit_id": "52fe47f79251416c750ab691", "cast_id": 11, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 6}, {"name": "John Michael Higgins", "character": "Therapist #1", "id": 8265, "credit_id": "52fe47f79251416c750ab695", "cast_id": 13, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 7}, {"name": "Tasha Smith", "character": "Jennifer", "id": 74610, "credit_id": "52fe47f79251416c750ab699", "cast_id": 14, "profile_path": "/9WOYRySKNSnlDTiREXHEQbWHJTv.jpg", "order": 8}, {"name": "Faizon Love", "character": "Shane", "id": 62066, "credit_id": "52fe47f79251416c750ab69d", "cast_id": 15, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 9}, {"name": "Temuera Morrison", "character": "Briggs", "id": 7242, "credit_id": "52fe47f79251416c750ab6a1", "cast_id": 16, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 10}, {"name": "Peter Serafinowicz", "character": "Sctanley", "id": 11115, "credit_id": "52fe47f79251416c750ab6a5", "cast_id": 17, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 11}, {"name": "Karen David", "character": "Spa Attendant", "id": 79124, "credit_id": "52fe47f79251416c750ab6a9", "cast_id": 18, "profile_path": "/pBR1dQvCEBpRaaL6dF8L9FtfJE8.jpg", "order": 12}, {"name": "Carlos Ponce", "character": "Salvadore", "id": 62067, "credit_id": "52fe47f79251416c750ab6ad", "cast_id": 19, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 13}, {"name": "Kali Hawk", "character": "Trudy", "id": 89462, "credit_id": "52fe47f79251416c750ab6b1", "cast_id": 20, "profile_path": "/kx8aBd8FcC1gqWQ2OMV63hFza2Z.jpg", "order": 14}, {"name": "Jean Reno", "character": "Marcel", "id": 1003, "credit_id": "52fe47f79251416c750ab6b5", "cast_id": 21, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 15}, {"name": "Alexis Knapp", "character": "San Diego Dance Academy", "id": 999790, "credit_id": "52fe47f79251416c750ab6b9", "cast_id": 22, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 16}], "directors": [{"name": "Peter Billingsley", "department": "Directing", "job": "Director", "credit_id": "52fe47f79251416c750ab663", "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "id": 12708}], "vote_average": 5.3, "runtime": 113}, "19901": {"poster_path": "/nthJ3bjrx5zLOgAIxq9Fm4vBNwi.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51416464, "overview": "In the year 2019, a plague has transformed almost every human into vampires. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.", "video": false, "id": 19901, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Daybreakers", "tagline": "In 2019, The Most Precious Natural Resource... Is Us.", "vote_count": 215, "homepage": "http://www.daybreakersmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433362", "adult": false, "backdrop_path": "/jjTK7kQS0LBU8GNZlUvlRK0dR1h.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Australian Film Finance Corporation (AFFC)", "id": 8724}, {"name": "Pictures in Paradise", "id": 3207}, {"name": "Pacific Film and Television Commission", "id": 4024}, {"name": "Furst Films", "id": 3135}], "release_date": "2009-10-01", "popularity": 0.822420905483091, "original_title": "Daybreakers", "budget": 20000000, "cast": [{"name": "Ethan Hawke", "character": "Edward Dalton", "id": 569, "credit_id": "52fe47f79251416c750ab745", "cast_id": 3, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Sam Neill", "character": "Charles Bromley", "id": 4783, "credit_id": "52fe47f79251416c750ab749", "cast_id": 4, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Lionel 'Elvis' Cormac", "id": 5293, "credit_id": "52fe47f79251416c750ab74d", "cast_id": 5, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Claudia Karvan", "character": "Audrey Bennett", "id": 79966, "credit_id": "52fe47f79251416c750ab751", "cast_id": 6, "profile_path": "/8o2xMWxL9SkkxXrJOGI8THZhS8Q.jpg", "order": 3}, {"name": "Isabel Lucas", "character": "Alison Bromley", "id": 103554, "credit_id": "52fe47f79251416c750ab755", "cast_id": 7, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 4}, {"name": "Vince Colosimo", "character": "Christopher Caruso", "id": 77496, "credit_id": "52fe47f79251416c750ab771", "cast_id": 13, "profile_path": "/q7sQhwMo5By0WIh8qpwHnzznSzf.jpg", "order": 5}, {"name": "Jay Laga'aia", "character": "Senator Turner", "id": 33182, "credit_id": "52fe47f79251416c750ab775", "cast_id": 14, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 6}, {"name": "Michael Dorman", "character": "Frankie Dalton", "id": 76068, "credit_id": "52fe47f79251416c750ab779", "cast_id": 15, "profile_path": "/4nx438tUqBtF7tQPAyMIGGxgSps.jpg", "order": 7}, {"name": "Harriet Minto-Day", "character": "Lisa Barrett", "id": 1121519, "credit_id": "52fe47f79251416c750ab7b9", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Tiffany Lamb", "character": "News Reader", "id": 61911, "credit_id": "547b4150c3a368379c00099a", "cast_id": 55, "profile_path": null, "order": 9}, {"name": "Mungo McKay", "character": "Colin Briggs", "id": 56496, "credit_id": "547b4194c3a36837900007da", "cast_id": 56, "profile_path": null, "order": 10}, {"name": "Emma Randall", "character": "Ellie Landon", "id": 125318, "credit_id": "547b41e39251413796000932", "cast_id": 57, "profile_path": null, "order": 11}, {"name": "Charlotte Wilson", "character": "Joy Watkins", "id": 1391737, "credit_id": "547b428992514137ab00090f", "cast_id": 58, "profile_path": null, "order": 12}, {"name": "Robyn Moore", "character": "Forensic Investigator Simms", "id": 1391738, "credit_id": "547b42b692514137990009db", "cast_id": 59, "profile_path": null, "order": 13}, {"name": "Christopher Kirby", "character": "Jarvis Bayom", "id": 75175, "credit_id": "547b42dd92514137a20009ff", "cast_id": 60, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 14}, {"name": "Isabel Lucas", "character": "Alison Bromley", "id": 103554, "credit_id": "547b42fb92514137ab000926", "cast_id": 61, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 15}, {"name": "Troy MacKinder", "character": "Officer Hobbs", "id": 1120664, "credit_id": "547b432992514137a5000a29", "cast_id": 62, "profile_path": null, "order": 16}], "directors": [{"name": "Michael Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe47f79251416c750ab73b", "profile_path": "/3Y2ofBarFPKzAlpC6GeEXC2rv0A.jpg", "id": 56501}, {"name": "Peter Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe47f79251416c750ab741", "profile_path": null, "id": 56502}], "vote_average": 6.0, "runtime": 98}, "82507": {"poster_path": "/hrRYY7FcRc46Ue7h9jcKiW1xqJ3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77712439, "overview": "Found footage helps a true-crime novelist realize how and why a family was murdered in his new home, though his discoveries put his entire family in the path of a supernatural entity.", "video": false, "id": 82507, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sinister", "tagline": "Once you see him, nothing can save you.", "vote_count": 385, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "br", "name": ""}], "imdb_id": "tt1922777", "adult": false, "backdrop_path": "/lAdRfK0Clun517bq5V0meoIx7SG.jpg", "production_companies": [{"name": "Automatik Entertainment", "id": 7625}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Alliance Films", "id": 2514}, {"name": "IM Global", "id": 7437}, {"name": "Possessed Pictures", "id": 23277}], "release_date": "2012-10-12", "popularity": 1.09185860375271, "original_title": "Sinister", "budget": 3000000, "cast": [{"name": "Ethan Hawke", "character": "Ellison", "id": 569, "credit_id": "52fe48589251416c910890b1", "cast_id": 3, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Vincent D'Onofrio", "character": "Professor Jonas", "id": 7132, "credit_id": "52fe48589251416c910890b5", "cast_id": 4, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 1}, {"name": "James Ransone", "character": "Deputy", "id": 5296, "credit_id": "52fe48589251416c910890b9", "cast_id": 5, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 2}, {"name": "Fred Thompson", "character": "Sheriff", "id": 17874, "credit_id": "52fe48589251416c910890bd", "cast_id": 6, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 3}, {"name": "Clare Foley", "character": "Ashley", "id": 928905, "credit_id": "52fe48589251416c910890c1", "cast_id": 7, "profile_path": "/9lF9tfWeyrwB2HKsNNDCZhxMV4H.jpg", "order": 4}, {"name": "Juliet Rylance", "character": "Tracy", "id": 928906, "credit_id": "52fe48589251416c910890c5", "cast_id": 8, "profile_path": "/jJUCOkRVDbPehhqbhQJAwuT1zdi.jpg", "order": 5}, {"name": "Cameron Ocasio", "character": "BBQ Son / Killer", "id": 928907, "credit_id": "52fe48589251416c910890c9", "cast_id": 9, "profile_path": "/2FATmhKGb5BM88j6tU2xio30S4W.jpg", "order": 6}, {"name": "Michael Hall D'Addario", "character": "Trevor", "id": 928908, "credit_id": "52fe48589251416c910890cd", "cast_id": 10, "profile_path": "/6fGwkMWbwHpY2Q5rujDhvBmakCo.jpg", "order": 7}, {"name": "Victoria Leigh", "character": "Stephanie", "id": 928909, "credit_id": "52fe48589251416c910890d1", "cast_id": 11, "profile_path": "/nf3JM5ZGrbv5pqunn9WqeaY60Xa.jpg", "order": 8}, {"name": "Blake Mizrahi", "character": "christopher Miller/sleepytime son", "id": 1017265, "credit_id": "52fe48589251416c910890d5", "cast_id": 12, "profile_path": "/5OMpzIvZcpm6pz6oKwO3GLBNUG0.jpg", "order": 9}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe48589251416c910890a7", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 6.5, "runtime": 110}, "19908": {"poster_path": "/uJvjGTLoF65GxlsakbaUbQDfZEA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102391382, "overview": "Columbus (Jesse Eisenberg) has made a habit of running from what scares him. Tallahassee (Woody Harrelson) doesn't have fears. If he did, he'd kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they're about to stare down the most terrifying prospect of all: each other.", "video": false, "id": 19908, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Zombieland", "tagline": "This place is so dead", "vote_count": 1122, "homepage": "http://www.zombieland.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1156398", "adult": false, "backdrop_path": "/lLgLFzSZduH9kBxrk6BvoHc1gg0.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2009-12-03", "popularity": 1.8036946828434, "original_title": "Zombieland", "budget": 23600000, "cast": [{"name": "Woody Harrelson", "character": "Tallahassee", "id": 57755, "credit_id": "52fe47f89251416c750ab943", "cast_id": 1, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Jesse Eisenberg", "character": "Columbus", "id": 44735, "credit_id": "52fe47f89251416c750ab947", "cast_id": 2, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 1}, {"name": "Emma Stone", "character": "Wichita", "id": 54693, "credit_id": "52fe47f89251416c750ab95d", "cast_id": 6, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 2}, {"name": "Abigail Breslin", "character": "Little Rock", "id": 17140, "credit_id": "52fe47f89251416c750ab961", "cast_id": 7, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 3}, {"name": "Bill Murray", "character": "Bill Murray", "id": 1532, "credit_id": "52fe47f89251416c750ab965", "cast_id": 8, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 4}, {"name": "Amber Heard", "character": "406", "id": 55085, "credit_id": "52fe47f89251416c750ab969", "cast_id": 9, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 5}, {"name": "Derek Graf", "character": "Clown Zombie", "id": 112119, "credit_id": "52fe47f89251416c750ab96d", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Justin Price", "character": "Sprint Zombie", "id": 933182, "credit_id": "53cb221a0e0a265dfc000d00", "cast_id": 17, "profile_path": "/iCNa9g6iL5NKnT1NFG9trxFXMrF.jpg", "order": 7}, {"name": "Mike White", "character": "Gas Station Attendant (uncredited)", "id": 17735, "credit_id": "54694acbeaeb816b46001d0e", "cast_id": 18, "profile_path": "/luxVflXHHRlRYt8oqSxno04JGy6.jpg", "order": 8}], "directors": [{"name": "Ruben Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe47f89251416c750ab94d", "profile_path": "/y001RIxie7Vk3qMW3oLSFkjO1IA.jpg", "id": 91268}], "vote_average": 7.0, "runtime": 88}, "134597": {"poster_path": "/3YyPWbxkOVRXNEukz03qcW2hXjW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6842058, "overview": "Arkin escapes with his life from the vicious grips of \"The Collector\" during an entrapment party where he adds beautiful Elena to his \"Collection.\" Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena's wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector's booby trapped warehouse and save Elena.", "video": false, "id": 134597, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Collection", "tagline": "Every great collector has a vision.", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4x4mtl1xgxIH5yxGr05L1WZeTjG.jpg", "poster_path": "/AhwErLgytU4ICqvvcIYbAM1xeeu.jpg", "id": 165369, "name": "The Collector Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748227", "adult": false, "backdrop_path": "/pToJnYKV3llPG6U9AWcgHZaEjDo.jpg", "production_companies": [{"name": "LD Entertainment", "id": 10285}, {"name": "Fortress Features", "id": 5176}], "release_date": "2012-09-21", "popularity": 0.290742180207543, "original_title": "The Collection", "budget": 0, "cast": [{"name": "Josh Stewart", "character": "Arkin", "id": 40039, "credit_id": "52fe4bd9c3a368484e19bd67", "cast_id": 4, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 0}, {"name": "Christopher McDonald", "character": "Mr. Peters", "id": 4443, "credit_id": "52fe4bd9c3a368484e19bd6b", "cast_id": 5, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 1}, {"name": "Emma Fitzpatrick", "character": "Elena", "id": 1011107, "credit_id": "52fe4bd9c3a368484e19bd6f", "cast_id": 6, "profile_path": "/yDbClrArlrYXNUCE5X5kOqeq0n5.jpg", "order": 2}, {"name": "Lee Tergesen", "character": "Lucello", "id": 6906, "credit_id": "52fe4bd9c3a368484e19bd73", "cast_id": 7, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 3}, {"name": "Erin Way", "character": "Abby", "id": 1012752, "credit_id": "52fe4bd9c3a368484e19bd77", "cast_id": 8, "profile_path": "/fhmuk9gZ8m9oUnFjKmkWc7iXcS0.jpg", "order": 4}, {"name": "Navi Rawat", "character": "Lisa", "id": 43778, "credit_id": "52fe4bd9c3a368484e19bd7b", "cast_id": 9, "profile_path": "/neAo8dukxSDh5Hn1Gjqi8nkz1aD.jpg", "order": 5}, {"name": "Johanna Braddy", "character": "Missy Solomon", "id": 95038, "credit_id": "52fe4bd9c3a368484e19bd7f", "cast_id": 10, "profile_path": "/a2Q4TJu13J8UVUPb5wgJKhIgJgK.jpg", "order": 6}, {"name": "Daniel Sharman", "character": "Basil", "id": 119248, "credit_id": "52fe4bd9c3a368484e19bd83", "cast_id": 11, "profile_path": "/uCkcpPWLTXaUAfLzbvvGf6dL7bA.jpg", "order": 7}, {"name": "Andre Royo", "character": "Wally", "id": 74957, "credit_id": "52fe4bd9c3a368484e19bd87", "cast_id": 12, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 8}, {"name": "Brandon Molale", "character": "Lin", "id": 63238, "credit_id": "52fe4bd9c3a368484e19bd8b", "cast_id": 13, "profile_path": "/iOQFhKoCY6czA8OIudsHbOtJsC6.jpg", "order": 9}, {"name": "Justin Mortelliti", "character": "Zack", "id": 204660, "credit_id": "52fe4bd9c3a368484e19bd8f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Randall Archer", "character": "The Collector", "id": 1099428, "credit_id": "52fe4bd9c3a368484e19bd93", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Shannon Kane", "character": "Paz", "id": 145145, "credit_id": "52fe4bd9c3a368484e19bd97", "cast_id": 16, "profile_path": "/6wrQoQvxDy8lTTfRveLPVBoYTJW.jpg", "order": 12}, {"name": "Eaddy Mays", "character": "Lynn", "id": 1099429, "credit_id": "52fe4bd9c3a368484e19bd9b", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "William Peltz", "character": "Brian", "id": 1011103, "credit_id": "52fe4bd9c3a368484e19bd9f", "cast_id": 18, "profile_path": "/6gtqvA5yif2S1a68AfokQU57BSo.jpg", "order": 14}, {"name": "Tim Griffin", "character": "Dre", "id": 27031, "credit_id": "52fe4bd9c3a368484e19bda3", "cast_id": 19, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 15}, {"name": "John Gulager", "character": "Agent Gulager", "id": 62797, "credit_id": "550ada0bc3a36848770015f6", "cast_id": 70, "profile_path": null, "order": 16}], "directors": [{"name": "Marcus Dunstan", "department": "Directing", "job": "Director", "credit_id": "52fe4bd9c3a368484e19bd57", "profile_path": null, "id": 51023}], "vote_average": 6.0, "runtime": 94}, "85446": {"poster_path": "/bduyqAyMtPDs4m16F7SuLQtbcud.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily's father's development plans.", "video": false, "id": 85446, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up Revolution", "tagline": "One Step Can Change Your World", "vote_count": 222, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1800741", "adult": false, "backdrop_path": "/697HWfGtDmK5Yi5QTEL19Q8dzPL.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-07-26", "popularity": 1.46456814377037, "original_title": "Step Up Revolution", "budget": 0, "cast": [{"name": "Kathryn McCormick", "character": "Emily", "id": 479656, "credit_id": "52fe49419251416c910a76ed", "cast_id": 1010, "profile_path": "/l15qbyuoee9RdjjCdCHPgsVCtbq.jpg", "order": 0}, {"name": "Ryan Guzman", "character": "Sean", "id": 932091, "credit_id": "52fe49419251416c910a76f1", "cast_id": 1011, "profile_path": "/yJR4t5PlBdsiPAP9JdGjqomkVv7.jpg", "order": 1}, {"name": "Stephen Boss", "character": "Jason", "id": 110743, "credit_id": "52fe49419251416c910a76f5", "cast_id": 1012, "profile_path": "/5mGP9IXwtmCFAK8dSiOVaFxjSRM.jpg", "order": 2}, {"name": "Megan Boone", "character": "Claire", "id": 222141, "credit_id": "52fe49419251416c910a7713", "cast_id": 1021, "profile_path": "/fqCZZb33w8RhWl2GVGdWOqXBQNO.jpg", "order": 3}, {"name": "Jessica Guadix", "character": "Dancer", "id": 932093, "credit_id": "52fe49419251416c910a76f9", "cast_id": 1015, "profile_path": "/fvlbaTELvx4F4UB3TzCXYxM60y0.jpg", "order": 4}, {"name": "Cleopatra Coleman", "character": "Penelope", "id": 217055, "credit_id": "52fe49419251416c910a76fd", "cast_id": 1016, "profile_path": "/qZEDMdL6OaYaNKKyH40G0KIpevP.jpg", "order": 5}, {"name": "Zoe Aggeliki", "character": "Dancer", "id": 932095, "credit_id": "52fe49419251416c910a7701", "cast_id": 1017, "profile_path": "/wCyrznRHDFSG2A1CHirXVAmWuRl.jpg", "order": 6}, {"name": "Tommy Dewey", "character": "Tripp", "id": 180789, "credit_id": "52fe49419251416c910a7705", "cast_id": 1018, "profile_path": "/ql0gosYNMJmGHd9UdINNliEIbdz.jpg", "order": 7}, {"name": "Celestina", "character": "Mob Dancer", "id": 932097, "credit_id": "52fe49419251416c910a7709", "cast_id": 1019, "profile_path": "/cC4ogX4QInjkCSSkTilh2HceXRH.jpg", "order": 8}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "53f439b30e0a267f83001389", "cast_id": 1023, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 9}, {"name": "Peter Gallagher", "character": "Mr Anderson", "id": 8212, "credit_id": "5463eef30e0a26294a000184", "cast_id": 1024, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 10}, {"name": "Angeline Appel", "character": "Mob Dancer", "id": 1430895, "credit_id": "54f490f5925141799f00214b", "cast_id": 1025, "profile_path": "/gZkJTbrqf2zITLZBQzFBOiCGxDI.jpg", "order": 11}], "directors": [{"name": "Scott Speer", "department": "Directing", "job": "Director", "credit_id": "52fe49419251416c910a76bf", "profile_path": "/z6etjYvpvfKIi9NuWh2Hyv3qs0Y.jpg", "id": 932088}], "vote_average": 6.4, "runtime": 99}, "19912": {"poster_path": "/tuygO9zH7PQZYizYA0Jgyee61mI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186167139, "overview": "After a young man's premonition of a deadly race-car crash helps saves the lives of his peers, Death sets out to collect those who evaded their end.", "video": false, "id": 19912, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "The Final Destination", "tagline": "Rest In Pieces", "vote_count": 231, "homepage": "http://www.TheFinalDestinationMovie.com/", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1144884", "adult": false, "backdrop_path": "/kGalplb3ORM7aGXkW9UaZrp5AYN.jpg", "production_companies": [{"name": "Parallel Zide", "id": 48792}, {"name": "New Line Cinema", "id": 12}, {"name": "Practical Pictures", "id": 48788}], "release_date": "2009-08-26", "popularity": 0.693883983330527, "original_title": "The Final Destination", "budget": 40000000, "cast": [{"name": "Bobby Campo", "character": "Nick O'Bannon", "id": 94421, "credit_id": "52fe47f89251416c750ab9bd", "cast_id": 1, "profile_path": "/tTGrCRnPnktQs1ym75BZhZhPsPC.jpg", "order": 0}, {"name": "Shantel VanSanten", "character": "Lori Milligan", "id": 94423, "credit_id": "52fe47f89251416c750ab9c1", "cast_id": 2, "profile_path": "/jDMiaz2944QmoY8Y9xCLrP4Pret.jpg", "order": 1}, {"name": "Nick Zano", "character": "Hunt Wynorski", "id": 84076, "credit_id": "52fe47f89251416c750ab9c5", "cast_id": 3, "profile_path": "/yrKVUi6ZQcH8RA8pV3EF6xqoaUI.jpg", "order": 2}, {"name": "Haley Webb", "character": "Janet Cunningham", "id": 94424, "credit_id": "52fe47f89251416c750ab9c9", "cast_id": 4, "profile_path": "/dzTZzanthqZoMMs4C9uTwzF4JXU.jpg", "order": 3}, {"name": "Krista Allen", "character": "Samantha Lane", "id": 21858, "credit_id": "52fe47f89251416c750ab9cd", "cast_id": 6, "profile_path": "/aPNoOzxPicfSzPv2Qv7Ccex8WJL.jpg", "order": 4}, {"name": "Andrew Fiscella", "character": "Mechanic", "id": 65699, "credit_id": "52fe47f89251416c750ab9d1", "cast_id": 7, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 5}, {"name": "Justin Welborn", "character": "Racist", "id": 74136, "credit_id": "52fe47f89251416c750ab9d5", "cast_id": 8, "profile_path": "/kYi7JmJRCsNdbrNR48WcAb7wE1C.jpg", "order": 6}, {"name": "Stephanie Honor\u00e9", "character": "Mechanic's Girlfriend", "id": 94427, "credit_id": "52fe47f89251416c750ab9d9", "cast_id": 9, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 7}, {"name": "Lara Grice", "character": "Racist's Wife", "id": 94428, "credit_id": "52fe47f89251416c750ab9dd", "cast_id": 10, "profile_path": "/5bVR1UvnPyLgCcJqGHCnRCeLKPI.jpg", "order": 8}, {"name": "Jackson Walker", "character": "Cowboy", "id": 94429, "credit_id": "52fe47f89251416c750ab9e1", "cast_id": 11, "profile_path": "/3iFHkjrtywbXNsZkZjnfBglScEz.jpg", "order": 9}, {"name": "Mykelti Williamson", "character": "George Lanter", "id": 34, "credit_id": "52fe47f89251416c750aba0f", "cast_id": 20, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 10}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe47f89251416c750ab9e7", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 5.3, "runtime": 82}, "19913": {"poster_path": "/we9K5RxW6Vi8OfKtXTSqNr0cxvZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32374303, "overview": "Tom (Joseph Gordon-Levitt), greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer (Zooey Deschanel), suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.", "video": false, "id": 19913, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "(500) Days of Summer", "tagline": "It was almost like falling in love.", "vote_count": 806, "homepage": "http://500days.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1022603", "adult": false, "backdrop_path": "/yYw9cVdRJ4zzwxM2cTDXfT6JI6E.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Watermark", "id": 4364}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2009-07-17", "popularity": 1.76862797061384, "original_title": "(500) Days of Summer", "budget": 7500000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Tom Hansen", "id": 24045, "credit_id": "52fe47f89251416c750aba5b", "cast_id": 4, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Summer Finn", "id": 11664, "credit_id": "52fe47f89251416c750aba5f", "cast_id": 5, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Chlo\u00eb Grace Moretz", "character": "Rachel Hansen", "id": 56734, "credit_id": "52fe47f89251416c750aba63", "cast_id": 6, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "Geoffrey Arend", "character": "McKenzie", "id": 5375, "credit_id": "52fe47f89251416c750aba67", "cast_id": 7, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 3}, {"name": "Matthew Gray Gubler", "character": "Paul", "id": 5661, "credit_id": "52fe47f89251416c750aba6b", "cast_id": 8, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 4}, {"name": "Clark Gregg", "character": "Vance", "id": 9048, "credit_id": "52fe47f89251416c750aba6f", "cast_id": 9, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 5}, {"name": "Alejandro Estornel", "character": "Dancer", "id": 1282303, "credit_id": "52fe47f99251416c750ababb", "cast_id": 30, "profile_path": "/ne6h2tFQ16MNW5O7mZY961BQ3X9.jpg", "order": 6}, {"name": "Patricia Belcher", "character": "Millie", "id": 56358, "credit_id": "52fe47f99251416c750ababf", "cast_id": 31, "profile_path": "/dbbOF0P2h8qJ0fktNzMj4rmztP3.jpg", "order": 7}, {"name": "Rachel Boston", "character": "Alison", "id": 96624, "credit_id": "52fe47f99251416c750abac3", "cast_id": 32, "profile_path": "/gX5GGFYPELzfDwSsy6W7QpKDj87.jpg", "order": 8}, {"name": "Minka Kelly", "character": "Autumn - Girl at interview", "id": 96625, "credit_id": "52fe47f99251416c750abac7", "cast_id": 33, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 9}, {"name": "Ian Reed Kesler", "character": "Douche", "id": 133591, "credit_id": "52fe47f99251416c750abacf", "cast_id": 35, "profile_path": "/rTmay9ruuuQw8LNzMVbz9r68KA5.jpg", "order": 11}, {"name": "Valente Rodriguez", "character": "Employee #1", "id": 6321, "credit_id": "52fe47f99251416c750abad7", "cast_id": 37, "profile_path": "/j5fIc0HUrrgE6fVel6tjXcnDPRo.jpg", "order": 13}, {"name": "Yvette Nicole Brown", "character": "New Secretary", "id": 111513, "credit_id": "52fe47f99251416c750abadb", "cast_id": 38, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 14}, {"name": "Nicole Vicius", "character": "Partygoer", "id": 18516, "credit_id": "52fe47f99251416c750abadf", "cast_id": 39, "profile_path": "/oqN6L0EaeToZx5Malv1McQeLyZv.jpg", "order": 15}], "directors": [{"name": "Marc Webb", "department": "Directing", "job": "Director", "credit_id": "52fe47f89251416c750aba57", "profile_path": "/7uFlVK5BDTjk6IK9iBCmfrdaAs6.jpg", "id": 87742}], "vote_average": 7.2, "runtime": 95}, "19918": {"poster_path": "/ro8KctLAWv7SOwx9fuKMlx1uar7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12032983, "overview": "In Los Angeles, Nikki is homeless, car-less and closing in on 30, but he's amoral, good-looking, and adept in the sack, moving from one wealthy woman of 35 or 40 to another, a kept boy-toy. His newest gig, with Samantha, an attorney whose house overlooks L.A., is sweet, although it's unclear how long she'll put up with him. Then Nikki meets Heather, a waitress. Is the player being played, or might this be love? What will Nikki discover?", "video": false, "id": 19918, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Spread", "tagline": "It's a business doing pleasure.", "vote_count": 59, "homepage": "http://www.spread-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1186370", "adult": false, "backdrop_path": "/zk4eEkWsjRI8LVCQN4IlR83PJXi.jpg", "production_companies": [{"name": "Barbarian Films", "id": 6563}, {"name": "Katalyst Films", "id": 817}], "release_date": "2009-01-16", "popularity": 0.919173365727792, "original_title": "Spread", "budget": 0, "cast": [{"name": "Ashton Kutcher", "character": "Nikki", "id": 18976, "credit_id": "53218c86c3a368572e003007", "cast_id": 0, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Anne Heche", "character": "Samantha", "id": 8256, "credit_id": "53218c9bc3a368573c002eff", "cast_id": 1, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 2}, {"name": "Margarita Levieva", "character": "Heather", "id": 59237, "credit_id": "53218cacc3a3685754002eca", "cast_id": 2, "profile_path": "/5YDkouUZf4khoFfNoWps3PK5JQf.jpg", "order": 3}, {"name": "Sebastian Stan", "character": "Harry", "id": 60898, "credit_id": "53218cbfc3a368573c002f0f", "cast_id": 3, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 4}, {"name": "Ashley Johnson", "character": "Eva", "id": 34486, "credit_id": "53218cccc3a368573c002f14", "cast_id": 4, "profile_path": "/e4GJkGmRGvrqPG5jcTNHBCmL1x9.jpg", "order": 5}, {"name": "Sonia Rockwell", "character": "Christina", "id": 964614, "credit_id": "53218ce1c3a368572500303f", "cast_id": 5, "profile_path": "/9Ed7B4ZK3ra2yT9IxDFpsetcDCF.jpg", "order": 6}, {"name": "Rachel Blanchard", "character": "Emily", "id": 52478, "credit_id": "53218cf0c3a3685745003069", "cast_id": 6, "profile_path": "/b8C355lKxrfwqHmCD3N22BjXMxz.jpg", "order": 7}, {"name": "Shane Brolly", "character": "Prince Stelio", "id": 3969, "credit_id": "53218d0ac3a3685754002edb", "cast_id": 7, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 8}, {"name": "Eric Balfour", "character": "Sean", "id": 34489, "credit_id": "53218d19c3a368574d003278", "cast_id": 8, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 9}, {"name": "Mar\u00eda Conchita Alonso", "character": "Ingrid", "id": 2051, "credit_id": "53218d2ac3a36824b5001db9", "cast_id": 9, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 10}, {"name": "Derek Carter", "character": "Delivery Guy", "id": 221672, "credit_id": "53218d3dc3a368573c002f22", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Jordan Black", "character": "Kevin", "id": 1223703, "credit_id": "53218d55c3a36828ba00183b", "cast_id": 11, "profile_path": "/1m06XlIZX5dqSxwRTaSfvgGWxFW.jpg", "order": 12}, {"name": "Dani Levine", "character": "Nadia", "id": 1098885, "credit_id": "53218d72c3a368573c002f28", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Sarah Buxton", "character": "Helen", "id": 1225932, "credit_id": "53218d86c3a368574d003281", "cast_id": 13, "profile_path": null, "order": 14}, {"name": "Peter Marc Jacobson", "character": "Plastic Surgeon", "id": 1212131, "credit_id": "53218d9dc3a368573c002f32", "cast_id": 14, "profile_path": null, "order": 15}, {"name": "Jenae Altschwager", "character": "Stripper (as Jane Altschwager)", "id": 962379, "credit_id": "53218dbac3a36824b5001dce", "cast_id": 15, "profile_path": "/nAWvaydi4olSht0NfZb7sL7u4w7.jpg", "order": 16}, {"name": "Lindsey Broad", "character": "Emily's Roommate", "id": 208307, "credit_id": "53218dcdc3a36824b5001dd1", "cast_id": 16, "profile_path": "/6R4jOm6LOTlbt1L9Zbocl5OjsfQ.jpg", "order": 17}, {"name": "Amy Motta", "character": "Woman in Airport (aka Matron)", "id": 963720, "credit_id": "53218df1c3a368574d003287", "cast_id": 17, "profile_path": null, "order": 18}, {"name": "Lauri Johnson", "character": "Meter Maid / Doris", "id": 66499, "credit_id": "53218e09c3a3685745003081", "cast_id": 18, "profile_path": null, "order": 19}, {"name": "Madison Bauer", "character": "Nikki's Mother", "id": 990986, "credit_id": "53218e2cc3a368573c002f46", "cast_id": 19, "profile_path": null, "order": 20}, {"name": "Josh Richman", "character": "Club Bouncer / Himself", "id": 3209, "credit_id": "53218e54c3a36828ba00185b", "cast_id": 20, "profile_path": null, "order": 21}, {"name": "Iglesias Estefania", "character": "Bella Girl (as Estefania Iglesias)", "id": 125789, "credit_id": "53218e6bc3a368574d003295", "cast_id": 21, "profile_path": null, "order": 22}, {"name": "Reeve Carney", "character": "Lead Singer", "id": 64710, "credit_id": "53218e7fc3a368574500308c", "cast_id": 22, "profile_path": "/oT1XxfYL9aOHs7V2p0n7gIkp8zo.jpg", "order": 23}, {"name": "Nick Lee", "character": "Waiter", "id": 550902, "credit_id": "53218ea3c3a36824b5001de0", "cast_id": 23, "profile_path": null, "order": 24}, {"name": "Sarah Karijan", "character": "Prince Stelio's Gang", "id": 1337696, "credit_id": "53b84f3ac3a3685eb7004329", "cast_id": 36, "profile_path": "/rL28fIEVtLZw6HZXIL2W0KjLmMH.jpg", "order": 25}], "directors": [{"name": "David Mackenzie", "department": "Directing", "job": "Director", "credit_id": "53218fcbc3a368573c002f7e", "profile_path": "/oHZ2kkGICUnSbm73BQFK3Hau82f.jpg", "id": 3055}], "vote_average": 5.4, "runtime": 97}, "3536": {"poster_path": "/6zdPIbSF9vxCBZpntNvishPo5ol.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127666415, "overview": "In the midst of World War II, the battle below the seas rages. The Nazi's have the upper edge as the Allies are unable to crack their war codes. That is, until a wrecked U-boat sends out an SOS signal, and the Allies realise this is their chance to seize the 'enigma coding machine'. But masquerading as Nazi's and taking over the U-boat is the smallest of their problems..", "video": false, "id": 3536, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "U-571", "tagline": "Heroes are ordinary men who do extraordinary things in extraordinary times.", "vote_count": 113, "homepage": "http://www.u-571.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0141926", "adult": false, "backdrop_path": "/prGcR88VZWi7HsRyTdIJRjmHSgC.jpg", "production_companies": [{"name": "Canal Plus", "id": 104}, {"name": "Universal Pictures", "id": 33}, {"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "2000-04-21", "popularity": 1.04938920118535, "original_title": "U-571", "budget": 62000000, "cast": [{"name": "Matthew McConaughey", "character": "Lt. Andrew Tyler", "id": 10297, "credit_id": "52fe4399c3a36847f8060caf", "cast_id": 4, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Lt. Cmdr. Mike Dahlgren", "id": 2053, "credit_id": "52fe4399c3a36847f8060cb3", "cast_id": 5, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "CPO Henry Klough", "id": 1037, "credit_id": "52fe4399c3a36847f8060cb7", "cast_id": 6, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Jon Bon Jovi", "character": "Lt. Pete Emmett", "id": 32362, "credit_id": "52fe4399c3a36847f8060cbb", "cast_id": 7, "profile_path": "/gCVfbPMPaIEatCRwEwWhKKzo0AQ.jpg", "order": 3}, {"name": "David Keith", "character": "Maj. Matthew Coonen", "id": 18181, "credit_id": "52fe4399c3a36847f8060cbf", "cast_id": 8, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 4}, {"name": "Thomas Kretschmann", "character": "Capt. Lt. Gunther Wassner", "id": 3491, "credit_id": "52fe4399c3a36847f8060cc3", "cast_id": 9, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 5}, {"name": "Jake Weber", "character": "Lt. Hirsch", "id": 4177, "credit_id": "52fe4399c3a36847f8060cc7", "cast_id": 10, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 6}, {"name": "Jack Noseworthy", "character": "Bill Wentz", "id": 22133, "credit_id": "52fe4399c3a36847f8060ccb", "cast_id": 11, "profile_path": "/g30R5ax6RSN8OSdsWZnG2IhLDFT.jpg", "order": 7}, {"name": "Tom Guiry", "character": "Ted Trigger Fitzgerald", "id": 4729, "credit_id": "52fe4399c3a36847f8060ccf", "cast_id": 12, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 8}, {"name": "Will Estes", "character": "Ronald Rabbit Parker", "id": 32363, "credit_id": "52fe4399c3a36847f8060cd3", "cast_id": 13, "profile_path": "/aE4k0hiJN6VcBDN7ZasXZLV0a1N.jpg", "order": 9}, {"name": "Terrence 'T.C.' Carson", "character": "Steward Eddie Carson", "id": 233191, "credit_id": "52fe4399c3a36847f8060cfb", "cast_id": 20, "profile_path": "/eto2MDC4VXLGiPOXNqSdlWJ5yxL.jpg", "order": 10}], "directors": [{"name": "Jonathan Mostow", "department": "Directing", "job": "Director", "credit_id": "52fe4399c3a36847f8060c9f", "profile_path": "/hHJjES7xDqHhFhyPvqytwJ8yGk3.jpg", "id": 7213}], "vote_average": 6.2, "runtime": 116}, "10147": {"poster_path": "/103KNOz11U4iojwW6F1rOKKZIDp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76488889, "overview": "A miserable conman and his partner pose as Santa and his Little Helper to rob department stores on Christmas Eve. But they run into problems when the conman befriends a troubled kid, and the security boss discovers the plot.", "video": false, "id": 10147, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bad Santa", "tagline": "He doesn't care if you're naughty or nice.", "vote_count": 162, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307987", "adult": false, "backdrop_path": "/bXKYOyUH3v6KTRiwWhVhd6sqXcM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2003-11-25", "popularity": 0.681426195418384, "original_title": "Bad Santa", "budget": 23000000, "cast": [{"name": "Billy Bob Thornton", "character": "Willie", "id": 879, "credit_id": "52fe43359251416c7500799d", "cast_id": 12, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 0}, {"name": "Tony Cox", "character": "Marcus", "id": 19754, "credit_id": "52fe43359251416c750079a1", "cast_id": 13, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 1}, {"name": "Brett Kelly", "character": "The Kid", "id": 63992, "credit_id": "52fe43359251416c750079a5", "cast_id": 14, "profile_path": "/lrNCvvtopyLTtwQQUxjfu8JfIpj.jpg", "order": 2}, {"name": "Lauren Graham", "character": "Sue", "id": 16858, "credit_id": "52fe43359251416c750079a9", "cast_id": 15, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 3}, {"name": "Bernie Mac", "character": "Gin", "id": 1897, "credit_id": "52fe43359251416c750079ad", "cast_id": 16, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 4}, {"name": "Lauren Tom", "character": "Lois", "id": 15100, "credit_id": "52fe43359251416c750079b1", "cast_id": 17, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 5}, {"name": "John Ritter", "character": "Bob Chipeska", "id": 27772, "credit_id": "52fe43359251416c750079b5", "cast_id": 18, "profile_path": "/oM4iv6O97gK7JFiNkdjEBeuN5Q4.jpg", "order": 6}, {"name": "Ajay Naidu", "character": "Hindustani Troublemaker", "id": 1982, "credit_id": "52fe43359251416c750079b9", "cast_id": 19, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 7}, {"name": "Octavia Spencer", "character": "Opal", "id": 6944, "credit_id": "52fe43359251416c750079bd", "cast_id": 20, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 8}, {"name": "Cloris Leachman", "character": "Grandma", "id": 9599, "credit_id": "52fe43359251416c750079c1", "cast_id": 21, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 9}, {"name": "Lorna Scott", "character": "Milwaukee Mother", "id": 73456, "credit_id": "548c3d57c3a36820b8001a6e", "cast_id": 22, "profile_path": "/esuLL3MYiVvSbL71nvpebZFTaDf.jpg", "order": 10}, {"name": "Harrison Bieker", "character": "Milwaukee Boy", "id": 1398494, "credit_id": "548c3d6e92514122f90019b4", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Alex Borstein", "character": "Milwaukee Mom with Photo", "id": 24357, "credit_id": "548c3d8c92514122f500181e", "cast_id": 24, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 12}, {"name": "Alexandra Korhan", "character": "Girl on Santa's Lap", "id": 1398495, "credit_id": "548c3d9d92514122ea00194e", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Dylan Charles", "character": "Milwaukee Bratty Boy", "id": 1398496, "credit_id": "548c3dad92514122f20017bb", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Billy Gardell", "character": "Milwaukee Security Guard", "id": 64344, "credit_id": "548c3dc6c3a36820b5001ae2", "cast_id": 27, "profile_path": "/6GB2WYCGSJDPbKjjK0zot8nxJe9.jpg", "order": 15}, {"name": "Lisa Ross", "character": "Milwaukee Bartender", "id": 1398497, "credit_id": "548c3dd792514122ef001907", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Terry Zwigoff", "department": "Directing", "job": "Director", "credit_id": "52fe43359251416c7500795d", "profile_path": null, "id": 17447}], "vote_average": 6.2, "runtime": 91}, "175574": {"poster_path": "/c5Gwex2oQPaMkgZPTzhdkMMSrwW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110, "overview": "In this irreverent, hilarious, adventurous buddy comedy for audiences of all ages, directed by Jimmy Hayward (Horton Hears a Who!), two turkeys from opposite sides of the tracks must put aside their differences and team up to travel back in time to change the course of history - and get turkey off the holiday menu for good.", "video": false, "id": 175574, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Free Birds", "tagline": "Hang On To Your Nuggets", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1621039", "adult": false, "backdrop_path": "/kMQHV8A0jOl4eRkBFP7dy6Jt5Gv.jpg", "production_companies": [{"name": "Reel FX Creative Studios", "id": 2787}, {"name": "Relativity Media", "id": 7295}], "release_date": "2013-11-01", "popularity": 2.0544169236929, "original_title": "Free Birds", "budget": 55000000, "cast": [{"name": "Woody Harrelson", "character": "Jake (voice)", "id": 57755, "credit_id": "52fe4d61c3a36847f825dbb5", "cast_id": 1, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Reggie (voice)", "id": 887, "credit_id": "52fe4d61c3a36847f825dbb9", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Amy Poehler", "character": "Jenny (voice)", "id": 56322, "credit_id": "52fe4d61c3a36847f825dbd3", "cast_id": 9, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 2}, {"name": "Dan Fogler", "character": "Governor Bradford (voice)", "id": 58873, "credit_id": "52fe4d61c3a36847f825dbbd", "cast_id": 3, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 3}, {"name": "Colm Meaney", "character": "Myles Standish (voice)", "id": 17782, "credit_id": "52fe4d61c3a36847f825dbd7", "cast_id": 10, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 4}, {"name": "Lesley Nicol", "character": "Female Pilgrim (voice)", "id": 174727, "credit_id": "52fe4d61c3a36847f825dbdb", "cast_id": 11, "profile_path": "/tw3GecTzAfqxpulQ5DddGC3Oiy1.jpg", "order": 5}, {"name": "George Takei", "character": "S.T.E.V.E. (voice)", "id": 1752, "credit_id": "52fe4d61c3a36847f825dbeb", "cast_id": 14, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 6}, {"name": "Jimmy Hayward", "character": "Ranger/Leatherbeak/President/Hazmats (voice)", "id": 8029, "credit_id": "52fe4d61c3a36847f825dbef", "cast_id": 15, "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "order": 7}, {"name": "Kaitlyn Maher", "character": "President's Daughter (voice)", "id": 141775, "credit_id": "52fe4d61c3a36847f825dbf3", "cast_id": 16, "profile_path": "/k3C7bbnFoJ6zYWtWFjhSik9gbVb.jpg", "order": 8}, {"name": "Carlos Alazraqui", "character": "Amos (voice)", "id": 59784, "credit_id": "52fe4d61c3a36847f825dbf7", "cast_id": 17, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 9}, {"name": "Carlos Ponce", "character": "Narrator/Alejandro (voice)", "id": 62067, "credit_id": "52fe4d61c3a36847f825dbfb", "cast_id": 18, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 10}, {"name": "Robert Beltran", "character": "Chief Massasoit (voice)", "id": 50880, "credit_id": "52fe4d61c3a36847f825dbff", "cast_id": 19, "profile_path": "/qD5OwMNOS6TgCgy5Xg0OwpMluQp.jpg", "order": 11}, {"name": "Danny Carey", "character": "Danny (voice)", "id": 1277229, "credit_id": "52fe4d61c3a36847f825dc03", "cast_id": 20, "profile_path": null, "order": 12}], "directors": [{"name": "Jimmy Hayward", "department": "Directing", "job": "Director", "credit_id": "52fe4d61c3a36847f825dbc3", "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "id": 8029}], "vote_average": 6.0, "runtime": 91}, "3558": {"poster_path": "/gfHKZq4GMziiI05A06KEQF0yDW9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set in the changing world of the late 1960s, \"Girl, Interrupted\" is the searing true story of Susanna Kaysen (Winona Ryder), a young woman who finds herself at a renowned mental institution for troubled young women, where she must choose between the world of people who belong on the inside -- like the seductive and dangerous Lisa (Angelina Jolie) -- or the often difficult world of reality on the outside.", "video": false, "id": 3558, "genres": [{"id": 18, "name": "Drama"}], "title": "Girl, Interrupted", "tagline": "The crazy thing is, you're not crazy.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0172493", "adult": false, "backdrop_path": "/8lo7UP1GQUVaIAGYPU8RaeVkdFb.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-12-21", "popularity": 0.412259531167745, "original_title": "Girl, Interrupted", "budget": 40000000, "cast": [{"name": "Winona Ryder", "character": "Susanna Kaysen", "id": 1920, "credit_id": "52fe439cc3a36847f80618bb", "cast_id": 14, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Lisa Rowe", "id": 11701, "credit_id": "52fe439cc3a36847f80618bf", "cast_id": 15, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Whoopi Goldberg", "character": "Valerie Owens", "id": 2395, "credit_id": "52fe439cc3a36847f80618c3", "cast_id": 16, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 2}, {"name": "Vanessa Redgrave", "character": "Dr. Wick", "id": 13333, "credit_id": "52fe439cc3a36847f80618c7", "cast_id": 17, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 3}, {"name": "Clea DuVall", "character": "Georgina Tuskin", "id": 20387, "credit_id": "52fe439cc3a36847f80618cb", "cast_id": 18, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 4}, {"name": "Brittany Murphy", "character": "Daisy Randone", "id": 328, "credit_id": "52fe439cc3a36847f80618cf", "cast_id": 19, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 5}, {"name": "Jared Leto", "character": "Toby", "id": 7499, "credit_id": "52fe439cc3a36847f80618d3", "cast_id": 20, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 6}, {"name": "Elisabeth Moss", "character": "Polly Clark", "id": 32798, "credit_id": "52fe439cc3a36847f80618d7", "cast_id": 21, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 7}, {"name": "Jeffrey Tambor", "character": "Dr. Melvin Potts", "id": 4175, "credit_id": "52fe439cc3a36847f80618db", "cast_id": 22, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 8}, {"name": "Angela Bettis", "character": "Janet Webber", "id": 32799, "credit_id": "52fe439cc3a36847f80618df", "cast_id": 23, "profile_path": "/3wOUBFjkIND7ZggfKVV25BJxGtN.jpg", "order": 9}, {"name": "Jillian Armenante", "character": "Cynthia Crowley", "id": 20469, "credit_id": "52fe439cc3a36847f80618e3", "cast_id": 24, "profile_path": "/3nvYOL6Vq7iY5OJgeubowsmbLTA.jpg", "order": 10}, {"name": "Drucie McDaniel", "character": "M.G.", "id": 32800, "credit_id": "52fe439cc3a36847f80618e7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Christina Myers", "character": "Nurse Margie", "id": 32801, "credit_id": "52fe439cc3a36847f80618eb", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Travis Fine", "character": "Nurse John", "id": 32802, "credit_id": "52fe439cc3a36847f80618ef", "cast_id": 27, "profile_path": "/lf8iuUV0hrvk7YUoxNFJ9KWIz6S.jpg", "order": 13}, {"name": "Mary Kay Place", "character": "Barbara Gilcrest", "id": 5960, "credit_id": "52fe439cc3a36847f80618f3", "cast_id": 28, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 14}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe439cc3a36847f806186f", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 7.4, "runtime": 127}, "273895": {"poster_path": "/o7Nb27iXxXls0r6qcaMwMxrkrke.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"Selma,\" as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Civil Rights Act.", "video": false, "id": 273895, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Selma", "tagline": "Martin Luther King, Lyndon Baines Johnson and the civil rights marches that changed America.", "vote_count": 160, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1020072", "adult": false, "backdrop_path": "/fsjg1cEgXpO9TkxtmiAcLU8rnHd.jpg", "production_companies": [{"name": "Harpo Films", "id": 3298}, {"name": "Cloud Eight Films", "id": 6708}, {"name": "Celador Films", "id": 3573}], "release_date": "2014-12-25", "popularity": 3.62166551674412, "original_title": "Selma", "budget": 0, "cast": [{"name": "David Oyelowo", "character": "Martin Luther King", "id": 35013, "credit_id": "53a850f50e0a2614390060ae", "cast_id": 5, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 1}, {"name": "Tom Wilkinson", "character": "Lyndon Baines Johnson", "id": 207, "credit_id": "53a851100e0a26143c005dcd", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 2}, {"name": "Carmen Ejogo", "character": "Coretta Scott King", "id": 37158, "credit_id": "53a851200e0a2614360060be", "cast_id": 8, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 4}, {"name": "Andre Holland", "character": "Andrew Young", "id": 459980, "credit_id": "53a851370e0a261445005f06", "cast_id": 9, "profile_path": "/nq6qk6P5idimcSJ0bpFqLQrb0Li.jpg", "order": 5}, {"name": "Omar J. Dorsey", "character": "James Orange", "id": 59844, "credit_id": "53a8514b0e0a26143c005dd2", "cast_id": 10, "profile_path": "/20Lrh4XaRrNEMapJGMl9uToHSQn.jpg", "order": 6}, {"name": "Alessandro Nivola", "character": "John Doar", "id": 4941, "credit_id": "53a8515f0e0a2614360060c3", "cast_id": 11, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 7}, {"name": "Giovanni Ribisi", "character": "Lee White", "id": 1771, "credit_id": "53a851780e0a26143c005dd6", "cast_id": 12, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 8}, {"name": "Colman Domingo", "character": "Ralph Abernathy", "id": 91671, "credit_id": "53a851930e0a261445005f0b", "cast_id": 13, "profile_path": "/otQg0XX0fSnnOHZphdWwwjJc8lA.jpg", "order": 9}, {"name": "Oprah Winfrey", "character": "Annie Lee Cooper", "id": 13309, "credit_id": "53a8544ec3a3687a2e005818", "cast_id": 14, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 10}, {"name": "Tim Roth", "character": "Gov. George Wallace", "id": 3129, "credit_id": "54ad4525c3a368241e004bdb", "cast_id": 15, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 11}, {"name": "Common", "character": "James Bevel", "id": 4238, "credit_id": "54ad452bc3a36822b7006132", "cast_id": 16, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 12}, {"name": "Cuba Gooding Jr.", "character": "Fred Gray", "id": 9777, "credit_id": "54ad45359251412fba00010e", "cast_id": 17, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 13}, {"name": "Ruben Santiago-Hudson", "character": "Bayard Rustin", "id": 31839, "credit_id": "54b0a996925141747e000f86", "cast_id": 34, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 14}, {"name": "Tessa Thompson", "character": "Diane Nash", "id": 62561, "credit_id": "54b0a9c2925141747e000f8d", "cast_id": 35, "profile_path": "/l9o1HsPN78dAU6MqqTYHVZhPAwa.jpg", "order": 15}, {"name": "Lorraine Toussaint", "character": "Amelia Boynton", "id": 81726, "credit_id": "54b0a9cf9251417479000ea1", "cast_id": 36, "profile_path": "/tHvHTU5gV68sNig0kUBatXWuwt9.jpg", "order": 16}, {"name": "David Dwyer", "character": "Chief Wilson Baker", "id": 21084, "credit_id": "54b0a9e3c3a3684138000973", "cast_id": 37, "profile_path": "/A0EMGjQl4t3DqqfR6Onx0tiMHc5.jpg", "order": 17}, {"name": "E. Roger Mitchell", "character": "Frederick Reese", "id": 41020, "credit_id": "54b0a9f1c3a368094500115b", "cast_id": 38, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 18}, {"name": "Dylan Baker", "character": "J. Edgar Hoover", "id": 19152, "credit_id": "54b0a9fcc3a3680940001034", "cast_id": 39, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 19}, {"name": "Ledisi Young", "character": "Mahalia Jackson", "id": 1411596, "credit_id": "54b0aa149251416f2c000968", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Kent Faulcon", "character": "Sullivan Jackson", "id": 9634, "credit_id": "54b0aa20c3a3680945001160", "cast_id": 41, "profile_path": "/oOKr7nJJwpGNrPijma1MhhkDRPv.jpg", "order": 21}, {"name": "Niecy Nash", "character": "Richie Jean Jackson", "id": 63231, "credit_id": "54b0aa2c9251417479000eae", "cast_id": 42, "profile_path": "/uDgMY19qLLxJLGGr0JYzbi01JmW.jpg", "order": 22}, {"name": "Corey Reynolds", "character": "Rev. C.T. Vivian", "id": 8694, "credit_id": "54b0aa3ac3a3680945001165", "cast_id": 43, "profile_path": "/faEdK8pyxXUuFsNGBTr26ybZd5l.jpg", "order": 23}, {"name": "Wendell Pierce", "character": "Rev. Hosea Williams", "id": 17859, "credit_id": "54b0aa46c3a368094e001319", "cast_id": 44, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 24}, {"name": "Stephan James", "character": "John Lewis", "id": 1388314, "credit_id": "54b0aa59c3a3680939001107", "cast_id": 45, "profile_path": "/5twzYuKcgyjqe1VBb8hxAwn6OoE.jpg", "order": 25}, {"name": "Keith Stanfield", "character": "Jimmie Lee Jackson", "id": 1200864, "credit_id": "54b0aa6d9251417472000fa8", "cast_id": 46, "profile_path": "/iqn7EWoEjqdzcaOJQ1DOYt8mpiy.jpg", "order": 26}, {"name": "Charity Jordan", "character": "Viola Lee Jackson", "id": 1411598, "credit_id": "54b0aa81925141747e000fa0", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Trai Byers", "character": "James Forman", "id": 1407308, "credit_id": "54b0aa8e9251416fe10008b7", "cast_id": 48, "profile_path": "/wqSp2AVe8YDelReucqxszKP4NX7.jpg", "order": 28}, {"name": "Stan Houston", "character": "Sheriff Jim Clark", "id": 1046664, "credit_id": "54b0aa9cc3a368093900110b", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Nigel Thatch", "character": "Malcolm X", "id": 1411599, "credit_id": "54b0aab79251412ae7000206", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Jeremy Strong", "character": "James Reeb", "id": 239271, "credit_id": "54b0aac6c3a3680951000fde", "cast_id": 51, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 31}, {"name": "Tara Ochs", "character": "Viola Liuzzo", "id": 1411600, "credit_id": "54b0aad1c3a36840120009a8", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Martin Sheen", "character": "Frank Minis Johnson", "id": 8349, "credit_id": "54b0aaf592514174750010fc", "cast_id": 54, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 34}], "directors": [{"name": "Ava DuVernay", "department": "Directing", "job": "Director", "credit_id": "538f45910e0a26297f0001df", "profile_path": "/tOo78QstRcAPyii0BPSmWcTDRG9.jpg", "id": 929825}], "vote_average": 7.5, "runtime": 127}, "225886": {"poster_path": "/bYY46f0PSLJTXzitxGOCd00rj3Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126069509, "overview": "When Jay and Annie first got together, their romantic connection was intense \u2013 but ten years and two kids later, the flame of their love needs a spark. To kick things up a notch, they decide \u2013 why not? \u2013 to make a video of themselves trying out every position in The Joy of Sex in one marathon three-hour session. It seems like a great idea \u2013 until they discover that their most private video is no longer private. With their reputations on the line, they know they\u2019re just one click away from being laid bare to the world... but as their race to reclaim their video leads to a night they'll never forget, they'll find that their video will expose even more than they bargained for.", "video": false, "id": 225886, "genres": [{"id": 35, "name": "Comedy"}], "title": "Sex Tape", "tagline": "A movie about a movie they don't want you to see.", "vote_count": 509, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1956620", "adult": false, "backdrop_path": "/USKXUGMT9PZHzq91F5Beuged7.jpg", "production_companies": [{"name": "Sony Pictures Entertainment (SPE)", "id": 7431}, {"name": "Escape Artists", "id": 1423}, {"name": "LStar Capital", "id": 34034}, {"name": "Media Rights Capital", "id": 2531}], "release_date": "2014-07-18", "popularity": 3.80347257203837, "original_title": "Sex Tape", "budget": 40000000, "cast": [{"name": "Cameron Diaz", "character": "Annie", "id": 6941, "credit_id": "52fe4e6e9251416c75156327", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Jason Segel", "character": "Jay", "id": 41088, "credit_id": "52fe4e6e9251416c7515632b", "cast_id": 2, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Rob Corddry", "character": "Robby", "id": 52997, "credit_id": "533c5b6592514175fa000199", "cast_id": 6, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 2}, {"name": "Ellie Kemper", "character": "Tess", "id": 475512, "credit_id": "533c5b5292514176060001c2", "cast_id": 5, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 3}, {"name": "Rob Lowe", "character": "Hank", "id": 2879, "credit_id": "52fe4e6e9251416c7515632f", "cast_id": 3, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 4}, {"name": "Nat Faxon", "character": "Max", "id": 105648, "credit_id": "53c4727ac3a3682473000151", "cast_id": 18, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 5}, {"name": "Nancy Lenehan", "character": "Linda", "id": 9279, "credit_id": "53c47290c3a368246e000120", "cast_id": 19, "profile_path": "/d53TslGYUtkXfHHEjCGMCQOOdlM.jpg", "order": 6}, {"name": "Giselle Eisenberg", "character": "Nell", "id": 1306572, "credit_id": "533c5bec925141760b000203", "cast_id": 11, "profile_path": "/4V9TFTwVn0VUyr19kd7sbm64KcY.jpg", "order": 7}, {"name": "Harrison Holzer", "character": "Howard", "id": 1373304, "credit_id": "543ad270c3a36819950036e7", "cast_id": 22, "profile_path": "/5DNum2BcL1R4kYqvByWavZvVXOj.jpg", "order": 8}, {"name": "Sebastian Hedges Thomas", "character": "Clive", "id": 1373306, "credit_id": "543ad40dc3a368198c0036e3", "cast_id": 23, "profile_path": "/cE6TQUMLK9yWIkl7p5SQMT5xw0i.jpg", "order": 9}, {"name": "Timothy Brennen", "character": "Walt", "id": 169198, "credit_id": "533c5bdc92514176030001ca", "cast_id": 10, "profile_path": "/kQiAo1MdUx28sUQCkPkQF1mktDj.jpg", "order": 10}, {"name": "Krisztina Koltai", "character": "Marta", "id": 1306652, "credit_id": "533cf48d925141760b001233", "cast_id": 14, "profile_path": "/lRSfKKOz4TID9FQNZNqOgXbL2xx.jpg", "order": 11}, {"name": "Randall Park", "character": "Edward", "id": 79082, "credit_id": "533c5ba492514175fa0001a2", "cast_id": 9, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 12}, {"name": "Jack Black", "character": "YouPorn Owner", "id": 70851, "credit_id": "54a22f58c3a3684d60000bf1", "cast_id": 35, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 13}, {"name": "Joe Stapleton", "character": "Piper Bros. Executive", "id": 1373307, "credit_id": "543ad5c30e0a2649b600366e", "cast_id": 24, "profile_path": "/snxVGg7fJgxh03Q10PpWO1eayJM.jpg", "order": 14}, {"name": "James Wilcox", "character": "Charlie Newhouse (Radio DJ)", "id": 151278, "credit_id": "533cf4be9251417600001236", "cast_id": 16, "profile_path": "/uIWOVeYs4Vb1QQLOmnugug7yScs.jpg", "order": 15}, {"name": "Jolene Blalock", "character": "Catalina", "id": 68276, "credit_id": "533c5b8c92514175fa00019f", "cast_id": 8, "profile_path": "/bFnTimSY5Nj7DjBfjU61xJi03Kn.jpg", "order": 16}, {"name": "Melissa Paulo", "character": "Rosie", "id": 1384191, "credit_id": "5460e96ac3a368535800bc1f", "cast_id": 25, "profile_path": "/wdotSdtf3PdVR66zeuXw48cyNEk.jpg", "order": 17}, {"name": "Erin Brehm", "character": "Beth", "id": 1384197, "credit_id": "5460eb600e0a267638000476", "cast_id": 26, "profile_path": "/gUZZkoo6qguhfR8QyXKircuFJdf.jpg", "order": 18}, {"name": "Kumail Nanjiani", "character": "Punit", "id": 466505, "credit_id": "5460ec79c3a3686cbb006d26", "cast_id": 27, "profile_path": "/x4nAztHY72SVciRfxEsbhIVTsIu.jpg", "order": 19}, {"name": "Artemis Pebdani", "character": "Kia", "id": 1214638, "credit_id": "5460f95ac3a3686f35000143", "cast_id": 28, "profile_path": "/9V2A5pvN6h68tYjeahzezT6Nx2q.jpg", "order": 20}, {"name": "Melvin Brown", "character": "Bodyguard", "id": 1384234, "credit_id": "5460f9d90e0a2672a000016a", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Osmani Rodriguez", "character": "Principal Rodriguez", "id": 205231, "credit_id": "5460fbc60e0a2672aa00015b", "cast_id": 30, "profile_path": "/4fdKhgocjup694TreYRWe7ixDmq.jpg", "order": 22}, {"name": "Samil Battenfeld", "character": "Helper", "id": 1384236, "credit_id": "5460fc090e0a2672a3000180", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Dave Allen", "character": "Mailman", "id": 88971, "credit_id": "5460fcaf0e0a2672b600016e", "cast_id": 32, "profile_path": "/rvSLaWzULGUqwieZyMJ3BNCZYTd.jpg", "order": 24}, {"name": "Celeste Oliva", "character": "Doctor", "id": 1384237, "credit_id": "5460fd6b0e0a2672a70001a0", "cast_id": 33, "profile_path": "/pHQTi9a8IRnbg6TwyrZg3lrxjQy.jpg", "order": 25}, {"name": "Alexis Rosasco", "character": "Parent", "id": 1384239, "credit_id": "5460fe4a0e0a2672aa0001a8", "cast_id": 34, "profile_path": "/5RnEdZtBywxqkmiHOWt4JLOtDOv.jpg", "order": 26}], "directors": [{"name": "Jake Kasdan", "department": "Directing", "job": "Director", "credit_id": "52fe4e6e9251416c75156335", "profile_path": "/1jmlwJ7Y0a7fp28bJLr73u12wbv.jpg", "id": 51851}], "vote_average": 5.7, "runtime": 97}, "664": {"poster_path": "/tKdDCkmb6obEhWEMLgGUUz5nDNs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 494471524, "overview": "TV weatherman Bill Harding is trying to get his tornado-hunter wife, Jo, to sign divorce papers so he can marry his girlfriend Melissa. But Mother Nature, in the form of a series of intense storms sweeping across Oklahoma, has other plans. Soon the three have joined the team of stormchasers as they attempt to insert a revolutionary measuring device into the very heart of several extremely violent tornados.", "video": false, "id": 664, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Twister", "tagline": "The Dark Side of Nature.", "vote_count": 279, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117998", "adult": false, "backdrop_path": "/gIGYWlwXUUbyx2gjLZcQ7G3i5rO.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1996-05-09", "popularity": 0.671131870010036, "original_title": "Twister", "budget": 92000000, "cast": [{"name": "Helen Hunt", "character": "Dr. Jo Harding", "id": 9994, "credit_id": "52fe4266c3a36847f801b91b", "cast_id": 22, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Bill Harding", "id": 2053, "credit_id": "52fe4266c3a36847f801b91f", "cast_id": 23, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Dr. Jonas Miller", "id": 2130, "credit_id": "52fe4266c3a36847f801b923", "cast_id": 24, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Jami Gertz", "character": "Dr. Melissa Reeves", "id": 9995, "credit_id": "52fe4266c3a36847f801b927", "cast_id": 25, "profile_path": "/gqmX3nFtx1pFfuXoR0QR608eWT2.jpg", "order": 3}, {"name": "Philip Seymour Hoffman", "character": "Dustin Davis", "id": 1233, "credit_id": "52fe4266c3a36847f801b92b", "cast_id": 26, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 4}, {"name": "Lois Smith", "character": "Meg Greene", "id": 2207, "credit_id": "52fe4266c3a36847f801b92f", "cast_id": 27, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 5}, {"name": "Alan Ruck", "character": "Robert 'Rabbit' Nurick", "id": 2394, "credit_id": "52fe4266c3a36847f801b933", "cast_id": 28, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 6}, {"name": "Sean Whalen", "character": "Allan Sanders", "id": 9996, "credit_id": "52fe4266c3a36847f801b937", "cast_id": 29, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 7}, {"name": "Scott Thomson", "character": "Jason 'Preacher' Rowe", "id": 9997, "credit_id": "52fe4266c3a36847f801b93b", "cast_id": 30, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 8}, {"name": "Todd Field", "character": "Tim 'Beltzer' Lewis", "id": 5010, "credit_id": "52fe4266c3a36847f801b93f", "cast_id": 31, "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "order": 9}, {"name": "Joey Slotnick", "character": "Joey", "id": 9998, "credit_id": "52fe4266c3a36847f801b943", "cast_id": 32, "profile_path": "/mEMRP0j65jpYVI4Xv5o0slFpRxP.jpg", "order": 10}, {"name": "Wendle Josepher", "character": "Haynes", "id": 9999, "credit_id": "52fe4266c3a36847f801b947", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Jeremy Davies", "character": "Laurence", "id": 4654, "credit_id": "52fe4266c3a36847f801b94b", "cast_id": 34, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 12}, {"name": "Zach Grenier", "character": "Eddie", "id": 7471, "credit_id": "52fe4266c3a36847f801b94f", "cast_id": 35, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 13}, {"name": "Gregory Sporleder", "character": "Willie", "id": 10000, "credit_id": "52fe4266c3a36847f801b953", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Alexa PenaVega", "character": "Jo Harding age 6", "id": 57674, "credit_id": "54cf6651c3a3687f820080b4", "cast_id": 37, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 15}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe4266c3a36847f801b89f", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 5.8, "runtime": 113}, "3563": {"poster_path": "/5WcTpKineI5CEae8g4GFhkMCmTr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186054174, "overview": "Firefighters Chuck Ford and Larry Valentine are guy's guys, loyal to the core -- which is why when widower Larry asks Chuck to pose as his gay lover so that he can get domestic partner benefits for his kids, his buddy agrees. Things get dicey, however, when a bureaucrat comes calling, and the boys are forced to present a picture of domestic bliss.", "video": false, "id": 3563, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "I Now Pronounce You Chuck & Larry", "tagline": "They're as straight as can be, but don't tell anyone.", "vote_count": 182, "homepage": "http://www.chuckandlarry.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0762107", "adult": false, "backdrop_path": "/c6tx2v4DCiiHqJZhGd1dq1jJpn9.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Universal Pictures", "id": 33}], "release_date": "2007-07-19", "popularity": 0.907883642201435, "original_title": "I Now Pronounce You Chuck & Larry", "budget": 85000000, "cast": [{"name": "Jessica Biel", "character": "Alex McDonough", "id": 10860, "credit_id": "52fe439cc3a36847f8061b9d", "cast_id": 12, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 0}, {"name": "Ving Rhames", "character": "Fred G. Duncan", "id": 10182, "credit_id": "52fe439cc3a36847f8061ba1", "cast_id": 14, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Clinton Fitzer", "id": 884, "credit_id": "52fe439cc3a36847f8061ba5", "cast_id": 15, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Nicholas Turturro", "character": "Renaldo Pinera", "id": 32897, "credit_id": "52fe439cc3a36847f8061ba9", "cast_id": 16, "profile_path": "/wEHGvoVgA7fEl93jmAYD3JRsX3b.jpg", "order": 3}, {"name": "Allen Covert", "character": "Steve", "id": 20818, "credit_id": "52fe439cc3a36847f8061bad", "cast_id": 17, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 4}, {"name": "Rachel Dratch", "character": "Benefits Supervisor", "id": 32905, "credit_id": "52fe439cc3a36847f8061bf3", "cast_id": 31, "profile_path": "/pVHUp99e3MJU9K326KTeDECl3S3.jpg", "order": 5}, {"name": "Nick Swardson", "character": "Kevin McDonough", "id": 32907, "credit_id": "52fe439cc3a36847f8061bf7", "cast_id": 33, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 6}, {"name": "Dan Aykroyd", "character": "Captain Phineas J. Tucker", "id": 707, "credit_id": "52fe439cc3a36847f8061bfb", "cast_id": 34, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 7}, {"name": "Richard Chamberlain", "character": "Councilman Banks", "id": 28906, "credit_id": "52fe439cc3a36847f8061bff", "cast_id": 35, "profile_path": "/eKdKTv9k15vz5ag6CqFF8eKXcvO.jpg", "order": 8}, {"name": "Adam Sandler", "character": "Charles \"Chuck\" Levine", "id": 19292, "credit_id": "52fe439cc3a36847f8061c09", "cast_id": 37, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 9}, {"name": "Kevin James", "character": "Lawrence \"Larry\" Valentine", "id": 32895, "credit_id": "52fe439cc3a36847f8061c0d", "cast_id": 38, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 10}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe439cc3a36847f8061b69", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 5.9, "runtime": 115}, "19959": {"poster_path": "/pHAnrezPCpWzNYYceLivTMcQ4jM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117290119, "overview": "Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop (Willis) is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.", "video": false, "id": 19959, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Surrogates", "tagline": "How do you save humanity when the only thing that's real is you?", "vote_count": 335, "homepage": "http://chooseyoursurrogate.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0986263", "adult": false, "backdrop_path": "/lQ872mmHvHXip5sC1t0cvCSP8IO.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Mandeville Films", "id": 10227}, {"name": "Top Shelf Productions", "id": 41978}], "release_date": "2009-09-24", "popularity": 0.744688554639294, "original_title": "Surrogates", "budget": 80000000, "cast": [{"name": "Bruce Willis", "character": "Agent Greer", "id": 62, "credit_id": "52fe47fc9251416c750ac1f5", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Peters", "id": 8329, "credit_id": "52fe47fc9251416c750ac1f9", "cast_id": 2, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Maggie", "id": 10882, "credit_id": "52fe47fc9251416c750ac20f", "cast_id": 6, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "James Cromwell", "character": "Canter", "id": 2505, "credit_id": "52fe47fc9251416c750ac213", "cast_id": 7, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Ving Rhames", "character": "Prophet", "id": 10182, "credit_id": "52fe47fc9251416c750ac217", "cast_id": 8, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 4}, {"name": "Helena Mattsson", "character": "JJ", "id": 113676, "credit_id": "52fe47fc9251416c750ac21b", "cast_id": 9, "profile_path": "/jXksDiD2NATlan04QXqKusOx5XY.jpg", "order": 5}, {"name": "Boris Kodjoe", "character": "Andrew Stone", "id": 80758, "credit_id": "52fe47fc9251416c750ac21f", "cast_id": 10, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 6}, {"name": "Ian Novick", "character": "Andre", "id": 587701, "credit_id": "52fe47fc9251416c750ac223", "cast_id": 11, "profile_path": "/aHDg0cm7c0A1b0FE9K1h7P5BgRD.jpg", "order": 7}, {"name": "Devin Ratray", "character": "Bobby", "id": 11516, "credit_id": "52fe47fc9251416c750ac227", "cast_id": 12, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 8}, {"name": "Jack Noseworthy", "character": "Strickland", "id": 22133, "credit_id": "52fe47fc9251416c750ac22b", "cast_id": 13, "profile_path": "/g30R5ax6RSN8OSdsWZnG2IhLDFT.jpg", "order": 9}, {"name": "Danny F. Smith", "character": "Victim", "id": 172303, "credit_id": "52fe47fc9251416c750ac22f", "cast_id": 14, "profile_path": "/kHGOQ6V7aA7fDSvUZrwoJX2jrPR.jpg", "order": 10}, {"name": "Jeffrey De Serrano", "character": "Armando", "id": 1016151, "credit_id": "52fe47fc9251416c750ac233", "cast_id": 15, "profile_path": "/sg7Nb65NnNWqpmFRUw4s5ynuXbZ.jpg", "order": 11}, {"name": "Michael Cudlitz", "character": "Colonel Brendon", "id": 52415, "credit_id": "52fe47fc9251416c750ac237", "cast_id": 16, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 12}, {"name": "Trevor Donovan", "character": "Surrie / Greer", "id": 1233560, "credit_id": "52fe47fc9251416c750ac23b", "cast_id": 17, "profile_path": "/4S4JlcxIHpU6UXnskZucQo8zOHE.jpg", "order": 13}], "directors": [{"name": "Jonathan Mostow", "department": "Directing", "job": "Director", "credit_id": "52fe47fc9251416c750ac1ff", "profile_path": "/hHJjES7xDqHhFhyPvqytwJ8yGk3.jpg", "id": 7213}], "vote_average": 5.8, "runtime": 89}, "11770": {"poster_path": "/agSrcqz39QfPNm0ogoGLUuzRbLV.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.", "video": false, "id": 11770, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Shaolin Soccer", "tagline": "Get ready to kick some grass!", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0286112", "adult": false, "backdrop_path": "/tMxePXvxk4iUEAVS47IHyFhzkLX.jpg", "production_companies": [], "release_date": "2001-07-12", "popularity": 1.17154115950194, "original_title": "Siu lam juk kau", "budget": 0, "cast": [{"name": "Stephen Chow", "character": "Sing", "id": 57607, "credit_id": "52fe44819251416c75037319", "cast_id": 11, "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "order": 0}, {"name": "Ng Man-Tat", "character": "Fung", "id": 70437, "credit_id": "52fe44819251416c7503731d", "cast_id": 12, "profile_path": "/96P13UdhCIQafjgJVdA9C7oIQMc.jpg", "order": 1}, {"name": "Patrick Tse Yin", "character": "Hung", "id": 544796, "credit_id": "52fe44819251416c75037337", "cast_id": 26, "profile_path": "/xjPwZ1TnOovjHyXXD7b0rhUmSJW.jpg", "order": 2}, {"name": "Zhao Wei", "character": "Mui", "id": 77304, "credit_id": "52fe44819251416c75037321", "cast_id": 15, "profile_path": "/a7GiAfe9QnTrgrgzripsxAjNu3n.jpg", "order": 3}, {"name": "Wong Yat-Fei", "character": "Iron Head", "id": 956575, "credit_id": "52fe44819251416c75037343", "cast_id": 29, "profile_path": "/saQyJq8qNGoOKMshjMOqmU1q4uZ.jpg", "order": 4}, {"name": "Tenky Tin Kai-Man", "character": "Iron Shirt", "id": 1136808, "credit_id": "52fe44819251416c7503734b", "cast_id": 31, "profile_path": "/lCcreZ88cFxhUgw0O7bVwdZc0zY.jpg", "order": 5}, {"name": "Mok Mei-Lam", "character": "Hooking Leg", "id": 1265974, "credit_id": "52fe44819251416c75037347", "cast_id": 30, "profile_path": "/4vtkCYzxWvxP2aPbwTGMcBDPw0Z.jpg", "order": 6}, {"name": "Danny Chan Kwok-Kwan", "character": "Empty Hands", "id": 1173223, "credit_id": "52fe44819251416c7503734f", "cast_id": 32, "profile_path": "/lo1Rh5BoWAsXv8xWP5sfZhLMavh.jpg", "order": 7}, {"name": "Lam Tze-Chung", "character": "Weight Vest", "id": 545277, "credit_id": "52fe44819251416c75037353", "cast_id": 33, "profile_path": "/pP2Y4dTsRKUgPe9NjYG3quTwLaK.jpg", "order": 8}, {"name": "Karen Mok", "character": "Dragon Twin", "id": 57831, "credit_id": "52fe44819251416c7503733b", "cast_id": 27, "profile_path": "/hfxRryhoRtT05ukFa7ooSM8pDhN.jpg", "order": 9}, {"name": "Cecilia Cheung", "character": "Dragon Twin", "id": 20652, "credit_id": "52fe44819251416c7503733f", "cast_id": 28, "profile_path": "/wmoULllC3ik5itmFJJmYuBaxaCX.jpg", "order": 10}, {"name": "Lee Kin-Yan", "character": "Manny", "id": 237235, "credit_id": "52fe44819251416c75037357", "cast_id": 34, "profile_path": "/d8a881LJd8Mf4eprYS2tDbPjuVe.jpg", "order": 11}], "directors": [{"name": "Stephen Chow", "department": "Directing", "job": "Director", "credit_id": "52fe44819251416c750372f7", "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "id": 57607}], "vote_average": 6.5, "runtime": 113}, "3580": {"poster_path": "/qtte2n6ygA1zVG5kLrjUGui28TJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113020255, "overview": "Christine Collins is overjoyed when her kidnapped son is brought back home. But when Christine suspects that the boy returned to her isn't her child, the police captain has her committed to an asylum.", "video": false, "id": 3580, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}], "title": "Changeling", "tagline": "To find her son, she did what no one else dared.", "vote_count": 291, "homepage": "http://www.changelingmovie.net", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0824747", "adult": false, "backdrop_path": "/mYNXGr8HNS1TO7wrQVSywrlduk9.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Malpaso Productions", "id": 171}, {"name": "Relativity Media", "id": 7295}], "release_date": "2008-05-20", "popularity": 0.529123663212888, "original_title": "Changeling", "budget": 55000000, "cast": [{"name": "Angelina Jolie", "character": "Christine Collins", "id": 11701, "credit_id": "52fe439ec3a36847f80622b3", "cast_id": 6, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Jeffrey Donovan", "character": "J.J. Jones", "id": 52886, "credit_id": "52fe439ec3a36847f80622b7", "cast_id": 7, "profile_path": "/5i47zZDpnAjLBtQdlqhg5AIYCuT.jpg", "order": 1}, {"name": "John Malkovich", "character": "Rev. Gustav Briegleb", "id": 6949, "credit_id": "52fe439ec3a36847f80622bb", "cast_id": 8, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Geoff Pierson", "character": "S.S. Hahn", "id": 25879, "credit_id": "52fe439ec3a36847f80622bf", "cast_id": 9, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 3}, {"name": "Amy Ryan", "character": "Character", "id": 39388, "credit_id": "52fe439ec3a36847f80622c3", "cast_id": 10, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 4}, {"name": "Gattlin Griffith", "character": "Walter Collins", "id": 117885, "credit_id": "52fe439ec3a36847f80622c7", "cast_id": 11, "profile_path": "/ac5MJnC9olgP8bhUnLfLfBP4BYy.jpg", "order": 5}, {"name": "Michelle Gunn", "character": "Sandy", "id": 85101, "credit_id": "52fe439ec3a36847f80622cb", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Frank Wood", "character": "Ben Harris", "id": 52021, "credit_id": "52fe439ec3a36847f80622cf", "cast_id": 18, "profile_path": "/7g06FytDzIpbRTw7ONlB2ofara5.jpg", "order": 7}, {"name": "Colm Feore", "character": "Chief James E. Davis", "id": 10132, "credit_id": "52fe439ec3a36847f80622d3", "cast_id": 21, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 8}, {"name": "Michael Kelly", "character": "Detective Lester Ybarra", "id": 50217, "credit_id": "52fe439ec3a36847f80622d7", "cast_id": 24, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 9}, {"name": "Denis O'Hare", "character": "Dr. Jonathan Steele", "id": 81681, "credit_id": "52fe439ec3a36847f80622db", "cast_id": 25, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 10}, {"name": "Jeffrey Hutchinson", "character": "Mr. Clay", "id": 1356750, "credit_id": "53fabdd7c3a3687355003df7", "cast_id": 35, "profile_path": "/5SIRl7ajVVwI2621SXwqMAvofxM.jpg", "order": 11}, {"name": "Devon Conti", "character": "Arthur Hutchins", "id": 1448560, "credit_id": "551cb708c3a3680cc0000870", "cast_id": 37, "profile_path": null, "order": 12}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe439ec3a36847f8062297", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.9, "runtime": 141}, "11774": {"poster_path": "/dHQMAj9E2G2ewjN1aCOPubsZaj1.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209073645, "overview": "Three wealthy children's parents are killed in a fire. When they are sent to a distant relative, they find out that he is plotting to kill them and seize their fortune.", "video": false, "id": 11774, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Lemony Snicket's A Series of Unfortunate Events", "tagline": "Darkening theaters December 17.", "vote_count": 293, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0339291", "adult": false, "backdrop_path": "/Sd1dZccAaaVQeFebPePfKyv6uJ.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 2 KG", "id": 11930}, {"name": "Parkes+MacDonald Image Nation", "id": 49325}], "release_date": "2004-12-17", "popularity": 0.838309197190929, "original_title": "Lemony Snicket's A Series of Unfortunate Events", "budget": 140000000, "cast": [{"name": "Jim Carrey", "character": "Count Olaf", "id": 206, "credit_id": "52fe44829251416c75037565", "cast_id": 13, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Aunt Josephine", "id": 5064, "credit_id": "52fe44829251416c75037569", "cast_id": 14, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Jude Law", "character": "Lemony Snicket (voice)", "id": 9642, "credit_id": "52fe44829251416c7503756d", "cast_id": 15, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Emily Browning", "character": "Violet Baudelaire", "id": 70456, "credit_id": "52fe44829251416c75037571", "cast_id": 16, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 3}, {"name": "Kara Hoffman", "character": "Sunny", "id": 146449, "credit_id": "52fe44829251416c7503757b", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Shelby Hoffman", "character": "Sunny", "id": 146450, "credit_id": "52fe44829251416c7503757f", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Liam Aiken", "character": "Klaus", "id": 19977, "credit_id": "52fe44829251416c75037583", "cast_id": 21, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 6}, {"name": "Timothy Spall", "character": "Mr. Poe", "id": 9191, "credit_id": "52fe44829251416c75037587", "cast_id": 22, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 7}, {"name": "Catherine O'Hara", "character": "Justice Strauss", "id": 11514, "credit_id": "52fe44829251416c7503758b", "cast_id": 23, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 8}, {"name": "Billy Connolly", "character": "Uncle Monty", "id": 9188, "credit_id": "52fe44829251416c7503758f", "cast_id": 24, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 9}, {"name": "Luis Guzm\u00e1n", "character": "Bald man", "id": 40481, "credit_id": "52fe44829251416c75037593", "cast_id": 25, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 10}, {"name": "Jamie Harris", "character": "Hook-Handed Man", "id": 111195, "credit_id": "52fe44829251416c75037597", "cast_id": 26, "profile_path": "/hE8Q0EtDKKgSeSfTm5wTU6QflrS.jpg", "order": 11}, {"name": "Craig Ferguson", "character": "Person of Indeterminate Gender", "id": 24264, "credit_id": "52fe44829251416c7503759b", "cast_id": 27, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 12}, {"name": "Jennifer Coolidge", "character": "White Faced Woman", "id": 38334, "credit_id": "52fe44829251416c7503759f", "cast_id": 28, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 13}, {"name": "Jane Adams", "character": "White Faced Woman", "id": 209, "credit_id": "52fe44829251416c750375a3", "cast_id": 29, "profile_path": "/HbQfL01xmV1psnh0WvldIBzDg3.jpg", "order": 14}, {"name": "Cedric the Entertainer", "character": "Constable", "id": 5726, "credit_id": "52fe44829251416c750375a7", "cast_id": 30, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 15}, {"name": "Bob Clendenin", "character": "Grocery Clerk", "id": 129661, "credit_id": "52fe44829251416c750375ab", "cast_id": 31, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 16}, {"name": "Lenny Clarke", "character": "Gruff Grocer", "id": 87131, "credit_id": "52fe44829251416c750375af", "cast_id": 32, "profile_path": "/7JdEGLygOzrvjiOEvg7R4T3t0xJ.jpg", "order": 17}, {"name": "John Dexter", "character": "Gustav", "id": 553, "credit_id": "52fe44829251416c750375b7", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Deborah Theaker", "character": "Mrs. Poe", "id": 167212, "credit_id": "52fe44829251416c750375bb", "cast_id": 35, "profile_path": "/w742zR3zkSbDUpfqwvvpCLabq3z.jpg", "order": 20}, {"name": "Fred Gallo", "character": "Judge", "id": 1300109, "credit_id": "54888e3a92514151f8001d4b", "cast_id": 47, "profile_path": null, "order": 21}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe44829251416c75037531", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 6.2, "runtime": 108}, "11775": {"poster_path": "/7oWPCwJkgOw0ZfrU2TC7mqLm0ex.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119940815, "overview": "A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.", "video": false, "id": 11775, "genres": [{"id": 35, "name": "Comedy"}], "title": "Intolerable Cruelty", "tagline": "They can't keep their hands off each others assets.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138524", "adult": false, "backdrop_path": "/v9jKlRt9PYJ4NWVkSz3Ozkr8zdv.jpg", "production_companies": [{"name": "Mike Zoss Productions", "id": 2092}, {"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Alphaville Productions", "id": 6556}], "release_date": "2003-09-02", "popularity": 1.13920585529577, "original_title": "Intolerable Cruelty", "budget": 60000000, "cast": [{"name": "George Clooney", "character": "Miles Massey", "id": 1461, "credit_id": "52fe44839251416c7503769d", "cast_id": 15, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Marilyn Rexroth", "id": 1922, "credit_id": "52fe44839251416c750376a1", "cast_id": 16, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Edward Herrmann", "character": "Rex Rexroth", "id": 52995, "credit_id": "52fe44839251416c750376a5", "cast_id": 17, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 2}, {"name": "Geoffrey Rush", "character": "Donovan Donaly", "id": 118, "credit_id": "52fe44839251416c750376a9", "cast_id": 18, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Freddy Bender", "id": 28633, "credit_id": "52fe44839251416c750376b3", "cast_id": 20, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Billy Bob Thornton", "character": "Howard D. Doyle", "id": 879, "credit_id": "52fe44839251416c750376b7", "cast_id": 21, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 5}, {"name": "Stacey Travis", "character": "Bonnie Donaly", "id": 31714, "credit_id": "52fe44839251416c750376bb", "cast_id": 22, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 6}, {"name": "Cedric the Entertainer", "character": "Gus Petch", "id": 5726, "credit_id": "52fe44839251416c75037701", "cast_id": 36, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 7}, {"name": "Paul Adelstein", "character": "Wrigley", "id": 17342, "credit_id": "52fe44839251416c75037705", "cast_id": 37, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 8}, {"name": "Julia Duffy", "character": "Sarah Sorkin", "id": 100602, "credit_id": "52fe44839251416c75037709", "cast_id": 38, "profile_path": "/xyBp5eeugdrM0DFBBPjQu47hYLQ.jpg", "order": 9}, {"name": "Jonathan Hadary", "character": "Heinz, the Baron Krauss von Espy", "id": 122245, "credit_id": "52fe44839251416c7503770d", "cast_id": 39, "profile_path": null, "order": 10}, {"name": "Tom Aldredge", "character": "Herb Myerson", "id": 49835, "credit_id": "52fe44839251416c75037711", "cast_id": 40, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 11}, {"name": "Jack Kyle", "character": "Ollie Olerud", "id": 110246, "credit_id": "52fe44839251416c75037715", "cast_id": 41, "profile_path": "/tPtVxmTJuzDHIxfKRQLCUqAehIw.jpg", "order": 12}, {"name": "Irwin Keyes", "character": "Wheezy Joe", "id": 13592, "credit_id": "52fe44839251416c75037719", "cast_id": 42, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 13}, {"name": "Judith Drake", "character": "Mrs. Gutman", "id": 109900, "credit_id": "52fe44839251416c7503771d", "cast_id": 43, "profile_path": null, "order": 14}, {"name": "George Ives", "character": "Mrs. Gutman's Lawyer", "id": 151598, "credit_id": "52fe44839251416c75037721", "cast_id": 44, "profile_path": null, "order": 15}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44839251416c75037651", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44839251416c75037657", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 5.6, "runtime": 100}, "11778": {"poster_path": "/slNJESItHPqp1CENEJQUPw8d7WE.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50000000, "overview": "A group of working-class friends decides to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.", "video": false, "id": 11778, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "The Deer Hunter", "tagline": "One of the most important and powerful films of all time!", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0077416", "adult": false, "backdrop_path": "/6y7tez5wmDxe3NktQQAQxO9OGKP.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "EMI Films Ltd.", "id": 538}], "release_date": "1978-12-08", "popularity": 0.941831462635125, "original_title": "The Deer Hunter", "budget": 15000000, "cast": [{"name": "Robert De Niro", "character": "Michael Vronsky", "id": 380, "credit_id": "52fe44849251416c750378c7", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "John Cazale", "character": "Stan", "id": 3096, "credit_id": "52fe44849251416c750378d7", "cast_id": 15, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 1}, {"name": "John Savage", "character": "Steven Pushkov", "id": 47879, "credit_id": "52fe44849251416c750378cf", "cast_id": 13, "profile_path": "/ddGrvKHqhziYw9r6U1wu0VDLPYn.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Nikanor \u201eNick\u201c Chevotarevich", "id": 4690, "credit_id": "52fe44849251416c750378cb", "cast_id": 12, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Meryl Streep", "character": "Linda", "id": 5064, "credit_id": "52fe44849251416c750378d3", "cast_id": 14, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 4}, {"name": "George Dzundza", "character": "John", "id": 10477, "credit_id": "52fe44849251416c750378db", "cast_id": 16, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 5}, {"name": "Chuck Aspegren", "character": "Axel", "id": 123056, "credit_id": "52fe44849251416c750378df", "cast_id": 17, "profile_path": "/tWVzZsHizswaLalLkGjHisacNST.jpg", "order": 6}, {"name": "Shirley Stoler", "character": "Steven's Mother", "id": 67513, "credit_id": "52fe44849251416c750378e3", "cast_id": 18, "profile_path": "/cRMsHh1giZv4ha5tSeXmHBu0LDQ.jpg", "order": 7}, {"name": "Rutanya Alda", "character": "Angela", "id": 80135, "credit_id": "52fe44849251416c750378e7", "cast_id": 19, "profile_path": "/gVOyv8nNYwXmQU7kixKxILUMM50.jpg", "order": 8}, {"name": "Pierre Segui", "character": "Julien", "id": 133859, "credit_id": "52fe44849251416c750378eb", "cast_id": 20, "profile_path": "/XYGQKCDdGtT3XNbUqCy83hoNhZ.jpg", "order": 9}, {"name": "Mady Kaplan", "character": "Axel's Girl", "id": 133860, "credit_id": "52fe44849251416c750378ef", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Amy Wright", "character": "Bridesmaid", "id": 87007, "credit_id": "52fe44849251416c750378f3", "cast_id": 22, "profile_path": "/mEV42JRtrTTZg92GjyjRkQSXpsn.jpg", "order": 11}, {"name": "Mary Ann Haenel", "character": "Stan's Girl", "id": 133861, "credit_id": "52fe44849251416c750378f7", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Joe Grifasi", "character": "Bandleader", "id": 4887, "credit_id": "52fe44849251416c750378ff", "cast_id": 25, "profile_path": "/m3phT21garD58hEADUTl9RWWNrL.jpg", "order": 14}, {"name": "Paul D'Amato", "character": "Sergeant", "id": 134148, "credit_id": "53c41f4c0e0a26157c00cdeb", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Richard Kuss", "character": "Linda's Father", "id": 1222806, "credit_id": "54f5d1d29251412ba90023a1", "cast_id": 64, "profile_path": "/6MtqcyZklzUK03uVGV8ARZwSaPp.jpg", "order": 16}, {"name": "Christopher Colombi Jr.", "character": "Wedding Man", "id": 1434628, "credit_id": "54f5d4609251412ba90023c0", "cast_id": 65, "profile_path": null, "order": 17}, {"name": "Victoria Karnafel", "character": "Sad Looking Girl", "id": 1434629, "credit_id": "54f5d4c29251412ba20025df", "cast_id": 66, "profile_path": null, "order": 18}, {"name": "Jack Scardino", "character": "Cold Old Man", "id": 1434630, "credit_id": "54f5d5879251412bb60024eb", "cast_id": 67, "profile_path": null, "order": 19}, {"name": "Joe Strnad", "character": "Bingo Caller", "id": 1434631, "credit_id": "54f5d60cc3a36834f30024a8", "cast_id": 68, "profile_path": null, "order": 20}, {"name": "Helen Tomko", "character": "Helen", "id": 1434632, "credit_id": "54f5d66f9251412ba90023eb", "cast_id": 69, "profile_path": null, "order": 21}, {"name": "Dennis Watlington", "character": "Cab Driver", "id": 1258752, "credit_id": "54f5f32d925141068b000195", "cast_id": 70, "profile_path": "/mB23y8qO2I3lxvVV7n4OYwmMHFn.jpg", "order": 22}, {"name": "Charlene Darrow", "character": "Red Head", "id": 1434671, "credit_id": "54f5f362c3a36815520001d0", "cast_id": 71, "profile_path": null, "order": 23}, {"name": "Jane-Colette Disko", "character": "Girl Checker", "id": 1434672, "credit_id": "54f5f3aac3a368153e0001b1", "cast_id": 72, "profile_path": null, "order": 24}, {"name": "Michael Wollet", "character": "Stock Boy", "id": 1434673, "credit_id": "54f5f3fc92514106830001fe", "cast_id": 73, "profile_path": null, "order": 25}, {"name": "Robert Beard", "character": "World War Veteran", "id": 1434674, "credit_id": "54f5f445c3a36815570001bf", "cast_id": 74, "profile_path": null, "order": 26}, {"name": "Joe Dzizmba", "character": "World War Veteran", "id": 1435119, "credit_id": "54f811189251416ee4003382", "cast_id": 75, "profile_path": null, "order": 27}, {"name": "Stephen Kopestonsky", "character": "Priest", "id": 1435120, "credit_id": "54f8116b92514118ba000c99", "cast_id": 76, "profile_path": null, "order": 28}, {"name": "John F. Buchmelter III", "character": "Bar Patron", "id": 1435121, "credit_id": "54f8120b92514151c6003fe5", "cast_id": 77, "profile_path": null, "order": 29}, {"name": "Frank Devore", "character": "Barman", "id": 1435124, "credit_id": "54f81255c3a368131c000b93", "cast_id": 78, "profile_path": null, "order": 30}, {"name": "Tom Becker", "character": "Doctor", "id": 1435133, "credit_id": "54f812f9c3a36833bb003ba6", "cast_id": 79, "profile_path": null, "order": 31}, {"name": "Lynn Kongkham", "character": "Nurse", "id": 1435135, "credit_id": "54f81341c3a368131c000bac", "cast_id": 80, "profile_path": null, "order": 32}, {"name": "Nongnuj Timruang", "character": "Bar Girl", "id": 1435136, "credit_id": "54f81381c3a36833dc00343c", "cast_id": 81, "profile_path": null, "order": 33}, {"name": "Po Pao Pee", "character": "Chinese Referee", "id": 1435138, "credit_id": "54f813f692514118ba000cd4", "cast_id": 82, "profile_path": null, "order": 34}, {"name": "Dale Burroughs", "character": "Embassy Guard", "id": 1435141, "credit_id": "54f8143692514118ba000cdd", "cast_id": 83, "profile_path": null, "order": 35}, {"name": "Parris Hicks", "character": "Sergeant", "id": 1435144, "credit_id": "54f814879251416f370036c7", "cast_id": 84, "profile_path": null, "order": 36}, {"name": "Samui Muang-Intata", "character": "Chinese Bodyguard", "id": 1435145, "credit_id": "54f8150cc3a36834a500388f", "cast_id": 85, "profile_path": null, "order": 37}, {"name": "Sapox Colisium", "character": "Chinese Man", "id": 1435146, "credit_id": "54f8154592514151c6004047", "cast_id": 86, "profile_path": null, "order": 38}, {"name": "Vitoon Winwitoon", "character": "NVA Officer", "id": 1435147, "credit_id": "54f81599c3a36833dc003477", "cast_id": 87, "profile_path": null, "order": 39}, {"name": "Somsak Sengvilai", "character": "V.C. Referee", "id": 1435148, "credit_id": "54f815eb9251411812000cf2", "cast_id": 88, "profile_path": null, "order": 40}, {"name": "Charan Nusvanon", "character": "Chinese Boss", "id": 1435149, "credit_id": "54f8162c9251416ee4003428", "cast_id": 89, "profile_path": null, "order": 41}, {"name": "Jiam Gongtongsmoot", "character": "Chinese Man At Door", "id": 1435150, "credit_id": "54f81667c3a368351d003782", "cast_id": 90, "profile_path": null, "order": 42}, {"name": "Chai Peyawan", "character": "South Vietnamese Prisoner", "id": 1435153, "credit_id": "54f816aac3a36834a50038c8", "cast_id": 91, "profile_path": null, "order": 43}, {"name": "Mana Hansa", "character": "South Vietnamese Prisoner", "id": 1435154, "credit_id": "54f816fb92514118ba000d55", "cast_id": 92, "profile_path": null, "order": 44}, {"name": "Sombot Jumpanoi", "character": "South Vietnamese Prisoner", "id": 1435155, "credit_id": "54f81754c3a368126c000e2e", "cast_id": 93, "profile_path": null, "order": 45}, {"name": "Phip Manee", "character": "Woman In Village", "id": 1435156, "credit_id": "54f8178d92514124110040ae", "cast_id": 94, "profile_path": null, "order": 46}, {"name": "Ding Santos", "character": "V.C. Guard", "id": 1435159, "credit_id": "54f817e79251416f6e0037ea", "cast_id": 95, "profile_path": null, "order": 47}, {"name": "Krieng Chaiyapuk", "character": "V.C. Guard", "id": 1435160, "credit_id": "54f8184bc3a36833bb003c54", "cast_id": 96, "profile_path": null, "order": 48}, {"name": "Ot Palapoo", "character": "V.C. Guard", "id": 1435161, "credit_id": "54f8188792514118ba000d84", "cast_id": 97, "profile_path": null, "order": 49}, {"name": "Chok Chai Mahasoke", "character": "V.C. Guard", "id": 1435162, "credit_id": "54f818c492514151c60040ae", "cast_id": 98, "profile_path": null, "order": 50}], "directors": [{"name": "Michael Cimino", "department": "Directing", "job": "Director", "credit_id": "52fe44849251416c75037893", "profile_path": "/d3Xzp4OBaATnPEYUYQJEdtgAwCc.jpg", "id": 12114}], "vote_average": 7.3, "runtime": 182}, "60935": {"poster_path": "/a2Cme25fHcSdIQ2wW6aWmE4owUI.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28128670, "overview": "When paleontologist Kate Lloyd travels to an isolated outpost in Antarctica for the expedition of a lifetime, she joins an international team that unearths a remarkable discovery. Their elation quickly turns to fear as they realize that their experiment has freed a mysterious being from its frozen prison. Paranoia spreads like an epidemic as a creature that can mimic anything it touches will pit human against human as it tries to survive and flourish in this spine-tingling thriller.", "video": false, "id": 60935, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Thing", "tagline": "It's Not Human. Yet.", "vote_count": 212, "homepage": "http://www.thethingmovie.net/", "belongs_to_collection": {"backdrop_path": "/pJIVUUcpC3CvgiJlCz4XeEaE5dg.jpg", "poster_path": "/u4Vp4zBvhVg9JYVXQ7dpfYVs3BM.jpg", "id": 245713, "name": "The Thing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "da", "name": "Dansk"}], "imdb_id": "tt0905372", "adult": false, "backdrop_path": "/mspjoQKJ8NSvJZ6BzaM1XKNzofD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Morgan Creek Productions", "id": 10210}, {"name": "Strike Entertainment", "id": 655}], "release_date": "2011-10-14", "popularity": 1.70965582014745, "original_title": "The Thing", "budget": 35000000, "cast": [{"name": "Mary Elizabeth Winstead", "character": "Kate Lloyd", "id": 17628, "credit_id": "52fe463dc3a368484e085d29", "cast_id": 2, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 0}, {"name": "Joel Edgerton", "character": "Sam Carter", "id": 33192, "credit_id": "52fe463dc3a368484e085d35", "cast_id": 5, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 1}, {"name": "Ulrich Thomsen", "character": "Dr. Sander Halvorson", "id": 4455, "credit_id": "52fe463dc3a368484e085d39", "cast_id": 6, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Adam Finch", "id": 29020, "credit_id": "52fe463dc3a368484e085d2d", "cast_id": 3, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Derek Jameson", "id": 31164, "credit_id": "52fe463dc3a368484e085d31", "cast_id": 4, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 4}, {"name": "Paul Braunstein", "character": "Griggs", "id": 1227613, "credit_id": "53aab90e0e0a2646d80036da", "cast_id": 36, "profile_path": null, "order": 5}, {"name": "Trond Espen Seim", "character": "Edvard Wolner", "id": 79332, "credit_id": "52fe463dc3a368484e085d91", "cast_id": 25, "profile_path": "/lh5lMRUzbyHgu33D9wpGfa1mHbN.jpg", "order": 6}, {"name": "Kim Bubbs", "character": "Juliette", "id": 193045, "credit_id": "52fe463dc3a368484e085d3d", "cast_id": 7, "profile_path": "/AjJ3zYtjeScrx0rbDDpbIczq9UX.jpg", "order": 7}, {"name": "J\u00f8rgen Langhelle", "character": "Lars", "id": 47177, "credit_id": "52fe463dc3a368484e085d49", "cast_id": 11, "profile_path": "/1pd2wczpmimZHxEqe7oLxDGYtJ0.jpg", "order": 8}, {"name": "Jan Gunnar R\u00f8ise", "character": "Olav", "id": 107543, "credit_id": "52fe463dc3a368484e085d4d", "cast_id": 12, "profile_path": "/gAElsJtUNtr3sWAmunFeTfzdGUJ.jpg", "order": 9}, {"name": "Stig Henrik Hoff", "character": "Peder", "id": 76611, "credit_id": "52fe463dc3a368484e085d95", "cast_id": 26, "profile_path": "/wttFoswE1ivZ0NxH8HdR6QEQmYd.jpg", "order": 10}, {"name": "Kristofer Hivju", "character": "Jonas", "id": 571418, "credit_id": "52fe463dc3a368484e085d51", "cast_id": 13, "profile_path": "/a2cyA5B7LV4y2X1dNyUPCrimQ7P.jpg", "order": 11}, {"name": "Carsten Bj\u00f8rnlund", "character": "Karl", "id": 571346, "credit_id": "52fe463dc3a368484e085d45", "cast_id": 9, "profile_path": "/dSuYmtRCYY2hZRvhYYY5Hexg5Gr.jpg", "order": 12}, {"name": "Jonathan Walker", "character": "Colin", "id": 52702, "credit_id": "52fe463dc3a368484e085d41", "cast_id": 8, "profile_path": "/1rIItto71vrSYzcS4yXMsXWk2Yu.jpg", "order": 13}, {"name": "Jo Adrian Haavind", "character": "Henrik", "id": 1334214, "credit_id": "53aaba7c0e0a2646cc001905", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Ole Martin Aune Nilsen", "character": "Heli Pilot", "id": 1334215, "credit_id": "53aabac00e0a2646d2001811", "cast_id": 38, "profile_path": null, "order": 15}], "directors": [{"name": "Matthijs van Heijningen", "department": "Directing", "job": "Director", "credit_id": "52fe463dc3a368484e085d25", "profile_path": null, "id": 69339}], "vote_average": 6.0, "runtime": 103}, "3594": {"poster_path": "/ifG0shuMk1jAf7cTutpF25sv3Wu.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77566815, "overview": "Walter Sparrow is an animal control officer that becomes obsessed with a mysterious book that seems to be based on his own life. As soon as he opens the book, he notices strange parallels between what he reads and what he's experienced. But now he's worried that a fictional murder might materialize.", "video": false, "id": 3594, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Number 23", "tagline": "First it takes hold of your mind...then it takes hold of your life.", "vote_count": 273, "homepage": "http://wwws.warnerbros.de/number23/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481369", "adult": false, "backdrop_path": "/ii11g15CmefKS5gLiuMfZYmN9Ct.jpg", "production_companies": [{"name": "Firm Films", "id": 1838}, {"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}], "release_date": "2007-02-23", "popularity": 0.566117273510402, "original_title": "The Number 23", "budget": 30000000, "cast": [{"name": "Jim Carrey", "character": "Walter Sparrow / Fingerling", "id": 206, "credit_id": "52fe439fc3a36847f8062bb7", "cast_id": 21, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Virginia Madsen", "character": "Agatha Sparrow / Fabrizia", "id": 12519, "credit_id": "52fe439fc3a36847f8062bbb", "cast_id": 22, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 1}, {"name": "Logan Lerman", "character": "Robin Sparrow", "id": 33235, "credit_id": "52fe439fc3a36847f8062b65", "cast_id": 5, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Danny Huston", "character": "Isaac French/Dr. Miles Phoenix", "id": 6413, "credit_id": "52fe439fc3a36847f8062b69", "cast_id": 6, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Lynn Collins", "character": "Suicide Blonde", "id": 21044, "credit_id": "52fe439fc3a36847f8062ba3", "cast_id": 16, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 5}, {"name": "Mark Pellegrino", "character": "Kyle Finch", "id": 1236, "credit_id": "52fe439fc3a36847f8062bab", "cast_id": 18, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 5}, {"name": "Rhona Mitra", "character": "Laura Tollins", "id": 25702, "credit_id": "52fe439fc3a36847f8062ba7", "cast_id": 17, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 7}, {"name": "Paul Butcher", "character": "Young Fingerling", "id": 33706, "credit_id": "52fe439fc3a36847f8062baf", "cast_id": 19, "profile_path": "/qewV82iTmOX8bSiRzaqDjrJNS3b.jpg", "order": 7}, {"name": "David Stifel", "character": "Hotel Clerk", "id": 33707, "credit_id": "52fe439fc3a36847f8062bb3", "cast_id": 20, "profile_path": "/9TpzuY3YLIHNaRzIAMxvvNNqZZm.jpg", "order": 7}, {"name": "Corey Stoll", "character": "Sergeant Burns", "id": 74541, "credit_id": "52fe439fc3a36847f8062bbf", "cast_id": 23, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 8}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe439fc3a36847f8062b5b", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.1, "runtime": 101}, "3595": {"poster_path": "/96pdw2qcx4g25vZLywNi4XRQVqm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 309492681, "overview": "When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.", "video": false, "id": 3595, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Ransom", "tagline": "Someone is going to pay.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117438", "adult": false, "backdrop_path": "/4PCuizEFMmIp2eNC66qj5bHfp3w.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1996-11-08", "popularity": 0.210181241104096, "original_title": "Ransom", "budget": 80000000, "cast": [{"name": "Mel Gibson", "character": "Tom Mullen", "id": 2461, "credit_id": "52fe439fc3a36847f8062c07", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Gary Sinise", "character": "Det. Jimmy Shaker", "id": 33, "credit_id": "52fe43a0c3a36847f8062c5f", "cast_id": 17, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 1}, {"name": "Delroy Lindo", "character": "Agent Lonnie Hawkins", "id": 18792, "credit_id": "52fe43a0c3a36847f8062c63", "cast_id": 18, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 2}, {"name": "Rene Russo", "character": "Katherine Mullen", "id": 14343, "credit_id": "52fe43a0c3a36847f8062c67", "cast_id": 19, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 3}, {"name": "Lili Taylor", "character": "Maris", "id": 3127, "credit_id": "52fe43a0c3a36847f8062c6b", "cast_id": 20, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 4}, {"name": "Brawley Nolte", "character": "Sean Mullen", "id": 33239, "credit_id": "52fe43a0c3a36847f8062c6f", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "Liev Schreiber", "character": "Clark Barnes", "id": 23626, "credit_id": "52fe43a0c3a36847f8062c73", "cast_id": 22, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 6}, {"name": "Donnie Wahlberg", "character": "Cubby Barnes", "id": 2680, "credit_id": "52fe43a0c3a36847f8062c77", "cast_id": 23, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 7}, {"name": "Evan Handler", "character": "Miles Roberts", "id": 3212, "credit_id": "52fe43a0c3a36847f8062c7b", "cast_id": 24, "profile_path": "/bsSNblkDZk0hKIjyPMMt8Hsmbsg.jpg", "order": 8}, {"name": "Nancy Ticotin", "character": "Agent Kimba Welch", "id": 33240, "credit_id": "52fe43a0c3a36847f8062c7f", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Michael Gaston", "character": "Agent Jack Sickler", "id": 33241, "credit_id": "52fe43a0c3a36847f8062c83", "cast_id": 26, "profile_path": "/tAmpD16aVzWbs8evbCFaed9perN.jpg", "order": 10}, {"name": "Kevin Neil McCready", "character": "Agent Paul Rhodes", "id": 33242, "credit_id": "52fe43a0c3a36847f8062c87", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Jos\u00e9 Z\u00fa\u00f1iga", "character": "David Torres", "id": 10963, "credit_id": "52fe43a0c3a36847f8062c8b", "cast_id": 28, "profile_path": "/8RqlMIr7hDRWkph3wqo9BFmbuDo.jpg", "order": 12}, {"name": "Dan Hedaya", "character": "Jackie Brown", "id": 6486, "credit_id": "52fe43a0c3a36847f8062c8f", "cast_id": 29, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 13}, {"name": "Allen Bernstein", "character": "Bob Stone", "id": 33243, "credit_id": "52fe43a0c3a36847f8062c93", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Paul Guilfoyle", "character": "Wallace", "id": 925, "credit_id": "52fe43a0c3a36847f8062c97", "cast_id": 31, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 15}, {"name": "Iraida Polanco", "character": "Fatima", "id": 26721, "credit_id": "52fe43a0c3a36847f8062c9b", "cast_id": 32, "profile_path": null, "order": 16}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe439fc3a36847f8062c0d", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.0, "runtime": 117}, "3597": {"poster_path": "/pq2I0saIQtXeocNP4uBBR3qLOtk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125586134, "overview": "As they celebrate their high school graduation, four friends are involved in a hit-and-run accident when their car hits and apparently kills a pedestrian on an isolated roadway. They dispose of the body and vow to keep the incident a secret, a year later somebody starts sending them letters bearing the warning \"I Know What You Did Last Summer.\"", "video": false, "id": 3597, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "I Know What You Did Last Summer", "tagline": "If you're going to bury the truth, make sure it stays buried.", "vote_count": 142, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bhr2Pc6b5o09DSFrpYkJuAew830.jpg", "poster_path": "/ykz6t4RZm0MrKHS243NRwCHz4XU.jpg", "id": 3601, "name": "I Know What You Did Last Summer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119345", "adult": false, "backdrop_path": "/3s1jogOznYmG0xPqHE45D5ir3bx.jpg", "production_companies": [{"name": "Summer Knowledge LLC", "id": 1464}, {"name": "Mandalay Entertainment", "id": 1236}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1997-10-17", "popularity": 0.2922355459418, "original_title": "I Know What You Did Last Summer", "budget": 17000000, "cast": [{"name": "Jennifer Love Hewitt", "character": "Julie James", "id": 33259, "credit_id": "52fe43a0c3a36847f8062def", "cast_id": 13, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "Helen Shivers", "id": 11863, "credit_id": "52fe43a0c3a36847f8062df3", "cast_id": 14, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Ryan Phillippe", "character": "Barry William Cox", "id": 11864, "credit_id": "52fe43a0c3a36847f8062df7", "cast_id": 15, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 2}, {"name": "Freddie Prinze Jr.", "character": "Ray Bronson", "id": 33260, "credit_id": "52fe43a0c3a36847f8062dfb", "cast_id": 16, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 3}, {"name": "Bridgette Wilson", "character": "Elsa Shivers", "id": 20751, "credit_id": "52fe43a0c3a36847f8062dff", "cast_id": 17, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 4}, {"name": "Johnny Galecki", "character": "Max Neurick", "id": 16478, "credit_id": "52fe43a0c3a36847f8062e03", "cast_id": 18, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 5}, {"name": "Muse Watson", "character": "Benjamin Willis", "id": 17348, "credit_id": "52fe43a0c3a36847f8062e07", "cast_id": 19, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 6}, {"name": "Anne Heche", "character": "Melissa Egan", "id": 8256, "credit_id": "52fe43a0c3a36847f8062e0b", "cast_id": 20, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 7}, {"name": "Stuart Greer", "character": "Officer David Caporizo", "id": 33262, "credit_id": "52fe43a0c3a36847f8062e0f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Dan Albright", "character": "Sheriff", "id": 33269, "credit_id": "52fe43a0c3a36847f8062e13", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Rasool J'Han", "character": "Deb", "id": 33271, "credit_id": "52fe43a0c3a36847f8062e17", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Jim Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe43a0c3a36847f8062da9", "profile_path": null, "id": 33254}], "vote_average": 5.7, "runtime": 100}, "10157": {"poster_path": "/iNlm1BBGCwfP207QzuUk2Ei13sG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55600000, "overview": "Officer Carey Mahoney and his cohorts have finally graduated from the Police Academy and are about to hit the streets on their first assignment. Question is, are they ready to do battle with a band of graffiti-tagging terrorists? Time will tell, but don't sell short this cheerful band of doltish boys in blue.", "video": false, "id": 10157, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy 2: Their First Assignment", "tagline": "To protect, to serve... and make you laugh. America's funniest crimebusters are back!", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089822", "adult": false, "backdrop_path": "/phYKGfe75bKeEjeHyuzjsvbeo94.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1985-03-28", "popularity": 1.14515213563843, "original_title": "Police Academy 2: Their First Assignment", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Carey Mahoney", "id": 26472, "credit_id": "52fe43389251416c75007fc5", "cast_id": 9, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Bubba Smith", "character": "Hightower", "id": 57349, "credit_id": "52fe43389251416c75007fc9", "cast_id": 10, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 1}, {"name": "David Graf", "character": "Tackleberry", "id": 57353, "credit_id": "52fe43389251416c75007fcd", "cast_id": 11, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 2}, {"name": "Michael Winslow", "character": "Larvell Jones", "id": 14672, "credit_id": "52fe43389251416c75007fd1", "cast_id": 12, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 3}, {"name": "Bobcat Goldthwait", "character": "Zed", "id": 95024, "credit_id": "52fe43389251416c75007fd5", "cast_id": 13, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 4}, {"name": "Colleen Camp", "character": "Sgt. Kathleen Kirkland", "id": 13023, "credit_id": "52fe43389251416c75007fd9", "cast_id": 14, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 5}, {"name": "Bruce Mahler", "character": "Doug Fackler", "id": 57356, "credit_id": "53c0ba1a0e0a2615890080c3", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Marion Ramsey", "character": "Laverne Hookes", "id": 186816, "credit_id": "53c0ba2f0e0a26158f007c97", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Art Metrano", "character": "Lt. Mauser", "id": 15212, "credit_id": "53c0baae0e0a26157f0082eb", "cast_id": 17, "profile_path": "/3IPQYpit646GjHd1cjfgiqGFfIh.jpg", "order": 8}, {"name": "George Gaynes", "character": "Commandant Lassard", "id": 57351, "credit_id": "53c0bad10e0a26157f0082f4", "cast_id": 18, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 9}, {"name": "Julie Brown", "character": "Chloe", "id": 40680, "credit_id": "53c0bb2f0e0a26158f007cb2", "cast_id": 19, "profile_path": "/8a1NwjIyjOWmYTqdj4fuxqKlzR5.jpg", "order": 10}, {"name": "Tim Kazurinsky", "character": "Merchant", "id": 95216, "credit_id": "53c0bb430e0a261579007f20", "cast_id": 20, "profile_path": null, "order": 11}], "directors": [{"name": "Jerry Paris", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c75007f97", "profile_path": "/mVcAxdJG3uFVhr5erMCOZvla9UA.jpg", "id": 41720}], "vote_average": 5.6, "runtime": 87}, "3600": {"poster_path": "/j4s1TK90tZWZj7lQ84UDJXHI9Kh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40002112, "overview": "Unfinished business with coed Julie James brings the murderer to the Bahamas to terrorize her and her friends, Karla, Tyrell and Will, during a vacation. Can Ray Bronson who survived a bloody attack alongside Julie two summers ago, get to the island in time to save everyone?", "video": false, "id": 3600, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "I Still Know What You Did Last Summer", "tagline": "Someone is dying for a second chance.", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bhr2Pc6b5o09DSFrpYkJuAew830.jpg", "poster_path": "/ykz6t4RZm0MrKHS243NRwCHz4XU.jpg", "id": 3601, "name": "I Know What You Did Last Summer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0130018", "adult": false, "backdrop_path": "/ky78pXACtbyxpFRTdT2teXQzwxz.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mandalay Entertainment", "id": 1236}], "release_date": "1998-11-13", "popularity": 0.660363867106392, "original_title": "I Still Know What You Did Last Summer", "budget": 65000000, "cast": [{"name": "Jennifer Love Hewitt", "character": "Julie James", "id": 33259, "credit_id": "52fe43a0c3a36847f8062f31", "cast_id": 14, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 0}, {"name": "Freddie Prinze Jr.", "character": "Ray Bronson", "id": 33260, "credit_id": "52fe43a0c3a36847f8062f35", "cast_id": 15, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 1}, {"name": "Mekhi Phifer", "character": "Tyrell", "id": 327, "credit_id": "52fe43a0c3a36847f8062f39", "cast_id": 16, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 2}, {"name": "Brandy Norwood", "character": "Karla Wilson", "id": 33285, "credit_id": "52fe43a0c3a36847f8062f3d", "cast_id": 17, "profile_path": "/2HA5qGd6MSVM6hqE8yclbpnOfgw.jpg", "order": 3}, {"name": "Muse Watson", "character": "Ben Willis", "id": 17348, "credit_id": "52fe43a0c3a36847f8062f41", "cast_id": 18, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 4}, {"name": "Matthew Settle", "character": "Will Benson", "id": 33286, "credit_id": "52fe43a0c3a36847f8062f45", "cast_id": 19, "profile_path": "/neODd3vTVEb7TXOWEZC44ZZu1yk.jpg", "order": 5}, {"name": "Jennifer Esposito", "character": "Nancy", "id": 18285, "credit_id": "52fe43a0c3a36847f8062f49", "cast_id": 20, "profile_path": "/faY5fwjsJ8da3wJWSE7kQ3MPhgz.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Estes", "id": 8854, "credit_id": "52fe43a0c3a36847f8062f4d", "cast_id": 21, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Jeffrey Combs", "character": "Mr. Brooks", "id": 27993, "credit_id": "52fe43a0c3a36847f8062f51", "cast_id": 22, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 8}, {"name": "John Hawkes", "character": "Dave", "id": 16861, "credit_id": "52fe43a0c3a36847f8062f55", "cast_id": 23, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 9}], "directors": [{"name": "Danny Cannon", "department": "Directing", "job": "Director", "credit_id": "52fe43a0c3a36847f8062ee5", "profile_path": "/9E4Km6y1O0bK3dUSds3smzu20KI.jpg", "id": 33279}], "vote_average": 4.9, "runtime": 100}, "118289": {"poster_path": "/zKhkVQ1tYeDRu5Whxw3nKpH4XW.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 331634, "overview": "During the last two years of her life, Princess Diana (Naomi Watts) campaigns against the use of land mines and has a secret love affair with a Pakistani heart surgeon (Naveen Andrews).", "video": false, "id": 118289, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Diana", "tagline": "The legend is never the whole story", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758595", "adult": false, "backdrop_path": "/fA7AYUtbAkQb2XTEV57mqHGO6v0.jpg", "production_companies": [{"name": "Ecosse Films", "id": 1267}, {"name": "Le Pacte", "id": 5125}, {"name": "Scope Pictures", "id": 11199}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Filmgate Films", "id": 18230}], "release_date": "2013-09-20", "popularity": 1.29983734926955, "original_title": "Diana", "budget": 0, "cast": [{"name": "Naomi Watts", "character": "Princess Diana", "id": 3489, "credit_id": "52fe4bd2c3a36847f821546f", "cast_id": 5, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Naveen Andrews", "character": "Hasnat Khan", "id": 5471, "credit_id": "52fe4bd2c3a36847f8215473", "cast_id": 6, "profile_path": "/8Y6GvOC52mnLyiAg8Oz0IIuuW4m.jpg", "order": 1}, {"name": "Charles Edwards", "character": "Patrick Jephson", "id": 281527, "credit_id": "52fe4bd2c3a36847f8215477", "cast_id": 7, "profile_path": "/qcAysQnmu7Pi96IV85u4YjgqzkQ.jpg", "order": 2}, {"name": "Douglas Hodge", "character": "Paul Burrell", "id": 80149, "credit_id": "52fe4bd2c3a36847f821547b", "cast_id": 8, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 3}, {"name": "Lee Asquith-Coe", "character": "Police Officer", "id": 531772, "credit_id": "52fe4bd2c3a36847f821547f", "cast_id": 9, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 4}, {"name": "Cas Anvar", "character": "Dodi Fayed", "id": 59214, "credit_id": "52fe4bd2c3a36847f8215483", "cast_id": 10, "profile_path": "/m8JWOnvyjpApLc8WUYwJQGrQDG3.jpg", "order": 5}, {"name": "Geraldine James", "character": "Oonagh Toffolo", "id": 11855, "credit_id": "52fe4bd2c3a36847f8215487", "cast_id": 11, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 6}, {"name": "Juliet Stevenson", "character": "Sonia", "id": 6238, "credit_id": "52fe4bd2c3a36847f821548b", "cast_id": 12, "profile_path": "/1LBlN6J5e6kj3y6oxnxErAJidL8.jpg", "order": 7}, {"name": "Laurence Belcher", "character": "William", "id": 456008, "credit_id": "52fe4bd2c3a36847f821548f", "cast_id": 13, "profile_path": "/b8085IGbfe70N80Mz27qhsIz2PH.jpg", "order": 8}, {"name": "Michael Byrne", "character": "Christian Barnard", "id": 742, "credit_id": "52fe4bd2c3a36847f8215493", "cast_id": 14, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 9}, {"name": "Douglas Hodge", "character": "Paul Burrell", "id": 80149, "credit_id": "52fe4bd2c3a36847f8215497", "cast_id": 15, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 10}, {"name": "Mary Stockley", "character": "Assistant", "id": 40672, "credit_id": "52fe4bd2c3a36847f821549b", "cast_id": 16, "profile_path": "/duzAifGRp5avCoefoDapemvBL3h.jpg", "order": 11}, {"name": "Chris Cowlin", "character": "Paparazzi", "id": 1182303, "credit_id": "52fe4bd2c3a36847f821549f", "cast_id": 17, "profile_path": "/kta8Iod3TCtAI15DfP51Y4gZ3Ia.jpg", "order": 12}, {"name": "Daniel Pirrie", "character": "Jason Fraser", "id": 1182304, "credit_id": "52fe4bd2c3a36847f82154a3", "cast_id": 18, "profile_path": "/1fOtQSMULTkCCfjlWibZYPTnBDQ.jpg", "order": 13}, {"name": "Raffaello Degruttola", "character": "Mario Brenna", "id": 94137, "credit_id": "52fe4bd2c3a36847f82154a7", "cast_id": 19, "profile_path": "/vV4dZM9fUhekVdaCL2UhkUCh62s.jpg", "order": 14}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe4bd2c3a36847f8215459", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}], "vote_average": 5.3, "runtime": 113}, "28178": {"poster_path": "/3MpVmIg6CgOCUrZ2TZ2P0yitCbM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47801389, "overview": "A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.", "video": false, "id": 28178, "genres": [{"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Hachi: A Dog's Tale", "tagline": "A true story of faith, devotion and undying love.", "vote_count": 362, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1028532", "adult": false, "backdrop_path": "/vTv8DVboZ0Vd0o061shGPBlpi1G.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Inferno Distribution", "id": 11278}, {"name": "Grand Army Entertainment", "id": 1843}, {"name": "Scion Films", "id": 7419}], "release_date": "2009-01-01", "popularity": 1.15446293041342, "original_title": "Hachi: A Dog's Tale", "budget": 16000000, "cast": [{"name": "Richard Gere", "character": "Parker Wilson", "id": 1205, "credit_id": "52fe457fc3a368484e05ed15", "cast_id": 1, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Joan Allen", "character": "Cate Wilson", "id": 11148, "credit_id": "52fe457fc3a368484e05ed19", "cast_id": 2, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 1}, {"name": "Jason Alexander", "character": "Carl", "id": 1206, "credit_id": "52fe457fc3a368484e05ed1d", "cast_id": 3, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 2}, {"name": "Cary-Hiroyuki Tagawa", "character": "Ken", "id": 11398, "credit_id": "52fe457fc3a368484e05ed27", "cast_id": 5, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 3}, {"name": "Sarah Roemer", "character": "Andy", "id": 20376, "credit_id": "52fe457fc3a368484e05ed31", "cast_id": 7, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 4}, {"name": "Erick Avari", "character": "Jasjeet", "id": 18917, "credit_id": "52fe457fc3a368484e05ed35", "cast_id": 8, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 5}, {"name": "Davenia McFadden", "character": "Mary Anne", "id": 75620, "credit_id": "52fe457fc3a368484e05ed39", "cast_id": 9, "profile_path": "/uX5egRwfOly93uuJeSahVIxfLFV.jpg", "order": 6}, {"name": "Robbie Sublett", "character": "Michael", "id": 557932, "credit_id": "52fe457fc3a368484e05ed3d", "cast_id": 10, "profile_path": "/52Ya0f99xO1CWhb4TMeol7H6qSQ.jpg", "order": 7}, {"name": "Tora Hallstr\u00f6m", "character": "Heather", "id": 1158532, "credit_id": "52fe457fc3a368484e05ed41", "cast_id": 11, "profile_path": null, "order": 8}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe457fc3a368484e05ed23", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 7.5, "runtime": 93}, "44564": {"poster_path": "/iiy2VRxE3DjIVfrIZlOQQ5i4Ypx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67112664, "overview": "Longtime friends Ronny and Nick are partners in an auto-design firm. They are hard at work on a presentation for a dream project that would really launch their company. Then Ronny spots Nick's wife out with another man, and in the process of investigating the possible affair, he learns that Nick has a few secrets of his own. As the presentation nears, Ronny agonizes over what might happen if the truth gets out.", "video": false, "id": 44564, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Dilemma", "tagline": "Two best friends. Nothing could come between them... or could it?", "vote_count": 113, "homepage": "http://www.thedilemmamovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1578275", "adult": false, "backdrop_path": "/w2KDvs7D0E6yDGESrAeJ0tzimSA.jpg", "production_companies": [{"name": "Wild West Picture Show Productions", "id": 2796}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2011-01-13", "popularity": 0.643720758455301, "original_title": "The Dilemma", "budget": 70000000, "cast": [{"name": "Kevin James", "character": "Nick Brannen", "id": 32895, "credit_id": "52fe468fc3a36847f81059b5", "cast_id": 4, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Ronny Valentine", "id": 4937, "credit_id": "52fe468fc3a36847f81059b9", "cast_id": 5, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Winona Ryder", "character": "Geneva Brannen", "id": 1920, "credit_id": "52fe468fc3a36847f81059b1", "cast_id": 3, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 2}, {"name": "Jennifer Connelly", "character": "Beth", "id": 6161, "credit_id": "52fe468fc3a36847f81059f1", "cast_id": 17, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Dana", "id": 15758, "credit_id": "52fe468fc3a36847f81059bd", "cast_id": 6, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 4}, {"name": "Talulah Riley", "character": "Concept Car Spokesmodel", "id": 66441, "credit_id": "52fe468fc3a36847f81059c1", "cast_id": 7, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 5}, {"name": "Channing Tatum", "character": "Zip", "id": 38673, "credit_id": "52fe468fc3a36847f81059dd", "cast_id": 12, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 6}, {"name": "Chelcie Ross", "character": "Thomas Fern", "id": 10486, "credit_id": "52fe468fc3a36847f81059e1", "cast_id": 13, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 7}, {"name": "Heidi Johanningmeier", "character": "Shoot the Puck Girl", "id": 43599, "credit_id": "52fe468fc3a36847f81059e5", "cast_id": 14, "profile_path": "/hTBg6M9Zzr6SBV3YIFyZsN16pTj.jpg", "order": 8}, {"name": "Rebecca Spence", "character": "Jackie", "id": 143714, "credit_id": "52fe468fc3a36847f81059e9", "cast_id": 15, "profile_path": "/sviK5DTA2L9khatUr0yfh29YfIx.jpg", "order": 9}, {"name": "Grace Rex", "character": "Cousin Betty", "id": 143715, "credit_id": "52fe468fc3a36847f81059ed", "cast_id": 16, "profile_path": "/oGN1PKK5vI1dhzKz8oZeYpnLnij.jpg", "order": 10}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe468fc3a36847f81059a7", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 5.4, "runtime": 111}, "1966": {"poster_path": "/cJrnmbsFm5cEt0pHZZ2a1ueH5aT.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167298192, "overview": "Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians he leads his Army across the then known world venturing further than any Westerner had ever gone all the way to India.", "video": false, "id": 1966, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Alexander", "tagline": "The greatest legend of all was real.", "vote_count": 206, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0346491", "adult": false, "backdrop_path": "/cLOekK7EmHB1beYUYEXIlcr6mpS.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Intermedia Films", "id": 763}, {"name": "Pacifica Film", "id": 10926}, {"name": "Egmond Film & Television", "id": 4588}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}, {"name": "Path\u00e9 Renn Productions", "id": 866}], "release_date": "2004-11-24", "popularity": 0.621296705524015, "original_title": "Alexander", "budget": 155000000, "cast": [{"name": "Colin Farrell", "character": "Alexander", "id": 72466, "credit_id": "52fe4327c3a36847f803e51d", "cast_id": 42, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Olympias", "id": 11701, "credit_id": "52fe4327c3a36847f803e45f", "cast_id": 3, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Philip", "id": 5576, "credit_id": "52fe4327c3a36847f803e463", "cast_id": 4, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Jared Leto", "character": "Hephaistion", "id": 7499, "credit_id": "52fe4327c3a36847f803e467", "cast_id": 5, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 3}, {"name": "Jonathan Rhys Meyers", "character": "Cassander", "id": 1244, "credit_id": "52fe4327c3a36847f803e46b", "cast_id": 6, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 4}, {"name": "Anthony Hopkins", "character": "Old Ptolemy", "id": 4173, "credit_id": "52fe4327c3a36847f803e46f", "cast_id": 7, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 5}, {"name": "Jessie Kamm", "character": "Child Alexander", "id": 20278, "credit_id": "52fe4327c3a36847f803e473", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Fiona O'Shaughnessy", "character": "Nurse", "id": 20279, "credit_id": "52fe4327c3a36847f803e477", "cast_id": 9, "profile_path": "/sxJ1DkancVjA0SSNTSFRu3hElaf.jpg", "order": 7}, {"name": "Connor Paolo", "character": "Young Alexander", "id": 4738, "credit_id": "52fe4327c3a36847f803e47b", "cast_id": 10, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 8}, {"name": "Patrick Carroll", "character": "Young Hephaistion", "id": 20280, "credit_id": "52fe4327c3a36847f803e47f", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Peter Williamson", "character": "Young Nearchus", "id": 20281, "credit_id": "52fe4327c3a36847f803e483", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Christopher Plummer", "character": "Aristotle", "id": 290, "credit_id": "52fe4327c3a36847f803e487", "cast_id": 13, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 11}, {"name": "John Kavanagh", "character": "Parmenion", "id": 20282, "credit_id": "52fe4327c3a36847f803e48b", "cast_id": 14, "profile_path": "/3ElWQEcnhi3lgYtbWPVV9EfExdw.jpg", "order": 12}, {"name": "Gary Stretch", "character": "Cleitus", "id": 20284, "credit_id": "52fe4327c3a36847f803e48f", "cast_id": 15, "profile_path": "/zEavHYLoiPIUO208n0qWKdtow2w.jpg", "order": 13}, {"name": "Rosario Dawson", "character": "Roxane", "id": 5916, "credit_id": "52fe4327c3a36847f803e493", "cast_id": 16, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 14}, {"name": "F\u00e9odor Atkine", "character": "Roxane's Father", "id": 20285, "credit_id": "52fe4327c3a36847f803e497", "cast_id": 17, "profile_path": "/cf50q5tFxLlp6rlSyG96AlhZrfi.jpg", "order": 15}, {"name": "Toby Kebbell", "character": "Pausanius", "id": 20286, "credit_id": "52fe4327c3a36847f803e49b", "cast_id": 18, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 16}, {"name": "Laird Macintosh", "character": "Greek Officer", "id": 20287, "credit_id": "52fe4327c3a36847f803e49f", "cast_id": 19, "profile_path": "/sjGP1GWrZkK8DxLBHx2Wkto7om7.jpg", "order": 17}, {"name": "Francisco Bosch", "character": "Bagoas", "id": 20288, "credit_id": "52fe4327c3a36847f803e4a3", "cast_id": 20, "profile_path": "/1FiVxwoMh1RxhHmfsQyWCWqoDPd.jpg", "order": 18}, {"name": "Neil Jackson", "character": "Perdiccas", "id": 20289, "credit_id": "52fe4327c3a36847f803e4a7", "cast_id": 21, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 19}, {"name": "Garrett Lombard", "character": "Leonnatus", "id": 20290, "credit_id": "52fe4327c3a36847f803e4ab", "cast_id": 22, "profile_path": "/6562i3k8ut6cNp4BSnVqG1UTLR8.jpg", "order": 20}, {"name": "Chris Aberdein", "character": "Polyperchon", "id": 20291, "credit_id": "52fe4327c3a36847f803e4af", "cast_id": 23, "profile_path": null, "order": 21}, {"name": "Rory McCann", "character": "Crateros", "id": 3075, "credit_id": "52fe4327c3a36847f803e4b3", "cast_id": 24, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 22}, {"name": "Raz Degan", "character": "Darius III", "id": 135142, "credit_id": "52fe4327c3a36847f803e521", "cast_id": 43, "profile_path": "/A7ZcRLCbywX62QOgQWaBMDi9ovz.jpg", "order": 23}, {"name": "Joseph Morgan", "character": "Philotas", "id": 79505, "credit_id": "52fe4327c3a36847f803e525", "cast_id": 44, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 24}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e45b", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 5.8, "runtime": 175}, "11798": {"poster_path": "/wVc7lwmTgDN7QY4G9V8dfYynDec.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 8176544, "overview": "A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends even like family. Based on experiences of director Shane Meadows.", "video": false, "id": 11798, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "This Is England", "tagline": "Run with the crowd, stand alone, you decide.", "vote_count": 62, "homepage": "http://www.thisisenglandmovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480025", "adult": false, "backdrop_path": "/51e84mD3gabhrY9R0Px3sn0ZvnY.jpg", "production_companies": [{"name": "EM Media", "id": 1917}, {"name": "UK Film Council", "id": 2452}, {"name": "Screen Yorkshire", "id": 2690}, {"name": "Big Arty Productions", "id": 3519}], "release_date": "2007-04-27", "popularity": 0.161895207715109, "original_title": "This Is England", "budget": 2380000, "cast": [{"name": "Thomas Turgoose", "character": "Shaun", "id": 70517, "credit_id": "52fe44879251416c75038025", "cast_id": 1, "profile_path": "/5cZboxmFmALIr7qIAvsJRnIJ9eO.jpg", "order": 0}, {"name": "Stephen Graham", "character": "Combo", "id": 1115, "credit_id": "52fe44879251416c75038029", "cast_id": 2, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 1}, {"name": "Jo Hartley", "character": "Cynth", "id": 70518, "credit_id": "52fe44879251416c7503802d", "cast_id": 3, "profile_path": "/qK4jrcMxUXY3ecr1bwshZuuO8eH.jpg", "order": 2}, {"name": "Andrew Shim", "character": "Milky", "id": 70519, "credit_id": "52fe44879251416c75038031", "cast_id": 4, "profile_path": "/eLh2PHrrKeR3dlDk3zFoQG6zeMj.jpg", "order": 3}, {"name": "Vicky McClure", "character": "Lol", "id": 148139, "credit_id": "52fe44879251416c75038083", "cast_id": 19, "profile_path": "/e5eucukisVx2CTxZbAMIQraIFcA.jpg", "order": 4}, {"name": "Joseph Gilgun", "character": "Woody", "id": 225610, "credit_id": "52fe44879251416c75038087", "cast_id": 20, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 5}, {"name": "Perry Benson", "character": "Meggy", "id": 59076, "credit_id": "52fe44879251416c7503808b", "cast_id": 21, "profile_path": "/6EEOQx1wPLlx4iyaX9UbSywOVjg.jpg", "order": 6}, {"name": "Andrew Ellis", "character": "Gadget", "id": 225611, "credit_id": "52fe44879251416c7503808f", "cast_id": 22, "profile_path": "/kuYkAcqfCy0Lp5Q7fPUEFPIgqPv.jpg", "order": 7}, {"name": "Jack O'Connell", "character": "Pukey Nicholls", "id": 85065, "credit_id": "53cd65e40e0a265dfc00433b", "cast_id": 23, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 8}], "directors": [{"name": "Shane Meadows", "department": "Directing", "job": "Director", "credit_id": "52fe44879251416c75038037", "profile_path": "/zQhdD413z4RFuo9LbYJ2DEmMuky.jpg", "id": 70520}], "vote_average": 7.3, "runtime": 101}, "77338": {"poster_path": "/4mFsNQwbD0F237Tx7gAPotd0nbJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 426480871, "overview": "A true story of two men who should never have met - a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.", "video": false, "id": 77338, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Intouchables", "tagline": "Sometimes you have to reach into someone else's world to find out what's missing in your own.", "vote_count": 1384, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1675434", "adult": false, "backdrop_path": "/ihWaJZCUIon2dXcosjQG2JHJAPN.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Quad Productions", "id": 7038}, {"name": "Ten Films", "id": 8018}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "TF1", "id": 22123}, {"name": "Chaocorp", "id": 7766}, {"name": "Gaumont", "id": 9}], "release_date": "2011-11-02", "popularity": 2.07392536278913, "original_title": "Intouchables", "budget": 13000000, "cast": [{"name": "Fran\u00e7ois Cluzet", "character": "Philippe", "id": 33161, "credit_id": "52fe4967c3a368484e129b19", "cast_id": 6, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 0}, {"name": "Omar Sy", "character": "Driss", "id": 78423, "credit_id": "52fe4967c3a368484e129b1d", "cast_id": 7, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 1}, {"name": "Anne Le Ny", "character": "Yvonne", "id": 19370, "credit_id": "52fe4967c3a368484e129b21", "cast_id": 8, "profile_path": "/maDtYMoyY1GVrEQDYFl1NdlmT0e.jpg", "order": 2}, {"name": "Audrey Fleurot", "character": "Magalie", "id": 219708, "credit_id": "52fe4967c3a368484e129b37", "cast_id": 19, "profile_path": "/cvCRChF1HzYviQsfZzFpeNzjYap.jpg", "order": 3}, {"name": "Clotilde Mollet", "character": "Marcelle", "id": 2411, "credit_id": "52fe4967c3a368484e129b3b", "cast_id": 20, "profile_path": "/8aXYC2plPTD48hhTnpZSZs3KoSX.jpg", "order": 4}, {"name": "Alba Ga\u00efa Kraghede Bellugi", "character": "Elisa", "id": 26107, "credit_id": "52fe4967c3a368484e129b3f", "cast_id": 21, "profile_path": "/dGXOSkbaX1aXY56paBThprMUnTy.jpg", "order": 5}, {"name": "Cyril Mendy", "character": "Adama", "id": 581728, "credit_id": "52fe4967c3a368484e129b43", "cast_id": 22, "profile_path": "/z0SMhDT34Pm4J06mQY6nJmiOMsp.jpg", "order": 6}, {"name": "Christian Ameri", "character": "Albert", "id": 581729, "credit_id": "52fe4967c3a368484e129b47", "cast_id": 23, "profile_path": "/dVcoTwFIAxSEC2YznslNacAQPru.jpg", "order": 7}, {"name": "Marie-Laure Descoureaux", "character": "Chantal", "id": 333422, "credit_id": "52fe4967c3a368484e129b4b", "cast_id": 25, "profile_path": "/xK44bqU7P8kNzqXLjJDQu2D5K67.jpg", "order": 8}, {"name": "Salimata Kamate", "character": "Fatou", "id": 1411815, "credit_id": "54b143639251417472001f33", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Absa Diatou Toure", "character": "Mina", "id": 1411817, "credit_id": "54b14372c3a3680940002034", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Gr\u00e9goire Oestermann", "character": "Antoine", "id": 1319891, "credit_id": "54b143869251417479001d59", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Dominique Daguier", "character": "Amie de Philippe", "id": 1349054, "credit_id": "54b14397925141746c001de6", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Fran\u00e7ois Caron", "character": "Ami de Philippe", "id": 224148, "credit_id": "54b143a79251417479001d5e", "cast_id": 36, "profile_path": "/5okcfO4Z7j26zUiSR8EspJgZL1J.jpg", "order": 13}, {"name": "Christian Ameri", "character": "Albert", "id": 581729, "credit_id": "54b143b6c3a368401200196c", "cast_id": 37, "profile_path": "/dVcoTwFIAxSEC2YznslNacAQPru.jpg", "order": 14}, {"name": "Thomas Soliv\u00e9res", "character": "Bastien", "id": 1069637, "credit_id": "54b143d5c3a36809390022a7", "cast_id": 38, "profile_path": "/5aZRznX6bmStaao3JvmM6ywv1Pq.jpg", "order": 15}], "directors": [{"name": "Eric Toledano", "department": "Directing", "job": "Director", "credit_id": "52fe4967c3a368484e129afd", "profile_path": null, "id": 84425}, {"name": "Olivier Nakache", "department": "Directing", "job": "Director", "credit_id": "52fe4967c3a368484e129b03", "profile_path": null, "id": 84426}], "vote_average": 8.1, "runtime": 112}, "19995": {"poster_path": "/tcqb9NHdw9SWs2a88KCDD4V8sVR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2781505847, "overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.", "video": false, "id": 19995, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Avatar", "tagline": "Enter the World of Pandora.", "vote_count": 6240, "homepage": "http://www.avatarmovie.com/", "belongs_to_collection": {"backdrop_path": "/9s4BM48NweGFrIRE6haIul0YJ9f.jpg", "poster_path": "/nslJVsO58Etqkk17oXMuVK4gNOF.jpg", "id": 87096, "name": "Avatar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0499549", "adult": false, "backdrop_path": "/5XPPB44RQGfkBrbJxmtdndKz05n.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Lightstorm Entertainment", "id": 574}], "release_date": "2009-12-18", "popularity": 3.64373820317259, "original_title": "Avatar", "budget": 237000000, "cast": [{"name": "Sam Worthington", "character": "Jake Sully", "id": 65731, "credit_id": "52fe48009251416c750ac9c7", "cast_id": 2, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Neytiri", "id": 8691, "credit_id": "52fe48009251416c750ac9cb", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Dr. Grace Augustine", "id": 10205, "credit_id": "52fe48009251416c750aca39", "cast_id": 25, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Stephen Lang", "character": "Col. Quaritch", "id": 32747, "credit_id": "52fe48009251416c750ac9cf", "cast_id": 4, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 3}, {"name": "Michelle Rodriguez", "character": "Trudy Chacon", "id": 17647, "credit_id": "52fe48009251416c750ac9d3", "cast_id": 5, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Selfridge", "id": 1771, "credit_id": "52fe48009251416c750ac9e1", "cast_id": 8, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "Joel David Moore", "character": "Norm Spellman", "id": 59231, "credit_id": "52fe48009251416c750ac9dd", "cast_id": 7, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 6}, {"name": "C. C. H. Pounder", "character": "Moat", "id": 30485, "credit_id": "52fe48009251416c750ac9e5", "cast_id": 9, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 7}, {"name": "Wes Studi", "character": "Eytukan", "id": 15853, "credit_id": "52fe48009251416c750ac9ed", "cast_id": 11, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 8}, {"name": "Laz Alonso", "character": "Tsu'Tey", "id": 10964, "credit_id": "52fe48009251416c750ac9e9", "cast_id": 10, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 9}, {"name": "Dileep Rao", "character": "Dr. Max Patel", "id": 95697, "credit_id": "52fe48009251416c750ac9f1", "cast_id": 12, "profile_path": "/f9xQkvWw5guOePcCxkso1i09w12.jpg", "order": 10}, {"name": "Matt Gerald", "character": "Lyle Wainfleet", "id": 98215, "credit_id": "52fe48009251416c750ac9f5", "cast_id": 13, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 11}, {"name": "Sean Anthony Moran", "character": "Private Fike", "id": 154153, "credit_id": "52fe48009251416c750aca5b", "cast_id": 32, "profile_path": "/vWCRgfEzCuMqsageHGpE2HD3lo3.jpg", "order": 12}, {"name": "Jason Whyte", "character": "Cryo Vault Med Tech", "id": 397312, "credit_id": "52fe48009251416c750aca5f", "cast_id": 33, "profile_path": "/yIT9TmIerjcoBXLvaHI8YdLttx7.jpg", "order": 13}, {"name": "Scott Lawrence", "character": "Venture Star Crew Chief", "id": 42317, "credit_id": "52fe48009251416c750aca63", "cast_id": 34, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 14}, {"name": "Kelly Kilgour", "character": "Lock Up Trooper", "id": 986734, "credit_id": "52fe48009251416c750aca67", "cast_id": 35, "profile_path": "/43zuUGlaHIOMak260qMH6wUVkb2.jpg", "order": 15}, {"name": "James Patrick Pitt", "character": "Shuttle Pilot", "id": 1207227, "credit_id": "52fe48009251416c750aca6b", "cast_id": 36, "profile_path": "/clJrkwWPY7QnfP5NvsiBkJ7JsVd.jpg", "order": 16}, {"name": "Sean Patrick Murphy", "character": "Shuttle Co-Pilot", "id": 1180936, "credit_id": "52fe48009251416c750aca6f", "cast_id": 37, "profile_path": "/giM7FHH0VZkU6T738Oi6Yn19qNT.jpg", "order": 17}, {"name": "Peter Dillon", "character": "Shuttle Crew Chief", "id": 1019578, "credit_id": "52fe48009251416c750aca73", "cast_id": 38, "profile_path": "/viOCreF32uEu5R5Zhw0oWuZQhZh.jpg", "order": 18}, {"name": "Kevin Dorman", "character": "Tractor Operator / Troupe", "id": 91443, "credit_id": "52fe48009251416c750aca77", "cast_id": 39, "profile_path": "/2r0e3hV5l3vhf3s7RgarvFxH0WT.jpg", "order": 19}, {"name": "Kelson Henderson", "character": "Dragon Gunship Pilot", "id": 173391, "credit_id": "52fe48009251416c750aca7b", "cast_id": 40, "profile_path": "/3Ezzw4mB6oUBZGyx8jNXQhuLupZ.jpg", "order": 20}, {"name": "David Van Horn", "character": "Dragon Gunship Gunner", "id": 1207236, "credit_id": "52fe48009251416c750aca7f", "cast_id": 41, "profile_path": "/ax7rToAW10zmnRoU3x68octA5NT.jpg", "order": 21}, {"name": "Jacob Tomuri", "character": "Dragon Gunship Navigator", "id": 215913, "credit_id": "52fe48009251416c750aca83", "cast_id": 42, "profile_path": "/di0nx350h4m6k0smnktYWUqdUnh.jpg", "order": 22}, {"name": "Michael Blain-Rozgay", "character": "Suit #1", "id": 143206, "credit_id": "52fe48009251416c750aca87", "cast_id": 43, "profile_path": "/9NxAdcXilvTJ3BUVhwDxio57U5I.jpg", "order": 23}, {"name": "Jon Curry", "character": "Suit #2", "id": 169676, "credit_id": "52fe48009251416c750aca8b", "cast_id": 44, "profile_path": "/ov0cpE9azPsPAG7oESetN8OxHO8.jpg", "order": 24}, {"name": "Luke Hawker", "character": "Ambient Room Tech", "id": 1048610, "credit_id": "52fe48009251416c750aca8f", "cast_id": 46, "profile_path": "/fu2xLJHXnPVQDL5wd5RDB3Dw3p7.jpg", "order": 25}, {"name": "Woody Schultz", "character": "Ambient Room Tech / Troupe", "id": 42288, "credit_id": "52fe48009251416c750aca93", "cast_id": 47, "profile_path": "/AjzkMGiWGnG27W1JTDWDGYn8TP.jpg", "order": 26}, {"name": "Peter Mensah", "character": "Horse Clan Leader", "id": 68278, "credit_id": "52fe48009251416c750aca97", "cast_id": 48, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 27}, {"name": "Sonia Yee", "character": "Link Room Tech", "id": 1207247, "credit_id": "52fe48009251416c750aca9b", "cast_id": 49, "profile_path": "/AbM60ZHkHhFfFUGdbnJTBbDHFSu.jpg", "order": 28}, {"name": "Jahnel Curfman", "character": "Basketball Avatar / Troupe", "id": 1207248, "credit_id": "52fe48009251416c750aca9f", "cast_id": 50, "profile_path": "/8uvnQtuF5eMWCHm3C2hbO1Wv63M.jpg", "order": 29}, {"name": "Ilram Choi", "character": "Basketball Avatar", "id": 89714, "credit_id": "52fe48009251416c750acaa3", "cast_id": 51, "profile_path": "/p6NmIraf9A22qtrp3p9PnikFWV.jpg", "order": 30}, {"name": "Kyla Warren", "character": "Na'vi Child", "id": 1207249, "credit_id": "52fe48009251416c750acaa7", "cast_id": 52, "profile_path": "/vTkGQt1u1wtdf5Id6jkOsqF4U0V.jpg", "order": 31}, {"name": "Lisa Roumain", "character": "Troupe", "id": 1207250, "credit_id": "52fe48009251416c750acaab", "cast_id": 53, "profile_path": "/wtzvCVEBj3owQcPOBolDSXnUHft.jpg", "order": 32}, {"name": "Debra Wilson", "character": "Troupe", "id": 83105, "credit_id": "52fe48009251416c750acaaf", "cast_id": 54, "profile_path": "/cti0sST91arxQMYzej0rBbmvpDF.jpg", "order": 33}, {"name": "Taylor Kibby", "character": "Troupe", "id": 1207251, "credit_id": "52fe48009251416c750acab3", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Jodie Landau", "character": "Troupe", "id": 1207252, "credit_id": "52fe48009251416c750acab7", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Chris Mala", "character": "Troupe", "id": 1207253, "credit_id": "52fe48009251416c750acabb", "cast_id": 57, "profile_path": "/hjXIePzv0Stgg3I4nEpeeM9lZCN.jpg", "order": 36}, {"name": "Julie Lamm", "character": "Troupe", "id": 1207254, "credit_id": "52fe48009251416c750acabf", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "Cullen B. Madden", "character": "Troupe", "id": 1207257, "credit_id": "52fe48009251416c750acac3", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Joseph Brady Madden", "character": "Troupe", "id": 1207259, "credit_id": "52fe48009251416c750acac7", "cast_id": 60, "profile_path": null, "order": 39}, {"name": "Frankie Torres", "character": "Troupe", "id": 1207262, "credit_id": "52fe48009251416c750acacb", "cast_id": 61, "profile_path": null, "order": 40}, {"name": "Austin Wilson", "character": "Troupe", "id": 1158600, "credit_id": "52fe48009251416c750acacf", "cast_id": 62, "profile_path": null, "order": 41}, {"name": "Sara Wilson", "character": "Troupe", "id": 983705, "credit_id": "52fe48019251416c750acad3", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Tamica Washington-Miller", "character": "Troupe", "id": 1207263, "credit_id": "52fe48019251416c750acad7", "cast_id": 64, "profile_path": "/2Lyedbl6HPBx1TJ1DmsVyqxcfPX.jpg", "order": 43}, {"name": "Lucy Briant", "character": "Op Center Staff", "id": 1145098, "credit_id": "52fe48019251416c750acadb", "cast_id": 65, "profile_path": "/dgqpav2Zpc7OIHqRq2AnSVGkXUX.jpg", "order": 44}, {"name": "Nathan Meister", "character": "Op Center Staff", "id": 33305, "credit_id": "52fe48019251416c750acadf", "cast_id": 66, "profile_path": "/i8XOPuKT04D0bXbczSBCb1e3y22.jpg", "order": 45}, {"name": "Gerry Blair", "character": "Op Center Staff", "id": 1207264, "credit_id": "52fe48019251416c750acae3", "cast_id": 67, "profile_path": null, "order": 46}, {"name": "Matthew Chamberlain", "character": "Op Center Staff", "id": 33311, "credit_id": "52fe48019251416c750acae7", "cast_id": 68, "profile_path": "/rTdYqm2Q1OFfTin2qf0acOqw4Va.jpg", "order": 47}, {"name": "Paul Yates", "character": "Op Center Staff", "id": 1207265, "credit_id": "52fe48019251416c750acaeb", "cast_id": 69, "profile_path": "/4sn8Lj0UtpH7xHPEFQsa4V4twVO.jpg", "order": 48}, {"name": "Wray Wilson", "character": "Op Center Duty Officer", "id": 1207266, "credit_id": "52fe48019251416c750acaef", "cast_id": 70, "profile_path": "/kRAKRcRoYvEXFsRJcv9RuwwIxuS.jpg", "order": 49}, {"name": "James Gaylyn", "character": "Op Center Staff", "id": 54492, "credit_id": "52fe48019251416c750acaf3", "cast_id": 71, "profile_path": "/ynZVceoV6AbAUy9tVICGXERt6KH.jpg", "order": 50}, {"name": "Melvin Leno Clark III", "character": "Dancer", "id": 1207267, "credit_id": "52fe48019251416c750acaf7", "cast_id": 72, "profile_path": "/xqEC8as2SfO6O2i09OtyYNsYA3T.jpg", "order": 51}, {"name": "Carvon Futrell", "character": "Dancer", "id": 1207268, "credit_id": "52fe48019251416c750acafb", "cast_id": 73, "profile_path": null, "order": 52}, {"name": "Brandon Jelkes", "character": "Dancer", "id": 1207269, "credit_id": "52fe48019251416c750acaff", "cast_id": 74, "profile_path": "/ocXSXoscb6GG7qcBGF9HRwzC8iI.jpg", "order": 53}, {"name": "Micah Moch", "character": "Dancer", "id": 1207270, "credit_id": "52fe48019251416c750acb03", "cast_id": 75, "profile_path": "/xgjCN8mTSMUPzphqE8yniCDjYFO.jpg", "order": 54}, {"name": "Hanniyah Muhammad", "character": "Dancer", "id": 1207271, "credit_id": "52fe48019251416c750acb07", "cast_id": 76, "profile_path": null, "order": 55}, {"name": "Christopher Nolen", "character": "Dancer", "id": 1207272, "credit_id": "52fe48019251416c750acb0b", "cast_id": 77, "profile_path": "/jqb7MpimsL2D9txjUW9mGfNsPGI.jpg", "order": 56}, {"name": "Christa Oliver", "character": "Dancer", "id": 1207273, "credit_id": "52fe48019251416c750acb0f", "cast_id": 78, "profile_path": "/aayUWCEbRtPvnRdlCHps8EEFbsO.jpg", "order": 57}, {"name": "April Marie Thomas", "character": "Dancer", "id": 1207274, "credit_id": "52fe48019251416c750acb13", "cast_id": 79, "profile_path": "/rW3ieqIMXtfFU3GR2rlQQm703gh.jpg", "order": 58}, {"name": "Bravita A. Threatt", "character": "Dancer", "id": 1207275, "credit_id": "52fe48019251416c750acb17", "cast_id": 80, "profile_path": "/oOFxzhC0ysYCeVxmrf59sTZlpLk.jpg", "order": 59}, {"name": "Colin Bleasdale", "character": "Mining Chief (uncredited)", "id": 1207276, "credit_id": "52fe48019251416c750acb1b", "cast_id": 81, "profile_path": null, "order": 60}, {"name": "Mike Bodnar", "character": "Veteran Miner (uncredited)", "id": 107969, "credit_id": "52fe48019251416c750acb1f", "cast_id": 82, "profile_path": "/tmMN1SWDfNAAxeLfIAadGUXSmD3.jpg", "order": 61}, {"name": "Matt Clayton", "character": "Richard (uncredited)", "id": 1207278, "credit_id": "52fe48019251416c750acb23", "cast_id": 83, "profile_path": "/c723SPBGHRI3mubqeR77lHbi3kk.jpg", "order": 62}, {"name": "Nicole Dionne", "character": "Nav'i (uncredited)", "id": 147898, "credit_id": "52fe48019251416c750acb27", "cast_id": 84, "profile_path": "/7UmaoVYIwnY1c7H6LsVJaQe4OeE.jpg", "order": 63}, {"name": "Jamie Harrison", "character": "Trooper (uncredited)", "id": 1207280, "credit_id": "52fe48019251416c750acb2b", "cast_id": 85, "profile_path": null, "order": 64}, {"name": "Allan Henry", "character": "Trooper (uncredited)", "id": 1207281, "credit_id": "52fe48019251416c750acb2f", "cast_id": 86, "profile_path": "/ma3ZFzGiF4ANlEym3ACFOG0n7qV.jpg", "order": 65}, {"name": "Anthony Ingruber", "character": "Ground Technician (uncredited)", "id": 1207282, "credit_id": "52fe48019251416c750acb33", "cast_id": 87, "profile_path": "/cFN50vtqZyYQSs07EvVYIRCIdCJ.jpg", "order": 66}, {"name": "Ashley Jeffery", "character": "Flight Crew Mechanic (uncredited)", "id": 1207283, "credit_id": "52fe48019251416c750acb37", "cast_id": 88, "profile_path": "/hYgCSvYOkOCnQDJo0VKZdWi21zL.jpg", "order": 67}, {"name": "Dean Knowsley", "character": "Samson Pilot", "id": 98216, "credit_id": "52fe48009251416c750ac9f9", "cast_id": 14, "profile_path": "/uLBD2u1xuAUo9Fbxe6Jla9jEIEx.jpg", "order": 68}, {"name": "Joseph Mika-Hunt", "character": "Trooper (uncredited)", "id": 1201399, "credit_id": "52fe48019251416c750acb3b", "cast_id": 89, "profile_path": "/qXSDkIsO8K4mTxhXbRtLbZvvZom.jpg", "order": 69}, {"name": "Terry Notary", "character": "Banshee (uncredited)", "id": 236696, "credit_id": "52fe48019251416c750acb3f", "cast_id": 90, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 70}, {"name": "Kai Pantano", "character": "Soldier (uncredited)", "id": 1207287, "credit_id": "52fe48019251416c750acb43", "cast_id": 91, "profile_path": "/pXR5aOovzm2OF8BvBuJ30j0wNGj.jpg", "order": 71}, {"name": "Logan Pithyou", "character": "Blast Technician (uncredited)", "id": 1207288, "credit_id": "52fe48019251416c750acb47", "cast_id": 92, "profile_path": "/rtjXKbQHWjDSBEDd2HER8ijs1Ab.jpg", "order": 72}, {"name": "Stuart Pollock", "character": "Vindum Raah (uncredited)", "id": 1207289, "credit_id": "52fe48019251416c750acb4b", "cast_id": 93, "profile_path": null, "order": 73}, {"name": "Raja", "character": "Hero (uncredited)", "id": 584868, "credit_id": "52fe48019251416c750acb4f", "cast_id": 94, "profile_path": "/1nbG9zOGqwhQ9EcZqClgQFuLMJ8.jpg", "order": 74}, {"name": "Gareth Ruck", "character": "Ops Centreworker (uncredited)", "id": 1207290, "credit_id": "52fe48019251416c750acb53", "cast_id": 95, "profile_path": "/t6pi1fYbbyYAqje6eto8SuZZzxI.jpg", "order": 75}, {"name": "Rhian Sheehan", "character": "Engineer (uncredited)", "id": 1062463, "credit_id": "52fe48019251416c750acb57", "cast_id": 96, "profile_path": "/eEMF0snLJvpE64RRt0Hvnu8oFN.jpg", "order": 76}, {"name": "T. J. Storm", "character": "Col. Quaritch's Mech Suit (uncredited)", "id": 60656, "credit_id": "52fe48019251416c750acb5b", "cast_id": 97, "profile_path": "/kio8ukD9QyQEoLxzXOUwswZP5Rz.jpg", "order": 77}, {"name": "Jodie Taylor", "character": "Female Marine (uncredited)", "id": 1207291, "credit_id": "52fe48019251416c750acb5f", "cast_id": 98, "profile_path": null, "order": 78}, {"name": "Alicia Vela-Bailey", "character": "Ikran Clan Leader (uncredited)", "id": 1186027, "credit_id": "52fe48019251416c750acb63", "cast_id": 99, "profile_path": "/kVuyn6sS7ZSBlXVjjxq0LSE3k4I.jpg", "order": 79}, {"name": "Richard Whiteside", "character": "Geologist (uncredited)", "id": 1207292, "credit_id": "52fe48019251416c750acb67", "cast_id": 100, "profile_path": "/g6lB4GzULZuFJotXrjLWh1QB4YX.jpg", "order": 80}, {"name": "Nikie Zambo", "character": "Na'vi (uncredited)", "id": 103259, "credit_id": "52fe48019251416c750acb6b", "cast_id": 101, "profile_path": "/ezRRJjH3o6ayHKI1Z6B70jhfaSe.jpg", "order": 81}, {"name": "Julene Renee", "character": "Ambient Room Tech / Troupe", "id": 42286, "credit_id": "52fe48019251416c750acb6f", "cast_id": 102, "profile_path": "/gONOL0vTflEd5yH1x3hcr2maFV5.jpg", "order": 82}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe48009251416c750ac9c3", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.0, "runtime": 162}, "183836": {"poster_path": "/431ndeOWAkMmlOxkV8ZfMfSpuMO.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Newly engaged, Thomas meets his future father-in-law Gilbert, who has been married for 30 years to Suzanne. Disillusioned Gilbert is convinced that his marriage has meant he's missed out on life. He persuades Thomas not to marry his daughter Lola and encourages him to drop everything else in his life as well. The two men then throw themselves into a new brats' life full of adventure, convinced that freedom is elsewhere. But at what cost do we rediscover our adolescent dreams?", "video": false, "id": 183836, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Brats", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt2354181", "adult": false, "backdrop_path": "/cyWNCOy2jvEumNmqXHjPKNkIUhS.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "2013-04-17", "popularity": 0.209622092007558, "original_title": "Les Gamins", "budget": 0, "cast": [{"name": "Alain Chabat", "character": "Gilbert", "id": 4275, "credit_id": "52fe4cad9251416c75121fed", "cast_id": 2, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 0}, {"name": "Max Boublil", "character": "Thomas", "id": 146359, "credit_id": "52fe4cad9251416c75121ff1", "cast_id": 3, "profile_path": "/hFi04bvLfgmMtSCewmKpeU96Cr8.jpg", "order": 1}, {"name": "Sandrine Kiberlain", "character": "Suzanne", "id": 81821, "credit_id": "52fe4cad9251416c75121ff5", "cast_id": 4, "profile_path": "/nISERu1XbLVgX4OffyA8nnfBEpq.jpg", "order": 2}, {"name": "M\u00e9lanie Bernier", "character": "Lola", "id": 132431, "credit_id": "52fe4cad9251416c75121ff9", "cast_id": 5, "profile_path": "/5ueLuC5AUXDgMEeuxzTNPTWOvB3.jpg", "order": 3}, {"name": "Ari\u00e9 Elmaleh", "character": "Carl", "id": 82302, "credit_id": "52fe4cad9251416c75121ffd", "cast_id": 6, "profile_path": "/l2j1Zrr4DljQuEJm6HYQurwvJK7.jpg", "order": 4}, {"name": "Elisa Sednaoui", "character": "Ir\u00e8ne", "id": 132068, "credit_id": "52fe4cad9251416c75122001", "cast_id": 7, "profile_path": "/nVPO2TUXk2NzxWT5ezgb8c2OTzg.jpg", "order": 5}, {"name": "Alban Lenoir", "character": "Romain", "id": 220692, "credit_id": "52fe4cad9251416c75122005", "cast_id": 8, "profile_path": "/xJ30y5a0ZdWpujwcGkl5dLy5NC7.jpg", "order": 6}, {"name": "Fran\u00e7ois Dunoyer", "character": "Claude", "id": 24459, "credit_id": "52fe4cad9251416c75122009", "cast_id": 9, "profile_path": "/qDYaMU2H2vdHe2hHibSo7MYQ8EM.jpg", "order": 7}, {"name": "Nicolas Brian\u00e7on", "character": "Bruno", "id": 54922, "credit_id": "52fe4cad9251416c7512200d", "cast_id": 10, "profile_path": "/nKwgQg9h8yZ1dLyY5V4IhiePQdj.jpg", "order": 8}, {"name": "M\u00e9lusine Mayance", "character": "Mimi Zozo", "id": 228884, "credit_id": "52fe4cad9251416c75122011", "cast_id": 11, "profile_path": "/reSKwPf0AtTiiW94fOB2TDbzMLO.jpg", "order": 9}, {"name": "Iggy Pop", "character": "lui m\u00eame", "id": 13604, "credit_id": "53a73c260e0a26144500450a", "cast_id": 25, "profile_path": "/orkeTSZYiHVKqeTntsD6e6VHuqc.jpg", "order": 10}, {"name": "Kheiron", "character": "Reza Sadequi", "id": 1333461, "credit_id": "53a74136c3a3687a34003e55", "cast_id": 26, "profile_path": "/nicSNVyvbn3xQiLSl283v2w7TwJ.jpg", "order": 11}, {"name": "S\u00e9bastien Castro", "character": "D\u00e9d\u00e9", "id": 1146848, "credit_id": "53a74242c3a3687a2b00413a", "cast_id": 27, "profile_path": "/zQX5rhMuruhyqhxcsC1y3RRq290.jpg", "order": 12}], "directors": [{"name": "Anthony Marciano", "department": "Directing", "job": "Director", "credit_id": "52fe4cad9251416c75121fe9", "profile_path": null, "id": 1167069}], "vote_average": 6.4, "runtime": 95}, "11806": {"poster_path": "/rjmkdq77jvcJgXn0E88Fl2Qu7vI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147214049, "overview": "The Newton family live in their comfortable home, but there seems to something missing. This \"hole\" is filled by a small puppy, who walks into their home and their lives. Beethoven, as he is named, grows into a giant of a dog... a St Bernard. Doctor Varnick, the local vet has a secret and horrible sideline, which requires lots of dogs for experiments. Beethoven is on the bad doctor's list.", "video": false, "id": 11806, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Beethoven", "tagline": "The head of the family is the one with the tail.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ogXWk8vtx6Pn6kEiak8VQmFCqit.jpg", "poster_path": "/ybRLSziV8GYKPPkYNP6iJpTjMv3.jpg", "id": 168880, "name": "Beethoven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103786", "adult": false, "backdrop_path": "/bRLRsAORRuTfZj5XcGWpNXPlt1z.jpg", "production_companies": [{"name": "Northern Lights Entertainment", "id": 8816}, {"name": "Universal Pictures", "id": 33}], "release_date": "1992-04-03", "popularity": 0.429394176335179, "original_title": "Beethoven", "budget": 0, "cast": [{"name": "Charles Grodin", "character": "George Newton", "id": 28164, "credit_id": "52fe44899251416c75038355", "cast_id": 12, "profile_path": "/qxZjqrA728HrTxWDrwgRqq1uWS2.jpg", "order": 0}, {"name": "Bonnie Hunt", "character": "Alice Newton", "id": 5149, "credit_id": "52fe44899251416c75038359", "cast_id": 13, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 1}, {"name": "Dean Jones", "character": "Herman Varnick", "id": 40393, "credit_id": "52fe44899251416c7503835d", "cast_id": 14, "profile_path": "/z2fbeGmyPVmV0aQiHNjjonAwz10.jpg", "order": 2}, {"name": "Nicholle Tom", "character": "Ryce Newton", "id": 35241, "credit_id": "52fe44899251416c75038361", "cast_id": 15, "profile_path": "/2M34AppEZiAwaz2fAJs91a05sj7.jpg", "order": 3}, {"name": "David Duchovny", "character": "Brad", "id": 12640, "credit_id": "52fe44899251416c7503836b", "cast_id": 17, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 4}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe44889251416c7503831b", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.7, "runtime": 87}, "11808": {"poster_path": "/3uixF2pHa0whTKcYmenDrArX0II.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "U.S. Marshal Sam Gerard is accompanying a plane load of convicts from Chicago to New York. The plane crashes spectacularly, and Mark Sheridan escapes. But when Diplomatic Security Agent John Royce is assigned to help Gerard recapture Sheridan, it becomes clear that Sheridan is more than just another murderer.", "video": false, "id": 11808, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "U.S. Marshals", "tagline": "The cop who won't stop is back. But this time he's chasing down a lot more than a fugitive.", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/idhUzfuEC24PTYhkWasivjoA3O0.jpg", "id": 134011, "name": "The Fugitive / U.S. Marshals Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120873", "adult": false, "backdrop_path": "/e07rnOqTiVEMGTMym8W5ePkUJAN.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1998-03-05", "popularity": 1.32981580806239, "original_title": "U.S. Marshals", "budget": 0, "cast": [{"name": "Tommy Lee Jones", "character": "Marshal Samuel Gerard", "id": 2176, "credit_id": "52fe44899251416c75038429", "cast_id": 8, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Wesley Snipes", "character": "Mark Sheridan", "id": 10814, "credit_id": "52fe44899251416c7503842d", "cast_id": 9, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 1}, {"name": "Robert Downey Jr.", "character": "John Royce", "id": 3223, "credit_id": "52fe44899251416c75038431", "cast_id": 10, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 2}, {"name": "Joe Pantoliano", "character": "Marshal Cosmo Renfro", "id": 532, "credit_id": "52fe44899251416c75038435", "cast_id": 11, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 3}, {"name": "Daniel Roebuck", "character": "Deputy Marshal Bobby Biggs", "id": 43774, "credit_id": "52fe44899251416c75038439", "cast_id": 12, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 4}, {"name": "Thomas Mills Wood", "character": "Deputy Marshal Noah Newman", "id": 43772, "credit_id": "52fe44899251416c7503843d", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "LaTanya Richardson", "character": "Deputy Marshal Savannah Cooper", "id": 61010, "credit_id": "52fe44899251416c75038441", "cast_id": 14, "profile_path": "/obb4rUjV9hBMi075Cr9iOSCbDSu.jpg", "order": 6}, {"name": "Ir\u00e8ne Jacob", "character": "Marie Bineaux, Mark's Girlfriend", "id": 1350, "credit_id": "52fe44899251416c75038445", "cast_id": 15, "profile_path": "/vjlwVgbpb22S4rriqkfOd9H4kmU.jpg", "order": 7}, {"name": "Kate Nelligan", "character": "United States Marshal Catherine Walsh", "id": 18794, "credit_id": "52fe44899251416c75038449", "cast_id": 16, "profile_path": "/qesy9idqrmSxzEhdCo0P7Y6HWJO.jpg", "order": 8}, {"name": "Patrick Malahide", "character": "Bertram Lamb, Security Service Director", "id": 8979, "credit_id": "52fe44899251416c7503844d", "cast_id": 17, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 9}, {"name": "Rick Snyder", "character": "Special Agent Frank Barrows", "id": 182347, "credit_id": "52fe44899251416c75038451", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Michael Paul Chan", "character": "Xian Chen, U.N. Cultural Attache of China", "id": 17355, "credit_id": "52fe44899251416c75038455", "cast_id": 19, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 11}, {"name": "Johnny Lee Davenport", "character": "Deputy Marshal Henry", "id": 171631, "credit_id": "52fe44899251416c75038459", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Donald Li", "character": "Detective Kim", "id": 168246, "credit_id": "52fe44899251416c7503845d", "cast_id": 21, "profile_path": "/7TeLJzqIoSUMAZJRkSLMp53wujn.jpg", "order": 13}, {"name": "Marc Vann", "character": "Deputy Jackson", "id": 159456, "credit_id": "52fe44899251416c75038461", "cast_id": 22, "profile_path": "/7gxd1d21gEPKGPaAuN4Pasp9Fwo.jpg", "order": 14}], "directors": [{"name": "Stuart Baird", "department": "Directing", "job": "Director", "credit_id": "52fe44899251416c75038401", "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "id": 2523}], "vote_average": 6.3, "runtime": 131}, "11812": {"poster_path": "/aSHDm1BRlnxWKrCRhK3q5TOdPme.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68696770, "overview": "When it comes to dating, Christina Walters (Cameron Diaz) has a golden rule: avoid searching for Mr. Right and focus on Mr. Right Now. That is until one night at a club when she unexpectedly meets Peter (Thomas Jane), only to see him suddenly disappear the next day. She and her best friend Courtney (Christina Applegate) decide to break the rules and go on a road trip to find him, encountering wild and hilarious misadventures along the way.", "video": false, "id": 11812, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Sweetest Thing", "tagline": "A romantic comedy without the sugar.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253867", "adult": false, "backdrop_path": "/xvC6ftXWg8OzH0coMyEbiscdxtX.jpg", "production_companies": [{"name": "Konrad Pictures", "id": 85}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2002-04-12", "popularity": 0.824800097130586, "original_title": "The Sweetest Thing", "budget": 43000000, "cast": [{"name": "Cameron Diaz", "character": "Christina Walters", "id": 6941, "credit_id": "52fe448a9251416c750385ad", "cast_id": 10, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Christina Applegate", "character": "Courtney Rockcliffe", "id": 18979, "credit_id": "52fe448a9251416c750385b1", "cast_id": 11, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 1}, {"name": "Selma Blair", "character": "Jane Burns", "id": 11826, "credit_id": "52fe448a9251416c750385b5", "cast_id": 12, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 2}, {"name": "Thomas Jane", "character": "Peter Donahue", "id": 11155, "credit_id": "52fe448a9251416c750385b9", "cast_id": 13, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 3}, {"name": "Frank Grillo", "character": "Andy", "id": 81685, "credit_id": "52fe448a9251416c750385bd", "cast_id": 14, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Roger Donahue", "id": 23532, "credit_id": "52fe448a9251416c750385c1", "cast_id": 15, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Eddie McClintock", "character": "Michael", "id": 120679, "credit_id": "52fe448a9251416c750385c5", "cast_id": 16, "profile_path": "/8NUGIONBAFu4RQuxJreCouWSKk8.jpg", "order": 6}, {"name": "Parker Posey", "character": "Judy Webb", "id": 7489, "credit_id": "52fe448a9251416c750385c9", "cast_id": 17, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 7}, {"name": "James Mangold", "character": "Dr. Greg", "id": 366, "credit_id": "52fe448a9251416c750385cd", "cast_id": 18, "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "order": 8}], "directors": [{"name": "Roger Kumble", "department": "Directing", "job": "Director", "credit_id": "52fe448a9251416c750385a3", "profile_path": "/uGKg8pacbWifsUK5IBvmPziHDKK.jpg", "id": 11873}], "vote_average": 5.5, "runtime": 88}, "11814": {"poster_path": "/6sK6ywu1dgp3QrCsT6JclKTjV0Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38934048, "overview": "Two unpopular teenagers, Gary and Wyatt, fail at all attempts to be accepted by their peers. Their desperation to be liked leads them to \"create\" a woman via their computer. Their living and breathing creation is a gorgeous woman, Lisa, whose purpose is to boost their confidence level by putting them into situations which require Gary and Wyatt to act like men.", "video": false, "id": 11814, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Weird Science", "tagline": "If you can't get a date, make one!", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090305", "adult": false, "backdrop_path": "/2jjKaHMm7X1RODFMZcq3YcXxoyn.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}], "release_date": "1985-08-01", "popularity": 0.67897241479225, "original_title": "Weird Science", "budget": 0, "cast": [{"name": "Anthony Michael Hall", "character": "Gary Wallace", "id": 1904, "credit_id": "52fe448a9251416c7503868f", "cast_id": 9, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 0}, {"name": "Kelly LeBrock", "character": "Lisa", "id": 46948, "credit_id": "52fe448a9251416c75038693", "cast_id": 10, "profile_path": "/2OiiFAyI989TQtlTxsqheInXmbA.jpg", "order": 1}, {"name": "Ilan Mitchell-Smith", "character": "Wyatt Donnelly", "id": 70572, "credit_id": "52fe448a9251416c75038697", "cast_id": 11, "profile_path": "/m39Jjg9K8iO4mq9hwbVNvBpPXlr.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Chet Donnelly", "id": 2053, "credit_id": "52fe448a9251416c7503869b", "cast_id": 12, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Suzanne Snyder", "character": "Deb", "id": 20363, "credit_id": "52fe448a9251416c7503869f", "cast_id": 13, "profile_path": "/90FrTcjJudpeIYUjUzlO6XAmvnt.jpg", "order": 4}, {"name": "Judie Aronson", "character": "Hilly", "id": 72541, "credit_id": "52fe448a9251416c750386a3", "cast_id": 14, "profile_path": "/q30tWo0p0NbJAE9gQ54T2NTCCiT.jpg", "order": 5}, {"name": "Robert Rusler", "character": "Max", "id": 52306, "credit_id": "52fe448a9251416c750386a7", "cast_id": 16, "profile_path": "/4LHRIK6ffdUax43WcSqdIZTMh2b.jpg", "order": 6}, {"name": "Robert Downey Jr.", "character": "Ian", "id": 3223, "credit_id": "52fe448a9251416c750386ab", "cast_id": 17, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 7}, {"name": "Steve James", "character": "Guy At Table", "id": 55271, "credit_id": "52fe448a9251416c750386af", "cast_id": 18, "profile_path": "/pNK50BHuGfegOJo8scrd3ys5KNB.jpg", "order": 8}, {"name": "Vernon Wells", "character": "Lord General", "id": 26491, "credit_id": "545518a30e0a2648c5004afd", "cast_id": 19, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 9}, {"name": "Michael Berryman", "character": "Mutant Biker", "id": 7073, "credit_id": "545518b60e0a2648c5004aff", "cast_id": 20, "profile_path": "/vXvztwbkFc0Pz8ty0Jlaomo8P10.jpg", "order": 10}, {"name": "Jill Whitlow", "character": "Perfume Salesgirl", "id": 83096, "credit_id": "545518f9c3a3681480004ad4", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Britt Leach", "character": "Al Wallace", "id": 97717, "credit_id": "54551a7ac3a3681473004824", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe448a9251416c75038661", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.6, "runtime": 94}, "11817": {"poster_path": "/pHclmPMiZsLjTpcdCJgJMMh7ccC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A mysterious and immortal Tibetan kung fu master, who has spent the last 60 years traveling around the world protecting the ancient Scroll of the Ultimate, mentors a selfish street kid in the ancient intricacies of kung fu.", "video": false, "id": 11817, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Bulletproof Monk", "tagline": "A power beyond measure requires a protector without equal.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "bo", "name": ""}, {"iso_639_1": "pa", "name": "\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0245803", "adult": false, "backdrop_path": "/n6F0RaYx1Y0nU2JBYDKNoB4Sgni.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2003-04-16", "popularity": 0.851308305948262, "original_title": "Bulletproof Monk", "budget": 52000000, "cast": [{"name": "Seann William Scott", "character": "Kar", "id": 57599, "credit_id": "52fe448b9251416c750387df", "cast_id": 11, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 0}, {"name": "Jaime King", "character": "Jade", "id": 5915, "credit_id": "52fe448b9251416c750387e3", "cast_id": 12, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 1}, {"name": "Karel Roden", "character": "Strucker", "id": 10841, "credit_id": "52fe448b9251416c750387e7", "cast_id": 13, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 2}, {"name": "Chow Yun-Fat", "character": "nameless monk", "id": 1619, "credit_id": "52fe448b9251416c750387eb", "cast_id": 14, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 3}, {"name": "K. C. Collins", "character": "Sax", "id": 74278, "credit_id": "52fe448b9251416c750387ef", "cast_id": 15, "profile_path": "/7GRgZGqTZ2e1j2FZLJWND75a4My.jpg", "order": 4}, {"name": "Victoria Smurfit", "character": "Nina", "id": 3315, "credit_id": "52fe448b9251416c750387f3", "cast_id": 16, "profile_path": "/aNPzf4S9WNIF60HTkTuGHvE8JqO.jpg", "order": 5}, {"name": "Marcus Jean Pirae", "character": "Mr. Funktastic", "id": 1005130, "credit_id": "52fe448b9251416c750387f7", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Mako", "character": "Mr. Kojima", "id": 10134, "credit_id": "52fe448b9251416c750387fb", "cast_id": 18, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 7}, {"name": "Roger Yuan", "character": "Master Monk", "id": 2974, "credit_id": "52fe448b9251416c750387ff", "cast_id": 19, "profile_path": "/mocNZK4KHv3j9os7tsS7b9B9ecK.jpg", "order": 8}, {"name": "Sean Bell", "character": "Diesel", "id": 190884, "credit_id": "52fe448b9251416c75038803", "cast_id": 20, "profile_path": "/cJvgfRov9lGPONTU5doppJb5h7R.jpg", "order": 9}, {"name": "Kishaya Dudley", "character": "DV", "id": 1053949, "credit_id": "52fe448b9251416c75038807", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Rob Archer", "character": "Buzz", "id": 1024492, "credit_id": "52fe448b9251416c7503880b", "cast_id": 22, "profile_path": "/ffoxJ4xz7KuyK06b2W4wDE4uPaL.jpg", "order": 11}, {"name": "Mauricio Rodas", "character": "Wicho", "id": 209772, "credit_id": "52fe448b9251416c7503880f", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Bayo Akinfemi", "character": "Shade", "id": 201712, "credit_id": "52fe448b9251416c75038813", "cast_id": 24, "profile_path": "/jvZr8QZeAfqz3D60dpQJHjN4uvZ.jpg", "order": 13}, {"name": "Russell Yuen", "character": "Brother Tenzin", "id": 29466, "credit_id": "52fe448b9251416c75038817", "cast_id": 25, "profile_path": "/jCzbsp4aN7xUd8iW6FZ4HGoNovF.jpg", "order": 14}], "directors": [{"name": "Paul Hunter", "department": "Directing", "job": "Director", "credit_id": "52fe448b9251416c750387a5", "profile_path": "/3Qvmhvezs7SGkeMGdBCVKAJy1XF.jpg", "id": 70573}], "vote_average": 5.3, "runtime": 104}, "11820": {"poster_path": "/zLn6dKedtaR3rnCRohxIxjfqmxV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of Katherine Ann Watson, a feminist teacher who studied at UCLA graduate school and in 1953 left her boyfriend behind in Los Angeles, California to teach at Wellesley College, a conservative women's private liberal arts college in Massachusetts, United States.", "video": false, "id": 11820, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Mona Lisa Smile", "tagline": "In a world that told them how to think, she showed them how to live.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0304415", "adult": false, "backdrop_path": "/lkvnT8SShNsdqM2AR1Lyp15PFrk.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}], "release_date": "2003-12-19", "popularity": 0.604484834440706, "original_title": "Mona Lisa Smile", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Katherine Ann Watson", "id": 1204, "credit_id": "52fe448b9251416c7503894f", "cast_id": 11, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Betty Warren", "id": 205, "credit_id": "52fe448b9251416c75038953", "cast_id": 12, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Julia Stiles", "character": "Joan Brandwyn", "id": 12041, "credit_id": "52fe448b9251416c75038957", "cast_id": 13, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 2}, {"name": "Maggie Gyllenhaal", "character": "Giselle Levy", "id": 1579, "credit_id": "52fe448b9251416c7503895b", "cast_id": 14, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 3}, {"name": "Ginnifer Goodwin", "character": "Constance Baker", "id": 417, "credit_id": "52fe448b9251416c7503895f", "cast_id": 15, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 4}, {"name": "Topher Grace", "character": "Tommy Donegal", "id": 17052, "credit_id": "52fe448b9251416c75038963", "cast_id": 16, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 5}, {"name": "Dominic West", "character": "Bill Dunbar", "id": 17287, "credit_id": "52fe448c9251416c75038967", "cast_id": 17, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 6}, {"name": "Taylor Roberts", "character": "Louise", "id": 1067581, "credit_id": "52fe448c9251416c7503896b", "cast_id": 18, "profile_path": "/nEnteJX3x6pVg0bgyPSUrDicBMS.jpg", "order": 7}, {"name": "Juliet Stevenson", "character": "Amanda Armstrong", "id": 6238, "credit_id": "52fe448c9251416c7503896f", "cast_id": 19, "profile_path": "/1LBlN6J5e6kj3y6oxnxErAJidL8.jpg", "order": 8}, {"name": "Marcia Gay Harden", "character": "Nancy Abbey", "id": 4726, "credit_id": "52fe448c9251416c75038973", "cast_id": 20, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 9}, {"name": "Tori Amos", "character": "Wedding Singer", "id": 111164, "credit_id": "52fe448c9251416c75038977", "cast_id": 21, "profile_path": "/t0uZtsTZezUAufN1wvUG90Qq2i6.jpg", "order": 10}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe448b9251416c75038915", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.5, "runtime": 117}, "82525": {"poster_path": "/ecN4PGSU6zhYlAUL8Jh4qyE2um9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47000000, "overview": "Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.", "video": false, "id": 82525, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Savages", "tagline": "Young Beautiful Deadly.", "vote_count": 276, "homepage": "http://www.savagesfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1615065", "adult": false, "backdrop_path": "/hAQ6V21C8EhTaEVuF8Rq054yqTj.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Ixtlan", "id": 4198}, {"name": "Onda Entertainment", "id": 11802}], "release_date": "2012-07-06", "popularity": 0.774005814644101, "original_title": "Savages", "budget": 45000000, "cast": [{"name": "Blake Lively", "character": "O", "id": 59175, "credit_id": "52fe485a9251416c910894d5", "cast_id": 52, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 0}, {"name": "Taylor Kitsch", "character": "Chon", "id": 60900, "credit_id": "52fe485a9251416c910894d9", "cast_id": 53, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 1}, {"name": "Aaron Taylor-Johnson", "character": "Ben", "id": 27428, "credit_id": "52fe485a9251416c910894dd", "cast_id": 54, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 2}, {"name": "Benicio del Toro", "character": "Lado", "id": 1121, "credit_id": "52fe485a9251416c910894e1", "cast_id": 55, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Elena", "id": 3136, "credit_id": "52fe485a9251416c910894e5", "cast_id": 56, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "John Travolta", "character": "Dennis", "id": 8891, "credit_id": "52fe485a9251416c910894e9", "cast_id": 57, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 5}, {"name": "Demi\u00e1n Bichir", "character": "Alex", "id": 76961, "credit_id": "52fe485a9251416c910894ed", "cast_id": 58, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 6}, {"name": "Emile Hirsch", "character": "Spin", "id": 46593, "credit_id": "52fe485a9251416c910894f1", "cast_id": 59, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 7}, {"name": "M\u00eda Maestro", "character": "Dolores", "id": 6859, "credit_id": "52fe485a9251416c910894f5", "cast_id": 60, "profile_path": "/UIf7kAHqAGRwJ9TZSkZ91A1scr.jpg", "order": 8}, {"name": "Diego Cata\u00f1o", "character": "Esteban", "id": 112129, "credit_id": "52fe485a9251416c910894f9", "cast_id": 61, "profile_path": "/f3W2IYuZywRd9bFbeRUviiDAA60.jpg", "order": 9}, {"name": "Joaqu\u00edn Cosio", "character": "El Azul", "id": 76857, "credit_id": "52fe485a9251416c910894fd", "cast_id": 62, "profile_path": "/nRdZ0BNi8JOG7cJ10OTZeVmDxTE.jpg", "order": 10}, {"name": "Sandra Echeverr\u00eda", "character": "Magda", "id": 145184, "credit_id": "52fe485a9251416c91089501", "cast_id": 63, "profile_path": "/21OQHuzcf6Ew7CE2nxpjgt3L98M.jpg", "order": 11}, {"name": "Antonio Jaramillo", "character": "Jaime", "id": 180306, "credit_id": "52fe485a9251416c91089505", "cast_id": 64, "profile_path": "/wFPO47cqqj6CqtXdhJIQ172olwg.jpg", "order": 12}, {"name": "Ali Wong", "character": "Claire", "id": 591835, "credit_id": "52fe485a9251416c91089509", "cast_id": 65, "profile_path": "/tnwFfATQCT1skZ0ireiHtxVpE6m.jpg", "order": 13}, {"name": "Trevor Donovan", "character": "Matt / Magda's Boyfriend", "id": 1233560, "credit_id": "52fe485a9251416c9108950d", "cast_id": 66, "profile_path": "/4S4JlcxIHpU6UXnskZucQo8zOHE.jpg", "order": 14}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe48599251416c91089465", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.0, "runtime": 131}, "11824": {"poster_path": "/3TKJbKNpHvRP8YVnwbgfok41AAC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "What's a high school kid got to do to be popular? Just let down his hair and howl! Starring Michael J. Fox (Back to the Future) Teen Wolf is an outrageous comedy about a shy teenager with more than a changing voice to contend with... he's a budding young werewolf! And when his new-found powers help him score at basketball - and with the popular girls - he has some pretty hairy decisions to make.", "video": false, "id": 11824, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Teen Wolf", "tagline": "He always wanted to be special... but he never expected this!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/n48aLnG4NpTWpu1PXxxgFMYlbCM.jpg", "poster_path": "/gJEtFrz4lNFhPoQ5cFvSekZQJDT.jpg", "id": 43066, "name": "Teen Wolf Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090142", "adult": false, "backdrop_path": "/dNPmXYRS3nN4vD7MLtz5lP79DCB.jpg", "production_companies": [{"name": "Wolfkill", "id": 3975}], "release_date": "1985-08-23", "popularity": 0.4280898232057, "original_title": "Teen Wolf", "budget": 0, "cast": [{"name": "Michael J. Fox", "character": "Scott Howard", "id": 521, "credit_id": "52fe448c9251416c75038b7f", "cast_id": 9, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "James Hampton", "character": "Harold Howard", "id": 14848, "credit_id": "52fe448c9251416c75038b83", "cast_id": 10, "profile_path": "/fMaqAppdodHg5U96RKkC7P7lwOP.jpg", "order": 1}, {"name": "Susan Ursitti", "character": "Lisa 'Boof' Marconi", "id": 70612, "credit_id": "52fe448c9251416c75038b87", "cast_id": 11, "profile_path": null, "order": 2}, {"name": "Jerry Levine", "character": "Rupert 'Stiles' Stilinski", "id": 26470, "credit_id": "52fe448c9251416c75038b8b", "cast_id": 12, "profile_path": "/6pNnyI19jquUa5dziLPZPsQn4WP.jpg", "order": 3}, {"name": "Matt Adler", "character": "Lewis", "id": 92623, "credit_id": "52fe448c9251416c75038b8f", "cast_id": 13, "profile_path": "/hklcdXdKkvW15x4g1XrrdrDiLGX.jpg", "order": 4}, {"name": "Lorie Griffin", "character": "Pamela Wells", "id": 119892, "credit_id": "52fe448c9251416c75038b93", "cast_id": 14, "profile_path": "/xmmIdEHoBTGWwQmql2PFEqUAbEw.jpg", "order": 5}, {"name": "Jim McKrell", "character": "Vice Principal Rusty Thorne", "id": 100614, "credit_id": "52fe448c9251416c75038b97", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Mark Arnold", "character": "Mick McAllister", "id": 119893, "credit_id": "52fe448c9251416c75038b9b", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Jay Tarses", "character": "Coach Bobby Finstock", "id": 70868, "credit_id": "52fe448c9251416c75038b9f", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Mark Holton", "character": "Chubby", "id": 44818, "credit_id": "52fe448c9251416c75038ba3", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Scott Paulin", "character": "Kirk Lolley", "id": 48810, "credit_id": "52fe448c9251416c75038ba7", "cast_id": 19, "profile_path": "/hXCaNiAPOuV16eLEWfnPmNHBX2L.jpg", "order": 10}, {"name": "Elizabeth Gorcey", "character": "Tina", "id": 119894, "credit_id": "52fe448c9251416c75038bab", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Melanie Manos", "character": "Dina", "id": 119895, "credit_id": "52fe448c9251416c75038baf", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Doug Savant", "character": "Brad", "id": 14737, "credit_id": "52fe448c9251416c75038bb3", "cast_id": 22, "profile_path": "/zg1NkpTEEjIvQDmTutRCiGZTKgm.jpg", "order": 13}, {"name": "Charles Zucker", "character": "Malcolm", "id": 119896, "credit_id": "52fe448c9251416c75038bb7", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Rod Daniel", "department": "Directing", "job": "Director", "credit_id": "52fe448c9251416c75038b51", "profile_path": null, "id": 64877}], "vote_average": 6.7, "runtime": 91}, "3635": {"poster_path": "/iwapgsiyOLFZCrzDmdspdkrbkIW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "LU", "name": "Luxembourg"}], "revenue": 31466789, "overview": "This film, adapted from a work of fiction by author Tracy Chevalier, tells a story about the events surrounding the creation of the painting \"Girl With A Pearl Earring\" by 17th century Dutch master Johannes Vermeer. A young peasant maid working in the house of painter Johannes Vermeer becomes his talented assistant and the model for one of his most famous works.", "video": false, "id": 3635, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Girl with a Pearl Earring", "tagline": "", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0335119", "adult": false, "backdrop_path": "/qUQo4Xlv9nwBDPJxz5HtIsXqq1C.jpg", "production_companies": [{"name": "Wild Bear Films", "id": 1470}, {"name": "Archer Street Productions", "id": 1471}, {"name": "Delux Productions", "id": 1472}], "release_date": "2003-08-31", "popularity": 0.405176955253459, "original_title": "Girl with a Pearl Earring", "budget": 0, "cast": [{"name": "Scarlett Johansson", "character": "Griet", "id": 1245, "credit_id": "52fe43a1c3a36847f80632bd", "cast_id": 1, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Colin Firth", "character": "Johannes Vermeer", "id": 5472, "credit_id": "52fe43a1c3a36847f80632c1", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Cillian Murphy", "character": "Pieter", "id": 2037, "credit_id": "52fe43a1c3a36847f80632c5", "cast_id": 3, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Pieter Van Ruijven", "id": 207, "credit_id": "52fe43a1c3a36847f8063317", "cast_id": 17, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Judy Parfitt", "character": "Maria Thins", "id": 33448, "credit_id": "52fe43a1c3a36847f806331b", "cast_id": 18, "profile_path": "/vF3gRzpyL5y2rLMOoamYjWmux7U.jpg", "order": 4}, {"name": "Essie Davis", "character": "Catharina Bolnes Vermeer", "id": 33449, "credit_id": "52fe43a1c3a36847f806331f", "cast_id": 19, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 5}, {"name": "Joanna Scanlan", "character": "Tanneke", "id": 33450, "credit_id": "52fe43a1c3a36847f8063323", "cast_id": 20, "profile_path": "/sUVkc2qcEhuLVHLAfXak2Bk4mKt.jpg", "order": 6}, {"name": "Gabrielle Reidy", "character": "Griet's Mother", "id": 33451, "credit_id": "52fe43a1c3a36847f8063327", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Chris McHallem", "character": "Griet's Father", "id": 33452, "credit_id": "52fe43a1c3a36847f806332b", "cast_id": 22, "profile_path": "/aUTRtF4KnyGTF0VmE63hA8kMZgn.jpg", "order": 8}, {"name": "Alakina Mann", "character": "Cornelia Vermeer", "id": 20051, "credit_id": "52fe43a1c3a36847f806332f", "cast_id": 23, "profile_path": "/u6Zm6crP9femMxdBW0KUQpLELTJ.jpg", "order": 9}, {"name": "Rollo Weeks", "character": "Frans", "id": 33453, "credit_id": "52fe43a1c3a36847f8063333", "cast_id": 24, "profile_path": "/t2ggb881ZXdZXpYKpWjp62G9Anj.jpg", "order": 10}, {"name": "Anna Popplewell", "character": "Maertge", "id": 5529, "credit_id": "52fe43a1c3a36847f8063337", "cast_id": 25, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 11}], "directors": [{"name": "Peter Webber", "department": "Directing", "job": "Director", "credit_id": "52fe43a1c3a36847f80632cb", "profile_path": null, "id": 16785}], "vote_average": 6.5, "runtime": 101}, "249397": {"poster_path": "/2FBFiDhx3tGe8PG4A5iuCbeIJ4s.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 2227167, "overview": "The continuation of Joe's sexually dictated life delves into the darker aspects of her adult life and what led to her being in Seligman's care.", "video": false, "id": 249397, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Nymphomaniac: Vol. II", "tagline": "Forget About Love", "vote_count": 188, "homepage": "http://nymphomaniacthemovie.com/", "belongs_to_collection": {"backdrop_path": "/7B71Lt136GptW7AcrSs3mZ7rjrR.jpg", "poster_path": "/mkML1KIuHsv9bF5cdwMl6W8S0V1.jpg", "id": 258664, "name": "Nymphomaniac Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2382009", "adult": false, "backdrop_path": "/smqBCtBN49ErfUiJFyXDUtjjxh3.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}], "release_date": "2013-12-25", "popularity": 1.4668986791208, "original_title": "Nymphomaniac: Vol. II", "budget": 0, "cast": [{"name": "Charlotte Gainsbourg", "character": "Joe", "id": 4273, "credit_id": "52fe4f43c3a36847f82c9277", "cast_id": 1, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 0}, {"name": "Stellan Skarsg\u00e5rd", "character": "Seligman", "id": 1640, "credit_id": "5318b898c3a3685c43001a6f", "cast_id": 9, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 1}, {"name": "Shia LaBeouf", "character": "Jer\u00f4me", "id": 10959, "credit_id": "52fe4f43c3a36847f82c927b", "cast_id": 2, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "L", "id": 5293, "credit_id": "5318b884c3a3685c31001a1f", "cast_id": 7, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Stacy Martin", "character": "Young Joe", "id": 1137823, "credit_id": "531addc1c3a3685c310044f3", "cast_id": 14, "profile_path": "/78BhUmgZETfUNsURMFP0E85WB3m.jpg", "order": 4}, {"name": "Udo Kier", "character": "The Waiter", "id": 1646, "credit_id": "5318b88ac3a3685c31001a2a", "cast_id": 8, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 5}, {"name": "Jean-Marc Barr", "character": "Debtor Gentleman", "id": 1642, "credit_id": "5318b8a4c3a3685c43001a71", "cast_id": 10, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 6}, {"name": "Jamie Bell", "character": "K", "id": 478, "credit_id": "5318b8b0c3a3685c31001a2d", "cast_id": 11, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 7}, {"name": "Mia Goth", "character": "P", "id": 1137824, "credit_id": "531add5ac3a3685c310044ed", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Michael Pas", "character": "Old Jer\u00f4me", "id": 140493, "credit_id": "531add98c3a3685c4a0046c1", "cast_id": 13, "profile_path": "/tSzIvBM6JVfPGpHDO9iVApirETd.jpg", "order": 9}, {"name": "Shanti Roney", "character": "Interpreter", "id": 11044, "credit_id": "5467849222136e1e24000315", "cast_id": 20, "profile_path": "/ti21d61B3kNV0QZCJHsviad79jR.jpg", "order": 10}, {"name": "Kate Ashfield", "character": "Therapist", "id": 11110, "credit_id": "546784ff22136e1e190002e4", "cast_id": 21, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 11}, {"name": "Sophie Kennedy Clark", "character": "B", "id": 1151957, "credit_id": "5467853b22136e1e1c000302", "cast_id": 22, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 12}, {"name": "Lien van de Kelder", "character": "Clerk in Horse Shop", "id": 237837, "credit_id": "546785a1eaeb8118c4000310", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Laura Christensen", "character": "Babysitter", "id": 83011, "credit_id": "546785d4eaeb8118b40002f0", "cast_id": 24, "profile_path": "/q9AoEwRz0wtqawZfh5od7AzVDZw.jpg", "order": 14}, {"name": "Caroline Goodall", "character": "Psychologist", "id": 6692, "credit_id": "5467860522136e1e1f00030c", "cast_id": 25, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 15}, {"name": "Christian Slater", "character": "", "id": 2224, "credit_id": "550f13ac925141469900a55c", "cast_id": 26, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 16}, {"name": "Uma Thurman", "character": "", "id": 139, "credit_id": "550f13c0c3a368487400b664", "cast_id": 27, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 17}, {"name": "Connie Nielsen", "character": "", "id": 935, "credit_id": "550f13e4925141065c0032f9", "cast_id": 28, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 18}, {"name": "Jens Albinus", "character": "", "id": 6121, "credit_id": "550f1405925141469900a565", "cast_id": 29, "profile_path": "/9CgGf30xp3hreseXoQd3qCQV1cY.jpg", "order": 19}, {"name": "Peter Gilbert Cotton", "character": "", "id": 126958, "credit_id": "550f140fc3a368487400b672", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Nicolas Bro", "character": "", "id": 15086, "credit_id": "550f141d9251416bd1000e97", "cast_id": 31, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 21}, {"name": "Jesper Christensen", "character": "", "id": 2244, "credit_id": "550f142f92514146a000a691", "cast_id": 32, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 22}, {"name": "Tania Carlin", "character": "", "id": 1137827, "credit_id": "550f143ec3a3683e7f00319c", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Felicity Gilbert", "character": "", "id": 1269681, "credit_id": "550f144f9251416bd1000eab", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Cyron Bj\u00f8rn Melville", "character": "", "id": 112733, "credit_id": "550f146ec3a3683f3900317b", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Hugo Speer", "character": "", "id": 2251, "credit_id": "550f147e925141065c003304", "cast_id": 36, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 26}, {"name": "Saskia Reeves", "character": "", "id": 13363, "credit_id": "550f1495c3a3683e7f0031a1", "cast_id": 37, "profile_path": "/tCZFXKrWp4JQQOHWYFlwoHZGt7a.jpg", "order": 27}, {"name": "Christian Gade Bjerrum", "character": "", "id": 1444097, "credit_id": "550f14aac3a3681db2009d58", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Ronja Rissmann", "character": "", "id": 1444098, "credit_id": "550f14b6c3a3683f39003181", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Maja Arsovic", "character": "", "id": 1444099, "credit_id": "550f14cc925141469900a57f", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Sofie Kasten", "character": "", "id": 1444100, "credit_id": "550f14d5c3a3683f39003187", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Ananya Berg", "character": "", "id": 1385628, "credit_id": "550f14e0c3a3681db2009d60", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Anders Hove", "character": "", "id": 1566, "credit_id": "550f14e9c3a368487400b691", "cast_id": 43, "profile_path": "/m9UAUhR7CzC376jy9dV9HGctqSV.jpg", "order": 33}, {"name": "James Northcote", "character": "", "id": 1362119, "credit_id": "550f14fec3a3683e7f0031ad", "cast_id": 44, "profile_path": "/wuf9ARlVXPonmRN21WcYQtdSiOv.jpg", "order": 34}, {"name": "Charlie Hawkins", "character": "", "id": 1444101, "credit_id": "550f150a925141065c00330d", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "Clayton Nemrow", "character": "", "id": 1170767, "credit_id": "550f152692514166db001020", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Simon B\u00f6er", "character": "", "id": 1104730, "credit_id": "550f1530c3a3683f3900318f", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Jeff Burrell", "character": "", "id": 49491, "credit_id": "550f1542c3a368487400b69a", "cast_id": 48, "profile_path": null, "order": 38}, {"name": "Andreas Gr\u00f6tzinger", "character": "", "id": 1444103, "credit_id": "550f154ec3a3683e7f0031b3", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Tomas Sinclair Spencer", "character": "", "id": 1444111, "credit_id": "550f156f92514146a000a6a3", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Jesse Inman", "character": "", "id": 1444112, "credit_id": "550f157cc3a3683eb8002f93", "cast_id": 51, "profile_path": null, "order": 41}, {"name": "Christoph Schechinger", "character": "", "id": 1439733, "credit_id": "550f15ac92514164ac000fc0", "cast_id": 52, "profile_path": null, "order": 42}, {"name": "David Halina", "character": "", "id": 1329094, "credit_id": "550f15b7c3a368488600abd1", "cast_id": 53, "profile_path": null, "order": 43}, {"name": "Jonas Baeck", "character": "", "id": 1444115, "credit_id": "550f15cc9251416bd1000ec4", "cast_id": 54, "profile_path": null, "order": 44}, {"name": "Katharina R\u00fcbertus", "character": "", "id": 1444116, "credit_id": "550f15d5925141073d003307", "cast_id": 55, "profile_path": null, "order": 45}, {"name": "Inga Behring", "character": "", "id": 1444117, "credit_id": "550f15f7c3a3683f3900319b", "cast_id": 56, "profile_path": null, "order": 46}, {"name": "Lisa Matschke", "character": "", "id": 1444118, "credit_id": "550f1604c3a3683f0a003029", "cast_id": 57, "profile_path": null, "order": 47}, {"name": "Moritz Tellmann", "character": "", "id": 1444119, "credit_id": "550f1635c3a3683dd6002ee2", "cast_id": 58, "profile_path": null, "order": 48}, {"name": "Johannes Kienast", "character": "", "id": 1444120, "credit_id": "550f164192514166db00102c", "cast_id": 59, "profile_path": null, "order": 49}, {"name": "Frankie Dawson", "character": "", "id": 1444121, "credit_id": "550f1658c3a3683f390031a7", "cast_id": 60, "profile_path": null, "order": 50}, {"name": "George Dawson", "character": "", "id": 994453, "credit_id": "550f1661c3a3683eb8002fa0", "cast_id": 61, "profile_path": null, "order": 51}, {"name": "Harry Dawson", "character": "", "id": 1367900, "credit_id": "550f166cc3a368487400b6b2", "cast_id": 62, "profile_path": null, "order": 52}, {"name": "Markus Tomczyk", "character": "", "id": 553003, "credit_id": "550f1688925141469900a5bb", "cast_id": 63, "profile_path": null, "order": 53}, {"name": "Christoph J\u00f6de", "character": "", "id": 1327193, "credit_id": "550f1698925141073d003316", "cast_id": 64, "profile_path": null, "order": 54}, {"name": "Morgan Hartley", "character": "", "id": 1444127, "credit_id": "550f16bbc3a3683f390031b0", "cast_id": 65, "profile_path": null, "order": 55}, {"name": "Andrea Thomsen", "character": "", "id": 1444128, "credit_id": "550f16c6c3a3683eb8002fa8", "cast_id": 66, "profile_path": null, "order": 56}, {"name": "Tine Burn", "character": "", "id": 1444129, "credit_id": "550f16dac3a3683f0a003038", "cast_id": 67, "profile_path": null, "order": 57}, {"name": "Tabea Tarbiat", "character": "", "id": 1444130, "credit_id": "550f16e6c3a3683f0a00303d", "cast_id": 68, "profile_path": null, "order": 58}, {"name": "Janine Romanowski", "character": "", "id": 1444131, "credit_id": "550f17b2c3a368487400b6d7", "cast_id": 69, "profile_path": null, "order": 59}, {"name": "Lawrence Sheldon", "character": "", "id": 1444132, "credit_id": "550f17c2c3a3681db2009da6", "cast_id": 70, "profile_path": null, "order": 60}, {"name": "Ivan Pecnik", "character": "", "id": 1137826, "credit_id": "550f17f1c3a3683f390031d6", "cast_id": 71, "profile_path": null, "order": 61}, {"name": "Jonathon Sawdon", "character": "", "id": 1444133, "credit_id": "550f17fb925141469900a5dc", "cast_id": 72, "profile_path": null, "order": 62}, {"name": "Christopher Craig", "character": "", "id": 1152394, "credit_id": "550f181dc3a3683eb8002fd0", "cast_id": 73, "profile_path": "/eKwZW0oZc3vY8Lp385c6JcXKjnW.jpg", "order": 63}, {"name": "Jacob Levin-Christensen", "character": "", "id": 1441065, "credit_id": "550f1826c3a368487400b6e3", "cast_id": 74, "profile_path": null, "order": 64}, {"name": "Kookie Ryan", "character": "", "id": 1444134, "credit_id": "550f183dc3a3683e7f0031f4", "cast_id": 75, "profile_path": null, "order": 65}, {"name": "Papou", "character": "", "id": 1444135, "credit_id": "550f184a925141065c00335e", "cast_id": 76, "profile_path": null, "order": 66}, {"name": "Nicole Sandweg", "character": "", "id": 1444136, "credit_id": "550f1865925141469900a5ec", "cast_id": 77, "profile_path": null, "order": 67}, {"name": "Sarah Soetaert", "character": "", "id": 1444137, "credit_id": "550f187cc3a3683e7f0031fa", "cast_id": 78, "profile_path": null, "order": 68}, {"name": "Sami Loris", "character": "", "id": 129125, "credit_id": "550f1888c3a3683f390031e9", "cast_id": 79, "profile_path": null, "order": 69}, {"name": "Christine Urspruch", "character": "", "id": 28201, "credit_id": "550f18a9c3a3683dd6002f01", "cast_id": 80, "profile_path": "/i8RYQggISjM8IULpxUKVBVV4GSM.jpg", "order": 70}, {"name": "Daniela Lebang", "character": "", "id": 1444138, "credit_id": "550f18b3c3a3681db2009db9", "cast_id": 81, "profile_path": null, "order": 71}, {"name": "Omar Shargawi", "character": "", "id": 141879, "credit_id": "550f18cb925141065c003367", "cast_id": 82, "profile_path": null, "order": 72}, {"name": "Marcus Jakovljevic", "character": "", "id": 1329095, "credit_id": "550f18d3c3a3683f390031ef", "cast_id": 83, "profile_path": null, "order": 73}, {"name": "Conny Dachs", "character": "", "id": 1145463, "credit_id": "550f18eb9251416bd1000f0c", "cast_id": 84, "profile_path": null, "order": 74}, {"name": "Severin von Hoensbroech", "character": "", "id": 1012903, "credit_id": "550f18f592514164ac001006", "cast_id": 85, "profile_path": null, "order": 75}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe4f43c3a36847f82c9289", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.5, "runtime": 123}, "3638": {"poster_path": "/qBVLHY48fwij7T8iViqpAG7fU2q.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92601050, "overview": "Kate is a terrific chef at a Manhattan restaurant, sent to therapy by the restaurant owner because she is cold, unyielding, rule-bound, and a pain in the neck. Kate's world is flipped over when her only sister dies and her ten-year-old niece, Zoe, comes to live with her.", "video": false, "id": 3638, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "No Reservations", "tagline": "", "vote_count": 85, "homepage": "http://noreservationsmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481141", "adult": false, "backdrop_path": "/fwyY5D4NDM6L2In3HVW6mQvI1uH.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}], "release_date": "2007-07-25", "popularity": 1.19767520959416, "original_title": "No Reservations", "budget": 28000000, "cast": [{"name": "Catherine Zeta-Jones", "character": "Kate", "id": 1922, "credit_id": "52fe43a1c3a36847f8063369", "cast_id": 1, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "Nick", "id": 6383, "credit_id": "52fe43a1c3a36847f806336d", "cast_id": 2, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Abigail Breslin", "character": "Zoe", "id": 17140, "credit_id": "52fe43a1c3a36847f8063371", "cast_id": 3, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 2}, {"name": "Patricia Clarkson", "character": "Paula", "id": 1276, "credit_id": "52fe43a1c3a36847f8063375", "cast_id": 4, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 3}, {"name": "Jenny Wade", "character": "Leah", "id": 33430, "credit_id": "52fe43a1c3a36847f8063379", "cast_id": 5, "profile_path": "/3f85y7cJfHk05T5fuZem6kfLJoW.jpg", "order": 4}, {"name": "Bob Balaban", "character": "Therapist", "id": 12438, "credit_id": "52fe43a1c3a36847f806337d", "cast_id": 6, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 5}, {"name": "Br\u00edan F. O'Byrne", "character": "Sean", "id": 31713, "credit_id": "52fe43a1c3a36847f8063381", "cast_id": 7, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 6}, {"name": "Lily Rabe", "character": "Bernadette", "id": 4888, "credit_id": "52fe43a1c3a36847f8063385", "cast_id": 8, "profile_path": "/5qTAKNY5zTBQlDjdAb2Nq1FOhNi.jpg", "order": 7}, {"name": "Eric Silver", "character": "John", "id": 33431, "credit_id": "52fe43a1c3a36847f8063389", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Arija Bareikis", "character": "Christine", "id": 33432, "credit_id": "52fe43a1c3a36847f806338d", "cast_id": 10, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 9}, {"name": "Zo\u00eb Kravitz", "character": "Charlotte", "id": 37153, "credit_id": "52fe43a1c3a36847f80633d3", "cast_id": 22, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 10}], "directors": [{"name": "Scott Hicks", "department": "Directing", "job": "Director", "credit_id": "52fe43a1c3a36847f8063393", "profile_path": "/saA36yAQYyTs0kzmH5hBprEszJX.jpg", "id": 33433}], "vote_average": 5.9, "runtime": 104}, "11831": {"poster_path": "/cVxLWl7JVVlg0Ky09E9Xlgey6T1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74000000, "overview": "In 1839, the slave ship Amistad set sail from Cuba to America. During the long trip, Cinque (Djimon Hounsou) leads the slaves in an unprecedented uprising. They are then held prisoner in Connecticut, and their release becomes the subject of heated debate. Freed slave Theodore Joadson (Morgan Freeman) wants Cinque and the others exonerated and recruits property lawyer Roger Baldwin (Matthew McConaughey) to help his case. Eventually, John Quincy Adams (Anthony Hopkins) also becomes an ally.", "video": false, "id": 11831, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}], "title": "Amistad", "tagline": "Freedom is not given. It is our right at birth. But there are some moments when it must be taken.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0118607", "adult": false, "backdrop_path": "/15uvO9r5CGtlg9v4vGvXMh1rxAx.jpg", "production_companies": [{"name": "Home Box Office (HBO)", "id": 3268}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "1997-12-03", "popularity": 0.14954906382111, "original_title": "Amistad", "budget": 36000000, "cast": [{"name": "Nigel Hawthorne", "character": "Martin Van Buren", "id": 15788, "credit_id": "52fe448e9251416c75038f43", "cast_id": 10, "profile_path": "/66PJ2LGSowVC1qPR4QIE62PnBd5.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "John Quincy Adams", "id": 4173, "credit_id": "52fe448e9251416c75038f47", "cast_id": 11, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Djimon Hounsou", "character": "Cinque", "id": 938, "credit_id": "52fe448e9251416c75038f4b", "cast_id": 12, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "Theodore", "id": 192, "credit_id": "52fe448e9251416c75038f4f", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Chiwetel Ejiofor", "character": "Ens. James Covey", "id": 5294, "credit_id": "52fe448e9251416c75038f53", "cast_id": 14, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 4}, {"name": "Matthew McConaughey", "character": "Roger Sherman Baldwin", "id": 10297, "credit_id": "52fe448e9251416c75038f57", "cast_id": 15, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 5}, {"name": "David Paymer", "character": "Secretary John Forsyth", "id": 19839, "credit_id": "52fe448e9251416c75038f5b", "cast_id": 16, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 6}, {"name": "Pete Postlethwaite", "character": "Holabird", "id": 4935, "credit_id": "52fe448e9251416c75038f5f", "cast_id": 17, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 7}, {"name": "Stellan Skarsg\u00e5rd", "character": "Tappan", "id": 1640, "credit_id": "52fe448e9251416c75038f63", "cast_id": 18, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 8}, {"name": "Anna Paquin", "character": "Queen Isabella", "id": 10690, "credit_id": "52fe448e9251416c75038f67", "cast_id": 19, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 9}, {"name": "Tom\u00e1s Mili\u00e1n", "character": "Calderon", "id": 21708, "credit_id": "52fe448e9251416c75038f71", "cast_id": 21, "profile_path": "/wylTdKie6zK1dgT5e3sZk4a1tD1.jpg", "order": 10}, {"name": "John Ortiz", "character": "Montes", "id": 40543, "credit_id": "52fe448e9251416c75038f75", "cast_id": 22, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 11}, {"name": "Ralph Brown", "character": "Lieutenant Gedney", "id": 53916, "credit_id": "52fe448e9251416c75038f79", "cast_id": 23, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 12}, {"name": "Allan Rich", "character": "Judge Juttson", "id": 568531, "credit_id": "52fe448e9251416c75038f7d", "cast_id": 24, "profile_path": "/Asmdc5LrKtjklKyWuEochYe3Rn2.jpg", "order": 13}, {"name": "Paul Guilfoyle", "character": "Attorney", "id": 925, "credit_id": "52fe448e9251416c75038f81", "cast_id": 25, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 14}, {"name": "Peter Firth", "character": "Captain Fitzgerald", "id": 22109, "credit_id": "52fe448e9251416c75038f85", "cast_id": 26, "profile_path": "/2qFPG3fIwshfPGDwIoP5aKVKFQM.jpg", "order": 15}, {"name": "Jeremy Northam", "character": "Judge Coglin", "id": 18325, "credit_id": "52fe448e9251416c75038f89", "cast_id": 27, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 16}, {"name": "Arliss Howard", "character": "John C. Calhoun", "id": 3229, "credit_id": "52fe448e9251416c75038f8d", "cast_id": 28, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 17}, {"name": "Rusty Schwimmer", "character": "Mrs. Pendleton", "id": 34407, "credit_id": "52fe448e9251416c75038f91", "cast_id": 29, "profile_path": "/5syOxoKZboIDq5r5cQCfOpDyaoQ.jpg", "order": 18}, {"name": "Jake Weber", "character": "Mr. Wright", "id": 4177, "credit_id": "52fe448e9251416c75038f95", "cast_id": 30, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 19}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe448e9251416c75038f15", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.4, "runtime": 155}, "10214": {"poster_path": "/cfeJP0D3SSbtB6Hz3jxFcnbiLM4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tim Avery, an aspiring cartoonist, finds himself in a predicament when his dog stumbles upon the mask of Loki. Then after conceiving an infant son \"born of the mask\", he discovers just how looney child raising can be.", "video": false, "id": 10214, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Son of the Mask", "tagline": "Who's next?", "vote_count": 64, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ucDNm5TJW1ji7kIjnX2SZYm7ATM.jpg", "poster_path": "/pl2vNt9XlxITTgm8wCQ2Y6ThkpT.jpg", "id": 43072, "name": "The Mask Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0362165", "adult": false, "backdrop_path": "/nGBzfYq31oJdmVkcwgex0GkFemS.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Path\u00e9 Distribution", "id": 3012}], "release_date": "2005-02-18", "popularity": 1.29394198097134, "original_title": "Son of the Mask", "budget": 84000000, "cast": [{"name": "Jamie Kennedy", "character": "The Mask", "id": 6213, "credit_id": "52fe43439251416c75009b71", "cast_id": 1, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 0}, {"name": "Alan Cumming", "character": "Loki", "id": 10697, "credit_id": "52fe43439251416c75009b75", "cast_id": 2, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 1}, {"name": "Traylor Howard", "character": "Tonya Avery", "id": 54826, "credit_id": "52fe43439251416c75009b79", "cast_id": 3, "profile_path": "/8UYTuF7qOZeLnQnTEvnhha1D7MX.jpg", "order": 2}], "directors": [{"name": "Lawrence Guterman", "department": "Directing", "job": "Director", "credit_id": "52fe43439251416c75009b7f", "profile_path": "/txLsjc2oiqHzOmjdm4MG637SCdf.jpg", "id": 64191}], "vote_average": 3.9, "runtime": 94}, "11835": {"poster_path": "/yaf4WwHOAghlGQeC9qovOarLo27.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16974459, "overview": "Nick Hume is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever. Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.", "video": false, "id": 11835, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Death Sentence", "tagline": "Protect what's yours.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804461", "adult": false, "backdrop_path": "/cf8mtsRexfOkXe37AwsaK5FgHal.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Baldwin Entertainment Group", "id": 2234}, {"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Brass Hat Films", "id": 13817}], "release_date": "2007-08-31", "popularity": 0.80084397793365, "original_title": "Death Sentence", "budget": 20000000, "cast": [{"name": "Kevin Bacon", "character": "Nick Hume", "id": 4724, "credit_id": "52fe448f9251416c75039149", "cast_id": 16, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Garrett Hedlund", "character": "Billy Darley", "id": 9828, "credit_id": "52fe448f9251416c750390fd", "cast_id": 2, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Helen Hume", "id": 11164, "credit_id": "52fe448f9251416c75039101", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Jordan Garrett", "character": "Lucas Hume", "id": 70643, "credit_id": "52fe448f9251416c75039105", "cast_id": 4, "profile_path": "/dzm24MyA3nqLGrDSyYdkJIOzDNN.jpg", "order": 3}, {"name": "John Goodman", "character": "Bones Darley", "id": 1230, "credit_id": "52fe448f9251416c75039109", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "Aisha Tyler", "character": "Detective Wallis", "id": 38674, "credit_id": "52fe448f9251416c7503914d", "cast_id": 17, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 5}, {"name": "Stuart Lafferty", "character": "Brendan Hume", "id": 1215023, "credit_id": "52fe448f9251416c7503917b", "cast_id": 26, "profile_path": "/gG89wwtIvRLT2xealumbQ1HYIE.jpg", "order": 6}, {"name": "Matt O'Leary", "character": "Joe Darley", "id": 71467, "credit_id": "530a2b119251411108003979", "cast_id": 33, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 7}, {"name": "Edi Gathegi", "character": "Bodie", "id": 39391, "credit_id": "530a2b219251411117003a97", "cast_id": 34, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 8}, {"name": "Hector Atreyu Ruiz", "character": "Heco", "id": 24202, "credit_id": "530a2b2f9251411105003cb6", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Kanin Howell", "character": "Baggy", "id": 179851, "credit_id": "530a2b3f9251411111003bbf", "cast_id": 36, "profile_path": "/iz3NJyB7F3SkxMk9zzm00V1Ri6E.jpg", "order": 10}, {"name": "Dennis Keiffer", "character": "Jamie", "id": 1221121, "credit_id": "530a2b4d9251411117003a9b", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Freddy Bouciegues", "character": "Tommy", "id": 179861, "credit_id": "530a2b5b925141110e003ca5", "cast_id": 38, "profile_path": null, "order": 12}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe448f9251416c7503910f", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.4, "runtime": 105}, "11836": {"poster_path": "/sSlfqYpjKiwEk88QM9jPXAooM8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140161792, "overview": "There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.", "video": false, "id": 11836, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The SpongeBob SquarePants Movie", "tagline": "Bigger. Better. More absorbent.", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": "/82aBKm6QfMzNYl7jk9VG4mMPOYu.jpg", "poster_path": "/aTnC0WJcpXbTiz7hqqR0Wj7JCTV.jpg", "id": 275402, "name": "SpongeBob Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0345950", "adult": false, "backdrop_path": "/yNF26PQezyXxIlgNZWFzP6tmorW.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Paramount Animation", "id": 24955}, {"name": "Nickelodeon Movies", "id": 2348}], "release_date": "2004-11-14", "popularity": 1.60879638107534, "original_title": "The SpongeBob SquarePants Movie", "budget": 30000000, "cast": [{"name": "Tom Kenny", "character": "Spongebob", "id": 78798, "credit_id": "52fe448f9251416c750391d7", "cast_id": 11, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 0}, {"name": "Clancy Brown", "character": "Mr. Krabs (voice)", "id": 6574, "credit_id": "52fe448f9251416c750391db", "cast_id": 12, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 1}, {"name": "Rodger Bumpass", "character": "Squidward (voice)", "id": 70615, "credit_id": "52fe448f9251416c750391df", "cast_id": 13, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 2}, {"name": "Bill Fagerbakke", "character": "Patrick Star (voice)", "id": 34398, "credit_id": "52fe448f9251416c750391e3", "cast_id": 14, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 3}, {"name": "Carolyn Lawrence", "character": "Sandy (voice)", "id": 78799, "credit_id": "52fe448f9251416c750391e7", "cast_id": 15, "profile_path": "/dKxOl2EsuXrFPrBhyNud7vP8I6W.jpg", "order": 4}, {"name": "Jeffrey Tambor", "character": "King Neptune (voice)", "id": 4175, "credit_id": "52fe448f9251416c750391eb", "cast_id": 16, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 5}, {"name": "Scarlett Johansson", "character": "Mindy (voice)", "id": 1245, "credit_id": "52fe448f9251416c750391ef", "cast_id": 17, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 6}, {"name": "Alec Baldwin", "character": "Dennis (voice)", "id": 7447, "credit_id": "52fe448f9251416c750391f3", "cast_id": 18, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 7}, {"name": "David Hasselhoff", "character": "Himself", "id": 28238, "credit_id": "52fe448f9251416c750391f7", "cast_id": 19, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 8}, {"name": "Mr. Lawrence", "character": "Plankton", "id": 1215951, "credit_id": "5510c56ac3a36801bb00061c", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Mr. Lawrence", "character": "Plankton", "id": 1215951, "credit_id": "5510c56e9251415b600005c0", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Stephen Hillenburg", "department": "Directing", "job": "Director", "credit_id": "52fe448f9251416c750391a9", "profile_path": null, "id": 70651}], "vote_average": 6.9, "runtime": 87}, "36419": {"poster_path": "/8mtT1Hqp63s3DiGxZckxQj0Mioy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3606395, "overview": "A young woman caught between life and death... and a funeral director who appears to have the gift of transitioning the dead, but might just be intent on burying her alive.", "video": false, "id": 36419, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "After.Life", "tagline": "Life is the symptom. Death is the cure.", "vote_count": 59, "homepage": "http://www.afterlifethefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0838247", "adult": false, "backdrop_path": "/pg7W4YCvpoub573MZtV3Rmmz9fE.jpg", "production_companies": [{"name": "Lleju Productions", "id": 12410}, {"name": "Harbor Light Entertainment", "id": 6020}, {"name": "Plum Pictures", "id": 2224}], "release_date": "2009-11-07", "popularity": 0.823676307377857, "original_title": "After.Life", "budget": 4500000, "cast": [{"name": "Liam Neeson", "character": "Eliot Deacon", "id": 3896, "credit_id": "52fe45e89251416c9104286b", "cast_id": 1, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Justin Long", "character": "Paul", "id": 15033, "credit_id": "52fe45e89251416c9104286f", "cast_id": 2, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Christina Ricci", "character": "Anna Taylor", "id": 6886, "credit_id": "52fe45e89251416c91042873", "cast_id": 3, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 2}, {"name": "Josh Charles", "character": "Tom Peterson", "id": 2694, "credit_id": "52fe45e89251416c91042877", "cast_id": 4, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 3}, {"name": "Chandler Canterbury", "character": "Jack", "id": 77334, "credit_id": "52fe45e89251416c9104287b", "cast_id": 5, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 4}, {"name": "Celia Weston", "character": "Beatrice Taylor", "id": 1989, "credit_id": "52fe45e89251416c9104287f", "cast_id": 6, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 5}, {"name": "Shuler Hensley", "character": "Vincent Miller", "id": 96892, "credit_id": "52fe45e89251416c91042883", "cast_id": 7, "profile_path": "/xAeK7my9ZFHcHGCrgDeUUDFTty1.jpg", "order": 6}, {"name": "Anna Kuchma", "character": "Restaurant Patron", "id": 115335, "credit_id": "52fe45e89251416c91042887", "cast_id": 8, "profile_path": "/31df19CsbXPNTKVf5dumZHSM2t6.jpg", "order": 7}, {"name": "Rosemary Murphy", "character": "Susan Whitehall", "id": 8492, "credit_id": "52fe45e89251416c9104288b", "cast_id": 9, "profile_path": "/mNrRc207chuOUgNizM0cmTfwDxP.jpg", "order": 8}, {"name": "Laurel Bryce", "character": "Young Anna Taylor", "id": 115336, "credit_id": "52fe45e89251416c9104288f", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Luz Alexandra Ramos", "character": "Diane", "id": 209065, "credit_id": "534fa87d0e0a267ea1000af3", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Malachy McCourt", "character": "Father Graham", "id": 1217684, "credit_id": "534fa89c0e0a267ea1000af9", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Alice Drummond", "character": "Mrs. Hutton", "id": 17488, "credit_id": "534fa8b30e0a267ea1000afc", "cast_id": 24, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 12}, {"name": "Sam Kressner", "character": "Acne Kid", "id": 1310666, "credit_id": "534fa8c70e0a267ea1000b00", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Doan Ly", "character": "Teacher #1", "id": 1310667, "credit_id": "534fa8d60e0a267eb6000aad", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Jack Rovello", "character": "Tall Kid", "id": 8446, "credit_id": "534fa8ec0e0a267eb6000ab1", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Prudence Wright Holmes", "character": "Old Woman", "id": 951387, "credit_id": "534fa8fe0e0a267eab000a91", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Agnieszka Wojtowicz-Vosloo", "department": "Directing", "job": "Director", "credit_id": "52fe45e89251416c91042895", "profile_path": "/8xXquA5vDFc4xl1bvi70rFDB63A.jpg", "id": 129715}], "vote_average": 5.6, "runtime": 104}, "118340": {"poster_path": "/9gm3lL8JMTTmc3W4BmNMCuRLdL8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 772200000, "overview": "Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.", "video": false, "id": 118340, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Guardians of the Galaxy", "tagline": "All heroes start somewhere.", "vote_count": 2403, "homepage": "http://marvel.com/guardians", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 284433, "name": "Guardians of the Galaxy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2015381", "adult": false, "backdrop_path": "/bHarw8xrmQeqf3t8HpuMY7zoK4x.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2014-08-01", "popularity": 10.725256797289, "original_title": "Guardians of the Galaxy", "budget": 170000000, "cast": [{"name": "Chris Pratt", "character": "Peter Quill / Star-Lord", "id": 73457, "credit_id": "52fe4bd5c3a36847f8215d01", "cast_id": 1, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Gamora", "id": 8691, "credit_id": "52fe4bd5c3a36847f8215d2d", "cast_id": 10, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Dave Bautista", "character": "Drax the Destroyer", "id": 543530, "credit_id": "52fe4bd5c3a36847f8215d05", "cast_id": 2, "profile_path": "/21bkLWMVWkSWy0KHrvJrfZFJ94V.jpg", "order": 2}, {"name": "Vin Diesel", "character": "Groot (voice)", "id": 12835, "credit_id": "52fe4bd5c3a36847f8215d5b", "cast_id": 21, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 3}, {"name": "Bradley Cooper", "character": "Rocket (voice)", "id": 51329, "credit_id": "52fe4bd5c3a36847f8215d5f", "cast_id": 23, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 4}, {"name": "Lee Pace", "character": "Ronan the Accuser", "id": 72095, "credit_id": "52fe4bd5c3a36847f8215d3d", "cast_id": 14, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 5}, {"name": "Karen Gillan", "character": "Nebula", "id": 543261, "credit_id": "52fe4bd5c3a36847f8215d4f", "cast_id": 18, "profile_path": "/3ip17StrlDLs9CmYaEyVxRK94t.jpg", "order": 6}, {"name": "Michael Rooker", "character": "Yondu Udonta", "id": 12132, "credit_id": "52fe4bd5c3a36847f8215d31", "cast_id": 11, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 7}, {"name": "Benicio del Toro", "character": "Taneleer Tivan / The Collector", "id": 1121, "credit_id": "52fe4bd5c3a36847f8215d53", "cast_id": 19, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 8}, {"name": "Djimon Hounsou", "character": "Korath the Pursuer", "id": 938, "credit_id": "5379f3efc3a3685531005ca7", "cast_id": 25, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 9}, {"name": "John C. Reilly", "character": "Corpsman Dey", "id": 4764, "credit_id": "52fe4bd5c3a36847f8215d47", "cast_id": 16, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 10}, {"name": "Glenn Close", "character": "Nova Prime", "id": 515, "credit_id": "52fe4bd5c3a36847f8215d4b", "cast_id": 17, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 11}, {"name": "Josh Brolin", "character": "Thanos", "id": 16851, "credit_id": "538ce200c3a368715500332b", "cast_id": 26, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 12}, {"name": "Peter Serafinowicz", "character": "Denarian Saal", "id": 11115, "credit_id": "53daa6fec3a36872b10002e0", "cast_id": 43, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 13}, {"name": "Sean Gunn", "character": "Kraglin / On Set Rocket", "id": 51663, "credit_id": "53e86af8c3a3683999003281", "cast_id": 46, "profile_path": "/dldYyij2lt4rDUehY4wLZoZ0KUK.jpg", "order": 14}, {"name": "Alexis Denisof", "character": "The Other", "id": 1214673, "credit_id": "53e86b93c3a3683999003289", "cast_id": 48, "profile_path": "/hAcTJxSbSPHLfa59D8mnJOzxpmE.jpg", "order": 15}, {"name": "Ophelia Lovibond", "character": "Carina", "id": 82639, "credit_id": "54a0779a925141312300b3d4", "cast_id": 148, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 16}, {"name": "Laura Haddock", "character": "Meredith Quill", "id": 209578, "credit_id": "538ce294c3a368715200336d", "cast_id": 27, "profile_path": "/9Krk76xvNMkIqjEbPXdARZNRX3.jpg", "order": 17}, {"name": "Gregg Henry", "character": "Grandpa", "id": 2518, "credit_id": "53daa707c3a36872b60002c9", "cast_id": 44, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 18}, {"name": "Stan Lee", "character": "Xandarian Ladies' Man", "id": 7624, "credit_id": "53e69373c3a3684433001988", "cast_id": 45, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 19}, {"name": "Nathan Fillion", "character": "Monstrous Inmate (voice)", "id": 51797, "credit_id": "53e86b84c3a368398d0032cc", "cast_id": 47, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 20}, {"name": "Rob Zombie", "character": "Ravager Navigator (voice)", "id": 16848, "credit_id": "53e86bbcc3a36839950032ed", "cast_id": 49, "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "order": 21}, {"name": "James Gunn", "character": "Maskless Sakaaran", "id": 15218, "credit_id": "53e86bc9c3a3683991003336", "cast_id": 50, "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "order": 22}, {"name": "Tyler Bates", "character": "Ravager Pilot", "id": 15221, "credit_id": "53e86bd9c3a36839950032f0", "cast_id": 51, "profile_path": "/aN0g9Lrw03B7Hl2F4dCOo31hIKl.jpg", "order": 23}, {"name": "Seth Green", "character": "Howard the Duck (voice)", "id": 13922, "credit_id": "53e86be7c3a36839950032f2", "cast_id": 52, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 24}, {"name": "Mikaela Hoover", "character": "Nova Prime's Assistant", "id": 1363394, "credit_id": "545ed5590e0a261fa6007d84", "cast_id": 58, "profile_path": "/l0pfM43Ep1IL58q3SQ8vFpFqCfZ.jpg", "order": 25}, {"name": "Melia Kreiling", "character": "Bereet", "id": 1133011, "credit_id": "545ed5770e0a262359000705", "cast_id": 59, "profile_path": "/71PstlAEw5PAZnxXo0NOiqQ37OF.jpg", "order": 26}, {"name": "Christopher Fairbank", "character": "The Broker", "id": 8399, "credit_id": "549fe6dfc3a3685542007334", "cast_id": 123, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 27}, {"name": "Krystian Godlewski", "character": "On Set Groot", "id": 1405259, "credit_id": "549fe9619251414d270055fc", "cast_id": 124, "profile_path": "/A9ViCfMKxg3OiZVyKoIQ0jPObok.jpg", "order": 28}, {"name": "Wyatt Oleff", "character": "Young Quill", "id": 1148455, "credit_id": "549fea939251414d2700562f", "cast_id": 125, "profile_path": "/18K1XQR54wzaAjrBh1FUBGKFuNv.jpg", "order": 29}, {"name": "Janis Ahern", "character": "Meredith's Mother", "id": 1405269, "credit_id": "549febc5925141212700150a", "cast_id": 126, "profile_path": "/4DpiuJEuBRm2SdMeABJ3vRZO2il.jpg", "order": 30}, {"name": "Solomon Mousley", "character": "Meredith's Brother", "id": 1405309, "credit_id": "54a00ac09251414e28005b42", "cast_id": 127, "profile_path": null, "order": 31}, {"name": "Lindsay Morton", "character": "Meredith's Best Friend", "id": 1405311, "credit_id": "54a00bc3925141313200a5db", "cast_id": 128, "profile_path": "/scqrJ9ZE31v7QGpsJ9Frjmfgd1h.jpg", "order": 32}, {"name": "Robert Firth", "character": "Dr. Fitzgibbon", "id": 1405317, "credit_id": "54a00d1fc3a3680b270091bd", "cast_id": 129, "profile_path": "/1mq1G9iiu5u2QBgfQpcay6i7pIi.jpg", "order": 33}, {"name": "Tom Proctor", "character": "Horuz", "id": 95051, "credit_id": "54a00ef39251411d53004edf", "cast_id": 130, "profile_path": "/ueuCn76nV670Kt1UOVOPaki9Zu7.jpg", "order": 34}, {"name": "Nick Holmes", "character": "Horuz's Mate", "id": 1237281, "credit_id": "54a01128c3a36851ce001776", "cast_id": 131, "profile_path": "/qA8lxS0USklar0mHP5FIXlMAZQ.jpg", "order": 35}, {"name": "Max Wrottesley", "character": "Sacrifice Nova Corpsman", "id": 1202683, "credit_id": "54a029bbc3a368764f006e56", "cast_id": 132, "profile_path": "/fUU5LC93GA9kTZ8q37qP2wXvoQG.jpg", "order": 36}, {"name": "Nicole Alexandra Shipley", "character": "Pretty Xandarian", "id": 1186515, "credit_id": "54a02c8ec3a3680b27009498", "cast_id": 133, "profile_path": "/hJB152JEsnjl4ViSjR7xVgC7gli.jpg", "order": 37}, {"name": "Sharif Atkins", "character": "Nova Arresting Pilot", "id": 1211966, "credit_id": "54a02d27c3a3682f1e00aaa4", "cast_id": 134, "profile_path": "/9xekBI9xnNe899LtyQnqZ6Dxv1g.jpg", "order": 38}, {"name": "Brendan Fehr", "character": "Corpsman Dey's Partner", "id": 72440, "credit_id": "54a02d99925141312900b3e3", "cast_id": 135, "profile_path": "/8tp3G4RMWNpxprEfyxvjhRFf6uq.jpg", "order": 39}, {"name": "Tomas Arana", "character": "Kree Ambassador", "id": 941, "credit_id": "54a02e01c3a3682f2300aeb9", "cast_id": 136, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 40}, {"name": "Emmett Scanlan", "character": "Head Riot Guard", "id": 1111204, "credit_id": "54a0314cc3a3682f1e00ab42", "cast_id": 137, "profile_path": "/ksm2qUuwfOSZF8OrYc043NalaOM.jpg", "order": 41}, {"name": "Dominic Grant", "character": "Angry Guard", "id": 1405441, "credit_id": "54a0327f925141313200aa57", "cast_id": 138, "profile_path": null, "order": 42}, {"name": "Spencer Wilding", "character": "Mean Guard", "id": 25451, "credit_id": "54a03398925141312900b4d3", "cast_id": 139, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 43}, {"name": "Alison Lintott", "character": "Sad Woman with Horns", "id": 1405444, "credit_id": "54a03441c3a3682f1e00ab93", "cast_id": 140, "profile_path": "/tD4qlyW68ENQvELw3iedAZjHO0W.jpg", "order": 44}, {"name": "Alexis Rodney", "character": "Moloka Dar", "id": 1211540, "credit_id": "54a0380a9251412127001cb8", "cast_id": 141, "profile_path": "/bjLs8UTLLBMraGlGPYxq9VMMFVs.jpg", "order": 45}, {"name": "Keeley Forsyth", "character": "Mottled Prisoner", "id": 1234991, "credit_id": "54a039f2c3a3682f2100ae25", "cast_id": 142, "profile_path": "/5di42jElQkufxLdQZ9DwbbIJT31.jpg", "order": 46}, {"name": "Frank Gilhooley", "character": "Burly Prisoner", "id": 1405453, "credit_id": "54a03a679251414d27005dca", "cast_id": 143, "profile_path": "/bHWz6d2DsgGGLakJUakELR5Pels.jpg", "order": 47}, {"name": "Enzo Cilenti", "character": "Watchtower Guard", "id": 91494, "credit_id": "54a0735c9251414e28006577", "cast_id": 144, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 48}, {"name": "Richard Katz", "character": "One Legged Prisoner", "id": 25679, "credit_id": "54a07477c3a368764f0076cc", "cast_id": 145, "profile_path": "/yvKqJCcIqPXr8sLSxEXXpTL5OBO.jpg", "order": 49}, {"name": "Enoch Frost", "character": "Rifle Guard", "id": 56617, "credit_id": "54a0756e9251414e280065a8", "cast_id": 146, "profile_path": "/m1hCEli1bI9X9QBN5XARVj7Uo2v.jpg", "order": 50}, {"name": "Ronan Summers", "character": "'Drop the Leg' Guard", "id": 1132153, "credit_id": "54a0774a9251414d27006285", "cast_id": 147, "profile_path": "/oqUPzj0rY7cI3QvLSVf7a6ldtOs.jpg", "order": 51}, {"name": "Laura Ortiz", "character": "Tortured Pink Girl", "id": 59286, "credit_id": "54a07965c3a36851ce0020f2", "cast_id": 149, "profile_path": "/mwqLiRCwFQM3YBf3qX5AvWubS0c.jpg", "order": 52}, {"name": "Marama Corlett", "character": "Pit Boss", "id": 1312266, "credit_id": "54a07a7fc3a368554200834a", "cast_id": 150, "profile_path": "/sRKonmwHLsn4ewXJtXRujegW6De.jpg", "order": 53}, {"name": "Rosie Jones", "character": "Lady of the Boot of Jemiah", "id": 1405537, "credit_id": "54a07b95925141236b002366", "cast_id": 151, "profile_path": "/oPyn6rFqTWj33O1gSg0Oib8rZ5Z.jpg", "order": 54}, {"name": "Abidemi Sobande", "character": "Lady of the Boot of Jemiah", "id": 1405538, "credit_id": "54a07c66c3a36851ce002127", "cast_id": 152, "profile_path": "/hY1j6Dy4f5P4E5Zac98e0ugommY.jpg", "order": 55}, {"name": "Alex Rose", "character": "Lady of the Boot of Jemiah", "id": 1405540, "credit_id": "54a07d19c3a3680b27009bc3", "cast_id": 153, "profile_path": null, "order": 56}, {"name": "Ekaterina Zalitko", "character": "Lady of the Boot of Jemiah", "id": 1394341, "credit_id": "54a07e83c3a3682f1b00b2d9", "cast_id": 154, "profile_path": null, "order": 57}, {"name": "Emily Redding", "character": "Lady of the Boot of Jemiah", "id": 1405552, "credit_id": "54a07f1d925141236b0023c7", "cast_id": 155, "profile_path": null, "order": 58}, {"name": "Fred", "character": "Cosmo the Space Dog", "id": 1405553, "credit_id": "54a07ff2c3a3682f2100b4f4", "cast_id": 156, "profile_path": null, "order": 59}, {"name": "Stephen Blackehart", "character": "Knowhere Dispatcher", "id": 85096, "credit_id": "54a080fdc3a368764f007808", "cast_id": 157, "profile_path": "/jN1YGxv0W0zCJ2XFyGIUVaeFIfw.jpg", "order": 60}, {"name": "Jennifer Moylan-Taylor", "character": "Sad Krylorian Girl", "id": 1405554, "credit_id": "54a0818f9251414d27006347", "cast_id": 158, "profile_path": "/jlR4x7L5yN57ttzTNJCgIinqQrW.jpg", "order": 61}, {"name": "Bruce Mackinnon", "character": "One-Eyed Ravager", "id": 1227575, "credit_id": "54a0835ac3a3682f2300b6f0", "cast_id": 159, "profile_path": "/i6RLbFsZqkflplC45XRItxVnv8V.jpg", "order": 62}, {"name": "Ralph Ineson", "character": "Ravager Pilot", "id": 202032, "credit_id": "54a08496c3a3682f1e00b2e6", "cast_id": 160, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 63}, {"name": "Naomi Ryan", "character": "Nova Centurion", "id": 1229414, "credit_id": "54a086ec9251414e280066eb", "cast_id": 161, "profile_path": "/9kePQIqoSMrkbBUS004c4E2Svgt.jpg", "order": 64}, {"name": "John Brotherton", "character": "Nova Starblaster Pilot", "id": 222906, "credit_id": "54a08810c3a3682f2100b584", "cast_id": 162, "profile_path": "/cxCXFaFpgPRTxuXydI53hGvUMgk.jpg", "order": 65}, {"name": "Graham Shiels", "character": "Alien Nova Pilot", "id": 92615, "credit_id": "54a08a3b9251414e28006738", "cast_id": 163, "profile_path": "/qH1mrJ880LQBeGsJP8b1iQRW2gL.jpg", "order": 66}, {"name": "Douglas Robson", "character": "Maskless Sakaaran", "id": 1405566, "credit_id": "54a08ca5925141312900bde9", "cast_id": 164, "profile_path": "/bvvPlHFsmOBS24akntc2XNmG02I.jpg", "order": 67}, {"name": "Rachel Cullen", "character": "Corpsman Dey's Wife", "id": 1405567, "credit_id": "54a08e7ec3a368764f00793a", "cast_id": 165, "profile_path": null, "order": 68}, {"name": "Isabella Poynton", "character": "Corpsman Dey's Daughter", "id": 1405570, "credit_id": "54a08eb59251411d53005b46", "cast_id": 166, "profile_path": null, "order": 69}, {"name": "Imogen Poynton", "character": "Corpsman Dey's Daughter", "id": 1405571, "credit_id": "54a08f109251414e28006781", "cast_id": 167, "profile_path": null, "order": 70}, {"name": "David Yarovesky", "character": "Goth Ravager", "id": 1362815, "credit_id": "54a090c09251411d53005b6a", "cast_id": 168, "profile_path": null, "order": 71}, {"name": "Miriam Lucia", "character": "Crying Xandarian Citizen", "id": 1283880, "credit_id": "54a0918d925141313200b2f7", "cast_id": 169, "profile_path": "/cuzNKyF4acFCsDVgCMStjWsaHtV.jpg", "order": 72}, {"name": "Lloyd Kaufman", "character": "Prisoner", "id": 78021, "credit_id": "54fed408c3a368150c001355", "cast_id": 170, "profile_path": "/zTylEHdJL422WZ1vjEmEkDoWkk7.jpg", "order": 73}], "directors": [{"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe4bd5c3a36847f8215d0b", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}], "vote_average": 8.2, "runtime": 121}, "11846": {"poster_path": "/bNQpz6e35wuA3QgJb9VF2oUpZNA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89325780, "overview": "George Banks is an ordinary, middle-class man whose 21 year-old daughter Annie has decided to marry a man from an upper-class family, but George can't think of what life would be like without his daughter. He becomes slightly insane, but his wife tries to make him happy for Annie, but when the wedding takes place at their home and a foreign wedding planner takes over the ceremony.", "video": false, "id": 11846, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Father of the Bride", "tagline": "Love is wonderful. Until it happens to your only daughter.", "vote_count": 82, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7qwE57OVZmMJChBpLEbJEmzUydk.jpg", "poster_path": "/vVXjXLTE5ane0bfE3VI3EEipucK.jpg", "id": 96871, "name": "Father of the Bride Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101862", "adult": false, "backdrop_path": "/vFiVPWfCyQzY3jG7M0LmHM6oKdq.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Sandollar Productions", "id": 5842}], "release_date": "1991-12-20", "popularity": 0.284639188736848, "original_title": "Father of the Bride", "budget": 0, "cast": [{"name": "Steve Martin", "character": "George Stanley Banks", "id": 67773, "credit_id": "52fe44929251416c750396e7", "cast_id": 15, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Nina Banks", "id": 3092, "credit_id": "52fe44929251416c750396eb", "cast_id": 16, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Kimberly Williams-Paisley", "character": "Annie Banks", "id": 70696, "credit_id": "52fe44929251416c750396ef", "cast_id": 17, "profile_path": "/nVp4F4VFqVvjh6huOULUQoiAguY.jpg", "order": 2}, {"name": "George Newbern", "character": "Bryan MacKenzie", "id": 59222, "credit_id": "52fe44929251416c750396f3", "cast_id": 18, "profile_path": "/48Ouqe1g8QrZ6qjvap5NvhfKuly.jpg", "order": 3}, {"name": "Martin Short", "character": "Franck Eggelhoffer", "id": 519, "credit_id": "52fe44929251416c750396fd", "cast_id": 20, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 4}, {"name": "Kieran Culkin", "character": "Matty Banks", "id": 18793, "credit_id": "52fe44929251416c75039701", "cast_id": 21, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 5}, {"name": "BD Wong", "character": "Howard Weinstein", "id": 14592, "credit_id": "52fe44929251416c75039705", "cast_id": 22, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 6}, {"name": "Peter Michael Goetz", "character": "John MacKenzie", "id": 20906, "credit_id": "52fe44929251416c75039709", "cast_id": 23, "profile_path": "/a2hLcCidETgwlVyQnYy4kXVKUcn.jpg", "order": 7}, {"name": "Kate McGregor-Stewart", "character": "Joanna MacKenzie", "id": 54348, "credit_id": "52fe44929251416c7503970d", "cast_id": 24, "profile_path": null, "order": 8}], "directors": [{"name": "Charles Shyer", "department": "Directing", "job": "Director", "credit_id": "52fe44929251416c750396f9", "profile_path": "/hnWGd74CbmTcDCFQiJ8SYLazIXW.jpg", "id": 56106}], "vote_average": 6.3, "runtime": 105}, "11852": {"poster_path": "/7VxJmoWobDdARhEkU8mIiZwWEj8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35081550, "overview": "Not only is Jessica Spencer (Rachel McAdams) the most popular girl in school -- she is also the meanest. But things change for the attractive teen when a freak accident involving a cursed pair of earrings and a chance encounter at a gas station causes her to switch bodies with Clive (Rob Schneider), a sleazy crook. Jessica, in the form of the repulsive Clive, struggles to adjust to this radical alteration and sets out to get her own body back before the upcoming prom.", "video": false, "id": 11852, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "The Hot Chick", "tagline": "The hottest chick in town just switched bodies with the luckiest loser in the world.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0302640", "adult": false, "backdrop_path": "/lRCpAiSMLSpPtc3hiPUBbdbcgXn.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2002-12-02", "popularity": 0.809847330191292, "original_title": "The Hot Chick", "budget": 0, "cast": [{"name": "Rob Schneider", "character": "Clive Maxtone/Jessica Spencer", "id": 60949, "credit_id": "52fe44939251416c750399df", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Jessica Spencer/Clive Maxtone", "id": 53714, "credit_id": "52fe44939251416c75039a05", "cast_id": 10, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Anna Faris", "character": "April", "id": 1772, "credit_id": "52fe44939251416c750399e3", "cast_id": 4, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Matthew Lawrence", "character": "Billy", "id": 11716, "credit_id": "52fe44939251416c75039a09", "cast_id": 11, "profile_path": "/5FstHTIRe51bkmga1cWGRB7vFMc.jpg", "order": 3}, {"name": "Eric Christian Olsen", "character": "Jake", "id": 29020, "credit_id": "52fe44939251416c75039a0d", "cast_id": 12, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 4}, {"name": "Robert Davi", "character": "Stan", "id": 2055, "credit_id": "52fe44939251416c75039a11", "cast_id": 13, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 5}, {"name": "Melora Hardin", "character": "Carol Spencer", "id": 404, "credit_id": "52fe44939251416c75039a15", "cast_id": 14, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 6}, {"name": "Alexandra Holden", "character": "Lulu", "id": 69399, "credit_id": "52fe44939251416c75039a19", "cast_id": 15, "profile_path": "/yJ6FuYwEts4NC1umABgpIG26jFg.jpg", "order": 7}, {"name": "Maritza Murray", "character": "Keecia", "id": 148702, "credit_id": "52fe44939251416c75039a1d", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Fay Hauser", "character": "Mrs. Thomas", "id": 121642, "credit_id": "52fe44939251416c75039a21", "cast_id": 17, "profile_path": "/8WQkqQEu6J832h7FDX28jFOyC2J.jpg", "order": 9}, {"name": "Jodi Long", "character": "Korean Mother", "id": 44059, "credit_id": "52fe44939251416c75039a25", "cast_id": 18, "profile_path": "/1Jc60wX4lOYwRPTonHDPI8l3Msv.jpg", "order": 10}, {"name": "Tia Mowry", "character": "Venetia", "id": 87569, "credit_id": "52fe44939251416c75039a29", "cast_id": 19, "profile_path": "/atRWNsm7gIBreEDNCfP8uvLnib.jpg", "order": 11}, {"name": "Tamera Mowry", "character": "Sissy", "id": 87570, "credit_id": "52fe44939251416c75039a2d", "cast_id": 20, "profile_path": "/ppSYROJ7tkz5pHTJ1sRiMuoGHdN.jpg", "order": 12}, {"name": "Lee Garlington", "character": "Vice Principal Bernard", "id": 23975, "credit_id": "52fe44939251416c75039a31", "cast_id": 21, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 13}, {"name": "Angie Stone", "character": "Madame Mambuza", "id": 148704, "credit_id": "52fe44939251416c75039a35", "cast_id": 22, "profile_path": "/bPGLPezwIF8lSnsyjm7BOWPK9ZP.jpg", "order": 14}, {"name": "Matt Weinberg", "character": "Booger", "id": 60956, "credit_id": "52fe44939251416c75039a39", "cast_id": 23, "profile_path": "/g0MVUMfhkyv5kcIsMOEX0LaHpQM.jpg", "order": 15}, {"name": "Leila Kenzle", "character": "Julie", "id": 15044, "credit_id": "52fe44939251416c75039a3d", "cast_id": 24, "profile_path": "/8U9S4cYQTq0nbG01RDAIluEKZk4.jpg", "order": 16}, {"name": "Michelle Branch", "character": "DJ", "id": 71195, "credit_id": "52fe44939251416c75039a41", "cast_id": 25, "profile_path": "/mA40jesKz3zy2Lz7oB7EarU2LrM.jpg", "order": 17}, {"name": "Michael O'Keefe", "character": "Richie", "id": 38085, "credit_id": "52fe44939251416c75039a5d", "cast_id": 33, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 18}, {"name": "Megan Kuhlmann", "character": "Hildenburg", "id": 148706, "credit_id": "52fe44939251416c75039a45", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Ashlee Simpson-Wentz", "character": "Monique", "id": 148707, "credit_id": "52fe44939251416c75039a49", "cast_id": 28, "profile_path": "/j1nh5I10IpcZGVIkm0yZF0D4sXV.jpg", "order": 20}, {"name": "Scott Dolezal", "character": "Night Club Bartender", "id": 148708, "credit_id": "52fe44939251416c75039a4d", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Maria-Elena Laas", "character": "Bianca", "id": 144145, "credit_id": "52fe44939251416c75039a51", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Katie Lohmann", "character": "Pole Cat Stripper", "id": 62593, "credit_id": "52fe44939251416c75039a55", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Adam Sandler", "character": "Mambuza Bongo Guy (uncredited)", "id": 19292, "credit_id": "52fe44939251416c75039a59", "cast_id": 32, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 24}], "directors": [{"name": "Tom Brady", "department": "Directing", "job": "Director", "credit_id": "52fe44939251416c750399e9", "profile_path": "/7R2k0mZplcYd7A832x0EEmSK2WR.jpg", "id": 66512}], "vote_average": 5.7, "runtime": 104}, "40205": {"poster_path": "/7EmxxTry7JAqFogSl0TNWLyMrx2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story about Abby Jensen, a girl who's been eager to reach her 16th birthday and has kept a secret wish list since she was a little girl. When the Big Day actually arrives, utter disaster strikes, leaving Abby to think her birthday is ruined. But when a mysterious box of magical birthday candles arrives to turn things around, Abby's 16 Wishes start to come true. Her day gets better and better...until she makes one wish that threatens to change everything.", "video": false, "id": 40205, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "16 Wishes", "tagline": "Everyone's sweet 16 is special, Abby's is magical.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646876", "adult": false, "backdrop_path": "/wsHpvHi9pWhMX6azueyqnGHltEH.jpg", "production_companies": [{"name": "Marvista Entertainment", "id": 6679}, {"name": "Disney Channel", "id": 3213}], "release_date": "2010-06-25", "popularity": 0.435927638040824, "original_title": "16 Wishes", "budget": 0, "cast": [{"name": "Debby Ryan", "character": "Abby Louise Jensen", "id": 123846, "credit_id": "52fe4586c3a36847f80cc265", "cast_id": 1, "profile_path": "/x4NZXxKM0B8fI84OvqeLN9W44gL.jpg", "order": 0}, {"name": "Jean-Luc Bilodeau", "character": "Jay", "id": 205204, "credit_id": "52fe4586c3a36847f80cc283", "cast_id": 9, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 1}, {"name": "Keenan Tracey", "character": "Logan Buchanan", "id": 219998, "credit_id": "53c3f7b9c3a3684ce900a098", "cast_id": 13, "profile_path": "/tQyMehFUHOnUC8cfJD75UxOHVku.jpg", "order": 2}, {"name": "Anna Mae Routledge", "character": "Celeste", "id": 143329, "credit_id": "52fe4586c3a36847f80cc27b", "cast_id": 6, "profile_path": "/3OPydEe8VI0t5T27fU8Rua5XzR4.jpg", "order": 3}, {"name": "Kendall Cross", "character": "Sue Jensen", "id": 59185, "credit_id": "52fe4586c3a36847f80cc27f", "cast_id": 8, "profile_path": "/js2mIcx5lZu6P4D3z6hYZqNFPCx.jpg", "order": 4}, {"name": "Patrick Gilmore", "character": "Bob Jensen", "id": 76828, "credit_id": "52fe4586c3a36847f80cc28b", "cast_id": 11, "profile_path": "/iIODRkPruE6Lh2EccZhsW3KU3h5.jpg", "order": 5}, {"name": "Karissa Tynes", "character": "Krista", "id": 144853, "credit_id": "52fe4586c3a36847f80cc287", "cast_id": 10, "profile_path": "/oIZnMZ8xCXdzLHVTAzfTbLMVGXV.jpg", "order": 6}, {"name": "Jenna Romanin", "character": "Fashionista 1", "id": 233264, "credit_id": "52fe4586c3a36847f80cc28f", "cast_id": 12, "profile_path": "/AuPDjIor5jN2fQedcNislXptr4q.jpg", "order": 7}], "directors": [{"name": "Peter DeLuise", "department": "Directing", "job": "Director", "credit_id": "52fe4586c3a36847f80cc26b", "profile_path": "/wMgDVpN6UyeEuRSCWUXWigvibSn.jpg", "id": 118463}], "vote_average": 5.9, "runtime": 90}, "20048": {"poster_path": "/8gCZJ8gOxd22Spz1MKiu4b54T2r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108332743, "overview": "In the glamorous world of New York City, Rebecca Bloomwood is a fun-loving girl who is really good at shopping-a little too good, perhaps. She dreams of working for her favorite fashion magazine, but can't quite get her foot in the door-until ironically, she snags a job as an advice columnist for a financial magazine published by the same company.", "video": false, "id": 20048, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Confessions of a Shopaholic", "tagline": "A new job? Hopefully. A new man? Possibly. A new handbag? Absolutely!", "vote_count": 150, "homepage": "http://www.bluefly.com/media/promotions/flash/shopaholic/main/shopaholic.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fi", "name": "suomi"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1093908", "adult": false, "backdrop_path": "/vE4yZmpoXFBN8efniq5ruoxEFoM.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2009-02-05", "popularity": 0.460949097479122, "original_title": "Confessions of a Shopaholic", "budget": 40000000, "cast": [{"name": "Isla Fisher", "character": "Rebecca Bloomwood", "id": 52848, "credit_id": "52fe43d4c3a368484e000a55", "cast_id": 1, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 0}, {"name": "Hugh Dancy", "character": "Luke Brandon", "id": 12791, "credit_id": "52fe43d4c3a368484e000a59", "cast_id": 2, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 1}, {"name": "Krysten Ritter", "character": "Suze", "id": 78080, "credit_id": "52fe43d4c3a368484e000a5d", "cast_id": 3, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jane Bloomwood", "id": 3234, "credit_id": "52fe43d4c3a368484e000a61", "cast_id": 4, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "John Goodman", "character": "Graham Bloomwood", "id": 1230, "credit_id": "52fe43d4c3a368484e000a65", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "John Lithgow", "character": "Edgar West", "id": 12074, "credit_id": "52fe43d4c3a368484e000a6f", "cast_id": 7, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 5}, {"name": "Kristin Scott Thomas", "character": "Alette Naylor", "id": 5470, "credit_id": "52fe43d4c3a368484e000a73", "cast_id": 8, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 6}, {"name": "Fred Armisen", "character": "Ryan Koenig", "id": 61110, "credit_id": "530b415f9251411117004ea8", "cast_id": 10, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 7}, {"name": "Leslie Bibb", "character": "Alicia Billington", "id": 57451, "credit_id": "530b416e9251411105005118", "cast_id": 11, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 8}, {"name": "Lynn Redgrave", "character": "Drunken Lady at Ball", "id": 29791, "credit_id": "530b417d925141111a004aca", "cast_id": 12, "profile_path": "/jnXKuScyfE4zZ5AqBpmrVBMKeVz.jpg", "order": 9}, {"name": "Robert Stanton", "character": "Derek Smeath", "id": 53963, "credit_id": "530b418f9251415e71002151", "cast_id": 13, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 10}, {"name": "Julie Hagerty", "character": "Hayley", "id": 14415, "credit_id": "530b41a29251411108004d13", "cast_id": 14, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 11}, {"name": "Nick Cornish", "character": "Tarquin", "id": 149551, "credit_id": "530b41b29251411111004f35", "cast_id": 15, "profile_path": "/gxREPiEyAwfXRDTtIctkC79ZyYc.jpg", "order": 12}, {"name": "Wendie Malick", "character": "Miss Korch", "id": 61980, "credit_id": "530b41c0925141785e002d3c", "cast_id": 16, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 13}, {"name": "Clea Lewis", "character": "Miss Ptaszinski", "id": 186319, "credit_id": "530b41cc925141785e002d3e", "cast_id": 17, "profile_path": "/ypjVHbVYASpArT9NjU3B8q9aLyT.jpg", "order": 14}], "directors": [{"name": "P.J. Hogan", "department": "Directing", "job": "Director", "credit_id": "52fe43d4c3a368484e000a6b", "profile_path": "/1ioLJjWkfihb4SllJIh8K9ilyBO.jpg", "id": 3045}], "vote_average": 5.8, "runtime": 104}, "13761": {"poster_path": "/uBvj30A1jYZJJExflJlvc1sRJuf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When news of John Smith's death reaches America, Pocahontas is devastated. She sets off to London with John Rolfe, to meet with the King of England on a diplomatic mission: to create peace and respect between the two great lands. However, Governor Ratcliffe is still around; he wants to return to Jamestown and take over. He will stop at nothing to discredit the young princess.", "video": false, "id": 13761, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Pocahontas II: Journey to a New World", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qqeOxNmtAW7WXdbrmQftgluvve7.jpg", "poster_path": "/rf6COd7IMIdzEDXxjHu9VLbkdp2.jpg", "id": 136214, "name": "Pocahontas Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0143808", "adult": false, "backdrop_path": "/2AaMO7PqBdwuM6PTL8grI6oPAaq.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-08-04", "popularity": 0.899062911746896, "original_title": "Pocahontas II: Journey to a New World", "budget": 0, "cast": [{"name": "Irene Bedard", "character": "Pocahontas (voice)", "id": 65529, "credit_id": "52fe45959251416c7505b7c5", "cast_id": 1, "profile_path": "/eUX06X7ZpioIO7rHRsaAyNzL646.jpg", "order": 0}, {"name": "Jim Cummings", "character": "King James (voice)", "id": 12077, "credit_id": "52fe45959251416c7505b7c9", "cast_id": 2, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 1}, {"name": "Donal Gibson", "character": "John Smith (voice)", "id": 110315, "credit_id": "52fe45959251416c7505b7cd", "cast_id": 3, "profile_path": "/4MKTSwTpl1BaXD554MsrwK7uJqg.jpg", "order": 2}, {"name": "Finola Hughes", "character": "Additional voices", "id": 66881, "credit_id": "52fe45959251416c7505b7d1", "cast_id": 4, "profile_path": "/yOiawt1x8XAYYblM0WVdiGuqjiI.jpg", "order": 3}, {"name": "Linda Hunt", "character": "Grandmother Willow (voice)", "id": 12516, "credit_id": "52fe45959251416c7505b7d5", "cast_id": 5, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 4}, {"name": "Judy Kuhn", "character": "Pocahontas (singing voice)", "id": 110316, "credit_id": "52fe45959251416c7505b7d9", "cast_id": 6, "profile_path": "/lgdq078b2NZ8f9jeikfXJUhh86A.jpg", "order": 5}, {"name": "Russell Means", "character": "Powhatan (voice)", "id": 3203, "credit_id": "54fe19cfc3a36810980000ed", "cast_id": 11, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 6}, {"name": "David Ogden Stiers", "character": "Ratcliffe (voice)", "id": 28010, "credit_id": "54fe19e1c3a368109300012b", "cast_id": 12, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 7}, {"name": "Jean Stapleton", "character": "Mrs. Jenkins (voice)", "id": 28933, "credit_id": "54fe19f79251410e56000133", "cast_id": 13, "profile_path": "/yfmkSfHShvDPVyXBoJvi2QTBboH.jpg", "order": 8}, {"name": "Billy Zane", "character": "John Rolfe (voice)", "id": 1954, "credit_id": "54fe1a3c9251410e48000162", "cast_id": 14, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 9}, {"name": "Jeff Bennett", "character": "Additional voices", "id": 34982, "credit_id": "54fe1a53c3a36810a400011b", "cast_id": 15, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 10}, {"name": "Brad Garrett", "character": "Additional voices", "id": 18, "credit_id": "54fe1ae99251410e5400011f", "cast_id": 16, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 11}, {"name": "Rob Paulsen", "character": "Additional voices", "id": 43125, "credit_id": "54fe1b459251410e4e00016c", "cast_id": 17, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 12}, {"name": "Gregg Rainwater", "character": "Additional voices", "id": 165312, "credit_id": "54fe1b679251410e5a000134", "cast_id": 18, "profile_path": "/uOjhOCSNT89MHKC8OA88WxLWL7f.jpg", "order": 13}, {"name": "William Morgan Sheppard", "character": "Additional voices", "id": 938390, "credit_id": "54fe1b88c3a368109a000137", "cast_id": 19, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 14}, {"name": "Kath Soucie", "character": "Additional voices", "id": 60739, "credit_id": "54fe1b9dc3a36810a400013b", "cast_id": 20, "profile_path": "/urLkA155Yc19TKyeCUYGwzEt2PO.jpg", "order": 15}], "directors": [{"name": "Tom Ellery", "department": "Directing", "job": "Director", "credit_id": "52fe45959251416c7505b7df", "profile_path": null, "id": 1033844}, {"name": "Bradley Raymond", "department": "Directing", "job": "Director", "credit_id": "54fe1dc09251410e4e00018f", "profile_path": "/eFJSeWaJrduYGwRNtvQXNMKONA7.jpg", "id": 69416}], "vote_average": 5.3, "runtime": 72}, "61012": {"poster_path": "/kTAjRFmgESCgOhWVV6uuWSdf2MC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 52302796, "overview": "Heather Mason and her father have been on the run, always one step ahead of dangerous forces that she doesn't fully understand, Now on the eve of her 18th birthday, plagued by horrific nightmares and the disappearance of her father, Heather discovers she's not who she thinks she is. The revelation leads her deeper into a demonic world that threatens to trap her forever.", "video": false, "id": 61012, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Silent Hill: Revelation 3D", "tagline": "This Halloween prepare for a 3D ride through hell.", "vote_count": 134, "homepage": "", "belongs_to_collection": {"backdrop_path": "/yBpC88ucxLLjD7rXqfA4Irk92ka.jpg", "poster_path": "/4cJgWqtVfVxxzpqyKkUtClHY0VM.jpg", "id": 64748, "name": "Silent Hill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0938330", "adult": false, "backdrop_path": "/kO9papQXeuekzj3Fcc3ZcIqjfm5.jpg", "production_companies": [{"name": "Konami Corporation Ltd.", "id": 343}, {"name": "Davis-Films", "id": 342}], "release_date": "2012-10-10", "popularity": 0.54703894353209, "original_title": "Silent Hill: Revelation 3D", "budget": 20000000, "cast": [{"name": "Sean Bean", "character": "Harry Da Silva", "id": 48, "credit_id": "52fe4641c3a368484e086a01", "cast_id": 2, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Rose Da Silva", "id": 8329, "credit_id": "52fe4641c3a368484e086a05", "cast_id": 3, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Dahlia Gillespie", "id": 13549, "credit_id": "52fe4641c3a368484e086a09", "cast_id": 4, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "Adelaide Clemens", "character": "Heather / Alessa", "id": 205474, "credit_id": "52fe4641c3a368484e086a0d", "cast_id": 5, "profile_path": "/mgOHGacftimR5qBXVzaQoMyVoTX.jpg", "order": 3}, {"name": "Kit Harington", "character": "Vincent Carter", "id": 239019, "credit_id": "52fe4641c3a368484e086a23", "cast_id": 10, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 4}, {"name": "Malcolm McDowell", "character": "Leonard Wolf", "id": 56890, "credit_id": "52fe4641c3a368484e086a27", "cast_id": 11, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 5}, {"name": "Carrie-Anne Moss", "character": "Claudia Wolf", "id": 530, "credit_id": "52fe4641c3a368484e086a2b", "cast_id": 12, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 6}, {"name": "Martin Donovan", "character": "Douglas Cartland", "id": 42993, "credit_id": "52fe4641c3a368484e086a2f", "cast_id": 13, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 7}], "directors": [{"name": "Michael J. Bassett", "department": "Directing", "job": "Director", "credit_id": "52fe4641c3a368484e086a35", "profile_path": "/gBtbUmlRtLlA0yQV9Gt9G8bJW70.jpg", "id": 69593}], "vote_average": 5.2, "runtime": 94}, "241239": {"poster_path": "/7xvfhwi1RjF27z3TfaJFAsIaO3x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on a the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.", "video": false, "id": 241239, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Most Violent Year", "tagline": "The result is never in question. Just the path you take to get there.", "vote_count": 95, "homepage": "https://www.facebook.com/amostviolentyearfilm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2937898", "adult": false, "backdrop_path": "/cPg2OJ56J6p0da12Hez5u5iiFd6.jpg", "production_companies": [{"name": "FilmNation Entertainment", "id": 7493}, {"name": "Before the Door Pictures", "id": 14861}, {"name": "Washington Square Films", "id": 14862}], "release_date": "2014-12-31", "popularity": 4.21274538437233, "original_title": "A Most Violent Year", "budget": 0, "cast": [{"name": "Oscar Isaac", "character": "Abel Morales", "id": 25072, "credit_id": "52fe4eb4c3a36847f82a2bbd", "cast_id": 4, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 0}, {"name": "Jessica Chastain", "character": "Anna Morales", "id": 83002, "credit_id": "52fe4eb4c3a36847f82a2bb9", "cast_id": 3, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 1}, {"name": "Albert Brooks", "character": "Andrew Walsh", "id": 13, "credit_id": "52fe4eb4c3a36847f82a2bc1", "cast_id": 5, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 2}, {"name": "Elyes Gabel", "character": "Julian", "id": 78050, "credit_id": "545305d3c3a368147800034c", "cast_id": 11, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 3}, {"name": "David Oyelowo", "character": "Lawrence", "id": 35013, "credit_id": "52fe4eb4c3a36847f82a2bc5", "cast_id": 6, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 4}, {"name": "Alessandro Nivola", "character": "Peter Forente", "id": 4941, "credit_id": "545305b2c3a3681480000377", "cast_id": 10, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 5}, {"name": "Catalina Sandino Moreno", "character": "Luisa", "id": 5887, "credit_id": "52fe4eb4c3a36847f82a2bc9", "cast_id": 7, "profile_path": "/6TsJDZOmhBxfTKFp6ldC68OW65n.jpg", "order": 6}, {"name": "Peter Gerety", "character": "Bill O'Leary", "id": 1986, "credit_id": "54c304e792514124c8004752", "cast_id": 12, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 7}, {"name": "Christopher Abbot", "character": "Louis Servidio", "id": 933811, "credit_id": "54c304f29251412446004955", "cast_id": 13, "profile_path": "/adWjsOCMZ2Bry31aa0WoFe9FS0O.jpg", "order": 8}, {"name": "Ashley Williams", "character": "Lange", "id": 122888, "credit_id": "54c304fa92514124ed004a2c", "cast_id": 14, "profile_path": "/fq4hNuLVpsbrnzjPCtoFIcf3nXN.jpg", "order": 9}, {"name": "John Procaccino", "character": "Arthur Lewis", "id": 1370819, "credit_id": "54c30508c3a3687c4000efa6", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jerry Adler", "character": "Josef", "id": 24292, "credit_id": "54c3050f9251416e6000e1cf", "cast_id": 16, "profile_path": "/3oS2KYKYUxo40nNFv08asY9mNQA.jpg", "order": 11}, {"name": "Glenn Fleshler", "character": "Arnold Klein", "id": 1377670, "credit_id": "54c305189251416eae00d7a2", "cast_id": 17, "profile_path": "/9SOBzbIjsTVBLT3FolXDHDrNLIh.jpg", "order": 12}, {"name": "Annie Funke", "character": "Lorraine Lefkowitz", "id": 1417738, "credit_id": "54c305279251412489004b1c", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Matthew Maher", "character": "John Dominczyk", "id": 1232599, "credit_id": "54c305329251412432004b00", "cast_id": 19, "profile_path": "/22q6AafRKJ7EpuFpcp0A7mwMh9L.jpg", "order": 14}, {"name": "David Margulies", "character": "Saul Lefkowitz", "id": 8875, "credit_id": "54c3053f92514124c800475b", "cast_id": 20, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 15}, {"name": "Pico Alexander", "character": "Elias Morales", "id": 1417739, "credit_id": "54c3054fc3a3683338000561", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Elizabeth Marvel", "character": "Mrs. Rose", "id": 126713, "credit_id": "54c3056d92514124ed004a3b", "cast_id": 22, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 17}, {"name": "Daisy Tahan", "character": "Annie Morales", "id": 80002, "credit_id": "54c305799251416e6000e1df", "cast_id": 23, "profile_path": "/tcu4J8a6cpefCa55eZ9OWl8W4wG.jpg", "order": 18}, {"name": "Giselle Eisenberg", "character": "Catherine Morales", "id": 1306572, "credit_id": "54c305899251416eae00d7b4", "cast_id": 24, "profile_path": "/4V9TFTwVn0VUyr19kd7sbm64KcY.jpg", "order": 19}], "directors": [{"name": "J.C. Chandor ", "department": "Directing", "job": "Director", "credit_id": "538d3574c3a368714b003ed7", "profile_path": "/mvNMQ2c23j6mVG0jqplWRneHLmU.jpg", "id": 556172}], "vote_average": 6.4, "runtime": 125}, "16996": {"poster_path": "/p8NVpmOk63w0eOZpWi1d5EM5oYA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136267476, "overview": "On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a \"do-over.\" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.", "video": false, "id": 16996, "genres": [{"id": 35, "name": "Comedy"}], "title": "17 Again", "tagline": "Who says you're only young once?", "vote_count": 286, "homepage": "http://www.17againmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0974661", "adult": false, "backdrop_path": "/3XuoV7k3lT25xzfZofFMCjdm1v.jpg", "production_companies": [{"name": "Offspring Entertainment", "id": 2378}, {"name": "New Line Cinema", "id": 12}], "release_date": "2009-03-11", "popularity": 0.963532781299502, "original_title": "17 Again", "budget": 20000000, "cast": [{"name": "Zac Efron", "character": "Mike O'Donnell (Teen)", "id": 29222, "credit_id": "52fe46fc9251416c7508a373", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Scarlett O'Donnell (Adult)", "id": 41087, "credit_id": "52fe46fc9251416c7508a377", "cast_id": 2, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Matthew Perry", "character": "Mike O'Donnell (Adult)", "id": 14408, "credit_id": "52fe46fc9251416c7508a37b", "cast_id": 4, "profile_path": "/hkszOdJc14ULRdsy7JnRAvlrbCY.jpg", "order": 3}, {"name": "Tyler Steelman", "character": "Ned Gold (Teen)", "id": 42289, "credit_id": "52fe46fc9251416c7508a37f", "cast_id": 5, "profile_path": "/14jJRyOcBMklLALEbhmXetbbh4I.jpg", "order": 4}, {"name": "Allison Miller", "character": "Scarlett (Teen)", "id": 17270, "credit_id": "52fe46fc9251416c7508a383", "cast_id": 6, "profile_path": "/x1NcyAIFO6lN41mcxQglvMOeckz.jpg", "order": 5}, {"name": "Michelle Trachtenberg", "character": "Maggie O'Donnell", "id": 49961, "credit_id": "52fe46fc9251416c7508a387", "cast_id": 7, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 6}, {"name": "Sterling Knight", "character": "Alex O'Donnell", "id": 87741, "credit_id": "52fe46fc9251416c7508a397", "cast_id": 10, "profile_path": "/acnPrlXdX9QjqzfJOTcOWeWCezl.jpg", "order": 7}, {"name": "Thomas Lennon", "character": "Ned Gold", "id": 539, "credit_id": "52fe46fc9251416c7508a39b", "cast_id": 11, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 8}, {"name": "Kat Graham", "character": "Jamie", "id": 159962, "credit_id": "52fe46fc9251416c7508a39f", "cast_id": 12, "profile_path": "/jefXlCOQrVILFeA43RhmuW4Bpbi.jpg", "order": 9}, {"name": "Tiya Sircar", "character": "Samantha", "id": 109046, "credit_id": "52fe46fc9251416c7508a3a3", "cast_id": 13, "profile_path": "/uqAiFL1P344fWa4cqfQhKWNoUyO.jpg", "order": 10}, {"name": "Melissa Ordway", "character": "Lauren", "id": 114602, "credit_id": "52fe46fc9251416c7508a3a7", "cast_id": 14, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 11}, {"name": "Josie Loren", "character": "Nicole", "id": 146516, "credit_id": "52fe46fc9251416c7508a3ab", "cast_id": 15, "profile_path": "/5uNgiW4jcq0eINKg8P9LZHqLVv4.jpg", "order": 12}, {"name": "Jim Gaffigan", "character": "Coach Murphy", "id": 84407, "credit_id": "52fe46fc9251416c7508a3af", "cast_id": 16, "profile_path": "/qWgrDUSX77Ay6XMX9lpI3cXiXKY.jpg", "order": 13}, {"name": "Collette Wolfe", "character": "Wendy", "id": 86624, "credit_id": "52fe46fc9251416c7508a3b3", "cast_id": 17, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 14}], "directors": [{"name": "Burr Steers", "department": "Directing", "job": "Director", "credit_id": "52fe46fc9251416c7508a38d", "profile_path": "/rWztkNxfPclLILEjAhaHaOHSWs3.jpg", "id": 58552}], "vote_average": 5.8, "runtime": 102}, "11866": {"poster_path": "/qecorw3Y4UtHabV0pskpvbJylms.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21009180, "overview": "When an Amacor oil rig in the Gobi Desert of Mongolia proves unproductive, Captain Frank Towns and copilot \"A.J.\" are sent to shut the operation down. However, on their way to Beijing, a major dust storm forces them to ditch their C-119 Flying Boxcar in an uncharted area of the desert.", "video": false, "id": 11866, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Flight of the Phoenix", "tagline": "Out of the ashes, hope will rise.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377062", "adult": false, "backdrop_path": "/4B0HpfKb4e8VJngnzMzHON7OTfp.jpg", "production_companies": [{"name": "Aldrich Group", "id": 49478}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2004-12-17", "popularity": 0.496960367954823, "original_title": "Flight of the Phoenix", "budget": 45000000, "cast": [{"name": "Dennis Quaid", "character": "Frank Towns", "id": 6065, "credit_id": "52fe44969251416c7503a073", "cast_id": 12, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Tyrese Gibson", "character": "A.J.", "id": 8169, "credit_id": "52fe44969251416c7503a077", "cast_id": 13, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 1}, {"name": "Giovanni Ribisi", "character": "Elliott", "id": 1771, "credit_id": "52fe44969251416c7503a07b", "cast_id": 14, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 2}, {"name": "Miranda Otto", "character": "Kelly", "id": 502, "credit_id": "52fe44969251416c7503a07f", "cast_id": 15, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 3}, {"name": "Hugh Laurie", "character": "Ian", "id": 41419, "credit_id": "52fe44969251416c7503a083", "cast_id": 16, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 4}, {"name": "Jared Padalecki", "character": "John Davis", "id": 49623, "credit_id": "52fe44969251416c7503a087", "cast_id": 17, "profile_path": "/uQLe1lfEBul3locVlV8nXD6n8TI.jpg", "order": 5}, {"name": "Tony Curran", "character": "Alex Rodney", "id": 2220, "credit_id": "52fe44969251416c7503a08b", "cast_id": 18, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 6}, {"name": "Kirk Jones", "character": "Jeremy", "id": 86462, "credit_id": "52fe44969251416c7503a08f", "cast_id": 19, "profile_path": "/mI6dOAQ97sL7mygKR3msXJ0oNYz.jpg", "order": 7}, {"name": "Jacob Vargas", "character": "Sammi", "id": 16429, "credit_id": "52fe44969251416c7503a093", "cast_id": 20, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 8}, {"name": "Scott Michael Campbell", "character": "James Liddle", "id": 65728, "credit_id": "52fe44969251416c7503a097", "cast_id": 21, "profile_path": "/kMHZLJUwa8QCaLsBEAdEj8UtMGL.jpg", "order": 9}, {"name": "Kevork Malikyan", "character": "Rady", "id": 743, "credit_id": "52fe44969251416c7503a09b", "cast_id": 22, "profile_path": "/aq3elIciFeSrvbVyDNeoozQqLnm.jpg", "order": 10}, {"name": "Paul Ditchfield", "character": "Dr. Gerber", "id": 1047709, "credit_id": "52fe44969251416c7503a09f", "cast_id": 23, "profile_path": "/nLvlZ6GF6vthgDhiEfZF3WBwdJ3.jpg", "order": 11}, {"name": "Martin Hindy", "character": "Newman", "id": 1047710, "credit_id": "52fe44969251416c7503a0a3", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Bob Brown", "character": "Kyle", "id": 146352, "credit_id": "52fe44969251416c7503a0a7", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Anthony Wong", "character": "Lead Smuggler", "id": 930817, "credit_id": "52fe44969251416c7503a0ab", "cast_id": 26, "profile_path": "/qCXdSClvG2EaXFO3xAyAZdNjXYD.jpg", "order": 14}, {"name": "Sticky Fingaz", "character": "Jeremy (as Kirk Jones)", "id": 1277051, "credit_id": "5300c241c3a3683ff72e5f4c", "cast_id": 27, "profile_path": "/cL12381eRqrjaueN3sYDFrbvWEi.jpg", "order": 15}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe44969251416c7503a033", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.3, "runtime": 113}, "11873": {"poster_path": "/doU9OaWz2If1WV8S8iaBKt9vckC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52293982, "overview": "Fast Eddie Felson teaches a cocky but immensely talented prot\u00e9g\u00e9 the ropes of pool hustling, which in turn inspires him to make an unlikely comeback.", "video": false, "id": 11873, "genres": [{"id": 18, "name": "Drama"}], "title": "The Color of Money", "tagline": "The hustler isn't what he used to be, but he has the next best thing: a kid who is.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0090863", "adult": false, "backdrop_path": "/zJNwM7kMs7cev7glBUFq42DuRZ6.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners", "id": 514}], "release_date": "1986-10-07", "popularity": 0.544695780474826, "original_title": "The Color of Money", "budget": 0, "cast": [{"name": "Paul Newman", "character": "Fast Eddie Felson", "id": 3636, "credit_id": "52fe44979251416c7503a3cf", "cast_id": 7, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "Tom Cruise", "character": "Vincent Lauria", "id": 500, "credit_id": "52fe44979251416c7503a3d3", "cast_id": 8, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 1}, {"name": "Mary Elizabeth Mastrantonio", "character": "Carmen", "id": 1161, "credit_id": "52fe44979251416c7503a3d7", "cast_id": 9, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 2}, {"name": "Helen Shaver", "character": "Janelle", "id": 4160, "credit_id": "52fe44979251416c7503a3db", "cast_id": 10, "profile_path": "/a9ODBCPAkAolT4QWhuMUlFNAUIL.jpg", "order": 3}, {"name": "John Turturro", "character": "Julian", "id": 1241, "credit_id": "52fe44979251416c7503a3df", "cast_id": 11, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 4}, {"name": "Bill Cobbs", "character": "Orvis", "id": 8854, "credit_id": "52fe44979251416c7503a3e3", "cast_id": 12, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 5}, {"name": "Robert Agins", "character": "Earl at Chalkies", "id": 947670, "credit_id": "52fe44989251416c7503a3ff", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Alvin Anastasia", "character": "Kennedy", "id": 1265392, "credit_id": "52fe44989251416c7503a403", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Randall Arney", "character": "Child World Customer #1", "id": 1178314, "credit_id": "52fe44989251416c7503a407", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Elizabeth Bracco", "character": "Diane at Bar", "id": 54887, "credit_id": "52fe44989251416c7503a3fb", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Vito D'Ambrosio", "character": "Lou in Child World", "id": 1277, "credit_id": "52fe44989251416c7503a40b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Ron Dean", "character": "Guy in Crowd", "id": 57597, "credit_id": "52fe44989251416c7503a40f", "cast_id": 23, "profile_path": "/a910oOgeYR0IxutHf3GeyDNw3qY.jpg", "order": 11}, {"name": "Lisa Dodson", "character": "Child World Customer #2", "id": 1051092, "credit_id": "52fe44989251416c7503a413", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Donald A. Feeney", "character": "Referee #1", "id": 1265393, "credit_id": "52fe44989251416c7503a417", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Paul Geier", "character": "\"Two Brothers/Stranger\" Player", "id": 170941, "credit_id": "52fe44989251416c7503a41b", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Carey Goldenberg", "character": "Congratulating Spectator", "id": 1265394, "credit_id": "52fe44989251416c7503a41f", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Joe Guastaferro", "character": "Chuck the Bartender", "id": 1265395, "credit_id": "52fe44989251416c7503a423", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Paul Herman", "character": "Player in Casino Bar", "id": 58535, "credit_id": "52fe44989251416c7503a427", "cast_id": 29, "profile_path": "/vaK8wxkMeKJdZEdGUufyV0Ma24M.jpg", "order": 17}, {"name": "Mark Jarvis", "character": "Guy at Janelle's", "id": 1265396, "credit_id": "52fe44989251416c7503a42b", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Lawrence Linn", "character": "Congratulating Spectator", "id": 1265397, "credit_id": "52fe44989251416c7503a42f", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Keith McCready", "character": "Grady Seasons", "id": 1264489, "credit_id": "52fe44979251416c7503a3e7", "cast_id": 13, "profile_path": null, "order": 20}, {"name": "Jimmy Mataya", "character": "Julian's Friend in Green Room", "id": 1242130, "credit_id": "52fe44989251416c7503a433", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Grady Mathews", "character": "Dud", "id": 1265398, "credit_id": "52fe44989251416c7503a437", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Carol Messing", "character": "Casino Bar Band Singer/Julian's Flirt", "id": 1265399, "credit_id": "52fe44989251416c7503a43b", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Steve Mizerak", "character": "Duke", "id": 1264490, "credit_id": "52fe44979251416c7503a3eb", "cast_id": 14, "profile_path": null, "order": 24}, {"name": "Rick Mohr", "character": "Congratulating Spectator", "id": 1265400, "credit_id": "52fe44989251416c7503a43f", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Lloyd Moss", "character": "Narrator - Resorts International", "id": 1265401, "credit_id": "52fe44989251416c7503a443", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Michael Nash", "character": "Moselle's Opponent", "id": 1039590, "credit_id": "52fe44989251416c7503a447", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Mario Nieves", "character": "Third Latin Guy", "id": 992589, "credit_id": "52fe44989251416c7503a44b", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Miguel Nino", "character": "First Latin Guy", "id": 59399, "credit_id": "52fe44989251416c7503a44f", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Andy Nolfo", "character": "Referee #2", "id": 1265402, "credit_id": "52fe44989251416c7503a453", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Ernest Perry Jr.", "character": "Eye Doctor", "id": 1222016, "credit_id": "52fe44989251416c7503a457", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Jerry Piller", "character": "Tom", "id": 1265403, "credit_id": "52fe44989251416c7503a45b", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Iggy Pop", "character": "Skinny Player on the Road", "id": 13604, "credit_id": "52fe44989251416c7503a3ef", "cast_id": 15, "profile_path": "/orkeTSZYiHVKqeTntsD6e6VHuqc.jpg", "order": 33}, {"name": "Richard Price", "character": "Guy Who Calls Dud", "id": 2989, "credit_id": "52fe44989251416c7503a45f", "cast_id": 43, "profile_path": null, "order": 34}, {"name": "Juan Ram\u00edrez", "character": "Second Latin Guy", "id": 148306, "credit_id": "52fe44989251416c7503a463", "cast_id": 44, "profile_path": null, "order": 35}, {"name": "Alex Ross", "character": "Bartender Who Bets", "id": 1265404, "credit_id": "52fe44989251416c7503a467", "cast_id": 45, "profile_path": null, "order": 36}, {"name": "Peter Saxe", "character": "Casino Bar Band Member", "id": 1265405, "credit_id": "52fe44989251416c7503a46b", "cast_id": 46, "profile_path": null, "order": 37}, {"name": "Charles Scorsese", "character": "High Roller #1", "id": 1006721, "credit_id": "52fe44989251416c7503a46f", "cast_id": 47, "profile_path": null, "order": 38}, {"name": "Rodrick Selby", "character": "Congratulating Spectator", "id": 1265406, "credit_id": "52fe44989251416c7503a473", "cast_id": 48, "profile_path": null, "order": 39}, {"name": "Christina Sigel", "character": "Waitress", "id": 1265407, "credit_id": "52fe44989251416c7503a477", "cast_id": 49, "profile_path": null, "order": 40}, {"name": "Harold L. Simonsen", "character": "Chief Justice Tournament", "id": 1265408, "credit_id": "52fe44989251416c7503a47b", "cast_id": 50, "profile_path": null, "order": 41}, {"name": "Fred Squillo", "character": "High Roller #2", "id": 1265409, "credit_id": "52fe44989251416c7503a47f", "cast_id": 51, "profile_path": null, "order": 42}, {"name": "Brian Sunina", "character": "Casino Bar Band Member", "id": 1265410, "credit_id": "52fe44989251416c7503a483", "cast_id": 52, "profile_path": null, "order": 43}, {"name": "Wanda Christine", "character": "Casino Clerk", "id": 112045, "credit_id": "52fe44989251416c7503a487", "cast_id": 53, "profile_path": null, "order": 44}, {"name": "Forest Whitaker", "character": "Amos", "id": 2178, "credit_id": "52fe44989251416c7503a3f3", "cast_id": 16, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 45}, {"name": "Jim Widlowski", "character": "Casino Bar Band Member", "id": 1265411, "credit_id": "52fe44989251416c7503a48b", "cast_id": 54, "profile_path": null, "order": 46}, {"name": "Bruce A. Young", "character": "Moselle", "id": 4943, "credit_id": "52fe44989251416c7503a3f7", "cast_id": 17, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 47}, {"name": "Zo\u00eb", "character": "Dog Walkby", "id": 1265412, "credit_id": "52fe44989251416c7503a48f", "cast_id": 55, "profile_path": null, "order": 48}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe44979251416c7503a3ad", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.2, "runtime": 119}, "668": {"poster_path": "/sd1OYYEsfH8I6X3n8DrqpDgeXBA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81974493, "overview": "James Bond tracks archnemesis Ernst Blofeld to a mountaintop retreat where he's training an army of beautiful but lethal women. Along the way, Bond falls for Italian contessa Tracy Draco -- and marries her in order to get closer to Blofeld. Meanwhile, he locates Blofeld in the Alps and embarks on a classic ski chase.", "video": false, "id": 668, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "On Her Majesty's Secret Service", "tagline": "Far up! Far out! Far more! James Bond 007 is back!", "vote_count": 123, "homepage": "http://www.mgm.com/view/movie/1411/On-Her-Majesty%E2%80%99s-Secret-Service/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0064757", "adult": false, "backdrop_path": "/o71ywQSmQ1hNPSLKJuCMyDTrL7K.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1969-12-18", "popularity": 0.950510756495189, "original_title": "On Her Majesty's Secret Service", "budget": 7000000, "cast": [{"name": "George Lazenby", "character": "James Bond", "id": 10167, "credit_id": "52fe4267c3a36847f801bc3b", "cast_id": 1, "profile_path": "/rmrprW2rSKq49nPClGUfrJ2J0U4.jpg", "order": 0}, {"name": "Diana Rigg", "character": "Tracy Di Vicenzo", "id": 10168, "credit_id": "52fe4267c3a36847f801bc3f", "cast_id": 2, "profile_path": "/uE6T555B1BtlKqemVLVjM4XcUC5.jpg", "order": 1}, {"name": "Telly Savalas", "character": "Ernst Stavro Blofeld", "id": 10169, "credit_id": "52fe4267c3a36847f801bc43", "cast_id": 3, "profile_path": "/5HtqvadMMZZ0Zg0Y70gyrduZ8lU.jpg", "order": 2}, {"name": "Gabriele Ferzetti", "character": "Marc Ange Draco", "id": 4961, "credit_id": "52fe4267c3a36847f801bc47", "cast_id": 4, "profile_path": "/gpiJIBogUvPgKIwf65BXu37NDY1.jpg", "order": 3}, {"name": "Ilse Steppat", "character": "Irma Bunt", "id": 10170, "credit_id": "52fe4267c3a36847f801bc4b", "cast_id": 5, "profile_path": "/8RhUsZYeQR8R5ic5vwGqYc9VkL.jpg", "order": 4}, {"name": "Angela Scoular", "character": "Ruby Bartlett", "id": 10171, "credit_id": "52fe4267c3a36847f801bc4f", "cast_id": 6, "profile_path": "/1My9AjN4VoHUzsQrTnkhW60k1aH.jpg", "order": 5}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4267c3a36847f801bc53", "cast_id": 7, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 6}, {"name": "George Baker", "character": "Sir Hilary Bray", "id": 10173, "credit_id": "52fe4267c3a36847f801bc57", "cast_id": 9, "profile_path": "/ogT7DAofS8SqeaZlQQSmJcn2sN8.jpg", "order": 8}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4267c3a36847f801bc5b", "cast_id": 10, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 9}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4267c3a36847f801bc5f", "cast_id": 12, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 10}, {"name": "Catherine Schell", "character": "Nancy", "id": 18915, "credit_id": "52fe4267c3a36847f801bcb1", "cast_id": 28, "profile_path": "/y4czs0CUCf4z2XAQT3C1yzXWdPD.jpg", "order": 11}, {"name": "Bernard Horsfall", "character": "Campbell", "id": 10174, "credit_id": "5405a9a60e0a2658db00c9af", "cast_id": 29, "profile_path": "/gAWAqff7bQ9RVf34nFd8dmxJy6u.jpg", "order": 12}, {"name": "Virginia North", "character": "Olympe", "id": 40923, "credit_id": "5405a9c40e0a2658f100c940", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Geoffrey Cheshire", "character": "Toussaint", "id": 24335, "credit_id": "5405a9d80e0a2658f100c944", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Julie Ege", "character": "The Scandinavian Girl", "id": 95512, "credit_id": "5405aa250e0a2658db00c9c0", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Mona Chong", "character": "The Chinese Girl", "id": 189872, "credit_id": "5405aa340e0a2658de00cd3b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Joanna Lumley", "character": "The English Girl", "id": 34901, "credit_id": "5405aa4b0e0a2658db00c9c8", "cast_id": 34, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 17}, {"name": "Jenny Hanley", "character": "The Irish Girl", "id": 112465, "credit_id": "5405aa790e0a2658ee00c880", "cast_id": 35, "profile_path": "/7C3E6f9Tty2NySX5P4SYM1aQre5.jpg", "order": 18}], "directors": [{"name": "Peter R. Hunt", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bc65", "profile_path": null, "id": 9868}], "vote_average": 6.2, "runtime": 142}, "3683": {"poster_path": "/qmOMjEyxrZ91EM469GWPazAoPax.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65900249, "overview": "There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. \"Flags of Our Fathers\" is the story of three of the six surviving servicemen, John \"Doc\" Bradley (Ryan Phillippe), Pvt. Rene Gagnon (Jesse Bradford), and Pvt. Ira Hayes (Adam Beach), who fought in the battle to take Iwo Jima. \"Flags of Our Fathers\" is the American viewpoint of Eastwood's diptych on the battle of Iwo Jima, the other being \"Letters From Iwo Jima\", which tells the same story from the Japanse point of view.", "video": false, "id": 3683, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Flags of Our Fathers", "tagline": "They fight for their country but they die for their friends.", "vote_count": 139, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/7wFTAiIVVucj2PLvMwLZXojEJsA.jpg", "id": 261382, "name": "Clint Eastwood's Iwo Jima"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0418689", "adult": false, "backdrop_path": "/jeza4YlzwJXCALXNdmnjiR7A7sj.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Malpaso Productions", "id": 171}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2006-10-19", "popularity": 0.917966267458232, "original_title": "Flags of Our Fathers", "budget": 90000000, "cast": [{"name": "Ryan Phillippe", "character": "John 'Doc' Bradley", "id": 11864, "credit_id": "52fe43a2c3a36847f80637a7", "cast_id": 7, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 0}, {"name": "Adam Beach", "character": "Corporal Ira Hayes", "id": 33527, "credit_id": "52fe43a2c3a36847f80637ab", "cast_id": 8, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 1}, {"name": "Jesse Bradford", "character": "Corporal Rene Gagnon", "id": 17772, "credit_id": "52fe43a2c3a36847f80637af", "cast_id": 9, "profile_path": "/dOoAK7pcl1OtIcLUcs1LeFpJOJG.jpg", "order": 2}, {"name": "John Benjamin Hickey", "character": "Sergeant Keyes Beech", "id": 21179, "credit_id": "53d188250e0a265df000d4b2", "cast_id": 30, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 3}, {"name": "John Slattery", "character": "Bud Gerber", "id": 21134, "credit_id": "52fe43a2c3a36847f80637e3", "cast_id": 23, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 4}, {"name": "Barry Pepper", "character": "Sergeant Mike Strank", "id": 12834, "credit_id": "52fe43a2c3a36847f80637cf", "cast_id": 18, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 5}, {"name": "Jamie Bell", "character": "Private Ralph Ignatowski", "id": 478, "credit_id": "52fe43a2c3a36847f80637bb", "cast_id": 12, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 6}, {"name": "Paul Walker", "character": "Sergeant Hank Hansen", "id": 8167, "credit_id": "52fe43a2c3a36847f80637b3", "cast_id": 10, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 7}, {"name": "Robert Patrick", "character": "Colonel Chandler Johnson", "id": 418, "credit_id": "52fe43a2c3a36847f80637cb", "cast_id": 17, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 8}, {"name": "Neal McDonough", "character": "Captain Dave Severance", "id": 2203, "credit_id": "52fe43a2c3a36847f80637b7", "cast_id": 11, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 9}, {"name": "Melanie Lynskey", "character": "Pauline Harnois Gagnon", "id": 15091, "credit_id": "52fe43a2c3a36847f80637c7", "cast_id": 16, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 10}, {"name": "Chris Bauer", "character": "General Alexander Vandegrift", "id": 4445, "credit_id": "53d189c40e0a265e0100d17a", "cast_id": 31, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 11}, {"name": "Gordon Clapp", "character": "General Holland Smith", "id": 26008, "credit_id": "53d189fc0e0a265dfc00d35a", "cast_id": 32, "profile_path": "/lXj4dp11IHY8pAk4yUoK83989zA.jpg", "order": 12}, {"name": "Judith Ivey", "character": "Belle Block", "id": 19239, "credit_id": "53d18a2c0e0a265de700d62e", "cast_id": 33, "profile_path": "/AbliRxEkGlefUossjUxvzHF2s3b.jpg", "order": 13}, {"name": "Joseph Cross", "character": "Private Franklin Sousley", "id": 33528, "credit_id": "52fe43a2c3a36847f80637bf", "cast_id": 13, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 14}, {"name": "Benjamin Walker", "character": "Harlon Block", "id": 239996, "credit_id": "53d187ad0e0a265de700d608", "cast_id": 29, "profile_path": "/zd56RC1ifqvQyA90cjtvYD4sO3I.jpg", "order": 15}, {"name": "Alessandro Mastrobuono", "character": "Corporal Chuck Lindberg", "id": 33530, "credit_id": "52fe43a2c3a36847f80637d3", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Stark Sands", "character": "Gust", "id": 33532, "credit_id": "52fe43a2c3a36847f80637db", "cast_id": 21, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 17}, {"name": "Ann Dowd", "character": "Mrs. Strank", "id": 43366, "credit_id": "53d18a510e0a265dea00d5a7", "cast_id": 34, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 18}, {"name": "Beth Grant", "character": "Mother Gagnon", "id": 5151, "credit_id": "52fe43a2c3a36847f80637f1", "cast_id": 26, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 19}, {"name": "Brian Kimmet", "character": "Sergeant Boots Thomas", "id": 33531, "credit_id": "52fe43a2c3a36847f80637d7", "cast_id": 20, "profile_path": null, "order": 20}, {"name": "Jason Gray-Stanford", "character": "Lieutenant Harold Schrier", "id": 6166, "credit_id": "52fe43a2c3a36847f80637c3", "cast_id": 15, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 21}, {"name": "David Rasche", "character": "Senator", "id": 33533, "credit_id": "52fe43a2c3a36847f80637df", "cast_id": 22, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 22}, {"name": "James Newman", "character": "Local Politician", "id": 151124, "credit_id": "52fe43a2c3a36847f80637ed", "cast_id": 25, "profile_path": "/yIDXqkrb290f9xAd6yNU0g2QmYQ.jpg", "order": 23}, {"name": "Beth Tapper", "character": "Bar Car Beauty", "id": 1444527, "credit_id": "55105be392514164ac00347a", "cast_id": 85, "profile_path": "/xmzRv46eQapQ8cozN6c7Bg8Ucq4.jpg", "order": 24}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe43a2c3a36847f8063785", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.5, "runtime": 132}, "11878": {"poster_path": "/xeN0ZLHOIKuAiffuCgvERft3PkV.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "The incomparable Toshiro Mifune stars in Akira Kurosawa\u2019s visually stunning and darkly comic Yojimbo. To rid a terror-stricken village of corruption, wily masterless samurai Sanjuro turns a range war between two evil clans to his own advantage. Remade twice, by Sergio Leone and Walter Hill, this exhilarating genre-twister remains one of the most influential and entertaining films of all time.", "video": false, "id": 11878, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Yojimbo", "tagline": "", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0055630", "adult": false, "backdrop_path": "/7geWAyhcmjcMQWcZA5lrS7Le8cG.jpg", "production_companies": [{"name": "Toho Company", "id": 882}], "release_date": "1961-04-25", "popularity": 0.663747367486539, "original_title": "Y\u00f4jinb\u00f4", "budget": 0, "cast": [{"name": "Toshir\u014d Mifune", "character": "Sanjuro Kuwabatake / The Samurai", "id": 7450, "credit_id": "52fe44999251416c7503a5e7", "cast_id": 1, "profile_path": "/32nCFJneAfmZxYTQsaF5bcmCB7e.jpg", "order": 0}, {"name": "Tatsuya Nakadai", "character": "Unosuke, gunfighter", "id": 70131, "credit_id": "52fe44999251416c7503a5eb", "cast_id": 2, "profile_path": "/aVwl2VgqRFaFLWlcGx2fSweZ24d.jpg", "order": 1}, {"name": "Y\u00f4ko Tsukasa", "character": "Nui", "id": 70811, "credit_id": "52fe44999251416c7503a5ef", "cast_id": 3, "profile_path": "/nEbaJya28nfWSFaxnNjUun0t0ZR.jpg", "order": 2}, {"name": "Isuzu Yamada", "character": "Orin", "id": 33761, "credit_id": "52fe44999251416c7503a5f3", "cast_id": 4, "profile_path": "/ouUm7hoSCXU1yXQxhGMi4Yue3Bx.jpg", "order": 3}, {"name": "Daisuke Kat\u00f4", "character": "Inokichi", "id": 7457, "credit_id": "52fe44999251416c7503a62d", "cast_id": 14, "profile_path": "/rZGOg4xRkDTVMdGCzMhswioT4pU.jpg", "order": 4}, {"name": "Takashi Shimura", "character": "Tokuemon, sake brewer", "id": 7453, "credit_id": "52fe44999251416c7503a631", "cast_id": 15, "profile_path": "/k8Ff4Nq2peKfiUpd8IILrSBM0ts.jpg", "order": 5}, {"name": "Seizabur\u00f4 Kawazu", "character": "Seib\u00ea - brothel operator", "id": 83202, "credit_id": "52fe44999251416c7503a635", "cast_id": 16, "profile_path": "/lANtBuGWnd7KjXfQsNegbUjwNMb.jpg", "order": 6}, {"name": "Hiroshi Tachikawa", "character": "Yoichiro", "id": 33763, "credit_id": "52fe44999251416c7503a639", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Eijir\u00f4 T\u00f4no", "character": "Gonji, tavern keeper", "id": 106165, "credit_id": "52fe44999251416c7503a63d", "cast_id": 19, "profile_path": "/5wb61i8W4r9On3FkwUbaTkWqfdb.jpg", "order": 8}, {"name": "Kamatari Fujiwara", "character": "Tazaemon", "id": 96552, "credit_id": "52fe44999251416c7503a641", "cast_id": 20, "profile_path": "/detxCmyJe9W1WqGCCYJQC7U5Tgq.jpg", "order": 9}, {"name": "Ikio Sawamura", "character": "Hansuke", "id": 97204, "credit_id": "52fe44999251416c7503a645", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Atsushi Watanabe", "character": "The Cooper (Coffin-Maker)", "id": 134294, "credit_id": "52fe44999251416c7503a649", "cast_id": 22, "profile_path": "/iInI90DbSCtBj3x9rKD60Jhqx0a.jpg", "order": 11}, {"name": "Susumu Fujita", "character": "Homma, instructor who skips town", "id": 30907, "credit_id": "52fe44999251416c7503a64d", "cast_id": 23, "profile_path": "/eVlXPPjlHAzFBKxgPKML1Uciahx.jpg", "order": 12}, {"name": "Ky\u00fb Sazanka", "character": "Ushitora", "id": 213469, "credit_id": "52fe44999251416c7503a651", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Yosuke Natsuki", "character": "Kohei's Son", "id": 131201, "credit_id": "52fe44999251416c7503a655", "cast_id": 25, "profile_path": "/9ih93vBMTj6s4moLQhn6eyobXvT.jpg", "order": 14}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe44999251416c7503a5f9", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 7.9, "runtime": 110}, "233063": {"poster_path": "/9GSGg4McYID6Ld0OMwimLr1Zx4J.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "A comedy that follows an ex-con who lands a position at a school that sits over the spot where money from one of his earlier robberies was stashed.", "video": false, "id": 233063, "genres": [{"id": 35, "name": "Comedy"}], "title": "F*ck You, Goethe", "tagline": "", "vote_count": 133, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2987732", "adult": false, "backdrop_path": "/AtCGEku6kLUFmZ6JWkvXphQBQXx.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Rat Pack Filmproduktion", "id": 5754}], "release_date": "2013-11-07", "popularity": 0.576279474788976, "original_title": "Fack ju G\u00f6hte", "budget": 0, "cast": [{"name": "Elyas M\u2019Barek", "character": "Zeki M\u00fcller", "id": 25409, "credit_id": "52fe4e11c3a36847f827c07d", "cast_id": 3, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 0}, {"name": "Karoline Herfurth", "character": "Lisi Schnabelstedt", "id": 17067, "credit_id": "52fe4e11c3a36847f827c081", "cast_id": 4, "profile_path": "/8HVqhIaLQA3MOTO88Ncn6VOCzdp.jpg", "order": 1}, {"name": "Katja Riemann", "character": "Direktorin Gudrun", "id": 1874, "credit_id": "52fe4e11c3a36847f827c085", "cast_id": 5, "profile_path": "/sPvCj1IxlhjI61BVlIuwsXuXEl7.jpg", "order": 2}, {"name": "Jana Pallaske", "character": "Charlie", "id": 20259, "credit_id": "52fe4e11c3a36847f827c089", "cast_id": 6, "profile_path": "/mzeBCXN3vcU6gIc8p7otO85Cbo6.jpg", "order": 3}, {"name": "Alwara H\u00f6fels", "character": "Caro", "id": 47785, "credit_id": "52fe4e11c3a36847f827c08d", "cast_id": 7, "profile_path": "/pnb77qJKydpmJFpD4pLEm3YgPHq.jpg", "order": 4}, {"name": "Jonas Holdenrieder", "character": "Peter Paker", "id": 1268429, "credit_id": "52fe4e11c3a36847f827c091", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Uschi Glas", "character": "Frau Leimbach-Knorrs", "id": 33709, "credit_id": "52fe4e11c3a36847f827c095", "cast_id": 9, "profile_path": "/v0xiN0Vr8EHF2G0WnaZSI9O0XIO.jpg", "order": 6}, {"name": "Jella Haase", "character": "Chantal", "id": 912632, "credit_id": "52fe4e11c3a36847f827c099", "cast_id": 10, "profile_path": "/cUwroAb4WwOKIalxP3aQvOgcmdQ.jpg", "order": 7}, {"name": "Max von der Groeben", "character": "Daniel (Danger)", "id": 1272059, "credit_id": "52fe4e11c3a36847f827c0af", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Margarita Broich", "character": "Frau Sieberts / Jugenamtfrau", "id": 79449, "credit_id": "52fe4e11c3a36847f827c0b3", "cast_id": 16, "profile_path": "/pSEClpsqZNQ4E8c3Phs7RPM0PGA.jpg", "order": 9}, {"name": "Bernd Stegemann", "character": "Mr. Gundlach", "id": 16720, "credit_id": "52fe4e11c3a36847f827c0b7", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Farid Bang", "character": "Paco", "id": 1284051, "credit_id": "52fe4e11c3a36847f827c0bb", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Stefan G\u00f6dde", "character": "Veranstalter", "id": 1284052, "credit_id": "52fe4e11c3a36847f827c0bf", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Christian N\u00e4the", "character": "Biologie-Lehrer", "id": 36325, "credit_id": "53a60e080e0a261442002241", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "Bora Da\u011ftekin", "department": "Directing", "job": "Director", "credit_id": "52fe4e11c3a36847f827c0c5", "profile_path": "/uzlEIBPfxZWE1NWZirbjwRYE6xN.jpg", "id": 1238965}], "vote_average": 7.7, "runtime": 119}, "11884": {"poster_path": "/5uGg2npj168w8NIXUj35fpdHQX4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28733290, "overview": "A video-gaming boy, seemingly doomed to stay at his trailer park home all his life, finds himself recruited as a gunner for an alien defense force.", "video": false, "id": 11884, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "The Last Starfighter", "tagline": "He didn't find his dreams... his dreams found him.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087597", "adult": false, "backdrop_path": "/41mTvUFC5qtrAI12kQbgxw3Zig.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Lorimar Film Entertainment", "id": 1176}], "release_date": "1984-07-13", "popularity": 0.555673225322838, "original_title": "The Last Starfighter", "budget": 15000000, "cast": [{"name": "Lance Guest", "character": "Alex Rogan", "id": 16213, "credit_id": "52fe449a9251416c7503a87b", "cast_id": 1, "profile_path": "/7bzggMGfzqYNMiObpAJ8IU8LZ7Q.jpg", "order": 0}, {"name": "Dan O'Herlihy", "character": "Grig", "id": 6836, "credit_id": "52fe449a9251416c7503a87f", "cast_id": 2, "profile_path": "/amXueiRr8cy4sTjb7h4W5GrKe14.jpg", "order": 1}, {"name": "Catherine Mary Stewart", "character": "Maggie Gordon", "id": 55266, "credit_id": "52fe449a9251416c7503a883", "cast_id": 3, "profile_path": "/2d3DEQluzVUPg9KJsn2vymIRlOW.jpg", "order": 2}, {"name": "Barbara Bosson", "character": "Jane Rogan", "id": 70834, "credit_id": "52fe449a9251416c7503a887", "cast_id": 4, "profile_path": "/wQpFNiZZeCgtOpadeqmEW8lkFjL.jpg", "order": 3}, {"name": "Norman Snow", "character": "Xur", "id": 129088, "credit_id": "52fe449a9251416c7503a8b5", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Robert Preston", "character": "Centauri", "id": 40202, "credit_id": "52fe449a9251416c7503a8b9", "cast_id": 13, "profile_path": "/jYeXchYunCtIN3wd6VbNnoMWaqD.jpg", "order": 5}], "directors": [{"name": "Nick Castle", "department": "Directing", "job": "Director", "credit_id": "52fe449a9251416c7503a88d", "profile_path": "/ecUHW93fTzJLCEZcpfvfjgNMi1o.jpg", "id": 14692}], "vote_average": 6.4, "runtime": 101}, "11886": {"poster_path": "/78yFcKivWbLwlPcUOPj2A75k4Ii.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32056467, "overview": "With King Richard off to the Crusades, Prince John and his slithering minion, Sir Hiss, set about taxing Nottingham's citizens with support from the corrupt sheriff - and staunch opposition by the wily Robin Hood and his band of merry men.", "video": false, "id": 11886, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Robin Hood", "tagline": "Meet Robin Hood and his MERRY MENagerie!", "vote_count": 352, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070608", "adult": false, "backdrop_path": "/Ll0Ul2ZsCLqezMPNCG9fGsCZOd.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1973-11-08", "popularity": 1.50719797556001, "original_title": "Robin Hood", "budget": 15000000, "cast": [{"name": "Brian Bedford", "character": "Robin Hood (voice)", "id": 70843, "credit_id": "52fe449a9251416c7503a91d", "cast_id": 9, "profile_path": "/sihqrrqI4bQT3fjnBmrLyPe12wl.jpg", "order": 0}, {"name": "Phil Harris", "character": "Little John (voice)", "id": 57329, "credit_id": "52fe449a9251416c7503a921", "cast_id": 11, "profile_path": "/cNfUGziMuqXlrw5i3w1VqugwIt5.jpg", "order": 1}, {"name": "Peter Ustinov", "character": "Prince John (voice)", "id": 14501, "credit_id": "52fe449a9251416c7503a937", "cast_id": 16, "profile_path": "/8Lv4g3ZPVSM1ckKk15OnryX8sL7.jpg", "order": 2}, {"name": "Pat Buttram", "character": "The sheriff Of Nottingham (voice)", "id": 21460, "credit_id": "52fe449a9251416c7503a93b", "cast_id": 17, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 3}, {"name": "Ken Curtis", "character": "Nutsy (voice)", "id": 30554, "credit_id": "52fe449a9251416c7503a93f", "cast_id": 18, "profile_path": "/rY1vWoI4hANlZ9wBT7RL4lMqqCB.jpg", "order": 4}, {"name": "George Lindsey", "character": "Trigger (voice)", "id": 141693, "credit_id": "52fe449a9251416c7503a943", "cast_id": 19, "profile_path": "/dvlW5KWKZuub9nqkwwePA5Tf1yX.jpg", "order": 5}, {"name": "Barbara Luddy", "character": "Mother Rabbit / Little Sister Mouse (voice)", "id": 64871, "credit_id": "52fe449a9251416c7503a947", "cast_id": 20, "profile_path": "/cK7NjpqJmjaFTT52vwAq9bYH2VA.jpg", "order": 6}, {"name": "Monica Evans", "character": "Maid Marian (voice)", "id": 143770, "credit_id": "52fe449a9251416c7503a94b", "cast_id": 21, "profile_path": "/hp8qc9ZB0U3hehc6mseyHVd8j0p.jpg", "order": 7}, {"name": "Carole Shelley", "character": "Lady Klucky (voice)", "id": 58770, "credit_id": "52fe449a9251416c7503a94f", "cast_id": 22, "profile_path": "/p9XDqB8LOG09DOwGQ3EXYr78KMt.jpg", "order": 8}, {"name": "Andy Devine", "character": "Friar Tuck (voice)", "id": 14966, "credit_id": "52fe449a9251416c7503a953", "cast_id": 23, "profile_path": "/w4tLltNhtOqQXJzju4TzUJRiesg.jpg", "order": 9}, {"name": "Terry-Thomas", "character": "Sir Hiss (voice)", "id": 29427, "credit_id": "52fe449a9251416c7503a957", "cast_id": 24, "profile_path": "/tdsN3NUsBNEPtHkWX5BskfG7yCi.jpg", "order": 10}, {"name": "Billy Whitaker", "character": "Skippy - a Rabbit (voice)", "id": 143800, "credit_id": "52fe449a9251416c7503a95b", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "John Fiedler", "character": "Father Sexton (voice)", "id": 5247, "credit_id": "52fe449a9251416c7503a963", "cast_id": 29, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 13}, {"name": "Sean Marshall", "character": "Toby a Turtle (voice)", "id": 68130, "credit_id": "52fe449a9251416c7503a967", "cast_id": 31, "profile_path": "/k3wGDcyJ6mEBrEtIH4aGpSlmK4z.jpg", "order": 14}, {"name": "Roger Miller", "character": "Allan-a-Dale - The Rooster (voice)", "id": 1226099, "credit_id": "548de84292514122ea004d76", "cast_id": 33, "profile_path": null, "order": 16}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe449a9251416c7503a8fb", "profile_path": null, "id": 57314}], "vote_average": 6.6, "runtime": 83}, "11887": {"poster_path": "/ewZpH2QIfPQ0VIn9lPf7MHbLbl4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90, "overview": "It's almost graduation day for high school seniors Troy, Gabriella, Sharpay, Chad, Ryan and Taylor \u2015 and the thought of heading off in separate directions after leaving East High has these Wildcats thinking they need to do something they'll remember forever. Together with the rest of the Wildcats, they stage a spring musical reflecting their hopes and fears about the future and their unforgettable experiences growing up together. But with graduation approaching and college plans in question, what will become of the dreams, romances, and friendships of East High's senior Wildcats?", "video": false, "id": 11887, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "High School Musical 3: Senior Year", "tagline": "", "vote_count": 147, "homepage": "http://disney.go.com/disneypictures/highschoolmusical3", "belongs_to_collection": {"backdrop_path": "/t1mwGPJi3NkwMeyeUHr9zlQhlTo.jpg", "poster_path": "/dXIgM9sEWIkUfRH8GZUKHv1t5n.jpg", "id": 87253, "name": "High School Musical Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0962726", "adult": false, "backdrop_path": "/pOKpILmjJ4m3ljGFeC3wkWPpZr4.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2008-10-22", "popularity": 0.966340370707992, "original_title": "High School Musical 3: Senior Year", "budget": 11, "cast": [{"name": "Zac Efron", "character": "Troy Bolton", "id": 29222, "credit_id": "52fe449a9251416c7503a9a1", "cast_id": 2, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Gabriella Montez", "id": 67599, "credit_id": "52fe449a9251416c7503a9a5", "cast_id": 3, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "Ashley Tisdale", "character": "Sharpay Evans", "id": 67600, "credit_id": "52fe449a9251416c7503a9a9", "cast_id": 4, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 2}, {"name": "Lucas Grabeel", "character": "Ryan Evans", "id": 67601, "credit_id": "52fe449a9251416c7503a9ad", "cast_id": 5, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 3}, {"name": "Corbin Bleu", "character": "Chad Danforth", "id": 67602, "credit_id": "52fe449a9251416c7503a9cf", "cast_id": 11, "profile_path": "/1fTGgTuAa2EdvVJEj8Vu5PGifAn.jpg", "order": 4}, {"name": "Monique Coleman", "character": "Taylor McKessie", "id": 180279, "credit_id": "544994420e0a26748600258f", "cast_id": 22, "profile_path": "/phGefy73dHXXisjZi0Egb0zUS3h.jpg", "order": 5}, {"name": "Justin Martin", "character": "Donny Dion", "id": 208956, "credit_id": "52fe449a9251416c7503a9d3", "cast_id": 12, "profile_path": "/AnBe95UyEgPvC1xU159PlWy0nrH.jpg", "order": 6}, {"name": "Chris Warren, Jr.", "character": "Zeke Baylor", "id": 77196, "credit_id": "52fe449a9251416c7503a9e5", "cast_id": 16, "profile_path": "/zpNs0erSBOPg1PIpIz2uZz4gWC3.jpg", "order": 7}, {"name": "Olesya Rulin", "character": "Kelsi Nielson", "id": 84952, "credit_id": "52fe449a9251416c7503a9e9", "cast_id": 17, "profile_path": "/oYjaVUqj9hLwJnzjTFxmZ4IaFuw.jpg", "order": 8}, {"name": "Matt Prokop", "character": "Jimmie Zara", "id": 113868, "credit_id": "52fe449a9251416c7503a9dd", "cast_id": 14, "profile_path": "/f4HI0HOOPC86AicOuO2vAkowoGx.jpg", "order": 9}, {"name": "Ryne Sanborn", "character": "Jason Cross", "id": 200823, "credit_id": "52fe449a9251416c7503a9ed", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Kaycee Stroh", "character": "Martha Cox", "id": 964908, "credit_id": "52fe449a9251416c7503a9f1", "cast_id": 19, "profile_path": "/6uQwj864XHucH0HWNVc9CtbpKGK.jpg", "order": 11}, {"name": "Alyson Reed", "character": "Ms. Darbus", "id": 19262, "credit_id": "52fe449b9251416c7503a9f5", "cast_id": 20, "profile_path": "/pXrBmE29Si22qtTsRkLiUyTcIEB.jpg", "order": 12}, {"name": "Jemma McKenzie-Brown", "character": "Tiara Gold", "id": 964823, "credit_id": "52fe449b9251416c7503a9f9", "cast_id": 21, "profile_path": "/kXry6Dul7aHCOcVkECjJAqVXUC1.jpg", "order": 13}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe449a9251416c7503a99d", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 5.8, "runtime": 116}, "7443": {"poster_path": "/z0MafJgUnVyVbczicYMkPKKHkBi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 224834564, "overview": "Having been hopelessly repressed and facing eventual certain death at the British chicken farm where they are held, Rocky the american rooster and Ginger the chicken decide to rebel against the evil Mr. and Mrs. Tweedy, the farm's owners. Rocky and Ginger lead their fellow chickens in a great escape from the murderous farmers and their farm of doom.", "video": false, "id": 7443, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Chicken Run", "tagline": "This ain't no chick flick. It's poultry in motion.", "vote_count": 283, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120630", "adult": false, "backdrop_path": "/oQ3xpOJhawe73ro7q6yKYDicZUM.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Aardman Animations", "id": 297}, {"name": "Path\u00e9", "id": 7981}], "release_date": "2000-06-30", "popularity": 1.32833474841413, "original_title": "Chicken Run", "budget": 45000000, "cast": [{"name": "Mel Gibson", "character": "Rocky", "id": 2461, "credit_id": "52fe447cc3a36847f80990cd", "cast_id": 3, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Miranda Richardson", "character": "Mrs. Tweedy", "id": 8436, "credit_id": "52fe447cc3a36847f80990d1", "cast_id": 5, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 1}, {"name": "Timothy Spall", "character": "Nick", "id": 9191, "credit_id": "52fe447cc3a36847f80990d5", "cast_id": 7, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 2}, {"name": "Imelda Staunton", "character": "Bunty", "id": 11356, "credit_id": "52fe447cc3a36847f80990d9", "cast_id": 8, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 3}, {"name": "Jane Horrocks", "character": "Babs", "id": 34902, "credit_id": "52fe447dc3a36847f8099113", "cast_id": 18, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 4}, {"name": "Phil Daniels", "character": "Fetcher", "id": 65301, "credit_id": "52fe447dc3a36847f8099123", "cast_id": 21, "profile_path": "/gXEx7NsCBtmrqCrVWHlNP0xQJsY.jpg", "order": 5}, {"name": "Lynn Ferguson", "character": "Mac", "id": 1074137, "credit_id": "52fe447dc3a36847f8099127", "cast_id": 22, "profile_path": "/ppipSgVJC8ksCGRsLr63ORmODtB.jpg", "order": 6}, {"name": "Tony Haygarth", "character": "Mr. Tweedy", "id": 20241, "credit_id": "52fe447dc3a36847f809912b", "cast_id": 23, "profile_path": "/4CGR3JgdJCndVQ9vhH4rQhudczG.jpg", "order": 7}, {"name": "Julia Sawalha", "character": "Ginger", "id": 53328, "credit_id": "52fe447dc3a36847f809912f", "cast_id": 24, "profile_path": "/jGFKZh1H3zH90509JVN08WiTZYo.jpg", "order": 8}, {"name": "Benjamin Whitrow", "character": "Fowler", "id": 84927, "credit_id": "52fe447dc3a36847f8099133", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "John Sharian", "character": "Circus Man", "id": 36900, "credit_id": "52fe447dc3a36847f8099137", "cast_id": 26, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 10}, {"name": "Jo Allen", "character": "Additional Chicken", "id": 226586, "credit_id": "52fe447dc3a36847f809913b", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Lisa Kay", "character": "Additional Chicken", "id": 933684, "credit_id": "52fe447dc3a36847f809913f", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Laura Strachan", "character": "Additional Chicken", "id": 1074138, "credit_id": "52fe447dc3a36847f8099143", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Peter Lord", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f80990c3", "profile_path": "/fBaZLXX3rBwhSXvtplQEtvW7VS3.jpg", "id": 53304}, {"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f80990c9", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 6.1, "runtime": 84}, "11892": {"poster_path": "/zL2aUMe2haBikOZSxmndSDD4qi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56714147, "overview": "Tenacious homicide detective Cassie Mayweather and her still-green partner are working a murder case, attempting to profile two malevolently brilliant young men: cold, calculating killers whose dark secrets might explain their crimes.", "video": false, "id": 11892, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Murder by Numbers", "tagline": "The only flaw in their plan was her.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264935", "adult": false, "backdrop_path": "/5UuGA4jtgpX8Qv2nNyxL5VL4I5O.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Schroeder Hoffman Productions", "id": 23382}], "release_date": "2002-04-19", "popularity": 0.516220408710352, "original_title": "Murder by Numbers", "budget": 50000000, "cast": [{"name": "Sandra Bullock", "character": "Cassie Mayweather", "id": 18277, "credit_id": "52fe449b9251416c7503abb1", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Ben Chaplin", "character": "Sam Kennedy", "id": 21343, "credit_id": "52fe449b9251416c7503abb5", "cast_id": 2, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 1}, {"name": "Ryan Gosling", "character": "Richard Haywood", "id": 30614, "credit_id": "52fe449b9251416c7503abb9", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 2}, {"name": "Michael Pitt", "character": "Justin Pendleton", "id": 10692, "credit_id": "52fe449b9251416c7503abbd", "cast_id": 4, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 3}, {"name": "Agnes Bruckner", "character": "Lisa Mills", "id": 51536, "credit_id": "52fe449b9251416c7503abe5", "cast_id": 11, "profile_path": "/jDrPSJne4BHWcCa3U8Y4uhoNUC6.jpg", "order": 4}, {"name": "Chris Penn", "character": "Ray Feathers", "id": 2969, "credit_id": "52fe449b9251416c7503abe9", "cast_id": 12, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 5}, {"name": "R. D. Call", "character": "Captain Rod Cody", "id": 49832, "credit_id": "5373b2eac3a368150200166f", "cast_id": 13, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 6}, {"name": "Tom Verica", "character": "Asst. D.A. Al Swanson", "id": 155423, "credit_id": "5373b2fdc3a3681502001672", "cast_id": 14, "profile_path": "/eyOTcWS4vAbciBRbOoZcmkw2TRH.jpg", "order": 7}, {"name": "Janni Brenn", "character": "Ms. Elder", "id": 77014, "credit_id": "5373b311c3a368150f001651", "cast_id": 15, "profile_path": "/td13vv2EHu3yPcVZWVExT4FwE0k.jpg", "order": 8}, {"name": "John Vickery", "character": "Restaurant Manager", "id": 1212284, "credit_id": "5373b32ac3a3681509001746", "cast_id": 16, "profile_path": "/1g2bk9zL1nu9bo3HLz9dGV1zL90.jpg", "order": 9}, {"name": "Michael Canavan", "character": "Mr. Chechi", "id": 180078, "credit_id": "5373b341c3a368153900169d", "cast_id": 17, "profile_path": "/dTuVqsWwbDbi1Y8FHJsu6fzI9N4.jpg", "order": 10}, {"name": "Krista Carpenter", "character": "Olivia Lake, the Victim", "id": 1319508, "credit_id": "5373b355c3a3681528001661", "cast_id": 18, "profile_path": "/h0PbBnPTIod9OIOvOtg6AJ4qjS8.jpg", "order": 11}, {"name": "Neal Matarazzo", "character": "Male Officer in Flashback", "id": 155456, "credit_id": "5373b368c3a3681518001791", "cast_id": 19, "profile_path": "/e6T4OfKS3iTLQ6T05v6fhQmrQrR.jpg", "order": 12}, {"name": "Adilah Barnes", "character": "Lab Technician", "id": 154114, "credit_id": "5373b37bc3a368150f001657", "cast_id": 20, "profile_path": "/uwBDR07eJU1aanOKV9fXgv6Pu6O.jpg", "order": 13}, {"name": "Jim Jansen", "character": "Lawyer", "id": 155031, "credit_id": "5373b38fc3a368150900174a", "cast_id": 21, "profile_path": "/suelpHbVmIFV15gW8C3Td45UG02.jpg", "order": 14}], "directors": [{"name": "Barbet Schroeder", "department": "Directing", "job": "Director", "credit_id": "52fe449b9251416c7503abc3", "profile_path": "/zgsgO9eVfSi9BOXbjvjyVsWAE5J.jpg", "id": 23393}], "vote_average": 6.1, "runtime": 120}, "617": {"poster_path": "/dI9iYo1cL81yzJkBVyNGipjSvy0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67200000, "overview": "When teen-socialite Kelly Van Ryan (Richards) and troubled bad girl Suzie Toller (Campbell) accuse guidance counselor Sam Lombardo (Dillon) of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop (Bacon) suspects conspiracy, but nothing is what it seems...", "video": false, "id": 617, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Wild Things", "tagline": "They're dying to play with you.", "vote_count": 94, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uE47SwTt7uHyVwpMzcCQ92Q7FsQ.jpg", "poster_path": "/1sM0cvLaVPHAoAHvC3QERk6g4mB.jpg", "id": 33059, "name": "Wild Things Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120890", "adult": false, "backdrop_path": "/z4Ky75Wjt7to5xfk1mgc7DfQEgr.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mandalay Entertainment", "id": 1236}], "release_date": "1998-03-20", "popularity": 1.37781667985602, "original_title": "Wild Things", "budget": 20000000, "cast": [{"name": "Matt Dillon", "character": "Sam Lombardo", "id": 2876, "credit_id": "52fe425ec3a36847f8018f55", "cast_id": 9, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 0}, {"name": "Kevin Bacon", "character": "Sergeant Ray Duquette", "id": 4724, "credit_id": "52fe425ec3a36847f8018f59", "cast_id": 10, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 1}, {"name": "Denise Richards", "character": "Kelly Lanier Van Ryan", "id": 9205, "credit_id": "52fe425ec3a36847f8018f5d", "cast_id": 11, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 2}, {"name": "Neve Campbell", "character": "Suzie Marie Toller", "id": 9206, "credit_id": "52fe425ec3a36847f8018f61", "cast_id": 12, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 3}, {"name": "Theresa Russell", "character": "Sandra Van Ryan", "id": 9207, "credit_id": "52fe425ec3a36847f8018f65", "cast_id": 13, "profile_path": "/vn2h90MB16yyRKslCBlPd2MEltG.jpg", "order": 4}, {"name": "Bill Murray", "character": "Kenneth Bowden", "id": 1532, "credit_id": "52fe425ec3a36847f8018f69", "cast_id": 14, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 5}, {"name": "Robert Wagner", "character": "Tom Baxter", "id": 9208, "credit_id": "52fe425ec3a36847f8018f6d", "cast_id": 15, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 6}, {"name": "Daphne Rubin-Vega", "character": "Detective Gloria Perez", "id": 9209, "credit_id": "52fe425ec3a36847f8018f71", "cast_id": 16, "profile_path": "/hvL230sw44ILv5hHLbergot8OVm.jpg", "order": 7}, {"name": "Jeff Perry", "character": "District Attorney Bryce Hunter", "id": 9210, "credit_id": "52fe425ec3a36847f8018f75", "cast_id": 17, "profile_path": "/pFWjDrYvLQaBgoOFJA0UzZqfwZx.jpg", "order": 8}, {"name": "Eduardo Y\u00e1\u00f1ez", "character": "Frankie Condo", "id": 9211, "credit_id": "52fe425ec3a36847f8018f79", "cast_id": 18, "profile_path": "/lapi1fkl8oPZ7TNbQ5wp1bbTblx.jpg", "order": 9}, {"name": "Jennifer Taylor", "character": "Barbara Baxter", "id": 9212, "credit_id": "52fe425ec3a36847f8018f7d", "cast_id": 19, "profile_path": "/4Vmgzln48vwgNtOp46DazEpCUHM.jpg", "order": 10}, {"name": "Cory Pendergast", "character": "Jimmy Leach", "id": 953997, "credit_id": "52fe425ec3a36847f8018f81", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Marc Macaulay", "character": "Walter", "id": 6908, "credit_id": "52fe425ec3a36847f8018f85", "cast_id": 21, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 12}, {"name": "Toi Svane Stepp", "character": "Nicole", "id": 945237, "credit_id": "52fe425ec3a36847f8018f89", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Dennis Neal", "character": "Art Maddox", "id": 93679, "credit_id": "52fe425ec3a36847f8018f8d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Diane Adams", "character": "School Secretary", "id": 210794, "credit_id": "52fe425ec3a36847f8018f91", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Paulo Benedeti", "character": "Kirk", "id": 1089404, "credit_id": "52fe425ec3a36847f8018f95", "cast_id": 25, "profile_path": "/x6xUsOXPumjQ6MkCgOeLIpMhCKg.jpg", "order": 16}, {"name": "Victoria Bass", "character": "Judge", "id": 160330, "credit_id": "52fe425ec3a36847f8018f99", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Ted Bartsch", "character": "Bailiff", "id": 191003, "credit_id": "52fe425ec3a36847f8018f9d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Leonor Anthony", "character": "Ken's Secretary", "id": 178678, "credit_id": "52fe425ec3a36847f8018fa1", "cast_id": 28, "profile_path": "/dpKopGrl4mD87QxiaQgbqzgZZfa.jpg", "order": 19}, {"name": "Antoni Corone", "character": "Police Chief", "id": 20562, "credit_id": "52fe425ec3a36847f8018fa5", "cast_id": 29, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 20}, {"name": "Robert Deacon", "character": "Prisoner", "id": 135571, "credit_id": "52fe425ec3a36847f8018fa9", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Anthony Giaimo", "character": "Dave", "id": 176740, "credit_id": "52fe425ec3a36847f8018fad", "cast_id": 31, "profile_path": "/eQ02gEk9m5GyTMW1oigAzJL7YSg.jpg", "order": 22}, {"name": "Manny Suarez", "character": "Georgie", "id": 943990, "credit_id": "52fe425ec3a36847f8018fb1", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Janet Bushor", "character": "Barmaid", "id": 185608, "credit_id": "52fe425ec3a36847f8018fb5", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Gina LaMarca", "character": "Hooker", "id": 553009, "credit_id": "52fe425ec3a36847f8018fb9", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Nancy Duerr", "character": "Reporter #1", "id": 163219, "credit_id": "52fe425ec3a36847f8018fbd", "cast_id": 35, "profile_path": "/9giCY95pLNVmlS7ngtEuX2ziI6.jpg", "order": 26}, {"name": "Margo Peace", "character": "Reporter #2", "id": 1089405, "credit_id": "52fe425ec3a36847f8018fc1", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Keith Wilson", "character": "Reporter #3", "id": 153670, "credit_id": "52fe425ec3a36847f8018fdf", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Nelson Oramas", "character": "Policeman #1", "id": 1089406, "credit_id": "52fe425ec3a36847f8018fc5", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Michael Dean Walker", "character": "Policeman #2", "id": 1089407, "credit_id": "52fe425ec3a36847f8018fc9", "cast_id": 39, "profile_path": null, "order": 30}, {"name": "Jesse Muson", "character": "Policeman #3", "id": 1089408, "credit_id": "52fe425ec3a36847f8018fcd", "cast_id": 40, "profile_path": null, "order": 31}, {"name": "Kimberly Lamaze", "character": "Policewoman #1", "id": 1089409, "credit_id": "52fe425ec3a36847f8018fd1", "cast_id": 41, "profile_path": null, "order": 32}, {"name": "Rebecca White", "character": "Policewoman #2", "id": 1089410, "credit_id": "52fe425ec3a36847f8018fd5", "cast_id": 42, "profile_path": null, "order": 33}], "directors": [{"name": "John McNaughton", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f8018f27", "profile_path": "/yiCFEVjVIr4TV25Wb3IqWjE9WdF.jpg", "id": 9200}], "vote_average": 6.1, "runtime": 108}, "11901": {"poster_path": "/557vwDdOIQ07Q1QvTwHVmxHJpXU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.", "video": false, "id": 11901, "genres": [{"id": 37, "name": "Western"}], "title": "High Plains Drifter", "tagline": "Welcome to Hell", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0068699", "adult": false, "backdrop_path": "/jiPcamHlH8YUUM8lMUWMhXSr6U.jpg", "production_companies": [{"name": "Malpaso Productions", "id": 171}, {"name": "Universal Pictures", "id": 33}], "release_date": "1973-04-19", "popularity": 0.707432963492366, "original_title": "High Plains Drifter", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "The Stranger", "id": 190, "credit_id": "52fe449d9251416c7503b07b", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Verna Bloom", "character": "Sarah Belding", "id": 55192, "credit_id": "52fe449d9251416c7503b07f", "cast_id": 2, "profile_path": "/nNQMSCdsTE2sA3FzMOshdYr5RU5.jpg", "order": 1}, {"name": "Marianna Hill", "character": "Callie Travers", "id": 15659, "credit_id": "52fe449d9251416c7503b083", "cast_id": 3, "profile_path": "/h3X58tFp2a7Tgt7gNW2sbM6N2EH.jpg", "order": 2}, {"name": "Mitchell Ryan", "character": "Dave Drake", "id": 14312, "credit_id": "52fe449d9251416c7503b087", "cast_id": 4, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 3}, {"name": "Jack Ging", "character": "Morgan Allen", "id": 95597, "credit_id": "52fe449d9251416c7503b0bb", "cast_id": 14, "profile_path": "/4RXCV7cDIKaObgUX6VgZrdH4H5J.jpg", "order": 4}, {"name": "Stefan Gierasch", "character": "Mayor Jason Hobart", "id": 52463, "credit_id": "52fe449e9251416c7503b0bf", "cast_id": 15, "profile_path": "/y4w2yNJYdAcaKddQyCYm4qtmLqO.jpg", "order": 5}, {"name": "Ted Hartley", "character": "Lewis Belding", "id": 59641, "credit_id": "52fe449e9251416c7503b0c3", "cast_id": 16, "profile_path": "/yPoiIkLRLBC6OJcF9RGlxrn9kYX.jpg", "order": 6}, {"name": "Billy Curtis", "character": "Mordecai", "id": 102426, "credit_id": "52fe449e9251416c7503b0c7", "cast_id": 17, "profile_path": "/dlvmolruFp5cq7ARO19WMKHFmbD.jpg", "order": 7}, {"name": "Geoffrey Lewis", "character": "Stacey Bridges", "id": 18071, "credit_id": "52fe449e9251416c7503b0cb", "cast_id": 18, "profile_path": "/w6uRlwTKRpXELfVwKHC9yWEDqxy.jpg", "order": 8}, {"name": "Scott Walker", "character": "Bill Borders", "id": 199813, "credit_id": "52fe449e9251416c7503b0cf", "cast_id": 19, "profile_path": "/1K78PuIApUuQbtLPsQIEZGnZLmI.jpg", "order": 9}, {"name": "Walter Barnes", "character": "Sheriff Sam Shaw", "id": 33544, "credit_id": "52fe449e9251416c7503b0d3", "cast_id": 20, "profile_path": "/m7OtPTdxtRSRFJeAYnBSTFjINgX.jpg", "order": 10}, {"name": "Paul Brinegar", "character": "Lutie Naylor", "id": 106611, "credit_id": "52fe449e9251416c7503b0d7", "cast_id": 21, "profile_path": "/8YOaYazXeGZLRNcYcson7vym4Tr.jpg", "order": 11}, {"name": "Richard Bull", "character": "Asa Goodwin", "id": 31210, "credit_id": "52fe449e9251416c7503b0db", "cast_id": 22, "profile_path": "/5TYupEMDpS4UL1lLaYO5ynNB1vF.jpg", "order": 12}, {"name": "Robert Donner", "character": "Preacher", "id": 13875, "credit_id": "52fe449e9251416c7503b0df", "cast_id": 23, "profile_path": "/6GXjsXEC5a0BoFwq1pad5OqJ5M9.jpg", "order": 13}, {"name": "John Hillerman", "character": "Bootmaker", "id": 12296, "credit_id": "52fe449e9251416c7503b0e3", "cast_id": 24, "profile_path": "/93n8VRJIlZivnNES3W1utuWfvkp.jpg", "order": 14}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe449d9251416c7503b08d", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.0, "runtime": 105}, "11906": {"poster_path": "/pJXSuO6pPXVF2umZeU1JcnOlKIC.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "A candy-colored nightmare from Italian terror maestro Dario Argento, Suspiria weaves a menacing tale of witchcraft as a fairy tale gone horribly awry. From the moment she arrives in Freiberg, Germany, to attend the prestigious Tans Academy, American ballet-dancer Suzy Bannion (Jessica Harper) senses that something horribly evil lurks within the walls of the age-old institution.", "video": false, "id": 11906, "genres": [{"id": 27, "name": "Horror"}, {"id": 10769, "name": "Foreign"}], "title": "Suspiria", "tagline": "The Most Frightening Film You'll Ever See!", "vote_count": 51, "homepage": "http://www.imdb.com/title/tt0076786/", "belongs_to_collection": {"backdrop_path": "/8xCFLABKIDU90t9DAN3JdNAuX4D.jpg", "poster_path": "/8T1ukxvmMBOwnOVg0wm7MMBRBpl.jpg", "id": 127280, "name": "The Three Mothers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076786", "adult": false, "backdrop_path": "/fIdGH6HpsEOuxkRaRFc1KR5BH5D.jpg", "production_companies": [{"name": "Seda Spettacoli", "id": 3570}], "release_date": "1977-02-01", "popularity": 0.424742910091769, "original_title": "Suspiria", "budget": 0, "cast": [{"name": "Jessica Harper", "character": "Suzy Bannion", "id": 69055, "credit_id": "52fe449e9251416c7503b2c1", "cast_id": 1, "profile_path": "/4W74yGyRKJJfMolXwCOlR4kUBBs.jpg", "order": 0}, {"name": "Stefania Casini", "character": "Sara", "id": 34043, "credit_id": "52fe449e9251416c7503b2c5", "cast_id": 2, "profile_path": "/kA72p0sjZdv84dLukMNRfyEeHEW.jpg", "order": 1}, {"name": "Flavio Bucci", "character": "Daniel", "id": 24608, "credit_id": "52fe449e9251416c7503b2c9", "cast_id": 3, "profile_path": "/k1hXgU1vLglwv0Bfyb1LlXSx5sR.jpg", "order": 2}, {"name": "Miguel Bos\u00e9", "character": "Mark", "id": 54153, "credit_id": "52fe449e9251416c7503b2cd", "cast_id": 4, "profile_path": "/4XmLeZCy45WPdebUA74fZObC8Cg.jpg", "order": 3}, {"name": "Barbara Magnolfi", "character": "Olga", "id": 94072, "credit_id": "52fe449f9251416c7503b31f", "cast_id": 18, "profile_path": "/eI7rr8FiZZSPwmG7pdAB5NOKGzg.jpg", "order": 4}, {"name": "Susanna Javicoli", "character": "Sonia", "id": 78543, "credit_id": "52fe449f9251416c7503b323", "cast_id": 19, "profile_path": "/jWsrTmjFp0LiaDL5b0HF6xjieyQ.jpg", "order": 5}, {"name": "Eva Ax\u00e9n", "character": "Pat Hingle", "id": 94073, "credit_id": "52fe449f9251416c7503b327", "cast_id": 20, "profile_path": "/eQZnNmugEcTODxD0tVh161e3DD0.jpg", "order": 6}, {"name": "Rudolf Sch\u00fcndler", "character": "Prof. Milius", "id": 26600, "credit_id": "52fe449f9251416c7503b32b", "cast_id": 21, "profile_path": "/8R3yeMw89PbstuKw10U2f47sVqi.jpg", "order": 7}, {"name": "Udo Kier", "character": "Dr. Frank Mandel", "id": 1646, "credit_id": "52fe449f9251416c7503b32f", "cast_id": 22, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 8}, {"name": "Alida Valli", "character": "Miss Tanner", "id": 15385, "credit_id": "52fe449f9251416c7503b333", "cast_id": 23, "profile_path": "/jrLlDz7G1oEw8mQri4T2jjDWXep.jpg", "order": 9}, {"name": "Joan Bennett", "character": "Madame Blanc", "id": 7639, "credit_id": "52fe449f9251416c7503b337", "cast_id": 24, "profile_path": "/m0PjOKHvN00VVBzQpsAIYzoWvjx.jpg", "order": 10}, {"name": "Fulvio Mingozzi", "character": "Taxi Driver", "id": 98774, "credit_id": "52fe449f9251416c7503b33b", "cast_id": 25, "profile_path": "/mxirX6YqWkoVPB6bRq7sMzrLIIP.jpg", "order": 11}, {"name": "Renato Scarpa", "character": "Prof. Verdegast", "id": 14149, "credit_id": "52fe449f9251416c7503b33f", "cast_id": 26, "profile_path": "/4jANi4vGdTqFG7a5OjtbM9ikwOe.jpg", "order": 12}, {"name": "Daria Nicolodi", "character": "Woman at airport (uncredited)", "id": 44959, "credit_id": "52fe449f9251416c7503b343", "cast_id": 27, "profile_path": "/r5KCkyvnS4l3JsMyImw3oPCeCs7.jpg", "order": 13}], "directors": [{"name": "Dario Argento", "department": "Directing", "job": "Director", "credit_id": "52fe449e9251416c7503b2d3", "profile_path": "/fsNU25aK2CFQdjbubmSR9ffNbnS.jpg", "id": 4955}], "vote_average": 7.6, "runtime": 98}, "619": {"poster_path": "/cbUiIu4357JQ4FBCtRJovHNv1gi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 410000000, "overview": "A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first, the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long, all that tension sparks fireworks of another sort, and the love-averse tough guy is torn between duty and romance.", "video": false, "id": 619, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Bodyguard", "tagline": "Never let her out of your sight. Never let your guard down. Never fall in love.", "vote_count": 143, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103855", "adult": false, "backdrop_path": "/9u0BWsv2Hz4dI3reXRNWCOdps6r.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Kasdan Pictures", "id": 13040}, {"name": "Tig Productions", "id": 335}], "release_date": "1992-11-25", "popularity": 0.762051103494302, "original_title": "The Bodyguard", "budget": 25000000, "cast": [{"name": "Whitney Houston", "character": "Rachel Marron", "id": 8851, "credit_id": "52fe425fc3a36847f801916d", "cast_id": 17, "profile_path": "/69ouDnXnmklYPr4sMJXWKYz81AL.jpg", "order": 0}, {"name": "Kevin Costner", "character": "Frank Farmer", "id": 1269, "credit_id": "52fe425fc3a36847f8019171", "cast_id": 18, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 1}, {"name": "Michele Lamar Richards", "character": "Nicki Marron", "id": 8852, "credit_id": "52fe425fc3a36847f8019175", "cast_id": 19, "profile_path": null, "order": 2}, {"name": "Ralph Waite", "character": "Herb Farmer", "id": 8853, "credit_id": "52fe425fc3a36847f8019179", "cast_id": 20, "profile_path": "/6djAThCrJarxjKC3AmBJpKsMBLK.jpg", "order": 3}, {"name": "Gary Kemp", "character": "Sy Spector", "id": 7042, "credit_id": "52fe425fc3a36847f801917d", "cast_id": 21, "profile_path": "/d2hRu5pzpQTYObvxac9YNnaDvSN.jpg", "order": 4}, {"name": "Bill Cobbs", "character": "Bill Devaney", "id": 8854, "credit_id": "52fe425fc3a36847f8019181", "cast_id": 22, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 5}, {"name": "Tomas Arana", "character": "Greg Portman", "id": 941, "credit_id": "52fe425fc3a36847f8019185", "cast_id": 23, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 6}, {"name": "Mike Starr", "character": "Tony Scipelli", "id": 5170, "credit_id": "52fe425fc3a36847f8019189", "cast_id": 24, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 7}, {"name": "Christopher Birt", "character": "Henry", "id": 8855, "credit_id": "52fe425fc3a36847f801918d", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "DeVaughn Nixon", "character": "Fletcher Marron", "id": 8856, "credit_id": "52fe425fc3a36847f8019191", "cast_id": 26, "profile_path": "/ppVsm9acOq0tIReLUV9wQUnilEp.jpg", "order": 9}, {"name": "Debbie Reynolds", "character": "Herself", "id": 8857, "credit_id": "52fe425fc3a36847f8019195", "cast_id": 27, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 10}, {"name": "Gerry Bamman", "character": "Ray Court", "id": 11517, "credit_id": "53a5979dc3a3687a34001466", "cast_id": 29, "profile_path": "/ybNlqyoXcAQ5pKz6fFD7Ff7LKcz.jpg", "order": 11}, {"name": "Joe Urla", "character": "Minella", "id": 151433, "credit_id": "53a597cbc3a3687a430013b7", "cast_id": 30, "profile_path": "/92uDSmkBkgcVXDO8DBr3iInd62H.jpg", "order": 12}, {"name": "Charles Keating", "character": "Klingman", "id": 13937, "credit_id": "53a59809c3a3687a31001486", "cast_id": 31, "profile_path": "/c2vPVQidD2pf77iiTwgDcIGGQaP.jpg", "order": 13}, {"name": "Robert Wuhl", "character": "Oscar Host", "id": 4040, "credit_id": "53a59839c3a3687a2e0013d4", "cast_id": 32, "profile_path": "/ibDgbYtVwOwTuClvFclLybMk24T.jpg", "order": 14}, {"name": "Danny Kamin", "character": "Thuringer", "id": 1235705, "credit_id": "53a59892c3a3687a2b00146a", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Richard Schiff", "character": "Skip Thomas", "id": 31028, "credit_id": "53a599d40e0a26143f001535", "cast_id": 34, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 16}, {"name": "Nathaniel Parker", "character": "Clive Healy", "id": 27631, "credit_id": "53a59a5f0e0a2614320015b4", "cast_id": 35, "profile_path": "/w5SnRNxxY00lIDPB1SUh47nx46n.jpg", "order": 17}, {"name": "Bert Remsen", "character": "Rotary Club President", "id": 30621, "credit_id": "53a59ab30e0a261449001535", "cast_id": 36, "profile_path": "/kLddDLz6g3vBaTnmPD0yzPj04Bo.jpg", "order": 18}, {"name": "Stephen Shellen", "character": "Tom Winston", "id": 4156, "credit_id": "53a59b070e0a2614360014d9", "cast_id": 37, "profile_path": "/2noNmjpB9gKpKTUjRpM9uQX8qln.jpg", "order": 19}], "directors": [{"name": "Mick Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f801910f", "profile_path": "/vB2oia3vFL0kaq8re4VgWB1Huig.jpg", "id": 8843}], "vote_average": 6.1, "runtime": 129}, "192132": {"poster_path": "/sxCWcQMuj3hZgMXykAB7XNArlBo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Palo Alto weaves together three stories of teenage lust, boredom, and self-destruction: shy, sensitive April (Emma Roberts), torn between an illicit flirtation with her soccer coach (James Franco) and an unrequited crush on sweet stoner Teddy (Jack Kilmer); Emily (Zoe Levin), who offers sexual favors to any boy to cross her path; and the increasingly dangerous exploits of Teddy and his best friend Fred (Nat Wolff), whose behavior may or may not be sociopathic.", "video": false, "id": 192132, "genres": [{"id": 18, "name": "Drama"}], "title": "Palo Alto", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2479800", "adult": false, "backdrop_path": "/865aQ3k9zc0JVyPy975So53OBjF.jpg", "production_companies": [{"name": "Tribeca Film", "id": 20670}], "release_date": "2013-08-29", "popularity": 0.517203547502223, "original_title": "Palo Alto", "budget": 0, "cast": [{"name": "Emma Roberts", "character": "April", "id": 34847, "credit_id": "52fe4c9c9251416c910fa6c1", "cast_id": 4, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "James Franco", "character": "Mr. B", "id": 17051, "credit_id": "52fe4c9c9251416c910fa6c5", "cast_id": 5, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Stewart", "id": 5576, "credit_id": "52fe4c9c9251416c910fa6c9", "cast_id": 6, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Colleen Camp", "character": "Sally", "id": 13023, "credit_id": "52fe4c9c9251416c910fa6d9", "cast_id": 10, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 3}, {"name": "Jack Kilmer", "character": "Teddy", "id": 1193604, "credit_id": "52fe4c9c9251416c910fa6cd", "cast_id": 7, "profile_path": "/7RouDfCnRRU6gTramiFbmYg1dDn.jpg", "order": 4}, {"name": "Keegan Allen", "character": "Archie", "id": 1193605, "credit_id": "52fe4c9c9251416c910fa6d1", "cast_id": 8, "profile_path": "/osTSMTonidy8vxn3oNs8rSOu3Ir.jpg", "order": 5}, {"name": "Nat Wolff", "character": "Fred", "id": 232006, "credit_id": "52fe4c9c9251416c910fa6d5", "cast_id": 9, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 6}, {"name": "Olivia Crocicchia", "character": "Chrissy", "id": 172056, "credit_id": "52fe4c9c9251416c910fa6dd", "cast_id": 11, "profile_path": "/pRO0gxG1a9Pd5d7VuaX7GPo8g1m.jpg", "order": 7}, {"name": "Christian Madsen", "character": "Anthony", "id": 1193606, "credit_id": "52fe4c9c9251416c910fa6e1", "cast_id": 12, "profile_path": "/cXtUHc8sZdmh0jmueue82PIMsHh.jpg", "order": 8}, {"name": "Zoe Levin", "character": "Emily", "id": 1190917, "credit_id": "52fe4c9c9251416c910fa6e5", "cast_id": 13, "profile_path": "/uhJnIakHRrW30r1H8ljVUiTWR4E.jpg", "order": 9}, {"name": "Don Novello", "character": "Mr. Wilson", "id": 161860, "credit_id": "52fe4c9c9251416c910fa6e9", "cast_id": 14, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 10}, {"name": "Talia Shire", "character": "Mrs. Ganem", "id": 3094, "credit_id": "53e3fd49c3a36848530027b5", "cast_id": 15, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 11}, {"name": "Claudia Levy", "character": "Shauna", "id": 1392020, "credit_id": "547c0b00c3a3685af30019f3", "cast_id": 23, "profile_path": "/ygLpWFR0d7GeHVqLkSUumr1PlLD.jpg", "order": 12}, {"name": "Jacqui Getty", "character": "Jane", "id": 1392033, "credit_id": "547c0e35c3a368125a000fe8", "cast_id": 24, "profile_path": "/vgrv4GnPbSXVYYPSCrrdpbHzCVM.jpg", "order": 13}, {"name": "Andrew Lutheran", "character": "Ivan", "id": 1392034, "credit_id": "547c0f309251412d7f001ffa", "cast_id": 25, "profile_path": "/9uyXVCmGtScXKjE2gEKUWBoTmbz.jpg", "order": 14}, {"name": "Bo Mitchell", "character": "Jack O", "id": 1241339, "credit_id": "547c11419251412d70002183", "cast_id": 26, "profile_path": "/wQwVgW8hxO2JKECkb5F9cjURmLX.jpg", "order": 15}, {"name": "Bailey Coppola", "character": "Seth", "id": 1392056, "credit_id": "547c1337c3a3685af00022c8", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Brennen Taylor", "character": "Luke", "id": 1392071, "credit_id": "547c15f79251412d7c002131", "cast_id": 28, "profile_path": "/uP1NEIv14vspyznCy7TYTFHKznC.jpg", "order": 17}, {"name": "Atlanta Decadenet", "character": "Girl at Party", "id": 1392072, "credit_id": "547c1799c3a368125a001135", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Anna Thea Bogdanovich", "character": "Sally's Friend", "id": 1392073, "credit_id": "547c193692514123ef00044a", "cast_id": 30, "profile_path": "/tN6ZMRuBpsEIqrkcGNys0FrArqW.jpg", "order": 19}, {"name": "Micah Nelson", "character": "Michael", "id": 1022168, "credit_id": "547c1b9e9251412d7f0021ac", "cast_id": 31, "profile_path": "/h3c8motZAYbVgciH7SbRtNldFPl.jpg", "order": 20}, {"name": "Timothy Starks", "character": "Police Officer", "id": 1392074, "credit_id": "547c1ceec3a3685b050023c4", "cast_id": 32, "profile_path": "/5KcnMRbSRoLwoKkSOFZoGXS6b2v.jpg", "order": 21}, {"name": "Emma Gretzky", "character": "Emma", "id": 1392076, "credit_id": "547c1f529251412d7f002225", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Janet Jones", "character": "Sherry", "id": 19257, "credit_id": "547c223a92514123ef00056b", "cast_id": 34, "profile_path": "/vtSxLHwrv0GHWFoVuVePrluMOXM.jpg", "order": 23}, {"name": "Genevieve Penn", "character": "Court Clerk Woman", "id": 1392079, "credit_id": "547c2291c3a3685af0002522", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Jesse Jo Stark", "character": "Pam", "id": 1392080, "credit_id": "547c22db9251412d78002030", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Jake Nordwin", "character": "Art Student #1", "id": 1392082, "credit_id": "547c231dc3a3685af000253a", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "Jamal Hammadi", "character": "Art Student #2", "id": 1392087, "credit_id": "547c250b9251412d7000244c", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Marshall Bell", "character": "Jake", "id": 3041, "credit_id": "547c25b09251412d7f0022ec", "cast_id": 39, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 28}, {"name": "Laney Fichera", "character": "Judy", "id": 1392096, "credit_id": "547c2651c3a3685af000259e", "cast_id": 40, "profile_path": "/hN5rqQp7qIpQU750qeMxbRrjGEh.jpg", "order": 29}, {"name": "Greta Seacat", "character": "Janice", "id": 1193629, "credit_id": "547c35d192514123ef0007a2", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Chris Messina", "character": "Mitch", "id": 61659, "credit_id": "547c36dfc3a3685af00027a3", "cast_id": 42, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 31}, {"name": "Nathalie Love", "character": "Joy", "id": 1392122, "credit_id": "547c37679251412d7f0024c3", "cast_id": 43, "profile_path": "/8PcM8xE8bSpfQkoNBhVPjPlOX1Z.jpg", "order": 32}, {"name": "Sandra Seacat", "character": "Tanya", "id": 110877, "credit_id": "547c3b30c3a3685af000281d", "cast_id": 44, "profile_path": "/u1c21S63Gqt0YtDKyfctzPIvS3E.jpg", "order": 33}, {"name": "Jessica Elle Taylor", "character": "Brittney", "id": 1392124, "credit_id": "547c3bbfc3a3685af90020b4", "cast_id": 45, "profile_path": null, "order": 34}, {"name": "Janet Song", "character": "Mrs. Stevenson", "id": 1392128, "credit_id": "547c3c4b9251412d6d00249d", "cast_id": 46, "profile_path": "/5Hvq7tgsDfuqMoJCFWiaTE3D2jG.jpg", "order": 35}, {"name": "Janet Salter", "character": "Elderly Woman", "id": 1392135, "credit_id": "547c3d7e9251412d7c0025d2", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Margaret Qualley", "character": "Raquel", "id": 1392137, "credit_id": "547c3e3e9251412d7c0025f2", "cast_id": 48, "profile_path": "/a4lPJF6uekt6CvaQhMlXMYaYqVv.jpg", "order": 37}, {"name": "Amelia Burstyn", "character": "Mary", "id": 1392144, "credit_id": "547c3fb7c3a3685aed0029d3", "cast_id": 49, "profile_path": "/mDjJ24pURygsrGcYYbu1oQ2B0FH.jpg", "order": 38}, {"name": "Grear Patterson", "character": "College Boy #1", "id": 1392153, "credit_id": "547c41a99251412d7f002600", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Nick Stewart", "character": "College Boy #2", "id": 1392154, "credit_id": "547c41ee9251412d700027d4", "cast_id": 51, "profile_path": null, "order": 40}], "directors": [{"name": "Gia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4c9c9251416c910fa6b1", "profile_path": null, "id": 1193602}], "vote_average": 6.3, "runtime": 100}, "7446": {"poster_path": "/ue9QdvhpcNPvKQyLY5a5Pd0tagS.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 188072649, "overview": "Vietnam veteran \"Four Leaf\" Tayback's memoir, Tropic Thunder, is being made into a film. Director Damien Cockburn can\u2019t control the cast of prima donnas. Behind schedule and over budget, Cockburn is ordered by a studio executive to get filming back on track, or risk its cancellation. On Tayback's advice, Cockburn drops the actors into the middle of the jungle to film the remaining scenes. Unbeknownst to the actors and production, the group have been dropped in the middle of the Golden Triangle, the home of heroin-producing gangs.", "video": false, "id": 7446, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Tropic Thunder", "tagline": "The movie they think they're making... isn't a movie anymore.", "vote_count": 420, "homepage": "http://www.tropicthunder.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0942385", "adult": false, "backdrop_path": "/6TdYGyANd7QhcV6gsx4meW8Y9Wf.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Red Hour Films", "id": 12178}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Internationale Filmproduktion Stella-del-Sud Second", "id": 12379}], "release_date": "2008-08-13", "popularity": 1.5097767510231, "original_title": "Tropic Thunder", "budget": 92000000, "cast": [{"name": "Ben Stiller", "character": "Speedman", "id": 7399, "credit_id": "52fe447dc3a36847f80992e1", "cast_id": 2, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Kirk Lazarus", "id": 3223, "credit_id": "52fe447dc3a36847f809935b", "cast_id": 28, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Jack Black", "character": "Jeff \"Fats\" Portnoy", "id": 70851, "credit_id": "52fe447dc3a36847f80992e5", "cast_id": 3, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Kevin Sandusky", "id": 449, "credit_id": "52fe447dc3a36847f80992ed", "cast_id": 6, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Brandon T. Jackson", "character": "Alpa Chino", "id": 53336, "credit_id": "52fe447dc3a36847f80992f9", "cast_id": 9, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 4}, {"name": "Matthew McConaughey", "character": "Rick Peck", "id": 10297, "credit_id": "52fe447dc3a36847f8099305", "cast_id": 12, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 5}, {"name": "Tom Cruise", "character": "Les Grossmann", "id": 500, "credit_id": "52fe447dc3a36847f8099301", "cast_id": 11, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 6}, {"name": "Nick Nolte", "character": "Four Leaf Tayback", "id": 1733, "credit_id": "52fe447dc3a36847f80992fd", "cast_id": 10, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 7}, {"name": "Danny McBride", "character": "Cody - Vietnam Crew", "id": 62862, "credit_id": "52fe447dc3a36847f8099357", "cast_id": 27, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 8}, {"name": "Steve Coogan", "character": "Damian", "id": 4581, "credit_id": "52fe447dc3a36847f80992e9", "cast_id": 5, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 9}, {"name": "Bill Hader", "character": "Rob Slolom", "id": 19278, "credit_id": "52fe447dc3a36847f80992f1", "cast_id": 7, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 10}, {"name": "Reggie Lee", "character": "Byong - Flaming Dragon Compound", "id": 22075, "credit_id": "53f4f4efc3a368340000202b", "cast_id": 33, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 12}, {"name": "Brandon Soo Hoo", "character": "Tran - Flaming Dragon Compound", "id": 1115122, "credit_id": "53f4f5fd0e0a267f83002a48", "cast_id": 34, "profile_path": "/yZse73nxYlk9Ypr5r43PUkpuZGB.jpg", "order": 13}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f80992dd", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 6.2, "runtime": 107}, "192134": {"poster_path": "/tKJck9jAXaCWZvexlbQ85NeAhro.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 523511, "overview": "After spending 12 years in prison for keeping his mouth shut, notorious safe-cracker Dom Hemingway is back on the streets of London looking to collect what he's owed.", "video": false, "id": 192134, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Dom Hemingway", "tagline": "I want my money plus interest.... and a present", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2402105", "adult": false, "backdrop_path": "/1qzClUQQWDVO6nc1nU2F4AAjfKq.jpg", "production_companies": [{"name": "Pinewood Studios", "id": 19404}, {"name": "Recorded Picture Company (RPC)", "id": 11561}, {"name": "BBC Films", "id": 288}, {"name": "Isle of Man Film Commission", "id": 8719}], "release_date": "2013-11-15", "popularity": 0.972692166871786, "original_title": "Dom Hemingway", "budget": 0, "cast": [{"name": "Jude Law", "character": "Dom Hemingway", "id": 9642, "credit_id": "52fe4c9c9251416c910fa733", "cast_id": 2, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Demi\u00e1n Bichir", "character": "Mr. Fontaine", "id": 76961, "credit_id": "52fe4c9c9251416c910fa737", "cast_id": 4, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 1}, {"name": "Richard E. Grant", "character": "Dickie", "id": 20766, "credit_id": "52fe4c9c9251416c910fa73b", "cast_id": 5, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 2}, {"name": "Matthew C. Martino", "character": "Nightclubber", "id": 1186080, "credit_id": "52fe4c9c9251416c910fa73f", "cast_id": 6, "profile_path": "/5wtp4SjBr3e6zvxIHrWHKKxWR1w.jpg", "order": 3}, {"name": "Emilia Clarke", "character": "Evelyn", "id": 1223786, "credit_id": "52fe4c9c9251416c910fa74f", "cast_id": 9, "profile_path": "/tB1nE2LJH81f5UMiGhKCSlaqsF1.jpg", "order": 4}, {"name": "Kerry Condon", "character": "Melody", "id": 62105, "credit_id": "532b2f5e925141083c001a77", "cast_id": 10, "profile_path": "/i2wb0N7m1JkUJRcfBcVYmIpExAa.jpg", "order": 5}, {"name": "M\u0103d\u0103lina Diana Ghenea", "character": "Paolina", "id": 1255247, "credit_id": "532b2f7892514108420019a9", "cast_id": 11, "profile_path": "/2bgE2WrfXwWW3nCCtbEgDx7pSqu.jpg", "order": 6}, {"name": "Deborah Rosan", "character": "Actress", "id": 1106755, "credit_id": "532b2f85925141083c001a7e", "cast_id": 12, "profile_path": "/u5TLr9M4qo7jlzTsFb7XDPRilEW.jpg", "order": 7}, {"name": "Vic Waghorn", "character": "Pedestrian", "id": 1297114, "credit_id": "532b2f91925141084d00198f", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Emma Lock", "character": "Hostess", "id": 1080031, "credit_id": "532b2f9e9251410836001aa5", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Nathan Stewart-Jarrett", "character": "Hugh", "id": 221980, "credit_id": "532b2fb29251410839001a60", "cast_id": 15, "profile_path": "/vmTYlNIggaRg0jf8EAgkT3tcImN.jpg", "order": 10}], "directors": [{"name": "Richard Shepard", "department": "Directing", "job": "Director", "credit_id": "52fe4c9c9251416c910fa745", "profile_path": "/z9mf3XC51RrUEmdusWx7CAPsaLF.jpg", "id": 44740}], "vote_average": 6.2, "runtime": 93}, "192136": {"poster_path": "/dFebwt45Tyfb49SiQPZMelRKIjj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 27330000, "overview": "A chronicle of Nelson Mandela's life journey from his childhood in a rural village through to his inauguration as the first democratically elected president of South Africa.", "video": false, "id": 192136, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Mandela: Long Walk to Freedom", "tagline": "It is an ideal for which I am prepared to die.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "xh", "name": ""}], "imdb_id": "tt2304771", "adult": false, "backdrop_path": "/oZvIyVLYGGit6LSYv2tYD9wfBiy.jpg", "production_companies": [{"name": "Videovision Entertainment", "id": 5031}, {"name": "Distant Horizons", "id": 1066}, {"name": "Pathe", "id": 7396}, {"name": "Film Afrika Worldwide", "id": 4792}, {"name": "Origin Pictures", "id": 8088}], "release_date": "2013-12-25", "popularity": 0.750119057405109, "original_title": "Mandela: Long Walk to Freedom", "budget": 35000000, "cast": [{"name": "Idris Elba", "character": "Nelson Mandela", "id": 17605, "credit_id": "52fe4c9c9251416c910fa789", "cast_id": 3, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 0}, {"name": "Naomie Harris", "character": "Winnie Madikizela", "id": 2038, "credit_id": "52fe4c9c9251416c910fa78d", "cast_id": 4, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 1}, {"name": "Tony Kgoroge", "character": "Walter Sisulu", "id": 2606, "credit_id": "52fe4c9d9251416c910fa7a1", "cast_id": 9, "profile_path": "/6SYs40gVJNmzKjz4kFQOwXG5BH6.jpg", "order": 2}, {"name": "Riaad Moosa", "character": "Ahmed Kathrada", "id": 996636, "credit_id": "52fe4c9d9251416c910fa7a5", "cast_id": 10, "profile_path": "/mQgaE4y00QDMH2K8oPoaMz4O2gD.jpg", "order": 3}, {"name": "Fana Mokoena", "character": "Govan Mbeki", "id": 2607, "credit_id": "52fe4c9d9251416c910fa7bd", "cast_id": 17, "profile_path": "/skuKjL1Ep1SHrZuNl0lYVfZ9VM0.jpg", "order": 4}, {"name": "Robert Hobbs", "character": "Chief Warder", "id": 82190, "credit_id": "52fe4c9c9251416c910fa791", "cast_id": 6, "profile_path": "/yN6gVehZi1Y5P5kDazI8FmB8Bb0.jpg", "order": 5}, {"name": "Jamie Bartlett", "character": "James Gregory", "id": 74627, "credit_id": "52fe4c9d9251416c910fa7a9", "cast_id": 11, "profile_path": "/lLoOjYKHkEhi6kStM7QkRkYotQh.jpg", "order": 6}, {"name": "Lindiwe Matshikiza", "character": "Zindzi Mandela", "id": 1125917, "credit_id": "52fe4c9d9251416c910fa7ad", "cast_id": 12, "profile_path": "/sZkuS47SnVp9fQOzbEpTzV7iMmX.jpg", "order": 7}, {"name": "Terry Pheto", "character": "Evelyn Mase", "id": 13093, "credit_id": "52fe4c9d9251416c910fa7b1", "cast_id": 13, "profile_path": "/gS2fXmjnnsnXess2k2AZ6mct5sU.jpg", "order": 8}, {"name": "Deon Lotz", "character": "Kobie Coetzee", "id": 1041697, "credit_id": "52fe4c9d9251416c910fa7b5", "cast_id": 14, "profile_path": "/ippPb3HDaNICCot4wCUMAoPJBL5.jpg", "order": 9}, {"name": "Thapelo Mokoena", "character": "Elias Motsoaledi", "id": 229640, "credit_id": "52fe4c9d9251416c910fa7b9", "cast_id": 16, "profile_path": "/8Ssl77mcNwb2lPOCXgIrhl9Gl4S.jpg", "order": 10}, {"name": "Zolani Mkiva", "character": "Raymond Mhlaba", "id": 1208133, "credit_id": "52fe4c9d9251416c910fa7c1", "cast_id": 18, "profile_path": "/fkiqMEJFHAPs4pL1EDCePw8Gj7B.jpg", "order": 11}, {"name": "Simo Mogwaza", "character": "Andrew Miageni", "id": 2619, "credit_id": "52fe4c9d9251416c910fa7c5", "cast_id": 19, "profile_path": "/6peqCFCtInAmHIDiKdkeVHDjWMp.jpg", "order": 12}, {"name": "David Butler", "character": "Colonel Badenhorst", "id": 1384871, "credit_id": "5464c6ddc3a36804c5001fa2", "cast_id": 28, "profile_path": "/nZUFoRw9vkxPIbLbmRrF7mt0RFu.jpg", "order": 13}, {"name": "Gys de Villiers", "character": "President de Klerk", "id": 231649, "credit_id": "5464c70dc3a36804a7001ee7", "cast_id": 29, "profile_path": "/pXv5G2mGa8pUqWv56lADhJYKByo.jpg", "order": 14}], "directors": [{"name": "Justin Chadwick", "department": "Directing", "job": "Director", "credit_id": "52fe4c9c9251416c910fa77f", "profile_path": "/8jhsQAwccFClH4gEYd4Hlbig31I.jpg", "id": 71570}], "vote_average": 6.8, "runtime": 141}, "25196": {"poster_path": "/tUyhwp36YykNKpqpEfauCavuDbK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39462438, "overview": "When reporter Jean Craddock interviews Bad Blake -- an alcoholic, seen-better-days country music legend -- they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son. But can he leave behind an existence playing in the shadow of Tommy, the upstart kid he once mentored?", "video": false, "id": 25196, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Crazy Heart", "tagline": "The harder the life, the sweeter the song.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1263670", "adult": false, "backdrop_path": "/gN0YZOzBX7eWDPx7UaiCjgohEYQ.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Informant Media", "id": 9325}, {"name": "Butcher's Run Films", "id": 3864}], "release_date": "2009-12-16", "popularity": 1.21869830316695, "original_title": "Crazy Heart", "budget": 7000000, "cast": [{"name": "Jeff Bridges", "character": "Bad Blake", "id": 1229, "credit_id": "52fe44bdc3a368484e034183", "cast_id": 3, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Jean Craddock", "id": 1579, "credit_id": "52fe44bdc3a368484e03417f", "cast_id": 2, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Robert Duvall", "character": "Wayne", "id": 3087, "credit_id": "52fe44bdc3a368484e03418d", "cast_id": 5, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 2}, {"name": "Colin Farrell", "character": "Tommy Sweet", "id": 72466, "credit_id": "52fe44bdc3a368484e03417b", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 3}, {"name": "Tom Bower", "character": "Bill Wilson", "id": 19453, "credit_id": "52fe44bdc3a368484e034191", "cast_id": 6, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 4}], "directors": [{"name": "Scott Cooper", "department": "Directing", "job": "Director", "credit_id": "52fe44bdc3a368484e034189", "profile_path": "/kmlJ2OLQmFLbdwCxUuofPgvYjjP.jpg", "id": 65167}], "vote_average": 6.1, "runtime": 112}, "11917": {"poster_path": "/AkfY99GJjnsuOpIaQlFzCsv5pBl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113857533, "overview": "Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.", "video": false, "id": 11917, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Saw V", "tagline": "You Won't Believe How It Ends", "vote_count": 181, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1132626", "adult": false, "backdrop_path": "/riCNFvTbbgjWYIhy6Ow5gBd8ZqW.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}], "release_date": "2008-10-23", "popularity": 0.584261525955848, "original_title": "Saw V", "budget": 10800000, "cast": [{"name": "Julie Benz", "character": "Brit", "id": 35551, "credit_id": "52fe44a19251416c7503b84d", "cast_id": 2, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 0}, {"name": "Meagan Good", "character": "Luba", "id": 22122, "credit_id": "52fe44a19251416c7503b851", "cast_id": 3, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 1}, {"name": "Shawnee Smith", "character": "Amanda Young", "id": 2138, "credit_id": "52fe44a19251416c7503b855", "cast_id": 4, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 2}, {"name": "Tobin Bell", "character": "John Kramer", "id": 2144, "credit_id": "52fe44a19251416c7503b859", "cast_id": 5, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 3}, {"name": "Mark Rolston", "character": "Dan Erickson", "id": 6576, "credit_id": "5333e0e9c3a3682a94001979", "cast_id": 6, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 4}, {"name": "Costas Mandylor", "character": "Mark Hoffman", "id": 36055, "credit_id": "54c5a7919251412fdb0024cf", "cast_id": 19, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 5}, {"name": "Scott Patterson", "character": "Agent Strahm", "id": 50020, "credit_id": "54c5a7c39251414cb200051e", "cast_id": 20, "profile_path": "/tXrO1CHnuR6zjpHh2JXNtozW0XC.jpg", "order": 6}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "54c5a80dc3a36879290093ec", "cast_id": 21, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 7}, {"name": "Carlo Rota", "character": "Charles", "id": 54793, "credit_id": "54c5a8ee9251412432008c99", "cast_id": 22, "profile_path": "/arfSlKjQqBWV77Tyu0jjASnvFII.jpg", "order": 8}, {"name": "Greg Bryk", "character": "Mallick", "id": 231, "credit_id": "54c5a907c3a3682c3c000542", "cast_id": 23, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 9}], "directors": [{"name": "David Hackl", "department": "Directing", "job": "Director", "credit_id": "52fe44a19251416c7503b849", "profile_path": null, "id": 2679}], "vote_average": 6.1, "runtime": 92}, "11918": {"poster_path": "/8Qqdq9VywBQ3MnCtdwuiVjC0E8h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25871834, "overview": "The team behind Scary Movie takes on the comic book genre in this tale of Rick Riker, a nerdy teen imbued with superpowers by a radioactive dragonfly. And because every hero needs a nemesis, enter Lou Landers, aka the villainously goofy Hourglass.", "video": false, "id": 11918, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superhero Movie", "tagline": "The greatest Superhero movie of all time! (not counting all the others)", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0426592", "adult": false, "backdrop_path": "/gXiQZuB5OXF0KjYoDgKFxleE29m.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2008-03-27", "popularity": 0.617118502518391, "original_title": "Superhero Movie", "budget": 35000000, "cast": [{"name": "Drake Bell", "character": "Dragonfly", "id": 3272, "credit_id": "52fe44a19251416c7503b899", "cast_id": 2, "profile_path": "/5GqFeFdNXRzb9DwlFSfBef8Pmb0.jpg", "order": 0}, {"name": "Sara Paxton", "character": "Jill Johnson", "id": 60072, "credit_id": "52fe44a19251416c7503b89d", "cast_id": 3, "profile_path": "/6tgy3NOeP2Cd1NiW9xHETQSbfvB.jpg", "order": 1}, {"name": "Leslie Nielsen", "character": "Uncle Albert Adams", "id": 7633, "credit_id": "52fe44a19251416c7503b8a1", "cast_id": 4, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 2}, {"name": "Christopher McDonald", "character": "Lou Landers", "id": 4443, "credit_id": "52fe44a19251416c7503b8a9", "cast_id": 6, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Dr. Whitby", "id": 4175, "credit_id": "52fe44a19251416c7503b8a5", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Pamela Anderson", "character": "Invisible Girl", "id": 6736, "credit_id": "52fe44a19251416c7503b8ad", "cast_id": 7, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 5}, {"name": "Kevin Hart", "character": "Trey", "id": 55638, "credit_id": "52fe44a19251416c7503b8e7", "cast_id": 17, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 6}, {"name": "Marion Ross", "character": "Aunt Lucille", "id": 75355, "credit_id": "52fe44a19251416c7503b8eb", "cast_id": 18, "profile_path": "/mdUQH7zZVP9yYeeSD97d1HWYi5a.jpg", "order": 7}, {"name": "Ryan Hansen", "character": "Lance Landers", "id": 78433, "credit_id": "52fe44a19251416c7503b8ef", "cast_id": 19, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 8}, {"name": "Keith David", "character": "The Chief of Police", "id": 65827, "credit_id": "52fe44a19251416c7503b8f3", "cast_id": 20, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 9}, {"name": "Robert Joy", "character": "Dr. Hawking", "id": 19976, "credit_id": "52fe44a19251416c7503b8f7", "cast_id": 22, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 10}, {"name": "Robert Hays", "character": "Blaine Riker", "id": 14416, "credit_id": "52fe44a19251416c7503b8fb", "cast_id": 23, "profile_path": "/1KWB4DXcsTVNDkDOaTJYatiTmDn.jpg", "order": 11}, {"name": "Nicole Sullivan", "character": "Julia Riker", "id": 16845, "credit_id": "52fe44a19251416c7503b8ff", "cast_id": 24, "profile_path": "/yJe73CBLTXrqge9oIw7k4p2qb61.jpg", "order": 12}, {"name": "Sam Cohen", "character": "Young Rick", "id": 999301, "credit_id": "52fe44a19251416c7503b903", "cast_id": 25, "profile_path": "/aWSin5WA7brJ8bxpM12W02oAlS3.jpg", "order": 13}, {"name": "Tracy Morgan", "character": "Professor Xavier", "id": 56903, "credit_id": "52fe44a19251416c7503b907", "cast_id": 26, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 14}, {"name": "Brent Spiner", "character": "Dr. Strom", "id": 1213786, "credit_id": "52fe44a19251416c7503b90b", "cast_id": 27, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 15}], "directors": [{"name": "Craig Mazin", "department": "Directing", "job": "Director", "credit_id": "52fe44a19251416c7503b895", "profile_path": "/c59ILZnJ8RHlVvRLzIm1Viu9l0k.jpg", "id": 35796}], "vote_average": 5.5, "runtime": 85}, "192145": {"poster_path": "/nbJxNgdIPD32AFNCSHD51A61gf2.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An acclaimed novelist struggles to write an analysis of love in one of three stories, each set in a different city, that detail the beginning, middle and end of a relationship.", "video": false, "id": 192145, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Third Person", "tagline": "Life can change at the turn of a page.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2343793", "adult": false, "backdrop_path": "/wsTFhxSdD2kgH1pMeMNKVzGNfXI.jpg", "production_companies": [{"name": "Volten", "id": 32874}, {"name": "Corsan", "id": 7299}, {"name": "Hwy61", "id": 6320}, {"name": "Lailaps Pictures", "id": 32875}, {"name": "Purple Papaya Films", "id": 32876}], "release_date": "2013-09-09", "popularity": 1.46163304232531, "original_title": "Third Person", "budget": 0, "cast": [{"name": "Liam Neeson", "character": "Michael", "id": 3896, "credit_id": "52fe4c9d9251416c910fa89f", "cast_id": 3, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Julia", "id": 18973, "credit_id": "52fe4c9d9251416c910fa8a3", "cast_id": 4, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "James Franco", "character": "Rick", "id": 17051, "credit_id": "52fe4c9d9251416c910fa8a7", "cast_id": 5, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Olivia Wilde", "character": "Anna", "id": 59315, "credit_id": "52fe4c9d9251416c910fa8ab", "cast_id": 6, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 3}, {"name": "Adrien Brody", "character": "Sean", "id": 3490, "credit_id": "52fe4c9d9251416c910fa8af", "cast_id": 7, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 4}, {"name": "Maria Bello", "character": "Theresa", "id": 49, "credit_id": "52fe4c9d9251416c910fa8b3", "cast_id": 8, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 5}, {"name": "Kim Basinger", "character": "Elaine", "id": 326, "credit_id": "52fe4c9d9251416c910fa8b7", "cast_id": 9, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 6}, {"name": "Moran Atias", "character": "Monika", "id": 84261, "credit_id": "547f3aa1c3a368395c001c17", "cast_id": 10, "profile_path": "/3PBK2kfcqXI5POh9yGWX6Z5BXty.jpg", "order": 7}, {"name": "Katy Louise Saunders", "character": "Gina", "id": 88082, "credit_id": "551174f3925141070100781c", "cast_id": 62, "profile_path": "/8br3XvDujYOZYtlfYEVUaeCyjPZ.jpg", "order": 8}, {"name": "Loan Chabanol", "character": "Sam", "id": 1381175, "credit_id": "5511751cc3a3680174001a9b", "cast_id": 63, "profile_path": null, "order": 9}, {"name": "Riccardo Scamarcio", "character": "Marco", "id": 59270, "credit_id": "551175649251415c320018a4", "cast_id": 64, "profile_path": "/zpphrSmdn2TR0F0kbVG5CAGqfxv.jpg", "order": 10}, {"name": "Daniela Virgilio", "character": "Claire", "id": 107220, "credit_id": "5511758ac3a3680174001aac", "cast_id": 65, "profile_path": "/jM1kofVdBLN9poRU0vZCljh0yZq.jpg", "order": 11}, {"name": "Vinicio Marchioni", "character": "Carlo", "id": 131624, "credit_id": "551175adc3a36802c30019f4", "cast_id": 66, "profile_path": "/3ANJU7qZG6RvIoeFzvrqOUSiZKp.jpg", "order": 12}, {"name": "Vincent Riotta", "character": "Gerry", "id": 26669, "credit_id": "551175d79251415caa00177d", "cast_id": 67, "profile_path": "/4xlR6xTLzzxv6yudPZOunAVmR9n.jpg", "order": 13}, {"name": "Caroline Goodall", "character": "Dr. Gertner", "id": 6692, "credit_id": "551175fec3a3683f39007a77", "cast_id": 68, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 14}, {"name": "Bob Messini", "character": "Giuseppe", "id": 543583, "credit_id": "55117626c3a3681db200dea6", "cast_id": 69, "profile_path": null, "order": 15}, {"name": "Ilaria Genatiempo", "character": "Margaret", "id": 1444979, "credit_id": "55117652925141065c007857", "cast_id": 70, "profile_path": null, "order": 16}], "directors": [{"name": "Paul Haggis", "department": "Directing", "job": "Director", "credit_id": "52fe4c9d9251416c910fa895", "profile_path": "/v2MadHJVrBAv0tEgs9H9PJ9y50z.jpg", "id": 455}], "vote_average": 5.8, "runtime": 137}, "77459": {"poster_path": "/bEqkbV0bYIDWpu2dMc1Zy3aFHhT.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Paris,1910. Emile, a shy movie projectionist, and Raoul, a colorful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city's ruthlessly ambitious police chief.", "video": false, "id": 77459, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "A Monster in Paris", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0961097", "adult": false, "backdrop_path": "/fCZKEiiE3cCIqeWf2WSAiMCvDwN.jpg", "production_companies": [{"name": "Europa Corp", "id": 1075}, {"name": "Scanbox", "id": 8992}], "release_date": "2011-10-12", "popularity": 1.55470647703016, "original_title": "Un monstre \u00e0 Paris", "budget": 0, "cast": [{"name": "Vanessa Paradis", "character": "Lucille", "id": 65007, "credit_id": "52fe496cc3a368484e12ac5d", "cast_id": 1001, "profile_path": "/zPwmGEC7nN43bRIb4eovuTWEE18.jpg", "order": 0}, {"name": "Mathieu Chedid", "character": "Franc\u0153ur", "id": 66841, "credit_id": "52fe496cc3a368484e12ac61", "cast_id": 1002, "profile_path": "/xti6TXbhKfOlQqAlYZjuhWxJTNc.jpg", "order": 1}, {"name": "Gad Elmaleh", "character": "Raoul", "id": 51100, "credit_id": "52fe496cc3a368484e12ac65", "cast_id": 1003, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 2}, {"name": "Fran\u00e7ois Cluzet", "character": "Le pr\u00e9fet Maynott", "id": 33161, "credit_id": "52fe496cc3a368484e12ac69", "cast_id": 1004, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 3}, {"name": "Ludivine Sagnier", "character": "Maud", "id": 4390, "credit_id": "52fe496cc3a368484e12ac6d", "cast_id": 1005, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 4}, {"name": "Julie Ferrier", "character": "Madame Carlotta", "id": 54292, "credit_id": "52fe496cc3a368484e12ac71", "cast_id": 1006, "profile_path": "/lDyve5gGt5KM4hWLeCCYY6XNUcg.jpg", "order": 5}], "directors": [{"name": "Bibo Bergeron", "department": "Directing", "job": "Director", "credit_id": "52fe496cc3a368484e12ac83", "profile_path": null, "id": 65629}], "vote_average": 7.0, "runtime": 90}, "192149": {"poster_path": "/tbpIle72s2cPMlkRaZBOzNkAtG8.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8, "overview": "A thriller centered on a con artist, his wife, and a stranger who try to flee a foreign country after one of them is caught up in the murder of a private detective.", "video": false, "id": 192149, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Two Faces of January", "tagline": "A Mysterious Past. An Unspeakable Secret.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1976000", "adult": false, "backdrop_path": "/5IkoX9y5VPPtfw0J0VMB2JgUBHe.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Timnick Films", "id": 679}, {"name": "StudioCanal", "id": 694}], "release_date": "2014-05-16", "popularity": 0.753031314544239, "original_title": "The Two Faces of January", "budget": 4500000, "cast": [{"name": "Viggo Mortensen", "character": "Chester MacFarland", "id": 110, "credit_id": "52fe4c9d9251416c910fa8e9", "cast_id": 1, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Colette MacFarland", "id": 205, "credit_id": "52fe4c9d9251416c910fa8ed", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Oscar Isaac", "character": "Rydal", "id": 25072, "credit_id": "532c7036c3a3686ef800023e", "cast_id": 10, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 2}, {"name": "Prometheus Aleifer", "character": "Young Musician", "id": 1303061, "credit_id": "532c7050c3a3686eec00021e", "cast_id": 11, "profile_path": "/xmLUXgopPCXapDcDvDwwfOX4jja.jpg", "order": 3}, {"name": "Nikos Mavrakis", "character": "Greek Young Man On Boat", "id": 1303062, "credit_id": "532c7062c3a3686ede000207", "cast_id": 12, "profile_path": "/av7Rzm5ZLOzSpRLHxK3Td9AtKrC.jpg", "order": 4}, {"name": "Yi\u011fit \u00d6z\u015fener", "character": "Yahya", "id": 46066, "credit_id": "532c7075c3a3686f0f000218", "cast_id": 13, "profile_path": "/14IgPlIC3SK4hKR8PI5CnxmqStq.jpg", "order": 5}, {"name": "Daisy Bevan", "character": "Lauren", "id": 1367568, "credit_id": "5424157a0e0a263b7e00390d", "cast_id": 45, "profile_path": "/wwpgbAI8ZHNg5yPZQzXa2A0CL83.jpg", "order": 6}, {"name": "David Warshofsky", "character": "Paul Vittorio", "id": 37204, "credit_id": "5424159d0e0a263b7a0037d5", "cast_id": 46, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 7}, {"name": "James Sobol Kelly", "character": "FBI Agent", "id": 1367569, "credit_id": "542415cac3a368087a003806", "cast_id": 47, "profile_path": "/qh605u1hau27nq8noSOHfFXxSEH.jpg", "order": 8}, {"name": "Karayianni Margaux", "character": "College Student", "id": 1394684, "credit_id": "54814354c3a36829a30051c6", "cast_id": 48, "profile_path": "/bR5hzzRzKAK2DY43rcxHsZlrvrD.jpg", "order": 9}, {"name": "Socrates Alafouzos", "character": "Customs Hall Policeman", "id": 1394685, "credit_id": "548148989251416e7e0052b0", "cast_id": 49, "profile_path": "/vqPHrpEe9IDQfnY5up7cD72y7ao.jpg", "order": 10}, {"name": "Ozan Tas", "character": "Hotelier", "id": 1394687, "credit_id": "54814a13c3a36829a7005254", "cast_id": 50, "profile_path": "/joGell8LBZ3HyaE4TcGaB3X1bEz.jpg", "order": 11}, {"name": "Omiros Poulakis", "character": "Nikos", "id": 1334800, "credit_id": "54814cf09251416e6c004b5a", "cast_id": 51, "profile_path": "/6bx2GomxqRmkhXrx1Y7DWcVrwDY.jpg", "order": 12}, {"name": "\u00d6zcan \u00d6zdemir", "character": "Turkish Police #1", "id": 1355266, "credit_id": "54814f0f9251414d21005080", "cast_id": 52, "profile_path": null, "order": 13}, {"name": "Evgenia Dimitropoulou", "character": "Airline Agent", "id": 1394692, "credit_id": "548150a99251416e7e0053cc", "cast_id": 53, "profile_path": "/bTyOympUK684q8Ht2O8Iax8SqAQ.jpg", "order": 14}, {"name": "Pablo Verdejo", "character": "Burly man", "id": 1394693, "credit_id": "548152c8c3a36829b5006413", "cast_id": 54, "profile_path": null, "order": 15}, {"name": "Kosta Kortidis", "character": "Poiceman #1", "id": 1394694, "credit_id": "548154599251416e7e00543c", "cast_id": 55, "profile_path": null, "order": 16}, {"name": "Peter Mair", "character": "Man in Hotel Corridor", "id": 27655, "credit_id": "54815797c3a36829b50064e2", "cast_id": 56, "profile_path": null, "order": 17}, {"name": "Okan Avci", "character": "Turkish Plain Clothes Man", "id": 107987, "credit_id": "54815831c3a36829ab0056b7", "cast_id": 57, "profile_path": "/lGKLbsWcmYBRWg5MJOw1loDgyZf.jpg", "order": 18}, {"name": "Mehmet Esen", "character": "Turkish Police #2", "id": 1380913, "credit_id": "548158db9251416e6c004cfe", "cast_id": 58, "profile_path": null, "order": 19}, {"name": "Ioannis Vordos", "character": "Cafe Owner", "id": 1394696, "credit_id": "548159579251414efa0057d4", "cast_id": 59, "profile_path": null, "order": 20}, {"name": "Brian Niblett", "character": "Taxi Driver Crete", "id": 1394697, "credit_id": "548159ab9251416e7800532a", "cast_id": 60, "profile_path": null, "order": 21}, {"name": "Angelis Nannos", "character": "Tipsy Hotel Guest in Tuxedo", "id": 1394698, "credit_id": "54815a3bc3a36829ae004e46", "cast_id": 61, "profile_path": null, "order": 22}], "directors": [{"name": "Hossein Amini", "department": "Directing", "job": "Director", "credit_id": "52fe4c9d9251416c910fa8f3", "profile_path": null, "id": 56960}], "vote_average": 5.8, "runtime": 96}, "11931": {"poster_path": "/4jqnazZX2bh8UMUS8rl4nHWWtyb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83073883, "overview": "Irresponsible party girl Maggie (Cameron Diaz) is kicked out of her father's (Ken Howard) and stepmother's (Candice Azzara) home, where she lives for free, and is taken in by her hard-working sister, Philadelphia lawyer Rose (Toni Collette). After Maggie's disruptive ways ruin her sister's love life, Rose turns her out as well. But when their grandmother, who they never knew existed, comes into their lives, the sisters face some complicated truths about themselves and their family.", "video": false, "id": 11931, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "In Her Shoes", "tagline": "Friends. Rivals. Sisters.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0388125", "adult": false, "backdrop_path": "/tkHlTVLylEIBpUypq0z3ZbtxUKc.jpg", "production_companies": [{"name": "Deuce Three Productions", "id": 812}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2005-10-07", "popularity": 1.47839469925689, "original_title": "In Her Shoes", "budget": 0, "cast": [{"name": "Cameron Diaz", "character": "Maggie Feller", "id": 6941, "credit_id": "52fe44a39251416c7503bc7f", "cast_id": 12, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Toni Collette", "character": "Rose Feller", "id": 3051, "credit_id": "52fe44a39251416c7503bc83", "cast_id": 13, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 1}, {"name": "Shirley MacLaine", "character": "Ella Hirsh", "id": 4090, "credit_id": "52fe44a39251416c7503bcb3", "cast_id": 27, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 2}, {"name": "Richard Burgi", "character": "Jim Danvers", "id": 25849, "credit_id": "52fe44a39251416c7503bc87", "cast_id": 14, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 3}, {"name": "Candice Azzara", "character": "Sydelle Feller", "id": 9283, "credit_id": "52fe44a39251416c7503bc8b", "cast_id": 15, "profile_path": "/sotfsarQARGTDzZ7PnKqWnTKVAk.jpg", "order": 4}, {"name": "Anson Mount", "character": "Todd", "id": 56675, "credit_id": "52fe44a39251416c7503bc8f", "cast_id": 16, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 5}, {"name": "Brooke Smith", "character": "Amy", "id": 31649, "credit_id": "52fe44a39251416c7503bc93", "cast_id": 17, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 6}, {"name": "Mark Feuerstein", "character": "Simon Stein", "id": 11365, "credit_id": "52fe44a39251416c7503bc97", "cast_id": 18, "profile_path": "/jIYKKgr0pMUwuvajITsFSPv6ash.jpg", "order": 7}, {"name": "Terrance Christopher Jones", "character": "Lawyer", "id": 188237, "credit_id": "52fe44a39251416c7503bc9b", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Nicole Randall Johnson", "character": "Rose's Assistant", "id": 155687, "credit_id": "52fe44a39251416c7503bc9f", "cast_id": 20, "profile_path": "/nwLrlB3QsFQk0ads0ox53SdKjbT.jpg", "order": 9}, {"name": "Kateri DeMartino", "character": "Ferocious Shopper (as Kateri Demartino)", "id": 204333, "credit_id": "52fe44a39251416c7503bca3", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Alan Blumenfeld", "character": "Mr. Stein", "id": 22053, "credit_id": "52fe44a39251416c7503bca7", "cast_id": 22, "profile_path": "/2ag56MvKkTuhGnUFgJza4hJZl8u.jpg", "order": 11}, {"name": "Jerry Adler", "character": "Lewis Feldman", "id": 24292, "credit_id": "52fe44a39251416c7503bcab", "cast_id": 25, "profile_path": "/3oS2KYKYUxo40nNFv08asY9mNQA.jpg", "order": 12}, {"name": "Ivana Mili\u010devi\u0107", "character": "Caroline, in photos", "id": 29930, "credit_id": "52fe44a39251416c7503bcaf", "cast_id": 26, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 13}, {"name": "Marcia Jean Kurtz", "character": "Mrs. Stein", "id": 14548, "credit_id": "52fe44a39251416c7503bcb7", "cast_id": 28, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 14}, {"name": "Jill Saunders", "character": "Lopey", "id": 545682, "credit_id": "52fe44a39251416c7503bcbb", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Jackie Geary", "character": "My Marcia", "id": 166688, "credit_id": "52fe44a39251416c7503bcbf", "cast_id": 30, "profile_path": "/saIV0KEUYjfDSKsCyODWxCGqbUr.jpg", "order": 16}, {"name": "Eric Balfour", "character": "Grant", "id": 34489, "credit_id": "53fd73b70e0a262def00103b", "cast_id": 31, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 17}, {"name": "Norman Lloyd", "character": "The Professor", "id": 2698, "credit_id": "53fd73d90e0a262df200102c", "cast_id": 32, "profile_path": "/k4ofwRHZPeMSm8M3YWLeyoNvWTN.jpg", "order": 18}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe44a39251416c7503bc3f", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}], "vote_average": 5.9, "runtime": 130}, "11932": {"poster_path": "/u5Lc1Li0Hpc452o57E2KaToezZX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50671850, "overview": "Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.", "video": false, "id": 11932, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Bride of Chucky", "tagline": "Chucky Gets Lucky.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0144120", "adult": false, "backdrop_path": "/lLzrg3yP43T63CaNkDm2VqZUAFU.jpg", "production_companies": [{"name": "Midwinter Productions Inc.", "id": 5550}], "release_date": "1998-10-16", "popularity": 1.20484120088368, "original_title": "Bride of Chucky", "budget": 25000000, "cast": [{"name": "Ed Gale", "character": "Chucky", "id": 1471, "credit_id": "52fe44a39251416c7503bd2d", "cast_id": 15, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 0}, {"name": "Jennifer Tilly", "character": "Tiffany", "id": 7906, "credit_id": "52fe44a39251416c7503bd1d", "cast_id": 11, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 1}, {"name": "Brad Dourif", "character": "Chucky (voice)", "id": 1370, "credit_id": "52fe44a39251416c7503bd21", "cast_id": 12, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 2}, {"name": "Katherine Heigl", "character": "Jade", "id": 25541, "credit_id": "52fe44a39251416c7503bd25", "cast_id": 13, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 3}, {"name": "Nick Stabile", "character": "Jesse", "id": 70958, "credit_id": "52fe44a39251416c7503bd29", "cast_id": 14, "profile_path": "/g21UbSHQAmjkoC6Ls3ybSwNisQI.jpg", "order": 4}, {"name": "John Ritter", "character": "Chief Warren Kincaid", "id": 27772, "credit_id": "52fe44a39251416c7503bd37", "cast_id": 17, "profile_path": "/oM4iv6O97gK7JFiNkdjEBeuN5Q4.jpg", "order": 5}, {"name": "Alexis Arquette", "character": "Damien", "id": 19578, "credit_id": "52fe44a39251416c7503bd3b", "cast_id": 18, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 6}], "directors": [{"name": "Ronny Yu", "department": "Directing", "job": "Director", "credit_id": "52fe44a39251416c7503bce9", "profile_path": "/ttF6ZrZFNznZr79wPSZWYKz2g3m.jpg", "id": 17268}], "vote_average": 5.6, "runtime": 89}, "175774": {"poster_path": "/9ly8nXuDuiAsYjEmAOLJ9ANZpsb.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Gwendolyn Shepherd is a normal 16-year-old, but her family holds a secret: A time-travel gene is expressed in the clan inherited, but not every member of the family is blessed with. Everyone is certain that Gwen's cousin Charlotte has the gene. However, someday Gwendolyn suddenly finds herself in London at the end of the 19th century and realizes that it her, who was born a time traveler. While she is not very enthusiastic about it she will do everything possible to solve the ancient mysteries of the red ruby.", "video": false, "id": 175774, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Ruby Red", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ohLKFB1wHOKaJZvmfrBscjUMWda.jpg", "poster_path": "/AnBx2bL4o6ules0sxKZ79Tvpgrj.jpg", "id": 304025, "name": "Gwendolyn Shepherd Collection"}, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2418558", "adult": false, "backdrop_path": "/1qmKQmvTfM3VDxf73CGaDkvRkvb.jpg", "production_companies": [{"name": "Lieblingsfilm", "id": 13535}, {"name": "mem-film", "id": 13536}, {"name": "Gei\u00dfend\u00f6rfer Film- und Fernsehproduktion (GFF)", "id": 13537}, {"name": "Bayerischer Banken-Fonds", "id": 8987}], "release_date": "2013-03-14", "popularity": 1.6925558227418, "original_title": "Rubinrot", "budget": 0, "cast": [{"name": "Maria Ehrich", "character": "Gwendolyn Shepherd", "id": 70459, "credit_id": "52fe4d64c3a36847f825e705", "cast_id": 4, "profile_path": "/eJdr4Iu4GnB6xtEyU3sEY0bRxCw.jpg", "order": 0}, {"name": "Jannis Niew\u00f6hner", "character": "Gideon de Villiers", "id": 54676, "credit_id": "52fe4d64c3a36847f825e709", "cast_id": 5, "profile_path": "/eRVauc0E425urE8ag1MEGmIOYTj.jpg", "order": 1}, {"name": "Veronica Ferres", "character": "Grace Shepherd", "id": 23524, "credit_id": "52fe4d64c3a36847f825e70d", "cast_id": 6, "profile_path": "/vY3zz9MpIxnUoTygbzvBmMfIcHi.jpg", "order": 2}, {"name": "Uwe Kockisch", "character": "Falk de Villiers", "id": 48711, "credit_id": "52fe4d64c3a36847f825e711", "cast_id": 7, "profile_path": "/i6OMkfLAqKcEtG5hQvCZ6R6vlht.jpg", "order": 3}, {"name": "Katharina Thalbach", "character": "Tante Maddy", "id": 10257, "credit_id": "52fe4d64c3a36847f825e715", "cast_id": 8, "profile_path": "/p9TruCDPZX8Bt9pTAVRWVWtWGzW.jpg", "order": 4}, {"name": "Florian Bartholom\u00e4i", "character": "Paul de Villiers", "id": 231835, "credit_id": "52fe4d64c3a36847f825e719", "cast_id": 9, "profile_path": "/qoxJO79wY8HDMozA5RjPcRnotLy.jpg", "order": 5}, {"name": "Laura Berlin", "character": "Charlotte Montrose", "id": 587208, "credit_id": "52fe4d64c3a36847f825e71d", "cast_id": 10, "profile_path": "/wSHnRsLIMSMDFYrXCnOE3BramlC.jpg", "order": 6}, {"name": "Anna B\u00f6ttcher", "character": "Passantin", "id": 48683, "credit_id": "52fe4d64c3a36847f825e721", "cast_id": 11, "profile_path": "/lhheQFGas1BMZs3wvxDwiUdeSHT.jpg", "order": 7}, {"name": "Sibylle Canonica", "character": "Glenda", "id": 4533, "credit_id": "52fe4d64c3a36847f825e725", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Justine del Corte", "character": "Madame Rossini", "id": 48270, "credit_id": "52fe4d64c3a36847f825e729", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Levin Henning", "character": "Nick Shepherd", "id": 119068, "credit_id": "52fe4d64c3a36847f825e72d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Gottfried John", "character": "Dr. White", "id": 3757, "credit_id": "52fe4d64c3a36847f825e731", "cast_id": 15, "profile_path": "/hOVrTlQwZX4THosi9usXISC7mNS.jpg", "order": 11}, {"name": "Gerlinde Locker", "character": "Lady Arista", "id": 39043, "credit_id": "52fe4d64c3a36847f825e735", "cast_id": 16, "profile_path": "/omwxuRsh9rUINYtV1YoCheqUN71.jpg", "order": 12}, {"name": "Axel Milberg", "character": "Lucas Montrose", "id": 36010, "credit_id": "52fe4d64c3a36847f825e741", "cast_id": 19, "profile_path": "/p4s6tXvvgAhUa7bgSdUeluvci1L.jpg", "order": 15}, {"name": "Josefine Preu\u00df", "character": "Lucy Montrose", "id": 25401, "credit_id": "52fe4d64c3a36847f825e745", "cast_id": 20, "profile_path": "/kvneY1YAGfq1uiQhjzzhihbsTsf.jpg", "order": 16}, {"name": "Chiara Schoras", "character": "Margret Tilney", "id": 41171, "credit_id": "52fe4d64c3a36847f825e749", "cast_id": 21, "profile_path": "/w9Cykm7r9R5H6MsrBtZE6QBq3Wg.jpg", "order": 17}, {"name": "Johannes Silberschneider", "character": "Mr. Bernhard", "id": 23750, "credit_id": "52fe4d64c3a36847f825e74d", "cast_id": 22, "profile_path": "/wNoBsSTxoWuRYlr7o3zNI7AUdSf.jpg", "order": 18}, {"name": "Peter Simonischek", "character": "Graf von St. Germain", "id": 49795, "credit_id": "52fe4d64c3a36847f825e751", "cast_id": 23, "profile_path": "/7Zrv8fxvZzHzt1M7EU8mvrVCgyo.jpg", "order": 19}, {"name": "Kostja Ullmann", "character": "James", "id": 5202, "credit_id": "52fe4d64c3a36847f825e755", "cast_id": 24, "profile_path": "/zGlasppmZ86jmBfWXEvI77eGgaF.jpg", "order": 20}, {"name": "R\u00fcdiger Vogler", "character": "Thomas George", "id": 5266, "credit_id": "52fe4d64c3a36847f825e759", "cast_id": 25, "profile_path": "/dUUXAwPRMkRdv5PSGv8ndWvztDW.jpg", "order": 21}], "directors": [{"name": "Felix Fuchssteiner", "department": "Directing", "job": "Director", "credit_id": "52fe4d64c3a36847f825e6f5", "profile_path": null, "id": 239235}], "vote_average": 6.7, "runtime": 122}, "93856": {"poster_path": "/sSjARwbHdUabVJs3y1TtoCfpckx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18112929, "overview": "A group of six tourists who, looking to go off the beaten path, hire an \"extreme tour guide.\" Ignoring warnings, he takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but a deserted town since the disaster more than 25 years ago. After a brief exploration of the abandoned city, however, the group soon finds themselves stranded, only to discover that they are not alone.", "video": false, "id": 93856, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Chernobyl Diaries", "tagline": "Experience the fallout", "vote_count": 153, "homepage": "http://www.chernobyldiaries.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1991245", "adult": false, "backdrop_path": "/qDbkMnSB1Flp0krrglNtwSZTLEg.jpg", "production_companies": [{"name": "Oren Peli / Brian Witten Pictures", "id": 14734}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2012-05-24", "popularity": 0.435229543704613, "original_title": "Chernobyl Diaries", "budget": 0, "cast": [{"name": "Jesse McCartney", "character": "Chris", "id": 49915, "credit_id": "52fe49429251416c750c2393", "cast_id": 1005, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 0}, {"name": "Jonathan Sadowski", "character": "Paul", "id": 21047, "credit_id": "52fe49429251416c750c2397", "cast_id": 1006, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 1}, {"name": "Olivia Taylor Dudley", "character": "Natalie", "id": 999817, "credit_id": "52fe49429251416c750c239b", "cast_id": 1008, "profile_path": "/h7IwauTb4Zj0CNXSujNcgGixl7F.jpg", "order": 2}, {"name": "Ingrid Bols\u00f8 Berdal", "character": "Zoe", "id": 87879, "credit_id": "52fe49429251416c750c239f", "cast_id": 1010, "profile_path": "/raEPYKXAe6NP0m3WUyJDh7PQUR3.jpg", "order": 3}, {"name": "Alex Feldman", "character": "Medic Goldshmidt", "id": 109786, "credit_id": "52fe49429251416c750c23a3", "cast_id": 1012, "profile_path": "/uWle0GUJgJ5tMUGrpICcFqKy2UD.jpg", "order": 4}, {"name": "Devin Kelley", "character": "Amanda", "id": 496410, "credit_id": "52fe49429251416c750c23a7", "cast_id": 1013, "profile_path": "/zg38AcAAB2wKwBZi3FV8ikj4dZW.jpg", "order": 5}, {"name": "Nathan Phillips", "character": "Michael", "id": 60005, "credit_id": "52fe49429251416c750c23ab", "cast_id": 1014, "profile_path": "/mgR2JHtOp9sjvdj2me1p7wyJV4d.jpg", "order": 6}, {"name": "Dimitri Diatchenko", "character": "Uri", "id": 173269, "credit_id": "52fe49429251416c750c23af", "cast_id": 1015, "profile_path": "/vPScVMpccnmNQSsvYhdwGcReblD.jpg", "order": 7}, {"name": "Milutin Milo\u0161evi\u0107", "character": "Ukrainian Thug", "id": 88052, "credit_id": "532c942b9251413a7b00018d", "cast_id": 1020, "profile_path": "/iiRpc2IlTnXEpw42snIvHd1UMhb.jpg", "order": 8}, {"name": "Milo\u0161 Timotijevi\u0107", "character": "Russian Check Point Guard", "id": 938096, "credit_id": "532c943f9251413a85000176", "cast_id": 1021, "profile_path": "/61W1hJQlBfGMpFgaElEGigXihRc.jpg", "order": 9}, {"name": "Kristof Konrad", "character": "Medic Grotzky", "id": 74502, "credit_id": "53aeceba0e0a26598c0048b5", "cast_id": 1044, "profile_path": "/glLoabE6ofcj9gEW0ejwvN3CyB4.jpg", "order": 10}, {"name": "Pavel Lychnikoff", "character": "Doctor", "id": 52762, "credit_id": "54e8a4819251412eac001c5b", "cast_id": 1071, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 11}], "directors": [{"name": "Bradley Parker", "department": "Directing", "job": "Director", "credit_id": "52fe49429251416c750c237d", "profile_path": "/m8sxUdiqmDyYslCNTiFvr9i97Ag.jpg", "id": 999812}], "vote_average": 4.7, "runtime": 88}, "7451": {"poster_path": "/fPHNTG1OXFBQ6aEVO7Lv8tSgfrY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 277448382, "overview": "Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government \"recruits\" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.", "video": false, "id": 7451, "genres": [{"id": 28, "name": "Action"}], "title": "xXx", "tagline": "A New Breed Of Secret Agent.", "vote_count": 360, "homepage": "", "belongs_to_collection": {"backdrop_path": "/g9Q2dmbxd1F2hHB5VslPbqGM1JV.jpg", "poster_path": "/omRo1Pw4phlELRgYOQ7RyAlccLt.jpg", "id": 52785, "name": "xXx Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0295701", "adult": false, "backdrop_path": "/gNI9gwuzVEnDYylNvMrMLcS7IzB.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Original Film", "id": 333}, {"name": "Revolution Studios", "id": 497}], "release_date": "2002-08-09", "popularity": 1.26623878999035, "original_title": "xXx", "budget": 70000000, "cast": [{"name": "Vin Diesel", "character": "Xander Cage", "id": 12835, "credit_id": "52fe447ec3a36847f8099509", "cast_id": 8, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Asia Argento", "character": "Yelena", "id": 18514, "credit_id": "52fe447ec3a36847f809950d", "cast_id": 9, "profile_path": "/dCbZQbhfpJqPHYXGyMNf5LT5pBz.jpg", "order": 1}, {"name": "Marton Csokas", "character": "Yorgi", "id": 20982, "credit_id": "52fe447ec3a36847f8099511", "cast_id": 10, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Agent Gibbons", "id": 2231, "credit_id": "52fe447ec3a36847f8099515", "cast_id": 11, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Michael Roof", "character": "Agent Toby Lee Shavers", "id": 53347, "credit_id": "52fe447ec3a36847f8099519", "cast_id": 12, "profile_path": "/52LqQBBrjzqhcrwuh3eNMdcBPMb.jpg", "order": 4}, {"name": "Petr J\u00e1kl Jr.", "character": "Kolya", "id": 53348, "credit_id": "52fe447ec3a36847f809951d", "cast_id": 13, "profile_path": "/fvPX3S7jYXGcAxvRf3kmBKKLruz.jpg", "order": 5}, {"name": "Richy M\u00fcller", "character": "Milan Sova", "id": 2341, "credit_id": "52fe447ec3a36847f8099521", "cast_id": 14, "profile_path": "/uRHbuPfF818cC107BedRzzzQsqp.jpg", "order": 6}, {"name": "Joe Bucaro III", "character": "Virg", "id": 51302, "credit_id": "52fe447ec3a36847f8099525", "cast_id": 15, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 7}, {"name": "Eve", "character": "J.J.", "id": 230176, "credit_id": "52fe447ec3a36847f8099529", "cast_id": 16, "profile_path": "/3V7Um9JXpwcuTx6wnO2u1hZ1Jfa.jpg", "order": 8}, {"name": "Leila Arcieri", "character": "Jordan King", "id": 65240, "credit_id": "547c7a929251412d7c002f00", "cast_id": 61, "profile_path": "/mTg8yjkDHO6qoNxISuORh5gSfpF.jpg", "order": 9}, {"name": "William Hope", "character": "Agent Roger Donnan", "id": 10207, "credit_id": "547c7ab4c3a3685af000319b", "cast_id": 62, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 10}, {"name": "Ted Maynard", "character": "James Tannick", "id": 730454, "credit_id": "547c7ad39251412d7f002dc2", "cast_id": 63, "profile_path": null, "order": 11}, {"name": "Joe Bucaro III", "character": "Virg", "id": 51302, "credit_id": "547c7af59251412d6d002d57", "cast_id": 64, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 12}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f80994e1", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.7, "runtime": 124}, "10184": {"poster_path": "/edhRz4ESv4ElTA6wWfBMurwrQwJ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177259441, "overview": "Remember that really cute guy who said he'd call...and didn't? Maybe he lost your number. Maybe he's in the hospital. Maybe he's awed by your beauty, brains or success. Or maybe He's Just Not That into You.", "video": false, "id": 10184, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "He's Just Not That Into You", "tagline": "Are you the exception...or the rule?", "vote_count": 244, "homepage": "http://www.hesjustnotthatintoyoumovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1001508", "adult": false, "backdrop_path": "/lyltBzgnMcWo13FTc1RyU8Xl1Zk.jpg", "production_companies": [{"name": "Internationale Filmproduktion Blackswan", "id": 51190}, {"name": "New Line Cinema", "id": 12}, {"name": "Flower Films (II)", "id": 19813}], "release_date": "2009-02-06", "popularity": 2.04738550634294, "original_title": "He's Just Not That Into You", "budget": 40000000, "cast": [{"name": "Jennifer Aniston", "character": "Beth", "id": 4491, "credit_id": "52fe433d9251416c75008c25", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Janine", "id": 6161, "credit_id": "52fe433d9251416c75008c29", "cast_id": 3, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Mary", "id": 69597, "credit_id": "52fe433d9251416c75008c2d", "cast_id": 4, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Ginnifer Goodwin", "character": "Gigi", "id": 417, "credit_id": "52fe433d9251416c75008c31", "cast_id": 5, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 3}, {"name": "Ben Affleck", "character": "Neil", "id": 880, "credit_id": "52fe433d9251416c75008c35", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 4}, {"name": "Kevin Connolly", "character": "Connor", "id": 16666, "credit_id": "52fe433d9251416c75008c39", "cast_id": 8, "profile_path": "/4bKLYeNGbIdFE5iEal9o8yjWQdz.jpg", "order": 5}, {"name": "Bradley Cooper", "character": "Ben", "id": 51329, "credit_id": "52fe433d9251416c75008c3d", "cast_id": 10, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 6}, {"name": "Scarlett Johansson", "character": "Anna Marks", "id": 1245, "credit_id": "52fe433d9251416c75008c41", "cast_id": 11, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 7}, {"name": "Kris Kristofferson", "character": "Ken Murphy", "id": 10823, "credit_id": "52fe433d9251416c75008c45", "cast_id": 12, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 8}, {"name": "Justin Long", "character": "Alex", "id": 15033, "credit_id": "52fe433d9251416c75008c49", "cast_id": 13, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 9}, {"name": "Annie Ilonzeh", "character": "Hot Girl", "id": 209196, "credit_id": "52fe433d9251416c75008c4d", "cast_id": 14, "profile_path": "/pClp0YqYYVjeKOzrjzS5S1Mi7GH.jpg", "order": 10}, {"name": "Hedy Burress", "character": "Laura", "id": 41558, "credit_id": "53d315810e0a262838000a0a", "cast_id": 19, "profile_path": "/mktE9DQDLIbycur8Y78QO4KscRg.jpg", "order": 11}, {"name": "Sasha Alexander", "character": "Catherine", "id": 64154, "credit_id": "53d315950e0a26284d00089d", "cast_id": 20, "profile_path": "/glTuArtuQbEbhor5MFvTdpF9IKQ.jpg", "order": 12}, {"name": "Natasha Leggero", "character": "Amber", "id": 1214835, "credit_id": "54271981c3a3680b370005bd", "cast_id": 21, "profile_path": "/xLHMLRHRrQ03zHukUNi1q5yroxt.jpg", "order": 13}], "directors": [{"name": "Ken Kwapis", "department": "Directing", "job": "Director", "credit_id": "52fe433d9251416c75008c21", "profile_path": "/oPjor2KnZcSXmtude62KT62yBsu.jpg", "id": 29009}], "vote_average": 5.9, "runtime": 129}, "11967": {"poster_path": "/wkGbwWHIM23BkmMBm7GQHaCZan8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44726644, "overview": "A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.", "video": false, "id": 11967, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Young Guns", "tagline": "Six reasons why the west was wild.", "vote_count": 71, "homepage": "", "belongs_to_collection": {"backdrop_path": "/whZZ13xGyCLFn21yVhQ9RXMSuKh.jpg", "poster_path": "/26Y1BApN2lOO18NX2ibEHOwbL1L.jpg", "id": 9329, "name": "Young Guns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096487", "adult": false, "backdrop_path": "/llVClV0i94ELiR9dO47fJkPwbq6.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Morgan Creek Productions", "id": 10210}], "release_date": "1988-08-12", "popularity": 0.733808328947243, "original_title": "Young Guns", "budget": 13000000, "cast": [{"name": "Emilio Estevez", "character": "William H. 'Billy the Kid' Bonney", "id": 2880, "credit_id": "52fe44ab9251416c7503ce91", "cast_id": 11, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 0}, {"name": "Kiefer Sutherland", "character": "Josiah Gordon 'Doc' Scurlock", "id": 2628, "credit_id": "52fe44ab9251416c7503ce95", "cast_id": 12, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 1}, {"name": "Lou Diamond Phillips", "character": "Jose Chavez y Chavez", "id": 38560, "credit_id": "52fe44ab9251416c7503ce99", "cast_id": 13, "profile_path": "/afXcQRss7rZ6Ocx7PUQFbz7tPOm.jpg", "order": 2}, {"name": "Charlie Sheen", "character": "Dick Brewer", "id": 6952, "credit_id": "52fe44ab9251416c7503ce9d", "cast_id": 14, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 3}, {"name": "Dermot Mulroney", "character": "Dirty Steve Stephens", "id": 20212, "credit_id": "52fe44ab9251416c7503cea1", "cast_id": 15, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 4}, {"name": "Casey Siemaszko", "character": "Charles 'Charley' Bowdre", "id": 1953, "credit_id": "52fe44ab9251416c7503cea5", "cast_id": 16, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 5}, {"name": "Terence Stamp", "character": "John Tunstall", "id": 28641, "credit_id": "52fe44ab9251416c7503cea9", "cast_id": 17, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 6}, {"name": "Jack Palance", "character": "Lawrence G. Murphy", "id": 3785, "credit_id": "52fe44ab9251416c7503cead", "cast_id": 18, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 7}, {"name": "Terry O'Quinn", "character": "Alex McSween", "id": 12646, "credit_id": "52fe44ab9251416c7503ceb1", "cast_id": 19, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 8}, {"name": "Sharon Cain Thomas", "character": "Susan McSween", "id": 1129541, "credit_id": "52fe44ab9251416c7503ceb5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Geoffrey Blake", "character": "J. McCloskey", "id": 148122, "credit_id": "52fe44ab9251416c7503ceb9", "cast_id": 21, "profile_path": "/8DTss5Bkio4k81k6SM1AXaNfKOA.jpg", "order": 10}, {"name": "Alice Carter", "character": "Yen Sun", "id": 196629, "credit_id": "52fe44ab9251416c7503cebd", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Brian Keith", "character": "Buckshot Roberts", "id": 32791, "credit_id": "52fe44ac9251416c7503cec1", "cast_id": 23, "profile_path": "/jtM2bb1un0Lhft4H2FH6DbRd7Qd.jpg", "order": 12}, {"name": "Patrick Wayne", "character": "Patrick Floyd 'Pat' Garrett", "id": 30560, "credit_id": "52fe44ac9251416c7503cec5", "cast_id": 24, "profile_path": "/plZJV39nkOfo9kGEzmkvZKz19rU.jpg", "order": 13}], "directors": [{"name": "Christopher Cain", "department": "Directing", "job": "Director", "credit_id": "52fe44ab9251416c7503ce57", "profile_path": "/atUMxA5Anavwqdd5tH3B3S8ayli.jpg", "id": 56828}], "vote_average": 6.2, "runtime": 107}, "11968": {"poster_path": "/m64ptUEvvDDgeju5DlwKe6l92Tp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18782227, "overview": "Red-hot action superstars Paul Walker and Jessica Alba heat up the screen as two sexy young divers who dream of finding hidden treasure. When they take some friends (Scott Caan and Ashley Scott) on an extreme sport adventure, the last thing they expect to see below the shark-infested waters is a legendary pirate ship rumored to contain millions of dollars in gold.", "video": false, "id": 11968, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Into the Blue", "tagline": "Treasure Has Its Price.", "vote_count": 118, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sWnLZZaUHEKGQOVn445k91pfjrb.jpg", "poster_path": "/dbWCijxyc3YxFdiQen63GTyvu4l.jpg", "id": 174386, "name": "Into the Blue Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0378109", "adult": false, "backdrop_path": "/4MkdaWN5coyFYQs2giE4saCO1bD.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2005-09-30", "popularity": 0.643911961504459, "original_title": "Into the Blue", "budget": 50000000, "cast": [{"name": "Paul Walker", "character": "Jared", "id": 8167, "credit_id": "52fe44ac9251416c7503cf13", "cast_id": 10, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sam", "id": 56731, "credit_id": "52fe44ac9251416c7503cf17", "cast_id": 11, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Scott Caan", "character": "Bryce", "id": 1894, "credit_id": "52fe44ac9251416c7503cf1b", "cast_id": 12, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 2}, {"name": "Ashley Scott", "character": "Amanda", "id": 71128, "credit_id": "52fe44ac9251416c7503cf1f", "cast_id": 13, "profile_path": "/pHQXzpZbb1T5HobppWZtIMbjyIC.jpg", "order": 3}, {"name": "Josh Brolin", "character": "Bates", "id": 16851, "credit_id": "52fe44ac9251416c7503cf2f", "cast_id": 16, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 4}, {"name": "Chris Taloa", "character": "Quinn", "id": 57089, "credit_id": "52fe44ac9251416c7503cf33", "cast_id": 17, "profile_path": "/AlDaCxbKLaV8pcF8uuw1mhUAuHr.jpg", "order": 5}, {"name": "James Frain", "character": "Reyes", "id": 22063, "credit_id": "52fe44ac9251416c7503cf37", "cast_id": 18, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 6}, {"name": "Dwayne Adway", "character": "Roy", "id": 92589, "credit_id": "52fe44ac9251416c7503cf3b", "cast_id": 19, "profile_path": "/7JJPY8hWrdPcDFxDkj40UoYuv6W.jpg", "order": 7}, {"name": "Tyson Beckford", "character": "Primo", "id": 77072, "credit_id": "52fe44ac9251416c7503cf3f", "cast_id": 20, "profile_path": "/v1GenKXn7vE36vCLCqDWgaS7bEd.jpg", "order": 8}], "directors": [{"name": "John Stockwell", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503cef1", "profile_path": "/9AQo5W5T6vP6WTcDvHx1CbbiOzU.jpg", "id": 57082}], "vote_average": 6.0, "runtime": 110}, "11969": {"poster_path": "/yU4e7OAJruAQpAsakzbDpPsQrU7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56505065, "overview": "Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.", "video": false, "id": 11969, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 37, "name": "Western"}], "title": "Tombstone", "tagline": "Justice is coming.", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108358", "adult": false, "backdrop_path": "/dxuhQd2sfa4lzEsRrVhiP7TAxuw.jpg", "production_companies": [{"name": "Hollywood Pictures", "id": 915}, {"name": "Cinergi Pictures Entertainment", "id": 1504}], "release_date": "1993-12-25", "popularity": 0.94823806618831, "original_title": "Tombstone", "budget": 25000000, "cast": [{"name": "Kurt Russell", "character": "Wyatt Earp", "id": 6856, "credit_id": "52fe44ac9251416c7503cfb1", "cast_id": 11, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Val Kilmer", "character": "Doc Holliday", "id": 5576, "credit_id": "52fe44ac9251416c7503cfb5", "cast_id": 12, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 1}, {"name": "Sam Elliott", "character": "Virgil Earp", "id": 16431, "credit_id": "52fe44ac9251416c7503cfb9", "cast_id": 13, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Morgan Earp", "id": 2053, "credit_id": "52fe44ac9251416c7503cfbd", "cast_id": 14, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Stephen Lang", "character": "Ike Clanton", "id": 32747, "credit_id": "52fe44ac9251416c7503cfc7", "cast_id": 16, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 4}, {"name": "Powers Boothe", "character": "Curly Bill Brocius", "id": 6280, "credit_id": "52fe44ac9251416c7503cfcb", "cast_id": 17, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 5}, {"name": "Michael Biehn", "character": "Johnny Ringo", "id": 2712, "credit_id": "52fe44ac9251416c7503cfcf", "cast_id": 18, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 6}, {"name": "Charlton Heston", "character": "Henry Hooker", "id": 10017, "credit_id": "52fe44ac9251416c7503cfd3", "cast_id": 19, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 7}, {"name": "Dana Delany", "character": "Josephine Marcus", "id": 65002, "credit_id": "52fe44ac9251416c7503cfd7", "cast_id": 20, "profile_path": "/dCvBuRdn2h4GpAfdJIzvl6MUqIG.jpg", "order": 8}, {"name": "Thomas Haden Church", "character": "Billy Clanton", "id": 19159, "credit_id": "52fe44ac9251416c7503cfdb", "cast_id": 21, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 9}, {"name": "Dana Wheeler-Nicholson", "character": "Mattie Earp", "id": 58866, "credit_id": "52fe44ac9251416c7503cfdf", "cast_id": 22, "profile_path": "/tYbrquJFfHU4KzxFQ1GXDEKYAyn.jpg", "order": 10}, {"name": "Michael Rooker", "character": "Sherman McMasters", "id": 12132, "credit_id": "52fe44ac9251416c7503cfe3", "cast_id": 23, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 11}, {"name": "Billy Bob Thornton", "character": "Johnny Tyler", "id": 879, "credit_id": "52fe44ac9251416c7503cfe7", "cast_id": 24, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 12}, {"name": "Billy Zane", "character": "Mr. Fabian", "id": 1954, "credit_id": "52fe44ac9251416c7503cfeb", "cast_id": 25, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 13}, {"name": "Michelle Beauchamp", "character": "Mexican bride (uncredited)", "id": 1333597, "credit_id": "53a8012bc3a3687a40005051", "cast_id": 36, "profile_path": "/d0PYvcpowq0OQHV5XhD0lMABQI3.jpg", "order": 14}, {"name": "Lisa Collins", "character": "Louisa Earp", "id": 936813, "credit_id": "53a804b70e0a2614320058d2", "cast_id": 37, "profile_path": "/lBHr2HDlmT6QGeLM9bCknXB5MWN.jpg", "order": 15}, {"name": "John Philbin", "character": "Tom Mclaury", "id": 103011, "credit_id": "53a810e80e0a261439005a02", "cast_id": 38, "profile_path": "/hVRZLok1DmiiUQ5lBXOYx04Ibk4.jpg", "order": 16}, {"name": "Pat Brady", "character": "Milt Joyce", "id": 1229197, "credit_id": "53a8b4e5c3a3687a40005d49", "cast_id": 39, "profile_path": "/igzT9AyyVBESOLQEEjh4ihPCUX9.jpg", "order": 17}, {"name": "Forrie J. Smith", "character": "Pony Deal", "id": 1333809, "credit_id": "53a8b8adc3a3687a34005dd7", "cast_id": 40, "profile_path": "/lDwyuYHMrCgMX8H5Nad2JM6LoL9.jpg", "order": 18}, {"name": "Bo Greigh", "character": "Wes Fuller (as W.R. Bo Gray)", "id": 68447, "credit_id": "53a8b96cc3a3687a2b006304", "cast_id": 41, "profile_path": "/fFSX6Vbp2nxf9RVhzAFyN474vGm.jpg", "order": 19}, {"name": "Christopher Mitchum", "character": "Ranch Hand", "id": 37251, "credit_id": "547a51cb925141298d00313c", "cast_id": 79, "profile_path": "/jgrG3IE77xAFAKghLHvXuhHxF84.jpg", "order": 20}, {"name": "Robert Mitchum", "character": "Narrator (voice)", "id": 10158, "credit_id": "547a51f49251414c65000478", "cast_id": 80, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 21}], "directors": [{"name": "George P. Cosmatos", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503cfc3", "profile_path": "/6DIKPjnDvr7oHgTPHTXM5te45Qt.jpg", "id": 16566}], "vote_average": 7.0, "runtime": 130}, "11970": {"poster_path": "/eFlBFMAifj436QctX3akDkUnhlk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 252712101, "overview": "Bestowed with superhuman strength, a young mortal named Hercules sets out to prove himself a hero in the eyes of his father, the great god Zeus. Along with his friends Pegasus, a flying horse, and Phil, a personal trainer, Hercules is tricked by the hilarious, hotheaded villain Hades, who's plotting to take over Mount Olympus!", "video": false, "id": 11970, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Hercules", "tagline": "Zero to Hero!", "vote_count": 344, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt0119282", "adult": false, "backdrop_path": "/clvgKN7DWTXm4b81HAHNvcvkBqX.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1997-06-27", "popularity": 1.92236528517421, "original_title": "Hercules", "budget": 85000000, "cast": [{"name": "Tate Donovan", "character": "Hercules (voice)", "id": 15455, "credit_id": "52fe44ac9251416c7503d08d", "cast_id": 16, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 0}, {"name": "Josh Keaton", "character": "Young Hercules (voice)", "id": 20903, "credit_id": "52fe44ac9251416c7503d091", "cast_id": 20, "profile_path": "/a5V2UtUKApe38ZW9OiZbFRAvvTh.jpg", "order": 1}, {"name": "Roger Bart", "character": "Young Hercules (singing voice)", "id": 45566, "credit_id": "52fe44ac9251416c7503d095", "cast_id": 21, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 2}, {"name": "Danny DeVito", "character": "Philoctetes (voice)", "id": 518, "credit_id": "52fe44ac9251416c7503d099", "cast_id": 22, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 3}, {"name": "James Woods", "character": "Hades (voice)", "id": 4512, "credit_id": "52fe44ac9251416c7503d09d", "cast_id": 23, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 4}, {"name": "Susan Egan", "character": "Meg (voice)", "id": 86128, "credit_id": "52fe44ac9251416c7503d0a1", "cast_id": 24, "profile_path": "/makjHZa6ZsjH16gLp276tB1Krd3.jpg", "order": 5}, {"name": "Bobcat Goldthwait", "character": "Pain (voice)", "id": 95024, "credit_id": "52fe44ac9251416c7503d0a5", "cast_id": 25, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 6}, {"name": "Matt Frewer", "character": "Panic (voice)", "id": 40009, "credit_id": "52fe44ac9251416c7503d0a9", "cast_id": 26, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 7}, {"name": "Rip Torn", "character": "Zeus (voice)", "id": 9626, "credit_id": "52fe44ac9251416c7503d0ad", "cast_id": 27, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 8}, {"name": "Samantha Eggar", "character": "Hera (voice)", "id": 46780, "credit_id": "52fe44ac9251416c7503d0b1", "cast_id": 28, "profile_path": "/uPcE3Vra0l4E5f8GNKUjCX88w3c.jpg", "order": 9}, {"name": "Barbara Barrie", "character": "Alcmene (voice)", "id": 1216876, "credit_id": "52fe44ac9251416c7503d0d1", "cast_id": 37, "profile_path": "/psxyqrMnZaMHmIJRvSL0bjb0sYt.jpg", "order": 10}, {"name": "Hal Holbrook", "character": "Amphitryon (voice)", "id": 11066, "credit_id": "52fe44ac9251416c7503d0b5", "cast_id": 30, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 11}, {"name": "Paul Shaffer", "character": "Hermes (voice)", "id": 69921, "credit_id": "52fe44ac9251416c7503d0b9", "cast_id": 31, "profile_path": "/gYzsDxVSklmGuHHH2wZpWljqBrJ.jpg", "order": 12}, {"name": "Amanda Plummer", "character": "The Fates (voice)", "id": 99, "credit_id": "52fe44ac9251416c7503d0bd", "cast_id": 32, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 13}, {"name": "Carole Shelley", "character": "Lachesis (voice)", "id": 58770, "credit_id": "52fe44ac9251416c7503d0c1", "cast_id": 33, "profile_path": "/p9XDqB8LOG09DOwGQ3EXYr78KMt.jpg", "order": 14}, {"name": "Paddi Edwards", "character": "Atropos (voice)", "id": 157660, "credit_id": "52fe44ac9251416c7503d0c5", "cast_id": 34, "profile_path": "/l5hQV4JBI2irJFYNfNxdsvXKKQz.jpg", "order": 15}, {"name": "Charlton Heston", "character": "Narrator (voice)", "id": 10017, "credit_id": "52fe44ac9251416c7503d0c9", "cast_id": 35, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 16}, {"name": "LaChanze", "character": "Terpsichore the Muse of Dance (voice)", "id": 56689, "credit_id": "52fe44ac9251416c7503d0cd", "cast_id": 36, "profile_path": "/g3P0Q3ZJZaUabXZi7gdaBzMniHh.jpg", "order": 17}], "directors": [{"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503d035", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}, {"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503d047", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}], "vote_average": 6.7, "runtime": 93}, "28355": {"poster_path": "/xSyj4F1UVtAXhqSGpNCZRaBsKAJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29000000, "overview": "In her many years as a social worker, Emily Jenkins believes she has seen it all, until she meets 10-year-old Lilith and the girl's cruel parents. Emily's worst fears are confirmed when the parents try to harm the child, and so Emily assumes custody of Lilith while she looks for a foster family. However, Emily soon finds that dark forces surround the seemingly innocent girl, and the more she tries to protect Lilith, the more horrors she encounters.", "video": false, "id": 28355, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Case 39", "tagline": "Some cases should never be opened.", "vote_count": 106, "homepage": "http://www.case39movie.com/mainsite/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0795351", "adult": false, "backdrop_path": "/luTLwjU4WpQR2zBxJAKdK1D7C8T.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Misher Films", "id": 11581}, {"name": "Anonymous Content", "id": 10039}, {"name": "Case 39 Productions", "id": 11582}], "release_date": "2009-08-13", "popularity": 0.88459130774322, "original_title": "Case 39", "budget": 27000000, "cast": [{"name": "Ren\u00e9e Zellweger", "character": "Emily Jenkins", "id": 9137, "credit_id": "52fe458ec3a368484e06227f", "cast_id": 1, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 0}, {"name": "Jodelle Ferland", "character": "Lillith Sullivan", "id": 8338, "credit_id": "52fe458ec3a368484e062283", "cast_id": 2, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 1}, {"name": "Ian McShane", "character": "Detective Mike Barron", "id": 6972, "credit_id": "52fe458ec3a368484e062287", "cast_id": 3, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 2}, {"name": "Kerry O'Malley", "character": "Margaret Sullivan", "id": 100567, "credit_id": "52fe458ec3a368484e06228b", "cast_id": 4, "profile_path": "/j42ByTSTXyRmcN3WJAUDOkwNJvQ.jpg", "order": 3}, {"name": "Callum Keith Rennie", "character": "Edward Sullivan", "id": 540, "credit_id": "52fe458ec3a368484e06228f", "cast_id": 5, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 4}, {"name": "Bradley Cooper", "character": "Douglas J. Ames", "id": 51329, "credit_id": "52fe458ec3a368484e062293", "cast_id": 6, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 5}, {"name": "Adrian Lester", "character": "Wayne", "id": 76215, "credit_id": "52fe458ec3a368484e062297", "cast_id": 7, "profile_path": "/bgp0SyX9ZczUbEnRldpq8IimhuT.jpg", "order": 6}, {"name": "Cynthia Stevenson", "character": "Nancy", "id": 65528, "credit_id": "52fe458fc3a368484e0622d7", "cast_id": 20, "profile_path": "/b59DN25UqjxOLHVBFLMtbiOwn0W.jpg", "order": 7}, {"name": "Alexander Conti", "character": "Diego", "id": 133926, "credit_id": "52fe458fc3a368484e0622db", "cast_id": 21, "profile_path": "/xa2sfSRapHrHmRyp5aHQ7258qtG.jpg", "order": 8}, {"name": "Philip Cabrita", "character": "Javier", "id": 1120617, "credit_id": "52fe458fc3a368484e0622df", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Vanesa Tomasino", "character": "Javier's Wife", "id": 112643, "credit_id": "52fe458fc3a368484e0622e3", "cast_id": 23, "profile_path": "/bOfRnaY6JTD2PvD82HzENmysG5s.jpg", "order": 10}, {"name": "Mary Black", "character": "Custody Judge", "id": 11831, "credit_id": "52fe458fc3a368484e0622e7", "cast_id": 24, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 11}, {"name": "Domenico D'Ambrosio", "character": "Domenico D'Ambrosio", "id": 73539, "credit_id": "52fe458fc3a368484e0622eb", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Benita Ha", "character": "Therapist", "id": 75532, "credit_id": "52fe458fc3a368484e0622ef", "cast_id": 26, "profile_path": "/m1DrOGvyxNOxrx4lND5X1bgL7tx.jpg", "order": 13}, {"name": "J. Winston Carroll", "character": "Judge", "id": 1145894, "credit_id": "52fe458fc3a368484e0622f3", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Michael Bean", "character": "Co-Worker", "id": 208146, "credit_id": "52fe458fc3a368484e0622f7", "cast_id": 28, "profile_path": "/w0Ysg5vb8pJ8vEzR2IMh8YlraBG.jpg", "order": 15}, {"name": "Lesley Ewen", "character": "Co-Worker", "id": 158609, "credit_id": "52fe458fc3a368484e0622fb", "cast_id": 29, "profile_path": "/xb56wPY1VJhSMWa7Nv7ttHNLZ5k.jpg", "order": 16}, {"name": "David Patrick Green", "character": "Chief Psychiatrist", "id": 203315, "credit_id": "52fe458fc3a368484e0622ff", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Dee Jay Jackson", "character": "Bus Driver", "id": 1187262, "credit_id": "52fe458fc3a368484e062303", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Taya Calicetto", "character": "Young Emily", "id": 168569, "credit_id": "52fe458fc3a368484e062307", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Alisen Down", "character": "Emily's Mother", "id": 90813, "credit_id": "52fe458fc3a368484e06230b", "cast_id": 33, "profile_path": "/guPjTlGDeCjzSbPvlGEsT70AYNN.jpg", "order": 20}, {"name": "Darryl Quon", "character": "Inmate", "id": 62711, "credit_id": "52fe458fc3a368484e06230f", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Suzanne Bastien", "character": "Nurse", "id": 169783, "credit_id": "52fe458fc3a368484e062313", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Jane Braithwaite", "character": "Nurse", "id": 1203951, "credit_id": "52fe458fc3a368484e062317", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Colin Lawrence", "character": "Police Sergeant", "id": 37696, "credit_id": "52fe458fc3a368484e06231f", "cast_id": 38, "profile_path": "/4RpYM2hJNQXTzqDfVlv4NSAd6GG.jpg", "order": 25}, {"name": "Dagmar Midcap", "character": "News Anchor", "id": 169491, "credit_id": "52fe458fc3a368484e062323", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Fran Gebhard", "character": "Coordinator", "id": 175734, "credit_id": "52fe458fc3a368484e062327", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Bill Mondy", "character": "Interviewer", "id": 83959, "credit_id": "52fe458fc3a368484e06232b", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Andrew Airlie", "character": "Doctor", "id": 41436, "credit_id": "52fe458fc3a368484e06232f", "cast_id": 42, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 29}, {"name": "Sarah-Jane Redmond", "character": "Barron's Wife", "id": 59183, "credit_id": "52fe458fc3a368484e062333", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Charles Zuckermann", "character": "Demon Person", "id": 90726, "credit_id": "52fe458fc3a368484e062337", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Yvonne Valdez", "character": "Mrs. Lynch", "id": 1202353, "credit_id": "52fe458fc3a368484e06233b", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Paul Duchart", "character": "Priest", "id": 1203953, "credit_id": "52fe458fc3a368484e06233f", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Daniel Bacon", "character": "Businessperson", "id": 61187, "credit_id": "52fe458fc3a368484e062343", "cast_id": 47, "profile_path": "/thLJx8rAqpxGI1YlCr9SIae1JOU.jpg", "order": 34}, {"name": "Darren E. Scott", "character": "Young Cop", "id": 1070350, "credit_id": "52fe458fc3a368484e062347", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Dalias Blake", "character": "Detention Center Cop", "id": 183016, "credit_id": "52fe458fc3a368484e06234b", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Phillip Mitchell", "character": "Lead Guard", "id": 158390, "credit_id": "52fe458fc3a368484e06234f", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Camille Atebe", "character": "New Caseworker (uncredited)", "id": 206618, "credit_id": "52fe458fc3a368484e062353", "cast_id": 51, "profile_path": "/lOg3UvW7OZ4gOutPhDaNr7xwCgD.jpg", "order": 38}, {"name": "Linden Banks", "character": "Angry Man (uncredited)", "id": 168436, "credit_id": "52fe458fc3a368484e062357", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Georgia Craig", "character": "Denise (uncredited)", "id": 172925, "credit_id": "52fe458fc3a368484e06235b", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Terence Dament", "character": "Bailiff (uncredited)", "id": 208071, "credit_id": "52fe458fc3a368484e06235f", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Jillian Fargey", "character": "Foster Mom (uncredited)", "id": 116571, "credit_id": "52fe458fc3a368484e062363", "cast_id": 55, "profile_path": "/4XgUjItZtvzxaHwvDiBvRhRNiIF.jpg", "order": 42}, {"name": "Ryan Harder", "character": "Foster Brother (uncredited)", "id": 1203955, "credit_id": "52fe458fc3a368484e062367", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Adrian Hough", "character": "Man in Suit (uncredited)", "id": 11828, "credit_id": "52fe458fc3a368484e06236b", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Tiffany Lyndall-Knight", "character": "Darla - Teacher (uncredited)", "id": 125581, "credit_id": "52fe458fc3a368484e06236f", "cast_id": 58, "profile_path": "/15M9lq3ralCL1xC0bGmLkbaje7W.jpg", "order": 45}, {"name": "Hal Myshrall", "character": "Gay Adoptive Parent (uncredited)", "id": 1203958, "credit_id": "52fe458fc3a368484e062373", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "Kate Robbins", "character": "Supervisor (uncredited)", "id": 162445, "credit_id": "52fe458fc3a368484e062377", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "Michael Ryan", "character": "Foster Dad (uncredited)", "id": 189948, "credit_id": "52fe458fc3a368484e06237b", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Sadie", "character": "Terror Dog (uncredited)", "id": 1108511, "credit_id": "52fe458fc3a368484e06237f", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Norm Sherry", "character": "Principal (uncredited)", "id": 1203964, "credit_id": "52fe458fc3a368484e062383", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Cindy Sungu", "character": "Mia - Girl in Classroom (uncredited)", "id": 1203965, "credit_id": "52fe458fc3a368484e062387", "cast_id": 64, "profile_path": null, "order": 51}, {"name": "John Andrew Vaas", "character": "Inmate (uncredited)", "id": 1203966, "credit_id": "52fe458fc3a368484e06238b", "cast_id": 65, "profile_path": null, "order": 52}, {"name": "Ian Wallace", "character": "Lunatic (uncredited)", "id": 1203967, "credit_id": "52fe458fc3a368484e06238f", "cast_id": 66, "profile_path": null, "order": 53}, {"name": "Ian A. Wallace", "character": "Bald Lunatic (uncredited)", "id": 115245, "credit_id": "52fe458fc3a368484e062393", "cast_id": 67, "profile_path": null, "order": 54}, {"name": "Danny Wattley", "character": "Detention Center Cop (uncredited)", "id": 169467, "credit_id": "52fe458fc3a368484e062397", "cast_id": 68, "profile_path": null, "order": 55}, {"name": "Fulvio Cecere", "character": "Fire Marshall", "id": 65808, "credit_id": "5427afa70e0a265572001a3a", "cast_id": 72, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 56}], "directors": [{"name": "Christian Alvart", "department": "Directing", "job": "Director", "credit_id": "52fe458ec3a368484e06229d", "profile_path": null, "id": 54559}], "vote_average": 5.8, "runtime": 109}, "11974": {"poster_path": "/zPEECSo5ZOBr9oEmBLSVXcqndTO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36602000, "overview": "When secretive new neighbors move in next door, suburbanite Ray Peterson and his friends let their paranoia get the best of them as they start to suspect the newcomers of evildoings and commence an investigation. But it's hardly how Ray, who much prefers drinking beer, reading his newspaper and watching a ball game on the tube expected to spend his vacation.", "video": false, "id": 11974, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The 'Burbs", "tagline": "He's a man of peace in a savage land... Suburbia.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096734", "adult": false, "backdrop_path": "/djcYvxheVPeDzNts7zMrprPMFtE.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1989-02-16", "popularity": 0.394251089595539, "original_title": "The 'Burbs", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Ray Peterson", "id": 31, "credit_id": "52fe44ad9251416c7503d27b", "cast_id": 8, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Carrie Fisher", "character": "Carol Peterson", "id": 4, "credit_id": "52fe44ad9251416c7503d27f", "cast_id": 9, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 1}, {"name": "Cory Danziger", "character": "Dave Peterson", "id": 71143, "credit_id": "52fe44ad9251416c7503d283", "cast_id": 10, "profile_path": "/anrgnTltTHdNJ88uAqH1z85HkvA.jpg", "order": 2}, {"name": "Bruce Dern", "character": "Mark Rumsfield", "id": 6905, "credit_id": "52fe44ad9251416c7503d287", "cast_id": 11, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 3}, {"name": "Rick Ducommun", "character": "Art Weingartner", "id": 1538, "credit_id": "52fe44ad9251416c7503d291", "cast_id": 13, "profile_path": "/d1tBYjxG2VuLX6ryj5BrrGQJ0UL.jpg", "order": 4}, {"name": "Corey Feldman", "character": "Ricky Butler", "id": 3034, "credit_id": "52fe44ad9251416c7503d295", "cast_id": 14, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 5}, {"name": "Wendy Schaal", "character": "Bonnie Rumsfield", "id": 37600, "credit_id": "52fe44ad9251416c7503d299", "cast_id": 15, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 6}, {"name": "Henry Gibson", "character": "Dr. Werner Klopek", "id": 19439, "credit_id": "52fe44ad9251416c7503d29d", "cast_id": 16, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 7}, {"name": "Brother Theodore", "character": "Uncle Reuben Klopek", "id": 16413, "credit_id": "52fe44ad9251416c7503d2a1", "cast_id": 17, "profile_path": "/2OLcOFM5vzJuINo8zDKWiFCRkgH.jpg", "order": 8}, {"name": "Courtney Gains", "character": "Hans Klopek", "id": 18708, "credit_id": "52fe44ad9251416c7503d2a5", "cast_id": 18, "profile_path": "/7u8dTzgr4ODfpKwdYoUlTwptoCq.jpg", "order": 9}, {"name": "Gale Gordon", "character": "Walter Seznick", "id": 83465, "credit_id": "52fe44ad9251416c7503d2a9", "cast_id": 19, "profile_path": "/9BS6No4yj3HCCgVBgJQdBSEAGIk.jpg", "order": 10}, {"name": "Dick Miller", "character": "Vic, Garbageman #1", "id": 102441, "credit_id": "52fe44ad9251416c7503d2bf", "cast_id": 23, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 11}, {"name": "Robert Picardo", "character": "Joe, Garbageman #2", "id": 16180, "credit_id": "52fe44ad9251416c7503d2c3", "cast_id": 24, "profile_path": "/5L0WCl3TzjeWdP8TqXfQ1n9uaOn.jpg", "order": 12}, {"name": "Franklyn Ajaye", "character": "Detective #1", "id": 44796, "credit_id": "52fe44ad9251416c7503d2c7", "cast_id": 25, "profile_path": "/iajtrycfijFWqYVqYnoa4goOtYD.jpg", "order": 13}, {"name": "Rance Howard", "character": "Detective #2", "id": 22250, "credit_id": "53832b07c3a3680595008769", "cast_id": 26, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 14}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe44ad9251416c7503d28d", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.9, "runtime": 101}, "11977": {"poster_path": "/tv6s71pj8mhHtfk6DaSxMlu9pd7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39846344, "overview": "At an exclusive country club, an ambitious young caddy, Danny Noonan, eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.", "video": false, "id": 11977, "genres": [{"id": 35, "name": "Comedy"}], "title": "Caddyshack", "tagline": "The snobs against the slobs!", "vote_count": 99, "homepage": "", "belongs_to_collection": {"backdrop_path": "/nt3U4uU8GJz2zg2oTXSUFbFhI6j.jpg", "poster_path": "/yMNHFk8vcWSnzDduz7OZyPhCUrQ.jpg", "id": 104847, "name": "Caddyshack Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080487", "adult": false, "backdrop_path": "/kdL7CWq5msNd2CzE11fNkY0k4m7.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1980-07-25", "popularity": 0.586944695727476, "original_title": "Caddyshack", "budget": 6000000, "cast": [{"name": "Chevy Chase", "character": "Ty Webb", "id": 54812, "credit_id": "52fe44ae9251416c7503d481", "cast_id": 10, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Rodney Dangerfield", "character": "Al Czervik", "id": 3198, "credit_id": "52fe44ae9251416c7503d485", "cast_id": 11, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 1}, {"name": "Bill Murray", "character": "Carl Spackler", "id": 1532, "credit_id": "52fe44ae9251416c7503d491", "cast_id": 14, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 2}, {"name": "Ted Knight", "character": "Richter Elihu Smails", "id": 71146, "credit_id": "52fe44ae9251416c7503d489", "cast_id": 12, "profile_path": "/7KVzku5Kb5JybmLbpXNzSXbIZ4y.jpg", "order": 3}, {"name": "Michael O'Keefe", "character": "Danny Noonan", "id": 38085, "credit_id": "52fe44ae9251416c7503d48d", "cast_id": 13, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 4}, {"name": "Sarah Holcomb", "character": "Maggie O'Hooligan", "id": 55203, "credit_id": "52fe44ae9251416c7503d4a1", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Scott Colomby", "character": "Tony D'Annunzio", "id": 167367, "credit_id": "52fe44ae9251416c7503d4a5", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Cindy Morgan", "character": "Lacey Underall", "id": 2548, "credit_id": "52fe44ae9251416c7503d4a9", "cast_id": 19, "profile_path": "/iv7FOx6sann9O0SqLmHs5OFlWCz.jpg", "order": 7}, {"name": "Brian Doyle-Murray", "character": "Lou Loomis", "id": 1535, "credit_id": "52fe44ae9251416c7503d4ad", "cast_id": 20, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 8}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe44ae9251416c7503d497", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.6, "runtime": 98}, "11978": {"poster_path": "/4mCuFJ0r3lV1A8Vj5tq6O9aBpjZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48814909, "overview": "Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.", "video": false, "id": 11978, "genres": [{"id": 18, "name": "Drama"}], "title": "Men of Honor", "tagline": "History is made by those who break the rules.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0203019", "adult": false, "backdrop_path": "/9ORojugWMoMUKMBmZNaDvwGAcFg.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2000-11-09", "popularity": 0.371228573845659, "original_title": "Men of Honor", "budget": 32000000, "cast": [{"name": "Robert De Niro", "character": "Master Chief Leslie W. Sunday ('Billy')", "id": 380, "credit_id": "52fe44ae9251416c7503d50d", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Cuba Gooding Jr.", "character": "Senior Chief Carl Brashear", "id": 9777, "credit_id": "52fe44ae9251416c7503d511", "cast_id": 12, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Gwen Sunday", "id": 6885, "credit_id": "52fe44ae9251416c7503d515", "cast_id": 13, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Aunjanue Ellis", "character": "Jo", "id": 53923, "credit_id": "52fe44ae9251416c7503d519", "cast_id": 14, "profile_path": "/tOfsln2Qt3P1jL7TuFiwEPcwFZB.jpg", "order": 3}, {"name": "Hal Holbrook", "character": "'Mr. Pappy'", "id": 11066, "credit_id": "5446126ac3a3684894003b8f", "cast_id": 16, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 4}, {"name": "Michael Rapaport", "character": "GM1 Snowhill", "id": 4688, "credit_id": "54ce931dc3a3687f82006331", "cast_id": 20, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 6}, {"name": "Powers Boothe", "character": "Captain Pullman", "id": 6280, "credit_id": "54461288c3a3683691001288", "cast_id": 18, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 7}, {"name": "David Keith", "character": "Captain Hartigan", "id": 18181, "credit_id": "544612a5c3a3684894003b9e", "cast_id": 19, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 8}, {"name": "Glynn Turman", "character": "Chief Floyd", "id": 114674, "credit_id": "52fe44ae9251416c7503d51d", "cast_id": 15, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 9}], "directors": [{"name": "George Tillman, Jr.", "department": "Directing", "job": "Director", "credit_id": "52fe44ae9251416c7503d4d3", "profile_path": "/np4Q1q68M8ejWmkUpChXTIVrQRO.jpg", "id": 66121}], "vote_average": 7.0, "runtime": 129}, "36557": {"poster_path": "/toEaueEfDxX57y4J5MRRA7qsy5K.jpg", "production_countries": [{"iso_3166_1": "BS", "name": "Bahamas"}, {"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 599045960, "overview": "James Bond goes on his first ever mission as a 00. Le Chiffre is a banker to the world's terrorists. He is participating in a poker game at Montenegro, where he must win back his money, in order to stay safe among the terrorist market. The boss of MI6, known simply as M sends Bond, along with Vesper Lynd to attend this game and prevent Le Chiffre from winning. Bond, using help from Felix Leiter, Mathis and having Vesper pose as his wife, enters the most important poker game in his already dangerous career. But if Bond defeats Le Chiffre, will he and Vesper Lynd remain safe?", "video": false, "id": 36557, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Casino Royale", "tagline": "Everyone has a past. Every legend has a beginning.", "vote_count": 1795, "homepage": "http://www.mgm.com/view/movie/233/Casino-Royale-(2006)/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0381061", "adult": false, "backdrop_path": "/xq6hXdBpDPIXWjtmvbFmtLvBFJt.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Columbia Pictures", "id": 5}, {"name": "Eon Productions", "id": 7576}, {"name": "Casino Royale Productions", "id": 41053}, {"name": "Stillking Films", "id": 11345}, {"name": "Casino Royale", "id": 41054}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Government of the Commonwealth of the Bahamas", "id": 26030}, {"name": "Danjaq", "id": 10761}], "release_date": "2006-11-15", "popularity": 1.84019780367331, "original_title": "Casino Royale", "budget": 150000000, "cast": [{"name": "Daniel Craig", "character": "James Bond", "id": 8784, "credit_id": "52fe45f29251416c91043e59", "cast_id": 1, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Eva Green", "character": "Vesper Lynd", "id": 10912, "credit_id": "52fe45f29251416c91043e6f", "cast_id": 5, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Mads Mikkelsen", "character": "Le Chiffre", "id": 1019, "credit_id": "52fe45f29251416c91043e73", "cast_id": 6, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 2}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe45f29251416c91043ea3", "cast_id": 18, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Jeffrey Wright", "character": "Felix Leiter", "id": 2954, "credit_id": "52fe45f29251416c91043e77", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 4}, {"name": "Giancarlo Giannini", "character": "Ren\u00e9 Mathis", "id": 3753, "credit_id": "52fe45f29251416c91043e7b", "cast_id": 8, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 5}, {"name": "Caterina Murino", "character": "Solange Dimitrios", "id": 10916, "credit_id": "52fe45f29251416c91043e7f", "cast_id": 9, "profile_path": "/pnRNgPBVYu34ksRCUq9RFxMrYdc.jpg", "order": 6}, {"name": "Simon Abkarian", "character": "Alex Dimitrios", "id": 10917, "credit_id": "52fe45f29251416c91043e83", "cast_id": 10, "profile_path": "/oR1F42rVMY8QsmjK0R8ST4RBBe0.jpg", "order": 7}, {"name": "Isaach De Bankol\u00e9", "character": "Steven Obanno", "id": 4812, "credit_id": "52fe45f29251416c91043e87", "cast_id": 11, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 8}, {"name": "Jesper Christensen", "character": "Mr. White", "id": 2244, "credit_id": "52fe45f29251416c91043e8b", "cast_id": 12, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 9}, {"name": "Ivana Mili\u010devi\u0107", "character": "Valenka", "id": 29930, "credit_id": "52fe45f29251416c91043e8f", "cast_id": 13, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 10}, {"name": "Tobias Menzies", "character": "Villiers", "id": 10920, "credit_id": "52fe45f29251416c91043e93", "cast_id": 14, "profile_path": "/bXUpxFsIowySRyyqchaE1XprptI.jpg", "order": 11}, {"name": "Claudio Santamaria", "character": "Carlos", "id": 76339, "credit_id": "52fe45f29251416c91043e97", "cast_id": 15, "profile_path": "/ryB6SX2ahx3kaOxKeXhmTMZUFk0.jpg", "order": 12}, {"name": "Sebastien Foucan", "character": "Mollaka", "id": 94955, "credit_id": "52fe45f29251416c91043e9b", "cast_id": 16, "profile_path": "/bA8Rnww0qymoLMXSUOk6iUICe0Q.jpg", "order": 13}, {"name": "Malcolm Sinclair", "character": "Dryden", "id": 40660, "credit_id": "52fe45f29251416c91043e9f", "cast_id": 17, "profile_path": "/4dz3MZ3QZG3art7eWGY5bXfC92s.jpg", "order": 14}, {"name": "Richard Sammel", "character": "Adolph Gettler", "id": 49487, "credit_id": "53ac27830e0a2676250020cb", "cast_id": 52, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 15}, {"name": "Ludger Pistor", "character": "Mendel", "id": 1088, "credit_id": "53ac27c80e0a26760f001f57", "cast_id": 53, "profile_path": "/bhtJu7xvac15bcGGf7e6nwGOeI7.jpg", "order": 16}, {"name": "Joseph Millson", "character": "Carter", "id": 1190069, "credit_id": "53ac285d0e0a267612001e8f", "cast_id": 54, "profile_path": null, "order": 17}, {"name": "Darwin Shaw", "character": "Fisher", "id": 1070749, "credit_id": "53ac288d0e0a2676250020e9", "cast_id": 55, "profile_path": null, "order": 18}, {"name": "Clemens Schick", "character": "Kratt", "id": 213596, "credit_id": "53ac290b0e0a267619001ebf", "cast_id": 56, "profile_path": "/dPrlYNOMPMyDG0SYCVbuo2PQ8C7.jpg", "order": 19}, {"name": "Emmanuel Avena", "character": "Leo", "id": 1156342, "credit_id": "53ac29bd0e0a26761f001ea3", "cast_id": 57, "profile_path": null, "order": 20}, {"name": "Tom Chadbon", "character": "Stockbroker", "id": 125039, "credit_id": "53ac2a110e0a26760f001f8a", "cast_id": 58, "profile_path": null, "order": 21}, {"name": "Ade", "character": "Infante", "id": 2627, "credit_id": "53ac2a4b0e0a26760f001f8f", "cast_id": 59, "profile_path": null, "order": 22}, {"name": "Urbano Barberini", "character": "Tomelli", "id": 27398, "credit_id": "53ac2a820e0a26761c001f95", "cast_id": 60, "profile_path": "/e2nXmLYlYc2XQphLKeReJ1nka0O.jpg", "order": 23}, {"name": "Tsai Chin", "character": "Madame Wu", "id": 10075, "credit_id": "53ac2ac10e0a267616001ffa", "cast_id": 61, "profile_path": "/2icB7ENqRRXxqzirAH3PupzTyqQ.jpg", "order": 24}, {"name": "Lazar Ristovski", "character": "Kaminofsky", "id": 70874, "credit_id": "53ac2b0b0e0a267619001eee", "cast_id": 62, "profile_path": "/pANyfGd5U8eABBuZ6qoJSIWo6uc.jpg", "order": 25}, {"name": "Veruschka von Lehndorff", "character": "Gr\u00e4fin von Wallenstein", "id": 15199, "credit_id": "53ac2b400e0a267619001ef4", "cast_id": 63, "profile_path": "/ox6Nt1dQ6TbjZrp8Sv36V16Xsuu.jpg", "order": 26}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe45f29251416c91043e5f", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.9, "runtime": 144}, "2001": {"poster_path": "/qtQ1QAYicU3F0icIunYcFhjJ5XE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54591330, "overview": "A New York nightclub manager tries to save his brother and father from Russian mafia hit men.", "video": false, "id": 2001, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "We Own the Night", "tagline": "Two brothers on opposite sides of the law. Beyond their differences lies loyalty.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0498399", "adult": false, "backdrop_path": "/syO4HCR4t3tz6TX9CbYlW9fTQX3.jpg", "production_companies": [{"name": "2929 Productions", "id": 846}, {"name": "Industry Entertainment", "id": 376}], "release_date": "2007-05-25", "popularity": 0.219177444433717, "original_title": "We Own the Night", "budget": 21000000, "cast": [{"name": "Joaquin Phoenix", "character": "Joseph", "id": 73421, "credit_id": "52fe432ac3a36847f803f6f7", "cast_id": 2, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Amanda Juarez", "id": 8170, "credit_id": "52fe432ac3a36847f803f703", "cast_id": 5, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Alex Veadov", "character": "Vadim Nezhinski", "id": 20563, "credit_id": "52fe432ac3a36847f803f70b", "cast_id": 7, "profile_path": "/5MNUwSmCYGFQ9ytVRYzKGZcadVq.jpg", "order": 2}, {"name": "Mark Wahlberg", "character": "Joseph Grusinsky", "id": 13240, "credit_id": "52fe432ac3a36847f803f6fb", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Burt Grusinsky", "id": 3087, "credit_id": "52fe432ac3a36847f803f6ff", "cast_id": 4, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Antoni Corone", "character": "Michael Solo", "id": 20562, "credit_id": "52fe432ac3a36847f803f707", "cast_id": 6, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 5}, {"name": "Tony Musante", "character": "Jack Shapiro", "id": 20564, "credit_id": "52fe432bc3a36847f803f70f", "cast_id": 8, "profile_path": "/i1zETdFvGG9vnGtRvdg7PTqpJ5k.jpg", "order": 6}, {"name": "Katie Condidorio", "character": "Hazel", "id": 20566, "credit_id": "52fe432bc3a36847f803f713", "cast_id": 10, "profile_path": "/7GfJpW7rzwctgMDUdhAWskkmTTg.jpg", "order": 7}], "directors": [{"name": "James Gray", "department": "Directing", "job": "Director", "credit_id": "52fe432ac3a36847f803f6f3", "profile_path": "/y9yj1f72VATeq8JSQEvTYpQe4AP.jpg", "id": 20561}], "vote_average": 6.3, "runtime": 117}, "36586": {"poster_path": "/jlURNpXCMK830CsGRd939PJLh8c.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155010032, "overview": "A rare mutation has occurred within the vampire community - The Reaper. A vampire so consumed with an insatiable bloodlust that they prey on vampires as well as humans, transforming victims who are unlucky enough to survive into Reapers themselves. Blade is asked by the Vampire Nation for his help in preventing a nightmare plague that would wipe out both humans and vampires.", "video": false, "id": 36586, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blade II", "tagline": "Faster. Sharper. Deadlier.", "vote_count": 455, "homepage": "http://www.newline.com/properties/blade2.html", "belongs_to_collection": {"backdrop_path": "/ev9QybDDzVSahJQdOb71ZuqNVAo.jpg", "poster_path": "/ltjxGZP6aJrwjl7oOZiiZhFgkF1.jpg", "id": 735, "name": "Blade Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0187738", "adult": false, "backdrop_path": "/2n0kjNEI3uF0ju9H5jiE3rBk5C0.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}, {"name": "New Line Cinema", "id": 12}, {"name": "Amen Ra Films", "id": 421}, {"name": "Imaginary Forces", "id": 11321}], "release_date": "2002-03-21", "popularity": 1.72117268705095, "original_title": "Blade II", "budget": 54000000, "cast": [{"name": "Wesley Snipes", "character": "Blade", "id": 10814, "credit_id": "52fe45f59251416c9104450d", "cast_id": 1, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Kris Kristofferson", "character": "Whistler", "id": 10823, "credit_id": "52fe45f59251416c91044517", "cast_id": 3, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 1}, {"name": "Leonor Varela", "character": "Nyssa", "id": 10839, "credit_id": "52fe45f59251416c9104451b", "cast_id": 5, "profile_path": "/rXn3ruoRRSplCyeNXs7z9BMxHAb.jpg", "order": 2}, {"name": "Norman Reedus", "character": "Scud", "id": 4886, "credit_id": "52fe45f59251416c9104451f", "cast_id": 6, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 3}, {"name": "Thomas Kretschmann", "character": "Damaskinos", "id": 3491, "credit_id": "52fe45f59251416c91044523", "cast_id": 7, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 4}, {"name": "Luke Goss", "character": "Nomak", "id": 10843, "credit_id": "52fe45f59251416c91044527", "cast_id": 8, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 5}, {"name": "Matt Schulze", "character": "Chupa", "id": 31841, "credit_id": "52fe45f59251416c9104452b", "cast_id": 9, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 6}, {"name": "Danny John-Jules", "character": "Asad", "id": 115787, "credit_id": "52fe45f59251416c9104452f", "cast_id": 10, "profile_path": "/d9yIjilG7BdiPYIsXyZBV0hCuyv.jpg", "order": 7}, {"name": "Donnie Yen", "character": "Snowman", "id": 1341, "credit_id": "52fe45f59251416c91044533", "cast_id": 11, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 8}, {"name": "Ron Perlman", "character": "Reinhardt", "id": 2372, "credit_id": "52fe45f59251416c9104453d", "cast_id": 13, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 9}, {"name": "Karel Roden", "character": "Kounen", "id": 10841, "credit_id": "52fe45f59251416c91044541", "cast_id": 14, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 10}, {"name": "Marit Velle Kile", "character": "Verlaine", "id": 10845, "credit_id": "52fe45f59251416c91044545", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Tony Curran", "character": "Priest", "id": 2220, "credit_id": "52fe45f59251416c91044549", "cast_id": 16, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 12}, {"name": "Daz Crawford", "character": "Lighthammer", "id": 10846, "credit_id": "52fe45f59251416c9104454d", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Santiago Segura", "character": "Rush", "id": 10847, "credit_id": "52fe45f59251416c91044551", "cast_id": 18, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 14}, {"name": "Samuel Le", "character": "Jigsaw", "id": 1080216, "credit_id": "52fe45f59251416c91044555", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Marek Va\u0161ut", "character": "Golem", "id": 10849, "credit_id": "52fe45f59251416c91044559", "cast_id": 20, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 16}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe45f59251416c91044513", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.0, "runtime": 117}, "64807": {"poster_path": "/hScOPtZpAxYWx2sOGcfbzYti39Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44907260, "overview": "A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match.", "video": false, "id": 64807, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grudge Match", "tagline": "DeNiro vs Stallone", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1661382", "adult": false, "backdrop_path": "/zl9KTLvet1IAJjaIWlbTSyLJ0fo.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Gerber Pictures", "id": 975}], "release_date": "2013-12-25", "popularity": 0.87642918997125, "original_title": "Grudge Match", "budget": 40000000, "cast": [{"name": "Robert De Niro", "character": "Billy 'The Kid' McDonnen", "id": 380, "credit_id": "52fe46eac3a368484e0ab157", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Sylvester Stallone", "character": "Henry 'Razor' Sharp", "id": 16483, "credit_id": "52fe46eac3a368484e0ab15b", "cast_id": 2, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 1}, {"name": "Alan Arkin", "character": "Lightning", "id": 1903, "credit_id": "52fe46eac3a368484e0ab15f", "cast_id": 4, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "Jon Bernthal", "character": "B.J.", "id": 19498, "credit_id": "52fe46eac3a368484e0ab163", "cast_id": 5, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 3}, {"name": "Kevin Hart", "character": "Dante Slate, Jr.", "id": 55638, "credit_id": "52fe46eac3a368484e0ab167", "cast_id": 6, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 4}, {"name": "Kim Basinger", "character": "Sally Rose", "id": 326, "credit_id": "52fe46eac3a368484e0ab16b", "cast_id": 7, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 5}, {"name": "LL Cool J", "character": "Frankie Brite", "id": 36424, "credit_id": "54266a7dc3a3681c25000ffb", "cast_id": 21, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 6}, {"name": "Judd Lormand", "character": "Car Salesman", "id": 990136, "credit_id": "52fe46ebc3a368484e0ab16f", "cast_id": 8, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 7}, {"name": "Nicole Andrews", "character": "Carla", "id": 1134443, "credit_id": "52fe46ebc3a368484e0ab173", "cast_id": 9, "profile_path": "/mjMSw1P3lpzH8uwBkwSQuxudQMQ.jpg", "order": 8}, {"name": "Han Soto", "character": "Kenji", "id": 1116011, "credit_id": "52fe46ebc3a368484e0ab177", "cast_id": 10, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 9}, {"name": "Griff Furst", "character": "ER Doctor", "id": 76021, "credit_id": "52fe46ebc3a368484e0ab17b", "cast_id": 11, "profile_path": "/rRAtuKLOq27DFZ0MWu6FCVbbhS8.jpg", "order": 10}, {"name": "Don Lake", "character": "Video Game Producer", "id": 27530, "credit_id": "52fe46ebc3a368484e0ab17f", "cast_id": 12, "profile_path": "/zwm0HhAhxay84Co22rSkHwhJPBG.jpg", "order": 11}, {"name": "Camden Gray", "character": "Trey", "id": 1158067, "credit_id": "52fe46ebc3a368484e0ab183", "cast_id": 13, "profile_path": "/3M6WY5xTL4ckTmQBIWjPr4xTASX.jpg", "order": 12}, {"name": "Carrie Lazar", "character": "Nora", "id": 1158068, "credit_id": "52fe46ebc3a368484e0ab187", "cast_id": 14, "profile_path": "/jAWDOiLV1qJKINQcm9HF80s4Pmw.jpg", "order": 13}, {"name": "John L. Armijo", "character": "Bar Thug", "id": 1158069, "credit_id": "52fe46ebc3a368484e0ab18b", "cast_id": 15, "profile_path": "/c52EjlXyT7khV9Nb1sqvs7QlYta.jpg", "order": 14}, {"name": "Todd Truley", "character": "Dr. Camare", "id": 156874, "credit_id": "52fe46ebc3a368484e0ab18f", "cast_id": 16, "profile_path": "/40LiLjZINuAopHCRm68326DVe85.jpg", "order": 15}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe46ebc3a368484e0ab195", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.2, "runtime": 113}, "36593": {"poster_path": "/k3F8N3jeqXOpm1qjY7mL8O6vdx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he is to find out what top terrorist, Rocco, has planned for when he escapes. Frank's wife, Jane, is desperate for a baby.. this adds to Frank's problems. A host of celebrities at the Academy awards ceremony are humiliated by Frank as he blunders his way trying to foil Rocco.", "video": false, "id": 36593, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Naked Gun 33\u2153: The Final Insult", "tagline": "A Mad Bomber is on the Loose, and If Anyone Can Stop Him....So Can Frank!", "vote_count": 80, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tqhBZVrozBXbD6VubSBQsCfI0YD.jpg", "poster_path": "/qTJ2fbdU2Ru4OGZghQB8MYofkrN.jpg", "id": 37139, "name": "Naked Gun Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110622", "adult": false, "backdrop_path": "/qsVLxe9PzMcGbpLjxMI1Hp5pDCk.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1994-03-18", "popularity": 1.08185812159411, "original_title": "The Naked Gun 33\u2153: The Final Insult", "budget": 30000000, "cast": [{"name": "Leslie Nielsen", "character": "Lt. Frank Drebin", "id": 7633, "credit_id": "52fe45f69251416c910447f1", "cast_id": 4, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 0}, {"name": "Priscilla Presley", "character": "Jane Spencer", "id": 12949, "credit_id": "52fe45f69251416c910447f5", "cast_id": 5, "profile_path": "/6YMsGky3MpDqubnfi4HqsTnMge.jpg", "order": 1}, {"name": "O.J. Simpson", "character": "Nordberg", "id": 12951, "credit_id": "52fe45f69251416c910447f9", "cast_id": 6, "profile_path": "/fOXv3fPxEimuq1pJmnxEMRjpqBg.jpg", "order": 2}, {"name": "Anna Nicole Smith", "character": "Tanya", "id": 115654, "credit_id": "52fe45f69251416c910447fd", "cast_id": 7, "profile_path": "/ceJMoFgs28s0SMsQKqvz75gGGDm.jpg", "order": 3}, {"name": "Fred Ward", "character": "Rocco", "id": 10430, "credit_id": "52fe45f69251416c91044801", "cast_id": 8, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 4}, {"name": "Kathleen Freeman", "character": "Muriel", "id": 7210, "credit_id": "52fe45f79251416c91044805", "cast_id": 9, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 5}, {"name": "George Kennedy", "character": "Ed Hocken", "id": 12950, "credit_id": "52fe45f79251416c91044809", "cast_id": 10, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 6}, {"name": "Doris Belack", "character": "Dr. Roberts", "id": 24293, "credit_id": "52fe45f79251416c91044837", "cast_id": 18, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 7}, {"name": "Nigel Gibbs", "character": "Carjacker", "id": 11915, "credit_id": "52fe45f79251416c9104483b", "cast_id": 19, "profile_path": "/6AE4p72zOtpR9Q385eiwrPwGPaj.jpg", "order": 8}, {"name": "Andre Rosey Brown", "character": "Corridor Guard", "id": 95061, "credit_id": "52fe45f79251416c9104483f", "cast_id": 20, "profile_path": "/hBGsrGGzGp84ULWk6d6Fv6FxalR.jpg", "order": 9}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe45f69251416c910447e1", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.2, "runtime": 83}, "10195": {"poster_path": "/bIuOWTtyFPjsFDevqvF3QrD1aun.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 444115007, "overview": "Against his father Odin's will, The Mighty Thor -a powerful but arrogant warrior god -recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.", "video": false, "id": 10195, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Thor", "tagline": "Two worlds. One hero.", "vote_count": 3033, "homepage": "http://thor.marvel.com/", "belongs_to_collection": {"backdrop_path": "/FZhEgAes4PX86BJGJPXyZCXHrj.jpg", "poster_path": "/7vx64r9HS57yz2T53i31SdmqdEi.jpg", "id": 131296, "name": "Thor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800369", "adult": false, "backdrop_path": "/LvmmDZxkTDqp0DX7mUo621ahdX.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}, {"name": "Marvel Entertainment", "id": 7505}], "release_date": "2011-05-06", "popularity": 3.19638626691242, "original_title": "Thor", "budget": 150000000, "cast": [{"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe433f9251416c750091e5", "cast_id": 1, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Jane Foster", "id": 524, "credit_id": "52fe433f9251416c750091f7", "cast_id": 5, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Tom Hiddleston", "character": "Loki", "id": 91606, "credit_id": "52fe433f9251416c750091ef", "cast_id": 3, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 2}, {"name": "Anthony Hopkins", "character": "Odin", "id": 4173, "credit_id": "52fe433f9251416c750091fb", "cast_id": 6, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 3}, {"name": "Stellan Skarsg\u00e5rd", "character": "Erik Selvig", "id": 1640, "credit_id": "52fe433f9251416c7500924d", "cast_id": 23, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 4}, {"name": "Kat Dennings", "character": "Darcy", "id": 52852, "credit_id": "52fe433f9251416c75009241", "cast_id": 18, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 5}, {"name": "Clark Gregg", "character": "Agent Coulson", "id": 9048, "credit_id": "52fe433f9251416c75009259", "cast_id": 26, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 6}, {"name": "Colm Feore", "character": "King Laufey", "id": 10132, "credit_id": "52fe433f9251416c75009261", "cast_id": 28, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 7}, {"name": "Idris Elba", "character": "Heimdall", "id": 17605, "credit_id": "52fe433f9251416c75009249", "cast_id": 22, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 8}, {"name": "Ray Stevenson", "character": "Volstagg", "id": 56614, "credit_id": "52fe433f9251416c75009255", "cast_id": 25, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 9}, {"name": "Tadanobu Asano", "character": "Hogun", "id": 13275, "credit_id": "52fe433f9251416c75009251", "cast_id": 24, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 10}, {"name": "Josh Dallas", "character": "Fandral", "id": 77880, "credit_id": "530ba81592514158ca000193", "cast_id": 36, "profile_path": "/4DoeVyhq2DSIinBvb9AOj52OUrS.jpg", "order": 11}, {"name": "Jaimie Alexander", "character": "Sif", "id": 59817, "credit_id": "52fe433f9251416c750091f3", "cast_id": 4, "profile_path": "/vPXy9FBK272nqrJDlQX9zU57vmj.jpg", "order": 12}, {"name": "Rene Russo", "character": "Frigga", "id": 14343, "credit_id": "52fe433f9251416c75009245", "cast_id": 19, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 13}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Agent Sitwell", "id": 1018947, "credit_id": "52fe433f9251416c7500926d", "cast_id": 31, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 14}, {"name": "Richard Cetrone", "character": "Frost Giant Captain", "id": 12371, "credit_id": "530fbcabc3a36829c400018b", "cast_id": 37, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 15}, {"name": "Darren Kendrick", "character": "Frost Giant Sentry", "id": 125050, "credit_id": "530fbcdbc3a36829e20001a3", "cast_id": 38, "profile_path": "/2UUPMwfDR2sldAmjAfyn9drZRJE.jpg", "order": 16}, {"name": "Joshua Cox", "character": "Frost Giant Hailstrum", "id": 78150, "credit_id": "530fbd619251411013000119", "cast_id": 39, "profile_path": "/bk2zLyfI2Hm2bv6MtdTFMVzidXw.jpg", "order": 17}, {"name": "Jamie McShane", "character": "Agent Jackson", "id": 79079, "credit_id": "52fe433f9251416c75009271", "cast_id": 32, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 18}, {"name": "J. Michael Straczynski", "character": "Townie", "id": 33045, "credit_id": "52fe433f9251416c7500927b", "cast_id": 34, "profile_path": "/eWSbZ5UQT5mqoTS6ay6VJ0SMFa5.jpg", "order": 19}, {"name": "Stan Lee", "character": "Stan the Man", "id": 7624, "credit_id": "52fe433f9251416c7500927f", "cast_id": 35, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 20}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe433f9251416c75009269", "cast_id": 30, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 21}, {"name": "Jeremy Renner", "character": "Clint Barton / Hawkeye", "id": 17604, "credit_id": "52fe433f9251416c75009265", "cast_id": 29, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 22}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c750091eb", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 6.4, "runtime": 115}, "8831": {"poster_path": "/jCuhVKfj0vvR7iH8D5Aa0Q1ZX8e.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101646581, "overview": "An officer for a security agency that regulates time travel, must fend for his life against a shady politician who has a tie to his past.", "video": false, "id": 8831, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Timecop", "tagline": "They killed his wife ten years ago. There's still time to save her. Murder is forever... until now.", "vote_count": 66, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mIqsp7AFmyTYjJ4N9qv3FhAUz60.jpg", "poster_path": "/u9YavRYOMT9VCwIKQsbP82fAYtD.jpg", "id": 170452, "name": "Timecop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111438", "adult": false, "backdrop_path": "/3iDik1VJkpZbmUNNOKHlWKu3or4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Renaissance Pictures", "id": 467}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Largo Entertainment", "id": 1644}, {"name": "Signature Pictures", "id": 2982}, {"name": "JVC Entertainment Networks", "id": 4248}], "release_date": "1994-09-15", "popularity": 0.35186538607218, "original_title": "Timecop", "budget": 0, "cast": [{"name": "Jean-Claude Van Damme", "character": "Max Walker", "id": 15111, "credit_id": "52fe44bbc3a36847f80a6e17", "cast_id": 9, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Mia Sara", "character": "Melissa Walker", "id": 29091, "credit_id": "52fe44bbc3a36847f80a6e1b", "cast_id": 10, "profile_path": "/bMEDp048tU5RwHd1m5ZZMa1DgGy.jpg", "order": 1}, {"name": "Ron Silver", "character": "Senator Aaron McComb", "id": 21399, "credit_id": "52fe44bbc3a36847f80a6e1f", "cast_id": 11, "profile_path": "/kj5qwf0gprRGXOCHNmqFTbpC97H.jpg", "order": 2}, {"name": "Bruce McGill", "character": "Commander Eugene Matuzak", "id": 14888, "credit_id": "52fe44bbc3a36847f80a6e23", "cast_id": 12, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 3}, {"name": "Gloria Reuben", "character": "Fielding", "id": 21369, "credit_id": "52fe44bbc3a36847f80a6e27", "cast_id": 13, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 4}, {"name": "Scott Bellis", "character": "Ricky", "id": 61543, "credit_id": "52fe44bbc3a36847f80a6e2b", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Jason Schombing", "character": "Atwood", "id": 116047, "credit_id": "52fe44bbc3a36847f80a6e2f", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Scott Lawrence", "character": "Spota", "id": 42317, "credit_id": "52fe44bbc3a36847f80a6e33", "cast_id": 16, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 7}, {"name": "Kenneth Welsh", "character": "Utley", "id": 6074, "credit_id": "52fe44bbc3a36847f80a6e37", "cast_id": 17, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 8}, {"name": "Brent Woolsey", "character": "Shotgun", "id": 230136, "credit_id": "52fe44bbc3a36847f80a6e3b", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Brad Loree", "character": "Reyes", "id": 69614, "credit_id": "52fe44bbc3a36847f80a6e3f", "cast_id": 19, "profile_path": "/gJ463E0Qyt19Qh3r4c5AzCnXNOF.jpg", "order": 10}, {"name": "Shane Kelly", "character": "Rollerblades", "id": 173310, "credit_id": "52fe44bbc3a36847f80a6e43", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Richard Faraci", "character": "Cole", "id": 946657, "credit_id": "52fe44bbc3a36847f80a6e47", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Steven Lambert", "character": "Lansing", "id": 99856, "credit_id": "52fe44bbc3a36847f80a6e4b", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Kevin McNulty", "character": "Parker", "id": 27111, "credit_id": "52fe44bbc3a36847f80a6e4f", "cast_id": 23, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 14}], "directors": [{"name": "Peter Hyams", "department": "Directing", "job": "Director", "credit_id": "52fe44bbc3a36847f80a6de9", "profile_path": "/zbELGEBxySY0KqZv63DXeJdfMVU.jpg", "id": 37710}], "vote_average": 5.3, "runtime": 99}, "8584": {"poster_path": "/wcG2PA66Fbv2l7r0n59x1nuB5fd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56932305, "overview": "Chon Wang, a clumsy imperial guard trails Princess Pei Pei when she is kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.", "video": false, "id": 8584, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Shanghai Noon", "tagline": "The old west meets the far east.", "vote_count": 177, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xkA3OKXATV7c0hIXoETdHXUIpE8.jpg", "poster_path": "/mycCmimAQ1mDsWweKQQimCkPtDh.jpg", "id": 59567, "name": "Shanghai Noon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0184894", "adult": false, "backdrop_path": "/rvDGcsIOhtEMkxs5yhhyZ1nsS6E.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2000-05-26", "popularity": 0.801812820857848, "original_title": "Shanghai Noon", "budget": 55000000, "cast": [{"name": "Jackie Chan", "character": "Chon Wang", "id": 18897, "credit_id": "52fe44afc3a36847f80a4415", "cast_id": 4, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Roy O'Bannon", "id": 887, "credit_id": "52fe44afc3a36847f80a4419", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Lucy Liu", "character": "Princess Pei Pei", "id": 140, "credit_id": "52fe44afc3a36847f80a441d", "cast_id": 6, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 2}, {"name": "Xander Berkeley", "character": "Nathan Van Cleef", "id": 3982, "credit_id": "52fe44afc3a36847f80a4457", "cast_id": 16, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 3}, {"name": "Brandon Merrill", "character": "Indian Wife", "id": 554278, "credit_id": "52fe44afc3a36847f80a445b", "cast_id": 17, "profile_path": "/5xEfRbl76OV6etF5EnaWr5B4GtP.jpg", "order": 4}, {"name": "Roger Yuan", "character": "Lo Fong", "id": 2974, "credit_id": "52fe44afc3a36847f80a445f", "cast_id": 18, "profile_path": "/mocNZK4KHv3j9os7tsS7b9B9ecK.jpg", "order": 5}, {"name": "Yu Rong-Guang", "character": "Imperial Guard", "id": 120725, "credit_id": "52fe44afc3a36847f80a4463", "cast_id": 19, "profile_path": "/9LxWXXXJM8R0O9LGnec3ajURVfa.jpg", "order": 6}, {"name": "Ya Hi Cui", "character": "Imperial Guard", "id": 554279, "credit_id": "52fe44afc3a36847f80a4467", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Eric Chen", "character": "Imperial Guard", "id": 114697, "credit_id": "52fe44afc3a36847f80a446b", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Jason Connery", "character": "Andrews", "id": 25527, "credit_id": "52fe44afc3a36847f80a446f", "cast_id": 22, "profile_path": "/3FtItU3E6WoaaQayzFFTxyUWuAR.jpg", "order": 9}, {"name": "Walton Goggins", "character": "Wallace", "id": 27740, "credit_id": "52fe44afc3a36847f80a4473", "cast_id": 23, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 10}, {"name": "Adrien Dorval", "character": "Blue", "id": 43933, "credit_id": "52fe44afc3a36847f80a4477", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Rafael B\u00e1ez", "character": "Vasquez", "id": 96322, "credit_id": "52fe44afc3a36847f80a447b", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Stacy Grant", "character": "Hooker in Distress", "id": 123972, "credit_id": "52fe44afc3a36847f80a447f", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Kate Luyben", "character": "Fifi", "id": 119757, "credit_id": "52fe44afc3a36847f80a4483", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Henry O", "character": "Royal Interpreter", "id": 39829, "credit_id": "52fe44afc3a36847f80a4487", "cast_id": 28, "profile_path": "/cJ7rk3cmGOc0m1T90oPgZylntcs.jpg", "order": 15}, {"name": "Russell Badger", "character": "Sioux Chief", "id": 222559, "credit_id": "52fe44afc3a36847f80a448b", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Simon Baker", "character": "Little Feather", "id": 211568, "credit_id": "52fe44afc3a36847f80a448f", "cast_id": 30, "profile_path": "/kKf3bmcbh777w1TLtwA9Fe7UtSS.jpg", "order": 17}, {"name": "Sam Simon", "character": "Chief's Sidekick", "id": 162690, "credit_id": "52fe44afc3a36847f80a4493", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Alan C. Peterson", "character": "Saddle Rock Sheriff", "id": 52703, "credit_id": "52fe44afc3a36847f80a4497", "cast_id": 32, "profile_path": "/esrNQmnKq7GYF810l3MmoKjYpsn.jpg", "order": 19}, {"name": "Rad Daly", "character": "Saddle Rock Deputy", "id": 180467, "credit_id": "52fe44afc3a36847f80a449b", "cast_id": 33, "profile_path": null, "order": 20}], "directors": [{"name": "Tom Dey", "department": "Directing", "job": "Director", "credit_id": "52fe44afc3a36847f80a4405", "profile_path": "/7YmdGtMlVmxwky3hWcDOPTZ5rv3.jpg", "id": 46076}], "vote_average": 6.0, "runtime": 110}, "642": {"poster_path": "/80IUdG7G5NTGbl6K5zVxXSFvSVw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102308889, "overview": "In late 1890s Wyoming, Butch Cassidy is the affable, clever, talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot \"Sundance Kid\". As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all.", "video": false, "id": 642, "genres": [{"id": 37, "name": "Western"}], "title": "Butch Cassidy and the Sundance Kid", "tagline": "Not that it matters, but most of it is true.", "vote_count": 225, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064115", "adult": false, "backdrop_path": "/pV3LyrIFTodujodc9mceF92zZog.jpg", "production_companies": [{"name": "Campanile Productions", "id": 381}, {"name": "Newman-Foreman Productions", "id": 382}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1969-09-23", "popularity": 1.06563737482761, "original_title": "Butch Cassidy and the Sundance Kid", "budget": 6000000, "cast": [{"name": "Paul Newman", "character": "Butch Cassidy", "id": 3636, "credit_id": "52fe4263c3a36847f801a853", "cast_id": 17, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "Robert Redford", "character": "Sundance Kid", "id": 4135, "credit_id": "52fe4263c3a36847f801a857", "cast_id": 18, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Katharine Ross", "character": "Etta Place", "id": 9594, "credit_id": "52fe4263c3a36847f801a85b", "cast_id": 19, "profile_path": "/KtXzfeLdU8NtwjSPOQ9dvBqQeS.jpg", "order": 2}, {"name": "Strother Martin", "character": "Percy Garris", "id": 8260, "credit_id": "52fe4263c3a36847f801a85f", "cast_id": 20, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 3}, {"name": "Henry Jones", "character": "Bike Salesman", "id": 5732, "credit_id": "52fe4263c3a36847f801a863", "cast_id": 21, "profile_path": "/hOO3CG2qUq6wvM4BkjtJ05kIU1C.jpg", "order": 4}, {"name": "Jeff Corey", "character": "Sheriff Ray Bledsoe", "id": 9596, "credit_id": "52fe4263c3a36847f801a867", "cast_id": 22, "profile_path": "/jlc4DLs99u7f9HOoco3dv5DBAoJ.jpg", "order": 5}, {"name": "George Furth", "character": "Woodcock", "id": 9597, "credit_id": "52fe4263c3a36847f801a86b", "cast_id": 23, "profile_path": "/sSku0t0IXJRj3GmHNWSIivYPCT3.jpg", "order": 6}, {"name": "Cloris Leachman", "character": "Agnes", "id": 9599, "credit_id": "52fe4263c3a36847f801a86f", "cast_id": 24, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 7}, {"name": "Ted Cassidy", "character": "Harvey Logan", "id": 9600, "credit_id": "52fe4263c3a36847f801a873", "cast_id": 25, "profile_path": "/nyWixXutQVZPiqijRnvUYkf2OTB.jpg", "order": 8}, {"name": "Kenneth Mars", "character": "Marshal", "id": 9601, "credit_id": "52fe4263c3a36847f801a877", "cast_id": 26, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 9}, {"name": "Donnelly Rhodes", "character": "Macon", "id": 9602, "credit_id": "52fe4263c3a36847f801a87b", "cast_id": 27, "profile_path": "/u9UIgXuCIZXgNB6GHvzvBhJyQkX.jpg", "order": 10}, {"name": "Jody Gilbert", "character": "Large Woman", "id": 34472, "credit_id": "52fe4263c3a36847f801a87f", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Timothy Scott", "character": "News Carver", "id": 83411, "credit_id": "52fe4263c3a36847f801a883", "cast_id": 29, "profile_path": "/yB5RGTuVXGfFBnlduvgSA0kT68m.jpg", "order": 12}, {"name": "Don Keefer", "character": "Fireman", "id": 104630, "credit_id": "52fe4263c3a36847f801a887", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Charles Dierkop", "character": "Flat Nose Curry", "id": 15988, "credit_id": "52fe4263c3a36847f801a88b", "cast_id": 31, "profile_path": "/6gAnOws0RfFg9eKvxfPv4gvHMUm.jpg", "order": 14}, {"name": "Pancho C\u00f3rdova", "character": "Bank Manager", "id": 19447, "credit_id": "52fe4263c3a36847f801a88f", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Nelson Olmsted", "character": "Photographer", "id": 91222, "credit_id": "52fe4263c3a36847f801a893", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Paul Bryar", "character": "Card Player #1", "id": 34609, "credit_id": "52fe4263c3a36847f801a897", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Sam Elliott", "character": "Card Player #2", "id": 16431, "credit_id": "52fe4263c3a36847f801a89b", "cast_id": 35, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 18}, {"name": "Charles Akins", "character": "Bank Teller", "id": 1077251, "credit_id": "52fe4263c3a36847f801a89f", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Eric Sinclair", "character": "Tiffany's Salesman", "id": 102791, "credit_id": "52fe4263c3a36847f801a8a3", "cast_id": 37, "profile_path": null, "order": 20}], "directors": [{"name": "George Roy Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801a7f5", "profile_path": "/qUTS8j1sQNeqq1YOiW8ihz0gQNs.jpg", "id": 9577}], "vote_average": 6.7, "runtime": 110}, "200462": {"poster_path": "/qHqZ9zuwZAByQgjItecVtJCKSN.jpg", "production_countries": [], "revenue": 0, "overview": "In this modern retelling of the classic horror tale, teen siblings are enslaved by a psychotic recluse within her gruesome house of horrors in the woods.", "video": false, "id": 200462, "genres": [{"id": 27, "name": "Horror"}], "title": "Hansel & Gretel", "tagline": "A Classic Tale... Horrifyingly Real", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2415464", "adult": false, "backdrop_path": "/yKq6pahQnYNGpTRm85sOoIqUbpm.jpg", "production_companies": [{"name": "The Asylum", "id": 1311}], "release_date": "2013-01-07", "popularity": 0.236498099619639, "original_title": "Hansel & Gretel", "budget": 135000, "cast": [{"name": "Dee Wallace", "character": "Lilith", "id": 62001, "credit_id": "52fe4c87c3a368484e1bb0c5", "cast_id": 3, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 0}, {"name": "Stephanie Greco", "character": "Gretel Grimm", "id": 1072141, "credit_id": "52fe4c87c3a368484e1bb0c9", "cast_id": 4, "profile_path": "/zSRLQIzMfywMxme2fy7pTnzSZG2.jpg", "order": 1}, {"name": "Brent Lydic", "character": "Hansel Grimm", "id": 134453, "credit_id": "52fe4c87c3a368484e1bb0cd", "cast_id": 5, "profile_path": "/hPHy4db07S0IAfbrCLFq2nrhmuT.jpg", "order": 2}, {"name": "Jasper Cole", "character": "John", "id": 945542, "credit_id": "52fe4c87c3a368484e1bb0d1", "cast_id": 6, "profile_path": "/zsHc9mShZQsSG8XItQ6wiRAnWBi.jpg", "order": 3}, {"name": "Sara Fletcher", "character": "Jane", "id": 1044567, "credit_id": "52fe4c87c3a368484e1bb0d5", "cast_id": 7, "profile_path": "/paM68WgKBTs00w8QVeFaQxfEDkd.jpg", "order": 4}, {"name": "M. Steven Felty", "character": "Sheriff Woody Meckes", "id": 1000555, "credit_id": "52fe4c87c3a368484e1bb0d9", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Clark Perry", "character": "Kevin", "id": 111018, "credit_id": "52fe4c87c3a368484e1bb0dd", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Frank Giarmona", "character": "Bobby", "id": 1157372, "credit_id": "52fe4c87c3a368484e1bb0e1", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Trish Coren", "character": "Ruby Lumiers", "id": 168914, "credit_id": "52fe4c87c3a368484e1bb0e5", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Steve Hanks", "character": "Brandon Grimm", "id": 174331, "credit_id": "52fe4c87c3a368484e1bb0e9", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Adrian Bustamante", "character": "Deputy Jerry Carter", "id": 1157373, "credit_id": "52fe4c87c3a368484e1bb0ed", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Lydia Woods", "character": "Dana", "id": 1157374, "credit_id": "52fe4c87c3a368484e1bb0f1", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Mariangela Pagan", "character": "Sylvia", "id": 1157375, "credit_id": "52fe4c87c3a368484e1bb0f5", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jonathan Nation", "character": "Jane's Father", "id": 95988, "credit_id": "52fe4c87c3a368484e1bb0f9", "cast_id": 16, "profile_path": "/yhIRbVE9dWZlzCQFoe00fkA2Es4.jpg", "order": 13}, {"name": "Jerey Basia", "character": "Double", "id": 1157376, "credit_id": "52fe4c87c3a368484e1bb0fd", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Anthony C. Ferrante", "department": "Directing", "job": "Director", "credit_id": "52fe4c87c3a368484e1bb0bb", "profile_path": null, "id": 85822}], "vote_average": 5.3, "runtime": 90}, "48138": {"poster_path": "/qSBQP7L0ApBpFbAUIOtmg08k5aK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 134887487, "overview": "An American biologist attending a conference in Berlin awakens from a coma after a car accident, only to discover that someone has taken his identity and that no one, not even his wife, believes him. With the help of an illegal immigrant and a former Stazi agent, he sets out to prove who he is and find out why people are trying to kill him.", "video": false, "id": 48138, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Unknown", "tagline": "Take Back Your Life", "vote_count": 395, "homepage": "http://unknownmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1401152", "adult": false, "backdrop_path": "/ueMSXqgN3FOF8y8fym7ntJqtAP.jpg", "production_companies": [{"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Horticus UK", "id": 12409}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Panda Productions Inc.", "id": 12408}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}, {"name": "StudioCanal", "id": 694}], "release_date": "2011-02-18", "popularity": 0.948079560426324, "original_title": "Unknown", "budget": 30000000, "cast": [{"name": "Liam Neeson", "character": "Dr. Martin Harris", "id": 3896, "credit_id": "52fe4755c3a36847f813003d", "cast_id": 2, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Diane Kruger", "character": "Gina", "id": 9824, "credit_id": "52fe4755c3a36847f8130041", "cast_id": 3, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "January Jones", "character": "Elizabeth Harris", "id": 31717, "credit_id": "52fe4755c3a36847f8130039", "cast_id": 1, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 2}, {"name": "Aidan Quinn", "character": "Martin B.", "id": 18992, "credit_id": "52fe4755c3a36847f8130049", "cast_id": 5, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 3}, {"name": "Bruno Ganz", "character": "Ernst J\u00fcrgen", "id": 2310, "credit_id": "52fe4755c3a36847f813004d", "cast_id": 6, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 4}, {"name": "Frank Langella", "character": "Rodney Cole", "id": 8924, "credit_id": "52fe4755c3a36847f8130045", "cast_id": 4, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 5}, {"name": "Sebastian Koch", "character": "Professor Leo Bressler", "id": 8197, "credit_id": "52fe4755c3a36847f8130051", "cast_id": 7, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 6}, {"name": "Olivier Schneider", "character": "Smith", "id": 228881, "credit_id": "52fe4756c3a36847f81300bb", "cast_id": 38, "profile_path": "/Rt8nyGh8f3GB0FREQx7Z7fhFiW.jpg", "order": 7}, {"name": "Stipe Erceg", "character": "Jones", "id": 3933, "credit_id": "52fe4756c3a36847f81300bf", "cast_id": 39, "profile_path": "/s0Lx2gI5PKHXYmIU3kOD0h1PJCG.jpg", "order": 8}, {"name": "Rainer Bock", "character": "Herr Strauss", "id": 65054, "credit_id": "52fe4756c3a36847f81300c3", "cast_id": 40, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 9}, {"name": "Mido Hamada", "character": "Prince Shada", "id": 107561, "credit_id": "52fe4756c3a36847f81300c7", "cast_id": 41, "profile_path": null, "order": 10}, {"name": "Clint Dyer", "character": "Biko", "id": 109383, "credit_id": "52fe4756c3a36847f81300cb", "cast_id": 42, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 11}, {"name": "Karl Markovics", "character": "Dr. Farge", "id": 38459, "credit_id": "52fe4756c3a36847f81300cf", "cast_id": 43, "profile_path": "/9ryaqvn9VnqHE97stunzmyNEyaG.jpg", "order": 12}, {"name": "Eva L\u00f6bau", "character": "Nurse Gretchen Erfurt", "id": 7161, "credit_id": "52fe4756c3a36847f81300d3", "cast_id": 44, "profile_path": null, "order": 13}, {"name": "Helen Wiebensohn", "character": "Laurel Bressler", "id": 971357, "credit_id": "52fe4756c3a36847f81300d7", "cast_id": 45, "profile_path": null, "order": 14}, {"name": "Adnan Maral", "character": "Turkish Taxi Driver", "id": 20615, "credit_id": "52fe4756c3a36847f81300df", "cast_id": 47, "profile_path": "/8SN3NFLx9oAQSeHvxpF269uxOuw.jpg", "order": 15}, {"name": "Merle Wiebensohn", "character": "Lily Bressler", "id": 971358, "credit_id": "52fe4756c3a36847f81300db", "cast_id": 46, "profile_path": null, "order": 16}, {"name": "Torsten Michaelis", "character": "Airport Taxi Driver", "id": 38622, "credit_id": "52fe4756c3a36847f81300e3", "cast_id": 48, "profile_path": null, "order": 17}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe4755c3a36847f8130057", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 6.2, "runtime": 113}, "246403": {"poster_path": "/ntxILPesM4IRumijc1DRJQTks9t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When his best friend and podcast co-host goes missing in the backwoods of Canada, a young guy joins forces with his friend's girlfriend to search for him.", "video": false, "id": 246403, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Tusk", "tagline": "Let me tell you a story...", "vote_count": 68, "homepage": "http://tuskthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3099498", "adult": false, "backdrop_path": "/8EQg8fsxEElycBPSb0JszATwm1l.jpg", "production_companies": [{"name": "Phase 4 Films", "id": 9081}, {"name": "Demarest Films", "id": 13241}, {"name": "SModcast Pictures", "id": 13642}], "release_date": "2014-09-19", "popularity": 0.523441182657098, "original_title": "Tusk", "budget": 3500000, "cast": [{"name": "Michael Parks", "character": "Howard Howe", "id": 2536, "credit_id": "52fe4f13c3a36847f82bbd8d", "cast_id": 1, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 0}, {"name": "Justin Long", "character": "Wallace Bryton", "id": 15033, "credit_id": "52fe4f13c3a36847f82bbd91", "cast_id": 2, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Haley Joel Osment", "character": "Teddy", "id": 9640, "credit_id": "52fe4f13c3a36847f82bbd95", "cast_id": 3, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 2}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Allison", "id": 589162, "credit_id": "52fe4f13c3a36847f82bbd99", "cast_id": 4, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 3}, {"name": "Ralph Garman", "character": "Frank Garmin", "id": 60286, "credit_id": "52fe4f13c3a36847f82bbd9d", "cast_id": 5, "profile_path": "/vMzb4yCslLhJb7CQkS3R1jbyCO6.jpg", "order": 4}, {"name": "Johnny Depp", "character": "Guy Lapointe", "id": 85, "credit_id": "534d5f380e0a2679eb000218", "cast_id": 8, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 5}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4f13c3a36847f82bbda3", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.0, "runtime": 102}, "8836": {"poster_path": "/kp24ckPKVTOyvvXs7bVofDiupPe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68369434, "overview": "Six years after the events of The X-Files series finale, former FBI agent Doctor Dana Scully is now a staff physician at Our Lady of Sorrows, a Catholic hospital, and treating a boy named Christian who has Sandhoff disease, a terminal brain condition. FBI agent Drummy arrives to ask Scully\u2019s help in locating Fox Mulder, the fugitive former head of the X-Files division, and says they will call off its manhunt for him if he will help investigate the disappearances of several women, including young FBI agent Monica Banan. Mulder and Scully are called back to duty by the FBI when a former priest claims to be receiving psychic visions pertaining to a kidnapped agent.", "video": false, "id": 8836, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The X Files: I Want to Believe", "tagline": "To find the truth, you must believe.", "vote_count": 110, "homepage": "http://www.xfiles.com/", "belongs_to_collection": {"backdrop_path": "/22p3xTTuXc9FEnzyGlfB9KBtR4Y.jpg", "poster_path": "/aeIYknSlbIsjPTJQDExXXuKGRLb.jpg", "id": 19387, "name": "The X-Files Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443701", "adult": false, "backdrop_path": "/g5kxq91Szin6gPaSF9yBT30V1H2.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2008-07-25", "popularity": 0.872538510948042, "original_title": "The X Files: I Want to Believe", "budget": 0, "cast": [{"name": "David Duchovny", "character": "Fox Mulder", "id": 12640, "credit_id": "52fe44bcc3a36847f80a7215", "cast_id": 1, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Gillian Anderson", "character": "Dana Scully", "id": 12214, "credit_id": "52fe44bcc3a36847f80a7219", "cast_id": 2, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 1}, {"name": "Amanda Peet", "character": "ASAC Dakota Whitney", "id": 2956, "credit_id": "52fe44bcc3a36847f80a722f", "cast_id": 6, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 2}, {"name": "Billy Connolly", "character": "Father Joseph Crissman", "id": 9188, "credit_id": "52fe44bcc3a36847f80a7233", "cast_id": 7, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 3}, {"name": "Xzibit", "character": "Agent Mosley Drummy", "id": 336, "credit_id": "52fe44bcc3a36847f80a7237", "cast_id": 8, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 4}, {"name": "Mitch Pileggi", "character": "Walter Skinner", "id": 12644, "credit_id": "52fe44bcc3a36847f80a723b", "cast_id": 9, "profile_path": "/yJhcdFVtc2J6Nnqz7rcYB7GI4P9.jpg", "order": 5}, {"name": "Callum Keith Rennie", "character": "Janke Dacyshyn (2nd Abductor)", "id": 540, "credit_id": "52fe44bcc3a36847f80a723f", "cast_id": 10, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 6}, {"name": "Adam Godley", "character": "Father Ybarra", "id": 23429, "credit_id": "52fe44bcc3a36847f80a7243", "cast_id": 11, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 7}, {"name": "Alex Diakun", "character": "Gaunt Man", "id": 32749, "credit_id": "52fe44bcc3a36847f80a7247", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Nicki Aycox", "character": "Cheryl Cunningham (2nd Victim)", "id": 42374, "credit_id": "52fe44bcc3a36847f80a724b", "cast_id": 13, "profile_path": "/nuq3ChJ6arKPgpM3MTnaE4bgavn.jpg", "order": 9}, {"name": "Fagin Woodcock", "character": "Franz Tomczeszyn (1st Abductor)", "id": 112633, "credit_id": "52fe44bcc3a36847f80a724f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Marco Niccoli", "character": "Christian Fearon", "id": 112634, "credit_id": "52fe44bcc3a36847f80a7253", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Carrie Ruscheinsky", "character": "Margaret Fearon", "id": 112635, "credit_id": "52fe44bcc3a36847f80a7257", "cast_id": 16, "profile_path": "/5MlGQ0f4eLVh0MyHPEcs1GTlZDM.jpg", "order": 12}, {"name": "Spencer Maybee", "character": "Blair Fearon", "id": 112636, "credit_id": "52fe44bcc3a36847f80a725b", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Veronika Hadrava", "character": "Female Assistant", "id": 112637, "credit_id": "52fe44bcc3a36847f80a725f", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Denis Krasnogolov", "character": "Male Assistant", "id": 112638, "credit_id": "52fe44bcc3a36847f80a7263", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Patrick Keating", "character": "Slight Man", "id": 112639, "credit_id": "52fe44bcc3a36847f80a7267", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Roger Horchow", "character": "Elderly Gent", "id": 112640, "credit_id": "52fe44bcc3a36847f80a726b", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Stephen E. Miller", "character": "Feed Store Proprietor", "id": 75467, "credit_id": "52fe44bcc3a36847f80a726f", "cast_id": 22, "profile_path": "/d06RqoXxwaR0E6ZvVkthxy6RIpw.jpg", "order": 18}, {"name": "Xantha Radley", "character": "Monica Bannan", "id": 56750, "credit_id": "52fe44bcc3a36847f80a7273", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Lorena Gale", "character": "On Screen Doctor", "id": 80348, "credit_id": "52fe44bcc3a36847f80a7277", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Donavon Stinson", "character": "Suited Man", "id": 72045, "credit_id": "52fe44bcc3a36847f80a727b", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Dion Johnstone", "character": "1st Cop", "id": 112641, "credit_id": "52fe44bcc3a36847f80a727f", "cast_id": 26, "profile_path": "/EcvgtxrZfkKMvjrq0nOWuUi6j8.jpg", "order": 22}, {"name": "Sarah-Jane Redmond", "character": "Special Agent in Charge", "id": 59183, "credit_id": "52fe44bcc3a36847f80a7283", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Christina D'Alimonte", "character": "Doctor's Colleague", "id": 112642, "credit_id": "52fe44bcc3a36847f80a7287", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Vanesa Tomasino", "character": "Hallway Agent", "id": 112643, "credit_id": "52fe44bcc3a36847f80a728b", "cast_id": 29, "profile_path": "/bOfRnaY6JTD2PvD82HzENmysG5s.jpg", "order": 25}, {"name": "Luvia Petersen", "character": "O.R. Nurse", "id": 112644, "credit_id": "52fe44bcc3a36847f80a728f", "cast_id": 30, "profile_path": "/7KqXIL1nEKurXVYvgx3guxrOx4b.jpg", "order": 26}, {"name": "Babs Chula", "character": "Surgeon", "id": 106532, "credit_id": "52fe44bcc3a36847f80a7293", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Marci T. House", "character": "Sheriff", "id": 112645, "credit_id": "52fe44bcc3a36847f80a7297", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Joseph Patrick Finn", "character": "Whispering Priest", "id": 72069, "credit_id": "52fe44bcc3a36847f80a729b", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Beth Siegler", "character": "Anesthesiologist", "id": 112646, "credit_id": "52fe44bcc3a36847f80a729f", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Stacee Copeland", "character": "Doctor", "id": 112647, "credit_id": "52fe44bcc3a36847f80a72a3", "cast_id": 35, "profile_path": "/ghVF1fBWrIUcHlMIIYid20pjGc3.jpg", "order": 31}, {"name": "Tom Charron", "character": "Sheriff Horton", "id": 112648, "credit_id": "52fe44bcc3a36847f80a72a7", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Brent O'Connor", "character": "Tow Truck Driver", "id": 112649, "credit_id": "52fe44bcc3a36847f80a72ab", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Dave Cote", "character": "D-Man", "id": 91328, "credit_id": "52fe44bcc3a36847f80a72af", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Chris Carter", "character": "Man sitting in hospital hallway", "id": 12524, "credit_id": "52fe44bcc3a36847f80a72b3", "cast_id": 39, "profile_path": "/zounIvyL7xYbIuXrrKVnm6LDfi0.jpg", "order": 35}, {"name": "Paul Mitton", "character": "FBI Agent", "id": 112650, "credit_id": "52fe44bcc3a36847f80a72b7", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Vanessa Morley", "character": "Female Hallway Agent", "id": 112651, "credit_id": "52fe44bcc3a36847f80a72bb", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Michael Stevens", "character": "Board Room Doctor", "id": 112652, "credit_id": "52fe44bcc3a36847f80a72bf", "cast_id": 42, "profile_path": null, "order": 38}], "directors": [{"name": "Chris Carter", "department": "Directing", "job": "Director", "credit_id": "52fe44bcc3a36847f80a721f", "profile_path": "/zounIvyL7xYbIuXrrKVnm6LDfi0.jpg", "id": 12524}], "vote_average": 5.1, "runtime": 104}, "44826": {"poster_path": "/fkeaJr29ypea1n24gzspsc7qK44.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180864507, "overview": "Hugo is an orphan boy living in the walls of a train station in 1930s Paris. He learned to fix clocks and other gadgets from his father and uncle which he puts to use keeping the train station clocks running. The only thing that he has left that connects him to his dead father is an automaton (mechanical man) that doesn't work without a special key which Hugo needs to find to unlock the secret he believes it contains. On his adventures, he meets with a shopkeeper, George Melies, who works in the train station and his adventure-seeking god-daughter. Hugo finds that they have a surprising connection to his father and the automaton, and he discovers it unlocks some memories the old man has buried inside regarding his past.", "video": false, "id": 44826, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Hugo", "tagline": "One of the most legendary directors of our time takes you on an extraordinary adventure.", "vote_count": 645, "homepage": "http://www.hugomovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970179", "adult": false, "backdrop_path": "/jc3qQh8FV2YOJc8z7JQlXmv33Zs.jpg", "production_companies": [{"name": "Infinitum Nihil", "id": 2691}, {"name": "Paramount Pictures", "id": 4}, {"name": "GK Films", "id": 3281}], "release_date": "2011-11-23", "popularity": 1.06863402161182, "original_title": "Hugo", "budget": 170000000, "cast": [{"name": "Asa Butterfield", "character": "Hugo Cabret", "id": 77996, "credit_id": "52fe469dc3a36847f8108b33", "cast_id": 2, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Isabelle", "id": 56734, "credit_id": "52fe469dc3a36847f8108b37", "cast_id": 3, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Georges M\u00e9li\u00e8s", "id": 2282, "credit_id": "52fe469dc3a36847f8108b3b", "cast_id": 4, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 2}, {"name": "Sacha Baron Cohen", "character": "The Station Inspector", "id": 6730, "credit_id": "52fe469dc3a36847f8108b3f", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 3}, {"name": "Jude Law", "character": "Hugo's Father", "id": 9642, "credit_id": "52fe469dc3a36847f8108b43", "cast_id": 6, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 4}, {"name": "Christopher Lee", "character": "Monsieur Labisse", "id": 113, "credit_id": "52fe469dc3a36847f8108b47", "cast_id": 7, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 5}, {"name": "Helen McCrory", "character": "Mama Jeanne", "id": 15737, "credit_id": "52fe469dc3a36847f8108b4b", "cast_id": 8, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 6}, {"name": "Michael Stuhlbarg", "character": "Rene Rabard", "id": 72873, "credit_id": "52fe469dc3a36847f8108b4f", "cast_id": 9, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 7}, {"name": "Marco Aponte", "character": "Julien Carette", "id": 234981, "credit_id": "52fe469dc3a36847f8108b53", "cast_id": 10, "profile_path": "/fSbDzUPZk33vkmropFhmVy8URaT.jpg", "order": 8}, {"name": "Emily Mortimer", "character": "Lisette", "id": 1246, "credit_id": "52fe469dc3a36847f8108b57", "cast_id": 11, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 9}, {"name": "Ray Winstone", "character": "Uncle Claude", "id": 5538, "credit_id": "52fe469dc3a36847f8108b5b", "cast_id": 13, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 10}, {"name": "Frances de la Tour", "character": "Madame Emilie", "id": 47468, "credit_id": "52fe469dc3a36847f8108b5f", "cast_id": 14, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 11}, {"name": "Richard Griffiths", "character": "Monsieur Frick", "id": 10983, "credit_id": "52fe469ec3a36847f8108b63", "cast_id": 15, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 12}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe469dc3a36847f8108b2f", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.7, "runtime": 126}, "10202": {"poster_path": "/nhovvB0LO5nlgIvpPg2C1iLLAvr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 212874442, "overview": "Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?", "video": false, "id": 10202, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Bedtime Stories", "tagline": "Whatever they dream up... he has to survive.", "vote_count": 356, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0960731", "adult": false, "backdrop_path": "/fK079xAMXWYOfL0Cvsc5stHmcwI.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Gunn Films", "id": 3538}], "release_date": "2008-12-25", "popularity": 1.16025688885395, "original_title": "Bedtime Stories", "budget": 80000000, "cast": [{"name": "Adam Sandler", "character": "Skeeter Bronson", "id": 19292, "credit_id": "52fe43409251416c750095ad", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Keri Russell", "character": "Jill", "id": 41292, "credit_id": "52fe43409251416c750095b1", "cast_id": 3, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 1}, {"name": "Guy Pearce", "character": "Kendall", "id": 529, "credit_id": "52fe43409251416c750095b5", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 2}, {"name": "Courteney Cox", "character": "Wendy", "id": 14405, "credit_id": "52fe43409251416c750095b9", "cast_id": 5, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 3}, {"name": "Lucy Lawless", "character": "Aspen", "id": 20584, "credit_id": "52fe43409251416c750095c5", "cast_id": 8, "profile_path": "/wTXMIKm3P0WMF9894Ubgky1mOXu.jpg", "order": 4}, {"name": "Teresa Palmer", "character": "Violet", "id": 20374, "credit_id": "52fe43409251416c750095bd", "cast_id": 6, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 5}, {"name": "Russell Brand", "character": "Mickey", "id": 59919, "credit_id": "52fe43409251416c750095c1", "cast_id": 7, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 6}, {"name": "Aisha Tyler", "character": "Donna Hynde", "id": 38674, "credit_id": "52fe43409251416c750095c9", "cast_id": 9, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 7}, {"name": "Kathryn Joosten", "character": "Mrs. Dixon", "id": 106935, "credit_id": "52fe43409251416c750095cd", "cast_id": 10, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 8}, {"name": "Carmen Electra", "character": "Hot Girl", "id": 28639, "credit_id": "52fe43409251416c750095d1", "cast_id": 11, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 9}, {"name": "Jonathan Pryce", "character": "Marty Bronson", "id": 378, "credit_id": "52fe43409251416c750095e1", "cast_id": 14, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 10}, {"name": "Richard Griffiths", "character": "Barry Nottingham", "id": 10983, "credit_id": "52fe43419251416c750095e5", "cast_id": 15, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 11}, {"name": "Jonathan Morgan Heit", "character": "Patrick", "id": 576511, "credit_id": "52fe43419251416c750095e9", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Laura Ann Kesling", "character": "Bobbi", "id": 1187842, "credit_id": "52fe43419251416c750095ed", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Nick Swardson", "character": "Engineer", "id": 32907, "credit_id": "52fe43419251416c750095f1", "cast_id": 18, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 14}, {"name": "Allen Covert", "character": "Ferrari Guy", "id": 20818, "credit_id": "52fe43419251416c750095f5", "cast_id": 19, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 15}, {"name": "Tim Herlihy", "character": "Young Barry Nottingham", "id": 56728, "credit_id": "52fe43419251416c750095f9", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Thomas Hoffman", "character": "Young Skeeter", "id": 1116200, "credit_id": "52fe43419251416c750095fd", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Abigail Droeger", "character": "Young Wendy", "id": 204330, "credit_id": "52fe43419251416c75009601", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Melany Mitchell", "character": "Young Mrs. Dixon", "id": 1202530, "credit_id": "52fe43419251416c75009605", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Andrew Collins", "character": "Young Mr. Dixon", "id": 199512, "credit_id": "52fe43419251416c75009609", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Julia Lea Wolov", "character": "Hokey Pokey Woman", "id": 1202531, "credit_id": "52fe43419251416c7500960d", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Dana Goodman", "character": "Hokey Pokey Woman", "id": 214834, "credit_id": "52fe43419251416c75009611", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Sarah G. Buxton", "character": "Hokey Pokey Woman", "id": 17191, "credit_id": "52fe43419251416c75009615", "cast_id": 27, "profile_path": "/osrm0dql0RhwX3LbgUSOT2M84yb.jpg", "order": 23}, {"name": "Catherine Kwong", "character": "Hokey Pokey Woman", "id": 154485, "credit_id": "52fe43419251416c75009619", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Lindsey Alley", "character": "Hokey Pokey Woman", "id": 1202532, "credit_id": "52fe43419251416c7500961d", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Blake Clark", "character": "Biker", "id": 21485, "credit_id": "52fe43419251416c75009621", "cast_id": 30, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 26}, {"name": "Bill Romanowski", "character": "Biker", "id": 60954, "credit_id": "52fe43419251416c75009625", "cast_id": 31, "profile_path": "/cXoVWp5m4eX1VedZqf3FbfKUOH4.jpg", "order": 27}, {"name": "Paul Dooley", "character": "Hot Dog Vendor", "id": 15900, "credit_id": "52fe43419251416c75009629", "cast_id": 32, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 28}, {"name": "Johntae Lipscomb", "character": "Birthday Party Kid", "id": 211594, "credit_id": "52fe43419251416c7500962d", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Johntae Lipscomb", "character": "Birthday Party Kid", "id": 211594, "credit_id": "52fe43419251416c75009631", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Mikey Post", "character": "Angry Dwarf", "id": 59825, "credit_id": "52fe43419251416c75009635", "cast_id": 35, "profile_path": "/c8NQ550hf3xLRhCjsVOOznJY79Y.jpg", "order": 31}, {"name": "Sebastian Saraceno", "character": "Gremlin Driver", "id": 1060474, "credit_id": "52fe43419251416c75009639", "cast_id": 36, "profile_path": "/gHXNIcmwIJ3cgaUtlKm6JWW16g8.jpg", "order": 32}, {"name": "Seth Howard", "character": "Cubby the Home Depot Guy", "id": 1202533, "credit_id": "52fe43419251416c7500963d", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Jackie Sandler", "character": "Lady Jacqueline", "id": 60959, "credit_id": "52fe43419251416c75009641", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Sadie Sandler", "character": "Sweetest Medieval Girl of All Time", "id": 1202534, "credit_id": "52fe43419251416c75009645", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Valerie Gervickas", "character": "Teacher", "id": 1202535, "credit_id": "52fe43419251416c75009649", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Debbie Lee Carrington", "character": "Booing Goblin", "id": 19753, "credit_id": "52fe43419251416c7500964d", "cast_id": 41, "profile_path": "/xMynWwkjNbBJsiPdjs8aJ977oBq.jpg", "order": 37}, {"name": "Billy Tyler", "character": "Big Hairy Guy on Beach", "id": 987800, "credit_id": "52fe43419251416c75009651", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Lorna Scott", "character": "Secretary", "id": 73456, "credit_id": "52fe43419251416c75009655", "cast_id": 43, "profile_path": "/esuLL3MYiVvSbL71nvpebZFTaDf.jpg", "order": 39}, {"name": "Annalise Basso", "character": "Tricia Sparks", "id": 1024722, "credit_id": "52fe43419251416c75009659", "cast_id": 44, "profile_path": "/e1wamWCv5frXtXMa32NkeRR5hny.jpg", "order": 40}, {"name": "Shu Lan Tuan", "character": "Luau Waitress", "id": 209417, "credit_id": "52fe43419251416c7500965d", "cast_id": 45, "profile_path": null, "order": 41}, {"name": "Jonathan Loughran", "character": "Party Guest", "id": 58477, "credit_id": "52fe43419251416c75009661", "cast_id": 46, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 42}, {"name": "Robert Harvey", "character": "Party Guest", "id": 62100, "credit_id": "52fe43419251416c75009665", "cast_id": 47, "profile_path": null, "order": 43}, {"name": "Mike Andrella", "character": "Truck Driver", "id": 1202536, "credit_id": "52fe43419251416c75009669", "cast_id": 48, "profile_path": null, "order": 44}, {"name": "J.D. Donaruma", "character": "Nottingham Pool Waiter", "id": 963298, "credit_id": "52fe43419251416c7500966d", "cast_id": 49, "profile_path": null, "order": 45}, {"name": "Jon Schueler", "character": "Nobleman", "id": 1202537, "credit_id": "52fe43419251416c75009671", "cast_id": 50, "profile_path": null, "order": 46}, {"name": "Denverly Grant", "character": "Lady at Fountain", "id": 1202538, "credit_id": "52fe43419251416c75009675", "cast_id": 51, "profile_path": null, "order": 47}, {"name": "Rob Schneider", "character": "Chief Running Mouth / Pickpocket", "id": 60949, "credit_id": "52fe43419251416c75009679", "cast_id": 52, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 48}, {"name": "JT Alexander", "character": "Pedestrian (uncredited)", "id": 578735, "credit_id": "52fe43419251416c7500967d", "cast_id": 53, "profile_path": null, "order": 49}, {"name": "Nahid Azami", "character": "Protesting Mom (uncredited)", "id": 1202540, "credit_id": "52fe43419251416c75009681", "cast_id": 54, "profile_path": null, "order": 50}, {"name": "Veronica Bennett", "character": "Greek Goddess (uncredited)", "id": 1202541, "credit_id": "52fe43419251416c75009685", "cast_id": 55, "profile_path": null, "order": 51}, {"name": "Pete Brown", "character": "Claudius Falisimus (uncredited)", "id": 1078574, "credit_id": "52fe43419251416c75009689", "cast_id": 56, "profile_path": null, "order": 52}, {"name": "Amanda Burrill", "character": "Jogger (uncredited)", "id": 1202542, "credit_id": "52fe43419251416c7500968d", "cast_id": 57, "profile_path": null, "order": 53}, {"name": "Gina Cantrell", "character": "West Side Story Showgirl #2 (uncredited)", "id": 1202543, "credit_id": "52fe43419251416c75009691", "cast_id": 58, "profile_path": null, "order": 54}, {"name": "Betsy Hammer", "character": "Tambourine Player Medieval Band (uncredited)", "id": 1202544, "credit_id": "52fe43419251416c75009695", "cast_id": 59, "profile_path": null, "order": 55}, {"name": "Taylor Hardick", "character": "Student (uncredited)", "id": 1202545, "credit_id": "52fe43419251416c75009699", "cast_id": 60, "profile_path": null, "order": 56}, {"name": "Nick Hermz", "character": "Paparazzi (uncredited)", "id": 205649, "credit_id": "52fe43419251416c7500969d", "cast_id": 61, "profile_path": null, "order": 57}, {"name": "Rodrick Hersh", "character": "Rabbi (uncredited)", "id": 1202546, "credit_id": "52fe43419251416c750096a1", "cast_id": 62, "profile_path": null, "order": 58}, {"name": "Austin Honaker", "character": "A Spaceball (uncredited)", "id": 1202547, "credit_id": "52fe43419251416c750096a5", "cast_id": 63, "profile_path": null, "order": 59}, {"name": "Mark Hunter", "character": "Daft Alien (uncredited)", "id": 1202548, "credit_id": "52fe43419251416c750096a9", "cast_id": 64, "profile_path": null, "order": 60}, {"name": "Dani Jacoby", "character": "Western Girl (uncredited)", "id": 1202549, "credit_id": "52fe43419251416c750096ad", "cast_id": 65, "profile_path": null, "order": 61}, {"name": "Danni Katz", "character": "Party Girl (uncredited)", "id": 1202550, "credit_id": "52fe43419251416c750096b1", "cast_id": 66, "profile_path": null, "order": 62}, {"name": "Alina Kaufman", "character": "Party Guest (uncredited)", "id": 1202551, "credit_id": "52fe43419251416c750096b5", "cast_id": 67, "profile_path": null, "order": 63}, {"name": "Waymond Lee", "character": "Coliseum / Space Station Vendor (uncredited)", "id": 1200895, "credit_id": "52fe43419251416c750096b9", "cast_id": 68, "profile_path": null, "order": 64}, {"name": "Heather Morris", "character": "Dancer (uncredited)", "id": 221606, "credit_id": "52fe43419251416c750096bd", "cast_id": 69, "profile_path": "/koExd1GaoNDXtDe07DqfgIYpewC.jpg", "order": 65}, {"name": "Louis Riviere", "character": "Roman Peasant (uncredited)", "id": 1202552, "credit_id": "52fe43419251416c750096c1", "cast_id": 70, "profile_path": null, "order": 66}, {"name": "Nicole Sciacca", "character": "Damn Yankees Girl (uncredited)", "id": 1202553, "credit_id": "52fe43419251416c750096c5", "cast_id": 71, "profile_path": null, "order": 67}, {"name": "Arne Starr", "character": "Nottingham Employee / Senator / Cowboy / Spaceman (uncredited)", "id": 1202554, "credit_id": "52fe43419251416c750096c9", "cast_id": 72, "profile_path": null, "order": 68}, {"name": "Alex Tyler", "character": "Showgirl (uncredited)", "id": 114486, "credit_id": "52fe43419251416c750096cd", "cast_id": 73, "profile_path": null, "order": 69}, {"name": "Kevin Vyce", "character": "Businessman #1 (uncredited)", "id": 1030906, "credit_id": "52fe43419251416c750096d1", "cast_id": 74, "profile_path": null, "order": 70}, {"name": "Brian Waller", "character": "Record Producer (uncredited)", "id": 1202555, "credit_id": "52fe43419251416c750096d5", "cast_id": 75, "profile_path": null, "order": 71}, {"name": "Shawna Wesley", "character": "Greek Goddess (uncredited)", "id": 1202556, "credit_id": "52fe43419251416c750096d9", "cast_id": 76, "profile_path": null, "order": 72}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750095a9", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.8, "runtime": 99}, "200481": {"poster_path": "/7kUxedWznyihUfkC971sJ2piqQL.jpg", "production_countries": [], "revenue": 0, "overview": "It is just another evening commute until the rain starts to fall, and the city comes alive to the sound of dripping rain pipes, whistling awnings and gurgling gutters.", "video": false, "id": 200481, "genres": [{"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}], "title": "The Blue Umbrella", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt2616880", "adult": false, "backdrop_path": "/mPbrOfoFQpBkCJPzUr9YMoYB7W2.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2013-02-12", "popularity": 0.451778566620465, "original_title": "The Blue Umbrella", "budget": 0, "cast": [], "directors": [{"name": "Saschka Unseld", "department": "Directing", "job": "Director", "credit_id": "52fe4c87c3a368484e1bb1c7", "profile_path": null, "id": 1181281}], "vote_average": 7.8, "runtime": 7}, "184098": {"poster_path": "/xOTTC0HF25aYRteqYZJ4Xhh8uOF.jpg", "production_countries": [], "revenue": 70181428, "overview": "All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.", "video": false, "id": 184098, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Think Like a Man Too", "tagline": "", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hCRM2diNsHt60vopldseJJ6o1Rr.jpg", "id": 239430, "name": "Think Like a Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2239832", "adult": false, "backdrop_path": "/vO0rbc7ZUbOqwhkrmY8RjVz6hh0.jpg", "production_companies": [{"name": "Will Packer Productions", "id": 49968}, {"name": "Screen Gems", "id": 3287}, {"name": "Silver State Production Services", "id": 49969}], "release_date": "2014-06-20", "popularity": 0.907428378555117, "original_title": "Think Like a Man Too", "budget": 24000000, "cast": [{"name": "Kevin Hart", "character": "Cedric", "id": 55638, "credit_id": "52fe4cb59251416c75123217", "cast_id": 1, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 0}, {"name": "Romany Malco", "character": "Zeke", "id": 71530, "credit_id": "52fe4cb59251416c7512321b", "cast_id": 2, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 1}, {"name": "Terrence Jenkins", "character": "Michael", "id": 143242, "credit_id": "52fe4cb59251416c7512321f", "cast_id": 3, "profile_path": "/h9hYAsDHevmr3mHFpP8CbsX0BUA.jpg", "order": 2}, {"name": "Michael Ealy", "character": "Dominic", "id": 8177, "credit_id": "52fe4cb59251416c75123223", "cast_id": 4, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 3}, {"name": "Gary Owen", "character": "Bennett", "id": 214108, "credit_id": "52fe4cb59251416c75123227", "cast_id": 5, "profile_path": "/419tCojrRrEDhINC38wXuiUOTC4.jpg", "order": 4}, {"name": "Jerry Ferrara", "character": "Jeremy", "id": 98953, "credit_id": "52fe4cb59251416c7512322b", "cast_id": 6, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 5}, {"name": "Regina Hall", "character": "Candace", "id": 35705, "credit_id": "52fe4cb59251416c7512322f", "cast_id": 7, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 6}, {"name": "Meagan Good", "character": "Mya", "id": 22122, "credit_id": "52fe4cb59251416c75123233", "cast_id": 8, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 7}, {"name": "Taraji P. Henson", "character": "Lauren", "id": 40036, "credit_id": "52fe4cb59251416c75123237", "cast_id": 9, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 8}, {"name": "Gabrielle Union", "character": "Kristen", "id": 17773, "credit_id": "52fe4cb69251416c7512323b", "cast_id": 10, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 9}, {"name": "Wendi McLendon-Covey", "character": "Tish", "id": 63234, "credit_id": "52fe4cb69251416c7512323f", "cast_id": 11, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 10}, {"name": "La La Anthony", "character": "Sonia", "id": 1034453, "credit_id": "52fe4cb69251416c75123243", "cast_id": 12, "profile_path": "/aejPE9ZCj0SMWO9ovjYKk0Uuyff.jpg", "order": 11}, {"name": "Adam Brody", "character": "Isaac", "id": 11702, "credit_id": "52fe4cb69251416c75123247", "cast_id": 13, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 12}, {"name": "David Walton", "character": "Terrell", "id": 83231, "credit_id": "52fe4cb69251416c7512324b", "cast_id": 14, "profile_path": "/kwtK2P8W0PMmaY2yrFwGlDh55y5.jpg", "order": 13}, {"name": "Jenifer Lewis", "character": "Loretta", "id": 15899, "credit_id": "52fe4cb69251416c7512324f", "cast_id": 15, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 14}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4cb69251416c75123255", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 6.7, "runtime": 106}, "44835": {"poster_path": "/jpx1QZq8UPfBBpvH3dhnlVqbnmr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 382946, "overview": "A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.", "video": false, "id": 44835, "genres": [{"id": 18, "name": "Drama"}], "title": "Hesher", "tagline": "Sometimes life gives you the finger and sometimes it gives you...", "vote_count": 55, "homepage": "http://www.hesherthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1403177", "adult": false, "backdrop_path": "/bGhaaYf0psWOsZevNJSBAyLZ27k.jpg", "production_companies": [{"name": "American Work", "id": 42325}], "release_date": "2010-05-12", "popularity": 0.254192221659349, "original_title": "Hesher", "budget": 7000000, "cast": [{"name": "Natalie Portman", "character": "Nicole", "id": 524, "credit_id": "52fe469ec3a36847f8108db1", "cast_id": 6, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Joseph Gordon-Levitt", "character": "Hesher", "id": 24045, "credit_id": "52fe469ec3a36847f8108db5", "cast_id": 7, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 1}, {"name": "Rainn Wilson", "character": "Paul Forney", "id": 11678, "credit_id": "52fe469ec3a36847f8108db9", "cast_id": 8, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 2}, {"name": "Audrey Wasilewski", "character": "Coleen Bolder", "id": 86170, "credit_id": "52fe469ec3a36847f8108dbd", "cast_id": 9, "profile_path": "/pAIt9Pxioss1pz7IwAPsyMiEuM2.jpg", "order": 3}, {"name": "Frank Collison", "character": "Funeral Director", "id": 1479, "credit_id": "52fe469ec3a36847f8108dc1", "cast_id": 10, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 4}, {"name": "Piper Laurie", "character": "Madeleine Forney", "id": 6721, "credit_id": "52fe469ec3a36847f8108dc5", "cast_id": 11, "profile_path": "/eKjVK5MQ5RK9XuVLaCC2oYACmbK.jpg", "order": 5}, {"name": "Paul Bates", "character": "Mr. Elsberry", "id": 4693, "credit_id": "52fe469ec3a36847f8108dc9", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "John Carroll Lynch", "character": "", "id": 3911, "credit_id": "52fe469ec3a36847f8108dcd", "cast_id": 13, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 7}, {"name": "Devin Brochu", "character": "T.J.", "id": 202949, "credit_id": "52fe469ec3a36847f8108de9", "cast_id": 18, "profile_path": "/kxyh9XX1rAtaI02bJxmVDAeFaWv.jpg", "order": 8}], "directors": [{"name": "Spencer Susser", "department": "Directing", "job": "Director", "credit_id": "52fe469ec3a36847f8108dad", "profile_path": "/jpFpEbbaHIki1SM8SORJTMiowFd.jpg", "id": 131521}], "vote_average": 6.4, "runtime": 106}, "8838": {"poster_path": "/aQtf10Slqpd3S2ht8derr6oSpyt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Simon is a nine-year-old autistic boy who has cracked the government's new \"unbreakable\" code. This skill renders the new billion-dollar secret code vulnerable, especially if enemies of the United States should learn of Simon's abilities and capture him. Program chief Nick Kudrow orders the \"security threat\" eliminated, but Kudrow hasn't counted on renegade FBI agent Art Jeffries (Bruce Willis).", "video": false, "id": 8838, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mercury Rising", "tagline": "Someone knows too much.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120749", "adult": false, "backdrop_path": "/vTW9GjAjX9j1OA7QdmBbWjyhXjv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1998-04-03", "popularity": 0.734156678096475, "original_title": "Mercury Rising", "budget": 60000000, "cast": [{"name": "Bruce Willis", "character": "Art Jeffries", "id": 62, "credit_id": "52fe44bec3a36847f80a785b", "cast_id": 11, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Nicholas Kudrow", "id": 7447, "credit_id": "52fe44bec3a36847f80a785f", "cast_id": 12, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Miko Hughes", "character": "Simon Lynch", "id": 8186, "credit_id": "52fe44bec3a36847f80a7863", "cast_id": 13, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 2}, {"name": "Chi McBride", "character": "Tommy B. Jordan", "id": 8687, "credit_id": "52fe44bec3a36847f80a7867", "cast_id": 14, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 3}, {"name": "Kim Dickens", "character": "Stacey", "id": 21165, "credit_id": "52fe44bec3a36847f80a786b", "cast_id": 15, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 4}, {"name": "Robert Stanton", "character": "Dean Crandell", "id": 53963, "credit_id": "52fe44bec3a36847f80a786f", "cast_id": 16, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 5}, {"name": "Bodhi Elfman", "character": "Leo Pedranski", "id": 154883, "credit_id": "52fe44bec3a36847f80a7873", "cast_id": 17, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 6}, {"name": "Carrie Preston", "character": "Emily Lang", "id": 7465, "credit_id": "52fe44bec3a36847f80a7877", "cast_id": 18, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 7}, {"name": "Lindsey Ginter", "character": "Peter Burrell", "id": 156038, "credit_id": "52fe44bec3a36847f80a787b", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Peter Stormare", "character": "Shayes", "id": 53, "credit_id": "52fe44bec3a36847f80a787f", "cast_id": 20, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 9}, {"name": "Kevin Conway", "character": "Lomax", "id": 27116, "credit_id": "52fe44bec3a36847f80a7883", "cast_id": 21, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 10}, {"name": "John Carroll Lynch", "character": "Martin Lynch", "id": 3911, "credit_id": "52fe44bec3a36847f80a7887", "cast_id": 22, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 11}, {"name": "Kelley Hazen", "character": "Jenny Lynch", "id": 946447, "credit_id": "52fe44bec3a36847f80a788b", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "John Doman", "character": "Supervisor Hartley", "id": 4735, "credit_id": "52fe44bec3a36847f80a788f", "cast_id": 24, "profile_path": "/xfcSluMohRbnMySSlosFmlZyLLy.jpg", "order": 13}, {"name": "Richard Riehle", "character": "Edgar Halstrom", "id": 18262, "credit_id": "52fe44bec3a36847f80a7893", "cast_id": 25, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 14}, {"name": "Chad Lindberg", "character": "James", "id": 9186, "credit_id": "52fe44bec3a36847f80a7897", "cast_id": 26, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 15}, {"name": "Hank Harris", "character": "Isaac", "id": 58739, "credit_id": "52fe44bec3a36847f80a789b", "cast_id": 27, "profile_path": "/yhMYapvXHZQYXVdeBjeo4jaRN48.jpg", "order": 16}, {"name": "Camryn Manheim", "character": "Dr. London", "id": 20187, "credit_id": "52fe44bec3a36847f80a789f", "cast_id": 29, "profile_path": "/zK3xgy0jvM5Ly6mLNIoATdSo6Uj.jpg", "order": 17}, {"name": "Jack Conley", "character": "Detective Nichols", "id": 21675, "credit_id": "52fe44bec3a36847f80a78a3", "cast_id": 30, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 18}, {"name": "Maricela Ochoa", "character": "Charlayne", "id": 156731, "credit_id": "52fe44bec3a36847f80a78a7", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Peter Fontana", "character": "Pasquale, Bus Driver", "id": 1077831, "credit_id": "52fe44bec3a36847f80a78ab", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Kirk B.R. Woller", "character": "Lieutenant", "id": 6864, "credit_id": "52fe44bec3a36847f80a78af", "cast_id": 33, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 21}, {"name": "James MacDonald", "character": "SWAT Team Leader Francis", "id": 1188456, "credit_id": "52fe44bec3a36847f80a78b3", "cast_id": 34, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 22}], "directors": [{"name": "Harold Becker", "department": "Directing", "job": "Director", "credit_id": "52fe44bec3a36847f80a7821", "profile_path": "/pZjPh9NdTE0gf4aSndMOMj7XaXs.jpg", "id": 23213}], "vote_average": 6.1, "runtime": 111}, "36647": {"poster_path": "/KIyDkxJDCpew51Vni8FkHaLkon.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112601065, "overview": "When Blade's mother was bitten by a vampire during pregnancy, she did not know that she gave her son a special gift while dying: All the good vampire attributes in combination with the best human skills. Blade and his mentor Whistler battle an evil vampire rebel (Deacon Frost) who plans to take over the outdated vampire council, capture Blade and resurrect voracious blood god La Magra.", "video": false, "id": 36647, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}], "title": "Blade", "tagline": "Part Man. Part Vampire. All Hero.", "vote_count": 736, "homepage": "http://www.newline.com/properties/blade.html", "belongs_to_collection": {"backdrop_path": "/ev9QybDDzVSahJQdOb71ZuqNVAo.jpg", "poster_path": "/ltjxGZP6aJrwjl7oOZiiZhFgkF1.jpg", "id": 735, "name": "Blade Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120611", "adult": false, "backdrop_path": "/kTvGzXv4lIoQAOU8hAvdZtnEqy0.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Amen Ra Films", "id": 421}, {"name": "Imaginary Forces", "id": 11321}], "release_date": "1998-08-19", "popularity": 1.30479999401627, "original_title": "Blade", "budget": 45000000, "cast": [{"name": "Wesley Snipes", "character": "Blade", "id": 10814, "credit_id": "52fe45fc9251416c9104547d", "cast_id": 3, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Stephen Dorff", "character": "Deacon Frost", "id": 10822, "credit_id": "52fe45fc9251416c91045481", "cast_id": 4, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 1}, {"name": "Kris Kristofferson", "character": "Whistler", "id": 10823, "credit_id": "52fe45fc9251416c91045485", "cast_id": 5, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 2}, {"name": "N'Bushe Wright", "character": "Karen", "id": 10824, "credit_id": "52fe45fc9251416c91045489", "cast_id": 6, "profile_path": "/bEh3QHGmX9saY3shtfU3eiITHeU.jpg", "order": 3}, {"name": "Donal Logue", "character": "Quinn", "id": 10825, "credit_id": "52fe45fc9251416c9104548d", "cast_id": 7, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 4}, {"name": "Udo Kier", "character": "Dragonetti", "id": 1646, "credit_id": "52fe45fc9251416c91045491", "cast_id": 8, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 5}, {"name": "Arly Jover", "character": "Mercury", "id": 66147, "credit_id": "52fe45fc9251416c91045495", "cast_id": 9, "profile_path": "/ltkuawLKH0m4lE4xYBgMWHtY4WQ.jpg", "order": 6}, {"name": "Traci Lords", "character": "Racquel", "id": 10826, "credit_id": "52fe45fc9251416c91045499", "cast_id": 10, "profile_path": "/wvvedrFTml3kJZ3eSMMX3QvDacr.jpg", "order": 7}, {"name": "Kevin Patrick Walls", "character": "Krieger", "id": 10827, "credit_id": "52fe45fc9251416c9104549d", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Tim Guinee", "character": "Curtis Webb", "id": 40275, "credit_id": "52fe45fc9251416c910454a1", "cast_id": 12, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 9}, {"name": "Sanaa Lathan", "character": "Vanessa", "id": 5411, "credit_id": "52fe45fc9251416c910454a5", "cast_id": 13, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 10}, {"name": "Eric Edwards", "character": "Pearl", "id": 115786, "credit_id": "52fe45fd9251416c910454f7", "cast_id": 28, "profile_path": "/cQx8WFY1Uzsz22MtLGriftLZ5Cn.jpg", "order": 11}, {"name": "Donna Wong", "character": "Nurse", "id": 957026, "credit_id": "52fe45fd9251416c910454fb", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Carmen Thomas", "character": "Senior Resident", "id": 161917, "credit_id": "52fe45fd9251416c910454ff", "cast_id": 30, "profile_path": "/uDGqhihERPfe0eeiaWcCWXlvbRF.jpg", "order": 13}, {"name": "Shannon Lee", "character": "Resident", "id": 149407, "credit_id": "52fe45fd9251416c91045503", "cast_id": 31, "profile_path": "/irhgnh0rLNw0fnTfKZnyC7eFVeH.jpg", "order": 14}, {"name": "Kenny Johnson", "character": "Heatseeking Dennis", "id": 42191, "credit_id": "53ac47f1c3a368633e0001a9", "cast_id": 74, "profile_path": "/uu1FmIn0LnEmp27WrqCIcBXLBwt.jpg", "order": 15}, {"name": "Clint Curtis", "character": "Creepy Morgue Guy", "id": 217472, "credit_id": "52fe45fd9251416c9104550b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Judson Scott", "character": "Pallantine", "id": 104054, "credit_id": "52fe45fd9251416c9104550f", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Sidney S. Liufau", "character": "Japanese Doorman", "id": 143208, "credit_id": "52fe45fd9251416c91045513", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Keith Leon Williams", "character": "Kam", "id": 1080221, "credit_id": "52fe45fd9251416c91045517", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Andray Johnson", "character": "Paramedic", "id": 165282, "credit_id": "52fe45fd9251416c9104551b", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Stephen R. Peluso", "character": "Paramedic", "id": 1202772, "credit_id": "52fe45fd9251416c9104551f", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Marcus Aurelius", "character": "Pragmatic Policeman", "id": 106488, "credit_id": "52fe45fd9251416c91045523", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "John Enos III", "character": "Blood Club Bouncer", "id": 42557, "credit_id": "52fe45fd9251416c91045527", "cast_id": 40, "profile_path": "/qNM9WY42aEtttsnzLvYPEw6Q6xa.jpg", "order": 23}, {"name": "Eboni 'Chrystal' Adams", "character": "Martial Arts Kid", "id": 1202773, "credit_id": "52fe45fd9251416c9104552b", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Lyle Conway", "character": "Lyle Conway", "id": 1189043, "credit_id": "52fe45fd9251416c9104552f", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Freeman White", "character": "Menacing Stud", "id": 1202774, "credit_id": "52fe45fd9251416c91045533", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "D.V. DeVincentis", "character": "Vampire Underling", "id": 3226, "credit_id": "52fe45fd9251416c91045537", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "Marcus Salgado", "character": "Frost's Goon", "id": 1202775, "credit_id": "52fe45fd9251416c9104553b", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Esau McKnight Jr.", "character": "Frost's Goon", "id": 1202776, "credit_id": "52fe45fd9251416c9104553f", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Erl Van Douglas", "character": "Von Esper", "id": 1202777, "credit_id": "52fe45fd9251416c91045543", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Matt Schulze", "character": "Crease", "id": 31841, "credit_id": "52fe45fd9251416c91045547", "cast_id": 48, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 31}, {"name": "Lennox Brown", "character": "Pleading Goon", "id": 205164, "credit_id": "52fe45fd9251416c9104554b", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Yvette Ocampo", "character": "Party Girl", "id": 1202778, "credit_id": "52fe45fd9251416c9104554f", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Irena Stepic", "character": "Slavic Vampire Lord", "id": 1202779, "credit_id": "52fe45fd9251416c91045553", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Jenya Lano", "character": "Russian Woman", "id": 116402, "credit_id": "52fe45fd9251416c91045557", "cast_id": 52, "profile_path": "/3iQBdHlnNMa2G9dMtDmdop3Sogq.jpg", "order": 35}, {"name": "Levan Uchaneishvili", "character": "Russian Vampire", "id": 27037, "credit_id": "52fe45fd9251416c9104555b", "cast_id": 53, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 36}, {"name": "Richard 'Dr.' Baily", "character": "Cardboard cut-out in Subway", "id": 1202780, "credit_id": "52fe45fd9251416c9104555f", "cast_id": 54, "profile_path": null, "order": 37}, {"name": "Nikki DiSanto", "character": "Vampire Victim", "id": 964544, "credit_id": "52fe45fd9251416c91045563", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Ryan Glorioso", "character": "Blood Bath Vampire", "id": 1176140, "credit_id": "52fe45fd9251416c91045567", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Jeff Imada", "character": "Henchman (uncredited)", "id": 169628, "credit_id": "52fe45fd9251416c9104556b", "cast_id": 57, "profile_path": null, "order": 40}, {"name": "Elliott James", "character": "Blood Club (uncredited)", "id": 1202781, "credit_id": "52fe45fd9251416c9104556f", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Stephen Norrington", "character": "Vampire (uncredited)", "id": 10808, "credit_id": "52fe45fd9251416c91045577", "cast_id": 60, "profile_path": "/8BG5bnmk28IMRN8diyTwExn68HI.jpg", "order": 42}, {"name": "Gerald Okamura", "character": "Vampire (uncredited)", "id": 105047, "credit_id": "52fe45fd9251416c9104557b", "cast_id": 61, "profile_path": "/wF4lMsaIKiClRU5mpHaaQ4oei7F.jpg", "order": 43}, {"name": "Frankie Ray", "character": "Vampire Lord (uncredited)", "id": 181758, "credit_id": "52fe45fd9251416c9104557f", "cast_id": 62, "profile_path": null, "order": 44}, {"name": "Carrie Seeley", "character": "Woman in Elevator (uncredited)", "id": 1202782, "credit_id": "52fe45fd9251416c91045583", "cast_id": 63, "profile_path": null, "order": 45}, {"name": "Beth Theriac", "character": "Woman in Elevator (uncredited)", "id": 1202783, "credit_id": "52fe45fd9251416c91045587", "cast_id": 64, "profile_path": null, "order": 46}, {"name": "Ted King", "character": "Vampire at rave (uncredited)", "id": 1221560, "credit_id": "534a51df0e0a2640bf00162b", "cast_id": 68, "profile_path": "/ehusIxTD4pPim0LSjCFyyWe6tyK.jpg", "order": 47}], "directors": [{"name": "Stephen Norrington", "department": "Directing", "job": "Director", "credit_id": "52fe45fc9251416c91045473", "profile_path": "/8BG5bnmk28IMRN8diyTwExn68HI.jpg", "id": 10808}], "vote_average": 6.2, "runtime": 120}, "36648": {"poster_path": "/4WinsdHQBdh5aTt7Bd7T7dbUXbb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128905366, "overview": "For years, Blade has fought against the vampires in the cover of the night. But now, after falling into the crosshairs of the FBI, he is forced out into the daylight, where he is driven to join forces with a clan of human vampire hunters he never knew existed - The Nightstalkers. Together with Abigail and Hannibal, two deftly trained Nightstalkers, Blade follows a trail of blood to the ancient creature that is also hunting him, the original vampire, Dracula.", "video": false, "id": 36648, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blade: Trinity", "tagline": "The final hunt begins.", "vote_count": 465, "homepage": "http://www.newline.com/properties/bladetrinity.html", "belongs_to_collection": {"backdrop_path": "/ev9QybDDzVSahJQdOb71ZuqNVAo.jpg", "poster_path": "/ltjxGZP6aJrwjl7oOZiiZhFgkF1.jpg", "id": 735, "name": "Blade Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "eo", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0359013", "adult": false, "backdrop_path": "/hBOsH6oyiTXqYO4avJmyZiIRQgo.jpg", "production_companies": [{"name": "Peter Frankfurt Productions", "id": 42209}, {"name": "New Line Cinema", "id": 12}, {"name": "Marvel Studios", "id": 420}, {"name": "Amen Ra Films", "id": 421}, {"name": "Imaginary Forces", "id": 11321}, {"name": "Shawn Danielle Productions Ltd.", "id": 8851}], "release_date": "2004-12-07", "popularity": 1.83180145554788, "original_title": "Blade: Trinity", "budget": 65000000, "cast": [{"name": "Wesley Snipes", "character": "Blade", "id": 10814, "credit_id": "52fe45fd9251416c910455f9", "cast_id": 3, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Kris Kristofferson", "character": "Whistler", "id": 10823, "credit_id": "52fe45fd9251416c910455fd", "cast_id": 4, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 1}, {"name": "Dominic Purcell", "character": "Drake", "id": 10862, "credit_id": "52fe45fd9251416c91045601", "cast_id": 5, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 2}, {"name": "Jessica Biel", "character": "Abigail Whistler", "id": 10860, "credit_id": "52fe45fd9251416c91045605", "cast_id": 6, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 3}, {"name": "Ryan Reynolds", "character": "Hannibal King", "id": 10859, "credit_id": "52fe45fd9251416c91045609", "cast_id": 7, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 4}, {"name": "Parker Posey", "character": "Danica Talos", "id": 7489, "credit_id": "52fe45fd9251416c9104560d", "cast_id": 8, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 5}, {"name": "Paul Michael L\u00e9vesque", "character": "Jarko Grimwood", "id": 115788, "credit_id": "52fe45fd9251416c91045611", "cast_id": 9, "profile_path": "/ex7qon2d0vCnSATfDEPHlpjygb3.jpg", "order": 6}, {"name": "Mark Berry", "character": "Chief Martin Vreede", "id": 143382, "credit_id": "52fe45fd9251416c91045615", "cast_id": 10, "profile_path": "/sWtDBpIztVmRtvpsjq6NPO6rw6p.jpg", "order": 7}, {"name": "John Michael Higgins", "character": "Dr. Edgar Vance", "id": 8265, "credit_id": "52fe45fd9251416c91045619", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 8}, {"name": "Callum Keith Rennie", "character": "Asher Talos", "id": 540, "credit_id": "52fe45fd9251416c9104561d", "cast_id": 12, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 9}, {"name": "Paul Anthony", "character": "Wolfe", "id": 1052900, "credit_id": "52fe45fd9251416c91045621", "cast_id": 13, "profile_path": "/mqqoiJjStvalu6QLLRHhbq1NmRQ.jpg", "order": 10}, {"name": "Fran\u00e7oise Yip", "character": "Virago", "id": 10875, "credit_id": "52fe45fd9251416c91045625", "cast_id": 14, "profile_path": "/6TllaFxiYl6j5l5rmnbAIGInaPJ.jpg", "order": 11}, {"name": "Michael Anthony Rawlins", "character": "Wilson Hale", "id": 276478, "credit_id": "52fe45fd9251416c91045629", "cast_id": 15, "profile_path": "/fRpxDCqB5hcT7H8lIHTVSQ9FqC4.jpg", "order": 12}, {"name": "James Remar", "character": "Ray Cumberland", "id": 1736, "credit_id": "52fe45fd9251416c9104562d", "cast_id": 16, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 13}, {"name": "Natasha Lyonne", "character": "Sommerfield", "id": 10871, "credit_id": "52fe45fd9251416c91045631", "cast_id": 17, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 14}, {"name": "Ginger Broatch", "character": "Zoe", "id": 1052901, "credit_id": "52fe45fd9251416c91045635", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Patton Oswalt", "character": "Hedges", "id": 10872, "credit_id": "52fe45fd9251416c91045639", "cast_id": 19, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 16}, {"name": "Eric Bogosian", "character": "Bentley Tittle", "id": 10866, "credit_id": "52fe45fd9251416c9104563d", "cast_id": 20, "profile_path": "/ez5wbZJ1txZ8EroWSRxElcWlsru.jpg", "order": 17}, {"name": "Erica Cerra", "character": "Goth Vixen Wannabe", "id": 1218928, "credit_id": "542024f9c3a368799600251d", "cast_id": 40, "profile_path": "/4jWKnFDPw7YbqJUuG5TAb9NodDC.jpg", "order": 18}], "directors": [{"name": "David S. Goyer", "department": "Directing", "job": "Director", "credit_id": "52fe45fd9251416c910455ef", "profile_path": "/rEaNEwc55QugcpxOH7YwAa9P8mi.jpg", "id": 3893}], "vote_average": 5.8, "runtime": 123}, "8839": {"poster_path": "/cpMbvFDD2C21pqMNXVPhSWGQBR9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 287928194, "overview": "Furious that her late father only willed her his gloomy-looking mansion rather than his millions, Carrigan Crittenden is ready to burn the place to the ground when she discovers a map to a treasure hidden in the house. But when she enters the rickety mansion to seek her claim, she is frightened away by a wicked wave of ghosts. Determined to get her hands on this hidden fortune, she hires afterlife therapist Dr. James Harvey to exorcise the ghosts from the mansion. Harvey and his daughter Kat move in, and soon Kat meets Casper, the ghost of a young boy who's \"the friendliest ghost you know.\" But not so friendly are Casper's uncles--Stretch, Fatso and Stinkie--who are determined to drive all \"fleshies\" away.", "video": false, "id": 8839, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Casper", "tagline": "Get an afterlife", "vote_count": 239, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nWKbJAOFwJlJm24dTovfQuUJOc2.jpg", "id": 8819, "name": "Casper (Collection)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112642", "adult": false, "backdrop_path": "/ov0ZrirIgvrm97oqhcRxVyjnLbT.jpg", "production_companies": [{"name": "The Harvey Entertainment Company", "id": 11098}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1995-05-26", "popularity": 1.11959608199021, "original_title": "Casper", "budget": 50000000, "cast": [{"name": "Christina Ricci", "character": "Kathleen 'Kat' Harvey", "id": 6886, "credit_id": "52fe44bec3a36847f80a7959", "cast_id": 14, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 0}, {"name": "Bill Pullman", "character": "Dr. James Harvey", "id": 8984, "credit_id": "52fe44bec3a36847f80a7955", "cast_id": 13, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Cathy Moriarty", "character": "Carrigan Crittenden", "id": 14702, "credit_id": "52fe44bec3a36847f80a7965", "cast_id": 17, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 2}, {"name": "Eric Idle", "character": "Paul 'Dibbs' Plutzker", "id": 10713, "credit_id": "52fe44bec3a36847f80a7951", "cast_id": 12, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 3}, {"name": "Joe Nipote", "character": "Stretch (voice)", "id": 159788, "credit_id": "52fe44bec3a36847f80a7981", "cast_id": 24, "profile_path": null, "order": 4}, {"name": "Joe Alaskey", "character": "Stinkie (voice)", "id": 86434, "credit_id": "52fe44bec3a36847f80a7985", "cast_id": 25, "profile_path": "/6ci5EimsKsRg0qxharKHMYA0kzi.jpg", "order": 5}, {"name": "Brad Garrett", "character": "Fatso (voice)", "id": 18, "credit_id": "52fe44bec3a36847f80a7989", "cast_id": 26, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 6}, {"name": "Garette Ratliff Henson", "character": "Vic DePhillippi", "id": 76239, "credit_id": "52fe44bec3a36847f80a7991", "cast_id": 28, "profile_path": "/xXzXov8q56YxH8pbHb1DrJ8hrV.jpg", "order": 7}, {"name": "Jessica Wesson", "character": "Amber Whitmire", "id": 158037, "credit_id": "52fe44bec3a36847f80a7995", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Amy Brenneman", "character": "Amelia Harvey", "id": 15851, "credit_id": "52fe44bfc3a36847f80a79b5", "cast_id": 37, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 9}, {"name": "Malachi Pearson", "character": "Casper (McFadden) (voice)", "id": 56057, "credit_id": "52fe44bec3a36847f80a794d", "cast_id": 11, "profile_path": "/b72Xf9DWCnnPHHcNENanU2hzZYT.jpg", "order": 10}, {"name": "Chauncey Leopardi", "character": "Nicky", "id": 88599, "credit_id": "52fe44bec3a36847f80a795d", "cast_id": 15, "profile_path": "/hA6TSw8Bh9hWTNu7EEc2TydBANu.jpg", "order": 11}, {"name": "Spencer Vrooman", "character": "Andreas", "id": 147496, "credit_id": "52fe44bec3a36847f80a7961", "cast_id": 16, "profile_path": "/RyCG8ZfbwSPRa5O4FylPomxdbj.jpg", "order": 12}, {"name": "Ben Stein", "character": "Mr. Rugg", "id": 131667, "credit_id": "52fe44bec3a36847f80a7969", "cast_id": 18, "profile_path": "/w0sjKYVV7BCK6SBpJy3KmogxLld.jpg", "order": 13}, {"name": "Don Novello", "character": "Father Guido Sarducci", "id": 161860, "credit_id": "52fe44bec3a36847f80a796d", "cast_id": 19, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 14}, {"name": "Fred Rogers", "character": "Mr. Rogers (archive footage) (as Mr. Rogers)", "id": 1074129, "credit_id": "52fe44bec3a36847f80a7971", "cast_id": 20, "profile_path": "/snxYO0GCETZFoto0t4EK37K35ok.jpg", "order": 15}, {"name": "Terry Murphy", "character": "Herself ('Hard Copy')", "id": 1074130, "credit_id": "52fe44bec3a36847f80a7975", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Ernestine Mercer", "character": "Harvey Patient Being Interviewed", "id": 77581, "credit_id": "52fe44bec3a36847f80a7979", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Doug Bruckner", "character": "Reporter (voice)", "id": 1074131, "credit_id": "52fe44bec3a36847f80a797d", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "John Kassir", "character": "The Crypt Keeper (voice)", "id": 31365, "credit_id": "52fe44bec3a36847f80a798d", "cast_id": 27, "profile_path": "/dC0Icg60BabhLJFwR0FbZzFazPq.jpg", "order": 19}, {"name": "Wesley Thompson", "character": "Mr. Curtis", "id": 154158, "credit_id": "52fe44bfc3a36847f80a7999", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Michael Dubrow", "character": "Student #1", "id": 1201303, "credit_id": "52fe44bfc3a36847f80a799d", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "J.J. Anderson", "character": "Student #2", "id": 1201304, "credit_id": "52fe44bfc3a36847f80a79a1", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Jess Harnell", "character": "Arnold (voice)", "id": 84495, "credit_id": "52fe44bfc3a36847f80a79a5", "cast_id": 33, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 23}, {"name": "Michael McCarty", "character": "Drunk in Bar", "id": 1201305, "credit_id": "52fe44bfc3a36847f80a79a9", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Micah Winkelspecht", "character": "Student", "id": 1201306, "credit_id": "52fe44bfc3a36847f80a79ad", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Mike Simmrin", "character": "Phantom", "id": 157954, "credit_id": "52fe44bfc3a36847f80a79b1", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Devon Sawa", "character": "Casper on Screen", "id": 50398, "credit_id": "52fe44bfc3a36847f80a79b9", "cast_id": 38, "profile_path": "/mDMmS4G3cncEy1ngmop5deSan6X.jpg", "order": 27}, {"name": "Dan Aykroyd", "character": "Dr. Raymond Stantz (uncredited)", "id": 707, "credit_id": "52fe44bfc3a36847f80a79bd", "cast_id": 39, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 28}, {"name": "Rodney Dangerfield", "character": "Himself (uncredited)", "id": 3198, "credit_id": "52fe44bfc3a36847f80a79c1", "cast_id": 40, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 29}, {"name": "Clint Eastwood", "character": "Himself (uncredited)", "id": 190, "credit_id": "52fe44bfc3a36847f80a79c5", "cast_id": 41, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 30}, {"name": "Mel Gibson", "character": "Himself (uncredited)", "id": 2461, "credit_id": "52fe44bfc3a36847f80a79c9", "cast_id": 42, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 31}, {"name": "Elise Main", "character": "Little Red Riding Hood (uncredited)", "id": 1201310, "credit_id": "52fe44bfc3a36847f80a79cd", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Tony Stef'Ano", "character": "Kid at Party (uncredited)", "id": 1201311, "credit_id": "52fe44bfc3a36847f80a79d1", "cast_id": 44, "profile_path": null, "order": 33}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe44bec3a36847f80a7913", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 5.9, "runtime": 100}, "36657": {"poster_path": "/4kYj7fUJzhEg7xz8J3oMPi7gDww.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157299717, "overview": "Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.", "video": false, "id": 36657, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "X-Men", "tagline": "Evolution Begins", "vote_count": 1950, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120903", "adult": false, "backdrop_path": "/xm75A18CE7Wc6J9k2ZidFyqJ6rX.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Donners' Company", "id": 431}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Springwood Productions", "id": 22969}, {"name": "Genetics Productions", "id": 22970}], "release_date": "2000-07-14", "popularity": 0.162072760112314, "original_title": "X-Men", "budget": 75000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe45fe9251416c910457ad", "cast_id": 4, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Patrick Stewart", "character": "Professor Charles Xavier", "id": 2387, "credit_id": "52fe45fe9251416c910457b1", "cast_id": 5, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Eric Lensherr / Magneto", "id": 1327, "credit_id": "52fe45fe9251416c910457b5", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Famke Janssen", "character": "Jean Grey", "id": 10696, "credit_id": "52fe45fe9251416c910457b9", "cast_id": 7, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 3}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "52fe45fe9251416c910457bd", "cast_id": 8, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 4}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe45fe9251416c910457c1", "cast_id": 9, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 5}, {"name": "Anna Paquin", "character": "Rogue / Marie D'Ancanto", "id": 10690, "credit_id": "52fe45fe9251416c910457c5", "cast_id": 10, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 6}, {"name": "Tyler Mane", "character": "Sabretooth", "id": 9832, "credit_id": "52fe45fe9251416c910457c9", "cast_id": 11, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 7}, {"name": "Ray Park", "character": "Toad", "id": 11007, "credit_id": "52fe45fe9251416c910457cd", "cast_id": 12, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 8}, {"name": "Rebecca Romijn", "character": "Mystique", "id": 11008, "credit_id": "52fe45fe9251416c910457d1", "cast_id": 13, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 9}, {"name": "Bruce Davison", "character": "Senator Kelly", "id": 52374, "credit_id": "52fe45fe9251416c910457d5", "cast_id": 14, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 10}, {"name": "Matthew Sharp", "character": "Henry Gyrich", "id": 115854, "credit_id": "52fe45fe9251416c910457d9", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Rhona Shekter", "character": "Magneto's Mother", "id": 115855, "credit_id": "52fe45fe9251416c910457dd", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Kenneth McGregor", "character": "Magneto's Father", "id": 115856, "credit_id": "52fe45fe9251416c910457e1", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Shawn Roberts", "character": "Rogue's Boyfriend", "id": 81097, "credit_id": "52fe45fe9251416c910457e5", "cast_id": 18, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 14}, {"name": "Stan Lee", "character": "Hot Dog Vendor", "id": 7624, "credit_id": "52fe45fe9251416c91045801", "cast_id": 23, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 15}, {"name": "Shawn Ashmore", "character": "Bobby Drake / Iceman", "id": 11023, "credit_id": "53741ece0e0a267c67002a9d", "cast_id": 25, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 16}, {"name": "Sumela Kay", "character": "Kitty Pryde", "id": 233, "credit_id": "53741eef0e0a267c5c002c30", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Alex Burton", "character": "John Allerdyce / Pyro", "id": 1446555, "credit_id": "55168d62c3a368348900104d", "cast_id": 40, "profile_path": null, "order": 18}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe45fe9251416c9104579d", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 6.5, "runtime": 104}, "36658": {"poster_path": "/fdmZ0uHWDQzb6atNTaOQdfdQd9X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214948780, "overview": "Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker in this sequel to the Marvel Comics-based blockbuster X-Men. Storm, Wolverine and Jean Grey must join their usual nemeses Magneto and Mystique to unhinge Stryker's scheme to exterminate all mutants.", "video": false, "id": 36658, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "X2: X-Men United", "tagline": "The time has come for those who are different to stand united.", "vote_count": 1273, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0290334", "adult": false, "backdrop_path": "/u2FxA8fDt0uQAnHKTwWGgkPShoL.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}, {"name": "Marvel Entertainment, LLC", "id": 325}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "The Donners' Company", "id": 11307}], "release_date": "2003-04-27", "popularity": 0.134747831743261, "original_title": "X2: X-Men United", "budget": 110000000, "cast": [{"name": "Patrick Stewart", "character": "Professor Charles Xavier", "id": 2387, "credit_id": "52fe45fe9251416c91045865", "cast_id": 8, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe45fe9251416c91045869", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Eric Lensherr / Magneto", "id": 1327, "credit_id": "52fe45fe9251416c9104586d", "cast_id": 10, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe45fe9251416c91045871", "cast_id": 11, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 3}, {"name": "Famke Janssen", "character": "Jean Grey / Phoenix", "id": 10696, "credit_id": "52fe45fe9251416c91045875", "cast_id": 12, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 4}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "52fe45fe9251416c91045879", "cast_id": 13, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 5}, {"name": "Anna Paquin", "character": "Anna Marie / Rogue", "id": 10690, "credit_id": "52fe45fe9251416c9104587d", "cast_id": 14, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 6}, {"name": "Rebecca Romijn", "character": "Raven Darkholme / Mystique", "id": 11008, "credit_id": "52fe45fe9251416c91045881", "cast_id": 15, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 7}, {"name": "Brian Cox", "character": "William Stryker", "id": 1248, "credit_id": "52fe45fe9251416c91045885", "cast_id": 16, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 8}, {"name": "Alan Cumming", "character": "Kurt Wagner / Nightcrawler", "id": 10697, "credit_id": "52fe45fe9251416c91045889", "cast_id": 17, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 9}, {"name": "Bruce Davison", "character": "Senator Kelly", "id": 52374, "credit_id": "52fe45fe9251416c9104588d", "cast_id": 18, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 10}, {"name": "Aaron Stanford", "character": "John Allerdyce / Pyro", "id": 11022, "credit_id": "52fe45fe9251416c91045891", "cast_id": 19, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 11}, {"name": "Shawn Ashmore", "character": "Bobby Drake / Iceman", "id": 11023, "credit_id": "52fe45fe9251416c91045895", "cast_id": 20, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 12}, {"name": "Kelly Hu", "character": "Yuriko Oyama / Lady Deathstrike", "id": 11024, "credit_id": "52fe45fe9251416c91045899", "cast_id": 21, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 13}, {"name": "Katie Stuart", "character": "Kitty Pryde / Sprite", "id": 64470, "credit_id": "52fe45fe9251416c9104589d", "cast_id": 22, "profile_path": "/tdwn6WDvkomrJJZg6401TVhat8z.jpg", "order": 14}, {"name": "Kea Wong", "character": "Jubilee", "id": 115857, "credit_id": "52fe45fe9251416c910458a1", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Cotter Smith", "character": "President McKenna", "id": 115858, "credit_id": "52fe45fe9251416c910458a5", "cast_id": 24, "profile_path": "/4lMLsN7hLmtGPqOt626dnui64Cb.jpg", "order": 16}, {"name": "Chiara Zanni", "character": "White House Tour Guide", "id": 33053, "credit_id": "52fe45fe9251416c910458a9", "cast_id": 25, "profile_path": "/vN7xP1ICUctUflNdYv4QskbuALn.jpg", "order": 17}, {"name": "Bryce Hodgson", "character": "Artie", "id": 172793, "credit_id": "53741f560e0a267c67002ab1", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Shauna Kain", "character": "Theresa Cassidy / Siryn", "id": 941988, "credit_id": "53741f670e0a267c5f002bee", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Daniel Cudmore", "character": "Piotr Rasputin / Colossus", "id": 84222, "credit_id": "53741f770e0a267c55002bed", "cast_id": 29, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 20}, {"name": "Bryan Singer", "character": "Prison Security Officer (uncredited)", "id": 9032, "credit_id": "5526c6f0c3a3686b17002f1f", "cast_id": 42, "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "order": 21}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe45fe9251416c91045861", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 6.5, "runtime": 133}, "137182": {"poster_path": "/lqXL7oV9YYf82USR7DmzPivcKXM.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 5475058, "overview": "\u2018The Broken Circle Breakdown\u2019 tells the love story between Elise and Didier. She has her own tattoo shop, he plays the banjo in a band. It is love at first sight, in spite of major differences. He talks, she listens. He is a dedicated atheist, although at the same time a na\u00efve romantic. She has a cross tattooed in her neck, even though she has both feet firmly on the ground. Their happiness is complete after their little girl Maybelle is born. Unfortunately, Maybelle, at six years old, becomes seriously ill. Didier and Elise respond in very different ways. But Maybelle does not leave them any choice. Didier and Elise will have to fight for her together. Will you get through something like that if you are so different? Or will love let you down if you need it most? \u2018The Broken Circle Breakdown\u2019 is an intense melodrama, full of passion and music. About how love can conquer fate, and sometimes not.", "video": false, "id": 137182, "genres": [{"id": 18, "name": "Drama"}], "title": "The Broken Circle Breakdown", "tagline": "", "vote_count": 96, "homepage": "http://www.thebrokencirclebreakdown.be/en", "belongs_to_collection": null, "original_language": "nl", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "nl", "name": "Nederlands"}], "imdb_id": "tt2024519", "adult": false, "backdrop_path": "/r8G2Y8gTyNPob74QtBaLFmK7OXV.jpg", "production_companies": [{"name": "Topkapi Films", "id": 24845}, {"name": "Menuet Producties", "id": 24846}], "release_date": "2012-10-09", "popularity": 0.98426751406917, "original_title": "The Broken Circle Breakdown", "budget": 0, "cast": [{"name": "Veerle Baetens", "character": "Elise", "id": 82423, "credit_id": "52fe4c2ac3a368484e1aad0d", "cast_id": 1, "profile_path": "/iu0NsJIdbTgv7JI7iYGE8L5Djgm.jpg", "order": 0}, {"name": "Johan Heldenbergh", "character": "Didier", "id": 115742, "credit_id": "52fe4c2ac3a368484e1aad11", "cast_id": 2, "profile_path": "/a8WRS08T565VRIr25JwSerqoYOh.jpg", "order": 1}, {"name": "Nell Cattrysse", "character": "Maybelle", "id": 1106961, "credit_id": "52fe4c2ac3a368484e1aad15", "cast_id": 3, "profile_path": "/qBHwLd9pg6WGAvAxrWi9AHkGyCc.jpg", "order": 2}, {"name": "Geert Van Rampelberg", "character": "William", "id": 220295, "credit_id": "52fe4c2bc3a368484e1aad19", "cast_id": 4, "profile_path": "/dabL26ohzBveC6voVPMvc9PXsYD.jpg", "order": 3}, {"name": "Nils De Caster", "character": "Jock", "id": 1106962, "credit_id": "52fe4c2bc3a368484e1aad1d", "cast_id": 5, "profile_path": "/A8a7DLznOJqrMKfCCmAWa6gNcaC.jpg", "order": 4}, {"name": "Robbie Cleiren", "character": "Jimmy", "id": 88806, "credit_id": "52fe4c2bc3a368484e1aad21", "cast_id": 6, "profile_path": "/cr7D40Ae7ob10DRzAOOzKLhqBB2.jpg", "order": 5}, {"name": "Bert Huysentruyt", "character": "Jef", "id": 1106963, "credit_id": "52fe4c2bc3a368484e1aad25", "cast_id": 7, "profile_path": "/5Lvv4Jzs4mljEDPzeHa1gDmeI0G.jpg", "order": 6}, {"name": "Jan Bijvoet", "character": "Koen", "id": 1106964, "credit_id": "52fe4c2bc3a368484e1aad29", "cast_id": 8, "profile_path": "/8X2yeSWrXSF1MdfGn6j35MOZ1X5.jpg", "order": 7}, {"name": "Blanka Heirman", "character": "Denise", "id": 1106965, "credit_id": "52fe4c2bc3a368484e1aad2d", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Felix Van Groeningen", "department": "Directing", "job": "Director", "credit_id": "52fe4c2bc3a368484e1aad33", "profile_path": null, "id": 239672}], "vote_average": 7.7, "runtime": 110}, "200505": {"poster_path": "/pb5FXL6pypVQbcs3TCzp5GqyTYr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28831145, "overview": "At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.", "video": false, "id": 200505, "genres": [{"id": 18, "name": "Drama"}], "title": "Draft Day", "tagline": "The greatest victories don't always happen on the field.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2223990", "adult": false, "backdrop_path": "/1D9nuelqoHGQdV4EsVIfaSZRONT.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2014-04-11", "popularity": 0.747957775131557, "original_title": "Draft Day", "budget": 0, "cast": [{"name": "Kevin Costner", "character": "Sonny Weaver Jr.", "id": 1269, "credit_id": "52fe4c88c3a368484e1bb41b", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Ali", "id": 9278, "credit_id": "52fe4c88c3a368484e1bb41f", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Tom Welling", "character": "Brian Drew", "id": 11824, "credit_id": "52fe4c88c3a368484e1bb423", "cast_id": 3, "profile_path": "/45hE6LdT31IyMKLtu8JPopByMEH.jpg", "order": 2}, {"name": "Sam Elliott", "character": "", "id": 16431, "credit_id": "52fe4c88c3a368484e1bb427", "cast_id": 4, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 3}, {"name": "Terry Crews", "character": "Earl Jennings", "id": 53256, "credit_id": "52fe4c88c3a368484e1bb42b", "cast_id": 5, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 4}, {"name": "Ellen Burstyn", "character": "Barb Weaver", "id": 9560, "credit_id": "52fe4c88c3a368484e1bb42f", "cast_id": 6, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 5}, {"name": "Rosanna Arquette", "character": "Angie", "id": 2165, "credit_id": "52fe4c88c3a368484e1bb433", "cast_id": 7, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 6}, {"name": "Frank Langella", "character": "Harvey Molina", "id": 8924, "credit_id": "52fe4c88c3a368484e1bb437", "cast_id": 8, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 7}, {"name": "Chi McBride", "character": "Walt Gordon", "id": 8687, "credit_id": "52fe4c88c3a368484e1bb43b", "cast_id": 9, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 8}, {"name": "Denis Leary", "character": "Vince Penn", "id": 5724, "credit_id": "52fe4c88c3a368484e1bb43f", "cast_id": 10, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 9}, {"name": "Patrick St. Esprit", "character": "Tom Michaels", "id": 117437, "credit_id": "52fe4c88c3a368484e1bb443", "cast_id": 11, "profile_path": "/bcbLFQUGDcgrlbJz0blywlfGutL.jpg", "order": 10}, {"name": "Christopher Cousins", "character": "Max Stone", "id": 20379, "credit_id": "52fe4c88c3a368484e1bb447", "cast_id": 12, "profile_path": "/1HGQISEy6FBSse2QuTKj2yfVFrM.jpg", "order": 11}, {"name": "Chadwick Boseman", "character": "Vontae Mack", "id": 172069, "credit_id": "52fe4c88c3a368484e1bb44b", "cast_id": 13, "profile_path": "/xE2sR6skskfCmbVKkebbDXSURiT.jpg", "order": 12}, {"name": "Wade Williams", "character": "O'Reilly", "id": 51930, "credit_id": "52fe4c88c3a368484e1bb44f", "cast_id": 14, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 13}, {"name": "W. Earl Brown", "character": "Ralph Mowry", "id": 6951, "credit_id": "52fe4c88c3a368484e1bb453", "cast_id": 15, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 14}, {"name": "Kevin Dunn", "character": "Marvin", "id": 14721, "credit_id": "52fe4c88c3a368484e1bb457", "cast_id": 16, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 15}, {"name": "Brian Haley", "character": "NFL Commissioner", "id": 10138, "credit_id": "52fe4c88c3a368484e1bb45b", "cast_id": 17, "profile_path": "/oGaZ2sa0nHJ95vW7nN2TgjeeXGM.jpg", "order": 16}, {"name": "Griffin Newman", "character": "Rick the Intern", "id": 225377, "credit_id": "5359c78ac3a3684790000b94", "cast_id": 21, "profile_path": "/2gHhhQf3yPs1Kwc7MS1haRU7Tkn.jpg", "order": 17}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4c88c3a368484e1bb461", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.6, "runtime": 109}, "12090": {"poster_path": "/15Xm4K7vPLRYDDErYK6lnbuvXWY.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101564935, "overview": "Tom Leezak and Sarah McNerney fall in love and plan to get married, despite opposition from Sarah's uptight, rich family. When they do get married, and get a chance to prove Sarah's family wrong, they go on a European honeymoon and run into disaster after disaster. They have to decide whether the honeymoon from hell and a few pre-marital mistakes are worth throwing away their love and marriage.", "video": false, "id": 12090, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Just Married", "tagline": "Welcome to the honeymoon from hell.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0305711", "adult": false, "backdrop_path": "/aJBZSAmTyTFCQ6vYc2O9Tr4uLrS.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2003-01-09", "popularity": 0.916330405719332, "original_title": "Just Married", "budget": 18000000, "cast": [{"name": "Ashton Kutcher", "character": "Tom Leezak", "id": 18976, "credit_id": "52fe44b29251416c7503dd35", "cast_id": 13, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Brittany Murphy", "character": "Sarah McNerney", "id": 328, "credit_id": "52fe44b29251416c7503dd39", "cast_id": 14, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 1}, {"name": "Christian Kane", "character": "Peter Prentiss", "id": 71198, "credit_id": "52fe44b29251416c7503dd3d", "cast_id": 15, "profile_path": "/urL5yaMaEhm5HLOfkDOsZgX1I5f.jpg", "order": 2}, {"name": "David Moscow", "character": "Kyle", "id": 62123, "credit_id": "52fe44b29251416c7503dd41", "cast_id": 16, "profile_path": "/shlyKoI2kEAcgX0AE5qFEFSrLfv.jpg", "order": 3}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dcef", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.5, "runtime": 95}, "12092": {"poster_path": "/nxI5QNs0Sdc5GgQf7zqwSxskf7x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 572000000, "overview": "On a golden afternoon, young Alice follows a White Rabbit, who disappears down a nearby rabbit hole. Quickly following him, she tumbles into the burrow - and enters the merry, topsy-turvy world of Wonderland! Memorable songs and whimsical escapades highlight Alice's journey, which culminates in a madcap encounter with the Queen of Hearts - and her army of playing cards!", "video": false, "id": 12092, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Alice in Wonderland", "tagline": "A world of wonders in One Great Picture", "vote_count": 305, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0043274", "adult": false, "backdrop_path": "/p6frW7qR3wUbssM25BS8BlzyoKc.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1951-07-26", "popularity": 1.74599448160763, "original_title": "Alice in Wonderland", "budget": 3000000, "cast": [{"name": "Kathryn Beaumont", "character": "Alice (voice)", "id": 67228, "credit_id": "52fe44b29251416c7503de05", "cast_id": 21, "profile_path": "/zpN8J3nmzDGoBNC7UeglDIDXtae.jpg", "order": 0}, {"name": "Verna Felton", "character": "Queen of Hearts (voice)", "id": 67290, "credit_id": "52fe44b29251416c7503de09", "cast_id": 23, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 1}, {"name": "Ed Wynn", "character": "Mad Hatter (voice)", "id": 5833, "credit_id": "52fe44b29251416c7503de0d", "cast_id": 25, "profile_path": "/zjH7qZlelUfL57SGXijeZAnA1bS.jpg", "order": 2}, {"name": "Richard Haydn", "character": "Caterpillar (voice)", "id": 29283, "credit_id": "52fe44b29251416c7503de11", "cast_id": 26, "profile_path": "/fEUsWCS5Pd2pnarasaPIV9ksEst.jpg", "order": 3}, {"name": "Sterling Holloway", "character": "Cheshire Cat (voice)", "id": 34759, "credit_id": "52fe44b29251416c7503de15", "cast_id": 27, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 4}, {"name": "Jerry Colonna", "character": "March Hare (voice)", "id": 142527, "credit_id": "52fe44b29251416c7503de19", "cast_id": 28, "profile_path": "/toNZjTxmuc6QczOUZKgWKRp8jUX.jpg", "order": 5}, {"name": "J. Pat O'Malley", "character": "Walrus / Carpenter / Dee / Dum (voice) (as Pat O'Malley)", "id": 22602, "credit_id": "52fe44b29251416c7503de1d", "cast_id": 29, "profile_path": "/if8jAnsuARxFUy3k7PhaFqzHd9N.jpg", "order": 6}, {"name": "Bill Thompson", "character": "White Rabbit / Dodo (voice)", "id": 67230, "credit_id": "52fe44b29251416c7503de21", "cast_id": 30, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 7}, {"name": "Heather Angel", "character": "Alice's Sister (voice)", "id": 93897, "credit_id": "53fd83650e0a262ddc00124a", "cast_id": 38, "profile_path": "/eyi5es3S6iYNFlRdu1VbpruYgIw.jpg", "order": 8}, {"name": "Joseph Kearns", "character": "Doorknob (voice)", "id": 132709, "credit_id": "52fe44b29251416c7503de29", "cast_id": 32, "profile_path": "/bjcWrHMsJOK07wjYwJhyOTmdVhh.jpg", "order": 9}, {"name": "Larry Grey", "character": "Bill (voice)", "id": 1064225, "credit_id": "52fe44b29251416c7503de2d", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Queenie Leonard", "character": "Bird in the Tree (voice)", "id": 39802, "credit_id": "52fe44b29251416c7503de31", "cast_id": 34, "profile_path": "/a0La7jUQRkLKmK7d70jkQ3JDc1C.jpg", "order": 11}, {"name": "Dink Trout", "character": "King of Hearts (voice)", "id": 148225, "credit_id": "52fe44b29251416c7503de35", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Doris Lloyd", "character": "The Rose (voice)", "id": 21878, "credit_id": "52fe44b29251416c7503de39", "cast_id": 36, "profile_path": "/4QJ0iSrOQ9rwfgEaDnqTaXem6c5.jpg", "order": 13}, {"name": "James MacDonald", "character": "Dormouse (voice)", "id": 137461, "credit_id": "52fe44b29251416c7503de3d", "cast_id": 37, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 14}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dd8f", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dd95", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dd9b", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}], "vote_average": 6.5, "runtime": 75}, "36669": {"poster_path": "/irNk0nXr6dccYPwlQwtmDlJbrAv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 431971116, "overview": "The ever-daring James Bond taking on a North Korean leader who undergoes DNA replacement procedures that allow him to assume different identities. American agent Jinx Johnson assists Bond in thwarting the villain's plans to exploit a satellite that is powered by solar energy.", "video": false, "id": 36669, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Die Another Day", "tagline": "Events don't get any bigger than...", "vote_count": 382, "homepage": "http://www.mgm.com/view/movie/232/Die-Another-Day/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0246460", "adult": false, "backdrop_path": "/3YQfmtpbiFCMHcXY3lJ7fGEcOL6.jpg", "production_companies": [{"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "United Artists", "id": 60}], "release_date": "2002-11-17", "popularity": 1.39610798033666, "original_title": "Die Another Day", "budget": 140000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe46009251416c91045ac5", "cast_id": 20, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Halle Berry", "character": "Jinx Johnson", "id": 4587, "credit_id": "52fe45ff9251416c91045a89", "cast_id": 5, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Miranda Frost", "id": 10882, "credit_id": "52fe45ff9251416c91045a91", "cast_id": 7, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "Rick Yune", "character": "Zao", "id": 10883, "credit_id": "52fe45ff9251416c91045a95", "cast_id": 8, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 3}, {"name": "Toby Stephens", "character": "Gustav Graves", "id": 10881, "credit_id": "52fe45ff9251416c91045a8d", "cast_id": 6, "profile_path": "/zZAbK5QVmZSqZzAe16mXWzgjrSs.jpg", "order": 4}, {"name": "John Cleese", "character": "Q", "id": 8930, "credit_id": "52fe45ff9251416c91045a99", "cast_id": 9, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Lawrence Makoare", "character": "Mr. Kil", "id": 1365, "credit_id": "52fe45ff9251416c91045ab1", "cast_id": 15, "profile_path": "/yVHInaWXU4ynUnNE3qa59hvsFAJ.jpg", "order": 6}, {"name": "Michael Madsen", "character": "Damian Falco", "id": 147, "credit_id": "52fe45ff9251416c91045a9d", "cast_id": 10, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 7}, {"name": "Will Yun Lee", "character": "Colonel Moon", "id": 10884, "credit_id": "52fe45ff9251416c91045aa1", "cast_id": 11, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 8}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe45ff9251416c91045abd", "cast_id": 18, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 9}, {"name": "Kenneth Tsang", "character": "General Moon", "id": 10885, "credit_id": "52fe45ff9251416c91045aa5", "cast_id": 12, "profile_path": "/6oYTIjKlp8vsyxod7nPJ1R9V8Hf.jpg", "order": 10}, {"name": "Emilio Echevarr\u00eda", "character": "Raoul", "id": 263, "credit_id": "52fe45ff9251416c91045aa9", "cast_id": 13, "profile_path": "/iGgExtFoyuIAmll19gEmorWQAPX.jpg", "order": 11}, {"name": "Mikhail Gorevoy", "character": "Vlad", "id": 115876, "credit_id": "52fe45ff9251416c91045aad", "cast_id": 14, "profile_path": "/euYqjNx8m3946uLo5uw3y6uTXWZ.jpg", "order": 12}, {"name": "Colin Salmon", "character": "Charles Robinson", "id": 5414, "credit_id": "52fe45ff9251416c91045ab5", "cast_id": 16, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 13}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe45ff9251416c91045ab9", "cast_id": 17, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 14}, {"name": "Madonna", "character": "Verity", "id": 3125, "credit_id": "52fe46009251416c91045ac1", "cast_id": 19, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 15}, {"name": "Rachel Grant", "character": "Peaceful", "id": 86050, "credit_id": "5401cadfc3a3684360003397", "cast_id": 26, "profile_path": "/qSZtvFdMCGRwp3osfVljr3klrNu.jpg", "order": 16}, {"name": "Sim\u00f3n Andreu", "character": "Dr. Alvarez", "id": 24496, "credit_id": "5401cafcc3a36843630030f2", "cast_id": 27, "profile_path": "/6G1JcihI3dS3Dpk4RowWqgVCKmP.jpg", "order": 17}, {"name": "Mark Dymond", "character": "Van Bierke", "id": 57143, "credit_id": "5401cb0dc3a3682d98001867", "cast_id": 28, "profile_path": "/3aTsmFJuNExGUExIg7CLARJQWLV.jpg", "order": 18}, {"name": "Deborah Moore", "character": "Air Hostess", "id": 1231943, "credit_id": "5401cb5dc3a368068c00321b", "cast_id": 29, "profile_path": null, "order": 19}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe45ff9251416c91045a7f", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 5.7, "runtime": 133}, "36670": {"poster_path": "/s9tBlhTEW0OtYJdemVMPbRcD7wk.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160000000, "overview": "James Bond returns as the secret agent 007 one more time to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge. This is the last time for Sean Connery as Her Majesty's Secret Agent 007.", "video": false, "id": 36670, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Never Say Never Again", "tagline": "Sean Connery is James Bond 007", "vote_count": 83, "homepage": "http://www.mgm.com/view/movie/1345/Never-Say-Never-Again/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0086006", "adult": false, "backdrop_path": "/jYO08KXUKvJvzx3KcE7MoaDYvoM.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "PSO International", "id": 427}, {"name": "Orion Pictures", "id": 41}], "release_date": "1983-12-15", "popularity": 0.905851780968435, "original_title": "Never Say Never Again", "budget": 36000000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe46009251416c91045aff", "cast_id": 2, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Kim Basinger", "character": "Domino Petachi", "id": 326, "credit_id": "52fe46009251416c91045b03", "cast_id": 3, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 1}, {"name": "Klaus Maria Brandauer", "character": "Maximilian Largo", "id": 10647, "credit_id": "52fe46009251416c91045b07", "cast_id": 4, "profile_path": "/7TQOSrbO4tk3jecFSg2dVdZjTHQ.jpg", "order": 2}, {"name": "Barbara Carrera", "character": "Fatima Blush", "id": 10938, "credit_id": "52fe46009251416c91045b0b", "cast_id": 5, "profile_path": "/zmuNNytZ5w3ewWC6ShWeqFZl49c.jpg", "order": 3}, {"name": "Max von Sydow", "character": "Ernst Stavro Blofeld", "id": 2201, "credit_id": "52fe46009251416c91045b0f", "cast_id": 6, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 4}, {"name": "Bernie Casey", "character": "Felix Leiter", "id": 10939, "credit_id": "52fe46009251416c91045b13", "cast_id": 7, "profile_path": "/rvL40yyewKgTDVm7doR1ym09sUj.jpg", "order": 5}, {"name": "Alec McCowen", "character": "Q 'Algy' Algernon", "id": 8224, "credit_id": "52fe46009251416c91045b17", "cast_id": 8, "profile_path": "/z9TmCKc1WAFQ0qn2CJjbKlna4MX.jpg", "order": 6}, {"name": "Edward Fox", "character": "M", "id": 9126, "credit_id": "52fe46009251416c91045b1b", "cast_id": 9, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 7}, {"name": "Pamela Salem", "character": "Miss Moneypenny", "id": 115872, "credit_id": "52fe46009251416c91045b1f", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Rowan Atkinson", "character": "Nigel Small-Fawcett", "id": 10730, "credit_id": "52fe46009251416c91045b23", "cast_id": 11, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 9}, {"name": "Valerie Leon", "character": "Lady in Bahama", "id": 95099, "credit_id": "5401cec1c3a36843600033cb", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Milos Kirek", "character": "Kovacs", "id": 152283, "credit_id": "5401ced3c3a3684363003138", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Pat Roach", "character": "Lippe", "id": 10942, "credit_id": "5401cf2bc3a3687d50001669", "cast_id": 14, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 12}, {"name": "Anthony Sharp", "character": "Lord Ambrose", "id": 44700, "credit_id": "5401cf45c3a3680603002e93", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Prunella Gee", "character": "Patricia", "id": 51813, "credit_id": "5401cf58c3a3684363003141", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Gavan O'Herlihy", "character": "Jack Petachi", "id": 1288557, "credit_id": "5401cf6bc3a36843600033db", "cast_id": 17, "profile_path": "/4TQxdmE7abLagt9d3vrHRTXNhxV.jpg", "order": 15}, {"name": "Ronald Pickup", "character": "Elliott", "id": 32556, "credit_id": "5401cf7cc3a36843660031cf", "cast_id": 18, "profile_path": "/a0Q0rSRe8yBPoAyWhNSX7pzIaYq.jpg", "order": 16}, {"name": "Robert Rietti", "character": "Italian Minister", "id": 11841, "credit_id": "5401cf90c3a3680603002e99", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Billy J. Mitchell", "character": "Captain Pederson", "id": 55911, "credit_id": "5401cfb2c3a3680603002e9d", "cast_id": 20, "profile_path": null, "order": 18}], "directors": [{"name": "Irvin Kershner", "department": "Directing", "job": "Director", "credit_id": "52fe46009251416c91045afb", "profile_path": "/ttTefShgVMqX85QawaGpfE1RT3M.jpg", "id": 10930}], "vote_average": 5.9, "runtime": 134}, "12096": {"poster_path": "/eNzbcO8Mps96Zycg6DSFn9b1aO1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the coach of the France soccer team is killed by a poisoned dart in the stadium in the end of a game, and his expensive and huge ring with the diamond Pink Panther disappears, the ambitious Chief Inspector Dreyfus assigns the worst police inspector Jacques Clouseau to the case.", "video": false, "id": 12096, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 10751, "name": "Family"}], "title": "The Pink Panther", "tagline": "Pardon His French.", "vote_count": 133, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tuE4QPHLHaMUkAW4Yggig5U92rl.jpg", "poster_path": "/xYbMC6vo4rMIX8hkTUZva86r0i5.jpg", "id": 130440, "name": "The Pink Panther Collection (Steve Martin Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0383216", "adult": false, "backdrop_path": "/xT9awVPuIh8yWx1b2ODTpngY30M.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-01-18", "popularity": 0.654619302419695, "original_title": "The Pink Panther", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Inspector Jacques Clouseau", "id": 67773, "credit_id": "52fe44b39251416c7503e06f", "cast_id": 11, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Kevin Kline", "character": "Chief Inspector Dreyfus", "id": 8945, "credit_id": "52fe44b39251416c7503e073", "cast_id": 12, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 1}, {"name": "Beyonc\u00e9 Knowles", "character": "Xania", "id": 14386, "credit_id": "52fe44b39251416c7503e077", "cast_id": 13, "profile_path": "/mDDpeDtxuL9Af59rOB8DAjni50A.jpg", "order": 2}, {"name": "Jean Reno", "character": "Gendarme Gilbert Ponton", "id": 1003, "credit_id": "52fe44b39251416c7503e07b", "cast_id": 14, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 3}, {"name": "Emily Mortimer", "character": "Nicole", "id": 1246, "credit_id": "52fe44b39251416c7503e07f", "cast_id": 15, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 4}, {"name": "Alice Taglioni", "character": "Une journaliste", "id": 38863, "credit_id": "550d4bfb925141469900533c", "cast_id": 16, "profile_path": "/mQjbA9EYcM61vhuRBZoGcU5J9zs.jpg", "order": 5}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe44b39251416c7503e035", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.6, "runtime": 93}, "44865": {"poster_path": "/8OIEVvoTmbGotdygjXzSNX8ribV.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 6594136, "overview": "Ip Man's peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family's honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.", "video": false, "id": 44865, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Grandmaster", "tagline": "In Martial Arts there is no right or wrong, only the last man standing.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1462900", "adult": false, "backdrop_path": "/k3ATJ7zmlCw45x6OH4WutlXqTvy.jpg", "production_companies": [{"name": "Sil-Metropole Organisation Ltd.", "id": 35050}, {"name": "Wild Bunch", "id": 856}, {"name": "The Weinstein Company", "id": 308}, {"name": "Block 2 Pictures", "id": 539}, {"name": "Jet Tone Films", "id": 26492}, {"name": "Annapurna Pictures", "id": 13184}], "release_date": "2013-01-08", "popularity": 1.12375936009632, "original_title": "\u4e00\u4ee3\u5b97\u5e2b", "budget": 3860000, "cast": [{"name": "Tony Leung Chiu-Wai", "character": "Ip Man", "id": 1337, "credit_id": "52fe469fc3a36847f810928d", "cast_id": 3, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 0}, {"name": "Zhang Ziyi", "character": "Gong Ruomei/Gong Er", "id": 1339, "credit_id": "52fe469fc3a36847f8109291", "cast_id": 4, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 1}, {"name": "Song Hye-Kyo", "character": "Zhang Yongcheng", "id": 74421, "credit_id": "52fe469fc3a36847f8109295", "cast_id": 5, "profile_path": "/w6df24okDUEuruIflRL63abcDCo.jpg", "order": 2}, {"name": "Chang Chen", "character": "Yi Xian Tian/Razor", "id": 1622, "credit_id": "52fe469fc3a36847f8109299", "cast_id": 6, "profile_path": "/RccYC6G6bhz3Mjpm9wGvsyKsoY.jpg", "order": 3}, {"name": "Zhao Benshan", "character": "Ding Lianshan", "id": 131514, "credit_id": "52fe46a0c3a36847f81092ab", "cast_id": 11, "profile_path": "/cVdZj8vr7rivIFBQuJAO6qGB2iD.jpg", "order": 6}, {"name": "Cung Le", "character": "Iron Shoes", "id": 116637, "credit_id": "52fe46a0c3a36847f81092af", "cast_id": 12, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 7}, {"name": "Yuen Woo-Ping", "character": "Chan Wah-shun (Chen Huashun)", "id": 18899, "credit_id": "52fe46a0c3a36847f81092b7", "cast_id": 14, "profile_path": "/7gr04tWDnsBHHmo18aYLWXZHAvC.jpg", "order": 9}, {"name": "Qingxiang Wang", "character": "Master Gong Yutian", "id": 1297520, "credit_id": "53112985c3a36829b8001ae9", "cast_id": 15, "profile_path": "/pFeIEPwTDiCPWrvaqgSeRgzecUN.jpg", "order": 10}, {"name": "John Zhang Jin", "character": "Ma San", "id": 1183808, "credit_id": "547aa93e9251414c65001202", "cast_id": 21, "profile_path": "/vJnBZJp9HgNMFiBoPCEduu7Si9e.jpg", "order": 12}, {"name": "Julian Cheung Chi-Lam", "character": "", "id": 144860, "credit_id": "54a4e06a925141236b00aaf4", "cast_id": 22, "profile_path": "/wHea7TA8joBBMUGtNEDE24XbpFi.jpg", "order": 13}], "directors": [{"name": "Wong Kar-Wai", "department": "Directing", "job": "Director", "credit_id": "52fe469fc3a36847f8109283", "profile_path": "/rGk5pKmYcWB3jVPCfZcTZxDrAUr.jpg", "id": 12453}], "vote_average": 6.5, "runtime": 130}, "8843": {"poster_path": "/tu2rPoVBhEp9fZfOahkqbXSNsxS.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104155843, "overview": "A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.", "video": false, "id": 8843, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Cell", "tagline": "Enter The Mind Of A Killer", "vote_count": 95, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rFbUuvYzGI6uKRPUcQVTjmoGJy5.jpg", "poster_path": "/37KiF6CfXJS60E4oBk21Dx8NIcY.jpg", "id": 223564, "name": "The Cell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0209958", "adult": false, "backdrop_path": "/46aAskiXtvdtAR9ryEOXJPazKpL.jpg", "production_companies": [{"name": "Caro-McLeod", "id": 26084}, {"name": "Katira Productions GmbH & Co. KG", "id": 26083}, {"name": "New Line Cinema", "id": 12}, {"name": "Avery Pix", "id": 1565}, {"name": "Radical Media", "id": 11152}], "release_date": "2000-08-17", "popularity": 0.60677246571785, "original_title": "The Cell", "budget": 33000000, "cast": [{"name": "Jennifer Lopez", "character": "Catherine Deane", "id": 16866, "credit_id": "52fe44bfc3a36847f80a7bad", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Vincent D'Onofrio", "character": "Carl Rudolph Stargher", "id": 7132, "credit_id": "52fe44bfc3a36847f80a7bb1", "cast_id": 2, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Peter Novak", "id": 4937, "credit_id": "52fe44bfc3a36847f80a7bbb", "cast_id": 4, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Marianne Jean-Baptiste", "character": "Dr. Miriam Kent", "id": 17352, "credit_id": "52fe44bfc3a36847f80a7bbf", "cast_id": 5, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 3}, {"name": "Catherine Sutherland", "character": "Anne Marie Vicksey", "id": 56513, "credit_id": "52fe44bfc3a36847f80a7bc3", "cast_id": 6, "profile_path": "/oqGw7YgccEIVogMDhVdDponW8UV.jpg", "order": 4}, {"name": "James Gammon", "character": "Teddy Lee", "id": 16433, "credit_id": "52fe44bfc3a36847f80a7bc7", "cast_id": 7, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 5}, {"name": "Colton James", "character": "Edward Baines", "id": 94509, "credit_id": "52fe44bfc3a36847f80a7c0d", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Dylan Baker", "character": "Henry West", "id": 19152, "credit_id": "52fe44bfc3a36847f80a7c11", "cast_id": 20, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 7}, {"name": "Gerry Becker", "character": "Dr. Barry Cooperman", "id": 19468, "credit_id": "52fe44bfc3a36847f80a7c15", "cast_id": 21, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 8}, {"name": "Musetta Vander", "character": "Ella Baines", "id": 1475, "credit_id": "52fe44bfc3a36847f80a7c19", "cast_id": 22, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 9}, {"name": "Patrick Bauchau", "character": "Lucien Baines", "id": 5274, "credit_id": "52fe44bfc3a36847f80a7c1d", "cast_id": 23, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 10}, {"name": "Jake Weber", "character": "Gordon Ramsey", "id": 4177, "credit_id": "52fe44bfc3a36847f80a7c21", "cast_id": 24, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 11}, {"name": "Dean Norris", "character": "Cole", "id": 14329, "credit_id": "52fe44bfc3a36847f80a7c25", "cast_id": 25, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 12}, {"name": "Tara Subkoff", "character": "Julia Hickson", "id": 61111, "credit_id": "52fe44bfc3a36847f80a7c29", "cast_id": 26, "profile_path": "/qBbSymmytAOqgAGlll3sN5LXih3.jpg", "order": 13}, {"name": "Lauri Johnson", "character": "Mrs. Hickson", "id": 66499, "credit_id": "52fe44bfc3a36847f80a7c2d", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "John Cothran, Jr.", "character": "Agent Stockwell", "id": 9785, "credit_id": "53ad3c930e0a265986001a18", "cast_id": 47, "profile_path": "/bbm2ihEzSwu98YCEZSaYOfiGhEH.jpg", "order": 15}, {"name": "Jack Conley", "character": "Agent Brock", "id": 21675, "credit_id": "53ad3cc40e0a265975001a4f", "cast_id": 48, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 16}, {"name": "Kamar de los Reyes", "character": "Officer Alexander", "id": 400821, "credit_id": "53ad3d1a0e0a26597d001a8b", "cast_id": 49, "profile_path": "/oy4TUyuNnF3OQtLGHxjVlFGWPBP.jpg", "order": 17}, {"name": "Pruitt Taylor Vince", "character": "Dr. Reid", "id": 3201, "credit_id": "53ad3d470e0a265979001aaa", "cast_id": 50, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 18}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe44bfc3a36847f80a7c09", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 6.0, "runtime": 107}, "12100": {"poster_path": "/siWpVZlD3pahKXNnV9M52yCMZJG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40914068, "overview": "Joe Enders is a gung-ho Marine assigned to protect a \"windtalker\" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.", "video": false, "id": 12100, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Windtalkers", "tagline": "Honor Was Their Code.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "nv", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245562", "adult": false, "backdrop_path": "/gP9C1wmbF2CV4SZkPbVvfawRuTv.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Lion Rock Productions", "id": 2812}], "release_date": "2002-06-14", "popularity": 1.07765799187342, "original_title": "Windtalkers", "budget": 115000000, "cast": [{"name": "Nicolas Cage", "character": "Sergeant Joe Enders", "id": 2963, "credit_id": "52fe44b49251416c7503e213", "cast_id": 14, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Adam Beach", "character": "Private Ben Yahzee", "id": 33527, "credit_id": "52fe44b49251416c7503e217", "cast_id": 15, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 1}, {"name": "Peter Stormare", "character": "Sergeant Eric Hjelmstad", "id": 53, "credit_id": "52fe44b49251416c7503e21b", "cast_id": 16, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 2}, {"name": "Noah Emmerich", "character": "Corporal Charles Rogers", "id": 11315, "credit_id": "52fe44b49251416c7503e21f", "cast_id": 17, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 3}, {"name": "Mark Ruffalo", "character": "Pappas", "id": 103, "credit_id": "53281cee9251411a14001e06", "cast_id": 19, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 4}, {"name": "Jason Isaacs", "character": "Major Mellitz", "id": 11355, "credit_id": "533b34fec3a36844f400013d", "cast_id": 20, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 5}, {"name": "Christian Slater", "character": "Sergeant Peter Henderson", "id": 2224, "credit_id": "533b3520c3a36844f400013f", "cast_id": 21, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 6}, {"name": "Frances O'Connor", "character": "Rita Swelton", "id": 1518, "credit_id": "533b357ec3a36844f4000147", "cast_id": 22, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 7}, {"name": "Keith Campbell", "character": "Kittring", "id": 15318, "credit_id": "53b955fcc3a3685ec100577e", "cast_id": 29, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 8}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe44b49251416c7503e1cd", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 6.0, "runtime": 134}, "12102": {"poster_path": "/oyYtH37h8rLUxlERoD49losVvlg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ted Kramer is a career man for whom his work comes before his family. His wife Joanna cannot take this anymore, so she decides to leave him. Ted is now faced with the tasks of housekeeping and taking care of himself and their young son Billy. When he has learned to adjust his life to these new responsibilities, Joanna resurfaces and wants Billy back. Ted however refuses to give him up, so they go to court to fight for the custody of their son.", "video": false, "id": 12102, "genres": [{"id": 18, "name": "Drama"}], "title": "Kramer vs. Kramer", "tagline": "There are three sides to this love story", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079417", "adult": false, "backdrop_path": "/uykne2LCkVuD5NEBzicCmCHFqBa.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1979-12-19", "popularity": 0.554897819997245, "original_title": "Kramer vs. Kramer", "budget": 0, "cast": [{"name": "Dustin Hoffman", "character": "Ted Kramer", "id": 4483, "credit_id": "52fe44b49251416c7503e2f5", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Joanna Kramer", "id": 5064, "credit_id": "52fe44b49251416c7503e2f9", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Jane Alexander", "character": "Margaret Phelps", "id": 13724, "credit_id": "52fe44b49251416c7503e2fd", "cast_id": 3, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 2}, {"name": "Justin Henry", "character": "Billy Kramer", "id": 71241, "credit_id": "52fe44b49251416c7503e301", "cast_id": 4, "profile_path": "/s7Lu0NXISdK2kYpUN2KIZvIQXkR.jpg", "order": 3}, {"name": "Howard Duff", "character": "John Shaunessy", "id": 44846, "credit_id": "52fe44b59251416c7503e329", "cast_id": 11, "profile_path": "/tFRANDwl7xs5OKdR7ZlVoo1glvH.jpg", "order": 4}, {"name": "George Coe", "character": "Jim O'Connor", "id": 14102, "credit_id": "52fe44b59251416c7503e32d", "cast_id": 12, "profile_path": "/2ygklxHSWcNuWg4hjZe5J9MlzNR.jpg", "order": 5}, {"name": "JoBeth Williams", "character": "Phyllis Bernard (as Jobeth Williams)", "id": 10080, "credit_id": "52fe44b59251416c7503e331", "cast_id": 13, "profile_path": "/qYpexEkDDXG1TwtmAVgr5wsi60x.jpg", "order": 6}, {"name": "Bill Moor", "character": "Gressen", "id": 260967, "credit_id": "52fe44b59251416c7503e335", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Howland Chamberlain", "character": "Judge Atkins", "id": 96137, "credit_id": "52fe44b59251416c7503e339", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Jack Ramage", "character": "Spencer", "id": 120293, "credit_id": "52fe44b59251416c7503e33d", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jess Osuna", "character": "Ackerman", "id": 218432, "credit_id": "52fe44b59251416c7503e341", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Nicholas Hormann", "character": "Interviewer", "id": 150213, "credit_id": "52fe44b59251416c7503e345", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Ellen Parker", "character": "Teacher", "id": 171264, "credit_id": "52fe44b59251416c7503e349", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Shelby Brammer", "character": "Ted's Secretary", "id": 322506, "credit_id": "52fe44b59251416c7503e34d", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Carol Nadell", "character": "Mrs. Kline", "id": 370042, "credit_id": "52fe44b59251416c7503e351", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Robert Benton", "department": "Directing", "job": "Director", "credit_id": "52fe44b49251416c7503e307", "profile_path": "/wVaHC1VX9yBg9MIEC7POAJ0JlUo.jpg", "id": 6729}], "vote_average": 7.1, "runtime": 105}, "12104": {"poster_path": "/35xwOkGoyceTW7Q8n14di0eMoxj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A troubled rock star descends into madness in the midst of his physical and social isolation from everyone.", "video": false, "id": 12104, "genres": [{"id": 10402, "name": "Music"}], "title": "Pink Floyd - The Wall", "tagline": "The Memories. The Madness. The Music... The Movie.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084503", "adult": false, "backdrop_path": "/sofxsyR4Br8CdKLCZzzITvdrU4g.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Goldcrest Films International", "id": 500}, {"name": "Tin Blue", "id": 8834}], "release_date": "1982-07-14", "popularity": 0.508512924990183, "original_title": "Pink Floyd - The Wall", "budget": 0, "cast": [{"name": "Christine Hargreaves", "character": "Pink's Mother", "id": 71247, "credit_id": "52fe44b59251416c7503e457", "cast_id": 4, "profile_path": null, "order": 0}, {"name": "James Laurenson", "character": "Pink's Father", "id": 71248, "credit_id": "52fe44b59251416c7503e45b", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Eleanor David", "character": "Pink's Wife", "id": 71249, "credit_id": "52fe44b59251416c7503e45f", "cast_id": 6, "profile_path": "/pwB2azYFDJ47yh4PgLRQjGB353S.jpg", "order": 2}, {"name": "Bob Geldof", "character": "Pink", "id": 47991, "credit_id": "52fe44b59251416c7503e48d", "cast_id": 14, "profile_path": "/nYXNesSEcnQ0TUKWRquMvK1wshZ.jpg", "order": 3}, {"name": "Alex McAvoy", "character": "Schoolteacher", "id": 994272, "credit_id": "52fe44b59251416c7503e491", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Jenny Wright", "character": "American Groupie", "id": 64056, "credit_id": "52fe44b59251416c7503e495", "cast_id": 16, "profile_path": "/scz1dQwtwyFDej8zCAbk6p5bqdp.jpg", "order": 5}, {"name": "Kevin McKeon", "character": "Young Pink", "id": 980082, "credit_id": "52fe44b59251416c7503e499", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Bob Hoskins", "character": "Rock and Roll Manager", "id": 382, "credit_id": "52fe44b59251416c7503e49d", "cast_id": 18, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 7}, {"name": "David Bingham", "character": "Little Pink", "id": 980076, "credit_id": "52fe44b59251416c7503e4a1", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Ellis Dale", "character": "English Doctor", "id": 201569, "credit_id": "52fe44b59251416c7503e4a5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "James Hazeldine", "character": "Lover", "id": 135101, "credit_id": "52fe44b59251416c7503e4a9", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Ray Mort", "character": "Playground Father", "id": 249810, "credit_id": "52fe44b59251416c7503e4ad", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Margery Mason", "character": "Teacher's Wife", "id": 213222, "credit_id": "52fe44b59251416c7503e4b1", "cast_id": 23, "profile_path": "/A1nJN61RozmvjqJQrHXfHM7F03W.jpg", "order": 12}, {"name": "Robert Bridges", "character": "American Doctor", "id": 172953, "credit_id": "52fe44b59251416c7503e4b5", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Michael Ensign", "character": "Hotel Manager", "id": 1080265, "credit_id": "52fe44b59251416c7503e4b9", "cast_id": 25, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 14}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44b59251416c7503e44d", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.2, "runtime": 95}, "8844": {"poster_path": "/vzmL6fP7aPKNKPRTFnZmiUfciyV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 262797249, "overview": "When siblings Judy and Peter discover an enchanted board game that opens the door to a magical world, they unwittingly invite Alan -- an adult who's been trapped inside the game for 26 years -- into their living room. Alan's only hope for freedom is to finish the game, which proves risky as all three find themselves running from giant rhinoceroses, evil monkeys and other terrifying creatures.", "video": false, "id": 8844, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Jumanji", "tagline": "Roll the dice and unleash the excitement!", "vote_count": 470, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0113497", "adult": false, "backdrop_path": "/52lVqTDhIeNTjT7EiJuovXgw6iE.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Interscope Communications", "id": 10201}, {"name": "Teitler Film", "id": 2550}], "release_date": "1995-12-15", "popularity": 1.13430857594731, "original_title": "Jumanji", "budget": 65000000, "cast": [{"name": "Robin Williams", "character": "Alan Parrish", "id": 2157, "credit_id": "52fe44bfc3a36847f80a7c73", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Judy Sheperd", "id": 205, "credit_id": "52fe44bfc3a36847f80a7c77", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Jonathan Hyde", "character": "Samuel Alan Parrish / Van Pelt", "id": 8537, "credit_id": "52fe44bfc3a36847f80a7c99", "cast_id": 8, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 2}, {"name": "Bonnie Hunt", "character": "Sarah Whittle", "id": 5149, "credit_id": "52fe44bfc3a36847f80a7c9d", "cast_id": 10, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 3}, {"name": "Patricia Clarkson", "character": "Carol Anne Parrish", "id": 1276, "credit_id": "52fe44bfc3a36847f80a7ca1", "cast_id": 11, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 4}, {"name": "Gillian Barber", "character": "Mrs. Thomas the Realtor", "id": 56522, "credit_id": "52fe44bfc3a36847f80a7ca5", "cast_id": 12, "profile_path": "/qoqPX15J5jh6Sy0A9JvvRJIuw64.jpg", "order": 5}, {"name": "Laura Bell Bundy", "character": "Sarah Whittle (young)", "id": 56523, "credit_id": "52fe44bfc3a36847f80a7ca9", "cast_id": 13, "profile_path": "/8tAVDBRoZPjKfCbBDyh4iK9JNEp.jpg", "order": 6}, {"name": "Adam Hann-Byrd", "character": "Alan Parrish (young)", "id": 46530, "credit_id": "52fe44bfc3a36847f80a7cad", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Bradley Pierce", "character": "Peter Shepherd", "id": 145151, "credit_id": "52fe44c0c3a36847f80a7ce7", "cast_id": 24, "profile_path": "/rukciCbfBZWWvyJELZqxQWzSqnS.jpg", "order": 8}, {"name": "Bebe Neuwirth", "character": "Nora Shepherd", "id": 10739, "credit_id": "52fe44c0c3a36847f80a7ceb", "cast_id": 25, "profile_path": "/xm58rpMRVDHS0IGttw1pTlqGwkN.jpg", "order": 9}, {"name": "David Alan Grier", "character": "Carl Bentley", "id": 58563, "credit_id": "52fe44c0c3a36847f80a7cef", "cast_id": 26, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 10}, {"name": "Brandon Obray", "character": "Benjamin", "id": 1000304, "credit_id": "52fe44c0c3a36847f80a7cf3", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Cyrus Thiedeke", "character": "Caleb", "id": 188949, "credit_id": "52fe44c0c3a36847f80a7cf7", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Gary Joseph Thorup", "character": "Billy Jessup", "id": 1076551, "credit_id": "52fe44c0c3a36847f80a7cfb", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "James Handy", "character": "Exterminator", "id": 51551, "credit_id": "52fe44c0c3a36847f80a7cff", "cast_id": 31, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 14}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe44bfc3a36847f80a7c7d", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.4, "runtime": 104}, "12106": {"poster_path": "/dGw34L86JBo0KgNJuRq82LqOERe.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18552460, "overview": "A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.", "video": false, "id": 12106, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "The Quick and the Dead", "tagline": "Think you are quick enough?", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114214", "adult": false, "backdrop_path": "/e4GosmnUbvEGVINl3BC5vc7fIhU.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1995-02-09", "popularity": 0.694925254711247, "original_title": "The Quick and the Dead", "budget": 32000000, "cast": [{"name": "Sharon Stone", "character": "Ellen \"The Lady\u201c", "id": 4430, "credit_id": "52fe44b69251416c7503e59b", "cast_id": 11, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 0}, {"name": "Gene Hackman", "character": "John Herod", "id": 193, "credit_id": "52fe44b69251416c7503e59f", "cast_id": 12, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Russell Crowe", "character": "Cort", "id": 934, "credit_id": "52fe44b69251416c7503e5a3", "cast_id": 13, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 2}, {"name": "Leonardo DiCaprio", "character": "Fee Herod \"The Kid\u201c", "id": 6193, "credit_id": "52fe44b69251416c7503e5a7", "cast_id": 14, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 3}, {"name": "Tobin Bell", "character": "Dog Kelly", "id": 2144, "credit_id": "52fe44b69251416c7503e5ab", "cast_id": 15, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 4}, {"name": "Roberts Blossom", "character": "Doc Wallace", "id": 66288, "credit_id": "52fe44b69251416c7503e5af", "cast_id": 16, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 5}, {"name": "Kevin Conway", "character": "Eugene Dred", "id": 27116, "credit_id": "52fe44b69251416c7503e5b3", "cast_id": 17, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 6}, {"name": "Keith David", "character": "Sgt. Cantrell", "id": 65827, "credit_id": "52fe44b69251416c7503e5b7", "cast_id": 18, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "Lance Henriksen", "character": "Ace Hanlon", "id": 2714, "credit_id": "52fe44b69251416c7503e5bb", "cast_id": 19, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 8}, {"name": "Pat Hingle", "character": "Horace", "id": 3798, "credit_id": "52fe44b69251416c7503e5bf", "cast_id": 20, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 9}, {"name": "Gary Sinise", "character": "Marshall", "id": 33, "credit_id": "52fe44b69251416c7503e5c3", "cast_id": 21, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 10}, {"name": "Mark Boone Junior", "character": "Scars", "id": 534, "credit_id": "52fe44b69251416c7503e5c7", "cast_id": 22, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 11}, {"name": "Olivia Burnette", "character": "Katie", "id": 27261, "credit_id": "52fe44b69251416c7503e5cb", "cast_id": 23, "profile_path": "/7K8Hqv59v96QqkDHh9vQo91h3Gx.jpg", "order": 12}, {"name": "Fay Masterson", "character": "Mattie Silk", "id": 65409, "credit_id": "52fe44b69251416c7503e5cf", "cast_id": 24, "profile_path": "/rjNb7ZDq00KqhFHwuinSge5Iv8i.jpg", "order": 13}, {"name": "Raynor Scheine", "character": "Ratsy", "id": 21082, "credit_id": "52fe44b69251416c7503e5d3", "cast_id": 25, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 14}, {"name": "Woody Strode", "character": "Charlie Moonlight", "id": 4963, "credit_id": "5510d7bbc3a36802c3000927", "cast_id": 26, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 15}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe44b69251416c7503e561", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.0, "runtime": 107}, "12107": {"poster_path": "/tVXnnRD0bSQxJ18tzJDxVaxcNWm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123307945, "overview": "The hilarity begins when professor Sherman Klump finds romance with fellow DNA specialist, Denise Gaines, and discovers a brilliant formula that reverses aging. But Sherman's thin and obnoxious alter ego, Buddy Love, wants out...and a big piece of the action. And when Buddy gets loose, things get seriously nutty.", "video": false, "id": 12107, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Nutty Professor II: The Klumps", "tagline": "The Klumps are back!", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mW1NQFOSCwwgk03SpcpwiQEL2Lo.jpg", "poster_path": "/a6zC38ID7EyAflo8tsPDP4IE0Mt.jpg", "id": 86028, "name": "The Nutty Professor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0144528", "adult": false, "backdrop_path": "/uVqG76HuDLQMl2SXsEiOSHZpeZZ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2000-07-27", "popularity": 0.915219922204254, "original_title": "Nutty Professor II: The Klumps", "budget": 84000000, "cast": [{"name": "Eddie Murphy", "character": "Professor Sherman Klump and various roles", "id": 776, "credit_id": "52fe44b69251416c7503e66f", "cast_id": 15, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Janet Jackson", "character": "Denise Gaines", "id": 54421, "credit_id": "52fe44b69251416c7503e673", "cast_id": 17, "profile_path": "/nFb7D7lVHLU0e34BXP0BRCZwCJC.jpg", "order": 1}, {"name": "Larry Miller", "character": "Dean Richmond", "id": 1211, "credit_id": "52fe44b69251416c7503e677", "cast_id": 18, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 2}, {"name": "John Ales", "character": "Jason", "id": 64343, "credit_id": "52fe44b69251416c7503e67b", "cast_id": 19, "profile_path": "/hmu0T2yZSITJX0Wxhja1X7YaV1n.jpg", "order": 3}, {"name": "Richard Gant", "character": "Denise's Father", "id": 16662, "credit_id": "52fe44b69251416c7503e67f", "cast_id": 20, "profile_path": "/oYDHpuey2NMlGaGqMqZJVAoKoy5.jpg", "order": 4}, {"name": "Anna Maria Horsford", "character": "Denise's Mother", "id": 54800, "credit_id": "52fe44b69251416c7503e683", "cast_id": 21, "profile_path": "/l2WIo8fAWrksNIBO6tzhFkN23Cb.jpg", "order": 5}, {"name": "Melinda McGraw", "character": "Leanne Guilford", "id": 58692, "credit_id": "52fe44b69251416c7503e687", "cast_id": 22, "profile_path": "/6FlZftxpIQ0PoJKvtEL9lSbgI63.jpg", "order": 6}, {"name": "Jamal Mixon", "character": "Ernie Klump, Jr.", "id": 59019, "credit_id": "52fe44b69251416c7503e68b", "cast_id": 23, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 7}, {"name": "Gabriel Williams", "character": "Isaac", "id": 162758, "credit_id": "52fe44b69251416c7503e68f", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Chris Elliott", "character": "Restaurant Manager", "id": 1534, "credit_id": "52fe44b69251416c7503e693", "cast_id": 25, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 9}, {"name": "Duffy Taylor", "character": "Restaurant Trainee", "id": 553853, "credit_id": "52fe44b69251416c7503e697", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Earl Boen", "character": "Dr. Knoll", "id": 2716, "credit_id": "52fe44b69251416c7503e69b", "cast_id": 27, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 11}, {"name": "Nikki Cox", "character": "Bright Student", "id": 87317, "credit_id": "52fe44b69251416c7503e69f", "cast_id": 28, "profile_path": "/hFmNQPXI4HU89B9MI2iTQrIMtv3.jpg", "order": 12}, {"name": "Sylvester Jenkins", "character": "Old Willie", "id": 553854, "credit_id": "52fe44b69251416c7503e6a7", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Wanda Sykes", "character": "Chantal", "id": 27102, "credit_id": "52fe44b69251416c7503e6ab", "cast_id": 31, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 15}, {"name": "Charles Walker", "character": "Preacher", "id": 154630, "credit_id": "52fe44b69251416c7503e6b3", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Enya Flack", "character": "Bridesmaid", "id": 102698, "credit_id": "52fe44b69251416c7503e6b7", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Freda Payne", "character": "Claudine", "id": 1236187, "credit_id": "531c2a6792514177b7005428", "cast_id": 35, "profile_path": "/AdMjCrMHeXxlgfUebB3J0vUCurD.jpg", "order": 19}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44b69251416c7503e61d", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 5.3, "runtime": 106}, "6114": {"poster_path": "/mIKHK5MYa04uTUlryOpbzy18GNl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215862692, "overview": "When Dracula leaves the captive Jonathan Harker and Transylvania for London in search of Mina Harker -- the spitting image of Dracula's long-dead wife, Elisabeta -- obsessed vampire hunter Dr. Van Helsing sets out to end the madness.", "video": false, "id": 6114, "genres": [{"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Dracula", "tagline": "Love never dies.", "vote_count": 252, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}, {"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103874", "adult": false, "backdrop_path": "/rSlIsLjD2wb7M3PWCradPq9LKq8.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Osiris Films", "id": 2019}], "release_date": "1992-11-13", "popularity": 0.867516142982645, "original_title": "Dracula", "budget": 40000000, "cast": [{"name": "Gary Oldman", "character": "Dracula", "id": 64, "credit_id": "52fe443ec3a36847f808a957", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Mina Murray / Elisabeta", "id": 1920, "credit_id": "52fe443ec3a36847f808a95b", "cast_id": 3, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Anthony Hopkins", "character": "Professor Van Helsing", "id": 4173, "credit_id": "52fe443ec3a36847f808a95f", "cast_id": 4, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 2}, {"name": "Keanu Reeves", "character": "Jonathan Harker", "id": 6384, "credit_id": "52fe443ec3a36847f808a963", "cast_id": 5, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 3}, {"name": "Richard E. Grant", "character": "Dr. Jack Seward", "id": 20766, "credit_id": "52fe443ec3a36847f808a967", "cast_id": 6, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 4}, {"name": "Sadie Frost", "character": "Lucy Westenra", "id": 41381, "credit_id": "52fe443ec3a36847f808a96b", "cast_id": 7, "profile_path": "/a2klGryTh1VpIUVkqs7kM0kBBis.jpg", "order": 5}, {"name": "Cary Elwes", "character": "Lord Arthur Helmwood", "id": 2130, "credit_id": "52fe443ec3a36847f808a96f", "cast_id": 8, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 6}, {"name": "Billy Campbell", "character": "Quincey P. Morris", "id": 20215, "credit_id": "52fe443ec3a36847f808a973", "cast_id": 9, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 7}, {"name": "Tom Waits", "character": "R.M. Renfield", "id": 2887, "credit_id": "52fe443ec3a36847f808a977", "cast_id": 10, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 8}, {"name": "Jay Robinson", "character": "Mr. Hawkins", "id": 16097, "credit_id": "52fe443ec3a36847f808a97b", "cast_id": 11, "profile_path": "/eVZopDhNpFjeZyMg1OZn4LGPQF8.jpg", "order": 9}, {"name": "Monica Bellucci", "character": "Dracula's Bride # 1", "id": 28782, "credit_id": "52fe443ec3a36847f808a97f", "cast_id": 12, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 10}, {"name": "Michaela Bercu", "character": "Dracula's Bride # 2", "id": 47954, "credit_id": "52fe443ec3a36847f808a983", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Florina Kendrick", "character": "Dracula's Bride # 3", "id": 47955, "credit_id": "52fe443ec3a36847f808a987", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "I.M. Hobson", "character": "Hobbs", "id": 4257, "credit_id": "52fe443ec3a36847f808a9af", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Laurie Franks", "character": "Lucy's Maid", "id": 162940, "credit_id": "52fe443ec3a36847f808a9b3", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Maud Winchester", "character": "Downstairs Maid", "id": 203898, "credit_id": "52fe443ec3a36847f808a9b7", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Octavian Cadia", "character": "Deacon", "id": 1089946, "credit_id": "52fe443ec3a36847f808a9bb", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Robert Getz", "character": "Priest", "id": 1089947, "credit_id": "52fe443ec3a36847f808a9bf", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Dagmar Stanec", "character": "Sister Agatha", "id": 1089948, "credit_id": "52fe443ec3a36847f808a9c3", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Eniko \u00d6ss", "character": "Sister Sylva", "id": 1089949, "credit_id": "52fe443ec3a36847f808a9c7", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Nancy Linehan Charles", "character": "Older Woman", "id": 110928, "credit_id": "52fe443ec3a36847f808a9cb", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Tatiana von Furstenberg", "character": "Younger Woman", "id": 564083, "credit_id": "52fe443ec3a36847f808a9cf", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Jules Sylvester", "character": "Zookeeper", "id": 156666, "credit_id": "52fe443ec3a36847f808a9d3", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Hubert Wells", "character": "Zookeeper", "id": 1089950, "credit_id": "52fe443ec3a36847f808a9d7", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Honey Lauren", "character": "Peep Show Girl", "id": 102898, "credit_id": "52fe443ec3a36847f808a9df", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Judi Diamond", "character": "Peep Show Girl", "id": 1089952, "credit_id": "52fe443ec3a36847f808a9e3", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Robert Buckingham", "character": "Husband", "id": 165686, "credit_id": "52fe443ec3a36847f808a9e7", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Cully Fredricksen", "character": "Van Helsing's Assistant", "id": 553773, "credit_id": "52fe443ec3a36847f808a9eb", "cast_id": 36, "profile_path": "/9gZds6fFcOXWHHiWxzhWGsBRsGU.jpg", "order": 28}, {"name": "Daniel Newman", "character": "Newshawker", "id": 8323, "credit_id": "54fe254d9251410e560001e7", "cast_id": 40, "profile_path": "/wjJB7aXCaEVpaVWWIYgKd20MxNa.jpg", "order": 29}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe443ec3a36847f808a953", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 6.8, "runtime": 128}, "110415": {"poster_path": "/6JLsmjnwO57GjzfAIVsLnkbOYa4.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "KR", "name": "South Korea"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86612448, "overview": "In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer, a train that travels around the globe via a perpetual-motion engine.", "video": false, "id": 110415, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Snowpiercer", "tagline": "AD 2031, the passengers in the train are the only survivors on Earth.", "vote_count": 714, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1706620", "adult": false, "backdrop_path": "/GY6RVLqDjaDMnT06DL61MVlbgS.jpg", "production_companies": [{"name": "CJ Entertainment", "id": 7036}, {"name": "SnowPiercer", "id": 21122}, {"name": "Moho Film", "id": 34725}, {"name": "Opus Pictures", "id": 7270}, {"name": "Stillking Films", "id": 11345}], "release_date": "2013-08-01", "popularity": 1.64192830862875, "original_title": "Snowpiercer", "budget": 39200000, "cast": [{"name": "Chris Evans", "character": "Curtis", "id": 16828, "credit_id": "52fe4ad6c3a36847f81e449d", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Song Kang-ho", "character": "Namgong Minsu", "id": 20738, "credit_id": "53bd4726c3a3684ce9001500", "cast_id": 39, "profile_path": "/1JL0Shq6js9Ox2FEIW2vHqIISv9.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Edgar", "id": 478, "credit_id": "52fe4ad6c3a36847f81e44a1", "cast_id": 5, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "John Hurt", "character": "Gilliam", "id": 5049, "credit_id": "52fe4ad6c3a36847f81e44a5", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Tilda Swinton", "character": "Mason", "id": 3063, "credit_id": "52fe4ad6c3a36847f81e44a9", "cast_id": 7, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 4}, {"name": "Alison Pill", "character": "schoolteacher", "id": 17486, "credit_id": "52fe4ad6c3a36847f81e44ad", "cast_id": 8, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 5}, {"name": "Octavia Spencer", "character": "Tanya", "id": 6944, "credit_id": "52fe4ad6c3a36847f81e44b1", "cast_id": 9, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 6}, {"name": "Ewen Bremner", "character": "Andrew", "id": 1125, "credit_id": "52fe4ad6c3a36847f81e44b5", "cast_id": 10, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 7}, {"name": "Luke Pasqualino", "character": "Grey", "id": 220232, "credit_id": "52fe4ad6c3a36847f81e44b9", "cast_id": 11, "profile_path": "/17ccaxEyJfnc0R5p9EKZ0LAw5U0.jpg", "order": 8}, {"name": "Kenny Doughty", "character": "News Reporter", "id": 37760, "credit_id": "52fe4ad6c3a36847f81e44c1", "cast_id": 13, "profile_path": "/7toqP6Xv8pk4PX9er3ddzrz3wbx.jpg", "order": 9}, {"name": "Clark Middleton", "character": "Painter", "id": 171538, "credit_id": "52fe4ad6c3a36847f81e44c9", "cast_id": 15, "profile_path": "/3rk5aqlLHdQBdlmWaNoTr8hvSaH.jpg", "order": 10}, {"name": "Adnan Haskovic", "character": "Franco The Younger", "id": 1049409, "credit_id": "52fe4ad6c3a36847f81e44cd", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "T\u00f3mas Lemarquis", "character": "Egg-head", "id": 18818, "credit_id": "52fe4ad6c3a36847f81e44d1", "cast_id": 17, "profile_path": "/6qWyGbPWE020wTezwoWx1wIPuPQ.jpg", "order": 12}, {"name": "Jim Hightower", "character": "Soldier One", "id": 1025681, "credit_id": "52fe4ad6c3a36847f81e44d5", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Ed Harris", "character": "Wilford", "id": 228, "credit_id": "5313a0f1c3a368299b004650", "cast_id": 20, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 14}, {"name": "Ko Ah-Sung", "character": "Yona", "id": 21689, "credit_id": "5313a32d9251410fe6006436", "cast_id": 21, "profile_path": "/ypLzFARDiB0S8eV8YWj0mi5vmJW.jpg", "order": 15}, {"name": "Steve Park", "character": "Fuyu", "id": 4025, "credit_id": "531af9a6c3a3685c31004771", "cast_id": 22, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 16}, {"name": "Vlad Ivanov", "character": "Franco Elder", "id": 39959, "credit_id": "53377d649251411302000bdd", "cast_id": 38, "profile_path": "/zZn7WAHQeignC0WPfhA5d0SNqjZ.jpg", "order": 17}, {"name": "Paul Lazar", "character": "Paul", "id": 138988, "credit_id": "54b18351c3a36809510025ad", "cast_id": 40, "profile_path": "/8Aj1kAid7DQoLx76v7yn0pQdo90.jpg", "order": 18}], "directors": [{"name": "Bong Joon-ho ", "department": "Directing", "job": "Director", "credit_id": "52fe4ad6c3a36847f81e448d", "profile_path": "/ksRcTlnSOLwNcI37LRRKpQwucWL.jpg", "id": 21684}], "vote_average": 6.7, "runtime": 126}, "12113": {"poster_path": "/bOlzJMKHv2EG3Kbn4CMOoTImuH7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113280098, "overview": "Body of Lies follows CIA operative, Roger Ferris, as he uncovers a lead on a major terrorist leader suspected to be operating out of Jordan. When Ferris devises a plan to infiltrate his network, he must first win the backing of cunning CIA veteran Ed Hoffman and the collegial, but perhaps suspect, head of Jordanian intelligence.", "video": false, "id": 12113, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Body of Lies", "tagline": "Trust no one. Deceive everyone.", "vote_count": 255, "homepage": "http://bodyoflies.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758774", "adult": false, "backdrop_path": "/8NKlqvUJ5IHk58KhM3Vwqp588jU.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "De Line Pictures", "id": 2609}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2008-10-10", "popularity": 0.698367432974629, "original_title": "Body of Lies", "budget": 70000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Roger Ferris", "id": 6193, "credit_id": "52fe44b79251416c7503e94f", "cast_id": 4, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Ed Hoffman", "id": 934, "credit_id": "52fe44b79251416c7503e953", "cast_id": 5, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Mark Strong", "character": "Hani", "id": 2983, "credit_id": "52fe44b79251416c7503e957", "cast_id": 6, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Ali Suliman", "character": "Omar Sadiki", "id": 762, "credit_id": "52fe44b79251416c7503e95b", "cast_id": 7, "profile_path": "/orQk2ePFL6er4TrdhD0jZ9my3E3.jpg", "order": 3}, {"name": "Simon McBurney", "character": "Garland", "id": 16358, "credit_id": "52fe44b79251416c7503e95f", "cast_id": 8, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 4}, {"name": "Michael Gaston", "character": "Holiday", "id": 33241, "credit_id": "52fe44b89251416c7503e9c3", "cast_id": 25, "profile_path": "/tAmpD16aVzWbs8evbCFaed9perN.jpg", "order": 5}, {"name": "Mehdi Nebbou", "character": "Nizar", "id": 43436, "credit_id": "52fe44b89251416c7503e9c7", "cast_id": 26, "profile_path": "/iSkMnPeORt41l3rqiXhrBgEPocW.jpg", "order": 6}, {"name": "Golshifteh Farahani", "character": "Aisha", "id": 229932, "credit_id": "52fe44b89251416c7503e9cb", "cast_id": 27, "profile_path": "/jEVJQviEvXkaPZMum7wFFtBxzFC.jpg", "order": 7}, {"name": "Oscar Isaac", "character": "Bassam", "id": 25072, "credit_id": "52fe44b89251416c7503e9cf", "cast_id": 28, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 8}, {"name": "Alon Aboutboul", "character": "Al-Saleem", "id": 16607, "credit_id": "52fe44b89251416c7503e9d3", "cast_id": 29, "profile_path": "/g2ER1Yk1jtwMkugOEkK8FdCGUTB.jpg", "order": 9}, {"name": "Vince Colosimo", "character": "Skip", "id": 77496, "credit_id": "52fe44b89251416c7503e9d7", "cast_id": 30, "profile_path": "/q7sQhwMo5By0WIh8qpwHnzznSzf.jpg", "order": 10}, {"name": "Kais Nashif", "character": "Mustafa Karami", "id": 25087, "credit_id": "52fe44b89251416c7503e9db", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Jamil Khoury", "character": "Marwan", "id": 544186, "credit_id": "52fe44b89251416c7503e9df", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Lubna Azabal", "character": "Aisha's Sister Cala", "id": 77498, "credit_id": "52fe44b89251416c7503e9e3", "cast_id": 33, "profile_path": "/lGvB2xP7sotwSslSTovL5nxnzBC.jpg", "order": 13}, {"name": "Ghali Benlafkih", "character": "Aisha's Nephew Rowley", "id": 544187, "credit_id": "52fe44b89251416c7503e9e7", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Clara Khoury", "character": "Bessam's wife", "id": 41645, "credit_id": "52fe44b89251416c7503e9f7", "cast_id": 37, "profile_path": "/nSHDTsu00ozkK6iEnI7Ax9Zr5au.jpg", "order": 15}, {"name": "Giannina Facio", "character": "Hoffman's Wife", "id": 58787, "credit_id": "52fe44b89251416c7503e9fb", "cast_id": 38, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 16}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe44b79251416c7503e93f", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.4, "runtime": 128}, "110420": {"poster_path": "/rDMxjCYEVnvLC4nsBpB6wjL0LDy.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Hana, a nineteen-year-old college student, falls in love with a man only for him to reveal his secret; he is a Wolf Man. Eventually the couple bear two children together; a son and daughter they name Ame and Yuki who both inherit the ability to transform into wolves from their father. When the man Hana fell in love with suddenly dies, she makes the decision to move to a rural town isolated from society to continue raising the children in protection.", "video": false, "id": 110420, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Wolf Children", "tagline": "Love wildly", "vote_count": 62, "homepage": "http://www.ookamikodomo.jp", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2140203", "adult": false, "backdrop_path": "/1Y66fi0srOb0ijAOg069DXriD3S.jpg", "production_companies": [{"name": "Eurozoom", "id": 15664}, {"name": "Studio Chizu", "id": 15662}], "release_date": "2012-08-29", "popularity": 1.12272421288832, "original_title": "Ookami kodomo no Ame to Yuki", "budget": 0, "cast": [{"name": "Kumiko Aso", "character": "Hotsuta no okusan (voice)", "id": 27788, "credit_id": "52fe4ad6c3a36847f81e45b9", "cast_id": 10, "profile_path": "/5YzTxIzzIMbjTGsqWvp2YcRqCzc.jpg", "order": 0}, {"name": "Aoi Miyazaki", "character": "Hana (voice)", "id": 104522, "credit_id": "535cf7880e0a264fe1004a9d", "cast_id": 11, "profile_path": "/dHMFf5dLfOSUiCrz6A2vsqHYw3C.jpg", "order": 1}, {"name": "Takao Ohsawa", "character": "Wolf Man (voice)", "id": 151026, "credit_id": "535cf7ae0e0a264fe8004ba8", "cast_id": 12, "profile_path": "/h9AEcCOY78FW35lTuG5e1nDd96f.jpg", "order": 2}, {"name": "Haru Kuroki", "character": "Yuki (voice)", "id": 1054260, "credit_id": "535cf7c80e0a264fd5004be9", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Yukito Nishii", "character": "Ame (voice)", "id": 559411, "credit_id": "535cf7dc0e0a264fdb004948", "cast_id": 14, "profile_path": "/4oCRIg1RG4AN3rAP9Y5nO8AoQ5u.jpg", "order": 4}, {"name": "Momoka Ohno", "character": "Young Yuki (voice)", "id": 225662, "credit_id": "535cf7f30e0a264fe8004bac", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Amon Kabe", "character": "Young Ame (voice)", "id": 1314114, "credit_id": "535cf80c0e0a264fde004b29", "cast_id": 16, "profile_path": null, "order": 6}], "directors": [{"name": "Mamoru Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe4ad6c3a36847f81e4585", "profile_path": "/oh1GS6x8cdGkyL4QPKmpMSaD6Wu.jpg", "id": 81718}], "vote_average": 8.2, "runtime": 117}, "12118": {"poster_path": "/A0WHx049ty1RJ57XeQwweRxhHbW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43579163, "overview": "When police funding is cut, the Governor announces he must close one of the academies. To make it fair, the two police academies must compete against each other to stay in operation. Mauser persuades two officers in Lassard's academy to better his odds, but things don't quite turn out as expected...", "video": false, "id": 12118, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy 3: Back in Training", "tagline": "Run for cover!", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091777", "adult": false, "backdrop_path": "/sGukZxFSavizbySXPI3wnyrbkcj.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1986-03-20", "popularity": 0.959812382170194, "original_title": "Police Academy 3: Back in Training", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Sgt. Carey Mahoney", "id": 26472, "credit_id": "52fe44b89251416c7503eba9", "cast_id": 7, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Bubba Smith", "character": "Sgt. Moses Hightower", "id": 57349, "credit_id": "52fe44b89251416c7503ebad", "cast_id": 8, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 1}, {"name": "David Graf", "character": "Sgt. Eugene Tackleberry", "id": 57353, "credit_id": "52fe44b89251416c7503ebb1", "cast_id": 9, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 2}, {"name": "Michael Winslow", "character": "Sgt. Larvelle Jones", "id": 14672, "credit_id": "52fe44b89251416c7503ebb5", "cast_id": 10, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 3}, {"name": "Bobcat Goldthwait", "character": "Cadet Zed", "id": 95024, "credit_id": "52fe44b99251416c7503ebc5", "cast_id": 13, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 4}, {"name": "Marion Ramsey", "character": "Sgt. Hooks", "id": 186816, "credit_id": "53c0bc210e0a26157f008324", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Leslie Easterbrook", "character": "Lt. Callahan", "id": 22252, "credit_id": "53c0bc350e0a261579007f40", "cast_id": 15, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 6}, {"name": "Art Metrano", "character": "Comdt. Mauser", "id": 15212, "credit_id": "53c0bc7d0e0a26157f008334", "cast_id": 16, "profile_path": "/3IPQYpit646GjHd1cjfgiqGFfIh.jpg", "order": 7}, {"name": "Tim Kazurinsky", "character": "Cadet Sweetchuck", "id": 95216, "credit_id": "53c0bc910e0a2615820081d6", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "George Gaynes", "character": "Comdt. Lassard", "id": 57351, "credit_id": "53c0bcaf0e0a26157f00833e", "cast_id": 18, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 9}, {"name": "Scott Thomson", "character": "Sgt. Copeland", "id": 9997, "credit_id": "53c0bcf40e0a261576008301", "cast_id": 19, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 10}, {"name": "Bruce Mahler", "character": "Sgt. Fackler", "id": 57356, "credit_id": "53c0bd060e0a261576008306", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Brian Tochi", "character": "Cadet Nogata", "id": 16060, "credit_id": "53c0bd310e0a261585007ef7", "cast_id": 21, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 12}, {"name": "Lance Kinsey", "character": "Lt. Proctor", "id": 141429, "credit_id": "53c0bee10e0a261585007f3e", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Debralee Scott", "character": "Cadet Fackler", "id": 57354, "credit_id": "53c149b0c3a3684cf400667c", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Jack Creley", "character": "Mr. Bellows", "id": 12485, "credit_id": "550204f8925141275c002eb8", "cast_id": 24, "profile_path": null, "order": 15}], "directors": [{"name": "Jerry Paris", "department": "Directing", "job": "Director", "credit_id": "52fe44b89251416c7503eb93", "profile_path": "/mVcAxdJG3uFVhr5erMCOZvla9UA.jpg", "id": 41720}], "vote_average": 5.9, "runtime": 83}, "12123": {"poster_path": "/t6anpB9iny456N7sVLd3S0QARGv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3, "overview": "Two researchers in a green alternative energy project are put on the run when they are framed for murder and treason.", "video": false, "id": 12123, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Chain Reaction", "tagline": "Reaction Time 8-4-96", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115857", "adult": false, "backdrop_path": "/RpVE8C5oExULO2vCJky6WwGCwM.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "The Zanuck Company", "id": 80}, {"name": "Chicago Pacific Entertainment", "id": 2377}], "release_date": "1996-08-02", "popularity": 0.50077323280521, "original_title": "Chain Reaction", "budget": 50000000, "cast": [{"name": "Keanu Reeves", "character": "Eddie Kasalivich", "id": 6384, "credit_id": "52fe44ba9251416c7503ee45", "cast_id": 14, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Paul Shannon", "id": 192, "credit_id": "52fe44ba9251416c7503ee49", "cast_id": 15, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Dr. Lily Sinclair", "id": 3293, "credit_id": "52fe44ba9251416c7503ee4d", "cast_id": 16, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Fred Ward", "character": "FBI Agent Leon Ford", "id": 10430, "credit_id": "52fe44ba9251416c7503ee51", "cast_id": 17, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "FBI Agent Doyle", "id": 14721, "credit_id": "52fe44ba9251416c7503ee55", "cast_id": 18, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Brian Cox", "character": "Lyman Earl Collier", "id": 1248, "credit_id": "52fe44ba9251416c7503ee59", "cast_id": 19, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 5}, {"name": "Joanna Cassidy", "character": "Maggie McDermott", "id": 593, "credit_id": "52fe44ba9251416c7503ee5d", "cast_id": 20, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 6}, {"name": "Chelcie Ross", "character": "Ed Rafferty", "id": 10486, "credit_id": "540c23cdc3a36879a2003962", "cast_id": 21, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 7}, {"name": "Nicholas Rudall", "character": "Dr. Alistair Barkley", "id": 1362093, "credit_id": "540dc1b10e0a262b49006913", "cast_id": 22, "profile_path": null, "order": 8}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe44ba9251416c7503edf9", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 5.4, "runtime": 107}, "3933": {"poster_path": "/o9GbcdP7rOg2m1NyUnUR3ZwNcTE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117195061, "overview": "Set in a 19th-century european village, this stop-motion animation feature follows the story of Victor, a young man whisked away to the underworld and wed to a mysterious corpse bride, while his real bride Victoria waits bereft in the land of the living.", "video": false, "id": 3933, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Corpse Bride", "tagline": "There's been a grave misunderstanding.", "vote_count": 419, "homepage": "http://corpsebridemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0121164", "adult": false, "backdrop_path": "/mlfoltX46WG4FqdKy92hiOq33qO.jpg", "production_companies": [{"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2005-09-15", "popularity": 1.49282118200521, "original_title": "Corpse Bride", "budget": 40000000, "cast": [{"name": "Johnny Depp", "character": "Victor Van Dort (Voice)", "id": 85, "credit_id": "52fe43a7c3a36847f8065053", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Corpse Bride (voice)", "id": 1283, "credit_id": "52fe43a7c3a36847f8065057", "cast_id": 3, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Emily Watson", "character": "Victoria Everglot (voice)", "id": 1639, "credit_id": "52fe43a7c3a36847f806505b", "cast_id": 4, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 2}, {"name": "Tracey Ullman", "character": "Nell Van Dort \\ Hildegarde(voice)", "id": 30364, "credit_id": "52fe43a7c3a36847f806505f", "cast_id": 5, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 3}, {"name": "Christopher Lee", "character": "Pastor Galswells (voice)", "id": 113, "credit_id": "52fe43a7c3a36847f8065063", "cast_id": 6, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 4}, {"name": "Danny Elfman", "character": "Bonejangles (voice)", "id": 531, "credit_id": "52fe43a7c3a36847f8065067", "cast_id": 7, "profile_path": "/nBx84zlelMMlbVvkBQHyfF7eCov.jpg", "order": 5}, {"name": "Albert Finney", "character": "Finis Everglot (voice)", "id": 3926, "credit_id": "52fe43a7c3a36847f806506b", "cast_id": 8, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 6}, {"name": "Richard E. Grant", "character": "Barkis Bittern (voice)", "id": 20766, "credit_id": "52fe43a7c3a36847f806506f", "cast_id": 9, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 7}, {"name": "Paul Whitehouse", "character": "William Van Dort \\ Mayhew (voice)", "id": 34900, "credit_id": "52fe43a7c3a36847f80650e5", "cast_id": 29, "profile_path": "/zdM9dM27ofVMb1mWTwOSAfXaW4Y.jpg", "order": 8}, {"name": "Joanna Lumley", "character": "Maudeline Everglot (voice)", "id": 34901, "credit_id": "52fe43a7c3a36847f80650e9", "cast_id": 31, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 9}, {"name": "Michael Gough", "character": "Elder Gutknecht (voice)", "id": 3796, "credit_id": "52fe43a7c3a36847f80650ed", "cast_id": 33, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 10}, {"name": "Jane Horrocks", "character": "Black Widow Spider (voice)", "id": 34902, "credit_id": "52fe43a7c3a36847f80650f1", "cast_id": 34, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 11}, {"name": "Enn Reitel", "character": "Town Crier \\ Maggot(voice)", "id": 34904, "credit_id": "52fe43a7c3a36847f80650f5", "cast_id": 36, "profile_path": "/yVJrNb6JqnEYZlcXL1kHSEcHmsV.jpg", "order": 12}, {"name": "Deep Roy", "character": "General Bonesapart (voice)", "id": 1295, "credit_id": "52fe43a7c3a36847f80650f9", "cast_id": 38, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 13}, {"name": "Stephen Ballantyne", "character": "Emil (voice)", "id": 34905, "credit_id": "52fe43a7c3a36847f80650fd", "cast_id": 39, "profile_path": "/jOvWG9emhHk4JxPOtBfzGJTDWfK.jpg", "order": 14}, {"name": "Jane Horrocks", "character": "Mrs. Plum (voice)", "id": 34902, "credit_id": "52fe43a7c3a36847f8065101", "cast_id": 40, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe43a7c3a36847f806504f", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}, {"name": "Mike Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe43a7c3a36847f8065075", "profile_path": "/tTt2lxSH3q8fxF6GYbvYpnXaq54.jpg", "id": 34891}], "vote_average": 6.9, "runtime": 77}, "77663": {"poster_path": "/ftZVLKyr3RDGtVelU06GAbtOFQa.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39881, "overview": "Two veterans of the Bosnian War, one American, one Serbian, who clash in the remote Smoky Mountain wilderness.", "video": false, "id": 77663, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Killing Season", "tagline": "The purest form of war is one on one.", "vote_count": 245, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1480295", "adult": false, "backdrop_path": "/f9LlozyhLSy88JJzXBs2lkXBUCR.jpg", "production_companies": [{"name": "Promised Land Productions", "id": 30815}, {"name": "Nu Image Films", "id": 925}, {"name": "Corsan", "id": 7299}, {"name": "Millennium Films", "id": 10254}], "release_date": "2013-07-12", "popularity": 0.580127265315587, "original_title": "Killing Season", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Benjamin Ford", "id": 380, "credit_id": "52fe4978c3a368484e12ce23", "cast_id": 2, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "John Travolta", "character": "Emil Kovac", "id": 8891, "credit_id": "52fe4978c3a368484e12ce27", "cast_id": 3, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Milo Ventimiglia", "character": "Chris Ford", "id": 16501, "credit_id": "52fe4978c3a368484e12ce2b", "cast_id": 4, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 2}, {"name": "Elizabeth Olin", "character": "Sarah Ford", "id": 1189507, "credit_id": "52fe4978c3a368484e12ce35", "cast_id": 8, "profile_path": "/VxAOZ9nVtj9EaEvjy1BzqJUJW.jpg", "order": 3}, {"name": "Diana Lyubenova", "character": "Elena", "id": 1189508, "credit_id": "52fe4978c3a368484e12ce39", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Kalin Sarmenov", "character": "Serbian", "id": 1189510, "credit_id": "52fe4978c3a368484e12ce3d", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Stefan Shterev", "character": "Bar Customer", "id": 1000984, "credit_id": "52fe4978c3a368484e12ce41", "cast_id": 11, "profile_path": null, "order": 6}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4978c3a368484e12ce1f", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.4, "runtime": 91}, "44896": {"poster_path": "/dQ6JElhTmauGWAyxu1k1uPrxupr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 242421099, "overview": "When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.", "video": false, "id": 44896, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}, {"id": 10751, "name": "Family"}], "title": "Rango", "tagline": "Heroes come in all different colors.", "vote_count": 833, "homepage": "http://www.rangomovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1192628", "adult": false, "backdrop_path": "/fX6o5DCdGVEEZ1OT1IourOUkQMb.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "GK Films", "id": 3281}, {"name": "Blind Wink", "id": 10262}], "release_date": "2011-03-03", "popularity": 1.36360840516698, "original_title": "Rango", "budget": 135000000, "cast": [{"name": "Johnny Depp", "character": "Rango (voice)", "id": 85, "credit_id": "52fe46a2c3a36847f8109acf", "cast_id": 10, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Isla Fisher", "character": "Beans (Voice)", "id": 52848, "credit_id": "52fe46a2c3a36847f8109af9", "cast_id": 19, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Tortoise John (voice)", "id": 13726, "credit_id": "52fe46a2c3a36847f8109adb", "cast_id": 13, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Rattlesnake Jake (voice)", "id": 2440, "credit_id": "52fe46a2c3a36847f8109ad7", "cast_id": 12, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Roadkill (Voice)", "id": 658, "credit_id": "52fe46a2c3a36847f8109afd", "cast_id": 20, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "Abigail Breslin", "character": "Priscilla (Voice)", "id": 17140, "credit_id": "52fe46a2c3a36847f8109af5", "cast_id": 18, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 5}, {"name": "Claudia Black", "character": "Angelique (voice)", "id": 26054, "credit_id": "52fe46a2c3a36847f8109adf", "cast_id": 14, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 6}, {"name": "Timothy Olyphant", "character": "The Spirit of the West (voice)", "id": 18082, "credit_id": "52fe46a2c3a36847f8109ad3", "cast_id": 11, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 7}, {"name": "Ray Winstone", "character": "Bad Bill (voice)", "id": 5538, "credit_id": "52fe46a2c3a36847f8109b01", "cast_id": 21, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 8}, {"name": "Stephen Root", "character": "Doc / Merrimack / Mr. Snuggles (voice)", "id": 17401, "credit_id": "52fe46a2c3a36847f8109b05", "cast_id": 22, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 9}, {"name": "Harry Dean Stanton", "character": "Balthazar (voice)", "id": 5048, "credit_id": "52fe46a2c3a36847f8109b09", "cast_id": 23, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 10}, {"name": "Ian Abercrombie", "character": "Ambrose (voice)", "id": 11764, "credit_id": "52fe46a2c3a36847f8109b0d", "cast_id": 24, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 11}, {"name": "Gil Birmingham", "character": "Wounded Bird (voice)", "id": 84225, "credit_id": "52fe46a2c3a36847f8109b11", "cast_id": 25, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 12}, {"name": "James Ward Byrkit", "character": "Waffles / Gordy / Papa Joad / Cousin Murt / Curlie / Knife Attacker / Rodent Kid (voice)", "id": 146439, "credit_id": "52fe46a2c3a36847f8109b15", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Blake Clark", "character": "Buford (voice)", "id": 21485, "credit_id": "52fe46a2c3a36847f8109b19", "cast_id": 27, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 14}, {"name": "Keith Campbell", "character": "Sod Buster (voice)", "id": 15318, "credit_id": "53b95746c3a3685ec1005795", "cast_id": 28, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 15}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe46a2c3a36847f8109ac5", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.4, "runtime": 107}, "12133": {"poster_path": "/tDFNUuYkQ4ZeAlrBHeTtimAumXo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128107642, "overview": "Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.", "video": false, "id": 12133, "genres": [{"id": 35, "name": "Comedy"}], "title": "Step Brothers", "tagline": "They grow up so fast.", "vote_count": 230, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0838283", "adult": false, "backdrop_path": "/lZZEXkDtFvB8eJxtTZ7IfNbvAsZ.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Relativity Media", "id": 7295}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-07-25", "popularity": 0.798616921737685, "original_title": "Step Brothers", "budget": 65000000, "cast": [{"name": "Will Ferrell", "character": "Brennan Huff", "id": 23659, "credit_id": "52fe44bb9251416c7503f15f", "cast_id": 10, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "John C. Reilly", "character": "Dale Doback", "id": 4764, "credit_id": "52fe44bb9251416c7503f163", "cast_id": 11, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 1}, {"name": "Mary Steenburgen", "character": "Nancy Huff", "id": 2453, "credit_id": "52fe44bb9251416c7503f167", "cast_id": 12, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 2}, {"name": "Richard Jenkins", "character": "Dr. Robert Doback", "id": 28633, "credit_id": "52fe44bb9251416c7503f16b", "cast_id": 13, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 3}, {"name": "Adam Scott", "character": "Derek", "id": 36801, "credit_id": "52fe44bb9251416c7503f16f", "cast_id": 14, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Alice", "id": 17696, "credit_id": "52fe44bb9251416c7503f173", "cast_id": 15, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Andrea Savage", "character": "Denise", "id": 71402, "credit_id": "52fe44bc9251416c7503f177", "cast_id": 16, "profile_path": "/t6XAuQGq0vk7Kk3kbf3MeZSHNVv.jpg", "order": 6}, {"name": "Rob Riggle", "character": "Randy", "id": 71403, "credit_id": "52fe44bc9251416c7503f17b", "cast_id": 17, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 7}, {"name": "Seth Rogen", "character": "Sporting Goods Manager", "id": 19274, "credit_id": "52fe44bc9251416c7503f17f", "cast_id": 18, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 8}, {"name": "Logan Manus", "character": "Chris Gardoki", "id": 141532, "credit_id": "52fe44bc9251416c7503f19b", "cast_id": 24, "profile_path": "/vq4oR5nhNKZqiKgqZESnqN2RQXy.jpg", "order": 9}, {"name": "Lurie Poston", "character": "Tommy", "id": 964809, "credit_id": "52fe44bc9251416c7503f19f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Shira Piven", "character": "Nurse", "id": 1186229, "credit_id": "52fe44bc9251416c7503f1a3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Wayne Federman", "character": "Blind Man", "id": 170759, "credit_id": "52fe44bc9251416c7503f1a7", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe44bb9251416c7503f12b", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.6, "runtime": 98}, "8849": {"poster_path": "/gavHGUJseSLBdENBnyZDwiRobXy.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13395939, "overview": "In Manhattan, the British limousine driver Alfie is surrounded by beautiful women, having one night stands with all of them and without any sort of commitment. His best friends are his colleague Marlon and his girl-friend Lonette. Alfie has a brief affair with Lonette, and the consequences of his act forces Alfie to reflect over his lifestyle.", "video": false, "id": 8849, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Alfie", "tagline": "Meet a man who never met a woman he didn't love.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375173", "adult": false, "backdrop_path": "/gXDOdcEPi2FxCOTA1hwZTmF0Hv7.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-10-22", "popularity": 0.450666708975423, "original_title": "Alfie", "budget": 40000000, "cast": [{"name": "Jude Law", "character": "Alfie", "id": 9642, "credit_id": "52fe44c0c3a36847f80a7ffb", "cast_id": 1, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Marisa Tomei", "character": "Julie", "id": 3141, "credit_id": "52fe44c0c3a36847f80a800b", "cast_id": 5, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 1}, {"name": "Omar Epps", "character": "Marlon", "id": 4987, "credit_id": "52fe44c0c3a36847f80a800f", "cast_id": 6, "profile_path": "/t4Qg5ANKK2idfOt4RzWzhiP7IEv.jpg", "order": 2}, {"name": "Jane Krakowski", "character": "Dorie", "id": 13636, "credit_id": "52fe44c0c3a36847f80a8003", "cast_id": 3, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 3}, {"name": "Ren\u00e9e Taylor", "character": "Lu Schnitman", "id": 56105, "credit_id": "52fe44c0c3a36847f80a7fff", "cast_id": 2, "profile_path": "/3WYu7Je7lT47KtayiavBL5kAQLA.jpg", "order": 4}, {"name": "Jeff Harding", "character": "Phil", "id": 29071, "credit_id": "52fe44c0c3a36847f80a8007", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Sienna Miller", "character": "Nikki", "id": 23459, "credit_id": "52fe44c0c3a36847f80a8037", "cast_id": 13, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 6}, {"name": "Nia Long", "character": "Lonette", "id": 9781, "credit_id": "52fe44c0c3a36847f80a803b", "cast_id": 14, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 7}, {"name": "Susan Sarandon", "character": "Liz", "id": 4038, "credit_id": "52fe44c0c3a36847f80a803f", "cast_id": 15, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 8}, {"name": "Katherine LaNasa", "character": "Uta", "id": 169337, "credit_id": "531836c6c3a3685c31000f29", "cast_id": 16, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 9}], "directors": [{"name": "Charles Shyer", "department": "Directing", "job": "Director", "credit_id": "52fe44c0c3a36847f80a8015", "profile_path": "/hnWGd74CbmTcDCFQiJ8SYLazIXW.jpg", "id": 56106}], "vote_average": 5.4, "runtime": 103}, "2023": {"poster_path": "/5BiWWo12FnSFTatD8dfMpoF7bVs.jpg", "production_countries": [{"iso_3166_1": "MA", "name": "Morocco"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108103450, "overview": "Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world...", "video": false, "id": 2023, "genres": [{"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "Hidalgo", "tagline": "Unbridled. Unbroken. Unbeaten.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317648", "adult": false, "backdrop_path": "/1tH9AnFjBFemdowMfDrnnhY8Y1z.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Casey Silver Productions", "id": 877}, {"name": "Dune Films", "id": 19477}], "release_date": "2004-02-17", "popularity": 1.12364380223643, "original_title": "Hidalgo", "budget": 100000000, "cast": [{"name": "Viggo Mortensen", "character": "Frank Hopkins", "id": 110, "credit_id": "52fe432dc3a36847f8040417", "cast_id": 11, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Zuleikha Robinson", "character": "Jazira", "id": 20803, "credit_id": "52fe432dc3a36847f804041b", "cast_id": 12, "profile_path": "/wXOb9qp9FYqWvTcxkf5lhsoHkzf.jpg", "order": 1}, {"name": "Omar Sharif", "character": "Sheikh Riyadh", "id": 5004, "credit_id": "52fe432dc3a36847f804041f", "cast_id": 13, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 2}, {"name": "Adam Alexi-Malle", "character": "Aziz", "id": 20804, "credit_id": "52fe432dc3a36847f8040423", "cast_id": 14, "profile_path": "/4wopg5aGUm9oVlwxXIsdG8WU82B.jpg", "order": 3}, {"name": "Louise Lombard", "character": "Lady Anne Davenport", "id": 20805, "credit_id": "52fe432dc3a36847f8040427", "cast_id": 15, "profile_path": "/gw74UeyFsm4PNFjAflAc8lbppSM.jpg", "order": 4}, {"name": "Silas Carson", "character": "Katib", "id": 20806, "credit_id": "52fe432dc3a36847f804042b", "cast_id": 16, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 5}, {"name": "Harsh Nayyar", "character": "Yusef", "id": 20807, "credit_id": "52fe432dc3a36847f804042f", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "C. Thomas Howell", "character": "Preston Webb", "id": 2878, "credit_id": "52fe432dc3a36847f8040433", "cast_id": 18, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 7}, {"name": "J.K. Simmons", "character": "Buffalo Bill Cody", "id": 18999, "credit_id": "52fe432dc3a36847f8040437", "cast_id": 19, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 8}, {"name": "Adoni Maropis", "character": "Sakr", "id": 20808, "credit_id": "52fe432dc3a36847f804043b", "cast_id": 20, "profile_path": "/np8iLJmgKPLaX5kLXAKVc273HHH.jpg", "order": 9}, {"name": "Joshua Wolf Coleman", "character": "The Kurd", "id": 20809, "credit_id": "52fe432dc3a36847f804043f", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Sa\u00efd Taghmaoui", "character": "Prince Bin Al Reeh", "id": 5419, "credit_id": "52fe432dc3a36847f8040443", "cast_id": 22, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 11}, {"name": "Victor Talmadge", "character": "Rau Rasmussen", "id": 1240492, "credit_id": "52fe432dc3a36847f8040447", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Peter Mensah", "character": "Jaffa", "id": 68278, "credit_id": "52fe432dc3a36847f804044b", "cast_id": 24, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 13}, {"name": "Franky Mwangi", "character": "Slave Boy", "id": 1286126, "credit_id": "52fe432dc3a36847f804044f", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Floyd Red Crow Westerman", "character": "Chief Eagle Horn (as Floyd Red Crow Westerman)", "id": 7862, "credit_id": "52fe432dc3a36847f8040453", "cast_id": 26, "profile_path": "/rAwnURUoJrIUbQtoRAPbHaTyLcu.jpg", "order": 15}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f80403dd", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.6, "runtime": 136}, "12140": {"poster_path": "/1KSMfpMWMzlvR2DN2fzv31vZ66B.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Groundbreaking director Mamoru Oshii continues to push the boundaries of art and anime with this universally acclaimed cyber thriller following cyborg detective Batou as he tries to unravel the reasons for a murderous robot revolt in the year 2032. A quest for a killer that becomes a mind bending search for the meaning of life.", "video": false, "id": 12140, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Ghost in the Shell 2: Innocence", "tagline": "When machines learn to feel, who decides what is human...", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xt0E8CHXzLxEoiPqrjZMRrM4Izi.jpg", "poster_path": "/oNi7xxwjEXBGaNJaB9ViJXEm0DF.jpg", "id": 23026, "name": "Ghost in the Shell Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0347246", "adult": false, "backdrop_path": "/LIbv8rXsi7AuDpBCbyrUy1zv2n.jpg", "production_companies": [{"name": "Bandai Visual Company", "id": 528}], "release_date": "2004-03-06", "popularity": 0.909959590726021, "original_title": "\u30a4\u30ce\u30bb\u30f3\u30b9", "budget": 0, "cast": [{"name": "Akio \u00d4tsuka", "character": "Bat\u014d (voice)", "id": 40451, "credit_id": "52fe44bd9251416c7503f425", "cast_id": 10, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 0}, {"name": "Tilo Schmitz", "character": "Bat\u014d (Stimme)", "id": 71433, "credit_id": "52fe44bd9251416c7503f429", "cast_id": 11, "profile_path": "/o24H8DJ2QOOq45qQlfky5z4ag2s.jpg", "order": 1}, {"name": "K\u00f4ichi Yamadera", "character": "Togusa (voice)", "id": 40328, "credit_id": "52fe44bd9251416c7503f42d", "cast_id": 12, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 2}, {"name": "Klaus-Peter Grap", "character": "Togusa (Stimme)", "id": 71434, "credit_id": "52fe44bd9251416c7503f431", "cast_id": 13, "profile_path": "/7Ub0dtqHb9HHch7t4GeHLOIUapD.jpg", "order": 3}, {"name": "Atsuko Tanaka", "character": "Motoko Kusanagi (voice)", "id": 34923, "credit_id": "52fe44bd9251416c7503f435", "cast_id": 14, "profile_path": "/tM2mIRVxO7TehX35cpSbDvgEByq.jpg", "order": 4}, {"name": "Christin Marquitan", "character": "Motoko Kusanagi (Stimme)", "id": 71435, "credit_id": "52fe44bd9251416c7503f439", "cast_id": 15, "profile_path": "/s4QOc2PkVgXg2N5n3Vpw46gDDjk.jpg", "order": 5}], "directors": [{"name": "Mamoru Oshii", "department": "Directing", "job": "Director", "credit_id": "52fe44bd9251416c7503f3f1", "profile_path": "/2MXFEwxLu7gT9vvi5Otx4LQgsvZ.jpg", "id": 12180}], "vote_average": 7.3, "runtime": 100}, "12144": {"poster_path": "/64Kq57TiQCfJjMORxNS1lUAnFoL.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84460846, "overview": "An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each onea different species, and they encounter several obstacles as they learn to worktogether in order to survive.", "video": false, "id": 12144, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Land Before Time", "tagline": "A new adventure is born.", "vote_count": 128, "homepage": "", "belongs_to_collection": {"backdrop_path": "/alkvR9vTtuZEmd5ygsayOfxYOMa.jpg", "poster_path": "/n1bjdBVThBezxR6nEf2dy43sTtV.jpg", "id": 19163, "name": "The Land Before Time Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095489", "adult": false, "backdrop_path": "/48Mg9lbVQJ8K0v02fXB7kTiFl0R.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Sullivan Bluth Studios", "id": 6422}, {"name": "U-Drive Productions", "id": 20448}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Lucasfilm", "id": 1}], "release_date": "1988-11-17", "popularity": 1.08504091209301, "original_title": "The Land Before Time", "budget": 12300000, "cast": [{"name": "Gabriel Damon", "character": "Littlefoot", "id": 44055, "credit_id": "52fe44be9251416c7503f60f", "cast_id": 12, "profile_path": null, "order": 0}, {"name": "Candace Hutson", "character": "Cera", "id": 71447, "credit_id": "52fe44be9251416c7503f613", "cast_id": 13, "profile_path": "/vQkf9HEkeefl9ufkMFpep2RjFVO.jpg", "order": 1}, {"name": "Judith Barsi", "character": "Ducky", "id": 16216, "credit_id": "52fe44be9251416c7503f617", "cast_id": 14, "profile_path": "/us9iqhoNDbjKKVVlr3TciFLVagn.jpg", "order": 2}, {"name": "Will Ryan", "character": "Petrie", "id": 40352, "credit_id": "52fe44be9251416c7503f61b", "cast_id": 15, "profile_path": "/uY0oWjp7dxBEh03LpMBqApaswn.jpg", "order": 3}, {"name": "Pat Hingle", "character": "Narrator", "id": 3798, "credit_id": "530f144e925141733200083e", "cast_id": 16, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 4}, {"name": "Helen Shaver", "character": "Littlefoot's Mother", "id": 4160, "credit_id": "530f1469925141734a0007dd", "cast_id": 17, "profile_path": "/a9ODBCPAkAolT4QWhuMUlFNAUIL.jpg", "order": 5}, {"name": "Bill Erwin", "character": "Grandfather", "id": 26044, "credit_id": "530f147f925141735500071f", "cast_id": 18, "profile_path": "/b0O9XSBfgWh2CBhV2gHKvPGpOS.jpg", "order": 6}, {"name": "Burke Byrnes", "character": "Daddy Topps", "id": 109761, "credit_id": "530f1496925141736c0007e2", "cast_id": 19, "profile_path": null, "order": 7}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe44bd9251416c7503f5cf", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}], "vote_average": 7.0, "runtime": 69}, "12149": {"poster_path": "/18OgA3Do1UdWQunFXHcMMEoGLOL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13110448, "overview": "A man confesses to an FBI agent his family's story of how his religious fanatic father's visions lead to a series of murders to destroy supposed \"demons.\"", "video": false, "id": 12149, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Frailty", "tagline": "No Soul Is Safe.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264616", "adult": false, "backdrop_path": "/bhYsiT8V2yV4ZcnxxbIiJUKlRB2.jpg", "production_companies": [{"name": "Cinerenta Medienbeteiligungs KG", "id": 995}, {"name": "David Kirschner Productions", "id": 11050}, {"name": "American Entertainment Partners L.P.", "id": 5264}], "release_date": "2001-11-17", "popularity": 0.664215159916039, "original_title": "Frailty", "budget": 11000000, "cast": [{"name": "Bill Paxton", "character": "Father Meiks", "id": 2053, "credit_id": "52fe44bf9251416c7503f853", "cast_id": 9, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Adam Meiks", "id": 10297, "credit_id": "52fe44bf9251416c7503f857", "cast_id": 10, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Powers Boothe", "character": "FBI-Agent Wesley Doyle", "id": 6280, "credit_id": "52fe44bf9251416c7503f85b", "cast_id": 11, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 2}, {"name": "Matt O'Leary", "character": "Young Fenton", "id": 71467, "credit_id": "52fe44bf9251416c7503f85f", "cast_id": 12, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 3}, {"name": "Jeremy Sumpter", "character": "Young Adam", "id": 65838, "credit_id": "52fe44bf9251416c7503f863", "cast_id": 13, "profile_path": "/erNaw0imhMzn3OqGcOQPQeQ4RtI.jpg", "order": 4}, {"name": "Luke Askew", "character": "Sheriff Smalls", "id": 8962, "credit_id": "532573d99251410d950019c8", "cast_id": 20, "profile_path": "/nlV0bfadoMjbz7vxmLl5zALc86H.jpg", "order": 5}, {"name": "Levi Kreis", "character": "Fenton Meiks", "id": 1032173, "credit_id": "5325740192514113b900195a", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Derk Cheetwood", "character": "Agent Griffin Hull", "id": 1219574, "credit_id": "532574179251410d950019cc", "cast_id": 22, "profile_path": "/98bVC65NHeNTGekLHgZ6vdTWLIE.jpg", "order": 7}, {"name": "Missy Crider", "character": "Becky Meiks", "id": 53646, "credit_id": "5325742a9251411544001974", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Alan Davidson", "character": "Brad White", "id": 154649, "credit_id": "5325743c925141143900190d", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Cynthia Ettinger", "character": "Cynthia Harbridge", "id": 1212913, "credit_id": "5325745e9251411439001910", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Gwen McGee", "character": "Operator", "id": 42296, "credit_id": "532574749251411f85007466", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Rebecca Tilney", "character": "Teacher", "id": 69503, "credit_id": "53257485925141652a00176c", "cast_id": 27, "profile_path": "/a5QT8ClAg6yTacjNIpAbG2d6EJh.jpg", "order": 12}], "directors": [{"name": "Bill Paxton", "department": "Directing", "job": "Director", "credit_id": "52fe44bf9251416c7503f831", "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "id": 2053}], "vote_average": 7.1, "runtime": 100}, "9679": {"poster_path": "/nb2TRrlSdgi8wZAxTHdhsN0yMJw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237202299, "overview": "Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall \"Memphis\" Raines enlists help from a few \"boost happy\" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.", "video": false, "id": 9679, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Gone In Sixty Seconds", "tagline": "Ice Cold, Hot Wired.", "vote_count": 660, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0187078", "adult": false, "backdrop_path": "/ktyIKbX1UHJQkqYOTz9LTcrlhXG.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2000-06-04", "popularity": 1.32705478815382, "original_title": "Gone In Sixty Seconds", "budget": 90000000, "cast": [{"name": "Nicolas Cage", "character": "Randall 'Memphis' Raines", "id": 2963, "credit_id": "52fe451ac3a36847f80bc977", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Giovanni Ribisi", "character": "Kip Raines", "id": 1771, "credit_id": "52fe451ac3a36847f80bc97b", "cast_id": 2, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 1}, {"name": "Angelina Jolie", "character": "Sara 'Sway' Wayland", "id": 11701, "credit_id": "52fe451ac3a36847f80bc97f", "cast_id": 3, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 2}, {"name": "T.J. Cross", "character": "Mirror Man", "id": 58497, "credit_id": "52fe451ac3a36847f80bc983", "cast_id": 4, "profile_path": "/kYf4hL8UfzUhLuDwACJFWop6hrN.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Otto Halliwell", "id": 3087, "credit_id": "52fe451ac3a36847f80bc987", "cast_id": 5, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "William Lee Scott", "character": "Toby", "id": 10128, "credit_id": "52fe451ac3a36847f80bc9f1", "cast_id": 24, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 5}, {"name": "Scott Caan", "character": "Tumbler", "id": 1894, "credit_id": "52fe451ac3a36847f80bc9f5", "cast_id": 25, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "James Duval", "character": "Freb", "id": 1582, "credit_id": "52fe451ac3a36847f80bc9f9", "cast_id": 26, "profile_path": "/ydlb3Rp5vkle9codpcfBWxFmUYr.jpg", "order": 7}, {"name": "Delroy Lindo", "character": "(Det) Roland Castlebeck", "id": 18792, "credit_id": "52fe451ac3a36847f80bc9fd", "cast_id": 27, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 8}, {"name": "Timothy Olyphant", "character": "(Det) Drycoff", "id": 18082, "credit_id": "52fe451ac3a36847f80bca01", "cast_id": 28, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 9}, {"name": "Chi McBride", "character": "Donny Astricky", "id": 8687, "credit_id": "52fe451ac3a36847f80bca05", "cast_id": 29, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 10}, {"name": "Christopher Eccleston", "character": "Raymond Calitri", "id": 2040, "credit_id": "52fe451ac3a36847f80bca09", "cast_id": 30, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 11}, {"name": "Grace Zabriskie", "character": "Helen Raines", "id": 6465, "credit_id": "52fe451ac3a36847f80bca0d", "cast_id": 31, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 12}, {"name": "Vinnie Jones", "character": "The Sphinx", "id": 980, "credit_id": "52fe451ac3a36847f80bca11", "cast_id": 32, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 13}, {"name": "Will Patton", "character": "Atlee Jackson", "id": 883, "credit_id": "52fe451ac3a36847f80bca15", "cast_id": 33, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 14}, {"name": "Michael Pe\u00f1a", "character": "Ignacio", "id": 454, "credit_id": "5309983bc3a36863b10031e8", "cast_id": 35, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 15}, {"name": "Frances Fisher", "character": "Junie", "id": 3713, "credit_id": "54dc7833c3a368122a003822", "cast_id": 36, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 16}, {"name": "Arye Gross", "character": "James Lakewood", "id": 72028, "credit_id": "54dc785a925141618c0037ca", "cast_id": 37, "profile_path": "/2e0PGQHGXk5uxdXCARaAh2fC3QM.jpg", "order": 17}, {"name": "Carmen Argenziano", "character": "Det. Mayhew", "id": 28413, "credit_id": "54dc7874c3a36831020031c4", "cast_id": 38, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 18}, {"name": "Bodhi Elfman", "character": "Frizzel", "id": 154883, "credit_id": "54dc849ec3a3681233003cc2", "cast_id": 39, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 19}], "directors": [{"name": "Dominic Sena", "department": "Directing", "job": "Director", "credit_id": "52fe451ac3a36847f80bc98d", "profile_path": "/ofWADCsDpNxbTFfoK1CpU8KnBGF.jpg", "id": 58498}], "vote_average": 6.0, "runtime": 118}, "172803": {"poster_path": "/8KEuqkOmxvtR4rLynkvBhpaNMfM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A father struggles to keep his infant daughter alive in the wake of Hurricane Katrina.", "video": false, "id": 172803, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hours", "tagline": "Every second counts", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2094018", "adult": false, "backdrop_path": "/qlAll8FyQD6E2PSkZ3ID90YFxs1.jpg", "production_companies": [{"name": "Hours Capital", "id": 27408}, {"name": "The Safran Company", "id": 11565}, {"name": "PalmStar Entertainment", "id": 24277}], "release_date": "2013-12-12", "popularity": 0.706617483567332, "original_title": "Hours", "budget": 4000000, "cast": [{"name": "Paul Walker", "character": "Nolan Hayes", "id": 8167, "credit_id": "52fe4d27c3a36847f82517db", "cast_id": 4, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Abigail", "id": 589162, "credit_id": "52fe4d27c3a36847f82517df", "cast_id": 5, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 1}, {"name": "Nick Gomez", "character": "Lobo", "id": 84760, "credit_id": "52fe4d27c3a36847f82517e3", "cast_id": 6, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 2}, {"name": "Tony Bentley", "character": "Doctor", "id": 120253, "credit_id": "52fe4d27c3a36847f82517e7", "cast_id": 7, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 3}, {"name": "Judd Lormand", "character": "Glenn", "id": 990136, "credit_id": "52fe4d27c3a36847f82517eb", "cast_id": 8, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 4}, {"name": "Lena Clark", "character": "Lucy", "id": 1153536, "credit_id": "52fe4d27c3a36847f82517ef", "cast_id": 9, "profile_path": "/cuM28MFwzkYdaDbuylGVdIYNV0H.jpg", "order": 5}, {"name": "Kerry Cahill", "character": "Nurse Shelly", "id": 1049830, "credit_id": "52fe4d27c3a36847f825182f", "cast_id": 21, "profile_path": "/xMtuh2NAi4rYcuzbN3W4LXanPZJ.jpg", "order": 6}, {"name": "Nancy Nave", "character": "Sandra", "id": 1277218, "credit_id": "52fe4d27c3a36847f8251833", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "TJ Hassan", "character": "Jeremy", "id": 1000822, "credit_id": "52fe4d27c3a36847f8251837", "cast_id": 23, "profile_path": "/6A0n3eZSvtBBtxgEW03cEEmAJQZ.jpg", "order": 8}, {"name": "J. Omar Castro", "character": "Robinson", "id": 206027, "credit_id": "52fe4d27c3a36847f825183b", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Renell Gibbs", "character": "Jase", "id": 1277219, "credit_id": "52fe4d27c3a36847f825183f", "cast_id": 25, "profile_path": "/mQ6wzAthsjSasYT01olqYhEFUZX.jpg", "order": 10}], "directors": [{"name": "Eric Heisserer", "department": "Directing", "job": "Director", "credit_id": "52fe4d27c3a36847f82517d1", "profile_path": null, "id": 115033}], "vote_average": 6.4, "runtime": 97}, "12153": {"poster_path": "/hT4PEPFW3dQG7N5LZe5b2qYHCU0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113086475, "overview": "Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. As punishment, they are forced to escort a pair of socialites to the Hamptons, where they're going to be used as bait for a kidnapper. But when the girls realize the FBI's plan, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from African-American men into a pair of blonde, white women.", "video": false, "id": 12153, "genres": [{"id": 35, "name": "Comedy"}], "title": "White Chicks", "tagline": "They're going deep undercover.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0381707", "adult": false, "backdrop_path": "/fLLrqJQvn1IxcvkqwhJwKKo5UEZ.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}], "release_date": "2004-06-23", "popularity": 0.925182022339765, "original_title": "White Chicks", "budget": 37000000, "cast": [{"name": "Shawn Wayans", "character": "Kevin Copeland", "id": 35690, "credit_id": "52fe44bf9251416c7503fa1b", "cast_id": 17, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 0}, {"name": "Marlon Wayans", "character": "Marcus Copeland", "id": 9562, "credit_id": "52fe44bf9251416c7503fa1f", "cast_id": 18, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 1}, {"name": "Jaime King", "character": "Heather Vandergeld", "id": 5915, "credit_id": "52fe44bf9251416c7503fa23", "cast_id": 19, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 2}, {"name": "Frankie Faison", "character": "Elliott Gordon", "id": 13936, "credit_id": "52fe44bf9251416c7503fa27", "cast_id": 20, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 3}, {"name": "Maitland Ward", "character": "Brittany Wilson", "id": 71482, "credit_id": "52fe44bf9251416c7503fa2b", "cast_id": 21, "profile_path": null, "order": 4}, {"name": "Anne Dudek", "character": "Tiffany Wilson", "id": 24198, "credit_id": "52fe44bf9251416c7503fa2f", "cast_id": 22, "profile_path": "/nOaxjVPuWyfk5OkQc11ib2PhhRs.jpg", "order": 5}, {"name": "Lochlyn Munro", "character": "Agent Jake Harper", "id": 58058, "credit_id": "52fe44bf9251416c7503fa39", "cast_id": 24, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 6}, {"name": "John Heard", "character": "Warren Vandergeld", "id": 11512, "credit_id": "52fe44bf9251416c7503fa3d", "cast_id": 25, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 7}, {"name": "Busy Philipps", "character": "Karen", "id": 60928, "credit_id": "52fe44bf9251416c7503fa41", "cast_id": 26, "profile_path": "/uerCtOFqXQlbKG7FvjMDStD961y.jpg", "order": 8}, {"name": "Terry Crews", "character": "Latrell Spencer", "id": 53256, "credit_id": "52fe44bf9251416c7503fa45", "cast_id": 27, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 9}, {"name": "Brittany Daniel", "character": "Megan Vandergeld", "id": 35476, "credit_id": "52fe44bf9251416c7503fa49", "cast_id": 28, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 10}, {"name": "Eddie Velez", "character": "Agent Vincent Gomez", "id": 88031, "credit_id": "52fe44bf9251416c7503fa4d", "cast_id": 29, "profile_path": "/1CbsEzlt6fQmxIo5t3QsNrqsFlb.jpg", "order": 11}, {"name": "Jessica Cauffiel", "character": "Tori", "id": 22126, "credit_id": "52fe44c09251416c7503fa51", "cast_id": 30, "profile_path": "/rLqK8Qj2SPjwkT7uPQyv3UV5qlg.jpg", "order": 12}, {"name": "Rochelle Aytes", "character": "Denise Porter", "id": 80760, "credit_id": "52fe44c09251416c7503fa55", "cast_id": 31, "profile_path": "/r5JMfr0A7V4VEKIXx5EPy7Y51Ed.jpg", "order": 13}, {"name": "Jennifer Carpenter", "character": "Lisa", "id": 53828, "credit_id": "52fe44c09251416c7503fa59", "cast_id": 32, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 14}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe44bf9251416c7503f9c3", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 6.2, "runtime": 109}, "12155": {"poster_path": "/pvEE5EN5N1yjmHmldfL4aJWm56l.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1025467110, "overview": "Alice, an unpretentious and individual 19-year-old, is betrothed to a dunce of an English nobleman. At her engagement party, she escapes the crowd to consider whether to go through with the marriage and falls down a hole in the garden after spotting an unusual rabbit. Arriving in a strange and surreal place called 'Underland,' she finds herself in a world that resembles the nightmares she had as a child, filled with talking animals, villainous queens and knights, and frumious bandersnatches. Alice realizes that she is there for a reason--to conquer the horrific Jabberwocky and restore the rightful queen to her throne.", "video": false, "id": 12155, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Alice in Wonderland", "tagline": "You're invited to a very important date.", "vote_count": 1612, "homepage": "http://disney.go.com/wonderland/", "belongs_to_collection": {"backdrop_path": "/hbigSy1RDiSiX2uWj6vEQsO3T7Q.jpg", "poster_path": "/dmI5IJsaaeGzIkBv983oOkOUXLK.jpg", "id": 261307, "name": "Alice in Wonderland Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1014759", "adult": false, "backdrop_path": "/AmCtBQc5KxJfJVdS2TkY4Pc9lPd.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Roth Films", "id": 16314}, {"name": "Team Todd", "id": 598}, {"name": "Zanuck Company, The", "id": 20004}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2010-03-04", "popularity": 2.55684842453608, "original_title": "Alice in Wonderland", "budget": 200000000, "cast": [{"name": "Johnny Depp", "character": "The Mad Hatter", "id": 85, "credit_id": "52fe44c09251416c7503fb35", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "The White Queen", "id": 1813, "credit_id": "52fe44c09251416c7503fb21", "cast_id": 3, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "The Red Queen", "id": 1283, "credit_id": "52fe44c09251416c7503fb25", "cast_id": 4, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Crispin Glover", "character": "The Knave of Hearts", "id": 1064, "credit_id": "52fe44c09251416c7503fb29", "cast_id": 6, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 3}, {"name": "Mia Wasikowska", "character": "Alice Kingsley", "id": 76070, "credit_id": "52fe44c09251416c7503fb2d", "cast_id": 7, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 4}, {"name": "Marton Csokas", "character": "Charles Kingsley", "id": 20982, "credit_id": "52fe44c09251416c7503fb31", "cast_id": 11, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 5}, {"name": "Matt Lucas", "character": "Tweedledee / Tweedledum", "id": 26209, "credit_id": "52fe44c09251416c7503fb39", "cast_id": 14, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 6}, {"name": "Lindsay Duncan", "character": "Helen Kingsley", "id": 30083, "credit_id": "52fe44c09251416c7503fb3d", "cast_id": 17, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 7}, {"name": "Tim Pigott-Smith", "character": "Lord Ascot", "id": 11276, "credit_id": "52fe44c09251416c7503fb41", "cast_id": 18, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 8}, {"name": "Frances de la Tour", "character": "Aunt Imogene", "id": 47468, "credit_id": "52fe44c09251416c7503fb45", "cast_id": 19, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 9}, {"name": "Michael Sheen", "character": "The White Rabbit (voice)", "id": 3968, "credit_id": "52fe44c09251416c7503fb5b", "cast_id": 23, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 10}, {"name": "Alan Rickman", "character": "The Caterpillar (voice)", "id": 4566, "credit_id": "52fe44c09251416c7503fb5f", "cast_id": 24, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 11}, {"name": "Christopher Lee", "character": "The Jabberwocky (voice)", "id": 113, "credit_id": "52fe44c09251416c7503fb63", "cast_id": 25, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 12}, {"name": "Stephen Fry", "character": "The Cheshire Cat (voice)", "id": 11275, "credit_id": "52fe44c09251416c7503fb67", "cast_id": 26, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 13}, {"name": "Timothy Spall", "character": "The Bloodhound (voice)", "id": 9191, "credit_id": "52fe44c09251416c7503fb6b", "cast_id": 27, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 14}, {"name": "Paul Whitehouse", "character": "The March Hare (voice)", "id": 34900, "credit_id": "52fe44c09251416c7503fb6f", "cast_id": 28, "profile_path": "/zdM9dM27ofVMb1mWTwOSAfXaW4Y.jpg", "order": 15}, {"name": "Barbara Windsor", "character": "The Dormouse (voice)", "id": 40942, "credit_id": "52fe44c09251416c7503fb73", "cast_id": 29, "profile_path": "/xjp8FpTnNM36KeasHQxIt1sVNaR.jpg", "order": 16}, {"name": "Michael Gough", "character": "The Dodo (voice)", "id": 3796, "credit_id": "52fe44c09251416c7503fb77", "cast_id": 30, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 17}, {"name": "Imelda Staunton", "character": "Tall Flower Faces (voice)", "id": 11356, "credit_id": "52fe44c09251416c7503fb7b", "cast_id": 31, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 18}, {"name": "Eleanor Tomlinson", "character": "Fiona Chattaway", "id": 73357, "credit_id": "52fe44c09251416c7503fbcd", "cast_id": 45, "profile_path": "/1eDkLc1uz20At0UNGMaTgGaooBR.jpg", "order": 19}, {"name": "Holly Hawkins", "character": "Woman with Large Nose in Red Queen Court", "id": 1323226, "credit_id": "54eae0659251412eb800606e", "cast_id": 47, "profile_path": null, "order": 20}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe44c09251416c7503fb1d", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.0, "runtime": 108}, "88042": {"poster_path": "/1uHA1xOzrQczAmXvs4ji3XmKG6b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids' 21st-century behavior collides with Artie and Diane's old-school methods.", "video": false, "id": 88042, "genres": [{"id": 35, "name": "Comedy"}], "title": "Parental Guidance", "tagline": "", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1047540", "adult": false, "backdrop_path": "/dyEz4QZG2nOvkedlfOS6zZQWZMu.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Walden Media", "id": 10221}], "release_date": "2012-12-25", "popularity": 0.56443174557799, "original_title": "Parental Guidance", "budget": 0, "cast": [{"name": "Billy Crystal", "character": "Artie Decker", "id": 7904, "credit_id": "52fe49e79251416c910bc971", "cast_id": 1010, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 0}, {"name": "Bette Midler", "character": "Diane Decker", "id": 73931, "credit_id": "52fe49e79251416c910bc975", "cast_id": 1011, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Alice", "id": 3141, "credit_id": "52fe49e79251416c910bc979", "cast_id": 1012, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Tom Everett Scott", "character": "Phil Simmons", "id": 16857, "credit_id": "52fe49e79251416c910bc97d", "cast_id": 1013, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 3}, {"name": "Bailee Madison", "character": "Harper Simmons", "id": 54479, "credit_id": "52fe49e79251416c910bc999", "cast_id": 1020, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 4}, {"name": "Joshua Rush", "character": "Turner Simmons", "id": 212184, "credit_id": "52fe49e79251416c910bc99d", "cast_id": 1021, "profile_path": "/llQinkw36ZRjL23njpTmrU9wZ94.jpg", "order": 5}, {"name": "Kyle Harrison Breitkopf", "character": "Barker Simmons", "id": 1144353, "credit_id": "52fe49e79251416c910bc9a1", "cast_id": 1022, "profile_path": null, "order": 6}, {"name": "Jennifer Crystal Foley", "character": "Cassandra", "id": 532890, "credit_id": "52fe49e79251416c910bc9a5", "cast_id": 1023, "profile_path": "/AbtNUXqNx35ZyfebQNj2W6mVljV.jpg", "order": 7}, {"name": "Rhoda Griffis", "character": "Dr. Schveer", "id": 51456, "credit_id": "52fe49e79251416c910bc989", "cast_id": 1016, "profile_path": "/zeogAlRpFrZJMfKXuwB7iCVVqJz.jpg", "order": 8}, {"name": "Gedde Watanabe", "character": "Mr. Cheng", "id": 16183, "credit_id": "52fe49e79251416c910bc985", "cast_id": 1015, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 9}, {"name": "Madison Lintz", "character": "Ashley", "id": 935720, "credit_id": "52fe49e79251416c910bc981", "cast_id": 1014, "profile_path": "/sc0ta9EJnIk8BmTCnu1ivNihjoR.jpg", "order": 10}, {"name": "Karan Kendrick", "character": "Pre-School Mom", "id": 935721, "credit_id": "52fe49e79251416c910bc98d", "cast_id": 1017, "profile_path": "/cY8HkrWGR4Ux5uYpYMIChXJU36S.jpg", "order": 11}, {"name": "Patricia French", "character": "Marilyn - Pole Dancer", "id": 128207, "credit_id": "52fe49e79251416c910bc991", "cast_id": 1018, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 12}, {"name": "Brad James", "character": "Rookie Cop", "id": 935722, "credit_id": "52fe49e79251416c910bc995", "cast_id": 1019, "profile_path": null, "order": 13}, {"name": "Tony Hawk", "character": "Himself", "id": 16832, "credit_id": "52fe49e79251416c910bc9a9", "cast_id": 1024, "profile_path": "/hrGNPp2erLimOo2wyFWgXVpIqPN.jpg", "order": 14}, {"name": "Steve Levy", "character": "Himself", "id": 60673, "credit_id": "52fe49e79251416c910bc9ad", "cast_id": 1025, "profile_path": null, "order": 15}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe49e79251416c910bc9b3", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.9, "runtime": 104}, "12159": {"poster_path": "/rNQH6Q8RPXD59aqGckST3CKQbCf.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71485043, "overview": "Chris Neilson dies to find himself in a heaven more amazing than he could have ever dreamed of. There is one thing missing: his wife. After he dies, his wife, Annie killed herself and went to hell. Chris decides to risk eternity in hades for the small chance that he will be able to bring her back to heaven.", "video": false, "id": 12159, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "What Dreams May Come", "tagline": "After life there is more. The end is just the beginning.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120889", "adult": false, "backdrop_path": "/nzeEb4z9shqdFZbTuchQw2nXiWY.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1998-10-02", "popularity": 1.08100444949578, "original_title": "What Dreams May Come", "budget": 85000000, "cast": [{"name": "Robin Williams", "character": "Chris Nielsen", "id": 2157, "credit_id": "52fe44c19251416c7503fd6b", "cast_id": 13, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Cuba Gooding Jr.", "character": "Ian Nielsen (as Albert Lewis)", "id": 9777, "credit_id": "52fe44c19251416c7503fd6f", "cast_id": 14, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 1}, {"name": "Annabella Sciorra", "character": "Annie Collins-Nielsen", "id": 18750, "credit_id": "52fe44c19251416c7503fd73", "cast_id": 15, "profile_path": "/hYnhZFxfac6Q009StxjcF06iJXz.jpg", "order": 2}, {"name": "Max von Sydow", "character": "Albert Lewis (as the tracker)", "id": 2201, "credit_id": "52fe44c19251416c7503fd77", "cast_id": 16, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 3}, {"name": "Jessica Brooks Grant", "character": "Marie Nielsen", "id": 91035, "credit_id": "52fe44c19251416c7503fd81", "cast_id": 18, "profile_path": "/n98f0OqqyW9XIg8kIm5y9mwUNQA.jpg", "order": 4}, {"name": "Josh Paddock", "character": "Ian Nielsen", "id": 197545, "credit_id": "52fe44c19251416c7503fd85", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Rosalind Chao", "character": "Leona", "id": 74073, "credit_id": "52fe44c19251416c7503fd89", "cast_id": 20, "profile_path": "/kTcPnmYxm9ez3vI2yX5Nm6Y3dXy.jpg", "order": 6}, {"name": "Lucinda Jenney", "character": "Mrs. Jacobs", "id": 5148, "credit_id": "52fe44c19251416c7503fd8d", "cast_id": 21, "profile_path": "/ucvaRviBWE1IR4YPGA8VYVMSand.jpg", "order": 7}], "directors": [{"name": "Vincent Ward", "department": "Directing", "job": "Director", "credit_id": "52fe44c19251416c7503fd25", "profile_path": null, "id": 9198}], "vote_average": 6.6, "runtime": 113}, "20352": {"poster_path": "/2ZFmSkIihM3cWTjtKVy1UAchG5L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 543513985, "overview": "In a happy suburban neighbourhood surrounded by white picket fences with flowering rose bushes, sits a black house with a dead lawn. Unbeknownst to the neighbours, hidden deep beneath this home is a vast secret hideout. Surrounded by an army of tireless, little yellow minions, we discover Gru, planning the biggest heist in the history of the world. He is going to steal the moon (Yes, the moon!) to prove to his Mum that he is better than the other super-villains, especially the new kid on the block, Vector. Gru delights in all things wicked. Armed with his arsenal of shrink rays, freeze guns and battle-ready vehicles for land and air, he vanquishes all who stand in his way. Until the day he encounters the immense will of three little orphaned girls who look at him and see something that no one else has ever seen: a potential dad.", "video": false, "id": 20352, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me", "tagline": "Superbad. Superdad.", "vote_count": 3738, "homepage": "http://www.despicable.me/", "belongs_to_collection": {"backdrop_path": "/15IZl405E664QDVxpFJBl7TtLmw.jpg", "poster_path": "/95prV91f4DxkBnLU43YjLbU1m3q.jpg", "id": 86066, "name": "Despicable Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1323594", "adult": false, "backdrop_path": "/yo1ef57MEPkEE4BDZKTZGH9uDcX.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-07-08", "popularity": 1.66955290329156, "original_title": "Despicable Me", "budget": 69000000, "cast": [{"name": "Steve Carell", "character": "Gru (voice)", "id": 4495, "credit_id": "52fe43e2c3a368484e003e77", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Jason Segel", "character": "Vector (voice)", "id": 41088, "credit_id": "52fe43e2c3a368484e003e73", "cast_id": 2, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Russell Brand", "character": "Dr. Nefario (voice)", "id": 59919, "credit_id": "52fe43e2c3a368484e003e6f", "cast_id": 1, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 2}, {"name": "Julie Andrews", "character": "Gru's Mother (voice)", "id": 5823, "credit_id": "52fe43e3c3a368484e003e8b", "cast_id": 8, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 3}, {"name": "Will Arnett", "character": "Mr. Perkins (voice)", "id": 21200, "credit_id": "52fe43e3c3a368484e003ec9", "cast_id": 23, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 4}, {"name": "Kristen Wiig", "character": "Miss Hattie (voice)", "id": 41091, "credit_id": "52fe43e3c3a368484e003e83", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 5}, {"name": "Miranda Cosgrove", "character": "Margo (voice)", "id": 17743, "credit_id": "52fe43e2c3a368484e003e7f", "cast_id": 5, "profile_path": "/p2rQkLY4Wr4KnCd3S1LwfhE42zu.jpg", "order": 6}, {"name": "Dana Gaier", "character": "Edith (voice)", "id": 124750, "credit_id": "52fe43e3c3a368484e003eb1", "cast_id": 17, "profile_path": "/rSvNxm2QifFpRCtmzrWHyDy0O9N.jpg", "order": 7}, {"name": "Elsie Kate Fisher", "character": "Agnes (voice)", "id": 998571, "credit_id": "52fe43e3c3a368484e003ecd", "cast_id": 24, "profile_path": "/2ekK6XG4s5knpjLZPwHZCFRA6mJ.jpg", "order": 8}, {"name": "Pierre Coffin", "character": "Tim the Minion / Bob the Minion / Mark the Minion / Phil the Minion / Stuart the Minion (voice)", "id": 124747, "credit_id": "52fe43e3c3a368484e003eb5", "cast_id": 18, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 9}, {"name": "Chris Renaud", "character": "Dave the Minion (voice)", "id": 124748, "credit_id": "52fe43e3c3a368484e003eb9", "cast_id": 19, "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "order": 10}, {"name": "Jemaine Clement", "character": "Jerry the Minion (voice)", "id": 55936, "credit_id": "52fe43e3c3a368484e003e87", "cast_id": 7, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 11}, {"name": "Jack McBrayer", "character": "Carnival Barker / Tourist Dad (voice)", "id": 58737, "credit_id": "52fe43e3c3a368484e003ebd", "cast_id": 20, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 12}, {"name": "Danny McBride", "character": "Fred McDade (voice)", "id": 62862, "credit_id": "52fe43e3c3a368484e003ec1", "cast_id": 21, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 13}, {"name": "Mindy Kaling", "character": "Tourist mom (voice)", "id": 125167, "credit_id": "52fe43e3c3a368484e003ec5", "cast_id": 22, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 14}, {"name": "Rob Huebel", "character": "Anchorman (voice)", "id": 80595, "credit_id": "52fe43e3c3a368484e003e8f", "cast_id": 10, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 15}, {"name": "Ken Jeong", "character": "Talk Show Host (voice)", "id": 83586, "credit_id": "52fe43e2c3a368484e003e7b", "cast_id": 4, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 16}, {"name": "Ken Daurio", "character": "Egyptian Guard (voice)", "id": 52360, "credit_id": "550ef50d925141073d00300c", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Charles Bright", "character": "Additional Voices (voice)", "id": 1444032, "credit_id": "550ef530c3a3683dd6002ba1", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Katie Leigh", "character": "Additional Voices (voice)", "id": 194804, "credit_id": "550ef560925141065c002fc5", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Ranjani Brow", "character": "Additional Voices (voice)", "id": 1444033, "credit_id": "550ef57892514146a000a3da", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Scott Menville", "character": "Additional Voices (voice)", "id": 113916, "credit_id": "550f938c925141073d0042c9", "cast_id": 40, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 21}, {"name": "Holly Dorff", "character": "Additional Voices (voice)", "id": 64449, "credit_id": "550f948492514146a000b653", "cast_id": 41, "profile_path": "/90CsT8F67gH2uQIVppIBMXm7qvf.jpg", "order": 22}, {"name": "Edie Mirman", "character": "Additional Voices (voice)", "id": 1229809, "credit_id": "550f94dac3a3683dd6003d3b", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Jackie Gonneau", "character": "Additional Voices (voice)", "id": 950773, "credit_id": "550f9503c3a3683f390042e5", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Al Rodrigo", "character": "Additional Voices (voice)", "id": 1214171, "credit_id": "550f9541c3a3683dd6003d45", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Wendy Hoffman", "character": "Additional Voices (voice)", "id": 1444259, "credit_id": "550f955a92514146a000b673", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Jakob Roston", "character": "Additional Voices (voice)", "id": 1444262, "credit_id": "550f957792514166db001ff2", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "James Kyson", "character": "Additional Voices (voice) (as James Kyson Lee)", "id": 358824, "credit_id": "550f95a49251416bd1001e2f", "cast_id": 47, "profile_path": "/fuMxMqzqMoW6zqJcWvLA5LegQH1.jpg", "order": 28}, {"name": "John Hans Tester", "character": "Additional Voices (voice) (as Hans Tester)", "id": 1313638, "credit_id": "550f95d9c3a368487400c836", "cast_id": 48, "profile_path": "/5dpMV52ZA1THBmcCPEdtCYzgvwp.jpg", "order": 29}, {"name": "Tony Lee", "character": "Additional Voices (voice)", "id": 1444263, "credit_id": "550f9606925141073d004325", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Debi Mae West", "character": "Additional Voices (voice)", "id": 1216343, "credit_id": "550f965bc3a368208a000b42", "cast_id": 50, "profile_path": null, "order": 31}], "directors": [{"name": "Pierre Coffin", "department": "Directing", "job": "Director", "credit_id": "52fe43e3c3a368484e003e95", "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "id": 124747}, {"name": "Chris Renaud", "department": "Directing", "job": "Director", "credit_id": "52fe43e3c3a368484e003e9b", "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "id": 124748}], "vote_average": 7.0, "runtime": 95}, "85889": {"poster_path": "/dchLaUOkQOPZQHnus5fnZgZKDuP.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A bipolar bigoted junkie cop, manipulates and hallucinates his way through the festive season in a bid to secure promotion and win back his wife and daughter.", "video": false, "id": 85889, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Filth", "tagline": "It's a filthy job getting to the top, but someone's got to do it.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1450321", "adult": false, "backdrop_path": "/1GeTR0rkYKms7qGRdWe7SaiAs7v.jpg", "production_companies": [{"name": "Egoli Tossell Film AG", "id": 2254}, {"name": "Steel Mill Pictures", "id": 15282}, {"name": "Entre Chien et Loup", "id": 15472}, {"name": "Filmgate Films", "id": 18230}, {"name": "Logie Pictures", "id": 19637}, {"name": "Altitude Film Entertainment", "id": 19638}, {"name": "Film House Germany", "id": 19639}, {"name": "Maven Pictures", "id": 19640}], "release_date": "2013-09-24", "popularity": 1.34051982408446, "original_title": "Filth", "budget": 5000000, "cast": [{"name": "James McAvoy", "character": "Bruce Robertson", "id": 5530, "credit_id": "52fe49649251416c910abe03", "cast_id": 1, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Imogen Poots", "character": "Amanda Drummond", "id": 17606, "credit_id": "52fe49649251416c910abe1f", "cast_id": 6, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Ray Lennox", "id": 478, "credit_id": "52fe49659251416c910abe23", "cast_id": 7, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Joanne Froggatt", "character": "Mary", "id": 130977, "credit_id": "52fe49659251416c910abe27", "cast_id": 8, "profile_path": "/zTNRujDs6GW6Jcx6CuDAOM07fnR.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "Bladesey", "id": 1665, "credit_id": "52fe49659251416c910abe2b", "cast_id": 9, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "Emun Elliott", "character": "Peter Inglis", "id": 228968, "credit_id": "52fe49659251416c910abe2f", "cast_id": 10, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "Dr. Rossi", "id": 388, "credit_id": "52fe49659251416c910abe33", "cast_id": 11, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Kate Dickie", "character": "Chrissie", "id": 71083, "credit_id": "52fe49659251416c910abe37", "cast_id": 12, "profile_path": "/nEcvqwrXakqhOX8fa3WZIhGAjA1.jpg", "order": 7}, {"name": "Shirley Henderson", "character": "Bunty", "id": 1834, "credit_id": "52fe49659251416c910abe3b", "cast_id": 13, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 8}, {"name": "Ron Donachie", "character": "Hector", "id": 63141, "credit_id": "52fe49659251416c910abe3f", "cast_id": 14, "profile_path": "/eYU99aaSs2D0EZXbRTn5oFo3kaG.jpg", "order": 9}, {"name": "Martin Compston", "character": "Gorman", "id": 16628, "credit_id": "52fe49659251416c910abe43", "cast_id": 15, "profile_path": "/blnHKosI1kurYcwULjC17d1M4sb.jpg", "order": 10}, {"name": "Iain De Caestecker", "character": "Ocky", "id": 956764, "credit_id": "52fe49659251416c910abe47", "cast_id": 16, "profile_path": "/poZ6RXNoKYiB5U0mBQjo1QK6IZV.jpg", "order": 11}, {"name": "David Soul", "character": "Punter", "id": 15956, "credit_id": "52fe49659251416c910abe4b", "cast_id": 17, "profile_path": "/5TIJLAM2zGTYyRaV62LCmWdum5F.jpg", "order": 12}, {"name": "Pollyanna McIntosh", "character": "Size Queen", "id": 92730, "credit_id": "52fe49659251416c910abe4f", "cast_id": 18, "profile_path": "/u1T42rrc26kGDfwmE6jCVtiH04v.jpg", "order": 13}, {"name": "Shauna Macdonald", "character": "Carole Robertson", "id": 57574, "credit_id": "52fe49659251416c910abe53", "cast_id": 19, "profile_path": "/9FInrBy6ngLURnncUCbWk3iLsJE.jpg", "order": 14}, {"name": "Gary Lewis", "character": "Gus Bain", "id": 480, "credit_id": "52fe49659251416c910abe57", "cast_id": 20, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 15}, {"name": "Natasha O'Keeffe", "character": "Anna", "id": 1167897, "credit_id": "52fe49659251416c910abe5b", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "John Sessions", "character": "Bob Toal", "id": 26860, "credit_id": "52fe49659251416c910abe5f", "cast_id": 22, "profile_path": "/oLBcHRhah5FxyodfZECIHCrROwG.jpg", "order": 17}, {"name": "Brian McCardie", "character": "Dougie Gillman", "id": 18280, "credit_id": "52fe49659251416c910abe63", "cast_id": 23, "profile_path": null, "order": 18}], "directors": [{"name": "Jon S. Baird", "department": "Directing", "job": "Director", "credit_id": "52fe49649251416c910abe09", "profile_path": null, "id": 76965}], "vote_average": 6.6, "runtime": 97}, "12163": {"poster_path": "/huooRmB7yksJyVVSkqOgitxlCec.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44703995, "overview": "Aging wrestler Randy \"The Ram\" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.", "video": false, "id": 12163, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Wrestler", "tagline": "Love. Pain. Glory.", "vote_count": 304, "homepage": "http://www.thewrestlermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1125849", "adult": false, "backdrop_path": "/5tMJqM3ecc0LxCoB3Y3uWYS3NK8.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Top Rope", "id": 7504}, {"name": "Saturn Films", "id": 831}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "2008-09-07", "popularity": 0.828144027001425, "original_title": "The Wrestler", "budget": 6000000, "cast": [{"name": "Mickey Rourke", "character": "Randy Robinson", "id": 2295, "credit_id": "52fe44c29251416c7503ff6d", "cast_id": 4, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Marisa Tomei", "character": "Cassidy", "id": 3141, "credit_id": "52fe44c29251416c7503ff69", "cast_id": 3, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 1}, {"name": "Evan Rachel Wood", "character": "Stephanie", "id": 38940, "credit_id": "52fe44c29251416c7503ff65", "cast_id": 2, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 2}, {"name": "Ajay Naidu", "character": "Medic", "id": 1982, "credit_id": "52fe44c29251416c7503ff71", "cast_id": 5, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 3}, {"name": "Judah Friedlander", "character": "Scott Brumberg", "id": 52860, "credit_id": "52fe44c29251416c7503ff75", "cast_id": 6, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 4}, {"name": "Dylan Keith Summers", "character": "Necro Butcher", "id": 83213, "credit_id": "52fe44c29251416c7503ff79", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Mark Margolis", "character": "Lenny", "id": 1173, "credit_id": "52fe44c29251416c7503ff89", "cast_id": 10, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 6}, {"name": "Ernest Miller", "character": "The Ayatollah", "id": 1216224, "credit_id": "52fe44c29251416c7503ff93", "cast_id": 12, "profile_path": "/tDVGVnzUDPjl8UbHBb6zxqAysfc.jpg", "order": 7}, {"name": "Gregg Bello", "character": "JAPW Promoter Larry Cohen", "id": 122545, "credit_id": "538b251e0e0a26670e001a75", "cast_id": 24, "profile_path": "/eSgxPpUEe0hZcBxQEem3DWeq054.jpg", "order": 8}, {"name": "Donnetta Lavinia Grays", "character": "Jen", "id": 1326471, "credit_id": "538b25450e0a266705001a65", "cast_id": 25, "profile_path": "/peuSjJeTAR22ezu7MO2DREG0aUK.jpg", "order": 9}, {"name": "John D'Leo", "character": "Adam", "id": 1056523, "credit_id": "538b25a00e0a2667180019a2", "cast_id": 27, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 11}, {"name": "Armin Amiri", "character": "Dr. Moayedizadeh", "id": 1122855, "credit_id": "538b25d00e0a266705001a72", "cast_id": 28, "profile_path": null, "order": 12}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe44c29251416c7503ff61", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 7.0, "runtime": 109}, "3981": {"poster_path": "/xiL4PMdL2b5RRdsfEkGmaol2ScW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 374111707, "overview": "Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.", "video": false, "id": 3981, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "What Women Want", "tagline": "He has the power to hear everything women are thinking. Finally... a man is listening.", "vote_count": 271, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0207201", "adult": false, "backdrop_path": "/hUCf8nuuSjUwWlOmTVVPXJHl97v.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2000-12-14", "popularity": 0.558550668333252, "original_title": "What Women Want", "budget": 70000000, "cast": [{"name": "Helen Hunt", "character": "Darcy McGuire", "id": 9994, "credit_id": "52fe43aac3a36847f8066167", "cast_id": 16, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 0}, {"name": "Mel Gibson", "character": "Nick Marshall", "id": 2461, "credit_id": "52fe43aac3a36847f806616b", "cast_id": 17, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Lola", "id": 3141, "credit_id": "52fe43aac3a36847f806616f", "cast_id": 18, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Lauren Holly", "character": "Gigi", "id": 34485, "credit_id": "52fe43aac3a36847f8066173", "cast_id": 19, "profile_path": "/pwenSL3M9vkbIrIvcZEb6mLJNeX.jpg", "order": 3}, {"name": "Mark Feuerstein", "character": "Morgan Farwell", "id": 11365, "credit_id": "52fe43aac3a36847f8066177", "cast_id": 20, "profile_path": "/jIYKKgr0pMUwuvajITsFSPv6ash.jpg", "order": 4}, {"name": "Alan Alda", "character": "Dan Wanamaker", "id": 21278, "credit_id": "52fe43aac3a36847f806617b", "cast_id": 21, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 5}, {"name": "Ashley Johnson", "character": "Alexandra Marshall", "id": 34486, "credit_id": "52fe43aac3a36847f806617f", "cast_id": 22, "profile_path": "/e4GJkGmRGvrqPG5jcTNHBCmL1x9.jpg", "order": 6}, {"name": "Delta Burke", "character": "Eve", "id": 34487, "credit_id": "52fe43aac3a36847f8066183", "cast_id": 23, "profile_path": "/8nBYWD7BB7rkISSDYYaCgd0duY3.jpg", "order": 7}, {"name": "Diana Maria Riva", "character": "Stella", "id": 34488, "credit_id": "52fe43aac3a36847f8066187", "cast_id": 24, "profile_path": "/pVK8NLnPyoGZ6eOHkSEZClqDx4I.jpg", "order": 8}, {"name": "Eric Balfour", "character": "Cameron", "id": 34489, "credit_id": "52fe43aac3a36847f806618b", "cast_id": 25, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 9}, {"name": "Judy Greer", "character": "Erin", "id": 20750, "credit_id": "52fe43aac3a36847f806618f", "cast_id": 26, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 10}, {"name": "Sarah Paulson", "character": "Annie", "id": 34490, "credit_id": "52fe43aac3a36847f8066193", "cast_id": 27, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 11}, {"name": "Bette Midler", "character": "Dr. J.M. Perkin", "id": 73931, "credit_id": "52fe43aac3a36847f8066197", "cast_id": 28, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 12}, {"name": "Logan Lerman", "character": "Young Nick Marshall", "id": 33235, "credit_id": "52fe43aac3a36847f80661b9", "cast_id": 34, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 13}, {"name": "Lisa Edelstein", "character": "Dina", "id": 41420, "credit_id": "53f774050e0a26419b006a3a", "cast_id": 35, "profile_path": "/pKwsvcm1Etgue4zZyBiNEh1Ngc3.jpg", "order": 14}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe43aac3a36847f806610f", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 5.8, "runtime": 127}, "44943": {"poster_path": "/pRVPNau3MIqyGn3QQI86pd2Pq1Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 202466756, "overview": "The Earth is attacked by unknown forces. As people everywhere watch the world's great cities fall, Los Angeles becomes the last stand for mankind in a battle no one expected. It's up to a Marine staff sergeant and his new platoon to draw a line in the sand as they take on an enemy unlike any they've ever encountered before.", "video": false, "id": 44943, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Battle: Los Angeles", "tagline": "It's not war. It's survival.", "vote_count": 679, "homepage": "http://www.battlela.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1217613", "adult": false, "backdrop_path": "/eBcjJY0o7GErxmm8SYpslvtjRyM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}], "release_date": "2011-03-08", "popularity": 1.36940484153817, "original_title": "Battle: Los Angeles", "budget": 70000000, "cast": [{"name": "Aaron Eckhart", "character": "Michael Nantz", "id": 6383, "credit_id": "52fe46a5c3a36847f810a66f", "cast_id": 10, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "William Martinez", "id": 72985, "credit_id": "52fe46a5c3a36847f810a677", "cast_id": 12, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 1}, {"name": "Will Rothhaar", "character": "Cpl. Lee Imlay", "id": 149484, "credit_id": "52fe46a5c3a36847f810a6d5", "cast_id": 33, "profile_path": "/oigxlX2GoRu50q0u6CNwNhfjvyB.jpg", "order": 2}, {"name": "Cory Hardrict", "character": "Cpl. Jason Lockett", "id": 74302, "credit_id": "52fe46a5c3a36847f810a6d9", "cast_id": 34, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 3}, {"name": "Jim Parrack", "character": "Peter Kerns", "id": 83968, "credit_id": "52fe46a5c3a36847f810a683", "cast_id": 16, "profile_path": "/7ATHioOgrx9og5WO3d0AWnQu4Uo.jpg", "order": 4}, {"name": "Gino Anthony Pesi", "character": "Cpl. Nick Stavrou", "id": 150664, "credit_id": "52fe46a5c3a36847f810a6bf", "cast_id": 29, "profile_path": "/4Ai4t02qQfC5XhvcL3u7Th7lW2o.jpg", "order": 5}, {"name": "Ne-Yo", "character": "Kevin Harris", "id": 31133, "credit_id": "52fe46a5c3a36847f810a67f", "cast_id": 14, "profile_path": "/hW6gsMtAsVeF7lHWRb4nct8ww08.jpg", "order": 6}, {"name": "James Hiroyuki Liao", "character": "Steven Mottola", "id": 58330, "credit_id": "52fe46a5c3a36847f810a687", "cast_id": 17, "profile_path": "/efnKaLlUr8wRSGAsDdGa4yrbXqj.jpg", "order": 7}, {"name": "Bridget Moynahan", "character": "Michelle", "id": 18354, "credit_id": "52fe46a5c3a36847f810a67b", "cast_id": 13, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 8}, {"name": "Noel Fisher", "character": "Pfc. Shaun Lenihan", "id": 80352, "credit_id": "52fe46a5c3a36847f810a6dd", "cast_id": 35, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 9}, {"name": "Adetokumboh M'Cormack", "character": "Corpsman Jibril Adukwu", "id": 208096, "credit_id": "52fe46a5c3a36847f810a6bb", "cast_id": 28, "profile_path": "/eK4lnmoMDFdKsiSsBoetgOiPlXF.jpg", "order": 10}, {"name": "Bryce Cass", "character": "Hector Rincon", "id": 145539, "credit_id": "52fe46a5c3a36847f810a6b7", "cast_id": 27, "profile_path": "/h6fRXyEqYmyvVLWNF0YhvowAnHp.jpg", "order": 11}, {"name": "Michael Pe\u00f1a", "character": "Joe Rincon", "id": 454, "credit_id": "52fe46a5c3a36847f810a6b3", "cast_id": 26, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 12}, {"name": "Michelle Rodriguez", "character": "Elena Santos", "id": 17647, "credit_id": "52fe46a5c3a36847f810a673", "cast_id": 11, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 13}, {"name": "Joey King", "character": "Kirsten", "id": 125025, "credit_id": "52fe46a5c3a36847f810a68b", "cast_id": 19, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 14}, {"name": "Neil Brown Jr.", "character": "LCpl. Richard Guerrero", "id": 55091, "credit_id": "52fe46a5c3a36847f810a6e1", "cast_id": 36, "profile_path": "/mv2DgT9RABBYCxOY4ZHYalYBiUt.jpg", "order": 15}, {"name": "Taylor Handley", "character": "LCpl. Corey Simmons", "id": 66741, "credit_id": "52fe46a5c3a36847f810a6e5", "cast_id": 37, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 16}, {"name": "Lucas Till", "character": "Cpl. Scott Grayston", "id": 429, "credit_id": "52fe46a5c3a36847f810a6e9", "cast_id": 38, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 17}, {"name": "Kenneth Brown Jr.", "character": "Cpl. Richard Oswald", "id": 1088041, "credit_id": "52fe46a5c3a36847f810a6ed", "cast_id": 39, "profile_path": "/kGGEedmcWvH1EpjyqEimH9pEgYn.jpg", "order": 18}, {"name": "Jadin Gould", "character": "Amy", "id": 213049, "credit_id": "52fe46a5c3a36847f810a6f1", "cast_id": 40, "profile_path": "/xC07rBx6DTXzclGMy7fOzYM2Q6S.jpg", "order": 19}, {"name": "Joe Chrest", "character": "1st Sgt. John Roy", "id": 141762, "credit_id": "52fe46a5c3a36847f810a6f5", "cast_id": 41, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 20}, {"name": "E. Roger Mitchell", "character": "Company Captain", "id": 41020, "credit_id": "52fe46a5c3a36847f810a6f9", "cast_id": 42, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 21}, {"name": "Rus Blackwell", "character": "Lt. Col. K.N. Ritchie", "id": 52483, "credit_id": "52fe46a5c3a36847f810a6fd", "cast_id": 43, "profile_path": "/xYMkiZQuoramEeabUPnrtiS19vn.jpg", "order": 22}, {"name": "Susie Abromeit", "character": "Amanda", "id": 108696, "credit_id": "52fe46a5c3a36847f810a701", "cast_id": 44, "profile_path": "/cQt1gS5hSxIdR1MYUDHRV0Oq3fq.jpg", "order": 23}, {"name": "Brandi Coleman", "character": "Cherise", "id": 86271, "credit_id": "52fe46a5c3a36847f810a705", "cast_id": 45, "profile_path": "/zGxT5vYR90UGUtob2iNxkOQeHqx.jpg", "order": 24}, {"name": "Elizabeth Keener", "character": "Kathy Martinez", "id": 173879, "credit_id": "52fe46a5c3a36847f810a709", "cast_id": 46, "profile_path": "/kmeRtzUceHuwU7P3o4hslkpexzB.jpg", "order": 25}, {"name": "Jessica Heap", "character": "Jessy", "id": 450660, "credit_id": "52fe46a5c3a36847f810a70d", "cast_id": 47, "profile_path": "/94elhWDJbJJ11DhRHPXAzArTlZU.jpg", "order": 26}, {"name": "David Jensen", "character": "Psychiatrist", "id": 60875, "credit_id": "52fe46a5c3a36847f810a711", "cast_id": 48, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 27}, {"name": "Stacey Turner", "character": "Reporter on TV", "id": 1091772, "credit_id": "52fe46a5c3a36847f810a715", "cast_id": 49, "profile_path": "/w85Oa3vWCD26TvOIU8T5lUmWUla.jpg", "order": 28}, {"name": "Tom Hillmann", "character": "Reporter on TV", "id": 200406, "credit_id": "52fe46a5c3a36847f810a719", "cast_id": 50, "profile_path": "/ddusYsjrekFXMJhm39JbVBSYKVM.jpg", "order": 29}, {"name": "Lena Clark", "character": "Chris", "id": 1153536, "credit_id": "52fe46a5c3a36847f810a71d", "cast_id": 51, "profile_path": "/cuM28MFwzkYdaDbuylGVdIYNV0H.jpg", "order": 30}, {"name": "Jamie Norwood", "character": "Flower Shop Employee", "id": 1205869, "credit_id": "52fe46a5c3a36847f810a721", "cast_id": 52, "profile_path": "/bjcmxnND9ZmLCTQbl99VZlvJID6.jpg", "order": 31}, {"name": "Todd Cochran", "character": "Command Hangar Marine", "id": 1205870, "credit_id": "52fe46a5c3a36847f810a725", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Nzinga Blake", "character": "Adukwu's Sister", "id": 989249, "credit_id": "53111b4a925141102a0015c5", "cast_id": 82, "profile_path": "/vjG6cSfQ8gqEbjAa1AU3zlPajOI.jpg", "order": 33}, {"name": "Taryn Southern", "character": "Reporter on Beach", "id": 443219, "credit_id": "52fe46a5c3a36847f810a729", "cast_id": 54, "profile_path": "/wJ62ykHpr1uCFd0kgpyvUkaqwpZ.jpg", "order": 34}, {"name": "James D. Dever", "character": "Sgt. Major", "id": 1205880, "credit_id": "52fe46a5c3a36847f810a72d", "cast_id": 55, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 35}, {"name": "Alex Aristidis", "character": "Beach Goer (uncredited)", "id": 1205881, "credit_id": "52fe46a5c3a36847f810a731", "cast_id": 56, "profile_path": "/szNg9vupjQrZ17iWOUyh2S1wpdU.jpg", "order": 36}, {"name": "Charlotte Biggs", "character": "Emergency Medical Tech. (uncredited)", "id": 1205883, "credit_id": "52fe46a5c3a36847f810a735", "cast_id": 57, "profile_path": "/xawHdIDus0pP8r0cnVaMXTLrT7R.jpg", "order": 37}, {"name": "Ava Bogle", "character": "Beach Girl 1 (uncredited)", "id": 1110282, "credit_id": "52fe46a5c3a36847f810a739", "cast_id": 58, "profile_path": "/czziAJgTKPCrQQceRX3rKnOM2WO.jpg", "order": 38}, {"name": "Beau Brasseaux", "character": "Marine (uncredited)", "id": 1045389, "credit_id": "52fe46a5c3a36847f810a73d", "cast_id": 59, "profile_path": "/rjq0owMKGlvWKyyK0araKEWlfoa.jpg", "order": 39}, {"name": "Dane Brown", "character": "Firefighter (uncredited)", "id": 1205884, "credit_id": "52fe46a6c3a36847f810a741", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Grant Case", "character": "Marine (uncredited)", "id": 1205885, "credit_id": "52fe46a6c3a36847f810a745", "cast_id": 61, "profile_path": "/9pfYKv0Z3N8UXzdHONYIdHyNnrW.jpg", "order": 41}, {"name": "Kurt Deville", "character": "Marine (uncredited)", "id": 1205886, "credit_id": "52fe46a6c3a36847f810a749", "cast_id": 62, "profile_path": "/c4pVKevagndHfbXinBRrgp9xsDH.jpg", "order": 42}, {"name": "Joshua Farcone", "character": "Dead Civilian (uncredited)", "id": 1205887, "credit_id": "52fe46a6c3a36847f810a74d", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Alex Froman", "character": "Marine (uncredited)", "id": 1205888, "credit_id": "52fe46a6c3a36847f810a751", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Zander Gerhardt", "character": "Dead Civilian (uncredited)", "id": 1205889, "credit_id": "52fe46a6c3a36847f810a755", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Emily D. Haley", "character": "Citizen / Dead Citizen (uncredited)", "id": 1037370, "credit_id": "52fe46a6c3a36847f810a759", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Nick Jones Jr.", "character": "Marine (uncredited)", "id": 1114412, "credit_id": "52fe46a6c3a36847f810a75d", "cast_id": 67, "profile_path": "/7Mu34xO7H5mujrOs18DC1xA1LG4.jpg", "order": 47}, {"name": "Philip Lawrence", "character": "U.S. Marine (uncredited)", "id": 1205894, "credit_id": "52fe46a6c3a36847f810a761", "cast_id": 68, "profile_path": "/6wrLIHXcpqNXBKmoXEqp5lpx945.jpg", "order": 48}, {"name": "Tony Mccullough", "character": "LAPD Officer Boggs (uncredited)", "id": 1205895, "credit_id": "52fe46a6c3a36847f810a765", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Keith Middlebrook", "character": "Steve Johinson (uncredited)", "id": 118755, "credit_id": "52fe46a6c3a36847f810a769", "cast_id": 70, "profile_path": "/5Qg9QNOdY1bCSAuZCC94DKd5PK9.jpg", "order": 50}, {"name": "Courtney Munch", "character": "Marine Crew Chief (uncredited)", "id": 1205900, "credit_id": "52fe46a6c3a36847f810a76d", "cast_id": 71, "profile_path": "/um5AzVKTEto9JL922fS1C0x39h3.jpg", "order": 51}, {"name": "Gustavo I. Ortiz", "character": "Doctor Running Away (uncredited)", "id": 1205901, "credit_id": "52fe46a6c3a36847f810a771", "cast_id": 72, "profile_path": "/2YvVOmqpopUcyyVTrpSTVXFLsFY.jpg", "order": 52}, {"name": "Jim Palmer", "character": "Crew Chief (uncredited)", "id": 9568, "credit_id": "52fe46a6c3a36847f810a775", "cast_id": 73, "profile_path": "/3jCBSmYtDHs2u6ugFENa52SC9HT.jpg", "order": 53}, {"name": "Michelle Pierce", "character": "Shelly (uncredited)", "id": 205011, "credit_id": "52fe46a6c3a36847f810a779", "cast_id": 74, "profile_path": "/iytCPpTXET1pxuIxDTalXsfZxCO.jpg", "order": 54}, {"name": "Philippe Radelet", "character": "Civilian (uncredited)", "id": 1205902, "credit_id": "52fe46a6c3a36847f810a77d", "cast_id": 75, "profile_path": "/72ZHmnyPoofeUbubZXSdCfnlvq1.jpg", "order": 55}, {"name": "Lawanda Smith", "character": "Civilian (uncredited)", "id": 1205903, "credit_id": "52fe46a6c3a36847f810a781", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "David Speed", "character": "Gary (uncredited)", "id": 1205904, "credit_id": "52fe46a6c3a36847f810a785", "cast_id": 77, "profile_path": "/gdTVQOd3estJJn2LZp3T5iXwGPB.jpg", "order": 57}, {"name": "Peyton Whitcomb", "character": "Extra (uncredited)", "id": 1205905, "credit_id": "52fe46a6c3a36847f810a789", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Michael Wozniak", "character": "Beach Dude (uncredited)", "id": 1205906, "credit_id": "52fe46a6c3a36847f810a78d", "cast_id": 79, "profile_path": "/aqPTnAB2mlWyrepb3dKyMCzgYeE.jpg", "order": 59}, {"name": "Marlon Young", "character": "Sergeant Major (uncredited)", "id": 167109, "credit_id": "52fe46a6c3a36847f810a791", "cast_id": 80, "profile_path": "/8c4pFoyw0Pbh6Xzfr58NI0sGAwQ.jpg", "order": 60}, {"name": "Lynette Zumo", "character": "Dead Civilian (uncredited)", "id": 1205907, "credit_id": "52fe46a6c3a36847f810a795", "cast_id": 81, "profile_path": null, "order": 61}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe46a5c3a36847f810a665", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 5.5, "runtime": 116}, "44945": {"poster_path": "/6mOwP2MYyN3H0TfHAWjc7Ro0ssg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120000, "overview": "A man (Clive Owen) has difficulty coping with the knowledge that his 14-year-daughter (Liana Liberato) was assaulted by a sexual predator she met in an online chat room.", "video": false, "id": 44945, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Trust", "tagline": "What took her family years to build, a stranger stole in an instant.", "vote_count": 65, "homepage": "http://www.trustmovie2011.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1529572", "adult": false, "backdrop_path": "/zoaYrsrxc4Y1zOloOHbaxrLE1Xf.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}], "release_date": "2010-09-10", "popularity": 0.870702392221056, "original_title": "Trust", "budget": 9500000, "cast": [{"name": "Clive Owen", "character": "Will Cameron", "id": 2296, "credit_id": "52fe46a6c3a36847f810a8cb", "cast_id": 32, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Chris Henry Coffey", "character": "Charlie / Glen Weston", "id": 150433, "credit_id": "52fe46a6c3a36847f810a8b7", "cast_id": 27, "profile_path": "/r5auQm0vZK5rvcaxP8U1OhUQSz2.jpg", "order": 1}, {"name": "Liana Liberato", "character": "Annie Cameron", "id": 60458, "credit_id": "52fe46a6c3a36847f810a8bb", "cast_id": 28, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 2}, {"name": "Noah Emmerich", "character": "", "id": 11315, "credit_id": "52fe46a6c3a36847f810a8bf", "cast_id": 29, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 3}, {"name": "Viola Davis", "character": "Gail", "id": 19492, "credit_id": "52fe46a6c3a36847f810a8c3", "cast_id": 30, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 4}, {"name": "Catherine Keener", "character": "Lynn Cameron", "id": 2229, "credit_id": "52fe46a6c3a36847f810a8c7", "cast_id": 31, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Jason Clarke", "character": "Doug Tate", "id": 76512, "credit_id": "52fe46a6c3a36847f810a8cf", "cast_id": 33, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 6}, {"name": "Zoe Levin", "character": "Brittany", "id": 1190917, "credit_id": "52fe46a6c3a36847f810a8d3", "cast_id": 34, "profile_path": "/uhJnIakHRrW30r1H8ljVUiTWR4E.jpg", "order": 7}], "directors": [{"name": "David Schwimmer", "department": "Directing", "job": "Director", "credit_id": "52fe46a6c3a36847f810a847", "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "id": 14409}], "vote_average": 6.0, "runtime": 104}, "12180": {"poster_path": "/xd6yhmtS6mEURZLwUDT5raEMbf.jpg", "production_countries": [{"iso_3166_1": "SG", "name": "Singapore"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35154336, "overview": "Set between Episode II and III the Clone Wars is the first computer animated Star Wars film. Anakin and Obi Wan must find out who kidnapped Jabba the Hutts son and return him safely. The Seperatists will try anything to stop them and ruin any chance of a diplomatic agreement between the Hutt's and the Republic.", "video": false, "id": 12180, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Wars: The Clone Wars", "tagline": "", "vote_count": 105, "homepage": "http://www.starwars.com/clonewars/site/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1185834", "adult": false, "backdrop_path": "/gmLMaDXi4lFWG8WitaCYOJS5GtL.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "2008-08-05", "popularity": 1.03524573611133, "original_title": "Star Wars: The Clone Wars", "budget": 8500000, "cast": [{"name": "Samuel L. Jackson", "character": "Mace Windu (voice)", "id": 2231, "credit_id": "52fe44c59251416c7504057f", "cast_id": 1, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Christopher Lee", "character": "Count Dooku (voice)", "id": 113, "credit_id": "52fe44c59251416c75040583", "cast_id": 2, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 1}, {"name": "Anthony Daniels", "character": "C-3PO (voice)", "id": 6, "credit_id": "52fe44c59251416c75040587", "cast_id": 3, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 2}, {"name": "Matt Lanter", "character": "Anakin Skywalker (voice)", "id": 34202, "credit_id": "52fe44c59251416c7504058f", "cast_id": 6, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 3}, {"name": "Tom Kane", "character": "Yoda (voice)", "id": 71535, "credit_id": "52fe44c59251416c7504058b", "cast_id": 4, "profile_path": "/hAyEHNuhD6PqbPdCNR7iUyM271I.jpg", "order": 4}, {"name": "Matthew Wood", "character": "General Grievous (voice)", "id": 71536, "credit_id": "52fe44c59251416c75040597", "cast_id": 8, "profile_path": "/oB9wVbEIg8fjY3ulDKjKsGn2A55.jpg", "order": 6}, {"name": "Ian Abercrombie", "character": "Palpatine (voice)", "id": 11764, "credit_id": "52fe44c59251416c75040593", "cast_id": 7, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 7}, {"name": "Nika Futterman", "character": "Asajj Ventress (voice)", "id": 52698, "credit_id": "52fe44c59251416c7504059b", "cast_id": 9, "profile_path": "/xHBt7N6YVvfgQJuWAJ74xLKF9Dr.jpg", "order": 8}, {"name": "Ashley Eckstein", "character": "Ahsoka Tano (voice)", "id": 41345, "credit_id": "52fe44c59251416c750405c9", "cast_id": 18, "profile_path": "/aEAQPWFv2mlH2Pp9TPJMfIDnIOJ.jpg", "order": 9}], "directors": [{"name": "Dave Filoni", "department": "Directing", "job": "Director", "credit_id": "52fe44c59251416c750405ad", "profile_path": "/1m7ijGgs29Emn3Sj08c1GwGTUm0.jpg", "id": 71538}], "vote_average": 6.0, "runtime": 98}, "3989": {"poster_path": "/crkPGNm0M19LHp8I5mhs75EqhSH.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50907422, "overview": "Team America World Police follows an international police force dedicated to maintaining global stability. Learning that dictator Kim Jong il is out to destroy the world, the team recruits Broadway star Gary Johnston to go undercover. With the help of Team America, Gary manages to uncover the plan to destroy the world. Will Team America be able to save it in time? It stars\u2026 Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glover, Ethan Hawke, Alec Baldwin\u2026 or does it?", "video": false, "id": 3989, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Team America: World Police", "tagline": "Putting The 'F' back in 'Freedom'", "vote_count": 131, "homepage": "http://www.teamamerica.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0372588", "adult": false, "backdrop_path": "/c6Z0E5IYNXSslBxSWX7Q1xUvthJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2004-10-11", "popularity": 0.682510964451031, "original_title": "Team America: World Police", "budget": 32000000, "cast": [{"name": "Trey Parker", "character": "Gary Johnston (voice) / Joe (voice) / Kim Jong Il (voice) / Hans Blix (voice) / Carson (voice) / Matt Damon (voice) / Drunk in Bar (voice) / Tim Robbins (voice) / Sean Penn (voice) / Michael Moore (voice) / Helen Hunt (voice) / Susan Sarandon (voice) / Others (voice)", "id": 34517, "credit_id": "52fe43abc3a36847f80665f9", "cast_id": 4, "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "order": 0}, {"name": "Matt Stone", "character": "Chris (voice) / George Clooney (voice) / Danny Glover (voice) / Ethan Hawke (voice) / Others (voice)", "id": 34518, "credit_id": "52fe43abc3a36847f80665fd", "cast_id": 15, "profile_path": "/fENM2HlxKgMe81OTTgert1Q55pj.jpg", "order": 1}, {"name": "Kristen Miller", "character": "Lisa (voice)", "id": 34519, "credit_id": "52fe43abc3a36847f8066601", "cast_id": 19, "profile_path": "/ktFY5yObT4c57DuyEhsZoCOyrvo.jpg", "order": 2}, {"name": "Masasa Moyo", "character": "Sarah (voice)", "id": 34520, "credit_id": "52fe43abc3a36847f8066605", "cast_id": 20, "profile_path": "/kyghWHugRBGhyNEu5ne7p5INu3s.jpg", "order": 3}, {"name": "Daran Norris", "character": "Spottswoode (voice)", "id": 31162, "credit_id": "52fe43abc3a36847f8066609", "cast_id": 21, "profile_path": "/8sSi35l8BkWIbTaJcgmW2VFAgTz.jpg", "order": 4}, {"name": "Maurice LaMarche", "character": "Alec Baldwin (voice)", "id": 34521, "credit_id": "52fe43abc3a36847f806660d", "cast_id": 22, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 5}], "directors": [{"name": "Trey Parker", "department": "Directing", "job": "Director", "credit_id": "52fe43abc3a36847f80665e9", "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "id": 34517}], "vote_average": 6.4, "runtime": 98}, "12182": {"poster_path": "/pM199sJFY0MQo5IcfUFWmAZUlt7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32973937, "overview": "Attempting to avoid his obsession over a girl he just lost, a boy enlists the help of a stranger, another girl who leads him on a romantic escapade through the after-hours club scene in Manhattan. Though the girl is as lost and heartbroken over a love affair as the boy, miracles happen, idols crumble and the \"strangers\" find real love through each other.", "video": false, "id": 12182, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Nick and Norah's Infinite Playlist", "tagline": "Every night has a soundtrack.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0981227", "adult": false, "backdrop_path": "/z2rK9aU6rb4vYVkG5vdwCuUlWJc.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Columbia Pictures", "id": 5}, {"name": "Mandate Pictures", "id": 771}, {"name": "Depth of Field", "id": 1473}], "release_date": "2008-10-03", "popularity": 0.239798962619842, "original_title": "Nick and Norah's Infinite Playlist", "budget": 9000000, "cast": [{"name": "Michael Cera", "character": "Nick", "id": 39995, "credit_id": "52fe44c59251416c7504065f", "cast_id": 5, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 0}, {"name": "Kat Dennings", "character": "Norah", "id": 52852, "credit_id": "52fe44c59251416c75040663", "cast_id": 6, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 1}, {"name": "Aaron Yoo", "character": "Thom", "id": 54247, "credit_id": "52fe44c59251416c75040667", "cast_id": 7, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 2}, {"name": "Alexis Dziena", "character": "Tris", "id": 4433, "credit_id": "52fe44c59251416c7504066b", "cast_id": 8, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 3}, {"name": "Ari Graynor", "character": "Caroline", "id": 71552, "credit_id": "52fe44c59251416c7504066f", "cast_id": 9, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 4}, {"name": "Cassidy Gard", "character": "Hipster", "id": 71553, "credit_id": "52fe44c59251416c75040673", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Jonathan B. Wright", "character": "Lethariot", "id": 71554, "credit_id": "52fe44c59251416c75040677", "cast_id": 11, "profile_path": "/jAeOOEvIupm2xNDLSS4XM6fDj7A.jpg", "order": 6}, {"name": "Jay Baruchel", "character": "Tal", "id": 449, "credit_id": "52fe44c59251416c7504068d", "cast_id": 15, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 7}, {"name": "Rafi Gavron", "character": "Dev", "id": 21660, "credit_id": "52fe44c69251416c750406d3", "cast_id": 27, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 8}, {"name": "Zachary Booth", "character": "Gary", "id": 205854, "credit_id": "52fe44c69251416c750406d7", "cast_id": 28, "profile_path": "/v5gQp2tJhtrGwaRI1SFcdIxfCEe.jpg", "order": 9}], "directors": [{"name": "Peter Sollett", "department": "Directing", "job": "Director", "credit_id": "52fe44c59251416c75040649", "profile_path": "/tEojdG6dKBEdDpflZ4QnTfREEUv.jpg", "id": 71548}], "vote_average": 6.3, "runtime": 90}, "12184": {"poster_path": "/s0hrzj5GzGdvvqdyoKwt44eiZHd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.", "video": false, "id": 12184, "genres": [{"id": 18, "name": "Drama"}], "title": "The Other Boleyn Girl", "tagline": "Two sisters divided for the love for a king.", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0467200", "adult": false, "backdrop_path": "/zEHZLuo6ZJAHuQosrLpALUelvh5.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Columbia Pictures", "id": 5}, {"name": "Focus Features", "id": 10146}, {"name": "BBC Films", "id": 288}, {"name": "Relativity Media", "id": 7295}, {"name": "Ruby Films", "id": 2054}], "release_date": "2008-02-28", "popularity": 1.07335959389139, "original_title": "The Other Boleyn Girl", "budget": 35000000, "cast": [{"name": "Natalie Portman", "character": "Anne Boleyn", "id": 524, "credit_id": "52fe44c69251416c750408af", "cast_id": 17, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Mary Boleyn", "id": 1245, "credit_id": "52fe44c69251416c750408cb", "cast_id": 22, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Eric Bana", "character": "Henry Tudor", "id": 8783, "credit_id": "52fe44c69251416c750408cf", "cast_id": 23, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 2}, {"name": "Jim Sturgess", "character": "George Boleyn", "id": 38941, "credit_id": "52fe44c79251416c750408d3", "cast_id": 24, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 3}, {"name": "Kristin Scott Thomas", "character": "Lady Elizabeth Boleyn", "id": 5470, "credit_id": "52fe44c79251416c750408db", "cast_id": 26, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 4}, {"name": "Mark Rylance", "character": "Sir Thomas Boleyn", "id": 40900, "credit_id": "52fe44c79251416c750408d7", "cast_id": 25, "profile_path": "/5XrQYvdYqiGUepbgmRQfOltgBRJ.jpg", "order": 5}, {"name": "David Morrissey", "character": "Thomas Howard - Duke of Norfolk", "id": 18616, "credit_id": "52fe44c79251416c750408df", "cast_id": 27, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 6}, {"name": "Ana Torrent", "character": "Katherine of Aragon", "id": 24976, "credit_id": "52fe44c79251416c750408e3", "cast_id": 28, "profile_path": "/xIpRwiCl2xAp2R3i9jV10ZfW2kC.jpg", "order": 7}, {"name": "Eddie Redmayne", "character": "William Stafford", "id": 37632, "credit_id": "52fe44c79251416c750408e7", "cast_id": 29, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 8}, {"name": "Benedict Cumberbatch", "character": "William Carey", "id": 71580, "credit_id": "52fe44c79251416c750408f7", "cast_id": 33, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 9}, {"name": "Oliver Coleman", "character": "Henry Percy", "id": 71581, "credit_id": "52fe44c79251416c750408fb", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Juno Temple", "character": "Jane Parker", "id": 36594, "credit_id": "52fe44c79251416c750408ef", "cast_id": 31, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 11}, {"name": "Andrew Garfield", "character": "Francis Weston", "id": 37625, "credit_id": "52fe44c79251416c75040907", "cast_id": 37, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 12}, {"name": "Iain Mitchell", "character": "Thomas Cromwell", "id": 71584, "credit_id": "52fe44c79251416c75040903", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Michael Smiley", "character": "Physician", "id": 17078, "credit_id": "52fe44c79251416c750408eb", "cast_id": 30, "profile_path": "/muzJQpsKJ4srfVpyRa7qkrRYWSq.jpg", "order": 14}, {"name": "Tom Cox", "character": "Rider", "id": 71582, "credit_id": "52fe44c79251416c750408f3", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Lewis Jones", "character": "Brandon Mark", "id": 71585, "credit_id": "52fe44c79251416c7504090b", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Montserrat Roig de Puig", "character": "Lady in Waiting", "id": 71583, "credit_id": "52fe44c79251416c750408ff", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Alfie Allen", "character": "King's Messenger", "id": 71586, "credit_id": "52fe44c79251416c7504090f", "cast_id": 39, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 18}, {"name": "Corinne Galloway", "character": "Jane Seymour", "id": 71587, "credit_id": "52fe44c79251416c75040913", "cast_id": 40, "profile_path": null, "order": 19}], "directors": [{"name": "Justin Chadwick", "department": "Directing", "job": "Director", "credit_id": "52fe44c69251416c75040857", "profile_path": "/8jhsQAwccFClH4gEYd4Hlbig31I.jpg", "id": 71570}], "vote_average": 6.2, "runtime": 115}, "12193": {"poster_path": "/ybEq3gB5lxPwLRwpbZhAwRyziQx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Brad and Kate have made something of an art form out of avoiding their families during the holidays, but this year their foolproof plan is about go bust -- big time. Stuck at the city airport after all departing flights are canceled, the couple is embarrassed to see their ruse exposed to the world by an overzealous television reporter. Now, Brad and Kate are left with precious little choice other than to swallow their pride and suffer the rounds.", "video": false, "id": 12193, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Four Christmases", "tagline": "His father, her mother, his mother and her father all in one day.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369436", "adult": false, "backdrop_path": "/ivPjf1kbWYAeuV0x6y8mAi824g4.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Type A Films", "id": 2308}, {"name": "Ott Medien", "id": 2795}, {"name": "Wild West Picture Show Productions", "id": 2796}], "release_date": "2008-11-26", "popularity": 0.777398644590853, "original_title": "Four Christmases", "budget": 80000000, "cast": [{"name": "Reese Witherspoon", "character": "Kate", "id": 368, "credit_id": "52fe44c89251416c75040bb3", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Vince Vaughn", "character": "Brad", "id": 4937, "credit_id": "52fe44c89251416c75040bb7", "cast_id": 2, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Robert Duvall", "character": "Howard", "id": 3087, "credit_id": "52fe44c89251416c75040bbb", "cast_id": 3, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 2}, {"name": "Mary Steenburgen", "character": "Kate's Mom", "id": 2453, "credit_id": "52fe44c89251416c75040bbf", "cast_id": 4, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 3}, {"name": "Dwight Yoakam", "character": "Pastor Phil", "id": 20309, "credit_id": "52fe44c89251416c75040bc3", "cast_id": 5, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 4}, {"name": "Sissy Spacek", "character": "Paula", "id": 5606, "credit_id": "52fe44c89251416c75040c1b", "cast_id": 20, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 5}, {"name": "Jon Voight", "character": "Creighton", "id": 10127, "credit_id": "52fe44c89251416c75040c1f", "cast_id": 21, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 6}, {"name": "Jon Favreau", "character": "Denver", "id": 15277, "credit_id": "52fe44c89251416c75040c23", "cast_id": 22, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 7}, {"name": "Tim McGraw", "character": "Dallas", "id": 74428, "credit_id": "52fe44c89251416c75040c27", "cast_id": 23, "profile_path": "/lotQwKKAUe3hI4EnmMySNpJGKGO.jpg", "order": 8}, {"name": "Kristin Chenoweth", "character": "Courtney", "id": 52775, "credit_id": "52fe44c89251416c75040c2b", "cast_id": 24, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 9}, {"name": "Katy Mixon", "character": "Susan", "id": 59450, "credit_id": "52fe44c89251416c75040c2f", "cast_id": 25, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 10}, {"name": "Colleen Camp", "character": "Aunt Donna", "id": 13023, "credit_id": "52fe44c89251416c75040c33", "cast_id": 26, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 11}, {"name": "Jeanette Miller", "character": "Gram-Gram", "id": 58929, "credit_id": "52fe44c89251416c75040c37", "cast_id": 27, "profile_path": "/mpWlUmcibBwYRGZSYn1jY8Ot5Ne.jpg", "order": 12}], "directors": [{"name": "Seth Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe44c89251416c75040bc9", "profile_path": "/gstUEbopSacaQTpxYjfSwz0gzLl.jpg", "id": 71600}], "vote_average": 5.3, "runtime": 88}, "8859": {"poster_path": "/3KoZiWlgvmeDYiLk9oOMpEvZThb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73180723, "overview": "Jesse and Chester, two bumbling stoners, wake up one morning from a night of partying and cannot remember where they parked their car. They encounter a variety of people while looking for it, including their angry girlfriends, an angry street gang, a transexual stripper, a cult of alien seeking fanatics, and aliens in human form looking for a mystical device that could save or destroy the world.", "video": false, "id": 8859, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dude, Where\u2019s My Car?", "tagline": "After a night they can't remember, comes a day they'll never forget.", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0242423", "adult": false, "backdrop_path": "/i27vFixWQzSGfMcUjXYziyxWLI5.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Alcon Entertainment", "id": 1088}], "release_date": "2000-12-15", "popularity": 1.14376759608434, "original_title": "Dude, Where\u2019s My Car?", "budget": 13000000, "cast": [{"name": "Ashton Kutcher", "character": "Jesse", "id": 18976, "credit_id": "52fe44c1c3a36847f80a831b", "cast_id": 1, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Chester", "id": 57599, "credit_id": "52fe44c1c3a36847f80a8327", "cast_id": 4, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Kristy Swanson", "character": "Christie Boner", "id": 56128, "credit_id": "52fe44c1c3a36847f80a831f", "cast_id": 2, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 2}, {"name": "Jennifer Garner", "character": "Wanda", "id": 9278, "credit_id": "52fe44c1c3a36847f80a8323", "cast_id": 3, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 3}, {"name": "Marla Sokoloff", "character": "Wilma", "id": 80109, "credit_id": "52fe44c1c3a36847f80a834f", "cast_id": 11, "profile_path": "/t1AqyY4woqhVdixPj2bcfrUd7s5.jpg", "order": 4}], "directors": [{"name": "Danny Leiner", "department": "Directing", "job": "Director", "credit_id": "52fe44c1c3a36847f80a832d", "profile_path": "/baaonHW8JdQXyuQJODB0UvQfTAi.jpg", "id": 56591}], "vote_average": 5.4, "runtime": 83}, "12201": {"poster_path": "/u3kUkeKziARwvKFlWo6ZBYnaCpG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74901339, "overview": "As a seasoned homicide detective, Thomas Craven has seen the bleakest side of humanity. But nothing prepares him for the toughest investigation of his life: the search for his only daughter Emma's killer. Now, he is on a personal mission to uncover the disturbing secrets surrounding her murder, including corporate corruption, government collusion and Emma's own mysterious life.", "video": false, "id": 12201, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Edge of Darkness", "tagline": "Some secrets take us to the edge.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1226273", "adult": false, "backdrop_path": "/ksxr95M6fh2f2zgIlgGDDyfgOhC.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}, {"name": "Warner Bros.", "id": 6194}, {"name": "GK Films", "id": 3281}, {"name": "BBC Films", "id": 288}], "release_date": "2010-01-29", "popularity": 0.696851852595539, "original_title": "Edge of Darkness", "budget": 80000000, "cast": [{"name": "Mel Gibson", "character": "Thomas Craven", "id": 2461, "credit_id": "52fe44c99251416c75040dcd", "cast_id": 2, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Ray Winstone", "character": "Darius Jedburgh", "id": 5538, "credit_id": "52fe44c99251416c75040dd1", "cast_id": 3, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 1}, {"name": "Danny Huston", "character": "Bennett", "id": 6413, "credit_id": "52fe44c99251416c75040dd5", "cast_id": 4, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 2}, {"name": "Shawn Roberts", "character": "Burnham", "id": 81097, "credit_id": "52fe44c99251416c75040dd9", "cast_id": 5, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 3}, {"name": "Denis O'Hare", "character": "Moore", "id": 81681, "credit_id": "52fe44c99251416c75040ddd", "cast_id": 6, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 4}, {"name": "Bojana Novakovi\u0107", "character": "Emma Craven", "id": 81682, "credit_id": "52fe44c99251416c75040de1", "cast_id": 7, "profile_path": "/huxuKuGq26pHRE6nO0WJu3aS0hU.jpg", "order": 5}, {"name": "Gbenga Akinnagbe", "character": "Det. Darcy Jones", "id": 81683, "credit_id": "52fe44c99251416c75040de5", "cast_id": 8, "profile_path": "/5zkJdpJWanImwO7pIlYbbdtKFOu.jpg", "order": 6}, {"name": "Caterina Scorsone", "character": "Melissa Conway", "id": 81684, "credit_id": "52fe44c99251416c75040de9", "cast_id": 9, "profile_path": "/sR4fRd9fIEAnMR2ONWBxqpycdSx.jpg", "order": 7}, {"name": "Jay O. Sanders", "character": "Whitehouse", "id": 6067, "credit_id": "52fe44c99251416c75040ded", "cast_id": 10, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 8}, {"name": "Wayne Duvall", "character": "Chief of Police", "id": 1470, "credit_id": "52fe44c99251416c75040df1", "cast_id": 11, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 9}, {"name": "Frank Grillo", "character": "The agent one", "id": 81685, "credit_id": "52fe44c99251416c75040df5", "cast_id": 12, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 10}, {"name": "David Aaron Baker", "character": "Millroy", "id": 60195, "credit_id": "52fe44c99251416c75040df9", "cast_id": 13, "profile_path": "/b3fxKRexd28lPSEWXqSzklXZuBo.jpg", "order": 11}, {"name": "Sol E. Romero", "character": "Hospital Nurse", "id": 81686, "credit_id": "52fe44c99251416c75040dfd", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Tom Kemp", "character": "Paul Honeywell", "id": 58333, "credit_id": "52fe44c99251416c75040e01", "cast_id": 15, "profile_path": "/iQ3etbD6KycVsVK3VSCatpTBeZr.jpg", "order": 13}, {"name": "Rick Avery", "character": "Robinson Jr.", "id": 81687, "credit_id": "52fe44c99251416c75040e05", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Scott Winters", "character": "Northmoor Doctor", "id": 81688, "credit_id": "52fe44c99251416c75040e09", "cast_id": 17, "profile_path": "/mlIIDs03w3qxMjHcOHF6APsSZQU.jpg", "order": 15}, {"name": "Peter Hermann", "character": "Sanderman", "id": 50117, "credit_id": "52fe44c99251416c75040e49", "cast_id": 28, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 16}, {"name": "Nico Evers-Swindell", "character": "State Trooper #2", "id": 510488, "credit_id": "52fe44c99251416c75040e4d", "cast_id": 29, "profile_path": "/xCJtitaVa0oeAtlBxqdn7SEs2tu.jpg", "order": 17}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe44c99251416c75040dc9", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.2, "runtime": 117}, "4011": {"poster_path": "/9QWgpkxjs9Pcb5JfWIw37lL6vYd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73326666, "overview": "Thanks to an untimely demise via drowning, a young couple end up as poltergeists in their New England farmhouse, where they fail to meet the challenge of scaring away the insufferable new owners, who want to make drastic changes. In desperation, the undead newlyweds turn to an expert frightmeister, but he's got a diabolical agenda of his own.", "video": false, "id": 4011, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Beetlejuice", "tagline": "He's guaranteed to put some life, in your afterlife.", "vote_count": 345, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 311946, "name": "Beetlejuice Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094721", "adult": false, "backdrop_path": "/ghqjoy3R6tkzE69rdIvvaK6v5o5.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Geffen Pictures", "id": 360}], "release_date": "1988-03-30", "popularity": 1.12739296152099, "original_title": "Beetlejuice", "budget": 15000000, "cast": [{"name": "Michael Keaton", "character": "Beetlejuice", "id": 2232, "credit_id": "52fe43abc3a36847f80666f3", "cast_id": 9, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Adam Maitland", "id": 7447, "credit_id": "52fe43abc3a36847f80666df", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Geena Davis", "character": "Barbara Maitland", "id": 16935, "credit_id": "52fe43abc3a36847f80666e3", "cast_id": 5, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 2}, {"name": "Winona Ryder", "character": "Lydia Deetz", "id": 1920, "credit_id": "52fe43abc3a36847f8066743", "cast_id": 24, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 3}, {"name": "Annie McEnroe", "character": "Jane Butterfield", "id": 34535, "credit_id": "52fe43abc3a36847f80666e7", "cast_id": 6, "profile_path": "/yjaUtjmCnF0PrKmE7bpVNEUFRP0.jpg", "order": 4}, {"name": "Maurice Page", "character": "Ernie", "id": 34536, "credit_id": "52fe43abc3a36847f80666eb", "cast_id": 7, "profile_path": "/3z4EjRjFA722OofYEXfuQv71ukz.jpg", "order": 5}, {"name": "Hugo Stanger", "character": "Old Bill", "id": 34537, "credit_id": "52fe43abc3a36847f80666ef", "cast_id": 8, "profile_path": "/oUhPnyUvf15eut1PRt1ntMSpw82.jpg", "order": 6}, {"name": "Rachel Mittelman", "character": "Little Jane Butterfield", "id": 34538, "credit_id": "52fe43abc3a36847f80666f7", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Catherine O'Hara", "character": "Delia Deetz", "id": 11514, "credit_id": "52fe43abc3a36847f8066747", "cast_id": 25, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 8}, {"name": "J. Jay Saunders", "character": "Moving Man #1", "id": 152727, "credit_id": "52fe43abc3a36847f806674b", "cast_id": 26, "profile_path": "/s5uvUSSUH8gYK76TGUR4zatysrQ.jpg", "order": 9}, {"name": "Mark Ettlinger", "character": "Moving Man #2", "id": 1073806, "credit_id": "52fe43abc3a36847f806674f", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Jeffrey Jones", "character": "Charles Deetz", "id": 4004, "credit_id": "52fe43abc3a36847f8066753", "cast_id": 28, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 11}, {"name": "Glenn Shadix", "character": "Otho", "id": 13243, "credit_id": "52fe43abc3a36847f8066757", "cast_id": 29, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 12}, {"name": "Patrice Martinez", "character": "Receptionist", "id": 54813, "credit_id": "52fe43abc3a36847f806675b", "cast_id": 30, "profile_path": "/k5zb1ftmsClSUOMrgUiV1hgyukO.jpg", "order": 13}, {"name": "Cindy Daly", "character": "3-Fingered Typist", "id": 52467, "credit_id": "52fe43abc3a36847f806675f", "cast_id": 31, "profile_path": "/guuo8IvbWBrdGMCWr959tlDE8EL.jpg", "order": 14}, {"name": "Carmen Filpi", "character": "Messenger", "id": 154073, "credit_id": "52fe43abc3a36847f8066767", "cast_id": 33, "profile_path": "/a1XRRqiUDBC4Wlg5fklVhfvnWLx.jpg", "order": 15}, {"name": "Sylvia Sidney", "character": "Juno", "id": 528, "credit_id": "54a2c23a9251411860001f1c", "cast_id": 39, "profile_path": "/A1btt1FKCXFSeLYsfC3i9JL08Op.jpg", "order": 16}, {"name": "Robert Goulet", "character": "Maxie Dean", "id": 128621, "credit_id": "54a2c24ac3a3682f1e00f05d", "cast_id": 40, "profile_path": "/776KzwV8l62Wz4gGWnifTUtf8A2.jpg", "order": 17}, {"name": "Dick Cavett", "character": "Bernard", "id": 10565, "credit_id": "54a2c25dc3a3684d8f001c48", "cast_id": 41, "profile_path": "/wxur4NDgWKAZsjrjpc75ZTzNqsO.jpg", "order": 18}, {"name": "Susan Kellermann", "character": "Grace", "id": 27264, "credit_id": "54a2c26fc3a3682f1b00f305", "cast_id": 42, "profile_path": "/1WTM0L9rpgv0Urgi7P0IoHaMlsX.jpg", "order": 19}, {"name": "Tony Cox", "character": "Preacher", "id": 19754, "credit_id": "54a2c282925141212700607c", "cast_id": 43, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 20}, {"name": "Maree Cheatham", "character": "Sarah Dean (as Marie Cheatham)", "id": 114604, "credit_id": "54a2c290c3a368554200c782", "cast_id": 44, "profile_path": "/unHXWmdtUZHJqQOD4o40UHf8YFp.jpg", "order": 21}, {"name": "Harry Belafonte", "character": "The Balladeer (voice) (uncredited)", "id": 33162, "credit_id": "54a2c2a5925141198b003c8a", "cast_id": 45, "profile_path": "/7RfJGhebM6ZnPQNPrstHJpw8w20.jpg", "order": 22}, {"name": "Harry Belafonte", "character": "The Hanging Man (uncredited)", "id": 33162, "credit_id": "54a2c2d3c3a3682f2100f49b", "cast_id": 46, "profile_path": "/7RfJGhebM6ZnPQNPrstHJpw8w20.jpg", "order": 23}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe43abc3a36847f80666cf", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.8, "runtime": 92}, "41630": {"poster_path": "/1AxDwc2eugEvG4dRTear9q8Hzmw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147780440, "overview": "Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?", "video": false, "id": 41630, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "No Strings Attached", "tagline": "Friendship has its benefits.", "vote_count": 358, "homepage": "http://www.nostringsattachedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1411238", "adult": false, "backdrop_path": "/tlbGPwXp2eWZaijWqYXiHYwKuF8.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cold Spring Pictures", "id": 2363}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Montecito Picture Company, The", "id": 4607}, {"name": "Handsomecharlie Films", "id": 8873}, {"name": "Katalyst Films", "id": 817}], "release_date": "2011-01-20", "popularity": 1.7730258052826, "original_title": "No Strings Attached", "budget": 25000000, "cast": [{"name": "Natalie Portman", "character": "Emma Kurtzman", "id": 524, "credit_id": "52fe45d7c3a36847f80dd645", "cast_id": 14, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Adam Franklin", "id": 18976, "credit_id": "52fe45d7c3a36847f80dd649", "cast_id": 15, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Greta Gerwig", "character": "Patrice", "id": 45400, "credit_id": "52fe45d7c3a36847f80dd631", "cast_id": 8, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 2}, {"name": "Kevin Kline", "character": "Alvin", "id": 8945, "credit_id": "52fe45d7c3a36847f80dd62d", "cast_id": 6, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 3}, {"name": "Olivia Thirlby", "character": "Katie Kurtzman", "id": 52442, "credit_id": "52fe45d7c3a36847f80dd64d", "cast_id": 16, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 3}, {"name": "Lake Bell", "character": "Lucy", "id": 25703, "credit_id": "52fe45d7c3a36847f80dd629", "cast_id": 5, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 4}, {"name": "Cary Elwes", "character": "Dr. Metzner", "id": 2130, "credit_id": "52fe45d7c3a36847f80dd625", "cast_id": 4, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 6}, {"name": "Talia Balsam", "character": "Sandra Kurtzman", "id": 140253, "credit_id": "52fe45d7c3a36847f80dd635", "cast_id": 10, "profile_path": "/4adzNEL8GD9lKlxWDlnuKcp37SF.jpg", "order": 7}, {"name": "Stefanie Scott", "character": "Young Emma", "id": 106490, "credit_id": "52fe45d7c3a36847f80dd63d", "cast_id": 12, "profile_path": "/dDm7CXVfv89dMFPeW5MkbM59me5.jpg", "order": 7}, {"name": "Ophelia Lovibond", "character": "Vanessa", "id": 82639, "credit_id": "52fe45d7c3a36847f80dd639", "cast_id": 11, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 10}, {"name": "Rachael Markarian", "character": "Frat Dancer", "id": 143742, "credit_id": "52fe45d7c3a36847f80dd641", "cast_id": 13, "profile_path": "/5I2Eee7sLhUYJKknIKfifPMV5n5.jpg", "order": 10}, {"name": "Jake M. Johnson", "character": "Eli", "id": 543505, "credit_id": "52fe45d7c3a36847f80dd657", "cast_id": 18, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 11}, {"name": "Matthew Moy", "character": "Chuck", "id": 1254625, "credit_id": "52fe45d7c3a36847f80dd65b", "cast_id": 19, "profile_path": "/b6I500CFqDZmMgWbfaUwKvQBGL.jpg", "order": 12}, {"name": "Abby Elliott", "character": "Joy", "id": 1240486, "credit_id": "52fe45d7c3a36847f80dd65f", "cast_id": 20, "profile_path": "/pYjlIPsmbkI5A6obFcLSkaZxU8.jpg", "order": 13}, {"name": "Nasim Pedrad", "character": "Writer", "id": 476163, "credit_id": "52fe45d7c3a36847f80dd663", "cast_id": 21, "profile_path": "/kA12uJDhiLW6xhTYJEwhMFjJBjb.jpg", "order": 14}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe45d7c3a36847f80dd621", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.1, "runtime": 108}, "44982": {"poster_path": "/8w54aZ5hLX18gqs37MIdBmyIFMN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A naive young man assumes a dead man's identity and finds himself embroiled in an underground world of power, violence, and chance where men gamble behind closed doors on the lives of other men.", "video": false, "id": 44982, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "13", "tagline": "Spin. Aim. Survive.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0798817", "adult": false, "backdrop_path": "/A82GPC0XeoZMBWDYTe4Dba32cme.jpg", "production_companies": [{"name": "Morabito Picture Company", "id": 24323}, {"name": "Overnight Films", "id": 10808}, {"name": "Red Dragon Productions", "id": 24322}, {"name": "Barbarian Films", "id": 6563}, {"name": "Magnet Media Group", "id": 22546}, {"name": "Cinedigm", "id": 20659}, {"name": "Oceana Media Finance", "id": 4634}], "release_date": "2010-03-12", "popularity": 1.0821392067126, "original_title": "13", "budget": 0, "cast": [{"name": "Jason Statham", "character": "Jasper", "id": 976, "credit_id": "52fe46a8c3a36847f810b083", "cast_id": 13, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Alexander Skarsg\u00e5rd", "character": "Jack", "id": 28846, "credit_id": "52fe46a8c3a36847f810b07b", "cast_id": 11, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 1}, {"name": "Gaby Hoffmann", "character": "Clara", "id": 12930, "credit_id": "52fe46a8c3a36847f810b07f", "cast_id": 12, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 2}, {"name": "Emmanuelle Chriqui", "character": "Aileen", "id": 59192, "credit_id": "52fe46a8c3a36847f810b08d", "cast_id": 15, "profile_path": "/d2PyTKZyt5Ndk9am6PJ8u6jRdjH.jpg", "order": 3}, {"name": "Mickey Rourke", "character": "Jefferson", "id": 2295, "credit_id": "52fe46a8c3a36847f810b091", "cast_id": 16, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 4}, {"name": "David Zayas", "character": "Detective Larry Mullane", "id": 22821, "credit_id": "52fe46a8c3a36847f810b095", "cast_id": 17, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 5}, {"name": "Ray Winstone", "character": "Ronald Lynn", "id": 5538, "credit_id": "52fe46a8c3a36847f810b099", "cast_id": 18, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 6}, {"name": "Michael Shannon", "character": "Henry", "id": 335, "credit_id": "52fe46a8c3a36847f810b09d", "cast_id": 19, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 7}, {"name": "Sam Riley", "character": "Vince", "id": 32987, "credit_id": "52fe46a8c3a36847f810b0a1", "cast_id": 20, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 8}, {"name": "50 Cent", "character": "Jimmy", "id": 62644, "credit_id": "52fe46a8c3a36847f810b0a5", "cast_id": 21, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 9}], "directors": [{"name": "G\u00e9la Babluani", "department": "Directing", "job": "Director", "credit_id": "52fe46a8c3a36847f810b077", "profile_path": null, "id": 47786}], "vote_average": 5.8, "runtime": 97}, "53182": {"poster_path": "/bRE7nmNuZzciep7MDkNfuTrM9zW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 331169117, "overview": "Based on Frank Miller's latest graphic novel Xerxes and told in the breathtaking visual style of the blockbuster \"300,\" this new chapter of the epic saga takes the action to a fresh battlefield--on the sea--as Greek general Themistokles attempts to unite all of Greece by leading the charge that will change the course of the war. \"300: Rise of an Empire\" pits Themistokles against the massive invading Persian forces led by mortal-turned-god Xerxes and Artemesia, the vengeful commander of the Persian navy.", "video": false, "id": 53182, "genres": [{"id": 28, "name": "Action"}, {"id": 10752, "name": "War"}], "title": "300: Rise of an Empire", "tagline": "Seize your glory!", "vote_count": 904, "homepage": "http://www.300themovie.com/", "belongs_to_collection": {"backdrop_path": "/ldKTZVlq8kXk34RwPSZaX2FXC24.jpg", "poster_path": "/nKQqh6kJvPdpOJD24enD3Bm1Hy5.jpg", "id": 125570, "name": "300 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1253863", "adult": false, "backdrop_path": "/dwRCptswUg5T27EM6hyXPlObRbE.jpg", "production_companies": [{"name": "Nimar Studios", "id": 7636}, {"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Cruel & Unusual Films", "id": 9995}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Hollywood Gang Productions", "id": 2994}], "release_date": "2014-03-07", "popularity": 2.4786736294867, "original_title": "300: Rise of an Empire", "budget": 110000000, "cast": [{"name": "Sullivan Stapleton", "character": "Themistocles", "id": 38664, "credit_id": "52fe4857c3a36847f81628f9", "cast_id": 6, "profile_path": "/jbtXSbo8uqBTn8Nx2Z1fULTQlAz.jpg", "order": 0}, {"name": "Eva Green", "character": "Artemisia", "id": 10912, "credit_id": "52fe4857c3a36847f81628fd", "cast_id": 7, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Lena Headey", "character": "Queen Gorgo", "id": 17286, "credit_id": "52fe4857c3a36847f8162915", "cast_id": 13, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 2}, {"name": "Callan Mulvey", "character": "Scylias", "id": 208296, "credit_id": "52fe4857c3a36847f8162909", "cast_id": 10, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 3}, {"name": "David Wenham", "character": "Dillios", "id": 1371, "credit_id": "52fe4857c3a36847f8162919", "cast_id": 14, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 4}, {"name": "Rodrigo Santoro", "character": "Xerxes", "id": 17289, "credit_id": "52fe4857c3a36847f8162901", "cast_id": 8, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 5}, {"name": "Jack O'Connell", "character": "Calisto", "id": 85065, "credit_id": "52fe4857c3a36847f8162905", "cast_id": 9, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 6}, {"name": "Andrew Tiernan", "character": "Ephialtes", "id": 17290, "credit_id": "52fe4857c3a36847f816290d", "cast_id": 11, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 7}, {"name": "Ashraf Barhom", "character": "General Bandari", "id": 766, "credit_id": "52fe4857c3a36847f8162911", "cast_id": 12, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 8}, {"name": "Andrew Pleavin", "character": "Daxos", "id": 17291, "credit_id": "52fe4857c3a36847f816291d", "cast_id": 15, "profile_path": "/tiMLyqTDBx0TgfQKlLHObr9eGyG.jpg", "order": 9}, {"name": "Hans Matheson", "character": "Aesyklos", "id": 37168, "credit_id": "53160c5f92514158770008b1", "cast_id": 17, "profile_path": "/4MQAI6g3AabzUDm29UbadjjWteL.jpg", "order": 10}, {"name": "Peter Mensah", "character": "Persian Emissary", "id": 68278, "credit_id": "54819334c3a36829a7005bf9", "cast_id": 104, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 12}, {"name": "Ben Turner", "character": "General Artaphernes", "id": 1261071, "credit_id": "548193749251416e74005e8a", "cast_id": 105, "profile_path": null, "order": 13}, {"name": "Christopher Boyer", "character": "Senator", "id": 153946, "credit_id": "548193a3c3a36829a7005c03", "cast_id": 106, "profile_path": "/1J4pfvy7XW2LcV2qZkgyGb4xxDU.jpg", "order": 14}, {"name": "Fred Ochs", "character": "Senator", "id": 211593, "credit_id": "548193b89251416e7b005571", "cast_id": 107, "profile_path": null, "order": 15}, {"name": "Price Carson", "character": "Senator", "id": 36060, "credit_id": "548193d0c3a3684afd0013cd", "cast_id": 108, "profile_path": null, "order": 16}, {"name": "John Michael Herndon", "character": "Senator", "id": 1394772, "credit_id": "548193e79251416e78005a71", "cast_id": 109, "profile_path": null, "order": 17}, {"name": "David Pevsner", "character": "Senator", "id": 177099, "credit_id": "54819405c3a36829a7005c11", "cast_id": 110, "profile_path": null, "order": 18}, {"name": "Peter Ferdinando", "character": "Greek Ambassador", "id": 109833, "credit_id": "5481941f9251416e81005ac3", "cast_id": 111, "profile_path": "/jrpB6xsVtTQ3f29dhywY5XH7AVP.jpg", "order": 19}, {"name": "Igal Naor", "character": "King Darius", "id": 1437966, "credit_id": "55002fbd9251413d9b00141b", "cast_id": 112, "profile_path": null, "order": 20}], "directors": [{"name": "Noam Murro", "department": "Directing", "job": "Director", "credit_id": "52fe4857c3a36847f81628e9", "profile_path": "/u7FyryITMLNsBvuqNWcvSReF2lC.jpg", "id": 78914}], "vote_average": 6.2, "runtime": 102}, "4032": {"poster_path": "/70VWmsMiTRHv9XjMvjmTVHDoM6C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is \"allergic to everything\", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...", "video": false, "id": 4032, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "My Girl", "tagline": "When your Dad's an undertaker, your Mom's in heaven, and your Grandma's got a screw loose...it's good to have a friend who understands you. Even if he is a boy.", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/u292FNPKjhLQ6OWyYQfhdv4naIL.jpg", "id": 85960, "name": "My Girl Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102492", "adult": false, "backdrop_path": "/bUkb8goYWIRfDISwmUyKbZZnfMV.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1991-11-26", "popularity": 0.317160081922436, "original_title": "My Girl", "budget": 16500000, "cast": [{"name": "Anna Chlumsky", "character": "Vada Sultenfuss", "id": 34612, "credit_id": "52fe43acc3a36847f8066b1d", "cast_id": 2, "profile_path": "/9wwtj8lfHKGna2L0CXBWllHIDUq.jpg", "order": 0}, {"name": "Macaulay Culkin", "character": "Thomas J. Sennett", "id": 11510, "credit_id": "52fe43acc3a36847f8066b21", "cast_id": 3, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Harry Sultenfuss", "id": 707, "credit_id": "52fe43acc3a36847f8066b25", "cast_id": 4, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "Jamie Lee Curtis", "character": "Shelly DeVoto", "id": 8944, "credit_id": "52fe43acc3a36847f8066b29", "cast_id": 5, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 3}, {"name": "Richard Masur", "character": "Phil Sultenfuss", "id": 15416, "credit_id": "52fe43acc3a36847f8066b75", "cast_id": 18, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 4}, {"name": "Griffin Dunne", "character": "Mr. Jake Bixler", "id": 2171, "credit_id": "52fe43acc3a36847f8066b79", "cast_id": 19, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 5}, {"name": "Peter Michael Goetz", "character": "Dr. Welty", "id": 20906, "credit_id": "52fe43acc3a36847f8066b7d", "cast_id": 20, "profile_path": "/a2hLcCidETgwlVyQnYy4kXVKUcn.jpg", "order": 6}, {"name": "Lara Steinick", "character": "Ronda", "id": 35168, "credit_id": "52fe43acc3a36847f8066b81", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Anny Nelsen", "character": "Gramoo Sultenfuss", "id": 18222, "credit_id": "52fe43acc3a36847f8066b85", "cast_id": 22, "profile_path": "/5kIG1e6LMYR2Qb7VXYOIYtnT8o5.jpg", "order": 8}], "directors": [{"name": "Howard Zieff", "department": "Directing", "job": "Director", "credit_id": "52fe43acc3a36847f8066b19", "profile_path": null, "id": 34611}], "vote_average": 6.9, "runtime": 102}, "12225": {"poster_path": "/mbhVL3sdRtXvmGc2iB2SKfa24Wz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 2294291, "overview": "After a painful breakup, Ben develops insomnia. To kill time, he starts working the late night shift at the local supermarket, where his artistic imagination runs wild.", "video": false, "id": 12225, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Cashback", "tagline": "Sometimes love is hiding between the seconds of your life.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0460740", "adult": false, "backdrop_path": "/tGwCY3dVkFpOQUL6hjiMb9c3yMl.jpg", "production_companies": [{"name": "Left Turn Films", "id": 1435}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Ugly Duckling Films", "id": 1436}], "release_date": "2006-09-10", "popularity": 0.668230381726023, "original_title": "Cashback", "budget": 0, "cast": [{"name": "Sean Biggerstaff", "character": "Ben Willis", "id": 11179, "credit_id": "52fe44cd9251416c750417cf", "cast_id": 19, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 0}, {"name": "Emilia Fox", "character": "Sharon Pintey", "id": 6639, "credit_id": "52fe44cd9251416c750417d3", "cast_id": 20, "profile_path": "/xbOxrak2VaQTVX2pNdqRG3NZvK2.jpg", "order": 1}, {"name": "Shaun Evans", "character": "Sean Higgins", "id": 63311, "credit_id": "52fe44cd9251416c750417d7", "cast_id": 21, "profile_path": "/8sjgajgpLmlPFDIgagzHJ3OAhz5.jpg", "order": 2}, {"name": "Michael Dixon", "character": "Barry Brickman", "id": 73401, "credit_id": "52fe44cd9251416c750417db", "cast_id": 22, "profile_path": "/HdUE9PAD1DBkS1gur72sVT10kR.jpg", "order": 3}, {"name": "Michelle Ryan", "character": "Suzy", "id": 73525, "credit_id": "52fe44cd9251416c750417df", "cast_id": 23, "profile_path": "/5B3HsN9RfldWrddSSrxYLJf7RwL.jpg", "order": 4}, {"name": "Stuart Goodwin", "character": "Jenkins", "id": 73526, "credit_id": "52fe44cd9251416c750417e3", "cast_id": 24, "profile_path": "/3rgTxrWlxDb2VcGp0mVhFYTBF9b.jpg", "order": 5}, {"name": "Frank Hesketh", "character": "Young Ben Willis", "id": 73529, "credit_id": "52fe44cd9251416c750417e7", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Kenneth Fahy", "character": "Art Class Life Model", "id": 73531, "credit_id": "52fe44cd9251416c750417f3", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Erica Ellis", "character": "Canteen Lady", "id": 73530, "credit_id": "52fe44cd9251416c750417eb", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Marc Pickering", "character": "Brian 'Kung-Fu'", "id": 73528, "credit_id": "52fe44cd9251416c750417ef", "cast_id": 27, "profile_path": "/3xOapB4eNc5QU1Oo0NcBDX8Jolh.jpg", "order": 9}, {"name": "Michael Lambourne", "character": "Matt Stephens", "id": 73527, "credit_id": "52fe44cd9251416c750417f7", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Stan Ellis", "character": "Art Class Teacher", "id": 73532, "credit_id": "52fe44cd9251416c750417fb", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Nia Roberts", "character": "Woman at the Till", "id": 71354, "credit_id": "52fe44cd9251416c750417ff", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Winnie Li", "character": "Betting Employee", "id": 32258, "credit_id": "52fe44cd9251416c75041803", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Katie Ball", "character": "Art Class Girl", "id": 73533, "credit_id": "52fe44cd9251416c75041807", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Celesta Hodge", "character": "Deer Girl in Sainsbury's", "id": 73534, "credit_id": "52fe44cd9251416c7504180f", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Cherie Nichole", "character": "Shampoo / Frozen Girl 2", "id": 73537, "credit_id": "52fe44cd9251416c7504180b", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Lene Bausager", "character": "Woman with Trolley", "id": 32251, "credit_id": "52fe44cd9251416c75041813", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Hatti Riemer", "character": "Old Lady at Deli Counter", "id": 73535, "credit_id": "52fe44cd9251416c75041817", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Kinvara Balfour", "character": "Shampoo / Frozen Girl 1", "id": 73536, "credit_id": "52fe44cd9251416c7504181b", "cast_id": 38, "profile_path": null, "order": 19}], "directors": [{"name": "Sean Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe44cd9251416c7504177d", "profile_path": "/kjZvWdk8e4B9bDkhPfWzushR5az.jpg", "id": 32250}], "vote_average": 6.9, "runtime": 102}, "60747": {"poster_path": "/uwB68oOgSj2eXqvoSdBLcmsN53p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44806783, "overview": "A city in Washington state awakens to the surreal sight of foreign paratroopers dropping from the sky - shockingly, the U.S. has been invaded and their hometown is the initial target. Quickly and without warning, the citizens find themselves prisoners and their town under enemy occupation. Determined to fight back, a group of young patriots seek refuge in the surrounding woods, training and reorganizing themselves into a guerrilla group of fighters. Taking inspiration from their high school mascot, they call themselves the Wolverines, banding together to protect one another, liberate their town from its captors, and take back their freedom.", "video": false, "id": 60747, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Red Dawn", "tagline": "Welcome To the Home of the Brave", "vote_count": 244, "homepage": "http://www.mgm.com/view/Movie/2394/Red%20Dawn%20%282010%29/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1234719", "adult": false, "backdrop_path": "/ann5zw9xcilyeMAV64p3jrUkzAW.jpg", "production_companies": [{"name": "Contrafilm", "id": 1836}, {"name": "FilmDistrict", "id": 7263}], "release_date": "2012-11-21", "popularity": 1.19446453620616, "original_title": "Red Dawn", "budget": 65000000, "cast": [{"name": "Chris Hemsworth", "character": "Jed Eckert", "id": 74568, "credit_id": "52fe4633c3a368484e084351", "cast_id": 9, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Robert Kitner", "id": 27972, "credit_id": "52fe4633c3a368484e084355", "cast_id": 10, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Isabel Lucas", "character": "Erica Martin", "id": 103554, "credit_id": "52fe4633c3a368484e084359", "cast_id": 11, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 2}, {"name": "Adrianne Palicki", "character": "Toni Walsh", "id": 88995, "credit_id": "52fe4633c3a368484e08435d", "cast_id": 12, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 3}, {"name": "Jeffrey Dean Morgan", "character": "Col. Andy Tanner", "id": 47296, "credit_id": "52fe4633c3a368484e084361", "cast_id": 13, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 4}, {"name": "Edwin Hodge", "character": "Danny", "id": 56679, "credit_id": "52fe4633c3a368484e084365", "cast_id": 14, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 5}, {"name": "Michael Beach", "character": "Mayor Jenkins", "id": 87118, "credit_id": "52fe4633c3a368484e084369", "cast_id": 15, "profile_path": "/lOlWhURNKyZHn71dvq7qC7fiwN6.jpg", "order": 6}, {"name": "Connor Cruise", "character": "Daryl Jenkins", "id": 235547, "credit_id": "52fe4633c3a368484e08436d", "cast_id": 16, "profile_path": "/wQUTaFEcO67FxHZ6OHS91sBC6Q2.jpg", "order": 7}, {"name": "Alyssa Diaz", "character": "Julie", "id": 134180, "credit_id": "52fe4633c3a368484e084371", "cast_id": 17, "profile_path": "/omty6bSrgtMMlJwZAUUZlaiIElq.jpg", "order": 8}, {"name": "Matt Gerald", "character": "Hodges", "id": 98215, "credit_id": "52fe4633c3a368484e084375", "cast_id": 18, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 9}, {"name": "Josh Peck", "character": "Matt Eckert", "id": 15760, "credit_id": "52fe4633c3a368484e084379", "cast_id": 19, "profile_path": "/mLQ9fKG7E1PLErgPWRMfIccwOTM.jpg", "order": 10}, {"name": "Brett Cullen", "character": "Tom Eckert", "id": 16841, "credit_id": "52fe4633c3a368484e08437d", "cast_id": 20, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 11}, {"name": "Julian Alcaraz", "character": "Greg", "id": 1123221, "credit_id": "52fe4633c3a368484e084381", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Will Yun Lee", "character": "Captain Cho", "id": 10884, "credit_id": "52fe4633c3a368484e084385", "cast_id": 22, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 13}, {"name": "Fernando Chien", "character": "Lt. Pak", "id": 216782, "credit_id": "52fe4633c3a368484e084389", "cast_id": 23, "profile_path": "/lnMvhgE5ZKBaWvGN6beUJUqeHxD.jpg", "order": 14}, {"name": "Kenneth Choi", "character": "Smith", "id": 41561, "credit_id": "52fe4633c3a368484e08438d", "cast_id": 24, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 15}], "directors": [{"name": "Dan Bradley", "department": "Directing", "job": "Director", "credit_id": "52fe4633c3a368484e084323", "profile_path": null, "id": 8684}], "vote_average": 5.5, "runtime": 93}, "12230": {"poster_path": "/vo5j5OZIdnfMIZSkVfSvh8cJUU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215880014, "overview": "When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.", "video": false, "id": 12230, "genres": [{"id": 16, "name": "Animation"}], "title": "101 Dalmatians", "tagline": "The Canine Caper of the Century", "vote_count": 415, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rcnZbAGQsb3Hp0qPgnRalTyMJlQ.jpg", "poster_path": "/jBlsSRopSFbNAaZzs420bWDjKf7.jpg", "id": 100693, "name": "101 Dalmatians Animated Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0055254", "adult": false, "backdrop_path": "/vHBYOUjt04iI0COvMtPAMa2pC9y.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1961-01-25", "popularity": 1.96189617787489, "original_title": "One Hundred and One Dalmatians", "budget": 4000000, "cast": [{"name": "Rod Taylor", "character": "Pongo", "id": 8229, "credit_id": "52fe44ce9251416c75041a3f", "cast_id": 1, "profile_path": "/nCSU0Teu87l0Hep7CVTWbyHqPAX.jpg", "order": 0}, {"name": "J. Pat O'Malley", "character": "Colonel / Jasper", "id": 22602, "credit_id": "52fe44ce9251416c75041a43", "cast_id": 2, "profile_path": "/if8jAnsuARxFUy3k7PhaFqzHd9N.jpg", "order": 1}, {"name": "Betty Lou Gerson", "character": "Cruella De Vil / Miss Birdwell", "id": 71779, "credit_id": "52fe44ce9251416c75041a47", "cast_id": 3, "profile_path": "/sqapDTfgfIy6j0KHJTjzPaPzMJ8.jpg", "order": 2}, {"name": "Martha Wentworth", "character": "Nanny / Queenie / Lucy", "id": 71780, "credit_id": "52fe44ce9251416c75041a4b", "cast_id": 4, "profile_path": "/jyWAHneC2QdoC1Wpnvwf05wCMZs.jpg", "order": 3}, {"name": "Ben Wright", "character": "Roger", "id": 71781, "credit_id": "52fe44ce9251416c75041a4f", "cast_id": 5, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 4}, {"name": "Cate Bauer", "character": "Perdita", "id": 71782, "credit_id": "52fe44ce9251416c75041a53", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "David Frankham", "character": "Sgt. Tibs", "id": 16063, "credit_id": "52fe44cf9251416c75041a8d", "cast_id": 16, "profile_path": "/nWfvSZ64kaHLnQmgL3No1ArAkra.jpg", "order": 6}, {"name": "Frederick Worlock", "character": "Horace / Inspector Craven", "id": 14509, "credit_id": "52fe44cf9251416c75041a91", "cast_id": 17, "profile_path": "/oCQAanAc665NeE5allgEMit3wiY.jpg", "order": 7}, {"name": "Lisa Davis", "character": "Anita", "id": 140821, "credit_id": "52fe44cf9251416c75041a95", "cast_id": 18, "profile_path": "/3GNZX1dq9xSs0t8sISdaPD6UnUV.jpg", "order": 8}, {"name": "Tom Conway", "character": "Quizmaster / Collie", "id": 48962, "credit_id": "52fe44cf9251416c75041a99", "cast_id": 19, "profile_path": "/p2J2JRaKOrWuvIZ5UruXTxYLnXL.jpg", "order": 9}, {"name": "Tudor Owen", "character": "Towser", "id": 106101, "credit_id": "52fe44cf9251416c75041a9d", "cast_id": 20, "profile_path": "/wl75h6SDHDJ9kYjzDK3NCXKtduM.jpg", "order": 10}, {"name": "George Pelling", "character": "Danny", "id": 100975, "credit_id": "52fe44cf9251416c75041aa1", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Ramsay Hill", "character": "Television Announcer / Labrador", "id": 1080053, "credit_id": "52fe44cf9251416c75041aa5", "cast_id": 22, "profile_path": "/li4cu5zNbaHfjCMxukvIBwaTy2L.jpg", "order": 12}, {"name": "Queenie Leonard", "character": "Princess", "id": 39802, "credit_id": "52fe44cf9251416c75041aa9", "cast_id": 23, "profile_path": "/a0La7jUQRkLKmK7d70jkQ3JDc1C.jpg", "order": 13}, {"name": "Marjorie Bennett", "character": "Duchess", "id": 97257, "credit_id": "52fe44cf9251416c75041aad", "cast_id": 24, "profile_path": "/cyY0ltPueaqENXEBnd0KWE5VHRd.jpg", "order": 14}, {"name": "Mickey Maga", "character": "Patch", "id": 179313, "credit_id": "52fe44cf9251416c75041ab1", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Barbara Beaird", "character": "Rolly", "id": 178787, "credit_id": "52fe44cf9251416c75041ab5", "cast_id": 26, "profile_path": "/b9uI3i27qRYgvfk8JQEnb29smco.jpg", "order": 16}, {"name": "Mimi Gibson", "character": "Lucky", "id": 16762, "credit_id": "52fe44cf9251416c75041ab9", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Sandra Abbott", "character": "Penny", "id": 1080054, "credit_id": "52fe44cf9251416c75041abd", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Thurl Ravenscroft", "character": "Captain", "id": 150739, "credit_id": "52fe44cf9251416c75041ac1", "cast_id": 29, "profile_path": "/6DSmCbrUeNP7lDJkhTkJ7I9hTeq.jpg", "order": 19}, {"name": "Bill Lee", "character": "Roger (singing voice)", "id": 1224636, "credit_id": "543fb9450e0a265ab10018ab", "cast_id": 31, "profile_path": null, "order": 21}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe44ce9251416c75041a59", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe44ce9251416c75041a5f", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}, {"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44ce9251416c75041a65", "profile_path": null, "id": 57314}], "vote_average": 6.3, "runtime": 79}, "123553": {"poster_path": "/rgq2nlpYljGzoiCe8cJM3nhDSxT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters \u2014 half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother's future.", "video": false, "id": 123553, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "The Mortal Instruments: City of Bones", "tagline": "You have been chosen", "vote_count": 421, "homepage": "http://www.themortalinstrumentsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1538403", "adult": false, "backdrop_path": "/3dQ0GxSxfnATXlZH76iGvyuEC1i.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}], "release_date": "2013-08-21", "popularity": 1.10088504741413, "original_title": "The Mortal Instruments: City of Bones", "budget": 60000000, "cast": [{"name": "Lily Collins", "character": "Clary", "id": 112561, "credit_id": "52fe4a98c3a368484e15c631", "cast_id": 1, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 0}, {"name": "Jamie Campbell Bower", "character": "Jace Wayland", "id": 83356, "credit_id": "52fe4a98c3a368484e15c639", "cast_id": 3, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 1}, {"name": "Kevin Zegers", "character": "Alec Lightwood", "id": 7431, "credit_id": "52fe4a98c3a368484e15c649", "cast_id": 7, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 2}, {"name": "Jemima West", "character": "Isabelle Lightwood", "id": 1075355, "credit_id": "52fe4a98c3a368484e15c645", "cast_id": 6, "profile_path": "/3KS3sNttKeq4jz8h4F2oWNsFHje.jpg", "order": 3}, {"name": "Robert Michael Sheehan", "character": "Simon Lewis", "id": 118616, "credit_id": "52fe4a98c3a368484e15c63d", "cast_id": 4, "profile_path": "/47OUDEpraCrTeqpAMlIFuqm8q0L.jpg", "order": 4}, {"name": "Lena Headey", "character": "Jocelyn Fray", "id": 17286, "credit_id": "52fe4a98c3a368484e15c635", "cast_id": 2, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 5}, {"name": "Jared Harris", "character": "Hodge Starkweather", "id": 15440, "credit_id": "52fe4a98c3a368484e15c641", "cast_id": 5, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 6}, {"name": "Aidan Turner", "character": "Luke Garroway", "id": 207558, "credit_id": "52fe4a98c3a368484e15c64d", "cast_id": 9, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 7}, {"name": "Godfrey Gao", "character": "Magnus Bane", "id": 1192915, "credit_id": "52fe4a98c3a368484e15c669", "cast_id": 14, "profile_path": "/2FKkLFgKm1dJrY4ZHtiHuFtsAnp.jpg", "order": 8}, {"name": "Robert Maillet", "character": "Blackwell", "id": 112692, "credit_id": "52fe4a98c3a368484e15c66d", "cast_id": 15, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 9}, {"name": "Kevin Durand", "character": "Pangborn", "id": 79072, "credit_id": "52fe4a98c3a368484e15c671", "cast_id": 16, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 10}, {"name": "C. C. H. Pounder", "character": "Dorothea", "id": 30485, "credit_id": "52fe4a98c3a368484e15c675", "cast_id": 18, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 11}, {"name": "Jonathan Rhys Meyers", "character": "Valentine", "id": 1244, "credit_id": "52fe4a98c3a368484e15c679", "cast_id": 19, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 12}, {"name": "Aidan Turner", "character": "Luke", "id": 207558, "credit_id": "52fe4a98c3a368484e15c67d", "cast_id": 20, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 13}, {"name": "Stephen R. Hart", "character": "Brother Jeremiah", "id": 224723, "credit_id": "52fe4a98c3a368484e15c681", "cast_id": 21, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 14}, {"name": "Harry Van Gorkum", "character": "Alaric", "id": 58655, "credit_id": "52fe4a98c3a368484e15c685", "cast_id": 22, "profile_path": "/2azQVvdIkA5E8POWTzIWOp2A2BI.jpg", "order": 15}, {"name": "Chad Connell", "character": "Lambert", "id": 1240078, "credit_id": "5303aed0c3a3680a196697e4", "cast_id": 29, "profile_path": "/nCAb5fXPZ2bo42KBnnaN14078P1.jpg", "order": 16}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe4a98c3a368484e15c653", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 6.0, "runtime": 130}, "11596": {"poster_path": "/oLEZibnraixTE68rTaYv4FEmvYd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18090181, "overview": "Freddy's back \u2026 and he's badder than ever! Nancy, the historical nemesis of the man with the satanic snarl and pitchfork fingers, discovers that a new monstrous demon has taken on Freddy's persona. Can Nancy stop this new threat in time to save her son?", "video": false, "id": 11596, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "New Nightmare", "tagline": "One, Two, Freddy's coming for you...", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111686", "adult": false, "backdrop_path": "/33TTFIqH3cGG5KVk6EvpKKvpegN.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1994-10-14", "popularity": 0.60583371669322, "original_title": "New Nightmare", "budget": 14000000, "cast": [{"name": "Heather Langenkamp", "character": "Herself / Nancy Thompson", "id": 5141, "credit_id": "52fe44639251416c7503301d", "cast_id": 1, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 0}, {"name": "Robert Englund", "character": "Freddy Krueger / Himself", "id": 5139, "credit_id": "52fe44639251416c75033021", "cast_id": 2, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 1}, {"name": "Miko Hughes", "character": "Dylan Porter", "id": 8186, "credit_id": "52fe44639251416c75033025", "cast_id": 3, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 2}, {"name": "Wes Craven", "character": "Himself", "id": 5140, "credit_id": "52fe44639251416c75033029", "cast_id": 4, "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "order": 3}, {"name": "David Newsom", "character": "Chase Porter", "id": 166594, "credit_id": "52fe44639251416c75033051", "cast_id": 11, "profile_path": "/aSEdkogLdFgHubJiqEAKDtLcVD3.jpg", "order": 4}, {"name": "Tracy Middendorf", "character": "Julie", "id": 12547, "credit_id": "52fe44639251416c75033055", "cast_id": 12, "profile_path": "/j55JY7bG995jfnZ0kkXZxzF1wxt.jpg", "order": 5}, {"name": "John Saxon", "character": "Himself / Lt. Donald Thompson", "id": 11163, "credit_id": "52fe44639251416c75033059", "cast_id": 14, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 6}, {"name": "Jeff Davis", "character": "Freddy's Hand Double", "id": 161731, "credit_id": "52fe44639251416c7503305d", "cast_id": 15, "profile_path": "/21rAGEXH7xTgH1oFTomAFEl1fmx.jpg", "order": 7}, {"name": "Matt Winston", "character": "Charles 'Chuck' Wilson", "id": 35521, "credit_id": "52fe44639251416c75033061", "cast_id": 16, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 8}, {"name": "Rob LaBelle", "character": "Terrance 'Terry' Feinstein", "id": 42708, "credit_id": "52fe44639251416c75033065", "cast_id": 17, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 9}, {"name": "Marianne Maddalena", "character": "Herself", "id": 35581, "credit_id": "52fe44639251416c75033069", "cast_id": 18, "profile_path": "/bBMwURi3NuQsK4pSMq6tU2RwRT9.jpg", "order": 10}, {"name": "Gretchen Oehler", "character": "Script Supervisor", "id": 553772, "credit_id": "52fe44639251416c7503306d", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Cully Fredricksen", "character": "Limo Driver", "id": 553773, "credit_id": "52fe44639251416c75033071", "cast_id": 20, "profile_path": "/9gZds6fFcOXWHHiWxzhWGsBRsGU.jpg", "order": 12}, {"name": "Bodhi Elfman", "character": "TV Studio P.A.", "id": 154883, "credit_id": "52fe44639251416c75033075", "cast_id": 21, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 13}, {"name": "Sam Rubin", "character": "Himself", "id": 92568, "credit_id": "52fe44639251416c75033079", "cast_id": 22, "profile_path": "/ye0ek86xs5c372TlnvUQgwusloJ.jpg", "order": 14}, {"name": "Claudia Haro", "character": "New Line Receptionist", "id": 553774, "credit_id": "52fe44639251416c7503307d", "cast_id": 23, "profile_path": "/1XPYBTNuNVl01zjd19U4vZA4zqs.jpg", "order": 15}, {"name": "Sara Risher", "character": "Herself", "id": 13668, "credit_id": "52fe44639251416c75033081", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Robert Shaye", "character": "Himself", "id": 13663, "credit_id": "52fe44639251416c75033085", "cast_id": 25, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 17}, {"name": "Cindy Guidry", "character": "Kim at New Line", "id": 553775, "credit_id": "52fe44639251416c75033089", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Ray Glanzmann", "character": "Highway Patrolman", "id": 172525, "credit_id": "52fe44639251416c7503308d", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Yonda Davis", "character": "Highway Patrolwoman", "id": 188198, "credit_id": "52fe44639251416c75033091", "cast_id": 28, "profile_path": "/1K8vQiZjZl10RNuSiuKhxp9S9Qg.jpg", "order": 20}, {"name": "Michael Hagiwara", "character": "Coroner", "id": 204152, "credit_id": "52fe44639251416c75033095", "cast_id": 29, "profile_path": "/eZTBDByPTgiPlbBY2SS4kDRaxts.jpg", "order": 21}, {"name": "W. Earl Brown", "character": "Morgue Attendant", "id": 6951, "credit_id": "52fe44639251416c75033099", "cast_id": 30, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 22}, {"name": "Kenneth Zanchi", "character": "Minister", "id": 168289, "credit_id": "52fe44639251416c7503309d", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Jsu Garcia", "character": "Himself (as Nick Corri)", "id": 13657, "credit_id": "52fe44639251416c750330a1", "cast_id": 32, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 24}, {"name": "Tuesday Knight", "character": "Herself", "id": 63914, "credit_id": "52fe44649251416c750330a5", "cast_id": 33, "profile_path": "/vQNxbldn4g825XTJqqKqXMWF8xC.jpg", "order": 25}, {"name": "Beans Morocco", "character": "Graveyard Worker", "id": 154905, "credit_id": "52fe44649251416c750330a9", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Tamara Mark", "character": "Patrice Englund", "id": 553776, "credit_id": "52fe44649251416c750330ad", "cast_id": 35, "profile_path": "/bJvELDaATUTgvemUmPM8XpPmJon.jpg", "order": 27}, {"name": "Lin Shaye", "character": "Nurse with Pills", "id": 7401, "credit_id": "52fe44649251416c750330b1", "cast_id": 36, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 28}, {"name": "Deborah Zara Kobylt", "character": "Newscaster", "id": 553777, "credit_id": "52fe44649251416c750330b5", "cast_id": 37, "profile_path": null, "order": 29}, {"name": "Diane Nadeau", "character": "Counter Nurse", "id": 553778, "credit_id": "52fe44649251416c750330b9", "cast_id": 38, "profile_path": null, "order": 30}, {"name": "Star-Shemah Bobatoon", "character": "ICU Nurse", "id": 553779, "credit_id": "52fe44649251416c750330bd", "cast_id": 39, "profile_path": null, "order": 31}, {"name": "Lou Thornton", "character": "ICU Nurse", "id": 182556, "credit_id": "52fe44649251416c750330c1", "cast_id": 40, "profile_path": null, "order": 32}, {"name": "Cynthia Savage", "character": "ICU Nurse", "id": 553780, "credit_id": "52fe44649251416c750330c5", "cast_id": 41, "profile_path": null, "order": 33}, {"name": "Jessica Craven", "character": "Junior Nurse with Needle", "id": 553781, "credit_id": "52fe44649251416c750330c9", "cast_id": 42, "profile_path": null, "order": 34}, {"name": "Sandra Ellis Lafferty", "character": "Senior Nurse with Needle", "id": 427, "credit_id": "52fe44649251416c750330cd", "cast_id": 43, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 35}, {"name": "Thomas G. Burt", "character": "Security Officer", "id": 553782, "credit_id": "52fe44649251416c750330d1", "cast_id": 44, "profile_path": null, "order": 36}, {"name": "Tina Vail", "character": "Nurse Abbott", "id": 553783, "credit_id": "52fe44649251416c750330d5", "cast_id": 45, "profile_path": null, "order": 37}, {"name": "Kathryn Greenwood", "character": "Nurse in Hospital Room with Heather (uncredited)", "id": 162747, "credit_id": "52fe44649251416c750330d9", "cast_id": 46, "profile_path": "/os3zdHkFkdjseMXk6qXbvakelzj.jpg", "order": 38}, {"name": "Kevin Harrison", "character": "Hospital Intern (uncredited)", "id": 234423, "credit_id": "52fe44649251416c750330dd", "cast_id": 47, "profile_path": null, "order": 39}, {"name": "Amanda Wyss", "character": "Christina 'Tina' Grey (archive footage) (uncredited)", "id": 13656, "credit_id": "52fe44649251416c750330e1", "cast_id": 48, "profile_path": "/1HEqQELnhQ7NAC6unYqc4CQ1ib.jpg", "order": 40}, {"name": "Fran Bennett", "character": "Dr. Christine Heffner", "id": 1212018, "credit_id": "52fe44649251416c750330e5", "cast_id": 49, "profile_path": "/eRKURvGYgElPw4sQH36RUGRQdtg.jpg", "order": 41}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe44639251416c7503302f", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.3, "runtime": 112}, "173897": {"poster_path": "/4Aq3xUPDVbTr8AdU1mGcu5PgSc3.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Alice Abernathy (Milla Jovovich) continues her battle against The Umbrella Corporation's hostile AI system The Red Queen (Megan Charpentier) with the help of her friends Jill Valentine (Sienna Guillory), Leon Scott Kennedy (Johann Urb), Ada Wong (Li Bingbing), and her daughter Becky (Aryanna Engineer), while continuing an uneasy alliance with the former head of Umbrella, Albert Wesker (Shawn Roberts). Along the way, they will reconnect with former comrades Chris Redfield (Wentworth Miller), Claire Redfield (Ali Larter), and Kmart (Spencer Locke). Their epic battle will lead them back to where it all began in the dark mansion built by Umbrella founder Lord Ozwell E. Spencer and the deep underground research and development center known as The Hive, where The Red Queen plots total destruction over the human race.", "video": false, "id": 173897, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Rising", "tagline": "Back To The Hive", "vote_count": 331, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Planned", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2592614", "adult": false, "backdrop_path": null, "production_companies": [], "release_date": "2016-01-01", "popularity": 0.130049416787833, "original_title": "Resident Evil: Rising", "budget": 0, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe4d3ec3a36847f825674f", "cast_id": 5, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Wentworth Miller", "character": "Chris Redfield", "id": 3972, "credit_id": "53445d1ac3a36825a00003e9", "cast_id": 6, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 1}, {"name": "Ali Larter", "character": "Claire Redfield", "id": 17303, "credit_id": "53445d31c3a3682589000426", "cast_id": 7, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 2}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "53445d45c3a36825a80003b9", "cast_id": 8, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 3}, {"name": "Shawn Roberts", "character": "Albert Wesker (rumored)", "id": 81097, "credit_id": "53445d5dc3a36825b10003e2", "cast_id": 9, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 4}, {"name": "Johann Urb", "character": "Leon S. Kennedy", "id": 101017, "credit_id": "53445d73c3a36825a00003ee", "cast_id": 10, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 5}, {"name": "Li Bingbing", "character": "Ada Wong", "id": 109432, "credit_id": "54445de40e0a26633d00626b", "cast_id": 12, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 6}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4d3ec3a36847f8256739", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 6.1, "runtime": 0}, "12242": {"poster_path": "/pxGtt9XOdbFsGthxkGoceYcUccU.jpg", "production_countries": [{"iso_3166_1": "KZ", "name": "Kazakhstan"}, {"iso_3166_1": "MY", "name": "Malaysia"}, {"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "SG", "name": "Singapore"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Fa Mulan gets the surprise of her young life when her love, Captain Li Shang asks for her hand in marriage. Before the two can have their happily ever after, the Emperor assigns them a secret mission, to escort three princesses to Chang'an, China. Mushu is determined to drive a wedge between the couple after he learns that he will lose his guardian job if Mulan marries into the Li family.", "video": false, "id": 12242, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Mulan II", "tagline": "She's primped. She's engaged. She's back.", "vote_count": 82, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zruSw8cPMrB753gisLZcbHISS8x.jpg", "poster_path": "/1fjZKATXsAKvtO6uJqCiNL5u4mK.jpg", "id": 87236, "name": "Mulan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0279967", "adult": false, "backdrop_path": "/7qzlrqvvXvl4SYbjTErZ0x8uZxA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "SD Entertainment", "id": 29070}], "release_date": "2004-11-13", "popularity": 1.07045851392325, "original_title": "Mulan II", "budget": 0, "cast": [{"name": "Ming-Na Wen", "character": "Mulan", "id": 21702, "credit_id": "52fe44d29251416c750421f3", "cast_id": 11, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 0}, {"name": "BD Wong", "character": "Shang", "id": 14592, "credit_id": "52fe44d29251416c750421f7", "cast_id": 12, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 1}, {"name": "Mark Moseley", "character": "Mushu", "id": 71857, "credit_id": "52fe44d29251416c75042207", "cast_id": 15, "profile_path": "/24r86h395DfNLLjLCubQZzcV1yN.jpg", "order": 2}, {"name": "Lucy Liu", "character": "Mei", "id": 140, "credit_id": "52fe44d29251416c7504220b", "cast_id": 16, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 3}, {"name": "Harvey Fierstein", "character": "Yao", "id": 7420, "credit_id": "52fe44d29251416c7504220f", "cast_id": 17, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 4}, {"name": "Sandra Oh", "character": "Ting Ting", "id": 25540, "credit_id": "52fe44d29251416c75042213", "cast_id": 18, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 5}, {"name": "Gedde Watanabe", "character": "Ling", "id": 16183, "credit_id": "52fe44d29251416c75042217", "cast_id": 19, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 6}, {"name": "Lauren Tom", "character": "Su", "id": 15100, "credit_id": "52fe44d29251416c7504221b", "cast_id": 20, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 7}, {"name": "Pat Morita", "character": "The Emperor", "id": 23915, "credit_id": "52fe44d29251416c7504221f", "cast_id": 21, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 8}, {"name": "George Takei", "character": "First Ancestor", "id": 1752, "credit_id": "52fe44d29251416c75042223", "cast_id": 22, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 9}, {"name": "June Foray", "character": "Grandmother Fa", "id": 15098, "credit_id": "52fe44d29251416c75042227", "cast_id": 23, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 10}, {"name": "Freda Foh Shen", "character": "Fa Li", "id": 51754, "credit_id": "52fe44d29251416c7504222b", "cast_id": 24, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 11}, {"name": "Frank Welker", "character": "Cri-Kee", "id": 15831, "credit_id": "52fe44d29251416c7504222f", "cast_id": 25, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 12}, {"name": "Soon-Tek Oh", "character": "Fa Zhou", "id": 10345, "credit_id": "52fe44d29251416c75042233", "cast_id": 26, "profile_path": "/6ZNOhKG5ZhqVhVb3qbdZSZ1np65.jpg", "order": 13}, {"name": "Jeff Bennett", "character": "Additional Voices", "id": 34982, "credit_id": "52fe44d29251416c75042237", "cast_id": 27, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 14}, {"name": "Tress MacNeille", "character": "Additional Voices", "id": 34983, "credit_id": "52fe44d29251416c7504223b", "cast_id": 28, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 15}, {"name": "Jerry Tondo", "character": "Chien-Po", "id": 71858, "credit_id": "52fe44d29251416c7504223f", "cast_id": 29, "profile_path": "/ui6AU4y7GrlDwNLgN46kRcKppf7.jpg", "order": 16}, {"name": "Liliana Mumy", "character": "Additional Voices", "id": 71861, "credit_id": "52fe44d29251416c75042243", "cast_id": 30, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 17}, {"name": "Jillian Henry", "character": "Sha-Ron", "id": 71859, "credit_id": "52fe44d29251416c75042247", "cast_id": 31, "profile_path": "/dgi8WOJ9RN0aDZf0N0i0SPf4k38.jpg", "order": 18}, {"name": "Michelle Kwan", "character": "Additional Voices", "id": 71860, "credit_id": "52fe44d29251416c7504224b", "cast_id": 32, "profile_path": "/gZKCxlXU18BP5nStXlEVZatCVrC.jpg", "order": 19}], "directors": [{"name": "Darrell Rooney", "department": "Directing", "job": "Director", "credit_id": "52fe44d29251416c750421b9", "profile_path": null, "id": 58829}, {"name": "Lynne Southerland", "department": "Directing", "job": "Director", "credit_id": "52fe44d29251416c750421d7", "profile_path": null, "id": 71849}], "vote_average": 5.7, "runtime": 79}, "12244": {"poster_path": "/iGMOQt6R88ZuJRtlfpqWRa5268h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31749894, "overview": "When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.", "video": false, "id": 12244, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "9", "tagline": "When our world ended their mission began.", "vote_count": 513, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472033", "adult": false, "backdrop_path": "/jTki4a30PUskfGtOFx6PgYr74H7.jpg", "production_companies": [{"name": "Tim Burton Productions", "id": 8601}, {"name": "Focus Films", "id": 1268}, {"name": "Relativity Media", "id": 7295}, {"name": "Arc Productions", "id": 10280}, {"name": "Starz Animation", "id": 2885}], "release_date": "2009-08-19", "popularity": 1.07255565570476, "original_title": "9", "budget": 30000000, "cast": [{"name": "Elijah Wood", "character": "9 (voice)", "id": 109, "credit_id": "52fe44d29251416c750422cf", "cast_id": 4, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "John C. Reilly", "character": "5 (voice)", "id": 4764, "credit_id": "52fe44d29251416c750422d3", "cast_id": 5, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "7 (voice)", "id": 6161, "credit_id": "52fe44d29251416c750422d7", "cast_id": 6, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "1 (voice)", "id": 290, "credit_id": "52fe44d29251416c750422db", "cast_id": 7, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "Crispin Glover", "character": "6 (voice)", "id": 1064, "credit_id": "52fe44d29251416c750422df", "cast_id": 8, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 4}, {"name": "Martin Landau", "character": "2 (voice)", "id": 2641, "credit_id": "52fe44d29251416c750422e3", "cast_id": 9, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 5}, {"name": "Fred Tatasciore", "character": "8 (voice)", "id": 60279, "credit_id": "52fe44d29251416c750422e7", "cast_id": 10, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 6}, {"name": "Alan Oppenheimer", "character": "Scientist (voice)", "id": 24320, "credit_id": "547de6afc3a3685aed0065be", "cast_id": 43, "profile_path": "/va1bmZNM4A7OuRGtVcr7LXO7Of.jpg", "order": 7}, {"name": "Tom Kane", "character": "Dictator (voice)", "id": 71535, "credit_id": "547de6f0c3a3685afd005e51", "cast_id": 44, "profile_path": "/hAyEHNuhD6PqbPdCNR7iUyM271I.jpg", "order": 8}, {"name": "Helen Wilson", "character": "News Caster (voice)", "id": 1393025, "credit_id": "547de7339251412d780059ee", "cast_id": 45, "profile_path": null, "order": 9}], "directors": [{"name": "Shane Acker", "department": "Directing", "job": "Director", "credit_id": "52fe44d29251416c750422bf", "profile_path": "/gg1UJKKV8h10lro2OxzCeThAHOv.jpg", "id": 71923}], "vote_average": 6.4, "runtime": 79}, "102362": {"poster_path": "/sPiBN42QNVGVlnHVf1nrigiu6TP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18074539, "overview": "In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.", "video": false, "id": 102362, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Dead Man Down", "tagline": "Blood demands blood", "vote_count": 360, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sq", "name": "shqip"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2101341", "adult": false, "backdrop_path": "/5Pe5Y4FHukgrtq504VbssxPmEVa.jpg", "production_companies": [{"name": "Original Film", "id": 333}], "release_date": "2013-03-08", "popularity": 1.20660824944983, "original_title": "Dead Man Down", "budget": 0, "cast": [{"name": "Colin Farrell", "character": "Victor", "id": 72466, "credit_id": "52fe4a07c3a36847f81b4551", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Beatrice", "id": 87722, "credit_id": "52fe4a07c3a36847f81b4555", "cast_id": 2, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Terrence Howard", "character": "Alphonse", "id": 18288, "credit_id": "52fe4a07c3a36847f81b4599", "cast_id": 14, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 2}, {"name": "Dominic Cooper", "character": "Darcy", "id": 55470, "credit_id": "52fe4a07c3a36847f81b4595", "cast_id": 13, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 3}, {"name": "Raw Leiba", "character": "Toilet Guy", "id": 226112, "credit_id": "52fe4a07c3a36847f81b45a1", "cast_id": 16, "profile_path": "/oWh4169YdntzJpfG7JhIX5Sp9xN.jpg", "order": 4}, {"name": "Raymond Mamrak", "character": "NYPD Officer Daniels", "id": 1106629, "credit_id": "52fe4a07c3a36847f81b45a5", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Franky G", "character": "Luco", "id": 2682, "credit_id": "52fe4a07c3a36847f81b45a9", "cast_id": 18, "profile_path": "/2C6BTj03PQlbCIzb1zAv9gcMr5l.jpg", "order": 6}, {"name": "Jennifer Mudge", "character": "Florence", "id": 155134, "credit_id": "52fe4a07c3a36847f81b45ad", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Jennifer Butler", "character": "Jeep Driver", "id": 118941, "credit_id": "52fe4a07c3a36847f81b45b1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Isabelle Huppert", "character": "Valentine Louzon", "id": 17882, "credit_id": "52fe4a07c3a36847f81b45b5", "cast_id": 22, "profile_path": "/nrbXaDh5zQEi2G7T5OILInm3f9p.jpg", "order": 9}, {"name": "Armand Assante", "character": "", "id": 23346, "credit_id": "52fe4a07c3a36847f81b459d", "cast_id": 15, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 10}, {"name": "Stuart Bennett", "character": "", "id": 565426, "credit_id": "52fe4a07c3a36847f81b45b9", "cast_id": 23, "profile_path": "/7kxaHMxoNLOANQblVuGpHQxxb3R.jpg", "order": 11}, {"name": "Luis Da Silva Jr.", "character": "Terry", "id": 37149, "credit_id": "52fe4a07c3a36847f81b45bd", "cast_id": 24, "profile_path": "/6VADPoVvQTFqiFhmHMJovneXX26.jpg", "order": 12}, {"name": "Declan Mulvey", "character": "Goff", "id": 61329, "credit_id": "52fe4a07c3a36847f81b45c1", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "John Cenatiempo", "character": "Charles", "id": 206398, "credit_id": "53ecced6c3a368168f00003f", "cast_id": 49, "profile_path": "/wUkUgFzXLEPnyegeWO3HK0w9Gyg.jpg", "order": 14}, {"name": "Roy James Wilson", "character": "Blotto", "id": 1272973, "credit_id": "52fe4a07c3a36847f81b45c9", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Myles Humphus", "character": "Lance", "id": 1272974, "credit_id": "52fe4a07c3a36847f81b45cd", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Stephen Hill", "character": "Roland", "id": 1085150, "credit_id": "52fe4a07c3a36847f81b45d1", "cast_id": 29, "profile_path": "/LMi49EyD1LPCnfDT0mbyOfFQAy.jpg", "order": 17}, {"name": "Aaron Vexler", "character": "Paul", "id": 1045964, "credit_id": "52fe4a07c3a36847f81b45d5", "cast_id": 30, "profile_path": "/yBzhpya88GGOdD6WG8YmwKHIFWq.jpg", "order": 18}, {"name": "James Biberi", "character": "Ilir", "id": 37156, "credit_id": "52fe4a07c3a36847f81b45d9", "cast_id": 31, "profile_path": "/vgkESTjzqdFsbkzGhDPcIDEcTAq.jpg", "order": 19}, {"name": "F. Murray Abraham", "character": "Gregor", "id": 1164, "credit_id": "52fe4a07c3a36847f81b45dd", "cast_id": 32, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 20}, {"name": "Andrew Stewart-Jones", "character": "Harry", "id": 80001, "credit_id": "52fe4a07c3a36847f81b45e1", "cast_id": 33, "profile_path": "/ez0PyljVu62j17jhMHpL0MbfgU4.jpg", "order": 21}, {"name": "Krystal Tini", "character": "Harry's Girl", "id": 1167280, "credit_id": "52fe4a07c3a36847f81b45e5", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "William Zielinski", "character": "Alex", "id": 1272975, "credit_id": "52fe4a07c3a36847f81b45e9", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Jessica Jean Wilson", "character": "Alex's Girl", "id": 1272976, "credit_id": "52fe4a07c3a36847f81b45ed", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Christopher Cline", "character": "Doctor", "id": 1272977, "credit_id": "52fe4a07c3a36847f81b45f1", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Beata Dalton", "character": "Anka", "id": 1272978, "credit_id": "52fe4a07c3a36847f81b45f5", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Accalia Quintana", "character": "Delphine", "id": 1272979, "credit_id": "52fe4a07c3a36847f81b45f9", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Maria Laboy", "character": "Matilde", "id": 1272980, "credit_id": "52fe4a07c3a36847f81b45fd", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Saul Stein", "character": "Andras", "id": 1187, "credit_id": "52fe4a07c3a36847f81b4601", "cast_id": 41, "profile_path": "/ue2OdxwhFGpFbYz5W5ZGiX08lIO.jpg", "order": 29}, {"name": "Roy Milton Davis", "character": "Derelict", "id": 203757, "credit_id": "52fe4a07c3a36847f81b4605", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Ante Novakovic", "character": "Peter", "id": 1272981, "credit_id": "52fe4a07c3a36847f81b4609", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Kresh Novakovic", "character": "Carl", "id": 1179646, "credit_id": "52fe4a07c3a36847f81b460d", "cast_id": 44, "profile_path": "/4s4esdeedxzItDn0IY2Kq8FPZ4V.jpg", "order": 32}], "directors": [{"name": "Niels Arden Oplev", "department": "Directing", "job": "Director", "credit_id": "52fe4a07c3a36847f81b455b", "profile_path": "/kC0qwxbWkZkWC3zT8w8x6xatHq1.jpg", "id": 19346}], "vote_average": 5.6, "runtime": 118}, "20453": {"poster_path": "/wbE5SRTZFtQxgj2nIo4HJpQDk0k.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}], "revenue": 70000000, "overview": "In the tradition of \u201cFerris Bueller\u2019s Day Off\u201d comes this refreshing comedy about a rebellious prankster with a crafty mind and a heart of gold. Rascal. Joker. Dreamer. Genius... You've never met a college student quite like \"Rancho.\" From the moment he arrives at India's most prestigious university, Rancho's outlandish schemes turn the campus upside down\u2014along with the lives of his two newfound best friends. Together, they make life miserable for \"Virus,\" the school\u2019s uptight and heartless dean. But when Rancho catches the eye of the dean's sexy daughter, Virus sets his sights on flunking out the \"3 idiots\" once and for all.", "video": false, "id": 20453, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "3 Idiots", "tagline": "", "vote_count": 505, "homepage": "http://idiotsacademy.zapak.com/idiotsmain.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt1187043", "adult": false, "backdrop_path": "/6LnwpadKFRrqam7IfBAi3lNTz6Y.jpg", "production_companies": [{"name": "Vidhu Vinod Chopra Productions", "id": 3781}], "release_date": "2009-12-25", "popularity": 0.469431072926887, "original_title": "3 Idiots", "budget": 9000000, "cast": [{"name": "Aamir Khan", "character": "Rancho", "id": 52763, "credit_id": "52fe43e7c3a368484e004fdf", "cast_id": 5, "profile_path": "/jYohlUVkLPFdnDryZ8V1HZkJzDt.jpg", "order": 0}, {"name": "Kareena Kapoor", "character": "Pia", "id": 37233, "credit_id": "52fe43e7c3a368484e004fe3", "cast_id": 6, "profile_path": "/kDYeBENXcVKfHJjSHlciNCLmtrG.jpg", "order": 1}, {"name": "Madhavan", "character": "Farhan", "id": 85519, "credit_id": "52fe43e7c3a368484e004fe7", "cast_id": 7, "profile_path": "/jxqEx4Ii9aYx7kkkz1Mx7FWrjCt.jpg", "order": 2}, {"name": "Sharman Joshi", "character": "Raju", "id": 53674, "credit_id": "52fe43e7c3a368484e004feb", "cast_id": 8, "profile_path": "/lasmei1SoWkSZxWQtNh2bI10T2H.jpg", "order": 3}, {"name": "Boman Irani", "character": "Viru Sahastrabudhhe", "id": 35779, "credit_id": "52fe43e7c3a368484e004fef", "cast_id": 9, "profile_path": "/ybhFam8adUpWz3Re49T8uDm8DcT.jpg", "order": 4}, {"name": "Mona Singh", "character": "Mona", "id": 99711, "credit_id": "52fe43e7c3a368484e004ff3", "cast_id": 10, "profile_path": "/7TwENHIMjKZO6wYTVGy9nqhVYLZ.jpg", "order": 5}, {"name": "Omi Vaidya", "character": "Chatur Ramalingam", "id": 169201, "credit_id": "52fe43e7c3a368484e004ff7", "cast_id": 11, "profile_path": "/jMsHqlrz41ZpD7REys78ZaCTM3U.jpg", "order": 6}], "directors": [{"name": "Rajkumar Hirani", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a368484e004fcf", "profile_path": null, "id": 85675}], "vote_average": 7.7, "runtime": 170}, "8871": {"poster_path": "/yxrcPwWcc640w8o6PLKpjtLwd7a.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 345141403, "overview": "Inside a snowflake exists the magical land of Whoville. In Whoville, live the Whos, an almost mutated sort of Munchkin-like people. All the Whos love Christmas, yet just outside of their beloved Whoville lives the Grinch. The Grinch is a nasty creature that hates Christmas, and plots to steal it away from the Whos, whom he equally abhors. Yet a small child, Cindy Lou Who, decides to try befriend the Grinch.", "video": false, "id": 8871, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "How the Grinch Stole Christmas", "tagline": "He puts the mean in green.", "vote_count": 285, "homepage": "http://www.grinched.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0170016", "adult": false, "backdrop_path": "/wWPJpoCGNq3cDYbFqPTWtvJSzqs.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2000-11-17", "popularity": 1.23786994171117, "original_title": "How the Grinch Stole Christmas", "budget": 123000000, "cast": [{"name": "Jim Carrey", "character": "Grinch", "id": 206, "credit_id": "52fe44c2c3a36847f80a868f", "cast_id": 11, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Taylor Momsen", "character": "Cindy Lou Who", "id": 20480, "credit_id": "52fe44c2c3a36847f80a8693", "cast_id": 12, "profile_path": "/aQWKBAOVMV39bT3IhzdOtXQxTvr.jpg", "order": 1}, {"name": "Jeffrey Tambor", "character": "Mayor Augustus Maywho", "id": 4175, "credit_id": "52fe44c2c3a36847f80a8697", "cast_id": 13, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 2}, {"name": "Christine Baranski", "character": "Martha May Whovier", "id": 11870, "credit_id": "52fe44c2c3a36847f80a869b", "cast_id": 14, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 3}, {"name": "Bill Irwin", "character": "Lou Lou Who", "id": 58549, "credit_id": "52fe44c2c3a36847f80a869f", "cast_id": 15, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 4}, {"name": "Molly Shannon", "character": "Betty Lout Who", "id": 28640, "credit_id": "52fe44c2c3a36847f80a86a3", "cast_id": 16, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 5}, {"name": "Clint Howard", "character": "Whobris", "id": 15661, "credit_id": "52fe44c2c3a36847f80a86a7", "cast_id": 17, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 6}, {"name": "Josh Ryan Evans", "character": "8-Year-Old Grinch", "id": 167661, "credit_id": "52fe44c2c3a36847f80a86ab", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Mindy Sterling", "character": "Clarnella", "id": 13924, "credit_id": "52fe44c2c3a36847f80a86af", "cast_id": 19, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 8}, {"name": "Rachel Winfree", "character": "Rose", "id": 155983, "credit_id": "52fe44c2c3a36847f80a86b3", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Rance Howard", "character": "Elderly Timekeeper", "id": 22250, "credit_id": "53832c10c3a36805a100845a", "cast_id": 27, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 10}, {"name": "Jeremy Howard", "character": "Drew Lou Who", "id": 15034, "credit_id": "52fe44c2c3a36847f80a86bb", "cast_id": 22, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 11}, {"name": "T. J. Thyne", "character": "Stu Lou Who", "id": 151263, "credit_id": "52fe44c2c3a36847f80a86bf", "cast_id": 23, "profile_path": "/giBl5eCVMhitbZ89iLRqoBDCbN7.jpg", "order": 12}, {"name": "Lacey Kohl", "character": "Christina Whoterberry", "id": 168415, "credit_id": "52fe44c2c3a36847f80a86c3", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Nadja Pionilla", "character": "Junie", "id": 239979, "credit_id": "52fe44c2c3a36847f80a86c7", "cast_id": 25, "profile_path": null, "order": 14}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a8655", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 5.9, "runtime": 104}, "77805": {"poster_path": "/uLlZjHh3P7ZopetmRr7ar3TYIQ0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Story of Linda Lovelace, who is used and abused by the porn industry at the behest of her coercive husband, before taking control of her life.", "video": false, "id": 77805, "genres": [{"id": 18, "name": "Drama"}], "title": "Lovelace", "tagline": "The truth goes deeper than you think.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1426329", "adult": false, "backdrop_path": "/4z77i6kxomsphwdSbksCKFeWnJZ.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Helios-Filmproduktion", "id": 2123}, {"name": "Animus Films", "id": 4135}], "release_date": "2013-08-09", "popularity": 0.637139497382797, "original_title": "Lovelace", "budget": 10000000, "cast": [{"name": "Amanda Seyfried", "character": "Linda Lovelace", "id": 71070, "credit_id": "52fe497dc3a368484e12df3b", "cast_id": 1, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Peter Sarsgaard", "character": "Chuck Traynor", "id": 133, "credit_id": "52fe497dc3a368484e12df7b", "cast_id": 16, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 1}, {"name": "Hank Azaria", "character": "Jerry Damiano", "id": 5587, "credit_id": "52fe497dc3a368484e12df6b", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 2}, {"name": "Adam Brody", "character": "Harry Reems", "id": 11702, "credit_id": "52fe497dc3a368484e12df83", "cast_id": 19, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "James Franco", "character": "Hugh Hefner", "id": 17051, "credit_id": "52fe497dc3a368484e12df67", "cast_id": 10, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 4}, {"name": "Sharon Stone", "character": "Dorothy Boreman", "id": 4430, "credit_id": "52fe497dc3a368484e12df77", "cast_id": 15, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 5}, {"name": "Wes Bentley", "character": "Larry Marchiano", "id": 8210, "credit_id": "52fe497dc3a368484e12df63", "cast_id": 9, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 6}, {"name": "Juno Temple", "character": "Patsy", "id": 36594, "credit_id": "52fe497dc3a368484e12df6f", "cast_id": 12, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 7}, {"name": "Chlo\u00eb Sevigny", "character": "Rebecca", "id": 2838, "credit_id": "52fe497dc3a368484e12df73", "cast_id": 13, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 8}, {"name": "Eric Roberts", "character": "Nat Laurendi", "id": 21315, "credit_id": "52fe497dc3a368484e12df7f", "cast_id": 17, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 9}, {"name": "Bobby Cannavale", "character": "Butchie Peraino", "id": 21127, "credit_id": "52fe497dc3a368484e12df87", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 10}, {"name": "Robert Patrick", "character": "John J. Boreman", "id": 418, "credit_id": "52fe497dc3a368484e12df8b", "cast_id": 21, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 11}, {"name": "Chris Noth", "character": "Anthony Romano", "id": 38026, "credit_id": "52fe497dc3a368484e12dffb", "cast_id": 40, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 12}, {"name": "Debi Mazar", "character": "Dolly", "id": 5578, "credit_id": "52fe497dc3a368484e12dfff", "cast_id": 41, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 13}], "directors": [{"name": "Rob Epstein", "department": "Directing", "job": "Director", "credit_id": "52fe497dc3a368484e12df41", "profile_path": null, "id": 109402}, {"name": "Jeffrey Friedman", "department": "Directing", "job": "Director", "credit_id": "52fe497dc3a368484e12df47", "profile_path": null, "id": 109403}], "vote_average": 6.1, "runtime": 92}, "102382": {"poster_path": "/mUjWof8LHDgCZC9mFp0UYKBf1Dm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 705717432, "overview": "For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen\u2019s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.", "video": false, "id": 102382, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Amazing Spider-Man 2", "tagline": "No more secrets.", "vote_count": 1446, "homepage": "http://www.theamazingspiderman.com", "belongs_to_collection": {"backdrop_path": "/aLrNTcLN2kDu9jAJ4tS5haiWGc6.jpg", "poster_path": "/moNJa86FgDYy8SWeDym2gnsLLMa.jpg", "id": 125574, "name": "The Amazing Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1872181", "adult": false, "backdrop_path": "/tmFDgDmrdp5DYezwpL0ymQKIbnV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures", "id": 34}], "release_date": "2014-05-02", "popularity": 3.54534796320673, "original_title": "The Amazing Spider-Man 2", "budget": 200000000, "cast": [{"name": "Andrew Garfield", "character": "Spider-Man / Peter Parker", "id": 37625, "credit_id": "52fe4a07c3a36847f81b477b", "cast_id": 3, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 0}, {"name": "Emma Stone", "character": "Gwen Stacy", "id": 54693, "credit_id": "52fe4a07c3a36847f81b4777", "cast_id": 2, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Jamie Foxx", "character": "Electro / Max Dillon", "id": 134, "credit_id": "52fe4a07c3a36847f81b4783", "cast_id": 6, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 2}, {"name": "Dane DeHaan", "character": "Green Goblin / Harry Osborn", "id": 122889, "credit_id": "52fe4a07c3a36847f81b477f", "cast_id": 5, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 3}, {"name": "Colm Feore", "character": "Donald Menken", "id": 10132, "credit_id": "52fe4a07c3a36847f81b4793", "cast_id": 10, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 4}, {"name": "Felicity Jones", "character": "Felicia", "id": 72855, "credit_id": "52fe4a07c3a36847f81b478f", "cast_id": 9, "profile_path": "/gU3lCDCdiY1uAVGFFyTcSQ3M7E8.jpg", "order": 5}, {"name": "Paul Giamatti", "character": "Aleksei Sytsevich", "id": 13242, "credit_id": "52fe4a07c3a36847f81b478b", "cast_id": 8, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 6}, {"name": "Sally Field", "character": "Aunt May", "id": 35, "credit_id": "52fe4a07c3a36847f81b47d3", "cast_id": 22, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 7}, {"name": "Embeth Davidtz", "character": "Mary Parker", "id": 6368, "credit_id": "5339838b9251417da1004a01", "cast_id": 31, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 8}, {"name": "Campbell Scott", "character": "Richard Parker", "id": 55152, "credit_id": "5362ab130e0a261dfe000318", "cast_id": 32, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 9}, {"name": "Marton Csokas", "character": "Dr. Ashley Kafka", "id": 20982, "credit_id": "52fe4a07c3a36847f81b47e9", "cast_id": 27, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 10}, {"name": "Louis Cancelmi", "character": "Man in Black Suit", "id": 163731, "credit_id": "5362ab540e0a261df8000372", "cast_id": 33, "profile_path": "/nBKho9ainr5j8Sn8FH1L96w4wxX.jpg", "order": 11}, {"name": "Max Charles", "character": "Young Peter Parker", "id": 558928, "credit_id": "5362ab600e0a261e0600033f", "cast_id": 34, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 12}, {"name": "Sarah Gadon", "character": "Kari", "id": 190895, "credit_id": "5362ab6b0e0a261e1600033e", "cast_id": 35, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 14}, {"name": "Stan Lee", "character": "Graduation Guest", "id": 7624, "credit_id": "5362abfe0e0a261dfb000381", "cast_id": 36, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 15}, {"name": "Chris Cooper", "character": "Norman Osborn", "id": 2955, "credit_id": "52fe4a07c3a36847f81b47d7", "cast_id": 23, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 16}, {"name": "Frank Deal", "character": "Agent Berkley", "id": 171886, "credit_id": "52fe4a07c3a36847f81b47e5", "cast_id": 26, "profile_path": "/k0Gn9ZgMuUQ0jFeVuvK6Vyh14ZU.jpg", "order": 17}, {"name": "Denis Leary", "character": "Captain Stacy", "id": 5724, "credit_id": "52fe4a07c3a36847f81b47e1", "cast_id": 25, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 18}, {"name": "Martin Sheen", "character": "Uncle Ben", "id": 8349, "credit_id": "52fe4a07c3a36847f81b4787", "cast_id": 7, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 19}, {"name": "Chris Zylka", "character": "Flash Thompson", "id": 231547, "credit_id": "52fe4a07c3a36847f81b47ed", "cast_id": 28, "profile_path": "/t1fXLPQccNXSEEabN6ORLKq8tnb.jpg", "order": 20}, {"name": "B. J. Novak", "character": "Allistar Smythe", "id": 107770, "credit_id": "54bc03f3c3a3687c40002139", "cast_id": 118, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 21}], "directors": [{"name": "Marc Webb", "department": "Directing", "job": "Director", "credit_id": "52fe4a07c3a36847f81b4773", "profile_path": "/7uFlVK5BDTjk6IK9iBCmfrdaAs6.jpg", "id": 87742}], "vote_average": 6.8, "runtime": 142}, "8872": {"poster_path": "/ttv6BA0DOes1zXMnQSNXTGeGkdJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 121697323, "overview": "When a sleazy TV exec offers Wayne and Garth a fat contract to tape their late-night public access show at his network, they can't believe their good fortune. But they soon discover the road from basement to big-time is a gnarly one, fraught with danger, temptation and ragin' party opportunities.", "video": false, "id": 8872, "genres": [{"id": 35, "name": "Comedy"}], "title": "Wayne's World", "tagline": "You'll laugh. You'll cry. You'll hurl.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o0FVB2mVYTIjTuu89tW98QGzZzi.jpg", "poster_path": "/jA5fypLkiICd3BmWYIEh6uuMB1y.jpg", "id": 8979, "name": "Wayne's World Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105793", "adult": false, "backdrop_path": "/oYV7W4MAJGxI1hPcWr95IwPtmAt.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1992-02-14", "popularity": 0.258955934170197, "original_title": "Wayne's World", "budget": 20000000, "cast": [{"name": "Mike Myers", "character": "Wayne Campbell", "id": 12073, "credit_id": "52fe44c2c3a36847f80a8701", "cast_id": 1, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Dana Carvey", "character": "Garth Algar", "id": 56159, "credit_id": "52fe44c2c3a36847f80a8705", "cast_id": 2, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 1}, {"name": "Rob Lowe", "character": "Benjamin Kane", "id": 2879, "credit_id": "52fe44c2c3a36847f80a8709", "cast_id": 3, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 2}, {"name": "Tia Carrere", "character": "Cassandra", "id": 13445, "credit_id": "52fe44c2c3a36847f80a870d", "cast_id": 4, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 3}, {"name": "Lara Flynn Boyle", "character": "Stacy", "id": 6684, "credit_id": "52fe44c2c3a36847f80a8711", "cast_id": 5, "profile_path": "/m6yHSVEjItgFkMAKB3zOdOoLITy.jpg", "order": 4}, {"name": "Chris Farley", "character": "Security Guard", "id": 58198, "credit_id": "52fe44c2c3a36847f80a8751", "cast_id": 16, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 5}, {"name": "Brian Doyle-Murray", "character": "Noah Vanderhoff", "id": 1535, "credit_id": "52fe44c2c3a36847f80a8755", "cast_id": 17, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 6}, {"name": "Donna Dixon", "character": "Dreamwoman", "id": 56933, "credit_id": "52fe44c2c3a36847f80a8759", "cast_id": 18, "profile_path": "/ayVQ8wBWBZGq4Ki9ED9gDznAEbm.jpg", "order": 7}, {"name": "Meat Loaf", "character": "Tiny", "id": 7470, "credit_id": "52fe44c2c3a36847f80a875d", "cast_id": 19, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Bad Cop / T-1000", "id": 418, "credit_id": "52fe44c2c3a36847f80a8761", "cast_id": 20, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Alice Cooper", "character": "Himself", "id": 35824, "credit_id": "52fe44c2c3a36847f80a8765", "cast_id": 21, "profile_path": "/Aj964wqD6ItA2rwSBKlgl0kzuGf.jpg", "order": 10}, {"name": "Ed O'Neill", "character": "Glen", "id": 18977, "credit_id": "52fe44c2c3a36847f80a8769", "cast_id": 22, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 11}, {"name": "Colleen Camp", "character": "Mrs. Vanderhoff", "id": 13023, "credit_id": "52fe44c2c3a36847f80a876d", "cast_id": 23, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 12}, {"name": "Lee Tergesen", "character": "Terry", "id": 6906, "credit_id": "5323fe12c3a3683dbf0004d4", "cast_id": 24, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 13}, {"name": "Kurt Fuller", "character": "Russell Finley", "id": 29685, "credit_id": "53e8ff610e0a266f9700454d", "cast_id": 25, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 14}, {"name": "Mike Hagerty", "character": "Davy", "id": 15105, "credit_id": "54efb821c3a3682e710000b2", "cast_id": 26, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 15}], "directors": [{"name": "Penelope Spheeris", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a8717", "profile_path": "/6MiXfO2EdA0keiJf0RmGNfLTvAc.jpg", "id": 58448}], "vote_average": 6.6, "runtime": 94}, "126963": {"poster_path": "/xI5LlCzSkp8iFSbmla0Dh4iT5ie.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. Wiss, the God of Creation, along with Bills, the God of Destruction, are tasked with maintaining some sort of balance in the universe. After awakening from a long slumber, Bills is visited by Wiss and he learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Bills, but he is easily overwhelmed and defeated. Bills leaves, but his eerie remark of \"Is there nobody on Earth more worthy to destroy?\" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.", "video": false, "id": 126963, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}], "title": "Dragon Ball Z: Battle of Gods", "tagline": "", "vote_count": 111, "homepage": "http://www.dragonball2013.com/", "belongs_to_collection": {"backdrop_path": "/qSb5nFCvBwvaOZBCdCfr382iopT.jpg", "poster_path": "/9y5zvzzMXqgvorvKMzLju9cPGA3.jpg", "id": 39099, "name": "Dragon Ball Saga"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2263944", "adult": false, "backdrop_path": "/xKVE8ZsNUBBI0sE4Vpv8yv6DsPZ.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Toei Animation Company", "id": 3116}, {"name": "Yasahi-Mation Productions", "id": 50411}], "release_date": "2013-03-30", "popularity": 0.854959313310066, "original_title": "\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30ebZ \u795e\u3068\u795e", "budget": 0, "cast": [{"name": "Masako Nozawa", "character": "Son Goku / Son Gohan / Son Goten / Gotenks", "id": 90496, "credit_id": "52fe4aecc3a368484e16e03b", "cast_id": 5, "profile_path": "/5vf5AbB3ElUrkhSgSJxsBvTfyH5.jpg", "order": 0}, {"name": "Toshio Furukawa", "character": "Piccolo", "id": 129961, "credit_id": "52fe4aecc3a368484e16e047", "cast_id": 8, "profile_path": "/ZgWhKSebhi4kRAra2CLMCrVkb6.jpg", "order": 3}, {"name": "K\u00f4ichi Yamadera", "character": "Bills", "id": 40328, "credit_id": "52fe4aecc3a368484e16e04b", "cast_id": 9, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 4}, {"name": "Masakazu Morita", "character": "Whis", "id": 78402, "credit_id": "52fe4aecc3a368484e16e04f", "cast_id": 10, "profile_path": "/mJMY7VacWIrFEqjo55HTZlhCN9.jpg", "order": 5}, {"name": "Sh\u00f4ko Nakagawa", "character": "Oracle Fish", "id": 1024388, "credit_id": "52fe4aecc3a368484e16e053", "cast_id": 11, "profile_path": "/8PH42jePxuuCjo5yolE1Z8alOOX.jpg", "order": 6}, {"name": "J\u00f4ji Yanami", "character": "Kaio / Dr. Briefs / Narrator", "id": 619, "credit_id": "52fe4aecc3a368484e16e057", "cast_id": 12, "profile_path": "/6PgJcEz2RgGcZ1TwfkIIuhrUaXz.jpg", "order": 7}, {"name": "Kenji Utsumi", "character": "Shenlong", "id": 83930, "credit_id": "52fe4aecc3a368484e16e05b", "cast_id": 13, "profile_path": "/beAQh6z1knAxOxzdDOwbaZpbhLK.jpg", "order": 8}, {"name": "Mayumi Tanaka", "character": "Kuririn", "id": 65510, "credit_id": "52fe4aecc3a368484e16e05f", "cast_id": 14, "profile_path": "/rGUGLXCbdEb3KO7lRmLg0szNn4k.jpg", "order": 9}, {"name": "T\u014dru Furuya", "character": "Yamcha", "id": 40327, "credit_id": "52fe4aecc3a368484e16e063", "cast_id": 15, "profile_path": "/9fuENGDDd6C30IudobBV8uh2XaK.jpg", "order": 10}, {"name": "Hikaru Midorikawa", "character": "Tenshinhan", "id": 122726, "credit_id": "52fe4aecc3a368484e16e067", "cast_id": 16, "profile_path": "/67LlDJlFDeIrZlI4o6IM23fG7Tr.jpg", "order": 11}, {"name": "K\u014dz\u014d Shioya", "character": "Majin Buu", "id": 100126, "credit_id": "52fe4aecc3a368484e16e06b", "cast_id": 17, "profile_path": "/pfIah5nRldMMsCdS79Ff5l40cIC.jpg", "order": 12}, {"name": "Shigeru Chiba", "character": "Pilaf", "id": 105816, "credit_id": "52fe4aecc3a368484e16e06f", "cast_id": 18, "profile_path": "/23GASkx3cOtzgtBkrDTj44nbpVg.jpg", "order": 13}, {"name": "Hiromi Tsuru", "character": "Bulma", "id": 122193, "credit_id": "52fe4aecc3a368484e16e073", "cast_id": 19, "profile_path": "/oaIWrqxdoFd1ErdmCSlIIIIZAVF.jpg", "order": 14}, {"name": "Tessh\u014d Genda", "character": "Shu", "id": 1681, "credit_id": "52fe4aecc3a368484e16e077", "cast_id": 20, "profile_path": "/ahCru7z0zyaV6RV1uCP0HBNLRoC.jpg", "order": 15}, {"name": "Takeshi Kusao", "character": "Trunks/Gotenks", "id": 1686, "credit_id": "52fe4aecc3a368484e16e07b", "cast_id": 21, "profile_path": "/8IG3iCbOJGQPINr2Xud3ple1cVQ.jpg", "order": 16}, {"name": "Unsh\u014d Ishizuka", "character": "Mr. Satan", "id": 68916, "credit_id": "52fe4aecc3a368484e16e07f", "cast_id": 22, "profile_path": "/msFDooyGBJLzWESwvvnjht6AnbV.jpg", "order": 17}, {"name": "Aya Hirano", "character": "Dende", "id": 144650, "credit_id": "52fe4aecc3a368484e16e083", "cast_id": 23, "profile_path": "/1EvMdPwUI9gvuqVjfLL6WS71j4U.jpg", "order": 18}, {"name": "Miki It\u014d", "character": "Android 18", "id": 122660, "credit_id": "52fe4aecc3a368484e16e087", "cast_id": 24, "profile_path": "/2zKRoHrmJ9TLTq02thhQossC7Z.jpg", "order": 19}, {"name": "Naoko Watanabe", "character": "Puar / Chi-Chi", "id": 122192, "credit_id": "536b91e40e0a2647d800c0ef", "cast_id": 30, "profile_path": "/7J8B6YfriVtzc1Uo54zMmsRo6f7.jpg", "order": 20}, {"name": "Y\u00f4ko Kawanami", "character": "Bulma's Mom", "id": 1156655, "credit_id": "52fe4aecc3a368484e16e08f", "cast_id": 26, "profile_path": "/nf95S4ParBozTAkizl7f3TeHaiI.jpg", "order": 22}, {"name": "Ry\u016bzabur\u014d \u014ctomo", "character": "Gyuumao", "id": 126690, "credit_id": "52fe4aecc3a368484e16e093", "cast_id": 27, "profile_path": "/320g6pV2VdBAYhlruAZ1lq5XCNP.jpg", "order": 23}, {"name": "Y\u016bko Minaguchi", "character": "Videl", "id": 90569, "credit_id": "52fe4aecc3a368484e16e097", "cast_id": 28, "profile_path": "/pFppi36nefwHTXzLGLcwKMDjZrn.jpg", "order": 24}, {"name": "Ry\u014d Horikawa", "character": "Vegeta", "id": 122501, "credit_id": "536d3f68c3a36839c100213f", "cast_id": 31, "profile_path": "/3FhW3i3vmXtqojE7oWFyBsKkcTD.jpg", "order": 25}], "directors": [{"name": "Masahiro Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe4aecc3a368484e16e037", "profile_path": null, "id": 1083453}], "vote_average": 6.5, "runtime": 121}, "8873": {"poster_path": "/pBs9DuzWhqWX7vPjzB6AvAXKXzM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47965000, "overview": "A message from Jim Morrison in a dream prompts cable access TV stars Wayne and Garth to put on a rock concert, \"Waynestock,\" with Aerosmith as headliners. But amid the preparations, Wayne frets that a record producer is putting the moves on his girlfriend, Cassandra, while Garth handles the advances of mega-babe Honey Hornee.", "video": false, "id": 8873, "genres": [{"id": 35, "name": "Comedy"}], "title": "Wayne's World 2", "tagline": "You'll laugh again! You'll cry again!! You'll hurl again!!!", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o0FVB2mVYTIjTuu89tW98QGzZzi.jpg", "poster_path": "/jA5fypLkiICd3BmWYIEh6uuMB1y.jpg", "id": 8979, "name": "Wayne's World Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108525", "adult": false, "backdrop_path": "/o6XaLo1epkwxx3t1MN7KuiWwkHF.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1993-12-10", "popularity": 0.13599335575974, "original_title": "Wayne's World 2", "budget": 0, "cast": [{"name": "Mike Myers", "character": "Wayne Campbell", "id": 12073, "credit_id": "52fe44c2c3a36847f80a87e1", "cast_id": 10, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Dana Carvey", "character": "Garth Algar", "id": 56159, "credit_id": "52fe44c2c3a36847f80a87e5", "cast_id": 11, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Bobby Cahn", "id": 4690, "credit_id": "52fe44c2c3a36847f80a87e9", "cast_id": 12, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Tia Carrere", "character": "Cassandra Wong", "id": 13445, "credit_id": "52fe44c2c3a36847f80a87ed", "cast_id": 13, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 3}, {"name": "Chris Farley", "character": "Milton", "id": 58198, "credit_id": "52fe44c2c3a36847f80a87f1", "cast_id": 14, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 4}, {"name": "James Hong", "character": "Jeff Wong", "id": 20904, "credit_id": "52fe44c2c3a36847f80a87f5", "cast_id": 15, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 5}, {"name": "Rip Taylor", "character": "Himself", "id": 37438, "credit_id": "52fe44c2c3a36847f80a87f9", "cast_id": 16, "profile_path": "/iMtu2vnCBN6o6qC3OJ6VdWCQBYY.jpg", "order": 6}, {"name": "Steven Tyler", "character": "Himself", "id": 37935, "credit_id": "52fe44c2c3a36847f80a87fd", "cast_id": 17, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 7}, {"name": "Joe Perry", "character": "Himself", "id": 235984, "credit_id": "52fe44c2c3a36847f80a8801", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Heather Locklear", "character": "Herself", "id": 58691, "credit_id": "52fe44c2c3a36847f80a8805", "cast_id": 19, "profile_path": "/djRAJGjg73Cao0x5m11XPHrjBll.jpg", "order": 9}, {"name": "Bob Odenkirk", "character": "Concert Nerd", "id": 59410, "credit_id": "52fe44c2c3a36847f80a8809", "cast_id": 20, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 10}, {"name": "Robert Smigel", "character": "Concert Nerd", "id": 53684, "credit_id": "52fe44c2c3a36847f80a880d", "cast_id": 21, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 11}, {"name": "Kim Basinger", "character": "Honey Horne\u00e9", "id": 326, "credit_id": "52fe44c2c3a36847f80a8811", "cast_id": 22, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 12}, {"name": "Drew Barrymore", "character": "Bjergen Kjergen", "id": 69597, "credit_id": "52fe44c2c3a36847f80a8815", "cast_id": 23, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 13}, {"name": "Harry Shearer", "character": "Handsome Dan", "id": 6008, "credit_id": "52fe44c2c3a36847f80a8819", "cast_id": 24, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 14}, {"name": "Jay Leno", "character": "Himself", "id": 14991, "credit_id": "52fe44c2c3a36847f80a881d", "cast_id": 25, "profile_path": "/5sh6KGewnyzNBrvXMsLVKJPVptx.jpg", "order": 15}, {"name": "Charlton Heston", "character": "Good Actor", "id": 10017, "credit_id": "52fe44c2c3a36847f80a8821", "cast_id": 26, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 16}, {"name": "Tim Meadows", "character": "Sammy Davis, Jr.", "id": 51857, "credit_id": "52fe44c2c3a36847f80a8825", "cast_id": 27, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 17}, {"name": "Kevin Pollak", "character": "Jerry Segel", "id": 7166, "credit_id": "52fe44c2c3a36847f80a8829", "cast_id": 28, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 18}, {"name": "Lee Tergesen", "character": "Terry", "id": 6906, "credit_id": "5323fe2b9251410d95000221", "cast_id": 29, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 19}], "directors": [{"name": "Stephen Surjik", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a87ad", "profile_path": "/4v2Kwnc6wLRD75DsYyFiNxuxYan.jpg", "id": 56155}], "vote_average": 5.9, "runtime": 95}, "184314": {"poster_path": "/wSAU6HtjjUf5eltx5qWBqsDldug.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The portrait of a 17-year-old girl, in 4 seasons and 4 songs.", "video": false, "id": 184314, "genres": [{"id": 18, "name": "Drama"}], "title": "Young & Beautiful", "tagline": "", "vote_count": 87, "homepage": "http://www.francois-ozon.com/fr/filmo-jeune-et-jolie", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2752200", "adult": false, "backdrop_path": "/8cn39Awvc0BNqG02oHCUkpU3nEy.jpg", "production_companies": [{"name": "R\u00e9gion Ile-de-France", "id": 11246}, {"name": "Mandarin Films", "id": 12096}, {"name": "Mars Films", "id": 819}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "FOZ", "id": 149}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "La Banque Postale Image 6", "id": 46045}, {"name": "Cofimage 24", "id": 22203}, {"name": "Sofica Manon 3", "id": 22204}, {"name": "Cofinova 9", "id": 41821}, {"name": "Palatine \u00c9toile 10", "id": 22206}], "release_date": "2014-04-25", "popularity": 0.920156017672575, "original_title": "Jeune & Jolie", "budget": 0, "cast": [{"name": "Marine Vacth", "character": "Isabelle", "id": 1167459, "credit_id": "52fe4cbd9251416c751240fd", "cast_id": 3, "profile_path": "/1xuE7NyPBuUXiXxVAgNlfhd3y54.jpg", "order": 0}, {"name": "G\u00e9raldine Pailhas", "character": "Sylvie", "id": 19888, "credit_id": "52fe4cbd9251416c75124101", "cast_id": 4, "profile_path": "/oHNjyEGxdDNTTQD6I2iVlCM7v6e.jpg", "order": 1}, {"name": "Charlotte Rampling", "character": "Alice", "id": 44079, "credit_id": "52fe4cbd9251416c75124105", "cast_id": 5, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 2}, {"name": "Fr\u00e9d\u00e9ric Pierrot", "character": "Patrick", "id": 9005, "credit_id": "52fe4cbd9251416c75124109", "cast_id": 6, "profile_path": "/7tdnvy2cLeohbF7p4RnpzHKG8u2.jpg", "order": 3}, {"name": "Nathalie Richard", "character": "V\u00e9ro", "id": 6019, "credit_id": "52fe4cbd9251416c7512410d", "cast_id": 7, "profile_path": "/xIPFn1tutGeW3Q4900o5IWRfCip.jpg", "order": 4}, {"name": "Johan Leysen", "character": "Georges", "id": 53904, "credit_id": "52fe4cbd9251416c75124111", "cast_id": 8, "profile_path": "/cjLEEzFfEGoEEpHnNxjfso04Dd0.jpg", "order": 5}, {"name": "Fantin Ravat", "character": "Victor", "id": 1173828, "credit_id": "52fe4cbd9251416c75124115", "cast_id": 9, "profile_path": "/W111PddJUCS8QZVDVf6ly62dAH.jpg", "order": 6}, {"name": "Laurent Delbecque", "character": "Alex", "id": 228716, "credit_id": "52fe4cbd9251416c75124119", "cast_id": 10, "profile_path": "/k5LEW91eSH9vBI1SzHf3cjtLRne.jpg", "order": 7}, {"name": "Dj\u00e9dj\u00e9 Apali", "character": "Peter", "id": 566740, "credit_id": "54d637889251416ba1002176", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Lucas Prisor", "character": "Felix", "id": 1288682, "credit_id": "54d6379f9251416b9f0022f7", "cast_id": 12, "profile_path": "/izYmdmr2yLzYAjWxcamV229MMge.jpg", "order": 9}, {"name": "Laurent Delbecque", "character": "Alex", "id": 228716, "credit_id": "54d637b59251415f9c002193", "cast_id": 13, "profile_path": "/k5LEW91eSH9vBI1SzHf3cjtLRne.jpg", "order": 10}, {"name": "Jeanne Ruff", "character": "Claire", "id": 1424245, "credit_id": "54d637d1c3a3683b8c0024a0", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Carole Franck", "character": "La polici\u00e8re", "id": 17463, "credit_id": "54d637e59251417160002531", "cast_id": 15, "profile_path": "/1AgGjzMrBsSb5H4JKfPegeSRBJb.jpg", "order": 12}, {"name": "Olivier Desautel", "character": "Le policier", "id": 1151807, "credit_id": "54d637f6c3a3683b95002296", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Serge Hefez", "character": "Le psychiatre", "id": 1424246, "credit_id": "54d6380bc3a3683b8f0024a9", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Fran\u00e7ois Ozon", "department": "Directing", "job": "Director", "credit_id": "52fe4cbd9251416c751240f3", "profile_path": "/uTqoYgeKs6zmHjViolp1OspLcEF.jpg", "id": 4387}], "vote_average": 6.7, "runtime": 95}, "184315": {"poster_path": "/jEeMN83CRI7lIEffTlgzBcUZzuN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 243400000, "overview": "Fourteen hundred years ago, a tormented soul walked the earth that was neither man nor god. Hercules was the powerful son of the god king Zeus, for this he received nothing but suffering his entire life. After twelve arduous labors and the loss of his family, this dark, world-weary soul turned his back on the gods finding his only solace in bloody battle. Over the years he warmed to the company of six similar souls, their only bond being their love of fighting and presence of death. These men and woman never question where they go to fight or why or whom, just how much they will be paid. Now the King of Thrace has hired these mercenaries to train his men to become the greatest army of all time. It is time for this bunch of lost souls to finally have their eyes opened to how far they have fallen when they must train an army to become as ruthless and blood thirsty as their reputation has become.", "video": false, "id": 184315, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Hercules", "tagline": "Before he was a legend, he was a man.", "vote_count": 549, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1267297", "adult": false, "backdrop_path": "/pNPdcgHT1FpCmauzFWepyfDvDo9.jpg", "production_companies": [{"name": "Radical Studios", "id": 19648}, {"name": "Paramount Pictures", "id": 4}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Flynn Picture Company", "id": 34081}], "release_date": "2014-07-23", "popularity": 3.80475235529077, "original_title": "Hercules", "budget": 100000000, "cast": [{"name": "Dwayne Johnson", "character": "Hercules", "id": 18918, "credit_id": "52fe4cbd9251416c75124149", "cast_id": 4, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Ian McShane", "character": "Amphiarus", "id": 6972, "credit_id": "52fe4cbd9251416c75124151", "cast_id": 6, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 1}, {"name": "John Hurt", "character": "Cotys", "id": 5049, "credit_id": "52fe4cbd9251416c7512414d", "cast_id": 5, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 2}, {"name": "Rufus Sewell", "character": "Autolycus", "id": 17328, "credit_id": "52fe4cbd9251416c75124155", "cast_id": 7, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 3}, {"name": "Aksel Hennie", "character": "Tydeus", "id": 76547, "credit_id": "52fe4cbd9251416c7512415d", "cast_id": 9, "profile_path": "/fEmgeaFbhzOSBRqe2mO6sa1EaSp.jpg", "order": 4}, {"name": "Ingrid Bols\u00f8 Berdal", "character": "Atalanta", "id": 87879, "credit_id": "533a591ec3a3680e760074f8", "cast_id": 14, "profile_path": "/raEPYKXAe6NP0m3WUyJDh7PQUR3.jpg", "order": 5}, {"name": "Reece Ritchie", "character": "Iolaus", "id": 54810, "credit_id": "533a59b6925141130200463e", "cast_id": 16, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 6}, {"name": "Joseph Fiennes", "character": "King Eurystheus", "id": 12763, "credit_id": "52fe4cbd9251416c75124159", "cast_id": 8, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 7}, {"name": "Tobias Santelmann", "character": "Rhesus", "id": 559195, "credit_id": "533a59979251417d9e005815", "cast_id": 15, "profile_path": "/sCtnswOiS203HyXTzlDesvEI4mj.jpg", "order": 8}, {"name": "Peter Mullan", "character": "Sitacles", "id": 3064, "credit_id": "544d39210e0a2608c50028be", "cast_id": 17, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 9}, {"name": "Rebecca Ferguson", "character": "Ergenia", "id": 933238, "credit_id": "52fe4cbd9251416c75124161", "cast_id": 10, "profile_path": "/a8thKB6ZnHxxqiC7crwCyaPX63d.jpg", "order": 10}, {"name": "Isaac Andrews", "character": "Arius", "id": 1264233, "credit_id": "544d39a3c3a36872d8002ace", "cast_id": 18, "profile_path": "/5R8RheJGkn7lY6qgiHvQ5YhRLpY.jpg", "order": 11}, {"name": "Joe Anderson", "character": "Phineas", "id": 29234, "credit_id": "544d3acb0e0a2608c20029ed", "cast_id": 19, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 12}, {"name": "Steve Peacocke", "character": "Stephanos", "id": 1231106, "credit_id": "544d3c3fc3a36872cc0025b8", "cast_id": 20, "profile_path": "/q51Ri8NVI13ces9nNKCHP0EhAKy.jpg", "order": 13}, {"name": "Nicholas Moss", "character": "Demetrius", "id": 61589, "credit_id": "544d3e1cc3a368242700009e", "cast_id": 21, "profile_path": "/4NWyzGPeW3AumTRrd7k6G9REf8h.jpg", "order": 14}, {"name": "Irina Shayk", "character": "Megara", "id": 544078, "credit_id": "533a5910c3a36819c4005121", "cast_id": 13, "profile_path": "/lZGbyk3dHkxWPo0kqxJLNo25APn.jpg", "order": 15}, {"name": "Robert Maillet", "character": "l'ex\u00e9cuteur", "id": 112692, "credit_id": "544e0f670e0a2608bb00442e", "cast_id": 22, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 16}, {"name": "Ian Whyte", "character": "le chef des guerriers Bessi", "id": 946696, "credit_id": "544e105dc3a36872d8004507", "cast_id": 23, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 17}, {"name": "Barbara Palvin", "character": "Antimache", "id": 1378158, "credit_id": "544e10c30e0a26134b000cf5", "cast_id": 24, "profile_path": "/Yi6BwGjndkN3T7jc6aaCpZA9lB.jpg", "order": 18}, {"name": "Caroline Boulton", "character": "Vixen", "id": 1358318, "credit_id": "544e14d30e0a2608c5004272", "cast_id": 26, "profile_path": "/cP9F6RsVGM4aBkFPk6VritEI0BO.jpg", "order": 20}, {"name": "Christopher Fairbank", "character": "Gryza", "id": 8399, "credit_id": "544e153c0e0a2608c2004473", "cast_id": 27, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 21}, {"name": "John Cross", "character": "Lieutenant Markos", "id": 1378160, "credit_id": "544e16490e0a2608c20044a6", "cast_id": 28, "profile_path": "/vHc7JHsFPt6vU9kuFdDFC5DNvvm.jpg", "order": 22}, {"name": "M\u00e1t\u00e9 Haumann", "character": "les gardes Cotys", "id": 25446, "credit_id": "544e16c6c3a3682427001979", "cast_id": 29, "profile_path": "/hbEOBOxhXIdOZYgWUFsTws5fEYf.jpg", "order": 23}, {"name": "Matt Devere", "character": "les gardes Cotys", "id": 25445, "credit_id": "544e1707c3a36872b40043c6", "cast_id": 30, "profile_path": "/mtp0cfPOGZG2aLEw0N6RuJFYA6j.jpg", "order": 24}, {"name": "Robert Whitelock", "character": "Nicolaus", "id": 87594, "credit_id": "544e176d0e0a2608cd0042ca", "cast_id": 31, "profile_path": "/r6b85u9jojC8LtJRHzWLEYefHdd.jpg", "order": 25}, {"name": "Karolina Szymczak", "character": "Alcmene", "id": 1392665, "credit_id": "547d90469251412d6d004f70", "cast_id": 98, "profile_path": null, "order": 26}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4cbd9251416c75124139", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 5.9, "runtime": 99}, "682": {"poster_path": "/p1GcthsL45Z2coCEabJDtflFsjq.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97572000, "overview": "A golden bullet has 007 engraved on it as it smashes into the secret service headquarters. The bullet came from the professional killer Scaramanga who has yet to miss a target and James Bond begins a mission to try and stop him.", "video": false, "id": 682, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Man with the Golden Gun", "tagline": "The man with the golden gun is ready to assassinate James Bond.", "vote_count": 138, "homepage": "http://www.mgm.com/view/movie/1213/The-Man-with-the-Golden-Gun/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071807", "adult": false, "backdrop_path": "/f6HNlsfahFWcYC3VH5sQsMrOL72.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1974-12-18", "popularity": 1.12398267280476, "original_title": "The Man with the Golden Gun", "budget": 7000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426ac3a36847f801cd5d", "cast_id": 18, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Christopher Lee", "character": "Francisco Scaramanga", "id": 113, "credit_id": "52fe426ac3a36847f801cd61", "cast_id": 19, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 1}, {"name": "Britt Ekland", "character": "Mary Goodnight", "id": 10341, "credit_id": "52fe426ac3a36847f801cd65", "cast_id": 20, "profile_path": "/euypp72CwsKq4nOUjoBzDqtvfsI.jpg", "order": 2}, {"name": "Maud Adams", "character": "Andrea Anders", "id": 10342, "credit_id": "52fe426ac3a36847f801cd69", "cast_id": 21, "profile_path": "/iflQAeAUNW9zhwNGYCvk0nZR1en.jpg", "order": 3}, {"name": "Herv\u00e9 Villechaize", "character": "Nick Nack", "id": 10343, "credit_id": "52fe426ac3a36847f801cd6d", "cast_id": 22, "profile_path": "/v2cXeoiQra79GSet6W901B9Kns1.jpg", "order": 4}, {"name": "Clifton James", "character": "Sheriff J.W. Pepper", "id": 10224, "credit_id": "52fe426ac3a36847f801cd71", "cast_id": 23, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 5}, {"name": "Richard Loo", "character": "Hai Fat", "id": 10344, "credit_id": "52fe426ac3a36847f801cd75", "cast_id": 24, "profile_path": "/wCGxu1EZsrn6kjlWAFLQ1YzbOsN.jpg", "order": 6}, {"name": "Soon-Tek Oh", "character": "Lieutenant Hip", "id": 10345, "credit_id": "52fe426ac3a36847f801cd79", "cast_id": 25, "profile_path": "/6ZNOhKG5ZhqVhVb3qbdZSZ1np65.jpg", "order": 7}, {"name": "Marc Lawrence", "character": "Rodney", "id": 3140, "credit_id": "52fe426ac3a36847f801cd7d", "cast_id": 26, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 8}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426ac3a36847f801cd81", "cast_id": 27, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426ac3a36847f801cd85", "cast_id": 28, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ac3a36847f801cd89", "cast_id": 29, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "James Cossins", "character": "Colthorpe", "id": 33109, "credit_id": "5406412ec3a36843720089f8", "cast_id": 30, "profile_path": "/2kjM9bIz7h66ysu6AcMAsyj93bv.jpg", "order": 12}, {"name": "Yao Lin Chen", "character": "Chula", "id": 83676, "credit_id": "54064143c3a3685b740046c7", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Carmen du Sautoy", "character": "Saida", "id": 1215738, "credit_id": "54064151c3a36816af003f4a", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Marne Maitland", "character": "Lazar", "id": 67882, "credit_id": "55155717c3a36821e5000d9a", "cast_id": 33, "profile_path": "/y8q7N1D28UmmwuRgt39X2fv6xTa.jpg", "order": 15}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801ccf9", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 6.1, "runtime": 125}, "23759": {"poster_path": "/lwQs5DNvy9RHTB0RWEScgZqPPiS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 6814789, "overview": "Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus' legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.", "video": false, "id": 23759, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Centurion", "tagline": "History is written in blood", "vote_count": 113, "homepage": "http://www.centurionmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "gd", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1020558", "adult": false, "backdrop_path": "/iSHNL3URBKtSkEJsxeTYLzkJ8gE.jpg", "production_companies": [{"name": "Celador Films", "id": 3573}, {"name": "Path\u00e9 Pictures International", "id": 1178}, {"name": "UK Film Council", "id": 2452}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2010-04-23", "popularity": 0.754564619336386, "original_title": "Centurion", "budget": 12000000, "cast": [{"name": "Michael Fassbender", "character": "Centurion Quintus Dias", "id": 17288, "credit_id": "52fe4475c3a368484e0244ed", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Olga Kurylenko", "character": "Etain", "id": 18182, "credit_id": "52fe4475c3a368484e024521", "cast_id": 16, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 1}, {"name": "David Morrissey", "character": "Bothos", "id": 18616, "credit_id": "52fe4475c3a368484e02450d", "cast_id": 11, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 2}, {"name": "Liam Cunningham", "character": "Brick", "id": 15498, "credit_id": "52fe4475c3a368484e024531", "cast_id": 20, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 3}, {"name": "Dominic West", "character": "General Titus Flavius Virilus", "id": 17287, "credit_id": "52fe4475c3a368484e0244fd", "cast_id": 7, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 4}, {"name": "Imogen Poots", "character": "Arianne", "id": 17606, "credit_id": "52fe4475c3a368484e024541", "cast_id": 24, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 5}, {"name": "Ulrich Thomsen", "character": "Gorlacon", "id": 4455, "credit_id": "52fe4475c3a368484e024515", "cast_id": 13, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 6}, {"name": "J. J. Feild", "character": "Thax", "id": 30710, "credit_id": "52fe4475c3a368484e024505", "cast_id": 9, "profile_path": "/pdDaMSsDqcyy2grU38pJC0s6XCs.jpg", "order": 7}, {"name": "Noel Clarke", "character": "Macros", "id": 76242, "credit_id": "52fe4475c3a368484e024501", "cast_id": 8, "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "order": 8}, {"name": "Dimitri Leonidas", "character": "Leonidas", "id": 89821, "credit_id": "52fe4475c3a368484e024539", "cast_id": 22, "profile_path": "/lRi0kPKkno8TVOUnVHngPBSXC7B.jpg", "order": 9}, {"name": "Riz Ahmed", "character": "Tarak", "id": 53240, "credit_id": "52fe4475c3a368484e02453d", "cast_id": 23, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 10}, {"name": "Paul Freeman", "character": "Governor Julius Agricola", "id": 652, "credit_id": "52fe4475c3a368484e02451d", "cast_id": 15, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 11}, {"name": "Dave Legeno", "character": "Vortix", "id": 60348, "credit_id": "52fe4475c3a368484e0244f5", "cast_id": 5, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 12}, {"name": "Axelle Carolyn", "character": "Aeron", "id": 231199, "credit_id": "52fe4475c3a368484e0244f9", "cast_id": 6, "profile_path": "/zGbPBBYqCKxBCyL9iBGnY5BKuBs.jpg", "order": 13}, {"name": "Andreas Wisniewski", "character": "Commander Gratus", "id": 10673, "credit_id": "52fe4475c3a368484e0244f1", "cast_id": 4, "profile_path": "/uZwfBgn0GBfmfjbxA69GDXctN5W.jpg", "order": 14}, {"name": "Jake Maskall", "character": "Roman Officer Argos", "id": 231201, "credit_id": "53ad459bc3a3682edf00141b", "cast_id": 57, "profile_path": null, "order": 15}, {"name": "Eoin Macken", "character": "Achivir", "id": 111801, "credit_id": "53ad45cfc3a3682ee200155d", "cast_id": 58, "profile_path": "/jWZstkO7U81PK7yVBlVhUsrwI8a.jpg", "order": 16}, {"name": "Rachael Stirling", "character": "Druzilla", "id": 18067, "credit_id": "53ad465ec3a3682edb00157f", "cast_id": 59, "profile_path": "/qG6JbbYVcZQnJhXThyY5U8PMyyb.jpg", "order": 17}, {"name": "Michael Carter", "character": "General Antoninus", "id": 199055, "credit_id": "53ad46ccc3a3682ed800152a", "cast_id": 60, "profile_path": "/rYVKZQ4uYLf7cpAGfdFzDcRNJXw.jpg", "order": 18}, {"name": "Tom Mannion", "character": "General Tesio", "id": 147482, "credit_id": "53ad46fdc3a3682ef10014fc", "cast_id": 61, "profile_path": "/fjJPHD96Jsko9w1M3vwINRVYoi9.jpg", "order": 19}, {"name": "Peter Guinness", "character": "General Cassius", "id": 27172, "credit_id": "53ad4721c3a3682eee0014ff", "cast_id": 62, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 20}], "directors": [{"name": "Neil Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a368484e0244e9", "profile_path": "/Au5p9cFlj2XVoVIECQ40ruOp1Qz.jpg", "id": 57581}], "vote_average": 5.6, "runtime": 97}, "1391": {"poster_path": "/iwQLkEJGpKsuhRSpv3MkbKgPWcZ.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 0, "overview": "In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.", "video": false, "id": 1391, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Y tu mam\u00e1 tambi\u00e9n", "tagline": "Life has its ways of teaching. Life has its ways to confuse us. Life has its ways to move us. Life has its ways to amaze. Life has its ways to hurt us. Life has its ways to heal. Life has its ways to inspire.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0245574", "adult": false, "backdrop_path": "/nvOf9OgfcbK1duJWeBqpXOzWiIt.jpg", "production_companies": [{"name": "B\u00e9same Mucho Pictures", "id": 1101}, {"name": "Producciones Anhelo", "id": 1102}], "release_date": "2001-06-08", "popularity": 1.06468927683582, "original_title": "Y tu mam\u00e1 tambi\u00e9n", "budget": 5000000, "cast": [{"name": "Gael Garc\u00eda Bernal", "character": "Julio Zapata", "id": 258, "credit_id": "52fe42f2c3a36847f802efbb", "cast_id": 2, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 0}, {"name": "Diego Luna", "character": "Tenoch Iturbide", "id": 8688, "credit_id": "52fe42f2c3a36847f802efbf", "cast_id": 3, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 1}, {"name": "Ana L\u00f3pez Mercado", "character": "Ana Morelos", "id": 17088, "credit_id": "52fe42f2c3a36847f802efc3", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Maribel Verd\u00fa", "character": "Luisa Cort\u00e9s", "id": 16971, "credit_id": "52fe42f2c3a36847f802efc7", "cast_id": 5, "profile_path": "/km7HP0yXLBZkPN9EFTbMJBCIsHs.jpg", "order": 3}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe42f2c3a36847f802efb7", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 6.9, "runtime": 106}, "14337": {"poster_path": "/pYiAYDn3ltw9Fq7izODuq7oWYwX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 424760, "overview": "Friends/fledgling entrepreneurs invent a device in their garage that reduces the apparent mass of any object placed inside it, but they accidentally discover that it has some highly unexpected capabilities--ones that could enable them to do and to have seemingly anything they want. Taking advantage of this unique opportunity is the first challenge they face. Dealing with the consequences is the next.", "video": false, "id": 14337, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Primer", "tagline": "What happens if it actually works?", "vote_count": 124, "homepage": "http://www.primermovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0390384", "adult": false, "backdrop_path": "/dG7Booc7C2HoVmAZjqAzp2NcTGd.jpg", "production_companies": [{"name": "Thinkfilm", "id": 446}], "release_date": "2004-10-08", "popularity": 0.448923541126161, "original_title": "Primer", "budget": 7000, "cast": [{"name": "Shane Carruth", "character": "Aaron", "id": 76624, "credit_id": "52fe45e79251416c75066787", "cast_id": 1, "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "order": 0}, {"name": "David Sullivan", "character": "Abe", "id": 76625, "credit_id": "52fe45e79251416c7506678b", "cast_id": 2, "profile_path": "/t62pMFeVdn81HY9ephGux6deaYw.jpg", "order": 1}, {"name": "Casey Gooden", "character": "Robert", "id": 110171, "credit_id": "52fe45e79251416c750667a1", "cast_id": 6, "profile_path": null, "order": 2}, {"name": "Anand Upadhyaya", "character": "Philip", "id": 110172, "credit_id": "52fe45e79251416c750667a5", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Carrie Crawford", "character": "Kara", "id": 110173, "credit_id": "52fe45e79251416c750667a9", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Jay Butler", "character": "Metalshop Worker", "id": 1080287, "credit_id": "52fe45e79251416c750667b3", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "John Carruth", "character": "Man On Couch #1", "id": 1080288, "credit_id": "52fe45e79251416c750667b7", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Juan Tapia", "character": "Man On Couch #2", "id": 1080289, "credit_id": "52fe45e79251416c750667bb", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ashley Warren", "character": "Hostess", "id": 1080290, "credit_id": "52fe45e79251416c750667bf", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Samantha Thomson", "character": "Rachel Granger", "id": 1080291, "credit_id": "52fe45e89251416c750667c3", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Chip Carruth", "character": "Thomas Granger", "id": 1080292, "credit_id": "52fe45e89251416c750667c7", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Delaney Price", "character": "Laney", "id": 1080293, "credit_id": "52fe45e89251416c750667cb", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Jack Pyland", "character": "Aaron's Co-worker", "id": 1080294, "credit_id": "52fe45e89251416c750667cf", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Keith Bradshaw", "character": "Clean Room Technician", "id": 1080295, "credit_id": "52fe45e89251416c750667d3", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Ashok Upadhyaya", "character": "Laboratory Technician", "id": 1080296, "credit_id": "52fe45e89251416c750667d7", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Brandon Blagg", "character": "Will", "id": 1080297, "credit_id": "52fe45e89251416c750667db", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Jon Cook", "character": "Will's Cousin", "id": 1080298, "credit_id": "52fe45e89251416c750667df", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "David Joyner", "character": "Rachel's Date", "id": 203260, "credit_id": "52fe45e89251416c750667e3", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Eric De Soualhat", "character": "Translator", "id": 1080299, "credit_id": "52fe45e89251416c750667e7", "cast_id": 23, "profile_path": null, "order": 18}], "directors": [{"name": "Shane Carruth", "department": "Directing", "job": "Director", "credit_id": "52fe45e79251416c75066791", "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "id": 76624}], "vote_average": 6.8, "runtime": 79}, "4104": {"poster_path": "/2a7amuuML6xvBn6XWV1sPG1Cmd5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23202734, "overview": "A mentally ill young woman finds her love in an eccentric man who models himself after Buster Keaton.", "video": false, "id": 4104, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Benny & Joon", "tagline": "A romance on the brink of reality.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106387", "adult": false, "backdrop_path": "/yGrcYDgQoBk2oyf6G49UKbPCyvh.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Roth-Arnold Productions", "id": 1560}], "release_date": "1993-04-16", "popularity": 0.223554929286767, "original_title": "Benny & Joon", "budget": 0, "cast": [{"name": "Johnny Depp", "character": "Sam", "id": 85, "credit_id": "52fe43adc3a36847f8066f67", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Mary Stuart Masterson", "character": "Juniper 'Joon' Pearl", "id": 31140, "credit_id": "52fe43adc3a36847f8066f6b", "cast_id": 3, "profile_path": "/cUsInuGkiBVcKIRJMRsmD52Sxx5.jpg", "order": 1}, {"name": "Aidan Quinn", "character": "Benjamin 'Benny' Pearl", "id": 18992, "credit_id": "52fe43adc3a36847f8066f6f", "cast_id": 4, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Ruthie", "id": 1231, "credit_id": "52fe43adc3a36847f8066f73", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Eric", "id": 17485, "credit_id": "52fe43adc3a36847f8066f77", "cast_id": 6, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "C. C. H. Pounder", "character": "Dr. Garvey", "id": 30485, "credit_id": "52fe43adc3a36847f8066f87", "cast_id": 9, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 5}, {"name": "Dan Hedaya", "character": "Thomas", "id": 6486, "credit_id": "52fe43adc3a36847f8066f8b", "cast_id": 10, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 6}, {"name": "Joe Grifasi", "character": "Mike", "id": 4887, "credit_id": "52fe43adc3a36847f8066f8f", "cast_id": 11, "profile_path": "/m3phT21garD58hEADUTl9RWWNrL.jpg", "order": 7}, {"name": "William H. Macy", "character": "Randy Burch", "id": 3905, "credit_id": "52fe43adc3a36847f8066f93", "cast_id": 12, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 8}, {"name": "Liane Curtis", "character": "Claudia", "id": 157054, "credit_id": "52fe43adc3a36847f8066f97", "cast_id": 13, "profile_path": "/zOdmZINjH8J7Cfn3C9dy12nuw4.jpg", "order": 9}, {"name": "Eileen Ryan", "character": "Mrs. Smail", "id": 12543, "credit_id": "52fe43adc3a36847f8066f9b", "cast_id": 14, "profile_path": "/ypA36mXS3CcyvtKCdBMhI3gn4Vs.jpg", "order": 10}, {"name": "Waldo Larson", "character": "Waldo", "id": 1073807, "credit_id": "52fe43adc3a36847f8066f9f", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Irvin Johnson", "character": "Orderly", "id": 1073808, "credit_id": "52fe43adc3a36847f8066fa3", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Shane Nilsson", "character": "Orderly", "id": 1073809, "credit_id": "52fe43adc3a36847f8066fa7", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Don Hamilton", "character": "UPS man", "id": 1167431, "credit_id": "52fe43adc3a36847f8066fab", "cast_id": 19, "profile_path": null, "order": 14}], "directors": [{"name": "Jeremiah S. Chechik", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f8066f63", "profile_path": "/avEcJTGsWFEzxpSOutwhkP3adQ8.jpg", "id": 34682}], "vote_average": 6.7, "runtime": 98}, "4105": {"poster_path": "/iKRO9Am8rXvPGmkvRgUh4E2EC8J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45892212, "overview": "Two New York cops get involved in a gang war between members of the Yakuza, the Japanese Mafia. They arrest one of their killers and are ordered to escort him back to Japan. In Japan, however, he manages to escape. As they try to track him down, they get deeper and deeper into the Japanese Mafia scene and they have to learn that they can only win by playing the game the Japanese way.", "video": false, "id": 4105, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Black Rain", "tagline": "Their country. Their laws. Their game. His rules.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0096933", "adult": false, "backdrop_path": "/lpHxO2XT0NizhtZWh7nLWP1KKOb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1989-09-22", "popularity": 0.498306024989881, "original_title": "Black Rain", "budget": 30000000, "cast": [{"name": "Michael Douglas", "character": "Nick", "id": 3392, "credit_id": "52fe43adc3a36847f8066fd7", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Andy Garc\u00eda", "character": "Charlie", "id": 1271, "credit_id": "52fe43adc3a36847f8066fdb", "cast_id": 2, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 1}, {"name": "Kate Capshaw", "character": "Joyce", "id": 689, "credit_id": "52fe43adc3a36847f8066fdf", "cast_id": 4, "profile_path": "/qhrU9F2xcMd9ZHBQZxth8P6FpLF.jpg", "order": 3}, {"name": "Shigeru K\u00f4yama", "character": "Ohashi", "id": 34690, "credit_id": "52fe43adc3a36847f8066fe3", "cast_id": 6, "profile_path": "/8ljJjKPDYUM5vjQjaKPDO8DfxTY.jpg", "order": 4}, {"name": "John Spencer", "character": "Oliver", "id": 34691, "credit_id": "52fe43adc3a36847f8066fe7", "cast_id": 7, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 5}, {"name": "Ken Takakura", "character": "Masahiro", "id": 73427, "credit_id": "52fe43adc3a36847f806702d", "cast_id": 19, "profile_path": "/vNlUpzKQYzdo8pQVQdrPU6p6s05.jpg", "order": 6}, {"name": "Y\u00fbsaku Matsuda", "character": "Sato", "id": 129953, "credit_id": "52fe43adc3a36847f8067031", "cast_id": 20, "profile_path": null, "order": 7}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f8066ff9", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.3, "runtime": 125}, "4108": {"poster_path": "/vD5plFV1ec9CSIsdlPe9icCDRTL.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 43928932, "overview": "Former Special Forces officer Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.", "video": false, "id": 4108, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Transporter", "tagline": "Rules are made to be broken.", "vote_count": 517, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qDuTIGAEbxF3jP9zNILLAoxNLpU.jpg", "poster_path": "/5MWCU1Eqc2HB6zZKFrGrgdH4d4M.jpg", "id": 9518, "name": "The Transporter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0293662", "adult": false, "backdrop_path": "/poKaphSqmgC1vtUYGagzyU4KP2m.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "TF1 Films Productions", "id": 356}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2002-10-02", "popularity": 0.927357212724251, "original_title": "The Transporter", "budget": 21000000, "cast": [{"name": "Jason Statham", "character": "Frank Martin", "id": 976, "credit_id": "52fe43adc3a36847f806714f", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Shu Qi", "character": "Lai", "id": 21911, "credit_id": "52fe43adc3a36847f806719b", "cast_id": 14, "profile_path": "/kmTErFq6lKQww2Yk9AfpR2Q5YWx.jpg", "order": 1}, {"name": "Matt Schulze", "character": "Wall Street", "id": 31841, "credit_id": "52fe43adc3a36847f806719f", "cast_id": 15, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 2}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Tarconi", "id": 7693, "credit_id": "52fe43adc3a36847f80671a3", "cast_id": 16, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 3}, {"name": "Ric Young", "character": "Mr. Kwai", "id": 11397, "credit_id": "52fe43adc3a36847f80671a7", "cast_id": 17, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 4}, {"name": "Doug Rand", "character": "Leader", "id": 61609, "credit_id": "52fe43adc3a36847f80671ab", "cast_id": 18, "profile_path": "/iWXA5jVkULBIPOn5znW9e4K0Ifr.jpg", "order": 5}, {"name": "Didier Saint Melin", "character": "Boss", "id": 1090711, "credit_id": "52fe43adc3a36847f80671af", "cast_id": 19, "profile_path": null, "order": 6}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f8067155", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}, {"name": "Corey Yuen Kwai", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f806715b", "profile_path": "/uLRXQt1LlTfbYtm0kMLC8KSvHxN.jpg", "id": 35452}], "vote_average": 6.5, "runtime": 92}, "200727": {"poster_path": "/qGYr7P3s0gx5YLvrILnbAkpTt1K.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rosie and Alex are best friends. They are suddenly separated when Alex and his family move from Dublin to America. Can their friendship survive years and miles? Will they gamble everything for true love?", "video": false, "id": 200727, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Love, Rosie", "tagline": "Right Love. Wrong Time.", "vote_count": 148, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1638002", "adult": false, "backdrop_path": "/hxpHrgnhXgIib4PuWlhz1YL5OlM.jpg", "production_companies": [{"name": "Constantin Film", "id": 47}, {"name": "Octagon Films", "id": 1266}], "release_date": "2014-10-16", "popularity": 1.96108671125681, "original_title": "Love, Rosie", "budget": 0, "cast": [{"name": "Lily Collins", "character": "Rosie Dunne", "id": 112561, "credit_id": "52fe4c91c3a368484e1bcd31", "cast_id": 1, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 0}, {"name": "Sam Claflin", "character": "Alex Stewart", "id": 237455, "credit_id": "52fe4c91c3a368484e1bcd35", "cast_id": 2, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 1}, {"name": "Tamsin Egerton", "character": "Sally", "id": 66442, "credit_id": "52fe4c91c3a368484e1bcd3d", "cast_id": 4, "profile_path": "/kLXPQJOrLH0oB9FdO2EJyQi4FoN.jpg", "order": 3}, {"name": "Christian Cooke", "character": "Greg", "id": 116263, "credit_id": "53bc3eb40e0a26197f003315", "cast_id": 8, "profile_path": "/eatvlROrwzcfuGM3kR8uaeTYySL.jpg", "order": 4}, {"name": "Art Parkinson", "character": "Gary Dunn", "id": 1050248, "credit_id": "53bc3f1b0e0a26196b00330a", "cast_id": 9, "profile_path": "/lm6BkM9uf69sd30o87kJ83ezKzN.jpg", "order": 5}, {"name": "Suki Waterhouse", "character": "Bethany Williams", "id": 1325961, "credit_id": "54d199de9251411b5c0010f6", "cast_id": 10, "profile_path": null, "order": 6}], "directors": [{"name": "Christian Ditter", "department": "Directing", "job": "Director", "credit_id": "52fe4c91c3a368484e1bcd43", "profile_path": null, "id": 63820}], "vote_average": 7.6, "runtime": 102}, "20504": {"poster_path": "/qL3FnEug9DyBcaBXVb0oT3DJMJu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157107755, "overview": "A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.", "video": false, "id": 20504, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Book of Eli", "tagline": "Some will kill to have it. He will kill to protect it.", "vote_count": 962, "homepage": "http://thebookofeli.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1037705", "adult": false, "backdrop_path": "/yT91We6RqDDfM4q7RX1QTHaq5q4.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Silver Pictures", "id": 1885}], "release_date": "2010-01-14", "popularity": 1.70552555411491, "original_title": "The Book of Eli", "budget": 80000000, "cast": [{"name": "Denzel Washington", "character": "Eli", "id": 5292, "credit_id": "52fe43e9c3a368484e005825", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Carnegie", "id": 64, "credit_id": "52fe43e9c3a368484e005829", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Michael Gambon", "character": "George", "id": 5658, "credit_id": "52fe43e9c3a368484e00582d", "cast_id": 3, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 2}, {"name": "Mila Kunis", "character": "Solara", "id": 18973, "credit_id": "52fe43e9c3a368484e005831", "cast_id": 4, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 3}, {"name": "Jennifer Beals", "character": "Claudia", "id": 3130, "credit_id": "52fe43e9c3a368484e005835", "cast_id": 5, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 4}, {"name": "Ray Stevenson", "character": "Redridge", "id": 56614, "credit_id": "52fe43e9c3a368484e005839", "cast_id": 6, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 5}, {"name": "Frances de la Tour", "character": "Martha", "id": 47468, "credit_id": "52fe43e9c3a368484e00583d", "cast_id": 7, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 6}, {"name": "Tom Waits", "character": "Engineer", "id": 2887, "credit_id": "52fe43e9c3a368484e005841", "cast_id": 8, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 7}, {"name": "Lateef Crowder", "character": "Highjacker #3", "id": 123812, "credit_id": "544cdc97c3a36872c7001e3f", "cast_id": 46, "profile_path": "/pnsFjc7igJi0SdNs7pDjxpy32yu.jpg", "order": 8}, {"name": "Chris Browning", "character": "Highjacker Leader", "id": 76543, "credit_id": "52fe43e9c3a368484e005849", "cast_id": 10, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 9}, {"name": "Joe Pingue", "character": "Hoyt", "id": 86237, "credit_id": "52fe43e9c3a368484e00584d", "cast_id": 11, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Evan Jones", "character": "Martz", "id": 333, "credit_id": "52fe43e9c3a368484e005851", "cast_id": 12, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 11}, {"name": "Lora Cunningham", "character": "Young Woman Highjacker", "id": 86238, "credit_id": "52fe43e9c3a368484e005855", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Malcolm McDowell", "character": "Lombardi", "id": 56890, "credit_id": "52fe43e9c3a368484e005883", "cast_id": 23, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 13}], "directors": [{"name": "Albert Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe43e9c3a368484e00585b", "profile_path": "/wExeoXPCpuGKmNKHKwJKo8BXo4t.jpg", "id": 11447}, {"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe43e9c3a368484e005861", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}], "vote_average": 6.4, "runtime": 118}, "184345": {"poster_path": "/xS2W9WVDyFGyLGSZRUDSdQKlmqt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Having exorcised the demons of his ex, Malcolm is starting fresh with his new girlfriend and her two children. After moving into their dream home, however, Malcolm is once again plagued by bizarre paranormal events.", "video": false, "id": 184345, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "A Haunted House 2", "tagline": "It'll scare the #2 out of you.", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/6OHNDLSvTxvis1oWGdIqmH8jrEH.jpg", "id": 251937, "name": "A Haunted House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2828996", "adult": false, "backdrop_path": "/kGqBnKcTHEyvIzARazZhyamK5Sv.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Automatik Entertainment", "id": 7625}], "release_date": "2014-04-18", "popularity": 0.770027920746544, "original_title": "A Haunted House 2", "budget": 0, "cast": [{"name": "Marlon Wayans", "character": "Malcolm", "id": 9562, "credit_id": "52fe4cbd9251416c751242bf", "cast_id": 1, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 0}, {"name": "Jaime Pressly", "character": "Megan", "id": 56824, "credit_id": "52fe4cbd9251416c751242c9", "cast_id": 3, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 1}, {"name": "Essence Atkins", "character": "Kisha", "id": 154000, "credit_id": "534cf2400e0a2661b7000d52", "cast_id": 14, "profile_path": "/3MC6xJrqXZ7LNJpyxC0RzPule72.jpg", "order": 2}, {"name": "Gabriel Iglesias", "character": "Miguel", "id": 86498, "credit_id": "534cf2560e0a2661a4000d4a", "cast_id": 15, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 3}, {"name": "Missi Pyle", "character": "Noreen", "id": 1294, "credit_id": "534cf2f60e0a2661ad000dc9", "cast_id": 16, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 4}, {"name": "Ashley Rickards", "character": "Becky", "id": 208225, "credit_id": "52fe4cbd9251416c751242cd", "cast_id": 4, "profile_path": "/21s0lfhCx2hzjNzTFOwmkde665a.jpg", "order": 5}, {"name": "Affion Crockett", "character": "Ray- Ray", "id": 98394, "credit_id": "52fe4cbe9251416c751242dd", "cast_id": 8, "profile_path": "/moqCMggBapY4mHArUjaRKZ2xzIn.jpg", "order": 6}, {"name": "Steele Stebbins", "character": "Wyatt", "id": 1286744, "credit_id": "52fe4cbe9251416c751242e9", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Rick Overton", "character": "Professor Wilde", "id": 1539, "credit_id": "52fe4cbe9251416c751242e5", "cast_id": 10, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 8}, {"name": "Dave Sheridan", "character": "Agouhl", "id": 35701, "credit_id": "52fe4cbd9251416c751242d5", "cast_id": 6, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 9}, {"name": "Cedric the Entertainer", "character": "Father Doug", "id": 5726, "credit_id": "52fe4cbe9251416c751242d9", "cast_id": 7, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 10}, {"name": "Audrey Petenbrink", "character": "Pool Daughter (uncredited)", "id": 1286743, "credit_id": "52fe4cbe9251416c751242e1", "cast_id": 9, "profile_path": null, "order": 11}, {"name": "Scott Burn", "character": "Kill Family Dad (uncredited)", "id": 1172222, "credit_id": "52fe4cbd9251416c751242d1", "cast_id": 5, "profile_path": null, "order": 12}], "directors": [{"name": "Michael Tiddes", "department": "Directing", "job": "Director", "credit_id": "52fe4cbd9251416c751242c5", "profile_path": null, "id": 1110102}], "vote_average": 5.6, "runtime": 87}, "184346": {"poster_path": "/iI0FjaQcFGMlBClEGdMzTkOsOcP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "New York police officer Ralph Sarchie investigates a series of crimes. He joins forces with an unconventional priest, schooled in the rites of exorcism, to combat the possessions that are terrorizing their city.", "video": false, "id": 184346, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Deliver Us from Evil", "tagline": "Inspired by the actual accounts of an NYPD sergeant.", "vote_count": 238, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2377322", "adult": false, "backdrop_path": "/h0jrxKeDXS6VKnUnJayXLTo6PDx.jpg", "production_companies": [{"name": "LStar Capital", "id": 34034}, {"name": "Screen Gems", "id": 3287}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2014-07-02", "popularity": 1.70675567646015, "original_title": "Deliver Us from Evil", "budget": 30, "cast": [{"name": "Eric Bana", "character": "Ralph Sarchie", "id": 8783, "credit_id": "52fe4cbe9251416c75124319", "cast_id": 4, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Mendoza", "id": 25616, "credit_id": "53aa9e35c3a3684d1000127a", "cast_id": 9, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 1}, {"name": "Olivia Munn", "character": "Jen", "id": 81364, "credit_id": "52fe4cbe9251416c7512431d", "cast_id": 5, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 2}, {"name": "Joel McHale", "character": "Butler", "id": 74949, "credit_id": "52fe4cbe9251416c75124321", "cast_id": 6, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 3}, {"name": "Sean Harris", "character": "Santino", "id": 16702, "credit_id": "53aa9e3ac3a3684cfb0012a5", "cast_id": 10, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 4}, {"name": "Chris Coy", "character": "Jimmy", "id": 587438, "credit_id": "53b8f4d5c3a3685ea8004e20", "cast_id": 11, "profile_path": "/lSjg8jeqZ4mEKfkMnpy25Di3ztR.jpg", "order": 5}, {"name": "Dorian Missick", "character": "Gordon", "id": 26718, "credit_id": "53b8f4dcc3a3685ebd004f89", "cast_id": 12, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 6}, {"name": "Mike Houston", "character": "Nadler", "id": 205128, "credit_id": "53b8f4e5c3a3685ea8004e22", "cast_id": 13, "profile_path": "/nqdMHdfOQuRvwzRAuHtgPKIAMwS.jpg", "order": 7}, {"name": "Lulu Wilson", "character": "Christina", "id": 98946, "credit_id": "53b8f4ecc3a368072e002145", "cast_id": 14, "profile_path": "/vtoq7kkel0tGTJ0cJXr8Iy46csY.jpg", "order": 8}, {"name": "Antoinette LaVecchia", "character": "Serafina", "id": 171939, "credit_id": "53b8f508c3a3685eb10051a8", "cast_id": 15, "profile_path": "/aGar7C9EB3nG8HMfbRtwJuvemGK.jpg", "order": 9}, {"name": "Scott Johnsen", "character": "Sergent Griggs", "id": 1375162, "credit_id": "54423282c3a3683e080017ed", "cast_id": 16, "profile_path": "/10wpICE5Pyvy02Ensq74ZQ9a2c6.jpg", "order": 10}, {"name": "Valentina Rend\u00f3n", "character": "Claudia", "id": 1246812, "credit_id": "544234a50e0a266330001970", "cast_id": 17, "profile_path": "/x64YCLPgyu7wkJJfZ0yDuZUp7Nn.jpg", "order": 11}, {"name": "Daniel Serafin", "character": "Salvatore", "id": 101165, "credit_id": "54423519c3a3683dfb0018dc", "cast_id": 18, "profile_path": "/ech2oXirc4TeVrTNarolm7aVVKD.jpg", "order": 12}, {"name": "Olivia Horton", "character": "Jane Crenna", "id": 1375170, "credit_id": "54423597c3a3683dfb0018f2", "cast_id": 19, "profile_path": "/nD7rHSxmAyBmjhCze5M0P4loB5x.jpg", "order": 13}, {"name": "Sean Bennett", "character": "l'autre gars", "id": 1198328, "credit_id": "544237100e0a26634d0018ca", "cast_id": 20, "profile_path": "/dLoC1JG3cfmLbumCENOWD2q0d8q.jpg", "order": 14}, {"name": "Lolita Foster", "character": "les patrouilleurs", "id": 1375175, "credit_id": "54423798c3a3683e0b001946", "cast_id": 21, "profile_path": "/26r1cXvFIA3JINfmElCbNNCVus3.jpg", "order": 15}, {"name": "Sean Nelson", "character": "un flic", "id": 75601, "credit_id": "54423869c3a3683e050019b1", "cast_id": 22, "profile_path": "/8ylzaMgIfGxbaDrhe7uJmYBSFBB.jpg", "order": 16}, {"name": "Raiden Integra", "character": "un patient", "id": 1298706, "credit_id": "544239bb0e0a266336001a94", "cast_id": 23, "profile_path": "/jNS1cQU4LpQb1B5XCWok5YE1EMz.jpg", "order": 17}, {"name": "John Cenatiempo", "character": "un flic", "id": 206398, "credit_id": "54423b6fc3a3683df2001a07", "cast_id": 24, "profile_path": "/wUkUgFzXLEPnyegeWO3HK0w9Gyg.jpg", "order": 18}, {"name": "Jenna Gavigan", "character": "Lucinda", "id": 145132, "credit_id": "54423bcfc3a3683e05001a1d", "cast_id": 25, "profile_path": "/cIREFMS2KwWKeEjpDouXwiKlUv.jpg", "order": 19}, {"name": "Victor Pagan", "character": "Un patients", "id": 59280, "credit_id": "54423c24c3a3683df2001a2d", "cast_id": 26, "profile_path": "/5HEuGK2u5cA3DK30sySmxwJHCDo.jpg", "order": 20}, {"name": "Ben Livingston", "character": "un physicien", "id": 63111, "credit_id": "54423ca7c3a3683df2001a39", "cast_id": 27, "profile_path": "/muCgYKg6v10yYNxfyxhI1aH4xLI.jpg", "order": 21}, {"name": "John Cariani", "character": "un gardien du zoo", "id": 1237356, "credit_id": "544243bb0e0a26634d001a43", "cast_id": 28, "profile_path": "/bdE7RAXV8PjKuhAbvMTrIqHeoxh.jpg", "order": 22}, {"name": "Tijuana Ricks", "character": "un officier au zoo", "id": 79997, "credit_id": "544244210e0a26633d001b8f", "cast_id": 29, "profile_path": "/z87nE0Q0AzMMMp3J0HgMj3QS7A1.jpg", "order": 23}, {"name": "Ivan Cardona", "character": "l'abitre de football", "id": 1375185, "credit_id": "544244860e0a266336001bd7", "cast_id": 30, "profile_path": "/xqypIx2jg3H2vwekaL0Bu1apUXL.jpg", "order": 24}, {"name": "Umar Khan", "character": "le leader des insurg\u00e9s", "id": 1375186, "credit_id": "544246c6c3a3683e08001a32", "cast_id": 31, "profile_path": "/UhLT8FT6geFCiH63U8YAP9B4c7.jpg", "order": 25}, {"name": "Carol Stanzione", "character": "un patient psychiatrique", "id": 1375187, "credit_id": "5442485b0e0a26633a001bd0", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Steve Hamm", "character": "", "id": 1375188, "credit_id": "544248d9c3a3683e0b001b25", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Mark David Watson", "character": "un Officier TS", "id": 1375189, "credit_id": "544249520e0a266330001bc4", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Robert Keiley", "character": "le sergent d'accueil", "id": 1375190, "credit_id": "544249b00e0a26632d001b1f", "cast_id": 35, "profile_path": "/m3xE2JyOZYLMTD3g9KKRIEw8Xlh.jpg", "order": 29}, {"name": "Adam Kobylarz", "character": "un patient psychiatrique", "id": 1375191, "credit_id": "54424bcfc3a3683e0b001b74", "cast_id": 36, "profile_path": null, "order": 30}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe4cbe9251416c75124309", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 6.1, "runtime": 118}, "687": {"poster_path": "/jAuo0Buh8wSOrAnUoiwrJIuOs0q.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39363635, "overview": "A justice drama based on a true story about a man on death row who in his last days forms a strong relationship with a nun who teaches him forgiveness and gives him spirituality as she accompanies him to his execution. Susan Sarandon won an Oscar for best female actress for her convincing portrayal of Sister Helen Prejean.", "video": false, "id": 687, "genres": [{"id": 18, "name": "Drama"}], "title": "Dead Man Walking", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112818", "adult": false, "backdrop_path": "/oCT4WUniHknoxyhzzm8aGdyTxfp.jpg", "production_companies": [{"name": "Havoc", "id": 406}, {"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1995-12-29", "popularity": 0.381202204118917, "original_title": "Dead Man Walking", "budget": 11000000, "cast": [{"name": "Susan Sarandon", "character": "Sister Helen Prejean", "id": 4038, "credit_id": "52fe426ac3a36847f801cf0f", "cast_id": 7, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 0}, {"name": "Sean Penn", "character": "Matthew Poncelet", "id": 2228, "credit_id": "52fe426ac3a36847f801cf13", "cast_id": 8, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Robert Prosky", "character": "Hilton Barber", "id": 10360, "credit_id": "52fe426ac3a36847f801cf17", "cast_id": 9, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 2}, {"name": "Raymond J. Barry", "character": "Earl Delacroix", "id": 10361, "credit_id": "52fe426ac3a36847f801cf1b", "cast_id": 10, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 3}, {"name": "R. Lee Ermey", "character": "Clyde Percy", "id": 8655, "credit_id": "52fe426ac3a36847f801cf1f", "cast_id": 11, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 4}, {"name": "Celia Weston", "character": "Mary Beth Percy", "id": 1989, "credit_id": "52fe426ac3a36847f801cf23", "cast_id": 12, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 5}, {"name": "Lois Smith", "character": "Helen's Mother", "id": 2207, "credit_id": "52fe426ac3a36847f801cf27", "cast_id": 13, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 6}, {"name": "Scott Wilson", "character": "Kaplan Farlely", "id": 6914, "credit_id": "52fe426ac3a36847f801cf2b", "cast_id": 14, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 7}, {"name": "Roberta Maxwell", "character": "Lucille Poncelet", "id": 10362, "credit_id": "52fe426ac3a36847f801cf2f", "cast_id": 15, "profile_path": "/tqkbI9bFmFPyOEeGGVyu8FPFyUu.jpg", "order": 8}, {"name": "Margo Martindale", "character": "Sister Colleen", "id": 452, "credit_id": "52fe426ac3a36847f801cf39", "cast_id": 17, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 9}, {"name": "Jack Black", "character": "Craig Poncelet", "id": 70851, "credit_id": "52fe426ac3a36847f801cf4f", "cast_id": 21, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 10}, {"name": "Ray Aranha", "character": "Luis Montoya", "id": 10366, "credit_id": "52fe426ac3a36847f801cf53", "cast_id": 22, "profile_path": null, "order": 11}], "directors": [{"name": "Tim Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801ceed", "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "id": 504}], "vote_average": 7.1, "runtime": 122}, "116741": {"poster_path": "/xxOKDTQbQo7h1h7TyrQIW7u8KcJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44000000, "overview": "Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.", "video": false, "id": 116741, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Internship", "tagline": "Hiring them was a brilliant mistake.", "vote_count": 603, "homepage": "http://www.theinternshipmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2234155", "adult": false, "backdrop_path": "/dmnaqPsvJuBSoDtbd8BkDZzPGzi.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "Wild West Picture Show Productions", "id": 2796}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2013-06-07", "popularity": 1.97657516438552, "original_title": "The Internship", "budget": 58000000, "cast": [{"name": "Owen Wilson", "character": "Nick Campbell", "id": 887, "credit_id": "52fe4b9cc3a36847f820bfb9", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Vince Vaughn", "character": "Billy McMahon", "id": 4937, "credit_id": "52fe4b9cc3a36847f820bfbd", "cast_id": 8, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Tiya Sircar", "character": "Neha", "id": 109046, "credit_id": "52fe4b9cc3a36847f820bfc1", "cast_id": 9, "profile_path": "/uqAiFL1P344fWa4cqfQhKWNoUyO.jpg", "order": 2}, {"name": "Rose Byrne", "character": "Lyle", "id": 9827, "credit_id": "52fe4b9cc3a36847f820bfc5", "cast_id": 10, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 3}, {"name": "Josh Gad", "character": "Headphones", "id": 54415, "credit_id": "52fe4b9cc3a36847f820bfc9", "cast_id": 14, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 4}, {"name": "Jessica Szohr", "character": "Marielena", "id": 130782, "credit_id": "52fe4b9cc3a36847f820bfcd", "cast_id": 15, "profile_path": "/ijp9eZ0Toq2WfrHwThfLRmGugWD.jpg", "order": 5}, {"name": "Aasif Mandvi", "character": "Mr. Chetty", "id": 20644, "credit_id": "52fe4b9cc3a36847f820bfd1", "cast_id": 16, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 6}, {"name": "Josh Brener", "character": "Lyle", "id": 1180979, "credit_id": "52fe4b9cc3a36847f820bfd5", "cast_id": 17, "profile_path": "/hLZam8XDVqkjxBBhLE0TjjugqkM.jpg", "order": 7}, {"name": "Tobit Raphael", "character": "Yo-Yo Santos", "id": 1180980, "credit_id": "52fe4b9cc3a36847f820bfd9", "cast_id": 18, "profile_path": "/cK7jS8cqHM6QjafKTp8CRRAVz9N.jpg", "order": 8}, {"name": "Dylan O'Brien", "character": "Stuart", "id": 527393, "credit_id": "52fe4b9cc3a36847f820bfdd", "cast_id": 19, "profile_path": "/6u7aDtMnAGaRjOGWgjMIrNNr0rp.jpg", "order": 9}, {"name": "Max Minghella", "character": "Graham Hawtrey", "id": 2978, "credit_id": "52fe4b9cc3a36847f820bfe1", "cast_id": 20, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 10}, {"name": "Rob Riggle", "character": "Randy", "id": 71403, "credit_id": "52fe4b9cc3a36847f820bfe5", "cast_id": 21, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 11}, {"name": "Eric Andr\u00e9", "character": "Sid", "id": 934159, "credit_id": "52fe4b9cc3a36847f820bfe9", "cast_id": 22, "profile_path": "/oHBzNeRgBXBGmuVqeTEfMDC8fX3.jpg", "order": 12}, {"name": "Harvey Guillen", "character": "Zach", "id": 210172, "credit_id": "52fe4b9cc3a36847f820bfed", "cast_id": 23, "profile_path": "/dgbjfW9MOS8OFXoeEfGyVKXqy96.jpg", "order": 13}, {"name": "Gary Anthony Williams", "character": "Bob Williams", "id": 54043, "credit_id": "549bac86c3a3682f2300309b", "cast_id": 43, "profile_path": "/2aS1bHnkEnQErbnJl8ZzQQJSzBM.jpg", "order": 14}, {"name": "Will Ferrell", "character": "Mattress Salesman (uncredited)", "id": 23659, "credit_id": "52fe4b9cc3a36847f820bff5", "cast_id": 25, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 15}, {"name": "John Goodman", "character": "Nick and Billy's Boss (uncredited)", "id": 1230, "credit_id": "52fe4b9cc3a36847f820bff9", "cast_id": 26, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 16}, {"name": "B. J. Novak", "character": "Male Interviewer", "id": 107770, "credit_id": "52fe4b9cc3a36847f820bffd", "cast_id": 27, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 17}, {"name": "Ashlee Heath", "character": "Jeanie", "id": 1439334, "credit_id": "5503428ac3a3685b9b00492e", "cast_id": 44, "profile_path": "/60U1VlhnXhpzvYycYvgIU03fxUX.jpg", "order": 18}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4b9cc3a36847f820bf9d", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.2, "runtime": 119}, "69668": {"poster_path": "/xRLhGEFzwU0hjyxAPI9dH0ezmoa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38502340, "overview": "Publisher Will Atenton (Daniel Craig) quits a lucrative job in New York to relocate his wife, Libby (Rachel Weisz), and their daughters to a quaint town in New England. As they settle into their home, however, the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town's prime suspect. With help from a neighbor (Naomi Watts) who was close to the murdered family, Will pieces together a horrifying chain of events.", "video": false, "id": 69668, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Dream House", "tagline": "Once upon a time, there were two little girls who lived in a house.", "vote_count": 101, "homepage": "http://www.dreamhousemovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1462041", "adult": false, "backdrop_path": "/jA4sN4MEzs3J96nb3CJJfCPP77Z.jpg", "production_companies": [{"name": "Cliffjack Motion Pictures", "id": 8430}, {"name": "Morgan Creek Productions", "id": 10210}], "release_date": "2011-09-30", "popularity": 0.396186221337636, "original_title": "Dream House", "budget": 50000000, "cast": [{"name": "Daniel Craig", "character": "Will Atenton", "id": 8784, "credit_id": "52fe47d4c3a368484e0dbd23", "cast_id": 2, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Naomi Watts", "character": "Ann Patterson", "id": 3489, "credit_id": "52fe47d4c3a368484e0dbd27", "cast_id": 3, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Libby Atenton", "id": 3293, "credit_id": "52fe47d4c3a368484e0dbd2b", "cast_id": 4, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Marton Csokas", "character": "Jack Patterson", "id": 20982, "credit_id": "52fe47d4c3a368484e0dbd2f", "cast_id": 5, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 3}, {"name": "Elias Koteas", "character": "Boyce", "id": 13550, "credit_id": "52fe47d4c3a368484e0dbd39", "cast_id": 7, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 4}, {"name": "Taylor Geare", "character": "Trish", "id": 967376, "credit_id": "52fe47d4c3a368484e0dbd7f", "cast_id": 20, "profile_path": "/2ITSJXHWdkAFWu1hqIfr53zib8J.jpg", "order": 5}, {"name": "Claire Geare", "character": "Dee Dee", "id": 973135, "credit_id": "52fe47d4c3a368484e0dbd83", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Rachel G. Fox", "character": "Chloe Patterson", "id": 1001947, "credit_id": "52fe47d4c3a368484e0dbd87", "cast_id": 22, "profile_path": "/n1pnhKXXUtpD4NDUO3GyEvRWC5M.jpg", "order": 7}, {"name": "Jane Alexander", "character": "Dr. Greeley", "id": 13724, "credit_id": "52fe47d4c3a368484e0dbd8b", "cast_id": 23, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 8}, {"name": "Brian Murray", "character": "Dr. Medlin", "id": 56618, "credit_id": "52fe47d4c3a368484e0dbd8f", "cast_id": 24, "profile_path": "/bNRA2o9EGVfT3cEWCFm8f0rUjFK.jpg", "order": 9}, {"name": "Bernadette Quigley", "character": "Heather Keeler", "id": 71821, "credit_id": "52fe47d4c3a368484e0dbd93", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Sarah Gadon", "character": "Cindi", "id": 190895, "credit_id": "52fe47d4c3a368484e0dbd97", "cast_id": 26, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 11}, {"name": "Gregory Smith", "character": "Artie", "id": 20814, "credit_id": "52fe47d4c3a368484e0dbd9b", "cast_id": 27, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 12}, {"name": "Mark Wilson", "character": "Capt. Conklin", "id": 207690, "credit_id": "52fe47d4c3a368484e0dbd9f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "David Huband", "character": "Officer Nelson", "id": 5922, "credit_id": "52fe47d4c3a368484e0dbda3", "cast_id": 29, "profile_path": "/o8wwJkxTtoyVggtkKVg07DhhBfd.jpg", "order": 14}], "directors": [{"name": "Jim Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe47d4c3a368484e0dbd1f", "profile_path": "/mfukw1JcUsXmUzt6IoaayMaescv.jpg", "id": 53334}], "vote_average": 5.7, "runtime": 92}, "4133": {"poster_path": "/yCLLbZzAa7jreGus7pvjZmL0bj7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83282296, "overview": "A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.", "video": false, "id": 4133, "genres": [{"id": 18, "name": "Drama"}], "title": "Blow", "tagline": "Based on a True Story.", "vote_count": 298, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0221027", "adult": false, "backdrop_path": "/apgCDX35BXsVSfzhZ9POZ7lq9D6.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2001-04-05", "popularity": 1.31227000507564, "original_title": "Blow", "budget": 53000000, "cast": [{"name": "Johnny Depp", "character": "George Jung", "id": 85, "credit_id": "52fe43aec3a36847f80675d5", "cast_id": 44, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Mirtha Jung", "id": 955, "credit_id": "52fe43aec3a36847f80675d9", "cast_id": 45, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Ethan Suplee", "character": "Tuna", "id": 824, "credit_id": "52fe43aec3a36847f8067547", "cast_id": 9, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Fred Jung", "id": 11477, "credit_id": "52fe43aec3a36847f80675dd", "cast_id": 46, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Franka Potente", "character": "Barbara Buckley", "id": 679, "credit_id": "52fe43aec3a36847f806752f", "cast_id": 3, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 4}, {"name": "Rachel Griffiths", "character": "Ermine Jung", "id": 3052, "credit_id": "52fe43aec3a36847f8067533", "cast_id": 4, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 5}, {"name": "Paul Reubens", "character": "Derek Foreal", "id": 5129, "credit_id": "52fe43aec3a36847f8067537", "cast_id": 5, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 6}, {"name": "Jordi Moll\u00e0", "character": "Diego Delgado", "id": 31384, "credit_id": "52fe43aec3a36847f806753b", "cast_id": 6, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 7}, {"name": "Cliff Curtis", "character": "Pablo Escobar", "id": 7248, "credit_id": "52fe43aec3a36847f806753f", "cast_id": 7, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 8}, {"name": "Miguel Sandoval", "character": "Augusto Oliveras", "id": 30488, "credit_id": "52fe43aec3a36847f8067543", "cast_id": 8, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 9}, {"name": "Kevin Gage", "character": "Leon Minghella", "id": 34839, "credit_id": "52fe43aec3a36847f806754b", "cast_id": 11, "profile_path": "/shMqCosEFquPy6qB8RfCCcDPq7M.jpg", "order": 10}, {"name": "Max Perlich", "character": "Kevin Dulli", "id": 7268, "credit_id": "52fe43aec3a36847f806754f", "cast_id": 12, "profile_path": "/aITtjR6iSepDooSvVjB1zY5ehYx.jpg", "order": 11}, {"name": "Jesse James", "character": "Young George", "id": 10135, "credit_id": "52fe43aec3a36847f8067553", "cast_id": 13, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 12}, {"name": "Lola Glaudini", "character": "Rada", "id": 34845, "credit_id": "52fe43aec3a36847f8067557", "cast_id": 20, "profile_path": "/xgp8VtX9rhsRot3fshmomStvg6b.jpg", "order": 13}, {"name": "Emma Roberts", "character": "Young Kristina Jung", "id": 34847, "credit_id": "52fe43aec3a36847f806755b", "cast_id": 22, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 14}, {"name": "Jaime King", "character": "Kristina Jung", "id": 5915, "credit_id": "52fe43aec3a36847f806755f", "cast_id": 23, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 15}], "directors": [{"name": "Ted Demme", "department": "Directing", "job": "Director", "credit_id": "52fe43aec3a36847f8067565", "profile_path": null, "id": 34849}], "vote_average": 7.2, "runtime": 124}, "8321": {"poster_path": "/kBABboeLU2HsKWSG7DwiF9saHl5.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32002538, "overview": "Ray and Ken, two hit men, are in Bruges, Belgium, waiting for their next mission. While they are there they have time to think and discuss their previous assignment. When the mission is revealed to Ken, it is not what he expected.", "video": false, "id": 8321, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "In Bruges", "tagline": "Shoot first. Sightsee later.", "vote_count": 347, "homepage": "http://www.filminfocus.com/film/in_bruges", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780536", "adult": false, "backdrop_path": "/rGxc09T1jXk98HforvqhBaHIaRW.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Blueprint Pictures", "id": 2376}], "release_date": "2008-02-08", "popularity": 1.10753712585291, "original_title": "In Bruges", "budget": 15000000, "cast": [{"name": "Colin Farrell", "character": "Ray", "id": 72466, "credit_id": "52fe449ec3a36847f80a06d9", "cast_id": 11, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Brendan Gleeson", "character": "Ken", "id": 2039, "credit_id": "52fe449ec3a36847f80a06dd", "cast_id": 12, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Harry", "id": 5469, "credit_id": "52fe449ec3a36847f80a06e1", "cast_id": 13, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Chloe", "id": 11291, "credit_id": "52fe449ec3a36847f80a06e5", "cast_id": 14, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 3}, {"name": "Thekla Reuten", "character": "Marie", "id": 45749, "credit_id": "52fe449ec3a36847f80a06e9", "cast_id": 15, "profile_path": "/n6qovt4SJ5hefsW1RHgpdbOPENL.jpg", "order": 4}, {"name": "Jordan Prentice", "character": "Jimmy", "id": 54476, "credit_id": "52fe449ec3a36847f80a06ed", "cast_id": 16, "profile_path": "/6h6zFtJapmtixIenZJV0UYDzCNc.jpg", "order": 5}, {"name": "Elizabeth Berrington", "character": "Natalie", "id": 42998, "credit_id": "52fe449ec3a36847f80a06f1", "cast_id": 17, "profile_path": "/kMipntnzem6NBzy0pCTBjc7eKxd.jpg", "order": 6}, {"name": "J\u00e9r\u00e9mie Renier", "character": "Eirik", "id": 51325, "credit_id": "52fe449ec3a36847f80a06f5", "cast_id": 18, "profile_path": "/oIb19NzIJg0Rz9z2o2KvpeEy55t.jpg", "order": 7}, {"name": "\u017deljko Ivanek", "character": "Canadian Guy", "id": 6752, "credit_id": "52fe449ec3a36847f80a06f9", "cast_id": 19, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 8}, {"name": "Mark Donovan", "character": "Overweight Man", "id": 211413, "credit_id": "52fe449ec3a36847f80a06fd", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Eric Godon", "character": "Yuri", "id": 145299, "credit_id": "52fe449ec3a36847f80a0701", "cast_id": 21, "profile_path": "/iKWCAMxgHIWoJ1EJG4gWKEPYxbE.jpg", "order": 10}, {"name": "Rudy Blomme", "character": "Ticket Seller", "id": 1210042, "credit_id": "52fe449ec3a36847f80a0705", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Theo Stevenson", "character": "Boy in Church", "id": 588742, "credit_id": "52fe449ec3a36847f80a0709", "cast_id": 23, "profile_path": "/svogl54AG6yj5zZPLzvnetN7Sxi.jpg", "order": 12}, {"name": "Olivier Bonjour", "character": "Film Director", "id": 1210044, "credit_id": "52fe449ec3a36847f80a070d", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Stephanie Carey", "character": "Canadian Girl", "id": 1210045, "credit_id": "52fe449ec3a36847f80a0711", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Jamie Edgell", "character": "Boat Driver", "id": 58920, "credit_id": "52fe449ec3a36847f80a0715", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Ann Elsley", "character": "Overweight Woman #2", "id": 1091468, "credit_id": "52fe449ec3a36847f80a0719", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Jean Mark Favorin", "character": "Policeman", "id": 1210046, "credit_id": "52fe449ec3a36847f80a071d", "cast_id": 28, "profile_path": null, "order": 17}], "directors": [{"name": "Martin McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe449ec3a36847f80a069f", "profile_path": "/yvpnpkDG0yV0No6TuZ8QorFZ8d.jpg", "id": 54472}], "vote_average": 7.2, "runtime": 107}, "77866": {"poster_path": "/3S6vYQjMXVVzfYYU61L8egVxrVk.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63100000, "overview": "To protect his brother-in-law from a drug lord, a former smuggler heads to Panama to score millions of dollars in counterfeit bills.", "video": false, "id": 77866, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Contraband", "tagline": "What would you hide to protect your family?", "vote_count": 361, "homepage": "http://www.contrabandmovie.net", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1524137", "adult": false, "backdrop_path": "/vUIxLVMblTY6vdKI7FsTKsWpr6q.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}, {"name": "Blueeyes Productions", "id": 10970}, {"name": "Leverage Management", "id": 8536}, {"name": "Closest to the Hole Productions", "id": 8537}, {"name": "Farraday Films", "id": 8538}, {"name": "Leverage Entertainment", "id": 8539}, {"name": "StudioCanal", "id": 694}], "release_date": "2012-01-13", "popularity": 0.644196034612308, "original_title": "Contraband", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Chris Farraday", "id": 13240, "credit_id": "52fe497fc3a368484e12e7a1", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Kate Farraday", "id": 3967, "credit_id": "52fe497fc3a368484e12e7a5", "cast_id": 3, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Ben Foster", "character": "Sebastian Abney", "id": 11107, "credit_id": "52fe497fc3a368484e12e7a9", "cast_id": 4, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "Tim Briggs", "id": 1771, "credit_id": "52fe497fc3a368484e12e7ad", "cast_id": 5, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "Captain Camp", "id": 18999, "credit_id": "52fe497fc3a368484e12e7b1", "cast_id": 7, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "William Lucking", "character": "Bud Farraday", "id": 131725, "credit_id": "52fe497fc3a368484e12e7b5", "cast_id": 8, "profile_path": "/pWDDkUPU83M11T95MrYYwWvB2BY.jpg", "order": 5}, {"name": "Diego Luna", "character": "Gonzalo", "id": 8688, "credit_id": "52fe497fc3a368484e12e7b9", "cast_id": 9, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 6}, {"name": "Caleb Landry Jones", "character": "Andy", "id": 572541, "credit_id": "52fe497fc3a368484e12e7bd", "cast_id": 10, "profile_path": "/73T6DLPggbDaIDLz162o01dCg6I.jpg", "order": 7}, {"name": "Robert Wahlberg", "character": "John Bryce", "id": 4733, "credit_id": "52fe497fc3a368484e12e7c1", "cast_id": 11, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 8}, {"name": "Lukas Haas", "character": "Danny Raymer", "id": 526, "credit_id": "52fe4980c3a368484e12e825", "cast_id": 28, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 9}, {"name": "David O'Hara", "character": "Jim Church", "id": 2482, "credit_id": "53022288c3a3680a372eccd0", "cast_id": 29, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 10}, {"name": "\u00d3lafur Darri \u00d3lafsson", "character": "Olaf", "id": 110902, "credit_id": "530222a1c3a3680a2131e9b5", "cast_id": 30, "profile_path": "/fDUMXqM9UALD86fiC076XVgitDO.jpg", "order": 11}, {"name": "Jason Mitchell", "character": "Walter", "id": 1115984, "credit_id": "530222bcc3a36809fd2d3cab", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Paul LeBlanc", "character": "CBP Official", "id": 1293752, "credit_id": "530222cbc3a3680a1930b6df", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Amber Gaiennie", "character": "Danny's Bride", "id": 550318, "credit_id": "530222d8c3a3685ce7067335", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Baltasar Korm\u00e1kur", "department": "Directing", "job": "Director", "credit_id": "52fe497fc3a368484e12e79d", "profile_path": "/Aml85bUldhLbVubYBk38ag8JmVK.jpg", "id": 67813}], "vote_average": 6.1, "runtime": 109}, "4141": {"poster_path": "/44SYjI4rV7tjYhRPzMRUj5UjDYJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26820641, "overview": "A man named Mr. Smith delivers a woman's baby during a shootout, and is then called upon to protect the newborn from the army of gunmen.", "video": false, "id": 4141, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Shoot 'Em Up", "tagline": "Just another family man making a living.", "vote_count": 153, "homepage": "http://wwws.warnerbros.de/shootemup/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0465602", "adult": false, "backdrop_path": "/6bqvfvhXuWMfDEaTGsK19HNGsy1.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Angry Films", "id": 12087}], "release_date": "2007-07-26", "popularity": 1.12222410779023, "original_title": "Shoot 'Em Up", "budget": 39000000, "cast": [{"name": "Clive Owen", "character": "Smith", "id": 2296, "credit_id": "52fe43aec3a36847f8067779", "cast_id": 12, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Monica Bellucci", "character": "Donna Quintano", "id": 28782, "credit_id": "52fe43aec3a36847f806777d", "cast_id": 13, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Hertz", "id": 13242, "credit_id": "52fe43aec3a36847f8067781", "cast_id": 14, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Stephen McHattie", "character": "Hammerson", "id": 230, "credit_id": "52fe43aec3a36847f8067785", "cast_id": 15, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 3}, {"name": "Greg Bryk", "character": "Lone Man", "id": 231, "credit_id": "52fe43aec3a36847f8067789", "cast_id": 16, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 4}, {"name": "Daniel Pilon", "character": "Senator Rutledge", "id": 34971, "credit_id": "52fe43aec3a36847f806778d", "cast_id": 17, "profile_path": "/jlWqpqxfuX2AHdHMkNCkpOShciO.jpg", "order": 5}, {"name": "Sidney Mende-Gibson", "character": "Baby Oliver", "id": 963600, "credit_id": "52fe43aec3a36847f80677af", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Lucas Mende-Gibson", "character": "Baby Oliver", "id": 963601, "credit_id": "52fe43aec3a36847f80677b3", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Kaylyn Yellowlees", "character": "Baby Oliver", "id": 963602, "credit_id": "52fe43aec3a36847f80677b7", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Ramona Pringle", "character": "Baby's Mother", "id": 219393, "credit_id": "52fe43aec3a36847f80677bb", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Julian Richings", "character": "Hertz's Driver", "id": 2320, "credit_id": "52fe43aec3a36847f80677bf", "cast_id": 27, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 10}, {"name": "Tony Munch", "character": "Man Who Rides Shotgun", "id": 5927, "credit_id": "52fe43aec3a36847f80677c3", "cast_id": 28, "profile_path": "/1VaMaAImwDWAjzKbrn8T1prnOdf.jpg", "order": 11}, {"name": "Scott McCord", "character": "Killer Shot in Behind", "id": 124315, "credit_id": "52fe43aec3a36847f80677c7", "cast_id": 29, "profile_path": null, "order": 12}], "directors": [{"name": "Michael Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43aec3a36847f8067745", "profile_path": "/s4u26Oo2fUqFc1ZwFqo4y8Hmh67.jpg", "id": 24949}], "vote_average": 6.2, "runtime": 86}, "20526": {"poster_path": "/eZW5Rv0peoGrC0RY12lwzoLPwmx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 400062763, "overview": "Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.", "video": false, "id": 20526, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "TRON: Legacy", "tagline": "The Game Has Changed.", "vote_count": 1350, "homepage": "http://disney.go.com/tron/", "belongs_to_collection": {"backdrop_path": "/o8NBfffQPE9tHTR9l7FuWbdVPHu.jpg", "poster_path": "/cvFlDIfOwhYe4ouAAfdyq9E5zlZ.jpg", "id": 63043, "name": "TRON Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1104001", "adult": false, "backdrop_path": "/poNggE1pzQpezVcTUSPKpacujCP.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "LivePlanet", "id": 7161}, {"name": "Sean Bailey Productions", "id": 23791}], "release_date": "2010-12-16", "popularity": 1.62149000604, "original_title": "TRON: Legacy", "budget": 170000000, "cast": [{"name": "Garrett Hedlund", "character": "Sam Flynn", "id": 9828, "credit_id": "52fe43ebc3a368484e005d19", "cast_id": 44, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 0}, {"name": "Jeff Bridges", "character": "Kevin Flynn / Clu", "id": 1229, "credit_id": "52fe43ebc3a368484e005cfd", "cast_id": 37, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Quorra", "id": 59315, "credit_id": "52fe43eac3a368484e005c81", "cast_id": 3, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Bruce Boxleitner", "character": "Alan Bradley / Tron", "id": 2547, "credit_id": "52fe43ebc3a368484e005d05", "cast_id": 39, "profile_path": "/8CWvXiTru0EPH0M9ecLQ84E0YWA.jpg", "order": 3}, {"name": "Yaya DaCosta", "character": "Siren", "id": 60033, "credit_id": "52fe43eac3a368484e005cd9", "cast_id": 25, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 4}, {"name": "Serinda Swan", "character": "Siren", "id": 86268, "credit_id": "52fe43eac3a368484e005cdd", "cast_id": 28, "profile_path": "/sZvN7oG3bwNvpPMOWGXxNErd6y6.jpg", "order": 5}, {"name": "Beau Garrett", "character": "Siren", "id": 20403, "credit_id": "52fe43eac3a368484e005ce5", "cast_id": 30, "profile_path": "/eSnhComJ12wMk4PoMNpuoz7bTKO.jpg", "order": 6}, {"name": "Elizabeth Mathis", "character": "Siren", "id": 130108, "credit_id": "52fe43ebc3a368484e005cf9", "cast_id": 36, "profile_path": "/uOI0gbMG6D6j5IDM6h2kxYcsqn0.jpg", "order": 7}, {"name": "James Frain", "character": "Jarvis", "id": 22063, "credit_id": "52fe43eac3a368484e005ce1", "cast_id": 29, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 8}, {"name": "Amy Esterle", "character": "Young Mrs. Flynn", "id": 86269, "credit_id": "52fe43ebc3a368484e005ce9", "cast_id": 32, "profile_path": "/7iB0IqV95GGRqtavobnJHSubzXA.jpg", "order": 9}, {"name": "Brandon Jay McLaren", "character": "Sobel", "id": 58371, "credit_id": "52fe43ebc3a368484e005ced", "cast_id": 33, "profile_path": "/4E6tZJhsgkyI5VNrZCV91XP7o6o.jpg", "order": 10}, {"name": "Michael Sheen", "character": "Castor / Zuse", "id": 3968, "credit_id": "52fe43ebc3a368484e005d01", "cast_id": 38, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 11}, {"name": "Owen Best", "character": "Young Sam", "id": 109205, "credit_id": "52fe43ebc3a368484e005cf1", "cast_id": 34, "profile_path": "/yPcXiWMFlsM1IxzzFGhIkLckD3G.jpg", "order": 12}, {"name": "Michael Teigen", "character": "Green Light Cycle Rider", "id": 37980, "credit_id": "52fe43ebc3a368484e005cf5", "cast_id": 35, "profile_path": "/uoWbOgiRB2zxafGp0OR9BJNmuGE.jpg", "order": 13}, {"name": "Daft Punk", "character": "Masked DJ's", "id": 67931, "credit_id": "52fe43ebc3a368484e005d09", "cast_id": 40, "profile_path": "/bfF9TJOdE9foiDBYGitzokVuknq.jpg", "order": 14}, {"name": "Ron Selmour", "character": "Chattering Homeless Man", "id": 10874, "credit_id": "52fe43ebc3a368484e005d0d", "cast_id": 41, "profile_path": "/zh4wuPDU4ftPd4THoXItmryfmAM.jpg", "order": 15}, {"name": "Conrad Coates", "character": "Bartik", "id": 43263, "credit_id": "52fe43ebc3a368484e005d11", "cast_id": 42, "profile_path": "/49Td3s8QVy8RPEfUb9eAzPyV9rP.jpg", "order": 16}, {"name": "Kis Yurij", "character": "Half Faced Man (as Yurij Kis)", "id": 145110, "credit_id": "52fe43ebc3a368484e005d15", "cast_id": 43, "profile_path": null, "order": 17}], "directors": [{"name": "Joseph Kosinski", "department": "Directing", "job": "Director", "credit_id": "52fe43eac3a368484e005c87", "profile_path": "/q83mNUDP6eVjlY9D6LCjJcXPlsX.jpg", "id": 86270}], "vote_average": 6.2, "runtime": 125}, "12335": {"poster_path": "/1mWFExXAlUSgfBKGkK3mjH1iXk4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three children evacuated from London during World War II are forced to stay with an eccentric spinster (Eglantine Price). The children's initial fears disappear when they find out she is in fact a trainee witch.", "video": false, "id": 12335, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Bedknobs and Broomsticks", "tagline": "You'll beWITCHED! You'll beDAZZLED! You'll be swept into a world of enchantment BEYOND ANYTHING BEFORE!", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066817", "adult": false, "backdrop_path": "/ttOa1qlKCNLYJgdpsiDrVva9VOJ.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1971-10-07", "popularity": 0.833314429139411, "original_title": "Bedknobs and Broomsticks", "budget": 20000000, "cast": [{"name": "Angela Lansbury", "character": "Miss Price", "id": 14730, "credit_id": "52fe44db9251416c75043667", "cast_id": 1, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 0}, {"name": "David Tomlinson", "character": "Emelius", "id": 5825, "credit_id": "52fe44db9251416c7504366b", "cast_id": 2, "profile_path": "/1QJLJtcJ4x8DQFflrbd2144ZzLg.jpg", "order": 1}, {"name": "Roddy McDowall", "character": "Mr. Jelk", "id": 7505, "credit_id": "52fe44db9251416c7504366f", "cast_id": 3, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 2}, {"name": "Sam Jaffe", "character": "Bookman", "id": 10024, "credit_id": "52fe44db9251416c75043673", "cast_id": 4, "profile_path": "/drxy1JkTOjhUhQnrFnepTmSHELd.jpg", "order": 3}, {"name": "John Ericson", "character": "Col. Heller", "id": 41231, "credit_id": "52fe44dc9251416c750436a7", "cast_id": 13, "profile_path": "/7yOMIm3B7DOKUJI01N06d2S0eDN.jpg", "order": 4}, {"name": "Bruce Forsyth", "character": "Swinburne", "id": 210620, "credit_id": "52fe44dc9251416c750436ab", "cast_id": 14, "profile_path": "/bfY4lDlGY6cF4BEhpHf0VtCHu4v.jpg", "order": 5}, {"name": "Cindy O'Callaghan", "character": "Carrie", "id": 233563, "credit_id": "52fe44dc9251416c750436af", "cast_id": 15, "profile_path": "/uVkM0nMtnx23Ul1IZCjJVnhDRLt.jpg", "order": 6}, {"name": "Roy Snart", "character": "Paul", "id": 1031274, "credit_id": "52fe44dc9251416c750436b3", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Ian Weighill", "character": "Charlie", "id": 1073801, "credit_id": "52fe44dc9251416c750436b7", "cast_id": 17, "profile_path": "/kngt6OqJVZdpYKSx3sPPEZtcFly.jpg", "order": 8}, {"name": "Tessie O'Shea", "character": "Mrs. Hobday", "id": 123904, "credit_id": "52fe44dc9251416c750436bb", "cast_id": 18, "profile_path": "/h2pcinYLJy9EWKNfxE01DnlyYnA.jpg", "order": 9}, {"name": "Arthur Gould-Porter", "character": "Capt. Greer", "id": 153688, "credit_id": "52fe44dc9251416c750436bf", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Ben Wrigley", "character": "Portobello Rd. Workman", "id": 956544, "credit_id": "52fe44dc9251416c750436c3", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Reginald Owen", "character": "Gen. Teagler", "id": 5832, "credit_id": "52fe44dc9251416c750436c7", "cast_id": 21, "profile_path": "/bgtpAl7ICrDyJQzjglLiVY6tlMw.jpg", "order": 12}, {"name": "Cyril Delevanti", "character": "Elderly Farmer", "id": 88906, "credit_id": "52fe44dc9251416c750436cb", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Rick Traeger", "character": "German Sergeant", "id": 165473, "credit_id": "52fe44dc9251416c750436cf", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Robert Stevenson", "department": "Directing", "job": "Director", "credit_id": "52fe44db9251416c75043679", "profile_path": "/86MMwlxQ7AhJMn1JnDg8hjZbnSy.jpg", "id": 5834}], "vote_average": 6.1, "runtime": 117}, "4147": {"poster_path": "/jn0GH8klINSQtRNifY8W2Kv4ajl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181001478, "overview": "Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.", "video": false, "id": 4147, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Road to Perdition", "tagline": "Pray for Michael Sullivan.", "vote_count": 231, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0257044", "adult": false, "backdrop_path": "/285qaXgc8vtmxTN77HmPmvpBMDP.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "DreamWorks SKG", "id": 27}, {"name": "DC Comics", "id": 429}], "release_date": "2002-07-12", "popularity": 0.931067807714721, "original_title": "Road to Perdition", "budget": 80000000, "cast": [{"name": "Tom Hanks", "character": "Michael Sullivan", "id": 31, "credit_id": "52fe43aec3a36847f80678c7", "cast_id": 13, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Jennifer Jason Leigh", "character": "Annie Sullivan", "id": 10431, "credit_id": "52fe43afc3a36847f80678cb", "cast_id": 14, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 1}, {"name": "Liam Aiken", "character": "Peter Sullivan", "id": 19977, "credit_id": "52fe43afc3a36847f80678cf", "cast_id": 15, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 2}, {"name": "Paul Newman", "character": "John Rooney", "id": 3636, "credit_id": "52fe43afc3a36847f80678d3", "cast_id": 16, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 3}, {"name": "Daniel Craig", "character": "Connor Rooney", "id": 8784, "credit_id": "52fe43afc3a36847f80678d7", "cast_id": 17, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 4}, {"name": "Ciar\u00e1n Hinds", "character": "Finn McGovern", "id": 8785, "credit_id": "52fe43afc3a36847f80678db", "cast_id": 18, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 5}, {"name": "David Darlow", "character": "Jack Kelly", "id": 35022, "credit_id": "52fe43afc3a36847f80678df", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Kevin Chamberlin", "character": "Frank the Bouncer", "id": 34395, "credit_id": "52fe43afc3a36847f80678e3", "cast_id": 21, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 8}, {"name": "Doug Spinuzza", "character": "Calvino", "id": 35024, "credit_id": "52fe43afc3a36847f80678e7", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Jude Law", "character": "Harlen Maguire", "id": 9642, "credit_id": "52fe43afc3a36847f80678eb", "cast_id": 23, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 10}, {"name": "Stanley Tucci", "character": "Frank Nitti", "id": 2283, "credit_id": "52fe43afc3a36847f80678ef", "cast_id": 24, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 11}, {"name": "Kurt Naebig", "character": "Tenement Murderer", "id": 35025, "credit_id": "52fe43afc3a36847f80678f3", "cast_id": 25, "profile_path": "/8OkslRWPaLJPhnoy0KU325fKDig.jpg", "order": 12}, {"name": "Duane Sharp", "character": "Father Callaway", "id": 35026, "credit_id": "52fe43afc3a36847f80678f7", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Tyler Hoechlin", "character": "Michael Sullivan, Jr.", "id": 78198, "credit_id": "52fe43afc3a36847f80678fb", "cast_id": 27, "profile_path": "/9AMrsrX4x4Tls8OEf7nFM9S8wvm.jpg", "order": 14}, {"name": "Nicolas Cade", "character": "Boy Michael Fights", "id": 1132472, "credit_id": "52fe43afc3a36847f80678ff", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe43aec3a36847f8067881", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.9, "runtime": 117}, "4148": {"poster_path": "/bnOK1lmdlqdy2HX6IgKx9TQD7Ax.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75225693, "overview": "A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.", "video": false, "id": 4148, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Revolutionary Road", "tagline": "How do you break free without breaking apart?", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0959337", "adult": false, "backdrop_path": "/vVK04ayDtN2186jgkCtFjvw8IlN.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "BBC Films", "id": 288}, {"name": "Neal Street Productions", "id": 1522}, {"name": "Evamere Entertainment", "id": 1550}, {"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2008-12-19", "popularity": 0.559192866756078, "original_title": "Revolutionary Road", "budget": 35000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Frank Wheeler", "id": 6193, "credit_id": "52fe43afc3a36847f8067929", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Kate Winslet", "character": "April Wheeler", "id": 204, "credit_id": "52fe43afc3a36847f806792d", "cast_id": 3, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Michael Shannon", "character": "John Givings", "id": 335, "credit_id": "52fe43afc3a36847f8067941", "cast_id": 8, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 2}, {"name": "David Harbour", "character": "Shep Campbell", "id": 35029, "credit_id": "52fe43afc3a36847f8067945", "cast_id": 9, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 3}, {"name": "Kathryn Hahn", "character": "Milly Campbell", "id": 17696, "credit_id": "5409f5870e0a262b43000515", "cast_id": 16, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 4}, {"name": "Kathy Bates", "character": "Mrs. Helen Givings", "id": 8534, "credit_id": "52fe43afc3a36847f8067931", "cast_id": 4, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 5}, {"name": "Zoe Kazan", "character": "Maureen Grube", "id": 35028, "credit_id": "52fe43afc3a36847f8067939", "cast_id": 6, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 6}, {"name": "Dylan Baker", "character": "Jack Ordway", "id": 19152, "credit_id": "5409f5d10e0a262b3d000570", "cast_id": 17, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 7}, {"name": "Jay O. Sanders", "character": "Bart Pollock", "id": 6067, "credit_id": "5409f62f0e0a262b40000518", "cast_id": 20, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 8}, {"name": "Ryan Simpkins", "character": "Jennifer Wheeler", "id": 35027, "credit_id": "52fe43afc3a36847f8067935", "cast_id": 5, "profile_path": "/lTOB3hz1xPvgMKe3QhRAxvz2O6U.jpg", "order": 9}, {"name": "Ty Simpkins", "character": "Michael Wheeler", "id": 17181, "credit_id": "52fe43afc3a36847f806793d", "cast_id": 7, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 10}, {"name": "Max Casella", "character": "Ed Small", "id": 7133, "credit_id": "5409f5ec0e0a262b3d000574", "cast_id": 18, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 11}, {"name": "Richard Easton", "character": "Howard Givings", "id": 172705, "credit_id": "5409f61a0e0a262b4c00054f", "cast_id": 19, "profile_path": "/gvFTE9Zqk5y69B4FKrAhubu4071.jpg", "order": 12}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe43afc3a36847f8067925", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.2, "runtime": 119}, "77877": {"poster_path": "/ug0WQaS1echV9BQoSeL2im9I3hk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99357138, "overview": "U.S. Marine Sergeant Logan Thibault (Efron) returns from his third tour of duty in Iraq, with the one thing he credits with keeping him alive-a photograph he found of a woman he doesn't even know. Learning her name is Beth (Schilling) and where she lives, he shows up at her door, and ends up taking a job at her family-run local kennel. Despite her initial mistrust and the complications in her life, a romance develops between them, giving Logan hope that Beth could be much more than his good luck charm.", "video": false, "id": 77877, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Lucky One", "tagline": "", "vote_count": 200, "homepage": "http://theluckyonemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1327194", "adult": false, "backdrop_path": "/qJnrOZirSyDAZj7oGulRLwPXtqz.jpg", "production_companies": [{"name": "Langley Park Production", "id": 8057}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2012-05-02", "popularity": 0.960939732344126, "original_title": "The Lucky One", "budget": 25000000, "cast": [{"name": "Zac Efron", "character": "Logan Thibault", "id": 29222, "credit_id": "52fe4980c3a368484e12eb2f", "cast_id": 4, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Blythe Danner", "character": "Nana", "id": 10401, "credit_id": "52fe4980c3a368484e12eb33", "cast_id": 5, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 1}, {"name": "Taylor Schilling", "character": "Beth Clayton", "id": 221809, "credit_id": "52fe4980c3a368484e12eb37", "cast_id": 6, "profile_path": "/eTC6YEW9kx508bIEzgxFKDE64X6.jpg", "order": 2}, {"name": "Jay R. Ferguson", "character": "Keith Clayton", "id": 80289, "credit_id": "52fe4980c3a368484e12eb3b", "cast_id": 7, "profile_path": "/60VbWysvzzA1947trURZUfbuHSq.jpg", "order": 3}, {"name": "Riley Thomas Stewart", "character": "Ben Clayton", "id": 211429, "credit_id": "52fe4980c3a368484e12eb3f", "cast_id": 8, "profile_path": "/vt8iHBG65Cy2bFNtyGcTspgrASf.jpg", "order": 4}, {"name": "Joe Chrest", "character": "Deputy Moore", "id": 141762, "credit_id": "52fe4980c3a368484e12eb43", "cast_id": 9, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 5}, {"name": "Jillian Batherson", "character": "Amanda", "id": 550317, "credit_id": "52fe4980c3a368484e12eb47", "cast_id": 10, "profile_path": "/zfGo1KF4qT2rvcqtln8YupQVsyF.jpg", "order": 6}, {"name": "Courtney J. Clark", "character": "Logans`s Sister", "id": 568045, "credit_id": "52fe4980c3a368484e12eb4b", "cast_id": 11, "profile_path": "/b1AMNTH43h9NVmy4ssnzocHSfx.jpg", "order": 7}, {"name": "Sharon Morris", "character": "Principal Miller", "id": 142374, "credit_id": "52fe4980c3a368484e12eb4f", "cast_id": 12, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 8}, {"name": "Russell Durham Comegys", "character": "Roger Lyle", "id": 582656, "credit_id": "52fe4980c3a368484e12eb53", "cast_id": 13, "profile_path": "/AdvoXYRHoDOtByERBqeH9GpS3ui.jpg", "order": 9}], "directors": [{"name": "Scott Hicks", "department": "Directing", "job": "Director", "credit_id": "52fe4980c3a368484e12eb2b", "profile_path": "/saA36yAQYyTs0kzmH5hBprEszJX.jpg", "id": 33433}], "vote_average": 6.8, "runtime": 101}, "10249": {"poster_path": "/tFOoAfyznMdCRJIvX3vDOpr3MCg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62000000, "overview": "Young 1930's pilot Cliff Secord stumbles on a top secret rocket-pack and with the help of his mechanic/mentor, Peevee, he attempts to save his girl and stop the Nazis as The Rocketeer.", "video": false, "id": 10249, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "The Rocketeer", "tagline": "Three years before the United States declares war, Cliff Secord leads America's first battle against the Nazis.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102803", "adult": false, "backdrop_path": "/2uD68TBNAuhQmIqqi9xr1ElF8zH.jpg", "production_companies": [{"name": "The Gordon Company", "id": 48132}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners IV", "id": 10282}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1991-06-21", "popularity": 0.624620787052062, "original_title": "The Rocketeer", "budget": 42000000, "cast": [{"name": "Billy Campbell", "character": "Cliff Secord", "id": 20215, "credit_id": "52fe43499251416c7500aa57", "cast_id": 1, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Jenny Blake", "id": 6161, "credit_id": "52fe43499251416c7500aa5b", "cast_id": 2, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Alan Arkin", "character": "A. 'Peevy' Peabody", "id": 1903, "credit_id": "52fe43499251416c7500aa5f", "cast_id": 3, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "Timothy Dalton", "character": "Neville Sinclair", "id": 10669, "credit_id": "52fe43499251416c7500aa63", "cast_id": 4, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 3}, {"name": "Paul Sorvino", "character": "Eddie Valentine", "id": 7004, "credit_id": "52fe43499251416c7500aa67", "cast_id": 5, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 4}, {"name": "Terry O'Quinn", "character": "Howard Hughes", "id": 12646, "credit_id": "52fe43499251416c7500aa6b", "cast_id": 6, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 5}, {"name": "Ed Lauter", "character": "Fitch", "id": 21523, "credit_id": "53ac64310e0a26598c00017d", "cast_id": 19, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 6}, {"name": "James Handy", "character": "Wooly", "id": 51551, "credit_id": "53ac64420e0a26598000019c", "cast_id": 20, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 7}, {"name": "Jon Polito", "character": "Bigelow", "id": 4253, "credit_id": "53ac641c0e0a26598c000175", "cast_id": 18, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 8}, {"name": "William Sanderson", "character": "Skeets", "id": 590, "credit_id": "53ac64620e0a265983000180", "cast_id": 21, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 9}, {"name": "Margo Martindale", "character": "Millie", "id": 452, "credit_id": "53ac646c0e0a2659800001a1", "cast_id": 22, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 10}, {"name": "Clint Howard", "character": "Mark", "id": 15661, "credit_id": "53ac64790e0a265975000181", "cast_id": 23, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 11}, {"name": "Tiny Ron Taylor", "character": "Lothar", "id": 98579, "credit_id": "545122b2c3a368022a004923", "cast_id": 24, "profile_path": "/wSA3KPLbETH9JwyJ8ZvCakb4n8h.jpg", "order": 12}, {"name": "Robert Miranda", "character": "Spanish Johnny", "id": 20625, "credit_id": "5451240e0e0a263a0a0047df", "cast_id": 25, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 13}, {"name": "John Lavachielli", "character": "Rusty", "id": 1217166, "credit_id": "545125aa0e0a263a18004752", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Eddie Jones", "character": "Malcolm", "id": 8692, "credit_id": "54512649c3a368023900456e", "cast_id": 27, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 15}, {"name": "Don Pugsley", "character": "Goose", "id": 157618, "credit_id": "5451acbc0e0a263a18005586", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Nada Despotovich", "character": "Irma", "id": 20975, "credit_id": "5451ad56c3a36802330052bf", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "America Martin", "character": "Patsy", "id": 1379327, "credit_id": "5451addbc3a3680236005512", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Max Grod\u00e9nchik", "character": "Wilmer", "id": 1219415, "credit_id": "5451aec80e0a2601d8005452", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Michael Milhoan", "character": "Jeff", "id": 154295, "credit_id": "5451af4b0e0a263a180055e3", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Daniel O'Shea", "character": "Mike", "id": 1345999, "credit_id": "5451afe30e0a2639fe005941", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Joe D'Angerio", "character": "Stevie", "id": 120257, "credit_id": "5451e42a0e0a2601d8005cf5", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Tommy J. Huff", "character": "Lenny", "id": 1379388, "credit_id": "5451e5bec3a368532b006196", "cast_id": 35, "profile_path": "/mvdvQ6Il1s1aanMDkhkcxmwg3bI.jpg", "order": 23}, {"name": "Paul DeSouza", "character": "Pauly", "id": 1379394, "credit_id": "5451e899c3a3684bff000193", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Pat Crawford Brown", "character": "Mme Pye", "id": 58928, "credit_id": "5451e954c3a3680233005be3", "cast_id": 37, "profile_path": "/1aZTnQDtH0rXwA7ox0mCUsJj9z0.jpg", "order": 25}, {"name": "Julian Barnes", "character": "Charlie", "id": 1379395, "credit_id": "5451e9d7c3a3680233005bf2", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Sam Vincent", "character": "Victor", "id": 1379402, "credit_id": "5451ec860e0a263a0a006042", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Lisa Pedersen", "character": "la dame de l'aristocratie", "id": 1379403, "credit_id": "5451ed42c3a3680245005e60", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Peter Bromilow", "character": "l'aristocrate", "id": 53594, "credit_id": "5451ee150e0a262d46003b47", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Tom Kindle", "character": "le clap", "id": 1379404, "credit_id": "5451ee6cc3a3684bff00023e", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Charlie Stavola", "character": "un assistant r\u00e9alisateur", "id": 1379405, "credit_id": "5451f0480e0a2642c2003065", "cast_id": 43, "profile_path": "/l1pRhcCAAsw7A0qKevv1z1yWvq7.jpg", "order": 31}, {"name": "William Boyett", "character": "les agents de liaison du gouvernement", "id": 1216592, "credit_id": "545200db0e0a263a0a0062c8", "cast_id": 44, "profile_path": "/bXMRPKQjv0BuMGGsgO1ewpIbODl.jpg", "order": 32}, {"name": "William Frankfather", "character": "les agents de liaison du gouvernement", "id": 77015, "credit_id": "54520150c3a3684bff000464", "cast_id": 45, "profile_path": "/3uZ2WacOsMzb3cBZfuKgil8OVvr.jpg", "order": 33}, {"name": "Heinrich James", "character": "l'agent nazi", "id": 156126, "credit_id": "54520211c3a3684bff000477", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Herman Poppe", "character": "le Capitaine du zeppelin", "id": 1217466, "credit_id": "545203870e0a263a0a00630d", "cast_id": 47, "profile_path": "/vNi7pfg9MYbi4RPinmkSGkXdUY0.jpg", "order": 35}, {"name": "Norbert Weisser", "character": "le pilote du zeppelin", "id": 6701, "credit_id": "545203e10e0a2601d80060b3", "cast_id": 48, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 36}, {"name": "Michael Francis Clarke", "character": "les G-Men", "id": 162778, "credit_id": "545204a1c3a3681159001505", "cast_id": 49, "profile_path": "/jBh0jG8meLDjV6tB4ikp4IqPs44.jpg", "order": 37}, {"name": "Darryl Henriques", "character": "les G-Men", "id": 1379424, "credit_id": "54520517c3a368023600616a", "cast_id": 50, "profile_path": "/7QMHooY9ewNQlE24WKAOdwW0evU.jpg", "order": 38}, {"name": "Scanlon Gail", "character": "le G-Man au Chaplin Field", "id": 997993, "credit_id": "545207620e0a263a0a006373", "cast_id": 51, "profile_path": "/7YU9NpRkOkaXjmUmAfbkaTeLJeA.jpg", "order": 39}, {"name": "Melora Hardin", "character": "la chanteuse du South Seas Club", "id": 404, "credit_id": "54520887c3a3680233005f74", "cast_id": 52, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 40}, {"name": "Bob Leeman", "character": "W.C. Fields", "id": 1379439, "credit_id": "545208ca0e0a2601d8006130", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Rick Overton", "character": "le patron du South Seas Club", "id": 1539, "credit_id": "545209aa0e0a263a10006559", "cast_id": 54, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 42}, {"name": "Gene Daily", "character": "Clark Gable", "id": 1379442, "credit_id": "54520a300e0a2639fe0065b5", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Dick Warlock", "character": "un agent du FBI", "id": 14663, "credit_id": "54520cccc3a3681159001632", "cast_id": 56, "profile_path": "/n0TfOxlMYfqxclyRAN4kj2dajkk.jpg", "order": 44}, {"name": "Thomas Lee Tully", "character": "un journaliste", "id": 1379447, "credit_id": "54520d31c3a3684bff00058b", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Mike Finneran", "character": "un journaliste", "id": 1379448, "credit_id": "54520e050e0a263a180062e2", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Doug McGrath", "character": "un journaliste", "id": 62033, "credit_id": "54520e960e0a2601d80061b1", "cast_id": 59, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 47}, {"name": "Dave Adams", "character": "un journaliste", "id": 142286, "credit_id": "54520fdfc3a368024500623b", "cast_id": 60, "profile_path": null, "order": 48}, {"name": "Arlee Reed", "character": "un cam\u00e9raman", "id": 1379453, "credit_id": "5452106c0e0a263a04006783", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "Kim Sebastian", "character": "l'infirmi\u00e8re de l'h\u00f4pital de la prison", "id": 95978, "credit_id": "545210ee0e0a263a18006330", "cast_id": 62, "profile_path": null, "order": 50}, {"name": "David Pressman", "character": "le garde de l'h\u00f4pital de la prison", "id": 111514, "credit_id": "54521153c3a36811590016ab", "cast_id": 63, "profile_path": "/d7E1CW5DfYEFvlxOGQ5IioQbW8t.jpg", "order": 51}, {"name": "Lila Finn", "character": "la dame \u00e0 la corde \u00e0 linge", "id": 999656, "credit_id": "545211e8c3a36811590016b8", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "Perry Cook", "character": "le bon vieux gar\u00e7on", "id": 1379462, "credit_id": "54521232c3a36811590016c4", "cast_id": 65, "profile_path": null, "order": 53}, {"name": "Taylor Gilbert", "character": "une h\u00f4tesse", "id": 1355926, "credit_id": "5452135dc3a368023c006303", "cast_id": 66, "profile_path": null, "order": 54}, {"name": "Ele Keats", "character": "les filles \u00e0 Newsstand", "id": 33834, "credit_id": "5452148ec3a3684bff00065f", "cast_id": 67, "profile_path": "/jvpj2Yq4U5nulKGoBy674EUe849.jpg", "order": 55}, {"name": "Danielle Bedau", "character": "les filles \u00e0 Newsstand", "id": 1379477, "credit_id": "545214c7c3a36802330060c4", "cast_id": 68, "profile_path": null, "order": 56}, {"name": "Chance Michael Corbitt", "character": "le gamin qui distribue les journaux", "id": 134801, "credit_id": "5452152ec3a368532b0066da", "cast_id": 69, "profile_path": "/rGODr97vGYCJGFs2cSvGxEbGim8.jpg", "order": 57}, {"name": "Bob Sandman", "character": "le leader du groupe au South Seas Club", "id": 1379478, "credit_id": "545215ed0e0a2639fe0066fc", "cast_id": 70, "profile_path": null, "order": 58}, {"name": "Lori Lynn Ross", "character": "la sir\u00e8ne au South Seas Club", "id": 1379484, "credit_id": "545216b00e0a2601d80062a7", "cast_id": 71, "profile_path": null, "order": 59}, {"name": "Kathleen Michaels", "character": "la cam\u00e9raman au South Seas Club", "id": 1379487, "credit_id": "5452175dc3a3684bff0006b5", "cast_id": 72, "profile_path": null, "order": 60}, {"name": "Merritt Yohnka", "character": "un Nazi", "id": 160342, "credit_id": "545219280e0a263a04006894", "cast_id": 73, "profile_path": "/dQ5H8gwsn8Q8m7mMCUogJu01cPT.jpg", "order": 61}, {"name": "Peter Frankland", "character": "les membres du commando nazi", "id": 109954, "credit_id": "545219a5c3a3684bff0006f0", "cast_id": 74, "profile_path": null, "order": 62}, {"name": "Kristopher Logan", "character": "les membres du commando nazi", "id": 98554, "credit_id": "54521ba7c3a36802360063fd", "cast_id": 75, "profile_path": null, "order": 63}, {"name": "Paul Forsyth", "character": "les membres du commando nazi", "id": 1379516, "credit_id": "54521c0ec3a3680236006409", "cast_id": 76, "profile_path": null, "order": 64}, {"name": "Craig Hosking", "character": "les pilotes de l'Airshow", "id": 1379517, "credit_id": "54521d24c3a36802390061aa", "cast_id": 77, "profile_path": null, "order": 65}, {"name": "Steve Hinton Sr.", "character": "les pilotes de l'Airshow", "id": 1379518, "credit_id": "54521d9bc3a368532b0067ab", "cast_id": 78, "profile_path": null, "order": 66}, {"name": "Jim Franklin", "character": "les pilotes de l'Airshow", "id": 1379519, "credit_id": "54521e91c3a3680236006455", "cast_id": 79, "profile_path": null, "order": 67}, {"name": "Richard T. Brickert", "character": "les pilotes de l'Airshow", "id": 1379520, "credit_id": "54521f98c3a368023c00647f", "cast_id": 80, "profile_path": null, "order": 68}, {"name": "Chuck Wentworth", "character": "les pilotes de l'Airshow", "id": 119585, "credit_id": "545220b9c3a3680236006498", "cast_id": 81, "profile_path": null, "order": 69}, {"name": "Bill Turner", "character": "les pilotes de l'Airshow", "id": 1379521, "credit_id": "54522149c3a368024500644e", "cast_id": 82, "profile_path": null, "order": 70}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe43499251416c7500aa71", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.3, "runtime": 108}, "77883": {"poster_path": "/4QjzFuaZmB4btGnLwAgdp23BzIU.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85446075, "overview": "A young girl buys an antique box at a yard sale, unaware that inside the collectible lives a malicious ancient spirit. The girl's father teams with his ex-wife to find a way to end the curse upon their child.", "video": false, "id": 77883, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Possession", "tagline": "Fear The Demon That Doesn't Fear God", "vote_count": 136, "homepage": "http://www.thepossessionmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0431021", "adult": false, "backdrop_path": "/h4ApNjVe5z1lZzqC7i4r1jZqgha.jpg", "production_companies": [{"name": "Ghost House Pictures", "id": 768}, {"name": "North Box Productions", "id": 22637}], "release_date": "2012-08-30", "popularity": 0.565032023801022, "original_title": "The Possession", "budget": 14000000, "cast": [{"name": "Jeffrey Dean Morgan", "character": "Clyde", "id": 47296, "credit_id": "52fe4981c3a368484e12ee17", "cast_id": 23, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 0}, {"name": "Natasha Calis", "character": "Em", "id": 94482, "credit_id": "52fe4981c3a368484e12ee39", "cast_id": 31, "profile_path": "/i6txLt6FyZW7G7thV5AmTeHtWrC.jpg", "order": 1}, {"name": "Madison Davenport", "character": "Hannah", "id": 52869, "credit_id": "545658a50e0a2648d60074e0", "cast_id": 37, "profile_path": "/rNjyKpAD6tE2sWwkzeWPrO7AqcG.jpg", "order": 2}, {"name": "Kyra Sedgwick", "character": "Stephanie", "id": 26467, "credit_id": "52fe4981c3a368484e12ee1b", "cast_id": 24, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 3}, {"name": "Rob LaBelle", "character": "Russell", "id": 42708, "credit_id": "52fe4981c3a368484e12ee2d", "cast_id": 28, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 4}, {"name": "Nana Gbewonyo ", "character": "Darius", "id": 582701, "credit_id": "52fe4981c3a368484e12ee07", "cast_id": 19, "profile_path": "/ujeMI3c2TnqtU3NPkX6HTq0Nhs.jpg", "order": 5}, {"name": "Jim Thorburn ", "character": "Man", "id": 582702, "credit_id": "52fe4981c3a368484e12ee0b", "cast_id": 20, "profile_path": "/mzAeRnP6fdWGpkv2QvyoDJspnbK.jpg", "order": 6}, {"name": "Matisyahu ", "character": "Tzadok", "id": 582704, "credit_id": "52fe4981c3a368484e12ee0f", "cast_id": 21, "profile_path": "/u07beEaEc7wYlfUjS9LpQVPx0ym.jpg", "order": 7}, {"name": "Quinn Lord", "character": "Student", "id": 89885, "credit_id": "52fe4981c3a368484e12ee13", "cast_id": 22, "profile_path": "/lsvehrliOkHJYOMaDLXuPVDS4mH.jpg", "order": 8}, {"name": "Jay Brazeau", "character": "Professor McMannis", "id": 63791, "credit_id": "52fe4981c3a368484e12ee1f", "cast_id": 25, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 9}, {"name": "Erin Simms ", "character": "Possessed Italian Girl", "id": 582698, "credit_id": "52fe4981c3a368484e12ee03", "cast_id": 16, "profile_path": "/vP6BbmAbqfie12D7SME7uZvzt5J.jpg", "order": 10}, {"name": "Matisyahu ", "character": "Tzadok", "id": 582704, "credit_id": "52fe4981c3a368484e12ee23", "cast_id": 26, "profile_path": "/u07beEaEc7wYlfUjS9LpQVPx0ym.jpg", "order": 11}, {"name": "John Cassini", "character": "Stephanie's Attorney", "id": 12055, "credit_id": "52fe4981c3a368484e12ee31", "cast_id": 29, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 12}, {"name": "Grant Show", "character": "Brett", "id": 78141, "credit_id": "52fe4981c3a368484e12ee35", "cast_id": 30, "profile_path": "/dY3r3fU1mcu20vX3TIcY88zi0o1.jpg", "order": 13}], "directors": [{"name": "Ole Bornedal", "department": "Directing", "job": "Director", "credit_id": "52fe4981c3a368484e12edcb", "profile_path": null, "id": 22676}], "vote_average": 5.8, "runtime": 92}, "192577": {"poster_path": "/lB3movQFEgRZQWeZtCceLhUiIQj.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 17137302, "overview": "Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.", "video": false, "id": 192577, "genres": [{"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Space Pirate Captain Harlock", "tagline": "", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2668134", "adult": false, "backdrop_path": "/sWCybDNQ1UDNeyO19RqMhQwLf5a.jpg", "production_companies": [{"name": "Toei Animation Company", "id": 3116}], "release_date": "2013-09-07", "popularity": 1.6120162048056, "original_title": "\u30ad\u30e3\u30d7\u30c6\u30f3\u30cf\u30fc\u30ed\u30c3\u30af", "budget": 30000000, "cast": [{"name": "Shun Oguri", "character": "Captain Harlock (voice)", "id": 46364, "credit_id": "52fe4cac9251416c910fc6eb", "cast_id": 1, "profile_path": "/nQC5diyl25qS8qLsdMxTzafjnHn.jpg", "order": 0}, {"name": "Haruma Miura", "character": "Yama (voice)", "id": 133168, "credit_id": "52fe4cac9251416c910fc6ef", "cast_id": 2, "profile_path": "/zEEtjHUVI8xmEsKIbewjtNRS7M6.jpg", "order": 1}, {"name": "Yu Aoi", "character": "Miime (voice)", "id": 84028, "credit_id": "52fe4cac9251416c910fc6f3", "cast_id": 3, "profile_path": "/sXgvUK8uWJ4xCxA9Oklapm08DPJ.jpg", "order": 2}, {"name": "Arata Furuta", "character": "Yattaran (voice)", "id": 146785, "credit_id": "52fe4cac9251416c910fc6f7", "cast_id": 4, "profile_path": "/lghQZHrGVED17jCQxOiLnKzfCQQ.jpg", "order": 3}, {"name": "Ayano Fukuda", "character": "Tori-san (voice)", "id": 1184807, "credit_id": "52fe4cac9251416c910fc6fb", "cast_id": 5, "profile_path": "/t51he0dRsE0680IPpYvIgIkJr4j.jpg", "order": 4}, {"name": "Toshiyuki Morikawa", "character": "Isora (voice)", "id": 9706, "credit_id": "52fe4cac9251416c910fc6ff", "cast_id": 6, "profile_path": "/aAmwmPXJBnwTnvWVDx74OdNGo8q.jpg", "order": 5}, {"name": "Maaya Sakamoto", "character": "Nami (voice)", "id": 9711, "credit_id": "52fe4cac9251416c910fc703", "cast_id": 7, "profile_path": "/wEJDH3mzF4cLhUfNQKt8YfhpLjZ.jpg", "order": 6}, {"name": "Kiyoshi Kobayashi", "character": "Roujin (voice)", "id": 82508, "credit_id": "52fe4cac9251416c910fc707", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Chikao Ohtsuka", "character": "Soukan (voice)", "id": 85285, "credit_id": "52fe4cac9251416c910fc70b", "cast_id": 10, "profile_path": "/gS2Jke10M0z06QcKTvy9dsqQtjU.jpg", "order": 8}, {"name": "Miyuki Sawashiro", "character": "Kei (voice)", "id": 186341, "credit_id": "52fe4cac9251416c910fc727", "cast_id": 15, "profile_path": "/jr5cermPexGYtXxDHyzmOa4MpRt.jpg", "order": 9}], "directors": [{"name": "Shinji Aramaki", "department": "Directing", "job": "Director", "credit_id": "52fe4cac9251416c910fc711", "profile_path": null, "id": 70100}], "vote_average": 6.6, "runtime": 115}, "45132": {"poster_path": "/wRYZdWGCcC7ttY7MFNbIKpR3pnn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 324138, "overview": "After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.", "video": false, "id": 45132, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Super", "tagline": "Shut up, crime!", "vote_count": 102, "homepage": "http://www.thecrimsonbolt.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1512235", "adult": false, "backdrop_path": "/mA3cMu5YdLQ6GgNf5kwTWINDXfC.jpg", "production_companies": [{"name": "This Is That Productions", "id": 10059}, {"name": "Ambush Entertainment", "id": 14406}, {"name": "Crimson Bolt", "id": 14407}], "release_date": "2011-03-31", "popularity": 0.231595034341273, "original_title": "Super", "budget": 2500000, "cast": [{"name": "Rainn Wilson", "character": "Frank Darbo", "id": 11678, "credit_id": "52fe46b0c3a36847f810ccef", "cast_id": 3, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 0}, {"name": "Ellen Page", "character": "Libby", "id": 27578, "credit_id": "52fe46b0c3a36847f810ccf3", "cast_id": 4, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 1}, {"name": "Liv Tyler", "character": "Sarah", "id": 882, "credit_id": "52fe46b0c3a36847f810ccf7", "cast_id": 5, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Jacques", "id": 4724, "credit_id": "52fe46b0c3a36847f810ccfb", "cast_id": 6, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Gregg Henry", "character": "Detective John Felkner", "id": 2518, "credit_id": "52fe46b0c3a36847f810ccff", "cast_id": 7, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 4}, {"name": "Michael Rooker", "character": "Abe", "id": 12132, "credit_id": "52fe46b0c3a36847f810cd03", "cast_id": 8, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 5}, {"name": "Andre Royo", "character": "Hamilton", "id": 74957, "credit_id": "52fe46b0c3a36847f810cd07", "cast_id": 9, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 6}, {"name": "Sean Gunn", "character": "Toby", "id": 51663, "credit_id": "52fe46b0c3a36847f810cd0b", "cast_id": 10, "profile_path": "/dldYyij2lt4rDUehY4wLZoZ0KUK.jpg", "order": 7}, {"name": "Stephen Blackehart", "character": "Quill", "id": 85096, "credit_id": "52fe46b0c3a36847f810cd1b", "cast_id": 14, "profile_path": "/jN1YGxv0W0zCJ2XFyGIUVaeFIfw.jpg", "order": 8}, {"name": "Don Mac", "character": "Mr. Range", "id": 932102, "credit_id": "52fe46b0c3a36847f810cd1f", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Linda Cardellini", "character": "Pet Store Employee", "id": 1817, "credit_id": "52fe46b0c3a36847f810cd23", "cast_id": 16, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 10}, {"name": "Nathan Fillion", "character": "The Holy Avenger", "id": 51797, "credit_id": "52fe46b0c3a36847f810cd27", "cast_id": 17, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 11}, {"name": "Gerardo Davila", "character": "Cop (as Gerardo Davilla)", "id": 968692, "credit_id": "52fe46b0c3a36847f810cd2b", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Grant Goodman", "character": "Young Frank", "id": 1110284, "credit_id": "52fe46b0c3a36847f810cd2f", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Paul T. Taylor", "character": "Frank Sr. (as Paul Taylor)", "id": 1133460, "credit_id": "52fe46b0c3a36847f810cd33", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Connor Day", "character": "Teenage Frank", "id": 1363393, "credit_id": "5413ad67c3a3687db2000843", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "James Gunn", "character": "Demonswill", "id": 15218, "credit_id": "5413ad7d0e0a26199b0007f6", "cast_id": 32, "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "order": 16}, {"name": "Mikaela Hoover", "character": "Holly", "id": 1363394, "credit_id": "5413ad870e0a2619a4000874", "cast_id": 33, "profile_path": "/l0pfM43Ep1IL58q3SQ8vFpFqCfZ.jpg", "order": 17}, {"name": "Nick Holmes", "character": "Jim", "id": 1237281, "credit_id": "5413ae000e0a2619a4000896", "cast_id": 34, "profile_path": "/qA8lxS0USklar0mHP5FIXlMAZQ.jpg", "order": 18}, {"name": "Matt Moore", "character": "Jesus / Guy In Line", "id": 180355, "credit_id": "5413ae40c3a3687dc100086d", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Rob Zombie", "character": "Voice Of God", "id": 16848, "credit_id": "5413ae4dc3a3687db2000884", "cast_id": 36, "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "order": 20}, {"name": "Steve Agee", "character": "Comic Book Store Jerk", "id": 559457, "credit_id": "5413ae5cc3a3687dc1000876", "cast_id": 37, "profile_path": "/8XjgDjfkdmu31GvnHJw4laZ8TDM.jpg", "order": 21}, {"name": "Laurel Whitsett", "character": "Librarian (as Laurel Whisett)", "id": 61102, "credit_id": "5413ae8a0e0a26198a00089f", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "James Lentzsch", "character": "Passenger Teen", "id": 1033470, "credit_id": "5413aece0e0a2619a40008c3", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Nate Rubin", "character": "Driving Teen", "id": 110183, "credit_id": "5413aeed0e0a26199b000844", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Edrick Browne", "character": "Nathaniel", "id": 112286, "credit_id": "5413af17c3a3687dae00088d", "cast_id": 41, "profile_path": "/cj7f8xZb3JgjDgR4XdW1CD33fHd.jpg", "order": 25}, {"name": "Danny Cosmo", "character": "Purse-snatcher", "id": 86278, "credit_id": "5413af42c3a3687dae00089a", "cast_id": 42, "profile_path": "/fP7gwFDo6xEP5tY3rbfbtXkrid1.jpg", "order": 26}, {"name": "Krystal Mayo", "character": "Wheelchair Woman", "id": 109785, "credit_id": "5413af5dc3a3687dae00089f", "cast_id": 43, "profile_path": "/ozbQdVym78joGAt3uSul3X4wKCK.jpg", "order": 27}, {"name": "Russell Towery", "character": "Chickenhawk", "id": 61570, "credit_id": "5413af84c3a3687dc80008a8", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Mario Jiminez Jr.", "character": "Chicken", "id": 1363396, "credit_id": "5413af950e0a26198f0008da", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Jonathan Winkler", "character": "Transvestite", "id": 1363397, "credit_id": "5413afa2c3a3687db9000928", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Mollie Milligan", "character": "Sarah's Sister", "id": 1352105, "credit_id": "5413afbc0e0a2619830008ed", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Gerry May", "character": "Newscaster", "id": 1363398, "credit_id": "5413afc60e0a2619830008f3", "cast_id": 48, "profile_path": null, "order": 32}, {"name": "Valentine Miele", "character": "Line Butter", "id": 98653, "credit_id": "5413afde0e0a2619920008e3", "cast_id": 49, "profile_path": null, "order": 33}, {"name": "Michelle Gunn", "character": "Line Butter's Girlfriend", "id": 85101, "credit_id": "5413afffc3a3687dbe0008b4", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Darcel White Moreno", "character": "Waitress (as Darcel Moreno)", "id": 1270862, "credit_id": "5413b01d0e0a2619920008f3", "cast_id": 51, "profile_path": "/r5zYrq9qcb2paunxnxmXIISg5Qg.jpg", "order": 35}, {"name": "Greg Ingram", "character": "Long-haired Hood", "id": 1358928, "credit_id": "5413b052c3a3687dbe0008c6", "cast_id": 52, "profile_path": "/vjaq2FOpxzj4ZyqJmruMdnuZpmu.jpg", "order": 36}, {"name": "Lindsey Soileau", "character": "Libby's Friend", "id": 1363399, "credit_id": "5413b0600e0a2619a1000888", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Brandon Belknap", "character": "Christian", "id": 558904, "credit_id": "5413b0780e0a2619a4000931", "cast_id": 54, "profile_path": null, "order": 38}, {"name": "Zach Gilford", "character": "Jerry", "id": 70303, "credit_id": "5413b0910e0a2619a1000891", "cast_id": 55, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 39}, {"name": "Lloyd Kaufman", "character": "911 Man", "id": 78021, "credit_id": "5413b0c80e0a2619a400093f", "cast_id": 56, "profile_path": "/zTylEHdJL422WZ1vjEmEkDoWkk7.jpg", "order": 40}, {"name": "Tim J. Smith", "character": "Range's Technician (as Tim Smith)", "id": 1271752, "credit_id": "5413b0e6c3a3687db60008eb", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Mark Dealessandro", "character": "Thug Jumped On By Boltie", "id": 1363400, "credit_id": "5413b0f80e0a261983000945", "cast_id": 58, "profile_path": null, "order": 42}, {"name": "Cole S. McKay", "character": "Thug Set On Fire (as Cole McKay)", "id": 9567, "credit_id": "5413b151c3a3687dc80008ff", "cast_id": 59, "profile_path": null, "order": 43}, {"name": "Dominick LaBanca", "character": "Thug #1", "id": 1207723, "credit_id": "5413b17bc3a3687dae0008ef", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "John W. Lawson", "character": "Thug Missing Arms", "id": 1363404, "credit_id": "5413b18dc3a3687dc1000909", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "William Katt", "character": "Sgt. Fitzgibbon", "id": 45415, "credit_id": "5413b1aac3a3687db2000932", "cast_id": 62, "profile_path": "/8zgHplikymFmzQhOuwYhin6WJv6.jpg", "order": 46}], "directors": [{"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe46b0c3a36847f810cd11", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}], "vote_average": 6.6, "runtime": 96}, "11618": {"poster_path": "/fER5dBWsjxp19k6ZaXqTAAMzKMJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91188905, "overview": "Dr. David Marrow invites Nell Vance and Theo and Luke Sanderson to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself -- and, soon, they see the true nature of its horror.", "video": false, "id": 11618, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Haunting", "tagline": "Some houses are born bad.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0171363", "adult": false, "backdrop_path": "/eMat94MVMxvezyvAEJs1k6XCkZn.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Roth-Arnold Productions", "id": 1560}], "release_date": "1999-07-23", "popularity": 0.429352983093669, "original_title": "The Haunting", "budget": 80000000, "cast": [{"name": "Liam Neeson", "character": "Dr. David Marrow", "id": 3896, "credit_id": "52fe44689251416c75033b1f", "cast_id": 12, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Theo", "id": 1922, "credit_id": "52fe44689251416c75033b23", "cast_id": 13, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Luke Sanderson", "id": 887, "credit_id": "52fe44689251416c75033b27", "cast_id": 14, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Lili Taylor", "character": "Eleanor 'Nell' Vance", "id": 3127, "credit_id": "52fe44689251416c75033b2b", "cast_id": 15, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 3}, {"name": "Bruce Dern", "character": "Mr. Dudley", "id": 6905, "credit_id": "52fe44689251416c75033b2f", "cast_id": 16, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 4}, {"name": "Marian Seldes", "character": "Mrs. Dudley", "id": 41293, "credit_id": "52fe44689251416c75033b33", "cast_id": 17, "profile_path": "/oxyOi7kJYCmdlNK89vawC8APpse.jpg", "order": 5}, {"name": "Alix Koromzay", "character": "Mary Lambetta", "id": 14707, "credit_id": "52fe44689251416c75033b37", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Todd Field", "character": "Todd Hackett", "id": 5010, "credit_id": "52fe44689251416c75033b3b", "cast_id": 19, "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "order": 7}, {"name": "Virginia Madsen", "character": "Jane", "id": 12519, "credit_id": "52fe44689251416c75033b3f", "cast_id": 20, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 8}, {"name": "Michael Cavanaugh", "character": "Dr. Malcolm Keogh", "id": 101172, "credit_id": "52fe44689251416c75033b43", "cast_id": 21, "profile_path": "/9LiWhytapMAimpOasWcc9d78gMA.jpg", "order": 9}, {"name": "Tom Irwin", "character": "Lou", "id": 27544, "credit_id": "52fe44689251416c75033b47", "cast_id": 22, "profile_path": "/8veWAQr2kXYL3EP4ZkAjJhVcZGq.jpg", "order": 10}, {"name": "Charles Gunning", "character": "Hugh Crain", "id": 71659, "credit_id": "52fe44689251416c75033b4b", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Saul Priever", "character": "Ritchie", "id": 552094, "credit_id": "52fe44689251416c75033b4f", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "M.C. Gainey", "character": "Large Man", "id": 22132, "credit_id": "52fe44689251416c75033b53", "cast_id": 25, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 13}, {"name": "Hadley Eure", "character": "Carolyn Crain", "id": 176436, "credit_id": "52fe44689251416c75033b57", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Kadina de Elejalde", "character": "Rene Crain (as Kadina Halliday)", "id": 552095, "credit_id": "52fe44689251416c75033b5b", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Alessandra Benjamin", "character": "Psych Patient #1", "id": 552096, "credit_id": "52fe44689251416c75033b5f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Karen S. Gregan", "character": "Psych Patient #2", "id": 175678, "credit_id": "52fe44689251416c75033b63", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Brandon Jarrett", "character": "Psych Patient #3", "id": 166652, "credit_id": "52fe44689251416c75033b67", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Mary McNeal", "character": "Psych Patient #4", "id": 183057, "credit_id": "52fe44689251416c75033b6b", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "William Minkin", "character": "Psych Patient #5", "id": 552097, "credit_id": "52fe44689251416c75033b6f", "cast_id": 32, "profile_path": null, "order": 20}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe44689251416c75033aeb", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 5.5, "runtime": 113}, "36955": {"poster_path": "/mTAHr5h5i64hTLqo0cW2X2083Cx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 378882411, "overview": "Harry Tasker is a secret agent for the United States Government. For years, he has kept his job from his wife, but is forced to reveal his identity and try to stop nuclear terrorists when he and his wife are kidnapped by them.", "video": false, "id": 36955, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "True Lies", "tagline": "When he said I do, he never said what he did.", "vote_count": 323, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0111503", "adult": false, "backdrop_path": "/o2agns0LEqyEUCByMT8ViIOio7r.jpg", "production_companies": [{"name": "Lightstorm Entertainment", "id": 574}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1994-07-14", "popularity": 0.86929079139463, "original_title": "True Lies", "budget": 115000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Harry Tasker", "id": 1100, "credit_id": "52fe461c9251416c91049907", "cast_id": 2, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Helen Tasker", "id": 8944, "credit_id": "52fe461d9251416c9104990b", "cast_id": 3, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Tom Arnold", "character": "Albert Gibson", "id": 74036, "credit_id": "52fe461d9251416c9104990f", "cast_id": 4, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Simon", "id": 2053, "credit_id": "52fe461d9251416c91049913", "cast_id": 5, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Tia Carrere", "character": "Juno Skinner", "id": 13445, "credit_id": "52fe461d9251416c91049923", "cast_id": 11, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 4}, {"name": "Art Malik", "character": "Salim Abu Aziz", "id": 10672, "credit_id": "52fe461d9251416c9104991f", "cast_id": 9, "profile_path": "/dJ8isTdH4hLfQHDEJu7DQYdfeIz.jpg", "order": 5}, {"name": "Eliza Dushku", "character": "Dana Tasker", "id": 13446, "credit_id": "52fe461d9251416c91049917", "cast_id": 6, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 6}, {"name": "Grant Heslov", "character": "Faisil", "id": 31511, "credit_id": "52fe461d9251416c91049927", "cast_id": 12, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 7}, {"name": "Charlton Heston", "character": "Spencer Trilby", "id": 10017, "credit_id": "52fe461d9251416c9104991b", "cast_id": 7, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 8}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe461c9251416c91049903", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 6.4, "runtime": 141}, "45156": {"poster_path": "/1DDjTd3eLaUyXcF3ndIUDZpHnPe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It's a comedy about a guarded woman who finds out she's dying of cancer, but when she meets her match, the threat of falling in love is scarier than death", "video": false, "id": 45156, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Little Bit of Heaven", "tagline": "Life starts now.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1440161", "adult": false, "backdrop_path": "/hRdPa1NGhGWoquRQsSts5yOoLSS.jpg", "production_companies": [{"name": "Davis Entertainment", "id": 1302}], "release_date": "2011-02-03", "popularity": 0.804887422699195, "original_title": "A Little Bit of Heaven", "budget": 0, "cast": [{"name": "Kate Hudson", "character": "Marley Corbett", "id": 11661, "credit_id": "52fe46b2c3a36847f810d317", "cast_id": 7, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Gael Garc\u00eda Bernal", "character": "Julian Goldstein", "id": 258, "credit_id": "52fe46b2c3a36847f810d31b", "cast_id": 8, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 1}, {"name": "Romany Malco", "character": "Peter Cooper", "id": 71530, "credit_id": "52fe46b2c3a36847f810d31f", "cast_id": 9, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 2}, {"name": "Kathy Bates", "character": "Beverly Corbett", "id": 8534, "credit_id": "52fe46b2c3a36847f810d323", "cast_id": 10, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 3}, {"name": "Lucy Punch", "character": "Sarah Walker", "id": 66446, "credit_id": "52fe46b2c3a36847f810d327", "cast_id": 12, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 4}, {"name": "Whoopi Goldberg", "character": "God", "id": 2395, "credit_id": "52fe46b2c3a36847f810d32b", "cast_id": 13, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 5}, {"name": "Peter Dinklage", "character": "Vinnie", "id": 22970, "credit_id": "52fe46b2c3a36847f810d335", "cast_id": 15, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 6}, {"name": "Rosemarie DeWitt", "character": "Renee Blair", "id": 14892, "credit_id": "52fe46b2c3a36847f810d339", "cast_id": 16, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 7}, {"name": "Treat Williams", "character": "Jack Corbett", "id": 4515, "credit_id": "52fe46b2c3a36847f810d33d", "cast_id": 17, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 8}, {"name": "Alan Dale", "character": "Dr. Sanders", "id": 52760, "credit_id": "52fe46b2c3a36847f810d341", "cast_id": 18, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 9}, {"name": "Romany Malco", "character": "Peter Cooper", "id": 71530, "credit_id": "52fe46b2c3a36847f810d345", "cast_id": 19, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 10}, {"name": "Steven Weber", "character": "Rob Randolph", "id": 6106, "credit_id": "52fe46b2c3a36847f810d349", "cast_id": 20, "profile_path": "/ujINzDjLNtELBSUkRHQgExzP4Fb.jpg", "order": 11}, {"name": "Johann Urb", "character": "Doug", "id": 101017, "credit_id": "52fe46b2c3a36847f810d34d", "cast_id": 21, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 12}], "directors": [{"name": "Nicole Kassell", "department": "Directing", "job": "Director", "credit_id": "52fe46b2c3a36847f810d313", "profile_path": "/3Y0YZKR02P2naMnXi1CYKUk1Wur.jpg", "id": 58573}], "vote_average": 6.4, "runtime": 106}, "69735": {"poster_path": "/bI1YVuhBN6Vws1GP9Mf01DyhC2s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two men come to Gotham City: Bruce Wayne after years abroad feeding his lifelong obsession for justice and Jim Gordon after being too honest a cop with the wrong people elsewhere. After learning painful lessons about the city's corruption on its streets and police department respectively, this pair learn how to fight back their own way. With that, Gotham's evildoers from top to bottom are terrorized by the mysterious Batman and the equally heroic Gordon is assigned to catch him by comrades who both hate and fear him themselves. In the ensuing manhunt, both find much in common as the seeds of an unexpected friendship are laid with additional friends and rivals helping to start the legend.", "video": false, "id": 69735, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Batman: Year One", "tagline": "A merciless crime turns a man into an outlaw.", "vote_count": 80, "homepage": "http://www.watchvideoseries.com/movies/batman-year-one-2011/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1672723", "adult": false, "backdrop_path": "/hAhMOPPPxzCKsCu5rUMYdwS8Yb5.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Premiere", "id": 4811}], "release_date": "2011-09-27", "popularity": 0.728172498095484, "original_title": "Batman: Year One", "budget": 0, "cast": [{"name": "Ben McKenzie", "character": "Bruce Wayne/Batman", "id": 17245, "credit_id": "52fe47d9c3a368484e0dcccf", "cast_id": 30, "profile_path": "/rm3vfSXk6FDGRpjaOfM7VSsp5sd.jpg", "order": 0}, {"name": "Bryan Cranston", "character": "Lt. James Gordon", "id": 17419, "credit_id": "52fe47d8c3a368484e0dcc55", "cast_id": 2, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 1}, {"name": "Eliza Dushku", "character": "Selina Kyle/Catwoman", "id": 13446, "credit_id": "52fe47d9c3a368484e0dcc59", "cast_id": 3, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 2}, {"name": "Katee Sackhoff", "character": "Detective Sarah Essen", "id": 51798, "credit_id": "52fe47d9c3a368484e0dcc5d", "cast_id": 4, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 3}, {"name": "Alex Rocco", "character": "Carmine Falcone", "id": 20752, "credit_id": "52fe47d9c3a368484e0dcc61", "cast_id": 5, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 4}, {"name": "Jon Polito", "character": "Commissioner Loeb", "id": 4253, "credit_id": "52fe47d9c3a368484e0dcc83", "cast_id": 11, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 5}, {"name": "Sara Ballantine", "character": "Skeevers' Attorney", "id": 127971, "credit_id": "52fe47d9c3a368484e0dcc87", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Jeff Bennett", "character": "Alfred Pennyworth / Falcone Guest", "id": 34982, "credit_id": "52fe47d9c3a368484e0dcc8b", "cast_id": 13, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 7}, {"name": "Steve Blum", "character": "Stan / News Anchor", "id": 81379, "credit_id": "52fe47d9c3a368484e0dcc8f", "cast_id": 14, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 8}, {"name": "Roark Critchlow", "character": "Hare Krishna", "id": 92612, "credit_id": "52fe47d9c3a368484e0dcc93", "cast_id": 15, "profile_path": "/9T6kOnHKOp7WldGSsB7xlC58bZh.jpg", "order": 9}, {"name": "Grey DeLisle", "character": "Barbara Gordon / Vicki Vale", "id": 15761, "credit_id": "52fe47d9c3a368484e0dcc97", "cast_id": 16, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 10}, {"name": "Robin Atkin Downes", "character": "Harvey Dent", "id": 130081, "credit_id": "52fe47d9c3a368484e0dcc9b", "cast_id": 17, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 11}, {"name": "Keith Ferguson", "character": "Jefferson Skeevers", "id": 143346, "credit_id": "52fe47d9c3a368484e0dcc9f", "cast_id": 18, "profile_path": "/sXZ1nVUUnt36PPC0LbhrcZKK7id.jpg", "order": 12}, {"name": "Michael Gough", "character": "Driver", "id": 3796, "credit_id": "52fe47d9c3a368484e0dcca3", "cast_id": 19, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 13}, {"name": "Danny Jacobs", "character": "Flass' Attorney", "id": 62389, "credit_id": "52fe47d9c3a368484e0dcca7", "cast_id": 20, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 14}, {"name": "Nick Jameson", "character": "Merkel", "id": 39214, "credit_id": "52fe47d9c3a368484e0dccab", "cast_id": 21, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 15}, {"name": "Liliana Mumy", "character": "Holly Robinson", "id": 71861, "credit_id": "52fe47d9c3a368484e0dccaf", "cast_id": 22, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 16}, {"name": "Pat Musick", "character": "Falcone's Wife", "id": 35349, "credit_id": "52fe47d9c3a368484e0dccb3", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Andrea Romano", "character": "Obstetrician", "id": 34945, "credit_id": "52fe47d9c3a368484e0dccb7", "cast_id": 24, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 18}, {"name": "Stephen Root", "character": "Brendon", "id": 17401, "credit_id": "52fe47d9c3a368484e0dccbb", "cast_id": 25, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 19}, {"name": "James Patrick Stuart", "character": "Henchman", "id": 105641, "credit_id": "52fe47d9c3a368484e0dccbf", "cast_id": 26, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 20}, {"name": "Fred Tatasciore", "character": "Detective Flass / Johnny Vitti", "id": 60279, "credit_id": "52fe47d9c3a368484e0dccc3", "cast_id": 27, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 21}, {"name": "Bruce Timm", "character": "Thug #1", "id": 34934, "credit_id": "52fe47d9c3a368484e0dccc7", "cast_id": 28, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 22}, {"name": "Bruce Wingert", "character": "Guard", "id": 1128396, "credit_id": "52fe47d9c3a368484e0dcccb", "cast_id": 29, "profile_path": null, "order": 23}], "directors": [{"name": "Sam Liu", "department": "Directing", "job": "Director", "credit_id": "52fe47d9c3a368484e0dcc67", "profile_path": null, "id": 90367}, {"name": "Lauren Montgomery", "department": "Directing", "job": "Director", "credit_id": "52fe47d9c3a368484e0dcc6d", "profile_path": null, "id": 74863}], "vote_average": 7.1, "runtime": 64}, "77930": {"poster_path": "/yHMWb5lpvCzKuxnEPd3OXq7OvMh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.", "video": false, "id": 77930, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Magic Mike", "tagline": "Work all day. Work it all night.", "vote_count": 234, "homepage": "http://magicmikemovie.warnerbros.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 328247, "name": "Magic Mike Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1915581", "adult": false, "backdrop_path": "/uaHEBPugW19sneaJNNeuOtZiSxB.jpg", "production_companies": [{"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Extension 765", "id": 8850}], "release_date": "2012-06-29", "popularity": 1.25300069500894, "original_title": "Magic Mike", "budget": 5000000, "cast": [{"name": "Channing Tatum", "character": "Mike Martingano \"Magic Mike\"", "id": 38673, "credit_id": "52fe4983c3a368484e12f52f", "cast_id": 1024, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Dallas", "id": 10297, "credit_id": "52fe4983c3a368484e12f525", "cast_id": 1021, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Olivia Munn", "character": "Joanna", "id": 81364, "credit_id": "52fe4983c3a368484e12f539", "cast_id": 1028, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 2}, {"name": "Cody Horn", "character": "Brooke", "id": 582816, "credit_id": "52fe4983c3a368484e12f549", "cast_id": 1032, "profile_path": "/3cBTrMdZF9Yj12IUAHb9a46qplS.jpg", "order": 3}, {"name": "Alex Pettyfer", "character": "Adam", "id": 61363, "credit_id": "52fe4983c3a368484e12f54d", "cast_id": 1033, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 4}, {"name": "Joe Manganiello", "character": "Big Dick Richie", "id": 20580, "credit_id": "52fe4983c3a368484e12f551", "cast_id": 1036, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 5}, {"name": "Matt Bomer", "character": "Ken", "id": 66743, "credit_id": "52fe4983c3a368484e12f555", "cast_id": 1037, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 6}, {"name": "James Martin Kelly", "character": "Sal", "id": 162849, "credit_id": "52fe4983c3a368484e12f559", "cast_id": 1038, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 7}, {"name": "Reid Carolin", "character": "Paul", "id": 1074867, "credit_id": "52fe4983c3a368484e12f55d", "cast_id": 1039, "profile_path": "/3Yxf9KliHckl3N71p4016Op2Tyj.jpg", "order": 8}, {"name": "Adam Rodr\u00edguez", "character": "Tito", "id": 49706, "credit_id": "52fe4983c3a368484e12f561", "cast_id": 1040, "profile_path": "/jMBghQKSROfpN2wZ5usK019DA2G.jpg", "order": 9}, {"name": "Kevin Nash", "character": "Tarzan", "id": 135352, "credit_id": "52fe4983c3a368484e12f565", "cast_id": 1041, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 10}, {"name": "Gabriel Iglesias", "character": "Tobias", "id": 86498, "credit_id": "52fe4983c3a368484e12f569", "cast_id": 1042, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 11}, {"name": "Betsy Brandt", "character": "Banker", "id": 1217934, "credit_id": "535bc2b30e0a264fe1001865", "cast_id": 1047, "profile_path": "/zpmsca1HCVqYrtWXV9xdmsECDTI.jpg", "order": 12}, {"name": "Riley Keough", "character": "Nora", "id": 98522, "credit_id": "52fe4983c3a368484e12f571", "cast_id": 1044, "profile_path": "/u9mRvBkmeUYYWuNHNylmAPZic15.jpg", "order": 13}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4983c3a368484e12f521", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 5.7, "runtime": 110}, "77931": {"poster_path": "/mF2FXzZ3EktWoagU4fzoabNsK6J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347434178, "overview": "The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful, magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants, and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs, Gargamel kidnaps Smurfette and brings her to Paris, where he has been winning the adoration of millions as the world\u00b9s greatest sorcerer. It's up to Papa, Clumsy, Grouchy, and Vanity to return to our world, reunite with their human friends Patrick and Grace Winslow, and rescue her! Will Smurfette, who has always felt different from the other Smurfs, find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue?", "video": false, "id": 77931, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Smurfs 2", "tagline": "Get ready to get naughty!", "vote_count": 294, "homepage": "http://smurfhappens.com", "belongs_to_collection": {"backdrop_path": "/4q6O2Z569yHhcSDwcLEwhuNsmFV.jpg", "poster_path": "/oHnEQNLwyxPlaolWKInN85CQfOx.jpg", "id": 134897, "name": "The Smurfs Collection (Theatrical Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2017020", "adult": false, "backdrop_path": "/ynJ5OrFg4mbNnre8augsrbCXXQE.jpg", "production_companies": [{"name": "NeoReel", "id": 24097}, {"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Hemisphere Media Capital", "id": 9169}, {"name": "Kerner Entertainment Company", "id": 7311}], "release_date": "2013-07-31", "popularity": 1.42834865071628, "original_title": "The Smurfs 2", "budget": 105000000, "cast": [{"name": "Neil Patrick Harris", "character": "Patrick Winslow", "id": 41686, "credit_id": "52fe4983c3a368484e12f5a7", "cast_id": 2, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Christina Ricci", "character": "Vexy", "id": 6886, "credit_id": "52fe4983c3a368484e12f5ab", "cast_id": 3, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 1}, {"name": "Katy Perry", "character": "Smurfette", "id": 111455, "credit_id": "52fe4983c3a368484e12f5af", "cast_id": 4, "profile_path": "/mXSbYNKFessbuimdMIxccdRC8ph.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Gargamel", "id": 5587, "credit_id": "52fe4983c3a368484e12f5b3", "cast_id": 5, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Victor", "id": 2039, "credit_id": "52fe4983c3a368484e12f5bd", "cast_id": 7, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Alan Cumming", "character": "Gutsy Smurf", "id": 10697, "credit_id": "52fe4983c3a368484e12f5c1", "cast_id": 8, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 5}, {"name": "Jayma Mays", "character": "Grace", "id": 34195, "credit_id": "52fe4983c3a368484e12f5c5", "cast_id": 9, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 6}, {"name": "Jonathan Winters", "character": "Papa Smurf", "id": 13593, "credit_id": "52fe4983c3a368484e12f5c9", "cast_id": 10, "profile_path": "/j63YOBYEXhbDWbXUnqD3gb5KJ5k.jpg", "order": 7}, {"name": "J. B. Smoove", "character": "Hackus", "id": 65920, "credit_id": "52fe4983c3a368484e12f5cd", "cast_id": 11, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 8}, {"name": "George Lopez", "character": "Grouchy Smurf", "id": 41798, "credit_id": "52fe4983c3a368484e12f5d1", "cast_id": 12, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 9}, {"name": "Anton Yelchin", "character": "Clumsy Smurf", "id": 21028, "credit_id": "52fe4983c3a368484e12f5d5", "cast_id": 13, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 10}, {"name": "John Oliver", "character": "Vanity Smurf", "id": 84292, "credit_id": "52fe4983c3a368484e12f5d9", "cast_id": 14, "profile_path": "/t1smh9XiGfVof4ep5ZSD8CEFQLk.jpg", "order": 11}, {"name": "Jacob Tremblay", "character": "Blue", "id": 1277188, "credit_id": "52fe4983c3a368484e12f5dd", "cast_id": 15, "profile_path": "/jztWT5I6I2Dyhma0FQFR2KLL7iU.jpg", "order": 12}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe4983c3a368484e12f5a3", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.7, "runtime": 105}, "12403": {"poster_path": "/7qkFDm9Wnly4ytl5FdKZleslDCp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "For their honeymoon, newlyweds Cliff and Cydney head to the tropical islands of Hawaii. While journeying through the paradisaical countryside the couple encounters Kale and Cleo, two disgruntled hitchhikers and Nick and Gina, two wild but well-meaning spirits who help guide them through the lush jungles. The picturesque waterfalls and scenic mountainsides quickly give way to terror when Cliff and Cydney learn of a grisly murder that occurred nearby and realize that they're being followed by chance acquaintances that suspiciously fit the description of the killers.", "video": false, "id": 12403, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "A Perfect Getaway", "tagline": "Welcome to paradise. Enter at your own risk.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0971209", "adult": false, "backdrop_path": "/yxsVOP9D4NgitI2fJ8q8qmKUxhh.jpg", "production_companies": [{"name": "Tooley Productions", "id": 22539}, {"name": "Rogue", "id": 8853}, {"name": "Relativity Media", "id": 7295}, {"name": "QED International", "id": 11029}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2009-06-08", "popularity": 0.742619440408635, "original_title": "A Perfect Getaway", "budget": 14000000, "cast": [{"name": "Milla Jovovich", "character": "Cydney", "id": 63, "credit_id": "52fe44dc9251416c75043831", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Cliff", "id": 18324, "credit_id": "52fe44dc9251416c75043835", "cast_id": 2, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Timothy Olyphant", "character": "Nick", "id": 18082, "credit_id": "52fe44dc9251416c75043839", "cast_id": 3, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 2}, {"name": "Kiele Sanchez", "character": "Gina", "id": 31168, "credit_id": "52fe44dc9251416c7504383d", "cast_id": 4, "profile_path": "/i0YEpWuk1zSvadwwa1r0rahDONt.jpg", "order": 3}, {"name": "Marley Shelton", "character": "Cleo", "id": 6407, "credit_id": "52fe44dd9251416c750438cb", "cast_id": 29, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 4}, {"name": "Chris Hemsworth", "character": "Kale", "id": 74568, "credit_id": "52fe44dd9251416c750438cf", "cast_id": 30, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 5}, {"name": "Anthony Ruivivar", "character": "Chronic", "id": 171522, "credit_id": "52fe44dd9251416c750438d9", "cast_id": 32, "profile_path": "/kyXQAe5bDYGMAhs7keT8apMmAZb.jpg", "order": 6}, {"name": "Dale Dickey", "character": "Earth Momma", "id": 46814, "credit_id": "52fe44dd9251416c750438dd", "cast_id": 33, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 7}, {"name": "Peter \"Navy\" Tuiasosopo", "character": "Supply Guy", "id": 84757, "credit_id": "52fe44dd9251416c750438e1", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Wendy Braun", "character": "Debbie Mason / Clerk", "id": 177164, "credit_id": "52fe44dd9251416c750438e5", "cast_id": 35, "profile_path": "/8wqSLpIqgtzU5ZoIEckWpd8KpEO.jpg", "order": 9}, {"name": "Jim Cruz", "character": "Helicopter Pilot", "id": 1077764, "credit_id": "52fe44dd9251416c750438e9", "cast_id": 36, "profile_path": null, "order": 10}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe44dc9251416c75043843", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}], "vote_average": 6.0, "runtime": 98}, "12405": {"poster_path": "/ojgf8iJpS4VX6jJfWGLpuEx0wm.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IN", "name": "India"}], "revenue": 377910544, "overview": "The story of the life of an impoverished Indian teen Jamal Malik, who becomes a contestant on the Hindi version of \"Who Wants to be A Millionaire?\", wins, and is then suspected of cheating.", "video": false, "id": 12405, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Slumdog Millionaire", "tagline": "What does it take to find a lost love? A. Money B. Luck C. Smarts D. Destiny", "vote_count": 750, "homepage": "http://www.foxsearchlight.com/slumdogmillionaire", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1010048", "adult": false, "backdrop_path": "/aIv7WnkxMWsswEpaeRuNbC32D9d.jpg", "production_companies": [{"name": "Celador Films", "id": 3573}, {"name": "Film4", "id": 9349}], "release_date": "2008-05-12", "popularity": 1.5207105485889, "original_title": "Slumdog Millionaire", "budget": 15000000, "cast": [{"name": "Anil Kapoor", "character": "Prem Kumar", "id": 72118, "credit_id": "52fe44dd9251416c7504395f", "cast_id": 2, "profile_path": "/m3GKtXU8DeP5DH1UD352c5ITOrc.jpg", "order": 0}, {"name": "Mia Drake Inderbitzin", "character": "Adele", "id": 72119, "credit_id": "52fe44dd9251416c75043963", "cast_id": 3, "profile_path": "/wsykF0f0bEKwhfPHp37WOGuUHBf.jpg", "order": 1}, {"name": "Dev Patel", "character": "Jamal Malik", "id": 76788, "credit_id": "52fe44dd9251416c75043967", "cast_id": 5, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 2}, {"name": "Saurabh Shukla", "character": "Sergeant Srinivas", "id": 76789, "credit_id": "52fe44dd9251416c7504396b", "cast_id": 6, "profile_path": "/uuPJGDxm8orU7ekCgjwiIqyXy3a.jpg", "order": 3}, {"name": "Rajendranath Zutshi", "character": "Director (as Raj Zutshi)", "id": 76790, "credit_id": "52fe44dd9251416c7504396f", "cast_id": 7, "profile_path": "/7t7BkGRvWohEFvP2SrSK7SzqEEd.jpg", "order": 4}, {"name": "Jeneva Talwar", "character": "Vision Mixer", "id": 76791, "credit_id": "52fe44dd9251416c75043973", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Freida Pinto", "character": "Latika", "id": 76792, "credit_id": "52fe44dd9251416c75043977", "cast_id": 9, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 6}, {"name": "Irrfan Khan", "character": "Police Inspector", "id": 76793, "credit_id": "52fe44dd9251416c7504397b", "cast_id": 10, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 7}, {"name": "Ayush Mahesh Khedekar", "character": "Youngest Jamal", "id": 1120194, "credit_id": "52fe44dd9251416c75043991", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Mahesh Manjrekar", "character": "Javed", "id": 85456, "credit_id": "52fe44dd9251416c75043995", "cast_id": 15, "profile_path": "/vKEqhAAnHyzgYzGPuW7bldPrlE2.jpg", "order": 9}, {"name": "Sanchita Choudhary", "character": "Jamal's mother", "id": 1120195, "credit_id": "52fe44dd9251416c75043999", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Azharuddin Mohammed Ismail", "character": "Youngest Salim", "id": 1403495, "credit_id": "549acaaa925141311f001947", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe44dd9251416c7504395b", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}, {"name": "Loveleen Tandan", "department": "Directing", "job": "Director", "credit_id": "551c04adc3a36876790031ff", "profile_path": null, "id": 6508}], "vote_average": 7.3, "runtime": 120}, "94329": {"poster_path": "/mfDGRp19BcZUfPIhdqzdQ2uGZrf.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "ID", "name": "Indonesia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Deep in the heart of Jakarta's slums lies an impenetrable safe house for the world's most dangerous killers and gangsters. Until now, the run-down apartment block has been considered untouchable to even the bravest of police. Cloaked under the cover of pre-dawn darkness and silence, an elite swat team is tasked with raiding the safe house in order to take down the notorious drug lord that runs it. But when a chance encounter with a spotter blows their cover and news of their assault reaches the drug lord, the building's lights are cut and all the exits blocked. Stranded on the sixth floor with no way out, the unit must fight their way through the city's worst to survive their mission. Starring Indonesian martial arts sensation Iko Uwais.", "video": false, "id": 94329, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Raid", "tagline": "1 Ruthless Crime Lord, 20 Elite Cops, 30 Floors of Hell", "vote_count": 274, "homepage": "http://www.sonyclassics.com/theraid/", "belongs_to_collection": {"backdrop_path": "/oRQ7INsPDVon7U2jphXDr7LSP3H.jpg", "poster_path": "/eAlYfpNmZ2BFjdamgXvy96kt3WG.jpg", "id": 257960, "name": "The Raid Collection"}, "original_language": "id", "status": "Released", "spoken_languages": [{"iso_639_1": "id", "name": "Bahasa indonesia"}], "imdb_id": "tt1899353", "adult": false, "backdrop_path": "/fCcWGyNgz4pmCdgqQsYVZfAgT1K.jpg", "production_companies": [{"name": "XYZ Films", "id": 12142}, {"name": "Pt. Merantau Films", "id": 12141}, {"name": "Celluloid Dreams", "id": 860}], "release_date": "2011-11-20", "popularity": 0.842529533693587, "original_title": "Serbuan maut", "budget": 1100000, "cast": [{"name": "Iko Uwais", "character": "Rama", "id": 113732, "credit_id": "52fe49529251416c750c4457", "cast_id": 11, "profile_path": "/5unOYIpJUl35q5Q7dG1A6tJF2Jk.jpg", "order": 0}, {"name": "Ananda George", "character": "Ari", "id": 1001664, "credit_id": "52fe49529251416c750c445f", "cast_id": 13, "profile_path": "/s7Lm00bfFPceIcENcWirXtCysHJ.jpg", "order": 2}, {"name": "Pierre Gruno", "character": "Wahyu", "id": 1001665, "credit_id": "52fe49529251416c750c4463", "cast_id": 14, "profile_path": "/yn5Ob5PWynjts1jfx4QGm75OoDk.jpg", "order": 3}, {"name": "Yayan Ruhian", "character": "Mad Dog", "id": 142019, "credit_id": "52fe49529251416c750c4467", "cast_id": 15, "profile_path": "/dt6EJRqA4UMHWIEDddbkONXaz4k.jpg", "order": 4}, {"name": "Ray Sahetapy", "character": "Tama", "id": 592495, "credit_id": "52fe49529251416c750c446b", "cast_id": 16, "profile_path": "/nqKNGkVUltpsOnGejWLSpqhvd4N.jpg", "order": 5}, {"name": "Tegar Satrya", "character": "Bowo", "id": 1001666, "credit_id": "52fe49529251416c750c446f", "cast_id": 17, "profile_path": "/qprfyLK29HqhMZZhbk2LGl7a5cZ.jpg", "order": 6}, {"name": "Verdi Solaiman", "character": "Budi", "id": 1001667, "credit_id": "52fe49529251416c750c4473", "cast_id": 18, "profile_path": "/pJPCGzcgYVhhf2DbqdzKgnpZ8tz.jpg", "order": 7}, {"name": "Johannes Taslim", "character": "Jaka", "id": 592496, "credit_id": "52fe49529251416c750c4477", "cast_id": 19, "profile_path": "/jTKPQryiRDTdlRot43FIDzARgi5.jpg", "order": 8}, {"name": "R. Iman Aji", "character": "Eko", "id": 1127112, "credit_id": "52fe49529251416c750c4499", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Yusuf Opilus", "character": "Alee", "id": 1127113, "credit_id": "52fe49529251416c750c449d", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Donny Alamsyah", "character": "Andi", "id": 1202416, "credit_id": "532c532dc3a3684b9d00178c", "cast_id": 27, "profile_path": "/r0nj2yPF760NEgj2tVT5TCY2HjG.jpg", "order": 11}, {"name": "Iang Darmawan", "character": "Gofar", "id": 1103310, "credit_id": "548d80d392514122ff003ba7", "cast_id": 29, "profile_path": "/ukJH7JJTvMO25vDteX9OgNqUfAv.jpg", "order": 12}, {"name": "Eka 'Piranha' Rahmadia", "character": "Dagu", "id": 1398995, "credit_id": "548d80ef925141031b0003e3", "cast_id": 30, "profile_path": null, "order": 13}], "directors": [{"name": "Gareth Evans", "department": "Directing", "job": "Director", "credit_id": "52fe49529251416c750c441d", "profile_path": "/alW7ScKUxyiI2TOBYOZkACsLD7c.jpg", "id": 142013}], "vote_average": 7.1, "runtime": 101}, "77948": {"poster_path": "/zXhphNKS56VQbVJXqk3OMrjtNNc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16863583, "overview": "A young American (Cavill) uncovers a conspiracy during his attempt to save his family, who were kidnapped while on vacation in Spain.", "video": false, "id": 77948, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Cold Light of Day", "tagline": "Be careful who you trust.", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1366365", "adult": false, "backdrop_path": "/dFOC8NGMkKPZr9ic2hMo1nJOuzZ.jpg", "production_companies": [{"name": "Film Rites", "id": 8083}, {"name": "Galavis Film", "id": 8084}, {"name": "Picture Machine", "id": 8085}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Summit Entertainment", "id": 491}, {"name": "Fria Luz Del Dia, A.I.E.", "id": 23625}], "release_date": "2012-09-06", "popularity": 0.967737380633672, "original_title": "The Cold Light of Day", "budget": 20000000, "cast": [{"name": "Henry Cavill", "character": "Will Shaw", "id": 73968, "credit_id": "52fe4984c3a368484e12fa41", "cast_id": 11, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 0}, {"name": "Ver\u00f3nica Echegui", "character": "Lucia", "id": 114254, "credit_id": "52fe4984c3a368484e12fa59", "cast_id": 18, "profile_path": "/cKOL0nQE9aMDtMJvbloQ4mDZRh.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Jean Carrack", "id": 10205, "credit_id": "52fe4984c3a368484e12faa1", "cast_id": 31, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Bruce Willis", "character": "Martin", "id": 62, "credit_id": "52fe4984c3a368484e12fa45", "cast_id": 12, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 3}, {"name": "Caroline Goodall", "character": "Laurie Shaw", "id": 6692, "credit_id": "52fe4984c3a368484e12fa49", "cast_id": 13, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 4}, {"name": "Jim Piddock", "character": "Meckler", "id": 120560, "credit_id": "52fe4984c3a368484e12fa4d", "cast_id": 14, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 5}, {"name": "Rafi Gavron", "character": "Josh", "id": 21660, "credit_id": "52fe4984c3a368484e12fa51", "cast_id": 15, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 6}, {"name": "Joseph Mawle", "character": "Gorman", "id": 119783, "credit_id": "52fe4984c3a368484e12fa55", "cast_id": 17, "profile_path": "/a7334sICnKRe5RFQEECQsvoyQ8P.jpg", "order": 7}, {"name": "Emma Hamilton", "character": "Dara", "id": 395846, "credit_id": "52fe4984c3a368484e12fa5d", "cast_id": 19, "profile_path": "/1l5Dr4Yy7T26zjU2hr7hwC5p3Dh.jpg", "order": 8}, {"name": "Michael Budd", "character": "Esmael", "id": 582925, "credit_id": "52fe4984c3a368484e12fa61", "cast_id": 20, "profile_path": "/83djGObhdc8tuwJkyMHIZJHJ16M.jpg", "order": 9}, {"name": "\u00d3scar Jaenada", "character": "Maximo", "id": 59129, "credit_id": "52fe4984c3a368484e12faa5", "cast_id": 32, "profile_path": "/naQmysDM8jhmwhVIrdjdVUTGHLQ.jpg", "order": 10}], "directors": [{"name": "Mabrouk El Mechri", "department": "Directing", "job": "Director", "credit_id": "52fe4984c3a368484e12fa07", "profile_path": null, "id": 74924}], "vote_average": 4.9, "runtime": 93}, "77949": {"poster_path": "/ls7Qwgtpty3GMfgEHVwlcBxu72S.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 175088, "overview": "The Awakening is a British horror thriller film directed by Nick Murphy, starring Rebecca Hall, Dominic West, and Imelda Staunton. 1921 England is overwhelmed by the loss and grief of World War I. Hoax exposer Florence Cathcart (Hall) visits a boarding school to explain sightings of a child ghost.", "video": false, "id": 77949, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Awakening", "tagline": "Sometimes dead does not mean gone.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1687901", "adult": false, "backdrop_path": "/ntdakjgQNmRNscwWgKQBTVw1UqY.jpg", "production_companies": [{"name": "Studio Canal", "id": 5870}, {"name": "BBC Films", "id": 288}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Creative Scotland", "id": 8087}, {"name": "Origin Pictures", "id": 8088}], "release_date": "2011-08-17", "popularity": 0.155604456666413, "original_title": "The Awakening", "budget": 4798235, "cast": [{"name": "Rebecca Hall", "character": "Florence Cathcart", "id": 15556, "credit_id": "52fe4985c3a368484e12fb07", "cast_id": 1021, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 0}, {"name": "Dominic West", "character": "Robert Mallory", "id": 17287, "credit_id": "52fe4985c3a368484e12fb0b", "cast_id": 1022, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 1}, {"name": "Imelda Staunton", "character": "Maud Hill", "id": 11356, "credit_id": "52fe4985c3a368484e12fb0f", "cast_id": 1023, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 2}, {"name": "Isaac Hempstead Wright", "character": "Tom", "id": 239020, "credit_id": "52fe4985c3a368484e12fb37", "cast_id": 1032, "profile_path": "/qF1Ca4aNDkpSGQt9Q7qfpRbwNOk.jpg", "order": 3}, {"name": "Lucy Cohu", "character": "Constance Strickland", "id": 29235, "credit_id": "52fe4985c3a368484e12fb13", "cast_id": 1024, "profile_path": "/fMIOyKGpremDJs5NJP44TutbyfO.jpg", "order": 4}, {"name": "John Shrapnel", "character": "Reverend Hugh Purslow", "id": 940, "credit_id": "52fe4985c3a368484e12fb17", "cast_id": 1025, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 5}, {"name": "Diana Kent", "character": "Harriet Cathcart", "id": 15094, "credit_id": "52fe4985c3a368484e12fb1b", "cast_id": 1026, "profile_path": "/sMn4LRFnK7sSkQtrIIsOovzRrKS.jpg", "order": 6}, {"name": "Richard Durden", "character": "Alexander Cathcart", "id": 120833, "credit_id": "52fe4985c3a368484e12fb1f", "cast_id": 1027, "profile_path": "/jtsGAARS6sNDfHPGl4xrJdtSEb3.jpg", "order": 7}, {"name": "Alfie Field ", "character": "Victor Parry", "id": 582938, "credit_id": "52fe4985c3a368484e12fb23", "cast_id": 1028, "profile_path": "/gx3C4HViVVRj4ggruNBUaPO57NI.jpg", "order": 8}, {"name": "Tilly Vosburgh", "character": "Vera Flood", "id": 185464, "credit_id": "52fe4985c3a368484e12fb27", "cast_id": 1029, "profile_path": "/ed4ZGtFjcDPKoM0iPuud77L5KaE.jpg", "order": 9}, {"name": "Anastasia Hille", "character": "Katherine Vandermeer", "id": 66791, "credit_id": "52fe4985c3a368484e12fb3b", "cast_id": 1033, "profile_path": "/tjUxXrtcF5pZ8k6DMdmXZikHAIP.jpg", "order": 10}, {"name": "Andrew Havill", "character": "George Vandermeer", "id": 176191, "credit_id": "52fe4985c3a368484e12fb3f", "cast_id": 1034, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 11}, {"name": "Joseph Mawle", "character": "Edward Judd", "id": 119783, "credit_id": "52fe4985c3a368484e12fb43", "cast_id": 1035, "profile_path": "/a7334sICnKRe5RFQEECQsvoyQ8P.jpg", "order": 12}, {"name": "Neil Broome", "character": "School Master", "id": 1090947, "credit_id": "52fe4985c3a368484e12fb47", "cast_id": 1036, "profile_path": null, "order": 13}, {"name": "Shaun Dooley", "character": "Malcolm McNair", "id": 85071, "credit_id": "52fe4985c3a368484e12fb4b", "cast_id": 1037, "profile_path": "/3jFprpFHI3pYPAXW6cxMevf8u7D.jpg", "order": 14}, {"name": "Kasity Koehn", "character": "Sonya Wright", "id": 1408884, "credit_id": "550bb7469251414699002d05", "cast_id": 1063, "profile_path": null, "order": 15}], "directors": [{"name": "Nick Murphy ", "department": "Directing", "job": "Director", "credit_id": "52fe4984c3a368484e12fadf", "profile_path": null, "id": 582918}], "vote_average": 6.2, "runtime": 107}, "77950": {"poster_path": "/kajPlPUgobxci8ME5oqvzjN430q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 282570682, "overview": "The tale of an ordinary garden snail who dreams of winning the Indy 500.", "video": false, "id": 77950, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Turbo", "tagline": "SLO NO MO", "vote_count": 521, "homepage": "http://www.turbomovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1860353", "adult": false, "backdrop_path": "/dvdKrICCKP8Uh1Xqkn60oQXnYer.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2013-07-19", "popularity": 1.13509909813853, "original_title": "Turbo", "budget": 135000000, "cast": [{"name": "Ryan Reynolds", "character": "Turbo (voice)", "id": 10859, "credit_id": "52fe4985c3a368484e12fb97", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Paul Giamatti", "character": "Chet (voice)", "id": 13242, "credit_id": "52fe4985c3a368484e12fb9b", "cast_id": 6, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 1}, {"name": "Michael Pe\u00f1a", "character": "Tito (voice)", "id": 454, "credit_id": "52fe4985c3a368484e12fb9f", "cast_id": 7, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Whiplash (voice)", "id": 2231, "credit_id": "52fe4985c3a368484e12fbc3", "cast_id": 17, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Luis Guzm\u00e1n", "character": "Angelo (voice)", "id": 40481, "credit_id": "52fe4985c3a368484e12fba3", "cast_id": 8, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 4}, {"name": "Bill Hader", "character": "Guy Gagn\u00e9 (voice)", "id": 19278, "credit_id": "52fe4985c3a368484e12fba7", "cast_id": 9, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 5}, {"name": "Snoop Dogg", "character": "Smoove Move (voice)", "id": 19767, "credit_id": "52fe4985c3a368484e12fbbf", "cast_id": 16, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 6}, {"name": "Maya Rudolph", "character": "Burn (voice)", "id": 52792, "credit_id": "52fe4985c3a368484e12fbb7", "cast_id": 13, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 7}, {"name": "Ben Schwartz", "character": "Skid Mark (voice)", "id": 222121, "credit_id": "52fe4985c3a368484e12fbbb", "cast_id": 14, "profile_path": "/ty2N3LuUiXO1uKyRg74DUN82xQe.jpg", "order": 8}, {"name": "Richard Jenkins", "character": "Bobby (voice)", "id": 28633, "credit_id": "52fe4985c3a368484e12fbab", "cast_id": 10, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 9}, {"name": "Ken Jeong", "character": "Kim-Ly (voice)", "id": 83586, "credit_id": "52fe4985c3a368484e12fbaf", "cast_id": 11, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 10}, {"name": "Michelle Rodriguez", "character": "Paz (voice)", "id": 17647, "credit_id": "52fe4985c3a368484e12fbb3", "cast_id": 12, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 11}], "directors": [{"name": "David Soren", "department": "Directing", "job": "Director", "credit_id": "52fe4985c3a368484e12fb81", "profile_path": "/gDxfltxyHeR0uhBAhYniT9zQEEw.jpg", "id": 94075}], "vote_average": 6.2, "runtime": 96}, "77953": {"poster_path": "/6uH8BOWN60mu2Vd5z4jCaVWb2ix.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103430245, "overview": "The film follows two rival politicians (Will Ferrell & Zach Galifianakis) who are trying to win an election to represent their small South Carolina congressional district in the United States House of Representatives.", "video": false, "id": 77953, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Campaign", "tagline": "May The Best Loser Win.", "vote_count": 184, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1790886", "adult": false, "backdrop_path": "/8mKomlkHvO753Wc9w2Q25ffc4UC.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2012-08-09", "popularity": 0.539869587399124, "original_title": "The Campaign", "budget": 0, "cast": [{"name": "Dylan McDermott", "character": "Tim Wattley", "id": 32597, "credit_id": "52fe4985c3a368484e12fcf7", "cast_id": 11, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Cam Brady", "id": 23659, "credit_id": "52fe4985c3a368484e12fcfb", "cast_id": 12, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Marty Huggins", "id": 58225, "credit_id": "52fe4985c3a368484e12fcff", "cast_id": 13, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Jason Sudeikis", "character": "Mitch", "id": 58224, "credit_id": "52fe4985c3a368484e12fd03", "cast_id": 14, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 3}, {"name": "Sarah Baker", "character": "Mitzi Huggins", "id": 461542, "credit_id": "52fe4985c3a368484e12fd07", "cast_id": 16, "profile_path": "/A1mwwdupm77sGDHmpUA8dec6VGT.jpg", "order": 4}, {"name": "Millard Darden", "character": "Moderator Carl Terry", "id": 582950, "credit_id": "52fe4985c3a368484e12fd0b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Kya Haywood", "character": "Dylan/Clay Huggins", "id": 582952, "credit_id": "52fe4985c3a368484e12fd0f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "John Lithgow", "character": "Glen Motch", "id": 12074, "credit_id": "52fe4985c3a368484e12fd13", "cast_id": 19, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 7}, {"name": "Dan Aykroyd", "character": "Wade Motch", "id": 707, "credit_id": "52fe4985c3a368484e12fd17", "cast_id": 20, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 8}, {"name": "Brian Cox", "character": "Raymond", "id": 1248, "credit_id": "52fe4985c3a368484e12fd1b", "cast_id": 21, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 9}, {"name": "Amelia Jackson-Gray", "character": "Becky", "id": 232416, "credit_id": "52fe4985c3a368484e12fd1f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Josh Lawson", "character": "Tripp", "id": 189230, "credit_id": "52fe4985c3a368484e12fd23", "cast_id": 23, "profile_path": "/pVH3Giua6hxX43tRahODMCmm4Ej.jpg", "order": 11}, {"name": "Thomas Middleditch", "character": "Travis", "id": 111678, "credit_id": "52fe4985c3a368484e12fd27", "cast_id": 24, "profile_path": "/eejkzd9gtYm7pMFiVdjsGBYde5H.jpg", "order": 12}, {"name": "Scott A. Martin", "character": "Wes Talager", "id": 1055739, "credit_id": "52fe4985c3a368484e12fd2b", "cast_id": 25, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 13}, {"name": "Karen Maruyama", "character": "Mrs. Yao", "id": 157865, "credit_id": "52fe4985c3a368484e12fd2f", "cast_id": 26, "profile_path": "/jthFzZk2riKzFt0kRt0YOqvvGzr.jpg", "order": 14}, {"name": "Katherine LaNasa", "character": "Rose Brady", "id": 169337, "credit_id": "52fe4985c3a368484e12fd33", "cast_id": 27, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 15}, {"name": "Kate Miner", "character": "Shana", "id": 214695, "credit_id": "53183b3dc3a3685c4a00108c", "cast_id": 28, "profile_path": "/gIBpjOfDlEEu0nikxc9OzjAEqJk.jpg", "order": 16}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe4985c3a368484e12fcbd", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 5.5, "runtime": 85}, "4232": {"poster_path": "/ewi7gYW22t8T3piRvrXO73GlzuL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173046663, "overview": "A killer known as Ghostface begins killing off teenagers, and as the body count begins rising, one girl and her friends find themselves contemplating the \"Rules\" of horror films as they find themselves living in a real-life one.", "video": false, "id": 4232, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream", "tagline": "Someone has taken their love of scary movies one step too far.", "vote_count": 321, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117571", "adult": false, "backdrop_path": "/5jZlGRo7fCLs96wcYY6fdKkLJ9I.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "1996-12-19", "popularity": 1.16445822946999, "original_title": "Scream", "budget": 14000000, "cast": [{"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe43b3c3a36847f8068f97", "cast_id": 20, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 0}, {"name": "David Arquette", "character": "Deputy Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe43b3c3a36847f8068f93", "cast_id": 19, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Gale Weathers", "id": 14405, "credit_id": "52fe43b3c3a36847f8068f9b", "cast_id": 21, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Skeet Ulrich", "character": "Billy Loomis", "id": 22108, "credit_id": "52fe43b3c3a36847f8068f9f", "cast_id": 22, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 3}, {"name": "Rose McGowan", "character": "Tatum Riley", "id": 16850, "credit_id": "52fe43b3c3a36847f8068fa3", "cast_id": 23, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 4}, {"name": "Matthew Lillard", "character": "Stuart Macher", "id": 26457, "credit_id": "52fe43b3c3a36847f8068fa7", "cast_id": 24, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 5}, {"name": "Jamie Kennedy", "character": "Randy Meeks", "id": 6213, "credit_id": "52fe43b3c3a36847f8068fab", "cast_id": 25, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 6}, {"name": "W. Earl Brown", "character": "Kenneth Jones", "id": 6951, "credit_id": "52fe43b3c3a36847f8068faf", "cast_id": 26, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 7}, {"name": "Drew Barrymore", "character": "Casey Becker", "id": 69597, "credit_id": "52fe43b3c3a36847f8068fb3", "cast_id": 27, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 8}, {"name": "Joseph Whipp", "character": "Sheriff Burke", "id": 13660, "credit_id": "52fe43b3c3a36847f8068fb7", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Roger L. Jackson", "character": "Phone Voice (voice)", "id": 51957, "credit_id": "52fe43b3c3a36847f8068fbb", "cast_id": 29, "profile_path": "/lI4N9GJ0QuC1YFYSwauNssGwe11.jpg", "order": 10}, {"name": "David Booth", "character": "Mr. Becker", "id": 101312, "credit_id": "52fe43b3c3a36847f8068fbf", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Lawrence Hecht", "character": "Neil Prescott", "id": 101313, "credit_id": "52fe43b3c3a36847f8068fc3", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Liev Schreiber", "character": "Cotton Weary", "id": 23626, "credit_id": "52fe43b3c3a36847f8068fc7", "cast_id": 32, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 13}, {"name": "Kevin Patrick Walls", "character": "Steven Orth", "id": 10827, "credit_id": "52fe43b3c3a36847f8068fcb", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Frances Lee McCain", "character": "Mrs. Riley", "id": 1070, "credit_id": "52fe43b3c3a36847f8068fcf", "cast_id": 34, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 15}, {"name": "Henry Winkler", "character": "Principal Arthur Hembry", "id": 31903, "credit_id": "52fe43b3c3a36847f8068fd3", "cast_id": 35, "profile_path": "/o3QkTZkDYMkKYJphYJkvMSx8eB3.jpg", "order": 16}, {"name": "Linda Blair", "character": "Obnoxious Reporter", "id": 37366, "credit_id": "52fe43b3c3a36847f8068fd7", "cast_id": 36, "profile_path": "/tIoU3CSpjnLi79UfBgNjXNQM1GN.jpg", "order": 17}, {"name": "Wes Craven", "character": "Fred the Janitor", "id": 5140, "credit_id": "52fe43b3c3a36847f8068fdb", "cast_id": 37, "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "order": 18}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe43b3c3a36847f8068f29", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.8, "runtime": 111}, "4233": {"poster_path": "/c5AyWNWooMGkJXlqLwmPQCjUwHt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 172363301, "overview": "Two years after the terrifying events that occurred in Woodsboro, Sidney is now attending Windsor College in Cincinnati with long time friend Randy. Meanwhile, Gale Weathers best selling book on Sidney's life has now been made into a major motion picture. When two college students are killed in a theatre while watching the new film \"Stab,\" Sidney knows deep down that history is repeating itself.", "video": false, "id": 4233, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream 2", "tagline": "Someone has taken their love of sequels one step too far.", "vote_count": 167, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120082", "adult": false, "backdrop_path": "/cBUvJWcV8k7GTEGoL2Dp6CmgUV1.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Konrad Pictures", "id": 85}, {"name": "Maven Entertainment", "id": 1601}, {"name": "Dimension Films", "id": 7405}], "release_date": "1997-12-09", "popularity": 1.2829813768929, "original_title": "Scream 2", "budget": 24000000, "cast": [{"name": "David Arquette", "character": "Deputy Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe43b4c3a36847f806905d", "cast_id": 14, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 0}, {"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe43b4c3a36847f8069061", "cast_id": 15, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Gale Weathers", "id": 14405, "credit_id": "52fe43b4c3a36847f8069065", "cast_id": 16, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Sarah Michelle Gellar", "character": "Casey 'Cici' Cooper", "id": 11863, "credit_id": "52fe43b4c3a36847f8069069", "cast_id": 17, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 3}, {"name": "Jamie Kennedy", "character": "Randy Meeks", "id": 6213, "credit_id": "52fe43b4c3a36847f806906d", "cast_id": 18, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 4}, {"name": "Laurie Metcalf", "character": "Debbie Salt", "id": 12133, "credit_id": "52fe43b4c3a36847f8069071", "cast_id": 19, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 5}, {"name": "Elise Neal", "character": "Hallie McDaniel", "id": 21215, "credit_id": "52fe43b4c3a36847f8069075", "cast_id": 20, "profile_path": "/6Z6LVIlaCVMWsRgOPFOA4NOXAQO.jpg", "order": 6}, {"name": "Jerry O'Connell", "character": "Derek Feldman", "id": 3035, "credit_id": "52fe43b4c3a36847f8069079", "cast_id": 22, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 8}, {"name": "Timothy Olyphant", "character": "Mikey", "id": 18082, "credit_id": "52fe43b4c3a36847f806907d", "cast_id": 23, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 9}, {"name": "Heather Graham", "character": "'Stab' Casey", "id": 69122, "credit_id": "52fe43b4c3a36847f8069081", "cast_id": 24, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 10}, {"name": "Jada Pinkett Smith", "character": "Maureen)", "id": 9575, "credit_id": "53bfcc41c3a3684cf9004abd", "cast_id": 25, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 11}, {"name": "Liev Schreiber", "character": "Cotton Weary", "id": 23626, "credit_id": "53bfcc7ac3a3684ce9004a49", "cast_id": 26, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 12}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe43b3c3a36847f8069011", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.1, "runtime": 120}, "4234": {"poster_path": "/8mmObJf9L07wwF92gKdVb4lRXVC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161834276, "overview": "A murdering spree begins to happen again, this time its targeted toward the original Woodsboro survivors and those associated with the movie inside a movie, Stab 3. Sydney must face the demons of her past to stop the killer.", "video": false, "id": 4234, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream 3", "tagline": "Someone has taken their love of trilogies one step too far.", "vote_count": 148, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134084", "adult": false, "backdrop_path": "/sZlCYw3fdzZBo857t2cY3WzoqZW.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2000-02-03", "popularity": 0.926708795368079, "original_title": "Scream 3", "budget": 40000000, "cast": [{"name": "David Arquette", "character": "Deputy Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe43b4c3a36847f806911d", "cast_id": 15, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 0}, {"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe43b4c3a36847f8069121", "cast_id": 16, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Gale Weathers", "id": 14405, "credit_id": "52fe43b4c3a36847f8069125", "cast_id": 17, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Patrick Dempsey", "character": "Mark Kincaid", "id": 18352, "credit_id": "52fe43b4c3a36847f8069129", "cast_id": 18, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 3}, {"name": "Parker Posey", "character": "Jennifer Jolie", "id": 7489, "credit_id": "52fe43b4c3a36847f806912d", "cast_id": 19, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 4}, {"name": "Scott Foley", "character": "Roman Bridger", "id": 35595, "credit_id": "52fe43b4c3a36847f8069131", "cast_id": 20, "profile_path": "/sqZxruEjuXUG52kuOItnOVoDjPZ.jpg", "order": 5}, {"name": "Deon Richmond", "character": "Tyson Fox", "id": 35596, "credit_id": "52fe43b4c3a36847f8069135", "cast_id": 21, "profile_path": "/ussG1tkxeGe1iVj234A3c1MbuHo.jpg", "order": 6}, {"name": "Emily Mortimer", "character": "Angelina Tyler", "id": 1246, "credit_id": "52fe43b4c3a36847f8069139", "cast_id": 22, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 7}, {"name": "Lance Henriksen", "character": "John Milton", "id": 2714, "credit_id": "52fe43b4c3a36847f806913d", "cast_id": 23, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 8}, {"name": "Jenny McCarthy", "character": "Sarah Darling", "id": 35597, "credit_id": "52fe43b4c3a36847f8069141", "cast_id": 24, "profile_path": "/itsSilp7prfi3lKQMFn1p5J6hWI.jpg", "order": 9}, {"name": "Matt Keeslar", "character": "Tom Prinze", "id": 35598, "credit_id": "52fe43b4c3a36847f8069145", "cast_id": 25, "profile_path": "/s8G9jGgrFbJcjUgFO6vJ1uKCUbT.jpg", "order": 10}, {"name": "Roger Corman", "character": "Hollywood Executive", "id": 102429, "credit_id": "52fe43b4c3a36847f8069149", "cast_id": 26, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 11}, {"name": "Patrick Warburton", "character": "Steven Stone", "id": 9657, "credit_id": "52fe43b4c3a36847f806914d", "cast_id": 27, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 12}, {"name": "Carrie Fisher", "character": "Bianca", "id": 4, "credit_id": "52fe43b4c3a36847f8069151", "cast_id": 28, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 13}, {"name": "Heather Matarazzo", "character": "Martha Meeks", "id": 33656, "credit_id": "52fe43b4c3a36847f8069155", "cast_id": 29, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 14}, {"name": "Jamie Kennedy", "character": "Randy Meeks", "id": 6213, "credit_id": "52fe43b4c3a36847f8069159", "cast_id": 30, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 15}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe43b4c3a36847f806915d", "cast_id": 31, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 16}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe43b4c3a36847f8069161", "cast_id": 32, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 17}, {"name": "Liev Schreiber", "character": "Cotton Weary", "id": 23626, "credit_id": "52fe43b4c3a36847f8069165", "cast_id": 33, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 18}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe43b4c3a36847f80690cb", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 5.9, "runtime": 116}, "94348": {"poster_path": "/59XyZTwKnkZDiyhOYjIle2Tr5Mq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30353232, "overview": "After Washington DC detective Alex Cross is told that a family member has been murdered, he vows to track down the killer. He soon discovers that she was not his first victim and that things are not what they seem.", "video": false, "id": 94348, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Alex Cross", "tagline": "Don't Ever Cross Alex Cross", "vote_count": 153, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eyKpawn8yMq6kdv03wgKruMuSJX.jpg", "poster_path": "/64mlnEVoq1I0BZe4iDdAv89qO9Z.jpg", "id": 142680, "name": "Alex Cross Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1712170", "adult": false, "backdrop_path": "/s46EcIPd2AiAbqUCDGU3VkoRmMw.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-10-18", "popularity": 0.799317510687557, "original_title": "Alex Cross", "budget": 45000000, "cast": [{"name": "Tyler Perry", "character": "Dr. Alex Cross", "id": 80602, "credit_id": "52fe49549251416c750c47b7", "cast_id": 12, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 0}, {"name": "Rachel Nichols", "character": "Monica Ashe", "id": 50347, "credit_id": "52fe49549251416c750c47b3", "cast_id": 11, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 1}, {"name": "Jean Reno", "character": "Leon Mercier", "id": 1003, "credit_id": "52fe49549251416c750c47bb", "cast_id": 13, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 2}, {"name": "Matthew Fox", "character": "Picasso", "id": 28657, "credit_id": "52fe49549251416c750c47bf", "cast_id": 14, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 3}, {"name": "Giancarlo Esposito", "character": "Daramus Holiday", "id": 4808, "credit_id": "52fe49549251416c750c47c3", "cast_id": 15, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 4}, {"name": "Edward Burns", "character": "Tommy Kane", "id": 12833, "credit_id": "52fe49549251416c750c47c7", "cast_id": 16, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 5}, {"name": "Cicely Tyson", "character": "Nana Mama", "id": 18249, "credit_id": "52fe49549251416c750c47cb", "cast_id": 17, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 6}, {"name": "John C. McGinley", "character": "Richard Brookwell", "id": 11885, "credit_id": "52fe49549251416c750c47cf", "cast_id": 18, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 7}, {"name": "Chad Lindberg", "character": "Vincent Dardis", "id": 9186, "credit_id": "52fe49549251416c750c47d3", "cast_id": 19, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 8}, {"name": "Carmen Ejogo", "character": "Maria Cross", "id": 37158, "credit_id": "52fe49549251416c750c47d7", "cast_id": 20, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 9}, {"name": "Stephanie Jacobsen", "character": "Fan Yau", "id": 83458, "credit_id": "52fe49549251416c750c47db", "cast_id": 21, "profile_path": "/mOivDxyWJ9tOTx2TEd3xNHXNAa4.jpg", "order": 10}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe49549251416c750c4779", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.4, "runtime": 101}, "12429": {"poster_path": "/3s0mpSpLkI7cIhqWGrGbsiyvlsH.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 187479518, "overview": "The son of a sailor, 5-year old Sosuke lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father's magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo's father sends the ocean's mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo's dreams of becoming human.", "video": false, "id": 12429, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Ponyo", "tagline": "Welcome To A World Where Anything Is Possible.", "vote_count": 293, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0876563", "adult": false, "backdrop_path": "/akDpPae2zJXZhokzsAPgDyNwiwX.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Toho Company", "id": 882}, {"name": "Dentsu", "id": 6452}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "The Yomiuri Shimbun", "id": 11726}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "Lawson", "id": 11849}, {"name": "Walt Disney Company", "id": 20193}, {"name": "Taikei Office", "id": 34557}, {"name": "Asahi Soft Drinks Company", "id": 34558}], "release_date": "2008-07-19", "popularity": 0.900540565987347, "original_title": "\u5d16\u306e\u4e0a\u306e\u30dd\u30cb\u30e7", "budget": 41677699, "cast": [{"name": "Yuria Nara", "character": "Ponyo (voice)", "id": 78346, "credit_id": "52fe44df9251416c75043ebb", "cast_id": 14, "profile_path": null, "order": 0}, {"name": "Hiroki Doi", "character": "Sosuke (voice)", "id": 78347, "credit_id": "52fe44df9251416c75043ebf", "cast_id": 15, "profile_path": null, "order": 1}, {"name": "George Tokoro", "character": "Fujimoto (voice) (as George Tokoro)", "id": 78348, "credit_id": "52fe44df9251416c75043ec3", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "Tomoko Yamaguchi", "character": "Lisa (voice)", "id": 78349, "credit_id": "52fe44df9251416c75043ec7", "cast_id": 17, "profile_path": null, "order": 3}, {"name": "Y\u016bki Amami", "character": "Grandmammare (voice)", "id": 78350, "credit_id": "52fe44df9251416c75043ecb", "cast_id": 18, "profile_path": "/g7o8LMD63wPYM5ibTq2LDcYUH62.jpg", "order": 4}, {"name": "Kazushige Nagashima", "character": "Koichi (voice)", "id": 78351, "credit_id": "52fe44df9251416c75043ecf", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Akiko Yano", "character": "Ponyo's Sisters (voice)", "id": 78352, "credit_id": "52fe44df9251416c75043ed3", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Shinichi Hatori", "character": "Anchorman (voice)", "id": 78353, "credit_id": "52fe44df9251416c75043ed7", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Tokie Hidari", "character": "Kayo (voice)", "id": 78354, "credit_id": "52fe44df9251416c75043edb", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Eimi Hiraoka", "character": "Kumiko (voice)", "id": 78355, "credit_id": "52fe44df9251416c75043edf", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Rumi Hiiragi", "character": "Young Mother (voice)", "id": 19587, "credit_id": "52fe44df9251416c75043ee3", "cast_id": 24, "profile_path": "/gAjyBxRsQKYeZMkYQ6cmEj5DmHD.jpg", "order": 10}, {"name": "Tomoko Naraoka", "character": "Yoshie (voice)", "id": 78356, "credit_id": "52fe44df9251416c75043ee7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Nozomi \u00d4hashi", "character": "Karen (voice)", "id": 78357, "credit_id": "52fe44df9251416c75043eeb", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Kazuko Yoshiyuki", "character": "Toki (voice)", "id": 36074, "credit_id": "52fe44df9251416c75043eef", "cast_id": 27, "profile_path": "/wPsmZqTuO2rk0RdO8kYbxkD90By.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe44df9251416c75043e6f", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.3, "runtime": 100}, "12435": {"poster_path": "/vaARLtfmTHbNpcZycgYLV62M7ye.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44638886, "overview": "A college graduate goes to work as a nanny for a rich New York family. Ensconced in their home, she has to juggle their dysfunction, a new romance, and the spoiled brat in her charge.", "video": false, "id": 12435, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Nanny Diaries", "tagline": "A comedy about life at the top, as seen from the bottom.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489237", "adult": false, "backdrop_path": "/R5dZcqRr83aiz3yVVgsG7ln9LW.jpg", "production_companies": [{"name": "FilmColony", "id": 1811}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2007-08-24", "popularity": 0.916270697722852, "original_title": "The Nanny Diaries", "budget": 20000000, "cast": [{"name": "Scarlett Johansson", "character": "Annie Braddock", "id": 1245, "credit_id": "52fe44e09251416c75044059", "cast_id": 6, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Laura Linney", "character": "Mrs. X", "id": 350, "credit_id": "52fe44e09251416c7504405d", "cast_id": 7, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 1}, {"name": "Chris Evans", "character": "Hayden \"Harvard Hottie\"", "id": 16828, "credit_id": "52fe44e09251416c75044061", "cast_id": 8, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Mr. Stan X", "id": 13242, "credit_id": "52fe44e09251416c75044065", "cast_id": 9, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Nicholas Art", "character": "Grayer Addison X", "id": 2965, "credit_id": "52fe44e09251416c75044069", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Donna Murphy", "character": "Judy Braddock", "id": 2517, "credit_id": "52fe44e09251416c7504406d", "cast_id": 11, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 5}, {"name": "Alicia Keys", "character": "Lynette", "id": 72208, "credit_id": "52fe44e09251416c75044071", "cast_id": 12, "profile_path": "/7s596YUye3gnBg0dD1BC5WCcoXQ.jpg", "order": 6}, {"name": "Judith Roberts", "character": "Milicent", "id": 14797, "credit_id": "52fe44e09251416c75044075", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Charlie Hewson", "character": "JoJo", "id": 133046, "credit_id": "52fe44e09251416c750440a3", "cast_id": 21, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 8}, {"name": "Alison Wright", "character": "Bridget", "id": 1257565, "credit_id": "5302def5c3a36809fd479ba1", "cast_id": 22, "profile_path": "/78IN3NYUDajfKnljE9VPdN8TdDg.jpg", "order": 9}], "directors": [{"name": "Shari Springer Berman", "department": "Directing", "job": "Director", "credit_id": "52fe44e09251416c7504403d", "profile_path": "/7VQaCSTKZdOZs8bFEkiIkkGhgzU.jpg", "id": 72205}, {"name": "Robert Pulcini", "department": "Directing", "job": "Director", "credit_id": "52fe44e09251416c75044043", "profile_path": "/nUUPNrIwC6vJNGLwyfhq89yr4T4.jpg", "id": 72206}], "vote_average": 6.0, "runtime": 106}, "4244": {"poster_path": "/2TLNxkNbxLXouYsu6DGXKwWXnTr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69700000, "overview": "Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly -- with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.", "video": false, "id": 4244, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Kid", "tagline": "Nobody ever grows up quite like they imagined.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0219854", "adult": false, "backdrop_path": "/Arx6cOLuB47jwldV7eW4Bt4kAmd.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2000-07-07", "popularity": 0.432007908322262, "original_title": "The Kid", "budget": 65000000, "cast": [{"name": "Bruce Willis", "character": "Russell Duritz", "id": 62, "credit_id": "52fe43b5c3a36847f80695f3", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Spencer Breslin", "character": "Rusty Duritz", "id": 35654, "credit_id": "52fe43b5c3a36847f80695f7", "cast_id": 2, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Amy", "id": 1246, "credit_id": "52fe43b5c3a36847f80695fb", "cast_id": 3, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Lily Tomlin", "character": "Janet", "id": 10437, "credit_id": "52fe43b5c3a36847f80695ff", "cast_id": 4, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 3}, {"name": "Chi McBride", "character": "Kenny", "id": 8687, "credit_id": "52fe43b5c3a36847f8069603", "cast_id": 5, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 4}, {"name": "Jean Smart", "character": "Deirdre Lefever", "id": 5376, "credit_id": "52fe43b5c3a36847f8069607", "cast_id": 6, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 5}, {"name": "Dana Ivey", "character": "Dr. Suzanne Alexander", "id": 13314, "credit_id": "52fe43b5c3a36847f806960b", "cast_id": 7, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 6}, {"name": "Daniel von Bargen", "character": "Sam Duritz", "id": 1473, "credit_id": "52fe43b5c3a36847f806960f", "cast_id": 8, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 7}, {"name": "Stanley Anderson", "character": "Bob Riley", "id": 15253, "credit_id": "52fe43b5c3a36847f8069613", "cast_id": 9, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 8}, {"name": "Susan Dalian", "character": "Giselle", "id": 35656, "credit_id": "52fe43b5c3a36847f8069617", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Juanita Moore", "character": "Kenny's Grandmother", "id": 35658, "credit_id": "52fe43b5c3a36847f806961b", "cast_id": 11, "profile_path": "/xJrcIDUsk3VxZzJkop3C9HNkYFe.jpg", "order": 10}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe43b5c3a36847f806964b", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 5.9, "runtime": 104}, "12437": {"poster_path": "/hZtK6fkusSKzGc0f7yQ2syo14Ze.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91327197, "overview": "A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.", "video": false, "id": 12437, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Underworld: Rise of the Lycans", "tagline": "Every war has a beginning.", "vote_count": 670, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0834001", "adult": false, "backdrop_path": "/gVfnoiCJBdv2SN7poIbU7eyNVq1.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Sketch Films", "id": 7738}, {"name": "UW3 Film Productions", "id": 7739}], "release_date": "2009-01-22", "popularity": 1.62095612187571, "original_title": "Underworld: Rise of the Lycans", "budget": 35000000, "cast": [{"name": "Bill Nighy", "character": "Viktor", "id": 2440, "credit_id": "52fe44e09251416c750440e3", "cast_id": 2, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "Michael Sheen", "character": "Lucian", "id": 3968, "credit_id": "52fe44e09251416c750440e7", "cast_id": 3, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 1}, {"name": "Rhona Mitra", "character": "Sonja", "id": 25702, "credit_id": "52fe44e09251416c750440df", "cast_id": 1, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 2}, {"name": "Shane Brolly", "character": "Kraven", "id": 3969, "credit_id": "52fe44e09251416c750440eb", "cast_id": 4, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 3}, {"name": "Steven Mackintosh", "character": "Andreas Tanis", "id": 978, "credit_id": "52fe44e09251416c750440ef", "cast_id": 5, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 4}, {"name": "Kevin Grevioux", "character": "Raze", "id": 3952, "credit_id": "52fe44e09251416c750440f3", "cast_id": 6, "profile_path": "/eP1P9jxMBiI1a6cQHlChNdDALKY.jpg", "order": 5}, {"name": "David Aston", "character": "Coloman", "id": 9383, "credit_id": "52feb9c2c3a3680f0103d5a1", "cast_id": 32, "profile_path": "/aO7w5K2BjeQaAUN3ogo9NuAD1qI.jpg", "order": 6}, {"name": "Geraldine Brophy", "character": "Nobleman's Wife", "id": 1047942, "credit_id": "52febabbc3a3680f1705aa9c", "cast_id": 33, "profile_path": "/5VArQQlKBtpa8ZhRH5gORPU0c4w.jpg", "order": 7}, {"name": "Leighton Cardno", "character": "Fearful Lycan", "id": 1226685, "credit_id": "52febc8bc3a3680efa053efc", "cast_id": 34, "profile_path": "/7ynTVvbFL3R9ZlpRYD8WPvIuGQS.jpg", "order": 8}, {"name": "Alexander Carroll", "character": "Young Lucian", "id": 1049596, "credit_id": "52febd38c3a3680ef303881d", "cast_id": 35, "profile_path": "/3Xmq2GkCWYmEWVDQHPiplu9g7R9.jpg", "order": 9}, {"name": "Elizabeth Hawthorne", "character": "Orsova", "id": 5533, "credit_id": "52febd86c3a3680f2e05fc0f", "cast_id": 36, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 10}, {"name": "Jason Hood", "character": "Death Dealer", "id": 1292753, "credit_id": "52febf47c3a3680ef303b756", "cast_id": 37, "profile_path": "/p0diBCKlTIOUNCcuD9chDhiWL3d.jpg", "order": 11}, {"name": "Mark Mitchinson", "character": "Nobleman", "id": 205427, "credit_id": "52febfabc3a3680f25048b18", "cast_id": 38, "profile_path": "/6p3EsliIRLKTF4c9fGJTSg0jtp0.jpg", "order": 12}, {"name": "Craig Parker", "character": "Sabas", "id": 1332, "credit_id": "52fec149c3a3680f2e06678d", "cast_id": 40, "profile_path": "/amJPcZnpWIABjbaN5FzW5vvTIEk.jpg", "order": 14}, {"name": "Timothy Raby", "character": "Janosh", "id": 173441, "credit_id": "52fec299c3a3680f2504eaff", "cast_id": 41, "profile_path": "/qaurwY1o3cmOOkp8Vpb4WFD9m9G.jpg", "order": 15}, {"name": "Tania Nolan", "character": "Luka", "id": 107546, "credit_id": "52fec2bcc3a3680ef304140c", "cast_id": 42, "profile_path": "/qoTx3yZhlaCjtqTl98dploumrkr.jpg", "order": 16}, {"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "53e3c3dc0e0a262b83004a7c", "cast_id": 44, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 17}], "directors": [{"name": "Patrick Tatopoulos", "department": "Directing", "job": "Director", "credit_id": "52fe44e09251416c750440f9", "profile_path": "/RXqyZV2z5qk7TUVCXcXdatFFkd.jpg", "id": 3964}], "vote_average": 6.1, "runtime": 92}, "4247": {"poster_path": "/bvVmVFBVQLytK1H4TJTFdnhvf4T.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 278019771, "overview": "Following on the heels of popular teen-scream horror movies, with uproarious comedy and biting satire. Marlon and Shawn Wayans, Shannon Elizabeth and Carmen Electra pitch in to skewer some of Hollywood's biggest blockbusters, including Scream, I Know What You Did Last Summer, The Matrix, American Pie and The Blair Witch Project.", "video": false, "id": 4247, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie", "tagline": "No mercy. No shame. No sequel.", "vote_count": 320, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0175142", "adult": false, "backdrop_path": "/s7dcAllZEVSrVIVMUVAUmwAxFmn.jpg", "production_companies": [{"name": "Brillstein-Grey Entertainment", "id": 1606}, {"name": "Gold/Miller Productions", "id": 1607}, {"name": "Wayans Bros. Entertainment", "id": 1608}], "release_date": "2000-07-07", "popularity": 0.600392488912154, "original_title": "Scary Movie", "budget": 19000000, "cast": [{"name": "Carmen Electra", "character": "Drew Decker", "id": 28639, "credit_id": "52fe43b5c3a36847f8069791", "cast_id": 23, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 0}, {"name": "Dave Sheridan", "character": "The Killer/Doofy Gilmore", "id": 35701, "credit_id": "52fe43b5c3a36847f8069795", "cast_id": 24, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 1}, {"name": "Anna Faris", "character": "Cindy Campbell", "id": 1772, "credit_id": "52fe43b5c3a36847f8069799", "cast_id": 29, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Jon Abrahams", "character": "Bobby Prinze", "id": 17866, "credit_id": "52fe43b5c3a36847f806979d", "cast_id": 30, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 3}, {"name": "Regina Hall", "character": "Brenda Meeks", "id": 35705, "credit_id": "52fe43b5c3a36847f80697a1", "cast_id": 32, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 4}, {"name": "Marlon Wayans", "character": "Shorty Meeks", "id": 9562, "credit_id": "52fe43b5c3a36847f80697a5", "cast_id": 33, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 5}, {"name": "Shannon Elizabeth", "character": "Buffy Gilmore", "id": 21596, "credit_id": "52fe43b5c3a36847f80697a9", "cast_id": 34, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 6}, {"name": "Cheri Oteri", "character": "Gail Hailstorm", "id": 60252, "credit_id": "52fe43b5c3a36847f80697bf", "cast_id": 38, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 7}, {"name": "Shawn Wayans", "character": "Ray Wilkins", "id": 35690, "credit_id": "52fe43b5c3a36847f80697c3", "cast_id": 39, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 8}, {"name": "Keenen Ivory Wayans", "character": "Slave", "id": 35689, "credit_id": "52fe43b5c3a36847f80697c7", "cast_id": 40, "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "order": 9}, {"name": "Marissa Jaret Winokur", "character": "Garage Victim", "id": 76742, "credit_id": "54a09c4dc3a36851ce0023e2", "cast_id": 45, "profile_path": "/mpB7Ny5yhuvRS7pqpD824aid4hG.jpg", "order": 10}, {"name": "James Van Der Beek", "character": "Dawson Leery", "id": 19210, "credit_id": "52fe43b5c3a36847f80697cf", "cast_id": 42, "profile_path": "/p6FC3Zn6OHLCCy2913GWmo64o8B.jpg", "order": 12}, {"name": "Kurt Fuller", "character": "The Sheriff", "id": 29685, "credit_id": "546574beeaeb817b41000399", "cast_id": 43, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 13}, {"name": "Lochlyn Munro", "character": "Greg Phillippe", "id": 58058, "credit_id": "546574e9c3a3687ab30002ec", "cast_id": 44, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 14}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe43b5c3a36847f806971b", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 5.9, "runtime": 88}, "4248": {"poster_path": "/tSGWhSResV2Cnqqr91TGKyZzf79.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141220678, "overview": "While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called \"Hell House,\" and murderous high jinks ensue.", "video": false, "id": 4248, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 2", "tagline": "No More Mercy. No More Shame. No More Sequels - Honest! - We Lied.", "vote_count": 197, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0257106", "adult": false, "backdrop_path": "/j9hTBWA2fMfzfcF2mo4GxN9FpRe.jpg", "production_companies": [{"name": "Brillstein-Grey Entertainment", "id": 1606}, {"name": "Gold/Miller Productions", "id": 1607}, {"name": "Wayans Bros. Entertainment", "id": 1608}], "release_date": "2001-07-04", "popularity": 0.342789256362708, "original_title": "Scary Movie 2", "budget": 45000000, "cast": [{"name": "Anna Faris", "character": "Cindy Campbell", "id": 1772, "credit_id": "52fe43b5c3a36847f80698c1", "cast_id": 28, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 0}, {"name": "Marlon Wayans", "character": "Shorty Meeks", "id": 9562, "credit_id": "52fe43b5c3a36847f80698c5", "cast_id": 29, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 1}, {"name": "James DeBello", "character": "Tommy", "id": 35768, "credit_id": "52fe43b5c3a36847f80698c9", "cast_id": 30, "profile_path": "/xhDScFpgfM9gfIyNQm8KOr0qEU5.jpg", "order": 2}, {"name": "Shawn Wayans", "character": "Ray Wilkins", "id": 35690, "credit_id": "52fe43b5c3a36847f80698cd", "cast_id": 31, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 3}, {"name": "David Cross", "character": "Dwight Hartman", "id": 212, "credit_id": "52fe43b5c3a36847f80698d1", "cast_id": 32, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Christopher Masterson", "character": "Buddy", "id": 35769, "credit_id": "52fe43b5c3a36847f80698d5", "cast_id": 33, "profile_path": "/gz0GFQmLLjo6Q9Gvf1rKdZd2XhM.jpg", "order": 5}, {"name": "Regina Hall", "character": "Brenda Meeks", "id": 35705, "credit_id": "52fe43b5c3a36847f80698d9", "cast_id": 34, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 6}, {"name": "Tim Curry", "character": "Prof. Oldman", "id": 13472, "credit_id": "52fe43b5c3a36847f80698dd", "cast_id": 35, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 7}, {"name": "Kathleen Robertson", "character": "Theo", "id": 33676, "credit_id": "52fe43b5c3a36847f80698e1", "cast_id": 36, "profile_path": "/dDokQ6zSfzkaZRvDfvEHglWMb90.jpg", "order": 8}, {"name": "Chris Elliott", "character": "Henson", "id": 1534, "credit_id": "52fe43b5c3a36847f80698e5", "cast_id": 37, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 9}, {"name": "James Woods", "character": "Father McFeely", "id": 4512, "credit_id": "52fe43b5c3a36847f80698e9", "cast_id": 38, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 10}, {"name": "Andy Richter", "character": "Father Harris", "id": 28637, "credit_id": "52fe43b5c3a36847f80698ed", "cast_id": 39, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 11}, {"name": "Tori Spelling", "character": "Alex Monday", "id": 19149, "credit_id": "52fe43b5c3a36847f80698f1", "cast_id": 40, "profile_path": "/8UDiVmZXmhnvl5C5Xd3lecmrqyY.jpg", "order": 12}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe43b5c3a36847f8069827", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 5.6, "runtime": 83}, "12444": {"poster_path": "/maP4MTfPCeVD2FZbKTLUgriOW4R.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 954305868, "overview": "The end begins as Harry, Ron, and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.", "video": false, "id": 12444, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Deathly Hallows: Part 1", "tagline": "One Way\u2026 One Fate\u2026 One Hero.", "vote_count": 2040, "homepage": "http://www.harrypotter.com", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0926084", "adult": false, "backdrop_path": "/17Pf2aGFfehYyz9Ru2S6fzcXvEO.jpg", "production_companies": [{"name": "Heyday Films", "id": 7364}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2010-11-19", "popularity": 2.38100644864624, "original_title": "Harry Potter and the Deathly Hallows: Part 1", "budget": 250000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe44e19251416c7504438d", "cast_id": 43, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe44e19251416c75044389", "cast_id": 42, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 1}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe44e19251416c75044317", "cast_id": 13, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe44e19251416c750442f1", "cast_id": 3, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe44e19251416c750442f5", "cast_id": 4, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 4}, {"name": "Bill Nighy", "character": "Rufus Scrimgeour", "id": 2440, "credit_id": "52fe44e19251416c75044303", "cast_id": 7, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 5}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe44e19251416c7504430b", "cast_id": 10, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe44e19251416c7504430f", "cast_id": 11, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 7}, {"name": "Brendan Gleeson", "character": "Alastor 'Mad-Eye' Moody", "id": 2039, "credit_id": "52fe44e19251416c7504433f", "cast_id": 24, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 8}, {"name": "John Hurt", "character": "Mr. Ollivander", "id": 5049, "credit_id": "52fe44e19251416c75044327", "cast_id": 17, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 9}, {"name": "Ciar\u00e1n Hinds", "character": "Aberforth Dumbledore", "id": 8785, "credit_id": "52fe44e19251416c7504432b", "cast_id": 19, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 10}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe44e19251416c750442f9", "cast_id": 5, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 11}, {"name": "Rhys Ifans", "character": "Xenophilius Lovegood", "id": 7026, "credit_id": "52fe44e19251416c75044313", "cast_id": 12, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 12}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe44e19251416c75044307", "cast_id": 8, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 13}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe44e19251416c75044323", "cast_id": 16, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 14}, {"name": "Jamie Campbell Bower", "character": "Gellert Grindelwald", "id": 83356, "credit_id": "52fe44e19251416c75044333", "cast_id": 21, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 15}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Fleur Delacour", "id": 11291, "credit_id": "52fe44e19251416c7504431f", "cast_id": 15, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 16}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe44e19251416c7504431b", "cast_id": 14, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 17}, {"name": "Warwick Davis", "character": "Griphook", "id": 11184, "credit_id": "52fe44e19251416c7504432f", "cast_id": 20, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 18}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe44e19251416c75044337", "cast_id": 22, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 19}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe44e19251416c7504433b", "cast_id": 23, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 20}, {"name": "Evanna Lynch", "character": "Luna Lovegood", "id": 140367, "credit_id": "52fe44e19251416c75044343", "cast_id": 25, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 21}, {"name": "Helen McCrory", "character": "Narcissa Malfoy", "id": 15737, "credit_id": "52fe44e19251416c75044347", "cast_id": 26, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 22}, {"name": "Timothy Spall", "character": "Wormtail", "id": 9191, "credit_id": "52fe44e19251416c7504434b", "cast_id": 27, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 23}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe44e19251416c7504434f", "cast_id": 28, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 24}, {"name": "Imelda Staunton", "character": "Dolores Umbridge", "id": 11356, "credit_id": "52fe44e19251416c75044353", "cast_id": 29, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 25}, {"name": "Fiona Shaw", "character": "Aunt Petunia", "id": 10981, "credit_id": "52fe44e19251416c75044357", "cast_id": 30, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 26}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe44e19251416c7504435b", "cast_id": 31, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 27}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe44e19251416c7504435f", "cast_id": 32, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 28}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe44e19251416c75044363", "cast_id": 33, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 29}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe44e19251416c7504436b", "cast_id": 35, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 30}, {"name": "Richard Griffiths", "character": "Vernon Dursley", "id": 10983, "credit_id": "52fe44e19251416c75044367", "cast_id": 34, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 31}, {"name": "Harry Melling", "character": "Dudley Dursley", "id": 10982, "credit_id": "52fe44e19251416c7504436f", "cast_id": 36, "profile_path": "/2CXlvvGnnJlSHDRqcWxtcef8Dsf.jpg", "order": 32}, {"name": "Frances de la Tour", "character": "Madame Olympe Maxime", "id": 47468, "credit_id": "52fe44e19251416c75044373", "cast_id": 37, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 33}, {"name": "Sophie Thompson", "character": "Mafalda Hopkirk", "id": 32990, "credit_id": "52fe44e19251416c75044377", "cast_id": 38, "profile_path": "/kAW8R7fJbA8y1IADPGiDrZgOuNE.jpg", "order": 34}, {"name": "David O'Hara", "character": "Albert Runcorn", "id": 2482, "credit_id": "52fe44e19251416c7504437b", "cast_id": 39, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 35}, {"name": "Steffan Rhodri", "character": "Reg Cattermole", "id": 143892, "credit_id": "52fe44e19251416c7504437f", "cast_id": 40, "profile_path": "/4bptQdwRKCMveddkpZdCvDwcsHQ.jpg", "order": 36}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe44e19251416c75044397", "cast_id": 46, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 37}, {"name": "Samuel Roukin", "character": "The Snatcher", "id": 65445, "credit_id": "52fe44e19251416c750443e3", "cast_id": 59, "profile_path": "/unZ9QHzWjLOApcv5q3EOz9LgrhT.jpg", "order": 38}, {"name": "Ian Kelly", "character": "Mr. Granger", "id": 96307, "credit_id": "52fe44e19251416c750443e7", "cast_id": 60, "profile_path": "/hkdeCGJ7nr8cCHLPh0Ab4Lk2eps.jpg", "order": 39}, {"name": "Michelle Fairley", "character": "Mrs. Granger", "id": 20057, "credit_id": "52fe44e19251416c750443eb", "cast_id": 61, "profile_path": "/u7EDh4RuXnK5PykiNAT3oly6sf9.jpg", "order": 40}, {"name": "Carolyn Pickles", "character": "Charity Burbage", "id": 1220036, "credit_id": "52fe44e19251416c750443ef", "cast_id": 62, "profile_path": "/95dS8JVAXaML6lWpnlSezmiAyhs.jpg", "order": 41}, {"name": "Peter Mullan", "character": "Death Eater Yaxley", "id": 3064, "credit_id": "52fe44e29251416c750443f7", "cast_id": 64, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 43}, {"name": "Guy Henry", "character": "Pius Thicknesse", "id": 40638, "credit_id": "52fe44e29251416c750443fb", "cast_id": 65, "profile_path": "/zNjPC6BTZj7DZK4KFL0nMC1El2S.jpg", "order": 44}, {"name": "Arben Bajraktaraj", "character": "Antonin Dolohov", "id": 234921, "credit_id": "52fe44e29251416c750443ff", "cast_id": 66, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 45}, {"name": "Rod Hunt", "character": "Thorfinn Rowle", "id": 234919, "credit_id": "52fe44e29251416c75044403", "cast_id": 67, "profile_path": "/vqLNvySU92nqAwROsNeJHsZ0LvD.jpg", "order": 46}, {"name": "Suzanne Toase", "character": "Alecto Carrow", "id": 568378, "credit_id": "52fe44e29251416c75044407", "cast_id": 68, "profile_path": "/c3s1FwTgeocEYyBIpaNINQ9eiVF.jpg", "order": 47}, {"name": "Ralph Ineson", "character": "Amycus Carrow", "id": 202032, "credit_id": "52fe44e29251416c7504440b", "cast_id": 69, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 48}, {"name": "Adrian Annis", "character": "Death Eater", "id": 135911, "credit_id": "52fe44e29251416c7504440f", "cast_id": 70, "profile_path": "/kEvduvKAVvtoejypk9WiDIpeGII.jpg", "order": 49}, {"name": "Emil Hostina", "character": "Death Eater", "id": 209884, "credit_id": "52fe44e29251416c75044413", "cast_id": 71, "profile_path": "/xbhDDWD7eoutHP795gpvpy2kjFV.jpg", "order": 50}, {"name": "Richard Strange", "character": "Death Eater", "id": 79502, "credit_id": "52fe44e29251416c7504441b", "cast_id": 73, "profile_path": "/gW6LnjcXxcfaAMpM5YyEKePeezR.jpg", "order": 51}, {"name": "Paul Khanna", "character": "Death Eater", "id": 1272644, "credit_id": "52fe44e29251416c75044417", "cast_id": 72, "profile_path": "/coLLFAGu2RE2vMsnjuikLbKqX3y.jpg", "order": 52}, {"name": "Anthony John Crocker", "character": "Death Eater", "id": 1272645, "credit_id": "52fe44e29251416c7504441f", "cast_id": 74, "profile_path": "/9Nvi5lEEMGB7FrMa5I01OusZOlh.jpg", "order": 53}, {"name": "Peter G. Reed", "character": "Death Eater", "id": 568393, "credit_id": "52fe44e29251416c75044423", "cast_id": 75, "profile_path": "/3J0U02Q8anBEJzpErk945na8WJR.jpg", "order": 54}, {"name": "Granville Saxton", "character": "Death Eater", "id": 142747, "credit_id": "52fe44e29251416c75044427", "cast_id": 76, "profile_path": "/9LInSWpZ2OVOsaDRDVULXCBt3Aj.jpg", "order": 55}, {"name": "Judith Sharp", "character": "Death Eater", "id": 568394, "credit_id": "52fe44e29251416c7504442b", "cast_id": 77, "profile_path": "/qOWjfu5lqSNMhh4ctfEg0B0Hq2I.jpg", "order": 56}, {"name": "Ashley McGuire", "character": "Death Eater", "id": 69476, "credit_id": "52fe44e29251416c7504442f", "cast_id": 78, "profile_path": "/5Uy0qn4ajKtHszfsO5vyCkOffYx.jpg", "order": 57}, {"name": "Penelope McGhie", "character": "Death Eater", "id": 568385, "credit_id": "52fe44e29251416c75044433", "cast_id": 79, "profile_path": "/huRFbOT98zfwWasALNrIz7X2qzF.jpg", "order": 58}, {"name": "Bob Yves Van Hellenberg Hubar", "character": "Death Eater", "id": 568395, "credit_id": "52fe44e29251416c75044437", "cast_id": 80, "profile_path": "/IBgr3YtlOUb7e11YtVsBoL9nDH.jpg", "order": 59}, {"name": "Tony Kirwood", "character": "Death Eater", "id": 568396, "credit_id": "52fe44e29251416c7504443b", "cast_id": 81, "profile_path": "/b0DStt0AhZ00e5rpDrzgaVuy5fT.jpg", "order": 60}, {"name": "David Ryall", "character": "Elphias Doge", "id": 27822, "credit_id": "52fe44e29251416c7504443f", "cast_id": 82, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 61}, {"name": "Matyelok Gibbs", "character": "Auntie Muriel Weasley", "id": 17479, "credit_id": "52fe44e29251416c75044443", "cast_id": 83, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 62}, {"name": "Simon McBurney", "character": "Kreacher (voice)", "id": 16358, "credit_id": "52fe44e29251416c75044447", "cast_id": 84, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 63}, {"name": "Jon Campling", "character": "Death Eater", "id": 1140635, "credit_id": "52fe44e29251416c7504444b", "cast_id": 85, "profile_path": "/u5Iu5PzbcJpiZTIbrg0z3tvJH3e.jpg", "order": 64}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe44e29251416c7504444f", "cast_id": 86, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 65}, {"name": "William Melling", "character": "Nigel", "id": 568374, "credit_id": "52fe44e29251416c75044453", "cast_id": 87, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 66}, {"name": "Simon Grover", "character": "Death Eater", "id": 1272646, "credit_id": "52fe44e29251416c75044457", "cast_id": 88, "profile_path": "/4BCEhhJQyJj9nDx8qr9dX2yjsab.jpg", "order": 67}, {"name": "Freddie Stroma", "character": "Cormac McLaggen", "id": 234934, "credit_id": "52fe44e29251416c7504445b", "cast_id": 89, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 68}, {"name": "Jessie Cave", "character": "Lavender Brown", "id": 234924, "credit_id": "52fe44e29251416c7504445f", "cast_id": 90, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 69}, {"name": "Anna Shaffer", "character": "Romilda Vane", "id": 234929, "credit_id": "52fe44e29251416c75044463", "cast_id": 91, "profile_path": "/uldkREhKYbfdAUpAXkPUWI746CE.jpg", "order": 70}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe44e29251416c75044467", "cast_id": 92, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 71}, {"name": "Scarlett Byrne", "character": "Pansy Parkinson", "id": 234928, "credit_id": "52fe44e29251416c7504446b", "cast_id": 93, "profile_path": "/7W8KCN8KlCzzbSEW35ul237HlvU.jpg", "order": 72}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe44e29251416c7504446f", "cast_id": 94, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 73}, {"name": "Nick Moran", "character": "Scabior", "id": 975, "credit_id": "52fe44e29251416c75044473", "cast_id": 95, "profile_path": "/q5As2X1Idd34ma9qXHhH5OvR7mE.jpg", "order": 74}, {"name": "Toby Jones", "character": "Dobby", "id": 13014, "credit_id": "52fe44e29251416c75044477", "cast_id": 96, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 75}, {"name": "Kate Fleetwood", "character": "Mary Cattermole", "id": 178630, "credit_id": "52fe44e29251416c7504447b", "cast_id": 97, "profile_path": "/z3nIZxpSzdq0R11uABD5gmvCuob.jpg", "order": 76}, {"name": "Rade \u0160erbed\u017eija", "character": "Gregorovitch", "id": 1118, "credit_id": "52fe44e29251416c7504447f", "cast_id": 98, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 77}, {"name": "Jamie Campbell Bower", "character": "Young Gellert Grindelwald", "id": 83356, "credit_id": "52fe44e29251416c75044483", "cast_id": 99, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 78}, {"name": "Hazel Douglas", "character": "Bathilda Bagshot", "id": 94742, "credit_id": "52fe44e29251416c75044487", "cast_id": 100, "profile_path": "/nT2a4oiWM8hk34hRvQcKA7in89g.jpg", "order": 79}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe44e29251416c7504448b", "cast_id": 101, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 80}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe44e29251416c7504448f", "cast_id": 102, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 81}, {"name": "Miranda Richardson", "character": "Rita Skeeter", "id": 8436, "credit_id": "52fe44e29251416c75044493", "cast_id": 103, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 82}, {"name": "Dave Legeno", "character": "Fenrir Greyback", "id": 60348, "credit_id": "52fe44e29251416c75044497", "cast_id": 104, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 83}, {"name": "Graham Duff", "character": "Death Eater", "id": 1224773, "credit_id": "5376fe430e0a2614280014fc", "cast_id": 105, "profile_path": "/643atgQcjuNRInFbSMKiHTP6vyM.jpg", "order": 84}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe44e19251416c750442ff", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 7.1, "runtime": 146}, "12445": {"poster_path": "/7xmtxRc9nQnCuWINuTT4SMP5NJc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1327817822, "overview": "In the second installment of the two-part conclusion, Harry and his best friends, Ron and Hermione, continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.", "video": false, "id": 12445, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Deathly Hallows: Part 2", "tagline": "It all ends here.", "vote_count": 2272, "homepage": "http://www.harrypotter.com", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1201607", "adult": false, "backdrop_path": "/oPmZDHPkdmhuvxYGmwtKcQefeNr.jpg", "production_companies": [{"name": "Moving Picture Company (MPC)", "id": 20478}, {"name": "Warner Bros.", "id": 6194}, {"name": "Heyday Films", "id": 7364}], "release_date": "2011-07-07", "popularity": 2.45605262055685, "original_title": "Harry Potter and the Deathly Hallows: Part 2", "budget": 125000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe44e29251416c75044581", "cast_id": 6, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe44e29251416c75044585", "cast_id": 7, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe44e29251416c75044589", "cast_id": 8, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe44e29251416c7504458d", "cast_id": 9, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Minerva McGonagall", "id": 10978, "credit_id": "52fe44e29251416c75044599", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe44e29251416c750445ed", "cast_id": 33, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Emma Thompson", "character": "Sybill Trelawney", "id": 7056, "credit_id": "52fe44e29251416c750445ad", "cast_id": 17, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe44e29251416c750445a9", "cast_id": 16, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe44e29251416c750445e9", "cast_id": 32, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 8}, {"name": "Gemma Jones", "character": "Poppy Pomfrey", "id": 9138, "credit_id": "52fe44e29251416c750445b1", "cast_id": 18, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 9}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Fleur Delacour", "id": 11291, "credit_id": "52fe44e29251416c750445c9", "cast_id": 24, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 10}, {"name": "Warwick Davis", "character": "Filius Flitwick / Griphook", "id": 11184, "credit_id": "52fe44e29251416c750445a1", "cast_id": 14, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 11}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe44e29251416c750445bd", "cast_id": 21, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 12}, {"name": "Domhnall Gleeson", "character": "Bill Weasley", "id": 93210, "credit_id": "52fe44e29251416c750445c5", "cast_id": 23, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 13}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe44e29251416c750445d5", "cast_id": 27, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 14}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe44e29251416c750445d9", "cast_id": 28, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 15}, {"name": "Jim Broadbent", "character": "Horace Slughorn", "id": 388, "credit_id": "52fe44e29251416c7504459d", "cast_id": 13, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 16}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe44e29251416c750445d1", "cast_id": 26, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 17}, {"name": "Pauline Stone", "character": "Nurse Wainscott", "id": 166242, "credit_id": "52fe44e29251416c750445b9", "cast_id": 20, "profile_path": "/yFGkdDOcSDIwEyQB51cQg8yB9IK.jpg", "order": 18}, {"name": "Suzie Toase", "character": "Alecto Carrow", "id": 234918, "credit_id": "52fe44e29251416c75044591", "cast_id": 10, "profile_path": "/cGJEYKg7es734KZKMmjG64mzUQK.jpg", "order": 19}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe44e29251416c750445c1", "cast_id": 22, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 20}, {"name": "George Harris", "character": "Kingsley Shacklebolt", "id": 2247, "credit_id": "52fe44e29251416c750445dd", "cast_id": 29, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 21}, {"name": "Ciar\u00e1n Hinds", "character": "Aberforth Dumbledore", "id": 8785, "credit_id": "52fe44e29251416c750445e1", "cast_id": 30, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 22}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe44e29251416c750445cd", "cast_id": 25, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 23}, {"name": "David Ryall", "character": "Elphias Doge", "id": 27822, "credit_id": "52fe44e29251416c750445e5", "cast_id": 31, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 24}, {"name": "Arben Bajraktaraj", "character": "Antonin Dolohov", "id": 234921, "credit_id": "52fe44e29251416c75044609", "cast_id": 40, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 25}, {"name": "Peter Mullan", "character": "Yaxley", "id": 3064, "credit_id": "52fe44e29251416c75044605", "cast_id": 39, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 26}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe44e29251416c750445b5", "cast_id": 19, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 27}, {"name": "Miriam Margolyes", "character": "Pomona Sprout", "id": 6199, "credit_id": "52fe44e29251416c750445a5", "cast_id": 15, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 28}, {"name": "Timothy Spall", "character": "Peter Pettigrew", "id": 9191, "credit_id": "52fe44e29251416c750445f1", "cast_id": 34, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 29}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe44e29251416c750445f5", "cast_id": 35, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 30}, {"name": "Ralph Ineson", "character": "Amycus Carrow", "id": 202032, "credit_id": "52fe44e29251416c75044595", "cast_id": 11, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 31}, {"name": "Helen McCrory", "character": "Narcissa Malfoy", "id": 15737, "credit_id": "52fe44e29251416c750445f9", "cast_id": 36, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 32}, {"name": "Chris Rankin", "character": "Percy Weasley", "id": 10992, "credit_id": "52fe44e29251416c75044619", "cast_id": 44, "profile_path": "/3HEK2yr0YOEE7A5qf0SGs3VhUNz.jpg", "order": 33}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe44e29251416c750445fd", "cast_id": 37, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 34}, {"name": "Rod Hunt", "character": "Thorfinn Rowle", "id": 234919, "credit_id": "52fe44e29251416c75044601", "cast_id": 38, "profile_path": "/vqLNvySU92nqAwROsNeJHsZ0LvD.jpg", "order": 35}, {"name": "Dave Legeno", "character": "Fenrir Greyback", "id": 60348, "credit_id": "52fe44e29251416c7504460d", "cast_id": 41, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 36}, {"name": "Nick Moran", "character": "Scabior", "id": 975, "credit_id": "52fe44e29251416c75044611", "cast_id": 42, "profile_path": "/q5As2X1Idd34ma9qXHhH5OvR7mE.jpg", "order": 37}, {"name": "Guy Henry", "character": "Pius Thicknesse", "id": 40638, "credit_id": "52fe44e29251416c75044615", "cast_id": 43, "profile_path": "/zNjPC6BTZj7DZK4KFL0nMC1El2S.jpg", "order": 38}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe44e29251416c7504461d", "cast_id": 45, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 39}, {"name": "Evanna Lynch", "character": "Luna Lovegood", "id": 140367, "credit_id": "52fe44e29251416c75044621", "cast_id": 46, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 40}, {"name": "Anna Shaffer", "character": "Romilda Vane", "id": 234929, "credit_id": "52fe44e39251416c75044649", "cast_id": 56, "profile_path": "/uldkREhKYbfdAUpAXkPUWI746CE.jpg", "order": 41}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe44e29251416c75044625", "cast_id": 47, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 42}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe44e39251416c75044629", "cast_id": 48, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 43}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe44e39251416c7504462d", "cast_id": 49, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 44}, {"name": "Jessie Cave", "character": "Lavender Brown", "id": 234924, "credit_id": "52fe44e39251416c75044631", "cast_id": 50, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 45}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe44e39251416c75044635", "cast_id": 51, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 46}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe44e39251416c75044639", "cast_id": 52, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 47}, {"name": "Louis Cordice", "character": "Blaise Zabini", "id": 234927, "credit_id": "52fe44e39251416c7504463d", "cast_id": 53, "profile_path": "/9GsBugZh5t5EHlcM3Wjay7EJH4B.jpg", "order": 48}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe44e39251416c75044641", "cast_id": 54, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 49}, {"name": "Scarlett Byrne", "character": "Pansy Parkinson", "id": 234928, "credit_id": "52fe44e39251416c75044645", "cast_id": 55, "profile_path": "/7W8KCN8KlCzzbSEW35ul237HlvU.jpg", "order": 50}, {"name": "Isabella Laughland", "character": "Leanne", "id": 234930, "credit_id": "52fe44e39251416c7504464d", "cast_id": 57, "profile_path": "/OMr26hOcq2LBbGDC4Uy9RGyMEl.jpg", "order": 51}, {"name": "Jamie Marks", "character": "Ernie Macmillan", "id": 234932, "credit_id": "52fe44e39251416c75044651", "cast_id": 59, "profile_path": "/7F7Ej9SBQlvSurrikk6rw4naivC.jpg", "order": 52}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe44e39251416c75044655", "cast_id": 60, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 53}, {"name": "Georgina Leonidas", "character": "Katie Bell", "id": 174398, "credit_id": "52fe44e39251416c75044659", "cast_id": 61, "profile_path": "/hv3YEO8Q0khE41XDesUsQBhzJ1T.jpg", "order": 54}, {"name": "Freddie Stroma", "character": "Cormac McLaggen", "id": 234934, "credit_id": "52fe44e39251416c7504465d", "cast_id": 62, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 55}, {"name": "John Hurt", "character": "Mr. Ollivander", "id": 5049, "credit_id": "52fe44e39251416c75044661", "cast_id": 63, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 56}, {"name": "Kelly Macdonald", "character": "Helena Ravenclaw", "id": 9015, "credit_id": "52fe44e39251416c75044665", "cast_id": 65, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 57}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe44e39251416c75044669", "cast_id": 66, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 58}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe44e39251416c7504466d", "cast_id": 67, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 59}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe44e39251416c75044671", "cast_id": 68, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 60}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe44e39251416c75044675", "cast_id": 69, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 61}, {"name": "Anthony Allgood", "character": "Gringotts Guard", "id": 568370, "credit_id": "52fe44e39251416c7504467f", "cast_id": 71, "profile_path": "/l7zb8W7L0SheMCGli5LFxltWC4j.jpg", "order": 62}, {"name": "Rusty Goffe", "character": "Aged Gringotts Goblin", "id": 252527, "credit_id": "52fe44e39251416c75044687", "cast_id": 73, "profile_path": "/3PE20IWLMKv1r4nIdkLj65ljv28.jpg", "order": 63}, {"name": "Benn Northover", "character": "Hogsmeade Death Eater", "id": 561028, "credit_id": "52fe44e39251416c7504468f", "cast_id": 75, "profile_path": "/2tIuPkqSyvLPL7Li1vVoen6dfOA.jpg", "order": 64}, {"name": "Ian Peck", "character": "Hogsmeade Death Eater", "id": 208467, "credit_id": "52fe44e39251416c7504468b", "cast_id": 74, "profile_path": "/tKATfzERUrNR7TYh4tKmTj2AD2B.jpg", "order": 65}, {"name": "Hebe Beardsall", "character": "Ariana Dumbledore", "id": 568371, "credit_id": "52fe44e39251416c75044693", "cast_id": 76, "profile_path": "/9rUK2oWBhMZfNaJxtMsmeaoNFYW.jpg", "order": 66}, {"name": "William Melling", "character": "Nigel", "id": 568374, "credit_id": "52fe44e39251416c75044697", "cast_id": 77, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 67}, {"name": "Sian Grace Phillips", "character": "Screaming Girl", "id": 568376, "credit_id": "52fe44e39251416c7504469b", "cast_id": 78, "profile_path": null, "order": 68}, {"name": "Suzanne Toase", "character": "Alecto Carrow", "id": 568378, "credit_id": "52fe44e39251416c7504469f", "cast_id": 79, "profile_path": "/c3s1FwTgeocEYyBIpaNINQ9eiVF.jpg", "order": 69}, {"name": "Amber Evans", "character": "Twin Girl 1", "id": 568379, "credit_id": "52fe44e39251416c750446a3", "cast_id": 80, "profile_path": null, "order": 70}, {"name": "Ruby Evans", "character": "Twin Girl 2", "id": 568380, "credit_id": "52fe44e39251416c750446a7", "cast_id": 81, "profile_path": null, "order": 71}, {"name": "Jon Key", "character": "Bogrod", "id": 568382, "credit_id": "52fe44e39251416c750446ab", "cast_id": 82, "profile_path": "/qKo8YbNHvowH9sPQ1CdfL0sAEya.jpg", "order": 72}, {"name": "Philip Wright", "character": "Giant", "id": 24273, "credit_id": "52fe44e39251416c750446af", "cast_id": 83, "profile_path": "/wOuNk0ndcH0dhQPsl8b4uajip5L.jpg", "order": 73}, {"name": "Gary Sayer", "character": "Giant", "id": 568383, "credit_id": "52fe44e39251416c750446b3", "cast_id": 84, "profile_path": null, "order": 74}, {"name": "Tony Adkins", "character": "Giant", "id": 568384, "credit_id": "52fe44e39251416c750446b7", "cast_id": 85, "profile_path": "/68Xf5fpSW2SXp6aTyKDruw1OSLc.jpg", "order": 75}, {"name": "Penelope McGhie", "character": "Death Eater", "id": 568385, "credit_id": "52fe44e39251416c750446bb", "cast_id": 86, "profile_path": "/huRFbOT98zfwWasALNrIz7X2qzF.jpg", "order": 76}, {"name": "Ellie Darcey-Alden", "character": "Young Lily Potter", "id": 568386, "credit_id": "52fe44e39251416c750446bf", "cast_id": 87, "profile_path": "/75nurOtHDKXuKCRi5QTnM7fGcpr.jpg", "order": 77}, {"name": "Ariella Paradise", "character": "Young Petunia Dursley", "id": 568387, "credit_id": "52fe44e39251416c750446c3", "cast_id": 88, "profile_path": "/aoYRbvfqoNXQJ0yM7bUedrQXhZ3.jpg", "order": 78}, {"name": "Benedict Clarke", "character": "Young Severus Snape", "id": 568388, "credit_id": "52fe44e39251416c750446c7", "cast_id": 89, "profile_path": "/7DZbKKj6vyGCh7VPaxZfyT79sj0.jpg", "order": 79}, {"name": "Alfie McIlwain", "character": "Young James Potter", "id": 1320593, "credit_id": "537755d30e0a26141f001ff6", "cast_id": 123, "profile_path": "/pUigyjIciGKwZYRLO0BqKyFyYHA.jpg", "order": 80}, {"name": "Rohan Gotobed", "character": "Young Sirius Black", "id": 568391, "credit_id": "52fe44e39251416c750446cf", "cast_id": 92, "profile_path": "/cLx2Jccgcq0P821HrR9oPmg2K7R.jpg", "order": 81}, {"name": "Toby Papworth", "character": "Baby Harry Potter", "id": 568392, "credit_id": "52fe44e39251416c750446d3", "cast_id": 93, "profile_path": "/g7qPANWbxu5tavJK29OdlmIjsdn.jpg", "order": 82}, {"name": "Peter G. Reed", "character": "Death Eater", "id": 568393, "credit_id": "52fe44e39251416c750446d7", "cast_id": 94, "profile_path": "/3J0U02Q8anBEJzpErk945na8WJR.jpg", "order": 83}, {"name": "Judith Sharp", "character": "Death Eater", "id": 568394, "credit_id": "52fe44e39251416c750446db", "cast_id": 95, "profile_path": "/qOWjfu5lqSNMhh4ctfEg0B0Hq2I.jpg", "order": 84}, {"name": "Emil Hostina", "character": "Death Eater", "id": 209884, "credit_id": "52fe44e39251416c750446df", "cast_id": 96, "profile_path": "/xbhDDWD7eoutHP795gpvpy2kjFV.jpg", "order": 85}, {"name": "Bob Yves Van Hellenberg Hubar", "character": "Death Eater", "id": 568395, "credit_id": "52fe44e39251416c750446e3", "cast_id": 97, "profile_path": "/IBgr3YtlOUb7e11YtVsBoL9nDH.jpg", "order": 86}, {"name": "Granville Saxton", "character": "Death Eater", "id": 142747, "credit_id": "52fe44e39251416c750446e7", "cast_id": 98, "profile_path": "/9LInSWpZ2OVOsaDRDVULXCBt3Aj.jpg", "order": 87}, {"name": "Tony Kirwood", "character": "Death Eater", "id": 568396, "credit_id": "52fe44e39251416c750446eb", "cast_id": 99, "profile_path": "/b0DStt0AhZ00e5rpDrzgaVuy5fT.jpg", "order": 88}, {"name": "Ashley McGuire", "character": "Death Eater", "id": 69476, "credit_id": "52fe44e39251416c750446ef", "cast_id": 100, "profile_path": "/5Uy0qn4ajKtHszfsO5vyCkOffYx.jpg", "order": 89}, {"name": "Arthur Bowen", "character": "Albus Severus Potter (19 Years Later)", "id": 568397, "credit_id": "52fe44e39251416c750446f3", "cast_id": 101, "profile_path": "/7t565rk1qXJf7ViOEJxpDxIv4WC.jpg", "order": 90}, {"name": "Daphne de Beistegui", "character": "Lily Luna Potter (19 Years Later)", "id": 568398, "credit_id": "52fe44e39251416c750446f7", "cast_id": 102, "profile_path": "/tyVwmIlTbRdfBdAYtvCe4DompoT.jpg", "order": 91}, {"name": "Will Dunn", "character": "James Sirius Potter (19 Years Later)", "id": 568399, "credit_id": "52fe44e39251416c750446fb", "cast_id": 103, "profile_path": "/3368m9xvJb1ZWV5q1Klb3E0aT7K.jpg", "order": 92}, {"name": "Jade Gordon", "character": "Astoria Malfoy (19 Years Later)", "id": 180730, "credit_id": "52fe44e39251416c750446ff", "cast_id": 104, "profile_path": "/i3JihtnShYCgWomrmGtKDW3RC5f.jpg", "order": 93}, {"name": "Bertie Gilbert", "character": "Scorpius Malfoy (19 Years Later)", "id": 568402, "credit_id": "52fe44e39251416c75044703", "cast_id": 105, "profile_path": "/oX9Ut3aFnO49nYOvQLxkjJUvF0w.jpg", "order": 94}, {"name": "Helena Barlow", "character": "Rose Weasley (19 Years Later)", "id": 561247, "credit_id": "52fe44e39251416c75044707", "cast_id": 106, "profile_path": "/2kXaAbvvxxxywE85uJF5ARSh9pq.jpg", "order": 95}, {"name": "Ryan Turner", "character": "Hugo Weasley (19 Years Later)", "id": 568403, "credit_id": "52fe44e39251416c7504470b", "cast_id": 107, "profile_path": "/yVJKsmmDCtWCEjMi0uLhVLdVJOP.jpg", "order": 96}, {"name": "Jamie Campbell Bower", "character": "Gellert Grindelwald", "id": 83356, "credit_id": "52fe44e39251416c7504470f", "cast_id": 108, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 97}, {"name": "Luke Newberry", "character": "Teddy Lupin", "id": 214019, "credit_id": "52fe44e39251416c75044713", "cast_id": 109, "profile_path": "/9hKoTMk8IE7vGEciYWT883ZyA99.jpg", "order": 98}, {"name": "Sean Biggerstaff", "character": "Oliver Wood", "id": 11179, "credit_id": "52fe44e39251416c75044723", "cast_id": 113, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 99}, {"name": "Leslie Phillips", "character": "The Sorting Hat", "id": 10655, "credit_id": "52fe44e39251416c7504473f", "cast_id": 120, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 100}, {"name": "Graham Duff", "character": "Death Eater", "id": 1224773, "credit_id": "5376fe3e0e0a2614190014e3", "cast_id": 122, "profile_path": "/643atgQcjuNRInFbSMKiHTP6vyM.jpg", "order": 101}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe44e29251416c7504457d", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 7.4, "runtime": 130}, "4256": {"poster_path": "/jSUPkCB9kLacGm8W4BKGYRyjhQv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 220673217, "overview": "In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.", "video": false, "id": 4256, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 3", "tagline": "Great trilogies come in threes.", "vote_count": 196, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0306047", "adult": false, "backdrop_path": "/3ksHzCDEVj1dHcu8i1zLNMQs7Zw.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2003-10-20", "popularity": 0.510613912569371, "original_title": "Scary Movie 3", "budget": 48000000, "cast": [{"name": "Pamela Anderson", "character": "Becca", "id": 6736, "credit_id": "52fe43b6c3a36847f8069dbd", "cast_id": 21, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 0}, {"name": "Jenny McCarthy", "character": "Kate", "id": 35597, "credit_id": "52fe43b6c3a36847f8069dc1", "cast_id": 22, "profile_path": "/itsSilp7prfi3lKQMFn1p5J6hWI.jpg", "order": 1}, {"name": "Marny Eng", "character": "Tabitha", "id": 35799, "credit_id": "52fe43b6c3a36847f8069dc5", "cast_id": 23, "profile_path": null, "order": 2}, {"name": "Charlie Sheen", "character": "Tom", "id": 6952, "credit_id": "52fe43b6c3a36847f8069dc9", "cast_id": 24, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 3}, {"name": "Simon Rex", "character": "George", "id": 35548, "credit_id": "52fe43b6c3a36847f8069dcd", "cast_id": 25, "profile_path": "/3yDqATRevzlrFLRDNZl7lRv9hu7.jpg", "order": 4}, {"name": "Jianna Ballard", "character": "Sue", "id": 35800, "credit_id": "52fe43b6c3a36847f8069dd1", "cast_id": 26, "profile_path": null, "order": 5}, {"name": "Jeremy Piven", "character": "Ross Giggins", "id": 12799, "credit_id": "52fe43b6c3a36847f8069dd5", "cast_id": 27, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 6}, {"name": "Anna Faris", "character": "Cindy Campbell", "id": 1772, "credit_id": "52fe43b6c3a36847f8069dd9", "cast_id": 28, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 7}, {"name": "Regina Hall", "character": "Brenda Meeks", "id": 35705, "credit_id": "52fe43b6c3a36847f8069ddd", "cast_id": 29, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 8}, {"name": "Denise Richards", "character": "Annie", "id": 9205, "credit_id": "52fe43b6c3a36847f8069de1", "cast_id": 30, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 9}, {"name": "Queen Latifah", "character": "Aunt Shaneequa/The Oracle", "id": 15758, "credit_id": "52fe43b6c3a36847f8069deb", "cast_id": 32, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 10}, {"name": "Leslie Nielsen", "character": "President Baxter Harris", "id": 7633, "credit_id": "52fe43b6c3a36847f8069def", "cast_id": 33, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 11}, {"name": "Kevin Hart", "character": "CJ", "id": 55638, "credit_id": "52fe43b6c3a36847f8069df3", "cast_id": 34, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 12}, {"name": "Anthony Anderson", "character": "Mahalik", "id": 18471, "credit_id": "52fe43b6c3a36847f8069df7", "cast_id": 35, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 13}, {"name": "Camryn Manheim", "character": "Trooper Champlin", "id": 20187, "credit_id": "52fe43b6c3a36847f8069dfb", "cast_id": 36, "profile_path": "/zK3xgy0jvM5Ly6mLNIoATdSo6Uj.jpg", "order": 14}, {"name": "George Carlin", "character": "The Architect", "id": 15903, "credit_id": "52fe43b6c3a36847f8069dff", "cast_id": 37, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 15}, {"name": "Simon Cowell", "character": "Simon Cowell", "id": 165899, "credit_id": "52fe43b6c3a36847f8069e03", "cast_id": 38, "profile_path": "/5fsQYpcv6e6uNkfdEU2SUc1ZSGF.jpg", "order": 16}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe43b6c3a36847f8069d4d", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 5.8, "runtime": 84}, "133805": {"poster_path": "/3pFxLrjVFm0uMrMG4B39opOfpqF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82394288, "overview": "A reimagining of the classic horror tale about Carrie White, a shy girl outcast by her peers and sheltered by her deeply religious mother, who unleashes telekinetic terror on her small town after being pushed too far at her senior prom.", "video": false, "id": 133805, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Carrie", "tagline": "Know her name. Fear her power.", "vote_count": 423, "homepage": "http://www.carrie-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1939659", "adult": false, "backdrop_path": "/7gTvjByEOx959HtetwcczO2eOJi.jpg", "production_companies": [{"name": "Misher Films", "id": 11581}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Screen Gems", "id": 3287}], "release_date": "2013-10-18", "popularity": 2.60844011492319, "original_title": "Carrie", "budget": 30000000, "cast": [{"name": "Chlo\u00eb Grace Moretz", "character": "Carrie White", "id": 56734, "credit_id": "52fe4bbcc3a368484e197315", "cast_id": 16, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Margaret White", "id": 1231, "credit_id": "52fe4bbcc3a368484e1972db", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Judy Greer", "character": "Miss Desjardin", "id": 20750, "credit_id": "52fe4bbcc3a368484e1972df", "cast_id": 3, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 2}, {"name": "Alex Russell", "character": "Billy Nolan", "id": 558466, "credit_id": "52fe4bbcc3a368484e1972e7", "cast_id": 5, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 4}, {"name": "Portia Doubleday", "character": "Chris Hargensen", "id": 117669, "credit_id": "52fe4bbcc3a368484e1972e3", "cast_id": 4, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 5}, {"name": "Gabriella Wilde", "character": "Sue Snell", "id": 1014932, "credit_id": "52fe4bbcc3a368484e1972eb", "cast_id": 6, "profile_path": "/xbhScoMy3P6pK8Eg5V3EbGoxRSg.jpg", "order": 5}, {"name": "Max Topplin", "character": "Jackie Talbott", "id": 1066079, "credit_id": "52fe4bbcc3a368484e1972ef", "cast_id": 7, "profile_path": "/11pBtyCq6yMgCZZvzVoPuFs0VZQ.jpg", "order": 6}, {"name": "Connor Price", "character": "Freddy 'Beak' Holt", "id": 14889, "credit_id": "52fe4bbcc3a368484e1972f3", "cast_id": 8, "profile_path": "/5wv3PDrlK7vBnEVEAY4i7X162jz.jpg", "order": 7}, {"name": "Ansel Elgort", "character": "Tommy Ross", "id": 1159982, "credit_id": "52fe4bbcc3a368484e197319", "cast_id": 17, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 8}, {"name": "Cynthia Preston", "character": "Eleanor Snell", "id": 1213299, "credit_id": "52fe4bbcc3a368484e197323", "cast_id": 19, "profile_path": "/3luJCE9inrE0f3QxMrYVbjIZdr0.jpg", "order": 9}, {"name": "Michelle Nolden", "character": "Estelle Parsons", "id": 95635, "credit_id": "52fe4bbcc3a368484e197327", "cast_id": 20, "profile_path": "/a72FYiArZuG0TjYXtdzPsNvtTyY.jpg", "order": 10}, {"name": "Arlene Mazerolle", "character": "Miss Helen Finch", "id": 186500, "credit_id": "52fe4bbcc3a368484e19732b", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Demetrius Joyette", "character": "George", "id": 147478, "credit_id": "52fe4bbcc3a368484e19732f", "cast_id": 22, "profile_path": "/tylUnZ1oRsNw79TMgyH8Kacjga8.jpg", "order": 12}, {"name": "Barry Shabaka Henley", "character": "Principal Morton", "id": 8689, "credit_id": "52fe4bbcc3a368484e197333", "cast_id": 23, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 13}, {"name": "Samantha Weinstein", "character": "Heather", "id": 220922, "credit_id": "52fe4bbcc3a368484e197337", "cast_id": 24, "profile_path": "/7C4xAKsVQvSCkGMo5lV7lK2xFHj.jpg", "order": 14}, {"name": "Zo\u00eb Belkin", "character": "Tina", "id": 964415, "credit_id": "52fe4bbcc3a368484e19733b", "cast_id": 25, "profile_path": "/vR4LKgU6LGsjOP15bmDyXCN2GE1.jpg", "order": 15}, {"name": "Karissa Strain", "character": "Nicki", "id": 1292474, "credit_id": "52fe4bbcc3a368484e19733f", "cast_id": 26, "profile_path": "/7sASQWdVDfckKrtwbBhJ4e4eH3p.jpg", "order": 16}], "directors": [{"name": "Kimberly Peirce", "department": "Directing", "job": "Director", "credit_id": "52fe4bbcc3a368484e1972f9", "profile_path": null, "id": 2836}], "vote_average": 6.1, "runtime": 100}, "4258": {"poster_path": "/zYptQLRnePlv5rYg2kYOCZ3C31Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75316327, "overview": "Home with their newly-formed family, happy parents Dan and Jody are haunted by sinister, paranormal activities \u2014 disrupting new mama Jody\u2019s dancing aspirations in the \u201cSwan Lake\u201d ballet and threatening Dan\u2019s rise as an ape researcher. Determined to expel the insidious force, they install security cameras and discover their family is being stalked by an evil dead demon! The latest installment of the SCARY MOVIE franchise includes hilarious, non-stop send ups of some of the biggest recent cinematic hits and pop culture, featuring Ashley Tisdale, Charlie Sheen, Lindsay Lohan, Snoop Dogg, Katt Williams, Katrina Bowden, Kate Walsh, Heather Locklear and Mike Tyson.", "video": false, "id": 4258, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 5", "tagline": "Evil is coming. Bring protection.", "vote_count": 350, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0795461", "adult": false, "backdrop_path": "/jNoW4xqUljVyVQ1yrrhv9TGOWlM.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2013-04-12", "popularity": 1.37076883127227, "original_title": "Scary Movie 5", "budget": 20000000, "cast": [{"name": "Simon Rex", "character": "Dan Sanders", "id": 35548, "credit_id": "52fe43b6c3a36847f8069eef", "cast_id": 6, "profile_path": "/3yDqATRevzlrFLRDNZl7lRv9hu7.jpg", "order": 0}, {"name": "Ashley Tisdale", "character": "Jody Sanders", "id": 67600, "credit_id": "52fe43b6c3a36847f8069eeb", "cast_id": 5, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 1}, {"name": "Charlie Sheen", "character": "Himself", "id": 6952, "credit_id": "52fe43b6c3a36847f8069efb", "cast_id": 9, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 2}, {"name": "Lindsay Lohan", "character": "Herself", "id": 49265, "credit_id": "52fe43b6c3a36847f8069ef7", "cast_id": 8, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 3}, {"name": "Erica Ash", "character": "Kendra Brooks", "id": 451684, "credit_id": "52fe43b6c3a36847f8069eff", "cast_id": 10, "profile_path": "/urDXwFYOUI5614QnMzrLKdQo5F2.jpg", "order": 4}, {"name": "Katt Williams", "character": "Blaine Fulda", "id": 58926, "credit_id": "52fe43b6c3a36847f8069f03", "cast_id": 11, "profile_path": "/8f1nGRYIkA9fSBYtU8olUm07Wib.jpg", "order": 5}, {"name": "Molly Shannon", "character": "Heather Darcy", "id": 28640, "credit_id": "52fe43b6c3a36847f8069ef3", "cast_id": 7, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 6}, {"name": "Darrell Hammond", "character": "Dr. Hall", "id": 58954, "credit_id": "52fe43b6c3a36847f8069f07", "cast_id": 12, "profile_path": "/gxLHYyptnLLtak6E5eR7HqvMXRM.jpg", "order": 7}, {"name": "Snoop Dogg", "character": "Marcus", "id": 19767, "credit_id": "52fe43b6c3a36847f8069f0b", "cast_id": 13, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 8}, {"name": "Jerry O'Connell", "character": "Christian Grey", "id": 3035, "credit_id": "52fe43b6c3a36847f8069f0f", "cast_id": 14, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 9}, {"name": "Sarah Hyland", "character": "Mia", "id": 91351, "credit_id": "52fe43b6c3a36847f8069f13", "cast_id": 15, "profile_path": "/x0Gz56NHgCAn080RZGRFkPi02S.jpg", "order": 10}, {"name": "Katrina Bowden", "character": "Natalie", "id": 74618, "credit_id": "52fe43b6c3a36847f8069f17", "cast_id": 16, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 11}, {"name": "Heather Locklear", "character": "Barbara", "id": 58691, "credit_id": "52fe43b6c3a36847f8069f1b", "cast_id": 17, "profile_path": "/djRAJGjg73Cao0x5m11XPHrjBll.jpg", "order": 12}, {"name": "Mike Tyson", "character": "Himself", "id": 80757, "credit_id": "52fe43b6c3a36847f8069f1f", "cast_id": 18, "profile_path": "/dENp2l4nk5wv6F0AT1iQ3pf4Os1.jpg", "order": 13}, {"name": "Kate Walsh", "character": "Herself", "id": 61114, "credit_id": "52fe43b6c3a36847f8069f23", "cast_id": 19, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 14}, {"name": "Shad Moss", "character": "Eric", "id": 58197, "credit_id": "52fe43b6c3a36847f8069f27", "cast_id": 20, "profile_path": "/A1rHY9B5R9cIQshClcJxBYINg1m.jpg", "order": 15}], "directors": [{"name": "Malcolm D. Lee", "department": "Directing", "job": "Director", "credit_id": "52fe43b6c3a36847f8069ee7", "profile_path": "/pbWAodjcqGfDhlfaSvAxfAKmT7Q.jpg", "id": 72024}], "vote_average": 4.7, "runtime": 86}, "77987": {"poster_path": "/zxaI7q7tP9I7gQdhZ8mnpohd8sR.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "SE", "name": "Sweden"}, {"iso_3166_1": "TH", "name": "Thailand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9743738, "overview": "Julian, who runs a Thai boxing club as a front organization for his family's drug smuggling operation, is forced by his mother Jenna to find and kill the individual responsible for his brother's recent death.", "video": false, "id": 77987, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Only God Forgives", "tagline": "Time to Meet The Devil", "vote_count": 336, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt1602613", "adult": false, "backdrop_path": "/bWOeaxfLBf5G7qfsC2a2gGuKx6X.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "A Grand Elephant", "id": 19865}, {"name": "Bold Films", "id": 2266}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Gaumont", "id": 9}], "release_date": "2013-07-19", "popularity": 1.08745564731899, "original_title": "Only God Forgives", "budget": 4800000, "cast": [{"name": "Ryan Gosling", "character": "Julian", "id": 30614, "credit_id": "52fe4988c3a368484e130441", "cast_id": 2, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Kristin Scott Thomas", "character": "Jenna", "id": 5470, "credit_id": "52fe4988c3a368484e130445", "cast_id": 4, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 1}, {"name": "Gordon Brown", "character": "Gordon", "id": 1840, "credit_id": "52fe4988c3a368484e130449", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Tom Burke", "character": "Billy", "id": 52891, "credit_id": "52fe4988c3a368484e130465", "cast_id": 10, "profile_path": "/yw442LGBNYr9i07aiND3oMlox5h.jpg", "order": 3}, {"name": "Vithaya Pansringarm", "character": "Chang", "id": 1102621, "credit_id": "52fe4988c3a368484e130469", "cast_id": 11, "profile_path": "/cBEqTpCFQPVfMJxhs0rx8JVbA1t.jpg", "order": 4}, {"name": "Byron Gibson", "character": "Byron", "id": 971590, "credit_id": "52fe4988c3a368484e13046d", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Sahajak Boonthanakit", "character": "Pol Col. KIM", "id": 521673, "credit_id": "52fe4988c3a368484e130471", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Yayaying Rhatha Phongam", "character": "Mai", "id": 1206367, "credit_id": "52fe4988c3a368484e130475", "cast_id": 14, "profile_path": "/i6WlcanxRZ3tRUjg6vEI6XMrIIe.jpg", "order": 7}, {"name": "Charlie Ruedpokanon", "character": "Daeng", "id": 1163445, "credit_id": "52fe4988c3a368484e130479", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Wannisa Peungpa", "character": "Kanita", "id": 1268084, "credit_id": "52fe4988c3a368484e13047d", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Narucha Chaimareung", "character": "Papa San", "id": 1268085, "credit_id": "52fe4988c3a368484e130481", "cast_id": 17, "profile_path": null, "order": 10}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe4988c3a368484e13043d", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 5.2, "runtime": 90}, "69798": {"poster_path": "/705cX3NvfegQUCPNhSqeIZanYDj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "High school graduation just wouldn\u2019t be complete without an un-chaperoned, uninhibited and unforgettable final holiday. At least that\u2019s what Will, Jay, Simon and Neil think when they book a two-week stay on an exotic Greek island. As their dreams of sun-drenched days and booze-filled nights are left hopelessly unfulfilled, the lads fight their way into the party scene with hilariously humiliating results in this smash hit UK raunchy comedy.", "video": false, "id": 69798, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Inbetweeners Movie", "tagline": "This year four boys become men.", "vote_count": 90, "homepage": "https://itunes.apple.com/us/movie/the-inbetweeners/id586818977?ign-mpt=uo%3D4", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yQyzPIMLpjWmwE2XMui2C4qTXOv.jpg", "id": 279959, "name": "The Inbetweeners Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1716772", "adult": false, "backdrop_path": "/dhivLxSN9zHloFqpN3QesdBUdkx.jpg", "production_companies": [{"name": "Channel 4 Television Corporation", "id": 15276}], "release_date": "2011-08-19", "popularity": 0.693311695307326, "original_title": "The Inbetweeners Movie", "budget": 0, "cast": [{"name": "Simon Bird", "character": "Will McKenzie", "id": 218948, "credit_id": "52fe47dcc3a368484e0dd89d", "cast_id": 1, "profile_path": "/fW6kVI0yb9rhtnPRDBIWlkSWbd2.jpg", "order": 0}, {"name": "James Buckley", "character": "Jay Cartwright", "id": 207321, "credit_id": "52fe47dcc3a368484e0dd8a1", "cast_id": 2, "profile_path": "/lv58w34d9qgqJiLDX5tovxzp8rV.jpg", "order": 1}, {"name": "Blake Harrison", "character": "Neil Sutherland", "id": 222068, "credit_id": "52fe47dcc3a368484e0dd8a5", "cast_id": 3, "profile_path": "/w09kt7eMcuwRSjDVidtfm3WJym2.jpg", "order": 2}, {"name": "Joe Thomas", "character": "Simon Cooper", "id": 224350, "credit_id": "52fe47dcc3a368484e0dd8a9", "cast_id": 4, "profile_path": "/slaXnmyIVxsh6QbRgldVrZkCZnD.jpg", "order": 3}, {"name": "Lydia Rose Bewley", "character": "Jane", "id": 1058600, "credit_id": "52fe47dcc3a368484e0dd8bf", "cast_id": 10, "profile_path": "/dI1YlDgTTeWwxB2wn4bFRQfuJee.jpg", "order": 4}, {"name": "Laura Haddock", "character": "Alison", "id": 209578, "credit_id": "52fe47dcc3a368484e0dd8c3", "cast_id": 12, "profile_path": "/9Krk76xvNMkIqjEbPXdARZNRX3.jpg", "order": 5}, {"name": "Emily Head", "character": "Carli D'Amato", "id": 504217, "credit_id": "52fe47dcc3a368484e0dd903", "cast_id": 24, "profile_path": "/qDjSNM9iuaslkpqfYPmicfxxCkD.jpg", "order": 6}, {"name": "Tamla Kari", "character": "Lucy", "id": 1128191, "credit_id": "52fe47dcc3a368484e0dd907", "cast_id": 25, "profile_path": "/befV0lrZ4CA1S42IZa2NL2RTbKZ.jpg", "order": 7}, {"name": "Jessica Knappett", "character": "Lisa", "id": 1128192, "credit_id": "52fe47dcc3a368484e0dd90b", "cast_id": 26, "profile_path": "/bNgc8MxsP7P1lRowZUDs1JW54HQ.jpg", "order": 8}, {"name": "Theo Barklem-Biggs", "character": "Richard", "id": 1013048, "credit_id": "52fe47dcc3a368484e0dd90f", "cast_id": 27, "profile_path": "/9KHUtdVl8GhEUDUQeYOUKGKluBY.jpg", "order": 9}, {"name": "Theo James", "character": "James", "id": 587020, "credit_id": "52fe47dcc3a368484e0dd913", "cast_id": 28, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 10}, {"name": "Anthony Stewart Head", "character": "Will's Dad", "id": 34257, "credit_id": "52fe47dcc3a368484e0dd917", "cast_id": 29, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 11}, {"name": "Victoria Willing", "character": "Mrs. Cartwright", "id": 269653, "credit_id": "52fe47dcc3a368484e0dd91b", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Greg Davies", "character": "Mr. Gilbert", "id": 1240641, "credit_id": "52fe47dcc3a368484e0dd927", "cast_id": 34, "profile_path": "/5Uq5oedANZmNPB7IxKyHvykKNR0.jpg", "order": 13}, {"name": "Henry Lloyd-Hughes", "character": "Mark Donovan", "id": 513677, "credit_id": "52fe47dcc3a368484e0dd91f", "cast_id": 32, "profile_path": "/cO8PvsG3vzIvcoXGwTs6DQqaz7m.jpg", "order": 14}, {"name": "Belinda Stewart-Wilson", "character": "Polly MacKenzie", "id": 174978, "credit_id": "52fe47dcc3a368484e0dd923", "cast_id": 33, "profile_path": "/1YbcdCCSOcipoROaw2fDm2WwxiQ.jpg", "order": 15}], "directors": [{"name": "Ben Palmer", "department": "Directing", "job": "Director", "credit_id": "52fe47dcc3a368484e0dd8af", "profile_path": null, "id": 175463}], "vote_average": 6.3, "runtime": 97}, "258216": {"poster_path": "/49HMMZPVJcnUwe2QmVzBfxyLAY2.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 10285896, "overview": "A man named Seligman finds a fainted wounded woman in an alley and he brings her home. She tells him that her name is Joe and that she is nymphomaniac. Joe tells her life and sexual experiences with hundreds of men since she was a young teenager while Seligman tells about his hobbies, such as fly fishing, reading about Fibonacci numbers or listening to organ music.", "video": false, "id": 258216, "genres": [{"id": 18, "name": "Drama"}], "title": "Nymphomaniac: Vol. I", "tagline": "Forget About Love", "vote_count": 195, "homepage": "http://www.nymphomaniacthemovie.com/", "belongs_to_collection": {"backdrop_path": "/7B71Lt136GptW7AcrSs3mZ7rjrR.jpg", "poster_path": "/mkML1KIuHsv9bF5cdwMl6W8S0V1.jpg", "id": 258664, "name": "Nymphomaniac Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1937390", "adult": false, "backdrop_path": "/t9MElpSTsqNBttwntdevOgQuJDe.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}, {"name": "Les Films du Losange", "id": 223}, {"name": "Concorde Filmverleih", "id": 913}, {"name": "Caviar Films", "id": 2699}, {"name": "Slot Machine", "id": 7777}, {"name": "Zentropa International K\u00f6ln", "id": 8289}, {"name": "Artificial Eye", "id": 11895}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Heimatfilm", "id": 23406}, {"name": "European Film Bonds", "id": 23407}, {"name": "Caviar", "id": 23408}], "release_date": "2013-12-25", "popularity": 1.45910632383259, "original_title": "Nymphomaniac: Vol. I", "budget": 0, "cast": [{"name": "Charlotte Gainsbourg", "character": "Joe", "id": 4273, "credit_id": "531971b3c3a3685c5600281d", "cast_id": 1, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Stellan Skarsg\u00e5rd", "character": "Seligman", "id": 1640, "credit_id": "531971c0c3a3685c4300284c", "cast_id": 2, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 2}, {"name": "Stacy Martin", "character": "Young Joe", "id": 1137823, "credit_id": "531971cdc3a3685c31002804", "cast_id": 3, "profile_path": "/78BhUmgZETfUNsURMFP0E85WB3m.jpg", "order": 3}, {"name": "Shia LaBeouf", "character": "Jer\u00f4me", "id": 10959, "credit_id": "53197216c3a3685c4a002987", "cast_id": 4, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 4}, {"name": "Christian Slater", "character": "Joe's Father", "id": 2224, "credit_id": "53197252c3a3685c31002813", "cast_id": 5, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 5}, {"name": "Uma Thurman", "character": "Mrs. H", "id": 139, "credit_id": "531972a8c3a3685c3d0027c9", "cast_id": 6, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 6}, {"name": "Sophie Kennedy Clark", "character": "B", "id": 1151957, "credit_id": "531972ccc3a3685c56002834", "cast_id": 7, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 7}, {"name": "Connie Nielsen", "character": "Joe's Mother", "id": 935, "credit_id": "531972e792514177b7002012", "cast_id": 8, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 8}, {"name": "Ananya Berg", "character": "Joe - 10 Years", "id": 1385628, "credit_id": "546761ec22136e7bec001c41", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Jens Albinus", "character": "S", "id": 6121, "credit_id": "54676229eaeb81727f001f7b", "cast_id": 18, "profile_path": "/9CgGf30xp3hreseXoQd3qCQV1cY.jpg", "order": 10}, {"name": "Anders Hove", "character": "Odin", "id": 1566, "credit_id": "5467626922136e7be9001d75", "cast_id": 19, "profile_path": "/m9UAUhR7CzC376jy9dV9HGctqSV.jpg", "order": 11}, {"name": "Simon B\u00f6er", "character": "", "id": 1104730, "credit_id": "546762a2eaeb817286001c18", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Felicity Gilbert", "character": "", "id": 1269681, "credit_id": "546762f4eaeb81726e001fc1", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Clayton Nemrow", "character": "", "id": 1170767, "credit_id": "5467632e22136e7bee001ccc", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "James Northcote", "character": "", "id": 1362119, "credit_id": "5467635c22136e45990005f9", "cast_id": 23, "profile_path": "/wuf9ARlVXPonmRN21WcYQtdSiOv.jpg", "order": 15}, {"name": "Saskia Reeves", "character": "", "id": 13363, "credit_id": "5467638a22136e6dc7000237", "cast_id": 24, "profile_path": "/tCZFXKrWp4JQQOHWYFlwoHZGt7a.jpg", "order": 16}, {"name": "Cyron Bj\u00f8rn Melville", "character": "", "id": 112733, "credit_id": "546763b122136e6dc700023c", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Hugo Speer", "character": "", "id": 2251, "credit_id": "546763c6eaeb817278001dde", "cast_id": 26, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 18}, {"name": "Jesper Christensen", "character": "", "id": 2244, "credit_id": "546763e522136e6baf000003", "cast_id": 27, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 19}, {"name": "Jamie Bell", "character": "", "id": 478, "credit_id": "550f08b79251416bd1000d87", "cast_id": 28, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 20}, {"name": "Willem Dafoe", "character": "", "id": 5293, "credit_id": "550f08d292514164ac000e93", "cast_id": 29, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 21}, {"name": "Mia Goth", "character": "", "id": 1137824, "credit_id": "550f08dcc3a368488600aa58", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Micha\u00ebl Pas", "character": "", "id": 1444094, "credit_id": "550f08fdc3a3683f3900306f", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Jean-Marc Barr", "character": "", "id": 1642, "credit_id": "550f091d92514164ac000ea6", "cast_id": 32, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 24}, {"name": "Udo Kier", "character": "", "id": 1646, "credit_id": "550f0927925141469900a44a", "cast_id": 33, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 25}, {"name": "Peter Gilbert Cotton", "character": "", "id": 126958, "credit_id": "550f097b92514166db000f1a", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Nicolas Bro", "character": "", "id": 15086, "credit_id": "550f098f925141469900a452", "cast_id": 35, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 27}, {"name": "Tania Carlin", "character": "", "id": 1137827, "credit_id": "550f09bfc3a3681db2009c43", "cast_id": 36, "profile_path": null, "order": 28}, {"name": "Shanti Roney", "character": "", "id": 11044, "credit_id": "550f09d792514107010031ea", "cast_id": 37, "profile_path": "/ti21d61B3kNV0QZCJHsviad79jR.jpg", "order": 29}, {"name": "Caroline Goodall", "character": "", "id": 6692, "credit_id": "550f09fdc3a3683e7f003083", "cast_id": 38, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 30}, {"name": "Christian Gade Bjerrum", "character": "", "id": 1444097, "credit_id": "550f0a06c3a3683f39003083", "cast_id": 39, "profile_path": null, "order": 31}, {"name": "Ronja Rissmann", "character": "", "id": 1444098, "credit_id": "550f0a26c3a3683dd6002d98", "cast_id": 40, "profile_path": null, "order": 32}, {"name": "Maja Arsovic", "character": "", "id": 1444099, "credit_id": "550f0a2fc3a368488600aa74", "cast_id": 41, "profile_path": null, "order": 33}, {"name": "Sofie Kasten", "character": "", "id": 1444100, "credit_id": "550f0a8ac3a3683eb8002e71", "cast_id": 42, "profile_path": null, "order": 34}, {"name": "Charlie Hawkins", "character": "", "id": 1444101, "credit_id": "550f0ab7c3a3683e7f003096", "cast_id": 44, "profile_path": null, "order": 36}, {"name": "Jeff Burrell", "character": "", "id": 49491, "credit_id": "550f0ae9925141469900a474", "cast_id": 45, "profile_path": null, "order": 37}, {"name": "Andreas Gr\u00f6tzinger", "character": "", "id": 1444103, "credit_id": "550f0af3c3a368487400b594", "cast_id": 46, "profile_path": null, "order": 38}, {"name": "Tomas Sinclair Spencer", "character": "", "id": 1444111, "credit_id": "550f0eeac3a3683f390030ee", "cast_id": 47, "profile_path": null, "order": 39}, {"name": "Jesse Inman", "character": "", "id": 1444112, "credit_id": "550f0ef392514146a000a627", "cast_id": 48, "profile_path": null, "order": 40}, {"name": "Christoph Schechinger", "character": "", "id": 1439733, "credit_id": "550f0f0c925141070100326b", "cast_id": 49, "profile_path": null, "order": 41}, {"name": "David Halina", "character": "", "id": 1329094, "credit_id": "550f0f27925141469900a4e5", "cast_id": 50, "profile_path": null, "order": 42}, {"name": "Jonas Baeck", "character": "", "id": 1444115, "credit_id": "550f0f339251410701003274", "cast_id": 51, "profile_path": null, "order": 43}, {"name": "Katharina R\u00fcbertus", "character": "", "id": 1444116, "credit_id": "550f0f53c3a3683eb8002eea", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "Inga Behring", "character": "", "id": 1444117, "credit_id": "550f0f5c925141070100327b", "cast_id": 53, "profile_path": null, "order": 45}, {"name": "Lisa Matschke", "character": "", "id": 1444118, "credit_id": "550f0f6692514146a000a639", "cast_id": 54, "profile_path": null, "order": 46}, {"name": "Moritz Tellmann", "character": "", "id": 1444119, "credit_id": "550f0f7bc3a368488600ab17", "cast_id": 55, "profile_path": null, "order": 47}, {"name": "Johannes Kienast", "character": "", "id": 1444120, "credit_id": "550f0f88c3a3683f39003104", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Frankie Dawson", "character": "", "id": 1444121, "credit_id": "550f0fa29251416bd1000e29", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "George Dawson", "character": "", "id": 994453, "credit_id": "550f0fab92514166db000fa4", "cast_id": 58, "profile_path": null, "order": 50}, {"name": "Harry Dawson", "character": "", "id": 1367900, "credit_id": "550f0fb9c3a3681db2009ce9", "cast_id": 59, "profile_path": null, "order": 51}, {"name": "Markus Tomczyk", "character": "", "id": 553003, "credit_id": "550f1034c3a368488600ab26", "cast_id": 60, "profile_path": null, "order": 52}, {"name": "Christoph J\u00f6de", "character": "", "id": 1327193, "credit_id": "550f103dc3a3683f3900311b", "cast_id": 61, "profile_path": null, "order": 53}, {"name": "Morgan Hartley", "character": "", "id": 1444127, "credit_id": "550f1047c3a3683f0a002f99", "cast_id": 62, "profile_path": null, "order": 54}, {"name": "Andrea Thomsen", "character": "", "id": 1444128, "credit_id": "550f1076c3a3683e7f003145", "cast_id": 63, "profile_path": null, "order": 55}, {"name": "Tine Burn", "character": "", "id": 1444129, "credit_id": "550f109d925141073d003270", "cast_id": 64, "profile_path": null, "order": 56}, {"name": "Tabea Tarbiat", "character": "", "id": 1444130, "credit_id": "550f10a6c3a3683f0a002fa8", "cast_id": 65, "profile_path": null, "order": 57}, {"name": "Janine Romanowski", "character": "", "id": 1444131, "credit_id": "550f10b392514164ac000f48", "cast_id": 66, "profile_path": null, "order": 58}, {"name": "Lawrence Sheldon", "character": "", "id": 1444132, "credit_id": "550f10f7925141073d003278", "cast_id": 67, "profile_path": null, "order": 59}, {"name": "Ivan Pecnik", "character": "", "id": 1137826, "credit_id": "550f110292514107010032af", "cast_id": 68, "profile_path": null, "order": 60}, {"name": "Jonathon Sawdon", "character": "", "id": 1444133, "credit_id": "550f110b925141469900a517", "cast_id": 69, "profile_path": null, "order": 61}, {"name": "Christopher Craig", "character": "", "id": 1152394, "credit_id": "550f1130c3a3683dd6002e4c", "cast_id": 70, "profile_path": "/eKwZW0oZc3vY8Lp385c6JcXKjnW.jpg", "order": 62}, {"name": "Jacob Levin-Christensen", "character": "", "id": 1441065, "credit_id": "550f1139c3a3683f39003132", "cast_id": 71, "profile_path": null, "order": 63}, {"name": "Kookie Ryan", "character": "", "id": 1444134, "credit_id": "550f1149c3a3683eb8002f10", "cast_id": 72, "profile_path": null, "order": 64}, {"name": "Papou", "character": "", "id": 1444135, "credit_id": "550f115b92514164ac000f59", "cast_id": 73, "profile_path": null, "order": 65}, {"name": "Nicole Sandweg", "character": "", "id": 1444136, "credit_id": "550f117bc3a3681db2009d11", "cast_id": 74, "profile_path": null, "order": 66}, {"name": "Lien van de Kelder", "character": "", "id": 237837, "credit_id": "550f118ac3a3683dd6002e5e", "cast_id": 75, "profile_path": null, "order": 67}, {"name": "Laura Christensen", "character": "", "id": 83011, "credit_id": "550f1195c3a368487400b634", "cast_id": 76, "profile_path": "/q9AoEwRz0wtqawZfh5od7AzVDZw.jpg", "order": 68}, {"name": "Sarah Soetaert", "character": "", "id": 1444137, "credit_id": "550f11bc92514164ac000f67", "cast_id": 77, "profile_path": null, "order": 69}, {"name": "Sami Loris", "character": "", "id": 129125, "credit_id": "550f11c5925141073d003289", "cast_id": 78, "profile_path": null, "order": 70}, {"name": "Kate Ashfield", "character": "", "id": 11110, "credit_id": "550f11cec3a3683f3900313a", "cast_id": 79, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 71}, {"name": "Christine Urspruch", "character": "", "id": 28201, "credit_id": "550f11edc3a3683f3900313f", "cast_id": 80, "profile_path": "/i8RYQggISjM8IULpxUKVBVV4GSM.jpg", "order": 72}, {"name": "Daniela Lebang", "character": "", "id": 1444138, "credit_id": "550f11fe925141073d003292", "cast_id": 81, "profile_path": null, "order": 73}, {"name": "Omar Shargawi", "character": "", "id": 141879, "credit_id": "550f1210c3a3683f39003143", "cast_id": 82, "profile_path": null, "order": 74}, {"name": "Marcus Jakovljevic", "character": "", "id": 1329095, "credit_id": "550f123fc3a3683e7f003170", "cast_id": 83, "profile_path": null, "order": 75}, {"name": "Conny Dachs", "character": "", "id": 1145463, "credit_id": "550f124ac3a368487400b648", "cast_id": 84, "profile_path": null, "order": 76}, {"name": "Severin von Hoensbroech", "character": "", "id": 1012903, "credit_id": "550f1260c3a3683eb8002f30", "cast_id": 85, "profile_path": null, "order": 77}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "531894d6c3a3685c4a00182b", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.6, "runtime": 118}, "9030": {"poster_path": "/iFeK07UppNGNtvooixF5lZudhWk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56309766, "overview": "Violinist Sydney Wells was accidentally blinded by her sister Helen when she was five years old. She submits to a cornea transplantation, and while recovering from the operation, she realizes that she is seeing dead people.", "video": false, "id": 9030, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Eye", "tagline": "How can you believe your eyes when they're not yours?", "vote_count": 77, "homepage": "http://www.theeyethefilm.com", "belongs_to_collection": {"backdrop_path": "/rki7UPSFEaUPuitlQ9Iq421p137.jpg", "poster_path": "/8kPLIuWZatb3krc4l16pnkfokjo.jpg", "id": 264335, "name": "The Eye Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0406759", "adult": false, "backdrop_path": "/s7BL1QkkGzX3af2ZxzVmeyuLfz4.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "VN Productions", "id": 4622}], "release_date": "2008-02-01", "popularity": 0.616723839068158, "original_title": "The Eye", "budget": 12000000, "cast": [{"name": "Jessica Alba", "character": "Sydney Wells", "id": 56731, "credit_id": "52fe44d3c3a36847f80ac541", "cast_id": 1, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Alessandro Nivola", "character": "Dr. Paul Faulkner", "id": 4941, "credit_id": "52fe44d3c3a36847f80ac545", "cast_id": 2, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 1}, {"name": "Parker Posey", "character": "Helen Wells", "id": 7489, "credit_id": "52fe44d3c3a36847f80ac549", "cast_id": 3, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 2}, {"name": "Rade \u0160erbed\u017eija", "character": "Simon McCullough", "id": 1118, "credit_id": "52fe44d3c3a36847f80ac54d", "cast_id": 4, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 3}, {"name": "Fernanda Romero", "character": "Ana Christina Martinez", "id": 56732, "credit_id": "52fe44d3c3a36847f80ac551", "cast_id": 5, "profile_path": "/s9Diy8zLaMpJhhfRDIugY8rq6I0.jpg", "order": 4}, {"name": "Obba Babatunde", "character": "Dr. Haskins", "id": 52057, "credit_id": "52fe44d3c3a36847f80ac555", "cast_id": 6, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 5}, {"name": "Danny Mora", "character": "Miguel", "id": 56733, "credit_id": "52fe44d3c3a36847f80ac559", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Rachel Ticotin", "character": "Rosa Martinez", "id": 10768, "credit_id": "52fe44d3c3a36847f80ac55d", "cast_id": 8, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 7}, {"name": "Chlo\u00eb Grace Moretz", "character": "Alicia Millstone", "id": 56734, "credit_id": "52fe44d3c3a36847f80ac561", "cast_id": 9, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 8}, {"name": "Tamlyn Tomita", "character": "Mrs. Cheung", "id": 3134, "credit_id": "52fe44d3c3a36847f80ac565", "cast_id": 10, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 9}, {"name": "Karen Austin", "character": "Mrs. Hillman", "id": 30489, "credit_id": "52fe44d3c3a36847f80ac569", "cast_id": 11, "profile_path": "/4OkTNSyMZiU2rOVrKUzH6zuFvqL.jpg", "order": 10}], "directors": [{"name": "David Moreau", "department": "Directing", "job": "Director", "credit_id": "52fe44d3c3a36847f80ac56f", "profile_path": null, "id": 56735}, {"name": "Xavier Palud", "department": "Directing", "job": "Director", "credit_id": "52fe44d3c3a36847f80ac575", "profile_path": null, "id": 56736}], "vote_average": 5.7, "runtime": 98}, "20662": {"poster_path": "/4gH0vhyOcl7QV3t81653CpWjEB6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 310669540, "overview": "When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man's sword to his family in Nottingham. There, he assumes Robert's identity; romances his widow, Marion; and draws the ire of the town's sheriff and King John's henchman, Godfrey.", "video": false, "id": 20662, "genres": [{"id": 28, "name": "Action"}], "title": "Robin Hood", "tagline": "Rise and rise again, until lambs become lions.", "vote_count": 485, "homepage": "http://www.robinhoodthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0955308", "adult": false, "backdrop_path": "/avhEibZxIr8NzHQFBjw3FjLjN7u.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Relativity Media", "id": 7295}], "release_date": "2010-05-13", "popularity": 1.25097281548566, "original_title": "Robin Hood", "budget": 200000000, "cast": [{"name": "Russell Crowe", "character": "Robin Hood", "id": 934, "credit_id": "52fe43f2c3a368484e007699", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Lady Marian", "id": 112, "credit_id": "52fe43f2c3a368484e00769d", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Mark Strong", "character": "Sir Godfrey", "id": 2983, "credit_id": "52fe43f2c3a368484e0076d5", "cast_id": 12, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Oscar Isaac", "character": "Prince John", "id": 25072, "credit_id": "52fe43f2c3a368484e0076e1", "cast_id": 15, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 3}, {"name": "L\u00e9a Seydoux", "character": "Isabella of Angoul\u00eame", "id": 121529, "credit_id": "52fe43f2c3a368484e0076fd", "cast_id": 22, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 4}, {"name": "Max von Sydow", "character": "Sir Walter Loxley", "id": 2201, "credit_id": "52fe43f2c3a368484e0076dd", "cast_id": 14, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 5}, {"name": "Danny Huston", "character": "King Richard", "id": 6413, "credit_id": "52fe43f2c3a368484e0076e9", "cast_id": 17, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "Mark Addy", "character": "Friar Tuck", "id": 13633, "credit_id": "52fe43f2c3a368484e0076e5", "cast_id": 16, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 7}, {"name": "William Hurt", "character": "William Marshal", "id": 227, "credit_id": "52fe43f2c3a368484e0076d9", "cast_id": 13, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 8}, {"name": "Matthew Macfadyen", "character": "Sheriff of Nottingham", "id": 15576, "credit_id": "52fe43f2c3a368484e0076a1", "cast_id": 3, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 9}, {"name": "Kevin Durand", "character": "Little John", "id": 79072, "credit_id": "52fe43f2c3a368484e0076ed", "cast_id": 18, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 10}, {"name": "Scott Grimes", "character": "Will Scarlet", "id": 35091, "credit_id": "52fe43f2c3a368484e0076f1", "cast_id": 19, "profile_path": "/tm8uz3DbD0hlXRciYgCuaHrXepl.jpg", "order": 11}, {"name": "Alan Doyle", "character": "Allan A'Dayle", "id": 147472, "credit_id": "52fe43f2c3a368484e0076f5", "cast_id": 20, "profile_path": "/esB5mU49xL3ZM0OPRfvV5LwDbWb.jpg", "order": 12}, {"name": "Ruby Bentall", "character": "Margaret Walter's Maid", "id": 226083, "credit_id": "52fe43f2c3a368484e0076f9", "cast_id": 21, "profile_path": "/uH5unnFpkR3S5DUH2c4b28Xe6Al.jpg", "order": 13}, {"name": "Douglas Hodge", "character": "Sir Robert Loxley", "id": 80149, "credit_id": "52fe43f2c3a368484e007701", "cast_id": 23, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 14}, {"name": "Robert Pugh", "character": "Baron Baldwin", "id": 47643, "credit_id": "52fe43f2c3a368484e007705", "cast_id": 24, "profile_path": "/vnqBCADoEnxQBD5e0GOCbUGrLeM.jpg", "order": 15}, {"name": "Jessica Raine", "character": "Princess Isabel of Gloucester", "id": 1151410, "credit_id": "52fe43f2c3a368484e007709", "cast_id": 25, "profile_path": "/co6u2yKVwoTWztYbC7ctcJ7YlE1.jpg", "order": 16}, {"name": "Giannina Facio", "character": "Lady-in-Waiting", "id": 58787, "credit_id": "52fe43f2c3a368484e00770d", "cast_id": 26, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 17}, {"name": "Eileen Atkins", "character": "Eleanor of Aquitaine", "id": 20300, "credit_id": "5409f78e0e0a262b49000574", "cast_id": 31, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 18}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43f2c3a368484e0076a7", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.0, "runtime": 140}, "241848": {"poster_path": "/xuUK5qTqdncIC5PP8bvyQoLZU9f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A soldier introduces himself to the Peterson family, claiming to be a friend of their son who died in action. After the young man is welcomed into their home, a series of accidental deaths seem to be connected to his presence.", "video": false, "id": 241848, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Guest", "tagline": "Be careful who you let in", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2980592", "adult": false, "backdrop_path": "/oA9gW3SuXmvnHUewe0KDyK011VH.jpg", "production_companies": [{"name": "HanWay Films", "id": 2395}, {"name": "Snoot Entertainment", "id": 15159}], "release_date": "2014-09-17", "popularity": 1.93120687261182, "original_title": "The Guest", "budget": 0, "cast": [{"name": "Dan Stevens", "character": "David", "id": 221018, "credit_id": "53e332f70e0a262b8f003687", "cast_id": 3, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 1}, {"name": "Maika Monroe", "character": "Anna Peterson", "id": 1094091, "credit_id": "53e333080e0a262b80003951", "cast_id": 4, "profile_path": "/3MyvscK0RoxmwLSIWzxRA2UrC6v.jpg", "order": 2}, {"name": "Sheila Kelley", "character": "Laura Peterson", "id": 68109, "credit_id": "53e333230e0a262b8c0036b0", "cast_id": 5, "profile_path": "/chbHBKXxpEKTKWhY6aazEAZGKRb.jpg", "order": 3}, {"name": "Ethan Embry", "character": "Higgins", "id": 58019, "credit_id": "53ea23470e0a26603500173e", "cast_id": 6, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 4}, {"name": "Joel David Moore", "character": "Craig", "id": 59231, "credit_id": "53f55fe10e0a267f89003b72", "cast_id": 7, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 5}, {"name": "Leland Orser", "character": "Spencer Peterson", "id": 2221, "credit_id": "53f562060e0a267f77003adb", "cast_id": 8, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 6}, {"name": "Brendan Meyer", "character": "Luke Peterson", "id": 558927, "credit_id": "53f5622d0e0a267f7a003c6d", "cast_id": 9, "profile_path": "/ykafA2ATSL1Cyae5KTOuPxRZLIF.jpg", "order": 7}, {"name": "Tabatha Shaun", "character": "Kristen", "id": 1292930, "credit_id": "53f562670e0a267f7d003c27", "cast_id": 10, "profile_path": "/x4i2dpB7VQktXK826YhmsOAuphI.jpg", "order": 8}, {"name": "Lance Reddick", "character": "Carver", "id": 129101, "credit_id": "53f5628f0e0a267f8d003c84", "cast_id": 11, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 9}, {"name": "AJ Bowen", "character": "Austin", "id": 74133, "credit_id": "53f563000e0a267f89003bf7", "cast_id": 13, "profile_path": "/zsWWKKt0p69mRRgjXGysMpTSQQn.jpg", "order": 11}], "directors": [{"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe4ebfc3a36847f82a5895", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}], "vote_average": 6.6, "runtime": 99}, "45243": {"poster_path": "/hFUsdnUoQDQ02EVlKTyhDTdehEr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 254455986, "overview": "The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.", "video": false, "id": 45243, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Hangover Part II", "tagline": "The Wolfpack Is Back", "vote_count": 1768, "homepage": "http://hangoverpart2.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/uEtsf26a9RsRDy85MOIv1xAj44x.jpg", "poster_path": "/aMmNLuyXvdBih1R5RRHtdtNaS6N.jpg", "id": 86119, "name": "The Hangover Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt1411697", "adult": false, "backdrop_path": "/hnu7rEmUXyrRBqlRTd2CzDBUap4.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Legendary Pictures", "id": 923}, {"name": "Green Hat Films", "id": 3527}, {"name": "Living Films", "id": 2877}], "release_date": "2011-05-25", "popularity": 0.888289518099129, "original_title": "The Hangover Part II", "budget": 80000000, "cast": [{"name": "Bradley Cooper", "character": "Phil Wenneck", "id": 51329, "credit_id": "52fe46b8c3a36847f810e649", "cast_id": 7, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Ed Helms", "character": "Stu Price", "id": 27105, "credit_id": "52fe46b8c3a36847f810e655", "cast_id": 13, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Alan Garner", "id": 58225, "credit_id": "52fe46b8c3a36847f810e64d", "cast_id": 8, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Doug Billings", "id": 21180, "credit_id": "52fe46b8c3a36847f810e651", "cast_id": 12, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Ken Jeong", "character": "Mr. Chow", "id": 83586, "credit_id": "52fe46b8c3a36847f810e659", "cast_id": 14, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 4}, {"name": "Paul Giamatti", "character": "Kingsley", "id": 13242, "credit_id": "52fe46b8c3a36847f810e66b", "cast_id": 20, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 5}, {"name": "Mike Tyson", "character": "Himself", "id": 80757, "credit_id": "52fe46b8c3a36847f810e65d", "cast_id": 15, "profile_path": "/dENp2l4nk5wv6F0AT1iQ3pf4Os1.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Sid Garner", "id": 4175, "credit_id": "52fe46b8c3a36847f810e66f", "cast_id": 21, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "Mason Lee", "character": "Teddy", "id": 543138, "credit_id": "52fe46b8c3a36847f810e673", "cast_id": 22, "profile_path": "/urYsvKa9JnJd79Evg4rDwfcRsTP.jpg", "order": 8}, {"name": "Jamie Chung", "character": "Lauren", "id": 78324, "credit_id": "52fe46b8c3a36847f810e667", "cast_id": 19, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 9}, {"name": "Sasha Barrese", "character": "Tracy", "id": 83585, "credit_id": "52fe46b8c3a36847f810e677", "cast_id": 23, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 10}, {"name": "Gillian Vigman", "character": "Stephanie", "id": 61182, "credit_id": "52fe46b8c3a36847f810e67b", "cast_id": 24, "profile_path": "/2uwR6JalWrZWZq3NhL7CdDlDKhL.jpg", "order": 11}, {"name": "Aroon Seeboonruang", "character": "Monk", "id": 543139, "credit_id": "52fe46b8c3a36847f810e67f", "cast_id": 25, "profile_path": "/w3akFzrdKk8irpmrLXPaQnnuwJC.jpg", "order": 12}, {"name": "Nirut Sirichanya", "character": "Fohn", "id": 116421, "credit_id": "52fe46b8c3a36847f810e683", "cast_id": 26, "profile_path": "/dt8spgt9T7zBviLs50jIpsCFQTt.jpg", "order": 13}, {"name": "Yasmin Lee", "character": "Kimmy", "id": 543140, "credit_id": "52fe46b8c3a36847f810e687", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Nick Cassavetes", "character": "Tattoo Joe", "id": 11151, "credit_id": "52fe46b8c3a36847f810e68b", "cast_id": 28, "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "order": 15}, {"name": "Sondra Currie", "character": "Linda Garner", "id": 153621, "credit_id": "52fe46b8c3a36847f810e68f", "cast_id": 29, "profile_path": "/an6mZEO5SMAsOkgEOBg7jSN1jmu.jpg", "order": 16}, {"name": "Bryan Callen", "character": "Samir", "id": 78320, "credit_id": "52fe46b8c3a36847f810e693", "cast_id": 30, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 17}, {"name": "Brody Stevens", "character": "Kingsley Guy", "id": 142373, "credit_id": "52fe46b8c3a36847f810e697", "cast_id": 31, "profile_path": "/dzypgW3rNwGImzyKeOlZg8Olhwi.jpg", "order": 18}, {"name": "Michael Berry Jr.", "character": "Vladi", "id": 1716, "credit_id": "52fe46b8c3a36847f810e69b", "cast_id": 32, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 19}, {"name": "Andrew Howard", "character": "Nikolai", "id": 67206, "credit_id": "52fe46b8c3a36847f810e69f", "cast_id": 33, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 20}, {"name": "Penpak Sirikul", "character": "Joi", "id": 1256326, "credit_id": "52fe46b8c3a36847f810e6a9", "cast_id": 35, "profile_path": "/65JGirpmRxGcT5E1yial3ewBGyt.jpg", "order": 21}, {"name": "Crystal the Monkey", "character": "Drug Dealing Monkey", "id": 1428580, "credit_id": "550a87c39251414699000dbe", "cast_id": 36, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 22}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe46b8c3a36847f810e63f", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.9, "runtime": 102}, "12477": {"poster_path": "/bwVhmPpydv8P7mWfrmL3XVw0MV5.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.", "video": false, "id": 12477, "genres": [{"id": 16, "name": "Animation"}], "title": "Grave of the Fireflies", "tagline": "", "vote_count": 192, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0095327", "adult": false, "backdrop_path": "/fCUIuG7y4YKC3hofZ8wsj7zhCpR.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Shinchosha Company", "id": 12521}], "release_date": "1988-04-16", "popularity": 0.00135069015306753, "original_title": "Hotaru no haka", "budget": 0, "cast": [{"name": "Tsutomu Tatsumi", "character": "Seita (voice)", "id": 72413, "credit_id": "52fe44e89251416c750452b1", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Ayano Shiraishi", "character": "Setsuko (voice)", "id": 72414, "credit_id": "52fe44e89251416c750452b5", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Yoshiko Shinohara", "character": "Mother (voice)", "id": 72415, "credit_id": "52fe44e89251416c750452b9", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Akemi Yamaguchi", "character": "Aunt (voice)", "id": 72416, "credit_id": "52fe44e89251416c750452bd", "cast_id": 4, "profile_path": null, "order": 3}], "directors": [{"name": "Isao Takahata", "department": "Directing", "job": "Director", "credit_id": "52fe44e89251416c750452c3", "profile_path": "/okibTp5aDbYfATefDQjxU5Owsoz.jpg", "id": 628}], "vote_average": 7.9, "runtime": 89}, "8326": {"poster_path": "/1GjM6h9s3Uvsh9gHWuRI02znCgj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\u2018Holes\u2019 is a 2003 film based on the novel of the same title by Louis Sachar. The story is based on a wrongfully convicted boy who is sent to a brutal desert detention camp where he joins the job of digging holes for some mysterious reason.The film was produced by Walden Media and released by Walt Disney Pictures. The movie made US$ 71 million at the box office against a $20 million budget, making the film a moderate financial success. The film garnered much critical praise, receiving a 77% Certified Fresh rating on Rotten Tomatoes. The closing credits of the film feature the music of the director's brother, musician Richard \"Richie\" Peter Davis co-founder of the Chicago Catz cover band.", "video": false, "id": 8326, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Holes", "tagline": "Some secrets are too big to keep hidden.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0311289", "adult": false, "backdrop_path": "/ltQHMvXdKvSLrdLfJQo0zbUJB1h.jpg", "production_companies": [{"name": "Chicago Pacific Entertainment", "id": 2377}], "release_date": "2003-04-18", "popularity": 0.466856074186152, "original_title": "Holes", "budget": 0, "cast": [{"name": "Sigourney Weaver", "character": "Warden Walker", "id": 10205, "credit_id": "52fe449ec3a36847f80a0855", "cast_id": 2, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Jon Voight", "character": "Marion Sevillo", "id": 10127, "credit_id": "52fe449ec3a36847f80a0859", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Tim Blake Nelson", "character": "Dr. Pendanski", "id": 1462, "credit_id": "52fe449ec3a36847f80a085d", "cast_id": 4, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 2}, {"name": "Patricia Arquette", "character": "Miss Kathryn Barlow", "id": 4687, "credit_id": "52fe449ec3a36847f80a0861", "cast_id": 5, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 3}, {"name": "Shia LaBeouf", "character": "Stanley Yelnats/Caveman", "id": 10959, "credit_id": "52fe449ec3a36847f80a0865", "cast_id": 6, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 4}, {"name": "Khleo Thomas", "character": "Hector Zeroni", "id": 54495, "credit_id": "52fe449ec3a36847f80a0869", "cast_id": 7, "profile_path": "/3SXGiCUQfrGNPJABrTaDuzo1Ibe.jpg", "order": 5}, {"name": "Jake M. Smith", "character": "Squid", "id": 54496, "credit_id": "52fe449ec3a36847f80a086d", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Byron Cotton", "character": "Armpit", "id": 54497, "credit_id": "52fe449ec3a36847f80a0871", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Brenden Richard Jefferson", "character": "X-Ray", "id": 54498, "credit_id": "52fe449fc3a36847f80a0875", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Eartha Kitt", "character": "Madame Zeroni", "id": 70243, "credit_id": "52fe449fc3a36847f80a08af", "cast_id": 20, "profile_path": "/m3Ozxzlnl474Hjpe6OYkRNGmKRm.jpg", "order": 9}, {"name": "Siobhan Fallon", "character": "Stanley's Mother", "id": 6751, "credit_id": "52fe449fc3a36847f80a08b3", "cast_id": 21, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 10}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe449ec3a36847f80a0851", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.2, "runtime": 117}, "37056": {"poster_path": "/kUBSfYpsE1RLdl2WZL2YMJfNOEm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An American girl on vacation in Italy finds an unanswered \"letter to Juliet\" -- one of thousands of missives left at the fictional lover's Verona courtyard, which are typically answered by a the \"secretaries of Juliet\" -- and she goes on a quest to find the lovers referenced in the letter.", "video": false, "id": 37056, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Letters to Juliet", "tagline": "What if you had a second chance to find true love?", "vote_count": 151, "homepage": "http://www.letterstojuliet-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0892318", "adult": false, "backdrop_path": "/mwI5fTor198yK4w7LDOfuPssxF2.jpg", "production_companies": [{"name": "Applehead Pictures", "id": 28048}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2010-05-14", "popularity": 0.4177640742604, "original_title": "Letters to Juliet", "budget": 30000000, "cast": [{"name": "Amanda Seyfried", "character": "Sophie", "id": 71070, "credit_id": "52fe46259251416c9104ac5f", "cast_id": 2, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Gael Garc\u00eda Bernal", "character": "Victor", "id": 258, "credit_id": "52fe46259251416c9104ac63", "cast_id": 3, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 1}, {"name": "Vanessa Redgrave", "character": "Claire", "id": 13333, "credit_id": "52fe46259251416c9104ac89", "cast_id": 11, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 2}, {"name": "Christopher Egan", "character": "Charlie", "id": 1312315, "credit_id": "538f2a76c3a3682862000b61", "cast_id": 37, "profile_path": "/bheD2SRyi1UtAC6VXBj2K9fNZ0C.jpg", "order": 3}, {"name": "Marcia DeBonis", "character": "Lorraine", "id": 116691, "credit_id": "52fe46259251416c9104ac5b", "cast_id": 1, "profile_path": "/wHHZxRHGCjw1L5P6RCcFYeCZ5To.jpg", "order": 4}, {"name": "Giordano Formenti", "character": "Viticoltore", "id": 116692, "credit_id": "52fe46259251416c9104ac67", "cast_id": 4, "profile_path": "/6olwSMQPkit6ymhDu6NXqUgO807.jpg", "order": 5}, {"name": "Luisa Ranieri", "character": "Isabella", "id": 119172, "credit_id": "52fe46259251416c9104ac7d", "cast_id": 8, "profile_path": "/5FTQvUZMKaWQeK1kAWA0AaFYl50.jpg", "order": 6}, {"name": "Marina Massironi", "character": "Francesca", "id": 7543, "credit_id": "52fe46259251416c9104ac81", "cast_id": 9, "profile_path": "/xQclfu1AOrRptZcWAnnwdCHCfap.jpg", "order": 7}, {"name": "Milena Vukotic", "character": "Maria", "id": 44104, "credit_id": "52fe46259251416c9104ac85", "cast_id": 10, "profile_path": "/t3on2M69KvTLdWYCKALmCEK3xzL.jpg", "order": 8}, {"name": "Remo Remotti", "character": "Farm House Lorenzo", "id": 76344, "credit_id": "52fe46259251416c9104ac8d", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Fabio Testi", "character": "Count Lorenzo", "id": 21181, "credit_id": "52fe46259251416c9104ac91", "cast_id": 13, "profile_path": "/qqE1Vh8guRCoIGkfNRuE0mXx0vL.jpg", "order": 10}, {"name": "Franco Nero", "character": "Lorenzo", "id": 22383, "credit_id": "52fe46269251416c9104ad17", "cast_id": 36, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 11}, {"name": "Oliver Platt", "character": "New Yorker Magazine Editor (Uncredited)", "id": 17485, "credit_id": "52fe46259251416c9104ac95", "cast_id": 14, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 12}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe46259251416c9104ac6d", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 6.4, "runtime": 105}, "11638": {"poster_path": "/edxlUrSaeVYkG1VfQlceXcWeRdR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68915888, "overview": "The fianc\u00e9 of an African-American woman who's met with skepticism and suspicion from her father. Tension flares -- along with comedy -- when she takes him home for the all-important introduction, and as the wedding approaches, Dad must come to terms with his future son-in-law.", "video": false, "id": 11638, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Guess Who", "tagline": "His house. His rules. Some in-laws were made to be broken.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0372237", "adult": false, "backdrop_path": "/78ccwmm9r0PhiPY50GQGzHUY4jW.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Regency Enterprises", "id": 508}, {"name": "3 Arts Entertainment", "id": 787}, {"name": "Tall Trees Productions", "id": 10239}], "release_date": "2005-03-25", "popularity": 0.465920839507328, "original_title": "Guess Who", "budget": 35000000, "cast": [{"name": "Bernie Mac", "character": "Percy Jones", "id": 1897, "credit_id": "52fe446e9251416c7503471b", "cast_id": 1, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Simon Green", "id": 18976, "credit_id": "52fe446e9251416c7503471f", "cast_id": 2, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Zoe Saldana", "character": "Theresa Jones", "id": 8691, "credit_id": "52fe446e9251416c75034723", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 2}, {"name": "Judith Scott", "character": "Marilyn Jones", "id": 44185, "credit_id": "52fe446e9251416c75034727", "cast_id": 4, "profile_path": "/8PXHC5SMNyUuNNXgDc6m9yJuQcp.jpg", "order": 3}, {"name": "Hal Williams", "character": "Howard Jones", "id": 70775, "credit_id": "52fe446e9251416c7503472b", "cast_id": 5, "profile_path": "/9mDTiY6FMFkoS2YmW66mjyCZe63.jpg", "order": 4}, {"name": "Kellee Stewart", "character": "Keisha Jones", "id": 70776, "credit_id": "52fe446e9251416c7503472f", "cast_id": 6, "profile_path": "/fJuiPcBefXeIYxYf363JBLdJryH.jpg", "order": 5}], "directors": [{"name": "Kevin Rodney Sullivan", "department": "Directing", "job": "Director", "credit_id": "52fe446e9251416c75034735", "profile_path": "/hRlaIKMsnAqQ0tAppg8fszF1TMg.jpg", "id": 70777}], "vote_average": 5.5, "runtime": 105}, "9963": {"poster_path": "/7po8AGGFNcyKmMkRg1afHwZQYP4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84146832, "overview": "Depressed housewife learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the next day after to a world in which he is still dead.", "video": false, "id": 9963, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Premonition", "tagline": "Reality is only a nightmare away", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477071", "adult": false, "backdrop_path": "/lJ1mIyVtrko6Zqr8yRwjrLtV5nt.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Hyde Park Films", "id": 1172}, {"name": "Offspring Entertainment", "id": 2378}], "release_date": "2007-03-15", "popularity": 0.692607253962658, "original_title": "Premonition", "budget": 20000000, "cast": [{"name": "Sandra Bullock", "character": "Linda Hanson", "id": 18277, "credit_id": "52fe4551c3a36847f80c79e3", "cast_id": 22, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Julian McMahon", "character": "Jim Hanson", "id": 20402, "credit_id": "52fe4551c3a36847f80c79e7", "cast_id": 23, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 1}, {"name": "Courtney Taylor Burness", "character": "Bridgette Hanson", "id": 58412, "credit_id": "52fe4551c3a36847f80c79eb", "cast_id": 24, "profile_path": "/iFXnh2zmqX1nKv9YjZleXnA0MdZ.jpg", "order": 2}, {"name": "Nia Long", "character": "Annie", "id": 9781, "credit_id": "52fe4551c3a36847f80c79ef", "cast_id": 25, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 3}, {"name": "Shyann McClure", "character": "Megan Hanson", "id": 61098, "credit_id": "52fe4551c3a36847f80c79f9", "cast_id": 27, "profile_path": "/jbl9tuufH0Uchkntd8nhhOBx8ko.jpg", "order": 4}, {"name": "Kate Nelligan", "character": "Joanne", "id": 18794, "credit_id": "52fe4551c3a36847f80c79fd", "cast_id": 28, "profile_path": "/qesy9idqrmSxzEhdCo0P7Y6HWJO.jpg", "order": 5}, {"name": "Marc Macaulay", "character": "Sheriff Reilly", "id": 6908, "credit_id": "52fe4551c3a36847f80c7a01", "cast_id": 29, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 6}, {"name": "Ritchie Montgomery", "character": "Funeral Attendant", "id": 52885, "credit_id": "52fe4552c3a36847f80c7a05", "cast_id": 30, "profile_path": "/znNRxqrYkOskK3jlm3ftHyAzJDg.jpg", "order": 7}, {"name": "Irene Ziegler", "character": "Mrs. Quinn", "id": 61099, "credit_id": "52fe4552c3a36847f80c7a09", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Phillip DeVona", "character": "Funeral Attendant", "id": 61100, "credit_id": "52fe4552c3a36847f80c7a0d", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Amber Valletta", "character": "Claire", "id": 38425, "credit_id": "52fe4552c3a36847f80c7a11", "cast_id": 33, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 10}, {"name": "Peter Stormare", "character": "Dr. Roth", "id": 53, "credit_id": "52fe4552c3a36847f80c7a15", "cast_id": 34, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 11}, {"name": "Jason Douglas", "character": "Emergency Room Doctor", "id": 20496, "credit_id": "52fe4552c3a36847f80c7a19", "cast_id": 36, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 12}, {"name": "Laurel Whitsett", "character": "School Aide", "id": 61102, "credit_id": "52fe4552c3a36847f80c7a1d", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Kristin Ketterer", "character": "Receptionist", "id": 61103, "credit_id": "52fe4552c3a36847f80c7a21", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Floriana Tullio", "character": "Nurse", "id": 61105, "credit_id": "52fe4552c3a36847f80c7a25", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Mark Famiglietti", "character": "Doug Caruthers", "id": 7220, "credit_id": "52fe4552c3a36847f80c7a29", "cast_id": 41, "profile_path": "/7Ypq73G7xZzVHLzN8nDi76bEBSP.jpg", "order": 17}, {"name": "David A. Shaffer", "character": "Doctor's Assistant", "id": 61106, "credit_id": "52fe4552c3a36847f80c7a2d", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Marcus Lyle Brown", "character": "Bob", "id": 16460, "credit_id": "52fe4552c3a36847f80c7a31", "cast_id": 43, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 19}, {"name": "Matt Moore", "character": "Young Priest", "id": 180355, "credit_id": "52fe4552c3a36847f80c7a3b", "cast_id": 45, "profile_path": null, "order": 20}], "directors": [{"name": "Mennan Yapo", "department": "Directing", "job": "Director", "credit_id": "52fe4551c3a36847f80c79a3", "profile_path": null, "id": 61087}], "vote_average": 5.7, "runtime": 110}, "28874": {"poster_path": "/hoVm9Rndcs7FbVqr6s22kEyUMJ8.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 18353560, "overview": "Kenji is your typical teenage misfit. He\u2019s good at math, bad with girls, and spends most of his time out hanging out in the all-powerful online community known as OZ. His second life is the only life he has \u2013 until the girl of his dreams, Natsuki, hijacks him for a starring role as a fake fianc\u00e9 at her family reunion. Things only get stranger from there. A late-night email containing a cryptic mathematic riddle leads to the unleashing of a rogue AI intent on using the virtual world of OZ to destroy the real world. As Armageddon looms on the horizon, Kenji and his new \u201cfamily\u201d set aside their differences and band together to save the worlds they inhabit in this \"near-perfect blend of social satire and science fiction.\"", "video": false, "id": 28874, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Summer Wars", "tagline": "", "vote_count": 93, "homepage": "http://s-wars.jp/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1474276", "adult": false, "backdrop_path": "/7rT6AYzflkQtGZKwWL8AXouDj5G.jpg", "production_companies": [{"name": "Warner Bro. Japan", "id": 3627}, {"name": "Madhouse", "id": 4288}], "release_date": "2009-08-01", "popularity": 0.573429661198605, "original_title": "\u30b5\u30de\u30fc\u30a6\u30a9\u30fc\u30ba", "budget": 0, "cast": [{"name": "Mitsuki Tanimura", "character": "Kazuma Ikezawa", "id": 118577, "credit_id": "52fe45b8c3a368484e06b279", "cast_id": 1, "profile_path": "/44o4Coq0GficqAd4tsul39T903P.jpg", "order": 0}, {"name": "Nanami Sakuraba", "character": "Natsuki Shinohara", "id": 118579, "credit_id": "52fe45b8c3a368484e06b27d", "cast_id": 3, "profile_path": "/43BviFRE43PPqFddOxp06W7QGw4.jpg", "order": 1}, {"name": "Sumiko Fuji", "character": "Sakae Jinnouchi", "id": 142678, "credit_id": "52fe45b8c3a368484e06b293", "cast_id": 7, "profile_path": "/v1mAiNDiBk3YOgrlyUGnE2OYs2h.jpg", "order": 2}, {"name": "Ayumu Sait\u00f4", "character": "Wabisuke Jinnouchi", "id": 135030, "credit_id": "52fe45b8c3a368484e06b297", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Riisa Naka", "character": "Y\u00fbmi Jin'n\u00f4chi", "id": 122468, "credit_id": "52fe45b9c3a368484e06b2d1", "cast_id": 18, "profile_path": "/xG0KT9CkOp3ozWGopeuv5Bd0CqP.jpg", "order": 4}, {"name": "Ryunosuke Kamiki", "character": "Kenji Koiso", "id": 225730, "credit_id": "52fe45b9c3a368484e06b2d5", "cast_id": 19, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 5}], "directors": [{"name": "Mamoru Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe45b8c3a368484e06b283", "profile_path": "/oh1GS6x8cdGkyL4QPKmpMSaD6Wu.jpg", "id": 81718}], "vote_average": 7.4, "runtime": 114}, "45269": {"poster_path": "/v8M5Sytbut7vBXyZ1HDy8lUVVcB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 414211549, "overview": "The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.", "video": false, "id": 45269, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The King's Speech", "tagline": "Find your voice.", "vote_count": 934, "homepage": "http://www.kingsspeech.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1504320", "adult": false, "backdrop_path": "/hAQKDTVKk04LWn82OYWLBPpsaVa.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "UK Film Council", "id": 2452}, {"name": "Momentum Pictures", "id": 19578}, {"name": "Aegis Film Fund", "id": 7309}, {"name": "Molinare Investment", "id": 19579}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "See-Saw Films", "id": 7217}, {"name": "Bedlam Productions", "id": 5005}], "release_date": "2010-09-06", "popularity": 1.5025423675316, "original_title": "The King's Speech", "budget": 15000000, "cast": [{"name": "Colin Firth", "character": "King George VI", "id": 5472, "credit_id": "53015230c3a3680a1114e905", "cast_id": 32, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Geoffrey Rush", "character": "Lionel Logue", "id": 118, "credit_id": "5301525ec3a3680a21163663", "cast_id": 33, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Queen Elizabeth", "id": 1283, "credit_id": "5301529fc3a3680a11151e3a", "cast_id": 34, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Guy Pearce", "character": "King Edward VIII", "id": 529, "credit_id": "530152d3c3a3680a3f13e964", "cast_id": 36, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 5}, {"name": "Timothy Spall", "character": "Winston Churchill", "id": 9191, "credit_id": "53015318c3a3680a0312ab2a", "cast_id": 37, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 6}, {"name": "Michael Gambon", "character": "King George V", "id": 5658, "credit_id": "5301534ec3a3680a19145a46", "cast_id": 38, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 7}, {"name": "Jennifer Ehle", "character": "Myrtle Logue", "id": 49971, "credit_id": "5301538dc3a36809fd139884", "cast_id": 39, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 8}, {"name": "Derek Jacobi", "character": "Archbishop Cosmo Lang", "id": 937, "credit_id": "530153b1c3a3680a091401bf", "cast_id": 40, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 9}, {"name": "Freya Wilson", "character": "Princess Elizabeth", "id": 548169, "credit_id": "5301546f925141219e13684a", "cast_id": 41, "profile_path": null, "order": 10}, {"name": "Ramona Marquez", "character": "Princess Margaret", "id": 224878, "credit_id": "530154a2925141219814d9ea", "cast_id": 42, "profile_path": "/oLT0EWlrSVxkH6VMmGEnWUCC63M.jpg", "order": 11}, {"name": "Richard Dixon", "character": "Private Secretary", "id": 1222025, "credit_id": "536216910e0a2649a900136c", "cast_id": 47, "profile_path": null, "order": 13}, {"name": "Robert Portal", "character": "Equerry", "id": 121606, "credit_id": "53fb5d68c3a368734f0049ef", "cast_id": 48, "profile_path": null, "order": 14}, {"name": "Eve Best", "character": "Wallis Simpson", "id": 201665, "credit_id": "53fb5db4c3a3687352004ca3", "cast_id": 49, "profile_path": "/mDuK16euuZLNzgpM1bDAKZeMvpZ.jpg", "order": 15}, {"name": "Paul Trussell", "character": "Chauffeur", "id": 1231626, "credit_id": "53fb5de5c3a368735b004c1b", "cast_id": 50, "profile_path": null, "order": 16}, {"name": "Adrian Scarborough", "character": "BBC Radio Announcer", "id": 40311, "credit_id": "53fb5e13c3a3687358004c48", "cast_id": 51, "profile_path": null, "order": 17}, {"name": "Andrew Havill", "character": "Robert Wood", "id": 176191, "credit_id": "53fb5e45c3a368735e004e5f", "cast_id": 52, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 18}, {"name": "Charles Armstrong", "character": "BBC Technician", "id": 1356913, "credit_id": "53fb5f5f0e0a267a6c008090", "cast_id": 54, "profile_path": null, "order": 20}, {"name": "Roger Hammond", "character": "Dr. Blandine Bentham", "id": 27660, "credit_id": "53fb602ac3a3687358004c6c", "cast_id": 56, "profile_path": null, "order": 22}, {"name": "Calum Gittins", "character": "Laurie Logue", "id": 1356914, "credit_id": "53fb605ac3a3687361004c25", "cast_id": 57, "profile_path": null, "order": 23}, {"name": "Dominic Applewhite", "character": "Valentine Logue", "id": 515313, "credit_id": "53fb60f7c3a3687358004c8a", "cast_id": 58, "profile_path": null, "order": 24}, {"name": "Ben Wimsett", "character": "Anthony Logue", "id": 1356916, "credit_id": "53fb610cc3a368734c004b4a", "cast_id": 59, "profile_path": null, "order": 25}, {"name": "David Bamber", "character": "Theatre Director", "id": 26657, "credit_id": "53fb61aac3a3687358004c90", "cast_id": 60, "profile_path": "/chjj2qhiN49sOy2PYu32DmnX6k0.jpg", "order": 26}, {"name": "Jake Hathaway", "character": "Willie", "id": 1335168, "credit_id": "53fb61ccc3a368735e004ea7", "cast_id": 61, "profile_path": null, "order": 27}, {"name": "Michael Gambon", "character": "King George V", "id": 5658, "credit_id": "53fb61f3c3a3687358004c94", "cast_id": 62, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 28}, {"name": "Guy Pearce", "character": "King Edward VIII", "id": 529, "credit_id": "53fb6212c3a3687361004c40", "cast_id": 63, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 29}, {"name": "Patrick Ryecart", "character": "Lord Wigram", "id": 1214688, "credit_id": "53fb635dc3a368734f004a4e", "cast_id": 64, "profile_path": null, "order": 30}, {"name": "Teresa Gallagher", "character": "Nurse", "id": 1230799, "credit_id": "53fb67d60e0a267a720082ae", "cast_id": 65, "profile_path": null, "order": 31}, {"name": "Simon Chandler", "character": "Lord Dawson", "id": 16273, "credit_id": "53fb68bd0e0a267a7500829c", "cast_id": 66, "profile_path": "/j30wLavbX35RxxtjvMvCNK8Exsw.jpg", "order": 32}, {"name": "Claire Bloom", "character": "Queen Mary", "id": 29545, "credit_id": "53fb69050e0a267a7b007e85", "cast_id": 67, "profile_path": "/4x0Cfh1g8apqOPio8AJx9oUV9mK.jpg", "order": 33}, {"name": "Orlando Wells", "character": "Duke of Kent", "id": 224283, "credit_id": "53fb6ae7c3a368735e005068", "cast_id": 68, "profile_path": "/ncDQB7p0ou2utLS2Fota3tMs6jK.jpg", "order": 34}, {"name": "Tim Downie", "character": "Duke of Gloucester", "id": 1010912, "credit_id": "53fb6b0ec3a3687361004e11", "cast_id": 69, "profile_path": null, "order": 35}, {"name": "Dick Ward", "character": "Butler", "id": 986101, "credit_id": "53fb6b2ec3a368734c004d18", "cast_id": 70, "profile_path": null, "order": 36}, {"name": "John Albasiny", "character": "Footman", "id": 132988, "credit_id": "53fb6b73c3a3687352004eb5", "cast_id": 71, "profile_path": null, "order": 37}, {"name": "Timothy Spall", "character": "Winston Churchill", "id": 9191, "credit_id": "53fb6ba6c3a3687358004eb1", "cast_id": 72, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 38}, {"name": "Danny Emes", "character": "Boy in Regent's Park", "id": 1356917, "credit_id": "53fb6bc5c3a368734f004c2a", "cast_id": 73, "profile_path": null, "order": 39}, {"name": "Anthony Andrews", "character": "Stanley Baldwin", "id": 26659, "credit_id": "53fb6c5b0e0a267a750083c7", "cast_id": 74, "profile_path": "/N9iddf7diavQpIR0SX2zlDpe9n.jpg", "order": 40}, {"name": "John Warnaby", "character": "Steward", "id": 183180, "credit_id": "53fb6d4d0e0a267a6600821b", "cast_id": 75, "profile_path": null, "order": 41}, {"name": "Roger Parrott", "character": "Neville Chamberlain", "id": 1356918, "credit_id": "53fb6d680e0a267a78008079", "cast_id": 76, "profile_path": null, "order": 42}], "directors": [{"name": "Tom Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe46b9c3a36847f810ebeb", "profile_path": "/ddndxAviYVozIwOIByXAJvHWK7m.jpg", "id": 70500}], "vote_average": 7.2, "runtime": 118}, "37094": {"poster_path": "/jBHJWSUvvOIZkXG067vwVRWvohB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40903593, "overview": "An unemployed defense worker frustrated with the various flaws he sees in society, begins to psychotically and violently lash out against them.", "video": false, "id": 37094, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Falling Down", "tagline": "A Tale Of Urban Reality", "vote_count": 197, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0106856", "adult": false, "backdrop_path": "/cS45swrlrTJijH1RblBLe8LlW2p.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1993-02-26", "popularity": 1.04467543727607, "original_title": "Falling Down", "budget": 25000000, "cast": [{"name": "Michael Douglas", "character": "William 'D-Fens' Foster", "id": 3392, "credit_id": "52fe46299251416c9104b499", "cast_id": 3, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Detective Prendergast", "id": 3087, "credit_id": "52fe46299251416c9104b49d", "cast_id": 4, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Elizabeth 'Beth' Travino", "id": 10767, "credit_id": "52fe46299251416c9104b4a1", "cast_id": 5, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Tuesday Weld", "character": "Amanda Prendergast", "id": 4514, "credit_id": "52fe46299251416c9104b4a5", "cast_id": 6, "profile_path": "/wLVlljfTvppkfdQz9fNDizNpSuK.jpg", "order": 3}, {"name": "Rachel Ticotin", "character": "Sandra", "id": 10768, "credit_id": "53c43f7fc3a3684cf4009cc7", "cast_id": 9, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 4}, {"name": "Frederic Forrest", "character": "Nick, the Nazi Surplus Store Owner", "id": 8351, "credit_id": "53c43fa8c3a3684cf900a120", "cast_id": 10, "profile_path": "/fCHsWrGcgfREM7e9POq6FCFGvR9.jpg", "order": 5}, {"name": "Lois Smith", "character": "Mrs. Foster / William's Mother", "id": 2207, "credit_id": "5497280fc3a36831b800444a", "cast_id": 11, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 6}, {"name": "Joey Hope Singer", "character": "Adele Foster-Travino", "id": 1402302, "credit_id": "5497282ac3a3680fc6004a45", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ebbe Roe Smith", "character": "Guy on Freeway", "id": 116778, "credit_id": "549728729251417315001bb7", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Michael Paul Chan", "character": "Mr. Lee", "id": 17355, "credit_id": "5497289a9251417a81004598", "cast_id": 14, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 9}, {"name": "Raymond J. Barry", "character": "Captain Yardley", "id": 10361, "credit_id": "549728b49251417162001aa0", "cast_id": 15, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 10}, {"name": "D.W. Moffett", "character": "Detective Lydecker", "id": 87956, "credit_id": "549728ca9251416e1e0062b6", "cast_id": 16, "profile_path": "/fqktS2j0ZzieeU192scEcmGY5lq.jpg", "order": 11}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe46299251416c9104b4ab", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 7.0, "runtime": 113}, "4327": {"poster_path": "/eBzf9d09Vgq2HSVC4fIZm1QNQd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 264105545, "overview": "Aspects of this take on the 1970s hit TV series are similar to the original show :Angels Dylan, Natalie and Alex still work for Charlie and interface with Bosley. They still flip their hair, stop traffic with a smile and kick butt. The differences are the unsubtle humor, the martial arts training and the high-tech premise: This time, they're hot on the trail of stolen software.", "video": false, "id": 4327, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Charlie's Angels", "tagline": "Get Some Action", "vote_count": 312, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jfKqvbZqU3LcNcwj4N8Q1ZJ7fSv.jpg", "poster_path": "/jBKUntSuSUfxTXI8XWABpdWmWEt.jpg", "id": 86029, "name": "Charlie's Angels Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fi", "name": "suomi"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0160127", "adult": false, "backdrop_path": "/AfXk5IqMZuznjjvEkrQuzQ9A5U6.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2000-11-02", "popularity": 1.64153938121633, "original_title": "Charlie's Angels", "budget": 92000000, "cast": [{"name": "Cameron Diaz", "character": "Natalie Cook", "id": 6941, "credit_id": "52fe43bac3a36847f806b1e7", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Lucy Liu", "character": "Alex Munday", "id": 140, "credit_id": "52fe43bac3a36847f806b1eb", "cast_id": 2, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Dylan Sanders", "id": 69597, "credit_id": "52fe43bac3a36847f806b1ef", "cast_id": 3, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Bill Murray", "character": "John Bosley", "id": 1532, "credit_id": "52fe43bac3a36847f806b1f3", "cast_id": 4, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "John Forsythe", "character": "Charles Townsend", "id": 24367, "credit_id": "52fe43bac3a36847f806b1f7", "cast_id": 5, "profile_path": "/5sEnkUlmynZtmV9mzpn896GmtX.jpg", "order": 4}, {"name": "Sam Rockwell", "character": "Eric Knox", "id": 6807, "credit_id": "52fe43bac3a36847f806b1fb", "cast_id": 6, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 5}, {"name": "Kelly Lynch", "character": "Vivian Wood", "id": 6473, "credit_id": "52fe43bac3a36847f806b1ff", "cast_id": 7, "profile_path": "/20OsGbyUux00wkeL7BFfYnaXwlo.jpg", "order": 6}, {"name": "Tim Curry", "character": "Roger Corwin", "id": 13472, "credit_id": "52fe43bac3a36847f806b203", "cast_id": 8, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 7}, {"name": "Luke Wilson", "character": "Pete Komisky", "id": 36422, "credit_id": "52fe43bac3a36847f806b207", "cast_id": 9, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 8}, {"name": "Crispin Glover", "character": "Thin Man", "id": 1064, "credit_id": "52fe43bac3a36847f806b20b", "cast_id": 10, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 9}, {"name": "Matt LeBlanc", "character": "Jason Gibbons", "id": 14407, "credit_id": "52fe43bac3a36847f806b20f", "cast_id": 11, "profile_path": "/35sPf8IBVl54vdmc9Tyv17otMnk.jpg", "order": 10}, {"name": "Tom Green", "character": "Chad", "id": 36423, "credit_id": "52fe43bac3a36847f806b213", "cast_id": 12, "profile_path": "/bY7szfVBOedHUxkD3HHqa7MZ2ka.jpg", "order": 11}, {"name": "LL Cool J", "character": "Mr. Jones", "id": 36424, "credit_id": "52fe43bac3a36847f806b217", "cast_id": 13, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 12}, {"name": "Sean Whalen", "character": "Pasqual", "id": 9996, "credit_id": "52fe43bac3a36847f806b21b", "cast_id": 14, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 13}, {"name": "Melissa McCarthy", "character": "Doris", "id": 55536, "credit_id": "52fe43bbc3a36847f806b2a3", "cast_id": 37, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 14}, {"name": "Jerry Trimble", "character": "Thug", "id": 86602, "credit_id": "53739766c3a36815180015b1", "cast_id": 38, "profile_path": "/ez0PwSqQwd9WIGNybthklZZFNJ0.jpg", "order": 15}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe43bac3a36847f806b221", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.4, "runtime": 98}, "53487": {"poster_path": "/6588jxryRZ9HYvKC3XpKMPLBdrM.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 11790979, "overview": "A bored, retired rock star sets out to find his father's executioner, an ex-Nazi war criminal who is a refugee in the U.S.", "video": false, "id": 53487, "genres": [{"id": 18, "name": "Drama"}], "title": "This Must Be the Place", "tagline": "Never for money. Always for love.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt1440345", "adult": false, "backdrop_path": "/aYKNl2YYxgqZY49oEaEt0qNjWHy.jpg", "production_companies": [{"name": "Indigo Film", "id": 1533}, {"name": "Lucky Red", "id": 779}, {"name": "Medusa Film", "id": 6246}, {"name": "ARP S\u00e9lection", "id": 189}, {"name": "France 2 Cin\u00e9ma", "id": 15671}], "release_date": "2011-10-01", "popularity": 0.508905719877625, "original_title": "This Must Be the Place", "budget": 25000000, "cast": [{"name": "Sean Penn", "character": "Cheyenne", "id": 2228, "credit_id": "52fe4869c3a36847f8165dbf", "cast_id": 2, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Jane", "id": 3910, "credit_id": "52fe4869c3a36847f8165dc3", "cast_id": 3, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Judd Hirsch", "character": "Mordecai Midler", "id": 6167, "credit_id": "52fe4869c3a36847f8165dc7", "cast_id": 4, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 2}, {"name": "Eve Hewson", "character": "Mary", "id": 933271, "credit_id": "52fe4869c3a36847f8165dcb", "cast_id": 5, "profile_path": "/cDVb2oR75CCflAvEIyTNuEO4ceS.jpg", "order": 3}, {"name": "Kerry Condon", "character": "Rachel", "id": 62105, "credit_id": "52fe4869c3a36847f8165dcf", "cast_id": 6, "profile_path": "/i2wb0N7m1JkUJRcfBcVYmIpExAa.jpg", "order": 4}, {"name": "Harry Dean Stanton", "character": "Robert Plath", "id": 5048, "credit_id": "52fe4869c3a36847f8165dd3", "cast_id": 7, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 5}, {"name": "Joyce Van Patten", "character": "Dorothy Shore", "id": 14108, "credit_id": "52fe4869c3a36847f8165dd7", "cast_id": 8, "profile_path": "/wEUXn5Zgz88SZlTLZPrecfxGFOO.jpg", "order": 6}, {"name": "David Byrne", "character": "Himself", "id": 3078, "credit_id": "52fe4869c3a36847f8165ddb", "cast_id": 9, "profile_path": "/atdH8EDL6mnyBv9lNG2HsEGtjgU.jpg", "order": 7}, {"name": "Olwen Fou\u00e9r\u00e9", "character": "Mary's Mother", "id": 933272, "credit_id": "52fe4869c3a36847f8165ddf", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Shea Whigham", "character": "Ernie Ray", "id": 74242, "credit_id": "52fe4869c3a36847f8165de3", "cast_id": 11, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 9}], "directors": [{"name": "Paolo Sorrentino", "department": "Directing", "job": "Director", "credit_id": "52fe4869c3a36847f8165dbb", "profile_path": "/A4N12piSSJQ80WQnIbHKPXp3H4L.jpg", "id": 56194}], "vote_average": 6.4, "runtime": 118}, "180948": {"poster_path": "/8rh9jEiPmWDcLMPDA3DkUt8JSqG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "A parolee (Paul Walker) becomes the target of a massive police manhunt after inadvertently picking up a rental car with a female whistleblower tied up in the trunk. Now, as the police attempt to silence the woman before she can testify about the city's rampant corruption, the ex-con who just regained his freedom must defend her life, and clear his own name.", "video": false, "id": 180948, "genres": [{"id": 53, "name": "Thriller"}], "title": "Vehicle 19", "tagline": "Wrong place. Wrong time. Wrong car.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1911662", "adult": false, "backdrop_path": "/5Tpzz0jkRmVkx1M78xaf4XN1Y2D.jpg", "production_companies": [{"name": "Forefront Media Group", "id": 13696}, {"name": "The Safran Company", "id": 11565}, {"name": "Industrial Development Corporation of South Africa", "id": 564}, {"name": "K5 International", "id": 6715}, {"name": "Skyline Motion Picture Fund", "id": 23923}, {"name": "Efish Entertainment", "id": 21917}, {"name": "Picture Tree", "id": 23924}], "release_date": "2013-06-14", "popularity": 0.667417942038642, "original_title": "Vehicle 19", "budget": 0, "cast": [{"name": "Paul Walker", "character": "Michael Woods", "id": 8167, "credit_id": "52fe4c589251416c75117a5b", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Naima McLean", "character": "Rachel Shabangu", "id": 1163474, "credit_id": "52fe4c589251416c75117a5f", "cast_id": 4, "profile_path": "/xbDHC3XgAzTwnCCQgSWGSXI5mxC.jpg", "order": 1}, {"name": "Gys de Villiers", "character": "Detective Smith", "id": 231649, "credit_id": "52fe4c589251416c75117a63", "cast_id": 5, "profile_path": "/pXv5G2mGa8pUqWv56lADhJYKByo.jpg", "order": 2}, {"name": "Leyla Haidarian", "character": "Angelica Moore", "id": 1163480, "credit_id": "52fe4c589251416c75117a67", "cast_id": 6, "profile_path": "/u0JA8BBuFCim5OMk1X8RCITvOjg.jpg", "order": 3}, {"name": "Tshepo Maseko", "character": "Lieutenant", "id": 1187041, "credit_id": "52fe4c589251416c75117a6b", "cast_id": 7, "profile_path": "/w3RFiNLkIIqsSM1SPF6F4n8HGzt.jpg", "order": 4}, {"name": "Andrian Mazive", "character": "Journalist Benji", "id": 1187042, "credit_id": "52fe4c589251416c75117a6f", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Welile Nzuza", "character": "Mohawk", "id": 1185534, "credit_id": "52fe4c589251416c75117a73", "cast_id": 9, "profile_path": "/9XgN4WL9Cap5cK0znf7FROuOqvC.jpg", "order": 6}, {"name": "Mangaliso Ngema", "character": "Judge", "id": 1187043, "credit_id": "52fe4c589251416c75117a77", "cast_id": 10, "profile_path": "/dI0TUjMNiloHM3IguNJ5DBv9Pom.jpg", "order": 7}, {"name": "Ernest Kubayi", "character": "Crackhead", "id": 1187044, "credit_id": "52fe4c589251416c75117a7b", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Elize Van Niekerk", "character": "Car Rental Receptionist", "id": 1187045, "credit_id": "52fe4c589251416c75117a7f", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Sizo Motsoko", "character": "Car charger Kid 1", "id": 1187046, "credit_id": "52fe4c589251416c75117a83", "cast_id": 13, "profile_path": "/7YbxfPxzWCRNURCBxNG6p3DIIb8.jpg", "order": 10}, {"name": "Siviwe Mazibuko", "character": "Car charger Kid 2", "id": 1187047, "credit_id": "52fe4c589251416c75117a87", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Brandon Lindsay", "character": "Hostage Reporter", "id": 1187048, "credit_id": "52fe4c589251416c75117a8b", "cast_id": 15, "profile_path": "/uOrkFvL1LzVQWPdAltK3M8XXoU9.jpg", "order": 12}, {"name": "Paul Pieterse", "character": "Bicyclist", "id": 1187049, "credit_id": "52fe4c589251416c75117a8f", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Ben Tjibe", "character": "Muscles", "id": 1187050, "credit_id": "52fe4c589251416c75117a93", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Mukunda Michael Dewil", "department": "Directing", "job": "Director", "credit_id": "52fe4c589251416c75117a51", "profile_path": null, "id": 1163471}], "vote_average": 5.1, "runtime": 85}, "102651": {"poster_path": "/4FYu1AAu14tuBU0lns0hbKiHUcH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 758410378, "overview": "The untold story of Disney's most iconic villain from the 1959 classic 'Sleeping Beauty'. A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal \u2013 an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom - and to Maleficent's true happiness as well.", "video": false, "id": 102651, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Maleficent", "tagline": "Don't believe the fairy tale.", "vote_count": 1280, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1587310", "adult": false, "backdrop_path": "/9bd6IFBMwSOINrEW8VIBxaS4cd9.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Roth Films", "id": 16314}], "release_date": "2014-05-30", "popularity": 3.76706886409778, "original_title": "Maleficent", "budget": 180000000, "cast": [{"name": "Angelina Jolie", "character": "Maleficent", "id": 11701, "credit_id": "52fe4a0cc3a36847f81b5cb3", "cast_id": 7, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Elle Fanning", "character": "Princess Aurora", "id": 18050, "credit_id": "52fe4a0cc3a36847f81b5caf", "cast_id": 6, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 1}, {"name": "Juno Temple", "character": "Thistletwit", "id": 36594, "credit_id": "52fe4a0cc3a36847f81b5cc3", "cast_id": 11, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Stefan", "id": 82191, "credit_id": "52fe4a0cc3a36847f81b5cc7", "cast_id": 12, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Isobelle Molloy", "character": "Young Maleficent", "id": 1355733, "credit_id": "53f7bf4f0e0a267a72000014", "cast_id": 25, "profile_path": "/rJ3HvKn5ituVcbhk07qfYIDTU97.jpg", "order": 5}, {"name": "Miranda Richardson", "character": "Queen Ulla", "id": 8436, "credit_id": "52fe4a0cc3a36847f81b5ccf", "cast_id": 14, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 6}, {"name": "Brenton Thwaites", "character": "Young Prince", "id": 1017347, "credit_id": "52fe4a0cc3a36847f81b5cd3", "cast_id": 15, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 7}, {"name": "Imelda Staunton", "character": "Knotgrass", "id": 11356, "credit_id": "52fe4a0cc3a36847f81b5cd7", "cast_id": 16, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 8}, {"name": "Sam Riley", "character": "Diaval", "id": 32987, "credit_id": "52fe4a0cc3a36847f81b5cdb", "cast_id": 17, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 9}, {"name": "Peter Capaldi", "character": "King Kinloch", "id": 12982, "credit_id": "52fe4a0cc3a36847f81b5cdf", "cast_id": 18, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 10}, {"name": "Jamie Sives", "character": "Shepherd", "id": 1833, "credit_id": "52fe4a0cc3a36847f81b5ce3", "cast_id": 19, "profile_path": "/92BcXrr2W7gZri6xVlLhpLLaPsf.jpg", "order": 11}, {"name": "Lesley Manville", "character": "Flittle", "id": 72305, "credit_id": "52fe4a0cc3a36847f81b5ce7", "cast_id": 20, "profile_path": "/wyETH2tk6s15DXrQFZhx4KOwvNL.jpg", "order": 12}, {"name": "Toby Regbo", "character": "Young Stefan", "id": 116606, "credit_id": "52fe4a0cc3a36847f81b5ceb", "cast_id": 21, "profile_path": "/a8CuXhqdtjICxLNwm0yrydDo5Yy.jpg", "order": 13}, {"name": "Kenneth Cranham", "character": "King Henry", "id": 26258, "credit_id": "52fe4a0cc3a36847f81b5cef", "cast_id": 22, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 14}, {"name": "Hannah New", "character": "Princess Leila", "id": 1258225, "credit_id": "53b422de0e0a26598c00cd9f", "cast_id": 23, "profile_path": "/mjQMykRaYQHe7fbMOs7kgDm5YYi.jpg", "order": 15}, {"name": "Ella Purnell", "character": "Teen Maleficent", "id": 989325, "credit_id": "53b423300e0a26597d00c977", "cast_id": 24, "profile_path": "/3g0n8TEbQQpLT3ZEbSjlTO8lnK5.jpg", "order": 16}], "directors": [{"name": "Robert Stromberg", "department": "Directing", "job": "Director", "credit_id": "52fe4a0cc3a36847f81b5cb9", "profile_path": "/gqP1k0dJxRVj08xudosdROOn2UK.jpg", "id": 1032536}], "vote_average": 7.1, "runtime": 97}, "4348": {"poster_path": "/dAC0hkYmz5ZOCHURZCyj9isPMPd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 121147947, "overview": "Pride and Prejudice is a humorous story of love and life among English gentility during the Georgian era. Mr Bennet is an english gentleman living in Hartfordshire with his overbearing wife and 5 daughters. If Mr Bennet dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependant on the daughters making good marriages.", "video": false, "id": 4348, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Pride & Prejudice", "tagline": "A romance ahead of its time.", "vote_count": 250, "homepage": "http://www.prideandprejudicemovie.net/splash.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414387", "adult": false, "backdrop_path": "/77tdeFCkxL0EV3Hs6DnvQbXTu3P.jpg", "production_companies": [{"name": "Scion Films", "id": 7419}, {"name": "Focus Features", "id": 10146}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}], "release_date": "2005-09-16", "popularity": 1.17230950137082, "original_title": "Pride & Prejudice", "budget": 28000000, "cast": [{"name": "Keira Knightley", "character": "Elizabeth Bennet", "id": 116, "credit_id": "52fe43bbc3a36847f806b681", "cast_id": 38, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Matthew Macfadyen", "character": "Mr. Darcy", "id": 15576, "credit_id": "52fe43bbc3a36847f806b629", "cast_id": 2, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Jane Bennet", "id": 10882, "credit_id": "52fe43bbc3a36847f806b685", "cast_id": 41, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "Simon Woods", "character": "Mr. Bingley", "id": 36665, "credit_id": "52fe43bbc3a36847f806b689", "cast_id": 42, "profile_path": "/kU3NE79wuOPeIZ8hRKGUkDc203X.jpg", "order": 3}, {"name": "Donald Sutherland", "character": "Mr. Bennet", "id": 55636, "credit_id": "52fe43bbc3a36847f806b68d", "cast_id": 43, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 4}, {"name": "Brenda Blethyn", "character": "Mrs. Bennet", "id": 4154, "credit_id": "52fe43bbc3a36847f806b691", "cast_id": 44, "profile_path": "/wp0tIM7dGDmc9TOrm9fgL7JkzQQ.jpg", "order": 5}, {"name": "Jena Malone", "character": "Lydia Bennet", "id": 20089, "credit_id": "52fe43bbc3a36847f806b695", "cast_id": 45, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 6}, {"name": "Rupert Friend", "character": "Mr. Wickham", "id": 36669, "credit_id": "52fe43bbc3a36847f806b699", "cast_id": 46, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 7}, {"name": "Judi Dench", "character": "Lady Catherine de Bourg", "id": 5309, "credit_id": "52fe43bbc3a36847f806b69d", "cast_id": 47, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 8}, {"name": "Carey Mulligan", "character": "Kitty Bennet", "id": 36662, "credit_id": "52fe43bbc3a36847f806b6a1", "cast_id": 48, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 9}, {"name": "Talulah Riley", "character": "Mary Bennet", "id": 66441, "credit_id": "52fe43bbc3a36847f806b6a5", "cast_id": 49, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 10}, {"name": "Kelly Reilly", "character": "Caroline Bingley", "id": 17521, "credit_id": "52fe43bbc3a36847f806b6a9", "cast_id": 50, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 11}, {"name": "Tom Hollander", "character": "Mr. Collins", "id": 2441, "credit_id": "52fe43bbc3a36847f806b6ad", "cast_id": 51, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 12}, {"name": "Penelope Wilton", "character": "Mrs. Gardiner", "id": 1249, "credit_id": "52fe43bbc3a36847f806b6b1", "cast_id": 52, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 13}, {"name": "Claudie Blakley", "character": "Charlotte Lucas", "id": 36663, "credit_id": "52fe43bbc3a36847f806b6b5", "cast_id": 53, "profile_path": "/v02raCaKQpZTP9pULehv4JaXe11.jpg", "order": 14}, {"name": "Sinead Matthews", "character": "Betsy", "id": 36668, "credit_id": "52fe43bbc3a36847f806b6b9", "cast_id": 54, "profile_path": "/r1RPRMPbkgu4WMyysXTs75LEMiW.jpg", "order": 15}, {"name": "Peter Wight", "character": "Mr. Gardiner", "id": 17476, "credit_id": "52fe43bbc3a36847f806b6bd", "cast_id": 55, "profile_path": "/cjERr21Oo197GJGhPC9HHHhxqdd.jpg", "order": 16}, {"name": "Tamzin Merchant", "character": "Georgiana Darcy", "id": 36672, "credit_id": "52fe43bbc3a36847f806b6c1", "cast_id": 56, "profile_path": "/fFqq6Qj96iF3P1KwhN4JhmqRyi0.jpg", "order": 17}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe43bbc3a36847f806b62f", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 7.0, "runtime": 128}, "4349": {"poster_path": "/83eJJlHscLsi9DHsqsyk1hIXL83.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86509602, "overview": "A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.", "video": false, "id": 4349, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Kingdom", "tagline": "How do you stop an enemy who isn't afraid to die?", "vote_count": 176, "homepage": "http://www.thekingdommovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0431197", "adult": false, "backdrop_path": "/zGP9UgLsMUZUlZwR2s6wUk0Qgp5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Forward Pass", "id": 675}, {"name": "Relativity Media", "id": 7295}, {"name": "FilmWorks", "id": 7786}, {"name": "MDBF Zweite Filmgesellschaft", "id": 12246}], "release_date": "2007-08-22", "popularity": 0.735519124246918, "original_title": "The Kingdom", "budget": 70000000, "cast": [{"name": "Jamie Foxx", "character": "Ronald Fleury", "id": 134, "credit_id": "52fe43bbc3a36847f806b741", "cast_id": 11, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Janet Mayes", "id": 9278, "credit_id": "52fe43bbc3a36847f806b745", "cast_id": 12, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Grant Sykes", "id": 2955, "credit_id": "52fe43bbc3a36847f806b749", "cast_id": 13, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Jason Bateman", "character": "Adam Leavitt", "id": 23532, "credit_id": "52fe43bbc3a36847f806b74d", "cast_id": 14, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 3}, {"name": "Ali Suliman", "character": "Sergeant Haytham", "id": 762, "credit_id": "52fe43bbc3a36847f806b751", "cast_id": 15, "profile_path": "/orQk2ePFL6er4TrdhD0jZ9my3E3.jpg", "order": 4}, {"name": "Jeremy Piven", "character": "Damon Schmidt", "id": 12799, "credit_id": "52fe43bbc3a36847f806b755", "cast_id": 16, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 5}, {"name": "Ashraf Barhom", "character": "Colonel Faris Al Ghazi", "id": 766, "credit_id": "52fe43bcc3a36847f806b7ad", "cast_id": 31, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 6}, {"name": "Richard Jenkins", "character": "Robert Grace", "id": 28633, "credit_id": "52fe43bcc3a36847f806b7b1", "cast_id": 32, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 7}, {"name": "Tim McGraw", "character": "Aaron Jackson", "id": 74428, "credit_id": "52fe43bcc3a36847f806b7b5", "cast_id": 33, "profile_path": "/lotQwKKAUe3hI4EnmMySNpJGKGO.jpg", "order": 8}, {"name": "Kyle Chandler", "character": "Francis Manner", "id": 3497, "credit_id": "52fe43bcc3a36847f806b7b9", "cast_id": 34, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 9}, {"name": "Frances Fisher", "character": "Elaine Flowers", "id": 3713, "credit_id": "52fe43bcc3a36847f806b7bd", "cast_id": 35, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 10}, {"name": "Danny Huston", "character": "Gideon Young", "id": 6413, "credit_id": "52fe43bcc3a36847f806b7c1", "cast_id": 36, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 11}, {"name": "Kelly AuCoin", "character": "Ellis Leach", "id": 171727, "credit_id": "52fe43bcc3a36847f806b7c5", "cast_id": 37, "profile_path": "/cBCUVchfwm0gMjNsqZRCOVXLsnB.jpg", "order": 12}, {"name": "Anna Deavere Smith", "character": "Maricella Canavesio", "id": 63279, "credit_id": "52fe43bcc3a36847f806b7c9", "cast_id": 38, "profile_path": "/qxnkWqihNIu2FKL8UFxAfv9XfAW.jpg", "order": 13}, {"name": "Minka Kelly", "character": "Miss Ross", "id": 96625, "credit_id": "52fe43bcc3a36847f806b7cd", "cast_id": 39, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 14}, {"name": "Amy Hunter", "character": "Lyla Fleury", "id": 154011, "credit_id": "52fe43bcc3a36847f806b7d1", "cast_id": 40, "profile_path": "/cUGAMsM0otkiXFBFEvpKZISDDNl.jpg", "order": 15}, {"name": "Tj Burnett", "character": "Kevin Fleury", "id": 1128234, "credit_id": "52fe43bcc3a36847f806b7d5", "cast_id": 41, "profile_path": "/6pY5PHjMBarasa8HOmOASM3PAJ3.jpg", "order": 16}, {"name": "Omar Berdouni", "character": "Prince Ahmed Bin Khaled", "id": 122338, "credit_id": "52fe43bcc3a36847f806b7d9", "cast_id": 42, "profile_path": "/7xi3jrfet3wb1m2pjtlLNkgpZPt.jpg", "order": 17}, {"name": "Raad Rawi", "character": "Prince Thamer", "id": 73710, "credit_id": "52fe43bcc3a36847f806b7dd", "cast_id": 43, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 18}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe43bbc3a36847f806b719", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 6.2, "runtime": 110}, "45317": {"poster_path": "/f81GIoNQJQX92YCaTs8wjbT0h7b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129100000, "overview": "The Fighter, is a drama about boxer \"Irish\" Micky Ward's unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO'd by drugs and crime.", "video": false, "id": 45317, "genres": [{"id": 18, "name": "Drama"}], "title": "The Fighter", "tagline": "Every dream deserves a fighting chance.", "vote_count": 595, "homepage": "http://www.thefightermovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0964517", "adult": false, "backdrop_path": "/3ruexiChoctUhL51bWRt4IVJ5YG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2010-12-17", "popularity": 0.81740445471213, "original_title": "The Fighter", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Micky Ward", "id": 13240, "credit_id": "52fe46bcc3a36847f810f4f7", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Christian Bale", "character": "Dick \"Dicky\" Eklund", "id": 3894, "credit_id": "52fe46bcc3a36847f810f4fb", "cast_id": 2, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 1}, {"name": "Amy Adams", "character": "Charlene Fleming", "id": 9273, "credit_id": "52fe46bcc3a36847f810f4ff", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 2}, {"name": "Melissa Leo", "character": "Alice Eklund-Ward", "id": 6832, "credit_id": "52fe46bcc3a36847f810f503", "cast_id": 4, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 3}, {"name": "Mickey O'Keefe", "character": "Himself", "id": 1415263, "credit_id": "54bc0448c3a368389c00214d", "cast_id": 35, "profile_path": "/2bGi6tSX12BVy7p287dgRWpkUxv.jpg", "order": 4}, {"name": "Dendrie Taylor", "character": "Gail 'Red Dog' Eckland Carney", "id": 81462, "credit_id": "52fe46bcc3a36847f810f507", "cast_id": 6, "profile_path": "/mGFSoz0U4wkGGrt8ZFeEXnLOYr6.jpg", "order": 5}, {"name": "Jack McGee", "character": "George Ward", "id": 10489, "credit_id": "52fe46bcc3a36847f810f535", "cast_id": 14, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 6}, {"name": "Bianca Hunter", "character": "Cathy \"Pork\" Eklund", "id": 999736, "credit_id": "52fe46bcc3a36847f810f57b", "cast_id": 26, "profile_path": "/77YgfsOsYFdW0ZBtXeQbY8AfYvs.jpg", "order": 7}, {"name": "Erica McDermott", "character": "Cindy \"Tar\" Eklund", "id": 999737, "credit_id": "52fe46bcc3a36847f810f57f", "cast_id": 27, "profile_path": "/715Tt2EGYuN0f4ccso7t2prW7uu.jpg", "order": 8}, {"name": "Jenna Lamia", "character": "Sherri \"The Baby\" Ward", "id": 155595, "credit_id": "52fe46bcc3a36847f810f583", "cast_id": 28, "profile_path": "/jUOQXfJIxeE2Ug9PXpX9dFYpR58.jpg", "order": 9}, {"name": "Caitlin Dwyer", "character": "Kasie Ward", "id": 999771, "credit_id": "52fe46bcc3a36847f810f587", "cast_id": 29, "profile_path": "/k1FMQM4IWFJE0l0Ven1U71zrx3H.jpg", "order": 10}, {"name": "Chanty Sok", "character": "Karen", "id": 999772, "credit_id": "52fe46bcc3a36847f810f58b", "cast_id": 30, "profile_path": "/jRj1uUrPSsyQEzoTB4pHM6T8SVR.jpg", "order": 11}, {"name": "Jackson Nicoll", "character": "Little Dickie", "id": 1148130, "credit_id": "540b8a2a0e0a262b49002ef5", "cast_id": 32, "profile_path": "/2sEyIlZFLIzAgBUcL5dovdwQOUa.jpg", "order": 12}, {"name": "Frank Renzulli", "character": "Sal Lanano", "id": 1223731, "credit_id": "54bc04109251413635003658", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Sugar Ray Leonard", "character": "Himself", "id": 155766, "credit_id": "54bc04a99251411d6a009470", "cast_id": 36, "profile_path": "/60UrlxiWoaTjxPGI9OSUJ1c5vJf.jpg", "order": 14}, {"name": "Melissa McMeekin", "character": "'Little Alice' Eklund", "id": 1371551, "credit_id": "54e8c1f4c3a3684ea60017a5", "cast_id": 41, "profile_path": null, "order": 15}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe46bcc3a36847f810f50d", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 6.8, "runtime": 116}, "12556": {"poster_path": "/ojAN7GKwxCl2e2vSdmee43jZ6aw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102223269, "overview": "When notorious womanizer Connor Mead attends his brother Paul's wedding, he is forced to re-evaluate his behavior as he comes face-to-face with the ghosts of girlfriends past, present, and future, along with his deceased uncle. The experience changes his attitude and allows him to reconnect with his first and only love, Jenny.", "video": false, "id": 12556, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Ghosts of Girlfriends Past", "tagline": "You can't always run from your past.", "vote_count": 187, "homepage": "http://www.ghostsofgirlfriendspastmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0821640", "adult": false, "backdrop_path": "/A5uNeuVAIxJZ7AiHuqSKctTrfFC.jpg", "production_companies": [{"name": "Panther", "id": 50824}, {"name": "Jon Shestack Productions", "id": 10991}, {"name": "New Line Cinema", "id": 12}], "release_date": "2009-05-01", "popularity": 1.35931550683557, "original_title": "Ghosts of Girlfriends Past", "budget": 0, "cast": [{"name": "Matthew McConaughey", "character": "Connor Mead", "id": 10297, "credit_id": "52fe44fa9251416c750478b1", "cast_id": 4, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Jenny Perotti", "id": 9278, "credit_id": "52fe44fa9251416c750478b5", "cast_id": 5, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Michael Douglas", "character": "Uncle Wayne", "id": 3392, "credit_id": "52fe44fa9251416c750478b9", "cast_id": 6, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 2}, {"name": "Emma Stone", "character": "Allison Vandermeersh", "id": 54693, "credit_id": "52fe44fa9251416c750478bd", "cast_id": 7, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 3}, {"name": "Breckin Meyer", "character": "Paul", "id": 33654, "credit_id": "52fe44fa9251416c750478c1", "cast_id": 8, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 4}, {"name": "Lacey Chabert", "character": "Sandra", "id": 22082, "credit_id": "52fe44fa9251416c750478c5", "cast_id": 9, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 5}, {"name": "Robert Forster", "character": "Sergeant Volkom", "id": 5694, "credit_id": "52fe44fb9251416c750478c9", "cast_id": 10, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 6}, {"name": "Anne Archer", "character": "Vonda Volkom", "id": 10427, "credit_id": "52fe44fb9251416c750478cd", "cast_id": 11, "profile_path": "/zemspOk1FECjvjRWrH6modUgHiL.jpg", "order": 7}, {"name": "Daniel Sunjata", "character": "Brad", "id": 10582, "credit_id": "52fe44fb9251416c750478d1", "cast_id": 12, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 8}, {"name": "Noureen DeWulf", "character": "Melanie", "id": 66524, "credit_id": "52fe44fb9251416c750478d5", "cast_id": 13, "profile_path": "/kamvMaDxCe2qdQvX5IWcyYp9np6.jpg", "order": 9}, {"name": "Rachel Boston", "character": "Deena the Bridesmaid", "id": 96624, "credit_id": "552525e6c3a3687dfe0015cd", "cast_id": 14, "profile_path": "/gX5GGFYPELzfDwSsy6W7QpKDj87.jpg", "order": 10}, {"name": "Camille Guaty", "character": "Donna the Bridesmaid", "id": 81106, "credit_id": "552525f3c3a3687e03001381", "cast_id": 15, "profile_path": "/clscQjYVHl6JmXa4sqZFFeixrIy.jpg", "order": 11}, {"name": "Amanda Walsh", "character": "Denice the Bridesmaid", "id": 76416, "credit_id": "5525260292514166c1005022", "cast_id": 16, "profile_path": "/agVCKioWuYDNVoZakLyxVt0VZZX.jpg", "order": 12}, {"name": "Emily Baldoni", "character": "Nadja", "id": 209200, "credit_id": "55252614c3a3687dfe0015d0", "cast_id": 17, "profile_path": "/qayfOsHfyE1RGW3zcEIniLwocl4.jpg", "order": 13}, {"name": "Catherine Haena Kim", "character": "Charlece", "id": 1339929, "credit_id": "55252621c3a3687e08001433", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe44fa9251416c750478a1", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.5, "runtime": 100}, "37135": {"poster_path": "/tWFubl9q3quYuYXBGypXXCNLE00.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family, but on an expedition Jane Porter is rescued by Tarzan. He then finds out that he's human. Now Tarzan must make the decision as to which family he should belong to...", "video": false, "id": 37135, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Tarzan", "tagline": "An immortal legend. As you've only imagined.", "vote_count": 376, "homepage": "http://disneydvd.disney.go.com/tarzanr-special-edition.html", "belongs_to_collection": {"backdrop_path": "/esBiZuIJyxr6sZL0OqkILcOkoUX.jpg", "poster_path": "/A7ox3LFDn87561sddxe2nZfpahX.jpg", "id": 106768, "name": "Tarzan (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120855", "adult": false, "backdrop_path": "/yAdUc0v84Ok28ico6SP820wjZMz.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1999-06-18", "popularity": 1.28904612251626, "original_title": "Tarzan", "budget": 0, "cast": [{"name": "Tony Goldwyn", "character": "Tarzan", "id": 3417, "credit_id": "52fe462c9251416c9104baa9", "cast_id": 9, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 0}, {"name": "Glenn Close", "character": "Kala", "id": 515, "credit_id": "52fe462c9251416c9104baa5", "cast_id": 8, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 1}, {"name": "Minnie Driver", "character": "Jane Porter", "id": 6613, "credit_id": "52fe462c9251416c9104baad", "cast_id": 10, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 2}, {"name": "Brian Blessed", "character": "Mr. Clayton, the Gorilla Hunter", "id": 8318, "credit_id": "52fe462c9251416c9104bab1", "cast_id": 11, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 3}, {"name": "Nigel Hawthorne", "character": "Professor Archimedes Q. Porter", "id": 15788, "credit_id": "52fe462c9251416c9104bab5", "cast_id": 12, "profile_path": "/66PJ2LGSowVC1qPR4QIE62PnBd5.jpg", "order": 4}, {"name": "Lance Henriksen", "character": "Kerchak, the Gorilla King", "id": 2714, "credit_id": "52fe462c9251416c9104ba8d", "cast_id": 2, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 5}, {"name": "Wayne Knight", "character": "Adult Tantor", "id": 4201, "credit_id": "52fe462c9251416c9104ba91", "cast_id": 3, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 6}, {"name": "Alex D. Linz", "character": "Young Tarzan", "id": 15789, "credit_id": "52fe462c9251416c9104ba95", "cast_id": 4, "profile_path": "/fkFBjpfC3Wm97SozMrIERc01uyt.jpg", "order": 7}, {"name": "Rosie O'Donnell", "character": "Young Terk / Adult Terk", "id": 12929, "credit_id": "52fe462c9251416c9104ba99", "cast_id": 5, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 8}, {"name": "Taylor Dempsey", "character": "Young Tantor", "id": 116869, "credit_id": "52fe462c9251416c9104ba9d", "cast_id": 6, "profile_path": null, "order": 9}, {"name": "Jason Marsden", "character": "Additional Voices", "id": 61983, "credit_id": "52fe462c9251416c9104baa1", "cast_id": 7, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 10}], "directors": [{"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c9104babb", "profile_path": null, "id": 15774}, {"name": "Kevin Lima", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c9104bac1", "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "id": 15775}], "vote_average": 6.6, "runtime": 88}, "37136": {"poster_path": "/25myuJy76tha72ogkfJvBgwJljo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78756177, "overview": "When the incompetent Officer Frank Drebin seeks the ruthless killer of his partner, he stumbles upon an attempt to assassinate Queen Elizabeth.", "video": false, "id": 37136, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Naked Gun: From the Files of Police Squad!", "tagline": "The Villain. Even Mother Teresa wanted him dead.", "vote_count": 187, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tqhBZVrozBXbD6VubSBQsCfI0YD.jpg", "poster_path": "/qTJ2fbdU2Ru4OGZghQB8MYofkrN.jpg", "id": 37139, "name": "Naked Gun Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095705", "adult": false, "backdrop_path": "/yacW7fNWrqTsAdc9Qel0mjEuQuI.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-12-02", "popularity": 0.989333078114643, "original_title": "The Naked Gun: From the Files of Police Squad!", "budget": 0, "cast": [{"name": "Leslie Nielsen", "character": "Lt. Frank Drebin", "id": 7633, "credit_id": "52fe462c9251416c9104bb0d", "cast_id": 1, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 0}, {"name": "Priscilla Presley", "character": "Jane Spencer", "id": 12949, "credit_id": "52fe462c9251416c9104bb11", "cast_id": 2, "profile_path": "/6YMsGky3MpDqubnfi4HqsTnMge.jpg", "order": 1}, {"name": "Ricardo Montalban", "character": "Vincent Ludwig", "id": 1793, "credit_id": "52fe462c9251416c9104bb15", "cast_id": 3, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 2}, {"name": "George Kennedy", "character": "Capt. Ed Hocken", "id": 12950, "credit_id": "52fe462c9251416c9104bb19", "cast_id": 4, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 3}, {"name": "O.J. Simpson", "character": "Det. Nordberg", "id": 12951, "credit_id": "52fe462c9251416c9104bb1d", "cast_id": 5, "profile_path": "/fOXv3fPxEimuq1pJmnxEMRjpqBg.jpg", "order": 4}, {"name": "Susan Beaubian", "character": "Mrs. Nordberg", "id": 162869, "credit_id": "52fe462c9251416c9104bb6f", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Nancy Marchand", "character": "Mayor", "id": 12957, "credit_id": "52fe462c9251416c9104bb73", "cast_id": 20, "profile_path": "/d9DASq3XmUsyfzSrATbAAOY7yn1.jpg", "order": 6}, {"name": "Raye Birk", "character": "Pahpshmir", "id": 13422, "credit_id": "52fe462c9251416c9104bb77", "cast_id": 21, "profile_path": "/cYzERLd4HXuQibVztZxQguAfHjF.jpg", "order": 7}, {"name": "Jeannette Charles", "character": "Queen Elizabeth II", "id": 218220, "credit_id": "52fe462c9251416c9104bb7b", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Ed Williams", "character": "Ted Olsen", "id": 122592, "credit_id": "52fe462c9251416c9104bb7f", "cast_id": 23, "profile_path": "/tX264d1o9lwOqPl3ENblO3Jyelb.jpg", "order": 9}, {"name": "Tiny Ron Taylor", "character": "Al", "id": 98579, "credit_id": "52fe462c9251416c9104bb83", "cast_id": 24, "profile_path": "/wSA3KPLbETH9JwyJ8ZvCakb4n8h.jpg", "order": 10}, {"name": "\"Weird Al\" Yankovic", "character": "Himself", "id": 71041, "credit_id": "52fe462c9251416c9104bb87", "cast_id": 25, "profile_path": "/jlJef4Sv3y1LIOfFFD7JaIQlGFJ.jpg", "order": 11}, {"name": "Tom Dugan", "character": "Drug Dealer #2", "id": 1144361, "credit_id": "52fe462c9251416c9104bb8b", "cast_id": 26, "profile_path": "/obQfb3EhWnbxEYK7S0bLZw6oMJ6.jpg", "order": 12}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "535cfdd90e0a264feb004ad4", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 6.7, "runtime": 85}, "37137": {"poster_path": "/ipaBquwE6dkKHRS3vVrXw5Xcf9u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Bumbling cop Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business. As always, the jokes (and sight gags) fly like gunfire!", "video": false, "id": 37137, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Naked Gun 2\u00bd: The Smell of Fear", "tagline": "If you see only one movie this year...you ought to get out more often", "vote_count": 95, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tqhBZVrozBXbD6VubSBQsCfI0YD.jpg", "poster_path": "/qTJ2fbdU2Ru4OGZghQB8MYofkrN.jpg", "id": 37139, "name": "Naked Gun Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102510", "adult": false, "backdrop_path": "/HbXkK9swYbBiRL4KhvyA97TOqR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1991-06-28", "popularity": 0.823668689060022, "original_title": "The Naked Gun 2\u00bd: The Smell of Fear", "budget": 23000000, "cast": [{"name": "Leslie Nielsen", "character": "Frank Drebin", "id": 7633, "credit_id": "52fe462c9251416c9104bbb7", "cast_id": 7, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 0}, {"name": "Priscilla Presley", "character": "Jane Spencer", "id": 12949, "credit_id": "52fe462c9251416c9104bba7", "cast_id": 3, "profile_path": "/6YMsGky3MpDqubnfi4HqsTnMge.jpg", "order": 1}, {"name": "George Kennedy", "character": "Captain Ed Hocken", "id": 12950, "credit_id": "52fe462c9251416c9104bbab", "cast_id": 4, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 2}, {"name": "O.J. Simpson", "character": "Nordberg", "id": 12951, "credit_id": "52fe462c9251416c9104bbaf", "cast_id": 5, "profile_path": "/fOXv3fPxEimuq1pJmnxEMRjpqBg.jpg", "order": 3}, {"name": "Robert Goulet", "character": "Quentin Hapsburg", "id": 128621, "credit_id": "52fe462c9251416c9104bbb3", "cast_id": 6, "profile_path": "/776KzwV8l62Wz4gGWnifTUtf8A2.jpg", "order": 4}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c9104bba3", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 6.9, "runtime": 85}, "12569": {"poster_path": "/j13qLGBu3WBbyPPTfWAHj8jucQI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10848783, "overview": "The owner of a factory that produces flavor extracts, Joel Reynold seems to have it all, but really doesn't. What's missing is sexual attention from his wife, Suzie. Joel hatches a convoluted plan to get Suzie to cheat on him, thereby clearing the way for Joel to have an affair with Cindy, an employee. But what Joel doesn't know is that Cindy is a sociopathic con artist, and a freak workplace accident clears the way for her to ruin Joel forever.", "video": false, "id": 12569, "genres": [{"id": 35, "name": "Comedy"}], "title": "Extract", "tagline": "Sticking it to the man has never looked so good.", "vote_count": 50, "homepage": "http://www.extract-the-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1225822", "adult": false, "backdrop_path": "/6urmjGWJx08zVyXPmrDIUVOYGob.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2009-09-03", "popularity": 0.63354881496776, "original_title": "Extract", "budget": 8000000, "cast": [{"name": "Jason Bateman", "character": "Joel", "id": 23532, "credit_id": "52fe44fc9251416c75047ceb", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Cindy", "id": 18973, "credit_id": "52fe44fc9251416c75047d01", "cast_id": 10, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Kristen Wiig", "character": "Suzie", "id": 41091, "credit_id": "52fe44fc9251416c75047cef", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 2}, {"name": "Ben Affleck", "character": "Dean", "id": 880, "credit_id": "52fe44fc9251416c75047ce3", "cast_id": 2, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "Brian", "id": 18999, "credit_id": "52fe44fc9251416c75047d09", "cast_id": 12, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "Clifton Collins, Jr.", "character": "Step", "id": 5365, "credit_id": "52fe44fc9251416c75047ce7", "cast_id": 3, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 5}, {"name": "Dustin Milligan", "character": "Brad", "id": 53117, "credit_id": "52fe44fc9251416c75047d11", "cast_id": 14, "profile_path": "/yn0g5VpGYwuTcIl9BK5gc8bWXmg.jpg", "order": 6}, {"name": "David Koechner", "character": "Nathan", "id": 28638, "credit_id": "52fe44fc9251416c75047cf3", "cast_id": 7, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 7}, {"name": "Beth Grant", "character": "Mary", "id": 5151, "credit_id": "52fe44fc9251416c75047d15", "cast_id": 15, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 8}, {"name": "T.J. Miller", "character": "Rory", "id": 51990, "credit_id": "52fe44fc9251416c75047d0d", "cast_id": 13, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 9}, {"name": "Javier Guti\u00e9rrez", "character": "Hector", "id": 19024, "credit_id": "52fe44fc9251416c75047d19", "cast_id": 16, "profile_path": "/qy8qEkPgnTFvdfXG2utW4feOwmF.jpg", "order": 10}, {"name": "Lidia Porto", "character": "Gabriella", "id": 180527, "credit_id": "52fe44fc9251416c75047d1d", "cast_id": 17, "profile_path": "/pf93ztgaIlecCLhLd0t4yId8Dvb.jpg", "order": 10}, {"name": "Gene Simmons", "character": "Joe Adler", "id": 57756, "credit_id": "52fe44fc9251416c75047cf7", "cast_id": 8, "profile_path": "/6JvY3oA7T8Q91VIoPyONK2ge9wo.jpg", "order": 12}, {"name": "Matt Schulze", "character": "Willie", "id": 31841, "credit_id": "52fe44fc9251416c75047d05", "cast_id": 11, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 13}, {"name": "Lamberto Gutierrez", "character": "Victor", "id": 1005829, "credit_id": "52fe44fc9251416c75047d21", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Brent Briscoe", "character": "Phil", "id": 15011, "credit_id": "52fe44fc9251416c75047d25", "cast_id": 19, "profile_path": "/7ws22WEvxt6cvMDyijZOdf9AuiS.jpg", "order": 15}], "directors": [{"name": "Mike Judge", "department": "Directing", "job": "Director", "credit_id": "52fe44fc9251416c75047cdf", "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "id": 17403}], "vote_average": 6.1, "runtime": 92}, "4379": {"poster_path": "/5GSLdahlqJX1Mb6l9vJI6tXQGaS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154749918, "overview": "Office temp Charlotte Cantilini thinks she's found Mr. Right when she starts dating gorgeous surgeon Dr. Kevin Fields. But there's a problem standing in the way of everlasting bliss: Kevin's overbearing and controlling mother, Viola. Fearing she'll lose her son's affections forever, Viola decides to break up the happy couple by becoming the world's worst mother-in-law.", "video": false, "id": 4379, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Monster-in-Law", "tagline": "This relationship is going to be a real mother.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369735", "adult": false, "backdrop_path": "/y7fi2vTh5tbEYnmsWdA7Xw2pXlY.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Bender-Spink Inc.", "id": 131}, {"name": "Avery Pix", "id": 1565}, {"name": "Avery Productions", "id": 1622}], "release_date": "2005-05-13", "popularity": 0.974575921098258, "original_title": "Monster-in-Law", "budget": 43000000, "cast": [{"name": "Jennifer Lopez", "character": "Charlie Cantillini", "id": 16866, "credit_id": "52fe43bdc3a36847f806c131", "cast_id": 16, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Jane Fonda", "character": "Viola Fields", "id": 6352, "credit_id": "52fe43bdc3a36847f806c135", "cast_id": 17, "profile_path": "/t4kIxZrAhxnMyQP8BZFmpPAot0z.jpg", "order": 1}, {"name": "Michael Vartan", "character": "Kevin Fields", "id": 15424, "credit_id": "52fe43bdc3a36847f806c139", "cast_id": 18, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 2}, {"name": "Wanda Sykes", "character": "Ruby", "id": 27102, "credit_id": "52fe43bdc3a36847f806c13d", "cast_id": 19, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 3}, {"name": "Adam Scott", "character": "Remy", "id": 36801, "credit_id": "52fe43bdc3a36847f806c141", "cast_id": 20, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Monet Mazur", "character": "Fiona", "id": 34844, "credit_id": "52fe43bdc3a36847f806c145", "cast_id": 21, "profile_path": "/lvLC6Sjt8pETC3La8rGvhyYWSx0.jpg", "order": 5}, {"name": "Annie Parisse", "character": "Morgan", "id": 24291, "credit_id": "52fe43bdc3a36847f806c149", "cast_id": 22, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 6}, {"name": "Will Arnett", "character": "Kit", "id": 21200, "credit_id": "52fe43bdc3a36847f806c14d", "cast_id": 23, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 7}, {"name": "Elaine Stritch", "character": "Gertrude", "id": 36802, "credit_id": "52fe43bdc3a36847f806c151", "cast_id": 24, "profile_path": "/4QGJE8HwbJXdb7MrsINR8zJtDzp.jpg", "order": 8}, {"name": "Stephen Dunham", "character": "Dr. Chamberlain", "id": 36803, "credit_id": "52fe43bdc3a36847f806c155", "cast_id": 25, "profile_path": "/6xzvLVJLXKgT7oaGoB448WNml9G.jpg", "order": 9}, {"name": "Harriet Sansom Harris", "character": "Therapist", "id": 538, "credit_id": "52fe43bdc3a36847f806c159", "cast_id": 26, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 10}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe43bdc3a36847f806c0d9", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 5.9, "runtime": 101}, "4380": {"poster_path": "/ntKMVXdb1tVr4q3sT9vJOV9wnfN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170128460, "overview": "A romantic comedy where a bored, overworked Estate Lawyer, upon first sight of a beautiful instructor, signs up for ballroom dancing lessons.", "video": false, "id": 4380, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Shall We Dance?", "tagline": "Step out of the ordinary", "vote_count": 69, "homepage": "http://www.miramax.com/shallwedance/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0358135", "adult": false, "backdrop_path": "/sBvFyOlfcD5B2126ewELx67Wwmi.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2004-10-15", "popularity": 0.731292654589958, "original_title": "Shall We Dance?", "budget": 50000000, "cast": [{"name": "Richard Gere", "character": "John Clark", "id": 1205, "credit_id": "52fe43bec3a36847f806c1e9", "cast_id": 14, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Paulina", "id": 16866, "credit_id": "52fe43bec3a36847f806c1ed", "cast_id": 15, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Beverly Clark", "id": 4038, "credit_id": "52fe43bec3a36847f806c1f1", "cast_id": 16, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Lisa Ann Walter", "character": "Bobbie", "id": 4494, "credit_id": "52fe43bec3a36847f806c1f5", "cast_id": 17, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 3}, {"name": "Stanley Tucci", "character": "Link", "id": 2283, "credit_id": "52fe43bec3a36847f806c1f9", "cast_id": 18, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 4}, {"name": "Anita Gillette", "character": "Miss Mitzi", "id": 20974, "credit_id": "52fe43bec3a36847f806c1fd", "cast_id": 19, "profile_path": "/d9gp4NaErg1EUheZHbqX00G75Tx.jpg", "order": 5}, {"name": "Bobby Cannavale", "character": "Chic", "id": 21127, "credit_id": "52fe43bec3a36847f806c201", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 6}, {"name": "Omar Benson Miller", "character": "Vern", "id": 334, "credit_id": "52fe43bec3a36847f806c205", "cast_id": 21, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 7}, {"name": "Tamara Hope", "character": "Jenna Clark", "id": 36810, "credit_id": "52fe43bec3a36847f806c209", "cast_id": 22, "profile_path": "/amCIcZJ7RoJP5x9qlqMgZanYqTl.jpg", "order": 8}, {"name": "Stark Sands", "character": "Evan Clark", "id": 33532, "credit_id": "52fe43bec3a36847f806c20d", "cast_id": 23, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 9}, {"name": "Richard Jenkins", "character": "Devine", "id": 28633, "credit_id": "52fe43bec3a36847f806c211", "cast_id": 24, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 10}, {"name": "Nick Cannon", "character": "Scott", "id": 36811, "credit_id": "52fe43bec3a36847f806c215", "cast_id": 25, "profile_path": "/meQ69JTifJ8nGrcvZUczWcoeryM.jpg", "order": 11}, {"name": "Sarah Lafleur", "character": "Carolyn", "id": 36812, "credit_id": "52fe43bec3a36847f806c219", "cast_id": 26, "profile_path": "/8psuqJIFpDCMJQNdTT5r23yDGUA.jpg", "order": 12}, {"name": "Onalee Ames", "character": "Diane", "id": 36813, "credit_id": "52fe43bec3a36847f806c21d", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Diana Salvatore", "character": "Tina", "id": 36814, "credit_id": "52fe43bec3a36847f806c221", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Daphne Korol", "character": "Daphne", "id": 36815, "credit_id": "52fe43bec3a36847f806c225", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "David Sparrow", "character": "Louis", "id": 36816, "credit_id": "52fe43bec3a36847f806c229", "cast_id": 30, "profile_path": "/wpv5m3TePP3ju8lrugwUquPDaON.jpg", "order": 16}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe43bdc3a36847f806c19d", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 5.8, "runtime": 107}, "12573": {"poster_path": "/w1QO8DsvwUNhYALJPFxtDSarNIO.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A Serious Man is the story of an ordinary man's search for clarity in a universe where Jefferson Airplane is on the radio and F-Troop is on TV. It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.", "video": false, "id": 12573, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "A Serious Man", "tagline": "...seriously!", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "yi", "name": ""}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1019452", "adult": false, "backdrop_path": "/5lgpipJdhY09OpMwaMxofTjsoQI.jpg", "production_companies": [{"name": "Mike Zoss Productions", "id": 2092}, {"name": "Focus Features", "id": 10146}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2009-10-02", "popularity": 1.00754398441667, "original_title": "A Serious Man", "budget": 7000000, "cast": [{"name": "Michael Stuhlbarg", "character": "Larry Gopnik", "id": 72873, "credit_id": "52fe44fd9251416c75047e97", "cast_id": 1, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 0}, {"name": "Richard Kind", "character": "Uncle Arthur", "id": 21125, "credit_id": "52fe44fd9251416c75047e9b", "cast_id": 2, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 1}, {"name": "Fred Melamed", "character": "Sy Ableman", "id": 105303, "credit_id": "52fe44fd9251416c75047eab", "cast_id": 5, "profile_path": "/uU6e0X8A82tkG8PQFO1hH2PMz4W.jpg", "order": 2}, {"name": "Sari Lennick", "character": "Judith Gopnik", "id": 105304, "credit_id": "52fe44fd9251416c75047eaf", "cast_id": 6, "profile_path": "/5iUN292JxA4mWp2V3yG8O8VC2zj.jpg", "order": 3}, {"name": "Aaron Wolff", "character": "Danny Gopnik", "id": 105305, "credit_id": "52fe44fd9251416c75047eb3", "cast_id": 7, "profile_path": "/omwo1ACle77oKCO8ttXHiKjmQxR.jpg", "order": 4}, {"name": "Jessica McManus", "character": "Sarah Gopnik", "id": 105306, "credit_id": "52fe44fd9251416c75047eb7", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Adam Arkin", "character": "Don Milgram", "id": 55257, "credit_id": "52fe44fd9251416c75047ec7", "cast_id": 11, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 6}, {"name": "George Wyner", "character": "Rabbi Nachter", "id": 14669, "credit_id": "52fe44fd9251416c75047ecb", "cast_id": 12, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 7}, {"name": "Peter Breitmayer", "character": "Mr. Brandt", "id": 159454, "credit_id": "52fe44fd9251416c75047f1d", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Brent Braunschweig", "character": "Mitch Brandt", "id": 1015643, "credit_id": "52fe44fd9251416c75047f21", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "David Kang", "character": "Clive Park", "id": 965140, "credit_id": "52fe44fd9251416c75047f25", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Benjamin Portnoe", "character": "Danny's Reefer Buddy", "id": 1015644, "credit_id": "52fe44fd9251416c75047f29", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Jon Kaminski Jr.", "character": "Mike Fagle", "id": 1118717, "credit_id": "52fe44fd9251416c75047f2d", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Ari Hoptman", "character": "Arlen Finkle", "id": 1118718, "credit_id": "52fe44fd9251416c75047f31", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Alan Mandell", "character": "Rabbi Marshak", "id": 36546, "credit_id": "52fe44fd9251416c75047f35", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Amy Landecker", "character": "Mrs. Samsky", "id": 357551, "credit_id": "52fe44fd9251416c75047f39", "cast_id": 33, "profile_path": "/fkieXo1IqcqEIDCGtY8nkiuRwzf.jpg", "order": 15}, {"name": "Simon Helberg", "character": "", "id": 53863, "credit_id": "54cc01889251413e6400019d", "cast_id": 34, "profile_path": "/zic1gEH1qEMHhbm5Vxwp9J2XrAO.jpg", "order": 16}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047ea1", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047ea7", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.7, "runtime": 105}, "20766": {"poster_path": "/o34ARieL8kqGzcMnSksJ6OGPRK2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27685103, "overview": "A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don't know what, if anything, awaits them there.", "video": false, "id": 20766, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "The Road", "tagline": "In a moment the world changed forever.", "vote_count": 307, "homepage": "http://www.theroad-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0898367", "adult": false, "backdrop_path": "/pUNlJ6jzDsgUvPjJeFfsyyOSZJx.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "2929 Productions", "id": 846}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Chockstone Pictures", "id": 13649}], "release_date": "2009-11-25", "popularity": 2.17914510894594, "original_title": "The Road", "budget": 32000000, "cast": [{"name": "Viggo Mortensen", "character": "Father", "id": 110, "credit_id": "52fe43f8c3a368484e008959", "cast_id": 2, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Kodi Smit-McPhee", "character": "Boy", "id": 113505, "credit_id": "52fe43f8c3a368484e008975", "cast_id": 7, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Mother", "id": 6885, "credit_id": "52fe43f8c3a368484e008955", "cast_id": 1, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Old Man - Eli", "id": 3087, "credit_id": "52fe43f8c3a368484e008979", "cast_id": 8, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "Guy Pearce", "character": "Veteran", "id": 529, "credit_id": "52fe43f8c3a368484e00897d", "cast_id": 9, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 4}, {"name": "Molly Parker", "character": "Friendly Woman", "id": 27125, "credit_id": "52fe43f8c3a368484e008981", "cast_id": 10, "profile_path": "/4IgmsXs2iu8nRdaKU0R5TOAeKeT.jpg", "order": 5}, {"name": "Michael Kenneth Williams", "character": "The Thief (as Michael Kenneth Williams)", "id": 39390, "credit_id": "52fe43f8c3a368484e008985", "cast_id": 11, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 6}, {"name": "Garret Dillahunt", "character": "Gang Member", "id": 39520, "credit_id": "52fe43f8c3a368484e008989", "cast_id": 12, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 7}, {"name": "Bob Jennings", "character": "Bearded Man", "id": 113506, "credit_id": "52fe43f9c3a368484e00898d", "cast_id": 13, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 8}, {"name": "Agnes Herrmann", "character": "Archer's Woman", "id": 1297771, "credit_id": "53123580925141102a00282d", "cast_id": 16, "profile_path": "/nfk6aeXa2Qgc9oVhPWcCTLVyJo2.jpg", "order": 9}, {"name": "Buddy Sosthand", "character": "Archer", "id": 963745, "credit_id": "531234bf9251411008002939", "cast_id": 15, "profile_path": "/zxrCjyAAkMF8NjoxaVw2Dp6zjtv.jpg", "order": 10}, {"name": "Kirk Brown", "character": "Bearded Face", "id": 1297772, "credit_id": "531235b59251411035002829", "cast_id": 17, "profile_path": "/2KRKphpUU3jcQ5O44pdecwa1fu8.jpg", "order": 11}, {"name": "Jack Erdie", "character": "Bearded Man #2", "id": 991960, "credit_id": "531236649251410ff10027ad", "cast_id": 18, "profile_path": "/sFFUnfeU1bwdEc4XggtrfmKbi0r.jpg", "order": 12}, {"name": "David August Lindauer", "character": "Man On Mattress", "id": 1297777, "credit_id": "531238279251410fe600281c", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Gina Preciado", "character": "Well Fed Woman", "id": 1297776, "credit_id": "53123799925141100800297b", "cast_id": 19, "profile_path": "/jCFr1Mo17tDYnlFPqwKoF8lUUzB.jpg", "order": 14}], "directors": [{"name": "John Hillcoat", "department": "Directing", "job": "Director", "credit_id": "52fe43f8c3a368484e00895f", "profile_path": "/4VqHE3mBPSUpR2ep7vpx27arFiY.jpg", "id": 53333}], "vote_average": 6.7, "runtime": 111}, "18480": {"poster_path": "/tqvApLFIzYBr8MIqi22VSIilHN7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Flamboyantly gay Austrian television reporter Bruno (Sacha Baron Cohen) stirs up trouble with unsuspecting guests and large crowds through brutally frank interviews and painfully hilarious public displays of homosexuality.", "video": false, "id": 18480, "genres": [{"id": 35, "name": "Comedy"}], "title": "Br\u00fcno", "tagline": "Borat was so 2006", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0889583", "adult": false, "backdrop_path": "/HsE93JXe40TI2AkJP1e243wEGB.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2009-07-10", "popularity": 0.584114196980708, "original_title": "Br\u00fcno", "budget": 42000000, "cast": [{"name": "Sacha Baron Cohen", "character": "Bruno", "id": 6730, "credit_id": "52fe477f9251416c7509b9eb", "cast_id": 1, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Richard Bey", "character": "Himself", "id": 83247, "credit_id": "52fe477f9251416c7509b9f5", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Ron Paul", "character": "Himself", "id": 83248, "credit_id": "52fe477f9251416c7509b9f9", "cast_id": 4, "profile_path": "/200pMJ8LACsWCHVAxSoKfXqWFWa.jpg", "order": 2}, {"name": "Gustaf Hammarsten", "character": "Lutz", "id": 11040, "credit_id": "52fe477f9251416c7509ba09", "cast_id": 8, "profile_path": "/zG4x2kuRTS3bx5l4cATSk98WMof.jpg", "order": 3}, {"name": "Clifford Ba\u00f1agale", "character": "Diesel", "id": 232055, "credit_id": "52fe477f9251416c7509ba0d", "cast_id": 9, "profile_path": "/5fne6HIsxR4bLEq8b9fatDWnSWN.jpg", "order": 4}, {"name": "Josh Meyers", "character": "Kookus", "id": 124471, "credit_id": "5369126b0e0a2647d1008175", "cast_id": 11, "profile_path": "/5bqoQVKHCtDz9MYZ3pcjy5jD28Y.jpg", "order": 5}, {"name": "Chris Martin", "character": "Himself", "id": 81129, "credit_id": "5369127d0e0a2647cb00847f", "cast_id": 12, "profile_path": "/w4UAGk1iG8KcQbxqQ8au3ewYLEw.jpg", "order": 6}, {"name": "Elton John", "character": "Himself", "id": 11370, "credit_id": "536912860e0a2647db0082e4", "cast_id": 13, "profile_path": "/iWFTFSGZn7JwEHt7ZKxnMq9ycPy.jpg", "order": 7}, {"name": "Slash", "character": "Himself", "id": 92706, "credit_id": "5369128d0e0a2647cb008484", "cast_id": 14, "profile_path": "/5hhD7gG5XWvGa5BZ6vKNitX1J3V.jpg", "order": 8}, {"name": "Bono", "character": "Himself", "id": 33684, "credit_id": "536912970e0a2647c4008675", "cast_id": 15, "profile_path": "/pj3JYEJlVkNV91fxDHkgWKhDdot.jpg", "order": 9}], "directors": [{"name": "Larry Charles", "department": "Directing", "job": "Director", "credit_id": "52fe477f9251416c7509b9f1", "profile_path": "/fg42iXWfuIeRVk4NFNWvWJf4hst.jpg", "id": 6767}], "vote_average": 5.3, "runtime": 83}, "225574": {"poster_path": "/ifgEHE1ortukpBF6wh03HCuctdr.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222809600, "overview": "Bill Marks is a burned-out veteran of the Air Marshals service. He views the assignment not as a life-saving duty, but as a desk job in the sky. However, today's flight will be no routine trip. Shortly into the transatlantic journey from New York to London, he receives a series of mysterious text messages ordering him to have the government transfer $150 million into a secret account, or a passenger will die every 20 minutes.", "video": false, "id": 225574, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Non-Stop", "tagline": "The hijacking was just the beginning.", "vote_count": 889, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2024469", "adult": false, "backdrop_path": "/2pcByp1prR7w6KWvnukIsdXdIwS.jpg", "production_companies": [{"name": "LOVEFiLM International", "id": 26387}, {"name": "StudioCanal", "id": 694}, {"name": "Anton Capital Entertainment (ACE)", "id": 20664}, {"name": "Silver Pictures", "id": 1885}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}], "release_date": "2014-02-28", "popularity": 2.30894522979833, "original_title": "Non-Stop", "budget": 50000000, "cast": [{"name": "Liam Neeson", "character": "Bill Marks", "id": 3896, "credit_id": "52fe4e629251416c75154b4d", "cast_id": 11, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Jen Summers", "id": 1231, "credit_id": "52fe4e629251416c75154b49", "cast_id": 10, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Anson Mount", "character": "Jack Hammond", "id": 56675, "credit_id": "52fe4e629251416c75154b45", "cast_id": 9, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 2}, {"name": "Michelle Dockery", "character": "Nancy", "id": 70904, "credit_id": "52fe4e629251416c75154b51", "cast_id": 12, "profile_path": "/lbXBpE9jUITuDWzI9YPOR6Ej1eq.jpg", "order": 3}, {"name": "Bar Paly", "character": "Iris Marianne", "id": 963117, "credit_id": "52fe4e629251416c75154b55", "cast_id": 13, "profile_path": "/e3BkVd6wXrJvTlBfoosuGkAKSTp.jpg", "order": 4}, {"name": "Corey Stoll", "character": "Austin", "id": 74541, "credit_id": "52fe4e629251416c75154b59", "cast_id": 14, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 5}, {"name": "Scoot McNairy", "character": "Tom Bowen", "id": 59233, "credit_id": "52fe4e629251416c75154b5d", "cast_id": 15, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 6}, {"name": "Linus Roache", "character": "David McMillan", "id": 3900, "credit_id": "52fe4e629251416c75154b61", "cast_id": 16, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 7}, {"name": "Jon Abrahams", "character": "David Norton", "id": 17866, "credit_id": "52fe4e639251416c75154b65", "cast_id": 17, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 8}, {"name": "Lupita Nyong'o", "character": "Gwen", "id": 1267329, "credit_id": "52fe4e639251416c75154b69", "cast_id": 18, "profile_path": "/y3p0OMzIuAmcNt700RayK5A0k6t.jpg", "order": 9}, {"name": "Omar Metwally", "character": "Dr. Fahim Nasir", "id": 41309, "credit_id": "5324e0d09251411544000d7e", "cast_id": 19, "profile_path": "/dtXSRiNpZRpfsMNPgn5EhOA6o70.jpg", "order": 10}, {"name": "Jason Butler Harner", "character": "Kyle Rice", "id": 142294, "credit_id": "5324e0ea9251411544000d82", "cast_id": 20, "profile_path": "/nKGxvOnWjOJl9fCnLQuvAkWj3cX.jpg", "order": 11}, {"name": "Quinn McColgan", "character": "Becca", "id": 1009160, "credit_id": "5324e1069251411544000d85", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Corey Hawkins", "character": "Travis Mitchell", "id": 1154054, "credit_id": "5324e114925141652a000b9e", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Nate Parker", "character": "Zack White", "id": 77277, "credit_id": "5324e13292514113b9000d92", "cast_id": 23, "profile_path": "/tgE3z5WbXyaxKcgEEIaaEic988h.jpg", "order": 14}, {"name": "Shea Whigham", "character": "Agent Marenick", "id": 74242, "credit_id": "53b270c4c3a3682ee200791d", "cast_id": 31, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 15}, {"name": "Frank Deal", "character": "Charles Wheeler", "id": 171886, "credit_id": "53b2711c0e0a26597d0099f8", "cast_id": 32, "profile_path": "/k0Gn9ZgMuUQ0jFeVuvK6Vyh14ZU.jpg", "order": 16}, {"name": "Edoardo Costa", "character": "Herve Philbert", "id": 1332493, "credit_id": "53b2715d0e0a2659800098dc", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Jon Abrahams", "character": "David Norton", "id": 17866, "credit_id": "53b2718c0e0a2659750099ac", "cast_id": 34, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 18}, {"name": "Amanda Quaid", "character": "Emily Norton", "id": 1336187, "credit_id": "53b271c50e0a2659750099b7", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Beth Dixon", "character": "Older Women", "id": 164396, "credit_id": "53b271fe0e0a2659790098f8", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Cameron Moir", "character": "Steward", "id": 1310853, "credit_id": "53b272350e0a265989009bb6", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Annika Pergament", "character": "NY1 Reporter", "id": 1129795, "credit_id": "53b2727e0e0a2659800098f5", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Victoria Arbiter", "character": "Tilkynna 3 Reporter", "id": 1447346, "credit_id": "5518d47c92514115000035a9", "cast_id": 54, "profile_path": null, "order": 23}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe4e629251416c75154b17", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 6.9, "runtime": 106}, "37165": {"poster_path": "/EelZzudHRvJmjWccWscN1S5vmI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 264118201, "overview": "Truman Burbank is the star of \"The Truman Show\", a 24-hour-a-day \"reality\" TV show that broadcasts every aspect of his life -- live and in color -- without his knowledge. His entire life has been an unending soap opera for consumption by the rest of the world. And everyone he knows--including his wife and his best friend -- is really an actor, paid to be part of his life.", "video": false, "id": 37165, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Truman Show", "tagline": "On the air. Unaware", "vote_count": 893, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120382", "adult": false, "backdrop_path": "/3xJbBYJdbm55bxPlLbWEbtWOsfP.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}], "release_date": "1998-06-04", "popularity": 1.42403814272259, "original_title": "The Truman Show", "budget": 60000000, "cast": [{"name": "Jim Carrey", "character": "Truman Burbank", "id": 206, "credit_id": "52fe462d9251416c9104be07", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Laura Linney", "character": "Meryl Burbank / Hannah Gill", "id": 350, "credit_id": "52fe462d9251416c9104be0b", "cast_id": 2, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 1}, {"name": "Noah Emmerich", "character": "Marlon", "id": 11315, "credit_id": "52fe462d9251416c9104be0f", "cast_id": 3, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 2}, {"name": "Natascha McElhone", "character": "Lauren / Sylvia", "id": 11317, "credit_id": "52fe462d9251416c9104be13", "cast_id": 4, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 3}, {"name": "Ed Harris", "character": "Christof", "id": 228, "credit_id": "52fe462e9251416c9104be5b", "cast_id": 23, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 4}, {"name": "Holland Taylor", "character": "Truman's Mother", "id": 11318, "credit_id": "52fe462e9251416c9104be17", "cast_id": 5, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 5}, {"name": "Brian Delate", "character": "Truman's Father", "id": 6579, "credit_id": "52fe462e9251416c9104be1b", "cast_id": 6, "profile_path": "/i8Ses7u7vQZ6DNVmU0e3hzNbgXb.jpg", "order": 6}, {"name": "Blair Slater", "character": "Young Truman", "id": 116898, "credit_id": "52fe462e9251416c9104be1f", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Heidi Schanz", "character": "Vivien", "id": 11321, "credit_id": "52fe462e9251416c9104be23", "cast_id": 9, "profile_path": "/svkz78fByMnD4K5LbQx903ao5I0.jpg", "order": 8}, {"name": "Ron Taylor", "character": "Ron", "id": 116899, "credit_id": "52fe462e9251416c9104be27", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Don Taylor", "character": "Don", "id": 116900, "credit_id": "52fe462e9251416c9104be2b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Ted Raymond", "character": "Spencer", "id": 116901, "credit_id": "52fe462e9251416c9104be2f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Peter Krause", "character": "Lawrence", "id": 23119, "credit_id": "52fe462e9251416c9104be57", "cast_id": 22, "profile_path": "/fI0dpVKdPIcSiS7MAAo3lw6EcFD.jpg", "order": 12}, {"name": "O-Lan Jones", "character": "Bar Waitress", "id": 1912, "credit_id": "52fe462e9251416c9104be5f", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Krista Lynn Landolfi", "character": "Bar Waitress", "id": 1048405, "credit_id": "52fe462e9251416c9104be63", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Paul Giamatti", "character": "Control Room Director", "id": 13242, "credit_id": "53cc5d3ec3a3687775001cf9", "cast_id": 30, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 15}, {"name": "Harry Shearer", "character": "Mike Michaelson", "id": 6008, "credit_id": "53cc5d5ac3a3687771001c14", "cast_id": 31, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 16}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe462e9251416c9104be35", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 7.2, "runtime": 103}, "37169": {"poster_path": "/rhy5WMyLVmYQ9PfEM60pg25E3TL.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 0, "overview": "During a stopover in Germany in the middle of a carefree road trip through Europe, two American girls find themselves alone at night when their car breaks down in the woods. Searching for help at a nearby villa, they are wooed into the clutches of a deranged retired surgeon who explains his mad scientific vision to his captives' utter horror. They are to be the subjects of his sick lifetime fantasy: to be the first to connect people, one to the next, and in doing so bring to life \"the human centipede.\"", "video": false, "id": 37169, "genres": [{"id": 27, "name": "Horror"}], "title": "The Human Centipede (First Sequence)", "tagline": "Their flesh is his fantasy", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iNRMelQcaKeVdinF28uU9YOmvYx.jpg", "poster_path": "/mv0MySTqfXg2ndthOkBg6bGwlnk.jpg", "id": 96671, "name": "The Human Centipede Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1467304", "adult": false, "backdrop_path": "/j2RqEGY3DW9teKb1vExFIFapWPc.jpg", "production_companies": [{"name": "Six Entertainment", "id": 5652}], "release_date": "2010-08-30", "popularity": 0.451327014898798, "original_title": "The Human Centipede (First Sequence)", "budget": 2011799, "cast": [{"name": "Dieter Laser", "character": "Dr. Heiter", "id": 23721, "credit_id": "52fe462e9251416c9104bf85", "cast_id": 2, "profile_path": "/eJ3uU8a7QacwQBEKmT3joEn8zBj.jpg", "order": 0}, {"name": "Ashley C. Williams", "character": "Lindsay", "id": 121574, "credit_id": "52fe462e9251416c9104bf89", "cast_id": 3, "profile_path": "/w3UGY8nqCfRhaeHtWL33eawwrgy.jpg", "order": 1}, {"name": "Ashlynn Yennie", "character": "Jenny", "id": 121575, "credit_id": "52fe462e9251416c9104bf8d", "cast_id": 4, "profile_path": "/g1vpTTRSxNcZRPUZiY5I10sbFki.jpg", "order": 2}, {"name": "Akihiro Kitamura", "character": "Katsuro", "id": 121576, "credit_id": "52fe462e9251416c9104bf91", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Andreas Leupold", "character": "Detective Kranz", "id": 121577, "credit_id": "52fe462e9251416c9104bf95", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Peter Blankenstein", "character": "Detective Voller", "id": 121578, "credit_id": "52fe462e9251416c9104bf99", "cast_id": 7, "profile_path": null, "order": 5}], "directors": [{"name": "Tom Six", "department": "Directing", "job": "Director", "credit_id": "52fe462e9251416c9104bf81", "profile_path": "/dkj0gsN4twgJqhQmI4EY2OnGW6D.jpg", "id": 118639}], "vote_average": 5.2, "runtime": 92}, "17332": {"poster_path": "/tqPc3IuujFScEAHMLb58eFiMBdy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31720158, "overview": "A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.", "video": false, "id": 17332, "genres": [{"id": 18, "name": "Drama"}], "title": "The Soloist", "tagline": "Life has a mind of its own", "vote_count": 58, "homepage": "http://www.soloistmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0821642", "adult": false, "backdrop_path": "/hktOZHkJTl3ZVfxyK0hpvLmp6lh.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}], "release_date": "2009-04-24", "popularity": 0.481516490736927, "original_title": "The Soloist", "budget": 60000000, "cast": [{"name": "Robert Downey Jr.", "character": "Steve Lopez", "id": 3223, "credit_id": "52fe471a9251416c7508dd77", "cast_id": 7, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "Nathaniel Ayers", "id": 134, "credit_id": "52fe471a9251416c7508dd7b", "cast_id": 8, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Catherine Keener", "character": "Mary Weston", "id": 2229, "credit_id": "52fe471a9251416c7508dd7f", "cast_id": 9, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 2}, {"name": "Nelsan Ellis", "character": "David Carter", "id": 81697, "credit_id": "52fe471a9251416c7508dd83", "cast_id": 10, "profile_path": "/uRPoXULZniUyOyInWHiP1b79H0Y.jpg", "order": 3}, {"name": "Michael Bunin", "character": "Adam Crane", "id": 81698, "credit_id": "52fe471a9251416c7508dd87", "cast_id": 11, "profile_path": "/wReY9uWkTM9A2z68gr3F8CN3cPu.jpg", "order": 4}, {"name": "Tom Hollander", "character": "Graham Claydon", "id": 2441, "credit_id": "52fe471a9251416c7508dda3", "cast_id": 16, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 5}, {"name": "Lisa Gay Hamilton", "character": "Jennifer Ayers", "id": 64908, "credit_id": "52fe471a9251416c7508dda7", "cast_id": 17, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 6}, {"name": "Rachael Harris", "character": "Leslie Bloom", "id": 46074, "credit_id": "52fe471a9251416c7508ddab", "cast_id": 18, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 7}, {"name": "Stephen Root", "character": "Curt Reynolds", "id": 17401, "credit_id": "52fe471a9251416c7508ddaf", "cast_id": 19, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 8}, {"name": "Lorraine Toussaint", "character": "Flo Ayers", "id": 81726, "credit_id": "52fe471a9251416c7508ddb3", "cast_id": 20, "profile_path": "/tHvHTU5gV68sNig0kUBatXWuwt9.jpg", "order": 9}, {"name": "Jena Malone", "character": "Cheery Lab Tech", "id": 20089, "credit_id": "52fe471a9251416c7508ddb7", "cast_id": 21, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 10}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe471a9251416c7508dd55", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.0, "runtime": 109}, "12610": {"poster_path": "/2NvnoaJflAEcT0zlzbS4hlwrDZX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13596911, "overview": "A policeman white blood cell, with the help of a cold pill, must stop a deadly virus from destroying the human they live in, Frank.", "video": false, "id": 12610, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Osmosis Jones", "tagline": "Every BODY needs a hero", "vote_count": 59, "homepage": "http://www.osmosisjones.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181739", "adult": false, "backdrop_path": "/wiaByoT3R75rVQSQaDq4iQDQxHY.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Bros. Entertainment", "id": 17}], "release_date": "2001-08-07", "popularity": 0.526736816079624, "original_title": "Osmosis Jones", "budget": 75000000, "cast": [{"name": "Chris Rock", "character": "Osmosis Jones (voice)", "id": 2632, "credit_id": "52fe45069251416c750491d7", "cast_id": 1, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Thrax (voice)", "id": 2975, "credit_id": "52fe45069251416c750491db", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "David Hyde Pierce", "character": "Drix (voice)", "id": 11076, "credit_id": "52fe45069251416c750491df", "cast_id": 3, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 2}, {"name": "Brandy Norwood", "character": "Leah (voice)", "id": 33285, "credit_id": "52fe45069251416c750491e3", "cast_id": 4, "profile_path": "/2HA5qGd6MSVM6hqE8yclbpnOfgw.jpg", "order": 3}, {"name": "Bill Murray", "character": "Frank Detomello", "id": 1532, "credit_id": "52fe45069251416c750491e7", "cast_id": 5, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 4}, {"name": "Molly Shannon", "character": "Mrs. Boyd", "id": 28640, "credit_id": "52fe45069251416c750491eb", "cast_id": 6, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 5}, {"name": "William Shatner", "character": "Mayor Phlegmming (voice)", "id": 1748, "credit_id": "541142040e0a26663f000e74", "cast_id": 22, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 6}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe45069251416c750491f1", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe45069251416c7504923f", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.4, "runtime": 95}, "168259": {"poster_path": "/dCgm7efXDmiABSdWDHBDBx2jwmn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1158392032, "overview": "Continuing the global exploits in the unstoppable franchise built on speed, Vin Diesel, Paul Walker and Dwayne Johnson lead the returning cast of Fast & Furious 7. James Wan directs this chapter of the hugely successful series that also welcomes back favorites Michelle Rodriguez, Jordana Brewster, Tyrese Gibson, Chris \"Ludacris\" Bridges, Elsa Pataky and Lucas Black. They are joined by international action stars new to the franchise including Jason Statham, Djimon Hounsou, Tony Jaa, Ronda Rousey and Kurt Russell.", "video": false, "id": 168259, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Furious 7", "tagline": "Vengeance Hits Home", "vote_count": 460, "homepage": "http://www.furious7.com/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2820852", "adult": false, "backdrop_path": "/c1OSRvorPXvGtFka7mgV6Jcw6jd.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Universal Pictures", "id": 33}], "release_date": "2015-04-03", "popularity": 33.4508207052021, "original_title": "Furious 7", "budget": 190000000, "cast": [{"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "5431dfd10e0a265915002c34", "cast_id": 17, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Dwayne Johnson", "character": "Luke Hobbs", "id": 18918, "credit_id": "5431dfdbc3a36831a6004376", "cast_id": 18, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 1}, {"name": "Jason Statham", "character": "Deckard Shaw", "id": 976, "credit_id": "5431dfc70e0a265872002bd5", "cast_id": 16, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "5431dfe4c3a3681143002b98", "cast_id": 19, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 3}, {"name": "Lucas Black", "character": "Sean Boswell", "id": 155, "credit_id": "5431dfbb0e0a265915002c2d", "cast_id": 15, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 4}, {"name": "Michelle Rodriguez", "character": "Letty Ortiz", "id": 17647, "credit_id": "5431dfeec3a36811ef002c75", "cast_id": 20, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 5}, {"name": "Kurt Russell", "character": "Mr. Nobody", "id": 6856, "credit_id": "5431dffa0e0a265872002bdf", "cast_id": 22, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 6}, {"name": "Elsa Pataky", "character": "Elena", "id": 73269, "credit_id": "5431e003c3a36811ef002c7c", "cast_id": 23, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 7}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "5431e00dc3a36811ef002c7e", "cast_id": 24, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 8}, {"name": "Ronda Rousey", "character": "Kara", "id": 997887, "credit_id": "5431dff40e0a2646490043fa", "cast_id": 21, "profile_path": "/rspN0StWezXvYevDlN6AOJeg9rA.jpg", "order": 9}, {"name": "Djimon Hounsou", "character": "Slim", "id": 938, "credit_id": "5431e015c3a36831a90040da", "cast_id": 25, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 10}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "5431e0310e0a2656e2002c95", "cast_id": 28, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 11}, {"name": "Nathalie Emmanuel", "character": "Megan", "id": 1251069, "credit_id": "5431e026c3a36831ac004333", "cast_id": 27, "profile_path": "/h8IpkPu419RtRGYCDrMOesRuxIB.jpg", "order": 12}, {"name": "Iggy Azalea", "character": "Female Racer", "id": 1364893, "credit_id": "5431e01c0e0a265834002c97", "cast_id": 26, "profile_path": "/9exqnQwXU3kHeJ6AYgWZmHjNBn5.jpg", "order": 13}, {"name": "Tony Jaa", "character": "Louie Tran", "id": 57207, "credit_id": "5431e04a0e0a26464300432c", "cast_id": 30, "profile_path": "/qq0uXKe3aKaAE04QQ0BvbbFFufF.jpg", "order": 14}, {"name": "Shad Moss", "character": "Twinkie", "id": 58197, "credit_id": "5431e03e0e0a265872002bf2", "cast_id": 29, "profile_path": "/A1rHY9B5R9cIQshClcJxBYINg1m.jpg", "order": 15}, {"name": "Ludacris", "character": "Tej Parker", "id": 8171, "credit_id": "5431e0520e0a2658b2002c3c", "cast_id": 31, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 16}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4cc8c3a36847f823e699", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 7.8, "runtime": 140}, "4421": {"poster_path": "/yf4zJg6ACAhH4fkHSdEDrBUuEyg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48169156, "overview": "A female Senator succeeds in enrolling a woman into Combined Reconnaissance Team training where everyone expects her to fail.", "video": false, "id": 4421, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "G.I. Jane", "tagline": "Failure is not an option.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119173", "adult": false, "backdrop_path": "/khmwGfkfNgF6gnFWC8SlT906Pjc.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Hollywood Pictures", "id": 915}, {"name": "First Independent Films", "id": 1643}, {"name": "Largo Entertainment", "id": 1644}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Trap-Two-Zero Productions", "id": 1646}], "release_date": "1997-08-22", "popularity": 0.571248592739223, "original_title": "G.I. Jane", "budget": 50000000, "cast": [{"name": "Demi Moore", "character": "Lieutenant Jordan O'Neil", "id": 3416, "credit_id": "52fe43c1c3a36847f806d0cd", "cast_id": 1, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 0}, {"name": "Viggo Mortensen", "character": "Master Chief John James Urgayle", "id": 110, "credit_id": "52fe43c1c3a36847f806d0d1", "cast_id": 2, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 1}, {"name": "Anne Bancroft", "character": "Senator Lillian DeHaven", "id": 10774, "credit_id": "52fe43c1c3a36847f806d0d5", "cast_id": 3, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 2}, {"name": "Jason Beghe", "character": "Royce", "id": 37203, "credit_id": "52fe43c1c3a36847f806d0d9", "cast_id": 4, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 3}, {"name": "Daniel von Bargen", "character": "Theodore Hayes", "id": 1473, "credit_id": "52fe43c1c3a36847f806d0dd", "cast_id": 5, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 4}, {"name": "John Michael Higgins", "character": "Stabschef", "id": 8265, "credit_id": "52fe43c1c3a36847f806d0e1", "cast_id": 6, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 5}, {"name": "Kevin Gage", "character": "Sergeant Max Pyro", "id": 34839, "credit_id": "52fe43c1c3a36847f806d0e5", "cast_id": 7, "profile_path": "/shMqCosEFquPy6qB8RfCCcDPq7M.jpg", "order": 6}, {"name": "David Warshofsky", "character": "Sergeant Johns", "id": 37204, "credit_id": "52fe43c1c3a36847f806d0e9", "cast_id": 8, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 7}, {"name": "David Vadim", "character": "Sergeant Cortez", "id": 37205, "credit_id": "52fe43c1c3a36847f806d0ed", "cast_id": 9, "profile_path": "/bvwt3dtEqCmZBPfxTCuDTCPPFEk.jpg", "order": 8}, {"name": "Morris Chestnut", "character": "McCool", "id": 9779, "credit_id": "52fe43c1c3a36847f806d0f1", "cast_id": 10, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 9}, {"name": "Josh Hopkins", "character": "F. Lee Montgomery", "id": 31532, "credit_id": "52fe43c1c3a36847f806d0f5", "cast_id": 11, "profile_path": "/4FF6p6G6SAUDJcfOx6GSFQrfTfq.jpg", "order": 10}, {"name": "Jim Caviezel", "character": "Slov", "id": 8767, "credit_id": "52fe43c1c3a36847f806d0f9", "cast_id": 12, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 11}, {"name": "Boyd Kestner", "character": "Wick", "id": 37206, "credit_id": "52fe43c1c3a36847f806d0fd", "cast_id": 13, "profile_path": "/iZYCIX8dn8HnaByEIOlqFDylm9Z.jpg", "order": 12}, {"name": "Angel David", "character": "Newberry", "id": 37207, "credit_id": "52fe43c1c3a36847f806d101", "cast_id": 14, "profile_path": "/mOYTIi8x5wBP198tcfkSGLiQ92h.jpg", "order": 13}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43c1c3a36847f806d107", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.1, "runtime": 125}, "82657": {"poster_path": "/8fJBq78VRKoV9e3WE0H2xfmQm2B.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Flight 7500 departs Los Angeles International Airport bound for Tokyo. As the overnight flight makes its way over the Pacific Ocean during its ten-hour course, the passengers encounter what appears to be a supernatural force in the cabin.", "video": false, "id": 82657, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "7500", "tagline": "At 30,000 feet. There's Nowhere to Run.", "vote_count": 59, "homepage": "http://www.7500movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1975159", "adult": false, "backdrop_path": "/cobq7rVabMhF7L3tDQM9PO5pSld.jpg", "production_companies": [{"name": "Vertigo Entertainment", "id": 829}, {"name": "CBS Films", "id": 5490}, {"name": "Ozla Pictures", "id": 2617}, {"name": "Ozla Productions", "id": 4777}], "release_date": "2014-05-16", "popularity": 1.22142343444518, "original_title": "7500", "budget": 0, "cast": [{"name": "Ryan Kwanten", "character": "Brad Martin", "id": 133212, "credit_id": "52fe48659251416c9108af41", "cast_id": 16, "profile_path": "/gbAhDfCKKUtGJhQJIukkiZGgQBW.jpg", "order": 0}, {"name": "Amy Smart", "character": "Pia Martin", "id": 20189, "credit_id": "52fe48659251416c9108af39", "cast_id": 14, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Leslie Bibb", "character": "Laura Baxter", "id": 57451, "credit_id": "52fe48659251416c9108af35", "cast_id": 13, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 2}, {"name": "Jamie Chung", "character": "Suzy Lee", "id": 78324, "credit_id": "52fe48659251416c9108af2d", "cast_id": 11, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 3}, {"name": "Scout Taylor-Compton", "character": "Jacinta Bloch", "id": 21318, "credit_id": "52fe48659251416c9108af3d", "cast_id": 15, "profile_path": "/w0fiP2VOXkHJclbElyOEBuDyONI.jpg", "order": 4}, {"name": "Nicky Whelan", "character": "Liz Lewis", "id": 212833, "credit_id": "52fe48659251416c9108af31", "cast_id": 12, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 5}, {"name": "Jerry Ferrara", "character": "Rick", "id": 98953, "credit_id": "52fe48659251416c9108af4d", "cast_id": 19, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 6}, {"name": "Christian Serratos", "character": "Raquel Mendoza", "id": 84224, "credit_id": "52fe48659251416c9108af49", "cast_id": 18, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 7}, {"name": "Alex Frost", "character": "Jake", "id": 19195, "credit_id": "52fe48659251416c9108af51", "cast_id": 20, "profile_path": "/ip1ABnG49oeE5bOS78bAu8whdeI.jpg", "order": 8}, {"name": "Rick Kelly", "character": "Lance Morrell", "id": 1369055, "credit_id": "542b2d97c3a36868fe000240", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Johnathon Schaech", "character": "Captain Haining", "id": 51670, "credit_id": "52fe48659251416c9108af45", "cast_id": 17, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 10}, {"name": "Ben Sharples", "character": "Jack Hafey", "id": 1099724, "credit_id": "542b2daac3a36868fe000245", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "Takashi Shimizu", "department": "Directing", "job": "Director", "credit_id": "52fe48659251416c9108aef3", "profile_path": "/zY1UnpOyyzreAX2cj1qRcqMwIH3.jpg", "id": 20310}], "vote_average": 5.5, "runtime": 97}, "18487": {"poster_path": "/rqbG1uRKSNDLnDx1Jl7LBc4AtSy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150166126, "overview": "Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.", "video": false, "id": 18487, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Taking of Pelham 123", "tagline": "I can't get it out of my head. I'm gonna die today.", "vote_count": 274, "homepage": "http://catchthetrain.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1111422", "adult": false, "backdrop_path": "/eltn62uDNkDg27dhQS6nVvmLKIU.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Escape Artists", "id": 1423}], "release_date": "2009-06-11", "popularity": 0.913579650256586, "original_title": "The Taking of Pelham 123", "budget": 100000000, "cast": [{"name": "Denzel Washington", "character": "Walter Garber", "id": 5292, "credit_id": "52fe47809251416c7509bafb", "cast_id": 2, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "John Travolta", "character": "Ryder", "id": 8891, "credit_id": "52fe47809251416c7509baff", "cast_id": 3, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Luis Guzm\u00e1n", "character": "Phil Ramos", "id": 40481, "credit_id": "52fe47809251416c7509bb03", "cast_id": 4, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 2}, {"name": "Victor Gojcaj", "character": "Bashkim", "id": 84318, "credit_id": "52fe47809251416c7509bb07", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "John Turturro", "character": "Camonetti", "id": 1241, "credit_id": "52fe47809251416c7509bb0b", "cast_id": 6, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 4}, {"name": "James Gandolfini", "character": "Mayor", "id": 4691, "credit_id": "52fe47809251416c7509bb0f", "cast_id": 7, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 5}, {"name": "Michael Rispoli", "character": "John Johnson", "id": 18313, "credit_id": "52fe47809251416c7509bb13", "cast_id": 8, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 6}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Delgado", "id": 72985, "credit_id": "52fe47809251416c7509bb17", "cast_id": 9, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 7}, {"name": "Chance Kelly", "character": "ESU Captain", "id": 17194, "credit_id": "52fe47809251416c7509bb3f", "cast_id": 16, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 8}, {"name": "Alice Kremelberg", "character": "George's Girlfriend", "id": 1357037, "credit_id": "53fc39f50e0a267a7b009c35", "cast_id": 28, "profile_path": "/i5eYcWhuOPuSAXtj0hue0WX9O3k.jpg", "order": 9}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe47809251416c7509baf7", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.1, "runtime": 106}, "12620": {"poster_path": "/8dwE6Uq5JUC82yEr8N4wzoRS9Rs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sexpot Shelley Darlington lives comfortably at the Playboy Mansion, until a jealous rival gets her tossed out on her tail. With nowhere else to go, she winds up at Zeta Alpha Zeta sorority. The seven socially inept Zetas will lose their house unless they can attract more pledges; to do that, they need to learn the ways of makeup and men from an expert.", "video": false, "id": 12620, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The House Bunny", "tagline": "They wanted a role model. They got a Playmate.", "vote_count": 120, "homepage": "http://www.thehousebunny.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0852713", "adult": false, "backdrop_path": "/lR71zfC8uQjEloVAVicsAogZl6E.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2008-08-22", "popularity": 0.677009620641116, "original_title": "The House Bunny", "budget": 0, "cast": [{"name": "Anna Faris", "character": "Shelley", "id": 1772, "credit_id": "52fe45099251416c75049795", "cast_id": 23, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 0}, {"name": "Emma Stone", "character": "Natalie", "id": 54693, "credit_id": "52fe45089251416c75049723", "cast_id": 2, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Kat Dennings", "character": "Mona", "id": 52852, "credit_id": "52fe45089251416c75049727", "cast_id": 3, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 2}, {"name": "Katharine McPhee", "character": "Harmony", "id": 77088, "credit_id": "52fe45099251416c750497a7", "cast_id": 27, "profile_path": "/geXNN1MvP6S581lL9pyAd9LaAAF.jpg", "order": 3}, {"name": "Rumer Willis", "character": "Joanne", "id": 20848, "credit_id": "52fe45089251416c75049737", "cast_id": 7, "profile_path": "/mj8reEFyNEmeYAO3hsmLUaDfNO0.jpg", "order": 4}, {"name": "Hugh Hefner", "character": "Hugh Hefner", "id": 31309, "credit_id": "52fe45089251416c7504972b", "cast_id": 4, "profile_path": "/3BS3PEHxgqr7G1ItTpCGzhSFViV.jpg", "order": 5}, {"name": "Christopher McDonald", "character": "Dean Simmons", "id": 4443, "credit_id": "52fe45089251416c7504972f", "cast_id": 5, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 6}, {"name": "Beverly D'Angelo", "character": "Mrs. Hagstrom", "id": 821, "credit_id": "52fe45089251416c75049733", "cast_id": 6, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 7}, {"name": "Kiely Williams", "character": "Lilly", "id": 74046, "credit_id": "52fe45099251416c7504979f", "cast_id": 25, "profile_path": "/svjs9Rw3wYQzX8BNwBmvHGk4bAL.jpg", "order": 8}, {"name": "Tyson Ritter", "character": "Colby", "id": 74047, "credit_id": "52fe45099251416c750497a3", "cast_id": 26, "profile_path": "/uavIDRS6SI5omz8AzstUsXpbPNz.jpg", "order": 9}, {"name": "Colin Hanks", "character": "Oliver", "id": 3492, "credit_id": "52fe45099251416c750497ab", "cast_id": 28, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 10}, {"name": "Sarah Mason", "character": "Ashley", "id": 131723, "credit_id": "52fe45099251416c750497af", "cast_id": 29, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 11}], "directors": [{"name": "Fred Wolf", "department": "Directing", "job": "Director", "credit_id": "52fe45089251416c7504973d", "profile_path": null, "id": 66563}], "vote_average": 5.3, "runtime": 97}, "159117": {"poster_path": "/t1lILqp0Yfg0SncPyEw0DtR72G5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "ID", "name": "Indonesia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Inside a darkened house looms a column of TVs littered with VHS tapes, a pagan shrine to forgotten analog gods. The screens crackle and pop endlessly with monochrome vistas of static white noise permeating the brain and fogging concentration. But you must fight the urge to relax: this is no mere movie night. Those obsolete spools contain more than just magnetic tape. They are imprinted with the very soul of evil.", "video": false, "id": 159117, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "V/H/S/2", "tagline": "Who's tracking you?", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wSdVm0uxEvYlwMxOAhipUUzey4w.jpg", "poster_path": "/esfk62fcqTWqB90dAHaVMbDWmbM.jpg", "id": 207621, "name": "V/H/S Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2450186", "adult": false, "backdrop_path": "/eBOfqLDN8jnq6SJfjHoYX7xJ19s.jpg", "production_companies": [{"name": "The Collective", "id": 15156}, {"name": "Bloody Disgusting", "id": 15157}, {"name": "8383 Productions", "id": 15158}, {"name": "Snoot Entertainment", "id": 15159}, {"name": "Haxan Films", "id": 15160}], "release_date": "2013-06-06", "popularity": 0.422189343044961, "original_title": "V/H/S/2", "budget": 0, "cast": [{"name": "Adam Wingard", "character": "Herman", "id": 98631, "credit_id": "52fe4c049251416c910ed035", "cast_id": 8, "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "order": 0}, {"name": "Lawrence Michael Levine", "character": "Larry", "id": 1031944, "credit_id": "52fe4c049251416c910ed039", "cast_id": 9, "profile_path": "/oE7B99wZa5fTKV8aH15isdJPkuY.jpg", "order": 1}, {"name": "Kelsy Abbott", "character": "Ayesha", "id": 1140571, "credit_id": "52fe4c049251416c910ed03d", "cast_id": 10, "profile_path": "/y8uWo8W2w4dRMVcOpjZMyYTlnBu.jpg", "order": 2}, {"name": "Hannah Hughes", "character": "Clarissa", "id": 98635, "credit_id": "52fe4c049251416c910ed041", "cast_id": 11, "profile_path": "/6I2MhnI8QNFAygIAQHg0aWBHvSP.jpg", "order": 3}, {"name": "L.C. Holt", "character": "Kyle", "id": 1140572, "credit_id": "52fe4c049251416c910ed045", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Hannah Al Rashid", "character": "", "id": 1028461, "credit_id": "52fe4c049251416c910ed049", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Fachry Albar", "character": "Adam", "id": 121799, "credit_id": "52fe4c049251416c910ed04d", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Oka Antara", "character": "Malik", "id": 1154465, "credit_id": "52fe4c049251416c910ed051", "cast_id": 15, "profile_path": "/2BY3OgPWwbpGN7rQEXGlm1muqtQ.jpg", "order": 7}, {"name": "Devon Brookshire", "character": "Amy", "id": 1180612, "credit_id": "52fe4c049251416c910ed055", "cast_id": 16, "profile_path": "/oKuOb8Ght7fY8Irsg8SNySMvfx3.jpg", "order": 8}, {"name": "Samantha Gracie", "character": "", "id": 1180613, "credit_id": "52fe4c049251416c910ed059", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Kevin Hunt", "character": "\"Eyeball Guy\"", "id": 1180615, "credit_id": "52fe4c049251416c910ed05d", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Epy Kusnandar", "character": "\"The Father\"", "id": 1180616, "credit_id": "52fe4c049251416c910ed061", "cast_id": 19, "profile_path": "/epfkHCgeWv4QErSoU6jMyTJKrPO.jpg", "order": 11}, {"name": "Carly Robell", "character": "\"BBQ Kid in Minivan\"", "id": 1180618, "credit_id": "52fe4c049251416c910ed065", "cast_id": 20, "profile_path": "/o0sqdPCrlSdc9xlIYKeljZ9i9jR.jpg", "order": 12}, {"name": "Mindy Robinson", "character": "Tabitha", "id": 1072882, "credit_id": "52fe4c049251416c910ed069", "cast_id": 21, "profile_path": "/m5KuG9QmgDW02cAgZNxINLs72R5.jpg", "order": 13}, {"name": "Jay Saunders", "character": "Biker", "id": 276917, "credit_id": "52fe4c049251416c910ed06d", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Jeremie Saunders", "character": "Zack", "id": 1180620, "credit_id": "52fe4c049251416c910ed071", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Andrew Suleiman", "character": "Johnny", "id": 936125, "credit_id": "52fe4c049251416c910ed075", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "John T. Woods", "character": "Dr. Fleischer", "id": 1145673, "credit_id": "52fe4c049251416c910ed079", "cast_id": 25, "profile_path": "/lGRkhFGIS5jgG7EdNQEPkCDQUGA.jpg", "order": 17}], "directors": [{"name": "Simon Barrett", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed00d", "profile_path": "/ucJy0Ia79AX6iLZr8A9NaBnVYaw.jpg", "id": 83858}, {"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed013", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}, {"name": "Eduardo S\u00e1nchez", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed019", "profile_path": "/3ejhF82WeB3Au5z0a4ZbpXWd5QU.jpg", "id": 26850}, {"name": "Gregg Hale", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed01f", "profile_path": null, "id": 27757}, {"name": "Timo Tjahjanto", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed025", "profile_path": "/ijBr8CbarKspn3rtfOSI0PTqjMr.jpg", "id": 235430}, {"name": "Gareth Evans", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed02b", "profile_path": "/alW7ScKUxyiI2TOBYOZkACsLD7c.jpg", "id": 142013}, {"name": "Jason Eisener", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed031", "profile_path": "/4EJtYbZVXCUyjUHMLVomgcWqcsZ.jpg", "id": 141673}], "vote_average": 6.0, "runtime": 95}, "9904": {"poster_path": "/uxTtgh4tpSWVulXLCDqKU10cWXo.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37384046, "overview": "An adolescent lion is accidentally shipped from the New York Zoo to Africa. Now running free, his zoo pals must put aside their differences to help bring him back.", "video": false, "id": 9904, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Wild", "tagline": "The Circle Of Life, meets the big apple.", "vote_count": 63, "homepage": "http://www.disney.com/thewild", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405469", "adult": false, "backdrop_path": "/rmGelSNp5kRRIk5VtdAxwhYFmO3.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-04-13", "popularity": 0.484140488510823, "original_title": "The Wild", "budget": 80000000, "cast": [{"name": "Kiefer Sutherland", "character": "Samson (voice)", "id": 2628, "credit_id": "52fe4545c3a36847f80c4ab3", "cast_id": 26, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "James Belushi", "character": "Benny (voice)", "id": 26485, "credit_id": "52fe4545c3a36847f80c4ad7", "cast_id": 34, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 1}, {"name": "Eddie Izzard", "character": "Nigel (voice)", "id": 1926, "credit_id": "52fe4545c3a36847f80c4ad3", "cast_id": 33, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 2}, {"name": "Janeane Garofalo", "character": "Bridget (voice)", "id": 21197, "credit_id": "52fe4545c3a36847f80c4acf", "cast_id": 32, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 3}, {"name": "William Shatner", "character": "Kazar (voice)", "id": 1748, "credit_id": "52fe4545c3a36847f80c4adf", "cast_id": 36, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Richard Kind", "character": "Larry (voice)", "id": 21125, "credit_id": "52fe4545c3a36847f80c4adb", "cast_id": 35, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 5}, {"name": "Greg Cipes", "character": "Ryan (voice)", "id": 60227, "credit_id": "52fe4545c3a36847f80c4ae3", "cast_id": 37, "profile_path": "/puosymhDFIJhjmQrTwkVTaWC7mx.jpg", "order": 6}, {"name": "Colin Hay", "character": "Fergus Flamingo (voice)", "id": 60228, "credit_id": "52fe4545c3a36847f80c4af7", "cast_id": 42, "profile_path": "/m1bF35sN0h9lafZ1lxRGNtCdBBi.jpg", "order": 7}, {"name": "Miles Marsico", "character": "Duke (voice)", "id": 60229, "credit_id": "52fe4545c3a36847f80c4aef", "cast_id": 40, "profile_path": null, "order": 8}, {"name": "Jack De Sena", "character": "Eze (voice)", "id": 60230, "credit_id": "52fe4545c3a36847f80c4af3", "cast_id": 41, "profile_path": "/iPRBbpKuY4tb06aV0UqKSjFJW7O.jpg", "order": 9}, {"name": "Don Cherry", "character": "Penguin MC (voice)", "id": 18594, "credit_id": "52fe4545c3a36847f80c4ae7", "cast_id": 38, "profile_path": "/g1oI2EagXa2JRtEMQLbk2qiuxiF.jpg", "order": 10}, {"name": "Christian Argueta", "character": "Hamir (voice)", "id": 60231, "credit_id": "52fe4545c3a36847f80c4aff", "cast_id": 44, "profile_path": null, "order": 11}, {"name": "David Cowgill", "character": "Hamir (voice)", "id": 60232, "credit_id": "52fe4545c3a36847f80c4b03", "cast_id": 45, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 12}, {"name": "Lenny Venito", "character": "Stan (voice)", "id": 37157, "credit_id": "52fe4545c3a36847f80c4aeb", "cast_id": 39, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 13}, {"name": "Joseph Siravo", "character": "Carmine (voice)", "id": 47770, "credit_id": "52fe4545c3a36847f80c4afb", "cast_id": 43, "profile_path": "/rh9Vt4JH5MZKMolhOzElTBEWic5.jpg", "order": 14}, {"name": "Colin Cunningham", "character": "Hyrax (voice)", "id": 1218926, "credit_id": "52fe4545c3a36847f80c4b1d", "cast_id": 52, "profile_path": "/3EW9uprWwgzJy2jIcN0QFzKbVFX.jpg", "order": 15}, {"name": "Patrick Warburton", "character": "Blag (voice)", "id": 9657, "credit_id": "52fe4545c3a36847f80c4b07", "cast_id": 46, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 16}, {"name": "Jonathan Kimmel", "character": "Scab (voice)", "id": 60234, "credit_id": "52fe4545c3a36847f80c4b0f", "cast_id": 49, "profile_path": "/bRSl5ERbBkjzSH86HqNU9U3Vbwp.jpg", "order": 17}, {"name": "Eddie Gossling", "character": "Scraw (voice)", "id": 60236, "credit_id": "52fe4545c3a36847f80c4b13", "cast_id": 50, "profile_path": "/bczinioO5pu79NAGgWPTil910Jh.jpg", "order": 18}, {"name": "Clinton Leupp", "character": "Mama Hippo (voice)", "id": 60235, "credit_id": "52fe4545c3a36847f80c4b0b", "cast_id": 48, "profile_path": "/dqRjBpJfFhT4qMyLQOnezuOsOh9.jpg", "order": 19}], "directors": [{"name": "Steve 'Spaz' Williams", "department": "Directing", "job": "Director", "credit_id": "52fe4545c3a36847f80c4a3d", "profile_path": "/zD0Qyhjjg87fDdEDJbqOFsSMtjm.jpg", "id": 60207}], "vote_average": 5.0, "runtime": 94}, "4437": {"poster_path": "/9Rcz2n16HEYRi2EKGliByP6ESYR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40400657, "overview": "A joint American-Soviet space expedition is sent to Jupiter to learn went happened to the U.S.S. Discovery against a backdrop of growing global tensions. Among the mysteries the expedition must explain are the appearance of a huge black monolith in Jupiter's orbit and the fate of H.A.L., the Discovery's sentient computer.", "video": false, "id": 4437, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "2010", "tagline": "The year a small group of Americans and Russians sat out on the greatest adventure of them all... to see if there is life beyond the stars.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/15FumSExI9SRoL7QJWZAsA0b10c.jpg", "poster_path": "/i1WdRtc6aObiwGz5NU8WWPW3r1N.jpg", "id": 4438, "name": "The Space Odyssey Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0086837", "adult": false, "backdrop_path": "/sESzXLxl1f8vf94zPr8yngIddro.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1984-12-06", "popularity": 0.737912206825857, "original_title": "2010", "budget": 28000000, "cast": [{"name": "Roy Scheider", "character": "Dr. Heywood Floyd", "id": 6355, "credit_id": "52fe43c1c3a36847f806d365", "cast_id": 10, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 0}, {"name": "John Lithgow", "character": "Dr. Walter Curnow", "id": 12074, "credit_id": "52fe43c1c3a36847f806d369", "cast_id": 11, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 1}, {"name": "Helen Mirren", "character": "Tanya Kirbuk", "id": 15735, "credit_id": "52fe43c1c3a36847f806d36d", "cast_id": 12, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 2}, {"name": "Bob Balaban", "character": "Dr. R. Chandra", "id": 12438, "credit_id": "52fe43c1c3a36847f806d371", "cast_id": 13, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 3}, {"name": "Keir Dullea", "character": "Dave Bowman", "id": 245, "credit_id": "52fe43c1c3a36847f806d375", "cast_id": 14, "profile_path": "/vRkyWW3p2Xd1FfMBKZWV2LQZlkR.jpg", "order": 4}, {"name": "Dana Elcar", "character": "Dimitri Moisevitch", "id": 37712, "credit_id": "52fe43c1c3a36847f806d379", "cast_id": 16, "profile_path": "/8qDt9Rl10UCGnUtOZvlCwZiHTHI.jpg", "order": 5}, {"name": "Taliesin Jaffe", "character": "Christopher Floyd", "id": 37713, "credit_id": "52fe43c1c3a36847f806d37d", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "James McEachin", "character": "Victor Milson", "id": 37714, "credit_id": "52fe43c1c3a36847f806d381", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Oleg Rudnik", "character": "Dr. Vasili Orlov", "id": 37715, "credit_id": "52fe43c1c3a36847f806d385", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Madolyn Smith Osborne", "character": "Caroline Floyd", "id": 66079, "credit_id": "52fe43c1c3a36847f806d389", "cast_id": 20, "profile_path": "/589nvAruYaM7B5m1Y6ntKhNbATw.jpg", "order": 9}], "directors": [{"name": "Peter Hyams", "department": "Directing", "job": "Director", "credit_id": "52fe43c1c3a36847f806d337", "profile_path": "/zbELGEBxySY0KqZv63DXeJdfMVU.jpg", "id": 37710}], "vote_average": 6.4, "runtime": 116}, "4442": {"poster_path": "/sPvQvGZ9eHTNtNXkYl8AusWLstf.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105316267, "overview": "Folklore collectors and con artists, Jake and Will Grimm, travel from village to village pretending to protect townsfolk from enchanted creatures and performing exorcisms. They are put to the test, however, when they encounter a real magical curse in a haunted forest with real magical beings, requiring genuine courage.", "video": false, "id": 4442, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Brothers Grimm", "tagline": "Eliminating Evil Since 1812.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0355295", "adult": false, "backdrop_path": "/tn7EGGDPYqDn6T1boyfwhizyHkZ.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Reforma Films", "id": 1649}, {"name": "Dimension Films", "id": 7405}], "release_date": "2005-08-25", "popularity": 0.689086601532179, "original_title": "The Brothers Grimm", "budget": 88000000, "cast": [{"name": "Heath Ledger", "character": "Jacob Grimm", "id": 1810, "credit_id": "52fe43c1c3a36847f806d525", "cast_id": 2, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Matt Damon", "character": "Wilhelm Grimm", "id": 1892, "credit_id": "52fe43c1c3a36847f806d529", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Mackenzie Crook", "character": "Hidlick", "id": 1711, "credit_id": "52fe43c1c3a36847f806d52d", "cast_id": 4, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 2}, {"name": "Roger Ashton-Griffiths", "character": "Mayor", "id": 20243, "credit_id": "52fe43c2c3a36847f806d531", "cast_id": 5, "profile_path": "/3lvWs4Kz0aATpcSY7PyPhkKgH6W.jpg", "order": 3}, {"name": "Peter Stormare", "character": "Cavaldi", "id": 53, "credit_id": "52fe43c2c3a36847f806d535", "cast_id": 6, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "Delatombe", "id": 378, "credit_id": "52fe43c2c3a36847f806d539", "cast_id": 7, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Monica Bellucci", "character": "K\u00f6nigin", "id": 28782, "credit_id": "52fe43c2c3a36847f806d53d", "cast_id": 8, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 6}, {"name": "Lena Headey", "character": "Angelika", "id": 17286, "credit_id": "52fe43c2c3a36847f806d541", "cast_id": 9, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 7}, {"name": "Richard Ridings", "character": "Bunst", "id": 6645, "credit_id": "52fe43c2c3a36847f806d545", "cast_id": 10, "profile_path": "/zzznosGBL8uEBUwqZHKcKsVZzWe.jpg", "order": 8}, {"name": "Barbora Lukesov\u00e1", "character": "Mother Grimm", "id": 37296, "credit_id": "52fe43c2c3a36847f806d549", "cast_id": 11, "profile_path": "/rjJ9MLP5RvFW0g8AskqXc9T92qG.jpg", "order": 9}, {"name": "Petr Ratimec", "character": "Young Will", "id": 1286965, "credit_id": "52fe43c2c3a36847f806d5a7", "cast_id": 27, "profile_path": "/zwda65xn6kJHHvYFYdwZb3KjrKW.jpg", "order": 10}, {"name": "Anna Rust", "character": "Sister Grimm", "id": 1286966, "credit_id": "52fe43c2c3a36847f806d5ab", "cast_id": 28, "profile_path": "/vfCgts2JARpZ5RFjqWuzxmZPphX.jpg", "order": 11}, {"name": "Jeremy Robson", "character": "Young Jacob", "id": 1286967, "credit_id": "52fe43c2c3a36847f806d5af", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Radim Kalvoda", "character": "Gendarme", "id": 1175617, "credit_id": "52fe43c2c3a36847f806d5b3", "cast_id": 30, "profile_path": "/6Xu7ZeRRMuZMWGzpzE80IZ6Pu7c.jpg", "order": 13}, {"name": "Martin Hofmann", "character": "Gendarme", "id": 1244677, "credit_id": "52fe43c2c3a36847f806d5b7", "cast_id": 31, "profile_path": "/pQms3JCrMlxdAGeyNeYq11Z5tvx.jpg", "order": 14}, {"name": "Josef Pepa Nos", "character": "German War Veteran", "id": 1286968, "credit_id": "52fe43c2c3a36847f806d5bb", "cast_id": 32, "profile_path": "/7HBv6BSYBYYEjtQledOkkCg9KYs.jpg", "order": 15}, {"name": "Harry Gilliam", "character": "Stable Boy", "id": 978081, "credit_id": "52fe43c2c3a36847f806d5bf", "cast_id": 33, "profile_path": "/yF7ctviSQ4ogRpUVlKBqjCOV8wc.jpg", "order": 16}, {"name": "Miroslav T\u00e1borsk\u00fd", "character": "Old Miller", "id": 47838, "credit_id": "52fe43c2c3a36847f806d5c3", "cast_id": 34, "profile_path": "/xfKw9ccMjOM7nRZc4nMFR0CZSIr.jpg", "order": 17}, {"name": "Marika Sarah Proch\u00e1zkov\u00e1", "character": "Miller's Daughter", "id": 1180339, "credit_id": "52fe43c2c3a36847f806d5c7", "cast_id": 35, "profile_path": "/cIzXXClr1mSG22HDqBwFGFZSsOj.jpg", "order": 18}, {"name": "Mackenzie Crook", "character": "Hidlick", "id": 1711, "credit_id": "52fe43c2c3a36847f806d5cb", "cast_id": 36, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 19}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe43c1c3a36847f806d521", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 5.4, "runtime": 118}, "20829": {"poster_path": "/uWgcmAIfYURUHJGhY4Rq1IXcJIg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61458982, "overview": "Famous and wealthy funnyman George Simmons doesn't give much thought to how he treats people until a doctor delivers stunning health news, forcing George to reevaluate his priorities with a little help from aspiring stand-up comic Ira.", "video": false, "id": 20829, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Funny People", "tagline": "George Simmons was prepared to die, but then a funny thing happened.", "vote_count": 71, "homepage": "http://www.funnypeoplemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1201167", "adult": false, "backdrop_path": "/yzEJW4dowe1RSpSdchaGi9eoHHU.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}, {"name": "Relativity Media", "id": 7295}, {"name": "Madison 23", "id": 11708}], "release_date": "2009-07-31", "popularity": 0.58562693906151, "original_title": "Funny People", "budget": 75000000, "cast": [{"name": "Adam Sandler", "character": "George Simmons", "id": 19292, "credit_id": "52fe43fcc3a368484e0092f7", "cast_id": 3, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Ira Wright", "id": 19274, "credit_id": "52fe43fcc3a368484e0092fb", "cast_id": 4, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Laura", "id": 41087, "credit_id": "52fe43fcc3a368484e0092ff", "cast_id": 5, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Eric Bana", "character": "Clarke", "id": 8783, "credit_id": "52fe43fcc3a368484e009303", "cast_id": 6, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 3}, {"name": "Jonah Hill", "character": "Leo Koenig", "id": 21007, "credit_id": "52fe43fcc3a368484e009307", "cast_id": 7, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 4}, {"name": "Jason Schwartzman", "character": "Mark Taylor Jackson", "id": 17881, "credit_id": "52fe43fcc3a368484e00930b", "cast_id": 8, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 5}, {"name": "RZA", "character": "Chuck", "id": 150, "credit_id": "52fe43fcc3a368484e00930f", "cast_id": 9, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 6}, {"name": "Aziz Ansari", "character": "Randy", "id": 86626, "credit_id": "52fe43fcc3a368484e009313", "cast_id": 10, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 7}, {"name": "Aubrey Plaza", "character": "Daisy Danby", "id": 119592, "credit_id": "52fe43fcc3a368484e00932f", "cast_id": 15, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 8}, {"name": "Maude Apatow", "character": "Mable", "id": 41090, "credit_id": "52fe43fcc3a368484e009375", "cast_id": 27, "profile_path": "/3VOawL9cIJD2btDRYWoOHnJIkAM.jpg", "order": 9}, {"name": "Iris Apatow", "character": "Ingrid", "id": 963429, "credit_id": "52fe43fcc3a368484e009379", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Torsten Voges", "character": "Dr. Lars", "id": 1238, "credit_id": "52fe43fcc3a368484e00937d", "cast_id": 29, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 11}, {"name": "Allan Wasserman", "character": "Dr. Stevens", "id": 123728, "credit_id": "52fe43fcc3a368484e009381", "cast_id": 30, "profile_path": "/u6xfuaLDoLMkSWHPW5I2njOsWPI.jpg", "order": 12}, {"name": "Wayne Federman", "character": "Comedy & Magic Manager", "id": 170759, "credit_id": "52fe43fcc3a368484e009385", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "James Taylor", "character": "Himself", "id": 97351, "credit_id": "5304e19892514104bb21d4f2", "cast_id": 32, "profile_path": "/2biaEDZ8IiNihtUgDgZ0KSo4d4l.jpg", "order": 14}, {"name": "Paul Reiser", "character": "Himself", "id": 781, "credit_id": "5304e1ac92514104bb21d56e", "cast_id": 33, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 15}, {"name": "George Wallace", "character": "Himself", "id": 552139, "credit_id": "5304e1c292514104b51dabb9", "cast_id": 34, "profile_path": "/dlELhZZSyzTXY7IVkFzwwcfMlFU.jpg", "order": 16}, {"name": "Norm Macdonald", "character": "Himself", "id": 77075, "credit_id": "5304e21f92514104bb21d8e3", "cast_id": 35, "profile_path": "/5jAVTWdeGGtSCZ37jT4uOyP2O0T.jpg", "order": 17}, {"name": "Dave Attell", "character": "Himself", "id": 65923, "credit_id": "5304e22892514104bb21db01", "cast_id": 36, "profile_path": "/rj1NJS4PxhOarYZ3SHg8SY0FOsC.jpg", "order": 18}, {"name": "Eminem", "character": "Himself", "id": 325, "credit_id": "5304e23892514104b81f5281", "cast_id": 37, "profile_path": "/mKPPGlIZ2EiKb6LSC46cSzK2NEU.jpg", "order": 19}, {"name": "Sarah Silverman", "character": "Herself", "id": 7404, "credit_id": "5304e24492514104bb21e7fc", "cast_id": 38, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 20}, {"name": "Ray Romano", "character": "Himself", "id": 15757, "credit_id": "5304e25092514104b51db65e", "cast_id": 39, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 21}, {"name": "Bryan Batt", "character": "George's Agent", "id": 180422, "credit_id": "5304e26b92514104c11f714f", "cast_id": 40, "profile_path": "/dDfpQZ00K1poeqgTINj2D4D6SrF.jpg", "order": 22}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe43fcc3a368484e0092ed", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 5.3, "runtime": 146}, "2539": {"poster_path": "/sdZyL1GXa4Wcx7b5Hu8GpkfjZnl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A woman and her daughter emigrate from Mexico for a better life in America, where they start working for a family where the patriarch is a newly celebrated chef with an insecure wife.", "video": false, "id": 2539, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Spanglish", "tagline": "Every family has a hero.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371246", "adult": false, "backdrop_path": "/hWnwxqC91vYltwLkpysBroae96k.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures", "id": 34}], "release_date": "2004-12-17", "popularity": 0.555329853005955, "original_title": "Spanglish", "budget": 0, "cast": [{"name": "Adam Sandler", "character": "John Clasky", "id": 19292, "credit_id": "52fe435dc3a36847f804eb77", "cast_id": 7, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Deborah Clasky", "id": 4939, "credit_id": "52fe435dc3a36847f804eb7b", "cast_id": 8, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Paz Vega", "character": "Flor Moreno", "id": 3627, "credit_id": "52fe435dc3a36847f804eb7f", "cast_id": 9, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 2}, {"name": "Cloris Leachman", "character": "Evelyn Wright", "id": 9599, "credit_id": "52fe435dc3a36847f804eb83", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 3}, {"name": "Shelbie Bruce", "character": "Christina", "id": 25907, "credit_id": "52fe435dc3a36847f804eb87", "cast_id": 11, "profile_path": "/8vWag1ptHLrYO1DvuTOkEyCGBbj.jpg", "order": 4}, {"name": "Sarah Steele", "character": "Bernice", "id": 25908, "credit_id": "52fe435dc3a36847f804eb8b", "cast_id": 12, "profile_path": "/3ousg0fVS87CHLSoXRjhKtmJ8Wo.jpg", "order": 5}, {"name": "Ian Hyland", "character": "Georgie", "id": 25909, "credit_id": "52fe435dc3a36847f804eb8f", "cast_id": 13, "profile_path": "/kkDyz4ar65adYaWhUpNkKh07x9y.jpg", "order": 6}, {"name": "Victoria Luna", "character": "Cristina (sechsj\u00e4hrig)", "id": 25910, "credit_id": "52fe435dc3a36847f804eb93", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Cecilia Su\u00e1rez", "character": "Monica", "id": 25911, "credit_id": "52fe435dc3a36847f804eb97", "cast_id": 15, "profile_path": "/rVZA9Q0dCEwHYUUHoz4ZzWoeqEx.jpg", "order": 8}, {"name": "Ricardo Molina", "character": "Flor's Husband", "id": 25912, "credit_id": "52fe435dc3a36847f804eb9b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Brenda Canela", "character": "Luz", "id": 17415, "credit_id": "52fe435dc3a36847f804eb9f", "cast_id": 17, "profile_path": null, "order": 10}], "directors": [{"name": "James L. Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe435dc3a36847f804eb55", "profile_path": "/9Hx9JbnQBChJhlfJTvmnYF8o8DK.jpg", "id": 3388}], "vote_average": 5.4, "runtime": 131}, "61791": {"poster_path": "/ddWSWgAjAhksNhMeeBTSqY6otIA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 482860185, "overview": "Scientist Will Rodman is determined to find a cure for Alzheimer's, the disease which has slowly consumed his father Charles. Will feels certain he is close to a breakthrough and tests his latest serum on apes, noticing dramatic increases in intelligence and brain activity in the primate subjects... Especially Caesar, his pet chimpanzee.", "video": false, "id": 61791, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Rise of the Planet of the Apes", "tagline": "Evolution Becomes Revolution.", "vote_count": 1626, "homepage": "http://www.apeswillrise.com/", "belongs_to_collection": {"backdrop_path": "/mepJpyqVtD6P65vgCU1ngGFEjs5.jpg", "poster_path": "/qQrEMycfVN2gRlKTLWGn0QdOnSk.jpg", "id": 173710, "name": "Planet of the Apes (Reboot) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1318514", "adult": false, "backdrop_path": "/caIpcr9xhvRcWfOMRDq3F5iIcLB.jpg", "production_companies": [{"name": "Dune Entertainment III", "id": 6332}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Ingenious Media", "id": 290}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2011-08-04", "popularity": 1.38463947881165, "original_title": "Rise of the Planet of the Apes", "budget": 93000000, "cast": [{"name": "Andy Serkis", "character": "Caesar", "id": 1333, "credit_id": "52fe4664c3a368484e08e201", "cast_id": 2, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 0}, {"name": "Karin Konoval", "character": "Maurice", "id": 58395, "credit_id": "52fe4664c3a368484e08e219", "cast_id": 9, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 1}, {"name": "Freida Pinto", "character": "Caroline Aranha", "id": 76792, "credit_id": "52fe4664c3a368484e08e205", "cast_id": 3, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 2}, {"name": "James Franco", "character": "Will Rodman", "id": 17051, "credit_id": "52fe4664c3a368484e08e1fd", "cast_id": 1, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 3}, {"name": "John Lithgow", "character": "Charles Rodman", "id": 12074, "credit_id": "5377b16dc3a368553a001f74", "cast_id": 33, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 4}, {"name": "Tyler Labine", "character": "Robert Franklin", "id": 51383, "credit_id": "52fe4664c3a368484e08e209", "cast_id": 4, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 5}, {"name": "David Hewlett", "character": "Hunsiker", "id": 5892, "credit_id": "52fe4664c3a368484e08e20d", "cast_id": 5, "profile_path": "/yntJ7Lur8LmjQ9rTfoVzlKb5WsX.jpg", "order": 6}, {"name": "David Oyelowo", "character": "Steven Jacobs", "id": 35013, "credit_id": "52fe4664c3a368484e08e211", "cast_id": 7, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 7}, {"name": "Brian Cox", "character": "John Landon", "id": 1248, "credit_id": "53bdf4f9c3a3684cdb002d7b", "cast_id": 36, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 8}, {"name": "Tom Felton", "character": "Dodge Landon", "id": 10993, "credit_id": "53bdf507c3a3684cdf0024b5", "cast_id": 37, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 9}, {"name": "Chelah Horsdal", "character": "Irena", "id": 70175, "credit_id": "52fe4664c3a368484e08e215", "cast_id": 8, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 10}, {"name": "Jesse Reid", "character": "Donnie Thompson", "id": 228890, "credit_id": "530ed231c3a368445f0001dc", "cast_id": 22, "profile_path": "/wl5wKdhMBPJMdPS3xRa2vK8ah8i.jpg", "order": 11}, {"name": "Tracy Spiridakos", "character": "Party Girl #2", "id": 208678, "credit_id": "530ed2a9c3a368445f0001e4", "cast_id": 23, "profile_path": "/26lnNaWhQhYDuPXBqhKa9IgXBDL.jpg", "order": 12}, {"name": "Christopher Gordon", "character": "Koda", "id": 189696, "credit_id": "536214760e0a2649bb001301", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Chris Shields", "character": "SFPD #2", "id": 198615, "credit_id": "53aca6be0e0a26598c000772", "cast_id": 35, "profile_path": "/cKxfPfZMqCingbrn6MK3OSUhUVF.jpg", "order": 14}], "directors": [{"name": "Rupert Wyatt", "department": "Directing", "job": "Director", "credit_id": "52fe4664c3a368484e08e21f", "profile_path": "/v3ws9iAETreGVuoHXKGFPkZszgy.jpg", "id": 77357}], "vote_average": 6.8, "runtime": 105}, "242022": {"poster_path": "/qaUeXI9am1IkEoDoccnBy5W6kA4.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Neil, Will and Simon receive an invite from Jay to join him in Australia whilst on his gap year, who promises them it\u2019s \u201dthe sex capital of the world\u201d. With their lives now rather dull compared to their hedonistic school days and legendary lads holiday, it\u2019s an offer they can\u2019t refuse. Once again, they put growing up temporarily on-hold, and embark on a backpacking holiday of a lifetime in an awful car, inspired by Peter Andre\u2019s \u2018Mysterious Girl\u2019. Will soon finds himself battling with the lads to do something cultural, whilst they focus their attention on drinking, girls, and annoying fellow travelers.", "video": false, "id": 242022, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Inbetweeners 2", "tagline": "", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yQyzPIMLpjWmwE2XMui2C4qTXOv.jpg", "id": 279959, "name": "The Inbetweeners Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3097204", "adult": false, "backdrop_path": "/pXeyVGVUXbgid4qOqEtNqJH4pfJ.jpg", "production_companies": [{"name": "Channel 4 Television Corporation", "id": 15276}], "release_date": "2014-08-06", "popularity": 0.25644437257786, "original_title": "The Inbetweeners 2", "budget": 0, "cast": [{"name": "Simon Bird", "character": "Will McKenzie", "id": 218948, "credit_id": "52fe4ec2c3a36847f82a64cd", "cast_id": 1, "profile_path": "/fW6kVI0yb9rhtnPRDBIWlkSWbd2.jpg", "order": 0}, {"name": "James Buckley", "character": "Jay Cartwright", "id": 207321, "credit_id": "52fe4ec2c3a36847f82a64d1", "cast_id": 2, "profile_path": "/lv58w34d9qgqJiLDX5tovxzp8rV.jpg", "order": 1}, {"name": "Blake Harrison", "character": "Neil Sutherland", "id": 222068, "credit_id": "52fe4ec2c3a36847f82a64d5", "cast_id": 3, "profile_path": "/w09kt7eMcuwRSjDVidtfm3WJym2.jpg", "order": 2}, {"name": "Joe Thomas", "character": "Simon Cooper", "id": 224350, "credit_id": "52fe4ec2c3a36847f82a64d9", "cast_id": 4, "profile_path": "/slaXnmyIVxsh6QbRgldVrZkCZnD.jpg", "order": 3}, {"name": "Freddie Stroma", "character": "Ben", "id": 234934, "credit_id": "52fe4ec2c3a36847f82a64dd", "cast_id": 6, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 4}, {"name": "Tamla Kari", "character": "Lucy", "id": 1128191, "credit_id": "53d89f5fc3a3682c43001ad7", "cast_id": 11, "profile_path": "/befV0lrZ4CA1S42IZa2NL2RTbKZ.jpg", "order": 5}, {"name": "Emily Berrington", "character": "Katie", "id": 1208295, "credit_id": "53d89f93c3a3682c28001b7c", "cast_id": 12, "profile_path": "/yKlTBJjRCS2LhyFg1nsGMUvWBZo.jpg", "order": 6}], "directors": [{"name": "Damon Beesley", "department": "Directing", "job": "Director", "credit_id": "52fe4ec2c3a36847f82a64ef", "profile_path": null, "id": 84739}, {"name": "Iain Morris", "department": "Directing", "job": "Director", "credit_id": "52fe4ec2c3a36847f82a64f5", "profile_path": null, "id": 84740}], "vote_average": 6.0, "runtime": 96}, "209263": {"poster_path": "/gPJ7KyzdHVpCaxdiq22sPEmNJZV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25288872, "overview": "Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert \u2014 a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded ex\u2013husband of Marianne...", "video": false, "id": 209263, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Enough Said", "tagline": "", "vote_count": 150, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2390361", "adult": false, "backdrop_path": "/h3X31FLlJSqi8NTZLKjXWJ7q3rs.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2013-10-11", "popularity": 1.04454946001514, "original_title": "Enough Said", "budget": 0, "cast": [{"name": "Julia Louis-Dreyfus", "character": "Eva", "id": 15886, "credit_id": "52fe4d60c3a368484e1e5bbb", "cast_id": 3, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Marianne", "id": 2229, "credit_id": "52fe4d60c3a368484e1e5bbf", "cast_id": 4, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Albert", "id": 4691, "credit_id": "52fe4d60c3a368484e1e5bc3", "cast_id": 5, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Toni Collette", "character": "Sarah", "id": 3051, "credit_id": "52fe4d60c3a368484e1e5bc7", "cast_id": 6, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 3}, {"name": "Ben Falcone", "character": "Will", "id": 170820, "credit_id": "52fe4d60c3a368484e1e5bcb", "cast_id": 7, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 4}, {"name": "Amy Landecker", "character": "Debbie", "id": 357551, "credit_id": "52fe4d60c3a368484e1e5bcf", "cast_id": 8, "profile_path": "/fkieXo1IqcqEIDCGtY8nkiuRwzf.jpg", "order": 5}, {"name": "Michaela Watkins", "character": "Hillary", "id": 113224, "credit_id": "52fe4d60c3a368484e1e5bd3", "cast_id": 9, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 6}, {"name": "Kathleen Rose Perkins", "character": "Fran", "id": 149334, "credit_id": "52fe4d60c3a368484e1e5bd7", "cast_id": 10, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 7}, {"name": "Toby Huss", "character": "Peter", "id": 18271, "credit_id": "52fe4d60c3a368484e1e5bdb", "cast_id": 11, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 8}, {"name": "Eve Hewson", "character": "Tess", "id": 933271, "credit_id": "52fe4d60c3a368484e1e5bdf", "cast_id": 12, "profile_path": "/cDVb2oR75CCflAvEIyTNuEO4ceS.jpg", "order": 9}, {"name": "Christopher Nicholas Smith", "character": "Hal (Massage Client) (as Chris Smith)", "id": 579064, "credit_id": "52fe4d60c3a368484e1e5be3", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Anjelah Johnson-Reyes", "character": "Cathy", "id": 1204646, "credit_id": "52fe4d60c3a368484e1e5be7", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Tracey Fairaway", "character": "Ellen", "id": 558917, "credit_id": "52fe4d60c3a368484e1e5beb", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Phillip Brock", "character": "Jason", "id": 53589, "credit_id": "52fe4d60c3a368484e1e5bef", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Tavi Gevinson", "character": "Chloe", "id": 1142629, "credit_id": "52fe4d60c3a368484e1e5bf3", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Nicole Holofcener", "department": "Directing", "job": "Director", "credit_id": "52fe4d60c3a368484e1e5bb1", "profile_path": "/9fgDpfIsidOFKNiQSPJSrsCHp4x.jpg", "id": 56539}], "vote_average": 6.7, "runtime": 93}, "4464": {"poster_path": "/xzYOaFGZBNAciQXRasQQ8sYxBSi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 148336445, "overview": "True story of the undersized Depression-era racehorse whose victories lifted not only the spirits of the team behind it but also those of their nation.", "video": false, "id": 4464, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Seabiscuit", "tagline": "The hopes of a nation rode on a long shot.", "vote_count": 51, "homepage": "http://www.seabiscuitmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329575", "adult": false, "backdrop_path": "/jtB7e0lwsYsT8J2uDHzrL7zUxlZ.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2003-07-22", "popularity": 0.357834053745223, "original_title": "Seabiscuit", "budget": 87000000, "cast": [{"name": "Jeff Bridges", "character": "Charles Howard", "id": 1229, "credit_id": "52fe43c4c3a36847f806ddb9", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "David McCullough", "character": "Narrator", "id": 37332, "credit_id": "52fe43c4c3a36847f806ddb5", "cast_id": 1, "profile_path": "/p5tbMM29fk0yQO0eXiFPjOb2RNA.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Tom Smith", "id": 2955, "credit_id": "52fe43c4c3a36847f806de29", "cast_id": 21, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Tobey Maguire", "character": "Red Pollard", "id": 2219, "credit_id": "52fe43c4c3a36847f806de2d", "cast_id": 22, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 3}, {"name": "Elizabeth Banks", "character": "Marcela Howard", "id": 9281, "credit_id": "52fe43c4c3a36847f806de31", "cast_id": 23, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 4}, {"name": "Gary L. Stevens", "character": "George Woolf", "id": 38272, "credit_id": "52fe43c4c3a36847f806de35", "cast_id": 24, "profile_path": "/rqkFBLkWbl9EKKOYKqGJOiO5qzo.jpg", "order": 5}, {"name": "William H. Macy", "character": "Tick Tock McGlaughlin", "id": 3905, "credit_id": "52fe43c4c3a36847f806de39", "cast_id": 25, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 6}, {"name": "Royce D. Applegate", "character": "Dutch Doogan", "id": 22251, "credit_id": "52fe43c4c3a36847f806de3d", "cast_id": 26, "profile_path": "/clLumMCdFDvaLa8wMR5L6WkP1u6.jpg", "order": 7}, {"name": "Eddie Jones", "character": "Samuel D. Riddle", "id": 8692, "credit_id": "52fe43c4c3a36847f806de41", "cast_id": 28, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 8}, {"name": "Chris McCarron", "character": "Charley Kurtsinger", "id": 38273, "credit_id": "52fe43c4c3a36847f806de45", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Michael Ensign", "character": "Steamer Owner", "id": 1080265, "credit_id": "52fe43c4c3a36847f806de49", "cast_id": 30, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}], "directors": [{"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806ddbf", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}], "vote_average": 6.3, "runtime": 141}, "37233": {"poster_path": "/2yKjIGzQF5mhG634MwG6oBTH1ce.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 270248367, "overview": "Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by 'The Firm' and made an offer he doesn't refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice - work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan...", "video": false, "id": 37233, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Firm", "tagline": "Power can be murder to resist.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106918", "adult": false, "backdrop_path": "/9nbVWTSZpeRKNKtMM45mSttZito.jpg", "production_companies": [{"name": "Mirage Enterprises", "id": 932}, {"name": "Paramount Pictures", "id": 4}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "1993-06-30", "popularity": 0.664437741622856, "original_title": "The Firm", "budget": 42000000, "cast": [{"name": "Tom Cruise", "character": "Mitch McDeere", "id": 500, "credit_id": "52fe46359251416c9104cee9", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jeanne Tripplehorn", "character": "Abby McDeere", "id": 10478, "credit_id": "52fe46359251416c9104cec1", "cast_id": 2, "profile_path": "/pZcw8RXsRSO9WXHOrQqentISWYv.jpg", "order": 1}, {"name": "Gene Hackman", "character": "Avery Tolar", "id": 193, "credit_id": "52fe46359251416c9104cec5", "cast_id": 3, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 2}, {"name": "Hal Holbrook", "character": "Oliver Lambert", "id": 11066, "credit_id": "52fe46359251416c9104cec9", "cast_id": 4, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 3}, {"name": "Terry Kinney", "character": "Lamar Quinn", "id": 11067, "credit_id": "52fe46359251416c9104cecd", "cast_id": 5, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 4}, {"name": "Wilford Brimley", "character": "William Devasher", "id": 11065, "credit_id": "52fe46359251416c9104ced1", "cast_id": 6, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 5}, {"name": "Ed Harris", "character": "Wayne Tarrance", "id": 228, "credit_id": "52fe46359251416c9104ced5", "cast_id": 7, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 6}, {"name": "Holly Hunter", "character": "Tammy Hemphill", "id": 18686, "credit_id": "52fe46359251416c9104ced9", "cast_id": 8, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 7}, {"name": "David Strathairn", "character": "Ray McDeere", "id": 11064, "credit_id": "52fe46359251416c9104cedd", "cast_id": 9, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 8}, {"name": "Gary Busey", "character": "Eddie Lomax", "id": 2048, "credit_id": "52fe46359251416c9104cee1", "cast_id": 10, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 9}, {"name": "Tobin Bell", "character": "The Nordic Man", "id": 2144, "credit_id": "52fe46359251416c9104cee5", "cast_id": 11, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 10}, {"name": "Steven Hill", "character": "F. Denton Voyles", "id": 21521, "credit_id": "52fe46369251416c9104cef3", "cast_id": 15, "profile_path": "/22WrK1TKbFvL8poji6R61eNNSpJ.jpg", "order": 11}, {"name": "Barbara Garrick", "character": "Kay Quinn", "id": 12932, "credit_id": "52fe46369251416c9104cef7", "cast_id": 16, "profile_path": "/rGnwUug86oil1pZ9whjohbBBRqj.jpg", "order": 12}, {"name": "Jonathan Kaplan", "character": "Lawyer Recruiter", "id": 42171, "credit_id": "54a86823c3a3680c30002819", "cast_id": 21, "profile_path": "/sv953vXFS4YD5BZ4GBjrSWQsiMW.jpg", "order": 13}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe46359251416c9104ceef", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 6.5, "runtime": 154}, "239678": {"poster_path": "/1N2rLlY30vHeOzbPacZsnC8ne4Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41000000, "overview": "When their father passes away, four grown, world-weary siblings return to their childhood home and are requested -- with an admonition -- to stay there together for a week, along with their free-speaking mother (Jane Fonda) and a collection of spouses, exes and might-have-beens. As the brothers and sisters re-examine their shared history and the status of each tattered relationship among those who know and love them best, they reconnect in hysterically funny and emotionally significant ways.", "video": false, "id": 239678, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "This Is Where I Leave You", "tagline": "Welcome Home. Get Uncomfortable.", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1371150", "adult": false, "backdrop_path": "/rff4O6BcvD7pwd7mZJ1fTA6KMQ5.jpg", "production_companies": [{"name": "Spring Creek Productions", "id": 705}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2014-09-19", "popularity": 1.41208588433013, "original_title": "This Is Where I Leave You", "budget": 19800000, "cast": [{"name": "Jason Bateman", "character": "Judd Altman", "id": 23532, "credit_id": "52fe4e97c3a36847f829b1d9", "cast_id": 1, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Tina Fey", "character": "Wendy Altman", "id": 56323, "credit_id": "5420644a0e0a2617a8003271", "cast_id": 13, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 1}, {"name": "Adam Driver", "character": "Phillip Altman", "id": 1023139, "credit_id": "52fe4e98c3a36847f829b1f1", "cast_id": 7, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 2}, {"name": "Rose Byrne", "character": "Penny Moore", "id": 9827, "credit_id": "52fe4e97c3a36847f829b1dd", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 3}, {"name": "Corey Stoll", "character": "Paul Altman", "id": 74541, "credit_id": "52fe4e98c3a36847f829b1e9", "cast_id": 5, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Annie Altman", "id": 17696, "credit_id": "52fe4e97c3a36847f829b1e5", "cast_id": 4, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Connie Britton", "character": "Tracy Sullivan", "id": 86310, "credit_id": "542018550e0a261794002313", "cast_id": 12, "profile_path": "/dbX2i37hwEst6FeL0QH5QgZcsQ3.jpg", "order": 6}, {"name": "Timothy Olyphant", "character": "Horry Callen", "id": 18082, "credit_id": "54206460c3a36879850031b0", "cast_id": 14, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 7}, {"name": "Abigail Spencer", "character": "Quinn Altman", "id": 123725, "credit_id": "52fe4e98c3a36847f829b1ed", "cast_id": 6, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 8}, {"name": "Dax Shepard", "character": "Wade Beaufort", "id": 51298, "credit_id": "5420646e0e0a26179100341c", "cast_id": 15, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 9}, {"name": "Jane Fonda", "character": "Hillary Altman", "id": 6352, "credit_id": "52fe4e97c3a36847f829b1e1", "cast_id": 3, "profile_path": "/t4kIxZrAhxnMyQP8BZFmpPAot0z.jpg", "order": 10}, {"name": "Ben Schwartz", "character": "Rabbi Charles Grodner", "id": 222121, "credit_id": "5420649d0e0a261791003426", "cast_id": 17, "profile_path": "/ty2N3LuUiXO1uKyRg74DUN82xQe.jpg", "order": 11}, {"name": "Aaron Lazar", "character": "Barry Weissman", "id": 964421, "credit_id": "5420648a0e0a2617a8003281", "cast_id": 16, "profile_path": "/7Zcs4ZuivNtaWaPEUkBz0PK9v41.jpg", "order": 12}, {"name": "Debra Monk", "character": "Linda Callen", "id": 10386, "credit_id": "54d095a3c3a368431e002c03", "cast_id": 22, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 13}, {"name": "Cade Lappin", "character": "Cole", "id": 1422396, "credit_id": "54d09a33c3a368430d002c92", "cast_id": 23, "profile_path": "/7oaRVYlCNDUhlLE3ylA8smBXZyU.jpg", "order": 14}, {"name": "Will Swenson", "character": "Younger Mort", "id": 1022885, "credit_id": "54d09c95c3a3684321002c74", "cast_id": 24, "profile_path": "/tDjLvhLQilz2lqlYR3qQC8uT80g.jpg", "order": 15}, {"name": "Carol Schultz", "character": "Woman #1", "id": 1422441, "credit_id": "54d0c11ac3a3680f3700149d", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Kevin McCormick", "character": "Guard #1", "id": 1293730, "credit_id": "54d0c2a29251417c14002e44", "cast_id": 26, "profile_path": "/eWPV5wqArOmZ7Ioep3Exba73Zqp.jpg", "order": 17}, {"name": "Evan Wadle", "character": "Frat Boy #1", "id": 1422450, "credit_id": "54d0c3fac3a368431e00322b", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Olivia Oguma", "character": "Shelby", "id": 1422452, "credit_id": "54d0c51ec3a368430a00357e", "cast_id": 28, "profile_path": "/tfH244GNojw2aP5psGS1S9xaLsx.jpg", "order": 19}, {"name": "Barbara Spiegel", "character": "Woman #2", "id": 1422457, "credit_id": "54d0c70e9251413e0b0018f8", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Gerry Vichi", "character": "Uncle Joe", "id": 5302, "credit_id": "54d0c9379251417c0d0030ae", "cast_id": 30, "profile_path": "/kVPmf696NjAqWzyEIVlPi7HlR5l.jpg", "order": 21}, {"name": "Cheryl Stern", "character": "Lois", "id": 1422460, "credit_id": "54d0c9849251417c1a0030fd", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Beth Leavel", "character": "Renee", "id": 1237381, "credit_id": "54d0cd329251417c16002e0e", "cast_id": 32, "profile_path": "/qikstgQTfgmpAYQoa4rL1uvzUs2.jpg", "order": 23}, {"name": "Carly Brooke", "character": "Chelsea", "id": 1422474, "credit_id": "54d0ce4b9251417c16002e2a", "cast_id": 33, "profile_path": "/fnd76G5PKJGeru13TdPEJiHCEDr.jpg", "order": 24}, {"name": "Michael Bryan French", "character": "Dr. Rausch", "id": 1224374, "credit_id": "54d0d04ac3a368431e0033a6", "cast_id": 34, "profile_path": "/5c4JbJo0yzGzdHgRPjxps0k7Qjp.jpg", "order": 25}, {"name": "Lance Roberts", "character": "Calvin", "id": 1422485, "credit_id": "54d0d20f9251417c0d0031ab", "cast_id": 35, "profile_path": "/yD9Bgr97j0f01QlWBqI3ZdTEjNA.jpg", "order": 26}, {"name": "Carolyn Seiff", "character": "Mrs. Applebaum", "id": 1422488, "credit_id": "54d0d2c7c3a36843140030bd", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Brahm Schenkman", "character": "Little League Dad", "id": 1422492, "credit_id": "54d0d3e19251417c1d003041", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Mia Fram Davidson", "character": "Cantor", "id": 1422494, "credit_id": "54d0d52d9251417c20003155", "cast_id": 38, "profile_path": "/scNFzvUxNMicAiVWY6oIhnk86Jd.jpg", "order": 29}, {"name": "Crystal Anne Dickinson", "character": "Intern", "id": 1422497, "credit_id": "54d0d5ac9251417c1d003074", "cast_id": 39, "profile_path": "/6MLUT6nd6X44qqICZG9T8hphUgk.jpg", "order": 30}, {"name": "Kenneth De Abrew", "character": "Engineer", "id": 1422515, "credit_id": "54d0d72ec3a3680f37001756", "cast_id": 40, "profile_path": "/n1uXe1eDVlhgppxoRLghYwZUSB1.jpg", "order": 31}, {"name": "Oakes Fegley", "character": "Young Judd", "id": 1422517, "credit_id": "54d0d7ca9251417c14003093", "cast_id": 41, "profile_path": "/oo01QqJjOW8NfZwAaB1hCSElFsu.jpg", "order": 32}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4e98c3a36847f829b1f7", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.5, "runtime": 103}, "13788": {"poster_path": "/52iUsw24Xlo89F7jU2dg9uq1BWd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young woman fights the spirit that is slowly taking possession of her.", "video": false, "id": 13788, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Unborn", "tagline": "Evil will do anything to live.", "vote_count": 67, "homepage": "http://www.theunbornmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt1139668", "adult": false, "backdrop_path": "/6tiWjJPSwBIiQiosOQ0oqJe8UHB.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Phantom Four", "id": 423}, {"name": "Relativity Media", "id": 7295}], "release_date": "2009-01-09", "popularity": 0.519844649302121, "original_title": "The Unborn", "budget": 0, "cast": [{"name": "Odette Annable", "character": "Casey Beldon", "id": 51992, "credit_id": "52fe459f9251416c7505ccc1", "cast_id": 1, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Rabbi Sendak", "id": 64, "credit_id": "52fe459f9251416c7505ccc5", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Meagan Good", "character": "Romy", "id": 22122, "credit_id": "52fe459f9251416c7505ccc9", "cast_id": 3, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 2}, {"name": "Cam Gigandet", "character": "Mark Hardigan", "id": 55086, "credit_id": "52fe459f9251416c7505cccd", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 3}, {"name": "Idris Elba", "character": "Arthur Wyndham", "id": 17605, "credit_id": "52fe459f9251416c7505ccef", "cast_id": 10, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 4}, {"name": "Ethan Cutkosky", "character": "Barto", "id": 132213, "credit_id": "52fe459f9251416c7505ccf3", "cast_id": 11, "profile_path": "/puJBOZ6osLqLzEnUqcC5w2BDMjC.jpg", "order": 5}, {"name": "Jane Alexander", "character": "Sofi Kozma", "id": 13724, "credit_id": "52fe459f9251416c7505ccf7", "cast_id": 12, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 6}, {"name": "Atticus Shaffer", "character": "Matty Newton", "id": 66646, "credit_id": "52fe459f9251416c7505ccfb", "cast_id": 13, "profile_path": "/mkAkUn9STorZx8frBoWzM6e1rfD.jpg", "order": 7}, {"name": "James Remar", "character": "Gordon Beldon", "id": 1736, "credit_id": "52fe459f9251416c7505ccff", "cast_id": 14, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 8}, {"name": "Carla Gugino", "character": "Janet Beldon", "id": 17832, "credit_id": "52fe459f9251416c7505cd03", "cast_id": 15, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 9}, {"name": "C.S. Lee", "character": "Dr. Lester Caldwell", "id": 164380, "credit_id": "52fe459f9251416c7505cd07", "cast_id": 16, "profile_path": "/gFceFYo2rGpSIjAJTTbpKLoc5mn.jpg", "order": 10}], "directors": [{"name": "David S. Goyer", "department": "Directing", "job": "Director", "credit_id": "52fe459f9251416c7505ccd3", "profile_path": "/rEaNEwc55QugcpxOH7YwAa9P8mi.jpg", "id": 3893}], "vote_average": 4.9, "runtime": 87}, "20856": {"poster_path": "/oxds3BQ99FdOxiR24Z5I7N5ELwv.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It's summer vacation, but the Pearson family kids are stuck at a boring lake house with their nerdy parents. That is until feisty, little, green aliens crash-land on the roof, with plans to conquer the house AND Earth! Using only their wits, courage and video game-playing skills, the youngsters must band together to defeat the aliens and save the world - but the toughest part might be keeping the whole thing a secret from their parents! Featuring an all-star cast including Ashley Tisdale, Andy Richter, Kevin Nealon, Tim Meadows and Doris Roberts, Aliens In The Attic is the most fun you can have on this planet!", "video": false, "id": 20856, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Aliens in the Attic", "tagline": "The aliens vs. the Pearsons", "vote_count": 63, "homepage": "http://www.aliensintheatticmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0775552", "adult": false, "backdrop_path": "/y66K59c1uxhnM45ZtG5xyOVC8yx.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "Josephson Entertainment", "id": 1894}, {"name": "New Upstairs Productions", "id": 3855}, {"name": "Upstairs Canada Productions", "id": 3856}], "release_date": "2009-07-31", "popularity": 0.421026047211314, "original_title": "Aliens in the Attic", "budget": 0, "cast": [{"name": "Carter Jenkins", "character": "Tom Pearson", "id": 86653, "credit_id": "52fe43fdc3a368484e0097b5", "cast_id": 4, "profile_path": "/6Sph044iNZRupQecuuReiaQT52.jpg", "order": 0}, {"name": "Austin Butler", "character": "Jake Pearson", "id": 86654, "credit_id": "52fe43fdc3a368484e0097b9", "cast_id": 5, "profile_path": "/3TIOELfWkg8rkk0AJVRMlSQFLVJ.jpg", "order": 1}, {"name": "Kevin Nealon", "character": "Stuart Pearson", "id": 58478, "credit_id": "52fe43fdc3a368484e0097bd", "cast_id": 6, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 2}, {"name": "Robert Hoffman", "character": "Ricky Dillman", "id": 58368, "credit_id": "52fe43fdc3a368484e0097c1", "cast_id": 7, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 3}, {"name": "Doris Roberts", "character": "Rose Pearson", "id": 45863, "credit_id": "52fe43fdc3a368484e0097c5", "cast_id": 8, "profile_path": "/4J9jniy4ZEd6NRTfkzq9prKoEIt.jpg", "order": 4}, {"name": "Tim Meadows", "character": "Sheriff Doug Armstrong", "id": 51857, "credit_id": "52fe43fdc3a368484e0097c9", "cast_id": 9, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 5}, {"name": "Ashley Boettcher", "character": "Hannah Pearson", "id": 86655, "credit_id": "52fe43fdc3a368484e0097cd", "cast_id": 10, "profile_path": "/37FCvTRjK2XgknzppoKJd7jm6RM.jpg", "order": 6}, {"name": "Henri Young", "character": "Art Pearson", "id": 86656, "credit_id": "52fe43fdc3a368484e0097d1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Regan Young", "character": "Lee Pearson", "id": 86657, "credit_id": "52fe43fdc3a368484e0097d5", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Ashley Tisdale", "character": "Bethany Pearson", "id": 67600, "credit_id": "52fe43fdc3a368484e0097d9", "cast_id": 13, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 9}, {"name": "Malese Jow", "character": "Julie", "id": 118544, "credit_id": "52fe43fdc3a368484e0097dd", "cast_id": 14, "profile_path": "/cT29b1741g4WCHDnJ21akeq0sWO.jpg", "order": 10}], "directors": [{"name": "John Schultz", "department": "Directing", "job": "Director", "credit_id": "52fe43fdc3a368484e0097a5", "profile_path": "/ePis8HPrAlCrkry1VMaHxsdrq4u.jpg", "id": 79656}], "vote_average": 5.4, "runtime": 86}, "209274": {"poster_path": "/aO8dgaxaY1tcAdtFkLuz1WSxgdd.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "PL", "name": "Poland"}], "revenue": 10700000, "overview": "Poland, 1962. Anna is a novice, an orphan brought up by nuns in a convent. Before she takes her vows, she is determined to see Wanda, her only living relative. Wanda tells Anna that Anna is Jewish. Both women embark on a journey not only to discover their tragic family story, but who they really are and where they belong, questioning their religions and beliefs.", "video": false, "id": 209274, "genres": [{"id": 18, "name": "Drama"}], "title": "Ida", "tagline": "", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt2718492", "adult": false, "backdrop_path": "/rYrhyxdLzniWXRnKYZScKaVcXUN.jpg", "production_companies": [{"name": "Phoenix Film Investments", "id": 44171}, {"name": "Opus Film", "id": 6477}], "release_date": "2013-09-07", "popularity": 0.572602534423009, "original_title": "Ida", "budget": 2159280, "cast": [{"name": "Agata Trzebuchowska", "character": "Anna", "id": 1192772, "credit_id": "52fe4d60c3a368484e1e5d4d", "cast_id": 2, "profile_path": "/8xORB2v5c04MEkiRwdqZ0TJ9fFn.jpg", "order": 0}, {"name": "Agata Kulesza", "character": "Wanda", "id": 566101, "credit_id": "52fe4d60c3a368484e1e5d51", "cast_id": 3, "profile_path": "/vZnsas1ZRUmtwPcmbg4ElEtL5jb.jpg", "order": 1}, {"name": "Joanna Kulig", "character": "Singer", "id": 908548, "credit_id": "52fe4d60c3a368484e1e5d61", "cast_id": 6, "profile_path": "/cHEhGQ7XyxGeInAupSvESNJpUEv.jpg", "order": 2}, {"name": "Dawid Ogrodnik", "character": "Musician", "id": 1277198, "credit_id": "52fe4d60c3a368484e1e5d65", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Adam Szyszkowski", "character": "Feliks Skiba", "id": 1190325, "credit_id": "52fe4d60c3a368484e1e5d69", "cast_id": 8, "profile_path": "/8FlMqAekoOp1sKRFv4EkB8iDdbu.jpg", "order": 4}, {"name": "Jerzy Trela", "character": "Szymon Skiba", "id": 2831, "credit_id": "52fe4d60c3a368484e1e5d6d", "cast_id": 9, "profile_path": "/tE6SG8uXiC81MRrJfE3ZybXsEGR.jpg", "order": 5}, {"name": "Artur Janusiak", "character": "Militia Man", "id": 136735, "credit_id": "52fe4d60c3a368484e1e5d71", "cast_id": 10, "profile_path": null, "order": 6}], "directors": [{"name": "Pawel Pawlikowski", "department": "Directing", "job": "Director", "credit_id": "52fe4d60c3a368484e1e5d49", "profile_path": null, "id": 64194}], "vote_average": 7.0, "runtime": 80}, "209276": {"poster_path": "/t88BhK3e2gEqQn0o9WxhX0He4jo.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "19-year-old Eric, arrogant and ultra-violent, is prematurely transferred to the same adult prison facility as his estranged father. As his explosive temper quickly finds him enemies in both prison authorities and fellow inmates \u2014 and his already volatile relationship with his father is pushed past breaking point \u2014 Eric is approached by a volunteer psychotherapist, who runs an anger management group for prisoners. Torn between gang politics, prison corruption, and a glimmer of something better, Eric finds himself in a fight for his own life, unsure if his own father is there to protect him or join in punishing him.", "video": false, "id": 209276, "genres": [{"id": 18, "name": "Drama"}], "title": "Starred Up", "tagline": "We're all different on the inside.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2567712", "adult": false, "backdrop_path": "/6BPW5wewjls8QU0VYZw30Hc6y2S.jpg", "production_companies": [{"name": "Quickfire Films", "id": 4186}, {"name": "Sigma Films Ltd.", "id": 322}, {"name": "Film4", "id": 9349}, {"name": "Lipsync Productions", "id": 9987}], "release_date": "2013-10-10", "popularity": 1.11203981904541, "original_title": "Starred Up", "budget": 0, "cast": [{"name": "Jack O'Connell", "character": "Eric", "id": 85065, "credit_id": "52fe4d60c3a368484e1e5dbd", "cast_id": 3, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 0}, {"name": "Ben Mendelsohn", "character": "Neville", "id": 77335, "credit_id": "52fe4d60c3a368484e1e5dc1", "cast_id": 4, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 1}, {"name": "Rupert Friend", "character": "Oliver", "id": 36669, "credit_id": "52fe4d60c3a368484e1e5dc5", "cast_id": 5, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 2}, {"name": "David Ajala", "character": "Tyrone", "id": 971049, "credit_id": "52fe4d60c3a368484e1e5dc9", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Peter Ferdinando", "character": "Spencer", "id": 109833, "credit_id": "52fe4d60c3a368484e1e5dcd", "cast_id": 7, "profile_path": "/jrpB6xsVtTQ3f29dhywY5XH7AVP.jpg", "order": 4}, {"name": "Gershwyn Eustache Jnr", "character": "Des", "id": 1192778, "credit_id": "52fe4d60c3a368484e1e5dd1", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Anthony Welsh", "character": "Hassan", "id": 1108724, "credit_id": "52fe4d60c3a368484e1e5dd5", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "David Avery", "character": "Ashley", "id": 1192779, "credit_id": "52fe4d60c3a368484e1e5dd9", "cast_id": 10, "profile_path": null, "order": 7}], "directors": [{"name": "David Mackenzie", "department": "Directing", "job": "Director", "credit_id": "52fe4d60c3a368484e1e5db3", "profile_path": "/oHZ2kkGICUnSbm73BQFK3Hau82f.jpg", "id": 3055}], "vote_average": 7.1, "runtime": 106}, "4477": {"poster_path": "/1zusKhAtJ3YhbuA6J184Vm4INB3.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140807547, "overview": "A police officer uncovers the real identity of his houseguest, an IRA terrorist in hiding.", "video": false, "id": 4477, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Devil's Own", "tagline": "They come from different worlds. They fight for different causes. Now, two men from opposite sides of the law are about to go to war.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118972", "adult": false, "backdrop_path": "/xRYvkp0EQyUzDti2m8PKgD5cZDS.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1997-03-26", "popularity": 0.595601372094303, "original_title": "The Devil's Own", "budget": 90000000, "cast": [{"name": "Brad Pitt", "character": "Frankie McGuire", "id": 287, "credit_id": "52fe43c4c3a36847f806e2b9", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Tom O'Meara", "id": 3, "credit_id": "52fe43c4c3a36847f806e2bd", "cast_id": 3, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Julia Stiles", "character": "Bridget O'Meara", "id": 12041, "credit_id": "52fe43c4c3a36847f806e2c1", "cast_id": 4, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 2}, {"name": "Margaret Colin", "character": "Sheila O'Meara", "id": 8985, "credit_id": "52fe43c5c3a36847f806e2c5", "cast_id": 5, "profile_path": "/A9nBbgguaRqjssJyqTfoFIQgADV.jpg", "order": 3}, {"name": "Rub\u00e9n Blades", "character": "Edwin Diaz", "id": 2049, "credit_id": "52fe43c5c3a36847f806e2c9", "cast_id": 6, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 4}, {"name": "Treat Williams", "character": "Billy Burke", "id": 4515, "credit_id": "52fe43c5c3a36847f806e2cd", "cast_id": 7, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 5}, {"name": "George Hearn", "character": "Peter Fitzsimmons", "id": 38337, "credit_id": "52fe43c5c3a36847f806e2d1", "cast_id": 8, "profile_path": "/rLGq38BNVsSkHpnQDYZNNb108gz.jpg", "order": 6}, {"name": "Mitchell Ryan", "character": "Chief Jim Kelly", "id": 14312, "credit_id": "52fe43c5c3a36847f806e2d5", "cast_id": 9, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 7}, {"name": "Natascha McElhone", "character": "Megan Doherty", "id": 11317, "credit_id": "52fe43c5c3a36847f806e2d9", "cast_id": 10, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 8}, {"name": "Ashley Carin", "character": "Morgan O'Meara", "id": 38338, "credit_id": "52fe43c5c3a36847f806e2dd", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Simon Jones", "character": "Harry Sloan", "id": 37891, "credit_id": "52fe43c5c3a36847f806e2e1", "cast_id": 12, "profile_path": "/5njA1vE91FLp2SrSwKXYcJ6pvf9.jpg", "order": 10}, {"name": "Paul Ronan", "character": "Sean Phelan", "id": 38339, "credit_id": "52fe43c5c3a36847f806e2e5", "cast_id": 13, "profile_path": "/835cl1eteY5tk6zIX9EgwgExgCq.jpg", "order": 11}, {"name": "David O'Hara", "character": "Martin MacDuf", "id": 2482, "credit_id": "52fe43c5c3a36847f806e2e9", "cast_id": 14, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 12}, {"name": "Chance Kelly", "character": "Masked Burglar", "id": 17194, "credit_id": "52fe43c5c3a36847f806e341", "cast_id": 29, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 13}], "directors": [{"name": "Alan J. Pakula", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806e2b5", "profile_path": "/vzvxrcoFirt0LJb0hG0ezP64mYr.jpg", "id": 6349}], "vote_average": 5.7, "runtime": 107}, "37247": {"poster_path": "/itdaGoyXKIAXRrHmchoMsGbwp2y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104397102, "overview": "Recent college graduate Benjamin Braddock is seduced by the wife of his father's business partner, Mrs. Robinson. Benjamin soon finds himself falling in love with her daughter, Elaine, as the affair with Mrs. Robinson mother comes back to haunt him.", "video": false, "id": 37247, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Graduate", "tagline": "This is Benjamin. He's a little worried about his future.", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061722", "adult": false, "backdrop_path": "/gzWOVyMVh7perMkLHo1w1sWcTjE.jpg", "production_companies": [{"name": "Lawrence Turman", "id": 8793}, {"name": "Embassy Pictures Corporation", "id": 419}], "release_date": "1967-12-21", "popularity": 0.529348214374996, "original_title": "The Graduate", "budget": 3000000, "cast": [{"name": "Anne Bancroft", "character": "Mrs. Robinson", "id": 10774, "credit_id": "52fe46369251416c9104d0a3", "cast_id": 1, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Ben Braddock", "id": 4483, "credit_id": "52fe46369251416c9104d0a7", "cast_id": 2, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Katharine Ross", "character": "Elaine Robinson", "id": 9594, "credit_id": "52fe46369251416c9104d0ab", "cast_id": 3, "profile_path": "/KtXzfeLdU8NtwjSPOQ9dvBqQeS.jpg", "order": 2}, {"name": "Murray Hamilton", "character": "Mr. Robinson", "id": 8608, "credit_id": "52fe46369251416c9104d0af", "cast_id": 5, "profile_path": "/w2FAPn8RbGKvyhnj3K0dNySEoDa.jpg", "order": 4}, {"name": "Buck Henry", "character": "Room Clerk", "id": 7795, "credit_id": "52fe46369251416c9104d0b3", "cast_id": 6, "profile_path": "/q0oQ6gZNtzKcxaMtwrhVfhnSznW.jpg", "order": 5}, {"name": "Brian Avery", "character": "Carl Smith", "id": 30050, "credit_id": "52fe46369251416c9104d0b7", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Walter Brooke", "character": "Mr. McGuire", "id": 94402, "credit_id": "52fe46369251416c9104d0bb", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "William Daniels", "character": "Mr. Braddock", "id": 10775, "credit_id": "52fe46369251416c9104d0d1", "cast_id": 12, "profile_path": "/4zIlfvoSPHVTWIpZ9JvZODD8vnn.jpg", "order": 8}, {"name": "Elizabeth Wilson", "character": "Mrs. Braddock", "id": 10776, "credit_id": "52fe46379251416c9104d0f3", "cast_id": 18, "profile_path": "/tXmYFqRiQjuiXgnzBpdzRexROAd.jpg", "order": 9}, {"name": "Norman Fell", "character": "Mr. McCleery", "id": 14064, "credit_id": "52fe46379251416c9104d0f7", "cast_id": 19, "profile_path": "/dRXygz30GtDPswkF59iJUSJCBT7.jpg", "order": 10}, {"name": "Alice Ghostley", "character": "Mrs. Singleman", "id": 8495, "credit_id": "52fe46379251416c9104d0fb", "cast_id": 20, "profile_path": "/byH2NPrSia2OkluSbvAS4HvFU07.jpg", "order": 11}, {"name": "Marion Lorne", "character": "Miss DeWitte", "id": 12501, "credit_id": "52fe46379251416c9104d0ff", "cast_id": 21, "profile_path": "/iBRYqd8geHrBx8SB2hSKmLpZx5W.jpg", "order": 12}, {"name": "Eddra Gale", "character": "Woman on Bus", "id": 5687, "credit_id": "52fe46379251416c9104d103", "cast_id": 22, "profile_path": null, "order": 13}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe46369251416c9104d0c1", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 7.1, "runtime": 106}, "201088": {"poster_path": "/tn07zjNNIJuOsecqTC2JEYA49uU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man is released from prison to help American and Chinese authorities pursue a mysterious cyber criminal. The dangerous search leads them from Chicago to Hong Kong.", "video": false, "id": 201088, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Blackhat", "tagline": "We are no longer in control.", "vote_count": 80, "homepage": "http://www.blackhatthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt2717822", "adult": false, "backdrop_path": "/biw5Nn85iBZZd8GWYO9XXH56VK2.jpg", "production_companies": [{"name": "Forward Pass", "id": 675}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2015-01-16", "popularity": 4.90190817478005, "original_title": "Blackhat", "budget": 70000000, "cast": [{"name": "Chris Hemsworth", "character": "Nicholas Hathaway", "id": 74568, "credit_id": "52fe4c9ec3a368484e1bf347", "cast_id": 4, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Viola Davis", "character": "Carol Barrett", "id": 19492, "credit_id": "52fe4c9ec3a368484e1bf34f", "cast_id": 6, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 1}, {"name": "Tang Wei", "character": "Chen Lien", "id": 38280, "credit_id": "52fe4c9ec3a368484e1bf353", "cast_id": 7, "profile_path": "/sLdrMu4Z3qkoF9KdJbcpTMLvgzy.jpg", "order": 2}, {"name": "Leehom Wang", "character": "Chen Dawai", "id": 134184, "credit_id": "52fe4c9ec3a368484e1bf357", "cast_id": 8, "profile_path": "/7KuBwhVnAH4KYrbiLjhOMxjgrLY.jpg", "order": 3}, {"name": "Andy On", "character": "Alex Trang", "id": 63585, "credit_id": "54b9fc94c3a368145e003022", "cast_id": 18, "profile_path": "/sv74TXme3jxPm9a4fXKdj3rAWGE.jpg", "order": 4}, {"name": "Manny Montana", "character": "Alonzo Reyes", "id": 1182725, "credit_id": "52fe4c9ec3a368484e1bf34b", "cast_id": 5, "profile_path": "/bNzEpQIaxfFjkcKRXUb4spW0w9W.jpg", "order": 5}, {"name": "William Mapother", "character": "Rich Donahue", "id": 15338, "credit_id": "52fe4c9ec3a368484e1bf35b", "cast_id": 9, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 6}, {"name": "Archie Kao", "character": "", "id": 59293, "credit_id": "542470d2c3a368087a004093", "cast_id": 14, "profile_path": "/jWWhcHQTJi1UGR6xP0ZtEA36GmL.jpg", "order": 7}, {"name": "Spencer Garrett", "character": "", "id": 49275, "credit_id": "542470dfc3a3681eca002867", "cast_id": 15, "profile_path": "/ifHCwS6Shlqp1H6N2YVVBo5PAbw.jpg", "order": 8}, {"name": "John Ortiz", "character": "", "id": 40543, "credit_id": "542470e9c3a368086e003f7a", "cast_id": 16, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 9}, {"name": "Holt McCallany", "character": "", "id": 7497, "credit_id": "542470f3c3a368086e003f7d", "cast_id": 17, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 10}, {"name": "Eddie Cheung Siu-Fai", "character": "", "id": 72732, "credit_id": "54d252559251411b690031e7", "cast_id": 19, "profile_path": "/8Yaa6J6G7oji9NBD5psHQXXWXn3.jpg", "order": 11}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe4c9ec3a368484e1bf337", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 5.4, "runtime": 133}, "4488": {"poster_path": "/bPdgBUXaFqlkZzgDsOn2A1EHSaw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59754601, "overview": "Camp counselors are stalked and murdered by an unknown assailant while trying to reopen a summer camp that was the site of a child's drowning.", "video": false, "id": 4488, "genres": [{"id": 27, "name": "Horror"}], "title": "Friday the 13th", "tagline": "They were warned...They are doomed...And on Friday the 13th, nothing will save them.", "vote_count": 122, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080761", "adult": false, "backdrop_path": "/d1DyIWgc80ufW2ENGOMNZRbpq4x.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Georgetown Productions Inc.", "id": 16779}, {"name": "Sean S. Cunningham Films", "id": 17611}], "release_date": "1980-05-09", "popularity": 0.715216048579758, "original_title": "Friday the 13th", "budget": 550000, "cast": [{"name": "Betsy Palmer", "character": "Mrs. Voorhees", "id": 37469, "credit_id": "52fe43c6c3a36847f806e8fb", "cast_id": 2, "profile_path": "/fobAvVbDO5InXgZT2AoVduefQKj.jpg", "order": 0}, {"name": "Adrienne King", "character": "Alice", "id": 37470, "credit_id": "52fe43c6c3a36847f806e8ff", "cast_id": 3, "profile_path": "/xCS2BI8ulvypH1cNVtMGwwr50zt.jpg", "order": 1}, {"name": "Harry Crosby", "character": "Bill", "id": 37471, "credit_id": "52fe43c6c3a36847f806e903", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Laurie Bartram", "character": "Brenda", "id": 37472, "credit_id": "52fe43c6c3a36847f806e907", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Jeannine Taylor", "character": "Marcie Cunningham", "id": 37473, "credit_id": "52fe43c6c3a36847f806e90b", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Kevin Bacon", "character": "Jack Burrell", "id": 4724, "credit_id": "52fe43c6c3a36847f806e90f", "cast_id": 7, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Robbi Morgan", "character": "Annie", "id": 1011510, "credit_id": "52fe43c6c3a36847f806e937", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Mark Nelson", "character": "Ned Rubinstein", "id": 190040, "credit_id": "52fe43c6c3a36847f806e93b", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Peter Brouwer", "character": "Steve Christy", "id": 1081852, "credit_id": "52fe43c6c3a36847f806e93f", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Rex Everhart", "character": "Enos, the Truck Driver", "id": 170970, "credit_id": "52fe43c6c3a36847f806e943", "cast_id": 17, "profile_path": "/pW7GyLaz8QrGpVjnC5vvJVjxTqQ.jpg", "order": 9}, {"name": "Ronn Carroll", "character": "Sgt. Tierney", "id": 174248, "credit_id": "52fe43c6c3a36847f806e947", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Ron Millkie", "character": "Officer Dorf", "id": 1019045, "credit_id": "52fe43c6c3a36847f806e94b", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Walt Gorney", "character": "Crazy Ralph", "id": 1014310, "credit_id": "52fe43c6c3a36847f806e94f", "cast_id": 20, "profile_path": "/uUyk6drqyF7y76eSzX8QpfuTKUj.jpg", "order": 12}, {"name": "Willie Adams", "character": "Barry", "id": 1205570, "credit_id": "52fe43c6c3a36847f806e953", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Debra S. Hayes", "character": "Claudette", "id": 1205571, "credit_id": "52fe43c6c3a36847f806e957", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Dorothy Kobs", "character": "Trudy", "id": 1205572, "credit_id": "52fe43c6c3a36847f806e95b", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Sally Anne Golden", "character": "Sandy", "id": 1205573, "credit_id": "52fe43c6c3a36847f806e95f", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Mary Rocco", "character": "Operator", "id": 1205574, "credit_id": "52fe43c6c3a36847f806e963", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Ken L. Parker", "character": "Doctor", "id": 1205575, "credit_id": "52fe43c6c3a36847f806e967", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Ari Lehman", "character": "Jason Voorhees", "id": 106207, "credit_id": "52fe43c6c3a36847f806e96b", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Noel Cunningham", "character": "Boy in 1958 Camping Circle (uncredited)", "id": 69585, "credit_id": "52fe43c6c3a36847f806e96f", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Irwin Keyes", "character": "Busboy (uncredited)", "id": 13592, "credit_id": "52fe43c6c3a36847f806e973", "cast_id": 29, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 21}, {"name": "Tom Savini", "character": "Man The Knife Killer (uncredited)", "id": 11161, "credit_id": "52fe43c6c3a36847f806e977", "cast_id": 30, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 22}], "directors": [{"name": "Sean S. Cunningham", "department": "Directing", "job": "Director", "credit_id": "52fe43c6c3a36847f806e8f7", "profile_path": "/oX4ZDHQ1T8yyNzSd6FzqMsaF3QQ.jpg", "id": 35475}], "vote_average": 6.4, "runtime": 95}, "12690": {"poster_path": "/5Ql3TsG08yvVBDyV5azOWUVKmuy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20211394, "overview": "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.", "video": false, "id": 12690, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Appaloosa", "tagline": "Feelings get you killed.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0800308", "adult": false, "backdrop_path": "/dNdrWdlOEuisZ1YyafkkPEWAihn.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Axon Films", "id": 21106}, {"name": "Groundswell Productions", "id": 4205}], "release_date": "2008-10-03", "popularity": 0.472052118345897, "original_title": "Appaloosa", "budget": 20000000, "cast": [{"name": "Viggo Mortensen", "character": "Everett Hitch", "id": 110, "credit_id": "52fe45139251416c7504afc3", "cast_id": 4, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Ed Harris", "character": "Virgil Cole", "id": 228, "credit_id": "52fe45139251416c7504afc7", "cast_id": 5, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Allie", "id": 9137, "credit_id": "52fe45139251416c7504afcb", "cast_id": 6, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Jeremy Irons", "character": "Randall Bragg", "id": 16940, "credit_id": "52fe45149251416c7504afcf", "cast_id": 7, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 3}, {"name": "Timothy Spall", "character": "Phil Olson", "id": 9191, "credit_id": "52fe45149251416c7504afd3", "cast_id": 8, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 4}, {"name": "Lance Henriksen", "character": "Ring Shelton", "id": 2714, "credit_id": "52fe45149251416c7504afd7", "cast_id": 9, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 5}, {"name": "Timothy V. Murphy", "character": "Vince", "id": 92949, "credit_id": "52fe45149251416c7504afdb", "cast_id": 10, "profile_path": "/4DKVTjdYONYZV4K5fpCgYQFULKW.jpg", "order": 6}, {"name": "Robert Jauregui", "character": "Marshall Jack Bell", "id": 9566, "credit_id": "52fe45149251416c7504afdf", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Luce Rains", "character": "Dean", "id": 53969, "credit_id": "52fe45149251416c7504afe3", "cast_id": 12, "profile_path": "/1vn8TGhhs1aDSzFHUC0wHp9X9P1.jpg", "order": 8}, {"name": "Gabriel Marantz", "character": "Joe Whittfield", "id": 142331, "credit_id": "52fe45149251416c7504afe7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Cerris Morgan-Moyer", "character": "Tilda", "id": 239210, "credit_id": "52fe45149251416c7504afeb", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "James Gammon", "character": "Earl May", "id": 16433, "credit_id": "52fe45149251416c7504afef", "cast_id": 15, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 11}, {"name": "Tom Bower", "character": "Abner Raines", "id": 19453, "credit_id": "52fe45149251416c7504aff3", "cast_id": 16, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 12}], "directors": [{"name": "Ed Harris", "department": "Directing", "job": "Director", "credit_id": "52fe45139251416c7504afb9", "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "id": 228}], "vote_average": 6.2, "runtime": 115}, "151960": {"poster_path": "/1xw5PaDSEPUMISwslEpmGfwVvZq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219788712, "overview": "Dusty is a cropdusting plane who dreams of competing in a famous aerial race. The problem? He is hopelessly afraid of heights. With the support of his mentor Skipper and a host of new friends, Dusty sets off to make his dreams come true.", "video": false, "id": 151960, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Planes", "tagline": "From above the world of Cars", "vote_count": 245, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGoePWKFLVJlxDWUUJhxSQgmkCa.jpg", "poster_path": "/tvzKXcXiJuUwOlni9MV00LCtqNm.jpg", "id": 270252, "name": "Planes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1691917", "adult": false, "backdrop_path": "/jUe7RbnkLXGYC9MPhdN9cruy4L0.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2013-08-09", "popularity": 1.40349169013061, "original_title": "Planes", "budget": 50000000, "cast": [{"name": "Dane Cook", "character": "Dusty Crophopper (voice)", "id": 31837, "credit_id": "52fe4b129251416c910cef29", "cast_id": 19, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 0}, {"name": "Carlos Alazraqui", "character": "El Chupacabra (voice)", "id": 59784, "credit_id": "52fe4b129251416c910ceee1", "cast_id": 2, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Bravo (voice)", "id": 5576, "credit_id": "52fe4b129251416c910ceef1", "cast_id": 5, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Julia Louis-Dreyfus", "character": "Rochelle (voice)", "id": 15886, "credit_id": "52fe4b129251416c910ceef5", "cast_id": 6, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 3}, {"name": "Brad Garrett", "character": "Chug (voice)", "id": 18, "credit_id": "52fe4b129251416c910ceef9", "cast_id": 7, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 4}, {"name": "Teri Hatcher", "character": "Dottie (voice)", "id": 10742, "credit_id": "52fe4b129251416c910ceefd", "cast_id": 8, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 5}, {"name": "John Cleese", "character": "Bulldog (voice)", "id": 8930, "credit_id": "52fe4b129251416c910cef01", "cast_id": 9, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Anthony Edwards", "character": "Echo (voice)", "id": 11085, "credit_id": "52fe4b129251416c910cef05", "cast_id": 10, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 7}, {"name": "Sinbad", "character": "Roper (voice)", "id": 57119, "credit_id": "52fe4b129251416c910cef09", "cast_id": 11, "profile_path": "/lQ6VVIxpZuwgXJuBX87YwQkXUoq.jpg", "order": 8}, {"name": "Priyanka Chopra", "character": "Ishani (voice)", "id": 77234, "credit_id": "52fe4b129251416c910cef0d", "cast_id": 12, "profile_path": "/cRpnjjP1KWP2AUrT4nRZIwTHOXO.jpg", "order": 9}, {"name": "Stacy Keach", "character": "Skipper (voice)", "id": 825, "credit_id": "52fe4b129251416c910cef11", "cast_id": 13, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 10}, {"name": "Gabriel Iglesias", "character": "Ned/Zed (voice)", "id": 86498, "credit_id": "52fe4b129251416c910cef15", "cast_id": 14, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 11}, {"name": "Roger Craig Smith", "character": "Ripslinger (voice)", "id": 75038, "credit_id": "52fe4b129251416c910cef19", "cast_id": 15, "profile_path": "/kGBdh92GpLs8gA4OaAL5JCDoTjw.jpg", "order": 12}, {"name": "Brent Musburger", "character": "Brent Mustangburger (voice)", "id": 188559, "credit_id": "52fe4b129251416c910cef1d", "cast_id": 16, "profile_path": "/fZXRho9StEBcblGYtplxiFTxD73.jpg", "order": 13}, {"name": "Oliver Kalkofe", "character": "Franz (voice)", "id": 16814, "credit_id": "52fe4b129251416c910cef21", "cast_id": 17, "profile_path": "/zYRrC07j70SKQVbL0BzygzalKUk.jpg", "order": 14}, {"name": "Colin Cowherd", "character": "Colin Cowling (voice)", "id": 1174394, "credit_id": "52fe4b129251416c910cef25", "cast_id": 18, "profile_path": "/iich0WGbodd6gHb4wk9lfKTK3l7.jpg", "order": 15}], "directors": [{"name": "Klay Hall", "department": "Directing", "job": "Director", "credit_id": "52fe4b129251416c910ceeed", "profile_path": null, "id": 111736}], "vote_average": 5.8, "runtime": 91}, "150": {"poster_path": "/rrraPWKiY8T6SEzODxZamqUSv6f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78868508, "overview": "A hard-nosed cop reluctantly teams up with a wise-cracking criminal temporarily paroled to him, in order to track down a killer.", "video": false, "id": 150, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "48 Hrs.", "tagline": "One Cop. One Con. No Mercy.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/dEoWt93RHoXWb0bKyetX0l25SaM.jpg", "poster_path": "/8Dlcb8aDch6sUcWBc8zSSfNbPgG.jpg", "id": 93295, "name": "48 Hrs. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083511", "adult": false, "backdrop_path": "/tK2ElPDTp0pM8w5BZbuaEHbzaHs.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1982-12-09", "popularity": 0.630685333605309, "original_title": "48 Hrs.", "budget": 1000000, "cast": [{"name": "Nick Nolte", "character": "Jack Cates", "id": 1733, "credit_id": "52fe421fc3a36847f800592b", "cast_id": 15, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Reggie Hammond", "id": 776, "credit_id": "52fe421fc3a36847f800592f", "cast_id": 16, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Annette O'Toole", "character": "Elaine", "id": 1734, "credit_id": "52fe421fc3a36847f8005933", "cast_id": 17, "profile_path": "/hFmg2LVQD0w0A9uDNu5na9pQamV.jpg", "order": 2}, {"name": "Frank McRae", "character": "Haden", "id": 1735, "credit_id": "52fe421fc3a36847f8005937", "cast_id": 18, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 3}, {"name": "James Remar", "character": "Albert Ganz", "id": 1736, "credit_id": "52fe421fc3a36847f800593b", "cast_id": 19, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 4}, {"name": "David Patrick Kelly", "character": "Luther", "id": 1737, "credit_id": "52fe421fc3a36847f800593f", "cast_id": 20, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 5}, {"name": "Sonny Landham", "character": "Billy Bear", "id": 1105, "credit_id": "52fe421fc3a36847f8005943", "cast_id": 21, "profile_path": "/dmOpsfsz56FtcrQMfyiivmoEXXP.jpg", "order": 6}, {"name": "Brion James", "character": "Ben Kehoe", "id": 591, "credit_id": "52fe421fc3a36847f8005947", "cast_id": 22, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 7}, {"name": "Kerry Sherman", "character": "Rosalie, Hostage Girl", "id": 1738, "credit_id": "52fe421fc3a36847f800594b", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Jonathan Banks", "character": "Algren", "id": 783, "credit_id": "52fe421fc3a36847f800594f", "cast_id": 24, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 9}, {"name": "James Keane", "character": "Vanzant", "id": 1739, "credit_id": "52fe421fc3a36847f8005953", "cast_id": 25, "profile_path": "/1e2zknHnG1Yp92D3hRQUbXHay9c.jpg", "order": 10}, {"name": "Tara King", "character": "Frizzy, Hotel Desk Clerk", "id": 1740, "credit_id": "52fe421fc3a36847f8005957", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Greta Blackburn", "character": "Lisa, Blonde Hooker", "id": 1741, "credit_id": "52fe421fc3a36847f800595b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Margot Rose", "character": "Casey", "id": 1742, "credit_id": "52fe421fc3a36847f800595f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Denise Crosby", "character": "Sally", "id": 1743, "credit_id": "52fe421fc3a36847f8005963", "cast_id": 29, "profile_path": "/6vJh3H3dTvgnZ1YoHE1qYM1AbRC.jpg", "order": 14}, {"name": "Olivia Brown", "character": "Candy (as Olivia M. Brown)", "id": 154141, "credit_id": "52fe421fc3a36847f800596d", "cast_id": 31, "profile_path": "/9Boq2QunWZy9wC6mU4dN1EZHcGs.jpg", "order": 15}, {"name": "Todd Allen", "character": "Young Cop", "id": 21484, "credit_id": "52fe421fc3a36847f8005971", "cast_id": 32, "profile_path": "/vHGltCZ9ue4xjG6dKfpiNJ47g2g.jpg", "order": 16}, {"name": "Bill Dearth", "character": "Thin Cop", "id": 169003, "credit_id": "52fe421fc3a36847f8005975", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Ned Dowd", "character": "Big Cop", "id": 42006, "credit_id": "52fe421fc3a36847f8005979", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Jim Haynie", "character": "Old Cop", "id": 10380, "credit_id": "52fe421fc3a36847f800597d", "cast_id": 35, "profile_path": "/aFXy2ef18bE6gqibhDoZ7EAsq8n.jpg", "order": 19}, {"name": "Jack Thibeau", "character": "Detective", "id": 14320, "credit_id": "52fe421fc3a36847f8005981", "cast_id": 36, "profile_path": "/ugO5Vb7ZXUz5VMpM9dZghJSt6ui.jpg", "order": 20}, {"name": "Jon St. Elwood", "character": "Plainclothes Man", "id": 164696, "credit_id": "52fe421fc3a36847f8005985", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Clare Nono", "character": "Ruth", "id": 158904, "credit_id": "52fe421fc3a36847f8005989", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Sandy Martin", "character": "Policewoman", "id": 53931, "credit_id": "52fe421fc3a36847f800598d", "cast_id": 39, "profile_path": "/WfdT2V1DxUvoBlgUzeCVq340IH.jpg", "order": 23}, {"name": "Matt Landers", "character": "Bob", "id": 156522, "credit_id": "52fe421fc3a36847f8005991", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Peter Jason", "character": "Cowboy Bartender", "id": 6916, "credit_id": "52fe421fc3a36847f8005995", "cast_id": 41, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 25}, {"name": "Bill Cross", "character": "First Cop", "id": 97976, "credit_id": "52fe421fc3a36847f8005999", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Chris Mulkey", "character": "Second Cop", "id": 15824, "credit_id": "52fe421fc3a36847f800599d", "cast_id": 43, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 27}, {"name": "Marcelino Sanchez", "character": "Parking Lot Attendant (as James Marcelino)", "id": 1132251, "credit_id": "52fe421fc3a36847f80059a1", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Bennie Dobbins", "character": "Road Gang Guard", "id": 949734, "credit_id": "52fe421fc3a36847f80059a5", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Walter Scott", "character": "Road Gang Guard", "id": 16474, "credit_id": "52fe421fc3a36847f80059a9", "cast_id": 46, "profile_path": "/l8uXZW6xypNY7e4wd7a0HqzP6iA.jpg", "order": 30}, {"name": "W. T. Zacha", "character": "Road Gang Guard", "id": 1289388, "credit_id": "52fe421fc3a36847f80059ad", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Bego\u00f1a Plaza", "character": "Indian Hooker", "id": 1289389, "credit_id": "52fe421fc3a36847f80059b1", "cast_id": 48, "profile_path": null, "order": 32}, {"name": "Loyd Catlett", "character": "Prison Guard", "id": 2277, "credit_id": "52fe421fc3a36847f80059b5", "cast_id": 49, "profile_path": "/kdoZBvpFfVnsIsEhT76HF5Aj2zS.jpg", "order": 33}, {"name": "B. G. Fisher", "character": "Prison Guard", "id": 1289390, "credit_id": "52fe421fc3a36847f80059b9", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Reid Cruickshanks", "character": "Prison Guard", "id": 136236, "credit_id": "52fe421fc3a36847f80059bd", "cast_id": 51, "profile_path": null, "order": 35}, {"name": "R. D. Call", "character": "Duty Sergeant", "id": 49832, "credit_id": "52fe421fc3a36847f80059c1", "cast_id": 52, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 36}, {"name": "Brenda Venus", "character": "Hooker", "id": 101762, "credit_id": "52fe421fc3a36847f80059c5", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Gloria Gifford", "character": "Hooker (as Gloria E. Gifford)", "id": 92587, "credit_id": "52fe421fc3a36847f80059c9", "cast_id": 54, "profile_path": null, "order": 38}, {"name": "Nick Dimitri", "character": "Torchy's Patron", "id": 91241, "credit_id": "52fe421fc3a36847f80059cd", "cast_id": 55, "profile_path": null, "order": 39}, {"name": "John Dennis Johnston", "character": "Torchy's Patron", "id": 85869, "credit_id": "52fe421fc3a36847f80059d1", "cast_id": 56, "profile_path": "/c0EIs8wCQehz0bRvao7Qxfot1h3.jpg", "order": 40}, {"name": "Rock A. Walker", "character": "Torchy's Patron", "id": 999700, "credit_id": "52fe421fc3a36847f80059d5", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Dave Moordigian", "character": "Gas Station Attendant", "id": 1289391, "credit_id": "52fe421fc3a36847f80059d9", "cast_id": 58, "profile_path": null, "order": 42}, {"name": "J. Wesley Huston", "character": "Security Guard", "id": 555973, "credit_id": "52fe421fc3a36847f80059dd", "cast_id": 59, "profile_path": null, "order": 43}, {"name": "Gary Pettinger", "character": "Cop with Gun", "id": 174662, "credit_id": "52fe421fc3a36847f80059e1", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Marquerita Wallace", "character": "Bar Girl", "id": 1289392, "credit_id": "52fe421fc3a36847f80059e5", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "Angela Robinson", "character": "Bar Girl", "id": 106703, "credit_id": "52fe421fc3a36847f80059e9", "cast_id": 62, "profile_path": null, "order": 46}, {"name": "Jack Lightsy", "character": "Bartender", "id": 193300, "credit_id": "52fe421fc3a36847f80059ed", "cast_id": 63, "profile_path": null, "order": 47}, {"name": "John Hauk", "character": "Henry Wong", "id": 1118713, "credit_id": "52fe421fc3a36847f80059f1", "cast_id": 64, "profile_path": null, "order": 48}, {"name": "Bob Yanez", "character": "Interrogator", "id": 1289393, "credit_id": "52fe421fc3a36847f80059f5", "cast_id": 65, "profile_path": null, "order": 49}, {"name": "Clint Smith", "character": "Leroy", "id": 214291, "credit_id": "52fe421fc3a36847f80059f9", "cast_id": 66, "profile_path": null, "order": 50}, {"name": "Luis Contreras", "character": "Gang Member", "id": 85870, "credit_id": "52fe421fc3a36847f80059fd", "cast_id": 67, "profile_path": "/1OZ6UwzgLEFWvHJXyOvZTYuYisq.jpg", "order": 51}, {"name": "Suzanne M. Regard", "character": "Cowgirl Dancer", "id": 1289394, "credit_id": "52fe421fc3a36847f8005a01", "cast_id": 68, "profile_path": null, "order": 52}, {"name": "Ola Ray", "character": "Vroman's Dancer", "id": 926, "credit_id": "52fe421fc3a36847f8005a05", "cast_id": 69, "profile_path": null, "order": 53}, {"name": "Bjaye Turner", "character": "Vroman's Dancer", "id": 1289395, "credit_id": "52fe421fc3a36847f8005a09", "cast_id": 70, "profile_path": null, "order": 54}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe421ec3a36847f80058d9", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 6.3, "runtime": 96}, "4512": {"poster_path": "/w71H420Wey0bexfdMQYrCPRNbU1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14711793, "overview": "Everyone in 1880's America knows Jesse James. He's the nation's most notorious criminal, hunted by the law in 10 states. He's also the land's greatest hero, lauded as a Robin Hood by the public. Robert Ford? No one knows him. Not yet. But the ambitious 19-year-old aims to change that. He'll befriend Jesse, ride with his gang. And if that doesn't bring Ford fame, he'll find a deadlier way.", "video": false, "id": 4512, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "The Assassination of Jesse James by the Coward Robert Ford", "tagline": "Beyond the myth lies America's greatest betrayal", "vote_count": 211, "homepage": "http://jessejamesmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443680", "adult": false, "backdrop_path": "/zAh7HC8Tk2D0q3VdMOP6boqNG9N.jpg", "production_companies": [{"name": "Plan B Entertainment", "id": 81}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Virtual Studios", "id": 449}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Jesse Films Inc.", "id": 11252}, {"name": "Alberta Film Entertainment", "id": 3997}], "release_date": "2007-09-20", "popularity": 0.618479745130086, "original_title": "The Assassination of Jesse James by the Coward Robert Ford", "budget": 30000000, "cast": [{"name": "Brad Pitt", "character": "Jesse James", "id": 287, "credit_id": "52fe43c7c3a36847f806eed5", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Casey Affleck", "character": "Robert Ford", "id": 1893, "credit_id": "52fe43c7c3a36847f806eedd", "cast_id": 5, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 1}, {"name": "Sam Shepard", "character": "Frank James", "id": 9880, "credit_id": "52fe43c7c3a36847f806eee9", "cast_id": 8, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 2}, {"name": "Mary-Louise Parker", "character": "Zeralda James", "id": 18248, "credit_id": "52fe43c7c3a36847f806eee1", "cast_id": 6, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 3}, {"name": "Paul Schneider", "character": "Dick Liddil", "id": 15684, "credit_id": "52fe43c7c3a36847f806ef4f", "cast_id": 27, "profile_path": "/u3FUCSYpivGpCliH22PJdCk2pIY.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Wood Hite", "id": 17604, "credit_id": "52fe43c7c3a36847f806ef47", "cast_id": 25, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "Zooey Deschanel", "character": "Dorothy Evans", "id": 11664, "credit_id": "52fe43c7c3a36847f806eed9", "cast_id": 4, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 6}, {"name": "Sam Rockwell", "character": "Charley Ford", "id": 6807, "credit_id": "52fe43c7c3a36847f806eee5", "cast_id": 7, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 7}, {"name": "Garret Dillahunt", "character": "Ed Miller", "id": 39520, "credit_id": "52fe43c7c3a36847f806ef4b", "cast_id": 26, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 8}, {"name": "Brooklynn Proulx", "character": "Mary James", "id": 39518, "credit_id": "52fe43c7c3a36847f806ef3f", "cast_id": 23, "profile_path": "/yqnhEdUSWYZPUxQFUYHptAlgk4h.jpg", "order": 9}, {"name": "Dustin Bollinger", "character": "Tim James", "id": 39519, "credit_id": "52fe43c7c3a36847f806ef43", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Joel McNichol", "character": "Express Messenger", "id": 39521, "credit_id": "52fe43c7c3a36847f806ef53", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "James Defelice", "character": "Baggagemaster", "id": 39522, "credit_id": "52fe43c7c3a36847f806ef57", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "J.C. Roberts", "character": "Engineer", "id": 1149455, "credit_id": "544cf92bc3a36872d2002324", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Alison Elliott", "character": "Martha Bolton", "id": 15675, "credit_id": "544cc64ec3a36872e0001f62", "cast_id": 33, "profile_path": "/lu5ePooNr1mXNPoEJbxcdmZNqEz.jpg", "order": 14}, {"name": "Kailin See", "character": "Sarah Hite", "id": 89247, "credit_id": "544cf8cfc3a36872d80024a5", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Michael Parks", "character": "Henry Craig", "id": 2536, "credit_id": "540401030e0a2658f1009247", "cast_id": 32, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 16}, {"name": "Ted Levine", "character": "Sheriff James Timberlak", "id": 15854, "credit_id": "52fe43c7c3a36847f806eeed", "cast_id": 9, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 17}, {"name": "James Carville", "character": "Thomas T. Crittenden", "id": 60093, "credit_id": "540400e40e0a2658db009302", "cast_id": 31, "profile_path": "/oKNvcitj0Iq4xKmc0AX6tH67iC7.jpg", "order": 18}, {"name": "Nick Cave", "character": "Bowery Saloon Singer", "id": 39516, "credit_id": "53bbbac1c3a3686623001f2b", "cast_id": 30, "profile_path": "/9CksrIXJc8cc6xJ9Um960CiUPje.jpg", "order": 19}], "directors": [{"name": "Andrew Dominik", "department": "Directing", "job": "Director", "credit_id": "52fe43c7c3a36847f806eecb", "profile_path": "/r80gQB1iYTMSjnxQZYqSbvE66tq.jpg", "id": 37618}], "vote_average": 6.8, "runtime": 160}, "4513": {"poster_path": "/mXvIxPkATBU3x3DqiTv0wj4n6YQ.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75304357, "overview": "This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town's husband-and-wife Sheriff team stand between the survivors and certain destruction.", "video": false, "id": 4513, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "30 Days of Night", "tagline": "They're Coming!", "vote_count": 189, "homepage": "http://www.30daysofnight.com/", "belongs_to_collection": {"backdrop_path": "/uKN4mENg8BVeKCxwWXGCvFeUim8.jpg", "poster_path": "/fRAZnIegztYTPsM9eGjSUusKUYM.jpg", "id": 91660, "name": "30 Days of Night Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0389722", "adult": false, "backdrop_path": "/5Fc169O1PRvKSmd9xx4vIemMe9Y.jpg", "production_companies": [{"name": "HorrorFlix", "id": 24339}, {"name": "Columbia Pictures", "id": 5}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Dark Horse Entertainment", "id": 552}], "release_date": "2007-10-17", "popularity": 0.562227590886518, "original_title": "30 Days of Night", "budget": 30000000, "cast": [{"name": "Josh Hartnett", "character": "Eben Oleson", "id": 2299, "credit_id": "52fe43c7c3a36847f806efa7", "cast_id": 4, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Melissa George", "character": "Stella Oleson", "id": 27755, "credit_id": "52fe43c7c3a36847f806efaf", "cast_id": 6, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 1}, {"name": "Ben Foster", "character": "The Stranger", "id": 11107, "credit_id": "52fe43c7c3a36847f806efab", "cast_id": 5, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 2}, {"name": "Danny Huston", "character": "Marlow", "id": 6413, "credit_id": "52fe43c7c3a36847f806efb3", "cast_id": 7, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Mark Boone Junior", "character": "Beau Brower", "id": 534, "credit_id": "52fe43c7c3a36847f806efb7", "cast_id": 8, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 4}, {"name": "Craig Hall", "character": "Wilson Bulosan", "id": 3496, "credit_id": "52fe43c7c3a36847f806efbb", "cast_id": 9, "profile_path": "/e18KUAquVXJcEl9uPC0InR9BLyu.jpg", "order": 5}, {"name": "Manu Bennett", "character": "Billy", "id": 41782, "credit_id": "52fe43c7c3a36847f806f007", "cast_id": 23, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 6}, {"name": "Nathaniel Lees", "character": "Carter Davies", "id": 41784, "credit_id": "52fe43c7c3a36847f806f00b", "cast_id": 24, "profile_path": "/j1w45OYSdNpA9LVd8kDbWRhwXSM.jpg", "order": 7}, {"name": "Elizabeth Hawthorne", "character": "Lucy Ikos", "id": 5533, "credit_id": "52fe43c7c3a36847f806f00f", "cast_id": 25, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 8}, {"name": "Joel Tobeck", "character": "Doug Hertz", "id": 41785, "credit_id": "52fe43c7c3a36847f806f013", "cast_id": 26, "profile_path": "/14Oobz8bwcd3jiqnoCFTQnPBJdB.jpg", "order": 9}, {"name": "Kate Elliott", "character": "Dawn", "id": 167025, "credit_id": "52fe43c7c3a36847f806f01d", "cast_id": 28, "profile_path": "/52Eskx4ybyTY61GLotxCFT4VhSn.jpg", "order": 10}, {"name": "Camille Keenan", "character": "Kirsten Toomey", "id": 1245747, "credit_id": "5480380f9251416e7b001ce4", "cast_id": 57, "profile_path": null, "order": 11}, {"name": "Peter Feeney", "character": "John Riis", "id": 33306, "credit_id": "5480383cc3a36829b200254c", "cast_id": 58, "profile_path": null, "order": 12}, {"name": "Pua Magasiva", "character": "Malekai Hamm", "id": 181900, "credit_id": "5480387ac3a36829b2002557", "cast_id": 59, "profile_path": "/dzp7nK9Tw9tI2dWHPcNzD5q38dP.jpg", "order": 13}], "directors": [{"name": "David Slade", "department": "Directing", "job": "Director", "credit_id": "52fe43c7c3a36847f806ef97", "profile_path": "/ksOn4mssJbmdBX1AvzZF4nCUAiQ.jpg", "id": 27571}], "vote_average": 6.2, "runtime": 113}, "4515": {"poster_path": "/iLuo4swOCHF2a8BlaxXZGdqETUs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three stories told simultaneous in ninety minutes of real time: a Republican Senator who's a presidential hopeful gives an hour-long interview to a skeptical television reporter, detailing a strategy for victory in Afghanistan; two special forces ambushed on an Afghani ridge await rescue as Taliban forces close in; a poli-sci professor at a California college invites a student to re-engage.", "video": false, "id": 4515, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Lions for Lambs", "tagline": "If you don't STAND for something, you might FALL for anything.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0891527", "adult": false, "backdrop_path": "/wEjX9ZSTJ2VYjDOkbFccZKJPqYK.jpg", "production_companies": [{"name": "Andell Entertainment", "id": 1683}, {"name": "MGM", "id": 5899}, {"name": "United Artists", "id": 60}, {"name": "Wildwood Enterprises", "id": 316}, {"name": "Brat Na Pont Productions", "id": 21911}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2007-10-22", "popularity": 0.350554166104082, "original_title": "Lions for Lambs", "budget": 35000000, "cast": [{"name": "Robert Redford", "character": "Dr. Stephen Malley", "id": 4135, "credit_id": "52fe43c7c3a36847f806f05d", "cast_id": 2, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Janine Roth", "id": 5064, "credit_id": "52fe43c7c3a36847f806f061", "cast_id": 3, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Tom Cruise", "character": "Senator Jasper Irving", "id": 500, "credit_id": "52fe43c7c3a36847f806f065", "cast_id": 4, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Ernest", "id": 454, "credit_id": "52fe43c7c3a36847f806f069", "cast_id": 5, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Andrew Garfield", "character": "Todd", "id": 37625, "credit_id": "52fe43c7c3a36847f806f075", "cast_id": 10, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 4}, {"name": "Peter Berg", "character": "Wirey Pink", "id": 36602, "credit_id": "52fe43c7c3a36847f806f0cd", "cast_id": 25, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 5}, {"name": "Derek Luke", "character": "Arian", "id": 15543, "credit_id": "52fe43c7c3a36847f806f06d", "cast_id": 6, "profile_path": "/8aWVcw4JDB76dhKRvUQgDGxInvN.jpg", "order": 6}, {"name": "Jennifer Sommerfeld", "character": "Today Show Host", "id": 37624, "credit_id": "52fe43c7c3a36847f806f071", "cast_id": 9, "profile_path": "/wxLnDRYapdJIcUbWd7rFzSJdFzk.jpg", "order": 7}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe43c7c3a36847f806f059", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 5.2, "runtime": 92}, "4517": {"poster_path": "/kER0eNIgnZ9rlvrk5f2syGWaknK.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "This movie is a Sequel to the First Elizabeth movie from 1998, and takes place in the 15th century, following the virgin queen of England, and her epic battle against the Spanish fleet", "video": false, "id": 4517, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Elizabeth: The Golden Age", "tagline": "Woman. Warrior. Queen.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3YiTOxGX5KZO6P3eg41P50QrRhQ.jpg", "poster_path": "/2XxIeKB6g21GvPmixWyyc9ZlLnR.jpg", "id": 100286, "name": "Elizabeth Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414055", "adult": false, "backdrop_path": "/iLEh8hB3YVr3NgLmAFHPsMPLirU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}], "release_date": "2007-09-09", "popularity": 1.11715115372139, "original_title": "Elizabeth: The Golden Age", "budget": 25000000, "cast": [{"name": "Cate Blanchett", "character": "Elizabeth I", "id": 112, "credit_id": "52fe43c8c3a36847f806f1c3", "cast_id": 5, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Clive Owen", "character": "Sir Walter Raleigh", "id": 2296, "credit_id": "52fe43c8c3a36847f806f1c7", "cast_id": 6, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 1}, {"name": "Geoffrey Rush", "character": "Sir Francis Walsingham", "id": 118, "credit_id": "52fe43c8c3a36847f806f1cb", "cast_id": 7, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Amyas Paulet", "id": 2441, "credit_id": "52fe43c8c3a36847f806f1cf", "cast_id": 8, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Abbie Cornish", "character": "Elizabeth Throckmorton", "id": 37260, "credit_id": "52fe43c8c3a36847f806f1d3", "cast_id": 9, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 4}, {"name": "Rhys Ifans", "character": "Robert Reston", "id": 7026, "credit_id": "52fe43c8c3a36847f806f1d7", "cast_id": 10, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 5}, {"name": "Jordi Moll\u00e0", "character": "Philip II", "id": 31384, "credit_id": "52fe43c8c3a36847f806f20b", "cast_id": 19, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 6}, {"name": "Samantha Morton", "character": "Queen Mary", "id": 2206, "credit_id": "52fe43c8c3a36847f806f20f", "cast_id": 20, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 7}, {"name": "Eddie Redmayne", "character": "Babington", "id": 37632, "credit_id": "52fe43c8c3a36847f806f213", "cast_id": 21, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 8}, {"name": "Adrian Scarborough", "character": "Calley", "id": 40311, "credit_id": "54e9e86e9251412eb8003eec", "cast_id": 81, "profile_path": null, "order": 9}, {"name": "Adam Godley", "character": "William Walsingham", "id": 23429, "credit_id": "54e9e8a49251412eb100400d", "cast_id": 82, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 10}, {"name": "Christian Brassington", "character": "Archduke Charles", "id": 118037, "credit_id": "54e9e8d59251412eb4003db4", "cast_id": 83, "profile_path": null, "order": 11}, {"name": "Robert Cambrinus", "character": "Count Georg von Helfenstein", "id": 1423944, "credit_id": "54e9e90fc3a36836e000407f", "cast_id": 84, "profile_path": null, "order": 12}, {"name": "David Threlfall", "character": "Dr. John Dee", "id": 59081, "credit_id": "54e9e950c3a36836d9003db4", "cast_id": 85, "profile_path": "/qhjrbokMi1DYcrL4B8YuIr3IT5y.jpg", "order": 13}, {"name": "Vidal Sancho", "character": "Spanish Minister", "id": 1188323, "credit_id": "54e9e9859251412ebd003feb", "cast_id": 86, "profile_path": null, "order": 14}], "directors": [{"name": "Shekhar Kapur", "department": "Directing", "job": "Director", "credit_id": "52fe43c8c3a36847f806f1ad", "profile_path": "/tscFnAwxOok4DgFE7uaJhUMk7vc.jpg", "id": 37630}], "vote_average": 6.3, "runtime": 114}, "4518": {"poster_path": "/y4ynYOy205LorkOIN6hs6DgJ1xa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82102070, "overview": "This film details the ascension to the throne and the early reign of Queen Elizabeth the First, as played by Cate Blanchett. The main focus is the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.", "video": false, "id": 4518, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Elizabeth", "tagline": "Declared illegitimate aged 3. Tried for treason aged 21. Crowned Queen aged 25.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3YiTOxGX5KZO6P3eg41P50QrRhQ.jpg", "poster_path": "/2XxIeKB6g21GvPmixWyyc9ZlLnR.jpg", "id": 100286, "name": "Elizabeth Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0127536", "adult": false, "backdrop_path": "/sDTXw1lvMfQncRihHAugOzQ3qn1.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}, {"name": "Channel Four Films", "id": 181}], "release_date": "1998-09-13", "popularity": 0.277515583930732, "original_title": "Elizabeth", "budget": 30000000, "cast": [{"name": "Cate Blanchett", "character": "Elisabeth I", "id": 112, "credit_id": "52fe43c8c3a36847f806f25b", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Geoffrey Rush", "character": "Sir Francis Walsingham", "id": 118, "credit_id": "52fe43c8c3a36847f806f2ad", "cast_id": 16, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 1}, {"name": "Christopher Eccleston", "character": "Duke of Norfolk", "id": 2040, "credit_id": "52fe43c8c3a36847f806f2b1", "cast_id": 17, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 2}, {"name": "Joseph Fiennes", "character": "Robert Dudley", "id": 12763, "credit_id": "52fe43c8c3a36847f806f2b5", "cast_id": 18, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 3}, {"name": "Richard Attenborough", "character": "Sir William Cecil", "id": 4786, "credit_id": "52fe43c8c3a36847f806f2b9", "cast_id": 19, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 4}, {"name": "Fanny Ardant", "character": "Mary of Guise", "id": 20234, "credit_id": "52fe43c8c3a36847f806f2bd", "cast_id": 20, "profile_path": "/ys1DzohNJqKIyefq4NzdYk5Z1vZ.jpg", "order": 5}, {"name": "Eric Cantona", "character": "Monsieur de Foix", "id": 37758, "credit_id": "52fe43c8c3a36847f806f2c1", "cast_id": 21, "profile_path": "/tevcJNgEMt8ZDbXFvnWBidrxxek.jpg", "order": 6}, {"name": "Vincent Cassel", "character": "Duc d'Anjou", "id": 1925, "credit_id": "52fe43c8c3a36847f806f2c5", "cast_id": 22, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 7}, {"name": "Kathy Burke", "character": "Queen Mary", "id": 37759, "credit_id": "52fe43c8c3a36847f806f2c9", "cast_id": 23, "profile_path": "/3VjQaOV0Wyy1tzwxKI5Os5ZqID8.jpg", "order": 8}, {"name": "Edward Hardwicke", "character": "Earl of Arundel", "id": 3545, "credit_id": "52fe43c8c3a36847f806f2cd", "cast_id": 24, "profile_path": "/9cIe4QxtMtiVrhsUAJtjvAKJRTB.jpg", "order": 9}, {"name": "Emily Mortimer", "character": "Kat Ashley", "id": 1246, "credit_id": "52fe43c8c3a36847f806f2d1", "cast_id": 25, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 10}, {"name": "John Gielgud", "character": "The Pope", "id": 11857, "credit_id": "52fe43c8c3a36847f806f2d5", "cast_id": 26, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 11}, {"name": "James Frain", "character": "Alvaro de la Quadra", "id": 22063, "credit_id": "52fe43c8c3a36847f806f2d9", "cast_id": 27, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 12}, {"name": "Kelly Macdonald", "character": "Isabel Knollys", "id": 9015, "credit_id": "52fe43c8c3a36847f806f2dd", "cast_id": 28, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 13}, {"name": "Kenny Doughty", "character": "Sir Thomas Elyot", "id": 37760, "credit_id": "52fe43c8c3a36847f806f2e1", "cast_id": 29, "profile_path": "/7toqP6Xv8pk4PX9er3ddzrz3wbx.jpg", "order": 14}, {"name": "Daniel Craig", "character": "John Ballard", "id": 8784, "credit_id": "52fe43c8c3a36847f806f2e5", "cast_id": 30, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 15}, {"name": "Alfie Allen", "character": "Arundel's Son", "id": 71586, "credit_id": "538cfaa9c3a368714e003510", "cast_id": 31, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 16}, {"name": "Jamie Foreman", "character": "Earl of Sussex", "id": 3543, "credit_id": "54e8726a9251412ebd001ac0", "cast_id": 66, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 17}], "directors": [{"name": "Shekhar Kapur", "department": "Directing", "job": "Director", "credit_id": "52fe43c8c3a36847f806f257", "profile_path": "/tscFnAwxOok4DgFE7uaJhUMk7vc.jpg", "id": 37630}], "vote_average": 6.9, "runtime": 124}, "225703": {"poster_path": "/hyTcu6nfMnKUHuD9O5pssHpZ3RB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A spoof movie that references The Hunger Games, The Avengers, Sherlock Holmes, and the Harry Potter saga.", "video": false, "id": 225703, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Starving Games", "tagline": "From the guys who cooked up 'Date Movie', 'Meet the Spartans' and 'Vampires Suck'", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2403029", "adult": false, "backdrop_path": "/JQIlUIjOvMBN6IEjHGaEiBEJPl.jpg", "production_companies": [{"name": "Louisiana Production Consultants", "id": 23898}], "release_date": "2013-11-08", "popularity": 0.00787989681348329, "original_title": "The Starving Games", "budget": 0, "cast": [{"name": "Brant Daugherty", "character": "Dale", "id": 1211093, "credit_id": "52fe4e679251416c751553ed", "cast_id": 1, "profile_path": "/xNGRWJUGFsAUu8hs60jVXnBmwTG.jpg", "order": 0}, {"name": "Maiara Walsh", "character": "Kantmiss Evershot", "id": 144288, "credit_id": "52fe4e679251416c751553f1", "cast_id": 2, "profile_path": "/dtjctiSXC5tmNXHozaX3P9MnyEM.jpg", "order": 1}, {"name": "Lauren Bowles", "character": "Effoff", "id": 168326, "credit_id": "52fe4e679251416c751553f5", "cast_id": 3, "profile_path": "/pGLvRMdrTObr3Xg5mxfuMIz3nmt.jpg", "order": 2}, {"name": "Cody Christian", "character": "Peter Malarky", "id": 219664, "credit_id": "52fe4e679251416c751553f9", "cast_id": 4, "profile_path": "/gSLScst1RS1c20ls5ESkIsESx3V.jpg", "order": 3}, {"name": "Diedrich Bader", "character": "President Snowballs", "id": 5727, "credit_id": "52fe4e679251416c75155409", "cast_id": 10, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 4}, {"name": "Ashton Leigh", "character": "Dos Equis Girl", "id": 1268071, "credit_id": "52fe4e679251416c7515540d", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Joseph Aviel", "character": "Arnold Schwarzenegger", "id": 1268072, "credit_id": "52fe4e679251416c75155411", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Eric Buarque", "character": "Bruce Willis", "id": 1268073, "credit_id": "52fe4e679251416c75155415", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Alice Ford", "character": "Zitty Girl", "id": 1268074, "credit_id": "52fe4e679251416c75155419", "cast_id": 14, "profile_path": null, "order": 8}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe4e679251416c751553ff", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4e679251416c7515541f", "profile_path": null, "id": 35734}], "vote_average": 4.4, "runtime": 83}, "242090": {"poster_path": "/7l0ZU5rshMtnqrHXJkvpyyeDjjh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On the brink of separation, Ethan and Sophie escape to a beautiful vacation house for a weekend getaway in an attempt to save their marriage. What begins as a romantic and fun retreat soon becomes surreal, when an unexpected discovery forces the two to examine themselves, their relationship, and their future.", "video": false, "id": 242090, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The One I Love", "tagline": "", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2756032", "adult": false, "backdrop_path": "/cAEtrRXMihiM68RDb6rxyUdep0k.jpg", "production_companies": [{"name": "Radius-TWC", "id": 20671}], "release_date": "2014-08-08", "popularity": 0.33554704826576, "original_title": "The One I Love", "budget": 0, "cast": [{"name": "Mark Duplass", "character": "Ethan", "id": 45407, "credit_id": "52fe4ec5c3a36847f82a6d03", "cast_id": 5, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 0}, {"name": "Elisabeth Moss", "character": "Sophie", "id": 32798, "credit_id": "52fe4ec5c3a36847f82a6cff", "cast_id": 4, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 1}, {"name": "Ted Danson", "character": "The Therapist", "id": 12836, "credit_id": "52fe4ec5c3a36847f82a6cfb", "cast_id": 3, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 2}, {"name": "Kiana Cason", "character": "Waitress", "id": 1374984, "credit_id": "54418f4ec3a3683e0b00041c", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Kaitlyn Dodson", "character": "Diner Patron", "id": 1375090, "credit_id": "54421eb2c3a3683dfb001645", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Lori Farrar", "character": "Diner Patron", "id": 1375093, "credit_id": "54421ec7c3a3683dfb00164f", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Marlee Matlin", "character": "Diner Patron", "id": 19797, "credit_id": "54421eeac3a3683e0e0015e6", "cast_id": 9, "profile_path": "/rE27IELBnYIMta5nvJmjjC4rsVg.jpg", "order": 6}, {"name": "Tim Peddicord", "character": "Diner Patron", "id": 1417299, "credit_id": "54c1c900c3a36878d0002d3f", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Ryan Pederson", "character": "Diner Patron", "id": 1417300, "credit_id": "54c1c90c9251416e6000c3a1", "cast_id": 11, "profile_path": null, "order": 8}], "directors": [{"name": "Charlie McDowell", "department": "Directing", "job": "Director", "credit_id": "52fe4ec5c3a36847f82a6cf1", "profile_path": null, "id": 82226}], "vote_average": 6.8, "runtime": 91}, "4523": {"poster_path": "/syHRHMysV3B7DFOf88McrJl7yim.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 340487652, "overview": "The beautiful princess Giselle is banished by an evil queen from her magical, musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a \"happily ever after\" basis, Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?", "video": false, "id": 4523, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Enchanted", "tagline": "This fairytale princess is about to meet a real Prince Charming", "vote_count": 261, "homepage": "http://disney.go.com/disneypictures/enchanted/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0461770", "adult": false, "backdrop_path": "/9l5Nzo1qbEslfCu2NYWimpZ1Vkc.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Josephson Entertainment", "id": 1894}, {"name": "Andalasia Productions", "id": 8908}, {"name": "Right Coast Productions", "id": 8909}], "release_date": "2007-11-20", "popularity": 1.31420483417481, "original_title": "Enchanted", "budget": 85000000, "cast": [{"name": "Patrick Dempsey", "character": "Robert Philip", "id": 18352, "credit_id": "52fe43c8c3a36847f806f49b", "cast_id": 2, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 0}, {"name": "Amy Adams", "character": "Giselle", "id": 9273, "credit_id": "52fe43c8c3a36847f806f49f", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "James Marsden", "character": "Prince Edward", "id": 11006, "credit_id": "52fe43c8c3a36847f806f4a3", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 2}, {"name": "Timothy Spall", "character": "Nathaniel", "id": 9191, "credit_id": "52fe43c8c3a36847f806f4a7", "cast_id": 5, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 3}, {"name": "Rachel Covey", "character": "Morgan Philip", "id": 38192, "credit_id": "52fe43c8c3a36847f806f4ab", "cast_id": 6, "profile_path": "/l9CpCXAguKGTXaI5h0OX8WUsCAy.jpg", "order": 4}, {"name": "Susan Sarandon", "character": "Queen Narissa", "id": 4038, "credit_id": "52fe43c8c3a36847f806f4af", "cast_id": 7, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 5}, {"name": "Idina Menzel", "character": "Nancy Tremaine", "id": 19394, "credit_id": "52fe43c8c3a36847f806f4b3", "cast_id": 8, "profile_path": "/h7xxQ7jVPBy5jjOsE89V3LSAkns.jpg", "order": 6}, {"name": "Julie Andrews", "character": "Narrator", "id": 5823, "credit_id": "52fe43c8c3a36847f806f4b7", "cast_id": 9, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 7}, {"name": "Jeff Bennett", "character": "Pip in Andalasia", "id": 34982, "credit_id": "52fe43c8c3a36847f806f509", "cast_id": 23, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 8}, {"name": "Kevin Lima", "character": "Pip in New York", "id": 15775, "credit_id": "52fe43c8c3a36847f806f50d", "cast_id": 24, "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "order": 9}, {"name": "Emma Rose Lima", "character": "Rapunzel", "id": 42914, "credit_id": "52fe43c8c3a36847f806f511", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Teala Dunn", "character": "Bunny", "id": 42915, "credit_id": "52fe43c8c3a36847f806f515", "cast_id": 26, "profile_path": "/lLInIMNHohwplJu5XFp9ujFxQMs.jpg", "order": 11}, {"name": "Fred Tatasciore", "character": "Troll", "id": 60279, "credit_id": "52fe43c8c3a36847f806f519", "cast_id": 27, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 12}, {"name": "Courtney Williams", "character": "Singlass Street Vendor", "id": 1209404, "credit_id": "52fe43c8c3a36847f806f51d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "William Huntley", "character": "Grumpy", "id": 1279550, "credit_id": "52fe43c8c3a36847f806f521", "cast_id": 29, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Lima", "department": "Directing", "job": "Director", "credit_id": "52fe43c8c3a36847f806f497", "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "id": 15775}], "vote_average": 6.3, "runtime": 107}, "242095": {"poster_path": "/aop90vZ5MBQLd1amdBkpqqfZgtP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three college students on a road trip across the Southwest experience a detour \u2013 the tracking of a computer genius who has already hacked into MIT and exposed security faults. When the trio find themselves drawn to an eerily isolated area, suddenly everything goes dark. When one of the students regains consciousness, he finds himself in a waking nightmare.", "video": false, "id": 242095, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Signal", "tagline": "R U Agitated?", "vote_count": 178, "homepage": "https://www.facebook.com/thesignalfilm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2910814", "adult": false, "backdrop_path": "/4vkT927R5JlNE7UeOsBnIw4uAqA.jpg", "production_companies": [{"name": "Low Spark Films", "id": 28286}, {"name": "Automatik Entertainment", "id": 28163}], "release_date": "2014-06-13", "popularity": 0.893174501175823, "original_title": "The Signal", "budget": 4000000, "cast": [{"name": "Brenton Thwaites", "character": "Nic Eastman", "id": 1017347, "credit_id": "52fe4ec5c3a36847f82a6d89", "cast_id": 1, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Dr. Wallace Damon", "id": 2975, "credit_id": "52fe4ec5c3a36847f82a6d8d", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Olivia Cooke", "character": "Haley Peterson", "id": 1173984, "credit_id": "52fe4ec5c3a36847f82a6d99", "cast_id": 5, "profile_path": "/5C8XBogUpSPA2fk9YeiCDJzroLk.jpg", "order": 2}, {"name": "Lin Shaye", "character": "Mirabelle", "id": 7401, "credit_id": "52fe4ec5c3a36847f82a6d95", "cast_id": 4, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 4}, {"name": "Beau Knapp", "character": "Jonah Breck", "id": 1078613, "credit_id": "52fe4ec5c3a36847f82a6d9d", "cast_id": 6, "profile_path": "/l7gVvAILEZch00Axn3u3joCPr85.jpg", "order": 5}, {"name": "Robert Longstreet", "character": "James", "id": 79416, "credit_id": "552b9af6c3a3681f5c00679c", "cast_id": 58, "profile_path": "/kOPNnIzXzE2VbGlDBXLzOf2juwu.jpg", "order": 6}], "directors": [{"name": "William Eubank", "department": "Directing", "job": "Director", "credit_id": "52fe4ec5c3a36847f82a6da3", "profile_path": null, "id": 125324}], "vote_average": 5.9, "runtime": 95}, "82675": {"poster_path": "/vknVdfSLjPwdfH1Bnzl7RU5tgKQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 363498446, "overview": "In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.", "video": false, "id": 82675, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Taken 2", "tagline": "First they took his daughter. Now they're coming for him.", "vote_count": 1324, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hO1R1TI429PjkOjby4dTPBrWFwn.jpg", "poster_path": "/4PNFiSaJWvWhkdOw0KF9Vf7v3gC.jpg", "id": 135483, "name": "Taken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1397280", "adult": false, "backdrop_path": "/uLQjXZq6307jTgcACnhOeh5mCK2.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "EuropaCorp", "id": 6896}, {"name": "M6 Films", "id": 1115}, {"name": "Cin\u00e9+", "id": 23616}], "release_date": "2012-10-04", "popularity": 2.13723790536814, "original_title": "Taken 2", "budget": 80000000, "cast": [{"name": "Liam Neeson", "character": "Bryan Mills", "id": 3896, "credit_id": "52fe48679251416c9108b3ed", "cast_id": 11, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Maggie Grace", "character": "Kim", "id": 11825, "credit_id": "52fe48679251416c9108b3f1", "cast_id": 12, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Lenore", "id": 10696, "credit_id": "52fe48679251416c9108b3f5", "cast_id": 13, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Rade \u0160erbed\u017eija", "character": "Murad", "id": 1118, "credit_id": "52fe48679251416c9108b3f9", "cast_id": 14, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 3}, {"name": "Luke Grimes", "character": "Jamie", "id": 56680, "credit_id": "52fe48679251416c9108b3fd", "cast_id": 15, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 4}, {"name": "Jon Gries", "character": "Casey", "id": 9629, "credit_id": "52fe48679251416c9108b401", "cast_id": 16, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 5}, {"name": "Leland Orser", "character": "Sam", "id": 2221, "credit_id": "52fe48679251416c9108b405", "cast_id": 18, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 6}, {"name": " D.B. Sweeney", "character": "Bernie", "id": 61962, "credit_id": "52fe48679251416c9108b409", "cast_id": 19, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 7}, {"name": "Kevork Malikyan", "character": "Inspector Durmaz", "id": 743, "credit_id": "52fe48679251416c9108b40d", "cast_id": 20, "profile_path": "/aq3elIciFeSrvbVyDNeoozQqLnm.jpg", "order": 8}, {"name": "Alain Figlarz", "character": "Suko", "id": 238393, "credit_id": "52fe48679251416c9108b411", "cast_id": 21, "profile_path": "/u0cOZyBWRSxu0j3Ez9iKD5vUez.jpg", "order": 9}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "52fe48679251416c9108b3b3", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 6.0, "runtime": 91}, "4538": {"poster_path": "/47AGp0EKNMjqBBPaxRYDW0Sc5If.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24377151, "overview": "Three American brothers who have not spoken to each other in a year set off on a train voyage across India with a plan to find themselves and bond with each other -- to become brothers again like they used to be. Their \"spiritual quest\", however, veers rapidly off-course (due to events involving over-the-counter pain killers, Indian cough syrup, and pepper spray).", "video": false, "id": 4538, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Darjeeling Limited", "tagline": "", "vote_count": 204, "homepage": "http://www.foxsearchlight.com/thedarjeelinglimited/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "bo", "name": ""}], "imdb_id": "tt0838221", "adult": false, "backdrop_path": "/eKvQzgzJ205IPFNjHwSbqNZyXx6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2007-09-29", "popularity": 0.8909464107527, "original_title": "The Darjeeling Limited", "budget": 0, "cast": [{"name": "Owen Wilson", "character": "Francis", "id": 887, "credit_id": "52fe43c9c3a36847f806fb67", "cast_id": 15, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Jason Schwartzman", "character": "Jack", "id": 17881, "credit_id": "52fe43c9c3a36847f806fb6b", "cast_id": 16, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 1}, {"name": "Adrien Brody", "character": "Peter", "id": 3490, "credit_id": "52fe43c9c3a36847f806fb6f", "cast_id": 17, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 2}, {"name": "Bill Murray", "character": "The Businessman", "id": 1532, "credit_id": "52fe43c9c3a36847f806fb73", "cast_id": 19, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Anjelica Huston", "character": "Patricia", "id": 5657, "credit_id": "52fe43cac3a36847f806fb77", "cast_id": 20, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 4}, {"name": "Camilla Rutherford", "character": "Alice", "id": 38809, "credit_id": "52fe43cac3a36847f806fb7b", "cast_id": 21, "profile_path": "/5Zo00BGDlGjnkZQjzuDie8wnURp.jpg", "order": 5}, {"name": "Wallace Wolodarsky", "character": "Brendan", "id": 486, "credit_id": "52fe43cac3a36847f806fb7f", "cast_id": 22, "profile_path": "/dvmEq92L4UwL20uO2BOQ8vnpPBP.jpg", "order": 6}, {"name": "Natalie Portman", "character": "Jack's X-Girlfriend", "id": 524, "credit_id": "52fe43cac3a36847f806fb83", "cast_id": 23, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 7}, {"name": "Amara Karan", "character": "Rita", "id": 66443, "credit_id": "52fe43cac3a36847f806fb87", "cast_id": 24, "profile_path": "/i569UYNetmBMvdfC35TT3ghIbYZ.jpg", "order": 8}, {"name": "Waris Ahluwalia", "character": "The Chief Steward", "id": 5301, "credit_id": "5335ea909251411a2c000056", "cast_id": 25, "profile_path": "/608mxzVDmbQtWt3IedJyQ72FNg5.jpg", "order": 9}, {"name": "Irrfan Khan", "character": "The Father", "id": 76793, "credit_id": "5335eaa09251411a1a00007e", "cast_id": 26, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 10}, {"name": "Barbet Schroeder", "character": "The Mechanic", "id": 23393, "credit_id": "5335eaaf9251411a1a000080", "cast_id": 27, "profile_path": "/zgsgO9eVfSi9BOXbjvjyVsWAE5J.jpg", "order": 11}, {"name": "Kumar Pallana", "character": "Old Man", "id": 8690, "credit_id": "5335eac89251411a20000085", "cast_id": 28, "profile_path": "/emTPxZIt9j8d4FcKMSpX3eDq0tO.jpg", "order": 12}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43c9c3a36847f806fb15", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.1, "runtime": 91}, "10314": {"poster_path": "/2kWpjQ3O6DZywdIoPlvXCk3T91P.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103166989, "overview": "High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs -- and help her to become the school's next prom queen.", "video": false, "id": 10314, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "She's All That", "tagline": "These two opposites attract... but EVERYONE'S trying to keep them apart!", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0160862", "adult": false, "backdrop_path": "/f2Vyj75EU1Cbdh0homXignBcdYG.jpg", "production_companies": [{"name": "FilmColony", "id": 1811}, {"name": "Miramax Films", "id": 14}], "release_date": "1999-01-29", "popularity": 0.725997507583087, "original_title": "She's All That", "budget": 10000000, "cast": [{"name": "Freddie Prinze Jr.", "character": "Zach Siler", "id": 33260, "credit_id": "52fe43579251416c7500cb0b", "cast_id": 9, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 0}, {"name": "Rachael Leigh Cook", "character": "Laney Boggs", "id": 38581, "credit_id": "52fe43579251416c7500cb0f", "cast_id": 10, "profile_path": "/xPcfVq2UMihLNmPvYhFXV0IXiwF.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Brock Hudson", "id": 26457, "credit_id": "52fe43579251416c7500cb13", "cast_id": 11, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Paul Walker", "character": "Dean Sampson", "id": 8167, "credit_id": "52fe43579251416c7500cb17", "cast_id": 12, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 3}, {"name": "Jodi Lyn O'Keefe", "character": "Taylor Vaughan", "id": 58006, "credit_id": "52fe43579251416c7500cb21", "cast_id": 14, "profile_path": "/w1Yx9bpt3ZqVwo33SEXVF5bkY6Z.jpg", "order": 4}, {"name": "Anna Paquin", "character": "Mackenzie Siler", "id": 10690, "credit_id": "52fe43579251416c7500cb25", "cast_id": 15, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 5}, {"name": "Clea DuVall", "character": "Misty", "id": 20387, "credit_id": "52fe43579251416c7500cb29", "cast_id": 17, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 6}, {"name": "Kieran Culkin", "character": "Simon Boggs", "id": 18793, "credit_id": "52fe43579251416c7500cb2d", "cast_id": 18, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 7}, {"name": "Kevin Pollak", "character": "Wayne Boggs", "id": 7166, "credit_id": "52fe43579251416c7500cb31", "cast_id": 19, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 8}, {"name": "Lil' Kim", "character": "Alex", "id": 57553, "credit_id": "52fe43579251416c7500cb35", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Elden Henson", "character": "Jesse Jackson", "id": 20220, "credit_id": "52fe43579251416c7500cb39", "cast_id": 21, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 10}, {"name": "Usher Raymond", "character": "Campus D.J.", "id": 57108, "credit_id": "52fe43579251416c7500cb3d", "cast_id": 22, "profile_path": "/s0frjwIXTy0AkgqhZEEPzW599TG.jpg", "order": 11}, {"name": "Gabrielle Union", "character": "Katie", "id": 17773, "credit_id": "52fe43579251416c7500cb41", "cast_id": 23, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 12}, {"name": "Dul\u00e9 Hill", "character": "Preston", "id": 122756, "credit_id": "52fe43579251416c7500cb45", "cast_id": 24, "profile_path": "/vA43B0F4FADUibvhVxu5KfgemRU.jpg", "order": 13}], "directors": [{"name": "Robert Iscove", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500cae3", "profile_path": "/lLwUcEJ4OpT1Ocssv1fevkA0VQd.jpg", "id": 64815}], "vote_average": 5.2, "runtime": 95}, "4543": {"poster_path": "/uCdQLoSQYJXrH3HvwNOJp5ing6q.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Monty Python's The Meaning of Life is a 1983 musical comedy film by the Monty Python comedy team. Unlike the two previous films they had made, which had more or less each told single, coherent stories, The Meaning of Life returns to the sketch comedy format of the troupe's original television series, loosely structured as a series of comic skits about the various stages of life.", "video": false, "id": 4543, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Meaning of Life", "tagline": "It took God six days to create the earth, and Monty Python just 90 minutes to screw it up.", "vote_count": 169, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085959", "adult": false, "backdrop_path": "/uBnZ4JxkHcDXL9CY7ekNoXZl9Y5.jpg", "production_companies": [{"name": "Celandine Films", "id": 12016}, {"name": "The Monty Python Partnership", "id": 12017}, {"name": "Universal Pictures", "id": 33}], "release_date": "1983-03-31", "popularity": 0.764168730543682, "original_title": "The Meaning of Life", "budget": 0, "cast": [{"name": "Terry Gilliam", "character": "Diverse Rollen", "id": 280, "credit_id": "52fe43cac3a36847f806fe95", "cast_id": 1, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 0}, {"name": "Graham Chapman", "character": "Diverse Rollen", "id": 10722, "credit_id": "52fe43cac3a36847f806fe99", "cast_id": 2, "profile_path": "/gwuoxo5EB3SRMO0BPLduWdcSALd.jpg", "order": 1}, {"name": "John Cleese", "character": "Diverse Rollen", "id": 8930, "credit_id": "52fe43cac3a36847f806fe9d", "cast_id": 3, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 2}, {"name": "Eric Idle", "character": "Diverse Rollen", "id": 10713, "credit_id": "52fe43cac3a36847f806fea1", "cast_id": 4, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 3}, {"name": "Terry Jones", "character": "Diverse Rollen", "id": 10707, "credit_id": "52fe43cac3a36847f806fea5", "cast_id": 5, "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "order": 4}, {"name": "Michael Palin", "character": "Diverse Rollen", "id": 383, "credit_id": "52fe43cac3a36847f806fea9", "cast_id": 6, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 5}, {"name": "Carol Cleveland", "character": "Diverse Rollen", "id": 10733, "credit_id": "52fe43cac3a36847f806fead", "cast_id": 7, "profile_path": "/3QVIw2Lc18O4m3oktTeab6aVLlD.jpg", "order": 6}, {"name": "Simon Jones", "character": "Cedric", "id": 37891, "credit_id": "52fe43cac3a36847f806feb1", "cast_id": 8, "profile_path": "/5njA1vE91FLp2SrSwKXYcJ6pvf9.jpg", "order": 7}, {"name": "Patricia Quinn", "character": "Mrs. Williams", "id": 13475, "credit_id": "52fe43cac3a36847f806feb5", "cast_id": 9, "profile_path": "/bfcnDApPbMGN9F2SIgFeFPgUe59.jpg", "order": 8}, {"name": "Judy Loe", "character": "Nurse #1", "id": 37892, "credit_id": "52fe43cac3a36847f806feb9", "cast_id": 10, "profile_path": "/jOexHThwyaWl5Dnc7iJ9tPHu1OQ.jpg", "order": 9}, {"name": "Andrew MacLachlan", "character": "Groom", "id": 37893, "credit_id": "52fe43cac3a36847f806febd", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Mark Holmes", "character": "Severed head", "id": 37894, "credit_id": "52fe43cac3a36847f806fec1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Valerie Whittington", "character": "Mrs. Moore", "id": 37895, "credit_id": "52fe43cac3a36847f806fec5", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Jennifer Franks", "character": "Bride", "id": 37896, "credit_id": "52fe43cac3a36847f806fec9", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Imogen Bickford-Smith", "character": "Nurse #2", "id": 37897, "credit_id": "52fe43cac3a36847f806fecd", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Angela Mann", "character": "Second guest's wife", "id": 37898, "credit_id": "52fe43cac3a36847f806fed1", "cast_id": 16, "profile_path": null, "order": 15}], "directors": [{"name": "Terry Jones", "department": "Directing", "job": "Director", "credit_id": "52fe43cac3a36847f806fefb", "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "id": 10707}, {"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe43cac3a36847f806ff01", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 6.9, "runtime": 107}, "4547": {"poster_path": "/o8Y8050Y4T0HgmtD9GDbVbX8IRC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196397415, "overview": "Trapped in their New York brownstone's panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman (Jodie Foster) and her young daughter Sarah (Kristen Stewart) play a deadly game of cat-and-mouse with three intruders - Burnham (Forest Whitaker), Raoul (Dwight Yoakam) and Junior (Jared Leto) - during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.", "video": false, "id": 4547, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Panic Room", "tagline": "It was supposed to be the safest room in the house.", "vote_count": 269, "homepage": "http://www.sonypictures.com/movies/panicroom/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0258000", "adult": false, "backdrop_path": "/cH9G12Pd3iaE8Sbd1OY4tK61oNU.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Hofflund/Polone", "id": 1685}, {"name": "Indelible Productions", "id": 7795}], "release_date": "2002-03-29", "popularity": 0.930069676195034, "original_title": "Panic Room", "budget": 48000000, "cast": [{"name": "Jodie Foster", "character": "Meg Altman", "id": 1038, "credit_id": "52fe43cbc3a36847f80700b3", "cast_id": 1, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Kristen Stewart", "character": "Sarah Altman", "id": 37917, "credit_id": "52fe43cbc3a36847f80700b7", "cast_id": 2, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Burnham", "id": 2178, "credit_id": "52fe43cbc3a36847f80700bb", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Dwight Yoakam", "character": "Raoul", "id": 20309, "credit_id": "52fe43cbc3a36847f80700bf", "cast_id": 4, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 3}, {"name": "Jared Leto", "character": "Junior", "id": 7499, "credit_id": "52fe43cbc3a36847f80700c3", "cast_id": 5, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 4}, {"name": "Patrick Bauchau", "character": "Stephen Altman", "id": 5274, "credit_id": "52fe43cbc3a36847f80700c7", "cast_id": 6, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 5}, {"name": "Ann Magnuson", "character": "Lydia Lynch", "id": 37042, "credit_id": "52fe43cbc3a36847f80700cb", "cast_id": 7, "profile_path": "/ry9H1u1GFbwXiWWolYA63pjBctp.jpg", "order": 6}, {"name": "Ian Buchanan", "character": "Evan Kurlander", "id": 15865, "credit_id": "52fe43cbc3a36847f80700cf", "cast_id": 8, "profile_path": "/aCUAEzY79h3hDTyqT7WwVTbqqxm.jpg", "order": 7}, {"name": "Andrew Kevin Walker", "character": "Sleepy Neighbor", "id": 12047, "credit_id": "52fe43cbc3a36847f8070115", "cast_id": 20, "profile_path": "/tPypY1vmiLEkoFuN0Q5pUU338ms.jpg", "order": 8}, {"name": "Paul Schulze", "character": "Officer Keeney", "id": 36189, "credit_id": "52fe43cbc3a36847f8070119", "cast_id": 21, "profile_path": "/tcGHCA2seYFju3RBKItpyLHAPHc.jpg", "order": 9}, {"name": "Mel Rodriguez", "character": "Officer Morales", "id": 59675, "credit_id": "52fe43cbc3a36847f807011d", "cast_id": 22, "profile_path": "/fdfVBVihcLvHAOArV2KvtTSZNrY.jpg", "order": 10}, {"name": "Richard Conant", "character": "SWAT Cop", "id": 99022, "credit_id": "52fe43cbc3a36847f8070121", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Paul Simon", "character": "SWAT Cop", "id": 1056131, "credit_id": "52fe43cbc3a36847f8070125", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Victor Thrash", "character": "SWAT Cop", "id": 1077957, "credit_id": "52fe43cbc3a36847f8070129", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Ken Turner", "character": "SWAT Cop", "id": 157707, "credit_id": "530914f7c3a3687b57000f54", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f80700d5", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.3, "runtime": 112}, "4550": {"poster_path": "/uGrR1eUEJjtrtVBUUUcn2ue70Bw.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 23803308, "overview": "After a 13-year imprisonment for the kidnap and murder of a 6 year old boy, beautiful Lee Guem-ja starts seeking revenge on the man that was really responsible for the boy's death. With the help of fellow inmates and reunited with her daughter, she gets closer and closer to her goal. But will her actions lead to the relief she seeks?", "video": false, "id": 4550, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sympathy for Lady Vengeance", "tagline": "All she wanted was a peaceful life...they didn't give it.", "vote_count": 53, "homepage": "http://www.lady-vengeance.de/", "belongs_to_collection": {"backdrop_path": "/t5zZZOvXK8m5z1omMdEEWcL6ywl.jpg", "poster_path": "/ilyS5xmHzMtTq4ngVRNKvZEbSRo.jpg", "id": 4563, "name": "The Vengeance Trilogy"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0451094", "adult": false, "backdrop_path": "/bpQiLzFVXfoEOJ2pLFeslSBhR6j.jpg", "production_companies": [{"name": "CJ Capital Investment", "id": 946}, {"name": "Korea Capital Investment", "id": 1687}, {"name": "Moho Films", "id": 1688}, {"name": "TSJ Entertainment", "id": 1689}, {"name": "Samsung Venture Capital", "id": 1690}, {"name": "Ilshin Capital Investments", "id": 1691}, {"name": "Centurion Investment", "id": 1692}], "release_date": "2005-07-29", "popularity": 0.832924418792629, "original_title": "\uce5c\uc808\ud55c \uae08\uc790\uc528", "budget": 0, "cast": [{"name": "Choi Min-sik", "character": "Mr. Baek", "id": 64880, "credit_id": "52fe43cbc3a36847f807029f", "cast_id": 14, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 0}, {"name": "Lee Young-ae", "character": "Geum-ja Lee", "id": 25001, "credit_id": "52fe43cbc3a36847f80702a3", "cast_id": 15, "profile_path": "/lZbA1bEYId160AZGOy0aQAualM0.jpg", "order": 1}, {"name": "Yea-young Kwon", "character": "Jenny", "id": 1117876, "credit_id": "52fe43cbc3a36847f80702e1", "cast_id": 27, "profile_path": null, "order": 2}, {"name": "Go Soo-hee", "character": "Ma-nyeo", "id": 1256494, "credit_id": "53da53a7c3a3681ee5001697", "cast_id": 46, "profile_path": "/dZOmvgPhRvbAjOrNdNqTBRfvX4v.jpg", "order": 4}, {"name": "Kim Bu-Seon", "character": "So-young Woo", "id": 570303, "credit_id": "52fe43cbc3a36847f80702ed", "cast_id": 30, "profile_path": "/i4rkrCI2HsPR5XXCd8THdVspY8C.jpg", "order": 5}, {"name": "Lee Dae-yeon", "character": "Prison Head", "id": 39258, "credit_id": "52fe43cbc3a36847f80702f5", "cast_id": 32, "profile_path": null, "order": 6}, {"name": "Lee Seung-Shin", "character": "Yi-jeong Park", "id": 554330, "credit_id": "52fe43cbc3a36847f80702f9", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Su-gyeong Lim", "character": "Prison Officer", "id": 1117877, "credit_id": "52fe43cbc3a36847f80702fd", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Oh Dal-Su", "character": "Mr. Chang", "id": 77188, "credit_id": "52fe43cbc3a36847f8070305", "cast_id": 36, "profile_path": "/5DmhRuUQZlrjoaN6seg7Wut3elb.jpg", "order": 9}, {"name": "Kim Byeong-ok", "character": "Preacher", "id": 1299313, "credit_id": "5319bb7c92514177bc0025b2", "cast_id": 38, "profile_path": "/qDQBQQaMFTLuWtU2tdVlVymoqqa.jpg", "order": 10}, {"name": "Kang Hye-jung", "character": "TV Announcer", "id": 1299317, "credit_id": "5319bd0992514177bf0025b9", "cast_id": 39, "profile_path": "/lF4wt0m522K79tgy18ykgDtmsAO.jpg", "order": 11}, {"name": "IlU Nam", "character": "Detective Choi", "id": 1299277, "credit_id": "5319be0292514177c20025c5", "cast_id": 41, "profile_path": "/6qzY19G8rmaXXVFIYM9mJExQQwQ.jpg", "order": 12}, {"name": "Kim Sihu", "character": "Geun-shik", "id": 1299320, "credit_id": "5319be4192514177b7002659", "cast_id": 42, "profile_path": "/xxzuxAk8izT6QVWzMw1HPbqOSG.jpg", "order": 13}, {"name": "Kim Byeong-ok", "character": "jeon-do-sa", "id": 1299313, "credit_id": "5319beb692514177bc0025e6", "cast_id": 43, "profile_path": "/qDQBQQaMFTLuWtU2tdVlVymoqqa.jpg", "order": 14}, {"name": "Ko Chang-Seok", "character": "Mechanic", "id": 525347, "credit_id": "536ca0630e0a2647c400d86e", "cast_id": 45, "profile_path": "/1pidfp0m1PeFO6HraN08HYHc66o.jpg", "order": 15}], "directors": [{"name": "Park Chan-wook", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f8070265", "profile_path": "/eFRXaT3RMoPemwDLNvfiFP0h8RX.jpg", "id": 10099}], "vote_average": 7.1, "runtime": 115}, "4551": {"poster_path": "/6vnI3uZ9D0bsrWSlOmNM6Rz1Ee2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95226116, "overview": "Disenchanted with the movie industry, Chili Palmer (John Travolta) tries the music industry, meeting and romancing a widow of a music exec (Uma Thurman) on the way.", "video": false, "id": 4551, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Be Cool", "tagline": "Everyone is looking for the next big hit", "vote_count": 85, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6KEpKs5asAqOwEr9XrOZJSMHW7O.jpg", "poster_path": "/lEVceV3akWMUeShECVCow1auUQv.jpg", "id": 91698, "name": "Chili Palmer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0377471", "adult": false, "backdrop_path": "/sGnf6maXvsnNOG7Xubv932bbTFJ.jpg", "production_companies": [{"name": "Nina Saxon Film Design", "id": 1693}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Jersey Films", "id": 216}, {"name": "Double Feature Films", "id": 215}], "release_date": "2005-03-04", "popularity": 0.752837631243862, "original_title": "Be Cool", "budget": 53000000, "cast": [{"name": "John Travolta", "character": "Chili Palmer", "id": 8891, "credit_id": "52fe43cbc3a36847f8070361", "cast_id": 4, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Uma Thurman", "character": "Edie Athens", "id": 139, "credit_id": "52fe43cbc3a36847f8070365", "cast_id": 5, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Raji", "id": 4937, "credit_id": "52fe43cbc3a36847f8070369", "cast_id": 6, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Cedric the Entertainer", "character": "Sin LaSalle", "id": 5726, "credit_id": "52fe43cbc3a36847f807036d", "cast_id": 7, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 3}, {"name": "Andr\u00e9 Benjamin", "character": "Dabu", "id": 37934, "credit_id": "52fe43cbc3a36847f8070371", "cast_id": 8, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 4}, {"name": "Steven Tyler", "character": "Steven Tyler", "id": 37935, "credit_id": "52fe43cbc3a36847f8070375", "cast_id": 9, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 5}, {"name": "Robert Pastorelli", "character": "Joe Loop", "id": 7866, "credit_id": "52fe43cbc3a36847f8070379", "cast_id": 10, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 6}, {"name": "Christina Milian", "character": "Linda Moon", "id": 37936, "credit_id": "52fe43cbc3a36847f807037d", "cast_id": 11, "profile_path": "/8qWk7ZELhhHKG8HD0yse0QomzkA.jpg", "order": 7}, {"name": "Paul Adelstein", "character": "Hy Gordon", "id": 17342, "credit_id": "52fe43cbc3a36847f8070381", "cast_id": 12, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 8}, {"name": "Debi Mazar", "character": "Marla", "id": 5578, "credit_id": "52fe43cbc3a36847f8070385", "cast_id": 13, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 9}, {"name": "Gregory Alan Williams", "character": "Darryl", "id": 37937, "credit_id": "52fe43cbc3a36847f8070389", "cast_id": 14, "profile_path": "/2Sba6ptJ2aGgZOv53k2mD1FLj0U.jpg", "order": 10}, {"name": "Harvey Keitel", "character": "Nick Carr", "id": 1037, "credit_id": "52fe43cbc3a36847f807038d", "cast_id": 15, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 11}, {"name": "Dwayne Johnson", "character": "Elliot Wilhelm", "id": 18918, "credit_id": "52fe43cbc3a36847f8070391", "cast_id": 16, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 12}, {"name": "Danny DeVito", "character": "Martin Weir", "id": 518, "credit_id": "52fe43cbc3a36847f8070395", "cast_id": 17, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 13}, {"name": "James Woods", "character": "Tommy Athens", "id": 4512, "credit_id": "52fe43cbc3a36847f8070399", "cast_id": 18, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 14}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f8070351", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 5.7, "runtime": 118}, "4553": {"poster_path": "/2tYr40n1ZjbMfYq20ieiAPsSe5.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 8203235, "overview": "The Machinist is the story of Trevor Reznik, a lathe-operator who is dying of insomnia. In a machine shop, occupational hazards are bad enough under normal circumstances; yet for Trevor the risks are compounded by fatigue. Trevor has lost the ability to sleep. This is no ordinary insomnia...", "video": false, "id": 4553, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Machinist", "tagline": "A little guilt goes a long way...", "vote_count": 239, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0361862", "adult": false, "backdrop_path": "/kDZYmt7tapNiaw8JfaUCDCKVYH5.jpg", "production_companies": [{"name": "Filmax Entertainment", "id": 7302}, {"name": "Castelao Producciones", "id": 7956}], "release_date": "2004-10-22", "popularity": 0.958874250560335, "original_title": "The Machinist", "budget": 5000000, "cast": [{"name": "Christian Bale", "character": "Trevor Reznik", "id": 3894, "credit_id": "52fe43cbc3a36847f8070491", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Jennifer Jason Leigh", "character": "Stevie", "id": 10431, "credit_id": "52fe43cbc3a36847f8070495", "cast_id": 2, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 1}, {"name": "Aitana S\u00e1nchez-Gij\u00f3n", "character": "Marie", "id": 37946, "credit_id": "52fe43cbc3a36847f8070499", "cast_id": 3, "profile_path": "/st0ovndgBr9BFY5hBJhXdA6j1y7.jpg", "order": 2}, {"name": "John Sharian", "character": "Ivan", "id": 36900, "credit_id": "52fe43cbc3a36847f807049d", "cast_id": 4, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 3}, {"name": "Michael Ironside", "character": "Miller", "id": 11086, "credit_id": "52fe43cbc3a36847f80704a1", "cast_id": 5, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 4}, {"name": "Lawrence Gilliard Jr.", "character": "Jackson", "id": 37947, "credit_id": "52fe43cbc3a36847f80704a5", "cast_id": 6, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 5}, {"name": "Craig Stevenson", "character": "Tucker", "id": 38950, "credit_id": "52fe43cbc3a36847f80704bb", "cast_id": 16, "profile_path": "/xbPYQNVzZImofmzJgUZug7ijSRe.jpg", "order": 6}, {"name": "Reg E. Cathey", "character": "Jones", "id": 38951, "credit_id": "52fe43cbc3a36847f80704bf", "cast_id": 17, "profile_path": "/5SKwwUhSCgzggT6iRcO951e13XM.jpg", "order": 7}, {"name": "Anna Massey", "character": "Mrs. Shike", "id": 8227, "credit_id": "52fe43cbc3a36847f80704c3", "cast_id": 18, "profile_path": "/hO6qoo665U7JAHmbH7PQ7L07DOO.jpg", "order": 8}, {"name": "Matthew Romero Moore", "character": "Nicholas", "id": 38952, "credit_id": "52fe43cbc3a36847f80704c7", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "James DePaul", "character": "Reynolds", "id": 38953, "credit_id": "52fe43cbc3a36847f80704cb", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Robert Long", "character": "Supervisor Furman", "id": 1402327, "credit_id": "549738b3c3a3686af3006269", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "Brad Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f80704ab", "profile_path": "/5SAJd9sEFefkFoStAPXuKVHnMoX.jpg", "id": 37948}], "vote_average": 7.0, "runtime": 101}, "20943": {"poster_path": "/xbIEfRy1qLYyChHc3cqaYLIWdVS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205298907, "overview": "A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.", "video": false, "id": 20943, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Ugly Truth", "tagline": "The battle of the sexes is on.", "vote_count": 237, "homepage": "http://www.thetruthisntpretty.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1142988", "adult": false, "backdrop_path": "/sBQo4qneN0329KSMM7PyfnEVe6L.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Relativity Media", "id": 7295}], "release_date": "2009-07-24", "popularity": 0.939114449580876, "original_title": "The Ugly Truth", "budget": 38000000, "cast": [{"name": "Katherine Heigl", "character": "Abby", "id": 25541, "credit_id": "52fe4405c3a368484e00aebf", "cast_id": 1, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Mike", "id": 17276, "credit_id": "52fe4405c3a368484e00aec3", "cast_id": 2, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Eric Winter", "character": "Colin", "id": 74409, "credit_id": "52fe4405c3a368484e00aec7", "cast_id": 3, "profile_path": "/bo7unyhMC4GxIPWhHh2M8mqbsKn.jpg", "order": 2}, {"name": "Bree Turner", "character": "Joy", "id": 62065, "credit_id": "52fe4405c3a368484e00aed1", "cast_id": 5, "profile_path": "/vR34cXXPh9JFPrPy7DS0fjOaeIc.jpg", "order": 3}, {"name": "Nick Searcy", "character": "Stuart", "id": 12538, "credit_id": "52fe4405c3a368484e00aed5", "cast_id": 7, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 4}, {"name": "Jesse D. Goins", "character": "Cliff", "id": 44043, "credit_id": "52fe4405c3a368484e00aed9", "cast_id": 8, "profile_path": "/rjNRg0SgCo31mCCYRb3NvtjFu18.jpg", "order": 5}, {"name": "Cheryl Hines", "character": "Georgia", "id": 57854, "credit_id": "52fe4405c3a368484e00aedd", "cast_id": 9, "profile_path": "/g6CJqdMVRENrMRiva5spTuJkWRd.jpg", "order": 6}, {"name": "John Michael Higgins", "character": "Larry", "id": 8265, "credit_id": "52fe4405c3a368484e00aee1", "cast_id": 10, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 7}, {"name": "Noah Matthews", "character": "Jonah", "id": 141415, "credit_id": "52fe4405c3a368484e00aee5", "cast_id": 11, "profile_path": "/o7Mw44j41kfPUuwA8tjnoGmcy7b.jpg", "order": 8}, {"name": "Bonnie Somerville", "character": "Elizabeth", "id": 66579, "credit_id": "52fe4405c3a368484e00aee9", "cast_id": 12, "profile_path": "/a1tjNEX8Tm5WupP9vEdRnpW2s45.jpg", "order": 9}, {"name": "John Sloman", "character": "Bob", "id": 141424, "credit_id": "52fe4405c3a368484e00aeed", "cast_id": 13, "profile_path": "/uGBOIeMzxQo11nxW5NMv0oLLxnw.jpg", "order": 10}, {"name": "Yvette Nicole Brown", "character": "Dori", "id": 111513, "credit_id": "52fe4405c3a368484e00aef1", "cast_id": 14, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 11}, {"name": "Nate Corddry", "character": "Josh", "id": 127048, "credit_id": "52fe4405c3a368484e00aef5", "cast_id": 15, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 12}, {"name": "Allen Maldonado", "character": "Duane", "id": 141432, "credit_id": "52fe4405c3a368484e00aef9", "cast_id": 16, "profile_path": "/yjVKDl9IMrkOUk0ANyFZtOkdM05.jpg", "order": 13}, {"name": "Steve Little", "character": "Steve", "id": 141433, "credit_id": "52fe4405c3a368484e00aefd", "cast_id": 17, "profile_path": "/foxSnyaUmBIZNNZRwsAadtQGylq.jpg", "order": 14}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe4405c3a368484e00aecd", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 6.3, "runtime": 96}, "82532": {"poster_path": "/gb0NN0z9tR50dalNySdivI6oTSA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4269426, "overview": "Dispatched from his basement room on an errand for his mother, slacker Jeff might discover his destiny (finally) when he spends the day with his brother as he tracks his possibly adulterous wife.", "video": false, "id": 82532, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Jeff, Who Lives at Home", "tagline": "The first step to finding your destiny is leaving your mother's basement.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1588334", "adult": false, "backdrop_path": "/fnQvtfv5nyxpqVQSO3Alm7PeEsN.jpg", "production_companies": [{"name": "Indian Paintbrush", "id": 9350}], "release_date": "2011-09-13", "popularity": 0.395932287690922, "original_title": "Jeff, Who Lives at Home", "budget": 10000000, "cast": [{"name": "Jason Segel", "character": "Jeff", "id": 41088, "credit_id": "52fe485a9251416c9108964b", "cast_id": 21, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 0}, {"name": "Ed Helms", "character": "Pat", "id": 27105, "credit_id": "52fe485a9251416c910895f7", "cast_id": 4, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Sharon", "id": 4038, "credit_id": "52fe485a9251416c910895fb", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Judy Greer", "character": "Linda", "id": 20750, "credit_id": "52fe485a9251416c9108962f", "cast_id": 14, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 3}, {"name": "Rae Dawn Chong", "character": "Carol", "id": 13312, "credit_id": "52fe485a9251416c91089633", "cast_id": 15, "profile_path": "/6mk5lSTIUav9T1M0VAdUP46FTSH.jpg", "order": 4}, {"name": "Joe Chrest", "character": "Paul", "id": 141762, "credit_id": "52fe485a9251416c91089637", "cast_id": 16, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 5}, {"name": "Lance E. Nichols", "character": "Elderly Man", "id": 101847, "credit_id": "52fe485a9251416c9108963b", "cast_id": 17, "profile_path": "/zOaZTf9VpPutOxqXHnczoKKiALx.jpg", "order": 6}, {"name": "Deneen Tyler", "character": "Woman calling the police", "id": 29933, "credit_id": "52fe485a9251416c9108963f", "cast_id": 18, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 7}, {"name": "J.D. Evermore", "character": "Rob the Waiter", "id": 129868, "credit_id": "52fe485a9251416c91089643", "cast_id": 19, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 8}, {"name": "Tammi Arender", "character": "Newscaster", "id": 861986, "credit_id": "52fe485a9251416c91089647", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Mark Duplass", "department": "Directing", "job": "Director", "credit_id": "52fe485a9251416c910895ed", "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "id": 45407}, {"name": "Jay Duplass", "department": "Directing", "job": "Director", "credit_id": "52fe485a9251416c910895f3", "profile_path": "/vtdLbE3BHpLyCee8V0ajrrlDkLO.jpg", "id": 45405}], "vote_average": 5.7, "runtime": 83}, "4564": {"poster_path": "/5qGwxhSVDJdpSl2IKZ6Ahft4W17.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415252786, "overview": "A New York writer on sex and love is finally getting married to her Mr. Big. But her three best girlfriends must console her after one of them inadvertently leads Mr. Big to jilt her.", "video": false, "id": 4564, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sex and the City", "tagline": "Get carried away.", "vote_count": 121, "homepage": "http://www.sexandthecitymovie.com/", "belongs_to_collection": {"backdrop_path": "/uM6lHfySQ5sQEuUyMxKdtxsp3CQ.jpg", "poster_path": "/ip0ObsKtNUucWEcWJfDmURjmF8h.jpg", "id": 50457, "name": "Sex and the City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1000774", "adult": false, "backdrop_path": "/uYmGSQUpZKl60HBBSdHemYNaNua.jpg", "production_companies": [{"name": "Darren Star Productions", "id": 1694}, {"name": "New Line Cinema", "id": 12}, {"name": "Home Box Office (HBO)", "id": 3268}], "release_date": "2008-05-12", "popularity": 0.619933161693183, "original_title": "Sex and the City", "budget": 65000000, "cast": [{"name": "Sarah Jessica Parker", "character": "Carrie Bradshaw", "id": 520, "credit_id": "52fe43ccc3a36847f80709fd", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 0}, {"name": "Kim Cattrall", "character": "Samantha Jones", "id": 2109, "credit_id": "52fe43ccc3a36847f8070a01", "cast_id": 3, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 1}, {"name": "Cynthia Nixon", "character": "Miranda Hobbes", "id": 38024, "credit_id": "52fe43ccc3a36847f8070a05", "cast_id": 4, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 2}, {"name": "Kristin Davis", "character": "Charlotte York Goldenblatt", "id": 38025, "credit_id": "52fe43ccc3a36847f8070a09", "cast_id": 5, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 3}, {"name": "Chris Noth", "character": "Mr. Big", "id": 38026, "credit_id": "52fe43ccc3a36847f8070a0d", "cast_id": 6, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 4}, {"name": "Willie Garson", "character": "Stanford", "id": 1542, "credit_id": "52fe43ccc3a36847f8070a11", "cast_id": 7, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 5}, {"name": "David Eigenberg", "character": "Steve Brady", "id": 27552, "credit_id": "52fe43cdc3a36847f8070a1b", "cast_id": 10, "profile_path": "/6In0iKsH6FRzZ5sCsUjAx4pwHJl.jpg", "order": 6}, {"name": "Evan Handler", "character": "Harry Goldenblatt", "id": 3212, "credit_id": "52fe43cdc3a36847f8070a1f", "cast_id": 11, "profile_path": "/bsSNblkDZk0hKIjyPMMt8Hsmbsg.jpg", "order": 7}, {"name": "Jennifer Hudson", "character": "Louise, Carrie's assistant", "id": 15565, "credit_id": "52fe43cdc3a36847f8070a23", "cast_id": 12, "profile_path": "/zqTu7AANIUsVMAYz5rK1YPnvbWR.jpg", "order": 8}, {"name": "Jason Lewis", "character": "Smith Jerrod", "id": 32224, "credit_id": "52fe43cdc3a36847f8070a27", "cast_id": 13, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 9}, {"name": "Mario Cantone", "character": "Anthony Marantino", "id": 57551, "credit_id": "52fe43cdc3a36847f8070a2b", "cast_id": 14, "profile_path": "/jvxuIpzAYSWSbkaZd201KsSztp5.jpg", "order": 10}, {"name": "Julie Halston", "character": "Bitsy von Muffling", "id": 57552, "credit_id": "52fe43cdc3a36847f8070a2f", "cast_id": 15, "profile_path": "/uIRC2QqBCKwHVCcXl564a4FYPRe.jpg", "order": 11}, {"name": "Lynn Cohen", "character": "Magda", "id": 8792, "credit_id": "52fe43cdc3a36847f8070a33", "cast_id": 16, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 12}, {"name": "Anne Meara", "character": "Mary Brady", "id": 32394, "credit_id": "52fe43cdc3a36847f8070a37", "cast_id": 17, "profile_path": "/oNZszKpUZHfbT1mk2cD53uuZsnp.jpg", "order": 13}, {"name": "Candice Bergen", "character": "Enid Frick", "id": 11850, "credit_id": "52fe43cdc3a36847f8070a3b", "cast_id": 18, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 14}, {"name": "Lil' Kim", "character": "Herself", "id": 57553, "credit_id": "52fe43cdc3a36847f8070a3f", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Alexandra Fong", "character": "Lily York Goldenblatt", "id": 58355, "credit_id": "52fe43cdc3a36847f8070a43", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Kerry Bish\u00e9", "character": "Twenty-Something Girl Dreaming", "id": 58356, "credit_id": "52fe43cdc3a36847f8070a47", "cast_id": 21, "profile_path": "/vgyxPcX86ASm1fn3S64TEVQ47Uv.jpg", "order": 17}, {"name": "Joseph Pupo", "character": "Brady", "id": 58722, "credit_id": "52fe43cdc3a36847f8070abd", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Gilles Marini", "character": "Dante", "id": 58723, "credit_id": "52fe43cdc3a36847f8070ac1", "cast_id": 45, "profile_path": "/m7uP0bqUAqsJDg1I0lE4P89X8ys.jpg", "order": 19}], "directors": [{"name": "Michael Patrick King", "department": "Directing", "job": "Director", "credit_id": "52fe43ccc3a36847f80709f9", "profile_path": "/vhsHQQSRHPxnwzUP58kzBy9Dx1T.jpg", "id": 38023}], "vote_average": 6.3, "runtime": 145}, "4566": {"poster_path": "/rcywkwx4oESbBwtA0D3PImqLorU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92991835, "overview": "A law firm brings in its \"fixer\" to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.", "video": false, "id": 4566, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Michael Clayton", "tagline": "The truth can be adjusted", "vote_count": 108, "homepage": "http://michaelclayton.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465538", "adult": false, "backdrop_path": "/hCE5LXO6Q1eZAnjDEjs95At5uMD.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Mirage Enterprises", "id": 932}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2007-10-12", "popularity": 0.46406190187589, "original_title": "Michael Clayton", "budget": 25000000, "cast": [{"name": "George Clooney", "character": "Michael Clayton", "id": 1461, "credit_id": "52fe43cdc3a36847f8070bdd", "cast_id": 15, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Arthur Edens", "id": 207, "credit_id": "52fe43cdc3a36847f8070be1", "cast_id": 16, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Karen Crowder", "id": 3063, "credit_id": "52fe43cdc3a36847f8070be5", "cast_id": 17, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Sydney Pollack", "character": "Marty Bach", "id": 2226, "credit_id": "52fe43cdc3a36847f8070be9", "cast_id": 18, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 3}, {"name": "Michael O'Keefe", "character": "Barry Grissom", "id": 38085, "credit_id": "52fe43cdc3a36847f8070bed", "cast_id": 19, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 4}, {"name": "Robert Prescott", "character": "Mr. Verne", "id": 38086, "credit_id": "52fe43cdc3a36847f8070bf1", "cast_id": 20, "profile_path": "/fWwAdFxzXRYPMfmYsF5UO600NNQ.jpg", "order": 5}, {"name": "Denis O'Hare", "character": "Mr. Greer", "id": 81681, "credit_id": "52fe43cdc3a36847f8070bf5", "cast_id": 21, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 6}, {"name": "Julie White", "character": "Mrs. Greer", "id": 24305, "credit_id": "52fe43cdc3a36847f8070bf9", "cast_id": 22, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 7}, {"name": "Austin Williams", "character": "Henry Clayton", "id": 78144, "credit_id": "52fe43cdc3a36847f8070bfd", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Jennifer Van Dyck", "character": "Ivy", "id": 88755, "credit_id": "52fe43cdc3a36847f8070c01", "cast_id": 24, "profile_path": "/iil0xqgJbuXdEohG1vqz7KDWxVg.jpg", "order": 9}, {"name": "Frank Wood", "character": "Gerald", "id": 52021, "credit_id": "52fe43cdc3a36847f8070c05", "cast_id": 25, "profile_path": "/7g06FytDzIpbRTw7ONlB2ofara5.jpg", "order": 10}], "directors": [{"name": "Tony Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe43cdc3a36847f8070b8b", "profile_path": "/9HOtDgcO6F4Fa4BaIjt0t3Vbxrj.jpg", "id": 19242}], "vote_average": 6.1, "runtime": 119}, "82682": {"poster_path": "/8keIzofLkbcOsyP4OEPftkyzJIM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105200903, "overview": "Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen (Sean Penn) runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and \u2014 if he has his way \u2014 every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. It\u2019s enough to intimidate even the bravest, street-hardened cop\u2026 except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John O\u2019Mara (Josh Brolin) and Jerry Wooters (Ryan Gosling), who come together to try to tear Cohen\u2019s world apart.", "video": false, "id": 82682, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Gangster Squad", "tagline": "No Names. No Badges. No Mercy.", "vote_count": 972, "homepage": "http://gangstersquad.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321870", "adult": false, "backdrop_path": "/vxsmU9IgSSd59C3ARg0KIhJzYwy.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Lin Pictures", "id": 2723}, {"name": "Langley Park Production", "id": 8057}], "release_date": "2013-01-11", "popularity": 1.298612551008, "original_title": "Gangster Squad", "budget": 60000000, "cast": [{"name": "Sean Penn", "character": "Mickey Cohen", "id": 2228, "credit_id": "52fe48689251416c9108b7d7", "cast_id": 11, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "Sgt. Jerry Wooters", "id": 30614, "credit_id": "52fe48689251416c9108b7cf", "cast_id": 9, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Emma Stone", "character": "Grace Faraday", "id": 54693, "credit_id": "52fe48689251416c9108b7d3", "cast_id": 10, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 2}, {"name": "Josh Brolin", "character": "John O'Mara", "id": 16851, "credit_id": "52fe48689251416c9108b7db", "cast_id": 12, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 3}, {"name": "Nick Nolte", "character": "Bill Parker", "id": 1733, "credit_id": "52fe48689251416c9108b7df", "cast_id": 13, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Conway Keeler", "id": 1771, "credit_id": "52fe48689251416c9108b7e3", "cast_id": 14, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "Josh Pence", "character": "Darryl Gates", "id": 928532, "credit_id": "52fe48689251416c9108b7e7", "cast_id": 15, "profile_path": "/nNMhtY1gBYwnjZZpeGGW16fVXC5.jpg", "order": 6}, {"name": "Frank Grillo", "character": "Jimmy reagan", "id": 81685, "credit_id": "52fe48689251416c9108b7eb", "cast_id": 16, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 7}, {"name": "Anthony Mackie", "character": "Coleman Harris", "id": 53650, "credit_id": "52fe48689251416c9108b7ef", "cast_id": 17, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Max Kennard", "id": 418, "credit_id": "52fe48689251416c9108b7f3", "cast_id": 18, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Michael Pe\u00f1a", "character": "Navidad Ramirez", "id": 454, "credit_id": "52fe48689251416c9108b7f7", "cast_id": 19, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 10}, {"name": "Mireille Enos", "character": "Connie O'Mara", "id": 175826, "credit_id": "52fe48699251416c9108b7fb", "cast_id": 20, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 11}, {"name": "Sullivan Stapleton", "character": "", "id": 38664, "credit_id": "52fe48699251416c9108b7ff", "cast_id": 21, "profile_path": "/jbtXSbo8uqBTn8Nx2Z1fULTQlAz.jpg", "order": 12}, {"name": "Holt McCallany", "character": "Karl Lockwood", "id": 7497, "credit_id": "52fe48699251416c9108b809", "cast_id": 23, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 13}, {"name": "Wade Williams", "character": "Rourke", "id": 51930, "credit_id": "52fe48699251416c9108b80d", "cast_id": 24, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 14}, {"name": "James Landry H\u00e9bert", "character": "Mitch Racine", "id": 1170659, "credit_id": "52fe48699251416c9108b811", "cast_id": 25, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 15}, {"name": "Ambyr Childers", "character": "Milk Skinned Blonde", "id": 75330, "credit_id": "52fe48699251416c9108b815", "cast_id": 26, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 16}, {"name": "Mick Betancourt", "character": "Detective Sgt. Will Hendricks", "id": 200448, "credit_id": "52fe48699251416c9108b819", "cast_id": 27, "profile_path": "/tBUe2hWFQvIiAmcRPhlS36j03WV.jpg", "order": 17}, {"name": "Mac Brandt", "character": "Bruiser", "id": 1215837, "credit_id": "52fe48699251416c9108b81d", "cast_id": 28, "profile_path": "/sx2FIzVxGdBogpkrcrlAZmSVB1v.jpg", "order": 18}, {"name": "Brandon Molale", "character": "Jimmy 'Bockscar' Knox", "id": 63238, "credit_id": "52fe48699251416c9108b821", "cast_id": 29, "profile_path": "/iOQFhKoCY6czA8OIudsHbOtJsC6.jpg", "order": 19}, {"name": "Michael Papajohn", "character": "Mike 'The Flea'", "id": 20582, "credit_id": "52fe48699251416c9108b825", "cast_id": 30, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 20}, {"name": "Jeff Wolfe", "character": "Giovanni Vacarezza", "id": 51303, "credit_id": "52fe48699251416c9108b829", "cast_id": 31, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 21}, {"name": "Anthony Molinari", "character": "Lorenzo Molinari", "id": 202930, "credit_id": "52fe48699251416c9108b82d", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Austin Highsmith", "character": "Patty", "id": 108247, "credit_id": "52fe48699251416c9108b831", "cast_id": 33, "profile_path": "/nN84TihBQBwrchOfuptiQPxJDhS.jpg", "order": 23}, {"name": "Neil Koppel", "character": "Max Solomon", "id": 1273230, "credit_id": "52fe48699251416c9108b835", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Jack McGee", "character": "Lt. Quincannon", "id": 10489, "credit_id": "52fe48699251416c9108b839", "cast_id": 35, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 25}, {"name": "Evan Jones", "character": "Neddy Herbert", "id": 333, "credit_id": "52fe48699251416c9108b83d", "cast_id": 36, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 26}, {"name": "James Carpinello", "character": "Johnny Stomp", "id": 53198, "credit_id": "52fe48699251416c9108b841", "cast_id": 37, "profile_path": "/t2aCdkepUU0yHi1gTGgltQ7CMvE.jpg", "order": 27}, {"name": "Troy Garity", "character": "Wrevock", "id": 31711, "credit_id": "52fe48699251416c9108b845", "cast_id": 38, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 28}, {"name": "Austin Abrams", "character": "Pete", "id": 148992, "credit_id": "52fe48699251416c9108b849", "cast_id": 39, "profile_path": "/8JrNQOokSRBzoQMzyVcoEh6IzQ9.jpg", "order": 29}, {"name": "John Aylward", "character": "Judge Carter", "id": 103833, "credit_id": "52fe48699251416c9108b84d", "cast_id": 40, "profile_path": "/jdU2dcdjBM3IbsQv6pEdZT64ajb.jpg", "order": 30}, {"name": "Dennis Cockrum", "character": "Elmer Jackson", "id": 155825, "credit_id": "52fe48699251416c9108b851", "cast_id": 41, "profile_path": "/3RGfs2kJ71XCho8VsDxpYlzlFur.jpg", "order": 31}, {"name": "Jack Conley", "character": "Sheriff Biscailuz", "id": 21675, "credit_id": "52fe48699251416c9108b855", "cast_id": 42, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 32}, {"name": "Yvette Tucker", "character": "Carmen Miranda", "id": 1008085, "credit_id": "52fe48699251416c9108b859", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Derek Mears", "character": "Bridge Goon", "id": 51300, "credit_id": "52fe48699251416c9108b85d", "cast_id": 44, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 34}, {"name": "Jonny Coyne", "character": "Grimes", "id": 1323612, "credit_id": "538063b9c3a36805a1004b86", "cast_id": 46, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 35}, {"name": "Eva La Dare", "character": "Dancer", "id": 1364232, "credit_id": "5417286b0e0a261c27005c9a", "cast_id": 47, "profile_path": "/jllT2rMbeLinJMaIprTiQ6XoRop.jpg", "order": 36}, {"name": "Riel Paley", "character": "City Hall Reporter", "id": 1412125, "credit_id": "54b25c1192514114a200173b", "cast_id": 48, "profile_path": null, "order": 37}], "directors": [{"name": "Ruben Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe48689251416c9108b7a7", "profile_path": "/y001RIxie7Vk3qMW3oLSFkjO1IA.jpg", "id": 91268}], "vote_average": 6.1, "runtime": 113}, "4584": {"poster_path": "/6Bp0Xnsvmc6aoG8vsanVooViIMd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rich Mr. Dashwood dies, leaving his second wife and her daughters poor by the rules of inheritance. Two daughters are the titular opposites.", "video": false, "id": 4584, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sense and Sensibility", "tagline": "Lose your heart and come to your senses.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114388", "adult": false, "backdrop_path": "/sATr9IM8WFsgkSJL1nXkBL88KKf.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1995-12-13", "popularity": 0.916459871527028, "original_title": "Sense and Sensibility", "budget": 0, "cast": [{"name": "Kate Winslet", "character": "Marianne Dashwood", "id": 204, "credit_id": "52fe43cec3a36847f807103b", "cast_id": 6, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Emma Thompson", "character": "Elinor Dashwood", "id": 7056, "credit_id": "52fe43cec3a36847f807103f", "cast_id": 7, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 1}, {"name": "Hugh Grant", "character": "Edward Ferrars", "id": 3291, "credit_id": "52fe43cec3a36847f8071043", "cast_id": 8, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Mr. Dashwood", "id": 207, "credit_id": "52fe43cec3a36847f8071047", "cast_id": 9, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Alan Rickman", "character": "Col. Christopher Brandon", "id": 4566, "credit_id": "52fe43cec3a36847f807104b", "cast_id": 10, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 4}, {"name": "Imogen Stubbs", "character": "Lucy Steele", "id": 20769, "credit_id": "52fe43cec3a36847f807104f", "cast_id": 11, "profile_path": "/osr7TepyQdENiyy4iYi8zfWzIx.jpg", "order": 5}, {"name": "Greg Wise", "character": "John Willoughby", "id": 16700, "credit_id": "52fe43cec3a36847f8071053", "cast_id": 12, "profile_path": "/A4u37pRp9MakKBhiIblXSCJEk33.jpg", "order": 6}, {"name": "Hugh Laurie", "character": "Mr. Palmer", "id": 41419, "credit_id": "52fe43cec3a36847f8071057", "cast_id": 13, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 7}, {"name": "Imelda Staunton", "character": "Charlotte Jennings Palmer", "id": 11356, "credit_id": "52fe43cec3a36847f807105b", "cast_id": 14, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 8}, {"name": "Robert Hardy", "character": "Sir John Middleton", "id": 23076, "credit_id": "52fe43cec3a36847f807105f", "cast_id": 15, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 9}, {"name": "Oliver Ford Davies", "character": "Doctor Harris", "id": 31923, "credit_id": "52fe43cec3a36847f8071063", "cast_id": 16, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 10}, {"name": "James Fleet", "character": "John Dashwood", "id": 10726, "credit_id": "54128d2c0e0a26730d000b28", "cast_id": 17, "profile_path": "/uRerBtLv4SZJp1s52vrkIF85tg2.jpg", "order": 11}, {"name": "Harriet Walter", "character": "Fanny Ferrars Dashwood", "id": 17477, "credit_id": "54128d3f0e0a267310000b40", "cast_id": 18, "profile_path": "/vfpIPsC27D1ONVres7j3DgWYzdN.jpg", "order": 12}, {"name": "Gemma Jones", "character": "Mrs. Dashwood", "id": 9138, "credit_id": "54128d500e0a26731f000b31", "cast_id": 19, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 13}, {"name": "Emilie Fran\u00e7ois", "character": "Margaret Dashwood", "id": 937907, "credit_id": "54128d670e0a26730a000aee", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Elizabeth Spriggs", "character": "Mrs. Jennings", "id": 1220119, "credit_id": "54128d7b0e0a267317000b10", "cast_id": 21, "profile_path": "/dwzoE4S0dFJRoxTcvvfjOuSp4Sx.jpg", "order": 15}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe43cec3a36847f807101f", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 7.2, "runtime": 136}, "764": {"poster_path": "/pCafS6ksb7uDvuF5Ix7ZhHK9PeL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29400000, "overview": "When a group of college students finds a mysterious book and recording in the old wilderness cabin they've rented for the weekend, they unwittingly unleash a demonic force from the surrounding forest.", "video": false, "id": 764, "genres": [{"id": 27, "name": "Horror"}], "title": "The Evil Dead", "tagline": "Can they be stopped?", "vote_count": 201, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083907", "adult": false, "backdrop_path": "/3a1IOTatyhQi5eP9vZvBU5NQDmM.jpg", "production_companies": [{"name": "Renaissance Pictures", "id": 467}], "release_date": "1981-10-15", "popularity": 0.973671809876596, "original_title": "The Evil Dead", "budget": 350000, "cast": [{"name": "Bruce Campbell", "character": "Ashley 'Ash' J. Williams", "id": 11357, "credit_id": "52fe4273c3a36847f801f82b", "cast_id": 16, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 0}, {"name": "Ellen Sandweiss", "character": "Cheryl", "id": 11462, "credit_id": "52fe4273c3a36847f801f7f9", "cast_id": 6, "profile_path": "/w5WnK8DoFYZTORnicQdP0abQOE.jpg", "order": 1}, {"name": "Richard DeManincor", "character": "Scott", "id": 11463, "credit_id": "52fe4273c3a36847f801f7fd", "cast_id": 7, "profile_path": "/14XLkR6RsMNeB0QViIe5T2tbDYl.jpg", "order": 2}, {"name": "Betsy Baker", "character": "Linda", "id": 11464, "credit_id": "52fe4273c3a36847f801f801", "cast_id": 8, "profile_path": "/dKnuMuT5H01UGoVJXeB3HhnvIT5.jpg", "order": 3}, {"name": "Theresa Tilly", "character": "Shelly", "id": 11465, "credit_id": "52fe4273c3a36847f801f805", "cast_id": 9, "profile_path": "/397OcfzGVZZmdguXA3lS7GVheV4.jpg", "order": 4}, {"name": "Sam Raimi", "character": "Hitchhiking Fisherman", "id": 7623, "credit_id": "52fe4273c3a36847f801f809", "cast_id": 10, "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "order": 5}, {"name": "Philip A. Gillis", "character": "Fake Shemp", "id": 1116941, "credit_id": "52fe4273c3a36847f801f835", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Dorothy Tapert", "character": "Fake Shemp", "id": 1116942, "credit_id": "52fe4273c3a36847f801f839", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Cheryl Guttridge", "character": "Fake Shemp", "id": 1116943, "credit_id": "52fe4273c3a36847f801f83d", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Barbara Carey", "character": "Fake Shemp", "id": 1116944, "credit_id": "52fe4273c3a36847f801f841", "cast_id": 21, "profile_path": null, "order": 9}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f7dd", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 7.0, "runtime": 85}, "4588": {"poster_path": "/1voAijiJYzN3pNyo90ffd6WOKik.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "TW", "name": "Taiwan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "During World War II a secret agent (Tang Wei) must seduce, then assassinate an official (Tony Leung Chiu Wai) who works for the Japanese puppet government in Shanghai. Her mission becomes clouded when she finds herself falling in love with the man she is assigned to kill.", "video": false, "id": 4588, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Lust, Caution", "tagline": "", "vote_count": 79, "homepage": "http://www.bvi.com.tw/movies/lust_caution/main.html", "belongs_to_collection": null, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0808357", "adult": false, "backdrop_path": "/wIpN41SgnwlS0QdgqFJXOZmHWO8.jpg", "production_companies": [{"name": "River Road Entertainment", "id": 1246}, {"name": "Haishang Films", "id": 13480}, {"name": "Focus Features", "id": 10146}], "release_date": "2007-08-30", "popularity": 1.0822444592824, "original_title": "\u8272\u2027\u6212", "budget": 15000000, "cast": [{"name": "Tony Leung Chiu-Wai", "character": "Herr Yi", "id": 1337, "credit_id": "52fe43cec3a36847f807113f", "cast_id": 1, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 0}, {"name": "Tang Wei", "character": "Wang Jiazhi", "id": 38280, "credit_id": "52fe43cec3a36847f8071143", "cast_id": 2, "profile_path": "/sLdrMu4Z3qkoF9KdJbcpTMLvgzy.jpg", "order": 1}, {"name": "Joan Chen", "character": "Frau Yi", "id": 6720, "credit_id": "52fe43cec3a36847f8071147", "cast_id": 3, "profile_path": "/ekWS5bAB0kv4RColHqYaUAoXz0I.jpg", "order": 2}, {"name": "Leehom Wang", "character": "Kuang Yu Min", "id": 134184, "credit_id": "52fe43cec3a36847f80711a9", "cast_id": 23, "profile_path": "/7KuBwhVnAH4KYrbiLjhOMxjgrLY.jpg", "order": 3}, {"name": "Anupam Kher", "character": "Indischer Juwelier", "id": 6217, "credit_id": "52fe43cec3a36847f807114b", "cast_id": 5, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 4}, {"name": "Lawrence Ko", "character": "Liang Jun Sheng", "id": 150609, "credit_id": "54756333c3a3687ad9000e27", "cast_id": 25, "profile_path": null, "order": 5}, {"name": "Chih-ying Chu", "character": "Lai Shu Jin", "id": 38285, "credit_id": "52fe43cec3a36847f8071197", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Ying-hsien Kao", "character": "Huang Lei", "id": 38286, "credit_id": "52fe43cec3a36847f807119b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "He Saifei", "character": "", "id": 64987, "credit_id": "5330e822c3a3686a7f0006ed", "cast_id": 24, "profile_path": "/f5ZBBpd7QKw1s1wSQ7DgXJbLVtP.jpg", "order": 8}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe43cec3a36847f8071151", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 6.3, "runtime": 156}, "250349": {"poster_path": "/20ZniTaQ4tIQJQOfWZ4bpps8jmx.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 14348529, "overview": "On his 50th birthday, a man who's been watching his weight, health and temper all his life suffers a heart attack. He's been doing everything he was told he should do and it still didn't help. He decides to turn the page and let loose.", "video": false, "id": 250349, "genres": [{"id": 35, "name": "Comedy"}], "title": "Barbecue", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3202120", "adult": false, "backdrop_path": "/6cqqgHlcYLDb4iUTaudnsqQOEtd.jpg", "production_companies": [{"name": "Cin\u00e9france 1888", "id": 31229}, {"name": "Studio Canal", "id": 5870}, {"name": "Same Player", "id": 4696}, {"name": "TF1 Films Production", "id": 3823}], "release_date": "2014-04-30", "popularity": 0.149828915362679, "original_title": "Barbecue", "budget": 6000000, "cast": [{"name": "Lambert Wilson", "character": "Antoine", "id": 2192, "credit_id": "52fe4df09251416c91121139", "cast_id": 2, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 0}, {"name": "Franck Dubosc", "character": "Baptiste", "id": 24893, "credit_id": "52fe4df09251416c9112113d", "cast_id": 3, "profile_path": "/4YV7cy1mBF48wdrf9Std7a94Dv2.jpg", "order": 1}, {"name": "Florence Foresti", "character": "Olivia", "id": 56226, "credit_id": "52fe4df09251416c91121141", "cast_id": 4, "profile_path": "/pBv0EiKkQWgU6YIS0Db4hQwcVZ7.jpg", "order": 2}, {"name": "Guillaume de Tonqu\u00e9dec", "character": "Yves", "id": 17896, "credit_id": "53d35eee0e0a26283800146f", "cast_id": 14, "profile_path": "/gx6Kh89dbkSo2cnfXTrzNNqWIBe.jpg", "order": 3}, {"name": "J\u00e9r\u00f4me Commandeur", "character": "Jean-Michel", "id": 54170, "credit_id": "52fe4df09251416c91121149", "cast_id": 6, "profile_path": "/oD7b6OOvypJxHDLScoNkEpxnRPA.jpg", "order": 4}, {"name": "Val\u00e9rie Crouzet", "character": "Nathalie", "id": 1035744, "credit_id": "52fe4df09251416c9112114d", "cast_id": 7, "profile_path": "/3PwMsDHQlKVMLig1JOGuOjvmQGD.jpg", "order": 5}, {"name": "Sophie Duez", "character": "V\u00e9ronique", "id": 236135, "credit_id": "52fe4df09251416c91121151", "cast_id": 8, "profile_path": "/zy0jVJc5xni8Xlkvunkks8ekAXn.jpg", "order": 6}, {"name": "Lionel Abelanski", "character": "Laurent", "id": 7278, "credit_id": "52fe4df09251416c91121155", "cast_id": 9, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 7}, {"name": "Marc Fayet", "character": "Serveur chez Abel", "id": 1047743, "credit_id": "533326179251410b51003f71", "cast_id": 10, "profile_path": "/9BWlCiE7LK9wvOFGhhjwvbpGPwF.jpg", "order": 8}, {"name": "Antoine Blanquefort", "character": "Professeur Blomet", "id": 305036, "credit_id": "533326339251410b48003d71", "cast_id": 11, "profile_path": "/9Dmf3M7rbOQxubxLyA1kbjkuLTq.jpg", "order": 9}, {"name": "Nabiha Akkari", "character": "Voisine", "id": 147832, "credit_id": "533326599251410b48003d74", "cast_id": 12, "profile_path": "/63oQYIn1x2nd4yxL7wZ8y58V5Mg.jpg", "order": 10}, {"name": "Lysiane Meis", "character": "Laure", "id": 1304842, "credit_id": "533326749251410b4b003e33", "cast_id": 13, "profile_path": "/eGkDgIQSgWaUjYN6M9oKmjAwWRc.jpg", "order": 11}], "directors": [{"name": "Eric Lavaine", "department": "Directing", "job": "Director", "credit_id": "52fe4df09251416c91121135", "profile_path": "/dE5Zuqsx0usPFg9TPTA9zQSLh3s.jpg", "id": 121588}], "vote_average": 5.9, "runtime": 98}, "12783": {"poster_path": "/tOv8ftJIER6Jrwshv1GQ8FhmGUN.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.", "video": false, "id": 12783, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "The Duchess", "tagline": "", "vote_count": 84, "homepage": "http://www.theduchessmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0864761", "adult": false, "backdrop_path": "/vEpDdfgOzdOy3sBa27iVx60ix02.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Paramount Vantage", "id": 838}, {"name": "Qwerty Films", "id": 892}, {"name": "Magnolia Mae Films", "id": 18188}, {"name": "BIM Distribuzione", "id": 225}, {"name": "Path\u00e9", "id": 7981}], "release_date": "2008-09-05", "popularity": 0.975014680258697, "original_title": "The Duchess", "budget": 0, "cast": [{"name": "Keira Knightley", "character": "Georgiana, The Duchess of Devonshire", "id": 116, "credit_id": "52fe45239251416c7504cef3", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Duke of Devonshire", "id": 5469, "credit_id": "52fe45239251416c7504cef7", "cast_id": 6, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Aidan McArdle", "character": "Richard Brinsley Sheridan", "id": 47653, "credit_id": "52fe45239251416c7504cefb", "cast_id": 7, "profile_path": "/dy7uQlhYrp71mkj7EOYOr3C4uJk.jpg", "order": 2}, {"name": "Simon McBurney", "character": "Fox", "id": 16358, "credit_id": "52fe45239251416c7504ceff", "cast_id": 8, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 3}, {"name": "Charlotte Rampling", "character": "Lady Spencer", "id": 44079, "credit_id": "52fe45239251416c7504cf03", "cast_id": 10, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 4}, {"name": "Dominic Cooper", "character": "Grey", "id": 55470, "credit_id": "52fe45239251416c7504cf07", "cast_id": 11, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 5}, {"name": "Hayley Atwell", "character": "Bess", "id": 39459, "credit_id": "52fe45239251416c7504cf0b", "cast_id": 12, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 6}, {"name": "Bruce Mackinnon", "character": "Sir Peter Teazle", "id": 1227575, "credit_id": "54e0ab3392514119560058f6", "cast_id": 68, "profile_path": "/i6RLbFsZqkflplC45XRItxVnv8V.jpg", "order": 7}, {"name": "Georgia King", "character": "Lady Teazle", "id": 73462, "credit_id": "52fe45239251416c7504cf0f", "cast_id": 13, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 8}, {"name": "Alistair Petrie", "character": "Heaton", "id": 56100, "credit_id": "54e0a950925141469f0035ca", "cast_id": 64, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 9}, {"name": "Patrick Godfrey", "character": "Dr. Neville", "id": 3568, "credit_id": "54e0a96a925141195a005215", "cast_id": 65, "profile_path": null, "order": 10}, {"name": "Richard McCabe", "character": "Sir James Hare", "id": 7025, "credit_id": "54e0a98c925141194b005a4d", "cast_id": 66, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 11}, {"name": "Andrew Armour", "character": "Burleigh", "id": 1427529, "credit_id": "54e0ab8a92514119500054ea", "cast_id": 69, "profile_path": null, "order": 12}], "directors": [{"name": "Saul Dibb", "department": "Directing", "job": "Director", "credit_id": "52fe45239251416c7504cedd", "profile_path": null, "id": 73460}], "vote_average": 6.2, "runtime": 110}, "119283": {"poster_path": "/oAXj55ReRME5juD1qieAoFDtiah.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46216641, "overview": "A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew's latest heist.", "video": false, "id": 119283, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Parker", "tagline": "To get away clean, you have to play dirty.", "vote_count": 954, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1904996", "adult": false, "backdrop_path": "/y9lH6ijs5YXS8njSHtiJJj5UohO.jpg", "production_companies": [{"name": "SND", "id": 2902}], "release_date": "2013-01-25", "popularity": 1.35943664884724, "original_title": "Parker", "budget": 35000000, "cast": [{"name": "Jason Statham", "character": "Parker", "id": 976, "credit_id": "52fe4bfac3a36847f821baad", "cast_id": 4, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Leslie", "id": 16866, "credit_id": "52fe4bfac3a36847f821bab1", "cast_id": 5, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Hurley", "id": 1733, "credit_id": "52fe4bfac3a36847f821bab5", "cast_id": 6, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Melander", "id": 19654, "credit_id": "52fe4bfac3a36847f821bab9", "cast_id": 7, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Clifton Collins, Jr.", "character": "Ross", "id": 5365, "credit_id": "52fe4bfac3a36847f821babd", "cast_id": 8, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 4}, {"name": "Sala Baker", "character": "Ernesto", "id": 1366, "credit_id": "52fe4bfac3a36847f821bac1", "cast_id": 9, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 5}, {"name": "Carlos Carrasco", "character": "Norte", "id": 33712, "credit_id": "52fe4bfac3a36847f821bac5", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Wendell Pierce", "character": "Carlson", "id": 17859, "credit_id": "52fe4bfac3a36847f821bac9", "cast_id": 11, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 7}, {"name": "Emma Booth", "character": "Claire", "id": 105838, "credit_id": "52fe4bfac3a36847f821bacd", "cast_id": 12, "profile_path": "/h5UzAG1BH7e5wjBvZMCndgI1p3T.jpg", "order": 8}, {"name": "Daniel Bernhardt", "character": "Kroll", "id": 9452, "credit_id": "52fe4bfac3a36847f821bad1", "cast_id": 13, "profile_path": "/gsIWvByH4lzQdTgMswQWqiAQOql.jpg", "order": 9}, {"name": "Patti LuPone", "character": "Ascension", "id": 5699, "credit_id": "53e640c70e0a2628ce001eb3", "cast_id": 14, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 10}], "directors": [{"name": "Taylor Hackford", "department": "Directing", "job": "Director", "credit_id": "52fe4bfac3a36847f821ba9d", "profile_path": "/heZfdghufTV3t3ayrWvIuiP1jvb.jpg", "id": 18596}], "vote_average": 5.6, "runtime": 118}, "7518": {"poster_path": "/fGvoD6n6blbFprgbl3BJ2U8YHSF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155019340, "overview": "A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating...and learns a lesson about family himself.", "video": false, "id": 7518, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Over the Hedge", "tagline": "Taking back the neighborhood... One snack at a time.", "vote_count": 280, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327084", "adult": false, "backdrop_path": "/lNABYZx4BLt97dinPV4iRegGVfa.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2006-04-22", "popularity": 1.51371579054267, "original_title": "Over the Hedge", "budget": 80000000, "cast": [{"name": "Bruce Willis", "character": "RJ (voice)", "id": 62, "credit_id": "52fe4482c3a36847f809a4cd", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Garry Shandling", "character": "Verne (voice)", "id": 52865, "credit_id": "52fe4482c3a36847f809a4d1", "cast_id": 2, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 1}, {"name": "Steve Carell", "character": "Hammy (voice)", "id": 4495, "credit_id": "52fe4482c3a36847f809a4d5", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 2}, {"name": "Wanda Sykes", "character": "Stella (voice)", "id": 27102, "credit_id": "52fe4482c3a36847f809a4d9", "cast_id": 4, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 3}, {"name": "William Shatner", "character": "Ozzie (voice)", "id": 1748, "credit_id": "52fe4482c3a36847f809a4dd", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Nick Nolte", "character": "Vincent (voice)", "id": 1733, "credit_id": "52fe4482c3a36847f809a4e1", "cast_id": 6, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 5}, {"name": "Thomas Haden Church", "character": "Dwayne (voice)", "id": 19159, "credit_id": "52fe4482c3a36847f809a4e5", "cast_id": 7, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 6}, {"name": "Allison Janney", "character": "Gladys (voice)", "id": 19, "credit_id": "52fe4482c3a36847f809a4e9", "cast_id": 8, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 7}, {"name": "Eugene Levy", "character": "Lou (voice)", "id": 26510, "credit_id": "52fe4482c3a36847f809a4ed", "cast_id": 9, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 8}, {"name": "Catherine O'Hara", "character": "Penny (voice)", "id": 11514, "credit_id": "52fe4482c3a36847f809a4f1", "cast_id": 10, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 9}, {"name": "Avril Lavigne", "character": "Heather (voice)", "id": 52866, "credit_id": "52fe4482c3a36847f809a4f5", "cast_id": 11, "profile_path": "/q2OZC7fKPsBVWTQqOYGz7hPcDwB.jpg", "order": 10}, {"name": "Omid Djalili", "character": "Tiger (voice)", "id": 41379, "credit_id": "52fe4482c3a36847f809a4f9", "cast_id": 12, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 11}, {"name": "Sami Kirkpatrick", "character": "Bucky (voice)", "id": 52867, "credit_id": "52fe4482c3a36847f809a4fd", "cast_id": 13, "profile_path": "/6Bfb9D6KPa4HvwPHKxNrSEx8psD.jpg", "order": 12}, {"name": "Shane Baumel", "character": "Spike (voice)", "id": 52868, "credit_id": "52fe4482c3a36847f809a501", "cast_id": 14, "profile_path": "/lcb0H1H2hPF2RzSeGq2OadilEMy.jpg", "order": 13}, {"name": "Madison Davenport", "character": "Quillo (voice)", "id": 52869, "credit_id": "52fe4482c3a36847f809a505", "cast_id": 15, "profile_path": "/rNjyKpAD6tE2sWwkzeWPrO7AqcG.jpg", "order": 14}], "directors": [{"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a50b", "profile_path": null, "id": 52870}, {"name": "Karey Kirkpatrick", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a511", "profile_path": "/duWAmZCC3R9B6WgoIaX56Q39hy4.jpg", "id": 52845}], "vote_average": 6.2, "runtime": 83}, "4597": {"poster_path": "/zdj2p7apgVCqWoaIldzYsdLHZ1J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22942221, "overview": "A crew of officers at an armored transport security firm risk their lives when they embark on the ultimate heist against their own company. Armed with a seemingly fool-proof plan, the men plan on making off with a fortune with harm to none. But when an unexpected witness interferes, the plan quickly unravels and all bets are off.", "video": false, "id": 4597, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Armored", "tagline": "Who will be the last man standing?", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0913354", "adult": false, "backdrop_path": "/a4cvwQ73OtAUWYsIMSQ0iUHDGED.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Stars Road Entertainment", "id": 8931}, {"name": "Farah Films & Management", "id": 11249}, {"name": "Buckaroo Entertainment", "id": 11250}], "release_date": "2009-12-04", "popularity": 0.618974126474381, "original_title": "Armored", "budget": 20000000, "cast": [{"name": "Columbus Short", "character": "Ty Hackett", "id": 31132, "credit_id": "52fe43cec3a36847f807138d", "cast_id": 2, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Baines", "id": 2975, "credit_id": "52fe43cec3a36847f8071391", "cast_id": 4, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Skeet Ulrich", "character": "Dobbs", "id": 22108, "credit_id": "52fe43cec3a36847f8071395", "cast_id": 5, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 2}, {"name": "Amaury Nolasco", "character": "Palmer", "id": 17341, "credit_id": "52fe43cec3a36847f8071399", "cast_id": 6, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 3}, {"name": "Matt Dillon", "character": "Mike Cochrane", "id": 2876, "credit_id": "52fe43cec3a36847f807139d", "cast_id": 7, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 4}, {"name": "Jean Reno", "character": "Quinn", "id": 1003, "credit_id": "52fe43cec3a36847f80713a1", "cast_id": 8, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 5}, {"name": "Fred Ward", "character": "Duncan Ashcroft", "id": 10430, "credit_id": "52fe43cec3a36847f80713a5", "cast_id": 9, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 6}, {"name": "Milo Ventimiglia", "character": "Eckehart", "id": 16501, "credit_id": "52fe43cfc3a36847f80713eb", "cast_id": 21, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 7}, {"name": "Andre Kinney", "character": "Jimmy Hackett", "id": 1115002, "credit_id": "52fe43cfc3a36847f80713ef", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Andrew Fiscella", "character": "Dispatcher #1", "id": 65699, "credit_id": "52fe43cfc3a36847f80713f3", "cast_id": 23, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 9}, {"name": "Nick Jameson", "character": "Homeless Man", "id": 39214, "credit_id": "52fe43cfc3a36847f80713f7", "cast_id": 24, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 10}, {"name": "Glenn Taranto", "character": "Joe the Cook", "id": 18305, "credit_id": "52fe43cfc3a36847f80713fb", "cast_id": 25, "profile_path": "/kZfmHgAOYHprU9Iq30W7oTx9M7Y.jpg", "order": 11}, {"name": "Lorna Raver", "character": "Child Welfare Agent", "id": 95696, "credit_id": "52fe43cfc3a36847f80713ff", "cast_id": 26, "profile_path": "/iXlz30cBxvyn66fPTFOgbrrlsqT.jpg", "order": 12}, {"name": "Garry Guerrier", "character": "Federal Guard", "id": 167708, "credit_id": "52fe43cfc3a36847f8071403", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Robert Harvey", "character": "Bank Guard", "id": 62100, "credit_id": "52fe43cfc3a36847f8071407", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Shawn Devorse", "character": "Federal Guard #2", "id": 1002203, "credit_id": "52fe43cfc3a36847f807140b", "cast_id": 29, "profile_path": null, "order": 15}], "directors": [{"name": "Nimr\u00f3d Antal", "department": "Directing", "job": "Director", "credit_id": "52fe43cec3a36847f8071389", "profile_path": "/rI5DZmGXhZcNYaREK9vy2khqm1o.jpg", "id": 41671}], "vote_average": 5.8, "runtime": 88}, "8814": {"poster_path": "/7oZj7PCNh3G8xo9xs33suIpubv8.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55987321, "overview": "A team of space marines known as the Rapid Response Tactical Squad, led by Sarge, is sent to a science facility on Mars after somebody reports a security breach. There, they learn that the alert came after a test subject, a mass murderer purposefully injected with alien DNA, broke free and began killing people. Dr. Grimm, who is related to team member Reaper, informs them all that the chromosome can mutate humans into monsters -- and is highly infectious.", "video": false, "id": 8814, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Doom", "tagline": "No one gets out alive.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0419706", "adult": false, "backdrop_path": "/pFluPgwdp8LhFY6EWTxZpqTFvlz.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}, {"name": "John Wells Productions", "id": 1512}, {"name": "Reaper Productions", "id": 2539}, {"name": "Stillking Films", "id": 11345}, {"name": "Babelsberg Film", "id": 19481}, {"name": "Doom Productions", "id": 19922}, {"name": "Distant Planet Productions", "id": 19923}], "release_date": "2005-10-21", "popularity": 0.848808385172809, "original_title": "Doom", "budget": 60000000, "cast": [{"name": "Dwayne Johnson", "character": "Sarge", "id": 18918, "credit_id": "52fe44bac3a36847f80a6b03", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Karl Urban", "character": "John Grimm", "id": 1372, "credit_id": "52fe44bac3a36847f80a6b07", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Samantha Grimm", "id": 10882, "credit_id": "52fe44bac3a36847f80a6b41", "cast_id": 12, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "Ben Daniels", "character": "Goat", "id": 27632, "credit_id": "52fe44bac3a36847f80a6b45", "cast_id": 13, "profile_path": "/x6MI4Fdz1XbERbNbXYoxTK6NAgv.jpg", "order": 3}, {"name": "Deobia Oparei", "character": "Destroyer", "id": 58758, "credit_id": "52fe44bac3a36847f80a6b49", "cast_id": 14, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 4}, {"name": "Razaaq Adoti", "character": "Duke", "id": 12801, "credit_id": "52fe44bac3a36847f80a6b4d", "cast_id": 15, "profile_path": "/8tyDtkUerIQfghpdX1G08EdSEie.jpg", "order": 5}, {"name": "Richard Brake", "character": "Corporal Dean Portman", "id": 3901, "credit_id": "52fe44bac3a36847f80a6b51", "cast_id": 16, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 6}, {"name": "Al Weaver", "character": "The Kid", "id": 1015830, "credit_id": "52fe44bac3a36847f80a6b55", "cast_id": 17, "profile_path": "/yj6OxHmzVYnZrSSx9nsnemZRIJi.jpg", "order": 7}, {"name": "Dexter Fletcher", "character": "Pinky", "id": 974, "credit_id": "52fe44bac3a36847f80a6b59", "cast_id": 18, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 8}, {"name": "Brian Steele", "character": "Hell Knight / Curtis Stahl", "id": 12359, "credit_id": "52fe44bac3a36847f80a6b5d", "cast_id": 19, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 9}, {"name": "Yao Chin", "character": "Mac", "id": 1074678, "credit_id": "52fe44bac3a36847f80a6b61", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Robert Russell", "character": "Dr. Carmack", "id": 25670, "credit_id": "52fe44bac3a36847f80a6b65", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Daniel York", "character": "Lt. Huengs", "id": 19874, "credit_id": "52fe44bac3a36847f80a6b69", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Ian Hughes", "character": "Sanford Crosby", "id": 210711, "credit_id": "52fe44bac3a36847f80a6b6d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Sara Houghton", "character": "Dr. Jenna Willits", "id": 113241, "credit_id": "52fe44bac3a36847f80a6b71", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Andrzej Bartkowiak", "department": "Directing", "job": "Director", "credit_id": "52fe44bac3a36847f80a6b0d", "profile_path": "/taaHl0nMtXgKTx8YbeQoJCuO5Ac.jpg", "id": 10765}], "vote_average": 5.2, "runtime": 100}, "209403": {"poster_path": "/cEnpV3XLvgTp3eVXhY2eyQKZk4r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7800000, "overview": "A spelling bee loser sets out to exact revenge by finding a loophole and attempting to win as an adult.", "video": false, "id": 209403, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bad Words", "tagline": "The end justifies the means", "vote_count": 118, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2170299", "adult": false, "backdrop_path": "/sxoszo9dKm77ItG1jB2WOEhbQDN.jpg", "production_companies": [{"name": "Darko Entertainment", "id": 12622}, {"name": "Aggregate Film", "id": 25975}], "release_date": "2013-09-06", "popularity": 0.59144737395274, "original_title": "Bad Words", "budget": 9500000, "cast": [{"name": "Jason Bateman", "character": "Guy Trilby", "id": 23532, "credit_id": "52fe4d64c3a368484e1e6bdd", "cast_id": 3, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Kathryn Hahn", "character": "Jenny Widgeon", "id": 17696, "credit_id": "52fe4d64c3a368484e1e6be9", "cast_id": 6, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 1}, {"name": "Allison Janney", "character": "Dr. Bernice Deagan", "id": 19, "credit_id": "52fe4d64c3a368484e1e6be1", "cast_id": 4, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 2}, {"name": "Philip Baker Hall", "character": "Dr. Bowman", "id": 4492, "credit_id": "52fe4d64c3a368484e1e6be5", "cast_id": 5, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 3}, {"name": "Rohan Chand", "character": "Chaitainya", "id": 935701, "credit_id": "52fe4d64c3a368484e1e6bed", "cast_id": 7, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 4}, {"name": "Ben Falcone", "character": "Pete Fowler", "id": 170820, "credit_id": "52fe4d64c3a368484e1e6bf1", "cast_id": 8, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 5}, {"name": "Patricia Belcher", "character": "Ingrid", "id": 56358, "credit_id": "52fe4d64c3a368484e1e6bf5", "cast_id": 9, "profile_path": "/dbbOF0P2h8qJ0fktNzMj4rmztP3.jpg", "order": 6}, {"name": "Beth Grant", "character": "Irene", "id": 5151, "credit_id": "52fe4d64c3a368484e1e6bf9", "cast_id": 10, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Rachel Harris", "character": "", "id": 945777, "credit_id": "52fe4d64c3a368484e1e6bfd", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Steve Witting", "character": "", "id": 1278652, "credit_id": "52fe4d64c3a368484e1e6c01", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Greg Cromer", "character": "", "id": 128013, "credit_id": "52fe4d64c3a368484e1e6c05", "cast_id": 13, "profile_path": "/t209XYLmYyRgY0l40PZVvNN5Hw4.jpg", "order": 10}], "directors": [{"name": "Jason Bateman", "department": "Directing", "job": "Director", "credit_id": "52fe4d64c3a368484e1e6bd3", "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "id": 23532}], "vote_average": 6.5, "runtime": 88}, "8960": {"poster_path": "/dsCxSr4w3g2ylhlZg3v5CB5Pid7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 624029371, "overview": "Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?", "video": false, "id": 8960, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Hancock", "tagline": "Bad Behavior. Bad Attitude. Real Hero.", "vote_count": 971, "homepage": "http://www.sonypictures.com/movies/hancock/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0448157", "adult": false, "backdrop_path": "/4ImUOpcfjHisC47QQkrHYaSpIUz.jpg", "production_companies": [{"name": "GH Three", "id": 41756}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Blue Light", "id": 28064}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "Forward Pass", "id": 675}], "release_date": "2008-07-01", "popularity": 1.30226115742234, "original_title": "Hancock", "budget": 150000000, "cast": [{"name": "Will Smith", "character": "John Hancock", "id": 2888, "credit_id": "52fe44cbc3a36847f80aa55d", "cast_id": 2, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Mary Embrey", "id": 6885, "credit_id": "52fe44cbc3a36847f80aa561", "cast_id": 3, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Jason Bateman", "character": "Ray Embrey", "id": 23532, "credit_id": "52fe44cbc3a36847f80aa565", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 2}, {"name": "Jae Head", "character": "Aaron Embrey", "id": 66658, "credit_id": "52fe44cbc3a36847f80aa5b5", "cast_id": 38, "profile_path": "/iq3GxDOVoTssnByU1CjWYkhPKmz.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "", "id": 1665, "credit_id": "52fe44cbc3a36847f80aa585", "cast_id": 12, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "David Mattey", "character": "Man Mountain", "id": 66634, "credit_id": "52fe44cbc3a36847f80aa5ad", "cast_id": 19, "profile_path": "/9GbfO02TpgofIiaslwRKPS6hcmg.jpg", "order": 5}, {"name": "Thomas Lennon", "character": "Mike", "id": 539, "credit_id": "52fe44cbc3a36847f80aa671", "cast_id": 82, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 6}, {"name": "Johnny Galecki", "character": "Jeremy", "id": 16478, "credit_id": "52fe44cbc3a36847f80aa66d", "cast_id": 81, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 7}, {"name": "Hayley Marie Norman", "character": "Hottie", "id": 66623, "credit_id": "52fe44cbc3a36847f80aa56d", "cast_id": 6, "profile_path": "/gXUwyT5CG6wfwI2gV6X193AaGOk.jpg", "order": 8}, {"name": "Trieu Tran", "character": "Jr exec", "id": 61835, "credit_id": "52fe44cbc3a36847f80aa5bd", "cast_id": 40, "profile_path": null, "order": 9}, {"name": "Darrell Foster", "character": "Police Sergeant", "id": 49921, "credit_id": "52fe44cbc3a36847f80aa5b1", "cast_id": 25, "profile_path": "/9DPSxjhKhoi3YGCDRADEYVKNbKz.jpg", "order": 10}, {"name": "Ryan Radis", "character": "Guy In Back", "id": 66659, "credit_id": "52fe44cbc3a36847f80aa5b9", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Daeg Faerch", "character": "Michel", "id": 21317, "credit_id": "52fe44cbc3a36847f80aa569", "cast_id": 5, "profile_path": "/9JxK3k0BuQN7LubeiHQ9GEAC2A5.jpg", "order": 12}, {"name": "Eddie J. Fernandez", "character": "Skinning Con", "id": 18300, "credit_id": "52fe44cbc3a36847f80aa5ed", "cast_id": 58, "profile_path": null, "order": 13}, {"name": "Martin Klebba", "character": "Prisoner", "id": 4030, "credit_id": "52fe44cbc3a36847f80aa571", "cast_id": 7, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 14}, {"name": "Matt Bettinelli-Olpin", "character": "Reporter", "id": 66681, "credit_id": "52fe44cbc3a36847f80aa5e5", "cast_id": 55, "profile_path": null, "order": 15}, {"name": "Samantha Cannon", "character": "Nurse", "id": 66666, "credit_id": "52fe44cbc3a36847f80aa5d1", "cast_id": 47, "profile_path": null, "order": 16}, {"name": "Rico Devereaux", "character": "Inmate", "id": 66683, "credit_id": "52fe44cbc3a36847f80aa5e9", "cast_id": 57, "profile_path": null, "order": 17}, {"name": "Brandon Ford Green", "character": "Radio Caller (voice)", "id": 66669, "credit_id": "52fe44cbc3a36847f80aa5d9", "cast_id": 50, "profile_path": null, "order": 18}, {"name": "Johnathan Hallgrey", "character": "Theater patron", "id": 66684, "credit_id": "52fe44cbc3a36847f80aa5f1", "cast_id": 59, "profile_path": null, "order": 19}, {"name": "Alexa Havins", "character": "Fan", "id": 66630, "credit_id": "52fe44cbc3a36847f80aa575", "cast_id": 8, "profile_path": "/uYGzC2zxlOOJD1ipBuwrLfh2XV8.jpg", "order": 20}, {"name": "Edward M. Kelahan", "character": "Theater Guest", "id": 66685, "credit_id": "52fe44cbc3a36847f80aa5f5", "cast_id": 60, "profile_path": null, "order": 21}, {"name": "Algerita Wynn Lewis", "character": "Mug Shot Officer", "id": 66664, "credit_id": "52fe44cbc3a36847f80aa5cd", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Rick Mali", "character": "Corrections Guard", "id": 66680, "credit_id": "52fe44cbc3a36847f80aa5e1", "cast_id": 54, "profile_path": null, "order": 23}, {"name": "Chris Mitchell", "character": "Chain Gang Guard", "id": 66671, "credit_id": "52fe44cbc3a36847f80aa5dd", "cast_id": 51, "profile_path": null, "order": 24}, {"name": "Scott Michael Morgan", "character": "KCOT Reporter", "id": 66667, "credit_id": "52fe44cbc3a36847f80aa5d5", "cast_id": 48, "profile_path": "/ruuhMOYBkndrcZDE6Nn9qagMo4S.jpg", "order": 25}, {"name": "Bryan Keith Ponton", "character": "ER Doctor", "id": 66663, "credit_id": "52fe44cbc3a36847f80aa5c9", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Dawn Ressy", "character": "Theatergoer", "id": 66686, "credit_id": "52fe44cbc3a36847f80aa5f9", "cast_id": 61, "profile_path": null, "order": 27}, {"name": "Nicholas Rich", "character": "Police K-9 officer", "id": 66687, "credit_id": "52fe44cbc3a36847f80aa5fd", "cast_id": 62, "profile_path": null, "order": 28}, {"name": "Ron Fassler", "character": "Reporter", "id": 66661, "credit_id": "52fe44cbc3a36847f80aa5c5", "cast_id": 42, "profile_path": "/s0lxSKUnCJOlXQl2aCPg0DrAHb.jpg", "order": 29}, {"name": "Mark Simich", "character": "Matt", "id": 66660, "credit_id": "52fe44cbc3a36847f80aa5c1", "cast_id": 41, "profile_path": "/vpuMqT1t73jKKLqo80yI3rNTcRX.jpg", "order": 30}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe44cbc3a36847f80aa559", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 5.8, "runtime": 92}, "127493": {"poster_path": "/pkJyIiDg8s9zEbmOvm628rRGzC6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A former thief frantically searches for his missing daughter, who has been kidnapped and locked in the trunk of a taxi.", "video": false, "id": 127493, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Stolen", "tagline": "Never steal from the world's greatest thief.", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1656186", "adult": false, "backdrop_path": "/bLOFgTOrqBZI7p7SeS5JwA3T1Pu.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Saturn Films", "id": 831}, {"name": "Nu Image Films", "id": 925}], "release_date": "2012-09-14", "popularity": 0.765792458949636, "original_title": "Stolen", "budget": 35000000, "cast": [{"name": "Nicolas Cage", "character": "Will Montgomery", "id": 2963, "credit_id": "52fe4afbc3a368484e1711e9", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Riley Simms", "id": 50463, "credit_id": "52fe4afbc3a368484e1711ed", "cast_id": 4, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Josh Lucas", "character": "Cab Driver", "id": 6164, "credit_id": "52fe4afbc3a368484e1711f1", "cast_id": 5, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 2}, {"name": "Sami Gayle", "character": "Alison", "id": 506085, "credit_id": "52fe4afbc3a368484e1711f5", "cast_id": 6, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 3}, {"name": "Danny Huston", "character": "Tim Harlend", "id": 6413, "credit_id": "52fe4afbc3a368484e1711f9", "cast_id": 7, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 4}, {"name": "Mark Valley", "character": "Fletcher", "id": 136530, "credit_id": "52fe4afbc3a368484e1711fd", "cast_id": 8, "profile_path": "/bWCr7EhKM0aB19fONmeGcetMlQa.jpg", "order": 5}, {"name": "Michelle Torres", "character": "Tourist", "id": 1084799, "credit_id": "52fe4afbc3a368484e171201", "cast_id": 10, "profile_path": "/dZPlrG1s0brU21TfFMqASP0Kye4.jpg", "order": 6}, {"name": "Tanc Sade", "character": "Pete", "id": 191260, "credit_id": "52fe4afbc3a368484e171205", "cast_id": 11, "profile_path": "/iPvIVpaNxGtB0dDiOxCzaHOlCV1.jpg", "order": 7}, {"name": "Marcus Lyle Brown", "character": "Matthews", "id": 16460, "credit_id": "52fe4afbc3a368484e171209", "cast_id": 12, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 8}, {"name": "M.C. Gainey", "character": "Hoyt", "id": 22132, "credit_id": "52fe4afbc3a368484e171231", "cast_id": 19, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 9}, {"name": "Bernadette Ralphs", "character": "Kiosk Girl", "id": 1286019, "credit_id": "52fe4afbc3a368484e171253", "cast_id": 25, "profile_path": "/gDoXmvQUUSKNOcL6nPMaAfcVQgs.jpg", "order": 10}, {"name": "Emily West", "character": "Frightened Girl in Car", "id": 1286020, "credit_id": "52fe4afbc3a368484e171257", "cast_id": 26, "profile_path": "/7AkaPNteghjXK6DGYueTu4AHz9S.jpg", "order": 11}, {"name": "Tom Waite", "character": "FBI Agent (uncredited)", "id": 1338215, "credit_id": "53b95ebe0e0a2676bb00988b", "cast_id": 27, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 12}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe4afbc3a368484e1711df", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.2, "runtime": 96}, "4614": {"poster_path": "/k3ZJrGAccBocurYccRyD3aP6ltV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118471320, "overview": "CIA analyst Jack Ryan must thwart the plans of a terrorist faction that threatens to induce a catastrophic conflict between the United States and Russia's newly elected president by detonating a nuclear weapon at a football game in Baltimore.", "video": false, "id": 4614, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Sum of All Fears", "tagline": "27,000 nuclear weapons. One is missing.", "vote_count": 117, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0164184", "adult": false, "backdrop_path": "/rGvao8CGRgtFmiJewzJxCe6cspl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}, {"name": "MFP Munich Film Partners GmbH & Company I. Produktions KG", "id": 21409}, {"name": "S.O.A.F. Productions", "id": 21410}], "release_date": "2002-05-31", "popularity": 1.14643552805662, "original_title": "The Sum of All Fears", "budget": 68000000, "cast": [{"name": "Ben Affleck", "character": "Jack Ryan", "id": 880, "credit_id": "52fe43cfc3a36847f80717db", "cast_id": 11, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "DCI William Cabot", "id": 192, "credit_id": "52fe43cfc3a36847f80717df", "cast_id": 12, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "James Cromwell", "character": "President Robert Bob Fowler", "id": 2505, "credit_id": "52fe43cfc3a36847f80717e3", "cast_id": 13, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 2}, {"name": "Ken Jenkins", "character": "Admiral Pollack", "id": 38570, "credit_id": "52fe43cfc3a36847f80717e7", "cast_id": 14, "profile_path": "/6w9OgC4nGUfYavC86a3FeeMgUJ4.jpg", "order": 3}, {"name": "Liev Schreiber", "character": "John Clark", "id": 23626, "credit_id": "52fe43cfc3a36847f80717eb", "cast_id": 15, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Gene Revell", "id": 14888, "credit_id": "52fe43cfc3a36847f80717ef", "cast_id": 16, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "John Beasley", "character": "General Lasseter", "id": 38571, "credit_id": "52fe43cfc3a36847f80717f3", "cast_id": 17, "profile_path": "/mboK7DsL33Ulmoj6LwJIfJKV5tu.jpg", "order": 6}, {"name": "Philip Baker Hall", "character": "Defense Secretary Becker", "id": 4492, "credit_id": "52fe43cfc3a36847f80717fd", "cast_id": 19, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 7}, {"name": "Bridget Moynahan", "character": "Dr. Cathy Muller", "id": 18354, "credit_id": "52fe43cfc3a36847f8071801", "cast_id": 20, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 8}, {"name": "Ciar\u00e1n Hinds", "character": "President Nemerov", "id": 8785, "credit_id": "52fe43cfc3a36847f8071805", "cast_id": 21, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 9}, {"name": "Michel 'Gish' Abou-Samah", "character": "Olson's Translator", "id": 6075, "credit_id": "52fe43cfc3a36847f8071809", "cast_id": 22, "profile_path": "/sWoFi9ksYFQhj5lE2GelTNVXxN.jpg", "order": 10}], "directors": [{"name": "Phil Alden Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe43cfc3a36847f80717a1", "profile_path": "/aDkpgJkcHHnd3cCY1Umiouxbxw0.jpg", "id": 23968}], "vote_average": 5.8, "runtime": 124}, "8961": {"poster_path": "/680X9apSqmAcebLg8evnnUeQNeI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 273339556, "overview": "Martin Lawrence and Will Smith reunite as out-of-control trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force. Bullets fly, cars crash, and laughs explode as they pursue a whacked-out drug lord from the streets of Miami to the barrios of Cuba. But the real fireworks result when Lawrence discovers that playboy Smith is secretly romancing his sexy sister Syd.", "video": false, "id": 8961, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Bad Boys II", "tagline": "If you can't stand the heat, get out of Miami.", "vote_count": 518, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4DdFOVFwzbRJLqN4oynYLY0XVwL.jpg", "poster_path": "/tSVbihfvVTCbcm0zXKA7L8R6Y9v.jpg", "id": 14890, "name": "Bad Boys Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0172156", "adult": false, "backdrop_path": "/uuDGDpvItQQfOOZlAXB5Yh51J4d.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2003-07-18", "popularity": 1.02348554963783, "original_title": "Bad Boys II", "budget": 130000000, "cast": [{"name": "Will Smith", "character": "Detective Mike Lowrey", "id": 2888, "credit_id": "52fe44cbc3a36847f80aa747", "cast_id": 31, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Detective Marcus Burnett", "id": 78029, "credit_id": "52fe44cbc3a36847f80aa6d1", "cast_id": 3, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "Gabrielle Union", "character": "Sydney 'Syd' Burnett", "id": 17773, "credit_id": "52fe44cbc3a36847f80aa727", "cast_id": 23, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 2}, {"name": "Jordi Moll\u00e0", "character": "Hector Juan Carlos 'Johnny' Tapia", "id": 31384, "credit_id": "52fe44cbc3a36847f80aa6d5", "cast_id": 4, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 3}, {"name": "Peter Stormare", "character": "Alexei", "id": 53, "credit_id": "52fe44cbc3a36847f80aa6d9", "cast_id": 6, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 4}, {"name": "Joe Pantoliano", "character": "Captain C. Howard", "id": 532, "credit_id": "52fe44cbc3a36847f80aa6dd", "cast_id": 8, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Oleg Taktarov", "character": "Josef", "id": 77351, "credit_id": "52fe44cbc3a36847f80aa71d", "cast_id": 21, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 6}, {"name": "Theresa Randle", "character": "Theresa Burnett", "id": 4604, "credit_id": "52fe44cbc3a36847f80aa72b", "cast_id": 24, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 7}, {"name": "Otto Sanchez", "character": "Carlos", "id": 59739, "credit_id": "52fe44cbc3a36847f80aa72f", "cast_id": 25, "profile_path": "/mlRevsrPkl0UJ4oRZTIjTHwKQAw.jpg", "order": 8}, {"name": "Jason Manuel Olazabal", "character": "Marco Vargas", "id": 147960, "credit_id": "52fe44cbc3a36847f80aa733", "cast_id": 26, "profile_path": "/52AecacpPjSjP5mJwEHkOg2LooX.jpg", "order": 9}, {"name": "Yul Vazquez", "character": "Mateo Reyes", "id": 75604, "credit_id": "52fe44cbc3a36847f80aa737", "cast_id": 27, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 10}, {"name": "Jon Seda", "character": "Roberto", "id": 288, "credit_id": "52fe44cbc3a36847f80aa73b", "cast_id": 28, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 11}, {"name": "Michael Shannon", "character": "Floyd Poteet", "id": 335, "credit_id": "52fe44cbc3a36847f80aa73f", "cast_id": 29, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 12}, {"name": "John Salley", "character": "Fletcher", "id": 119869, "credit_id": "52fe44cbc3a36847f80aa74b", "cast_id": 32, "profile_path": "/sIrLQv2MLpSm9s7sXPbzRtVhYSi.jpg", "order": 13}, {"name": "Michael Bay", "character": "Driver", "id": 865, "credit_id": "52fe44cbc3a36847f80aa743", "cast_id": 30, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 14}, {"name": "Ron Madoff", "character": "Boat Scene Extra", "id": 1286269, "credit_id": "52fe44ccc3a36847f80aa7a3", "cast_id": 47, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 15}, {"name": "Gary Nickens", "character": "Detective Fanuti", "id": 1286657, "credit_id": "538079b3c3a368059e004ef1", "cast_id": 48, "profile_path": "/zFi87EEyy24d2NdZOoORWcwgeYi.jpg", "order": 16}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe44cbc3a36847f80aa6cd", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 147}, "10327": {"poster_path": "/wECfNeNPTO5stVguJZ4lWYzd3J6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After Elle Woods, the eternally perky, fashionably adventurous, famously blonde Harvard Law grad gets fired by her law firm because of her opposition to animal testing, she takes her fight to Washington. As an aide for Congresswoman Victoria Rudd, she pushes for a bill to ban testing once and for all, but it's her building's doorman who advises her on how to get her way on the Hill.", "video": false, "id": 10327, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Legally Blonde 2: Red, White & Blonde", "tagline": "Bigger. Bolder. Blonder.", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aabPyPAA6E8hJ7tUipwunr3Itzb.jpg", "poster_path": "/atW2tUdKztpE66G1FMLCj12BHWz.jpg", "id": 86024, "name": "Legally Blonde Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0333780", "adult": false, "backdrop_path": "/kHI6u5sywNk8BZLPIJxpvUZitVA.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2003-07-02", "popularity": 1.1683863283358, "original_title": "Legally Blonde 2: Red, White & Blonde", "budget": 0, "cast": [{"name": "Reese Witherspoon", "character": "Elle Woods", "id": 368, "credit_id": "52fe435a9251416c7500d091", "cast_id": 8, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Sally Field", "character": "Rep. Victoria Rudd", "id": 35, "credit_id": "52fe435a9251416c7500d095", "cast_id": 9, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "Regina King", "character": "Grace Rossiter", "id": 9788, "credit_id": "52fe435a9251416c7500d099", "cast_id": 10, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 2}, {"name": "Jennifer Coolidge", "character": "Paulette", "id": 38334, "credit_id": "52fe435a9251416c7500d09d", "cast_id": 11, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 3}, {"name": "James Newman", "character": "Ray Fuchs", "id": 151124, "credit_id": "52fe435a9251416c7500d0ad", "cast_id": 14, "profile_path": "/yIDXqkrb290f9xAd6yNU0g2QmYQ.jpg", "order": 4}, {"name": "Luke Wilson", "character": "Emmett Richmond", "id": 36422, "credit_id": "52fe435a9251416c7500d0b1", "cast_id": 15, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 5}], "directors": [{"name": "Charles Herman-Wurmfeld", "department": "Directing", "job": "Director", "credit_id": "52fe435a9251416c7500d0a3", "profile_path": "/l2YqPQmhUWLyhDqVUjEHLaNWu7x.jpg", "id": 76247}], "vote_average": 4.9, "runtime": 95}, "82690": {"poster_path": "/93FsllrXXWncp7BQYTdOU1XMRXo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 471222889, "overview": "Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.", "video": false, "id": 82690, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wreck-It Ralph", "tagline": "The story of a regular guy just looking for a little wreck-ognition.", "vote_count": 2615, "homepage": "http://disney.go.com/wreck-it-ralph", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1772341", "adult": false, "backdrop_path": "/1HjKgkIdR2qw8ihM6MTxgdST2kM.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2012-11-01", "popularity": 1.62109490698612, "original_title": "Wreck-It Ralph", "budget": 165000000, "cast": [{"name": "John C. Reilly", "character": "Wreck-It Ralph (voice)", "id": 4764, "credit_id": "52fe486a9251416c9108bcd5", "cast_id": 9, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 0}, {"name": "Sarah Silverman", "character": "Vanellope von Schweetz (voice)", "id": 7404, "credit_id": "52fe486a9251416c9108bcdd", "cast_id": 11, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 1}, {"name": "Jane Lynch", "character": "Sergeant Calhoun (voice)", "id": 43775, "credit_id": "52fe486a9251416c9108bcd9", "cast_id": 10, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 2}, {"name": "Jack McBrayer", "character": "Fix-It Felix (voice)", "id": 58737, "credit_id": "52fe486b9251416c9108bce1", "cast_id": 12, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 3}, {"name": "Jamie Elman", "character": "Rancis Fluggerbutter (voice)", "id": 95002, "credit_id": "52fe486b9251416c9108bce5", "cast_id": 13, "profile_path": "/1YOxX9IhLp8TeLnsAA2bimC70pz.jpg", "order": 4}, {"name": "Adam Carolla", "character": "Wynnchel (voice)", "id": 76245, "credit_id": "52fe486b9251416c9108bce9", "cast_id": 14, "profile_path": "/fsbLNn6MudkkSXj78TM8bDifd96.jpg", "order": 5}, {"name": "Alan Tudyk", "character": "King Candy (voice)", "id": 21088, "credit_id": "52fe486b9251416c9108bced", "cast_id": 15, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 6}, {"name": "Mindy Kaling", "character": "Taffyta Muttonfudge (voice)", "id": 125167, "credit_id": "52fe486b9251416c9108bcf1", "cast_id": 16, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 7}, {"name": "Joe Lo Truglio", "character": "Markowski (voice)", "id": 21131, "credit_id": "52fe486b9251416c9108bcf5", "cast_id": 17, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Ed O'Neill", "character": "Mr. Litwak (voice)", "id": 18977, "credit_id": "52fe486b9251416c9108bcf9", "cast_id": 18, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 9}, {"name": "Dennis Haysbert", "character": "General Hologram (voice)", "id": 352, "credit_id": "52fe486b9251416c9108bcfd", "cast_id": 19, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 10}, {"name": "Edie McClurg", "character": "Mary (voice)", "id": 3202, "credit_id": "52fe486b9251416c9108bd01", "cast_id": 20, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 11}, {"name": "Jess Harnell", "character": "Don (voice)", "id": 84495, "credit_id": "52fe486b9251416c9108bd05", "cast_id": 22, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 12}, {"name": "Rachael Harris", "character": "Deanna (voice)", "id": 46074, "credit_id": "52fe486b9251416c9108bd09", "cast_id": 23, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 13}, {"name": "Skylar Astin", "character": "Roy (voice)", "id": 73128, "credit_id": "52fe486b9251416c9108bd0d", "cast_id": 24, "profile_path": "/Aj1gqLbzKvcxE61RAR3456RPQ0V.jpg", "order": 14}, {"name": "Roger Craig Smith", "character": "Sonic the Hedgehog (voice)", "id": 75038, "credit_id": "52fe486b9251416c9108bd1d", "cast_id": 28, "profile_path": "/kGBdh92GpLs8gA4OaAL5JCDoTjw.jpg", "order": 15}, {"name": "Kyle Hebert", "character": "Ryu (voice)", "id": 571225, "credit_id": "52fe486b9251416c9108bd21", "cast_id": 29, "profile_path": "/fiuoKaNVkpeVgBvxfEzkzpTxqTY.jpg", "order": 16}, {"name": "Reuben Langdon", "character": "Ken Masters (voice)", "id": 237163, "credit_id": "52fe486b9251416c9108bd25", "cast_id": 30, "profile_path": "/oppPILAmMxJjpP1RBCBd7lfqsaN.jpg", "order": 17}, {"name": "Gerald C. Rivers", "character": "M. Bison (voice)", "id": 1173048, "credit_id": "52fe486b9251416c9108bd29", "cast_id": 31, "profile_path": "/rdaEgSuhSl9QRYh93To5bDjUoh5.jpg", "order": 18}, {"name": "Maurice LaMarche", "character": "Tapper (voice)", "id": 34521, "credit_id": "5443dff9c3a3683dfb005242", "cast_id": 35, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 19}, {"name": "John DiMaggio", "character": "Beard Papa (voice)", "id": 294916, "credit_id": "52fe486b9251416c9108bd31", "cast_id": 33, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 20}, {"name": "Rich Moore", "character": "Zangief (voice)", "id": 165787, "credit_id": "52fe486b9251416c9108bd35", "cast_id": 34, "profile_path": "/9KfA5vZiSk3dBvXHlKAjDTnwlxc.jpg", "order": 21}], "directors": [{"name": "Rich Moore", "department": "Directing", "job": "Director", "credit_id": "52fe486a9251416c9108bca7", "profile_path": "/9KfA5vZiSk3dBvXHlKAjDTnwlxc.jpg", "id": 165787}], "vote_average": 6.9, "runtime": 108}, "70160": {"poster_path": "/iLJdwmzrHFjFwI5lvYAT1gcpRuA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 691210692, "overview": "Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which \u201cTributes\u201d must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she\u2019s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.", "video": false, "id": 70160, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Hunger Games", "tagline": "May The Odds Be Ever In Your Favor.", "vote_count": 5207, "homepage": "http://www.thehungergamesmovie.com/", "belongs_to_collection": {"backdrop_path": "/lWZB4VFSlU292oJ3ZAzAzPi9GU0.jpg", "poster_path": "/cEBNDEMGqvSvU0knEv9Wl3dk5kv.jpg", "id": 131635, "name": "The Hunger Games Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1392170", "adult": false, "backdrop_path": "/sVv4VXJ7Vd9qDPncs0zu2XepWQr.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Color Force", "id": 5420}], "release_date": "2012-03-23", "popularity": 1.8640994028032, "original_title": "The Hunger Games", "budget": 75000000, "cast": [{"name": "Jennifer Lawrence", "character": "Katniss Everdeen", "id": 72129, "credit_id": "52fe47edc3a368484e0e0cdb", "cast_id": 4, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Peeta Mellark", "id": 27972, "credit_id": "52fe47edc3a368484e0e0cdf", "cast_id": 5, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Liam Hemsworth", "character": "Gale Hawthorne", "id": 96066, "credit_id": "52fe47edc3a368484e0e0d37", "cast_id": 35, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Caesar Flickerman", "id": 2283, "credit_id": "52fe47edc3a368484e0e0d3b", "cast_id": 36, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Elizabeth Banks", "character": "Effie Trinket", "id": 9281, "credit_id": "52fe47edc3a368484e0e0d3f", "cast_id": 37, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 4}, {"name": "Woody Harrelson", "character": "Haymitch Abernathy", "id": 57755, "credit_id": "52fe47edc3a368484e0e0d43", "cast_id": 38, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 5}, {"name": "Willow Shields", "character": "Primrose Everdeen", "id": 530025, "credit_id": "52fe47edc3a368484e0e0d47", "cast_id": 39, "profile_path": "/bKMAnqGbyVeiRBG3im1Y33Vtrgx.jpg", "order": 6}, {"name": "Wes Bentley", "character": "Seneca Crane", "id": 8210, "credit_id": "52fe47edc3a368484e0e0d4b", "cast_id": 40, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 7}, {"name": "Paula Malcomson", "character": "Katniss' Mother", "id": 47533, "credit_id": "52fe47edc3a368484e0e0d4f", "cast_id": 41, "profile_path": "/mqiiy0HXExPYaIczPxWFRDGqhwA.jpg", "order": 8}, {"name": "Amandla Stenberg", "character": "Rue", "id": 561869, "credit_id": "52fe47edc3a368484e0e0d53", "cast_id": 42, "profile_path": "/zbsIVoRHTw3VmQ18O7xUaSfIQBE.jpg", "order": 9}, {"name": "Lenny Kravitz", "character": "Cinna", "id": 77069, "credit_id": "52fe47edc3a368484e0e0d57", "cast_id": 43, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 10}, {"name": "Alexander Ludwig", "character": "Cato", "id": 23498, "credit_id": "52fe47edc3a368484e0e0d5b", "cast_id": 44, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 11}, {"name": "Isabelle Fuhrman", "character": "Clove", "id": 77517, "credit_id": "52fe47edc3a368484e0e0d5f", "cast_id": 45, "profile_path": "/bZslEz0bSkA7lxVZfK4zMoNny7I.jpg", "order": 12}, {"name": "Donald Sutherland", "character": "President Snow", "id": 55636, "credit_id": "52fe47edc3a368484e0e0d63", "cast_id": 46, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 13}, {"name": "Leven Rambin", "character": "Glimmer", "id": 207401, "credit_id": "52fe47edc3a368484e0e0d67", "cast_id": 47, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 14}, {"name": "Nelson Ascencio", "character": "Flavius", "id": 197350, "credit_id": "52fe47edc3a368484e0e0d6b", "cast_id": 53, "profile_path": "/xdxsCTSOATrUmXsGUloTOtjIO1J.jpg", "order": 15}, {"name": "Jack Quaid", "character": "Marvel", "id": 1030513, "credit_id": "52fe47edc3a368484e0e0d6f", "cast_id": 56, "profile_path": "/jPBmqN3eNPHBh04AkK5ruGFFcOi.jpg", "order": 16}, {"name": "Mackenzie Lintz", "character": "Tribute Girl District 8", "id": 1286617, "credit_id": "52fe47edc3a368484e0e0d8b", "cast_id": 65, "profile_path": "/2uaeDKbQk8vzDSEuaUqZV14tEfq.jpg", "order": 17}, {"name": "Ian Nelson", "character": "Tribute Boy District 3", "id": 1348957, "credit_id": "54de8e7692514119530021d8", "cast_id": 70, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 18}, {"name": "Dayo Okeniyi", "character": "Thresh", "id": 1030512, "credit_id": "54e9da08c3a3684ea6003317", "cast_id": 71, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 19}], "directors": [{"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe47edc3a368484e0e0ccb", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}], "vote_average": 6.5, "runtime": 142}, "8963": {"poster_path": "/oDJyDX11HW4j565vUjmFagKxDTQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157387195, "overview": "On a US nuclear missile sub, a young first officer stages a mutiny to prevent his trigger happy captain from launching his missiles before confirming his orders to do so.", "video": false, "id": 8963, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Crimson Tide", "tagline": "Danger runs deep.", "vote_count": 137, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112740", "adult": false, "backdrop_path": "/vPqTyOIeqfmQVNJCMwtkAE17uAc.jpg", "production_companies": [{"name": "Hollywood Pictures", "id": 915}, {"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}], "release_date": "1995-05-12", "popularity": 0.523579742148454, "original_title": "Crimson Tide", "budget": 55000000, "cast": [{"name": "Gene Hackman", "character": "Captain Frank Ramsey", "id": 193, "credit_id": "52fe44ccc3a36847f80aa7e1", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Lt. Commander Ron Hunter", "id": 5292, "credit_id": "52fe44ccc3a36847f80aa7e5", "cast_id": 3, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Lt. Peter 'WEAPS' Ince", "id": 110, "credit_id": "52fe44ccc3a36847f80aa7e9", "cast_id": 4, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "James Gandolfini", "character": "Lt. Bobby Dougherty", "id": 4691, "credit_id": "52fe44ccc3a36847f80aa7ed", "cast_id": 5, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 3}, {"name": "Matt Craven", "character": "Lt. Roy Zimmer, USS Alabama Communications Officer", "id": 13525, "credit_id": "52fe44ccc3a36847f80aa815", "cast_id": 12, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 4}, {"name": "George Dzundza", "character": "Chief of the Boat", "id": 10477, "credit_id": "52fe44ccc3a36847f80aa819", "cast_id": 13, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 5}, {"name": "Rocky Carroll", "character": "Lt. Darik Westergaurd", "id": 27448, "credit_id": "52fe44ccc3a36847f80aa81d", "cast_id": 14, "profile_path": "/dSeLlsf3JGkGTH4mqQBKQkgiBT4.jpg", "order": 6}, {"name": "Jaime Gomez", "character": "Officer of the Deck Mahoney", "id": 113387, "credit_id": "52fe44ccc3a36847f80aa821", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Michael Milhoan", "character": "Chief of the Watch Hunsicker", "id": 154295, "credit_id": "52fe44ccc3a36847f80aa825", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Scott Burkholder", "character": "T.S.O. Billy Linkletter", "id": 104503, "credit_id": "52fe44ccc3a36847f80aa829", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Danny Nucci", "character": "Petty Officer First Class Danny Rivetti", "id": 8540, "credit_id": "52fe44ccc3a36847f80aa82d", "cast_id": 18, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 10}, {"name": "Lillo Brancato", "character": "Petty Officer Third Class Russell Vossler", "id": 17917, "credit_id": "52fe44ccc3a36847f80aa831", "cast_id": 19, "profile_path": "/3dwUQEQImGDUDn9Q4fxl06pW8pS.jpg", "order": 11}, {"name": "Eric Bruskotter", "character": "Bennefield", "id": 132729, "credit_id": "52fe44ccc3a36847f80aa835", "cast_id": 20, "profile_path": "/2N2W06SctE3BXExo3EmaPyjPNPO.jpg", "order": 12}, {"name": "Ricky Schroder", "character": "Lt. Paul Hellerman", "id": 76546, "credit_id": "52fe44ccc3a36847f80aa839", "cast_id": 21, "profile_path": "/qjNm7bi1nI0wbqlc7EGNeH9OlKH.jpg", "order": 13}, {"name": "Steve Zahn", "character": "William Barnes", "id": 18324, "credit_id": "52fe44ccc3a36847f80aa83d", "cast_id": 22, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 14}, {"name": "Marcello Thedford", "character": "Lawson", "id": 59300, "credit_id": "52fe44ccc3a36847f80aa841", "cast_id": 23, "profile_path": "/r6AOyQWIi7Zi1WQUXjF8T2HafIR.jpg", "order": 15}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe44ccc3a36847f80aa7dd", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.6, "runtime": 116}, "61979": {"poster_path": "/2VvVlD8YDhn0dlRpi7XJRcl8lt0.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Story of two young people who belong to different worlds. It is the chronicle of a love improbable, almost impossible but inevitable dragging in a frantic journey they discover the first great love. Babi (Maria Valverde) is a girl from upper-middle class that is educated in goodness and innocence . Hache (Mario Casas) is a rebellious boy, impulsive, unconscious, has a appetite for risk and danger embodied in endless fights and illegal motorbike races, the limit of common sense", "video": false, "id": 61979, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Three Steps Above Heaven", "tagline": "", "vote_count": 71, "homepage": "http://www.3msc.es", "belongs_to_collection": {"backdrop_path": "/v0j8pUKeYvlzyQeRVp1bhX0tomm.jpg", "poster_path": null, "id": 141649, "name": "Three Steps Above Heaven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1648216", "adult": false, "backdrop_path": "/s2oijODraFSK98X691iXUIOYULl.jpg", "production_companies": [{"name": "Antena 3 Films", "id": 6538}], "release_date": "2010-12-03", "popularity": 0.821896993080349, "original_title": "Tres metros sobre el cielo", "budget": 0, "cast": [{"name": "Mar\u00eda Valverde", "character": "Babi", "id": 77122, "credit_id": "52fe466cc3a368484e08fe3b", "cast_id": 1, "profile_path": "/43htKmIzJGfRUJ95a0d7ZVLQFnR.jpg", "order": 0}, {"name": "Mario Casas", "character": "Hache", "id": 82700, "credit_id": "52fe466cc3a368484e08fe3f", "cast_id": 2, "profile_path": "/p2C58kRezc0goIWDMYCn194C78a.jpg", "order": 1}, {"name": "\u00c1lvaro Cervantes", "character": "Pollo", "id": 224874, "credit_id": "52fe466cc3a368484e08fe43", "cast_id": 3, "profile_path": "/uEyDrAtn2sX3xhZ0NdTg7F649AE.jpg", "order": 2}, {"name": "Nerea Camacho", "character": "Dani", "id": 82455, "credit_id": "52fe466cc3a368484e08fe47", "cast_id": 4, "profile_path": "/cLtaC2j8VswIe7UxybuZpQFGbL.jpg", "order": 3}, {"name": "Marina Salas", "character": "Katina", "id": 234619, "credit_id": "52fe466cc3a368484e08fe4b", "cast_id": 5, "profile_path": "/3LGs4MiL9RzD6BKsr7teioJ2dqK.jpg", "order": 4}, {"name": "Diego Mart\u00edn", "character": "Alejandro", "id": 126771, "credit_id": "52fe466cc3a368484e08fe4f", "cast_id": 6, "profile_path": "/4WKXdMHCmjgEleKBFccr7KWW3Du.jpg", "order": 5}, {"name": "Cristina Plazas", "character": "Rafaela", "id": 234620, "credit_id": "52fe466cc3a368484e08fe53", "cast_id": 7, "profile_path": "/4PgjV2Sw53oRHDhRZsHD4ah8RvI.jpg", "order": 6}, {"name": "Andrea Duro", "character": "Mara", "id": 572443, "credit_id": "553570b992514125dc004396", "cast_id": 11, "profile_path": "/bxHGpkYavtSc21udkJNbujwpkyq.jpg", "order": 7}], "directors": [{"name": "Fernando Gonz\u00e1lez Molina", "department": "Directing", "job": "Director", "credit_id": "52fe466cc3a368484e08fe59", "profile_path": null, "id": 82724}], "vote_average": 7.5, "runtime": 122}, "127517": {"poster_path": "/kTLcEBTPzptlBP8auLRlK8KTKvV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3428048, "overview": "Disconnect interweaves multiple storylines about people searching for human connection in today\u2019s wired world. Through poignant turns that are both harrowing and touching, the stories intersect with surprising twists that expose a shocking reality into our daily use of technology that mediates and defines our relationships and ultimately our lives.", "video": false, "id": 127517, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Disconnect", "tagline": "Look up.", "vote_count": 148, "homepage": "http://www.disconnectthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1433811", "adult": false, "backdrop_path": "/asTq74kXjslx8A13qDTVdzvyJ8.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "LD Entertainment", "id": 10285}, {"name": "Wonderful Films PLC", "id": 11140}, {"name": "Liddell Entertainment", "id": 8533}], "release_date": "2012-09-11", "popularity": 1.19717707030878, "original_title": "Disconnect", "budget": 0, "cast": [{"name": "Jason Bateman", "character": "Rich Boyd", "id": 23532, "credit_id": "52fe4afcc3a368484e1715db", "cast_id": 3, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Hope Davis", "character": "Lydia Boyd", "id": 15250, "credit_id": "52fe4afcc3a368484e1715df", "cast_id": 4, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 1}, {"name": "Frank Grillo", "character": "Mike Dixon", "id": 81685, "credit_id": "52fe4afcc3a368484e1715e3", "cast_id": 5, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 2}, {"name": "Paula Patton", "character": "Cindy Hull", "id": 52851, "credit_id": "52fe4afcc3a368484e1715e7", "cast_id": 6, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 3}, {"name": "Michael Nyqvist", "character": "Stephen Schumacher", "id": 6283, "credit_id": "52fe4afcc3a368484e1715eb", "cast_id": 7, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 4}, {"name": "Andrea Riseborough", "character": "Nina Dunham", "id": 127558, "credit_id": "52fe4afcc3a368484e1715ef", "cast_id": 8, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 5}, {"name": "Alexander Skarsg\u00e5rd", "character": "Derek Hull", "id": 28846, "credit_id": "52fe4afcc3a368484e1715f3", "cast_id": 9, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 6}, {"name": "Max Thieriot", "character": "Kyle", "id": 41883, "credit_id": "52fe4afcc3a368484e1715f7", "cast_id": 10, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 7}, {"name": "Jonah Bobo", "character": "Ben Boyd", "id": 51297, "credit_id": "52fe4afcc3a368484e1715fb", "cast_id": 11, "profile_path": "/ujDjz3FtyCA3h2vF0rouoqatGNR.jpg", "order": 8}, {"name": "Colin Ford", "character": "Jason Dixon", "id": 74539, "credit_id": "52fe4afcc3a368484e1715ff", "cast_id": 12, "profile_path": "/6S1dOJnIuaKAXoVxTePNOQJbsFU.jpg", "order": 9}, {"name": "Haley Ramm", "character": "Abby Boyd", "id": 61555, "credit_id": "52fe4afcc3a368484e171603", "cast_id": 13, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 10}, {"name": "Norbert Leo Butz", "character": "Peter", "id": 52020, "credit_id": "52fe4afcc3a368484e17161f", "cast_id": 18, "profile_path": "/yYonYgBHg9ocOWWNJnQaEtmMhrq.jpg", "order": 11}, {"name": "Kasi Lemmons", "character": "Roberta Washington", "id": 51864, "credit_id": "52fe4afcc3a368484e171623", "cast_id": 19, "profile_path": "/dO8h85dpcoVFkKwa8MMOacRro4F.jpg", "order": 12}, {"name": "John Sharian", "character": "Ross Lynd", "id": 36900, "credit_id": "52fe4afcc3a368484e171627", "cast_id": 20, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 13}, {"name": "Aviad Bernstein", "character": "Frye", "id": 1273243, "credit_id": "52fe4afcc3a368484e17162b", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Teresa Calentano", "character": "Maria", "id": 1273244, "credit_id": "52fe4afcc3a368484e17162f", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Marc Jacobs", "character": "Harvey", "id": 1053305, "credit_id": "52fe4afcc3a368484e171633", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Cole Mohr", "character": "Cole", "id": 1273245, "credit_id": "52fe4afcc3a368484e171637", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Kevin Csolak", "character": "Shane", "id": 1094567, "credit_id": "52fe4afcc3a368484e17163b", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Antonella Lentini", "character": "Cassie", "id": 1273247, "credit_id": "52fe4afcc3a368484e17163f", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Tessa Albertson", "character": "Isabella", "id": 1273248, "credit_id": "52fe4afcc3a368484e171643", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Erin Wilhelmi", "character": "Tracy", "id": 1053419, "credit_id": "52fe4afcc3a368484e171647", "cast_id": 28, "profile_path": "/81JQCHJyMJy55ypRBj2y6C1HrJF.jpg", "order": 21}], "directors": [{"name": "Henry Alex Rubin", "department": "Directing", "job": "Director", "credit_id": "52fe4afcc3a368484e1715d1", "profile_path": null, "id": 82839}], "vote_average": 7.0, "runtime": 115}, "4638": {"poster_path": "/5Jx6s6VXnunh8wCLgR0YgjwSgjh.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 79536889, "overview": "Top London cop PC Nicholas Angel is good. Too good. And to stop the rest of his team from looking bad, he is reassigned to the quiet town of Sandford. Paired with simple country cop Danny, everything seems quiet until two actors are found decapitated. It is addressed as an accident, but Angel isn't going to accept that, especially when more and more people turn up dead.", "video": false, "id": 4638, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Hot Fuzz", "tagline": "Big cops. Small town. Moderate violence.", "vote_count": 607, "homepage": "http://www.universalstudiosentertainment.com/hot-fuzz/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425112", "adult": false, "backdrop_path": "/jYhKFJng6KOot8lopXkgofsTpgM.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}, {"name": "Big Talk Productions", "id": 443}, {"name": "GAGA", "id": 3656}], "release_date": "2007-02-14", "popularity": 1.03256157108599, "original_title": "Hot Fuzz", "budget": 8000000, "cast": [{"name": "Simon Pegg", "character": "Nicholas Angel", "id": 11108, "credit_id": "52fe43d0c3a36847f8071c17", "cast_id": 40, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Nick Frost", "character": "PC Danny Butterman", "id": 11109, "credit_id": "52fe43d0c3a36847f8071c1b", "cast_id": 41, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 1}, {"name": "Timothy Dalton", "character": "Simon Skinner", "id": 10669, "credit_id": "52fe43d0c3a36847f8071c1f", "cast_id": 42, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Inspector Frank Butterman", "id": 388, "credit_id": "52fe43d0c3a36847f8071c23", "cast_id": 43, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Paddy Considine", "character": "DS Andy Wainwright", "id": 14887, "credit_id": "52fe43d0c3a36847f8071c27", "cast_id": 44, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Rafe Spall", "character": "DC Andy Cartwright", "id": 28847, "credit_id": "52fe43d0c3a36847f8071c2b", "cast_id": 45, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 5}, {"name": "Adam Buxton", "character": "Tim Messenger", "id": 155532, "credit_id": "52fe43d0c3a36847f8071c2f", "cast_id": 46, "profile_path": "/zL31NlBBKL1NTjR48h610by5Rld.jpg", "order": 6}, {"name": "Kevin Eldon", "character": "Sergeant Tony Fisher", "id": 39185, "credit_id": "52fe43d0c3a36847f8071c33", "cast_id": 47, "profile_path": "/uQwQKDiByfdVXVCIEXbCgClVPQg.jpg", "order": 7}, {"name": "Olivia Colman", "character": "PC Doris Thatcher", "id": 39187, "credit_id": "52fe43d0c3a36847f8071c37", "cast_id": 48, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 8}, {"name": "Edward Woodward", "character": "Tom Weaver", "id": 39188, "credit_id": "52fe43d0c3a36847f8071c3b", "cast_id": 49, "profile_path": "/7fjj2SwxZ3gev9JPwYfVpgoeUFR.jpg", "order": 9}, {"name": "Bill Nighy", "character": "Met Chief Inspector", "id": 2440, "credit_id": "52fe43d0c3a36847f8071c3f", "cast_id": 50, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 10}, {"name": "Paul Freeman", "character": "Rev. Philip Shooter", "id": 652, "credit_id": "52fe43d0c3a36847f8071c43", "cast_id": 51, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 11}, {"name": "Stuart Wilson", "character": "Dr. Robin Hatcher", "id": 14344, "credit_id": "52fe43d0c3a36847f8071c47", "cast_id": 52, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 12}, {"name": "Lucy Punch", "character": "Eve Draper", "id": 66446, "credit_id": "53408e4d0e0a2679a1000a2f", "cast_id": 53, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 13}, {"name": "Rory McCann", "character": "Michael \"Lurch\" Armstrong", "id": 3075, "credit_id": "546eb722c3a3682fa4000c94", "cast_id": 54, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 14}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe43d0c3a36847f8071bcb", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 7.0, "runtime": 121}, "773": {"poster_path": "/69bJxkGA88RNBOFquSmItqCj3LN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100320452, "overview": "Little Miss Sunshine is a comedy about a family of six who are all having a mental breakdown at the same time. To ease their mental lows they decide to take a cross country road trip to a \u201cLittle Miss Sunshine\u201d contest that their daughter has qualified for. An Academy Award winning comedy with memorable performances from its all actors.", "video": false, "id": 773, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Little Miss Sunshine", "tagline": "Everyone just pretend to be normal.", "vote_count": 405, "homepage": "http://www.foxsearchlight.com/littlemisssunshine2/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449059", "adult": false, "backdrop_path": "/2II5wbEvodIXLEGPAkmkBe60rYD.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Big Beach Films", "id": 12808}, {"name": "Bona Fide Productions", "id": 2570}, {"name": "Deep River Productions", "id": 2646}], "release_date": "2006-07-26", "popularity": 0.904582955504413, "original_title": "Little Miss Sunshine", "budget": 8000000, "cast": [{"name": "Abigail Breslin", "character": "Olive", "id": 17140, "credit_id": "52fe4274c3a36847f80200bf", "cast_id": 4, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 0}, {"name": "Toni Collette", "character": "Sheryl", "id": 3051, "credit_id": "52fe4274c3a36847f80200c3", "cast_id": 5, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 1}, {"name": "Greg Kinnear", "character": "Richard", "id": 17141, "credit_id": "52fe4274c3a36847f80200c7", "cast_id": 6, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 2}, {"name": "Paul Dano", "character": "Dwayne", "id": 17142, "credit_id": "52fe4274c3a36847f80200cb", "cast_id": 7, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Grandpa", "id": 1903, "credit_id": "52fe4274c3a36847f80200cf", "cast_id": 8, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Steve Carell", "character": "Frank", "id": 4495, "credit_id": "52fe4274c3a36847f80200d3", "cast_id": 9, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 5}, {"name": "Dean Norris", "character": "State Trooper McCleary", "id": 14329, "credit_id": "54910f4fc3a3684654000a83", "cast_id": 22, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 6}, {"name": "Bryan Cranston", "character": "Stan Grossman", "id": 17419, "credit_id": "54910f6ac3a368465a000abb", "cast_id": 23, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 7}, {"name": "Marc Turtletaub", "character": "Doctor #1", "id": 4857, "credit_id": "54a3c06ac3a368642800267c", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Jill Talley", "character": "Cindy", "id": 17414, "credit_id": "54a3c08ac3a368554200ec31", "cast_id": 25, "profile_path": "/1a6pmvxeBa7aWMJIgwxwRsoi7b3.jpg", "order": 9}, {"name": "Brenda Canela", "character": "Diner Waitress", "id": 17415, "credit_id": "54a3c0a99251414e2800c466", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Julio Oscar Mechoso", "character": "Mechanic", "id": 17413, "credit_id": "54a3c0c09251414d2700bf08", "cast_id": 27, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 11}], "directors": [{"name": "Jonathan Dayton", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f80200af", "profile_path": null, "id": 16959}, {"name": "Valerie Faris", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f80200b5", "profile_path": null, "id": 16960}], "vote_average": 7.0, "runtime": 102}, "4643": {"poster_path": "/8hvMyM2SkijotayC1q5sQwi36qD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55011732, "overview": "A high school swim champion with a troubled past enrolls in the U.S. Coast Guard's \"A\" School, where legendary rescue swimmer Ben Randall teaches him some hard lessons about loss, love, and self-sacrifice", "video": false, "id": 4643, "genres": [{"id": 28, "name": "Action"}], "title": "The Guardian", "tagline": "How Do You Decide Who Lives Or Who Dies?", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0406816", "adult": false, "backdrop_path": "/iGjj8r38g4zqCd0h8LK1MrDlsBz.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Beacon Pictures", "id": 10157}, {"name": "Contrafilm", "id": 1836}, {"name": "Firm Films", "id": 1838}, {"name": "Eyetronics", "id": 15763}], "release_date": "2006-09-28", "popularity": 0.39433863754626, "original_title": "The Guardian", "budget": 70000000, "cast": [{"name": "Kevin Costner", "character": "Ben Randall", "id": 1269, "credit_id": "52fe43d1c3a36847f8071dab", "cast_id": 2, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Jake Fischer", "id": 18976, "credit_id": "52fe43d1c3a36847f8071daf", "cast_id": 3, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Sela Ward", "character": "Helen Randall", "id": 6068, "credit_id": "52fe43d1c3a36847f8071db3", "cast_id": 4, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 2}, {"name": "Melissa Sagemiller", "character": "Emily Thomas", "id": 41555, "credit_id": "52fe43d1c3a36847f8071db7", "cast_id": 5, "profile_path": "/hNaBo3v9GYnB5yb06OECVAsSoEz.jpg", "order": 3}, {"name": "Omari Hardwick", "character": "Carl Billings", "id": 41556, "credit_id": "52fe43d1c3a36847f8071dbb", "cast_id": 6, "profile_path": "/gW4eSrYlyFhuC4QrMD0whDxA9DS.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Captain William Hadley", "id": 6574, "credit_id": "52fe43d1c3a36847f8071dbf", "cast_id": 7, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Neal McDonough", "character": "Skinner", "id": 2203, "credit_id": "52fe43d1c3a36847f8071e35", "cast_id": 27, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 6}, {"name": "Derek Adams", "character": "Lapp", "id": 145538, "credit_id": "52fe43d1c3a36847f8071e39", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Bryce Cass", "character": "Manny", "id": 145539, "credit_id": "52fe43d1c3a36847f8071e3d", "cast_id": 29, "profile_path": "/h6fRXyEqYmyvVLWNF0YhvowAnHp.jpg", "order": 8}, {"name": "Benny Ciaramello", "character": "Perada", "id": 145540, "credit_id": "52fe43d1c3a36847f8071e41", "cast_id": 30, "profile_path": "/8WkSZJyN5XVxkCJuFUSZwAQmO6R.jpg", "order": 9}, {"name": "Shelby Fenner", "character": "Cate Lindsey", "id": 145541, "credit_id": "52fe43d1c3a36847f8071e45", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Peter Gail", "character": "Danny Doran", "id": 145542, "credit_id": "52fe43d1c3a36847f8071e49", "cast_id": 32, "profile_path": "/gPEIRubSIW9nz4H42Kmt2V4yOen.jpg", "order": 11}, {"name": "Damon Lipari", "character": "Bennett", "id": 145543, "credit_id": "52fe43d1c3a36847f8071e4d", "cast_id": 33, "profile_path": "/175kwUszGDwDR9nTZjqaIi7S7KT.jpg", "order": 12}, {"name": "Scott Mueller", "character": "Reeves", "id": 145544, "credit_id": "52fe43d1c3a36847f8071e51", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Travis Willingham", "character": "Finley", "id": 145545, "credit_id": "52fe43d1c3a36847f8071e55", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43d1c3a36847f8071da7", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.9, "runtime": 139}, "21032": {"poster_path": "/hruX9txwuQzEeULoXn4ZZ0cWAey.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An outcast half-wolf risks his life to prevent a deadly epidemic from ravaging Nome, Alaska.", "video": false, "id": 21032, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Balto", "tagline": "Part Dog. Part Wolf. All Hero.", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9VM5LiJV0bGb1st1KyHA3cVnO2G.jpg", "poster_path": "/w0ZgH6Lgxt2bQYnf1ss74UvYftm.jpg", "id": 117693, "name": "Balto Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112453", "adult": false, "backdrop_path": "/fkxHaPJaB35wnoUC7glF16W3lWH.jpg", "production_companies": [{"name": "Amblimation", "id": 4105}, {"name": "Universal Studios", "id": 13}], "release_date": "1995-12-22", "popularity": 0.25548165991954, "original_title": "Balto", "budget": 0, "cast": [{"name": "Kevin Bacon", "character": "Balto (voice)", "id": 4724, "credit_id": "52fe4409c3a368484e00bb65", "cast_id": 1, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Bob Hoskins", "character": "Boris the Goose (voice)", "id": 382, "credit_id": "52fe4409c3a368484e00bb69", "cast_id": 2, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 1}, {"name": "Bridget Fonda", "character": "Jenna (voice)", "id": 2233, "credit_id": "52fe4409c3a368484e00bb8b", "cast_id": 8, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 2}, {"name": "Jim Cummings", "character": "Steele the Sled Dog (voice)", "id": 12077, "credit_id": "52fe4409c3a368484e00bb8f", "cast_id": 9, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 3}, {"name": "Phil Collins", "character": "Muk and Luk (voice)", "id": 110001, "credit_id": "52fe4409c3a368484e00bb93", "cast_id": 10, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 4}, {"name": "Miriam Margolyes", "character": "Grandma Rosy (voice)", "id": 6199, "credit_id": "53071321c3a3680ae8000777", "cast_id": 11, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 5}], "directors": [{"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4409c3a368484e00bb6f", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 6.8, "runtime": 78}, "45610": {"poster_path": "/1gEP9ZC7jpSiuMWNfbOfXTWWF5n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2527904, "overview": "The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.", "video": false, "id": 45610, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Machine Gun Preacher", "tagline": "Hope is the greatest weapon of all", "vote_count": 81, "homepage": "http://www.machinegunpreacher.org/movie/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1586752", "adult": false, "backdrop_path": "/hnn2rJedWAWtmWroJ2xEdO33JPe.jpg", "production_companies": [{"name": "Virgin Produced", "id": 8852}, {"name": "Relativity Media", "id": 7295}, {"name": "Mpower Pictures", "id": 5294}, {"name": "Apparatus Productions", "id": 11956}, {"name": "GG Filmz", "id": 11957}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "ITS Capital", "id": 11958}, {"name": "Merlina Entertainment", "id": 11959}, {"name": "MGP Productions", "id": 11960}, {"name": "Moonlighting Films", "id": 9137}, {"name": "Safady Entertainment", "id": 11961}], "release_date": "2011-09-23", "popularity": 0.619268329051808, "original_title": "Machine Gun Preacher", "budget": 30000000, "cast": [{"name": "Gerard Butler", "character": "Sam Childers", "id": 17276, "credit_id": "52fe46cbc3a36847f8112837", "cast_id": 12, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Lynn", "id": 11705, "credit_id": "52fe46cbc3a36847f8112807", "cast_id": 2, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Justin Michael Brandt", "character": "Teenage Boy", "id": 127129, "credit_id": "52fe46cbc3a36847f811280b", "cast_id": 3, "profile_path": "/5zqOLngigabOdFEj4Q910pKwJjE.jpg", "order": 2}, {"name": "Richard Goteri", "character": "Gun Shop Owner", "id": 133284, "credit_id": "52fe46cbc3a36847f811280f", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Peter Carey", "character": "Bill Wallace", "id": 64873, "credit_id": "52fe46cbc3a36847f8112813", "cast_id": 5, "profile_path": "/4GoUmDPToneKH9bccfbD8vpubTQ.jpg", "order": 4}, {"name": "Brett Wagner", "character": "Ben Hobbs", "id": 60081, "credit_id": "52fe46cbc3a36847f8112817", "cast_id": 6, "profile_path": "/p3ufSavK8iDa5BEKoZHyenhY2Lq.jpg", "order": 5}, {"name": "Barbara Coven", "character": "Shannon Wallace", "id": 133286, "credit_id": "52fe46cbc3a36847f811281b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Kathy Baker", "character": "Daisy", "id": 1907, "credit_id": "52fe46cbc3a36847f811283b", "cast_id": 13, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 7}, {"name": "Michael Shannon", "character": "Donnie", "id": 335, "credit_id": "52fe46cbc3a36847f811283f", "cast_id": 14, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 8}, {"name": "Ryann Campos", "character": "Paige #1", "id": 1053669, "credit_id": "52fe46cbc3a36847f81128df", "cast_id": 41, "profile_path": null, "order": 9}, {"name": "Madeline Carroll", "character": "Paige #2", "id": 62564, "credit_id": "52fe46cbc3a36847f81128e3", "cast_id": 42, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 10}, {"name": "Souleymane Sy Savane", "character": "Deng", "id": 87466, "credit_id": "52fe46cbc3a36847f81128e7", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "Grant R. Krause", "character": "Billy / Contractor", "id": 1125218, "credit_id": "52fe46cbc3a36847f81128eb", "cast_id": 44, "profile_path": null, "order": 12}, {"name": "Reavis Graham", "character": "Pastor Krause", "id": 1125219, "credit_id": "52fe46cbc3a36847f81128ef", "cast_id": 45, "profile_path": null, "order": 13}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe46cbc3a36847f8112821", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.5, "runtime": 129}, "209451": {"poster_path": "/aFr2hkGQT2egYAQd0A74RIZeVnz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67347013, "overview": "From director Clint Eastwood comes the big-screen version of the Tony Award-winning musical Jersey Boys. The film tells the story of four young men from the wrong side of the tracks in New Jersey who came together to form the iconic 1960s rock group The Four Seasons. The story of their trials and triumphs are accompanied by the songs that influenced a generation, including \u201cSherry,\u201d \u201cBig Girls Don\u2019t Cry,\u201d \u201cWalk Like a Man,\u201d \u201cRag Doll,\u201d and many more.", "video": false, "id": 209451, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Jersey Boys", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1742044", "adult": false, "backdrop_path": "/zLYEkkGA5jY8eJ6Nrdf9c8hYvbs.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2014-06-20", "popularity": 0.558611195820452, "original_title": "Jersey Boys", "budget": 40000000, "cast": [{"name": "Christopher Walken", "character": "Angelo \u201cGyp\u201d DeCarlo", "id": 4690, "credit_id": "52fe4d66c3a368484e1e70b9", "cast_id": 5, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 0}, {"name": "Vincent Piazza", "character": "Tommy Devito", "id": 85924, "credit_id": "52fe4d66c3a368484e1e70b5", "cast_id": 2, "profile_path": "/fCXXe8Lp4SU65wmEJYSTaJhdYSC.jpg", "order": 1}, {"name": "Freya Tingley", "character": "Francine Valli", "id": 526727, "credit_id": "52fe4d66c3a368484e1e70bd", "cast_id": 6, "profile_path": "/nPhECps8X5SsFyNitQpByxaYNEp.jpg", "order": 2}, {"name": "James Madio", "character": "Stosh", "id": 65395, "credit_id": "52fe4d66c3a368484e1e70c1", "cast_id": 7, "profile_path": "/3s32FSsr95w6nGtoH5f9sPk1mPw.jpg", "order": 3}, {"name": "Sean Whalen", "character": "Engneer", "id": 9996, "credit_id": "52fe4d66c3a368484e1e70c5", "cast_id": 8, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 4}, {"name": "Kathrine Narducci", "character": "Mary Rinaldi", "id": 17920, "credit_id": "52fe4d66c3a368484e1e70c9", "cast_id": 9, "profile_path": "/96Ni5pAILMiSAARvej9IKd5w8R8.jpg", "order": 5}, {"name": "Francesca Eastwood", "character": "Waitress", "id": 1274513, "credit_id": "52fe4d66c3a368484e1e70cd", "cast_id": 10, "profile_path": "/jTacAmfFuwyWtCqbrTyR24UJMIi.jpg", "order": 6}, {"name": "Mike Doyle", "character": "Bob Crewe", "id": 27107, "credit_id": "52fe4d66c3a368484e1e70d1", "cast_id": 11, "profile_path": "/lvts8lJTazcr8ipvPjjxCkpsuz9.jpg", "order": 7}, {"name": "Steve Schirripa", "character": "Vito", "id": 97188, "credit_id": "52fe4d66c3a368484e1e70d5", "cast_id": 12, "profile_path": "/qz3X10hyuKC0Cn4ni4SQhfWnB9I.jpg", "order": 8}, {"name": "Barry Livingston", "character": "Accountant", "id": 75344, "credit_id": "52fe4d66c3a368484e1e70d9", "cast_id": 13, "profile_path": "/mttrxc8jZnd2y0qAmdSKJpSUDNe.jpg", "order": 9}, {"name": "Alexis Krause", "character": "Party Girl", "id": 1260031, "credit_id": "52fe4d66c3a368484e1e70dd", "cast_id": 14, "profile_path": "/2TevMyemwXBJzG5sUJqP6bGQbq.jpg", "order": 10}, {"name": "Jeremy Luke", "character": "Donnie", "id": 112879, "credit_id": "52fe4d66c3a368484e1e70e1", "cast_id": 15, "profile_path": "/gvBicS8kZjWZ4TFChR7LmC9k3YT.jpg", "order": 11}, {"name": "Silvia Kal", "character": "Producer's Wife", "id": 1274514, "credit_id": "52fe4d66c3a368484e1e70e5", "cast_id": 16, "profile_path": "/lGUvRcmOTAQceP8eWL80Ox9Tg36.jpg", "order": 12}, {"name": "John Lloyd Young", "character": "Frank Valli", "id": 1218154, "credit_id": "52fe4d66c3a368484e1e70e9", "cast_id": 17, "profile_path": "/eyqyYM5tWJJNfhdw5cJqZLzHZ7S.jpg", "order": 13}, {"name": "Erich Bergen", "character": "Bob Gaudio", "id": 1192928, "credit_id": "53bbd4b00e0a261971002b8c", "cast_id": 23, "profile_path": "/A9em5uweBKUZSMzFNovJSbFhusG.jpg", "order": 14}, {"name": "Michael Lomenda", "character": "Nick Massi", "id": 1066732, "credit_id": "544f41430e0a263a0400154b", "cast_id": 24, "profile_path": "/bzRFubaCT28LGlFLtt9tNfpd0tR.jpg", "order": 15}, {"name": "Johnny Cannizzaro", "character": "Nick DeVito", "id": 1378648, "credit_id": "544f42490e0a263a0700151f", "cast_id": 25, "profile_path": "/pKhhCgG6SYJDZa2RHR7IHuP23kf.jpg", "order": 16}, {"name": "Joey Russo", "character": "Joey", "id": 1058023, "credit_id": "544f45bcc3a368023600141c", "cast_id": 26, "profile_path": "/woADiZIPxy3e3kPhzRoGZXjDs8x.jpg", "order": 17}, {"name": "Billy Gardell", "character": "Our Sons Owner", "id": 64344, "credit_id": "544f46ba0e0a263a1000151f", "cast_id": 27, "profile_path": "/6GB2WYCGSJDPbKjjK0zot8nxJe9.jpg", "order": 18}, {"name": "John Griffin", "character": "Billy Dixon", "id": 1227898, "credit_id": "544f47fec3a3680242001634", "cast_id": 28, "profile_path": "/nf1bEQOsn6939oJaoIRv9zUSknk.jpg", "order": 19}, {"name": "Elizabeth Hunter", "character": "Francine Valli jeune", "id": 1378650, "credit_id": "544f4b600e0a263a1800148c", "cast_id": 29, "profile_path": "/8ezB6BVqpMWLqGyykDqewRy2z0h.jpg", "order": 20}, {"name": "Lacey Hannan", "character": "Angela", "id": 1122245, "credit_id": "544f4dafc3a36802420016a6", "cast_id": 30, "profile_path": "/xDlEvsYiRncxgLx3NopoUTgsatJ.jpg", "order": 21}, {"name": "Ren\u00e9e Marino", "character": "Mary Delgado", "id": 1378651, "credit_id": "544f4e39c3a368023c001511", "cast_id": 31, "profile_path": "/dcv8Jznwt5h5XAULZMqa1OqQ3y0.jpg", "order": 22}, {"name": "Erica Piccininni", "character": "Lorraine", "id": 966750, "credit_id": "544f4fc30e0a263a07001646", "cast_id": 32, "profile_path": "/uU16dtymtiYhQIL5tTA4k0wFZZP.jpg", "order": 23}, {"name": "Steve Monroe", "character": "Barry Belson", "id": 131125, "credit_id": "544f50a0c3a3680245001501", "cast_id": 33, "profile_path": "/1DSgyYqbUk7wzHbvmLX6eGJYWz7.jpg", "order": 24}, {"name": "Rob Marnell", "character": "Joe Long", "id": 1378656, "credit_id": "544f513fc3a368023600151c", "cast_id": 34, "profile_path": "/27paNOlZN65LcJuGyYtPuR1WJqB.jpg", "order": 25}, {"name": "Troy Grant", "character": "Ed Sullivan", "id": 1378661, "credit_id": "544f54aac3a3680242001755", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Grant Roberts", "character": "Johnny", "id": 1378662, "credit_id": "544f555dc3a368532b0015f8", "cast_id": 36, "profile_path": "/bADsqOjiv40iK98myH7w0Qz64qZ.jpg", "order": 27}, {"name": "Kara Pacitto", "character": "Bubble-Head #2", "id": 1378663, "credit_id": "544f5698c3a36802390015a7", "cast_id": 37, "profile_path": "/eEXJxeaFm5qTGHkekj0uhpsZgY6.jpg", "order": 28}, {"name": "Michael Patrick McGill", "character": "Officier Mike", "id": 154816, "credit_id": "544f580a0e0a263a180015c4", "cast_id": 38, "profile_path": "/9M7pqxB3NZm7zVrpGqFkFI25nrw.jpg", "order": 29}, {"name": "Nancy La Scala", "character": "une femme passionn\u00e9e d'art", "id": 191435, "credit_id": "544f5988c3a36802390015e8", "cast_id": 39, "profile_path": "/8sTP57E1B1cgRMQ1ObtpxQkajuc.jpg", "order": 30}, {"name": "Clint Ward", "character": "Officier Stanley", "id": 1378664, "credit_id": "544f5ab4c3a3680239001603", "cast_id": 40, "profile_path": "/bEVAke4LjpBs6Zd9EYwYr6nM51p.jpg", "order": 31}, {"name": "Jackie Seiden", "character": "les anges", "id": 1378667, "credit_id": "544f5c770e0a263a0a0015ee", "cast_id": 41, "profile_path": "/xK7kL7qmNCXeAAAi9nU8RPcG6qV.jpg", "order": 32}, {"name": "Matt Nolan", "character": "un ing\u00e9nieur", "id": 159720, "credit_id": "544f5f700e0a2601d8001611", "cast_id": 42, "profile_path": "/9zUwjviDEOv8KCBHWA0x2RzmQTL.jpg", "order": 33}, {"name": "Meagan Holder", "character": "la chanteuse de Jazz", "id": 1378683, "credit_id": "544f61b20e0a263a0a001668", "cast_id": 43, "profile_path": "/2iab9IkN7Ge5Bg4yVCktyfLICGr.jpg", "order": 34}, {"name": "Joe Abraham", "character": "un chanteur Rockabilly", "id": 1378685, "credit_id": "544f62c90e0a263a0a00167b", "cast_id": 44, "profile_path": "/pX18o0T66I2QhxoTI3yT5owWl4M.jpg", "order": 35}, {"name": "Phil Abrams", "character": "les maisons de disques", "id": 167139, "credit_id": "544f64410e0a26134c001661", "cast_id": 45, "profile_path": "/gCbgGno1RsqXouLH9iNsf9cR0Cz.jpg", "order": 36}, {"name": "Joe Howard", "character": "un pr\u00eatre", "id": 82581, "credit_id": "544f6621c3a3680233001691", "cast_id": 46, "profile_path": "/zq7ljhNfZAdmerqRecBGm0FDEca.jpg", "order": 37}, {"name": "Katelyn Pacitto", "character": "Bubble-Head #1", "id": 1214866, "credit_id": "544f6853c3a36802450016f5", "cast_id": 47, "profile_path": "/vXRjdwEU7c39ACnYLlt4vWKQ2uV.jpg", "order": 38}, {"name": "Ben Rauch", "character": "une personne de New Season", "id": 181398, "credit_id": "544f6aa10e0a263a0a001757", "cast_id": 48, "profile_path": "/g7zidc0Shyr3GTtclTgzE5NZbhp.jpg", "order": 39}, {"name": "Bill Watterson", "character": "un musicien", "id": 1141000, "credit_id": "544f6bf1c3a368023c0017d1", "cast_id": 49, "profile_path": "/sB8Or9TlKnV5Fv9WinhZsj4TcDS.jpg", "order": 40}, {"name": "Annika Noelle", "character": "la petite-amie de Nick", "id": 1378718, "credit_id": "544f6c3b0e0a2601d8001746", "cast_id": 50, "profile_path": "/ePdSqvJIQ8x4Allx6Zb85YMVXED.jpg", "order": 41}, {"name": "Derek Easley", "character": "Biker Inmate", "id": 1378731, "credit_id": "544f6d77c3a36802360017d4", "cast_id": 51, "profile_path": "/cKj023lxJrV82TD2kCMKteiLpoH.jpg", "order": 42}, {"name": "Kim Gatewood", "character": "les anges", "id": 108753, "credit_id": "544f6ff0c3a368532b00184e", "cast_id": 52, "profile_path": "/pKDk44AFMJ6C9V6O4iJtJVkTO7X.jpg", "order": 43}, {"name": "Alexandra Ruddy", "character": "Waitress", "id": 1378735, "credit_id": "544f70340e0a263a07001952", "cast_id": 53, "profile_path": "/hXr0qgdA3kmlba45GaFIVfTqpgv.jpg", "order": 44}, {"name": "Keith Loneker", "character": "Knuckles", "id": 54714, "credit_id": "544f7351c3a36802330017cd", "cast_id": 54, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 45}, {"name": "Marco Tazioli", "character": "le petit-ami mauvais gar\u00e7on de Francine", "id": 1378737, "credit_id": "544f743a0e0a263a0a00183c", "cast_id": 55, "profile_path": "/vzdbIxcnrKWrgKfC4s3hpQhgQV6.jpg", "order": 46}, {"name": "David Newton", "character": "le rendez-vous de Mary", "id": 1378738, "credit_id": "544f75d10e0a2639fe001a46", "cast_id": 56, "profile_path": "/yeSxcxT4v57XoroNbfOIKI3CAC6.jpg", "order": 47}, {"name": "Donnie Kehr", "character": "Norm Waxman", "id": 1378739, "credit_id": "544f77840e0a2639fe001a6a", "cast_id": 57, "profile_path": "/uXQiRUw95y9YNxCKpgpYSbKGaHn.jpg", "order": 48}, {"name": "Scott Vance", "character": "un inspecteur", "id": 1235980, "credit_id": "544f787c0e0a263a0a0018a2", "cast_id": 58, "profile_path": "/mOsEfNQ9xBK9K2HMMQ625Ocv925.jpg", "order": 49}, {"name": "Kyli Rae", "character": "les anges", "id": 1378740, "credit_id": "544f7931c3a36802390018dd", "cast_id": 59, "profile_path": null, "order": 50}, {"name": "Travis Nicholson", "character": "le chanteur country", "id": 1378775, "credit_id": "544f8da7c3a368532b001b21", "cast_id": 60, "profile_path": "/c1ZmaMEcgKePlvMvXBBpECRW7Zm.jpg", "order": 51}, {"name": "Allison Wilhelm", "character": "la fille du vestiaire", "id": 1378776, "credit_id": "544f8f3d0e0a2639fe001cd1", "cast_id": 61, "profile_path": "/aPu9RcaG2P1EBGQGdMPHTJGtcUw.jpg", "order": 52}, {"name": "Tye Edwards", "character": "Crewe Bartender", "id": 1296721, "credit_id": "544f903bc3a368023c001ad2", "cast_id": 62, "profile_path": "/giT1XMhgp3VJKeWhzj0sTAWMI6f.jpg", "order": 53}, {"name": "Jon Paul Burkhart", "character": "un journaliste", "id": 1276803, "credit_id": "544f9114c3a3680233001a05", "cast_id": 63, "profile_path": "/2GaDEcNajkY2iZ6AFJMoI5mMcMR.jpg", "order": 54}, {"name": "Lou Volpe", "character": "le p\u00e8re de Frank Valli", "id": 1346430, "credit_id": "544f91e50e0a263a10001c13", "cast_id": 64, "profile_path": "/c4pImzcjvaQV58scdxVmPmvuOi6.jpg", "order": 55}, {"name": "David Crane", "character": "un employ\u00e9 de l'Holiday Inn", "id": 105013, "credit_id": "544f9428c3a3680239001b5e", "cast_id": 65, "profile_path": "/mY6jDkBB8dJIvCbUjWVS63RqqFg.jpg", "order": 56}, {"name": "Lou George", "character": "les maisons de disques", "id": 189785, "credit_id": "544f94a20e0a2601d8001aa3", "cast_id": 66, "profile_path": "/xJbIq2zj7A1xACvmGXGvGGiQqQl.jpg", "order": 57}, {"name": "Michael Butler Murray", "character": "un musicien", "id": 1378789, "credit_id": "544f94f90e0a263a0a001bb2", "cast_id": 67, "profile_path": "/yOWilYOpXUk9zlKJHPJ24OPRPDB.jpg", "order": 58}, {"name": "Michael Lanahan", "character": "les maisons de disques", "id": 1378792, "credit_id": "544f96360e0a263a0a001bec", "cast_id": 68, "profile_path": "/4tlfNzsB4HtV048lErNJrguedCp.jpg", "order": 59}, {"name": "Aria Pullman", "character": "la femme s\u00e9duisante", "id": 180424, "credit_id": "544f9797c3a3680239001bf2", "cast_id": 69, "profile_path": "/ecAh5KrnPig8Wh52UwfH3r4PZuQ.jpg", "order": 60}, {"name": "Jacqueline Mazarella", "character": "une femme en col\u00e8re", "id": 1214843, "credit_id": "544f99580e0a263a18001c39", "cast_id": 70, "profile_path": "/yDbnFEMGmuB45eoc50jqH9HSLNs.jpg", "order": 61}, {"name": "Danielle Souza", "character": "une femme l\u00e9g\u00e8rement v\u00e9tue", "id": 1378806, "credit_id": "544f99e50e0a263a04001df4", "cast_id": 71, "profile_path": "/wMn47OSm8aIc5oi81lKVVhZLuR0.jpg", "order": 62}, {"name": "Miles Aubrey", "character": "Charles Calello", "id": 1378815, "credit_id": "544f9b76c3a368532b001cf5", "cast_id": 72, "profile_path": null, "order": 63}, {"name": "Johnny Dinu", "character": "le batteur de New Four Seasons", "id": 1378816, "credit_id": "544f9c280e0a263a10001d7b", "cast_id": 73, "profile_path": "/qNGXuPrzraRBCUSwVob0ePcfjj2.jpg", "order": 64}, {"name": "Maggie Beal", "character": "Antonia Valli", "id": 1378817, "credit_id": "544f9cd20e0a263a0a001d07", "cast_id": 74, "profile_path": null, "order": 65}, {"name": "Jeff DePaoli", "character": "le r\u00e9gisseur", "id": 1378818, "credit_id": "544f9d760e0a263a10001d97", "cast_id": 75, "profile_path": "/izcpszArGfBN89S4ewXkKNF99tL.jpg", "order": 66}, {"name": "Vincent Selhorst-Jones", "character": "Hank Majewski", "id": 1378820, "credit_id": "544f9e580e0a2639fe001ebd", "cast_id": 76, "profile_path": "/vkgiq8RpmXX4YyRH8zW3A3Fetak.jpg", "order": 67}, {"name": "Angel Murphy", "character": "Jazz-Cat", "id": 1378823, "credit_id": "544fa03d0e0a2601d8001c23", "cast_id": 77, "profile_path": "/6PmdDuOYGcFIcWRbDTwR40yc2rG.jpg", "order": 68}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4d66c3a368484e1e70f3", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.1, "runtime": 134}, "45612": {"poster_path": "/cpl7R5d3qwWvykRRSxdhQ0htstU.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147332697, "overview": "Decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, discovering he's involved in a mission to find the bomber of a Chicago commuter train. He learns he's part of a top-secret experimental program that enables him to experience the final 8 minutes of another person's life. Colter re-lives the train incident over and over again, gathering more clues each time. But can he discover who is responsible for the attack before the next one happens?", "video": false, "id": 45612, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Source Code", "tagline": "Make Every Second Count", "vote_count": 835, "homepage": "http://www.enterthesourcecode.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0945513", "adult": false, "backdrop_path": "/x8cIgtcVi9DVrlPuvlsvc43dik9.jpg", "production_companies": [{"name": "The Mark Gordon Company", "id": 1557}, {"name": "Vendome Pictures", "id": 7460}], "release_date": "2011-04-01", "popularity": 1.52659711576497, "original_title": "Source Code", "budget": 32000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Colter Stevens", "id": 131, "credit_id": "52fe46cbc3a36847f811298d", "cast_id": 1, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Christina Warren", "id": 11705, "credit_id": "52fe46cbc3a36847f8112991", "cast_id": 2, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Colleen Goodwin", "id": 21657, "credit_id": "52fe46cbc3a36847f8112995", "cast_id": 3, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Russell Peters", "character": "Max Denoff", "id": 82417, "credit_id": "52fe46cbc3a36847f8112999", "cast_id": 4, "profile_path": "/hL7XitH9iuUonknMr8mpSDC51FG.jpg", "order": 3}, {"name": "Joe Cobden", "character": "Lab Technician", "id": 51389, "credit_id": "52fe46cbc3a36847f811299d", "cast_id": 5, "profile_path": "/kTf7OtOY1qBPmEbc4Kky9uMN58K.jpg", "order": 4}, {"name": "Michael Arden", "character": "Derek Frost", "id": 83874, "credit_id": "52fe46cbc3a36847f81129a1", "cast_id": 6, "profile_path": "/ldZi8TFKz5tA7TRtwMs4gjxbdaS.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "Dr. Rutledge", "id": 2954, "credit_id": "52fe46cbc3a36847f81129b7", "cast_id": 12, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Cas Anvar", "character": "Hazmi", "id": 59214, "credit_id": "52fe46cbc3a36847f81129bb", "cast_id": 14, "profile_path": "/m8JWOnvyjpApLc8WUYwJQGrQDG3.jpg", "order": 7}, {"name": "Brent Skagford", "character": "George Troxel", "id": 522169, "credit_id": "52fe46cbc3a36847f81129bf", "cast_id": 15, "profile_path": "/f7DJF5ic11kVy6JsK3p4PoblFpA.jpg", "order": 8}, {"name": "Craig Thomas (II)", "character": "Gold Watch Executive", "id": 572609, "credit_id": "52fe46cbc3a36847f81129c3", "cast_id": 16, "profile_path": "/mXVTRucD1GX6EV7n1HSaiSx8BXp.jpg", "order": 9}, {"name": "Gordon Masten", "character": "Conductor", "id": 179421, "credit_id": "52fe46cbc3a36847f81129c7", "cast_id": 17, "profile_path": "/oeVhRruDyodXDJPsJSpmpNLbTqh.jpg", "order": 10}], "directors": [{"name": "Duncan Jones", "department": "Directing", "job": "Director", "credit_id": "52fe46cbc3a36847f81129a7", "profile_path": "/ZXaHANdHg58LEQHP6mRcjy72W6.jpg", "id": 81850}], "vote_average": 6.8, "runtime": 93}, "127533": {"poster_path": "/rmBUaljPj6SJVArR68fHl41oJU4.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 61700000, "overview": "Former legendary assassin Kenshin Himura has now become a wandering samurai. Offering aid & protecting those in need as atonement for his past deeds. During this time Kenshin Himura comes across and aides Kaoru Kamiya (Emi Takei). Her father opened the Kamiya Kasshin-ryu, a kendo school located in Tokyo and Kaoru is now an instructor there. Kaoru then invites Kenshin to stay at her dojo. Their relationship develops further, but Kenshin is still haunted by his violent past ...", "video": false, "id": 127533, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10769, "name": "Foreign"}], "title": "Rurouni Kenshin", "tagline": "The Journey Begins", "vote_count": 60, "homepage": "http://wwws.warnerbros.co.jp/rurouni-kenshin/index.html", "belongs_to_collection": {"backdrop_path": "/jqmQLcdn3aEyc30nesZn7qixfoP.jpg", "poster_path": "/yBYLuwZ1zbRBEKaZmwiThsEqUbC.jpg", "id": 247028, "name": "Rurouni Kenshin Live-Action Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt1979319", "adult": false, "backdrop_path": "/xas4wD2wHskniTegpQ4QnyalzS1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Studio Swan", "id": 10765}, {"name": "RoC Works Co.", "id": 10766}], "release_date": "2012-08-25", "popularity": 0.882851634004261, "original_title": "\u308b\u308d\u3046\u306b\u5263\u5fc3", "budget": 0, "cast": [{"name": "Takeru Satoh", "character": "Kenshin Himura", "id": 230659, "credit_id": "52fe4afdc3a368484e1718a5", "cast_id": 5, "profile_path": "/8GJ849GQ9eHCLfsRj026JUVaqJC.jpg", "order": 0}, {"name": "Emi Takei", "character": "Kaoru Kamiya", "id": 1084910, "credit_id": "52fe4afdc3a368484e1718a9", "cast_id": 6, "profile_path": "/9kHDikAYFt234AYlSZzd4ebU3yZ.jpg", "order": 1}, {"name": "K\u00f4ji Kikkawa", "character": "Udo Jine", "id": 148288, "credit_id": "52fe4afdc3a368484e1718ad", "cast_id": 7, "profile_path": "/2BUEmCj5YeJaGQZniH4LgIT8ycu.jpg", "order": 2}, {"name": "Yu Aoi", "character": "Megumi Takani", "id": 84028, "credit_id": "52fe4afdc3a368484e1718b1", "cast_id": 8, "profile_path": "/sXgvUK8uWJ4xCxA9Oklapm08DPJ.jpg", "order": 3}, {"name": "Munetaka Aoki", "character": "Sanosuke Sagara", "id": 111640, "credit_id": "52fe4afdc3a368484e1718b5", "cast_id": 9, "profile_path": "/14IAuejjPtOAyFHhkoPrBvSokQk.jpg", "order": 4}, {"name": "G\u00f4 Ayano", "character": "Gein", "id": 1084911, "credit_id": "52fe4afdc3a368484e1718b9", "cast_id": 10, "profile_path": "/oFxju34eHiMbZ0PWwVbzuntgVac.jpg", "order": 5}, {"name": "Genki Sudo", "character": "Banjin Inui", "id": 86145, "credit_id": "52fe4afdc3a368484e1718bd", "cast_id": 11, "profile_path": "/s0mGZYbEZIiAaGBte2fpQkabdKY.jpg", "order": 6}, {"name": "Taketo Tanaka", "character": "Yahiko Myojin", "id": 1084912, "credit_id": "52fe4afdc3a368484e1718c1", "cast_id": 12, "profile_path": "/8dje8nhBZPSEVzk8awZn5y5NYh5.jpg", "order": 7}, {"name": "Eiji Okuda", "character": "Aritomo Yamagata", "id": 72389, "credit_id": "52fe4afdc3a368484e1718c5", "cast_id": 13, "profile_path": "/phgV64iDNJ4x673CYLHK9aaNFii.jpg", "order": 8}, {"name": "Y\u014dsuke Eguchi", "character": "Hajime Saito", "id": 55784, "credit_id": "52fe4afdc3a368484e1718c9", "cast_id": 14, "profile_path": "/wtNjvKT5GqTYKXnqYa8C8vL7BEx.jpg", "order": 9}, {"name": "Teruyuki Kagawa", "character": "Kanryu Takeda", "id": 46691, "credit_id": "52fe4afdc3a368484e1718cd", "cast_id": 15, "profile_path": "/pCOQFnFHPDCtSuYmMT3Q24Yf0SE.jpg", "order": 10}], "directors": [{"name": "Keishi Ohtomo", "department": "Directing", "job": "Director", "credit_id": "52fe4afdc3a368484e17188f", "profile_path": null, "id": 1084905}], "vote_average": 7.1, "runtime": 134}, "242224": {"poster_path": "/b3YzM03YxkOaJw2PglfKlcwr8bM.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}], "revenue": 4222200, "overview": "A single mother, plagued by the violent death of her husband, battles with her son's fear of a monster lurking in the house, but soon discovers a sinister presence all around her.", "video": false, "id": 242224, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Babadook", "tagline": "If it's in a word, or it's in a look, you can't get rid of the Babadook.", "vote_count": 238, "homepage": "http://thebabadook.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2321549", "adult": false, "backdrop_path": "/pJ10mpKs2mM2AXTUOmM4yl5PJi8.jpg", "production_companies": [{"name": "Screen Australia", "id": 7584}, {"name": "Smoking Gun Productions", "id": 21181}, {"name": "Causeway Films", "id": 32301}, {"name": "South Australian Film Corporation", "id": 2806}], "release_date": "2014-05-22", "popularity": 2.17055990553622, "original_title": "The Babadook", "budget": 2000000, "cast": [{"name": "Essie Davis", "character": "Amelia", "id": 33449, "credit_id": "52fe4ec7c3a36847f82a757d", "cast_id": 1, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 0}, {"name": "Noah Wiseman", "character": "Samuel", "id": 1277195, "credit_id": "52fe4ec7c3a36847f82a7581", "cast_id": 2, "profile_path": "/e1E6mf6HFPOmbmHbRHWmMCVDJju.jpg", "order": 1}, {"name": "Daniel Henshall", "character": "Robbie", "id": 213202, "credit_id": "52fe4ec7c3a36847f82a7585", "cast_id": 3, "profile_path": "/4LYeThK5O9EUy1OllvdsD5bTRbb.jpg", "order": 2}, {"name": "Tim Purcell", "character": "The Babadook", "id": 1399367, "credit_id": "548e3d56c3a36820b50061b5", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Hayley McElhinney", "character": "Claire", "id": 220442, "credit_id": "52fe4ec7c3a36847f82a7589", "cast_id": 4, "profile_path": "/zYbqQKYHcvdM1kdvvR5vyiPuzHS.jpg", "order": 4}, {"name": "Cathy Adamek", "character": "Prue", "id": 1277196, "credit_id": "52fe4ec7c3a36847f82a758d", "cast_id": 5, "profile_path": "/AnfcNBaQqjA6TFsojRlGNiAvIGS.jpg", "order": 5}, {"name": "Craig Behenna", "character": "Warren", "id": 79715, "credit_id": "52fe4ec7c3a36847f82a7591", "cast_id": 6, "profile_path": "/2hjK4gvNmoQWfWgO3xJJ49DH6XK.jpg", "order": 6}, {"name": "Benjamin Winspear", "character": "Oskar", "id": 1399368, "credit_id": "548e3d7cc3a3681d4b0037d9", "cast_id": 17, "profile_path": "/7ORDOqiu9G2p92S0fsZ28hVblBx.jpg", "order": 7}, {"name": "Chloe Hurn", "character": "Ruby", "id": 1399369, "credit_id": "548e3da892514122f9005afa", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Tiffany Lyndall-Knight", "character": "Supermarket Mum", "id": 125581, "credit_id": "54b63e82c3a36877940015e3", "cast_id": 19, "profile_path": "/15M9lq3ralCL1xC0bGmLkbaje7W.jpg", "order": 9}, {"name": "Peta Shannon", "character": "Eastern Suburbs Mum 2", "id": 1413438, "credit_id": "54b64107c3a3687790001400", "cast_id": 20, "profile_path": "/azgqXxyxh2LrjWvfPcONrp18abl.jpg", "order": 10}, {"name": "Michael Gilmour", "character": "Young Policeman 1", "id": 1145374, "credit_id": "54b73dde9251411d6a0013f5", "cast_id": 21, "profile_path": "/lmB9p1TO8zLvhKNbiFJbbUf8UOp.jpg", "order": 11}, {"name": "Michelle Nightingale", "character": "Eastern Suburbs Mum 3", "id": 1413762, "credit_id": "54b746c99251411d640012dd", "cast_id": 22, "profile_path": "/2lfh3oZqaBBb0r7VUdr9Btcwqbn.jpg", "order": 12}, {"name": "Adam Morgan", "character": "Police Sergeant", "id": 96464, "credit_id": "54b74b1bc3a3686c6100134b", "cast_id": 23, "profile_path": "/vUnUO39f2wnDAnXL8T9QxZdWWvX.jpg", "order": 13}, {"name": "Barbara West", "character": "Mrs. Roach", "id": 1413763, "credit_id": "54b74cfec3a3686c6b001885", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Hachi", "character": "Bugsy", "id": 1413764, "credit_id": "54b750ef9251411d700013f0", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Carmel Johnson", "character": "Teacher", "id": 79718, "credit_id": "54b754449251411d7900149b", "cast_id": 26, "profile_path": "/nOi0D7WEP6o87uS063DxuwzbtZj.jpg", "order": 16}, {"name": "Terence Crawford", "character": "Doctor", "id": 1123198, "credit_id": "54b7696ac3a3686c5d0016fc", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Jacquy Phillips", "character": "Beverly", "id": 1321953, "credit_id": "54b76bd49251411d7000167a", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Pippa Wanganeen", "character": "Eastern Suburbs Mum 1", "id": 1413768, "credit_id": "54b76c0a9251411d7000167f", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "John Maurice", "character": "Car Guy", "id": 1413770, "credit_id": "54b76d8ac3a3686c6b001bfe", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Craig McArdle", "character": "Young Policeman 2", "id": 1413771, "credit_id": "54b76e299251411d660016d8", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Sophie Riggs", "character": "Checkout Chick", "id": 1413772, "credit_id": "54b76ea7c3a3686c610016be", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Stephen Sheehan", "character": "Magician", "id": 1413773, "credit_id": "54b76f7e9251411d6d00182e", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Alicia Zorkovic", "character": "Fast Food Mum", "id": 1413774, "credit_id": "54b76fc7c3a3686c610016e3", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Bridget Walters", "character": "Norma", "id": 543275, "credit_id": "54b770efc3a3686c5f0016e2", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Chris Roberts", "character": "Kissing Man", "id": 1413776, "credit_id": "54b77173c3a36820b7000f0c", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Lucy Hong", "character": "Supermarket Little Girl", "id": 1413778, "credit_id": "54b771c09251411d77001741", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Tony Mack", "character": "Principal", "id": 543279, "credit_id": "54b772b09251411d6d001896", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Annie Batten", "character": "Old Woman in Corridor", "id": 1413779, "credit_id": "54b772dec3a3686c71001520", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Charlie Crabtree", "character": "Fast Food Kid 3", "id": 1413780, "credit_id": "54b77313c3a3686c6b001cb8", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Sophie Allan", "character": "Fast Food Kid 5", "id": 1413781, "credit_id": "54b773489251411d7700176a", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Ethan Grabis", "character": "Fast Food Kid 4", "id": 1413782, "credit_id": "54b77377c3a3686c5f00171e", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "India Zorkovic", "character": "Fast Food Kid 1", "id": 1413783, "credit_id": "54b773afc3a3686c5d001872", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Lotte Crawford", "character": "Kissing Woman", "id": 1413784, "credit_id": "54b773e29251411d6d0018b7", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Isla Zorkovic", "character": "Fast Food Kid 2", "id": 1413785, "credit_id": "54b77417c3a36820b7000f6d", "cast_id": 45, "profile_path": null, "order": 35}], "directors": [{"name": "Jennifer Kent", "department": "Directing", "job": "Director", "credit_id": "52fe4ec7c3a36847f82a7597", "profile_path": "/iJJsg4uhQYhibvf1v7ME8EuJoeV.jpg", "id": 164554}], "vote_average": 6.7, "runtime": 93}, "37430": {"poster_path": "/tCf5Gt51xONppfvcmwW0FmizPc6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48795021, "overview": "A quest that begins as a personal vendetta for the fierce Cimmerian warrior soon turns into an epic battle against hulking rivals, horrific monsters, and impossible odds, as Conan (Jason Momoa) realizes he is the only hope of saving the great nations of Hyboria from an encroaching reign of supernatural evil.", "video": false, "id": 37430, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Conan the Barbarian", "tagline": "Enter an age undreamed of", "vote_count": 224, "homepage": "http://www.conanthebarbarianin3d.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0816462", "adult": false, "backdrop_path": "/381rd4LVvy6AkSB9tqHNu81ftyR.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Nu Image Films", "id": 925}, {"name": "Paradox Entertainment", "id": 6819}, {"name": "Nimar Studios", "id": 7636}, {"name": "Cinema Vehicle Services", "id": 25673}], "release_date": "2011-08-19", "popularity": 1.12653764633464, "original_title": "Conan the Barbarian", "budget": 90000000, "cast": [{"name": "Jason Momoa", "character": "Conan", "id": 117642, "credit_id": "52fe46489251416c9104f585", "cast_id": 4, "profile_path": "/PSK6GmsVwdhqz9cd1lwzC6a7EA.jpg", "order": 0}, {"name": "Rose McGowan", "character": "Marique", "id": 16850, "credit_id": "52fe46489251416c9104f589", "cast_id": 5, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 1}, {"name": "Rachel Nichols", "character": "Tamara", "id": 50347, "credit_id": "52fe46489251416c9104f58d", "cast_id": 6, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Corin", "id": 2372, "credit_id": "52fe46489251416c9104f591", "cast_id": 7, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Stephen Lang", "character": "Khalar Zym", "id": 32747, "credit_id": "52fe46489251416c9104f595", "cast_id": 8, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 4}, {"name": "Sa\u00efd Taghmaoui", "character": "Ela-Shan", "id": 5419, "credit_id": "52fe46489251416c9104f599", "cast_id": 9, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 5}, {"name": "Leo Howard", "character": "Young Conan", "id": 557921, "credit_id": "52fe46489251416c9104f59d", "cast_id": 10, "profile_path": "/3lL32Wjcg852LIapVomWGzb4wyB.jpg", "order": 6}, {"name": "Steve O'Donnell", "character": "Lucius", "id": 79885, "credit_id": "52fe46489251416c9104f5a1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Raad Rawi", "character": "Fassir - High Priest", "id": 73710, "credit_id": "52fe46489251416c9104f5a5", "cast_id": 12, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 8}, {"name": "Nonso Anozie", "character": "Artus", "id": 43547, "credit_id": "52fe46489251416c9104f5a9", "cast_id": 13, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 9}, {"name": "Bob Sapp", "character": "Ukafa", "id": 60716, "credit_id": "52fe46489251416c9104f5ad", "cast_id": 14, "profile_path": "/y11Km6dAfrBB4asSIvBewR8UocA.jpg", "order": 10}, {"name": "Milton Welsh", "character": "Remo", "id": 902, "credit_id": "52fe46489251416c9104f5b1", "cast_id": 15, "profile_path": "/n3BYt4bbPey6UwMGRyhlRCaaFkB.jpg", "order": 11}, {"name": "Bashar Rahal", "character": "Quarter Master", "id": 105688, "credit_id": "52fe46489251416c9104f5bb", "cast_id": 17, "profile_path": "/kTDG0QqFEwjeidB4OaSL7E0fDfC.jpg", "order": 12}, {"name": "Diana Lyubenova", "character": "Cheren", "id": 1189509, "credit_id": "52fe46489251416c9104f5dd", "cast_id": 28, "profile_path": "/zWakamFOSBOMJKS0kZRbm1C57ZW.jpg", "order": 13}], "directors": [{"name": "Marcus Nispel", "department": "Directing", "job": "Director", "credit_id": "52fe46489251416c9104f581", "profile_path": "/uil3LAeKq6vgRucr6CR2T4Iz0oC.jpg", "id": 29922}], "vote_average": 5.3, "runtime": 113}, "86597": {"poster_path": "/1fc87E3ppCq6xBnZJ63Sa9FKRUd.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "When her child goes missing, a mother looks to unravel the legend of the Tall Man, an entity who allegedly abducts children.", "video": false, "id": 86597, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Tall Man", "tagline": "Fear takes a new shape", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1658837", "adult": false, "backdrop_path": "/6a5keKsnRickHy6TImQ9b3RsTQQ.jpg", "production_companies": [{"name": "Forecast Pictures", "id": 12686}, {"name": "Iron Ocean Films", "id": 12687}, {"name": "Radar Films", "id": 12689}, {"name": "SND", "id": 2902}], "release_date": "2012-08-01", "popularity": 0.655877121506777, "original_title": "The Tall Man", "budget": 18200000, "cast": [{"name": "Jessica Biel", "character": "Julia Denning", "id": 10860, "credit_id": "52fe49909251416c910b16bd", "cast_id": 3, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 0}, {"name": "Jodelle Ferland", "character": "Jenny", "id": 8338, "credit_id": "52fe49909251416c910b16c1", "cast_id": 4, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 1}, {"name": "Stephen McHattie", "character": "Lt Dodd", "id": 230, "credit_id": "52fe49909251416c910b16c5", "cast_id": 5, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 2}, {"name": "Jakob Davies", "character": "David", "id": 139618, "credit_id": "52fe49909251416c910b16c9", "cast_id": 6, "profile_path": "/9401kh3am1lZijYUbPUnnYBrw3Z.jpg", "order": 3}, {"name": "William B. Davis", "character": "Sheriff Chestnut", "id": 12643, "credit_id": "52fe49909251416c910b16cd", "cast_id": 7, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 4}, {"name": "Samantha Ferris", "character": "Tracy", "id": 25383, "credit_id": "52fe49909251416c910b16d1", "cast_id": 8, "profile_path": "/lr0y615PLYdQrN8wvsYJGy5zeCf.jpg", "order": 5}, {"name": "Colleen Wheeler", "character": "Mrs. Johnson", "id": 43905, "credit_id": "52fe49909251416c910b16ed", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Eve Harlow", "character": "Christine", "id": 209723, "credit_id": "52fe49909251416c910b16f1", "cast_id": 14, "profile_path": "/h3ZqWXWD6EVEzHIm6e9QsNoRL6R.jpg", "order": 7}, {"name": "Janet Wright", "character": "Trish", "id": 106460, "credit_id": "52fe49909251416c910b16f5", "cast_id": 15, "profile_path": "/8MC9PGDb0lqKbpwwUfTzNxE8k9P.jpg", "order": 8}], "directors": [{"name": "Pascal Laugier", "department": "Directing", "job": "Director", "credit_id": "52fe49909251416c910b16b3", "profile_path": null, "id": 59611}], "vote_average": 5.8, "runtime": 106}, "127560": {"poster_path": "/3iU9KLIhvc3pdl1SkeD0gv4BO0f.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 22309223, "overview": "A victim from World War II's \"Death Railway\" sets out to find those responsible for his torture. A true story.", "video": false, "id": 127560, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Railway Man", "tagline": "Revenge is never a straight line", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2058107", "adult": false, "backdrop_path": "/78rR1LQpLuQmbEDl9pwKPtuJQER.jpg", "production_companies": [{"name": "Archer Street Productions", "id": 1471}, {"name": "Lionsgate", "id": 1632}, {"name": "Pictures in Paradise", "id": 3207}, {"name": "Latitude Media", "id": 15577}, {"name": "Thai Occidental Productions", "id": 15578}, {"name": "Silver Reel", "id": 12075}], "release_date": "2013-09-06", "popularity": 1.08546147228503, "original_title": "The Railway Man", "budget": 18000000, "cast": [{"name": "Nicole Kidman", "character": "Patricia Wallace", "id": 2227, "credit_id": "52fe4afec3a368484e171d13", "cast_id": 1, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Stellan Skarsg\u00e5rd", "character": "Finlay", "id": 1640, "credit_id": "52fe4afec3a368484e171d17", "cast_id": 2, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 1}, {"name": "Colin Firth", "character": "Eric Lomax", "id": 5472, "credit_id": "52fe4afec3a368484e171d1b", "cast_id": 3, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 2}, {"name": "Jeremy Irvine", "character": "Young Eric Lomax", "id": 225692, "credit_id": "52fe4afec3a368484e171d1f", "cast_id": 4, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 3}, {"name": "Hiroyuki Sanada", "character": "Nagase", "id": 9195, "credit_id": "52fe4afec3a368484e171d77", "cast_id": 20, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 4}, {"name": "Sam Reid", "character": "Young Finlay", "id": 589650, "credit_id": "52fe4afec3a368484e171d7b", "cast_id": 21, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 5}, {"name": "Marta Dusseldorp", "character": "Memsahib", "id": 152523, "credit_id": "52fe4afec3a368484e171d7f", "cast_id": 22, "profile_path": "/2TKuvFXo5JhJOAJYuKNDrigX1AF.jpg", "order": 6}, {"name": "Tom Hobbs", "character": "Thorlby", "id": 1205488, "credit_id": "52fe4afec3a368484e171d83", "cast_id": 23, "profile_path": "/zg9zAVA0kfT1n6QBiOSl6vQdBHq.jpg", "order": 7}, {"name": "Masa Yamaguchi", "character": "Kempai Officer", "id": 83283, "credit_id": "52fe4afec3a368484e171d87", "cast_id": 24, "profile_path": "/5bQXyNfzT12cxwnGV9xVia5hYOu.jpg", "order": 8}, {"name": "Byron J. Brochmann", "character": "British Trooper POW", "id": 1086523, "credit_id": "52fe4afec3a368484e171d8b", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Shinji Ikefuji", "character": "Thug Sergeant", "id": 1205489, "credit_id": "52fe4afec3a368484e171d8f", "cast_id": 26, "profile_path": "/6m1scLGa91uDDYBftdEcEOuXrAm.jpg", "order": 10}, {"name": "Charlie Ruedpokanon", "character": "Japanese Guard", "id": 1163445, "credit_id": "52fe4afec3a368484e171d97", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Akos Armont", "character": "Jackson", "id": 1205492, "credit_id": "52fe4afec3a368484e171d9f", "cast_id": 30, "profile_path": "/t0nRw07H8aXtzz7az5yjDSZwVVg.jpg", "order": 14}, {"name": "Michael MacKenzie", "character": "Sutton", "id": 201391, "credit_id": "5454e357c3a36814800043b2", "cast_id": 33, "profile_path": "/zCm1CjCW6dV4X7M1sxAB9xP0eqA.jpg", "order": 15}, {"name": "Jeffrey Daunton", "character": "Burton", "id": 1380467, "credit_id": "5454e6bf0e0a2635de001e13", "cast_id": 34, "profile_path": "/itGQUjG4e7lzHy0RMafXJgRhlSs.jpg", "order": 16}, {"name": "Tanroh Ishida", "character": "Young Takeshi Nagase", "id": 1380499, "credit_id": "5454fb170e0a2648d20046e4", "cast_id": 35, "profile_path": "/mg9mM1mEKve5CgDCp2seGYMk9Mi.jpg", "order": 17}, {"name": "Tom Stokes", "character": "Withins", "id": 1380509, "credit_id": "5454fede0e0a2635de002132", "cast_id": 36, "profile_path": "/aoEOLHNXnTjWFOEqVIuHnwHuIRM.jpg", "order": 18}, {"name": "Bryan Probets", "character": "Major York", "id": 1014587, "credit_id": "545504dc0e0a2648c5004899", "cast_id": 37, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 19}, {"name": "Kitamoto Takato", "character": "Japanese Officer", "id": 1380523, "credit_id": "54550df80e0a2648d200498b", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Keith Fleming", "character": "Removal Man", "id": 1380553, "credit_id": "545530ccc3a3681480004daa", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Ben Aldridge", "character": "Baliff", "id": 969316, "credit_id": "545532bcc3a3680b760003df", "cast_id": 40, "profile_path": "/w4gRYQ8ZxcmuX9ZedIMelFLiaIe.jpg", "order": 22}, {"name": "Yutaka Izumihara", "character": "Japanese NCO", "id": 75748, "credit_id": "545535500e0a2648c2004da4", "cast_id": 41, "profile_path": "/rGPYp0jWNplBEv1vWDbmpysaGte.jpg", "order": 23}, {"name": "Louis Toshio Okada", "character": "Hank the Yank", "id": 1380560, "credit_id": "54553650c3a3680b7600045c", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Micheal Doonan", "character": "Doctor Rogers", "id": 1380561, "credit_id": "54553716c3a368147c004baf", "cast_id": 43, "profile_path": "/c8Dw46fWdmpzRLJnXcrGyNuXE5M.jpg", "order": 25}, {"name": "Shoota Tanahshi", "character": "Japanese Mechanic", "id": 1380562, "credit_id": "545538af0e0a2648c5004f4d", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Peter Tuinstra", "character": "Pump Operator", "id": 113650, "credit_id": "545539e2c3a3682be900252e", "cast_id": 45, "profile_path": "/uNAoTZT2KtTMjc1WWL23POobPzU.jpg", "order": 27}, {"name": "Shogo Tanikawa", "character": "Japanese Engineer", "id": 1380563, "credit_id": "54553a6ec3a368148d004dd2", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Ben Warren", "character": "Cook", "id": 1381317, "credit_id": "5457a22e0e0a2648c2009ba7", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Yasuhiko Miyauchi", "character": "Japanese Sergeant", "id": 1381318, "credit_id": "5457a2d70e0a26297a002064", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Keiichi Enomoto", "character": "Sakamoto", "id": 1381319, "credit_id": "5457a435c3a368209f001bb0", "cast_id": 49, "profile_path": "/swWMjjTX4t8gyxRFh7HJvx6S4LI.jpg", "order": 31}, {"name": "Ewen Leslie", "character": "Captain Thompson", "id": 59119, "credit_id": "5457a8950e0a2648c2009c3c", "cast_id": 50, "profile_path": "/7HUB1hseEYlxkQ8hNRbc8sWqn3M.jpg", "order": 32}, {"name": "Jack McTaggart", "character": "Australian Soldier", "id": 1381322, "credit_id": "5457ab19c3a368147c009971", "cast_id": 51, "profile_path": null, "order": 33}, {"name": "Sarah McVicar", "character": "Nurse", "id": 1381328, "credit_id": "5457ac19c3a368690200344e", "cast_id": 52, "profile_path": null, "order": 34}, {"name": "Therese Bradley", "character": "Mother", "id": 3069, "credit_id": "5457b022c3a3686075002ba0", "cast_id": 53, "profile_path": "/9TXb597GgChiVSvbKTm4lfSFx8B.jpg", "order": 35}], "directors": [{"name": "Jonathan Teplitzky", "department": "Directing", "job": "Director", "credit_id": "52fe4afec3a368484e171d25", "profile_path": null, "id": 97942}], "vote_average": 6.7, "runtime": 116}, "4688": {"poster_path": "/iPh20R6bO4GdBpO0E7t4nEdHhp7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Musical based on The Beatles songbook and set in the 60s England, America, and Vietnam. The love story of Lucy and Jude is intertwined with the anti-war movement and social protests of the 60s.", "video": false, "id": 4688, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Across the Universe", "tagline": "All you need is love.", "vote_count": 114, "homepage": "http://www.acrosstheuniverse.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0445922", "adult": false, "backdrop_path": "/wWHeMjL0ZnOkrhnclcneIVSZnlM.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Team Todd", "id": 598}], "release_date": "2007-09-14", "popularity": 0.54882007666092, "original_title": "Across the Universe", "budget": 0, "cast": [{"name": "Evan Rachel Wood", "character": "Lucy Carrigan", "id": 38940, "credit_id": "52fe43d3c3a36847f807293d", "cast_id": 11, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Jude", "id": 38941, "credit_id": "52fe43d3c3a36847f8072941", "cast_id": 12, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Joe Anderson", "character": "Max Carrigan", "id": 29234, "credit_id": "52fe43d3c3a36847f8072945", "cast_id": 13, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 2}, {"name": "Dana Fuchs", "character": "Sadie", "id": 38942, "credit_id": "52fe43d3c3a36847f8072949", "cast_id": 14, "profile_path": "/lTX59mdBf7rknyWbaNtKSZaEY0R.jpg", "order": 3}, {"name": "Martin Luther", "character": "Jo-Jo", "id": 38943, "credit_id": "52fe43d3c3a36847f807294d", "cast_id": 15, "profile_path": "/x4iQXqjGtC9910wOnhAQ4mviE8N.jpg", "order": 4}, {"name": "T.V. Carpio", "character": "Prudence", "id": 38944, "credit_id": "52fe43d3c3a36847f8072951", "cast_id": 16, "profile_path": "/a62I1Ke8gvNxSfajHhCe2PyVlvu.jpg", "order": 5}, {"name": "Spencer Liff", "character": "Daniel", "id": 38945, "credit_id": "52fe43d3c3a36847f8072955", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Lisa Hogg", "character": "Jude's Liverpool Girlfriend", "id": 38946, "credit_id": "52fe43d3c3a36847f8072959", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Nicholas Lumley", "character": "Cyril", "id": 38947, "credit_id": "52fe43d3c3a36847f807295d", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Michael Ryan", "character": "Phil", "id": 38948, "credit_id": "52fe43d3c3a36847f8072961", "cast_id": 20, "profile_path": "/prDI4lSyuEJlFWYnEIymAdFtRT8.jpg", "order": 9}, {"name": "Angela Mounsey", "character": "Martha Feeny (Jude's Mother)", "id": 38949, "credit_id": "52fe43d3c3a36847f8072965", "cast_id": 21, "profile_path": "/8czW4GipYxxzGjKAM87TMpaYjZ7.jpg", "order": 10}, {"name": "Erin Elliott", "character": "Cheer Coach", "id": 1229623, "credit_id": "52fe43d3c3a36847f8072969", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Robert Clohessy", "character": "Wesley \"Wes\" Huber (Jude's Father)", "id": 2256, "credit_id": "52fe43d3c3a36847f807296d", "cast_id": 24, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 12}, {"name": "Christopher Tierney", "character": "Dorm Buddy / Dancer", "id": 1277506, "credit_id": "52fe43d3c3a36847f8072971", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Curtis Holbrook", "character": "Dorm Buddy", "id": 1232505, "credit_id": "52fe43d3c3a36847f8072975", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Julie Taymor", "department": "Directing", "job": "Director", "credit_id": "52fe43d3c3a36847f8072903", "profile_path": "/6PHmqn1Y4Y0jzSCCIVO0oYaR71Q.jpg", "id": 16391}], "vote_average": 6.6, "runtime": 133}, "45649": {"poster_path": "/6zaq4lSe4SLUxeSMkjk29CBmqrD.jpg", "production_countries": [{"iso_3166_1": "AO", "name": "Angola"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 98017, "overview": "In the California desert, the adventures of a telepathic killer-tire, mysteriously attracted by a very pretty girl, as witnessed by incredulous onlookers.", "video": false, "id": 45649, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Rubber", "tagline": "Are you TIRED of the expected?", "vote_count": 60, "homepage": "http://www.rubberfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1612774", "adult": false, "backdrop_path": "/rFsiQwX0xl2VjQvjlMVMEAteXr8.jpg", "production_companies": [{"name": "Realitism", "id": 6929}, {"name": "Elle Driver", "id": 6930}, {"name": "Arte France Cinema", "id": 6931}, {"name": "1.85 Films", "id": 12856}, {"name": "Backup Films", "id": 5381}, {"name": "Sindika Dokolo", "id": 23002}, {"name": "Canal+", "id": 5358}], "release_date": "2010-05-15", "popularity": 0.377491148034375, "original_title": "Rubber", "budget": 500000, "cast": [{"name": "Thomas F. Duffy", "character": "Xavier", "id": 46919, "credit_id": "52fe46ccc3a36847f8112def", "cast_id": 7, "profile_path": "/jLANWUvY91SUNcBfB4z7PQUieE7.jpg", "order": 0}, {"name": "David Bowe", "character": "M. Hughes", "id": 11659, "credit_id": "52fe46ccc3a36847f8112df3", "cast_id": 8, "profile_path": "/7LQANqwm1g9X9YmMwDHqdqJ9uK9.jpg", "order": 1}, {"name": "Stephen Spinella", "character": "Chad", "id": 57093, "credit_id": "52fe46ccc3a36847f8112df7", "cast_id": 9, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 2}, {"name": "Roxane Mesquida", "character": "Sheila", "id": 7706, "credit_id": "52fe46ccc3a36847f8112dfb", "cast_id": 10, "profile_path": "/A7cXGXQg4waLLtJblAUTDuAVHW9.jpg", "order": 3}, {"name": "Jack Plotnick", "character": "Accountant", "id": 29795, "credit_id": "52fe46ccc3a36847f8112dff", "cast_id": 11, "profile_path": "/oFGLmsfLkVwMtCocgKbnCPj0gYq.jpg", "order": 4}, {"name": "Wings Hauser", "character": "Man in wheelchair", "id": 61153, "credit_id": "52fe46ccc3a36847f8112e03", "cast_id": 12, "profile_path": "/2zNWksskqZgthJ1dD0c2beFf27p.jpg", "order": 5}, {"name": "Ethan Cohn", "character": "Film buff Ethan", "id": 63280, "credit_id": "52fe46ccc3a36847f8112e07", "cast_id": 13, "profile_path": "/l95OAzSrCvol5kEdR1nfC2CMLMx.jpg", "order": 6}, {"name": "Charley Koontz", "character": "Film buff Charley", "id": 1246891, "credit_id": "53d20b04c3a368777500b250", "cast_id": 37, "profile_path": "/bN0e99IqaeX3y2wtB0kMUs0IeKO.jpg", "order": 7}, {"name": "Daniel Quinn", "character": "Dad", "id": 85949, "credit_id": "52fe46ccc3a36847f8112e0f", "cast_id": 15, "profile_path": "/btgXYg8Zy7js1qLwdd7vR6n7npV.jpg", "order": 8}, {"name": "Devin Brochu", "character": "Son", "id": 202949, "credit_id": "52fe46ccc3a36847f8112e13", "cast_id": 16, "profile_path": "/kxyh9XX1rAtaI02bJxmVDAeFaWv.jpg", "order": 9}, {"name": "Hayley Holmes", "character": "Teenager Cindy", "id": 965884, "credit_id": "52fe46ccc3a36847f8112e17", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Haley Ramm", "character": "Teenager Fiona", "id": 61555, "credit_id": "52fe46ccc3a36847f8112e1b", "cast_id": 18, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 11}, {"name": "Cecelia Antoinette", "character": "Black woman", "id": 133400, "credit_id": "52fe46ccc3a36847f8112e1f", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Remy Thorne", "character": "Zach", "id": 205177, "credit_id": "52fe46ccc3a36847f8112e23", "cast_id": 20, "profile_path": "/eoblGcCABuf1kywBBbS2b0wL8X2.jpg", "order": 13}, {"name": "Tara Jean O'Brien", "character": "Cleaning lady", "id": 1089887, "credit_id": "52fe46ccc3a36847f8112e27", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Pete Dicecco", "character": "Luke", "id": 1089888, "credit_id": "52fe46ccc3a36847f8112e2b", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "James Parks", "character": "Doug", "id": 87312, "credit_id": "52fe46ccc3a36847f8112e2f", "cast_id": 23, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 16}, {"name": "Courtenay Taylor", "character": "Denise", "id": 76029, "credit_id": "52fe46ccc3a36847f8112e33", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Blake Robbins", "character": "Eric", "id": 154888, "credit_id": "52fe46ccc3a36847f8112e37", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Michael Ross", "character": "Truck driver", "id": 174612, "credit_id": "52fe46cdc3a36847f8112e3b", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Gaspard Aug\u00e9", "character": "Hitchhiker", "id": 78211, "credit_id": "52fe46cdc3a36847f8112e3f", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Pedro Winter", "character": "Tires burner", "id": 556018, "credit_id": "52fe46cdc3a36847f8112e43", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Quentin Dupieux", "department": "Directing", "job": "Director", "credit_id": "52fe46cdc3a36847f8112e49", "profile_path": "/r68EwqEiAZDFnkPRbMmNJMkUlU1.jpg", "id": 133398}], "vote_average": 6.0, "runtime": 85}, "168530": {"poster_path": "/fLXPcxZ1fJjxqUg94FFb8wwM9YN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 153997819, "overview": "For the past two years, high-school security guard Ben (Kevin Hart) has been trying to show decorated APD detective James (Ice Cube) that he's more than just a video-game junkie who's unworthy of James' sister, Angela (Tika Sumpter). When Ben finally gets accepted into the academy, he thinks he's earned the seasoned policeman's respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner's rapid-fire mouth is just as dangerous as the bullets speeding at it.", "video": false, "id": 168530, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Ride Along", "tagline": "Propose to this cop's sister? Rookie mistake.", "vote_count": 280, "homepage": "http://ridealong.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1408253", "adult": false, "backdrop_path": "/cRaD42r5Hte1D9Z24L6v0dtlYGj.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2014-01-17", "popularity": 1.15613967557923, "original_title": "Ride Along", "budget": 25000000, "cast": [{"name": "Ice Cube", "character": "James", "id": 9778, "credit_id": "52fe4ccfc3a36847f823fb7d", "cast_id": 3, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Kevin Hart", "character": "Ben", "id": 55638, "credit_id": "52fe4ccfc3a36847f823fb79", "cast_id": 2, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Santiago", "id": 5723, "credit_id": "52fe4ccfc3a36847f823fb75", "cast_id": 1, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Tika Sumpter", "character": "Angela", "id": 110742, "credit_id": "52fe4ccfc3a36847f823fb8f", "cast_id": 7, "profile_path": "/9H87Ss6qcnxpQHtBhiMKYNSGr1g.jpg", "order": 3}, {"name": "Laurence Fishburne", "character": "Omar", "id": 2975, "credit_id": "52fe4ccfc3a36847f823fb97", "cast_id": 9, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Lt. Brooks", "id": 14888, "credit_id": "52fe4ccfc3a36847f823fb81", "cast_id": 4, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "Bryan Callen", "character": "Miggs", "id": 78320, "credit_id": "52fe4ccfc3a36847f823fb93", "cast_id": 8, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 6}, {"name": "Gary Weeks", "character": "Dr. Cowan", "id": 168875, "credit_id": "52fe4ccfc3a36847f823fb9b", "cast_id": 10, "profile_path": "/wss0WJWiq8SyS69NW2DCwMdipgi.jpg", "order": 7}, {"name": "Gary Owen", "character": "Crazy Cody", "id": 214108, "credit_id": "52fe4ccfc3a36847f823fb9f", "cast_id": 11, "profile_path": "/419tCojrRrEDhINC38wXuiUOTC4.jpg", "order": 8}, {"name": "Jay Pharoah", "character": "Runflat", "id": 1099717, "credit_id": "52fe4ccfc3a36847f823fba3", "cast_id": 12, "profile_path": "/yRD2vypRF0niEdoCCI0pNZENzvm.jpg", "order": 9}, {"name": "Jasmine Burke", "character": "Gina", "id": 1187060, "credit_id": "52fe4ccfc3a36847f823fba7", "cast_id": 13, "profile_path": "/7INGFKXDDYoQA3xuW5La3A6QA7p.jpg", "order": 10}, {"name": "David Banner", "character": "Pawnshop Jay", "id": 53258, "credit_id": "52fe4ccfc3a36847f823fbab", "cast_id": 14, "profile_path": "/v9KDy0PrFdkvYvDtHacpgnDwh73.jpg", "order": 11}, {"name": "Aaron Saxton", "character": "Roberto", "id": 1187061, "credit_id": "52fe4ccfc3a36847f823fbaf", "cast_id": 15, "profile_path": "/jfUeksYuwjb60nmWuZYVK6iMWd8.jpg", "order": 12}, {"name": "Lucius Baston", "character": "Ballsdeep 23", "id": 930994, "credit_id": "52fe4ccfc3a36847f823fb85", "cast_id": 5, "profile_path": "/71iNBKkB3Gcgt9XZXWKRxvZtbuJ.jpg", "order": 13}, {"name": "Tom Waite", "character": "Serbian Arms Dealer (uncredited)", "id": 1338215, "credit_id": "53b95fb50e0a2676bf009a0e", "cast_id": 25, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 14}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4ccfc3a36847f823fb8b", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 6.1, "runtime": 99}, "82702": {"poster_path": "/lRjOR4uclMQijUav4OjeZprlehu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 609123048, "overview": "The thrilling second chapter of the epic How To Train Your Dragon trilogy brings back the fantastical world of Hiccup and Toothless five years later. While Astrid, Snotlout and the rest of the gang are challenging each other to dragon races (the island's new favorite contact sport), the now inseparable pair journey through the skies, charting unmapped territories and exploring new worlds. When one of their adventures leads to the discovery of a secret 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.", "video": false, "id": 82702, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "How to Train Your Dragon 2", "tagline": "The training is over.", "vote_count": 941, "homepage": "http://www.howtotrainyourdragon.com/", "belongs_to_collection": {"backdrop_path": "/mvcfPkOvgDJG2lEAxTz0NKqoQLo.jpg", "poster_path": "/nJ7ud7XWnNCnGfRQUkUp2t17Sq3.jpg", "id": 89137, "name": "How to Train Your Dragon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646971", "adult": false, "backdrop_path": "/cHTJxPcq3hlshzOgHDRMCF8Wb9K.jpg", "production_companies": [{"name": "Mad Hatter Entertainment", "id": 20154}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2014-06-13", "popularity": 4.62113221391516, "original_title": "How to Train Your Dragon 2", "budget": 145000000, "cast": [{"name": "Jay Baruchel", "character": "Hiccup (voice)", "id": 449, "credit_id": "52fe48709251416c9108c6d1", "cast_id": 13, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Stoick the Vast (voice)", "id": 17276, "credit_id": "52fe48709251416c9108c6c5", "cast_id": 10, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Kristen Wiig", "character": "Ruffnut (voice)", "id": 41091, "credit_id": "52fe48709251416c9108c6c9", "cast_id": 11, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 2}, {"name": "Jonah Hill", "character": "Snotlout (voice)", "id": 21007, "credit_id": "52fe48709251416c9108c6cd", "cast_id": 12, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 3}, {"name": "Cate Blanchett", "character": "Valka (voice)", "id": 112, "credit_id": "52fe48709251416c9108c6f1", "cast_id": 20, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 4}, {"name": "Djimon Hounsou", "character": "Drago Bludvist (voice)", "id": 938, "credit_id": "52fe48709251416c9108c6f5", "cast_id": 21, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 5}, {"name": "Kit Harington", "character": "Eret, Son of Eret (voice)", "id": 239019, "credit_id": "52fe48709251416c9108c6f9", "cast_id": 22, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 6}, {"name": "Christopher Mintz-Plasse", "character": "Fishlegs (voice)", "id": 54691, "credit_id": "52fe48709251416c9108c6d5", "cast_id": 14, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 7}, {"name": "T.J. Miller", "character": "Tuffnut (voice)", "id": 51990, "credit_id": "52fe48709251416c9108c6d9", "cast_id": 15, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 8}, {"name": "America Ferrera", "character": "Astrid (voice)", "id": 59174, "credit_id": "52fe48709251416c9108c6dd", "cast_id": 16, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 9}, {"name": "Craig Ferguson", "character": "Gobber (voice)", "id": 24264, "credit_id": "52fe48709251416c9108c6e1", "cast_id": 17, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 10}, {"name": "Kieron Elliott", "character": "Hoark the Haggard (voice)", "id": 138620, "credit_id": "5444e67ac3a36819fb001401", "cast_id": 23, "profile_path": "/7dRvskBebg36l4FT6jxg2J5sevB.jpg", "order": 11}, {"name": "Philip McGrade", "character": "Starkard (voice)", "id": 138619, "credit_id": "5444e728c3a3683e05007274", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Andrew Ableson", "character": "Ug (voice)", "id": 83407, "credit_id": "5444e80d0e0a26633a007572", "cast_id": 25, "profile_path": "/7CIkYBhgHl7O59VXlKLKxgHCnEw.jpg", "order": 13}, {"name": "Gideon Emery", "character": "Teeny (voice)", "id": 35981, "credit_id": "5444e916c3a3683df70072fa", "cast_id": 26, "profile_path": "/csFpjCQyI2GXnTpsaOc2TzCGYVy.jpg", "order": 14}, {"name": "Simon Kassianides", "character": "No-Name (voice)", "id": 1234388, "credit_id": "5444ea210e0a2663330077c7", "cast_id": 27, "profile_path": "/3psuuKWeKuXGSoKtwcEM3QNNUMT.jpg", "order": 15}, {"name": "Randy Thom", "character": "Toothless (voice)", "id": 42267, "credit_id": "5444ebed0e0a266330007517", "cast_id": 28, "profile_path": "/gENCvbLHHHtxeZcPJIHcSq6Y4BW.jpg", "order": 16}], "directors": [{"name": "Dean DeBlois", "department": "Directing", "job": "Director", "credit_id": "52fe48709251416c9108c6e7", "profile_path": "/vofzPcdNUzUD1xqaMUwMAJRgFiy.jpg", "id": 69797}], "vote_average": 8.0, "runtime": 102}, "111190": {"poster_path": "/svVGLhrtngSrp0dVOQyuqZgM1ZC.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Lil and Roz are two lifelong friends, having grown up together as neighbors in an idyllic beach town. As adults, their sons have developed a friendship as strong as that which binds their mothers. One summer, all four are confronted by simmering emotions that have been mounting between them, and each find unexpected happiness in relationships that cross the bounds of convention.", "video": false, "id": 111190, "genres": [{"id": 18, "name": "Drama"}], "title": "Adore", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103267", "adult": false, "backdrop_path": "/ymkmGKZdhbthgiHsHvXPFLOmTY2.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Screen Australia", "id": 7584}, {"name": "Cin\u00e9@", "id": 2564}, {"name": "Hopscotch Features", "id": 21079}, {"name": "Mon Voisin Productions", "id": 22983}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "Screen NSW", "id": 10951}, {"name": "France T\u00e9l\u00e9visions", "id": 11795}, {"name": "Canal+", "id": 5358}], "release_date": "2013-09-06", "popularity": 0.946962098180001, "original_title": "Adore", "budget": 0, "cast": [{"name": "Naomi Watts", "character": "Lil", "id": 3489, "credit_id": "52fe4af3c3a36847f81ea0d3", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Robin Wright", "character": "Roz", "id": 32, "credit_id": "52fe4af3c3a36847f81ea0d7", "cast_id": 5, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 1}, {"name": "Xavier Samuel", "character": "Ian", "id": 109438, "credit_id": "52fe4af3c3a36847f81ea0db", "cast_id": 6, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 2}, {"name": "James Frecheville", "character": "Tom", "id": 968863, "credit_id": "52fe4af3c3a36847f81ea0df", "cast_id": 7, "profile_path": "/fdm3sOJgXVgM1yo7a5GF53mVi7I.jpg", "order": 3}, {"name": "Ben Mendelsohn", "character": "Harold", "id": 77335, "credit_id": "52fe4af3c3a36847f81ea0e3", "cast_id": 8, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 4}, {"name": "Sophie Lowe", "character": "Hannah", "id": 103994, "credit_id": "52fe4af3c3a36847f81ea0e7", "cast_id": 9, "profile_path": "/rckY6LcOMB2XRRW2IsMhKEzKnx9.jpg", "order": 5}, {"name": "Gary Sweet", "character": "Saul", "id": 75170, "credit_id": "52fe4af3c3a36847f81ea0eb", "cast_id": 10, "profile_path": "/t7DfHinQBAXxIuddZL7r1ke7rZX.jpg", "order": 6}, {"name": "Jessica Tovey", "character": "Mary", "id": 212740, "credit_id": "52fe4af3c3a36847f81ea0ef", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Alyson Standen", "character": "Molly", "id": 152490, "credit_id": "52fe4af3c3a36847f81ea0f3", "cast_id": 12, "profile_path": "/7UB8F9oUmemqFAuOPRPMDIhNWYe.jpg", "order": 8}, {"name": "Dane Eade", "character": "Surfer lifeguard", "id": 1185778, "credit_id": "52fe4af3c3a36847f81ea0f7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Charlee Thomas", "character": "Lil's grand-daughter", "id": 1185779, "credit_id": "52fe4af3c3a36847f81ea0fb", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Scott Pirlo", "character": "Assistant", "id": 1185780, "credit_id": "52fe4af3c3a36847f81ea0ff", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Isaac Cocking", "character": "Young Tom", "id": 1185781, "credit_id": "52fe4af3c3a36847f81ea103", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Anne Fontaine", "department": "Directing", "job": "Director", "credit_id": "52fe4af3c3a36847f81ea0c3", "profile_path": "/wtl2OPo3IydskWY3cMXInBba1w.jpg", "id": 48583}], "vote_average": 6.3, "runtime": 100}, "45657": {"poster_path": "/8dCj3W9j6OFKytakm197bJD3rhT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 498974, "overview": "A thriller centered on an institutionalized young woman who becomes terrorized by a ghost.", "video": false, "id": 45657, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Ward", "tagline": "Only Sanity Can Keep You Alive", "vote_count": 72, "homepage": "http://theward.theofficialjohncarpenter.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1369706", "adult": false, "backdrop_path": "/j01PwweLdwHk3e5pTAZazvAp2VS.jpg", "production_companies": [{"name": "FilmNation Entertainment", "id": 7493}, {"name": "Premiere Picture", "id": 3870}, {"name": "Echo Lake Entertainment", "id": 22308}, {"name": "A Bigger Boat", "id": 5855}, {"name": "North by Northwest Entertainment", "id": 1804}], "release_date": "2010-09-13", "popularity": 0.651992326325542, "original_title": "The Ward", "budget": 10000000, "cast": [{"name": "Lyndsy Fonseca", "character": "Iris", "id": 116882, "credit_id": "52fe46cdc3a36847f8112f85", "cast_id": 8, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 0}, {"name": "Amber Heard", "character": "Kristen", "id": 55085, "credit_id": "52fe46cdc3a36847f8112f89", "cast_id": 9, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Danielle Panabaker", "character": "Sarah", "id": 31838, "credit_id": "52fe46cdc3a36847f8112f8d", "cast_id": 10, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 2}, {"name": "Jared Harris", "character": "Dr. Stringer", "id": 15440, "credit_id": "52fe46cdc3a36847f8112f91", "cast_id": 11, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 3}, {"name": "Mamie Gummer", "character": "Emily", "id": 47281, "credit_id": "52fe46cdc3a36847f8112f95", "cast_id": 12, "profile_path": "/ptz8SYBGt8XJlH6m7pjqhQMr6D3.jpg", "order": 4}, {"name": "Laura-Leigh", "character": "Zoey", "id": 211539, "credit_id": "52fe46cdc3a36847f8112f99", "cast_id": 13, "profile_path": "/prUO6jOfVx1ZQHaQV4ZZZywCyok.jpg", "order": 5}, {"name": "Sydney Sweeney", "character": "Young Alice", "id": 115440, "credit_id": "52fe46cdc3a36847f8112f9d", "cast_id": 14, "profile_path": "/gDIVH64UYF1fA1O1Uf9E2d9Cmbu.jpg", "order": 6}, {"name": "D.R. Anderson", "character": "Roy", "id": 516722, "credit_id": "52fe46cdc3a36847f8112fa1", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Mika Boorem", "character": "Alice", "id": 21027, "credit_id": "52fe46cdc3a36847f8112fa5", "cast_id": 16, "profile_path": "/amQuR9PGz0yt6IXNnwLOAEkfPcq.jpg", "order": 8}, {"name": "Susanna Burney", "character": "Nurse Lundt", "id": 572071, "credit_id": "52fe46cdc3a36847f8112fa9", "cast_id": 17, "profile_path": "/znRWMVQzTTDFbFn55CxEGFxeaW7.jpg", "order": 9}, {"name": "Sean Cook", "character": "Jimmy", "id": 222532, "credit_id": "52fe46cdc3a36847f8112fad", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "R.J. Hampton", "character": "Mental Ward Patient", "id": 572072, "credit_id": "52fe46cdc3a36847f8112fb1", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Jillian Kramer", "character": "Monster Alice", "id": 572073, "credit_id": "52fe46cdc3a36847f8112fb5", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Milos Milicevic", "character": "Predator", "id": 87075, "credit_id": "52fe46cdc3a36847f8112fb9", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Sali Sayler", "character": "Tammy", "id": 572074, "credit_id": "52fe46cdc3a36847f8112fbd", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Kent Kimball", "character": "Cop #2 (uncredited)", "id": 572075, "credit_id": "52fe46cdc3a36847f8112fc1", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Tracy Schornick", "character": "Cop#1 (uncredited)", "id": 90537, "credit_id": "52fe46cdc3a36847f8112fc5", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Joanna Theobalds", "character": "Mental Ward Patient (uncredited)", "id": 572076, "credit_id": "52fe46cdc3a36847f8112fc9", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Patrick Treadway", "character": "2nd Floor Nurse (uncredited)", "id": 58796, "credit_id": "52fe46cdc3a36847f8112fcd", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Lonny W. Waddle", "character": "Orderly (uncredited)", "id": 572077, "credit_id": "52fe46cdc3a36847f8112fd1", "cast_id": 27, "profile_path": null, "order": 19}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe46cdc3a36847f8112f75", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.4, "runtime": 88}, "45658": {"poster_path": "/8gUWukFYhc8mYtLB1uiXpUjUxBD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2614773, "overview": "When an alcoholic relapses, causing him to lose his wife and his job, he holds a yard sale on his front lawn in an attempt to start over. A new neighbor might be the key to his return to form.", "video": false, "id": 45658, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Everything Must Go", "tagline": "Lost is a good place to find yourself", "vote_count": 52, "homepage": "http://www.everythingmustgo-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1531663", "adult": false, "backdrop_path": "/azqdlJvqTk0z1SiWNVsFsNZX7ma.jpg", "production_companies": [{"name": "Birdsong Pictures", "id": 7436}, {"name": "IM Global", "id": 7437}], "release_date": "2010-10-15", "popularity": 0.392920431776194, "original_title": "Everything Must Go", "budget": 5000000, "cast": [{"name": "Rebecca Hall", "character": "Samantha", "id": 15556, "credit_id": "52fe46cdc3a36847f8112ff9", "cast_id": 7, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Nick Halsey", "id": 23659, "credit_id": "52fe46cdc3a36847f8112ffd", "cast_id": 8, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Glenn Howerton", "character": "Gary", "id": 77870, "credit_id": "52fe46cdc3a36847f8113001", "cast_id": 9, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 2}, {"name": "Laura Dern", "character": "Delilah", "id": 4784, "credit_id": "52fe46cdc3a36847f8113005", "cast_id": 10, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Christopher Jordan Wallace", "character": "Kenny Loftus", "id": 82163, "credit_id": "52fe46cdc3a36847f811300f", "cast_id": 12, "profile_path": "/3vV8kVZhfIztmIUYw1Hq6JEiAJB.jpg", "order": 4}, {"name": "Michael Pe\u00f1a", "character": "Frank Garcia", "id": 454, "credit_id": "52fe46cdc3a36847f8113013", "cast_id": 13, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 5}, {"name": "Stephen Root", "character": "Elliot", "id": 17401, "credit_id": "52fe46cdc3a36847f811301d", "cast_id": 15, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}], "directors": [{"name": "Dan Rush", "department": "Directing", "job": "Director", "credit_id": "52fe46cdc3a36847f8112fef", "profile_path": "/2r2lzpEhJqQjzKN8AdvMFhpQssF.jpg", "id": 133406}], "vote_average": 5.5, "runtime": 97}, "82703": {"poster_path": "/q4FQXK4a4HSb4pajZL4ZFKHVsjC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 272912430, "overview": "A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-travel machine is stolen and moments in history begin to be changed.", "video": false, "id": 82703, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Mr. Peabody & Sherman", "tagline": "He's Leaving His Mark On History", "vote_count": 250, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0864835", "adult": false, "backdrop_path": "/hpIUiHIyNKWsid3Tz4adtYsUqo1.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "20th Century Fox", "id": 25}], "release_date": "2014-03-07", "popularity": 1.6890769476442, "original_title": "Mr. Peabody & Sherman", "budget": 145000000, "cast": [{"name": "Ty Burrell", "character": "Mr. Peabody", "id": 15232, "credit_id": "52fe48709251416c9108c753", "cast_id": 16, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 0}, {"name": "Max Charles", "character": "Sherman", "id": 558928, "credit_id": "52fe48709251416c9108c763", "cast_id": 20, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 1}, {"name": "Ariel Winter", "character": "Penny Peterson", "id": 42160, "credit_id": "52fe48709251416c9108c747", "cast_id": 13, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 2}, {"name": "Allison Janney", "character": "Mrs. Grunion", "id": 19, "credit_id": "52fe48709251416c9108c74b", "cast_id": 14, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 3}, {"name": "Ellie Kemper", "character": "Paula Peterson", "id": 475512, "credit_id": "52fe48709251416c9108c74f", "cast_id": 15, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 4}, {"name": "Stephen Colbert", "character": "Paul Peterson", "id": 58769, "credit_id": "52fe48709251416c9108c757", "cast_id": 17, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Principal Purdy", "id": 537, "credit_id": "52fe48709251416c9108c75b", "cast_id": 18, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Karan Brar", "character": "Mason", "id": 111923, "credit_id": "52fe48709251416c9108c75f", "cast_id": 19, "profile_path": "/eelNaGrUz5jRyEk6XlH6C1q5pON.jpg", "order": 7}, {"name": "Joshua Rush", "character": "Carl", "id": 212184, "credit_id": "52fe48709251416c9108c767", "cast_id": 21, "profile_path": "/llQinkw36ZRjL23njpTmrU9wZ94.jpg", "order": 8}, {"name": "Adam Alexi-Malle", "character": "French Peasant", "id": 20804, "credit_id": "52fe48709251416c9108c76b", "cast_id": 22, "profile_path": "/4wopg5aGUm9oVlwxXIsdG8WU82B.jpg", "order": 9}, {"name": "Stanley Tucci", "character": "Leonardo Da Vinci", "id": 2283, "credit_id": "53033f18c3a3680a1956bb0f", "cast_id": 25, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 10}, {"name": "Lauri Fraser", "character": "Marie Antoinette/ Egyptian Woman", "id": 1054484, "credit_id": "53160d6492514158610008cb", "cast_id": 26, "profile_path": "/w1WRH4ZXx4hLZLsvZnsZvJbjh68.jpg", "order": 11}, {"name": "Leslie Mann", "character": "Patty Pearson", "id": 41087, "credit_id": "53160db6c3a3681399000d2f", "cast_id": 27, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 12}, {"name": "Lake Bell", "character": "Mona", "id": 25703, "credit_id": "532dc87ac3a3685fdb00243b", "cast_id": 28, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 13}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe48709251416c9108c725", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 7.0, "runtime": 92}, "62046": {"poster_path": "/seYUPkTnd4BAFZEqxWuByEXmUOK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man caught in the middle of two simultaneous robberies at a bank desperately tries to protect the teller with whom he's secretly in love.", "video": false, "id": 62046, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Flypaper", "tagline": "Two sets of bank robbers. One very sticky heist.", "vote_count": 67, "homepage": "http://wn.com/Flypaper_%282011_film%29", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1541160", "adult": false, "backdrop_path": "/x5XtHyZluo5UYVGiHlSUk590nGa.jpg", "production_companies": [{"name": "The Safran Company", "id": 11565}, {"name": "Rising Star", "id": 1208}, {"name": "Foresight Unlimited", "id": 21897}, {"name": "Shifting Gears Entertainment", "id": 23159}], "release_date": "2011-08-19", "popularity": 0.340066261851609, "original_title": "Flypaper", "budget": 5000000, "cast": [{"name": "Patrick Dempsey", "character": "Tripp", "id": 18352, "credit_id": "52fe4670c3a368484e090bbd", "cast_id": 2, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 0}, {"name": "Ashley Judd", "character": "Kaitlin", "id": 15852, "credit_id": "52fe4670c3a368484e090bc1", "cast_id": 3, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 1}, {"name": "Tim Blake Nelson", "character": "Peanut Butter", "id": 1462, "credit_id": "52fe4670c3a368484e090bc5", "cast_id": 4, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 2}, {"name": "Mekhi Phifer", "character": "Darrien", "id": 327, "credit_id": "52fe4670c3a368484e090bd1", "cast_id": 7, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 3}, {"name": "Matt Ryan", "character": "Gates", "id": 127712, "credit_id": "52fe4670c3a368484e090be1", "cast_id": 11, "profile_path": "/vhtPgliaSVRit9WkHxKT1julQDx.jpg", "order": 4}, {"name": "Jeffrey Tambor", "character": "Gordon Blythe", "id": 4175, "credit_id": "52fe4670c3a368484e090bcd", "cast_id": 6, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 5}, {"name": "John Ventimiglia", "character": "Weinstein", "id": 87707, "credit_id": "52fe4670c3a368484e090bdd", "cast_id": 10, "profile_path": "/ws3R1TndkITQMGBariX3UaUjqXP.jpg", "order": 6}, {"name": "Pruitt Taylor Vince", "character": "Jelly", "id": 3201, "credit_id": "52fe4670c3a368484e090be5", "cast_id": 12, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 7}, {"name": "Curtis Armstrong", "character": "Mitchell Wolf", "id": 87003, "credit_id": "52fe4670c3a368484e090bd5", "cast_id": 8, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 8}, {"name": "Rob Huebel", "character": "Rex Newbauer", "id": 80595, "credit_id": "539d1a2fc3a3683b48001dea", "cast_id": 13, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 9}, {"name": "Adrian Martinez", "character": "Mr. Clean", "id": 94432, "credit_id": "52fe4670c3a368484e090bc9", "cast_id": 5, "profile_path": "/zDnnzak4BLb5dNc9taqLNprkRvw.jpg", "order": 10}, {"name": "Natalia Safran", "character": "Swiss Miss", "id": 1173002, "credit_id": "539d1a4ac3a3683b41001ec5", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Octavia Spencer", "character": "Madge Wiggins (as Octavia J. Spencer)", "id": 6944, "credit_id": "52fe4670c3a368484e090bd9", "cast_id": 9, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 12}, {"name": "Eddie Matthews", "character": "Jack Hayes", "id": 177031, "credit_id": "539d1b64c3a3683b48001e21", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Rob Boltin", "character": "Credit Manager", "id": 149653, "credit_id": "539d1b8ec3a3683b41001f0d", "cast_id": 18, "profile_path": "/h3KmygUcjYdQLyjonvf9tJquhW5.jpg", "order": 14}, {"name": "James DuMont", "character": "Detective", "id": 97446, "credit_id": "539d1bc7c3a3683b31001e6b", "cast_id": 19, "profile_path": "/A448koSIESyi91EmOrCJwIC2wDA.jpg", "order": 15}, {"name": "James DuMont", "character": "Elderly Customer", "id": 97446, "credit_id": "539d1c15c3a3683b2a001ee7", "cast_id": 20, "profile_path": "/A448koSIESyi91EmOrCJwIC2wDA.jpg", "order": 16}, {"name": "Joseph Nemmers", "character": "Cop", "id": 1330719, "credit_id": "539d1c23c3a3683b59001eda", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Victor Palacios", "character": "EMT", "id": 1330720, "credit_id": "539d1c2fc3a3683b2a001efc", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Raymond Rivera", "character": "Hector the Janitor", "id": 1330721, "credit_id": "539d1c42c3a3683b59001eea", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Crystal Kung", "character": "News Reporter #1", "id": 1330722, "credit_id": "539d1c54c3a3683b50001e5b", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Tamara Stuparich de la Barra", "character": "News Reporter #2", "id": 1330723, "credit_id": "539d1c75c3a3683b41001f40", "cast_id": 25, "profile_path": null, "order": 21}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe4670c3a368484e090bb9", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 6.4, "runtime": 87}, "37472": {"poster_path": "/9mu13RSsvyDdlyD8TyjuQVrT0gM.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 36000000, "overview": "Having defeated the best fighters of the Imperial Japanese army in occupied Shanghai, Ip Man and his family settle in post-war Hong Kong.Struggling to make a living, Master Ip opens a kung fu school to bring his celebrated art of Wing Chun to the troubled youth of Hong Kong. His growing reputation soon brings challenges from powerful enemies, including pre-eminent Hung Gar master, Hung Quan (Sammo Hung). However, when corrupt colonial officials stage a life-or-death contest with formidable British boxer, Twister (Darren Shahlavi), to humiliate the Chinese people, the masters quickly forget their differences. Soon, the eyes of the nation are on the one man capable of securing a victory-Grandmaster Ip Man!", "video": false, "id": 37472, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ip Man 2", "tagline": "Behind every great martial artist lies a teacher.", "vote_count": 265, "homepage": "http://www.ipman2-movie.com/", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1386932", "adult": false, "backdrop_path": "/cVRia71LWCeRixU7FfBO4tAT7D8.jpg", "production_companies": [{"name": "Mandarin Films Distribution Co.", "id": 4054}], "release_date": "2010-04-21", "popularity": 0.234344055818692, "original_title": "Yip Man 2", "budget": 12902809, "cast": [{"name": "Donnie Yen", "character": "Ip Man", "id": 1341, "credit_id": "52fe464c9251416c9104ff5f", "cast_id": 6, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 0}, {"name": "Sammo Hung", "character": "Hung Chun-nam", "id": 62410, "credit_id": "52fe464c9251416c9104ff63", "cast_id": 7, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 1}, {"name": "Simon Yam", "character": "Zhou Qing Quan", "id": 20519, "credit_id": "52fe464c9251416c9104ff67", "cast_id": 9, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 2}, {"name": "Lynn Hung", "character": "Cheung Wing-sing", "id": 117760, "credit_id": "52fe464c9251416c9104ff5b", "cast_id": 5, "profile_path": "/fcpvkrle1JA944eylXERw3gqgus.jpg", "order": 3}, {"name": "Fan Siu-Wong", "character": "Jin Shanzhao", "id": 130598, "credit_id": "52fe464c9251416c9104ff71", "cast_id": 12, "profile_path": "/tFfXqPjqhVItv5lkUVtSMbw1SPd.jpg", "order": 4}, {"name": "Lo Meng", "character": "Master Law", "id": 240155, "credit_id": "52fe464c9251416c9104ff75", "cast_id": 13, "profile_path": "/em4u0wBldv2e2CQR6kmGES1bGPs.jpg", "order": 5}, {"name": "Huang Xiaoming", "character": "Wong Shun-Leung", "id": 109434, "credit_id": "5303d0fbc3a3680a216e2464", "cast_id": 15, "profile_path": "/96RwznSl1shVLwLD2fT2E0XHOqi.jpg", "order": 6}, {"name": "Kent Cheng", "character": "Fatso", "id": 65966, "credit_id": "540891fec3a36858250013b8", "cast_id": 25, "profile_path": "/am27mGN3G61eux7yCUc9mXp5NJB.jpg", "order": 7}, {"name": "Christian Bachini", "character": "Twister supporter", "id": 1421366, "credit_id": "54cfc02c925141475d0085c9", "cast_id": 26, "profile_path": "/4fi6pQqYedjfzztSkt9HA6fKk2k.jpg", "order": 8}], "directors": [{"name": "Wilson Yip", "department": "Directing", "job": "Director", "credit_id": "52fe464c9251416c9104ff6d", "profile_path": "/6TDvEZYjxBLqZW6ER5fBi8d0ydK.jpg", "id": 63571}], "vote_average": 7.0, "runtime": 109}, "127585": {"poster_path": "/qKkFk9HELmABpcPoc1HHZGIxQ5a.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 746000000, "overview": "The ultimate X-Men ensemble fights a war for the survival of the species across two time periods in X-MEN: DAYS OF FUTURE PAST. The beloved characters from the original \u201cX-Men\u201d film trilogy join forces with their younger selves from \u201cX-Men: First Class,\u201d in an epic battle that must change the past \u2013 to save our future.", "video": false, "id": 127585, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "X-Men: Days of Future Past", "tagline": "To save the future, they must alter the past", "vote_count": 1842, "homepage": "http://www.x-menmovies.com/", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1877832", "adult": false, "backdrop_path": "/ai9UKd8KownQKGIh1m5p3DuEeMm.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Donners' Company", "id": 431}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "TSG Entertainment", "id": 22213}, {"name": "Down Productions", "id": 37336}], "release_date": "2014-05-23", "popularity": 6.99201307334913, "original_title": "X-Men: Days of Future Past", "budget": 250000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe4affc3a368484e172013", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "James McAvoy", "character": "Professor Charles Xavier (Past)", "id": 5530, "credit_id": "52fe4affc3a368484e171fff", "cast_id": 4, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Patrick Stewart", "character": "Professor Charles Xavier (Future)", "id": 2387, "credit_id": "52fe4affc3a368484e171ffb", "cast_id": 3, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 2}, {"name": "Michael Fassbender", "character": "Erik Lehnsherr / Magneto (Past)", "id": 17288, "credit_id": "52fe4affc3a368484e172003", "cast_id": 5, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 3}, {"name": "Ian McKellen", "character": "Erik Lehnsherr / Magneto (Future)", "id": 1327, "credit_id": "52fe4affc3a368484e172007", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 4}, {"name": "Jennifer Lawrence", "character": "Raven / Mystique", "id": 72129, "credit_id": "52fe4affc3a368484e17200b", "cast_id": 7, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 5}, {"name": "Nicholas Hoult", "character": "Hank McCoy / Beast", "id": 3292, "credit_id": "52fe4affc3a368484e17200f", "cast_id": 8, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 6}, {"name": "Ellen Page", "character": "Kitty Pryde / Shadowcat", "id": 27578, "credit_id": "52fe4affc3a368484e17201b", "cast_id": 11, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 7}, {"name": "Shawn Ashmore", "character": "Iceman", "id": 11023, "credit_id": "52fe4affc3a368484e17201f", "cast_id": 12, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 8}, {"name": "Peter Dinklage", "character": "Bolivar Trask", "id": 22970, "credit_id": "52fe4affc3a368484e172023", "cast_id": 13, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 9}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe4affc3a368484e172027", "cast_id": 14, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 10}, {"name": "Booboo Stewart", "character": "James Proudstar / Warpath", "id": 121868, "credit_id": "52fe4affc3a368484e17202b", "cast_id": 15, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 11}, {"name": "Fan Bingbing", "character": "Clarice Ferguson / Blink", "id": 64439, "credit_id": "52fe4affc3a368484e17202f", "cast_id": 16, "profile_path": "/8DyH7uapvuJaTjrXv9ryhRARUC2.jpg", "order": 12}, {"name": "Daniel Cudmore", "character": "Piotr Rasputin / Colossus", "id": 84222, "credit_id": "52fe4affc3a368484e172033", "cast_id": 17, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 13}, {"name": "Adan Canto", "character": "Roberto da Costa / Sunspot", "id": 1010189, "credit_id": "52fe4affc3a368484e172043", "cast_id": 21, "profile_path": "/eJzvFyuwGm1oFhCX5wFMiIHN4hG.jpg", "order": 14}, {"name": "Omar Sy", "character": "Lucas Bishop", "id": 78423, "credit_id": "52fe4affc3a368484e172047", "cast_id": 22, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 15}, {"name": "Evan Peters", "character": "Pietro Maximoff / Quicksilver", "id": 55089, "credit_id": "52fe4affc3a368484e17204b", "cast_id": 23, "profile_path": "/2a1XA1ynmbZZj2nauwsc03OzRB.jpg", "order": 16}, {"name": "Lucas Till", "character": "Alex Summers / Havok", "id": 429, "credit_id": "52fe4affc3a368484e17204f", "cast_id": 24, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 17}, {"name": "Josh Helman", "character": "William Stryker", "id": 1056053, "credit_id": "52fe4affc3a368484e172053", "cast_id": 25, "profile_path": "/rmj2HHc1uNESTlHk50qnCHK11jD.jpg", "order": 18}, {"name": "Evan Jonigkeit", "character": "Toad", "id": 1284084, "credit_id": "52fe4affc3a368484e17209f", "cast_id": 38, "profile_path": "/t90vEEaBojnrkTOztP2d6EX77Yp.jpg", "order": 19}, {"name": "Famke Janssen", "character": "Jean Grey", "id": 10696, "credit_id": "5383be67c3a368059e00945f", "cast_id": 40, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 20}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "5383be76c3a36805a8008df2", "cast_id": 41, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 21}, {"name": "Anna Paquin", "character": "Rogue", "id": 10690, "credit_id": "5383be87c3a36805950093d6", "cast_id": 42, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 22}, {"name": "Mark Camacho", "character": "President Richard Nixon", "id": 7013, "credit_id": "5383becac3a36805a8008df6", "cast_id": 43, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 23}, {"name": "Kelsey Grammer", "character": "Hank McCoy / Beast (Older)", "id": 7090, "credit_id": "5383bef6c3a36805950093da", "cast_id": 44, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 24}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe4affc3a368484e171ff1", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 7.7, "runtime": 131}, "266856": {"poster_path": "/4jspr8hLLuju59bCnMiefzRW4p0.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 121201940, "overview": "A look at the relationship between the famous physicist Stephen Hawking and his wife.", "video": false, "id": 266856, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Theory of Everything", "tagline": "His Mind Changed Our World. Her Love Changed His.", "vote_count": 574, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2980516", "adult": false, "backdrop_path": "/geAe08WmchATnZF461WffQBqJk1.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}], "release_date": "2014-11-26", "popularity": 5.30253029498745, "original_title": "The Theory of Everything", "budget": 15000000, "cast": [{"name": "Eddie Redmayne", "character": "Stephen Hawking", "id": 37632, "credit_id": "53db406e0e0a261897000df6", "cast_id": 10, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 0}, {"name": "Felicity Jones", "character": "Jane Hawking", "id": 72855, "credit_id": "535c6df30e0a264feb0022c0", "cast_id": 2, "profile_path": "/gU3lCDCdiY1uAVGFFyTcSQ3M7E8.jpg", "order": 1}, {"name": "Harry Lloyd", "character": "Brian", "id": 205258, "credit_id": "535c6e1e0e0a264fdb0021ac", "cast_id": 4, "profile_path": "/vI6FWizXNa5quCyIiTd06gxNQu1.jpg", "order": 2}, {"name": "David Thewlis", "character": "Dennis Sciama", "id": 11207, "credit_id": "535c6e2e0e0a264fd5002390", "cast_id": 5, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 3}, {"name": "Emily Watson", "character": "Beryl Wilde", "id": 1639, "credit_id": "535c6e040e0a264fe800232b", "cast_id": 3, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 4}, {"name": "Simon McBurney", "character": "Frank Hawking", "id": 16358, "credit_id": "546e724ac3a3682fa10000c4", "cast_id": 12, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 5}, {"name": "Lucy Chappell", "character": "Mary Hawking", "id": 1387381, "credit_id": "546e725e92514112ee0000c2", "cast_id": 13, "profile_path": "/fzufE0bYmUgupoH0ZxR29lEFt3C.jpg", "order": 6}, {"name": "Charlotte Hope", "character": "Philippa Hawking", "id": 1052255, "credit_id": "535c6e3d0e0a264fde002314", "cast_id": 6, "profile_path": "/3IouhqclzFgfzGm6LEVAnQKhRev.jpg", "order": 7}, {"name": "Abigail Cruttenden", "character": "Isobel Hawking", "id": 73845, "credit_id": "546e72d092514112ee0000d2", "cast_id": 17, "profile_path": "/bEEZjMMMgEIAb3OXNGqcvYT0ryA.jpg", "order": 8}, {"name": "Christian McKay", "character": "Roger Penrose", "id": 28478, "credit_id": "546e727592514112f000009a", "cast_id": 14, "profile_path": "/sNzMFhhayZvBCYak24Y306xajA.jpg", "order": 9}, {"name": "Adam Godley", "character": "Senior Doctor, Cambridge Hospital", "id": 23429, "credit_id": "546e729cc3a3682f9a0000d7", "cast_id": 16, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 10}, {"name": "Charlie Cox", "character": "Jonathan Hellyer Jones", "id": 23458, "credit_id": "546e7287c3a3682faa0000a1", "cast_id": 15, "profile_path": "/zxkaGPuJ7MfO7s1uOhVqBdYqW9z.jpg", "order": 11}, {"name": "Maxine Peake", "character": "Elaine Mason", "id": 76944, "credit_id": "535c7025c3a36830b0002bd6", "cast_id": 9, "profile_path": "/4WgxnjPl8YgyMjKVwREtN8iLTX8.jpg", "order": 12}, {"name": "Tom Prior", "character": "Robert Hawking (Age 17)", "id": 1361963, "credit_id": "546e733192514112eb0000e6", "cast_id": 18, "profile_path": "/oHHV5txGjAXBTVIj7kkkqoy3hUC.jpg", "order": 13}, {"name": "Sophie Perry", "character": "Lucy Hawking (Age 14)", "id": 1387383, "credit_id": "546e734a92514112f00000be", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Finlay Wright-Stephens", "character": "Timothy Hawking (Age 8)", "id": 1387384, "credit_id": "546e735e92514112f30000d8", "cast_id": 20, "profile_path": null, "order": 15}], "directors": [{"name": "James Marsh", "department": "Directing", "job": "Director", "credit_id": "535c6a0f0e0a264feb00226f", "profile_path": "/hixQKy5DDaltidt3PR1oYa5fpq2.jpg", "id": 76998}], "vote_average": 7.9, "runtime": 123}, "48572": {"poster_path": "/h43jPTebYOabSXqNQqrRQpg6DPc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set in Middle America, a group of teens receive an online invitation for sex, though they soon encounter Christian fundamentalists with a much more sinister agenda.", "video": false, "id": 48572, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Red State", "tagline": "Fear God.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0873886", "adult": false, "backdrop_path": "/mKWrj4BAeuzAWOoShVcmhwmyza6.jpg", "production_companies": [{"name": "The Harvey Boys", "id": 7784}, {"name": "NVSH Productions", "id": 7785}], "release_date": "2011-09-23", "popularity": 0.407385741880433, "original_title": "Red State", "budget": 4000000, "cast": [{"name": "Michael Parks", "character": "Pastor Abin Cooper", "id": 2536, "credit_id": "52fe476bc3a36847f8134bb3", "cast_id": 7, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 0}, {"name": "John Goodman", "character": "Joseph Keenan", "id": 1230, "credit_id": "52fe476bc3a36847f8134ba7", "cast_id": 4, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Melissa Leo", "character": "Sara", "id": 6832, "credit_id": "52fe476bc3a36847f8134bbb", "cast_id": 9, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 2}, {"name": "Michael Angarano", "character": "Travis", "id": 11665, "credit_id": "52fe476bc3a36847f8134baf", "cast_id": 6, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 3}, {"name": "Kyle Gallner", "character": "Jarod", "id": 59219, "credit_id": "52fe476bc3a36847f8134ba3", "cast_id": 3, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 4}, {"name": "Nicholas Braun", "character": "Billy-Ray", "id": 85139, "credit_id": "52fe476bc3a36847f8134beb", "cast_id": 21, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 5}, {"name": "Kerry Bish\u00e9", "character": "Cheyenne", "id": 58356, "credit_id": "52fe476bc3a36847f8134bdb", "cast_id": 17, "profile_path": "/vgyxPcX86ASm1fn3S64TEVQ47Uv.jpg", "order": 6}, {"name": "Stephen Root", "character": "Sherrif Wynan", "id": 17401, "credit_id": "52fe476bc3a36847f8134bbf", "cast_id": 10, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 7}, {"name": "Matt Jones", "character": "Deputy Pete", "id": 191202, "credit_id": "52fe476bc3a36847f8134bef", "cast_id": 22, "profile_path": "/wcB788lpiyc58s0F3nzqZnspISA.jpg", "order": 8}, {"name": "Kevin Alejandro", "character": "Harry, the Tactical Agent", "id": 116474, "credit_id": "52fe476bc3a36847f8134bab", "cast_id": 5, "profile_path": "/5BnTxO2E3GrHsZmmO7XwML0OnDF.jpg", "order": 9}, {"name": "Ralph Garman", "character": "Caleb", "id": 60286, "credit_id": "52fe476cc3a36847f8134bff", "cast_id": 26, "profile_path": "/vMzb4yCslLhJb7CQkS3R1jbyCO6.jpg", "order": 10}, {"name": "Anna Gunn", "character": "Travis' Mother", "id": 134531, "credit_id": "52fe476bc3a36847f8134bb7", "cast_id": 8, "profile_path": "/6yLKtfYFWbJp5HAjvCecQCYlmqk.jpg", "order": 11}, {"name": "Kevin Pollak", "character": "ASAC Brooks", "id": 7166, "credit_id": "52fe476bc3a36847f8134bc3", "cast_id": 11, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 12}, {"name": "Betty Aberlin", "character": "Abigail", "id": 140881, "credit_id": "52fe476bc3a36847f8134bc7", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Jennifer Schwalbach Smith", "character": "Esther (as Jennifer Schwalbach)", "id": 23658, "credit_id": "52fe476bc3a36847f8134bd1", "cast_id": 14, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 14}, {"name": "Patrick Fischler", "character": "Agent Hammond", "id": 52801, "credit_id": "52fe476bc3a36847f8134bdf", "cast_id": 18, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 15}, {"name": "Damian Young", "character": "Agent Carol", "id": 109144, "credit_id": "52fe476bc3a36847f8134be3", "cast_id": 19, "profile_path": "/vW2CSkKPnahjK1xoLRR6iw86eeU.jpg", "order": 16}, {"name": "David Marciano", "character": "Agent Eccles", "id": 169292, "credit_id": "52fe476bc3a36847f8134be7", "cast_id": 20, "profile_path": "/xRQtCCx6LCqH2ft7m8tooCjZrrj.jpg", "order": 17}, {"name": "Kaylee DeFer", "character": "Dana", "id": 1216163, "credit_id": "52fe476cc3a36847f8134c47", "cast_id": 40, "profile_path": "/m8vynStpk6MzXhkSdZiMulRYWK8.jpg", "order": 18}, {"name": "Ronnie Connell", "character": "Randy", "id": 1042471, "credit_id": "52fe476cc3a36847f8134bf3", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Alexa Nikolas", "character": "Jesse", "id": 152302, "credit_id": "52fe476cc3a36847f8134bf7", "cast_id": 24, "profile_path": "/vRMt63qfz4ZkMOdczqkxxus4gMi.jpg", "order": 20}, {"name": "Cooper Thornton", "character": "Plastic Wrap Man", "id": 162828, "credit_id": "52fe476cc3a36847f8134bfb", "cast_id": 25, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 21}, {"name": "James Parks", "character": "Mordechai", "id": 87312, "credit_id": "52fe476cc3a36847f8134c03", "cast_id": 27, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 22}, {"name": "Haley Ramm", "character": "Maggie", "id": 61555, "credit_id": "52fe476cc3a36847f8134c07", "cast_id": 28, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 23}, {"name": "Elizabeth Tripp", "character": "Melanie", "id": 1148417, "credit_id": "52fe476cc3a36847f8134c0b", "cast_id": 29, "profile_path": null, "order": 24}, {"name": "Molly Livingston", "character": "Fiona May", "id": 1203770, "credit_id": "52fe476cc3a36847f8134c0f", "cast_id": 30, "profile_path": null, "order": 25}, {"name": "John Lacy", "character": "Travis' Father", "id": 1180860, "credit_id": "52fe476cc3a36847f8134c13", "cast_id": 31, "profile_path": "/8Yr58DhK0arBQCNJALcw0YZpm1Q.jpg", "order": 26}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe476bc3a36847f8134bcd", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.1, "runtime": 88}, "8978": {"poster_path": "/xblaA3nQoEMg3wPLKfLEwA7TU9v.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35294470, "overview": "On New Year's Eve, inside a police station that's about to be closed for good, officer Jake Roenick must cobble together a force made up cops and criminals to save themselves from a mob looking to kill mobster Marion Bishop.", "video": false, "id": 8978, "genres": [{"id": 53, "name": "Thriller"}], "title": "Assault on Precinct 13", "tagline": "Unite and fight.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sr", "name": "Srpski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398712", "adult": false, "backdrop_path": "/gVDw8QG2uDOHEmUNGpHoIatkJdo.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Why Not Productions", "id": 729}, {"name": "Liaison Films", "id": 20449}, {"name": "Biscayne Pictures", "id": 20450}], "release_date": "2005-01-19", "popularity": 0.888137686255289, "original_title": "Assault on Precinct 13", "budget": 30000000, "cast": [{"name": "Ethan Hawke", "character": "Sergeant Jake Roenick", "id": 569, "credit_id": "52fe44cec3a36847f80aaf77", "cast_id": 8, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Marion Bishop", "id": 2975, "credit_id": "52fe44cec3a36847f80aaf7b", "cast_id": 9, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Gabriel Byrne", "character": "Captain Marcus Duvall", "id": 5168, "credit_id": "52fe44cec3a36847f80aaf7f", "cast_id": 10, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 2}, {"name": "Maria Bello", "character": "Dr Alex Sabian", "id": 49, "credit_id": "52fe44cec3a36847f80aaf83", "cast_id": 11, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "Drea de Matteo", "character": "Iris Ferry", "id": 70767, "credit_id": "52fe44cec3a36847f80aaf87", "cast_id": 12, "profile_path": "/6rAp86rimrbRbZtm61jQoc5Fmkv.jpg", "order": 4}, {"name": "John Leguizamo", "character": "Beck", "id": 5723, "credit_id": "52fe44cec3a36847f80aaf8b", "cast_id": 13, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 5}, {"name": "Brian Dennehy", "character": "Sargeant Jasper O'Shea", "id": 6197, "credit_id": "52fe44cec3a36847f80aaf8f", "cast_id": 14, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 6}, {"name": "Ja Rule", "character": "Smiley", "id": 61658, "credit_id": "52fe44cec3a36847f80aaf93", "cast_id": 15, "profile_path": "/rXvVP8d4NWBdHxcTu3GTUrybZlX.jpg", "order": 7}, {"name": "Currie Graham", "character": "Mike Kahane", "id": 156590, "credit_id": "530f1feac3a3687491000abc", "cast_id": 16, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 8}, {"name": "Aisha Hinds", "character": "Anna", "id": 1192492, "credit_id": "530f1ffac3a368445f000682", "cast_id": 17, "profile_path": "/pDgm7OM9pT9rF5Q41lVVWj2cqOv.jpg", "order": 9}, {"name": "Matt Craven", "character": "Officer Kevin Capra", "id": 13525, "credit_id": "530f2007c3a36874af000a2e", "cast_id": 18, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 10}, {"name": "Fulvio Cecere", "character": "Ray Portnow", "id": 65808, "credit_id": "530f2015c3a36874af000a31", "cast_id": 19, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 11}, {"name": "Peter Bryant", "character": "Lt. Holloway", "id": 1224882, "credit_id": "530f2024c3a3687469000b5d", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Kim Coates", "character": "Officer Rosen", "id": 8335, "credit_id": "530f2034c3a3687491000ac3", "cast_id": 21, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 13}, {"name": "Hugh Dillon", "character": "Tony", "id": 67704, "credit_id": "530f2041c3a3687485000abb", "cast_id": 22, "profile_path": "/hwA4QTkxPGRf3pWWd4a9E08mWuR.jpg", "order": 14}, {"name": "Tig Fong", "character": "Danny Barbero", "id": 190917, "credit_id": "5399a34cc3a3681d0d001868", "cast_id": 33, "profile_path": "/6gRBRkmFqgX2Ek7ACmb1arpGmLv.jpg", "order": 15}, {"name": "Jessica Greco", "character": "Coral", "id": 87573, "credit_id": "5399a3a9c3a3681d1b0018b4", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Dorian Harewood", "character": "Gil", "id": 8656, "credit_id": "5399a3e8c3a3681d1b0018bf", "cast_id": 35, "profile_path": "/zZD1wReWRwa24HzBkwbMOcbpGS1.jpg", "order": 17}, {"name": "Arnold Pinnock", "character": "Carlyle", "id": 87575, "credit_id": "5399a417c3a3681cfd0017df", "cast_id": 36, "profile_path": "/gwS8LNLcDeeOOcrpJM7C6s66lav.jpg", "order": 18}, {"name": "Edward A. Queffelec", "character": "Bronco Gunman", "id": 1330118, "credit_id": "5399a480c3a3681d110018b6", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Sasha Roiz", "character": "Jason Elias", "id": 6071, "credit_id": "5494375dc3a3686ae100167b", "cast_id": 78, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 20}, {"name": "Ray Kahnert", "character": "Priest", "id": 1401312, "credit_id": "549437789251416e2200165e", "cast_id": 79, "profile_path": null, "order": 21}], "directors": [{"name": "Jean-Fran\u00e7ois Richet", "department": "Directing", "job": "Director", "credit_id": "52fe44cec3a36847f80aaf4f", "profile_path": null, "id": 58324}], "vote_average": 6.0, "runtime": 91}, "12914": {"poster_path": "/tk1jYOK6DRvBHAoHCueUVL3RSEe.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ba'al travels back in time and prevents the Stargate program from being started. SG-1 must somehow restore history.", "video": false, "id": 12914, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Stargate: Continuum", "tagline": "History may never repeat itself again.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fwVVh9o0WZsZNstpX3O55ff7Hs8.jpg", "poster_path": "/5TTU7voIo3t0IYzZTPQQAbawy6Y.jpg", "id": 44215, "name": "Stargate SG-1 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0929629", "adult": false, "backdrop_path": "/iA5RfBnIzzpvwDPy5LHPrUKRl71.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Acme Shark", "id": 19241}], "release_date": "2008-07-29", "popularity": 0.175956054227746, "original_title": "Stargate: Continuum", "budget": 7000000, "cast": [{"name": "Ben Browder", "character": "Colonel Cameron Mitchell", "id": 26048, "credit_id": "52fe452c9251416c7504e10f", "cast_id": 1, "profile_path": "/uUFV9hqLUDwT0qsXGqx2KUzfVbO.jpg", "order": 0}, {"name": "Amanda Tapping", "character": "Colonel Samantha Carter", "id": 26087, "credit_id": "52fe452c9251416c7504e113", "cast_id": 3, "profile_path": "/a7rzcdtLEeNZ4MLLVkoPz2pufte.jpg", "order": 1}, {"name": "Christopher Judge", "character": "Teal'c", "id": 26088, "credit_id": "52fe452c9251416c7504e117", "cast_id": 4, "profile_path": "/5ZS5BJwSRLXxujP1eUeX8tJRscF.jpg", "order": 2}, {"name": "Michael Shanks", "character": "Dr. Daniel Jackson", "id": 26086, "credit_id": "52fe452c9251416c7504e11b", "cast_id": 5, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 3}, {"name": "Claudia Black", "character": "Vala Mal Doran", "id": 26054, "credit_id": "52fe452c9251416c7504e11f", "cast_id": 6, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 4}, {"name": "Beau Bridges", "character": "Major General Hank Landry", "id": 2222, "credit_id": "52fe452c9251416c7504e129", "cast_id": 9, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 5}, {"name": "Richard Dean Anderson", "character": "Major General Jack O'Neill", "id": 26085, "credit_id": "52fe452c9251416c7504e12d", "cast_id": 10, "profile_path": "/6BDsJWDSgb04ZHCXGHs1bgLsuEW.jpg", "order": 6}, {"name": "Cliff Simon", "character": "Ba'al", "id": 111378, "credit_id": "52fe452c9251416c7504e131", "cast_id": 11, "profile_path": "/nyG5XfZqH8HS6a3t9FgqtPtBRfF.jpg", "order": 7}, {"name": "Don S. Davis", "character": "Lieutenant General George Hammond", "id": 15863, "credit_id": "52fe452c9251416c7504e135", "cast_id": 12, "profile_path": "/w93ia4AoKKyRhgX2gzcW9IFJ3Xv.jpg", "order": 8}, {"name": "William Devane", "character": "President Henry Hayes", "id": 21416, "credit_id": "52fe452c9251416c7504e139", "cast_id": 13, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 9}, {"name": "Steve Bacic", "character": "Camulus", "id": 33355, "credit_id": "52fe452c9251416c7504e13d", "cast_id": 14, "profile_path": "/pQEALNHNqEs1je9rFCA59kif3Rz.jpg", "order": 10}, {"name": "Gary Jones", "character": "Chief Mst Sgt. Walter Harriman", "id": 5494, "credit_id": "52fe452c9251416c7504e141", "cast_id": 15, "profile_path": "/f9Y1MNXZyaPLoWNxhuIiVlUpTtu.jpg", "order": 11}, {"name": "Peter Williams", "character": "Apophis", "id": 12252, "credit_id": "52fe452c9251416c7504e145", "cast_id": 16, "profile_path": "/urZztHCeApsdgxeo4JZOcYODMjG.jpg", "order": 12}, {"name": "Jacqueline Samuda", "character": "Nirrti", "id": 111379, "credit_id": "52fe452c9251416c7504e149", "cast_id": 17, "profile_path": "/s87yoISVoESDrMlE9sxGigO9iGI.jpg", "order": 13}], "directors": [{"name": "Martin Wood", "department": "Directing", "job": "Director", "credit_id": "52fe452c9251416c7504e1af", "profile_path": "/i0MdTVEGNcotKeFhWgfPAVPaNA0.jpg", "id": 1214381}], "vote_average": 6.8, "runtime": 98}, "787": {"poster_path": "/dqs5BmwSULtB28Kls3IB6khTQwp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 478207520, "overview": "A bored married couple is surprised to learn that they are both assassins hired by competing agencies to kill each other.", "video": false, "id": 787, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mr. & Mrs. Smith", "tagline": "Smart and sexy.", "vote_count": 778, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0356910", "adult": false, "backdrop_path": "/n4GhKs24bQK2XsdlZ5bZFljzlsK.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Dutch Oven", "id": 489}, {"name": "New Regency Productions", "id": 490}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2005-06-09", "popularity": 2.07850416193022, "original_title": "Mr. & Mrs. Smith", "budget": 110000000, "cast": [{"name": "Angelina Jolie", "character": "Jane Smith", "id": 11701, "credit_id": "52fe4276c3a36847f80208c7", "cast_id": 19, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Brad Pitt", "character": "John Smith", "id": 287, "credit_id": "52fe4276c3a36847f80208cb", "cast_id": 20, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Eddie", "id": 4937, "credit_id": "52fe4276c3a36847f80208cf", "cast_id": 21, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Adam Brody", "character": "Benjamin Danz", "id": 11702, "credit_id": "52fe4276c3a36847f80208d3", "cast_id": 22, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "Kerry Washington", "character": "Jasmine", "id": 11703, "credit_id": "52fe4276c3a36847f80208d7", "cast_id": 23, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 4}, {"name": "Keith David", "character": "Father", "id": 65827, "credit_id": "52fe4276c3a36847f80208db", "cast_id": 24, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 5}, {"name": "Chris Weitz", "character": "Martin Coleman", "id": 3288, "credit_id": "52fe4276c3a36847f80208df", "cast_id": 25, "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "order": 6}, {"name": "Rachael Huntley", "character": "Suzy Coleman", "id": 11704, "credit_id": "52fe4276c3a36847f80208e3", "cast_id": 26, "profile_path": "/fFh7udNYzJXzFyFgd4CV3uC11qt.jpg", "order": 7}, {"name": "Michelle Monaghan", "character": "Gwen", "id": 11705, "credit_id": "52fe4276c3a36847f80208e7", "cast_id": 27, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 8}, {"name": "Stephanie March", "character": "Julie - Associate #1", "id": 59156, "credit_id": "53d80ee6c3a3682c3d000907", "cast_id": 29, "profile_path": "/cHEnLAOfLW0sMQ83mdmlZXzuvnj.jpg", "order": 9}, {"name": "Jennifer Morrison", "character": "Jade - Associate #2", "id": 41421, "credit_id": "52fe4276c3a36847f80208eb", "cast_id": 28, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 10}, {"name": "Theresa Barrera", "character": "Janet - Associate #3", "id": 1347627, "credit_id": "53d80f1bc3a3682c2e000931", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Perrey Reeves", "character": "Jessie - Associate #4", "id": 68495, "credit_id": "53d80f44c3a3682c3d000952", "cast_id": 31, "profile_path": "/fcuYaaYrCjItQzOGzCpL7PDbmSB.jpg", "order": 12}, {"name": "Melanie Tolbert", "character": "Jamie - Associate #5", "id": 1347628, "credit_id": "53d80f67c3a3682c3200099e", "cast_id": 32, "profile_path": null, "order": 13}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe4276c3a36847f802085d", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 6.4, "runtime": 120}, "37495": {"poster_path": "/9H4bGLi0zJOj2gOFUEGaKA1jaIK.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 4270000, "overview": "Four Lions tells the story of a group of British jihadists who push their abstract dreams of glory to the breaking point. As the wheels fly off, and their competing ideologies clash, what emerges is an emotionally engaging (and entirely plausible) farce. In a storm of razor-sharp verbal jousting and large-scale set pieces, Four Lions is a comic tour de force; it shows that-while terrorism is about ideology-it can also be about idiots.", "video": false, "id": 37495, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Four Lions", "tagline": "We are 4 Lions.", "vote_count": 114, "homepage": "http://www.four-lions.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1341167", "adult": false, "backdrop_path": "/mJkhUOqFSYPtugNS8dfRpu0RyCY.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Warp Films", "id": 12180}, {"name": "Wild Bunch Distribution", "id": 15308}, {"name": "Drafthouse Films", "id": 10485}], "release_date": "2010-05-07", "popularity": 0.797901112744067, "original_title": "Four Lions", "budget": 967686, "cast": [{"name": "Riz Ahmed", "character": "Omar", "id": 53240, "credit_id": "52fe464e9251416c91050435", "cast_id": 5, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 0}, {"name": "Nigel Lindsay", "character": "Barry", "id": 6971, "credit_id": "52fe464e9251416c91050439", "cast_id": 7, "profile_path": "/upY5S0X5JkvWiCnsvtI7NRueJuF.jpg", "order": 1}, {"name": "Kayvan Novak", "character": "Waj", "id": 2959, "credit_id": "52fe464e9251416c91050431", "cast_id": 4, "profile_path": "/frOXuqWJXzFlcTQx2fuILD50ODE.jpg", "order": 2}, {"name": "Adeel Akhtar", "character": "Faisal", "id": 81840, "credit_id": "52fe464e9251416c91050441", "cast_id": 9, "profile_path": "/m5nctbJLv1N8uaUxP2aoFySISlC.jpg", "order": 3}, {"name": "Arsher Ali", "character": "Hassan", "id": 814200, "credit_id": "52fe464e9251416c91050445", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Preeya Kalidas", "character": "Sophia", "id": 117795, "credit_id": "52fe464e9251416c9105042d", "cast_id": 2, "profile_path": "/4toEBtcEY0lIKqEoliz5T0bEtMj.jpg", "order": 5}, {"name": "Benedict Cumberbatch", "character": "The Negotiator", "id": 71580, "credit_id": "52fe464e9251416c9105043d", "cast_id": 8, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 6}], "directors": [{"name": "Chris Morris", "department": "Directing", "job": "Director", "credit_id": "52fe464e9251416c91050429", "profile_path": "/wsOfuOHaNGENT1d9rGEinqbYXsW.jpg", "id": 117794}], "vote_average": 7.0, "runtime": 101}, "242310": {"poster_path": "/gV2QQqj0ub0OQOtAby4O5Y06zZt.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the Russian mob kidnaps the daughter of a reformed criminal, he rounds up his old crew and seeks his own brand of justice.", "video": false, "id": 242310, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rage", "tagline": "The past never stays dead", "vote_count": 113, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2401807", "adult": false, "backdrop_path": "/d7S5j0zxR4LFgBrBGKSRYFeEgw1.jpg", "production_companies": [{"name": "Vocal Yokels", "id": 24972}, {"name": "Hannibal Pictures", "id": 8692}, {"name": "Marco Polo Production", "id": 22347}, {"name": "Patriot Pictures", "id": 22348}], "release_date": "2014-05-09", "popularity": 1.24331479568524, "original_title": "Tokarev", "budget": 21000000, "cast": [{"name": "Nicolas Cage", "character": "Paul Maguire", "id": 2963, "credit_id": "52fe4ec9c3a36847f82a7da7", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Aubrey Peeples", "character": "Caitlin Maguire", "id": 1189982, "credit_id": "54cf84a99251415fb3006e5c", "cast_id": 51, "profile_path": "/iSHAtU1Q90Dnian3NYWaG3EY8Hc.jpg", "order": 1}, {"name": "Rachel Nichols", "character": "Vanessa", "id": 50347, "credit_id": "52fe4ec9c3a36847f82a7dab", "cast_id": 2, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 2}, {"name": "Peter Stormare", "character": "", "id": 53, "credit_id": "52fe4ec9c3a36847f82a7db3", "cast_id": 4, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 3}, {"name": "Danny Glover", "character": "Detective St. John", "id": 2047, "credit_id": "53628903c3a36815860000b4", "cast_id": 11, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 4}, {"name": "Max Ryan", "character": "Kane", "id": 21942, "credit_id": "5362890cc3a36815950000db", "cast_id": 12, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 5}, {"name": "Elena Sanchez", "character": "Lisa", "id": 1165616, "credit_id": "52fe4ec9c3a36847f82a7daf", "cast_id": 3, "profile_path": null, "order": 6}, {"name": "Weston Cage", "character": "Young Paul", "id": 1315801, "credit_id": "53628928c3a36815860000b7", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Max Fowler", "character": "Mike", "id": 1252873, "credit_id": "5362893cc3a36815860000bb", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Sarah Ann Schultz", "character": "Miss Russell", "id": 58793, "credit_id": "5362894ac3a368156f0000fb", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Michael McGrady", "character": "Danny Doherty", "id": 157015, "credit_id": "5362895bc3a368159f0000fd", "cast_id": 18, "profile_path": "/1BVROvpyydpWNTBvTvxK5akRVj5.jpg", "order": 11}, {"name": "Jack Falahee", "character": "", "id": 1286329, "credit_id": "53628964c3a368159f0000ff", "cast_id": 19, "profile_path": "/s1OFWbxXrVWZb9tcIeZekUie4ws.jpg", "order": 12}, {"name": "Judd Lormand", "character": "Mr. White", "id": 990136, "credit_id": "5362896cc3a36815680000c6", "cast_id": 20, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 13}, {"name": "Dawn Hamil", "character": "Amber", "id": 1315802, "credit_id": "53628980c3a36815860000be", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Tom Waite", "character": "Track Suit Russian", "id": 1338215, "credit_id": "53b960230e0a2676d3009726", "cast_id": 27, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 15}, {"name": "Pavel Lychnikoff", "character": "Chernov", "id": 52762, "credit_id": "54e8a46c9251412eb8001e4e", "cast_id": 52, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 16}], "directors": [{"name": "Paco Cabezas", "department": "Directing", "job": "Director", "credit_id": "52fe4ec9c3a36847f82a7db9", "profile_path": null, "id": 79279}], "vote_average": 5.4, "runtime": 98}, "119431": {"poster_path": "/8JJTib7QM8rE3j0cxWQzSbgFIJD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set against the backdrop of a UNSC military academy, a group of highborn cadets are training to be the next generation of soldiers in the UNSC\u2019s ongoing war with insurrectionists in the outer colonial planets. Among these cadets, Thomas Lasky struggles with his doubts about this war, and with the burden of expectations he may not be able to carry. As Lasky comes to terms with his potential as a military leader, the terrifying alien alliance known as the Covenant arrives and turns his world upside down. Inspired by the Master Chief, he must decide what it means to be a hero.", "video": false, "id": 119431, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Halo 4: Forward Unto Dawn", "tagline": "The story of Halo 4 begins at dawn.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2262308", "adult": false, "backdrop_path": "/oGrLYgUc3Cw3vUTg8fUC8uKC2XW.jpg", "production_companies": [{"name": "Microsoft", "id": 5133}], "release_date": "2012-10-05", "popularity": 0.796509950750477, "original_title": "Halo 4: Forward Unto Dawn", "budget": 8500000, "cast": [{"name": "Tom Green", "character": "Thomas Lasky", "id": 1086957, "credit_id": "52fe4bffc3a36847f821cafd", "cast_id": 6, "profile_path": "/4nyR8hdJEufHCESgVPM8ffqvE9N.jpg", "order": 0}, {"name": "Anna Popplewell", "character": "Chyler Silva", "id": 5529, "credit_id": "52fe4bffc3a36847f821cb01", "cast_id": 7, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 1}, {"name": "Iain Belcher", "character": "Vickers", "id": 1114366, "credit_id": "52fe4bffc3a36847f821caed", "cast_id": 2, "profile_path": "/6BgkS1ePt5d3j9q1HP9YuzFzFTh.jpg", "order": 2}, {"name": "Jenna Berman", "character": "Kelly-087", "id": 1114367, "credit_id": "52fe4bffc3a36847f821caf1", "cast_id": 3, "profile_path": "/2vQB0CCUEmIlTpsYYrPWhfVbToW.jpg", "order": 3}, {"name": "Enisha Brewster", "character": "April Orenski", "id": 1114368, "credit_id": "52fe4bffc3a36847f821caf5", "cast_id": 4, "profile_path": "/iz1xZgcmoAaA9YsFv1LqTVciCRk.jpg", "order": 4}, {"name": "Max Carver", "character": "Cadmon Lasky", "id": 215843, "credit_id": "52fe4bffc3a36847f821caf9", "cast_id": 5, "profile_path": "/SekaTNwpi8fBfEJkCq2dtoKn6V.jpg", "order": 5}, {"name": "Ayelet Zurer", "character": "Mehaffey", "id": 8786, "credit_id": "52fe4bffc3a36847f821cb05", "cast_id": 8, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 6}, {"name": "Masam Holden", "character": "Michael Sullivan", "id": 198855, "credit_id": "52fe4bffc3a36847f821cb09", "cast_id": 9, "profile_path": "/fCuceoMnHdXKeDgxvctunoGNE9P.jpg", "order": 7}, {"name": "Mike Dopud", "character": "General Black", "id": 64674, "credit_id": "52fe4bffc3a36847f821cb0d", "cast_id": 10, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 8}, {"name": "Osric Chau", "character": "Junjie Chen", "id": 101016, "credit_id": "52fe4bffc3a36847f821cb11", "cast_id": 11, "profile_path": "/v3y3W0Xelyy4ge87S1YfcmpXcgO.jpg", "order": 9}], "directors": [{"name": "Stewart Hendler", "department": "Directing", "job": "Director", "credit_id": "52fe4bffc3a36847f821cae9", "profile_path": "/fEtto46PxSZjRrAZnfZPB5wKY3f.jpg", "id": 130837}], "vote_average": 6.5, "runtime": 92}, "24418": {"poster_path": "/miuQFDDlj9t3ia9RQqfkjGORZHQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28169671, "overview": "Darren Shan is a regular teenage kid. He and his friend Steve find out about a Freak Show coming to town and work hard at trying to find tickets. They do, and together they go to \"Cirque du Freak\" where they see many strange acts including a wolf-man and a bearded lady", "video": false, "id": 24418, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Cirque du Freak: The Vampire's Assistant", "tagline": "Meet Darren. He's sixteen going on immortal.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450405", "adult": false, "backdrop_path": "/mj9VCAmNHkd0E0Yft44UQy7FTLn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2009-10-23", "popularity": 0.984617388480241, "original_title": "Cirque du Freak: The Vampire's Assistant", "budget": 40000000, "cast": [{"name": "John C. Reilly", "character": "Larten Crepsley", "id": 4764, "credit_id": "52fe4494c3a368484e02ae95", "cast_id": 1, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Steve", "id": 27972, "credit_id": "52fe4494c3a368484e02ae99", "cast_id": 2, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Chris Massoglia", "character": "Darren Shan", "id": 109441, "credit_id": "52fe4494c3a368484e02ae9d", "cast_id": 3, "profile_path": "/s7oTPrx9WFbbfEqho0Z1Yd3zHmx.jpg", "order": 2}, {"name": "Patrick Fugit", "character": "Evra the Snake Boy", "id": 11663, "credit_id": "52fe4494c3a368484e02aea1", "cast_id": 4, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Madame Truska", "id": 3136, "credit_id": "52fe4494c3a368484e02aea5", "cast_id": 5, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "Jessica Carlson", "character": "Rebecca", "id": 109867, "credit_id": "52fe4494c3a368484e02aeaf", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Michael Cerveris", "character": "Mr. Tiny", "id": 49827, "credit_id": "52fe4494c3a368484e02aeb3", "cast_id": 8, "profile_path": "/1cMSbaBloNvWYHLPRxeSHoHrj1U.jpg", "order": 6}, {"name": "Ray Stevenson", "character": "Murlaugh", "id": 56614, "credit_id": "52fe4494c3a368484e02aeb7", "cast_id": 9, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 7}, {"name": "Daniel Newman", "character": "Pete", "id": 8323, "credit_id": "52fe4494c3a368484e02aebb", "cast_id": 10, "profile_path": "/wjJB7aXCaEVpaVWWIYgKd20MxNa.jpg", "order": 8}, {"name": "Morgan Saylor", "character": "Annie", "id": 109868, "credit_id": "52fe4494c3a368484e02aebf", "cast_id": 11, "profile_path": "/ySqoJtBhQOsX1ntBWqnZhLyrC1E.jpg", "order": 9}, {"name": "Don McManus", "character": "Mr. Shan", "id": 79025, "credit_id": "52fe4494c3a368484e02aec3", "cast_id": 12, "profile_path": "/8JOjJkZBQmhVb6n8yHw70LIgC7i.jpg", "order": 10}, {"name": "Ken Watanabe", "character": "Mr. Tall", "id": 3899, "credit_id": "52fe4494c3a368484e02aec7", "cast_id": 14, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 12}, {"name": "Orlando Jones", "character": "Alexander Ribs", "id": 18270, "credit_id": "52fe4494c3a368484e02aecb", "cast_id": 15, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 13}, {"name": "Frankie Faison", "character": "Rhamus Twobellies", "id": 13936, "credit_id": "52fe4494c3a368484e02aecf", "cast_id": 16, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 14}, {"name": "Willem Dafoe", "character": "Gavner Purl", "id": 5293, "credit_id": "52fe4494c3a368484e02aed3", "cast_id": 17, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 15}, {"name": "Kristen Schaal", "character": "Gertha Teeth", "id": 109869, "credit_id": "52fe4494c3a368484e02aed7", "cast_id": 18, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 16}, {"name": "Patrick Breen", "character": "Mr. Kersey", "id": 15031, "credit_id": "52fe4494c3a368484e02aedb", "cast_id": 19, "profile_path": "/jMChbEq3GODrIoz1Jl4rlPGonY6.jpg", "order": 17}, {"name": "Tom Woodruff Jr.", "character": "Wolfman", "id": 109870, "credit_id": "52fe4494c3a368484e02aedf", "cast_id": 20, "profile_path": null, "order": 18}, {"name": "Jane Krakowski", "character": "Corma Limbs", "id": 13636, "credit_id": "52fe4494c3a368484e02aee3", "cast_id": 21, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 19}, {"name": "Drew Rin Varick", "character": "Loaf Head", "id": 109871, "credit_id": "52fe4494c3a368484e02aee7", "cast_id": 22, "profile_path": null, "order": 20}, {"name": "Colleen Camp", "character": "Mrs. Shan", "id": 13023, "credit_id": "52fe4494c3a368484e02aefd", "cast_id": 26, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 21}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a368484e02aeab", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 5.6, "runtime": 109}, "119450": {"poster_path": "/aJemoN7F9GrAYjIL94KXww3QWP9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 708200000, "overview": "A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.", "video": false, "id": 119450, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dawn of the Planet of the Apes", "tagline": "One last chance for peace.", "vote_count": 1343, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mepJpyqVtD6P65vgCU1ngGFEjs5.jpg", "poster_path": "/qQrEMycfVN2gRlKTLWGn0QdOnSk.jpg", "id": 173710, "name": "Planet of the Apes (Reboot) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103281", "adult": false, "backdrop_path": "/rjUl3pd1LHVOVfG4IGcyA1cId5l.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Ingenious Media", "id": 290}], "release_date": "2014-07-11", "popularity": 5.52897285186238, "original_title": "Dawn of the Planet of the Apes", "budget": 170000000, "cast": [{"name": "Andy Serkis", "character": "Caesar", "id": 1333, "credit_id": "52fe4c01c3a36847f821cf15", "cast_id": 8, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 0}, {"name": "Jason Clarke", "character": "Malcolm", "id": 76512, "credit_id": "52fe4c01c3a36847f821cf35", "cast_id": 19, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 1}, {"name": "Toby Kebbell", "character": "Koba", "id": 20286, "credit_id": "53c43f8b0e0a26157f00d766", "cast_id": 27, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 2}, {"name": "Keri Russell", "character": "Ellie", "id": 41292, "credit_id": "52fe4c01c3a36847f821cf31", "cast_id": 18, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 3}, {"name": "Judy Greer", "character": "Cornelia", "id": 20750, "credit_id": "52fe4c01c3a36847f821cf1f", "cast_id": 13, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 4}, {"name": "Gary Oldman", "character": "Dreyfus", "id": 64, "credit_id": "52fe4c01c3a36847f821cf2d", "cast_id": 17, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 5}, {"name": "Kodi Smit-McPhee", "character": "Alexander", "id": 113505, "credit_id": "52fe4c01c3a36847f821cf39", "cast_id": 20, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 6}, {"name": "Terry Notary", "character": "Rocket", "id": 236696, "credit_id": "52fe4c01c3a36847f821cf23", "cast_id": 14, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 7}, {"name": "Karin Konoval", "character": "Maurice", "id": 58395, "credit_id": "52fe4c01c3a36847f821cf3d", "cast_id": 21, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 8}, {"name": "Kirk Acevedo", "character": "Carver", "id": 55861, "credit_id": "52fe4c01c3a36847f821cf41", "cast_id": 22, "profile_path": "/9CTkCXyKQrHTFZWFN3JtDM2mF0U.jpg", "order": 9}, {"name": "Richard King", "character": "Stoned", "id": 1172813, "credit_id": "52fe4c01c3a36847f821cf45", "cast_id": 23, "profile_path": "/jEbtlctGKCk1PwJ7Az8MZCyWZKg.jpg", "order": 10}, {"name": "Lucky Johnson", "character": "Rationer", "id": 1172814, "credit_id": "52fe4c01c3a36847f821cf49", "cast_id": 24, "profile_path": "/3LSBn12OMYVWbeE09OGBImUJXAn.jpg", "order": 11}, {"name": "Jocko Sims", "character": "Werner", "id": 107939, "credit_id": "52fe4c01c3a36847f821cf53", "cast_id": 26, "profile_path": "/14jDiruPZn8euVRYt0D3pjqTF6C.jpg", "order": 12}, {"name": "Nick Thurston", "character": "Blue Eyes", "id": 557930, "credit_id": "53d5606a0e0a2628470046cb", "cast_id": 28, "profile_path": "/fGgBHfc0nyGnqFSxJpGF8aqPBKG.jpg", "order": 13}, {"name": "Jon Eyez", "character": "Foster", "id": 231857, "credit_id": "53d560da0e0a2628410046a1", "cast_id": 29, "profile_path": "/1v11aZ5TmwtORs10OcU4wzhX2NW.jpg", "order": 14}, {"name": "Enrique Murciano", "character": "Kemp", "id": 12798, "credit_id": "547dcc97c3a3685afd005a91", "cast_id": 78, "profile_path": "/nC37xKp4UdGylXFSJv94eQNTtja.jpg", "order": 15}, {"name": "Larramie Doc Shaw", "character": "Ash", "id": 576041, "credit_id": "547dceeec3a3685aed006232", "cast_id": 79, "profile_path": "/d0ccSQsbOfhgVXfW46RFPEq0tvY.jpg", "order": 16}, {"name": "Lee Ross", "character": "Grey", "id": 93177, "credit_id": "547dd0e3c3a3685afd005b23", "cast_id": 80, "profile_path": "/lMOJz7ZSs4iOWYON0NdKlVuWvlo.jpg", "order": 17}, {"name": "Keir O'Donnell", "character": "Finney", "id": 39213, "credit_id": "547dd1679251412d7f005933", "cast_id": 81, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 18}, {"name": "Kevin Rankin", "character": "McVeigh", "id": 114000, "credit_id": "547dd1e69251412d7c005c4d", "cast_id": 82, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 19}, {"name": "Al Vicente", "character": "Manone", "id": 156625, "credit_id": "547f1b1ec3a368396c001655", "cast_id": 83, "profile_path": "/avW8xzMK0ezRiBkxwWgRvj2Tyov.jpg", "order": 20}, {"name": "Matthew James", "character": "Man 2", "id": 1130809, "credit_id": "547f1e0c92514124b600167a", "cast_id": 84, "profile_path": "/pcg0a9NujGhUMdr5kGLAIgTk9gI.jpg", "order": 21}, {"name": "Scott Lang", "character": "Luca", "id": 1393532, "credit_id": "547f265f92514124b6001760", "cast_id": 85, "profile_path": "/3qWmh3uV2rG9Umn2J4Gc8TYjYVA.jpg", "order": 22}, {"name": "Deneen Tyler", "character": "Woman", "id": 29933, "credit_id": "547f28cb92514124b9001617", "cast_id": 86, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 23}, {"name": "Mustafa Harris", "character": "Officer", "id": 1273239, "credit_id": "547f2a9892514124af00156b", "cast_id": 87, "profile_path": "/e0moNlfMRCJkdzU3nfblnWxd2vC.jpg", "order": 24}, {"name": "Lombardo Boyar", "character": "Terry", "id": 4992, "credit_id": "547f2b00c3a368395c0019e3", "cast_id": 88, "profile_path": "/ygctSZGBRkmwARihr8F1Bb7PkIP.jpg", "order": 25}, {"name": "Mike Seal", "character": "Driver", "id": 1123871, "credit_id": "547f2fa2c3a36839610013ae", "cast_id": 89, "profile_path": "/1vikAAQB3xx4olisIu4JptQzFDV.jpg", "order": 26}, {"name": "J.D. Evermore", "character": "Sniper", "id": 129868, "credit_id": "547f314dc3a368396c0018d5", "cast_id": 90, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 27}, {"name": "Chase Boltin", "character": "Recruit", "id": 1388316, "credit_id": "547f337bc3a368396c001906", "cast_id": 91, "profile_path": "/hivW1O7WGNeX70eCnqnOkKbv3WN.jpg", "order": 28}, {"name": "Michael Papajohn", "character": "Cannon-Gunner", "id": 20582, "credit_id": "547f385d92514124aa001966", "cast_id": 92, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 29}, {"name": "Thomas Rosales, Jr.", "character": "Old Man", "id": 43010, "credit_id": "547f3a1692514124b3001817", "cast_id": 93, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 30}, {"name": "Carol Sutton", "character": "Old Woman", "id": 60877, "credit_id": "547f3d3192514124b3001877", "cast_id": 94, "profile_path": "/dIzENUx3Exb0RNb7xC6ZYiYwbvx.jpg", "order": 31}, {"name": "Christopher Berry", "character": "Gun-Clinching Man", "id": 1173099, "credit_id": "547f3e8192514124bb00196e", "cast_id": 95, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 32}], "directors": [{"name": "Matt Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe4c01c3a36847f821cf1b", "profile_path": "/4SPhLx107Y7m0tvzlLpCquxFxE8.jpg", "id": 32278}], "vote_average": 7.6, "runtime": 130}, "4771": {"poster_path": "/dXXMPxGiRegd7NNCtE5uchAKRAG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34209788, "overview": "Two Boston area detectives investigate a little girl's kidnapping, which ultimately turns into a crisis both professionally and personally. Based on the Dennis Lehane novel.", "video": false, "id": 4771, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Gone Baby Gone", "tagline": "Hope begins where the secrets end.", "vote_count": 195, "homepage": "http://www.miramax.com/movie/gone-baby-gone", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452623", "adult": false, "backdrop_path": "/pxvtoQX43ZaRTq1Mqyt3uRAOXSN.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "LivePlanet", "id": 7161}, {"name": "Ladd Company, The", "id": 23193}], "release_date": "2007-10-19", "popularity": 0.763327232818561, "original_title": "Gone Baby Gone", "budget": 19000000, "cast": [{"name": "Casey Affleck", "character": "Patrick Kenzie", "id": 1893, "credit_id": "52fe43d8c3a36847f8073c1f", "cast_id": 11, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Angie Gennaro", "id": 11705, "credit_id": "52fe43d8c3a36847f8073c23", "cast_id": 12, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Jack Doyle", "id": 192, "credit_id": "52fe43d8c3a36847f8073c27", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Ed Harris", "character": "Remy Bressant", "id": 228, "credit_id": "52fe43d8c3a36847f8073c2b", "cast_id": 14, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "John Ashton", "character": "Nick Poole", "id": 778, "credit_id": "52fe43d8c3a36847f8073c2f", "cast_id": 15, "profile_path": "/omfIdOt1F8LDkb7AMZTtLDiyJ3O.jpg", "order": 4}, {"name": "Amy Ryan", "character": "Helene McCready", "id": 39388, "credit_id": "52fe43d8c3a36847f8073c33", "cast_id": 16, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 5}, {"name": "Amy Madigan", "character": "Beatrice McCready", "id": 23882, "credit_id": "52fe43d8c3a36847f8073c37", "cast_id": 17, "profile_path": "/pNdNJPKRdl3veCRH8fZv3H76ywJ.jpg", "order": 6}, {"name": "Titus Welliver", "character": "Lionel McCready", "id": 39389, "credit_id": "52fe43d8c3a36847f8073c3b", "cast_id": 18, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 7}, {"name": "Michael Kenneth Williams", "character": "Devin", "id": 39390, "credit_id": "52fe43d8c3a36847f8073c3f", "cast_id": 19, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 8}, {"name": "Edi Gathegi", "character": "Cheese", "id": 39391, "credit_id": "52fe43d8c3a36847f8073c43", "cast_id": 20, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 9}, {"name": "Mark Margolis", "character": "Leon Trett", "id": 1173, "credit_id": "52fe43d8c3a36847f8073c47", "cast_id": 21, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 10}, {"name": "Madeline O'Brien", "character": "Amanda McCready", "id": 86233, "credit_id": "52fe43d8c3a36847f8073c4b", "cast_id": 22, "profile_path": "/wQlPyN7OSM6UPm2xYBXlCiFXQVx.jpg", "order": 11}, {"name": "Slaine (George Carroll)", "character": "Bubba", "id": 133067, "credit_id": "52fe43d8c3a36847f8073c4f", "cast_id": 23, "profile_path": "/wq0FQBzfiFfEXfjaGm3FE43IuTJ.jpg", "order": 12}, {"name": "Trudi Goodman", "character": "Roberta Trett", "id": 1277520, "credit_id": "52fe43d8c3a36847f8073c53", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Matthew Maher", "character": "Corwin Earle", "id": 1232599, "credit_id": "52fe43d8c3a36847f8073c57", "cast_id": 25, "profile_path": "/22q6AafRKJ7EpuFpcp0A7mwMh9L.jpg", "order": 14}], "directors": [{"name": "Ben Affleck", "department": "Directing", "job": "Director", "credit_id": "52fe43d8c3a36847f8073be5", "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "id": 880}], "vote_average": 6.9, "runtime": 114}, "75174": {"poster_path": "/bwN4x9RTLtDUDvaOWg4yvOBU38I.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77300000, "overview": "In Alaska, an oil drilling team struggle to survive after a plane crash strands them in the wild. Hunting the humans are a pack of wolves who see them as intruders.", "video": false, "id": 75174, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Grey", "tagline": "Live or Die on This Day", "vote_count": 433, "homepage": "http://www.thegreythemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1601913", "adult": false, "backdrop_path": "/888jtZz0mWfANiml4Pfe9567o3X.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Scott Free Productions", "id": 1645}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "LD Entertainment", "id": 10285}, {"name": "Inferno Distribution", "id": 11278}, {"name": "Chambara Pictures", "id": 12234}], "release_date": "2011-12-11", "popularity": 1.25181722154203, "original_title": "The Grey", "budget": 34000000, "cast": [{"name": "Liam Neeson", "character": "John Ottway", "id": 3896, "credit_id": "52fe48f3c3a368484e1132c3", "cast_id": 4, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Dermot Mulroney", "character": "Jerome Talget", "id": 20212, "credit_id": "52fe48f3c3a368484e1132c7", "cast_id": 5, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 1}, {"name": "Frank Grillo", "character": "John Diaz", "id": 81685, "credit_id": "52fe48f3c3a368484e1132cf", "cast_id": 7, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 2}, {"name": "Dallas Roberts", "character": "Pete Hendrick", "id": 424, "credit_id": "52fe48f3c3a368484e1132db", "cast_id": 10, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 3}, {"name": "Joe Anderson", "character": "Todd Flannery", "id": 29234, "credit_id": "52fe48f3c3a368484e1132d3", "cast_id": 8, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 4}, {"name": "Nonso Anozie", "character": "Jackson Burke", "id": 43547, "credit_id": "52fe48f3c3a368484e1132d7", "cast_id": 9, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 5}, {"name": "James Badge Dale", "character": "Luke Lewenden", "id": 18473, "credit_id": "52fe48f3c3a368484e1132cb", "cast_id": 6, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 6}, {"name": "Ben Bray", "character": "Hernandez (as Ben Hernandez Bray)", "id": 59674, "credit_id": "52fe48f3c3a368484e1132df", "cast_id": 11, "profile_path": "/hBty1r73HUkvB30hFgrCxY2llcs.jpg", "order": 7}, {"name": "Larissa Stadnichuk", "character": "Flight Attendant #1", "id": 574091, "credit_id": "52fe48f3c3a368484e1132e3", "cast_id": 12, "profile_path": "/or4JupWxnaYCgdaQFhV5eZNheKA.jpg", "order": 8}, {"name": "James Bitonti", "character": "Ottway's Father", "id": 574092, "credit_id": "52fe48f3c3a368484e1132e7", "cast_id": 13, "profile_path": "/aJAL4LddcKQR61i0Fiy9cWsN038.jpg", "order": 9}, {"name": "Jonathan Bitonti", "character": "Young Ottway", "id": 574093, "credit_id": "52fe48f3c3a368484e1132eb", "cast_id": 14, "profile_path": "/f05keaD2OG84hU6pUuGUevCTl3x.jpg", "order": 10}, {"name": "Anne Openshaw", "character": "Ottway's Wife", "id": 55569, "credit_id": "52fe48f3c3a368484e1132fb", "cast_id": 17, "profile_path": "/8gxlZqKqS4zLHh5xJhKFHmOCCt0.jpg", "order": 11}, {"name": "Peter Girges", "character": "Company Clerk", "id": 935295, "credit_id": "52fe48f3c3a368484e1132ff", "cast_id": 18, "profile_path": "/e3dtf9A9QlJZldiI2BNjrVFb1Jr.jpg", "order": 12}, {"name": "Ella Kosor", "character": "Talget's Little Girl", "id": 935297, "credit_id": "52fe48f3c3a368484e113303", "cast_id": 19, "profile_path": "/2KWHxm8u26noP679AZn3TV1Q33P.jpg", "order": 13}, {"name": "Jacob Blair", "character": "Cimoski", "id": 208069, "credit_id": "52fe48f3c3a368484e113307", "cast_id": 20, "profile_path": "/8QbiqwUFim60IBZ2p22WoEs2e1w.jpg", "order": 14}, {"name": "Lani Gelera", "character": "Flight Attendant", "id": 935299, "credit_id": "52fe48f3c3a368484e11330b", "cast_id": 21, "profile_path": "/nAvSd8va12rGWRZIevY7IdmPZJ6.jpg", "order": 15}], "directors": [{"name": "Joe Carnahan", "department": "Directing", "job": "Director", "credit_id": "52fe48f3c3a368484e1132f1", "profile_path": "/5YPrZ1JprLwtU4tn5DG0wqLjsAT.jpg", "id": 40223}], "vote_average": 6.2, "runtime": 117}, "49948": {"poster_path": "/8fYKd6CduwmJwH6pBdcU06qF3Ka.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90874570, "overview": "An update of the original film with new interpretations of great works of classical music.", "video": false, "id": 49948, "genres": [{"id": 16, "name": "Animation"}], "title": "Fantasia 2000", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7YanwpylLB3yzhwzf11W1tYpcQF.jpg", "poster_path": "/ldzKpOvGVl8NWQPdAYJEZpAvPIo.jpg", "id": 55427, "name": "Fantasia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120910", "adult": false, "backdrop_path": "/gPvP0y0wGUAmHphtIJC2UfGuT3S.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Richard Purdum Productions", "id": 8287}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1999-12-31", "popularity": 0.650668792189654, "original_title": "Fantasia 2000", "budget": 80000000, "cast": [{"name": "Steve Martin", "character": "Introductory Host", "id": 67773, "credit_id": "52fe47b1c3a36847f814324f", "cast_id": 3, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Quincy Jones", "character": "Host", "id": 13301, "credit_id": "52fe47b1c3a36847f8143253", "cast_id": 4, "profile_path": "/mV7hXHeUSXV7KZEfsxJ8lMrKpAt.jpg", "order": 1}, {"name": "Bette Midler", "character": "Hostess", "id": 73931, "credit_id": "52fe47b1c3a36847f8143257", "cast_id": 5, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 2}, {"name": "James Earl Jones", "character": "Host", "id": 15152, "credit_id": "52fe47b1c3a36847f814325b", "cast_id": 6, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 3}, {"name": "Penn Jillette", "character": "Host", "id": 37221, "credit_id": "52fe47b1c3a36847f814325f", "cast_id": 7, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 4}, {"name": "Leopold Stokowski", "character": "Conductor", "id": 233471, "credit_id": "547f68f2925141239800022b", "cast_id": 22, "profile_path": "/8flosda3lVaAyJF9rvhZDA0xTbf.jpg", "order": 5}, {"name": "Ralph Grierson", "character": "Pianist", "id": 1298629, "credit_id": "547f6906925141239200025a", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Kathleen Battle", "character": "Featured Soprano", "id": 1140257, "credit_id": "547f6919c3a3683d97000209", "cast_id": 24, "profile_path": "/43f7kVjH24tlU9W2n1JcET6D15K.jpg", "order": 7}, {"name": "Itzhak Perlman", "character": "Host", "id": 166002, "credit_id": "547f6942925141239b00026d", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Itzhak Perlman", "character": "Host", "id": 166002, "credit_id": "547f69a9c3a3683d9d0002cf", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "James Levine", "character": "Host", "id": 148666, "credit_id": "547f69bb9251412392000276", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Angela Lansbury", "character": "Hostess", "id": 14730, "credit_id": "547f69cd925141239b000280", "cast_id": 28, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 11}, {"name": "Wayne Allwine", "character": "Mickey Mouse", "id": 78076, "credit_id": "547f69e3c3a3683d94000247", "cast_id": 29, "profile_path": "/9Xpy0TLwW1L3pCMMULOIZqgFIzt.jpg", "order": 12}, {"name": "Tony Anselmo", "character": "Donald Duck", "id": 34478, "credit_id": "547f69f6c3a3683d8e0002c0", "cast_id": 30, "profile_path": "/rDlzKZBdszBsNU8ubiMbcMi5Vzb.jpg", "order": 13}, {"name": "Russi Taylor", "character": "Daisy Duck", "id": 6035, "credit_id": "547f6a07c3a3683d9400024b", "cast_id": 31, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 14}], "directors": [{"name": "Paul Brizzi", "department": "Directing", "job": "Director", "credit_id": "53fe4ea8c3a3684c7700163e", "profile_path": null, "id": 56147}, {"name": "Hendel Butoy", "department": "Directing", "job": "Director", "credit_id": "53fe4ebac3a3684c8300160e", "profile_path": null, "id": 74297}, {"name": "Francis Glebas", "department": "Directing", "job": "Director", "credit_id": "53fe4ecdc3a3684c8c001663", "profile_path": null, "id": 74298}, {"name": "Eric Goldberg", "department": "Directing", "job": "Director", "credit_id": "53fe4edac3a3684c8c001665", "profile_path": null, "id": 65531}, {"name": "Don Hahn", "department": "Directing", "job": "Director", "credit_id": "53fe4eeac3a3684c8000162e", "profile_path": "/aYdUzIkPlyo0ckyY7GDYCY028sQ.jpg", "id": 12824}, {"name": "Pixote Hunt", "department": "Directing", "job": "Director", "credit_id": "53fe4efcc3a3684c83001614", "profile_path": null, "id": 74299}, {"name": "James Algar", "department": "Directing", "job": "Director", "credit_id": "52fe47b1c3a36847f8143245", "profile_path": "/3dSa9LsutXEjnsEuZfuIWznQkkC.jpg", "id": 5690}, {"name": "Ga\u00ebtan Brizzi", "department": "Directing", "job": "Director", "credit_id": "52fe47b1c3a36847f814324b", "profile_path": null, "id": 56146}], "vote_average": 6.6, "runtime": 74}, "250538": {"poster_path": "/uTBubhbaq3wt4i3QYEwXc99Uk46.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young refugee of the Sudanese Civil War who wins a lottery for relocation to the United States with three other lost boys. Encountering the modern world for the first time, they develop an unlikely friendship with a brash American woman assigned to help them, but the young man struggles to adjust to this new life and his feelings of guilt about the brother he left behind.", "video": false, "id": 250538, "genres": [{"id": 18, "name": "Drama"}], "title": "The Good Lie", "tagline": "Miracles are made by people who refuse to stop believing.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2652092", "adult": false, "backdrop_path": "/6tn0uUz4HcfZ3Jc1JWClfY9Q23l.jpg", "production_companies": [{"name": "Blue Sky Films", "id": 33680}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Black Label Media", "id": 33681}], "release_date": "2014-09-10", "popularity": 1.22709530048946, "original_title": "The Good Lie", "budget": 0, "cast": [{"name": "Reese Witherspoon", "character": "Carrie Davis", "id": 368, "credit_id": "52fe4df69251416c91121eb3", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Corey Stoll", "character": "Jack", "id": 74541, "credit_id": "52fe4df69251416c91121eb7", "cast_id": 2, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 1}, {"name": "Thad Luckinbill", "character": "Matt", "id": 60076, "credit_id": "52fe4df69251416c91121ebb", "cast_id": 3, "profile_path": "/slnwMyaoNK6IY4LYjdNUHIEdm5Y.jpg", "order": 2}, {"name": "Sarah Baker", "character": "Pamela Lowi", "id": 461542, "credit_id": "52fe4df69251416c91121ebf", "cast_id": 4, "profile_path": "/A1mwwdupm77sGDHmpUA8dec6VGT.jpg", "order": 3}, {"name": "Maria Howell", "character": "INS Agent", "id": 80616, "credit_id": "52fe4df69251416c91121ec7", "cast_id": 6, "profile_path": "/slp3efuuvxwTFA65zmFAHVo96K9.jpg", "order": 5}, {"name": "Joshua Mikel", "character": "Dave", "id": 1046665, "credit_id": "52fe4df69251416c91121ecb", "cast_id": 7, "profile_path": "/4l85LEj6hELCa0ZiClDZU1NpUZL.jpg", "order": 6}, {"name": "Mike Pniewski", "character": "Nick Costas", "id": 65423, "credit_id": "52fe4df69251416c91121ecf", "cast_id": 8, "profile_path": "/6oJOSX84GXwuR9HA9RXTOeTeiKC.jpg", "order": 7}, {"name": "Arnold Oceng", "character": "Mamere", "id": 573737, "credit_id": "54ec9584c3a3686d5e0019f7", "cast_id": 11, "profile_path": "/3BiOauc1uBQpdaLrvUgbIMu0uiC.jpg", "order": 8}, {"name": "Ger Duany", "character": "Jeremiah", "id": 981717, "credit_id": "54ec973d9251417965001d32", "cast_id": 12, "profile_path": "/vFIDtvnX2bcqu7URkHRoBfrEaG5.jpg", "order": 9}, {"name": "Emmanuel Jal", "character": "Paul", "id": 226057, "credit_id": "54ec9a32c3a3686d58001b68", "cast_id": 13, "profile_path": "/7IeyCuZjGnM9WhvUVswE0z2nquU.jpg", "order": 10}, {"name": "Kuoth Wiel", "character": "Abital", "id": 1431167, "credit_id": "54ec9b339251417961001cb1", "cast_id": 14, "profile_path": "/4gGQXngG0WDOiVmWQPN6KmiO830.jpg", "order": 11}, {"name": "Femi Oguns", "character": "Theo", "id": 1431170, "credit_id": "54ec9c94c3a3680b80001d28", "cast_id": 15, "profile_path": "/qcZpLOf35NrLwvC8T6XGqpRdY82.jpg", "order": 12}, {"name": "Lindsey Garrett", "character": "Jenny", "id": 141960, "credit_id": "54ec9effc3a3686d56001cb5", "cast_id": 16, "profile_path": "/1Jg3cj9DloEwYkfMUm87tsG7SEQ.jpg", "order": 13}, {"name": "Peterdeng Mongok", "character": "Young Mamere", "id": 1431185, "credit_id": "54ec9f7dc3a3686d56001cd0", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Okwar Jale", "character": "Young Theo", "id": 1431199, "credit_id": "54ec9ff6925141796e001cec", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Thon Kueth", "character": "Young Jeremiah", "id": 1431203, "credit_id": "54eca04392514112d800198b", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Deng Ajuet", "character": "Young Paul", "id": 1431266, "credit_id": "54ecb2a79251417968001e90", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Keji Jale", "character": "Young Abital", "id": 1431267, "credit_id": "54ecb2eac3a3686d6d0020b6", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "David Madingi", "character": "Young Gabriel", "id": 1431268, "credit_id": "54ecb325c3a3680be6001c97", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Kon Akoue Auok", "character": "Young Daniel", "id": 1431269, "credit_id": "54ecb3559251417961001f30", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Sibusisu Moyo", "character": "Young Simon", "id": 1431270, "credit_id": "54ecb38b9251417971001ee4", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Antoine Wonder Kalambay", "character": "Boy (River of Children)", "id": 1431275, "credit_id": "54ecb444c3a3686d5e001cdf", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Elikana Jale", "character": "James", "id": 1431341, "credit_id": "54ece178c3a3686d5600246b", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Afemo Omilami", "character": "Dr. Monyang", "id": 37825, "credit_id": "54ece245c3a3686d5e0020ce", "cast_id": 27, "profile_path": "/bHluEOsKBKajFbk2cnxESo1nSCY.jpg", "order": 24}, {"name": "Michael H. Cole", "character": "Reverend Trutner", "id": 1158065, "credit_id": "54ece3b2925141797400242a", "cast_id": 28, "profile_path": "/rgm3UehF7DoajPOwnMXL0E8glvf.jpg", "order": 25}, {"name": "Brian Kurlander", "character": "Frank", "id": 1431351, "credit_id": "54ece4a19251417968002369", "cast_id": 29, "profile_path": "/8BSI4DXPVnhhjPoksGbtS45F26x.jpg", "order": 26}, {"name": "Jimi Kocina", "character": "Karl", "id": 1431358, "credit_id": "54ece70dc3a3680b80002528", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Vince Pisani", "character": "INS Boston", "id": 1431398, "credit_id": "54ed08c3c3a3680b8000287f", "cast_id": 31, "profile_path": "/goWgD4KoiHHVvGfnVwe3lgdgyex.jpg", "order": 28}, {"name": "Kimberly Banta", "character": "INS Kansas City", "id": 1431481, "credit_id": "54ed7efbc3a3686d66003e30", "cast_id": 32, "profile_path": "/nOThFjz1WZ4645TjUkOIFxCrbI4.jpg", "order": 29}, {"name": "Travis Smith", "character": "Roger", "id": 71896, "credit_id": "54ed811f9251417961003734", "cast_id": 33, "profile_path": "/vGpcIVptnLt2YnNm27mDyQcCG9V.jpg", "order": 30}, {"name": "Sharon Morris", "character": "Erin Sullivan", "id": 142374, "credit_id": "54ed82d19251417968003801", "cast_id": 34, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 31}, {"name": "Raj Kala", "character": "Man in English Class", "id": 1431483, "credit_id": "54ed84c1c3a3686d58003576", "cast_id": 35, "profile_path": "/iiHbFaAMncxu0azs6Jmuj0YFm3p.jpg", "order": 32}, {"name": "Parisa Johnston", "character": "Sari Woman in English Class", "id": 1382739, "credit_id": "54ed85c3925141796500384c", "cast_id": 36, "profile_path": "/8NoSH9fIhdJRxVe1gpRGY9oellt.jpg", "order": 33}, {"name": "Heather Lyda", "character": "Homeless Woman", "id": 1431484, "credit_id": "54ed8632c3a36869e5001034", "cast_id": 37, "profile_path": "/xbteKdW31LZseCRSECkFPufL7LW.jpg", "order": 34}, {"name": "Clifton Guterman", "character": "INS Clerk", "id": 995454, "credit_id": "54ed8a5dc3a3680b80003b03", "cast_id": 38, "profile_path": "/18PEE7XvONynpNewe4tv5VxotUx.jpg", "order": 35}, {"name": "Kenny Alfonso", "character": "Police Officer", "id": 1088939, "credit_id": "54ed8c05c3a368402d00126e", "cast_id": 39, "profile_path": "/eNWxCXO908YNdhFNQ3INyka5p4J.jpg", "order": 36}, {"name": "Victor McCay", "character": "Reed", "id": 155030, "credit_id": "54ed8cbdc3a3686d64004139", "cast_id": 40, "profile_path": "/cq6AxzkHCyNuxWoOKqiMc1HOB2u.jpg", "order": 37}, {"name": "Jacob Kuol Alier", "character": "Fargo Boy", "id": 1431487, "credit_id": "54ed8d69c3a3686d58003649", "cast_id": 41, "profile_path": null, "order": 38}, {"name": "Berglind Jonsdottir", "character": "Swedish Official", "id": 1431488, "credit_id": "54ed8ddf925141796e0037d0", "cast_id": 42, "profile_path": "/sfzYsFC6snB2dEym7eYeuMbclEH.jpg", "order": 39}, {"name": "Dhan Kueth", "character": "Majok", "id": 1431489, "credit_id": "54ed8eb6c3a3680b80003b88", "cast_id": 43, "profile_path": null, "order": 40}, {"name": "Israel Makoe", "character": "Bracelet Soldier", "id": 13108, "credit_id": "54ed8ff1c3a3686d5e0033d3", "cast_id": 44, "profile_path": "/9WfkEr4UGJbsER0LKEYrOmI8yM5.jpg", "order": 41}, {"name": "Keith Woulard", "character": "Soldier", "id": 92486, "credit_id": "54ed9271c3a3680b80003be6", "cast_id": 45, "profile_path": "/bfzcKkUzJOHROFrag8Lv9h0Oxev.jpg", "order": 42}, {"name": "John Prendergast", "character": "Toby", "id": 560784, "credit_id": "54ed97a49251417974003a9a", "cast_id": 46, "profile_path": "/aaFahvmEPvJsh8AHEHZJjWXC3NK.jpg", "order": 43}, {"name": "Tiffany Jones", "character": "Refugee Worker", "id": 1431495, "credit_id": "54ed9873c3a368402d001354", "cast_id": 47, "profile_path": null, "order": 44}, {"name": "Nathaniel Ramabulana", "character": "U.N. Worker", "id": 1073479, "credit_id": "54ed9a28c3a36869e5001232", "cast_id": 48, "profile_path": "/k9F7peDlkrNFudNEEGK8pptQTCd.jpg", "order": 45}, {"name": "Lavine Dimo", "character": "Guinea Worm Girl", "id": 1431499, "credit_id": "54ed9a49925141795f003af8", "cast_id": 49, "profile_path": null, "order": 46}, {"name": "Julia Ayiol", "character": "Village Mother", "id": 1431502, "credit_id": "54ed9b2892514179610039bc", "cast_id": 50, "profile_path": null, "order": 47}, {"name": "Sope Aluko", "character": "Processing Office Woman", "id": 1431508, "credit_id": "54ed9c4e9251417965003a7e", "cast_id": 51, "profile_path": "/tPWSMWE2PgT6NTbMo281JarKYkO.jpg", "order": 48}, {"name": "Suehyla El-Attar", "character": "Immigration Official", "id": 74135, "credit_id": "54ed9f5dc3a3680b80003d70", "cast_id": 52, "profile_path": "/63VcNEFznPQowxPZtNtGl2IjhpC.jpg", "order": 49}, {"name": "Abena Ayivor", "character": "Immigration Official #2", "id": 1386161, "credit_id": "54eda0b592514179710039cf", "cast_id": 53, "profile_path": "/4nfObcXxeST1bvy37UyyEpilb5S.jpg", "order": 50}, {"name": "Levi Burdick", "character": "INS Official", "id": 1431536, "credit_id": "54eda65cc3a3686d580038eb", "cast_id": 54, "profile_path": "/4IdoqBDKPof8S0Y7rQGMiCKocLv.jpg", "order": 51}, {"name": "Lele Ledwaba", "character": "Food Worker", "id": 1431538, "credit_id": "54eda836925141796e003a96", "cast_id": 55, "profile_path": null, "order": 52}, {"name": "Mari Malek", "character": "Party Guest", "id": 1431540, "credit_id": "54eda9d8925141796e003aea", "cast_id": 56, "profile_path": null, "order": 53}, {"name": "Flora Peter Deng", "character": "Abital's Mother", "id": 1431543, "credit_id": "54edaa17c3a3686d5e00367e", "cast_id": 57, "profile_path": null, "order": 54}], "directors": [{"name": "Philippe Falardeau", "department": "Directing", "job": "Director", "credit_id": "52fe4df69251416c91121ed5", "profile_path": null, "id": 81437}], "vote_average": 7.5, "runtime": 110}, "250546": {"poster_path": "/yAgxM61Sn0dYML4C9v3MJFp5zPI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 255273813, "overview": "John Form has found the perfect gift for his expectant wife, Mia - a beautiful, rare vintage doll in a pure white wedding dress. But Mia's delight with Annabelle doesn't last long. On one horrific night, their home is invaded by members of a satanic cult, who violently attack the couple. Spilled blood and terror are not all they leave behind. The cultists have conjured an entity so malevolent that nothing they did will compare to the sinister conduit to the damned that is now... Annabelle.", "video": false, "id": 250546, "genres": [{"id": 27, "name": "Horror"}], "title": "Annabelle", "tagline": "Before the Conjuring, there was Annabelle.", "vote_count": 348, "homepage": "http://annabellemovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 313086, "name": "The Conjuring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3322940", "adult": false, "backdrop_path": "/8pCFurneAWouGbBMEoBHqU1ejbb.jpg", "production_companies": [{"name": "The Safran Company", "id": 11565}, {"name": "New Line Cinema", "id": 12}, {"name": "Evergreen Media Group", "id": 31375}, {"name": "RatPac-Dune Entertainment", "id": 41624}], "release_date": "2014-10-03", "popularity": 1.94271888156779, "original_title": "Annabelle", "budget": 6500000, "cast": [{"name": "Annabelle Wallis", "character": "Mia", "id": 82809, "credit_id": "52fe4df69251416c91121ef7", "cast_id": 3, "profile_path": "/1RIgoAsxMEiNweqsMk91ysV8d50.jpg", "order": 0}, {"name": "Alfre Woodard", "character": "Evelyn", "id": 1981, "credit_id": "53e86612c3a368399500327d", "cast_id": 5, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 1}, {"name": "Eric Ladin", "character": "Detective Clarkin", "id": 188311, "credit_id": "53e8661ac3a36839910032ce", "cast_id": 6, "profile_path": "/jc6zPIMdG3cFaxcmlveKdJgnPzl.jpg", "order": 2}, {"name": "Tony Amendola", "character": "Father Perez", "id": 34842, "credit_id": "540226d60e0a2658e6005624", "cast_id": 7, "profile_path": "/wjft9mXp65SfSo2g3pnLxZUOEzG.jpg", "order": 3}, {"name": "Gabriel Bateman", "character": "Robert", "id": 1352028, "credit_id": "540226e00e0a2658e20056b5", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Michelle Romano", "character": "Mary", "id": 101069, "credit_id": "540226e90e0a2658e9005535", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Brian Howe", "character": "Pete Higgins", "id": 1990, "credit_id": "540226f20e0a2658f100539a", "cast_id": 10, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 6}, {"name": "Ward Horton", "character": "John Gordon", "id": 94436, "credit_id": "540226f80e0a2658f100539d", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Shiloh Nelson", "character": "Nancy", "id": 1358561, "credit_id": "540227020e0a2658e900553c", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Paige Diaz", "character": "Candy Striper", "id": 1266847, "credit_id": "5402270a0e0a2658f10053a0", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Morganna May", "character": "Debbie", "id": 1358562, "credit_id": "540227130e0a2658db00556a", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Tree O'Toole", "character": "Thin Woman; Annabelle", "id": 1358563, "credit_id": "5402271f0e0a2658e600562c", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Trampas Thompson", "character": "Thin Man", "id": 1358564, "credit_id": "540227290e0a2658ee005501", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Camden Singer", "character": "Clerk", "id": 1358565, "credit_id": "540227330e0a2658d80054a5", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Keira Daniels", "character": "Young Annabelle Higgins", "id": 1358566, "credit_id": "5402273e0e0a2658f10053a7", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Richard Allan Jones", "character": "Parishoner", "id": 1358567, "credit_id": "540227480e0a2658e20056cb", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Christopher Shaw", "character": "Fuller", "id": 206791, "credit_id": "540227500e0a2658de00570b", "cast_id": 20, "profile_path": null, "order": 16}], "directors": [{"name": "John R. Leonetti", "department": "Directing", "job": "Director", "credit_id": "52fe4df69251416c91121eed", "profile_path": "/7cKC9u81p5OL5loj2PzjepPcjFV.jpg", "id": 26714}], "vote_average": 6.0, "runtime": 99}, "129139": {"poster_path": "/wbixfcnb7xHnfNkf4oAab6gRyxF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3447339, "overview": "Feeling pressured to become more sexually experienced before she goes to college, Brandy Klark makes a list of things to accomplish before hitting campus in the fall.", "video": false, "id": 129139, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The To Do List", "tagline": "She's going from straight A's to getting her first F.", "vote_count": 108, "homepage": "http://todolistmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758795", "adult": false, "backdrop_path": "/mrxhYT4o5i0aSNIRPUEl19GqLjW.jpg", "production_companies": [{"name": "3 Arts Entertainment", "id": 787}, {"name": "The Mark Gordon Company", "id": 1557}], "release_date": "2013-07-26", "popularity": 0.810176219183251, "original_title": "The To Do List", "budget": 1500000, "cast": [{"name": "Aubrey Plaza", "character": "Brandy Klark", "id": 119592, "credit_id": "52fe4b35c3a368484e17d247", "cast_id": 2, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 0}, {"name": "Johnny Simmons", "character": "Cameron", "id": 27104, "credit_id": "52fe4b35c3a368484e17d273", "cast_id": 12, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 1}, {"name": "Bill Hader", "character": "Willy", "id": 19278, "credit_id": "52fe4b35c3a368484e17d26b", "cast_id": 10, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 2}, {"name": "Alia Shawkat", "character": "Fiona", "id": 61178, "credit_id": "52fe4b35c3a368484e17d253", "cast_id": 5, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 3}, {"name": "Sarah Steele", "character": "Wendy", "id": 25908, "credit_id": "52fe4b35c3a368484e17d283", "cast_id": 16, "profile_path": "/3ousg0fVS87CHLSoXRjhKtmJ8Wo.jpg", "order": 4}, {"name": "Scott Porter", "character": "Rusty", "id": 53368, "credit_id": "52fe4b35c3a368484e17d277", "cast_id": 13, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 5}, {"name": "Rachel Bilson", "character": "Amber", "id": 52783, "credit_id": "52fe4b35c3a368484e17d24b", "cast_id": 3, "profile_path": "/tb5sDcY2QR72oyJthVEn4xaLJ7J.jpg", "order": 6}, {"name": "Christopher Mintz-Plasse", "character": "Duffy", "id": 54691, "credit_id": "52fe4b35c3a368484e17d243", "cast_id": 1, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 7}, {"name": "Andy Samberg", "character": "Van", "id": 62861, "credit_id": "52fe4b35c3a368484e17d257", "cast_id": 6, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 8}, {"name": "Donald Glover", "character": "Derrick", "id": 119589, "credit_id": "52fe4b35c3a368484e17d26f", "cast_id": 11, "profile_path": "/dHQ9gpLg2fGUUHNy5zVQ4zNgcYC.jpg", "order": 9}, {"name": "Adam Pally", "character": "Chip", "id": 115974, "credit_id": "52fe4b35c3a368484e17d27f", "cast_id": 15, "profile_path": "/3BOKAOQRNY9UcZ6M3nQQsbPKbA1.jpg", "order": 10}, {"name": "Clark Gregg", "character": "Judge Clark", "id": 9048, "credit_id": "52fe4b35c3a368484e17d24f", "cast_id": 4, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 11}, {"name": "Connie Britton", "character": "Mrs. Clark", "id": 86310, "credit_id": "52fe4b35c3a368484e17d267", "cast_id": 9, "profile_path": "/dbX2i37hwEst6FeL0QH5QgZcsQ3.jpg", "order": 12}, {"name": "Nolan Gould", "character": "Max", "id": 147710, "credit_id": "52fe4b35c3a368484e17d27b", "cast_id": 14, "profile_path": "/xyritJRCjFRZBBua866EanS80st.jpg", "order": 13}, {"name": "Jack McBrayer", "character": "Hillcrest Pool Manager", "id": 58737, "credit_id": "52fe4b35c3a368484e17d2b1", "cast_id": 24, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 14}, {"name": "D.C. Pierson", "character": "Hillcrest Lifeguard #1", "id": 119590, "credit_id": "52fe4b35c3a368484e17d2b5", "cast_id": 25, "profile_path": "/alWQi61xarH9QqoondZDPjWOrwW.jpg", "order": 15}, {"name": "Dominic Dierkes", "character": "Hillcrest Lifeguard #2", "id": 119591, "credit_id": "52fe4b35c3a368484e17d2b9", "cast_id": 26, "profile_path": "/9AdHifs2rwii8VtIppJQPVeNrWH.jpg", "order": 16}, {"name": "Bryce Clyde Jenkins", "character": "Benji", "id": 1116893, "credit_id": "52fe4b35c3a368484e17d2bd", "cast_id": 27, "profile_path": "/8EoWYjDrMEQHj3YpBQtyDRToF8T.jpg", "order": 17}, {"name": "Kevin M. Brennan", "character": "Guitar Player (Van's Band)", "id": 1288335, "credit_id": "52fe4b35c3a368484e17d2c1", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Lauren Lapkus", "character": "Girl Heckler", "id": 591834, "credit_id": "52fe4b35c3a368484e17d2c5", "cast_id": 29, "profile_path": "/jVfj2ZsbIDOjjTXaQMMURrhLEHM.jpg", "order": 19}], "directors": [{"name": "Maggie Carey", "department": "Directing", "job": "Director", "credit_id": "52fe4b35c3a368484e17d25d", "profile_path": "/mqGv6J6870fI9umBRIBX2x2ZByy.jpg", "id": 1088647}], "vote_average": 5.5, "runtime": 104}, "152259": {"poster_path": "/rjwEcrZsmljiA0GUFcLJ4wZ2DhA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1034589, "overview": "The haunted Captain of a Soviet submarine holds the fate of the world in his hands. Forced to leave his family behind, he is charged with leading a covert mission cloaked in mystery.", "video": false, "id": 152259, "genres": [{"id": 53, "name": "Thriller"}], "title": "Phantom", "tagline": "You will never see it coming.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1922685", "adult": false, "backdrop_path": "/sIdrKGOnvJgVGClPysGwcEmHXG.jpg", "production_companies": [{"name": "Trilogy Entertainment Group", "id": 2231}, {"name": "RCR Media Group", "id": 17837}, {"name": "Solar Filmworks", "id": 22564}], "release_date": "2013-01-03", "popularity": 0.411110702136867, "original_title": "Phantom", "budget": 10000000, "cast": [{"name": "Ed Harris", "character": "Demi", "id": 228, "credit_id": "52fe4b1c9251416c910d0243", "cast_id": 3, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 0}, {"name": "David Duchovny", "character": "Bruni", "id": 12640, "credit_id": "52fe4b1c9251416c910d0247", "cast_id": 4, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 1}, {"name": "Lance Henriksen", "character": "Markov", "id": 2714, "credit_id": "52fe4b1c9251416c910d024b", "cast_id": 6, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 2}, {"name": "William Fichtner", "character": "Alex", "id": 886, "credit_id": "52fe4b1c9251416c910d024f", "cast_id": 7, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 3}, {"name": "Johnathon Schaech", "character": "Pavlov", "id": 51670, "credit_id": "52fe4b1c9251416c910d02d1", "cast_id": 29, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 4}, {"name": "Jason Beghe", "character": "Semak", "id": 37203, "credit_id": "52fe4b1c9251416c910d02d5", "cast_id": 30, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 5}, {"name": "Dagmara Domi\u0144czyk", "character": "Sophi", "id": 52776, "credit_id": "52fe4b1c9251416c910d02d9", "cast_id": 31, "profile_path": "/wQ15ftdMUkwt281XZYBhyHAci0z.jpg", "order": 6}, {"name": "Derek Magyar", "character": "Garin", "id": 78659, "credit_id": "52fe4b1c9251416c910d02dd", "cast_id": 32, "profile_path": "/tQWHicxK54CInpE40maS8F4NAOA.jpg", "order": 7}, {"name": "Sean Patrick Flanery", "character": "Tyrtov", "id": 54789, "credit_id": "52fe4b1c9251416c910d02e1", "cast_id": 33, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 8}, {"name": "Jason Gray-Stanford", "character": "Sasha", "id": 6166, "credit_id": "52fe4b1c9251416c910d02e5", "cast_id": 34, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 9}, {"name": "Julian Adams", "character": "Bavenod", "id": 585976, "credit_id": "52fe4b1c9251416c910d02e9", "cast_id": 35, "profile_path": "/8jmUSnsP2Diq40GdaDudlFBqoG2.jpg", "order": 10}, {"name": "Kevin Pardue", "character": "Yanis", "id": 65561, "credit_id": "52fe4b1c9251416c910d02ed", "cast_id": 36, "profile_path": "/wiJEegsHkvSxYjWrUri7xXn7xmy.jpg", "order": 11}, {"name": "Jacob Witkin", "character": "Priest", "id": 63210, "credit_id": "52fe4b1c9251416c910d02f1", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Matt Bushell", "character": "Sentry", "id": 57995, "credit_id": "52fe4b1c9251416c910d02f5", "cast_id": 38, "profile_path": "/cYq1abfNB0rcxfSdavEaH0gt3AM.jpg", "order": 13}, {"name": "Daren Flam", "character": "Stepan", "id": 1183407, "credit_id": "52fe4b1c9251416c910d02f9", "cast_id": 39, "profile_path": null, "order": 14}], "directors": [{"name": "Todd Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe4b1c9251416c910d0239", "profile_path": "/c87kKF56KvM4CPQ40oJQymtgkeO.jpg", "id": 16829}], "vote_average": 5.7, "runtime": 99}, "13483": {"poster_path": "/36PzzP5VBLkOvMJvyed4YQaVZXr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14373825, "overview": "In \"Awake,\" a psychological thriller that tells the story of a man undergoing heart surgery while experiencing a phenomenon called \"anesthetic awareness,\" which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.", "video": false, "id": 13483, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Awake", "tagline": "Every year, one in 700 people wake up during surgery.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0211933", "adult": false, "backdrop_path": "/lDGr5MEZjUP1s6rNLQIJAvZzBeN.jpg", "production_companies": [{"name": "GreeneStreet Films", "id": 2152}, {"name": "The Weinstein Company", "id": 308}, {"name": "Open City Films", "id": 547}], "release_date": "2007-11-28", "popularity": 0.712259514545392, "original_title": "Awake", "budget": 86000000, "cast": [{"name": "Hayden Christensen", "character": "Clay Beresford", "id": 17244, "credit_id": "52fe456f9251416c7505665f", "cast_id": 1, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sam Lockwood", "id": 56731, "credit_id": "52fe456f9251416c75056663", "cast_id": 2, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Terrence Howard", "character": "Dr. Jack Harper", "id": 18288, "credit_id": "52fe456f9251416c75056667", "cast_id": 3, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 2}, {"name": "Lena Olin", "character": "Lilith Beresford", "id": 5313, "credit_id": "52fe456f9251416c7505666b", "cast_id": 4, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 3}, {"name": "Charlie Hewson", "character": "Brian the Orderly", "id": 133046, "credit_id": "52fe456f9251416c75056675", "cast_id": 6, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Dr. Larry Lupin", "id": 4443, "credit_id": "5496c86392514130fc004b11", "cast_id": 53, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "Sam Robards", "character": "Clayton Beresford Sr.", "id": 8213, "credit_id": "5496c8a5c3a3686ae10067c6", "cast_id": 54, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 6}, {"name": "Arliss Howard", "character": "Dr. Jonathan Neyer", "id": 3229, "credit_id": "5496c8bf9251416e1e005a87", "cast_id": 55, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 7}, {"name": "Fisher Stevens", "character": "Dr. Puttnam", "id": 26473, "credit_id": "5496c8dbc3a3680fc6004260", "cast_id": 56, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 8}, {"name": "Georgina Chapman", "character": "Penny Carver", "id": 41547, "credit_id": "5496c8fa9251417a81003d3e", "cast_id": 57, "profile_path": "/nSdhtkVAJ2N0YWWviLS42mMktwC.jpg", "order": 9}, {"name": "David Harbour", "character": "Dracula", "id": 35029, "credit_id": "5496c9169251413f750045cd", "cast_id": 58, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 10}, {"name": "Court Young", "character": "Officer Doherty", "id": 93639, "credit_id": "5496c93892514132ed004595", "cast_id": 59, "profile_path": null, "order": 11}, {"name": "Poorna Jagannathan", "character": "Dr. Neyer's Nurse", "id": 428440, "credit_id": "5496c952c3a3686af30059be", "cast_id": 60, "profile_path": "/7RRxc28foQO3MGcVruU1rdLVrg8.jpg", "order": 12}], "directors": [{"name": "Joby Harold", "department": "Directing", "job": "Director", "credit_id": "52fe456f9251416c75056671", "profile_path": null, "id": 74569}], "vote_average": 6.2, "runtime": 84}, "4806": {"poster_path": "/5DN9BWdj45b9e31nWaLJceAGFR3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 309457509, "overview": "Ike Graham, New York columnist, writes his text always at the last minute. This time, a drunken man in his favourite bar tells Ike about Maggie Carpenter, a woman who always flees from her grooms in the last possible moment. Ike, who does not have the best opinion about females anyway, writes an offensive column without researching the subject thoroughly.", "video": false, "id": 4806, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Runaway Bride", "tagline": "Catch her if you can.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0163187", "adult": false, "backdrop_path": "/tcaJNtDbJCuFuOYo29KLtI68hRs.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Paramount Pictures", "id": 4}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Interscope Communications", "id": 10201}], "release_date": "1999-07-24", "popularity": 0.761874572975636, "original_title": "Runaway Bride", "budget": 70000000, "cast": [{"name": "Julia Roberts", "character": "Maggie Carpenter", "id": 1204, "credit_id": "52fe43dbc3a36847f8074451", "cast_id": 5, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Richard Gere", "character": "Ike Graham", "id": 1205, "credit_id": "52fe43dbc3a36847f8074455", "cast_id": 6, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Joan Cusack", "character": "Peggy Flemming", "id": 3234, "credit_id": "52fe43dbc3a36847f8074459", "cast_id": 7, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 2}, {"name": "Rita Wilson", "character": "Ellie Graham", "id": 12931, "credit_id": "52fe43dbc3a36847f807445d", "cast_id": 8, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 3}, {"name": "H\u00e9ctor Elizondo", "character": "Fisher", "id": 1210, "credit_id": "52fe43dbc3a36847f8074461", "cast_id": 9, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 4}, {"name": "Christopher Meloni", "character": "Coach Bob Kelly", "id": 22227, "credit_id": "52fe43dbc3a36847f8074465", "cast_id": 10, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 5}, {"name": "Paul Dooley", "character": "Walter Carpenter", "id": 15900, "credit_id": "52fe43dbc3a36847f8074469", "cast_id": 11, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 6}, {"name": "Donal Logue", "character": "Priest Brian Norris", "id": 10825, "credit_id": "52fe43dbc3a36847f807446d", "cast_id": 12, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 7}, {"name": "Sela Ward", "character": "Pretty Woman in Bar", "id": 6068, "credit_id": "52fe43dbc3a36847f8074471", "cast_id": 13, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 8}, {"name": "Sandra Taylor", "character": "Model Shelby", "id": 32291, "credit_id": "52fe43dbc3a36847f8074475", "cast_id": 14, "profile_path": "/2PO8r6s8IgfzWHc2ajfDgdp95JR.jpg", "order": 9}, {"name": "Tom Mason", "character": "Final Wedding Pastor", "id": 80874, "credit_id": "52fe43dbc3a36847f80744c1", "cast_id": 27, "profile_path": "/lWPITFNNJOoJprOoatAgfVRV9pH.jpg", "order": 10}, {"name": "Yul Vazquez", "character": "Dead Head Gill Chavez", "id": 75604, "credit_id": "52fe43dbc3a36847f80744c5", "cast_id": 28, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 11}, {"name": "Reg Rogers", "character": "George Swilling", "id": 129759, "credit_id": "53d0452c0e0a265ded00a577", "cast_id": 29, "profile_path": "/csGfqAuyX70FgMVZB3xzdA0tct.jpg", "order": 12}, {"name": "Jane Morris", "character": "Mrs. Pressman", "id": 13451, "credit_id": "53d045410e0a265e0100a1cd", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Jane Morris", "character": "", "id": 13451, "credit_id": "53d0455a0e0a265dfc00a209", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Jean Schertler", "character": "Grandma", "id": 1345474, "credit_id": "53d045820e0a265df300a5c1", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Laurie Metcalf", "character": "Betty Trout", "id": 12133, "credit_id": "53d0459e0e0a265dfa00a35b", "cast_id": 33, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 16}, {"name": "Larry Miller", "character": "Bartender", "id": 1211, "credit_id": "53d045c40e0a265df300a5c9", "cast_id": 34, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 17}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43dbc3a36847f807443b", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.6, "runtime": 116}, "801": {"poster_path": "/62Ve2yREvobU0qo4DxdSrShh1YO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123922370, "overview": "An unorthodox and irreverent DJ begins to shake up things when he is assigned to the US Armed Services Radio station in Vietnam.", "video": false, "id": 801, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Good Morning, Vietnam", "tagline": "Time to rock it from the Delta to the DMZ!", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093105", "adult": false, "backdrop_path": "/lnseq9bVaL6LLmuqWiJYiYmM8TO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners III", "id": 554}], "release_date": "1987-12-23", "popularity": 0.321418820986475, "original_title": "Good Morning, Vietnam", "budget": 13000000, "cast": [{"name": "Robin Williams", "character": "Adrian Cronauer", "id": 2157, "credit_id": "52fe4278c3a36847f802135f", "cast_id": 12, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Edward Montesque Garlick", "id": 2178, "credit_id": "52fe4278c3a36847f8021363", "cast_id": 13, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Tung Thanh Tran", "character": "Tuan", "id": 11960, "credit_id": "52fe4278c3a36847f8021367", "cast_id": 14, "profile_path": "/iUjrTN3w1QsK0yxan767fFYVWBd.jpg", "order": 2}, {"name": "Chintara Sukapatana", "character": "Trinh", "id": 11961, "credit_id": "52fe4278c3a36847f802136b", "cast_id": 15, "profile_path": "/7mSNoFl9ggYcJpAEWvnVLToRTxS.jpg", "order": 3}, {"name": "Bruno Kirby", "character": "Lt. Steven Hauk", "id": 9257, "credit_id": "52fe4278c3a36847f8021393", "cast_id": 27, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 4}, {"name": "Robert Wuhl", "character": "Marty Lee Dreiwitz", "id": 4040, "credit_id": "52fe4278c3a36847f802136f", "cast_id": 17, "profile_path": "/ibDgbYtVwOwTuClvFclLybMk24T.jpg", "order": 5}, {"name": "J. T. Walsh", "character": "Sgt. Major Dickerson", "id": 22131, "credit_id": "52fe4278c3a36847f8021373", "cast_id": 18, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 6}, {"name": "Noble Willingham", "character": "Gen. Taylor", "id": 31005, "credit_id": "52fe4278c3a36847f8021377", "cast_id": 19, "profile_path": "/stdQUjYtyjfuJRgA89DyzkZEyai.jpg", "order": 7}, {"name": "Richard Edson", "character": "Pvt. Abersold", "id": 6396, "credit_id": "52fe4278c3a36847f802137b", "cast_id": 20, "profile_path": "/7YegwxrBppretnwGEEMxEI453Ef.jpg", "order": 8}, {"name": "Juney Smith", "character": "Phil McPherson", "id": 14330, "credit_id": "52fe4278c3a36847f802137f", "cast_id": 21, "profile_path": "/ajDBZhChcwETIyCuCbbH3u39l4D.jpg", "order": 9}, {"name": "Richard Portnow", "character": "Dan 'The Man' Levitan", "id": 4255, "credit_id": "52fe4278c3a36847f8021383", "cast_id": 22, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 10}, {"name": "Cu Ba Nguyen", "character": "Jimmy Wah", "id": 184378, "credit_id": "52fe4278c3a36847f8021387", "cast_id": 24, "profile_path": "/cQLcopiPILekSISsqxgPkBVc9EU.jpg", "order": 11}, {"name": "Dan Stanton", "character": "Censor #1", "id": 16185, "credit_id": "52fe4278c3a36847f802138b", "cast_id": 25, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 12}, {"name": "Don Stanton", "character": "Censor #2", "id": 16184, "credit_id": "52fe4278c3a36847f802138f", "cast_id": 26, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 13}, {"name": "Floyd Vivino", "character": "Eddie Kirk", "id": 1218025, "credit_id": "52fe4278c3a36847f8021397", "cast_id": 28, "profile_path": "/gNwxA8RJud8bCi5ndmJuvypG2A0.jpg", "order": 14}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe4278c3a36847f802131f", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 6.8, "runtime": 121}, "4808": {"poster_path": "/cX9AcsNhPluJaQmgA30Ml3G8fpp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13474588, "overview": "Romance and suspense in Paris, as a woman is pursued by several men who want a fortune her murdered husband had stolen. Who can she trust?", "video": false, "id": 4808, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Charade", "tagline": "It's a guessing game of mirth and mystery!", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0056923", "adult": false, "backdrop_path": "/d2shJdJlReSI6hMn52XKYwM8X4s.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Stanley Donen Films", "id": 11404}], "release_date": "1963-12-05", "popularity": 0.74959036670415, "original_title": "Charade", "budget": 4000000, "cast": [{"name": "Cary Grant", "character": "Peter Joshua", "id": 2638, "credit_id": "52fe43dbc3a36847f80745c9", "cast_id": 9, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Audrey Hepburn", "character": "Regina Lampert", "id": 1932, "credit_id": "52fe43dbc3a36847f80745cd", "cast_id": 10, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 1}, {"name": "Walter Matthau", "character": "Hamilton Bartholemew", "id": 6837, "credit_id": "52fe43dbc3a36847f80745d1", "cast_id": 11, "profile_path": "/xJVkvprOnzP5Zdh5y63y8HHniDZ.jpg", "order": 2}, {"name": "James Coburn", "character": "Tex Panthollow", "id": 5563, "credit_id": "52fe43dbc3a36847f80745d5", "cast_id": 12, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 3}, {"name": "George Kennedy", "character": "Herman Scobie", "id": 12950, "credit_id": "52fe43dbc3a36847f80745d9", "cast_id": 13, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 4}, {"name": "Dominique Minot", "character": "Sylvie Gaudel", "id": 41714, "credit_id": "52fe43dbc3a36847f80745dd", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Ned Glass", "character": "Leopold Gideon", "id": 18870, "credit_id": "52fe43dbc3a36847f80745e1", "cast_id": 15, "profile_path": "/dwfC6rmH6JkaNxuYEgi2Yh55n4w.jpg", "order": 6}, {"name": "Jacques Marin", "character": "Insp. Edouard Grandpierre", "id": 26890, "credit_id": "52fe43dbc3a36847f80745e5", "cast_id": 16, "profile_path": "/vDHb0ktErwMAmdYzSW7o5rsfnZE.jpg", "order": 7}, {"name": "Paul Bonifas", "character": "Mr. Felix", "id": 41716, "credit_id": "52fe43dbc3a36847f80745e9", "cast_id": 17, "profile_path": "/1nwh4DDwzHVqu8h46XzeX5hGgYW.jpg", "order": 8}, {"name": "Thomas Chelimsky", "character": "Jean-Louis Gaudel", "id": 41717, "credit_id": "52fe43dbc3a36847f80745ed", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "Stanley Donen", "department": "Directing", "job": "Director", "credit_id": "52fe43dbc3a36847f80745a1", "profile_path": "/8r91mtKkWdYri739IilAvTVzr1E.jpg", "id": 13284}], "vote_average": 7.4, "runtime": 113}, "13001": {"poster_path": "/nOKvsS77gOFEtmEVUBcqgpmlxIV.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8900000, "overview": "SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.", "video": false, "id": 13001, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Stargate: The Ark of Truth", "tagline": "The lines have been drawn. The battle has been waged. Only one thing can save us...", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fwVVh9o0WZsZNstpX3O55ff7Hs8.jpg", "poster_path": "/5TTU7voIo3t0IYzZTPQQAbawy6Y.jpg", "id": 44215, "name": "Stargate SG-1 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0942903", "adult": false, "backdrop_path": "/rRFAbLCcMV4jbf6NAepkILs8EST.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2008-03-11", "popularity": 0.433754842469261, "original_title": "Stargate: The Ark of Truth", "budget": 7000000, "cast": [{"name": "Ben Browder", "character": "Cameron Mitchell", "id": 26048, "credit_id": "52fe452d9251416c7504e3d3", "cast_id": 9, "profile_path": "/uUFV9hqLUDwT0qsXGqx2KUzfVbO.jpg", "order": 0}, {"name": "Amanda Tapping", "character": "Samantha Carter", "id": 26087, "credit_id": "52fe452d9251416c7504e3d7", "cast_id": 10, "profile_path": "/a7rzcdtLEeNZ4MLLVkoPz2pufte.jpg", "order": 1}, {"name": "Christopher Judge", "character": "Teal'c", "id": 26088, "credit_id": "52fe452d9251416c7504e3db", "cast_id": 11, "profile_path": "/5ZS5BJwSRLXxujP1eUeX8tJRscF.jpg", "order": 2}, {"name": "Michael Shanks", "character": "Daniel Jackson", "id": 26086, "credit_id": "52fe452d9251416c7504e3df", "cast_id": 12, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 3}, {"name": "Beau Bridges", "character": "Hank Landry", "id": 2222, "credit_id": "52fe452d9251416c7504e3e3", "cast_id": 13, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 4}, {"name": "Claudia Black", "character": "Vala Mal Doran", "id": 26054, "credit_id": "52fe452d9251416c7504e3e7", "cast_id": 14, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 5}, {"name": "Morena Baccarin", "character": "Adria", "id": 54882, "credit_id": "52fe452d9251416c7504e3f7", "cast_id": 17, "profile_path": "/gUG9fnudV5Ev1MIr3adngn1GuZJ.jpg", "order": 6}, {"name": "Tim Guinee", "character": "Tomin", "id": 40275, "credit_id": "52fe452d9251416c7504e3fb", "cast_id": 19, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 7}, {"name": "Julian Sands", "character": "Doci", "id": 6104, "credit_id": "52fe452d9251416c7504e3ff", "cast_id": 20, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 8}, {"name": "Currie Graham", "character": "James Marrick", "id": 156590, "credit_id": "52fe452d9251416c7504e403", "cast_id": 21, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 9}], "directors": [{"name": "Robert C. Cooper", "department": "Directing", "job": "Director", "credit_id": "52fe452d9251416c7504e3ab", "profile_path": "/5IefO2aEDml9gNoITquVF0eth4L.jpg", "id": 27745}], "vote_average": 7.0, "runtime": 97}, "45772": {"poster_path": "/atCBHTqq7khw5Z1KSVXDo6ncKWF.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189712432, "overview": "A version of Shakespeare's play, set in the world of warring indoor and outdoor gnomes. Garden gnomes Gnomeo and Juliet have as many obstacles to overcome as their quasi namesakes when they are caught up in a feud between neighbors. But with plastic pink flamingos and lawnmower races in the mix, can this young couple find lasting happiness?", "video": false, "id": 45772, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Gnomeo & Juliet", "tagline": "A little adventure goes a lawn way.", "vote_count": 165, "homepage": "http://gnomeoandjuliet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377981", "adult": false, "backdrop_path": "/5VDfdJBofpvXAMtaHTT8YFE0lru.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Starz Animation", "id": 2885}], "release_date": "2011-01-13", "popularity": 1.05527371474692, "original_title": "Gnomeo & Juliet", "budget": 36000000, "cast": [{"name": "Jason Statham", "character": "Tybalt (voice)", "id": 976, "credit_id": "52fe46d2c3a36847f8114201", "cast_id": 8, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "James McAvoy", "character": "Gnomeo (voice)", "id": 5530, "credit_id": "52fe46d2c3a36847f8114209", "cast_id": 10, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 2}, {"name": "Michael Caine", "character": "Lord Redbrick (voice)", "id": 3895, "credit_id": "52fe46d2c3a36847f811420d", "cast_id": 11, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Lady Bluebury (voice)", "id": 10978, "credit_id": "52fe46d2c3a36847f8114211", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Julie Walters", "character": "Lady Montague (voice)", "id": 477, "credit_id": "52fe46d2c3a36847f8114215", "cast_id": 13, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 5}, {"name": "Patrick Stewart", "character": "William Shakespeare (voice)", "id": 2387, "credit_id": "52fe46d2c3a36847f8114219", "cast_id": 14, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 6}, {"name": "Jim Cummings", "character": "Featherstone (voice)", "id": 12077, "credit_id": "52fe46d2c3a36847f811421d", "cast_id": 15, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 7}, {"name": "Ashley Jensen", "character": "Nanette (voice)", "id": 55398, "credit_id": "52fe46d2c3a36847f8114221", "cast_id": 16, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 8}, {"name": "Dolly Parton", "character": "Dolly Gnome (voice)", "id": 67274, "credit_id": "52fe46d2c3a36847f8114225", "cast_id": 17, "profile_path": "/jwgftK97N8cPUJztv1ZxMEdXP8j.jpg", "order": 9}, {"name": "Matt Lucas", "character": "Benny (voice)", "id": 26209, "credit_id": "52fe46d2c3a36847f8114229", "cast_id": 18, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 10}, {"name": "Hulk Hogan", "character": "Terrafirminator V.O. (voice)", "id": 16620, "credit_id": "52fe46d2c3a36847f811422d", "cast_id": 19, "profile_path": "/jDWQ3FLbbPSIHPgfOdmuUaWWnON.jpg", "order": 11}, {"name": "Stephen Merchant", "character": "Paris (voice)", "id": 39189, "credit_id": "52fe46d2c3a36847f8114231", "cast_id": 20, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 12}, {"name": "Ozzy Osbourne", "character": "Fawn (voice)", "id": 12208, "credit_id": "52fe46d2c3a36847f8114235", "cast_id": 21, "profile_path": "/9EkHsyIW3xjch0MJ6LtrvMmGhdL.jpg", "order": 13}, {"name": "Emily Blunt", "character": "Juliet (voice)", "id": 5081, "credit_id": "53b523f10e0a2676c7002117", "cast_id": 22, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 14}], "directors": [{"name": "Kelly Asbury", "department": "Directing", "job": "Director", "credit_id": "52fe46d2c3a36847f81141e5", "profile_path": "/jJAHjXFbjEUJrYjxyuj0AWMPAqW.jpg", "id": 12079}], "vote_average": 5.9, "runtime": 84}, "4816": {"poster_path": "/g0FgYRxul1LMsa0QgXmbb1Mhvov.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An African American mafia hit man who models himself after the samurai of old finds himself targeted for death by the mob.", "video": false, "id": 4816, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Dog: The Way of the Samurai", "tagline": "All assassins live beyond the law \u2026 only one follows the code", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0165798", "adult": false, "backdrop_path": "/iCuJ3DWgNZcLK8EBVQpUFlyxu3e.jpg", "production_companies": [], "release_date": "1999-09-13", "popularity": 0.80402823431397, "original_title": "Ghost Dog: The Way of the Samurai", "budget": 0, "cast": [{"name": "Forest Whitaker", "character": "Ghost Dog", "id": 2178, "credit_id": "52fe43dcc3a36847f80748d1", "cast_id": 9, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 0}, {"name": "Cliff Gorman", "character": "Sonny Valerio", "id": 19183, "credit_id": "52fe43dcc3a36847f80748d5", "cast_id": 10, "profile_path": "/mpzeKQvkR500xcxmB0idFCfcasr.jpg", "order": 1}, {"name": "Tricia Vessey", "character": "Louise Vargo", "id": 39596, "credit_id": "52fe43dcc3a36847f80748dd", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Henry Silva", "character": "Ray Vargo", "id": 14731, "credit_id": "52fe43dcc3a36847f80748e1", "cast_id": 13, "profile_path": "/bIQ27e769EbNtMBdU1xSoaGgNd3.jpg", "order": 3}, {"name": "Victor Argo", "character": "Vinny", "id": 2561, "credit_id": "52fe43dcc3a36847f80748e5", "cast_id": 14, "profile_path": "/kYwuOpT59qqJnssl9R4226yHSAG.jpg", "order": 4}, {"name": "Joseph Rigano", "character": "Joe Rags", "id": 13605, "credit_id": "52fe43dcc3a36847f80748e9", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "John Tormey", "character": "Louie", "id": 28002, "credit_id": "52fe43dcc3a36847f80748d9", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Damon Whitaker", "character": "Ghost Dog (Child)", "id": 39597, "credit_id": "52fe43dcc3a36847f80748ed", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Frank Minucci", "character": "Big Angie", "id": 39598, "credit_id": "52fe43dcc3a36847f80748f1", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Richard Portnow", "character": "Handsome Frank", "id": 4255, "credit_id": "52fe43dcc3a36847f80748f5", "cast_id": 18, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 9}, {"name": "Gene Ruffini", "character": "Old Consigliere", "id": 39599, "credit_id": "52fe43dcc3a36847f80748f9", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Frank Adonis", "character": "Bodyguard", "id": 4692, "credit_id": "52fe43dcc3a36847f80748fd", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "RZA", "character": "Samurai", "id": 150, "credit_id": "52fe43dcc3a36847f8074901", "cast_id": 21, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 12}, {"name": "Isaach De Bankol\u00e9", "character": "Raymond", "id": 4812, "credit_id": "52fe43dcc3a36847f807490b", "cast_id": 23, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 13}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe43dcc3a36847f80748a3", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 7.5, "runtime": 116}, "234200": {"poster_path": "/kS5KKZxAq1ESoLVcyfEVweTwAdX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "It\u2019s the summer of 1984 \u2013 Margaret Thatcher is in power and the National Union of Mineworkers (NUM) is on strike. At the Gay Pride March in London, a group of gay and lesbian activists decides to raise money to support the families of the striking miners. But there is a problem. The Union seems embarrassed to receive their support. But the activists are not deterred. They decide to ignore the Union and go direct to the miners. They identify a mining village in deepest Wales and set off in a mini bus to make their donation in person. And so begins the extraordinary story of two seemingly alien communities who form a surprising and ultimately triumphant partnership.", "video": false, "id": 234200, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Pride", "tagline": "Based on the inspirational true story.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3169706", "adult": false, "backdrop_path": "/9CdBoClQ3UuiJMSzDbQt4I0O3J0.jpg", "production_companies": [{"name": "Calamity Films", "id": 26369}], "release_date": "2014-09-12", "popularity": 1.07382429219943, "original_title": "Pride", "budget": 0, "cast": [{"name": "Bill Nighy", "character": "Cliff", "id": 2440, "credit_id": "52fe4e2ec3a36847f8282531", "cast_id": 1, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "George MacKay", "character": "Joe", "id": 146750, "credit_id": "52fe4e2ec3a36847f8282535", "cast_id": 2, "profile_path": "/8V5uGgbl57gbAyj59kIRFFdvoXd.jpg", "order": 1}, {"name": "Dominic West", "character": "Jonathan", "id": 17287, "credit_id": "52fe4e2ec3a36847f8282539", "cast_id": 3, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 2}, {"name": "Andrew Scott", "character": "Gethin", "id": 125660, "credit_id": "52fe4e2ec3a36847f828253d", "cast_id": 4, "profile_path": "/3yu4zC3OVq2lvmMqnPT4RYH4sBU.jpg", "order": 3}, {"name": "Imelda Staunton", "character": "Hefina", "id": 11356, "credit_id": "52fe4e2ec3a36847f8282541", "cast_id": 5, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 4}, {"name": "Paddy Considine", "character": "Dai", "id": 14887, "credit_id": "52fe4e2ec3a36847f8282545", "cast_id": 6, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 5}, {"name": "Ben Schnetzer", "character": "Mark Ashton", "id": 224167, "credit_id": "52fe4e2ec3a36847f8282549", "cast_id": 7, "profile_path": "/ac6KVM4Uc1Y0WPU7yptRQERPzO4.jpg", "order": 6}, {"name": "Joseph Gilgun", "character": "Mike", "id": 225610, "credit_id": "53b205750e0a26598c0091da", "cast_id": 18, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 7}, {"name": "Jessica Gunning", "character": "Sian", "id": 1196101, "credit_id": "54b471c6c3a36805d3002b97", "cast_id": 21, "profile_path": "/qPDICmM1Ik2Ig1V18qJa0sTsfyC.jpg", "order": 8}, {"name": "Faye Marsay", "character": "Steph", "id": 1204956, "credit_id": "52fe4e2ec3a36847f828254d", "cast_id": 8, "profile_path": "/dJET1oChiCIPILrmvx6Wr0hVPNm.jpg", "order": 9}, {"name": "Freddie Fox", "character": "Jeff", "id": 1014931, "credit_id": "53b203330e0a265983008e02", "cast_id": 15, "profile_path": "/kOPYh0Jr8lAUTmbyDZiES9Lx1j8.jpg", "order": 10}, {"name": "Chris Overton", "character": "Reggie", "id": 3566, "credit_id": "52fe4e2ec3a36847f8282559", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Joshua Hill", "character": "Ray", "id": 1336143, "credit_id": "53b204b2c3a3682edf006a82", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Jessie Cave", "character": "Zoe", "id": 234924, "credit_id": "52fe4e2ec3a36847f8282551", "cast_id": 9, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 13}, {"name": "Shane Salter", "character": "Policeman 1", "id": 1269685, "credit_id": "52fe4e2ec3a36847f8282555", "cast_id": 10, "profile_path": "/jf3baFCRCtSlGZbZ9Hp8QECouPC.jpg", "order": 14}, {"name": "Larissa Jones", "character": "", "id": 1269686, "credit_id": "52fe4e2ec3a36847f828255d", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "Karina Fernandez", "character": "Stella", "id": 65449, "credit_id": "5424c6400e0a263b740049bf", "cast_id": 20, "profile_path": "/pbwwQ5ypvkVVPBAsAuN49zJkEGK.jpg", "order": 16}, {"name": "Monica Dolan", "character": "Marion", "id": 229606, "credit_id": "54bb5873c3a3684046002ba6", "cast_id": 22, "profile_path": "/rH2PyFU4ZpvNF1guqDXV5Qqrtwv.jpg", "order": 17}, {"name": "Joseph Gilgun", "character": "Mike", "id": 225610, "credit_id": "54bb588ac3a368389c000edd", "cast_id": 23, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 18}, {"name": "Faye Marsay", "character": "Steph", "id": 1204956, "credit_id": "54bb589092514148b0004dfd", "cast_id": 24, "profile_path": "/dJET1oChiCIPILrmvx6Wr0hVPNm.jpg", "order": 19}, {"name": "Freddie Fox", "character": "Jeff", "id": 1014931, "credit_id": "54bb5897c3a368145e005463", "cast_id": 25, "profile_path": "/kOPYh0Jr8lAUTmbyDZiES9Lx1j8.jpg", "order": 20}, {"name": "Liz White", "character": "Margaret", "id": 90046, "credit_id": "54bb58cb9251411d77007acb", "cast_id": 26, "profile_path": "/g5MwaqoKPy0lRPff7BaXgteiGUX.jpg", "order": 21}, {"name": "Russell Tovey", "character": "Tim", "id": 55469, "credit_id": "54bb58e3c3a3686c610076d6", "cast_id": 27, "profile_path": "/qpL1Zl5NjNTcYpRBlwpm9DPsl1I.jpg", "order": 22}, {"name": "Michael Vardian", "character": "Welsh Miner", "id": 1426167, "credit_id": "54dbcec1c3a36812330028ed", "cast_id": 28, "profile_path": "/zY4xOBvFDu9GZemU5FGSNg1MD6v.jpg", "order": 23}], "directors": [{"name": "Matthew Warchus", "department": "Directing", "job": "Director", "credit_id": "52fe4e2ec3a36847f8282563", "profile_path": null, "id": 111807}], "vote_average": 7.7, "runtime": 117}, "13018": {"poster_path": "/ivz84uFw7OunCsJ4WdgGsMICbpQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17741298, "overview": "As a corporate auditor who works in a number of different offices, Jonathan McQuarry wanders without an anchor among New York's power brokers. A chance meeting with charismatic lawyer Wyatt Bose leads to Jonathan's introduction to The List, an underground sex club. Jonathan begins an affair with a woman known only as S, who introduces Jonathan to a world of treachery and murder.", "video": false, "id": 13018, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Deception", "tagline": "When you're in this world, no one is who they seem, and everyone is playing the game.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800240", "adult": false, "backdrop_path": "/omlH3JVUL6bSoiX0nc9Ekv1kjRd.jpg", "production_companies": [{"name": "Seed Productions", "id": 9076}], "release_date": "2008-04-25", "popularity": 0.557278336211612, "original_title": "Deception", "budget": 25000000, "cast": [{"name": "Hugh Jackman", "character": "Wyatt Bose", "id": 6968, "credit_id": "52fe452f9251416c7504e83b", "cast_id": 1, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Jonathan McQuarry", "id": 3061, "credit_id": "52fe452f9251416c7504e83f", "cast_id": 2, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Michelle Williams", "character": "S", "id": 1812, "credit_id": "52fe452f9251416c7504e843", "cast_id": 3, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 2}, {"name": "Bruce Altman", "character": "Lawyer #1", "id": 27545, "credit_id": "52fe45309251416c7504e853", "cast_id": 6, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 3}, {"name": "Andrew Ginsburg", "character": "Lawyer #2", "id": 133442, "credit_id": "52fe45309251416c7504e857", "cast_id": 7, "profile_path": "/dMnaCAsP50CU19lp3GxRxVdJSgm.jpg", "order": 4}, {"name": "Stephanie Roth Haberle", "character": "Assistant Controller", "id": 58539, "credit_id": "52fe45309251416c7504e85b", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Christine Kan", "character": "Tennis Player #1", "id": 133443, "credit_id": "52fe45309251416c7504e85f", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Dante Spinotti", "character": "Herr Kleiner / Mr. Moretti", "id": 11099, "credit_id": "52fe45309251416c7504e863", "cast_id": 10, "profile_path": "/vIb3GU52BvSIQh1MXZRFDVRnqsm.jpg", "order": 7}, {"name": "Karolina Muller", "character": "Waitress", "id": 133444, "credit_id": "52fe45309251416c7504e867", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Agnete Oernsholt", "character": "Woman at Waldorf Astoria", "id": 133445, "credit_id": "52fe45309251416c7504e86b", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Melissa Rae Mahon", "character": "Velvet Rope Dancer #1", "id": 133446, "credit_id": "52fe45309251416c7504e86f", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Rachel Montez Collins", "character": "Velvet Rope Dancer #2", "id": 133447, "credit_id": "52fe45309251416c7504e873", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Holly Cruikshank", "character": "Velvet Rope Dancer #3", "id": 133448, "credit_id": "52fe45309251416c7504e877", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Deborah Yates", "character": "Tango Dancer", "id": 133449, "credit_id": "52fe45309251416c7504e87b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Bill Camp", "character": "Clancey Controller", "id": 121718, "credit_id": "52fe45309251416c7504e87f", "cast_id": 17, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 14}, {"name": "Zoe Perry", "character": "Secretary #1", "id": 133450, "credit_id": "52fe45309251416c7504e883", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Aya Cash", "character": "Secretary #2", "id": 133451, "credit_id": "52fe45309251416c7504e887", "cast_id": 19, "profile_path": "/ihZqcurACgV6NDy95pkwQ29OawL.jpg", "order": 16}, {"name": "Frank Girardeau", "character": "Norbert Lewman", "id": 133452, "credit_id": "52fe45309251416c7504e88b", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Natasha Henstridge", "character": "Simone Wilkinson", "id": 57395, "credit_id": "52fe45309251416c7504e88f", "cast_id": 21, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 18}, {"name": "Charlotte Rampling", "character": "Wall Street Belle", "id": 44079, "credit_id": "52fe45309251416c7504e893", "cast_id": 22, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 19}, {"name": "Paz de la Huerta", "character": "List Member #1", "id": 59882, "credit_id": "52fe45309251416c7504e897", "cast_id": 23, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 20}, {"name": "Daisy Bates", "character": "List Member #2", "id": 133453, "credit_id": "52fe45309251416c7504e89b", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Shannan Click", "character": "List Member #3", "id": 133454, "credit_id": "52fe45309251416c7504e89f", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Malcolm Goodwin", "character": "Cabbie", "id": 57997, "credit_id": "52fe45309251416c7504e8a3", "cast_id": 26, "profile_path": "/igRMW5VUmv52D6wsD03s08oRWHT.jpg", "order": 23}, {"name": "Jordan Tesfay", "character": "List Member #4", "id": 133455, "credit_id": "52fe45309251416c7504e8a7", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Rachael Taylor", "character": "List Member #5", "id": 19538, "credit_id": "52fe45309251416c7504e8ab", "cast_id": 28, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 25}, {"name": "Lisa Gay Hamilton", "character": "Detective Russo", "id": 64908, "credit_id": "52fe45309251416c7504e8af", "cast_id": 29, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 26}, {"name": "Maggie Q", "character": "Tina at the Rhigha Royal", "id": 21045, "credit_id": "52fe45309251416c7504e8b3", "cast_id": 30, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 27}], "directors": [{"name": "Marcel Langenegger", "department": "Directing", "job": "Director", "credit_id": "52fe452f9251416c7504e849", "profile_path": null, "id": 74101}], "vote_average": 5.9, "runtime": 107}, "168672": {"poster_path": "/iwKIYy9GQApWUyvKAn23wZVulUU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 251171807, "overview": "A con man, Irving Rosenfeld, along with his seductive partner Sydney Prosser, is forced to work for a wild FBI agent, Richie DiMaso, who pushes them into a world of Jersey powerbrokers and mafia.", "video": false, "id": 168672, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "American Hustle", "tagline": "Everyone Hustles To Survive", "vote_count": 964, "homepage": "http://www.americanhustle-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1800241", "adult": false, "backdrop_path": "/dpGGeiTPDzqrcbK7h8if2YHHBXN.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2013-12-20", "popularity": 1.77938591000637, "original_title": "American Hustle", "budget": 40000000, "cast": [{"name": "Christian Bale", "character": "Irving Rosenfeld", "id": 3894, "credit_id": "52fe4cd3c3a36847f8240665", "cast_id": 3, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Bradley Cooper", "character": "Richie DiMaso", "id": 51329, "credit_id": "52fe4cd3c3a36847f824065d", "cast_id": 1, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 1}, {"name": "Amy Adams", "character": "Syndey Prosser", "id": 9273, "credit_id": "52fe4cd3c3a36847f8240669", "cast_id": 4, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 2}, {"name": "Jeremy Renner", "character": "Carmine Polito", "id": 17604, "credit_id": "52fe4cd3c3a36847f8240661", "cast_id": 2, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 3}, {"name": "Jennifer Lawrence", "character": "Rosalyn Rosenfeld", "id": 72129, "credit_id": "52fe4cd3c3a36847f8240671", "cast_id": 6, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 4}, {"name": "Louis C.K.", "character": "Stoddard Thorsen", "id": 52849, "credit_id": "52fe4cd3c3a36847f824066d", "cast_id": 5, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 5}, {"name": "Michael Pe\u00f1a", "character": "Paco Hernandez", "id": 454, "credit_id": "52fe4cd3c3a36847f82406a5", "cast_id": 23, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 6}, {"name": "Alessandro Nivola", "character": "Anthony Amado", "id": 4941, "credit_id": "52fe4cd3c3a36847f8240693", "cast_id": 19, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 7}, {"name": "Robert De Niro", "character": "Victor Tellegio", "id": 380, "credit_id": "52fe4cd3c3a36847f82406b1", "cast_id": 26, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 8}, {"name": "Jack Huston", "character": "Pete Musane", "id": 54738, "credit_id": "52fe4cd3c3a36847f82406a9", "cast_id": 24, "profile_path": "/fy9PKaLfxVMJ4Ycz8C7xdWrYvFi.jpg", "order": 9}, {"name": "Elisabeth R\u00f6hm", "character": "Dolly Polito", "id": 126932, "credit_id": "52fe4cd3c3a36847f82406a1", "cast_id": 22, "profile_path": "/67qIdPzAY5XrK895EyUpJI2QF8N.jpg", "order": 10}, {"name": "Dawn Olivieri", "character": "Cosmo Girl", "id": 92614, "credit_id": "52fe4cd3c3a36847f8240697", "cast_id": 20, "profile_path": "/ezcRQlpLaIE3jklAc7P3xdr3qjt.jpg", "order": 11}, {"name": "Erica McDermott", "character": "Abbie Abrams", "id": 999737, "credit_id": "52fe4cd3c3a36847f82406ad", "cast_id": 25, "profile_path": "/715Tt2EGYuN0f4ccso7t2prW7uu.jpg", "order": 12}, {"name": "Colleen Camp", "character": "Brenda", "id": 13023, "credit_id": "52fe4cd3c3a36847f82406bb", "cast_id": 28, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 13}, {"name": "Shea Whigham", "character": "Carl Elway", "id": 74242, "credit_id": "52fe4cd3c3a36847f82406bf", "cast_id": 29, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 14}, {"name": "Sa\u00efd Taghmaoui", "character": "Irv's Sheik Plant", "id": 5419, "credit_id": "52fe4cd3c3a36847f8240705", "cast_id": 42, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 15}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4cd3c3a36847f8240677", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 7.0, "runtime": 138}, "62177": {"poster_path": "/6zMUhU3lEMky62ghhbFXLEsbI6K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 538983207, "overview": "Brave is set in the mystical Scottish Highlands, where M\u00e9rida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, M\u00e9rida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, M\u00e9rida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into M\u00e9rida\u2019s quest \u2014 and serving as comic relief \u2014 are the kingdom\u2019s three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.", "video": false, "id": 62177, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Brave", "tagline": "Change your fate.", "vote_count": 2145, "homepage": "http://disney.go.com/brave/#/home", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1217209", "adult": false, "backdrop_path": "/sfRCA9g3CunpnZO3QurHSIRcsUq.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2012-06-21", "popularity": 1.63380109730057, "original_title": "Brave", "budget": 185000000, "cast": [{"name": "Kelly Macdonald", "character": "M\u00e9rida (voice)", "id": 9015, "credit_id": "52fe4674c3a368484e0918ef", "cast_id": 1, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 0}, {"name": "Julie Walters", "character": "The Witch (voice)", "id": 477, "credit_id": "52fe4674c3a368484e0918f3", "cast_id": 2, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 1}, {"name": "Billy Connolly", "character": "King Fergus (voice)", "id": 9188, "credit_id": "52fe4674c3a368484e0918f7", "cast_id": 3, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 2}, {"name": "Emma Thompson", "character": "Queen Elinor (voice)", "id": 7056, "credit_id": "52fe4674c3a368484e0918fb", "cast_id": 4, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 3}, {"name": "Kevin McKidd", "character": "Lord MacGuffin / Young MacGuffin (voice)", "id": 9013, "credit_id": "52fe4674c3a368484e0918ff", "cast_id": 5, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 4}, {"name": "Craig Ferguson", "character": "Lord Macintosh (voice)", "id": 24264, "credit_id": "52fe4674c3a368484e091903", "cast_id": 6, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 5}, {"name": "Robbie Coltrane", "character": "Lord Dingwall (voice)", "id": 1923, "credit_id": "52fe4674c3a368484e091907", "cast_id": 7, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 6}, {"name": "Peigi Barker", "character": "Young Merida (voice)", "id": 1113604, "credit_id": "52fe4674c3a368484e091947", "cast_id": 22, "profile_path": "/rwu0NXF4YXavgJdVOX0jezHSUlg.jpg", "order": 7}, {"name": "Steven Cree", "character": "Young Macintosh (voice)", "id": 1102427, "credit_id": "52fe4674c3a368484e09194b", "cast_id": 23, "profile_path": "/qDVgyaxnboHj3QHfKEtv4XbKXSG.jpg", "order": 8}, {"name": "Steve Purcell", "character": "The Crow (voice)", "id": 137262, "credit_id": "53a6f15f0e0a26143f004176", "cast_id": 30, "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "order": 9}, {"name": "Callum O'Neill", "character": "Wee Dingwall (voice)", "id": 1333216, "credit_id": "53a6f1860e0a261432003f62", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Patrick Doyle", "character": "Martin (voice)", "id": 9152, "credit_id": "53a6f1b10e0a26143c003cb9", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "John Ratzenberger", "character": "Gordon (voice)", "id": 7907, "credit_id": "53a6f1da0e0a261432003f69", "cast_id": 33, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 12}, {"name": "Sally Kinghorn", "character": "Maudie (voice)", "id": 1052100, "credit_id": "5501ddf0c3a36826b9001afa", "cast_id": 61, "profile_path": null, "order": 13}, {"name": "Eilidh Fraser", "character": "Maudie (voice)", "id": 1438685, "credit_id": "5501de1cc3a3685ba2003820", "cast_id": 62, "profile_path": null, "order": 14}], "directors": [{"name": "Mark Andrews", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a368484e091919", "profile_path": null, "id": 126638}, {"name": "Steve Purcell", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a368484e09191f", "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "id": 137262}, {"name": "Brenda Chapman", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a368484e091925", "profile_path": "/3wEdiMLQObBcBbtg131ZRQG2hfK.jpg", "id": 59803}], "vote_average": 6.4, "runtime": 93}, "13027": {"poster_path": "/4V9ycz7TfdGsT6jJvPtViE5xzrw.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177995103, "overview": "Jerry Shaw (Shia LaBeouf) and Rachel Holloman (Michelle Monaghan) are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country's most-wanted fugitives and must figure out what is happening to them.", "video": false, "id": 13027, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Eagle Eye", "tagline": "Don't walk. Run.", "vote_count": 380, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1059786", "adult": false, "backdrop_path": "/hUgCX8CeRQiAyrYqvdkeHT7eVjN.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "KMP Film Invest", "id": 20157}, {"name": "K/O Paper Products", "id": 7296}], "release_date": "2008-09-25", "popularity": 1.11376446691985, "original_title": "Eagle Eye", "budget": 80000000, "cast": [{"name": "Shia LaBeouf", "character": "Jerry Shaw", "id": 10959, "credit_id": "52fe45319251416c7504eafd", "cast_id": 4, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Rachel Holloman", "id": 11705, "credit_id": "52fe45319251416c7504eb01", "cast_id": 5, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Zoe Perez", "id": 5916, "credit_id": "52fe45319251416c7504eb05", "cast_id": 6, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Defense Secretary Callister", "id": 19654, "credit_id": "52fe45319251416c7504eb09", "cast_id": 7, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Anthony Mackie", "character": "Major William Bowman", "id": 53650, "credit_id": "52fe45319251416c7504eb0d", "cast_id": 8, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 4}, {"name": "Billy Bob Thornton", "character": "Thomas Morgan", "id": 879, "credit_id": "52fe45319251416c7504eb11", "cast_id": 9, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 5}, {"name": "Ethan Embry", "character": "Agent Toby Grant", "id": 58019, "credit_id": "52fe45319251416c7504eb1b", "cast_id": 11, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 6}, {"name": "Anthony Azizi", "character": "Ranim Khalid", "id": 165263, "credit_id": "52fe45319251416c7504eb1f", "cast_id": 12, "profile_path": "/2TPYadVaT1gOQN62dA4xapEaeuG.jpg", "order": 7}, {"name": "Cameron Boyce", "character": "Sam Holloman", "id": 75041, "credit_id": "52fe45319251416c7504eb23", "cast_id": 13, "profile_path": "/374sfaE0nrXUlddVhOn2uydoiBl.jpg", "order": 8}, {"name": "Lynn Cohen", "character": "Mrs. Wierzbowski", "id": 8792, "credit_id": "52fe45319251416c7504eb27", "cast_id": 14, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 9}, {"name": "Bill Smitrovich", "character": "Admiral Thompson", "id": 17200, "credit_id": "52fe45319251416c7504eb43", "cast_id": 22, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 10}, {"name": "Charles Carroll", "character": "Mr. Miller", "id": 60287, "credit_id": "52fe45319251416c7504eb2b", "cast_id": 16, "profile_path": "/5sGsNA3iVsjt3vXxNH5aK3P7toG.jpg", "order": 11}, {"name": "William Sadler", "character": "Jerry's Dad", "id": 6573, "credit_id": "52fe45319251416c7504eb2f", "cast_id": 17, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 12}, {"name": "Dariush Kashani", "character": "Translator", "id": 163855, "credit_id": "52fe45319251416c7504eb37", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Julianne Moore", "character": "ARIIA (voice)", "id": 1231, "credit_id": "52fe45319251416c7504eb3b", "cast_id": 20, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 15}, {"name": "Marc Singer", "character": "Explosives Developer", "id": 35350, "credit_id": "52fe45319251416c7504eb3f", "cast_id": 21, "profile_path": "/nX6E58a4qZn7InvNcmIG7WTkYBH.jpg", "order": 16}, {"name": "Deborah Strang", "character": "Jerry's Mom", "id": 1214388, "credit_id": "53d73c160e0a260340000fd8", "cast_id": 32, "profile_path": "/e1SpEAvMeJiyTbojxM14VXl1SaW.jpg", "order": 17}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe45319251416c7504eaed", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 6.1, "runtime": 118}, "4836": {"poster_path": "/6k1s24rW0uhXL31C4XxP96HyZJR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 11850214, "overview": "When a seemingly straight-forward drug deal goes awry, XXXX has to break his die-hard rules and turn up the heat, not only to outwit the old regime and come out on top, but to save his own skin...", "video": false, "id": 4836, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Layer Cake", "tagline": "", "vote_count": 117, "homepage": "http://www.sonypictures.co.uk/homevideo/layercake/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt0375912", "adult": false, "backdrop_path": "/rk6RDd6HNbehPtIfPivDJyfpLlD.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Marv Films", "id": 5374}], "release_date": "2004-09-30", "popularity": 0.707991441933033, "original_title": "Layer Cake", "budget": 6500000, "cast": [{"name": "Daniel Craig", "character": "XXXX", "id": 8784, "credit_id": "52fe43ddc3a36847f8074f57", "cast_id": 48, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Colm Meaney", "character": "Gene", "id": 17782, "credit_id": "52fe43ddc3a36847f8074f5b", "cast_id": 49, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 1}, {"name": "George Harris", "character": "Morty", "id": 2247, "credit_id": "52fe43ddc3a36847f8074f5f", "cast_id": 50, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 2}, {"name": "Sally Hawkins", "character": "Slasher", "id": 39658, "credit_id": "53887a33c3a3681aea00445f", "cast_id": 66, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 3}, {"name": "Kenneth Cranham", "character": "Jimmy Price", "id": 26258, "credit_id": "52fe43ddc3a36847f8074f63", "cast_id": 51, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 4}, {"name": "Jamie Foreman", "character": "Duke", "id": 3543, "credit_id": "52fe43ddc3a36847f8074f67", "cast_id": 52, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 5}, {"name": "Sienna Miller", "character": "Tammy", "id": 23459, "credit_id": "52fe43ddc3a36847f8074f6b", "cast_id": 53, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 6}, {"name": "Michael Gambon", "character": "Eddie Temple", "id": 5658, "credit_id": "52fe43ddc3a36847f8074f6f", "cast_id": 54, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 7}, {"name": "Ben Whishaw", "character": "Sidney", "id": 17064, "credit_id": "52fe43ddc3a36847f8074f73", "cast_id": 55, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 8}, {"name": "Dragan Mi\u0107anovi\u0107", "character": "Dragan", "id": 31648, "credit_id": "52fe43ddc3a36847f8074f77", "cast_id": 56, "profile_path": "/a9kFSwRPiKhjlpGXczeXEQ1chtR.jpg", "order": 9}, {"name": "Tom Hardy", "character": "Clarkie", "id": 2524, "credit_id": "52fe43ddc3a36847f8074f7b", "cast_id": 57, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 10}, {"name": "Stephen Walters", "character": "Shanks", "id": 39681, "credit_id": "52fe43ddc3a36847f8074f7f", "cast_id": 58, "profile_path": null, "order": 11}, {"name": "Louis Emerick", "character": "Trevor", "id": 39682, "credit_id": "52fe43ddc3a36847f8074f83", "cast_id": 59, "profile_path": null, "order": 12}, {"name": "Dexter Fletcher", "character": "Cody", "id": 974, "credit_id": "52fe43ddc3a36847f8074f87", "cast_id": 60, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 13}, {"name": "Tamer Hassan", "character": "Terry", "id": 39660, "credit_id": "52fe43ddc3a36847f8074f8b", "cast_id": 61, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 14}, {"name": "Jason Flemyng", "character": "Larry - Crazy", "id": 973, "credit_id": "52fe43ddc3a36847f8074f8f", "cast_id": 62, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 15}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe43ddc3a36847f8074f17", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.9, "runtime": 105}, "806": {"poster_path": "/kqKHg1qXuaIOhnKmPEF1GLzGrOY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119188334, "overview": "A diplomatic couple adopts the son of the devil without knowing it. A remake of the classic horror film of the same name from 1976.", "video": false, "id": 806, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Omen", "tagline": "A new generation of terror", "vote_count": 68, "homepage": "http://www.theomenmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5IqWSXMS2qb9wijTMbCHXK4ahXE.jpg", "id": 10919, "name": "The Omen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0466909", "adult": false, "backdrop_path": "/th9XO3SKdELxJ4PjPny0fXxCQmk.jpg", "production_companies": [{"name": "11:11 Mediaworks", "id": 519}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2006-06-06", "popularity": 0.331143282644693, "original_title": "The Omen", "budget": 25000000, "cast": [{"name": "Liev Schreiber", "character": "Robert Thorn", "id": 23626, "credit_id": "52fe4279c3a36847f80216b1", "cast_id": 19, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 0}, {"name": "Julia Stiles", "character": "Katherine Thorn", "id": 12041, "credit_id": "52fe4279c3a36847f80216b5", "cast_id": 20, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 1}, {"name": "Seamus Davey-Fitzpatrick", "character": "Damien Thorn", "id": 12042, "credit_id": "52fe4279c3a36847f80216b9", "cast_id": 21, "profile_path": "/pPZZxLvU0c0oNIagFZqfBfHLQ8p.jpg", "order": 2}, {"name": "David Thewlis", "character": "Keith Jennings", "id": 11207, "credit_id": "52fe4279c3a36847f80216bd", "cast_id": 22, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 3}, {"name": "Pete Postlethwaite", "character": "Father Brennan", "id": 4935, "credit_id": "52fe4279c3a36847f80216c1", "cast_id": 23, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 4}, {"name": "Mia Farrow", "character": "Mrs. Baylock", "id": 12021, "credit_id": "52fe4279c3a36847f80216c5", "cast_id": 24, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 5}, {"name": "Predrag Bjelac", "character": "Vatican Observatory Priest", "id": 12044, "credit_id": "52fe4279c3a36847f80216c9", "cast_id": 25, "profile_path": "/lv74T1lR0UwubTaE6FaIRLP1tu2.jpg", "order": 6}, {"name": "Carlo Sabatini", "character": "Cardinal Fabretti", "id": 12045, "credit_id": "52fe4279c3a36847f80216cd", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Amy Huck", "character": "Nanny", "id": 12046, "credit_id": "52fe4279c3a36847f80216d1", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Michael Gambon", "character": "Bugenhagen", "id": 5658, "credit_id": "52fe4279c3a36847f80216d5", "cast_id": 28, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 9}, {"name": "Giovanni Lombardo Radice", "character": "Father Spiletto", "id": 27277, "credit_id": "52fe4279c3a36847f80216d9", "cast_id": 29, "profile_path": "/9QBdSmGKjub55bDxp0WYFAYebvK.jpg", "order": 10}, {"name": "Harvey Stephens", "character": "Tabloid Reporter", "id": 11839, "credit_id": "52fe4279c3a36847f80216dd", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Tomas Wooler", "character": "Damien - 2 Years Old", "id": 1134336, "credit_id": "52fe4279c3a36847f80216e7", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Baby Zikova", "character": "Damien - Newborn", "id": 1134337, "credit_id": "52fe4279c3a36847f80216eb", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Baby Morvas", "character": "Damien - Newborn", "id": 1134338, "credit_id": "52fe4279c3a36847f80216ef", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Baby Muller", "character": "Damien - Newborn", "id": 1134339, "credit_id": "52fe4279c3a36847f80216f3", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Baby Litera", "character": "Damien - Newborn", "id": 1134340, "credit_id": "52fe4279c3a36847f80216f7", "cast_id": 36, "profile_path": null, "order": 16}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802164d", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.4, "runtime": 110}, "58151": {"poster_path": "/6bpthoORc53b2SEG3JwFBRZQnT5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A teenager suspects his new neighbour is a vampire. Unable to convince anyone, he tries to enlist the help of a self-proclaimed vampire hunter and magician in this remake of the 1985 comedy-horror classic.", "video": false, "id": 58151, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Fright Night", "tagline": "You can't run from evil when it lives next door.", "vote_count": 150, "homepage": "http://www.welcometofrightnight.com", "belongs_to_collection": {"backdrop_path": "/9N1PbMkYJ5Zn2suUSHt38lAJnkD.jpg", "poster_path": "/j552uoYU3B45mIHLPBorkdoW0Mr.jpg", "id": 230161, "name": "Fright Night Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1438176", "adult": false, "backdrop_path": "/kCPv7HlXXXDfm3QlCG93FS8wDY7.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2011-08-19", "popularity": 0.395580581497756, "original_title": "Fright Night", "budget": 17000000, "cast": [{"name": "Anton Yelchin", "character": "Charlie Brewster", "id": 21028, "credit_id": "52fe4956c3a36847f8194f7b", "cast_id": 9, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Jerry", "id": 72466, "credit_id": "52fe4956c3a36847f8194f7f", "cast_id": 10, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Toni Collette", "character": "Jane Brewster", "id": 3051, "credit_id": "52fe4956c3a36847f8194f83", "cast_id": 11, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Christopher Mintz-Plasse", "character": "Ed Thompson", "id": 54691, "credit_id": "52fe4956c3a36847f8194f87", "cast_id": 12, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 3}, {"name": "David Tennant", "character": "Peter Vincent", "id": 20049, "credit_id": "52fe4956c3a36847f8194f8b", "cast_id": 13, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 4}, {"name": "Imogen Poots", "character": "Amy Petersen", "id": 17606, "credit_id": "52fe4956c3a36847f8194f8f", "cast_id": 14, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 5}, {"name": "Emily Montague", "character": "Doris", "id": 168993, "credit_id": "52fe4956c3a36847f8194f93", "cast_id": 15, "profile_path": "/4XRgqTw8aUt5w9zqAsgVXZMQ5qY.jpg", "order": 6}, {"name": "Dave Franco", "character": "Mark", "id": 54697, "credit_id": "52fe4956c3a36847f8194f97", "cast_id": 16, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 7}, {"name": "Will Denton", "character": "Adam", "id": 133814, "credit_id": "52fe4956c3a36847f8194f9b", "cast_id": 17, "profile_path": "/gGcgPTd2YyywmTM8SPfMVbOL51m.jpg", "order": 8}, {"name": "Chris Sarandon", "character": "Jay Dee", "id": 14541, "credit_id": "52fe4956c3a36847f8194f9f", "cast_id": 18, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 9}, {"name": "Sandra Vergara", "character": "Ginger", "id": 965807, "credit_id": "52fe4956c3a36847f8194fa3", "cast_id": 19, "profile_path": "/jDuyzO711Lt1m24RHsUfWovbfcC.jpg", "order": 10}, {"name": "Paula Francis", "character": "Newscaster #1", "id": 1224298, "credit_id": "544355dbc3a3683e0e003f0e", "cast_id": 20, "profile_path": "/1b7by344nBpq6yL0zMWTLkgWt85.jpg", "order": 11}], "directors": [{"name": "Craig Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe4956c3a36847f8194f4d", "profile_path": null, "id": 50767}], "vote_average": 6.0, "runtime": 106}, "48171": {"poster_path": "/94jKSKAOfM3EU4bPsOPkVB9AOHT.jpg", "production_countries": [{"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18360065, "overview": "Seminary student Michael Kovak (Colin O'Donoghue) reluctantly attends exorcism school at the Vatican. While he\u2019s in Rome, Michael meets an unorthodox priest, Father Lucas (Anthony Hopkins), who introduces him to the darker side of his faith, uncovering the devil\u2019s reach even to one of the holiest places on Earth.", "video": false, "id": 48171, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Rite", "tagline": "You can only defeat it when you believe.", "vote_count": 153, "homepage": "http://whatdoyoubelieve.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "cy", "name": "Cymraeg"}], "imdb_id": "tt1161864", "adult": false, "backdrop_path": "/vd1pETgA5dFFX6HfzcPbnWS2PT3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Hungarian National Film Office", "id": 17336}, {"name": "Rome Film Commission", "id": 21211}, {"name": "Lazio Film Commission", "id": 20419}, {"name": "Italian Tax Credit", "id": 21212}], "release_date": "2011-01-28", "popularity": 0.570575491072067, "original_title": "The Rite", "budget": 37000000, "cast": [{"name": "Anthony Hopkins", "character": "Father Lucas", "id": 4173, "credit_id": "52fe4758c3a36847f813087b", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Colin O'Donoghue", "character": "Michael Kovak", "id": 235767, "credit_id": "52fe4758c3a36847f8130893", "cast_id": 8, "profile_path": "/pJkkoSu1NTaRatXOWdw1qWFEA29.jpg", "order": 1}, {"name": "Alice Braga", "character": "Angeline", "id": 8602, "credit_id": "52fe4758c3a36847f813087f", "cast_id": 3, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 2}, {"name": "Toby Jones", "character": "Father Matthew", "id": 13014, "credit_id": "52fe4758c3a36847f8130883", "cast_id": 4, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 3}, {"name": "Ciar\u00e1n Hinds", "character": "Father Xavier", "id": 8785, "credit_id": "52fe4758c3a36847f8130887", "cast_id": 5, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 4}, {"name": "Rutger Hauer", "character": "Istvan Kovak", "id": 585, "credit_id": "52fe4758c3a36847f813088b", "cast_id": 6, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 5}, {"name": "Marta Gastini", "character": "Rosaria", "id": 144079, "credit_id": "52fe4758c3a36847f813088f", "cast_id": 7, "profile_path": "/6OvWlSs6fo3WAbIkho43bNRWPQt.jpg", "order": 6}, {"name": "Maria Grazia Cucinotta", "character": "Aunt Andria", "id": 10777, "credit_id": "52fe4758c3a36847f8130897", "cast_id": 11, "profile_path": "/bgI6qh8V7zKslCcGxRflom4H7yS.jpg", "order": 7}, {"name": "Arianna Veronesi", "character": "Francesca", "id": 971200, "credit_id": "52fe4758c3a36847f813089b", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Andrea Calligari", "character": "Vincenzo", "id": 124681, "credit_id": "52fe4758c3a36847f813089f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Chris Marquette", "character": "Eddie", "id": 59238, "credit_id": "52fe4758c3a36847f81308a3", "cast_id": 14, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 10}, {"name": "Chris Marquette", "character": "Nina", "id": 59238, "credit_id": "52fe4758c3a36847f81308a7", "cast_id": 15, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 11}, {"name": "Ben Cheetham", "character": "Young Michael", "id": 971202, "credit_id": "52fe4758c3a36847f81308ab", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4758c3a36847f8130877", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 5.7, "runtime": 114}, "13042": {"poster_path": "/A2rxR8g3y6kcjIoR2fcwtq9eppc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Dignity. Poise. Mystery. We expect nothing less from the great turn-of-the-century magician, Presto. But when Presto neglects to feed his rabbit one too many times, the magician finds he isn't the only one with a few tricks up his sleeve!", "video": false, "id": 13042, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Presto", "tagline": "", "vote_count": 155, "homepage": "http://www.pixar.com/shorts/presto/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1245104", "adult": false, "backdrop_path": "/sFQ10h9DnjOYIF4HjtLQuZ8pnb4.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2008-06-26", "popularity": 0.955748557955342, "original_title": "Presto", "budget": 0, "cast": [{"name": "Doug Sweetland", "character": "Presto DiGiotagione / Alec Azam (voice)", "id": 8010, "credit_id": "52fe45329251416c7504ec47", "cast_id": 6, "profile_path": null, "order": 0}], "directors": [{"name": "Doug Sweetland", "department": "Directing", "job": "Director", "credit_id": "52fe45329251416c7504ec2b", "profile_path": null, "id": 8010}], "vote_average": 8.3, "runtime": 5}, "29427": {"poster_path": "/s15bIs5uLEqPEQERH5YqjCjY6gd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54956140, "overview": "Imagine living in a small town where everything is safe and happy\u2026until suddenly it isn\u2019t. Imagine your friends and neighbors going quickly and horrifically insane. In a terrifying tale of the \u201cAmerican Dream\u201d gone horribly wrong, four friends find themselves trapped in their hometown in The Crazies, a reinvention of the George Romero classic.", "video": false, "id": 29427, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "The Crazies", "tagline": "Fear Thy Neighbor", "vote_count": 138, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455407", "adult": false, "backdrop_path": "/u3vKE2JIKON8yB1dAJFOyIJjlXw.jpg", "production_companies": [{"name": "Penn Station Entertainment", "id": 4916}, {"name": "Participant Media", "id": 6735}, {"name": "Overture Films", "id": 12807}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}], "release_date": "2010-02-26", "popularity": 0.546228805205962, "original_title": "The Crazies", "budget": 20000000, "cast": [{"name": "Timothy Olyphant", "character": "David", "id": 18082, "credit_id": "52fe45dfc3a368484e073b81", "cast_id": 9, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Judy", "id": 8329, "credit_id": "52fe45dfc3a368484e073b85", "cast_id": 10, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Joe Anderson", "character": "Russell", "id": 29234, "credit_id": "52fe45dfc3a368484e073b89", "cast_id": 11, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 2}, {"name": "Danielle Panabaker", "character": "Becca", "id": 31838, "credit_id": "52fe45dfc3a368484e073b8d", "cast_id": 12, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 3}, {"name": "Christie Lynn Smith", "character": "Deardra Farnum", "id": 103832, "credit_id": "52fe45dfc3a368484e073b91", "cast_id": 13, "profile_path": "/1lbK8vlSpy9nf5Zhudt8g4XtR1i.jpg", "order": 4}, {"name": "Brett Rickaby", "character": "Bill Farnum", "id": 12549, "credit_id": "52fe45dfc3a368484e073b95", "cast_id": 14, "profile_path": "/bsY5Tgy6PTPa4u81eaVIgTs5RwA.jpg", "order": 5}, {"name": "Preston Bailey", "character": "Nicholas Farnum", "id": 80378, "credit_id": "52fe45dfc3a368484e073b99", "cast_id": 15, "profile_path": "/d1zkkK3olnyHAVkFGiKqpB2NCcp.jpg", "order": 6}, {"name": "John Aylward", "character": "Mayor Hobbs", "id": 103833, "credit_id": "52fe45dfc3a368484e073b9d", "cast_id": 16, "profile_path": "/jdU2dcdjBM3IbsQv6pEdZT64ajb.jpg", "order": 7}, {"name": "Joe Reegan", "character": "Pvt. Billy Babcock", "id": 103834, "credit_id": "52fe45dfc3a368484e073ba1", "cast_id": 17, "profile_path": "/8QCDhPW8PcbHumRKeyLTikfOWpe.jpg", "order": 8}, {"name": "Glenn Morshower", "character": "Intelligence Officer", "id": 12797, "credit_id": "52fe45dfc3a368484e073ba5", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 9}, {"name": "Larry Cedar", "character": "Ben Sandborn", "id": 94304, "credit_id": "52fe45dfc3a368484e073ba9", "cast_id": 19, "profile_path": "/m4WnOfVhUEX82QtFHZU4qwwuflg.jpg", "order": 10}, {"name": "Lynn Lowry", "character": "Woman on Bike", "id": 98420, "credit_id": "52fe45dfc3a368484e073bad", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Pierce Gagnon", "character": "Distraught Son", "id": 992427, "credit_id": "52fe45dfc3a368484e073bb1", "cast_id": 21, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 12}, {"name": "Justin Price", "character": "Infected Civilian", "id": 933182, "credit_id": "53cb224b0e0a265dfa000d05", "cast_id": 25, "profile_path": "/iCNa9g6iL5NKnT1NFG9trxFXMrF.jpg", "order": 13}], "directors": [{"name": "Breck Eisner", "department": "Directing", "job": "Director", "credit_id": "52fe45dfc3a368484e073b53", "profile_path": "/cT090Hbxtk6xKEoWA516thQcHhp.jpg", "id": 52609}], "vote_average": 6.2, "runtime": 101}, "4858": {"poster_path": "/AiGIhoLpX4gcbbaX6JwFSygAqPY.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15071514, "overview": "Washington, D.C. psychologist Carol Bennell and her colleague Dr. Ben Driscoll are the only two people on Earth who are aware of an epidemic running rampant through the city. They discover an alien virus aboard a crashed space shuttle that transforms anyone who comes into contact with it into unfeeling drones while they sleep. Carol realizes her son holds the key to stopping the spread of the plague and she races to find him before it is too late.", "video": false, "id": 4858, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Invasion", "tagline": "Do not trust anyone. Do not show emotion. Do not fall asleep.", "vote_count": 70, "homepage": "http://theinvasionmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427392", "adult": false, "backdrop_path": "/7YQWfORqPM3XEdeH8yUK28p2w5E.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2007-08-17", "popularity": 1.06410637970004, "original_title": "The Invasion", "budget": 80000000, "cast": [{"name": "Nicole Kidman", "character": "Carol", "id": 2227, "credit_id": "52fe43dec3a36847f80753bf", "cast_id": 15, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Daniel Craig", "character": "Ben", "id": 8784, "credit_id": "52fe43dec3a36847f80753c3", "cast_id": 16, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 1}, {"name": "Jeremy Northam", "character": "Tucker", "id": 18325, "credit_id": "52fe43dec3a36847f80753c7", "cast_id": 17, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 2}, {"name": "Jeffrey Wright", "character": "Dr. Galeano", "id": 2954, "credit_id": "52fe43dec3a36847f80753cb", "cast_id": 18, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 3}, {"name": "Jackson Bond", "character": "Oliver", "id": 39728, "credit_id": "52fe43dec3a36847f80753cf", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Veronica Cartwright", "character": "Wendy Lenk", "id": 5047, "credit_id": "52fe43dec3a36847f80753d3", "cast_id": 20, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 5}, {"name": "Josef Sommer", "character": "Dr. Henryk Belicec", "id": 14792, "credit_id": "52fe43dec3a36847f80753d7", "cast_id": 21, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 6}, {"name": "Celia Weston", "character": "Ludmilla Belicec", "id": 1989, "credit_id": "52fe43dec3a36847f80753db", "cast_id": 22, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "Roger Rees", "character": "Yorish", "id": 16407, "credit_id": "52fe43dec3a36847f80753df", "cast_id": 23, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 8}, {"name": "Eric Benjamin", "character": "Gene", "id": 39729, "credit_id": "52fe43dec3a36847f80753e3", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Susan Floyd", "character": "Pam", "id": 39730, "credit_id": "52fe43dec3a36847f80753e7", "cast_id": 25, "profile_path": "/jU7Fg8BNMjFmwZolD5oF5cfXgx4.jpg", "order": 10}, {"name": "Stephanie Berry", "character": "Carly", "id": 10693, "credit_id": "52fe43dfc3a36847f80753eb", "cast_id": 26, "profile_path": "/mzcU3ox6gWVbQKld66oRt1eboL5.jpg", "order": 11}, {"name": "Alexis Raben", "character": "Belicec's Aide", "id": 143180, "credit_id": "52fe43dfc3a36847f807541f", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Adam LeFevre", "character": "Richard Lenk", "id": 61607, "credit_id": "52fe43dfc3a36847f8075423", "cast_id": 36, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 13}, {"name": "Joanna Merlin", "character": "Joan Kaufman", "id": 11903, "credit_id": "52fe43dfc3a36847f8075427", "cast_id": 37, "profile_path": null, "order": 14}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe43dec3a36847f8075379", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}, {"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe43dfc3a36847f807541b", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 5.6, "runtime": 99}, "13051": {"poster_path": "/eIYwam6sxR3EgXNH07uWQ002UST.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85416905, "overview": "Coming together to solve a series of murders in New York City are a DEA agent whose family was slain as part of a conspiracy and an assassin out to avenge her sister's death. The duo will be hunted by the police, the mob, and a ruthless corporation.", "video": false, "id": 13051, "genres": [{"id": 28, "name": "Action"}], "title": "Max Payne", "tagline": "When a Man Has Lost Everything. He Only has Revenge", "vote_count": 191, "homepage": "http://www.maxpaynethemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0467197", "adult": false, "backdrop_path": "/qC0gb4cvExJiYU5FFzab0jnG2ul.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Abandon Entertainment", "id": 2724}, {"name": "Collision Entertainment", "id": 2179}, {"name": "Depth Entertainment", "id": 11995}, {"name": "Firm Films", "id": 1838}, {"name": "Foxtor Productions", "id": 2725}], "release_date": "2008-10-16", "popularity": 0.778031913417923, "original_title": "Max Payne", "budget": 35000000, "cast": [{"name": "Mark Wahlberg", "character": "Max Payne", "id": 13240, "credit_id": "52fe45339251416c7504ee71", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Mona Sax", "id": 18973, "credit_id": "52fe45339251416c7504ee75", "cast_id": 2, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Beau Bridges", "character": "BB Hensley", "id": 2222, "credit_id": "52fe45339251416c7504ee79", "cast_id": 3, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 2}, {"name": "Ludacris", "character": "Jim Bravura", "id": 8171, "credit_id": "52fe45339251416c7504ee7d", "cast_id": 4, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 3}, {"name": "Chris O'Donnell", "character": "Jason Colvin", "id": 5577, "credit_id": "52fe45339251416c7504ee81", "cast_id": 5, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 4}, {"name": "Donal Logue", "character": "Alex Balder", "id": 10825, "credit_id": "52fe45339251416c7504ee85", "cast_id": 6, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 5}, {"name": "Amaury Nolasco", "character": "Jack Lupino", "id": 17341, "credit_id": "52fe45339251416c7504ee89", "cast_id": 7, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 6}, {"name": "Kate Burton", "character": "Nicole Horne", "id": 20879, "credit_id": "52fe45339251416c7504ee8d", "cast_id": 8, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 7}, {"name": "Olga Kurylenko", "character": "Natasha", "id": 18182, "credit_id": "52fe45339251416c7504ee91", "cast_id": 9, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 8}, {"name": "Rothaford Gray", "character": "Joe Salle", "id": 63813, "credit_id": "52fe45339251416c7504ee95", "cast_id": 10, "profile_path": "/rKC1RIKc3FOYhcfgpO6rPCqdby7.jpg", "order": 9}, {"name": "Joel Gordon", "character": "Owen Green", "id": 74122, "credit_id": "52fe45339251416c7504ee99", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jamie Hector", "character": "Lincoln DeNeuf", "id": 74123, "credit_id": "52fe45339251416c7504ee9d", "cast_id": 12, "profile_path": "/2lcaykTG3nhaC75PyCrovsCFJOE.jpg", "order": 11}, {"name": "Andrew Friedman", "character": "Trevor", "id": 74124, "credit_id": "52fe45339251416c7504eea1", "cast_id": 13, "profile_path": "/kIQj1KGXJAovEFbUOfren84UDoq.jpg", "order": 12}, {"name": "Marianthi Evans", "character": "Michelle Payne", "id": 74125, "credit_id": "52fe45339251416c7504eea5", "cast_id": 14, "profile_path": "/euQn7HUW75cdeGn3pZPIeWGBwj3.jpg", "order": 13}, {"name": "Nelly Furtado", "character": "Christa Balder", "id": 74126, "credit_id": "52fe45339251416c7504eea9", "cast_id": 15, "profile_path": "/aBQ3C68ERX47PEZplRqWbSGrhHe.jpg", "order": 14}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504eeaf", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.4, "runtime": 100}, "13053": {"poster_path": "/k8Nsyj9BC9XKO4TqD1qt8Ks6bvc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 308332675, "overview": "Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks the whole thing is real. When the super dog is accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt springs into action to find his way home. Together with hilarious new sidekick Rhino, Bolt's #1 fan, and a street-smart cat named Mittens, Bolt sets off on an amazing journey where he discovers he doesn't need super powers to be a hero.", "video": false, "id": 13053, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Bolt", "tagline": "Fully Awesome. Ridonculous. Let It Begin.", "vote_count": 599, "homepage": "http://disney.go.com/disneypictures/bolt/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397892", "adult": false, "backdrop_path": "/lwI40taKaCKHK9mUeSBP2tQz8dS.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2008-11-21", "popularity": 1.29757915642317, "original_title": "Bolt", "budget": 150000000, "cast": [{"name": "John Travolta", "character": "Bolt (voice)", "id": 8891, "credit_id": "52fe45339251416c7504ef49", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Miley Cyrus", "character": "Penny (voice)", "id": 76594, "credit_id": "52fe45339251416c7504ef4d", "cast_id": 2, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 1}, {"name": "Susie Essman", "character": "Mittens (voice)", "id": 56910, "credit_id": "52fe45339251416c7504ef51", "cast_id": 3, "profile_path": "/m7e9tEevLcpp7pqddqUEhJEaWLm.jpg", "order": 2}, {"name": "Mark Walton", "character": "Rhino (voice)", "id": 61423, "credit_id": "52fe45339251416c7504ef55", "cast_id": 4, "profile_path": "/6TUKAdE6vBqbl0OreI6JYcuhXUK.jpg", "order": 3}, {"name": "Malcolm McDowell", "character": "Dr. Calico (voice)", "id": 56890, "credit_id": "52fe45339251416c7504ef65", "cast_id": 7, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 4}, {"name": "James Lipton", "character": "The Director (voice)", "id": 58772, "credit_id": "52fe45339251416c7504ef69", "cast_id": 8, "profile_path": "/5Mrm4njIIrpcqXRG7VFZEffjBLw.jpg", "order": 5}, {"name": "Greg Germann", "character": "The Agent (voice)", "id": 19974, "credit_id": "52fe45339251416c7504ef6d", "cast_id": 9, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Veteran Cat (voice)", "id": 5727, "credit_id": "52fe45339251416c7504ef71", "cast_id": 10, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Blake (voice)", "id": 32907, "credit_id": "52fe45339251416c7504ef75", "cast_id": 11, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "J.P. Manoux", "character": "Tom (voice)", "id": 88702, "credit_id": "52fe45339251416c7504ef79", "cast_id": 12, "profile_path": "/fWebcGtEgJFMkbWNc13uku5REYp.jpg", "order": 9}, {"name": "Dan Fogelman", "character": "Billy (voice)", "id": 15892, "credit_id": "52fe45339251416c7504ef7d", "cast_id": 13, "profile_path": "/vDFvNJIt8TFlnim1jtGhIVvvxYE.jpg", "order": 10}, {"name": "Kari Wahlgren", "character": "Mindy (voice)", "id": 116315, "credit_id": "52fe45339251416c7504efd5", "cast_id": 30, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 11}, {"name": "Chlo\u00eb Grace Moretz", "character": "Young Penny (voice)", "id": 56734, "credit_id": "52fe45339251416c7504ef81", "cast_id": 15, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 12}, {"name": "Randy Savage", "character": "Thug (voice)", "id": 89023, "credit_id": "52fe45339251416c7504ef85", "cast_id": 16, "profile_path": "/rcpPJQvX2uqt7oVaTVwAKhdcdN8.jpg", "order": 13}, {"name": "Ronn Moss", "character": "Dr. Forrester (voice)", "id": 89024, "credit_id": "52fe45339251416c7504ef89", "cast_id": 17, "profile_path": "/5R8BHLzYovfYkYOnhiMVNxuCiSD.jpg", "order": 14}], "directors": [{"name": "Chris Williams", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504ef5b", "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "id": 70238}, {"name": "Byron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504ef61", "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "id": 76595}], "vote_average": 6.2, "runtime": 96}, "62206": {"poster_path": "/hrMpGWLExvEXqFgHviLA8GUSnBB.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35501445, "overview": "Two fledgling criminals kidnap a pizza delivery guy, strap a bomb to his chest, and advise him that he has mere hours to rob a bank or else...", "video": false, "id": 62206, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "30 Minutes or Less", "tagline": "A lot can happen in 30 minutes.", "vote_count": 166, "homepage": "http://30minutesorless.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1622547", "adult": false, "backdrop_path": "/5jZlxWJjvui9zJNPrPC0t0dEw3G.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2011-08-11", "popularity": 0.756213523901169, "original_title": "30 Minutes or Less", "budget": 28000000, "cast": [{"name": "Jesse Eisenberg", "character": "Nick", "id": 44735, "credit_id": "52fe4675c3a368484e091d37", "cast_id": 3, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Danny McBride", "character": "Dwayne", "id": 62862, "credit_id": "52fe4675c3a368484e091d3b", "cast_id": 4, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 1}, {"name": "Aziz Ansari", "character": "Chet", "id": 86626, "credit_id": "52fe4675c3a368484e091d3f", "cast_id": 5, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 2}, {"name": "Bianca Kajlich", "character": "Juicy", "id": 69616, "credit_id": "52fe4675c3a368484e091d43", "cast_id": 6, "profile_path": "/7eKTyl55sYtYen9Ky7DQGLMhOnC.jpg", "order": 3}, {"name": "Nick Swardson", "character": "Travis", "id": 32907, "credit_id": "52fe4675c3a368484e091d47", "cast_id": 7, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 4}, {"name": "Michael Pe\u00f1a", "character": "Chango", "id": 454, "credit_id": "52fe4675c3a368484e091d4b", "cast_id": 8, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 5}, {"name": "Fred Ward", "character": "The Major", "id": 10430, "credit_id": "52fe4675c3a368484e091d4f", "cast_id": 9, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 6}, {"name": "Dilshad Vadsaria", "character": "Kate", "id": 207985, "credit_id": "52fe4675c3a368484e091d53", "cast_id": 10, "profile_path": "/uYnD8Iic9tJQ0tWvf2hdHRpoXok.jpg", "order": 7}, {"name": "Brett Gelman", "character": "Pizza Boss", "id": 224197, "credit_id": "52fe4675c3a368484e091d57", "cast_id": 11, "profile_path": "/ox8Tetm16FgBmwR3U2eYZGxRomN.jpg", "order": 8}], "directors": [{"name": "Ruben Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe4675c3a368484e091d2d", "profile_path": "/y001RIxie7Vk3qMW3oLSFkjO1IA.jpg", "id": 91268}], "vote_average": 5.4, "runtime": 83}, "13056": {"poster_path": "/kYDt0FIHynbN1NWKiBEHYZr9dWA.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10089373, "overview": "After hunting down and killing hundreds of violent criminals, Frank Castle (Stevenson), better known to his victims as \"The Punisher,\" faces his most deadly foe yet, Jigsaw.", "video": false, "id": 13056, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Punisher: War Zone", "tagline": "Vengeance Has a Name", "vote_count": 86, "homepage": "http://www.punishermovie.com", "belongs_to_collection": {"backdrop_path": "/jteeWEHZAR92MVjEe9rpecGUpZI.jpg", "poster_path": "/bESkPNkKg79S4TLfs8j93bFYH0N.jpg", "id": 101496, "name": "The Punisher Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450314", "adult": false, "backdrop_path": "/idehrDcxl9cqv3KWyrHbMXtkmvI.jpg", "production_companies": [{"name": "Red Corner Productions", "id": 33807}, {"name": "Lionsgate", "id": 1632}, {"name": "Marvel Knights", "id": 11106}, {"name": "Marvel Studios", "id": 420}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "MHF Zweite Academy Film", "id": 8848}, {"name": "SGF Entertainment", "id": 33808}, {"name": "Marvel Enterprises", "id": 19551}], "release_date": "2008-12-05", "popularity": 1.38966044127146, "original_title": "Punisher: War Zone", "budget": 20500000, "cast": [{"name": "Ray Stevenson", "character": "Frank Castle", "id": 56614, "credit_id": "52fe45339251416c7504f089", "cast_id": 2, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 0}, {"name": "Dominic West", "character": "Billy Russoti / Jigsaw", "id": 17287, "credit_id": "52fe45339251416c7504f08d", "cast_id": 3, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 1}, {"name": "Doug Hutchison", "character": "Loony Bin Jim", "id": 6806, "credit_id": "52fe45339251416c7504f091", "cast_id": 4, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 2}, {"name": "Julie Benz", "character": "Angela Donatelli", "id": 35551, "credit_id": "52fe45339251416c7504f095", "cast_id": 5, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 3}, {"name": "Colin Salmon", "character": "Paul Budiansky", "id": 5414, "credit_id": "52fe45349251416c7504f099", "cast_id": 6, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 4}, {"name": "Wayne Knight", "character": "Micro", "id": 4201, "credit_id": "52fe45349251416c7504f09d", "cast_id": 7, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 5}, {"name": "Dash Mihok", "character": "Martin Soap", "id": 6066, "credit_id": "52fe45349251416c7504f0a1", "cast_id": 8, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 6}, {"name": "Mark Camacho", "character": "Pittsy", "id": 7013, "credit_id": "52fe45349251416c7504f0a5", "cast_id": 9, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 7}, {"name": "Stephanie Janusauskas", "character": "Grace", "id": 1366972, "credit_id": "5421ab930e0a260a13000138", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Romano Orzari", "character": "Nicky", "id": 96591, "credit_id": "5421aba6c3a3683544000100", "cast_id": 19, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 9}, {"name": "Keram Malicki-S\u00e1nchez", "character": "Ink", "id": 4134, "credit_id": "5421abb10e0a260a0f0000ee", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Larry Day", "character": "Agent Miller", "id": 60907, "credit_id": "5421abbdc3a36835310000fb", "cast_id": 21, "profile_path": "/kkYxACTQis5p1X5VPxLhsxFGprg.jpg", "order": 11}, {"name": "Ron Lea", "character": "Captain Ross", "id": 44248, "credit_id": "5421abc8c3a3683539000104", "cast_id": 22, "profile_path": "/r5nCNE1IgpYL9JzmV7cFBqabjSM.jpg", "order": 12}, {"name": "Tony Calabretta", "character": "Saffiotti", "id": 119479, "credit_id": "5421abd3c3a36835350000e9", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "T.J. Storm", "character": "Maginty", "id": 980805, "credit_id": "5421abde0e0a260a1c0000f7", "cast_id": 24, "profile_path": "/mjDnRk9PC4MKB7De7mVpx4NayrB.jpg", "order": 14}], "directors": [{"name": "Lexi Alexander", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504f085", "profile_path": "/38jezS5VqFM9gRQ75dj7rJe4Ucb.jpg", "id": 56359}], "vote_average": 5.6, "runtime": 107}, "62211": {"poster_path": "/flXrt9Dh0Tki6zOgX0TOq63KpG8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 743559607, "overview": "A look at the relationship between Mike and Sulley during their days at Monsters University \u2014 when they weren't necessarily the best of friends.", "video": false, "id": 62211, "genres": [{"id": 16, "name": "Animation"}], "title": "Monsters University", "tagline": "School never looked this scary.", "vote_count": 1372, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uzKkKhTWGSEdsN2rYanJTVAyTLi.jpg", "poster_path": "/8xHtCUKfre8b4tkpUWU1y67Cnqr.jpg", "id": 137696, "name": "Monsters, Inc. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1453405", "adult": false, "backdrop_path": "/5mDCKKS7M8aUZKdShnCa7lLbzmH.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2013-06-21", "popularity": 1.83514403849462, "original_title": "Monsters University", "budget": 200000000, "cast": [{"name": "Billy Crystal", "character": "Michael \"Mike\" Wazowski (voice)", "id": 7904, "credit_id": "52fe4675c3a368484e091dcd", "cast_id": 6, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 0}, {"name": "John Goodman", "character": "James P. \"Sulley\" Sullivan (voice)", "id": 1230, "credit_id": "52fe4675c3a368484e091dc9", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Randall Boggs (voice)", "id": 884, "credit_id": "52fe4675c3a368484e091dc5", "cast_id": 3, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Helen Mirren", "character": "Dean Hardscrabble (voice)", "id": 15735, "credit_id": "52fe4675c3a368484e091dd7", "cast_id": 10, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 3}, {"name": "Joel Murray", "character": "Don Carlton (voice)", "id": 155649, "credit_id": "52fe4675c3a368484e091e15", "cast_id": 26, "profile_path": "/euFBBlZ7Q8clCJE3VYPutQR35R7.jpg", "order": 4}, {"name": "Peter Sohn", "character": "Scott \u201cSquishy\u201d Squibbles (voice)", "id": 21198, "credit_id": "52fe4675c3a368484e091e19", "cast_id": 27, "profile_path": "/ouaPg2hdBBXfq8N7HPatvEq3P81.jpg", "order": 5}, {"name": "Sean Hayes", "character": "Terri Perry (voice)", "id": 52601, "credit_id": "52fe4675c3a368484e091dfd", "cast_id": 20, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 6}, {"name": "Dave Foley", "character": "Terry Perry (voice)", "id": 21290, "credit_id": "52fe4675c3a368484e091df9", "cast_id": 19, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 7}, {"name": "Charlie Day", "character": "Art (voice)", "id": 95101, "credit_id": "52fe4675c3a368484e091ded", "cast_id": 16, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 8}, {"name": "Alfred Molina", "character": "Professor Knight (voice)", "id": 658, "credit_id": "52fe4675c3a368484e091df1", "cast_id": 17, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 9}, {"name": "Tyler Labine", "character": "Brock Pearson (voice)", "id": 51383, "credit_id": "52fe4675c3a368484e091e09", "cast_id": 23, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 10}, {"name": "Nathan Fillion", "character": "Johnny Worthington (voice)", "id": 51797, "credit_id": "52fe4675c3a368484e091e01", "cast_id": 21, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 11}, {"name": "Aubrey Plaza", "character": "Greek Council President (voice)", "id": 119592, "credit_id": "52fe4675c3a368484e091e05", "cast_id": 22, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 12}, {"name": "Bobby Moynihan", "character": "Chet Alexander (voice)", "id": 452205, "credit_id": "52fe4675c3a368484e091e1d", "cast_id": 28, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 13}, {"name": "Julia Sweeney", "character": "Ms. Squibbles (voice)", "id": 11806, "credit_id": "52fe4675c3a368484e091e21", "cast_id": 29, "profile_path": "/hy7ZoNmr0h3AcrBkbnTLOXZnwRd.jpg", "order": 14}, {"name": "Bonnie Hunt", "character": "Karen Graves (voice)", "id": 5149, "credit_id": "52fe4675c3a368484e091e11", "cast_id": 25, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 15}, {"name": "John Krasinski", "character": "\u201cFrightening\u201d Frank McCay (voice)", "id": 17697, "credit_id": "52fe4675c3a368484e091e0d", "cast_id": 24, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 16}, {"name": "Frank Oz", "character": "Fungus (voice)", "id": 7908, "credit_id": "52fe4675c3a368484e091df5", "cast_id": 18, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 17}, {"name": "Beth Behrs", "character": "Carrie Williams (voice)", "id": 482044, "credit_id": "52fe4675c3a368484e091e25", "cast_id": 30, "profile_path": "/fsqd93OGqBmzd17W3p9Ipt2ADEm.jpg", "order": 18}, {"name": "John Ratzenberger", "character": "Yeti (voice)", "id": 7907, "credit_id": "52fe4675c3a368484e091e29", "cast_id": 31, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 19}, {"name": "Bill Hader", "character": "Referee (voice)", "id": 19278, "credit_id": "52fe4675c3a368484e091e2d", "cast_id": 32, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 20}, {"name": "Bob Peterson", "character": "Roz (voice)", "id": 10, "credit_id": "52fe4675c3a368484e091e31", "cast_id": 34, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 21}, {"name": "Noah Johnston", "character": "Young Mike (voice)", "id": 1271300, "credit_id": "52fe4675c3a368484e091e35", "cast_id": 35, "profile_path": null, "order": 22}], "directors": [{"name": "Dan Scanlon", "department": "Directing", "job": "Director", "credit_id": "52fe4675c3a368484e091dd3", "profile_path": null, "id": 225976}], "vote_average": 7.0, "runtime": 104}, "13060": {"poster_path": "/f0w6G44wfcnWe4gu3fn75b1pksV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don't go missing every year.", "video": false, "id": 13060, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Lifted", "tagline": "Failure is an option.", "vote_count": 90, "homepage": "http://www.pixar.com/shorts/lift/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0945571", "adult": false, "backdrop_path": "/ddo2bZttzPgbCt7Xv7FKPNBhVCF.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2006-12-28", "popularity": 0.338176420592149, "original_title": "Lifted", "budget": 0, "cast": [], "directors": [{"name": "Gary Rydstrom", "department": "Directing", "job": "Director", "credit_id": "52fe45349251416c7504f20d", "profile_path": "/jZpr1nVfO7lldWI0YtmP1FGw7Rj.jpg", "id": 2216}], "vote_average": 7.9, "runtime": 5}, "62213": {"poster_path": "/6125p54Jnog3kFsY33oMQF3d1dJ.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245527149, "overview": "Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.", "video": false, "id": 62213, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Dark Shadows", "tagline": "Every Family Has Its Demons", "vote_count": 788, "homepage": "http://darkshadowsmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1077368", "adult": false, "backdrop_path": "/thzGA2cOW37jCxJ7sJeBNGVGZKj.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Infinitum Nihil", "id": 2691}, {"name": "GK Films", "id": 3281}], "release_date": "2012-05-11", "popularity": 1.8363510783905, "original_title": "Dark Shadows", "budget": 150000000, "cast": [{"name": "Johnny Depp", "character": "Barnabas Collins", "id": 85, "credit_id": "52fe4675c3a368484e091eb3", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Elizabeth Collins Stoddard", "id": 1160, "credit_id": "52fe4676c3a368484e091ebb", "cast_id": 6, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "Dr. Julia Hoffman", "id": 1283, "credit_id": "52fe4676c3a368484e091ec3", "cast_id": 8, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Jackie Earle Haley", "character": "Willie Loomis", "id": 17183, "credit_id": "52fe4676c3a368484e091ec7", "cast_id": 9, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 4}, {"name": "Jonny Lee Miller", "character": "Roger Collins", "id": 9012, "credit_id": "52fe4676c3a368484e091ed9", "cast_id": 15, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 4}, {"name": "Eva Green", "character": "Angelique Bouchard", "id": 10912, "credit_id": "52fe4675c3a368484e091eb7", "cast_id": 5, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 5}, {"name": "Bella Heathcote", "character": "Victoria Winters", "id": 234982, "credit_id": "52fe4676c3a368484e091ecb", "cast_id": 11, "profile_path": "/iqk9bZnrkLhIQbHPyrGcMK0Bzni.jpg", "order": 6}, {"name": "Chlo\u00eb Grace Moretz", "character": "Carolyn Stoddard", "id": 56734, "credit_id": "52fe4676c3a368484e091ebf", "cast_id": 7, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 8}, {"name": "Gulliver McGrath", "character": "David Collins", "id": 234983, "credit_id": "52fe4676c3a368484e091ecf", "cast_id": 12, "profile_path": "/jpDJNQtrtHMPqpssxd8RudVhn5x.jpg", "order": 8}, {"name": "Christopher Lee", "character": "Clarney", "id": 113, "credit_id": "52fe4676c3a368484e091eff", "cast_id": 23, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 9}, {"name": "Alice Cooper", "character": "Alice Cooper", "id": 35824, "credit_id": "52fe4676c3a368484e091f03", "cast_id": 24, "profile_path": "/Aj964wqD6ItA2rwSBKlgl0kzuGf.jpg", "order": 10}, {"name": "Ivan Kaye", "character": "Joshua Collins", "id": 39683, "credit_id": "52fe4676c3a368484e091f07", "cast_id": 25, "profile_path": "/kYVCt7fF3U6VwCipPqlZvHnP2sX.jpg", "order": 11}, {"name": "Susanna Cappellaro", "character": "Naomi Collins", "id": 1096866, "credit_id": "52fe4676c3a368484e091f0b", "cast_id": 26, "profile_path": "/63kPbbGiV4OudAa2fNxGt67zvHe.jpg", "order": 12}, {"name": "Raffey Cassidy", "character": "Young Angelique", "id": 1055230, "credit_id": "52fe4676c3a368484e091efb", "cast_id": 21, "profile_path": "/zrnh9Xju0UiOr8NeP1060TuNbzo.jpg", "order": 13}, {"name": "Josephine Butler", "character": "David's Mother", "id": 211897, "credit_id": "535f6804c3a36830b90065cf", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Michael Shannon", "character": "Board Member 2", "id": 1184168, "credit_id": "54808f27c3a36829b5003755", "cast_id": 29, "profile_path": "/iIKbgOWkiyDTT1ip3mSUxWRZTWZ.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4675c3a368484e091ea3", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 5.6, "runtime": 113}, "62214": {"poster_path": "/zMFJ0Uy9y0Oy3KPbgtRic6IYzRk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81491068, "overview": "Young Victor conducts a science experiment to bring his beloved dog Sparky back to life, only to face unintended, sometimes monstrous, consequences.", "video": false, "id": 62214, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Frankenweenie", "tagline": "The electrifying dog is back from beyond the grave", "vote_count": 314, "homepage": "http://disney.go.com/frankenweenie/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1142977", "adult": false, "backdrop_path": "/u19sv7CyDcr5eONL7LtemPaStXt.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2012-10-04", "popularity": 1.12673718376555, "original_title": "Frankenweenie", "budget": 39000000, "cast": [{"name": "Charlie Tahan", "character": "Victor Frankenstein", "id": 49918, "credit_id": "52fe4676c3a368484e091f91", "cast_id": 20, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Elsa Van Helsing", "id": 1920, "credit_id": "52fe4676c3a368484e091f53", "cast_id": 5, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Mrs Frankenstein / Weird Girl / Gym Teacher", "id": 11514, "credit_id": "52fe4676c3a368484e091f57", "cast_id": 7, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "Martin Short", "character": "Mr. Frankenstein / Mr. Burgemeister / Nassor", "id": 519, "credit_id": "52fe4676c3a368484e091f5f", "cast_id": 9, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 3}, {"name": "Martin Landau", "character": "Mr. Rzykruski", "id": 2641, "credit_id": "52fe4676c3a368484e091f5b", "cast_id": 8, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 4}, {"name": "Atticus Shaffer", "character": "Edgar", "id": 66646, "credit_id": "52fe4676c3a368484e091f63", "cast_id": 10, "profile_path": "/mkAkUn9STorZx8frBoWzM6e1rfD.jpg", "order": 5}, {"name": "Robert Capron", "character": "Bob", "id": 111922, "credit_id": "52fe4676c3a368484e091f67", "cast_id": 11, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 6}, {"name": "Glenn Shadix", "character": "", "id": 13243, "credit_id": "52fe4676c3a368484e091f6b", "cast_id": 12, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 7}, {"name": "Conchata Ferrell", "character": "Bob's Mom", "id": 1909, "credit_id": "52fe4676c3a368484e091f8d", "cast_id": 19, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 8}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4676c3a368484e091f3d", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.4, "runtime": 87}, "62215": {"poster_path": "/aZgaCUhjUOO4qlRWlOFXfSwaTjO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 3029870, "overview": "Two sisters find their already strained relationship challenged as a mysterious new planet threatens to collide with Earth.", "video": false, "id": 62215, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Melancholia", "tagline": "Enjoy it while it lasts", "vote_count": 212, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1527186", "adult": false, "backdrop_path": "/3JUBYKEXOfEIbJBNBRJklK8ggmO.jpg", "production_companies": [{"name": "Legion Entertainment", "id": 38069}, {"name": "Zentropa Entertainments", "id": 76}, {"name": "Memfis Film", "id": 321}, {"name": "Zentropa International Sweden", "id": 8288}, {"name": "Slot Machine", "id": 7777}, {"name": "Liberator Productions", "id": 11239}, {"name": "Zentropa International K\u00f6ln", "id": 8289}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Danmarks Radio (DR)", "id": 119}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Canal+", "id": 5358}, {"name": "Centre National du Cin\u00e9ma et de L'image Anim\u00e9e (CNC)", "id": 17298}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Edition Video", "id": 38071}, {"name": "Nordisk Film Distribution", "id": 38072}, {"name": "Det Danske Filminstitut", "id": 118}, {"name": "Eurimages", "id": 850}, {"name": "Swedish Film Institute", "id": 14804}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 27897}], "release_date": "2011-05-26", "popularity": 0.694099762440629, "original_title": "Melancholia", "budget": 7400000, "cast": [{"name": "Kirsten Dunst", "character": "Justine", "id": 205, "credit_id": "52fe4676c3a368484e091fbb", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Charlotte Gainsbourg", "character": "Claire", "id": 4273, "credit_id": "52fe4676c3a368484e091fbf", "cast_id": 3, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Kiefer Sutherland", "character": "John", "id": 2628, "credit_id": "52fe4676c3a368484e091fc3", "cast_id": 4, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 2}, {"name": "Charlotte Rampling", "character": "Gaby", "id": 44079, "credit_id": "52fe4676c3a368484e091fc7", "cast_id": 5, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 3}, {"name": "John Hurt", "character": "Dexter", "id": 5049, "credit_id": "52fe4676c3a368484e091fcb", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Alexander Skarsg\u00e5rd", "character": "Michael", "id": 28846, "credit_id": "52fe4676c3a368484e091fcf", "cast_id": 7, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 5}, {"name": "Stellan Skarsg\u00e5rd", "character": "Jack", "id": 1640, "credit_id": "52fe4676c3a368484e091fd3", "cast_id": 8, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 6}, {"name": "Brady Corbet", "character": "Tim", "id": 55493, "credit_id": "52fe4676c3a368484e091fd7", "cast_id": 9, "profile_path": "/cnlvcYJP4UyeKdbCCuTKvFkjWSH.jpg", "order": 7}, {"name": "Udo Kier", "character": "Wedding planner", "id": 1646, "credit_id": "52fe4676c3a368484e091fdb", "cast_id": 10, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 8}, {"name": "Jesper Christensen", "character": "Little Father", "id": 2244, "credit_id": "52fe4676c3a368484e091fdf", "cast_id": 11, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 9}, {"name": "Cameron Spurr", "character": "Leo", "id": 234986, "credit_id": "52fe4676c3a368484e091fe3", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Deborah Fronko", "character": "Michael's mother", "id": 234987, "credit_id": "52fe4676c3a368484e091fe7", "cast_id": 13, "profile_path": null, "order": 11}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe4676c3a368484e091fb7", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.8, "runtime": 136}, "37645": {"poster_path": "/wTYZjPq4YA2wC99MdHZTFQuxFpd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Charly Mattei\u0308 has turned his back on his life as an outlaw. For the last three years, he's led a peaceful life devoting himself to his wife and two children. Then, one winter morning, he's left for dead in the parking garage in Marseille's Old Port, with 22 bullets in his body. Against all the odds, he doesn't die...", "video": false, "id": 37645, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "22 Bullets", "tagline": "The revenge of the Professional.", "vote_count": 80, "homepage": "http://www.22bullets.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1167638", "adult": false, "backdrop_path": "/t4d5z96VgQ2Vd9DshAcmd3cJg9b.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2010-03-23", "popularity": 0.588550900505024, "original_title": "L'Immortel", "budget": 24000000, "cast": [{"name": "Jean Reno", "character": "Charly Matte\u00ef", "id": 1003, "credit_id": "52fe465e9251416c910523ff", "cast_id": 1, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Gabriella Wright", "character": "Yasmina Telaa", "id": 118200, "credit_id": "52fe465e9251416c91052403", "cast_id": 2, "profile_path": "/tKPC9lweFGHwSOgEmhklw7OjHlR.jpg", "order": 1}, {"name": "Jean-Pierre Darroussin", "character": "Martin Beaudinard", "id": 28463, "credit_id": "52fe465e9251416c9105241f", "cast_id": 9, "profile_path": "/d3lWrOKPwy0qJGdqe5SZHZ83TU0.jpg", "order": 2}, {"name": "Marina Fo\u00efs", "character": "Marie Goldman", "id": 76820, "credit_id": "52fe465e9251416c91052423", "cast_id": 10, "profile_path": "/hkTVJ1gZZjHwUzNwT5pt2I3UNe.jpg", "order": 3}, {"name": "Richard Berry", "character": "Aurelio Rampoli", "id": 35896, "credit_id": "52fe465e9251416c91052427", "cast_id": 11, "profile_path": "/uQBEzoj08NPA0HEEY6Dm4FTNpcb.jpg", "order": 4}, {"name": "JoeyStarr", "character": "Pistachio", "id": 51508, "credit_id": "52fe465e9251416c9105242b", "cast_id": 12, "profile_path": "/72QcBdrKi0leFIeUWYo1KDPX9RP.jpg", "order": 5}, {"name": "Dominique Thomas", "character": "Ange Palardo", "id": 126725, "credit_id": "52fe465f9251416c9105242f", "cast_id": 13, "profile_path": "/3M3K3F1sq0oIHE0Bqtb80gQTqLr.jpg", "order": 6}, {"name": "Kad Merad", "character": "Tony Zacchia", "id": 22306, "credit_id": "52fe465f9251416c91052469", "cast_id": 25, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 7}, {"name": "Luc Palun", "character": "Pascal Vasetto", "id": 144955, "credit_id": "52fe465f9251416c9105246d", "cast_id": 26, "profile_path": "/7LEtVQVi9kpXMZgj3Al7LN1PizE.jpg", "order": 8}, {"name": "Martial Bezot", "character": "Franck Rabou", "id": 144956, "credit_id": "52fe465f9251416c91052471", "cast_id": 27, "profile_path": "/rK6AqV9ZKBbr2IJlqcgPF9ctIlY.jpg", "order": 9}, {"name": "Daniel Lundh", "character": "MaleTelaa", "id": 144957, "credit_id": "52fe465f9251416c91052475", "cast_id": 28, "profile_path": "/k5w8eIj08voHbJYCMWCDC07hrI7.jpg", "order": 10}, {"name": "Jose\u0301phine Berry", "character": "Eva Matte\u00ef", "id": 144958, "credit_id": "52fe465f9251416c91052479", "cast_id": 29, "profile_path": "/kxrtRO0o0Wb2jsagWg1gGareorQ.jpg", "order": 11}, {"name": "Max Baissette de Malglaive", "character": "Anatole MatteMatte\u00ef", "id": 72945, "credit_id": "52fe465f9251416c9105247d", "cast_id": 30, "profile_path": null, "order": 12}], "directors": [{"name": "Richard Berry", "department": "Directing", "job": "Director", "credit_id": "52fe465e9251416c91052409", "profile_path": "/uQBEzoj08NPA0HEEY6Dm4FTNpcb.jpg", "id": 35896}], "vote_average": 6.5, "runtime": 115}, "8346": {"poster_path": "/vqGs8K6MdMHVPMTgMhzKHBVgu0t.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368744044, "overview": "A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.", "video": false, "id": 8346, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "My Big Fat Greek Wedding", "tagline": "Love is here to stay... so is her family.", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0259446", "adult": false, "backdrop_path": "/idxWoU1eYssOmaRx9W8pkHgKXyc.jpg", "production_companies": [{"name": "MPH Entertainment", "id": 2388}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Playtone Productions", "id": 4170}], "release_date": "2002-02-22", "popularity": 0.857801600771349, "original_title": "My Big Fat Greek Wedding", "budget": 5000000, "cast": [{"name": "Nia Vardalos", "character": "Toula", "id": 54645, "credit_id": "52fe44a1c3a36847f80a1037", "cast_id": 3, "profile_path": "/5gFPZcVc00uXhzslKOZ2DmWoTSH.jpg", "order": 0}, {"name": "John Corbett", "character": "Ian Miller", "id": 38405, "credit_id": "52fe44a1c3a36847f80a103f", "cast_id": 5, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 1}, {"name": "Lainie Kazan", "character": "Maria Portokalos", "id": 53647, "credit_id": "52fe44a1c3a36847f80a1047", "cast_id": 7, "profile_path": "/qI20obSkCyWbo13xh20rWeUuMXp.jpg", "order": 2}, {"name": "Michael Constantine", "character": "Gus Portokalos", "id": 14884, "credit_id": "52fe44a1c3a36847f80a103b", "cast_id": 4, "profile_path": "/fZXfSyDEeIWzGudVhgwG3f9HTl0.jpg", "order": 3}, {"name": "Andrea Martin", "character": "Aunt Voula", "id": 8263, "credit_id": "52fe44a1c3a36847f80a1053", "cast_id": 10, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 4}, {"name": "Joey Fatone", "character": "Angelo", "id": 54651, "credit_id": "52fe44a1c3a36847f80a1063", "cast_id": 14, "profile_path": "/iTd8c8goQhPKeOimyeNIQOydwKt.jpg", "order": 5}, {"name": "Louis Mandylor", "character": "Nick Portokalos", "id": 54649, "credit_id": "52fe44a1c3a36847f80a1057", "cast_id": 11, "profile_path": "/7RBLuDriYPoewbr4B0T5dof4oeF.jpg", "order": 6}, {"name": "Gia Carides", "character": "Cousin Nikki", "id": 14226, "credit_id": "52fe44a1c3a36847f80a105f", "cast_id": 13, "profile_path": "/hd4wkz74R00PDkMhCMuH2qqH2Yt.jpg", "order": 7}, {"name": "Christina Eleusiniotis", "character": "Toula as child", "id": 54646, "credit_id": "52fe44a1c3a36847f80a1043", "cast_id": 6, "profile_path": null, "order": 8}, {"name": "Marita Zouravlioff", "character": "Toula Teenager", "id": 54647, "credit_id": "52fe44a1c3a36847f80a104b", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Gerry Mendicino", "character": "Uncle Taki", "id": 54650, "credit_id": "52fe44a1c3a36847f80a105b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Bess Meisler", "character": "Yiayia", "id": 54648, "credit_id": "52fe44a1c3a36847f80a104f", "cast_id": 9, "profile_path": null, "order": 11}, {"name": "Jayne Eastwood", "character": "Mrs. White", "id": 4568, "credit_id": "52fe44a1c3a36847f80a1067", "cast_id": 15, "profile_path": "/fUYBG960fMkGDiNzcz7ERjB6BHe.jpg", "order": 12}, {"name": "Fiona Reid", "character": "Harriet Miller", "id": 54652, "credit_id": "52fe44a1c3a36847f80a106b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Bruce Gray", "character": "Rodney Miller", "id": 5945, "credit_id": "52fe44a1c3a36847f80a106f", "cast_id": 17, "profile_path": "/z0uEl3in5hsCD4TYTBqCtmqCdwo.jpg", "order": 14}, {"name": "Frank Falcone", "character": "Suitor", "id": 1202716, "credit_id": "52fe44a1c3a36847f80a109d", "cast_id": 25, "profile_path": "/xR1bKrgkj1oGmKbceuVXgHjpDMp.jpg", "order": 15}], "directors": [{"name": "Joel Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe44a1c3a36847f80a102d", "profile_path": "/vP5MtUckpCluHWmGzyzDlUdTAvk.jpg", "id": 54644}], "vote_average": 5.9, "runtime": 95}, "816": {"poster_path": "/1Ly0MRK2Na0aRpy2bD6GBRP3Rzx.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67683989, "overview": "As a swingin' fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy, baby! But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.", "video": false, "id": 816, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Austin Powers: International Man of Mystery", "tagline": "If he were any cooler, he'd still be frozen, baby!", "vote_count": 274, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3QJMI8nqQcwU5JBPy26m8TUXtTN.jpg", "poster_path": "/9fg3fFqjr2ofmgjyWKfKgv6ZLu0.jpg", "id": 1006, "name": "Austin Powers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118655", "adult": false, "backdrop_path": "/jHRi1YBxU80WTm8PyfrAZiyUC9r.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Capella International", "id": 594}, {"name": "Eric's Boy", "id": 595}], "release_date": "1997-05-02", "popularity": 0.987109863324564, "original_title": "Austin Powers: International Man of Mystery", "budget": 16500000, "cast": [{"name": "Mike Myers", "character": "Austin Powers / Dr. Evil", "id": 12073, "credit_id": "52fe427ac3a36847f8021f2f", "cast_id": 30, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Elizabeth Hurley", "character": "Vanessa Kensington", "id": 13918, "credit_id": "52fe427ac3a36847f8021e95", "cast_id": 1, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 1}, {"name": "Michael York", "character": "Basil Exposition", "id": 13919, "credit_id": "52fe427ac3a36847f8021e99", "cast_id": 2, "profile_path": "/xrgHhenCH3c2qKE7dYgOy9WZtZt.jpg", "order": 2}, {"name": "Mimi Rogers", "character": "Mrs. Kensington", "id": 13920, "credit_id": "52fe427ac3a36847f8021e9d", "cast_id": 3, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 3}, {"name": "Seth Green", "character": "Scott Evil", "id": 13922, "credit_id": "52fe427ac3a36847f8021ea1", "cast_id": 4, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 4}, {"name": "Fabiana Udenio", "character": "Alotta Fagina", "id": 13923, "credit_id": "52fe427ac3a36847f8021ea5", "cast_id": 5, "profile_path": "/60hBZQm3FVtQ99qNmLDUT93z6S6.jpg", "order": 5}, {"name": "Mindy Sterling", "character": "Frau Farbissina", "id": 13924, "credit_id": "52fe427ac3a36847f8021ea9", "cast_id": 6, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 6}, {"name": "Paul Dillon", "character": "Patty O'Brien", "id": 13925, "credit_id": "52fe427ac3a36847f8021ead", "cast_id": 7, "profile_path": "/6jouXtMcbJ7nTuDNwvaePnqCHTX.jpg", "order": 7}, {"name": "Robert Wagner", "character": "Number two", "id": 9208, "credit_id": "52fe427ac3a36847f8021f33", "cast_id": 31, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 8}, {"name": "Charles Napier", "character": "Cmdr. Gilmour", "id": 16119, "credit_id": "52fe427ac3a36847f8021f3d", "cast_id": 33, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 9}, {"name": "Will Ferrell", "character": "Mustafa", "id": 23659, "credit_id": "52fe427ac3a36847f8021f41", "cast_id": 34, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 10}, {"name": "Joann Richter", "character": "'60s Model", "id": 1008676, "credit_id": "52fe427ac3a36847f8021f45", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Anastasia Sakelaris", "character": "'60s Model", "id": 170491, "credit_id": "52fe427ac3a36847f8021f49", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Afifi Alaouie", "character": "'60s Model", "id": 32288, "credit_id": "52fe427ac3a36847f8021f4d", "cast_id": 37, "profile_path": "/puhe0iGlllu6Sqx0yjc0nlRgY5W.jpg", "order": 13}, {"name": "Monet Mazur", "character": "Mod Girl", "id": 34844, "credit_id": "52fe427ac3a36847f8021f51", "cast_id": 38, "profile_path": "/lvLC6Sjt8pETC3La8rGvhyYWSx0.jpg", "order": 14}, {"name": "Clint Howard", "character": "Johnson Ritter", "id": 15661, "credit_id": "52fe427ac3a36847f8021f55", "cast_id": 39, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 15}, {"name": "Elya Baskin", "character": "Gen. Borschevsky", "id": 2368, "credit_id": "52fe427ac3a36847f8021f59", "cast_id": 40, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 16}, {"name": "Joe Grisaffi", "character": "Gunman (uncredited)", "id": 1146942, "credit_id": "54e85b6c9251412eb1001868", "cast_id": 41, "profile_path": "/2QQcjENUjpp5xpCJ2mpFobiczOo.jpg", "order": 17}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021eb3", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.4, "runtime": 94}, "13090": {"poster_path": "/9JkxUbOFiomw2Ci8ayTfAT69s0k.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16174377, "overview": "A single mom and her slacker sister find an unexpected way to turn their lives around in the off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business, a biohazard removal/crime scene clean-up service.", "video": false, "id": 13090, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Sunshine Cleaning", "tagline": "", "vote_count": 56, "homepage": "http://www.sunshinecleaning-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0862846", "adult": false, "backdrop_path": "/o2ZmWvRFnqNURvf9NC5FkrUdSQu.jpg", "production_companies": [{"name": "Overture Films", "id": 12807}, {"name": "Big Beach Films", "id": 12808}, {"name": "Back Lot Pictures", "id": 7374}], "release_date": "2008-01-18", "popularity": 0.300221834512965, "original_title": "Sunshine Cleaning", "budget": 5000000, "cast": [{"name": "Amy Adams", "character": "Rose Lorkowski", "id": 9273, "credit_id": "52fe45389251416c7504f971", "cast_id": 1, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Emily Blunt", "character": "Norah Lorkowski", "id": 5081, "credit_id": "52fe45389251416c7504f975", "cast_id": 2, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 1}, {"name": "Alan Arkin", "character": "Joe", "id": 1903, "credit_id": "52fe45389251416c7504f979", "cast_id": 3, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "Mary Lynn Rajskub", "character": "Lynn", "id": 25884, "credit_id": "52fe45389251416c7504f97d", "cast_id": 4, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 3}, {"name": "Eric Christian Olsen", "character": "Randy", "id": 29020, "credit_id": "52fe45389251416c7504f981", "cast_id": 5, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 4}, {"name": "Jason Spevack", "character": "Oscar Lorkowski", "id": 74151, "credit_id": "52fe45389251416c7504f985", "cast_id": 6, "profile_path": "/l1DzCYtyuzKi6fa1MdEOMmemQ8T.jpg", "order": 5}, {"name": "Kevin Chapman", "character": "Carl Swanson", "id": 4728, "credit_id": "52fe45389251416c7504f989", "cast_id": 7, "profile_path": "/7uhnHTZ8W4FsSTtbBSCuyeGGqlK.jpg", "order": 6}, {"name": "Steve Zahn", "character": "Mac", "id": 18324, "credit_id": "52fe45389251416c7504f98d", "cast_id": 8, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 7}, {"name": "Clifton Collins, Jr.", "character": "Winston", "id": 5365, "credit_id": "52fe45389251416c7504f991", "cast_id": 9, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 8}], "directors": [{"name": "Christine Jeffs", "department": "Directing", "job": "Director", "credit_id": "52fe45399251416c7504f99d", "profile_path": "/n7Ni5nhnutHTK4tz3klIjogu2K0.jpg", "id": 74152}], "vote_average": 6.3, "runtime": 102}, "70435": {"poster_path": "/ex20WLKixijBBA50WaUt1K1HVpU.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33372606, "overview": "Mallory Kane is a highly trained operative who works for a government security contractor in the dirtiest, most dangerous corners of the world. After successfully freeing a Chinese journalist held hostage, she is double crossed and left for dead by someone close to her in her own agency. Suddenly the target of skilled assassins who know her every move, Mallory must find the truth in order to stay alive.", "video": false, "id": 70435, "genres": [{"id": 53, "name": "Thriller"}], "title": "Haywire", "tagline": "They left her no choice.", "vote_count": 175, "homepage": "http://www.haywiremovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1506999", "adult": false, "backdrop_path": "/g9CDUXFBflsIch95wZxeNajTTX2.jpg", "production_companies": [{"name": "Irish Film Board", "id": 5267}, {"name": "Relativity Media", "id": 7295}], "release_date": "2011-12-31", "popularity": 0.787875496682233, "original_title": "Haywire", "budget": 23000000, "cast": [{"name": "Gina Carano", "character": "Mallory Kane", "id": 78452, "credit_id": "52fe47f8c3a368484e0e32d9", "cast_id": 6, "profile_path": "/jAYNPdJYu35eoRdI25fYa5jtsbR.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Kenneth", "id": 3061, "credit_id": "52fe47f8c3a368484e0e32c9", "cast_id": 2, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Michael Fassbender", "character": "Paul", "id": 17288, "credit_id": "52fe47f8c3a368484e0e32cd", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 2}, {"name": "Bill Paxton", "character": "John Kane", "id": 2053, "credit_id": "52fe47f8c3a368484e0e32d5", "cast_id": 5, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Channing Tatum", "character": "Aaron", "id": 38673, "credit_id": "52fe47f8c3a368484e0e32d1", "cast_id": 4, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 4}, {"name": "Antonio Banderas", "character": "Rodrigo", "id": 3131, "credit_id": "52fe47f8c3a368484e0e32e5", "cast_id": 9, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 5}, {"name": "Michael Douglas", "character": "Alex Coblenz", "id": 3392, "credit_id": "52fe47f8c3a368484e0e32e1", "cast_id": 8, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 6}, {"name": "Michael Angarano", "character": "Scott", "id": 11665, "credit_id": "52fe47f8c3a368484e0e32dd", "cast_id": 7, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 7}, {"name": "Mathieu Kassovitz", "character": "Studer", "id": 2406, "credit_id": "52fe47f8c3a368484e0e3335", "cast_id": 23, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 8}, {"name": "Eddie J. Fernandez", "character": "Barroso", "id": 18300, "credit_id": "5412bf9f0e0a26731b000e9c", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Anthony Wong", "character": "Jiang", "id": 930817, "credit_id": "5412c01f0e0a26730a000ec9", "cast_id": 26, "profile_path": "/qCXdSClvG2EaXFO3xAyAZdNjXYD.jpg", "order": 10}, {"name": "Tim Connolly", "character": "Jason", "id": 1089920, "credit_id": "5412c049c3a3682f55000e59", "cast_id": 27, "profile_path": "/vbOiWLjS6fpVkgx8b7Owsw8v8ml.jpg", "order": 11}, {"name": "Max Arciniega", "character": "Gomez", "id": 1046460, "credit_id": "5412c05ac3a3682f55000e5b", "cast_id": 28, "profile_path": "/hRyw2cglnWU42vHZUag7b9dIf4u.jpg", "order": 12}, {"name": "Aaron Cohen", "character": "Jamie", "id": 140616, "credit_id": "52fe47f8c3a368484e0e3307", "cast_id": 15, "profile_path": "/mJ3R3kNxIfIhirFQcvk8HUS8Ulb.jpg", "order": 13}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe47f8c3a368484e0e32c5", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 5.5, "runtime": 93}, "70436": {"poster_path": "/hvWiERBXBa8RDYNdNzCbdVbUWFH.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "RS", "name": "Serbia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22485095, "overview": "A fictionalized account of the last days of Edgar Allan Poe's life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer's stories.", "video": false, "id": 70436, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Raven", "tagline": "The only one who can stop a serial killer is the man who inspired him.", "vote_count": 115, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1486192", "adult": false, "backdrop_path": "/djghCuCGrxtguiwIbqJbYi6f7EY.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Galavis Film", "id": 8084}, {"name": "Pioneer Pictures", "id": 9217}], "release_date": "2012-03-09", "popularity": 0.718249415835372, "original_title": "The Raven", "budget": 26000000, "cast": [{"name": "John Cusack", "character": "Edgar Allan Poe", "id": 3036, "credit_id": "52fe47f8c3a368484e0e337f", "cast_id": 3, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Luke Evans", "character": "Detective Emmett Fields", "id": 114019, "credit_id": "52fe47f8c3a368484e0e3383", "cast_id": 4, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 1}, {"name": "Alice Eve", "character": "Emily", "id": 59860, "credit_id": "52fe47f8c3a368484e0e337b", "cast_id": 2, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 2}, {"name": "Brendan Gleeson", "character": "Colonel Hamilton", "id": 2039, "credit_id": "52fe47f8c3a368484e0e3387", "cast_id": 5, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 3}, {"name": "Kevin McNally", "character": "Maddux", "id": 2449, "credit_id": "52fe47f8c3a368484e0e338f", "cast_id": 7, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 4}, {"name": "Oliver Jackson-Cohen", "character": "John Cantrell", "id": 551020, "credit_id": "52fe47f8c3a368484e0e3397", "cast_id": 10, "profile_path": "/qRtqkOYzm26zsZ9lRp8GQ1qO8ft.jpg", "order": 5}, {"name": "Jimmy Yuill", "character": "Captain Eldridge", "id": 151797, "credit_id": "52fe47f8c3a368484e0e338b", "cast_id": 6, "profile_path": "/zeuinVj4XOYzWSty96mM3SaD1mB.jpg", "order": 6}, {"name": "Pam Ferris", "character": "Mrs. Bradley", "id": 11213, "credit_id": "52fe47f8c3a368484e0e340b", "cast_id": 30, "profile_path": "/i9ou0K069ce8rL1OeWEZRukCBCk.jpg", "order": 7}, {"name": "Brendan Coyle", "character": "Reagan", "id": 74056, "credit_id": "52fe47f8c3a368484e0e3393", "cast_id": 9, "profile_path": "/oJm8VYhuYk05rDU1XdDBXBqWka6.jpg", "order": 8}, {"name": "Dave Legeno", "character": "Percy", "id": 60348, "credit_id": "52fe47f8c3a368484e0e339b", "cast_id": 11, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 9}, {"name": "Michael Shannon", "character": "Dr. Morgan", "id": 1184168, "credit_id": "54808f5ec3a36829ae002b60", "cast_id": 31, "profile_path": "/iIKbgOWkiyDTT1ip3mSUxWRZTWZ.jpg", "order": 10}], "directors": [{"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe47f8c3a368484e0e3377", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 6.2, "runtime": 111}, "163": {"poster_path": "/4irBEiDC7SpYBuw5z1c7oLfF0EI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362744280, "overview": "Danny Ocean reunites with his old flame and the rest of his merry band of thieves in a caper concerning three huge heists in Rome, Paris and Amsterdam. But Europol agent Isabel Lahiri is hot on their heels.", "video": false, "id": 163, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ocean's Twelve", "tagline": "Twelve is the new eleven.", "vote_count": 794, "homepage": "http://oceans12.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/vxmFb03PyjycekffLqXqFibbCzx.jpg", "poster_path": "/CZs07c4vgMdPXqtVu7y8yhCdFx.jpg", "id": 304, "name": "Ocean's Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0349903", "adult": false, "backdrop_path": "/gfWrFaEhSfofcUCBx7C6IBDtW8T.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Section Eight", "id": 129}, {"name": "WV Films III", "id": 12202}], "release_date": "2004-12-09", "popularity": 1.12983037819817, "original_title": "Ocean's Twelve", "budget": 110000000, "cast": [{"name": "George Clooney", "character": "Danny Ocean", "id": 1461, "credit_id": "52fe4221c3a36847f80062e1", "cast_id": 11, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Rusty Ryan", "id": 287, "credit_id": "52fe4221c3a36847f80062e5", "cast_id": 12, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Isabel Lahiri", "id": 1922, "credit_id": "52fe4221c3a36847f80062e9", "cast_id": 13, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "Julia Roberts", "character": "Tess Ocean", "id": 1204, "credit_id": "52fe4221c3a36847f80062ed", "cast_id": 14, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 3}, {"name": "Andy Garc\u00eda", "character": "Terry Benedict", "id": 1271, "credit_id": "52fe4221c3a36847f80062f1", "cast_id": 15, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 4}, {"name": "Casey Affleck", "character": "Virgil Malloy", "id": 1893, "credit_id": "52fe4221c3a36847f80062f5", "cast_id": 16, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 5}, {"name": "Scott Caan", "character": "Turk Malloy", "id": 1894, "credit_id": "52fe4221c3a36847f80062f9", "cast_id": 17, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "Shaobo Qin", "character": "Yen", "id": 1900, "credit_id": "52fe4221c3a36847f80062fd", "cast_id": 18, "profile_path": "/d12Ni5dBctraHwkPsmLl6gPt3PR.jpg", "order": 7}, {"name": "Bernie Mac", "character": "Frank Catton", "id": 1897, "credit_id": "52fe4221c3a36847f8006301", "cast_id": 19, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 8}, {"name": "Don Cheadle", "character": "Basher Tarr", "id": 1896, "credit_id": "52fe4221c3a36847f8006305", "cast_id": 20, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 9}, {"name": "Matt Damon", "character": "Linus Caldwell", "id": 1892, "credit_id": "52fe4221c3a36847f8006309", "cast_id": 21, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 10}, {"name": "Carl Reiner", "character": "Saul Bloom", "id": 1895, "credit_id": "52fe4221c3a36847f800630d", "cast_id": 22, "profile_path": "/mG0YcJ72Dw0jwFvg44lncv21mut.jpg", "order": 11}, {"name": "Eddie Jemison", "character": "Livingston Dell", "id": 1898, "credit_id": "52fe4221c3a36847f8006311", "cast_id": 23, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 12}, {"name": "Elliott Gould", "character": "Reuben Tishkoff", "id": 827, "credit_id": "52fe4221c3a36847f8006315", "cast_id": 24, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 13}, {"name": "Robbie Coltrane", "character": "Matsui", "id": 1923, "credit_id": "52fe4221c3a36847f8006319", "cast_id": 25, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 14}, {"name": "Jeroen Krabb\u00e9", "character": "van der Woude", "id": 1924, "credit_id": "52fe4221c3a36847f800631d", "cast_id": 26, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 15}, {"name": "Vincent Cassel", "character": "Fran\u00e7ois Toulour", "id": 1925, "credit_id": "52fe4221c3a36847f8006321", "cast_id": 27, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 16}, {"name": "Eddie Izzard", "character": "Roman Nagel", "id": 1926, "credit_id": "52fe4221c3a36847f8006325", "cast_id": 28, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 17}, {"name": "Bruce Willis", "character": "Himself", "id": 62, "credit_id": "52fe4221c3a36847f8006329", "cast_id": 29, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 18}, {"name": "Cherry Jones", "character": "Molly Star/ Mrs. Caldwell", "id": 1956, "credit_id": "52fe4221c3a36847f800632d", "cast_id": 30, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 19}, {"name": "Albert Finney", "character": "Gaspar LeMarque", "id": 3926, "credit_id": "52fe4221c3a36847f8006331", "cast_id": 31, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 20}, {"name": "Adriano Giannini", "character": "Museum Director", "id": 73475, "credit_id": "52fe4221c3a36847f8006335", "cast_id": 32, "profile_path": "/3vuYXxVPcH6nDlCjliGTisrh90D.jpg", "order": 21}, {"name": "Johan Widerberg", "character": "Johan", "id": 96935, "credit_id": "52fe4221c3a36847f800633f", "cast_id": 34, "profile_path": null, "order": 22}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f80062ad", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.3, "runtime": 125}, "54054": {"poster_path": "/g8BxtvxvfbiM1UsJUyFjqeygrye.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36893721, "overview": "Stephanie Plum (Katherine Heigl), an unemployed lingerie buyer, convinces her bail bondsman cousin, Vinnie (Patrick Fischler), to give her a shot as a bounty hunter. Her first assignment is to track down a former cop, Joe Morelli (Jason O'Mara), on the run for murder -- the same man who broke her heart years before. With the help of some friends and the best bounty hunter in the business, Ranger (Daniel Sunjata), she slowly learns what it takes to be a true bounty hunter.", "video": false, "id": 54054, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "One for the Money", "tagline": "She's looking for a few not-so-good men", "vote_count": 116, "homepage": "http://www.oneforthemoneyfilm.com/index2.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1598828", "adult": false, "backdrop_path": "/aoXNn1N5En9XxENR4J2Cg13CdEV.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Sidney Kimmel Entertainment", "id": 737}], "release_date": "2012-01-27", "popularity": 0.62033456503496, "original_title": "One for the Money", "budget": 40000000, "cast": [{"name": "Katherine Heigl", "character": "Stephanie Plum", "id": 25541, "credit_id": "52fe4888c3a36847f816c6ed", "cast_id": 3, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Jimmy Alpha", "id": 5723, "credit_id": "52fe4888c3a36847f816c6f1", "cast_id": 4, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Debbie Reynolds", "character": "Grandma Mazur", "id": 8857, "credit_id": "52fe4888c3a36847f816c6f5", "cast_id": 5, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 2}, {"name": "Sherri Shepherd", "character": "Lula", "id": 109561, "credit_id": "52fe4888c3a36847f816c6fd", "cast_id": 7, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 3}, {"name": "Patrick Fischler", "character": "Vinnie Plum", "id": 52801, "credit_id": "52fe4888c3a36847f816c701", "cast_id": 8, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 4}, {"name": "Daniel Sunjata", "character": "Ranger", "id": 10582, "credit_id": "52fe4888c3a36847f816c6f9", "cast_id": 6, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 5}, {"name": "Jason O'Mara", "character": "Joseph Morelli", "id": 183812, "credit_id": "52fe4888c3a36847f816c729", "cast_id": 15, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 6}], "directors": [{"name": "Julie Anne Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe4888c3a36847f816c6e3", "profile_path": "/6NBh5K9k5OV3RoU458RajwLjqOi.jpg", "id": 114597}], "vote_average": 5.3, "runtime": 91}, "86825": {"poster_path": "/vq4Medvdxd2G6WJXhN5vWHnWEhK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12077441, "overview": "After India's father dies, her Uncle Charlie, who she never knew existed, comes to live with her and her unstable mother. She comes to suspect this mysterious, charming man has ulterior motives and becomes increasingly infatuated with him.", "video": false, "id": 86825, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Stoker", "tagline": "Innocence Ends.", "vote_count": 342, "homepage": "http://www.foxsearchlight.com/stoker/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1682180", "adult": false, "backdrop_path": "/beq4jThOwhV7Y4mu67ubx3kOvaS.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2013-03-01", "popularity": 1.58980200186411, "original_title": "Stoker", "budget": 12000000, "cast": [{"name": "Mia Wasikowska", "character": "India Stoker", "id": 76070, "credit_id": "52fe49a39251416c910b3a9b", "cast_id": 4, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Evelyn 'Evie' Stoker", "id": 2227, "credit_id": "52fe49a29251416c910b3a97", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Dermot Mulroney", "character": "Richard Stoker", "id": 20212, "credit_id": "52fe49a29251416c910b3a93", "cast_id": 2, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 2}, {"name": "Matthew Goode", "character": "Uncle Charlie Stoker", "id": 1247, "credit_id": "52fe49a39251416c910b3a9f", "cast_id": 5, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 3}, {"name": "Lucas Till", "character": "Chris Pitts", "id": 429, "credit_id": "52fe49a39251416c910b3aa3", "cast_id": 6, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 4}, {"name": "Jacki Weaver", "character": "Aunt Gwendolyn 'Gin' Stoker", "id": 67837, "credit_id": "52fe49a39251416c910b3aad", "cast_id": 9, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 5}, {"name": "Ralph Brown", "character": "Sheriff Howard", "id": 53916, "credit_id": "52fe49a39251416c910b3ab1", "cast_id": 10, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 6}, {"name": "Alden Ehrenreich", "character": "Whip Taylor", "id": 71375, "credit_id": "52fe49a39251416c910b3ab5", "cast_id": 11, "profile_path": "/zJr5mpATjAxiJ1BRucMABJdys82.jpg", "order": 7}, {"name": "Phyllis Somerville", "character": "Mrs. McGarrick", "id": 17184, "credit_id": "52fe49a39251416c910b3afb", "cast_id": 23, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 8}, {"name": "David Alford", "character": "Reverend", "id": 944159, "credit_id": "52fe49a39251416c910b3aff", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Peg Allen", "character": "Housekeeper", "id": 128211, "credit_id": "52fe49a39251416c910b3b03", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Lauren E. Roman", "character": "Housekeeper", "id": 149569, "credit_id": "52fe49a39251416c910b3b07", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Tyler von Tagen", "character": "Young Richard Stoker", "id": 1271786, "credit_id": "52fe49a39251416c910b3b0b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Thomas A. Covert", "character": "Young Charles Stoker", "id": 1271787, "credit_id": "52fe49a39251416c910b3b0f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Jaxon Johnson", "character": "Jonathan SToker", "id": 1271788, "credit_id": "52fe49a39251416c910b3b13", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Paxton Johnson", "character": "Jonathan Stoker", "id": 1271789, "credit_id": "52fe49a39251416c910b3b17", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Judith Godr\u00e8che", "character": "Doctor Jacquin", "id": 73937, "credit_id": "52fe49a39251416c910b3b1b", "cast_id": 31, "profile_path": "/mbIrbBymdMVZIaNv0bDGUXKV7p7.jpg", "order": 16}], "directors": [{"name": "Park Chan-wook", "department": "Directing", "job": "Director", "credit_id": "52fe49a29251416c910b3a8f", "profile_path": "/eFRXaT3RMoPemwDLNvfiFP0h8RX.jpg", "id": 10099}], "vote_average": 6.1, "runtime": 98}, "86829": {"poster_path": "/mRYOb0fgxj3o03u5y62YPhAunby.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9685735, "overview": "In Greenwich Village in the early 1960s, gifted, but volatile musician Llewyn Davis contemplates leaving the music scene altogether to return to sea as a merchant marine after the suicide of his singing partner.", "video": false, "id": 86829, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Inside Llewyn Davis", "tagline": "", "vote_count": 184, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2042568", "adult": false, "backdrop_path": "/g3dKZtJrv8XHTMVbBc7S86OSDkn.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}, {"name": "StudioCanal", "id": 694}, {"name": "Anton Capital Entertainment (ACE)", "id": 20664}], "release_date": "2013-12-20", "popularity": 1.12302895349506, "original_title": "Inside Llewyn Davis", "budget": 0, "cast": [{"name": "Oscar Isaac", "character": "Llewyn Davis", "id": 25072, "credit_id": "52fe49a39251416c910b3b9d", "cast_id": 10, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 0}, {"name": "Carey Mulligan", "character": "Jean Berkey", "id": 36662, "credit_id": "52fe49a39251416c910b3b8d", "cast_id": 6, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Jim Berkey", "id": 12111, "credit_id": "52fe49a39251416c910b3b91", "cast_id": 7, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Jerry Grayson", "character": "Mel", "id": 60796, "credit_id": "52fe49a39251416c910b3bad", "cast_id": 14, "profile_path": null, "order": 3}, {"name": "Robin Bartlett", "character": "Lillian", "id": 11902, "credit_id": "52fe49a39251416c910b3ba5", "cast_id": 12, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 4}, {"name": "Max Casella", "character": "Pappi", "id": 7133, "credit_id": "52fe49a39251416c910b3ba9", "cast_id": 13, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 5}, {"name": "Adam Driver", "character": "Al Cody", "id": 1023139, "credit_id": "52fe49a39251416c910b3bb5", "cast_id": 16, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 6}, {"name": "Ethan Phillips", "character": "Mitch", "id": 29445, "credit_id": "52fe49a39251416c910b3ba1", "cast_id": 11, "profile_path": "/clvz59hE09gV2a3FYNBsjUPvPgz.jpg", "order": 7}, {"name": "Jeanine Serralles", "character": "Joy", "id": 979432, "credit_id": "52fe49a39251416c910b3bb1", "cast_id": 15, "profile_path": "/n9GvVB4wYbjdoobGWy4l3IyzsdT.jpg", "order": 8}, {"name": "Garrett Hedlund", "character": "Johnny Five", "id": 9828, "credit_id": "52fe49a39251416c910b3b95", "cast_id": 8, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 9}, {"name": "John Goodman", "character": "Roland Turner", "id": 1230, "credit_id": "52fe49a39251416c910b3b99", "cast_id": 9, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 10}, {"name": "Stark Sands", "character": "Troy Nelson", "id": 33532, "credit_id": "52fe49a39251416c910b3bb9", "cast_id": 17, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 11}, {"name": "Alex Karpovsky", "character": "Marty Green", "id": 123515, "credit_id": "52fe49a39251416c910b3bbd", "cast_id": 18, "profile_path": "/bd30q2fn3yBSL58n0Y1IQsoLZgz.jpg", "order": 12}, {"name": "F. Murray Abraham", "character": "Bud Grossman", "id": 1164, "credit_id": "52fe49a39251416c910b3bc1", "cast_id": 19, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 13}, {"name": "Benjamin Pike", "character": "Young Bob", "id": 1142258, "credit_id": "552bcb38c3a36859cf0070da", "cast_id": 42, "profile_path": "/oPT14s4lIzAogmzaObsuyhZfAB.jpg", "order": 14}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe49a39251416c910b3b77", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe49a39251416c910b3b7d", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.1, "runtime": 105}, "157832": {"poster_path": "/wotMGTYpRevp9F86z0x6jjv4fNI.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "After he is threatened during a confession, a good-natured priest must battle the dark forces closing in around him.", "video": false, "id": 157832, "genres": [{"id": 18, "name": "Drama"}], "title": "Calvary", "tagline": "", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2234003", "adult": false, "backdrop_path": "/oPDiCIdNsECwJJg5pdqRd6d5k6C.jpg", "production_companies": [{"name": "Irish Film Board", "id": 5267}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Octagon Films", "id": 1266}, {"name": "Reprisal Films", "id": 7308}], "release_date": "2014-04-11", "popularity": 1.26013780271515, "original_title": "Calvary", "budget": 0, "cast": [{"name": "Brendan Gleeson", "character": "Father James Lavelle", "id": 2039, "credit_id": "52fe4bd49251416c910e6f49", "cast_id": 10, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 0}, {"name": "Chris O'Dowd", "character": "Jack Brennan", "id": 40477, "credit_id": "52fe4bd49251416c910e6f39", "cast_id": 6, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 1}, {"name": "Kelly Reilly", "character": "Fiona Lavelle", "id": 17521, "credit_id": "52fe4bd49251416c910e6f41", "cast_id": 8, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 2}, {"name": "Aidan Gillen", "character": "Dr. Frank Harte", "id": 49735, "credit_id": "52fe4bd49251416c910e6f45", "cast_id": 9, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 3}, {"name": "Dylan Moran", "character": "Michael Fitzgerald", "id": 7028, "credit_id": "5347ce91c3a368671c00111b", "cast_id": 11, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 4}, {"name": "Isaach De Bankol\u00e9", "character": "Simon", "id": 4812, "credit_id": "5347ceabc3a368671c00111f", "cast_id": 12, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 5}, {"name": "M. Emmet Walsh", "character": "The Writer", "id": 588, "credit_id": "5347ceb9c3a3686704001114", "cast_id": 13, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 6}, {"name": "Marie-Jos\u00e9e Croze", "character": "Teresa", "id": 8791, "credit_id": "5347cec4c3a368672d00110e", "cast_id": 14, "profile_path": "/geZ08Bzueh6qDEGGUR7jQgomLks.jpg", "order": 7}, {"name": "Domhnall Gleeson", "character": "Freddie Joyce", "id": 93210, "credit_id": "52fe4bd49251416c910e6f3d", "cast_id": 7, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 8}, {"name": "David Wilmot", "character": "Father Leary", "id": 73287, "credit_id": "53de6b6d0e0a265a8d00277a", "cast_id": 15, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 9}, {"name": "Gary Lydon", "character": "Inspector Stanton", "id": 93209, "credit_id": "53de6b770e0a265a830027de", "cast_id": 16, "profile_path": "/azTMUVMcNbJG3wdmBUIlzCHHEJw.jpg", "order": 10}, {"name": "Killian Scott", "character": "Milo Herlihy", "id": 1189005, "credit_id": "53de6b830e0a265a930026b2", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Orla O'Rourke", "character": "Veronica Brennan", "id": 107393, "credit_id": "53de6b8f0e0a265a90002774", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Owen Sharpe", "character": "Leo", "id": 1349273, "credit_id": "53de6ba50e0a265a930026b8", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "David McSavage", "character": "Bishop Garret Montgomery", "id": 1349274, "credit_id": "53de6bb60e0a265a8a0025b2", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Michael Og Lane", "character": "M\u00edche\u00e1l", "id": 1349275, "credit_id": "53de6bc50e0a265a930026c5", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Mark O'Halloran", "character": "Prison Officer", "id": 87908, "credit_id": "53de6bd20e0a265a990024da", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "John Michael McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e6f1d", "profile_path": "/kYGIKwsaKLkXfWDJIm2ClHuvzby.jpg", "id": 65594}], "vote_average": 7.3, "runtime": 100}, "86834": {"poster_path": "/5wioUjzwr91fvq7ydunxK2CPSxi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362637473, "overview": "A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.", "video": false, "id": 86834, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Noah", "tagline": "The end of the world is just the beginning.", "vote_count": 849, "homepage": "http://www.noahmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1959490", "adult": false, "backdrop_path": "/jnoJgpITphPoqA3e7JnNC4mtAVX.jpg", "production_companies": [{"name": "Disruption Entertainment", "id": 10256}, {"name": "Paramount Pictures", "id": 4}, {"name": "Regency Enterprises", "id": 508}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "2014-03-26", "popularity": 1.7795561534324, "original_title": "Noah", "budget": 125000000, "cast": [{"name": "Russell Crowe", "character": "Noah", "id": 934, "credit_id": "52fe49a39251416c910b3c79", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Naameh", "id": 6161, "credit_id": "52fe49a39251416c910b3c7d", "cast_id": 5, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Emma Watson", "character": "Ila", "id": 10990, "credit_id": "52fe49a39251416c910b3c81", "cast_id": 6, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Logan Lerman", "character": "Ham", "id": 33235, "credit_id": "52fe49a39251416c910b3c8d", "cast_id": 9, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 3}, {"name": "Anthony Hopkins", "character": "Methuselah", "id": 4173, "credit_id": "52fe49a39251416c910b3c89", "cast_id": 8, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 5}, {"name": "Ray Winstone", "character": "Tubal Cain", "id": 5538, "credit_id": "52fe49a49251416c910b3ceb", "cast_id": 25, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 6}, {"name": "Kevin Durand", "character": "Og", "id": 79072, "credit_id": "52fe49a49251416c910b3cef", "cast_id": 26, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 7}, {"name": "Ariane Rinehart", "character": "Eve", "id": 1274232, "credit_id": "52fe49a49251416c910b3cf3", "cast_id": 27, "profile_path": "/cRcCEcNtpfp43YZ98EDMhLSRlTA.jpg", "order": 8}, {"name": "Douglas Booth", "character": "Shem", "id": 230680, "credit_id": "52fe49a49251416c910b3cf7", "cast_id": 28, "profile_path": "/3YMp0bU20VKCzJj6xTEO2u34VRE.jpg", "order": 9}, {"name": "Marton Csokas", "character": "Lamech", "id": 20982, "credit_id": "52fe49a49251416c910b3cfb", "cast_id": 29, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 10}, {"name": "Dakota Goyo", "character": "Young Noah", "id": 234479, "credit_id": "52fe49a49251416c910b3cff", "cast_id": 30, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 11}, {"name": "Barry Sloane", "character": "Poacher Leader", "id": 183538, "credit_id": "52fe49a49251416c910b3d03", "cast_id": 31, "profile_path": "/kZIPKGCKE47d92mrLN5DbWpsENe.jpg", "order": 12}, {"name": "Sami Gayle", "character": "Sami", "id": 506085, "credit_id": "52fe49a49251416c910b3d07", "cast_id": 32, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 13}, {"name": "Mark Margolis", "character": "Magog (voice)", "id": 1173, "credit_id": "52fe49a49251416c910b3d0b", "cast_id": 33, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 14}, {"name": "Ray Winstone", "character": "Tubal Cain", "id": 5538, "credit_id": "52fe49a49251416c910b3d0f", "cast_id": 34, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 15}, {"name": "Nick Nolte", "character": "Samyaza (voice)", "id": 1733, "credit_id": "52fe49a49251416c910b3d13", "cast_id": 35, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 16}, {"name": "Finn Wittrock", "character": "Young Tubal Cain", "id": 168877, "credit_id": "54a6d6c39251411f9000463b", "cast_id": 91, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 17}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe49a39251416c910b3c69", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 5.7, "runtime": 139}, "86837": {"poster_path": "/6jTshPGh5wCAT8lw5IGl5dG9bcj.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has an attack. The couple's bond of love is severely tested.", "video": false, "id": 86837, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10769, "name": "Foreign"}], "title": "Amour", "tagline": "", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1602620", "adult": false, "backdrop_path": "/laDq2WbQZD4Dtd87EfDzy0KF6MS.jpg", "production_companies": [{"name": "Wega Film", "id": 224}, {"name": "Les Films du Losange", "id": 223}, {"name": "X-Filme Creative Pool", "id": 1972}], "release_date": "2012-12-19", "popularity": 0.594608954145683, "original_title": "Amour", "budget": 8900000, "cast": [{"name": "Emmanuelle Riva", "character": "Anne", "id": 267962, "credit_id": "52fe49a49251416c910b3d81", "cast_id": 6, "profile_path": "/vxHV2opZSmeP7K0OnrXArSJOiPQ.jpg", "order": 0}, {"name": "Jean-Louis Trintignant", "character": "Georges", "id": 1352, "credit_id": "52fe49a49251416c910b3d79", "cast_id": 4, "profile_path": "/zy5AZv507gEndkgGCTtNkRS2vUC.jpg", "order": 1}, {"name": "Isabelle Huppert", "character": "Eva", "id": 17882, "credit_id": "52fe49a49251416c910b3d75", "cast_id": 3, "profile_path": "/nrbXaDh5zQEi2G7T5OILInm3f9p.jpg", "order": 2}, {"name": "William Shimell", "character": "Geoff", "id": 140238, "credit_id": "52fe49a49251416c910b3d7d", "cast_id": 5, "profile_path": "/1ma32O9mAUEDJCaFIed10j85bu.jpg", "order": 3}, {"name": "Rita Blanco", "character": "Concierge", "id": 109713, "credit_id": "52fe49a49251416c910b3d85", "cast_id": 9, "profile_path": "/sMKLvQEvC4NPlotv1ZZsJCHJVhB.jpg", "order": 4}, {"name": "Dinara Drukarova", "character": "Nurse #2", "id": 543366, "credit_id": "52fe49a49251416c910b3d8d", "cast_id": 11, "profile_path": "/72mZ7xeDQFbh7FQ5DNx00WJKXNn.jpg", "order": 5}, {"name": "Carole Franck", "character": "Nurse #1", "id": 17463, "credit_id": "52fe49a49251416c910b3d89", "cast_id": 10, "profile_path": "/1AgGjzMrBsSb5H4JKfPegeSRBJb.jpg", "order": 7}, {"name": "Laurent Capelluto", "character": "Police Officer #1", "id": 228719, "credit_id": "52fe49a49251416c910b3d91", "cast_id": 12, "profile_path": "/fE6HK47D9rLnHwspIt27aCcFhz6.jpg", "order": 7}, {"name": "Damien Jouillerot", "character": "Paramedic #1", "id": 109474, "credit_id": "52fe49a49251416c910b3d95", "cast_id": 15, "profile_path": "/w9l38afj7ttNaUMoQfM8p0CrHwZ.jpg", "order": 8}, {"name": "Walid Afkir", "character": "Paramedic #2", "id": 6016, "credit_id": "52fe49a49251416c910b3d99", "cast_id": 16, "profile_path": "/4bpned4xIoKFFSUpICxDpvsyOaZ.jpg", "order": 9}], "directors": [{"name": "Michael Haneke", "department": "Directing", "job": "Director", "credit_id": "52fe49a49251416c910b3d6b", "profile_path": "/xxHw9hBEXL4BrktfG3Q3vVZBx2D.jpg", "id": 6011}], "vote_average": 7.4, "runtime": 127}, "86838": {"poster_path": "/3Zs6Ne6QAEOzQRz85VToH8ml6ab.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 19422261, "overview": "A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster's beloved Shih Tzu.", "video": false, "id": 86838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Seven Psychopaths", "tagline": "They Won't Take Any Shih Tzu.", "vote_count": 426, "homepage": "http://www.sevenpsychopaths.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt1931533", "adult": false, "backdrop_path": "/4H6vE7fvB0gvaaSRJyguUu67FvF.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}, {"name": "Film4", "id": 9349}, {"name": "British Film Institute (BFI)", "id": 7281}, {"name": "Blueprint Pictures", "id": 2376}], "release_date": "2012-10-12", "popularity": 1.00877041791904, "original_title": "Seven Psychopaths", "budget": 15000000, "cast": [{"name": "Colin Farrell", "character": "Marty", "id": 72466, "credit_id": "52fe49a49251416c910b3df5", "cast_id": 3, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Sam Rockwell", "character": "Billy", "id": 6807, "credit_id": "52fe49a49251416c910b3e01", "cast_id": 6, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Hans", "id": 4690, "credit_id": "52fe49a49251416c910b3e05", "cast_id": 7, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Charlie", "id": 57755, "credit_id": "52fe49a49251416c910b3df9", "cast_id": 4, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Abbie Cornish", "character": "Kaya", "id": 37260, "credit_id": "52fe49a49251416c910b3dfd", "cast_id": 5, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 4}, {"name": "Tom Waits", "character": "Zachariah", "id": 2887, "credit_id": "52fe49a49251416c910b3e0d", "cast_id": 9, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 5}, {"name": "Linda Bright Clay", "character": "Myra", "id": 1170658, "credit_id": "52fe49a49251416c910b3e67", "cast_id": 28, "profile_path": "/amQEG4egh4s4cp1RCc192RVc8w5.jpg", "order": 6}, {"name": "Olga Kurylenko", "character": "Angela", "id": 18182, "credit_id": "52fe49a49251416c910b3e09", "cast_id": 8, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 7}, {"name": "Gabourey Sidibe", "character": "Sharice", "id": 109560, "credit_id": "52fe49a49251416c910b3e11", "cast_id": 10, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 8}, {"name": "\u017deljko Ivanek", "character": "Paolo", "id": 6752, "credit_id": "52fe49a49251416c910b3e15", "cast_id": 11, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 9}, {"name": "Long Nguyen", "character": "Vietnamese Priest", "id": 111185, "credit_id": "52fe49a49251416c910b3e5b", "cast_id": 25, "profile_path": "/nK95uO8Y2bYxfZ83ojYNeFBRejV.jpg", "order": 10}, {"name": "Amanda Mason Warren", "character": "Maggie (as Amanda Warren)", "id": 1170657, "credit_id": "52fe49a49251416c910b3e63", "cast_id": 27, "profile_path": "/90D0bcAXjKWBal5nWskJJuam2Lf.jpg", "order": 11}, {"name": "Christine Marzano", "character": "The Hooker", "id": 1170656, "credit_id": "52fe49a49251416c910b3e5f", "cast_id": 26, "profile_path": "/kyPcf8uN1BC6bYNXh1NLK71QNWl.jpg", "order": 12}, {"name": "Kevin Corrigan", "character": "Dennis", "id": 18472, "credit_id": "52fe49a49251416c910b3e73", "cast_id": 31, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 13}, {"name": "Michael Pitt", "character": "Larry", "id": 10692, "credit_id": "52fe49a49251416c910b3e47", "cast_id": 20, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 14}, {"name": "Michael Stuhlbarg", "character": "Tommy", "id": 72873, "credit_id": "52fe49a49251416c910b3e4b", "cast_id": 21, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 15}, {"name": "Harry Dean Stanton", "character": "Man in Hat", "id": 5048, "credit_id": "52fe49a49251416c910b3e4f", "cast_id": 22, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 16}, {"name": "Helena Mattsson", "character": "Blonde Lady", "id": 113676, "credit_id": "52fe49a49251416c910b3e43", "cast_id": 19, "profile_path": "/jXksDiD2NATlan04QXqKusOx5XY.jpg", "order": 17}, {"name": "Brendan Sexton III", "character": "Young Zachariah", "id": 2839, "credit_id": "52fe49a49251416c910b3e53", "cast_id": 23, "profile_path": "/kQsOIQuGcqwdpolSEzLV7RfYVsV.jpg", "order": 18}, {"name": "John Bishop", "character": "The Butcher", "id": 1145861, "credit_id": "52fe49a49251416c910b3e57", "cast_id": 24, "profile_path": "/r8iqyLXz0TrsCc61qtuNjOcFAaq.jpg", "order": 19}, {"name": "James Landry H\u00e9bert", "character": "Killer (as James H\u00e9bert)", "id": 1170659, "credit_id": "52fe49a49251416c910b3e6b", "cast_id": 29, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 20}, {"name": "Tai Chan Ngo", "character": "Fellow Monk", "id": 1118671, "credit_id": "52fe49a49251416c910b3e6f", "cast_id": 30, "profile_path": "/5uS7GEw52eduYD1eTsBQmytsOTa.jpg", "order": 21}, {"name": "Joseph Lyle Taylor", "character": "Al", "id": 159879, "credit_id": "52fe49a49251416c910b3e77", "cast_id": 32, "profile_path": "/9CIOs5oFBZMpIczFK0qTRTbeVlO.jpg", "order": 22}, {"name": "Ronnie Gene Blevins", "character": "First Cop (as Ronnie Blevins)", "id": 98804, "credit_id": "52fe49a49251416c910b3e7b", "cast_id": 33, "profile_path": "/oRQxtpbG1jeeUJjx1oKuLldHtol.jpg", "order": 23}, {"name": "Christian Barillas", "character": "Catholic Priest", "id": 1055520, "credit_id": "52fe49a49251416c910b3e7f", "cast_id": 34, "profile_path": "/xG9I3CwAz8CrDpz6qRJoDzpkxOa.jpg", "order": 24}, {"name": "Christopher Gehrman", "character": "Cellmate", "id": 71686, "credit_id": "52fe49a49251416c910b3e83", "cast_id": 35, "profile_path": "/xMU5lni74vhleYeGjx2Du1BE4JD.jpg", "order": 25}], "directors": [{"name": "Martin McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe49a49251416c910b3deb", "profile_path": "/yvpnpkDG0yV0No6TuZ8QorFZ8d.jpg", "id": 54472}], "vote_average": 6.4, "runtime": 110}, "9012": {"poster_path": "/iCB8mLrRoMp6sFta1qgZyZgmu9W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64282312, "overview": "Johnny Knoxville and his crazy friends appear on the big screen for the very first time in Jackass: The Movie. They wander around Japan in panda outfits, wreak havoc on a once civilized golf course, they even do stunts involving LIVE alligators, and so on. While Johnny Knoxvile and his pals put their life at risk, they are entertaining people at the same time. Get ready for Jackass: The Movie!!", "video": false, "id": 9012, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jackass: The Movie", "tagline": "Do not attempt this at home.", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lidPLbyE1JCUacEDOzkTCncCPBL.jpg", "poster_path": "/olpnvtLgoScLiCg3YHJ3f27F98f.jpg", "id": 17178, "name": "Jackass Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0322802", "adult": false, "backdrop_path": "/ljUOge9fGvyg47iK1GAjuNiVwBB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2002-10-21", "popularity": 0.70235130219739, "original_title": "Jackass: The Movie", "budget": 5000000, "cast": [{"name": "Johnny Knoxville", "character": "Himself", "id": 9656, "credit_id": "52fe44d1c3a36847f80abcaf", "cast_id": 14, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 0}, {"name": "Bam Margera", "character": "Himself", "id": 56584, "credit_id": "52fe44d1c3a36847f80abcb3", "cast_id": 15, "profile_path": "/7hgZtoC2QObiTd2k8zgG8SDOhP.jpg", "order": 1}, {"name": "Steve-O", "character": "Himself", "id": 56585, "credit_id": "52fe44d1c3a36847f80abcb7", "cast_id": 16, "profile_path": "/nbZ76ok91pHeg7frtd1uqzHn66l.jpg", "order": 2}, {"name": "Chris Pontius", "character": "Himself", "id": 56586, "credit_id": "52fe44d1c3a36847f80abcbb", "cast_id": 17, "profile_path": "/xTgZUtr8Lw7iKVhAZXW87Nk5IuJ.jpg", "order": 3}, {"name": "Dave England", "character": "Himself", "id": 86627, "credit_id": "53c453b8c3a3684cef00a524", "cast_id": 19, "profile_path": "/dox7RBYJxpqqYX3xu5OnprQPKim.jpg", "order": 4}, {"name": "Ryan Dunn", "character": "Himself", "id": 110068, "credit_id": "546805ef22136e1e240012b5", "cast_id": 28, "profile_path": "/ybO3aUa89Q0nKO2kt1hYeTXVdmO.jpg", "order": 5}, {"name": "Preston Lacy", "character": "Himself", "id": 76365, "credit_id": "53c4540dc3a3684cf4009dac", "cast_id": 21, "profile_path": "/1vlkX3gmAr72QujBRbIXZdkx1qT.jpg", "order": 6}, {"name": "Jason Acu\u00f1a", "character": "Wee Man", "id": 78840, "credit_id": "53c45437c3a3684cdf00a744", "cast_id": 22, "profile_path": "/xmO0gNr1fAyN8aKaSsv3zNG4gzK.jpg", "order": 7}, {"name": "Ehren McGhehey", "character": "Himself", "id": 220241, "credit_id": "53c45461c3a3687e59009a3f", "cast_id": 23, "profile_path": "/1lJjwoZUiLpHnCCCGUDDwrZ7uvY.jpg", "order": 8}, {"name": "Brandon DiCamillo", "character": "Himself", "id": 117289, "credit_id": "53c454e50e0a26158f00d045", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Phil Margera", "character": "Himself", "id": 117261, "credit_id": "53c455000e0a26157f00d9ad", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "April Margera", "character": "Herself", "id": 117287, "credit_id": "53c455130e0a26157600d95c", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Jess Margera", "character": "Himself", "id": 117260, "credit_id": "53c455320e0a26158900d7b1", "cast_id": 27, "profile_path": "/kSUMmj0jLs0bbn9rwVOnpdUMnxH.jpg", "order": 12}, {"name": "Stephanie Hodge", "character": "Herself", "id": 164944, "credit_id": "52fe44d1c3a36847f80abcbf", "cast_id": 18, "profile_path": "/l5GsrC7iHU9tg98LZhh8MzQktRL.jpg", "order": 13}], "directors": [{"name": "Jeff Tremaine", "department": "Directing", "job": "Director", "credit_id": "52fe44d1c3a36847f80abc63", "profile_path": "/4xrBnAaPUR91qFumZfd6gFK6xHx.jpg", "id": 56578}], "vote_average": 6.2, "runtime": 87}, "4922": {"poster_path": "/4O4INOPtWTfHq3dd5vYTPV0TCwa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 333932083, "overview": "Tells the story of Benjamin Button, a man who starts aging backwards with bizarre consequences.", "video": false, "id": 4922, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Curious Case of Benjamin Button", "tagline": "Life isn't measured in minutes, but in moments.", "vote_count": 852, "homepage": "http://www.benjaminbutton.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421715", "adult": false, "backdrop_path": "/xOXT99TBUgROWqbDvIoCvqogTo1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Paramount Pictures", "id": 4}, {"name": "Kennedy/Marshall Company, The", "id": 7383}], "release_date": "2008-11-24", "popularity": 1.39094963418968, "original_title": "The Curious Case of Benjamin Button", "budget": 150000000, "cast": [{"name": "Cate Blanchett", "character": "Daisy", "id": 112, "credit_id": "52fe43e2c3a36847f807632b", "cast_id": 4, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Benjamin Button", "id": 287, "credit_id": "52fe43e2c3a36847f807632f", "cast_id": 5, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Elizabeth Abbott", "id": 3063, "credit_id": "52fe43e2c3a36847f8076333", "cast_id": 6, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Elle Fanning", "character": "Daisy as a Child", "id": 18050, "credit_id": "52fe43e2c3a36847f8076337", "cast_id": 7, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 3}, {"name": "Jason Flemyng", "character": "Thomas Button", "id": 973, "credit_id": "52fe43e2c3a36847f807633b", "cast_id": 8, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Monsieur Gateau", "id": 13550, "credit_id": "52fe43e2c3a36847f807633f", "cast_id": 9, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Julia Ormond", "character": "Caroline", "id": 15887, "credit_id": "52fe43e2c3a36847f8076343", "cast_id": 10, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 6}, {"name": "Taraji P. Henson", "character": "Queenie", "id": 40036, "credit_id": "52fe43e2c3a36847f8076347", "cast_id": 11, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 7}, {"name": "Bianca Chiminello", "character": "Daisy's Best Friend", "id": 40038, "credit_id": "52fe43e2c3a36847f807634b", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Josh Stewart", "character": "Pleasant Curtis", "id": 40039, "credit_id": "52fe43e2c3a36847f807634f", "cast_id": 13, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 9}, {"name": "Faune A. Chambers", "character": "Dorothy Baker", "id": 58953, "credit_id": "52fe43e2c3a36847f8076359", "cast_id": 15, "profile_path": "/hJrfy8Cgd2Xm2hXvgXEOHmqvzZi.jpg", "order": 10}, {"name": "Donna DuPlantier", "character": "Blanche Devereux", "id": 230995, "credit_id": "52fe43e2c3a36847f807635d", "cast_id": 16, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 11}, {"name": "Jacob Tolano", "character": "Martin Gateau", "id": 1074186, "credit_id": "52fe43e2c3a36847f8076361", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Earl Maddox", "character": "Man at Train Station", "id": 60884, "credit_id": "52fe43e2c3a36847f8076365", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Ed Metzger", "character": "Teddy Roosevelt", "id": 231274, "credit_id": "52fe43e2c3a36847f8076369", "cast_id": 19, "profile_path": "/byJvOeZ2oHJ459AWFUVGXhANj8m.jpg", "order": 14}, {"name": "Danny Vinson", "character": "Priest Giving Last Rites", "id": 1074187, "credit_id": "52fe43e2c3a36847f807636d", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "David Jensen", "character": "Doctor at Benjamin's Birth", "id": 60875, "credit_id": "52fe43e2c3a36847f8076371", "cast_id": 21, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 16}, {"name": "Joeanna Sayler", "character": "Caroline Button", "id": 203867, "credit_id": "52fe43e2c3a36847f8076375", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Mahershalalhashbaz Ali", "character": "Tizzy", "id": 932967, "credit_id": "52fe43e2c3a36847f8076379", "cast_id": 23, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 18}, {"name": "Phyllis Somerville", "character": "Grandma Fuller", "id": 17184, "credit_id": "52fe43e2c3a36847f807637d", "cast_id": 24, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 19}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe43e2c3a36847f8076355", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.0, "runtime": 166}, "37686": {"poster_path": "/1JAKnHjENVz1adurNjtsWZnVQGY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 260095987, "overview": "In the summer of 1979, a group of friends in a small Ohio town witness a catastrophic train crash while making a super 8 movie and soon suspect that it was not an accident. Shortly after, unusual disappearances and inexplicable events begin to take place in town, and the local Deputy tries to uncover the truth \u2013 something more terrifying than any of them could have imagined.", "video": false, "id": 37686, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Super 8", "tagline": "It Arrives.", "vote_count": 724, "homepage": "http://www.super8-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1650062", "adult": false, "backdrop_path": "/exMT7YP7nY2XUHvUOPQxXocpFDg.jpg", "production_companies": [{"name": "K/O Camera Toys", "id": 23300}, {"name": "Paramount Pictures", "id": 4}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Bad Robot", "id": 11461}], "release_date": "2011-06-08", "popularity": 0.987174584678023, "original_title": "Super 8", "budget": 50000000, "cast": [{"name": "Joel Courtney", "character": "Joe Lamb", "id": 518627, "credit_id": "52fe46639251416c91052d3f", "cast_id": 14, "profile_path": "/bvhzhZbGMMuYx26USDw2ENagOfP.jpg", "order": 0}, {"name": "Elle Fanning", "character": "Alice Dainard", "id": 18050, "credit_id": "52fe46639251416c91052d29", "cast_id": 9, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 1}, {"name": "Riley Griffiths", "character": "Charles", "id": 518628, "credit_id": "52fe46639251416c91052d43", "cast_id": 15, "profile_path": "/oHpJuAK5LYxUehF2OIxdR5Sdelp.jpg", "order": 2}, {"name": "Kyle Chandler", "character": "Jackson Lamb", "id": 3497, "credit_id": "52fe46639251416c91052d25", "cast_id": 8, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 3}, {"name": "Noah Emmerich", "character": "Nelec", "id": 11315, "credit_id": "52fe46639251416c91052d31", "cast_id": 11, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 4}, {"name": "Amanda Michalka", "character": "Jen Kaznyk", "id": 113926, "credit_id": "52fe46639251416c91052d35", "cast_id": 12, "profile_path": "/5bj8eyZsc0UbZAxhhq8krrx5ygn.jpg", "order": 5}, {"name": "Ron Eldard", "character": "Louis Dainard", "id": 12260, "credit_id": "52fe46639251416c91052d2d", "cast_id": 10, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 6}, {"name": "Ryan Lee", "character": "Cary", "id": 456066, "credit_id": "52fe46639251416c91052d47", "cast_id": 16, "profile_path": "/ruZj8XZ77CppycNJ4oV3QUrAzvj.jpg", "order": 7}, {"name": "Gabriel Basso", "character": "Martin", "id": 222122, "credit_id": "52fe46639251416c91052d4b", "cast_id": 17, "profile_path": "/rHD6iBvmAYOtyFaV0wXJMvYZrMU.jpg", "order": 8}, {"name": "Zach Mills", "character": "Preston", "id": 23533, "credit_id": "52fe46639251416c91052d4f", "cast_id": 18, "profile_path": "/xziEsJgAFjQeWN3Z1tJdQZmJ2LX.jpg", "order": 9}, {"name": "Jessica Tuck", "character": "Mrs. Kaznyk", "id": 156689, "credit_id": "52fe46639251416c91052d53", "cast_id": 19, "profile_path": "/smsznskzjz5c6SbjEFW6kENGhho.jpg", "order": 10}, {"name": "Joel McKinnon Miller", "character": "Mr. Kaznyk", "id": 88950, "credit_id": "52fe46639251416c91052d57", "cast_id": 20, "profile_path": "/3Ogco60XoPVmbLTzqmhgxDgsQBW.jpg", "order": 11}, {"name": "Britt Flatmo", "character": "Peg Kaznyk", "id": 484293, "credit_id": "52fe46639251416c91052d5b", "cast_id": 21, "profile_path": "/kogtUvtmSR2QFqiRaKdXwlhtAwv.jpg", "order": 12}, {"name": "Glynn Turman", "character": "Dr. Woodward", "id": 114674, "credit_id": "52fe46639251416c91052d5f", "cast_id": 22, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 13}, {"name": "Richard T. Jones", "character": "Overmyer", "id": 55755, "credit_id": "52fe46639251416c91052d63", "cast_id": 23, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 14}, {"name": "Tom Quinn", "character": "Mr. McCandless", "id": 1115118, "credit_id": "52fe46639251416c91052d67", "cast_id": 25, "profile_path": "/goJeBvmLYutE2LYCoxGKTPxjGgA.jpg", "order": 15}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe46639251416c91052d09", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 6.4, "runtime": 112}, "4935": {"poster_path": "/iMarB2ior30OAXjPa7QIdeyUfM1.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 234710455, "overview": "When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking home.", "video": false, "id": 4935, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Howl's Moving Castle", "tagline": "Sophie has resigned herself to a boring fate, but fate has other plans for her", "vote_count": 591, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0347149", "adult": false, "backdrop_path": "/cGyqa5PxiWSsG7NSw3ufCj0JW9k.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "DENTSU Music And Entertainment", "id": 2752}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Buena Vista Home Entertainment", "id": 11200}, {"name": "Mitsubishi", "id": 11847}, {"name": "Tohokushinsha Film", "id": 12387}, {"name": "d-rights", "id": 12518}], "release_date": "2004-11-19", "popularity": 1.72543774454782, "original_title": "\u30cf\u30a6\u30eb\u306e\u52d5\u304f\u57ce", "budget": 24000000, "cast": [{"name": "Takuya Kimura", "character": "Hauru", "id": 12670, "credit_id": "52fe43e5c3a36847f8076c67", "cast_id": 6, "profile_path": "/cV3Zv5bL0OrWVo8iPx7VzbR0R4f.jpg", "order": 0}, {"name": "Akihiro Miwa", "character": "Arechi no Majo", "id": 20338, "credit_id": "52fe43e5c3a36847f8076c6b", "cast_id": 7, "profile_path": "/xQaxWhOqAZmRecv6ZratXzJVZzs.jpg", "order": 1}, {"name": "Tatsuya Gash\u00fbin", "character": "Karushif\u00e2", "id": 19592, "credit_id": "52fe43e5c3a36847f8076c6f", "cast_id": 8, "profile_path": "/dZ5KJLxLmoXIYrG7JcXuphGESIv.jpg", "order": 2}, {"name": "Mitsunori Isaki", "character": "Kosh\u00f4", "id": 40449, "credit_id": "52fe43e5c3a36847f8076c73", "cast_id": 10, "profile_path": "/eDTgtEndCYQKxtss46TzXnqE1it.jpg", "order": 3}, {"name": "Yo Oizumi", "character": "Kakashi no Kabu", "id": 40450, "credit_id": "52fe43e5c3a36847f8076c77", "cast_id": 11, "profile_path": "/avSKuYQiEHYY0eJoCFiKCyhGvcL.jpg", "order": 4}, {"name": "Akio \u00d4tsuka", "character": "Koku\u00f4", "id": 40451, "credit_id": "52fe43e5c3a36847f8076c7b", "cast_id": 12, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 5}, {"name": "Daijiro Harada", "character": "Hin", "id": 40452, "credit_id": "52fe43e5c3a36847f8076c7f", "cast_id": 13, "profile_path": "/vUHAPmFCAXzwOUgzR5BKfYbTu6K.jpg", "order": 6}, {"name": "Haruko Kato", "character": "Sariman", "id": 40453, "credit_id": "52fe43e5c3a36847f8076c83", "cast_id": 14, "profile_path": "/fpI47MewcRZn0Ro5LXRfrEptaWW.jpg", "order": 7}, {"name": "Ryunosuke Kamiki", "character": "Marukuru", "id": 225730, "credit_id": "52fe43e5c3a36847f8076ce7", "cast_id": 33, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 15}, {"name": "Chieko Baish\u00f4", "character": "Sofi", "id": 533325, "credit_id": "52fe43e5c3a36847f8076cef", "cast_id": 35, "profile_path": "/d9l3fFcn9phuRSRtsxJ3wnXNK6p.jpg", "order": 16}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe43e5c3a36847f8076c5d", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.8, "runtime": 119}, "37707": {"poster_path": "/eS2JQIJdCRLiMlAS1ckLQQ4BOEb.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Elsa and Clive, two young rebellious scientists, defy legal and ethical boundaries and forge ahead with a dangerous experiment: splicing together human and animal DNA to create a new organism. Named \"Dren\", the creature rapidly develops from a deformed female infant into a beautiful but dangerous winged human-chimera, who forges a bond with both of her creators - only to have that bond turn deadly.", "video": false, "id": 37707, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Splice", "tagline": "Science's newest miracle...is a mistake.", "vote_count": 149, "homepage": "http://www.splicethefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1017460", "adult": false, "backdrop_path": "/iPTMOZdrWE3q8rXQnUYSPRedah6.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Copperheart Entertainment", "id": 5106}, {"name": "Senator Entertainment Co", "id": 3319}], "release_date": "2009-10-06", "popularity": 0.450950993720709, "original_title": "Splice", "budget": 26000000, "cast": [{"name": "Adrien Brody", "character": "Clive", "id": 3490, "credit_id": "52fe46659251416c91053257", "cast_id": 2, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Sarah Polley", "character": "Elsa", "id": 98, "credit_id": "52fe46659251416c9105325b", "cast_id": 3, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 1}, {"name": "Delphine Chan\u00e9ac", "character": "Dren", "id": 118357, "credit_id": "52fe46659251416c9105325f", "cast_id": 4, "profile_path": "/en21TtTTtWfTZ5yqCGW0FQ2acxn.jpg", "order": 2}, {"name": "David Hewlett", "character": "Barlow", "id": 5892, "credit_id": "52fe46659251416c91053263", "cast_id": 5, "profile_path": "/yntJ7Lur8LmjQ9rTfoVzlKb5WsX.jpg", "order": 3}, {"name": "Abigail Chu", "character": "Yang Dren", "id": 88931, "credit_id": "52fe46659251416c91053267", "cast_id": 6, "profile_path": "/erbfyBNGmUGb0X84lItZBBZ8trk.jpg", "order": 4}, {"name": "Stephanie Baird", "character": "Elsa / PD", "id": 118358, "credit_id": "52fe46659251416c9105326b", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Brandon McGibbon", "character": "Gavin", "id": 81801, "credit_id": "52fe46659251416c9105326f", "cast_id": 9, "profile_path": "/bkOiaf6zOHzRjkT2rM0KMrB6lJg.jpg", "order": 6}, {"name": "Amanda Brugel", "character": "Melinda Finch", "id": 1232769, "credit_id": "52fe46669251416c910532a3", "cast_id": 19, "profile_path": "/h7gjTxkROWvaKgC0YeigrbjU4lf.jpg", "order": 7}], "directors": [{"name": "Vincenzo Natali", "department": "Directing", "job": "Director", "credit_id": "537385f1c3a36815300013b0", "profile_path": "/4rdmLwBRQKs1gpjEfrTxabOUerv.jpg", "id": 5877}], "vote_average": 5.4, "runtime": 104}, "160588": {"poster_path": "/aBSeKszOStTx5TO2koGUpl9oTrV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97505481, "overview": "Jasmine French used to be on the top of the heap as a New York socialite, but now is returning to her estranged sister in San Francisco utterly ruined. As Jasmine struggles with her haunting memories of a privileged past bearing dark realities she ignored, she tries to recover in her present. Unfortunately, it all proves a losing battle as Jasmine's narcissistic hangups and their consequences begin to overwhelm her. In doing so, her old pretensions and new deceits begin to foul up everyone's lives, especially her own.", "video": false, "id": 160588, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Blue Jasmine", "tagline": "Blue Moon. I used to know the words. Now they're all a jumble.", "vote_count": 312, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2334873", "adult": false, "backdrop_path": "/9292R222w18nMIG9iRx92b0ez2.jpg", "production_companies": [{"name": "Perdido Productions", "id": 12966}], "release_date": "2013-07-26", "popularity": 0.887733370033949, "original_title": "Blue Jasmine", "budget": 18000000, "cast": [{"name": "Cate Blanchett", "character": "Jasmine", "id": 112, "credit_id": "52fe4c33c3a36847f82229c7", "cast_id": 3, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Hal", "id": 7447, "credit_id": "52fe4c33c3a36847f82229cb", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Sally Hawkins", "character": "Ginger", "id": 39658, "credit_id": "52fe4c33c3a36847f82229df", "cast_id": 10, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 2}, {"name": "Bobby Cannavale", "character": "Chili", "id": 21127, "credit_id": "52fe4c33c3a36847f8222a25", "cast_id": 23, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 3}, {"name": "Louis C.K.", "character": "Al", "id": 52849, "credit_id": "52fe4c33c3a36847f82229d3", "cast_id": 7, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 4}, {"name": "Peter Sarsgaard", "character": "Dwight", "id": 133, "credit_id": "52fe4c33c3a36847f82229cf", "cast_id": 5, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 5}, {"name": "Andrew Dice Clay", "character": "Augie", "id": 57906, "credit_id": "52fe4c33c3a36847f82229eb", "cast_id": 13, "profile_path": "/1KzjDfy2r0Q8HUiEYfLvrOqVWH0.jpg", "order": 6}, {"name": "Michael Stuhlbarg", "character": "Jasmine's boss", "id": 72873, "credit_id": "52fe4c33c3a36847f8222a29", "cast_id": 24, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 7}, {"name": "Alden Ehrenreich", "character": "Danny", "id": 71375, "credit_id": "52fe4c33c3a36847f82229d7", "cast_id": 8, "profile_path": "/zJr5mpATjAxiJ1BRucMABJdys82.jpg", "order": 8}, {"name": "Charlie Tahan", "character": "Young Danny", "id": 49918, "credit_id": "52fe4c33c3a36847f82229db", "cast_id": 9, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 9}, {"name": "Max Casella", "character": "Young Danny", "id": 7133, "credit_id": "52fe4c33c3a36847f82229e3", "cast_id": 11, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 10}, {"name": "Tammy Blanchard", "character": "Jane", "id": 16859, "credit_id": "52fe4c33c3a36847f82229e7", "cast_id": 12, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 11}, {"name": "Martin Cantu", "character": "Ginger's boss", "id": 1191672, "credit_id": "52fe4c33c3a36847f8222a2d", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Daniel Jenks", "character": "Matthew", "id": 1191673, "credit_id": "52fe4c33c3a36847f8222a31", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Max Rutherford", "character": "Johnny", "id": 1191674, "credit_id": "52fe4c33c3a36847f8222a35", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Ali Fedotowsky", "character": "Melanie", "id": 1195805, "credit_id": "52fe4c33c3a36847f8222a39", "cast_id": 28, "profile_path": "/2vNQmfPn1ue69HxppA2rT3KzX8l.jpg", "order": 15}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe4c33c3a36847f82229c3", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.8, "runtime": 98}, "37710": {"poster_path": "/jfLFF0Qa9jAoTYQIKaSWmMWcKZd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 278346189, "overview": "American tourist Frank (Johnny Depp) meets mysterious British woman Elsie (Angelina Jolie) on the train to Venice. Romance seems to bud, but there's more to her than meets the eye. Remake of the 2005 French film \"Anthony Zimmer\", written and directed by J\u00e9r\u00f4me Salle.", "video": false, "id": 37710, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Tourist", "tagline": "It all started when he met a woman", "vote_count": 547, "homepage": "http://thetourist-movie.com/", "belongs_to_collection": null, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1243957", "adult": false, "backdrop_path": "/2SChQOUxcGoilS3zxnFQ7LZZMgE.jpg", "production_companies": [{"name": "Spyglass Entertainment", "id": 158}, {"name": "GK Films", "id": 3281}, {"name": "StudioCanal", "id": 694}, {"name": "Birnbaum/Barber", "id": 23731}, {"name": "Cineroma SRL", "id": 23732}, {"name": "Peninsula Films", "id": 682}, {"name": "Italian Tax Credit", "id": 21212}, {"name": "French Tax Credit", "id": 23733}], "release_date": "2010-12-10", "popularity": 0.874812055351819, "original_title": "The Tourist", "budget": 100000000, "cast": [{"name": "Johnny Depp", "character": "Frank Tupelo", "id": 85, "credit_id": "52fe46669251416c91053377", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Elise Clifton-Ward", "id": 11701, "credit_id": "52fe46669251416c9105337b", "cast_id": 14, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Paul Bettany", "character": "Inspector John Acheson", "id": 6162, "credit_id": "52fe46669251416c9105337f", "cast_id": 15, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 2}, {"name": "Timothy Dalton", "character": "Chief Inspector Jones", "id": 10669, "credit_id": "52fe46669251416c91053363", "cast_id": 8, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 3}, {"name": "Steven Berkoff", "character": "Reginald Shaw", "id": 782, "credit_id": "52fe46669251416c91053367", "cast_id": 9, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 4}, {"name": "Rufus Sewell", "character": "English man", "id": 17328, "credit_id": "52fe46669251416c91053359", "cast_id": 5, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 5}, {"name": "Christian De Sica", "character": "Colonnello Lombardi", "id": 69036, "credit_id": "52fe46669251416c9105336b", "cast_id": 10, "profile_path": "/vlmNk7KmMvZa8hPI7ZMPmRFh9Jx.jpg", "order": 6}, {"name": "Alessio Boni", "character": "Sergente Cerato", "id": 44646, "credit_id": "52fe46669251416c9105336f", "cast_id": 11, "profile_path": "/bvDifi9lq4QWOfEArA8RqpCFNzg.jpg", "order": 7}, {"name": "Daniele Pecci", "character": "Tenente Narduzzi", "id": 124622, "credit_id": "52fe46669251416c91053373", "cast_id": 12, "profile_path": "/3aEGgmc1o6IkQORfiK91pQWgGpL.jpg", "order": 8}], "directors": [{"name": "Florian Henckel von Donnersmarck", "department": "Directing", "job": "Director", "credit_id": "52fe46669251416c9105335f", "profile_path": "/wQA7iaeaSWbAFB7oOFV0NRGjUMa.jpg", "id": 8193}], "vote_average": 5.9, "runtime": 103}, "4944": {"poster_path": "/8ZvcWWewpWdDbkA6dCMma11ZL2l.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163720069, "overview": "This is a comedic tale of espionage. An ousted CIA official's memoir accidentally falls into the hands of two unwise gym employees intent on exploiting their find.", "video": false, "id": 4944, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Burn After Reading", "tagline": "Intelligence is relative.", "vote_count": 354, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0887883", "adult": false, "backdrop_path": "/r9BCMru6cPtuXeIRKGGkf4NNRrU.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2008-09-12", "popularity": 0.793662691777042, "original_title": "Burn After Reading", "budget": 37000000, "cast": [{"name": "George Clooney", "character": "Harry Pfarrer", "id": 1461, "credit_id": "52fe43e6c3a36847f8076feb", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Linda Litzke", "id": 3910, "credit_id": "52fe43e6c3a36847f8076fe3", "cast_id": 2, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Katie Cox", "id": 3063, "credit_id": "52fe43e6c3a36847f807700d", "cast_id": 10, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Brad Pitt", "character": "Chad Feldheimer", "id": 287, "credit_id": "52fe43e6c3a36847f8076fe7", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Ted Treffon", "id": 28633, "credit_id": "52fe43e6c3a36847f8077011", "cast_id": 11, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "CIA Superior", "id": 18999, "credit_id": "52fe43e6c3a36847f8077015", "cast_id": 12, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "John Malkovich", "character": "Ozzie Cox", "id": 6949, "credit_id": "52fe43e6c3a36847f8077019", "cast_id": 13, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 6}, {"name": "Elizabeth Marvel", "character": "Sandy Pfarrer", "id": 126713, "credit_id": "52fe43e6c3a36847f807701d", "cast_id": 14, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 7}, {"name": "David Rasche", "character": "CIA Officer", "id": 33533, "credit_id": "52fe43e6c3a36847f8077021", "cast_id": 15, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 8}, {"name": "Olek Krupa", "character": "Krapotkin", "id": 53573, "credit_id": "52fe43e6c3a36847f8077025", "cast_id": 16, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 9}, {"name": "Michael Countryman", "character": "Alan", "id": 121939, "credit_id": "52fe43e6c3a36847f8077029", "cast_id": 17, "profile_path": "/dkjaMJzyHUiXHBGJM1jYE4k9cMg.jpg", "order": 10}, {"name": "Kevin Sussman", "character": "Tuchman Marsh Man", "id": 60633, "credit_id": "52fe43e6c3a36847f807702d", "cast_id": 18, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 11}, {"name": "J.R. Horne", "character": "Divorce Lawyer", "id": 1468, "credit_id": "52fe43e6c3a36847f8077031", "cast_id": 19, "profile_path": "/kwXWf5gEZGWyqRDu5VjXAoll1Hw.jpg", "order": 12}, {"name": "Hamilton Clancy", "character": "Peck", "id": 176777, "credit_id": "52fe43e6c3a36847f8077035", "cast_id": 20, "profile_path": "/49fKdEpI7hnaoDdIVW71QZw0FNh.jpg", "order": 13}, {"name": "Armand Schultz", "character": "Olson", "id": 19851, "credit_id": "52fe43e6c3a36847f8077039", "cast_id": 21, "profile_path": "/oKcmZbjESiUybY7AgWeRvaBWCFu.jpg", "order": 14}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43e6c3a36847f8076ff1", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43e6c3a36847f8076ff7", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.3, "runtime": 96}, "9016": {"poster_path": "/gFfZVblQoExIVK4PVCJ9xZZJJKy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109578115, "overview": "When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic \"loot of a thousand worlds,\" a cyborg cook named John Silver teaches him to battle supernovas and space storms. But, soon, Jim realizes Silver is a pirate intent on mutiny!", "video": false, "id": 9016, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Treasure Planet", "tagline": "Find your place in the universe.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133240", "adult": false, "backdrop_path": "/3HVvtFm9NvOfn1u3yfeEugh2ZWj.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2002-11-26", "popularity": 1.70018023528971, "original_title": "Treasure Planet", "budget": 140000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Jim Hawkins", "id": 24045, "credit_id": "52fe44d1c3a36847f80abded", "cast_id": 1, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "David Hyde Pierce", "character": "Dr. Delbert Doppler", "id": 11076, "credit_id": "52fe44d1c3a36847f80abdf1", "cast_id": 2, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 1}, {"name": "Emma Thompson", "character": "Captain Amelia", "id": 7056, "credit_id": "52fe44d1c3a36847f80abdf5", "cast_id": 3, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 2}, {"name": "Roscoe Lee Browne", "character": "Mr. Arrow", "id": 24368, "credit_id": "52fe44d1c3a36847f80abdf9", "cast_id": 4, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 3}, {"name": "Martin Short", "character": "B.E.N.", "id": 519, "credit_id": "52fe44d1c3a36847f80abdfd", "cast_id": 5, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 4}, {"name": "Laurie Metcalf", "character": "Sarah Hawkins", "id": 12133, "credit_id": "52fe44d1c3a36847f80abe01", "cast_id": 6, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 5}, {"name": "Patrick McGoohan", "character": "Billy Bones", "id": 2463, "credit_id": "52fe44d1c3a36847f80abe05", "cast_id": 7, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 6}, {"name": "Michael Wincott", "character": "Scroop", "id": 7486, "credit_id": "52fe44d1c3a36847f80abe09", "cast_id": 8, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 7}, {"name": "Brian Murray", "character": "John Silver", "id": 56618, "credit_id": "52fe44d1c3a36847f80abe55", "cast_id": 21, "profile_path": "/bNRA2o9EGVfT3cEWCFm8f0rUjFK.jpg", "order": 8}, {"name": "Corey Burton", "character": "Onus", "id": 35219, "credit_id": "548d4de3c3a36820c5003c33", "cast_id": 23, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 10}, {"name": "Dane A. Davis", "character": "Morph", "id": 9349, "credit_id": "548d4e2b92514122f9003c0e", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Tony Jay", "character": "Narrator", "id": 65598, "credit_id": "548d4e549251415568001566", "cast_id": 25, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 12}, {"name": "Austin Majors", "character": "Young Jim", "id": 1398839, "credit_id": "548d4e74c3a36820ba003799", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Michael McShane", "character": "Hands", "id": 8316, "credit_id": "548d4e9ac3a3681d4b0016d2", "cast_id": 27, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 14}, {"name": "Jack Angel", "character": "Additional Voice", "id": 19545, "credit_id": "548d4eebc3a36820b8003e79", "cast_id": 28, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 15}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe44d1c3a36847f80abe0f", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe44d1c3a36847f80abe15", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.8, "runtime": 95}, "4951": {"poster_path": "/Kd5OkBc6GyUa1tIpxYUHLpyE2t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53478166, "overview": "Bianca, a tenth grader has never gone on a date, but she isn't allowed to go out with boys until her older sister gets a boyfriend. The problem is, Kat rubs nearly everyone the wrong way. But Bianca and the guy she has her eye on, Joey, are eager, so Joey fixes Kat up with Patrick, a new kid in town just bitter enough for Kat.", "video": false, "id": 4951, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "10 Things I Hate About You", "tagline": "How do I loathe thee? Let me count the ways.", "vote_count": 385, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0147800", "adult": false, "backdrop_path": "/ds4P3jbSleMr9z9rAlZfDqRttKi.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Mad Chance", "id": 1757}, {"name": "Jaret Entertainment", "id": 1783}], "release_date": "1999-03-30", "popularity": 1.08110960470637, "original_title": "10 Things I Hate About You", "budget": 16000000, "cast": [{"name": "Heath Ledger", "character": "Patrick Verona", "id": 1810, "credit_id": "52fe43e6c3a36847f80772cb", "cast_id": 2, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Julia Stiles", "character": "Kat Stratford", "id": 12041, "credit_id": "52fe43e6c3a36847f80772cf", "cast_id": 3, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 1}, {"name": "Joseph Gordon-Levitt", "character": "Cameron James", "id": 24045, "credit_id": "52fe43e6c3a36847f8077321", "cast_id": 17, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 2}, {"name": "Larisa Oleynik", "character": "Bianca Stratford", "id": 40978, "credit_id": "52fe43e6c3a36847f8077325", "cast_id": 18, "profile_path": "/qhRcTWcXykI29zsuEC4po563sJC.jpg", "order": 3}, {"name": "David Krumholtz", "character": "Michael", "id": 38582, "credit_id": "52fe43e6c3a36847f8077329", "cast_id": 19, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 4}, {"name": "Andrew Keegan", "character": "Joey Donner", "id": 40979, "credit_id": "52fe43e6c3a36847f807732d", "cast_id": 20, "profile_path": "/3GNxQcRNySLlO25wcPuwnxuPv3f.jpg", "order": 5}, {"name": "Susan May Pratt", "character": "Mandella", "id": 40980, "credit_id": "52fe43e6c3a36847f8077331", "cast_id": 21, "profile_path": "/iIHOYjPPhHgqcClshtYrJn93ngb.jpg", "order": 6}, {"name": "Gabrielle Union", "character": "Chastity", "id": 17773, "credit_id": "52fe43e6c3a36847f8077335", "cast_id": 22, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 7}, {"name": "Larry Miller", "character": "Walter Stratford", "id": 1211, "credit_id": "52fe43e6c3a36847f8077339", "cast_id": 23, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 8}, {"name": "Daryl Mitchell", "character": "Mr. Morgan", "id": 15028, "credit_id": "52fe43e6c3a36847f807733d", "cast_id": 24, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 9}, {"name": "Allison Janney", "character": "Ms. Perky", "id": 19, "credit_id": "52fe43e6c3a36847f8077341", "cast_id": 25, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 10}, {"name": "David Leisure", "character": "Mr. Chapin", "id": 24521, "credit_id": "52fe43e6c3a36847f8077345", "cast_id": 26, "profile_path": "/rEyz16UwSZWoYahJw78Pg4BxLjv.jpg", "order": 11}, {"name": "Kyle Cease", "character": "Bogie Lowenstien", "id": 40981, "credit_id": "52fe43e6c3a36847f8077349", "cast_id": 27, "profile_path": "/fcVmEbnYzgkFLqrUsBIitXzWJlz.jpg", "order": 12}, {"name": "Greg Jackson", "character": "Scruvy", "id": 40982, "credit_id": "52fe43e6c3a36847f807734d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Terence Heuston", "character": "Derek", "id": 1144823, "credit_id": "54f92cf1c3a36878e1000ba1", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Cameron Fraser", "character": "Trevor", "id": 1435471, "credit_id": "54f932c6c3a36878d2000b7d", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Eric Riedmann", "character": "Audio Visual Guy", "id": 1435472, "credit_id": "54f932ed925141439f000a6e", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Quinn Maixner", "character": "Beautiful Jock", "id": 1435473, "credit_id": "54f9330ac3a36878dc000a29", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Demegio Kimbrough", "character": "Coffee Kid #1", "id": 1435474, "credit_id": "54f93329c3a36878e6000adf", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Todd Butler", "character": "Coffee Kid #2", "id": 1435475, "credit_id": "54f933619251416fab000796", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Dennis Mosley", "character": "Cohort", "id": 1435476, "credit_id": "54f93384c3a36878d800087f", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Bianca Kajlich", "character": "Coffee Girl", "id": 69616, "credit_id": "54f935e9c3a3683c5500077a", "cast_id": 36, "profile_path": "/7eKTyl55sYtYen9Ky7DQGLMhOnC.jpg", "order": 21}, {"name": "Nick Vukelic", "character": "Drugged Out Loser", "id": 1435477, "credit_id": "54f9360e9251414390000a8e", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Ben Laurance", "character": "Wimpy Loser (as Benjamin Laurance)", "id": 1435478, "credit_id": "54f9362f9251416fab0007fc", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Aidan Kennedy", "character": "Laughing Loser", "id": 1435479, "credit_id": "54f9364b9251414a06000a5b", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Jelani Quinn", "character": "Crying Loser", "id": 1435480, "credit_id": "54f937d1c3a3687f8b000a36", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Jesse Dyer", "character": "Screaming Loser", "id": 1435483, "credit_id": "54f937e89251414392000b2b", "cast_id": 41, "profile_path": null, "order": 26}, {"name": "Aaron Therol", "character": "Detention Student", "id": 1435484, "credit_id": "54f938c0925141438d000ad6", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Carlos Lac\u00e1mara", "character": "Bartender", "id": 1212247, "credit_id": "54f9d6d2c3a36878dc001adf", "cast_id": 43, "profile_path": "/mf5a9afrahmA2bOwgfaJVjDrzpJ.jpg", "order": 28}, {"name": "Joshua Thorpe", "character": "Jock", "id": 1435704, "credit_id": "54f9d6f19251416fab0018ac", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "J.R. Johnson", "character": "Mba Guy at Party", "id": 1435705, "credit_id": "54f9d717925141438d001a77", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Wendy Gottlieb", "character": "Heather", "id": 1435707, "credit_id": "54f9d733925141438d001a7d", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Brian Hood", "character": "Clem", "id": 1435708, "credit_id": "54f9d74dc3a3683c55001a1c", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Travis Muller", "character": "Cowboy", "id": 1435709, "credit_id": "54f9d774c3a3683c55001a22", "cast_id": 48, "profile_path": null, "order": 33}, {"name": "Ari Karczag", "character": "Kissing Guy", "id": 165215, "credit_id": "54f9d7b8c3a36878dc001aff", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Laura Kenny", "character": "Judith", "id": 163002, "credit_id": "54f9d7ebc3a3687f8b001a4b", "cast_id": 50, "profile_path": "/nSKGdbGXTM21odLcQNzZhsxRpfE.jpg", "order": 35}, {"name": "Alice Evans", "character": "Perky Girl", "id": 1435710, "credit_id": "54f9d817c3a36878e1001e9d", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "Jesper Inglis", "character": "Buckaroo Bartender", "id": 1275938, "credit_id": "54f9d856c3a36878d2001e1b", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Nick Brown", "character": "Biker", "id": 1435716, "credit_id": "54f9d8a9925141439f001b8b", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Monique Powell", "character": "Save Ferris Singer", "id": 1435717, "credit_id": "54f9d8c8c3a36878d800172c", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Brian Mashburn", "character": "Save Ferris Singer", "id": 1435718, "credit_id": "54f9d8e6c3a36878e6001c9a", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Kay Hanley", "character": "Letters To Cleo Singer", "id": 1238557, "credit_id": "54f9d9419251414392001c6d", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Michael Eisenstein", "character": "Letters To Cleo Singer", "id": 227721, "credit_id": "54f9dba7c3a36878dc001b7d", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Michelle Babin", "character": "Girl in Night Club (uncredited)", "id": 1435738, "credit_id": "54f9dbd6925141439f001bf0", "cast_id": 58, "profile_path": null, "order": 43}, {"name": "Tim Bennett", "character": "School Administrator (uncredited)", "id": 1435739, "credit_id": "54f9dc23c3a3683c55001ac3", "cast_id": 59, "profile_path": null, "order": 44}, {"name": "Shelsie Blake", "character": "Bookstore Patron (uncredited)", "id": 1435757, "credit_id": "54f9e011925141439a001d7b", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Gil Junger", "character": "Teacher (uncredited)", "id": 40243, "credit_id": "54f9e1bbc3a36878e6001dc6", "cast_id": 61, "profile_path": null, "order": 46}, {"name": "Daniel Kountz", "character": "Admirer #1 (uncredited)", "id": 157041, "credit_id": "54f9e405c3a36878e1001fe4", "cast_id": 62, "profile_path": null, "order": 47}, {"name": "Alisa Mackay", "character": "Coffee Girl #2 (uncredited)", "id": 1109241, "credit_id": "54f9e491925141439a001e12", "cast_id": 63, "profile_path": null, "order": 48}, {"name": "Katy Magnuson", "character": "Beautiful Girl (uncredited)", "id": 803392, "credit_id": "54f9e5b99251411c4500000e", "cast_id": 64, "profile_path": null, "order": 49}, {"name": "Amber Matthews", "character": "Club Dancer #1 (uncredited)", "id": 1435774, "credit_id": "54f9e6699251411c5100001c", "cast_id": 65, "profile_path": null, "order": 50}, {"name": "Maher McClung", "character": "Frisbee Thrower (uncredited)", "id": 1435775, "credit_id": "54f9e6899251411c4d000015", "cast_id": 66, "profile_path": null, "order": 51}, {"name": "Joshua Mosley", "character": "Cohort (uncredited)", "id": 1356969, "credit_id": "54f9e6dac3a368578d00001f", "cast_id": 67, "profile_path": null, "order": 52}, {"name": "Bridget O'Neill", "character": "Beautiful Girl (uncredited)", "id": 1435778, "credit_id": "54f9e7c4c3a3685799000034", "cast_id": 68, "profile_path": null, "order": 53}, {"name": "Tommy Snider", "character": "Student (uncredited)", "id": 204419, "credit_id": "54f9e8ffc3a368578d000072", "cast_id": 69, "profile_path": null, "order": 54}, {"name": "Jay Zorich", "character": "Roland / High School Security Cop (uncredited)", "id": 1435785, "credit_id": "54f9e9239251411c4d000061", "cast_id": 70, "profile_path": null, "order": 55}], "directors": [{"name": "Gil Junger", "department": "Directing", "job": "Director", "credit_id": "52fe43e6c3a36847f80772c7", "profile_path": null, "id": 40243}], "vote_average": 6.7, "runtime": 97}, "4953": {"poster_path": "/sJxRxjFc3CkWeySDDnITRu4JigA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.", "video": false, "id": 4953, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Be Kind Rewind", "tagline": "You name it, we shoot it.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0799934", "adult": false, "backdrop_path": "/4jydtNkMFAe1l983NdYrsSdORcG.jpg", "production_companies": [{"name": "Partizan", "id": 1784}, {"name": "New Line Cinema", "id": 12}, {"name": "Focus Features", "id": 10146}], "release_date": "2008-01-20", "popularity": 0.566250272586296, "original_title": "Be Kind Rewind", "budget": 0, "cast": [{"name": "Jack Black", "character": "Jerry", "id": 70851, "credit_id": "52fe43e7c3a36847f807740f", "cast_id": 12, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Mos Def", "character": "Mike", "id": 4239, "credit_id": "52fe43e7c3a36847f807741b", "cast_id": 15, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 1}, {"name": "Danny Glover", "character": "Mr. Fletcher", "id": 2047, "credit_id": "52fe43e7c3a36847f807741f", "cast_id": 16, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Mia Farrow", "character": "Ms. Kimberley", "id": 12021, "credit_id": "52fe43e7c3a36847f8077413", "cast_id": 13, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 3}, {"name": "Marcus Carl Franklin", "character": "James", "id": 34111, "credit_id": "52fe43e7c3a36847f8077417", "cast_id": 14, "profile_path": "/x0l67ha9vDO6NcRJ9UmKx20ZoOU.jpg", "order": 4}, {"name": "Arjay Smith", "character": "Manny", "id": 6070, "credit_id": "52fe43e7c3a36847f8077423", "cast_id": 17, "profile_path": "/pf1myo7qI3MTTPmmCg61BKqBayp.jpg", "order": 5}, {"name": "Paul Dinello", "character": "Mr. Rooney", "id": 40250, "credit_id": "52fe43e7c3a36847f8077427", "cast_id": 18, "profile_path": "/up1gsViuqIqS0w5idWSFWFm2a18.jpg", "order": 6}, {"name": "Melonie Diaz", "character": "Alma", "id": 53936, "credit_id": "52fe43e7c3a36847f807742b", "cast_id": 19, "profile_path": "/wBhAieZSMyJVO9Z0Bm6FTfqVq11.jpg", "order": 7}, {"name": "Sigourney Weaver", "character": "Ms. Lawson", "id": 10205, "credit_id": "52fe43e7c3a36847f807742f", "cast_id": 20, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 8}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a36847f80773cf", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 6.0, "runtime": 102}, "37724": {"poster_path": "/uVALAeLEMGMf3oYpvdVi4uuaNOo.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1108694081, "overview": "When Bond's latest assignment goes gravely wrong and agents around the world are exposed, MI6 is attacked forcing M to relocate the agency. These events cause her authority and position to be challenged by Gareth Mallory (Ralph Fiennes), the new Chairman of the Intelligence and Security Committee. With MI6 now compromised from both inside and out, M is left with one ally she can trust: Bond. 007 takes to the shadows - aided only by field agent, Eve (Naomie Harris) - following a trail to the mysterious Silva (Javier Bardem), whose lethal and hidden motives have yet to reveal themselves.", "video": false, "id": 37724, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Skyfall", "tagline": "Think on your sins.", "vote_count": 4457, "homepage": "http://www.skyfall-movie.com", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1074638", "adult": false, "backdrop_path": "/dpo7WDOhWtACY6oflrqxutbhg81.jpg", "production_companies": [{"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "B23", "id": 23288}], "release_date": "2012-11-09", "popularity": 2.39603542988148, "original_title": "Skyfall", "budget": 200000000, "cast": [{"name": "Daniel Craig", "character": "James Bond", "id": 8784, "credit_id": "52fe46689251416c91053743", "cast_id": 1, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe46689251416c91053783", "cast_id": 29, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Silva", "id": 3810, "credit_id": "52fe46689251416c91053759", "cast_id": 12, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Ralph Fiennes", "character": "Gareth Mallory / M", "id": 5469, "credit_id": "52fe46689251416c9105375d", "cast_id": 13, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 3}, {"name": "Naomie Harris", "character": "Eve", "id": 2038, "credit_id": "52fe46689251416c91053765", "cast_id": 15, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 4}, {"name": "B\u00e9r\u00e9nice Marlohe", "character": "S\u00e9v\u00e9rine", "id": 1030261, "credit_id": "52fe46689251416c9105376d", "cast_id": 19, "profile_path": "/1CoWFdgdjDTqXVpcSeVqgywuADL.jpg", "order": 5}, {"name": "Albert Finney", "character": "Kincade", "id": 3926, "credit_id": "52fe46689251416c91053761", "cast_id": 14, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 6}, {"name": "Ben Whishaw", "character": "Q", "id": 17064, "credit_id": "52fe46689251416c91053771", "cast_id": 20, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 7}, {"name": "Rory Kinnear", "character": "Bill Tanner", "id": 139549, "credit_id": "52fe46689251416c91053779", "cast_id": 22, "profile_path": "/wfBmg2FVEDQCCFnjiTC3lhg1THP.jpg", "order": 8}, {"name": "Ola Rapace", "character": "Patrice", "id": 11045, "credit_id": "52fe46689251416c91053775", "cast_id": 21, "profile_path": "/9erOklGX0LeL5iJxBK8M7Y9Pyvo.jpg", "order": 9}, {"name": "Helen McCrory", "character": "Clair Dowar", "id": 15737, "credit_id": "52fe46689251416c91053769", "cast_id": 17, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 10}, {"name": "Nicholas Woodeson", "character": "Doctor Hall", "id": 118617, "credit_id": "52fe46689251416c910537b1", "cast_id": 39, "profile_path": "/sRsmR64H54aYYm2nh7Ra9IssxeT.jpg", "order": 11}, {"name": "Bill Buckhurst", "character": "Ronson", "id": 206273, "credit_id": "52fe46689251416c910537b5", "cast_id": 40, "profile_path": "/d5rB0TpWesSAhPOV31xosBsZr5s.jpg", "order": 12}, {"name": "Elize du Toit", "character": "Vanessa", "id": 100242, "credit_id": "52fe46689251416c910537b9", "cast_id": 41, "profile_path": "/gQr2v5rXQuOzh4Fuvws5qgzlqc6.jpg", "order": 13}, {"name": "Ian Bonar", "character": "MI6 Technician", "id": 122556, "credit_id": "52fe46689251416c910537bd", "cast_id": 42, "profile_path": "/fdOlDwibOLpK7mCcNiKu6DlP0Ah.jpg", "order": 14}, {"name": "Tonia Sotiropoulou", "character": "Bond's Lover", "id": 1024234, "credit_id": "5404f85cc3a36816af002678", "cast_id": 53, "profile_path": "/d0Izdl4VEHHIrsRwxPXNeGVUYHk.jpg", "order": 15}, {"name": "Wolf Blitzer", "character": "CNN News Anchor", "id": 1224993, "credit_id": "5404f894c3a36816af00267a", "cast_id": 54, "profile_path": null, "order": 16}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe46689251416c91053755", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.6, "runtime": 143}, "13150": {"poster_path": "/uHMPqBVR0lP6kGgF6TPcK7uD3eX.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31148328, "overview": "A saga centered on a multi-generational family of New York City Police officers. The family's moral codes are tested when Ray Tierney, investigates a case that reveals an incendiary police corruption scandal involving his own brother-in-law. For Ray, the truth is revelatory, a Pandora's Box that threatens to upend not only the Tierney legacy but the entire NYPD.", "video": false, "id": 13150, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Pride and Glory", "tagline": "Truth. Honor. Loyalty. Family. What are you willing to sacrifice?", "vote_count": 54, "homepage": "http://www.prideandglorymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0482572", "adult": false, "backdrop_path": "/aD2JAIGYnvBB9bCa6i9c7DlpJtb.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Solaris Film", "id": 1001}, {"name": "O'Connor Brothers", "id": 12066}, {"name": "Avery Pix", "id": 1565}, {"name": "Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 1 KG", "id": 12067}], "release_date": "2008-09-09", "popularity": 0.728873829742143, "original_title": "Pride and Glory", "budget": 30000000, "cast": [{"name": "Edward Norton", "character": "Ray Tierney", "id": 819, "credit_id": "52fe45459251416c75050ced", "cast_id": 1, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Jon Voight", "character": "Francis Tierney, Sr.", "id": 10127, "credit_id": "52fe45459251416c75050cf1", "cast_id": 2, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Colin Farrell", "character": "Jimmy Eagan", "id": 72466, "credit_id": "52fe45459251416c75050cf5", "cast_id": 3, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 2}, {"name": "Noah Emmerich", "character": "Francis Tierney, Jr.", "id": 11315, "credit_id": "52fe45459251416c75050d6b", "cast_id": 24, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 3}, {"name": "Jennifer Ehle", "character": "Abby Tierney", "id": 49971, "credit_id": "52fe45459251416c75050d6f", "cast_id": 25, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 4}, {"name": "John Ortiz", "character": "Ruben Santiago", "id": 40543, "credit_id": "52fe45459251416c75050d73", "cast_id": 26, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 5}, {"name": "Frank Grillo", "character": "Eddie Carbone", "id": 81685, "credit_id": "52fe45459251416c75050d77", "cast_id": 27, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 6}, {"name": "Shea Whigham", "character": "Kenny Dugan", "id": 74242, "credit_id": "52fe45459251416c75050d7b", "cast_id": 28, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 7}, {"name": "Lake Bell", "character": "Megan Egan", "id": 25703, "credit_id": "52fe45459251416c75050d7f", "cast_id": 29, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 8}, {"name": "Carmen Ejogo", "character": "Tasha", "id": 37158, "credit_id": "52fe45459251416c75050d83", "cast_id": 30, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 9}, {"name": "Manny P\u00e9rez", "character": "Coco Dominguez", "id": 72983, "credit_id": "52fe45459251416c75050d87", "cast_id": 31, "profile_path": "/hIM6huonhBNgxwfKc7t23pW60Ns.jpg", "order": 10}, {"name": "Wayne Duvall", "character": "Bill Avery", "id": 1470, "credit_id": "52fe45459251416c75050d8b", "cast_id": 32, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 11}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Angel Tezo", "id": 72985, "credit_id": "52fe45459251416c75050d8f", "cast_id": 33, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 12}, {"name": "Rick Gonzalez", "character": "Eladio Casado", "id": 53184, "credit_id": "52fe45459251416c75050d93", "cast_id": 34, "profile_path": "/goh90mno2bYXjOIncrJWoNYbhXy.jpg", "order": 13}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Carlos Bragon", "id": 1018947, "credit_id": "52fe45459251416c75050d97", "cast_id": 35, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 14}, {"name": "Leslie Denniston", "character": "Maureen Tierney", "id": 164517, "credit_id": "52fe45459251416c75050d9b", "cast_id": 36, "profile_path": "/urfEB6ksyjdb58SDnqAx8vBtsti.jpg", "order": 15}, {"name": "Hannah Riggins", "character": "Caitlin Tierney", "id": 1125868, "credit_id": "52fe45459251416c75050d9f", "cast_id": 37, "profile_path": null, "order": 16}], "directors": [{"name": "Gavin O'Connor", "department": "Directing", "job": "Director", "credit_id": "52fe45459251416c75050cfb", "profile_path": "/ySCeCte0VOVT9jWft6TwBKGU9KM.jpg", "id": 77003}], "vote_average": 6.2, "runtime": 130}, "4959": {"poster_path": "/4Cq33D6KmbrWHfgnb9qTu6Cj8Cx.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60161391, "overview": "An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.", "video": false, "id": 4959, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The International", "tagline": "Is your money making a killing?", "vote_count": 99, "homepage": "http://www.sonypictures.com/movies/theinternational/site/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0963178", "adult": false, "backdrop_path": "/bADjtiEq2kQ75UHkdnIe13CftsX.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Mosaic Media Group", "id": 748}, {"name": "X-Filme Creative Pool", "id": 1972}], "release_date": "2009-02-03", "popularity": 0.896663362002822, "original_title": "The International", "budget": 50000000, "cast": [{"name": "Clive Owen", "character": "Louis Salinger", "id": 2296, "credit_id": "52fe43e7c3a36847f8077727", "cast_id": 3, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Naomi Watts", "character": "Eleanor Whitman", "id": 3489, "credit_id": "52fe43e7c3a36847f807772b", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 1}, {"name": "Armin Mueller-Stahl", "character": "Wilhelm Wexler", "id": 12647, "credit_id": "52fe43e7c3a36847f807772f", "cast_id": 5, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 2}, {"name": "Ulrich Thomsen", "character": "Jonas Skarssen", "id": 4455, "credit_id": "52fe43e7c3a36847f8077733", "cast_id": 6, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 3}, {"name": "Br\u00edan F. O'Byrne", "character": "The Consultant", "id": 31713, "credit_id": "52fe43e7c3a36847f8077737", "cast_id": 7, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 4}, {"name": "Patrick Baladi", "character": "Martin White", "id": 43019, "credit_id": "52fe43e7c3a36847f807773b", "cast_id": 9, "profile_path": "/5l8DPsvvTvvSb3F52eXnyn8Xf8F.jpg", "order": 6}, {"name": "Jay Villiers", "character": "Francis Ehames", "id": 47589, "credit_id": "52fe43e7c3a36847f807773f", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Michel Voletti", "character": "Viktor Haas", "id": 68056, "credit_id": "52fe43e7c3a36847f8077743", "cast_id": 11, "profile_path": "/aJjGibLEhGc5x27NnxOSSgIyc9l.jpg", "order": 8}, {"name": "James Rebhorn", "character": "New York D.A.", "id": 8986, "credit_id": "52fe43e7c3a36847f8077747", "cast_id": 12, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 9}, {"name": "Jack McGee", "character": "Detective Bernie Ward", "id": 10489, "credit_id": "52fe43e7c3a36847f807774b", "cast_id": 13, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 10}, {"name": "Ben Whishaw", "character": "Rene Antall", "id": 17064, "credit_id": "52fe43e7c3a36847f807774f", "cast_id": 14, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 11}], "directors": [{"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a36847f807771d", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 5.7, "runtime": 118}, "13156": {"poster_path": "/tMH0MShJOceh77Vg30OECnFcEzY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"Secondhand Lions\" follows the comedic adventures of an introverted boy left on the doorstep of a pair of reluctant, eccentric great-uncles, whose exotic remembrances stir the boy's spirit and re-ignite the men's lives.", "video": false, "id": 13156, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Secondhand Lions", "tagline": "An impressive story that will touch your heart.", "vote_count": 133, "homepage": "http://www.newline.com/properties/secondhandlions.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327137", "adult": false, "backdrop_path": "/3ELbQ4Mcv9wB3WDSieChdedIkmc.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2003-09-19", "popularity": 0.465107199454763, "original_title": "Secondhand Lions", "budget": 0, "cast": [{"name": "Michael Caine", "character": "Garth", "id": 3895, "credit_id": "52fe45469251416c75050f63", "cast_id": 1, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Hub", "id": 3087, "credit_id": "52fe45469251416c75050f67", "cast_id": 2, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Haley Joel Osment", "character": "Walter", "id": 9640, "credit_id": "52fe45469251416c75050f6b", "cast_id": 3, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 2}, {"name": "Kyra Sedgwick", "character": "Mae", "id": 26467, "credit_id": "52fe45469251416c75050f6f", "cast_id": 4, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 3}, {"name": "Mitchel Musso", "character": "Boy", "id": 51583, "credit_id": "52fe45469251416c75050f7f", "cast_id": 7, "profile_path": "/rMmElJ9TwAFfEAW3Q1ET7Ioi0Fp.jpg", "order": 4}, {"name": "Marc Musso", "character": "Boy", "id": 173994, "credit_id": "52fe45469251416c75050f83", "cast_id": 8, "profile_path": "/7xCOF2nuCF9znLU7evdPHWMxU9f.jpg", "order": 5}, {"name": "Daniel Brooks", "character": "Sheik's Great Grandson", "id": 1110882, "credit_id": "52fe45469251416c75050f87", "cast_id": 9, "profile_path": null, "order": 6}], "directors": [{"name": "Tim McCanlies", "department": "Directing", "job": "Director", "credit_id": "52fe45469251416c75050f75", "profile_path": null, "id": 77919}], "vote_average": 6.7, "runtime": 111}, "37735": {"poster_path": "/1pgPO3OfSm2inpODMqg2RNmLW90.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74952305, "overview": "After a little white lie about losing her virginity gets out, a clean cut high school girl sees her life paralleling Hester Prynne's in \"The Scarlet Letter,\" which she is currently studying in school - until she decides to use the rumor mill to advance her social and financial standing.", "video": false, "id": 37735, "genres": [{"id": 35, "name": "Comedy"}], "title": "Easy A", "tagline": "The rumour-filled totally false account of how I ruined my flawless reputation.", "vote_count": 701, "homepage": "http://letsnotandsaywedid.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1282140", "adult": false, "backdrop_path": "/2X3f8asEJ6sYZrlMTliKic6pFoM.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Olive Bridge Entertainment", "id": 7291}], "release_date": "2010-09-10", "popularity": 1.20275603872216, "original_title": "Easy A", "budget": 8000000, "cast": [{"name": "Emma Stone", "character": "Olive Penderghast", "id": 54693, "credit_id": "52fe466a9251416c91053ba9", "cast_id": 1, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 0}, {"name": "Stanley Tucci", "character": "Dill Penderghast", "id": 2283, "credit_id": "52fe466a9251416c91053bad", "cast_id": 2, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 1}, {"name": "Amanda Bynes", "character": "Marianne", "id": 29220, "credit_id": "52fe466a9251416c91053bb1", "cast_id": 3, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 2}, {"name": "Cam Gigandet", "character": "Micah", "id": 55086, "credit_id": "52fe466a9251416c91053bb5", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 3}, {"name": "Lisa Kudrow", "character": "Mrs. Griffith", "id": 14406, "credit_id": "52fe466a9251416c91053bb9", "cast_id": 5, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 4}, {"name": "Malcolm McDowell", "character": "Principal Gibbons", "id": 56890, "credit_id": "52fe466a9251416c91053bbd", "cast_id": 6, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 5}, {"name": "Penn Badgley", "character": "Woodchuck Todd", "id": 110927, "credit_id": "52fe466a9251416c91053bc1", "cast_id": 7, "profile_path": "/key2cKLsZYLyV03b8NMdmvJjBe9.jpg", "order": 6}, {"name": "Patricia Clarkson", "character": "Rosemary Penderghast", "id": 1276, "credit_id": "52fe466a9251416c91053bc5", "cast_id": 8, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 7}, {"name": "Dan Byrd", "character": "Brandon", "id": 59283, "credit_id": "52fe466a9251416c91053bc9", "cast_id": 9, "profile_path": "/j68CP63mC20q25IFSJvvRP3TGlm.jpg", "order": 8}, {"name": "Thomas Haden Church", "character": "Mr. Griffith", "id": 19159, "credit_id": "52fe466a9251416c91053bcd", "cast_id": 10, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 9}, {"name": "Aly Michalka", "character": "Rhiannon", "id": 90033, "credit_id": "52fe466a9251416c91053bd1", "cast_id": 11, "profile_path": "/n2KOL8FfW7mOGp6vYopkn9hFBJs.jpg", "order": 10}, {"name": "Juliette Goglia", "character": "Eighth Grade Olive", "id": 118420, "credit_id": "52fe466a9251416c91053bd5", "cast_id": 12, "profile_path": "/s0Lp6SmVUH0JNF5JUc0VWuJRYrz.jpg", "order": 11}, {"name": "Johanna Braddy", "character": "Melanie", "id": 95038, "credit_id": "52fe466a9251416c91053bd9", "cast_id": 13, "profile_path": "/a2Q4TJu13J8UVUPb5wgJKhIgJgK.jpg", "order": 12}, {"name": "Stacey Travis", "character": "Marianne's Mom", "id": 31714, "credit_id": "52fe466a9251416c91053bdd", "cast_id": 14, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 13}, {"name": "Jake Sandvig", "character": "Anson", "id": 71725, "credit_id": "52fe466a9251416c91053be1", "cast_id": 15, "profile_path": "/hjQEYDL6GBgiMg5FDpMvi2KmqpF.jpg", "order": 14}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe466a9251416c91053be7", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.4, "runtime": 92}, "4257": {"poster_path": "/lfvDTZOi023sfpFfNkfVRD1oJei.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 178262620, "overview": "Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien \"Tr-iPods\" are invading the world and she has to uncover the secret in order to stop them.", "video": false, "id": 4257, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 4", "tagline": "Bury the grudge. Burn the village. See the saw.", "vote_count": 155, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0362120", "adult": false, "backdrop_path": "/sGZJfQpK4RVnPOr2RE2bPJROZVn.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2006-04-13", "popularity": 0.557140778252537, "original_title": "Scary Movie 4", "budget": 45000000, "cast": [{"name": "Anna Faris", "character": "Cindy", "id": 1772, "credit_id": "52fe43b6c3a36847f8069e69", "cast_id": 10, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 0}, {"name": "Regina Hall", "character": "Brenda", "id": 35705, "credit_id": "52fe43b6c3a36847f8069e6d", "cast_id": 11, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 1}, {"name": "Craig Bierko", "character": "Tom Ryan", "id": 14886, "credit_id": "52fe43b6c3a36847f8069e71", "cast_id": 12, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 2}, {"name": "Bill Pullman", "character": "Henry Hale", "id": 8984, "credit_id": "52fe43b6c3a36847f8069e75", "cast_id": 13, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 3}, {"name": "Anthony Anderson", "character": "Mahalik", "id": 18471, "credit_id": "52fe43b6c3a36847f8069e79", "cast_id": 14, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 4}, {"name": "Leslie Nielsen", "character": "Pr\u00e4s. Baxter Harris", "id": 7633, "credit_id": "52fe43b6c3a36847f8069e7d", "cast_id": 15, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 5}, {"name": "Carmen Electra", "character": "Holly", "id": 28639, "credit_id": "52fe43b6c3a36847f8069e81", "cast_id": 16, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 6}, {"name": "Shaquille O'Neal", "character": "Shaq", "id": 35806, "credit_id": "52fe43b6c3a36847f8069e85", "cast_id": 17, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 7}, {"name": "DeRay Davis", "character": "Marvin", "id": 11827, "credit_id": "52fe43b6c3a36847f8069e8f", "cast_id": 19, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 8}, {"name": "Michael Madsen", "character": "Oliver", "id": 147, "credit_id": "52fe43b6c3a36847f8069e93", "cast_id": 20, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 9}, {"name": "Alex Bruhanski", "character": "Tiffany's Trainer", "id": 18895, "credit_id": "52fe43b6c3a36847f8069e97", "cast_id": 21, "profile_path": "/pAHBAReA4y1zWfbKyYlCGROK7qj.jpg", "order": 10}, {"name": "Molly Shannon", "character": "Marilyn", "id": 28640, "credit_id": "52fe43b6c3a36847f8069e9b", "cast_id": 22, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 11}, {"name": "Cloris Leachman", "character": "Ms. Norris", "id": 9599, "credit_id": "52fe43b6c3a36847f8069e9f", "cast_id": 23, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 12}, {"name": "Kevin Hart", "character": "CJ", "id": 55638, "credit_id": "52fe43b6c3a36847f8069ea3", "cast_id": 24, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 13}, {"name": "Beau Mirchoff", "character": "Robbie Ryan", "id": 117525, "credit_id": "52fe43b6c3a36847f8069ea7", "cast_id": 25, "profile_path": "/pL7zdESU9X7xKdMXxtrISR9pJfh.jpg", "order": 14}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe43b6c3a36847f8069e8b", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 5.5, "runtime": 83}, "78698": {"poster_path": "/zwiJQveWjxsD11QPe2aQBNXbg7j.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24719215, "overview": "Based on an inspiring true story, a small-town news reporter (Krasinski) and a Greenpeace volunteer (Barrymore) enlist the help of rival superpowers to save three majestic gray whales trapped under the ice of the Arctic Circle. \u2018Big Miracle\u2019 is adapted from the nonfiction book \u2018Freeing the Whales: How the Media Created the World\u2019s Greatest Non-Event\u2019 by Tom Rose.", "video": false, "id": 78698, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Big Miracle", "tagline": "A family of whales trapped beneath the ice. One unforgettable rescue.", "vote_count": 51, "homepage": "http://www.everybodyloveswhales.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430615", "adult": false, "backdrop_path": "/arvPVenA1K6vMYXJIYfeHqBf2IR.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2012-02-02", "popularity": 0.483796369146212, "original_title": "Big Miracle", "budget": 40000000, "cast": [{"name": "Drew Barrymore", "character": "Rachel Kramer", "id": 69597, "credit_id": "52fe49aec3a368484e1389b3", "cast_id": 1, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "John Krasinski", "character": "Adam Carlson", "id": 17697, "credit_id": "52fe49aec3a368484e1389b7", "cast_id": 2, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 1}, {"name": "Kristen Bell", "character": "Jill Jerard", "id": 40462, "credit_id": "52fe49aec3a368484e1389c1", "cast_id": 4, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 2}, {"name": "Vinessa Shaw", "character": "Kelly Meyers", "id": 5025, "credit_id": "52fe49aec3a368484e1389c5", "cast_id": 5, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 3}, {"name": "Dermot Mulroney", "character": "Colonel Scott Boyer", "id": 20212, "credit_id": "52fe49aec3a368484e1389c9", "cast_id": 6, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 4}, {"name": "Ted Danson", "character": "J. W. McGraw", "id": 12836, "credit_id": "52fe49aec3a368484e1389cd", "cast_id": 7, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 5}, {"name": "Kathy Baker", "character": "Ruth McGraw", "id": 1907, "credit_id": "52fe49aec3a368484e1389d1", "cast_id": 8, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 6}, {"name": "Tim Blake Nelson", "character": "Pat Lafaytette", "id": 1462, "credit_id": "52fe49aec3a368484e1389d5", "cast_id": 9, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 7}, {"name": "Stephen Root", "character": "Governor Haskell", "id": 17401, "credit_id": "52fe49aec3a368484e1389d9", "cast_id": 10, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 8}, {"name": "John Michael Higgins", "character": "Wes Handrick", "id": 8265, "credit_id": "52fe49aec3a368484e1389dd", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 9}, {"name": "Bruce Altman", "character": "Chief of Staff", "id": 27545, "credit_id": "52fe49aec3a368484e1389e1", "cast_id": 12, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 10}], "directors": [{"name": "Ken Kwapis", "department": "Directing", "job": "Director", "credit_id": "52fe49aec3a368484e1389bd", "profile_path": "/oPjor2KnZcSXmtude62KT62yBsu.jpg", "id": 29009}], "vote_average": 6.4, "runtime": 107}, "9021": {"poster_path": "/uCtvhRSmwgG8AGsRNtaaxWtzgRx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139225854, "overview": "Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.", "video": false, "id": 9021, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Santa Clause 2", "tagline": "What's Christmas Fun without some Reindeer Games?", "vote_count": 84, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1h8iA6i2DpPhsHC65nUB2voVnm5.jpg", "id": 53159, "name": "The Santa Clause Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0304669", "adult": false, "backdrop_path": "/mwbooc3CGllnnaDU3CLuLSc9XV7.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2002-10-31", "popularity": 0.869371984543454, "original_title": "The Santa Clause 2", "budget": 60000000, "cast": [{"name": "Tim Allen", "character": "Scott Calvin / Santa Clause", "id": 12898, "credit_id": "52fe44d2c3a36847f80abfe7", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Elizabeth Mitchell", "character": "Principal Carol Newman", "id": 31167, "credit_id": "52fe44d2c3a36847f80abfeb", "cast_id": 2, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 1}, {"name": "David Krumholtz", "character": "Bernard, der Elf", "id": 38582, "credit_id": "52fe44d2c3a36847f80abfef", "cast_id": 3, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 2}, {"name": "Eric Lloyd", "character": "Charlie Calvin", "id": 27564, "credit_id": "52fe44d2c3a36847f80abff3", "cast_id": 4, "profile_path": "/qemoEBG9JeAerb3RsXUOa2peZxQ.jpg", "order": 3}, {"name": "Spencer Breslin", "character": "Curtis", "id": 35654, "credit_id": "52fe44d2c3a36847f80abff7", "cast_id": 5, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 4}, {"name": "Judge Reinhold", "character": "Dr. Neil Miller", "id": 777, "credit_id": "52fe44d2c3a36847f80abffb", "cast_id": 6, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Laura Calvin Miller", "id": 19957, "credit_id": "52fe44d2c3a36847f80abfff", "cast_id": 7, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}, {"name": "Kevin Pollak", "character": "Cupid", "id": 7166, "credit_id": "52fe44d2c3a36847f80ac05b", "cast_id": 24, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 8}, {"name": "Aisha Tyler", "character": "Mother Nature", "id": 38674, "credit_id": "53f58907c3a36833fa003032", "cast_id": 25, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 9}, {"name": "Molly Shannon", "character": "Tracy", "id": 28640, "credit_id": "53f589180e0a267f80004438", "cast_id": 26, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 10}, {"name": "Fred Keating", "character": "Security Guard", "id": 963962, "credit_id": "55032349925141282f003eca", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "Michael Lembeck", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac009", "profile_path": "/nSksRzDoUToxdS2MqIeV7LGAiVk.jpg", "id": 15045}], "vote_average": 5.3, "runtime": 104}, "4977": {"poster_path": "/aWLRuxeZL4d8Up2UvLW5EBYdSDl.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 944915, "overview": "When a machine that allows therapists to enter their patient's dreams is stolen, all hell breaks loose. Only a young female therapist can stop it: Paprika.", "video": false, "id": 4977, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Paprika", "tagline": "This is your brain on anime.", "vote_count": 101, "homepage": "http://www.sonyclassics.com/paprika/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0851578", "adult": false, "backdrop_path": "/5hWaV1JrT0GLA8Yfnh8DYwQC72X.jpg", "production_companies": [{"name": "Madhouse", "id": 4288}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Paprika Film Partners", "id": 12050}], "release_date": "2006-10-21", "popularity": 0.28947727210288, "original_title": "Papurika", "budget": 0, "cast": [{"name": "Megumi Hayashibara", "character": "Paprika / Atsuko", "id": 40325, "credit_id": "52fe43eac3a36847f8078103", "cast_id": 1, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 0}, {"name": "T\u014dru Furuya", "character": "Tokita Kohsaku", "id": 40327, "credit_id": "52fe43eac3a36847f8078107", "cast_id": 3, "profile_path": "/9fuENGDDd6C30IudobBV8uh2XaK.jpg", "order": 1}, {"name": "K\u00f4ichi Yamadera", "character": "Osanai Morio", "id": 40328, "credit_id": "52fe43eac3a36847f807810b", "cast_id": 4, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 2}, {"name": "Katsunosuke Hori", "character": "Shima Tora-taroh", "id": 40329, "credit_id": "52fe43eac3a36847f807810f", "cast_id": 5, "profile_path": "/e6B1DN8CVSZuAJoHTKbpeOxuiKD.jpg", "order": 3}, {"name": "Toru Emori", "character": "Inui Sei-jiroh", "id": 40330, "credit_id": "52fe43eac3a36847f8078113", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Daisuke Sakaguchi", "character": "Himuro Kei", "id": 40331, "credit_id": "52fe43eac3a36847f8078117", "cast_id": 7, "profile_path": "/bvx8D4L8ng5ti6Cy03OP5kqjqlH.jpg", "order": 5}, {"name": "Mitsuo Iwata", "character": "Tsumura Yasushi", "id": 1678, "credit_id": "52fe43eac3a36847f807811b", "cast_id": 8, "profile_path": "/uiCp6G7TR3kHtxQQNNLiVEiXadU.jpg", "order": 6}, {"name": "Rikako Aikawa", "character": "Kakimoto Nobue", "id": 40332, "credit_id": "52fe43eac3a36847f807811f", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Satoshi Kon", "character": "Jin-nai", "id": 40333, "credit_id": "52fe43eac3a36847f8078123", "cast_id": 10, "profile_path": "/oaI0Lsfscb47WBY3FCKaGr2MXoN.jpg", "order": 8}, {"name": "Yasutaka Tsutsui", "character": "Kuga", "id": 40334, "credit_id": "52fe43eac3a36847f8078127", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Akio \u00d4tsuka", "character": "Kogawa Toshimi", "id": 40451, "credit_id": "52fe43eac3a36847f807817f", "cast_id": 29, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 10}], "directors": [{"name": "Satoshi Kon", "department": "Directing", "job": "Director", "credit_id": "52fe43eac3a36847f8078133", "profile_path": "/oaI0Lsfscb47WBY3FCKaGr2MXoN.jpg", "id": 40333}], "vote_average": 7.3, "runtime": 90}, "4978": {"poster_path": "/glZNfxN4cef0pJeD08xru7ZVWlI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84542002, "overview": "A young mouse named Fievel and his family decide to migrate to America, a \"land without cats,\" at the turn of the 20th century. But somehow, Fievel ends up in the New World alone and must fend off not only the felines he never thought he'd have to deal with again but also the loneliness of being away from home.", "video": false, "id": 4978, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "An American Tail", "tagline": "Meet Fievel. In his search to find his family, he discovered America.", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/spEFy5eHaNuINNHhwtCWKy1bBiY.jpg", "id": 8783, "name": "Fievel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090633", "adult": false, "backdrop_path": "/uVU17cW0utb2y73Ol7LjeY4zEXf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1986-11-21", "popularity": 0.781495328742876, "original_title": "An American Tail", "budget": 0, "cast": [{"name": "Phillip Glasser", "character": "Fievel Mousekewitz", "id": 40348, "credit_id": "52fe43eac3a36847f80781f3", "cast_id": 11, "profile_path": null, "order": 0}, {"name": "Dom DeLuise", "character": "Tiger", "id": 6844, "credit_id": "52fe43eac3a36847f80781f7", "cast_id": 12, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 1}, {"name": "Nehemiah Persoff", "character": "Papa Mousekewitz", "id": 3160, "credit_id": "52fe43eac3a36847f80781fb", "cast_id": 13, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 2}, {"name": "Erica Yohn", "character": "Mama Mousekewitz", "id": 40349, "credit_id": "52fe43eac3a36847f80781ff", "cast_id": 14, "profile_path": null, "order": 3}, {"name": "Amy Green", "character": "Tanya Mousekewitz", "id": 40350, "credit_id": "52fe43eac3a36847f8078203", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "John P. Finnegan", "character": "Warren T. Rat", "id": 40351, "credit_id": "52fe43eac3a36847f8078207", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Pat Musick", "character": "Tony Toponi", "id": 35349, "credit_id": "52fe43eac3a36847f807820f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Pat Musick", "character": "Tony Toponi", "id": 35349, "credit_id": "52fe43eac3a36847f807820b", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Madeline Kahn", "character": "Gussie Mausheimer", "id": 29803, "credit_id": "52fe43eac3a36847f8078213", "cast_id": 20, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 8}, {"name": "Will Ryan", "character": "Digit", "id": 40352, "credit_id": "52fe43eac3a36847f8078217", "cast_id": 21, "profile_path": "/uY0oWjp7dxBEh03LpMBqApaswn.jpg", "order": 9}, {"name": "Christopher Plummer", "character": "Henri", "id": 290, "credit_id": "52fe43eac3a36847f807821b", "cast_id": 22, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 10}, {"name": "Neil Ross", "character": "Honest John", "id": 64951, "credit_id": "52fe43eac3a36847f8078231", "cast_id": 26, "profile_path": "/dgcStU8y6YccpzuLeG0U0bC5xvC.jpg", "order": 11}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe43eac3a36847f80781b9", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}], "vote_average": 6.7, "runtime": 80}, "4982": {"poster_path": "/tBcUIbC38e43ZKlZxqQRx9WUIsW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 266465037, "overview": "Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Based on a true story.", "video": false, "id": 4982, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "American Gangster", "tagline": "There are two sides to the American dream.", "vote_count": 378, "homepage": "http://www.americangangster.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765429", "adult": false, "backdrop_path": "/uSWzHRan14Kxe7AgbA43CSN1fXw.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2007-11-02", "popularity": 1.15411311716116, "original_title": "American Gangster", "budget": 100000000, "cast": [{"name": "Denzel Washington", "character": "Frank Lucas", "id": 5292, "credit_id": "52fe43ebc3a36847f80783cf", "cast_id": 12, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Richie Roberts", "id": 934, "credit_id": "52fe43ebc3a36847f80783cb", "cast_id": 11, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Chiwetel Ejiofor", "character": "Huey Lucas", "id": 5294, "credit_id": "52fe43ebc3a36847f80783d3", "cast_id": 13, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 2}, {"name": "Josh Brolin", "character": "Detectice Trupo", "id": 16851, "credit_id": "52fe43ebc3a36847f80783d7", "cast_id": 14, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 3}, {"name": "Lymari Nadal", "character": "Eva", "id": 40376, "credit_id": "52fe43ebc3a36847f80783db", "cast_id": 15, "profile_path": "/nBQ5uRZqWsu3zTDfrmzjb3R6DYT.jpg", "order": 4}, {"name": "Ted Levine", "character": "Lou Toback", "id": 15854, "credit_id": "52fe43ebc3a36847f80783df", "cast_id": 16, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 5}, {"name": "Roger Guenveur Smith", "character": "Nate", "id": 40377, "credit_id": "52fe43ebc3a36847f80783e3", "cast_id": 17, "profile_path": "/c6yUnUcbNxCUKAjucLlh6VHzmCd.jpg", "order": 6}, {"name": "John Hawkes", "character": "Freddie Spearman", "id": 16861, "credit_id": "52fe43ebc3a36847f80783e7", "cast_id": 18, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 7}, {"name": "RZA", "character": "Moses Jones", "id": 150, "credit_id": "52fe43ebc3a36847f80783eb", "cast_id": 19, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 8}, {"name": "Yul Vazquez", "character": "Alfonso Abruzzo", "id": 75604, "credit_id": "52fe43ebc3a36847f80783ff", "cast_id": 24, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 9}, {"name": "Malcolm Goodwin", "character": "Jimmy Zee", "id": 57997, "credit_id": "52fe43ebc3a36847f8078403", "cast_id": 25, "profile_path": "/igRMW5VUmv52D6wsD03s08oRWHT.jpg", "order": 10}, {"name": "Ruby Dee", "character": "Mama Lucas", "id": 15532, "credit_id": "52fe43ebc3a36847f807840b", "cast_id": 28, "profile_path": "/hadVr5kdeqlorRmjaMhHAutTbAm.jpg", "order": 11}, {"name": "Ruben Santiago-Hudson", "character": "Doc", "id": 31839, "credit_id": "52fe43ebc3a36847f8078407", "cast_id": 27, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 12}, {"name": "Carla Gugino", "character": "Laurie Roberts", "id": 17832, "credit_id": "52fe43ebc3a36847f80783ef", "cast_id": 20, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 13}, {"name": "Skyler Fortgang", "character": "Michael Roberts", "id": 1135538, "credit_id": "52fe43ebc3a36847f807842f", "cast_id": 48, "profile_path": "/gvWqsaCETvqNc4Lue7dIBvh1sGJ.jpg", "order": 14}, {"name": "John Ortiz", "character": "Javier J. Rivera", "id": 40543, "credit_id": "52fe43ebc3a36847f807840f", "cast_id": 29, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 15}, {"name": "Cuba Gooding Jr.", "character": "Nicky Barnes", "id": 9777, "credit_id": "52fe43ebc3a36847f80783fb", "cast_id": 23, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 16}, {"name": "Armand Assante", "character": "Dominic Cattano", "id": 23346, "credit_id": "52fe43ebc3a36847f8078413", "cast_id": 30, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 17}, {"name": "Kathleen Garrett", "character": "Mrs. Dominic Cattano", "id": 162542, "credit_id": "52fe43ebc3a36847f8078417", "cast_id": 31, "profile_path": "/y1lZYCFkMt0694Q1qyGA85jTPc8.jpg", "order": 18}, {"name": "Joe Morton", "character": "Charlie Williams", "id": 3977, "credit_id": "52fe43ebc3a36847f807841b", "cast_id": 32, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 19}, {"name": "Ritchie Coster", "character": "Joey Sadano", "id": 13939, "credit_id": "52fe43ebc3a36847f807841f", "cast_id": 33, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 20}, {"name": "Idris Elba", "character": "Tango", "id": 17605, "credit_id": "52fe43ebc3a36847f8078423", "cast_id": 35, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 21}, {"name": "Common", "character": "Turner Lucas", "id": 4238, "credit_id": "52fe43ebc3a36847f80783f3", "cast_id": 21, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 22}, {"name": "T.I.", "character": "Stevie Lucas", "id": 76126, "credit_id": "52fe43ebc3a36847f80783f7", "cast_id": 22, "profile_path": "/ycNO8wU6H75wDDfojMCTjoxtEmt.jpg", "order": 23}, {"name": "Kevin Corrigan", "character": "Campizi", "id": 18472, "credit_id": "52fe43ebc3a36847f8078427", "cast_id": 41, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 24}, {"name": "KaDee Strickland", "character": "Richie's Attorney", "id": 20388, "credit_id": "52fe43ebc3a36847f807842b", "cast_id": 47, "profile_path": "/9E0EFvaAY0vVubogVfFtXH1LAXe.jpg", "order": 25}, {"name": "Chance Kelly", "character": "MP", "id": 17194, "credit_id": "52fe43ebc3a36847f8078439", "cast_id": 50, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 26}, {"name": "Larry Mitchell", "character": "FBI Agent", "id": 1182724, "credit_id": "55055ee7c3a36862e1002811", "cast_id": 51, "profile_path": "/iTdRRujnU2H6axxxL4iaefI3mlw.jpg", "order": 27}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43ebc3a36847f8078391", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.0, "runtime": 157}, "54138": {"poster_path": "/xN3ueLKyE5uR8IrhQPvxHX8gIgE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 467365246, "overview": "When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.", "video": false, "id": 54138, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek Into Darkness", "tagline": "Earth Will Fall", "vote_count": 2360, "homepage": "http://www.startrekmovie.com/", "belongs_to_collection": {"backdrop_path": "/gWl5pN2FplE709aVtA4lakwsE6t.jpg", "poster_path": "/w2IVqa43Ge49mrY3qSaJWpyDtz6.jpg", "id": 115575, "name": "Star Trek: Alternate Reality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1408101", "adult": false, "backdrop_path": "/mZDS11lSL7WXhDOeNQUnPEkMK0L.jpg", "production_companies": [{"name": "Bad Robot", "id": 11461}, {"name": "Paramount Pictures", "id": 4}, {"name": "Kurtzman/Orci", "id": 12536}, {"name": "Skydance Productions", "id": 6277}], "release_date": "2013-05-16", "popularity": 2.65440074468945, "original_title": "Star Trek Into Darkness", "budget": 190000000, "cast": [{"name": "Chris Pine", "character": "Kirk", "id": 62064, "credit_id": "52fe488dc3a36847f816d779", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Zachary Quinto", "character": "Spock", "id": 17306, "credit_id": "52fe488dc3a36847f816d785", "cast_id": 6, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 1}, {"name": "Zoe Saldana", "character": "Uhura", "id": 8691, "credit_id": "52fe488dc3a36847f816d775", "cast_id": 1, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 2}, {"name": "Karl Urban", "character": "Bones", "id": 1372, "credit_id": "52fe488dc3a36847f816d7ab", "cast_id": 17, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 3}, {"name": "Simon Pegg", "character": "Scotty", "id": 11108, "credit_id": "52fe488dc3a36847f816d77d", "cast_id": 3, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 4}, {"name": "John Cho", "character": "Sulu", "id": 68842, "credit_id": "52fe488dc3a36847f816d789", "cast_id": 7, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 5}, {"name": "Benedict Cumberbatch", "character": "Khan", "id": 71580, "credit_id": "52fe488dc3a36847f816d7c5", "cast_id": 26, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 6}, {"name": "Anton Yelchin", "character": "Chekov", "id": 21028, "credit_id": "52fe488dc3a36847f816d781", "cast_id": 5, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 7}, {"name": "Bruce Greenwood", "character": "Pike", "id": 21089, "credit_id": "52fe488dc3a36847f816d7c1", "cast_id": 23, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 8}, {"name": "Peter Weller", "character": "Marcus", "id": 27811, "credit_id": "52fe488dc3a36847f816d7e3", "cast_id": 33, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 9}, {"name": "Alice Eve", "character": "Carol", "id": 59860, "credit_id": "52fe488dc3a36847f816d7c9", "cast_id": 27, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 10}, {"name": "Noel Clarke", "character": "Thomas Harewood", "id": 76242, "credit_id": "54691d2ceaeb816b48001896", "cast_id": 60, "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "order": 11}, {"name": "Nazneen Contractor", "character": "Rima Harewood", "id": 180997, "credit_id": "54691d62eaeb816b58001677", "cast_id": 61, "profile_path": "/7QIVzJvkWB2Ofnxr233c40iVa5A.jpg", "order": 12}, {"name": "Amanda Foreman", "character": "Ensign Brackett", "id": 13024, "credit_id": "54691d7422136e68da0015ce", "cast_id": 62, "profile_path": "/fitfsjRoC2i8YocBndcOFOuV7EU.jpg", "order": 13}, {"name": "Jay Scully", "character": "Lieutenant Chapin", "id": 60946, "credit_id": "54691dc822136e68d200174d", "cast_id": 63, "profile_path": null, "order": 14}, {"name": "Jonathan Dixon", "character": "Ensign Froman", "id": 1228940, "credit_id": "54691e04eaeb816b4b0017f2", "cast_id": 64, "profile_path": null, "order": 15}, {"name": "Aisha Hinds", "character": "Navigation Officer Darwin", "id": 1192492, "credit_id": "52fe488dc3a36847f816d7eb", "cast_id": 35, "profile_path": "/pDgm7OM9pT9rF5Q41lVVWj2cqOv.jpg", "order": 16}, {"name": "Joseph Gatt", "character": "Science Officer 0718", "id": 58508, "credit_id": "54691e75eaeb816b480018ba", "cast_id": 65, "profile_path": "/uTIhcvIEc4txrfcPcfC4dIIOzYB.jpg", "order": 17}, {"name": "Jeremy Raymond", "character": "Lead Nibiran", "id": 1051473, "credit_id": "54691ea7eaeb816b550018d8", "cast_id": 66, "profile_path": null, "order": 18}, {"name": "Tony Guma", "character": "Nibiran", "id": 178452, "credit_id": "54691ecf22136e68d2001768", "cast_id": 67, "profile_path": null, "order": 19}, {"name": "Kimberly Arland", "character": "Madeline", "id": 1271733, "credit_id": "52fe488dc3a36847f816d83d", "cast_id": 49, "profile_path": "/pcp0B5iSalHZcYRKKDuGQYcJ7z9.jpg", "order": 20}, {"name": "Sean Blakemore", "character": "Klingon", "id": 62093, "credit_id": "54691f59eaeb816b4f00175e", "cast_id": 68, "profile_path": "/hPeXz7vcBJdBIHoaTuVMcRJZeGJ.jpg", "order": 21}, {"name": "Nick E. Tarabay", "character": "Klingon", "id": 224182, "credit_id": "54691f78eaeb810173000044", "cast_id": 69, "profile_path": "/UddiJH5KLboWacFHJKfV6WwFu2.jpg", "order": 22}, {"name": "Beau Billingslea", "character": "Captain Abbot", "id": 78494, "credit_id": "54691ffa22136e68c70017c0", "cast_id": 70, "profile_path": "/3Ooz7bdkkSwwbzOs9SPXIXvGKYQ.jpg", "order": 23}, {"name": "Deep Roy", "character": "Keenser", "id": 1295, "credit_id": "5469201f22136e68d80016a9", "cast_id": 71, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 24}, {"name": "Anjini Taneja Azhar", "character": "Lucille Harewood", "id": 1110406, "credit_id": "5469206b22136e68c70017d0", "cast_id": 72, "profile_path": null, "order": 25}, {"name": "Jack Laufer", "character": "Doctor", "id": 1352682, "credit_id": "5469208aeaeb816b480018fc", "cast_id": 73, "profile_path": "/1uCBrRFkveCEsVlfkiqRtiU2FVA.jpg", "order": 26}, {"name": "Katie Cockrell", "character": "Girl", "id": 1386113, "credit_id": "5469209b22136e68c9001bce", "cast_id": 74, "profile_path": null, "order": 27}, {"name": "Kellie Cockrell", "character": "Girl", "id": 88706, "credit_id": "546920a7eaeb810173000060", "cast_id": 75, "profile_path": null, "order": 28}, {"name": "Jason Matthew Smith", "character": "Cupcake", "id": 154702, "credit_id": "546920bb22136e68c9001bd6", "cast_id": 76, "profile_path": null, "order": 29}, {"name": "Chris Hemsworth", "character": "George Kirk", "id": 74568, "credit_id": "546920d222136e68c9001bdb", "cast_id": 77, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 30}, {"name": "Jennifer Morrison", "character": "Winona Kirk", "id": 41421, "credit_id": "5469212deaeb816b430017cf", "cast_id": 78, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 31}, {"name": "Seth Ayott", "character": "U.S.S. Enterprise Shuttle Ensign", "id": 1225974, "credit_id": "5469215aeaeb816b48001910", "cast_id": 79, "profile_path": null, "order": 32}, {"name": "Marco Sanchez", "character": "Torpedo Security", "id": 62710, "credit_id": "5469218722136e68c70017f6", "cast_id": 80, "profile_path": "/xuUcvx9lwTvNR8WQUTxl2BYu1Uq.jpg", "order": 33}, {"name": "Lee Reherman", "character": "Uniformed Mercenary", "id": 119699, "credit_id": "546921b3eaeb816b580016d6", "cast_id": 81, "profile_path": "/a15OMXynrsgyvuWEWqbbVQDtBdz.jpg", "order": 34}, {"name": "Scott Lawrence", "character": "U.S.S. Vengeance Officer", "id": 42317, "credit_id": "546921fd22136e68cf0017bb", "cast_id": 82, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 35}, {"name": "Usman Ally", "character": "U.S.S. Vengeance Officer", "id": 1129806, "credit_id": "52fe488ec3a36847f816d875", "cast_id": 59, "profile_path": "/i7lGbUtxUVgyAhWiUeZpzlFTmKU.jpg", "order": 36}, {"name": "Nolan North", "character": "U.S.S. Vengeance Bridge Officer", "id": 19508, "credit_id": "5469222422136e68d5001778", "cast_id": 83, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 37}, {"name": "James Hiroyuki Liao", "character": "U.S.S. Vengeance Bridge Officer", "id": 58330, "credit_id": "5469223d22136e68c7001806", "cast_id": 84, "profile_path": "/efnKaLlUr8wRSGAsDdGa4yrbXqj.jpg", "order": 38}, {"name": "Rob Moran", "character": "U.S.S. Vengeance Ensign", "id": 162924, "credit_id": "54692254eaeb816b4b001866", "cast_id": 85, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 39}, {"name": "Berit Francis", "character": "Starfleet Admiral", "id": 1386119, "credit_id": "5469226a22136e68c700180e", "cast_id": 86, "profile_path": null, "order": 40}, {"name": "Akiva Goldsman", "character": "Starfleet Admiral", "id": 5575, "credit_id": "5469228feaeb816b4600180e", "cast_id": 87, "profile_path": "/smyKiXX4rAfehztrmg3lxgRAuZF.jpg", "order": 41}, {"name": "Benjamin P. Binswanger", "character": "Starfleet Admiral", "id": 1386120, "credit_id": "546922a022136e68cc001919", "cast_id": 88, "profile_path": null, "order": 42}, {"name": "Christopher Doohan", "character": "Transport Officer", "id": 1278368, "credit_id": "546922b8eaeb816b580016f1", "cast_id": 89, "profile_path": null, "order": 43}, {"name": "Andy Demetrio", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386121, "credit_id": "54692338eaeb816b46001827", "cast_id": 90, "profile_path": null, "order": 44}, {"name": "Gianna Simone", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386122, "credit_id": "54692357eaeb816b46001835", "cast_id": 91, "profile_path": null, "order": 45}, {"name": "Rene Rosado", "character": "U.S.S. Enterprise Bridge Crew", "id": 204384, "credit_id": "5469236f22136e68c9001c27", "cast_id": 92, "profile_path": "/yCl1rn1LegaRkD81GuOYS7vrIXT.jpg", "order": 46}, {"name": "Jacquelynn King", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386123, "credit_id": "54692381eaeb816b43001810", "cast_id": 93, "profile_path": null, "order": 47}, {"name": "Long Tran", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386124, "credit_id": "5469239922136e68cc001944", "cast_id": 94, "profile_path": null, "order": 48}, {"name": "Ningning Deng", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386125, "credit_id": "546923abeaeb816b4b00188f", "cast_id": 95, "profile_path": null, "order": 49}, {"name": "Jodi Johnston", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386126, "credit_id": "546923b7eaeb816b4b001895", "cast_id": 96, "profile_path": null, "order": 50}, {"name": "Colleen Harris", "character": "Lady V", "id": 1386127, "credit_id": "546923d6eaeb8101730000ac", "cast_id": 97, "profile_path": null, "order": 51}, {"name": "Jeff Chase", "character": "U.S.S. Enterprise Security", "id": 56448, "credit_id": "54692403eaeb816b4800194d", "cast_id": 98, "profile_path": "/x7W1nwnsITcPdODJ5OEP0HF71BH.jpg", "order": 52}, {"name": "Monisola Akiwowo", "character": "U.S.S. Enterprise Nurse", "id": 1386128, "credit_id": "5469248d22136e68cf001808", "cast_id": 99, "profile_path": null, "order": 53}, {"name": "Paul K. Daniel", "character": "Shuttle Pilot", "id": 1386129, "credit_id": "5469249beaeb816b55001999", "cast_id": 100, "profile_path": null, "order": 54}, {"name": "Ser'Darius Blain", "character": "U.S.S. Enterprise Red Shirt", "id": 1160181, "credit_id": "546924c622136e68cf001811", "cast_id": 101, "profile_path": "/qpHplsNLribEDcrnHzC8EvQ8FSz.jpg", "order": 55}, {"name": "Heather Langenkamp", "character": "Moto", "id": 5141, "credit_id": "52fe488dc3a36847f816d7e7", "cast_id": 34, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 56}, {"name": "David C. Waite", "character": "U.S.S. Enterprise Crew", "id": 1386130, "credit_id": "546924feeaeb816b550019a5", "cast_id": 102, "profile_path": null, "order": 57}, {"name": "Melissa Paulo", "character": "Bar Girl", "id": 1384191, "credit_id": "54692512eaeb816b48001970", "cast_id": 103, "profile_path": "/wdotSdtf3PdVR66zeuXw48cyNEk.jpg", "order": 58}, {"name": "Cynthia Addai-Robinson", "character": "San Francisco Woman", "id": 182272, "credit_id": "54692532eaeb816b43001842", "cast_id": 104, "profile_path": "/sVHW4dPZFiLjtYUnxmennc47d0l.jpg", "order": 59}, {"name": "Drew Grey", "character": "San Francisco Bar Patron", "id": 1386131, "credit_id": "5469254222136e68c7001860", "cast_id": 105, "profile_path": null, "order": 60}, {"name": "Douglas Weng", "character": "U.S.S. Vengeance Security", "id": 1386132, "credit_id": "5469255a22136e68c9001c5e", "cast_id": 106, "profile_path": null, "order": 61}, {"name": "Charlie Haugk", "character": "San Francisco Resident", "id": 1386134, "credit_id": "546925feeaeb816b4f00181b", "cast_id": 107, "profile_path": null, "order": 62}, {"name": "Max Chernov", "character": "San Francisco Resident", "id": 1275519, "credit_id": "5469261122136e68d800175a", "cast_id": 108, "profile_path": null, "order": 63}, {"name": "Marc Primiani", "character": "San Francisco Resident", "id": 1386136, "credit_id": "5469262222136e68d8001760", "cast_id": 109, "profile_path": null, "order": 64}, {"name": "Jesper Inglis", "character": "San Francisco Resident", "id": 1275938, "credit_id": "54692638eaeb816b58001757", "cast_id": 110, "profile_path": null, "order": 65}, {"name": "Jacob Rhodes", "character": "Nibiru Child", "id": 1386138, "credit_id": "54692649eaeb816b4b0018ea", "cast_id": 111, "profile_path": null, "order": 66}, {"name": "Kentucky Rhodes", "character": "Nibiru Child", "id": 1386140, "credit_id": "5469265e22136e68cc00198b", "cast_id": 112, "profile_path": null, "order": 67}, {"name": "Anthony Wilson", "character": "Shaku", "id": 1386141, "credit_id": "54692690eaeb816b4300186f", "cast_id": 113, "profile_path": null, "order": 68}, {"name": "Eric Greitens", "character": "Starfleet Ceremonial Guard", "id": 1386144, "credit_id": "546926cceaeb816b480019a0", "cast_id": 114, "profile_path": null, "order": 69}, {"name": "Melissa Steinman", "character": "Starfleet Ceremonial Guard", "id": 1386145, "credit_id": "546926d7eaeb816b4f001841", "cast_id": 115, "profile_path": null, "order": 70}, {"name": "Adam McCann", "character": "Starfleet Ceremonial Guard", "id": 1386146, "credit_id": "546926e122136e68d8001774", "cast_id": 116, "profile_path": null, "order": 71}, {"name": "Jon Orvasky", "character": "Starfleet Ceremonial Guard", "id": 1386147, "credit_id": "546926f2eaeb8101730000f9", "cast_id": 117, "profile_path": null, "order": 72}, {"name": "Gerald W. Abrams", "character": "Starfleet Memorial Admiral", "id": 181879, "credit_id": "5469272beaeb81017300010f", "cast_id": 118, "profile_path": null, "order": 73}, {"name": "James McGrath", "character": "Starfleet Memorial Admiral", "id": 1275520, "credit_id": "5469274e22136e68d8001788", "cast_id": 119, "profile_path": null, "order": 74}, {"name": "Brian T. Delaney", "character": "Additional Voices (voice)", "id": 1386148, "credit_id": "546927d322136e68cc0019b4", "cast_id": 120, "profile_path": null, "order": 75}, {"name": "Arlen Escarpeta", "character": "Additional Voices (voice)", "id": 78432, "credit_id": "546927ee22136e68c9001cbb", "cast_id": 121, "profile_path": "/j6UsveHGfxcnohafoCDAVqQBLpC.jpg", "order": 76}, {"name": "Chris Gardner", "character": "Additional Voices (voice)", "id": 1386149, "credit_id": "54692826eaeb816b4f001863", "cast_id": 122, "profile_path": null, "order": 77}, {"name": "Joe Hanna", "character": "Additional Voices (voice)", "id": 1386150, "credit_id": "5469283322136e68cf001861", "cast_id": 123, "profile_path": null, "order": 78}, {"name": "David Acord", "character": "Additional Voices (voice)", "id": 1235786, "credit_id": "5469285022136e68c9001cc4", "cast_id": 124, "profile_path": null, "order": 79}, {"name": "Joe Moses", "character": "Additional Voices (voice)", "id": 1277452, "credit_id": "5469288722136e68d5001835", "cast_id": 125, "profile_path": null, "order": 80}, {"name": "Kevin Michael Richardson", "character": "Additional Voices (voice)", "id": 24362, "credit_id": "5469289c22136e68c70018b4", "cast_id": 126, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 81}, {"name": "David Sobolov", "character": "Additional Voices (voice)", "id": 1219841, "credit_id": "546928b7eaeb816b4b001930", "cast_id": 127, "profile_path": null, "order": 82}, {"name": "Matthew Wood", "character": "Additional Voices (voice)", "id": 71536, "credit_id": "546928cdeaeb816b55001a0f", "cast_id": 128, "profile_path": "/oB9wVbEIg8fjY3ulDKjKsGn2A55.jpg", "order": 83}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "5469291422136e68c70018c4", "cast_id": 129, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 84}, {"name": "Kiff VandenHeuvel", "character": "Additional Voices (voice)", "id": 1141368, "credit_id": "5469293b22136e68c9001cdf", "cast_id": 130, "profile_path": null, "order": 85}, {"name": "Julianne Buescher", "character": "Additional Voices (voice)", "id": 135818, "credit_id": "5469295deaeb816b460018cd", "cast_id": 131, "profile_path": null, "order": 86}, {"name": "Ellie Newlands", "character": "Additional Voices (voice)", "id": 1386151, "credit_id": "5469296d22136e68c9001ce9", "cast_id": 132, "profile_path": null, "order": 87}, {"name": "Candice Renee", "character": "Additional Voices (voice)", "id": 1386152, "credit_id": "5469297b22136e68da0016f4", "cast_id": 133, "profile_path": null, "order": 88}, {"name": "Audrey Wasilewski", "character": "Additional Voices (voice)", "id": 86170, "credit_id": "546929c822136e68cc0019df", "cast_id": 134, "profile_path": "/pAIt9Pxioss1pz7IwAPsyMiEuM2.jpg", "order": 89}, {"name": "Emily Towers", "character": "Additional Voices (voice)", "id": 1386153, "credit_id": "546929db22136e68da001702", "cast_id": 135, "profile_path": null, "order": 90}, {"name": "Gina Hirsch", "character": "Additional Voices (voice)", "id": 1386154, "credit_id": "546929ea22136e68c9001cf8", "cast_id": 136, "profile_path": null, "order": 91}, {"name": "Bill Hader", "character": "Additional Voices (voice)", "id": 19278, "credit_id": "546929fb22136e68d500185d", "cast_id": 137, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 92}, {"name": "Leonard Nimoy", "character": "Spock Prime", "id": 1749, "credit_id": "52fe488dc3a36847f816d86b", "cast_id": 57, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 93}, {"name": "Tom Archdeacon", "character": "Ensign Spyke (uncredited)", "id": 931939, "credit_id": "52fe488dc3a36847f816d7d1", "cast_id": 29, "profile_path": "/iIKMFjmHkUHso6Nx4yWB2UG3zK.jpg", "order": 94}, {"name": "Jon Lee Brody", "character": "U.S.S. Enterprise Security (uncredited)", "id": 1161711, "credit_id": "52fe488dc3a36847f816d7d5", "cast_id": 30, "profile_path": "/u1agQE1nYgt2LOijksYJMPYxpKh.jpg", "order": 95}, {"name": "Britanni Johnson", "character": "NYU Nurse (uncredited)", "id": 1039680, "credit_id": "52fe488dc3a36847f816d7cd", "cast_id": 28, "profile_path": "/hUwMmgVBaXDFy7VkkWtdfky7e67.jpg", "order": 96}, {"name": "Hiram A. Murray", "character": "Bar Patron (uncredited)", "id": 1161712, "credit_id": "52fe488dc3a36847f816d7d9", "cast_id": 31, "profile_path": "/qBT4jNXD9O2KQ74LtqRQ6V8Qm0l.jpg", "order": 97}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe488dc3a36847f816d7b1", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 7.5, "runtime": 132}, "13179": {"poster_path": "/wQYXOKYLImMk79eceoqtuK9Jre8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Journey into the secret world of Pixie Hollow and hear Tinker Bell speak for the very first time as the astonishing story of Disney's most famous fairy is finally revealed in the all-new motion picture \"Tinker Bell.\"", "video": false, "id": 13179, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Tinker Bell", "tagline": "Enter the world of fairies.", "vote_count": 74, "homepage": "http://disney.go.com/fairies/movies/about.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nTEOjP7JpFa9VZlawzqNBy4g5KY.jpg", "id": 315595, "name": "Tinker Bell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0823671", "adult": false, "backdrop_path": "/j7r0HwdQibJYPxmStqqucqWaX7u.jpg", "production_companies": [{"name": "Prana Studios", "id": 18713}, {"name": "Prana Animation Studios", "id": 22135}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2008-10-27", "popularity": 1.22834659100902, "original_title": "Tinker Bell", "budget": 48000000, "cast": [{"name": "Mae Whitman", "character": "Tinker Bell (voice)", "id": 52404, "credit_id": "52fe45499251416c75051655", "cast_id": 1, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 0}, {"name": "Kristin Chenoweth", "character": "Rosetta (voice)", "id": 52775, "credit_id": "52fe45499251416c75051659", "cast_id": 2, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 1}, {"name": "Raven-Symon\u00e9", "character": "Iridessa (voice)", "id": 66896, "credit_id": "52fe45499251416c7505165d", "cast_id": 3, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 2}, {"name": "Lucy Liu", "character": "Silvermist (voice)", "id": 140, "credit_id": "52fe45499251416c75051661", "cast_id": 4, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 3}, {"name": "America Ferrera", "character": "Fawn (voice)", "id": 59174, "credit_id": "52fe45499251416c75051665", "cast_id": 5, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 4}, {"name": "Jane Horrocks", "character": "Fairy Mary (voice)", "id": 34902, "credit_id": "52fe45499251416c75051669", "cast_id": 6, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 5}, {"name": "Jesse McCartney", "character": "Terence (voice)", "id": 49915, "credit_id": "52fe45499251416c7505166d", "cast_id": 7, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 6}, {"name": "Jeff Bennett", "character": "Clank (voice)", "id": 34982, "credit_id": "52fe45499251416c75051671", "cast_id": 8, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 7}, {"name": "Pamela Adlon", "character": "Vidia (voice)", "id": 21063, "credit_id": "52fe45499251416c75051675", "cast_id": 10, "profile_path": "/8zunKeNg9XTpmDQjokeEi3K6hvG.jpg", "order": 9}, {"name": "Anjelica Huston", "character": "Queen Clarion (voice)", "id": 5657, "credit_id": "52fe45499251416c75051679", "cast_id": 11, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 10}, {"name": "Loreena McKennitt", "character": "Narrator", "id": 78310, "credit_id": "52fe45499251416c7505167d", "cast_id": 12, "profile_path": "/7WcxxXVP5qgRSrGps7nfw9lMz9i.jpg", "order": 11}, {"name": "Steve Valentine", "character": "Minister of Spring (voice)", "id": 78311, "credit_id": "52fe45499251416c75051681", "cast_id": 13, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 12}, {"name": "Kathy Najimy", "character": "Minister of Summer (voice)", "id": 11074, "credit_id": "52fe45499251416c75051685", "cast_id": 14, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 13}, {"name": "Richard Portnow", "character": "Minister of Autumn (voice)", "id": 4255, "credit_id": "52fe454a9251416c75051689", "cast_id": 15, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 14}, {"name": "Gail Borges", "character": "Minister of Winter (voice)", "id": 78312, "credit_id": "52fe454a9251416c7505168d", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "America Young", "character": "Wendy (voice)", "id": 63333, "credit_id": "52fe454a9251416c75051691", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Kathryn Cressida", "character": "Mrs. Darling (voice)", "id": 78315, "credit_id": "52fe454a9251416c75051695", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Bob Bergen", "character": "Fireflies (voice)", "id": 78317, "credit_id": "52fe454a9251416c75051699", "cast_id": 20, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 18}, {"name": "Rob Paulsen", "character": "Bobble (voice)", "id": 43125, "credit_id": "52fe454a9251416c7505169d", "cast_id": 21, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 19}], "directors": [{"name": "Bradley Raymond", "department": "Directing", "job": "Director", "credit_id": "52fe454a9251416c750516a3", "profile_path": "/eFJSeWaJrduYGwRNtvQXNMKONA7.jpg", "id": 69416}], "vote_average": 6.6, "runtime": 78}, "13183": {"poster_path": "/jXggcKzlyxj7yMBUIsqwiaaEtD5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185258983, "overview": "In a gritty and alternate 1985 the glory days of costumed vigilantes have been brought to a close by a government crackdown, but after one of the masked veterans is brutally murdered an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so uncover a sinister plot that puts all of humanity in grave danger.", "video": false, "id": 13183, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Watchmen", "tagline": "Justice is coming to all of us. No matter what we do.", "vote_count": 1046, "homepage": "http://www.watchmenmovie.co.uk/intl/br/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0409459", "adult": false, "backdrop_path": "/ok6Ws65nDSLAIKkKgIjqyM5OGCc.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DC Comics", "id": 429}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2009-03-05", "popularity": 1.54616501321606, "original_title": "Watchmen", "budget": 130000000, "cast": [{"name": "Malin Akerman", "character": "Laurie Juspeczyk / Silk Spectre", "id": 50463, "credit_id": "52fe454a9251416c75051819", "cast_id": 2, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 0}, {"name": "Billy Crudup", "character": "Jon Osterman / Dr. Manhattan", "id": 8289, "credit_id": "52fe454a9251416c75051825", "cast_id": 5, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 1}, {"name": "Carla Gugino", "character": "Sally Jupiter / Silk Spectre", "id": 17832, "credit_id": "52fe454a9251416c75051815", "cast_id": 1, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 2}, {"name": "Jeffrey Dean Morgan", "character": "Edward Blake / The Comedian", "id": 47296, "credit_id": "52fe454a9251416c7505181d", "cast_id": 3, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 3}, {"name": "Patrick Wilson", "character": "Dan Dreiberg / Nite Owl II", "id": 17178, "credit_id": "52fe454a9251416c75051821", "cast_id": 4, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 4}, {"name": "Jackie Earle Haley", "character": "Walter Kovacs / Rorschach", "id": 17183, "credit_id": "52fe454a9251416c75051829", "cast_id": 6, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 5}, {"name": "Matthew Goode", "character": "Adrian Veidt / Ozymandias", "id": 1247, "credit_id": "52fe454a9251416c750518ab", "cast_id": 28, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 6}, {"name": "Matt Frewer", "character": "Edgar Jacobi / Moloch the Mystic", "id": 40009, "credit_id": "52fe454a9251416c750518af", "cast_id": 29, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 7}, {"name": "Stephen McHattie", "character": "Hollis Mason / Nite Owl", "id": 230, "credit_id": "52fe454a9251416c750518b3", "cast_id": 30, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 8}, {"name": "Laura Mennell", "character": "Janey Slater", "id": 79343, "credit_id": "52fe454a9251416c750518b7", "cast_id": 31, "profile_path": "/2wk93WP1T1YZNNkn3bwEhc1tXwZ.jpg", "order": 9}, {"name": "Rob LaBelle", "character": "Wally Weaver", "id": 42708, "credit_id": "52fe454a9251416c750518bb", "cast_id": 32, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 10}, {"name": "Gary Houston", "character": "John McLaughlin", "id": 3909, "credit_id": "52fe454a9251416c750518bf", "cast_id": 33, "profile_path": "/sHnbRD3qic7ndwrYB3qRRPSiEFE.jpg", "order": 11}, {"name": "James M. Connor", "character": "Pat Buchanan (James Michael Connor)", "id": 79344, "credit_id": "52fe454a9251416c750518c3", "cast_id": 34, "profile_path": "/sImsxA3mlT4KaECf9hHO80icB1u.jpg", "order": 12}, {"name": "Mary Ann Burger", "character": "Eleanor Clift", "id": 79345, "credit_id": "52fe454a9251416c750518c7", "cast_id": 35, "profile_path": "/2T84gimfpP1tHD52N8vm52SJllX.jpg", "order": 13}, {"name": "John Shaw", "character": "Doug Roth", "id": 79346, "credit_id": "52fe454b9251416c750518cb", "cast_id": 36, "profile_path": "/r5ZeKicyshv5qFBqR4OiHEfNzwP.jpg", "order": 14}, {"name": "Robert Wisden", "character": "Richard Nixon", "id": 37432, "credit_id": "52fe454b9251416c750518cf", "cast_id": 37, "profile_path": "/pytxV426R5R712DOGTtFb8J1a5g.jpg", "order": 15}, {"name": "Jerry Wasserman", "character": "Detective Fine", "id": 21091, "credit_id": "52fe454b9251416c750518d3", "cast_id": 38, "profile_path": "/wNIZZXmI0LMnf2231auSExQz7FT.jpg", "order": 16}, {"name": "Don Thompson", "character": "Detective Gallagher", "id": 56749, "credit_id": "52fe454b9251416c750518d7", "cast_id": 39, "profile_path": "/gw4gG6uN4IItV0OeAWYFftmxvRn.jpg", "order": 17}, {"name": "Frank Novak", "character": "Henry Kissinger", "id": 46930, "credit_id": "52fe454b9251416c750518db", "cast_id": 40, "profile_path": "/qD6p4ZqXU5HmX1h2qTL4B43dMfc.jpg", "order": 18}, {"name": "Sean Allan", "character": "Norad General #1", "id": 60612, "credit_id": "52fe454b9251416c750518df", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "Ron Fassler", "character": "Ted Koppel", "id": 66661, "credit_id": "52fe454b9251416c750518e3", "cast_id": 42, "profile_path": "/s0lxSKUnCJOlXQl2aCPg0DrAHb.jpg", "order": 20}, {"name": "Stephanie Belding", "character": "Janet Black", "id": 20180, "credit_id": "52fe454b9251416c750518e7", "cast_id": 43, "profile_path": "/uH66JXFzOQNn29hylhJAm9Ir0mo.jpg", "order": 21}, {"name": "Chris Burns", "character": "Dumb Thug", "id": 79347, "credit_id": "52fe454b9251416c750518eb", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Nhi Do", "character": "Vietnamese Girl", "id": 79348, "credit_id": "52fe454b9251416c750518ef", "cast_id": 45, "profile_path": "/9YMhFzhGoaXKcd2lt4N2n8EhFkC.jpg", "order": 23}, {"name": "Walter Addison", "character": "Lee Iacocca", "id": 79349, "credit_id": "52fe454b9251416c750518f3", "cast_id": 46, "profile_path": "/eMb69Ub4CTfTp9EN77yCx4sGdf1.jpg", "order": 24}, {"name": "Tony Ali", "character": "Foreign Newscaster #11", "id": 79350, "credit_id": "52fe454b9251416c750518f7", "cast_id": 47, "profile_path": "/1keu77peeW7vGIwxPN8PXC69O1t.jpg", "order": 25}, {"name": "Alison Araya", "character": "Foreign Newscaster #1", "id": 79351, "credit_id": "52fe454b9251416c750518fb", "cast_id": 48, "profile_path": "/jfulWxtEmU5grAmR0iZwpKsMq88.jpg", "order": 26}, {"name": "Greg Armstrong-Morris", "character": "Truman Capote", "id": 79352, "credit_id": "52fe454b9251416c750518ff", "cast_id": 49, "profile_path": "/tspwX5DxzWTvpeeKg11DbU2kiem.jpg", "order": 27}, {"name": "Tony Bardach", "character": "John with Rorschach's Mother", "id": 79353, "credit_id": "52fe454b9251416c75051903", "cast_id": 50, "profile_path": null, "order": 28}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe454a9251416c7505182f", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.6, "runtime": 162}, "13184": {"poster_path": "/eyHn8A0lze1pbCNxv0UsATBOmyv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42486154, "overview": "When carrying out a hit, assassin Joe (Cage) always makes use of the knowledge of the local population. On arriving in Bangkok, Joe meets street kid Kong and he becomes his primary aide. But when Kong is nearly killed, he asks Joe to train him up in the deadly arts and unwittingly becomes a target of a band of killers.", "video": false, "id": 13184, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Bangkok Dangerous", "tagline": "There's only one way out.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0814022", "adult": false, "backdrop_path": "/lBVtKWWXH46r7oMLdfT3quioaVb.jpg", "production_companies": [{"name": "Virtual Studios", "id": 449}, {"name": "Initial Entertainment Group", "id": 704}, {"name": "Saturn Films", "id": 831}, {"name": "International Production Company", "id": 1507}, {"name": "Blue Star Pictures", "id": 2779}, {"name": "Living Films", "id": 2877}, {"name": "Bangkok Dangerous", "id": 2878}], "release_date": "2008-09-04", "popularity": 0.495932269409108, "original_title": "Bangkok Dangerous", "budget": 45000000, "cast": [{"name": "Nicolas Cage", "character": "Joe", "id": 2963, "credit_id": "52fe454b9251416c7505193f", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Shahkrit Yamnarm", "character": "Kong", "id": 74747, "credit_id": "52fe454b9251416c75051943", "cast_id": 3, "profile_path": "/68S0FJyfkBJXy7qwUaQIamYaVQP.jpg", "order": 1}, {"name": "Charlie Yeung", "character": "Fon", "id": 66762, "credit_id": "52fe454b9251416c75051947", "cast_id": 4, "profile_path": "/lImfxZvj75ietpOR9NZC8zXmuco.jpg", "order": 2}, {"name": "Panward Hemmanee", "character": "Aom", "id": 76484, "credit_id": "52fe454b9251416c75051993", "cast_id": 18, "profile_path": "/oMaf0f3CBKq9zdfeZ0QQxg51ZOM.jpg", "order": 3}, {"name": "Nirattisai Kaljaruek", "character": "Surat", "id": 76485, "credit_id": "52fe454b9251416c75051997", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Dom Hetrakul", "character": "Aran", "id": 76478, "credit_id": "52fe454b9251416c7505199b", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Tuck Napaskorn", "character": "Kong's Brother", "id": 76486, "credit_id": "52fe454b9251416c7505199f", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Steve Baldocchi", "character": "Michigan", "id": 76487, "credit_id": "52fe454b9251416c750519a3", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Chris Heebink", "character": "USC", "id": 76488, "credit_id": "52fe454b9251416c750519a7", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "James With", "character": "Chicago", "id": 76489, "credit_id": "52fe454b9251416c750519ab", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Oxide Pang Chun", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c7505193b", "profile_path": "/jrzNMBQjOCw9KZm7wuecQJhf9z9.jpg", "id": 31033}, {"name": "Danny Pang", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c7505194d", "profile_path": "/8A7cMugyDhFOhXbgwtUXOpo2XYx.jpg", "id": 21905}], "vote_average": 5.3, "runtime": 99}, "13186": {"poster_path": "/ftmiyfrTrqTi5Qod62nGRP9BGPn.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Retired military commander Colonel Dale Murphy hosts the simulated post-apocalyptic reality show where participants are challenged to survive a remote West Virginia wasteland. But the show turns into a nightmarish showdown when each realizes they are being hunted by an inbred family of cannibals determined to make them all dinner!", "video": false, "id": 13186, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wrong Turn 2: Dead End", "tagline": "Evil Awaits.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/32IsLLCoj3mIkZbLfCKSXZVqd3k.jpg", "poster_path": "/dtfQY5ZxvdHNG4HqNDy0ifwk1q6.jpg", "id": 52985, "name": "Wrong Turn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804555", "adult": false, "backdrop_path": "/6hBIRNqGhaFxMHLRyudhRJOJGHt.jpg", "production_companies": [{"name": "Constantin Film.", "id": 9078}, {"name": "Summit Entertainment", "id": 491}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2007-10-08", "popularity": 0.892830586725267, "original_title": "Wrong Turn 2: Dead End", "budget": 4000000, "cast": [{"name": "Erica Leerhsen", "character": "Nina Papas", "id": 57514, "credit_id": "52fe454b9251416c75051a23", "cast_id": 5, "profile_path": "/qI82zKaMmoSsWmjvbvWuNN0lWJy.jpg", "order": 0}, {"name": "Henry Rollins", "character": "Dale Murphy", "id": 9290, "credit_id": "52fe454b9251416c75051a27", "cast_id": 6, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 1}, {"name": "Texas Battle", "character": "Jake", "id": 53185, "credit_id": "52fe454b9251416c75051a2b", "cast_id": 7, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 2}, {"name": "Daniella Alonso", "character": "Amber", "id": 59296, "credit_id": "52fe454b9251416c75051a2f", "cast_id": 8, "profile_path": "/9w2ziDtZq60jVC5dbAiZmkQEfYe.jpg", "order": 3}, {"name": "Steve Braun", "character": "Jonesy", "id": 10867, "credit_id": "52fe454b9251416c75051a33", "cast_id": 9, "profile_path": "/wtLIbojDvKr0bGuTKng5DqO6w36.jpg", "order": 4}, {"name": "Aleksa Palladino", "character": "Mara", "id": 53441, "credit_id": "52fe454b9251416c75051a37", "cast_id": 10, "profile_path": "/nTpCRzn8raVlqLQfBP9oaAT3pXF.jpg", "order": 5}, {"name": "Matthew Currie Holmes", "character": "Michael", "id": 58901, "credit_id": "52fe454b9251416c75051a3b", "cast_id": 11, "profile_path": "/aW2pvKZC0iMSmriIoeTwkSENu47.jpg", "order": 6}, {"name": "Crystal Lowe", "character": "Elena", "id": 58393, "credit_id": "52fe454b9251416c75051a3f", "cast_id": 12, "profile_path": "/qnD1hQSJNrKPWZaiYFrUGUfZLBV.jpg", "order": 7}, {"name": "Kimberly Caldwell", "character": "Kimberly", "id": 84336, "credit_id": "52fe454b9251416c75051a43", "cast_id": 13, "profile_path": "/3UZ5XIlGOJc31UCp9XjuBAYToD.jpg", "order": 8}, {"name": "Wayne Robson", "character": "Old Man", "id": 5897, "credit_id": "52fe454b9251416c75051a47", "cast_id": 14, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 9}, {"name": "Ken Kirzinger", "character": "Pa", "id": 50094, "credit_id": "52fe454b9251416c75051a4b", "cast_id": 15, "profile_path": "/g90jZeSii6OmNOlNoxGFwCb2spJ.jpg", "order": 10}, {"name": "Ashlea Earl", "character": "Ma", "id": 84337, "credit_id": "52fe454b9251416c75051a4f", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Clint Carleton", "character": "Brother", "id": 84338, "credit_id": "52fe454b9251416c75051a53", "cast_id": 17, "profile_path": "/9LlwEeJiVtQsvBTdB87M9fk7Nw0.jpg", "order": 12}, {"name": "Rorelee Tio", "character": "Sister", "id": 84339, "credit_id": "52fe454b9251416c75051a57", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Joe Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c75051a0d", "profile_path": null, "id": 84335}], "vote_average": 5.4, "runtime": 96}, "4995": {"poster_path": "/bB72Iaitar9p5kOlQVjAM82ZvTw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43101594, "overview": "Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams' rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, \"Dirk Diggler\". Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams' dreams of turning sex into stardom are about to collide with cold, hard reality.", "video": false, "id": 4995, "genres": [{"id": 18, "name": "Drama"}], "title": "Boogie Nights", "tagline": "Everyone has one special thing.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118749", "adult": false, "backdrop_path": "/7js1eREIJa9QboYpWbkNFyaQG0.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "1997-09-11", "popularity": 1.03161296268276, "original_title": "Boogie Nights", "budget": 15000000, "cast": [{"name": "Mark Wahlberg", "character": "Eddie Adams alias Dirk Diggler", "id": 13240, "credit_id": "52fe43edc3a36847f8078ad9", "cast_id": 8, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Burt Reynolds", "character": "Jack Horner", "id": 16475, "credit_id": "52fe43edc3a36847f8078add", "cast_id": 9, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 1}, {"name": "John C. Reilly", "character": "Reed Rothchild", "id": 4764, "credit_id": "52fe43edc3a36847f8078ae1", "cast_id": 10, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Amber Waves - Maggie", "id": 1231, "credit_id": "52fe43edc3a36847f8078ae5", "cast_id": 11, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "Thomas Jane", "character": "Todd Parker", "id": 11155, "credit_id": "52fe43edc3a36847f8078ae9", "cast_id": 12, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 4}, {"name": "Heather Graham", "character": "Brandy alias Rollergirl", "id": 69122, "credit_id": "52fe43edc3a36847f8078aed", "cast_id": 13, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 5}, {"name": "Philip Seymour Hoffman", "character": "Scotty J.", "id": 1233, "credit_id": "52fe43edc3a36847f8078af1", "cast_id": 14, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 6}, {"name": "William H. Macy", "character": "Little Bill", "id": 3905, "credit_id": "52fe43edc3a36847f8078af5", "cast_id": 15, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 7}, {"name": "Don Cheadle", "character": "Buck Swope", "id": 1896, "credit_id": "52fe43edc3a36847f8078af9", "cast_id": 16, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 8}, {"name": "Luis Guzm\u00e1n", "character": "Maurice TT Rodriguez", "id": 40481, "credit_id": "52fe43edc3a36847f8078afd", "cast_id": 18, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 10}, {"name": "Alfred Molina", "character": "Rahad Jackson", "id": 658, "credit_id": "52fe43edc3a36847f8078b17", "cast_id": 25, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 11}, {"name": "Robert Ridgely", "character": "The Colonel James", "id": 25626, "credit_id": "52fe43edc3a36847f8078b1b", "cast_id": 26, "profile_path": "/sxvnvaZRpOhFqXk7yiN8iJE9Elw.jpg", "order": 12}, {"name": "Philip Baker Hall", "character": "Floyd Gondoli", "id": 4492, "credit_id": "52fe43edc3a36847f8078b0f", "cast_id": 22, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 13}, {"name": "Robert Downey Sr.", "character": "Studio owner", "id": 59874, "credit_id": "52fe43edc3a36847f8078b13", "cast_id": 24, "profile_path": "/6ITEZoNCgMweY7Sf6DxV4T5mkwG.jpg", "order": 13}, {"name": "Nicole Ari Parker", "character": "Becky Barnett", "id": 74615, "credit_id": "52fe43edc3a36847f8078b05", "cast_id": 20, "profile_path": "/vvEt8sXPKm9HxxDrHyg9aIxwvEM.jpg", "order": 14}, {"name": "Ricky Jay", "character": "Kurt Longjohn", "id": 10743, "credit_id": "52fe43edc3a36847f8078b01", "cast_id": 19, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 15}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43ecc3a36847f8078ab1", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 7.1, "runtime": 155}, "217993": {"poster_path": "/11X9WnPuSCnKavfTe0AJ935MDl4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4, "overview": "The world is under attack by an alien armada led by the powerful Apokoliptian, Darkseid. A group of superheroes consisting of Superman, Batman, Wonder Woman, The Flash, Green Lantern, Cyborg, and Shazam must set aside their differences and gather together to defend Earth.", "video": false, "id": 217993, "genres": [{"id": 16, "name": "Animation"}], "title": "Justice League: War", "tagline": "A time when heroes became legends.", "vote_count": 75, "homepage": "http://www.dccomics.com/movies/justice-league-war-2014", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3060952", "adult": false, "backdrop_path": "/ipt0EywV773s3eicpUOPA49MAiD.jpg", "production_companies": [{"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "DC Comics", "id": 429}], "release_date": "2014-02-02", "popularity": 0.883114969595185, "original_title": "Justice League: War", "budget": 3500000, "cast": [{"name": "Michelle Monaghan", "character": "Diana Prince / Wonder Woman (voice)", "id": 11705, "credit_id": "52fe4e41c3a368484e216b53", "cast_id": 3, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 0}, {"name": "Alan Tudyk", "character": "Clark Kent / Superman (voice)", "id": 21088, "credit_id": "52fe4e41c3a368484e216b57", "cast_id": 4, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 1}, {"name": "Sean Astin", "character": "Shazam (voice)", "id": 1328, "credit_id": "52fe4e41c3a368484e216b5b", "cast_id": 5, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 2}, {"name": "Shemar Moore", "character": "Victor Stone / Cyborg (voice)", "id": 50266, "credit_id": "52fe4e41c3a368484e216b5f", "cast_id": 6, "profile_path": "/yHhjKqWqfyJbMMIhfLRDfigwm7L.jpg", "order": 3}, {"name": "Christopher Gorham", "character": "Barry Allen / The Flash (voice)", "id": 53761, "credit_id": "52fe4e41c3a368484e216b63", "cast_id": 7, "profile_path": "/1fAcWAtGeTluNjbGVGxaShQD090.jpg", "order": 4}, {"name": "Justin Kirk", "character": "Hal Jordan / Green Lantern (voice)", "id": 20301, "credit_id": "52fe4e41c3a368484e216b67", "cast_id": 8, "profile_path": "/h8uWh71HiA33AGdUhPxOrHne5jo.jpg", "order": 5}, {"name": "Jason O'Mara", "character": "Bruce Wayne / Batman (voice)", "id": 183812, "credit_id": "52fe4e41c3a368484e216b6b", "cast_id": 9, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 6}, {"name": "Steve Blum", "character": "Darkseid (voice)", "id": 81379, "credit_id": "52fe4e41c3a368484e216b6f", "cast_id": 10, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 7}, {"name": "George Newbern", "character": "Steve Trevor (voice)", "id": 59222, "credit_id": "52fe4e41c3a368484e216b73", "cast_id": 11, "profile_path": "/48Ouqe1g8QrZ6qjvap5NvhfKuly.jpg", "order": 8}, {"name": "Zach Callison", "character": "Billy Batson (voice)", "id": 225863, "credit_id": "52fe4e41c3a368484e216b77", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Bruce Thomas", "character": "Desaad (voice)", "id": 79497, "credit_id": "52fe4e41c3a368484e216b7b", "cast_id": 13, "profile_path": "/mh7ckVcito9SJiMYhAH5Ca7EY3B.jpg", "order": 10}, {"name": "Lara Jill Miller", "character": "Hannah Grace (voice)", "id": 1213637, "credit_id": "52fe4e41c3a368484e216b7f", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Rocky Carroll", "character": "Silas Stone (voice)", "id": 27448, "credit_id": "52fe4e41c3a368484e216b83", "cast_id": 15, "profile_path": "/dSeLlsf3JGkGTH4mqQBKQkgiBT4.jpg", "order": 12}, {"name": "Georgie Kidder", "character": "Freddy / Max / Additional (voice)", "id": 1267558, "credit_id": "52fe4e41c3a368484e216b87", "cast_id": 16, "profile_path": null, "order": 13}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4e41c3a368484e216ba5", "profile_path": null, "id": 105643}], "vote_average": 7.4, "runtime": 79}, "242582": {"poster_path": "/fukWJhLISH7f6cnYSdgb0JrSP2Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38000000, "overview": "A driven young man (Gyllenhaal) stumbles upon the underground world of L.A. freelance crime journalism. When Lou Bloom, 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. Aiding him in his effort is Nina, a TV-news veteran.", "video": false, "id": 242582, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Nightcrawler", "tagline": "The City Shines Brightest at Night", "vote_count": 727, "homepage": "http://nightcrawlerfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2872718", "adult": false, "backdrop_path": "/ts4j3zYaPzdUVF3ijBeBdGVDWjX.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Bold Films", "id": 2266}], "release_date": "2014-10-31", "popularity": 7.81204539462633, "original_title": "Nightcrawler", "budget": 8500000, "cast": [{"name": "Jake Gyllenhaal", "character": "Lou", "id": 131, "credit_id": "52fe4ed0c3a36847f82a9b29", "cast_id": 3, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Joe Loder", "id": 2053, "credit_id": "52fe4ed0c3a36847f82a9b2d", "cast_id": 4, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Rene Russo", "character": "Nina Romina", "id": 14343, "credit_id": "52fe4ed0c3a36847f82a9b31", "cast_id": 5, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 2}, {"name": "Kevin Rahm", "character": "Frank Kruse", "id": 97604, "credit_id": "537a2b3cc3a3685e29000034", "cast_id": 6, "profile_path": "/zhvROaAcr8f4rBNqRp5M9wYOEFH.jpg", "order": 3}, {"name": "Riz Ahmed", "character": "Rick", "id": 53240, "credit_id": "537a2b46c3a3685e29000038", "cast_id": 7, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 4}, {"name": "Kathleen York", "character": "Jackie", "id": 18293, "credit_id": "537a2b4cc3a3685e3200003f", "cast_id": 8, "profile_path": "/9tpL5j3Ba6yewjIwohTQxZtt1gM.jpg", "order": 5}, {"name": "Ann Cusack", "character": "Linda", "id": 59260, "credit_id": "537a2b55c3a3685e4100004a", "cast_id": 9, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 6}, {"name": "Carolyn Gilroy", "character": "Jenny", "id": 1152043, "credit_id": "54b0d441c3a36809390015ab", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Michael Hyatt", "character": "Detective Frontieri", "id": 61084, "credit_id": "54b0d479925141746c001418", "cast_id": 28, "profile_path": "/wBcbbgLX2NFLb9TyyXto0KBom2i.jpg", "order": 8}, {"name": "Price Carson", "character": "Detective Lieberman", "id": 36060, "credit_id": "54b0d4c49251412ae70006b4", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Michael Papajohn", "character": "Security Guard", "id": 20582, "credit_id": "54f9bce29251416fab001600", "cast_id": 72, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 10}, {"name": "Kent Shocknek", "character": "Kent Shocknek", "id": 79086, "credit_id": "54f9bd27c3a36878d2001b24", "cast_id": 73, "profile_path": "/zmX6fNZ7zH18FokBGv5r1sfPmGw.jpg", "order": 11}], "directors": [{"name": "Dan Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe4ed0c3a36847f82a9b25", "profile_path": null, "id": 57113}], "vote_average": 7.7, "runtime": 117}, "13207": {"poster_path": "/y1S4bKk8cQphRBJliUikL3Jpv27.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91000000, "overview": "In this 12th installment of friday 13th, A group of young adults discover a boarded up Camp Crystal Lake, where they soon encounter Jason Voorhees (Mears) and his deadly intentions.", "video": false, "id": 13207, "genres": [{"id": 27, "name": "Horror"}], "title": "Friday the 13th", "tagline": "You know his name. You know the story. On Friday the 13th, witness his resurrection...", "vote_count": 113, "homepage": "http://www.fridaythe13thmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758746", "adult": false, "backdrop_path": "/ygcfHqQSGreHzr7Yd42uzWlMvjU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2009-02-11", "popularity": 0.389976019906168, "original_title": "Friday the 13th", "budget": 19000000, "cast": [{"name": "Derek Mears", "character": "Jason Vorhees", "id": 51300, "credit_id": "52fe454f9251416c750521b5", "cast_id": 5, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 0}, {"name": "Jared Padalecki", "character": "Clay", "id": 49623, "credit_id": "52fe454e9251416c750521a5", "cast_id": 1, "profile_path": "/uQLe1lfEBul3locVlV8nXD6n8TI.jpg", "order": 1}, {"name": "Danielle Panabaker", "character": "Jenna", "id": 31838, "credit_id": "52fe454e9251416c750521a9", "cast_id": 2, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 2}, {"name": "Amanda Righetti", "character": "Whitney", "id": 74289, "credit_id": "52fe454e9251416c750521ad", "cast_id": 3, "profile_path": "/aCRof0Sfqrbz2vgoWqVZuPWfvD8.jpg", "order": 3}, {"name": "Travis Van Winkle", "character": "Trent", "id": 74290, "credit_id": "52fe454e9251416c750521b1", "cast_id": 4, "profile_path": "/6Mu3Z7vbHyHixjHiYyUV88i8KyL.jpg", "order": 4}, {"name": "Aaron Yoo", "character": "Chewie", "id": 54247, "credit_id": "52fe454f9251416c750521d1", "cast_id": 10, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 5}, {"name": "Jonathan Sadowski", "character": "Wade", "id": 21047, "credit_id": "52fe454f9251416c750521d5", "cast_id": 11, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 6}, {"name": "Julianna Guill", "character": "Bree", "id": 78430, "credit_id": "52fe454f9251416c750521d9", "cast_id": 12, "profile_path": "/myHcPhxZcDk9yCL2F2yafQudMih.jpg", "order": 7}, {"name": "Ben Feldman", "character": "Richie", "id": 78431, "credit_id": "52fe454f9251416c750521dd", "cast_id": 13, "profile_path": "/cve3khwonn7sWBwDThA44XwH2Fo.jpg", "order": 8}, {"name": "Arlen Escarpeta", "character": "Lawrence", "id": 78432, "credit_id": "52fe454f9251416c750521e1", "cast_id": 14, "profile_path": "/j6UsveHGfxcnohafoCDAVqQBLpC.jpg", "order": 9}, {"name": "Ryan Hansen", "character": "Nolan", "id": 78433, "credit_id": "52fe454f9251416c750521e5", "cast_id": 15, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 10}, {"name": "Willa Ford", "character": "Chelsea", "id": 77313, "credit_id": "52fe454f9251416c750521e9", "cast_id": 16, "profile_path": "/dYzXQ3Vro7bOnqyX0c7sprN3TfS.jpg", "order": 11}, {"name": "America Olivo", "character": "Amanda", "id": 78434, "credit_id": "52fe454f9251416c750521ed", "cast_id": 17, "profile_path": "/jcKVwKxJEV2xRpkokNe0Om4GKHA.jpg", "order": 12}, {"name": "Stephanie Rhodes", "character": "Camp Counselor", "id": 1004858, "credit_id": "52fe454f9251416c750521f7", "cast_id": 19, "profile_path": "/Giodp23VP2CGV82GlzZiWRc4oV.jpg", "order": 13}, {"name": "Nana Visitor", "character": "Pamela Voorhees", "id": 74070, "credit_id": "52fe454f9251416c750521fb", "cast_id": 20, "profile_path": "/9bCpqShR7JiOYCjQlPbPT6aJR6W.jpg", "order": 14}], "directors": [{"name": "Marcus Nispel", "department": "Directing", "job": "Director", "credit_id": "52fe454f9251416c750521bb", "profile_path": "/uil3LAeKq6vgRucr6CR2T4Iz0oC.jpg", "id": 29922}], "vote_average": 5.8, "runtime": 97}, "37786": {"poster_path": "/bFaVEH21JfF70czs5qoDyiM8Pna.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 288347692, "overview": "Carrie (Sarah Jessica Parker), Charlotte (Kristin Davis), and Miranda (Cynthia Nixon) are all married now, but they're still up for a little fun in the sun. When Samantha (Kim Cattrall) gets the chance to visit one of the most extravagant vacation destinations on the planet and offers to bring them all along, they surmise that a women-only retreat may be the perfect excuse to eschew their responsibilities and remember what life was like before they decided to settle down.", "video": false, "id": 37786, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sex and the City 2", "tagline": "Carrie on.", "vote_count": 107, "homepage": "http://www.sexandthecitymovie.com/", "belongs_to_collection": {"backdrop_path": "/uM6lHfySQ5sQEuUyMxKdtxsp3CQ.jpg", "poster_path": "/ip0ObsKtNUucWEcWJfDmURjmF8h.jpg", "id": 50457, "name": "Sex and the City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1261945", "adult": false, "backdrop_path": "/m6QThhvZztXeSsZoeR0vPZb6TAt.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "New Line Cinema", "id": 12}, {"name": "Home Box Office (HBO)", "id": 3268}, {"name": "HBO Films", "id": 7429}], "release_date": "2010-05-28", "popularity": 0.566376468476519, "original_title": "Sex and the City 2", "budget": 100000000, "cast": [{"name": "Sarah Jessica Parker", "character": "Carrie Bradshaw", "id": 520, "credit_id": "52fe466e9251416c910543c9", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 0}, {"name": "Kristin Davis", "character": "Charlotte York", "id": 38025, "credit_id": "52fe466e9251416c910543cd", "cast_id": 3, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 1}, {"name": "Cynthia Nixon", "character": "Miranda Hobbes", "id": 38024, "credit_id": "52fe466e9251416c910543d1", "cast_id": 4, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 2}, {"name": "Kim Cattrall", "character": "Samantha Jones", "id": 2109, "credit_id": "52fe466e9251416c910543d5", "cast_id": 5, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 3}, {"name": "David Eigenberg", "character": "Steve Brady", "id": 27552, "credit_id": "52fe466e9251416c910543d9", "cast_id": 6, "profile_path": "/6In0iKsH6FRzZ5sCsUjAx4pwHJl.jpg", "order": 4}, {"name": "Evan Handler", "character": "Harry Goldenblatt", "id": 3212, "credit_id": "52fe466e9251416c910543dd", "cast_id": 7, "profile_path": "/bsSNblkDZk0hKIjyPMMt8Hsmbsg.jpg", "order": 5}, {"name": "Alexandra Fong", "character": "Lily York Goldenblatt", "id": 58355, "credit_id": "52fe466e9251416c910543e1", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Parker Fong", "character": "Lily York Goldenblatt", "id": 118514, "credit_id": "52fe466e9251416c910543e5", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Mario Cantone", "character": "Anthony Marantino", "id": 57551, "credit_id": "52fe466e9251416c910543e9", "cast_id": 10, "profile_path": "/jvxuIpzAYSWSbkaZd201KsSztp5.jpg", "order": 8}, {"name": "Willie Garson", "character": "Stanford Blatch", "id": 1542, "credit_id": "52fe466e9251416c910543ed", "cast_id": 11, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 9}, {"name": "Noah Mills", "character": "Nicky", "id": 118515, "credit_id": "52fe466e9251416c910543f1", "cast_id": 12, "profile_path": "/2MSsaHYS9HDfhCMQUhSCgfQTmw9.jpg", "order": 10}, {"name": "Liza Minnelli", "character": "Herself", "id": 66776, "credit_id": "52fe466e9251416c910543f5", "cast_id": 13, "profile_path": "/1G5DNqKJ4ufFryQTGmmTqCqYsY4.jpg", "order": 11}, {"name": "Billy Stritch", "character": "Band Leader", "id": 118516, "credit_id": "52fe466e9251416c910543f9", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Alice Eve", "character": "Erin", "id": 59860, "credit_id": "52fe466e9251416c910543fd", "cast_id": 15, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 13}, {"name": "Jason Lewis", "character": "Jerry 'Smith' Jerrod", "id": 32224, "credit_id": "52fe466e9251416c91054401", "cast_id": 16, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 14}, {"name": "Max Ryan", "character": "Rikard Spirit", "id": 21942, "credit_id": "52fe466e9251416c91054405", "cast_id": 17, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 15}, {"name": "Lynn Cohen", "character": "Magda", "id": 8792, "credit_id": "52fe466e9251416c91054409", "cast_id": 18, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 16}, {"name": "Amira Mor", "character": "", "id": 142788, "credit_id": "52fe466e9251416c9105440d", "cast_id": 19, "profile_path": "/mEG2E7Dw1cpHowjMx76ZtZpd7cR.jpg", "order": 17}, {"name": "Dhaffer L'Abidine", "character": "Mahmud (non cr\u00e9dit\u00e9)", "id": 129014, "credit_id": "52fe466e9251416c91054411", "cast_id": 20, "profile_path": "/bVksgnm8Wj3RsqV4YgTP9LwME6A.jpg", "order": 18}, {"name": "John Corbett", "character": "Aidan Shaw", "id": 38405, "credit_id": "52fe466e9251416c91054415", "cast_id": 21, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 19}, {"name": "Raya Meddine", "character": "Annesha", "id": 965678, "credit_id": "52fe466e9251416c91054419", "cast_id": 22, "profile_path": "/zCmR8AzZvYmWxQyQ3M7jwkm5VVQ.jpg", "order": 20}, {"name": "Jennifer Ferrin", "character": "Patience", "id": 1221134, "credit_id": "52fe466e9251416c9105441d", "cast_id": 23, "profile_path": "/ttCD3hGfI0Qu9fS0yH3PP0eabhZ.jpg", "order": 21}, {"name": "Tet Wada", "character": "VIP Party Patron", "id": 1417527, "credit_id": "54c28358c3a368792c003a2c", "cast_id": 24, "profile_path": "/gqbYiD2Lsw0srPRgueu2wgemOGT.jpg", "order": 22}], "directors": [{"name": "Michael Patrick King", "department": "Directing", "job": "Director", "credit_id": "52fe466e9251416c910543c5", "profile_path": "/vhsHQQSRHPxnwzUP58kzBy9Dx1T.jpg", "id": 38023}], "vote_average": 5.5, "runtime": 146}, "21407": {"poster_path": "/zJrfUPrt9HhsZhDKjjarivGh7pT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9444018, "overview": "Desperate to repay his debt to his ex-wife, an ex-con plots a heist at his new employer's country home, unaware that a second criminal has also targeted the property, and rigged it with a series of deadly traps.", "video": false, "id": 21407, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Collector", "tagline": "He always takes one", "vote_count": 80, "homepage": "http://thecollector-movie.com/", "belongs_to_collection": {"backdrop_path": "/4x4mtl1xgxIH5yxGr05L1WZeTjG.jpg", "poster_path": "/AhwErLgytU4ICqvvcIYbAM1xeeu.jpg", "id": 165369, "name": "The Collector Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0844479", "adult": false, "backdrop_path": "/qGaTWV4nJRREsPqmfKaFpvPiSd0.jpg", "production_companies": [{"name": "Imaginarium Entertainment Group", "id": 43760}, {"name": "Fortress Features", "id": 5176}, {"name": "LD Entertainment", "id": 10285}], "release_date": "2009-07-09", "popularity": 0.716307841232812, "original_title": "The Collector", "budget": 3400000, "cast": [{"name": "Josh Stewart", "character": "Arkin", "id": 40039, "credit_id": "52fe4418c3a368484e00f16d", "cast_id": 2, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 0}, {"name": "Michael Reilly Burke", "character": "Michael Chase", "id": 108774, "credit_id": "52fe4418c3a368484e00f18d", "cast_id": 12, "profile_path": "/aAupliSxOJAwrzdfs4YGk2Jetb5.jpg", "order": 1}, {"name": "Andrea Roth", "character": "Victoria Chase", "id": 44151, "credit_id": "52fe4418c3a368484e00f1d3", "cast_id": 30, "profile_path": "/7iTt4N1bT7UmNdFyADLKMi1TwDk.jpg", "order": 2}, {"name": "Juan Fern\u00e1ndez", "character": "The Collector", "id": 1607, "credit_id": "52fe4418c3a368484e00f175", "cast_id": 5, "profile_path": "/kA5I0SunYlTP9YJYwOrs4aCarCH.jpg", "order": 3}, {"name": "Madeline Zima", "character": "Jill Chase", "id": 84613, "credit_id": "52fe4418c3a368484e00f169", "cast_id": 1, "profile_path": "/fxBm7NmiTYOzhASJh7pzABbtfFZ.jpg", "order": 4}, {"name": "Karley Scott Collins", "character": "Hannah Chase", "id": 109784, "credit_id": "52fe4418c3a368484e00f181", "cast_id": 9, "profile_path": "/m1ObdIBFQ1cRCU4x1x5qZV6blso.jpg", "order": 5}, {"name": "Robert Wisdom", "character": "Roy", "id": 21505, "credit_id": "52fe4418c3a368484e00f179", "cast_id": 6, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 6}, {"name": "Daniella Alonso", "character": "Lisa", "id": 59296, "credit_id": "52fe4418c3a368484e00f171", "cast_id": 4, "profile_path": "/9w2ziDtZq60jVC5dbAiZmkQEfYe.jpg", "order": 7}, {"name": "Haley Pullos", "character": "Cindy (as Haley Alexis Pullos)", "id": 109783, "credit_id": "52fe4418c3a368484e00f17d", "cast_id": 8, "profile_path": "/phwwlIC6gKgMl98GFyoM798Efqy.jpg", "order": 8}, {"name": "Diane Ayala Goldner", "character": "Gena Wharton", "id": 62819, "credit_id": "52fe4418c3a368484e00f1cb", "cast_id": 28, "profile_path": "/6leI6hBXShPLlWCVMLdl1S9Asfa.jpg", "order": 9}, {"name": "Alex Feldman", "character": "Chad", "id": 109786, "credit_id": "52fe4418c3a368484e00f191", "cast_id": 13, "profile_path": "/uWle0GUJgJ5tMUGrpICcFqKy2UD.jpg", "order": 10}, {"name": "Krystal Mayo", "character": "Bar Dancer", "id": 109785, "credit_id": "52fe4418c3a368484e00f185", "cast_id": 10, "profile_path": "/ozbQdVym78joGAt3uSul3X4wKCK.jpg", "order": 11}, {"name": "Gregory Alan Williams", "character": "Sheriff", "id": 37937, "credit_id": "52fe4418c3a368484e00f189", "cast_id": 11, "profile_path": "/2Sba6ptJ2aGgZOv53k2mD1FLj0U.jpg", "order": 12}, {"name": "Michael Showers", "character": "Deputy sheriff", "id": 109787, "credit_id": "52fe4418c3a368484e00f195", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Bill Stinchcomb", "character": "Bar Patron", "id": 86536, "credit_id": "52fe4418c3a368484e00f199", "cast_id": 15, "profile_path": "/qBMOG810vg277nsnFneoWAsXGEZ.jpg", "order": 14}, {"name": "Brett Forbes", "character": "Office Hoss Wiggins", "id": 108765, "credit_id": "52fe4418c3a368484e00f19d", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Eric Kelly McFarland", "character": "Firefighter", "id": 109789, "credit_id": "52fe4418c3a368484e00f1a1", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Jabari Thomas", "character": "Medic", "id": 109790, "credit_id": "52fe4418c3a368484e00f1a5", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Hiro Koda", "character": "Medic #2", "id": 92493, "credit_id": "52fe4418c3a368484e00f1cf", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Colvin Roberson", "character": "Roy's Driver / Bodyguard", "id": 109791, "credit_id": "52fe4418c3a368484e00f1a9", "cast_id": 20, "profile_path": null, "order": 19}, {"name": "John Snell", "character": "Yard Worker", "id": 109792, "credit_id": "52fe4418c3a368484e00f1ad", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Jon Dainty", "character": "Strip Club Patron (uncredited)", "id": 109793, "credit_id": "52fe4418c3a368484e00f1b1", "cast_id": 22, "profile_path": "/mrWrar7BZx5qYI3gd6NQUrebKYE.jpg", "order": 21}, {"name": "William Morse", "character": "Stabbed Man (uncredited)", "id": 109794, "credit_id": "52fe4418c3a368484e00f1b5", "cast_id": 23, "profile_path": "/hrwminfZeqELFfaD5csD8zNDu1n.jpg", "order": 22}, {"name": "David Pitt", "character": "Barman (uncredited)", "id": 109795, "credit_id": "52fe4418c3a368484e00f1b9", "cast_id": 24, "profile_path": "/d38D9FHWAU04viES03xSv55nX5M.jpg", "order": 23}, {"name": "Philip Poth", "character": "Foreman (uncredited)", "id": 109796, "credit_id": "52fe4418c3a368484e00f1bd", "cast_id": 25, "profile_path": null, "order": 24}, {"name": "Patrick Rizzotti", "character": "Bowling Ball Cleaner (uncredited)", "id": 108768, "credit_id": "52fe4418c3a368484e00f1c1", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Tom Gulager", "character": "Officer Gulager", "id": 33155, "credit_id": "550a95a9c3a3684877000f83", "cast_id": 92, "profile_path": null, "order": 26}], "directors": [{"name": "Marcus Dunstan", "department": "Directing", "job": "Director", "credit_id": "52fe4418c3a368484e00f1c7", "profile_path": null, "id": 51023}], "vote_average": 6.4, "runtime": 88}, "103328": {"poster_path": "/w0Wi7raS9z7UoIbEF6aGxHIYyE6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "We follow 24 hours in the life of a being moving from life to life like a cold and solitary assassin moving from hit to hit. In each of these interwoven lives, the being possesses an entirely distinct identity: sometimes a man, sometimes a woman, sometimes youthful, sometimes old. By turns murderer, beggar, company chairman, monstrous creature, worker, family man.", "video": false, "id": 103328, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Holy Motors", "tagline": "From dawn to dusk, a few hours in the shadowy life of a mystic man named Monsieur Oscar.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2076220", "adult": false, "backdrop_path": "/3otNWecsLLV1Yeazs6giXpvQbTL.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Pandora Filmproduktion", "id": 254}], "release_date": "2012-07-04", "popularity": 0.1887602217071, "original_title": "Holy Motors", "budget": 0, "cast": [{"name": "Eva Mendes", "character": "Kay M", "id": 8170, "credit_id": "52fe4a1cc3a36847f81ba1cf", "cast_id": 3, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 0}, {"name": "Kylie Minogue", "character": "Eva Grace", "id": 12207, "credit_id": "52fe4a1cc3a36847f81ba1d3", "cast_id": 4, "profile_path": "/8vOTxDParoNySQrUI2OM9zQkVPu.jpg", "order": 1}, {"name": "Michel Piccoli", "character": "L'homme \u00e0 la tache de vin", "id": 3784, "credit_id": "52fe4a1cc3a36847f81ba1d7", "cast_id": 5, "profile_path": "/gz91b4tVn6yYsKemek2YkUdjlSH.jpg", "order": 2}, {"name": "\u00c9dith Scob", "character": "C\u00e9line", "id": 27980, "credit_id": "52fe4a1cc3a36847f81ba1db", "cast_id": 6, "profile_path": "/DbTl7eoRq2rFmRbXuIi9i2lJjz.jpg", "order": 3}, {"name": "Denis Lavant", "character": "M. Oscar / Le banquier / La mendiante / L'OS de Motion-Capture / M. Merde / Le p\u00e8re / L'accord\u00e9oniste / Le tueur / Le tu\u00e9 / Le mourant / L'homme au foyer", "id": 27978, "credit_id": "52fe4a1cc3a36847f81ba1df", "cast_id": 7, "profile_path": "/fcMuYJwZvWjk2wf9vButEWiNvNM.jpg", "order": 4}, {"name": "Jean-Fran\u00e7ois Balmer", "character": "", "id": 35527, "credit_id": "52fe4a1cc3a36847f81ba1e3", "cast_id": 8, "profile_path": "/b1nC316aY3wpyqN3casQdtVkUbY.jpg", "order": 5}, {"name": "Fran\u00e7ois Rimbau", "character": "", "id": 1033666, "credit_id": "52fe4a1cc3a36847f81ba1e7", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Karl Hoffmeister", "character": "", "id": 1033667, "credit_id": "52fe4a1cc3a36847f81ba1eb", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Big John", "character": "", "id": 1033668, "credit_id": "52fe4a1cc3a36847f81ba1ef", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Elise Lhomeau", "character": "L\u00e9a", "id": 1062732, "credit_id": "52fe4a1cc3a36847f81ba205", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Jeanne Disson", "character": "Ang\u00e8le", "id": 240734, "credit_id": "52fe4a1cc3a36847f81ba209", "cast_id": 16, "profile_path": "/okR3kYf6ChpqcmtPJJW3J8tqpuQ.jpg", "order": 10}, {"name": "Leos Carax", "character": "Le dormeur / Voix Limousine", "id": 27977, "credit_id": "52fe4a1cc3a36847f81ba20d", "cast_id": 17, "profile_path": "/x0kRqnxOHBx6U3t3a2NxGLLIRwa.jpg", "order": 11}, {"name": "Nastya Golubeva Carax", "character": "La petite fille", "id": 1102328, "credit_id": "52fe4a1cc3a36847f81ba211", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Reda Oumouzoune", "character": "L'acrobate Mo-Cap", "id": 1102329, "credit_id": "52fe4a1cc3a36847f81ba215", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Zlata", "character": "La cyber-femme", "id": 1102330, "credit_id": "52fe4a1cc3a36847f81ba219", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Geoffrey Carey", "character": "Le photographe / Voix Limousine", "id": 134514, "credit_id": "52fe4a1cc3a36847f81ba21d", "cast_id": 21, "profile_path": "/42OhDzzOtbylnrVPkuyg5aHwkhF.jpg", "order": 15}, {"name": "Annabelle Dexter-Jones", "character": "L'assistante photographe", "id": 1102331, "credit_id": "52fe4a1cc3a36847f81ba221", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Elise Caron", "character": "", "id": 1062734, "credit_id": "52fe4a1cc3a36847f81ba225", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Corinne Yam", "character": "", "id": 1001084, "credit_id": "52fe4a1cc3a36847f81ba229", "cast_id": 24, "profile_path": null, "order": 18}], "directors": [{"name": "Leos Carax", "department": "Directing", "job": "Director", "credit_id": "52fe4a1cc3a36847f81ba1cb", "profile_path": "/x0kRqnxOHBx6U3t3a2NxGLLIRwa.jpg", "id": 27977}], "vote_average": 6.7, "runtime": 115}, "103332": {"poster_path": "/1mgwXxdkV7sQRRCb4Qaq3HZl8Xe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Calvin (Paul Dano) is a young novelist who achieved phenomenal success early in his career but is now struggling with his writing \u2013 as well as his romantic life. Finally, he makes a breakthrough and creates a character named Ruby who inspires him. When Calvin finds Ruby (Zoe Kazan), in the flesh, sitting on his couch about a week later, he is completely flabbergasted that his words have turned into a living, breathing person.", "video": false, "id": 103332, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Ruby Sparks", "tagline": "She's Out Of His Mind", "vote_count": 143, "homepage": "http://www.foxsearchlight.com/rubysparks/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1839492", "adult": false, "backdrop_path": "/eJZCmIgZdFlq6XqL3qtFcJsG0P6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2012-07-25", "popularity": 1.03199371912301, "original_title": "Ruby Sparks", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Mort", "id": 3131, "credit_id": "52fe4a1cc3a36847f81ba2ff", "cast_id": 6, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Alia Shawkat", "character": "Mabel", "id": 61178, "credit_id": "52fe4a1cc3a36847f81ba303", "cast_id": 7, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 1}, {"name": "Paul Dano", "character": "Calvin", "id": 17142, "credit_id": "52fe4a1cc3a36847f81ba307", "cast_id": 8, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 2}, {"name": "Deborah Ann Woll", "character": "Lila", "id": 212154, "credit_id": "52fe4a1cc3a36847f81ba30b", "cast_id": 9, "profile_path": "/inTiyJqbqAlj10Hz545WyZkHRjy.jpg", "order": 3}, {"name": "Annette Bening", "character": "Gertrude", "id": 516, "credit_id": "52fe4a1cc3a36847f81ba30f", "cast_id": 10, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 4}, {"name": "Steve Coogan", "character": "Langdon Tharp", "id": 4581, "credit_id": "52fe4a1cc3a36847f81ba313", "cast_id": 11, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 5}, {"name": "Elliott Gould", "character": "Dr. Rosenthal", "id": 827, "credit_id": "52fe4a1cc3a36847f81ba317", "cast_id": 12, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 6}, {"name": "Chris Messina", "character": "Harry", "id": 61659, "credit_id": "52fe4a1cc3a36847f81ba31b", "cast_id": 13, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 7}, {"name": "Zoe Kazan", "character": "Ruby", "id": 35028, "credit_id": "52fe4a1cc3a36847f81ba31f", "cast_id": 14, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 8}, {"name": "Aasif Mandvi", "character": "Cyrus Modi", "id": 20644, "credit_id": "52fe4a1cc3a36847f81ba323", "cast_id": 15, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 9}, {"name": "Wallace Langham", "character": "Warren", "id": 17421, "credit_id": "52fe4a1cc3a36847f81ba327", "cast_id": 16, "profile_path": "/UODZ2FuyJixy8CCqv190KIlncR.jpg", "order": 10}, {"name": "Toni Trucks", "character": "Susie", "id": 105831, "credit_id": "52fe4a1cc3a36847f81ba32b", "cast_id": 17, "profile_path": "/pmXJ5l5udyotzZzeRbhLq62f4wa.jpg", "order": 11}, {"name": "Eleanor Seigler", "character": "Mandi", "id": 1033675, "credit_id": "52fe4a1cc3a36847f81ba32f", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "John F. Beach", "character": "Adam", "id": 98535, "credit_id": "52fe4a1cc3a36847f81ba333", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Jonathan Dayton", "department": "Directing", "job": "Director", "credit_id": "52fe4a1cc3a36847f81ba2e3", "profile_path": null, "id": 16959}, {"name": "Valerie Faris", "department": "Directing", "job": "Director", "credit_id": "52fe4a1cc3a36847f81ba2e9", "profile_path": null, "id": 16960}], "vote_average": 7.0, "runtime": 104}, "37797": {"poster_path": "/uPLuwtMQm3wDTKm7cZQHsszYGRo.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Shizuku lives a simple life, dominated by her love for stories and writing. One day she notices that all the library books she has have been previously checked out by the same person: 'Seiji Amasawa'. Curious as to who he is, Shizuku meets a boy her age whom she finds infuriating, but discovers to her shock that he is her 'Prince of Books'. As she grows closer to him, she realises that he merely read all those books to bring himself closer to her. The boy Seiji aspires to be a violin maker in Italy, and it is his dreams that make Shizuku realise that she has no clear path for her life. Knowing that her strength lies in writing, she tests her talents by writing a story about Baron, a cat statuette belonging to Seiji's grandfather", "video": false, "id": 37797, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Whisper of the Heart", "tagline": "", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0113824", "adult": false, "backdrop_path": "/s5X7ry3pDwAhUkvUmGUTXTXXoD2.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "Nippon Television Network (NTV)", "id": 20192}, {"name": "Hakuhodo", "id": 32441}, {"name": "Mimi wo Sumaseba Production Committee", "id": 12522}], "release_date": "1995-07-15", "popularity": 0.929658742463791, "original_title": "Mimi wo sumaseba", "budget": 0, "cast": [{"name": "Y\u014dko Honna", "character": "Shizuku Tsukishima", "id": 119263, "credit_id": "52fe466f9251416c910545d9", "cast_id": 2, "profile_path": null, "order": 0}, {"name": "Kazuo Takahashi", "character": "Seiji Amasawa", "id": 230389, "credit_id": "52fe466f9251416c910545f5", "cast_id": 10, "profile_path": null, "order": 1}, {"name": "Takashi Tachibana", "character": "Seiya Tsukishima", "id": 555255, "credit_id": "52fe466f9251416c910545f9", "cast_id": 11, "profile_path": null, "order": 2}, {"name": "Shigeru Muroi", "character": "Asako Tsukishima", "id": 135025, "credit_id": "52fe466f9251416c910545fd", "cast_id": 12, "profile_path": "/84TofjFLqStql7KquY5DK1TSZcS.jpg", "order": 3}, {"name": "Shigeru Tsuyuguchi", "character": "The Baron", "id": 142491, "credit_id": "52fe466f9251416c91054601", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Keiju Kobayashi", "character": "Shiro Nishi", "id": 70324, "credit_id": "52fe466f9251416c91054605", "cast_id": 14, "profile_path": "/41yr4DgrkiIB0ywzcVcKGYvMJyt.jpg", "order": 5}, {"name": "Yorie Yamashita", "character": "Shiho Tsukishima", "id": 555256, "credit_id": "52fe466f9251416c91054609", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Maiko Kayama", "character": "Yuko Harada", "id": 119264, "credit_id": "52fe466f9251416c9105460d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Yoshimi Nakajima", "character": "Sugimura", "id": 555257, "credit_id": "52fe466f9251416c91054611", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Minami Takayama", "character": "Kosaka-sensei", "id": 68470, "credit_id": "52fe466f9251416c91054615", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Mayumi Iizuka", "character": "Kinuyo", "id": 65426, "credit_id": "52fe466f9251416c91054619", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Mai Chiba", "character": "", "id": 555258, "credit_id": "52fe466f9251416c9105461d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Satoru Takahashi", "character": "", "id": 555259, "credit_id": "52fe466f9251416c91054621", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Akiko Sakaguchi", "character": "", "id": 555260, "credit_id": "52fe466f9251416c91054625", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Hiromi Yasuda", "character": "", "id": 555261, "credit_id": "52fe466f9251416c91054629", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Tatsuya Okada", "character": "", "id": 555262, "credit_id": "52fe466f9251416c9105462d", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Yoshihiro Imai", "character": "", "id": 555263, "credit_id": "52fe466f9251416c91054631", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Naohisa Inoue", "character": "Tall friend of Mr. Nishi", "id": 87623, "credit_id": "52fe466f9251416c91054635", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Suguru Egawa", "character": "Baseball Analyst", "id": 555264, "credit_id": "52fe466f9251416c91054639", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Shiro Kishibe", "character": "", "id": 123861, "credit_id": "52fe466f9251416c9105463d", "cast_id": 28, "profile_path": "/a8tu81MLn4kbfYYjWHcsPvYDs5H.jpg", "order": 19}, {"name": "Toshio Suzuki", "character": "", "id": 1417, "credit_id": "52fe466f9251416c91054641", "cast_id": 29, "profile_path": "/k5YYt3VYjCEGRP4eCPx9bCLNtE4.jpg", "order": 20}, {"name": "Mitsuaki Ogawa", "character": "Baseball Announcer", "id": 555265, "credit_id": "52fe466f9251416c91054645", "cast_id": 30, "profile_path": null, "order": 21}], "directors": [{"name": "Yoshifumi Kond\u00f4", "department": "Directing", "job": "Director", "credit_id": "52fe466f9251416c910545df", "profile_path": null, "id": 555254}], "vote_average": 7.5, "runtime": 111}, "37799": {"poster_path": "/hKTwHT6WtYhtG8U2PJQSQH2y4oD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213891471, "overview": "On a fall night in 2003, Harvard undergrad and computer programming genius Mark Zuckerberg sits down at his computer and heatedly begins working on a new idea. In a fury of blogging and programming, what begins in his dorm room as a small site among friends soon becomes a global social network and a revolution in communication. A mere six years and 500 million friends later, Mark Zuckerberg is the youngest billionaire in history... but for this entrepreneur, success leads to both personal and legal complications.", "video": false, "id": 37799, "genres": [{"id": 18, "name": "Drama"}], "title": "The Social Network", "tagline": "You don't get to 500 million friends without making a few enemies.", "vote_count": 1110, "homepage": "http://www.thesocialnetwork-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1285016", "adult": false, "backdrop_path": "/8AazWuNBQV7QFjb9XNzJLox0Zey.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2010-09-30", "popularity": 1.71099348661314, "original_title": "The Social Network", "budget": 40000000, "cast": [{"name": "Jesse Eisenberg", "character": "Mark Zuckerberg", "id": 44735, "credit_id": "52fe466f9251416c910546cb", "cast_id": 7, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Andrew Garfield", "character": "Eduardo Saverin", "id": 37625, "credit_id": "52fe466f9251416c910546d7", "cast_id": 10, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Sean Parker", "id": 12111, "credit_id": "52fe466f9251416c910546d3", "cast_id": 9, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Rooney Mara", "character": "Erica", "id": 108916, "credit_id": "52fe466f9251416c910546c3", "cast_id": 4, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 3}, {"name": "Bryan Barter", "character": "Billy Olsen", "id": 135851, "credit_id": "52fe466f9251416c910546ef", "cast_id": 16, "profile_path": "/7OOfftiFK4eszUA5WFSCsoo2nvT.jpg", "order": 4}, {"name": "Dustin Fitzsimons", "character": "Phoenix Club President", "id": 115406, "credit_id": "52fe466f9251416c910546f3", "cast_id": 17, "profile_path": "/j8SdVfAPgotZDbCtPoBCCJ26F1V.jpg", "order": 5}, {"name": "Armie Hammer", "character": "Cameron Winklevoss / Tyler Winklevoss", "id": 53807, "credit_id": "52fe466f9251416c910546f7", "cast_id": 18, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 6}, {"name": "Joseph Mazzello", "character": "Dustin Moskovitz", "id": 4787, "credit_id": "52fe466f9251416c910546c7", "cast_id": 5, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 7}, {"name": "Patrick Mapel", "character": "Chris Hughes", "id": 135852, "credit_id": "52fe466f9251416c910546fb", "cast_id": 19, "profile_path": "/8OGFpQD6gH6krExv5VoNi9VOyWA.jpg", "order": 8}, {"name": "Max Minghella", "character": "Divya Narendra", "id": 2978, "credit_id": "52fe466f9251416c910546df", "cast_id": 12, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 9}, {"name": "Toby Meuli", "character": "Phoenix Member Playing Facemash", "id": 135853, "credit_id": "52fe466f9251416c910546ff", "cast_id": 20, "profile_path": "/4GxaRS1kK15K6e86NiKvUNH6zf8.jpg", "order": 10}, {"name": "Malese Jow", "character": "Alice", "id": 118544, "credit_id": "52fe466f9251416c910546cf", "cast_id": 8, "profile_path": "/cT29b1741g4WCHDnJ21akeq0sWO.jpg", "order": 11}, {"name": "Brenda Song", "character": "Christy", "id": 88123, "credit_id": "52fe466f9251416c910546db", "cast_id": 11, "profile_path": "/4JBCrQK3Er07T8UNuChUlE63TdA.jpg", "order": 12}, {"name": "Dakota Johnson", "character": "Amelia Ritter", "id": 118545, "credit_id": "52fe466f9251416c910546e3", "cast_id": 13, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 13}, {"name": "Trevor Wright", "character": "B.U. Guy in Bra", "id": 61256, "credit_id": "52fe466f9251416c910546e7", "cast_id": 14, "profile_path": "/oSdfAF2W6v7ELe0yQKWVMJDjXp5.jpg", "order": 14}, {"name": "Adina Porter", "character": "Gretchen's Associate", "id": 118546, "credit_id": "52fe466f9251416c910546eb", "cast_id": 15, "profile_path": "/5nSo6tSC7eT4Yum5Qd38yIJ2K5M.jpg", "order": 15}, {"name": "Rashida Jones", "character": "Marylin Delpy", "id": 80591, "credit_id": "52fe466f9251416c91054745", "cast_id": 34, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 16}, {"name": "Felisha Terrell", "character": "Beautiful Woman", "id": 210334, "credit_id": "52fe466f9251416c91054749", "cast_id": 35, "profile_path": "/9MofujgqZ8kikXkHgNsBI17Lnt2.jpg", "order": 17}, {"name": "Peter Holden", "character": "Facebook Lawyer", "id": 1225911, "credit_id": "5389b57ec3a3680aed000dce", "cast_id": 37, "profile_path": "/xMCjCyynanDlcX0GdnsEhseSINZ.jpg", "order": 18}, {"name": "David Selby", "character": "Gage", "id": 56930, "credit_id": "54d2a4919251413fd300079e", "cast_id": 38, "profile_path": "/31FZf0TdcYm53S9R9q1KWNNxVaH.jpg", "order": 19}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe466f9251416c91054741", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.0, "runtime": 120}, "54186": {"poster_path": "/oiVWlhTkm5FB5fhQMQfpPzAFDkg.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "A psychological thriller of a grieving mother turned cold-blooded avenger with a twisty master plan to pay back those who were responsible for her daughter's death.", "video": false, "id": 54186, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Confessions", "tagline": "", "vote_count": 61, "homepage": "http://kokuhaku-shimasu.jp/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1590089", "adult": false, "backdrop_path": "/kA0UMut3JUlB3LaaKCKMSz2uDX9.jpg", "production_companies": [{"name": "DesperaDo", "id": 7831}], "release_date": "2010-06-05", "popularity": 0.456367315212123, "original_title": "\u544a\u767d", "budget": 0, "cast": [{"name": "Takako Matsu", "character": "Yuko Moriguchi", "id": 111690, "credit_id": "52fe4890c3a36847f816e23b", "cast_id": 4, "profile_path": "/hcU0vYfPTXkYzCe9yHdmG0e0jmC.jpg", "order": 0}, {"name": "Masaki Okada", "character": "Yoshiteru Terada", "id": 124402, "credit_id": "52fe4890c3a36847f816e23f", "cast_id": 5, "profile_path": "/ye41mgdvRweMocrOE2ugnOdQXDx.jpg", "order": 1}, {"name": "Kimura Yoshino", "character": "Naoki's mother", "id": 72764, "credit_id": "52fe4890c3a36847f816e243", "cast_id": 6, "profile_path": "/dwLTlABDjieSq8SVQrE63gvnnk1.jpg", "order": 2}, {"name": "Mana Ashida", "character": "Manami Moriguchi (Yuko's Daughter)", "id": 559416, "credit_id": "52fe4890c3a36847f816e25f", "cast_id": 13, "profile_path": "/gvfweKd6XU3AQy1CFakbVNYeMCI.jpg", "order": 3}, {"name": "Makiya Yamaguchi", "character": "Masayoshi Sakuranomiya", "id": 559414, "credit_id": "52fe4890c3a36847f816e257", "cast_id": 11, "profile_path": "/llDKjngoWxhkUVp8vfaCzeBnHcp.jpg", "order": 4}, {"name": "Yukito Nishii", "character": "Shuya Watanabe", "id": 559411, "credit_id": "52fe4890c3a36847f816e247", "cast_id": 7, "profile_path": "/4oCRIg1RG4AN3rAP9Y5nO8AoQ5u.jpg", "order": 5}, {"name": "Kaoru Fujiwara", "character": "Naoki Shimomura", "id": 559412, "credit_id": "52fe4890c3a36847f816e24b", "cast_id": 8, "profile_path": "/9p0fwGWoFmQm7qFNSflg6QlK4U2.jpg", "order": 6}, {"name": "Ai Hashimoto", "character": "Mizuki Kitahara", "id": 559413, "credit_id": "52fe4890c3a36847f816e24f", "cast_id": 9, "profile_path": "/7lLnGo0fdRsx9PTzh3b1BMJNEOv.jpg", "order": 7}, {"name": "Naoki Ichii", "character": "Yusuke Hoshino", "id": 1195937, "credit_id": "52fe4890c3a36847f816e263", "cast_id": 14, "profile_path": "/tenJrddIbI7Lxhvru22nuBDgP6O.jpg", "order": 8}, {"name": "Kai Inowaki", "character": "Yuma Maekawa", "id": 85005, "credit_id": "52fe4890c3a36847f816e267", "cast_id": 15, "profile_path": "/5EJYSiQ01X0cb1g6gOdGCmpRoLE.jpg", "order": 9}, {"name": "Ayaka Miyoshi", "character": "Ayaka Tsuchida", "id": 1195939, "credit_id": "52fe4890c3a36847f816e26b", "cast_id": 16, "profile_path": "/zJ3n2CAfRN85SZuP4qaBylLhk2i.jpg", "order": 10}, {"name": "Moto Hotaruno", "character": "Saki Matsukawa", "id": 1195943, "credit_id": "52fe4890c3a36847f816e26f", "cast_id": 17, "profile_path": "/9SVr9zMEDniD9o79s3mOs8m7rEZ.jpg", "order": 11}, {"name": "Kasumi Yamaya", "character": "Yukari Naito", "id": 1195944, "credit_id": "52fe4890c3a36847f816e273", "cast_id": 18, "profile_path": "/oR48JUhMZGWN6V7WptP2APLJEjY.jpg", "order": 12}, {"name": "Hirofumi Arai", "character": "Shuya's Father", "id": 110500, "credit_id": "52fe4890c3a36847f816e253", "cast_id": 10, "profile_path": "/syF8PGhQiexSaGewrCnM9FIGydg.jpg", "order": 13}, {"name": "Ikuyo Kuroda", "character": "Shuya's Mother", "id": 559415, "credit_id": "52fe4890c3a36847f816e25b", "cast_id": 12, "profile_path": "/reziuDEnpY0dKXFjnemBH5HpLKy.jpg", "order": 14}], "directors": [{"name": "Tetsuya Nakashima", "department": "Directing", "job": "Director", "credit_id": "52fe4890c3a36847f816e22b", "profile_path": "/2soceoLutZZBpUkhMuxvVEZw0PW.jpg", "id": 131186}], "vote_average": 7.6, "runtime": 106}, "5038": {"poster_path": "/z1EVwBwK3iZrq3HjGoCZ6oJFq8q.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96408652, "overview": "Two girlfriends on a summer holiday in Spain become enamored with the same painter, unaware that his ex-wife, with whom he has a tempestuous relationship, is about to re-enter the picture.", "video": false, "id": 5038, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Vicky Cristina Barcelona", "tagline": "Life is the ultimate work of art", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0497465", "adult": false, "backdrop_path": "/4bReUokUn1E4mwbKykr1tc18OrT.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Gravier Productions", "id": 1824}], "release_date": "2008-08-15", "popularity": 0.386592816840463, "original_title": "Vicky Cristina Barcelona", "budget": 15000000, "cast": [{"name": "Scarlett Johansson", "character": "Cristina", "id": 1245, "credit_id": "52fe43eec3a36847f8079279", "cast_id": 3, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Rebecca Hall", "character": "Vicky", "id": 15556, "credit_id": "52fe43eec3a36847f8079281", "cast_id": 5, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Juan Antonio Gonzalo", "id": 3810, "credit_id": "52fe43eec3a36847f8079289", "cast_id": 7, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Mar\u00eda Elena", "id": 955, "credit_id": "52fe43eec3a36847f807927d", "cast_id": 4, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "Christopher Evan Welch", "character": "Narrator (voice)", "id": 60021, "credit_id": "52fe43eec3a36847f8079295", "cast_id": 10, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 4}, {"name": "Chris Messina", "character": "Doug", "id": 61659, "credit_id": "52fe43eec3a36847f807928d", "cast_id": 8, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 5}, {"name": "Patricia Clarkson", "character": "Judy Nash", "id": 1276, "credit_id": "52fe43eec3a36847f8079285", "cast_id": 6, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 6}, {"name": "Kevin Dunn", "character": "Mark Nash", "id": 14721, "credit_id": "52fe43eec3a36847f8079291", "cast_id": 9, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 7}, {"name": "Julio Perill\u00e1n", "character": "Charles", "id": 588323, "credit_id": "5310d9ec9251411042001392", "cast_id": 19, "profile_path": "/cBBhI6tk9crvuGfaIysVXRyXo6G.jpg", "order": 8}, {"name": "Juan Queseda", "character": "Guitarist in Barcelona", "id": 1303725, "credit_id": "532e64aac3a3685fe2003461", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Ricard Salom", "character": "Art Gallery Guest", "id": 1303727, "credit_id": "532e65699251413a6f002a07", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Maurice Sonnenberg", "character": "Art Gallery Guest", "id": 28005, "credit_id": "532e65129251413a7e0027b1", "cast_id": 22, "profile_path": "/vEoIXwvbHghKymwtaDQtuNQg4mk.jpg", "order": 11}, {"name": "Manel Barcel\u00f3", "character": "Doctor", "id": 1062005, "credit_id": "532e65aec3a3685fdb003411", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Josep Maria Dom\u00e8nech", "character": "Julio", "id": 108908, "credit_id": "532e65d7c3a3685fcb0033a3", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Emilio de Benito", "character": "Guitarist in Asturias", "id": 1303728, "credit_id": "532e65fdc3a3685fdb00341c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Jaume Montan\u00e9", "character": "Juan Antonio's Friend", "id": 986521, "credit_id": "532e6612c3a3685fc3003442", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Lloll Bertran", "character": "Juan Antonio's Friend", "id": 1061977, "credit_id": "532e6622c3a3685fc3003448", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Joel Joan", "character": "Juan Antonio's Friend", "id": 19826, "credit_id": "532e662fc3a3685fac0032b2", "cast_id": 29, "profile_path": "/eZaiTHwNnTDYTXuZ6Zh2kBptilB.jpg", "order": 17}, {"name": "Silvia Sabat\u00e9", "character": "Juan Antonio's Friend", "id": 1303729, "credit_id": "532e6655c3a3685fbb00337a", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Pablo Schreiber", "character": "Ben", "id": 59254, "credit_id": "532e66f3c3a3685fbb003388", "cast_id": 31, "profile_path": "/uNNgZmEVvhV0WUf11oGMpYb6oWE.jpg", "order": 19}, {"name": "Carrie Preston", "character": "Sally", "id": 7465, "credit_id": "532e6724c3a3685fac0032d0", "cast_id": 33, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 20}, {"name": "Zak Orth", "character": "Adam", "id": 6212, "credit_id": "532e6742c3a3685fd3003492", "cast_id": 34, "profile_path": "/rKupoahQ3pgeVVXS8EWd1WSnKEO.jpg", "order": 21}, {"name": "Abel Folk", "character": "Jay", "id": 133525, "credit_id": "532e678ac3a3685fac0032e1", "cast_id": 35, "profile_path": null, "order": 22}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe43eec3a36847f807926f", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.7, "runtime": 96}, "9032": {"poster_path": "/fNuksh5Ud4a9hZGJkMpJFs3oyEy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163479795, "overview": "Layla Maloney is fed up with boyfriend Sonny Koufax's perpetual loafing, so when 5-year-old Julian is left on Sonny's doorstep, he assumes a fatherly role to prove he's responsible and to win Layla's love. Trouble is, Sonny has grown attached to the kid, who's really the son of his out-of-town roommate.", "video": false, "id": 9032, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Big Daddy", "tagline": "Nature called. Look who answered.", "vote_count": 204, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0142342", "adult": false, "backdrop_path": "/46sAmtpjFYfLZ1zTS8lJOM5CZWz.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-06-25", "popularity": 1.15275555746166, "original_title": "Big Daddy", "budget": 34200000, "cast": [{"name": "Adam Sandler", "character": "Sonny Koufax", "id": 19292, "credit_id": "52fe44d4c3a36847f80ac6ff", "cast_id": 11, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Joey Lauren Adams", "character": "Layla Maloney", "id": 16484, "credit_id": "52fe44d4c3a36847f80ac703", "cast_id": 12, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 1}, {"name": "Kristy Swanson", "character": "Vanessa", "id": 56128, "credit_id": "52fe44d4c3a36847f80ac737", "cast_id": 24, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 2}, {"name": "Cole Sprouse", "character": "Julian 'Frankenstien' McGrath", "id": 56730, "credit_id": "52fe44d4c3a36847f80ac70b", "cast_id": 14, "profile_path": "/ecR3jwrg0nSeXZQ4l7a4y73Coul.jpg", "order": 3}, {"name": "Jon Stewart", "character": "Kevin Gerrity", "id": 12219, "credit_id": "52fe44d4c3a36847f80ac707", "cast_id": 13, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 4}, {"name": "Leslie Mann", "character": "Corinne Maloney", "id": 41087, "credit_id": "52fe44d4c3a36847f80ac715", "cast_id": 16, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 5}, {"name": "Allen Covert", "character": "Phil D'Amato", "id": 20818, "credit_id": "52fe44d4c3a36847f80ac719", "cast_id": 17, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 6}, {"name": "Rob Schneider", "character": "Delivery Guy", "id": 60949, "credit_id": "52fe44d4c3a36847f80ac71d", "cast_id": 18, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 7}, {"name": "Peter Dante", "character": "Tommy Grayton", "id": 20819, "credit_id": "52fe44d4c3a36847f80ac721", "cast_id": 19, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 8}, {"name": "Steve Buscemi", "character": "Homeless Guy", "id": 884, "credit_id": "52fe44d4c3a36847f80ac725", "cast_id": 20, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 9}, {"name": "Dylan Sprouse", "character": "Julian 'Frankenstien' McGrath", "id": 95686, "credit_id": "52fe44d4c3a36847f80ac72f", "cast_id": 22, "profile_path": "/86nkUScYbpUzEDTQOFipiFvdfQi.jpg", "order": 10}, {"name": "Josh Mostel", "character": "Arthur Brooks", "id": 33489, "credit_id": "52fe44d4c3a36847f80ac733", "cast_id": 23, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 11}, {"name": "Joseph Bologna", "character": "Lenny Koufax", "id": 46946, "credit_id": "52fe44d4c3a36847f80ac73b", "cast_id": 25, "profile_path": "/f1OqZUD63SaIRmjXOtAcoRRehsI.jpg", "order": 12}, {"name": "Peter Dante", "character": "Tommy Grayton", "id": 20819, "credit_id": "52fe44d4c3a36847f80ac73f", "cast_id": 26, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 13}, {"name": "Jonathan Loughran", "character": "Mike", "id": 58477, "credit_id": "52fe44d4c3a36847f80ac743", "cast_id": 27, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 14}, {"name": "Tim Herlihy", "character": "Singing Kangaroo", "id": 56728, "credit_id": "52fe44d4c3a36847f80ac747", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Edmund Lyndeck", "character": "Mr. Herlihy", "id": 111679, "credit_id": "52fe44d4c3a36847f80ac74b", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Larkin Malloy", "character": "Restaurant Owner", "id": 171986, "credit_id": "52fe44d4c3a36847f80ac74f", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Deborah S. Craig", "character": "Paralegal", "id": 1225349, "credit_id": "52fe44d4c3a36847f80ac753", "cast_id": 31, "profile_path": "/frzyta7LIaGMrwx79dHMmV7iSmp.jpg", "order": 18}, {"name": "Jared Sandler", "character": "Jared", "id": 60961, "credit_id": "54ee50f49251417961004a07", "cast_id": 32, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 19}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe44d4c3a36847f80ac6c5", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.1, "runtime": 93}, "70578": {"poster_path": "/kZ7BE0Ob664ZFuFrWNTm9eu62qW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kyle (Nicholas Cage) and Sarah Miller (Nicole Kidman) have it all: a huge gated house on the water, fancy cars, and the potential for romance in their relationship. He's just back from a business trip (he brokers diamonds) and their teen daughter Avery (Liana Liberato) is sneaking out to a party, when four thugs in security uniforms and ski masks stage a home invasion. They want what's in the safe: cash and diamonds. As Kyle stalls them, trying to negotiate for Sarah's freedom, the fault lines in Kyle and Sarah's marriage and the pasts of the four robbers come into play. Is there room here for heroism?", "video": false, "id": 70578, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Trespass", "tagline": "When terror is at your doorstep. You can run. Or you can fight.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1674784", "adult": false, "backdrop_path": "/Rr5uWWzovjB3zACUHcMJqzFuE3.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Films", "id": 925}, {"name": "Winkler Films", "id": 8880}], "release_date": "2011-10-14", "popularity": 0.661637056974084, "original_title": "Trespass", "budget": 36000000, "cast": [{"name": "Nicolas Cage", "character": "Kyle", "id": 2963, "credit_id": "52fe4801c3a368484e0e4d75", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Cam Gigandet", "character": "Jonah Collins", "id": 55086, "credit_id": "52fe4801c3a368484e0e4d79", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Sarah", "id": 2227, "credit_id": "52fe4801c3a368484e0e4d7d", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "Liana Liberato", "character": "Avery", "id": 60458, "credit_id": "52fe4801c3a368484e0e4d81", "cast_id": 6, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 3}, {"name": "Nico Tortorella", "character": "Jake", "id": 127128, "credit_id": "52fe4801c3a368484e0e4d85", "cast_id": 7, "profile_path": "/A6H0K8h39LcpQpjjjBCoWekDiAf.jpg", "order": 4}, {"name": "Jordana Spiro", "character": "", "id": 39481, "credit_id": "52fe4801c3a368484e0e4d89", "cast_id": 8, "profile_path": "/5gpdURb63EivWf2alZawyd9PfNo.jpg", "order": 5}, {"name": "Dash Mihok", "character": "", "id": 6066, "credit_id": "52fe4801c3a368484e0e4d8d", "cast_id": 9, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 6}, {"name": "Ben Mendelsohn", "character": "", "id": 77335, "credit_id": "52fe4801c3a368484e0e4d91", "cast_id": 10, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 7}, {"name": "Tina Parker", "character": "Security Operator", "id": 147085, "credit_id": "52fe4801c3a368484e0e4d95", "cast_id": 12, "profile_path": "/5GrNurGSdSvQccO5jECtYZorWYu.jpg", "order": 8}, {"name": "Terry Milam", "character": "Travis", "id": 558902, "credit_id": "52fe4801c3a368484e0e4d99", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Gracie Whitton", "character": "Young Avery", "id": 558903, "credit_id": "52fe4801c3a368484e0e4d9d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Brandon Belknap", "character": "Dylan", "id": 558904, "credit_id": "52fe4801c3a368484e0e4da1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Emily Meade", "character": "Kendra", "id": 71815, "credit_id": "52fe4801c3a368484e0e4dab", "cast_id": 17, "profile_path": "/spevld4WoZYuY2hnjdysbKgxVNK.jpg", "order": 12}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4801c3a368484e0e4d6b", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.5, "runtime": 91}, "70586": {"poster_path": "/hSE2TZqF6x46Exo6Et5aCqPWtej.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of friends plan out a detailed heist that turns deadly when one betrays the other by taking off with the goods. Taking matters into his own hands, Sonny seeks out his revenge teaming up with the most dangerous mob boss in town to get back what is rightfully his. When he finally comes face to face with his longtime friend he will be forced to make a life changing choice.", "video": false, "id": 70586, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Setup", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748197", "adult": false, "backdrop_path": "/dthg7KpdEnIC66JX1adKRgBWQYg.jpg", "production_companies": [{"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Paradox Entertainment", "id": 6819}, {"name": "Hedge Fund Film Partners", "id": 11449}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Gunny Entertainment", "id": 7788}], "release_date": "2011-11-04", "popularity": 0.868882377844417, "original_title": "Setup", "budget": 22000000, "cast": [{"name": "Bruce Willis", "character": "Biggs", "id": 62, "credit_id": "52fe4802c3a368484e0e5007", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Ryan Phillippe", "character": "Vincent", "id": 11864, "credit_id": "52fe4802c3a368484e0e500b", "cast_id": 5, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 1}, {"name": "James Remar", "character": "William", "id": 1736, "credit_id": "52fe4802c3a368484e0e500f", "cast_id": 7, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 2}, {"name": "50 Cent", "character": "Sonny", "id": 62644, "credit_id": "52fe4802c3a368484e0e5013", "cast_id": 8, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 3}, {"name": "Randy Couture", "character": "Petey", "id": 74748, "credit_id": "52fe4802c3a368484e0e5017", "cast_id": 9, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 4}, {"name": "Will Yun Lee", "character": "Joey", "id": 10884, "credit_id": "52fe4802c3a368484e0e501b", "cast_id": 10, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 5}, {"name": "Shaun Toub", "character": "Roth", "id": 17857, "credit_id": "52fe4802c3a368484e0e501f", "cast_id": 11, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 6}, {"name": "Susie Abromeit", "character": "Valerie", "id": 108696, "credit_id": "52fe4802c3a368484e0e5023", "cast_id": 12, "profile_path": "/cQt1gS5hSxIdR1MYUDHRV0Oq3fq.jpg", "order": 7}, {"name": "Jay Karnes", "character": "Russel", "id": 155934, "credit_id": "52fe4802c3a368484e0e5027", "cast_id": 13, "profile_path": "/iKhmGyHtIutZ8XNMDPiwgyUkZay.jpg", "order": 8}, {"name": "Jordan Trovillion", "character": "Kelli", "id": 558923, "credit_id": "52fe4802c3a368484e0e502b", "cast_id": 14, "profile_path": "/qjmARKyWhlx0tPFH0ZTqC2agxtW.jpg", "order": 9}, {"name": "Ambyr Childers", "character": "Haliey", "id": 75330, "credit_id": "52fe4802c3a368484e0e502f", "cast_id": 15, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 10}, {"name": "Omar J. Dorsey", "character": "G Money", "id": 59844, "credit_id": "52fe4802c3a368484e0e5033", "cast_id": 16, "profile_path": "/20Lrh4XaRrNEMapJGMl9uToHSQn.jpg", "order": 11}, {"name": "Theo Kypri", "character": "The Courier", "id": 202955, "credit_id": "52fe4802c3a368484e0e5037", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Richard Goteri", "character": "John R", "id": 133284, "credit_id": "52fe4802c3a368484e0e503b", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Jenna Dewan", "character": "Mia", "id": 20381, "credit_id": "52fe4802c3a368484e0e5051", "cast_id": 22, "profile_path": "/j8BeJ5VL3jp7JWxgYlZPUscP6FC.jpg", "order": 14}], "directors": [{"name": "Mike Gunther", "department": "Directing", "job": "Director", "credit_id": "52fe4802c3a368484e0e5041", "profile_path": null, "id": 131413}], "vote_average": 4.9, "runtime": 85}, "218043": {"poster_path": "/lWf8po2lGleVuzRB4lpHavVT1Lv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small group of survivors are left behind after millions of people suddenly vanish during the rapture and the world is plunged into chaos and destruction.", "video": false, "id": 218043, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Left Behind", "tagline": "The End Begins", "vote_count": 104, "homepage": "http://www.leftbehindmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2467046", "adult": false, "backdrop_path": "/oUZn1QXB7FTqMBnM7GdqK5PFNzn.jpg", "production_companies": [{"name": "Entertainment One", "id": 8147}, {"name": "Stoney Lake Entertainment", "id": 16558}], "release_date": "2014-10-03", "popularity": 2.2151447599627, "original_title": "Left Behind", "budget": 15000000, "cast": [{"name": "Nicolas Cage", "character": "Rayford Steele", "id": 2963, "credit_id": "52fe4e43c3a368484e216ffd", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Chad Michael Murray", "character": "Buck Williams", "id": 62747, "credit_id": "53398ddf9251417da4004911", "cast_id": 9, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Irene Steele", "id": 1063, "credit_id": "53398de89251417d9e00496a", "cast_id": 10, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Nicky Whelan", "character": "Hattie Durham", "id": 212833, "credit_id": "53398df49251417daa004934", "cast_id": 11, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 3}, {"name": "Martin Klebba", "character": "Melvin Weir", "id": 4030, "credit_id": "53398e039251417da4004913", "cast_id": 12, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 4}, {"name": "Cassie Thompson", "character": "Chloe Steele", "id": 1305985, "credit_id": "53398e109251417d9b004b43", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Quinton Aaron", "character": "Simon", "id": 112560, "credit_id": "53398e67c3a3680e76006244", "cast_id": 14, "profile_path": "/5NeAJi2BTY4f75zTVSgGPnZZUa6.jpg", "order": 6}, {"name": "Jordin Sparks", "character": "Shasta Carvell", "id": 224842, "credit_id": "53398e72c3a3680e8f006338", "cast_id": 15, "profile_path": "/sxm6XsbIpW6ZOwycvFDrY46tl7s.jpg", "order": 7}, {"name": "Gary Grubbs", "character": "Dennis", "id": 68180, "credit_id": "53398e7cc3a3680e690062b0", "cast_id": 16, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 8}, {"name": "William Ragsdale", "character": "Chris Smith", "id": 31467, "credit_id": "53398e8bc3a3680e690062b2", "cast_id": 17, "profile_path": "/njtQMv0vm9uNzSdVTqjYTu1TzNd.jpg", "order": 9}, {"name": "Stephanie Honor\u00e9", "character": "Kimmy", "id": 94427, "credit_id": "53398e9bc3a3680e8f00633c", "cast_id": 18, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 10}, {"name": "Lolo Jones", "character": "Lori", "id": 1253634, "credit_id": "54bc41749251411d6a009a91", "cast_id": 72, "profile_path": null, "order": 11}], "directors": [{"name": "Vic Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe4e43c3a368484e217003", "profile_path": null, "id": 15358}], "vote_average": 3.9, "runtime": 110}, "37821": {"poster_path": "/m2wrmME95SF1hsqvMpAyNXeghOl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98159963, "overview": "When an elite assassin marries a beautiful computer whiz after a whirlwind romance, he gives up the gun and settles down with his new bride. That is, until he learns that someone from his past has put a contract out on his life.", "video": false, "id": 37821, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Killers", "tagline": "One Day Is Enough For You!", "vote_count": 245, "homepage": "http://killersfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1103153", "adult": false, "backdrop_path": "/tcv1qOo2k6ifKjz9hD2oTYtrsOq.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2010-06-04", "popularity": 0.920999470914114, "original_title": "Killers", "budget": 75000000, "cast": [{"name": "Katherine Heigl", "character": "Jen Kornfeldt", "id": 25541, "credit_id": "52fe46719251416c91054a15", "cast_id": 4, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Spencer Aimes", "id": 18976, "credit_id": "52fe46719251416c91054a19", "cast_id": 5, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Tom Selleck", "character": "Mr. Kornfeldt", "id": 15112, "credit_id": "52fe46719251416c91054a1d", "cast_id": 6, "profile_path": "/au3wlNaGUSLZD46DJFGRuJ0CBVe.jpg", "order": 2}, {"name": "Catherine O'Hara", "character": "", "id": 11514, "credit_id": "52fe46719251416c91054a21", "cast_id": 7, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 3}, {"name": "Alex Borstein", "character": "Mrs. Baily", "id": 24357, "credit_id": "52fe46719251416c91054a25", "cast_id": 8, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 3}, {"name": "Katheryn Winnick", "character": "Vivian", "id": 26723, "credit_id": "52fe46719251416c91054a29", "cast_id": 9, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 4}, {"name": "Rob Riggle", "character": "Henry", "id": 71403, "credit_id": "52fe46719251416c91054a2d", "cast_id": 10, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 5}, {"name": "Kevin Sussman", "character": "Mac Bailey", "id": 60633, "credit_id": "52fe46719251416c91054a31", "cast_id": 11, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 6}, {"name": "Martin Mull", "character": "", "id": 80742, "credit_id": "52fe46719251416c91054a35", "cast_id": 12, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 7}, {"name": "Larry Joe Campbell", "character": "Pete Denham", "id": 118590, "credit_id": "52fe46719251416c91054a39", "cast_id": 13, "profile_path": "/91kXO2XCIv8B9bP3720QIrTJNfs.jpg", "order": 8}, {"name": "Lisa Ann Walter", "character": "Olivia", "id": 4494, "credit_id": "52fe46719251416c91054a3d", "cast_id": 14, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 9}, {"name": "Mary Birdsong", "character": "Jackie Vallero", "id": 63232, "credit_id": "52fe46719251416c91054a41", "cast_id": 15, "profile_path": "/oBXCCLgt3q2KDVQ7Ge6BWANJHZz.jpg", "order": 10}, {"name": "Casey Wilson", "character": "Kristen", "id": 83872, "credit_id": "52fe46719251416c91054a45", "cast_id": 16, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 11}, {"name": "Natalina Maggio", "character": "European Model", "id": 118591, "credit_id": "52fe46719251416c91054a49", "cast_id": 17, "profile_path": "/zvwfXocXHyA8zB7pOkdh4yDsMoK.jpg", "order": 12}, {"name": "Letoya Luckett", "character": "Amanda", "id": 93528, "credit_id": "52fe46719251416c91054a4d", "cast_id": 18, "profile_path": "/8MPHavBhHCHVGJnEMu7bxr5HdIF.jpg", "order": 13}, {"name": "Lauren Glazier", "character": "Flavie - Head flight attendant", "id": 118592, "credit_id": "52fe46719251416c91054a51", "cast_id": 19, "profile_path": "/bvpmxumWqD9K5MoNzGtEvavlQXu.jpg", "order": 14}, {"name": "Anna Colwell", "character": "Pretty Girl", "id": 118593, "credit_id": "52fe46719251416c91054a55", "cast_id": 20, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 15}, {"name": "Elena Kolpachikova", "character": "Model", "id": 118594, "credit_id": "52fe46719251416c91054a59", "cast_id": 21, "profile_path": "/boVYF8emBKxwAK1tSRF1bOObR4H.jpg", "order": 16}, {"name": "Ric Reitz", "character": "Dougie Vollero", "id": 118595, "credit_id": "52fe46719251416c91054a5d", "cast_id": 22, "profile_path": "/oxskVXgWJ8EkbCxuuF7OeHPxeaA.jpg", "order": 17}, {"name": "Jean-Michel Richaud", "character": "Pilot", "id": 59060, "credit_id": "52fe46719251416c91054a61", "cast_id": 23, "profile_path": "/hUBf7t28fATtiBIsGhMpepN6Iu5.jpg", "order": 18}, {"name": "Marvin Baldwin Jr.", "character": "Eagle Mascot", "id": 118596, "credit_id": "52fe46719251416c91054a65", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Lukas Delcourt", "character": "European model", "id": 118597, "credit_id": "52fe46719251416c91054a69", "cast_id": 25, "profile_path": "/dPeYYfdX7jA5Rw6zcniVn6bajvS.jpg", "order": 20}, {"name": "Yan Dron", "character": "Guard", "id": 118598, "credit_id": "52fe46719251416c91054a6d", "cast_id": 26, "profile_path": "/m4rLzOWGcz9hJMSZ8smNdavVQo.jpg", "order": 21}, {"name": "Matt Murphy", "character": "Model", "id": 7209, "credit_id": "52fe46719251416c91054a71", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Michael Daniel Cassady", "character": "Milo", "id": 118599, "credit_id": "52fe46719251416c91054a75", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "John Charles", "character": "Model chris", "id": 64101, "credit_id": "52fe46719251416c91054a79", "cast_id": 29, "profile_path": null, "order": 24}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe46719251416c91054a05", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 5.9, "runtime": 100}, "9035": {"poster_path": "/oRwHmH4cPRAiCsMUCGaCwZQz0Jg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.", "video": false, "id": 9035, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Slither", "tagline": "Horror Has A New Face", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0439815", "adult": false, "backdrop_path": "/mMmGK5gEPATupYNprpRVUtUshu4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-03-31", "popularity": 0.471084018690855, "original_title": "Slither", "budget": 15500000, "cast": [{"name": "Nathan Fillion", "character": "Bill Pardy", "id": 51797, "credit_id": "52fe44d4c3a36847f80ac88d", "cast_id": 1, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 0}, {"name": "Don Thompson", "character": "Wally", "id": 56749, "credit_id": "52fe44d4c3a36847f80ac891", "cast_id": 2, "profile_path": "/gw4gG6uN4IItV0OeAWYFftmxvRn.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Starla Grant", "id": 9281, "credit_id": "52fe44d4c3a36847f80ac895", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Gregg Henry", "character": "Jack MacReady", "id": 2518, "credit_id": "52fe44d4c3a36847f80ac899", "cast_id": 4, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 3}, {"name": "Xantha Radley", "character": "Uptight Mom", "id": 56750, "credit_id": "52fe44d4c3a36847f80ac89d", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Michael Rooker", "character": "Grant", "id": 12132, "credit_id": "52fe44d4c3a36847f80ac8bf", "cast_id": 11, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 5}, {"name": "Tania Saulnier", "character": "Kylie Strutemyer", "id": 59244, "credit_id": "52fe44d4c3a36847f80ac8c3", "cast_id": 12, "profile_path": "/bEMuffxifJMZkcAmZ2J9NbHehJu.jpg", "order": 6}, {"name": "Magda Apanowicz", "character": "Friend", "id": 189026, "credit_id": "52fe44d4c3a36847f80ac8c7", "cast_id": 13, "profile_path": "/zDNKxuN8Gk5rwx3CiybTYCevLmN.jpg", "order": 7}, {"name": "Dustin Milligan", "character": "Drawing Boy", "id": 53117, "credit_id": "52fe44d4c3a36847f80ac8d1", "cast_id": 15, "profile_path": "/yn0g5VpGYwuTcIl9BK5gc8bWXmg.jpg", "order": 8}, {"name": "Zak Ludwig", "character": "Gina Kid", "id": 146557, "credit_id": "52fe44d4c3a36847f80ac8d5", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Brenda James", "character": "Brenda Gutierrez", "id": 77898, "credit_id": "54dcf28b92514155bb001f7b", "cast_id": 20, "profile_path": null, "order": 10}], "directors": [{"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe44d4c3a36847f80ac8a3", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}], "vote_average": 5.8, "runtime": 95}, "13253": {"poster_path": "/1oVWiArGNCumqeK0e7i4FgMOGPt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Leela is insulted by a group of space-rednecks (like regular rednecks, but in space) she enters the Planet Express ship in a demolition derby. She emerges victorious, but when she brings the damaged ship home and the Professor sees the fuel gauge, he's enraged by the hit he's going to take at the Dark Matter pump. Now the crew have to find a way to break Mom's stranglehold on starship fuel, even if they have to wade through a Lord of the Rings-inspired fantasy-land to do it!", "video": false, "id": 13253, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Futurama: Bender's Game", "tagline": "All-New Feature-Length Quest", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wZ1Xuwhu4hbcHPAAZz9sFTIZTKX.jpg", "poster_path": "/vkrtsW1Fyzu4rRpWYz2ybDfKXb0.jpg", "id": 13800, "name": "Futurama Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1054486", "adult": false, "backdrop_path": "/pQv2QhmQr0lUM1U6jwLRPWyz5eV.jpg", "production_companies": [{"name": "20th Century Fox Television", "id": 16323}], "release_date": "2008-11-03", "popularity": 0.402388765878439, "original_title": "Futurama: Bender's Game", "budget": 0, "cast": [{"name": "Billy West", "character": "Philip J. Fry (voice)", "id": 23679, "credit_id": "52fe45539251416c75052ac5", "cast_id": 1, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 0}, {"name": "Katey Sagal", "character": "Turanga Leela (voice)", "id": 18980, "credit_id": "52fe45539251416c75052ac9", "cast_id": 2, "profile_path": "/35sEVpaGxVIfd9wJIJ0iNxz5llN.jpg", "order": 1}, {"name": "John Di Maggio", "character": "Bender (voice)", "id": 31531, "credit_id": "52fe45539251416c75052acd", "cast_id": 3, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 2}, {"name": "Phil LaMarr", "character": "Hermes Conrad (voice)", "id": 31549, "credit_id": "52fe45539251416c75052ad1", "cast_id": 4, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 3}, {"name": "Lauren Tom", "character": "Amy Wong (voice)", "id": 15100, "credit_id": "52fe45539251416c75052ad5", "cast_id": 5, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 4}, {"name": "Tress MacNeille", "character": "Mom (voice)", "id": 34983, "credit_id": "52fe45539251416c75052ad9", "cast_id": 6, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 5}], "directors": [{"name": "Dwayne Carey-Hill", "department": "Directing", "job": "Director", "credit_id": "52fe45539251416c75052adf", "profile_path": null, "id": 53216}], "vote_average": 6.8, "runtime": 88}, "37834": {"poster_path": "/aumRtkfr9nNz06onPvhX9JtR5EI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 261930431, "overview": "An action-comedy centered on a fugitive couple on a glamorous and sometimes deadly adventure where nothing and no one - even themselves - are what they seem. Amid shifting alliances and unexpected betrayals, they race across the globe, with their survival ultimately hinging on the battle of truth vs. trust.", "video": false, "id": 37834, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Knight and Day", "tagline": "Every Hit Man Deserves a Second Shot!", "vote_count": 589, "homepage": "http://www.knightanddaymovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1013743", "adult": false, "backdrop_path": "/sSeo9o603MABEbAv8BGkgbLn0om.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}, {"name": "Tree Line Films", "id": 84}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2010-06-23", "popularity": 1.17299817130675, "original_title": "Knight and Day", "budget": 107000000, "cast": [{"name": "Tom Cruise", "character": "Roy Miller", "id": 500, "credit_id": "52fe46739251416c91054d65", "cast_id": 3, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "June Havens", "id": 6941, "credit_id": "52fe46739251416c91054d69", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Fitzgerald", "id": 133, "credit_id": "52fe46739251416c91054d6d", "cast_id": 5, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Maggie Grace", "character": "April Havens", "id": 11825, "credit_id": "52fe46739251416c91054d71", "cast_id": 6, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 3}, {"name": "Marc Blucas", "character": "Rodney", "id": 46772, "credit_id": "52fe46739251416c91054d75", "cast_id": 8, "profile_path": "/5OdBu0DFKca1mxjeqNruz00DSRF.jpg", "order": 5}, {"name": "Viola Davis", "character": "Isabel George - C.I.A. Director", "id": 19492, "credit_id": "52fe46739251416c91054d79", "cast_id": 9, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 6}, {"name": "Jordi Moll\u00e0", "character": "Antonio", "id": 31384, "credit_id": "52fe46739251416c91054d7d", "cast_id": 10, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 7}, {"name": "Dale Dye", "character": "Frank", "id": 3211, "credit_id": "52fe46739251416c91054d81", "cast_id": 11, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 8}, {"name": "Stream", "character": "Wichita Airport Traveller", "id": 118641, "credit_id": "52fe46739251416c91054d85", "cast_id": 12, "profile_path": "/wWsfCbQQyp90r3cSM5C5e9vVEyF.jpg", "order": 9}, {"name": "Liam Ferguson", "character": "Military Pilot", "id": 118642, "credit_id": "52fe46739251416c91054d89", "cast_id": 13, "profile_path": "/fTuiwoqkHCG7cMKSraEim1Xx7qi.jpg", "order": 10}, {"name": "Nicole Signore", "character": "Wedding Guest", "id": 118380, "credit_id": "52fe46739251416c91054d8d", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Falk Hentschel", "character": "Bernardo", "id": 118643, "credit_id": "52fe46739251416c91054d91", "cast_id": 15, "profile_path": "/6NFuHgdtpJ6dY8wqZ8CV95N82Z7.jpg", "order": 12}, {"name": "Hugo Garcia", "character": "Bull Runner", "id": 118644, "credit_id": "52fe46739251416c91054d95", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Mark Wallace", "character": "Smuggler", "id": 71568, "credit_id": "52fe46739251416c91054d99", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Jerrell Lee", "character": "Fireman Paul", "id": 118645, "credit_id": "52fe46739251416c91054d9d", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Brian Dykstra", "character": "TSA Agent", "id": 118646, "credit_id": "52fe46739251416c91054da1", "cast_id": 19, "profile_path": "/bxBIJGZ4L6D9ejVxcRPAJl6IZg0.jpg", "order": 16}, {"name": "Kal Thompson", "character": "Cop", "id": 118647, "credit_id": "52fe46739251416c91054da5", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Matthew Lawler", "character": "Passerby Agent", "id": 118648, "credit_id": "52fe46739251416c91054da9", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Paul Dano", "character": "Simon Feck", "id": 17142, "credit_id": "52fe46739251416c91054dad", "cast_id": 22, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 19}, {"name": "Gal Gadot", "character": "Naomi", "id": 90633, "credit_id": "52fe46739251416c91054db1", "cast_id": 23, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 20}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe46739251416c91054d5b", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 5.8, "runtime": 109}, "13260": {"poster_path": "/rb4QrpOCwWOm0Iw2E4GAkVoqnWi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33472850, "overview": "Jackie Moon is the owner, promoter, coach, and star player of the Flint Michigan Tropics of the American Basketball Association (ABA). In 1976 before the ABA collapses, the National Basketball Association (NBA) plans to merge with the best teams of the ABA at the end of the season. Only the top four teams will make the move and the worst teams will fold. The Tropics are the worst team in the league and if they want to make it to the NBA, Jackie Moon must rally his team and start winning. The only problem is the fact that Jackie Moon is not really the coach and star basketball player he thinks he is. To keep his team from oblivion and leave his mark in the city, Jackie Moon must inspire his team to win fourth place in the playoffs.", "video": false, "id": 13260, "genres": [{"id": 35, "name": "Comedy"}], "title": "Semi-Pro", "tagline": "Putting the funk into the dunk.", "vote_count": 57, "homepage": "http://newline.com/properties/semipro.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0839980", "adult": false, "backdrop_path": "/bfrQP3UFMunyXHlTkwe5nYTMgxp.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Donners' Company", "id": 431}, {"name": "Road Rebel", "id": 2648}], "release_date": "2008-02-28", "popularity": 0.322245215639978, "original_title": "Semi-Pro", "budget": 0, "cast": [{"name": "Will Ferrell", "character": "Jackie Moon", "id": 23659, "credit_id": "52fe45549251416c75052c67", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Maura Tierney", "character": "Lynn", "id": 16307, "credit_id": "52fe45549251416c75052c6b", "cast_id": 3, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Monix", "id": 57755, "credit_id": "52fe45549251416c75052c6f", "cast_id": 4, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "David Koechner", "character": "Commissioner", "id": 28638, "credit_id": "52fe45549251416c75052c73", "cast_id": 5, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 3}, {"name": "Will Arnett", "character": "Lou Redwood", "id": 21200, "credit_id": "52fe45549251416c75052c77", "cast_id": 6, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 4}, {"name": "Andr\u00e9 Benjamin", "character": "Clarence", "id": 37934, "credit_id": "52fe45549251416c75052c7b", "cast_id": 7, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 5}, {"name": "Andy Richter", "character": "Bobby Dee", "id": 28637, "credit_id": "52fe45549251416c75052c7f", "cast_id": 8, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 6}, {"name": "Rob Corddry", "character": "Kyle", "id": 52997, "credit_id": "52fe45549251416c75052c83", "cast_id": 9, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 7}, {"name": "Tim Meadows", "character": "Cornelius", "id": 51857, "credit_id": "52fe45549251416c75052c87", "cast_id": 10, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 8}, {"name": "Jackie Earle Haley", "character": "Dukes", "id": 17183, "credit_id": "52fe45549251416c75052c8b", "cast_id": 11, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 9}, {"name": "Matt Walsh", "character": "Father Pat", "id": 59841, "credit_id": "52fe45549251416c75052c8f", "cast_id": 12, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 10}, {"name": "Kristen Wiig", "character": "", "id": 41091, "credit_id": "52fe45549251416c75052c93", "cast_id": 13, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 11}, {"name": "Andrew Daly", "character": "Dick Pepperfield", "id": 95875, "credit_id": "52fe45549251416c75052c97", "cast_id": 14, "profile_path": "/1jUiCZOJOGE1LKBCaeMkrNceSj0.jpg", "order": 12}, {"name": "DeRay Davis", "character": "Bee Bee Ellis", "id": 11827, "credit_id": "52fe45549251416c75052c9b", "cast_id": 15, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 13}], "directors": [{"name": "Kent Alterman", "department": "Directing", "job": "Director", "credit_id": "52fe45549251416c75052c63", "profile_path": "/wA2LUif3K2ApfzBNwQfu0HoZqcp.jpg", "id": 65702}], "vote_average": 5.2, "runtime": 91}, "33613": {"poster_path": "/npbvrALDJ48MjXec5ZELpYvaAGs.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 4670000, "overview": "After taking a bullet to the head, Salander is under close supervision in a hospital and is set to face trial for attempted murder on her eventual release. With the help of journalist Mikael Blomkvist and his researchers at Millennium magazine, Salander must prove her innocence. In doing this she plays against powerful enemies and her own past.", "video": false, "id": 33613, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl Who Kicked the Hornet's Nest", "tagline": "There's A Storm Coming", "vote_count": 166, "homepage": "http://dragontattoofilm.com/", "belongs_to_collection": {"backdrop_path": "/9wLsZPhI7ZafO4fh1MhwCjvkclN.jpg", "poster_path": "/sLeE5pwX9cle1v1TpBylT9MeYJ2.jpg", "id": 24761, "name": "The Millennium Collection"}, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1343097", "adult": false, "backdrop_path": "/99aGSGxYHWnSdemNv1niGD8U99G.jpg", "production_companies": [{"name": "ZDF Enterprises", "id": 5747}, {"name": "Nordisk Film", "id": 235}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Yellow Bird Films", "id": 5746}, {"name": "Film i V\u00e4st", "id": 17513}], "release_date": "2009-11-27", "popularity": 0.460734406307887, "original_title": "Luftslottet som spr\u00e4ngdes", "budget": 4000000, "cast": [{"name": "Michael Nyqvist", "character": "Mikael Blomkvist", "id": 6283, "credit_id": "52fe45299251416c910297ef", "cast_id": 1, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Lisbeth Salander", "id": 87722, "credit_id": "52fe45299251416c910297f3", "cast_id": 2, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Lena Endre", "character": "Erika Berger", "id": 79196, "credit_id": "52fe45299251416c910297fd", "cast_id": 6, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 2}, {"name": "Annika Hallin", "character": "Annika Giannini", "id": 79270, "credit_id": "52fe45299251416c9102980d", "cast_id": 10, "profile_path": "/xvbhvw0Zt8SCNXVApudzZfd6X2p.jpg", "order": 3}, {"name": "Jacob Ericksson", "character": "Christer Malm", "id": 83895, "credit_id": "52fe45299251416c91029819", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Sofia Ledarp", "character": "Malin Erikson", "id": 83899, "credit_id": "52fe45299251416c91029801", "cast_id": 7, "profile_path": "/wYtfaMlSFX7iDpk00xtVuz0Hzof.jpg", "order": 5}, {"name": "Anders Ahlbom", "character": "Peter Teleborian", "id": 112594, "credit_id": "52fe45299251416c91029825", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Micke Spreitz", "character": "Ronald Niedermann", "id": 92644, "credit_id": "53d4f05b0e0a262844003cf7", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Georgi Staykov", "character": "Alexander Zalachenko", "id": 92645, "credit_id": "52fe45299251416c91029805", "cast_id": 8, "profile_path": "/uuf8Vkg1hU3jeT1gE0H98UE56Lz.jpg", "order": 8}, {"name": "Mirja Turestedt", "character": "Monica Figuerola", "id": 106656, "credit_id": "52fe45299251416c91029809", "cast_id": 9, "profile_path": "/4ZRr0LogwCVK7rUQfc4FOQn0nCx.jpg", "order": 9}, {"name": "Hans Alfredson", "character": "Evert Gullberg", "id": 70069, "credit_id": "52fe45299251416c91029835", "cast_id": 20, "profile_path": "/4x25gOplWMbkpq1upKbRw8FqJ4R.jpg", "order": 10}, {"name": "Lennart Hjulstr\u00f6m", "character": "Fredrik Clinton", "id": 92422, "credit_id": "52fe45299251416c91029839", "cast_id": 21, "profile_path": "/cVsZDcBDb5gr16JBl11lHzpxdMA.jpg", "order": 11}, {"name": "Niklas Hjulstr\u00f6m", "character": "Richard Ekstr\u00f6m", "id": 107577, "credit_id": "52fe45299251416c91029831", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Johan Kyl\u00e9n", "character": "Jan Bublanski", "id": 135691, "credit_id": "52fe45299251416c9102981d", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Tanja Lorentzon", "character": "Sonja Modig", "id": 106659, "credit_id": "52fe45299251416c91029821", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Magnus Krepper", "character": "Hans Faste", "id": 143391, "credit_id": "52fe45299251416c91029829", "cast_id": 17, "profile_path": "/iHJ5HM0bV5UfogcOobnKJtyJklf.jpg", "order": 15}, {"name": "Michalis Koutsogiannakis", "character": "Dragan Armanskij", "id": 92897, "credit_id": "52fe45299251416c9102982d", "cast_id": 18, "profile_path": "/ne1BlRr5i2yFTC7vj8MQoznACPf.jpg", "order": 16}, {"name": "Jacob Nordenson", "character": "Bertil Wadensj\u00f6", "id": 81212, "credit_id": "52fe45299251416c91029855", "cast_id": 29, "profile_path": "/hNEFz1s2ZjJFtSRYY2MxmNwuGIY.jpg", "order": 17}, {"name": "Peter Andersson", "character": "Nils Bjurman", "id": 21193, "credit_id": "52fe45299251416c91029815", "cast_id": 12, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 18}, {"name": "Tomas K\u00f6hler", "character": "'Plague'", "id": 87727, "credit_id": "53d4f1380e0a262838003d72", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Per Oscarsson", "character": "Holger Palmgren", "id": 3855, "credit_id": "52fe45299251416c91029811", "cast_id": 11, "profile_path": "/qCSUP6c7jz8kgJrGEX4tKDf8emr.jpg", "order": 20}], "directors": [{"name": "Daniel Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe45299251416c910297f9", "profile_path": "/252U4sFKLzHLb53Lha2pG5D01Gb.jpg", "id": 76325}], "vote_average": 6.8, "runtime": 147}, "144336": {"poster_path": "/lXBgKwtEKYiIrpyHvpD8BUqYNxm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17508518, "overview": "In \"Sabotage\", Arnold Schwarzenegger leads an elite DEA task force that takes on the world's deadliest drug cartels. When the team successfully executes a high-stakes raid on a cartel safe house, they think their work is done - until, one-by-one, the team members mysteriously start to be eliminated. As the body count rises, everyone is a suspect.", "video": false, "id": 144336, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sabotage", "tagline": "Leave no loose ends", "vote_count": 214, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1742334", "adult": false, "backdrop_path": "/zb0zgDuXC25zMGyiPeOiFDEHvmi.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "QED International", "id": 11029}, {"name": "Albert S. Ruddy Productions", "id": 16311}, {"name": "Crave Films", "id": 16312}, {"name": "Roth Films", "id": 16314}], "release_date": "2014-03-28", "popularity": 1.56759886496682, "original_title": "Sabotage", "budget": 35000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "John 'Breacher' Wharton", "id": 1100, "credit_id": "52fe4b2e9251416c750faf03", "cast_id": 9, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Sam Worthington", "character": "James 'Monster' Murray", "id": 65731, "credit_id": "52fe4b2e9251416c750faf07", "cast_id": 10, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Mireille Enos", "character": "Lizzy Murray", "id": 175826, "credit_id": "52fe4b2e9251416c750faf0f", "cast_id": 12, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 3}, {"name": "Joe Manganiello", "character": "Joe 'Grinder' Phillips", "id": 20580, "credit_id": "52fe4b2e9251416c750faf13", "cast_id": 13, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 4}, {"name": "Harold Perrineau", "character": "Jackson", "id": 6195, "credit_id": "52fe4b2e9251416c750faf17", "cast_id": 14, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 5}, {"name": "Josh Holloway", "character": "Eddie 'Neck' Jordan", "id": 142636, "credit_id": "52fe4b2e9251416c750faf1b", "cast_id": 15, "profile_path": "/4vMj8zIMSZoxxXefanh5SuEDDJ6.jpg", "order": 6}, {"name": "Terrence Howard", "character": "Julius 'Sugar' Edmonds", "id": 18288, "credit_id": "52fe4b2e9251416c750faf1f", "cast_id": 16, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 7}, {"name": "Olivia Williams", "character": "Investigator Caroline Brentwood", "id": 11616, "credit_id": "52fe4b2e9251416c750faf23", "cast_id": 17, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 8}, {"name": "Max Martini", "character": "Tom 'Pyro' Roberts", "id": 94864, "credit_id": "52fe4b2e9251416c750faf27", "cast_id": 18, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 9}, {"name": "Kevin Vance", "character": "Bryce 'Tripod' McNeely", "id": 1345133, "credit_id": "53ceca2bc3a36877610054b5", "cast_id": 19, "profile_path": "/tS7SsfqYiODwobJItpzrykMKDiD.jpg", "order": 10}, {"name": "Mark Schlegel", "character": "'Smoke' Jennings", "id": 1345134, "credit_id": "53ceca4fc3a36877640054d8", "cast_id": 20, "profile_path": "/5Jmf3MSGKYXjJmSwL2vP7DUIyyq.jpg", "order": 11}, {"name": "Maurice Compte", "character": "Sapo", "id": 48530, "credit_id": "53ceca6bc3a36877610054ba", "cast_id": 21, "profile_path": "/gt8vrkSOmv4dt5AfIcVsevNQ05b.jpg", "order": 12}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe4b2e9251416c750faed5", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 5.6, "runtime": 110}, "242643": {"poster_path": "/jY5DEgyMmHUh4AbWTu6pOb5g7vk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Based on the hit video game series, Batman must find a bomb planted by the Joker while dealing with a mysterious team of villains called, The Suicide Squad.", "video": false, "id": 242643, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Batman: Assault on Arkham", "tagline": "Get ready to root for the bad guys.", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3139086", "adult": false, "backdrop_path": "/jRGKbaBcsb7mfqLeLpBxPe1Mufc.jpg", "production_companies": [{"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Premiere", "id": 4811}], "release_date": "2014-08-12", "popularity": 0.297771112159312, "original_title": "Batman: Assault on Arkham", "budget": 0, "cast": [{"name": "Kevin Conroy", "character": "Batman / Bruce Wayne", "id": 34947, "credit_id": "535192d20e0a26561400197f", "cast_id": 0, "profile_path": "/oWfPFRH65zNdeV46zSTXD0jVr8q.jpg", "order": 0}, {"name": "Neal McDonough", "character": "Floyd Lawton / Deadshot", "id": 2203, "credit_id": "537d3679c3a368059e000041", "cast_id": 11, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 1}, {"name": "Matthew Gray Gubler", "character": "Riddler", "id": 5661, "credit_id": "53e182c3c3a3686d18000200", "cast_id": 23, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 2}, {"name": "Hynden Walch", "character": "Harley Quinn", "id": 113919, "credit_id": "53e181ddc3a3686d260001f8", "cast_id": 22, "profile_path": "/gCHMyVwt2vlQt3AYPfoknVmklXI.jpg", "order": 3}, {"name": "Troy Baker", "character": "The Joker", "id": 963818, "credit_id": "5351937a0e0a26560e0019ad", "cast_id": 1, "profile_path": "/akfCaU7Gsxft4gd4B7zjtqshjux.jpg", "order": 4}, {"name": "Chris Cox", "character": "Commissioner Gordon", "id": 136930, "credit_id": "53e182f80e0a260af000034d", "cast_id": 24, "profile_path": null, "order": 5}, {"name": "John DiMaggio", "character": "King Shark", "id": 294916, "credit_id": "53e183530e0a260af9000319", "cast_id": 28, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 6}, {"name": "Greg Ellis", "character": "Captain Boomerang", "id": 4031, "credit_id": "53e183e30e0a260af600032b", "cast_id": 29, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 7}, {"name": "Giancarlo Esposito", "character": "Black Spider", "id": 4808, "credit_id": "537d36efc3a36805a1000046", "cast_id": 15, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 8}, {"name": "Jennifer Hale", "character": "Killer Frost", "id": 81667, "credit_id": "53e184120e0a260af6000335", "cast_id": 30, "profile_path": "/vwantt41egRhjHCpI0ypyboXYga.jpg", "order": 9}, {"name": "Martin Jarvis", "character": "Alfred Pennyworth", "id": 126363, "credit_id": "535194610e0a265611001a61", "cast_id": 6, "profile_path": "/215m6UHCFodTbvhnNi2cGWcUZWT.jpg", "order": 10}, {"name": "Nolan North", "character": "Penguin / Oswald Cobblepot", "id": 19508, "credit_id": "535193f50e0a2656030019ec", "cast_id": 4, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 11}, {"name": "C. C. H. Pounder", "character": "Amanda Waller", "id": 30485, "credit_id": "537d3693c3a368059b000032", "cast_id": 12, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 12}], "directors": [{"name": "Ethan Spaulding", "department": "Directing", "job": "Director", "credit_id": "537d37bb0e0a2624c3000064", "profile_path": null, "id": 204553}, {"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "535195230e0a2656030019ff", "profile_path": null, "id": 105643}], "vote_average": 7.6, "runtime": 75}, "152532": {"poster_path": "/tc8QxMmMsKwGJ7Jw4c8UOZbxFTU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.", "video": false, "id": 152532, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Dallas Buyers Club", "tagline": "Sometimes it takes a hustler to change the world", "vote_count": 724, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0790636", "adult": false, "backdrop_path": "/3hGRV0xR11aUxCGAJ52F8MTxrno.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Universal Studios", "id": 13}, {"name": "Voltage Pictures", "id": 10255}, {"name": "Truth Entertainment", "id": 19631}], "release_date": "2013-11-22", "popularity": 2.01062369581888, "original_title": "Dallas Buyers Club", "budget": 5500000, "cast": [{"name": "Matthew McConaughey", "character": "Ron Woodroof", "id": 10297, "credit_id": "52fe4b239251416c910d1107", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Dr. Eve Saks", "id": 9278, "credit_id": "52fe4b239251416c910d110b", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Jared Leto", "character": "Rayon", "id": 7499, "credit_id": "52fe4b239251416c910d110f", "cast_id": 3, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 2}, {"name": "Denis O'Hare", "character": "Dr. Sevard", "id": 81681, "credit_id": "52fe4b239251416c910d1141", "cast_id": 15, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 3}, {"name": "Steve Zahn", "character": "Tucker", "id": 18324, "credit_id": "52fe4b239251416c910d112d", "cast_id": 9, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 4}, {"name": "Michael O'Neill", "character": "Richard Barkley", "id": 21710, "credit_id": "52fe4b239251416c910d113d", "cast_id": 14, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 5}, {"name": "Dallas Roberts", "character": "David Wayne", "id": 424, "credit_id": "52fe4b239251416c910d111f", "cast_id": 6, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 6}, {"name": "Griffin Dunne", "character": "Dr. Vass", "id": 2171, "credit_id": "52fe4b239251416c910d1135", "cast_id": 12, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 7}, {"name": "Kevin Rankin", "character": "T.J.", "id": 114000, "credit_id": "52fe4b239251416c910d1131", "cast_id": 11, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 8}, {"name": "Donna DuPlantier", "character": "Nurse Frazin", "id": 230995, "credit_id": "531bbf2b92514177b100488c", "cast_id": 35, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 9}, {"name": "Deneen Tyler", "character": "Denise", "id": 29933, "credit_id": "531bbfcf92514177bc00482b", "cast_id": 36, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 10}, {"name": "J.D. Evermore", "character": "Clint", "id": 129868, "credit_id": "531bc0c392514177ab004918", "cast_id": 37, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 11}, {"name": "Ian Casselberry", "character": "Hispanic Orderly", "id": 1299674, "credit_id": "531bc24e92514177b1004904", "cast_id": 38, "profile_path": "/J9CYhZq7IZXRxLKCGjJZVNeDav.jpg", "order": 12}, {"name": "Jane McNeill", "character": "Francine Suskind", "id": 1078610, "credit_id": "52fe4b239251416c910d1123", "cast_id": 7, "profile_path": "/r8ss9Gv9zABNrc3pz4k06THuhw6.jpg", "order": 13}, {"name": "Juliet Reeves", "character": "Rodeo Girl", "id": 103290, "credit_id": "52fe4b239251416c910d1139", "cast_id": 13, "profile_path": "/sS0lpkoMbi3y3Min8prhXiAzwe5.jpg", "order": 14}], "directors": [{"name": "Jean-Marc Vall\u00e9e", "department": "Directing", "job": "Director", "credit_id": "52fe4b239251416c910d1115", "profile_path": "/zFb4XBBx3TYSeeTXYv6GkAKYYcK.jpg", "id": 69371}], "vote_average": 7.9, "runtime": 117}, "230222": {"poster_path": "/p0Ut3h7Sx6GlsVltt2ZAp8XDFmi.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "One of the most classic and revered stories of all time, Edgar Rice Burroughs' Tarzan returns to the big screen for a new generation. Tarzan and Jane face a mercenary army dispatched by the evil CEO of Greystoke Energies, a man who took over the company from Tarzan's parents, after they died in a plane crash in the African jungle.", "video": false, "id": 230222, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Tarzan", "tagline": "The legend starts here", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1705952", "adult": false, "backdrop_path": "/mWpUKAaJHjckIPFdEFEpeMTjjki.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Ambient Entertainment GmbH", "id": 8104}], "release_date": "2013-10-17", "popularity": 1.6289093344975, "original_title": "Tarzan", "budget": 0, "cast": [{"name": "Kellan Lutz", "character": "Tarzan", "id": 34502, "credit_id": "52fe4dd2c3a36847f826f957", "cast_id": 1, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 0}, {"name": "Robert Capron", "character": "Derek", "id": 111922, "credit_id": "52fe4dd2c3a36847f826f95b", "cast_id": 2, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 1}, {"name": "Jaime Ray Newman", "character": "Alice", "id": 109151, "credit_id": "52fe4dd2c3a36847f826f95f", "cast_id": 3, "profile_path": "/4jh45lXQPqvuiYy1Fzbk5fJGVr.jpg", "order": 2}, {"name": "Spencer Locke", "character": "Jane Porter", "id": 57192, "credit_id": "52fe4dd2c3a36847f826f963", "cast_id": 4, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 3}, {"name": "Brian Bloom", "character": "Miller", "id": 4753, "credit_id": "52fe4dd2c3a36847f826f967", "cast_id": 5, "profile_path": "/5Pc6tCfeVZFkBMQACRA318jqwph.jpg", "order": 4}, {"name": "Mark Deklin", "character": "John Greystoke", "id": 120894, "credit_id": "52fe4dd2c3a36847f826f96b", "cast_id": 6, "profile_path": "/qmbBjQLPWFu5EnMUPfeu4ADAwep.jpg", "order": 5}, {"name": "Brian Huskey", "character": "Smith", "id": 54728, "credit_id": "52fe4dd2c3a36847f826f98d", "cast_id": 12, "profile_path": "/krewoXz2qgDdIAB2PTGRuilX0K5.jpg", "order": 6}, {"name": "Edd Osmond", "character": "Young Taug", "id": 1278780, "credit_id": "52fe4dd2c3a36847f826f991", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Rebecca Reaney", "character": "Jane", "id": 1278781, "credit_id": "52fe4dd2c3a36847f826f995", "cast_id": 14, "profile_path": "/dWXj32ikdVdvm1fk3VniuwYwJ7m.jpg", "order": 8}], "directors": [{"name": "Reinhard Klooss", "department": "Directing", "job": "Director", "credit_id": "52fe4dd2c3a36847f826f971", "profile_path": null, "id": 57035}], "vote_average": 6.0, "runtime": 94}, "13279": {"poster_path": "/iOnQK5te4gEhHpyZ5KpGCtbNn1B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27640028, "overview": "An LAPD officer begins to terrorize his next-door neighbors after learning they are an interracial married couple.", "video": false, "id": 13279, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Lakeview Terrace", "tagline": "What Could Be Safer Than Living Next to a Cop?", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0947802", "adult": false, "backdrop_path": "/lxgA35XFImUtYMlU5GQTY2OW893.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Overbrook Entertainment", "id": 12485}], "release_date": "2008-09-19", "popularity": 0.591684825329947, "original_title": "Lakeview Terrace", "budget": 20000000, "cast": [{"name": "Samuel L. Jackson", "character": "Abel Turner", "id": 2231, "credit_id": "52fe45559251416c75052f09", "cast_id": 26, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Patrick Wilson", "character": "Chris Mattson", "id": 17178, "credit_id": "52fe45559251416c75052e95", "cast_id": 2, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 1}, {"name": "Kerry Washington", "character": "Lisa Mattson", "id": 11703, "credit_id": "52fe45559251416c75052e99", "cast_id": 3, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 2}, {"name": "Ron Glass", "character": "Harold Perreau", "id": 74570, "credit_id": "52fe45559251416c75052e9d", "cast_id": 4, "profile_path": "/4OBVfJUbWo6vhnKkwGu6Qq3r3sf.jpg", "order": 3}, {"name": "Justin Chambers", "character": "Donnie Eaton", "id": 20746, "credit_id": "52fe45559251416c75052ea1", "cast_id": 5, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 4}, {"name": "Jay Hernandez", "character": "Javier Villareal", "id": 19487, "credit_id": "52fe45559251416c75052ea5", "cast_id": 6, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 5}, {"name": "Regine Nehy", "character": "Celia Turner", "id": 74571, "credit_id": "52fe45559251416c75052ea9", "cast_id": 7, "profile_path": "/kjYJoAKzVF4bCOCXbOuLIVaO3J1.jpg", "order": 6}, {"name": "Jaishon Fisher", "character": "Marcus Turner", "id": 74572, "credit_id": "52fe45559251416c75052ead", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Robert Pine", "character": "Captain Wentworth", "id": 74573, "credit_id": "52fe45559251416c75052eb1", "cast_id": 9, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 8}, {"name": "Keith Loneker", "character": "Clarence Darlington", "id": 54714, "credit_id": "52fe45559251416c75052eb5", "cast_id": 10, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 9}, {"name": "Caleeb Pinkett", "character": "Damon Richards", "id": 74574, "credit_id": "52fe45559251416c75052eb9", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Robert Dahey", "character": "Jung Lee Pak", "id": 74575, "credit_id": "52fe45559251416c75052ebd", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Ho-Jung", "character": "Sang Hee Pak", "id": 74576, "credit_id": "52fe45559251416c75052ec1", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Bitsie Tulloch", "character": "Nadine", "id": 74577, "credit_id": "52fe45559251416c75052ec5", "cast_id": 14, "profile_path": "/ckC19oA4a7ixmvruDtQsu4ZB3iA.jpg", "order": 13}, {"name": "Michael Sean Tighe", "character": "Manager", "id": 74578, "credit_id": "52fe45559251416c75052ec9", "cast_id": 15, "profile_path": "/pCnyL2emYr3eo1kYw8B6diH8nkk.jpg", "order": 14}, {"name": "Vanessa Bell Calloway", "character": "Aunt Dorrie", "id": 100653, "credit_id": "52fe45559251416c75052f0d", "cast_id": 27, "profile_path": "/gEn2Iy2aCzNb3E0iZzNyAs2Buf3.jpg", "order": 15}], "directors": [{"name": "Neil LaBute", "department": "Directing", "job": "Director", "credit_id": "52fe45559251416c75052ecf", "profile_path": "/snHfcueBlYFinCdUoVmK9CHdZX0.jpg", "id": 58689}], "vote_average": 5.7, "runtime": 110}, "242512": {"poster_path": "/i52JCZSHDvkHtjQwlPqMAsjULVH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of friends must confront their most terrifying fears when they awaken the dark powers of an ancient spirit board.", "video": false, "id": 242512, "genres": [{"id": 27, "name": "Horror"}], "title": "Ouija", "tagline": "Keep telling yourself it's just a game", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1204977", "adult": false, "backdrop_path": "/pJXFPBOild76vDAiapX5BOTtj2B.jpg", "production_companies": [{"name": "5150 Action", "id": 47354}, {"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Hasbro", "id": 2598}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-10-24", "popularity": 2.583855813265, "original_title": "Ouija", "budget": 5000000, "cast": [{"name": "Olivia Cooke", "character": "Elaine Morris", "id": 1173984, "credit_id": "52fe4ecfc3a36847f82a948b", "cast_id": 2, "profile_path": "/5C8XBogUpSPA2fk9YeiCDJzroLk.jpg", "order": 0}, {"name": "Ana Coto", "character": "Sarah Morris", "id": 973091, "credit_id": "52fe4ecfc3a36847f82a949f", "cast_id": 7, "profile_path": "/lgJJdDd7MiMgXZVU7sYVQaRd1me.jpg", "order": 1}, {"name": "Daren Kagasoff", "character": "Trevor", "id": 221115, "credit_id": "52fe4ecfc3a36847f82a948f", "cast_id": 3, "profile_path": "/zlfhCTAfBiuf0LFdqkhxRq2ZdQy.jpg", "order": 2}, {"name": "Douglas Smith", "character": "Pete", "id": 60077, "credit_id": "52fe4ecfc3a36847f82a9487", "cast_id": 1, "profile_path": "/6iIV8IebkXio2mgFB3Xw7XPntXX.jpg", "order": 3}, {"name": "Vivis Colombetti", "character": "Nona", "id": 1098706, "credit_id": "52fe4ecfc3a36847f82a9493", "cast_id": 4, "profile_path": "/tBlGmZHpSkZVzqbyvesan4XVhMc.jpg", "order": 4}, {"name": "Bianca A. Santos", "character": "Isabelle", "id": 1277583, "credit_id": "52fe4ecfc3a36847f82a9497", "cast_id": 5, "profile_path": "/ebr4gDQz9VchnwVjHYomEtEm0Ox.jpg", "order": 5}, {"name": "Shelley Hennig", "character": "Debbie", "id": 444211, "credit_id": "53facfaec3a3687352003ece", "cast_id": 11, "profile_path": "/DQPalCNHzvNtFwx37j5Vqkh4ww.jpg", "order": 7}, {"name": "Lin Shaye", "character": "Paulina Zander", "id": 7401, "credit_id": "54fd86ce9251416c32000e1d", "cast_id": 56, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 8}, {"name": "Robyn Lively", "character": "Mrs. Galardi", "id": 15905, "credit_id": "54fd871e9251412204004a10", "cast_id": 57, "profile_path": "/gxXVCbEXPG0Emzx28rVk5eBpAYn.jpg", "order": 9}], "directors": [{"name": "Stiles White", "department": "Directing", "job": "Director", "credit_id": "52fe4ecfc3a36847f82a94b1", "profile_path": null, "id": 84962}], "vote_average": 5.2, "runtime": 89}, "37861": {"poster_path": "/kUdYgnKkCNJ4aak6Ivy6IdlIElL.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "1000 AD, for years, One Eye, a mute warrior of supernatural strength, has been held prisoner by the Norse chieftain Barde. Aided by Are, a boy slave, One Eye slays his captor and together he and Are escape, beginning a journey into the heart of darkness. On their flight, One Eye and Are board a Viking vessel, but the ship is soon engulfed by an endless fog that clears only as the crew sights an unknown land. As the new world reveals its secrets and the Vikings confront their terrible and bloody fate, One Eye discovers his true self.", "video": false, "id": 37861, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Valhalla Rising", "tagline": "", "vote_count": 62, "homepage": "http://www.valhallarising.dk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0862467", "adult": false, "backdrop_path": "/9kADXPCK9BIh2ujdykyEVvtNkrL.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "La Belle Allee Productions", "id": 12412}, {"name": "NWR Film Productions", "id": 12413}, {"name": "Nimbus Film Productions", "id": 11672}, {"name": "One Eye Production", "id": 12414}, {"name": "Savalas Audio Post-Production", "id": 12415}], "release_date": "2009-09-04", "popularity": 0.854174597178502, "original_title": "Valhalla Rising", "budget": 0, "cast": [{"name": "Mads Mikkelsen", "character": "One-Eye", "id": 1019, "credit_id": "52fe46789251416c91055785", "cast_id": 1, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "Gary Lewis", "character": "Kare", "id": 480, "credit_id": "52fe46789251416c91055789", "cast_id": 2, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 1}, {"name": "Jamie Sives", "character": "Gorm", "id": 1833, "credit_id": "52fe46789251416c9105578d", "cast_id": 3, "profile_path": "/92BcXrr2W7gZri6xVlLhpLLaPsf.jpg", "order": 2}, {"name": "Ewan Stewart", "character": "Eirik", "id": 3071, "credit_id": "52fe46789251416c91055791", "cast_id": 4, "profile_path": "/lMJIOEOxNUa0RZo3Ib1UC50K2OO.jpg", "order": 3}, {"name": "Alexander Morton", "character": "Barde", "id": 32808, "credit_id": "52fe46789251416c91055795", "cast_id": 5, "profile_path": "/pg03CMhM5rc2louUy8sVFyztuqh.jpg", "order": 4}, {"name": "Callum Mitchell", "character": "Pagan Viking Guard", "id": 119093, "credit_id": "52fe46789251416c91055799", "cast_id": 6, "profile_path": "/gj4HxyQeWxFbpAmS8CwMmNkK75o.jpg", "order": 5}, {"name": "Andrew Flanagan", "character": "Duggal", "id": 119094, "credit_id": "52fe46789251416c9105579d", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Douglas Russell", "character": "Olaf", "id": 119095, "credit_id": "52fe46789251416c910557a1", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Maarten Stevenson", "character": "Are / The Boy", "id": 119097, "credit_id": "52fe46789251416c910557a5", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Gordon Brown", "character": "Hagen", "id": 1840, "credit_id": "52fe46789251416c910557a9", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Gary McCormack", "character": "Hauk", "id": 16632, "credit_id": "52fe46789251416c910557ad", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Robert Harrison", "character": "Roger", "id": 119098, "credit_id": "52fe46789251416c910557b1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Mathew Zajac", "character": "Malkolm", "id": 63137, "credit_id": "52fe46789251416c910557b5", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Stewart Porter", "character": "Kenneth", "id": 119099, "credit_id": "52fe46789251416c910557b9", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "James Ramsey", "character": "Gudmund", "id": 119100, "credit_id": "52fe46789251416c910557bd", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Rony Bridges", "character": "Magnus", "id": 119101, "credit_id": "52fe46789251416c910557c1", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "P.B. McBeath", "character": "Man with pike", "id": 119102, "credit_id": "52fe46789251416c910557c5", "cast_id": 17, "profile_path": null, "order": 16}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe46789251416c91055831", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 5.5, "runtime": 93}, "9042": {"poster_path": "/uHzx3GvwFzGpNS6Z0gP4ve5TvY8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15007991, "overview": "A group of biologists discovers a huge network of unexplored caves in Romania. The biologists believe they have found an undisturbed eco-system that has produced a new species. They hire the best American team of underwater cave explorers in the world. The team is so excited about the new cave that they start the dive immediately along with the biologists. While exploring deeper in the underwater caves, a cave-in blocks their exit, so they must find a new way out. They soon discover a larger carnivorous creature has added them to its food chain.", "video": false, "id": 9042, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Cave", "tagline": "There are places man was never meant to go.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402901", "adult": false, "backdrop_path": "/tVhb5riMg1oqIkRhOqMjLAHqy2j.jpg", "production_companies": [{"name": "City Productions", "id": 26033}, {"name": "Cineblue Internationale Filmproduktionsgesellschaft", "id": 26032}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Screen Gems", "id": 3287}, {"name": "Cinerenta Medienbeteiligungs KG", "id": 995}], "release_date": "2005-08-25", "popularity": 0.717666322167118, "original_title": "The Cave", "budget": 30000000, "cast": [{"name": "Cole Hauser", "character": "Jack McAllister", "id": 6614, "credit_id": "52fe44d5c3a36847f80acbff", "cast_id": 1, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 0}, {"name": "Eddie Cibrian", "character": "Tyler McAllister", "id": 55541, "credit_id": "52fe44d5c3a36847f80acc03", "cast_id": 2, "profile_path": "/wFlcyM88N0ECJpo8QsUg1PNaf1q.jpg", "order": 1}, {"name": "Morris Chestnut", "character": "Top Buchanan", "id": 9779, "credit_id": "52fe44d5c3a36847f80acc07", "cast_id": 3, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 2}, {"name": "Lena Headey", "character": "Dr. Kathryn Jennings", "id": 17286, "credit_id": "52fe44d5c3a36847f80acc0b", "cast_id": 4, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 3}, {"name": "Piper Perabo", "character": "Charlie", "id": 15555, "credit_id": "52fe44d5c3a36847f80acc0f", "cast_id": 5, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 4}, {"name": "Rick Ravanello", "character": "Briggs", "id": 65730, "credit_id": "53ac3631c3a368634a000031", "cast_id": 29, "profile_path": "/tQqdbPyol2awlcZhlouaYqtO6YB.jpg", "order": 5}, {"name": "Daniel Dae Kim", "character": "Alex Kim", "id": 18307, "credit_id": "53ac3686c3a368633900002a", "cast_id": 30, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 6}, {"name": "Kieran Darcy-Smith", "character": "Strode", "id": 109439, "credit_id": "53ac36a6c3a3686357000038", "cast_id": 31, "profile_path": "/2Uv4SXTVHvhtcnZrwPTYaHqbvm9.jpg", "order": 7}, {"name": "Marcel Iures", "character": "Dr. Nicolai", "id": 15320, "credit_id": "53ac36c7c3a368634a000039", "cast_id": 32, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 8}, {"name": "Vlad Radescu", "character": "Dr. Bacovia", "id": 135148, "credit_id": "53ac3701c3a368634f000036", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Simon Kunz", "character": "Mike - Caver", "id": 10701, "credit_id": "53ac3731c3a368634f00003a", "cast_id": 34, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 10}, {"name": "David Kennedy", "character": "Ian - Caver", "id": 62498, "credit_id": "53ac376bc3a368634200003d", "cast_id": 35, "profile_path": "/refiQ4V3hLc9xzBwCbemVrXXpNB.jpg", "order": 11}, {"name": "Alin Panc", "character": "Razvan - Caver", "id": 1178619, "credit_id": "53ac3792c3a368633e000037", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Zoltan Butuc", "character": "Corvin - Caver", "id": 54627, "credit_id": "53ac37b9c3a368635700004f", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Brian Steele", "character": "Creature Performer", "id": 12359, "credit_id": "53ac37e3c3a3686342000046", "cast_id": 38, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 14}], "directors": [{"name": "Bruce Hunt", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80acc15", "profile_path": "/ukBXiD57R2e8s4tjVUBPzgeANqF.jpg", "id": 44179}], "vote_average": 5.5, "runtime": 97}, "185341": {"poster_path": "/7eIr8YoyCO6pKfCEZUJIUabtyaL.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "\u00c1ngela Vidal the young television reporter who entered the building with the fireman, manages to make it out alive. But what the soldiers don?t know is that she carries the seed of the strange infection. She is to be taken to a provisional quarantine facility, a high-security installation where she will have to stay in isolation for several days. An old oil tanker, miles off shore and surrounded by water on all sides, has been especially equipped for the quarantine.", "video": false, "id": 185341, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "[REC]\u2074 Apocalypse", "tagline": "It's time to leave.", "vote_count": 58, "homepage": "http://rec4apocalipsis.com/", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1649443", "adult": false, "backdrop_path": "/7tNjWa7pgEqrOf9q9GayRK9ylCw.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2014-10-31", "popularity": 0.949310848031982, "original_title": "[REC] 4: Apocalipsis", "budget": 0, "cast": [{"name": "Manuela Velasco", "character": "\u00c1ngela Vidal", "id": 34793, "credit_id": "52fe4cde9251416c7512820b", "cast_id": 1, "profile_path": "/kQQrHFhTCazfWScBwTaSTtRFWUU.jpg", "order": 0}, {"name": "H\u00e9ctor Colom\u00e9", "character": "Dr. Ricarte", "id": 34020, "credit_id": "53c66caa0e0a267fea002159", "cast_id": 3, "profile_path": "/lyQxNL3XlEcgnbDufUuj76vy2pH.jpg", "order": 1}, {"name": "Mar\u00eda Alfonsa Rosso", "character": "Anciana", "id": 954664, "credit_id": "53c66cb20e0a267ff100206c", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Paco Manzanedo", "character": "Guzm\u00e1n", "id": 1180136, "credit_id": "53c66cd10e0a267fea00215b", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Mariano Venancio", "character": "Capit\u00e1n Ortega", "id": 56468, "credit_id": "53c66cf40e0a267ff400220d", "cast_id": 6, "profile_path": null, "order": 4}], "directors": [{"name": "Jaume Balaguer\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe4cde9251416c75128211", "profile_path": "/zH7TzIJgzrYKbUecPLoTEPP7qxX.jpg", "id": 54525}], "vote_average": 5.4, "runtime": 95}, "13310": {"poster_path": "/9FGpMfbpKjN7i2jF2gQpvQvK9VB.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 10785801, "overview": "Set in 1982 in the suburb of Blackeberg, Stockholm, twelve-year-old Oskar is a lonely outsider, bullied at school by his classmates; at home, Oskar dreams of revenge against a trio of bullies. He befriends his twelve-year-old, next-door neighbor Eli, who only appears at night in the snow-covered playground outside their building.", "video": false, "id": 13310, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Let the Right One In", "tagline": "Eli is 12 years old. She\u2019s been 12 for over 200 years and she just moved in next door.", "vote_count": 263, "homepage": "http://www.lettherightoneinmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1139797", "adult": false, "backdrop_path": "/wMRVKIIIn5035KIY0J793aHWVOj.jpg", "production_companies": [{"name": "EFTI", "id": 3576}], "release_date": "2008-01-26", "popularity": 0.658352440995825, "original_title": "L\u00e5t den r\u00e4tte komma in", "budget": 4000000, "cast": [{"name": "K\u00e5re Hedebrant", "character": "Oskar", "id": 74382, "credit_id": "52fe45599251416c750537d1", "cast_id": 1, "profile_path": "/cB5ZsSyHXBNNwYxRZB1yUg5HZnC.jpg", "order": 0}, {"name": "Lina Leandersson", "character": "Eli", "id": 74383, "credit_id": "52fe45599251416c750537d5", "cast_id": 2, "profile_path": "/lM9EvWASowkOnYRAzrY8vo2mchN.jpg", "order": 1}, {"name": "Per Ragnar", "character": "H\u00e5kan", "id": 74384, "credit_id": "52fe45599251416c750537d9", "cast_id": 3, "profile_path": "/7uWLA2369fpumOQgoErn55tZkQW.jpg", "order": 2}, {"name": "Henrik Dahl", "character": "Erik", "id": 74385, "credit_id": "52fe45599251416c750537dd", "cast_id": 4, "profile_path": "/keU0aMsnlp8JeLXTfjZDAvTSzlt.jpg", "order": 3}, {"name": "Karin Bergquist", "character": "Yvonne", "id": 74386, "credit_id": "52fe45599251416c750537e1", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Peter Carlberg", "character": "Lacke", "id": 74387, "credit_id": "52fe45599251416c750537e5", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Ika Nord", "character": "Virginia", "id": 74388, "credit_id": "52fe45599251416c750537e9", "cast_id": 7, "profile_path": "/dFncrgDmMbaQHiRQC9tkbPmuXTi.jpg", "order": 6}, {"name": "Mikael Rahm", "character": "Jocke", "id": 6301, "credit_id": "52fe45599251416c750537ed", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Karl-Robert Lindgren", "character": "G\u00f6sta", "id": 74389, "credit_id": "52fe45599251416c750537f1", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Anders T. Peedu", "character": "Morgan", "id": 74390, "credit_id": "52fe45599251416c750537f5", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Pale Olofsson", "character": "Larry", "id": 74391, "credit_id": "52fe45599251416c750537f9", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Cayetano Ruiz", "character": "Magister Avila", "id": 74392, "credit_id": "52fe45599251416c750537fd", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Patrik Rydmark", "character": "Conny", "id": 74393, "credit_id": "52fe45599251416c75053801", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Johan S\u00f6mnes", "character": "Andreas", "id": 74394, "credit_id": "52fe45599251416c75053805", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Mikael Erhardsson", "character": "Martin", "id": 74395, "credit_id": "52fe45599251416c75053809", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Tomas Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe45599251416c7505380f", "profile_path": "/sRl6QzCtO7SlLspfFSvnv8u7ITi.jpg", "id": 74396}], "vote_average": 7.4, "runtime": 115}, "5123": {"poster_path": "/j8kUdhnIlYsgvL0u4EUKEzWUrbo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66122026, "overview": "A drama with fairy tale elements, where an orphaned musical prodigy uses his gift as a clue to finding his birth parents.", "video": false, "id": 5123, "genres": [{"id": 18, "name": "Drama"}], "title": "August Rush", "tagline": "An incredible journey moving at the speed of sound", "vote_count": 177, "homepage": "http://augustrushmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0426931", "adult": false, "backdrop_path": "/eQBV2zuF7Vr8NShbDPcEACXun9B.jpg", "production_companies": [{"name": "CJ Entertainment", "id": 7036}, {"name": "Warner Bros.", "id": 6194}, {"name": "Southpaw Entertainment", "id": 30131}], "release_date": "2007-11-21", "popularity": 1.02599132219716, "original_title": "August Rush", "budget": 25000000, "cast": [{"name": "Freddie Highmore", "character": "August Rush", "id": 1281, "credit_id": "52fe43f5c3a36847f807a5e3", "cast_id": 12, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Keri Russell", "character": "Lyla Novacek", "id": 41292, "credit_id": "52fe43f5c3a36847f807a5e7", "cast_id": 13, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 1}, {"name": "Jonathan Rhys Meyers", "character": "Louis Connelly", "id": 1244, "credit_id": "52fe43f5c3a36847f807a5eb", "cast_id": 14, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 2}, {"name": "Terrence Howard", "character": "Richard Jeffries", "id": 18288, "credit_id": "52fe43f5c3a36847f807a5ef", "cast_id": 15, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 3}, {"name": "William Sadler", "character": "Thomas Novacek", "id": 6573, "credit_id": "52fe43f5c3a36847f807a5f3", "cast_id": 17, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 4}, {"name": "Marian Seldes", "character": "Dekan", "id": 41293, "credit_id": "52fe43f5c3a36847f807a5f7", "cast_id": 18, "profile_path": "/oxyOi7kJYCmdlNK89vawC8APpse.jpg", "order": 5}, {"name": "Leon G. Thomas III", "character": "Arthur", "id": 41295, "credit_id": "52fe43f5c3a36847f807a5fb", "cast_id": 20, "profile_path": "/4fXgsZvoNIx0CsAREcLPHnuTUXx.jpg", "order": 6}, {"name": "Aaron Staton", "character": "Nick", "id": 41296, "credit_id": "52fe43f5c3a36847f807a5ff", "cast_id": 21, "profile_path": "/1spvrOhAaAa4cCYfzEyY2AXsgkl.jpg", "order": 7}, {"name": "Alex O'Loughlin", "character": "Marshall", "id": 41297, "credit_id": "52fe43f5c3a36847f807a603", "cast_id": 22, "profile_path": "/1ala6CFOow9svfbBsxyjh0jYXSl.jpg", "order": 8}, {"name": "Jamia Simone Nash", "character": "Hope", "id": 41298, "credit_id": "52fe43f5c3a36847f807a607", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Mykelti Williamson", "character": "Reverend James", "id": 34, "credit_id": "52fe43f5c3a36847f807a623", "cast_id": 28, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 10}, {"name": "Robin Williams", "character": "Maxwell Wizard Wallace", "id": 2157, "credit_id": "52fe43f5c3a36847f807a627", "cast_id": 29, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 11}, {"name": "Becki Newton", "character": "Jennifer", "id": 1222175, "credit_id": "52fe43f5c3a36847f807a62b", "cast_id": 30, "profile_path": "/ckMixG0TPDuRr4FnHhMFYXQXEk7.jpg", "order": 12}], "directors": [{"name": "Kirsten Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe43f4c3a36847f807a5a3", "profile_path": null, "id": 41285}], "vote_average": 6.7, "runtime": 114}, "152584": {"poster_path": "/seKTZ08RfcUegsnqh6VmU2HeUHe.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 10165694, "overview": "Adele's life is changed when she meets Emma, a young woman with blue hair, who will allow her to discover desire, to assert herself as a woman and as an adult. In front of others, Adele grows, seeks herself, loses herself, finds herself.", "video": false, "id": 152584, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Blue Is the Warmest Color", "tagline": "", "vote_count": 208, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2278871", "adult": false, "backdrop_path": "/bUvPR1Nsm9419zO4aL90pUl4MNF.jpg", "production_companies": [{"name": "Centre du Cin\u00e9ma et de l'Audiovisuel de la F\u00e9d\u00e9ration Wallonie-Bruxelles", "id": 38037}, {"name": "Quat'sous Films", "id": 14700}, {"name": "Wild Bunch", "id": 856}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "Scope Pictures", "id": 11199}, {"name": "Vertigo Films", "id": 10393}, {"name": "Radio T\u00e9l\u00e9vision Belge Francophone (RTBF)", "id": 7466}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France 2 (FR2)", "id": 20980}, {"name": "Eurimages", "id": 850}, {"name": "R\u00e9gion Nord-Pas-de-Calais", "id": 11434}, {"name": "Centre National de la Cin\u00e9matographie (CNC)", "id": 18367}, {"name": "Pictanovo Nord-Pas-de-Calais", "id": 38038}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 33960}], "release_date": "2013-10-09", "popularity": 0.484402604902127, "original_title": "La vie d'Ad\u00e8le - Chapitres 1 et 2", "budget": 4300000, "cast": [{"name": "L\u00e9a Seydoux", "character": "Emma", "id": 121529, "credit_id": "52fe4b249251416c910d13c1", "cast_id": 2, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 0}, {"name": "Ad\u00e8le Exarchopoulos", "character": "Ad\u00e8le", "id": 586757, "credit_id": "52fe4b249251416c910d13bd", "cast_id": 1, "profile_path": "/tPXch7Cb8NLg1pQ2n2Rd8CqaCFd.jpg", "order": 1}, {"name": "Catherine Sal\u00e9e", "character": "M\u00e8re Ad\u00e8le", "id": 1029292, "credit_id": "52fe4b249251416c910d13c5", "cast_id": 3, "profile_path": "/iyvJ4REbCPETwtxp1z3SsOe5ZD7.jpg", "order": 2}, {"name": "Jeremie Laheurte", "character": "Thomas", "id": 1150909, "credit_id": "52fe4b249251416c910d13cf", "cast_id": 5, "profile_path": "/x23A5cnWRz9LWSwFg3GghG10ne5.jpg", "order": 3}, {"name": "Aur\u00e9lien Recoing", "character": "P\u00e8re Ad\u00e8le", "id": 15482, "credit_id": "52fe4b249251416c910d13d3", "cast_id": 6, "profile_path": "/pJpoKybetgI8GIY3vPKbyIurtb.jpg", "order": 4}, {"name": "Salim Kechiouche", "character": "Samir", "id": 38865, "credit_id": "52fe4b249251416c910d13e7", "cast_id": 10, "profile_path": "/r6RiOVg1ycVWHQclgqGRHLm2voF.jpg", "order": 5}, {"name": "Sandor Funtek", "character": "Valentin", "id": 1150910, "credit_id": "52fe4b249251416c910d13d7", "cast_id": 7, "profile_path": "/64yeMqRhQxlqzoTUF0bhz7ZL34w.jpg", "order": 6}, {"name": "Mona Walravens", "character": "Lise", "id": 1199531, "credit_id": "52fe4b249251416c910d13eb", "cast_id": 11, "profile_path": "/k15xp3aUnrEiz81pU6nACnmBlJJ.jpg", "order": 7}, {"name": "Benjamin Siksou", "character": "Antoine", "id": 543836, "credit_id": "5461313dc3a3686f2e0006be", "cast_id": 21, "profile_path": "/2JdS2950LHzkdAFjcLXKUEYnHwo.jpg", "order": 8}, {"name": "Alma Jodorowsky", "character": "B\u00e9atrice", "id": 1096167, "credit_id": "54613157c3a3686f2b0007be", "cast_id": 22, "profile_path": "/y7owYNm6SpmhmA0QpRATEFfCfpl.jpg", "order": 9}, {"name": "Anne Loiret", "character": "M\u00e8re Emma", "id": 13191, "credit_id": "546131910e0a2672a30007c8", "cast_id": 23, "profile_path": "/gy2jC26ZrEZCQdKPuTPBYoLXIXA.jpg", "order": 10}, {"name": "Beno\u00eet Pilot", "character": "Beau P\u00e8re Emma", "id": 54336, "credit_id": "546131af0e0a2672bc0007b8", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Fanny Maurin", "character": "Am\u00e9lie", "id": 1384279, "credit_id": "546131c8c3a3686f2e0006cb", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Maelys Cabezon", "character": "Laetitia", "id": 1384280, "credit_id": "546131e00e0a2672a70007c4", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Samir Bella", "character": "Samir", "id": 1384281, "credit_id": "546131ffc3a3686f2b0007cf", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Abdellatif Kechiche", "department": "Directing", "job": "Director", "credit_id": "52fe4b249251416c910d13cb", "profile_path": "/etKLLjgubxAyUDxVFghEmgEvDDg.jpg", "id": 17458}], "vote_average": 7.6, "runtime": 179}, "70667": {"poster_path": "/7geys2i6OGoj72iZu6VxtUoJNcM.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NO", "name": "Norway"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "The true story about legendary explorer Thor Heyerdahl and his epic crossing of the Pacific on a balsa wood raft in 1947, in an effort to prove it was possible for South Americans to settle in Polynesia in pre-Columbian times.", "video": false, "id": 70667, "genres": [{"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}], "title": "Kon-Tiki", "tagline": "", "vote_count": 94, "homepage": "http://kontikifilmen.no/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1613750", "adult": false, "backdrop_path": "/un6jXy45MUQGnaDkOyNngKawlS3.jpg", "production_companies": [{"name": "Stunt Bros", "id": 50093}, {"name": "Recorded Picture Company (RPC)", "id": 11561}, {"name": "Roenbergfilm", "id": 14756}, {"name": "Nordisk Film Production", "id": 14757}, {"name": "DCM Productions", "id": 14758}, {"name": "Film i V\u00e4st", "id": 6417}], "release_date": "2012-08-24", "popularity": 0.872814760847274, "original_title": "Kon-Tiki", "budget": 16600000, "cast": [{"name": "P\u00e5l Sverre Valheim Hagen", "character": "Thor Heyerdahl", "id": 76556, "credit_id": "52fe4808c3a368484e0e61cf", "cast_id": 4, "profile_path": "/mPwnLY3xbGKYsVW46NQCptR15tj.jpg", "order": 0}, {"name": "Anders Baasmo Christiansen", "character": "Herman Watzinger", "id": 77976, "credit_id": "52fe4808c3a368484e0e61d3", "cast_id": 5, "profile_path": "/h2BupbXGMidawOMLwv2LkO0aWtl.jpg", "order": 1}, {"name": "Gustaf Skarsg\u00e5rd", "character": "Bengt Danielsson", "id": 63764, "credit_id": "52fe4808c3a368484e0e61d7", "cast_id": 6, "profile_path": "/fdlsUaoS99C3ZwRD6QVqRQZnRzR.jpg", "order": 2}, {"name": "Odd-Magnus Williamson", "character": "Erik Hesselberg", "id": 559194, "credit_id": "52fe4808c3a368484e0e61db", "cast_id": 7, "profile_path": "/5Ceb5e9v16aJtVqSQeYVArKxOyn.jpg", "order": 3}, {"name": "Tobias Santelmann", "character": "Knut Haugland", "id": 559195, "credit_id": "52fe4808c3a368484e0e61df", "cast_id": 8, "profile_path": "/sCtnswOiS203HyXTzlDesvEI4mj.jpg", "order": 4}, {"name": "Jakob Oftebro", "character": "Torstein Raaby", "id": 76555, "credit_id": "52fe4808c3a368484e0e61e3", "cast_id": 9, "profile_path": "/aO1s4TxwaR4xv4QngSI01qRAGFz.jpg", "order": 5}, {"name": "S\u00f8ren Pilmark", "character": "Freuchen", "id": 64122, "credit_id": "52fe4808c3a368484e0e61f3", "cast_id": 12, "profile_path": "/7yDdMrIwuCbyGVG7iCIFQPXmbif.jpg", "order": 6}], "directors": [{"name": "Joachim R\u00f8nning", "department": "Directing", "job": "Director", "credit_id": "52fe4808c3a368484e0e61bf", "profile_path": null, "id": 20307}, {"name": "Espen Sandberg", "department": "Directing", "job": "Director", "credit_id": "52fe4808c3a368484e0e61c5", "profile_path": null, "id": 20308}], "vote_average": 6.9, "runtime": 118}, "70670": {"poster_path": "/zMoDRDZoFO8WLBZFFpf6zICOnye.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "NO", "name": "Norway"}], "revenue": 0, "overview": "Everybody wants something. Nobody gets it for free. Not without stepping over corpses. The headhunt has begun.", "video": false, "id": 70670, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Headhunters", "tagline": "The hunt is on.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1614989", "adult": false, "backdrop_path": "/7xVfHX5GWDKpHdfd4IKEFW9vcg8.jpg", "production_companies": [{"name": "Friland Produksjon", "id": 8246}, {"name": "Yellow Bird Films", "id": 5746}, {"name": "Nordisk Film", "id": 235}, {"name": "ARD Degeto Film", "id": 10947}], "release_date": "2011-08-26", "popularity": 0.222923448887993, "original_title": "Hodejegerne", "budget": 0, "cast": [{"name": "Aksel Hennie", "character": "Roger Brown", "id": 76547, "credit_id": "52fe4808c3a368484e0e62c9", "cast_id": 7, "profile_path": "/fEmgeaFbhzOSBRqe2mO6sa1EaSp.jpg", "order": 0}, {"name": "Nikolaj Coster-Waldau", "character": "Clas Greve", "id": 12795, "credit_id": "52fe4808c3a368484e0e62cd", "cast_id": 8, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 1}, {"name": "Synn\u00f8ve Macody Lund", "character": "Diana Brown", "id": 559207, "credit_id": "52fe4808c3a368484e0e62d1", "cast_id": 9, "profile_path": "/4A9nL3SB333f5eBZtyGivoTm6tB.jpg", "order": 2}, {"name": "Julie \u00d8lgaard", "character": "Lotte", "id": 85910, "credit_id": "52fe4808c3a368484e0e62d5", "cast_id": 10, "profile_path": "/3DszR3dqpOeUry631IExQE6IGvN.jpg", "order": 3}, {"name": "Eivind Sander", "character": "Ove", "id": 77981, "credit_id": "52fe4808c3a368484e0e62d9", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Baard Owe", "character": "Sindre Aa", "id": 558254, "credit_id": "52fe4808c3a368484e0e62dd", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Kyrre Haugen Sydness", "character": "Jeremias Lander", "id": 76553, "credit_id": "52fe4808c3a368484e0e62e1", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Reidar S\u00f8rensen", "character": "Brede Sperre", "id": 63767, "credit_id": "52fe4808c3a368484e0e62e5", "cast_id": 14, "profile_path": "/nw0KQtziPAF5fa2vu8ShzHus8Yl.jpg", "order": 7}, {"name": "Nils J\u00f8rgen Kaalstad", "character": "Stig", "id": 589188, "credit_id": "52fe4808c3a368484e0e62e9", "cast_id": 15, "profile_path": "/aUuiEmo26U952fxA1TurXFXYfAF.jpg", "order": 8}, {"name": "Joachim Rafaelsen", "character": "Brugd", "id": 135121, "credit_id": "52fe4808c3a368484e0e62ed", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Mats Mogeland", "character": "Sunded", "id": 1093935, "credit_id": "52fe4808c3a368484e0e62f1", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Gunnar Skramstad Johnsen", "character": "Monsen 1", "id": 1093936, "credit_id": "52fe4808c3a368484e0e62f5", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Lars Skramstad Johnsen", "character": "Monsen 2", "id": 1093937, "credit_id": "52fe4808c3a368484e0e62f9", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Signe Tynning", "character": "Morning Show Hostess", "id": 1093940, "credit_id": "52fe4808c3a368484e0e62fd", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Nils Gunnar Lie", "character": "Morning Show Host", "id": 1093941, "credit_id": "52fe4808c3a368484e0e6301", "cast_id": 21, "profile_path": "/28WxZCSFQj4cjCCrDMWI1SQgx7q.jpg", "order": 14}, {"name": "Sondre Abel", "character": "Okonomisjef", "id": 1093942, "credit_id": "52fe4808c3a368484e0e6305", "cast_id": 22, "profile_path": null, "order": 15}], "directors": [{"name": "Morten Tyldum", "department": "Directing", "job": "Director", "credit_id": "52fe4808c3a368484e0e62a7", "profile_path": "/Jjdf8X3cdW5TQebY7xwREkHCCk.jpg", "id": 77965}], "vote_average": 7.1, "runtime": 100}, "5137": {"poster_path": "/7tO8s7n6Hga2y0NIUT0aoGQelPG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57958696, "overview": "When scientists the world over keep disappearing without a trace, it's up to intrepid reporter Polly Perkins and top aviator Sky Captain to uncover the truth in this futuristic, Art Deco-style actioner. The task involves putting their lives at risk as the pair travels to treacherous locales, hoping to throw a wrench in the plans of a villain who aims to wipe out the planet.", "video": false, "id": 5137, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Sky Captain and the World of Tomorrow", "tagline": "The Battle for Tomorrow is About to Begin...", "vote_count": 125, "homepage": "http://www.skycaptain.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bo", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0346156", "adult": false, "backdrop_path": "/fMakUN0qcOZzzSTkdh6xWGimJnN.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Natural Nylon Entertainment", "id": 804}, {"name": "Filmauro", "id": 4753}, {"name": "Blue Flower Productions", "id": 10671}, {"name": "Brooklyn Films II", "id": 10672}, {"name": "Riff Raff Film Productions", "id": 1668}], "release_date": "2004-09-14", "popularity": 0.729879683436075, "original_title": "Sky Captain and the World of Tomorrow", "budget": 70000000, "cast": [{"name": "Jude Law", "character": "Sky Captain", "id": 9642, "credit_id": "52fe43f5c3a36847f807a90b", "cast_id": 2, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Polly Perkins", "id": 12052, "credit_id": "52fe43f5c3a36847f807a90f", "cast_id": 3, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Giovanni Ribisi", "character": "Dex", "id": 1771, "credit_id": "52fe43f6c3a36847f807a913", "cast_id": 4, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 2}, {"name": "Angelina Jolie", "character": "Franky", "id": 11701, "credit_id": "52fe43f6c3a36847f807a917", "cast_id": 5, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 3}, {"name": "Bai Ling", "character": "Mysterious Woman", "id": 39126, "credit_id": "52fe43f6c3a36847f807a91b", "cast_id": 6, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 4}, {"name": "Michael Gambon", "character": "Paley", "id": 5658, "credit_id": "52fe43f6c3a36847f807a91f", "cast_id": 7, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 5}, {"name": "Omid Djalili", "character": "Kaji", "id": 41379, "credit_id": "52fe43f6c3a36847f807a923", "cast_id": 8, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 6}, {"name": "Laurence Olivier", "character": "Dr. Totenkopf", "id": 3359, "credit_id": "52fe43f6c3a36847f807a927", "cast_id": 9, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 7}, {"name": "Peter Law", "character": "Dr. Kessler", "id": 41380, "credit_id": "52fe43f6c3a36847f807a92b", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Khan Bonfils", "character": "Creepy", "id": 986518, "credit_id": "52fe43f6c3a36847f807a9a1", "cast_id": 30, "profile_path": "/1MExWtw6hqcem369MO6byZmWcZl.jpg", "order": 9}], "directors": [{"name": "Kerry Conran", "department": "Directing", "job": "Director", "credit_id": "52fe43f5c3a36847f807a907", "profile_path": "/s3meBUIuxtRVkTTaV9QAptuGRml.jpg", "id": 41378}], "vote_average": 5.8, "runtime": 106}, "13335": {"poster_path": "/hfyCKWEegVSEM40WTLGdJWAVqNU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43493123, "overview": "Having satisfied their urge for White Castle, Harold and Kumar jump on a plane to catch up with Harold's love interest, who's headed for the Netherlands. But the pair must change their plans when Kumar is accused of being a terrorist. Rob Corddry also stars in this wild comedy sequel that follows the hapless stoners' misadventures as they try to avoid being captured by the Department of Homeland Security.", "video": false, "id": 13335, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Harold & Kumar Escape from Guantanamo Bay", "tagline": "This time they're running from the joint.", "vote_count": 197, "homepage": "http://www.haroldandkumar.com", "belongs_to_collection": {"backdrop_path": "/b70mFgsSn2hl3CvC0nRx0SHUEX0.jpg", "poster_path": "/9OBP4MQBAXnBZ1uXLZykIWRGnBb.jpg", "id": 30663, "name": "Harold & Kumar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481536", "adult": false, "backdrop_path": "/7Ol1RGWUbExH2pkwyczzzl7EMOJ.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2008-04-25", "popularity": 0.547960027382719, "original_title": "Harold & Kumar Escape from Guantanamo Bay", "budget": 12000000, "cast": [{"name": "John Cho", "character": "Harold Lee", "id": 68842, "credit_id": "52fe455c9251416c75053c17", "cast_id": 1, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 0}, {"name": "Kal Penn", "character": "Kumar Patel", "id": 53493, "credit_id": "52fe455c9251416c75053c1b", "cast_id": 2, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 1}, {"name": "Neil Patrick Harris", "character": "Neil Patrick Harris", "id": 41686, "credit_id": "52fe455c9251416c75053c27", "cast_id": 6, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 2}, {"name": "Rob Corddry", "character": "Ron Fox", "id": 52997, "credit_id": "52fe455c9251416c75053c69", "cast_id": 22, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 3}, {"name": "Jack Conley", "character": "Deputy Frye", "id": 21675, "credit_id": "52fe455c9251416c75053c1f", "cast_id": 4, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 4}, {"name": "Roger Bart", "character": "Dr. Jack Beecher", "id": 45566, "credit_id": "52fe455c9251416c75053c23", "cast_id": 5, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 5}, {"name": "Eric Winter", "character": "Colton Graham", "id": 74409, "credit_id": "52fe455c9251416c75053c2b", "cast_id": 7, "profile_path": "/bo7unyhMC4GxIPWhHh2M8mqbsKn.jpg", "order": 6}, {"name": "Christopher Meloni", "character": "Grand Wizard", "id": 22227, "credit_id": "52fe455c9251416c75053c4d", "cast_id": 15, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 7}, {"name": "Danneel Ackles", "character": "Vanessa Fanning", "id": 81164, "credit_id": "52fe455c9251416c75053c51", "cast_id": 16, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 8}, {"name": "Missi Pyle", "character": "Raylene", "id": 1294, "credit_id": "52fe455c9251416c75053c55", "cast_id": 17, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 9}, {"name": "Paula Garc\u00e9s", "character": "Maria", "id": 21124, "credit_id": "52fe455c9251416c75053c5f", "cast_id": 20, "profile_path": "/bc1NhQCaUsoJFCi6vIGxiljQl86.jpg", "order": 10}], "directors": [{"name": "Jon Hurwitz", "department": "Directing", "job": "Director", "credit_id": "52fe455c9251416c75053c31", "profile_path": "/bWiSwwmkEqgDk0KkeodRQQ3MR02.jpg", "id": 68843}, {"name": "Hayden Schlossberg", "department": "Directing", "job": "Director", "credit_id": "52fe455c9251416c75053c37", "profile_path": null, "id": 68844}], "vote_average": 5.9, "runtime": 107}, "152601": {"poster_path": "/fsoTLnUXEUTNuVCBxAJMY0HPPd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47351251, "overview": "In the not so distant future, Theodore, a lonely writer purchases a newly developed operating system designed to meet the user's every needs. To Theordore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.", "video": false, "id": 152601, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Her", "tagline": "A Spike Jonze Love Story", "vote_count": 1075, "homepage": "http://www.herthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1798709", "adult": false, "backdrop_path": "/4f4tWe6uhwtuKMygfIAytR2W0pj.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2013-12-18", "popularity": 2.49810461257231, "original_title": "Her", "budget": 23000000, "cast": [{"name": "Joaquin Phoenix", "character": "Theodore", "id": 73421, "credit_id": "52fe4b259251416c910d1639", "cast_id": 5, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Samantha (voice)", "id": 1245, "credit_id": "52fe4b259251416c910d164f", "cast_id": 10, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Rooney Mara", "character": "Catherine", "id": 108916, "credit_id": "52fe4b259251416c910d1635", "cast_id": 4, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 2}, {"name": "Amy Adams", "character": "Amy", "id": 9273, "credit_id": "52fe4b259251416c910d1631", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 3}, {"name": "Olivia Wilde", "character": "Blind Date", "id": 59315, "credit_id": "52fe4b259251416c910d162d", "cast_id": 2, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 4}, {"name": "Chris Pratt", "character": "Paul", "id": 73457, "credit_id": "52fe4b259251416c910d1653", "cast_id": 11, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 5}, {"name": "Portia Doubleday", "character": "Isabella", "id": 117669, "credit_id": "52fe4b259251416c910d165d", "cast_id": 13, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 6}, {"name": "Sam Jaeger", "character": "Dr. Johnson", "id": 65727, "credit_id": "52fe4b259251416c910d1661", "cast_id": 14, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 7}, {"name": "Katherine Boecher", "character": "", "id": 211488, "credit_id": "52fe4b259251416c910d1665", "cast_id": 15, "profile_path": "/dRhesZZDvEoXLjbeeALlDdOBQW5.jpg", "order": 8}, {"name": "Kelly Sarah", "character": "Bikini Beach Babe", "id": 1197040, "credit_id": "52fe4b259251416c910d1669", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Spike Jonze", "character": "Alien Child", "id": 5953, "credit_id": "52fe4b269251416c910d166d", "cast_id": 17, "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "order": 10}, {"name": "Bill Hader", "character": "Chat Room Friend #2", "id": 19278, "credit_id": "52fe4b269251416c910d1671", "cast_id": 18, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 11}, {"name": "Kristen Wiig", "character": "Sexy Kitten", "id": 41091, "credit_id": "52fe4b269251416c910d1675", "cast_id": 19, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 12}, {"name": "Brian Cox", "character": "Alan Watts (voice)", "id": 1248, "credit_id": "52fe4b269251416c910d16a9", "cast_id": 28, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 13}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe4b259251416c910d1629", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 8.0, "runtime": 126}, "152603": {"poster_path": "/6wA7dQpCZVghOK8dN20rbKIyJPe.jpg", "production_countries": [{"iso_3166_1": "CY", "name": "Cyprus"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After being around for centuries and now living in the modern age, vampire Adam is a rockstar that cannot grow accustomed to the new modern world with all of its new technology. While he lives in Detroit, his wife Eve lives in Tangier, flourishing in the new world. But when she senses Adam's depression with society, she gets on a plane and goes to see him. Shortly after Eve gets there, her little sister, Ava, shows up after 87 years and disrupts the couple's idyll reunion.", "video": false, "id": 152603, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Only Lovers Left Alive", "tagline": "", "vote_count": 152, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1714915", "adult": false, "backdrop_path": "/5qoIoGjYm5APqRVTNwhG6JbbfPN.jpg", "production_companies": [{"name": "Pandora Film", "id": 140}, {"name": "Recorded Picture Company (RPC)", "id": 11561}, {"name": "Snow Wolf Produktion", "id": 19244}, {"name": "ARD/Degeto Film GmbH", "id": 6187}, {"name": "Neue Road Movies", "id": 4503}, {"name": "Lago Film", "id": 19245}, {"name": "Faliro House Productions", "id": 19246}], "release_date": "2014-04-11", "popularity": 0.925396059496675, "original_title": "Only Lovers Left Alive", "budget": 7000000, "cast": [{"name": "Tom Hiddleston", "character": "Adam", "id": 91606, "credit_id": "52fe4b269251416c910d16c3", "cast_id": 1, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 0}, {"name": "Tilda Swinton", "character": "Eve", "id": 3063, "credit_id": "52fe4b269251416c910d16c7", "cast_id": 2, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 1}, {"name": "Mia Wasikowska", "character": "Ava", "id": 76070, "credit_id": "52fe4b269251416c910d16cb", "cast_id": 3, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 2}, {"name": "John Hurt", "character": "Marlowe", "id": 5049, "credit_id": "52fe4b269251416c910d16cf", "cast_id": 4, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Anton Yelchin", "character": "Ian", "id": 21028, "credit_id": "52fe4b269251416c910d16d3", "cast_id": 5, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 4}, {"name": "Slimane Dazi", "character": "Bilal", "id": 1100011, "credit_id": "52fe4b269251416c910d16d7", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jeffrey Wright", "character": "Dr. Watson", "id": 2954, "credit_id": "52fe4b269251416c910d16e7", "cast_id": 9, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Cody Stauber", "character": "Adam's Fan", "id": 1304663, "credit_id": "5331c05ec3a3686aaf002047", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Ali Amine", "character": "Taxi Driver", "id": 1304664, "credit_id": "5331c073c3a3686a7f002017", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe4b269251416c910d16dd", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 7.2, "runtime": 123}, "13342": {"poster_path": "/lvEenO2CikD4Zo3rFK1flAU99Pr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27092880, "overview": "A story of a group of California teenagers who enjoy malls, sex and rock n' roll.", "video": false, "id": 13342, "genres": [{"id": 35, "name": "Comedy"}], "title": "Fast Times at Ridgemont High", "tagline": "Fast Cars, Fast Girls, Fast Carrots...Fast Carrots?", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083929", "adult": false, "backdrop_path": "/9O9wbBiFmFOWGPRWZV3Jv4gRP0r.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1982-08-12", "popularity": 0.574782559495611, "original_title": "Fast Times at Ridgemont High", "budget": 4500000, "cast": [{"name": "Sean Penn", "character": "Jeff Spicoli", "id": 2228, "credit_id": "52fe455d9251416c75053e6b", "cast_id": 1, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Jennifer Jason Leigh", "character": "Stacy Hamilton", "id": 10431, "credit_id": "52fe455d9251416c75053e6f", "cast_id": 2, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 1}, {"name": "Judge Reinhold", "character": "Brad Hamilton", "id": 777, "credit_id": "52fe455d9251416c75053e73", "cast_id": 3, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 2}, {"name": "Phoebe Cates", "character": "Linda Barrett", "id": 16171, "credit_id": "52fe455d9251416c75053e85", "cast_id": 8, "profile_path": "/5PxWIvoufedYN7dfDohBXcrUx2C.jpg", "order": 3}, {"name": "Brian Backer", "character": "Mark 'Rat' Ratner", "id": 118946, "credit_id": "52fe455d9251416c75053e81", "cast_id": 7, "profile_path": "/fUs5ipPXE3jdTSkxoC75tMML1Fz.jpg", "order": 4}, {"name": "Robert Romanus", "character": "Mike Damone", "id": 61217, "credit_id": "52fe455d9251416c75053e7d", "cast_id": 6, "profile_path": "/9ow4UIiT2fHPMUjHji8yuNFtd0E.jpg", "order": 5}, {"name": "Ray Walston", "character": "Mr. Hand", "id": 4093, "credit_id": "52fe455d9251416c75053e89", "cast_id": 9, "profile_path": "/KzlcoLq3s2I3ogQAdbE1eUcXsb.jpg", "order": 6}, {"name": "Scott Thomson", "character": "Arnold", "id": 9997, "credit_id": "52fe455d9251416c75053e8d", "cast_id": 10, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 7}, {"name": "Vincent Schiavelli", "character": "Mr. Vargas", "id": 3418, "credit_id": "52fe455d9251416c75053e91", "cast_id": 11, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 8}, {"name": "Amanda Wyss", "character": "Lisa", "id": 13656, "credit_id": "52fe455d9251416c75053e95", "cast_id": 12, "profile_path": "/1HEqQELnhQ7NAC6unYqc4CQ1ib.jpg", "order": 9}, {"name": "Forest Whitaker", "character": "Charles Jefferson", "id": 2178, "credit_id": "52fe455d9251416c75053e99", "cast_id": 13, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 10}, {"name": "Kelli Maroney", "character": "Cindy", "id": 83151, "credit_id": "52fe455d9251416c75053e9d", "cast_id": 14, "profile_path": "/zScBvchaH50OhAXrewHykMvqy1R.jpg", "order": 11}, {"name": "Eric Stoltz", "character": "Stoner Bud", "id": 7036, "credit_id": "52fe455d9251416c75053ea1", "cast_id": 15, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 12}, {"name": "Nicolas Cage", "character": "Brad's Bud", "id": 2963, "credit_id": "52fe455d9251416c75053ea5", "cast_id": 16, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 13}, {"name": "Anthony Edwards", "character": "Stoner Bud", "id": 11085, "credit_id": "52fe455d9251416c75053ea9", "cast_id": 17, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 14}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe455d9251416c75053e79", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 6.8, "runtime": 90}, "37931": {"poster_path": "/4X8eGHtYPnLUQF9l3cb0Aj6IDaU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6110000, "overview": "Ex-special operative MacGruber (Forte) is called back into action to take down his archenemy, Dieter Von Cunth (Kilmer), who's in possession of a nuclear warhead and bent on destroying Washington, DC.", "video": false, "id": 37931, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "MacGruber", "tagline": "He's the ultimate tool.", "vote_count": 54, "homepage": "http://iamrogue.com/macgruber/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1470023", "adult": false, "backdrop_path": "/8zIjKVr9i8ed9XZOGA6WxyHCFUs.jpg", "production_companies": [], "release_date": "2010-05-21", "popularity": 0.294560081382515, "original_title": "MacGruber", "budget": 10000000, "cast": [{"name": "Will Forte", "character": "MacGruber", "id": 62831, "credit_id": "52fe467f9251416c91056619", "cast_id": 7, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 0}, {"name": "Kristen Wiig", "character": "Vicki St. Elmo", "id": 41091, "credit_id": "52fe467f9251416c9105660d", "cast_id": 4, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Dieter Von Cunth", "id": 5576, "credit_id": "52fe467f9251416c91056611", "cast_id": 5, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Ryan Phillippe", "character": "Lt. Dixon Piper", "id": 11864, "credit_id": "52fe467f9251416c91056615", "cast_id": 6, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 3}, {"name": "Maya Rudolph", "character": "Casey", "id": 52792, "credit_id": "52fe467f9251416c9105661d", "cast_id": 8, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 4}, {"name": "Powers Boothe", "character": "Col. James Faith", "id": 6280, "credit_id": "52fe467f9251416c91056621", "cast_id": 9, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 5}, {"name": "Dalip Singh Rana", "character": "", "id": 119154, "credit_id": "52fe467f9251416c91056625", "cast_id": 10, "profile_path": "/3czibTND6j2lVHlZ3JGKPMBslt.jpg", "order": 6}, {"name": "Rhys Coiro", "character": "The Russian", "id": 113563, "credit_id": "52fe467f9251416c91056629", "cast_id": 11, "profile_path": "/tRX5cemKIZmqYGqIM3h05u4ssOm.jpg", "order": 7}], "directors": [{"name": "Jorma Taccone", "department": "Directing", "job": "Director", "credit_id": "52fe467f9251416c910565fd", "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "id": 62863}], "vote_average": 4.9, "runtime": 90}, "37933": {"poster_path": "/523KE6pQPB8TlXYjmn5BvOKBycE.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 68000000, "overview": "Something bizarre has come over the land. The kingdom is deteriorating. People are beginning to act strange... What's even more strange is that people are beginning to see dragons, which shouldn't enter the world of humans. Due to all these bizarre events, Ged, a wandering wizard, is investigating the cause. During his journey, he meets Prince Arren, a young distraught teenage boy. While Arren may look like a shy young teen, he has a severe dark side, which grants him strength, hatred, ruthlessness and has no mercy, especially when it comes to protecting Teru. For the witch Kumo this is a perfect opportunity. She can use the boy's \"fears\" against the very one who would help him, Ged.", "video": false, "id": 37933, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Tales from Earthsea", "tagline": "Once Man and Dragon were one. Man chose Land and Sea, Dragon chose Wind and Fire.", "vote_count": 64, "homepage": "http://disney.go.com/disneypictures/earthsea/#/home", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0495596", "adult": false, "backdrop_path": "/7GauLmcFx3tzic3B7DxvRM9Y7cN.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Toho Company", "id": 882}, {"name": "DENTSU Music And Entertainment", "id": 2752}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Buena Vista Home Entertainment", "id": 11200}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "Nibariki", "id": 12516}, {"name": "GNDHDDT", "id": 12539}, {"name": "Nippon Television Network (NTV)", "id": 20192}], "release_date": "2006-07-29", "popularity": 0.539567809483803, "original_title": "Gedo senki", "budget": 22000000, "cast": [{"name": "Junichi Okada", "character": "Arren", "id": 119241, "credit_id": "52fe46809251416c910566dd", "cast_id": 15, "profile_path": "/bFTZOkLduDdWrFi6bwsTLwAq4XS.jpg", "order": 0}, {"name": "Aoi Teshima", "character": "Theru", "id": 119242, "credit_id": "52fe46809251416c910566e1", "cast_id": 16, "profile_path": null, "order": 1}, {"name": "Bunta Sugawara", "character": "Haitaka", "id": 119243, "credit_id": "52fe46809251416c910566e5", "cast_id": 17, "profile_path": "/w3J8EkYDHi0UQ3JPradqKBfa22V.jpg", "order": 2}, {"name": "Y\u016bko Tanaka", "character": "Cob", "id": 20331, "credit_id": "52fe46809251416c910566e9", "cast_id": 18, "profile_path": "/k32uD3NkzeJHPaALp0amspIqVzc.jpg", "order": 3}, {"name": "Teruyuki Kagawa", "character": "Hare", "id": 46691, "credit_id": "52fe46809251416c910566ed", "cast_id": 19, "profile_path": "/pCOQFnFHPDCtSuYmMT3Q24Yf0SE.jpg", "order": 4}, {"name": "Jun Fubuki", "character": "Tenar", "id": 119244, "credit_id": "52fe46809251416c910566f1", "cast_id": 20, "profile_path": "/cLHCn4FSHocEyyf7c6f2CeEg1jb.jpg", "order": 5}, {"name": "Takashi Nait\u00f4", "character": "Hazia Dealer", "id": 19590, "credit_id": "52fe46809251416c910566f5", "cast_id": 21, "profile_path": "/ljbNlt6v9a7E9uvnph2qAJ6ba55.jpg", "order": 6}, {"name": "Mitsuko Baisho", "character": "The Mistress", "id": 72605, "credit_id": "52fe46809251416c910566f9", "cast_id": 22, "profile_path": "/5DGRshdcWGz2QHOxWJm6LYXqc8T.jpg", "order": 7}, {"name": "Yui Natsukawa", "character": "The Queen", "id": 13280, "credit_id": "52fe46809251416c910566fd", "cast_id": 23, "profile_path": "/y49Kk0dslXP0zXJjUYKB9X7Jbk9.jpg", "order": 8}, {"name": "Kaoru Kobayashi", "character": "The King", "id": 20332, "credit_id": "52fe46809251416c91056701", "cast_id": 24, "profile_path": "/ao6ahEACiVZuQAQ2ysL7DSbRwfS.jpg", "order": 9}], "directors": [{"name": "Goro Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe46809251416c91056691", "profile_path": null, "id": 1414}], "vote_average": 6.4, "runtime": 115}, "54318": {"poster_path": "/i1DU0Nux6CozY1uEjyz5uCWBxhc.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103071443, "overview": "A lonely boy discovers a mysterious egg that hatches a sea creature of Scottish legend.", "video": false, "id": 54318, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Water Horse", "tagline": "How Do You Keep A Secret This Big?", "vote_count": 55, "homepage": "http://www.thewaterhorse.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0760329", "adult": false, "backdrop_path": "/e1Z7OMTZi2RGfSN613PhxxvyPYo.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Walden Media", "id": 10221}, {"name": "Beacon Pictures", "id": 10157}, {"name": "Ecosse Films", "id": 1267}], "release_date": "2007-12-25", "popularity": 0.694347904793095, "original_title": "The Water Horse", "budget": 45000000, "cast": [{"name": "Alexander Nathan Etel", "character": "Angus MacMorrow", "id": 46300, "credit_id": "52fe4896c3a36847f816f787", "cast_id": 1, "profile_path": "/nHzyUSNjFwlSeOW3B9RfrqrTdHa.jpg", "order": 0}, {"name": "Emily Watson", "character": "Anne MacMorrow", "id": 1639, "credit_id": "52fe4896c3a36847f816f78b", "cast_id": 2, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 1}, {"name": "Ben Chaplin", "character": "Lewis Mowbray", "id": 21343, "credit_id": "52fe4896c3a36847f816f78f", "cast_id": 3, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 2}, {"name": "David Morrissey", "character": "Captain Thomas Hamilton", "id": 18616, "credit_id": "52fe4896c3a36847f816f793", "cast_id": 4, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 3}, {"name": "Priyanka Xi", "character": "Kirstie MacMorrow", "id": 150394, "credit_id": "52fe4896c3a36847f816f797", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Craig Hall", "character": "Charlie MacMorrow", "id": 3496, "credit_id": "52fe4896c3a36847f816f7b9", "cast_id": 14, "profile_path": "/e18KUAquVXJcEl9uPC0InR9BLyu.jpg", "order": 5}, {"name": "Brian Cox", "character": "Old Angus", "id": 1248, "credit_id": "52fe4896c3a36847f816f7a3", "cast_id": 10, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 6}, {"name": "Erroll Shand", "character": "Lt. Wormsley", "id": 150396, "credit_id": "52fe4896c3a36847f816f79b", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Joel Tobeck", "character": "Sgnt. Walker", "id": 41785, "credit_id": "52fe4896c3a36847f816f79f", "cast_id": 9, "profile_path": "/14Oobz8bwcd3jiqnoCFTQnPBJdB.jpg", "order": 8}, {"name": "Bruce Allpress", "character": "Jock McGowan", "id": 173431, "credit_id": "53ea10eac3a3680eb9000d1e", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Geraldine Brophy", "character": "Gracie", "id": 1047942, "credit_id": "53022d0292514121a72fb7b1", "cast_id": 16, "profile_path": "/5VArQQlKBtpa8ZhRH5gORPU0c4w.jpg", "order": 10}, {"name": "Eddie Campbell", "character": "Hughie", "id": 11451, "credit_id": "53022d1b9251412198316615", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Peter Corrigan", "character": "Jimmy's Buddy #1", "id": 1201353, "credit_id": "53022d38925141219b2e2420", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Carl Dixon", "character": "Gunner Corbin", "id": 1142100, "credit_id": "53022d54925141218f316096", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Nathan Christopher Haase", "character": "Male Tourist", "id": 1293761, "credit_id": "53022d739251412198317108", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Ian Harcourt", "character": "Jimmy McGarry", "id": 54494, "credit_id": "53022d96925141219232d7e5", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Rex Hurst", "character": "Jimmy's Buddy #2", "id": 1293764, "credit_id": "53022da79251412198317889", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Megan Katherine", "character": "Female Tourist", "id": 1293766, "credit_id": "53022dce92514121a130a997", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Elliot Lawless", "character": "Beach Kid", "id": 1240893, "credit_id": "53022de292514121a130ad73", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "William Johnson", "character": "Clyde", "id": 1166385, "credit_id": "531a4b7dc3a3685c4a003a2c", "cast_id": 26, "profile_path": "/b5cYHL0BJ8DlMML18ZlrSF6ZlMp.jpg", "order": 19}], "directors": [{"name": "Jay Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4896c3a36847f816f7a9", "profile_path": "/baaNlNwUYSGpznRfWnCCUzGhtKE.jpg", "id": 46297}], "vote_average": 6.4, "runtime": 112}, "13363": {"poster_path": "/lwgtC6rAeF1Xs2H0cbPkgvAJS1W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An impromptu goodbye party for Professor John Oldman becomes a mysterious interrogation after the retiring scholar reveals to his colleagues he never ages and has walked the earth for 14,000 years.", "video": false, "id": 13363, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Man from Earth", "tagline": "From one of the acclaimed writers of Star Trek and The Twilight Zone comes a story that transcends both time and space...", "vote_count": 190, "homepage": "http://manfromearth.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0756683", "adult": false, "backdrop_path": "/oIfHLjsmODIctuhmE69DcBl2qEy.jpg", "production_companies": [{"name": "Falling Sky Entertainment", "id": 2741}], "release_date": "2007-06-10", "popularity": 0.638571313328131, "original_title": "The Man from Earth", "budget": 0, "cast": [{"name": "David Lee Smith", "character": "John Oldman", "id": 56112, "credit_id": "52fe455f9251416c750543e3", "cast_id": 3, "profile_path": "/xYkMA9AWtUN93KV5hWzlDkcnebB.jpg", "order": 0}, {"name": "Tony Todd", "character": "Dan", "id": 19384, "credit_id": "52fe455f9251416c750543e7", "cast_id": 4, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 1}, {"name": "John Billingsley", "character": "Harry", "id": 21722, "credit_id": "52fe455f9251416c750543eb", "cast_id": 5, "profile_path": "/fHQ6ecMufxLwUAbN3dX3yxFAn5d.jpg", "order": 2}, {"name": "Ellen Crawford", "character": "Edith", "id": 76463, "credit_id": "52fe455f9251416c750543ef", "cast_id": 6, "profile_path": "/bpwfkOgNSFue6Tie7j4HjctED7P.jpg", "order": 3}, {"name": "Annika Peterson", "character": "Sandy", "id": 76464, "credit_id": "52fe455f9251416c750543f3", "cast_id": 7, "profile_path": "/bi9MLY4H6UNHtzJtfPAxxNM5X3.jpg", "order": 4}, {"name": "Alexis Thorpe", "character": "Linda Murphy", "id": 41504, "credit_id": "52fe455f9251416c750543f7", "cast_id": 8, "profile_path": "/8aPZP7bGgPzaHc5Slfna5m505ub.jpg", "order": 5}, {"name": "William Katt", "character": "Art", "id": 45415, "credit_id": "52fe455f9251416c750543fb", "cast_id": 9, "profile_path": "/8zgHplikymFmzQhOuwYhin6WJv6.jpg", "order": 6}, {"name": "Richard Riehle", "character": "Dr. Will Gruber", "id": 18262, "credit_id": "52fe45609251416c750543ff", "cast_id": 10, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 7}, {"name": "Steven Littles", "character": "Moving Man #1", "id": 1321554, "credit_id": "537ae845c3a3685e0d000f9e", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Chase Sprague", "character": "Moving Man #2", "id": 1321555, "credit_id": "537ae856c3a3685e14000fb7", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Robbie Bryan", "character": "Officer", "id": 104668, "credit_id": "537ae864c3a3685e39000fb6", "cast_id": 22, "profile_path": null, "order": 10}], "directors": [{"name": "Richard Schenkman", "department": "Directing", "job": "Director", "credit_id": "52fe455f9251416c750543df", "profile_path": "/puAjxwQ1XKIVyMOX5yN9Lw1uyc7.jpg", "id": 76462}], "vote_average": 7.9, "runtime": 87}, "862": {"poster_path": "/agy8DheVu5zpQFbXfAdvYivF2FU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361958736, "overview": "Woody the cowboy is young Andy\u2019s favorite toy. Yet this changes when Andy get the new super toy Buzz Lightyear for his birthday. Now that Woody is no longer number one he plans his revenge on Buzz. Toy Story is a milestone in film history for being the first feature film to use entirely computer animation.", "video": false, "id": 862, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story", "tagline": "The adventure takes off!", "vote_count": 1984, "homepage": "http://www.pixar.com/featurefilms/ts/", "belongs_to_collection": {"backdrop_path": "/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg", "poster_path": "/bDSe7UCiShmiTz7kuOjMyP6mz7l.jpg", "id": 10194, "name": "Toy Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114709", "adult": false, "backdrop_path": "/dji4Fm0gCDVb9DQQMRvAI8YNnTz.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1995-11-21", "popularity": 1.85165212808986, "original_title": "Toy Story", "budget": 30000000, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "52fe4284c3a36847f8024f95", "cast_id": 14, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "52fe4284c3a36847f8024f99", "cast_id": 15, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "52fe4284c3a36847f8024f9d", "cast_id": 16, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 2}, {"name": "Jim Varney", "character": "Slinky Dog (voice)", "id": 12899, "credit_id": "52fe4284c3a36847f8024fa1", "cast_id": 17, "profile_path": "/eIo2jVVXYgjDtaHoF19Ll9vtW7h.jpg", "order": 3}, {"name": "Wallace Shawn", "character": "Rex (voice)", "id": 12900, "credit_id": "52fe4284c3a36847f8024fa5", "cast_id": 18, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 4}, {"name": "John Ratzenberger", "character": "Hamm (voice)", "id": 7907, "credit_id": "52fe4284c3a36847f8024fa9", "cast_id": 19, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 5}, {"name": "Annie Potts", "character": "Bo Peep (voice)", "id": 8873, "credit_id": "52fe4284c3a36847f8024fad", "cast_id": 20, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 6}, {"name": "John Morris", "character": "Andy (voice)", "id": 1116442, "credit_id": "52fe4284c3a36847f8024fc1", "cast_id": 26, "profile_path": "/vYGyvK4LzeaUCoNSHtsuqJUY15M.jpg", "order": 7}, {"name": "Erik von Detten", "character": "Sid (voice)", "id": 12901, "credit_id": "52fe4284c3a36847f8024fb1", "cast_id": 22, "profile_path": "/cUsIO0mejQ3WLRH8Vgsaya5bPd0.jpg", "order": 8}, {"name": "Laurie Metcalf", "character": "Andy's Mom (voice)", "id": 12133, "credit_id": "52fe4284c3a36847f8024fb5", "cast_id": 23, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 9}, {"name": "R. Lee Ermey", "character": "Sergeant (voice)", "id": 8655, "credit_id": "52fe4284c3a36847f8024fb9", "cast_id": 24, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 10}, {"name": "Sarah Freeman", "character": "Hannah (voice)", "id": 12903, "credit_id": "52fe4284c3a36847f8024fbd", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Penn Jillette", "character": "TV Announcer (voice)", "id": 37221, "credit_id": "52fe4284c3a36847f8024fc5", "cast_id": 27, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 12}, {"name": "Jack Angel", "character": "Shark / Rocky Gibraltar (voice)", "id": 19545, "credit_id": "52fe4284c3a36847f8024fc9", "cast_id": 28, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 13}, {"name": "Spencer Aste", "character": "Additional Voice", "id": 1266092, "credit_id": "52fe4284c3a36847f8024fcd", "cast_id": 29, "profile_path": "/pGt7q88bw8gDD8cOVzmMGUXEZ6.jpg", "order": 14}, {"name": "Greg Berg", "character": "Minesweeper Soldier (voice)", "id": 94038, "credit_id": "52fe4284c3a36847f8024fd1", "cast_id": 30, "profile_path": "/3TwBirdnh0AmKRSMhdWzzgZ0zTH.jpg", "order": 15}, {"name": "Lisa Bradley", "character": "Additional Voice", "id": 1202809, "credit_id": "52fe4284c3a36847f8024fd5", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Kendall Cunningham", "character": "Additional Voice", "id": 134713, "credit_id": "52fe4284c3a36847f8024fd9", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Debi Derryberry", "character": "Aliens / Troll / Announcer on Intercom at Pizza Planet (voice)", "id": 73016, "credit_id": "52fe4284c3a36847f8024fdd", "cast_id": 33, "profile_path": "/mfmF3MjoL7sV76BSElFkVgDgA30.jpg", "order": 18}, {"name": "Cody Dorkin", "character": "Additional Voice", "id": 186614, "credit_id": "52fe4284c3a36847f8024fe1", "cast_id": 34, "profile_path": "/pFmPDFwi1oPqvqZtiejlxTV86tn.jpg", "order": 19}, {"name": "Bill Farmer", "character": "Additional Voice", "id": 84213, "credit_id": "52fe4284c3a36847f8024fe5", "cast_id": 35, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 20}, {"name": "Craig Good", "character": "Additional Voice", "id": 1122227, "credit_id": "52fe4284c3a36847f8024fe9", "cast_id": 36, "profile_path": "/xqm0wzTaReXJKtRKaVQg7cwUV14.jpg", "order": 21}, {"name": "Gregory Grudt", "character": "Additional Voice", "id": 1017469, "credit_id": "52fe4284c3a36847f8024fed", "cast_id": 37, "profile_path": "/jISwKoeLNnc6X3Jylknnqdr6MZq.jpg", "order": 22}, {"name": "Danielle Judovits", "character": "Additional Voice", "id": 1217873, "credit_id": "52fe4284c3a36847f8024ff1", "cast_id": 38, "profile_path": "/bi4q307EILaJ4HIueVE4Hv59JXY.jpg", "order": 23}, {"name": "Sam Lasseter", "character": "Additional Voice", "id": 1266095, "credit_id": "52fe4284c3a36847f8024ff5", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Brittany Levenbrown", "character": "Additional Voice", "id": 178710, "credit_id": "52fe4284c3a36847f8024ff9", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Sherry Lynn", "character": "Additional Voice", "id": 214701, "credit_id": "52fe4284c3a36847f8024ffd", "cast_id": 41, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 26}, {"name": "Scott McAfee", "character": "Additional Voice", "id": 79020, "credit_id": "52fe4284c3a36847f8025001", "cast_id": 42, "profile_path": "/kEd73kzCrVhfnNa8LLULpna72Jk.jpg", "order": 27}, {"name": "Mickie McGowan", "character": "Sid's Mom (voice)", "id": 84493, "credit_id": "52fe4284c3a36847f8025005", "cast_id": 43, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 28}, {"name": "Ryan O'Donohue", "character": "Additional Voice", "id": 166406, "credit_id": "52fe4284c3a36847f8025009", "cast_id": 44, "profile_path": "/l1NV0rGZvHI7yGOeFbPeffoHtuP.jpg", "order": 29}, {"name": "Jeff Pidgeon", "character": "Aliens / Robot / Mr. Spell (voice)", "id": 7882, "credit_id": "52fe4284c3a36847f802500d", "cast_id": 45, "profile_path": "/yLddkg5HcgbJg00cS13GVBnP0HY.jpg", "order": 30}, {"name": "Patrick Pinney", "character": "Additional Voice", "id": 61968, "credit_id": "52fe4284c3a36847f8025011", "cast_id": 46, "profile_path": "/eU2rqG140FCPwzIjJTymVOd5RBY.jpg", "order": 31}, {"name": "Philip Proctor", "character": "Bowling Announcer / Pizza Planet Guard (voice)", "id": 61969, "credit_id": "52fe4284c3a36847f8025015", "cast_id": 47, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 32}, {"name": "Jan Rabson", "character": "Additional Voice", "id": 157626, "credit_id": "52fe4284c3a36847f8025019", "cast_id": 48, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 33}, {"name": "Joe Ranft", "character": "Lenny the Binoculars (voice)", "id": 7911, "credit_id": "52fe4284c3a36847f802501d", "cast_id": 49, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 34}, {"name": "Andrew Stanton", "character": "Commercial Chorus (voice)", "id": 7, "credit_id": "52fe4284c3a36847f8025021", "cast_id": 50, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 35}, {"name": "Shane Sweet", "character": "Additional Voice", "id": 158124, "credit_id": "52fe4284c3a36847f8025025", "cast_id": 51, "profile_path": "/lsutYUETco7Rjr24CLWPC80EzEP.jpg", "order": 36}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f8024f49", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}], "vote_average": 7.3, "runtime": 81}, "5174": {"poster_path": "/qgaDWYLrnEPJpc5Lp35WbgX7GfS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 258022233, "overview": "After an attempted assassination on Ambassador Han, Inspector Lee and Detective Carter are back in action as they head to Paris to protect a French woman with knowledge of the Triads' secret leaders. Lee also holds secret meetings with a United Nations authority, but his personal struggles with a Chinese criminal mastermind named Kenji, which reveals that it's Lee's long-lost...brother.", "video": false, "id": 5174, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rush Hour 3", "tagline": "The Rush Is On!", "vote_count": 226, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rUwky6VBdRb2R5yQme5hPtCdf1P.jpg", "poster_path": "/mPBCN49MF2SSR27EU3Al5ebMQM4.jpg", "id": 90863, "name": "Rush Hour Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0293564", "adult": false, "backdrop_path": "/n4wRGNrMblEywTZXnt88W54tYkU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2007-08-10", "popularity": 0.99763205559928, "original_title": "Rush Hour 3", "budget": 140000000, "cast": [{"name": "Chris Tucker", "character": "Det. James Carter", "id": 66, "credit_id": "52fe43fac3a36847f807b565", "cast_id": 2, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 0}, {"name": "Jackie Chan", "character": "Chief Insp. Lee", "id": 18897, "credit_id": "52fe43fac3a36847f807b569", "cast_id": 3, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 1}, {"name": "Hiroyuki Sanada", "character": "Kenji", "id": 9195, "credit_id": "52fe43fac3a36847f807b56d", "cast_id": 4, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 2}, {"name": "Max von Sydow", "character": "Varden Reynard", "id": 2201, "credit_id": "52fe43fac3a36847f807b571", "cast_id": 5, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 3}, {"name": "Yvan Attal", "character": "George", "id": 2245, "credit_id": "52fe43fac3a36847f807b575", "cast_id": 6, "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "order": 4}, {"name": "Roman Polanski", "character": "Det. Revi", "id": 3556, "credit_id": "52fe43fac3a36847f807b579", "cast_id": 7, "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "order": 5}, {"name": "Zhang Jingchu", "character": "Soo Yung", "id": 41894, "credit_id": "52fe43fac3a36847f807b57d", "cast_id": 8, "profile_path": "/x30X7MB0P5wvKwOjX83DSzZtYMB.jpg", "order": 6}, {"name": "Philip Baker Hall", "character": "Capt. William Diel", "id": 4492, "credit_id": "52fe43fac3a36847f807b581", "cast_id": 9, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 7}, {"name": "No\u00e9mie Lenoir", "character": "Genevieve", "id": 145633, "credit_id": "52fe43fac3a36847f807b5e5", "cast_id": 26, "profile_path": "/xxksvdnhYW7M65ScvrDZsunEdFK.jpg", "order": 8}, {"name": "Sarah Shahi", "character": "Zoe (uncredited)", "id": 164945, "credit_id": "52fe43fac3a36847f807b5e9", "cast_id": 27, "profile_path": "/hTV326FBAlLmHOdPPiXVItCoivR.jpg", "order": 9}, {"name": "Youki Kudoh", "character": "Dragon Lady", "id": 16145, "credit_id": "52fe43fac3a36847f807b5ed", "cast_id": 28, "profile_path": "/4QtenZ3cLevnIDY831Y0YRQDJax.jpg", "order": 10}, {"name": "Tzi Ma", "character": "Ambassador Han", "id": 21629, "credit_id": "52fe43fac3a36847f807b5f1", "cast_id": 29, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 11}, {"name": "Dana Ivey", "character": "Sister Agnes", "id": 13314, "credit_id": "52fe43fac3a36847f807b5f5", "cast_id": 30, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 12}, {"name": "Henry O", "character": "Master Yu", "id": 39829, "credit_id": "52fe43fac3a36847f807b5f9", "cast_id": 31, "profile_path": "/cJ7rk3cmGOc0m1T90oPgZylntcs.jpg", "order": 13}, {"name": "Mia Tyler", "character": "Marsha", "id": 215130, "credit_id": "52fe43fac3a36847f807b5fd", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Michael Chow", "character": "Chinese Foreign Minister", "id": 21631, "credit_id": "52fe43fac3a36847f807b601", "cast_id": 33, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 15}, {"name": "Kentaro", "character": "French Assassin", "id": 554599, "credit_id": "52fe43fac3a36847f807b605", "cast_id": 34, "profile_path": "/5GBHIczhjdmNe4jX0xKyiRNeAfN.jpg", "order": 16}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe43fac3a36847f807b561", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.2, "runtime": 91}, "5175": {"poster_path": "/xG43wsvHpOp2QIj2JGQEvmK8dgC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347325802, "overview": "It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.", "video": false, "id": 5175, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rush Hour 2", "tagline": "Get ready for a second Rush!", "vote_count": 290, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rUwky6VBdRb2R5yQme5hPtCdf1P.jpg", "poster_path": "/mPBCN49MF2SSR27EU3Al5ebMQM4.jpg", "id": 90863, "name": "Rush Hour Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0266915", "adult": false, "backdrop_path": "/bLv1am2xc4JqP4CzT7i48BFQjTu.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2001-08-03", "popularity": 0.60529298524106, "original_title": "Rush Hour 2", "budget": 90000000, "cast": [{"name": "Chris Tucker", "character": "Det. James Carter", "id": 66, "credit_id": "52fe43fac3a36847f807b66d", "cast_id": 10, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 0}, {"name": "Jackie Chan", "character": "Chief Insp. Lee", "id": 18897, "credit_id": "52fe43fac3a36847f807b671", "cast_id": 11, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 1}, {"name": "Zhang Ziyi", "character": "Hu Li", "id": 1339, "credit_id": "52fe43fac3a36847f807b675", "cast_id": 12, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 2}, {"name": "Roselyn S\u00e1nchez", "character": "Isabella Molina", "id": 41901, "credit_id": "52fe43fac3a36847f807b679", "cast_id": 13, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 3}, {"name": "Ernie Reyes, Jr.", "character": "Zing", "id": 58210, "credit_id": "52fe43fac3a36847f807b683", "cast_id": 15, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 4}, {"name": "Don Cheadle", "character": "Kenny", "id": 1896, "credit_id": "52fe43fac3a36847f807b687", "cast_id": 16, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 5}, {"name": "John Lone", "character": "Ricky Tan", "id": 11389, "credit_id": "52fe43fac3a36847f807b68b", "cast_id": 18, "profile_path": "/qlzum4vK8Snzp65jiUVpZGYPzFE.jpg", "order": 7}, {"name": "Maggie Q", "character": "Girl in Car", "id": 21045, "credit_id": "52fe43fac3a36847f807b68f", "cast_id": 19, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 8}, {"name": "Alan King", "character": "Steve Reign", "id": 7169, "credit_id": "52fe43fac3a36847f807b693", "cast_id": 20, "profile_path": "/8yvDXsJr2jOkLDZTEcbQxwi5hcA.jpg", "order": 9}, {"name": "Harris Yulin", "character": "Agent Sterling", "id": 1166, "credit_id": "52fe43fac3a36847f807b697", "cast_id": 21, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 10}, {"name": "Kenneth Tsang", "character": "Captain Chin", "id": 10885, "credit_id": "52fe43fac3a36847f807b69b", "cast_id": 22, "profile_path": "/6oYTIjKlp8vsyxod7nPJ1R9V8Hf.jpg", "order": 11}, {"name": "Lisa LoCicero", "character": "Receptionist", "id": 101012, "credit_id": "52fe43fac3a36847f807b69f", "cast_id": 23, "profile_path": "/oVynyV7jYUeKfXYKjGMvfG58wSE.jpg", "order": 12}, {"name": "Meiling Melan\u00e7on", "character": "Girl in Car", "id": 73590, "credit_id": "52fe43fac3a36847f807b6a3", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Lucy Lin", "character": "Heaven on Earth Hostess", "id": 167160, "credit_id": "52fe43fac3a36847f807b6a7", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Cindy Lu", "character": "Heaven on Earth Hostess #2", "id": 154544, "credit_id": "52fe43fac3a36847f807b6ab", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Jeremy Piven", "character": "Versace Salesman", "id": 12799, "credit_id": "52fe43fac3a36847f807b6af", "cast_id": 27, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 16}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe43fac3a36847f807b63f", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.4, "runtime": 90}, "5176": {"poster_path": "/9Nwkh0eQmkymEOR0ovAALtjSIZW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70016220, "overview": "In Arizona in the late 1800's, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the \"3:10 to Yuma\", a train that will take the killer to trial.", "video": false, "id": 5176, "genres": [{"id": 37, "name": "Western"}], "title": "3:10 to Yuma", "tagline": "Time waits for one man.", "vote_count": 441, "homepage": "http://www.310toyumathefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0381849", "adult": false, "backdrop_path": "/bk6TT6GYss9qBmNoJ6HqHtHLahw.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Tree Line Films", "id": 84}, {"name": "Relativity Media", "id": 7295}, {"name": "Yuma", "id": 10880}], "release_date": "2007-09-06", "popularity": 1.51228914015543, "original_title": "3:10 to Yuma", "budget": 55000000, "cast": [{"name": "Russell Crowe", "character": "Ben Wade", "id": 934, "credit_id": "52fe43fac3a36847f807b723", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Christian Bale", "character": "Dan Evans", "id": 3894, "credit_id": "52fe43fac3a36847f807b727", "cast_id": 2, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 1}, {"name": "Logan Lerman", "character": "William Evans", "id": 33235, "credit_id": "52fe43fac3a36847f807b72b", "cast_id": 3, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Dallas Roberts", "character": "Grayson Butterfield", "id": 424, "credit_id": "52fe43fac3a36847f807b72f", "cast_id": 4, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 3}, {"name": "Peter Fonda", "character": "Byron McElroy", "id": 8949, "credit_id": "52fe43fac3a36847f807b739", "cast_id": 6, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 4}, {"name": "Gretchen Mol", "character": "Alice Evans", "id": 15370, "credit_id": "52fe43fac3a36847f807b73d", "cast_id": 7, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 5}, {"name": "Ben Foster", "character": "Charlie Prince", "id": 11107, "credit_id": "52fe43fac3a36847f807b741", "cast_id": 8, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 6}, {"name": "Alan Tudyk", "character": "Doc Potter", "id": 21088, "credit_id": "52fe43fac3a36847f807b745", "cast_id": 9, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 7}, {"name": "Vinessa Shaw", "character": "Emmy Nelson", "id": 5025, "credit_id": "52fe43fac3a36847f807b749", "cast_id": 10, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 8}, {"name": "Lennie Loftin", "character": "Glen Hollander", "id": 42200, "credit_id": "52fe43fac3a36847f807b74d", "cast_id": 11, "profile_path": "/n5k9l49SlCgEyfU6ggUl1QIrZe6.jpg", "order": 9}, {"name": "Rio Alexander", "character": "Campos", "id": 42201, "credit_id": "52fe43fac3a36847f807b751", "cast_id": 12, "profile_path": "/6UMca1x6OPEAXoAL1py5ER8qNwI.jpg", "order": 10}, {"name": "Pat Ricotti", "character": "Jorgensen", "id": 42203, "credit_id": "52fe43fac3a36847f807b755", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Shawn Howell", "character": "Jackson", "id": 42204, "credit_id": "52fe43fac3a36847f807b759", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Johnny Whitworth", "character": "Tommy Darden", "id": 73589, "credit_id": "52fe43fac3a36847f807b799", "cast_id": 25, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 13}, {"name": "Kevin Durand", "character": "Tucker", "id": 79072, "credit_id": "52fe43fac3a36847f807b79d", "cast_id": 26, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 14}, {"name": "Ramon Frank", "character": "Kinter", "id": 553357, "credit_id": "52fe43fac3a36847f807b7a1", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Deryle J. Lujan", "character": "Nez", "id": 553358, "credit_id": "52fe43fac3a36847f807b7a5", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "James 'Scotty' Augare", "character": "Nez", "id": 1204213, "credit_id": "52fe43fac3a36847f807b7a9", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Brian Duffy", "character": "Sutherland", "id": 949852, "credit_id": "52fe43fac3a36847f807b7ad", "cast_id": 30, "profile_path": "/1XlYJr9FaTZG4582ziUIoHT8QSP.jpg", "order": 18}, {"name": "Jason Rodriguez", "character": "Tighe", "id": 75617, "credit_id": "52fe43fac3a36847f807b7b1", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Chris Browning", "character": "Crawley", "id": 76543, "credit_id": "52fe43fac3a36847f807b7b5", "cast_id": 32, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 20}, {"name": "Chad Brummett", "character": "Kane", "id": 208061, "credit_id": "52fe43fac3a36847f807b7b9", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Forrest Fyre", "character": "Walter Boles", "id": 79213, "credit_id": "52fe43fac3a36847f807b7bd", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Luke Wilson", "character": "Zeke", "id": 36422, "credit_id": "52fe43fac3a36847f807b7c1", "cast_id": 35, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 23}, {"name": "Benjamin Petry", "character": "Mark Evans", "id": 220118, "credit_id": "52fe43fac3a36847f807b7c5", "cast_id": 36, "profile_path": "/s0CaWbrxL9bhuiQ4F1XN6dWNPaW.jpg", "order": 24}, {"name": "Arron Shiver", "character": "Bill Moons", "id": 105786, "credit_id": "52fe43fac3a36847f807b7c9", "cast_id": 37, "profile_path": "/whHOz0t0JWvZd1LgeRm4oQe9KjO.jpg", "order": 25}, {"name": "Sean Hennigan", "character": "Marshal Will Doane", "id": 109525, "credit_id": "52fe43fac3a36847f807b7cd", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Girard Swan", "character": "Deputy Harvey Pell", "id": 1204214, "credit_id": "52fe43fac3a36847f807b7d1", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Christopher Berry", "character": "Deputy Sam Fuller", "id": 1173099, "credit_id": "52fe43fac3a36847f807b7d5", "cast_id": 40, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 28}, {"name": "David Oliver", "character": "Evil Bartender", "id": 1204215, "credit_id": "52fe43fac3a36847f807b7d9", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jason Henning", "character": "Train Clerk", "id": 1204216, "credit_id": "52fe43fac3a36847f807b7dd", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Barbara Bartleson", "character": "Contention Woman (uncredited)", "id": 1204217, "credit_id": "52fe43fac3a36847f807b7e1", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "James Blackburn", "character": "Gunfighter (uncredited)", "id": 1204218, "credit_id": "52fe43fac3a36847f807b7e5", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Brian Brown", "character": "Bad Guy #1 (uncredited)", "id": 1204219, "credit_id": "52fe43fac3a36847f807b7e9", "cast_id": 45, "profile_path": "/yIAsSC6w9c2gNFIIMHusmyVutLN.jpg", "order": 33}, {"name": "Trevor Coppola", "character": "William Marsh (uncredited)", "id": 1137847, "credit_id": "52fe43fac3a36847f807b7ed", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Harp Corrigan", "character": "Bisbee Townsman (uncredited)", "id": 1204220, "credit_id": "52fe43fac3a36847f807b7f1", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Hugh Elliot", "character": "Gunman (uncredited)", "id": 1204221, "credit_id": "52fe43fac3a36847f807b7f5", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Darren Gibson", "character": "Gunman (uncredited)", "id": 1204222, "credit_id": "52fe43fac3a36847f807b7f9", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "KC King", "character": "Contention Gunman (uncredited)", "id": 1204223, "credit_id": "52fe43fac3a36847f807b7fd", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Melinda Kramer", "character": "Bisbee Townsperson (uncredited)", "id": 1204224, "credit_id": "52fe43fac3a36847f807b801", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Brent Lambert", "character": "Merchant (uncredited)", "id": 1204225, "credit_id": "52fe43fac3a36847f807b805", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Billy Lockwood", "character": "Gunman (uncredited)", "id": 967704, "credit_id": "52fe43fac3a36847f807b809", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "J. Nathan Simmons", "character": "Town Drunk (uncredited)", "id": 1204226, "credit_id": "52fe43fac3a36847f807b80d", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Art Usher", "character": "Contention Gunman (uncredited)", "id": 927752, "credit_id": "52fe43fac3a36847f807b811", "cast_id": 55, "profile_path": null, "order": 43}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe43fac3a36847f807b735", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.6, "runtime": 122}, "37950": {"poster_path": "/ghv3vJtpnBtJh4HvN85ipkqOyRa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when a tragedy strikes and takes his dreams with it. After his high-school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. And as he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.", "video": false, "id": 37950, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Charlie St. Cloud", "tagline": "Life is for living", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1438254", "adult": false, "backdrop_path": "/m6HZBKGAvZ6qJEL1pKeUn0GbtUv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2010-05-01", "popularity": 0.904075307693621, "original_title": "Charlie St. Cloud", "budget": 0, "cast": [{"name": "Zac Efron", "character": "Charlie St. Cloud", "id": 29222, "credit_id": "52fe46829251416c91056b01", "cast_id": 4, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Amanda Crew", "character": "Tess Carroll", "id": 58370, "credit_id": "52fe46829251416c91056b05", "cast_id": 5, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 1}, {"name": "Kim Basinger", "character": "Louise St. Cloud", "id": 326, "credit_id": "52fe46829251416c91056b09", "cast_id": 6, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 2}, {"name": "Chris Massoglia", "character": "Sam St. Cloud (older)", "id": 109441, "credit_id": "52fe46829251416c91056b0d", "cast_id": 7, "profile_path": "/s7oTPrx9WFbbfEqho0Z1Yd3zHmx.jpg", "order": 3}, {"name": "Dave Franco", "character": "Sully", "id": 54697, "credit_id": "52fe46829251416c91056b11", "cast_id": 8, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 4}, {"name": "Donal Logue", "character": "Tink Weatherbee", "id": 10825, "credit_id": "52fe46829251416c91056b15", "cast_id": 9, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 5}, {"name": "Charlie Tahan", "character": "Sam St. Cloud", "id": 49918, "credit_id": "52fe46829251416c91056b19", "cast_id": 10, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 6}, {"name": "Tegan Moss", "character": "Cindy", "id": 52291, "credit_id": "52fe46829251416c91056b1d", "cast_id": 11, "profile_path": "/orYAn8KnNDvWUWObUpBZAB45Pn2.jpg", "order": 7}, {"name": "Augustus Prew", "character": "Alistair Wooley", "id": 3309, "credit_id": "52fe46829251416c91056b21", "cast_id": 12, "profile_path": "/k3pRpdfeHZq0BGBAYqhXyKjDuic.jpg", "order": 8}, {"name": "Julia Maxwell", "character": "Rachel", "id": 119219, "credit_id": "52fe46829251416c91056b25", "cast_id": 13, "profile_path": "/98JYMQKnTzlvLMWe33IR17HmW6t.jpg", "order": 9}, {"name": "Ray Liotta", "character": "Florio Ferrente", "id": 11477, "credit_id": "53829239c3a36805a1007778", "cast_id": 16, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 10}], "directors": [{"name": "Burr Steers", "department": "Directing", "job": "Director", "credit_id": "52fe46829251416c91056af1", "profile_path": "/rWztkNxfPclLILEjAhaHaOHSWs3.jpg", "id": 58552}], "vote_average": 6.8, "runtime": 99}, "13377": {"poster_path": "/oj7NVRtP2Z9w6Ub9rrGJwQncjUP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Bitter and hateful, the Grinch is irritated at the thought of the nearby village having a happy time celebrating Christmas. So disguised as Santa Claus, with his dog made to look like a reindeer, he raids the village to steal all the Christmas things. The village is sure to have a sad Christmas this year.", "video": false, "id": 13377, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "How the Grinch Stole Christmas!", "tagline": "You're a mean one, Mr. Grinch", "vote_count": 212, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0060345", "adult": false, "backdrop_path": "/cDRhoYxoR4QYDO0XW9qV6kmH85J.jpg", "production_companies": [{"name": "The Cat in the Hat Productions", "id": 8811}, {"name": "MGM Television", "id": 2230}], "release_date": "1966-12-18", "popularity": 0.255915890300582, "original_title": "How the Grinch Stole Christmas!", "budget": 315000, "cast": [{"name": "Boris Karloff", "character": "Narrator / The Grinch (voice)", "id": 2922, "credit_id": "52fe45619251416c750547b1", "cast_id": 3, "profile_path": "/gqaKR7BfXqBds8oLJ1KUGD8Gl6u.jpg", "order": 0}], "directors": [{"name": "Chuck Jones", "department": "Directing", "job": "Director", "credit_id": "52fe45619251416c750547a7", "profile_path": "/6JpwLPN4ugD5sw5Z0zjPQf6nhh8.jpg", "id": 100888}, {"name": "Ben Washam", "department": "Directing", "job": "Director", "credit_id": "52fe45619251416c750547ad", "profile_path": null, "id": 113285}], "vote_average": 7.0, "runtime": 26}, "46146": {"poster_path": "/dn1dV3NM2PGPGIfkRDSlNwotVA2.jpg", "production_countries": [{"iso_3166_1": "NO", "name": "Norway"}], "revenue": 4159678, "overview": "A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.", "video": false, "id": 46146, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Troll Hunter", "tagline": "You believe it when you see it!", "vote_count": 152, "homepage": "http://trolljegeren.no/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nb", "name": "Bokm\u00e5l"}], "imdb_id": "tt1740707", "adult": false, "backdrop_path": "/ruopuPKZZv7L5Wwgj9tt3Rm3gtG.jpg", "production_companies": [{"name": "Filmkameratene A/S", "id": 1003}, {"name": "Film Fund FUZZ", "id": 5241}], "release_date": "2010-10-29", "popularity": 0.717613813168093, "original_title": "Trolljegeren", "budget": 3500000, "cast": [{"name": "Otto Jespersen", "character": "Trolljegeren", "id": 141999, "credit_id": "52fe46e7c3a36847f8118cb7", "cast_id": 2, "profile_path": "/jPcbNb6tUPofYuaQaPxNgCGtmcW.jpg", "order": 0}, {"name": "Hans Morten Hansen", "character": "Finn", "id": 142000, "credit_id": "52fe46e7c3a36847f8118cbb", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Tomas Alf Larsen", "character": "Kalle", "id": 87880, "credit_id": "52fe46e7c3a36847f8118cbf", "cast_id": 4, "profile_path": "/qEIErOSFsUyI4kKr0K9xckzbrUe.jpg", "order": 2}, {"name": "Johanna M\u00f8rck", "character": "Johanna", "id": 142001, "credit_id": "52fe46e7c3a36847f8118cc3", "cast_id": 5, "profile_path": "/98Lv9ut9cHXWz9gcGW6vYps5zQl.jpg", "order": 3}, {"name": "Knut N\u00e6rum", "character": "E-verkssjef", "id": 142002, "credit_id": "52fe46e7c3a36847f8118cc7", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Robert Stoltenberg", "character": "Polsk bj\u00f8rnejeger", "id": 142003, "credit_id": "52fe46e7c3a36847f8118ccb", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Glenn Erland Tosterud", "character": "Thomas", "id": 142004, "credit_id": "52fe46e7c3a36847f8118ccf", "cast_id": 8, "profile_path": "/rGUVEtnLSvNBL77B2OOjTjHNKZy.jpg", "order": 6}], "directors": [{"name": "Andr\u00e9 \u00d8vredal", "department": "Directing", "job": "Director", "credit_id": "52fe46e7c3a36847f8118cb3", "profile_path": "/1V97U0z1P10sKUc6tn6MocGrgQZ.jpg", "id": 135113}], "vote_average": 6.9, "runtime": 103}, "37958": {"poster_path": "/3oM3xqBefB9pyZnHZ5Bkkrv797z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 226904017, "overview": "Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.", "video": false, "id": 37958, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Immortals", "tagline": "The Gods need a hero.", "vote_count": 372, "homepage": "http://www.immortalsmovie.com/splash/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1253864", "adult": false, "backdrop_path": "/pNw0c7aiUZHhu8WuolfOA8xube9.jpg", "production_companies": [{"name": "Hollywood Gang Productions", "id": 2994}, {"name": "Relativity Media", "id": 7295}, {"name": "Virgin Produced", "id": 8852}, {"name": "Mark Canton Productions", "id": 11761}, {"name": "Atmosphere Entertainment MM", "id": 2995}], "release_date": "2011-11-11", "popularity": 0.866854059809141, "original_title": "Immortals", "budget": 75000000, "cast": [{"name": "Mickey Rourke", "character": "King Hyperion", "id": 2295, "credit_id": "52fe46839251416c91056d8d", "cast_id": 1, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Kellan Lutz", "character": "Poseidon", "id": 34502, "credit_id": "52fe46839251416c91056d91", "cast_id": 2, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 1}, {"name": "Isabel Lucas", "character": "Athena", "id": 103554, "credit_id": "52fe46839251416c91056d95", "cast_id": 3, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 2}, {"name": "Henry Cavill", "character": "Theseus", "id": 73968, "credit_id": "52fe46839251416c91056d99", "cast_id": 4, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 3}, {"name": "Luke Evans", "character": "Zeus", "id": 114019, "credit_id": "52fe46839251416c91056d9d", "cast_id": 5, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 4}, {"name": "John Hurt", "character": "Old Zeus", "id": 5049, "credit_id": "52fe46839251416c91056da1", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 5}, {"name": "Freida Pinto", "character": "Phaedra", "id": 76792, "credit_id": "52fe46839251416c91056da5", "cast_id": 7, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 6}, {"name": "Stephen Dorff", "character": "Stavros", "id": 10822, "credit_id": "52fe46839251416c91056da9", "cast_id": 8, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 7}, {"name": "Robert Maillet", "character": "Minotaur", "id": 112692, "credit_id": "52fe46839251416c91056dad", "cast_id": 9, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 8}, {"name": "Alan van Sprang", "character": "Dareios", "id": 99183, "credit_id": "52fe46839251416c91056db1", "cast_id": 10, "profile_path": "/les7cqXIk3UwCT025wSJyumFryX.jpg", "order": 9}, {"name": "Joseph Morgan", "character": "Lysander", "id": 79505, "credit_id": "52fe46839251416c91056db5", "cast_id": 11, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 10}, {"name": "Corey Sevier", "character": "Apollo", "id": 43265, "credit_id": "52fe46839251416c91056db9", "cast_id": 12, "profile_path": "/3OsXhsL6kscwTeftjoRTMb4qqhQ.jpg", "order": 11}, {"name": "Steve Byers", "character": "Heracles", "id": 43292, "credit_id": "52fe46839251416c91056dbd", "cast_id": 13, "profile_path": "/idVVOo2FaOTK2EMBNy34Pesqi4H.jpg", "order": 12}, {"name": "Romano Orzari", "character": "Icarus", "id": 96591, "credit_id": "52fe46839251416c91056dc1", "cast_id": 14, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 13}, {"name": "James A. Woods", "character": "Captain of the Archers", "id": 80019, "credit_id": "52fe46839251416c91056dc5", "cast_id": 15, "profile_path": "/tZChYeszIf1bfkMuveSAA2W9vJ3.jpg", "order": 14}, {"name": "Daniel Sharman", "character": "Aries", "id": 119248, "credit_id": "52fe46839251416c91056dc9", "cast_id": 16, "profile_path": "/uCkcpPWLTXaUAfLzbvvGf6dL7bA.jpg", "order": 15}, {"name": "Robert Naylor", "character": "Young Theseus", "id": 119249, "credit_id": "52fe46839251416c91056dcd", "cast_id": 17, "profile_path": "/vnHTsgmL677q7Ch2838vNBRQNMQ.jpg", "order": 16}, {"name": "Mercedes Leggett", "character": "High Priestess", "id": 119250, "credit_id": "52fe46839251416c91056dd1", "cast_id": 18, "profile_path": "/6KwhorXj8YXkTlOZAX5vnANFZqT.jpg", "order": 17}, {"name": "Gage Munroe", "character": "Acamus", "id": 119251, "credit_id": "52fe46839251416c91056dd5", "cast_id": 19, "profile_path": "/8m8mA4WF7aywSPIN4FTO5cloTj.jpg", "order": 18}, {"name": "Carlo Mestroni", "character": "Holy Man", "id": 115595, "credit_id": "52fe46839251416c91056dd9", "cast_id": 20, "profile_path": "/pDqKSIyzd1xQCg9aQbHqZmZyTRN.jpg", "order": 19}, {"name": "Aron Tomori", "character": "Young Lysander (as Aron J. Tomori)", "id": 119252, "credit_id": "52fe46839251416c91056ddd", "cast_id": 21, "profile_path": "/2GORd03MIvW7fHg3ZNEZZHXxFhQ.jpg", "order": 20}, {"name": "Neil Napier", "character": "Beast Master", "id": 105496, "credit_id": "52fe46839251416c91056de1", "cast_id": 22, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 21}, {"name": "Tamas Menyhart", "character": "Heraklion", "id": 1287220, "credit_id": "52fe46839251416c91056e6f", "cast_id": 46, "profile_path": "/bLFBaaN5C9th7AxGU3tQFpQQosz.jpg", "order": 22}, {"name": "Ayisha Issa", "character": "High Priestess #4", "id": 231517, "credit_id": "5339729ac3a3680e9f005c16", "cast_id": 47, "profile_path": "/lCrVPwyBgXDBvuwY7NTwZpG8FYu.jpg", "order": 23}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe46839251416c91056de7", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 5.7, "runtime": 110}, "21575": {"poster_path": "/mRJuB3PEbKQyWtp1CCcpa34c60F.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Sentenced to six years in prison, Malik El Djebena (Tahar Rahim) is alone in the world and can neither read nor write. On his arrival at the prison, he seems younger and more brittle than the others detained there. At once he falls under the sway of a group of Corsicans who enforce their rule in the prison. As the 'missions' go by, he toughens himself and wins the confidence of the Corsican group.", "video": false, "id": 21575, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "A Prophet", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "co", "name": ""}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1235166", "adult": false, "backdrop_path": "/iKZ7ZSYeTkIftzlq8Uf0waYXChh.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Chic Films", "id": 12398}, {"name": "Page 114", "id": 11779}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique (UGC)", "id": 7248}, {"name": "BIM Distribuzione", "id": 225}, {"name": "Celluloid Dreams", "id": 860}, {"name": "France 2 (FR2)", "id": 11359}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "R\u00e9gion Ile-de-France", "id": 11246}, {"name": "Conseil R\u00e9gional de Provence-Alpes C\u00f4te d'Azur", "id": 12399}, {"name": "Centre National de la Cin\u00e9matographie", "id": 310}, {"name": "Sofica UGC 1", "id": 11435}, {"name": "Sofica Soficin\u00e9ma 4", "id": 11397}, {"name": "Soficin\u00e9ma 5", "id": 12400}], "release_date": "2009-08-26", "popularity": 0.501448553540844, "original_title": "Un proph\u00e8te", "budget": 13000000, "cast": [{"name": "Tahar Rahim", "character": "Malik El Djebena", "id": 81051, "credit_id": "52fe441fc3a368484e010bcf", "cast_id": 1, "profile_path": "/wXKlcceUG1aRzisnL2nxbQVe18w.jpg", "order": 0}, {"name": "Niels Arestrup", "character": "C\u00e9sar Luciani", "id": 17498, "credit_id": "52fe441fc3a368484e010bd3", "cast_id": 2, "profile_path": "/nmY1YLZN2rZ4JeLmzA3thQLaMUt.jpg", "order": 1}, {"name": "Adel Bencherif", "character": "Ryad", "id": 89624, "credit_id": "52fe441fc3a368484e010bd7", "cast_id": 3, "profile_path": "/tx51bAbUpyNTsiFPjswTniQR6Fb.jpg", "order": 2}, {"name": "Hichem Yacoubi", "character": "Reyeb", "id": 89625, "credit_id": "52fe441fc3a368484e010bdb", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Reda Kateb", "character": "Jordi", "id": 89626, "credit_id": "52fe441fc3a368484e010bdf", "cast_id": 5, "profile_path": "/zfrJui3N3UybfLJQOMC6SalcBlJ.jpg", "order": 4}, {"name": "Jean-Philippe Ricci", "character": "Vettori", "id": 89627, "credit_id": "52fe441fc3a368484e010be3", "cast_id": 6, "profile_path": "/1IVuEv4VfjrX2DgqP0H8yQiPpzS.jpg", "order": 5}, {"name": "Gilles Cohen", "character": "Prof", "id": 17500, "credit_id": "52fe441fc3a368484e010be7", "cast_id": 7, "profile_path": "/4Iq0KkYMGLXfAmyGXfhPPdRZrmC.jpg", "order": 6}, {"name": "Antoine Basler", "character": "Pilicci", "id": 35965, "credit_id": "52fe441fc3a368484e010beb", "cast_id": 8, "profile_path": "/bh8bq3wYtEp3Q0DCdeW7vAoj7kr.jpg", "order": 7}, {"name": "Pierre Leccia", "character": "Sampierro", "id": 358635, "credit_id": "52fe441fc3a368484e010c49", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Foued Nassah", "character": "Antaro", "id": 130451, "credit_id": "52fe441fc3a368484e010c4d", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Jean-Emmanuel Pagni", "character": "Santi", "id": 967414, "credit_id": "52fe441fc3a368484e010c51", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Fr\u00e9d\u00e9ric Graziani", "character": "Prison Warden", "id": 586117, "credit_id": "52fe441fc3a368484e010c55", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Le\u00efla Bekhti", "character": "Djamila", "id": 23383, "credit_id": "52fe441fc3a368484e010c59", "cast_id": 28, "profile_path": "/whlTg4xpvMeeXszBGxDyQYsD0fk.jpg", "order": 12}, {"name": "Rabah Loucif", "character": "Malik's Lawyer", "id": 1109346, "credit_id": "52fe441fc3a368484e010c5d", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Jacques Audiard", "department": "Directing", "job": "Director", "credit_id": "52fe441fc3a368484e010bf1", "profile_path": "/AwkHfUzBQLC9RJfm8WjX646TblA.jpg", "id": 17496}], "vote_average": 7.4, "runtime": 155}, "193610": {"poster_path": "/fu7K3rPwJcScizlXbxWAR7ZoUxt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196781193, "overview": "After discovering her boyfriend is married, Carly soon meets the wife he's been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.", "video": false, "id": 193610, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Other Woman", "tagline": "The oddest friends are about to get even", "vote_count": 442, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2203939", "adult": false, "backdrop_path": "/dklihoqv6NtOLiDUbRWlhQpnfxU.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2014-04-25", "popularity": 2.14592690370363, "original_title": "The Other Woman", "budget": 40000000, "cast": [{"name": "Cameron Diaz", "character": "Carly Whitten", "id": 6941, "credit_id": "52fe4cd39251416c91101645", "cast_id": 7, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Kate King", "id": 41087, "credit_id": "52fe4cd39251416c91101641", "cast_id": 6, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Kate Upton", "character": "Amber", "id": 974317, "credit_id": "52fe4cd39251416c91101655", "cast_id": 12, "profile_path": "/dg6MDwt0krGVi6d6uRGLXFagKoN.jpg", "order": 2}, {"name": "Don Johnson", "character": "Frank", "id": 25129, "credit_id": "52fe4cd39251416c91101659", "cast_id": 13, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 3}, {"name": "Nikolaj Coster-Waldau", "character": "Mark King", "id": 12795, "credit_id": "52fe4cd39251416c9110163d", "cast_id": 5, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 4}, {"name": "Taylor Kinney", "character": "Phil", "id": 210271, "credit_id": "52fe4cd39251416c91101651", "cast_id": 11, "profile_path": "/22OpVOcxlDR2aFX3khIIQekhaEJ.jpg", "order": 5}, {"name": "Nicki Minaj", "character": "Lydia", "id": 968660, "credit_id": "52fe4cd39251416c91101649", "cast_id": 9, "profile_path": "/kxbMXTarZ7btT0BEHx700chph7m.jpg", "order": 6}, {"name": "Deborah Twiss", "character": "", "id": 116881, "credit_id": "52fe4cd39251416c9110164d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Alyshia Ochse", "character": "Cece", "id": 1031261, "credit_id": "52fe4cd39251416c9110165d", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Jennifer Glasgow", "character": "", "id": 1181294, "credit_id": "52fe4cd39251416c91101661", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "David Thornton", "character": "Nick", "id": 76526, "credit_id": "53569d52c3a3687f340000be", "cast_id": 16, "profile_path": "/jDcmAwRCUYd3QSVEVc9Xq2Yi9Xf.jpg", "order": 10}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe4cd39251416c91101627", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 6.1, "runtime": 109}, "13387": {"poster_path": "/eEQ4JieKyLBRRSRnRGuPlxp7qiS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 108979549, "overview": "Frank Martin puts the driving gloves on to deliver Valentina, the kidnapped daughter of a Ukranian government official, from Marseilles to Odessa on the Black Sea. En route, he has to contend with thugs who want to intercept Valentina's safe delivery and not let his personal feelings get in the way of his dangerous objective.", "video": false, "id": 13387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Transporter 3", "tagline": "This time, the rules are the same. Except one.", "vote_count": 401, "homepage": "http://transporter3film.com/", "belongs_to_collection": {"backdrop_path": "/qDuTIGAEbxF3jP9zNILLAoxNLpU.jpg", "poster_path": "/5MWCU1Eqc2HB6zZKFrGrgdH4d4M.jpg", "id": 9518, "name": "The Transporter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt1129442", "adult": false, "backdrop_path": "/rgkPGIxOWKSvQjAhn0mLuYvqfLO.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Grive Productions", "id": 6877}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2008-11-26", "popularity": 1.33448120694491, "original_title": "Transporter 3", "budget": 30000000, "cast": [{"name": "Jason Statham", "character": "Frank Martin", "id": 976, "credit_id": "52fe45639251416c75054a6b", "cast_id": 7, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Inspector Tarconi", "id": 7693, "credit_id": "52fe45639251416c75054a6f", "cast_id": 8, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 1}, {"name": "Natalya Rudakova", "character": "Valentina Vasilev", "id": 75036, "credit_id": "52fe45639251416c75054a73", "cast_id": 9, "profile_path": "/kbAM9Egh45zrY3RiqsrJdYkRuXA.jpg", "order": 2}, {"name": "Robert Knepper", "character": "Johnson", "id": 17343, "credit_id": "52fe45639251416c75054a77", "cast_id": 10, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 3}, {"name": "David Atrakchi", "character": "Malcom Manville", "id": 134410, "credit_id": "52fe45639251416c75054a7b", "cast_id": 11, "profile_path": "/nE8FAAlgbtMZOXnTDSl9HUchqxp.jpg", "order": 4}, {"name": "Alex Kobold", "character": "Leonid's Aide", "id": 134411, "credit_id": "52fe45639251416c75054a7f", "cast_id": 12, "profile_path": "/1i3EgjRYYna6TpYS6z4HJ8znuVs.jpg", "order": 5}, {"name": "Yann Sundberg", "character": "Flag", "id": 134412, "credit_id": "52fe45639251416c75054a83", "cast_id": 13, "profile_path": "/5GR6dwAUTnep2EpuWvUheTouW1K.jpg", "order": 6}, {"name": "Eriq Ebouaney", "character": "Ice", "id": 25078, "credit_id": "52fe45639251416c75054a87", "cast_id": 14, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 7}, {"name": "Silvio Simac", "character": "Mighty Joe", "id": 134414, "credit_id": "52fe45639251416c75054a8b", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Timo Dierkes", "character": "Otto", "id": 7816, "credit_id": "52fe45639251416c75054a8f", "cast_id": 16, "profile_path": "/pU2nuvme5AGFtLQuYZ0kUyqQHEo.jpg", "order": 9}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "52fe45639251416c75054a49", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 5.9, "runtime": 104}, "82687": {"poster_path": "/kSkn9lunpGQClYzpmcu7fnTX8ZZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41300000, "overview": "An inventor and his mom hit the road together so he can sell his latest invention.", "video": false, "id": 82687, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Guilt Trip", "tagline": "Get ready for one mother of a road trip", "vote_count": 126, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1694020", "adult": false, "backdrop_path": "/tLTWqdazwadvgtBDkcYzUXvj15p.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}], "release_date": "2012-12-19", "popularity": 0.613957464895732, "original_title": "The Guilt Trip", "budget": 40000000, "cast": [{"name": "Seth Rogen", "character": "Andy Brewster", "id": 19274, "credit_id": "52fe486a9251416c9108bb2b", "cast_id": 13, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Barbra Streisand", "character": "Joyce Brewster", "id": 10400, "credit_id": "52fe486a9251416c9108bb3b", "cast_id": 17, "profile_path": "/iLkX0Qwz2BH42rcZ0yWqPtyKSeN.jpg", "order": 1}, {"name": "Yvonne Strahovski", "character": "Jessica", "id": 63312, "credit_id": "52fe486a9251416c9108bb2f", "cast_id": 14, "profile_path": "/mgcaJaKhZtakVldW2KXYXhQ6ZJY.jpg", "order": 2}, {"name": "Colin Hanks", "character": "Rob", "id": 3492, "credit_id": "52fe486a9251416c9108bb33", "cast_id": 15, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 3}, {"name": "Adam Scott", "character": "Andrew Margolis Jr.", "id": 36801, "credit_id": "53342ee4c3a3682a94001fcf", "cast_id": 29, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Danny Pudi", "character": "Sanjay", "id": 205179, "credit_id": "52fe486a9251416c9108bb3f", "cast_id": 18, "profile_path": "/tQePBWCu70VyqBWZNQBHFFV09E9.jpg", "order": 5}, {"name": "Kathy Najimy", "character": "", "id": 11074, "credit_id": "52fe486a9251416c9108bb43", "cast_id": 19, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 6}, {"name": "Casey Wilson", "character": "Amanda", "id": 83872, "credit_id": "52fe486a9251416c9108bb47", "cast_id": 20, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 7}, {"name": "Brett Cullen", "character": "Ben", "id": 16841, "credit_id": "52fe486a9251416c9108bb4b", "cast_id": 21, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 8}, {"name": "Dale Dickey", "character": "Tammy", "id": 46814, "credit_id": "52fe486a9251416c9108bb4f", "cast_id": 22, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 9}, {"name": "Michael Cassidy", "character": "Fake Andy", "id": 56556, "credit_id": "52fe486a9251416c9108bb53", "cast_id": 23, "profile_path": "/x9jWnEivc0XhvlO8Xch0VCFu2m5.jpg", "order": 10}, {"name": "Brandon Keener", "character": "", "id": 149829, "credit_id": "52fe486a9251416c9108bb57", "cast_id": 24, "profile_path": "/1FeIVSTtrUjMRC0aFpKU6Q4y7M9.jpg", "order": 11}, {"name": "Robert Curtis Brown", "character": "Bob Ferguson", "id": 233298, "credit_id": "52fe486a9251416c9108bb5b", "cast_id": 25, "profile_path": "/1plgmYJoFzTUJwPD1YbMtl9NQxD.jpg", "order": 12}, {"name": "Ari Graynor", "character": "Joyce Margolis", "id": 71552, "credit_id": "52fe486a9251416c9108bb5f", "cast_id": 26, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 13}, {"name": "Nora Dunn", "character": "Amy", "id": 4496, "credit_id": "52fe486a9251416c9108bb63", "cast_id": 27, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 14}, {"name": "Miriam Margolyes", "character": "Anita", "id": 6199, "credit_id": "53071482c3a368625900052e", "cast_id": 28, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 15}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe486a9251416c9108baeb", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 5.5, "runtime": 95}, "13389": {"poster_path": "/rUKws37KgZ6rtUObEvTLn4ziEjN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73174566, "overview": "Two veteran New York City detectives work to identify the possible connection between a recent murder and a case they believe they solved years ago; is there a serial killer on the loose, and did they perhaps put the wrong person behind bars?", "video": false, "id": 13389, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Righteous Kill", "tagline": "Most people respect the badge. Everybody respects the gun.", "vote_count": 75, "homepage": "http://www.righteouskill-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034331", "adult": false, "backdrop_path": "/k3QPHRK6hn1fVyaSgHgyzckF3MQ.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "InVenture Entertainment", "id": 2831}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Nu-Image Films", "id": 21543}], "release_date": "2008-09-12", "popularity": 0.525744502094769, "original_title": "Righteous Kill", "budget": 60000000, "cast": [{"name": "Robert De Niro", "character": "Turk", "id": 380, "credit_id": "52fe45639251416c75054ac7", "cast_id": 9, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Carla Gugino", "character": "Karen Corelli", "id": 17832, "credit_id": "52fe45639251416c75054ab5", "cast_id": 4, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 2}, {"name": "50 Cent", "character": "Spider", "id": 62644, "credit_id": "52fe45639251416c75054ab1", "cast_id": 3, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 3}, {"name": "Al Pacino", "character": "Rooster", "id": 1158, "credit_id": "52fe45639251416c75054acb", "cast_id": 10, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 3}, {"name": "Donnie Wahlberg", "character": "Detective Ted Riley", "id": 2680, "credit_id": "52fe45639251416c75054ab9", "cast_id": 6, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 5}, {"name": "Brian Dennehy", "character": "Lieutentant Hingis", "id": 6197, "credit_id": "52fe45639251416c75054abd", "cast_id": 7, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 5}, {"name": "John Leguizamo", "character": "Detective Simon Perez", "id": 5723, "credit_id": "52fe45639251416c75054acf", "cast_id": 11, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 6}, {"name": "Trilby Glover", "character": "Jessica", "id": 142101, "credit_id": "52fe45639251416c75054ad3", "cast_id": 12, "profile_path": "/iWTRGJqFIAma11W9dAckbwWuZEf.jpg", "order": 7}, {"name": "Melissa Leo", "character": "Cheryl", "id": 6832, "credit_id": "52fe45639251416c75054ad7", "cast_id": 13, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 8}, {"name": "Shirly Brener", "character": "Natalya", "id": 65123, "credit_id": "52fe45639251416c75054adb", "cast_id": 14, "profile_path": "/tB1xwjGYzRjsH7NLnJgCA3QlsIm.jpg", "order": 9}, {"name": "Ajay Naidu", "character": "Dr Chadrabar", "id": 1982, "credit_id": "52fe45639251416c75054adf", "cast_id": 15, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 10}, {"name": "Rob Dyrdek", "character": "Rambo", "id": 142589, "credit_id": "52fe45639251416c75054ae3", "cast_id": 16, "profile_path": "/cYYCsdMu8IFdaqSIfauzwpcH7mc.jpg", "order": 11}], "directors": [{"name": "Jon Avnet", "department": "Directing", "job": "Director", "credit_id": "52fe45639251416c75054ac3", "profile_path": "/ckcE5lD7KNCh6iYHwCbfbs4r2y2.jpg", "id": 18250}], "vote_average": 6.3, "runtime": 101}, "13394": {"poster_path": "/7gX0tyFT7sIgFROm5jXozJn0lDS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Christmas tree isn't the only thing green in this new holiday classic. Shrek is back and trying to get into the spirit of the season. After promising Fiona and the kids a Christmas they'll remember, he is forced to take a crash course in the holiday. But just when he thinks he has everything for their quiet family Christmas just right, there is a knock at the door.", "video": false, "id": 13394, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek the Halls", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0897387", "adult": false, "backdrop_path": "/deIB7BNbJT37GuFcDyUzPh8uqyO.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2007-11-28", "popularity": 0.89228268222836, "original_title": "Shrek the Halls", "budget": 60000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe45649251416c75054c49", "cast_id": 7, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe45649251416c75054c4d", "cast_id": 8, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe45649251416c75054c51", "cast_id": 9, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe45649251416c75054c55", "cast_id": 10, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 3}, {"name": "Cody Cameron", "character": "Pinocchio / Three Pigs (voice)", "id": 12095, "credit_id": "52fe45649251416c75054c59", "cast_id": 11, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 4}, {"name": "Susan Fitzer", "character": "Suzie Cookie (voice)", "id": 76741, "credit_id": "52fe45649251416c75054c5d", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Christopher Knights", "character": "Blind Mice (voice)", "id": 12097, "credit_id": "52fe45649251416c75054c61", "cast_id": 14, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 6}, {"name": "Gary Trousdale", "character": "Santa (voice)", "id": 62047, "credit_id": "52fe45649251416c75054c65", "cast_id": 15, "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "order": 7}, {"name": "Conrad Vernon", "character": "Gingerbread Man (voice)", "id": 12080, "credit_id": "52fe45649251416c75054c69", "cast_id": 16, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 8}, {"name": "Aron Warner", "character": "Wolf (voice)", "id": 12106, "credit_id": "52fe45649251416c75054c6d", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Marissa Jaret Winokur", "character": "Bookstore Clerk (voice)", "id": 76742, "credit_id": "52fe45649251416c75054c71", "cast_id": 18, "profile_path": "/mpB7Ny5yhuvRS7pqpD824aid4hG.jpg", "order": 10}, {"name": "Miles Christopher Bakshi", "character": "Ogre Baby (voice)", "id": 76743, "credit_id": "52fe45649251416c75054c75", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Nina Zoe Bakshi", "character": "Ogre Baby (voice)", "id": 76744, "credit_id": "52fe45649251416c75054c79", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Dante James Hauser", "character": "Ogre Baby (voice)", "id": 76745, "credit_id": "52fe45649251416c75054c7d", "cast_id": 21, "profile_path": null, "order": 13}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe45639251416c75054c27", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}], "vote_average": 5.6, "runtime": 58}, "4964": {"poster_path": "/z4jvDMQwjc42p6zfZysYjBX7EHZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 148761765, "overview": "For fun loving party animal Ben Stone, the last thing he ever expected was for his one night stand to show up on his doorstep eight weeks later to tell him she's pregnant.", "video": false, "id": 4964, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Knocked Up", "tagline": "Save the due date.", "vote_count": 308, "homepage": "http://knockedupmovie.com/", "belongs_to_collection": {"backdrop_path": "/sVXPlw09BLvqTQQYlqtAHruu1hs.jpg", "poster_path": "/ttZrgOVWavGJM4yPUovcr4BKc4f.jpg", "id": 182436, "name": "Knocked Up / This Is 40 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0478311", "adult": false, "backdrop_path": "/cmEojt7Ykuk6p2argyu0hEDoo0d.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}, {"name": "Universal Pictures", "id": 33}], "release_date": "2007-06-01", "popularity": 1.17058951387891, "original_title": "Knocked Up", "budget": 30000000, "cast": [{"name": "Seth Rogen", "character": "Ben Stone", "id": 19274, "credit_id": "52fe43e8c3a36847f80779fb", "cast_id": 2, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Katherine Heigl", "character": "Alison Scott", "id": 25541, "credit_id": "52fe43e8c3a36847f80779ff", "cast_id": 3, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Debbie", "id": 41087, "credit_id": "52fe43e8c3a36847f8077a51", "cast_id": 17, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Pete", "id": 22226, "credit_id": "52fe43e8c3a36847f8077a55", "cast_id": 18, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Jason Segel", "character": "Jason", "id": 41088, "credit_id": "52fe43e8c3a36847f8077a59", "cast_id": 19, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 4}, {"name": "Jay Baruchel", "character": "Jay", "id": 449, "credit_id": "52fe43e8c3a36847f8077a5d", "cast_id": 20, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 5}, {"name": "Jonah Hill", "character": "Jonah", "id": 21007, "credit_id": "52fe43e8c3a36847f8077a61", "cast_id": 21, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 6}, {"name": "Martin Starr", "character": "Martin", "id": 41089, "credit_id": "52fe43e8c3a36847f8077a65", "cast_id": 22, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 7}, {"name": "Maude Apatow", "character": "Sadie", "id": 41090, "credit_id": "52fe43e8c3a36847f8077a69", "cast_id": 23, "profile_path": "/3VOawL9cIJD2btDRYWoOHnJIkAM.jpg", "order": 8}, {"name": "Harold Ramis", "character": "Ben's Dad", "id": 1524, "credit_id": "52fe43e8c3a36847f8077a6d", "cast_id": 24, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 9}, {"name": "Alan Tudyk", "character": "Jack", "id": 21088, "credit_id": "52fe43e8c3a36847f8077a71", "cast_id": 25, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 10}, {"name": "Kristen Wiig", "character": "Jill", "id": 41091, "credit_id": "52fe43e8c3a36847f8077a75", "cast_id": 26, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 11}, {"name": "Bill Hader", "character": "Brent", "id": 19278, "credit_id": "52fe43e8c3a36847f8077a79", "cast_id": 27, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 12}, {"name": "Craig Robinson", "character": "Club Doorman", "id": 64342, "credit_id": "52fe43e8c3a36847f8077a7d", "cast_id": 28, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 13}, {"name": "Charlyne Yi", "character": "Jodi", "id": 93285, "credit_id": "52fe43e8c3a36847f8077a93", "cast_id": 32, "profile_path": "/nH6Wfy1ikRNj97RWLZ2FRPbxSOA.jpg", "order": 14}, {"name": "Ken Jeong", "character": "Doctor Kuni", "id": 83586, "credit_id": "52fe43e8c3a36847f8077a97", "cast_id": 33, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 15}, {"name": "B. J. Novak", "character": "Young Doctor", "id": 107770, "credit_id": "52fe43e8c3a36847f8077a9b", "cast_id": 34, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 16}, {"name": "Jessica Alba", "character": "Herself (uncredited)", "id": 56731, "credit_id": "52fe43e8c3a36847f8077a9f", "cast_id": 35, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 17}, {"name": "Steve Carell", "character": "Himself (uncredited)", "id": 4495, "credit_id": "52fe43e8c3a36847f8077aa3", "cast_id": 36, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 18}, {"name": "Andy Dick", "character": "Himself (uncredited)", "id": 43120, "credit_id": "52fe43e8c3a36847f8077aa7", "cast_id": 37, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 19}, {"name": "James Franco", "character": "Himself (uncredited)", "id": 17051, "credit_id": "52fe43e8c3a36847f8077aab", "cast_id": 38, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 20}, {"name": "Eva Mendes", "character": "Herself (uncredited)", "id": 8170, "credit_id": "52fe43e8c3a36847f8077aaf", "cast_id": 39, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 21}, {"name": "Ryan Seacrest", "character": "Himself (uncredited)", "id": 167662, "credit_id": "52fe43e8c3a36847f8077ab3", "cast_id": 40, "profile_path": "/nsNVAiUnb6BUQXOQIxEEozqS1Zb.jpg", "order": 22}, {"name": "Dax Shepard", "character": "Himself (uncredited)", "id": 51298, "credit_id": "52fe43e8c3a36847f8077ab7", "cast_id": 41, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 23}, {"name": "Adam Scott", "character": "Samuel", "id": 36801, "credit_id": "52fe43e8c3a36847f8077abb", "cast_id": 42, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 24}, {"name": "Catherine Reitman", "character": "Alison's Friend", "id": 154826, "credit_id": "5303774b925141218c5bf75c", "cast_id": 43, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 25}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe43e8c3a36847f80779f7", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 5.9, "runtime": 129}, "13413": {"poster_path": "/tdvyi9asDeOF65MwTqNNMoAhqP4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "What lengths will a robot undergo to do his job? BURN\u2022E is a dedicated hard working robot who finds himself locked out of his ship. BURN\u2022E quickly learns that completing a simple task can often be a very difficult endeavor.", "video": false, "id": 13413, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "BURN\u00b7E", "tagline": "", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1334585", "adult": false, "backdrop_path": "/us64LmtSBNELHIprKB7CSt8MEvC.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2008-11-17", "popularity": 0.834428975030096, "original_title": "BURN\u00b7E", "budget": 0, "cast": [{"name": "Angus MacLane", "character": "BURN-E", "id": 7929, "credit_id": "52fe45669251416c750550d5", "cast_id": 2, "profile_path": "/7U1mEvzHGNJiC07EOhKIKSl3Qiy.jpg", "order": 0}, {"name": "Tessa Swigart", "character": "Maintenance computer", "id": 138073, "credit_id": "52fe45669251416c750550d9", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Ben Burtt", "character": "WALL\u00b7E / M-O", "id": 670, "credit_id": "52fe45669251416c750550dd", "cast_id": 4, "profile_path": "/pYSkspLspSDVLZUQ43pByOebsCX.jpg", "order": 2}, {"name": "Jeff Garlin", "character": "Captain", "id": 60074, "credit_id": "52fe45669251416c750550e1", "cast_id": 5, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 3}, {"name": "Elissa Knight", "character": "EVE", "id": 72754, "credit_id": "52fe45669251416c750550e5", "cast_id": 6, "profile_path": "/21JKhZc6bTAoHcwSjQhZcdhhx5d.jpg", "order": 4}], "directors": [{"name": "Angus MacLane", "department": "Directing", "job": "Director", "credit_id": "52fe45669251416c750550d1", "profile_path": "/7U1mEvzHGNJiC07EOhKIKSl3Qiy.jpg", "id": 7929}], "vote_average": 8.0, "runtime": 8}, "871": {"poster_path": "/ktS3v2OfBouSiDDA3tQsrjidt5i.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33395426, "overview": "Taylor and two other astronauts come out of deep hibernation to find that their ship has crashed. Escaping with little more than clothes they find that they have landed on a planet where men are pre-lingual and uncivilized while apes have learned speech and technology. Taylor is captured and taken to the city of the apes after damaging his throat so that he is silent and cannot communicate with the apes.", "video": false, "id": 871, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Planet of the Apes", "tagline": "Somewhere in the Universe, there must be something better than man!", "vote_count": 229, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2BQc7pXBU7zWGWMJDQBDuV5X8ra.jpg", "poster_path": "/n9nUdnx1awdQeHC6FTiNohr2fiT.jpg", "id": 1709, "name": "Planet of the Apes (Original) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0063442", "adult": false, "backdrop_path": "/fRWXvva07M2n6ZBMKDAd6dBA7ZO.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "APJAC Productions", "id": 12943}], "release_date": "1968-02-07", "popularity": 0.773222623069736, "original_title": "Planet of the Apes", "budget": 5800000, "cast": [{"name": "Charlton Heston", "character": "George Taylor", "id": 10017, "credit_id": "52fe4285c3a36847f8025619", "cast_id": 1, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 0}, {"name": "Roddy McDowall", "character": "Cornelius", "id": 7505, "credit_id": "52fe4285c3a36847f802561d", "cast_id": 2, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 1}, {"name": "Kim Hunter", "character": "Zira", "id": 10539, "credit_id": "52fe4285c3a36847f8025621", "cast_id": 3, "profile_path": "/nB44EysedphcIWftSqyyG2qBYk8.jpg", "order": 2}, {"name": "Maurice Evans", "character": "Dr. Zaius", "id": 12023, "credit_id": "52fe4285c3a36847f802566d", "cast_id": 20, "profile_path": "/tpb69FMfZVErJzpyipYQBGsIRp.jpg", "order": 3}, {"name": "James Daly", "character": "Dr. Honorious", "id": 13259, "credit_id": "52fe4285c3a36847f8025625", "cast_id": 5, "profile_path": "/rTVNNmOksnx8PSSiNztDXoTO3rG.jpg", "order": 4}, {"name": "Linda Harrison", "character": "Nova", "id": 13260, "credit_id": "52fe4285c3a36847f8025629", "cast_id": 6, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 5}, {"name": "Robert Gunner", "character": "Landon", "id": 13261, "credit_id": "52fe4285c3a36847f802562d", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Lou Wagner", "character": "Lucius", "id": 13262, "credit_id": "52fe4285c3a36847f8025631", "cast_id": 8, "profile_path": "/w5ONY2iwmYvcPp8aa08UKEg7UeV.jpg", "order": 7}, {"name": "Woodrow Parfrey", "character": "Dr. Maximus", "id": 13263, "credit_id": "52fe4285c3a36847f8025635", "cast_id": 9, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 8}, {"name": "Jeff Burton", "character": "Dodge", "id": 13264, "credit_id": "52fe4285c3a36847f8025639", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "James Whitmore", "character": "President of the Assembly", "id": 6577, "credit_id": "549edc6bc3a3682f21008684", "cast_id": 22, "profile_path": "/r1xOgXFjqhn2fonn78rlXKPZGFw.jpg", "order": 10}, {"name": "Buck Kartalian", "character": "Julius", "id": 111489, "credit_id": "549edc949251411d53002bc6", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Norman Burton", "character": "Hunt Leader", "id": 10195, "credit_id": "549edca3c3a3682f1b0084f1", "cast_id": 24, "profile_path": "/ezoKMuCDcWSnDaB5pVWMyj21E6H.jpg", "order": 12}, {"name": "Wright King", "character": "Dr. Galen", "id": 10541, "credit_id": "549edcb39251411d53002bcb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Paul Lambert", "character": "Minister", "id": 1084815, "credit_id": "549edccbc3a368554200530a", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Franklin J. Schaffner", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f802563f", "profile_path": "/dqrDUANz8sf0BXTBh0gr1heUr5U.jpg", "id": 13265}], "vote_average": 7.0, "runtime": 112}, "46195": {"poster_path": "/tljxcbuC5MT4SzpwAYYYnqlQ9JC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 471009915, "overview": "From the makers of the hit \"Ice Age\" series comes \"Rio,\" a comedy adventure about taking a walk on the wild side. Blu is a domesticated Macaw who never learned to fly, living a comfortable life with his owner and best friend Linda in the small town of Moose Lake, Minnesota. Blu and Linda think he's the last of his kind, but when they learn about another Macaw who lives in Rio de Janeiro, they head to the faraway and exotic land to find Jewel, Blu's female counterpart. Not long after they arrive, Blu and Jewel are kidnapped by a group of bungling animal smugglers. With the help of street smart Jewel, and a group of wise-cracking and smooth-talking city birds, Blu escapes. Now, with his new friends by his side, Blu will have to find the courage to learn to fly, thwart the kidnappers who are hot on their trail, and return to Linda, the best friend a bird ever had.", "video": false, "id": 46195, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Rio", "tagline": "1 out of every 8 Americans is afraid of flying. Most of them don't have feathers.", "vote_count": 1008, "homepage": "http://www.riomovies.com/", "belongs_to_collection": {"backdrop_path": "/9Rgf0Lcp0bZ0ik3r93ACleL1GJp.jpg", "poster_path": "/pT6r9PuRyIldckN9mKDIkT21nCA.jpg", "id": 229932, "name": "Rio Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1436562", "adult": false, "backdrop_path": "/odbEuhGUgSkeWWD1sPoylXTZMUa.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 26162}, {"name": "Twentieth Century Fox Animation", "id": 11749}], "release_date": "2011-04-15", "popularity": 1.34267135527331, "original_title": "Rio", "budget": 90000000, "cast": [{"name": "Jesse Eisenberg", "character": "Blu (voice)", "id": 44735, "credit_id": "52fe46e9c3a36847f81195ed", "cast_id": 15, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Jewel (voice)", "id": 1813, "credit_id": "52fe46e9c3a36847f81195f5", "cast_id": 17, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Linda (voice)", "id": 41087, "credit_id": "52fe46e9c3a36847f81195dd", "cast_id": 12, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Jane Lynch", "character": "Alice/Goose (voice)", "id": 43775, "credit_id": "52fe46e9c3a36847f81195d1", "cast_id": 9, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 4}, {"name": "Will.i.am", "character": "Pedro (voice)", "id": 82092, "credit_id": "52fe46e9c3a36847f81195d9", "cast_id": 11, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 5}, {"name": "Wanda Sykes", "character": "Chloe/Goose (voice)", "id": 27102, "credit_id": "52fe46e9c3a36847f81195cd", "cast_id": 8, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 6}, {"name": "George Lopez", "character": "Rafael (voice)", "id": 41798, "credit_id": "52fe46e9c3a36847f81195f1", "cast_id": 16, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 6}, {"name": "Jamie Foxx", "character": "Nico (voice)", "id": 134, "credit_id": "52fe46e9c3a36847f81195d5", "cast_id": 10, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 8}, {"name": "Rodrigo Santoro", "character": "Tulio (voice)", "id": 17289, "credit_id": "52fe46e9c3a36847f81195f9", "cast_id": 18, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 9}, {"name": "Jemaine Clement", "character": "Nigel (voice)", "id": 55936, "credit_id": "52fe46e9c3a36847f81195fd", "cast_id": 19, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 10}, {"name": "Jake T. Austin", "character": "Fernando (voice)", "id": 60255, "credit_id": "52fe46e9c3a36847f8119601", "cast_id": 20, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 11}, {"name": "Tracy Morgan", "character": "Luiz (voice)", "id": 56903, "credit_id": "52fe46e9c3a36847f8119605", "cast_id": 21, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 12}, {"name": "Carlos Ponce", "character": "Marcel (voice)", "id": 62067, "credit_id": "52fe46e9c3a36847f8119609", "cast_id": 22, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 13}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe46e9c3a36847f81195c3", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.5, "runtime": 96}, "5236": {"poster_path": "/5Lif1qGiyaF8OqG9lR3eqzeEC3S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15785148, "overview": "A petty thief posing as an actor is brought to Los Angeles for an unlikely audition and finds himself in the middle of a murder investigation along with his high school dream girl and a detective who's been training him for his upcoming role...", "video": false, "id": 5236, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Kiss Kiss Bang Bang", "tagline": "SeX. MurdEr. MyStery. Welcome to the party.", "vote_count": 224, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373469", "adult": false, "backdrop_path": "/wGoyTXBDWHh2V7Jft0R9A0HdKHA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "2005-10-21", "popularity": 0.8511729301954, "original_title": "Kiss Kiss Bang Bang", "budget": 15000000, "cast": [{"name": "Robert Downey Jr.", "character": "Harry Lockhart", "id": 3223, "credit_id": "52fe43fec3a36847f807c457", "cast_id": 35, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Val Kilmer", "character": "Gay Perry", "id": 5576, "credit_id": "52fe43fec3a36847f807c3b9", "cast_id": 2, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 1}, {"name": "Michelle Monaghan", "character": "Harmony Faith Lane", "id": 11705, "credit_id": "52fe43fec3a36847f807c3bd", "cast_id": 3, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 2}, {"name": "Corbin Bernsen", "character": "Harlan Dexter", "id": 21246, "credit_id": "52fe43fec3a36847f807c3c1", "cast_id": 4, "profile_path": "/5E4ptQ88NCyeIYlS8NkMm9BzWQJ.jpg", "order": 3}, {"name": "Dash Mihok", "character": "Mr. Frying Pan", "id": 6066, "credit_id": "52fe43fec3a36847f807c3c5", "cast_id": 5, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 4}, {"name": "Larry Miller", "character": "Dabney Shaw", "id": 1211, "credit_id": "52fe43fec3a36847f807c3c9", "cast_id": 6, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 5}, {"name": "Rockmond Dunbar", "character": "Mr. Fire", "id": 17345, "credit_id": "52fe43fec3a36847f807c3cd", "cast_id": 7, "profile_path": "/6ydZZk6sKg8YhdVLaMAr0T7SZox.jpg", "order": 6}, {"name": "Shannyn Sossamon", "character": "Pink Hair Girl", "id": 27855, "credit_id": "52fe43fec3a36847f807c3d1", "cast_id": 8, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 7}, {"name": "Angela Lindvall", "character": "Flicka", "id": 42158, "credit_id": "52fe43fec3a36847f807c3d5", "cast_id": 9, "profile_path": "/xp0U715ol7HUjBIgvaeYI93f4dm.jpg", "order": 8}, {"name": "Indio Falconer Downey", "character": "Harry Age 9", "id": 42159, "credit_id": "52fe43fec3a36847f807c3d9", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Ariel Winter", "character": "Harmony Age 7", "id": 42160, "credit_id": "52fe43fec3a36847f807c3dd", "cast_id": 11, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 10}, {"name": "Duane Carnahan", "character": "Chainsaw Kid", "id": 42163, "credit_id": "52fe43fec3a36847f807c3e1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Josh Richman", "character": "Rickie", "id": 3209, "credit_id": "52fe43fec3a36847f807c3e5", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Martha Hackett", "character": "Pistol Woman", "id": 42165, "credit_id": "52fe43fec3a36847f807c3e9", "cast_id": 14, "profile_path": "/wIpkcSbOkQvZackeUtbowBbDYfQ.jpg", "order": 13}, {"name": "Nancy Fish", "character": "NY Casting Woman", "id": 42168, "credit_id": "52fe43fec3a36847f807c3ed", "cast_id": 15, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 14}], "directors": [{"name": "Shane Black", "department": "Directing", "job": "Director", "credit_id": "52fe43fec3a36847f807c441", "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "id": 1108}], "vote_average": 7.1, "runtime": 103}, "4970": {"poster_path": "/jwTiVNi21EhaP8QbkJkVUn2SYsa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141591324, "overview": "After a car crash, a criminal psychologist (Halle Berry) comes to, only to find that she's a patient in the same mental institution that currently employs her. It seems she's been accused of murdering her husband -- but she has no memory of committing the crime. As she tries to regain her memory and convince her co-workers of her innocence, a vengeful spirit uses her as an earthly pawn, which further convinces everyone of her guilt.", "video": false, "id": 4970, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Gothika", "tagline": "Because someone is dead doesn't mean they're gone.", "vote_count": 160, "homepage": "http://gothikamovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0348836", "adult": false, "backdrop_path": "/z3RwN10gTG28Q9oPsnTj8rtbdJe.jpg", "production_companies": [{"name": "Dark Castle Entertainment", "id": 1786}], "release_date": "2003-10-24", "popularity": 0.893310777213831, "original_title": "Gothika", "budget": 40000000, "cast": [{"name": "Halle Berry", "character": "Miranda Grey", "id": 4587, "credit_id": "52fe43e9c3a36847f8077d49", "cast_id": 14, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Pete Graham", "id": 3223, "credit_id": "52fe43e9c3a36847f8077d4d", "cast_id": 15, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Charles S. Dutton", "character": "Dr. Douglas Grey", "id": 17764, "credit_id": "52fe43e9c3a36847f8077d51", "cast_id": 16, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Chloe Sava", "id": 955, "credit_id": "52fe43e9c3a36847f8077d55", "cast_id": 17, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "John Carroll Lynch", "character": "Sheriff Ryan", "id": 3911, "credit_id": "52fe43e9c3a36847f8077d59", "cast_id": 18, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 4}, {"name": "Bernard Hill", "character": "Phil Parsons", "id": 1369, "credit_id": "52fe43e9c3a36847f8077d5d", "cast_id": 19, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 5}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe43e9c3a36847f8077cfd", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 5.9, "runtime": 98}, "5255": {"poster_path": "/sxRSUqxcUsF3EjQDYJscqs16AaI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 305875730, "overview": "This is the story of a young boy on Christmas Eve who boards a magical train that's headed to the North Pole. What unfolds is an an adventure which follows a doubting boy, who takes an extraordinary train ride to the North Pole; during this ride, he embarks on a journey of self-discovery which shows him that the wonder of life never fades for those who believe.", "video": false, "id": 5255, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Polar Express", "tagline": "Journey Beyond Your Imagination.", "vote_count": 360, "homepage": "http://wwws.warnerbros.de/movies/polarexpress/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338348", "adult": false, "backdrop_path": "/mXPoxiRny3VPH0iXJWXlyTq1mjo.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Golden Mean", "id": 1867}, {"name": "Universal CGI", "id": 1868}, {"name": "Shangri-La Entertainment", "id": 2265}, {"name": "Playtone", "id": 4171}, {"name": "Warner Bros.", "id": 6194}, {"name": "ImageMovers", "id": 11395}], "release_date": "2004-11-10", "popularity": 1.20211367263255, "original_title": "The Polar Express", "budget": 165000000, "cast": [{"name": "Tom Hanks", "character": "Hero Boy | Father | Conducter | Santa Clause | Scrooge | Hobo", "id": 31, "credit_id": "52fe4400c3a36847f807c9c1", "cast_id": 26, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Michael Jeter", "character": "Smokey | Steamer", "id": 2169, "credit_id": "52fe4400c3a36847f807c9c5", "cast_id": 27, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 0}, {"name": "Eddie Deezen", "character": "Know-It-All", "id": 42362, "credit_id": "52fe4400c3a36847f807c9c9", "cast_id": 36, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 0}, {"name": "Chris Coppola", "character": "Toothless Boy", "id": 23791, "credit_id": "52fe4400c3a36847f807c9d5", "cast_id": 39, "profile_path": "/A3vl2TSWtz5Fh1MTeCRs7vTz6Tk.jpg", "order": 0}, {"name": "Nona Gaye", "character": "Hero Girl", "id": 18286, "credit_id": "52fe4400c3a36847f807c9cd", "cast_id": 37, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 5}, {"name": "Peter Scolari", "character": "Lonely Boy", "id": 42363, "credit_id": "52fe4400c3a36847f807c9d1", "cast_id": 38, "profile_path": "/tLSgD0c7i2rpIS5kNfTysy6Sz0P.jpg", "order": 6}, {"name": "Charles Fleischer", "character": "Elf General", "id": 12826, "credit_id": "52fe4400c3a36847f807c9d9", "cast_id": 41, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 8}, {"name": "Steven Tyler", "character": "Elf Lieutenant", "id": 37935, "credit_id": "52fe4400c3a36847f807c9dd", "cast_id": 42, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 9}, {"name": "Leslie Zemeckis", "character": "Mother", "id": 42287, "credit_id": "52fe4400c3a36847f807c9e1", "cast_id": 43, "profile_path": null, "order": 10}, {"name": "Julene Renee", "character": "Red Head Girl", "id": 42286, "credit_id": "52fe4400c3a36847f807c9e5", "cast_id": 44, "profile_path": "/gONOL0vTflEd5yH1x3hcr2maFV5.jpg", "order": 11}, {"name": "Andy Pellick", "character": "Pastry Chef", "id": 1080274, "credit_id": "52fe4400c3a36847f807c9e9", "cast_id": 45, "profile_path": null, "order": 12}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4400c3a36847f807c92d", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.1, "runtime": 100}, "13448": {"poster_path": "/grN4lETrHNejatQZFP2F2DAWMU4.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 356613439, "overview": "Harvard symbologist Robert Langdon investigates a mysterious symbol seared into the chest of a murdered physicist. He discovers evidence of the unimaginable, the rebirth of an ancient secret brotherhood known as the Illuminati, the most powerful underground organization ever to walk the earth.", "video": false, "id": 13448, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Angels & Demons", "tagline": "The holiest event of our time. Perfect for their return.", "vote_count": 689, "homepage": "http://www.angelsanddemons.com/", "belongs_to_collection": {"backdrop_path": "/j1IqpLhCypllamjKe6C2RstjfEQ.jpg", "poster_path": "/8AeWdpMobmSlo4G2eY4w8REdIDe.jpg", "id": 115776, "name": "Robert Langdon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0808151", "adult": false, "backdrop_path": "/wjrTJhDQEqmmaEfbM2Qo8ibzvSS.jpg", "production_companies": [{"name": "Panorama Films", "id": 5561}, {"name": "Columbia Pictures", "id": 5}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Skylark Productions", "id": 8253}], "release_date": "2009-05-15", "popularity": 1.56156108890759, "original_title": "Angels & Demons", "budget": 150000000, "cast": [{"name": "Tom Hanks", "character": "Robert Langdon", "id": 31, "credit_id": "52fe45699251416c75055939", "cast_id": 4, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Carlo Ventresca", "id": 3061, "credit_id": "52fe45699251416c75055941", "cast_id": 6, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Ayelet Zurer", "character": "Vittoria Vetra", "id": 8786, "credit_id": "52fe45699251416c7505593d", "cast_id": 5, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Commander Richter", "id": 1640, "credit_id": "52fe45699251416c75055945", "cast_id": 7, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Pierfrancesco Favino", "character": "Inspector Olivetti", "id": 17839, "credit_id": "52fe45699251416c7505595d", "cast_id": 14, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 4}, {"name": "Nikolaj Lie Kaas", "character": "Mr. Gray", "id": 1018, "credit_id": "52fe45699251416c75055969", "cast_id": 17, "profile_path": "/xO4yWra3xoK0rdzDN4OC8Jwh0FH.jpg", "order": 5}, {"name": "Armin Mueller-Stahl", "character": "Cardinal Strauss", "id": 12647, "credit_id": "52fe45699251416c75055955", "cast_id": 12, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 6}, {"name": "Thure Lindhardt", "character": "Chartrand", "id": 20258, "credit_id": "52fe45699251416c75055961", "cast_id": 15, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 7}, {"name": "David Pasquesi", "character": "Claudio Vincenzi", "id": 74487, "credit_id": "52fe45699251416c75055949", "cast_id": 8, "profile_path": "/gdmc0k64Tz1s7mJRVIWKjJJSn1M.jpg", "order": 8}, {"name": "Cosimo Fusco", "character": "Father Simeon", "id": 74488, "credit_id": "52fe45699251416c7505594d", "cast_id": 9, "profile_path": "/lQVPLXe7lHdkGbovh28DlOMewuF.jpg", "order": 9}, {"name": "Victor Alfieri", "character": "Lieutenant Valenti", "id": 74494, "credit_id": "52fe45699251416c75055981", "cast_id": 25, "profile_path": "/o2Z2xw9gabUjRCglTuy46VkIMqT.jpg", "order": 10}, {"name": "Franklin Amobi", "character": "Cardinal Lamasse", "id": 966875, "credit_id": "52fe456a9251416c75055a0b", "cast_id": 79, "profile_path": null, "order": 11}, {"name": "Curt Lowens", "character": "Cardinal Ebner", "id": 74506, "credit_id": "52fe45699251416c75055995", "cast_id": 37, "profile_path": "/3UPPxKXP52sHpDcmPB9FZdA7ayP.jpg", "order": 12}, {"name": "Bob Yerkes", "character": "Cardinal Guidera", "id": 26738, "credit_id": "52fe456a9251416c75055a27", "cast_id": 87, "profile_path": null, "order": 13}, {"name": "Marc Fiorini", "character": "Cardinal Baggia", "id": 987053, "credit_id": "52fe456a9251416c75055a0f", "cast_id": 81, "profile_path": null, "order": 14}, {"name": "Carmen Argenziano", "character": "Father Silvano Bentivoglio", "id": 28413, "credit_id": "52fe45699251416c75055951", "cast_id": 11, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 15}, {"name": "Howard Mungo", "character": "Cardinal Yoruba", "id": 168981, "credit_id": "52fe456a9251416c75055a13", "cast_id": 82, "profile_path": null, "order": 16}, {"name": "Rance Howard", "character": "Cardinal Beck", "id": 22250, "credit_id": "52fe456a9251416c75055a17", "cast_id": 83, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 17}, {"name": "Steve Franken", "character": "Cardinal Colbert", "id": 24323, "credit_id": "52fe456a9251416c75055a1b", "cast_id": 84, "profile_path": "/qKMpXpB14ybv2GnY0QDO5SNRadC.jpg", "order": 18}, {"name": "Gino Conforti", "character": "Cardinal Pugini", "id": 74492, "credit_id": "52fe45699251416c75055975", "cast_id": 21, "profile_path": "/7EPicshDcPKxAHnHwjYmcgtg7E.jpg", "order": 19}, {"name": "Elya Baskin", "character": "Cardinal Petrov", "id": 2368, "credit_id": "52fe45699251416c75055965", "cast_id": 16, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 20}, {"name": "Richard Rosetti", "character": "Conclave Cardinal", "id": 1277667, "credit_id": "52fe456a9251416c75055a1f", "cast_id": 85, "profile_path": null, "order": 21}, {"name": "Silvano Marchetto", "character": "Conclave Cardinal", "id": 1277668, "credit_id": "52fe456a9251416c75055a23", "cast_id": 86, "profile_path": null, "order": 22}, {"name": "Thomas Morris", "character": "Urs Weber", "id": 40224, "credit_id": "52fe456a9251416c75055a2b", "cast_id": 88, "profile_path": null, "order": 23}, {"name": "Jonas Fisch", "character": "Adrian Bachman", "id": 74509, "credit_id": "52fe45699251416c75055999", "cast_id": 40, "profile_path": "/lfYSfUVPacz7ZnIjIMIRpzAQPrj.jpg", "order": 24}, {"name": "August Wittgenstein", "character": "Swiss Guardsman", "id": 1247537, "credit_id": "52fe456a9251416c75055a4f", "cast_id": 97, "profile_path": null, "order": 25}, {"name": "Ben Bela B\u00f6hm", "character": "Swiss Guardsman", "id": 1136411, "credit_id": "52fe456a9251416c75055a2f", "cast_id": 89, "profile_path": "/r1SKzkGMy3TsRGGmLkbrqcrrlUS.jpg", "order": 26}, {"name": "Paul Schmitz", "character": "Swiss Guardsman", "id": 1277675, "credit_id": "52fe456a9251416c75055a33", "cast_id": 90, "profile_path": null, "order": 27}, {"name": "Jeffrey Boehm", "character": "Swiss Guard Blue", "id": 74516, "credit_id": "52fe45699251416c750559a1", "cast_id": 48, "profile_path": "/8vsKP1TsCH9CMGcRv8tpuascpZ8.jpg", "order": 28}, {"name": "Xavier J. Nathan", "character": "Philippe", "id": 1277676, "credit_id": "52fe456a9251416c75055a37", "cast_id": 91, "profile_path": null, "order": 29}, {"name": "Steve Kehela", "character": "American Reporter", "id": 168588, "credit_id": "52fe456a9251416c75055a3b", "cast_id": 92, "profile_path": null, "order": 30}, {"name": "Ursula Brooks", "character": "BBC Reporter", "id": 74490, "credit_id": "52fe45699251416c75055959", "cast_id": 13, "profile_path": "/6GaEmUC7xCPApqbMgZ6x9hDcQfp.jpg", "order": 31}, {"name": "Rashmi", "character": "British Reporter", "id": 74496, "credit_id": "52fe45699251416c75055989", "cast_id": 27, "profile_path": null, "order": 32}, {"name": "Yan Cui", "character": "Chinese Reporter", "id": 74495, "credit_id": "52fe45699251416c75055985", "cast_id": 26, "profile_path": "/u6qUlfTVUqxGSA0cSVdOAKOZv5d.jpg", "order": 33}, {"name": "Fritz Michel", "character": "French Reporter", "id": 1277677, "credit_id": "52fe456a9251416c75055a3f", "cast_id": 93, "profile_path": null, "order": 34}, {"name": "Maria Cristina Heller", "character": "Italian Reporter", "id": 27282, "credit_id": "52fe456a9251416c75055a43", "cast_id": 94, "profile_path": "/hN4vbj4kR7KMATKmLL4L8DZqFhk.jpg", "order": 35}, {"name": "Pascal Petardi", "character": "Italian Reporter", "id": 74499, "credit_id": "52fe45699251416c7505598d", "cast_id": 30, "profile_path": "/934MymOOoyfcJEf8Cd5VEGfP0nY.jpg", "order": 36}, {"name": "Yesenia Adame", "character": "Mexican Reporter", "id": 211624, "credit_id": "52fe456a9251416c75055a47", "cast_id": 95, "profile_path": null, "order": 37}, {"name": "Kristof Konrad", "character": "Polish Reporter", "id": 74502, "credit_id": "52fe45699251416c75055991", "cast_id": 33, "profile_path": "/glLoabE6ofcj9gEW0ejwvN3CyB4.jpg", "order": 38}, {"name": "Masasa Moyo", "character": "South African Reporter", "id": 34520, "credit_id": "52fe45699251416c75055971", "cast_id": 19, "profile_path": "/kyghWHugRBGhyNEu5ne7p5INu3s.jpg", "order": 39}, {"name": "Ed Francis Martin", "character": "South American Reporter", "id": 74511, "credit_id": "52fe45699251416c7505599d", "cast_id": 43, "profile_path": "/8sA0hnM1XLtV733FmAPN0sE8OuL.jpg", "order": 40}, {"name": "Cheryl Howard", "character": "CERN Scientist", "id": 6180, "credit_id": "52fe456a9251416c75055a4b", "cast_id": 96, "profile_path": "/sKnhM1uzCpi5uQrUbsx4C5ItrbB.jpg", "order": 41}, {"name": "Endre Hules", "character": "CERN Scientist", "id": 43461, "credit_id": "52fe45699251416c75055979", "cast_id": 22, "profile_path": "/cmxqIcfikG6rr5ag45ZkhYMP51Z.jpg", "order": 42}, {"name": "Norbert Weisser", "character": "CERN Scientist", "id": 6701, "credit_id": "52fe45699251416c7505596d", "cast_id": 18, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 43}, {"name": "Shelby Zemanek", "character": "Little Girl in Square", "id": 74493, "credit_id": "52fe45699251416c7505597d", "cast_id": 24, "profile_path": "/zsZTYQj8kBVIjkcPkic54rYFo4b.jpg", "order": 44}, {"name": "Justin Giddings", "character": "Vatican Choir Member", "id": 1189077, "credit_id": "54c80238c3a3687090000852", "cast_id": 185, "profile_path": null, "order": 45}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe45699251416c7505592f", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.0, "runtime": 138}, "38031": {"poster_path": "/owCEJJCrylS8Z9rG1m4Bl2Wpd12.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.", "video": false, "id": 38031, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "You Will Meet a Tall Dark Stranger", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1182350", "adult": false, "backdrop_path": "/la0aNM61vvLx8Ia7501DuWKQRCb.jpg", "production_companies": [{"name": "Antena 3 Films", "id": 6538}], "release_date": "2010-05-23", "popularity": 0.443526463891383, "original_title": "You Will Meet a Tall Dark Stranger", "budget": 22000000, "cast": [{"name": "Naomi Watts", "character": "Sally", "id": 3489, "credit_id": "52fe468b9251416c91057d1d", "cast_id": 3, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Roy", "id": 16851, "credit_id": "52fe468b9251416c91057d21", "cast_id": 4, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "Antonio Banderas", "character": "Greg", "id": 3131, "credit_id": "52fe468b9251416c91057d25", "cast_id": 7, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 2}, {"name": "Ewen Bremner", "character": "Henry Strangler", "id": 1125, "credit_id": "52fe468b9251416c91057d29", "cast_id": 9, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 3}, {"name": "Gemma Jones", "character": "Helena Shepridge", "id": 9138, "credit_id": "52fe468b9251416c91057d2d", "cast_id": 11, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 4}, {"name": "Neil Jackson", "character": "Alan", "id": 20289, "credit_id": "52fe468b9251416c91057d31", "cast_id": 12, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 5}, {"name": "Christian McKay", "character": "Sy", "id": 28478, "credit_id": "52fe468b9251416c91057d35", "cast_id": 13, "profile_path": "/sNzMFhhayZvBCYak24Y306xajA.jpg", "order": 6}, {"name": "Eleanor Gecks", "character": "Rita", "id": 119413, "credit_id": "52fe468b9251416c91057d39", "cast_id": 14, "profile_path": "/qBLF5CITi2A8ZKx6fdrQn7PFqNL.jpg", "order": 7}, {"name": "Roger Ashton-Griffiths", "character": "Jonathan", "id": 20243, "credit_id": "52fe468b9251416c91057d3d", "cast_id": 18, "profile_path": "/3lvWs4Kz0aATpcSY7PyPhkKgH6W.jpg", "order": 9}, {"name": "Jonathan Ryland", "character": "Mike Prince", "id": 119414, "credit_id": "52fe468b9251416c91057d41", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Rupert Frazer", "character": "Mort", "id": 62231, "credit_id": "52fe468b9251416c91057d45", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Jonathan Hearn", "character": "Person at Market", "id": 119416, "credit_id": "52fe468b9251416c91057d49", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Jim Piddock", "character": "Peter", "id": 120560, "credit_id": "52fe468b9251416c91057d4d", "cast_id": 23, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 13}, {"name": "Anthony Hopkins", "character": "Alfie", "id": 4173, "credit_id": "52fe468b9251416c91057d51", "cast_id": 24, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 14}, {"name": "Anna Friel", "character": "Iris", "id": 58016, "credit_id": "52fe468b9251416c91057d55", "cast_id": 25, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 15}, {"name": "Freida Pinto", "character": "Dia", "id": 76792, "credit_id": "52fe468b9251416c91057d59", "cast_id": 26, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 16}, {"name": "Lucy Punch", "character": "Charmaine", "id": 66446, "credit_id": "52fe468b9251416c91057d5d", "cast_id": 27, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 17}, {"name": "Anupam Kher", "character": "Dia's Parents", "id": 6217, "credit_id": "52fe468b9251416c91057d61", "cast_id": 28, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 18}, {"name": "Pauline Collins", "character": "Cristal", "id": 83437, "credit_id": "52fe468b9251416c91057d65", "cast_id": 29, "profile_path": "/nygjw5eWU5UDvJvfZJSO36Vlpko.jpg", "order": 19}, {"name": "Pearce Quigley", "character": "Poker Friend", "id": 119415, "credit_id": "52fe468b9251416c91057d69", "cast_id": 30, "profile_path": null, "order": 20}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe468b9251416c91057d13", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 5.9, "runtime": 98}, "13460": {"poster_path": "/d5rTA0dNsK9iLnRW7SDBwGuClI8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 22211426, "overview": "A lethal virus spreads throughout the British isles,infecting millions and killing hundreds of thousands. To contain the threat, acting authorities brutally quarantine the country as it succumbs to fear and chaos. The quarantine is successful. Three decades later, the Reaper virus violently resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare.", "video": false, "id": 13460, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Doomsday", "tagline": "Mankind has an expiration date.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0483607", "adult": false, "backdrop_path": "/fHfV2ffp8OYRS6mtAeFIFY4Shyg.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Crystal Sky Pictures", "id": 20241}, {"name": "Scion Films", "id": 7419}, {"name": "Moonlighting Films", "id": 9137}, {"name": "Internationale Filmproduktion Blackbird Dritte", "id": 19855}], "release_date": "2008-03-14", "popularity": 0.623210307033682, "original_title": "Doomsday", "budget": 30000000, "cast": [{"name": "Rhona Mitra", "character": "Major Eden Sinclair", "id": 25702, "credit_id": "52fe456b9251416c75055cf1", "cast_id": 1, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 0}, {"name": "Bob Hoskins", "character": "Bill Nelson", "id": 382, "credit_id": "52fe456b9251416c75055cf5", "cast_id": 2, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 1}, {"name": "Malcolm McDowell", "character": "Dr. Marcus Kane", "id": 56890, "credit_id": "52fe456b9251416c75055d01", "cast_id": 5, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 2}, {"name": "Alexander Siddig", "character": "Prime Minister John Hatcher", "id": 2957, "credit_id": "52fe456b9251416c75055cf9", "cast_id": 3, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 3}, {"name": "David O'Hara", "character": "Michael Canaris", "id": 2482, "credit_id": "52fe456b9251416c75055cfd", "cast_id": 4, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 4}, {"name": "Craig Conway", "character": "Sol Kane", "id": 94956, "credit_id": "53e88c03c3a368399c00348c", "cast_id": 25, "profile_path": "/trFSWzoXNgWYFMicJSlBQhphGNp.jpg", "order": 5}, {"name": "Lee-Anne Liebenberg", "character": "Viper", "id": 1352080, "credit_id": "53e88c58c3a368398a0035de", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Adrian Lester", "character": "Sergeant Norton", "id": 76215, "credit_id": "53e88ca4c3a368399c003495", "cast_id": 27, "profile_path": "/bgp0SyX9ZczUbEnRldpq8IimhuT.jpg", "order": 7}, {"name": "MyAnna Buring", "character": "Cally Kane", "id": 57578, "credit_id": "53e88d6f0e0a266f9a003d9f", "cast_id": 30, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 8}, {"name": "Sean Pertwee", "character": "Dr. Talbot", "id": 28848, "credit_id": "52fe456b9251416c75055d11", "cast_id": 8, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 9}, {"name": "Darren Morfitt", "character": "Dr. Stirling", "id": 107378, "credit_id": "53e88d2b0e0a266f8d003f37", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Leslie Simpson", "character": "Carpenter", "id": 944315, "credit_id": "52fe456b9251416c75055d19", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Chris Robson", "character": "Miller", "id": 172917, "credit_id": "53e88cd4c3a368399500354e", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Axelle Carolyn", "character": "Drop Dead Girl / Podium Marauder #1", "id": 231199, "credit_id": "52fe456b9251416c75055d15", "cast_id": 9, "profile_path": "/zGbPBBYqCKxBCyL9iBGnY5BKuBs.jpg", "order": 13}, {"name": "Caryn Peterson", "character": "Vagrant Girl", "id": 1294849, "credit_id": "5305d17992514134911a6cd8", "cast_id": 11, "profile_path": null, "order": 14}, {"name": "Adeola Ariyo", "character": "Nurse", "id": 1294850, "credit_id": "5305d18a92514134a2192af7", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "Emma Cleasby", "character": "Katherine Sinclair", "id": 70815, "credit_id": "5305d19e92514134a2192e8e", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Christine Tomlinson", "character": "Eden Sinclair (young)", "id": 1294851, "credit_id": "5305d1ab925141349a1a2ab6", "cast_id": 14, "profile_path": null, "order": 17}, {"name": "Vernon Willemse", "character": "David / Gimp", "id": 1294852, "credit_id": "5305d1bd925141348e1a5054", "cast_id": 15, "profile_path": null, "order": 18}, {"name": "Paul Hyett", "character": "Hot Dog Victim", "id": 1037760, "credit_id": "5305d1d392514134881c2068", "cast_id": 16, "profile_path": null, "order": 19}, {"name": "Daniel Read", "character": "Sergeant #1", "id": 1294853, "credit_id": "5305d1e292514134a2193039", "cast_id": 17, "profile_path": null, "order": 20}, {"name": "Karl Thaning", "character": "Pilot", "id": 209193, "credit_id": "5305d22e925141348b1caad9", "cast_id": 18, "profile_path": "/e08CojIbdPtwL2OrnIDyzl8xLWg.jpg", "order": 21}, {"name": "Stephen Hughes", "character": "Soldier #1 / Johnson", "id": 1008550, "credit_id": "5305d24192514134881c5ab0", "cast_id": 19, "profile_path": null, "order": 22}, {"name": "Jason Cope", "character": "Wall Guard", "id": 82193, "credit_id": "5305d25d92514134881c5b8a", "cast_id": 20, "profile_path": "/scn3r86ekzN1RQpsLc6Rhb7D76x.jpg", "order": 23}, {"name": "Ryan Kruger", "character": "Soldier", "id": 1288410, "credit_id": "5305d26c925141348e1a5b66", "cast_id": 21, "profile_path": null, "order": 24}, {"name": "Nathan Wheatley", "character": "Patient 'X'", "id": 1294854, "credit_id": "5305d27a92514134881c5c75", "cast_id": 22, "profile_path": null, "order": 25}, {"name": "Cecil Carter", "character": "DDS Assault Trooper", "id": 154043, "credit_id": "5305d28d92514134971a3331", "cast_id": 23, "profile_path": null, "order": 26}, {"name": "Jeremy Crutchley", "character": "Richter", "id": 20304, "credit_id": "5305d29c92514134971a33b3", "cast_id": 24, "profile_path": "/17aHojCYOmUyoyuPgLd4di0fdvm.jpg", "order": 27}], "directors": [{"name": "Neil Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe456b9251416c75055d07", "profile_path": "/Au5p9cFlj2XVoVIECQ40ruOp1Qz.jpg", "id": 57581}], "vote_average": 6.1, "runtime": 105}, "19994": {"poster_path": "/1wb5sCMP8YhgUhwSH1Yo9YSH9vA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31556061, "overview": "A newly possessed cheerleader turns into a killer who specializes in offing her male classmates. Can her best friend put an end to the horror?", "video": false, "id": 19994, "genres": [{"id": 27, "name": "Horror"}], "title": "Jennifer's Body", "tagline": "She's evil... and not just high school evil.", "vote_count": 181, "homepage": "http://www.jennifersbody.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1131734", "adult": false, "backdrop_path": "/mqbLNRXYzjSkaN8ECP9XxAoCTQO.jpg", "production_companies": [{"name": "Fox Atomic", "id": 2890}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2009-09-18", "popularity": 1.06385940479914, "original_title": "Jennifer's Body", "budget": 16000000, "cast": [{"name": "Megan Fox", "character": "Jennifer Check", "id": 19537, "credit_id": "52fe47ff9251416c750ac871", "cast_id": 1, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 0}, {"name": "Amanda Seyfried", "character": "Anita \"Needy\" Lesnicky", "id": 71070, "credit_id": "52fe48009251416c750ac893", "cast_id": 8, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 1}, {"name": "Johnny Simmons", "character": "Chip Dove", "id": 27104, "credit_id": "52fe48009251416c750ac897", "cast_id": 9, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 2}, {"name": "Adam Brody", "character": "Nikolai Wolf", "id": 11702, "credit_id": "52fe48009251416c750ac89b", "cast_id": 10, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "Mr. Wroblewski", "id": 18999, "credit_id": "52fe48009251416c750ac89f", "cast_id": 11, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "Kyle Gallner", "character": "Colin Gray", "id": 59219, "credit_id": "52fe48009251416c750ac8a3", "cast_id": 12, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 5}, {"name": "Amy Sedaris", "character": "Toni Lesnicky", "id": 12110, "credit_id": "52fe48009251416c750ac8a7", "cast_id": 13, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 6}, {"name": "Cynthia Stevenson", "character": "Mrs. Dove", "id": 65528, "credit_id": "52fe48009251416c750ac8ab", "cast_id": 14, "profile_path": "/b59DN25UqjxOLHVBFLMtbiOwn0W.jpg", "order": 7}, {"name": "Carrie Genzel", "character": "Mrs. Check", "id": 33350, "credit_id": "52fe48009251416c750ac8af", "cast_id": 15, "profile_path": "/6yFDbHeP7fT54uoCiCMFFbdA6IF.jpg", "order": 8}, {"name": "Juan Riedinger", "character": "Dirk", "id": 85613, "credit_id": "52fe48009251416c750ac8b3", "cast_id": 16, "profile_path": "/ddNGEfsafxUzoF92WFzNSB2n9p5.jpg", "order": 9}, {"name": "Chris Pratt", "character": "Officer Roman Duda", "id": 73457, "credit_id": "52fe48009251416c750ac8b7", "cast_id": 17, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 10}, {"name": "Juno Ruddell", "character": "Officer Warzak", "id": 85614, "credit_id": "52fe48009251416c750ac8bb", "cast_id": 18, "profile_path": "/c17qBeuGdeNDbUThKaUouNxuqNp.jpg", "order": 11}, {"name": "Aman Johal", "character": "Ahmet from India", "id": 85616, "credit_id": "52fe48009251416c750ac8bf", "cast_id": 20, "profile_path": "/saVZBiBHJZUzx3SJZNhLmzsEvQp.jpg", "order": 12}, {"name": "Eve Harlow", "character": "Goth Girl", "id": 209723, "credit_id": "52fe48009251416c750ac8c3", "cast_id": 21, "profile_path": "/h3ZqWXWD6EVEzHIm6e9QsNoRL6R.jpg", "order": 13}], "directors": [{"name": "Karyn Kusama", "department": "Directing", "job": "Director", "credit_id": "52fe47ff9251416c750ac877", "profile_path": "/6KlEWWO7aZE6MZtExVZKoQ6Ddzs.jpg", "id": 54025}], "vote_average": 5.1, "runtime": 100}, "5279": {"poster_path": "/7wCUMn1Fj5MutTJHFopHba0Pto.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87754044, "overview": "Multiple storylined drama set in 1932, showing the lives of upstairs guest and downstairs servants at a party in a country house in England.", "video": false, "id": 5279, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Gosford Park", "tagline": "Tea at four. Dinner at eight. Murder at midnight.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0280707", "adult": false, "backdrop_path": "/4Noe8pwizMttqivkqBvySDvqQVE.jpg", "production_companies": [{"name": "USA Films", "id": 987}], "release_date": "2001-11-07", "popularity": 0.640217731065429, "original_title": "Gosford Park", "budget": 19800000, "cast": [{"name": "Helen Mirren", "character": "Mrs. Wilson", "id": 15735, "credit_id": "52fe4401c3a36847f807cdf7", "cast_id": 2, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 0}, {"name": "Clive Owen", "character": "Robert Parks", "id": 2296, "credit_id": "52fe4401c3a36847f807cdfb", "cast_id": 3, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 1}, {"name": "Maggie Smith", "character": "Constance Trentham", "id": 10978, "credit_id": "52fe4401c3a36847f807cdff", "cast_id": 4, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 2}, {"name": "Geraldine Somerville", "character": "Louisa Stockbridge", "id": 10988, "credit_id": "52fe4401c3a36847f807ce03", "cast_id": 5, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 3}, {"name": "Jeremy Northam", "character": "Ivor Novello", "id": 18325, "credit_id": "52fe4401c3a36847f807ce07", "cast_id": 6, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 4}, {"name": "Kristin Scott Thomas", "character": "Sylvia McCordle", "id": 5470, "credit_id": "52fe4401c3a36847f807ce0b", "cast_id": 7, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 5}, {"name": "Michael Gambon", "character": "William McCordle", "id": 5658, "credit_id": "52fe4401c3a36847f807ce0f", "cast_id": 8, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Kelly Macdonald", "character": "Mary Maceachran", "id": 9015, "credit_id": "52fe4401c3a36847f807ce13", "cast_id": 9, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 7}, {"name": "Eileen Atkins", "character": "Mrs. Croft", "id": 20300, "credit_id": "52fe4401c3a36847f807ce17", "cast_id": 10, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 8}, {"name": "Emily Watson", "character": "Elsie", "id": 1639, "credit_id": "52fe4401c3a36847f807ce1b", "cast_id": 11, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 9}, {"name": "Alan Bates", "character": "Jennings", "id": 27554, "credit_id": "52fe4401c3a36847f807ce1f", "cast_id": 12, "profile_path": "/tXBtdL0JrFFMBP55fn3sh1z0WOG.jpg", "order": 10}, {"name": "Richard E. Grant", "character": "George", "id": 20766, "credit_id": "52fe4401c3a36847f807ce23", "cast_id": 13, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 11}, {"name": "Ryan Phillippe", "character": "Henry Denton", "id": 11864, "credit_id": "52fe4401c3a36847f807ce27", "cast_id": 14, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 12}, {"name": "Trent Ford", "character": "Jeremy Blond", "id": 42626, "credit_id": "52fe4401c3a36847f807ce2b", "cast_id": 15, "profile_path": "/2qdtKGmonpTTVX8cdsV8mUULTpl.jpg", "order": 13}, {"name": "Stephen Fry", "character": "Inspector Thompson", "id": 11275, "credit_id": "52fe4401c3a36847f807ce2f", "cast_id": 16, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 14}, {"name": "Charles Dance", "character": "Lord Raymond Stockbridge", "id": 4391, "credit_id": "52fe4401c3a36847f807ce33", "cast_id": 17, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 15}, {"name": "Camilla Rutherford", "character": "Isobel McCordle", "id": 38809, "credit_id": "52fe4401c3a36847f807ce37", "cast_id": 18, "profile_path": "/5Zo00BGDlGjnkZQjzuDie8wnURp.jpg", "order": 16}, {"name": "Bob Balaban", "character": "Morris Weissman", "id": 12438, "credit_id": "52fe4401c3a36847f807ce3b", "cast_id": 19, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 17}, {"name": "James Wilby", "character": "Freddie Nesbitt", "id": 42627, "credit_id": "52fe4401c3a36847f807ce3f", "cast_id": 20, "profile_path": "/l7S0uDrsZXDZUNB9Ahr4wbl4kPz.jpg", "order": 18}, {"name": "Natasha Wightman", "character": "Lavinia Meredith", "id": 11277, "credit_id": "52fe4401c3a36847f807ce43", "cast_id": 21, "profile_path": "/v2VZP1K0SY9z3XSUfufaNSRk6Lz.jpg", "order": 19}, {"name": "Claudie Blakley", "character": "Mabel Nesbitt", "id": 36663, "credit_id": "52fe4401c3a36847f807ce47", "cast_id": 22, "profile_path": "/v02raCaKQpZTP9pULehv4JaXe11.jpg", "order": 20}, {"name": "Derek Jacobi", "character": "Probert", "id": 937, "credit_id": "52fe4401c3a36847f807ce4b", "cast_id": 23, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 21}], "directors": [{"name": "Robert Altman", "department": "Directing", "job": "Director", "credit_id": "52fe4401c3a36847f807cdf3", "profile_path": "/wM4ZFeMU4fuLVuwvGsbAzdlAil3.jpg", "id": 9789}], "vote_average": 7.1, "runtime": 137}, "152737": {"poster_path": "/8Xlg29einAVrnOxjyFG3F6eUETW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74188937, "overview": "A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional woman who raised them.", "video": false, "id": 152737, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "August: Osage County", "tagline": "Misery loves family.", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1322269", "adult": false, "backdrop_path": "/gTpXwPqv9yUAQpGuAtpYx1JhHe3.jpg", "production_companies": [{"name": "Smokehouse Pictures", "id": 22695}, {"name": "Jean Doumanian Productions", "id": 16280}], "release_date": "2013-09-09", "popularity": 1.19245211931057, "original_title": "August: Osage County", "budget": 25000000, "cast": [{"name": "Meryl Streep", "character": "Violet Weston", "id": 5064, "credit_id": "52fe4b299251416c910d1da3", "cast_id": 11, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Barbara Weston", "id": 1204, "credit_id": "52fe4b299251416c910d1da7", "cast_id": 12, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Charles Aiken", "id": 2955, "credit_id": "52fe4b299251416c910d1db3", "cast_id": 15, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Ewan McGregor", "character": "Bill Fordham", "id": 3061, "credit_id": "52fe4b299251416c910d1d9f", "cast_id": 10, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 3}, {"name": "Margo Martindale", "character": "Mattie Fae Aiken", "id": 452, "credit_id": "52fe4b299251416c910d1dbf", "cast_id": 18, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 4}, {"name": "Sam Shepard", "character": "Beverly Weston", "id": 9880, "credit_id": "52fe4b299251416c910d1db7", "cast_id": 16, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 5}, {"name": "Dermot Mulroney", "character": "Steve Huberbrecht", "id": 20212, "credit_id": "52fe4b299251416c910d1daf", "cast_id": 14, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 6}, {"name": "Julianne Nicholson", "character": "Ivy Weston", "id": 86034, "credit_id": "52fe4b299251416c910d1dbb", "cast_id": 17, "profile_path": "/z4Aa8kkya1BpCFyV2ifRrP4iy04.jpg", "order": 7}, {"name": "Juliette Lewis", "character": "Karen Weston", "id": 3196, "credit_id": "52fe4b299251416c910d1d9b", "cast_id": 9, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 8}, {"name": "Abigail Breslin", "character": "Jean Fordham", "id": 17140, "credit_id": "52fe4b299251416c910d1dab", "cast_id": 13, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 9}, {"name": "Misty Upham", "character": "Johnna Monevata", "id": 64136, "credit_id": "52fe4b299251416c910d1dc3", "cast_id": 19, "profile_path": "/78YVlWbvZiEO9Z1F4NfWiIrv2SS.jpg", "order": 10}, {"name": "Benedict Cumberbatch", "character": "Little Charles Aiken", "id": 71580, "credit_id": "52fe4b299251416c910d1d97", "cast_id": 8, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 11}], "directors": [{"name": "John Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4b299251416c910d1d6f", "profile_path": "/rpVdPsbj7QLJ0VRRDmhPcYoF6m0.jpg", "id": 47333}], "vote_average": 7.0, "runtime": 121}, "38050": {"poster_path": "/g87PqGH9Oo3d3Tbczcfk7ZMAIEk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127869379, "overview": "A man glimpses the future Fate has planned for him \u2013 and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.", "video": false, "id": 38050, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Adjustment Bureau", "tagline": "Fight for your fate.", "vote_count": 671, "homepage": "http://www.theadjustmentbureau.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1385826", "adult": false, "backdrop_path": "/iE2WiPdF7a0s5glgXQBBmZQ6mUd.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Gambit Pictures", "id": 6933}, {"name": "Electric Shepherd Productions", "id": 11834}], "release_date": "2011-03-04", "popularity": 1.53917412215725, "original_title": "The Adjustment Bureau", "budget": 50200000, "cast": [{"name": "Matt Damon", "character": "David Norris", "id": 1892, "credit_id": "52fe468e9251416c910582cf", "cast_id": 13, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Emily Blunt", "character": "Elise Sellas", "id": 5081, "credit_id": "52fe468e9251416c910582b7", "cast_id": 5, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 1}, {"name": "John Slattery", "character": "Richardson", "id": 21134, "credit_id": "52fe468e9251416c910582bb", "cast_id": 7, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 2}, {"name": "Anthony Mackie", "character": "Harry Mitchell", "id": 53650, "credit_id": "52fe468e9251416c910582bf", "cast_id": 8, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 3}, {"name": "Lauren Hodges", "character": "Robyn, Campaign Aide", "id": 156675, "credit_id": "52fe468e9251416c910582c3", "cast_id": 9, "profile_path": "/lB8YIBW88q8xKMySK3sixBexJsS.jpg", "order": 4}, {"name": "Shane McRae", "character": "Adrian Troussant, Elise's Fianc\u00e9", "id": 83222, "credit_id": "52fe468e9251416c910582c7", "cast_id": 11, "profile_path": "/27WYwLZHb0wFVSOBEWPl1YxlhTn.jpg", "order": 5}, {"name": "Terence Stamp", "character": "Thompson", "id": 28641, "credit_id": "52fe468e9251416c910582cb", "cast_id": 12, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 6}, {"name": "Michael Kelly", "character": "Charlie Traynor", "id": 50217, "credit_id": "52fe468e9251416c910582d3", "cast_id": 15, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 7}, {"name": "Lisa Thoreson", "character": "Suburban Mom", "id": 1124488, "credit_id": "52fe468e9251416c9105832b", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Florence Kastriner", "character": "Suburban Mom", "id": 1124489, "credit_id": "52fe468e9251416c9105832f", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Florence Kastriner", "character": "Suburban Mom", "id": 1124489, "credit_id": "532b04bcc3a3682006001eb2", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Phyllis MacBryde", "character": "Suburban Neighbor", "id": 1302816, "credit_id": "532b04d0c3a3681fea001fac", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Natalie Carter", "character": "Suburban Neighbor", "id": 187972, "credit_id": "532b04e4c3a3681fdd001f2e", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Chuck Scarborough", "character": "Himself", "id": 943010, "credit_id": "532b04f9c3a3681d9e000597", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Jon Stewart", "character": "Political Consultant", "id": 12219, "credit_id": "532b0520c3a3681ff7001ff2", "cast_id": 38, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 15}, {"name": "Kar", "character": "Political Consultant", "id": 1302820, "credit_id": "532b0619c3a3682006001ee6", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "RJ Konner", "character": "Political Consultant", "id": 1302821, "credit_id": "532b0629c3a3681ff0001f6a", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Susan D. Michaels", "character": "Reporter", "id": 1302822, "credit_id": "532b0637c3a3681d9e0005c1", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Gregory P. Hitchen", "character": "U.S. Coast Guard Officer", "id": 1302823, "credit_id": "532b0647c3a3681d9e0005c7", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "George Nolfi", "department": "Directing", "job": "Director", "credit_id": "52fe468e9251416c910582a7", "profile_path": "/w5rOlLTxuGNFtf5CqF9eN1i0KZr.jpg", "id": 1921}], "vote_average": 6.3, "runtime": 106}, "13475": {"poster_path": "/xPihqTMhCh6b8DHYzE61jrIiNMS.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 385680446, "overview": "The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.", "video": false, "id": 13475, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek", "tagline": "The future begins", "vote_count": 2419, "homepage": "http://www.startrekmovie.com/", "belongs_to_collection": {"backdrop_path": "/gWl5pN2FplE709aVtA4lakwsE6t.jpg", "poster_path": "/w2IVqa43Ge49mrY3qSaJWpyDtz6.jpg", "id": 115575, "name": "Star Trek: Alternate Reality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0796366", "adult": false, "backdrop_path": "/1XOSh6BFZbQ0xN75m4avqgzClyG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Bad Robot", "id": 11461}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "MavroCine Pictures GmbH & Co. KG", "id": 23419}], "release_date": "2009-05-07", "popularity": 3.48080297202836, "original_title": "Star Trek", "budget": 150000000, "cast": [{"name": "Chris Pine", "character": "Kirk", "id": 62064, "credit_id": "52fe456c9251416c75056169", "cast_id": 15, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Zachary Quinto", "character": "Spock", "id": 17306, "credit_id": "52fe456c9251416c7505616d", "cast_id": 16, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 1}, {"name": "Leonard Nimoy", "character": "Old Spock", "id": 1749, "credit_id": "52fe456c9251416c75056195", "cast_id": 26, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 2}, {"name": "Eric Bana", "character": "Nero", "id": 8783, "credit_id": "52fe456c9251416c75056171", "cast_id": 17, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 3}, {"name": "Bruce Greenwood", "character": "Christopher Pike", "id": 21089, "credit_id": "52fe456c9251416c75056189", "cast_id": 23, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 4}, {"name": "Karl Urban", "character": "Leonard 'Bones' McCoy", "id": 1372, "credit_id": "52fe456c9251416c75056181", "cast_id": 21, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 5}, {"name": "Zoe Saldana", "character": "Nyota Uhura", "id": 8691, "credit_id": "52fe456c9251416c7505617d", "cast_id": 20, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 6}, {"name": "Simon Pegg", "character": "Scotty", "id": 11108, "credit_id": "52fe456c9251416c75056175", "cast_id": 18, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 7}, {"name": "John Cho", "character": "Hikaru Sulu", "id": 68842, "credit_id": "52fe456c9251416c75056185", "cast_id": 22, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 8}, {"name": "Anton Yelchin", "character": "Pavel Chekov", "id": 21028, "credit_id": "52fe456c9251416c75056191", "cast_id": 25, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 9}, {"name": "Ben Cross", "character": "Sarek", "id": 29068, "credit_id": "52fe456c9251416c7505618d", "cast_id": 24, "profile_path": "/oSGwl0y9ZQOKDYXbrEd2zeid1Bq.jpg", "order": 10}, {"name": "Winona Ryder", "character": "Amanda Grayson", "id": 1920, "credit_id": "52fe456c9251416c75056179", "cast_id": 19, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 11}, {"name": "Chris Hemsworth", "character": "George Kirk", "id": 74568, "credit_id": "52fe456c9251416c7505619d", "cast_id": 28, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 12}, {"name": "Jennifer Morrison", "character": "Winona Kirk", "id": 41421, "credit_id": "52fe456c9251416c750561a1", "cast_id": 29, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 13}, {"name": "Rachel Nichols", "character": "Galia", "id": 50347, "credit_id": "52fe456d9251416c750561b1", "cast_id": 33, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 14}, {"name": "Faran Tahir", "character": "Captain Robau", "id": 57452, "credit_id": "52fe456d9251416c750561b5", "cast_id": 34, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 15}, {"name": "Clifton Collins, Jr.", "character": "Ayel", "id": 5365, "credit_id": "52fe456d9251416c750561b9", "cast_id": 35, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 16}, {"name": "Greg Ellis", "character": "Chief Engineer Olsen", "id": 4031, "credit_id": "52fe456c9251416c75056199", "cast_id": 27, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 17}, {"name": "Scottie Thompson", "character": "Nero's Wife", "id": 128628, "credit_id": "52fe456c9251416c750561a5", "cast_id": 30, "profile_path": "/o7S0MQHMiylNurOcdxAT85NXJP.jpg", "order": 18}, {"name": "Paul McGillion", "character": "Barracks Officer", "id": 26069, "credit_id": "52fe456d9251416c750561a9", "cast_id": 31, "profile_path": "/n6S66CIpNqThe6eugr94WZBbI6u.jpg", "order": 19}, {"name": "Lucia Rijker", "character": "Romulan Communications Officer", "id": 451, "credit_id": "52fe456d9251416c750561ad", "cast_id": 32, "profile_path": "/dNKQK7uLrdG1g8ETKF9SxbXHGNQ.jpg", "order": 20}, {"name": "Jimmy Bennett", "character": "Young James T. Kirk", "id": 6860, "credit_id": "52fe456d9251416c750561bd", "cast_id": 36, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 21}, {"name": "Greg Grunberg", "character": "Stepdad (voice)", "id": 17305, "credit_id": "52fe456d9251416c750561c1", "cast_id": 37, "profile_path": "/kFK6AaPoUlLJArwLuHetUav8q19.jpg", "order": 22}, {"name": "Lisa Vidal", "character": "Barracks Officer", "id": 92774, "credit_id": "52fe456d9251416c750561c5", "cast_id": 38, "profile_path": "/8053bjXwp0JNbODdnqKfhW0Euvu.jpg", "order": 23}, {"name": "Jacob Kogan", "character": "Young Spock", "id": 46801, "credit_id": "52fe456d9251416c750561c9", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Tyler Perry", "character": "Admiral Richard Barnett", "id": 80602, "credit_id": "52fe456d9251416c750561cd", "cast_id": 40, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 25}, {"name": "Amanda Foreman", "character": "Hannity", "id": 13024, "credit_id": "52fe456d9251416c750561d1", "cast_id": 41, "profile_path": "/fitfsjRoC2i8YocBndcOFOuV7EU.jpg", "order": 26}, {"name": "Diora Baird", "character": "The Wrong Orion", "id": 59263, "credit_id": "52fe456d9251416c750561d5", "cast_id": 42, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 27}, {"name": "Sufe Bradshaw", "character": "Cadet Alien", "id": 1181331, "credit_id": "52fe456d9251416c750561df", "cast_id": 44, "profile_path": "/P1eEcLRbry8RjyCqD3emY57HgG.jpg", "order": 28}, {"name": "Tony Elias", "character": "Officer Pitts (as Antonio Elias)", "id": 138324, "credit_id": "52fe456d9251416c75056207", "cast_id": 51, "profile_path": "/pHlx7TAasqdMboz8AwAxoR3Hxpa.jpg", "order": 29}, {"name": "Sean Gerace", "character": "Tactical Officer", "id": 188796, "credit_id": "52fe456d9251416c7505620b", "cast_id": 52, "profile_path": null, "order": 30}, {"name": "Randy Pausch", "character": "Kelvin Crew Member", "id": 1274566, "credit_id": "52fe456d9251416c7505620f", "cast_id": 53, "profile_path": null, "order": 31}, {"name": "Tim Griffin", "character": "Kelvin Engineer", "id": 27031, "credit_id": "52fe456d9251416c75056213", "cast_id": 54, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 32}, {"name": "Freda Foh Shen", "character": "Kelvin Helmsman", "id": 51754, "credit_id": "52fe456d9251416c75056217", "cast_id": 55, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 33}, {"name": "Kasia Kowalczyk", "character": "Kelvin Alien (as Katarzyna Kowalczyk)", "id": 583844, "credit_id": "52fe456d9251416c7505621b", "cast_id": 56, "profile_path": null, "order": 34}, {"name": "Jason Brooks", "character": "Romulan Helmsman", "id": 154748, "credit_id": "52fe456d9251416c7505621f", "cast_id": 57, "profile_path": "/try5yM1wnSczpXgBDOBbJLbCkH4.jpg", "order": 35}, {"name": "Sonita Henry", "character": "Kelvin Doctor", "id": 963257, "credit_id": "52fe456d9251416c75056223", "cast_id": 58, "profile_path": null, "order": 36}, {"name": "Kelvin Yu", "character": "Medical Technician", "id": 51997, "credit_id": "52fe456d9251416c75056227", "cast_id": 59, "profile_path": "/tYLvMxo3EBXmAdYUzJp5ymTygS.jpg", "order": 37}, {"name": "Marta Martin", "character": "Medical Technician", "id": 1216155, "credit_id": "52fe456d9251416c7505622b", "cast_id": 60, "profile_path": null, "order": 38}, {"name": "Tavarus Conley", "character": "Kelvin Crew Member", "id": 1274869, "credit_id": "52fe456d9251416c7505622f", "cast_id": 61, "profile_path": null, "order": 39}, {"name": "Jeff Castle", "character": "Kelvin Crew Member", "id": 1026981, "credit_id": "52fe456d9251416c75056233", "cast_id": 62, "profile_path": null, "order": 40}, {"name": "Billy Brown", "character": "Med Evac Pilot", "id": 64805, "credit_id": "52fe456d9251416c75056237", "cast_id": 63, "profile_path": "/tEyVvi3dY3LDxSpTA3a7nK6nMGv.jpg", "order": 41}, {"name": "Spencer Daniels", "character": "Johnny", "id": 168962, "credit_id": "52fe456d9251416c7505623b", "cast_id": 64, "profile_path": "/iBUcd9yZMbgbGhirU68E8X4D80e.jpg", "order": 42}, {"name": "Jeremy Fitzgerald", "character": "Iowa Cop", "id": 126841, "credit_id": "52fe456d9251416c7505623f", "cast_id": 65, "profile_path": null, "order": 43}, {"name": "Zoe Chernov", "character": "Vulcan Student", "id": 1275518, "credit_id": "52fe456d9251416c75056243", "cast_id": 66, "profile_path": null, "order": 44}, {"name": "Max Chernov", "character": "Vulcan Student", "id": 1275519, "credit_id": "52fe456d9251416c75056247", "cast_id": 67, "profile_path": null, "order": 45}, {"name": "Lorenzo James Henrie", "character": "Vulcan Bully (as James Henrie)", "id": 1107818, "credit_id": "52fe456d9251416c7505624b", "cast_id": 68, "profile_path": "/gw9nG51OXge6hjPNFt3iiEUdyKd.jpg", "order": 46}, {"name": "Colby Paul", "character": "Vulcan Bully", "id": 203012, "credit_id": "52fe456d9251416c7505624f", "cast_id": 69, "profile_path": null, "order": 47}, {"name": "Cody Klop", "character": "Vulcan Bully", "id": 170883, "credit_id": "52fe456d9251416c75056253", "cast_id": 70, "profile_path": "/ulBpiD5bsaOJFwZV2yvL2EICWbv.jpg", "order": 48}, {"name": "Akiva Goldsman", "character": "Vulcan Council Member", "id": 5575, "credit_id": "52fe456d9251416c75056257", "cast_id": 71, "profile_path": "/smyKiXX4rAfehztrmg3lxgRAuZF.jpg", "order": 49}, {"name": "Anna Katarina", "character": "Vulcan Council Member", "id": 27570, "credit_id": "52fe456d9251416c7505625b", "cast_id": 72, "profile_path": null, "order": 50}, {"name": "Douglas Tait", "character": "Long Face Bar Alien", "id": 51301, "credit_id": "52fe456d9251416c7505625f", "cast_id": 73, "profile_path": null, "order": 51}, {"name": "Tony Guma", "character": "Lew the Bartender", "id": 178452, "credit_id": "52fe456d9251416c75056263", "cast_id": 74, "profile_path": null, "order": 52}, {"name": "Gerald W. Abrams", "character": "Barfly", "id": 181879, "credit_id": "52fe456d9251416c75056267", "cast_id": 75, "profile_path": null, "order": 53}, {"name": "James McGrath", "character": "Barfly (as James McGrath Jr.)", "id": 1275520, "credit_id": "52fe456d9251416c7505626b", "cast_id": 76, "profile_path": null, "order": 54}, {"name": "Jason Matthew Smith", "character": "Burly Cadet", "id": 154702, "credit_id": "52fe456d9251416c7505626f", "cast_id": 77, "profile_path": null, "order": 55}, {"name": "Marcus Young", "character": "Burly Cadet", "id": 182213, "credit_id": "52fe456d9251416c75056273", "cast_id": 78, "profile_path": null, "order": 56}, {"name": "Bob Clendenin", "character": "Shipyard Worker (as Robert Clendenin)", "id": 129661, "credit_id": "52fe456d9251416c75056277", "cast_id": 79, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 57}, {"name": "Darlene Tejeiro", "character": "Flight Officer (as Darlena Tejeiro)", "id": 1275521, "credit_id": "52fe456d9251416c7505627b", "cast_id": 80, "profile_path": null, "order": 58}, {"name": "Reggie Lee", "character": "Test Administrator", "id": 22075, "credit_id": "52fe456d9251416c7505627f", "cast_id": 81, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 59}, {"name": "Jeffrey Byron", "character": "Test Administrator", "id": 78899, "credit_id": "52fe456d9251416c75056283", "cast_id": 82, "profile_path": "/wDx4pYCj6bAQYupHrBydQzZwP4Q.jpg", "order": 60}, {"name": "Jonathan Dixon", "character": "Simulator Tactical Officer", "id": 1228940, "credit_id": "52fe456d9251416c75056287", "cast_id": 83, "profile_path": null, "order": 61}, {"name": "Ben Binswagner", "character": "Admiral James Komack", "id": 1275522, "credit_id": "52fe456d9251416c7505628b", "cast_id": 84, "profile_path": null, "order": 62}, {"name": "Margot Farley", "character": "College Council Stenographer", "id": 51994, "credit_id": "52fe456d9251416c7505628f", "cast_id": 85, "profile_path": null, "order": 63}, {"name": "Alex Nevil", "character": "Shuttle Officer", "id": 1212484, "credit_id": "52fe456d9251416c75056293", "cast_id": 86, "profile_path": null, "order": 64}, {"name": "Kimberly Arland", "character": "Kimberly Arland", "id": 1271733, "credit_id": "52fe456d9251416c75056297", "cast_id": 87, "profile_path": "/pcp0B5iSalHZcYRKKDuGQYcJ7z9.jpg", "order": 65}, {"name": "Jeff Chase", "character": "Cadet Alien", "id": 56448, "credit_id": "52fe456d9251416c7505629b", "cast_id": 88, "profile_path": "/x7W1nwnsITcPdODJ5OEP0HF71BH.jpg", "order": 66}, {"name": "Charles Haugk", "character": "Enterprise Crew Member (as Charlie Haugk)", "id": 1275523, "credit_id": "52fe456d9251416c7505629f", "cast_id": 89, "profile_path": null, "order": 67}, {"name": "Nana Hill", "character": "Enterprise Crew Member", "id": 1007337, "credit_id": "52fe456d9251416c750562a3", "cast_id": 90, "profile_path": null, "order": 68}, {"name": "Michael Saglimbeni", "character": "Enterprise Crew Member", "id": 1275524, "credit_id": "52fe456d9251416c750562a7", "cast_id": 91, "profile_path": null, "order": 69}, {"name": "John Blackman", "character": "Enterprise Crew Member", "id": 1275932, "credit_id": "52fe456d9251416c750562ab", "cast_id": 92, "profile_path": null, "order": 70}, {"name": "Jack Millard", "character": "Enterprise Crew Member", "id": 1275933, "credit_id": "52fe456d9251416c750562af", "cast_id": 93, "profile_path": null, "order": 71}, {"name": "Shaela Luter", "character": "Enterprise Crew Member", "id": 1275934, "credit_id": "52fe456d9251416c750562b3", "cast_id": 94, "profile_path": null, "order": 72}, {"name": "Sabrina Morris", "character": "Enterprise Crew Member", "id": 1275935, "credit_id": "52fe456d9251416c750562b7", "cast_id": 95, "profile_path": null, "order": 73}, {"name": "Michelle Parylak", "character": "Enterprise Crew Member", "id": 187563, "credit_id": "52fe456d9251416c750562bb", "cast_id": 96, "profile_path": null, "order": 74}, {"name": "Oz Perkins", "character": "Enterprise Communiations Officer", "id": 90609, "credit_id": "52fe456d9251416c750562bf", "cast_id": 97, "profile_path": "/mFMTeyafafTqSgaWaRvGaLNgG7j.jpg", "order": 75}, {"name": "Michael Berry Jr.", "character": "Romulan Tactical Officer", "id": 1716, "credit_id": "52fe456d9251416c750562c3", "cast_id": 98, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 76}, {"name": "Matthew Beisner", "character": "Romulan Crew Member", "id": 1275937, "credit_id": "52fe456d9251416c750562cb", "cast_id": 100, "profile_path": null, "order": 78}, {"name": "Neville Page", "character": "Romulan Crew Member", "id": 1080735, "credit_id": "52fe456d9251416c750562cf", "cast_id": 101, "profile_path": "/7akzfPwFJ1KjXmxtSHQoR4I7eRw.jpg", "order": 79}, {"name": "Jesper Inglis", "character": "Romulan Crew Member", "id": 1275938, "credit_id": "52fe456d9251416c750562d3", "cast_id": 102, "profile_path": null, "order": 80}, {"name": "Marlene Forte", "character": "Transport Chief", "id": 146004, "credit_id": "52fe456d9251416c750562d7", "cast_id": 103, "profile_path": "/qNgRzZvT0YyxaQELeTDGZw6ToDg.jpg", "order": 81}, {"name": "Leonard O. Turner", "character": "Vulcan Elder", "id": 174797, "credit_id": "52fe456d9251416c750562db", "cast_id": 104, "profile_path": null, "order": 82}, {"name": "Mark Bramhall", "character": "Vulcan Elder", "id": 156283, "credit_id": "52fe456d9251416c750562df", "cast_id": 105, "profile_path": null, "order": 83}, {"name": "Ronald F. Hoiseck", "character": "Vulcan Elder", "id": 1275939, "credit_id": "52fe456d9251416c750562e3", "cast_id": 106, "profile_path": null, "order": 84}, {"name": "Irene Roseen", "character": "Vulcan Elder", "id": 79585, "credit_id": "52fe456d9251416c750562e7", "cast_id": 107, "profile_path": "/hORHT27sB0nNBCqt3umdCjzNd6j.jpg", "order": 85}, {"name": "Jeff O'Haco", "character": "Vulcan Elder", "id": 1020340, "credit_id": "52fe456d9251416c750562eb", "cast_id": 108, "profile_path": "/jxzZd6t8KhDx5aKkRJyBxgXWBM0.jpg", "order": 86}, {"name": "Deep Roy", "character": "Keenser", "id": 1295, "credit_id": "52fe456d9251416c750562ef", "cast_id": 109, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 87}, {"name": "Majel Barrett", "character": "Starfleet Computer (voice) (as Majel Barrett Roddenberry)", "id": 1755, "credit_id": "52fe456d9251416c750562f3", "cast_id": 110, "profile_path": "/6esZeIlIdrCnoGkAggRAJ8FWs7Z.jpg", "order": 88}, {"name": "Rico E. Anderson", "character": "Council Member - Captain Kelley Bogel (uncredited)", "id": 204068, "credit_id": "52fe456d9251416c750562f7", "cast_id": 111, "profile_path": null, "order": 89}, {"name": "Richard Arnold", "character": "Romulan Science Tech (uncredited)", "id": 993162, "credit_id": "52fe456d9251416c750562fb", "cast_id": 112, "profile_path": null, "order": 90}, {"name": "Tad Atkinson", "character": "Amphibian Prisoner (uncredited)", "id": 225488, "credit_id": "52fe456d9251416c750562ff", "cast_id": 113, "profile_path": null, "order": 91}, {"name": "Leslie Augustine", "character": "Doctor (uncredited)", "id": 931039, "credit_id": "52fe456d9251416c75056303", "cast_id": 114, "profile_path": null, "order": 92}, {"name": "Johnny Baca", "character": "Starfleet Cadet (uncredited)", "id": 1278357, "credit_id": "52fe456d9251416c75056307", "cast_id": 115, "profile_path": null, "order": 93}, {"name": "Sala Baker", "character": "Drill Tower Romulan (uncredited)", "id": 1366, "credit_id": "52fe456d9251416c7505630b", "cast_id": 116, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 94}, {"name": "Leo Baligaya", "character": "Starfleet Cadet (uncredited)", "id": 1278358, "credit_id": "52fe456d9251416c7505630f", "cast_id": 117, "profile_path": null, "order": 95}, {"name": "Corey Becker", "character": "Starfleet Cadet (uncredited)", "id": 1278359, "credit_id": "52fe456d9251416c75056313", "cast_id": 118, "profile_path": null, "order": 96}, {"name": "Jessica Boss", "character": "Bridgeport Cadet (uncredited)", "id": 1278360, "credit_id": "52fe456d9251416c75056317", "cast_id": 119, "profile_path": null, "order": 97}, {"name": "Neil S. Bulk", "character": "Starfleet Cadet (uncredited)", "id": 1278361, "credit_id": "52fe456d9251416c7505631b", "cast_id": 120, "profile_path": null, "order": 98}, {"name": "James Cawley", "character": "Enterprise Crewmember (uncredited)", "id": 1278363, "credit_id": "52fe456d9251416c7505631f", "cast_id": 121, "profile_path": null, "order": 99}, {"name": "Brad Champagne", "character": "Starfleet Cadet (uncredited)", "id": 1278364, "credit_id": "52fe456d9251416c75056323", "cast_id": 122, "profile_path": null, "order": 100}, {"name": "Zachary Culbertson", "character": "Starfleet Cadet (uncredited)", "id": 1278365, "credit_id": "52fe456d9251416c75056327", "cast_id": 123, "profile_path": null, "order": 101}, {"name": "Calvin Dean", "character": "Security Officer Daniels (uncredited)", "id": 1278367, "credit_id": "52fe456d9251416c7505632b", "cast_id": 124, "profile_path": null, "order": 102}, {"name": "Christopher Doohan", "character": "Starfleet Officer (uncredited)", "id": 1278368, "credit_id": "52fe456d9251416c7505632f", "cast_id": 125, "profile_path": null, "order": 103}, {"name": "Claire Dor\u00e9", "character": "Enterprise Crew Member (uncredited)", "id": 1278369, "credit_id": "52fe456d9251416c75056333", "cast_id": 126, "profile_path": null, "order": 104}, {"name": "Mark Casimir Dyniewicz", "character": "Klingon Prisoner - Nero's Flashback (uncredited)", "id": 97447, "credit_id": "52fe456d9251416c75056337", "cast_id": 127, "profile_path": null, "order": 105}, {"name": "Etienne Eckert", "character": "Vulcan Federation Officer (uncredited)", "id": 1278370, "credit_id": "52fe456d9251416c7505633b", "cast_id": 128, "profile_path": null, "order": 106}, {"name": "Ken Edling", "character": "Doctor (uncredited)", "id": 1278371, "credit_id": "52fe456d9251416c7505633f", "cast_id": 129, "profile_path": null, "order": 107}, {"name": "Aliza Finley", "character": "Hurried Cadet with Clipboard (uncredited)", "id": 1278372, "credit_id": "52fe456d9251416c75056343", "cast_id": 130, "profile_path": null, "order": 108}, {"name": "Ian Fisher", "character": "Shipyard Worker (uncredited)", "id": 129600, "credit_id": "52fe456e9251416c75056347", "cast_id": 131, "profile_path": null, "order": 109}, {"name": "Mathew Thomas Foss", "character": "Starfleet Cadet (uncredited)", "id": 1278373, "credit_id": "52fe456e9251416c7505634b", "cast_id": 132, "profile_path": null, "order": 110}, {"name": "Massi Furlan", "character": "Missile Launcher (uncredited)", "id": 1010873, "credit_id": "52fe456e9251416c7505634f", "cast_id": 133, "profile_path": null, "order": 111}, {"name": "Victor Garber", "character": "Klingon Interrogator (scenes deleted) (uncredited)", "id": 8536, "credit_id": "52fe456e9251416c75056353", "cast_id": 134, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 112}, {"name": "Tommy Germanovich Jr.", "character": "FourSquare (uncredited)", "id": 1278375, "credit_id": "52fe456e9251416c75056357", "cast_id": 135, "profile_path": null, "order": 113}, {"name": "Mary Grace", "character": "Shipyard Bar Patron (uncredited)", "id": 218569, "credit_id": "52fe456e9251416c7505635b", "cast_id": 136, "profile_path": null, "order": 114}, {"name": "Wyatt Gray", "character": "Starfleet Cadet (uncredited)", "id": 1278378, "credit_id": "52fe456e9251416c7505635f", "cast_id": 137, "profile_path": null, "order": 115}, {"name": "Joshua Greene", "character": "Child Running in Snow (uncredited)", "id": 971780, "credit_id": "52fe456e9251416c75056363", "cast_id": 138, "profile_path": null, "order": 116}, {"name": "Nancy Guerriero", "character": "Crew Member (uncredited)", "id": 74504, "credit_id": "52fe456e9251416c75056367", "cast_id": 139, "profile_path": null, "order": 117}, {"name": "Justin Rodgers Hall", "character": "Starfleet Security Officer (uncredited)", "id": 85743, "credit_id": "52fe456e9251416c7505636b", "cast_id": 140, "profile_path": null, "order": 118}, {"name": "Jeffery Hauser", "character": "Kelvin Crew Member (uncredited)", "id": 1278379, "credit_id": "52fe456e9251416c7505636f", "cast_id": 141, "profile_path": null, "order": 119}, {"name": "Brad William Henke", "character": "Uncle Frank (uncredited) (unconfirmed)", "id": 15376, "credit_id": "52fe456e9251416c75056373", "cast_id": 142, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 120}, {"name": "Elizabeth Ingalls", "character": "Enterprise Nurse (uncredited)", "id": 490982, "credit_id": "52fe456e9251416c75056377", "cast_id": 143, "profile_path": null, "order": 121}, {"name": "Christopher Karl Johnson", "character": "Shipyard Worker (uncredited)", "id": 228458, "credit_id": "52fe456e9251416c7505637b", "cast_id": 144, "profile_path": null, "order": 122}, {"name": "Jolene Kay", "character": "Enterprise Crew Member (uncredited)", "id": 1278380, "credit_id": "52fe456e9251416c7505637f", "cast_id": 145, "profile_path": null, "order": 123}, {"name": "Sarah Klaren", "character": "Starfleet Cadet (uncredited)", "id": 1278381, "credit_id": "52fe456e9251416c75056383", "cast_id": 146, "profile_path": null, "order": 124}, {"name": "Makiko Konishi", "character": "Enterprise Crew Member (uncredited)", "id": 1278382, "credit_id": "52fe456e9251416c75056387", "cast_id": 147, "profile_path": null, "order": 125}, {"name": "Bryan Lee", "character": "Starfleet Cadet (uncredited)", "id": 1014618, "credit_id": "52fe456e9251416c7505638b", "cast_id": 148, "profile_path": null, "order": 126}, {"name": "Daniel D. Lee", "character": "Starfleet Commander (uncredited)", "id": 1278383, "credit_id": "52fe456e9251416c7505638f", "cast_id": 149, "profile_path": null, "order": 127}, {"name": "Anne Leighton", "character": "Enterprise Crew Member (uncredited)", "id": 139553, "credit_id": "52fe456e9251416c75056393", "cast_id": 150, "profile_path": null, "order": 128}, {"name": "Steve Luna", "character": "Lieutenant Star Fleet Command (uncredited)", "id": 1103961, "credit_id": "52fe456e9251416c75056397", "cast_id": 151, "profile_path": null, "order": 129}, {"name": "Aaron Lynch", "character": "Flight Operational Air Safety Conductor (uncredited)", "id": 1278384, "credit_id": "52fe456e9251416c7505639b", "cast_id": 152, "profile_path": null, "order": 130}, {"name": "Justin Malachi", "character": "Starfleet Cadet (uncredited)", "id": 1278385, "credit_id": "52fe456e9251416c7505639f", "cast_id": 153, "profile_path": null, "order": 131}, {"name": "Nav Mann", "character": "Romulan Crew Member Placing Bomb (uncredited)", "id": 989924, "credit_id": "52fe456e9251416c750563a3", "cast_id": 154, "profile_path": null, "order": 132}, {"name": "Paul Marshall", "character": "Bar Patron (uncredited)", "id": 1278386, "credit_id": "52fe456e9251416c750563a7", "cast_id": 155, "profile_path": null, "order": 133}, {"name": "Owen Martin", "character": "Alien Cadet / Enterprise Crew (uncredited)", "id": 1114365, "credit_id": "52fe456e9251416c750563ab", "cast_id": 156, "profile_path": null, "order": 134}, {"name": "Taylor McCluskey", "character": "Kelvin Alien (uncredited)", "id": 1278387, "credit_id": "52fe456e9251416c750563af", "cast_id": 157, "profile_path": null, "order": 135}, {"name": "Matthew McGregor", "character": "Starfleet Cadet (uncredited)", "id": 1278388, "credit_id": "52fe456e9251416c750563b3", "cast_id": 158, "profile_path": null, "order": 136}, {"name": "Caitlin McKenna-Wilkinson", "character": "Kelvin Computer (uncredited)", "id": 59055, "credit_id": "52fe456e9251416c750563b7", "cast_id": 159, "profile_path": null, "order": 137}, {"name": "Patrizia Milano", "character": "Councilwoman (uncredited)", "id": 1278389, "credit_id": "52fe456e9251416c750563bb", "cast_id": 160, "profile_path": null, "order": 138}, {"name": "Kevin Moser", "character": "Enterprise Crewman (uncredited)", "id": 1278390, "credit_id": "52fe456e9251416c750563bf", "cast_id": 161, "profile_path": null, "order": 139}, {"name": "Jonathan W.D. Newkerk", "character": "Starfleet Cadet (uncredited)", "id": 1278391, "credit_id": "52fe456e9251416c750563c3", "cast_id": 162, "profile_path": null, "order": 140}, {"name": "Westley Nguyen", "character": "Enterprise Crew Member (uncredited)", "id": 1278392, "credit_id": "52fe456e9251416c750563c7", "cast_id": 163, "profile_path": null, "order": 141}, {"name": "Jim Nieb", "character": "Sal (uncredited)", "id": 1278393, "credit_id": "52fe456e9251416c750563cb", "cast_id": 164, "profile_path": null, "order": 142}, {"name": "Andres Perez-Molina", "character": "Romulan Crew Member (uncredited)", "id": 1226016, "credit_id": "52fe456e9251416c750563cf", "cast_id": 165, "profile_path": null, "order": 143}, {"name": "Mark Phelan", "character": "Romulan (uncredited)", "id": 149466, "credit_id": "52fe456e9251416c750563d3", "cast_id": 166, "profile_path": null, "order": 144}, {"name": "Damion Poitier", "character": "Drill Hanson #1 (uncredited)", "id": 150194, "credit_id": "52fe456e9251416c750563d7", "cast_id": 167, "profile_path": "/zBoq4SAauhVmbHSyWZXYXvA36Ky.jpg", "order": 145}, {"name": "Rahvaunia", "character": "Academy Teacher (uncredited)", "id": 986700, "credit_id": "52fe456e9251416c750563db", "cast_id": 168, "profile_path": null, "order": 146}, {"name": "Bertrand Roberson Jr.", "character": "Shuttle Cadet (uncredited)", "id": 97466, "credit_id": "52fe456e9251416c750563df", "cast_id": 169, "profile_path": null, "order": 147}, {"name": "Deborah Rombaut", "character": "Starfleet Cadet (uncredited)", "id": 588647, "credit_id": "52fe456e9251416c750563e3", "cast_id": 170, "profile_path": null, "order": 148}, {"name": "Leonard Jonathan Ruebe", "character": "Starfleet Cadet (uncredited)", "id": 1278394, "credit_id": "52fe456e9251416c750563e7", "cast_id": 171, "profile_path": null, "order": 149}, {"name": "Ramona Seymour", "character": "Starfleet Cadet (uncredited)", "id": 1278395, "credit_id": "52fe456e9251416c750563eb", "cast_id": 172, "profile_path": null, "order": 150}, {"name": "William Morgan Sheppard", "character": "Vulcan Science Minister (uncredited)", "id": 938390, "credit_id": "52fe456e9251416c750563ef", "cast_id": 173, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 151}, {"name": "Katie Soo", "character": "Enterprise Crew Member (uncredited)", "id": 1278397, "credit_id": "52fe456e9251416c750563f3", "cast_id": 174, "profile_path": null, "order": 152}, {"name": "Arne Starr", "character": "Lt. Cmdr. Engineeriring (uncredited)", "id": 1202554, "credit_id": "52fe456e9251416c750563f7", "cast_id": 175, "profile_path": null, "order": 153}, {"name": "Ronnie Steadman", "character": "Shuttle Pilot (uncredited)", "id": 121905, "credit_id": "52fe456e9251416c750563fb", "cast_id": 176, "profile_path": null, "order": 154}, {"name": "Joseph Stephens Jr.", "character": "Cadet Officer (uncredited)", "id": 1278398, "credit_id": "52fe456e9251416c750563ff", "cast_id": 177, "profile_path": null, "order": 155}, {"name": "Joseph Steven", "character": "Romulan Engineer (uncredited)", "id": 1278399, "credit_id": "52fe456e9251416c75056403", "cast_id": 178, "profile_path": null, "order": 156}, {"name": "T.J. Storm", "character": "Klingon Agitator (uncredited)", "id": 980805, "credit_id": "52fe456e9251416c75056407", "cast_id": 179, "profile_path": "/mjDnRk9PC4MKB7De7mVpx4NayrB.jpg", "order": 157}, {"name": "Paul Townsend", "character": "Starfleet Security Officer (uncredited)", "id": 203279, "credit_id": "52fe456e9251416c7505640b", "cast_id": 180, "profile_path": null, "order": 158}, {"name": "Scott Trimble", "character": "Klingon Prison Guard (uncredited)", "id": 1235227, "credit_id": "52fe456e9251416c7505640f", "cast_id": 181, "profile_path": null, "order": 159}, {"name": "Errik Tustenuggee", "character": "Federation Captain Cartwright (uncredited)", "id": 1278508, "credit_id": "52fe456e9251416c75056413", "cast_id": 182, "profile_path": null, "order": 160}, {"name": "Ravi Valleti", "character": "Cadet at Trial (uncredited)", "id": 1278509, "credit_id": "52fe456e9251416c75056417", "cast_id": 183, "profile_path": null, "order": 161}, {"name": "Jason Vaughn", "character": "Starfleet Cadet (uncredited)", "id": 1278514, "credit_id": "52fe456e9251416c7505641b", "cast_id": 184, "profile_path": null, "order": 162}, {"name": "A.J. Verel", "character": "Enterprise Crewman (uncredited)", "id": 1278515, "credit_id": "52fe456e9251416c7505641f", "cast_id": 185, "profile_path": null, "order": 163}, {"name": "Brian Waller", "character": "Vulcan Council Member (uncredited)", "id": 1202555, "credit_id": "52fe456e9251416c75056423", "cast_id": 186, "profile_path": null, "order": 164}, {"name": "Steve Wharton", "character": "Star Fleet Cadet (uncredited)", "id": 1278516, "credit_id": "52fe456e9251416c75056427", "cast_id": 187, "profile_path": null, "order": 165}, {"name": "Wil Wheaton", "character": "Romulan (voice) (uncredited)", "id": 3033, "credit_id": "52fe456e9251416c7505642b", "cast_id": 188, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 166}, {"name": "Brianna Womick", "character": "Starfleet Cadet (uncredited)", "id": 1278521, "credit_id": "52fe456e9251416c7505642f", "cast_id": 189, "profile_path": null, "order": 167}, {"name": "Lynnanne Zager", "character": "Enterprise Computer (voice) (uncredited)", "id": 64451, "credit_id": "52fe456e9251416c75056433", "cast_id": 190, "profile_path": "/bfxb3RNWKKxCdurwYQz7t48dCZI.jpg", "order": 168}, {"name": "Pavel Lychnikoff", "character": "Romulan Officer", "id": 52762, "credit_id": "54e8a4569251412eb1001f2f", "cast_id": 199, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 169}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe456c9251416c75056141", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 7.3, "runtime": 127}, "13477": {"poster_path": "/drI7GrwMyqXonKsr0i6pIKpTbHc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36699403, "overview": "After fishing out coins from a water fountain in Italy, cynical New Yorker Beth Harper finds herself being wooed by several ardent suitors. As she deals with the attention, Beth tries to figure out whether a charming reporter really loves her.", "video": false, "id": 13477, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "When in Rome", "tagline": "Did you ever wish for the impossible?", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1185416", "adult": false, "backdrop_path": "/yT0dZm5EicwHZIWTJZvK2MvjDqO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2010-01-29", "popularity": 0.590763227816928, "original_title": "When in Rome", "budget": 0, "cast": [{"name": "Josh Duhamel", "character": "Nick Beamon", "id": 19536, "credit_id": "52fe456e9251416c750564d3", "cast_id": 1, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 0}, {"name": "Kristen Bell", "character": "Beth Harper", "id": 40462, "credit_id": "52fe456e9251416c750564d7", "cast_id": 2, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Anjelica Huston", "character": "Celeste", "id": 5657, "credit_id": "52fe456e9251416c75056523", "cast_id": 15, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 2}, {"name": "Will Arnett", "character": "Antonio", "id": 21200, "credit_id": "52fe456f9251416c75056527", "cast_id": 16, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 3}, {"name": "Jon Heder", "character": "Lance", "id": 53926, "credit_id": "52fe456f9251416c7505652b", "cast_id": 17, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 4}, {"name": "Dax Shepard", "character": "Gale", "id": 51298, "credit_id": "52fe456f9251416c7505652f", "cast_id": 18, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 5}, {"name": "Alexis Dziena", "character": "Joan", "id": 4433, "credit_id": "52fe456f9251416c75056533", "cast_id": 19, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 6}, {"name": "Kate Micucci", "character": "Stacy", "id": 132354, "credit_id": "52fe456f9251416c75056537", "cast_id": 20, "profile_path": "/qoUOtNflMZb9l1zgg9aeMiu1MF7.jpg", "order": 7}, {"name": "Bobby Moynihan", "character": "Puck", "id": 452205, "credit_id": "52fe456f9251416c7505653b", "cast_id": 21, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 8}, {"name": "Peggy Lipton", "character": "Priscilla", "id": 152759, "credit_id": "52fe456f9251416c7505653f", "cast_id": 22, "profile_path": "/ufFeqwjB6GGdZCRnkZtNS2hDoz9.jpg", "order": 9}, {"name": "Keir O'Donnell", "character": "Priest", "id": 39213, "credit_id": "52fe456f9251416c75056543", "cast_id": 23, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 10}, {"name": "Lee Pace", "character": "Brady Sacks", "id": 72095, "credit_id": "52fe456f9251416c75056547", "cast_id": 24, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 11}, {"name": "Kristen Schaal", "character": "Ilona", "id": 109869, "credit_id": "52fe456f9251416c7505654b", "cast_id": 25, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 12}, {"name": "Shaquille O'Neal", "character": "Himself", "id": 35806, "credit_id": "52fe456f9251416c7505654f", "cast_id": 26, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 13}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe456e9251416c750564dd", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.8, "runtime": 91}, "152742": {"poster_path": "/bXk6T8npfh2Ly24VMWSeZLsTLhC.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 19255873, "overview": "Virgil Oldman is a world renowned antiques expert and auctioneer. An eccentric genius, he leads a solitary life, going to extreme lengths to keep his distance from the messiness of human relationships. When appointed by the beautiful but emotionally damaged Claire to oversee the valuation and sale of her family\u2019s priceless art collection, Virgil allows himself to form an attachment to her \u2013 and soon he is engulfed by a passion which will rock his bland existence to the core.", "video": false, "id": 152742, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "The Best Offer", "tagline": "A Master of Possession. A Crime of Obsession", "vote_count": 146, "homepage": "http://lamiglioreoffertailfilm.it", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1924396", "adult": false, "backdrop_path": "/vH1FgUSUo3Js8BxuePINqfqMogr.jpg", "production_companies": [{"name": "Regione Lazio", "id": 20416}, {"name": "Paco Cinematografica", "id": 3110}, {"name": "Warner Bros.", "id": 6194}, {"name": "Business Location Sudtirol Alto Adige", "id": 20644}, {"name": "Friuli Venezia Giulia Film Commission", "id": 38591}, {"name": "UniCredit Group", "id": 38592}], "release_date": "2013-01-01", "popularity": 1.13672960931306, "original_title": "La migliore offerta", "budget": 13500000, "cast": [{"name": "Geoffrey Rush", "character": "Virgil Oldman", "id": 118, "credit_id": "52fe4b299251416c910d1e35", "cast_id": 5, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Robert", "id": 38941, "credit_id": "52fe4b299251416c910d1e39", "cast_id": 6, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Sylvia Hoeks", "character": "Claire", "id": 104632, "credit_id": "52fe4b299251416c910d1e3d", "cast_id": 7, "profile_path": "/nwweo6SsGJ2YBuQcRoTrOzU9jxw.jpg", "order": 2}, {"name": "Donald Sutherland", "character": "Billy", "id": 55636, "credit_id": "52fe4b299251416c910d1e41", "cast_id": 8, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 3}, {"name": "Maximilian Dirr", "character": "Virgil's Assistant", "id": 1133330, "credit_id": "52fe4b299251416c910d1e45", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Philip Jackson", "character": "Fred", "id": 25532, "credit_id": "52fe4b299251416c910d1e49", "cast_id": 10, "profile_path": "/5pVwSFvjEgOprlMn3s6O7bQM1qc.jpg", "order": 5}, {"name": "Dermot Crowley", "character": "Lambert", "id": 17484, "credit_id": "52fe4b299251416c910d1e4d", "cast_id": 11, "profile_path": "/z2flyEd3eV8Ho8mXa8rXOHZw9Yg.jpg", "order": 6}, {"name": "Liya Kebede", "character": "Sarah", "id": 111662, "credit_id": "52fe4b299251416c910d1e51", "cast_id": 12, "profile_path": "/b4gwjWAqL0B7BwAXaY4sWak35ET.jpg", "order": 7}, {"name": "Brigitte Christensen", "character": "The Sister", "id": 1073181, "credit_id": "52fe4b299251416c910d1e5b", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Kiruna Stamell", "character": "Girl in the Bar", "id": 1250098, "credit_id": "546925a8eaeb816b46001876", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Caterina Capodilista", "character": "Young Woman", "id": 1386133, "credit_id": "546925d4eaeb816b550019bb", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Gen Seto", "character": "Housekeeper", "id": 1386137, "credit_id": "54692636eaeb816b550019c6", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Klaus Tauber", "character": "Virgil's Assistant #1", "id": 1386139, "credit_id": "54692659eaeb8101730000eb", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Maximilian Dirr", "character": "Virgil's Assistant #2", "id": 1133330, "credit_id": "54692675eaeb816b4b0018f3", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Laurence Belgrave", "character": "Virgil's Assistant #3", "id": 1386142, "credit_id": "5469269d22136e68c9001c96", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Sean Buchanan", "character": "Virgil's Assistant #4", "id": 1386143, "credit_id": "546926b6eaeb816b43001878", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "John Benfield", "character": "Barman", "id": 42642, "credit_id": "546926d3eaeb8101730000f5", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe4b299251416c910d1e1f", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.6, "runtime": 124}, "38055": {"poster_path": "/amXAUSAUrnGuLGEyc1ZNhBvgbnF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60500000, "overview": "Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.", "video": false, "id": 38055, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Megamind", "tagline": "His brain is off the chain.", "vote_count": 665, "homepage": "http://www.megamind.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1001526", "adult": false, "backdrop_path": "/o6anuGPog9853CPiaPQEMmdBVT0.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2010-11-04", "popularity": 1.70716235422447, "original_title": "Megamind", "budget": 3000000, "cast": [{"name": "Will Ferrell", "character": "Megamind (voice)", "id": 23659, "credit_id": "52fe468e9251416c910583d1", "cast_id": 5, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Metro Man (voice)", "id": 287, "credit_id": "52fe468e9251416c910583cd", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Tina Fey", "character": "Roxanne Ritchi (voice)", "id": 56323, "credit_id": "52fe468e9251416c910583d5", "cast_id": 6, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 2}, {"name": "Jonah Hill", "character": "Titan (voice)", "id": 21007, "credit_id": "52fe468e9251416c910583d9", "cast_id": 7, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 3}, {"name": "David Cross", "character": "Minion", "id": 212, "credit_id": "52fe468e9251416c910583dd", "cast_id": 8, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Justin Long", "character": "Minions", "id": 15033, "credit_id": "52fe468e9251416c910583e1", "cast_id": 9, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 5}, {"name": "Bill Hader", "character": "Bob Prickles", "id": 19278, "credit_id": "52fe468e9251416c910583e5", "cast_id": 10, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 6}, {"name": "Amy Poehler", "character": "Linda Prickles", "id": 56322, "credit_id": "52fe468e9251416c910583e9", "cast_id": 11, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 7}, {"name": "Rob Corddry", "character": "Random Citizen", "id": 52997, "credit_id": "52fe468e9251416c910583ed", "cast_id": 12, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 8}, {"name": "J.K. Simmons", "character": "Warden", "id": 18999, "credit_id": "52fe468e9251416c910583f1", "cast_id": 13, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 9}, {"name": "Ben Stiller", "character": "Bernard", "id": 7399, "credit_id": "52fe468e9251416c910583f5", "cast_id": 14, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 10}, {"name": "Justin Theroux", "character": "Megaminds's Father", "id": 15009, "credit_id": "52fe468f9251416c910583f9", "cast_id": 15, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 11}, {"name": "Christopher Knights", "character": "Prison Guard", "id": 12097, "credit_id": "52fe468f9251416c910583fd", "cast_id": 16, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 12}, {"name": "Jack Blessing", "character": "Newscaster", "id": 102336, "credit_id": "52fe468f9251416c91058401", "cast_id": 17, "profile_path": "/xadJ0CFul9YT84hRTZ3c0YmFASy.jpg", "order": 13}, {"name": "Joey Dinitere", "character": "Baby Megamind", "id": 141772, "credit_id": "52fe468f9251416c91058409", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Noah Dinitere", "character": "Babby Metro Man", "id": 141773, "credit_id": "52fe468f9251416c9105840d", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "L\u00e6rke Winther Andersen", "character": "Roxanne (Voice: Danish Version)", "id": 587170, "credit_id": "52fe468f9251416c91058441", "cast_id": 29, "profile_path": "/1GTPguBCgLA0x5rwKilVm9qW53E.jpg", "order": 17}, {"name": "Jessica Schulte", "character": "Megamind's Mother (voice)", "id": 936672, "credit_id": "552dc7bcc3a368618e0069f0", "cast_id": 33, "profile_path": "/apZtLC6mjAGEZLctvprrOhTw95W.jpg", "order": 18}, {"name": "Tom McGrath", "character": "Lord Scott / Prison Guard (voice)", "id": 18864, "credit_id": "552dc86cc3a3683f0d0007be", "cast_id": 34, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 19}, {"name": "Emily Nordwind", "character": "Lady Scott (voice)", "id": 1364656, "credit_id": "552dc89d9251413873006f7c", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Ella Olivia Stiller", "character": "Schoolchild (voice)", "id": 1454400, "credit_id": "552dc995c3a36875010021a8", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Quinn Dempsey Stiller", "character": "Schoolchild (voice)", "id": 1077795, "credit_id": "552dcaa09251413838000714", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Brian Hopkins", "character": "Prisoner (voice)", "id": 1454420, "credit_id": "552dcbd49251413838000755", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Mike Mitchell", "character": "Father in Crowd (voice)", "id": 64151, "credit_id": "552dcc90c3a368618e006b12", "cast_id": 39, "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "order": 24}, {"name": "Jasper Johannes Andrews", "character": "Crying Baby (voice)", "id": 1454441, "credit_id": "552dce53925141311100088e", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Stephen Kearin", "character": "Mayor (voice)", "id": 1448984, "credit_id": "552dcfc3c3a36872ef000e4c", "cast_id": 41, "profile_path": null, "order": 26}], "directors": [{"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe468e9251416c910583c9", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}], "vote_average": 6.4, "runtime": 95}, "5289": {"poster_path": "/xcIrMCMwfdK6hYbAvdfVFhVN1DJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10289, "overview": "Two cops, a rookie and a grizzled vet, pursue an accomplished bank robber.", "video": false, "id": 5289, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Chaos", "tagline": "When the system breaks down... someone is about to get rich.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402910", "adult": false, "backdrop_path": "/ni3DtIc0rm7OgxenOPKEktUjgsU.jpg", "production_companies": [{"name": "Mobius International", "id": 26147}, {"name": "Chaotic Productions", "id": 26146}, {"name": "Current Entertainment", "id": 972}, {"name": "Rampage Entertainment", "id": 26144}, {"name": "Pierce-Williams", "id": 1896}, {"name": "Zero Gravity Management", "id": 5357}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "M\u00f6bius Entertainment", "id": 21869}], "release_date": "2005-01-17", "popularity": 0.975912250918601, "original_title": "Chaos", "budget": 12000000, "cast": [{"name": "Jason Statham", "character": "Det. Quentin Conners", "id": 976, "credit_id": "52fe4402c3a36847f807d077", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Ryan Phillippe", "character": "Det. Shane Dekker", "id": 11864, "credit_id": "52fe4402c3a36847f807d07b", "cast_id": 2, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 1}, {"name": "Wesley Snipes", "character": "Lorenz / Jason York", "id": 10814, "credit_id": "52fe4402c3a36847f807d07f", "cast_id": 3, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 2}, {"name": "Henry Czerny", "character": "Capt. Martin Jenkins", "id": 15319, "credit_id": "52fe4402c3a36847f807d083", "cast_id": 4, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 3}, {"name": "Justine Waddell", "character": "Det. Teddy Galloway", "id": 42705, "credit_id": "52fe4402c3a36847f807d087", "cast_id": 5, "profile_path": "/CjphDEmppD6a4X9R6ncQfAJFNv.jpg", "order": 4}, {"name": "Nicholas Lea", "character": "Det. Vincent Durano", "id": 42706, "credit_id": "52fe4402c3a36847f807d08b", "cast_id": 6, "profile_path": "/tXfhqYTwSixZW623zvM9QyPbyPV.jpg", "order": 5}, {"name": "Jessica Steen", "character": "Karen Cross", "id": 42707, "credit_id": "52fe4402c3a36847f807d08f", "cast_id": 7, "profile_path": "/lZMvl7tJZPThfF7Lnui4wgEoOIf.jpg", "order": 6}, {"name": "Rob LaBelle", "character": "Bank Manager", "id": 42708, "credit_id": "52fe4402c3a36847f807d093", "cast_id": 8, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 7}, {"name": "John Cassini", "character": "Det. Bernie Callo", "id": 12055, "credit_id": "52fe4402c3a36847f807d097", "cast_id": 9, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 8}, {"name": "Damon Johnson", "character": "Brendan Dax", "id": 42709, "credit_id": "52fe4402c3a36847f807d09b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Paul Perri", "character": "Harry Hume", "id": 17933, "credit_id": "52fe4402c3a36847f807d09f", "cast_id": 11, "profile_path": "/knYjauMHtrFyptiZ2V2f9pjuh0F.jpg", "order": 10}, {"name": "Keegan Connor Tracy", "character": "Marnie Rollins", "id": 42710, "credit_id": "52fe4402c3a36847f807d0a3", "cast_id": 12, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 11}, {"name": "Natassia Malthe", "character": "Gina Lopez", "id": 21430, "credit_id": "52fe4402c3a36847f807d0a7", "cast_id": 13, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 12}, {"name": "Ty Olsson", "character": "Damon Richards", "id": 42711, "credit_id": "52fe4402c3a36847f807d0ab", "cast_id": 14, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 13}, {"name": "Terry Chen", "character": "Chris Lei", "id": 11677, "credit_id": "52fe4402c3a36847f807d0af", "cast_id": 15, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 14}, {"name": "Ken Medlock", "character": "Officer MacDunner", "id": 181067, "credit_id": "52fe4402c3a36847f807d0d1", "cast_id": 21, "profile_path": "/mHWHCbYkOwUPVHdAo7LvIMe1967.jpg", "order": 15}, {"name": "Pascale Hutton", "character": "Pretty Waitress", "id": 64917, "credit_id": "52fe4402c3a36847f807d0d5", "cast_id": 22, "profile_path": "/ilZSs16aNVySDEpU9k2xNShu0Ht.jpg", "order": 16}, {"name": "Michasha Armstrong", "character": "Xander Harrington", "id": 1237734, "credit_id": "53ae953f0e0a26598900428d", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Mike Dopud", "character": "Lamar Galt", "id": 64674, "credit_id": "53ae95e40e0a2659890042a3", "cast_id": 39, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 18}, {"name": "Garvin Cross", "character": "SWAT Commander", "id": 21264, "credit_id": "53ae96540e0a2659830041e6", "cast_id": 40, "profile_path": "/gQ5UZq9pR7d96wWvwFVEX1fCPsB.jpg", "order": 19}, {"name": "Fulvio Cecere", "character": "Det. Thomas Branch", "id": 65808, "credit_id": "53ae96e30e0a265986004131", "cast_id": 41, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 20}], "directors": [{"name": "Tony Giglio", "department": "Directing", "job": "Director", "credit_id": "52fe4402c3a36847f807d0b5", "profile_path": null, "id": 42712}], "vote_average": 6.7, "runtime": 106}, "152747": {"poster_path": "/9hdfc5MA50LUBwGXwHyO4BoFi57.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6108720, "overview": "Deep into a solo voyage in the Indian Ocean, an unnamed man (Redford) wakes to find his 39-foot yacht taking on water after a collision with a shipping container left floating on the high seas. With his navigation equipment and radio disabled, the man sails unknowingly into the path of a violent storm. Despite his success in patching the breached hull, his mariner's intuition and a strength that belies his age, the man barely survives the tempest. Using only a sextant and nautical maps to chart his progress, he is forced to rely on ocean currents to carry him into a shipping lane in hopes of hailing a passing vessel. But with the sun unrelenting, sharks circling and his meager supplies dwindling, the ever-resourceful sailor soon finds himself staring his mortality in the face.", "video": false, "id": 152747, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "All Is Lost", "tagline": "Never give up.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2017038", "adult": false, "backdrop_path": "/ygQQHmscHQWmJ2uQzXdxLE9Yszz.jpg", "production_companies": [{"name": "Before the Door Pictures", "id": 14861}, {"name": "Washington Square Films", "id": 14862}, {"name": "Black Bear Pictures", "id": 22146}, {"name": "Treehouse Pictures", "id": 14580}, {"name": "Sudden Storm Productions", "id": 6742}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2013-10-18", "popularity": 0.908562748355665, "original_title": "All Is Lost", "budget": 9000000, "cast": [{"name": "Robert Redford", "character": "Our Man", "id": 4135, "credit_id": "52fe4b299251416c910d1f2b", "cast_id": 7, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}], "directors": [{"name": "J.C. Chandor ", "department": "Directing", "job": "Director", "credit_id": "52fe4b299251416c910d1f09", "profile_path": "/mvNMQ2c23j6mVG0jqplWRneHLmU.jpg", "id": 556172}], "vote_average": 6.4, "runtime": 106}, "46261": {"poster_path": "/yZlKw02AuEJQ4oOFC3kUjFxqiUj.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young girl sent to live with her father and his new girlfriend discovers creatures in her new home who want to claim her as one of their own.", "video": false, "id": 46261, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Don't Be Afraid of the Dark", "tagline": "Fear is never just make believe", "vote_count": 79, "homepage": "http://www.dontbeafraidofthedark.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1270761", "adult": false, "backdrop_path": "/zW9Ia77f4ROD5IPWBIjBCxGBs9E.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "FilmDistrict", "id": 7263}, {"name": "Necropia", "id": 11627}, {"name": "Gran Via Productions", "id": 2605}, {"name": "Tequila Gang", "id": 11628}], "release_date": "2010-11-06", "popularity": 0.61148197664632, "original_title": "Don't Be Afraid of the Dark", "budget": 12500000, "cast": [{"name": "Katie Holmes", "character": "Kim", "id": 3897, "credit_id": "52fe46edc3a36847f811a2c3", "cast_id": 10, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Alex Hirst", "id": 529, "credit_id": "52fe46edc3a36847f811a2c7", "cast_id": 11, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Bailee Madison", "character": "Sally Hirst", "id": 54479, "credit_id": "52fe46edc3a36847f811a2cb", "cast_id": 12, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 2}, {"name": "Alan Dale", "character": "Jacoby", "id": 52760, "credit_id": "52fe46edc3a36847f811a2cf", "cast_id": 13, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 3}, {"name": "Jack Thompson", "character": "Harris", "id": 12536, "credit_id": "52fe46edc3a36847f811a2bb", "cast_id": 8, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 4}, {"name": "Emelia Burns", "character": "Caterer", "id": 210653, "credit_id": "52fe46edc3a36847f811a2bf", "cast_id": 9, "profile_path": "/d9NVU4P7zb0GqOhQr147gjTzqcU.jpg", "order": 5}, {"name": "Eddie Ritchard", "character": "Housekeeper", "id": 1014916, "credit_id": "52fe46edc3a36847f811a2d3", "cast_id": 14, "profile_path": "/wPdNitE84aZ5OvCzfl6BDo6EtqF.jpg", "order": 6}, {"name": "Nicholas Bell", "character": "Psychiatrist", "id": 15340, "credit_id": "52fe46edc3a36847f811a32b", "cast_id": 30, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 7}, {"name": "James Mackay", "character": "Librarian", "id": 1112872, "credit_id": "52fe46edc3a36847f811a32f", "cast_id": 31, "profile_path": null, "order": 8}], "directors": [{"name": "Troy Nixey", "department": "Directing", "job": "Director", "credit_id": "52fe46edc3a36847f811a2ab", "profile_path": null, "id": 135601}], "vote_average": 5.3, "runtime": 99}, "226486": {"poster_path": "/cq6wvDqETqJXgpQplkL0FBw2leM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After losing her job and learning that her husband has been unfaithful, a woman hits the road with her profane, hard-drinking grandmother.", "video": false, "id": 226486, "genres": [{"id": 35, "name": "Comedy"}], "title": "Tammy", "tagline": "She hit the road. The road hit back.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103254", "adult": false, "backdrop_path": "/vmrDTWGTupJQ8KRUNrx4RLGtTVp.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Gary Sanchez Productions", "id": 4740}], "release_date": "2014-07-03", "popularity": 0.925061413011991, "original_title": "Tammy", "budget": 0, "cast": [{"name": "Melissa McCarthy", "character": "Tammy", "id": 55536, "credit_id": "52fe4e7f9251416c75158661", "cast_id": 4, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Pearl", "id": 4038, "credit_id": "52fe4e7f9251416c75158665", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Kathy Bates", "character": "Lenore", "id": 8534, "credit_id": "52fe4e7f9251416c75158671", "cast_id": 8, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 2}, {"name": "Allison Janney", "character": "Deb", "id": 19, "credit_id": "52fe4e7f9251416c75158669", "cast_id": 6, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 3}, {"name": "Dan Aykroyd", "character": "Don", "id": 707, "credit_id": "52fe4e7f9251416c75158675", "cast_id": 9, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 4}, {"name": "Gary Cole", "character": "Earl", "id": 21163, "credit_id": "52fe4e7f9251416c7515867d", "cast_id": 11, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 5}, {"name": "Sandra Oh", "character": "Susan", "id": 25540, "credit_id": "539b0f050e0a264508001464", "cast_id": 14, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 6}, {"name": "Mark Duplass", "character": "Bobby", "id": 45407, "credit_id": "52fe4e7f9251416c7515866d", "cast_id": 7, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 7}, {"name": "Toni Collette", "character": "Missi", "id": 3051, "credit_id": "539b0f110e0a264508001467", "cast_id": 15, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 8}, {"name": "Nat Faxon", "character": "Greg", "id": 105648, "credit_id": "52fe4e7f9251416c75158681", "cast_id": 12, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 9}, {"name": "Ben Falcone", "character": "Keith", "id": 170820, "credit_id": "539b0f1e0e0a26450200128b", "cast_id": 16, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 10}, {"name": "Sarah Baker", "character": "Becky", "id": 461542, "credit_id": "52fe4e7f9251416c75158679", "cast_id": 10, "profile_path": "/A1mwwdupm77sGDHmpUA8dec6VGT.jpg", "order": 11}, {"name": "Mia Rose Frampton", "character": "Karen", "id": 1169063, "credit_id": "533b4e5a9251413bb2000321", "cast_id": 13, "profile_path": "/3wUGNSzifgTMfRjT9w7kuOoccvH.jpg", "order": 12}, {"name": "Rich Williams", "character": "Larry", "id": 191156, "credit_id": "547cac619251412d780032dd", "cast_id": 17, "profile_path": "/AeZNgueQbNZJETRX4koAlAzyn2x.jpg", "order": 13}, {"name": "Steve Little", "character": "Jet Ski Rental Guy", "id": 1218547, "credit_id": "547d84c2c3a3685af0005581", "cast_id": 18, "profile_path": "/dbmJRG0M1gQ6jI3Sjvm2AOcW2pu.jpg", "order": 14}, {"name": "Dakota Lee", "character": "Kathleen", "id": 1392593, "credit_id": "547d859d9251411f4e003c58", "cast_id": 19, "profile_path": "/xf92Cr2xLSYqtMey7nnyKwj9L4n.jpg", "order": 15}, {"name": "Mark L. Young", "character": "Jesse", "id": 81197, "credit_id": "547d87139251412d6d004df5", "cast_id": 20, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 16}, {"name": "Steve Mallory", "character": "Cashier", "id": 1221605, "credit_id": "547d8982c3a3685af0005644", "cast_id": 21, "profile_path": "/x2N0Z1uaa39Hg151XaAvjLI0Tgg.jpg", "order": 17}, {"name": "Big Al Hall", "character": "Possum Creek Bluegrass Band", "id": 1392624, "credit_id": "547d89d0c3a36841e1001bf9", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Jones Smith", "character": "Possum Creek Bluegrass Band", "id": 1392626, "credit_id": "547d8a549251412d75004828", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Joe Baxter", "character": "Possum Creek Bluegrass Band", "id": 1392630, "credit_id": "547d8a929251412d75004834", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Benjamin Chontos", "character": "Possum Creek Bluegrass Band", "id": 1392631, "credit_id": "547d8ac49251412d78004dd3", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Sean Gould", "character": "Possum Creek Bluegrass Band", "id": 1392632, "credit_id": "547d8afbc3a3685af900478d", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Keith Welborn", "character": "DJ", "id": 1392634, "credit_id": "547d8b649251412d7f004f8c", "cast_id": 27, "profile_path": "/7bK4eYTQhUmhZA6WzB1mZXByemc.jpg", "order": 23}, {"name": "Oscar Gale", "character": "Javier", "id": 1392647, "credit_id": "547d8d17c3a3685afd0051ac", "cast_id": 28, "profile_path": "/sR7T2pQY0k9qodzyhuIwxOETZ10.jpg", "order": 24}, {"name": "Willie Hill", "character": "Prison Guard", "id": 1392666, "credit_id": "547d937e9251412d7f005097", "cast_id": 29, "profile_path": "/3IYh0MuyUxQR1Er3yxTzTlUSJ77.jpg", "order": 25}, {"name": "Zach Hanner", "character": "Man at Blue Post Bar-B-Que", "id": 1392671, "credit_id": "547d94059251411f4e003e34", "cast_id": 30, "profile_path": "/hzVLp8wVZ9YfDZ0R7QHi0fzKCdw.jpg", "order": 26}, {"name": "Jason Vail", "character": "Man at Blue Post Bar-B-Que", "id": 1019097, "credit_id": "547d95dbc3a3685b05005541", "cast_id": 31, "profile_path": "/rk308AVn1yU9LuYNiF3ZMwOBMB3.jpg", "order": 27}, {"name": "Leon Lamar", "character": "Old Man with Walker", "id": 80770, "credit_id": "547d97419251412d7c005430", "cast_id": 32, "profile_path": "/6yWKCRnzDXNfhHa8x3I0P1OuIPn.jpg", "order": 28}, {"name": "Larry Dorf", "character": "Officer Mannis", "id": 156106, "credit_id": "547d97b79251412d7c005443", "cast_id": 33, "profile_path": "/781fSdnTDfVvqHZ9xTrEPeYPlcW.jpg", "order": 29}, {"name": "Ricky Muse", "character": "Officer Curtis", "id": 1181570, "credit_id": "547d9890c3a3685afd00536d", "cast_id": 34, "profile_path": "/xThzRMWFym3eHMJ4mlWMEW367NX.jpg", "order": 30}, {"name": "Barbara Weetman", "character": "Officer Carty", "id": 174158, "credit_id": "547d99aa9251412d7c00549e", "cast_id": 35, "profile_path": "/nBGWWPAMdQHLmJQ4srzPk5AofpD.jpg", "order": 31}, {"name": "William Flaman", "character": "La Grange Bail Cop", "id": 174193, "credit_id": "547d9c809251412d75004abf", "cast_id": 36, "profile_path": "/h4dKauE8wgtye8l8IPalsB1dak7.jpg", "order": 32}, {"name": "Rey Hernandez", "character": "Cop at Lakehouse", "id": 118367, "credit_id": "547d9e8b9251412d7f00525e", "cast_id": 37, "profile_path": "/6vZLiu6mTxzm7v8sebHLOGAEeGB.jpg", "order": 33}, {"name": "Penn Charles Holderness", "character": "News Anchor", "id": 1392758, "credit_id": "547d9f019251412d700059da", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Michelle Li", "character": "News Reporter", "id": 1392764, "credit_id": "547da018c3a3685b00005930", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Raven Whisnant", "character": "Charlotte", "id": 1392779, "credit_id": "547da6a49251412d6d0052e3", "cast_id": 40, "profile_path": "/4eTTmkHTSWJf0OmNLxWbRcdGmDe.jpg", "order": 36}, {"name": "Damon Jones", "character": "Jerry Miller", "id": 190423, "credit_id": "547daa41c3a36841e1002075", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Sandy McCarthy", "character": "Two Old Ladies Leaving a Bar", "id": 1392789, "credit_id": "547daa699251412d6d005367", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Margo Passas", "character": "Two Old Ladies Leaving a Bar", "id": 1392790, "credit_id": "547daaab9251412d6d005374", "cast_id": 43, "profile_path": null, "order": 39}], "directors": [{"name": "Ben Falcone", "department": "Directing", "job": "Director", "credit_id": "52fe4e7f9251416c75158651", "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "id": 170820}], "vote_average": 5.2, "runtime": 97}, "152760": {"poster_path": "/m4puTcUAFtFJBLMVoRs0FLk3ET3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154984035, "overview": "Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world\u2019s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?", "video": false, "id": 152760, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Monuments Men", "tagline": "It was the greatest art heist in history", "vote_count": 542, "homepage": "http://www.monumentsmen.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2177771", "adult": false, "backdrop_path": "/q83wt7MsAWHNN1jNFXQb0bnCghe.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Columbia Pictures", "id": 5}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Smokehouse Pictures", "id": 22695}, {"name": "Obelisk Productions", "id": 24970}], "release_date": "2014-02-20", "popularity": 1.81824169771768, "original_title": "The Monuments Men", "budget": 80000000, "cast": [{"name": "Matt Damon", "character": "James Granger", "id": 1892, "credit_id": "52fe4b2b9251416c910d21ad", "cast_id": 7, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Claire Simone", "id": 112, "credit_id": "52fe4b2b9251416c910d21b1", "cast_id": 8, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "George Clooney", "character": "Frank Stokes", "id": 1461, "credit_id": "52fe4b2b9251416c910d21b5", "cast_id": 9, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 2}, {"name": "Bill Murray", "character": "Richard Campbell", "id": 1532, "credit_id": "52fe4b2b9251416c910d21b9", "cast_id": 10, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "John Goodman", "character": "Walter Garfield", "id": 1230, "credit_id": "52fe4b2b9251416c910d21bd", "cast_id": 11, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "Hugh Bonneville", "character": "Donald Jeffries", "id": 19923, "credit_id": "52fe4b2b9251416c910d21c1", "cast_id": 12, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 5}, {"name": "Jean Dujardin", "character": "Jean Claude Clermont", "id": 56024, "credit_id": "52fe4b2b9251416c910d21c5", "cast_id": 13, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 6}, {"name": "Bob Balaban", "character": "Preston Savitz", "id": 12438, "credit_id": "52fe4b2b9251416c910d21c9", "cast_id": 14, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 7}, {"name": "Holger Handtke", "character": "Colonel Wegner", "id": 1050916, "credit_id": "52fe4b2b9251416c910d21e5", "cast_id": 20, "profile_path": "/3Fji2GcNKyUcdUdv7aOOH3XcFLf.jpg", "order": 8}, {"name": "Dimitri Leonidas", "character": "Sam Epstein", "id": 89821, "credit_id": "52fe4b2b9251416c910d21e9", "cast_id": 21, "profile_path": "/lRi0kPKkno8TVOUnVHngPBSXC7B.jpg", "order": 9}, {"name": "Justus von Dohn\u00e1nyi", "character": "Viktor Stahl", "id": 5646, "credit_id": "534bd6340e0a2640c800338f", "cast_id": 25, "profile_path": "/llyjSaezSTFUuUb17LcPkvMSi4M.jpg", "order": 10}, {"name": "Zahary Baharov", "character": "Commander Elya", "id": 84197, "credit_id": "52fe4b2b9251416c910d21f1", "cast_id": 24, "profile_path": "/2ezWsP0k0Q4vQORvqzU8xqtJysd.jpg", "order": 11}, {"name": "Sam Hazeldine", "character": "Colonel Langton", "id": 563559, "credit_id": "5399695fc3a3681d1b001109", "cast_id": 31, "profile_path": "/12ev9KVmZ1xF4FNeZFGYRHjvJkQ.jpg", "order": 12}, {"name": "Diarmaid Murtagh", "character": "Captain Harpen", "id": 1330044, "credit_id": "53996994c3a3681d070010c6", "cast_id": 32, "profile_path": "/mGYuCYKnPojosNhviSoB1BifofA.jpg", "order": 13}, {"name": "Serge Hazanavicius", "character": "Rene Armand", "id": 54274, "credit_id": "539969c7c3a3681d0a00112f", "cast_id": 33, "profile_path": "/42VGG0jLTFoRcbGZd0PTpQRYEKE.jpg", "order": 14}, {"name": "Udo Kroschwald", "character": "Hermann Goering", "id": 48392, "credit_id": "539969f6c3a3681d0a001139", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Grant Heslov", "character": "Doctor", "id": 31511, "credit_id": "53996a6ac3a3681cfd0010d9", "cast_id": 35, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 16}, {"name": "Michael Brandner", "character": "Dentist", "id": 38486, "credit_id": "540766ab0e0a261893001d36", "cast_id": 45, "profile_path": "/nKPHHKj8gzKiTI4nCK27zZamp7m.jpg", "order": 17}, {"name": "Alexandre Desplat", "character": "Emile", "id": 2949, "credit_id": "54076757c3a36868ff001137", "cast_id": 46, "profile_path": "/sdGjvOGJqjK1CTbxRedE64Txk0t.jpg", "order": 18}, {"name": "Luc Feit", "character": "Aachen Vicar", "id": 235807, "credit_id": "540767abc3a36868f60010af", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Claudia Geisler", "character": "Stahl's Wife", "id": 6087, "credit_id": "540767f90e0a261896001c4b", "cast_id": 48, "profile_path": null, "order": 20}], "directors": [{"name": "George Clooney", "department": "Directing", "job": "Director", "credit_id": "52fe4b2b9251416c910d2191", "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "id": 1461}], "vote_average": 5.8, "runtime": 118}, "38073": {"poster_path": "/2WRQiwOsy0LZj4PNSKCjQQk19e3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42045846, "overview": "Erin's wry wit and unfiltered frankness charm newly single Garrett over beer, bar trivia and breakfast the next morning. Their chemistry sparks a full-fledged summer fling, but neither expects it to last once Erin heads home to San Francisco and Garrett stays behind for his job in New York City. But when six weeks of romping through the city inadvertently become meaningful, neither is sure they want it to end. And while Garrett's friends, Box and Dan, joke about his pre-flight calorie-cutting and his full-time relationship with his cell phone, they don't like losing their best drinking buddy to yet another rocky romance.", "video": false, "id": 38073, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Going the Distance", "tagline": "A comedy about meeting each other halfway.", "vote_count": 66, "homepage": "http://going-the-distance.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1322312", "adult": false, "backdrop_path": "/oFT8EGTXeBthnEsf4UQkHUBqI6X.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Offspring Entertainment", "id": 2378}], "release_date": "2010-09-03", "popularity": 0.634185214039891, "original_title": "Going the Distance", "budget": 32000000, "cast": [{"name": "Drew Barrymore", "character": "Erin", "id": 69597, "credit_id": "52fe46919251416c9105882b", "cast_id": 3, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Justin Long", "character": "Garrett", "id": 15033, "credit_id": "52fe46919251416c9105882f", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Christina Applegate", "character": "Corinne", "id": 18979, "credit_id": "52fe46919251416c91058833", "cast_id": 5, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 2}, {"name": "Ron Livingston", "character": "Will", "id": 17402, "credit_id": "52fe46919251416c91058837", "cast_id": 6, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 3}, {"name": "Charlie Day", "character": "Dan", "id": 95101, "credit_id": "52fe46919251416c9105883b", "cast_id": 7, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 4}, {"name": "Kelli Garner", "character": "Brianna", "id": 17442, "credit_id": "52fe46919251416c9105883f", "cast_id": 8, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 5}, {"name": "Kristen Schaal", "character": "Female Bartender", "id": 109869, "credit_id": "52fe46919251416c91058843", "cast_id": 10, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 6}, {"name": "Charlie Hewson", "character": "Douchebag", "id": 133046, "credit_id": "52fe46919251416c91058847", "cast_id": 11, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 7}, {"name": "Jason Sudeikis", "character": "Box", "id": 58224, "credit_id": "52fe46919251416c9105884b", "cast_id": 12, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 8}], "directors": [{"name": "Nanette Burstein", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c91058821", "profile_path": "/2FSwFLtjklTI2CWiNIozXCPj3l.jpg", "id": 96439}], "vote_average": 6.5, "runtime": 102}, "35019": {"poster_path": "/yBNytVM6U3godvMcwcOQWOvL0f.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93251121, "overview": "Nanny McPhee appears at the door of a harried young mother, Mrs. Isabel Green, who is trying to run the family farm while her husband is away at war. But once she\u2019s arrived, Nanny McPhee discovers that the children are fighting a war of their own against two spoiled city cousins who have just moved in. Relying on everything from a flying motorcycle and a statue that comes to life to a tree-climbing piglet and a baby elephant, Nanny uses her magic to teach her mischievous charges five new lessons.", "video": false, "id": 35019, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Nanny McPhee and the Big Bang", "tagline": "You'll Believe That Pigs Can Fly!", "vote_count": 97, "homepage": "http://www.nannymcphee.co.uk/", "belongs_to_collection": {"backdrop_path": "/zxj5yar9KeGiCfZu57GfalPsBbL.jpg", "poster_path": "/iM75l6CCjaMOLUAIyAEfv6ISyQJ.jpg", "id": 35792, "name": "Nanny McPhee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1415283", "adult": false, "backdrop_path": "/ugZHd1zRu8dIXQwgJXzlKj8s9MM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}], "release_date": "2010-03-26", "popularity": 0.380730986769393, "original_title": "Nanny McPhee and the Big Bang", "budget": 35000000, "cast": [{"name": "Emma Thompson", "character": "Nanny McPhee", "id": 7056, "credit_id": "52fe458b9251416c91036213", "cast_id": 11, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Lord Gray", "id": 5469, "credit_id": "52fe458b9251416c91036217", "cast_id": 12, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Maggie Gyllenhaal", "character": "Mrs. Green", "id": 1579, "credit_id": "52fe458b9251416c9103621b", "cast_id": 13, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 2}, {"name": "Maggie Smith", "character": "Mrs. Docherty", "id": 10978, "credit_id": "52fe458b9251416c9103621f", "cast_id": 14, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Uncle Phil", "id": 7026, "credit_id": "52fe458b9251416c91036223", "cast_id": 15, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Asa Butterfield", "character": "Norman", "id": 77996, "credit_id": "52fe458b9251416c91036227", "cast_id": 16, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 5}, {"name": "Daniel Mays", "character": "Blenkinsop", "id": 1670, "credit_id": "52fe458b9251416c9103622b", "cast_id": 17, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 6}, {"name": "Bill Bailey", "character": "Farmer MacReadie", "id": 24265, "credit_id": "52fe458b9251416c9103622f", "cast_id": 18, "profile_path": "/1e1XFFesh5cQJWf3brBgfMxznE9.jpg", "order": 7}, {"name": "Ewan McGregor", "character": "Mr. Green", "id": 3061, "credit_id": "52fe458b9251416c91036245", "cast_id": 22, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 8}, {"name": "Eros Vlahos", "character": "Cyril Gray", "id": 81269, "credit_id": "539a5fdbc3a3684b730007a3", "cast_id": 24, "profile_path": "/bif3MhLYabK4Qr4mpdi9viBHoxN.jpg", "order": 9}], "directors": [{"name": "Susanna White", "department": "Directing", "job": "Director", "credit_id": "52fe458b9251416c910361d9", "profile_path": null, "id": 113600}], "vote_average": 6.1, "runtime": 109}, "103620": {"poster_path": "/ag1IgAqYartblOy0IiDIMNoJUVI.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31081, "overview": "As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop's deadly, suppressed desires come to the surface.", "video": false, "id": 103620, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Maniac", "tagline": "I Warned You Not to Go Out Tonight.", "vote_count": 109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103217", "adult": false, "backdrop_path": "/cosApMCd8Ik6KPhDEybl16ct0tp.jpg", "production_companies": [{"name": "La Petite Reine", "id": 1992}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "Studio 37", "id": 2577}], "release_date": "2013-06-21", "popularity": 1.01424700954623, "original_title": "Maniac", "budget": 6000000, "cast": [{"name": "Elijah Wood", "character": "Frank", "id": 109, "credit_id": "52fe4a21c3a36847f81bba97", "cast_id": 1, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "America Olivo", "character": "Frank's Mother", "id": 78434, "credit_id": "52fe4a21c3a36847f81bba9b", "cast_id": 2, "profile_path": "/jcKVwKxJEV2xRpkokNe0Om4GKHA.jpg", "order": 1}, {"name": "Nora Arnezeder", "character": "Anna", "id": 453272, "credit_id": "52fe4a21c3a36847f81bba9f", "cast_id": 3, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 2}, {"name": "Zoe Aggeliki", "character": "Jenna", "id": 932095, "credit_id": "52fe4a21c3a36847f81bbaa3", "cast_id": 4, "profile_path": "/wCyrznRHDFSG2A1CHirXVAmWuRl.jpg", "order": 3}, {"name": "Jan Broberg", "character": "Rita", "id": 430313, "credit_id": "52fe4a21c3a36847f81bbae9", "cast_id": 16, "profile_path": "/gFqzDJ05UfHdOz6CJGvTxB0O97X.jpg", "order": 4}, {"name": "Joshua De La Garza", "character": "Martin", "id": 993897, "credit_id": "52fe4a21c3a36847f81bbaed", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Danny Hunter", "character": "Nick", "id": 992221, "credit_id": "52fe4a21c3a36847f81bbaf5", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Genevieve Alexandra", "character": "Jessica", "id": 1337067, "credit_id": "53b5b200c3a3685eb40012c0", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Liane Balaban", "character": "Judy", "id": 54817, "credit_id": "53b5b221c3a3685ec10012e5", "cast_id": 21, "profile_path": "/way8YUaXSxxJ5PYg0tM92savRMD.jpg", "order": 8}, {"name": "Megan Duffy", "character": "Lucie", "id": 191251, "credit_id": "53b5b26bc3a3685ec10012ed", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Luis Fernandez-Gil", "character": "Waiter", "id": 74501, "credit_id": "52fe4a21c3a36847f81bbaf1", "cast_id": 18, "profile_path": "/3gFkUQW6tbBaRMQuA4PMEJ6IHUG.jpg", "order": 10}], "directors": [{"name": "Franck Khalfoun", "department": "Directing", "job": "Director", "credit_id": "52fe4a21c3a36847f81bbaa9", "profile_path": null, "id": 64211}], "vote_average": 5.8, "runtime": 89}, "13510": {"poster_path": "/pRiwPdjweHx0BYGB3DNJGrgU8O3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Eden Lake is a relentlessly tense and immaculately paced horror-thriller about modern youth gone wild. When a young couple goes to a remote wooded lake for a romantic getaway, their quiet weekend is shattered by an aggressive group of local kids. Rowdiness quickly turns to rage as the teens terrorize the couple in unimaginable ways, and a weekend outing becomes a bloody battle for survival.", "video": false, "id": 13510, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Eden Lake", "tagline": "A weekend by the lake, with views to die for.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1020530", "adult": false, "backdrop_path": "/iPocIUHB4gW3dfV6ve4KLvgWOHw.jpg", "production_companies": [{"name": "Rollercoaster Films", "id": 8575}, {"name": "Aramid Entertainment Fund", "id": 3272}], "release_date": "2008-09-12", "popularity": 0.405023874719985, "original_title": "Eden Lake", "budget": 0, "cast": [{"name": "Kelly Reilly", "character": "Jenny", "id": 17521, "credit_id": "52fe45739251416c75056ff9", "cast_id": 1, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Steve", "id": 17288, "credit_id": "52fe45739251416c75056ffd", "cast_id": 2, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Tara Ellis", "character": "Abi", "id": 85064, "credit_id": "52fe45739251416c75057001", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Jack O'Connell", "character": "Brett", "id": 85065, "credit_id": "52fe45739251416c75057005", "cast_id": 4, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 3}, {"name": "Finn Atkins", "character": "Paige", "id": 85066, "credit_id": "52fe45739251416c75057009", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jumayn Hunter", "character": "Mark", "id": 85067, "credit_id": "52fe45739251416c7505700d", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Thomas Turgoose", "character": "Cooper", "id": 70517, "credit_id": "52fe45739251416c75057011", "cast_id": 7, "profile_path": "/5cZboxmFmALIr7qIAvsJRnIJ9eO.jpg", "order": 6}, {"name": "James Burrows", "character": "Harry", "id": 85068, "credit_id": "52fe45739251416c75057015", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Tom Gill", "character": "Ricky", "id": 85069, "credit_id": "52fe45739251416c75057019", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Lorraine Bruce", "character": "Tanya", "id": 85070, "credit_id": "52fe45739251416c7505701d", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Shaun Dooley", "character": "Jon", "id": 85071, "credit_id": "52fe45739251416c75057021", "cast_id": 11, "profile_path": "/3jFprpFHI3pYPAXW6cxMevf8u7D.jpg", "order": 10}, {"name": "James Gandhi", "character": "Adam", "id": 85072, "credit_id": "52fe45739251416c75057025", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Bronson Webb", "character": "Reece", "id": 75076, "credit_id": "52fe45739251416c75057029", "cast_id": 13, "profile_path": "/oBADYTZzjZI2wAhgnf0ZeKy9q3T.jpg", "order": 12}, {"name": "Lorraine Stanley", "character": "Nat", "id": 85073, "credit_id": "52fe45739251416c7505702d", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Rachel Gleeves", "character": "Mel (as Rachel Gleaves)", "id": 85074, "credit_id": "52fe45739251416c75057031", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "James Watkins", "department": "Directing", "job": "Director", "credit_id": "52fe45739251416c75057037", "profile_path": null, "id": 63306}], "vote_average": 7.0, "runtime": 91}, "13515": {"poster_path": "/h0Lf0PoLqvcDDpWhvCpiLGSREmp.jpg", "production_countries": [{"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72436439, "overview": "An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.", "video": false, "id": 13515, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mirrors", "tagline": "There is evil...On the other side.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iKyRjgpQVkPZGXYUeFk6zezoNkL.jpg", "poster_path": "/uiEEpqieH4kXQqps2QC19wOqd8v.jpg", "id": 105324, "name": "Mirrors Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790686", "adult": false, "backdrop_path": "/lFUvdqHYFwumtDsM9fdbzSE1Rqe.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Luna Pictures", "id": 15361}, {"name": "ASAF", "id": 3273}, {"name": "Castel Film Romania", "id": 1370}], "release_date": "2008-08-15", "popularity": 0.602638736432488, "original_title": "Mirrors", "budget": 35000000, "cast": [{"name": "Kiefer Sutherland", "character": "Ben Carson", "id": 2628, "credit_id": "52fe45749251416c750571e1", "cast_id": 6, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "Paula Patton", "character": "Amy Carson", "id": 52851, "credit_id": "52fe45749251416c750571e5", "cast_id": 7, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 1}, {"name": "Amy Smart", "character": "Angela Carson", "id": 20189, "credit_id": "52fe45749251416c750571e9", "cast_id": 8, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 2}, {"name": "Cameron Boyce", "character": "Michael Carson", "id": 75041, "credit_id": "52fe45749251416c750571ed", "cast_id": 9, "profile_path": "/374sfaE0nrXUlddVhOn2uydoiBl.jpg", "order": 3}, {"name": "Erica Gluck", "character": "Daisy Carson", "id": 75042, "credit_id": "52fe45749251416c750571f1", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Jason Flemyng", "character": "Larry Byrne", "id": 973, "credit_id": "52fe45749251416c750571f5", "cast_id": 11, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Darren Kent", "character": "Jimmy Esseker", "id": 1035907, "credit_id": "52fe45749251416c750571f9", "cast_id": 12, "profile_path": "/erhPfnASkKB5ITTAi8OVf6tVz0B.jpg", "order": 6}, {"name": "Ezra Buzzington", "character": "Terrence Berry", "id": 59285, "credit_id": "54d6b3d6c3a3683b8f0037bf", "cast_id": 22, "profile_path": "/dl0SIqpOqS05UpJHKuDQqZTwUvP.jpg", "order": 7}, {"name": "Julian Glover", "character": "Robert Esseker", "id": 740, "credit_id": "54d6b400c3a3683b8f0037d9", "cast_id": 23, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 8}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe45749251416c750571c5", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 5.9, "runtime": 110}, "136400": {"poster_path": "/30lM3Uvzs6HOG5l4hzhwxYTWgd3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131940411, "overview": "A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob -- the very organization the two men believe they have been stealing money from.", "video": false, "id": 136400, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "2 Guns", "tagline": "2 Guns, 1 Bank.", "vote_count": 653, "homepage": "http://www.2guns.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1272878", "adult": false, "backdrop_path": "/wZsX7160l5feO646shRx3liMutx.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment Corporation", "id": 11030}, {"name": "Marc Platt Productions", "id": 2527}], "release_date": "2013-08-02", "popularity": 1.82493024000269, "original_title": "2 Guns", "budget": 74000000, "cast": [{"name": "Denzel Washington", "character": "Robert 'Bobby' Trench", "id": 5292, "credit_id": "52fe4c15c3a368484e1a614b", "cast_id": 10, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Michael 'Stig' Stigman", "id": 13240, "credit_id": "52fe4c15c3a368484e1a6147", "cast_id": 9, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Paula Patton", "character": "Deb", "id": 52851, "credit_id": "52fe4c15c3a368484e1a6157", "cast_id": 13, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Earl", "id": 2053, "credit_id": "52fe4c15c3a368484e1a6153", "cast_id": 12, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Fred Ward", "character": "Admiral Tuwey", "id": 10430, "credit_id": "52fe4c15c3a368484e1a6167", "cast_id": 17, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 4}, {"name": "James Marsden", "character": "Quince", "id": 11006, "credit_id": "52fe4c15c3a368484e1a614f", "cast_id": 11, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 5}, {"name": "Edward James Olmos", "character": "Papi Greco", "id": 587, "credit_id": "52fe4c15c3a368484e1a615b", "cast_id": 14, "profile_path": "/i7zKqsFqL5L1HPmAMeSA1xZzlD5.jpg", "order": 6}, {"name": "Robert John Burke", "character": "Jessup", "id": 31512, "credit_id": "52fe4c15c3a368484e1a615f", "cast_id": 15, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 7}, {"name": "Tait Fletcher", "character": "Mini", "id": 1105706, "credit_id": "52fe4c15c3a368484e1a6163", "cast_id": 16, "profile_path": "/b70bowmWAiXqlSCBXy0IFC1Mcw4.jpg", "order": 8}], "directors": [{"name": "Baltasar Korm\u00e1kur", "department": "Directing", "job": "Director", "credit_id": "52fe4c15c3a368484e1a611f", "profile_path": "/Aml85bUldhLbVubYBk38ag8JmVK.jpg", "id": 67813}], "vote_average": 6.7, "runtime": 109}, "13523": {"poster_path": "/bwXrZy2xqsyDnno4z8AENEgVfsO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18755936, "overview": "A high school senior drives cross-country with his best friends to hook up with a babe he met online.", "video": false, "id": 13523, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Sex Drive", "tagline": "He's leaving virgin territory", "vote_count": 71, "homepage": "http://www.sexdrivethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1135985", "adult": false, "backdrop_path": "/1RaVsWb6gz6L5ZzQfviFAjWmLBP.jpg", "production_companies": [{"name": "Summit Entertainment, LLC", "id": 3250}, {"name": "Alloy Entertainment", "id": 10067}, {"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2008-10-17", "popularity": 0.868314604073587, "original_title": "Sex Drive", "budget": 19000000, "cast": [{"name": "Josh Zuckerman", "character": "Ian", "id": 62816, "credit_id": "52fe45769251416c750574c5", "cast_id": 1, "profile_path": "/rasXHgYeUA2X72sF8VuPUcB7c6G.jpg", "order": 0}, {"name": "Amanda Crew", "character": "Felicia", "id": 58370, "credit_id": "52fe45769251416c750574c9", "cast_id": 2, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 1}, {"name": "Clark Duke", "character": "Lance", "id": 54729, "credit_id": "52fe45769251416c750574cd", "cast_id": 3, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 2}, {"name": "James Marsden", "character": "Rex", "id": 11006, "credit_id": "52fe45769251416c750574d1", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 3}, {"name": "Seth Green", "character": "Ezekiel", "id": 13922, "credit_id": "52fe45769251416c750574d5", "cast_id": 5, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 4}, {"name": "Alice Greczyn", "character": "Mary", "id": 52050, "credit_id": "52fe45769251416c750574d9", "cast_id": 6, "profile_path": "/nO3ZLjJ6ZUOgOTX2eB1UOa4tket.jpg", "order": 5}, {"name": "Katrina Bowden", "character": "Ms. Tasty", "id": 74618, "credit_id": "52fe45769251416c750574dd", "cast_id": 7, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 6}, {"name": "Mark L. Young", "character": "Randy", "id": 81197, "credit_id": "52fe45769251416c750574ed", "cast_id": 11, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 7}, {"name": "Charlie McDermott", "character": "Andy", "id": 64135, "credit_id": "52fe45769251416c750574f1", "cast_id": 12, "profile_path": "/r2v4vggSfSQOyUZujyacGI0Kwk0.jpg", "order": 8}], "directors": [{"name": "Sean Anders", "department": "Directing", "job": "Director", "credit_id": "52fe45769251416c750574e3", "profile_path": "/9PsLZSfLinkQJMFzxLp0pKMWkt5.jpg", "id": 74619}], "vote_average": 6.2, "runtime": 109}, "152792": {"poster_path": "/e47ijbXIk9GdIH0w88YWIYo8EuT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The savage murders of three young children sparks a controversial trial of three teenagers accused of killing the kids as part of a satanic ritual.", "video": false, "id": 152792, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Devil's Knot", "tagline": "They say the crimes were satanic. The truth may be scarier.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804463", "adult": false, "backdrop_path": "/mWBZ2mTm1CQ3xvY6k34wxprOgJB.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}], "release_date": "2013-05-09", "popularity": 0.800265780718776, "original_title": "Devil's Knot", "budget": 15000000, "cast": [{"name": "Reese Witherspoon", "character": "Pam Hobbs", "id": 368, "credit_id": "52fe4b2c9251416c910d24d5", "cast_id": 10, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Colin Firth", "character": "Ron Lax", "id": 5472, "credit_id": "52fe4b2c9251416c910d24e1", "cast_id": 13, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Mireille Enos", "character": "Vicki Hutcherson", "id": 175826, "credit_id": "52fe4b2c9251416c910d24d1", "cast_id": 9, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 2}, {"name": "Stephen Moyer", "character": "John Fogelman", "id": 32203, "credit_id": "52fe4b2c9251416c910d24d9", "cast_id": 11, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 3}, {"name": "Kevin Durand", "character": "John Mark Byers", "id": 79072, "credit_id": "52fe4b2c9251416c910d24dd", "cast_id": 12, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Collette Wolfe", "character": "Glori Shettles", "id": 86624, "credit_id": "52fe4b2c9251416c910d24e5", "cast_id": 14, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 5}, {"name": "Elias Koteas", "character": "Jerry Driver", "id": 13550, "credit_id": "52fe4b2c9251416c910d24e9", "cast_id": 15, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Judge David Burnett", "id": 21089, "credit_id": "52fe4b2c9251416c910d24ed", "cast_id": 16, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Amy Ryan", "character": "Margaret Lax", "id": 39388, "credit_id": "52fe4b2c9251416c910d24f1", "cast_id": 17, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 8}, {"name": "Alessandro Nivola", "character": "Terry Hobbs", "id": 4941, "credit_id": "52fe4b2c9251416c910d24f5", "cast_id": 18, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 9}, {"name": "Martin Henderson", "character": "Brent Davis", "id": 26291, "credit_id": "52fe4b2c9251416c910d24f9", "cast_id": 19, "profile_path": "/tWuEwdM7TnM9KenYbRKLSFbo3zx.jpg", "order": 10}, {"name": "Dane DeHaan", "character": "Chris Morgan", "id": 122889, "credit_id": "53691cc20e0a2647c400871d", "cast_id": 21, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 11}], "directors": [{"name": "Atom Egoyan", "department": "Directing", "job": "Director", "credit_id": "52fe4b2c9251416c910d24a3", "profile_path": "/qG15OKx3VaYicQcDnd88XFlIxl3.jpg", "id": 56205}], "vote_average": 5.9, "runtime": 114}, "2255": {"poster_path": "/4vFJileWrCGaBeobCmF0tXpQCUb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12021272, "overview": "Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.", "video": false, "id": 2255, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Chasing Amy", "tagline": "It's not who you love. It's how.", "vote_count": 83, "homepage": "http://www.viewaskew.com/chasingamy/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118842", "adult": false, "backdrop_path": "/5VnEfd60Rie9A8HrgZMVzyibdaP.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Miramax Films", "id": 14}], "release_date": "1997-04-04", "popularity": 0.754249526332048, "original_title": "Chasing Amy", "budget": 250000, "cast": [{"name": "Ben Affleck", "character": "Holden McNeil", "id": 880, "credit_id": "52fe4346c3a36847f8047bd1", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Joey Lauren Adams", "character": "Alyssa Jones", "id": 16484, "credit_id": "52fe4346c3a36847f8047bd9", "cast_id": 3, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 1}, {"name": "Jason Lee", "character": "Banky Edwards", "id": 11662, "credit_id": "52fe4346c3a36847f8047bd5", "cast_id": 2, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 2}, {"name": "Dwight Ewell", "character": "Hooper LaMont", "id": 20283, "credit_id": "52fe4346c3a36847f8047be1", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe4346c3a36847f8047be5", "cast_id": 6, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 4}, {"name": "Scott Mosier", "character": "Collector", "id": 20503, "credit_id": "52fe4346c3a36847f8047bed", "cast_id": 8, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 5}, {"name": "Ethan Suplee", "character": "Fan", "id": 824, "credit_id": "52fe4346c3a36847f8047be9", "cast_id": 7, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 6}, {"name": "Casey Affleck", "character": "Little Kid", "id": 1893, "credit_id": "52fe4346c3a36847f8047bdd", "cast_id": 4, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 7}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe4346c3a36847f8047c27", "cast_id": 18, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 8}, {"name": "Brian O'Halloran", "character": "Exec. #1", "id": 23629, "credit_id": "52fe4346c3a36847f8047c2b", "cast_id": 19, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 9}, {"name": "Matt Damon", "character": "Exec. #2", "id": 1892, "credit_id": "52fe4346c3a36847f8047c2f", "cast_id": 20, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 10}, {"name": "Illeana Douglas", "character": "", "id": 7796, "credit_id": "5456039ac3a368147c006b37", "cast_id": 21, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 11}, {"name": "Carmen Llywelyn", "character": "Kim", "id": 143963, "credit_id": "54c56abc9251412d9c001e0d", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4346c3a36847f8047c0b", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.6, "runtime": 113}, "193756": {"poster_path": "/c7Sqof18FgkoNcA0r5BFUcPLER1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149300000, "overview": "Based on the failed June 28, 2005 mission \"Operation Red Wing.\" Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shah. Only one member of the team survived.", "video": false, "id": 193756, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Lone Survivor", "tagline": "Based on True Acts of Courage", "vote_count": 562, "homepage": "http://www.lonesurvivorfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1091191", "adult": false, "backdrop_path": "/pPFbXcONHBntJIAsEn8TaIPPCpZ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Closest to the Hole Productions", "id": 8537}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment Corporation", "id": 11030}, {"name": "Film 44", "id": 20153}, {"name": "Foresight Unlimited", "id": 21897}, {"name": "Herrick Entertainment", "id": 6666}, {"name": "Hollywood Studios International", "id": 22610}, {"name": "Leverage Management", "id": 8536}, {"name": "Spikings Entertainment", "id": 22611}, {"name": "Weed Road Pictures", "id": 433}], "release_date": "2013-12-24", "popularity": 1.47030402666216, "original_title": "Lone Survivor", "budget": 50000000, "cast": [{"name": "Mark Wahlberg", "character": "Marcus Luttrell", "id": 13240, "credit_id": "52fe4cd89251416c91101fc3", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Taylor Kitsch", "character": "Mike Murphy", "id": 60900, "credit_id": "52fe4cd89251416c91101fc7", "cast_id": 4, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 1}, {"name": "Emile Hirsch", "character": "Danny Dietz", "id": 46593, "credit_id": "52fe4cd89251416c91101fcf", "cast_id": 6, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 2}, {"name": "Ben Foster", "character": "Matt Axelson", "id": 11107, "credit_id": "52fe4cd89251416c91101fd3", "cast_id": 7, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 3}, {"name": "Yousuf Azami", "character": "Shah", "id": 123102, "credit_id": "52fe4cd89251416c91101ff7", "cast_id": 16, "profile_path": "/lEB2ryIlwygt5msLv4ICxPKBYxX.jpg", "order": 4}, {"name": "Ali Suliman", "character": "Gulab", "id": 762, "credit_id": "52fe4cd89251416c91101fdf", "cast_id": 11, "profile_path": "/orQk2ePFL6er4TrdhD0jZ9my3E3.jpg", "order": 5}, {"name": "Eric Bana", "character": "Lt. Cmdr. Erik S. Kristensen", "id": 8783, "credit_id": "52fe4cd89251416c91101fcb", "cast_id": 5, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 6}, {"name": "Alexander Ludwig", "character": "Shane Patton", "id": 23498, "credit_id": "52fe4cd89251416c91101fd7", "cast_id": 9, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 7}, {"name": "Rich Ting", "character": "James Suh", "id": 1278776, "credit_id": "52fe4cd89251416c91101fe3", "cast_id": 12, "profile_path": "/2yerUuH9NAEOr02vSJk19C8gTeb.jpg", "order": 8}, {"name": "Dan Bilzerian", "character": "Healy", "id": 1278777, "credit_id": "52fe4cd89251416c91101fe7", "cast_id": 13, "profile_path": "/xNvGQiUfsJh6vXGJiyreQ8aHhMO.jpg", "order": 9}, {"name": "Jerry Ferrara", "character": "Hasslert", "id": 98953, "credit_id": "52fe4cd89251416c91101ffb", "cast_id": 17, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 10}, {"name": "Rick Vargas", "character": "Crew Chief", "id": 1283040, "credit_id": "52fe4cd89251416c91101fff", "cast_id": 18, "profile_path": "/Pan48d8UfvPB3LDr9gIfJ1fite.jpg", "order": 11}, {"name": "Scott Elrod", "character": "Peter Musselman", "id": 108532, "credit_id": "52fe4cd89251416c91101fdb", "cast_id": 10, "profile_path": "/b7nV383fAzIcygOAsuvcDukJlK1.jpg", "order": 12}, {"name": "Gregory Rockwood", "character": "Chinook Pilot No. 1", "id": 1283041, "credit_id": "52fe4cd89251416c91102003", "cast_id": 19, "profile_path": "/66rzcJYED4S5lzOYKRnTJnIWUV7.jpg", "order": 13}, {"name": "Ryan Kay", "character": "Chinook Pilot No. 2", "id": 1283042, "credit_id": "52fe4cd89251416c91102007", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Patrick Griffin", "character": "Chinook Co-Pilot", "id": 1042362, "credit_id": "52fe4cd89251416c9110200b", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Josh Berry", "character": "Communication SEAL", "id": 108037, "credit_id": "52fe4cd89251416c9110200f", "cast_id": 22, "profile_path": "/urXSysxyuVeE4OCKGInIhT9IqyR.jpg", "order": 16}, {"name": "Eric Steinig", "character": "SEAL Lieutenant", "id": 1283043, "credit_id": "52fe4cd89251416c91102013", "cast_id": 23, "profile_path": "/3efAfmvUn1ea5f6qGUczkuvfa4w.jpg", "order": 17}, {"name": "David Shepard", "character": "CJSOTF Commander", "id": 1283044, "credit_id": "52fe4cd89251416c91102017", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "Justin Tade", "character": "CJSOTF Marine", "id": 1283045, "credit_id": "52fe4cd89251416c9110201b", "cast_id": 25, "profile_path": "/8WyRV4ogNwoG64pHsEGdGiacYfT.jpg", "order": 19}, {"name": "Sterling Jones", "character": "Bagram Comms Guy", "id": 168834, "credit_id": "52fe4cd89251416c9110201f", "cast_id": 26, "profile_path": "/aZ1Y9MITLHgeK23ne3FnoVlhaCV.jpg", "order": 20}, {"name": "Jason Riggins", "character": "50 Cal Gunner", "id": 1283046, "credit_id": "52fe4cd89251416c91102023", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Matthew Page", "character": "Army Intel Guy", "id": 1094319, "credit_id": "52fe4cd89251416c91102027", "cast_id": 28, "profile_path": "/nTAAP1s4Y0e6bW1Vyq9MqzCG95y.jpg", "order": 22}, {"name": "Johnny Bautista", "character": "Lt. Edwards", "id": 1283047, "credit_id": "52fe4cd89251416c9110202b", "cast_id": 29, "profile_path": "/mCMDNLlDNlgvuHku7Wy1P49YS2q.jpg", "order": 23}, {"name": "Sammy Sheik", "character": "Taraq", "id": 1230897, "credit_id": "52fe4cd89251416c9110202f", "cast_id": 30, "profile_path": "/6v7kafnGC2c3lJyW6IRMsXrXjRB.jpg", "order": 24}, {"name": "Nicholas Patel", "character": "Goat Boy", "id": 1283048, "credit_id": "52fe4cd89251416c91102033", "cast_id": 31, "profile_path": "/ehWCGx9g6T2JxMRI5CbeHapQWD6.jpg", "order": 25}, {"name": "Daniel Arroyo", "character": "Teenage Goat Boy", "id": 944151, "credit_id": "52fe4cd89251416c91102037", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Zarin Rahimi", "character": "Goat Man", "id": 1283049, "credit_id": "52fe4cd89251416c9110203b", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Rohan Chand", "character": "Gulab's Young Son", "id": 935701, "credit_id": "52fe4cd89251416c9110203f", "cast_id": 34, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 28}, {"name": "Anthony McKenzie", "character": "TOC Sr. Air Officer", "id": 1283050, "credit_id": "52fe4cd89251416c91102043", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Brian Call", "character": "TOC SEAL", "id": 1283051, "credit_id": "52fe4cd89251416c91102047", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Ishmael Antonio", "character": "Doctor", "id": 1283052, "credit_id": "52fe4cd89251416c9110204b", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Samuel Cloud", "character": "JAG", "id": 1283053, "credit_id": "52fe4cd89251416c9110204f", "cast_id": 38, "profile_path": "/qoBpIOrR1pLSPM5I5MJEsqBhQn2.jpg", "order": 32}, {"name": "Perparim 'Peter' Bici", "character": "Communication SEAL Perry", "id": 1283054, "credit_id": "52fe4cd89251416c91102053", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Henry Penzi", "character": "Villager", "id": 944326, "credit_id": "52fe4cd89251416c91102057", "cast_id": 40, "profile_path": "/myrL9nt3MeONI6Ssb3bh8p7GRev.jpg", "order": 34}, {"name": "Robert Loerke", "character": "Captain Jacoby", "id": 1283055, "credit_id": "52fe4cd89251416c9110205b", "cast_id": 41, "profile_path": null, "order": 35}, {"name": "Kurt Carlson", "character": "Captain Lovas", "id": 1283056, "credit_id": "52fe4cd89251416c9110205f", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "Daniel Fulcoly", "character": "Lt. Andrews", "id": 1283057, "credit_id": "52fe4cd89251416c91102063", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Michael P. Herrmann", "character": "Wallace", "id": 1283058, "credit_id": "52fe4cd89251416c91102067", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Paul Craig", "character": "'EOD' Paul", "id": 1283059, "credit_id": "52fe4cd89251416c9110206b", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Zabiullah Mirzai", "character": "Zabi", "id": 1283060, "credit_id": "52fe4cd89251416c9110206f", "cast_id": 46, "profile_path": "/8PIge1GnMukN6zDd0JXqMkkfhwX.jpg", "order": 40}, {"name": "John Hocker", "character": "Hocker", "id": 1283061, "credit_id": "52fe4cd89251416c91102073", "cast_id": 47, "profile_path": null, "order": 41}, {"name": "Robert H. Doudell", "character": "Village Elder", "id": 1283062, "credit_id": "52fe4cd89251416c91102077", "cast_id": 48, "profile_path": null, "order": 42}, {"name": "Hillel Michael Shamam", "character": "Angry Villager", "id": 1283063, "credit_id": "52fe4cd89251416c9110207b", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Edmund Blanchet", "character": "PJ No. 1", "id": 1283064, "credit_id": "52fe4cd89251416c9110207f", "cast_id": 50, "profile_path": null, "order": 44}, {"name": "Jim Cusic", "character": "PJ No. 2", "id": 1283065, "credit_id": "52fe4cd89251416c91102083", "cast_id": 51, "profile_path": null, "order": 45}, {"name": "Corey Large", "character": "SEAL Captain Kenney (uncredited)", "id": 77109, "credit_id": "52fe4cd89251416c91102087", "cast_id": 52, "profile_path": "/3hSM22jb76VYviAmPSi30EelDbh.jpg", "order": 46}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe4cd79251416c91101fb9", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 7.6, "runtime": 121}, "29917": {"poster_path": "/2MLOMNKejfX3L1PVB2ZdxYOmf3A.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The final candidates for a highly desirable corporate job are locked together in an exam room and given a test so simple and confusing that tension begins to unravel.", "video": false, "id": 29917, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Exam", "tagline": "How far would you go to win the ultimate job?", "vote_count": 90, "homepage": "http://www.examthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1258197", "adult": false, "backdrop_path": "/AtLHKulhe6VTsnU3pe4i0As5zOb.jpg", "production_companies": [{"name": "Bedlam Productions", "id": 5005}, {"name": "Hazeldine Films", "id": 5004}], "release_date": "2009-06-19", "popularity": 0.347237067727493, "original_title": "Exam", "budget": 0, "cast": [{"name": "Luke Mably", "character": "White", "id": 68307, "credit_id": "52fe4603c3a368484e07bf39", "cast_id": 1, "profile_path": "/cBs0W1IB8qhn89xkubT6u1nJx8K.jpg", "order": 0}, {"name": "Adar Beck", "character": "Dark", "id": 105235, "credit_id": "52fe4603c3a368484e07bf3d", "cast_id": 2, "profile_path": "/rGUVixlx2rUz1xbmElZ4nNEFKuR.jpg", "order": 1}, {"name": "Chris Carey", "character": "Guard", "id": 105236, "credit_id": "52fe4603c3a368484e07bf41", "cast_id": 3, "profile_path": "/iUAMeVkIxCaopuTq0KjepJ1BesR.jpg", "order": 2}, {"name": "Gemma Chan", "character": "Chinese", "id": 97576, "credit_id": "52fe4603c3a368484e07bf45", "cast_id": 4, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 3}, {"name": "Nathalie Cox", "character": "Blonde", "id": 17337, "credit_id": "52fe4603c3a368484e07bf49", "cast_id": 5, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 4}, {"name": "John Lloyd Fillingham", "character": "Deaf", "id": 105237, "credit_id": "52fe4603c3a368484e07bf4d", "cast_id": 6, "profile_path": "/oV1Dmx2uKcFweYeGFuEUCSx8VHr.jpg", "order": 5}, {"name": "Chukwudi Iwuji", "character": "Black", "id": 105238, "credit_id": "52fe4603c3a368484e07bf51", "cast_id": 7, "profile_path": "/ykTTYOYvSDHnx5ClCwPjV50grYJ.jpg", "order": 6}, {"name": "Pollyanna McIntosh", "character": "Brunette", "id": 92730, "credit_id": "52fe4603c3a368484e07bf55", "cast_id": 8, "profile_path": "/u1T42rrc26kGDfwmE6jCVtiH04v.jpg", "order": 7}, {"name": "Jimi Mistry", "character": "Brown", "id": 16756, "credit_id": "52fe4603c3a368484e07bf59", "cast_id": 9, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 8}, {"name": "Colin Salmon", "character": "Invigilator", "id": 5414, "credit_id": "52fe4603c3a368484e07bf5d", "cast_id": 10, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 9}], "directors": [{"name": "Stuart Hazeldine", "department": "Directing", "job": "Director", "credit_id": "52fe4603c3a368484e07bf63", "profile_path": "/7ILjmwLXlv9q8WmtQzGE3nqcwXZ.jpg", "id": 105239}], "vote_average": 6.4, "runtime": 101}, "185567": {"poster_path": "/hRuFJHZ9BMaljX2Ii4dKwdJYttB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "As a child, Ali Neuman narrowly escaped being murdered by Inkhata, a militant political party at war with Nelson Mandela's African National Congress. Only he and his mother survived the carnage of those years. But as with many survivors, the psychological scars remain.", "video": false, "id": 185567, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Zulu", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2249221", "adult": false, "backdrop_path": "/a8sZUH8cxH2jFQX8oPpXH4YuIIa.jpg", "production_companies": [{"name": "M6 Films", "id": 1115}, {"name": "Eskwad", "id": 616}, {"name": "Path\u00e9 Films", "id": 4959}, {"name": "Lobster Tree", "id": 34044}], "release_date": "2013-12-04", "popularity": 0.656119714340902, "original_title": "Zulu", "budget": 0, "cast": [{"name": "Orlando Bloom", "character": "Brian Epkeen", "id": 114, "credit_id": "52fe4ce49251416c75128e9f", "cast_id": 2, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Ali Sokhela", "id": 2178, "credit_id": "52fe4ce49251416c75128ea3", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Tanya van Graan", "character": "Tara", "id": 1139816, "credit_id": "52fe4ce49251416c75128eab", "cast_id": 6, "profile_path": "/zirNh4FdTo4U3EpdKCjSZZLbw8v.jpg", "order": 2}, {"name": "Natasha Loring", "character": "Marjorie", "id": 1070853, "credit_id": "52fe4ce49251416c75128eaf", "cast_id": 7, "profile_path": "/ffBTZ3sQL0cK3Slbxt0PZUpwBOj.jpg", "order": 3}, {"name": "Sven Ruygrok", "character": "David Epkeen", "id": 1003249, "credit_id": "52fe4ce49251416c75128eb3", "cast_id": 8, "profile_path": "/e077YIdw0J2kv5tFqaBjyd5pBzC.jpg", "order": 4}, {"name": "Conrad Kemp", "character": "Dan Fletcher", "id": 228372, "credit_id": "52fe4ce49251416c75128ea7", "cast_id": 4, "profile_path": "/abaE6en6JJWaoRPD3d9AbL9YP5J.jpg", "order": 5}, {"name": "Roxanne Prentice", "character": "Judith Botha", "id": 1168610, "credit_id": "52fe4ce49251416c75128eb7", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Adrian Galley", "character": "Nils Botha", "id": 981282, "credit_id": "52fe4ce49251416c75128ebb", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Tinarie Van Wyk-Loots", "character": "Claire Fletcher", "id": 113228, "credit_id": "52fe4ce49251416c75128ebf", "cast_id": 11, "profile_path": "/kfbaCF3fqkWwHukElS1FrMOTB6v.jpg", "order": 8}, {"name": "Kelsey Egan", "character": "Nicole Weiss", "id": 1168611, "credit_id": "52fe4ce49251416c75128ec3", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Inge Beckmann", "character": "Ruby", "id": 1353810, "credit_id": "53f0b983c3a3685af8002a70", "cast_id": 16, "profile_path": "/viWwSkpbXJDU5Q9F8BVVTGi2jj7.jpg", "order": 10}], "directors": [{"name": "J\u00e9r\u00f4me Salle", "department": "Directing", "job": "Director", "credit_id": "52fe4ce49251416c75128e9b", "profile_path": "/f2ceHe91bv2Gyv5QhPDZ1BnhCHs.jpg", "id": 69987}], "vote_average": 6.9, "runtime": 110}, "136418": {"poster_path": "/tVOPEBdjoIqaRDE5INctTcoI0Va.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8352885, "overview": "Homeless and on the run from a military court martial, a damaged ex-special forces soldier navigating London's criminal underworld seizes an opportunity to assume another man's identity, transforming into an avenging angel in the process.", "video": false, "id": 136418, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Hummingbird", "tagline": "All roads don't lead to salvation.", "vote_count": 269, "homepage": "http://www.hummingbirdmovie.co.uk", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1893256", "adult": false, "backdrop_path": "/1ZRCJL17jnAfT0EnKIeP9ncOeN6.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2013-06-27", "popularity": 0.655466179537224, "original_title": "Hummingbird", "budget": 20000000, "cast": [{"name": "Jason Statham", "character": "Joey Jones", "id": 976, "credit_id": "52fe4c16c3a368484e1a63ed", "cast_id": 5, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Agata Buzek", "character": "Christina", "id": 37982, "credit_id": "52fe4c16c3a368484e1a6415", "cast_id": 17, "profile_path": "/qwYm1VhJ5lDhH811zj12EUjAXXf.jpg", "order": 1}, {"name": "Vicky McClure", "character": "Dawn", "id": 148139, "credit_id": "52fe4c16c3a368484e1a63f9", "cast_id": 8, "profile_path": "/e5eucukisVx2CTxZbAMIQraIFcA.jpg", "order": 2}, {"name": "Lee Asquith-Coe", "character": "Silver Mercedes Driver", "id": 531772, "credit_id": "52fe4c16c3a368484e1a63f1", "cast_id": 6, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 3}, {"name": "Benedict Wong", "character": "Mr. Choy", "id": 30082, "credit_id": "52fe4c16c3a368484e1a63f5", "cast_id": 7, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 4}, {"name": "Siobhan Hewlett", "character": "Tracey", "id": 19997, "credit_id": "52fe4c16c3a368484e1a63fd", "cast_id": 11, "profile_path": "/iOrfWRWcmi7wq1dSo9PjnnlrKzW.jpg", "order": 5}, {"name": "Lee Nicholas Harris", "character": "Meat Market Manager", "id": 578690, "credit_id": "52fe4c16c3a368484e1a6409", "cast_id": 14, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 7}, {"name": "Andrew Ellis", "character": "Football Supporter 1", "id": 225611, "credit_id": "52fe4c16c3a368484e1a6401", "cast_id": 12, "profile_path": "/kuYkAcqfCy0Lp5Q7fPUEFPIgqPv.jpg", "order": 8}, {"name": "Ian Pirie", "character": "Pimp", "id": 95716, "credit_id": "52fe4c16c3a368484e1a640d", "cast_id": 15, "profile_path": "/wBQsI3PN3r0cDri8gt3z12kQgoY.jpg", "order": 9}, {"name": "Senem Temiz", "character": "Banker's Wife", "id": 1180974, "credit_id": "52fe4c16c3a368484e1a6411", "cast_id": 16, "profile_path": "/38WmT4xlaV6QWLozjkCP3jPWqDV.jpg", "order": 10}, {"name": "Paul Blackwell", "character": "Factory Worker", "id": 37293, "credit_id": "52fe4c16c3a368484e1a6419", "cast_id": 18, "profile_path": "/trKFaMohgm2kAACO4lDAg47kawN.jpg", "order": 11}, {"name": "Ger Ryan", "character": "Mother Superior", "id": 70685, "credit_id": "52fe4c16c3a368484e1a641d", "cast_id": 19, "profile_path": "/s28QyTEZsflL7W7BvemRseMJqVt.jpg", "order": 12}, {"name": "David Bradley", "character": "Billy", "id": 1357431, "credit_id": "53fe12c9c3a3684c800012fc", "cast_id": 27, "profile_path": null, "order": 13}], "directors": [{"name": "Steven Knight", "department": "Directing", "job": "Director", "credit_id": "52fe4c16c3a368484e1a63d7", "profile_path": "/6QiGHyAWJv5wSyWNUxZuMlBCXgy.jpg", "id": 23227}], "vote_average": 5.8, "runtime": 100}, "119675": {"poster_path": "/wXKnEJ06avNF1dp0DH9hqiOggTN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15600000, "overview": "Based on the autobiographical novel, the tempestuous 6-year relationship between Liberace and his (much younger) lover, Scott Thorson, is recounted.", "video": false, "id": 119675, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Behind the Candelabra", "tagline": "Too much of a good thing is wonderful", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1291580", "adult": false, "backdrop_path": "/4k4caZuJUSGQD6BYk3Vuyb3gB6W.jpg", "production_companies": [{"name": "HBO Films", "id": 7429}], "release_date": "2013-05-26", "popularity": 1.09329802250981, "original_title": "Behind the Candelabra", "budget": 23000000, "cast": [{"name": "Michael Douglas", "character": "Liberace", "id": 3392, "credit_id": "52fe4c08c3a36847f821e643", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Matt Damon", "character": "Scott Thorson", "id": 1892, "credit_id": "52fe4c08c3a36847f821e647", "cast_id": 2, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Rob Lowe", "character": "Dr. Jack Startz", "id": 2879, "credit_id": "52fe4c08c3a36847f821e657", "cast_id": 5, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 2}, {"name": "Dan Aykroyd", "character": "Seymour Heller", "id": 707, "credit_id": "52fe4c08c3a36847f821e65b", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 3}, {"name": "Scott Bakula", "character": "Bob Black", "id": 2154, "credit_id": "52fe4c08c3a36847f821e65f", "cast_id": 7, "profile_path": "/o0lOdRjvFe0DEjquR1miMnjUUzt.jpg", "order": 4}, {"name": "Debbie Reynolds", "character": "Frances", "id": 8857, "credit_id": "52fe4c08c3a36847f821e663", "cast_id": 8, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 5}, {"name": "Cheyenne Jackson", "character": "Billy Leatherwood", "id": 212828, "credit_id": "52fe4c08c3a36847f821e667", "cast_id": 9, "profile_path": "/BmxkPSoapQ6ZZcEMSUqN2apewZ.jpg", "order": 6}, {"name": "Paul Reiser", "character": "Mr. Felder", "id": 781, "credit_id": "52fe4c08c3a36847f821e66b", "cast_id": 10, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 7}, {"name": "Boyd Holbrook", "character": "", "id": 467645, "credit_id": "52fe4c08c3a36847f821e66f", "cast_id": 11, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 8}, {"name": "Nicky Katt", "character": "Mr. Y", "id": 18070, "credit_id": "52fe4c08c3a36847f821e673", "cast_id": 12, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 9}, {"name": "Eddie Jemison", "character": "Second Assistant Director", "id": 1898, "credit_id": "52fe4c08c3a36847f821e677", "cast_id": 13, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 10}, {"name": "Mike O'Malley", "character": "", "id": 87192, "credit_id": "52fe4c08c3a36847f821e67b", "cast_id": 14, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 11}, {"name": "Josh Meyers", "character": "", "id": 124471, "credit_id": "52fe4c08c3a36847f821e67f", "cast_id": 15, "profile_path": "/5bqoQVKHCtDz9MYZ3pcjy5jD28Y.jpg", "order": 12}, {"name": "David Koechner", "character": "", "id": 28638, "credit_id": "52fe4c08c3a36847f821e683", "cast_id": 16, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 13}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4c08c3a36847f821e64d", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.5, "runtime": 118}, "22949": {"poster_path": "/38CSbFiJMlVJW8sQxDKZYajCSOI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92219310, "overview": "Charlie and Dan have been best friends and business partners for thirty years; their Manhattan public relations firm is on the verge of a huge business deal with a Japanese company. With two weeks to sew up the contract, Dan gets a surprise: a woman he married on a drunken impulse nearly nine years before (annulled the next day) shows up to tell him he's the father of her twins, now seven, and she'll be in jail for 14 days for a political protest. Dan volunteers to keep the tykes, although he's up tight and clueless. With Charlie's help is there any way they can be dad and uncle, meet the kids' expectations, and still land the account?", "video": false, "id": 22949, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Old Dogs", "tagline": "Life is Not Child-Proof.", "vote_count": 59, "homepage": "http://disney.go.com/olddogs/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}], "imdb_id": "tt0976238", "adult": false, "backdrop_path": "/umf3xzegzsqT9lXVdYKxG8OR1No.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tapestry Films", "id": 870}], "release_date": "2009-11-24", "popularity": 0.343182284050607, "original_title": "Old Dogs", "budget": 35000000, "cast": [{"name": "Robin Williams", "character": "Dan", "id": 2157, "credit_id": "52fe4457c3a368484e01d873", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "John Travolta", "character": "Charlie", "id": 8891, "credit_id": "52fe4457c3a368484e01d877", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Seth Green", "character": "Ralph White", "id": 13922, "credit_id": "52fe4457c3a368484e01d87b", "cast_id": 3, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 2}, {"name": "Justin Long", "character": "Adam Devlin", "id": 15033, "credit_id": "52fe4457c3a368484e01d87f", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 3}, {"name": "Matt Dillon", "character": "Yancy Devlin", "id": 2876, "credit_id": "52fe4457c3a368484e01d883", "cast_id": 5, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 4}, {"name": "Kelly Preston", "character": "Vicki", "id": 11164, "credit_id": "52fe4457c3a368484e01d887", "cast_id": 6, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 5}, {"name": "Bernie Mac", "character": "Jimmy Lunchbox", "id": 1897, "credit_id": "52fe4457c3a368484e01d88b", "cast_id": 7, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 6}, {"name": "Dax Shepard", "character": "Trent Rice", "id": 51298, "credit_id": "52fe4457c3a368484e01d88f", "cast_id": 8, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 7}, {"name": "Rita Wilson", "character": "Gloria Lawrence", "id": 12931, "credit_id": "52fe4457c3a368484e01d893", "cast_id": 9, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 8}, {"name": "Laura Allen", "character": "Kelly", "id": 79792, "credit_id": "52fe4457c3a368484e01d897", "cast_id": 10, "profile_path": "/afD3Hl84bxdDDmO3OMQNFfKEFIW.jpg", "order": 9}, {"name": "DeRay Davis", "character": "Julio", "id": 11827, "credit_id": "52fe4457c3a368484e01d89b", "cast_id": 11, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 10}, {"name": "Lori Loughlin", "character": "Amanda", "id": 92509, "credit_id": "54c02aa6c3a368389c009e0b", "cast_id": 15, "profile_path": "/jhnD0llXY2S0zwwQ0EPt7h3VxFY.jpg", "order": 11}, {"name": "Ann-Margret", "character": "Martha", "id": 13567, "credit_id": "54c02ac9c3a3687c40009d91", "cast_id": 16, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 12}, {"name": "Amy Sedaris", "character": "Condo Woman", "id": 12110, "credit_id": "54c02ae7c3a368145e00e59f", "cast_id": 17, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 13}, {"name": "Sab Shimono", "character": "Yoshiro Nishamura", "id": 85500, "credit_id": "54c02afe925141315a002300", "cast_id": 18, "profile_path": "/lI2eHIHABEM3s2EaHpeGgzZFd2J.jpg", "order": 14}, {"name": "Luis Guzm\u00e1n", "character": "Nick - Child Proofer #2 (uncredited)", "id": 40481, "credit_id": "54c02b5192514148b000d4e2", "cast_id": 19, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 15}], "directors": [{"name": "Walt Becker", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a368484e01d8a1", "profile_path": "/ioshEghgcfUsaDN2rYfEJDPBUqZ.jpg", "id": 68573}], "vote_average": 5.4, "runtime": 88}, "38117": {"poster_path": "/zQXN6pry2ZlJTGKwRH9eSlWAX6t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38028230, "overview": "A curse transforms a handsome and arrogant young man into everything he detests in this contemporary retelling of Beauty and the Beast. Wealthy Kyle Kingson has everything a teenager could want in life, but he still gets off on humiliating the weaker and less attractive. When Kyle invites his misfit classmate Kendra to an environmental rally at their school, she questions his motivations but reluctantly accepts. Later, Kyle blows Kendra off, prompting the spurned goth girl to cast a dark spell on the swaggering egotist.", "video": false, "id": 38117, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Beastly", "tagline": "Love is never ugly.", "vote_count": 175, "homepage": "http://www.beastlythemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1152398", "adult": false, "backdrop_path": "/afjvvcJEM7GMnsx3uo6tkfca6lc.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}], "release_date": "2011-01-21", "popularity": 0.962881659002602, "original_title": "Beastly", "budget": 17000000, "cast": [{"name": "Alex Pettyfer", "character": "Kyle", "id": 61363, "credit_id": "52fe46969251416c910591a3", "cast_id": 4, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 0}, {"name": "Dakota Johnson", "character": "Sloan", "id": 118545, "credit_id": "52fe46969251416c910591a7", "cast_id": 6, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 1}, {"name": "Erik Knudsen", "character": "Trey", "id": 2681, "credit_id": "52fe46969251416c910591ab", "cast_id": 7, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 2}, {"name": "Mary-Kate Olsen", "character": "Kendra", "id": 67849, "credit_id": "52fe46969251416c910591af", "cast_id": 8, "profile_path": "/fxTJRxHrNyZVrWZWQZOTXJnGwDY.jpg", "order": 3}, {"name": "Vanessa Hudgens", "character": "Lindy", "id": 67599, "credit_id": "52fe46969251416c910591b3", "cast_id": 9, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 4}, {"name": "Karl Graboshas", "character": "Male Teacher", "id": 119706, "credit_id": "52fe46969251416c910591b7", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Lisa Gay Hamilton", "character": "Zola", "id": 64908, "credit_id": "52fe46969251416c910591bb", "cast_id": 11, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 6}, {"name": "Jonathan Dubsky", "character": "Student at Green Party", "id": 119707, "credit_id": "52fe46969251416c910591bf", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "David Francis", "character": "Dr. Davis", "id": 119708, "credit_id": "52fe46969251416c910591c3", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Neil Patrick Harris", "character": "Will", "id": 41686, "credit_id": "52fe46969251416c910591c7", "cast_id": 14, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 9}, {"name": "Rhiannon Moller-Trotter", "character": "Halloween Partygoer", "id": 119709, "credit_id": "52fe46969251416c910591cb", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Gio Perez", "character": "Victor", "id": 114144, "credit_id": "52fe46969251416c910591cf", "cast_id": 16, "profile_path": "/xE18CS5KtkMaQEyPzcEX800T2Xw.jpg", "order": 11}, {"name": "Miguel Mendoza", "character": "Victor's Brother", "id": 119710, "credit_id": "52fe46969251416c910591d3", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Roc LaFortune", "character": "Lindy's Father", "id": 96596, "credit_id": "52fe46969251416c910591d7", "cast_id": 18, "profile_path": "/7vwjjbdLKLp1qpTjTyH0U80t2SG.jpg", "order": 13}, {"name": "Peter Krause", "character": "Rob", "id": 23119, "credit_id": "52fe46969251416c910591db", "cast_id": 19, "profile_path": "/fI0dpVKdPIcSiS7MAAo3lw6EcFD.jpg", "order": 14}], "directors": [{"name": "Daniel Barnz", "department": "Directing", "job": "Director", "credit_id": "52fe46969251416c91059193", "profile_path": "/rBlhnxatVxjdLah2nrSNhGuKVu6.jpg", "id": 84061}], "vote_average": 5.7, "runtime": 86}, "103663": {"poster_path": "/63KA9DNWQqB21cb7nzFwTpHQBFx.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 16800000, "overview": "A teacher lives a lonely life, all the while struggling over his son\u2019s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.", "video": false, "id": 103663, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hunt", "tagline": "The lie is spreading.", "vote_count": 228, "homepage": "", "belongs_to_collection": null, "original_language": "da", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2106476", "adult": false, "backdrop_path": "/AhFA76jQDkqnFu1rTNCIkwL1wMu.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}], "release_date": "2012-10-25", "popularity": 0.66378513699885, "original_title": "Jagten", "budget": 3800000, "cast": [{"name": "Mads Mikkelsen", "character": "Lucas", "id": 1019, "credit_id": "52fe4a22c3a36847f81bc00d", "cast_id": 7, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "Alexandra Rapaport", "character": "Nadja", "id": 92416, "credit_id": "52fe4a22c3a36847f81bc011", "cast_id": 8, "profile_path": "/hsvrdVk9bCo4MiLNbhd25lMB8z9.jpg", "order": 1}, {"name": "Thomas Bo Larsen", "character": "Theo", "id": 4457, "credit_id": "52fe4a22c3a36847f81bc015", "cast_id": 9, "profile_path": "/duza8j6FcbmT6J0f4mayUeTlMvS.jpg", "order": 2}, {"name": "Anne Louise Hassing", "character": "Agnes", "id": 6122, "credit_id": "52fe4a22c3a36847f81bc019", "cast_id": 10, "profile_path": "/nl3XzXVRifRNEnVl08n2S6DsN6y.jpg", "order": 3}, {"name": "Lars Ranthe", "character": "Bruun", "id": 588175, "credit_id": "52fe4a22c3a36847f81bc01d", "cast_id": 11, "profile_path": "/qMbcmZDykjm0K1spNjzv5HDoL9f.jpg", "order": 4}, {"name": "Susse Wold", "character": "Grethe", "id": 47156, "credit_id": "52fe4a22c3a36847f81bc021", "cast_id": 12, "profile_path": "/iw9rtraAUpEfTOSQSLUQCY2c0oL.jpg", "order": 5}, {"name": "Ole Dupont", "character": "Godsejer / Advokat", "id": 1034508, "credit_id": "52fe4a22c3a36847f81bc025", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Annika Wedderkopp", "character": "Klara", "id": 1112385, "credit_id": "52fe4a22c3a36847f81bc029", "cast_id": 14, "profile_path": "/3NGDD5a40tMwjYHHivYfnmZlQ1h.jpg", "order": 7}, {"name": "Lasse Fogelstr\u00f8m", "character": "Marcus", "id": 1188827, "credit_id": "52fe4a22c3a36847f81bc02d", "cast_id": 15, "profile_path": "/byABnjqyW1LT5MTgiwsFuQXCoZK.jpg", "order": 8}, {"name": "Bjarne Henriksen", "character": "", "id": 4464, "credit_id": "550c875f9251414695004078", "cast_id": 22, "profile_path": "/kG3ZlQlMDbl61gJmtpgu2P7LHfl.jpg", "order": 9}, {"name": "Sebastian Bull Sarning", "character": "", "id": 1442695, "credit_id": "550c878a92514146a0003e61", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Steen Ordell Guldbrandsen", "character": "", "id": 1442696, "credit_id": "550c8796c3a36848830042ad", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Daniel Engstrup", "character": "", "id": 1441931, "credit_id": "550c87a0c3a3681db2003a27", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Troels Thorsen", "character": "", "id": 1442697, "credit_id": "550c87aa9251413554001d4a", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "S\u00f8ren R\u00f8nholt", "character": "", "id": 1442698, "credit_id": "550c87b5c3a3684872004481", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Jytte Kvinesdal", "character": "", "id": 564610, "credit_id": "550c87c09251413554001d4e", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Josefine Gr\u00e5b\u00f8l", "character": "", "id": 1442699, "credit_id": "550c87cb9251414695004080", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Nicolai Dahl Hamilton", "character": "", "id": 1353300, "credit_id": "550c87d69251414695004084", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "\u00d8yvind Hagen-Traberg", "character": "", "id": 1348437, "credit_id": "550c87e3c3a3684877003f82", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Allan Wibor Christensen", "character": "", "id": 1442700, "credit_id": "550c87ed92514146a0003e6b", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Rikke Bergmann", "character": "", "id": 1442701, "credit_id": "550c87f5c3a3684886004285", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Rasmus Lind Rubin", "character": "", "id": 234895, "credit_id": "550c880092514146a0003e71", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Frank Rub\u00e6k", "character": "", "id": 1442702, "credit_id": "550c880cc3a368487d004391", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Nina Christrup", "character": "", "id": 1433678, "credit_id": "550c88169251414695004089", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Birgit Petersen", "character": "", "id": 1442703, "credit_id": "550c8822c3a368488600428b", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Karina Fogh Holmkj\u00e6r", "character": "", "id": 1442704, "credit_id": "550c882d9251413443001c7d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Heidi Gross", "character": "", "id": 1442705, "credit_id": "550c8836925141469c00408b", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Marie Aktor", "character": "", "id": 1442706, "credit_id": "550c8840c3a3684877003f88", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Mona C. Soliman", "character": "", "id": 1442707, "credit_id": "550c884bc3a3684874004751", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Mie Ravn Nielsen", "character": "", "id": 1442708, "credit_id": "550c88599251414699003fc8", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Kim Westi Rasmussen", "character": "", "id": 1440936, "credit_id": "550c8866c3a3684874004756", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Thomas Ravn", "character": "", "id": 1310986, "credit_id": "550c8875c3a368487d004397", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Katrine Brygmann", "character": "", "id": 1442709, "credit_id": "550c8882c3a3684877003f8d", "cast_id": 45, "profile_path": null, "order": 32}], "directors": [{"name": "Thomas Vinterberg", "department": "Directing", "job": "Director", "credit_id": "52fe4a22c3a36847f81bbfeb", "profile_path": "/dFev1iqFyoSigPRyCQ7r9NwZXiv.jpg", "id": 4453}], "vote_average": 7.9, "runtime": 115}, "169209": {"poster_path": "/rlGhBE58cEAWU6hWh77MQlQ1DRo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3639345, "overview": "After failing to get into the police academy, Chris Potamitis (Hemsworth), settles for a security guard job with the EMPIRE STATE Armored Truck Company. He makes the mistake of mentioning the company's lax security to his best friend, Eddie (Angarano) & is unwittingly drawn into an elaborate scheme to rob the abundant amounts of cash being stored there - resulting in the largest cash heist in U.S. History. As the stakes continue to rise, Chris and Eddie must outwit James Ransone (Johnson), the veteran NYPD Detective hot on their trail, & the local crime bosses that want to know who pulled a job on their turf.", "video": false, "id": 169209, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Empire State", "tagline": "Based on a true story.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2171867", "adult": false, "backdrop_path": "/tkNJlMk4uJFC9jBq3UACbgugF4y.jpg", "production_companies": [{"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment Corporation", "id": 11030}, {"name": "24P Media Group", "id": 14581}, {"name": "Kind Hearts Entertainment", "id": 47287}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Picture Perfect Corporation", "id": 27993}, {"name": "Voltage Pictures", "id": 10255}], "release_date": "2013-09-03", "popularity": 1.04421867555609, "original_title": "Empire State", "budget": 11000000, "cast": [{"name": "Liam Hemsworth", "character": "Chris Potamitis", "id": 96066, "credit_id": "52fe4cddc3a36847f82422c5", "cast_id": 2, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 0}, {"name": "Dwayne Johnson", "character": "Detective James Ransome", "id": 18918, "credit_id": "52fe4cddc3a36847f82422c1", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 1}, {"name": "Emma Roberts", "character": "Nancy Michaelides", "id": 34847, "credit_id": "52fe4cddc3a36847f82422c9", "cast_id": 3, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 2}, {"name": "Nikki Reed", "character": "Lizzette", "id": 59252, "credit_id": "52fe4cddc3a36847f82422cd", "cast_id": 4, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 3}, {"name": "Lydia Hull", "character": "Maria", "id": 1042684, "credit_id": "5405d338c3a3684366008601", "cast_id": 28, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 4}, {"name": "Michael Angarano", "character": "Eddie", "id": 11665, "credit_id": "52fe4cddc3a36847f82422d1", "cast_id": 5, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 5}, {"name": "Shenae Grimes", "character": "Eleni", "id": 88619, "credit_id": "52fe4cdec3a36847f82422d5", "cast_id": 6, "profile_path": "/zDa5eWttJdzv1Fxp2lx3PUzVXT0.jpg", "order": 6}, {"name": "Jerry Ferrara", "character": "Jimmy", "id": 98953, "credit_id": "52fe4cdec3a36847f82422d9", "cast_id": 7, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 7}, {"name": "James Ransone", "character": "Agent Nugent", "id": 5296, "credit_id": "52fe4cdec3a36847f82422dd", "cast_id": 8, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 8}, {"name": "Gia Mantegna", "character": "Vicky", "id": 137424, "credit_id": "5405d354c3a368119c003b80", "cast_id": 29, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 9}, {"name": "Chris Diamantopoulos", "character": "Spyro", "id": 1217648, "credit_id": "52fe4cdec3a36847f8242305", "cast_id": 18, "profile_path": "/fd9RKydcraURoZnsy0EDzwVyP80.jpg", "order": 10}, {"name": "Michael Rispoli", "character": "Tony", "id": 18313, "credit_id": "52fe4cdec3a36847f82422e1", "cast_id": 10, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 11}, {"name": "Gia Mantegna", "character": "Vicky", "id": 137424, "credit_id": "52fe4cdec3a36847f82422e5", "cast_id": 11, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 12}, {"name": "Paul Ben-Victor", "character": "Tommy", "id": 85142, "credit_id": "52fe4cdec3a36847f82422e9", "cast_id": 12, "profile_path": "/350FIsnn84w2RLAhNPRtzeaUqLO.jpg", "order": 13}, {"name": "Sharon Angela", "character": "Dina", "id": 139703, "credit_id": "52fe4cdec3a36847f82422ed", "cast_id": 13, "profile_path": "/2aegDkuLTH1jZ2yCFBmUZIMkpdV.jpg", "order": 14}, {"name": "Roger Guenveur Smith", "character": "Agent Marichal", "id": 40377, "credit_id": "52fe4cdec3a36847f82422f1", "cast_id": 14, "profile_path": "/c6yUnUcbNxCUKAjucLlh6VHzmCd.jpg", "order": 15}, {"name": "Bonnie Bentley", "character": "Mother", "id": 1060475, "credit_id": "52fe4cdec3a36847f82422f5", "cast_id": 15, "profile_path": "/eLYeb5I7NCQj4JtvPivNLv3W5Ri.jpg", "order": 16}, {"name": "Wayne P\u00e9re", "character": "Williams", "id": 31528, "credit_id": "5405d376c3a368068c0083b5", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Tony Bentley", "character": "Sam Wallace", "id": 120253, "credit_id": "5405d389c3a36843630082dd", "cast_id": 31, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 18}, {"name": "Karen Clark", "character": "Karen", "id": 177150, "credit_id": "5405d3a1c3a36816af0037ee", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "Dito Montiel", "department": "Directing", "job": "Director", "credit_id": "52fe4cdec3a36847f82422fb", "profile_path": "/j0ZiIL5HMwQJXqEs3halOPrrrXS.jpg", "id": 53935}], "vote_average": 5.2, "runtime": 94}, "21755": {"poster_path": "/dFjfFhbsYCkMoc3fMk3ZQX7HMls.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5530764, "overview": "The Brothers Bloom are the best con men in the world, swindling millionaires with complex scenarios of lust and intrigue. Now they've decided to take on one last job - showing a beautiful and eccentric heiress the time of her life with a romantic adventure that takes them around the world.", "video": false, "id": 21755, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Brothers Bloom", "tagline": "They'd never let the truth come between them.", "vote_count": 55, "homepage": "http://www.brothersbloom.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0844286", "adult": false, "backdrop_path": "/cKTpfaao3g9rdW4imF34tpd3Dio.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Summit Entertainment", "id": 491}, {"name": "Endgame Entertainment", "id": 1205}], "release_date": "2008-09-09", "popularity": 0.697272909615634, "original_title": "The Brothers Bloom", "budget": 20000000, "cast": [{"name": "Rachel Weisz", "character": "Penelope", "id": 3293, "credit_id": "52fe4425c3a368484e01235d", "cast_id": 1, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 0}, {"name": "Adrien Brody", "character": "Bloom", "id": 3490, "credit_id": "52fe4425c3a368484e012361", "cast_id": 2, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Stephen", "id": 103, "credit_id": "52fe4425c3a368484e012365", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Rinko Kikuchi", "character": "Bang Bang", "id": 18054, "credit_id": "52fe4425c3a368484e012369", "cast_id": 4, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 3}, {"name": "Robbie Coltrane", "character": "Curator", "id": 1923, "credit_id": "52fe4425c3a368484e01236d", "cast_id": 5, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 4}, {"name": "Maximilian Schell", "character": "Diamond Dog", "id": 12150, "credit_id": "52fe4425c3a368484e012371", "cast_id": 6, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 5}, {"name": "Ricky Jay", "character": "Narrator (voice)", "id": 10743, "credit_id": "52fe4425c3a368484e012375", "cast_id": 7, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 6}, {"name": "Zachary Gordon", "character": "Young Bloom", "id": 89819, "credit_id": "52fe4425c3a368484e012379", "cast_id": 8, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 7}, {"name": "Max Records", "character": "Young Stephen", "id": 80576, "credit_id": "52fe4426c3a368484e0123cb", "cast_id": 23, "profile_path": "/5RgV2oMl1OsUKUMW9C8vyrM8G0c.jpg", "order": 8}, {"name": "Andy Nyman", "character": "Charleston", "id": 22810, "credit_id": "52fe4426c3a368484e0123cf", "cast_id": 24, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 9}, {"name": "Noah Segan", "character": "The Duke", "id": 48312, "credit_id": "52fe4426c3a368484e0123d3", "cast_id": 25, "profile_path": "/hxRWVwtxvzz0NTaaZMQwtPz8CDE.jpg", "order": 10}, {"name": "Nora Zehetner", "character": "Rose", "id": 34070, "credit_id": "52fe4426c3a368484e0123d7", "cast_id": 26, "profile_path": "/qzP1MWNCugzf180ZDX8zdfBk3zk.jpg", "order": 11}, {"name": "Ram Bergman", "character": "Himself", "id": 60047, "credit_id": "553ae1b792514135c8000f2e", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Craig Johnson", "character": "Apple Cart Vendor", "id": 69074, "credit_id": "553ae1d3925141125600886d", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Dubravko Jovanovi\u0107", "character": "Albino", "id": 1049501, "credit_id": "553ae21c92514138a90054a8", "cast_id": 33, "profile_path": "/cn7LiKMvFPS3gXDQ4uaIWniWiWN.jpg", "order": 14}, {"name": "Esme Tyler", "character": "Young Girl", "id": 1458761, "credit_id": "553ae22ac3a3687845009645", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Jovan Vitas", "character": "Young Boy", "id": 1458762, "credit_id": "553ae23dc3a3683e5500247e", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Ana Sofrenovi\u0107", "character": "Charleston's Wife", "id": 32358, "credit_id": "52fe4426c3a368484e0123e7", "cast_id": 29, "profile_path": "/wNH3XmjO5Y2b6mFvBvE0IZC5oWP.jpg", "order": 17}, {"name": "Vladimir Kulhavy", "character": "Chief of Police", "id": 25723, "credit_id": "52fe4426c3a368484e0123eb", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Alek Rodic", "character": "Snack Car Attendant", "id": 1458763, "credit_id": "553ae284925141678800224e", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Josif Tati\u0107", "character": "Oafish Foster Father", "id": 110980, "credit_id": "553ae2a99251411256008891", "cast_id": 37, "profile_path": "/uMxTdE818ffdYCubg5Okr4x8vak.jpg", "order": 20}, {"name": "Slobodan \u0106usti\u0107", "character": "Foster Dad", "id": 1045425, "credit_id": "553ae2e6c3a3683e55002499", "cast_id": 38, "profile_path": "/mMtap9WxiqUGciCRqlZnRZGkyU9.jpg", "order": 21}, {"name": "Branka Puji\u0107", "character": "Foster Mom", "id": 1043267, "credit_id": "553ae309c3a3683e140023ce", "cast_id": 39, "profile_path": "/wBKzUiUagPMU97RSJhnyI3Q8sqf.jpg", "order": 22}, {"name": "George Bocchetti", "character": "Excited Boy", "id": 1458764, "credit_id": "553ae31792514135c8000f65", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Elis Derham", "character": "Excited Boy", "id": 1458765, "credit_id": "553ae31f925141275e0041cf", "cast_id": 41, "profile_path": null, "order": 24}], "directors": [{"name": "Rian Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4425c3a368484e01237f", "profile_path": "/pCdsaqBaG6SozL5HGwVRyIfjWtM.jpg", "id": 67367}], "vote_average": 6.9, "runtime": 114}, "38142": {"poster_path": "/wX7RbjclqHoSWd4NGouDisBHq1o.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Takaki and Akari are two classmates in elementary school. During their time together they have become close friends. Their relationship is tested when Akari moves to another city because of her parents' jobs. Both of them struggle to keep their friendship alive, as time and distance slowly pulls them apart. When Takaki finds out that he is moving further away, he decides to visit Akari one last time.", "video": false, "id": 38142, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "5 Centimeters Per Second", "tagline": "A chain of short stories about their distance", "vote_count": 120, "homepage": "http://5cm.yahoo.co.jp", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0983213", "adult": false, "backdrop_path": "/na51OUflawJy5K2cgvF07nrgGrl.jpg", "production_companies": [{"name": "CoMix Wave Films", "id": 10198}], "release_date": "2007-03-03", "popularity": 0.488234448441557, "original_title": "Byousoku 5 Centimeter", "budget": 295000, "cast": [{"name": "Kenji Mizuhashi", "character": "Takaki Toono", "id": 79006, "credit_id": "52fe46989251416c910596df", "cast_id": 3, "profile_path": "/5GSiheT7gHfm5u2roSuNOU19tqG.jpg", "order": 0}, {"name": "Yoshimi Kondou", "character": "Akari Shinohara", "id": 122180, "credit_id": "52fe46989251416c910596e3", "cast_id": 4, "profile_path": "/lAEyKFMkK59w0LsWZwZnDd5ZkAA.jpg", "order": 1}, {"name": "Satomi Hanamura", "character": "Kanae Sumita", "id": 85976, "credit_id": "52fe46989251416c910596e7", "cast_id": 5, "profile_path": "/5KEkffbZnEXbBjL3ryYQnkphZWg.jpg", "order": 2}, {"name": "Ayaka Onoue", "character": "Akari Shinohara", "id": 122181, "credit_id": "52fe46989251416c910596eb", "cast_id": 6, "profile_path": "/TgyKKwd7Q8dB1sr5jb3lrquItS.jpg", "order": 3}, {"name": "Risa Mizuno", "character": "", "id": 116323, "credit_id": "52fe46989251416c910596fb", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Yuka Terazaki", "character": "", "id": 135523, "credit_id": "52fe46989251416c910596ff", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Y\u00fbko Nakamura", "character": "", "id": 237168, "credit_id": "52fe46989251416c91059703", "cast_id": 11, "profile_path": "/6WvIbVHRfaayiGEU6Qsn7LncO1t.jpg", "order": 6}, {"name": "Masami Iwasaki", "character": "", "id": 225656, "credit_id": "52fe46989251416c91059707", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Rei Kondo", "character": "", "id": 1173793, "credit_id": "52fe46989251416c9105970b", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Hiroshi Shimozaki", "character": "", "id": 1173794, "credit_id": "52fe46989251416c9105970f", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Takahiro Hirano", "character": "", "id": 1124541, "credit_id": "52fe46989251416c91059713", "cast_id": 15, "profile_path": null, "order": 10}], "directors": [{"name": "Makoto Shinkai", "department": "Directing", "job": "Director", "credit_id": "52fe46989251416c910596db", "profile_path": "/gJw2kEydzdj4uaD1FEfuQ2scQzy.jpg", "id": 74091}], "vote_average": 7.4, "runtime": 63}, "54551": {"poster_path": "/4g7YYjVrSvJPxHztuDOqIjQACB2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Minions fight over a delicious banana.. but is that all they want?!", "video": false, "id": 54551, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me: Banana", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1814643", "adult": false, "backdrop_path": "/jwYLfJtbEvABmV9FuC3RRoxiTCI.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-12-13", "popularity": 0.532817410488774, "original_title": "Despicable Me: Banana", "budget": 0, "cast": [{"name": "Pierre Coffin", "character": "Minions (various)", "id": 124747, "credit_id": "52fe48a2c3a36847f8171b0b", "cast_id": 1, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 0}], "directors": [{"name": "Kyle Balda", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171b11", "profile_path": null, "id": 8023}, {"name": "Samuel Tourneux", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171b17", "profile_path": null, "id": 220833}], "vote_average": 7.4, "runtime": 4}, "11823": {"poster_path": "/5sWkVDwhS6jsiMDEPPnDG6QYqXg.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 40701767, "overview": "A pro tennis player has lost his ambition and has fallen in rank to 119. Fortunately for him, he meets a young player on the women's circuit who helps him recapture his focus for Wimbledon.", "video": false, "id": 11823, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Wimbledon", "tagline": "She's the golden girl. He's the longshot. It's a match made in...", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0360201", "adult": false, "backdrop_path": "/jO9m4X4ztVJAfdm36MUnHFFWVLL.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2004-09-13", "popularity": 0.746440425704203, "original_title": "Wimbledon", "budget": 31000000, "cast": [{"name": "Kirsten Dunst", "character": "Lizzie Bradbury", "id": 205, "credit_id": "52fe448c9251416c75038afb", "cast_id": 13, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Peter Colt", "id": 6162, "credit_id": "52fe448c9251416c75038aff", "cast_id": 14, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Sam Neill", "character": "Dennis Bradbury", "id": 4783, "credit_id": "52fe448c9251416c75038b03", "cast_id": 15, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "James McAvoy", "character": "Carl Colt", "id": 5530, "credit_id": "52fe448c9251416c75038b07", "cast_id": 16, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 3}, {"name": "Bernard Hill", "character": "Edward Colt", "id": 1369, "credit_id": "52fe448c9251416c75038b0b", "cast_id": 17, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 4}, {"name": "Austin Nichols", "character": "Jake Hammond", "id": 6069, "credit_id": "52fe448c9251416c75038b0f", "cast_id": 18, "profile_path": "/zuPYAE3HC6Sb82vZcef7edN1nkT.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Ron Roth", "id": 15277, "credit_id": "52fe448c9251416c75038b13", "cast_id": 19, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Nikolaj Coster-Waldau", "character": "Dieter Prohl", "id": 12795, "credit_id": "52fe448c9251416c75038b17", "cast_id": 20, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 7}, {"name": "Celia Imrie", "character": "Lydice Kenwood", "id": 9139, "credit_id": "52fe448c9251416c75038b1b", "cast_id": 21, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 8}], "directors": [{"name": "Richard Loncraine", "department": "Directing", "job": "Director", "credit_id": "52fe448c9251416c75038ad3", "profile_path": "/j700yY5SyI1EZegFpL4h77Otu5W.jpg", "id": 33315}], "vote_average": 5.6, "runtime": 98}, "13596": {"poster_path": "/l6OAtXIo1xerbwo8xezvqr6s27Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36620508, "overview": "When Dustin's girlfriend, Alexis, breaks up with him, he employs his best buddy, Tank, to take her out on the worst rebound date imaginable in the hopes that it will send her running back into his arms. But when Tank begins to really fall for Alexis, he finds himself in an impossible position.", "video": false, "id": 13596, "genres": [{"id": 35, "name": "Comedy"}], "title": "My Best Friend's Girl", "tagline": "It's funny what love can make you do...", "vote_count": 50, "homepage": "http://www.mybestfriendsgirlmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1046163", "adult": false, "backdrop_path": "/wEvAB2DlKbnKx41g18cFHjgz4Pj.jpg", "production_companies": [{"name": "New Wave Entertainment", "id": 2953}, {"name": "Lionsgate", "id": 1632}, {"name": "Management 360", "id": 4220}, {"name": "Terra Firma Films", "id": 7948}, {"name": "Superfinger Entertainment", "id": 12020}], "release_date": "2008-09-19", "popularity": 0.821843584834685, "original_title": "My Best Friend's Girl", "budget": 20000000, "cast": [{"name": "Dane Cook", "character": "Tank", "id": 31837, "credit_id": "52fe457e9251416c75058809", "cast_id": 3, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Alexis", "id": 11661, "credit_id": "52fe457e9251416c7505880d", "cast_id": 4, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Professor Turner", "id": 7447, "credit_id": "52fe457e9251416c75058811", "cast_id": 5, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Jason Biggs", "character": "Dustin", "id": 21593, "credit_id": "52fe457e9251416c75058815", "cast_id": 6, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 3}, {"name": "Diora Baird", "character": "Rachel", "id": 59263, "credit_id": "52fe457e9251416c7505881f", "cast_id": 9, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 4}, {"name": "Lizzy Caplan", "character": "Ami", "id": 51988, "credit_id": "52fe457e9251416c75058823", "cast_id": 10, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 5}, {"name": "Riki Lindhome", "character": "Hilary", "id": 453, "credit_id": "52fe457e9251416c75058827", "cast_id": 11, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 6}, {"name": "Mini Anden", "character": "Lizzy", "id": 142953, "credit_id": "52fe457e9251416c7505882b", "cast_id": 12, "profile_path": "/m92JfMnAl6KC5d0ho3r1lFpABQJ.jpg", "order": 7}, {"name": "Nate Torrence", "character": "Craig", "id": 41565, "credit_id": "52fe457e9251416c7505882f", "cast_id": 13, "profile_path": "/nQoVDAd3MeMEW740Z0Ie9sPTnx5.jpg", "order": 8}, {"name": "Hilary Pingle", "character": "Claire", "id": 1077059, "credit_id": "52fe457f9251416c750588a5", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Malcolm Barrett", "character": "Dwalu", "id": 132355, "credit_id": "52fe457f9251416c750588a9", "cast_id": 35, "profile_path": "/hHCXukVEldrRfxpQqJbou7krl5O.jpg", "order": 10}, {"name": "Taran Killam", "character": "Josh", "id": 1213573, "credit_id": "52fe457f9251416c750588b7", "cast_id": 39, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 11}, {"name": "Faye Grant", "character": "Merrilee", "id": 70830, "credit_id": "52fe457f9251416c750588ad", "cast_id": 37, "profile_path": "/jrqwbTemID0U0DisFO7i7iwDkRm.jpg", "order": 12}], "directors": [{"name": "Howard Deutch", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c750587ff", "profile_path": "/68Vae1HkU1NxQZ6KEmuxIpno7c9.jpg", "id": 26502}], "vote_average": 5.5, "runtime": 101}, "13597": {"poster_path": "/lt7G8X1E8LUMfh6lPtnoZ4QYsKR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12729917, "overview": "Frustrated with baby-sitting on yet another weekend night, Sarah - a teenager with an active imagination - summons the Goblins from her favourite book, \"Labyrinth\", to take the baby step-brother away. When little Toby actually disappears, Sarah must follow him into the world of the fairy tale to rescue him from the Goblin King!", "video": false, "id": 13597, "genres": [{"id": 14, "name": "Fantasy"}], "title": "Labyrinth", "tagline": "Where everything seems possible and nothing is what it seems.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091369", "adult": false, "backdrop_path": "/YgLdQEPrQ5Sip26pfmWd7wm6WK.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Henson Associates (HA)", "id": 24931}, {"name": "Lucasfilm", "id": 1}, {"name": "Jim Henson Company, The", "id": 6254}], "release_date": "1986-06-27", "popularity": 0.77885500504933, "original_title": "Labyrinth", "budget": 25000000, "cast": [{"name": "David Bowie", "character": "Jareth", "id": 7487, "credit_id": "52fe457f9251416c750588e5", "cast_id": 2, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Sarah", "id": 6161, "credit_id": "52fe457f9251416c750588e9", "cast_id": 3, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Toby Froud", "character": "Toby", "id": 68794, "credit_id": "52fe457f9251416c750588ed", "cast_id": 4, "profile_path": "/cA3CE3sTfCk76sNPAwUTeNCIY6H.jpg", "order": 2}, {"name": "Christopher Malcolm", "character": "Father", "id": 47808, "credit_id": "52fe457f9251416c7505892d", "cast_id": 15, "profile_path": "/9Ua0yZoI6dZQ5VDqfU096dAM1Un.jpg", "order": 3}, {"name": "Shelley Thompson", "character": "Stepmother", "id": 68795, "credit_id": "52fe457f9251416c75058931", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Warwick Davis", "character": "Goblin Corps", "id": 11184, "credit_id": "52fe457f9251416c75058935", "cast_id": 17, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 5}, {"name": "Natalie Finland", "character": "Fairy", "id": 1329495, "credit_id": "539708fac3a3686415005bd8", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Shari Weiser", "character": "Hoggle", "id": 1329496, "credit_id": "5397090ec3a3686423005d5f", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Brian Henson", "character": "Hoggle", "id": 65298, "credit_id": "5397101e0e0a266db7009512", "cast_id": 20, "profile_path": "/m2Bczi1gvhnIYCGp8Fhg2QCPuNf.jpg", "order": 8}, {"name": "Ron Mueck", "character": "Ludo", "id": 1329518, "credit_id": "539710310e0a266dce0094f0", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Rob Mills", "character": "Ludo", "id": 220893, "credit_id": "539710440e0a266dbf00950f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Dave Goelz", "character": "Didymus", "id": 64181, "credit_id": "539710540e0a266dc200933e", "cast_id": 23, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 11}, {"name": "David Alan Barclay", "character": "Didymus", "id": 1329519, "credit_id": "539710630e0a266db4009613", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "David Shaughnessy", "character": "Didymus", "id": 193254, "credit_id": "539710740e0a266dc2009345", "cast_id": 25, "profile_path": "/9lJkB9mFvAiKIMvV7Zmk72vTnUK.jpg", "order": 13}, {"name": "Karen Prell", "character": "The Worm", "id": 189120, "credit_id": "539710810e0a266dca0095a3", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Timothy Bateson", "character": "The Worm", "id": 3548, "credit_id": "5397108e0e0a266db7009520", "cast_id": 27, "profile_path": "/dHSn6dpypXLmNCrCwOy3fJDbPsT.jpg", "order": 15}], "directors": [{"name": "Jim Henson", "department": "Directing", "job": "Director", "credit_id": "52fe457f9251416c750588e1", "profile_path": "/nnPQ50zVkY9JnFUx4Hjtptn4j4p.jpg", "id": 55983}], "vote_average": 6.7, "runtime": 101}, "54559": {"poster_path": "/8mpWQcqeY2NmzCLSNj8FHMAT1mN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "With so many jobs to choose from, the Minions have to make serious decisions after watching an 'Initiation Video'. What could go wrong?!", "video": false, "id": 54559, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me: Orientation Day", "tagline": "", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1830748", "adult": false, "backdrop_path": "/8BueE3xOMMd2Z2ix6ayqj2uPIGL.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-12-13", "popularity": 0.637913864514588, "original_title": "Despicable Me: Orientation Day", "budget": 0, "cast": [{"name": "Pierre Coffin", "character": "Minions (various)", "id": 124747, "credit_id": "52fe48a2c3a36847f8171d47", "cast_id": 3, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 0}, {"name": "Rob Huebel", "character": "Announcer", "id": 80595, "credit_id": "52fe48a2c3a36847f8171d4b", "cast_id": 4, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 1}], "directors": [{"name": "Kyle Balda", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171d3d", "profile_path": null, "id": 8023}, {"name": "Samuel Tourneux", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171d43", "profile_path": null, "id": 220833}], "vote_average": 7.0, "runtime": 4}, "13600": {"poster_path": "/vtlcA292oROPaG74amLsAhtBNbB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17869048, "overview": "For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.", "video": false, "id": 13600, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "City of Ember", "tagline": "Escape is the only option", "vote_count": 187, "homepage": "http://www.cityofember.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970411", "adult": false, "backdrop_path": "/npakqXbq7cCKyYLANJaEnnzwbgs.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Playtone", "id": 4171}, {"name": "Walden Media", "id": 10221}], "release_date": "2008-10-07", "popularity": 0.950449241249264, "original_title": "City of Ember", "budget": 55000000, "cast": [{"name": "Saoirse Ronan", "character": "Lina Mayfleet", "id": 36592, "credit_id": "52fe457f9251416c750589b9", "cast_id": 17, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Harry Treadaway", "character": "Doon Harrow", "id": 45051, "credit_id": "52fe457f9251416c75058985", "cast_id": 4, "profile_path": "/bteYHINCsRoIN9IhI1HbLd9TxTw.jpg", "order": 1}, {"name": "Mary Kay Place", "character": "Mrs. Murdo", "id": 5960, "credit_id": "52fe457f9251416c750589ff", "cast_id": 29, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 2}, {"name": "Bill Murray", "character": "Mayor Cole", "id": 1532, "credit_id": "52fe457f9251416c7505898d", "cast_id": 6, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Martin Landau", "character": "Sul", "id": 2641, "credit_id": "52fe457f9251416c75058a03", "cast_id": 30, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 4}, {"name": "Toby Jones", "character": "Barton Snode", "id": 13014, "credit_id": "52fe457f9251416c75058995", "cast_id": 8, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 5}, {"name": "Tim Robbins", "character": "Loris Harrow", "id": 504, "credit_id": "52fe457f9251416c75058989", "cast_id": 5, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 6}, {"name": "David Ryall", "character": "Chief Builder", "id": 27822, "credit_id": "52fe457f9251416c7505897d", "cast_id": 2, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 7}, {"name": "Ian McElhinney", "character": "Builder", "id": 43138, "credit_id": "52fe457f9251416c75058981", "cast_id": 3, "profile_path": "/5uXESGhFNIXSIVnOA5vby8Ctg3n.jpg", "order": 8}, {"name": "B.J. Hogg", "character": "Mayor's Guard", "id": 82142, "credit_id": "52fe457f9251416c75058991", "cast_id": 7, "profile_path": "/fBx6rB5IcS8O297qcPmvodph7O5.jpg", "order": 9}, {"name": "Lucinda Dryzek", "character": "Lizzie Bisco", "id": 82143, "credit_id": "52fe457f9251416c75058999", "cast_id": 9, "profile_path": "/oI6MJR0X9g1ay8iRsNps6lq2UHt.jpg", "order": 10}, {"name": "Matt Jessup", "character": "Joss", "id": 82144, "credit_id": "52fe457f9251416c7505899d", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Lara McIvor", "character": "Roner", "id": 82145, "credit_id": "52fe457f9251416c750589a1", "cast_id": 11, "profile_path": null, "order": 12}, {"name": "Myles Thompson", "character": "Smat", "id": 82146, "credit_id": "52fe457f9251416c750589a5", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Eoin McAndrew", "character": "Student #1", "id": 82147, "credit_id": "52fe457f9251416c750589a9", "cast_id": 13, "profile_path": null, "order": 14}, {"name": "Rachel Morton", "character": "Student #2", "id": 82148, "credit_id": "52fe457f9251416c750589ad", "cast_id": 14, "profile_path": null, "order": 15}, {"name": "Conor MacNeill", "character": "Student #3", "id": 82149, "credit_id": "52fe457f9251416c750589b1", "cast_id": 15, "profile_path": null, "order": 16}, {"name": "Lorraine Hilton", "character": "Miss Thorn", "id": 82150, "credit_id": "52fe457f9251416c750589b5", "cast_id": 16, "profile_path": null, "order": 17}], "directors": [{"name": "Gil Kenan", "department": "Directing", "job": "Director", "credit_id": "52fe457f9251416c75058979", "profile_path": "/ea6Bo4Ad1FTxeyIsGNxWSFCKuMj.jpg", "id": 57193}], "vote_average": 6.2, "runtime": 90}, "2268": {"poster_path": "/mOF2xK2xDgbpOCPgXreM4vfw9dC.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 350983908, "overview": "After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.", "video": false, "id": 2268, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Golden Compass", "tagline": "There are worlds beyond our own - the compass will show the way.", "vote_count": 359, "homepage": "http://www.goldencompassmovie.com/index_german.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0385752", "adult": false, "backdrop_path": "/fxSQuAFg3oZIaTC75D57WAkTZ8c.jpg", "production_companies": [{"name": "Depth of Field", "id": 1473}, {"name": "New Line Cinema", "id": 12}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Scholastic Productions", "id": 1938}], "release_date": "2007-12-07", "popularity": 1.09759008608037, "original_title": "The Golden Compass", "budget": 180000000, "cast": [{"name": "Nicole Kidman", "character": "Marisa Coutter", "id": 2227, "credit_id": "52fe4348c3a36847f8048651", "cast_id": 21, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Daniel Craig", "character": "Lord Asriel", "id": 8784, "credit_id": "52fe4348c3a36847f8048655", "cast_id": 22, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 1}, {"name": "Eva Green", "character": "Serafina Pekkala", "id": 10912, "credit_id": "52fe4348c3a36847f8048659", "cast_id": 24, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 2}, {"name": "Ian McShane", "character": "Ragnar Sturlusson (voice)", "id": 6972, "credit_id": "52fe4348c3a36847f8048661", "cast_id": 26, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Lee Scoresby", "id": 16431, "credit_id": "52fe4348c3a36847f804865d", "cast_id": 25, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Tom Courtenay", "character": "Farder Coram", "id": 14011, "credit_id": "52fe4348c3a36847f804868f", "cast_id": 35, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 5}, {"name": "Derek Jacobi", "character": "Magisterial Emissary", "id": 937, "credit_id": "52fe4348c3a36847f8048693", "cast_id": 36, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 6}, {"name": "Ben Walker", "character": "Roger", "id": 45585, "credit_id": "52fe4348c3a36847f8048697", "cast_id": 37, "profile_path": "/90mzQGgOHx12iJUQu9wycc2jByM.jpg", "order": 7}, {"name": "Simon McBurney", "character": "Fra Pavel", "id": 16358, "credit_id": "52fe4348c3a36847f804869b", "cast_id": 38, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 8}, {"name": "Magda Szubanski", "character": "Mrs. Lonsdale", "id": 45586, "credit_id": "52fe4348c3a36847f804869f", "cast_id": 39, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 9}, {"name": "Jack Shepherd", "character": "Master", "id": 45587, "credit_id": "52fe4348c3a36847f80486a3", "cast_id": 40, "profile_path": "/dnqU4tBeRI1zAh0c70PZJJOZCAE.jpg", "order": 10}, {"name": "Clare Higgins", "character": "Ma Coster", "id": 45588, "credit_id": "52fe4348c3a36847f80486a7", "cast_id": 41, "profile_path": "/s8Z51Z1jsVYEzCd916dIb1C6X5F.jpg", "order": 11}, {"name": "Jim Carter", "character": "John Faa", "id": 20070, "credit_id": "52fe4348c3a36847f80486ab", "cast_id": 42, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 12}, {"name": "Dakota Blue Richards", "character": "Lyra Belacqua", "id": 45589, "credit_id": "52fe4348c3a36847f80486af", "cast_id": 43, "profile_path": "/6XaRH9lq97NzFBHdL42SWckmcf1.jpg", "order": 13}, {"name": "Ian McKellen", "character": "Iorek Byrnison (voice)", "id": 1327, "credit_id": "52fe4348c3a36847f80486b3", "cast_id": 44, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 14}, {"name": "Freddie Highmore", "character": "Pantalaimon (voice)", "id": 1281, "credit_id": "52fe4348c3a36847f80486b7", "cast_id": 45, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 15}, {"name": "Christopher Lee", "character": "First High Councilor", "id": 113, "credit_id": "52fe4348c3a36847f80486c7", "cast_id": 48, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 16}, {"name": "Helen Soraya", "character": "Witch", "id": 1105459, "credit_id": "52fe4348c3a36847f80486cb", "cast_id": 49, "profile_path": "/sdjlyzUXrx5qAZ0cMISZjnLwvTX.jpg", "order": 17}, {"name": "Kristin Scott Thomas", "character": "Stelmania", "id": 5470, "credit_id": "52fe4348c3a36847f80486cf", "cast_id": 50, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 18}], "directors": [{"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80485e1", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}], "vote_average": 5.6, "runtime": 113}, "70954": {"poster_path": "/381HpzyzIUKn1Dmlv3QiEwkIm9w.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 176669, "overview": "Martin, a mercenary, is sent from Europe by an anonymous biotech company to the Tasmanian wilderness on a hunt for the last Tasmanian tiger.", "video": false, "id": 70954, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Hunter", "tagline": "Some mysteries should never be solved.", "vote_count": 61, "homepage": "http://www.thehuntermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1703148", "adult": false, "backdrop_path": "/kA22q4Vvn5VSkvgx4HJdjgHJ9A7.jpg", "production_companies": [{"name": "Porchlight Films", "id": 6237}, {"name": "Screen Australia", "id": 7584}, {"name": "Screen NSW", "id": 10951}, {"name": "Screen Tasmania", "id": 8632}, {"name": "Fulcrum Media Finance", "id": 14430}, {"name": "Madman Entertainment", "id": 21592}], "release_date": "2011-10-06", "popularity": 0.21631111606058, "original_title": "The Hunter", "budget": 0, "cast": [{"name": "Willem Dafoe", "character": "Martin David", "id": 5293, "credit_id": "52fe481cc3a368484e0e9a2d", "cast_id": 2, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 0}, {"name": "Frances O'Connor", "character": "Lucy Armstrong", "id": 1518, "credit_id": "52fe481cc3a368484e0e9a35", "cast_id": 4, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 1}, {"name": "Sam Neill", "character": "Jack Mindy", "id": 4783, "credit_id": "52fe481cc3a368484e0e9a31", "cast_id": 3, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "Morgana Davies", "character": "Sass Armstrong", "id": 144080, "credit_id": "52fe481cc3a368484e0e9a77", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Finn Woodlock", "character": "Bike Armstrong", "id": 1014734, "credit_id": "52fe481cc3a368484e0e9a8b", "cast_id": 21, "profile_path": null, "order": 4}, {"name": "Jacek Koman", "character": "Middleman", "id": 12210, "credit_id": "52fe481cc3a368484e0e9a7b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Callan Mulvey", "character": "Rival Hunter", "id": 208296, "credit_id": "52fe481cc3a368484e0e9a73", "cast_id": 15, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 6}, {"name": "Daniel Wyllie", "character": "Pool Player", "id": 3062, "credit_id": "52fe481cc3a368484e0e9a7f", "cast_id": 18, "profile_path": "/vOE8xx5mWUxamHWvAq5q07Ud2WO.jpg", "order": 7}, {"name": "Sullivan Stapleton", "character": "Doug", "id": 38664, "credit_id": "52fe481cc3a368484e0e9a39", "cast_id": 5, "profile_path": "/jbtXSbo8uqBTn8Nx2Z1fULTQlAz.jpg", "order": 8}, {"name": "Jamie Timony", "character": "Free", "id": 1014729, "credit_id": "52fe481cc3a368484e0e9a87", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Maia Thomas", "character": "Shakti", "id": 223675, "credit_id": "52fe481cc3a368484e0e9a83", "cast_id": 19, "profile_path": "/9BU1pj7n8Sf9wKpE4GiNdEBlSc6.jpg", "order": 10}], "directors": [{"name": "Daniel Nettheim", "department": "Directing", "job": "Director", "credit_id": "52fe481cc3a368484e0e9a29", "profile_path": null, "id": 186783}], "vote_average": 6.6, "runtime": 102}, "62764": {"poster_path": "/twCU43qv4VVqqsIi1NMnGj2kXmp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162700692, "overview": "After she spends all her money, an evil enchantress queen (Julia Roberts) schemes to marry a handsome, wealthy prince (Arnie Hammer). There's just one problem - he's in love with a beautiful princess, Snow White (Lily Collins). Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil...", "video": false, "id": 62764, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Mirror Mirror", "tagline": "The Snow White legend comes alive.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1667353", "adult": false, "backdrop_path": "/jQiK80zlXDAsAb8MgkdzHSzlTpe.jpg", "production_companies": [{"name": "Misher Films", "id": 11581}, {"name": "Relativity Media", "id": 7295}, {"name": "Yucaipa Films", "id": 12005}, {"name": "Goldmann Pictures", "id": 12006}, {"name": "Rat Entertainment", "id": 12007}, {"name": "Misha Films", "id": 12008}], "release_date": "2012-03-30", "popularity": 1.7540586165026, "original_title": "Mirror Mirror", "budget": 85000000, "cast": [{"name": "Lily Collins", "character": "Snow White", "id": 112561, "credit_id": "52fe468cc3a368484e096e15", "cast_id": 4, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Evil Queen", "id": 1204, "credit_id": "52fe468cc3a368484e096e19", "cast_id": 5, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Armie Hammer", "character": "Prince Andrew Alcott", "id": 53807, "credit_id": "52fe468cc3a368484e096e1d", "cast_id": 6, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 2}, {"name": "Nathan Lane", "character": "Brighton", "id": 78729, "credit_id": "52fe468cc3a368484e096e27", "cast_id": 10, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 3}, {"name": "Jordan Prentice", "character": "Napoleon", "id": 54476, "credit_id": "52fe468dc3a368484e096e3d", "cast_id": 16, "profile_path": "/6h6zFtJapmtixIenZJV0UYDzCNc.jpg", "order": 4}, {"name": "Mark Povinelli", "character": "Half Pint", "id": 154785, "credit_id": "52fe468dc3a368484e096e41", "cast_id": 17, "profile_path": "/cJbp38kWYicKQf3EFX136sPGswz.jpg", "order": 5}, {"name": "Joe Gnoffo", "character": "Grub", "id": 60958, "credit_id": "52fe468dc3a368484e096e45", "cast_id": 18, "profile_path": "/rKU6r12H7fg6FMveG1jNIA6nmA.jpg", "order": 6}, {"name": "Danny Woodburn", "character": "Grimm", "id": 13645, "credit_id": "52fe468dc3a368484e096e49", "cast_id": 19, "profile_path": "/mT7jSNAoZjB7zlRhWxcnRrFla7d.jpg", "order": 7}, {"name": "Sebastian Saraceno", "character": "Wolf", "id": 1060474, "credit_id": "52fe468dc3a368484e096e4d", "cast_id": 20, "profile_path": "/gHXNIcmwIJ3cgaUtlKm6JWW16g8.jpg", "order": 8}, {"name": "Martin Klebba", "character": "Butcher", "id": 4030, "credit_id": "52fe468dc3a368484e096e51", "cast_id": 21, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 9}, {"name": "Ronald Lee Clark", "character": "Chuckles", "id": 1091866, "credit_id": "52fe468dc3a368484e096e55", "cast_id": 22, "profile_path": "/21wxIUV4LSM1cYGOxOGW0LFfoKg.jpg", "order": 10}, {"name": "Robert Emms", "character": "Charles Renbock", "id": 589652, "credit_id": "52fe468dc3a368484e096e59", "cast_id": 23, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 11}, {"name": "Mare Winningham", "character": "Baker Margaret", "id": 51544, "credit_id": "52fe468dc3a368484e096e5d", "cast_id": 24, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 12}, {"name": "Michael Lerner", "character": "Baron", "id": 4250, "credit_id": "52fe468dc3a368484e096e61", "cast_id": 25, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 13}, {"name": "Sean Bean", "character": "King", "id": 48, "credit_id": "52fe468dc3a368484e096e65", "cast_id": 26, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 14}, {"name": "Bonnie Bentley", "character": "Caroline", "id": 1060475, "credit_id": "52fe468dc3a368484e096e69", "cast_id": 27, "profile_path": "/eLYeb5I7NCQj4JtvPivNLv3W5Ri.jpg", "order": 15}, {"name": "Arthur Holden", "character": "Noble #1", "id": 115596, "credit_id": "52fe468dc3a368484e096e6d", "cast_id": 28, "profile_path": "/y0aCeMJKAzVJO3pydEiVCV2Ca4k.jpg", "order": 16}, {"name": "Kwasi Songui", "character": "Noble #2", "id": 207881, "credit_id": "52fe468dc3a368484e096e71", "cast_id": 29, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 17}, {"name": "Eric Davis", "character": "Noble #3", "id": 1091867, "credit_id": "52fe468dc3a368484e096e75", "cast_id": 30, "profile_path": "/ti3nDKQMs8L7uzrPqcfFd51Jwki.jpg", "order": 18}, {"name": "Kathleen Fee", "character": "Noble #4", "id": 58170, "credit_id": "52fe468dc3a368484e096e79", "cast_id": 31, "profile_path": "/p7QxiYZCvgCYIBmfoGMN1Xedwo4.jpg", "order": 19}, {"name": "Nadia Verrucci", "character": "Servant", "id": 1015448, "credit_id": "52fe468dc3a368484e096e7d", "cast_id": 32, "profile_path": "/b1r2lWrxcWBYpIMmevAA5DXrzjM.jpg", "order": 20}, {"name": "Dawn Ford", "character": "Townswoman / Old Lady", "id": 1091868, "credit_id": "52fe468dc3a368484e096e81", "cast_id": 33, "profile_path": "/1aKWK9ksGeSUEwWCg3FnvNFEYBq.jpg", "order": 21}, {"name": "Alex Ivanovici", "character": "Town Magistrate", "id": 96594, "credit_id": "52fe468dc3a368484e096e85", "cast_id": 34, "profile_path": "/hCJlQXLMhT9gd6dkmOivS8IAOpw.jpg", "order": 22}, {"name": "M\u00e9lodie Simard", "character": "Child", "id": 1091869, "credit_id": "52fe468dc3a368484e096e89", "cast_id": 36, "profile_path": "/afJLyDe089KlgQ7mT5EM9BbdDUj.jpg", "order": 23}, {"name": "Kimberly-Sue Murray", "character": "Villager", "id": 550522, "credit_id": "52fe468dc3a368484e096e8d", "cast_id": 37, "profile_path": "/uJZlJTzpypPteg78qTu2GDACdKU.jpg", "order": 24}, {"name": "Lisa Roberts Gillan", "character": "Mirror Queen", "id": 15109, "credit_id": "52fe468dc3a368484e096e91", "cast_id": 38, "profile_path": "/buXwQSX1Lo802E9CNlfdf8mHPJ8.jpg", "order": 25}, {"name": "Adam Butcher", "character": "Servant #2", "id": 108534, "credit_id": "52fe468dc3a368484e096e95", "cast_id": 39, "profile_path": "/q0UmfAhN4wPePmkQFIuLv8UHTV8.jpg", "order": 26}, {"name": "Andr\u00e9 Lanthier", "character": "Lord Waverly", "id": 1037341, "credit_id": "52fe468dc3a368484e096e99", "cast_id": 40, "profile_path": "/bd22I1qiV4RHqoQyNbKpyjFDmKm.jpg", "order": 27}, {"name": "Lisa Noto", "character": "Magical Cottage Queen", "id": 1091874, "credit_id": "52fe468dc3a368484e096e9d", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "William Calvert", "character": "Door Guard #1", "id": 1091875, "credit_id": "52fe468dc3a368484e096ea1", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Nicholas Guest", "character": "Door Guard #2", "id": 36821, "credit_id": "52fe468dc3a368484e096ea5", "cast_id": 43, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 30}, {"name": "Frank Welker", "character": "Mannequins / Beast (voice)", "id": 15831, "credit_id": "52fe468dc3a368484e096ea9", "cast_id": 44, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 31}, {"name": "Richard Jutras", "character": "Townsman", "id": 1225492, "credit_id": "52fe468dc3a368484e096f31", "cast_id": 69, "profile_path": null, "order": 32}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe468cc3a368484e096e05", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 5.4, "runtime": 106}, "103731": {"poster_path": "/a0rbqR9UHxM67NQIsrgQXdMCiVQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21587700, "overview": "A drama centered on two teenage boys who encounter a fugitive and pact to help him escape from an island in the Mississippi.", "video": false, "id": 103731, "genres": [{"id": 18, "name": "Drama"}], "title": "Mud", "tagline": "People just sometimes forget why they fell in love in the first place.", "vote_count": 453, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1935179", "adult": false, "backdrop_path": "/cct5idxwiY3wWtGSKvJ09iHNIvf.jpg", "production_companies": [{"name": "Everest Entertainment", "id": 10892}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2013-05-10", "popularity": 1.421755764194, "original_title": "Mud", "budget": 10000000, "cast": [{"name": "Matthew McConaughey", "character": "Mud", "id": 10297, "credit_id": "52fe4a25c3a36847f81bc9b7", "cast_id": 7, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Tye Sheridan", "character": "Ellis", "id": 1034681, "credit_id": "52fe4a25c3a36847f81bc9d3", "cast_id": 14, "profile_path": "/tdplYVnd1bEWjv41B4gk8D1vLfO.jpg", "order": 1}, {"name": "Jacob Lofland", "character": "Neckbone", "id": 1171570, "credit_id": "52fe4a25c3a36847f81bca0f", "cast_id": 26, "profile_path": "/ckR9LXDzRqkktkciEHQ0tJqwKdi.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Tom Blankenship", "id": 9880, "credit_id": "52fe4a25c3a36847f81bc9c3", "cast_id": 10, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Reese Witherspoon", "character": "Juniper", "id": 368, "credit_id": "52fe4a25c3a36847f81bc9b3", "cast_id": 6, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 4}, {"name": "Sarah Paulson", "character": "Mary Lee", "id": 34490, "credit_id": "52fe4a25c3a36847f81bc9bf", "cast_id": 9, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 5}, {"name": "Michael Shannon", "character": "Galen", "id": 335, "credit_id": "52fe4a25c3a36847f81bc9bb", "cast_id": 8, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 6}, {"name": "Ray McKinnon", "character": "Senior", "id": 1472, "credit_id": "52fe4a25c3a36847f81bc9c7", "cast_id": 11, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 7}, {"name": "Joe Don Baker", "character": "King", "id": 10671, "credit_id": "52fe4a25c3a36847f81bc9cb", "cast_id": 12, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 8}, {"name": "Paul Sparks", "character": "Carver", "id": 167564, "credit_id": "52fe4a25c3a36847f81bc9cf", "cast_id": 13, "profile_path": "/i5WIHFWFWl4ytv0nCZHk4CC4m0Q.jpg", "order": 9}, {"name": "Stuart Greer", "character": "Miller", "id": 33262, "credit_id": "52fe4a25c3a36847f81bc9d7", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Michael Abbott Jr.", "character": "James", "id": 71889, "credit_id": "52fe4a25c3a36847f81bc9db", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Bonnie Sturdivant", "character": "May Pearl", "id": 1186193, "credit_id": "52fe4a25c3a36847f81bca13", "cast_id": 27, "profile_path": "/5pnRxVncUeANHLRKXAoEs36RNhE.jpg", "order": 12}], "directors": [{"name": "Jeff Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe4a25c3a36847f81bc99d", "profile_path": "/iFuYiBcv29IbSVMtNaYYtkA0y5X.jpg", "id": 71872}], "vote_average": 6.7, "runtime": 130}, "38199": {"poster_path": "/kRW14N0z8L7zx47rqTlXUCBSNWt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A convert to Islam sends the U.S. government a tape showing him in three nondescript storage rooms, each of which may contain a nuclear bomb set to detonate in less than a week. Helen Brody, an FBI agent in L.A., is tasked with finding the bombs while a CIA \"consultant\", known as H, interrogates the suspect who has allowed himself to be caught. The suspect, whose wife and children have left him and disappeared, seems to know exactly what the interrogation will entail. Even as H ratchets up the pressure, using torture over Brody's objection, the suspect doesn't crack. Should H do the unthinkable, and will Brody acquiesce? Is any Constitutional principle worth possible loss of life?", "video": false, "id": 38199, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Unthinkable", "tagline": "Right and Wrong no longer exist", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0914863", "adult": false, "backdrop_path": "/aGwSgTnv5n66bY6T3yo4NTFAvnt.jpg", "production_companies": [{"name": "Senator Entertainment Co", "id": 3319}, {"name": "Lleju Productions", "id": 12410}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Kimmel International", "id": 12411}, {"name": "ChubbCo Film", "id": 5683}], "release_date": "2010-06-15", "popularity": 0.961799508530771, "original_title": "Unthinkable", "budget": 15000000, "cast": [{"name": "Samuel L. Jackson", "character": "Henry Harold 'H' Humphries", "id": 2231, "credit_id": "52fe469e9251416c9105a26b", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Agent Helen Brody", "id": 530, "credit_id": "52fe469e9251416c9105a277", "cast_id": 6, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Michael Sheen", "character": "Steven Arthur Younger", "id": 3968, "credit_id": "52fe469e9251416c9105a26f", "cast_id": 4, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 2}, {"name": "Stephen Root", "character": "Charles Thompson", "id": 17401, "credit_id": "52fe469e9251416c9105a27b", "cast_id": 7, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 3}, {"name": "Lora Kojovic", "character": "Rina Humphries", "id": 120891, "credit_id": "52fe469e9251416c9105a2b3", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "Martin Donovan", "character": "Jack Saunders", "id": 42993, "credit_id": "52fe469e9251416c9105a2bb", "cast_id": 25, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 5}, {"name": "Gil Bellows", "character": "Agent Vincent", "id": 6575, "credit_id": "52fe469e9251416c9105a2b7", "cast_id": 24, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 6}, {"name": "Brandon Routh", "character": "Agent D.J Jackson", "id": 17271, "credit_id": "52fe469e9251416c9105a273", "cast_id": 5, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 7}, {"name": "Joshua Harto", "character": "Agent Phillips", "id": 34544, "credit_id": "52fe469e9251416c9105a297", "cast_id": 16, "profile_path": "/8jRaYHrZX6sZoUOOXZI1H6EQNQa.jpg", "order": 8}, {"name": "Holmes Osborne", "character": "General Paulson", "id": 1578, "credit_id": "52fe469e9251416c9105a293", "cast_id": 15, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 9}, {"name": "Michael Rose", "character": "Col. Kerkmejian", "id": 53330, "credit_id": "52fe469e9251416c9105a2ab", "cast_id": 21, "profile_path": "/zxVFWG8TIgqV01nL90mfucX83nQ.jpg", "order": 10}, {"name": "Randy Oglesby", "character": "Mr. Bradley", "id": 102567, "credit_id": "52fe469e9251416c9105a2a7", "cast_id": 20, "profile_path": "/i6Zrn7JKMnemYZysNqhkcGs9cjk.jpg", "order": 11}, {"name": "Benito Martinez", "character": "Alvarez", "id": 2137, "credit_id": "52fe469e9251416c9105a28f", "cast_id": 14, "profile_path": "/6cMiGYgjFFYY8sWITXiE0SrEnt8.jpg", "order": 12}, {"name": "Sasha Roiz", "character": "Lubitchich", "id": 6071, "credit_id": "52fe469e9251416c9105a287", "cast_id": 12, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 13}, {"name": "Dayo Ade", "character": "Winston", "id": 120889, "credit_id": "52fe469e9251416c9105a29f", "cast_id": 18, "profile_path": "/sYqnpw8Yy3iWjdw1TjzeAt9HwWG.jpg", "order": 14}, {"name": "Yara Shahidi", "character": "Katie", "id": 118372, "credit_id": "52fe469e9251416c9105a283", "cast_id": 11, "profile_path": "/v3AVrFCOGVoehv4zeyqH26rydot.jpg", "order": 15}, {"name": "Necar Zadegan", "character": "Jehan Younger", "id": 119834, "credit_id": "52fe469e9251416c9105a27f", "cast_id": 9, "profile_path": "/vf8BZpdXjOTf5NuYEIiyRQhl8di.jpg", "order": 16}, {"name": "Vincent Laresca", "character": "Agent Leandro", "id": 1983, "credit_id": "52fe469e9251416c9105a28b", "cast_id": 13, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 17}, {"name": "Geoff Meed", "character": "Young Sergent", "id": 86204, "credit_id": "52fe469e9251416c9105a29b", "cast_id": 17, "profile_path": "/rv3ClSULRuvxuQvvXpC6Ki8BAKD.jpg", "order": 18}, {"name": "Kirk B.R. Woller", "character": "Observer", "id": 6864, "credit_id": "52fe469e9251416c9105a2a3", "cast_id": 19, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 19}, {"name": "Chris McGarry", "character": "Major Pierce", "id": 120890, "credit_id": "52fe469e9251416c9105a2af", "cast_id": 22, "profile_path": "/fGQtYAn6tGudVerMn8u6USdbnkX.jpg", "order": 20}, {"name": "Jillian Bruno", "character": "Samura Younger", "id": 207672, "credit_id": "52fe469e9251416c9105a307", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Coby Seyrafi", "character": "Ali Younger", "id": 1065555, "credit_id": "52fe469e9251416c9105a30b", "cast_id": 39, "profile_path": null, "order": 22}], "directors": [{"name": "Gregor Jordan", "department": "Directing", "job": "Director", "credit_id": "52fe469e9251416c9105a261", "profile_path": "/ldjIS0AD7i4mKRqOGWj0kuebNdh.jpg", "id": 57030}], "vote_average": 6.6, "runtime": 97}, "13635": {"poster_path": "/kX572fQIR1nVfONRlp3j6htYq3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 31055440, "overview": "The early career (1959-\u201970) of outlaw Jacques Mesrine (Cassel), covering his military service in Algeria, apprenticeship with a Paris gang-lord (Depardieu), crime-spree partnership with soulmate Jeanne (De France) and escape from a tough Canadian prison.", "video": false, "id": 13635, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mesrine: Killer Instinct", "tagline": "", "vote_count": 60, "homepage": "http://www.mesrine-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/3SirYFnkQwYhAec3ugZS8BKpMbk.jpg", "poster_path": "/kFUC6s54Q8jn1eNBqs6xOGa2jeL.jpg", "id": 85945, "name": "The Mesrine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1259014", "adult": false, "backdrop_path": "/fmRdkt5PCvGYY9swmLky8xfdoKv.jpg", "production_companies": [{"name": "La Petite Reine", "id": 1992}, {"name": "Remstar Productions", "id": 4298}, {"name": "Novo RPI", "id": 1996}], "release_date": "2008-10-22", "popularity": 0.473035768753766, "original_title": "L'Instinct de mort", "budget": 0, "cast": [{"name": "Vincent Cassel", "character": "Jacques Mesrine", "id": 1925, "credit_id": "52fe45859251416c75059647", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "C\u00e9cile De France", "character": "Jeanne Schneider", "id": 17522, "credit_id": "52fe45859251416c7505964b", "cast_id": 3, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 1}, {"name": "G\u00e9rard Depardieu", "character": "Guido", "id": 16927, "credit_id": "52fe45859251416c7505964f", "cast_id": 4, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 2}, {"name": "Gilles Lellouche", "character": "Paul", "id": 54291, "credit_id": "52fe45859251416c75059653", "cast_id": 5, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 3}, {"name": "Roy Dupuis", "character": "Jean-Paul Mercier", "id": 56977, "credit_id": "52fe45859251416c75059693", "cast_id": 16, "profile_path": "/nciXJYsOO0UvIZL1HnKlBVmeyWT.jpg", "order": 4}, {"name": "Elena Anaya", "character": "Sofia", "id": 3623, "credit_id": "52fe45859251416c75059697", "cast_id": 17, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 5}, {"name": "Florence Thomassin", "character": "Sarah", "id": 66838, "credit_id": "52fe45859251416c7505969b", "cast_id": 18, "profile_path": "/dTl02iZ9mgxbXOLElidgqr79ZDX.jpg", "order": 6}, {"name": "Michel Duchaussoy", "character": "Pierre Andr\u00e9 Mesrine", "id": 19062, "credit_id": "52fe45859251416c7505969f", "cast_id": 19, "profile_path": "/AeLrVLGaXr96zCZQCo4JWiMiOZq.jpg", "order": 7}, {"name": "Abdelhafid Metalsi", "character": "Ahmed", "id": 67145, "credit_id": "52fe45859251416c750596a3", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Deano Clavet", "character": "Roger Andr\u00e9", "id": 548035, "credit_id": "52fe45859251416c750596a7", "cast_id": 21, "profile_path": "/fGFF153oy3GLRdCOp4r6ewlnp41.jpg", "order": 9}, {"name": "Ludivine Sagnier", "character": "Sylvie Jeanjacquot", "id": 4390, "credit_id": "52fe45859251416c750596ab", "cast_id": 22, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 10}], "directors": [{"name": "Jean-Fran\u00e7ois Richet", "department": "Directing", "job": "Director", "credit_id": "52fe45859251416c75059659", "profile_path": null, "id": 58324}], "vote_average": 7.5, "runtime": 113}, "70981": {"poster_path": "/idXq7NctkwoH59DRAIQlHEPtn95.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 403170142, "overview": "A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.", "video": false, "id": 70981, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Prometheus", "tagline": "The Search for Our Beginning Could Lead to Our End.", "vote_count": 2477, "homepage": "http://www.prometheus-movie.co.uk/", "belongs_to_collection": {"backdrop_path": "/cK83Pq8SJoeSTnLJucr8IWn35KF.jpg", "poster_path": "/c5PMV2IjDiCfQFX8EFv196xra1y.jpg", "id": 135416, "name": "Prometheus Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "gd", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1446714", "adult": false, "backdrop_path": "/rRhoMIqgdX9wEtRUOLsqXKkH9I0.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Twentieth Century Fox", "id": 7392}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Brandywine Productions", "id": 19747}], "release_date": "2012-06-08", "popularity": 2.49374103119471, "original_title": "Prometheus", "budget": 130000000, "cast": [{"name": "Noomi Rapace", "character": "Elizabeth Shaw", "id": 87722, "credit_id": "52fe481dc3a368484e0e9d7b", "cast_id": 5, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "David", "id": 17288, "credit_id": "52fe481dc3a368484e0e9d6b", "cast_id": 1, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Meredith Vickers", "id": 6885, "credit_id": "52fe481dc3a368484e0e9d6f", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Idris Elba", "character": "Janek", "id": 17605, "credit_id": "52fe481dc3a368484e0e9d73", "cast_id": 3, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 3}, {"name": "Guy Pearce", "character": "Peter Weyland", "id": 529, "credit_id": "52fe481dc3a368484e0e9d77", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 4}, {"name": "Logan Marshall-Green", "character": "Charlie Holloway", "id": 130253, "credit_id": "52fe481dc3a368484e0e9d7f", "cast_id": 6, "profile_path": "/bLVRAvM9WnTVQ42Nm4jVR0IpOIk.jpg", "order": 5}, {"name": "Sean Harris", "character": "Fifield", "id": 16702, "credit_id": "52fe481dc3a368484e0e9e1d", "cast_id": 42, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 6}, {"name": "Rafe Spall", "character": "Millburn", "id": 28847, "credit_id": "52fe481dc3a368484e0e9d83", "cast_id": 7, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 7}, {"name": "Emun Elliott", "character": "Chance", "id": 228968, "credit_id": "52fe481dc3a368484e0e9d8b", "cast_id": 10, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 8}, {"name": "Kate Dickie", "character": "Ford", "id": 71083, "credit_id": "52fe481dc3a368484e0e9d87", "cast_id": 9, "profile_path": "/nEcvqwrXakqhOX8fa3WZIhGAjA1.jpg", "order": 9}, {"name": "Branwell Donaghey", "character": "Mercenary 1", "id": 1074615, "credit_id": "52fe481dc3a368484e0e9e03", "cast_id": 35, "profile_path": "/kYcZAqo3cJm9lKe7I1dhZyiOYPf.jpg", "order": 10}, {"name": "Patrick Wilson", "character": "Shaw's Father", "id": 17178, "credit_id": "52fe481dc3a368484e0e9d99", "cast_id": 16, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 11}, {"name": "Vladimir Furdik", "character": "Mercenary 2", "id": 1074616, "credit_id": "52fe481dc3a368484e0e9e07", "cast_id": 36, "profile_path": "/p2Q0GW2XsLD0lH4g6tBB0gZbsgZ.jpg", "order": 12}, {"name": "Benedict Wong", "character": "Ravel", "id": 30082, "credit_id": "52fe481dc3a368484e0e9d8f", "cast_id": 11, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 13}, {"name": "C.C. Smiff", "character": "Mercenary 3", "id": 1074617, "credit_id": "52fe481dc3a368484e0e9e21", "cast_id": 43, "profile_path": "/vAtwe2ECLPbh8duZKW9BR1xggCQ.jpg", "order": 14}, {"name": "Shane Steyn", "character": "Mercenary 4", "id": 1074618, "credit_id": "52fe481dc3a368484e0e9e25", "cast_id": 44, "profile_path": "/9yv0EGeVDda19q9WTwcQEC8fFMC.jpg", "order": 15}, {"name": "Ian Whyte", "character": "Last Engineer", "id": 946696, "credit_id": "52fe481dc3a368484e0e9e29", "cast_id": 45, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 16}, {"name": "John Lebar", "character": "Ghost Engineer", "id": 938419, "credit_id": "52fe481dc3a368484e0e9e2d", "cast_id": 46, "profile_path": "/1Fvz9CmOQ1rGVB5e7yU22ls3odC.jpg", "order": 17}, {"name": "Lucy Hutchinson", "character": "Young Shaw", "id": 564941, "credit_id": "52fe481dc3a368484e0e9e31", "cast_id": 47, "profile_path": "/xTZWqaVPPXqmKGeLfYv6PgUO0sN.jpg", "order": 18}, {"name": "Anil Biltoo", "character": "Linguist Teacher", "id": 1272932, "credit_id": "52fe481dc3a368484e0e9e39", "cast_id": 49, "profile_path": "/7cIuBGHMiNTEtImsliBcI6wfmzG.jpg", "order": 19}, {"name": "Giannina Facio", "character": "Shaw's Mother", "id": 58787, "credit_id": "52fe481dc3a368484e0e9e35", "cast_id": 48, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 20}, {"name": "Louisa Staples", "character": "Greeting Message Violinist", "id": 1272933, "credit_id": "52fe481dc3a368484e0e9e3d", "cast_id": 50, "profile_path": null, "order": 21}, {"name": "James Embree", "character": "Mechanic", "id": 1390394, "credit_id": "54784a95c3a36849bd00024a", "cast_id": 104, "profile_path": null, "order": 22}, {"name": "Annie Penn", "character": "Ship Computer Voice (voice)", "id": 1390388, "credit_id": "54784abf9251416a27000330", "cast_id": 105, "profile_path": null, "order": 23}, {"name": "Robin Atkin Downes", "character": "Ship Computer Voice (voice)", "id": 130081, "credit_id": "54784b4492514103b8001c81", "cast_id": 106, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 24}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe481dc3a368484e0e9d95", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.1, "runtime": 124}, "13648": {"poster_path": "/vcduy3H9RelaER3F7jn7OGby1ws.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "A zombie attack brings chaos to Harvardville Airport. Leon Kennedy and Claire Redfield , who fought the sinister Umbrella Corporation during the Raccoon City tragedy 7 years ago, are back. In high-octane Resident Evil style, they're ready to battle a rogue warrior who is seeking revenge after his family was killed in Raccoon City. The deadly G-Virus is unleashed and a new mutated monster rampages.", "video": false, "id": 13648, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Degeneration", "tagline": "", "vote_count": 84, "homepage": "http://www.sonypictures.com/homevideo/residentevildegeneration", "belongs_to_collection": {"backdrop_path": "/24misnowJVJDEzglb0emeG1YKxI.jpg", "poster_path": "/3AbleHQeAzz8O5iGaiorfe2qbnK.jpg", "id": 133352, "name": "Resident Evil: Biohazard Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1174954", "adult": false, "backdrop_path": "/imz5ZodpQFYR9kbEmuNiJ5xvt2Q.jpg", "production_companies": [{"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Capcom", "id": 7220}], "release_date": "2008-10-18", "popularity": 0.750561765513111, "original_title": "Baiohaz\u00e2do: Dijener\u00eashon", "budget": 0, "cast": [{"name": "Alyson Court", "character": "Claire Redfield (Voice)", "id": 74951, "credit_id": "52fe45879251416c750599ef", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Paul Mercier", "character": "Leon S. Kennedy (Voice)", "id": 74953, "credit_id": "52fe45879251416c750599f3", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Laura Bailey", "character": "Angela Miller (voice)", "id": 75037, "credit_id": "52fe45879251416c750599f7", "cast_id": 5, "profile_path": "/213MerOuZFAVdMFoGaO6r3SwgZV.jpg", "order": 2}, {"name": "Roger Craig Smith", "character": "Curtis Miller (voice)", "id": 75038, "credit_id": "52fe45879251416c750599fb", "cast_id": 6, "profile_path": "/kGBdh92GpLs8gA4OaAL5JCDoTjw.jpg", "order": 3}, {"name": "Crispin Freeman", "character": "Frederic Downing (voice)", "id": 75039, "credit_id": "52fe45879251416c750599ff", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Salli Saffioti", "character": "Ingrid Hunnigan (Voice)", "id": 81378, "credit_id": "52fe45879251416c75059a03", "cast_id": 8, "profile_path": "/kN2QHQrnviJ1slercUlfRPcrJeh.jpg", "order": 5}, {"name": "Steve Blum", "character": "Greg Glenn (Voice)", "id": 81379, "credit_id": "52fe45879251416c75059a07", "cast_id": 9, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 6}, {"name": "Michelle Ruff", "character": "Rani Chawla (Voice)", "id": 81380, "credit_id": "52fe45879251416c75059a0b", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Michael Sorich", "character": "Senator Ron Davis (Voice)", "id": 61308, "credit_id": "52fe45879251416c75059a0f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Michael McConnohie", "character": "WilPharma CEO (Voice)", "id": 81381, "credit_id": "52fe45879251416c75059a13", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Kirk Thornton", "character": "President (Voice)", "id": 81382, "credit_id": "52fe45879251416c75059a17", "cast_id": 13, "profile_path": null, "order": 10}], "directors": [{"name": "Makoto Kamiya", "department": "Directing", "job": "Director", "credit_id": "52fe45879251416c750599e5", "profile_path": null, "id": 74950}], "vote_average": 6.1, "runtime": 97}, "13649": {"poster_path": "/oZ0u3CLAdSzJWAVXsHhGqzmCiNG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7000000, "overview": "The East High Wildcats are ready to have the time of their lives. Troy (Zac Efron) is thrilled when he\u2019s offered a job in a country club, but it\u2019s all part of Sharpay\u2019s (Ashley Tisdale) plot to lure him away from Gabriella (Vanessa Hudgens). How will it all turn out? All questions are answered on the night of the club\u2019s Talent Show.", "video": false, "id": 13649, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "High School Musical 2", "tagline": "", "vote_count": 134, "homepage": "http://www.disneychannel.com/highschoolmusical2", "belongs_to_collection": {"backdrop_path": "/t1mwGPJi3NkwMeyeUHr9zlQhlTo.jpg", "poster_path": "/dXIgM9sEWIkUfRH8GZUKHv1t5n.jpg", "id": 87253, "name": "High School Musical Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0810900", "adult": false, "backdrop_path": "/9csHsEuRjY9DqjbWmAU3pCI6y2o.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2007-08-17", "popularity": 0.356049290148674, "original_title": "High School Musical 2", "budget": 0, "cast": [{"name": "Zac Efron", "character": "Troy Bolton", "id": 29222, "credit_id": "52fe45879251416c75059a49", "cast_id": 5, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Gabriella Montez", "id": 67599, "credit_id": "52fe45879251416c75059a4d", "cast_id": 6, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "Ashley Tisdale", "character": "Sharpay Evans", "id": 67600, "credit_id": "52fe45879251416c75059a51", "cast_id": 7, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 2}, {"name": "Lucas Grabeel", "character": "Ryan Evans", "id": 67601, "credit_id": "52fe45879251416c75059a55", "cast_id": 8, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 3}, {"name": "Corbin Bleu", "character": "Chad Danforth", "id": 67602, "credit_id": "52fe45879251416c75059a59", "cast_id": 9, "profile_path": "/1fTGgTuAa2EdvVJEj8Vu5PGifAn.jpg", "order": 4}, {"name": "Monique Coleman", "character": "Taylor McKessie", "id": 180279, "credit_id": "544994250e0a267483002433", "cast_id": 12, "profile_path": "/phGefy73dHXXisjZi0Egb0zUS3h.jpg", "order": 5}, {"name": "Brandon Cyrus", "character": "Boy At Pool", "id": 1329572, "credit_id": "53973504c3a3684f45003d3c", "cast_id": 11, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 6}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe45879251416c75059a33", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 5.6, "runtime": 104}, "1371": {"poster_path": "/7PM9662AGMsQR9BLlNV8aLgCY1k.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124000000, "overview": "Now the world champion, Rocky Balboa is living in luxury and only fighting opponents who pose no threat to him in the ring. His lifestyle of wealth and idleness is shaken when a powerful young fighter known as Clubber Lang challenges him to a bout. After taking a pounding from Lang, the humbled champ turns to former bitter rival Apollo Creed to help him regain his form for a rematch with Lang.", "video": false, "id": 1371, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky III", "tagline": "His life is happy, his fights have seemed easy. Now a young upstart is going to make him prove just how far he can still go...", "vote_count": 223, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084602", "adult": false, "backdrop_path": "/6qYptQG2ynJANbyjjYOt4fpHfxF.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1982-05-28", "popularity": 0.919031404973126, "original_title": "Rocky III", "budget": 17000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42f0c3a36847f802e547", "cast_id": 21, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrianna \"Adrian\" Pennino Balboa", "id": 3094, "credit_id": "52fe42f0c3a36847f802e54b", "cast_id": 22, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42f0c3a36847f802e54f", "cast_id": 23, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42f0c3a36847f802e553", "cast_id": 24, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42f0c3a36847f802e557", "cast_id": 25, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42f0c3a36847f802e55b", "cast_id": 26, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "Mr. T", "character": "Clubber Lang", "id": 16619, "credit_id": "52fe42f0c3a36847f802e55f", "cast_id": 27, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 6}, {"name": "Hulk Hogan", "character": "Thunderlips", "id": 16620, "credit_id": "52fe42f0c3a36847f802e563", "cast_id": 28, "profile_path": "/jDWQ3FLbbPSIHPgfOdmuUaWWnON.jpg", "order": 7}, {"name": "Ian Fried", "character": "Rocky Junior", "id": 16621, "credit_id": "52fe42f0c3a36847f802e567", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Al Silvani", "character": "Al", "id": 16528, "credit_id": "52fe42f0c3a36847f802e56b", "cast_id": 30, "profile_path": "/tHjzbzaPTDPvkewRwmiXH0zQkdI.jpg", "order": 9}, {"name": "Wally Taylor", "character": "Clubber Lang's manager", "id": 6771, "credit_id": "52fe42f0c3a36847f802e56f", "cast_id": 31, "profile_path": "/nqUN3VZYRiuLRFflvdl50z7Qbsc.jpg", "order": 10}, {"name": "Jim Hill", "character": "Sportscaster", "id": 16622, "credit_id": "52fe42f0c3a36847f802e573", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Don Sherman", "character": "Andy", "id": 16623, "credit_id": "52fe42f0c3a36847f802e577", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Dennis James", "character": "Wrestling commentator 1", "id": 16624, "credit_id": "52fe42f0c3a36847f802e57b", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Jim Healy", "character": "Wrestling commentator 2", "id": 16625, "credit_id": "52fe42f0c3a36847f802e57f", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42f0c3a36847f802e4d1", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.4, "runtime": 99}, "177494": {"poster_path": "/nS3L07mQfcNJcisLEKgi8fWoBS1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Years after walking away from her past as a teenage private eye, Veronica Mars gets pulled back to her hometown - just in time for her high school reunion - in order to help her old flame Logan Echolls, who's embroiled in a murder mystery.", "video": false, "id": 177494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Veronica Mars", "tagline": "She thought she was out", "vote_count": 174, "homepage": "http://theveronicamarsmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2771372", "adult": false, "backdrop_path": "/s8891Ox7a5O7Gk0SbPUOY6EKiGN.jpg", "production_companies": [{"name": "Rob Thomas Productions", "id": 19019}, {"name": "Warner Bros.", "id": 6194}, {"name": "Warner Bros. Interactive Entertainment", "id": 13034}], "release_date": "2014-03-14", "popularity": 0.628323523072447, "original_title": "Veronica Mars", "budget": 0, "cast": [{"name": "Kristen Bell", "character": "Veronica Mars", "id": 40462, "credit_id": "52fe4d87c3a36847f8265c37", "cast_id": 1, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Jason Dohring", "character": "Logan Echolls", "id": 158095, "credit_id": "52fe4d87c3a36847f8265c3b", "cast_id": 2, "profile_path": "/8DrH4ERl7JPv1FXDhkAQPOYIL1S.jpg", "order": 1}, {"name": "Enrico Colantoni", "character": "Keith Mars", "id": 15029, "credit_id": "531f4da1c3a3685c56009d66", "cast_id": 22, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 2}, {"name": "Chris Lowell", "character": "Stosh \"Piz\" Piznarski", "id": 84300, "credit_id": "52fe4d87c3a36847f8265c5b", "cast_id": 12, "profile_path": "/7j5M2vrnMBE0dEHKPQECiE8WSCe.jpg", "order": 3}, {"name": "Percy Daggs III", "character": "Wallace Fennel", "id": 1180945, "credit_id": "52fe4d87c3a36847f8265c3f", "cast_id": 5, "profile_path": "/gDcFFDMIy8bxR97XNSUnUSoK7x.jpg", "order": 4}, {"name": "Tina Majorino", "character": "Cindy \"Mac\" Mackenzie", "id": 53930, "credit_id": "52fe4d87c3a36847f8265c47", "cast_id": 7, "profile_path": "/kGzCUaPddOm84cRlExLKOvZEoqP.jpg", "order": 5}, {"name": "Krysten Ritter", "character": "Gia Goodman", "id": 78080, "credit_id": "52fe4d87c3a36847f8265c43", "cast_id": 6, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 6}, {"name": "Martin Starr", "character": "Stu \"Cobb\" Cobbler", "id": 41089, "credit_id": "52fe4d87c3a36847f8265c57", "cast_id": 11, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 7}, {"name": "Gaby Hoffmann", "character": "Ruby Jetson", "id": 12930, "credit_id": "52fe4d87c3a36847f8265c63", "cast_id": 14, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 8}, {"name": "Andrea Estella", "character": "Bonnie DeVille", "id": 1301181, "credit_id": "5324d277c3a36824af001227", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Jerry O'Connell", "character": "Sheriff Dan Lamb", "id": 3035, "credit_id": "531f4dbdc3a3685c51009bda", "cast_id": 23, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 10}, {"name": "Francis Capra", "character": "Eli \"Weevil\" Navarro", "id": 17918, "credit_id": "52fe4d87c3a36847f8265c4b", "cast_id": 8, "profile_path": "/fmFbfu6OeimG24ShcEAybcsEDNz.jpg", "order": 11}, {"name": "Ryan Hansen", "character": "Dick Casablancas", "id": 78433, "credit_id": "52fe4d87c3a36847f8265c6f", "cast_id": 17, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 12}, {"name": "Brandon Hillock", "character": "Deputy Jerry Sacks", "id": 1224448, "credit_id": "5324d30dc3a36823780019f9", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Maury Sterling", "character": "Deputy Lyles", "id": 65726, "credit_id": "5324d3bac3a3685725008aac", "cast_id": 27, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 14}, {"name": "Sam Huntington", "character": "Luke Haldeman", "id": 53492, "credit_id": "52fe4d87c3a36847f8265c73", "cast_id": 18, "profile_path": "/nq7pwic6Xe6XTRzOfXjMCuUqbjt.jpg", "order": 15}, {"name": "Max Greenfield", "character": "Leo D'Amato", "id": 1213603, "credit_id": "52fe4d87c3a36847f8265c67", "cast_id": 15, "profile_path": "/f3yPmKIEjMAMNYLFCwvbWXSML34.jpg", "order": 16}, {"name": "Daran Norris", "character": "Cliff McCormack", "id": 31162, "credit_id": "531f4dd4c3a368726d00264e", "cast_id": 24, "profile_path": "/8sSi35l8BkWIbTaJcgmW2VFAgTz.jpg", "order": 17}, {"name": "Amanda Noret", "character": "Madison Sinclair", "id": 109045, "credit_id": "5324d43ac3a3684133001852", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Jonathan Chesner", "character": "Corny", "id": 1224424, "credit_id": "5324d468c3a36824b5007bfb", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Christiann Castellanos", "character": "Jade", "id": 936308, "credit_id": "5324d481c3a3683f040017f1", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Akiko Ann Morison", "character": "Mrs. Quan", "id": 1297415, "credit_id": "5324d49ec3a3683f040017f6", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Eden Sher", "character": "Penny", "id": 1214430, "credit_id": "5324d501c3a36824b5007c08", "cast_id": 32, "profile_path": "/x0ZUKUx9l3TmI1DxMeBg154Q7Ua.jpg", "order": 22}, {"name": "Christine Lakin", "character": "Susan Knight", "id": 30882, "credit_id": "52fe4d87c3a36847f8265c4f", "cast_id": 9, "profile_path": "/gjhJYhtmVKRsn5hecrQIplSP8Dd.jpg", "order": 23}, {"name": "Lisa Thornhill", "character": "Celeste Kane", "id": 47058, "credit_id": "5324d530c3a3683dbf0018a9", "cast_id": 33, "profile_path": "/AfnRDI8DUlYjutYXcDjksXDr8Jo.jpg", "order": 24}, {"name": "Charles Latibeaudiere", "character": "Himself", "id": 1301186, "credit_id": "5324d542c3a3683f04001801", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Harvey Levin", "character": "Himself", "id": 1218634, "credit_id": "5324d577c3a3683dbf0018ae", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Adam Johnson", "character": "The Low Rent DJ", "id": 107793, "credit_id": "5324d6319251410c87000d8d", "cast_id": 37, "profile_path": "/jr3cne62q08VNZu7OhSTd4FdirF.jpg", "order": 27}, {"name": "Ira Glass", "character": "Himself", "id": 210160, "credit_id": "5324d63c9251411708000d72", "cast_id": 38, "profile_path": "/12J92rMKpHjJBuW45MaBuMzMIrr.jpg", "order": 28}, {"name": "Alejandro Escovedo", "character": "Grungy Busker", "id": 1023117, "credit_id": "5324d64e9251411f850067ea", "cast_id": 39, "profile_path": "/tWnErRLtkYfjCefVe7gPyKni0PC.jpg", "order": 29}, {"name": "Larry Bates", "character": "Leonard March", "id": 177162, "credit_id": "5324d65c9251410d95000d7f", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Matthew Arkin", "character": "Doctor", "id": 164003, "credit_id": "5324d68b9251411544000d0e", "cast_id": 41, "profile_path": "/x7ab4U5xQAZlVZOxBHY3L91FqLV.jpg", "order": 31}, {"name": "Dave Allen", "character": "60-Year-Old Rocker (as Dave (Gruber) Allen)", "id": 88971, "credit_id": "5324d6ef925141652a000b0b", "cast_id": 42, "profile_path": "/rvSLaWzULGUqwieZyMJ3BNCZYTd.jpg", "order": 32}, {"name": "Eddie Jemison", "character": "JC Borden", "id": 1898, "credit_id": "5324d6ff9251411f850067f2", "cast_id": 43, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 33}, {"name": "Alex Poncio", "character": "Drunken Canadian", "id": 1046150, "credit_id": "5324d7459251411439000cee", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Helen Slayton-Hughes", "character": "Mrs. Barnes", "id": 31510, "credit_id": "5324d7579251411f850067f9", "cast_id": 45, "profile_path": "/j3KIRdFgiAyqtdsLQXxgMZO6el4.jpg", "order": 35}, {"name": "Patrick Cox", "character": "Bouncer", "id": 1301187, "credit_id": "539955cc0e0a263e36001304", "cast_id": 58, "profile_path": "/9lKuRkqi571TImeqs4iizrkmHUp.jpg", "order": 36}, {"name": "Ryan Lane", "character": "Slick Fellow Applicant", "id": 983536, "credit_id": "5324d76492514113b9000d28", "cast_id": 46, "profile_path": null, "order": 37}, {"name": "Ingo Neuhaus", "character": "Beefy Deputy", "id": 149471, "credit_id": "5324d7729251411544000d1c", "cast_id": 47, "profile_path": null, "order": 38}, {"name": "Jessica Camacho", "character": "Martina Vasquez", "id": 1030995, "credit_id": "5324d783925141652a000b14", "cast_id": 48, "profile_path": "/51pVkQBx30Pn0ScWXCtJSyVb75N.jpg", "order": 39}, {"name": "Meredith Eaton", "character": "Receptionist", "id": 172388, "credit_id": "5324d7929251411439000cf1", "cast_id": 49, "profile_path": "/22nYWyz1DxrGWyCtiJVXY6MoC2G.jpg", "order": 40}, {"name": "Robert Hallak", "character": "TV Reporter Two", "id": 165422, "credit_id": "5324d7be92514113b9000d2c", "cast_id": 50, "profile_path": null, "order": 41}, {"name": "Jamie Lee Curtis", "character": "Gayle Buckley", "id": 8944, "credit_id": "52fe4d87c3a36847f8265c53", "cast_id": 10, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 42}, {"name": "Dax Shepard", "character": "Overconfident Club Boy", "id": 51298, "credit_id": "5324d80c9251411439000cf9", "cast_id": 51, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 43}, {"name": "Jeremy Fitzgerald", "character": "'Roid Tale", "id": 126841, "credit_id": "5324d81d92514113b9000d3a", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "Dorian Kingi", "character": "Vapid Tool", "id": 62735, "credit_id": "5324d82b925141652a000b1f", "cast_id": 53, "profile_path": null, "order": 45}, {"name": "Ken Marino", "character": "Vinnie Van Lowe", "id": 77089, "credit_id": "52fe4d87c3a36847f8265c6b", "cast_id": 16, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 46}, {"name": "Kevin Sheridan", "character": "Sean Friedrich", "id": 84895, "credit_id": "5324d8a09251410c87000da4", "cast_id": 54, "profile_path": "/4BYcvbP2XcBK1j0INM0njU0c6Ox.jpg", "order": 47}, {"name": "Duane Daniels", "character": "Principal Van Clemmons", "id": 180208, "credit_id": "5324d8ba9251411708000d8c", "cast_id": 55, "profile_path": "/8OyS7vwyqCQ6smYQgMTwBw4ocbx.jpg", "order": 48}, {"name": "Mario Ardila Jr.", "character": "Punk #1", "id": 204078, "credit_id": "5324d8c79251410d95000d93", "cast_id": 56, "profile_path": "/AkudIKQ1cmuFI8P0rvQYn0Z5Zd5.jpg", "order": 49}, {"name": "Justin Long", "character": "Drunken Wingman (uncredited)", "id": 15033, "credit_id": "52fe4d87c3a36847f8265c5f", "cast_id": 13, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 50}, {"name": "James Franco", "character": "Himself (uncredited)", "id": 17051, "credit_id": "5324da51c3a3685725008b16", "cast_id": 57, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 51}], "directors": [{"name": "Rob Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4d87c3a36847f8265c7d", "profile_path": "/ksd5zcrzvyQ4RemsanCxQ9b6GvF.jpg", "id": 1224425}], "vote_average": 6.3, "runtime": 107}, "13655": {"poster_path": "/dTYrXKIJkiiDFDY8hrxXwZpDPb7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Mitchie gets a chance to attend Camp Rock, her life takes an unpredictable twist, and she learns just how important it is to be true to yourself.", "video": false, "id": 13655, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}, {"id": 10770, "name": "TV Movie"}], "title": "Camp Rock", "tagline": "", "vote_count": 69, "homepage": "http://disneychannel.com/camprock/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/kfYLaRTq2UEG31tdrvsg4JeTM4O.jpg", "id": 148055, "name": "Camp Rock Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1055366", "adult": false, "backdrop_path": "/frQfDFEEhrCQzQFpxXlvtP2h0Fo.jpg", "production_companies": [], "release_date": "2008-06-20", "popularity": 0.517948374107549, "original_title": "Camp Rock", "budget": 0, "cast": [{"name": "Demi Lovato", "character": "Mitchie Torres", "id": 85138, "credit_id": "52fe45889251416c75059bed", "cast_id": 1, "profile_path": "/bfAQFvBe2M3FifZVfFnb3joqDnO.jpg", "order": 0}, {"name": "Joe Jonas", "character": "Shane Gray", "id": 85757, "credit_id": "52fe45889251416c75059bf1", "cast_id": 2, "profile_path": "/chP0tAO3UfgmyipvNNqlGD7ctID.jpg", "order": 1}, {"name": "Maria Canals-Barrera", "character": "Connie Torres", "id": 85759, "credit_id": "52fe45889251416c75059bf5", "cast_id": 3, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 2}, {"name": "Meaghan Jette Martin", "character": "Tess Tyler", "id": 130567, "credit_id": "52fe45889251416c75059c0b", "cast_id": 7, "profile_path": "/xZAKFoELIpW8ghKEXAL17yQjyg.jpg", "order": 3}, {"name": "Alyson Stoner", "character": "Caitlyn Geller", "id": 58965, "credit_id": "52fe45889251416c75059c0f", "cast_id": 8, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 4}, {"name": "Daniel Fathers", "character": "Brown Cesario", "id": 133327, "credit_id": "52fe45889251416c75059c13", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Anna Maria Perez de Tagle", "character": "Ella", "id": 133328, "credit_id": "52fe45889251416c75059c17", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Julie Brown", "character": "Dee La Duke", "id": 40680, "credit_id": "52fe45889251416c75059c21", "cast_id": 13, "profile_path": "/8a1NwjIyjOWmYTqdj4fuxqKlzR5.jpg", "order": 7}, {"name": "Kevin Jonas", "character": "", "id": 130566, "credit_id": "52fe45889251416c75059c25", "cast_id": 14, "profile_path": "/demDxdp2PHLCaQI87LtmCHab0J4.jpg", "order": 8}, {"name": "Nick Jonas", "character": "", "id": 130565, "credit_id": "52fe45889251416c75059c29", "cast_id": 15, "profile_path": "/5xKjPntwYmTeCNaYS0w30ekyXRZ.jpg", "order": 9}], "directors": [{"name": "Matthew Diamond", "department": "Directing", "job": "Director", "credit_id": "52fe45889251416c75059bfb", "profile_path": "/5jQm4Tm1xIATDcxWBPQ5YYPoAyD.jpg", "id": 116370}], "vote_average": 5.7, "runtime": 94}, "9038": {"poster_path": "/fYUc7bKhhC3uwiFjyeRbu1USKOE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story centers on a man who is convinced that he has finally met the right girl and marries too quickly. While on his honeymoon and in the process of discovering that his new bride is a nightmare, he meets the girl of his dreams", "video": false, "id": 9038, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Heartbreak Kid", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0408839", "adult": false, "backdrop_path": "/hHpWbON0DNGTnzRuHwuvhqrndSt.jpg", "production_companies": [{"name": "Conundrum Entertainment", "id": 1156}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Radar Pictures Inc.", "id": 350}, {"name": "DreamWorks SKG", "id": 27}, {"name": "DreamWorks Pictures", "id": 7293}], "release_date": "2007-10-05", "popularity": 0.373789498937038, "original_title": "The Heartbreak Kid", "budget": 0, "cast": [{"name": "Ben Stiller", "character": "Eddie Cantrow", "id": 7399, "credit_id": "52fe44d5c3a36847f80aca07", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Lila", "id": 50463, "credit_id": "52fe44d5c3a36847f80aca0b", "cast_id": 2, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Michelle Monaghan", "character": "Miranda", "id": 11705, "credit_id": "52fe44d5c3a36847f80aca0f", "cast_id": 3, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 2}, {"name": "Jerry Stiller", "character": "Doc", "id": 26042, "credit_id": "52fe44d5c3a36847f80aca13", "cast_id": 4, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 3}, {"name": "Rob Corddry", "character": "Mac", "id": 52997, "credit_id": "52fe44d5c3a36847f80aca17", "cast_id": 5, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 4}, {"name": "Mae LaBorde", "character": "Cute Elderly Couple Diner", "id": 63217, "credit_id": "52fe44d5c3a36847f80aca51", "cast_id": 16, "profile_path": "/8AfENrZpycuHFTTMDB58jDZvNSq.jpg", "order": 5}, {"name": "Carlos Mencia", "character": "Tito", "id": 87588, "credit_id": "53bb112cc3a368661e000138", "cast_id": 17, "profile_path": "/6huOFzF9kcXaeH4UrBvew3vRRwJ.jpg", "order": 6}, {"name": "Scott Wilson", "character": "Boo", "id": 6914, "credit_id": "53bb1135c3a3686638000172", "cast_id": 18, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 7}, {"name": "Polly Holliday", "character": "Beryl", "id": 11715, "credit_id": "53bb1145c3a3686623000143", "cast_id": 19, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 8}, {"name": "Danny McBride", "character": "Martin", "id": 62862, "credit_id": "53bb1150c3a368663400015f", "cast_id": 20, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 9}, {"name": "Roy Jenkins", "character": "Buzz", "id": 1237248, "credit_id": "53bb1158c3a3686623000146", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Stephanie Courtney", "character": "Gayla", "id": 159396, "credit_id": "53bb1166c3a368662e000139", "cast_id": 22, "profile_path": "/r5pxOlIdCMJArRsRluIrQFM12nW.jpg", "order": 11}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80aca1d", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80aca23", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.6, "runtime": 116}, "111969": {"poster_path": "/wxrH3NZ4wTtHVzbquknLRRQMFWW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81071, "overview": "An acclaimed writer, his ex-wife, and their teenaged children come to terms with the complexities of love in all its forms over the course of one tumultuous year.", "video": false, "id": 111969, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Stuck in Love", "tagline": "A story about first loves and second chances.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2205697", "adult": false, "backdrop_path": "/sypQlfdD6dij70dzpQMRE4QjGVA.jpg", "production_companies": [{"name": "Informant Media", "id": 9325}], "release_date": "2012-09-09", "popularity": 0.630460688801565, "original_title": "Stuck in Love", "budget": 0, "cast": [{"name": "Greg Kinnear", "character": "William Borgens", "id": 17141, "credit_id": "52fe4b08c3a36847f81eebcb", "cast_id": 1007, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 0}, {"name": "Logan Lerman", "character": "Lou", "id": 33235, "credit_id": "52fe4b08c3a36847f81eebb7", "cast_id": 1002, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 1}, {"name": "Lily Collins", "character": "Samantha Borgens", "id": 112561, "credit_id": "52fe4b08c3a36847f81eebc3", "cast_id": 1005, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 2}, {"name": "Jennifer Connelly", "character": "Erica", "id": 6161, "credit_id": "52fe4b08c3a36847f81eebbb", "cast_id": 1003, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 3}, {"name": "Kristen Bell", "character": "Tricia", "id": 40462, "credit_id": "52fe4b08c3a36847f81eebbf", "cast_id": 1004, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 4}, {"name": "Stephen King", "character": "Himself", "id": 3027, "credit_id": "52fe4b08c3a36847f81eebc7", "cast_id": 1006, "profile_path": "/qCGKepqazqcurcD39eIiQZHLosz.jpg", "order": 5}, {"name": "Liana Liberato", "character": "Kate", "id": 60458, "credit_id": "52fe4b08c3a36847f81eebcf", "cast_id": 1008, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 6}, {"name": "Rusty Joiner", "character": "Martin", "id": 177508, "credit_id": "52fe4b08c3a36847f81eebd3", "cast_id": 1009, "profile_path": "/3NemNSqpl6ge0SUXFZVR7ISaFxi.jpg", "order": 7}, {"name": "Nat Wolff", "character": "Rusty Borgens", "id": 232006, "credit_id": "52fe4b08c3a36847f81eebd7", "cast_id": 1010, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 8}, {"name": "Patrick Schwarzenegger", "character": "Glen", "id": 1053422, "credit_id": "52fe4b08c3a36847f81eebdb", "cast_id": 1011, "profile_path": "/cUyMEVB8e2zD5UJIEW88Hb3Ejr0.jpg", "order": 9}, {"name": "Alex ter Avest", "character": "Becky", "id": 1053423, "credit_id": "52fe4b08c3a36847f81eebdf", "cast_id": 1012, "profile_path": null, "order": 10}, {"name": "Glen Powell", "character": "Glen", "id": 83271, "credit_id": "52fe4b08c3a36847f81eebe3", "cast_id": 1013, "profile_path": "/sCeY5nuPUhfwWElxNtXuwRYKMBr.jpg", "order": 11}, {"name": "Karen Malina", "character": "Funeral Relative", "id": 1053424, "credit_id": "52fe4b08c3a36847f81eebe7", "cast_id": 1014, "profile_path": null, "order": 12}, {"name": "Barbara Weetman", "character": "Diane", "id": 174158, "credit_id": "52fe4b09c3a36847f81eebeb", "cast_id": 1015, "profile_path": "/nBGWWPAMdQHLmJQ4srzPk5AofpD.jpg", "order": 13}], "directors": [{"name": "Josh Boone", "department": "Directing", "job": "Director", "credit_id": "52fe4b08c3a36847f81eebad", "profile_path": "/w7a0LNrGto3RE2sJv2OfUMXY1Tk.jpg", "id": 1053420}], "vote_average": 7.0, "runtime": 97}, "44603": {"poster_path": "/iyC8fKWncwX2d06NwUz5qbf2P1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32741596, "overview": "A supernatural thriller centered on three people -- a blue-collar American, a French journalist and a London school boy -- who are touched by death in different ways.", "video": false, "id": 44603, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Hereafter", "tagline": "Touched by death. Changed by life.", "vote_count": 143, "homepage": "http://hereafter.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1212419", "adult": false, "backdrop_path": "/hqoT9VmekkuQ9vQFPjJOzLPdPfb.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Malpaso Productions", "id": 171}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2010-10-15", "popularity": 0.656618354545646, "original_title": "Hereafter", "budget": 50000000, "cast": [{"name": "Matt Damon", "character": "George Lonegan", "id": 1892, "credit_id": "52fe4691c3a36847f8106215", "cast_id": 19, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Bryce Dallas Howard", "character": "Melanie", "id": 18997, "credit_id": "52fe4691c3a36847f810621d", "cast_id": 21, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 1}, {"name": "George McLaren", "character": "Markus/Jason", "id": 142365, "credit_id": "52fe4691c3a36847f8106209", "cast_id": 16, "profile_path": "/kDKue84plyFUaf1JwKcyZHwnXwh.jpg", "order": 2}, {"name": "Thierry Neuvic", "character": "Didier", "id": 83813, "credit_id": "52fe4691c3a36847f81061e9", "cast_id": 8, "profile_path": "/vCHCg1rA5gKc2kxn1xcgsiHo5aa.jpg", "order": 3}, {"name": "Cyndi Mayo Davis", "character": "Island Hotel Clerk", "id": 142359, "credit_id": "52fe4691c3a36847f81061ed", "cast_id": 9, "profile_path": "/eJCqlqouTVokzIYfDV64YzUWEkC.jpg", "order": 4}, {"name": "Lisa Griffiths", "character": "Stall Owner", "id": 142360, "credit_id": "52fe4691c3a36847f81061f1", "cast_id": 10, "profile_path": "/qS3c6jwj3YB0TqhCPIaqbXOaJ0f.jpg", "order": 5}, {"name": "Jessica Griffiths", "character": "Island Girl", "id": 142361, "credit_id": "52fe4691c3a36847f81061f5", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Ferguson Reid", "character": "Rescuer", "id": 142362, "credit_id": "52fe4691c3a36847f81061f9", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Derek Sakakura", "character": "Rescuer", "id": 142363, "credit_id": "52fe4691c3a36847f81061fd", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Charlie Creed-Miles", "character": "Photographer", "id": 8397, "credit_id": "52fe4691c3a36847f8106201", "cast_id": 14, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 9}, {"name": "Frankie McLaren", "character": "Markus/Jason", "id": 142364, "credit_id": "52fe4691c3a36847f8106205", "cast_id": 15, "profile_path": "/qWmefnb8IA70u6nEHf4PQgLnQp5.jpg", "order": 10}, {"name": "Lyndsey Marshal", "character": "Jackie", "id": 8442, "credit_id": "52fe4691c3a36847f810620d", "cast_id": 17, "profile_path": "/r661RpVSsy6cS7m5adhT8QFydPf.jpg", "order": 11}, {"name": "Rebekah Staton", "character": "Social Worker", "id": 78334, "credit_id": "52fe4691c3a36847f8106211", "cast_id": 18, "profile_path": "/6fyJjlVFs0puUoO2OtYz23g2HrB.jpg", "order": 12}, {"name": "C\u00e9cile De France", "character": "Marie Lelay", "id": 17522, "credit_id": "52fe4691c3a36847f8106219", "cast_id": 20, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 13}, {"name": "Jay Mohr", "character": "Billy", "id": 12217, "credit_id": "52fe4691c3a36847f8106221", "cast_id": 22, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 14}, {"name": "Richard Kind", "character": "Christos", "id": 21125, "credit_id": "52fe4691c3a36847f8106225", "cast_id": 23, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 15}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4691c3a36847f81061e5", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 5.5, "runtime": 129}, "21861": {"poster_path": "/nINXF8CgKUEFw1Q2vxNXQRknMfQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Lola, a striking teenaged girl who is on the cusp of adulthood, who longs to rush into the adult world of independence, freedom and sexual exploits, but is tenaciously held back by her mother.", "video": false, "id": 21861, "genres": [{"id": 35, "name": "Comedy"}], "title": "LOL (Laughing Out Loud)", "tagline": "", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1194616", "adult": false, "backdrop_path": "/uCfeXjn5aBTN2aHATK4mO9bbohD.jpg", "production_companies": [{"name": "Path\u00e9 Films", "id": 4959}], "release_date": "2008-06-06", "popularity": 0.275183207971927, "original_title": "LOL (Laughing Out Loud)", "budget": 0, "cast": [{"name": "Sophie Marceau", "character": "Anne", "id": 1957, "credit_id": "52fe442bc3a368484e01364b", "cast_id": 1, "profile_path": "/5pJ16f9QxzZMzcr9CpSnr6dTwGG.jpg", "order": 0}, {"name": "Christa Theret", "character": "Lola", "id": 91355, "credit_id": "52fe442bc3a368484e01364f", "cast_id": 2, "profile_path": "/zHwGQ1ybMJmqJ2bJc8nDvnVFuls.jpg", "order": 1}, {"name": "Alexandre Astier", "character": "Alain", "id": 47826, "credit_id": "52fe442bc3a368484e013653", "cast_id": 3, "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "order": 2}, {"name": "J\u00e9r\u00e9my Kapone", "character": "Ma\u00ebl", "id": 930289, "credit_id": "52fe442bc3a368484e01365d", "cast_id": 5, "profile_path": "/wwOGdez4dcmVKijPFmP7LekFraf.jpg", "order": 3}, {"name": "Marion Chabassol", "character": "Charlotte", "id": 1134004, "credit_id": "52fe442bc3a368484e013661", "cast_id": 6, "profile_path": "/3S2qzF4bjgNICZyTE39RVnTrS86.jpg", "order": 4}, {"name": "Lou Lesage", "character": "St\u00e9phane", "id": 1104340, "credit_id": "52fe442bc3a368484e013665", "cast_id": 7, "profile_path": "/qV7OgJ3rcRmwKPkgaSqnGLnb8Ni.jpg", "order": 5}, {"name": "\u00c9mile Bertherat", "character": "Paul-Henri", "id": 1134005, "credit_id": "52fe442bc3a368484e013669", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "F\u00e9lix Moati", "character": "Arthur", "id": 930288, "credit_id": "52fe442bc3a368484e01366d", "cast_id": 9, "profile_path": "/2rk1x5mXDI05ukPOqRU4nC8mi0I.jpg", "order": 7}, {"name": "Louis Sommer", "character": "Mehdi", "id": 1134006, "credit_id": "52fe442bc3a368484e013671", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Ad\u00e8le Choubard", "character": "Provence", "id": 1134007, "credit_id": "52fe442bc3a368484e013675", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jade-Rose Parker", "character": "Isabelle de Peyrefitte", "id": 587905, "credit_id": "52fe442bc3a368484e013679", "cast_id": 12, "profile_path": "/ai7I6QeYdRXHkRTuSsZ8mnNqq44.jpg", "order": 10}, {"name": "Warren Guetta", "character": "David L\u00e9vy", "id": 1134008, "credit_id": "52fe442bc3a368484e01367d", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Jocelyn Quivrin", "character": "Lucas", "id": 2970, "credit_id": "52fe442bc3a368484e013681", "cast_id": 14, "profile_path": "/bRA811QtMSH8JAu2gdZ6Cjta9Br.jpg", "order": 12}], "directors": [{"name": "Lisa Azuelos", "department": "Directing", "job": "Director", "credit_id": "52fe442bc3a368484e013659", "profile_path": "/lJCesY1XCxjJLG405fX6xLyPFHd.jpg", "id": 229568}], "vote_average": 6.6, "runtime": 103}, "13680": {"poster_path": "/v16hfzkZJj1Cs3kgNr9OLKWOlMT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144608461, "overview": "NFL quarterback Joe Kingman was living the bachelor lifestyle when one day he discovers that he has a 8-year-old daughter from a previous relationship.", "video": false, "id": 13680, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Game Plan", "tagline": "Half his size, twice the trouble ... and she's moving in.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0492956", "adult": false, "backdrop_path": "/4ms5L2HzxEeGOYKWzjcbLz9rvNx.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2007-09-28", "popularity": 0.650995037381846, "original_title": "The Game Plan", "budget": 22000000, "cast": [{"name": "Dwayne Johnson", "character": "Joe Kingman", "id": 18918, "credit_id": "52fe458a9251416c7505a1df", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Madison Pettis", "character": "Peyton Kelly", "id": 74929, "credit_id": "52fe458a9251416c7505a1e3", "cast_id": 2, "profile_path": "/lEYkyecOFfRTCftwG75aVZZVfhw.jpg", "order": 1}, {"name": "Kyra Sedgwick", "character": "Stella Peck", "id": 26467, "credit_id": "52fe458a9251416c7505a1e7", "cast_id": 3, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 2}, {"name": "Roselyn S\u00e1nchez", "character": "Monique Vasquez", "id": 41901, "credit_id": "52fe458a9251416c7505a1eb", "cast_id": 4, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 3}, {"name": "Morris Chestnut", "character": "Travis Sanders", "id": 9779, "credit_id": "52fe458a9251416c7505a1ef", "cast_id": 5, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 4}, {"name": "Hayes MacArthur", "character": "Kyle Cooper", "id": 74930, "credit_id": "52fe458a9251416c7505a1f3", "cast_id": 6, "profile_path": "/semGIgbhjhtBR0PncRzRmdttSJz.jpg", "order": 5}, {"name": "Brian J. White", "character": "Jamal Webber", "id": 31137, "credit_id": "52fe458a9251416c7505a1f7", "cast_id": 7, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 6}, {"name": "Jamal Duff", "character": "Clarence Monroe", "id": 74931, "credit_id": "52fe458a9251416c7505a1fb", "cast_id": 8, "profile_path": "/nH7XAMTsoomzS3hrciKWTVOzOlR.jpg", "order": 7}, {"name": "Paige Turco", "character": "Karen Kelly", "id": 74932, "credit_id": "52fe458a9251416c7505a1ff", "cast_id": 9, "profile_path": "/lVRiduEjilaStMw7wCWKtWaUred.jpg", "order": 8}, {"name": "Gordon Clapp", "character": "Coach Mark Maddox", "id": 26008, "credit_id": "52fe458a9251416c7505a203", "cast_id": 10, "profile_path": "/lXj4dp11IHY8pAk4yUoK83989zA.jpg", "order": 9}, {"name": "Kate Nauta", "character": "Tatianna", "id": 57346, "credit_id": "52fe458a9251416c7505a207", "cast_id": 11, "profile_path": "/2fZTljbCJm2oxVp5Eq1dm623zid.jpg", "order": 10}, {"name": "Robert Torti", "character": "Samuel Blake, Jr.", "id": 74933, "credit_id": "52fe458a9251416c7505a20b", "cast_id": 12, "profile_path": "/dPzxmVKTdMPhYiMjAbScn3peKFt.jpg", "order": 11}, {"name": "Jackie Flynn", "character": "Larry the Doorman", "id": 74934, "credit_id": "52fe458a9251416c7505a20f", "cast_id": 13, "profile_path": "/qDRdefQexpycxyvyYdl7XJw34kF.jpg", "order": 12}, {"name": "Lauren Storm", "character": "Nanny Cindy", "id": 74935, "credit_id": "52fe458a9251416c7505a213", "cast_id": 14, "profile_path": "/yJCPx1b6inJgGCHGpc1eGFvEJsa.jpg", "order": 13}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe458a9251416c7505a219", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.8, "runtime": 110}, "79218": {"poster_path": "/bBKkG54YXVTFCKeZ4a5pmRubTQg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Sid accidentally destroys Manny's heirloom Christmas rock and ends up on Santa's naughty list, he leads a hilarious quest to the North Pole to make things right and ends up making things much worse. Now it's up to Manny and his prehistoric posse to band together and save Christmas for the entire world!", "video": false, "id": 79218, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}, {"id": 10770, "name": "TV Movie"}], "title": "Ice Age: A Mammoth Christmas", "tagline": "Why am I on Santa's naughty list? Why? Why?", "vote_count": 53, "homepage": "http://www.blueskystudios.com", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2100546", "adult": false, "backdrop_path": "/y1mEaUanOhCtUmTyDrdGO1FAsc8.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2011-11-24", "popularity": 0.57932013723686, "original_title": "Ice Age: A Mammoth Christmas", "budget": 0, "cast": [{"name": "Billy Gardell", "character": "Santa", "id": 64344, "credit_id": "52fe49c7c3a368484e13f34b", "cast_id": 2, "profile_path": "/6GB2WYCGSJDPbKjjK0zot8nxJe9.jpg", "order": 0}, {"name": "Ray Romano", "character": "Manny", "id": 15757, "credit_id": "52fe49c7c3a368484e13f34f", "cast_id": 3, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Sid", "id": 5723, "credit_id": "52fe49c7c3a368484e13f353", "cast_id": 4, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Ellie", "id": 15758, "credit_id": "52fe49c7c3a368484e13f357", "cast_id": 5, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Denis Leary", "character": "Diego", "id": 5724, "credit_id": "52fe49c7c3a368484e13f35b", "cast_id": 6, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 4}], "directors": [{"name": "Karen Disher", "department": "Directing", "job": "Director", "credit_id": "52fe49c7c3a368484e13f347", "profile_path": null, "id": 87055}], "vote_average": 6.4, "runtime": 26}, "74643": {"poster_path": "/i0mpvMIIjyubXsVKug9vX0lYpnd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.", "video": false, "id": 74643, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Artist", "tagline": "", "vote_count": 325, "homepage": "http://www.warnerbros.fr/the-artist", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1655442", "adult": false, "backdrop_path": "/tr6OExnBfjLADi9OyZoW308mPAp.jpg", "production_companies": [{"name": "La Petite Reine", "id": 1992}, {"name": "Studio 37", "id": 2577}], "release_date": "2011-10-11", "popularity": 1.20166647943622, "original_title": "The Artist", "budget": 12000000, "cast": [{"name": "Jean Dujardin", "character": "George Valentin", "id": 56024, "credit_id": "52fe48d7c3a368484e10d8cb", "cast_id": 6, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 0}, {"name": "B\u00e9r\u00e9nice Bejo", "character": "Peppy Miller", "id": 82923, "credit_id": "52fe48d7c3a368484e10d8cf", "cast_id": 7, "profile_path": "/lczQWfdK8GrdcUKc6TkSD96Sr3r.jpg", "order": 1}, {"name": "John Goodman", "character": "Al Zimmer", "id": 1230, "credit_id": "52fe48d7c3a368484e10d8d3", "cast_id": 8, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "James Cromwell", "character": "Clifton", "id": 2505, "credit_id": "52fe48d7c3a368484e10d8d7", "cast_id": 9, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Penelope Ann Miller", "character": "Doris", "id": 14698, "credit_id": "52fe48d7c3a368484e10d8db", "cast_id": 10, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 4}, {"name": "Missi Pyle", "character": "Constance", "id": 1294, "credit_id": "52fe48d7c3a368484e10d8df", "cast_id": 11, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 5}, {"name": "Beth Grant", "character": "Peppy's Maid", "id": 5151, "credit_id": "52fe48d7c3a368484e10d8e3", "cast_id": 12, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 6}, {"name": "Ed Lauter", "character": "Peppy's Butler", "id": 21523, "credit_id": "52fe48d7c3a368484e10d8e7", "cast_id": 13, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 7}, {"name": "Joel Murray", "character": "Policeman Fire", "id": 155649, "credit_id": "52fe48d7c3a368484e10d8eb", "cast_id": 14, "profile_path": "/euFBBlZ7Q8clCJE3VYPutQR35R7.jpg", "order": 8}, {"name": "Bitsie Tulloch", "character": "Norma", "id": 74577, "credit_id": "52fe48d7c3a368484e10d8ef", "cast_id": 15, "profile_path": "/ckC19oA4a7ixmvruDtQsu4ZB3iA.jpg", "order": 9}, {"name": "Ken Davitian", "character": "Pawnbroker", "id": 6734, "credit_id": "52fe48d7c3a368484e10d8f3", "cast_id": 16, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 10}, {"name": "Malcolm McDowell", "character": "The Butler", "id": 56890, "credit_id": "52fe48d7c3a368484e10d8fd", "cast_id": 19, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 11}, {"name": "Basil Hoffman", "character": "Auctioneer", "id": 91369, "credit_id": "52fe48d7c3a368484e10d943", "cast_id": 31, "profile_path": "/3kIPq25xlD05KZWJa6T835mlUMc.jpg", "order": 12}, {"name": "Bill Fagerbakke", "character": "Policeman Tuxedo", "id": 34398, "credit_id": "52fe48d7c3a368484e10d947", "cast_id": 32, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 13}, {"name": "Nina Siemaszko", "character": "Admiring Woman (as Nina Siemazko)", "id": 42133, "credit_id": "52fe48d7c3a368484e10d94b", "cast_id": 33, "profile_path": "/htNzOMMh4Hys3EhTDWdJOlbtKpL.jpg", "order": 14}, {"name": "Stephen Mendillo", "character": "Set Assistant", "id": 19023, "credit_id": "52fe48d7c3a368484e10d94f", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Dash Pomerantz", "character": "Peppy's Boyfriend", "id": 1194485, "credit_id": "52fe48d7c3a368484e10d953", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Beau Nelson", "character": "Peppy's Boyfriend", "id": 1193414, "credit_id": "52fe48d7c3a368484e10d957", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Alex Holliday", "character": "Guard", "id": 1194487, "credit_id": "52fe48d7c3a368484e10d95b", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Wiley M. Pickett", "character": "Guard (as Wiley Pickett)", "id": 104191, "credit_id": "52fe48d7c3a368484e10d95f", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Ben Kurland", "character": "Audition Casting Assistant", "id": 1194488, "credit_id": "52fe48d7c3a368484e10d963", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Katie Nisa", "character": "Audition Dancer", "id": 104496, "credit_id": "52fe48d7c3a368484e10d967", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Katie Wallack", "character": "Audition Dancer (as Katie Wallick)", "id": 1194493, "credit_id": "52fe48d7c3a368484e10d96b", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Hal Landon Jr.", "character": "Napoleon", "id": 14801, "credit_id": "52fe48d7c3a368484e10d96f", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Uggie", "character": "The Dog", "id": 1353977, "credit_id": "53f1a0230e0a2675a90053c0", "cast_id": 43, "profile_path": null, "order": 24}], "directors": [{"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe48d7c3a368484e10d8bb", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}], "vote_average": 7.2, "runtime": 100}, "62838": {"poster_path": "/el1pKVogVwmE1dpbeAO1Ol6y1Vl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The lives of several couples and singles in New York intertwine over the course of New Year's Eve.", "video": false, "id": 62838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "New Year's Eve", "tagline": "The one night anything is possible.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1598822", "adult": false, "backdrop_path": "/ytraAX7JDhWF855MLa6R8gYaZ2y.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2011-12-09", "popularity": 1.0211476237591, "original_title": "New Year's Eve", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Harry", "id": 380, "credit_id": "52fe468fc3a368484e0976dd", "cast_id": 3, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Katherine Heigl", "character": "Laura Carrington", "id": 25541, "credit_id": "52fe468fc3a368484e0976e1", "cast_id": 4, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 1}, {"name": "Ashton Kutcher", "character": "Randy", "id": 18976, "credit_id": "52fe468fc3a368484e0976e5", "cast_id": 5, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 2}, {"name": "Carla Gugino", "character": "", "id": 17832, "credit_id": "52fe468fc3a368484e0976e9", "cast_id": 6, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 3}, {"name": "Lea Michele", "character": "Elise", "id": 128206, "credit_id": "52fe468fc3a368484e0976ed", "cast_id": 7, "profile_path": "/3oInWU00oD2QHOwMxyYxVOl5ZWK.jpg", "order": 4}, {"name": "Zac Efron", "character": "Paul", "id": 29222, "credit_id": "52fe468fc3a368484e0976f1", "cast_id": 8, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 5}, {"name": "Josh Duhamel", "character": "Sam", "id": 19536, "credit_id": "52fe468fc3a368484e0976f5", "cast_id": 9, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 6}, {"name": "Jessica Biel", "character": "Tess", "id": 10860, "credit_id": "52fe468fc3a368484e0976f9", "cast_id": 10, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 7}, {"name": "Halle Berry", "character": "", "id": 4587, "credit_id": "52fe468fc3a368484e0976fd", "cast_id": 11, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 8}, {"name": "Sof\u00eda Vergara", "character": "Ava", "id": 63522, "credit_id": "52fe468fc3a368484e097701", "cast_id": 12, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 9}, {"name": "Abigail Breslin", "character": "Hailey", "id": 17140, "credit_id": "52fe468fc3a368484e097705", "cast_id": 13, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 10}, {"name": "Alyssa Milano", "character": "Melanie", "id": 24967, "credit_id": "52fe468fc3a368484e097709", "cast_id": 14, "profile_path": "/s1aew8uoqK993VBU33LE5JwtOkO.jpg", "order": 11}, {"name": "Hilary Swank", "character": "Claire Morgan", "id": 448, "credit_id": "52fe468fc3a368484e09770d", "cast_id": 15, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 12}, {"name": "Sarah Jessica Parker", "character": "Kate", "id": 520, "credit_id": "52fe468fc3a368484e097711", "cast_id": 16, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 13}, {"name": "Michelle Pfeiffer", "character": "Ingrid", "id": 1160, "credit_id": "52fe468fc3a368484e097715", "cast_id": 17, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 14}, {"name": "Cary Elwes", "character": "Stan's Doctor", "id": 2130, "credit_id": "5382fc1e0e0a2624b400c283", "cast_id": 19, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 16}, {"name": "Seth Meyers", "character": "", "id": 62856, "credit_id": "5382fc5e0e0a2624b700c2fc", "cast_id": 24, "profile_path": "/pAw8sFWinnfxKe906nSYDw6UsUr.jpg", "order": 21}, {"name": "Fiona Choi", "character": "Balinese Woman - Resolution Tour", "id": 1358760, "credit_id": "5402776fc3a3682d9800250b", "cast_id": 25, "profile_path": "/vvAQXfJJ5sZO4twkRceDkxTz3w3.jpg", "order": 22}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe468fc3a368484e0976d3", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.7, "runtime": 118}, "13690": {"poster_path": "/qNkuK6f2MwKInBdsfsEUAHJjXKg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Boog and Elliot are back for more crazy adventures! After falling head over hooves in love with Giselle, Elliot's road to the alter takes a detour when Mr Weenie is kidnapped by a group of pampered pets determined to return him to his owners. Boog, Elliot, McSqizzy and the rest of the woodland creatures launch a full-scale mission to rescue their friend and soon find themselves in enemy camp...", "video": false, "id": 13690, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Open Season 2", "tagline": "This time it's pets against wilds. Wiener takes all!", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cnaLzqjxlqGMIp7AGCizfVXUhSn.jpg", "poster_path": "/ePeybVSOnCmuWrrvGEp8hzWn979.jpg", "id": 66761, "name": "Open Season Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1107365", "adult": false, "backdrop_path": "/nyPzpQ2myGLpEfnc9KDa0GUhImK.jpg", "production_companies": [{"name": "Sony Pictures Home Entertainment", "id": 5388}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Reel FX Creative Studios", "id": 2787}], "release_date": "2008-11-06", "popularity": 0.578385150205488, "original_title": "Open Season 2", "budget": 0, "cast": [{"name": "Mike Epps", "character": "Boog (Voice)", "id": 51944, "credit_id": "52fe458c9251416c7505a54b", "cast_id": 3, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 0}, {"name": "Joel McHale", "character": "Elliot (Voice)", "id": 74949, "credit_id": "52fe458c9251416c7505a54f", "cast_id": 4, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 1}, {"name": "Jane Krakowski", "character": "Giselle (Voice)", "id": 13636, "credit_id": "52fe458c9251416c7505a553", "cast_id": 5, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 2}, {"name": "Billy Connolly", "character": "McSquizzy (voice)", "id": 9188, "credit_id": "52fe458c9251416c7505a55d", "cast_id": 7, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 3}, {"name": "Crispin Glover", "character": "Fifi (voice)", "id": 1064, "credit_id": "52fe458c9251416c7505a561", "cast_id": 8, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 4}, {"name": "Steve Schirripa", "character": "Roberto (voice)", "id": 97188, "credit_id": "52fe458c9251416c7505a565", "cast_id": 9, "profile_path": "/qz3X10hyuKC0Cn4ni4SQhfWnB9I.jpg", "order": 5}, {"name": "Georgia Engel", "character": "Bobbie (voice)", "id": 52697, "credit_id": "52fe458c9251416c7505a569", "cast_id": 10, "profile_path": "/7WfD6MAZtQgT6qIthTDvYzfYj0c.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Rufus (voice)", "id": 5727, "credit_id": "52fe458c9251416c7505a56d", "cast_id": 11, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Cody Cameron", "character": "Mr. Weenie (voice)", "id": 12095, "credit_id": "52fe458c9251416c7505a571", "cast_id": 12, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 8}, {"name": "Fred Stoller", "character": "Stanley (voice)", "id": 162610, "credit_id": "52fe458c9251416c7505a575", "cast_id": 13, "profile_path": "/jLwQE3IUKRPRcriaXBbk7FsOQ6E.jpg", "order": 9}, {"name": "Olivia Hack", "character": "Charlene (voice)", "id": 116437, "credit_id": "52fe458c9251416c7505a579", "cast_id": 14, "profile_path": "/sL2ocsjvwZxbStRcYoUnnZ4G3XR.jpg", "order": 10}, {"name": "Danny Mann", "character": "Serge (voice)", "id": 52699, "credit_id": "52fe458c9251416c7505a57d", "cast_id": 15, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 11}, {"name": "Matthew W. Taylor", "character": "Deni / Buddy / Ian (voice)", "id": 144219, "credit_id": "52fe458c9251416c7505a581", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Nika Futterman", "character": "Rosie (voice)", "id": 52698, "credit_id": "52fe458c9251416c7505a585", "cast_id": 17, "profile_path": "/xHBt7N6YVvfgQJuWAJ74xLKF9Dr.jpg", "order": 13}, {"name": "Sean Mullen", "character": "Roger (voice)", "id": 144218, "credit_id": "52fe458c9251416c7505a589", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Michelle Murdocca", "character": "Maria (voice)", "id": 52700, "credit_id": "52fe458c9251416c7505a58d", "cast_id": 19, "profile_path": "/finkYD4yK5hbvXNKwiN8PToWPa2.jpg", "order": 15}, {"name": "Jacquie Barnbrook", "character": "Fifi's Owner (voice)", "id": 42291, "credit_id": "52fe458c9251416c7505a591", "cast_id": 20, "profile_path": "/5quzMDQwCHVdkoZmHuhjsgt2m6y.jpg", "order": 16}], "directors": [{"name": "Matthew O'Callaghan", "department": "Directing", "job": "Director", "credit_id": "52fe458c9251416c7505a541", "profile_path": null, "id": 61290}, {"name": "Todd Wilderman", "department": "Directing", "job": "Director", "credit_id": "52fe458c9251416c7505a547", "profile_path": null, "id": 74948}], "vote_average": 5.6, "runtime": 76}, "87421": {"poster_path": "/duoN6oNGp1emHkkhlTcY76Wz2ED.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98337295, "overview": "Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.", "video": false, "id": 87421, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Riddick", "tagline": "Survival Is His Revenge", "vote_count": 1031, "homepage": "http://www.riddick-movie.com", "belongs_to_collection": {"backdrop_path": "/xb5zyHecWA7UACdiNPXDA3m5HSY.jpg", "poster_path": "/4R2zrqk9KzgxU9UDH3yUUsENXR.jpg", "id": 2794, "name": "The Chronicles of Riddick Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1411250", "adult": false, "backdrop_path": "/bMMhbyEUudWOLOcgHORZ57LArRL.jpg", "production_companies": [{"name": "One Race Productions", "id": 1225}, {"name": "Radar Pictures", "id": 14718}, {"name": "Riddick Canada Productions", "id": 23634}], "release_date": "2013-09-06", "popularity": 3.00918728242402, "original_title": "Riddick", "budget": 38000000, "cast": [{"name": "Vin Diesel", "character": "Riddick", "id": 12835, "credit_id": "52fe49c39251416c910b810b", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Karl Urban", "character": "Lord Vaako", "id": 1372, "credit_id": "52fe49c39251416c910b810f", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 1}, {"name": "Katee Sackhoff", "character": "Dahl", "id": 51798, "credit_id": "52fe49c39251416c910b8113", "cast_id": 3, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 2}, {"name": "Jordi Moll\u00e0", "character": "Santana", "id": 31384, "credit_id": "52fe49c39251416c910b8117", "cast_id": 4, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 3}, {"name": "Bokeem Woodbine", "character": "Moss", "id": 71913, "credit_id": "52fe49c39251416c910b811b", "cast_id": 5, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 4}, {"name": "Nolan Gerard Funk", "character": "Luna", "id": 82819, "credit_id": "52fe49c39251416c910b811f", "cast_id": 7, "profile_path": "/ngXbdQRDXQRWpHgWrrjyunWMKai.jpg", "order": 5}, {"name": "Noah Danby", "character": "Nunez", "id": 172915, "credit_id": "52fe49c39251416c910b8135", "cast_id": 15, "profile_path": "/ws7b5qTz54hv6bIhi5pg8TYNSQy.jpg", "order": 6}, {"name": "Neil Napier", "character": "Rubio", "id": 105496, "credit_id": "52fe49c39251416c910b8139", "cast_id": 16, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 7}, {"name": "Keri Hilson", "character": "Santana's Prisoner", "id": 1151352, "credit_id": "52fe49c39251416c910b813d", "cast_id": 17, "profile_path": "/bmrHsGOx35pcYKXjn1aEL7sb5Rd.jpg", "order": 8}, {"name": "Dave Bautista", "character": "Diaz", "id": 543530, "credit_id": "52fe49c39251416c910b8141", "cast_id": 18, "profile_path": "/21bkLWMVWkSWy0KHrvJrfZFJ94V.jpg", "order": 9}, {"name": "Matthew Nable", "character": "Boss Johns", "id": 123879, "credit_id": "52fe49c39251416c910b8145", "cast_id": 19, "profile_path": "/yE5MHKIUreuzL5bEgh8NTN8bSYe.jpg", "order": 10}, {"name": "Andreas Apergis", "character": "Krone", "id": 102852, "credit_id": "5300c5669251416adb336bdc", "cast_id": 32, "profile_path": "/gJkFCQB8qHw5woqxyOqoqfgFqlT.jpg", "order": 11}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe49c49251416c910b8187", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}], "vote_average": 6.1, "runtime": 119}, "5503": {"poster_path": "/wT4WciVkwwcMYFZpdnaId3d14s7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368875760, "overview": "Dr. Richard Kimble, unjustly accused of murdering his wife, must find the real killer while being the target of a nationwide manhunt.", "video": false, "id": 5503, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Fugitive", "tagline": "A murdered wife. A one-armed man. An obsessed detective. The chase begins.", "vote_count": 383, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/idhUzfuEC24PTYhkWasivjoA3O0.jpg", "id": 134011, "name": "The Fugitive / U.S. Marshals Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106977", "adult": false, "backdrop_path": "/3Ysxx71oqh3ibroruBKntJH2rfu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1993-08-05", "popularity": 1.24862263437459, "original_title": "The Fugitive", "budget": 40000000, "cast": [{"name": "Harrison Ford", "character": "Dr. Kimble", "id": 3, "credit_id": "52fe440ac3a36847f807eb29", "cast_id": 2, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Samuel Gerard", "id": 2176, "credit_id": "52fe440ac3a36847f807eb2d", "cast_id": 3, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Sela Ward", "character": "Helen Kimble", "id": 6068, "credit_id": "52fe440ac3a36847f807eb31", "cast_id": 4, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Dr. Anne Eastman", "id": 1231, "credit_id": "52fe440ac3a36847f807eb35", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "Thomas Mills Wood", "character": "Newman", "id": 43772, "credit_id": "52fe440ac3a36847f807eb39", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Joe Pantoliano", "character": "Cosmo Renfro", "id": 532, "credit_id": "52fe440ac3a36847f807eb3d", "cast_id": 7, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Andreas Katsulas", "character": "Sykes", "id": 43773, "credit_id": "52fe440ac3a36847f807eb41", "cast_id": 8, "profile_path": "/z1bbvx6O7VWGrtxCFugo5aCyqMS.jpg", "order": 6}, {"name": "Jeroen Krabb\u00e9", "character": "Dr. Charles Nichols", "id": 1924, "credit_id": "52fe440ac3a36847f807eb45", "cast_id": 9, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 7}, {"name": "Daniel Roebuck", "character": "Biggs", "id": 43774, "credit_id": "52fe440ac3a36847f807eb49", "cast_id": 10, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 8}, {"name": "L. Scott Caldwell", "character": "Poole", "id": 29051, "credit_id": "52fe440ac3a36847f807eb4d", "cast_id": 11, "profile_path": "/p5W9yIDt269Tb4KMMKI8AeO4jJi.jpg", "order": 9}, {"name": "Jane Lynch", "character": "Dr. Kathy Wahlund", "id": 43775, "credit_id": "52fe440ac3a36847f807eb51", "cast_id": 12, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 10}, {"name": "Neil Flynn", "character": "Polizist", "id": 43776, "credit_id": "52fe440ac3a36847f807eb55", "cast_id": 13, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 11}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe440ac3a36847f807eb25", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.8, "runtime": 130}, "87428": {"poster_path": "/2SuDV2uwRGgvpYgTI9CKErtyro1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "While in his teens, Donny fathered a son, Todd, and raised him as a single parent up until Todd's 18th birthday. Now, after not seeing each other for years, Todd's world comes crashing down when Donny resurfaces just before Todd's wedding.", "video": false, "id": 87428, "genres": [{"id": 35, "name": "Comedy"}], "title": "That's My Boy", "tagline": "The story of a child\u2026 and his son.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1232200", "adult": false, "backdrop_path": "/hgOcs1nIrwKKEcB4roDcIAwuql8.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2012-06-15", "popularity": 0.657127228165194, "original_title": "That's My Boy", "budget": 70000000, "cast": [{"name": "Adam Sandler", "character": "Donny", "id": 19292, "credit_id": "52fe49c49251416c910b81dd", "cast_id": 3, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Mary McGarricle", "id": 4038, "credit_id": "52fe49c49251416c910b81e1", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Eva Amurri", "character": "Ms. McGarricle", "id": 56757, "credit_id": "52fe49c49251416c910b81fb", "cast_id": 12, "profile_path": "/nQiWOJKo3l9yjVNu28p5egp3Hxj.jpg", "order": 2}, {"name": "Leighton Meester", "character": "Jamie", "id": 85825, "credit_id": "52fe49c49251416c910b81e5", "cast_id": 7, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 3}, {"name": "Andy Samberg", "character": "Todd", "id": 62861, "credit_id": "52fe49c49251416c910b81e9", "cast_id": 8, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 4}, {"name": "Dan Patrick", "character": "Randall Morgan", "id": 166029, "credit_id": "52fe49c49251416c910b81f3", "cast_id": 10, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 5}, {"name": "James Caan", "character": "Father McNally", "id": 3085, "credit_id": "52fe49c49251416c910b81f7", "cast_id": 11, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "Carrie Wiita", "character": "Bridesmaid", "id": 967540, "credit_id": "532a0570c3a3681fea000407", "cast_id": 16, "profile_path": "/2QavBKpi3pgvU1OktSN0lM3HAEk.jpg", "order": 7}, {"name": "Vanilla Ice", "character": "Vanilla Ice", "id": 17338, "credit_id": "5341d2df0e0a2679a4002b8f", "cast_id": 17, "profile_path": "/zAMN2U7PM75gTheQhlWAD6ttHzb.jpg", "order": 8}, {"name": "Todd Bridges", "character": "Todd Bridges", "id": 75340, "credit_id": "5341d3050e0a2679aa002b45", "cast_id": 18, "profile_path": "/706FZ1kwFTEP1G6cTyk7ANPwfiu.jpg", "order": 9}], "directors": [{"name": "Sean Anders", "department": "Directing", "job": "Director", "credit_id": "52fe49c49251416c910b81d9", "profile_path": "/9PsLZSfLinkQJMFzxLp0pKMWkt5.jpg", "id": 74619}], "vote_average": 5.7, "runtime": 116}, "5516": {"poster_path": "/mqky2h0qDlQAZyeBwkauyRZPtiC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord: a sharp old woman.", "video": false, "id": 5516, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Ladykillers", "tagline": "The greatest criminal minds of all time have finally met their match.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0335245", "adult": false, "backdrop_path": "/nS1Vol9k3hkISYRyGK6w9bh5XP.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "The Jacobson Company", "id": 3638}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2004-03-26", "popularity": 0.749424631598972, "original_title": "The Ladykillers", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Professor G.H. Dorr", "id": 31, "credit_id": "52fe440bc3a36847f807ef5f", "cast_id": 14, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Irma P. Hall", "character": "Marva Munson", "id": 43853, "credit_id": "52fe440bc3a36847f807ef63", "cast_id": 15, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 1}, {"name": "Marlon Wayans", "character": "Gawain MacSam", "id": 9562, "credit_id": "52fe440bc3a36847f807ef67", "cast_id": 16, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 2}, {"name": "J.K. Simmons", "character": "Garth Pancake", "id": 18999, "credit_id": "52fe440bc3a36847f807ef6b", "cast_id": 17, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 3}, {"name": "Tzi Ma", "character": "The General", "id": 21629, "credit_id": "52fe440bc3a36847f807ef6f", "cast_id": 18, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 4}, {"name": "Ryan Hurst", "character": "Lump Hudson", "id": 43858, "credit_id": "52fe440bc3a36847f807ef73", "cast_id": 19, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 5}, {"name": "Diane Delano", "character": "Mountain Girl", "id": 43859, "credit_id": "52fe440bc3a36847f807ef77", "cast_id": 20, "profile_path": "/rzgAYv4C1pwwefA18LNb1ukw9FI.jpg", "order": 6}, {"name": "George Wallace", "character": "Sherriff Wyner", "id": 552139, "credit_id": "52fe440bc3a36847f807ef7f", "cast_id": 23, "profile_path": "/dlELhZZSyzTXY7IVkFzwwcfMlFU.jpg", "order": 7}, {"name": "John McConnell", "character": "Deputy Sheriff", "id": 16459, "credit_id": "52fe440bc3a36847f807ef7b", "cast_id": 22, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 8}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe440bc3a36847f807ef1f", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe440bc3a36847f807ef25", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 5.9, "runtime": 104}, "8367": {"poster_path": "/bDqqiu3yi7V5idgdei61XBairBZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 390493908, "overview": "When the dastardly Sheriff of Nottingham murders Robin's father, the legendary archer vows vengeance. To accomplish his mission, Robin joins forces with a band of exiled villagers (and comely Maid Marian), and together they battle to end the evil sheriff's reign of terror.", "video": false, "id": 8367, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Robin Hood: Prince of Thieves", "tagline": "For the good of all men, and the love of one woman, he fought to uphold justice by breaking the law.", "vote_count": 237, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102798", "adult": false, "backdrop_path": "/5WcDtLGWvV7VMBpTah1Xrw5325A.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1991-06-14", "popularity": 0.599325636206425, "original_title": "Robin Hood: Prince of Thieves", "budget": 48000000, "cast": [{"name": "Kevin Costner", "character": "Robin Hood", "id": 1269, "credit_id": "52fe44a3c3a36847f80a17d9", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Azeem", "id": 192, "credit_id": "52fe44a3c3a36847f80a17dd", "cast_id": 2, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Christian Slater", "character": "Will Scarlett", "id": 2224, "credit_id": "52fe44a3c3a36847f80a17e1", "cast_id": 3, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 2}, {"name": "Mary Elizabeth Mastrantonio", "character": "Marian", "id": 1161, "credit_id": "52fe44a3c3a36847f80a17e5", "cast_id": 4, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 3}, {"name": "Alan Rickman", "character": "Sheriff von Nottingham", "id": 4566, "credit_id": "52fe44a3c3a36847f80a17e9", "cast_id": 5, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 4}, {"name": "Geraldine McEwan", "character": "Mortianna", "id": 8326, "credit_id": "52fe44a3c3a36847f80a1823", "cast_id": 15, "profile_path": "/99RxYdI81YBS6sZO3AW6rtYlmfH.jpg", "order": 5}, {"name": "Michael McShane", "character": "Friar Tuck (as Micheal McShane)", "id": 8316, "credit_id": "52fe44a3c3a36847f80a1827", "cast_id": 16, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 6}, {"name": "Brian Blessed", "character": "Lord Locksley", "id": 8318, "credit_id": "52fe44a3c3a36847f80a182b", "cast_id": 17, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 7}, {"name": "Michael Wincott", "character": "Guy of Gisborne", "id": 7486, "credit_id": "52fe44a3c3a36847f80a182f", "cast_id": 18, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 8}, {"name": "Nick Brimble", "character": "Little John", "id": 8319, "credit_id": "52fe44a3c3a36847f80a1833", "cast_id": 19, "profile_path": "/mVp18zKRN4OjEJFwBD1i5SRMI3x.jpg", "order": 9}, {"name": "Soo Drouet", "character": "Fanny", "id": 1039998, "credit_id": "52fe44a3c3a36847f80a1837", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Sean Connery", "character": "King Richard (uncredited)", "id": 738, "credit_id": "52fe44a3c3a36847f80a183b", "cast_id": 21, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 11}, {"name": "Bryan Adams", "character": "The Balladeer (uncredited)", "id": 56683, "credit_id": "52fe44a3c3a36847f80a183f", "cast_id": 22, "profile_path": "/exOjr77iCikhWMG46IjGGStmbAG.jpg", "order": 12}], "directors": [{"name": "Kevin Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a17ef", "profile_path": "/drxXtPvCxVtw0VLn1on073OrW9s.jpg", "id": 8300}], "vote_average": 6.4, "runtime": 143}, "144789": {"poster_path": "/qMqjv4RhGkX53SysJ6yP5HCStY8.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "The film is an ensemble comedy written and directed by Pedro Almod\u00f3var. When it appears as though the end is in sight, the pilots, flight crew, and passengers of a plane heading to Mexico City look to forget the anguish of the moment and face the greatest danger, which we carry within ourselves.", "video": false, "id": 144789, "genres": [{"id": 35, "name": "Comedy"}], "title": "I'm So Excited!", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2243389", "adult": false, "backdrop_path": "/sIfz9wz5O8yApfzqNILGvwRg2ym.jpg", "production_companies": [{"name": "El Deseo S.A.", "id": 11736}], "release_date": "2013-03-08", "popularity": 0.237817238267052, "original_title": "Los amantes pasajeros", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Le\u00f3n", "id": 3131, "credit_id": "52fe4b429251416c750fd2eb", "cast_id": 6, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Jessica", "id": 955, "credit_id": "52fe4b429251416c750fd2e7", "cast_id": 5, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Javier C\u00e1mara", "character": "Joserra", "id": 1610, "credit_id": "52fe4b429251416c750fd2ff", "cast_id": 11, "profile_path": "/pbS8PFYTSh2LqODPUuygKLmytVu.jpg", "order": 2}, {"name": "Carlos Areces", "character": "Fajas", "id": 114461, "credit_id": "52fe4b429251416c750fd33b", "cast_id": 23, "profile_path": "/cFZOFofSWOZUDTprP3xMxfkunFi.jpg", "order": 3}, {"name": "Ra\u00fal Ar\u00e9valo", "character": "Ulloa", "id": 34021, "credit_id": "52fe4b429251416c750fd33f", "cast_id": 24, "profile_path": "/eFy3FCRCprRsCsaVQ63yrZJsy5W.jpg", "order": 4}, {"name": "Paz Vega", "character": "Alba", "id": 3627, "credit_id": "52fe4b429251416c750fd2ef", "cast_id": 7, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 5}, {"name": "Antonio de la Torre", "character": "\u00c1lex Acero", "id": 3483, "credit_id": "52fe4b429251416c750fd34b", "cast_id": 27, "profile_path": "/6gLwqdiKMB2s7ymeRAaHZlvGjvR.jpg", "order": 6}, {"name": "Lola Due\u00f1as", "character": "Bruna", "id": 2759, "credit_id": "52fe4b429251416c750fd2f7", "cast_id": 9, "profile_path": "/r5rHHPDV7flRGF2qQ885VsKTp5K.jpg", "order": 7}, {"name": "Hugo Silva", "character": "Benito Mor\u00f3n", "id": 112901, "credit_id": "52fe4b429251416c750fd303", "cast_id": 12, "profile_path": "/sVwz2GJptxt2ZQIuRx3zfsTHBVe.jpg", "order": 8}, {"name": "Blanca Su\u00e1rez", "character": "Ruth", "id": 106817, "credit_id": "52fe4b429251416c750fd2f3", "cast_id": 8, "profile_path": "/cJuwbx6SEdBEWqBUHZoZysyiIm8.jpg", "order": 9}, {"name": "Cecilia Roth", "character": "Norma Bosch", "id": 953, "credit_id": "52fe4b429251416c750fd2fb", "cast_id": 10, "profile_path": "/oqZ6V4dE5iztjM6bXjqyg7PkYZX.jpg", "order": 10}, {"name": "Miguel \u00c1ngel Silvestre", "character": "El novio", "id": 121689, "credit_id": "52fe4b429251416c750fd307", "cast_id": 14, "profile_path": "/kg7NGJSc8nEP5luYe2mwqDfVrPT.jpg", "order": 11}, {"name": "Laya Mart\u00ed", "character": "Novia", "id": 590299, "credit_id": "52fe4b429251416c750fd347", "cast_id": 26, "profile_path": "/wQRLsCiUcQkPUYxyTzxUQ3GewXc.jpg", "order": 12}, {"name": "Jos\u00e9 Mar\u00eda Yazpik", "character": "Infante", "id": 72128, "credit_id": "52fe4b429251416c750fd34f", "cast_id": 28, "profile_path": "/nAqoMEyfAtRbLjvREkncXYbnZeE.jpg", "order": 13}, {"name": "Guillermo Toledo", "character": "Ricardo Gal\u00e1n", "id": 27460, "credit_id": "52fe4b429251416c750fd353", "cast_id": 29, "profile_path": "/6uFnKwU9kgGZsOADnZz5G4CpLEb.jpg", "order": 14}, {"name": "Agust\u00edn Almod\u00f3var", "character": "Controlador", "id": 952, "credit_id": "52fe4b429251416c750fd357", "cast_id": 31, "profile_path": "/ooCA6ucXzgTZ1NhiwFNnzW7uRsH.jpg", "order": 15}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe4b429251416c750fd2d1", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 5.8, "runtime": 90}, "5528": {"poster_path": "/mQUHKT3XuhxzmtuCZC6NgZ70Alc.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Set in 1940's France, a new teacher at a school for disruptive boys gives hope and inspiration.", "video": false, "id": 5528, "genres": [{"id": 18, "name": "Drama"}], "title": "The Chorus", "tagline": "", "vote_count": 96, "homepage": "http://www.pathedistribution.com/accueil/filmcatalogue.php?IDFilm=498", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0372824", "adult": false, "backdrop_path": "/cBjvmFoFSF2rpu1WNsLj6VmbhQK.jpg", "production_companies": [{"name": "Galat\u00e9e Films", "id": 793}, {"name": "Path\u00e9 Renn Productions", "id": 866}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Novo Arturo Films", "id": 1168}, {"name": "Vega Film", "id": 8138}], "release_date": "2004-03-17", "popularity": 0.235964199174144, "original_title": "Les choristes", "budget": 0, "cast": [{"name": "G\u00e9rard Jugnot", "character": "Cl\u00e9ment Mathieu", "id": 21171, "credit_id": "52fe440cc3a36847f807f4f3", "cast_id": 11, "profile_path": "/xlFmLH6cGfHPKdvyoYZitfB8Txf.jpg", "order": 0}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Rachin", "id": 7693, "credit_id": "52fe440cc3a36847f807f4f7", "cast_id": 12, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 1}, {"name": "Jean-Baptiste Maunier", "character": "Pierre Morhange", "id": 43996, "credit_id": "52fe440cc3a36847f807f4fb", "cast_id": 13, "profile_path": "/AhaMIUITEAZeV8vcFYS43lVkaiC.jpg", "order": 2}, {"name": "Kad Merad", "character": "Chabert", "id": 22306, "credit_id": "52fe440cc3a36847f807f4ff", "cast_id": 14, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 3}, {"name": "Maxence Perrin", "character": "P\u00e9pinot", "id": 43997, "credit_id": "52fe440cc3a36847f807f503", "cast_id": 15, "profile_path": "/zW2xdHp5H7L8R1ed74ZReubong5.jpg", "order": 4}, {"name": "Marie Bunel", "character": "Violette Morhange", "id": 28793, "credit_id": "52fe440cc3a36847f807f507", "cast_id": 16, "profile_path": "/mN0zV9yyYwifkM8Kpywd9nJL9p6.jpg", "order": 5}, {"name": "Jean-Paul Bonnaire", "character": "P\u00e8re Maxence", "id": 43998, "credit_id": "52fe440cc3a36847f807f50b", "cast_id": 17, "profile_path": "/r0O1V4ppKvcJIaekUnZO6pZQZPF.jpg", "order": 6}, {"name": "Gr\u00e9gory Gatignol", "character": "Pascal Mondain", "id": 43999, "credit_id": "53a9d44fc3a3684d0b0001b6", "cast_id": 18, "profile_path": "/rctSbXAxJX1keEN46XeriSaYAfL.jpg", "order": 7}, {"name": "Thomas Blumenthal", "character": "Corbin", "id": 1334021, "credit_id": "53a9d47fc3a3684d100001c6", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Cyril Bernicot", "character": "Le Querrec", "id": 1334022, "credit_id": "53a9d4f30e0a2646d5000227", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Simon Fargeot", "character": "Boniface", "id": 1334023, "credit_id": "53a9d5400e0a2646d500022c", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Th\u00e9odule Carr\u00e9-Cassaigne", "character": "Leclerc", "id": 1334024, "credit_id": "53a9d5920e0a2646c8000298", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Philippe du Janerand", "character": "Monsieur Langlois", "id": 550110, "credit_id": "53a9d5df0e0a2646cc000252", "cast_id": 23, "profile_path": "/h6cm0cwVnaLu3i3KD2AOwxeinPf.jpg", "order": 12}, {"name": "Carole Weiss", "character": "La comtesse", "id": 583220, "credit_id": "53a9d6110e0a2646cf000260", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Erick Desmarestz", "character": "Le docteur Dervaux", "id": 48418, "credit_id": "53a9d6390e0a2646cf000263", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Didier Flamand", "character": "P\u00e9pinot adulte", "id": 35077, "credit_id": "53a9d65b0e0a2646d200026a", "cast_id": 26, "profile_path": "/mYIHYvT9D6tw7zxXI6f5W89kyus.jpg", "order": 15}, {"name": "Jacques Perrin", "character": "Pierre Morhange adulte", "id": 20030, "credit_id": "53a9d68b0e0a2646c500024d", "cast_id": 27, "profile_path": "/dC3hgCkcTvsrw6fKxxTegJDQRzp.jpg", "order": 16}], "directors": [{"name": "Christophe Barratier", "department": "Directing", "job": "Director", "credit_id": "52fe440cc3a36847f807f4bf", "profile_path": "/Eci3c1JhMmURu7uP8s2VxXfXOV.jpg", "id": 43993}], "vote_average": 7.4, "runtime": 93}, "38303": {"poster_path": "/8WdXpoFCEUReirxSn3SDAMXG1q5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32005248, "overview": "History -- make that high school -- may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn't change its stripes. On Marni's side is her mother, while Joanna's backed by her wealthy aunt.", "video": false, "id": 38303, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "You Again", "tagline": "What doesn't kill you... is going to marry your brother.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1414382", "adult": false, "backdrop_path": "/5UzOjubnaMZRrFYzvNrPvZFqFez.jpg", "production_companies": [{"name": "Oops Doughnuts Productions", "id": 5698}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Frontier Pictures", "id": 11837}], "release_date": "2010-09-24", "popularity": 0.703540552738685, "original_title": "You Again", "budget": 20000000, "cast": [{"name": "Kristen Bell", "character": "Marni", "id": 40462, "credit_id": "52fe46a89251416c9105b72f", "cast_id": 3, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Sigourney Weaver", "character": "Aunt Ramona", "id": 10205, "credit_id": "52fe46a89251416c9105b733", "cast_id": 4, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 1}, {"name": "Betty White", "character": "Grandma Bunny", "id": 71727, "credit_id": "52fe46a89251416c9105b737", "cast_id": 5, "profile_path": "/4cPsS3xppS2EKPwf6j4VJMzIBZ8.jpg", "order": 2}, {"name": "Kristin Chenoweth", "character": "Georgia King", "id": 52775, "credit_id": "52fe46a89251416c9105b73b", "cast_id": 6, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 3}, {"name": "Odette Annable", "character": "Joanna", "id": 51992, "credit_id": "52fe46a89251416c9105b73f", "cast_id": 7, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 4}, {"name": "Jamie Lee Curtis", "character": "Gail", "id": 8944, "credit_id": "52fe46a89251416c9105b743", "cast_id": 8, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 5}, {"name": "Christine Lakin", "character": "Taylor", "id": 30882, "credit_id": "52fe46a89251416c9105b747", "cast_id": 9, "profile_path": "/gjhJYhtmVKRsn5hecrQIplSP8Dd.jpg", "order": 6}, {"name": "Cloris Leachman", "character": "Helen", "id": 9599, "credit_id": "52fe46a89251416c9105b74b", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 7}, {"name": "James Wolk", "character": "Will", "id": 222129, "credit_id": "52fe46a89251416c9105b74f", "cast_id": 12, "profile_path": "/eMCEJTHXosfuX5hJfAM4uT5eIv7.jpg", "order": 8}, {"name": "Victor Garber", "character": "Mark", "id": 8536, "credit_id": "52fe46a89251416c9105b795", "cast_id": 24, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 9}, {"name": "Kyle Bornheimer", "character": "Tim", "id": 1215836, "credit_id": "52fe46a89251416c9105b7a1", "cast_id": 28, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 10}, {"name": "Sean Wing", "character": "Charlie", "id": 98276, "credit_id": "52fe46a89251416c9105b799", "cast_id": 26, "profile_path": "/ssK2BjuzKVeJ609RIxSqBwEB2BL.jpg", "order": 11}, {"name": "Patrick Duffy", "character": "Richie Phillips", "id": 112574, "credit_id": "52fe46a89251416c9105b79d", "cast_id": 27, "profile_path": "/yYL8sdYVTYw0ZgLnS3TDbo49Lff.jpg", "order": 12}, {"name": "Ashley Fink", "character": "Sunday", "id": 564629, "credit_id": "52fe46a89251416c9105b7a5", "cast_id": 29, "profile_path": "/xC7bgJSis5sQscRrRi0ChncOLiU.jpg", "order": 13}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe46a89251416c9105b725", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.9, "runtime": 105}, "35056": {"poster_path": "/fzzPht9KId6Ollow30jYtABhDY3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152263880, "overview": "The mild-mannered married couple Phil and Claire fear that their relationship may be falling into a stale rut. During their weekly date night, they impetuously steal a dinner reservation, which leads to a case of mistaken identity. Turns out the reservation was for a pair of thieves, and now a number of unsavory characters want Phil and Claire killed.", "video": false, "id": 35056, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "Date Night", "tagline": "One ordinary couple. One little white lie.", "vote_count": 482, "homepage": "http://www.datenight-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1279935", "adult": false, "backdrop_path": "/plnmzCMPAb3suBAUJ4Yi2NC1APA.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Media Magik Entertainment", "id": 5627}], "release_date": "2010-04-08", "popularity": 0.854593091942927, "original_title": "Date Night", "budget": 55000000, "cast": [{"name": "Steve Carell", "character": "Phil Foster", "id": 4495, "credit_id": "52fe458e9251416c91036855", "cast_id": 1, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Tina Fey", "character": "Claire Foster", "id": 56323, "credit_id": "52fe458e9251416c91036859", "cast_id": 2, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 1}, {"name": "Mark Wahlberg", "character": "Holbrooke", "id": 13240, "credit_id": "52fe458e9251416c9103685d", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 2}, {"name": "Taraji P. Henson", "character": "Detective Arroyo", "id": 40036, "credit_id": "52fe458e9251416c91036891", "cast_id": 12, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 3}, {"name": "Jimmi Simpson", "character": "Armstrong", "id": 22125, "credit_id": "52fe458e9251416c91036895", "cast_id": 13, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 4}, {"name": "William Fichtner", "character": "DA Frank Crenshaw", "id": 886, "credit_id": "52fe458e9251416c91036899", "cast_id": 14, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 5}, {"name": "Leighton Meester", "character": "Katy", "id": 85825, "credit_id": "52fe458e9251416c9103689d", "cast_id": 15, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 6}, {"name": "Kristen Wiig", "character": "Haley Sullivan", "id": 41091, "credit_id": "52fe458e9251416c910368a1", "cast_id": 16, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 7}, {"name": "Mark Ruffalo", "character": "Brad Sullivan", "id": 103, "credit_id": "52fe458e9251416c910368a5", "cast_id": 17, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 8}, {"name": "James Franco", "character": "Taste", "id": 17051, "credit_id": "52fe458e9251416c910368a9", "cast_id": 18, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 9}, {"name": "Mila Kunis", "character": "Whippit", "id": 18973, "credit_id": "52fe458e9251416c910368ad", "cast_id": 19, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 10}, {"name": "Olivia Munn", "character": "Claw Hostess", "id": 81364, "credit_id": "52fe458e9251416c910368b1", "cast_id": 20, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 11}, {"name": "Common", "character": "Collins", "id": 4238, "credit_id": "52fe458e9251416c910368b5", "cast_id": 21, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 12}, {"name": "Gal Gadot", "character": "Natanya", "id": 90633, "credit_id": "52fe458f9251416c910368b9", "cast_id": 22, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 13}, {"name": "Jon Bernthal", "character": "Young Man", "id": 19498, "credit_id": "5321b0ecc3a36824b5002053", "cast_id": 23, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 14}, {"name": "Lauren Weedman", "character": "Wendy", "id": 1375338, "credit_id": "54bb5d0392514148f0005011", "cast_id": 24, "profile_path": "/lOv2Uva44YRDvw2Ar4je2HToWID.jpg", "order": 15}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe458e9251416c91036863", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.8, "runtime": 97}, "177572": {"poster_path": "/3zQvuSAUdC3mrx9vnSEpkFX0968.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 224100000, "overview": "The special bond that develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.", "video": false, "id": 177572, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Big Hero 6", "tagline": "Balalalala", "vote_count": 1132, "homepage": "http://movies.disney.com/big-hero-6", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2245084", "adult": false, "backdrop_path": "/2BXd0t9JdVqCp9sKf6kzMkr7QjB.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2014-11-07", "popularity": 14.6797944042499, "original_title": "Big Hero 6", "budget": 165000000, "cast": [{"name": "Scott Adsit", "character": "Baymax (voice)", "id": 66580, "credit_id": "542e468fc3a3681e720017df", "cast_id": 23, "profile_path": "/8VTCE0c8RSLYsgRqA8UDPRbBvYm.jpg", "order": 0}, {"name": "Ryan Potter", "character": "Hiro Hamada (voice)", "id": 515510, "credit_id": "542e46770e0a261fd90018f1", "cast_id": 21, "profile_path": "/lKC6fdpcLaYJpDEQxitByUJQQZq.jpg", "order": 1}, {"name": "Daniel Henney", "character": "Tadashi Hamada (voice)", "id": 82093, "credit_id": "542e4682c3a36859d8001a94", "cast_id": 22, "profile_path": "/kR4h7S7ny30HaqJpe5rv88RrKYA.jpg", "order": 2}, {"name": "T.J. Miller", "character": "Fred (voice)", "id": 51990, "credit_id": "54a099a3c3a3685542008669", "cast_id": 33, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 3}, {"name": "Jamie Chung", "character": "GoGo Tomago (voice)", "id": 78324, "credit_id": "535e7927c3a36830a9005523", "cast_id": 4, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 4}, {"name": "Damon Wayans Jr.", "character": "Wasabi (voice)", "id": 87822, "credit_id": "542e4641c3a3682187001a7c", "cast_id": 18, "profile_path": "/wOYJdq19v0rnUTY9vC0BZJowQiC.jpg", "order": 5}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Honey Lemon (voice)", "id": 589162, "credit_id": "542e4631c3a36859d8001a83", "cast_id": 17, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 6}, {"name": "James Cromwell", "character": "Professor Robert Callaghan (voice)", "id": 2505, "credit_id": "542e4663c3a36859d00018d9", "cast_id": 20, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 7}, {"name": "Alan Tudyk", "character": "Alistair Krei (voice)", "id": 21088, "credit_id": "542e46560e0a261fdf00192b", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 8}, {"name": "Maya Rudolph", "character": "Aunt Cass (voice)", "id": 52792, "credit_id": "53752be80e0a263031000337", "cast_id": 5, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 9}, {"name": "Abraham Benrubi", "character": "General (voice)", "id": 21132, "credit_id": "54d69f0fc3a3683b8f002fcb", "cast_id": 34, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 10}, {"name": "Katie Lowes", "character": "Abigail (voice)", "id": 108253, "credit_id": "54d69f4a9251415f75002ceb", "cast_id": 35, "profile_path": "/yn29ZcNXEyFewrrNtcCpyBfjXnR.jpg", "order": 11}, {"name": "Billy Bush", "character": "Newscaster (voice)", "id": 287341, "credit_id": "54d69f60c3a3683b92003529", "cast_id": 36, "profile_path": "/xBomzqbPgyG7SGySt77BKEZ3KMF.jpg", "order": 12}, {"name": "Dan Gerson", "character": "Desk Sergeant (voice)", "id": 7884, "credit_id": "54d69f93c3a3683b95002f44", "cast_id": 37, "profile_path": "/fB1vefUJ9hwKewW5BafNQImsslC.jpg", "order": 13}, {"name": "Paul Briggs", "character": "Yama (voice)", "id": 1340669, "credit_id": "54d69faec3a3683b8f002fe4", "cast_id": 38, "profile_path": "/vccGfQWvG6nBaMD080uDS4Vaj26.jpg", "order": 14}, {"name": "Charlie Adler", "character": "Yokai (voice)", "id": 81178, "credit_id": "54467e05c3a368277b00285c", "cast_id": 32, "profile_path": "/eSZtf1oCn8PY3VEBclD7VkCEWS.jpg", "order": 15}, {"name": "Marcella Lentz-Pope", "character": "Additional Voices (voice)", "id": 54698, "credit_id": "542e46bf0e0a261fd90018ff", "cast_id": 25, "profile_path": "/eMxlMzKb1qRLr1fnjORhwAJCNL4.jpg", "order": 16}], "directors": [{"name": "Don Hall", "department": "Directing", "job": "Director", "credit_id": "52fe4d89c3a36847f8266145", "profile_path": null, "id": 227439}, {"name": "Chris Williams", "department": "Directing", "job": "Director", "credit_id": "53752d53c3a3681ee900021c", "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "id": 70238}], "vote_average": 8.0, "runtime": 102}, "46503": {"poster_path": "/vhK2BESu5lBskZqWCmtGaH24vDS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"All Good Things\" is a love story and murder mystery based on the most notorious unsolved murder case in New York history. The original screenplay uses newly discovered facts, court records and speculation as the foundation for an imaginative spellbinding story of family, obsession, love and loss.", "video": false, "id": 46503, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "All Good Things", "tagline": "The perfect love story. Until it became the perfect crime.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1175709", "adult": false, "backdrop_path": "/gnYou2YNreivwarZoGqf4YDgd0c.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}], "release_date": "2010-12-03", "popularity": 0.582573065502192, "original_title": "All Good Things", "budget": 0, "cast": [{"name": "Kirsten Dunst", "character": "Katie Marks", "id": 205, "credit_id": "52fe46fbc3a36847f811d41f", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "David Marks", "id": 30614, "credit_id": "52fe46fbc3a36847f811d423", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Kristen Wiig", "character": "Lauren Fleck", "id": 41091, "credit_id": "52fe46fbc3a36847f811d427", "cast_id": 4, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 2}, {"name": "Frank Langella", "character": "Sanford Marks", "id": 8924, "credit_id": "52fe46fbc3a36847f811d42b", "cast_id": 5, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 3}, {"name": "Lily Rabe", "character": "Deborah Lehrman", "id": 4888, "credit_id": "52fe46fbc3a36847f811d43b", "cast_id": 8, "profile_path": "/5qTAKNY5zTBQlDjdAb2Nq1FOhNi.jpg", "order": 4}, {"name": "Philip Baker Hall", "character": "Malvern Bump", "id": 4492, "credit_id": "52fe46fbc3a36847f811d43f", "cast_id": 9, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 5}, {"name": "Michael Esper", "character": "Daniel Marks", "id": 6183, "credit_id": "52fe46fbc3a36847f811d443", "cast_id": 10, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 6}, {"name": "Diane Venora", "character": "Janice Rizzo", "id": 6200, "credit_id": "52fe46fbc3a36847f811d447", "cast_id": 11, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 7}, {"name": "John Cullum", "character": "Richard Panatierre", "id": 53085, "credit_id": "52fe46fbc3a36847f811d44b", "cast_id": 12, "profile_path": "/9DQEL4iaQOdfsGm16mBKaMgrHQJ.jpg", "order": 8}, {"name": "Trini Alvarado", "character": "Sarah Davis", "id": 17187, "credit_id": "52fe46fbc3a36847f811d44f", "cast_id": 13, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 9}, {"name": "David Margulies", "character": "The Mayor", "id": 8875, "credit_id": "52fe46fbc3a36847f811d457", "cast_id": 15, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 11}, {"name": "Nick Offerman", "character": "Jim McCarthy", "id": 17039, "credit_id": "54b9d59e9251411d79005465", "cast_id": 16, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 12}, {"name": "Mia Dillon", "character": "Katie's Aunt", "id": 1218005, "credit_id": "5538c185c3a3687845006110", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Andrew Jarecki", "department": "Directing", "job": "Director", "credit_id": "52fe46fbc3a36847f811d41b", "profile_path": "/nMqUvLq522KDsDx6D5xOI1rDMuE.jpg", "id": 23287}], "vote_average": 6.0, "runtime": 101}, "205724": {"poster_path": "/xNYexoVAHKpm7eL0op08H5RgATw.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "PR", "name": "Puerto Rico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A company retreat on a tropical island goes terribly awry.", "video": false, "id": 205724, "genres": [{"id": 35, "name": "Comedy"}], "title": "Welcome to the Jungle", "tagline": "Unleash your inner beast!", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2193265", "adult": false, "backdrop_path": "/hAtQFystljBvSKQEinFYhxgYRl5.jpg", "production_companies": [{"name": "Private Island Trax", "id": 38506}, {"name": "The Salt Company International", "id": 25953}, {"name": "Pimienta", "id": 24513}, {"name": "120dB Films", "id": 5113}, {"name": "Stun Creative", "id": 38507}], "release_date": "2013-04-27", "popularity": 0.978403947244237, "original_title": "Welcome to the Jungle", "budget": 3500000, "cast": [{"name": "Kristen Schaal", "character": "Brenda", "id": 109869, "credit_id": "52fe4d0ec3a368484e1d4a61", "cast_id": 4, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 0}, {"name": "Megan Boone", "character": "Lisa", "id": 222141, "credit_id": "52fe4d0ec3a368484e1d4a5d", "cast_id": 3, "profile_path": "/fqCZZb33w8RhWl2GVGdWOqXBQNO.jpg", "order": 1}, {"name": "Jean-Claude Van Damme", "character": "Storm", "id": 15111, "credit_id": "52fe4d0ec3a368484e1d4a69", "cast_id": 6, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 2}, {"name": "Adam Brody", "character": "Chris", "id": 11702, "credit_id": "52fe4d0ec3a368484e1d4a59", "cast_id": 2, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "Bianca Bree", "character": "Ashley", "id": 1084848, "credit_id": "52fe4d0ec3a368484e1d4a71", "cast_id": 8, "profile_path": "/yUshICTGhQjqjbHoU3fa5AnxDWD.jpg", "order": 4}, {"name": "Rob Huebel", "character": "Phil", "id": 80595, "credit_id": "52fe4d0ec3a368484e1d4a65", "cast_id": 5, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 5}, {"name": "Aaron Takahashi", "character": "Troy", "id": 1053940, "credit_id": "52fe4d0ec3a368484e1d4a6d", "cast_id": 7, "profile_path": "/qhvi1JlCwgYOdnprP7MT9f2XZpS.jpg", "order": 6}, {"name": "Eric Edelstein", "character": "Jared", "id": 59297, "credit_id": "52fe4d0ec3a368484e1d4a75", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Robert Peters", "character": "Dale", "id": 155946, "credit_id": "52fe4d0ec3a368484e1d4a79", "cast_id": 10, "profile_path": "/9sTEon9OXhTzUL92vD4toMGEdg6.jpg", "order": 8}, {"name": "Dennis Haysbert", "character": "", "id": 352, "credit_id": "52fe4d0ec3a368484e1d4a89", "cast_id": 13, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 9}, {"name": "Aaron Takahashi", "character": "Troy", "id": 1053940, "credit_id": "52fe4d0ec3a368484e1d4a8d", "cast_id": 14, "profile_path": "/qhvi1JlCwgYOdnprP7MT9f2XZpS.jpg", "order": 10}, {"name": "Brian Tester", "character": "Senior Naval Officer", "id": 76802, "credit_id": "52fe4d0ec3a368484e1d4a91", "cast_id": 15, "profile_path": null, "order": 11}], "directors": [{"name": "Rob Meltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4d0ec3a368484e1d4a7f", "profile_path": null, "id": 1204338}], "vote_average": 5.0, "runtime": 95}, "5548": {"poster_path": "/gtGreTdzYBuQsEwTliEFdTzPleV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53000000, "overview": "In a dystopic, future crime-ridden Detroit controlled by a powerful corporation, a terminally wounded cop returns to the force as a company-owned cyborg with submerged memories haunting him.", "video": false, "id": 5548, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "RoboCop", "tagline": "Part man. Part machine. All cop. The future of law enforcement.", "vote_count": 389, "homepage": "", "belongs_to_collection": {"backdrop_path": "/azQScQWHpz5puIV4YeCcqgiT9Tn.jpg", "poster_path": "/foJBQb9oEOH0mGh77tXyoxXCfzU.jpg", "id": 5547, "name": "RoboCop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093870", "adult": false, "backdrop_path": "/cCu1TazB95Fykw3min9W0lgLNUs.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1987-07-17", "popularity": 1.07488246272677, "original_title": "RoboCop", "budget": 13000000, "cast": [{"name": "Peter Weller", "character": "RoboCop / Officer Alex J. Murphy", "id": 27811, "credit_id": "52fe440dc3a36847f807f6b5", "cast_id": 9, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Nancy Allen", "character": "Officer Anne Lewis", "id": 44038, "credit_id": "52fe440dc3a36847f807f6b9", "cast_id": 11, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 1}, {"name": "Ronny Cox", "character": "Dick Jones", "id": 780, "credit_id": "52fe440dc3a36847f807f6bd", "cast_id": 13, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 2}, {"name": "Kurtwood Smith", "character": "Clarence Boddicker", "id": 2115, "credit_id": "52fe440dc3a36847f807f6c1", "cast_id": 14, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 3}, {"name": "Miguel Ferrer", "character": "Bob Morton", "id": 15860, "credit_id": "52fe440dc3a36847f807f6c5", "cast_id": 15, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 4}, {"name": "Ray Wise", "character": "Leon Nash", "id": 6719, "credit_id": "52fe440dc3a36847f807f6c9", "cast_id": 17, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 5}, {"name": "Felton Perry", "character": "Johnson", "id": 44042, "credit_id": "52fe440dc3a36847f807f6cd", "cast_id": 18, "profile_path": "/ax2YtmbicXvsjayLtK5VUxQh8fC.jpg", "order": 6}, {"name": "Paul McCrane", "character": "Emil Antonowsky", "id": 32393, "credit_id": "52fe440dc3a36847f807f6d1", "cast_id": 19, "profile_path": "/p2GTILRmUBQCKB507Pc8CeFM5Qw.jpg", "order": 7}, {"name": "Jesse D. Goins", "character": "Joe Cox", "id": 44043, "credit_id": "52fe440dc3a36847f807f6d5", "cast_id": 20, "profile_path": "/rjNRg0SgCo31mCCYRb3NvtjFu18.jpg", "order": 8}, {"name": "Robert Doqui", "character": "Sgt. Warren Reed", "id": 30615, "credit_id": "52fe440dc3a36847f807f6d9", "cast_id": 21, "profile_path": "/gbV4NbJWrvbQzEghB9it4pVIG1c.jpg", "order": 9}, {"name": "Dan O'Herlihy", "character": "The Old Man", "id": 6836, "credit_id": "52fe440dc3a36847f807f6dd", "cast_id": 22, "profile_path": "/amXueiRr8cy4sTjb7h4W5GrKe14.jpg", "order": 10}, {"name": "Sage Parker", "character": "Tyler", "id": 194347, "credit_id": "52fe440dc3a36847f807f6e1", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Stephen Berrier", "character": "Roosevelt", "id": 999510, "credit_id": "52fe440dc3a36847f807f6e5", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "John S. Davies", "character": "Chessman", "id": 936924, "credit_id": "536f50d8c3a36839c1004590", "cast_id": 74, "profile_path": null, "order": 13}, {"name": "Tyress Allen", "character": "Starkweather", "id": 999512, "credit_id": "52fe440dc3a36847f807f6ed", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Yolanda Williams", "character": "Ramirez", "id": 999513, "credit_id": "52fe440dc3a36847f807f6f1", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ken Page", "character": "Kinsey", "id": 154878, "credit_id": "52fe440dc3a36847f807f6f5", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Charles Carroll", "character": "Bail Bondsman", "id": 60287, "credit_id": "52fe440dc3a36847f807f6f9", "cast_id": 30, "profile_path": "/5sGsNA3iVsjt3vXxNH5aK3P7toG.jpg", "order": 17}, {"name": "Gregory Poudevigne", "character": "Slimey lawyer", "id": 999514, "credit_id": "52fe440dc3a36847f807f6fd", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Gene Wolande", "character": "Prisoner", "id": 152993, "credit_id": "52fe440dc3a36847f807f701", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Neil Summers", "character": "Dougy", "id": 179188, "credit_id": "52fe440dc3a36847f807f705", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Fred Hice", "character": "Bobby", "id": 999519, "credit_id": "52fe440dc3a36847f807f709", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Edward Edwards", "character": "Manson", "id": 999520, "credit_id": "52fe440dc3a36847f807f70d", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Michael Gregory", "character": "Lieutenant Hedgecock", "id": 59221, "credit_id": "52fe440dc3a36847f807f711", "cast_id": 36, "profile_path": "/9jcib4XkMutiPe9O6e98us6WCml.jpg", "order": 23}, {"name": "Lee de Broux", "character": "Sal", "id": 106768, "credit_id": "52fe440dc3a36847f807f715", "cast_id": 37, "profile_path": "/mqrbS1epUSBe8SgV3JNz2ifkiAC.jpg", "order": 24}, {"name": "Rick Lieberman", "character": "Walker", "id": 999522, "credit_id": "52fe440dc3a36847f807f719", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Calvin Jung", "character": "Steve Minh", "id": 105312, "credit_id": "52fe440dc3a36847f807f71d", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Del Zamora", "character": "Kaplan", "id": 100062, "credit_id": "52fe440dc3a36847f807f721", "cast_id": 40, "profile_path": "/tEjPy2OihDfEhxJooR3uIjQM9Z8.jpg", "order": 27}, {"name": "Karen Radcliffe", "character": "Technician #1", "id": 194275, "credit_id": "52fe440dc3a36847f807f725", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Darryl Cox", "character": "Technician #2", "id": 97391, "credit_id": "52fe440dc3a36847f807f729", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Jerry Haynes", "character": "Dr. McNamara", "id": 2850, "credit_id": "52fe440dc3a36847f807f72d", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Bill Schockley", "character": "Creep", "id": 999536, "credit_id": "52fe440dc3a36847f807f731", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Donna Keegan", "character": "Rape victim", "id": 157969, "credit_id": "52fe440dc3a36847f807f735", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Mike Moroff", "character": "Hophead", "id": 100260, "credit_id": "52fe440dc3a36847f807f739", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Marjorie Rynearson", "character": "Grocery mom", "id": 999537, "credit_id": "52fe440dc3a36847f807f73d", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Jo Livingston", "character": "Grocery pop", "id": 999539, "credit_id": "52fe440dc3a36847f807f741", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Joan Pirkle", "character": "Barbara", "id": 193637, "credit_id": "52fe440dc3a36847f807f745", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Diane Robin", "character": "Chandra", "id": 157549, "credit_id": "52fe440dc3a36847f807f749", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Adrianne Sachs", "character": "Tammy", "id": 999540, "credit_id": "52fe440dc3a36847f807f74d", "cast_id": 51, "profile_path": null, "order": 38}, {"name": "Maarten Goslins", "character": "Salesman", "id": 192088, "credit_id": "52fe440dc3a36847f807f751", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Angie Bolling", "character": "Murphy's wife", "id": 194418, "credit_id": "52fe440dc3a36847f807f755", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Jason Levine", "character": "Murphy's son", "id": 999541, "credit_id": "52fe440dc3a36847f807f759", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "S.D. Nemeth", "character": "Bobby Snyder", "id": 44062, "credit_id": "52fe440dc3a36847f807f75d", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Bill Farmer", "character": "Justin Ballard-Watkins", "id": 84213, "credit_id": "52fe440dc3a36847f807f761", "cast_id": 56, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 43}, {"name": "Michael Hunter", "character": "Peter the Homeowner", "id": 113468, "credit_id": "52fe440dc3a36847f807f765", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Spencer Prokop", "character": "Gas station attendant", "id": 999542, "credit_id": "52fe440dc3a36847f807f769", "cast_id": 58, "profile_path": null, "order": 45}, {"name": "L.J. King", "character": "Emergency Doctor", "id": 999543, "credit_id": "52fe440dc3a36847f807f76d", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "David Packer", "character": "Emergency Doctor", "id": 86542, "credit_id": "52fe440dc3a36847f807f771", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "Leeza Gibbons", "character": "Jesse Perkins, TV announcer", "id": 44051, "credit_id": "52fe440dc3a36847f807f775", "cast_id": 61, "profile_path": "/nZOYAQ2hbLk0gnwtfuvvwokp38o.jpg", "order": 48}, {"name": "Mario Machado", "character": "Casey Wong, TV announcer", "id": 44050, "credit_id": "52fe440dc3a36847f807f779", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Laird Stuart", "character": "Cecil the Clerk", "id": 65746, "credit_id": "52fe440dc3a36847f807f7b9", "cast_id": 73, "profile_path": null, "order": 50}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe440dc3a36847f807f687", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.6, "runtime": 102}, "38317": {"poster_path": "/qVsaDvFLnGSH6WdTgatzc2nXt7e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78230732, "overview": "A comedy about a zookeeper who might be great with animals, but he doesn't know anything about the birds and the bees. The man can't find love, so he decides to quit his job at the zoo, but his animal friends try to stop him and teach him that Mother Nature knows best when it comes to love.", "video": false, "id": 38317, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Zookeeper", "tagline": "Welcome to his jungle.", "vote_count": 147, "homepage": "http://www.zookeeper-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1222817", "adult": false, "backdrop_path": "/8imTBLgQMJcfYrAGOsqVHFFXs3l.jpg", "production_companies": [{"name": "Zookeeper Productions", "id": 46221}, {"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Broken Road Productions", "id": 8000}, {"name": "Hey Eddie", "id": 46222}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2011-07-08", "popularity": 1.20363495848234, "original_title": "Zookeeper", "budget": 80000000, "cast": [{"name": "Kevin James", "character": "Griffin Keyes", "id": 32895, "credit_id": "52fe46aa9251416c9105bb29", "cast_id": 4, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 0}, {"name": "Rosario Dawson", "character": "Kate", "id": 5916, "credit_id": "52fe46aa9251416c9105bb53", "cast_id": 14, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 1}, {"name": "Sylvester Stallone", "character": "Lion (voice)", "id": 16483, "credit_id": "52fe46aa9251416c9105bb1d", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 2}, {"name": "Nick Nolte", "character": "Bernie The Gorilla", "id": 1733, "credit_id": "52fe46aa9251416c9105bb57", "cast_id": 15, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 3}, {"name": "Jon Favreau", "character": "Bear (voice)", "id": 15277, "credit_id": "52fe46aa9251416c9105bb21", "cast_id": 2, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 4}, {"name": "Adam Sandler", "character": "Monkey (voice)", "id": 19292, "credit_id": "52fe46aa9251416c9105bb25", "cast_id": 3, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 5}, {"name": "Judd Apatow", "character": "Elephant (voice)", "id": 41039, "credit_id": "52fe46aa9251416c9105bb2d", "cast_id": 5, "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "order": 6}, {"name": "Thomas Gottschalk", "character": "Fashiondesigner", "id": 38832, "credit_id": "52fe46aa9251416c9105bb43", "cast_id": 10, "profile_path": "/nEEGPc5OblVTmnCREfwP3L7qSQZ.jpg", "order": 7}, {"name": "Ken Jeong", "character": "Venom", "id": 83586, "credit_id": "52fe46aa9251416c9105bb47", "cast_id": 11, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 8}, {"name": "Donnie Wahlberg", "character": "Shane", "id": 2680, "credit_id": "52fe46aa9251416c9105bb4b", "cast_id": 12, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 9}, {"name": "Leslie Bibb", "character": "Stephanie", "id": 57451, "credit_id": "52fe46aa9251416c9105bb4f", "cast_id": 13, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 10}, {"name": "Nat Faxon", "character": "Dave", "id": 105648, "credit_id": "52fe46aa9251416c9105bb5b", "cast_id": 16, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 11}, {"name": "Cher", "character": "Janet the Lioness (voice)", "id": 38225, "credit_id": "52fe46aa9251416c9105bb5f", "cast_id": 17, "profile_path": "/nLi4qPXWEuhjc31bmbeINLVZ8zS.jpg", "order": 12}, {"name": "Joe Rogan", "character": "Gale", "id": 91609, "credit_id": "52fe46aa9251416c9105bb63", "cast_id": 18, "profile_path": "/uiUuuvsVTyFPul78eO6v9BlpZDr.jpg", "order": 13}, {"name": "Faizon Love", "character": "Bruce the Bear (voice)", "id": 62066, "credit_id": "52fe46aa9251416c9105bb67", "cast_id": 19, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 14}, {"name": "Maya Rudolph", "character": "Mollie the Giraffe (voice)", "id": 52792, "credit_id": "52fe46aa9251416c9105bb6b", "cast_id": 20, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 15}, {"name": "Bas Rutten", "character": "Sebastian the Wolf (voice)", "id": 89402, "credit_id": "52fe46aa9251416c9105bb6f", "cast_id": 21, "profile_path": "/zP3CzVPJiGmkGSxiMYQeXmpV6lM.jpg", "order": 16}, {"name": "Steffiana De La Cruz", "character": "Robin", "id": 1431853, "credit_id": "54ee5c129251417971004aa2", "cast_id": 22, "profile_path": "/s6plNtUhJj9vDyd2aWMfBSENnPj.jpg", "order": 17}, {"name": "Crystal the Monkey", "character": "Donald the Monkey", "id": 1428580, "credit_id": "550a88a0c3a368487d000e65", "cast_id": 24, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 18}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe46aa9251416c9105bb33", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 5.4, "runtime": 102}, "5550": {"poster_path": "/sJiPU5x0ch4u32KCXdqXMVuL3K1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Robocop saves the day once more. This time the half man/half robot takes on ruthless developers who want to evict some people on \"their\" land.", "video": false, "id": 5550, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "RoboCop 3", "tagline": "He's back to lay down the law.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": "/azQScQWHpz5puIV4YeCcqgiT9Tn.jpg", "poster_path": "/foJBQb9oEOH0mGh77tXyoxXCfzU.jpg", "id": 5547, "name": "RoboCop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0107978", "adult": false, "backdrop_path": "/rCe0TxpHsfEz3N4aRiQy3xYsQsN.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1993-11-05", "popularity": 0.269598506458179, "original_title": "RoboCop 3", "budget": 22000000, "cast": [{"name": "Robert John Burke", "character": "RoboCop", "id": 31512, "credit_id": "52fe440ec3a36847f807fbd1", "cast_id": 11, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 0}, {"name": "Nancy Allen", "character": "Officer Anne Lewis", "id": 44038, "credit_id": "52fe440ec3a36847f807fbfd", "cast_id": 23, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 1}, {"name": "Mario Machado", "character": "Casey Wong", "id": 44050, "credit_id": "52fe440ec3a36847f807fbd5", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Jodi Long", "character": "Nikkos Mom", "id": 44059, "credit_id": "52fe440ec3a36847f807fbdd", "cast_id": 14, "profile_path": "/1Jc60wX4lOYwRPTonHDPI8l3Msv.jpg", "order": 3}, {"name": "John Posey", "character": "Nikkos Dad", "id": 44060, "credit_id": "52fe440ec3a36847f807fbe1", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Mako", "character": "Kanemitsu", "id": 10134, "credit_id": "52fe440ec3a36847f807fbe5", "cast_id": 17, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 5}, {"name": "Rip Torn", "character": "The CEO", "id": 9626, "credit_id": "52fe440ec3a36847f807fbf5", "cast_id": 21, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 6}, {"name": "John Castle", "character": "Paul McDaggett", "id": 15198, "credit_id": "52fe440ec3a36847f807fbe9", "cast_id": 18, "profile_path": "/yXMWGwbbMB67Gt0EAFMfN4kxA8W.jpg", "order": 7}, {"name": "Edith Ivey", "character": "Eiderly Woman", "id": 44063, "credit_id": "52fe440ec3a36847f807fbf1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Remy Ryan", "character": "Nikko", "id": 44058, "credit_id": "52fe440ec3a36847f807fbd9", "cast_id": 13, "profile_path": "/byFrezFlXudQHnf1C2961DrzE1z.jpg", "order": 9}, {"name": "Bradley Whitford", "character": "Fleck", "id": 11367, "credit_id": "52fe440ec3a36847f807fbf9", "cast_id": 22, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 10}, {"name": "S.D. Nemeth", "character": "Bixby Snyder", "id": 44062, "credit_id": "52fe440ec3a36847f807fbed", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Stephen Root", "character": "Coontz", "id": 17401, "credit_id": "52fe440ec3a36847f807fc05", "cast_id": 25, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 12}, {"name": "C. C. H. Pounder", "character": "Bertha", "id": 30485, "credit_id": "52fe440ec3a36847f807fc01", "cast_id": 24, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 13}, {"name": "Robert Doqui", "character": "Sergeant Warren Reed", "id": 30615, "credit_id": "52fe440ec3a36847f807fc09", "cast_id": 26, "profile_path": "/gbV4NbJWrvbQzEghB9it4pVIG1c.jpg", "order": 14}, {"name": "Jeff Garlin", "character": "Donut Jerk", "id": 60074, "credit_id": "52fe440ec3a36847f807fc0d", "cast_id": 27, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 15}, {"name": "James Lorinz", "character": "Upset Driver", "id": 167080, "credit_id": "52fe440ec3a36847f807fc11", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Jill Hennessy", "character": "Dr. Marie Lazarus", "id": 50877, "credit_id": "536b7dba0e0a2647d800beaf", "cast_id": 29, "profile_path": "/maXA4XgLsHLFy2ww3UvI4jUK27z.jpg", "order": 17}], "directors": [{"name": "Fred Dekker", "department": "Directing", "job": "Director", "credit_id": "52fe440ec3a36847f807fb97", "profile_path": null, "id": 44056}], "vote_average": 4.2, "runtime": 104}, "5551": {"poster_path": "/3nXVQ0eHRML8xqnB2Mtz6zszYqP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000000, "overview": "Frank Corvin, \"Hawk\" Hawkins, Jerry O'Neill and Tank Sullivan were hotdog members of Project DAEDALUS, the Air Force's test program for space travel. Their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious Ikon communications satellite's orbit begins to degrade and threatens to crash into Earth.", "video": false, "id": 5551, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Space Cowboys", "tagline": "Space will never be the same.", "vote_count": 105, "homepage": "http://movies.warnerbros.com/spacecowboys/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0186566", "adult": false, "backdrop_path": "/aWx6Y7sFfJgNmDupHGajPP5HLlP.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Clipsal Films", "id": 10566}, {"name": "Mad Chance", "id": 1757}, {"name": "Malpaso Productions", "id": 171}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2000-07-31", "popularity": 0.797954410211837, "original_title": "Space Cowboys", "budget": 65000000, "cast": [{"name": "Clint Eastwood", "character": "Frank Corvin", "id": 190, "credit_id": "52fe440ec3a36847f807fc81", "cast_id": 11, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Hawk Hawkins", "id": 2176, "credit_id": "52fe440ec3a36847f807fc85", "cast_id": 12, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Jerry O`Neill", "id": 55636, "credit_id": "52fe440ec3a36847f807fc89", "cast_id": 13, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "James Garner", "character": "Tank Sullivan", "id": 16896, "credit_id": "52fe440ec3a36847f807fc8d", "cast_id": 14, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 3}, {"name": "James Cromwell", "character": "Bob Gerson", "id": 2505, "credit_id": "52fe440ec3a36847f807fc91", "cast_id": 15, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 4}, {"name": "Marcia Gay Harden", "character": "Sara Holland", "id": 4726, "credit_id": "52fe440ec3a36847f807fc95", "cast_id": 16, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 5}, {"name": "William Devane", "character": "Eugene Davis", "id": 21416, "credit_id": "52fe440ec3a36847f807fc99", "cast_id": 17, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 6}, {"name": "Loren Dean", "character": "Ethan Glance", "id": 11628, "credit_id": "52fe440ec3a36847f807fc9d", "cast_id": 18, "profile_path": "/wmRzRes0gXtlhcmkYDeLjxD1Xjq.jpg", "order": 7}, {"name": "Courtney B. Vance", "character": "Roger Hines", "id": 24047, "credit_id": "52fe440ec3a36847f807fca1", "cast_id": 19, "profile_path": "/x1kO6TTg3rnz0WAxYgmunsPaxvR.jpg", "order": 8}, {"name": "Barbara Babcock", "character": "Barbara Corvin", "id": 15746, "credit_id": "52fe440ec3a36847f807fca5", "cast_id": 20, "profile_path": "/gKQge0krT6yuh4zTOOWQlsTfRBf.jpg", "order": 9}, {"name": "Rade \u0160erbed\u017eija", "character": "General Vostov", "id": 1118, "credit_id": "52fe440ec3a36847f807fca9", "cast_id": 21, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 10}, {"name": "Blair Brown", "character": "Dr. Anne Caruthers", "id": 7571, "credit_id": "52fe440ec3a36847f807fcad", "cast_id": 22, "profile_path": "/zBMLu9wTu36i0RkQGSQ5adH6Lvu.jpg", "order": 11}, {"name": "James MacDonald", "character": "Capcom", "id": 1188456, "credit_id": "52fe440ec3a36847f807fcb1", "cast_id": 23, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 12}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe440ec3a36847f807fc47", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.5, "runtime": 130}, "38321": {"poster_path": "/pE28BDqICBPe3FgphsYSxtH6FcZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76504014, "overview": "In an alternate world, humanity and vampires have warred for centuries. After the last Vampire War, the veteran Warrior Priest lives in obscurity with other humans inside one of the Church's walled cities. When the Priest's niece is kidnapped by vampires, the Priest breaks his vows to hunt them down. He is accompanied by the niece's boyfriend, who is a wasteland sheriff, and a former Warrior Priestess.", "video": false, "id": 38321, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Priest", "tagline": "Vampire Killer", "vote_count": 222, "homepage": "http://www.priest-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0822847", "adult": false, "backdrop_path": "/7pCsrkl7yPNFU7wIuWy52wdAFQs.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "Stars Road Entertainment", "id": 8931}, {"name": "TOKYOPOP", "id": 22641}, {"name": "Buckaroo Entertainment", "id": 11250}], "release_date": "2011-05-05", "popularity": 0.796553821081546, "original_title": "Priest", "budget": 60000000, "cast": [{"name": "Paul Bettany", "character": "Priest", "id": 6162, "credit_id": "52fe46ab9251416c9105bd7d", "cast_id": 10, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 0}, {"name": "Cam Gigandet", "character": "Hicks", "id": 55086, "credit_id": "52fe46ab9251416c9105bd65", "cast_id": 3, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 1}, {"name": "Karl Urban", "character": "Black Hat", "id": 1372, "credit_id": "52fe46ab9251416c9105bd69", "cast_id": 5, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 2}, {"name": "Lily Collins", "character": "Lucy", "id": 112561, "credit_id": "52fe46ab9251416c9105bd6d", "cast_id": 6, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 3}, {"name": "Maggie Q", "character": "Priestess", "id": 21045, "credit_id": "52fe46ab9251416c9105bd81", "cast_id": 11, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 4}, {"name": "Stephen Moyer", "character": "Aaron", "id": 32203, "credit_id": "52fe46ab9251416c9105bd71", "cast_id": 7, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 5}, {"name": "M\u00e4dchen Amick", "character": "Shannon", "id": 6714, "credit_id": "52fe46ab9251416c9105bd75", "cast_id": 8, "profile_path": "/y9qpjIzfm78aPHR8wxeTo20bDyV.jpg", "order": 6}, {"name": "Christopher Plummer", "character": "Monsignor Orelas", "id": 290, "credit_id": "52fe46ab9251416c9105bd79", "cast_id": 9, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 7}, {"name": "Brad Dourif", "character": "Salesman", "id": 1370, "credit_id": "52fe46ab9251416c9105bd91", "cast_id": 14, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 8}, {"name": "Alan Dale", "character": "Monsignor Chamberlain", "id": 52760, "credit_id": "52fe46ab9251416c9105bddd", "cast_id": 27, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 9}], "directors": [{"name": "Scott Stewart", "department": "Directing", "job": "Director", "credit_id": "52fe46ab9251416c9105bd61", "profile_path": "/uFhftOKdeSRbJkOsylcJSJoaimQ.jpg", "id": 116357}], "vote_average": 5.4, "runtime": 87}, "38322": {"poster_path": "/tm2EddDwAfH79K4WAmSnvpHwoje.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83615414, "overview": "FBI agent Malcolm Turner and his 17-year-old son, Trent, go undercover at an all-girls performing arts school after Trent witnesses a murder. Posing as Big Momma and Charmaine, they must find the murderer before he finds them.", "video": false, "id": 38322, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Big Mommas: Like Father, Like Son", "tagline": "Momma's got back-up.", "vote_count": 84, "homepage": "http://www.bigmommaslikefatherlikeson.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nFJauk5E72nZNZJU4TZFCdMycYE.jpg", "id": 44979, "name": "Big Momma's House Collection"}, "original_language": "en", "status": "Post Production", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1464174", "adult": false, "backdrop_path": "/gxrLAo0uGy9uzIleogDOrPlQnFf.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2011-02-16", "popularity": 1.01972109095614, "original_title": "Big Mommas: Like Father, Like Son", "budget": 32000000, "cast": [{"name": "Portia Doubleday", "character": "Jasmine Lee", "id": 117669, "credit_id": "52fe46ab9251416c9105be05", "cast_id": 3, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Malcolm / Big Momma", "id": 78029, "credit_id": "52fe46ab9251416c9105be09", "cast_id": 4, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "Brandon T. Jackson", "character": "Trent / Charmaine", "id": 53336, "credit_id": "52fe46ab9251416c9105be0d", "cast_id": 5, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 2}, {"name": "Mari Morrow", "character": "Dance Instructor", "id": 42743, "credit_id": "52fe46ab9251416c9105be11", "cast_id": 7, "profile_path": "/fXMimR1tEki45D0e7mz789cfNHX.jpg", "order": 3}, {"name": "Faizon Love", "character": "Kurtis Kool", "id": 62066, "credit_id": "52fe46ab9251416c9105be15", "cast_id": 8, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 4}, {"name": "Ana Ortiz", "character": "Headmistress", "id": 38333, "credit_id": "52fe46ab9251416c9105be19", "cast_id": 10, "profile_path": "/ggLr90PvlHbrhcwBN2vYhUDBbxP.jpg", "order": 6}, {"name": "Steve Warren", "character": "GGSA Showcase Audience Member", "id": 123703, "credit_id": "52fe46ab9251416c9105be1d", "cast_id": 11, "profile_path": "/vITQCfJtrHbgOjl8zAFZqneUlUM.jpg", "order": 7}, {"name": "Marc John Jefferies", "character": "Rembrandt", "id": 62646, "credit_id": "52fe46ab9251416c9105be21", "cast_id": 12, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 8}, {"name": "Jessica Lucas", "character": "Haley", "id": 51989, "credit_id": "52fe46ab9251416c9105be25", "cast_id": 13, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 9}, {"name": "Emily Rios", "character": "Isabelle", "id": 211474, "credit_id": "532585679251410c87001b4c", "cast_id": 14, "profile_path": "/qOkaoTCgKPgELM1yG26ezyTkuzm.jpg", "order": 10}], "directors": [{"name": "John Whitesell", "department": "Directing", "job": "Director", "credit_id": "52fe46ab9251416c9105bdfb", "profile_path": "/9wNZkrN7DnPjGIgaVNTnlCC1fpt.jpg", "id": 61175}], "vote_average": 5.4, "runtime": 107}, "10483": {"poster_path": "/2WeQQVy9FFYX7Z60Kea8C2n7yIq.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73762516, "overview": "Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.", "video": false, "id": 10483, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Death Race", "tagline": "Get ready for a killer race.", "vote_count": 448, "homepage": "http://www.deathracemovie.net/", "belongs_to_collection": {"backdrop_path": "/cGaVuq8ZjX1UPD9wPRlzx6lP9kK.jpg", "poster_path": "/uffHLg0ekFlErCp7OkpecXkWPng.jpg", "id": 86116, "name": "Death Race Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452608", "adult": false, "backdrop_path": "/m0JIsX9SLfHLxU1q6ud3ifJjXmC.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "H2S2 Filmproduktionsgesellschaft", "id": 28121}, {"name": "Scion Films", "id": 7419}], "release_date": "2008-08-22", "popularity": 1.09552527012898, "original_title": "Death Race", "budget": 45000000, "cast": [{"name": "Jason Statham", "character": "Jensen Ames", "id": 976, "credit_id": "52fe43789251416c75011ac3", "cast_id": 12, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Joan Allen", "character": "Warden Hennessey", "id": 11148, "credit_id": "52fe43789251416c75011ac7", "cast_id": 13, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 1}, {"name": "Ian McShane", "character": "Coach", "id": 6972, "credit_id": "52fe43789251416c75011acb", "cast_id": 14, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 2}, {"name": "Tyrese Gibson", "character": "Machine Gun Joe Mason", "id": 8169, "credit_id": "52fe43789251416c75011acf", "cast_id": 15, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 3}, {"name": "Natalie Martinez", "character": "Elizabeth Case", "id": 76511, "credit_id": "52fe43789251416c75011ad3", "cast_id": 16, "profile_path": "/9F8hCTTuDfPn5DPjsSuwxaJVwT4.jpg", "order": 4}, {"name": "Max Ryan", "character": "Pachenko", "id": 21942, "credit_id": "52fe43789251416c75011ad7", "cast_id": 17, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 5}, {"name": "Jacob Vargas", "character": "Gunner", "id": 16429, "credit_id": "52fe43789251416c75011adb", "cast_id": 18, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 6}, {"name": "Jason Clarke", "character": "Guard Ulrich", "id": 76512, "credit_id": "52fe43789251416c75011adf", "cast_id": 19, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 7}, {"name": "Fred Koehler", "character": "Lists", "id": 76513, "credit_id": "52fe43789251416c75011ae3", "cast_id": 20, "profile_path": "/f52RmqmKKbHS9JFb2sJ28dnyaUr.jpg", "order": 8}, {"name": "Justin Mader", "character": "Travis Colt", "id": 76514, "credit_id": "52fe43789251416c75011ae7", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Robert LaSardo", "character": "Hector Grimm", "id": 65831, "credit_id": "52fe43789251416c75011aeb", "cast_id": 22, "profile_path": "/wyV4nxnRJFtVTkaZ4Cq8eoMV63Y.jpg", "order": 10}, {"name": "Robin Shou", "character": "14K", "id": 57250, "credit_id": "52fe43789251416c75011aef", "cast_id": 23, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 11}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43789251416c75011a83", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.9, "runtime": 105}, "5559": {"poster_path": "/QhbOzpYfBOwrRiuTu9otPk919R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 287594577, "overview": "Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.", "video": false, "id": 5559, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Bee Movie", "tagline": "Born to bee wild.", "vote_count": 400, "homepage": "http://www.beemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0389790", "adult": false, "backdrop_path": "/eKXTOIqSFrfN8WTTxrzHMBNiUpB.jpg", "production_companies": [{"name": "Columbus 81 Productions", "id": 1903}, {"name": "DreamWorks Animation", "id": 521}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2007-10-28", "popularity": 0.954235968734339, "original_title": "Bee Movie", "budget": 150000000, "cast": [{"name": "Jerry Seinfeld", "character": "Barry B. Benson", "id": 16377, "credit_id": "52fe440fc3a36847f807feaf", "cast_id": 19, "profile_path": "/cAsXoVf0UmotNUjMggHMnmAj8w.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Vanessa Bloome", "id": 9137, "credit_id": "52fe440fc3a36847f807feb3", "cast_id": 20, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Matthew Broderick", "character": "Adam Flayman", "id": 4756, "credit_id": "52fe440fc3a36847f807feb7", "cast_id": 21, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 2}, {"name": "Patrick Warburton", "character": "Ken", "id": 9657, "credit_id": "52fe440fc3a36847f807febb", "cast_id": 22, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 3}, {"name": "John Goodman", "character": "Layton T. Montgomery", "id": 1230, "credit_id": "52fe440fc3a36847f807febf", "cast_id": 23, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "Chris Rock", "character": "Mooseblood", "id": 2632, "credit_id": "52fe440fc3a36847f807fec3", "cast_id": 24, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Janet Benson", "id": 8534, "credit_id": "52fe440fc3a36847f807fec7", "cast_id": 25, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "Barry Levinson", "character": "Martin Benson", "id": 8246, "credit_id": "52fe440fc3a36847f807fecb", "cast_id": 26, "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "order": 7}, {"name": "Larry King", "character": "Bee Larry King", "id": 44127, "credit_id": "52fe440fc3a36847f807fecf", "cast_id": 27, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 8}, {"name": "Ray Liotta", "character": "Ray Liotta", "id": 11477, "credit_id": "52fe440fc3a36847f807fed3", "cast_id": 28, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 9}, {"name": "Sting", "character": "Sting", "id": 982, "credit_id": "52fe440fc3a36847f807fed7", "cast_id": 29, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 10}, {"name": "Oprah Winfrey", "character": "Judge Bumbleton", "id": 13309, "credit_id": "52fe440fc3a36847f807fedb", "cast_id": 30, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 11}, {"name": "Larry Miller", "character": "Buzzwell", "id": 1211, "credit_id": "52fe440fc3a36847f807fedf", "cast_id": 31, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 12}, {"name": "Rip Torn", "character": "Lou Lo Duca", "id": 9626, "credit_id": "52fe440fc3a36847f807fee3", "cast_id": 32, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 13}, {"name": "Sting", "character": "Sting", "id": 982, "credit_id": "52fe440fc3a36847f807fee7", "cast_id": 33, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 14}, {"name": "Megan Mullally", "character": "Trudy", "id": 52119, "credit_id": "52fe440fc3a36847f807feeb", "cast_id": 34, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 15}, {"name": "John Di Maggio", "character": "Janitor / Bailiff", "id": 31531, "credit_id": "52fe440fc3a36847f807feef", "cast_id": 35, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 16}], "directors": [{"name": "Steve Hickner", "department": "Directing", "job": "Director", "credit_id": "52fe440fc3a36847f807fe45", "profile_path": "/3pI5lLmKJCeHJ6t0zZYhDjxfiEi.jpg", "id": 44113}, {"name": "Simon J. Smith", "department": "Directing", "job": "Director", "credit_id": "52fe440fc3a36847f807fe4b", "profile_path": "/bCbQtXtrOuKpPLdbSLn72KlYc2Z.jpg", "id": 44114}], "vote_average": 5.7, "runtime": 91}, "46529": {"poster_path": "/adgjVW0rtZ3fO00hoY71cDogzwE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144492830, "overview": "A teenage fugitive with an incredible secret races to stay one step ahead of the mysterious forces seeking destroy him in this sci-fi action thriller. With three dead and one on the run, the race to find the elusive Number Four begins. Outwardly normal teen John Smith never gets too comfortable in the same identity, and along with his guardian, Henri, he is constantly moving from town to town. With each passing day, John gains a stronger grasp on his extraordinary new powers, and his bond to the beings that share his fantastic fate grows stronger.", "video": false, "id": 46529, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "I Am Number Four", "tagline": "Three like him have already been killed\u2026he is Number Four.", "vote_count": 518, "homepage": "http://www.findnumberfour.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1464540", "adult": false, "backdrop_path": "/b6rXH9f1UMP01qtyN5LiBX4ubIU.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance BIG Entertainment", "id": 6733}, {"name": "Bay Films", "id": 6734}], "release_date": "2011-02-18", "popularity": 0.990406820528536, "original_title": "I Am Number Four", "budget": 50000000, "cast": [{"name": "Alex Pettyfer", "character": "John", "id": 61363, "credit_id": "52fe46fdc3a36847f811da03", "cast_id": 2, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 0}, {"name": "Timothy Olyphant", "character": "Henri", "id": 18082, "credit_id": "52fe46fdc3a36847f811da07", "cast_id": 3, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 1}, {"name": "Teresa Palmer", "character": "Number 6", "id": 20374, "credit_id": "52fe46fdc3a36847f811da0b", "cast_id": 4, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 2}, {"name": "Dianna Agron", "character": "Sarah", "id": 141687, "credit_id": "52fe46fdc3a36847f811da0f", "cast_id": 5, "profile_path": "/fS4vAPA6ErhHCWRBY2PVIwvnajU.jpg", "order": 3}, {"name": "Garrett M. Brown", "character": "Mr. Simms", "id": 27492, "credit_id": "52fe46fdc3a36847f811da23", "cast_id": 10, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 4}, {"name": "Callan McAuliffe", "character": "Sam", "id": 236851, "credit_id": "52fe46fdc3a36847f811da27", "cast_id": 11, "profile_path": "/a4oVlU0LMJjwOjP5a1jHol1Nv5l.jpg", "order": 5}, {"name": "Kevin Durand", "character": "Mogadorian Commander", "id": 79072, "credit_id": "52fe46fdc3a36847f811da13", "cast_id": 6, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 6}, {"name": "Jake Abel", "character": "Mark", "id": 105727, "credit_id": "52fe46fdc3a36847f811da17", "cast_id": 7, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 7}, {"name": "Patrick Sebes", "character": "Kevin", "id": 211860, "credit_id": "52fe46fdc3a36847f811da1b", "cast_id": 8, "profile_path": "/pE7ux4GFM49W6i0sDIxmAfnT1Bf.jpg", "order": 8}, {"name": "Emily Wickersham", "character": "Nicole", "id": 204679, "credit_id": "52fe46fdc3a36847f811da1f", "cast_id": 9, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 9}, {"name": "Jeff Hochendoner", "character": "Sherriff James", "id": 170145, "credit_id": "52fe46fdc3a36847f811da2b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Greg Townley", "character": "Number 3", "id": 237162, "credit_id": "52fe46fdc3a36847f811da2f", "cast_id": 13, "profile_path": "/mHA3zhlMl1OfVNn1I20O1SJt4j.jpg", "order": 11}, {"name": "Reuben Langdon", "character": "Number 3's Guardian", "id": 237163, "credit_id": "52fe46fdc3a36847f811da33", "cast_id": 14, "profile_path": "/oppPILAmMxJjpP1RBCBd7lfqsaN.jpg", "order": 12}, {"name": "Molly McGinnis", "character": "Receptionist", "id": 237174, "credit_id": "52fe46fdc3a36847f811da37", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Brian Howe", "character": "Frank", "id": 1990, "credit_id": "52fe46fdc3a36847f811da3b", "cast_id": 16, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 14}, {"name": "Andy Owen", "character": "Bret", "id": 237178, "credit_id": "52fe46fdc3a36847f811da3f", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Sophia Caruso", "character": "Girl on Street", "id": 1205735, "credit_id": "52fe46fdc3a36847f811dab5", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Charles Carroll", "character": "Sam's Stepdad", "id": 60287, "credit_id": "52fe46fdc3a36847f811dab9", "cast_id": 38, "profile_path": "/5sGsNA3iVsjt3vXxNH5aK3P7toG.jpg", "order": 17}, {"name": "L. Derek Leonidoff", "character": "Mr. Berhman", "id": 114608, "credit_id": "52fe46fdc3a36847f811dabd", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Garrett M. Brown", "character": "Principal Simms", "id": 27492, "credit_id": "52fe46fdc3a36847f811dac1", "cast_id": 40, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 19}, {"name": "Sabrina de Matteo", "character": "Physics Teacher", "id": 1205736, "credit_id": "52fe46fdc3a36847f811dac5", "cast_id": 41, "profile_path": null, "order": 20}, {"name": "Cooper Thornton", "character": "Sarah's Dad", "id": 162828, "credit_id": "52fe46fdc3a36847f811dac9", "cast_id": 42, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 21}, {"name": "Judith Hoag", "character": "Sarah's Mom", "id": 45041, "credit_id": "52fe46fdc3a36847f811dacd", "cast_id": 43, "profile_path": "/mP2EqWWhy6iP2PCbbky78pj10VK.jpg", "order": 22}, {"name": "Jack Walz", "character": "Sarah's Brother", "id": 1205737, "credit_id": "52fe46fdc3a36847f811dad1", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Bill Laing", "character": "Demented Farmer", "id": 27553, "credit_id": "52fe46fdc3a36847f811dad5", "cast_id": 45, "profile_path": null, "order": 24}, {"name": "Beau Mirchoff", "character": "Drew", "id": 117525, "credit_id": "52fe46fdc3a36847f811dad9", "cast_id": 46, "profile_path": "/pL7zdESU9X7xKdMXxtrISR9pJfh.jpg", "order": 25}, {"name": "Cody Johns", "character": "Kern", "id": 1205738, "credit_id": "52fe46fdc3a36847f811dadd", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Isabella Robbins", "character": "Teen At Party", "id": 1205739, "credit_id": "52fe46fdc3a36847f811dae1", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Damien Walters", "character": "MOG Warrior", "id": 1205740, "credit_id": "52fe46fdc3a36847f811dae5", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Jon Braver", "character": "MOG Warrior", "id": 183933, "credit_id": "52fe46fdc3a36847f811dae9", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Kevin Cassidy", "character": "MOG Warrior", "id": 1205741, "credit_id": "52fe46fdc3a36847f811daed", "cast_id": 51, "profile_path": "/7rW1lmNEqZx32JkRrOaL0oZ9ukg.jpg", "order": 30}, {"name": "Matt Leonard", "character": "MOG Warrior", "id": 1205742, "credit_id": "52fe46fdc3a36847f811daf1", "cast_id": 52, "profile_path": "/nxKRJPiFS0aO8PJBnevBAUrRmi7.jpg", "order": 31}, {"name": "Carrick O'Quinn", "character": "MOG Warrior", "id": 550900, "credit_id": "52fe46fdc3a36847f811daf5", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Tim Sitarz", "character": "MOG Warrior", "id": 37010, "credit_id": "52fe46fdc3a36847f811daf9", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Steve Upton", "character": "MOG Warrior", "id": 1205743, "credit_id": "52fe46fdc3a36847f811dafd", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Tucker Albrizzi", "character": "Tuck (uncredited)", "id": 558925, "credit_id": "52fe46fdc3a36847f811db01", "cast_id": 56, "profile_path": "/jeivgdxm1gDFP8ECJe4HM5p0bdM.jpg", "order": 35}, {"name": "Karen Allen", "character": "Sam's Mom (scenes deleted) (uncredited)", "id": 650, "credit_id": "52fe46fdc3a36847f811db05", "cast_id": 57, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 36}, {"name": "Amelia Compton", "character": "Girl in Car (uncredited)", "id": 1205744, "credit_id": "52fe46fdc3a36847f811db09", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "Megan Follows", "character": "Supermarket Cashier (uncredited)", "id": 45446, "credit_id": "52fe46fdc3a36847f811db0d", "cast_id": 59, "profile_path": "/dlKpppqXcGgqcwMQ4ljFQYnm7CN.jpg", "order": 38}, {"name": "Brittany Forringer", "character": "Cheerleader / Party Guest (uncredited)", "id": 1205745, "credit_id": "52fe46fdc3a36847f811db11", "cast_id": 60, "profile_path": null, "order": 39}, {"name": "Ally Hydeman", "character": "High School Student (uncredited)", "id": 1187502, "credit_id": "52fe46fdc3a36847f811db15", "cast_id": 61, "profile_path": null, "order": 40}, {"name": "William Kania", "character": "Carnival Patron (uncredited)", "id": 127060, "credit_id": "52fe46fdc3a36847f811db19", "cast_id": 62, "profile_path": null, "order": 41}, {"name": "Kira Marie", "character": "Friend (uncredited)", "id": 1205746, "credit_id": "52fe46fdc3a36847f811db1d", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Andre' Mason", "character": "Sheriff Deputy (uncredited)", "id": 1205747, "credit_id": "52fe46fdc3a36847f811db21", "cast_id": 64, "profile_path": null, "order": 43}, {"name": "Doug Michaels", "character": "Student / Party Boy (uncredited)", "id": 1205748, "credit_id": "52fe46fdc3a36847f811db25", "cast_id": 65, "profile_path": null, "order": 44}, {"name": "Jackson Nunn", "character": "Neighbor (uncredited)", "id": 1205749, "credit_id": "52fe46fdc3a36847f811db29", "cast_id": 66, "profile_path": null, "order": 45}, {"name": "Brenna Roth", "character": "News Reporter (uncredited)", "id": 106147, "credit_id": "52fe46fdc3a36847f811db2d", "cast_id": 67, "profile_path": "/45IxL9cIqRZHKBX3X1kMslPrhXU.jpg", "order": 46}, {"name": "Zoe Simek", "character": "Girl in Classroom (uncredited)", "id": 1205750, "credit_id": "52fe46fdc3a36847f811db31", "cast_id": 68, "profile_path": null, "order": 47}, {"name": "Michelle Vezzani", "character": "Carnival Patron (uncredited)", "id": 1205751, "credit_id": "52fe46fdc3a36847f811db35", "cast_id": 69, "profile_path": null, "order": 48}, {"name": "Morgan Wolk", "character": "Teen #1 (uncredited)", "id": 1205752, "credit_id": "52fe46fdc3a36847f811db39", "cast_id": 70, "profile_path": null, "order": 49}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe46fdc3a36847f811d9ff", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 6.1, "runtime": 109}, "87492": {"poster_path": "/vLZ8vG6qAeMW5iAtc4pJ5kJyqjr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15000000, "overview": "The greatest Olympic Wrestling Champion brother team joins Team Foxcatcher led by multimillionaire sponsor John E. du Pont as they train for the 1988 games in Seoul - a union that leads to unlikely circumstances.", "video": false, "id": 87492, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Foxcatcher", "tagline": "Based on the shocking true story", "vote_count": 261, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1100089", "adult": false, "backdrop_path": "/fFISF7IlLoAk52jUU7ehbOGxgsf.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Likely Story", "id": 1785}], "release_date": "2015-01-16", "popularity": 2.25221378333011, "original_title": "Foxcatcher", "budget": 24000000, "cast": [{"name": "Steve Carell", "character": "John du Pont", "id": 4495, "credit_id": "52fe49c99251416c910b8b17", "cast_id": 5, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Mark Schultz", "id": 38673, "credit_id": "52fe49c99251416c910b8b13", "cast_id": 4, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "David Schultz", "id": 103, "credit_id": "52fe49c99251416c910b8b1b", "cast_id": 6, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Sienna Miller", "character": "Nancy Schultz", "id": 23459, "credit_id": "52fe49c99251416c910b8b23", "cast_id": 8, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 3}, {"name": "Vanessa Redgrave", "character": "Jean du Pont", "id": 13333, "credit_id": "52fe49c99251416c910b8b27", "cast_id": 9, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 4}, {"name": "Anthony Michael Hall", "character": "Jack", "id": 1904, "credit_id": "52fe49c99251416c910b8b1f", "cast_id": 7, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 5}, {"name": "Guy Boyd", "character": "Henry Beck", "id": 19752, "credit_id": "546413d30e0a2629460007ff", "cast_id": 23, "profile_path": "/89KKXCgVKlB67FtjeTN6AlJYjlS.jpg", "order": 6}, {"name": "Brett Rice", "character": "Fred Cole", "id": 29934, "credit_id": "546413e0c3a36804ce000781", "cast_id": 24, "profile_path": "/1gWgDmlT9WCIPTDzkYQSs1NIt7F.jpg", "order": 7}, {"name": "Jackson Frazer", "character": "Alexander Schultz", "id": 1385043, "credit_id": "546413f20e0a26293b0007eb", "cast_id": 25, "profile_path": "/x6xI236inmbO5iIzbyx7rjw7qJq.jpg", "order": 8}, {"name": "Samara Lee", "character": "Danielle Schultz", "id": 1378130, "credit_id": "54641401c3a36804ce000785", "cast_id": 26, "profile_path": "/5a6QLIBrnMhna6S4GD6h3YHbbz3.jpg", "order": 9}, {"name": "Francis J. Murphy III", "character": "Wayne Kendall", "id": 1385044, "credit_id": "5464140fc3a36804ac000764", "cast_id": 27, "profile_path": "/zsYyhziJ87BgJb0nIUBS9x2LrHx.jpg", "order": 10}, {"name": "Jane Mowder", "character": "Rosie", "id": 1385045, "credit_id": "5464141b0e0a26294600080c", "cast_id": 28, "profile_path": "/9ijRxNKHTTBTNxgZk66vj91Lx4.jpg", "order": 11}, {"name": "David Bennett", "character": "Documentary Director", "id": 1431311, "credit_id": "54ecda5bc3a3680b800023a1", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Lee Perkins", "character": "Corporal Daly", "id": 98175, "credit_id": "54ecdaaa9251417968002240", "cast_id": 31, "profile_path": "/6Zy5TrYeol8di9HUJVneFc1mHwt.jpg", "order": 13}, {"name": "Robert Haramia", "character": "Banquet Guest", "id": 1431401, "credit_id": "54ed0ad69251412f7a000504", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Daniel Hilt", "character": "Roberto Garcia", "id": 1431403, "credit_id": "54ed0b2dc3a3680b800028bb", "cast_id": 33, "profile_path": "/qxvoeNWqg42jLgRWlKf5EsbMDbV.jpg", "order": 15}, {"name": "Bryan Cook", "character": "Ben Langer", "id": 1431410, "credit_id": "54ed0c9092514179710026d6", "cast_id": 36, "profile_path": null, "order": 18}], "directors": [{"name": "Bennett Miller", "department": "Directing", "job": "Director", "credit_id": "52fe49c99251416c910b8b03", "profile_path": "/jlnO6Hg6jChoGWr6ScVBpLJBAiI.jpg", "id": 5345}], "vote_average": 6.5, "runtime": 134}, "13767": {"poster_path": "/kvKXyrc3cUGqXin2u76Ef8lApMI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84500122, "overview": "Now that Santa and Mrs. Claus have the North Pole running smoothly, the Counsel of Legendary Figures has called an emergency meeting on Christmas Eve! The evil Jack Frost has been making trouble, looking to take over the holiday! So he launches a plan to sabotage the toy factory and compel Scott to invoke the little-known Escape Clause and wish he'd never become Santa.", "video": false, "id": 13767, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Santa Clause 3: The Escape Clause", "tagline": "His time at the North Pole is about to go South.", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1h8iA6i2DpPhsHC65nUB2voVnm5.jpg", "id": 53159, "name": "The Santa Clause Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452681", "adult": false, "backdrop_path": "/wTWoDOydYrOS5eMRluB59cmj1MT.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-11-03", "popularity": 0.239125454366315, "original_title": "The Santa Clause 3: The Escape Clause", "budget": 0, "cast": [{"name": "Tim Allen", "character": "Santa", "id": 12898, "credit_id": "52fe45969251416c7505b9fd", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Elizabeth Mitchell", "character": "Mrs.Clause", "id": 31167, "credit_id": "52fe45969251416c7505ba01", "cast_id": 2, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 1}, {"name": "Eric Lloyd", "character": "Charlie", "id": 27564, "credit_id": "52fe45969251416c7505ba05", "cast_id": 3, "profile_path": "/qemoEBG9JeAerb3RsXUOa2peZxQ.jpg", "order": 2}, {"name": "Judge Reinhold", "character": "neil miller", "id": 777, "credit_id": "52fe45969251416c7505ba09", "cast_id": 4, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 3}, {"name": "Wendy Crewson", "character": "Laura Miller", "id": 19957, "credit_id": "52fe45969251416c7505ba0d", "cast_id": 5, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 4}, {"name": "Martin Short", "character": "Jack Frost", "id": 519, "credit_id": "52fe45969251416c7505ba11", "cast_id": 6, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 5}, {"name": "Spencer Breslin", "character": "Curtis", "id": 35654, "credit_id": "52fe45969251416c7505ba15", "cast_id": 7, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 6}, {"name": "Liliana Mumy", "character": "Lucy Miller", "id": 71861, "credit_id": "52fe45969251416c7505ba19", "cast_id": 8, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 7}, {"name": "Ann-Margret", "character": "Sylvia Newman", "id": 13567, "credit_id": "52fe45969251416c7505ba1d", "cast_id": 9, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 8}, {"name": "Alan Arkin", "character": "Bud Newman", "id": 1903, "credit_id": "52fe45969251416c7505ba21", "cast_id": 10, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 9}, {"name": "Abigail Breslin", "character": "Trish", "id": 17140, "credit_id": "52fe45969251416c7505ba25", "cast_id": 11, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 10}, {"name": "Art LaFleur", "character": "Tooth Fairy", "id": 44792, "credit_id": "52fe45969251416c7505ba29", "cast_id": 12, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 11}, {"name": "Aisha Tyler", "character": "Mother Nature", "id": 38674, "credit_id": "52fe45969251416c7505ba2d", "cast_id": 13, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 12}, {"name": "Kevin Pollak", "character": "Cupid", "id": 7166, "credit_id": "52fe45969251416c7505ba31", "cast_id": 14, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 13}, {"name": "Jay Thomas", "character": "Easter Bunny", "id": 21105, "credit_id": "52fe45969251416c7505ba35", "cast_id": 15, "profile_path": "/1NOyIfDuK7fPv6NAxXGE16dvmUG.jpg", "order": 14}, {"name": "Michael Dorn", "character": "Sandman", "id": 2391, "credit_id": "52fe45969251416c7505ba39", "cast_id": 16, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 15}, {"name": "Peter Boyle", "character": "Father Time", "id": 1039, "credit_id": "52fe45969251416c7505ba3d", "cast_id": 17, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 16}], "directors": [{"name": "Michael Lembeck", "department": "Directing", "job": "Director", "credit_id": "52fe45969251416c7505ba43", "profile_path": "/nSksRzDoUToxdS2MqIeV7LGAiVk.jpg", "id": 15045}], "vote_average": 5.1, "runtime": 98}, "87496": {"poster_path": "/8tP3MK8A5Qah2bMHcXB6E7QF1aN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5133027, "overview": "A thriller centered on a former Weather Underground activist who goes on the run from a journalist who has discovered his identity.", "video": false, "id": 87496, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Company You Keep", "tagline": "The greatest manhunt in history.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1381404", "adult": false, "backdrop_path": "/2p4dSrGUij4Geg17C2N7augYL4T.jpg", "production_companies": [{"name": "Voltage pictures", "id": 6633}], "release_date": "2012-09-06", "popularity": 0.874952236767447, "original_title": "The Company You Keep", "budget": 0, "cast": [{"name": "Anna Kendrick", "character": "Diana", "id": 84223, "credit_id": "52fe49c99251416c910b8b87", "cast_id": 4, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Benjamin Schulberg", "id": 10959, "credit_id": "52fe49c99251416c910b8b8b", "cast_id": 5, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Donal", "id": 1733, "credit_id": "52fe49c99251416c910b8b8f", "cast_id": 6, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Ray Fuller", "id": 2283, "credit_id": "52fe49c99251416c910b8b93", "cast_id": 7, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Mac McLeod", "id": 16431, "credit_id": "52fe49c99251416c910b8b97", "cast_id": 8, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Robert Redford", "character": "Jim Grant", "id": 4135, "credit_id": "52fe49c99251416c910b8b9b", "cast_id": 9, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 5}, {"name": "Terrence Howard", "character": "Cornelius", "id": 18288, "credit_id": "52fe49c99251416c910b8b9f", "cast_id": 11, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 6}, {"name": "Susan Sarandon", "character": "Sharon Solarz", "id": 4038, "credit_id": "52fe49c99251416c910b8ba3", "cast_id": 12, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 7}, {"name": "Brendan Gleeson", "character": "Henry Osborne", "id": 2039, "credit_id": "52fe49c99251416c910b8ba7", "cast_id": 13, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 8}, {"name": "Brit Marling", "character": "Isabel", "id": 222330, "credit_id": "52fe49c99251416c910b8bab", "cast_id": 14, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 9}, {"name": "Chris Cooper", "character": "Daniel", "id": 2955, "credit_id": "52fe49c99251416c910b8baf", "cast_id": 15, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 10}, {"name": "Stephen Root", "character": "Billy Cusimano", "id": 17401, "credit_id": "52fe49c99251416c910b8bb3", "cast_id": 16, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 11}, {"name": "Julie Christie", "character": "Mimi Lurie", "id": 1666, "credit_id": "52fe49c99251416c910b8bbd", "cast_id": 18, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 12}, {"name": "Richard Jenkins", "character": "Jed Lewis", "id": 28633, "credit_id": "52fe49c99251416c910b8bc1", "cast_id": 19, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 13}, {"name": "Keegan Connor Tracy", "character": "Jim Grant's secretary", "id": 42710, "credit_id": "52fe49c99251416c910b8bc5", "cast_id": 21, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 14}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe49c99251416c910b8b77", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.0, "runtime": 121}, "87499": {"poster_path": "/n6n0rMFsQhdNoMygr2pyL26wUfM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2401510, "overview": "An operative for an elite private intelligence firm finds her priorities irrevocably changed after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.", "video": false, "id": 87499, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The East", "tagline": "Spy on us, we'll spy on you.", "vote_count": 109, "homepage": "http://www.theeastmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1869716", "adult": false, "backdrop_path": "/x2JxMN1baKIhlyNJeuvC8HlnE5t.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}], "release_date": "2013-05-31", "popularity": 1.20737092846637, "original_title": "The East", "budget": 6500000, "cast": [{"name": "Brit Marling", "character": "Sarah", "id": 222330, "credit_id": "52fe49ca9251416c910b8c2f", "cast_id": 6, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 0}, {"name": "Alexander Skarsg\u00e5rd", "character": "Benji", "id": 28846, "credit_id": "52fe49ca9251416c910b8c2b", "cast_id": 5, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 1}, {"name": "Ellen Page", "character": "Izzy", "id": 27578, "credit_id": "52fe49ca9251416c910b8c27", "cast_id": 4, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 2}, {"name": "Toby Kebbell", "character": "Doc", "id": 20286, "credit_id": "52fe49ca9251416c910b8c37", "cast_id": 8, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 3}, {"name": "Shiloh Fernandez", "character": "Luca", "id": 79795, "credit_id": "52fe49ca9251416c910b8c3b", "cast_id": 9, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 4}, {"name": "Aldis Hodge", "character": "Thumbs", "id": 83860, "credit_id": "52fe49ca9251416c910b8c43", "cast_id": 11, "profile_path": "/lPYksVSaRdaHOhC4OzBEOw4uRbp.jpg", "order": 5}, {"name": "Danielle Macdonald", "character": "Tess", "id": 1203789, "credit_id": "52fe49ca9251416c910b8c47", "cast_id": 12, "profile_path": "/5fMaAMGIzwYCTYepPfi1LnszFu6.jpg", "order": 6}, {"name": "Hillary Baack", "character": "Eve", "id": 207467, "credit_id": "52fe49ca9251416c910b8c4b", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Patricia Clarkson", "character": "Sharon", "id": 1276, "credit_id": "52fe49ca9251416c910b8c33", "cast_id": 7, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 8}, {"name": "Jason Ritter", "character": "Tim", "id": 50095, "credit_id": "52fe49ca9251416c910b8c4f", "cast_id": 14, "profile_path": "/ysWVNRFfk7oGngurF7VWkWhvyQS.jpg", "order": 9}, {"name": "Julia Ormond", "character": "Paige", "id": 15887, "credit_id": "52fe49ca9251416c910b8c3f", "cast_id": 10, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 10}, {"name": "Billy Magnussen", "character": "Porty McCabe", "id": 141034, "credit_id": "52fe49ca9251416c910b8c53", "cast_id": 15, "profile_path": "/9iEugwAOkNLIzkwl2388OnCLHEw.jpg", "order": 11}, {"name": "Wilbur Fitzgerald", "character": "Robert McCabe", "id": 41019, "credit_id": "52fe49ca9251416c910b8c57", "cast_id": 16, "profile_path": "/zkt1tKQpdmDcFtmoRSuZHIXQtDm.jpg", "order": 12}, {"name": "John Neisler", "character": "Rory Huston", "id": 565505, "credit_id": "52fe49ca9251416c910b8c85", "cast_id": 25, "profile_path": "/yfqtwgV4ettobFyPn6x7LW6u5AI.jpg", "order": 13}, {"name": "Jamey Sheridan", "character": "Richard Cannon", "id": 2977, "credit_id": "52fe49ca9251416c910b8c89", "cast_id": 26, "profile_path": "/jpyh4Wd6AZ1oBCsbIxB72otXtcy.jpg", "order": 14}], "directors": [{"name": "Zal Batmanglij", "department": "Directing", "job": "Director", "credit_id": "52fe49ca9251416c910b8c23", "profile_path": "/kkDU7v5eDZTWbRIoPsRYT3AdcoG.jpg", "id": 933739}], "vote_average": 6.4, "runtime": 116}, "87502": {"poster_path": "/8XEbkjgorAm9xk15mF63jqJ4ByV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161772375, "overview": "Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he's managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober -- but when the crash investigation exposes his addiction, he finds himself in an even worse situation.", "video": false, "id": 87502, "genres": [{"id": 18, "name": "Drama"}], "title": "Flight", "tagline": "", "vote_count": 1378, "homepage": "http://www.paramount.com/flight", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1907668", "adult": false, "backdrop_path": "/yogIqTNfrDIybDQTGPDawi409PD.jpg", "production_companies": [{"name": "Parkes/MacDonald Productions", "id": 11084}, {"name": "Paramount Pictures", "id": 4}, {"name": "ImageMovers", "id": 11395}], "release_date": "2012-11-02", "popularity": 0.44524698772638, "original_title": "Flight", "budget": 31000000, "cast": [{"name": "Denzel Washington", "character": "Whip Whitaker", "id": 5292, "credit_id": "5310d0d7925141102a001274", "cast_id": 50, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Hugh Lang", "id": 1896, "credit_id": "5310d0f692514110080013c8", "cast_id": 51, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Bruce Greenwood", "character": "Charlie Anderson", "id": 21089, "credit_id": "5310d11092514110350012ee", "cast_id": 52, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 3}, {"name": "Kelly Reilly", "character": "Nicole", "id": 17521, "credit_id": "5310d12a92514110130012d2", "cast_id": 53, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 4}, {"name": "John Goodman", "character": "Harling Mays", "id": 1230, "credit_id": "5310d188925141102a00127b", "cast_id": 54, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 5}, {"name": "Brian Geraghty", "character": "Ken Evans", "id": 49271, "credit_id": "5310d1be925141102a00127d", "cast_id": 55, "profile_path": "/3risyyYIFDQaz0EHRVqNOCToaDe.jpg", "order": 6}, {"name": "Nadine Velazquez", "character": "Katerina Marquez", "id": 65196, "credit_id": "5310d2029251410fe60012e4", "cast_id": 56, "profile_path": "/7bd8Qtmz25PtMuVN8uSzTp8wemx.jpg", "order": 7}, {"name": "Tamara Tunie", "character": "Margaret Thomason", "id": 42694, "credit_id": "5310d21a925141102a001282", "cast_id": 57, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 8}, {"name": "Melissa Leo", "character": "Ellen Block", "id": 6832, "credit_id": "5310d235925141101f00123b", "cast_id": 58, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 9}, {"name": "Garcelle Beauvais", "character": "Deana", "id": 31647, "credit_id": "5310d24f925141101f00123d", "cast_id": 59, "profile_path": "/fuZx5JL2VeMM1nwrZw2pkAMxuVt.jpg", "order": 10}, {"name": "Justin Martin", "character": "Will Whitaker Jr.", "id": 208956, "credit_id": "5310d2e692514110080013d2", "cast_id": 60, "profile_path": "/AnBe95UyEgPvC1xU159PlWy0nrH.jpg", "order": 11}, {"name": "Peter Gerety", "character": "Avington Carr", "id": 1986, "credit_id": "5310d31e925141104d00138b", "cast_id": 61, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 12}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe49ca9251416c910b8d73", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.2, "runtime": 138}, "38356": {"poster_path": "/sZY3ls18QTY0pFBJn2vl2MmauTQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1123746996, "overview": "Sam Witwicky takes his first tenuous steps into adulthood while remaining a reluctant human ally of Autobot-leader Optimus Prime. The film centers around the space race between the USSR and the USA, suggesting there was a hidden Transformers role in it all that remains one of the planet's most dangerous secrets.", "video": false, "id": 38356, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers: Dark of the Moon", "tagline": "The invasion we always feared. An enemy we never expected.", "vote_count": 1825, "homepage": "http://www.transformersmovie.com/", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1399103", "adult": false, "backdrop_path": "/76ZUJdlSUISSapiKXK3uG3Y8cuO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Hasbro", "id": 2598}, {"name": "Indochina Productions", "id": 19751}], "release_date": "2011-06-28", "popularity": 0.67619397319348, "original_title": "Transformers: Dark of the Moon", "budget": 195000000, "cast": [{"name": "Shia LaBeouf", "character": "Sam Witwicky", "id": 10959, "credit_id": "52fe46af9251416c9105c5f5", "cast_id": 3, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "John Malkovich", "character": "Bruce Brazos", "id": 6949, "credit_id": "52fe46af9251416c9105c5f9", "cast_id": 5, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Ken Jeong", "character": "Jerry Wang", "id": 83586, "credit_id": "52fe46af9251416c9105c5fd", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 2}, {"name": "Frances McDormand", "character": "National Intelligence Director", "id": 3910, "credit_id": "52fe46af9251416c9105c601", "cast_id": 7, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 3}, {"name": "Josh Duhamel", "character": "Lt. Colonel William Lennox", "id": 19536, "credit_id": "52fe46af9251416c9105c605", "cast_id": 9, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 4}, {"name": "Tyrese Gibson", "character": "Robert Epps", "id": 8169, "credit_id": "52fe46af9251416c9105c609", "cast_id": 10, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 5}, {"name": "Hugo Weaving", "character": "Megatron (voice)", "id": 1331, "credit_id": "52fe46af9251416c9105c60d", "cast_id": 11, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 6}, {"name": "Leonard Nimoy", "character": "Sentinel Prime (voice)", "id": 1749, "credit_id": "52fe46af9251416c9105c611", "cast_id": 12, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 7}, {"name": "John Turturro", "character": "Simmons", "id": 1241, "credit_id": "52fe46af9251416c9105c615", "cast_id": 13, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 8}, {"name": "Rosie Huntington-Whiteley", "character": "Carly", "id": 236048, "credit_id": "52fe46af9251416c9105c619", "cast_id": 14, "profile_path": "/thEKQmAHhhaxuFHxbks08gDwlij.jpg", "order": 9}, {"name": "Patrick Dempsey", "character": "Dylan", "id": 18352, "credit_id": "52fe46b09251416c9105c62f", "cast_id": 18, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 10}, {"name": "Alan Tudyk", "character": "Dutch", "id": 21088, "credit_id": "52fe46b09251416c9105c633", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 11}, {"name": "Peter Cullen", "character": "Optimus Prime (voice)", "id": 19540, "credit_id": "52fe46b09251416c9105c637", "cast_id": 20, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 12}, {"name": "Glenn Morshower", "character": "General Morshower", "id": 12797, "credit_id": "52fe46b09251416c9105c63b", "cast_id": 21, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 13}, {"name": "Charlie Adler", "character": "Starscream (voice) (as Charlie Adler)", "id": 81178, "credit_id": "52fe46b09251416c9105c63f", "cast_id": 22, "profile_path": "/eSZtf1oCn8PY3VEBclD7VkCEWS.jpg", "order": 14}, {"name": "Robert Foxworth", "character": "Ratchet (voice)", "id": 2962, "credit_id": "52fe46b09251416c9105c643", "cast_id": 23, "profile_path": "/ofBWY1UDjnYMCSjrSXARlKs4yn9.jpg", "order": 15}, {"name": "James Remar", "character": "Sideswipe (voice)", "id": 1736, "credit_id": "52fe46b09251416c9105c647", "cast_id": 24, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 16}, {"name": "Frank Welker", "character": "Shockwave/Soundwave/Barricade (voice)", "id": 15831, "credit_id": "52fe46b09251416c9105c64b", "cast_id": 26, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 17}, {"name": "Jess Harnell", "character": "Ironhide (voice)", "id": 84495, "credit_id": "52fe46b09251416c9105c64f", "cast_id": 27, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 18}, {"name": "Tom Kenny", "character": "Wheelie (voice)", "id": 78798, "credit_id": "52fe46b09251416c9105c653", "cast_id": 28, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 19}, {"name": "Reno Wilson", "character": "Brains (voice)", "id": 117187, "credit_id": "52fe46b09251416c9105c657", "cast_id": 29, "profile_path": "/xrxGdoGcF3p79NlWHEFvmj2eyx1.jpg", "order": 20}, {"name": "Ron Bottitta", "character": "Roadbuster/Amp (voice)", "id": 60602, "credit_id": "52fe46b09251416c9105c65b", "cast_id": 31, "profile_path": "/9qqT4usrllY5XWONGbDYusnP7yL.jpg", "order": 21}, {"name": "Scott Krinsky", "character": "Accuretta Executive", "id": 206334, "credit_id": "52fe46b09251416c9105c65f", "cast_id": 34, "profile_path": "/xznaXTt8fMrTtnp3Ey0qu4owB2A.jpg", "order": 22}, {"name": "John Di Maggio", "character": "Leadfoot/Target (voice)", "id": 31531, "credit_id": "52fe46b09251416c9105c663", "cast_id": 35, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 23}, {"name": "Julie White", "character": "Judy Witwicki", "id": 24305, "credit_id": "52fe46b09251416c9105c667", "cast_id": 36, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 24}, {"name": "Kevin Dunn", "character": "Ron Witwicki", "id": 14721, "credit_id": "52fe46b09251416c9105c66b", "cast_id": 37, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 25}, {"name": "Keith Szarabajka", "character": "Laserbeak (voice)", "id": 87957, "credit_id": "52fe46b09251416c9105c66f", "cast_id": 38, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 26}, {"name": "George Coe", "character": "Que / Wheeljack (voice)", "id": 14102, "credit_id": "52fe46b09251416c9105c673", "cast_id": 39, "profile_path": "/2ygklxHSWcNuWg4hjZe5J9MlzNR.jpg", "order": 27}, {"name": "Derek Miller", "character": "Mailroom Worker", "id": 1318952, "credit_id": "53712545c3a3687019000468", "cast_id": 42, "profile_path": "/tgxhxukteS84UkaIJlU48vqiusL.jpg", "order": 28}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe46af9251416c9105c5eb", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.2, "runtime": 154}, "38357": {"poster_path": "/cm56bLezP4aXHBNV1EQITE0yPBk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58785180, "overview": "When hard-working TV producer Becky Fuller is fired from a local news program, her career begins to look as bleak as her hapless love life. Stumbling into a job at \"Daybreak\" (the last-place national morning news show), Becky decides to revitalize the show by bringing on legendary TV anchor Mike Pomeroy. \u00a0Unfortunately, Pomeroy refuses to cover morning show staples like celebrity gossip, weather, fashion and crafts \u2013 let alone work with his new co-host, Colleen Peck, a former beauty queen and longtime morning show personality who is more than happy covering morning \"news.\" As Mike and Colleen clash, first behind the scenes and then on the air, Becky's blossoming love affair with fellow producer, Adam Bennett begins to unravel \u2013 and soon Becky is struggling to save her relationship, her reputation, her job and ultimately, the show itself.", "video": false, "id": 38357, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Morning Glory", "tagline": "Breakfast TV just got interesting.", "vote_count": 97, "homepage": "http://www.morningglorymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}], "imdb_id": "tt1126618", "adult": false, "backdrop_path": "/i12y0PWtU8GhhLG3bMiHJNIueWd.jpg", "production_companies": [{"name": "Goldcrest Films International", "id": 500}, {"name": "Bad Robot", "id": 11461}], "release_date": "2010-11-10", "popularity": 0.360967105318432, "original_title": "Morning Glory", "budget": 40000000, "cast": [{"name": "Rachel McAdams", "character": "Becky Fuller", "id": 53714, "credit_id": "52fe46b09251416c9105c6b3", "cast_id": 3, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Mike Pomeroy", "id": 3, "credit_id": "52fe46b09251416c9105c6b7", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Patrick Wilson", "character": "Adam Bennett", "id": 17178, "credit_id": "52fe46b09251416c9105c6bb", "cast_id": 5, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 2}, {"name": "Jeff Goldblum", "character": "Jerry Barnes", "id": 4785, "credit_id": "52fe46b09251416c9105c6bf", "cast_id": 6, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 3}, {"name": "Diane Keaton", "character": "Colleen Peck", "id": 3092, "credit_id": "52fe46b09251416c9105c6c3", "cast_id": 7, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 3}, {"name": "50 Cent", "character": "Himself", "id": 62644, "credit_id": "52fe46b09251416c9105c6c7", "cast_id": 8, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 4}, {"name": "Arden Myrin", "character": "Day Break Producer #3", "id": 120244, "credit_id": "52fe46b09251416c9105c6cb", "cast_id": 9, "profile_path": "/phq9JCHOvSOvpTqBQktWjyZ2imh.jpg", "order": 5}, {"name": "Noah Bean", "character": "First Date", "id": 111945, "credit_id": "52fe46b09251416c9105c6cf", "cast_id": 11, "profile_path": "/1sHoJtjyYkPX8bMk5hmeJBkFUGt.jpg", "order": 6}, {"name": "Vanessa Aspillaga", "character": "Anna", "id": 143235, "credit_id": "52fe46b09251416c9105c6d3", "cast_id": 12, "profile_path": "/eGdYfaOMYNUvEtIq6LVQrfhMnek.jpg", "order": 7}, {"name": "Jeff Hiller", "character": "Sam", "id": 143236, "credit_id": "52fe46b09251416c9105c6d7", "cast_id": 13, "profile_path": "/xqQjqDiiJwzgLnvNJLyRPyKYrod.jpg", "order": 8}, {"name": "Linda Powell", "character": "Louanne", "id": 143237, "credit_id": "52fe46b09251416c9105c6db", "cast_id": 14, "profile_path": "/ybteH4NNVjm5FfWAk1C4iLFf2rz.jpg", "order": 9}, {"name": "Mike Hydeck", "character": "Ralph", "id": 143238, "credit_id": "52fe46b09251416c9105c6df", "cast_id": 15, "profile_path": "/86rl3Q5WdBf0NiETYFpO1Xp1l8U.jpg", "order": 10}, {"name": "Joseph J. Vargas", "character": "Channel 9 Director", "id": 143239, "credit_id": "52fe46b09251416c9105c6e3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "David Fonteno", "character": "Oscar", "id": 55276, "credit_id": "52fe46b09251416c9105c6e7", "cast_id": 17, "profile_path": "/kfuVHdttluE6KaSx0gOcSHudgCJ.jpg", "order": 12}, {"name": "Patti D'Arbanville", "character": "Becky's Mom", "id": 38160, "credit_id": "52fe46b09251416c9105c6eb", "cast_id": 18, "profile_path": "/zVx90KTPLdqRogcMCj3rMajjwd1.jpg", "order": 13}, {"name": "Ty Burrell", "character": "Paul McVee", "id": 15232, "credit_id": "52fe46b09251416c9105c6ef", "cast_id": 19, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 14}], "directors": [{"name": "Roger Michell", "department": "Directing", "job": "Director", "credit_id": "52fe46b09251416c9105c6a9", "profile_path": "/zDjSgsAY44QJljrvzIZWnWauqlg.jpg", "id": 7017}], "vote_average": 6.1, "runtime": 102}, "38358": {"poster_path": "/iWPm2Xlc5arD0oRb18k6MurmqHD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41000000, "overview": "After years of performing \u201cexorcisms\u201d and taking believers\u2019 money, Reverend Marcus travels to rural Louisiana with a film crew so he can dispel what he believes is the myth of demonic possession. The dynamic reverend is certain that this will be another routine \u201cexorcism\u201d on a disturbed religious fanatic but instead comes upon the blood-soaked farm of the Sweetzer family and a true evil he would have never thought imaginable.", "video": false, "id": 38358, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Last Exorcism", "tagline": "Believe In Him.", "vote_count": 100, "homepage": "http://thelastexorcism.com/", "belongs_to_collection": {"backdrop_path": "/5Sqzzmn7ApjfcuasUrnyRlDcpUu.jpg", "poster_path": "/AktaOzAg0QnEdz9Ss1KctsNh5bc.jpg", "id": 177675, "name": "The Last Exorcism Collection"}, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1320244", "adult": false, "backdrop_path": "/swXcukNqS52UffiBSrG0M1pm3t6.jpg", "production_companies": [{"name": "Strike Entertainment", "id": 655}, {"name": "StudioCanal", "id": 694}, {"name": "Arcade Pictures", "id": 11112}], "release_date": "2010-10-03", "popularity": 0.348031008624092, "original_title": "The Last Exorcism", "budget": 3000000, "cast": [{"name": "Ashley Bell", "character": "Nell Sweetzer", "id": 120248, "credit_id": "52fe46b09251416c9105c729", "cast_id": 4, "profile_path": "/rPc2n1A1ieTvh30hv2CNozyCv6O.jpg", "order": 0}, {"name": "Patrick Fabian", "character": "Cotton Marcus", "id": 58791, "credit_id": "52fe46b09251416c9105c72d", "cast_id": 5, "profile_path": "/qVBTTDdWkMaElKx77VFz8zy3Noq.jpg", "order": 1}, {"name": "Iris Bahr", "character": "Iris", "id": 120249, "credit_id": "52fe46b09251416c9105c731", "cast_id": 6, "profile_path": "/pl1ayIV9qbR1gV0Zqx0h5fWq3Vr.jpg", "order": 2}, {"name": "Shanna Forrestall", "character": "Mrs. Cotton Marcus", "id": 120251, "credit_id": "52fe46b09251416c9105c735", "cast_id": 8, "profile_path": "/3obLXjztke735vaes6XAdP0o1P8.jpg", "order": 3}, {"name": "Louis Herthum", "character": "Louis Sweetzer", "id": 93228, "credit_id": "52fe46b09251416c9105c739", "cast_id": 9, "profile_path": "/2aOsAMpQM3ntF755IIZ7l4AQvJ5.jpg", "order": 4}, {"name": "Allen Boudreaux", "character": "Satanic Worshiper", "id": 120252, "credit_id": "52fe46b09251416c9105c73d", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Tony Bentley", "character": "Gerald", "id": 120253, "credit_id": "52fe46b09251416c9105c741", "cast_id": 11, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 6}], "directors": [{"name": "Daniel Stamm", "department": "Directing", "job": "Director", "credit_id": "52fe46b09251416c9105c719", "profile_path": null, "id": 120245}], "vote_average": 5.6, "runtime": 87}, "38363": {"poster_path": "/yE8uba2FkmFagMpeNNoo0cPyJ7D.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Wife and mother Valerie Plame (Naomi Watts) has a double life as a CIA operative, hiding her vocation from family and friends. Her husband, Joseph Wilson (Sean Penn), writes a controversial article in The New York Times, refuting stories about the sale of enriched uranium to Iraq, Then Valerie's secret work and identity is leaked to the press. With her cover blown and other people endangered, Valerie's career and personal life begin to unravel.", "video": false, "id": 38363, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fair Game", "tagline": "Wife. Mother. Spy.", "vote_count": 58, "homepage": "http://www.fairgame-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0977855", "adult": false, "backdrop_path": "/2M7cOIHvoUS81JNO91FY7TViYUz.jpg", "production_companies": [{"name": "River Road Entertainment", "id": 1246}, {"name": "Participant Media", "id": 6735}], "release_date": "2010-05-20", "popularity": 0.186990536787994, "original_title": "Fair Game", "budget": 22000000, "cast": [{"name": "Naomi Watts", "character": "Valerie Plame", "id": 3489, "credit_id": "52fe46b19251416c9105c8b9", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Sean Penn", "character": "Joseph Wilson", "id": 2228, "credit_id": "52fe46b19251416c9105c8bd", "cast_id": 5, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Ty Burrell", "character": "Fred", "id": 15232, "credit_id": "52fe46b19251416c9105c8c1", "cast_id": 6, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 2}, {"name": "Brooke Smith", "character": "Diana", "id": 31649, "credit_id": "52fe46b19251416c9105c8c5", "cast_id": 7, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Jim Pavitt", "id": 14888, "credit_id": "52fe46b19251416c9105c8c9", "cast_id": 8, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Anand Tiwari", "character": "Hafiz", "id": 86884, "credit_id": "52fe46b19251416c9105c8cd", "cast_id": 9, "profile_path": "/fybpO08cl8VhnikM9bFCWaZ1hup.jpg", "order": 5}, {"name": "Jessica Hecht", "character": "Sue", "id": 14984, "credit_id": "52fe46b19251416c9105c8e9", "cast_id": 19, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 6}, {"name": "Norbert Leo Butz", "character": "Steve", "id": 52020, "credit_id": "52fe46b19251416c9105c8d1", "cast_id": 11, "profile_path": "/yYonYgBHg9ocOWWNJnQaEtmMhrq.jpg", "order": 7}, {"name": "Rebecca Rigg", "character": "Lisa", "id": 80278, "credit_id": "52fe46b19251416c9105c8d5", "cast_id": 12, "profile_path": "/ash2ZyHj7BX5mVad47PfwCbZ0xI.jpg", "order": 8}, {"name": "Thomas McCarthy", "character": "Jeff", "id": 17867, "credit_id": "52fe46b19251416c9105c8d9", "cast_id": 14, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 9}, {"name": "Quinn Broggy", "character": "Trevor Wilson", "id": 142189, "credit_id": "52fe46b19251416c9105c8dd", "cast_id": 16, "profile_path": "/ztDPPcrNv4rLWPkrPGy6hleNhyO.jpg", "order": 10}, {"name": "Nicholas Sadler", "character": "CIA Tour Leader", "id": 50402, "credit_id": "52fe46b19251416c9105c8e1", "cast_id": 17, "profile_path": "/97hL5ECPZONeQtVBYEgj4osqfgx.jpg", "order": 11}, {"name": "Ashley Gerasimovich", "character": "Samantha Wilson", "id": 1074512, "credit_id": "52fe46b19251416c9105c8e5", "cast_id": 18, "profile_path": "/btJSb3raZ5U8yFpCU5xrbvufJoB.jpg", "order": 12}, {"name": "Michael Kelly", "character": "Jack", "id": 50217, "credit_id": "52fe46b19251416c9105c8ed", "cast_id": 20, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 13}, {"name": "Noah Emmerich", "character": "Bill", "id": 11315, "credit_id": "52fe46b19251416c9105c8f1", "cast_id": 21, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 14}, {"name": "David Denman", "character": "Dave", "id": 62562, "credit_id": "52fe46b19251416c9105c8f5", "cast_id": 22, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 15}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe46b19251416c9105c8a9", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 6.4, "runtime": 108}, "87516": {"poster_path": "/cmspwpe1usgG5hYijfEcTrueKRC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An everyday man has only three and a half days and limited resources to discover why he was imprisoned in a nondescript room for 20 years without any explanation.", "video": false, "id": 87516, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Oldboy", "tagline": "Ask not why you were imprisoned. Ask why you were set free.", "vote_count": 193, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321511", "adult": false, "backdrop_path": "/bk7oQqahFMarYBFri6xzjvXDzwm.jpg", "production_companies": [{"name": "40 Acres & A Mule Filmworks", "id": 4319}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Good Universe", "id": 17393}, {"name": "OB Productions", "id": 17395}], "release_date": "2013-11-27", "popularity": 1.01189615737379, "original_title": "Oldboy", "budget": 0, "cast": [{"name": "Josh Brolin", "character": "Joe Doucett", "id": 16851, "credit_id": "52fe49cb9251416c910b9039", "cast_id": 4, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 0}, {"name": "Elizabeth Olsen", "character": "Marie Sebastian", "id": 550843, "credit_id": "52fe49cc9251416c910b904d", "cast_id": 8, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Chaney", "id": 2231, "credit_id": "52fe49cc9251416c910b9049", "cast_id": 7, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Adrian Pryce", "id": 82191, "credit_id": "52fe49cc9251416c910b9051", "cast_id": 9, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Lance Reddick", "character": "Daniel Newcombe", "id": 129101, "credit_id": "52fe49cc9251416c910b9055", "cast_id": 10, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 4}, {"name": "Michael Imperioli", "character": "Chucky", "id": 11486, "credit_id": "52fe49cc9251416c910b9059", "cast_id": 11, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 5}, {"name": "Max Casella", "character": "James Prestley", "id": 7133, "credit_id": "52fe49cc9251416c910b9061", "cast_id": 13, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 6}, {"name": "Richard Portnow", "character": "Bernie Sharkey", "id": 4255, "credit_id": "52fe49cc9251416c910b905d", "cast_id": 12, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 7}, {"name": "Ilfenesh Hadera", "character": "Judy", "id": 1181354, "credit_id": "52fe49cc9251416c910b9065", "cast_id": 14, "profile_path": "/eAqNW8ZEwmgAgSx9lgPMG4JObHl.jpg", "order": 8}, {"name": "Grey Damon", "character": "Young Joe", "id": 130769, "credit_id": "52fe49cc9251416c910b9069", "cast_id": 16, "profile_path": "/q3Dw5yaDiGTyET52YvYfi2Fa4Pv.jpg", "order": 9}, {"name": "Rami Malek", "character": "Browning", "id": 17838, "credit_id": "52fe49cc9251416c910b906d", "cast_id": 17, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 10}, {"name": "James Ransone", "character": "Dr. Tom Melby", "id": 5296, "credit_id": "52fe49cc9251416c910b9071", "cast_id": 18, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 11}, {"name": "Linda Emond", "character": "Edwina Burke", "id": 58643, "credit_id": "52fe49cc9251416c910b9075", "cast_id": 19, "profile_path": "/tJJs1Mj1e7G03bEBoin6JcGLlW7.jpg", "order": 12}, {"name": "Hannah Simone", "character": "Stephanie Lee", "id": 1181326, "credit_id": "52fe49cc9251416c910b9079", "cast_id": 20, "profile_path": "/hCTaw1EmmNWzxLXLpGQvAc5S2SM.jpg", "order": 13}, {"name": "Pom Klementieff", "character": "Haeng-Bok", "id": 139820, "credit_id": "5513bea2c3a3686195002c6a", "cast_id": 35, "profile_path": "/s3Cv5Z11yhrUqBP9cMcLZ6J4cRQ.jpg", "order": 14}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe49cb9251416c910b902f", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 6.0, "runtime": 104}, "38365": {"poster_path": "/rKPU178ngGRXPYnuO3cpCnZP6wJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 267420265, "overview": "After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.", "video": false, "id": 38365, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grown Ups", "tagline": "Boys will be boys. . . some longer than others.", "vote_count": 686, "homepage": "http://www.grownups-movie.com/", "belongs_to_collection": {"backdrop_path": "/ahlmYgIHI6oye76bgoUtC01mcrC.jpg", "poster_path": "/8m9PIgdP6Nj18P3thsyI70qs76s.jpg", "id": 180546, "name": "Grown Ups Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1375670", "adult": false, "backdrop_path": "/q4s8RTQFyLrEn2S8akWGMmc8mYX.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2010-06-24", "popularity": 1.01594501423804, "original_title": "Grown Ups", "budget": 80000000, "cast": [{"name": "Adam Sandler", "character": "Lenny Feder", "id": 19292, "credit_id": "52fe46b29251416c9105c999", "cast_id": 4, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Roxanne Chase-Feder", "id": 3136, "credit_id": "52fe46b29251416c9105c99d", "cast_id": 5, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Maria Bello", "character": "Sally Lamonsoff", "id": 49, "credit_id": "52fe46b29251416c9105c9a5", "cast_id": 7, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 2}, {"name": "Steve Buscemi", "character": "Wiley", "id": 884, "credit_id": "52fe46b29251416c9105c9a1", "cast_id": 6, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 3}, {"name": "Maya Rudolph", "character": "Deanne McKenzie", "id": 52792, "credit_id": "52fe46b29251416c9105c9ad", "cast_id": 9, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 4}, {"name": "Kevin James", "character": "Eric Lamonsoff", "id": 32895, "credit_id": "52fe46b29251416c9105c9a9", "cast_id": 8, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 5}, {"name": "Rob Schneider", "character": "Rob Hilliard", "id": 60949, "credit_id": "52fe46b29251416c9105c9b1", "cast_id": 10, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 6}, {"name": "Chris Rock", "character": "Kurt McKenzie", "id": 2632, "credit_id": "52fe46b29251416c9105c9b5", "cast_id": 11, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 7}, {"name": "Jamie Chung", "character": "Amber Hilliard", "id": 78324, "credit_id": "52fe46b29251416c9105c9b9", "cast_id": 12, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 8}, {"name": "David Spade", "character": "Marcus Higgins", "id": 60950, "credit_id": "52fe46b29251416c9105c9bd", "cast_id": 14, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 9}, {"name": "Ebony Jo-Ann", "character": "Mama Ronzoni", "id": 142377, "credit_id": "52fe46b29251416c9105c9c1", "cast_id": 15, "profile_path": "/Ra17Zik0PfabOcHTayW4k8CwB9.jpg", "order": 10}, {"name": "Di Quon", "character": "Rita", "id": 53281, "credit_id": "52fe46b29251416c9105c9c5", "cast_id": 16, "profile_path": "/9WAHACcLROdTOePDHi0hOUd6of0.jpg", "order": 11}, {"name": "Colin Quinn", "character": "Dickie Bailey", "id": 1219901, "credit_id": "52fe46b29251416c9105c9d5", "cast_id": 22, "profile_path": "/qKP3sURBluc5NG2g5LrKoVnY5iG.jpg", "order": 12}, {"name": "Tim Meadows", "character": "Malcolm", "id": 51857, "credit_id": "52fe46b29251416c9105c9c9", "cast_id": 19, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 13}, {"name": "Madison Riley", "character": "Jasmine Hilliard", "id": 101565, "credit_id": "52fe46b29251416c9105c9cd", "cast_id": 20, "profile_path": "/4TKPa7fkHSWB8V2KLamLyF3PlwD.jpg", "order": 14}, {"name": "Dan Patrick", "character": "Norby The Ride Guy", "id": 166029, "credit_id": "52fe46b29251416c9105c9d1", "cast_id": 21, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 15}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe46b29251416c9105c989", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.1, "runtime": 102}, "13223": {"poster_path": "/9ip2LgCyVMdovhJqY4mttTWfyo6.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 269958228, "overview": "Walt Kowalski, an iron-willed and inflexible Korean War veteran living in a changing world, is forced by his immigrant neighbors to confront his long-held prejudices.", "video": false, "id": 13223, "genres": [{"id": 18, "name": "Drama"}], "title": "Gran Torino", "tagline": "Ever come across somebody you shouldn't have messed with?", "vote_count": 880, "homepage": "http://www.thegrantorino.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1205489", "adult": false, "backdrop_path": "/w7oBCXL7gAwmYD7g0W17q8q1Ozc.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Matten Productions", "id": 27351}, {"name": "Double Nickel Entertainment", "id": 10138}, {"name": "Gerber Pictures", "id": 975}, {"name": "Malpaso Productions", "id": 171}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "WV Films IV", "id": 27352}], "release_date": "2008-12-11", "popularity": 1.49471451013287, "original_title": "Gran Torino", "budget": 33000000, "cast": [{"name": "Clint Eastwood", "character": "Walt Kowalski", "id": 190, "credit_id": "52fe454f9251416c750523ff", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Cory Hardrict", "character": "Duke", "id": 74302, "credit_id": "52fe454f9251416c75052403", "cast_id": 2, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 1}, {"name": "John Carroll Lynch", "character": "Barber", "id": 3911, "credit_id": "52fe454f9251416c75052407", "cast_id": 3, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 2}, {"name": "Geraldine Hughes", "character": "Karen Kowalski", "id": 16502, "credit_id": "52fe454f9251416c7505240b", "cast_id": 4, "profile_path": "/c1RaGjdaoRdX6n5BidukIg26J1A.jpg", "order": 3}, {"name": "Brian Haley", "character": "Mitch Kowalski", "id": 10138, "credit_id": "52fe454f9251416c7505240f", "cast_id": 5, "profile_path": "/oGaZ2sa0nHJ95vW7nN2TgjeeXGM.jpg", "order": 4}, {"name": "Dreama Walker", "character": "Ashley Kowalski", "id": 74303, "credit_id": "52fe454f9251416c75052413", "cast_id": 6, "profile_path": "/s0d0pYG4ZECFGt87bBu4iEORh0K.jpg", "order": 5}, {"name": "Doua Moua", "character": "Fong/Spider", "id": 74304, "credit_id": "52fe454f9251416c75052417", "cast_id": 7, "profile_path": "/d5ngQiY17waxRTRJxs5hfW6uTpQ.jpg", "order": 6}, {"name": "Brian Howe", "character": "Steve Kowalski", "id": 1990, "credit_id": "52fe454f9251416c7505241b", "cast_id": 8, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 7}, {"name": "Sarah Neubauer", "character": "Paralegal", "id": 74305, "credit_id": "52fe454f9251416c7505241f", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Lee Mong Vang", "character": "Hmong Gang Banger 3", "id": 74306, "credit_id": "52fe45509251416c75052423", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Nana Gbewonyo", "character": "Monk", "id": 74307, "credit_id": "52fe45509251416c75052427", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Christopher Carley", "character": "Father Janovich", "id": 74308, "credit_id": "52fe45509251416c7505242b", "cast_id": 12, "profile_path": "/BBn5WiOk52PjSixM4winXVL1Fp.jpg", "order": 11}, {"name": "Bee Vang", "character": "Tao Vang Lor", "id": 74309, "credit_id": "52fe45509251416c7505242f", "cast_id": 13, "profile_path": "/A66mKZmc2rTBm8to0UwucQWYGAq.jpg", "order": 12}, {"name": "John Anton", "character": "Family Friend", "id": 74310, "credit_id": "52fe45509251416c75052433", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Austin Douglas Smith", "character": "Daniel Kowalski", "id": 74311, "credit_id": "52fe45509251416c75052437", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Ahney Her", "character": "Sue Lor", "id": 74312, "credit_id": "52fe45509251416c7505243b", "cast_id": 16, "profile_path": "/7M4ygS8JbfLBMbJet1j7PXtHfrZ.jpg", "order": 15}, {"name": "Ramon Camacho", "character": "Latino #3", "id": 74313, "credit_id": "52fe45509251416c7505243f", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Rio Scafone", "character": "Day Planner", "id": 74314, "credit_id": "52fe45509251416c75052443", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Chee Thao", "character": "Grandma Vang Lor", "id": 1445218, "credit_id": "5511c154c3a3683e7f007d67", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Choua Kue", "character": "Youa", "id": 1445219, "credit_id": "5511c18fc3a36801bb001ee0", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe45509251416c75052449", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.4, "runtime": 116}, "13804": {"poster_path": "/kC8pOjxYpTDYWWmNLo41kkpPYux.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 363164265, "overview": "When a crime brings them back to L.A., fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy, Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.", "video": false, "id": 13804, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fast & Furious", "tagline": "New Model. Original Parts.", "vote_count": 1120, "homepage": "http://www.fastandfuriousmovie.net", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1013752", "adult": false, "backdrop_path": "/ivtqSfKW3JFDdnbBf9BRCL9ngLQ.jpg", "production_companies": [{"name": "Dentsu Inc.", "id": 1778}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "One Race Productions", "id": 1225}], "release_date": "2009-04-03", "popularity": 2.36198046589511, "original_title": "Fast & Furious", "budget": 85000000, "cast": [{"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe45a29251416c7505d387", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe45a29251416c7505d391", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Letty", "id": 17647, "credit_id": "52fe45a29251416c7505d395", "cast_id": 4, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "52fe45a29251416c7505d399", "cast_id": 5, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "John Ortiz", "character": "Campos", "id": 40543, "credit_id": "52fe45a29251416c7505d39d", "cast_id": 8, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 4}, {"name": "Laz Alonso", "character": "Fenix Rise", "id": 10964, "credit_id": "52fe45a29251416c7505d3a1", "cast_id": 9, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 5}, {"name": "Gal Gadot", "character": "Gisele Harabo", "id": 90633, "credit_id": "52fe45a29251416c7505d3a5", "cast_id": 10, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 6}, {"name": "Jack Conley", "character": "Penning", "id": 21675, "credit_id": "52fe45a29251416c7505d3a9", "cast_id": 11, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 7}, {"name": "Shea Whigham", "character": "Agent Ben Stasiak", "id": 74242, "credit_id": "52fe45a29251416c7505d3ad", "cast_id": 12, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 8}, {"name": "Liza Lapira", "character": "Agent Sophie Trinh", "id": 51998, "credit_id": "52fe45a39251416c7505d3b1", "cast_id": 13, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 9}, {"name": "Sung Kang", "character": "Han Lue", "id": 61697, "credit_id": "52fe45a39251416c7505d3b5", "cast_id": 14, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 10}, {"name": "Don Omar", "character": "Himself", "id": 90634, "credit_id": "52fe45a39251416c7505d3b9", "cast_id": 15, "profile_path": "/f1INIG2TE9jXXp5A3gGJR9UkePK.jpg", "order": 11}, {"name": "Brandon T. Jackson", "character": "Alex", "id": 53336, "credit_id": "52fe45a39251416c7505d3e1", "cast_id": 25, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 12}, {"name": "Mousa Kraish", "character": "Silvia Driver", "id": 54712, "credit_id": "53f6cb090e0a267f80006dfa", "cast_id": 35, "profile_path": "/bATns500G3T6he2yBeIVQSFRpiU.jpg", "order": 13}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe45a29251416c7505d38d", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 6.3, "runtime": 107}, "13805": {"poster_path": "/6xBrOsf8RtHem3diXDGFsiKltYz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14109284, "overview": "In DISASTER MOVIE, the filmmaking team behind the hits \"Scary Movie,\" \"Date Movie,\" \"Epic Movie\" and \"Meet The Spartans\" this time puts its unique, inimitable stamp on one of the biggest and most bloated movie genres of all time -- the disaster film.", "video": false, "id": 13805, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Disaster Movie", "tagline": "Your favorite movies are going to be destroyed.", "vote_count": 59, "homepage": "http://www.disastermovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1213644", "adult": false, "backdrop_path": "/rskyc6jadodyM1619SE7TIVdSYB.jpg", "production_companies": [{"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "LionsGate", "id": 7571}, {"name": "3 in the Box", "id": 19248}], "release_date": "2008-08-29", "popularity": 0.165434637307116, "original_title": "Disaster Movie", "budget": 25000000, "cast": [{"name": "Matt Lanter", "character": "Will", "id": 34202, "credit_id": "52fe45a39251416c7505d463", "cast_id": 5, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 0}, {"name": "Vanessa Lachey", "character": "Amy", "id": 20404, "credit_id": "52fe45a39251416c7505d467", "cast_id": 6, "profile_path": "/pS4nxWDSwimJz1yobwhgtFQ1u0M.jpg", "order": 1}, {"name": "Nicole Ari Parker", "character": "Enchanted Princess / Amy Winehouse Look-A-Like / Jessica Simpson Look-A-Like", "id": 74615, "credit_id": "52fe45a39251416c7505d46b", "cast_id": 7, "profile_path": "/vvEt8sXPKm9HxxDrHyg9aIxwvEM.jpg", "order": 2}, {"name": "Crista Flanagan", "character": "Juney / Hannah Montana", "id": 58957, "credit_id": "52fe45a39251416c7505d46f", "cast_id": 8, "profile_path": "/pLXGRqfV0nXNN1PdbfdleT8aQ5j.jpg", "order": 3}, {"name": "Gary 'G. Thang' Johnson", "character": "Calvin", "id": 1114053, "credit_id": "52fe45a39251416c7505d4af", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Ike Barinholtz", "character": "Wolf / Javier Bardem Look-A-Like / Police Officer / Hellboy / Batman / Beowulf / Prince Caspian", "id": 198150, "credit_id": "52fe45a39251416c7505d4b3", "cast_id": 20, "profile_path": "/j4cOnT9kT6AePfbPe3aZ5dSeDEk.jpg", "order": 5}, {"name": "Carmen Electra", "character": "Beautiful Assassin", "id": 28639, "credit_id": "52fe45a39251416c7505d4b7", "cast_id": 21, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 6}, {"name": "Tony Cox", "character": "Indiana Jones", "id": 19754, "credit_id": "52fe45a39251416c7505d4bb", "cast_id": 22, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 7}, {"name": "Tad Hilgenbrink", "character": "Prince", "id": 54593, "credit_id": "52fe45a39251416c7505d4bf", "cast_id": 23, "profile_path": "/uAZIVadEM5iaVlQPkxGCpZImYuF.jpg", "order": 8}, {"name": "Nick Steele", "character": "Underwear Model", "id": 181685, "credit_id": "52fe45a39251416c7505d4c3", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "John Di Domenico", "character": "Dr. Phil Look-A-Like / Love Guru", "id": 1114054, "credit_id": "52fe45a39251416c7505d4c7", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Valerie Wildman", "character": "Samantha", "id": 47884, "credit_id": "52fe45a39251416c7505d4cb", "cast_id": 26, "profile_path": "/6VveQx5v1ELVNjnvPWZg0Bgzw29.jpg", "order": 11}, {"name": "Jason Boegh", "character": "Male Carrie", "id": 981262, "credit_id": "52fe45a39251416c7505d4cf", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Kim Kardashian", "character": "Lisa", "id": 212225, "credit_id": "54cab719925141678c012489", "cast_id": 28, "profile_path": "/xUZiyy7GNAJIp69tTiKxDbFqOOq.jpg", "order": 13}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe45a39251416c7505d453", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe45a39251416c7505d459", "profile_path": null, "id": 35734}], "vote_average": 3.6, "runtime": 87}, "8643": {"poster_path": "/7QXvngB8daM5OXFGP9wlFPPgMTZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a younger girl called Emily Rose (Carpenter) dies, everyone puts blame on the exorcism which was performed on her by Father Moore (Wilkinson) prior to her death. The priest is arrested on suspicion of murder. The trail begins with lawyer Erin Bruner (Linney) representing Moore, but it is not going to be easy, as no one wants to believe what Father Moore says is true.", "video": false, "id": 8643, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Exorcism of Emily Rose", "tagline": "What happened to Emily?", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404032", "adult": false, "backdrop_path": "/6thnbe32tzVJlNHGmAKaHoQJRwP.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Firm Films", "id": 1838}], "release_date": "2005-09-09", "popularity": 0.958880391580391, "original_title": "The Exorcism of Emily Rose", "budget": 0, "cast": [{"name": "Laura Linney", "character": "Erin Bruner", "id": 350, "credit_id": "52fe44b1c3a36847f80a4a21", "cast_id": 1, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Father Moore", "id": 207, "credit_id": "52fe44b1c3a36847f80a4a25", "cast_id": 2, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Campbell Scott", "character": "Ethan Thomas", "id": 55152, "credit_id": "52fe44b1c3a36847f80a4a29", "cast_id": 3, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 2}, {"name": "Jennifer Carpenter", "character": "Emily Rose", "id": 53828, "credit_id": "52fe44b1c3a36847f80a4a2d", "cast_id": 4, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 3}, {"name": "Kenneth Welsh", "character": "Dr. Mueller", "id": 6074, "credit_id": "52fe44b1c3a36847f80a4a31", "cast_id": 5, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 4}, {"name": "Mary Beth Hurt", "character": "Judge Brewster", "id": 54782, "credit_id": "52fe44b1c3a36847f80a4a35", "cast_id": 6, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 5}, {"name": "Colm Feore", "character": "Karl Gunderson", "id": 10132, "credit_id": "52fe44b1c3a36847f80a4a39", "cast_id": 7, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 6}, {"name": "Henry Czerny", "character": "Dr. Briggs", "id": 15319, "credit_id": "54fc58c1925141237d002036", "cast_id": 70, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 7}, {"name": "Shohreh Aghdashloo", "character": "Dr. Adani", "id": 21041, "credit_id": "54fc58dd92514122be001eb3", "cast_id": 71, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 8}, {"name": "Duncan Fraser", "character": "Dr. Cartwright", "id": 14595, "credit_id": "54fc5906c3a368163800132a", "cast_id": 72, "profile_path": "/65nwyXassO3PmeL8vvC7DKDXcSM.jpg", "order": 9}, {"name": "Mary Black", "character": "Dr. Vogel", "id": 11831, "credit_id": "54fc592a9251412329001ed7", "cast_id": 73, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 10}, {"name": "Julian Christopher", "character": "District Attorney", "id": 60606, "credit_id": "54fc594ec3a36869fb004548", "cast_id": 74, "profile_path": null, "order": 11}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe44b1c3a36847f80a4a4b", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 6.6, "runtime": 122}, "13809": {"poster_path": "/9tnHUDuUDrNJxJ3raxpKIrnYXlH.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 25739015, "overview": "When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.", "video": false, "id": 13809, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "RockNRolla", "tagline": "A story of sex, thugs and rock 'n roll.", "vote_count": 249, "homepage": "http://rocknrolla.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1032755", "adult": false, "backdrop_path": "/axbO2zZWdSzF7Y2tnSve9QIEhiV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Toff Guy Films", "id": 2900}], "release_date": "2008-10-30", "popularity": 0.590004281280566, "original_title": "RockNRolla", "budget": 18000000, "cast": [{"name": "Mark Strong", "character": "Archy", "id": 2983, "credit_id": "52fe45a49251416c7505d67b", "cast_id": 20, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Lenny Cole", "id": 207, "credit_id": "52fe45a49251416c7505d65b", "cast_id": 10, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Toby Kebbell", "character": "Johnny Quid", "id": 20286, "credit_id": "52fe45a49251416c7505d64b", "cast_id": 6, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 2}, {"name": "Gerard Butler", "character": "One-Two", "id": 17276, "credit_id": "52fe45a49251416c7505d647", "cast_id": 5, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 3}, {"name": "Tom Hardy", "character": "Handsome Bob", "id": 2524, "credit_id": "52fe45a49251416c7505d663", "cast_id": 12, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 4}, {"name": "Idris Elba", "character": "Mumbles", "id": 17605, "credit_id": "52fe45a49251416c7505d677", "cast_id": 19, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 5}, {"name": "Karel Roden", "character": "Uri Omovich", "id": 10841, "credit_id": "52fe45a49251416c7505d657", "cast_id": 9, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 6}, {"name": "Thandie Newton", "character": "Stella", "id": 9030, "credit_id": "52fe45a49251416c7505d653", "cast_id": 8, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 7}, {"name": "Matt King", "character": "Cookie", "id": 23776, "credit_id": "52fe45a49251416c7505d65f", "cast_id": 11, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 8}, {"name": "Gemma Arterton", "character": "June", "id": 59620, "credit_id": "52fe45a49251416c7505d643", "cast_id": 4, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 9}, {"name": "Jeremy Piven", "character": "Roman", "id": 12799, "credit_id": "52fe45a49251416c7505d673", "cast_id": 17, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 10}, {"name": "Jimi Mistry", "character": "Councillor", "id": 16756, "credit_id": "52fe45a49251416c7505d64f", "cast_id": 7, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 11}, {"name": "Jamie Campbell Bower", "character": "Rocker", "id": 83356, "credit_id": "52fe45a49251416c7505d6cb", "cast_id": 35, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 12}, {"name": "Nonso Anozie", "character": "Tank", "id": 43547, "credit_id": "52fe45a49251416c7505d63b", "cast_id": 2, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 13}, {"name": "Charlotte Armer", "character": "Nurse", "id": 76970, "credit_id": "52fe45a49251416c7505d63f", "cast_id": 3, "profile_path": null, "order": 14}, {"name": "Ludacris", "character": "Mickey", "id": 8171, "credit_id": "52fe45a49251416c7505d67f", "cast_id": 21, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 15}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe45a49251416c7505d637", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.7, "runtime": 114}, "13811": {"poster_path": "/xEVriTTbxSSCJaPPdDSkDVs4qgv.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155446362, "overview": "A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold.", "video": false, "id": 13811, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Knowing", "tagline": "Knowing is everything...", "vote_count": 343, "homepage": "http://knowing-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0448011", "adult": false, "backdrop_path": "/p6WG7DkWT7VmUwgQuEZyPpKXWyX.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Escape Artists", "id": 1423}, {"name": "Mystery Clock Cinema", "id": 908}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Kaplan/Perrone Entertainment", "id": 11844}, {"name": "Wintergreen Productions", "id": 11845}], "release_date": "2009-03-20", "popularity": 1.09935380832699, "original_title": "Knowing", "budget": 50000000, "cast": [{"name": "Nicolas Cage", "character": "John Koestler", "id": 2963, "credit_id": "52fe45a49251416c7505d729", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Diana Wayland", "id": 9827, "credit_id": "52fe45a49251416c7505d72d", "cast_id": 3, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Chandler Canterbury", "character": "Caleb Koestler", "id": 77334, "credit_id": "52fe45a49251416c7505d731", "cast_id": 4, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 2}, {"name": "Ben Mendelsohn", "character": "Phil Bergman", "id": 77335, "credit_id": "52fe45a49251416c7505d735", "cast_id": 5, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 3}, {"name": "Nadia Townsend", "character": "Grace Koestler", "id": 77336, "credit_id": "52fe45a49251416c7505d739", "cast_id": 6, "profile_path": "/77grxfgmX7ysAy6C3IIKphHgeaz.jpg", "order": 4}, {"name": "D.G. Maloney", "character": "The Stranger", "id": 84963, "credit_id": "52fe45a49251416c7505d74f", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Lara Robinson", "character": "Lucinda Embry / Abby Wayland", "id": 84964, "credit_id": "52fe45a49251416c7505d753", "cast_id": 11, "profile_path": "/ycvh7d0pO4yiaeGM09JiBTdmD8m.jpg", "order": 6}, {"name": "Alan Hopgood", "character": "Rev. Koestler", "id": 44842, "credit_id": "52fe45a49251416c7505d757", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Adrienne Pickering", "character": "Allison", "id": 37292, "credit_id": "52fe45a49251416c7505d75b", "cast_id": 13, "profile_path": "/yMR3N1oXPbcfntLZrI2Tv2MpBXo.jpg", "order": 8}, {"name": "Joshua Long", "character": "Younger Caleb", "id": 84965, "credit_id": "52fe45a49251416c7505d75f", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Alethea McGrath", "character": "Miss Taylor (2009)", "id": 79106, "credit_id": "52fe45a49251416c7505d763", "cast_id": 15, "profile_path": "/5AuTSkd7hdv5zCa6Kr1oVncEmwB.jpg", "order": 10}, {"name": "Danielle Carter", "character": "Miss Taylor (1959)", "id": 84966, "credit_id": "52fe45a49251416c7505d767", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Tamara Donnellan", "character": "Lucinda's Mother", "id": 84967, "credit_id": "52fe45a49251416c7505d76b", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Travis Waite", "character": "Lucinda's Father", "id": 84968, "credit_id": "52fe45a49251416c7505d76f", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe45a49251416c7505d725", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 5.6, "runtime": 121}, "13812": {"poster_path": "/diJgLy6vSGbNYNW5jZ1YpX7PHJ4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40855419, "overview": "A television reporter and her cameraman are trapped inside a building quarantined by the CDC after the outbreak of a mysterious virus which turns humans into bloodthirsty killers.", "video": false, "id": 13812, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Quarantine", "tagline": "Contain The Truth.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": "/89oRW30VYEZaQHo94Vcuct9uF7G.jpg", "poster_path": "/Aa0hh5DGedQPdFs2e43uRzqXw50.jpg", "id": 123932, "name": "Quarantine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1082868", "adult": false, "backdrop_path": "/mQXCYqGUPt4Ld6UX6uljM5azbGb.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Andale Pictures", "id": 22791}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2008-10-10", "popularity": 0.174555822953716, "original_title": "Quarantine", "budget": 12000000, "cast": [{"name": "Jennifer Carpenter", "character": "Angela Vidal", "id": 53828, "credit_id": "52fe45a59251416c7505d7ef", "cast_id": 1, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 0}, {"name": "Steve Harris", "character": "Scott Percival", "id": 2202, "credit_id": "52fe45a59251416c7505d7f3", "cast_id": 2, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 1}, {"name": "Jay Hernandez", "character": "Jake", "id": 19487, "credit_id": "52fe45a59251416c7505d7f7", "cast_id": 3, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 2}, {"name": "Johnathon Schaech", "character": "George Fletcher", "id": 51670, "credit_id": "52fe45a59251416c7505d7fb", "cast_id": 4, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 3}, {"name": "Columbus Short", "character": "Danny Wilensky", "id": 31132, "credit_id": "535e4108c3a368309100512d", "cast_id": 13, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 4}, {"name": "Andrew Fiscella", "character": "James McCreedy", "id": 65699, "credit_id": "535e411bc3a3682273001840", "cast_id": 14, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 5}, {"name": "Rade \u0160erbed\u017eija", "character": "Yuri Ivanov", "id": 1118, "credit_id": "535e4143c3a3683091005137", "cast_id": 15, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 6}, {"name": "Greg Germann", "character": "Lawrence", "id": 19974, "credit_id": "535e4151c3a3683099005339", "cast_id": 16, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 7}, {"name": "Bernard White", "character": "Bernard", "id": 156739, "credit_id": "535e4162c3a36830a0005141", "cast_id": 17, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 8}, {"name": "Dania Ramirez", "character": "Sadie", "id": 37046, "credit_id": "52fe45a59251416c7505d805", "cast_id": 6, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 9}, {"name": "Marin Hinkle", "character": "Kathy", "id": 65760, "credit_id": "52fe45a59251416c7505d815", "cast_id": 10, "profile_path": "/gqMABmd8yE6nhpdK900zqRDEjor.jpg", "order": 10}, {"name": "Joey King", "character": "Briana", "id": 125025, "credit_id": "52fe45a59251416c7505d809", "cast_id": 7, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 11}, {"name": "Jermaine Jackson", "character": "Nadif", "id": 207070, "credit_id": "52fe45a59251416c7505d80d", "cast_id": 8, "profile_path": "/mZd9phXItSn0NuPqyMNdF1S8BQ0.jpg", "order": 12}, {"name": "Denis O'Hare", "character": "Randy", "id": 81681, "credit_id": "52fe45a59251416c7505d811", "cast_id": 9, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 13}], "directors": [{"name": "John Erick Dowdle", "department": "Directing", "job": "Director", "credit_id": "52fe45a59251416c7505d801", "profile_path": null, "id": 77147}], "vote_average": 5.6, "runtime": 89}, "13813": {"poster_path": "/3Iu1jCiWxeLJZeNczzRwMi9OWPk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56462926, "overview": "During World War II, four Jewish brothers escape their Nazi-occupied homeland of West Belarus in Poland and join the Soviet partisans to combat the Nazis. The brothers begin the rescue of roughly 1,200 Jews still trapped in the ghettos of Poland. Based on a true story.", "video": false, "id": 13813, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Defiance", "tagline": "Freedom begins with an act of defiance!", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034303", "adult": false, "backdrop_path": "/aUTWjvYrIl1ssc1QQje91WaqbZ4.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Grosvenor Park Productions", "id": 17449}, {"name": "Bedford Falls Company, The", "id": 20634}, {"name": "Defiance Productions", "id": 20635}, {"name": "Pistachio Pictures", "id": 20636}], "release_date": "2008-12-31", "popularity": 0.523332726835204, "original_title": "Defiance", "budget": 32000000, "cast": [{"name": "Daniel Craig", "character": "Tuvia Bielski", "id": 8784, "credit_id": "52fe45a59251416c7505d841", "cast_id": 2, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Liev Schreiber", "character": "Zus Bielski", "id": 23626, "credit_id": "52fe45a59251416c7505d845", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Asael Bielski", "id": 478, "credit_id": "52fe45a59251416c7505d849", "cast_id": 4, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Mia Wasikowska", "character": "Chaya Dziencielsky", "id": 76070, "credit_id": "52fe45a59251416c7505d84d", "cast_id": 5, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 3}, {"name": "Alexa Davalos", "character": "Lilka Ticktin", "id": 28109, "credit_id": "52fe45a59251416c7505d85d", "cast_id": 8, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 4}, {"name": "Iben Hjejle", "character": "Bella", "id": 1562, "credit_id": "52fe45a59251416c7505d861", "cast_id": 9, "profile_path": "/t0areKrmJIoopPaKzPCY7ILuUze.jpg", "order": 5}, {"name": "Allan Corduner", "character": "Shimon Haretz", "id": 78018, "credit_id": "531997b4c3a3685c5d002ad3", "cast_id": 17, "profile_path": "/t9w2Hi6DLMMXa4tVfnBWmW8ky71.jpg", "order": 6}, {"name": "Mark Feuerstein", "character": "Isaac Malbin", "id": 11365, "credit_id": "531997cfc3a3685c31002ad4", "cast_id": 18, "profile_path": "/jIYKKgr0pMUwuvajITsFSPv6ash.jpg", "order": 7}, {"name": "Tomas Arana", "character": "Ben Zion Gulkowitz", "id": 941, "credit_id": "531997e3c3a3685c37002ae8", "cast_id": 19, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 8}, {"name": "Jodhi May", "character": "Tamara Skidelsky", "id": 57449, "credit_id": "531997f9c3a3685c37002aea", "cast_id": 20, "profile_path": "/dJQrUVE4Pl9c5FPL0OVNB8DPY0Y.jpg", "order": 9}, {"name": "Kate Fahy", "character": "Riva Reich", "id": 239494, "credit_id": "53199809c3a3685c37002aee", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Iddo Goldberg", "character": "Yitzhak Shulman", "id": 94958, "credit_id": "5319983dc3a3685c5d002ada", "cast_id": 22, "profile_path": "/VXjK4ZcvDMLOpkE3egiKNzM9HN.jpg", "order": 11}, {"name": "Martin Hancock", "character": "Peretz Shorshaty", "id": 28158, "credit_id": "53199868c3a3685c3d002ab4", "cast_id": 24, "profile_path": "/dgM78QCzhwi7T8US2GxLytsngke.jpg", "order": 13}, {"name": "Ravil Isyanov", "character": "Viktor Panchenko", "id": 41742, "credit_id": "531998abc3a3685c510029ec", "cast_id": 25, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 14}, {"name": "Jacek Koman", "character": "Konstanty 'Koscik' Kozlowski", "id": 12210, "credit_id": "531998bec3a3685c43002b39", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "George MacKay", "character": "Aron Bielski", "id": 146750, "credit_id": "531998cdc3a3685c31002ae1", "cast_id": 27, "profile_path": "/8V5uGgbl57gbAyj59kIRFFdvoXd.jpg", "order": 16}, {"name": "Antanas \u0160urna", "character": "Orthodox Rabbi", "id": 1153516, "credit_id": "53aaaf450e0a2646d8003626", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Markus von Lingen", "character": "German SS Scout", "id": 32448, "credit_id": "54ceb500925141475500691d", "cast_id": 82, "profile_path": null, "order": 18}, {"name": "Klemens Becker", "character": "SS Captain", "id": 1332515, "credit_id": "54ceb54e9251415fb30050fe", "cast_id": 83, "profile_path": null, "order": 19}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe45a59251416c7505d83d", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.6, "runtime": 137}, "38408": {"poster_path": "/u7Gei2Hvh0ux4weJRDZsgMoXSTI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105610124, "overview": "Holly and Eric were set up on a blind date by their friends, Peter and Allison who are married. A few years later after Peter and Allison were killed in an accident, they learn that Peter and Allison have named them as the guardians to their daughter, Sophie. So they move into their house and try their best to honor their friends' wishes. But raising a child puts a crimp on their style and they don't exactly get along.", "video": false, "id": 38408, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Life as We Know It", "tagline": "A comedy about taking it one step at a time.", "vote_count": 164, "homepage": "http://lifeasweknowitmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1055292", "adult": false, "backdrop_path": "/few3uz5eiHGc0d87PGXG9pSHfMU.jpg", "production_companies": [{"name": "Josephson Entertainment", "id": 1894}], "release_date": "2010-10-08", "popularity": 0.817088524749681, "original_title": "Life as We Know It", "budget": 38000000, "cast": [{"name": "Katherine Heigl", "character": "Holly Berenson", "id": 25541, "credit_id": "52fe46b69251416c9105d34f", "cast_id": 4, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Eric Messer", "id": 19536, "credit_id": "52fe46b69251416c9105d353", "cast_id": 5, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Christina Hendricks", "character": "Alison Novack", "id": 110014, "credit_id": "52fe46b69251416c9105d357", "cast_id": 6, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 2}, {"name": "Josh Lucas", "character": "Sam", "id": 6164, "credit_id": "52fe46b69251416c9105d35b", "cast_id": 7, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 3}, {"name": "Jean Smart", "character": "Helen Berenson", "id": 5376, "credit_id": "52fe46b69251416c9105d35f", "cast_id": 8, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 4}, {"name": "Melissa McCarthy", "character": "DeeDee", "id": 55536, "credit_id": "52fe46b69251416c9105d363", "cast_id": 9, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 5}, {"name": "Faizon Love", "character": "Walter", "id": 62066, "credit_id": "52fe46b69251416c9105d367", "cast_id": 11, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 6}, {"name": "Majandra Delfino", "character": "Jenna", "id": 35552, "credit_id": "52fe46b69251416c9105d36b", "cast_id": 12, "profile_path": "/uT6P72uBNBTyYxzIEMDTbYDpvMA.jpg", "order": 7}, {"name": "Alexis Clagett", "character": "Sophie", "id": 970332, "credit_id": "52fe46b69251416c9105d399", "cast_id": 20, "profile_path": "/qs19Ioqp82NMtFmi4abSUMx0qp4.jpg", "order": 8}, {"name": "Hayes MacArthur", "character": "Peter Novak", "id": 74930, "credit_id": "52fe46b69251416c9105d39d", "cast_id": 21, "profile_path": "/semGIgbhjhtBR0PncRzRmdttSJz.jpg", "order": 9}, {"name": "Johanna Jowett", "character": "Jill", "id": 168688, "credit_id": "52fe46b69251416c9105d3a1", "cast_id": 22, "profile_path": "/km29q7BsjIPUwJpVKcPlfmFLAx3.jpg", "order": 10}], "directors": [{"name": "Greg Berlanti", "department": "Directing", "job": "Director", "credit_id": "52fe46b69251416c9105d33f", "profile_path": "/eJSBZ7N6YDL7d50Z1t0gJp1CgZx.jpg", "id": 88967}], "vote_average": 6.4, "runtime": 115}, "13836": {"poster_path": "/jKGmK0nWoPNnHypfWgL7ZI7fN5Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 106303988, "overview": "A taxi driver gets more than he bargained for when he picks up two teen runaways. Not only does the pair possess supernatural powers, but they're also trying desperately to escape people who have made them their targets.", "video": false, "id": 13836, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "Race to Witch Mountain", "tagline": "The race is on", "vote_count": 139, "homepage": "http://disneydvd.disney.go.com/race-to-witch-mountain.html", "belongs_to_collection": {"backdrop_path": "/aXZ0LmSgLT1ZiNWnJ5qKaQHqBiC.jpg", "poster_path": "/oRRNvL1dqOUtagbRL1vainpibJf.jpg", "id": 90348, "name": "Witch Mountain Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1075417", "adult": false, "backdrop_path": "/8hevGT9ggNAXE8YB0iueOkx6OxT.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Gunn Films", "id": 3538}], "release_date": "2009-03-12", "popularity": 0.663071582881536, "original_title": "Race to Witch Mountain", "budget": 50000000, "cast": [{"name": "Dwayne Johnson", "character": "Jack Bruno", "id": 18918, "credit_id": "52fe45ac9251416c7505e7e1", "cast_id": 2, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "AnnaSophia Robb", "character": "Sara", "id": 1285, "credit_id": "52fe45ac9251416c7505e7dd", "cast_id": 1, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 1}, {"name": "Alexander Ludwig", "character": "Seth", "id": 23498, "credit_id": "52fe45ac9251416c7505e7eb", "cast_id": 4, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 2}, {"name": "Carla Gugino", "character": "Dr. Alex Friedman", "id": 17832, "credit_id": "52fe45ac9251416c7505e7ef", "cast_id": 5, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 3}, {"name": "Chris Marquette", "character": "Pope", "id": 59238, "credit_id": "52fe45ac9251416c7505e7f3", "cast_id": 6, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 4}, {"name": "Kim Richards", "character": "Tina", "id": 53261, "credit_id": "52fe45ac9251416c7505e7f7", "cast_id": 7, "profile_path": "/jTO90DPcHXesL7cSudasucD9xGW.jpg", "order": 5}, {"name": "Meredith Salenger", "character": "Natalie Gann", "id": 18706, "credit_id": "52fe45ac9251416c7505e7fb", "cast_id": 8, "profile_path": "/tSViHUajIO0k49bFwIy42OqfbGq.jpg", "order": 6}, {"name": "Ciar\u00e1n Hinds", "character": "Burke", "id": 8785, "credit_id": "52fe45ac9251416c7505e80b", "cast_id": 11, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 7}, {"name": "Tom Everett Scott", "character": "Matheson", "id": 16857, "credit_id": "52fe45ac9251416c7505e80f", "cast_id": 12, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 8}, {"name": "Billy Brown", "character": "Carson", "id": 64805, "credit_id": "52fe45ac9251416c7505e813", "cast_id": 13, "profile_path": "/tEyVvi3dY3LDxSpTA3a7nK6nMGv.jpg", "order": 9}, {"name": "Tom Woodruff Jr.", "character": "Siphon", "id": 109870, "credit_id": "52fe45ac9251416c7505e817", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Bob Clendenin", "character": "Lloyd", "id": 129661, "credit_id": "52fe45ac9251416c7505e81b", "cast_id": 15, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 11}, {"name": "Robert Torti", "character": "Dominick", "id": 74933, "credit_id": "52fe45ac9251416c7505e81f", "cast_id": 16, "profile_path": "/dPzxmVKTdMPhYiMjAbScn3peKFt.jpg", "order": 12}, {"name": "John Kassir", "character": "Chuck", "id": 31365, "credit_id": "52fe45ac9251416c7505e823", "cast_id": 17, "profile_path": "/dC0Icg60BabhLJFwR0FbZzFazPq.jpg", "order": 13}, {"name": "Garry Marshall", "character": "Dr. Donald Harlan", "id": 1201, "credit_id": "52fe45ac9251416c7505e827", "cast_id": 18, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 14}, {"name": "Ike Eisenmann", "character": "Sheriff Antony", "id": 87066, "credit_id": "52fe45ac9251416c7505e82b", "cast_id": 19, "profile_path": "/w37MJao2bS0EgGRpryckVlkjd90.jpg", "order": 15}, {"name": "Cheech Marin", "character": "Eddie", "id": 11159, "credit_id": "52fe45ac9251416c7505e82f", "cast_id": 20, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 16}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe45ac9251416c7505e7e7", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.5, "runtime": 98}, "87567": {"poster_path": "/bPYDvbXRrb5d4FFyn4kb93J8I4X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21819348, "overview": "To the amusement of their adult children and friends, long divorced couple Don and Ellie Griffin are once again forced to play the happy couple for the sake of their adopted son's wedding after his ultra conservative biological mother unexpectedly decides to fly halfway across the world to attend. With all of the wedding guests looking on, the Griffins are hilariously forced to confront their past, present and future - and hopefully avoid killing each other in the process.", "video": false, "id": 87567, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Big Wedding", "tagline": "It's never too late to start acting like a family", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt1931435", "adult": false, "backdrop_path": "/aNoSj41EVXCCLF0x7jiEVzbm1fb.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Two Ton Films", "id": 17049}], "release_date": "2013-04-25", "popularity": 0.690117662550662, "original_title": "The Big Wedding", "budget": 35000000, "cast": [{"name": "Robert De Niro", "character": "Don Griffin", "id": 380, "credit_id": "52fe49cd9251416c910b9399", "cast_id": 13, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Ellie Griffin", "id": 3092, "credit_id": "52fe49cd9251416c910b93a5", "cast_id": 16, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Katherine Heigl", "character": "Lyla Griffin", "id": 25541, "credit_id": "52fe49cd9251416c910b9395", "cast_id": 12, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Missy O'Connor", "id": 71070, "credit_id": "52fe49cd9251416c910b9391", "cast_id": 11, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Topher Grace", "character": "Jared Griffin", "id": 17052, "credit_id": "52fe49cd9251416c910b93a1", "cast_id": 15, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 4}, {"name": "Susan Sarandon", "character": "Bebe McBride", "id": 4038, "credit_id": "52fe49cd9251416c910b93ad", "cast_id": 18, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 5}, {"name": "Robin Williams", "character": "Father Monaghan", "id": 2157, "credit_id": "52fe49cd9251416c910b939d", "cast_id": 14, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 6}, {"name": "Ben Barnes", "character": "Alejandro Griffin", "id": 25130, "credit_id": "52fe49cd9251416c910b93a9", "cast_id": 17, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 7}, {"name": "Christa Campbell", "character": "Kim", "id": 85178, "credit_id": "52fe49cd9251416c910b93b1", "cast_id": 20, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 8}, {"name": "Kyle Bornheimer", "character": "Andrew", "id": 1215836, "credit_id": "52fe49cd9251416c910b93d1", "cast_id": 28, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 9}, {"name": "Christine Ebersole", "character": "Muffin", "id": 4003, "credit_id": "52fe49cd9251416c910b93c1", "cast_id": 24, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 10}, {"name": "David Rasche", "character": "Barry", "id": 33533, "credit_id": "52fe49cd9251416c910b93c5", "cast_id": 25, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 11}, {"name": "Patricia Rae", "character": "Madonna", "id": 5973, "credit_id": "52fe49cd9251416c910b93c9", "cast_id": 26, "profile_path": "/vkVhCraBD2yOzEwCIFTGwyCbWNO.jpg", "order": 12}, {"name": "Ana Ayora", "character": "Nuria", "id": 1077805, "credit_id": "52fe49cd9251416c910b93cd", "cast_id": 27, "profile_path": "/wgGn3cdDLE34d2bpBEQ2SyuEuyb.jpg", "order": 13}, {"name": "Megan Ketch", "character": "Jane", "id": 995197, "credit_id": "52fe49cd9251416c910b93d5", "cast_id": 29, "profile_path": "/cu4ltcT6bUXhUREo4fXy54Jwscw.jpg", "order": 14}], "directors": [{"name": "Justin Zackham", "department": "Directing", "job": "Director", "credit_id": "52fe49cd9251416c910b9357", "profile_path": "/9o2IlJ8teyCULKzxG9NGMGugxBR.jpg", "id": 52599}], "vote_average": 5.5, "runtime": 90}, "2309": {"poster_path": "/3yIVMwPDrWLeZ8fJ5HLbGWnCz9f.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57490374, "overview": "An adventure of a father and his young daughter, searching for a long lost book that will help reunite a missing, close relative, this fantasy takes a darker side whenever we hear Mo 'Silvertongue' Folchart reading out aloud from books.", "video": false, "id": 2309, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Inkheart", "tagline": "Every story ever written is just waiting to become real.", "vote_count": 126, "homepage": "http://www.inkheartmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0494238", "adult": false, "backdrop_path": "/a5N45mYvCVd7Pmy4JKdvgBKZscG.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Internationale Filmproduktion Blackbird Erste", "id": 20360}], "release_date": "2008-12-17", "popularity": 0.871725907767514, "original_title": "Inkheart", "budget": 60000000, "cast": [{"name": "Brendan Fraser", "character": "Mo 'Silvertongue' Folchart", "id": 18269, "credit_id": "52fe434cc3a36847f8049b5f", "cast_id": 28, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Sienna Guillory", "character": "Resa", "id": 7055, "credit_id": "52fe434cc3a36847f8049b57", "cast_id": 26, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 1}, {"name": "Andy Serkis", "character": "Capricorn", "id": 1333, "credit_id": "52fe434cc3a36847f8049b3b", "cast_id": 19, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 2}, {"name": "Eliza Bennett", "character": "Meggie Folchart", "id": 23775, "credit_id": "52fe434cc3a36847f8049b3f", "cast_id": 20, "profile_path": "/fdJ729tbU48xUNVqG4k27NrPYMg.jpg", "order": 3}, {"name": "Paul Bettany", "character": "Dustfinger", "id": 6162, "credit_id": "52fe434cc3a36847f8049b43", "cast_id": 21, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 4}, {"name": "Jim Broadbent", "character": "Fenoglio", "id": 388, "credit_id": "52fe434cc3a36847f8049b47", "cast_id": 22, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 5}, {"name": "Helen Mirren", "character": "Elinor Loredan", "id": 15735, "credit_id": "52fe434cc3a36847f8049b4b", "cast_id": 23, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 6}, {"name": "Matt King", "character": "Cockerell", "id": 23776, "credit_id": "52fe434cc3a36847f8049b4f", "cast_id": 24, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 7}, {"name": "Rafi Gavron", "character": "Farid", "id": 21660, "credit_id": "52fe434cc3a36847f8049b53", "cast_id": 25, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 8}, {"name": "Marnix Van Den Broeke", "character": "The Shadow", "id": 56475, "credit_id": "52fe434cc3a36847f8049b5b", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Richard Strange", "character": "Bookshop Proprietor", "id": 79502, "credit_id": "52fe434cc3a36847f8049b63", "cast_id": 29, "profile_path": "/gW6LnjcXxcfaAMpM5YyEKePeezR.jpg", "order": 10}, {"name": "Steve Speirs", "character": "Flatnose", "id": 25441, "credit_id": "52fe434cc3a36847f8049b67", "cast_id": 30, "profile_path": "/cCNJouXVxnXJv9j26PaEWJxIkOE.jpg", "order": 11}, {"name": "Jamie Foreman", "character": "Basta", "id": 3543, "credit_id": "52fe434cc3a36847f8049b6b", "cast_id": 31, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 12}, {"name": "Stephen Graham", "character": "Fulvio", "id": 1115, "credit_id": "52fe434cc3a36847f8049b6f", "cast_id": 32, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 13}, {"name": "Mirabel O'Keefe", "character": "Young Meggie", "id": 983695, "credit_id": "52fe434cc3a36847f8049b73", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "John Thomson", "character": "Darius", "id": 7321, "credit_id": "52fe434cc3a36847f8049b77", "cast_id": 34, "profile_path": "/4KJpOMWTVn71rSddvlvByOVRoNb.jpg", "order": 15}, {"name": "Lesley Sharp", "character": "Mortola", "id": 80366, "credit_id": "52fe434cc3a36847f8049b83", "cast_id": 38, "profile_path": "/xaZY2lBXwS2Oa4a87qg1yxN6EgE.jpg", "order": 16}, {"name": "Tereza Srbova", "character": "Rapunzel", "id": 230178, "credit_id": "52fe434cc3a36847f8049b7b", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Helen Soraya", "character": "Masquerade Ball Dancer", "id": 1105459, "credit_id": "52fe434cc3a36847f8049b7f", "cast_id": 37, "profile_path": "/sdjlyzUXrx5qAZ0cMISZjnLwvTX.jpg", "order": 18}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe434cc3a36847f8049ad1", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.1, "runtime": 106}, "205321": {"poster_path": "/fhjfcjNBY8FcyxR8hRZ2H19zN6Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A freak hurricane hits Los Angeles, causing man-eating sharks to be scooped up in tornadoes and flooding the city with shark-infested seawater. Surfer and bar-owner Fin sets out with his friends Baz and Nova to rescue his estranged wife April and teenage daughter Claudia", "video": false, "id": 205321, "genres": [{"id": 27, "name": "Horror"}], "title": "Sharknado", "tagline": "Enough said!", "vote_count": 167, "homepage": "http://www.theasylum.cc/product.php?id=230", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 286023, "name": "Sharknado Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2724064", "adult": false, "backdrop_path": "/nQ5Is9ZfFNMk7cRophov7ISPkrA.jpg", "production_companies": [{"name": "The Asylum", "id": 1311}, {"name": "Southward Films", "id": 22872}], "release_date": "2013-07-11", "popularity": 0.463931024853865, "original_title": "Sharknado", "budget": 1000000, "cast": [{"name": "Ian Ziering", "character": "Fin Shepard", "id": 19146, "credit_id": "52fe4d05c3a368484e1d2c93", "cast_id": 15, "profile_path": "/j4enDmt6JL3hmWlLuEbQW0xe40Z.jpg", "order": 0}, {"name": "Tara Reid", "character": "April", "id": 1234, "credit_id": "52fe4d05c3a368484e1d2c5f", "cast_id": 3, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 1}, {"name": "Cassie Scerbo", "character": "Nova", "id": 78031, "credit_id": "52fe4d06c3a368484e1d2caf", "cast_id": 22, "profile_path": "/5AB4NfbGSGvrSqGi6KpHnCVrWLW.jpg", "order": 2}, {"name": "John Heard", "character": "George", "id": 11512, "credit_id": "52fe4d05c3a368484e1d2c97", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Jaason Simmons", "character": "Baz", "id": 31633, "credit_id": "52fe4d06c3a368484e1d2cb3", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "Sumiko Braun", "character": "Deanna", "id": 1189243, "credit_id": "52fe4d05c3a368484e1d2c9b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Adrian Bustamante", "character": "Kelso", "id": 1157373, "credit_id": "52fe4d05c3a368484e1d2c9f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Diane Chambers", "character": "Agnes", "id": 1181340, "credit_id": "52fe4d05c3a368484e1d2ca3", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Chuck Hittinger", "character": "Matt", "id": 78045, "credit_id": "52fe4d06c3a368484e1d2ca7", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Aubrey Peeples", "character": "Claudia", "id": 1189982, "credit_id": "52fe4d06c3a368484e1d2cab", "cast_id": 21, "profile_path": "/iSHAtU1Q90Dnian3NYWaG3EY8Hc.jpg", "order": 9}, {"name": "Connor Weil", "character": "Luellyn", "id": 1085677, "credit_id": "52fe4d06c3a368484e1d2cb7", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Christopher Wolfe", "character": "Colin", "id": 1189983, "credit_id": "52fe4d06c3a368484e1d2cbb", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Robbie Rist", "character": "Bus Driver", "id": 77157, "credit_id": "52fe4d06c3a368484e1d2cbf", "cast_id": 26, "profile_path": "/bFpVHAJNNKOPQ230ALYLepwm1yE.jpg", "order": 12}], "directors": [{"name": "Anthony C. Ferrante", "department": "Directing", "job": "Director", "credit_id": "52fe4d05c3a368484e1d2c55", "profile_path": null, "id": 85822}], "vote_average": 3.8, "runtime": 86}, "226857": {"poster_path": "/wWkTnQosziIXEePOyunr53el8fe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34077920, "overview": "When beautiful Jade (Gabriella Wilde) meets charismatic David (Alex Pettyfer), her sheltered world of privilege is turned upside down as the pair's instant desire sparks a reckless summer love affair. While Jade leaves behind her inhibitions and innocence as she falls for David, he works to prove himself worthy of her love. But when David's mysterious past and Jade's overprotective father threaten to tear them apart, their romance will be put to the ultimate test.", "video": false, "id": 226857, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Endless Love", "tagline": "Say Goodbye to Innocence", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2318092", "adult": false, "backdrop_path": "/bYbNcN0l3131wmdkMfnUE30SzLI.jpg", "production_companies": [{"name": "Bluegrass Films", "id": 13778}, {"name": "Fake Empire", "id": 13204}, {"name": "Universal Pictures", "id": 33}], "release_date": "2014-02-14", "popularity": 0.8468581295016, "original_title": "Endless Love", "budget": 20000000, "cast": [{"name": "Alex Pettyfer", "character": "David Axelrod", "id": 61363, "credit_id": "52fe4e8a9251416c75159ddd", "cast_id": 4, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 0}, {"name": "Gabriella Wilde", "character": "Jade Butterfield", "id": 1014932, "credit_id": "52fe4e8a9251416c75159df5", "cast_id": 10, "profile_path": "/xbhScoMy3P6pK8Eg5V3EbGoxRSg.jpg", "order": 1}, {"name": "Robert Patrick", "character": "Anne Butterfield", "id": 418, "credit_id": "52fe4e8a9251416c75159de1", "cast_id": 5, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 2}, {"name": "Rhys Wakefield", "character": "Anne Butterfield", "id": 55899, "credit_id": "52fe4e8a9251416c75159de9", "cast_id": 7, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 3}, {"name": "Emma Rigby", "character": "Jenny", "id": 1078568, "credit_id": "52fe4e8a9251416c75159de5", "cast_id": 6, "profile_path": "/5pMA7z3BZP7YdWqphbPRqu2peWq.jpg", "order": 4}, {"name": "Joely Richardson", "character": "Anne Butterfield", "id": 20810, "credit_id": "52fe4e8a9251416c75159ded", "cast_id": 8, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 5}, {"name": "Bruce Greenwood", "character": "Hugh Butterfield", "id": 21089, "credit_id": "52fe4e8a9251416c75159df1", "cast_id": 9, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 6}, {"name": "Dayo Okeniyi", "character": "Mace", "id": 1030512, "credit_id": "52fe4e8a9251416c75159dfd", "cast_id": 12, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 7}, {"name": "Anna Enger", "character": "Sabine", "id": 963547, "credit_id": "52fe4e8a9251416c75159df9", "cast_id": 11, "profile_path": "/Ah8ztt9BfW2n28BDEH8lUGRSs8P.jpg", "order": 8}, {"name": "Fabianne Therese", "character": "Checka", "id": 576223, "credit_id": "52fe4e8a9251416c75159e1f", "cast_id": 19, "profile_path": "/3HLRTbikOyRPIZjaFw134ytxknx.jpg", "order": 9}], "directors": [{"name": "Shana Feste", "department": "Directing", "job": "Director", "credit_id": "52fe4e8a9251416c75159dd3", "profile_path": "/Ai9XWB3Nq5w0ueTgMfx8JkxptIp.jpg", "id": 129718}], "vote_average": 6.6, "runtime": 103}, "8645": {"poster_path": "/lHo1G0bbxcrUuyWqFZlQzX73oHS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163403799, "overview": "When a deadly airborne virus threatens to wipe out the northeastern United States, teacher Elliott Moore (Mark Wahlberg) and his wife (Zooey Deschanel) flee from contaminated cities into the countryside in a fight to discover the truth. Is it terrorism, the accidental release of some toxic military bio weapon -- or something even more sinister? John Leguizamo and Betty Buckley co-star in this thriller from writer-director M. Night Shyamalan.", "video": false, "id": 8645, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Happening", "tagline": "We've Sensed It. We've Seen The Signs. Now... It's Happening.", "vote_count": 248, "homepage": "http://www.thehappeningmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0949731", "adult": false, "backdrop_path": "/z0Cl9Q0uLptRxcAhtE0MnnS6z6n.jpg", "production_companies": [{"name": "UTV Motion Pictures", "id": 2320}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2008-06-13", "popularity": 0.873691858053708, "original_title": "The Happening", "budget": 60000000, "cast": [{"name": "Mark Wahlberg", "character": "Elliot Moore", "id": 13240, "credit_id": "52fe44b1c3a36847f80a4b25", "cast_id": 6, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Alma Moore", "id": 11664, "credit_id": "52fe44b1c3a36847f80a4b29", "cast_id": 7, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Julian", "id": 5723, "credit_id": "52fe44b1c3a36847f80a4b2d", "cast_id": 8, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Spencer Breslin", "character": "Josh", "id": 35654, "credit_id": "52fe44b1c3a36847f80a4b31", "cast_id": 9, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 3}, {"name": "Betty Buckley", "character": "Mrs. Jones", "id": 52462, "credit_id": "52fe44b1c3a36847f80a4b35", "cast_id": 10, "profile_path": "/5lt3xmuJOBpAiOyboKJaAurmlCb.jpg", "order": 4}, {"name": "Ashlyn Sanchez", "character": "Jess", "id": 18290, "credit_id": "52fe44b1c3a36847f80a4b39", "cast_id": 11, "profile_path": "/flE8FT2vKQDCHp1C3sTB17bZQEg.jpg", "order": 5}, {"name": "Robert Bailey Jr.", "character": "Jared", "id": 55426, "credit_id": "52fe44b1c3a36847f80a4b3d", "cast_id": 12, "profile_path": "/z2FbepmcNkWn12Tuv76kLavQRyS.jpg", "order": 6}, {"name": "Frank Collison", "character": "Nursery Owner", "id": 1479, "credit_id": "52fe44b1c3a36847f80a4b41", "cast_id": 13, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 7}, {"name": "Jeremy Strong", "character": "Private Auster", "id": 239271, "credit_id": "52fe44b1c3a36847f80a4b45", "cast_id": 14, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 8}, {"name": "Alan Ruck", "character": "Principal", "id": 2394, "credit_id": "52fe44b1c3a36847f80a4b49", "cast_id": 15, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 9}, {"name": "Victoria Clark", "character": "Nursery Owner's Wife", "id": 171633, "credit_id": "52fe44b1c3a36847f80a4b4d", "cast_id": 16, "profile_path": "/3fB8A2pBGFhI8u5f6kFa76RX7OJ.jpg", "order": 10}, {"name": "M. Night Shyamalan", "character": "Joey", "id": 11614, "credit_id": "52fe44b1c3a36847f80a4b51", "cast_id": 17, "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "order": 11}, {"name": "Alison Folland", "character": "Woman Reading on Bench with Hair Pin", "id": 2841, "credit_id": "52fe44b1c3a36847f80a4b55", "cast_id": 18, "profile_path": "/j4LkS9pycdpKECqZ4bCTqMtZrHA.jpg", "order": 12}, {"name": "Kristen Connolly", "character": "Woman Reading on Bench", "id": 210824, "credit_id": "52fe44b1c3a36847f80a4b59", "cast_id": 19, "profile_path": "/lP7rReayiC5hDhJJjCwUy3IFfTC.jpg", "order": 13}, {"name": "Cornell Womack", "character": "Construction Foreman", "id": 164494, "credit_id": "52fe44b1c3a36847f80a4b5d", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Mara Hobel", "character": "Woman with Hands Over Ears", "id": 1217565, "credit_id": "53c962570e0a2664900024d3", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Roberto Lombardi", "character": "Father in Elliot's Group", "id": 1209900, "credit_id": "53c962870e0a2664990025ce", "cast_id": 36, "profile_path": "/qgrG57sp91kCwPJsPvH15psg6UL.jpg", "order": 16}, {"name": "Art Lyle", "character": "Businessman", "id": 1343298, "credit_id": "53c962ab0e0a26648d0027f4", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Brian Anthony Wilson", "character": "Arguing Man in Crowd", "id": 127070, "credit_id": "53c962d90e0a2664a00026a4", "cast_id": 38, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 18}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe44b1c3a36847f80a4b09", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 5.0, "runtime": 91}, "210479": {"poster_path": "/jC1soM3OUOzehbxp7IMumgQEDvB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4635300, "overview": "Ivan Locke (Tom Hardy) has worked hard to craft a good life for himself. Tonight, that life will collapse around him. On the eve of the biggest challenge of his career, Ivan receives a phone call that sets in motion a series of events that will unravel his family, job, and soul.", "video": false, "id": 210479, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Locke", "tagline": "No turning back", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2692904", "adult": false, "backdrop_path": "/6clmTvA4hmP2M41JTJ0RHV2ODYj.jpg", "production_companies": [{"name": "Shoebox Films", "id": 28473}, {"name": "IM Global", "id": 7437}], "release_date": "2014-04-18", "popularity": 1.31203429072394, "original_title": "Locke", "budget": 2000000, "cast": [{"name": "Tom Hardy", "character": "Ivan Locke", "id": 2524, "credit_id": "52fe4d7cc3a368484e1ebfc5", "cast_id": 3, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Ruth Wilson", "character": "Katrina", "id": 47720, "credit_id": "52fe4d7cc3a368484e1ebfc9", "cast_id": 4, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 1}, {"name": "Andrew Scott", "character": "Donal", "id": 125660, "credit_id": "52fe4d7cc3a368484e1ebfcd", "cast_id": 5, "profile_path": "/3yu4zC3OVq2lvmMqnPT4RYH4sBU.jpg", "order": 2}, {"name": "Olivia Colman", "character": "Bethan", "id": 39187, "credit_id": "52fe4d7cc3a368484e1ebfd1", "cast_id": 6, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 3}, {"name": "Tom Holland", "character": "Eddie", "id": 1136406, "credit_id": "52fe4d7cc3a368484e1ebfd5", "cast_id": 7, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 4}, {"name": "Ben Daniels", "character": "Gareth", "id": 27632, "credit_id": "52fe4d7dc3a368484e1ebfd9", "cast_id": 8, "profile_path": "/x6MI4Fdz1XbERbNbXYoxTK6NAgv.jpg", "order": 5}, {"name": "Bill Milner", "character": "Sean", "id": 81260, "credit_id": "52fe4d7dc3a368484e1ebfdd", "cast_id": 9, "profile_path": "/gc1aD7V6mnEKuLhHJX9ssjxT2H7.jpg", "order": 6}, {"name": "Alice Lowe", "character": "Sister Margaret", "id": 182327, "credit_id": "52fe4d7dc3a368484e1ebfe1", "cast_id": 10, "profile_path": "/kpBWGfjNfGZ6aAStg7n6upGj9g3.jpg", "order": 7}, {"name": "Danny Webb", "character": "Cassidy", "id": 53917, "credit_id": "52fe4d7dc3a368484e1ebfe5", "cast_id": 11, "profile_path": "/dEAZ46qwZWF9CGxzaijoE0qnFMb.jpg", "order": 8}, {"name": "Lee Ross", "character": "PC Davids", "id": 93177, "credit_id": "52fe4d7dc3a368484e1ebfe9", "cast_id": 12, "profile_path": "/lMOJz7ZSs4iOWYON0NdKlVuWvlo.jpg", "order": 9}, {"name": "Silas Carson", "character": "Dr. Gullu", "id": 20806, "credit_id": "52fe4d7dc3a368484e1ebfed", "cast_id": 13, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 10}, {"name": "Kirsty Dillon", "character": "Gareth's Wife", "id": 1194117, "credit_id": "52fe4d7dc3a368484e1ebff1", "cast_id": 14, "profile_path": null, "order": 11}], "directors": [{"name": "Steven Knight", "department": "Directing", "job": "Director", "credit_id": "52fe4d7cc3a368484e1ebfbb", "profile_path": "/6QiGHyAWJv5wSyWNUxZuMlBCXgy.jpg", "id": 23227}], "vote_average": 6.7, "runtime": 85}, "5689": {"poster_path": "/niNKABdbAYGEqilL4InJ2ZlOZ8p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58000000, "overview": "Two small children and a ship's cook survive a shipwreck and find safety on an idyllic tropical island. Soon, however, the cook dies and the young boy and girl are left on their own. Days become years and Emmeline (Brooke Shields) and Richard (Christopher Atkins) make a home for themselves surrounded by exotic creatures and nature's beauty. But will they ever see civilization again?", "video": false, "id": 5689, "genres": [{"id": 12, "name": "Adventure"}], "title": "The Blue Lagoon", "tagline": "A sensuous story of natural love.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/m8LAOuIhlCBr6dWdtVF2C2ioMrc.jpg", "poster_path": "/A4U11Zhp5KjiKOrghNlqNlmrbhw.jpg", "id": 59586, "name": "The Blue Lagoon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080453", "adult": false, "backdrop_path": "/3x59nJ0umJAh0NWk9F8heCJt9nk.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1980-07-05", "popularity": 0.532187502725547, "original_title": "The Blue Lagoon", "budget": 4500000, "cast": [{"name": "Brooke Shields", "character": "Emmeline", "id": 15110, "credit_id": "52fe4418c3a36847f8081fbf", "cast_id": 7, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 0}, {"name": "Christopher Atkins", "character": "Richard", "id": 42740, "credit_id": "52fe4418c3a36847f8081fc3", "cast_id": 8, "profile_path": "/9IJgm1gd9saqSbkxRniQ6J34ywI.jpg", "order": 1}, {"name": "Leo McKern", "character": "Paddy Button", "id": 7192, "credit_id": "52fe4418c3a36847f8081fc7", "cast_id": 9, "profile_path": "/qcO1TFO6SowLOQAwKRMKrqmrk6A.jpg", "order": 2}, {"name": "William Daniels", "character": "Arthur Lestrange", "id": 10775, "credit_id": "52fe4418c3a36847f8081fcb", "cast_id": 10, "profile_path": "/4zIlfvoSPHVTWIpZ9JvZODD8vnn.jpg", "order": 3}, {"name": "Jeffrey Kleiser", "character": "Lookout", "id": 44841, "credit_id": "52fe4418c3a36847f8081fcf", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Gus Mercurio", "character": "Officer", "id": 44843, "credit_id": "52fe4418c3a36847f8081fd7", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Elva Josephson", "character": "Young Emmeline", "id": 136853, "credit_id": "52fe4418c3a36847f8081fe1", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Glenn Kohan", "character": "Young Richard", "id": 136854, "credit_id": "52fe4418c3a36847f8081fe5", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Bradley Pryce", "character": "Little Paddy", "id": 1037039, "credit_id": "530b65a492514111110050f0", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Chad Timmerman", "character": "Infant Paddy", "id": 1296157, "credit_id": "530b65b4925141111a004c6d", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Gert Jacoby", "character": "Sailor", "id": 136855, "credit_id": "530b65c69251415e710022f0", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Alex Hamilton", "character": "Sailor", "id": 136856, "credit_id": "530b65d9925141111700506c", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Richard Evanson", "character": "Sailor", "id": 136857, "credit_id": "530b65e59251411114004dd2", "cast_id": 21, "profile_path": null, "order": 13}], "directors": [{"name": "Randal Kleiser", "department": "Directing", "job": "Director", "credit_id": "52fe4418c3a36847f8081fa3", "profile_path": "/lK8FzeNDwD9VmNvKPRGd3dFVzJy.jpg", "id": 8876}], "vote_average": 6.0, "runtime": 104}, "13885": {"poster_path": "/ltp5qmaHLtzDHHj42V2Uzk4yOrc.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152000000, "overview": "The infamous story of Benjamin Barker, a.k.a Sweeney Todd, who sets up a barber shop down in London which is the basis for a sinister partnership with his fellow tenant, Mrs. Lovett. Based on the hit Broadway musical.", "video": false, "id": 13885, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 10402, "name": "Music"}], "title": "Sweeney Todd: The Demon Barber of Fleet Street", "tagline": "Never Forget. Never Forgive.", "vote_count": 437, "homepage": "http://www.sweeneytoddmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0408236", "adult": false, "backdrop_path": "/oZRsdp7H8ZIvo4ZH4IDOLpPjlMI.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2007-12-20", "popularity": 0.85526527824505, "original_title": "Sweeney Todd: The Demon Barber of Fleet Street", "budget": 50000000, "cast": [{"name": "Johnny Depp", "character": "Sweeney Todd", "id": 85, "credit_id": "52fe45af9251416c7505efcb", "cast_id": 1, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Mrs. Lovett", "id": 1283, "credit_id": "52fe45af9251416c7505efcf", "cast_id": 2, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Alan Rickman", "character": "Judge Turpin", "id": 4566, "credit_id": "52fe45af9251416c7505efd3", "cast_id": 3, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 2}, {"name": "Timothy Spall", "character": "Beadle", "id": 9191, "credit_id": "52fe45af9251416c7505efd7", "cast_id": 4, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 3}, {"name": "Sacha Baron Cohen", "character": "Pirelli", "id": 6730, "credit_id": "52fe45af9251416c7505efdb", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 4}, {"name": "Jamie Campbell Bower", "character": "Anthony Hope", "id": 83356, "credit_id": "52fe45af9251416c7505eff1", "cast_id": 9, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 5}, {"name": "Jayne Wisener", "character": "Johanna Barker", "id": 444008, "credit_id": "52fe45af9251416c7505eff5", "cast_id": 10, "profile_path": "/wEBqOkuKJmTeew401wvWgtri1Q9.jpg", "order": 6}, {"name": "Ed Sanders", "character": "Toby Ragg", "id": 1161752, "credit_id": "52fe45af9251416c7505eff9", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Laura Michelle Kelly", "character": "Lucy Barker", "id": 1161753, "credit_id": "52fe45af9251416c7505effd", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe45af9251416c7505efe1", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.8, "runtime": 116}, "112198": {"poster_path": "/pGsBX3XKrIS4uP6lNPnhg9TR7HY.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Vincent, a wealthy real estate agent, is invited to dinner by his sister Elizabeth and her husband Peter, both professors in Paris. Claude, a childhood friend and trombonist in a symphony orchestra, is also present. Vincent brings news from the prenatal examination of his and his wife Anna's unborn son. The name chosen by the soon-to-be parents strongly offends the others for many reasons. The dispute between the guests quickly escalates and before long the resurgence of old grudges and hidden secrets is unavoidable ...", "video": false, "id": 112198, "genres": [{"id": 35, "name": "Comedy"}], "title": "What's in a Name", "tagline": "A child is the beginning of happiness. A name is the beginning of despair.", "vote_count": 66, "homepage": "http://www.pathefilms.com/film/le-prenom", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2179121", "adult": false, "backdrop_path": "/oVJczyZofj44rXopmpZTNZv3BmO.jpg", "production_companies": [{"name": "Chapter 2", "id": 20339}, {"name": "Path\u00e9", "id": 7981}, {"name": "TF1 Films Production", "id": 3823}, {"name": "M6 Films", "id": 1115}, {"name": "Nexus Factory", "id": 7561}, {"name": "Canal+", "id": 5358}, {"name": "M6", "id": 11261}, {"name": "uFilm", "id": 8676}, {"name": "uFund", "id": 22127}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}], "release_date": "2012-04-25", "popularity": 0.545561310757267, "original_title": "Le Pr\u00e9nom", "budget": 0, "cast": [{"name": "Patrick Bruel", "character": "Vincent", "id": 73827, "credit_id": "52fe4b11c3a36847f81f09cf", "cast_id": 6, "profile_path": "/1s6eR0MEbxulZPUteVnHxpwXF4F.jpg", "order": 0}, {"name": "Val\u00e9rie Benguigui", "character": "\u00c9lisabeth", "id": 136489, "credit_id": "52fe4b11c3a36847f81f09d3", "cast_id": 7, "profile_path": "/tHh7G038Hh9KXREgNYpTKtuZc9f.jpg", "order": 1}, {"name": "Charles Berling", "character": "Pierre", "id": 48576, "credit_id": "52fe4b11c3a36847f81f09d7", "cast_id": 8, "profile_path": "/5W9uDe33eFYFNOW5lqJVvlzHkzb.jpg", "order": 2}, {"name": "Guillaume de Tonqu\u00e9dec", "character": "Claude", "id": 17896, "credit_id": "52fe4b11c3a36847f81f09db", "cast_id": 9, "profile_path": "/gx6Kh89dbkSo2cnfXTrzNNqWIBe.jpg", "order": 3}, {"name": "Judith El Zein", "character": "Anna", "id": 64590, "credit_id": "52fe4b11c3a36847f81f09df", "cast_id": 10, "profile_path": "/hNOoT8PHPll504DgweJMpE0oscu.jpg", "order": 4}, {"name": "Fran\u00e7oise Fabian", "character": "Fran\u00e7oise", "id": 9765, "credit_id": "52fe4b11c3a36847f81f09e3", "cast_id": 11, "profile_path": "/l8fJpeV3naLD53CEqxWD1shXI2a.jpg", "order": 5}, {"name": "Yaniss Lespert", "character": "Livreur pizza", "id": 72333, "credit_id": "52fe4b11c3a36847f81f09e7", "cast_id": 12, "profile_path": "/s6HYJQpCki7cIXeetNf4kmoDkdP.jpg", "order": 6}, {"name": "Miren Pradier", "character": "Infirmi\u00e8re bracelet", "id": 1054294, "credit_id": "52fe4b11c3a36847f81f09eb", "cast_id": 13, "profile_path": "/keSFZWNrwIzeJBCz9j7Gz405Zw2.jpg", "order": 7}, {"name": "Alexis Leprise", "character": "Apollin", "id": 1054295, "credit_id": "52fe4b11c3a36847f81f09ef", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Juliette Levant", "character": "Myrtille", "id": 1054296, "credit_id": "52fe4b11c3a36847f81f09f3", "cast_id": 15, "profile_path": "/c88qA7hjZ7iBoiye88csRhyjW5Y.jpg", "order": 9}], "directors": [{"name": "Alexandre de La Patelli\u00e8re", "department": "Directing", "job": "Director", "credit_id": "52fe4b11c3a36847f81f09b3", "profile_path": "/uiX43adOgjShLPrTnOItqZaASCi.jpg", "id": 58255}, {"name": "Matthieu Delaporte", "department": "Directing", "job": "Director", "credit_id": "52fe4b11c3a36847f81f09b9", "profile_path": "/2mhmEKkA0E3qI72IN6CFjShZea5.jpg", "id": 144845}], "vote_average": 7.2, "runtime": 109}, "112205": {"poster_path": "/9Qnug9QrwUCQhd7dSfGJfJMO1zS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36894225, "overview": "The Manzoni family, a notorious mafia clan, is relocated to Normandy, France under the witness protection program, where fitting in soon becomes challenging as their old habits die hard.", "video": false, "id": 112205, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Family", "tagline": "Some call it organized crime. Others call it family.", "vote_count": 346, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2404311", "adult": false, "backdrop_path": "/3igy0yH1ihCBbvzWo2AeldRzbSg.jpg", "production_companies": [{"name": "Malavita", "id": 31824}, {"name": "EuropaCorp", "id": 6896}, {"name": "Relativity Media", "id": 7295}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Grive Productions", "id": 6877}, {"name": "Canal+", "id": 5358}, {"name": "TF1", "id": 22123}], "release_date": "2013-09-13", "popularity": 1.40270875496385, "original_title": "The Family", "budget": 30000000, "cast": [{"name": "Robert De Niro", "character": "Fred Blake / Giovanni Manzoni", "id": 380, "credit_id": "52fe4b11c3a36847f81f0b49", "cast_id": 5, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Maggie Blake", "id": 1160, "credit_id": "52fe4b11c3a36847f81f0b4d", "cast_id": 6, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Dianna Agron", "character": "Belle Blake", "id": 141687, "credit_id": "52fe4b11c3a36847f81f0b55", "cast_id": 8, "profile_path": "/fS4vAPA6ErhHCWRBY2PVIwvnajU.jpg", "order": 2}, {"name": "John D'Leo", "character": "Warren Blake", "id": 1056523, "credit_id": "52fe4b11c3a36847f81f0b59", "cast_id": 9, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 3}, {"name": "Tommy Lee Jones", "character": "Robert Stansfield", "id": 2176, "credit_id": "52fe4b11c3a36847f81f0b51", "cast_id": 7, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 4}, {"name": "Jimmy Palumbo", "character": "DiCicco", "id": 157059, "credit_id": "52fe4b11c3a36847f81f0b81", "cast_id": 19, "profile_path": "/lUC10q4XgIUBlVAacIXh2FDtizr.jpg", "order": 5}, {"name": "Gino Cafarelli", "character": "BBQ guest #2", "id": 1179643, "credit_id": "52fe4b11c3a36847f81f0b61", "cast_id": 11, "profile_path": "/2uK2Srt5c3G6MhiiG0VU7J31qYq.jpg", "order": 6}, {"name": "Dominic Chianese", "character": "Don Mimino", "id": 68186, "credit_id": "52fe4b11c3a36847f81f0b65", "cast_id": 12, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 7}, {"name": "David Belle", "character": "Mezzo", "id": 62439, "credit_id": "52fe4b11c3a36847f81f0b69", "cast_id": 13, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 8}, {"name": "Vincent Pastore", "character": "Fat Willy", "id": 47774, "credit_id": "52fe4b11c3a36847f81f0b71", "cast_id": 15, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 9}, {"name": "Paul Borghese", "character": "Albert", "id": 7466, "credit_id": "551422e9c3a368351e00096a", "cast_id": 25, "profile_path": "/mYKqeQyMRmVokGSuObL1SBcMfLG.jpg", "order": 10}, {"name": "Stan Carp", "character": "Don Luchese", "id": 171584, "credit_id": "52fe4b11c3a36847f81f0b91", "cast_id": 23, "profile_path": "/hcPfAPHXUm1rNyQT56W3POsqewI.jpg", "order": 12}, {"name": "Domenick Lombardozzi", "character": "Caputo", "id": 17941, "credit_id": "530507edc3a3682cab047e4f", "cast_id": 24, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 13}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4b11c3a36847f81f0b33", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.2, "runtime": 111}, "241251": {"poster_path": "/h28t2JNNGrZx0fIuAw8aHQFhIxR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A recently cheated on married woman falls for a younger man who has moved in next door, but their torrid affair soon takes a dangerous turn.", "video": false, "id": 241251, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Boy Next Door", "tagline": "A Moment She Couldn't Resist. An Obsession He Can't Control.", "vote_count": 61, "homepage": "http://www.theboynextdoorfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3181822", "adult": false, "backdrop_path": "/vftRmYldszLcIMuhVoxvhDhUbiK.jpg", "production_companies": [{"name": "Smart Entertainment", "id": 44783}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Nuyorican Productions", "id": 1620}, {"name": "Universal Pictures", "id": 33}], "release_date": "2015-01-23", "popularity": 8.64946894736425, "original_title": "The Boy Next Door", "budget": 0, "cast": [{"name": "Jennifer Lopez", "character": "Claire Peterson", "id": 16866, "credit_id": "52fe4eb5c3a36847f82a2c89", "cast_id": 3, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Ryan Guzman", "character": "Noah Sandborn", "id": 932091, "credit_id": "52fe4eb5c3a36847f82a2c8d", "cast_id": 4, "profile_path": "/yJR4t5PlBdsiPAP9JdGjqomkVv7.jpg", "order": 1}, {"name": "John Corbett", "character": "Garrett Peterson", "id": 38405, "credit_id": "52fe4eb5c3a36847f82a2c91", "cast_id": 5, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 2}, {"name": "Kristin Chenoweth", "character": "Vicky Lansing", "id": 52775, "credit_id": "52fe4eb5c3a36847f82a2c95", "cast_id": 6, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 3}, {"name": "Ian Nelson", "character": "Kevin Peterson", "id": 1348957, "credit_id": "54aa555f9251414d630065bb", "cast_id": 7, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 4}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe4eb5c3a36847f82a2c7f", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.2, "runtime": 91}, "136795": {"poster_path": "/tM3hDt8JcU8Y8i6vzTcbnocM2bx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 158674180, "overview": "Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s \"finest,\" is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: Buddies.", "video": false, "id": 136795, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Heat", "tagline": "Action's never been so hot!", "vote_count": 673, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}], "imdb_id": "tt2404463", "adult": false, "backdrop_path": "/2wKw8M6g7wj0RNz9zAeqU9s1BKl.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2013-06-28", "popularity": 1.71144244451518, "original_title": "The Heat", "budget": 43000000, "cast": [{"name": "Sandra Bullock", "character": "Sarah Ashburn", "id": 18277, "credit_id": "52fe4c1ec3a368484e1a8143", "cast_id": 11, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Melissa McCarthy", "character": "Shannon Mullins", "id": 55536, "credit_id": "52fe4c1ec3a368484e1a8147", "cast_id": 12, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 1}, {"name": "Demi\u00e1n Bichir", "character": "Hale", "id": 76961, "credit_id": "52fe4c1ec3a368484e1a8153", "cast_id": 18, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 2}, {"name": "Michael Rapaport", "character": "Jason Mullins", "id": 4688, "credit_id": "52fe4c1ec3a368484e1a814b", "cast_id": 15, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 3}, {"name": "Taran Killam", "character": "Adam", "id": 1213573, "credit_id": "52fe4c1ec3a368484e1a81a1", "cast_id": 34, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 4}, {"name": "Marlon Wayans", "character": "Levy", "id": 9562, "credit_id": "52fe4c1ec3a368484e1a8173", "cast_id": 26, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 5}, {"name": "Andy Buckley", "character": "Robin", "id": 170635, "credit_id": "52fe4c1ec3a368484e1a815b", "cast_id": 20, "profile_path": "/jGOCrJXTzIAGAx1GlBu3Y3NMBma.jpg", "order": 6}, {"name": "Bill Burr", "character": "Mark Mullins", "id": 109708, "credit_id": "52fe4c1ec3a368484e1a8157", "cast_id": 19, "profile_path": "/fXvur9kJ3Pw9CWqHvEkvyyRVuuU.jpg", "order": 7}, {"name": "Steve Bannos", "character": "Wayne", "id": 54720, "credit_id": "52fe4c1ec3a368484e1a815f", "cast_id": 21, "profile_path": "/xiapg97am8zqjcB60lRGBIQeFqA.jpg", "order": 8}, {"name": "Jane Curtin", "character": "Mrs. Mullins", "id": 58184, "credit_id": "52fe4c1ec3a368484e1a8163", "cast_id": 22, "profile_path": "/lPiGlFpjsgb1uD3zPOkaEv4T3Es.jpg", "order": 9}, {"name": "Spoken Reasons", "character": "Rojas", "id": 1186010, "credit_id": "52fe4c1ec3a368484e1a8167", "cast_id": 23, "profile_path": "/4SevKt90oltaAjq2dF3jBWcn2t2.jpg", "order": 10}, {"name": "Dan Bakkedahl", "character": "Craig", "id": 1183546, "credit_id": "52fe4c1ec3a368484e1a816b", "cast_id": 24, "profile_path": "/oAZhhAPfh9maSN7airJZUaJXh60.jpg", "order": 11}, {"name": "Thomas F. Wilson", "character": "Captain Woods", "id": 1065, "credit_id": "52fe4c1ec3a368484e1a816f", "cast_id": 25, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 12}, {"name": "Tony Hale", "character": "The John", "id": 25147, "credit_id": "52fe4c1ec3a368484e1a814f", "cast_id": 17, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 13}, {"name": "Joey McIntyre", "character": "Peter Mullins", "id": 112261, "credit_id": "52fe4c1ec3a368484e1a81a5", "cast_id": 35, "profile_path": "/zmY3vZJNAMKkQSliNJB24Tj6cl8.jpg", "order": 14}, {"name": "Michael Tucci", "character": "Mr. Mullins", "id": 8897, "credit_id": "52fe4c1ec3a368484e1a81a9", "cast_id": 36, "profile_path": "/reUFx7dyg2d5PMPMLjDagwqlrtP.jpg", "order": 15}, {"name": "Nate Corddry", "character": "Michael Mullins", "id": 127048, "credit_id": "52fe4c1ec3a368484e1a81ad", "cast_id": 37, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 16}, {"name": "Zach Woods", "character": "Paramedic", "id": 464993, "credit_id": "52fe4c1ec3a368484e1a81b1", "cast_id": 38, "profile_path": "/hAYHvDs4TfHmqICelPcxe2furD8.jpg", "order": 17}], "directors": [{"name": "Paul Feig", "department": "Directing", "job": "Director", "credit_id": "52fe4c1ec3a368484e1a811b", "profile_path": "/6CI4revRSc9qCy6kVlyGntHblcI.jpg", "id": 116805}], "vote_average": 6.6, "runtime": 117}, "136797": {"poster_path": "/lN0mP3BNaKirkKl6FJ0yL0wmjSJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63444939, "overview": "The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer's head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.", "video": false, "id": 136797, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Need for Speed", "tagline": "For honor. For love. For redemption.", "vote_count": 608, "homepage": "http://hd24hr.blogspot.com/1991/03/need-for-speed.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2369135", "adult": false, "backdrop_path": "/kiLEAfRQhs93r3tSsQFpD2EpbyR.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Bandito Brothers", "id": 8403}, {"name": "Electronic Arts", "id": 34890}], "release_date": "2014-03-14", "popularity": 2.10371258757119, "original_title": "Need for Speed", "budget": 66000000, "cast": [{"name": "Aaron Paul", "character": "Tobey Marshall", "id": 84497, "credit_id": "52fe4c1ec3a368484e1a81fd", "cast_id": 8, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Dino Brewster", "id": 55470, "credit_id": "52fe4c1ec3a368484e1a8205", "cast_id": 10, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Imogen Poots", "character": "Julia", "id": 17606, "credit_id": "52fe4c1ec3a368484e1a8201", "cast_id": 9, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 2}, {"name": "Rami Malek", "character": "Finn", "id": 17838, "credit_id": "52fe4c1ec3a368484e1a820d", "cast_id": 12, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 3}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Joe Peck", "id": 72985, "credit_id": "52fe4c1ec3a368484e1a8209", "cast_id": 11, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 4}, {"name": "Harrison Gilbertson", "character": "Little Pete", "id": 127281, "credit_id": "52fe4c1ec3a368484e1a8211", "cast_id": 13, "profile_path": "/wQEbVoP4x7zUUQs01skmBlinKGc.jpg", "order": 5}, {"name": "Dakota Johnson", "character": "Anita", "id": 118545, "credit_id": "52fe883292514167a802167e", "cast_id": 16, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 6}, {"name": "Michael Keaton", "character": "Monarch", "id": 2232, "credit_id": "52fe4c1ec3a368484e1a81f9", "cast_id": 7, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 7}, {"name": "Scott Mescudi", "character": "Benny", "id": 484359, "credit_id": "52fe4c1ec3a368484e1a8215", "cast_id": 14, "profile_path": "/431ip65azwGdciT8CdMKzezCFv3.jpg", "order": 8}, {"name": "Sir Maejor", "character": "Leigh Dennis", "id": 1262082, "credit_id": "52fe8846925141679f0291b0", "cast_id": 17, "profile_path": "/AtTbDuBT00cGbHoEEtylNp547vj.jpg", "order": 9}, {"name": "Carmela Zumbado", "character": "Jeny B", "id": 1292730, "credit_id": "52fe885b925141679601b24c", "cast_id": 18, "profile_path": "/yms4gxPdLzLwBO2nkuSWzI6TyCz.jpg", "order": 10}, {"name": "Nick Chinlund", "character": "Officer Lejeune", "id": 18461, "credit_id": "52fe886d92514167a8021884", "cast_id": 19, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 11}, {"name": "Libby Blanton", "character": "San Fran Girl", "id": 1292731, "credit_id": "52fe889792514167ab018b22", "cast_id": 21, "profile_path": "/zK0AvDFFqPcAjEx1vY3UPF2pvV0.jpg", "order": 13}, {"name": "Beth Waugh", "character": "Investor's Wife", "id": 1292732, "credit_id": "52fe88a792514167a802201c", "cast_id": 22, "profile_path": "/v5rTkYCYi6rxv1DAdzGDCBJZfIL.jpg", "order": 14}, {"name": "Michael Rose", "character": "Investor", "id": 53330, "credit_id": "53d0bf47c3a3687761009d57", "cast_id": 32, "profile_path": "/zxVFWG8TIgqV01nL90mfucX83nQ.jpg", "order": 15}, {"name": "Han Soto", "character": "News Producer", "id": 1116011, "credit_id": "53d0c1ef0e0a265dea00c556", "cast_id": 33, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 16}], "directors": [{"name": "Scott Waugh", "department": "Directing", "job": "Director", "credit_id": "52fe4c1ec3a368484e1a81d7", "profile_path": null, "id": 293911}], "vote_average": 6.4, "runtime": 130}, "9738": {"poster_path": "/aJwUBmUA11lkNVSJ3if3h3xHSFd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 330000000, "overview": "During a space voyage, four scientists are altered by cosmic rays: Reed Richards gains the ability to stretch his body; Sue Storm can become invisible; Johnny Storm controls fire; and Ben Grimm is turned into a super-strong \u2026 thing. Together, these \"Fantastic Four\" must now thwart the evil plans of Dr. Doom and save the world from certain destruction.", "video": false, "id": 9738, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Fantastic Four", "tagline": "4 times the action. 4 times the adventure. 4 times the fantastic.", "vote_count": 947, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3JFe9AWoKuQWox7HO8HKgYRMOF7.jpg", "poster_path": "/prObnUSCHIBC8ZjkGo2KHgjkWOo.jpg", "id": 9744, "name": "Fantastic Four Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120667", "adult": false, "backdrop_path": "/6RaH2Znu7dUQq7c8surf7hRp44f.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "1492 Pictures", "id": 436}], "release_date": "2005-07-07", "popularity": 1.53084443282712, "original_title": "Fantastic Four", "budget": 100000000, "cast": [{"name": "Ioan Gruffudd", "character": "Reed Richards", "id": 65524, "credit_id": "52fe4524c3a36847f80bed7d", "cast_id": 1, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sue Storm", "id": 56731, "credit_id": "52fe4524c3a36847f80bed81", "cast_id": 2, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Chris Evans", "character": "Johnny Storm", "id": 16828, "credit_id": "52fe4524c3a36847f80bed85", "cast_id": 3, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Ben Grimm", "id": 19654, "credit_id": "52fe4524c3a36847f80bed89", "cast_id": 4, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Julian McMahon", "character": "Victor von Doom", "id": 20402, "credit_id": "52fe4524c3a36847f80bed8d", "cast_id": 5, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 4}, {"name": "Kerry Washington", "character": "Alicia Masters", "id": 11703, "credit_id": "52fe4524c3a36847f80bedf1", "cast_id": 23, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 5}, {"name": "Hamish Linklater", "character": "Leonard", "id": 184581, "credit_id": "52fe4524c3a36847f80bedf5", "cast_id": 24, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 6}, {"name": "Laurie Holden", "character": "Debbie McIlvane", "id": 8332, "credit_id": "52fe4524c3a36847f80bedf9", "cast_id": 25, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 7}, {"name": "David Parker", "character": "Ernie", "id": 77036, "credit_id": "52fe4524c3a36847f80bedfd", "cast_id": 26, "profile_path": "/5jWveoI0K8j2sCeRCC4zrEOegeM.jpg", "order": 8}, {"name": "Kevin McNulty", "character": "Jimmy O'Hoolihan", "id": 27111, "credit_id": "52fe4524c3a36847f80bee01", "cast_id": 27, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 9}, {"name": "Maria Menounos", "character": "Sexy Nurse", "id": 74353, "credit_id": "52fe4524c3a36847f80bee05", "cast_id": 28, "profile_path": "/dkaPcN5586IIDo9P6jGkfDqkzrj.jpg", "order": 10}, {"name": "Stan Lee", "character": "Willie Lumpkin", "id": 7624, "credit_id": "52fe4524c3a36847f80bee09", "cast_id": 29, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 11}, {"name": "Pascale Hutton", "character": "Nightclub Girlfriend", "id": 64917, "credit_id": "52fe4524c3a36847f80bee0d", "cast_id": 30, "profile_path": "/ilZSs16aNVySDEpU9k2xNShu0Ht.jpg", "order": 12}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4524c3a36847f80beded", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 5.4, "runtime": 106}, "192102": {"poster_path": "/mj1aAY5WbVhb62nw3MvZinsbhke.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GR", "name": "Greece"}, {"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission - even if it means juggling the two toughest assignments yet: hunting down the world's most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.", "video": false, "id": 192102, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "3 Days to Kill", "tagline": "The question is, kill or die?", "vote_count": 352, "homepage": "http://www.movie-censorship.com/report.php?ID=689035", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2172934", "adult": false, "backdrop_path": "/hMuPjDgT3MyZkGpST4vky8t0m6h.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}, {"name": "Relativity Media", "id": 7295}, {"name": "3DTK", "id": 22947}, {"name": "Feelgood Entertainment", "id": 22948}, {"name": "Paradise/MGN", "id": 22949}, {"name": "Wonderland Sound and Vision", "id": 4022}], "release_date": "2014-02-14", "popularity": 2.33842724110644, "original_title": "3 Days to Kill", "budget": 28000000, "cast": [{"name": "Kevin Costner", "character": "Ethan Renner", "id": 1269, "credit_id": "52fe4c9b9251416c910fa44b", "cast_id": 2, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Amber Heard", "character": "Vivi Delay", "id": 55085, "credit_id": "52fe4c9b9251416c910fa447", "cast_id": 1, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Hailee Steinfeld", "character": "Zoey Renner", "id": 130640, "credit_id": "52fe4c9b9251416c910fa44f", "cast_id": 3, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 2}, {"name": "Connie Nielsen", "character": "Christine Renner", "id": 935, "credit_id": "52fe4c9b9251416c910fa453", "cast_id": 4, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 3}, {"name": "Richard Sammel", "character": "The Wolf", "id": 49487, "credit_id": "52fe4c9b9251416c910fa457", "cast_id": 5, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 4}, {"name": "T\u00f3mas Lemarquis", "character": "The Albino", "id": 18818, "credit_id": "52fe4c9b9251416c910fa45b", "cast_id": 6, "profile_path": "/6qWyGbPWE020wTezwoWx1wIPuPQ.jpg", "order": 5}, {"name": "Eriq Ebouaney", "character": "Jules", "id": 25078, "credit_id": "52fe4c9b9251416c910fa45f", "cast_id": 7, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 6}, {"name": "Big John", "character": "Louis", "id": 1033668, "credit_id": "52fe4c9b9251416c910fa463", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Bruno Ricci", "character": "Guido", "id": 145161, "credit_id": "530399be92514161a234562e", "cast_id": 12, "profile_path": "/3LJJpZBfvdom5pVpJ8IlhIrIS6D.jpg", "order": 8}, {"name": "Jonas Bloquet", "character": "Hugh", "id": 566080, "credit_id": "530399cd92514121955d5247", "cast_id": 13, "profile_path": "/yti6Pj05UzCIc2lLKHcpl8kNEzB.jpg", "order": 9}, {"name": "Marc Andr\u00e9oni", "character": "Mitat Yilmaz", "id": 585700, "credit_id": "53039a0092514121a463f32b", "cast_id": 14, "profile_path": "/9hf2rlWsQV3pTKUG4TKIzn26L2s.jpg", "order": 10}, {"name": "Alison Valence", "character": "Sumia", "id": 1333450, "credit_id": "53a72e9c0e0a26143200459c", "cast_id": 31, "profile_path": "/zLKNK3vawgJzlpJSf5PBaGFsirP.jpg", "order": 11}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe4c9b9251416c910fa469", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 6.1, "runtime": 113}, "13929": {"poster_path": "/1yqWnnRtbixqolHARRH4KymNBhj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An aging codger named Geri plays a daylong game of chess in the park against himself. Somehow, he begins losing to his livelier opponent. But just when the game's nearly over, Geri manages to turn the tables.", "video": false, "id": 13929, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Geri's Game", "tagline": "Sometimes you don't need more than one person to not feel alone", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0131409", "adult": false, "backdrop_path": "/baddGVlv1zk1RDhf0dKUHyKxcQq.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "1997-11-24", "popularity": 0.477984860838636, "original_title": "Geri's Game", "budget": 0, "cast": [{"name": "Bob Peterson", "character": "Geri (voice)", "id": 10, "credit_id": "52fe45b59251416c7505fc65", "cast_id": 3, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 0}], "directors": [{"name": "Jan Pinkava", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c7505fc5b", "profile_path": "/rzQqU5P6NJie92Ltc5iJPtGsuPa.jpg", "id": 7930}], "vote_average": 7.9, "runtime": 4}, "13930": {"poster_path": "/r7FxAytbH046wQh5LnZLQKvXgNx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "One by one, a flock of small birds perches on a telephone wire. Sitting close together has problems enough, and then comes along a large dopey bird that tries to join them. The birds of a feather can't help but make fun of him - and their clique mentality proves embarrassing in the end.", "video": false, "id": 13930, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "For the Birds", "tagline": "", "vote_count": 118, "homepage": "http://www.pixar.com/short_films/Theatrical-Shorts/For-the-Birds", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0248808", "adult": false, "backdrop_path": "/pCshecgO5A15qURScLMqFtyPer4.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2000-11-02", "popularity": 0.426206829777743, "original_title": "For the Birds", "budget": 0, "cast": [{"name": "Ralph Eggleston", "character": "Bird (voice) (uncredited)", "id": 7883, "credit_id": "52fe45b59251416c7505fc7d", "cast_id": 3, "profile_path": "/uUfcGKDsKO1aROMpXRs67Hn6RvR.jpg", "order": 0}], "directors": [{"name": "Ralph Eggleston", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c7505fc79", "profile_path": "/uUfcGKDsKO1aROMpXRs67Hn6RvR.jpg", "id": 7883}], "vote_average": 7.8, "runtime": 3}, "13932": {"poster_path": "/btnyGcvjMbN4MpwLE7A6J7gNV01.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kari the babysitter thinks she's in for a night of routine babysitting. She's prepared to provide neurological stimulation with some soothing musical accompaniment for little Jack-Jack, the smallest member of the incredible Parr family. Little does she know that Jack-Jack will teach her a thing or two about babies with \"special needs.\"", "video": false, "id": 13932, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Jack-Jack Attack", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455565", "adult": false, "backdrop_path": "/mUcfavkzBSlJbhS6cXZyInM9jix.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2005-03-15", "popularity": 0.715943021276798, "original_title": "Jack-Jack Attack", "budget": 0, "cast": [{"name": "Bud Luckey", "character": "Agent Rick Dicker", "id": 7918, "credit_id": "52fe45b59251416c7505fce9", "cast_id": 8, "profile_path": "/pcCh7G19FKMNijmPQg1PMH1btic.jpg", "order": 2}, {"name": "Eli Fucile", "character": "Jack-Jack Parr", "id": 59358, "credit_id": "52fe45b59251416c7505fced", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Jason Lee", "character": "Buddy Pine / Syndrome", "id": 11662, "credit_id": "52fe45b59251416c7505fcf1", "cast_id": 10, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Bret 'Brook' Parker", "character": "Kari McKeen", "id": 7998, "credit_id": "5442bade0e0a266340002a72", "cast_id": 17, "profile_path": "/776ZYJGQO4Wer1cDq9XXAZ0z4C1.jpg", "order": 5}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c7505fcf7", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 7.4, "runtime": 5}, "256274": {"poster_path": "/e4GGbcdTMO8VRQYyLkNyAt1Oz89.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40100000, "overview": "When a team of explorers ventures into the catacombs that lie beneath the streets of Paris, they uncover the dark secret that lies within this city of the dead.", "video": false, "id": 256274, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "As Above, So Below", "tagline": "The only way out is down.", "vote_count": 182, "homepage": "http://www.asabovesobelowmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2870612", "adult": false, "backdrop_path": "/gseZiVBq0E8iHCPno9noyzdNTGy.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}], "release_date": "2014-08-29", "popularity": 0.782461139506547, "original_title": "As Above, So Below", "budget": 5000000, "cast": [{"name": "Perdita Weeks", "character": "Scarlett", "id": 207549, "credit_id": "535935a40e0a26640d0000be", "cast_id": 3, "profile_path": "/fm0VLOVkhV6Op9X0DB2NcVOB13x.jpg", "order": 1}, {"name": "Ben Feldman", "character": "George", "id": 78431, "credit_id": "535935ab0e0a2664160000d8", "cast_id": 4, "profile_path": "/cve3khwonn7sWBwDThA44XwH2Fo.jpg", "order": 2}, {"name": "Edwin Hodge", "character": "Benji", "id": 56679, "credit_id": "535935b40e0a26641d0000f7", "cast_id": 5, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 3}, {"name": "Fran\u00e7ois Civil", "character": "Papillon", "id": 78124, "credit_id": "5371c8d8c3a3684343000b18", "cast_id": 6, "profile_path": "/ngKymMbs7r5dUyegMm4X4dvL4aS.jpg", "order": 4}, {"name": "Marion Lambert", "character": "Souxie", "id": 1319096, "credit_id": "5371c8e3c3a3684351000b4e", "cast_id": 7, "profile_path": "/s0C9uB552BIfzvoXvUzoVEatIEi.jpg", "order": 5}, {"name": "Ali Marhyar", "character": "Zed", "id": 939100, "credit_id": "53fc24820e0a267a72009dd4", "cast_id": 10, "profile_path": "/2dJKavVasaDFpudUV0CtPygyNHh.jpg", "order": 6}, {"name": "Cosme Castro", "character": "La Taupe", "id": 1357018, "credit_id": "53fc248b0e0a267a6c009d83", "cast_id": 11, "profile_path": "/ewEDARc4gACGkKSbiCy8dVI1ECw.jpg", "order": 7}, {"name": "Hamid Djavadan", "character": "Reza", "id": 1178738, "credit_id": "53fc24950e0a267a66009bde", "cast_id": 12, "profile_path": "/4SQCmcBDbJeBwHNcmtNWXMvxXta.jpg", "order": 8}, {"name": "Th\u00e9o Cholbi", "character": "Gloomy Teenager", "id": 1139801, "credit_id": "53fc249f0e0a267a66009be1", "cast_id": 13, "profile_path": "/jZP5iOPzSsiZkeg6vuYb64ETCvO.jpg", "order": 9}, {"name": "Emy L\u00e9vy", "character": "Tour Guide", "id": 1175840, "credit_id": "53fc24a90e0a267a69009df3", "cast_id": 14, "profile_path": "/ikd2tjjaxI67MYIFsEIhIH3cfZp.jpg", "order": 10}, {"name": "Roger Van Hool", "character": "Scarlett's Father", "id": 28190, "credit_id": "53fc24b30e0a267a69009df5", "cast_id": 15, "profile_path": "/6rXpe83p5cHMiH8S4D6PzZbvtgL.jpg", "order": 11}, {"name": "Olivia Csiky Trnka", "character": "Strange Young Woman", "id": 1357019, "credit_id": "53fc24bd0e0a267a7b00998d", "cast_id": 16, "profile_path": "/4Z5A1sGoY0mWTLRLTQJoWc8EUBM.jpg", "order": 12}, {"name": "Hellyette Bess", "character": "Strange Old Woman", "id": 1357020, "credit_id": "53fc24c70e0a267a69009df9", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Aryan Rahimian", "character": "Iranian Armed Guard", "id": 226025, "credit_id": "53fc24d10e0a267a78009a0d", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Samuel Aouizerate", "character": "Danny", "id": 1357021, "credit_id": "53fc24da0e0a267a6c009d8c", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Kaya Blocksage", "character": "Female Curator", "id": 1357022, "credit_id": "53fc24e50e0a267a75009e55", "cast_id": 20, "profile_path": "/fK4hKOCEOdzMZ4oI0eqljjsTmwT.jpg", "order": 16}], "directors": [{"name": "John Erick Dowdle", "department": "Directing", "job": "Director", "credit_id": "5303f1a392514177e1002e42", "profile_path": null, "id": 77147}], "vote_average": 5.9, "runtime": 93}, "46705": {"poster_path": "/k14hfSW7udPCHHPUGfAXDtYZ1HE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12355734, "overview": "The film centers on a contemporary married couple, charting their evolution over a span of years by cross-cutting between time periods.", "video": false, "id": 46705, "genres": [{"id": 18, "name": "Drama"}], "title": "Blue Valentine", "tagline": "Nobody Baby But You And Me", "vote_count": 189, "homepage": "http://www.bluevalentinemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1120985", "adult": false, "backdrop_path": "/n7f6SnsVbrsmEKhzyjVZibQ7Iq.jpg", "production_companies": [{"name": "Cottage Industries", "id": 11338}, {"name": "Incentive Filmed Entertainment", "id": 7215}, {"name": "Silverwood Films", "id": 2293}, {"name": "Hunting Lane Films", "id": 2290}, {"name": "Chrysler Corporation", "id": 11335}, {"name": "Shade Pictures", "id": 11336}, {"name": "Motel Movies", "id": 11337}], "release_date": "2010-12-27", "popularity": 0.844601568623845, "original_title": "Blue Valentine", "budget": 1000000, "cast": [{"name": "Ryan Gosling", "character": "Dean", "id": 30614, "credit_id": "52fe4707c3a36847f811fdab", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Michelle Williams", "character": "Cindy", "id": 1812, "credit_id": "52fe4707c3a36847f811fdaf", "cast_id": 4, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 1}, {"name": "Mike Vogel", "character": "Bobby", "id": 6858, "credit_id": "52fe4707c3a36847f811fdb3", "cast_id": 5, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 2}, {"name": "John Doman", "character": "Jerry", "id": 4735, "credit_id": "52fe4707c3a36847f811fdb7", "cast_id": 6, "profile_path": "/xfcSluMohRbnMySSlosFmlZyLLy.jpg", "order": 3}, {"name": "Faith Wladyka", "character": "Frankie", "id": 968528, "credit_id": "52fe4708c3a36847f811fe21", "cast_id": 27, "profile_path": "/kakeL3goTIb1AGYKBAiRxlR9J9Q.jpg", "order": 4}, {"name": "Marshall Johnson", "character": "Marshall", "id": 1117293, "credit_id": "52fe4708c3a36847f811fe25", "cast_id": 28, "profile_path": null, "order": 5}, {"name": "Jen Jones", "character": "Gramma", "id": 171463, "credit_id": "52fe4708c3a36847f811fe29", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Maryann Plunkett", "character": "Glenda", "id": 171472, "credit_id": "52fe4708c3a36847f811fe2d", "cast_id": 30, "profile_path": "/4aTUH3LkiTHKeRUO5efx0hqjS2Q.jpg", "order": 7}, {"name": "James Benatti", "character": "Jamie", "id": 1117294, "credit_id": "52fe4708c3a36847f811fe31", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Barbara Troy", "character": "Jo", "id": 1117295, "credit_id": "52fe4708c3a36847f811fe35", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Carey Westbrook", "character": "Charley", "id": 1117296, "credit_id": "52fe4708c3a36847f811fe39", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Ben Shenkman", "character": "Dr. Feinberg", "id": 6437, "credit_id": "52fe4708c3a36847f811fe3d", "cast_id": 34, "profile_path": "/ocLEexcLxffgLJ41wuqc80YmdeY.jpg", "order": 11}, {"name": "Eileen Rosen", "character": "Mimi", "id": 968530, "credit_id": "52fe4708c3a36847f811fe41", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Enid Graham", "character": "Professor", "id": 155574, "credit_id": "52fe4708c3a36847f811fe45", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Ashley Gurnari", "character": "Checker", "id": 1117297, "credit_id": "52fe4708c3a36847f811fe49", "cast_id": 37, "profile_path": null, "order": 14}], "directors": [{"name": "Derek Cianfrance", "department": "Directing", "job": "Director", "credit_id": "52fe4707c3a36847f811fda7", "profile_path": "/zGhozVaRDCU5Tpu026X0al2lQN3.jpg", "id": 139098}], "vote_average": 6.8, "runtime": 112}, "10515": {"poster_path": "/4RTG2AaqZ9eleL51ryWwv78WwDu.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 3106327, "overview": "The orphan Sheeta inherited a mysterious crystal that links her to the mythical sky-kingdom of Laputa. With the help of resourceful Pazu and a rollicking band of sky pirates, she makes her way to the ruins of the once-great civilization. Sheeta and Pazu must outwit the evil Muska, who plans to use Laputa's science to make himself ruler of the world.", "video": false, "id": 10515, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Castle in the Sky", "tagline": "", "vote_count": 264, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0092067", "adult": false, "backdrop_path": "/pU8cdLJiyOnFrFlWJEUlIu8S4hQ.jpg", "production_companies": [{"name": "Tokuma Shoten", "id": 1779}, {"name": "Nibariki", "id": 12516}, {"name": "Studio Ghibli", "id": 10342}], "release_date": "1986-08-02", "popularity": 1.29365390508985, "original_title": "\u5929\u7a7a\u306e\u57ce\u30e9\u30d4\u30e5\u30bf", "budget": 0, "cast": [{"name": "Keiko Yokozawa", "character": "Sheeta (voice)", "id": 65509, "credit_id": "52fe437e9251416c750128a9", "cast_id": 9, "profile_path": "/leNw9OGQdkiiBpsbk6Y108wXQrt.jpg", "order": 0}, {"name": "Mayumi Tanaka", "character": "Pazu (voice)", "id": 65510, "credit_id": "52fe437e9251416c750128ad", "cast_id": 10, "profile_path": "/rGUGLXCbdEb3KO7lRmLg0szNn4k.jpg", "order": 1}, {"name": "Minori Terada", "character": "Muska (voice)", "id": 65511, "credit_id": "52fe437e9251416c750128b1", "cast_id": 11, "profile_path": "/iWUhewafl85w1wH5PBj2Ga6XD1V.jpg", "order": 2}, {"name": "Kotoe Hatsui", "character": "Dola", "id": 65512, "credit_id": "52fe437e9251416c750128b5", "cast_id": 12, "profile_path": "/k3BhnRlm5HFHHxwpoEaL1e4SXgE.jpg", "order": 3}, {"name": "Fujio Tokita", "character": "Uncle Pomme", "id": 142455, "credit_id": "52fe437e9251416c750128b9", "cast_id": 13, "profile_path": "/qB7mFr6AbUZl0zFJcWMydySa25F.jpg", "order": 4}, {"name": "Ichir\u014d Nagai", "character": "Shogun Mouro", "id": 617, "credit_id": "52fe437e9251416c750128bd", "cast_id": 14, "profile_path": "/dI7cAwwF6LJ9uQs0BB6jbr8mghm.jpg", "order": 5}, {"name": "Hiroshi Itoh", "character": "Oyakata", "id": 551814, "credit_id": "52fe437e9251416c750128c1", "cast_id": 15, "profile_path": "/yqaXzX31MRsWDCekIqFuDTkZqkz.jpg", "order": 6}, {"name": "Machiko Washio", "character": "Okami", "id": 105818, "credit_id": "52fe437e9251416c750128c5", "cast_id": 16, "profile_path": "/ixgpXftZYXLCDNss5K0wfFu3RkQ.jpg", "order": 7}, {"name": "Takumi Kamiyama", "character": "Charles", "id": 552678, "credit_id": "52fe437e9251416c750128c9", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Yoshito Yasuhara", "character": "Louis", "id": 142701, "credit_id": "52fe437e9251416c750128cd", "cast_id": 18, "profile_path": "/9b2jdsbc815AQuttDtwkhhXFg7p.jpg", "order": 9}, {"name": "Sukekiyo Kameyama", "character": "Henri", "id": 552679, "credit_id": "52fe437e9251416c750128d1", "cast_id": 19, "profile_path": "/xhyFlZ6zAo4rosof2xZhqtQTota.jpg", "order": 10}, {"name": "Eken Mine", "character": "Underling", "id": 552680, "credit_id": "52fe437e9251416c750128d5", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Tarako", "character": "Madge (Daffy's daughter)", "id": 100127, "credit_id": "52fe437e9251416c750128d9", "cast_id": 21, "profile_path": "/kLHM1cugBLAdyEm3xgdnAzdmKhx.jpg", "order": 12}, {"name": "Reiko Suzuki", "character": "Additional Voices", "id": 552681, "credit_id": "52fe437e9251416c750128dd", "cast_id": 22, "profile_path": "/oMVxECTYnRq8ywc8f5ESnDtWznU.jpg", "order": 13}, {"name": "Masashi Sugawara", "character": "Underling", "id": 222339, "credit_id": "52fe437e9251416c750128e1", "cast_id": 23, "profile_path": "/43HDvANWH1B85x4yjAAGGvfwKVn.jpg", "order": 14}, {"name": "Toshihiko Seki", "character": "Additional Voices", "id": 90571, "credit_id": "52fe437e9251416c750128e5", "cast_id": 25, "profile_path": "/1lBmZJfFuV1FVxnrJt4kfaO1rJk.jpg", "order": 15}, {"name": "H\u00f4ch\u00fb \u00d4tsuka", "character": "Additional Voices", "id": 552683, "credit_id": "52fe437e9251416c750128e9", "cast_id": 26, "profile_path": "/bvqLZYjQUwnhFUbnNryTrxpNHke.jpg", "order": 16}, {"name": "Megumi Hayashibara", "character": "Additional Voices", "id": 40325, "credit_id": "52fe437e9251416c750128ed", "cast_id": 27, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 17}, {"name": "Tomomichi Nishimura", "character": "Additional Voices", "id": 81859, "credit_id": "52fe437e9251416c75012921", "cast_id": 36, "profile_path": "/kZXRpvXwI0F1qbKNff3dOG2BodA.jpg", "order": 18}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe437e9251416c75012887", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.5, "runtime": 124}, "284276": {"poster_path": "/wnX7WTcrwi30DyBusT1qJpQ8LzG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After having visions of a member of her support group who killed herself, a woman who also suffers with chronic pain seeks out the widower of the suicide.", "video": false, "id": 284276, "genres": [{"id": 18, "name": "Drama"}], "title": "Cake", "tagline": "Forgiveness is a bitter pill to swallow.", "vote_count": 63, "homepage": "http://cakemovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3442006", "adult": false, "backdrop_path": "/iGRutrtJcsdk5y3xvVU8WewSowZ.jpg", "production_companies": [{"name": "We're Not Brothers Productions", "id": 39643}, {"name": "Cinelou Films", "id": 39644}, {"name": "Echo Films", "id": 7382}], "release_date": "2014-12-31", "popularity": 3.70694135921465, "original_title": "Cake", "budget": 7000000, "cast": [{"name": "Jennifer Aniston", "character": "Claire Simmons", "id": 4491, "credit_id": "53d7de94c3a3683a1c001818", "cast_id": 0, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Anna Kendrick", "character": "Nina", "id": 84223, "credit_id": "5409f9500e0a262b40000577", "cast_id": 2, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 1}, {"name": "William H. Macy", "character": "Leonard", "id": 3905, "credit_id": "541696e7c3a3684cec00486d", "cast_id": 7, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 2}, {"name": "Adriana Barraza", "character": "Silvana", "id": 270, "credit_id": "5416974dc3a3684cec0048eb", "cast_id": 11, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 3}, {"name": "Felicity Huffman", "character": "Annette", "id": 7427, "credit_id": "5416972cc3a3684cf7004a3e", "cast_id": 9, "profile_path": "/wtFoENVM5jo4NhcWx9qFWuvFuXC.jpg", "order": 4}, {"name": "Sam Worthington", "character": "Roy", "id": 65731, "credit_id": "5409f9560e0a262b4000057b", "cast_id": 3, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 5}, {"name": "Britt Robertson", "character": "Becky", "id": 52018, "credit_id": "541696850e0a261c27004a92", "cast_id": 4, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 6}, {"name": "Lucy Punch", "character": "Nurse Gayle", "id": 66446, "credit_id": "541696cbc3a3684d0a004c34", "cast_id": 5, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 7}, {"name": "Chris Messina", "character": "Jason", "id": 61659, "credit_id": "541696d9c3a3684d06004add", "cast_id": 6, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 8}, {"name": "Mamie Gummer", "character": "Bonnie", "id": 47281, "credit_id": "541696f8c3a3684cec00487d", "cast_id": 8, "profile_path": "/ptz8SYBGt8XJlH6m7pjqhQMr6D3.jpg", "order": 9}, {"name": "Camille Guaty", "character": "Tina", "id": 81106, "credit_id": "5416973d0e0a261c32004ade", "cast_id": 10, "profile_path": "/clscQjYVHl6JmXa4sqZFFeixrIy.jpg", "order": 10}, {"name": "Manuel Garcia-Rulfo", "character": "Arturo", "id": 1168097, "credit_id": "54c3049092514124c8004749", "cast_id": 31, "profile_path": "/ohtV4uA906RgEZoFacqLKfJupHc.jpg", "order": 11}, {"name": "Misty Upham", "character": "Liz", "id": 64136, "credit_id": "54c304abc3a36878fb0044e6", "cast_id": 32, "profile_path": "/78YVlWbvZiEO9Z1F4NfWiIrv2SS.jpg", "order": 12}, {"name": "Rose Abdoo", "character": "Innocencia", "id": 31507, "credit_id": "54c304b79251416e6000e1c2", "cast_id": 33, "profile_path": null, "order": 13}], "directors": [{"name": "Daniel Barnz", "department": "Directing", "job": "Director", "credit_id": "53d7df2bc3a3683a1c001827", "profile_path": "/rBlhnxatVxjdLah2nrSNhGuKVu6.jpg", "id": 84061}], "vote_average": 6.4, "runtime": 92}, "251519": {"poster_path": "/3KsZUcifrnHqs6AGrZBW4iUTLYs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Batman learns that he has a violent, unruly pre-teen son with Talia al Ghul named Damian Wayne who is secretly being raised by Ra's al Ghul and the League of Assassins. When Ra's al Ghul apparently dies after a battle with Deathstroke, Batman must work to stop his long-lost son from taking revenge and guiding him to a righteous path, in addition to the chance for the pair to truly acknowledging each other as family.", "video": false, "id": 251519, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}], "title": "Son of Batman", "tagline": "Vengeance runs in the blood.", "vote_count": 108, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sVvEkTNx6SjwOb80iyURe5KHtcD.jpg", "poster_path": "/145njLUZoHKWbqTuzOJKQXuYpcS.jpg", "id": 334996, "name": "Son of Batman collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3139072", "adult": false, "backdrop_path": "/omK35Mr3oks6bd5efrgsO7CzmLP.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Premiere", "id": 4811}, {"name": "Warner Home Video", "id": 2786}], "release_date": "2014-04-20", "popularity": 0.372212781900264, "original_title": "Son of Batman", "budget": 0, "cast": [{"name": "Jason O'Mara", "character": "Bruce Wayne / Batman", "id": 183812, "credit_id": "52fe4e1b9251416c91126a91", "cast_id": 4, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 0}, {"name": "Stuart Allan", "character": "Damian", "id": 1164238, "credit_id": "52fe4e1b9251416c91126aa9", "cast_id": 10, "profile_path": "/lNQdGVXZOj46LKZIcli5tJ83PvM.jpg", "order": 1}, {"name": "Thomas Gibson", "character": "Slade Wilson / Deathstroke", "id": 13638, "credit_id": "52fe4e1b9251416c91126a99", "cast_id": 6, "profile_path": "/xi0vxwCqAxTSUPiBH3O00kyVoWq.jpg", "order": 2}, {"name": "Morena Baccarin", "character": "Talia al Ghul", "id": 54882, "credit_id": "52fe4e1b9251416c91126a85", "cast_id": 1, "profile_path": "/gUG9fnudV5Ev1MIr3adngn1GuZJ.jpg", "order": 3}, {"name": "Giancarlo Esposito", "character": "Ra's al Ghul", "id": 4808, "credit_id": "52fe4e1b9251416c91126a89", "cast_id": 2, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 4}, {"name": "David McCallum", "character": "Alfred Pennyworth", "id": 24813, "credit_id": "52fe4e1b9251416c91126a8d", "cast_id": 3, "profile_path": "/po7qYZYW0RMTl4BavHIZCxqopCD.jpg", "order": 5}, {"name": "Xander Berkeley", "character": "Dr. Kirk Langstrom", "id": 3982, "credit_id": "52fe4e1b9251416c91126a95", "cast_id": 5, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 6}, {"name": "Jeff Bennett", "character": "Alfred Pennyworth", "id": 34982, "credit_id": "52fe4e1b9251416c91126aa1", "cast_id": 8, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 7}, {"name": "Cameron Bowen", "character": "Robin / Tim Drake", "id": 4736, "credit_id": "52fe4e1b9251416c91126aa5", "cast_id": 9, "profile_path": "/c6Gy2DzAPE3fRW8IwFp9ING3DlM.jpg", "order": 8}], "directors": [{"name": "Ethan Spaulding", "department": "Directing", "job": "Director", "credit_id": "52fe4e1b9251416c91126aaf", "profile_path": null, "id": 529806}], "vote_average": 7.0, "runtime": 74}, "9739": {"poster_path": "/k0PN3Ho12cGGIVJW7SCS7apLYaP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159055768, "overview": "Simon Phoenix, a violent criminal cryogenically frozen in 1996, has escaped during a parole hearing in 2032 in the utopia of San Angeles. Police are incapable of dealing with his violent ways and turn to his captor, John Spartan, who had also been cryogenically frozen when wrongfully accused of killing 30 innocent people while apprehending Phoenix.", "video": false, "id": 9739, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Demolition Man", "tagline": "The 21st Century's most dangerous cop. The 21st Century's most ruthless criminal.", "vote_count": 322, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106697", "adult": false, "backdrop_path": "/fj6nbVd7FVENNLtusyd1U8bcUFu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1993-10-06", "popularity": 0.978942381311141, "original_title": "Demolition Man", "budget": 57000000, "cast": [{"name": "Sylvester Stallone", "character": "John Spartan", "id": 16483, "credit_id": "52fe4525c3a36847f80bee55", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Wesley Snipes", "character": "Simon Phoenix", "id": 10814, "credit_id": "52fe4525c3a36847f80bee59", "cast_id": 2, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 1}, {"name": "Sandra Bullock", "character": "Lt. Lenina Huxley", "id": 18277, "credit_id": "52fe4525c3a36847f80bee5d", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 2}, {"name": "Nigel Hawthorne", "character": "Dr. Raymond Cocteau", "id": 15788, "credit_id": "52fe4525c3a36847f80bee61", "cast_id": 4, "profile_path": "/66PJ2LGSowVC1qPR4QIE62PnBd5.jpg", "order": 3}, {"name": "Denis Leary", "character": "Edgar Friendly", "id": 5724, "credit_id": "52fe4525c3a36847f80beebf", "cast_id": 21, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 4}, {"name": "Benjamin Bratt", "character": "Alfredo Garcia", "id": 4589, "credit_id": "52fe4525c3a36847f80beec3", "cast_id": 22, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 5}, {"name": "Bob Gunton", "character": "Chief George Earle", "id": 4029, "credit_id": "52fe4525c3a36847f80beec7", "cast_id": 23, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Zachary Lamb - Aged", "id": 8854, "credit_id": "52fe4525c3a36847f80beecb", "cast_id": 24, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Brandy Ledford", "character": "Fiber Op Girl (as Brandy Sanders)", "id": 119759, "credit_id": "52fe4525c3a36847f80beecf", "cast_id": 25, "profile_path": "/bYdCmsZZF5W7aHx0aphEFoQ8ALQ.jpg", "order": 8}, {"name": "Jesse Ventura", "character": "CryoCon", "id": 1104, "credit_id": "52fe4525c3a36847f80beed3", "cast_id": 26, "profile_path": "/25AzScRxybPMRxEfv9iB116jj7a.jpg", "order": 9}, {"name": "Rob Schneider", "character": "Erwin (uncredited)", "id": 60949, "credit_id": "52fe4525c3a36847f80beed7", "cast_id": 27, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 10}, {"name": "Toshishiro Obata", "character": "CryoCon", "id": 953728, "credit_id": "52fe4525c3a36847f80beedb", "cast_id": 28, "profile_path": "/fgHL5HDrxD4zelKQrzQdARy0WSL.jpg", "order": 11}], "directors": [{"name": "Marco Brambilla", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80bee67", "profile_path": "/uFzVGRzub6RxyN5SjIPUZOnWVtW.jpg", "id": 58838}], "vote_average": 6.2, "runtime": 115}, "284293": {"poster_path": "/9pCG7OFUVDAUVwONZRgmTw24Ezj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.", "video": false, "id": 284293, "genres": [{"id": 18, "name": "Drama"}], "title": "Still Alice", "tagline": "", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3316960", "adult": false, "backdrop_path": "/l2dMBfhJ8QadJ2dmoU6nBpeIqg2.jpg", "production_companies": [{"name": "Killer Films", "id": 1422}, {"name": "BSM Studio", "id": 28361}, {"name": "Backup Media", "id": 26590}, {"name": "Big Indie Pictures", "id": 6831}], "release_date": "2014-12-05", "popularity": 3.65165606327692, "original_title": "Still Alice", "budget": 5000000, "cast": [{"name": "Julianne Moore", "character": "Dr. Alice Howland", "id": 1231, "credit_id": "53d7f9b40e0a26034000260f", "cast_id": 1, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Dr. John Howland", "id": 7447, "credit_id": "53d7f9e30e0a2603340025ce", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Kristen Stewart", "character": "Lydia Howland", "id": 37917, "credit_id": "53d7f9a70e0a2603440024dc", "cast_id": 0, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 2}, {"name": "Kate Bosworth", "character": "Anna", "id": 7517, "credit_id": "53d7f9c30e0a260347002573", "cast_id": 2, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 3}, {"name": "Hunter Parrish", "character": "Tom Howland", "id": 35236, "credit_id": "53d7f9d50e0a2603310025ec", "cast_id": 3, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 4}, {"name": "Victoria Cartagena", "character": "Prof. Hooper", "id": 118388, "credit_id": "547a3517925141298d002eab", "cast_id": 17, "profile_path": "/uJ84HU2eEF4skZJ5e4eq9NSJDO1.jpg", "order": 5}, {"name": "Erin Darke", "character": "Jenny", "id": 1285592, "credit_id": "547a3522c3a3685c48003030", "cast_id": 18, "profile_path": "/s01fpaZ27cwxxnXV2XIfgShXslL.jpg", "order": 6}, {"name": "Shane McRae", "character": "Charlie", "id": 83222, "credit_id": "547a352ec3a36848e300096a", "cast_id": 19, "profile_path": "/27WYwLZHb0wFVSOBEWPl1YxlhTn.jpg", "order": 7}, {"name": "Stephen Kunken", "character": "Dr. Benjamin", "id": 79991, "credit_id": "547a3544925141297e00310f", "cast_id": 20, "profile_path": "/a0phhoaFskKNICOLjniYpIO9072.jpg", "order": 8}, {"name": "Eha Urbsalu", "character": "Alice Howland's Mother", "id": 1391351, "credit_id": "547a3550c3a3685c42002c9e", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Cat Lynch", "character": "Pinkberry Worker", "id": 1391352, "credit_id": "547a3561925141297e003114", "cast_id": 22, "profile_path": null, "order": 10}], "directors": [{"name": "Richard Glatzer", "department": "Directing", "job": "Director", "credit_id": "53d7fa010e0a2603440024ef", "profile_path": null, "id": 82335}, {"name": "Wash Westmoreland", "department": "Directing", "job": "Director", "credit_id": "53d7fa1f0e0a26033a0024c9", "profile_path": null, "id": 82337}], "vote_average": 7.5, "runtime": 99}, "284296": {"poster_path": "/chmkg6j7vRmw4sFRGj2xl95btBk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A comedian tries to make it as a serious actor when his reality-TV star fianc\u00e9 talks him into broadcasting their wedding on her TV show.", "video": false, "id": 284296, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Top Five", "tagline": "", "vote_count": 53, "homepage": "http://www.topfivemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2784678", "adult": false, "backdrop_path": "/bN5StoTeTmI3zJ6qPs2fHMzXFFz.jpg", "production_companies": [{"name": "Jax Media", "id": 24021}, {"name": "IAC Film", "id": 10351}], "release_date": "2014-12-12", "popularity": 2.23229128730609, "original_title": "Top Five", "budget": 0, "cast": [{"name": "Chris Rock", "character": "Andre", "id": 2632, "credit_id": "53d7fceb0e0a2603470025c3", "cast_id": 0, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 0}, {"name": "Rosario Dawson", "character": "Chelsea Brown", "id": 5916, "credit_id": "53d7fcfc0e0a2603470025c9", "cast_id": 1, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 1}, {"name": "J. B. Smoove", "character": "Silk", "id": 65920, "credit_id": "546426f7c3a36804c5000a8a", "cast_id": 13, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 2}, {"name": "Gabrielle Union", "character": "Erica Long", "id": 17773, "credit_id": "53d7fd150e0a26034000267d", "cast_id": 3, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 3}, {"name": "Romany Malco", "character": "Benny", "id": 71530, "credit_id": "546426e20e0a26294f000abe", "cast_id": 10, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 4}, {"name": "Hayley Marie Norman", "character": "Tammy", "id": 66623, "credit_id": "546426d8c3a36804a7000ac5", "cast_id": 9, "profile_path": "/gXUwyT5CG6wfwI2gV6X193AaGOk.jpg", "order": 5}, {"name": "Anders Holm", "character": "Brad", "id": 521563, "credit_id": "5494f51cc3a3686ae9002f8e", "cast_id": 25, "profile_path": "/gIZLXRBwYCgTMXr0CoTnHfLKXH9.jpg", "order": 6}, {"name": "Cedric the Entertainer", "character": "Jazzy Dee", "id": 5726, "credit_id": "546426efc3a36804ac000a71", "cast_id": 12, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 7}, {"name": "Kevin Hart", "character": "Charles", "id": 55638, "credit_id": "53d7fd200e0a260337002574", "cast_id": 4, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 8}, {"name": "Adam Sandler", "character": "Adam Sandler", "id": 19292, "credit_id": "546426a50e0a262938000a87", "cast_id": 6, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 9}, {"name": "Whoopi Goldberg", "character": "Herself", "id": 2395, "credit_id": "546426b8c3a36804b0000a89", "cast_id": 7, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 10}, {"name": "Jerry Seinfeld", "character": "Himself", "id": 16377, "credit_id": "546426ce0e0a26293b000ad3", "cast_id": 8, "profile_path": "/cAsXoVf0UmotNUjMggHMnmAj8w.jpg", "order": 11}, {"name": "Tracy Morgan", "character": "Fred", "id": 56903, "credit_id": "546426e80e0a26294f000ac0", "cast_id": 11, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 12}, {"name": "Sherri Shepherd", "character": "Vanessa", "id": 109561, "credit_id": "546426ffc3a36804be000a91", "cast_id": 14, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 13}, {"name": "Leslie Jones", "character": "Lisa", "id": 168452, "credit_id": "5464270ec3a36804b0000a96", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Ben Vereen", "character": "Carl Allen", "id": 26664, "credit_id": "54642722c3a36804ac000a77", "cast_id": 16, "profile_path": "/hE2UTj9gQPdBgQ8E8Qn8uzoTS8a.jpg", "order": 15}, {"name": "Tom Papa", "character": "Drunk businessman", "id": 170364, "credit_id": "5464274dc3a36804be000a9a", "cast_id": 17, "profile_path": "/aWhxq4lUIY8iLVUqYPLhTi7Di4c.jpg", "order": 16}, {"name": "Brian Regan", "character": "Engineer", "id": 83995, "credit_id": "5494f50fc3a3686ae1003035", "cast_id": 24, "profile_path": "/xNYoKjkKhpTEdIAOoS79aSg47dz.jpg", "order": 17}, {"name": "DMX", "character": "Himself", "id": 21355, "credit_id": "5494f5369251412c4e0017ec", "cast_id": 26, "profile_path": "/eoAfTjFs6SiXGBmdlfasb0J9fHw.jpg", "order": 18}, {"name": "Jay Pharoah", "character": "Mike", "id": 1099717, "credit_id": "5494f55fc3a3686ae9002f92", "cast_id": 28, "profile_path": "/yRD2vypRF0niEdoCCI0pNZENzvm.jpg", "order": 19}, {"name": "Taraji P. Henson", "character": "Herself", "id": 40036, "credit_id": "54ce8800c3a3687f92005c4c", "cast_id": 29, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 20}, {"name": "Gabourey Sidibe", "character": "Herself", "id": 109560, "credit_id": "54ce8809c3a3681c9c003bcb", "cast_id": 30, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 21}], "directors": [{"name": "Chris Rock", "department": "Directing", "job": "Director", "credit_id": "53d7fd2c0e0a260340002682", "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "id": 2632}], "vote_average": 6.7, "runtime": 102}, "38543": {"poster_path": "/vgRPlYHiottQpDav3nfw9Q1zAJJ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the year 1215, the rebel barons of England have forced their despised King John to put his royal seal on the Magna Carta, a seminal document that upheld the rights of free men. Yet within months of pledging himself to the great charter, the King reneged on his word and assembled a mercenary army on the south coast of England with the intention of bringing the barons and the country back under his tyrannical rule. Barring his way stood the mighty Rochester castle, a place that would become the symbol of the rebel's momentous struggle for justice and freedom.", "video": false, "id": 38543, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Ironclad", "tagline": "Heavy metal goes medieval.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dwkPbDOYCOZ7Wxan1YJ2taVF7zu.jpg", "id": 259085, "name": "Ironclad Collection"}, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt1233301", "adult": false, "backdrop_path": "/hxGSxNREU4xbA1kfiJRvnPPoL29.jpg", "production_companies": [{"name": "Mythic International Entertainment", "id": 5706}, {"name": "ContentFilm", "id": 1420}, {"name": "Rising Star", "id": 1208}, {"name": "Silver Reel", "id": 12075}, {"name": "Wales Creative IP Fund", "id": 11841}, {"name": "Molinare Investment", "id": 19579}, {"name": "Perpetual Media Capital", "id": 13792}], "release_date": "2011-03-03", "popularity": 0.593329922996564, "original_title": "Ironclad", "budget": 25000000, "cast": [{"name": "James Purefoy", "character": "Thomas Marshall", "id": 17648, "credit_id": "52fe46c59251416c9105f201", "cast_id": 5, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 0}, {"name": "Kate Mara", "character": "Lady Isabel", "id": 51072, "credit_id": "52fe46c59251416c9105f1fd", "cast_id": 4, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 1}, {"name": "Jason Flemyng", "character": "Becket", "id": 973, "credit_id": "52fe46c59251416c9105f205", "cast_id": 6, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "King John", "id": 13242, "credit_id": "52fe46c59251416c9105f209", "cast_id": 7, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Brian Cox", "character": "Albany", "id": 1248, "credit_id": "52fe46c59251416c9105f20d", "cast_id": 8, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Derek Jacobi", "character": "Cornhill", "id": 937, "credit_id": "52fe46c59251416c9105f21d", "cast_id": 11, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 5}, {"name": "Charles Dance", "character": "Stephen Langton, Archbishop of Canterbury", "id": 4391, "credit_id": "52fe46c59251416c9105f221", "cast_id": 12, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 6}, {"name": "Aneurin Barnard", "character": "Guy", "id": 145143, "credit_id": "52fe46c59251416c9105f225", "cast_id": 13, "profile_path": "/tYvKJ5N6J5tG6bAzAvUp6j4P9TT.jpg", "order": 7}, {"name": "Jamie Foreman", "character": "Coteral", "id": 3543, "credit_id": "52fe46c59251416c9105f23b", "cast_id": 17, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 8}, {"name": "Mackenzie Crook", "character": "Marks", "id": 1711, "credit_id": "52fe46c59251416c9105f23f", "cast_id": 18, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 9}, {"name": "Rhys Parry Jones", "character": "Wulfstan", "id": 1080281, "credit_id": "52fe46c59251416c9105f243", "cast_id": 19, "profile_path": "/aQvPMAwKwI4YysHHvs0AkgM2mxJ.jpg", "order": 10}, {"name": "Vladimir Kulich", "character": "Tiberius", "id": 19898, "credit_id": "52fe46c59251416c9105f247", "cast_id": 20, "profile_path": "/A2g8P9LbEhi34s4I5my4Soo5Y30.jpg", "order": 11}, {"name": "David Melville", "character": "Baron Darnay", "id": 1080282, "credit_id": "52fe46c59251416c9105f24b", "cast_id": 21, "profile_path": "/3dXPHz4FuGx5MkaRFX4t1rp1o7S.jpg", "order": 12}], "directors": [{"name": "Jonathan English", "department": "Directing", "job": "Director", "credit_id": "52fe46c59251416c9105f1ed", "profile_path": null, "id": 83730}], "vote_average": 6.4, "runtime": 121}, "210577": {"poster_path": "/gdiLTof3rbPDAmPaCf4g6op46bj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 335193000, "overview": "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.", "video": false, "id": 210577, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Gone Girl", "tagline": "You don't know what you've got 'til it's...", "vote_count": 1506, "homepage": "http://www.gonegirlmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2267998", "adult": false, "backdrop_path": "/bt6DhdALyhf90gReozoQ0y3R3vZ.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2014-10-03", "popularity": 8.90355911199049, "original_title": "Gone Girl", "budget": 61000000, "cast": [{"name": "Ben Affleck", "character": "Nick Dunne", "id": 880, "credit_id": "52fe4d7fc3a368484e1ec763", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Amy Dunne", "id": 10882, "credit_id": "52fe4d7fc3a368484e1ec767", "cast_id": 8, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Tyler Perry", "character": "Tanner Bolt", "id": 80602, "credit_id": "52fe4d7fc3a368484e1ec76b", "cast_id": 9, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 2}, {"name": "Neil Patrick Harris", "character": "Desi Collins", "id": 41686, "credit_id": "52fe4d7fc3a368484e1ec76f", "cast_id": 10, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 3}, {"name": "Missi Pyle", "character": "Ellen Abbott", "id": 1294, "credit_id": "52fe4d7fc3a368484e1ec773", "cast_id": 11, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 4}, {"name": "Patrick Fugit", "character": "Detective Jim Gilpin", "id": 11663, "credit_id": "52fe4d7fc3a368484e1ec777", "cast_id": 12, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 5}, {"name": "Kim Dickens", "character": "Detective Rhonda Boney", "id": 21165, "credit_id": "52fe4d7fc3a368484e1ec77b", "cast_id": 13, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 6}, {"name": "Casey Wilson", "character": "Noelle Hawthorne", "id": 83872, "credit_id": "52fe4d7fc3a368484e1ec78b", "cast_id": 16, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 7}, {"name": "Kathleen Rose Perkins", "character": "Shawna Kelly", "id": 149334, "credit_id": "52fe4d7fc3a368484e1ec78f", "cast_id": 17, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 8}, {"name": "Emily Ratajkowski", "character": "Andie Fitzgerald", "id": 1186505, "credit_id": "52fe4d7fc3a368484e1ec793", "cast_id": 18, "profile_path": "/fBymmBzKuF4rphytsRiT0MA7EjM.jpg", "order": 9}, {"name": "Scoot McNairy", "character": "Tommy", "id": 59233, "credit_id": "52fe4d7fc3a368484e1ec797", "cast_id": 19, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 10}, {"name": "Boyd Holbrook", "character": "Jeff", "id": 467645, "credit_id": "52fe4d7fc3a368484e1ec79b", "cast_id": 20, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 11}, {"name": "Lola Kirke", "character": "Greta", "id": 1345418, "credit_id": "53ff85f50e0a2658db0006f1", "cast_id": 26, "profile_path": "/lhYAzJYPHBrzejDZgnRt0yJe0L9.jpg", "order": 12}, {"name": "Carrie Coon", "character": "Margo Dunne", "id": 1308445, "credit_id": "542f5d5d0e0a264f07000b82", "cast_id": 27, "profile_path": "/lOHLdgQe1DXomdLzAIbxL7BF89M.jpg", "order": 13}, {"name": "Sela Ward", "character": "Sharon Schieber", "id": 6068, "credit_id": "54b556b8c3a368094e009afd", "cast_id": 28, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 14}, {"name": "Lee Norris", "character": "Police Officer", "id": 166897, "credit_id": "54b5571cc3a368094000972e", "cast_id": 29, "profile_path": "/sE16s5VE42RuTJvRZA5wuDzTDYB.jpg", "order": 15}, {"name": "David Clennon", "character": "Rand Elliott", "id": 15412, "credit_id": "5502e07fc3a3685b9b004293", "cast_id": 87, "profile_path": "/lt3jaAmhJhScJvXwDmE5JKOsTaf.jpg", "order": 16}, {"name": "Lisa Banes", "character": "Marybeth Elliott", "id": 52878, "credit_id": "5502e0e69251413da80048b6", "cast_id": 88, "profile_path": "/rXBe8lx88ESRIoKLqUMIYWpfoCq.jpg", "order": 17}, {"name": "Jamie McShane", "character": "Donnelly", "id": 79079, "credit_id": "5502e8139251413d9f0047a8", "cast_id": 89, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 18}, {"name": "Leonard Kelly-Young", "character": "Bill Dunne", "id": 1438995, "credit_id": "5502e93cc3a3685b9e0041ca", "cast_id": 90, "profile_path": "/m6FeP3hJl5Dkbou9YYh2TOg3W9p.jpg", "order": 19}, {"name": "Pete Housman", "character": "Walter", "id": 1439007, "credit_id": "5502ebeec3a3685bab004303", "cast_id": 91, "profile_path": null, "order": 20}, {"name": "Lynn A. Freedman", "character": "Kelly Capitono", "id": 549831, "credit_id": "5502eec99251414ea60025ea", "cast_id": 92, "profile_path": "/1p5K0J4SEnGoD9haqk0KqLxL5S1.jpg", "order": 21}, {"name": "Mark Atteberry", "character": "FBI", "id": 1192412, "credit_id": "5502f479c3a3685bab0043ed", "cast_id": 93, "profile_path": "/nFHzunT4sOFOyi0pH2TGjDFTqSg.jpg", "order": 22}, {"name": "Darin Cooper", "character": "Mustached Man", "id": 1235973, "credit_id": "5502f7b5c3a3685b9b004440", "cast_id": 94, "profile_path": "/ewACr0jcusD6d3psRFpVdjAq4La.jpg", "order": 23}, {"name": "Kate Campbell", "character": "Above-It-All Journalist", "id": 1439089, "credit_id": "5502ff1fc3a3687b69003e25", "cast_id": 95, "profile_path": "/pDQwNRcXhquim1MmPf9INU3zjqR.jpg", "order": 24}, {"name": "Brett Leigh", "character": "Nervous Intern", "id": 1439098, "credit_id": "5503018292514174f6000f8f", "cast_id": 96, "profile_path": "/nl4eus0kRy4L1i6uma88zDpS9uZ.jpg", "order": 25}, {"name": "Antonio St. James", "character": "Security Guard", "id": 1439105, "credit_id": "550302bf9251413da8004b2b", "cast_id": 97, "profile_path": "/nzzozryKaKgEe2FYm3iFOUJr5nF.jpg", "order": 26}, {"name": "Lauren Glazier", "character": "Fashionista", "id": 118592, "credit_id": "5503042bc3a3687b69003e92", "cast_id": 98, "profile_path": "/bvpmxumWqD9K5MoNzGtEvavlQXu.jpg", "order": 27}, {"name": "Julia Prud'homme", "character": "Female Officer", "id": 1439112, "credit_id": "5503059f92514174f6000fc8", "cast_id": 99, "profile_path": "/4t39UeNsXOVq5hlcuYAFXin9eCX.jpg", "order": 28}, {"name": "Cooper Thornton", "character": "Doctor", "id": 162828, "credit_id": "550308bdc3a3685b96004b4e", "cast_id": 100, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 29}, {"name": "Casey Ruggieri", "character": "Earnest Girl", "id": 1439125, "credit_id": "550309d4925141282f003d39", "cast_id": 101, "profile_path": "/cbiC792SXkzeW6fWt4j0FCdUY7h.jpg", "order": 30}, {"name": "Cyd Strittmatter", "character": "Maureen Dunne", "id": 1367129, "credit_id": "55030badc3a3685ba20052e2", "cast_id": 102, "profile_path": "/pTtwAc67FxQzQPE9vQE17Ep9FFt.jpg", "order": 31}, {"name": "Ashley Didion", "character": "Friend 1", "id": 1439141, "credit_id": "55030cc2925141282f003d7f", "cast_id": 103, "profile_path": "/uklcsbamATGDeRInYmmun7Zcuuq.jpg", "order": 32}, {"name": "Lexis Nutt", "character": "Friend 2", "id": 1439150, "credit_id": "55030e4bc3a36826b9002f53", "cast_id": 104, "profile_path": "/wcY6qyOzHyHWNOtR7dQFvdHcrbZ.jpg", "order": 33}, {"name": "L.A. Williams", "character": "Guard", "id": 1439155, "credit_id": "55030f6b9251413d9f004ab4", "cast_id": 105, "profile_path": null, "order": 34}, {"name": "Blake Sheldon", "character": "Tweaker Teen 1", "id": 1439167, "credit_id": "5503103dc3a3685b96004bcf", "cast_id": 106, "profile_path": "/7nLPErsyKII2x2QP9dxRNzJdnPi.jpg", "order": 35}, {"name": "Sean Guse", "character": "Tweaker Teen 2", "id": 1439180, "credit_id": "5503128d9251413d9f004ae6", "cast_id": 107, "profile_path": "/qAnjjbWMexiRUsQFFGF9I5spAU0.jpg", "order": 36}, {"name": "Ricky Wood", "character": "Jason", "id": 1439192, "credit_id": "55031399c3a36826b9002fa9", "cast_id": 108, "profile_path": "/xNo1lBz1tguwv9NV451MGf1UWb3.jpg", "order": 37}, {"name": "Fred Cross", "character": "Airport Traveler", "id": 969294, "credit_id": "550314d29251413da1004405", "cast_id": 109, "profile_path": "/8IVRSHVKBvXTE8JNt20JyKAwZyM.jpg", "order": 38}, {"name": "Scott Takeda", "character": "Producer", "id": 1439204, "credit_id": "550315879251413d9f004b2d", "cast_id": 110, "profile_path": "/boNzT15JQ92aKHkHJkLc4Cwx5p0.jpg", "order": 39}, {"name": "Donna Rusch", "character": "Lauren Nevens", "id": 1439207, "credit_id": "550316dac3a3685ba20053a4", "cast_id": 111, "profile_path": "/wpr3PoPDPuiTfFktzK42lOKJByZ.jpg", "order": 40}, {"name": "Kathy Sweeney-Meadows", "character": "Reporter One", "id": 1439208, "credit_id": "550317799251413d9b0048a1", "cast_id": 112, "profile_path": null, "order": 41}, {"name": "Mark T Anderson", "character": "Reporter", "id": 1439213, "credit_id": "550317c0c3a3685b96004c4e", "cast_id": 113, "profile_path": "/iswbwgE5Gv3uRftrOSypwz6Dyqr.jpg", "order": 42}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4d7fc3a368484e1ec741", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 8.0, "runtime": 145}, "46738": {"poster_path": "/o34nmXtxEZPwCe4VIc4oIWRxwCd.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 7103838, "overview": "A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.", "video": false, "id": 46738, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10752, "name": "War"}], "title": "Incendies", "tagline": "The search began at the opening of their mother's will.", "vote_count": 76, "homepage": "http://www.sonyclassics.com/incendies/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1255953", "adult": false, "backdrop_path": "/b7BxW3C4cjVKOlKzFBoMUgyNt6A.jpg", "production_companies": [{"name": "TS Productions", "id": 313}, {"name": "Micro scope", "id": 7272}, {"name": "Phi Group", "id": 7273}], "release_date": "2010-09-17", "popularity": 0.892261607704937, "original_title": "Incendies", "budget": 6800000, "cast": [{"name": "Lubna Azabal", "character": "Nawal", "id": 77498, "credit_id": "52fe470ac3a36847f812058b", "cast_id": 6, "profile_path": "/lGvB2xP7sotwSslSTovL5nxnzBC.jpg", "order": 0}, {"name": "M\u00e9lissa D\u00e9sormeaux-Poulin", "character": "Jeanne Marwan", "id": 84573, "credit_id": "52fe470ac3a36847f812058f", "cast_id": 7, "profile_path": "/yRBRYSJTOn6DeAnRxHxnNUOGWNn.jpg", "order": 1}, {"name": "Maxim Gaudette", "character": "Simon Marwan", "id": 88592, "credit_id": "52fe470ac3a36847f8120593", "cast_id": 8, "profile_path": "/9gwYhjJ7d3U39kSfNLW33Pky7ci.jpg", "order": 2}, {"name": "R\u00e9my Girard", "character": "le notaire Lebel", "id": 38526, "credit_id": "52fe470ac3a36847f8120597", "cast_id": 9, "profile_path": "/iOluYYBxiLzb5fS5F0Y8Xc5bQVo.jpg", "order": 3}, {"name": "Allen Altman", "character": "Notaire Maddad", "id": 196737, "credit_id": "54e475c2c3a3684897002f7e", "cast_id": 13, "profile_path": "/6giwU33Jo0SNYlKVQaXXVqL4eK8.jpg", "order": 4}, {"name": "Abdelghafour Elaaziz", "character": "Abou Tarek/Nihad", "id": 970213, "credit_id": "55069053c3a3680581002e1a", "cast_id": 14, "profile_path": "/zRPVrpN8zFyre4aXw6jbHyAgLr7.jpg", "order": 5}], "directors": [{"name": "Denis Villeneuve", "department": "Directing", "job": "Director", "credit_id": "52fe470ac3a36847f8120587", "profile_path": "/f3bWCti2AYoAxRnFYIirQyf6A7j.jpg", "id": 137427}], "vote_average": 8.0, "runtime": 130}, "120467": {"poster_path": "/nX5XotM9yprCKarRH4fzOq1VM1J.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted prot\u00e9g\u00e9. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.", "video": false, "id": 120467, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Grand Budapest Hotel", "tagline": "", "vote_count": 1094, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2278388", "adult": false, "backdrop_path": "/3AZX2KB73kSza76h9O4bzdNeIac.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "Studio Babelsberg", "id": 264}, {"name": "American Empirical Pictures", "id": 23449}], "release_date": "2014-03-07", "popularity": 3.30111239493847, "original_title": "The Grand Budapest Hotel", "budget": 0, "cast": [{"name": "Ralph Fiennes", "character": "M. Gustave", "id": 5469, "credit_id": "52fe4a47c3a368484e14a76d", "cast_id": 2, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Tony Revolori", "character": "Zero Moustafa", "id": 1291350, "credit_id": "5319c2e0c3a3685c43002ea6", "cast_id": 30, "profile_path": "/m5WMX7TYk2VhsKkVDFRlBGpvr55.jpg", "order": 1}, {"name": "F. Murray Abraham", "character": "Mr. Moustafa", "id": 1164, "credit_id": "52fe4a47c3a368484e14a79d", "cast_id": 14, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 2}, {"name": "Mathieu Amalric", "character": "Serge", "id": 8789, "credit_id": "52fe4a47c3a368484e14a7a1", "cast_id": 16, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 3}, {"name": "Adrien Brody", "character": "Dmitri", "id": 3490, "credit_id": "52fe4a47c3a368484e14a789", "cast_id": 9, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 4}, {"name": "Willem Dafoe", "character": "Jopling", "id": 5293, "credit_id": "52fe4a47c3a368484e14a785", "cast_id": 8, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 5}, {"name": "Jeff Goldblum", "character": "Kovacs", "id": 4785, "credit_id": "52fe4a47c3a368484e14a791", "cast_id": 11, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 6}, {"name": "Harvey Keitel", "character": "Ludwig", "id": 1037, "credit_id": "52fe4a47c3a368484e14a795", "cast_id": 12, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 7}, {"name": "Jude Law", "character": "Young Writer", "id": 9642, "credit_id": "52fe4a47c3a368484e14a779", "cast_id": 5, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 8}, {"name": "Bill Murray", "character": "M. Ivan", "id": 1532, "credit_id": "52fe4a47c3a368484e14a775", "cast_id": 4, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 9}, {"name": "Edward Norton", "character": "Henckels", "id": 819, "credit_id": "52fe4a47c3a368484e14a77d", "cast_id": 6, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 10}, {"name": "Saoirse Ronan", "character": "Agatha", "id": 36592, "credit_id": "52fe4a47c3a368484e14a771", "cast_id": 3, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 11}, {"name": "Jason Schwartzman", "character": "M. Jean", "id": 17881, "credit_id": "52fe4a47c3a368484e14a799", "cast_id": 13, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 12}, {"name": "L\u00e9a Seydoux", "character": "Clotilde", "id": 121529, "credit_id": "52fe4a47c3a368484e14a7c1", "cast_id": 23, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 13}, {"name": "Tilda Swinton", "character": "Madame D.", "id": 3063, "credit_id": "52fe4a47c3a368484e14a78d", "cast_id": 10, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 14}, {"name": "Tom Wilkinson", "character": "Author", "id": 207, "credit_id": "52fe4a48c3a368484e14a7e3", "cast_id": 29, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 15}, {"name": "Owen Wilson", "character": "M. Chuck", "id": 887, "credit_id": "52fe4a47c3a368484e14a781", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 16}, {"name": "Florian Lukas", "character": "Pinky", "id": 4795, "credit_id": "52fe4a47c3a368484e14a7a5", "cast_id": 17, "profile_path": "/g3AW6IIUEjmjCLTnS0Q5SfjcsUd.jpg", "order": 17}, {"name": "Bob Balaban", "character": "M. Martin", "id": 12438, "credit_id": "52fe4a47c3a368484e14a7bd", "cast_id": 22, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 18}, {"name": "Fisher Stevens", "character": "M. Robin", "id": 26473, "credit_id": "5319c315c3a3685c31002eb4", "cast_id": 31, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 19}, {"name": "Wallace Wolodarsky", "character": "M. Georges", "id": 486, "credit_id": "5319c325c3a3685c4a00300f", "cast_id": 32, "profile_path": "/dvmEq92L4UwL20uO2BOQ8vnpPBP.jpg", "order": 20}, {"name": "Waris Ahluwalia", "character": "M. Dino", "id": 5301, "credit_id": "5319c330c3a3685c4a003012", "cast_id": 33, "profile_path": "/608mxzVDmbQtWt3IedJyQ72FNg5.jpg", "order": 21}, {"name": "Larry Pine", "character": "Mr. Mosher", "id": 19511, "credit_id": "5375305a0e0a263037000381", "cast_id": 42, "profile_path": "/cVw0dH0MKSu6ckFuqkbQK4rNcRI.jpg", "order": 22}, {"name": "Karl Markovics", "character": "Wolf", "id": 38459, "credit_id": "537530670e0a26303d000386", "cast_id": 43, "profile_path": "/9ryaqvn9VnqHE97stunzmyNEyaG.jpg", "order": 23}, {"name": "Volker Michalowski", "character": "Gunther", "id": 1052284, "credit_id": "537530780e0a263031000398", "cast_id": 44, "profile_path": "/t6zyNaYfALilSOAd0JHhdLmuKqk.jpg", "order": 24}, {"name": "Daniel Steiner", "character": "Anatole", "id": 1064525, "credit_id": "537530920e0a26303100039c", "cast_id": 45, "profile_path": "/o4IfD5CslMvI0WKUYzOHTKBuBCw.jpg", "order": 25}, {"name": "Hendrik von B\u00fcltzingsl\u00f6wen", "character": "Ernst", "id": 56604, "credit_id": "537530a40e0a2630340003b2", "cast_id": 46, "profile_path": "/9EzFEZGguM2Z65KbF0IYcxfOSin.jpg", "order": 26}, {"name": "Lisa Kreuzer", "character": "Grande Dame", "id": 22612, "credit_id": "537530b60e0a263043000391", "cast_id": 47, "profile_path": "/ur06QfGJtQDONbLGeY11JsPNaf3.jpg", "order": 27}, {"name": "Rainer Reiners", "character": "Herr Mendl", "id": 1309014, "credit_id": "537530cf0e0a263043000397", "cast_id": 48, "profile_path": "/uV6zomMFl16asOzfSsivi75xhya.jpg", "order": 28}, {"name": "Sabine Urig", "character": "Laetizia", "id": 145467, "credit_id": "537530e10e0a263043000399", "cast_id": 49, "profile_path": "/lihOuAlrt6AjuGJ50oCrr6KYzjF.jpg", "order": 29}, {"name": "Claudia Jung", "character": "Usherette", "id": 1191623, "credit_id": "537530f50e0a26303d000395", "cast_id": 50, "profile_path": "/cfAceCdPOOTbCYwlUMxipklp9E7.jpg", "order": 30}, {"name": "Matthias Matschke", "character": "Prison Guard", "id": 40565, "credit_id": "537531080e0a26303d000397", "cast_id": 51, "profile_path": "/aFUN3nhSDBAbO49kAzlGE2VEw8x.jpg", "order": 31}, {"name": "Philipp Sonntag", "character": "Monk", "id": 48737, "credit_id": "537531160e0a26304300039e", "cast_id": 52, "profile_path": "/4RzKSkq9F1x34UD9SjVC8xpPpXX.jpg", "order": 32}, {"name": "Hans Martin Stier", "character": "Monk", "id": 2315, "credit_id": "537531280e0a26303a0003b4", "cast_id": 53, "profile_path": "/dt5DPEmk9VF23BSWxE3ZZmpcsGf.jpg", "order": 33}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4a47c3a368484e14a769", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.9, "runtime": 99}, "218778": {"poster_path": "/yup7xOCpOSHeUyalUH6mpFuBDpG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.", "video": false, "id": 218778, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Alexander and the Terrible, Horrible, No Good, Very Bad Day", "tagline": "Get ready for the best worst day of your life.", "vote_count": 130, "homepage": "http://movies.disney.com/alexander-and-the-terrible-horrible-no-good-very-bad-day/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1698641", "adult": false, "backdrop_path": "/z5e275a7iDNCQNx0NelsX5LYmDU.jpg", "production_companies": [{"name": "Walt Disney Studios Motion Pictures", "id": 3036}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2014-10-10", "popularity": 1.80890196903454, "original_title": "Alexander and the Terrible, Horrible, No Good, Very Bad Day", "budget": 0, "cast": [{"name": "Bella Thorne", "character": "Celia", "id": 98285, "credit_id": "52fe4e55c3a368484e21afa9", "cast_id": 8, "profile_path": "/8dHvzSKt9Lfz75kMzN2eznQ8ci8.jpg", "order": 0}, {"name": "Steve Carell", "character": "Ben", "id": 4495, "credit_id": "53757fc4c3a3681efb00086a", "cast_id": 20, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Jennifer Garner", "character": "Kelly", "id": 9278, "credit_id": "52fe4e55c3a368484e21afa1", "cast_id": 6, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 2}, {"name": "Dick Van Dyke", "character": "Himself", "id": 61303, "credit_id": "54022952c3a368068c003831", "cast_id": 21, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 3}, {"name": "Jennifer Coolidge", "character": "Ms. Suggs", "id": 38334, "credit_id": "52fe4e55c3a368484e21afa5", "cast_id": 7, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 4}, {"name": "Megan Mullally", "character": "Nina", "id": 52119, "credit_id": "52fe4e55c3a368484e21afad", "cast_id": 9, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 5}, {"name": "Kerris Dorsey", "character": "Emily", "id": 220064, "credit_id": "52fe4e55c3a368484e21afb1", "cast_id": 10, "profile_path": "/v2Sy5s73M7QyGdpbTZSJH1YzYjr.jpg", "order": 6}, {"name": "Donald Glover", "character": "", "id": 119589, "credit_id": "5402295bc3a368437200380b", "cast_id": 22, "profile_path": "/dHQ9gpLg2fGUUHNy5zVQ4zNgcYC.jpg", "order": 7}, {"name": "Burn Gorman", "character": "Mr. Brand", "id": 39659, "credit_id": "52fe4e55c3a368484e21afb5", "cast_id": 11, "profile_path": "/qV6MEseSjTkz1SKw9RoNHaesdRr.jpg", "order": 8}, {"name": "Dylan Minnette", "character": "Anthony", "id": 112476, "credit_id": "52fe4e55c3a368484e21afb9", "cast_id": 12, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 9}, {"name": "Toni Trucks", "character": "Steph", "id": 105831, "credit_id": "52fe4e55c3a368484e21afc1", "cast_id": 14, "profile_path": "/pmXJ5l5udyotzZzeRbhLq62f4wa.jpg", "order": 10}, {"name": "Jesse Garcia", "character": "Dwayne", "id": 66525, "credit_id": "54022968c3a3682d98001ef5", "cast_id": 23, "profile_path": "/9bxoEyjrGODKEyopYWtGgDeCauB.jpg", "order": 11}, {"name": "Mary Mouser", "character": "Audrey Gibson", "id": 1223084, "credit_id": "54022975c3a368060300346e", "cast_id": 24, "profile_path": "/1E081ChzTHOdyb1fEXVqNq2WRhF.jpg", "order": 12}, {"name": "Samantha Logan", "character": "Heather", "id": 1096930, "credit_id": "52fe4e55c3a368484e21afc9", "cast_id": 16, "profile_path": "/2SCGV1RJ3Q5ksJLhgSrpJD0uiUS.jpg", "order": 13}, {"name": "Eric Edelstein", "character": "Mr. Tanucci", "id": 59297, "credit_id": "54022982c3a3682d98001efa", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Reese C. Hartwig", "character": "Elliot", "id": 1203524, "credit_id": "54023bd7c3a3684366003968", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Ed Oxenbould", "character": "Alexander", "id": 1198286, "credit_id": "542aad660e0a261c1500055f", "cast_id": 34, "profile_path": "/eBn6o6ZksPsfmbmMrECE3Ck9zgO.jpg", "order": 16}], "directors": [{"name": "Miguel Arteta", "department": "Directing", "job": "Director", "credit_id": "52fe4e55c3a368484e21af87", "profile_path": "/c1StX0L6loDCLcQODL8Z6CPYF1t.jpg", "id": 61069}], "vote_average": 6.3, "runtime": 81}, "9740": {"poster_path": "/wmuxJ9Kscg0SuGlfg2ARmGgHvOF.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 165092266, "overview": "After having successfully eluded the authorities for years, Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he is discovered leaving a deserving few dead in the process. He returns back to America to once again make contact with now disgraced Agent Clarice Starling who is suffering the wrath of a malicious FBI official/rival as well as the media.", "video": false, "id": 9740, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Hannibal", "tagline": "His genius undeniable. His evil, unspeakable.", "vote_count": 442, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0212985", "adult": false, "backdrop_path": "/oMFi7PwDSSsnZGJohH9qLHVhBiO.jpg", "production_companies": [{"name": "MGM", "id": 5899}, {"name": "Universal Pictures", "id": 33}, {"name": "Dino de Laurentiis Cinematografica", "id": 1216}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2001-02-08", "popularity": 0.398852101055107, "original_title": "Hannibal", "budget": 87000000, "cast": [{"name": "Anthony Hopkins", "character": "Hannibal Lecter", "id": 4173, "credit_id": "52fe4525c3a36847f80bef29", "cast_id": 1, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Clarice Starling", "id": 1231, "credit_id": "52fe4525c3a36847f80bef2d", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Mason Verger", "id": 64, "credit_id": "52fe4525c3a36847f80bef31", "cast_id": 3, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Paul Krendler", "id": 11477, "credit_id": "52fe4525c3a36847f80bef35", "cast_id": 4, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "David Andrews", "character": "FBI Agent Pearsall", "id": 7219, "credit_id": "52fe4525c3a36847f80bef75", "cast_id": 16, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 4}, {"name": "Frankie Faison", "character": "Barney Matthews", "id": 13936, "credit_id": "52fe4525c3a36847f80bef7f", "cast_id": 18, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 5}, {"name": "Giancarlo Giannini", "character": "Insp. Renaldo Pazzi", "id": 3753, "credit_id": "52fe4525c3a36847f80bef83", "cast_id": 19, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 6}, {"name": "Francesca Neri", "character": "Allegra Pazzi", "id": 3809, "credit_id": "52fe4525c3a36847f80bef87", "cast_id": 20, "profile_path": "/A6vL0QH8TjxjLBLAZW47XGBLNE8.jpg", "order": 7}, {"name": "\u017deljko Ivanek", "character": "Dr. Cordell Doemling", "id": 6752, "credit_id": "52fe4525c3a36847f80bef8b", "cast_id": 21, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 8}, {"name": "Hazelle Goodman", "character": "Evelda Drumgo", "id": 91756, "credit_id": "52fe4525c3a36847f80bef8f", "cast_id": 22, "profile_path": "/kTa2cn8cuJdxKJBqFnYHibIknI9.jpg", "order": 9}, {"name": "Francis Guinan", "character": "FBI Asst. Director Noonan", "id": 162754, "credit_id": "52fe4525c3a36847f80bef93", "cast_id": 23, "profile_path": "/aInGPcXUo7GOefwXSJyN7MtELW9.jpg", "order": 10}, {"name": "James Opher", "character": "DEA Agent John Eldridge", "id": 953778, "credit_id": "52fe4525c3a36847f80bef97", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Enrico Lo Verso", "character": "Gnocco", "id": 27392, "credit_id": "52fe4525c3a36847f80bef9b", "cast_id": 25, "profile_path": "/iXKr7JZ163MxgqNVQlqllSFBFpL.jpg", "order": 12}, {"name": "Ivano Marescotti", "character": "Carlo", "id": 15918, "credit_id": "52fe4525c3a36847f80bef9f", "cast_id": 26, "profile_path": "/iPO3IGgwBgroaYnKhp7v7O4PTLo.jpg", "order": 13}, {"name": "Fabrizio Gifuni", "character": "Matteo", "id": 35106, "credit_id": "52fe4525c3a36847f80befa3", "cast_id": 27, "profile_path": "/3Ns39WsR02vGg65prDvqcmyFNRE.jpg", "order": 14}, {"name": "Giannina Facio", "character": "Verger's Fingerprint Technician", "id": 58787, "credit_id": "52fe4525c3a36847f80befa7", "cast_id": 28, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 15}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80bef3b", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.2, "runtime": 131}, "13989": {"poster_path": "/vvNVGdJV75Xfmyx7CSVxEhZW9Xy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "Former federal agent Jack Bauer confronts African dictator Benjamin Juma, whose forces have been ordered to capture the children Bauer oversees for malicious military training.", "video": false, "id": 13989, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "24: Redemption", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0813980", "adult": false, "backdrop_path": "/aFSR0AmG57ku2MLW3chUr5TwfTg.jpg", "production_companies": [{"name": "Imagine Television", "id": 2850}, {"name": "Teakwood Lane Productions", "id": 10850}, {"name": "Real Time Productions", "id": 10851}], "release_date": "2008-11-23", "popularity": 0.537397044374361, "original_title": "24: Redemption", "budget": 0, "cast": [{"name": "Kiefer Sutherland", "character": "Jack Bauer", "id": 2628, "credit_id": "52fe45bf9251416c75061253", "cast_id": 2, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "Cherry Jones", "character": "President Elect Allison Taylor", "id": 1956, "credit_id": "52fe45bf9251416c75061263", "cast_id": 5, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Ethan Kanin", "id": 4029, "credit_id": "52fe45bf9251416c75061267", "cast_id": 6, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "Colm Feore", "character": "Henry Taylor", "id": 10132, "credit_id": "52fe45bf9251416c7506126b", "cast_id": 7, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 3}, {"name": "Jon Voight", "character": "Jonas Hodges", "id": 10127, "credit_id": "5450a0340e0a2601d80039aa", "cast_id": 8, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 4}], "directors": [{"name": "Jon Cassar", "department": "Directing", "job": "Director", "credit_id": "52fe45bf9251416c7506124f", "profile_path": "/oTRxoPrHd08tC5gDrWBolMeomM.jpg", "id": 25873}], "vote_average": 7.0, "runtime": 102}, "49730": {"poster_path": "/tH8FpMbtePqGqeZ10cnXEkHKIMB.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89162162, "overview": "Valerie is in love with a brooding outsider, Peter, but her parents have arranged for her to marry the wealthy Henry. Unwilling to lose each other, Valerie and Peter plan to run away together when they learn that Valerie's older sister has been killed by a werewolf that prowls the dark forest surrounding their village. Hungry for revenge, the people call on famed werewolf hunter, Father Solomon, to help them kill the wolf. But Solomon's arrival brings unintended consequences as he warns that the wolf, who takes human form by day, could be any one of them.", "video": false, "id": 49730, "genres": [{"id": 53, "name": "Thriller"}], "title": "Red Riding Hood", "tagline": "Who's afraid?", "vote_count": 226, "homepage": "http://www.redridinghoodmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1486185", "adult": false, "backdrop_path": "/1hPMsHO2KMBCtVLevPdXtN1ohrA.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Appian Way", "id": 562}, {"name": "Random Films", "id": 7262}], "release_date": "2011-03-11", "popularity": 1.31153973716331, "original_title": "Red Riding Hood", "budget": 42000000, "cast": [{"name": "Amanda Seyfried", "character": "Valerie", "id": 71070, "credit_id": "52fe47a3c3a36847f81408c3", "cast_id": 1, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Father Soloman", "id": 64, "credit_id": "52fe47a3c3a36847f81408c7", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Billy Burke", "character": "Cesaire", "id": 21029, "credit_id": "52fe47a3c3a36847f81408d3", "cast_id": 5, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 2}, {"name": "Shiloh Fernandez", "character": "Peter", "id": 79795, "credit_id": "52fe47a3c3a36847f81408e3", "cast_id": 8, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 3}, {"name": "Max Irons", "character": "Henry", "id": 232396, "credit_id": "52fe47a3c3a36847f81408e7", "cast_id": 9, "profile_path": "/mFKJvG49Gr1Fb0HgsTDg4YSZzJc.jpg", "order": 4}, {"name": "Julie Christie", "character": "Grandmother", "id": 1666, "credit_id": "52fe47a4c3a36847f81408eb", "cast_id": 10, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 5}, {"name": "Lukas Haas", "character": "Father August", "id": 526, "credit_id": "52fe47a3c3a36847f81408cb", "cast_id": 3, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 6}, {"name": "Virginia Madsen", "character": "Suzette", "id": 12519, "credit_id": "52fe47a3c3a36847f81408cf", "cast_id": 4, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 7}, {"name": "Shauna Kain", "character": "Roxanne", "id": 941988, "credit_id": "5301dc50c3a3680a19262a96", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Michael Hogan", "character": "The Reeve", "id": 164114, "credit_id": "5301dcc3c3a3680a09249447", "cast_id": 18, "profile_path": "/c14qQjStwZEs7caQCArYNbdOK2i.jpg", "order": 9}, {"name": "Adrian Holmes", "character": "Captain", "id": 33348, "credit_id": "5301dd00925141219e24bd59", "cast_id": 19, "profile_path": "/jGvsYbrvsok5QAYEJ9V8VHvDy9I.jpg", "order": 10}, {"name": "Cole Heppell", "character": "Claude", "id": 11830, "credit_id": "5301dd11925141219228cde4", "cast_id": 20, "profile_path": "/eaYBjHbpZ16j16pLhXBDnAgNVJq.jpg", "order": 11}, {"name": "Christine Willes", "character": "Madame Lazar", "id": 189719, "credit_id": "5301dd23925141219228d0c2", "cast_id": 21, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 12}, {"name": "Michael Shanks", "character": "Adrien Lazar", "id": 26086, "credit_id": "5301dd35925141218c2661d5", "cast_id": 22, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 13}, {"name": "Kacey Rohl", "character": "Prudence", "id": 1038625, "credit_id": "5301dd44925141219228d18c", "cast_id": 23, "profile_path": "/ic3DvvbrfxzJ3uKxYDBpER0sbxy.jpg", "order": 14}], "directors": [{"name": "Catherine Hardwicke", "department": "Directing", "job": "Director", "credit_id": "52fe47a3c3a36847f81408d9", "profile_path": "/yUOoXg1couvQvZftVvONhcQIEhd.jpg", "id": 19850}], "vote_average": 5.6, "runtime": 100}, "38575": {"poster_path": "/l13emtM0cz0HyJeWSxb6ml5RvzT.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 357852395, "overview": "12-year-old Dre Parker could have been the most popular kid in Detroit, but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse, Dre's feelings make him an enemy of the class bully, Cheng. With no friends in a strange land, Dre has nowhere to turn but maintenance man Mr. Han, who is a kung fu master. As Han teaches Dre that kung fu is not about punches and parries, but maturity and calm, Dre realizes that facing down the bullies will be the fight of his life.", "video": false, "id": 38575, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid", "tagline": "A Challenge He Never Imagined. A Teacher He Never Expected.", "vote_count": 507, "homepage": "http://www.karatekid-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1155076", "adult": false, "backdrop_path": "/rfhnEYubWD4hnUUm8xXmotpqffb.jpg", "production_companies": [{"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Columbia Pictures", "id": 5}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "China Film Group", "id": 5635}], "release_date": "2010-06-10", "popularity": 0.897299119954321, "original_title": "The Karate Kid", "budget": 40000000, "cast": [{"name": "Jaden Smith", "character": "Dre Parker", "id": 120724, "credit_id": "52fe46c79251416c9105f621", "cast_id": 1, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 0}, {"name": "Jackie Chan", "character": "Mr. Han", "id": 18897, "credit_id": "52fe46c79251416c9105f625", "cast_id": 2, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 1}, {"name": "Taraji P. Henson", "character": "Sherry Parker", "id": 40036, "credit_id": "52fe46c79251416c9105f629", "cast_id": 3, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 2}, {"name": "Yu Rong-Guang", "character": "Master Li", "id": 120725, "credit_id": "52fe46c79251416c9105f62d", "cast_id": 4, "profile_path": "/9LxWXXXJM8R0O9LGnec3ajURVfa.jpg", "order": 3}, {"name": "Tess Liu", "character": "History Teacher", "id": 120726, "credit_id": "52fe46c79251416c9105f631", "cast_id": 5, "profile_path": "/7VA2ZJSIuVthaFOPM607YNm9lx3.jpg", "order": 4}, {"name": "Xu Ming", "character": "Bao", "id": 120727, "credit_id": "52fe46c79251416c9105f635", "cast_id": 6, "profile_path": "/etOSqd7M9I5BJZw9RU4JUSm2iV0.jpg", "order": 5}, {"name": "Ji Wang", "character": "", "id": 1050418, "credit_id": "5330e7e5c3a3686aa50006a2", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Wenwen Han", "character": "Meiying", "id": 1443364, "credit_id": "550da4ebc3a36848860061dd", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Rongguang Yu", "character": "Master Li", "id": 1443370, "credit_id": "550da51a92514133c3003db0", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Zhensu Wu", "character": "Meiying's Dad", "id": 1443373, "credit_id": "550da53f9251413554003b15", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Zhiheng Wang", "character": "Meiying's Mom", "id": 1443374, "credit_id": "550da55192514146a0005cb4", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Zhenwei Wang", "character": "Cheng", "id": 1443375, "credit_id": "550da57fc3a36848860061ec", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Jared Minns", "character": "Dre's Detroit Friend", "id": 1443376, "credit_id": "550da5b49251414695005fd7", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Shijia L\u00fc", "character": "Liang", "id": 1443377, "credit_id": "550da5c49251413554003b29", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Yi Zhao", "character": "Zhuang", "id": 1102674, "credit_id": "550da5d692514133c3003dca", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Bo Zhang", "character": "Song", "id": 1443378, "credit_id": "550da5e99251414695005fe4", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Luke Carberry", "character": "Harry", "id": 1443379, "credit_id": "550da5fa92514146a0005cc7", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Cameron Hillman", "character": "Mark", "id": 1443380, "credit_id": "550da60cc3a368487d006325", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Ghye Samuel Brown", "character": "Oz", "id": 1443381, "credit_id": "550da61bc3a3684883006089", "cast_id": 24, "profile_path": null, "order": 19}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe46c79251416c9105f63b", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 6.0, "runtime": 140}, "14001": {"poster_path": "/gRe2XJPOSFH9ZJe5oOsrtnX0eeB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22217407, "overview": "Jamie returns to his hometown in search of answers to his wife's murder, which occurred after receiving a weird package containing a ventriloquist dummy named Billy, which may be linked to the legend of ventriloquist Mary Shaw. Destined to find out the truth, Jamie goes to the town of Raven's Fair, where Shaw used to perform and is buried. But Jamie is in for more than he expected.", "video": false, "id": 14001, "genres": [{"id": 27, "name": "Horror"}], "title": "Dead Silence", "tagline": "You scream. You die.", "vote_count": 106, "homepage": "http://www.deadsilencemovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455760", "adult": false, "backdrop_path": "/zrrPpisTkQG4fzIXiuTJh6ZCjJD.jpg", "production_companies": [{"name": "Evolution Entertainment", "id": 23019}, {"name": "Universal Pictures", "id": 33}, {"name": "Twisted Pictures", "id": 2061}], "release_date": "2007-03-16", "popularity": 1.30533513592197, "original_title": "Dead Silence", "budget": 20000000, "cast": [{"name": "Ryan Kwanten", "character": "Jamie Ashen", "id": 133212, "credit_id": "52fe45c19251416c750615f3", "cast_id": 3, "profile_path": "/gbAhDfCKKUtGJhQJIukkiZGgQBW.jpg", "order": 0}, {"name": "Donnie Wahlberg", "character": "Jim Lipton", "id": 2680, "credit_id": "52fe45c19251416c750615f7", "cast_id": 4, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Edward Ashen", "id": 4029, "credit_id": "52fe45c19251416c750615fb", "cast_id": 5, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "Amber Valletta", "character": "Ella", "id": 38425, "credit_id": "52fe45c19251416c750615ff", "cast_id": 6, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Laura Regan", "character": "Lisa Ashen", "id": 73836, "credit_id": "52fe45c19251416c75061603", "cast_id": 7, "profile_path": "/v6rn1OlsveWTOOjWyycxmQYQeVt.jpg", "order": 4}, {"name": "Steve Adams", "character": "Police officer", "id": 66934, "credit_id": "52fe45c19251416c75061607", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Michael Fairman", "character": "Henry", "id": 84707, "credit_id": "52fe45c19251416c7506160b", "cast_id": 9, "profile_path": "/7xdaQL4hxatCFWXottzdFsUKGJU.jpg", "order": 6}, {"name": "Keir Gilchrist", "character": "Henry (young)", "id": 132712, "credit_id": "52fe45c19251416c7506160f", "cast_id": 10, "profile_path": "/3qD75fzIrNvTAgYQCVczZ0SBsxI.jpg", "order": 7}, {"name": "Judith Roberts", "character": "Mary Shaw", "id": 14797, "credit_id": "52fe45c19251416c75061613", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Joan Heney", "character": "Marion Walker", "id": 59199, "credit_id": "52fe45c19251416c75061617", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "5387759cc3a3681aed0033e4", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.3, "runtime": 89}, "2334": {"poster_path": "/fftXYsaMhS1EbP0IZGr2gGysYeS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A gang of thieves calling themselves the Santa Claus Gang are wreaking havoc, and the police can't keep up. Police Captain Gilbert is distracted by a Chinese reporter writing a story on his squad, and taxi driver Daniel is in the midst of a relationship crisis. After a string of mistakes in which the thieves outsmart the police time and time again, Daniel and his super-taxi pitch in.", "video": false, "id": 2334, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Taxi 3", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0295721", "adult": false, "backdrop_path": "/j2JjcTi5jW0ZVKJ1K6dYOhROHzH.jpg", "production_companies": [{"name": "Europa Corp", "id": 1075}], "release_date": "2003-01-29", "popularity": 0.571901174769621, "original_title": "Taxi 3", "budget": 20817650, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804a98d", "cast_id": 1, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804a991", "cast_id": 2, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Lilly Bertineau", "id": 8293, "credit_id": "52fe434fc3a36847f804a995", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804a999", "cast_id": 4, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 3}, {"name": "Bernard Farcy", "character": "Commissaire Gibert", "id": 23984, "credit_id": "52fe434fc3a36847f804a9c7", "cast_id": 12, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 4}, {"name": "Bai Ling", "character": "Qui", "id": 39126, "credit_id": "52fe434fc3a36847f804a9cb", "cast_id": 13, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 5}, {"name": "\u00c9douard Montoute", "character": "Alain", "id": 5441, "credit_id": "530e567ec3a3685c20002dc0", "cast_id": 14, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 6}, {"name": "Jean-Christophe Bouvet", "character": "G\u00e9n\u00e9ral Edmond Bertineau", "id": 19776, "credit_id": "530e568fc3a3685c20002dc2", "cast_id": 15, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 7}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a9ab", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 5.5, "runtime": 82}, "2335": {"poster_path": "/2LAR3nFYjozHQiFJYKRjT4OAeK7.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Before being extradited to Africa to stand trial, a notorious Belgian criminal is entrusted to the Marseilles police department for less than 24 hours. But the wily crook convinces bumbling policeman Emilien he's a lowly Belgian embassy employee who got railroaded by the brilliant master criminal.", "video": false, "id": 2335, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Taxi 4", "tagline": "", "vote_count": 73, "homepage": "http://www.taxi4-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0804540", "adult": false, "backdrop_path": "/9AGdVqkrf5NRQ8pV7VQqyQJsjWf.jpg", "production_companies": [{"name": "Apipoula\u00ef", "id": 1076}], "release_date": "2007-02-14", "popularity": 0.673026072838481, "original_title": "Taxi 4", "budget": 0, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804aa09", "cast_id": 6, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804aa0d", "cast_id": 7, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804aa11", "cast_id": 8, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 2}, {"name": "\u00c9douard Montoute", "character": "Alain", "id": 5441, "credit_id": "52fe434fc3a36847f804aa15", "cast_id": 9, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 3}, {"name": "Jean-Christophe Bouvet", "character": "G\u00e9n\u00e9ral Edmond Bertineau", "id": 19776, "credit_id": "52fe434fc3a36847f804aa19", "cast_id": 10, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 4}, {"name": "Jean-Luc Couchard", "character": "Le Belge", "id": 24040, "credit_id": "52fe434fc3a36847f804aa1d", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Fran\u00e7ois Damiens", "character": "Serge", "id": 24041, "credit_id": "52fe434fc3a36847f804aa21", "cast_id": 12, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 6}, {"name": "Mourade Zeguendi", "character": "Sukk", "id": 24042, "credit_id": "52fe434fc3a36847f804aa25", "cast_id": 13, "profile_path": "/biinZ4XKNIIEPJFdUgAnSTX7TR9.jpg", "order": 7}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a9ed", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 5.5, "runtime": 91}, "79548": {"poster_path": "/2B4l3iPw6gZZVD3xNXnVrDisWiT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When her sister disappears, Jill is convinced the serial killer who kidnapped her two years ago has returned, and she sets out to once again face her abductor.", "video": false, "id": 79548, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Gone", "tagline": "No one believes her. Nothing will stop her.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1838544", "adult": false, "backdrop_path": "/h7irq9vkqYy8W3PHx2pAr26sXoj.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-02-24", "popularity": 0.556270716012457, "original_title": "Gone", "budget": 0, "cast": [{"name": "Amanda Seyfried", "character": "Jill", "id": 71070, "credit_id": "52fe49d8c3a368484e143069", "cast_id": 3, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Jennifer Carpenter", "character": "Sharon Ames", "id": 53828, "credit_id": "52fe49d8c3a368484e14306d", "cast_id": 4, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 1}, {"name": "Daniel Sunjata", "character": "Powers", "id": 10582, "credit_id": "52fe49d8c3a368484e143071", "cast_id": 5, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 2}, {"name": "Emily Wickersham", "character": "Molly", "id": 204679, "credit_id": "52fe49d8c3a368484e143093", "cast_id": 12, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 3}, {"name": "Sebastian Stan", "character": "Billy", "id": 60898, "credit_id": "52fe49d8c3a368484e143097", "cast_id": 13, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 4}, {"name": "Wes Bentley", "character": "Peter Hood", "id": 8210, "credit_id": "52fe49d8c3a368484e14309b", "cast_id": 14, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 5}, {"name": "Socratis Otto", "character": "Jim", "id": 75174, "credit_id": "52fe49d8c3a368484e14309f", "cast_id": 15, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 6}, {"name": "Katherine Moennig", "character": "Erica Lonsdale", "id": 122231, "credit_id": "52fe49d8c3a368484e1430a3", "cast_id": 16, "profile_path": "/rAXQOstsWgKqlVjYjeRx1R3AP7c.jpg", "order": 7}], "directors": [{"name": "Heitor Dhalia", "department": "Directing", "job": "Director", "credit_id": "52fe49d8c3a368484e14305f", "profile_path": null, "id": 111094}], "vote_average": 5.6, "runtime": 94}, "5825": {"poster_path": "/uh2sQFjRXCwexWcBtV7OEnL1c5G.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71320000, "overview": "It's Christmas time and the Griswolds are preparing for a family seasonal celebration, but things never run smoothly for Clark, his wife Ellen and their two kids. Clark's continual bad luck is worsened by his obnoxious family guests, but he manages to keep going knowing that his Christmas bonus is due soon.", "video": false, "id": 5825, "genres": [{"id": 35, "name": "Comedy"}], "title": "National Lampoon's Christmas Vacation", "tagline": "Yule crack up.", "vote_count": 242, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gwKsTIUgBRtTd4M2m5EKuTQrYaf.jpg", "poster_path": "/66PJIC2ahIZOCg7AkQFszllroCm.jpg", "id": 108693, "name": "National Lampoon's Vacation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097958", "adult": false, "backdrop_path": "/o5yflApN9GuOkmnv6O9l4z83U5F.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1989-12-01", "popularity": 0.936143229032352, "original_title": "National Lampoon's Christmas Vacation", "budget": 27000000, "cast": [{"name": "Chevy Chase", "character": "Clark Griswold", "id": 54812, "credit_id": "52fe4424c3a36847f8084af5", "cast_id": 9, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Beverly D'Angelo", "character": "Ellen Griswold", "id": 821, "credit_id": "52fe4424c3a36847f8084af9", "cast_id": 10, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 1}, {"name": "Juliette Lewis", "character": "Audry Griswold", "id": 3196, "credit_id": "52fe4424c3a36847f8084afd", "cast_id": 11, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 2}, {"name": "Johnny Galecki", "character": "Russel Rusty Griswold", "id": 16478, "credit_id": "52fe4424c3a36847f8084b01", "cast_id": 12, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 3}, {"name": "John Randolph", "character": "Clark Wilhelm Griswold Sr.", "id": 18649, "credit_id": "52fe4424c3a36847f8084b05", "cast_id": 13, "profile_path": "/4mfEMVfzxPuRRcVBtcPyIXF5KoE.jpg", "order": 4}, {"name": "Diane Ladd", "character": "Nora Griswold", "id": 6587, "credit_id": "52fe4424c3a36847f8084b09", "cast_id": 14, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 5}, {"name": "E.G. Marshall", "character": "Art Smith", "id": 5249, "credit_id": "52fe4424c3a36847f8084b0d", "cast_id": 15, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 6}, {"name": "Doris Roberts", "character": "Frances Smith", "id": 45863, "credit_id": "52fe4424c3a36847f8084b11", "cast_id": 16, "profile_path": "/4J9jniy4ZEd6NRTfkzq9prKoEIt.jpg", "order": 7}, {"name": "Randy Quaid", "character": "Cousin Eddie", "id": 1811, "credit_id": "52fe4424c3a36847f8084b15", "cast_id": 17, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 8}, {"name": "Miriam Flynn", "character": "Cousin Catherine", "id": 35109, "credit_id": "52fe4424c3a36847f8084b19", "cast_id": 18, "profile_path": "/6VKACA883vyve6uuviO4I6QpluL.jpg", "order": 9}, {"name": "Cody Burger", "character": "Cousin Rocky", "id": 45864, "credit_id": "52fe4424c3a36847f8084b1d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Ellen Hamilton Latzen", "character": "Cousin Ruby Sue", "id": 45865, "credit_id": "52fe4424c3a36847f8084b21", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "William Hickey", "character": "Uncle Lewis", "id": 21282, "credit_id": "52fe4424c3a36847f8084b25", "cast_id": 21, "profile_path": "/zr7UJxP5MdEksn6ZaxeHbwr6o5Z.jpg", "order": 12}, {"name": "Mae Questel", "character": "Aunt Bethany", "id": 58530, "credit_id": "52fe4424c3a36847f8084b29", "cast_id": 22, "profile_path": "/wsUsW4fo8u82fbYQlXVaql6fgbk.jpg", "order": 13}, {"name": "Sam McMurray", "character": "Bill", "id": 5176, "credit_id": "52fe4424c3a36847f8084b2d", "cast_id": 23, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 14}, {"name": "Nicholas Guest", "character": "Todd Chester", "id": 36821, "credit_id": "52fe4424c3a36847f8084b31", "cast_id": 24, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 15}, {"name": "Julia Louis-Dreyfus", "character": "Margo Chester", "id": 15886, "credit_id": "52fe4424c3a36847f8084b35", "cast_id": 25, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 16}, {"name": "Nicolette Scorsese", "character": "Mary", "id": 106731, "credit_id": "52fe4424c3a36847f8084b39", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Keith MacKechnie", "character": "Delivery Boy", "id": 239021, "credit_id": "52fe4424c3a36847f8084b3d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Brian Doyle-Murray", "character": "Mr. Frank Shirley", "id": 1535, "credit_id": "52fe4424c3a36847f8084b41", "cast_id": 28, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 19}, {"name": "Natalija Nogulich", "character": "Mrs. Helen Shirley", "id": 65017, "credit_id": "52fe4424c3a36847f8084b45", "cast_id": 29, "profile_path": "/dymzTDnnnfhBO6BruKBJvJMUx3X.jpg", "order": 20}], "directors": [{"name": "Jeremiah S. Chechik", "department": "Directing", "job": "Director", "credit_id": "52fe4424c3a36847f8084ac7", "profile_path": "/avEcJTGsWFEzxpSOutwhkP3adQ8.jpg", "id": 34682}], "vote_average": 6.9, "runtime": 97}, "262338": {"poster_path": "/p1WgHQdMlae7ekJZVrZvnNOKmKa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tom and Anna Reed, a young American couple, fall into severe debt while renovating Anna's family home in London. As the couple faces the loss of their dream to have a house and start a family, they discover that the tenant in the apartment below them is dead, and he's left behind a stash of cash\u2014$400,000 worth. Though initially hesitant, Tom and Anna decide that the plan is simple: all they have to do is quietly take the money and use only what's necessary to get them out of debt. But when they start spending the money and can't seem to stop, they find themselves the target of a deadly adversary\u2014the thief who stole it\u2014and that's when very bad things start happening to good people.", "video": false, "id": 262338, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Good People", "tagline": "Money changes everything", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1361318", "adult": false, "backdrop_path": "/c6fa0bNRC66nkGgQ3ijjUno8ZsF.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Filmgate Films", "id": 18230}, {"name": "Maguire Entertainment", "id": 2236}, {"name": "Material Pictures", "id": 12139}], "release_date": "2014-09-26", "popularity": 0.933287269008549, "original_title": "Good People", "budget": 0, "cast": [{"name": "James Franco", "character": "Tom Reed", "id": 17051, "credit_id": "5339934d9251411302003885", "cast_id": 2, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Kate Hudson", "character": "Anna Reed", "id": 11661, "credit_id": "533993569251417da7004913", "cast_id": 3, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 2}, {"name": "Anna Friel", "character": "Sarah", "id": 58016, "credit_id": "533993619251417da1004b0a", "cast_id": 4, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 3}, {"name": "Omar Sy", "character": "Khan", "id": 78423, "credit_id": "533993689251417dad0048f8", "cast_id": 5, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "DI John Halden", "id": 207, "credit_id": "5339936f9251417dad0048fa", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "Sam Spruell", "character": "Jack Witkowski", "id": 55585, "credit_id": "5339937d9251417d9b004b90", "cast_id": 7, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 6}, {"name": "Michael Jibson", "character": "Mike Calloway", "id": 56098, "credit_id": "533993899251411302003889", "cast_id": 8, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 7}, {"name": "Diana Hardcastle", "character": "", "id": 346352, "credit_id": "533993af9251417daa00496f", "cast_id": 10, "profile_path": "/hl58zPrWbo1mfatgVxEnGsKGZ1b.jpg", "order": 9}, {"name": "Diarmaid Murtagh", "character": "Marshall", "id": 1330044, "credit_id": "5485fbb19251416a630033fe", "cast_id": 14, "profile_path": "/mGYuCYKnPojosNhviSoB1BifofA.jpg", "order": 10}, {"name": "Oliver Dimsdale", "character": "Superintendent Ray Martin", "id": 1239834, "credit_id": "5486000f9251416a5d003852", "cast_id": 15, "profile_path": "/gpq8z17QqDZsyLYjDqov7FrzQ2a.jpg", "order": 11}, {"name": "Lasco Atkins", "character": "Clubber", "id": 1363049, "credit_id": "54860431c3a368666a0026db", "cast_id": 16, "profile_path": "/ollrIPt4sG3vr9dQ8tNkN1JCtMJ.jpg", "order": 12}, {"name": "Nigel Genis", "character": "American Tourist", "id": 1379268, "credit_id": "548609739251416a63003505", "cast_id": 17, "profile_path": "/8R9QgXbyK2DyxyrjS6B1pKmaA6Y.jpg", "order": 13}, {"name": "Maarten Dannenberg", "character": "Andre", "id": 1396599, "credit_id": "54860a629251416a600037cb", "cast_id": 18, "profile_path": "/pH5ntpSmGDIvdbr0sAw3LtdOtQz.jpg", "order": 14}, {"name": "Anick Wiget", "character": "Rehabilitation patient", "id": 1396600, "credit_id": "54860b4bc3a3680b38003a45", "cast_id": 19, "profile_path": "/r4vknP06DNZIEZQpqOZ1UsPZujY.jpg", "order": 15}, {"name": "Michael Fox", "character": "Bobby Witkowski", "id": 1396601, "credit_id": "54860e7cc3a3680b36003be9", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Waj Ali", "character": "Bailiff", "id": 1396602, "credit_id": "54860fb0c3a3680b48002e36", "cast_id": 21, "profile_path": "/nbMofZiQ9xAfZziYMLLy3R9R7Hf.jpg", "order": 17}, {"name": "Nick Turner", "character": "Clubber", "id": 1396611, "credit_id": "5486142fc3a3686767001e7e", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Amanda Edwards", "character": "Policewoman", "id": 1396616, "credit_id": "548617f99251416a63003607", "cast_id": 23, "profile_path": "/lYbrWcmIsWR0GmRqBZAdK2HJ7l9.jpg", "order": 19}, {"name": "George Kirby", "character": "Malek", "id": 1396620, "credit_id": "548618f3c3a368666a002896", "cast_id": 24, "profile_path": "/6LtJ01CA25nvanplYm7EW7sFuhJ.jpg", "order": 20}], "directors": [{"name": "Henrik Ruben Genz", "department": "Directing", "job": "Director", "credit_id": "533993329251417d9e0049c5", "profile_path": null, "id": 82351}], "vote_average": 5.6, "runtime": 90}, "112336": {"poster_path": "/qQGr8DQiAelkcy4w8cXn2qTMkMq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6002708, "overview": "Hitchcock follows the relationship between director Alfred Hitchcock and his wife Alma Reville during the making of his most famous film \"Psycho\" - and the trials and tribulations the director faced from Hollywood censors.", "video": false, "id": 112336, "genres": [{"id": 18, "name": "Drama"}], "title": "Hitchcock", "tagline": "Good evening.", "vote_count": 181, "homepage": "http://www.hitchcockthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0975645", "adult": false, "backdrop_path": "/wLczRlndrKOFcBffSzUEKNyBEi2.jpg", "production_companies": [{"name": "Montecito Picture Company, The", "id": 4607}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2012-11-22", "popularity": 0.373414319813809, "original_title": "Hitchcock", "budget": 0, "cast": [{"name": "Anthony Hopkins", "character": "Alfred Hitchcock", "id": 4173, "credit_id": "52fe4b15c3a36847f81f1807", "cast_id": 5, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Helen Mirren", "character": "Alma Reville", "id": 15735, "credit_id": "52fe4b15c3a36847f81f180b", "cast_id": 6, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 1}, {"name": "Scarlett Johansson", "character": "Janet Leigh", "id": 1245, "credit_id": "52fe4b15c3a36847f81f180f", "cast_id": 7, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 2}, {"name": "James D'Arcy", "character": "Anthony Perkins", "id": 19655, "credit_id": "52fe4b15c3a36847f81f1813", "cast_id": 8, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 3}, {"name": "Jessica Biel", "character": "Vera Miles", "id": 10860, "credit_id": "52fe4b15c3a36847f81f1817", "cast_id": 9, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 4}, {"name": "Michael Stuhlbarg", "character": "Lew Wasserman", "id": 72873, "credit_id": "52fe4b15c3a36847f81f181b", "cast_id": 10, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 5}, {"name": "Ralph Macchio", "character": "Joe Stefano", "id": 2877, "credit_id": "52fe4b15c3a36847f81f181f", "cast_id": 11, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 6}, {"name": "Toni Collette", "character": "Peggy Robertson", "id": 3051, "credit_id": "52fe4b15c3a36847f81f1823", "cast_id": 12, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 7}, {"name": "Danny Huston", "character": "Whitfield Cook", "id": 6413, "credit_id": "52fe4b15c3a36847f81f1827", "cast_id": 13, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 8}, {"name": "Michael Wincott", "character": "Ed Gein", "id": 7486, "credit_id": "52fe4b15c3a36847f81f182b", "cast_id": 14, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 9}, {"name": "Kurtwood Smith", "character": "Geoffrey Shurlock", "id": 2115, "credit_id": "52fe4b15c3a36847f81f182f", "cast_id": 15, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 10}, {"name": "Judith Hoag", "character": "Lillian", "id": 45041, "credit_id": "52fe4b15c3a36847f81f1833", "cast_id": 16, "profile_path": "/mP2EqWWhy6iP2PCbbky78pj10VK.jpg", "order": 11}, {"name": "Currie Graham", "character": "Flack", "id": 156590, "credit_id": "52fe4b15c3a36847f81f1837", "cast_id": 17, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 12}, {"name": "Wallace Langham", "character": "Saul Bass", "id": 17421, "credit_id": "52fe4b15c3a36847f81f183b", "cast_id": 18, "profile_path": "/UODZ2FuyJixy8CCqv190KIlncR.jpg", "order": 13}], "directors": [{"name": "Sacha Gervasi", "department": "Directing", "job": "Director", "credit_id": "52fe4b15c3a36847f81f17f1", "profile_path": "/sb02iw4jRlZdCMdUC8DCH7CQf4F.jpg", "id": 8686}], "vote_average": 6.2, "runtime": 98}, "6435": {"poster_path": "/wLSnpiAawuJI177pBbyDa0N8BiV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian's vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov -- and unwittingly inject his corpse with an evil spirit that threatens to end their family line.", "video": false, "id": 6435, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Practical Magic", "tagline": "For two sisters from a family of witches, falling in love is the trickiest spell of all.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120791", "adult": false, "backdrop_path": "/5sH0E0F7n08mFnm71uPqRkTUo96.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1998-10-16", "popularity": 0.553053094129145, "original_title": "Practical Magic", "budget": 75000000, "cast": [{"name": "Sandra Bullock", "character": "Sally Owens", "id": 18277, "credit_id": "52fe4451c3a36847f808ee83", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Gillian Owens", "id": 2227, "credit_id": "52fe4451c3a36847f808ee87", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Evan Rachel Wood", "character": "Kylie Owens", "id": 38940, "credit_id": "52fe4451c3a36847f808eed7", "cast_id": 17, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 2}, {"name": "Stockard Channing", "character": "Tante Frances 'Fran' Owens", "id": 8893, "credit_id": "52fe4451c3a36847f808eec7", "cast_id": 13, "profile_path": "/5UFMOfbzod42UiPUna59Ch1e37a.jpg", "order": 3}, {"name": "Dianne Wiest", "character": "Tante Bridget 'Jet' Owens", "id": 1902, "credit_id": "52fe4451c3a36847f808eecb", "cast_id": 14, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 4}, {"name": "Goran Vi\u0161nji\u0107", "character": "Jimmy Angelov", "id": 5725, "credit_id": "52fe4451c3a36847f808eecf", "cast_id": 15, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 5}, {"name": "Aidan Quinn", "character": "Gary Hallet", "id": 18992, "credit_id": "52fe4451c3a36847f808eed3", "cast_id": 16, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 6}, {"name": "Alexandra Artrip", "character": "Antonia Owens", "id": 51681, "credit_id": "52fe4451c3a36847f808eedb", "cast_id": 18, "profile_path": null, "order": 7}], "directors": [{"name": "Griffin Dunne", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a36847f808ee8d", "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "id": 2171}], "vote_average": 6.3, "runtime": 104}, "218836": {"poster_path": "/b5Xn7UQf7s6ZPsDTVT0NeLqiiHY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 151165787, "overview": "When world-famous air racer Dusty learns that his engine is damaged and he may never race again, he must shift gears and is launched into the world of aerial firefighting. Dusty joins forces with veteran fire and rescue helicopter Blade Ranger and his team, a bunch of all-terrain vehicles known as The Smokejumpers. Together, the fearless team battles a massive wildfire, and Dusty learns what it takes to become a true hero.", "video": false, "id": 218836, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Planes: Fire & Rescue", "tagline": "When others fly out, heroes fly in.", "vote_count": 102, "homepage": "http://movies.disney.com/planes-fire-and-rescue", "belongs_to_collection": {"backdrop_path": "/zGoePWKFLVJlxDWUUJhxSQgmkCa.jpg", "poster_path": "/tvzKXcXiJuUwOlni9MV00LCtqNm.jpg", "id": 270252, "name": "Planes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2980706", "adult": false, "backdrop_path": "/3MET6hEfk8n8i0KFRq9BHnJq7ju.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Prana Animation Studios", "id": 22135}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Prana Studios", "id": 18713}], "release_date": "2014-07-18", "popularity": 1.59806659520186, "original_title": "Planes: Fire & Rescue", "budget": 50000000, "cast": [{"name": "Dane Cook", "character": "Dusty Crophopper (voice)", "id": 31837, "credit_id": "52fe4e57c3a368484e21b687", "cast_id": 2, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 0}, {"name": "Ed Harris", "character": "Blade Ranger (voice)", "id": 228, "credit_id": "5455068d0e0a2648cb004778", "cast_id": 16, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 1}, {"name": "Julie Bowen", "character": "Dipper (voice)", "id": 31171, "credit_id": "52fe4e57c3a368484e21b683", "cast_id": 1, "profile_path": "/fbELrYxMYvUftgceh0KXnw2mQ8r.jpg", "order": 2}, {"name": "Curtis Armstrong", "character": "Maru (voice)", "id": 87003, "credit_id": "545507000e0a2635de002273", "cast_id": 17, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 3}, {"name": "John Michael Higgins", "character": "Cad (voice)", "id": 8265, "credit_id": "5455071d0e0a2648c50048e4", "cast_id": 18, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Mayday (voice)", "id": 11066, "credit_id": "54550756c3a368146f0044ad", "cast_id": 19, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Wes Studi", "character": "Windlifter", "id": 15853, "credit_id": "53307ce19251413a78005c3e", "cast_id": 8, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 6}, {"name": "Brad Garrett", "character": "Chug (voice)", "id": 18, "credit_id": "5455079c0e0a2648c2004787", "cast_id": 20, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 7}, {"name": "Teri Hatcher", "character": "Dottie (voice)", "id": 10742, "credit_id": "545507b40e0a2648cf004888", "cast_id": 21, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 8}, {"name": "Stacy Keach", "character": "Skipper (voice)", "id": 825, "credit_id": "545507ea0e0a26386300232e", "cast_id": 22, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 9}, {"name": "Cedric the Entertainer", "character": "Leadbottom (voice)", "id": 5726, "credit_id": "545507ffc3a368148d0046df", "cast_id": 23, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 10}, {"name": "Danny Mann", "character": "Sparky (voice)", "id": 52699, "credit_id": "5455083c0e0a2648d60046e0", "cast_id": 24, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 11}, {"name": "Barry Corbin", "character": "Ol' Jammer (voice)", "id": 12852, "credit_id": "54550872c3a368147800479b", "cast_id": 25, "profile_path": "/sI9LkzJYancOxTdC3othmzCxdp4.jpg", "order": 12}, {"name": "Regina King", "character": "Dynamite (voice)", "id": 9788, "credit_id": "53307cb99251413a78005c3b", "cast_id": 5, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 13}, {"name": "Anne Meara", "character": "Winnie (voice)", "id": 32394, "credit_id": "53307cef9251413a7e005b7e", "cast_id": 9, "profile_path": "/oNZszKpUZHfbT1mk2cD53uuZsnp.jpg", "order": 14}, {"name": "Jerry Stiller", "character": "Harvey (voice)", "id": 26042, "credit_id": "53307cd79251413a75005d1a", "cast_id": 7, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 15}, {"name": "Fred Willard", "character": "Secretary of the Interior (voice)", "id": 20753, "credit_id": "53307cca9251413a85005d24", "cast_id": 6, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 16}, {"name": "Dale Dye", "character": "Cabbie (voice)", "id": 3211, "credit_id": "53307d089251413a72005d6f", "cast_id": 10, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 17}, {"name": "Matt Jones", "character": "Drip (voice)", "id": 191202, "credit_id": "545508f40e0a2648cb0047c6", "cast_id": 26, "profile_path": "/wcB788lpiyc58s0F3nzqZnspISA.jpg", "order": 18}, {"name": "Bryan Callen", "character": "Avalanche (voice)", "id": 78320, "credit_id": "545509150e0a2648c5004912", "cast_id": 27, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 19}, {"name": "Danny Pardo", "character": "Blackout (voice)", "id": 1304336, "credit_id": "53307d289251413a6f005ead", "cast_id": 11, "profile_path": "/aY164UTFbcnGEgxCk0ed9N3eFro.jpg", "order": 20}, {"name": "Corri English", "character": "Pinecone (voice)", "id": 63107, "credit_id": "53307d369251413a85005d2c", "cast_id": 12, "profile_path": "/fuhQDZVGe6JF8JtmWT6Tp7DNTtk.jpg", "order": 21}, {"name": "Kari Wahlgren", "character": "Patch (voice)", "id": 116315, "credit_id": "545509430e0a2648c500491a", "cast_id": 28, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 22}, {"name": "Patrick Warburton", "character": "Pulaski (voice)", "id": 9657, "credit_id": "54550953c3a36814800048b6", "cast_id": 29, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 23}, {"name": "Rene Auberjonois", "character": "Concierge (voice)", "id": 9807, "credit_id": "54550963c3a368148d004712", "cast_id": 30, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 24}, {"name": "Rene Auberjonois", "character": "Ryker (voice)", "id": 9807, "credit_id": "545509750e0a2648d60046fa", "cast_id": 31, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 25}, {"name": "Erik Estrada", "character": "Nick 'Loop'n' Lopez (voice)", "id": 102209, "credit_id": "54550984c3a36814730045f2", "cast_id": 32, "profile_path": "/fYQn64bMuP5kYoQvmPDCShzF1WZ.jpg", "order": 26}, {"name": "Steve Schirripa", "character": "Steve (voice)", "id": 97188, "credit_id": "545509920e0a2648c20047c8", "cast_id": 33, "profile_path": "/qz3X10hyuKC0Cn4ni4SQhfWnB9I.jpg", "order": 27}, {"name": "Brent Musburger", "character": "Brent Mustangburger (voice)", "id": 188559, "credit_id": "545509a2c3a368147c004605", "cast_id": 34, "profile_path": "/fZXRho9StEBcblGYtplxiFTxD73.jpg", "order": 28}, {"name": "John Ratzenberger", "character": "Brodi (voice)", "id": 7907, "credit_id": "545509b10e0a2648c500492b", "cast_id": 35, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 29}, {"name": "Caroline Aaron", "character": "Additional Voices (voice)", "id": 1910, "credit_id": "545509c3c3a368147c00460b", "cast_id": 36, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 30}, {"name": "Ferrell Barron", "character": "Additional Voices (voice)", "id": 60729, "credit_id": "545509d6c3a368148d004722", "cast_id": 37, "profile_path": "/zRnZEXS4r61VW7wWbjn6nNzBKpx.jpg", "order": 31}, {"name": "Roberts Gannaway", "character": "Additional Voices (voice)", "id": 210053, "credit_id": "54550bb8c3a3681480004915", "cast_id": 38, "profile_path": "/VtgixrvPeTluyAB1po1hY3W6oA.jpg", "order": 32}, {"name": "Kate Micucci", "character": "Additional Voices (voice)", "id": 132354, "credit_id": "54550c720e0a2648cb00484a", "cast_id": 39, "profile_path": "/qoUOtNflMZb9l1zgg9aeMiu1MF7.jpg", "order": 33}, {"name": "Masasa Moyo", "character": "Additional Voices (voice)", "id": 34520, "credit_id": "54550c810e0a2648c2004832", "cast_id": 40, "profile_path": "/kyghWHugRBGhyNEu5ne7p5INu3s.jpg", "order": 34}, {"name": "Brad Paisley", "character": "Additional Voices (voice)", "id": 181472, "credit_id": "54550c970e0a2648c200483b", "cast_id": 41, "profile_path": "/A3XNR1cDHGsMKQkzR1PIecWoNtE.jpg", "order": 35}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "54550ca50e0a2648d6004779", "cast_id": 42, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 36}], "directors": [{"name": "Roberts Gannaway", "department": "Directing", "job": "Director", "credit_id": "53307c9e9251413a7b005d40", "profile_path": "/VtgixrvPeTluyAB1po1hY3W6oA.jpg", "id": 210053}], "vote_average": 6.1, "runtime": 83}, "5851": {"poster_path": "/a1vRxRQFRwheHXJESIt2cnfudaH.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77741732, "overview": "A spoof of buddy cop movies where two very different cops are forced to team up on a new reality based T.V. cop show.", "video": false, "id": 5851, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Showtime", "tagline": "Lights. Camera. Aggravation.", "vote_count": 59, "homepage": "http://www.warnerbros.de/movies/showtime/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0284490", "adult": false, "backdrop_path": "/rQwWtujstlG3dzfGsnp57Hh3pmj.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2002-03-14", "popularity": 0.544827870954754, "original_title": "Showtime", "budget": 85000000, "cast": [{"name": "Robert De Niro", "character": "Det. Mitch Preston", "id": 380, "credit_id": "52fe4426c3a36847f808536b", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Rachael Harris", "character": "Lehrerin", "id": 46074, "credit_id": "52fe4426c3a36847f808536f", "cast_id": 2, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 1}, {"name": "Eddie Murphy", "character": "Officer Trey Sellars", "id": 776, "credit_id": "52fe4426c3a36847f8085373", "cast_id": 3, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 2}, {"name": "Zaid Farid", "character": "Polizeichef Ben", "id": 46075, "credit_id": "52fe4426c3a36847f8085377", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "William Shatner", "character": "William Shatner", "id": 1748, "credit_id": "52fe4427c3a36847f80853f3", "cast_id": 25, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Pedro Dami\u00e1n", "character": "Ceasar Vargas", "id": 1405014, "credit_id": "55203030c3a3684dc9001b28", "cast_id": 26, "profile_path": null, "order": 5}], "directors": [{"name": "Tom Dey", "department": "Directing", "job": "Director", "credit_id": "52fe4426c3a36847f808537d", "profile_path": "/7YmdGtMlVmxwky3hWcDOPTZ5rv3.jpg", "id": 46076}], "vote_average": 5.3, "runtime": 95}, "177888": {"poster_path": "/vPdz4rk4TzfihH9w72VcGaQCDNq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Cowabunga! Catch a perfect wave of fun in the sun, splashed with excitement, surprises and budding romance. Life's a beach for surfers Brady (Ross Lynch) and McKenzie (Maia Mitchell) \u2013 until a rogue wave magically transports them inside the classic '60s beach party flick, \"Wet Side Story,\" where a full-blown rivalry between bikers and surfers threatens to erupt. There, amidst a sea of surfing, singing and dancing, Brady and Mack accidentally change the storyline, and the film\u2019s dreamy hero and heroine fall for them instead of for each other! Can our heroes get the plot back on track, or will they be trapped there forever? Overflowing with hilarious comedy and high-energy musical numbers, \"Teen Beach Movie\" makes it an endless summer all year long!", "video": false, "id": 177888, "genres": [{"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}, {"id": 10770, "name": "TV Movie"}], "title": "Teen Beach Movie", "tagline": "Getting trapped in a movie... is no day at the beach.", "vote_count": 84, "homepage": "http://www.disneychannel.disney.com/teen-beach-movie", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2325989", "adult": false, "backdrop_path": "/ywuB4HikdBkW2AVFTY6eCcO8M60.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2013-07-19", "popularity": 0.122188254792873, "original_title": "Teen Beach Movie", "budget": 0, "cast": [{"name": "Ross Lynch", "character": "Brady", "id": 973385, "credit_id": "52fe4d8cc3a36847f8266fd3", "cast_id": 1, "profile_path": "/xh1xbSZf6NpP6rnAKzkmNWIiRDM.jpg", "order": 0}, {"name": "Maia Mitchell", "character": "McKenzie", "id": 992366, "credit_id": "52fe4d8cc3a36847f8266fd7", "cast_id": 3, "profile_path": "/1ggNur1TDBuag5X3GlL3I9AuyXb.jpg", "order": 1}, {"name": "Grace Phipps", "character": "Lela", "id": 519735, "credit_id": "52fe4d8cc3a36847f8266fdb", "cast_id": 4, "profile_path": "/aJwlJ8bAiECH14x2LTzkSHGoRhL.jpg", "order": 2}, {"name": "Garrett Clayton", "character": "Tanner", "id": 1031685, "credit_id": "52fe4d8dc3a36847f8266fdf", "cast_id": 5, "profile_path": "/1bOQmLp96v8y7I717MQSOKOlOCX.jpg", "order": 3}, {"name": "John DeLuca", "character": "Butchy", "id": 1094568, "credit_id": "52fe4d8dc3a36847f8266fe3", "cast_id": 6, "profile_path": "/u5vGKQmkFAXPa2oo4lT6sgZSE4D.jpg", "order": 4}, {"name": "Chrissie Fit", "character": "Cheechee", "id": 1160310, "credit_id": "52fe4d8dc3a36847f8266fe7", "cast_id": 7, "profile_path": "/dyKLKopiH53I5qLYen882LCDmwo.jpg", "order": 5}, {"name": "Kevin Chamberlin", "character": "Dr. Fusion", "id": 34395, "credit_id": "52fe4d8dc3a36847f8266feb", "cast_id": 8, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 6}, {"name": "Steve Valentine", "character": "Les Camembert", "id": 78311, "credit_id": "52fe4d8dc3a36847f8266fef", "cast_id": 9, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 7}, {"name": "Jordan Fisher", "character": "Seacat", "id": 1192274, "credit_id": "52fe4d8dc3a36847f8267011", "cast_id": 15, "profile_path": "/fh05kpNu0IZ3n7Hd15y3DaJ7TQF.jpg", "order": 8}, {"name": "Oskar Rodriguez", "character": "Dancer", "id": 1057972, "credit_id": "53bf3171c3a3684cec003c5a", "cast_id": 16, "profile_path": "/rLLSPx0Wl7x47IsDbvpPrMoh4sZ.jpg", "order": 9}, {"name": "Mollee Gray", "character": "Giggles", "id": 1426656, "credit_id": "54e956d392514111b800271c", "cast_id": 17, "profile_path": "/rHLQST1kF3lbcm0QR6p5XTcoqV0.jpg", "order": 10}, {"name": "Jessica Lee Keller", "character": "Struts", "id": 1426658, "credit_id": "54e9576392514111b800272d", "cast_id": 18, "profile_path": "/2IXLalX7HgAJekvH3FEhQ6bJ3vr.jpg", "order": 11}, {"name": "Kent Boyd", "character": "Rascal", "id": 1426657, "credit_id": "54e958cd92514111b8002750", "cast_id": 19, "profile_path": "/mWAfX6M24bGdXx2ORJIx2IpTPne.jpg", "order": 12}, {"name": "William Loftis", "character": "Lugnut", "id": 1426660, "credit_id": "54e95b219251412eb10032cc", "cast_id": 20, "profile_path": "/qQVqM9NoSTFys4llyHMMIRnBABc.jpg", "order": 13}], "directors": [{"name": "Jeffrey Hornaday", "department": "Directing", "job": "Director", "credit_id": "52fe4d8dc3a36847f8266ff5", "profile_path": null, "id": 150207}], "vote_average": 6.0, "runtime": 110}, "145135": {"poster_path": "/kaqkurs0iDCJGmJBBa6DRGacfA8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25174316, "overview": "From the producers of Paranormal Activity, Insidious, and Sinister comes Dark Skies: a supernatural thriller that follows a young family living in the suburbs. As husband and wife Daniel and Lacey Barret witness an escalating series of disturbing events involving their family, their safe and peaceful home quickly unravels. When it becomes clear that the Barret family is being targeted by an unimaginably terrifying and deadly force, Daniel and Lacey take matters in their own hands to solve the mystery of what is after their family.", "video": false, "id": 145135, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dark Skies", "tagline": "Once you have been chosen. You belong to them.", "vote_count": 222, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2387433", "adult": false, "backdrop_path": "/cuTt0S1Pl04HYrIYFIfF8JK8Ce1.jpg", "production_companies": [{"name": "Cinema Vehicle Services", "id": 25673}, {"name": "Alliance Films", "id": 2514}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2013-02-21", "popularity": 1.02140116912683, "original_title": "Dark Skies", "budget": 3500000, "cast": [{"name": "Keri Russell", "character": "Lacy Barrett", "id": 41292, "credit_id": "52fe4b4e9251416c750fed0d", "cast_id": 2, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 0}, {"name": "Josh Hamilton", "character": "Daniel", "id": 52419, "credit_id": "52fe4b4e9251416c750fed15", "cast_id": 4, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 1}, {"name": "Dakota Goyo", "character": "Jesse", "id": 234479, "credit_id": "52fe4b4e9251416c750fed09", "cast_id": 1, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 2}, {"name": "J.K. Simmons", "character": "Edwin Pollard", "id": 18999, "credit_id": "52fe4b4e9251416c750fed11", "cast_id": 3, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 3}, {"name": "Trevor St. John", "character": "Alex Holcombe", "id": 199298, "credit_id": "52fe4b4e9251416c750fed19", "cast_id": 5, "profile_path": "/nLzyfCCDK3TPPHjbMi7x7NMrGUP.jpg", "order": 4}, {"name": "Annie Thurman", "character": "Shelly", "id": 1131606, "credit_id": "52fe4b4e9251416c750fed1d", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Myndy Crist", "character": "Karen", "id": 156875, "credit_id": "52fe4b4f9251416c750fed4b", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Ron Ostrow", "character": "Richard", "id": 168400, "credit_id": "52fe4b4f9251416c750fed4f", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Josh Wingate", "character": "Gun Salesperson", "id": 206790, "credit_id": "52fe4b4f9251416c750fed53", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Kadan Rockett", "character": "Sam Barrett", "id": 1391884, "credit_id": "547edfa792514124b9000e08", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "L.J. Benet", "character": "Kevin Ratner", "id": 1393310, "credit_id": "547edfd8c3a368395c00100a", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Rich Hutchman", "character": "Mike Jessop", "id": 52924, "credit_id": "547edfeec3a368396c000f0d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Jake Brennan", "character": "Bobby Jessop (as Jake Washburn)", "id": 1393311, "credit_id": "547ee00e92514124bf000d9a", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Tom Costello", "character": "Young Father", "id": 1329618, "credit_id": "547ee029c3a368395c001015", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Marion Kerr", "character": "Young Mother", "id": 968185, "credit_id": "547ee037c3a368395c00101b", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Alyvia Alyn Lind", "character": "Young Daughter", "id": 1274510, "credit_id": "547ee044c3a368395e000f6f", "cast_id": 24, "profile_path": "/iRgOBaCvrBLJm1q2vob9lQNpQa6.jpg", "order": 15}, {"name": "Josh Stamberg", "character": "Police Officer", "id": 21882, "credit_id": "547ee050c3a368396c000f1b", "cast_id": 25, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 16}, {"name": "Tiffany Jeneen", "character": "Protection One Operator", "id": 1393312, "credit_id": "547ee05cc3a3683961000be8", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Brian Stepanek", "character": "Security System Technician", "id": 146391, "credit_id": "547ee06bc3a3683968000d4b", "cast_id": 27, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 18}, {"name": "Judith Moreland", "character": "Janice Rhodes", "id": 1350210, "credit_id": "547ee079c3a368395e000f74", "cast_id": 28, "profile_path": "/1uc3kgTw3VYrhKq7yAqdPQB9YXD.jpg", "order": 19}, {"name": "Adam Schneider", "character": "Young Husband", "id": 1393313, "credit_id": "547ee08792514124b9000e27", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Jessica Borden", "character": "Young Wife", "id": 109907, "credit_id": "547ee09492514124ad000de8", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Kenneth Meseroll", "character": "Pete", "id": 1236010, "credit_id": "547ee0a092514124b9000e2d", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Trevor St. John", "character": "Alex Holcombe", "id": 199298, "credit_id": "547ee0ad92514124af000d63", "cast_id": 32, "profile_path": "/nLzyfCCDK3TPPHjbMi7x7NMrGUP.jpg", "order": 23}, {"name": "Andy Umberger", "character": "Doctor Jonathan Kooper", "id": 142204, "credit_id": "547ee0b9c3a368396f000f9d", "cast_id": 33, "profile_path": "/nDuiFTa0qzfaD1KFmoq97Ae10N9.jpg", "order": 24}, {"name": "Michael Patrick McGill", "character": "Ratner's Father", "id": 154816, "credit_id": "547ee0c6c3a368395c00102c", "cast_id": 34, "profile_path": "/9M7pqxB3NZm7zVrpGqFkFI25nrw.jpg", "order": 25}, {"name": "Alexandra Anthony", "character": "Naughty Cheerleader (as Alexandra Fulton)", "id": 1301697, "credit_id": "547ee0e892514124aa000f65", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Scott Anthony", "character": "Naughty Teacher", "id": 1393315, "credit_id": "547ee0ff92514124b6000f1d", "cast_id": 36, "profile_path": null, "order": 27}], "directors": [{"name": "Scott Stewart", "department": "Directing", "job": "Director", "credit_id": "52fe4b4e9251416c750fed23", "profile_path": "/uFhftOKdeSRbJkOsylcJSJoaimQ.jpg", "id": 116357}], "vote_average": 6.0, "runtime": 97}, "5876": {"poster_path": "/uYVheUBf8ITaocUP4Og9GXxOMIH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57096190, "overview": "After a violent storm, a dense cloud of mist envelops a small Maine town, trapping artist David Drayton and his five-year-old son in a local grocery store with other people. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.", "video": false, "id": 5876, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Mist", "tagline": "Belief divides them, mystery surrounds them, but fear changes everything.", "vote_count": 263, "homepage": "http://www.themist-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0884328", "adult": false, "backdrop_path": "/xUYTWv2W3wCakBw4fOpTfFQ5e1I.jpg", "production_companies": [{"name": "Darkwoods Productions", "id": 3982}, {"name": "Dimension Films", "id": 7405}], "release_date": "2007-11-21", "popularity": 0.753728899408703, "original_title": "The Mist", "budget": 18000000, "cast": [{"name": "Thomas Jane", "character": "David Drayton", "id": 11155, "credit_id": "52fe4429c3a36847f8085c77", "cast_id": 15, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Mrs. Carmody", "id": 4726, "credit_id": "52fe4429c3a36847f8085c7b", "cast_id": 16, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "Laurie Holden", "character": "Amanda", "id": 8332, "credit_id": "52fe4429c3a36847f8085c7f", "cast_id": 17, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 2}, {"name": "Toby Jones", "character": "Ollie", "id": 13014, "credit_id": "52fe4429c3a36847f8085c83", "cast_id": 18, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 3}, {"name": "Jeffrey DeMunn", "character": "Dan Miller", "id": 12645, "credit_id": "52fe4429c3a36847f8085c87", "cast_id": 19, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 4}, {"name": "Frances Sternhagen", "character": "Irene", "id": 36926, "credit_id": "52fe4429c3a36847f8085c8b", "cast_id": 20, "profile_path": "/uFPwqtJObVUyRymTZbgBDWlFxtw.jpg", "order": 5}, {"name": "Nathan Gamble", "character": "Billy Drayton", "id": 18052, "credit_id": "52fe4429c3a36847f8085c8f", "cast_id": 21, "profile_path": "/zn5ueTFn51JQMzyu5aoIpVMfb48.jpg", "order": 6}, {"name": "William Sadler", "character": "Jim", "id": 6573, "credit_id": "52fe4429c3a36847f8085c93", "cast_id": 22, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 7}, {"name": "Andre Braugher", "character": "Norton", "id": 6861, "credit_id": "52fe4429c3a36847f8085c97", "cast_id": 23, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 8}, {"name": "Alexa Davalos", "character": "Sally", "id": 28109, "credit_id": "52fe4429c3a36847f8085c9b", "cast_id": 24, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 9}, {"name": "Samuel Witwer", "character": "Jessup", "id": 46362, "credit_id": "52fe4429c3a36847f8085c9f", "cast_id": 25, "profile_path": "/e4FRojd6SmiyRLo2nQQGUXwi16v.jpg", "order": 10}, {"name": "Chris Owen", "character": "Norm", "id": 26999, "credit_id": "52fe4429c3a36847f8085caf", "cast_id": 29, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 11}, {"name": "Melissa McBride", "character": "Woman with Kids at Home", "id": 31535, "credit_id": "52fe4429c3a36847f8085cb9", "cast_id": 31, "profile_path": "/mWx65szXSk2iywkkKSM8tTVHap5.jpg", "order": 12}], "directors": [{"name": "Frank Darabont", "department": "Directing", "job": "Director", "credit_id": "52fe4429c3a36847f8085c31", "profile_path": "/9KVvZtDyy8DXacw2TTsjC9VLxQi.jpg", "id": 4027}], "vote_average": 6.6, "runtime": 126}, "14069": {"poster_path": "/oPpy4N3qyI3r1nRVl60F69vFQwK.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 3800000, "overview": "When 17-year-old Makoto Konno gains the ability to, quite literally, \"leap\" backwards through time, she immediately sets about improving her grades and preventing personal mishaps. However, she soon realises that changing the past isn't as simple as it seems, and eventually, will have to rely on her new powers to shape the future of herself and her friends.", "video": false, "id": 14069, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Girl Who Leapt Through Time", "tagline": "", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0808506", "adult": false, "backdrop_path": "/p4ZsArF1dDWPoKjUpGJ7FthmUB0.jpg", "production_companies": [{"name": "Mad House", "id": 2862}, {"name": "Happinet Pictures", "id": 822}, {"name": "Kadokawa Pictures", "id": 2073}, {"name": "Kadokawa Shoten Publishing Co.", "id": 9068}, {"name": "Memory Tech", "id": 12540}, {"name": "Q-Tec", "id": 12541}, {"name": "Toki wo Kakeru Sh\u00f4jo Seisaku Iinkai 2006", "id": 12542}], "release_date": "2006-07-15", "popularity": 0.698628390655245, "original_title": "Toki o kakeru sh\u00f4jo", "budget": 0, "cast": [{"name": "Riisa Naka", "character": "Makoto Konno", "id": 122468, "credit_id": "52fe45c89251416c750625d5", "cast_id": 7, "profile_path": "/xG0KT9CkOp3ozWGopeuv5Bd0CqP.jpg", "order": 0}, {"name": "Takuya Ishida", "character": "Chiaki Mamiya", "id": 122469, "credit_id": "52fe45c89251416c750625d9", "cast_id": 8, "profile_path": "/7ie3IFpCGG0h4iDSioc7T8Sneum.jpg", "order": 1}, {"name": "Mitsutaka Itakura", "character": "Kousuke Tsuda", "id": 122470, "credit_id": "52fe45c89251416c750625dd", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "Fumihiko Tachiki", "character": "Fukushima sensei", "id": 77934, "credit_id": "52fe45c89251416c750625e1", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Ayami Kakiuchi", "character": "Yuri Hayakawa", "id": 122471, "credit_id": "52fe45c89251416c750625e5", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Yuki Sekido", "character": "Miyuki Konno", "id": 122472, "credit_id": "52fe45c89251416c750625e9", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Sachie Hara", "character": "Kazuko Yoshiyama", "id": 122473, "credit_id": "52fe45c89251416c750625ed", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Mitsuki Tanimura", "character": "Kaho Fujitani (voice)", "id": 118577, "credit_id": "52fe45c99251416c7506261b", "cast_id": 21, "profile_path": "/44o4Coq0GficqAd4tsul39T903P.jpg", "order": 7}, {"name": "Midori Ando", "character": "Makoto's mother", "id": 1133289, "credit_id": "52fe45c99251416c7506261f", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Takayuki Handa", "character": "Kato", "id": 1133290, "credit_id": "52fe45c99251416c75062623", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Utawaka Katsura", "character": "Makoto's father", "id": 1133291, "credit_id": "52fe45c99251416c75062627", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "Mamoru Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe45c89251416c750625b9", "profile_path": "/oh1GS6x8cdGkyL4QPKmpMSaD6Wu.jpg", "id": 81718}], "vote_average": 7.6, "runtime": 95}, "46838": {"poster_path": "/rKrTwUSmc1hU29RcldAlTgUrws7.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo's West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.", "video": false, "id": 46838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Tucker and Dale vs Evil", "tagline": "Evil just messed with the wrong hillbillies.", "vote_count": 220, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1465522", "adult": false, "backdrop_path": "/mjsS5mcMjLPE31yGTU5mMqRhyCc.jpg", "production_companies": [{"name": "Eden Rock Media", "id": 2273}], "release_date": "2010-01-22", "popularity": 0.478799035606691, "original_title": "Tucker and Dale vs Evil", "budget": 0, "cast": [{"name": "Alan Tudyk", "character": "Tucker", "id": 21088, "credit_id": "52fe470fc3a36847f8121399", "cast_id": 1, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 0}, {"name": "Tyler Labine", "character": "Dale", "id": 51383, "credit_id": "52fe470fc3a36847f812139d", "cast_id": 2, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 1}, {"name": "Katrina Bowden", "character": "Allison", "id": 74618, "credit_id": "52fe470fc3a36847f81213a1", "cast_id": 3, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 2}, {"name": "Jesse Moss", "character": "Chad", "id": 59926, "credit_id": "52fe470fc3a36847f81213a5", "cast_id": 4, "profile_path": "/d4FY9ZdC5imLXq3wp6eCBUjy8vq.jpg", "order": 3}, {"name": "Philip Granger", "character": "Sheriff", "id": 64670, "credit_id": "52fe470fc3a36847f81213c1", "cast_id": 11, "profile_path": "/fBxj7XTznAIIqjHpOtoVVZ9YQcd.jpg", "order": 4}, {"name": "Brandon Jay McLaren", "character": "Jason", "id": 58371, "credit_id": "52fe470fc3a36847f81213c5", "cast_id": 12, "profile_path": "/4E6tZJhsgkyI5VNrZCV91XP7o6o.jpg", "order": 5}, {"name": "Christie Laing", "character": "Naomi", "id": 168554, "credit_id": "52fe470fc3a36847f81213c9", "cast_id": 13, "profile_path": "/vdhQtqfz6FooxMEZbjXW2U1j4eD.jpg", "order": 6}, {"name": "Chelan Simmons", "character": "Chloe", "id": 27775, "credit_id": "52fe470fc3a36847f81213cd", "cast_id": 14, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 7}, {"name": "Travis Nelson", "character": "Chuck", "id": 236702, "credit_id": "52fe470fc3a36847f81213d1", "cast_id": 15, "profile_path": "/3BgBOSywPEimyMkruUolPjrfjLX.jpg", "order": 8}, {"name": "Alex Arsenault", "character": "Todd", "id": 212952, "credit_id": "52fe470fc3a36847f81213d5", "cast_id": 16, "profile_path": "/r4BX0CCnEUCDzOwgKPitCTp1tX9.jpg", "order": 9}, {"name": "Adam Beauchesne", "character": "Mitch", "id": 236703, "credit_id": "52fe470fc3a36847f81213d9", "cast_id": 17, "profile_path": "/nMQRz571nzwchTlgdhZPP0gLXuU.jpg", "order": 10}, {"name": "Joseph Allan Sutherland", "character": "Mike", "id": 236704, "credit_id": "52fe470fc3a36847f81213dd", "cast_id": 18, "profile_path": "/bnlUd1PUzWo0d7qsE4Fdk9f98vC.jpg", "order": 11}, {"name": "Karen Reigh", "character": "Cheryl", "id": 236705, "credit_id": "52fe470fc3a36847f81213e1", "cast_id": 19, "profile_path": "/4uqs8PvaNgFwxycCZwXJhVMRFNL.jpg", "order": 12}, {"name": "Tye Evans", "character": "Chad's Dad", "id": 236706, "credit_id": "52fe470fc3a36847f81213e5", "cast_id": 20, "profile_path": "/xs07QzuyGYAeDEeCghf5DIFOASF.jpg", "order": 13}, {"name": "Bill Baksa", "character": "BJ Hillbilly", "id": 236707, "credit_id": "52fe470fc3a36847f81213e9", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Eli Craig", "department": "Directing", "job": "Director", "credit_id": "52fe470fc3a36847f81213ab", "profile_path": null, "id": 52479}], "vote_average": 7.3, "runtime": 89}, "144340": {"poster_path": "/jxNBmnP2Q1hTWuqCPUTRavGrjLt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18000000, "overview": "Straitlaced Princeton University admissions officer Portia Nathan (Tina Fey) is caught off-guard when she makes a recruiting visit to an alternative high school overseen by her former college classmate, the freewheeling John Pressman (Paul Rudd). Pressman has surmised that Jeremiah (Nat Wolff), his gifted yet very unconventional student, might well be the son that Portia secretly gave up for adoption many years ago. Soon, Portia finds herself bending the rules for Jeremiah, putting at risk the life she thought she always wanted -- but in the process finding her way to a surprising and exhilarating life and romance she never dreamed of having.", "video": false, "id": 144340, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Admission", "tagline": "Let someone in.", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1814621", "adult": false, "backdrop_path": "/4HpJObAMo6SzZXACPnUMo9aX9Ob.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2013-03-22", "popularity": 0.87087117385596, "original_title": "Admission", "budget": 13000000, "cast": [{"name": "Tina Fey", "character": "Portia Nathan", "id": 56323, "credit_id": "52fe4b2e9251416c750faf87", "cast_id": 8, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 0}, {"name": "Paul Rudd", "character": "John Pressman", "id": 22226, "credit_id": "52fe4b2e9251416c750faf9f", "cast_id": 14, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Ann Harada", "character": "Mrs. Lafont", "id": 196181, "credit_id": "52fe4b2e9251416c750faf8b", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "Ben Levin", "character": "Junior Lafont", "id": 1046140, "credit_id": "52fe4b2e9251416c750faf8f", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Dan Levy", "character": "James", "id": 66867, "credit_id": "52fe4b2e9251416c750faf93", "cast_id": 11, "profile_path": "/hHloLBNnosCsmHDatVZmW8vXZ9H.jpg", "order": 4}, {"name": "Maggie Keenan-Bolger", "character": "Girl on Tour", "id": 1023253, "credit_id": "52fe4b2e9251416c750faf97", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Gloria Reuben", "character": "Corinne", "id": 21369, "credit_id": "52fe4b2e9251416c750faf9b", "cast_id": 13, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 6}, {"name": "Wallace Shawn", "character": "Clearence", "id": 12900, "credit_id": "52fe4b2e9251416c750fafa3", "cast_id": 15, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 7}, {"name": "Elaine Kussack", "character": "Abby", "id": 187734, "credit_id": "52fe4b2e9251416c750fafa7", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Christopher Evan Welch", "character": "Brandt", "id": 60021, "credit_id": "52fe4b2e9251416c750fafab", "cast_id": 17, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 9}, {"name": "Michael Genadry", "character": "Ben", "id": 1161587, "credit_id": "52fe4b2e9251416c750fafaf", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Juliet Brett", "character": "Praying Applicant", "id": 1052686, "credit_id": "52fe4b2e9251416c750fafb3", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "John Brodsky", "character": "Smug Kid", "id": 1161588, "credit_id": "52fe4b2e9251416c750fafb7", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Camille Branton", "character": "Gymnast", "id": 1161589, "credit_id": "52fe4b2e9251416c750fafbb", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Sarita Choudhury", "character": "Rachel", "id": 20275, "credit_id": "52fe4b2e9251416c750fafbf", "cast_id": 22, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 14}, {"name": "Lily Tomlin", "character": "Susannah", "id": 10437, "credit_id": "52fe4b2e9251416c750fafc3", "cast_id": 23, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 15}, {"name": "Travaris Spears", "character": "Nelson", "id": 1189241, "credit_id": "52fe4b2e9251416c750fafc7", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Nat Wolff", "character": "Jeremiah", "id": 232006, "credit_id": "52fe4b2e9251416c750fafcb", "cast_id": 25, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 17}, {"name": "Michael Sheen", "character": "Mark", "id": 3968, "credit_id": "52fe4b2e9251416c750fafcf", "cast_id": 26, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 18}, {"name": "Sonya Walger", "character": "Helen", "id": 47953, "credit_id": "52fe4b2e9251416c750fafd3", "cast_id": 27, "profile_path": "/59bNOklO83gLE9XJVkQPbAlnlHI.jpg", "order": 19}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4b2e9251416c750faf6b", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 5.4, "runtime": 107}, "87818": {"poster_path": "/cJvaW8eZCFS7JncM6HRKyykVTYC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29926388, "overview": "The film is composed of multiple comedy shorts presented through an overarching segment titled \"The Pitch\", in which Charlie Wessler, a mad screenwriter, is attempting to pitch a script to film executive Griffin Schraeder. After revealing several of the stories in his script, Wessler becomes agitated when Schraeder dismisses his outrageous ideas, and he pulls a gun on him and forces him to listen to multiple other stories before making Schraeder consult his manager, Bob Mone, to purchase the film.", "video": false, "id": 87818, "genres": [{"id": 35, "name": "Comedy"}], "title": "Movie 43", "tagline": "The biggest cast ever assembled for the most outrageous comedy ever made.", "vote_count": 320, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1333125", "adult": false, "backdrop_path": "/eGWVsZhgEyNpQ327udKz5iCLHcF.jpg", "production_companies": [{"name": "Witness Protection Films", "id": 8891}, {"name": "Relativity Media", "id": 7295}, {"name": "Virgin Produced", "id": 8852}, {"name": "Greenestreet Films", "id": 2150}, {"name": "Wessler Entertainment", "id": 8890}], "release_date": "2013-01-25", "popularity": 1.0297303686287, "original_title": "Movie 43", "budget": 6000000, "cast": [{"name": "Dennis Quaid", "character": "Charlie Wessler (segment \"The Pitch\")", "id": 6065, "credit_id": "52fe49d89251416c910baa8b", "cast_id": 72, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Griffin Schraeder (segment \"The Pitch\")", "id": 17141, "credit_id": "52fe49d89251416c910baa8f", "cast_id": 73, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Common", "character": "Bob Mone (segment \"The Pitch\")", "id": 4238, "credit_id": "52fe49d89251416c910baa93", "cast_id": 74, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 2}, {"name": "Charlie Saxton", "character": "Jay (segment \"The Pitch\")", "id": 95356, "credit_id": "52fe49d89251416c910baa97", "cast_id": 75, "profile_path": "/rbbNI51dRJlNtUtkCBQXUPjYBLe.jpg", "order": 3}, {"name": "Will Sasso", "character": "Jerry (segment \"The Pitch\")", "id": 39125, "credit_id": "52fe49d89251416c910baa9b", "cast_id": 76, "profile_path": "/x4hlPAdmkXwLtHimIp8kjy9HuL9.jpg", "order": 4}, {"name": "Odessa Rae", "character": "Danita (segment \"The Pitch\")", "id": 27579, "credit_id": "52fe49d89251416c910baa9f", "cast_id": 77, "profile_path": "/yDTam4xkQWJH5qDUKtuoL26Xc8P.jpg", "order": 5}, {"name": "Seth MacFarlane", "character": "Seth MacFarlane (segment", "id": 52139, "credit_id": "52fe49d89251416c910baaa3", "cast_id": 78, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 6}, {"name": "Mike Meldman", "character": "Mike Meldman (segment \"The Pitch\")", "id": 1281299, "credit_id": "52fe49d99251416c910bac11", "cast_id": 140, "profile_path": null, "order": 7}, {"name": "Hugh Jackman", "character": "Davis (segment \"The Catch\")", "id": 6968, "credit_id": "52fe49d79251416c910ba9b5", "cast_id": 14, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 8}, {"name": "Kate Winslet", "character": "Beth (segment \"The Catch\")", "id": 204, "credit_id": "52fe49d79251416c910ba9bd", "cast_id": 17, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 9}, {"name": "Julie Claire", "character": "Pamela (segment \"The Catch\")", "id": 1212483, "credit_id": "52fe49d99251416c910bac19", "cast_id": 142, "profile_path": "/sH4sPaNli1Vmf6nwvQkqcfeMCil.jpg", "order": 10}, {"name": "Katie Finneran", "character": "Angie (segment \"The Catch\")", "id": 58771, "credit_id": "52fe49d99251416c910bac15", "cast_id": 141, "profile_path": "/5bFxhH09QG5RXjyaUXIFWN3kSnw.jpg", "order": 11}, {"name": "Roy Jenkins", "character": "Ray (segment \"The Catch\")", "id": 1237248, "credit_id": "52fe49d99251416c910bac1d", "cast_id": 143, "profile_path": null, "order": 12}, {"name": "Rocky Madigan", "character": "Waiter Jake (segment \"The Catch\")", "id": 1281300, "credit_id": "52fe49d99251416c910bac21", "cast_id": 144, "profile_path": null, "order": 13}, {"name": "Anna Madigan", "character": "Abby (segment \"The Catch\")", "id": 1281301, "credit_id": "52fe49d99251416c910bac25", "cast_id": 145, "profile_path": null, "order": 14}, {"name": "Jeremy Allen White", "character": "Kevin (segment \"Homeschooled\")", "id": 206905, "credit_id": "52fe49d89251416c910baa87", "cast_id": 71, "profile_path": "/9zJ1f35J651eIacipXaYb32ePlh.jpg", "order": 15}, {"name": "Liev Schreiber", "character": "Robert (segment \"Homeschooled\")", "id": 23626, "credit_id": "52fe49d89251416c910baa1f", "cast_id": 43, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 16}, {"name": "Naomi Watts", "character": "Samantha (segment \"Homeschooled\")", "id": 3489, "credit_id": "52fe49d79251416c910ba9c9", "cast_id": 20, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 17}, {"name": "Alex Cranmer", "character": "Sean (segment \"Homeschooled\")", "id": 1217584, "credit_id": "52fe49d99251416c910bac29", "cast_id": 146, "profile_path": null, "order": 18}, {"name": "Austin Cope", "character": "High School Student (segment \"Homeschooled\")", "id": 1281302, "credit_id": "52fe49d99251416c910bac31", "cast_id": 148, "profile_path": null, "order": 19}, {"name": "Julie Ann Emery", "character": "Clare (segment \"Homeschooled\")", "id": 55256, "credit_id": "52fe49d99251416c910bac2d", "cast_id": 147, "profile_path": "/9E6kRGO5gWoZ8NQOwkOXw5roe3U.jpg", "order": 20}, {"name": "Anna Faris", "character": "Vanessa (segment \"The Proposition\")", "id": 1772, "credit_id": "52fe49d79251416c910ba9c1", "cast_id": 18, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 21}, {"name": "Chris Pratt", "character": "Jason (segment \"The Proposition\")", "id": 73457, "credit_id": "52fe49d89251416c910baa23", "cast_id": 44, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 22}, {"name": "J. B. Smoove", "character": "Larry (segment \"The Proposition\")", "id": 65920, "credit_id": "52fe49d89251416c910baa27", "cast_id": 45, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 23}, {"name": "Jarrad Paul", "character": "Bill (segment \"The Proposition\")", "id": 62763, "credit_id": "52fe49d99251416c910bac3d", "cast_id": 151, "profile_path": null, "order": 24}, {"name": "Maria Arc\u00e9", "character": "Christine (segment \"The Proposition\")", "id": 78843, "credit_id": "52fe49d99251416c910bac35", "cast_id": 149, "profile_path": null, "order": 25}, {"name": "Aaron LaPlante", "character": "Friend (segment \"The Proposition\")", "id": 1281304, "credit_id": "52fe49d99251416c910bac39", "cast_id": 150, "profile_path": null, "order": 26}, {"name": "Kieran Culkin", "character": "Neil (segment \"Veronica\")", "id": 18793, "credit_id": "52fe49d89251416c910baa2b", "cast_id": 46, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 27}, {"name": "Emma Stone", "character": "Veronica (segment \"Veronica\")", "id": 54693, "credit_id": "52fe49d79251416c910ba9a9", "cast_id": 11, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 28}, {"name": "Arthur French", "character": "Old Man (segment \"Veronica\")", "id": 91827, "credit_id": "52fe49d99251416c910bac41", "cast_id": 152, "profile_path": null, "order": 29}, {"name": "Brooke Davis", "character": "Tall Lady (segment \"Veronica\")", "id": 156887, "credit_id": "52fe49d99251416c910bac45", "cast_id": 153, "profile_path": null, "order": 30}, {"name": "John Shuman", "character": "Short Guy (segment \"Veronica\")", "id": 189146, "credit_id": "52fe49d99251416c910bac49", "cast_id": 154, "profile_path": null, "order": 31}, {"name": "Cathy Cliften", "character": "Robert (segment \"iBabe\")", "id": 1281305, "credit_id": "52fe49d99251416c910bac4d", "cast_id": 155, "profile_path": null, "order": 32}, {"name": "Cherina Monteniques Scott", "character": "iBabe #2 (segment \"iBabe\")", "id": 1281306, "credit_id": "52fe49d99251416c910bac51", "cast_id": 156, "profile_path": null, "order": 33}, {"name": "Richard Gere", "character": "Robert (segment \"iBabe\")", "id": 1205, "credit_id": "52fe49d89251416c910baa2f", "cast_id": 47, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 34}, {"name": "Kate Bosworth", "character": "Arlene (segment \"iBabe\")", "id": 7517, "credit_id": "52fe49d89251416c910baa37", "cast_id": 49, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 35}, {"name": "Jack McBrayer", "character": "Brian (segment \"iBabe\")", "id": 58737, "credit_id": "52fe49d89251416c910baa33", "cast_id": 48, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 36}, {"name": "Aasif Mandvi", "character": "Robert (segment \"iBabe\")", "id": 20644, "credit_id": "52fe49d89251416c910baa3b", "cast_id": 50, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 37}, {"name": "Zach Lasry", "character": "Boy (segment \"iBabe\")", "id": 1281307, "credit_id": "52fe49d99251416c910bac59", "cast_id": 158, "profile_path": null, "order": 38}, {"name": "Darby Lynn Totten", "character": "Woman (segment \"iBabe\")", "id": 1281308, "credit_id": "52fe49d99251416c910bac55", "cast_id": 157, "profile_path": null, "order": 39}, {"name": "Marc Ambrose", "character": "Chappy (segment \"iBabe\")", "id": 1137065, "credit_id": "52fe49d99251416c910bac5d", "cast_id": 159, "profile_path": null, "order": 40}, {"name": "Justin Long", "character": "Fake Wonder Woman (segment \"Super Hero Speed Dating\")", "id": 15033, "credit_id": "52fe49d89251416c910baa3f", "cast_id": 51, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 41}, {"name": "Jason Sudeikis", "character": "Fake Batman (segment \"Super Hero Speed Dating\")", "id": 58224, "credit_id": "52fe49d89251416c910baa43", "cast_id": 52, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 42}, {"name": "Uma Thurman", "character": "Fake Lois Lane (segment \"Super Hero Speed Dating\")", "id": 139, "credit_id": "52fe49d89251416c910baa47", "cast_id": 53, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 43}, {"name": "Bobby Cannavale", "character": "Fake Superman (segment \"Super Hero Speed Dating\")", "id": 21127, "credit_id": "52fe49d89251416c910baa4b", "cast_id": 54, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 44}, {"name": "Kristen Bell", "character": "Fake Supergirl (segment \"Super Hero Speed Dating\")", "id": 40462, "credit_id": "52fe49d79251416c910ba9ad", "cast_id": 12, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 45}, {"name": "John Hodgman", "character": "Fake Penguin (segment \"Super Hero Speed Dating\")", "id": 77344, "credit_id": "52fe49d89251416c910baa4f", "cast_id": 55, "profile_path": "/qMFcDuOUgz3HkD5OMjkHYa677VE.jpg", "order": 46}, {"name": "Leslie Bibb", "character": "Fake Wonder Woman (segment \"Super Hero Speed Dating\")", "id": 57451, "credit_id": "52fe49d79251416c910ba9c5", "cast_id": 19, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 47}, {"name": "Will Carlough", "character": "Fake Riddler (segment \"Super Hero Speed Dating\")", "id": 938683, "credit_id": "52fe49d99251416c910bac61", "cast_id": 160, "profile_path": null, "order": 48}, {"name": "Katrina Bowden", "character": "Woman (segment \"Super Hero Speed Dating\")", "id": 74618, "credit_id": "52fe49d89251416c910baaa7", "cast_id": 79, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 49}, {"name": "Phil Crowley", "character": "Narrator (segment \"Machine Kids\")", "id": 220546, "credit_id": "52fe49d99251416c910bac65", "cast_id": 161, "profile_path": null, "order": 50}, {"name": "Ed Blythe", "character": "Vending Machine Man (segment \"Machine Kids\")", "id": 1281309, "credit_id": "52fe49d99251416c910bac69", "cast_id": 162, "profile_path": null, "order": 51}, {"name": "Olivia Roberts Payne", "character": "Vending Machine Child (segment \"Machine Kids\")", "id": 1281310, "credit_id": "52fe49d99251416c910bac6d", "cast_id": 163, "profile_path": null, "order": 52}, {"name": "Monique Delee", "character": "Vending Machine Child (segment \"Machine Kids\")", "id": 1281311, "credit_id": "52fe49d99251416c910bac71", "cast_id": 164, "profile_path": null, "order": 53}, {"name": "Jaron Henrie-McCrea", "character": "ATM Man (segment \"Machine Kids\")", "id": 1109615, "credit_id": "52fe49d99251416c910bac75", "cast_id": 166, "profile_path": null, "order": 54}, {"name": "Sebastian Brodziak", "character": "ATM Child (segment \"Machine Kids\")", "id": 1281312, "credit_id": "52fe49d99251416c910bac79", "cast_id": 167, "profile_path": null, "order": 55}, {"name": "Severyn K. Brodziak", "character": "ATM Child (segment \"Machine Kids\")", "id": 1281313, "credit_id": "52fe49d99251416c910bac7d", "cast_id": 168, "profile_path": null, "order": 56}, {"name": "Rightor Doyle", "character": "Photocopier Man 1 (segment \"Machine Kids\")", "id": 209728, "credit_id": "52fe49d99251416c910bac81", "cast_id": 169, "profile_path": null, "order": 57}, {"name": "Raven Burnett", "character": "Photocopier Man 2 (segment \"Machine Kids\")", "id": 1281314, "credit_id": "52fe49d99251416c910bac85", "cast_id": 170, "profile_path": null, "order": 58}, {"name": "Montana Byrne", "character": "Photocopier Child (segment \"Machine Kids\")", "id": 1281315, "credit_id": "52fe49d99251416c910bac89", "cast_id": 171, "profile_path": null, "order": 59}, {"name": "Jarrett Carter", "character": "Photocopier Child (segment \"Machine Kids\")", "id": 1281316, "credit_id": "52fe49d99251416c910bac8d", "cast_id": 172, "profile_path": null, "order": 60}, {"name": "Phillip Michaels", "character": "Photocopier Child (segment \"Machine Kids\")", "id": 1281317, "credit_id": "52fe49d99251416c910bac91", "cast_id": 173, "profile_path": null, "order": 61}, {"name": "Christopher Mintz-Plasse", "character": "Mikey (segment \"Middleschool Date\")", "id": 54691, "credit_id": "52fe49d89251416c910baa53", "cast_id": 56, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 62}, {"name": "Chlo\u00eb Grace Moretz", "character": "Amanda (segment \"Middleschool Date\")", "id": 56734, "credit_id": "52fe49d89251416c910baa1b", "cast_id": 42, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 63}, {"name": "Patrick Warburton", "character": "Dad (segment \"Middleschool Date\")", "id": 9657, "credit_id": "52fe49d89251416c910baa57", "cast_id": 57, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 64}, {"name": "Jimmy Bennett", "character": "Nathan (segment \"Middleschool Date\")", "id": 6860, "credit_id": "52fe49d89251416c910baa5b", "cast_id": 58, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 65}, {"name": "Matt Walsh", "character": "Amanda's Dad (segment \"Middleschool Date\")", "id": 59841, "credit_id": "52fe49d89251416c910baab1", "cast_id": 81, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 66}, {"name": "Coleen Hoffman", "character": "Blonde Woman (segment \"Tampax\")", "id": 1281318, "credit_id": "52fe49d99251416c910bac95", "cast_id": 174, "profile_path": null, "order": 67}, {"name": "Elbe Van Der Merwe", "character": "Brunette Woman (segment \"Tampax\")", "id": 1281319, "credit_id": "52fe49d99251416c910bac99", "cast_id": 175, "profile_path": null, "order": 68}, {"name": "Gerard Butler", "character": "Leprechaun 1 & 2 (segment \"Happy Birthday\")", "id": 17276, "credit_id": "52fe49d79251416c910ba9b9", "cast_id": 16, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 69}, {"name": "Seann William Scott", "character": "Pete (segment \"Happy Birthday\")", "id": 57599, "credit_id": "52fe49d89251416c910baa63", "cast_id": 61, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 70}, {"name": "Johnny Knoxville", "character": "Pete (segment \"Happy Birthday\")", "id": 9656, "credit_id": "52fe49d89251416c910baa5f", "cast_id": 60, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 71}, {"name": "Esti Ginzburg", "character": "Fairy (segment \"Happy Birthday\")", "id": 223132, "credit_id": "52fe49d99251416c910bac9d", "cast_id": 176, "profile_path": null, "order": 72}, {"name": "Halle Berry", "character": "Emily (segment \"Truth or Dare\")", "id": 4587, "credit_id": "52fe49d89251416c910baa67", "cast_id": 62, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 73}, {"name": "Stephen Merchant", "character": "Donald (segment \"Truth or Dare\")", "id": 39189, "credit_id": "52fe49d89251416c910baa6b", "cast_id": 63, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 74}, {"name": "Sayed Badreya", "character": "Large Man (segment \"Truth or Dare\")", "id": 173810, "credit_id": "52fe49d99251416c910baca1", "cast_id": 177, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 75}, {"name": "Nicole 'Snooki' Polizzi", "character": "Snooki (segment \"Truth or Dare\") (as Nicole Elizabeth Polizzi)", "id": 224173, "credit_id": "52fe49d89251416c910baa6f", "cast_id": 64, "profile_path": "/tHBeHEBn0YWI7NuO0PJfLgrs2FJ.jpg", "order": 76}, {"name": "Caryl Lippman West", "character": "Waitress (segment \"Truth or Dare\")", "id": 1281320, "credit_id": "52fe49d99251416c910baca5", "cast_id": 178, "profile_path": null, "order": 77}, {"name": "Ricki Lander", "character": "Nurse Elizabeth (segment \"Truth or Dare\")", "id": 210842, "credit_id": "52fe49d99251416c910baca9", "cast_id": 179, "profile_path": "/9B9h9aK16tZpbdDIH1XJR62o5Ls.jpg", "order": 78}, {"name": "Paloma Felisberto", "character": "Bachelorette Party Girl (segment \"Truth or Dare\")", "id": 1281321, "credit_id": "52fe49d99251416c910bacad", "cast_id": 180, "profile_path": null, "order": 79}, {"name": "Jasper Grey", "character": "Patron (segment \"Truth or Dare\")", "id": 1281322, "credit_id": "52fe49d99251416c910bacb1", "cast_id": 181, "profile_path": null, "order": 80}, {"name": "Ben Harris", "character": "Blanco the Bartender (segment \"Truth or Dare\")", "id": 1281323, "credit_id": "52fe49d99251416c910bacb5", "cast_id": 182, "profile_path": null, "order": 81}, {"name": "Zen Gesner", "character": "Stripper (segment \"Truth or Dare\")", "id": 60672, "credit_id": "52fe49d99251416c910bacb9", "cast_id": 183, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 82}, {"name": "Terrence Howard", "character": "Coach Jackson (segment \"Victory's Glory\")", "id": 18288, "credit_id": "52fe49d89251416c910baa73", "cast_id": 65, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 83}, {"name": "Aaron Jennings", "character": "Anthony (segment \"Victory's Glory\")", "id": 1119691, "credit_id": "52fe49d99251416c910bacbd", "cast_id": 184, "profile_path": "/13UQ3tRjxcYX88McTpJpcs0ZFjC.jpg", "order": 84}, {"name": "Jared Dudley", "character": "Moses (segment \"Victory's Glory\")", "id": 1281324, "credit_id": "52fe49d99251416c910bacc1", "cast_id": 185, "profile_path": null, "order": 85}, {"name": "Corey Wayne Brewer", "character": "Wallace (segment \"Victory's Glory\")", "id": 1281325, "credit_id": "52fe49d99251416c910bacc5", "cast_id": 186, "profile_path": null, "order": 86}, {"name": "Larry Eugene Sanders II", "character": "Bishop (segment \"Victory's Glory\")", "id": 1281326, "credit_id": "52fe49d99251416c910bacc9", "cast_id": 187, "profile_path": null, "order": 87}, {"name": "Jay Ellis", "character": "Lucious (segment \"Victory's Glory\")", "id": 151680, "credit_id": "52fe49d99251416c910baccd", "cast_id": 188, "profile_path": null, "order": 88}, {"name": "Brian Flaccus", "character": "White Guy 1 (segment \"Victory's Glory\")", "id": 1281327, "credit_id": "52fe49d99251416c910bacd1", "cast_id": 189, "profile_path": null, "order": 89}, {"name": "Brett Davern", "character": "White Guy 2 (segment \"Victory's Glory\")", "id": 116295, "credit_id": "52fe49d99251416c910bacd5", "cast_id": 190, "profile_path": "/AfuaJGco1bfmj1l3UJoEWZQQvCC.jpg", "order": 90}, {"name": "Evan Dumouchel", "character": "White Guy 3 (segment \"Victory's Glory\")", "id": 1281328, "credit_id": "52fe49d99251416c910bacd9", "cast_id": 191, "profile_path": null, "order": 91}, {"name": "Sean Rosales", "character": "White Guy 4 (segment \"Victory's Glory\")", "id": 1078839, "credit_id": "52fe49d99251416c910bacdd", "cast_id": 192, "profile_path": null, "order": 92}, {"name": "Logan Holladay", "character": "White Guy 5 (segment \"Victory's Glory\")", "id": 984363, "credit_id": "52fe49d99251416c910bace1", "cast_id": 193, "profile_path": null, "order": 93}, {"name": "Mandy Kowalski", "character": "Cheerleader (segment \"Victory's Glory\")", "id": 1005944, "credit_id": "52fe49d99251416c910bace5", "cast_id": 194, "profile_path": null, "order": 94}, {"name": "Eric Stuart", "character": "Narrator (segment \"Victory's Glory\")", "id": 67833, "credit_id": "52fe49d99251416c910bace9", "cast_id": 195, "profile_path": "/bJrK0dfooRS2h7pSkVMLgFqesi3.jpg", "order": 95}, {"name": "Elizabeth Banks", "character": "Amy (segment \"Beezel\")", "id": 9281, "credit_id": "52fe49d79251416c910ba9b1", "cast_id": 13, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 96}, {"name": "Josh Duhamel", "character": "Anson (segment \"Beezel\")", "id": 19536, "credit_id": "52fe49d89251416c910baa77", "cast_id": 66, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 97}, {"name": "Emily Alyn Lind", "character": "Birthday Girl (segment \"Beezel\")", "id": 112742, "credit_id": "52fe49d99251416c910baced", "cast_id": 196, "profile_path": null, "order": 98}, {"name": "Michelle Gunn", "character": "Mommy (segment \"Beezel\")", "id": 85101, "credit_id": "52fe49d99251416c910bacf1", "cast_id": 197, "profile_path": null, "order": 99}, {"name": "Christina Linhardt", "character": "Party Clown (segment \"Beezel\")", "id": 1281329, "credit_id": "52fe49d99251416c910bacf5", "cast_id": 198, "profile_path": null, "order": 100}, {"name": "Devin Eash", "character": "Baxter (uncredited)", "id": 1144389, "credit_id": "52fe49d89251416c910baa7b", "cast_id": 67, "profile_path": null, "order": 102}, {"name": "Mark L. Young", "character": "Calvin (uncredited)", "id": 81197, "credit_id": "52fe49d89251416c910baa83", "cast_id": 69, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 103}, {"name": "Julie McNiven", "character": "ATM Woman (segment \"Machine Kids\")", "id": 1222219, "credit_id": "52fe49d99251416c910bacf9", "cast_id": 199, "profile_path": "/jyjtrHTQeagGFynt49RFc6PdU2i.jpg", "order": 104}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba981", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}, {"name": "Elizabeth Banks", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba987", "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "id": 9281}, {"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba98d", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}, {"name": "Rusty Cundieff", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba993", "profile_path": null, "id": 153882}, {"name": "James Duffy", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9cf", "profile_path": null, "id": 938681}, {"name": "Griffin Dunne", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9d5", "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "id": 2171}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9db", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}, {"name": "Patrik Forsberg", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9e1", "profile_path": null, "id": 938682}, {"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9e7", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}, {"name": "Bob Odenkirk", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9ed", "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "id": 59410}, {"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe49d89251416c910baaad", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 4.6, "runtime": 90}, "5902": {"poster_path": "/ormdFwSHGVgsWdrzP5pRPaA6nme.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50750000, "overview": "Tells the story of operation Market Garden. A failed attempt by the allies in the latter stages of WWII to end the war quickly by securing three bridges in Holland allowing access over the Rhine into Germany. A combination of poor allied intelligence and the presence of two crack German panzer divisions meant that the final part of this operation (the bridge in Arnhem over the Rhine) was doomed to failure.", "video": false, "id": 5902, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "A Bridge Too Far", "tagline": "Out of the sky comes the screen's most incredible spectacle of men and war!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0075784", "adult": false, "backdrop_path": "/hmmeABwz4MWH3eelrMpq97dU6Bw.jpg", "production_companies": [{"name": "Joseph E. Levine Productions", "id": 11503}], "release_date": "1977-06-15", "popularity": 1.05915665343076, "original_title": "A Bridge Too Far", "budget": 22000000, "cast": [{"name": "Dirk Bogarde", "character": "Lt. Gen. Fredrick. Browning", "id": 21605, "credit_id": "52fe442bc3a36847f808665d", "cast_id": 4, "profile_path": "/bVGGxCReJGOO9Iq80B4P7EjZYwg.jpg", "order": 0}, {"name": "James Caan", "character": "Sgt. Eddie Dohun", "id": 3085, "credit_id": "52fe442bc3a36847f8086661", "cast_id": 5, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 1}, {"name": "Michael Caine", "character": "Lt. Col. John O.E. Vandeleur", "id": 3895, "credit_id": "52fe442bc3a36847f8086665", "cast_id": 6, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 2}, {"name": "Sean Connery", "character": "Maj. Gen. Robert E. Urquhart", "id": 738, "credit_id": "52fe442bc3a36847f8086669", "cast_id": 7, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 3}, {"name": "Edward Fox", "character": "Lt. Gen. Brian G. Horrocks", "id": 9126, "credit_id": "52fe442bc3a36847f808666d", "cast_id": 8, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 4}, {"name": "Elliott Gould", "character": "Col. Robert Stout", "id": 827, "credit_id": "52fe442bc3a36847f8086671", "cast_id": 9, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 5}, {"name": "Gene Hackman", "character": "Maj. Gen. Stanislaw F. Sosabowski", "id": 193, "credit_id": "52fe442bc3a36847f8086675", "cast_id": 10, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 6}, {"name": "Anthony Hopkins", "character": "Lt. Col. John D. Frost", "id": 4173, "credit_id": "52fe442bc3a36847f8086679", "cast_id": 11, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 7}, {"name": "Hardy Kr\u00fcger", "character": "Generalmajor der Waffen-SS Karl Ludwig", "id": 37777, "credit_id": "52fe442bc3a36847f80866c7", "cast_id": 26, "profile_path": "/yZd3hiAk3ZR3LdsPXdwtjNk05hR.jpg", "order": 8}, {"name": "Laurence Olivier", "character": "Dr. Jan Spaander", "id": 3359, "credit_id": "52fe442bc3a36847f80866a1", "cast_id": 19, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 9}, {"name": "Ryan O'Neal", "character": "Brig. Gen. James M. Gavin", "id": 31070, "credit_id": "52fe442bc3a36847f80866a5", "cast_id": 20, "profile_path": "/fTqIq5voXV1hQd3Ol4VtnUWy7j2.jpg", "order": 10}, {"name": "Robert Redford", "character": "Maj. Julian Cook", "id": 4135, "credit_id": "52fe442bc3a36847f8086695", "cast_id": 16, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 11}, {"name": "Maximilian Schell", "character": "General der Waffen-SS Wilhelm Bittrich", "id": 12150, "credit_id": "52fe442bc3a36847f808669d", "cast_id": 18, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 12}, {"name": "Liv Ullmann", "character": "Kate ter Horst - \"the Angel of Arnhem\"", "id": 11916, "credit_id": "52fe442bc3a36847f8086699", "cast_id": 17, "profile_path": "/8fJYPEx6RCt2QjjnMkUyREYSJCp.jpg", "order": 13}], "directors": [{"name": "Richard Attenborough", "department": "Directing", "job": "Director", "credit_id": "52fe442bc3a36847f808664d", "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "id": 4786}], "vote_average": 6.8, "runtime": 175}, "87825": {"poster_path": "/vNWFhlTseaTupYmpnXxJLoShJe3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.", "video": false, "id": 87825, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Trouble with the Curve", "tagline": "Whatever Life Throws at You", "vote_count": 120, "homepage": "http://troublewiththecurve.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2083383", "adult": false, "backdrop_path": "/9fN6z7JcO5o3jDmJ0fHSq4PXwUT.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Malpaso Productions", "id": 171}], "release_date": "2012-09-21", "popularity": 0.591135806526268, "original_title": "Trouble with the Curve", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Gus", "id": 190, "credit_id": "52fe49da9251416c910baefb", "cast_id": 15, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Amy Adams", "character": "Mickey", "id": 9273, "credit_id": "52fe49da9251416c910baeef", "cast_id": 12, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Johnny Flanagan", "id": 12111, "credit_id": "52fe49da9251416c910baeeb", "cast_id": 10, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "John Goodman", "character": "Pete Klein", "id": 1230, "credit_id": "52fe49da9251416c910baeff", "cast_id": 16, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Matthew Lillard", "character": "Phillip Sanderson", "id": 26457, "credit_id": "52fe49da9251416c910baef3", "cast_id": 13, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 4}, {"name": "Joe Massingill", "character": "Bo Gentry", "id": 935497, "credit_id": "52fe49da9251416c910baef7", "cast_id": 14, "profile_path": "/1b91bnQqdkkTUuwbvo3WbIBmhtU.jpg", "order": 5}, {"name": "Robert Patrick", "character": "Vince", "id": 418, "credit_id": "52fe49da9251416c910baf03", "cast_id": 17, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 6}, {"name": "Ed Lauter", "character": "Max", "id": 21523, "credit_id": "52fe49da9251416c910baf07", "cast_id": 18, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 7}, {"name": "Chelcie Ross", "character": "Smitty", "id": 10486, "credit_id": "52fe49da9251416c910baf0b", "cast_id": 19, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 8}, {"name": "Peter Hermann", "character": "Greg", "id": 50117, "credit_id": "52fe49da9251416c910baf4f", "cast_id": 32, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 9}, {"name": "Matt Bush", "character": "Danny", "id": 130227, "credit_id": "52fe49da9251416c910baf0f", "cast_id": 20, "profile_path": "/kyBLgeVnvnsx3zOZXlZwSF5BFEE.jpg", "order": 10}, {"name": "Scott Eastwood", "character": "Billy Clark", "id": 928572, "credit_id": "52fe49da9251416c910baf13", "cast_id": 21, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 11}, {"name": "Jay Galloway", "character": "Rigo Sanchez", "id": 1127807, "credit_id": "52fe49da9251416c910baf17", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Bob Gunton", "character": "Watson", "id": 4029, "credit_id": "52fe49da9251416c910baf77", "cast_id": 42, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 13}, {"name": "Jack Gilpin", "character": "Schwartz", "id": 77023, "credit_id": "52fe49da9251416c910baf7b", "cast_id": 43, "profile_path": "/cYaMYTd4TawSeF9eUSwXR1rP3th.jpg", "order": 14}, {"name": "George Wyner", "character": "Rosenbloom", "id": 14669, "credit_id": "52fe49da9251416c910baf6f", "cast_id": 40, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 15}, {"name": "James Patrick Freetly", "character": "Todd", "id": 1181555, "credit_id": "52fe49da9251416c910baf4b", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Norma Alvarez", "character": "Grace Sanchez", "id": 1181556, "credit_id": "52fe49da9251416c910baf53", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Rus Blackwell", "character": "Rick", "id": 52483, "credit_id": "52fe49da9251416c910baf73", "cast_id": 41, "profile_path": "/xYMkiZQuoramEeabUPnrtiS19vn.jpg", "order": 18}, {"name": "Raymond Anthony Thomas", "character": "Lucious", "id": 1181562, "credit_id": "52fe49da9251416c910baf7f", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Josh Warren", "character": "Pitcher", "id": 1181557, "credit_id": "52fe49da9251416c910baf57", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Seth Meriwether", "character": "Wilson", "id": 1181558, "credit_id": "52fe49da9251416c910baf5b", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Bart Hansard", "character": "Bo's Father", "id": 1181559, "credit_id": "52fe49da9251416c910baf5f", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Patricia French", "character": "Diner Waitress", "id": 128207, "credit_id": "52fe49da9251416c910baf63", "cast_id": 37, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 23}, {"name": "Tom Nowicki", "character": "Red Sox GM", "id": 94854, "credit_id": "52fe49da9251416c910baf67", "cast_id": 38, "profile_path": "/nm6XdgwH6IDE4nroYQwhNtlFtn9.jpg", "order": 24}, {"name": "Julia Walters", "character": "Young Mickey", "id": 587508, "credit_id": "52fe49da9251416c910baf6b", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Tyler Silva", "character": "Carlos Sanchez", "id": 1181564, "credit_id": "52fe49da9251416c910baf83", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Darren Le Gallo", "character": "Nurse", "id": 1181565, "credit_id": "52fe49da9251416c910baf87", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Clayton Landey", "character": "Manager", "id": 101013, "credit_id": "52fe49db9251416c910baf8b", "cast_id": 47, "profile_path": "/4e1GziFKqLh5V5tEnqwT1NvMMvL.jpg", "order": 28}, {"name": "Matthew Brady", "character": "Swannanoa Manager (as Matt Brady)", "id": 1181566, "credit_id": "52fe49db9251416c910baf8f", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Jackie Prucha", "character": "Secretary", "id": 223020, "credit_id": "52fe49db9251416c910baf93", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Ricky Muse", "character": "Jimmy", "id": 1181570, "credit_id": "52fe49db9251416c910baf97", "cast_id": 50, "profile_path": "/xThzRMWFym3eHMJ4mlWMEW367NX.jpg", "order": 31}, {"name": "Tom Dreesen", "character": "Rock", "id": 180649, "credit_id": "52fe49db9251416c910baf9b", "cast_id": 51, "profile_path": "/vWtJg0UNtXmdrfCYhpocSomU5zM.jpg", "order": 32}], "directors": [{"name": "Robert Lorenz", "department": "Directing", "job": "Director", "credit_id": "52fe49da9251416c910baeb7", "profile_path": "/tvDhilrjknm4uQZoOcUgRSd31uN.jpg", "id": 4746}], "vote_average": 6.7, "runtime": 111}, "87826": {"poster_path": "/sB7UeSr1D4uIhTm76GdtA1e7F0t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school's music program.", "video": false, "id": 87826, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Here Comes the Boom", "tagline": "No one will fight for his students like Mr. Voss.", "vote_count": 274, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1648179", "adult": false, "backdrop_path": "/ftgPQvQCKP4IBd0jA7HJRDWqlmu.jpg", "production_companies": [{"name": "Broken Road Productions", "id": 8000}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2012-10-12", "popularity": 1.49136192055916, "original_title": "Here Comes the Boom", "budget": 0, "cast": [{"name": "Salma Hayek", "character": "Bella Flores", "id": 3136, "credit_id": "52fe49db9251416c910bb00d", "cast_id": 1011, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 0}, {"name": "Kevin James", "character": "Scott Voss", "id": 32895, "credit_id": "52fe49db9251416c910bb011", "cast_id": 1012, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 1}, {"name": "Henry Winkler", "character": "Marty", "id": 31903, "credit_id": "52fe49db9251416c910bb015", "cast_id": 1013, "profile_path": "/o3QkTZkDYMkKYJphYJkvMSx8eB3.jpg", "order": 2}, {"name": "Joe Rogan", "character": "Joe Rogan", "id": 91609, "credit_id": "52fe49db9251416c910bb019", "cast_id": 1014, "profile_path": "/uiUuuvsVTyFPul78eO6v9BlpZDr.jpg", "order": 3}, {"name": "Reggie Lee", "character": "Mr. De La Cruz", "id": 22075, "credit_id": "52fe49db9251416c910bb01d", "cast_id": 1015, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 4}, {"name": "Greg Germann", "character": "Principal Becher", "id": 19974, "credit_id": "52fe49db9251416c910bb021", "cast_id": 1016, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 5}, {"name": "Bas Rutten", "character": "Niko", "id": 89402, "credit_id": "52fe49db9251416c910bb025", "cast_id": 1017, "profile_path": "/zP3CzVPJiGmkGSxiMYQeXmpV6lM.jpg", "order": 6}, {"name": "Charice", "character": "Malia De La Cruz", "id": 232500, "credit_id": "52fe49db9251416c910bb029", "cast_id": 1018, "profile_path": "/ntg0onXrw3SmM1Eh3v0GrfWudJu.jpg", "order": 7}, {"name": "Nicholas R. Grava", "character": "Jacob", "id": 935500, "credit_id": "52fe49db9251416c910bb02d", "cast_id": 1019, "profile_path": "/6OWvJpqCImPShLaEGzWBmHBRkDZ.jpg", "order": 8}, {"name": "Frank Coraci", "character": "Disoriented Gym Patron", "id": 57370, "credit_id": "52fe49db9251416c910bb031", "cast_id": 1020, "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "order": 9}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe49db9251416c910bb03d", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.0, "runtime": 105}, "87827": {"poster_path": "/rXhuBgQyRKB7cW5BRImyVkO89K7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "TW", "name": "Taiwan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 609016565, "overview": "The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.", "video": false, "id": 87827, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Life of Pi", "tagline": "Believe The Unbelievable", "vote_count": 3066, "homepage": "http://www.lifeofpimovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ta", "name": "\u0ba4\u0bae\u0bbf\u0bb4\u0bcd"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0454876", "adult": false, "backdrop_path": "/tk159LPfy69zSHw4dabehfAaJXi.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Media", "id": 290}, {"name": "Haishang Films", "id": 13480}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2012-11-21", "popularity": 1.60296162688759, "original_title": "Life of Pi", "budget": 120000000, "cast": [{"name": "Suraj Sharma", "character": "Pi Patel (16 / 17 Years)", "id": 933160, "credit_id": "52fe49db9251416c910bb0c1", "cast_id": 15, "profile_path": "/88CEbHFIGIkDLD8lEejG5580kcO.jpg", "order": 0}, {"name": "Irrfan Khan", "character": "Pi Patel (Adult)", "id": 76793, "credit_id": "52fe49db9251416c910bb0b9", "cast_id": 13, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 1}, {"name": "Ayush Tandon", "character": "Pi Patel (11 / 12 Years)", "id": 935504, "credit_id": "52fe49db9251416c910bb0c9", "cast_id": 17, "profile_path": "/lF1gIGzEZWZJJsQmIJpBzT9SYOW.jpg", "order": 2}, {"name": "Gautam Belur", "character": "Pi Patel (5 Years)", "id": 1133846, "credit_id": "52fe49db9251416c910bb0e3", "cast_id": 25, "profile_path": "/bbVao6AG13Aw9haRlZm3DwLfugF.jpg", "order": 3}, {"name": "Adil Hussain", "character": "Santosh Patel", "id": 227849, "credit_id": "52fe49db9251416c910bb0c5", "cast_id": 16, "profile_path": "/jARVXAtB0x6XjvmyTLsCfcJoHKv.jpg", "order": 4}, {"name": "Tabu", "character": "Gita Patel", "id": 55062, "credit_id": "52fe49db9251416c910bb0bd", "cast_id": 14, "profile_path": "/6XIVS1BIceOpTxzgu7R8Xw0esFg.jpg", "order": 5}, {"name": "Rafe Spall", "character": "Writer", "id": 28847, "credit_id": "52fe49db9251416c910bb0d3", "cast_id": 21, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 6}, {"name": "G\u00e9rard Depardieu", "character": "Cook", "id": 16927, "credit_id": "52fe49db9251416c910bb0b5", "cast_id": 12, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 7}, {"name": "James Saito", "character": "Older Insurance Investigator", "id": 77155, "credit_id": "52fe49db9251416c910bb0d7", "cast_id": 22, "profile_path": "/qwiY0k1tHFSmOPMJiwRL2wSEYK0.jpg", "order": 8}, {"name": "Jun Naito", "character": "Younger Insurance Investigator", "id": 121702, "credit_id": "52fe49db9251416c910bb0db", "cast_id": 23, "profile_path": "/zuMqxes5OnJyZSLsCqwV7QRcivb.jpg", "order": 9}, {"name": "Andrea Di Stefano", "character": "Priest", "id": 40541, "credit_id": "52fe49db9251416c910bb0df", "cast_id": 24, "profile_path": "/nIB8fSk0yJN7PWGJZoNcyM0hJ7l.jpg", "order": 10}, {"name": "Vibish Sivakumar", "character": "Ravi Patel (18/19 years)", "id": 1133849, "credit_id": "52fe49db9251416c910bb0e7", "cast_id": 28, "profile_path": "/eZJvIx1M59rP4gyVYxsY82tH4QB.jpg", "order": 11}, {"name": "Mohd Abbas Khaleeli", "character": "Ravi Patel ( 13/ 14 years)", "id": 1133848, "credit_id": "52fe49db9251416c910bb103", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Shravanthi Sainath", "character": "Anandi", "id": 1271647, "credit_id": "52fe49db9251416c910bb107", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Elie Alouf", "character": "Mamaji", "id": 1271648, "credit_id": "52fe49db9251416c910bb10b", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Padmini Ramachandran", "character": "Dance Master", "id": 1271649, "credit_id": "52fe49db9251416c910bb10f", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "T.M. Karthik", "character": "Science Teacher", "id": 1271650, "credit_id": "52fe49db9251416c910bb113", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Amarendran Ramanan", "character": "Indian History Teacher", "id": 1271651, "credit_id": "52fe49db9251416c910bb117", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Hari Mina Bala", "character": "Librarian", "id": 1271652, "credit_id": "52fe49db9251416c910bb11b", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Wang Bo-Chieh", "character": "Buddhist Sailor", "id": 966327, "credit_id": "53436f450e0a2679a40051de", "cast_id": 50, "profile_path": "/n8n4jh6I2VsTX2y3glVdvegPJiM.jpg", "order": 19}, {"name": "Ayaan Khan", "character": "Ravi Patel (7 Years)", "id": 1377778, "credit_id": "544cd9110e0a2608be00209f", "cast_id": 51, "profile_path": null, "order": 20}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe49db9251416c910bb08d", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 7.0, "runtime": 127}, "93828": {"poster_path": "/eJwSM618opISwPkzia9fNeFvW4Z.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9747, "overview": "When notorious criminal Jacob Sternwood is forced to return to London, it gives detective Max Lewinsky one last chance to take down the man he's always been after.", "video": false, "id": 93828, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "Welcome to the Punch", "tagline": "A Stunning, Intelligent Thriller", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1684233", "adult": false, "backdrop_path": "/8H21Fq1iki6xNIUFjZQJilvIzxC.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}, {"name": "Between The Eyes", "id": 9016}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "IM Global", "id": 7437}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2013-03-15", "popularity": 0.842903961408153, "original_title": "Welcome to the Punch", "budget": 8500000, "cast": [{"name": "James McAvoy", "character": "Max Lewinsky", "id": 5530, "credit_id": "52fe49409251416c750c1fc7", "cast_id": 1004, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Mark Strong", "character": "Jacob Sternwood", "id": 2983, "credit_id": "52fe49409251416c750c1fcb", "cast_id": 1005, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 1}, {"name": "David Morrissey", "character": "Thomas Geiger", "id": 18616, "credit_id": "52fe49409251416c750c1fcf", "cast_id": 1006, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 2}, {"name": "Peter Mullan", "character": "Roy Edwards", "id": 3064, "credit_id": "52fe49409251416c750c1fd3", "cast_id": 1007, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 3}, {"name": "Daniel Mays", "character": "Nathan Bartnick", "id": 1670, "credit_id": "52fe49409251416c750c1fd7", "cast_id": 1008, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 4}, {"name": "Andrea Riseborough", "character": "Sarah Hawks", "id": 127558, "credit_id": "52fe49409251416c750c1fdb", "cast_id": 1009, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 5}, {"name": "Daniel Kaluuya", "character": "Juka", "id": 206919, "credit_id": "52fe49409251416c750c1fdf", "cast_id": 1010, "profile_path": "/dbRChcSEsQR9opDoZzA0b21Ipci.jpg", "order": 6}, {"name": "Elyes Gabel", "character": "Ruan Sternwood", "id": 78050, "credit_id": "52fe49409251416c750c1fe3", "cast_id": 1011, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 7}, {"name": "Jason Maza", "character": "Luke", "id": 142289, "credit_id": "52fe49409251416c750c1fe7", "cast_id": 1012, "profile_path": "/8juQFrWbtYTWb2opYqMPIDC6L77.jpg", "order": 8}, {"name": "Johnny Harris", "character": "Dean Warns", "id": 32300, "credit_id": "52fe49409251416c750c1feb", "cast_id": 1013, "profile_path": "/1iKpLfSiJBFDrvt4RCJOGJrq2NM.jpg", "order": 9}, {"name": "Steve Oram", "character": "Journalist", "id": 219367, "credit_id": "52fe49409251416c750c1fef", "cast_id": 1014, "profile_path": "/xHlaXXdSROQBIJOD69PCloDShjb.jpg", "order": 10}], "directors": [{"name": "Eran Creevy", "department": "Directing", "job": "Director", "credit_id": "52fe49409251416c750c1fb1", "profile_path": null, "id": 999760}], "vote_average": 5.5, "runtime": 99}, "5915": {"poster_path": "/lHyYgaocXR6KcJLxVmxZDj115hH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37682065, "overview": "Based on a true story. After graduating from Emory University in 1992, top student and athlete Christopher McCandless abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness. Along the way, Christopher encounters a series of characters who shape his life.", "video": false, "id": 5915, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Into the Wild", "tagline": "Into the heart. Into the soul.", "vote_count": 647, "homepage": "http://www.intothewild.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758758", "adult": false, "backdrop_path": "/9yJehIjvR7ULOLxeDJoth4kDDNe.jpg", "production_companies": [{"name": "River Road Entertainment", "id": 1246}, {"name": "Paramount Vantage", "id": 838}, {"name": "Art Linson Productions", "id": 8769}, {"name": "Into the Wild", "id": 41051}], "release_date": "2007-09-20", "popularity": 1.70332103679774, "original_title": "Into the Wild", "budget": 15000000, "cast": [{"name": "Emile Hirsch", "character": "Christopher McCandless", "id": 46593, "credit_id": "52fe442dc3a36847f8086c83", "cast_id": 15, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Billie McCandless", "id": 4726, "credit_id": "52fe442dc3a36847f8086c87", "cast_id": 16, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "William Hurt", "character": "Walt McCandless", "id": 227, "credit_id": "52fe442dc3a36847f8086c8b", "cast_id": 17, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 2}, {"name": "Jena Malone", "character": "Carine McCandless", "id": 20089, "credit_id": "52fe442dc3a36847f8086c8f", "cast_id": 18, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 3}, {"name": "Brian H. Dierker", "character": "Rainey", "id": 46594, "credit_id": "52fe442dc3a36847f8086c93", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Catherine Keener", "character": "Jan Burres", "id": 2229, "credit_id": "52fe442dc3a36847f8086c97", "cast_id": 20, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Vince Vaughn", "character": "Wayne Westerberg", "id": 4937, "credit_id": "52fe442dc3a36847f8086c9b", "cast_id": 21, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 6}, {"name": "Kristen Stewart", "character": "Tracy", "id": 37917, "credit_id": "52fe442dc3a36847f8086caf", "cast_id": 27, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 7}, {"name": "Hal Holbrook", "character": "Ron Franz", "id": 11066, "credit_id": "52fe442dc3a36847f8086c9f", "cast_id": 23, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 8}, {"name": "Thure Lindhardt", "character": "Thomas", "id": 20258, "credit_id": "52fe442dc3a36847f8086ca3", "cast_id": 24, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 9}, {"name": "Signe Egholm Olsen", "character": "Sonja", "id": 46595, "credit_id": "52fe442dc3a36847f8086ca7", "cast_id": 25, "profile_path": "/dqULuupcz7gu4V34wOJ42GukX9I.jpg", "order": 10}, {"name": "Cheryl Francis Harrington", "character": "Sozialarbeiterin", "id": 46596, "credit_id": "52fe442dc3a36847f8086cab", "cast_id": 26, "profile_path": "/iJnAelIV0GB7p3aiMydJchwpplm.jpg", "order": 11}, {"name": "Zach Galifianakis", "character": "Kevin", "id": 58225, "credit_id": "53cf1b27c3a368777a00637f", "cast_id": 28, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 12}], "directors": [{"name": "Sean Penn", "department": "Directing", "job": "Director", "credit_id": "52fe442dc3a36847f8086c31", "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "id": 2228}], "vote_average": 7.6, "runtime": 148}, "38684": {"poster_path": "/jINBiay4lfGyIaQUI0fpyvE5BBk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 34710627, "overview": "After a bleak childhood, Jane Eyre goes out into the world to become a governess. As she lives happily in her new position at Thornfield Hall, she meet the dark, cold, and abrupt master of the house, Mr. Rochester. Jane and her employer grow close in friendship and she soon finds herself falling in love with him. Happiness seems to have found Jane at last, but could Mr. Rochester's terrible secret be about to destroy it forever?", "video": false, "id": 38684, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Jane Eyre", "tagline": "", "vote_count": 71, "homepage": "http://janeeyrethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1229822", "adult": false, "backdrop_path": "/qmERQjNTQ8HhBi5dxwv8BNzrOX.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Ruby Films", "id": 2054}], "release_date": "2011-03-11", "popularity": 0.446037594914626, "original_title": "Jane Eyre", "budget": 0, "cast": [{"name": "Mia Wasikowska", "character": "Jane Eyre", "id": 76070, "credit_id": "52fe46d09251416c91060a01", "cast_id": 4, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 0}, {"name": "Jamie Bell", "character": "St. John", "id": 478, "credit_id": "52fe46d09251416c91060a05", "cast_id": 5, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 1}, {"name": "Michael Fassbender", "character": "Edward Rochester", "id": 17288, "credit_id": "52fe46d09251416c91060a09", "cast_id": 6, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 2}, {"name": "Judi Dench", "character": "Mrs. Fairfax", "id": 5309, "credit_id": "52fe46d09251416c91060a0d", "cast_id": 7, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Su Elliott", "character": "Hannah", "id": 1221007, "credit_id": "52fe46d19251416c91060a89", "cast_id": 39, "profile_path": "/6IlvNaDF0JRF9hhIVTOEyLDjS36.jpg", "order": 4}, {"name": "Holliday Grainger", "character": "Diana Rivers", "id": 302165, "credit_id": "52fe46d09251416c91060a11", "cast_id": 9, "profile_path": "/1DvpsjoDK2mTT4J7MzyHOqbIkXf.jpg", "order": 5}, {"name": "Tamzin Merchant", "character": "Mary Rivers", "id": 36672, "credit_id": "52fe46d09251416c91060a15", "cast_id": 10, "profile_path": "/fFqq6Qj96iF3P1KwhN4JhmqRyi0.jpg", "order": 6}, {"name": "Amelia Clarkson", "character": "Young Jane", "id": 927703, "credit_id": "52fe46d09251416c91060a19", "cast_id": 11, "profile_path": "/3Fa67tAICbTqqHNcXhnJ1FceQgg.jpg", "order": 7}, {"name": "Craig Roberts", "character": "John Reed", "id": 104561, "credit_id": "52fe46d09251416c91060a1d", "cast_id": 12, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 8}, {"name": "Sally Hawkins", "character": "Mrs. Reed", "id": 39658, "credit_id": "52fe46d09251416c91060a21", "cast_id": 13, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 9}, {"name": "Lizzie Hopley", "character": "Miss Abbot", "id": 1089514, "credit_id": "52fe46d09251416c91060a25", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Jayne Wisener", "character": "Bessie", "id": 444008, "credit_id": "52fe46d09251416c91060a29", "cast_id": 15, "profile_path": "/wEBqOkuKJmTeew401wvWgtri1Q9.jpg", "order": 11}, {"name": "Freya Wilson", "character": "Eliza Reed", "id": 548169, "credit_id": "52fe46d09251416c91060a2d", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Emily Haigh", "character": "Georgiana Reed", "id": 1089516, "credit_id": "52fe46d09251416c91060a31", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Simon McBurney", "character": "Mr. Brocklehurst", "id": 16358, "credit_id": "52fe46d09251416c91060a35", "cast_id": 18, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 14}, {"name": "Sandy McDade", "character": "Miss Scatcherd", "id": 195383, "credit_id": "52fe46d09251416c91060a39", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Freya Parks", "character": "Helen Burns", "id": 970737, "credit_id": "52fe46d09251416c91060a3d", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Edwina Elek", "character": "Miss Temple", "id": 1089517, "credit_id": "52fe46d09251416c91060a41", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Ewart James Walters", "character": "John", "id": 207031, "credit_id": "52fe46d09251416c91060a45", "cast_id": 22, "profile_path": "/z4WRDB2e4koEf5X9kcr1AeoqVYn.jpg", "order": 18}, {"name": "Georgia Bourke", "character": "Leah", "id": 1089518, "credit_id": "52fe46d09251416c91060a49", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Sally Reeve", "character": "Martha", "id": 1089519, "credit_id": "52fe46d19251416c91060a4d", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Romy Settbon Moore", "character": "Ad\u00e8le Varens", "id": 1089520, "credit_id": "52fe46d19251416c91060a51", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Eglantine Rembauville-Nicolle", "character": "Sophie", "id": 84926, "credit_id": "52fe46d19251416c91060a55", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Rosie Cavaliero", "character": "Grace Poole", "id": 151949, "credit_id": "549a0b6192514131320007bf", "cast_id": 41, "profile_path": "/dyoSavGoRf5FAM3Xc2q62J57or.jpg", "order": 23}, {"name": "Angela Curran", "character": "Undercook", "id": 174700, "credit_id": "52fe46d19251416c91060a5d", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Imogen Poots", "character": "Blanche Ingram", "id": 17606, "credit_id": "52fe46d19251416c91060a61", "cast_id": 29, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 26}, {"name": "Sophie Ward", "character": "Lady Ingram", "id": 31921, "credit_id": "52fe46d19251416c91060a65", "cast_id": 30, "profile_path": "/rwI6NnPu7Tbv7DhzYk2MMqUacoS.jpg", "order": 27}, {"name": "Joe Van Moyland", "character": "Lord Ingram", "id": 126458, "credit_id": "52fe46d19251416c91060a69", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Hayden Phillips", "character": "Colonel Dent", "id": 1089522, "credit_id": "52fe46d19251416c91060a6d", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Laura Phillips", "character": "Mrs. Dent", "id": 1089523, "credit_id": "52fe46d19251416c91060a71", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "Harry Lloyd", "character": "Richard Mason", "id": 205258, "credit_id": "52fe46d19251416c91060a75", "cast_id": 34, "profile_path": "/vI6FWizXNa5quCyIiTd06gxNQu1.jpg", "order": 31}, {"name": "Ned Dennehy", "character": "Dr. Carter", "id": 63362, "credit_id": "52fe46d19251416c91060a79", "cast_id": 35, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 32}, {"name": "Joseph Kloska", "character": "Clergyman Wood", "id": 209631, "credit_id": "52fe46d19251416c91060a7d", "cast_id": 36, "profile_path": null, "order": 33}, {"name": "Ben Roberts", "character": "Briggs", "id": 186164, "credit_id": "52fe46d19251416c91060a81", "cast_id": 37, "profile_path": null, "order": 34}, {"name": "Valentina Cervi", "character": "Bertha Mason", "id": 21965, "credit_id": "52fe46d19251416c91060a85", "cast_id": 38, "profile_path": "/cfYU52DcAa4ZM7GrHJKRinFTV7W.jpg", "order": 35}], "directors": [{"name": "Cary Fukunaga", "department": "Directing", "job": "Director", "credit_id": "52fe46d09251416c910609f1", "profile_path": "/9BDeASL8E1Rr55fn0uQwEv1EAH6.jpg", "id": 87257}], "vote_average": 6.9, "runtime": 120}, "30497": {"poster_path": "/hXF5nuEvUIlMXv4fOCIhA8KWaN2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Five friends visiting their grandfather's house in the country are hunted and terrorized by a chain-saw wielding killer and his family of grave-robbing cannibals.", "video": false, "id": 30497, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Texas Chain Saw Massacre", "tagline": "Who will survive and what will be left of them?", "vote_count": 86, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072271", "adult": false, "backdrop_path": "/sOw7TZzt3vRQXXCrwdspSHwCJDR.jpg", "production_companies": [{"name": "Vortex", "id": 1197}], "release_date": "1974-10-01", "popularity": 1.01384652875984, "original_title": "The Texas Chain Saw Massacre", "budget": 85000, "cast": [{"name": "Allen Danziger", "character": "Jerry", "id": 122454, "credit_id": "52fe44209251416c91005c53", "cast_id": 3, "profile_path": "/nwxGMag4AYEQJcB7x5l8snDtDjE.jpg", "order": 1}, {"name": "Paul A. Partain", "character": "Franklin Hardesty", "id": 122455, "credit_id": "52fe44209251416c91005c57", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "William Vail", "character": "Kirk", "id": 122456, "credit_id": "52fe44209251416c91005c5b", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Teri McMinn", "character": "Pam", "id": 122457, "credit_id": "52fe44209251416c91005c5f", "cast_id": 6, "profile_path": "/z9V7RSDbGyOf1OnphMlpOwWXoli.jpg", "order": 4}, {"name": "Edwin Neal", "character": "Hitchhiker", "id": 27803, "credit_id": "52fe44209251416c91005c63", "cast_id": 7, "profile_path": "/2pggldtOoONkXwzK2nDNHPXzOgk.jpg", "order": 5}, {"name": "Jim Siedow", "character": "Old Man", "id": 104014, "credit_id": "52fe44209251416c91005c67", "cast_id": 8, "profile_path": "/s6ILyhAwoUsZYyyslG5t9nlUjXc.jpg", "order": 6}, {"name": "Gunnar Hansen", "character": "Leatherface", "id": 27804, "credit_id": "52fe44209251416c91005c6b", "cast_id": 9, "profile_path": "/bwqo7HNyvYqPCnTWlOHSUnstg2F.jpg", "order": 7}, {"name": "Marilyn Burns", "character": "Sally Hardesty", "id": 27798, "credit_id": "52fe44209251416c91005c6f", "cast_id": 10, "profile_path": "/bEPYa5U36XHiTBdZqZkcRq3cdPP.jpg", "order": 8}, {"name": "John Dugan", "character": "Grandfather", "id": 104892, "credit_id": "552bd386c3a3681f5c006f90", "cast_id": 22, "profile_path": "/4rhSibBG8MY7qtcoOtXI7NGqBfh.jpg", "order": 9}, {"name": "Robert Courtin", "character": "Window Washer", "id": 1453740, "credit_id": "552bd43c92514121d6003bbb", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "William Creamer", "character": "Bearded Man", "id": 565191, "credit_id": "552beae5925141265f004c9b", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "John Henry Faulk", "character": "Storyteller", "id": 1372356, "credit_id": "552bf19d925141288b002d63", "cast_id": 25, "profile_path": "/2Bew8g9tK8ToXFn1ZnKedLrUPlt.jpg", "order": 12}, {"name": "Jerry Green", "character": "Cowboy", "id": 1453812, "credit_id": "552bf32ac3a36843cd000f16", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Ed Guinn", "character": "Cattle Truck Driver", "id": 1453813, "credit_id": "552bf3de925141265f004e93", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Joe Bill Hogan", "character": "Drunk", "id": 1453814, "credit_id": "552bf445c3a36858d6006927", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Perry Lorenz", "character": "Pick Up Driver", "id": 1453815, "credit_id": "552bf4a9c3a3681f56008225", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "John Larroquette", "character": "Narrator (voice)", "id": 14101, "credit_id": "552bf56d9251412845002daa", "cast_id": 30, "profile_path": "/ilQ3NBO3LDsfSIuVpoh1C9sz6eb.jpg", "order": 17}], "directors": [{"name": "Tobe Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe44209251416c91005c4f", "profile_path": "/fsPSiL7qhUBULig72zdfKWSDa1V.jpg", "id": 10051}], "vote_average": 6.8, "runtime": 83}, "5924": {"poster_path": "/q1tmTQvEWbJgf8eccX1XWXxWKkK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53267000, "overview": "A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.", "video": false, "id": 5924, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Papillon", "tagline": "Not just a Great Escape. It was the Greatest.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0070511", "adult": false, "backdrop_path": "/80MH0jVCqSbcC2Z0a6xkkwCCPbZ.jpg", "production_companies": [{"name": "Allied Artists", "id": 517}, {"name": "Solar Productions", "id": 599}], "release_date": "1973-12-16", "popularity": 1.22167742099536, "original_title": "Papillon", "budget": 12000000, "cast": [{"name": "Steve McQueen", "character": "Henri \"Papillon\" Charriere", "id": 13565, "credit_id": "52fe442ec3a36847f80870cf", "cast_id": 1, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Louis Dega", "id": 4483, "credit_id": "52fe442ec3a36847f80870d3", "cast_id": 2, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Victor Jory", "character": "Indian Chief", "id": 15666, "credit_id": "52fe442ec3a36847f8087119", "cast_id": 15, "profile_path": "/4phylVED6xN2gFYeUQnywahstGG.jpg", "order": 2}, {"name": "Don Gordon", "character": "Julot", "id": 14062, "credit_id": "52fe442ec3a36847f808711d", "cast_id": 16, "profile_path": "/oSX1fJ1PY7RzOelwratXJX7kVTQ.jpg", "order": 3}, {"name": "Anthony Zerbe", "character": "Toussaint", "id": 2516, "credit_id": "52fe442ec3a36847f8087115", "cast_id": 14, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 4}, {"name": "Robert Deman", "character": "Maturette", "id": 49356, "credit_id": "52fe442ec3a36847f8087111", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Woodrow Parfrey", "character": "Clusiot", "id": 13263, "credit_id": "52fe442ec3a36847f808710d", "cast_id": 12, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 6}, {"name": "Bill Mumy", "character": "Lariot", "id": 49357, "credit_id": "52fe442ec3a36847f8087121", "cast_id": 17, "profile_path": "/ciFUMYHa9tmGdz52vedmoTOfJde.jpg", "order": 7}, {"name": "George Coulouris", "character": "Dr. Chatal", "id": 11028, "credit_id": "52fe442ec3a36847f8087125", "cast_id": 18, "profile_path": "/6lZrP9zhuFyL0uOHYJU09FpUV9.jpg", "order": 8}, {"name": "Ratna Assan", "character": "Zoraima", "id": 993183, "credit_id": "52fe442ec3a36847f8087129", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "William Smithers", "character": "Warden Barrot", "id": 16030, "credit_id": "52fe442ec3a36847f808712d", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Val Avery", "character": "Pascal", "id": 3014, "credit_id": "52fe442ec3a36847f8087131", "cast_id": 21, "profile_path": "/jIBEZ5xoM7I5PxG3pW62VeWwYih.jpg", "order": 11}, {"name": "Gregory Sierra", "character": "Antonio", "id": 18914, "credit_id": "52fe442ec3a36847f8087135", "cast_id": 22, "profile_path": "/lbF2GRIs3juRAzfevwsUOq5PzFF.jpg", "order": 12}, {"name": "Vic Tayback", "character": "Sergeant (as Victor Tayback)", "id": 14069, "credit_id": "52fe442ec3a36847f8087139", "cast_id": 23, "profile_path": "/rddNsgbWGeYckB9IB0i2s8uQdv5.jpg", "order": 13}, {"name": "Mills Watson", "character": "Guard", "id": 140345, "credit_id": "52fe442ec3a36847f808713d", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Len Lesser", "character": "Guard", "id": 78087, "credit_id": "54d7fdd2c3a3683b920070a8", "cast_id": 26, "profile_path": "/h6mL9dHhYa4sHppv4GRJIkUTqwe.jpg", "order": 15}], "directors": [{"name": "Franklin J. Schaffner", "department": "Directing", "job": "Director", "credit_id": "52fe442ec3a36847f80870e5", "profile_path": "/dqrDUANz8sf0BXTBh0gr1heUr5U.jpg", "id": 13265}], "vote_average": 7.7, "runtime": 151}, "5925": {"poster_path": "/qhy4HgUqhEbwQ1ekKTv7yEB3b0e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5000000, "overview": "The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocates them to a high-security \"escape-proof\" camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.", "video": false, "id": 5925, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "The Great Escape", "tagline": "Put a fence in front of these men...and they'll climb it...", "vote_count": 211, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0057115", "adult": false, "backdrop_path": "/nb70B4EXuoegiQ0C5N1fNVHIaYc.jpg", "production_companies": [{"name": "The Mirisch Corporation", "id": 219}], "release_date": "1963-07-04", "popularity": 1.49385595210194, "original_title": "The Great Escape", "budget": 4000000, "cast": [{"name": "Steve McQueen", "character": "Captain Hilts", "id": 13565, "credit_id": "52fe442ec3a36847f8087195", "cast_id": 1, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 0}, {"name": "James Garner", "character": "Flight Lt. Hendley", "id": 16896, "credit_id": "52fe442ec3a36847f8087199", "cast_id": 2, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 1}, {"name": "Richard Attenborough", "character": "Roger Bartlett", "id": 4786, "credit_id": "52fe442ec3a36847f808719d", "cast_id": 3, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 2}, {"name": "James Donald", "character": "Group Capt. Ramsey \"The SBO\"", "id": 12250, "credit_id": "52fe442ec3a36847f80871b7", "cast_id": 9, "profile_path": "/37GWNFPrHxo6RZf8uY0bdk47BD8.jpg", "order": 3}, {"name": "Charles Bronson", "character": "Flight Lt. Danny Velinski", "id": 4960, "credit_id": "52fe442ec3a36847f80871a1", "cast_id": 4, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 4}, {"name": "Donald Pleasence", "character": "Flight Lt. Colin Blythe \"The Forger\"", "id": 9221, "credit_id": "52fe442ec3a36847f80871bb", "cast_id": 10, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 5}, {"name": "James Coburn", "character": "Flying Officer Louis Sedgwick \"The Manufacturer\"", "id": 5563, "credit_id": "52fe442ec3a36847f80871bf", "cast_id": 11, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 6}, {"name": "Hannes Messemer", "character": "Kommandant von Luger", "id": 23696, "credit_id": "52fe442ec3a36847f80871c3", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "David McCallum", "character": "Lt. Cmdr. Eric Ashley-Pitt \"Dispersal\"", "id": 24813, "credit_id": "52fe442ec3a36847f80871c7", "cast_id": 13, "profile_path": "/po7qYZYW0RMTl4BavHIZCxqopCD.jpg", "order": 8}, {"name": "Gordon Jackson", "character": "Flight Lt. Sandy MacDonald \"Intelligence\"", "id": 41998, "credit_id": "52fe442ec3a36847f80871cb", "cast_id": 14, "profile_path": "/yz1S8Ge93l9DoC3zmElq26KN2Ug.jpg", "order": 9}, {"name": "John Leyton", "character": "Flight Lt. William Dickes \"The Tunneler\"", "id": 93125, "credit_id": "52fe442ec3a36847f80871cf", "cast_id": 15, "profile_path": "/hBY34TxEM03HcgMCYOu8454D2mM.jpg", "order": 10}, {"name": "Angus Lennie", "character": "Flying Officer Archibald Ives \"The Mole\"", "id": 78942, "credit_id": "52fe442ec3a36847f80871d3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Nigel Stock", "character": "Flight Lt. Denys Cavendish \"The Surveyor\"", "id": 108637, "credit_id": "52fe442ec3a36847f80871d7", "cast_id": 17, "profile_path": "/yv4cY1k6KWAQgsln2IHobAyVEtg.jpg", "order": 12}, {"name": "Robert Graf", "character": "Werner 'The Ferret'", "id": 1054816, "credit_id": "534d526e0e0a2679dc00013e", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Jud Taylor", "character": "Goff", "id": 117865, "credit_id": "52fe442ec3a36847f80871df", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Hans Reiser", "character": "Herr Kuhn", "id": 26586, "credit_id": "52fe442ec3a36847f80871e3", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Harry Riebauer", "character": "Stratwitch", "id": 37531, "credit_id": "52fe442ec3a36847f80871e7", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "William Russell", "character": "Sorren", "id": 32041, "credit_id": "52fe442ec3a36847f80871eb", "cast_id": 22, "profile_path": "/mIkzbyEG7cBMB2Tyr9sjwChkdVs.jpg", "order": 17}, {"name": "Robert Freitag", "character": "Capt. Posen", "id": 19574, "credit_id": "52fe442ec3a36847f80871ef", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Ulrich Beiger", "character": "Preissen", "id": 26937, "credit_id": "52fe442ec3a36847f80871f3", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "George Mikell", "character": "Lt. Dietrich", "id": 137383, "credit_id": "52fe442ec3a36847f80871f7", "cast_id": 25, "profile_path": "/ak4YIVTrl5KWuxbIW9n7tOjtxzp.jpg", "order": 20}, {"name": "Robert Desmond", "character": "Griffith 'Tailor'", "id": 140146, "credit_id": "52fe442ec3a36847f80871fb", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Til Kiwe", "character": "Frick", "id": 5800, "credit_id": "52fe442ec3a36847f80871ff", "cast_id": 28, "profile_path": "/qvomclFht6GeE03tLNKJU6cDcOw.jpg", "order": 22}, {"name": "Heinz Weiss", "character": "Kramer", "id": 18968, "credit_id": "52fe442ec3a36847f8087203", "cast_id": 29, "profile_path": "/A8qaf0ce3YY675Pc45y4Dzl50dX.jpg", "order": 23}, {"name": "Tom Adams", "character": "Dai Nimmo ('Diversions')", "id": 23910, "credit_id": "52fe442ec3a36847f8087207", "cast_id": 30, "profile_path": "/mz3VR8o8rftlPMUIpXVKUiVpAbV.jpg", "order": 24}, {"name": "Karl-Otto Alberty", "character": "S.S. Officer Steinach", "id": 78094, "credit_id": "52fe442fc3a36847f808720b", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Lawrence Montaigne", "character": "Haynes ('Diversions')", "id": 1213151, "credit_id": "52fe442fc3a36847f808723f", "cast_id": 40, "profile_path": "/5VJJu5gljLTPwHrUHJYLElg0srU.jpg", "order": 26}], "directors": [{"name": "John Sturges", "department": "Directing", "job": "Director", "credit_id": "52fe442ec3a36847f80871ad", "profile_path": "/addeAxOXQmqXAZ7FB6ztGQ9daWC.jpg", "id": 14520}], "vote_average": 7.3, "runtime": 172}, "50619": {"poster_path": "/5Vp3N1Gp147Yd8A8kQspvxJ7ByG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 701315261, "overview": "The new found married bliss of Bella Swan and vampire Edward Cullen is cut short when a series of betrayals and misfortunes threatens to destroy their world. Bella soon discovers she is pregnant, and during a nearly fatal childbirth, Edward finally fulfills her wish to become immortal. But the arrival of their remarkable daughter, Renesmee, sets in motion a perilous chain of events that pits the Cullens and their allies against the Volturi, the fearsome council of vampire leaders, setting the stage for an all-out battle.", "video": false, "id": 50619, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: Breaking Dawn - Part 1", "tagline": "Forever is just the beginning", "vote_count": 1010, "homepage": "http://www.breakingdawn-themovie.com/", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1324999", "adult": false, "backdrop_path": "/brbsq016UiQgwWb4qKPdCysnXjg.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "TSBD Canada Productions", "id": 7490}, {"name": "Zohar International", "id": 7491}], "release_date": "2011-11-17", "popularity": 1.20935105777554, "original_title": "The Twilight Saga: Breaking Dawn - Part 1", "budget": 263000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe47cec3a36847f8149513", "cast_id": 5, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe47cec3a36847f8149517", "cast_id": 6, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe47cec3a36847f814951b", "cast_id": 7, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe47cec3a36847f814951f", "cast_id": 8, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 3}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe47cec3a36847f8149523", "cast_id": 10, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 4}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe47cec3a36847f8149527", "cast_id": 11, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 5}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe47cec3a36847f814952b", "cast_id": 12, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 6}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe47cec3a36847f8149547", "cast_id": 18, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 7}, {"name": "Booboo Stewart", "character": "Seth", "id": 121868, "credit_id": "52fe47cec3a36847f814954b", "cast_id": 19, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 8}, {"name": "Julia Jones", "character": "Leah", "id": 87310, "credit_id": "52fe47cec3a36847f814954f", "cast_id": 20, "profile_path": "/jw08w0ySlHa5qmQWaNp2FLFeAEq.jpg", "order": 9}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe47cec3a36847f8149553", "cast_id": 21, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 10}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe47cec3a36847f8149557", "cast_id": 22, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 11}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe47cec3a36847f814955b", "cast_id": 23, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 12}, {"name": "Maggie Grace", "character": "Irina Denali", "id": 11825, "credit_id": "52fe47cec3a36847f814955f", "cast_id": 24, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 13}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe47cec3a36847f8149563", "cast_id": 25, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 14}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe47cec3a36847f8149567", "cast_id": 26, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 15}, {"name": "Sarah Clarke", "character": "Ren\u00e9e", "id": 25836, "credit_id": "52fe47cec3a36847f814956b", "cast_id": 27, "profile_path": "/50umNQSJOGuz09Sb6R5BIRP5IoD.jpg", "order": 16}, {"name": "MyAnna Buring", "character": "Tanya Denali", "id": 57578, "credit_id": "52fe47cec3a36847f814956f", "cast_id": 28, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 17}, {"name": "Tanaya Beatty", "character": "Rachel", "id": 1301092, "credit_id": "53242b189251410c870004c2", "cast_id": 29, "profile_path": "/y9HyH4jRXOZ6Ob32ojOkxaO8eRl.jpg", "order": 18}, {"name": "Christian Camargo", "character": "Eleazar", "id": 122029, "credit_id": "54e677c59251416f54000339", "cast_id": 30, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 19}], "directors": [{"name": "Bill Condon", "department": "Directing", "job": "Director", "credit_id": "52fe47cec3a36847f8149503", "profile_path": "/lMNARbVEd2VKcEZCBQwy1fPWWVG.jpg", "id": 15557}], "vote_average": 5.8, "runtime": 117}, "145197": {"poster_path": "/ckbUVwa9r7h348upwiRvjpl4sQp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 444098, "overview": "A man and woman are drawn together, entangled in the lifecycle of an ageless organism. Identity becomes an illusion as they struggle to assemble the loose fragments of wrecked lives.", "video": false, "id": 145197, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Upstream Color", "tagline": "", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2084989", "adult": false, "backdrop_path": "/kAP1HdlU4rnqC7mYMx2Rg7KZST3.jpg", "production_companies": [{"name": "erbp", "id": 44640}], "release_date": "2013-04-05", "popularity": 0.371065389292621, "original_title": "Upstream Color", "budget": 100000, "cast": [{"name": "Amy Seimetz", "character": "Kris", "id": 139150, "credit_id": "52fe4b519251416c750ff2d3", "cast_id": 5, "profile_path": "/zMJK3v7GvyYAgVVkStSFWTEHHHl.jpg", "order": 0}, {"name": "Shane Carruth", "character": "Jeff", "id": 76624, "credit_id": "52fe4b519251416c750ff2cf", "cast_id": 4, "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "order": 1}, {"name": "Andrew Sensenig", "character": "The Sampler", "id": 141226, "credit_id": "52fe4b519251416c750ff2d7", "cast_id": 6, "profile_path": "/oiPTOeTpMnEHq1sydiLgsMtwDVa.jpg", "order": 2}, {"name": "Thiago Martins", "character": "Thief", "id": 50362, "credit_id": "52fe4b519251416c750ff2db", "cast_id": 7, "profile_path": "/2QrPAoTAtgIY69UvJUNWT62moLc.jpg", "order": 3}], "directors": [{"name": "Shane Carruth", "department": "Directing", "job": "Director", "credit_id": "52fe4b519251416c750ff2bf", "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "id": 76624}], "vote_average": 6.5, "runtime": 96}, "9745": {"poster_path": "/q50TLYePXUqpPHTwb8UJyFdRI8U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A father, who can't keep his promises, dies in a car accident. One year later, he returns as a snowman, who has the final chance to put things right with his son before he is gone forever.", "video": false, "id": 9745, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Jack Frost", "tagline": "Jack Frost is getting a second chance to be the world's coolest dad... if he doesn't melt first.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0141109", "adult": false, "backdrop_path": "/3PRXD9ntyhuAjLDltma2cEuid3Y.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1998-12-11", "popularity": 0.805402144822791, "original_title": "Jack Frost", "budget": 27000000, "cast": [{"name": "Michael Keaton", "character": "Jack Frost", "id": 2232, "credit_id": "52fe4525c3a36847f80bf0e7", "cast_id": 1, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Kelly Preston", "character": "Gabby Frost", "id": 11164, "credit_id": "52fe4525c3a36847f80bf0eb", "cast_id": 2, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 1}, {"name": "Mark Addy", "character": "Mac MacArthur", "id": 13633, "credit_id": "52fe4525c3a36847f80bf0ef", "cast_id": 3, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 2}, {"name": "Joseph Cross", "character": "Charlie Frost", "id": 33528, "credit_id": "52fe4525c3a36847f80bf117", "cast_id": 10, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 3}, {"name": "Henry Rollins", "character": "Sid Gronic", "id": 9290, "credit_id": "52fe4526c3a36847f80bf11b", "cast_id": 11, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 4}, {"name": "Mika Boorem", "character": "Natalie", "id": 21027, "credit_id": "52fe4526c3a36847f80bf11f", "cast_id": 12, "profile_path": "/amQuR9PGz0yt6IXNnwLOAEkfPcq.jpg", "order": 5}, {"name": "Andrew Lawrence", "character": "Tuck Gronic", "id": 16479, "credit_id": "52fe4526c3a36847f80bf123", "cast_id": 13, "profile_path": "/rW9mqQf9KABcEkkaOyeY8F67n16.jpg", "order": 6}, {"name": "Eli Marienthal", "character": "Spencer", "id": 116027, "credit_id": "52fe4526c3a36847f80bf127", "cast_id": 14, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 7}, {"name": "Will Rothhaar", "character": "Dennis", "id": 149484, "credit_id": "52fe4526c3a36847f80bf12b", "cast_id": 15, "profile_path": "/oigxlX2GoRu50q0u6CNwNhfjvyB.jpg", "order": 8}, {"name": "Taylor Handley", "character": "Rory Buck", "id": 66741, "credit_id": "52fe4526c3a36847f80bf12f", "cast_id": 16, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 9}, {"name": "Paul F. Tompkins", "character": "Audience Member", "id": 1219029, "credit_id": "54b09089c3a3680945000e5b", "cast_id": 17, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 10}, {"name": "Dweezil Zappa", "character": "John Kaplan", "id": 120952, "credit_id": "54b090adc3a368094e000fea", "cast_id": 18, "profile_path": "/d2HSXwuYiTKzL1Lo1IEtMsAa0WX.jpg", "order": 11}, {"name": "Jay Johnston", "character": "TV Weatherman", "id": 1215262, "credit_id": "54b090c5c3a368094e000fec", "cast_id": 19, "profile_path": "/tez2yLdvX40JNvZVTePuEYecda0.jpg", "order": 12}, {"name": "Googy Gress", "character": "Spencer's Dad", "id": 93846, "credit_id": "54b090f4c3a3680939000dc4", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Wayne Federman", "character": "Policeman Dave", "id": 170759, "credit_id": "54b09113c3a3680945000e6d", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Trevor Rabin", "character": "Trevor (Lead Guitar)", "id": 894, "credit_id": "54b0912bc3a3680940000d40", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Moon Unit Zappa", "character": "School Teacher (uncredited)", "id": 140387, "credit_id": "5506e29792514179fb001f60", "cast_id": 25, "profile_path": null, "order": 16}], "directors": [{"name": "Troy Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80bf0f5", "profile_path": null, "id": 58868}], "vote_average": 5.7, "runtime": 101}, "22327": {"poster_path": "/nQ45Ypo7fdgBWGUICyT0XR5RPU6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The outrageous and heartwarming tale of Nick Twisp and his quest to win the heart of Sheeni and hopefully lose his virginity along the way.", "video": false, "id": 22327, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Youth in Revolt", "tagline": "Every \"Revolution\" Needs A Leader", "vote_count": 90, "homepage": "http://youthinrevolt-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0403702", "adult": false, "backdrop_path": "/qTmXP26RbQMPxBUiTz9qdHg0eoH.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2009-09-11", "popularity": 1.12471742594756, "original_title": "Youth in Revolt", "budget": 18000000, "cast": [{"name": "Michael Cera", "character": "Nick Twisp", "id": 39995, "credit_id": "52fe443cc3a368484e017681", "cast_id": 1, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 0}, {"name": "Zach Galifianakis", "character": "Jerry", "id": 58225, "credit_id": "52fe443cc3a368484e01768b", "cast_id": 3, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 1}, {"name": "Justin Long", "character": "Paul Saunders", "id": 15033, "credit_id": "52fe443cc3a368484e01768f", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Lance Wescott", "id": 11477, "credit_id": "52fe443cc3a368484e017693", "cast_id": 5, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "George Twisp", "id": 884, "credit_id": "52fe443cc3a368484e017697", "cast_id": 6, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Ari Graynor", "character": "Lacey", "id": 71552, "credit_id": "52fe443cc3a368484e01769b", "cast_id": 7, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 5}, {"name": "Portia Doubleday", "character": "Sheeni Saunders", "id": 117669, "credit_id": "52fe443cc3a368484e01769f", "cast_id": 8, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 6}, {"name": "Rooney Mara", "character": "Taggarty", "id": 108916, "credit_id": "52fe443cc3a368484e0176a3", "cast_id": 9, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 7}, {"name": "Erik Knudsen", "character": "Lefty", "id": 2681, "credit_id": "5372724b0e0a2672f1002214", "cast_id": 11, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 8}, {"name": "Adhir Kalyan", "character": "Vijay Joshi", "id": 440306, "credit_id": "5372725c0e0a2672e5002328", "cast_id": 12, "profile_path": "/aMrG4CWhYGjKPgEgmzKTG3w5JqA.jpg", "order": 9}, {"name": "Fred Willard", "character": "Mr. Ferguson", "id": 20753, "credit_id": "537272690e0a2672ee00227e", "cast_id": 13, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 10}, {"name": "Jade Fusco", "character": "Bernice Lynch", "id": 1286238, "credit_id": "537272860e0a2672e500232b", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Lise Lacasse", "character": "Matron", "id": 1319235, "credit_id": "5372729a0e0a2672fb002316", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "M. Emmet Walsh", "character": "Mr. Saunders", "id": 588, "credit_id": "537272a80e0a2672e5002330", "cast_id": 16, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 13}, {"name": "Mary Kay Place", "character": "Mrs. Saunders", "id": 5960, "credit_id": "537272b30e0a2672fb00231b", "cast_id": 17, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 14}, {"name": "Jonathan B. Wright", "character": "Trent", "id": 71554, "credit_id": "537272c30e0a2672f40022ff", "cast_id": 18, "profile_path": "/jAeOOEvIupm2xNDLSS4XM6fDj7A.jpg", "order": 15}], "directors": [{"name": "Miguel Arteta", "department": "Directing", "job": "Director", "credit_id": "52fe443cc3a368484e017687", "profile_path": "/c1StX0L6loDCLcQODL8Z6CPYF1t.jpg", "id": 61069}], "vote_average": 5.5, "runtime": 90}, "145220": {"poster_path": "/bxDby1r6WW3HyWzA9vd8uCMG9E6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80383113, "overview": "While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.", "video": false, "id": 145220, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10751, "name": "Family"}], "title": "Muppets Most Wanted", "tagline": "Taking the world by farce", "vote_count": 125, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gMqWZhJnAYhVuHB6kVFh7Hjvwfo.jpg", "poster_path": "/8Ew8EIdFFurMMYjSbWPu1Hl4vLX.jpg", "id": 256377, "name": "The Muppet Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2281587", "adult": false, "backdrop_path": "/j5KtmMiOzLlyW0VWVP74exW3N5F.jpg", "production_companies": [{"name": "Buena Vista", "id": 32}, {"name": "Disney", "id": 6421}], "release_date": "2014-03-20", "popularity": 0.9718424389205, "original_title": "Muppets Most Wanted", "budget": 50000000, "cast": [{"name": "Ricky Gervais", "character": "Dominic", "id": 17835, "credit_id": "52fe4b539251416c750ff6d5", "cast_id": 15, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 0}, {"name": "Ty Burrell", "character": "Jean Pierre Napoleon", "id": 15232, "credit_id": "52fe4b539251416c750ff6d9", "cast_id": 16, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 1}, {"name": "Tina Fey", "character": "Nadya", "id": 56323, "credit_id": "52fe4b539251416c750ff6cd", "cast_id": 13, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 2}, {"name": "Steve Whitmire", "character": "Kermit / Beaker / Statler / Rizzo / Newsman / Foo-Foo (voice)", "id": 64180, "credit_id": "52fe4b549251416c750ff6e5", "cast_id": 19, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 3}, {"name": "Eric Jacobson", "character": "Miss Piggy / Fozzie Bear / Animal / Sam Eagle (voice)", "id": 97185, "credit_id": "52fe4b549251416c750ff6ed", "cast_id": 21, "profile_path": "/mfrQc4O4ntkCTSUYjdsnRXKvHXb.jpg", "order": 4}, {"name": "Dave Goelz", "character": "Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf (voice)", "id": 64181, "credit_id": "52fe4b549251416c750ff6f1", "cast_id": 22, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 5}, {"name": "Bill Barretta", "character": "Swedish Chef / Rowlf / Dr. Teeth / Pepe the Prawn / Bobo (voice)", "id": 64182, "credit_id": "52fe4b549251416c750ff6f9", "cast_id": 24, "profile_path": "/vqJkiA95qahSGcf2HoXfueOzUU4.jpg", "order": 6}, {"name": "Matt Vogel", "character": "Sgt. Floyd Pepper / Camilla / Sweetums / Lew Zealand / Crazy Harry (voice)", "id": 135467, "credit_id": "52fe4b549251416c750ff705", "cast_id": 27, "profile_path": "/A8675oSlBx3Gt18xgFXPHupmVkr.jpg", "order": 7}, {"name": "Peter Linz", "character": "Walter (voice)", "id": 360193, "credit_id": "52fe4b539251416c750ff6e1", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Tom Hiddleston", "character": "Great Escapo", "id": 91606, "credit_id": "52fe4b549251416c750ff715", "cast_id": 31, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 9}, {"name": "Salma Hayek", "character": "", "id": 3136, "credit_id": "52fe4b549251416c750ff719", "cast_id": 32, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 10}, {"name": "Ray Liotta", "character": "", "id": 11477, "credit_id": "52fe4b539251416c750ff6d1", "cast_id": 14, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 11}, {"name": "Kenneth Collard", "character": "The Berliner", "id": 997569, "credit_id": "52fe4b539251416c750ff6dd", "cast_id": 17, "profile_path": "/7w29ibbniZoMEkTYVtsxiNSLamf.jpg", "order": 12}, {"name": "Pamela Betsy Cooper", "character": "German Lady in the Audience", "id": 1147918, "credit_id": "52fe4b549251416c750ff6e9", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "James Pasierbowicz", "character": "Joe", "id": 1147919, "credit_id": "52fe4b549251416c750ff6f5", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Richard Herdman", "character": "Commuter", "id": 1147920, "credit_id": "52fe4b549251416c750ff6fd", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "David Rudman", "character": "Scooter / Janice (voice)", "id": 192632, "credit_id": "52fe4b549251416c750ff701", "cast_id": 26, "profile_path": "/gbK487QzcdwHul2HKrEEiaCY9co.jpg", "order": 16}, {"name": "Luke Howard", "character": "Spanish Train Porter", "id": 1138597, "credit_id": "52fe4b549251416c750ff709", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Pete Meads", "character": "German Audience Member", "id": 1147921, "credit_id": "52fe4b549251416c750ff70d", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Ricky Rajpal", "character": "Audience Member", "id": 1106760, "credit_id": "52fe4b549251416c750ff711", "cast_id": 30, "profile_path": "/uIogtsdVzDWRxvANRdoL0FtGM7S.jpg", "order": 19}, {"name": "Danny Trejo", "character": "", "id": 11160, "credit_id": "52fe4b549251416c750ff71d", "cast_id": 33, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 20}, {"name": "Stanley Tucci", "character": "", "id": 2283, "credit_id": "53033ee4c3a3680a3f580256", "cast_id": 34, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 21}, {"name": "Jemaine Clement", "character": "Prison King", "id": 55936, "credit_id": "532f0a849251413a7e00373c", "cast_id": 35, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 22}, {"name": "Zach Galifianakis", "character": "Hobo Joe", "id": 58225, "credit_id": "547065c192514112ee0042bd", "cast_id": 39, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 23}, {"name": "Tom Hollander", "character": "Theater Manager", "id": 2441, "credit_id": "547065e192514112f3004951", "cast_id": 40, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 24}, {"name": "Toby Jones", "character": "", "id": 13014, "credit_id": "547065f192514170660022e9", "cast_id": 41, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 25}, {"name": "Frank Langella", "character": "Beefeater Vicar", "id": 8924, "credit_id": "5470660cc3a36830c4000924", "cast_id": 42, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 26}, {"name": "James McAvoy", "character": "UPS Guy", "id": 5530, "credit_id": "5470661cc3a36828e0000dc1", "cast_id": 43, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 27}, {"name": "Chlo\u00eb Grace Moretz", "character": "Newspaper Girl", "id": 56734, "credit_id": "54706636c3a3682fa70045b1", "cast_id": 44, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 28}, {"name": "Miranda Richardson", "character": "Berliner at Window", "id": 8436, "credit_id": "5470665b92514112e90044a2", "cast_id": 45, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 29}, {"name": "Saoirse Ronan", "character": "Herself", "id": 36592, "credit_id": "5470667092514112e7004bac", "cast_id": 46, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 30}, {"name": "Til Schweiger", "character": "German Cop", "id": 1844, "credit_id": "54706681c3a3682f9a004bb1", "cast_id": 47, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 31}, {"name": "Russell Tovey", "character": "Delivery Man", "id": 55469, "credit_id": "5470669592514112ee0042e5", "cast_id": 48, "profile_path": "/qpL1Zl5NjNTcYpRBlwpm9DPsl1I.jpg", "order": 32}, {"name": "Christoph Waltz", "character": "Himself", "id": 27319, "credit_id": "547066afc3a3682f9a004bb7", "cast_id": 49, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 33}, {"name": "Christoph Waltz", "character": "Christopher Waltz", "id": 27319, "credit_id": "547066c092514112ee0042ed", "cast_id": 50, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 34}, {"name": "Hugh Bonneville", "character": "Irish Journalist", "id": 19923, "credit_id": "547066f29251413813000bce", "cast_id": 51, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 35}, {"name": "Mackenzie Crook", "character": "Prado Museum Guard #1", "id": 1711, "credit_id": "54706704c3a36814aa000381", "cast_id": 52, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 36}], "directors": [{"name": "James Bobin", "department": "Directing", "job": "Director", "credit_id": "52fe4b539251416c750ff6b7", "profile_path": "/reixB8bAjIoVDyTwjNwRzB47yT2.jpg", "id": 26205}], "vote_average": 6.4, "runtime": 112}, "5966": {"poster_path": "/nIY4kvJTTnxoBR0wycrXng5MOYs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13639253, "overview": "Reuben Feffer (Ben Stiller) is a guy who's spent his entire life playing it safe. Polly Prince (Jennifer Aniston) is irresistible as a free-spirit who lives for the thrill of the moment. When these two comically mismatched souls collide, Reuben's world is turned upside down, as he makes an uproarious attempt to change his life from middle-of-the-road to totally-out-there!", "video": false, "id": 5966, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Along Came Polly", "tagline": "For the most cautious man on Earth, life is about to get interesting.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0343135", "adult": false, "backdrop_path": "/rRyvFnKBlO2sDCbYugtAByn7ywL.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Jersey Films", "id": 216}], "release_date": "2004-01-12", "popularity": 1.08611813832619, "original_title": "Along Came Polly", "budget": 42000000, "cast": [{"name": "Ben Stiller", "character": "Reuben Feffer", "id": 7399, "credit_id": "52fe4432c3a36847f808804d", "cast_id": 8, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Polly Prince", "id": 4491, "credit_id": "52fe4432c3a36847f8088051", "cast_id": 9, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Philip Seymour Hoffman", "character": "Sandy Lyle", "id": 1233, "credit_id": "52fe4433c3a36847f8088055", "cast_id": 10, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 2}, {"name": "Debra Messing", "character": "Lisa Kramer", "id": 23959, "credit_id": "52fe4433c3a36847f8088059", "cast_id": 11, "profile_path": "/d2LQbdccJbMSDC9Qm6vTn4qa0Ly.jpg", "order": 3}, {"name": "Alec Baldwin", "character": "Stan", "id": 7447, "credit_id": "52fe4433c3a36847f808805d", "cast_id": 12, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 4}, {"name": "Hank Azaria", "character": "Claude", "id": 5587, "credit_id": "52fe4433c3a36847f8088061", "cast_id": 13, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 5}, {"name": "Bryan Brown", "character": "Leland Van Lew", "id": 29092, "credit_id": "52fe4433c3a36847f8088065", "cast_id": 14, "profile_path": "/ppE8Gy8jyjB5oQwwryVFgvQlHUr.jpg", "order": 6}, {"name": "Jsu Garcia", "character": "Javier", "id": 13657, "credit_id": "52fe4433c3a36847f8088069", "cast_id": 15, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 7}, {"name": "Michele Lee", "character": "Vivian Feffer", "id": 46944, "credit_id": "52fe4433c3a36847f808806d", "cast_id": 16, "profile_path": "/eAFkwA216b6bFbkenlAqp03luT5.jpg", "order": 8}, {"name": "Bob Dishy", "character": "Irving Feffer", "id": 19889, "credit_id": "52fe4433c3a36847f8088071", "cast_id": 17, "profile_path": "/g4pWDvBoJ5kn61sAL2lpobqsbnu.jpg", "order": 9}, {"name": "Missi Pyle", "character": "Roxanne", "id": 1294, "credit_id": "52fe4433c3a36847f8088075", "cast_id": 18, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 10}], "directors": [{"name": "John Hamburg", "department": "Directing", "job": "Director", "credit_id": "52fe4433c3a36847f8088081", "profile_path": "/sOLaBjtlparS5GWGhI3a8Rx5Qzr.jpg", "id": 17871}], "vote_average": 5.8, "runtime": 90}, "63311": {"poster_path": "/iFIgRIhz3CdWDuKBqEDURV4a4Ly.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 5774854, "overview": "A brilliant plastic surgeon creates a synthetic skin that withstands any kind of damage. His guinea pig: a mysterious and volatile woman who holds the key to his obsession.", "video": false, "id": 63311, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Skin I Live In", "tagline": "", "vote_count": 207, "homepage": "http://www.lapielquehabito.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1189073", "adult": false, "backdrop_path": "/4j4hMGrcQ3EymMCi5lYo4SOVQgh.jpg", "production_companies": [{"name": "El Deseo", "id": 49}, {"name": "Televisi\u00f3n Espa\u00f1ola TVE", "id": 6780}, {"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "Instituto de la Cinematograf\u00eda y de las Artes Audiovisuales (ICAA)", "id": 9974}, {"name": "Instituto de Cr\u00e9dito Oficial (ICO)", "id": 11427}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Blue Haze Entertainment", "id": 11898}], "release_date": "2011-09-02", "popularity": 0.78653408595889, "original_title": "La piel que habito", "budget": 13000000, "cast": [{"name": "Antonio Banderas", "character": "Doctor Robert Ledgard", "id": 3131, "credit_id": "52fe46a4c3a368484e09be3f", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Elena Anaya", "character": "Vera Cruz", "id": 3623, "credit_id": "52fe46a4c3a368484e09be43", "cast_id": 2, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 1}, {"name": "Marisa Paredes", "character": "Marilia", "id": 954, "credit_id": "52fe46a4c3a368484e09bea9", "cast_id": 24, "profile_path": "/vUCGRyx1IjRvlNekMkqoFQAf8sD.jpg", "order": 2}, {"name": "Jan Cornet", "character": "Vicente", "id": 440879, "credit_id": "52fe46a4c3a368484e09be57", "cast_id": 6, "profile_path": "/mSvPtwX5nP9gkoXsXtTHripMU4G.jpg", "order": 3}, {"name": "Roberto \u00c1lamo", "character": "Zeca", "id": 225017, "credit_id": "52fe46a4c3a368484e09be61", "cast_id": 9, "profile_path": "/v6Q86u8PXIsDZzKrHhTODDoUFOI.jpg", "order": 4}, {"name": "Eduard Fern\u00e1ndez", "character": "Fulgencio", "id": 87015, "credit_id": "52fe46a4c3a368484e09be65", "cast_id": 10, "profile_path": "/amJKpgzBvEr9d6WIuT1MjADzDZT.jpg", "order": 5}, {"name": "Jos\u00e9 G\u00f3mez", "character": "Presidente del Instituto de Biotecnolog\u00eda", "id": 858618, "credit_id": "52fe46a4c3a368484e09be69", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Blanca Su\u00e1rez", "character": "Norma Ledgard", "id": 106817, "credit_id": "52fe46a4c3a368484e09be53", "cast_id": 5, "profile_path": "/cJuwbx6SEdBEWqBUHZoZysyiIm8.jpg", "order": 7}, {"name": "Susi S\u00e1nchez", "character": "Madre de Vicente", "id": 101401, "credit_id": "52fe46a4c3a368484e09be6d", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "B\u00e1rbara Lennie", "character": "Cristina", "id": 724188, "credit_id": "52fe46a4c3a368484e09be71", "cast_id": 13, "profile_path": "/gPrMindirpIXTP38sBQgpQ9W9PT.jpg", "order": 9}, {"name": "Fernando Cayo", "character": "M\u00e9dico", "id": 51902, "credit_id": "52fe46a4c3a368484e09be75", "cast_id": 14, "profile_path": "/oDbXZgeh03v6OzgeIcrk0YZ556L.jpg", "order": 10}, {"name": "Chema Ruiz", "character": "Polic\u00eda", "id": 102226, "credit_id": "52fe46a4c3a368484e09bead", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Buika", "character": "Cantante", "id": 1356487, "credit_id": "53fa02d4c3a3687358003117", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Ana Mena", "character": "Norma joven", "id": 1275996, "credit_id": "53fa0364c3a368734f002f42", "cast_id": 28, "profile_path": "/57RjSGXoqat9xobplgrP3GWm1Jm.jpg", "order": 13}, {"name": "Teresa Manresa", "character": "Casilda Efraiz", "id": 1356491, "credit_id": "53fa03c80e0a267a72005121", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Fernando Iglesias", "character": "", "id": 1356494, "credit_id": "53fa04b90e0a267a750051a8", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Agust\u00edn Almod\u00f3var", "character": "Agust\u00edn", "id": 952, "credit_id": "53fa058c0e0a267a66005038", "cast_id": 32, "profile_path": "/ooCA6ucXzgTZ1NhiwFNnzW7uRsH.jpg", "order": 17}, {"name": "Miguel Almod\u00f3var", "character": "Hijo de Agust\u00edn", "id": 1356510, "credit_id": "53fa05f80e0a267a66005047", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Marta R. Mahou", "character": "Profesora de Yoga en TV", "id": 1356515, "credit_id": "53fa06530e0a267a750051e8", "cast_id": 34, "profile_path": null, "order": 19}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe46a4c3a368484e09be49", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 6.9, "runtime": 117}, "14160": {"poster_path": "/eqpys83jPDAieV3NOIrW8T5lhHF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 731342744, "overview": "After a lifetime of dreaming of traveling the world, 78-year-old homebody Carl flies away on an unbelievable adventure with Russell, an 8-year-old Wilderness Explorer, unexpectedly in tow. Together, the unlikely pair embarks on a thrilling odyssey full of jungle beasts and rough terrain.", "video": false, "id": 14160, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Up", "tagline": "Fly Up to Venezuela", "vote_count": 2311, "homepage": "http://disney.go.com/disneypictures/up/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1049413", "adult": false, "backdrop_path": "/fI3ucpgaVKOUcQ82vhgWmWuLlg2.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2009-05-13", "popularity": 2.98675180448531, "original_title": "Up", "budget": 175000000, "cast": [{"name": "Ed Asner", "character": "Carl Fredricksen (voice)", "id": 68812, "credit_id": "52fe45d19251416c75063875", "cast_id": 4, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 0}, {"name": "Christopher Plummer", "character": "Charles Muntz (voice)", "id": 290, "credit_id": "52fe45d19251416c75063879", "cast_id": 5, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 1}, {"name": "Jordan Nagai", "character": "Russell (voice)", "id": 80676, "credit_id": "52fe45d19251416c7506387d", "cast_id": 6, "profile_path": "/cE0ylwj9U3vii34XQGFE3zk8n80.jpg", "order": 2}, {"name": "Bob Peterson", "character": "Dug / Alpha (voice)", "id": 10, "credit_id": "52fe45d19251416c75063881", "cast_id": 7, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 3}, {"name": "Delroy Lindo", "character": "Beta (voice)", "id": 18792, "credit_id": "52fe45d19251416c75063885", "cast_id": 8, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 4}, {"name": "Jerome Ranft", "character": "Gamma (voice)", "id": 7960, "credit_id": "52fe45d19251416c750638ad", "cast_id": 19, "profile_path": "/pmiQZq5JEhCjhdsIuMaP6Fkt0e9.jpg", "order": 5}, {"name": "John Ratzenberger", "character": "Construction Foreman Tom (voice)", "id": 7907, "credit_id": "52fe45d19251416c75063889", "cast_id": 10, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 6}, {"name": "David Kaye", "character": "Newsreel Announcer (voice)", "id": 84490, "credit_id": "52fe45d19251416c7506388d", "cast_id": 11, "profile_path": "/iNZ54XcY5KvlJxjAFeEBOql4BCz.jpg", "order": 7}, {"name": "Elie Docter", "character": "Young Ellie (voice)", "id": 84491, "credit_id": "52fe45d19251416c75063891", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Jeremy Leary", "character": "Young Carl (voice)", "id": 84492, "credit_id": "52fe45d19251416c75063895", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Mickie McGowan", "character": "Police Officer Edith (voice)", "id": 84493, "credit_id": "52fe45d19251416c75063899", "cast_id": 14, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 10}, {"name": "Danny Mann", "character": "Construction Worker Steve (voice)", "id": 52699, "credit_id": "52fe45d19251416c7506389d", "cast_id": 15, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 11}, {"name": "Donald Fullilove", "character": "Nurse George (voice)", "id": 84494, "credit_id": "52fe45d19251416c750638a1", "cast_id": 16, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 12}, {"name": "Jess Harnell", "character": "Nurse AJ (voice)", "id": 84495, "credit_id": "52fe45d19251416c750638a5", "cast_id": 17, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 13}, {"name": "Josh Cooley", "character": "Omega (voice)", "id": 84496, "credit_id": "52fe45d19251416c750638a9", "cast_id": 18, "profile_path": "/dgzQ40iedoCTzWYsqftYtdcrTxb.jpg", "order": 14}, {"name": "Pete Docter", "character": "Campmaster Strauch (voice)", "id": 12890, "credit_id": "52fe45d19251416c750638b1", "cast_id": 20, "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "order": 15}, {"name": "Mark Andrews", "character": "Additional Voices (voice)", "id": 126638, "credit_id": "52fe45d19251416c750638b5", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Bob Bergen", "character": "Additional Voices (voice)", "id": 78317, "credit_id": "52fe45d19251416c750638b9", "cast_id": 22, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 17}, {"name": "Brenda Chapman", "character": "Additional Voices (voice)", "id": 59803, "credit_id": "52fe45d19251416c750638bd", "cast_id": 23, "profile_path": "/3wEdiMLQObBcBbtg131ZRQG2hfK.jpg", "order": 18}, {"name": "Emma Coats", "character": "Additional Voices (voice)", "id": 1266117, "credit_id": "52fe45d19251416c750638c1", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "John Cygan", "character": "Additional Voices (voice)", "id": 167295, "credit_id": "52fe45d19251416c750638c5", "cast_id": 25, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 20}, {"name": "Paul Eiding", "character": "Additional Voices (voice)", "id": 86006, "credit_id": "52fe45d19251416c750638c9", "cast_id": 26, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 21}, {"name": "Tony Fucile", "character": "Additional Voices (voice)", "id": 1260745, "credit_id": "52fe45d19251416c750638cd", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Teresa Ganzel", "character": "Additional Voices (voice)", "id": 117081, "credit_id": "52fe45d19251416c750638d1", "cast_id": 28, "profile_path": "/4cIwealxv1bizPJks34Gfk7okBF.jpg", "order": 23}, {"name": "Sherry Lynn", "character": "Additional Voices (voice)", "id": 214701, "credit_id": "52fe45d19251416c750638d5", "cast_id": 29, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 24}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "52fe45d19251416c750638d9", "cast_id": 30, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 25}, {"name": "Teddy Newton", "character": "Additional Voices (voice)", "id": 59357, "credit_id": "52fe45d19251416c750638dd", "cast_id": 31, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 26}, {"name": "Jeff Pidgeon", "character": "Additional Voices (voice)", "id": 7882, "credit_id": "52fe45d19251416c750638e1", "cast_id": 32, "profile_path": "/yLddkg5HcgbJg00cS13GVBnP0HY.jpg", "order": 27}, {"name": "Valerie LaPointe", "character": "Additional Voices (voice)", "id": 225978, "credit_id": "52fe45d19251416c750638e5", "cast_id": 33, "profile_path": null, "order": 28}, {"name": "Jan Rabson", "character": "Additional Voices (voice)", "id": 157626, "credit_id": "52fe45d19251416c750638e9", "cast_id": 34, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 29}, {"name": "Bob Scott", "character": "Additional Voices (voice)", "id": 954958, "credit_id": "52fe45d19251416c750638ed", "cast_id": 35, "profile_path": null, "order": 30}, {"name": "Sebastian Warholm", "character": "Russell (uncredited)", "id": 1266119, "credit_id": "52fe45d19251416c750638f1", "cast_id": 36, "profile_path": null, "order": 31}], "directors": [{"name": "Pete Docter", "department": "Directing", "job": "Director", "credit_id": "52fe45d19251416c75063865", "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "id": 12890}, {"name": "Bob Peterson", "department": "Directing", "job": "Director", "credit_id": "52fe45d19251416c7506386b", "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "id": 10}], "vote_average": 7.3, "runtime": 96}, "14161": {"poster_path": "/5tIW9nTuxxy8iXSvsKJqFDVZpyg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 769653595, "overview": "Dr. Adrian Helmsley, part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms, learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population, the entire race is doomed. Meanwhile, writer Jackson Curtis stumbles on the same information. While the world's leaders race to build \"arks\" to escape the impending cataclysm, Curtis struggles to find a way to save his family. Meanwhile, volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.", "video": false, "id": 14161, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "2012", "tagline": "We Were Warned.", "vote_count": 2612, "homepage": "http://www.sonypictures.com/movies/2012", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bo", "name": ""}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1190080", "adult": false, "backdrop_path": "/ywxrdkfbr8Dg3SBW2gi4kC59qOb.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Farewell Productions", "id": 10905}, {"name": "The Mark Gordon Company", "id": 1557}], "release_date": "2009-10-10", "popularity": 1.84398584426232, "original_title": "2012", "budget": 200000000, "cast": [{"name": "John Cusack", "character": "Jackson Curtis", "id": 3036, "credit_id": "52fe45d29251416c75063953", "cast_id": 1, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Amanda Peet", "character": "Kate Curtis", "id": 2956, "credit_id": "52fe45d29251416c75063957", "cast_id": 2, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 1}, {"name": "Chiwetel Ejiofor", "character": "Adrian Helmsley", "id": 5294, "credit_id": "52fe45d29251416c7506395b", "cast_id": 3, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 2}, {"name": "Thandie Newton", "character": "Laura Wilson", "id": 9030, "credit_id": "52fe45d29251416c75063969", "cast_id": 7, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Carl Anheuser", "id": 17485, "credit_id": "52fe45d29251416c7506397d", "cast_id": 12, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "Thomas McCarthy", "character": "Dr. Gordon Silberman", "id": 17867, "credit_id": "52fe45d29251416c75063979", "cast_id": 11, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 5}, {"name": "Woody Harrelson", "character": "Charlie Frost", "id": 57755, "credit_id": "52fe45d29251416c7506396d", "cast_id": 8, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 6}, {"name": "Danny Glover", "character": "President Wilson", "id": 2047, "credit_id": "52fe45d29251416c7506395f", "cast_id": 4, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 7}, {"name": "Liam James", "character": "Noah Curtis", "id": 83852, "credit_id": "52fe45d29251416c75063971", "cast_id": 9, "profile_path": "/heAbNsKPFDCFIrzy7zDeZm6w2xd.jpg", "order": 8}, {"name": "Morgan Lily", "character": "Lilly Curtis", "id": 74227, "credit_id": "52fe45d29251416c75063975", "cast_id": 10, "profile_path": "/iYa30gYkaxXLsGvUZ9WhieQw2xo.jpg", "order": 9}, {"name": "Zlatko Buric", "character": "Yuri Karpov", "id": 31960, "credit_id": "52fe45d29251416c75063981", "cast_id": 13, "profile_path": "/eMqFfRzrtHuQVq8jDQE1R6C5SMJ.jpg", "order": 10}, {"name": "Beatrice Rosen", "character": "Tamara", "id": 101014, "credit_id": "52fe45d29251416c75063985", "cast_id": 14, "profile_path": "/897MnsgQUwXuN0OfMwY19BMFULl.jpg", "order": 11}, {"name": "Johann Urb", "character": "Sasha", "id": 101017, "credit_id": "52fe45d29251416c75063999", "cast_id": 19, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 12}, {"name": "John Billingsley", "character": "Professor Frederic West", "id": 21722, "credit_id": "52fe45d29251416c75063995", "cast_id": 18, "profile_path": "/fHQ6ecMufxLwUAbN3dX3yxFAn5d.jpg", "order": 13}, {"name": "Chin Han", "character": "Tenzin", "id": 101015, "credit_id": "52fe45d29251416c75063989", "cast_id": 15, "profile_path": "/xvMCVDvrQ2WlAB2LmkG6HAzlYag.jpg", "order": 14}, {"name": "Osric Chau", "character": "Nima", "id": 101016, "credit_id": "52fe45d29251416c7506398d", "cast_id": 16, "profile_path": "/v3y3W0Xelyy4ge87S1YfcmpXcgO.jpg", "order": 15}, {"name": "Lisa Lu", "character": "Grandma Sonam", "id": 86633, "credit_id": "52fe45d29251416c75063991", "cast_id": 17, "profile_path": "/cMmnEKqgUNrZq5v82nTqnE7m5KY.jpg", "order": 16}, {"name": "Blu Mankuma", "character": "Harry Helmsley", "id": 44150, "credit_id": "52fe45d29251416c750639a1", "cast_id": 21, "profile_path": "/uazVph0ws1sQvxkE7PmNDQMXIE4.jpg", "order": 17}, {"name": "George Segal", "character": "Tony Delgatto", "id": 18364, "credit_id": "52fe45d29251416c7506399d", "cast_id": 20, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 18}, {"name": "Stephen McHattie", "character": "Captain Michaels", "id": 230, "credit_id": "52fe45d29251416c750639a9", "cast_id": 24, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 19}, {"name": "Jimi Mistry", "character": "Dr. Satnam Tsurutani", "id": 16756, "credit_id": "52fe45d29251416c750639a5", "cast_id": 22, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 20}, {"name": "Ryan McDonald", "character": "Scotty", "id": 153516, "credit_id": "52fe45d29251416c750639b9", "cast_id": 27, "profile_path": "/v5tU21dnVVdBHUyQjmba1swoGpf.jpg", "order": 21}, {"name": "Alexandre Haussmann", "character": "Alec", "id": 967933, "credit_id": "52fe45d29251416c75063a1d", "cast_id": 46, "profile_path": "/r08ILrtm94QvPBRf9DEVCoBwKEW.jpg", "order": 22}, {"name": "John Mee", "character": "Angry Billionaire", "id": 1205803, "credit_id": "52fe45d29251416c75063a21", "cast_id": 47, "profile_path": null, "order": 23}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe45d29251416c75063965", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.6, "runtime": 158}, "227156": {"poster_path": "/4g19qQ4pfQz6nlVctA0q3y7Dieg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66980456, "overview": "The haunting story of 'The Giver' centers on Jonas (Brenton Thwaites), a young man who lives in a seemingly ideal, if colorless, world of conformity and contentment. Yet as he begins to spend time with The Giver (Jeff Bridges), who is the sole keeper of all the community\u2019s memories, Jonas quickly begins to discover the dark and deadly truths of his community\u2019s secret past. With this newfound power of knowledge, he realizes that the stakes are higher than imagined \u2013 a matter of life and death for himself and those he loves most. At extreme odds, Jonas knows that he must escape their world to protect them all \u2013 a challenge that no one has ever succeeded at before.", "video": false, "id": 227156, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "The Giver", "tagline": "You can make things better.", "vote_count": 364, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0435651", "adult": false, "backdrop_path": "/9heGSxkxgVCo1yScmkIgvLL2ytD.jpg", "production_companies": [{"name": "Tonik Productions", "id": 17145}, {"name": "The Weinstein Company", "id": 308}, {"name": "Walden Media", "id": 10221}, {"name": "As Is Productions", "id": 37411}], "release_date": "2014-08-11", "popularity": 1.51293689606356, "original_title": "The Giver", "budget": 25000000, "cast": [{"name": "Jeff Bridges", "character": "The Giver", "id": 1229, "credit_id": "52fe4e979251416c7515baa1", "cast_id": 7, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Chief Elder", "id": 5064, "credit_id": "52fe4e979251416c7515ba99", "cast_id": 5, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Brenton Thwaites", "character": "Jonas", "id": 1017347, "credit_id": "5331c2f3c3a3686a95002037", "cast_id": 10, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 2}, {"name": "Odeya Rush", "character": "Fiona", "id": 1121786, "credit_id": "5331c30bc3a3686a9d00206b", "cast_id": 12, "profile_path": "/f9PSkyIjHUE5I5riVRZrUDav4YM.jpg", "order": 3}, {"name": "Alexander Skarsg\u00e5rd", "character": "Jonas's father", "id": 28846, "credit_id": "52fe4e979251416c7515ba91", "cast_id": 3, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 4}, {"name": "Katie Holmes", "character": "Jonas' mother", "id": 3897, "credit_id": "52fe4e979251416c7515ba9d", "cast_id": 6, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 5}, {"name": "Taylor Swift", "character": "Rosemary", "id": 212208, "credit_id": "52fe4e979251416c7515ba95", "cast_id": 4, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 6}, {"name": "Cameron Monaghan", "character": "Asher", "id": 37089, "credit_id": "5331c2e8c3a3686a86001fa4", "cast_id": 9, "profile_path": "/rmzBfqHRUnJjXCL6l7VH8FmVpZu.jpg", "order": 7}, {"name": "Katharina Damm", "character": "Nurturer", "id": 1274509, "credit_id": "5331c301c3a3686a95002039", "cast_id": 11, "profile_path": "/eBUOGjlqrWTkqOZNIsFXNePcrNX.jpg", "order": 8}, {"name": "Emma Tremblay", "character": "Lily", "id": 1272862, "credit_id": "52fe4e979251416c7515baa5", "cast_id": 8, "profile_path": "/p6sRtFi1cNmR2qOXWX6buzDTFIr.jpg", "order": 9}, {"name": "Alexander Jillings", "character": "Gabriel 12 Months", "id": 1412927, "credit_id": "54b45d7792514173690032b0", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "James Jillings", "character": "Gabriel 12 Months", "id": 1412928, "credit_id": "54b45df3c3a36805d3002748", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Jordan Nicholas Smal", "character": "Gabriel 3 Months", "id": 1412929, "credit_id": "54b45e8b92514107e0006602", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Saige Fernandes", "character": "Gabriel 6 Months", "id": 1412930, "credit_id": "54b45ec7c3a3687a630014e9", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Renate Stuurman", "character": "Dinah", "id": 1412934, "credit_id": "54b45feac3a368028700219d", "cast_id": 36, "profile_path": "/7eS6Yj9uLuchhWyCTw0ilcftN57.jpg", "order": 14}, {"name": "Vanessa Cooke", "character": "Elder", "id": 1084896, "credit_id": "54b46225c3a368028700221b", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "John Whiteley", "character": "Elder", "id": 129333, "credit_id": "54b4631ac3a36809400078f3", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Kira Wilkinson", "character": "Chief Elder's Assistant", "id": 1412940, "credit_id": "54b4638292514114a2004b35", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Meganne Young", "character": "Bride", "id": 1412941, "credit_id": "54b4657a9251417369003431", "cast_id": 40, "profile_path": "/iRWXuCcktwCxGPPldMsyGij3bEt.jpg", "order": 18}, {"name": "Thabo Rametsi", "character": "Robbie", "id": 1412942, "credit_id": "54b46613c3a368210c003fd3", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "Vaughn Lucas", "character": "Security Officer", "id": 1412943, "credit_id": "54b466c6c3a368094e007cec", "cast_id": 42, "profile_path": null, "order": 20}, {"name": "Jaime Coue", "character": "Vietcong Sniper", "id": 1412944, "credit_id": "54b467bac3a368783b000c22", "cast_id": 43, "profile_path": null, "order": 21}, {"name": "Jefferson Mays", "character": "Community (voice)", "id": 1218235, "credit_id": "54b468f29251412ffc002185", "cast_id": 44, "profile_path": "/6kO6OeqD2tkka15pHrVEglUMxmI.jpg", "order": 22}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe4e979251416c7515ba87", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.4, "runtime": 94}, "169813": {"poster_path": "/dZ2h9AiBPNwz2CeiEoJQ03WiL8J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1600000, "overview": "A 20-something supervising staff member of a residential treatment facility navigates the troubled waters of that world alongside her co-worker and longtime boyfriend.", "video": false, "id": 169813, "genres": [{"id": 18, "name": "Drama"}], "title": "Short Term 12", "tagline": "", "vote_count": 108, "homepage": "http://www.shortterm12.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2370248", "adult": false, "backdrop_path": "/ddlMODFJUjvhzrymuW7O7KPuhVL.jpg", "production_companies": [{"name": "Traction Media", "id": 2294}, {"name": "Animal Kingdom", "id": 26995}], "release_date": "2013-08-23", "popularity": 1.09715190658288, "original_title": "Short Term 12", "budget": 0, "cast": [{"name": "Brie Larson", "character": "Grace", "id": 60073, "credit_id": "52fe4ceac3a36847f82447d5", "cast_id": 3, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 0}, {"name": "John Gallagher Jr.", "character": "Mason", "id": 17487, "credit_id": "52fe4ceac3a36847f82447d9", "cast_id": 4, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 1}, {"name": "Kaitlyn Dever", "character": "Jayden", "id": 481337, "credit_id": "52fe4ceac3a36847f82447dd", "cast_id": 5, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 2}, {"name": "Melora Walters", "character": "Dr. Hendler", "id": 4766, "credit_id": "52fe4ceac3a36847f82447e1", "cast_id": 6, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 3}, {"name": "Stephanie Beatriz", "character": "Jessica", "id": 968367, "credit_id": "52fe4ceac3a36847f82447e5", "cast_id": 7, "profile_path": "/aDERKj5dwtRzGPAYTPp9BPiqfHT.jpg", "order": 4}, {"name": "Rami Malek", "character": "Nate", "id": 17838, "credit_id": "52fe4ceac3a36847f82447e9", "cast_id": 8, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 5}, {"name": "Alex Calloway", "character": "Sammy", "id": 1200862, "credit_id": "52fe4ceac3a36847f82447ed", "cast_id": 9, "profile_path": "/cXzSQaK481iRJVcJhd1QXVjyuF6.jpg", "order": 6}, {"name": "Kevin Hernandez", "character": "Luis", "id": 999329, "credit_id": "52fe4ceac3a36847f82447f1", "cast_id": 10, "profile_path": "/lz0H1XbddF4jOwuoIi2IuV1bs3A.jpg", "order": 7}, {"name": "Lydia Du Veaux", "character": "Kendra", "id": 1200863, "credit_id": "52fe4ceac3a36847f82447f5", "cast_id": 11, "profile_path": "/dVK3pf7JBhEhZq1NDxqnpLk2wKT.jpg", "order": 8}, {"name": "Keith Stanfield", "character": "Marcus", "id": 1200864, "credit_id": "52fe4ceac3a36847f82447f9", "cast_id": 12, "profile_path": "/iqn7EWoEjqdzcaOJQ1DOYt8mpiy.jpg", "order": 9}, {"name": "Frantz Turner", "character": "Jack", "id": 116536, "credit_id": "52fe4ceac3a36847f82447fd", "cast_id": 13, "profile_path": "/bcU0XFsc5WNMnd60xLZav66vM8I.jpg", "order": 10}, {"name": "Diana Maria Riva", "character": "Nurse Beth", "id": 34488, "credit_id": "52fe4ceac3a36847f8244801", "cast_id": 14, "profile_path": "/pVK8NLnPyoGZ6eOHkSEZClqDx4I.jpg", "order": 11}, {"name": "Harold Cannon", "character": "Mason's Dad", "id": 109626, "credit_id": "52fe4ceac3a36847f8244805", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Silvia Curiel", "character": "Mason's Mom", "id": 945426, "credit_id": "52fe4ceac3a36847f8244809", "cast_id": 16, "profile_path": "/jPbaQ6ej6WnqkheUwhubnQA9fJk.jpg", "order": 13}, {"name": "Bran'dee Allen", "character": "Shawnta", "id": 1200866, "credit_id": "52fe4ceac3a36847f8244811", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Danny Roper", "character": "David", "id": 1410284, "credit_id": "54ad4239c3a3684091004cae", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Elyssa Gutierrez", "character": "Anna", "id": 1410285, "credit_id": "54ad4487c3a3680c2100beb7", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Garryson Zamora", "character": "Thom", "id": 1410286, "credit_id": "54ad44f2c3a3687769000127", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Michael Marto", "character": "Connor", "id": 1410287, "credit_id": "54ad458dc3a3680c3000bc34", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Patricia Barrett", "character": "Tracy", "id": 1410289, "credit_id": "54ad4b409251415679005e3e", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Tanya Marie A. Bitanga", "character": "Nikki", "id": 1410290, "credit_id": "54ad4b88925141737700005f", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Zoe Wilkens", "character": "Spring", "id": 1410293, "credit_id": "54ad4bd59251417377000069", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Angel Amaral", "character": "Trevor", "id": 1305390, "credit_id": "54ad4d80c3a3684091004da5", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Arnold Barrera", "character": "Mariachi Band Member, Trumpet", "id": 1410297, "credit_id": "54ad500592514173770000f1", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Joseph Bruley", "character": "Mariachi Band Member, Guitar", "id": 1410324, "credit_id": "54ad56e092514116dc00171e", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Fred Herrera", "character": "Mariachi Band Member, Guitarron", "id": 1410325, "credit_id": "54ad57709251413258000061", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Shika Moran", "character": "Guest at Mason's Parents' Party", "id": 1410326, "credit_id": "54ad57fe925141183c0016b5", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Nikki Chapman", "character": "Guest at Mason's Parents' Party", "id": 1410329, "credit_id": "54ad595ec3a36806ce00010f", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Fay DeLaCruz", "character": "Guest at Mason's Parents' Party", "id": 1410331, "credit_id": "54ad59adc3a3682fd5000004", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Cameron Gore", "character": "Guest at Mason's Parents' Party", "id": 1410334, "credit_id": "54ad5a23c3a3682fd5000017", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Anthony Puentes", "character": "Guest at Mason's Parents' Party", "id": 1410336, "credit_id": "54ad5a5cc3a3682fdf000017", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Veronica Puentes", "character": "Guest at Mason's Parents' Party", "id": 1410338, "credit_id": "54ad5a959251414b5700001c", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Laura Macias", "character": "Guest at Mason's Parents' Party", "id": 1410339, "credit_id": "54ad5ad6c3a3682fcc000044", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Ana Shiravi", "character": "Guest at Mason's Parents' Party", "id": 1410341, "credit_id": "54ad5b31c3a3682fcf000041", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Mohammad Shiravi", "character": "Guest at Mason's Parents' Party", "id": 1410343, "credit_id": "54ad5bba9251414b6000004e", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Edward Goldstein", "character": "Guest at Mason's Parents' Party", "id": 1410344, "credit_id": "54ad5bf7c3a3682fc6000068", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Etta Goldstein", "character": "Guest at Mason's Parents' Party", "id": 1410347, "credit_id": "54ad5c3e9251414b5a00004f", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Brett Goldstein", "character": "Guest at Mason's Parents' Party", "id": 1410349, "credit_id": "54ad5cae9251414b4d000071", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "Alexandra Estrada", "character": "Guest at Mason's Parents' Party", "id": 1410352, "credit_id": "54ad5d87c3a3682fcc0000b0", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Michelle Nordahl", "character": "Guest at Mason's Parents' Party", "id": 1410354, "credit_id": "54ad5e7a9251414b4d0000b5", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Jared Callahan", "character": "Guest at Mason's Parents' Party", "id": 1410361, "credit_id": "54ad5ef19251414e400000a0", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Joel P. West", "character": "Guest at Mason's Parents' Party", "id": 1302430, "credit_id": "54ad5fa9c3a368430b000061", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Jessica Nordahl", "character": "Guest at Mason's Parents' Party", "id": 1410368, "credit_id": "54ad5fd59251414b5a0000da", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Andrea Macias", "character": "Guest at Mason's Parents' Party", "id": 1410369, "credit_id": "54ad606b9251414b5d0000f9", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Kaily McCoy", "character": "Guest at Mason's Parents' Party", "id": 1410370, "credit_id": "54ad60d89251416b64000014", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Thaddeus McRae", "character": "Guest at Mason's Parents' Party", "id": 1410371, "credit_id": "54ad611bc3a3685373000017", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Kenny Laubbacher", "character": "Guest at Mason's Parents' Party", "id": 1410372, "credit_id": "54ad61bc9251416b6700002b", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "Pamela Luna", "character": "Guest at Mason's Parents' Party", "id": 1410373, "credit_id": "54ad61f89251416b76000036", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Valentina I. Valentini", "character": "Guest at Mason's Parents' Party", "id": 1410374, "credit_id": "54ad624cc3a368537b000044", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Brad Kester", "character": "Guest at Mason's Parents' Party", "id": 1410376, "credit_id": "54ad63389251416b7000005d", "cast_id": 69, "profile_path": null, "order": 50}, {"name": "James Abraham", "character": "Guest at Mason's Parents' Party", "id": 1410378, "credit_id": "54ad63c99251416b6c00007f", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Angelina Assereto", "character": "Guest at Mason's Parents' Party", "id": 1025968, "credit_id": "54ad6502c3a368536d0000b0", "cast_id": 71, "profile_path": "/qePNBNokzs1ysjHTe26YG5w5MuB.jpg", "order": 52}, {"name": "Merrily Cretton", "character": "Guest at Mason's Parents' Party", "id": 1410379, "credit_id": "54ad652b9251416b640000c3", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Spring Cretton", "character": "Guest at Mason's Parents' Party", "id": 1410380, "credit_id": "54ad6589c3a36802f1000002", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Patrick James", "character": "Guest at Mason's Parents' Party", "id": 1410382, "credit_id": "54ad66109251416b70000104", "cast_id": 74, "profile_path": null, "order": 55}, {"name": "Christopher Jun", "character": "Guest at Mason's Parents' Party", "id": 1410383, "credit_id": "54ad671d9251416b670000fa", "cast_id": 75, "profile_path": "/x6FXN3MfzUXlHq6D9kAdYqLpWqj.jpg", "order": 56}], "directors": [{"name": "Destin Cretton", "department": "Directing", "job": "Director", "credit_id": "52fe4ceac3a36847f82447cb", "profile_path": null, "id": 1144604}], "vote_average": 8.1, "runtime": 96}, "227159": {"poster_path": "/zRkLCOx7o9tjPYb9s7u6mpw8VOs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 106645357, "overview": "Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.", "video": false, "id": 227159, "genres": [{"id": 35, "name": "Comedy"}], "title": "Horrible Bosses 2", "tagline": "New Crime. Same Tools.", "vote_count": 385, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zU3dVVBa3JW1nQVUsaFM0BeTnK.jpg", "id": 280588, "name": "Horrible Bosses Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2170439", "adult": false, "backdrop_path": "/7OluTl9LoaMDZ2MVdrFVuU2os09.jpg", "production_companies": [{"name": "RatPac Entertainment", "id": 28732}, {"name": "BenderSpink", "id": 6363}, {"name": "New Line Cinema", "id": 12}], "release_date": "2014-11-26", "popularity": 7.01311796191906, "original_title": "Horrible Bosses 2", "budget": 42000000, "cast": [{"name": "Jason Bateman", "character": "Nick Hendricks", "id": 23532, "credit_id": "52fe4e979251416c7515bac7", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Jason Sudeikis", "character": "Kurt Buckman", "id": 58224, "credit_id": "52fe4e979251416c7515bac3", "cast_id": 3, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 1}, {"name": "Charlie Day", "character": "Dale Arbus", "id": 95101, "credit_id": "52fe4e979251416c7515bacb", "cast_id": 5, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 2}, {"name": "Jennifer Aniston", "character": "Dr. Julia Harris, D.D.S.", "id": 4491, "credit_id": "5479c408c3a3685c4b0024ba", "cast_id": 8, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 3}, {"name": "Kevin Spacey", "character": "Dave Harken", "id": 1979, "credit_id": "5479c44dc3a36803df000015", "cast_id": 10, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 4}, {"name": "Jamie Foxx", "character": "Dean \"MF\" Jones", "id": 134, "credit_id": "5479c43fc3a3685c450024c9", "cast_id": 9, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 5}, {"name": "Chris Pine", "character": "Rex Hanson", "id": 62064, "credit_id": "52fe4e979251416c7515bacf", "cast_id": 6, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 6}, {"name": "Christoph Waltz", "character": "Bert Hanson", "id": 27319, "credit_id": "53c50ba3c3a368246e001384", "cast_id": 7, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 7}, {"name": "Jonathan Banks", "character": "Detective Hatcher", "id": 783, "credit_id": "547fcac69251416e7e000aea", "cast_id": 11, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 8}, {"name": "Lindsay Sloane", "character": "Stacy Arbus", "id": 41662, "credit_id": "547fcae2c3a36829a7000b3c", "cast_id": 12, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 9}, {"name": "Keegan-Michael Key", "character": "Mike", "id": 298410, "credit_id": "547fcaf29251416e78000af2", "cast_id": 13, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 10}, {"name": "Kelly Stables", "character": "Rachel", "id": 107791, "credit_id": "547fcb06c3a36829ab000afe", "cast_id": 14, "profile_path": "/vw7kfaITPSFNwQrDMrubNOt7uuZ.jpg", "order": 11}, {"name": "Jerry Lambert", "character": "Skip", "id": 61113, "credit_id": "54e7b8ae9251412eb800069c", "cast_id": 16, "profile_path": "/j6jT5Zif7C5lmwberf47IiuwrOD.jpg", "order": 12}, {"name": "Sam Richardson", "character": "Producer", "id": 1429453, "credit_id": "54e7b9539251412eb10006da", "cast_id": 17, "profile_path": "/29V5uw2sgJexqKGm9qQ54uXlSkx.jpg", "order": 13}, {"name": "Brianne Howey", "character": "Candy", "id": 132312, "credit_id": "54e7baffc3a36836d90006a7", "cast_id": 18, "profile_path": "/znB9fvTAj1Q9hRv32ocJljZ2Wr3.jpg", "order": 14}, {"name": "Lidia Porto", "character": "Lupe", "id": 180527, "credit_id": "54e7bd719251412ebb000776", "cast_id": 19, "profile_path": "/pf93ztgaIlecCLhLd0t4yId8Dvb.jpg", "order": 15}, {"name": "Jaye Razor", "character": "Ray", "id": 1429456, "credit_id": "54e7bf07c3a36836e40007fd", "cast_id": 20, "profile_path": "/9SjQ4Fx7iKcjKrcL8P7mitPeX6P.jpg", "order": 16}], "directors": [{"name": "Sean Anders", "department": "Directing", "job": "Director", "credit_id": "52fe4e979251416c7515bab9", "profile_path": "/9PsLZSfLinkQJMFzxLp0pKMWkt5.jpg", "id": 74619}], "vote_average": 6.3, "runtime": 108}, "38745": {"poster_path": "/7LipqR0RSfPYzZJf2TajeI5598M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237382724, "overview": "Travel writer Lemuel Gulliver takes an assignment in Bermuda, but ends up on the island of Liliput, where he towers over its tiny citizens.", "video": false, "id": 38745, "genres": [{"id": 35, "name": "Comedy"}], "title": "Gulliver's Travels", "tagline": "Something big is going down.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1320261", "adult": false, "backdrop_path": "/ijxUVmcBPf5j4osEtKebB4cSWF1.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2010-12-25", "popularity": 1.165276893918, "original_title": "Gulliver's Travels", "budget": 112000000, "cast": [{"name": "Emily Blunt", "character": "Princess Mary", "id": 5081, "credit_id": "52fe46d99251416c91061c69", "cast_id": 4, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Jason Segel", "character": "Horatio", "id": 41088, "credit_id": "52fe46d99251416c91061c6d", "cast_id": 5, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Jack Black", "character": "Lemuel Gulliver", "id": 70851, "credit_id": "52fe46d99251416c91061c71", "cast_id": 6, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 2}, {"name": "Amanda Peet", "character": "Darcy Silverman", "id": 2956, "credit_id": "52fe46d99251416c91061c75", "cast_id": 7, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 3}, {"name": "Chris O'Dowd", "character": "General Edward", "id": 40477, "credit_id": "52fe46d99251416c91061c79", "cast_id": 8, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 4}, {"name": "Billy Connolly", "character": "King Theodore", "id": 9188, "credit_id": "52fe46d99251416c91061c7d", "cast_id": 9, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 5}, {"name": "Catherine Tate", "character": "Queen Isabel", "id": 47646, "credit_id": "52fe46d99251416c91061c81", "cast_id": 11, "profile_path": "/tQunVpag1mJy5LWQ33eDexBWDwH.jpg", "order": 6}, {"name": "James Corden", "character": "Jinks", "id": 55466, "credit_id": "52fe46d99251416c91061c85", "cast_id": 12, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 7}, {"name": "Emmanuel Quatra", "character": "King Leopold", "id": 289628, "credit_id": "52fe46d99251416c91061c89", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Olly Alexander", "character": "Prince August", "id": 89823, "credit_id": "52fe46d99251416c91061c8d", "cast_id": 14, "profile_path": "/11MOco4DycbgPxRtYKa1Hwhe9oC.jpg", "order": 9}, {"name": "Richard Laing", "character": "Nigel Travel Writer", "id": 40687, "credit_id": "52fe46d99251416c91061c91", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "David Sterne", "character": "Foreman", "id": 117654, "credit_id": "52fe46d99251416c91061c95", "cast_id": 16, "profile_path": "/vZaOmbLpbh3rbDa3CGoj7cBkotI.jpg", "order": 11}, {"name": "Stewart Scudamore", "character": "Blefuscian Captain", "id": 25095, "credit_id": "52fe46d99251416c91061c99", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Jonathan Aris", "character": "Lilliputian Scientist", "id": 28477, "credit_id": "52fe46d99251416c91061c9d", "cast_id": 18, "profile_path": "/6RMuwGYfLLGq01LNGBydj9jpTWn.jpg", "order": 13}, {"name": "Joe Lo Truglio", "character": "Butt-Crack Man", "id": 21131, "credit_id": "52fe46d99251416c91061ca1", "cast_id": 19, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 14}], "directors": [{"name": "Rob Letterman", "department": "Directing", "job": "Director", "credit_id": "52fe46d99251416c91061c59", "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "id": 65630}], "vote_average": 5.1, "runtime": 85}, "145247": {"poster_path": "/z3WWCravNWd5lhPQYFAvifq8UrI.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "This unlikely story follows a 100-year-old man who decides it's not too late to start over. For most people it would be the adventure of a lifetime, but Allan Karlsson's unexpected journey is not his first. For a century he's made the world uncertain, and now he is on the loose again. Based on the internationally best-selling novel by Jonas Jonasson.", "video": false, "id": 145247, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The 100-Year-Old Man Who Climbed Out the Window and Disappeared", "tagline": "For a century he's made the world uncertain, and now he is on the loose again.", "vote_count": 106, "homepage": "http://nicedrama.se/niceflx/", "belongs_to_collection": null, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt2113681", "adult": false, "backdrop_path": "/mtWZqyT3QRoJ0nTilg2FDe9cm7G.jpg", "production_companies": [{"name": "FLX Comedy AB", "id": 28003}, {"name": "NICE FLX Pictures", "id": 28004}, {"name": "Nice Drama", "id": 28005}], "release_date": "2013-12-25", "popularity": 1.7159903272988, "original_title": "Hundra\u00e5ringen som klev ut genom f\u00f6nstret och f\u00f6rsvann", "budget": 9250000, "cast": [{"name": "Robert Gustafsson", "character": "Allan Karlsson", "id": 74699, "credit_id": "52fe4b559251416c750ff999", "cast_id": 2, "profile_path": "/nycRr8utK7C6JMICPksy2kb3Cbz.jpg", "order": 0}, {"name": "Iwar Wiklander", "character": "Julius", "id": 282449, "credit_id": "535d5d64c3a36830b900451a", "cast_id": 11, "profile_path": null, "order": 1}, {"name": "David Wiberg", "character": "Benny", "id": 1314260, "credit_id": "535d5d81c3a3683099004425", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Mia Sk\u00e4ringer", "character": "Gunilla", "id": 135692, "credit_id": "535d5d16c3a36830a9004365", "cast_id": 10, "profile_path": "/22SPiCuuL4eSgiAKRx1vcaWn7nt.jpg", "order": 3}, {"name": "Jens Hult\u00e9n", "character": "Gunnar \"G\u00e4ddan\" G\u00e4rdin", "id": 92429, "credit_id": "535d5dcc0e0a264fe1005107", "cast_id": 13, "profile_path": "/3dgP1WpqlKoKhC8GntrKAB3ozFB.jpg", "order": 4}, {"name": "Sven L\u00f6nn", "character": "Hans \"Hinken\" Claesson", "id": 1314261, "credit_id": "535d5ded0e0a264fe500545c", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Bianca Cruzeiro", "character": "Caracas", "id": 1314262, "credit_id": "535d5e3c0e0a264fe80051e9", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Alan Ford", "character": "Pim", "id": 1116, "credit_id": "535d5e4b0e0a264fe1005117", "cast_id": 16, "profile_path": "/3HtCLGRkuLmObyp1oJNJzplxOkI.jpg", "order": 7}, {"name": "Simon S\u00e4ppenen", "character": "Bulten", "id": 1314263, "credit_id": "535d5eac0e0a264fe500546b", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Kerry Shale", "character": "Harry S Truman", "id": 101034, "credit_id": "52fe4b559251416c750ff995", "cast_id": 1, "profile_path": "/4Yp5quLSRapOvoNJhdUarwLvDgn.jpg", "order": 9}, {"name": "Miglen Mirtchev", "character": "Vladimir Karpov", "id": 146500, "credit_id": "52fe4b559251416c750ff99d", "cast_id": 3, "profile_path": "/rqFyD0EAFczEqn8ZSFwksD3GnQq.jpg", "order": 10}, {"name": "Lateef Lovejoy", "character": "Douglas Freeman", "id": 1122545, "credit_id": "52fe4b559251416c750ff9a1", "cast_id": 4, "profile_path": null, "order": 11}, {"name": "Manuel Dubra", "character": "Esteban", "id": 1122546, "credit_id": "52fe4b559251416c750ff9a5", "cast_id": 5, "profile_path": null, "order": 12}, {"name": "David Shackleton", "character": "Herbert Einstein", "id": 1184049, "credit_id": "535d5e7b0e0a264fdb004f84", "cast_id": 17, "profile_path": "/dqF3yxhkCdOznLIFseOpZY47KgM.jpg", "order": 13}, {"name": "Johan Rheborg", "character": "Tage Erlander", "id": 79171, "credit_id": "535d611bc3a36822730009ae", "cast_id": 19, "profile_path": "/8YOSKwz0liPqOaVXKYowdsPe55P.jpg", "order": 14}, {"name": "Eiffel Mattsson", "character": "Seaman", "id": 1314274, "credit_id": "535d62880e0a264fe1005144", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Alfred Svensson", "character": "Gas station attendant", "id": 1314275, "credit_id": "535d62ad0e0a264fde0051dc", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Donald H\u00f6gberg", "character": "Professor Lundborg", "id": 1314277, "credit_id": "535d6337c3a36830a90043c5", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Donald H\u00f6gberg", "character": "Sigvard Eklund", "id": 1264193, "credit_id": "535d639dc3a36830a00042cd", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Keith Chanter", "character": "Ronald Reagan", "id": 1314278, "credit_id": "535d63c0c3a36830910042b0", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Philip Rosch", "character": "Robert Oppenheimer", "id": 1314279, "credit_id": "535d63edc3a36830b9004574", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "Cory Peterson", "character": "CIA Ryan Hutton", "id": 232979, "credit_id": "535d6442c3a3683084004469", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Ralph Carlsson", "character": "Chief Inspector Aronsson", "id": 114580, "credit_id": "54f79492c3a368351d002858", "cast_id": 27, "profile_path": null, "order": 22}], "directors": [{"name": "Felix Herngren", "department": "Directing", "job": "Director", "credit_id": "52fe4b559251416c750ff9bd", "profile_path": "/zeK3qvDQ5PQfSDwcwgvhy6pgXEn.jpg", "id": 74730}], "vote_average": 6.8, "runtime": 114}, "10555": {"poster_path": "/8hgmA0U2WgMA8EOSKgTH5tJNUfd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 367275019, "overview": "Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.", "video": false, "id": 10555, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Shark Tale", "tagline": "The story of what happens when one little fish tells a great white lie...", "vote_count": 313, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307453", "adult": false, "backdrop_path": "/tjUxWH1ru5zEfViPwtn6FzJ5rfO.jpg", "production_companies": [{"name": "DreamWorks Pictures", "id": 7293}], "release_date": "2004-10-01", "popularity": 1.84950036917041, "original_title": "Shark Tale", "budget": 75000000, "cast": [{"name": "Will Smith", "character": "Oscar (voice)", "id": 2888, "credit_id": "52fe43879251416c75013e51", "cast_id": 12, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Don Lino (voice)", "id": 380, "credit_id": "52fe43879251416c75013e55", "cast_id": 13, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Angie (voice)", "id": 9137, "credit_id": "52fe43879251416c75013e59", "cast_id": 14, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Jack Black", "character": "Lenny (voice)", "id": 70851, "credit_id": "52fe43879251416c75013e5d", "cast_id": 15, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "Angelina Jolie", "character": "Lola (voice)", "id": 11701, "credit_id": "52fe43879251416c75013e61", "cast_id": 16, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 4}, {"name": "Ziggy Marley", "character": "Ernie (voice)", "id": 154857, "credit_id": "52fe43879251416c75013e65", "cast_id": 17, "profile_path": "/QeUHklq4p6He9vQJfssRwT9scs.jpg", "order": 5}, {"name": "Martin Scorsese", "character": "Sykes (voice)", "id": 1032, "credit_id": "52fe43879251416c75013e69", "cast_id": 18, "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "order": 6}], "directors": [{"name": "Bibo Bergeron", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013e11", "profile_path": null, "id": 65629}, {"name": "Vicky Jenson", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013e17", "profile_path": "/eFk4SIk0nDpSfb1u8qG8DZ7Ya3e.jpg", "id": 12058}, {"name": "Rob Letterman", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013e1d", "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "id": 65630}], "vote_average": 5.6, "runtime": 90}, "38757": {"poster_path": "/nD4WoN1VQmDpoD5SpYxU4v2V85I.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 590721936, "overview": "When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower, he's taken hostage by Rapunzel, a beautiful and feisty tower-bound teen with 70 feet of magical, golden hair. Flynn's curious captor, who's looking for her ticket out of the tower where she's been locked away for years, strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade, complete with a super-cop horse, an over-protective chameleon and a gruff gang of pub thugs.", "video": false, "id": 38757, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Tangled", "tagline": "They're taking adventure to new lengths.", "vote_count": 1183, "homepage": "http://disney.go.com/disneypictures/tangled/", "belongs_to_collection": {"backdrop_path": "/hz2V5ArAbox1dq0vu78ARGaTVLC.jpg", "poster_path": "/hp1djgq1YgewS9HzTczTUPDwOJQ.jpg", "id": 129777, "name": "Tangled Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398286", "adult": false, "backdrop_path": "/uFg02Gt69UM6Ouam4slMdD0s029.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2010-11-24", "popularity": 2.19049662476319, "original_title": "Tangled", "budget": 260000000, "cast": [{"name": "Mandy Moore", "character": "Rapunzel (voice)", "id": 16855, "credit_id": "530d35a2925141141e0017ff", "cast_id": 33, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Zachary Levi", "character": "Flynn Rider (voice)", "id": 69899, "credit_id": "530d35bf9251411435001765", "cast_id": 34, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 1}, {"name": "Donna Murphy", "character": "Mother Gothel (voice)", "id": 2517, "credit_id": "530d35d4925141141e001802", "cast_id": 35, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Stabbington Brother (voice)", "id": 2372, "credit_id": "530d35e59251411421001835", "cast_id": 36, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Big Nose Thug (voice)", "id": 4175, "credit_id": "530d3624925141142400188e", "cast_id": 38, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Brad Garrett", "character": "Hook Hand Thug (voice)", "id": 18, "credit_id": "530d363e92514114310017d7", "cast_id": 39, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 5}, {"name": "Paul F. Tompkins", "character": "Short Thug (voice)", "id": 1219029, "credit_id": "533539b8c3a3680a1e003e08", "cast_id": 71, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 6}, {"name": "Richard Kiel", "character": "Vlad (voice)", "id": 10460, "credit_id": "530d36b0c3a3685c0c001aad", "cast_id": 41, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 7}, {"name": "Delaney Rose Stein", "character": "Young Rapunzel / Little Girl (voice)", "id": 1273208, "credit_id": "530d3712c3a3685bee001acb", "cast_id": 42, "profile_path": null, "order": 8}, {"name": "Nathan Greno", "character": "Guard 1 / Thug 1 (voice)", "id": 121830, "credit_id": "530d373cc3a3685c28001a22", "cast_id": 43, "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "order": 9}, {"name": "Byron Howard", "character": "Guard 2 / Thug 2 (voice)", "id": 76595, "credit_id": "530d37b8c3a3685c12001a4d", "cast_id": 45, "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "order": 10}, {"name": "Tim Mertens", "character": "Guard 3 (voice)", "id": 61958, "credit_id": "530d37c9c3a3685c03001a1a", "cast_id": 46, "profile_path": "/bTvLvMndvtu3oN7qFHJgqgRqCws.jpg", "order": 11}, {"name": "Michael Bell", "character": "Additional Voices (voice)", "id": 19546, "credit_id": "530d382792514114440016f5", "cast_id": 47, "profile_path": "/izjtUFQ3zJsInc0TSIhrVmUpSd7.jpg", "order": 12}, {"name": "Bob Bergen", "character": "Additional Voices (voice)", "id": 78317, "credit_id": "530d385d92514114240018e4", "cast_id": 48, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 13}, {"name": "Susanne Blakeslee", "character": "Additional Voices (voice)", "id": 89042, "credit_id": "53fedeb2c3a368573b0002b8", "cast_id": 72, "profile_path": "/mJ3dkcAX9STU3SPN06IsTltham8.jpg", "order": 14}, {"name": "June Christopher", "character": "Additional Voices (voice)", "id": 172696, "credit_id": "530d38a992514114350017ba", "cast_id": 50, "profile_path": null, "order": 15}, {"name": "Roy Conli", "character": "Additional Voices (voice)", "id": 56612, "credit_id": "530d38b792514114240018f4", "cast_id": 51, "profile_path": null, "order": 16}, {"name": "David Cowgill", "character": "Additional Voices (voice)", "id": 60232, "credit_id": "530d38c7925141144600161b", "cast_id": 52, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 17}, {"name": "Terri Douglas", "character": "Additional Voices (voice)", "id": 186605, "credit_id": "530d38d69251411444001700", "cast_id": 53, "profile_path": "/lECiABogAKm5Zl8Je6niNAoqz5N.jpg", "order": 18}, {"name": "Chad Einbinder", "character": "Additional Voices (voice)", "id": 166421, "credit_id": "530d38ee925141142100188e", "cast_id": 54, "profile_path": null, "order": 19}, {"name": "Pat Fraley", "character": "Additional Voices (voice)", "id": 34737, "credit_id": "530d38fc9251411428001804", "cast_id": 55, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 20}, {"name": "Eddie Frierson", "character": "Additional Voices (voice)", "id": 1225791, "credit_id": "530d3959c3a3685c2f001a4d", "cast_id": 56, "profile_path": null, "order": 21}, {"name": "Jackie Gonneau", "character": "Additional Voices (voice)", "id": 950773, "credit_id": "530d3978c3a3685bfb001a85", "cast_id": 57, "profile_path": null, "order": 22}, {"name": "Nicholas Guest", "character": "Additional Voices (voice)", "id": 36821, "credit_id": "530d3985c3a3685c12001aa4", "cast_id": 58, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 23}, {"name": "Bridget Hoffman", "character": "Additional Voices (voice)", "id": 173428, "credit_id": "530d3997c3a3685c1a001ae2", "cast_id": 59, "profile_path": null, "order": 24}, {"name": "Daniel Katz", "character": "Additional Voices (voice)", "id": 102207, "credit_id": "530d39a9c3a3685bf4001ae8", "cast_id": 60, "profile_path": null, "order": 25}, {"name": "Anne Lockhart", "character": "Additional Voices (voice)", "id": 41227, "credit_id": "530d39b8c3a3685c1a001ae8", "cast_id": 61, "profile_path": "/c2gcaCg9q9uBEyieeaxSWWlrhN1.jpg", "order": 26}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "530d39c3c3a3685c1a001aea", "cast_id": 62, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 27}, {"name": "Scott Menville", "character": "Additional Voices (voice)", "id": 113916, "credit_id": "530d39cfc3a3685c2f001a56", "cast_id": 63, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 28}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "530d39e1c3a3685c03001a61", "cast_id": 64, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 29}, {"name": "Paul Pape", "character": "Additional Voices (voice)", "id": 1233370, "credit_id": "530d39f7c3a3685c2f001a63", "cast_id": 65, "profile_path": null, "order": 30}, {"name": "Lynwood Robinson", "character": "Additional Voices (voice)", "id": 1296646, "credit_id": "530d3a17c3a3685bf4001af1", "cast_id": 66, "profile_path": null, "order": 31}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "530d3a25c3a3685c20001a4a", "cast_id": 67, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 32}, {"name": "Hynden Walch", "character": "Additional Voices (voice)", "id": 113919, "credit_id": "530d3a34c3a3685c12001abb", "cast_id": 68, "profile_path": "/gCHMyVwt2vlQt3AYPfoknVmklXI.jpg", "order": 33}, {"name": "Kari Wahlgren", "character": "Additional Voices (voice)", "id": 116315, "credit_id": "530d3a3fc3a3685c2f001a69", "cast_id": 69, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 34}, {"name": "M.C. Gainey", "character": "Captain of the Guard (voice)", "id": 22132, "credit_id": "53254b82c3a36824b500886a", "cast_id": 70, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 35}], "directors": [{"name": "Nathan Greno", "department": "Directing", "job": "Director", "credit_id": "52fe46db9251416c910620ad", "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "id": 121830}, {"name": "Byron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe46db9251416c910620bf", "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "id": 76595}], "vote_average": 7.1, "runtime": 100}, "5994": {"poster_path": "/tL3ehhaFBkXnp51FCn6kCs2CuiW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75764085, "overview": "Cutthroat investment banker Jack Campbell, who eschews emotional ties, is transported into the prosaic life he might have had if he'd wed his college sweetheart. Instead of a Ferrari, Campbell drives a malfunctioning minivan in the suburbs and is saddled with two screaming kids -- but he learns to love every minute of it.", "video": false, "id": 5994, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Family Man", "tagline": "What if...", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0218967", "adult": false, "backdrop_path": "/ysUwLsrJfRkkWGttH1fhpy8uuRf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2000-12-12", "popularity": 0.622270558766033, "original_title": "The Family Man", "budget": 60000000, "cast": [{"name": "Nicolas Cage", "character": "Jack Campbell", "id": 2963, "credit_id": "52fe4434c3a36847f80885bd", "cast_id": 11, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Kate Reynolds", "id": 4939, "credit_id": "52fe4434c3a36847f80885c1", "cast_id": 12, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Cash", "id": 1896, "credit_id": "52fe4434c3a36847f80885c5", "cast_id": 13, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Saul Rubinek", "character": "Peter Lassiter", "id": 3712, "credit_id": "52fe4434c3a36847f80885c9", "cast_id": 14, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 3}, {"name": "Makenzie Vega", "character": "Annie Campbell", "id": 2139, "credit_id": "52fe4434c3a36847f80885cd", "cast_id": 15, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 4}, {"name": "Ryan Milkovich", "character": "Josh Campbell", "id": 47057, "credit_id": "52fe4434c3a36847f80885d1", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Jake Milkovich", "character": "Josh Campbell", "id": 47056, "credit_id": "52fe4434c3a36847f80885d5", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Lisa Thornhill", "character": "Evelyn Thompson", "id": 47058, "credit_id": "52fe4434c3a36847f80885d9", "cast_id": 18, "profile_path": "/AfnRDI8DUlYjutYXcDjksXDr8Jo.jpg", "order": 7}, {"name": "Jeremy Piven", "character": "Arnie", "id": 12799, "credit_id": "52fe4434c3a36847f80885dd", "cast_id": 19, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 8}, {"name": "Amber Valletta", "character": "Paula", "id": 38425, "credit_id": "52fe4434c3a36847f80885e1", "cast_id": 20, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 9}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4434c3a36847f8088583", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.3, "runtime": 125}, "14191": {"poster_path": "/6diHusTm8eQJnfoI7MyCSDgaBRp.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23006849, "overview": "Two teenage girls discover a mermaid in their beach club's swimming pool.", "video": false, "id": 14191, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Aquamarine", "tagline": "A Fish-Out-Of-Water Comedy.", "vote_count": 59, "homepage": "http://www.aquamarinemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0429591", "adult": false, "backdrop_path": "/6LN4NJfNWzpJMcfzfqplsm8lVfe.jpg", "production_companies": [{"name": "Storefront Pictures", "id": 7747}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-03-03", "popularity": 0.340685029867431, "original_title": "Aquamarine", "budget": 12000000, "cast": [{"name": "Emma Roberts", "character": "Claire", "id": 34847, "credit_id": "52fe45d59251416c750640ed", "cast_id": 1, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "Joanna 'JoJo' Levesque", "character": "Hailey", "id": 57855, "credit_id": "52fe45d59251416c750640f1", "cast_id": 2, "profile_path": "/vKGPm1Y7H39mfIc2kSAUnCZRCMm.jpg", "order": 1}, {"name": "Sara Paxton", "character": "Aquamarine", "id": 60072, "credit_id": "52fe45d59251416c750640f5", "cast_id": 3, "profile_path": "/6tgy3NOeP2Cd1NiW9xHETQSbfvB.jpg", "order": 2}, {"name": "Jake McDorman", "character": "Raymond", "id": 94791, "credit_id": "52fe45d59251416c750640f9", "cast_id": 4, "profile_path": "/7DHDZrBne3diRwoWirg9djgKzTg.jpg", "order": 3}, {"name": "Arielle Kebbel", "character": "Cecilia Banks", "id": 20373, "credit_id": "52fe45d59251416c750640fd", "cast_id": 5, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 4}, {"name": "Claudia Karvan", "character": "Ginny", "id": 79966, "credit_id": "52fe45d59251416c75064101", "cast_id": 6, "profile_path": "/8o2xMWxL9SkkxXrJOGI8THZhS8Q.jpg", "order": 5}, {"name": "Bruce Spence", "character": "Leonard", "id": 27752, "credit_id": "52fe45d59251416c75064105", "cast_id": 7, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 6}, {"name": "Tammin Sursok", "character": "Marjorie", "id": 94792, "credit_id": "52fe45d59251416c75064109", "cast_id": 8, "profile_path": "/ghyiaX0upZev0shZcQ0OuE5AZ8y.jpg", "order": 7}, {"name": "Roy Billing", "character": "Grandpa Bob", "id": 94793, "credit_id": "52fe45d59251416c7506410d", "cast_id": 9, "profile_path": "/4fnmZ3ANu7KcjsOizlzNPjWQSpm.jpg", "order": 8}, {"name": "Julia Blake", "character": "Grandma Maggie", "id": 77561, "credit_id": "52fe45d59251416c75064111", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Shaun Micallef", "character": "Storm Banks", "id": 75949, "credit_id": "52fe45d59251416c75064115", "cast_id": 11, "profile_path": "/lqi9p3oMrcM3oIlWPC6qYyW6qgw.jpg", "order": 10}, {"name": "Lulu McClatchy", "character": "Bonnie", "id": 94795, "credit_id": "52fe45d59251416c75064119", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Natasha Cunningham", "character": "Patty", "id": 94796, "credit_id": "52fe45d59251416c7506411d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Dichen Lachman", "character": "Beth-Ann", "id": 94797, "credit_id": "52fe45d59251416c75064121", "cast_id": 14, "profile_path": "/3Z4qUhsXxXhjVGX5bEecoty7H1n.jpg", "order": 13}, {"name": "Lincoln Lewis", "character": "Theo", "id": 94798, "credit_id": "52fe45d59251416c75064125", "cast_id": 15, "profile_path": "/lvvMmWd4Xx4FBDO6uXuLdLVGbHv.jpg", "order": 14}, {"name": "Joey Massey", "character": "Little Boy", "id": 1115764, "credit_id": "52fe45d59251416c75064141", "cast_id": 20, "profile_path": "/vo8VTfp9nUTx3xtvdWRIq0YhrpQ.jpg", "order": 15}], "directors": [{"name": "Elizabeth Allen", "department": "Directing", "job": "Director", "credit_id": "52fe45d59251416c7506412b", "profile_path": "/8Njf10gbKo1IMan4KgK2669xJ5K.jpg", "id": 78896}], "vote_average": 5.6, "runtime": 104}, "33909": {"poster_path": "/3W7hi95b4lUklAP14pFVz21VSW5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 134748021, "overview": "As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader's mentor.", "video": false, "id": 33909, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Wall Street: Money Never Sleeps", "tagline": "Gordon never gives up.", "vote_count": 156, "homepage": "http://www.wallstreetmoneyneversleeps.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dmGQDIrfvmr5rahYcVhpS2xx6oy.jpg", "id": 52783, "name": "Wall Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1027718", "adult": false, "backdrop_path": "/jCIjDZJj0S7sagS2Wppd3H3uP9w.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Edward R. Pressman Film", "id": 6455}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2010-09-20", "popularity": 0.533738379078259, "original_title": "Wall Street: Money Never Sleeps", "budget": 70000000, "cast": [{"name": "Michael Douglas", "character": "Gordon Gekko", "id": 3392, "credit_id": "52fe45429251416c9102c3df", "cast_id": 8, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Jacob Moore", "id": 10959, "credit_id": "52fe45429251416c9102c3cf", "cast_id": 4, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Bretton James", "id": 16851, "credit_id": "52fe45429251416c9102c3d3", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Carey Mulligan", "character": "Winnie Gekko", "id": 36662, "credit_id": "52fe45429251416c9102c3d7", "cast_id": 6, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 3}, {"name": "Frank Langella", "character": "Lewis Zabel", "id": 8924, "credit_id": "52fe45429251416c9102c3eb", "cast_id": 11, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 4}, {"name": "Susan Sarandon", "character": "Sylvia Moore", "id": 4038, "credit_id": "52fe45429251416c9102c3e3", "cast_id": 9, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 5}, {"name": "Eli Wallach", "character": "Julie Steinhardt", "id": 3265, "credit_id": "52fe45429251416c9102c3e7", "cast_id": 10, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 6}, {"name": "Vanessa Ferlito", "character": "Audrey", "id": 20491, "credit_id": "52fe45429251416c9102c3ef", "cast_id": 12, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 7}, {"name": "Jason Clarke", "character": "Jack Schwietzer", "id": 76512, "credit_id": "52fe45429251416c9102c3f3", "cast_id": 15, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 8}, {"name": "Alexander Wraith", "character": "Jake's friend at club", "id": 118753, "credit_id": "52fe45429251416c9102c3f7", "cast_id": 16, "profile_path": "/6SrcyLh1k7EAmB0ZzewzZdWhGcF.jpg", "order": 9}, {"name": "John Bedford Lloyd", "character": "Bill Clark", "id": 60118, "credit_id": "52fe45429251416c9102c3fb", "cast_id": 17, "profile_path": "/6tE1lFrmKiOVsHt3fUay62ttn3U.jpg", "order": 10}, {"name": "Anna Kuchma", "character": "Office Blogger", "id": 115335, "credit_id": "52fe45429251416c9102c3ff", "cast_id": 18, "profile_path": "/31df19CsbXPNTKVf5dumZHSM2t6.jpg", "order": 11}, {"name": "Julianne Michelle", "character": "Natasha", "id": 71810, "credit_id": "52fe45429251416c9102c403", "cast_id": 19, "profile_path": "/21NnomYF7mkIJFsG4VmSqLGRYfV.jpg", "order": 12}, {"name": "Keith Middlebrook", "character": "Clark Wildman", "id": 118755, "credit_id": "52fe45429251416c9102c407", "cast_id": 21, "profile_path": "/5Qg9QNOdY1bCSAuZCC94DKd5PK9.jpg", "order": 13}, {"name": "Chuck Pfeiffer", "character": "Chuckie", "id": 118757, "credit_id": "52fe45429251416c9102c40b", "cast_id": 23, "profile_path": "/shBqO45qp7SscsWZGvJ1BclYpKL.jpg", "order": 14}, {"name": "Charlie Sheen", "character": "Bud Fox", "id": 6952, "credit_id": "52fe45429251416c9102c3db", "cast_id": 7, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 15}, {"name": "Natalie Morales", "character": "Churchill Schwartz Trader", "id": 118752, "credit_id": "52fe45429251416c9102c415", "cast_id": 26, "profile_path": "/eJopyLzoYJpzKXVu3HYpLB7zwxU.jpg", "order": 16}, {"name": "Sebastian Sozzi", "character": "Diego", "id": 53066, "credit_id": "52fe45429251416c9102c419", "cast_id": 27, "profile_path": "/6XiSiPEhZjatykjZnNusp2u5wKF.jpg", "order": 17}, {"name": "Tet Wada", "character": "VIP Party Patron", "id": 1417527, "credit_id": "54c28374c3a368792c003a2f", "cast_id": 29, "profile_path": "/gqbYiD2Lsw0srPRgueu2wgemOGT.jpg", "order": 18}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe45429251416c9102c3bf", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 5.7, "runtime": 133}, "284536": {"poster_path": "/sB03tHmWpIU9oKo4axwOJUf57qV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Literature professor and gambler Jim Bennett's debt causes him to borrow money from his mother and a loan shark. Further complicating his situation is his relationship with one of his students. Will Bennett risk his life for a second chance?", "video": false, "id": 284536, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Gambler", "tagline": "The only way out is all in", "vote_count": 83, "homepage": "http://www.thegamblermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2039393", "adult": false, "backdrop_path": "/lFwMaNxhRNXn4VwqYynp7Iiw377.jpg", "production_companies": [{"name": "Winkler Films", "id": 8880}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2014-12-25", "popularity": 3.24741660021152, "original_title": "The Gambler", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Jim Bennett", "id": 13240, "credit_id": "540b0876c3a368799c00154a", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Jessica Lange", "character": "Roberta", "id": 4431, "credit_id": "540b08fcc3a368799c001558", "cast_id": 5, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 1}, {"name": "John Goodman", "character": "Frank", "id": 1230, "credit_id": "540b08f2c3a36879ab00158f", "cast_id": 4, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Brie Larson", "character": "Amy Phillips", "id": 60073, "credit_id": "540b08e0c3a36879a20015de", "cast_id": 3, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 3}, {"name": "Michael Kenneth Williams", "character": "Neville Baraka", "id": 39390, "credit_id": "54b0f155c3a36809400017a4", "cast_id": 16, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 4}, {"name": "Da'Vone McDonald", "character": "Neville's Muscle", "id": 221945, "credit_id": "54b0f15f925141747e001680", "cast_id": 17, "profile_path": "/yZZR2uyPkieCrWXdlb7g57kQtka.jpg", "order": 5}, {"name": "George Kennedy", "character": "Ed", "id": 12950, "credit_id": "54b0f1409251416fe1000f3d", "cast_id": 14, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 6}, {"name": "Griffin Cleveland", "character": "Young Jim", "id": 1259760, "credit_id": "54b0f107c3a36809450018e6", "cast_id": 9, "profile_path": "/i7eK6LXNV37wxVGxLQISBGwrVAV.jpg", "order": 7}, {"name": "Omar Leyva", "character": "Valet", "id": 205349, "credit_id": "54b0f112c3a36809450018ea", "cast_id": 10, "profile_path": "/3yVSBEeThM5poF3XczMQn8kjTte.jpg", "order": 8}, {"name": "Anthony Kelley", "character": "Lamar Allen", "id": 1411657, "credit_id": "54b0f11e925141746c001682", "cast_id": 11, "profile_path": "/rA6lohqHm6fB1ajocFXdtwNWEHW.jpg", "order": 9}, {"name": "Steve Park", "character": "Number 2", "id": 4025, "credit_id": "54b0f12ac3a368094e001a60", "cast_id": 12, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 10}, {"name": "Emory Cohen", "character": "Dexter", "id": 1041440, "credit_id": "54b0f135c3a3680939001857", "cast_id": 13, "profile_path": "/eyRIUg5abdjtvT6SWZ8Tzh0tw2G.jpg", "order": 11}, {"name": "Chil Kong", "character": "Blackjack Dealer #1", "id": 1411658, "credit_id": "54b0f14bc3a368413800108d", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Amin Joseph", "character": "Neville's Bookkeeper", "id": 131772, "credit_id": "54b0f169c3a368094e001a6e", "cast_id": 18, "profile_path": "/skvXr7EjcsgVfwoZnmNNjIk4Jmr.jpg", "order": 13}, {"name": "Cjon Saulsberry", "character": "Neville's Posse", "id": 1371506, "credit_id": "54b0f17292514174750018a5", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Teebone Mitchell", "character": "Neville's Posse", "id": 1411659, "credit_id": "54b0f17cc3a36840120010b7", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Lauren Weedman", "character": "Banker", "id": 1375338, "credit_id": "54bb5d2f9251411d6a0082e2", "cast_id": 29, "profile_path": "/lOv2Uva44YRDvw2Ar4je2HToWID.jpg", "order": 16}, {"name": "Alvin Ing", "character": "Mister Lee", "id": 1429649, "credit_id": "551d82bec3a3683a1c000803", "cast_id": 30, "profile_path": "/m6Ag38UtD22LyGzxDJ2WL4F1Mad.jpg", "order": 17}, {"name": "Andre Braugher", "character": "Dean Fuller", "id": 6861, "credit_id": "551d83a09251413748000784", "cast_id": 31, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 18}, {"name": "Leland Orser", "character": "Larry Jones", "id": 2221, "credit_id": "551d83cec3a3683a2500079d", "cast_id": 32, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 19}], "directors": [{"name": "Rupert Wyatt", "department": "Directing", "job": "Director", "credit_id": "540b081dc3a36879ab001579", "profile_path": "/v3ws9iAETreGVuoHXKGFPkZszgy.jpg", "id": 77357}], "vote_average": 5.6, "runtime": 111}, "38778": {"poster_path": "/3eaNh9o4idemfhnWGt95mBJks9H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86387857, "overview": "Rising executive Tim Wagner works for a boss who hosts a monthly dinner in which the guest who brings the biggest buffoon gets a career-boost. Tim plans on not attending until he meets Barry, a man who builds dioramas using stuffed mice. Barry's blundering but good intentions send Tim's life into a downward spiral, threatening a major business deal and possibly scuttling Tim's engagement to his fiancee.", "video": false, "id": 38778, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dinner for Schmucks", "tagline": "Takes One To Know One.", "vote_count": 168, "homepage": "http://www.dinnerforschmucks.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427152", "adult": false, "backdrop_path": "/qiX6NXakuUQqZsEj60AfZj1tWRb.jpg", "production_companies": [{"name": "Everyman Pictures", "id": 2242}, {"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Reliance BIG Entertainment", "id": 6733}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2010-07-30", "popularity": 0.794426686215268, "original_title": "Dinner for Schmucks", "budget": 69000000, "cast": [{"name": "Steve Carell", "character": "Barry", "id": 4495, "credit_id": "52fe46df9251416c910628e5", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Paul Rudd", "character": "Tim Wagner", "id": 22226, "credit_id": "52fe46df9251416c910628e9", "cast_id": 5, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Stephanie Szostak", "character": "Julie", "id": 121953, "credit_id": "52fe46df9251416c910628f1", "cast_id": 8, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 2}, {"name": "Jemaine Clement", "character": "Kieran Vollard", "id": 55936, "credit_id": "52fe46df9251416c910628ed", "cast_id": 7, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 3}, {"name": "Zach Galifianakis", "character": "Therman", "id": 58225, "credit_id": "52fe46df9251416c910628f5", "cast_id": 9, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 5}, {"name": "Lucy Punch", "character": "Darla", "id": 66446, "credit_id": "52fe46df9251416c910628f9", "cast_id": 10, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Lance Fender", "id": 21089, "credit_id": "52fe46df9251416c910628fd", "cast_id": 11, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "David Walliams", "character": "M\u00fceller", "id": 80536, "credit_id": "52fe46df9251416c91062901", "cast_id": 12, "profile_path": "/3CrenEjzotOmk2FidLQ1mePjPNS.jpg", "order": 8}, {"name": "Ron Livingston", "character": "Caldwell", "id": 17402, "credit_id": "52fe46df9251416c91062905", "cast_id": 13, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 9}, {"name": "Kristen Schaal", "character": "Susana", "id": 109869, "credit_id": "52fe46df9251416c91062909", "cast_id": 15, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 11}, {"name": "Andrea Savage", "character": "Robin", "id": 71402, "credit_id": "52fe46df9251416c9106290d", "cast_id": 17, "profile_path": "/t6XAuQGq0vk7Kk3kbf3MeZSHNVv.jpg", "order": 13}, {"name": "Randall Park", "character": "Henderson", "id": 79082, "credit_id": "52fe46df9251416c91062911", "cast_id": 19, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 15}, {"name": "Lucy Davenport", "character": "Birgit", "id": 31737, "credit_id": "52fe46df9251416c91062915", "cast_id": 20, "profile_path": "/fPI671zQ9z0WtX9uYWvgnMlfRHp.jpg", "order": 16}, {"name": "Chris O'Dowd", "character": "Marco", "id": 40477, "credit_id": "52fe46df9251416c91062919", "cast_id": 21, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 17}, {"name": "Jeff Dunham", "character": "Lewis the Ventriloquist", "id": 76982, "credit_id": "52fe46df9251416c9106291d", "cast_id": 22, "profile_path": "/2xEF6hiAPSeObVAeUxH5SXV040F.jpg", "order": 18}, {"name": "Octavia Spencer", "character": "Madame Nora", "id": 6944, "credit_id": "52fe46df9251416c91062921", "cast_id": 23, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 19}, {"name": "Patrick Fischler", "character": "Vincenzo", "id": 52801, "credit_id": "52fe46df9251416c91062925", "cast_id": 24, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 20}, {"name": "Rick Overton", "character": "Chuck", "id": 1539, "credit_id": "52fe46df9251416c91062929", "cast_id": 25, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 21}, {"name": "Blanca Soto", "character": "Catherine", "id": 230852, "credit_id": "52fe46df9251416c9106292d", "cast_id": 26, "profile_path": "/gc4SkCkfqfZwF9mHmC20wFr73rE.jpg", "order": 22}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe46df9251416c910628d5", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 5.6, "runtime": 114}, "158015": {"poster_path": "/3dXjXaApTLOhzwGHCDtl5dKmy7Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.", "video": false, "id": 158015, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Purge", "tagline": "One night a year, all crime is legal.", "vote_count": 761, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/e6THO6zwWxuI8QRQxDI2OcLW7BI.jpg", "id": 256322, "name": "The Purge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2184339", "adult": false, "backdrop_path": "/sq8fc6005RAzyBvnWDIaaRYSe4V.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Why Not Productions", "id": 729}], "release_date": "2013-06-06", "popularity": 1.06616494119024, "original_title": "The Purge", "budget": 3000000, "cast": [{"name": "Lena Headey", "character": "Mary Sandin", "id": 17286, "credit_id": "52fe4bd99251416c910e7967", "cast_id": 3, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "James Sandin", "id": 569, "credit_id": "52fe4bd99251416c910e796b", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Max Burkholder", "character": "Charlie Sandin", "id": 81083, "credit_id": "52fe4bd99251416c910e796f", "cast_id": 5, "profile_path": "/8tM61XfapNvBnXum2WcBKlmDDeE.jpg", "order": 2}, {"name": "Adelaide Kane", "character": "Zoey Sandin", "id": 131781, "credit_id": "52fe4bd99251416c910e7973", "cast_id": 6, "profile_path": "/rxhR0vpqpdPsn9pWwDfxGvq58WL.jpg", "order": 3}, {"name": "Rhys Wakefield", "character": "Polite Leader", "id": 55899, "credit_id": "52fe4bd99251416c910e7977", "cast_id": 7, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 4}, {"name": "Tony Oller", "character": "Henry", "id": 458286, "credit_id": "52fe4bd99251416c910e797b", "cast_id": 8, "profile_path": "/7DkByOn4GxSNyYFLS187xSfNRiL.jpg", "order": 5}, {"name": "Edwin Hodge", "character": "Bloody Stranger", "id": 56679, "credit_id": "52fe4bd99251416c910e797f", "cast_id": 9, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 6}, {"name": "Tom Yi", "character": "Mr. Cali", "id": 305993, "credit_id": "52fe4bd99251416c910e7983", "cast_id": 10, "profile_path": "/9PQ91swJgHLJsoVZkcKGfd9NWgw.jpg", "order": 7}, {"name": "Arija Bareikis", "character": "Mrs. Grace Ferrin", "id": 33432, "credit_id": "52fe4bd99251416c910e7987", "cast_id": 11, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 8}, {"name": "Chris Mulkey", "character": "Mr. Halverson", "id": 15824, "credit_id": "52fe4bd99251416c910e798b", "cast_id": 12, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 9}, {"name": "Tisha French", "character": "Mrs. Halverson", "id": 1186023, "credit_id": "52fe4bd99251416c910e798f", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Dana Bunch", "character": "Mr. Ferrin", "id": 1186024, "credit_id": "52fe4bd99251416c910e7993", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Peter Gvozdas", "character": "Dr. Peter Buynak", "id": 1186025, "credit_id": "52fe4bd99251416c910e7997", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "John Weselcouch", "character": "Freak Interrupting", "id": 1186026, "credit_id": "52fe4bd99251416c910e799b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Alicia Vela-Bailey", "character": "Female Freak", "id": 1186027, "credit_id": "52fe4bd99251416c910e799f", "cast_id": 17, "profile_path": "/kVuyn6sS7ZSBlXVjjxq0LSE3k4I.jpg", "order": 14}], "directors": [{"name": "James DeMonaco", "department": "Directing", "job": "Director", "credit_id": "52fe4bd99251416c910e7963", "profile_path": null, "id": 53120}], "vote_average": 5.7, "runtime": 86}, "71552": {"poster_path": "/yfOZaUh08d1YtLCtgvfRRAssrR7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 234989584, "overview": "In the comedy American Reunion, all the American Pie characters we met a little more than a decade ago are returning to East Great Falls for their high-school reunion. In one long-overdue weekend, they will discover what has changed, who hasn\u2019t and that time and distance can\u2019t break the bonds of friendship. It was summer 1999 when four small-town Michigan boys began a quest to lose their virginity. In the years that have passed, Jim and Michelle married while Kevin and Vicky said goodbye. Oz and Heather grew apart, but Finch still longs for Stifler\u2019s mom. Now these lifelong friends have come home as adults to reminisce about - and get inspired by - the hormonal teens who launched a comedy legend.", "video": false, "id": 71552, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Reunion", "tagline": "Save the best piece for last.", "vote_count": 833, "homepage": "http://www.americanreunionmovie.com/", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1605630", "adult": false, "backdrop_path": "/tF32ruwlUGECw25FKVyWdIiTuxu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2012-04-06", "popularity": 1.09633513497778, "original_title": "American Reunion", "budget": 50000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe4839c3a368484e0eea65", "cast_id": 11, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty-Levenstein", "id": 21595, "credit_id": "52fe4839c3a368484e0eea57", "cast_id": 6, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 1}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe4839c3a368484e0eea47", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 2}, {"name": "Chris Klein", "character": "Chris 'Oz' Ostreicher", "id": 21594, "credit_id": "52fe4839c3a368484e0eea61", "cast_id": 10, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 3}, {"name": "Thomas Ian Nicholas", "character": "Kevin Myers", "id": 21403, "credit_id": "52fe4839c3a368484e0eea79", "cast_id": 16, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 4}, {"name": "Tara Reid", "character": "Victoria 'Vicky' Lathum", "id": 1234, "credit_id": "52fe4839c3a368484e0eea53", "cast_id": 5, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 5}, {"name": "Mena Suvari", "character": "Heather", "id": 8211, "credit_id": "52fe4839c3a368484e0eea4b", "cast_id": 3, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 6}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe4839c3a368484e0eea81", "cast_id": 18, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 7}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "52fe4839c3a368484e0eea71", "cast_id": 14, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 8}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "52fe4839c3a368484e0eea69", "cast_id": 12, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 9}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe4839c3a368484e0eea7d", "cast_id": 17, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 10}, {"name": "Natasha Lyonne", "character": "Jessica", "id": 10871, "credit_id": "52fe4839c3a368484e0eea75", "cast_id": 15, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 11}, {"name": "Dania Ramirez", "character": "Selena", "id": 37046, "credit_id": "52fe4839c3a368484e0eeab5", "cast_id": 27, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 12}, {"name": "Katrina Bowden", "character": "Mia", "id": 74618, "credit_id": "52fe4839c3a368484e0eea6d", "cast_id": 13, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 13}, {"name": "Ali Cobrin", "character": "Kara", "id": 496731, "credit_id": "52fe4839c3a368484e0eeab9", "cast_id": 28, "profile_path": "/koAUk1iZtZcl3kXNZ08hNqhbeAN.jpg", "order": 14}, {"name": "Shannon Elizabeth", "character": "Nadia", "id": 21596, "credit_id": "52fe4839c3a368484e0eea4f", "cast_id": 4, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 15}, {"name": "Chris Owen", "character": "Chuck Sherman", "id": 26999, "credit_id": "53bc38510e0a26198400341a", "cast_id": 31, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 16}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc38690e0a2619780033ef", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Neil Patrick Harris", "character": "Celebrity Dance-Off Host", "id": 41686, "credit_id": "53bc389a0e0a26196b00326f", "cast_id": 33, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 18}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "53bc38d10e0a26197400328c", "cast_id": 34, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 19}, {"name": "Rebecca De Mornay", "character": "Finch's Mother", "id": 28412, "credit_id": "52fe4839c3a368484e0eeabd", "cast_id": 29, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 20}], "directors": [{"name": "Jon Hurwitz", "department": "Directing", "job": "Director", "credit_id": "52fe4839c3a368484e0eea87", "profile_path": "/bWiSwwmkEqgDk0KkeodRQQ3MR02.jpg", "id": 68843}, {"name": "Hayden Schlossberg", "department": "Directing", "job": "Director", "credit_id": "52fe4839c3a368484e0eeac3", "profile_path": null, "id": 68844}], "vote_average": 5.9, "runtime": 113}, "137093": {"poster_path": "/ylZnvqSWnGXxFRgDmQ8nihtFBv6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 134402450, "overview": "Three sixty-something friends take a break from their day-to-day lives to throw a bachelor party in Las Vegas for their last remaining single pal.", "video": false, "id": 137093, "genres": [{"id": 35, "name": "Comedy"}], "title": "Last Vegas", "tagline": "It's going to be legendary", "vote_count": 322, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1204975", "adult": false, "backdrop_path": "/7gzF9anIxP8Gg5UswMPLWcMGDbj.jpg", "production_companies": [{"name": "Gidden Media", "id": 34886}, {"name": "CBS Films", "id": 5490}, {"name": "Good Universe", "id": 17393}, {"name": "Laurence Mark Productions", "id": 415}, {"name": "Outlaw Sinema", "id": 13444}], "release_date": "2013-11-01", "popularity": 1.06691540713624, "original_title": "Last Vegas", "budget": 28000000, "cast": [{"name": "Robert De Niro", "character": "Paddy", "id": 380, "credit_id": "52fe4c25c3a368484e1a9d29", "cast_id": 12, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Archie", "id": 192, "credit_id": "52fe4c25c3a368484e1a9d2d", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Michael Douglas", "character": "Billy", "id": 3392, "credit_id": "52fe4c25c3a368484e1a9d31", "cast_id": 14, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 2}, {"name": "Kevin Kline", "character": "Sam", "id": 8945, "credit_id": "52fe4c25c3a368484e1a9d39", "cast_id": 16, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 3}, {"name": "Mary Steenburgen", "character": "Diana", "id": 2453, "credit_id": "52fe4c25c3a368484e1a9d35", "cast_id": 15, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 4}, {"name": "Jerry Ferrara", "character": "Dean", "id": 98953, "credit_id": "52fe4c25c3a368484e1a9d3d", "cast_id": 17, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 5}, {"name": "Romany Malco", "character": "Lonnie", "id": 71530, "credit_id": "52fe4c25c3a368484e1a9d41", "cast_id": 18, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 6}, {"name": "Roger Bart", "character": "Maurice", "id": 45566, "credit_id": "52fe4c25c3a368484e1a9d45", "cast_id": 19, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 7}, {"name": "Joanna Gleason", "character": "Miriam", "id": 20747, "credit_id": "52fe4c25c3a368484e1a9d49", "cast_id": 20, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 8}, {"name": "Michael Ealy", "character": "Ezra", "id": 8177, "credit_id": "52fe4c25c3a368484e1a9d4d", "cast_id": 21, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 9}, {"name": "Bre Blair", "character": "Lisa", "id": 131934, "credit_id": "52fe4c25c3a368484e1a9d51", "cast_id": 22, "profile_path": "/g2HjztIVWknuxOCAQj46JRtBsDl.jpg", "order": 10}, {"name": "April Billingsley", "character": "Maid of Honor", "id": 93224, "credit_id": "52fe4c25c3a368484e1a9d55", "cast_id": 23, "profile_path": "/kksOuQSUHZKCWH4AONvjsTiiHWX.jpg", "order": 11}, {"name": "Stephen Scott Scarpulla", "character": "Danny the Greaser", "id": 1277225, "credit_id": "52fe4c25c3a368484e1a9d59", "cast_id": 24, "profile_path": "/f0wf6upckV5ePpiaokQHAAhwjrl.jpg", "order": 12}, {"name": "Andrea Moore", "character": "Bachelorette", "id": 1046200, "credit_id": "52fe4c25c3a368484e1a9d5d", "cast_id": 25, "profile_path": "/q4AfAMZTLSCtsqWEjfSRoXewc6p.jpg", "order": 13}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4c25c3a368484e1a9cef", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.6, "runtime": 105}, "137094": {"poster_path": "/jBibISmRBUO35p0Picv0nOo33sc.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50549107, "overview": "Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.", "video": false, "id": 137094, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Jack Ryan: Shadow Recruit", "tagline": "Trust no one.", "vote_count": 499, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1205537", "adult": false, "backdrop_path": "/7WURHOyx05AWAoNcBGp72clvB49.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Etalon film", "id": 9341}, {"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "Mace Neufeld Productions", "id": 2767}, {"name": "Buckaroo Entertainment", "id": 11250}], "release_date": "2014-01-17", "popularity": 1.40993649424668, "original_title": "Jack Ryan: Shadow Recruit", "budget": 60000000, "cast": [{"name": "Chris Pine", "character": "Jack Ryan", "id": 62064, "credit_id": "52fe4c26c3a368484e1a9deb", "cast_id": 14, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Cathy Muller", "id": 116, "credit_id": "52fe4c26c3a368484e1a9de7", "cast_id": 13, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Kevin Costner", "character": "William Harper", "id": 1269, "credit_id": "52fe4c26c3a368484e1a9def", "cast_id": 15, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 2}, {"name": "Nonso Anozie", "character": "Embee", "id": 43547, "credit_id": "52fe4c26c3a368484e1a9df3", "cast_id": 16, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 3}, {"name": "Gemma Chan", "character": "Amy Chan", "id": 97576, "credit_id": "52fe4c26c3a368484e1a9df7", "cast_id": 17, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 4}, {"name": "Deborah Rosan", "character": "Customer", "id": 1106755, "credit_id": "52fe4c26c3a368484e1a9dfb", "cast_id": 18, "profile_path": "/u5TLr9M4qo7jlzTsFb7XDPRilEW.jpg", "order": 5}, {"name": "Lenn Kudrjawizki", "character": "Constantin", "id": 12766, "credit_id": "52fe4c26c3a368484e1a9dff", "cast_id": 19, "profile_path": "/m8Sn5H6CHHrD8vxhLun2c3gMcs4.jpg", "order": 6}, {"name": "Price Lindsey", "character": "Waiter", "id": 1106757, "credit_id": "52fe4c26c3a368484e1a9e03", "cast_id": 20, "profile_path": "/vVoVJOaMVypRA8pJhfNqty7VjX.jpg", "order": 7}, {"name": "Celine Jedidi", "character": "Restaurant Diner", "id": 1106759, "credit_id": "52fe4c26c3a368484e1a9e07", "cast_id": 21, "profile_path": "/oLJHSKWVt2d211myMtm10lO1Xme.jpg", "order": 8}, {"name": "Ricky Rajpal", "character": "VIP Business Man", "id": 1106760, "credit_id": "52fe4c26c3a368484e1a9e0b", "cast_id": 22, "profile_path": "/uIogtsdVzDWRxvANRdoL0FtGM7S.jpg", "order": 9}, {"name": "Kenneth Branagh", "character": "Viktor Cherevin", "id": 11181, "credit_id": "52fe4c26c3a368484e1a9e0f", "cast_id": 23, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 10}, {"name": "Karen David", "character": "FBI Lead Agent", "id": 79124, "credit_id": "52fe4c26c3a368484e1a9e13", "cast_id": 24, "profile_path": "/pBR1dQvCEBpRaaL6dF8L9FtfJE8.jpg", "order": 11}, {"name": "Elena Velikanova", "character": "Katya", "id": 521001, "credit_id": "52fe4c26c3a368484e1a9e17", "cast_id": 25, "profile_path": "/bZ4BMVpQasIHOictMW1CjJVe9kh.jpg", "order": 12}, {"name": "Aleksandar Aleksiev", "character": "Cherevin's Bodyguard", "id": 1202317, "credit_id": "52fe4c26c3a368484e1a9e1b", "cast_id": 27, "profile_path": "/pxThnyg2FU5NVZ6DhP58GZ2XRWG.jpg", "order": 13}, {"name": "Colm Feore", "character": "Rob Behringer", "id": 10132, "credit_id": "52fe4c26c3a368484e1a9e1f", "cast_id": 28, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 14}, {"name": "Peter Andersson", "character": "Dimitri Lemkov", "id": 21193, "credit_id": "52fe4c26c3a368484e1a9e23", "cast_id": 29, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 15}, {"name": "David Paymer", "character": "Dixon Lewis", "id": 19839, "credit_id": "52fe4c26c3a368484e1a9e27", "cast_id": 30, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 16}, {"name": "David Hayman", "character": "Sergey Dostal", "id": 54014, "credit_id": "52fe4c26c3a368484e1a9e2b", "cast_id": 31, "profile_path": "/tXhC9zlniU4SYpjOcMKxDIHdQBB.jpg", "order": 17}, {"name": "Amy J. Kim", "character": "UN Announcer", "id": 1327764, "credit_id": "5390313e0e0a262986001f68", "cast_id": 49, "profile_path": null, "order": 18}, {"name": "Bogdan Kominowski", "character": "Mr. Borovsky", "id": 1327765, "credit_id": "53903192c3a3680d750013ed", "cast_id": 50, "profile_path": null, "order": 19}, {"name": "Maggie Daniels", "character": "Mrs. Borovsky", "id": 1085742, "credit_id": "53903254c3a3680d5e001443", "cast_id": 51, "profile_path": "/jm1xxwpQtftzyqMCfSU2hbjSp9H.jpg", "order": 20}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe4c25c3a368484e1a9da1", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 6.0, "runtime": 105}, "6023": {"poster_path": "/esfuYEvv7WrLvXNkCg7MCufEEdH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156835339, "overview": "A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.", "video": false, "id": 6023, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "P.S. I Love You", "tagline": "His life ended. Now, a new one will begin.", "vote_count": 284, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0431308", "adult": false, "backdrop_path": "/75ybu5PY5ujvghe1hbn5x1DdESl.jpg", "production_companies": [{"name": "Wendy Finerman Productions", "id": 412}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Grosvenor Park Films LLP", "id": 1983}], "release_date": "2007-12-21", "popularity": 1.09743306661633, "original_title": "P.S. I Love You", "budget": 30000000, "cast": [{"name": "Hilary Swank", "character": "Holly", "id": 448, "credit_id": "52fe4438c3a36847f8089405", "cast_id": 19, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Gerry", "id": 17276, "credit_id": "52fe4438c3a36847f8089409", "cast_id": 20, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Lisa Kudrow", "character": "Denise", "id": 14406, "credit_id": "52fe4438c3a36847f808940d", "cast_id": 21, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 2}, {"name": "Harry Connick Jr.", "character": "Daniel", "id": 18688, "credit_id": "52fe4438c3a36847f8089411", "cast_id": 22, "profile_path": "/zdIXPJyfpje8BGBjNQAe73CzSTx.jpg", "order": 3}, {"name": "Gina Gershon", "character": "Sharon", "id": 11150, "credit_id": "52fe4438c3a36847f8089415", "cast_id": 23, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 4}, {"name": "Jeffrey Dean Morgan", "character": "William", "id": 47296, "credit_id": "52fe4438c3a36847f8089419", "cast_id": 24, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Patricia", "id": 8534, "credit_id": "52fe4438c3a36847f808941d", "cast_id": 25, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "James Marsters", "character": "John", "id": 47297, "credit_id": "52fe4438c3a36847f8089421", "cast_id": 26, "profile_path": "/asmCNHg9nUC2Yv1d7LMQrQ5Adul.jpg", "order": 7}, {"name": "Nellie McKay", "character": "Ciara", "id": 47298, "credit_id": "52fe4438c3a36847f8089425", "cast_id": 27, "profile_path": "/edSlVTUExk3IVb2TSpNc04XW1HP.jpg", "order": 8}, {"name": "Anne Kent", "character": "Rose Kennedy", "id": 47777, "credit_id": "52fe4438c3a36847f8089429", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Brian McGrath", "character": "Martin Kennedy", "id": 47778, "credit_id": "52fe4438c3a36847f808942d", "cast_id": 29, "profile_path": null, "order": 10}], "directors": [{"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4438c3a36847f808939b", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}], "vote_average": 6.8, "runtime": 126}, "137106": {"poster_path": "/lMHbadNmznKs5vgBAkHxKGHulOa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 373141707, "overview": "An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.", "video": false, "id": 137106, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Lego Movie", "tagline": "The story of a nobody who saved everybody.", "vote_count": 1178, "homepage": "http://www.thelegomovie.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 325470, "name": "The LEGO Movie collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1490017", "adult": false, "backdrop_path": "/wPRiV4TVpRCV2es81q0S1eRaUbm.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DC Comics", "id": 429}, {"name": "LEGO", "id": 4081}, {"name": "Animal Logic", "id": 8089}, {"name": "Warner Animation Group", "id": 25120}], "release_date": "2014-02-07", "popularity": 3.01414089401675, "original_title": "The Lego Movie", "budget": 60000000, "cast": [{"name": "Will Arnett", "character": "Batman / Bruce Wayne (voice)", "id": 21200, "credit_id": "52fe4c27c3a368484e1aa0a3", "cast_id": 17, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Wyldstyle / Lucy (voice)", "id": 9281, "credit_id": "52fe4c27c3a368484e1aa093", "cast_id": 13, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Craig Berry", "character": "Blake / Additional Voices (voice)", "id": 1370749, "credit_id": "542f53b6c3a3686868000829", "cast_id": 35, "profile_path": null, "order": 2}, {"name": "Alison Brie", "character": "Unikitty (voice)", "id": 88029, "credit_id": "52fe4c27c3a368484e1aa0b7", "cast_id": 23, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 3}, {"name": "David Burrows", "character": "Octan Robot / Additional Voices (voice)", "id": 970287, "credit_id": "542f53f5c3a3686868000836", "cast_id": 36, "profile_path": null, "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO (voice)", "id": 6, "credit_id": "52fe4c27c3a368484e1aa0cb", "cast_id": 28, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Charlie Day", "character": "Benny (voice)", "id": 95101, "credit_id": "52fe4c27c3a368484e1aa0bf", "cast_id": 25, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 6}, {"name": "Amanda Farinos", "character": "Mom (voice)", "id": 1370751, "credit_id": "542f5491c3a3686865000928", "cast_id": 37, "profile_path": null, "order": 7}, {"name": "Keith Ferguson", "character": "Han Solo (voice)", "id": 143346, "credit_id": "542f54c90e0a264f15000922", "cast_id": 38, "profile_path": "/sXZ1nVUUnt36PPC0LbhrcZKK7id.jpg", "order": 8}, {"name": "Will Ferrell", "character": "Lord Business (voice) / President Business (voice) / The Man Upstairs", "id": 23659, "credit_id": "52fe4c27c3a368484e1aa0ab", "cast_id": 20, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 9}, {"name": "Will Forte", "character": "Abraham Lincoln (voice) (as Orville Forte)", "id": 62831, "credit_id": "52fe4c27c3a368484e1aa0c7", "cast_id": 27, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 10}, {"name": "Dave Franco", "character": "Wally (voice)", "id": 54697, "credit_id": "52fe4c27c3a368484e1aa0c3", "cast_id": 26, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 11}, {"name": "Morgan Freeman", "character": "Vitruvius (voice)", "id": 192, "credit_id": "52fe4c27c3a368484e1aa09b", "cast_id": 15, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 12}, {"name": "Todd Hansen", "character": "Gandalf / Additional Voices (voice)", "id": 1370753, "credit_id": "542f55b8c3a368685f000952", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Jonah Hill", "character": "Green Lantern (voice)", "id": 21007, "credit_id": "52fe4c27c3a368484e1aa0a7", "cast_id": 19, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 14}, {"name": "Jake M. Johnson", "character": "Barry (voice) (as Jake Johnson)", "id": 543505, "credit_id": "542f56190e0a264f070009b5", "cast_id": 40, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 15}, {"name": "Keegan-Michael Key", "character": "Foreman Jim (voice)", "id": 298410, "credit_id": "542f5636c3a368686200096c", "cast_id": 41, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 16}, {"name": "Kelly Lafferty", "character": "Lord Business' Assistant (voice)", "id": 1370755, "credit_id": "542f56480e0a264f0100094b", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Chris McKay", "character": "Larry the Barista / Additional Voices (voice)", "id": 144816, "credit_id": "542f566cc3a368685f000987", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Christopher Miller", "character": "TV Presenter (voice)", "id": 1230981, "credit_id": "542f57110e0a264f0100097f", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Graham Miller", "character": "Duplo (voice)", "id": 1370756, "credit_id": "542f5736c3a368685a000939", "cast_id": 45, "profile_path": null, "order": 20}, {"name": "Liam Neeson", "character": "Bad Cop/ Good Cop / Pa Cop (voice)", "id": 3896, "credit_id": "52fe4c27c3a368484e1aa0b3", "cast_id": 22, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 21}, {"name": "Doug Nicholas", "character": "Surfer Dave / Additional Voices (voice)", "id": 1370757, "credit_id": "542f5790c3a368686800090f", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Shaquille O'Neal", "character": "Shaq (voice)", "id": 35806, "credit_id": "542f579fc3a368685a00094d", "cast_id": 47, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 23}, {"name": "Nick Offerman", "character": "Metal Beard (voice)", "id": 17039, "credit_id": "52fe4c27c3a368484e1aa0bb", "cast_id": 24, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 24}, {"name": "Chris Paluszek", "character": "Robot Foreman (voice)", "id": 1370758, "credit_id": "542f58080e0a2605e7000862", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Chris Pratt", "character": "Emmet Brickowski (voice)", "id": 73457, "credit_id": "52fe4c27c3a368484e1aa09f", "cast_id": 16, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 26}, {"name": "Chris Romano", "character": "Joe (voice)", "id": 1370759, "credit_id": "542f583e0e0a264f150009f5", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Jadon Sand", "character": "Finn", "id": 1340685, "credit_id": "53ea709b0e0a266038001cea", "cast_id": 34, "profile_path": "/uM4knNZ0kZJMtJt669vRBb8TtSo.jpg", "order": 28}, {"name": "Cobie Smulders", "character": "Wonder Woman (voice)", "id": 71189, "credit_id": "52fe4c27c3a368484e1aa0af", "cast_id": 21, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 29}, {"name": "Melissa Sturm", "character": "Gail / Ma Cop (voice)", "id": 587697, "credit_id": "542f58ad0e0a2605e7000895", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Jorma Taccone", "character": "Shakespeare / Additional Voices (voice)", "id": 62863, "credit_id": "542f58bc0e0a264f010009f1", "cast_id": 51, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 31}, {"name": "Channing Tatum", "character": "Superman (voice)", "id": 38673, "credit_id": "52fe4c27c3a368484e1aa097", "cast_id": 14, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 32}, {"name": "Billy Dee Williams", "character": "Lando (voice)", "id": 3799, "credit_id": "542f58c90e0a264f07000a4f", "cast_id": 52, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 33}, {"name": "Leiki Veskimets", "character": "Voice of Computer (voice)", "id": 1370760, "credit_id": "542f58d90e0a264f04000a4b", "cast_id": 53, "profile_path": null, "order": 34}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe4c26c3a368484e1aa053", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe5e0692514148c6022049", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 7.7, "runtime": 100}, "6038": {"poster_path": "/2H2h2Qdt2TXLQslCHi8xEDDONpq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60470220, "overview": "The dynamic duo of Chon Wang and Roy O'Bannon return for another crazy adventure. This time, they're in London to avenge the murder of Chon's father, but end up on an even bigger case. Chon's sister is there to do the same, but instead unearths a plot to kill the royal family. No one believes her, though, and it's up to Chon and Roy (who has romance on his mind) to prove her right.", "video": false, "id": 6038, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Shanghai Knights", "tagline": "A Royal Kick In The Arse.", "vote_count": 165, "homepage": "http://www.shanghaiknights.com/", "belongs_to_collection": {"backdrop_path": "/xkA3OKXATV7c0hIXoETdHXUIpE8.jpg", "poster_path": "/mycCmimAQ1mDsWweKQQimCkPtDh.jpg", "id": 59567, "name": "Shanghai Noon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0300471", "adult": false, "backdrop_path": "/izqIXYopCnJbL5LDm3X30RF8gLI.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2003-02-07", "popularity": 1.10659969369078, "original_title": "Shanghai Knights", "budget": 50000000, "cast": [{"name": "Jackie Chan", "character": "Chon Wang", "id": 18897, "credit_id": "52fe443ac3a36847f8089907", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Roy O\u2019Bannon", "id": 887, "credit_id": "52fe443ac3a36847f808990b", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Fann Wong", "character": "Chon Lin", "id": 49734, "credit_id": "52fe443ac3a36847f808993f", "cast_id": 11, "profile_path": "/fvZkLKQunSJgDldqhrwSXvyddzS.jpg", "order": 2}, {"name": "Aaron Taylor-Johnson", "character": "Charlie Chaplin", "id": 27428, "credit_id": "52fe443ac3a36847f8089943", "cast_id": 12, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 3}, {"name": "Aidan Gillen", "character": "Lord Nelson Rathbone", "id": 49735, "credit_id": "52fe443ac3a36847f8089947", "cast_id": 13, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 4}, {"name": "Donnie Yen", "character": "Wu Chow", "id": 1341, "credit_id": "52fe443ac3a36847f808994b", "cast_id": 14, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 5}, {"name": "Oliver Cotton", "character": "Jack the Ripper", "id": 24627, "credit_id": "52fe443ac3a36847f808994f", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Alison King", "character": "Prostitute", "id": 195562, "credit_id": "52fe443ac3a36847f8089953", "cast_id": 16, "profile_path": "/b8s3jtv81kq15uWAZs5cVK2Iqrg.jpg", "order": 7}, {"name": "Constantine Gregory", "character": "The Mayor", "id": 27425, "credit_id": "52fe443ac3a36847f8089957", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Jonathan Harvey", "character": "Fagin #1", "id": 554276, "credit_id": "52fe443ac3a36847f808995b", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Richard Haas", "character": "Street Preacher", "id": 25678, "credit_id": "52fe443ac3a36847f808995f", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Anna-Louise Plowman", "character": "Debutante", "id": 172790, "credit_id": "52fe443ac3a36847f8089963", "cast_id": 20, "profile_path": "/eGQbXKXcVX66yrKN9scAf256ifL.jpg", "order": 11}, {"name": "Georgina Chapman", "character": "Debutante", "id": 41547, "credit_id": "52fe443ac3a36847f8089967", "cast_id": 21, "profile_path": "/nSdhtkVAJ2N0YWWviLS42mMktwC.jpg", "order": 12}, {"name": "John Owens", "character": "Server", "id": 161030, "credit_id": "52fe443ac3a36847f808996b", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Richard Bremmer", "character": "Master at Arms", "id": 19903, "credit_id": "52fe443ac3a36847f808996f", "cast_id": 23, "profile_path": "/eRLxQ7sTWqtI24OPo5wz3p95RI3.jpg", "order": 14}, {"name": "Kim Chan", "character": "Chon Wang's Father", "id": 8400, "credit_id": "52fe443ac3a36847f8089973", "cast_id": 24, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 15}, {"name": "Gemma Jones", "character": "Queen Victoria", "id": 9138, "credit_id": "52fe443ac3a36847f8089977", "cast_id": 25, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 16}, {"name": "Daisy Beaumont", "character": "Cigarette Girl", "id": 211847, "credit_id": "52fe443ac3a36847f808997b", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Eric Meyers", "character": "Front Desk Clerk", "id": 933883, "credit_id": "52fe443ac3a36847f808997f", "cast_id": 28, "profile_path": "/mDMzeDh9TMrfcxoEXZmvtWqgGZ3.jpg", "order": 18}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe443ac3a36847f8089911", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 5.8, "runtime": 115}, "137113": {"poster_path": "/tpoVEYvm6qcXueZrQYJNRLXL88s.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 369200000, "overview": "Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.", "video": false, "id": 137113, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Edge of Tomorrow", "tagline": "Live, Die, Repeat", "vote_count": 1556, "homepage": "http://www.edgeoftomorrow-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1631867", "adult": false, "backdrop_path": "/7mgKeg18Qml5nJQa56RBZO7dIu0.jpg", "production_companies": [{"name": "RatPac-Dune Entertainment", "id": 41624}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros.", "id": 6194}, {"name": "3 Arts Entertainment", "id": 36390}, {"name": "Viz Media", "id": 6687}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}], "release_date": "2014-06-06", "popularity": 4.75889945182494, "original_title": "Edge of Tomorrow", "budget": 178000000, "cast": [{"name": "Tom Cruise", "character": "Maj. William \"Bill\" Cage", "id": 500, "credit_id": "52fe4c27c3a368484e1aa209", "cast_id": 12, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Emily Blunt", "character": "Sgt. Rita Vrataski", "id": 5081, "credit_id": "53b524de0e0a2676c4002173", "cast_id": 27, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 1}, {"name": "Brendan Gleeson", "character": "General Brigham", "id": 2039, "credit_id": "5391fab70e0a266dca0001ae", "cast_id": 26, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Msg. Farell", "id": 2053, "credit_id": "52fe4c27c3a368484e1aa20d", "cast_id": 13, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Jonas Armstrong", "character": "Skinner", "id": 119224, "credit_id": "52fe4c27c3a368484e1aa219", "cast_id": 16, "profile_path": "/ig43aP36ZRxDAOU9R3hNotImkE7.jpg", "order": 4}, {"name": "Tony Way", "character": "Kimmel", "id": 147255, "credit_id": "52fe4c27c3a368484e1aa221", "cast_id": 18, "profile_path": "/uk8OCXbEGXnkmKvf7EgVzfKq918.jpg", "order": 5}, {"name": "Kick Gurry", "character": "Griff", "id": 93111, "credit_id": "52fe4c27c3a368484e1aa21d", "cast_id": 17, "profile_path": "/8XzZ6hw2ctF55O4Ia6WaH2Fnx0Y.jpg", "order": 6}, {"name": "Franz Drameh", "character": "Ford", "id": 1363086, "credit_id": "541211790e0a266637002360", "cast_id": 30, "profile_path": "/1s3XS0AZ3Obx4OcLGetBipKR5En.jpg", "order": 7}, {"name": "Dragomir Mrsic", "character": "Kuntz", "id": 125740, "credit_id": "52fe4c27c3a368484e1aa225", "cast_id": 19, "profile_path": "/pQfV252X7iCAWNUytMIi16op7jq.jpg", "order": 8}, {"name": "Charlotte Riley", "character": "Nance", "id": 115679, "credit_id": "52fe4c27c3a368484e1aa211", "cast_id": 14, "profile_path": "/pkiZKysfb0oXvaBBm6zWQkWSvVu.jpg", "order": 9}, {"name": "Masayoshi Haneda", "character": "Takeda", "id": 1095404, "credit_id": "541211ab0e0a26663f002302", "cast_id": 31, "profile_path": "/dtUmoOUtsxeEbODCXjLILUunLmm.jpg", "order": 10}, {"name": "Terence Maynard", "character": "Cruel Sergeant", "id": 67205, "credit_id": "541210260e0a266631002383", "cast_id": 28, "profile_path": "/pFxcJnlfp1lAnDbgumYynzlkfQE.jpg", "order": 11}, {"name": "Noah Taylor", "character": "Dr. Carter", "id": 1284, "credit_id": "539155710e0a260fc9000daa", "cast_id": 25, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 12}, {"name": "Lee Asquith-Coe", "character": "Russian Soldier", "id": 531772, "credit_id": "52fe4c27c3a368484e1aa215", "cast_id": 15, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 13}, {"name": "Lara Pulver", "character": "Karen Lord", "id": 213083, "credit_id": "541210690e0a266634002331", "cast_id": 29, "profile_path": "/ve68vtNYVXmKjzn81zKhI7TWEvy.jpg", "order": 14}, {"name": "Madeleine Mantock", "character": "Julie", "id": 1258664, "credit_id": "52fe4c27c3a368484e1aa231", "cast_id": 22, "profile_path": "/rDvJ1QkneXiGFzCZytTJzOjLKPp.jpg", "order": 15}, {"name": "Marianne Jean-Baptiste", "character": "Dr. Whittle", "id": 17352, "credit_id": "52fe4c27c3a368484e1aa239", "cast_id": 24, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 16}, {"name": "Jeremy Piven", "character": "Col. Walter Marx", "id": 12799, "credit_id": "52fe4c27c3a368484e1aa22d", "cast_id": 21, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 17}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe4c27c3a368484e1aa1cb", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 7.8, "runtime": 113}, "38810": {"poster_path": "/8hQbM6n2wnB5U1T0mHFIGwTtSeI.jpg", "production_countries": [{"iso_3166_1": "GR", "name": "Greece"}], "revenue": 0, "overview": "Three teenagers are confined to an isolated country estate that could very well be on another planet. The trio spend their days listening to endless homemade tapes that teach them a whole new vocabulary. Any word that comes from beyond their family abode is instantly assigned a new meaning. Hence 'the sea' refers to a large armchair and 'zombies' are little yellow flowers. Having invented a brother whom they claim to have ostracized for his disobedience, the uber-controlling parents terrorize their offspring into submission.", "video": false, "id": 38810, "genres": [{"id": 18, "name": "Drama"}], "title": "Dogtooth", "tagline": "The cat is the most feared animal there is!", "vote_count": 51, "homepage": "http://www.dogtooth.gr/", "belongs_to_collection": null, "original_language": "el", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt1379182", "adult": false, "backdrop_path": "/bRY5Mg2TsE1A71ColgZXhHBMEa6.jpg", "production_companies": [{"name": "Boo Productions", "id": 15113}, {"name": "Horsefly Productions", "id": 15115}], "release_date": "2009-10-22", "popularity": 0.569515265404834, "original_title": "\u039a\u03c5\u03bd\u03cc\u03b4\u03bf\u03bd\u03c4\u03b1\u03c2", "budget": 0, "cast": [{"name": "Hristos Passalis", "character": "Son", "id": 122424, "credit_id": "52fe46e29251416c91062fc3", "cast_id": 10, "profile_path": "/wafoi998LbWsaHY4dn46jmEKGri.jpg", "order": 0}, {"name": "Aggeliki Papoulia", "character": "Older Daughter", "id": 122426, "credit_id": "52fe46e29251416c91062fc7", "cast_id": 11, "profile_path": "/syzlL5KWDhF89NFF0m7OC0lvIeY.jpg", "order": 1}, {"name": "Mary Tsoni", "character": "Younger Daughter", "id": 122425, "credit_id": "52fe46e29251416c91062fd3", "cast_id": 14, "profile_path": "/pLLHGEebGOtqzAjlRycmFCjeKmf.jpg", "order": 2}, {"name": "Christos Stergioglou", "character": "Father", "id": 122428, "credit_id": "52fe46e29251416c91062fcb", "cast_id": 12, "profile_path": "/6qsXPyQ85tVejBrnK6WCeK3o2Xz.jpg", "order": 3}, {"name": "Michele Valley", "character": "Mother", "id": 17587, "credit_id": "52fe46e29251416c91062fcf", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Anna Kalaitzidou", "character": "Christina", "id": 122422, "credit_id": "52fe46e29251416c91062fb9", "cast_id": 1, "profile_path": null, "order": 5}, {"name": "Steve Krikris", "character": "Colleague", "id": 1185439, "credit_id": "52fe46e29251416c91062fe3", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Sissy Petropoulou", "character": "Secretary (as Athanasia Petropoulou)", "id": 1185440, "credit_id": "52fe46e29251416c91062fe7", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Alexander Voulgaris", "character": "Dog trainer", "id": 1185441, "credit_id": "52fe46e29251416c91062feb", "cast_id": 21, "profile_path": null, "order": 8}], "directors": [{"name": "Yorgos Lanthimos", "department": "Directing", "job": "Director", "credit_id": "52fe46e29251416c91062fbf", "profile_path": "/qUjyfVUwX8XFXlhSSJtFXMeXi2X.jpg", "id": 122423}], "vote_average": 7.3, "runtime": 94}, "210860": {"poster_path": "/chgpheyKaJzOVN6u3n2tJupO4aC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Art dealer, Charles Mortdecai, searches for a stolen painting rumored to contain a secret code that gains access to hidden Nazi gold.", "video": false, "id": 210860, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Mortdecai", "tagline": "Sophistication Has a Name.", "vote_count": 65, "homepage": "http://mortdecaithemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3045616", "adult": false, "backdrop_path": "/fodTLXCoyxB9rbZ7dQacjw20KLQ.jpg", "production_companies": [{"name": "OddLot Entertainment", "id": 36209}, {"name": "Mad Chance", "id": 1757}, {"name": "Huayi Brothers Media", "id": 39649}], "release_date": "2015-01-23", "popularity": 7.4219198353092, "original_title": "Mortdecai", "budget": 60000000, "cast": [{"name": "Johnny Depp", "character": "Charles Mortdecai", "id": 85, "credit_id": "52fe4d87c3a368484e1ee10d", "cast_id": 3, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Johanna Mortdecai", "id": 12052, "credit_id": "52fe4d87c3a368484e1ee115", "cast_id": 5, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Ewan McGregor", "character": "Inspektor Alistair Martland", "id": 3061, "credit_id": "52fe4d87c3a368484e1ee119", "cast_id": 6, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Jock Strapp", "id": 6162, "credit_id": "54bad977c3a3684046001c53", "cast_id": 12, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Olivia Munn", "character": "Georgina Krampf", "id": 81364, "credit_id": "52fe4d87c3a368484e1ee111", "cast_id": 4, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 4}, {"name": "Jeff Goldblum", "character": "Krampf", "id": 4785, "credit_id": "52fe4d87c3a368484e1ee12d", "cast_id": 11, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 5}, {"name": "Jonny Pasvolsky", "character": "Emil Strago", "id": 75130, "credit_id": "52fe4d87c3a368484e1ee121", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Michael Culkin", "character": "Sir Graham Archer", "id": 8445, "credit_id": "54c214a39251416e6000cb6a", "cast_id": 14, "profile_path": "/ROLw9EhtO44DPwdRrmX6RyFPZN.jpg", "order": 7}, {"name": "Ulrich Thomsen", "character": "Romanov", "id": 4455, "credit_id": "54c2150792514124ed00336d", "cast_id": 15, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 8}, {"name": "Alec Utgoff", "character": "Dmitri", "id": 1196960, "credit_id": "52fe4d87c3a368484e1ee125", "cast_id": 9, "profile_path": "/sO96ld7tkq53XGnfxMZDK5aZVBh.jpg", "order": 9}, {"name": "Guy Burnet", "character": "Maurice", "id": 545195, "credit_id": "52fe4d87c3a368484e1ee11d", "cast_id": 7, "profile_path": null, "order": 10}, {"name": "Jamie Bernadette", "character": "Bikini Babe", "id": 138860, "credit_id": "54bad99892514148b0003e00", "cast_id": 13, "profile_path": null, "order": 11}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe4d87c3a368484e1ee103", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 5.8, "runtime": 106}, "14254": {"poster_path": "/2EK387xtxj7ypUXKXdoV8RRYXga.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 41624046, "overview": "Anna returns home after spending time in a psychiatric facility following her mother's tragic death and discovers that her mother's former nurse, Rachel, has moved into their house and become engaged to her father, Steven. Soon after she learns this shocking news, Anna is visited by her mother's ghost, who warns her that Rachel has evil intentions.", "video": false, "id": 14254, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Uninvited", "tagline": "Can you believe what you see?", "vote_count": 86, "homepage": "http://www.uninvitedmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0815245", "adult": false, "backdrop_path": "/wfHmHHL1EVv0WOnJlpF82oj7yRX.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Cold Spring Pictures", "id": 2363}, {"name": "The Montecito Picture Company", "id": 2364}, {"name": "MacDonald/Parkes Productions", "id": 384}, {"name": "Medien 5 Filmproduktion", "id": 23856}], "release_date": "2009-01-30", "popularity": 0.241095308894203, "original_title": "The Uninvited", "budget": 0, "cast": [{"name": "Emily Browning", "character": "Anna", "id": 70456, "credit_id": "52fe45df9251416c750655af", "cast_id": 1, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 0}, {"name": "Arielle Kebbel", "character": "Alex", "id": 20373, "credit_id": "52fe45df9251416c750655b3", "cast_id": 2, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 1}, {"name": "David Strathairn", "character": "Steven", "id": 11064, "credit_id": "52fe45df9251416c750655b7", "cast_id": 3, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Elizabeth Banks", "character": "Rachael", "id": 9281, "credit_id": "52fe45df9251416c750655bb", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 3}, {"name": "Maya Massar", "character": "Mom", "id": 172997, "credit_id": "52fe45df9251416c75065601", "cast_id": 17, "profile_path": "/wEqC0RkeyTVmknuKZKL5RQYuqIe.jpg", "order": 4}, {"name": "Kevin McNulty", "character": "Sheriff Emery", "id": 27111, "credit_id": "52fe45df9251416c75065605", "cast_id": 18, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 5}, {"name": "Jesse Moss", "character": "Matthew Hendricks", "id": 59926, "credit_id": "52fe45df9251416c75065609", "cast_id": 19, "profile_path": "/d4FY9ZdC5imLXq3wp6eCBUjy8vq.jpg", "order": 6}, {"name": "Dean Paul Gibson", "character": "Dr. Silberling", "id": 168565, "credit_id": "52fe45df9251416c7506560d", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Heather Doerksen", "character": "Mildred Kemp", "id": 83423, "credit_id": "52fe45df9251416c75065611", "cast_id": 21, "profile_path": "/nIF1GLQ2WPGS5pdogVGhOm2nYmh.jpg", "order": 8}], "directors": [{"name": "Charles Guard", "department": "Directing", "job": "Director", "credit_id": "52fe45df9251416c750655c1", "profile_path": null, "id": 81201}, {"name": "Thomas Guard", "department": "Directing", "job": "Director", "credit_id": "52fe45df9251416c750655d3", "profile_path": null, "id": 223886}], "vote_average": 6.1, "runtime": 87}, "10022": {"poster_path": "/relmzmNmlF8EkyYJy2kJjXjxiMi.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113006880, "overview": "Disgraced Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.", "video": false, "id": 10022, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Pacifier", "tagline": "Welcome to the infantry.", "vote_count": 189, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0395699", "adult": false, "backdrop_path": "/dOoVzgreblVRuUR0NaFevXxls8T.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2005-03-04", "popularity": 1.07290163555999, "original_title": "The Pacifier", "budget": 56000000, "cast": [{"name": "Vin Diesel", "character": "Shane Wolf", "id": 12835, "credit_id": "52fe43099251416c7500111b", "cast_id": 15, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Lauren Graham", "character": "Principal Claire Fletcher", "id": 16858, "credit_id": "52fe43099251416c7500111f", "cast_id": 16, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 1}, {"name": "Faith Ford", "character": "Julie Plummer", "id": 62054, "credit_id": "52fe43099251416c75001123", "cast_id": 17, "profile_path": "/sUF4Xpbzb2AI4f3l9lt8Ld3KY2O.jpg", "order": 2}, {"name": "Brittany Snow", "character": "Zoe Plummer", "id": 29221, "credit_id": "52fe43099251416c75001127", "cast_id": 18, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 3}, {"name": "Max Thieriot", "character": "Seth Plummer", "id": 41883, "credit_id": "52fe430a9251416c75001131", "cast_id": 20, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 4}, {"name": "Carol Kane", "character": "Helga", "id": 10556, "credit_id": "52fe430a9251416c75001135", "cast_id": 21, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 5}, {"name": "Tate Donovan", "character": "Howard Plummer", "id": 15455, "credit_id": "52fe430a9251416c75001139", "cast_id": 22, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 6}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe43099251416c750010cf", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.6, "runtime": 95}, "6068": {"poster_path": "/H0xSwk150VJY3mVB0QxFk8L0r7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164000000, "overview": "When Quinn, a grouchy pilot living the good life in the South Pacific, agrees to transfer a savvy fashion editor, Robin, to Tahiti, he ends up stranded on a deserted island with her after their plane crashes. The pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.", "video": false, "id": 6068, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Six Days Seven Nights", "tagline": "After this week in paradise, they\u2019re going to need a vacation.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120828", "adult": false, "backdrop_path": "/yeK1MPP6wDAnf4wATPqRfMvXHSS.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-06-12", "popularity": 0.578092362424936, "original_title": "Six Days Seven Nights", "budget": 70000000, "cast": [{"name": "Harrison Ford", "character": "Quinn Harris", "id": 3, "credit_id": "52fe443bc3a36847f8089c0b", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Anne Heche", "character": "Robin Monroe", "id": 8256, "credit_id": "52fe443bc3a36847f8089c0f", "cast_id": 2, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Frank Martin", "id": 14409, "credit_id": "52fe443bc3a36847f8089c19", "cast_id": 4, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Jacqueline Obradors", "character": "Angelica", "id": 49818, "credit_id": "52fe443bc3a36847f8089c41", "cast_id": 11, "profile_path": "/p7QydGjTdM6sya62gSvMNMEqMT4.jpg", "order": 3}, {"name": "Temuera Morrison", "character": "Jager", "id": 7242, "credit_id": "52fe443bc3a36847f8089c45", "cast_id": 12, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 4}, {"name": "Allison Janney", "character": "Marjorie", "id": 19, "credit_id": "52fe443bc3a36847f8089c49", "cast_id": 13, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 5}, {"name": "Cliff Curtis", "character": "Pierce", "id": 7248, "credit_id": "531233ed925141101f002730", "cast_id": 14, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 6}, {"name": "Danny Trejo", "character": "Pierce", "id": 11160, "credit_id": "53123414925141101f002736", "cast_id": 22, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 14}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089c15", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.8, "runtime": 98}, "6069": {"poster_path": "/bbSI4kC8LlqwQPUUlJbcq6sw1qT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63766510, "overview": "Three single women in a picturesque village have their wishes granted - at a cost - when a mysterious and flamboyant man arrives in their lives.", "video": false, "id": 6069, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "The Witches of Eastwick", "tagline": "Three Beautiful Women. One Lucky Devil.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094332", "adult": false, "backdrop_path": "/uwOY1y1YrtSnHPAlxiyRfCdGrFB.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-06-12", "popularity": 0.283188955091255, "original_title": "The Witches of Eastwick", "budget": 0, "cast": [{"name": "Jack Nicholson", "character": "Daryl Van Horne", "id": 514, "credit_id": "52fe443bc3a36847f8089c73", "cast_id": 1, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Cher", "character": "Alexandra Medford", "id": 38225, "credit_id": "52fe443bc3a36847f8089c77", "cast_id": 2, "profile_path": "/nLi4qPXWEuhjc31bmbeINLVZ8zS.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Jane Spofford", "id": 4038, "credit_id": "52fe443bc3a36847f8089c7b", "cast_id": 3, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Sukie Ridgemont", "id": 1160, "credit_id": "52fe443bc3a36847f8089c7f", "cast_id": 4, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Veronica Cartwright", "character": "Felicia Alden", "id": 5047, "credit_id": "52fe443bc3a36847f8089c83", "cast_id": 5, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 4}, {"name": "Richard Jenkins", "character": "Clyde Alden", "id": 28633, "credit_id": "52fe443bc3a36847f8089c87", "cast_id": 6, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 5}, {"name": "Keith Jochim", "character": "Walter Neff", "id": 49820, "credit_id": "52fe443bc3a36847f8089cbb", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Carel Struycken", "character": "Fidel", "id": 9631, "credit_id": "52fe443bc3a36847f8089cbf", "cast_id": 16, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 7}, {"name": "Helen Lloyd Breed", "character": "Mrs. Biddle", "id": 49821, "credit_id": "52fe443bc3a36847f8089cc3", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Caroline Struzik", "character": "Carol Medford", "id": 49822, "credit_id": "52fe443bc3a36847f8089cc7", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089c8d", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 6.1, "runtime": 118}, "6073": {"poster_path": "/a7PuqWv0ENFg8dt9k51AID6P1kh.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147845033, "overview": "Jerry Welbach is given two ultimatums. His mob boss wants him to travel to Mexico to get a priceless antique pistol called \"The Mexican\" or he will suffer the consequences. The other ultimatum comes from his girlfriend Samantha, who wants him to end his association with the mob. Jerry figures that being alive, although in trouble with his girlfriend is the better alternative so he heads south of the border. Finding the pistol is easy but getting it home is a whole other matter. The pistol supposedly carries a curse - a curse Jerry is given every reason to believe, especially when Samantha is held hostage by the gay hit man Leroy to ensure the safe return of the pistol.", "video": false, "id": 6073, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "The Mexican", "tagline": "love with the safety off", "vote_count": 117, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0236493", "adult": false, "backdrop_path": "/elTdq4oZ2jmYFrG6OEHnh4wpklC.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2001-03-01", "popularity": 1.12289598472146, "original_title": "The Mexican", "budget": 57000000, "cast": [{"name": "Brad Pitt", "character": "Jerry Welbach", "id": 287, "credit_id": "52fe443bc3a36847f8089dd5", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Samantha Barzel", "id": 1204, "credit_id": "52fe443bc3a36847f8089dd9", "cast_id": 2, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Winston Baldry", "id": 4691, "credit_id": "52fe443bc3a36847f8089ddd", "cast_id": 3, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "J.K. Simmons", "character": "Ted Slocum", "id": 18999, "credit_id": "52fe443bc3a36847f8089de1", "cast_id": 4, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 3}, {"name": "Gene Hackman", "character": "Arnold Margolese", "id": 193, "credit_id": "52fe443bc3a36847f8089de5", "cast_id": 5, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 4}, {"name": "Bob Balaban", "character": "Bernie Nayman", "id": 12438, "credit_id": "52fe443bc3a36847f8089e13", "cast_id": 13, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 5}, {"name": "Michael Cerveris", "character": "Frank", "id": 49827, "credit_id": "52fe443bc3a36847f8089e17", "cast_id": 14, "profile_path": "/1cMSbaBloNvWYHLPRxeSHoHrj1U.jpg", "order": 6}, {"name": "Richard Coca", "character": "Car Thief #1", "id": 157609, "credit_id": "52ffc251c3a368400f099a67", "cast_id": 16, "profile_path": "/pbCDsYaIFzAYHJ5vBvjPLYEsC7O.jpg", "order": 7}, {"name": "David Krumholtz", "character": "Beck", "id": 38582, "credit_id": "52ffc2fec3a3683fdc0a0fc8", "cast_id": 17, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 8}, {"name": "Castulo Guerra", "character": "Joe the Pawnshop Owner", "id": 3979, "credit_id": "5300dedbc3a368400638f679", "cast_id": 19, "profile_path": "/njap7gZlVKHMKFb0aMQB17kMUNh.jpg", "order": 10}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089deb", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 5.6, "runtime": 123}, "6075": {"poster_path": "/tGPqPHuOCbyFxwllrYgKkPDu9xB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36516012, "overview": "A Puerto-Rican ex-con, just released from prison, pledges to stay away from drugs and violence despite the pressure around him and lead on to a better life outside of NYC.", "video": false, "id": 6075, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Carlito's Way", "tagline": "He's got a good future if he can live past next week.", "vote_count": 109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106519", "adult": false, "backdrop_path": "/dqf2uDLUDhqJIaPAZNVoIpTUeq0.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Epic Productions", "id": 1988}, {"name": "Bregman/Baer Productions", "id": 11393}], "release_date": "1993-11-10", "popularity": 1.42298402269061, "original_title": "Carlito's Way", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Carlito Brigante", "id": 1158, "credit_id": "52fe443bc3a36847f8089edb", "cast_id": 4, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Sean Penn", "character": "David Kleinfeld", "id": 2228, "credit_id": "52fe443bc3a36847f8089edf", "cast_id": 5, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Penelope Ann Miller", "character": "Gail", "id": 14698, "credit_id": "52fe443bc3a36847f8089ee3", "cast_id": 6, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 2}, {"name": "John Leguizamo", "character": "Benny Blanco", "id": 5723, "credit_id": "52fe443bc3a36847f8089ee7", "cast_id": 7, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 3}, {"name": "Ingrid Rogers", "character": "Steffie", "id": 47769, "credit_id": "52fe443bc3a36847f8089eeb", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Pachanga", "id": 40481, "credit_id": "52fe443bc3a36847f8089eef", "cast_id": 9, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Adrian Pasdar", "character": "Frankie Taglialucci", "id": 17304, "credit_id": "52fe443bc3a36847f8089ef3", "cast_id": 10, "profile_path": "/yNqnfWmzlDC5qB5Ll6PgK2JfGIi.jpg", "order": 6}, {"name": "Viggo Mortensen", "character": "Lalin", "id": 110, "credit_id": "52fe443bc3a36847f8089ef7", "cast_id": 11, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 7}, {"name": "James Rebhorn", "character": "Norwalk", "id": 8986, "credit_id": "52fe443bc3a36847f8089efb", "cast_id": 12, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 8}, {"name": "Joseph Siravo", "character": "Vincent Taglialucci", "id": 47770, "credit_id": "52fe443bc3a36847f8089eff", "cast_id": 13, "profile_path": "/rh9Vt4JH5MZKMolhOzElTBEWic5.jpg", "order": 9}, {"name": "Richard Foronjy", "character": "Pete Amadesso", "id": 47771, "credit_id": "52fe443bc3a36847f8089f03", "cast_id": 14, "profile_path": "/rz8GA26g2uISlcjfVOnSFby6fMw.jpg", "order": 10}, {"name": "Jorge Porcel", "character": "Saso", "id": 47772, "credit_id": "52fe443bc3a36847f8089f07", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "John Ortiz", "character": "Guarijo", "id": 40543, "credit_id": "52fe443bc3a36847f8089f0b", "cast_id": 16, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 12}, {"name": "Paul Mazursky", "character": "Richter Feinstein", "id": 47773, "credit_id": "52fe443bc3a36847f8089f0f", "cast_id": 17, "profile_path": "/6YUp0e6fM0OmrB6STNY1ESwHcdG.jpg", "order": 13}, {"name": "Vincent Pastore", "character": "Copa Wiseguy", "id": 47774, "credit_id": "52fe443bc3a36847f8089f13", "cast_id": 18, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 14}, {"name": "Jon Seda", "character": "Dominikaner", "id": 288, "credit_id": "52fe443bc3a36847f8089f17", "cast_id": 19, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 15}, {"name": "Marc Anthony", "character": "S\u00e4nger in Disco", "id": 47775, "credit_id": "52fe443bc3a36847f8089f1b", "cast_id": 20, "profile_path": "/b6E5BCQkOXlxT1E4nHRyOpehuYU.jpg", "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089ed1", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 7.2, "runtime": 144}, "169917": {"poster_path": "/xxe77USOk2tPnq7G4cL42gf1OxQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53181600, "overview": "Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.", "video": false, "id": 169917, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "A Walk Among the Tombstones", "tagline": "Some people are afraid of all the wrong things", "vote_count": 347, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365907", "adult": false, "backdrop_path": "/e56QsaJy1weAUukiK2ZmIGVUALF.jpg", "production_companies": [{"name": "Traveling Picture Show Company (TPSC)", "id": 39043}, {"name": "Jersey Films", "id": 216}, {"name": "Free State Pictures", "id": 40106}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Da Vinci Media Ventures", "id": 40107}, {"name": "Double Feature Films", "id": 215}], "release_date": "2014-09-19", "popularity": 5.10708695087475, "original_title": "A Walk Among the Tombstones", "budget": 28000000, "cast": [{"name": "Liam Neeson", "character": "Matthew Scudder", "id": 3896, "credit_id": "52fe4cedc3a36847f82450a1", "cast_id": 7, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Dan Stevens", "character": "Kenny Kristo", "id": 221018, "credit_id": "52fe4cedc3a36847f82450a5", "cast_id": 8, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 1}, {"name": "David Harbour", "character": "Ray", "id": 35029, "credit_id": "5303f333c3a3683aa100180e", "cast_id": 16, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 2}, {"name": "Boyd Holbrook", "character": "Peter Kristo", "id": 467645, "credit_id": "54ca1574925141678900a700", "cast_id": 77, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 3}, {"name": "Adam David Thompson", "character": "Albert", "id": 1216908, "credit_id": "54f0a221c3a3682e71001d47", "cast_id": 79, "profile_path": "/4U299AQGRLiJpAkNQZDkJZzt7mu.jpg", "order": 4}, {"name": "Razane Jammal", "character": "Carrie Kristo", "id": 1075789, "credit_id": "54f0a3819251410ebe0015ec", "cast_id": 80, "profile_path": "/pPgEDnrzVhUShtsp5bP6MeVhceg.jpg", "order": 5}, {"name": "Astro", "character": "TJ", "id": 544123, "credit_id": "5303f366c3a3683a7a003765", "cast_id": 21, "profile_path": "/w544ooVz3Gcws163vkvLk3d2D3z.jpg", "order": 6}, {"name": "\u00d3lafur Darri \u00d3lafsson", "character": "Jonas Loogan", "id": 110902, "credit_id": "5303f33cc3a3683a6d000bde", "cast_id": 17, "profile_path": "/fDUMXqM9UALD86fiC076XVgitDO.jpg", "order": 7}, {"name": "Marina Squerciati", "character": "Hostess", "id": 1100549, "credit_id": "5303f302c3a3683a6d000a2a", "cast_id": 11, "profile_path": "/wIHVGmFXqSeErZZN6q3mpXXmrPO.jpg", "order": 8}, {"name": "Sebastian Roch\u00e9", "character": "Yuri Landau", "id": 23789, "credit_id": "5303f30dc3a3683a6d000a42", "cast_id": 12, "profile_path": "/bOSLShSCLhZ4VtbgInX6SjhqlRb.jpg", "order": 9}, {"name": "Mark Consuelos", "character": "Reuben", "id": 112143, "credit_id": "5303f316c3a3683a91000c66", "cast_id": 13, "profile_path": "/dDb9g7xYYFKoD45q9E1PiWAhKoK.jpg", "order": 10}, {"name": "Whitney Able", "character": "Twelve Step Girl", "id": 56677, "credit_id": "5303f31fc3a3683a7a003387", "cast_id": 14, "profile_path": "/6y5KdwVTlB3o9ZGJ9iIoSCW850M.jpg", "order": 11}, {"name": "Maurice Compte", "character": "Ortiz", "id": 48530, "credit_id": "5303f329c3a3683ab2001481", "cast_id": 15, "profile_path": "/gt8vrkSOmv4dt5AfIcVsevNQ05b.jpg", "order": 12}, {"name": "Marielle Heller", "character": "Marie Gotteskind", "id": 177532, "credit_id": "5303f347c3a3683ab20017fe", "cast_id": 18, "profile_path": "/nhJcxbFAeHLuNEbsHU9GaaRZj2i.jpg", "order": 13}, {"name": "Annika Peterson", "character": "Anita", "id": 76464, "credit_id": "5303f35bc3a3683a8900382b", "cast_id": 20, "profile_path": "/bi9MLY4H6UNHtzJtfPAxxNM5X3.jpg", "order": 14}, {"name": "Frank De Julio", "character": "Eduardo Solomon", "id": 206900, "credit_id": "54117ec7c3a368020f000c9c", "cast_id": 23, "profile_path": "/qPUo6sUAiIiNyxCQPKBt7UC5uoO.jpg", "order": 15}, {"name": "Laura Birn", "character": "Leila Alvarez", "id": 212815, "credit_id": "54251e28c3a3680876005340", "cast_id": 24, "profile_path": "/hUoWTbiGH9VsXTotzthe8yXLHMd.jpg", "order": 16}, {"name": "Toshiko Onizawa", "character": "Witness", "id": 1294270, "credit_id": "5303f352c3a3683aab001934", "cast_id": 19, "profile_path": "/8xSe8XoG0RBZUCC1Yiue7YuSwK8.jpg", "order": 17}, {"name": "Patrick McDade", "character": "Bar Owner", "id": 1128450, "credit_id": "5536505b9251416518002a46", "cast_id": 81, "profile_path": null, "order": 18}, {"name": "Luciano Acuna Jr.", "character": "Dominican Banger #1", "id": 1400512, "credit_id": "553650e4c3a368447c0022c9", "cast_id": 82, "profile_path": null, "order": 19}, {"name": "Hans Marrero", "character": "Dominican Banger #2", "id": 131423, "credit_id": "553651a992514147160037af", "cast_id": 83, "profile_path": null, "order": 20}, {"name": "Kim Rosen", "character": "Waitress - Jenny", "id": 1457425, "credit_id": "553653a6c3a368447c00235e", "cast_id": 84, "profile_path": null, "order": 21}, {"name": "Eric Nelsen", "character": "Howie", "id": 1362512, "credit_id": "55365571c3a36817850028cd", "cast_id": 85, "profile_path": "/pRS0lQPsRV24eqLvsYPnEgxeWfN.jpg", "order": 22}, {"name": "Jon Goracy", "character": "Bag Boy", "id": 1457427, "credit_id": "553655b0c3a368222600b332", "cast_id": 86, "profile_path": null, "order": 23}, {"name": "Stephanie Andujar", "character": "Cashier", "id": 109562, "credit_id": "553656e092514152cf002c33", "cast_id": 87, "profile_path": null, "order": 24}, {"name": "Al Nazemian", "character": "Manager - Roland", "id": 1218124, "credit_id": "5536577b92514152cf002c47", "cast_id": 88, "profile_path": null, "order": 25}, {"name": "Sophia Frank", "character": "Teenage Cashier", "id": 1457442, "credit_id": "553659aa92514166aa003563", "cast_id": 89, "profile_path": null, "order": 26}, {"name": "Susham Bedi", "character": "Mrs. Youness", "id": 1232507, "credit_id": "55365a769251416518002c1f", "cast_id": 90, "profile_path": null, "order": 27}, {"name": "Purva Bedi", "character": "Neighbor", "id": 109024, "credit_id": "55365af492514142b2002d98", "cast_id": 91, "profile_path": "/c1hnJKpSqWSOlSVdSqnIJAGbeYC.jpg", "order": 28}, {"name": "Novella Nelson", "character": "Librarian", "id": 55272, "credit_id": "55365bb5c3a368222600b3f7", "cast_id": 92, "profile_path": "/bAx0RY3x9ljh3Fwo8Xy4OlzIkVp.jpg", "order": 29}, {"name": "Natia Dune", "character": "Nurse Anna", "id": 1431807, "credit_id": "55365e70c3a368222600b426", "cast_id": 93, "profile_path": null, "order": 30}, {"name": "Genevieve Adams", "character": "Waitress - The Flame", "id": 1375636, "credit_id": "55365edd92514152cf002cfd", "cast_id": 94, "profile_path": "/oxzLpiRniaIUHZa3wBRvtKFNX2L.jpg", "order": 31}, {"name": "Liana De Laurent", "character": "Yuri's Wife", "id": 1457460, "credit_id": "55365f6392514152cf002d07", "cast_id": 95, "profile_path": null, "order": 32}, {"name": "Danielle Rose Russell", "character": "Lucia", "id": 1457461, "credit_id": "55365fdbc3a368222600b44b", "cast_id": 96, "profile_path": null, "order": 33}, {"name": "David Anzuelo", "character": "Bodega Owner", "id": 138027, "credit_id": "553660aac3a36815ac002a30", "cast_id": 97, "profile_path": "/g2nVgJvSxCzSQKj7KYwnqiQczGp.jpg", "order": 34}, {"name": "Samuel Mercedes", "character": "Jacinto", "id": 1457463, "credit_id": "5536610592514166aa00360f", "cast_id": 98, "profile_path": null, "order": 35}, {"name": "Mike Figueroa", "character": "Tattooed Man", "id": 100707, "credit_id": "553661e99251416518002cb5", "cast_id": 99, "profile_path": null, "order": 36}, {"name": "Mike Carlsen", "character": "Flannel Shirt", "id": 1457476, "credit_id": "5536627a92514166aa00363c", "cast_id": 100, "profile_path": null, "order": 37}, {"name": "Leon Addison Brown", "character": "Stover", "id": 171601, "credit_id": "5536641ec3a36815ac002a8c", "cast_id": 101, "profile_path": null, "order": 38}, {"name": "Damion Lee", "character": "Baller #1", "id": 1457478, "credit_id": "55366465c3a368222600b4e8", "cast_id": 102, "profile_path": null, "order": 39}, {"name": "Jolly Abraham", "character": "Bellevue Doctor", "id": 187776, "credit_id": "553665a7c3a368523e006e8f", "cast_id": 103, "profile_path": null, "order": 40}, {"name": "Nina Polan", "character": "Old Woman", "id": 1457479, "credit_id": "553665f2c3a36831dd001383", "cast_id": 104, "profile_path": null, "order": 41}, {"name": "Briana Marin", "character": "Screaming Woman", "id": 1157088, "credit_id": "553666dbc3a3681785002a85", "cast_id": 105, "profile_path": "/nPfddD8cKuZfUgU12odBpZmauMj.jpg", "order": 42}, {"name": "Arthur Gerunda", "character": "Dani", "id": 1348209, "credit_id": "5536673a92514166aa0036a1", "cast_id": 106, "profile_path": null, "order": 43}, {"name": "Fabrizio Brienza", "character": "Thug", "id": 1340885, "credit_id": "553667fec3a368523e006eb1", "cast_id": 107, "profile_path": null, "order": 44}, {"name": "Dennis Jay Funny", "character": "AA Speaker", "id": 1457481, "credit_id": "553668629251414201000985", "cast_id": 108, "profile_path": null, "order": 45}, {"name": "Chinasa Ogbuagu", "character": "AA Woman - Denise", "id": 205718, "credit_id": "55366ac6c3a36815ac002af9", "cast_id": 109, "profile_path": null, "order": 46}, {"name": "Louise G. Col\u00f3n", "character": "Latin Old Woman", "id": 1457484, "credit_id": "55366b059251416518002d5e", "cast_id": 110, "profile_path": null, "order": 47}], "directors": [{"name": "Scott Frank", "department": "Directing", "job": "Director", "credit_id": "52fe4cedc3a36847f824507f", "profile_path": "/hV0DEtOsiiQAMb7Oqo2VEII8o2l.jpg", "id": 2199}], "vote_average": 6.3, "runtime": 113}, "88005": {"poster_path": "/86v2AXXQP6mKNn3Nne910h7UlNK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6619173, "overview": "As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.", "video": false, "id": 88005, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Seeking a Friend for the End of the World", "tagline": "Nice knowing you.", "vote_count": 210, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1307068", "adult": false, "backdrop_path": "/14twu14BYNVyOBs5OxoawaYNxg.jpg", "production_companies": [{"name": "Indian Paintbrush", "id": 9350}, {"name": "Mandate Pictures", "id": 771}, {"name": "Focus Features", "id": 10146}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2012-06-22", "popularity": 0.584034782495333, "original_title": "Seeking a Friend for the End of the World", "budget": 10000000, "cast": [{"name": "Keira Knightley", "character": "Penny", "id": 116, "credit_id": "52fe49e59251416c910bc63f", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Steve Carell", "character": "Dodge", "id": 4495, "credit_id": "52fe49e59251416c910bc643", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Melanie Lynskey", "character": "Karen", "id": 15091, "credit_id": "52fe49e59251416c910bc647", "cast_id": 4, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 2}, {"name": "Patton Oswalt", "character": "Roache", "id": 10872, "credit_id": "52fe49e59251416c910bc64b", "cast_id": 5, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Frank", "id": 8349, "credit_id": "52fe49e59251416c910bc66d", "cast_id": 11, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "William Petersen", "character": "Trucker", "id": 52267, "credit_id": "52fe49e59251416c910bc671", "cast_id": 12, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 5}, {"name": "Rob Corddry", "character": "Warren", "id": 52997, "credit_id": "52fe49e59251416c910bc675", "cast_id": 13, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 6}, {"name": "Gillian Jacobs", "character": "Waitress / Katie", "id": 94098, "credit_id": "52fe49e59251416c910bc679", "cast_id": 14, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 7}, {"name": "Adam Brody", "character": "Owen", "id": 11702, "credit_id": "52fe49e59251416c910bc67d", "cast_id": 15, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 8}, {"name": "Amy Schumer", "character": "Lacey", "id": 440414, "credit_id": "53fe8d850e0a262df2002f26", "cast_id": 25, "profile_path": "/fIlfZxxdEPQIyzokwYs73X571yk.jpg", "order": 9}], "directors": [{"name": "Lorene Scafaria", "department": "Directing", "job": "Director", "credit_id": "52fe49e59251416c910bc63b", "profile_path": null, "id": 71551}], "vote_average": 6.1, "runtime": 101}, "42684": {"poster_path": "/AdadT2HuwHkYWxbzme4QP77M6Wt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66821036, "overview": "When strange lights descend on the city of Los Angeles, people are drawn outside like moths to a flame where an extraterrestrial force threatens to swallow the entire human population off the face of the Earth. Now the band of survivors must fight for their lives as the world unravels around them.", "video": false, "id": 42684, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Skyline", "tagline": "Don't look up", "vote_count": 160, "homepage": "http://www.iamrogue.com/skyline", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1564585", "adult": false, "backdrop_path": "/7DDQp1l72rXjYZRwEgHg2TkbPcH.jpg", "production_companies": [{"name": "Hydraulx", "id": 10936}, {"name": "Transmission Pictures", "id": 12158}, {"name": "Relativity Media", "id": 7295}, {"name": "Rat Entertainment", "id": 12007}, {"name": "Rogue Pictures", "id": 134}], "release_date": "2010-11-12", "popularity": 0.859449446583773, "original_title": "Skyline", "budget": 10000000, "cast": [{"name": "Eric Balfour", "character": "Jarrod", "id": 34489, "credit_id": "52fe4611c3a36847f80ead35", "cast_id": 1, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 0}, {"name": "Scottie Thompson", "character": "Elaine", "id": 128628, "credit_id": "52fe4611c3a36847f80ead39", "cast_id": 2, "profile_path": "/o7S0MQHMiylNurOcdxAT85NXJP.jpg", "order": 1}, {"name": "David Zayas", "character": "Oliver", "id": 22821, "credit_id": "52fe4611c3a36847f80ead3d", "cast_id": 3, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 2}, {"name": "Donald Faison", "character": "Terry", "id": 49002, "credit_id": "52fe4611c3a36847f80ead41", "cast_id": 4, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 3}, {"name": "Brittany Daniel", "character": "Candice", "id": 35476, "credit_id": "52fe4611c3a36847f80ead45", "cast_id": 5, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 4}, {"name": "Crystal Reed", "character": "Denise", "id": 128629, "credit_id": "52fe4611c3a36847f80ead49", "cast_id": 6, "profile_path": "/fGINQ7WhuSOr6FkMHCWScWk9bms.jpg", "order": 5}, {"name": "Neil Hopkins", "character": "Ray", "id": 59755, "credit_id": "52fe4611c3a36847f80ead4d", "cast_id": 7, "profile_path": "/lM3qUSG1jjD3EofZnsv4pE7TzUa.jpg", "order": 6}, {"name": "J. Paul Boehmer", "character": "Colin", "id": 128630, "credit_id": "52fe4611c3a36847f80ead51", "cast_id": 8, "profile_path": "/ivatzHFemBYmmrwH9eB5UohmGRN.jpg", "order": 7}, {"name": "Tanya Newbould", "character": "Jen", "id": 128631, "credit_id": "52fe4611c3a36847f80ead55", "cast_id": 9, "profile_path": "/rLlIXGGH4nF4Efp0OhL4q1EkQJo.jpg", "order": 8}, {"name": "Pam Levin", "character": "Cindy", "id": 128632, "credit_id": "52fe4611c3a36847f80ead59", "cast_id": 10, "profile_path": "/ujfi9qJXgDn4BJsLefLMjJRhisv.jpg", "order": 9}, {"name": "Phet Mahathongdy", "character": "Mandy", "id": 128633, "credit_id": "52fe4611c3a36847f80ead5d", "cast_id": 11, "profile_path": "/6R5fKNfzaAUQhVxIY5ZGFFqhVh7.jpg", "order": 10}, {"name": "Tony Black", "character": "Derek", "id": 128634, "credit_id": "52fe4611c3a36847f80ead61", "cast_id": 12, "profile_path": "/3WoVQGxIB6ZCWcrr0UHztWW60RK.jpg", "order": 11}], "directors": [{"name": "Colin Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4611c3a36847f80ead67", "profile_path": "/mM95v1bWGdz8Ira7K4drueKRT01.jpg", "id": 6037}, {"name": "Greg Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4611c3a36847f80ead7f", "profile_path": "/xcEcDFHoTkIuOkLeWRuX3ksJmy1.jpg", "id": 6038}], "vote_average": 4.7, "runtime": 100}, "14301": {"poster_path": "/zlAjTMaWakkoJidwsYO0QNwtPqy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3, "overview": "Dr. Horrible, an aspiring supervillain with his own video blog, is attempting to join the prestigious Evil League of Evil (led by the legendary \"thoroughbred of sin\", Bad Horse), but his plans are usually foiled by the egotistical superhero Captain Hammer. Dr. Horrible's life is thrown for a loop when he falls in love with Penny, a beautiful and optimistic advocate for the homeless he meets at the laundromat.", "video": false, "id": 14301, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 878, "name": "Science Fiction"}], "title": "Dr. Horrible's Sing-Along Blog", "tagline": "He has a Ph.D. in horribleness!", "vote_count": 73, "homepage": "http://www.drhorrible.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1227926", "adult": false, "backdrop_path": "/6uqmwt36mogSf07j2Wk87PDzbF0.jpg", "production_companies": [], "release_date": "2008-07-15", "popularity": 0.266183432784794, "original_title": "Dr. Horrible's Sing-Along Blog", "budget": 200000, "cast": [{"name": "Neil Patrick Harris", "character": "Billy / ... (3 episodes, 2008)", "id": 41686, "credit_id": "52fe45e49251416c75065fdb", "cast_id": 1, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Nathan Fillion", "character": "Captain Hammer (3 episodes, 2008)", "id": 51797, "credit_id": "52fe45e49251416c75065fdf", "cast_id": 2, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 1}, {"name": "Felicia Day", "character": "Penny (3 episodes, 2008)", "id": 76527, "credit_id": "52fe45e49251416c75065fe3", "cast_id": 3, "profile_path": "/mlTqR0XorYqvPvgu1mLVT8Fso6s.jpg", "order": 2}, {"name": "Simon Helberg", "character": "Moist (3 episodes, 2008)", "id": 53863, "credit_id": "52fe45e49251416c75065fe7", "cast_id": 4, "profile_path": "/zic1gEH1qEMHhbm5Vxwp9J2XrAO.jpg", "order": 3}, {"name": "Nick Towne", "character": "Bad Horse Chorus #1 (3 episodes, 2008)", "id": 76531, "credit_id": "52fe45e49251416c75065feb", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jed Whedon", "character": "Bad Horse Chorus #2 / ... (3 episodes, 2008)", "id": 76532, "credit_id": "52fe45e49251416c75065fef", "cast_id": 6, "profile_path": "/bfAKVMn1sCTYXy97vr55Vyl2X8a.jpg", "order": 5}, {"name": "Rob Reinis", "character": "Bad Horse Chorus #3 / ... (3 episodes, 2008)", "id": 76533, "credit_id": "52fe45e49251416c75065ff3", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Otto Michael Penzato", "character": "Van Driver / ... (3 episodes, 2008)", "id": 76534, "credit_id": "52fe45e49251416c75065ff7", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Lance Lanfear", "character": "Hawaiian Shirt Guy (3 episodes, 2008)", "id": 76535, "credit_id": "52fe45e49251416c75065ffb", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe45e49251416c75066001", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 7.6, "runtime": 42}, "22494": {"poster_path": "/jVdh1uwZKRjOZ9AncirPDgCMU3p.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Three men walk into a bar; two geeks and a cynic. They are three ordinary blokes who all have dreams and hopes for an exciting and better future", "video": false, "id": 22494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Frequently Asked Questions About Time Travel", "tagline": "Three guys. One pub. Too much time on their hands.", "vote_count": 51, "homepage": "http://www.faqmovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0910554", "adult": false, "backdrop_path": "/2qzPibT376A2nLxDGdSmD6J4xek.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Dog Lamp Films", "id": 4128}, {"name": "HBO Films", "id": 7429}], "release_date": "2009-04-24", "popularity": 0.247703045828091, "original_title": "Frequently Asked Questions About Time Travel", "budget": 0, "cast": [{"name": "Chris O'Dowd", "character": "Ray", "id": 40477, "credit_id": "52fe4443c3a368484e019053", "cast_id": 1, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 0}, {"name": "Dean Lennox Kelly", "character": "Pete", "id": 1669, "credit_id": "52fe4443c3a368484e019057", "cast_id": 2, "profile_path": "/5YPM68tm2rxpz43cSfoAHdeF7JU.jpg", "order": 1}, {"name": "Anna Faris", "character": "Cassie", "id": 1772, "credit_id": "52fe4443c3a368484e01905b", "cast_id": 3, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Meredith MacNeill", "character": "Millie", "id": 63606, "credit_id": "52fe4443c3a368484e01905f", "cast_id": 4, "profile_path": "/tQior85M2Tm8teA2nYjUVIQBv0h.jpg", "order": 3}, {"name": "Marc Wootton", "character": "Toby", "id": 92574, "credit_id": "52fe4443c3a368484e019063", "cast_id": 5, "profile_path": "/vcQq2epz9CvIOOCaE9T5RW8spB5.jpg", "order": 4}, {"name": "Ray Gardner", "character": "Mellor", "id": 207199, "credit_id": "532575989251411708001ab9", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Nick Ewans", "character": "Barry", "id": 175393, "credit_id": "532575a49251410d950019e3", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Arthur Nightingale", "character": "Old Man", "id": 186275, "credit_id": "532575b39251410c87001a62", "cast_id": 10, "profile_path": "/rmHgVma3jk8snCVkIO7MKCtzxlF.jpg", "order": 7}, {"name": "Paul Adams", "character": "Tramp", "id": 1301293, "credit_id": "532575c59251411544001987", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "John Warman", "character": "Dart Player", "id": 1209055, "credit_id": "532575d8925141154400198b", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Gareth Carrivick", "department": "Directing", "job": "Director", "credit_id": "52fe4443c3a368484e019069", "profile_path": null, "id": 93468}], "vote_average": 7.1, "runtime": 83}, "14306": {"poster_path": "/uyVj4K1DiYpxxRpFYdN1ZWSBJ2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244082376, "overview": "A newly married couple who, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.", "video": false, "id": 14306, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Marley & Me", "tagline": "Heel the love", "vote_count": 307, "homepage": "http://marleyandmemovie.com/", "belongs_to_collection": {"backdrop_path": "/gRoCEiWVcTsV0HxWIezuhVoDiAa.jpg", "poster_path": "/2GTOEdjaUbElrXhH0XhOADDoZxf.jpg", "id": 230532, "name": "Marley & Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0822832", "adult": false, "backdrop_path": "/xu54k4O5F9OlLWncWmXtyQO9Uyj.jpg", "production_companies": [{"name": "Dune Entertainment III", "id": 6332}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "Sunswept Entertainment", "id": 5219}], "release_date": "2008-12-25", "popularity": 0.768212781083633, "original_title": "Marley & Me", "budget": 60000000, "cast": [{"name": "Owen Wilson", "character": "John Grogan", "id": 887, "credit_id": "52fe45e49251416c750660ff", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Jennifer Grogan", "id": 4491, "credit_id": "52fe45e49251416c75066103", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Eric Dane", "character": "Sebastian Tunney", "id": 58115, "credit_id": "52fe45e49251416c75066107", "cast_id": 3, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 2}, {"name": "Kathleen Turner", "character": "Ms. Kornblut", "id": 3391, "credit_id": "52fe45e49251416c7506610b", "cast_id": 4, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Arnie Klein", "id": 1903, "credit_id": "52fe45e49251416c7506610f", "cast_id": 5, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Nathan Gamble", "character": "Patrick (Age 10)", "id": 18052, "credit_id": "52fe45e49251416c75066125", "cast_id": 9, "profile_path": "/zn5ueTFn51JQMzyu5aoIpVMfb48.jpg", "order": 5}, {"name": "Haley Bennett", "character": "Lisa", "id": 58754, "credit_id": "52fe45e49251416c75066129", "cast_id": 10, "profile_path": "/wYmPPXn61F1ecMwIFF8AGla8pKQ.jpg", "order": 6}, {"name": "Ann Dowd", "character": "Dr. Platt", "id": 43366, "credit_id": "52fe45e49251416c7506612d", "cast_id": 11, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 7}, {"name": "Clarke Peters", "character": "Editor", "id": 61011, "credit_id": "52fe45e49251416c75066131", "cast_id": 12, "profile_path": "/7a3OTcJlncY32LDvdTjLS6bTMxh.jpg", "order": 8}, {"name": "Finley Jacobsen", "character": "Conor (Age 8)", "id": 965819, "credit_id": "52fe45e49251416c75066135", "cast_id": 13, "profile_path": "/4dEyL8uoHqf8lqDjPwW2QqRR25q.jpg", "order": 9}, {"name": "Lucy Merriam", "character": "Colleen (Age 5)", "id": 979104, "credit_id": "52fe45e49251416c75066139", "cast_id": 14, "profile_path": "/mmNNDIeuOjnZhTueC6tQTIGjpRn.jpg", "order": 10}, {"name": "Bryce Robinson", "character": "Patrick (Age 7)", "id": 204629, "credit_id": "52fe45e49251416c7506613d", "cast_id": 15, "profile_path": "/12H91Rs1ux1hoWzxAjN9a14Vtmb.jpg", "order": 11}, {"name": "Ben Hyland", "character": "Conor (Age 5)", "id": 979105, "credit_id": "52fe45e49251416c75066141", "cast_id": 16, "profile_path": "/g32doECKvHzsYJPmv8jr0CqY400.jpg", "order": 12}, {"name": "Sarah O'Kelly", "character": "Neighbor Mom", "id": 1077801, "credit_id": "52fe45e49251416c75066145", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Keith Hudson", "character": "Big Guy", "id": 76540, "credit_id": "52fe45e49251416c75066149", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Haley Hudson", "character": "Debby", "id": 159985, "credit_id": "52fe45e49251416c7506614d", "cast_id": 19, "profile_path": "/4He22Zr4W5w2oHUzqnAnxtNe1fa.jpg", "order": 15}, {"name": "Tom Irwin", "character": "Dr. Sherman", "id": 27544, "credit_id": "52fe45e49251416c75066151", "cast_id": 20, "profile_path": "/8veWAQr2kXYL3EP4ZkAjJhVcZGq.jpg", "order": 16}, {"name": "Sandy Martin", "character": "Lori", "id": 53931, "credit_id": "52fe45e59251416c75066159", "cast_id": 22, "profile_path": "/WfdT2V1DxUvoBlgUzeCVq340IH.jpg", "order": 18}, {"name": "Joyce Van Patten", "character": "Mrs. Butterly", "id": 14108, "credit_id": "52fe45e59251416c7506615d", "cast_id": 23, "profile_path": "/wEUXn5Zgz88SZlTLZPrecfxGFOO.jpg", "order": 19}, {"name": "Zabryna Guevara", "character": "OB-GYN Nurse", "id": 171955, "credit_id": "52fe45e59251416c75066161", "cast_id": 24, "profile_path": "/n2BnG5lNW5Bxj4c27L4DcUb9HM8.jpg", "order": 20}, {"name": "Megan Grace", "character": "Secretary", "id": 1077803, "credit_id": "52fe45e59251416c75066165", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Haley Higgins", "character": "Shannon", "id": 1077804, "credit_id": "52fe45e59251416c75066169", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Ana Ayora", "character": "Viviana", "id": 1077805, "credit_id": "52fe45e59251416c7506616d", "cast_id": 27, "profile_path": "/wgGn3cdDLE34d2bpBEQ2SyuEuyb.jpg", "order": 23}, {"name": "Matthew J. Walters", "character": "Billy", "id": 1077806, "credit_id": "52fe45e59251416c75066171", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Nicole Herold", "character": "Sunbather", "id": 1077807, "credit_id": "52fe45e59251416c75066175", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Paul Tei", "character": "Dude", "id": 208043, "credit_id": "52fe45e59251416c75066179", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "Gaston Renaud", "character": "Metro Reporter", "id": 1077809, "credit_id": "52fe45e59251416c7506617d", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Angelina Assereto", "character": "Waitress", "id": 1025968, "credit_id": "52fe45e59251416c75066181", "cast_id": 32, "profile_path": "/qePNBNokzs1ysjHTe26YG5w5MuB.jpg", "order": 28}, {"name": "Emmett Robin", "character": "Boy", "id": 1077810, "credit_id": "52fe45e59251416c75066185", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Lisa Varga", "character": "Still Photographer", "id": 915692, "credit_id": "52fe45e59251416c75066189", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Dylan Henry", "character": "Patrick (Age 3)", "id": 1077811, "credit_id": "52fe45e59251416c7506618d", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Stephen Lee Davis", "character": "Neighbor Steve", "id": 1077813, "credit_id": "52fe45e59251416c75066191", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Michael Baskin", "character": "Party Guy Michael", "id": 939760, "credit_id": "52fe45e59251416c75066195", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Bradley Frishman", "character": "Patrick (Age 20 Months)", "id": 1077814, "credit_id": "52fe45e59251416c75066199", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Eric Conger", "character": "Newscaster", "id": 992174, "credit_id": "52fe45e59251416c7506619d", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Alec Mapa", "character": "Jorge", "id": 12224, "credit_id": "54edd8f39251413ae8001635", "cast_id": 40, "profile_path": "/e6Lj0IihgcmBw6FuzU5y8toEREq.jpg", "order": 36}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe45e49251416c75066115", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 6.5, "runtime": 115}, "243683": {"poster_path": "/zjzD9DLYNThg3JnPJJOxZc0sxhO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86165646, "overview": "All-stars from the previous Step Up installments come together in glittering Las Vegas, battling for a victory that could define their dreams and their careers.", "video": false, "id": 243683, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up All In", "tagline": "Every Step Has Led To This", "vote_count": 155, "homepage": "http://stepupmovie.com/", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2626350", "adult": false, "backdrop_path": "/24uuwm3w99OYkV6qlfVfbG1IzKR.jpg", "production_companies": [{"name": "Summit Entertainment, LLC", "id": 3250}, {"name": "Lionsgate", "id": 1632}], "release_date": "2014-07-25", "popularity": 2.5190206817126, "original_title": "Step Up All In", "budget": 0, "cast": [{"name": "Ryan Guzman", "character": "Sean", "id": 932091, "credit_id": "52fe4ee1c3a36847f82adffb", "cast_id": 1, "profile_path": "/yJR4t5PlBdsiPAP9JdGjqomkVv7.jpg", "order": 0}, {"name": "Briana Evigan", "character": "Andie", "id": 54499, "credit_id": "52fe4ee1c3a36847f82adfff", "cast_id": 2, "profile_path": "/aCNDUEvMJYofz9EzIguET7KRfqT.jpg", "order": 1}, {"name": "Stephen Boss", "character": "Jason", "id": 110743, "credit_id": "52fe4ee1c3a36847f82ae003", "cast_id": 3, "profile_path": "/5mGP9IXwtmCFAK8dSiOVaFxjSRM.jpg", "order": 2}, {"name": "Misha Gabriel", "character": "Eddy", "id": 1278721, "credit_id": "52fe4ee1c3a36847f82ae007", "cast_id": 4, "profile_path": "/pNlaafa667jsNhB4ehxLKyFyHZy.jpg", "order": 3}, {"name": "Izabella Miko", "character": "Alexa", "id": 59592, "credit_id": "52fe4ee1c3a36847f82ae00b", "cast_id": 5, "profile_path": "/y17WPWE0tOFroVttwayzU3Q2Mxb.jpg", "order": 4}, {"name": "Alyson Stoner", "character": "Camille", "id": 58965, "credit_id": "52fe4ee1c3a36847f82ae00f", "cast_id": 6, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 5}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "52fe4ee1c3a36847f82ae013", "cast_id": 7, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 6}, {"name": "Chadd Smith", "character": "Vladd", "id": 1341648, "credit_id": "53c477c50e0a261df7000375", "cast_id": 10, "profile_path": "/aAFFe4w9TbPTjfuBRt3rZAR96bG.jpg", "order": 7}, {"name": "Christopher Scott", "character": "Hair", "id": 1341649, "credit_id": "53c478160e0a261df70003ae", "cast_id": 11, "profile_path": "/xqIgvt7rqj1Id0wPiCz8wh41z3s.jpg", "order": 8}, {"name": "Chaton Anderson", "character": "Sophie", "id": 73410, "credit_id": "53c478380e0a261e03000397", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Mari Koda", "character": "Jenny Kido", "id": 1189078, "credit_id": "53c478560e0a261e080003b5", "cast_id": 13, "profile_path": "/oFrTgN8bhNmHSFY2PN5MISLa2IL.jpg", "order": 10}, {"name": "Stephen Stevo Jones", "character": "Jasper", "id": 1290588, "credit_id": "54897f1ec3a3686f4e0014d5", "cast_id": 16, "profile_path": "/7nWO9auqUfPOhLQGS7BTW7coLI3.jpg", "order": 11}, {"name": "David Shreibman", "character": "Chad", "id": 1397742, "credit_id": "5489811892514161c70015da", "cast_id": 17, "profile_path": "/jYgtyJ0wqm2JaKPnKo9GaduYoQx.jpg", "order": 12}, {"name": "Luis Rosado", "character": "Monster", "id": 1148762, "credit_id": "54898863c3a3686f4e0015eb", "cast_id": 18, "profile_path": "/3WQyLA5js8eioERwZBNdCLlejdd.jpg", "order": 13}, {"name": "Facundo Lombard", "character": "Marcos Santiago", "id": 1397762, "credit_id": "548991acc3a3687b91001530", "cast_id": 19, "profile_path": "/dixi9Cn16IUpAHR8pV1jamMVEjw.jpg", "order": 14}, {"name": "Mart\u00edn Lombard", "character": "Martin Santiago", "id": 1397768, "credit_id": "5489938392514161d0001685", "cast_id": 20, "profile_path": "/90JgwlpMJK0YMvK1GC9pL93phe9.jpg", "order": 15}, {"name": "Parris Goebel", "character": "Violet", "id": 1397770, "credit_id": "5489962692514161cc0016bf", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Cyrus Spencer", "character": "Gauge", "id": 1397772, "credit_id": "548996d492514161d3001712", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Karin Konoval", "character": "Ana", "id": 58395, "credit_id": "5489980fc3a3686f58001739", "cast_id": 23, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 18}, {"name": "Frank Crudele", "character": "Boris", "id": 120323, "credit_id": "54899ac2c3a3686f5b001615", "cast_id": 24, "profile_path": "/p8lLsWDs2nRdySsr47SpZ1Id75X.jpg", "order": 19}, {"name": "Jay Brazeau", "character": "Mr. McGowan", "id": 63791, "credit_id": "54899b04c3a3686f5500181d", "cast_id": 25, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 20}, {"name": "Dzajna 'Jaja' Vankov\u00e1", "character": "Robot Girl", "id": 1397782, "credit_id": "54899bd8c3a3686f4e001755", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Jenny Dailey", "character": "Grim Knight's Hot Twin #1", "id": 1397787, "credit_id": "54899de192514161d000175c", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Jayme Rae Dailey", "character": "Grim Knight's Hot Twin #2", "id": 1397789, "credit_id": "54899e6d92514161cc00175d", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Elizabeth Weinstein", "character": "Casting Agent", "id": 172883, "credit_id": "5489a0e292514161d000179e", "cast_id": 29, "profile_path": "/yN3g7tFMdSi4n0Sty4XdV91c8Kn.jpg", "order": 24}, {"name": "Viv Leacock", "character": "Bartender (Club)", "id": 60601, "credit_id": "5489a1a292514161d50017f8", "cast_id": 30, "profile_path": "/65ey92fHi13NBpvFLSsm7GWAXRL.jpg", "order": 25}, {"name": "Leah Christ", "character": "Model #1", "id": 1397794, "credit_id": "5489a213c3a3686f58001843", "cast_id": 31, "profile_path": "/yC66Bsr88HaaCCno0lNls3sbrSR.jpg", "order": 26}, {"name": "Fiona Vroom", "character": "Assistant Stylist", "id": 1397812, "credit_id": "5489b44992514161d3001995", "cast_id": 32, "profile_path": "/cnPbymf9M9Oxut1OiP0IPDuV5sp.jpg", "order": 27}, {"name": "Laura Soltis", "character": "Stylist", "id": 59230, "credit_id": "5489b73092514161c900192a", "cast_id": 33, "profile_path": "/eG0G2b2KD56z670KKHFbClAMG9n.jpg", "order": 28}, {"name": "Anthony Joseph", "character": "Bellman #2", "id": 1398051, "credit_id": "548aa1aac3a3680724000d9c", "cast_id": 34, "profile_path": null, "order": 29}, {"name": "Yoshiharu Hashimoto", "character": "Kido's Uncle", "id": 1398052, "credit_id": "548aa26b9251412608000ec4", "cast_id": 35, "profile_path": null, "order": 30}, {"name": "Tae Helgeth", "character": "Kid's Aunt", "id": 1398053, "credit_id": "548aa37dc3a3686dc5000bbe", "cast_id": 36, "profile_path": null, "order": 31}, {"name": "Fulvio Cecere", "character": "Uncle (Pizza Place)", "id": 65808, "credit_id": "548aa4e0c3a368071d000ec2", "cast_id": 37, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 32}, {"name": "Allie Meixner", "character": "Dancing Bachelorette", "id": 1398054, "credit_id": "548aa6c09251412615000e06", "cast_id": 38, "profile_path": "/6o1Yz0srVnn7PvpIg3394LpmR4t.jpg", "order": 33}, {"name": "Peter Newman", "character": "Interviewer", "id": 1398056, "credit_id": "548aa7b99251414fa2000d53", "cast_id": 39, "profile_path": null, "order": 34}, {"name": "Patricia Mayen-Salazar", "character": "Maid", "id": 158441, "credit_id": "548aa9f7c3a368071400108a", "cast_id": 40, "profile_path": null, "order": 35}, {"name": "Graeme Duffy", "character": "Ad Agency Executive #1", "id": 116972, "credit_id": "548aab6b925141260e000fe4", "cast_id": 41, "profile_path": "/a3M42NdkydMXgASfez3DlMWgRGa.jpg", "order": 36}, {"name": "Jill Morrison", "character": "Ad Agency Executive #2", "id": 203294, "credit_id": "548aacc09251412611000ddb", "cast_id": 42, "profile_path": "/2uqJoGoRa5uhwjdvb7w88JT7Xr8.jpg", "order": 37}, {"name": "Christie Laing", "character": "Hotel Executive", "id": 168554, "credit_id": "548aad5cc3a3680724000e72", "cast_id": 43, "profile_path": "/vdhQtqfz6FooxMEZbjXW2U1j4eD.jpg", "order": 38}, {"name": "Aason Nadjiwan", "character": "Voodoo Dancer", "id": 1398061, "credit_id": "548aad8d925141261b000f3d", "cast_id": 44, "profile_path": null, "order": 39}, {"name": "Hayden Fong", "character": "Voodoo Dancer", "id": 1398062, "credit_id": "548aade1c3a36837bb000d7d", "cast_id": 45, "profile_path": null, "order": 40}, {"name": "Mackenzie Green", "character": "Voodoo Dancer", "id": 1398063, "credit_id": "548aae619251412611000dff", "cast_id": 46, "profile_path": null, "order": 41}, {"name": "Chelsee Albo", "character": "Fire Dancer", "id": 1398064, "credit_id": "548aaeaa925141261b000f51", "cast_id": 47, "profile_path": null, "order": 42}, {"name": "Carly Louth", "character": "Fire Dancer", "id": 1398065, "credit_id": "548aaeda9251412606001048", "cast_id": 48, "profile_path": null, "order": 43}, {"name": "Marc Inniss", "character": "MOB Dancer", "id": 1398066, "credit_id": "548aaf71c3a3680724000e98", "cast_id": 49, "profile_path": "/bDmUPzT6Y6O12oT640jN9MEjaMo.jpg", "order": 44}, {"name": "Nolan Padilla", "character": "MOB Dancer", "id": 1398067, "credit_id": "548ab0959251412618000f30", "cast_id": 50, "profile_path": null, "order": 45}, {"name": "Phillip Chbeeb", "character": "MOB Dancer", "id": 1398068, "credit_id": "548ab158c3a3680728000eab", "cast_id": 51, "profile_path": "/2XrTJfgyLDOTdsdXuPMNdCQEXDg.jpg", "order": 46}, {"name": "Bianca Brewton", "character": "MOB Dancer", "id": 1290631, "credit_id": "548ab2979251412615000efc", "cast_id": 52, "profile_path": null, "order": 47}, {"name": "Tony Bellissimo", "character": "MOB Dancer", "id": 1398069, "credit_id": "548ab310c3a3680716000ee6", "cast_id": 53, "profile_path": "/943MEFcvwv2ONDAd7e1cKA0TSJP.jpg", "order": 48}, {"name": "Josue Anthony", "character": "MOB Dancer", "id": 1398070, "credit_id": "548ab485925141261b000fd1", "cast_id": 54, "profile_path": null, "order": 49}, {"name": "Brandy Lamkin", "character": "MOB Dancer", "id": 1398073, "credit_id": "548ab5eac3a3680716000f33", "cast_id": 55, "profile_path": null, "order": 50}, {"name": "Brittny Sugarman", "character": "MOB Dancer", "id": 1290652, "credit_id": "548ab68e9251412615000f6c", "cast_id": 56, "profile_path": null, "order": 51}, {"name": "Celestina Aladekoba", "character": "Celestina", "id": 1234191, "credit_id": "548ab8bdc3a3680724000f5f", "cast_id": 57, "profile_path": "/cC4ogX4QInjkCSSkTilh2HceXRH.jpg", "order": 52}, {"name": "Brandon Shaw", "character": "Grim Knight Dancer", "id": 1398106, "credit_id": "548ac53ec3a36807280010a0", "cast_id": 58, "profile_path": null, "order": 53}, {"name": "Emilio Dosal", "character": "Grim Knight Dancer", "id": 1398109, "credit_id": "548ac5f2925141261b0011a2", "cast_id": 59, "profile_path": null, "order": 54}, {"name": "Comfort Fedoke", "character": "Grim Knight Dancer", "id": 964776, "credit_id": "548ac81cc3a36807240010d6", "cast_id": 60, "profile_path": "/yYYxj2dpmkH68sU0U8psY1wewlF.jpg", "order": 55}, {"name": "Kim Marko Germar", "character": "Grim Knight Dancer", "id": 1398113, "credit_id": "548ac877c3a36807280010f9", "cast_id": 61, "profile_path": null, "order": 56}, {"name": "Raymond Alexander Cham Jr.", "character": "Grim Knight Dancer", "id": 1398114, "credit_id": "548ac942c3a368071400143c", "cast_id": 62, "profile_path": "/gjLCFmJu7AKZTXAcgBh2pTgIgbe.jpg", "order": 57}, {"name": "Nicholas Stewart", "character": "Grim Knight Dancer", "id": 1398116, "credit_id": "548aca8ec3a36837bb00102f", "cast_id": 63, "profile_path": null, "order": 58}, {"name": "Gui DaSilva-Greene", "character": "Grim Knight Dancer", "id": 1398122, "credit_id": "548acbd192514126060012ed", "cast_id": 64, "profile_path": "/wQdzsChmkxLcVQG5GIxOSfGqbW8.jpg", "order": 59}, {"name": "Jeffrey 'Machine' McCann", "character": "Grim Knight Dancer", "id": 1398124, "credit_id": "548acc9a925141260e001376", "cast_id": 65, "profile_path": null, "order": 60}, {"name": "Jesse 'Casper' Brown", "character": "Grim Knight Dancer", "id": 1398129, "credit_id": "548acde9925141260600133f", "cast_id": 66, "profile_path": "/zzcC8wPzmZ8jyAyqiP53enF99iH.jpg", "order": 61}, {"name": "Janick Arseneau", "character": "Divine Intention Dancer", "id": 1398138, "credit_id": "548acf74c3a36807120013a9", "cast_id": 67, "profile_path": null, "order": 62}, {"name": "Julie Dombrowski", "character": "Divine Intention Dancer", "id": 1398141, "credit_id": "548acfcec3a36807120013b9", "cast_id": 68, "profile_path": null, "order": 63}, {"name": "Sarah Katie Holmes", "character": "Divine Intention Dancer", "id": 1398143, "credit_id": "548ad010c3a36807120013c1", "cast_id": 69, "profile_path": null, "order": 64}, {"name": "Erika Kurata-Prevost", "character": "Divine Intention Dancer", "id": 1398147, "credit_id": "548ad05b92514126180012b9", "cast_id": 70, "profile_path": null, "order": 65}, {"name": "Marina Bastarache", "character": "Divine Intention Dancer", "id": 1398148, "credit_id": "548ad0e09251414fa2001158", "cast_id": 71, "profile_path": null, "order": 66}, {"name": "Edith Collin-Marcoux", "character": "Divine Intention Dancer", "id": 1398150, "credit_id": "548ad120c3a36837bb001111", "cast_id": 72, "profile_path": null, "order": 67}, {"name": "Adrienne Chan", "character": "Divine Intention Dancer", "id": 1398154, "credit_id": "548ad1909251412608001383", "cast_id": 73, "profile_path": null, "order": 68}, {"name": "Tiger Kirchharz", "character": "Sweet Beaches Dancer", "id": 1398158, "credit_id": "548ad21fc3a3686dc5001065", "cast_id": 74, "profile_path": null, "order": 69}, {"name": "Lorella Boccia", "character": "Sweet Beaches Dancer", "id": 1398162, "credit_id": "548ad27f9251414fa2001180", "cast_id": 75, "profile_path": null, "order": 70}, {"name": "Kenny Mugisha", "character": "Sweet Beaches Dancer", "id": 1398165, "credit_id": "548ad2fcc3a3686dc500107e", "cast_id": 76, "profile_path": null, "order": 71}, {"name": "Brian Yang", "character": "Sweet Beaches Dancer", "id": 1252034, "credit_id": "548ad4c6c3a3686dc50010a7", "cast_id": 77, "profile_path": "/dtQZAbEvutcXPJzbn26w8GMLgkL.jpg", "order": 72}, {"name": "Teya Wild", "character": "Sweet Beaches Dancer", "id": 1398169, "credit_id": "548ad5749251412606001408", "cast_id": 78, "profile_path": "/JeR7prd3Ujirim3QaXJhTIAXAc.jpg", "order": 73}, {"name": "Lorena Liebman", "character": "Blueprint Dancer", "id": 1398170, "credit_id": "548ad5d3c3a368071600128c", "cast_id": 79, "profile_path": null, "order": 74}, {"name": "Nicolas Begin", "character": "Blueprint Dancer", "id": 1398172, "credit_id": "548ad64a925141261b001365", "cast_id": 80, "profile_path": null, "order": 75}, {"name": "Derek Rice", "character": "Blueprint Dancer", "id": 1398173, "credit_id": "548ad686925141260e0014d1", "cast_id": 81, "profile_path": null, "order": 76}, {"name": "Ian Arcudi", "character": "Blueprint Dancer", "id": 1398175, "credit_id": "548ad6be925141260e0014df", "cast_id": 82, "profile_path": null, "order": 77}, {"name": "Saxon Fraser", "character": "Blueprint Dancer", "id": 1398179, "credit_id": "548ad71cc3a36807160012c2", "cast_id": 83, "profile_path": null, "order": 78}, {"name": "Handy Yacinthe", "character": "Blueprint Dancer", "id": 1398181, "credit_id": "548ad770c3a368071d001407", "cast_id": 84, "profile_path": null, "order": 79}, {"name": "Mecdy Jean-Pierre", "character": "Blueprint Dancer", "id": 1398183, "credit_id": "548ad7acc3a3680714001616", "cast_id": 85, "profile_path": null, "order": 80}, {"name": "Vincent Poirier", "character": "Blueprint Dancer", "id": 1398191, "credit_id": "548ad872c3a36807160012de", "cast_id": 86, "profile_path": null, "order": 81}, {"name": "Axelle Munezero", "character": "Blueprint Dancer", "id": 1398192, "credit_id": "548ad8b6c3a3680712001492", "cast_id": 87, "profile_path": null, "order": 82}, {"name": "Martine Bruneau", "character": "Blueprint Dancer", "id": 1398195, "credit_id": "548ad906c3a368071d001439", "cast_id": 88, "profile_path": null, "order": 83}, {"name": "Marc Antoine Millette", "character": "Petronas Dancer", "id": 1398196, "credit_id": "548ad9489251412606001491", "cast_id": 89, "profile_path": null, "order": 84}, {"name": "Stephane Charbonneau", "character": "Petronas Dancer", "id": 1398197, "credit_id": "548ad98a9251414fa2001243", "cast_id": 90, "profile_path": null, "order": 85}, {"name": "Olivier Blais", "character": "Petronas Dancer", "id": 1398199, "credit_id": "548ad9c4c3a3686dc5001152", "cast_id": 91, "profile_path": null, "order": 86}, {"name": "Max Paradis", "character": "Petronas Dancer", "id": 1398200, "credit_id": "548ada0cc3a368071d001460", "cast_id": 92, "profile_path": null, "order": 87}, {"name": "Eric Ardila Quinonez", "character": "Petronas Dancer", "id": 1398201, "credit_id": "548ada45c3a3686dc5001161", "cast_id": 93, "profile_path": null, "order": 88}, {"name": "Eric Martel", "character": "Tech-Stylz Dancer", "id": 1398202, "credit_id": "548ada8fc3a36807240012b7", "cast_id": 94, "profile_path": null, "order": 89}, {"name": "Mathieu Dumoulin", "character": "Tech-Stylz Dancer", "id": 1398203, "credit_id": "548adad3c3a368071600133a", "cast_id": 95, "profile_path": null, "order": 90}, {"name": "Daniel Morrison", "character": "Tech-Stylz Dancer", "id": 1398204, "credit_id": "548adc45925141260e001598", "cast_id": 96, "profile_path": null, "order": 91}, {"name": "Mark Siller", "character": "Tech-Stylz Dancer", "id": 1398205, "credit_id": "548add1d925141260600150a", "cast_id": 97, "profile_path": null, "order": 92}, {"name": "Dean Placzek", "character": "Tech-Stylz Dancer", "id": 1398206, "credit_id": "548add54c3a368072800131c", "cast_id": 98, "profile_path": null, "order": 93}, {"name": "Lawrence Devera", "character": "Poreotics Dancer", "id": 1398207, "credit_id": "548add9092514126080014ec", "cast_id": 99, "profile_path": null, "order": 94}, {"name": "Can Nguyen", "character": "Poreotics Dancer", "id": 1398211, "credit_id": "548ade47c3a3680714001715", "cast_id": 100, "profile_path": null, "order": 95}, {"name": "Charles Nguyen", "character": "Poreotics Dancer", "id": 1398213, "credit_id": "548adee19251412618001490", "cast_id": 101, "profile_path": null, "order": 96}, {"name": "Chad Mayate", "character": "Poreotics Dancer", "id": 1398214, "credit_id": "548adf30c3a3680724001344", "cast_id": 102, "profile_path": null, "order": 97}, {"name": "Justin Valles", "character": "Poreotics Dancer", "id": 1398215, "credit_id": "548adf7ec3a3680728001352", "cast_id": 103, "profile_path": null, "order": 98}], "directors": [{"name": "Trish Sie", "department": "Directing", "job": "Director", "credit_id": "52fe4ee1c3a36847f82ae019", "profile_path": null, "id": 1278722}], "vote_average": 7.1, "runtime": 112}, "243684": {"poster_path": "/vXo8FhmIf8cxVQL7S3VB4xBSQL2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 461162, "overview": "Follows the story of a group of high school teenagers and their parents as they attempt to navigate the many ways the internet has changed their relationships, their communication, their self-image, and their love lives.", "video": false, "id": 243684, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Men, Women & Children", "tagline": "Discover how little you know about the people you know.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3179568", "adult": false, "backdrop_path": "/4IamAvByBWnclmbwlnZB8otMyB7.jpg", "production_companies": [{"name": "Right of Way Films", "id": 32157}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2014-10-17", "popularity": 1.41787034032835, "original_title": "Men, Women & Children", "budget": 0, "cast": [{"name": "Rosemarie DeWitt", "character": "Rachel Truby", "id": 14892, "credit_id": "52fe4ee1c3a36847f82ae059", "cast_id": 4, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Patricia Beltmeyer", "id": 9278, "credit_id": "52fe4ee1c3a36847f82ae05d", "cast_id": 5, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Judy Greer", "character": "Joan Clint", "id": 20750, "credit_id": "52fe4ee1c3a36847f82ae061", "cast_id": 6, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 2}, {"name": "Dean Norris", "character": "Kent Mooney", "id": 14329, "credit_id": "52fe4ee1c3a36847f82ae065", "cast_id": 7, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 3}, {"name": "Adam Sandler", "character": "Don Truby", "id": 19292, "credit_id": "52fe4ee1c3a36847f82ae069", "cast_id": 8, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 4}, {"name": "Emma Thompson", "character": "(voice)", "id": 7056, "credit_id": "52fe4ee1c3a36847f82ae06d", "cast_id": 9, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 5}, {"name": "Olivia Crocicchia", "character": "Hannah Clint", "id": 172056, "credit_id": "52fe4ee1c3a36847f82ae071", "cast_id": 10, "profile_path": "/pRO0gxG1a9Pd5d7VuaX7GPo8g1m.jpg", "order": 6}, {"name": "Kaitlyn Dever", "character": "Brandy Beltmeyer", "id": 481337, "credit_id": "52fe4ee1c3a36847f82ae075", "cast_id": 11, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 7}, {"name": "Ansel Elgort", "character": "Tim Mooney", "id": 1159982, "credit_id": "52fe4ee1c3a36847f82ae079", "cast_id": 12, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 8}, {"name": "Elena Kampouris", "character": "Allison Doss", "id": 1278724, "credit_id": "52fe4ee1c3a36847f82ae07d", "cast_id": 13, "profile_path": "/aEUCTT2jsbtWqrI7kF3yKJRCBSO.jpg", "order": 9}, {"name": "Travis Tope", "character": "Chris Truby", "id": 1278725, "credit_id": "52fe4ee1c3a36847f82ae081", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "David Denman", "character": "Jim Vance", "id": 62562, "credit_id": "52fe4ee1c3a36847f82ae085", "cast_id": 15, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 11}, {"name": "Jason Douglas", "character": "Ray Beltmeyer", "id": 20496, "credit_id": "52fe4ee1c3a36847f82ae089", "cast_id": 16, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 12}, {"name": "Dennis Haysbert", "character": "", "id": 352, "credit_id": "52fe4ee1c3a36847f82ae08d", "cast_id": 17, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 13}, {"name": "Phil LaMarr", "character": "School Shrink", "id": 31549, "credit_id": "54088f8dc3a36858330012d0", "cast_id": 18, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 14}, {"name": "J.K. Simmons", "character": "Mr. Doss", "id": 18999, "credit_id": "54088facc3a3685818001411", "cast_id": 19, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 15}, {"name": "Timoth\u00e9e Chalamet", "character": "Danny Vance", "id": 1190668, "credit_id": "5472b054c3a36805d8001b1a", "cast_id": 20, "profile_path": "/modd4Fp0OCkEIgSTYcejZMxgPr1.jpg", "order": 16}, {"name": "Nick W. Nicholson", "character": "Mayor of East View (uncredited)", "id": 1429470, "credit_id": "54e7e9429251412ebd000c8d", "cast_id": 21, "profile_path": null, "order": 17}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4ee1c3a36847f82ae049", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.4, "runtime": 116}, "100042": {"poster_path": "/uoRqumEGSlDGnR3SrokqHhu55GK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "20 years after the dimwits set out on their first adventure, they head out in search of one of their long lost children in the hope of gaining a new kidney.", "video": false, "id": 100042, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dumb and Dumber To", "tagline": "The Second Parts Are More Fools", "vote_count": 348, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fdB86tl7SKIBWZzm0CbrYjOdE1K.jpg", "id": 96665, "name": "Dumb and Dumber Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2096672", "adult": false, "backdrop_path": "/pMNSiNT55XrxWPmoI5ytJyinRa8.jpg", "production_companies": [{"name": "Red Granite Pictures", "id": 19177}, {"name": "New Line Cinema", "id": 12}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Conundrum Entertainment", "id": 1156}], "release_date": "2014-11-14", "popularity": 7.78813453161764, "original_title": "Dumb and Dumber To", "budget": 0, "cast": [{"name": "Jim Carrey", "character": "Lloyd Christmas", "id": 206, "credit_id": "52fe49c8c3a36847f81a5ee7", "cast_id": 6, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Jeff Daniels", "character": "Harry Dunne", "id": 8447, "credit_id": "52fe49c8c3a36847f81a5eeb", "cast_id": 7, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 1}, {"name": "Rachel Melvin", "character": "Penny", "id": 1220838, "credit_id": "52fe49c8c3a36847f81a5eef", "cast_id": 8, "profile_path": "/hnJuutQi3EMewOP7Vxr1ajzqEn3.jpg", "order": 2}, {"name": "Kathleen Turner", "character": "Fraida", "id": 3391, "credit_id": "52fe49c8c3a36847f81a5ef3", "cast_id": 9, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 3}, {"name": "Brady Bluhm", "character": "Billy", "id": 77547, "credit_id": "52fe49c8c3a36847f81a5ef7", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Laurie Holden", "character": "Adele", "id": 8332, "credit_id": "52fe49c8c3a36847f81a5efb", "cast_id": 11, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 5}, {"name": "Steve Tom", "character": "Dr. Pinchelow", "id": 58512, "credit_id": "52fe49c8c3a36847f81a5eff", "cast_id": 12, "profile_path": "/ptnGjngOH5rbGDDewk5OESqxs3A.jpg", "order": 6}, {"name": "Rob Riggle", "character": "Travis / Captain Lippincott", "id": 71403, "credit_id": "52fe49c8c3a36847f81a5f03", "cast_id": 13, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 7}, {"name": "Don Lake", "character": "Dr. Meldman", "id": 27530, "credit_id": "545f6ec4c3a3680b5d000605", "cast_id": 15, "profile_path": "/zwm0HhAhxay84Co22rSkHwhJPBG.jpg", "order": 8}, {"name": "Patricia French", "character": "Ms. Sourpuss", "id": 128207, "credit_id": "545f6ed90e0a264d600020aa", "cast_id": 16, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 9}, {"name": "Gregory Fears", "character": "Man at Gas Station", "id": 1383478, "credit_id": "545f6ef30e0a261fbd008ff5", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Tembi Locke", "character": "Dr. Walcott", "id": 51699, "credit_id": "545f6f03c3a3685358008b7e", "cast_id": 18, "profile_path": "/853PZa1bQYGEie0RB9yZaM66QvF.jpg", "order": 11}, {"name": "Paul Blackthorne", "character": "Dr. Meldman", "id": 43231, "credit_id": "545f6f170e0a262359001c03", "cast_id": 19, "profile_path": "/cr11VQutjQCjPK8sq1ec08c04yw.jpg", "order": 12}, {"name": "Eddie Shin", "character": "Gordy", "id": 1215759, "credit_id": "545f6f2d0e0a26042c008cc6", "cast_id": 20, "profile_path": "/lYLFubBTj00nB9glBv9gQkwhlFE.jpg", "order": 13}, {"name": "Atkins Estimonds", "character": "Gus", "id": 1383480, "credit_id": "545f6f410e0a266177001527", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Tommy Snider", "character": "Tom", "id": 204419, "credit_id": "545f6f4cc3a3686e49001d90", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Lindsay Ayliffe", "character": "Professor Garabedian", "id": 1092419, "credit_id": "545f6f600e0a261fb30091aa", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Matthew Cardarople", "character": "Inventor No. 1", "id": 979412, "credit_id": "545f6f6f0e0a262ca20000db", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Bill Murray", "character": "Ice Pick", "id": 1532, "credit_id": "546b7620c3a3680d78001f47", "cast_id": 86, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 18}, {"name": "Grant James", "character": "Mr. Stainer", "id": 116433, "credit_id": "545f6f7d0e0a26042c008cd1", "cast_id": 25, "profile_path": "/sgOV6UORfBnba13gVlz38tnm7Wn.jpg", "order": 19}, {"name": "Taylor St. Clair", "character": "Mrs. Steiner", "id": 1382356, "credit_id": "545f6f8dc3a3680b58000650", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Erin Allin O'Reilly", "character": "Asylum Nurse No. 1", "id": 1224127, "credit_id": "545f6f9e0e0a26617700153c", "cast_id": 27, "profile_path": "/x35MI7gldVHupb6MPnRrjyT0seu.jpg", "order": 21}, {"name": "Tim Campione", "character": "Conference Attendee", "id": 1383481, "credit_id": "545f6faf0e0a266177001542", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Jennifer Cocker", "character": "Young Inventor", "id": 1383482, "credit_id": "545f6fbdc3a3680b5d000624", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Derrick Dean", "character": "Hospital Visitor", "id": 1383483, "credit_id": "545f6fcb0e0a26042c008cdc", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Garret H. Dumas", "character": "Conference Patron", "id": 1383484, "credit_id": "545f6fdbc3a368536200890e", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Shelton Foreman", "character": "Patron", "id": 1383486, "credit_id": "545f6fe5c3a3680b5a0006d9", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Jeff Matthew Glover", "character": "Orderly", "id": 1383487, "credit_id": "545f6ffc0e0a26617700154f", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "William Goodrum", "character": "Prom Singer", "id": 60009, "credit_id": "545f7008c3a3680b5a0006e6", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Walter Hendrix III", "character": "Street Patron", "id": 1383490, "credit_id": "545f7021c3a3686cbb00404c", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Lauren Henneberg", "character": "Upscale Guest", "id": 1383491, "credit_id": "545f703a0e0a261fbd009021", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Michael Jaegers", "character": "Computer Convention Attendee", "id": 1383493, "credit_id": "545f704e0e0a26042c008cf0", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Angela Kerecz", "character": "Waitress", "id": 1285499, "credit_id": "545f705b0e0a264d600020d8", "cast_id": 38, "profile_path": "/pTsh8auk8614t2rghDD4waA6l7A.jpg", "order": 32}, {"name": "Aaron Kischnick", "character": "Ken Philanthropist", "id": 1383495, "credit_id": "545f706e0e0a261fb30091c4", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Rob Koebel", "character": "Officer Stone", "id": 1383496, "credit_id": "545f707dc3a3680b5a0006ee", "cast_id": 40, "profile_path": null, "order": 34}, {"name": "Taylor McPherson", "character": "Electronic Convention Attendee", "id": 1383498, "credit_id": "545f70960e0a266177001570", "cast_id": 41, "profile_path": null, "order": 35}, {"name": "David Pascua", "character": "Mariachi Trumpet Player", "id": 1383499, "credit_id": "545f70abc3a3685358008bad", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "William R. Phillips", "character": "Waiter", "id": 1383501, "credit_id": "545f70b80e0a262359001c2e", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Josh Turner", "character": "KEN Convention Employee", "id": 1383502, "credit_id": "545f70ccc3a3685362008924", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Stefan Walker Armstrong", "character": "Audience Member", "id": 1383504, "credit_id": "545f70e1c3a3680b5a0006fa", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Walt Arnett", "character": "KEN Audience Member", "id": 1383505, "credit_id": "545f70ef0e0a262359001c36", "cast_id": 46, "profile_path": null, "order": 40}, {"name": "Paul Bednarz", "character": "KEN Convention Employee", "id": 1383507, "credit_id": "545f7101c3a3685358008bc2", "cast_id": 47, "profile_path": null, "order": 41}, {"name": "Erika Bierman", "character": "Fanny at Age 13", "id": 1383509, "credit_id": "545f711c0e0a261fbd00903a", "cast_id": 48, "profile_path": "/r5zw8kHfyDTk7zNd5pm2nkKE3CL.jpg", "order": 42}, {"name": "Derek Blankenship", "character": "Store Clerk", "id": 1383511, "credit_id": "545f712f0e0a261fb30091da", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Kassidy Claire", "character": "Fanny at Age 5", "id": 1383512, "credit_id": "545f713d0e0a261fb30091e2", "cast_id": 50, "profile_path": null, "order": 44}, {"name": "Jesse Clark", "character": "Club-Goer", "id": 1383514, "credit_id": "545f7149c3a3680b5d000659", "cast_id": 51, "profile_path": null, "order": 45}, {"name": "Carly Craig", "character": "Young Fraida", "id": 1020027, "credit_id": "545f7155c3a36841d3002685", "cast_id": 52, "profile_path": null, "order": 46}, {"name": "Bryan Dilbeck", "character": "DR Dilbeck", "id": 1235997, "credit_id": "545f7165c3a3680b5d000662", "cast_id": 53, "profile_path": null, "order": 47}, {"name": "Joe Foley", "character": "EMT", "id": 1309646, "credit_id": "545f716f0e0a262359001c45", "cast_id": 54, "profile_path": null, "order": 48}, {"name": "Abigail Gamache", "character": "Prom Attendee", "id": 1383515, "credit_id": "545f7183c3a3680b58000680", "cast_id": 55, "profile_path": null, "order": 49}, {"name": "Dalton E. Gray", "character": "Young Harry", "id": 1383516, "credit_id": "545f71920e0a262ca200012a", "cast_id": 56, "profile_path": null, "order": 50}, {"name": "Llauryn P. Hendrix", "character": "Conference Patron", "id": 1383517, "credit_id": "545f71cbc3a368536200893c", "cast_id": 57, "profile_path": null, "order": 51}, {"name": "Ron Hudson", "character": "Club Patron", "id": 1383518, "credit_id": "545f71d7c3a3680b5d00066a", "cast_id": 58, "profile_path": null, "order": 52}, {"name": "Kathlene Huslin", "character": "KEN Vendor", "id": 1383519, "credit_id": "545f71ebc3a3686cbb00408c", "cast_id": 59, "profile_path": null, "order": 53}, {"name": "Erick Reihs Jackson", "character": "Gas Station Patron", "id": 1383520, "credit_id": "545f71fdc3a36841d300269c", "cast_id": 60, "profile_path": null, "order": 54}, {"name": "Darien Johnson", "character": "KEN Convention Attendee", "id": 1383521, "credit_id": "545f720bc3a3686e49001def", "cast_id": 61, "profile_path": null, "order": 55}, {"name": "Jeffrey Karantza", "character": "Doctor", "id": 1383522, "credit_id": "545f72190e0a261fb90090c3", "cast_id": 62, "profile_path": null, "order": 56}, {"name": "Debi Kimsey", "character": "Knitting Lady on porch", "id": 1383523, "credit_id": "545f722bc3a3680b58000698", "cast_id": 63, "profile_path": null, "order": 57}, {"name": "Anthony R. McClara", "character": "Security Guard", "id": 1383524, "credit_id": "545f72400e0a264d6000211e", "cast_id": 64, "profile_path": null, "order": 58}, {"name": "Michael McCrudden", "character": "Audience Member", "id": 1383525, "credit_id": "545f724e0e0a26042c008d24", "cast_id": 65, "profile_path": null, "order": 59}, {"name": "Richard Melton", "character": "Chaperone", "id": 1383526, "credit_id": "545f725b0e0a264d60002126", "cast_id": 66, "profile_path": null, "order": 60}, {"name": "Maia Moss-Fife", "character": "Receptionist", "id": 1383527, "credit_id": "545f7269c3a368536200894d", "cast_id": 67, "profile_path": null, "order": 61}, {"name": "Ryan Nesset", "character": "Pedestrian", "id": 1383528, "credit_id": "545f7273c3a3686e49001df8", "cast_id": 68, "profile_path": null, "order": 62}, {"name": "Orbert Rogers", "character": "Park Patron", "id": 1383529, "credit_id": "545f727f0e0a264d6000212c", "cast_id": 69, "profile_path": null, "order": 63}, {"name": "Sade Shearer", "character": "Prom Attendee", "id": 1383530, "credit_id": "545f728cc3a3680b5a000737", "cast_id": 70, "profile_path": null, "order": 64}, {"name": "Dereck Smith", "character": "Convention Center Nerd", "id": 1383531, "credit_id": "545f729b0e0a262359001c66", "cast_id": 71, "profile_path": null, "order": 65}, {"name": "Jeff Sumner", "character": "Convention Official", "id": 1383532, "credit_id": "545f72ae0e0a262ca200014b", "cast_id": 72, "profile_path": null, "order": 66}, {"name": "Dave Walpole", "character": "KEN Converence Attendee", "id": 1383533, "credit_id": "545f72bcc3a3686e49001e01", "cast_id": 73, "profile_path": null, "order": 67}, {"name": "Dave Walpole", "character": "KEN Conference Attendee", "id": 1383533, "credit_id": "545f72c7c3a3680b5a000747", "cast_id": 74, "profile_path": null, "order": 68}, {"name": "Christina Michelle Williams", "character": "KEN Convention Employee", "id": 1383534, "credit_id": "545f72df0e0a261fbd00906c", "cast_id": 75, "profile_path": null, "order": 69}, {"name": "Brett Wyman", "character": "Inventor No. 2", "id": 1383535, "credit_id": "545f72ed0e0a261fbd009071", "cast_id": 76, "profile_path": null, "order": 70}, {"name": "Bennett Wayne Dean Sr.", "character": "Hospital Visitor", "id": 1204292, "credit_id": "545f72ff0e0a2661770015b9", "cast_id": 77, "profile_path": null, "order": 71}, {"name": "Doris Dean", "character": "Hospital Visitor", "id": 1383536, "credit_id": "545f730f0e0a26042c008d33", "cast_id": 78, "profile_path": null, "order": 72}, {"name": "John Deifer", "character": "Mental patient", "id": 1383537, "credit_id": "545f731dc3a3680b5d000687", "cast_id": 79, "profile_path": null, "order": 73}, {"name": "Jacklyn Edney", "character": "KEN Con Scientist", "id": 1383538, "credit_id": "545f732fc3a3685358008c04", "cast_id": 80, "profile_path": null, "order": 74}, {"name": "David Emmett", "character": "Hospital Visitor", "id": 1383539, "credit_id": "545f73390e0a2661770015c1", "cast_id": 81, "profile_path": null, "order": 75}, {"name": "Cody Mark Hanna", "character": "Audience Member", "id": 1383540, "credit_id": "545f7347c3a36841d30026d4", "cast_id": 82, "profile_path": null, "order": 76}, {"name": "Billy Boy Johnson", "character": "Scientist", "id": 1383541, "credit_id": "545f73530e0a264d60002150", "cast_id": 83, "profile_path": null, "order": 77}, {"name": "John Merical", "character": "Neighbor", "id": 1383542, "credit_id": "545f735fc3a3680b5d000690", "cast_id": 84, "profile_path": null, "order": 78}, {"name": "Barbara Prince", "character": "Street Patron", "id": 1309641, "credit_id": "545f736bc3a3686cbb0040b2", "cast_id": 85, "profile_path": null, "order": 79}, {"name": "June Shannon", "character": "Harry's Trailer Park Wife", "id": 1386858, "credit_id": "546c298092514130530008e2", "cast_id": 87, "profile_path": null, "order": 80}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe49c8c3a36847f81a5ecb", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe49c8c3a36847f81a5ed1", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.9, "runtime": 110}, "227306": {"poster_path": "/qvRHvtjNfvq0R0IwV2oVmW6DduS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.", "video": false, "id": 227306, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Unbroken", "tagline": "Survival. Resilience. Redemption", "vote_count": 244, "homepage": "http://www.unbrokenfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1809398", "adult": false, "backdrop_path": "/eSbKT3v3RKFRGeOmxJbZhIvrevR.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "3 Arts Entertainment", "id": 36390}, {"name": "Jolie Pas", "id": 39443}], "release_date": "2014-12-25", "popularity": 5.86279842476959, "original_title": "Unbroken", "budget": 65000000, "cast": [{"name": "Jack O'Connell", "character": "Louis Zamperini", "id": 85065, "credit_id": "52fe4e9d9251416c7515c84d", "cast_id": 11, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 0}, {"name": "Domhnall Gleeson", "character": "Russel Allen 'Phil' Phillips", "id": 93210, "credit_id": "52fe4e9d9251416c7515c845", "cast_id": 9, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 1}, {"name": "Garrett Hedlund", "character": "John Fitzgerald", "id": 9828, "credit_id": "52fe4e9d9251416c7515c849", "cast_id": 10, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 2}, {"name": "Takamasa Ishihara", "character": "Mutsuhiro 'The Bird' Watanabe", "id": 1391420, "credit_id": "547a6ef592514150d1000397", "cast_id": 15, "profile_path": "/wg5qf8FzVgcTT1hr8qW1mUuXb0D.jpg", "order": 3}, {"name": "Finn Wittrock", "character": "Francis 'Mac' McNamara", "id": 168877, "credit_id": "52fe4e9d9251416c7515c851", "cast_id": 12, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 4}, {"name": "Jai Courtney", "character": "Hugh 'Cup' Cuppernell", "id": 224181, "credit_id": "547a6f8492514152220003e7", "cast_id": 16, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 5}, {"name": "Maddalena Ischiale", "character": "Louise Zamperini", "id": 1394424, "credit_id": "5480861ec3a36829ae0029fd", "cast_id": 24, "profile_path": "/9j8MflwWHuVonIaBg1wJcUoYjL6.jpg", "order": 6}, {"name": "Vincenzo Amato", "character": "Anthony Zamperini", "id": 20588, "credit_id": "5480866b9251416e81002c8d", "cast_id": 28, "profile_path": "/oIsX2gS7k4wGYspeQzhjxy2Jxnc.jpg", "order": 7}, {"name": "John Magaro", "character": "Frank A. Tinker", "id": 37154, "credit_id": "52fe4e9d9251416c7515c855", "cast_id": 13, "profile_path": "/v1SUpbMcu46dRBACoTnzkdfBgIn.jpg", "order": 8}, {"name": "Luke Treadaway", "character": "Miller", "id": 103351, "credit_id": "548085cd9251416e7e002e29", "cast_id": 19, "profile_path": "/uSROaOirY0WIBhz9fuIcroK1gA2.jpg", "order": 9}, {"name": "Louis McIntosh", "character": "Lt. William Harris", "id": 1394446, "credit_id": "548087d69251416e7e002e7d", "cast_id": 55, "profile_path": "/7ldhZGZ40FmaVX2BTifK3sLy8iJ.jpg", "order": 10}, {"name": "Ross Anderson", "character": "Blackie", "id": 1374534, "credit_id": "54808658c3a36829a3002d24", "cast_id": 27, "profile_path": "/ro1vTt7RGVq21LEfG8ilgU4J02m.jpg", "order": 11}, {"name": "C.J. Valleroy", "character": "Young Louis", "id": 1394425, "credit_id": "54808638c3a36829b5003599", "cast_id": 26, "profile_path": "/kTEaI0wQEsdaoZMrwkCshge7CAS.jpg", "order": 12}, {"name": "John D'Leo", "character": "Young Pete", "id": 1056523, "credit_id": "548085e8c3a36829b5003583", "cast_id": 21, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 13}, {"name": "Alex Russell", "character": "Pete Zamperini", "id": 558466, "credit_id": "547a6f9992514150d10003bf", "cast_id": 17, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 14}, {"name": "Jordan Patrick Smith", "character": "Cliff", "id": 1394429, "credit_id": "548086ae9251416e78002cb1", "cast_id": 33, "profile_path": "/hojSqFG4889Mi81FaarYF47cTDY.jpg", "order": 15}, {"name": "Spencer Lofranco", "character": "Harry Brooks", "id": 1174927, "credit_id": "548085bf9251414d21002a1a", "cast_id": 18, "profile_path": "/i7SxEptxFjkFsVghBGIkPYQYMgu.jpg", "order": 16}, {"name": "Stephen J. Douglas", "character": "Clarence Douglas", "id": 1394448, "credit_id": "54808804c3a368299f0023b7", "cast_id": 59, "profile_path": "/z57qUsSaLaSxhs4ZMXhxYW2gdqN.jpg", "order": 17}, {"name": "Marcus Vanco", "character": "Lambert", "id": 1394447, "credit_id": "548087eec3a36829ae002a3c", "cast_id": 57, "profile_path": "/2KGjYqYpoNQzAmD9KXhGQ2ZOyST.jpg", "order": 18}, {"name": "Dylan James Watson", "character": "Green Hornet Engineer", "id": 1394431, "credit_id": "548086e0c3a36829b50035be", "cast_id": 37, "profile_path": "/2TwXltri7Ia8Urfo9Hsk3oAOiw4.jpg", "order": 19}, {"name": "Ryan Ahern", "character": "Glassman", "id": 970534, "credit_id": "5480877ec3a36817a5002b5a", "cast_id": 50, "profile_path": "/2tBMelAO96HXjgqgEa2KXMFeSCY.jpg", "order": 20}, {"name": "Ross Langley", "character": "Mitchell", "id": 1394444, "credit_id": "548087c6c3a368299f0023ac", "cast_id": 54, "profile_path": "/jk3FeEYklIm6cIBVCSrTirfbkTg.jpg", "order": 21}, {"name": "Michael Whalley", "character": "Stanley Pillsbury", "id": 212730, "credit_id": "548087339251414d21002a62", "cast_id": 44, "profile_path": "/yg9prbJYaJXIDrLM55caBvPgqTr.jpg", "order": 22}, {"name": "Sophie Dalah", "character": "Virginia", "id": 1394420, "credit_id": "548085dac3a36829a7002cd6", "cast_id": 20, "profile_path": null, "order": 23}, {"name": "Morgan Griffin", "character": "Cynthia Applewhite", "id": 98306, "credit_id": "548085f59251416e74002ee6", "cast_id": 22, "profile_path": null, "order": 24}, {"name": "Sean O'Donnell", "character": "Boy(s) (voice)", "id": 1394423, "credit_id": "54808610c3a36829ab002d83", "cast_id": 23, "profile_path": null, "order": 25}, {"name": "Ken Watanabe", "character": "Omori officer", "id": 3899, "credit_id": "548086799251416e81002c91", "cast_id": 29, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 26}, {"name": "Savannah Lamble", "character": "Sylvia Zamperini", "id": 1394426, "credit_id": "5480868ec3a36817a5002b2d", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Travis Jeffery", "character": "Jimmy", "id": 1394427, "credit_id": "54808699c3a36829a7002cf5", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "James McEnery", "character": "Marine at Airbase", "id": 1394428, "credit_id": "548086a49251416e6c00292f", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Stephen Stanton", "character": "Berlin Olympics Radio Announcer (voice)", "id": 1213640, "credit_id": "548086bc9251416e78002cb6", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Talia Mano", "character": "Young Sylvia", "id": 1394430, "credit_id": "548086c69251414efa002e1f", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Yutaka Izumihara", "character": "Radio Tokyo Man", "id": 75748, "credit_id": "548086d19251416e78002cbd", "cast_id": 36, "profile_path": "/rGPYp0jWNplBEv1vWDbmpysaGte.jpg", "order": 32}, {"name": "Hisa Goto", "character": "Omori guard", "id": 1394432, "credit_id": "548086ebc3a36829ab002da4", "cast_id": 38, "profile_path": null, "order": 33}, {"name": "Hiroshi Kasuga", "character": "Naoetsu Guard 1", "id": 1394433, "credit_id": "548086f6c3a36829a7002d05", "cast_id": 39, "profile_path": null, "order": 34}, {"name": "Akira Fujii", "character": "Japanese Athlete", "id": 1394434, "credit_id": "548087059251414d21002a55", "cast_id": 40, "profile_path": null, "order": 35}, {"name": "Chris Proctor", "character": "James", "id": 1110812, "credit_id": "548087119251416e7e002e5a", "cast_id": 41, "profile_path": null, "order": 36}, {"name": "Shinji Ikefuji", "character": "Japanese Translator", "id": 1205489, "credit_id": "5480871d9251416e7e002e5c", "cast_id": 42, "profile_path": "/6m1scLGa91uDDYBftdEcEOuXrAm.jpg", "order": 37}, {"name": "Brodie Henson", "character": "British p.o.w", "id": 1394435, "credit_id": "54808728c3a36829ab002db0", "cast_id": 43, "profile_path": null, "order": 38}, {"name": "Shingo Usami", "character": "Corporal Kono", "id": 1059787, "credit_id": "5480873ec3a36817a5002b4d", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Stefan Mogel", "character": "SS Guard", "id": 1394437, "credit_id": "54808749c3a36829a3002d46", "cast_id": 46, "profile_path": null, "order": 40}, {"name": "Clay Zamperini", "character": "Torch Bearer", "id": 1394438, "credit_id": "548087549251414d21002a6e", "cast_id": 47, "profile_path": null, "order": 41}, {"name": "Jess Terrell", "character": "American POW", "id": 1394439, "credit_id": "54808764c3a36829a3002d4d", "cast_id": 48, "profile_path": null, "order": 42}, {"name": "Sean-Ryan Petersen", "character": "Boy", "id": 1394440, "credit_id": "548087719251416e81002cc1", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Toby Fuller", "character": "Spike Runner", "id": 1394442, "credit_id": "54808796c3a36829ab002dc4", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Conor Fogarty", "character": "American POW", "id": 1394443, "credit_id": "548087ab9251416e78002cdd", "cast_id": 52, "profile_path": null, "order": 45}, {"name": "Jack Marshall", "character": "Bully", "id": 117020, "credit_id": "548087b7c3a36829a7002d1f", "cast_id": 53, "profile_path": null, "order": 46}, {"name": "Taki Abe", "character": "Radio Tokyo Man", "id": 1179405, "credit_id": "548087e1c3a36817a5002b6c", "cast_id": 56, "profile_path": null, "order": 47}, {"name": "Keiichi Enomoto", "character": "Omori Guard", "id": 1381319, "credit_id": "548087f99251416e81002cd9", "cast_id": 58, "profile_path": "/swWMjjTX4t8gyxRFh7HJvx6S4LI.jpg", "order": 48}, {"name": "Taka Uematsu", "character": "Kwajalein Guard", "id": 1394450, "credit_id": "548088109251416e81002cde", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Yoji Tatsuta", "character": "Naoetsu Guard 2", "id": 1394451, "credit_id": "5480881d9251416e7e002e8a", "cast_id": 61, "profile_path": null, "order": 50}, {"name": "John Michael Burdon", "character": "Man in Stadium", "id": 1361564, "credit_id": "54808829c3a36829b50035f5", "cast_id": 62, "profile_path": null, "order": 51}, {"name": "Ben Rossberg", "character": "British POW Officer", "id": 1394452, "credit_id": "54808834c3a36829ab002dda", "cast_id": 63, "profile_path": null, "order": 52}, {"name": "Sean Edward Frazer", "character": "US Officer p.o.w", "id": 1328711, "credit_id": "5480883fc3a36817a5002b74", "cast_id": 64, "profile_path": null, "order": 53}, {"name": "Yoshinao Aonuma", "character": "Kwajalein Guard", "id": 1394454, "credit_id": "5480884ac3a36829ab002de2", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "James Storer", "character": "American P.O.W.", "id": 1394455, "credit_id": "54808855c3a368299f0023c4", "cast_id": 66, "profile_path": null, "order": 55}, {"name": "Joel Knights", "character": "British POW Officer", "id": 1394456, "credit_id": "548088619251416e6c002973", "cast_id": 67, "profile_path": null, "order": 56}, {"name": "Kristopher Bos", "character": "U.S. Officer P.O.W.", "id": 1394457, "credit_id": "54808876c3a36829b20035c7", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Katsu Nojiri", "character": "Omori Guard", "id": 1394458, "credit_id": "548088879251416e81002cf0", "cast_id": 69, "profile_path": null, "order": 58}, {"name": "Matt Hurley", "character": "US Officer P.O.W", "id": 1394459, "credit_id": "54808895c3a36829ae002a5d", "cast_id": 70, "profile_path": null, "order": 59}, {"name": "Shane Leckenby", "character": "British POW", "id": 1394460, "credit_id": "548088a09251416e6c002983", "cast_id": 71, "profile_path": null, "order": 60}, {"name": "Connor Clarke", "character": "American P.O.W", "id": 1394461, "credit_id": "548088ab9251416e7e002ea1", "cast_id": 72, "profile_path": null, "order": 61}, {"name": "Steven Carnuccio", "character": "Church Attendee", "id": 1394462, "credit_id": "548088b69251416e74002f62", "cast_id": 73, "profile_path": null, "order": 62}, {"name": "Matthew Crocker", "character": "Australian P.O.W", "id": 1394463, "credit_id": "548088c0c3a36829a7002d3a", "cast_id": 74, "profile_path": null, "order": 63}, {"name": "Connor Zegenhagen", "character": "British Soldier", "id": 1394464, "credit_id": "548088cac3a36829ab002dfa", "cast_id": 75, "profile_path": null, "order": 64}, {"name": "Nicholas Farris", "character": "Olympic Race Starter", "id": 1394465, "credit_id": "548088d69251416e74002f6c", "cast_id": 76, "profile_path": null, "order": 65}, {"name": "Sarah Alison", "character": "Virginia", "id": 1394466, "credit_id": "548088e1c3a36829a7002d46", "cast_id": 77, "profile_path": null, "order": 66}, {"name": "Mathew Hislop", "character": "Australian POW", "id": 1394467, "credit_id": "548088ec9251416e7b002ac8", "cast_id": 78, "profile_path": null, "order": 67}, {"name": "Matthew McConnell", "character": "American P.O.W", "id": 1394468, "credit_id": "548088fac3a36817a5002b91", "cast_id": 79, "profile_path": null, "order": 68}, {"name": "Dougal Walker", "character": "British POW", "id": 1394469, "credit_id": "548089049251416e7b002acf", "cast_id": 80, "profile_path": null, "order": 69}, {"name": "Jack Alcock", "character": "American POW", "id": 1394470, "credit_id": "5480890e9251416e6c002990", "cast_id": 81, "profile_path": null, "order": 70}, {"name": "Darren Wyer", "character": "Infirmary p.o.w", "id": 1394471, "credit_id": "5480891b9251416e6c00299a", "cast_id": 82, "profile_path": null, "order": 71}, {"name": "Andy de Lore", "character": "Infirmary POW", "id": 1394472, "credit_id": "5480892fc3a36829a3002d84", "cast_id": 83, "profile_path": null, "order": 72}, {"name": "Mitch Christen", "character": "British POW (uncredited)", "id": 1394473, "credit_id": "5480893c9251416e81002d14", "cast_id": 84, "profile_path": null, "order": 73}, {"name": "Matt Clayton", "character": "US Enlisted POW (uncredited)", "id": 1394474, "credit_id": "5480895fc3a36829b5003628", "cast_id": 85, "profile_path": null, "order": 74}, {"name": "Graeme Ford", "character": "British P.O.W. (uncredited)", "id": 1394475, "credit_id": "5480896cc3a36829a3002d94", "cast_id": 86, "profile_path": null, "order": 75}, {"name": "Darren Gallagher", "character": "Soldier (uncredited)", "id": 1394476, "credit_id": "548089769251416e81002d23", "cast_id": 87, "profile_path": null, "order": 76}, {"name": "Kent Lee", "character": "Olympic spectator / Japanese Olympic team member (uncredited)", "id": 1394477, "credit_id": "54808983c3a368299f0023f8", "cast_id": 88, "profile_path": null, "order": 77}, {"name": "Beau Paley", "character": "American POW (uncredited)", "id": 1394478, "credit_id": "5480898fc3a36829ae002a79", "cast_id": 89, "profile_path": null, "order": 78}, {"name": "Craig Walker", "character": "Berlin Olympics Spectator (uncredited)", "id": 1194035, "credit_id": "548089d3c3a36829ab002e20", "cast_id": 90, "profile_path": null, "order": 79}], "directors": [{"name": "Angelina Jolie", "department": "Directing", "job": "Director", "credit_id": "52fe4e9d9251416c7515c817", "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "id": 11701}], "vote_average": 7.1, "runtime": 137}, "21208": {"poster_path": "/dVP8tE9bV2oIv1l0aWtTUJndZvc.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41596251, "overview": "A married couple with a rocky past adopt the 9-year old Esther to fill the void created by a recently-stillborn baby. However, Esther is not quite what she seems.", "video": false, "id": 21208, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Orphan", "tagline": "Can you keep a secret?", "vote_count": 277, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "et", "name": "Eesti"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1148204", "adult": false, "backdrop_path": "/eqSYJq4zBEWx2EW61fLCrCcQtCW.jpg", "production_companies": [{"name": "Appian Way", "id": 562}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Studio Babelsberg StudioBabelsberg Motion Pictures", "id": 4252}, {"name": "Don Carmody Productions", "id": 4253}, {"name": "Studio Canal", "id": 5870}, {"name": "DCP Orphan Productions", "id": 12484}], "release_date": "2009-07-24", "popularity": 0.812790542122733, "original_title": "Orphan", "budget": 20000000, "cast": [{"name": "Vera Farmiga", "character": "Kate Coleman", "id": 21657, "credit_id": "52fe440fc3a368484e00d345", "cast_id": 1, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 0}, {"name": "Peter Sarsgaard", "character": "John Coleman", "id": 133, "credit_id": "52fe440fc3a368484e00d349", "cast_id": 2, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 1}, {"name": "Isabelle Fuhrman", "character": "Esther", "id": 77517, "credit_id": "52fe440fc3a368484e00d34d", "cast_id": 3, "profile_path": "/bZslEz0bSkA7lxVZfK4zMoNny7I.jpg", "order": 2}, {"name": "C. C. H. Pounder", "character": "Sister Abigail", "id": 30485, "credit_id": "52fe440fc3a368484e00d351", "cast_id": 4, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 3}, {"name": "Jimmy Bennett", "character": "Daniel Coleman", "id": 6860, "credit_id": "52fe440fc3a368484e00d355", "cast_id": 5, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 4}, {"name": "Margo Martindale", "character": "Dr. Browning", "id": 452, "credit_id": "52fe440fc3a368484e00d359", "cast_id": 6, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 5}, {"name": "Karel Roden", "character": "Dr. V\u00e4rava", "id": 10841, "credit_id": "52fe440fc3a368484e00d35d", "cast_id": 7, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 6}, {"name": "Aryana Engineer", "character": "Max Coleman", "id": 90455, "credit_id": "52fe440fc3a368484e00d361", "cast_id": 8, "profile_path": "/vDNKdLsBDdbGZiklrXMGlRHzWTL.jpg", "order": 7}, {"name": "Rosemary Dunsmore", "character": "Grandma Barbara", "id": 44275, "credit_id": "52fe440fc3a368484e00d365", "cast_id": 9, "profile_path": "/qdEePC5X5yvnKXVv9lsOAp1EOGl.jpg", "order": 8}, {"name": "Jamie Young", "character": "Brenda", "id": 90456, "credit_id": "52fe440fc3a368484e00d369", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Lorry Ayers", "character": "Joyce", "id": 90457, "credit_id": "52fe440fc3a368484e00d36d", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Brendan Wall", "character": "Detective", "id": 59602, "credit_id": "52fe440fc3a368484e00d371", "cast_id": 12, "profile_path": "/h2csRawwCKv7AyRbCNOiauIfDqd.jpg", "order": 11}, {"name": "Genelle Williams", "character": "Sister Judith", "id": 80969, "credit_id": "52fe440fc3a368484e00d375", "cast_id": 13, "profile_path": "/kIes099gCcRGxusOeRLlyE9RoZF.jpg", "order": 12}, {"name": "Mustafa Abdelkarim", "character": "Daniel's Friend #1", "id": 90458, "credit_id": "52fe440fc3a368484e00d379", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Landon Norris", "character": "Daniel's Friend #2", "id": 90459, "credit_id": "52fe440fc3a368484e00d37d", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Julien Elia", "character": "Hospital Receptionist", "id": 90460, "credit_id": "52fe440fc3a368484e00d381", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Leni Parker", "character": "Delivery Room Nurse", "id": 90461, "credit_id": "52fe440fc3a368484e00d385", "cast_id": 17, "profile_path": "/4fjzruUJHV5EvTwOipQZ92qg7Td.jpg", "order": 16}, {"name": "Gemma James Smith", "character": "Teacher", "id": 90462, "credit_id": "52fe440fc3a368484e00d389", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Pia Ajango", "character": "Saarne Institute Receptionist", "id": 90463, "credit_id": "52fe440fc3a368484e00d38d", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Matthew Raudsepp", "character": "Saarne Institute Orderly", "id": 90464, "credit_id": "52fe440fc3a368484e00d391", "cast_id": 20, "profile_path": "/aDXbrn4F77zEv7vF81dGQthy3Kp.jpg", "order": 19}, {"name": "Sugith Varughese", "character": "ICU Doctor", "id": 44191, "credit_id": "52fe440fc3a368484e00d395", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Luis Olivia", "character": "ICU Nurse", "id": 90465, "credit_id": "52fe440fc3a368484e00d399", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Ferelith Young", "character": "Waiting Room Nurse", "id": 90466, "credit_id": "52fe440fc3a368484e00d39d", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Andrew Shaver", "character": "Injection Doctor", "id": 90467, "credit_id": "52fe440fc3a368484e00d3a1", "cast_id": 24, "profile_path": null, "order": 23}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe440fc3a368484e00d3a7", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 6.5, "runtime": 123}, "43347": {"poster_path": "/4jU64i4kAEtQUlsYsQPAdfpI7aP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102313925, "overview": "Maggie, an alluring free spirit who won't let anyone - or anything - tie her down. But she meets her match in Jamie, whose relentless and nearly infallible charm serve him well with the ladies and in the cutthroat world of pharmaceutical sales. Maggie and Jamie's evolving relationship takes them both by surprise, as they find themselves under the influence of the ultimate drug: love.", "video": false, "id": 43347, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Love & Other Drugs", "tagline": "Addicted to one-night stands or dependent on one another?", "vote_count": 275, "homepage": "http://www.loveandotherdrugsthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758752", "adult": false, "backdrop_path": "/qLgI8jkKv8pAo2O6GLrIK48xN6j.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Stuber Productions", "id": 4403}, {"name": "Bedford Falls Productions", "id": 348}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2010-11-22", "popularity": 1.17050926219928, "original_title": "Love & Other Drugs", "budget": 30000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Jamie Reidy", "id": 131, "credit_id": "52fe4640c3a36847f80f4a8f", "cast_id": 2, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Maggie Murdock", "id": 1813, "credit_id": "52fe4640c3a36847f80f4a93", "cast_id": 3, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Oliver Platt", "character": "Bruce Winston", "id": 17485, "credit_id": "52fe4640c3a36847f80f4a97", "cast_id": 4, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Dr. Stan Knight", "id": 5587, "credit_id": "52fe4640c3a36847f80f4a9b", "cast_id": 5, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Gabriel Macht", "character": "Trey Hannigan", "id": 16856, "credit_id": "52fe4640c3a36847f80f4a9f", "cast_id": 7, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 6}, {"name": "Judy Greer", "character": "Cindy", "id": 20750, "credit_id": "52fe4640c3a36847f80f4aa3", "cast_id": 8, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 7}, {"name": "George Segal", "character": "James Randall", "id": 18364, "credit_id": "52fe4640c3a36847f80f4aa7", "cast_id": 9, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 8}, {"name": "Jill Clayburgh", "character": "Nancy Randall", "id": 20362, "credit_id": "52fe4640c3a36847f80f4aab", "cast_id": 10, "profile_path": "/twrfhIvbqHuJ7nXVpehvU6nyi6R.jpg", "order": 9}, {"name": "Kate Jennings Grant", "character": "Gina", "id": 59697, "credit_id": "52fe4640c3a36847f80f4aaf", "cast_id": 11, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 10}, {"name": "Katheryn Winnick", "character": "Lisa", "id": 26723, "credit_id": "52fe4640c3a36847f80f4ab3", "cast_id": 12, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 10}, {"name": "Kimberly Scott", "character": "Gail", "id": 1984, "credit_id": "52fe4640c3a36847f80f4ab7", "cast_id": 13, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 11}, {"name": "Peter Friedman", "character": "California Man", "id": 54246, "credit_id": "52fe4640c3a36847f80f4abb", "cast_id": 14, "profile_path": "/1plom5G0I425wj8l8xXhnvaFcPs.jpg", "order": 11}, {"name": "Nikki DeLoach", "character": "Christy", "id": 59750, "credit_id": "52fe4640c3a36847f80f4abf", "cast_id": 15, "profile_path": "/h8lP9YDAksFxBSBiSjhclc8h2qt.jpg", "order": 12}, {"name": "Natalie Gold", "character": "Dr. Helen Randall", "id": 143256, "credit_id": "52fe4640c3a36847f80f4ac3", "cast_id": 16, "profile_path": "/rpXCiaLqeQYcZN1Wic6TeE2PBHX.jpg", "order": 13}, {"name": "Josh Gad", "character": "Josh Randall", "id": 54415, "credit_id": "52fe4640c3a36847f80f4ac7", "cast_id": 17, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 14}, {"name": "Ian Novick", "character": "Pfizer Trainee #3", "id": 587701, "credit_id": "52fe4641c3a36847f80f4ad7", "cast_id": 20, "profile_path": "/aHDg0cm7c0A1b0FE9K1h7P5BgRD.jpg", "order": 15}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe4640c3a36847f80f4a8b", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.4, "runtime": 112}, "71668": {"poster_path": "/s0HZqE2Q8Pta2Cttyal0tcQRxwD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the events at Lake Victoria, the prehistoric school of blood-thirsty piranhas make their way into swimming pools, plumbing, and a newly opened water park.", "video": false, "id": 71668, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Piranha 3DD", "tagline": "Twice the Teeth. Twice the Terror.", "vote_count": 90, "homepage": "http://piranha-3d.com/", "belongs_to_collection": {"backdrop_path": "/6FzU0eEVXOizfDEdJUlaCEt2t3m.jpg", "poster_path": "/gjFaylmB7ZMK7BsKzAcuu0UKc4j.jpg", "id": 104830, "name": "Piranha 3D Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1714203", "adult": false, "backdrop_path": "/yVfZlZyOtE8QoBSL6gojfopMxr8.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Mark Canton Productions", "id": 11761}, {"name": "Intellectual Properties Worldwide", "id": 18524}], "release_date": "2012-06-01", "popularity": 0.532508181376688, "original_title": "Piranha 3DD", "budget": 20000000, "cast": [{"name": "Katrina Bowden", "character": "Shelby", "id": 74618, "credit_id": "52fe4841c3a368484e0efc35", "cast_id": 4, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 0}, {"name": "Danielle Panabaker", "character": "Maddy", "id": 31838, "credit_id": "52fe4841c3a368484e0efc39", "cast_id": 5, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 1}, {"name": "Christopher Lloyd", "character": "Mr. Goodman", "id": 1062, "credit_id": "52fe4841c3a368484e0efc3d", "cast_id": 6, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Deputy Fallon", "id": 10182, "credit_id": "52fe4841c3a368484e0efc41", "cast_id": 7, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Matt Bush", "character": "Barry", "id": 130227, "credit_id": "52fe4841c3a368484e0efc45", "cast_id": 8, "profile_path": "/kyBLgeVnvnsx3zOZXlZwSF5BFEE.jpg", "order": 4}, {"name": "David Koechner", "character": "Chet", "id": 28638, "credit_id": "52fe4841c3a368484e0efc49", "cast_id": 9, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 5}, {"name": "Gary Busey", "character": "Clayton", "id": 2048, "credit_id": "52fe4841c3a368484e0efc4d", "cast_id": 10, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 6}, {"name": "David Hasselhoff", "character": "Himself", "id": 28238, "credit_id": "52fe4841c3a368484e0efc51", "cast_id": 11, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 7}, {"name": "Jean-Luc Bilodeau", "character": "Josh", "id": 205204, "credit_id": "52fe4841c3a368484e0efc55", "cast_id": 12, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 8}, {"name": "Sylvia Jefferies", "character": "Young Mother", "id": 1104568, "credit_id": "52fe4841c3a368484e0efca7", "cast_id": 26, "profile_path": "/jtbJjvDrGAuBW3OGHSCGekuVo8J.jpg", "order": 9}, {"name": "Paul Scheer", "character": "Andrew", "id": 59843, "credit_id": "542534cbc3a3681eca003e8e", "cast_id": 27, "profile_path": "/A81J8vYUdhVGhXFac1XHy2xO5QD.jpg", "order": 10}, {"name": "Irina Voronina", "character": "Kiki", "id": 138970, "credit_id": "54ef99999251417974006a81", "cast_id": 28, "profile_path": "/mCQ6fVaPGCN84GLBnuxHuYcc4bT.jpg", "order": 11}], "directors": [{"name": "John Gulager", "department": "Directing", "job": "Director", "credit_id": "52fe4841c3a368484e0efc25", "profile_path": null, "id": 62797}], "vote_average": 4.8, "runtime": 83}, "71676": {"poster_path": "/tqwWzmp5ISh64SJbNKQ9fyItnDj.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149217355, "overview": "Nicolas Cage reprises his role as Johnny Blaze in Ghost Rider Spirit of Vengeance. In this gritty new vision for the character, Johnny is still struggling with his curse as the devil's bounty hunter - but he may risk everything as he teams up with the leader of a group of rebel monks (Idris Elba) to save a young boy from the devil... and possibly rid himself of his curse forever", "video": false, "id": 71676, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Rider: Spirit of Vengeance", "tagline": "He Rides Again.", "vote_count": 453, "homepage": "http://www.thespiritofvengeance.com/", "belongs_to_collection": {"backdrop_path": "/ee8zhn4VIXQh1J5t7efyybcvHLj.jpg", "poster_path": "/bZBasloaMhjxCwH6tV0eziNMqut.jpg", "id": 90306, "name": "Ghost Rider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1071875", "adult": false, "backdrop_path": "/9w9UtpeRPK797GzT7xQXuVRSUSj.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Crystal Sky Pictures", "id": 20241}, {"name": "Michael De Luca Productions", "id": 27551}], "release_date": "2011-12-10", "popularity": 1.44839746617912, "original_title": "Ghost Rider: Spirit of Vengeance", "budget": 57000000, "cast": [{"name": "Nicolas Cage", "character": "Johnny Blaze / Ghost Rider", "id": 2963, "credit_id": "52fe4842c3a368484e0efee3", "cast_id": 5, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Ciar\u00e1n Hinds", "character": "Roarke / The Devil", "id": 8785, "credit_id": "52fe4842c3a368484e0efee7", "cast_id": 6, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 1}, {"name": "Violante Placido", "character": "Nadya", "id": 44649, "credit_id": "52fe4842c3a368484e0efeeb", "cast_id": 7, "profile_path": "/371gOs0Tdd8mUFet7PwzCP0s47I.jpg", "order": 2}, {"name": "Fergus Riordan", "character": "Danny", "id": 567332, "credit_id": "52fe4842c3a368484e0eff0f", "cast_id": 15, "profile_path": "/l25jr61ieo05Y9mmaqoFDBw41Jc.jpg", "order": 3}, {"name": "Johnny Whitworth", "character": "Ray Carrigan / Blackout", "id": 73589, "credit_id": "52fe4842c3a368484e0efeef", "cast_id": 8, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 4}, {"name": "Christopher Lambert", "character": "Methodius", "id": 38559, "credit_id": "52fe4842c3a368484e0eff0b", "cast_id": 14, "profile_path": "/sIl2F9LDTjfnAVBxEG5CTtZGuJU.jpg", "order": 5}, {"name": "Idris Elba", "character": "Moreau", "id": 17605, "credit_id": "52fe4842c3a368484e0eff13", "cast_id": 16, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 6}, {"name": "Anthony Stewart Head", "character": "Benedict", "id": 34257, "credit_id": "52fe4842c3a368484e0eff17", "cast_id": 17, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 7}, {"name": "Spencer Wilding", "character": "Grannik", "id": 25451, "credit_id": "52fe4842c3a368484e0eff1b", "cast_id": 18, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 8}, {"name": "Jacek Koman", "character": "Terrokov", "id": 12210, "credit_id": "52fe4842c3a368484e0eff1f", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Vincent Regan", "character": "Toma Nikasevic", "id": 9831, "credit_id": "52fe4842c3a368484e0effa7", "cast_id": 42, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 10}], "directors": [{"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe4842c3a368484e0efed3", "profile_path": null, "id": 20193}, {"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe4842c3a368484e0efed9", "profile_path": null, "id": 20192}], "vote_average": 4.8, "runtime": 95}, "71679": {"poster_path": "/qRhi9UDgfstP9aIJTCoO9u13Q7t.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 240159255, "overview": "The Umbrella Corporation\u2019s deadly T-virus continues to ravage the Earth, transforming the global population into legions of the flesh eating Undead. The human race\u2019s last and only hope, Alice, awakens in the heart of Umbrella\u2019s most clandestine operations facility and unveils more of her mysterious past as she delves further into the complex. Without a safe haven, Alice continues to hunt those responsible for the outbreak; a chase that takes her from Tokyo to New York, Washington, D.C. and Moscow, culminating in a mind-blowing revelation that will force her to rethink everything that she once thought to be true. Aided by new found allies and familiar friends, Alice must fight to survive long enough to escape a hostile world on the brink of oblivion. The countdown has begun.", "video": false, "id": 71679, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Retribution", "tagline": "The Ultimate Battle Begins", "vote_count": 882, "homepage": "http://www.residentevil-movie.com/site/", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1855325", "adult": false, "backdrop_path": "/qBFghEBzPKvWUAWD2ABumbVOoW8.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Constantin Film International", "id": 12162}, {"name": "Davis Films/Impact Pictures (RE5)", "id": 12163}, {"name": "Capcom Company", "id": 14788}, {"name": "Davis-Films", "id": 342}], "release_date": "2012-09-14", "popularity": 0.298629665271487, "original_title": "Resident Evil: Retribution", "budget": 65000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe4842c3a368484e0f00a7", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "52fe4842c3a368484e0f00af", "cast_id": 3, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Rain Ocampo", "id": 17647, "credit_id": "52fe4842c3a368484e0f00ef", "cast_id": 14, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "Aryana Engineer", "character": "Becky", "id": 90455, "credit_id": "52fe4842c3a368484e0f010d", "cast_id": 22, "profile_path": "/vDNKdLsBDdbGZiklrXMGlRHzWTL.jpg", "order": 3}, {"name": "Li Bingbing", "character": "Ada Wong", "id": 109432, "credit_id": "52fe4842c3a368484e0f00fb", "cast_id": 18, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 4}, {"name": "Boris Kodjoe", "character": "Luther West", "id": 80758, "credit_id": "52fe4842c3a368484e0f0111", "cast_id": 23, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 5}, {"name": "Johann Urb", "character": "Leon S. Kennedy", "id": 101017, "credit_id": "52fe4842c3a368484e0f00ff", "cast_id": 19, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 6}, {"name": "Robin Kasyanov", "character": "Sergei", "id": 222910, "credit_id": "52fe4842c3a368484e0f0115", "cast_id": 24, "profile_path": "/9HciFNpgaLzfs9bZrT6cxEE809m.jpg", "order": 7}, {"name": "Kevin Durand", "character": "Barry Burton", "id": 79072, "credit_id": "52fe4842c3a368484e0f00f3", "cast_id": 15, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 8}, {"name": "Ofilio Portillo", "character": "Tony", "id": 1095911, "credit_id": "52fe4842c3a368484e0f0119", "cast_id": 25, "profile_path": "/uoRyQfhsofoPz7USwzQ1eubcmh4.jpg", "order": 9}, {"name": "Oded Fehr", "character": "Todd / Carlos", "id": 18041, "credit_id": "52fe4842c3a368484e0f00f7", "cast_id": 17, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 10}, {"name": "Colin Salmon", "character": "James 'One' Shade", "id": 5414, "credit_id": "52fe4842c3a368484e0f0103", "cast_id": 20, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 11}, {"name": "Shawn Roberts", "character": "Albert Wesker", "id": 81097, "credit_id": "52fe4842c3a368484e0f011d", "cast_id": 26, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 12}, {"name": "Megan Charpentier", "character": "The Red Queen", "id": 223126, "credit_id": "52fe4842c3a368484e0f0129", "cast_id": 29, "profile_path": "/WNe7mkDzSQl2uRhvQlqiXLBp66.jpg", "order": 13}, {"name": "Ali Larter", "character": "Claire Redfield (archive footage)", "id": 17303, "credit_id": "52fe4842c3a368484e0f00ab", "cast_id": 2, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 14}, {"name": "Wentworth Miller", "character": "Chris Redfield (archive footage)", "id": 3972, "credit_id": "52fe4842c3a368484e0f0125", "cast_id": 28, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 15}, {"name": "Spencer Locke", "character": "K-Mart (archive footage)", "id": 57192, "credit_id": "52fe4842c3a368484e0f0121", "cast_id": 27, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 16}, {"name": "Anna Bolt", "character": "Dr. Green (archive footage)", "id": 195535, "credit_id": "52fe4842c3a368484e0f012d", "cast_id": 30, "profile_path": "/7pE1zAqODmqFGPbnE6A0tKlFTFF.jpg", "order": 17}, {"name": "Indra Ov\u00e9", "character": "Ms. Black (archive footage)", "id": 232174, "credit_id": "52fe4842c3a368484e0f0131", "cast_id": 31, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 18}, {"name": "Heike Makatsch", "character": "Dr. Lisa Addison (archive footage)", "id": 7059, "credit_id": "52fe4842c3a368484e0f0135", "cast_id": 32, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 19}, {"name": "Sandrine Holt", "character": "Terri Morales (archive footage)", "id": 65345, "credit_id": "52fe4842c3a368484e0f013d", "cast_id": 34, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 20}, {"name": "Liz May Brice", "character": "Medic (archive footage)", "id": 68224, "credit_id": "52fe4842c3a368484e0f0139", "cast_id": 33, "profile_path": "/5cAhs4oR33lHJcjEIfDCnnOynX7.jpg", "order": 21}, {"name": "Thomas Kretschmann", "character": "Major Tom Caine (archive footage)", "id": 3491, "credit_id": "53bc7eba0e0a2615890002c4", "cast_id": 41, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 22}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4842c3a368484e0f00b5", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.6, "runtime": 95}, "6145": {"poster_path": "/z8dmpPvIybKIlSuzPnt0TQmrYxd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39000000, "overview": "A husband is on trial for the attempted murder of his wife, in what is seemingly an open/shut case for the ambitious district attorney trying to put him away. However, there are surprises for both around every corner, and, as a suspenseful game of cat-and-mouse is played out, each must manipulate and outwit the other.", "video": false, "id": 6145, "genres": [{"id": 53, "name": "Thriller"}], "title": "Fracture", "tagline": "I shot my wife...prove it.", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0488120", "adult": false, "backdrop_path": "/rf5j1avHtvLkVnBLdGmqh1LbIN0.jpg", "production_companies": [{"name": "M7 Filmproduktion", "id": 41359}, {"name": "New Line Cinema", "id": 12}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Weinstock Productions", "id": 16946}], "release_date": "2007-04-20", "popularity": 1.38421215452647, "original_title": "Fracture", "budget": 0, "cast": [{"name": "Anthony Hopkins", "character": "Theodore Crawford", "id": 4173, "credit_id": "52fe4440c3a36847f808b07d", "cast_id": 3, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "DDA William Beachum", "id": 30614, "credit_id": "52fe4440c3a36847f808b081", "cast_id": 4, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "David Strathairn", "character": "DA Joe Lobruto", "id": 11064, "credit_id": "52fe4440c3a36847f808b085", "cast_id": 5, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Embeth Davidtz", "character": "Jennifer Crawford", "id": 6368, "credit_id": "52fe4440c3a36847f808b089", "cast_id": 6, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 3}, {"name": "Billy Burke", "character": "Lt. Robert Nunally", "id": 21029, "credit_id": "52fe4440c3a36847f808b08d", "cast_id": 7, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 4}, {"name": "Cliff Curtis", "character": "Detective Flores", "id": 7248, "credit_id": "52fe4440c3a36847f808b091", "cast_id": 8, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 5}, {"name": "Fiona Shaw", "character": "Judge Robinson", "id": 10981, "credit_id": "52fe4440c3a36847f808b095", "cast_id": 9, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 6}, {"name": "Josh Stamberg", "character": "Norman Foster", "id": 21882, "credit_id": "52fe4440c3a36847f808b099", "cast_id": 10, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 7}, {"name": "Xander Berkeley", "character": "Judge Moran", "id": 3982, "credit_id": "52fe4440c3a36847f808b09d", "cast_id": 11, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 8}, {"name": "Zoe Kazan", "character": "Mona", "id": 35028, "credit_id": "52fe4440c3a36847f808b0a1", "cast_id": 12, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 9}, {"name": "Judith Scott", "character": "Resident", "id": 44185, "credit_id": "52fe4440c3a36847f808b0a5", "cast_id": 13, "profile_path": "/8PXHC5SMNyUuNNXgDc6m9yJuQcp.jpg", "order": 10}, {"name": "Gary Carlos Cervantes", "character": "Ciro", "id": 48136, "credit_id": "52fe4440c3a36847f808b0af", "cast_id": 15, "profile_path": "/13kjmeYYdJzdeccnJEXo56KH7CO.jpg", "order": 11}, {"name": "Petrea Burchard", "character": "Dr. Marion Kang", "id": 48138, "credit_id": "52fe4440c3a36847f808b0b3", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Rosamund Pike", "character": "Nikki Gardner", "id": 10882, "credit_id": "52fe4440c3a36847f808b0cf", "cast_id": 21, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 13}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe4440c3a36847f808b0ab", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 6.9, "runtime": 113}, "210947": {"poster_path": "/rJeJXo3ZyEM5lpOn0kXab7TIrb6.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 121179, "overview": "Best friends Derek and Clif set out on a trip of a lifetime. Their plan: travel to the ends of the earth, see the world, and live life to the fullest. But the trip soon takes a dark and bloody turn. Just days in, one of the men shows signs of a mysterious affliction which gradually takes over his entire body and being. Now, thousands of miles from home, in a foreign land, they must race to uncover the source of his illness before it consumes him completely. Footage of their travelsmeant to document pleasant memoriesmay now become evidence of one of the most shocking discoveries ever captured on film\u2026and may be their only postcard home.", "video": false, "id": 210947, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Afflicted", "tagline": "Captured. On Film.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2309961", "adult": false, "backdrop_path": "/ucMw5eHwZ8zLxcb9KUy6M7GlX7h.jpg", "production_companies": [{"name": "Automatik Entertainment", "id": 7625}, {"name": "Panorama Films", "id": 5561}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}], "release_date": "2013-09-09", "popularity": 1.25907835060736, "original_title": "Afflicted", "budget": 318000, "cast": [{"name": "Baya Rehaz", "character": "Audrey", "id": 1194750, "credit_id": "52fe4d89c3a368484e1eea63", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Derek Lee", "character": "Derek", "id": 1194748, "credit_id": "52fe4d89c3a368484e1eea6d", "cast_id": 6, "profile_path": null, "order": 1}, {"name": "Clif Prowse", "character": "Cliff Prowse", "id": 1194749, "credit_id": "52fe4d89c3a368484e1eea71", "cast_id": 7, "profile_path": null, "order": 2}, {"name": "Edo Van Breemen", "character": "Edo Van Breeman (as Edo Van Breeman)", "id": 1205435, "credit_id": "52fe4d8ac3a368484e1eea81", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Zachary Gray", "character": "Zachary Gray (as Zachary Gray)", "id": 1205436, "credit_id": "52fe4d8ac3a368484e1eea85", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Michael Gill", "character": "Michael Gill", "id": 1318680, "credit_id": "5370177bc3a368121800eb8f", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Jason Lee", "character": "Jason Lee", "id": 1318681, "credit_id": "53701789c3a3683bf900620a", "cast_id": 17, "profile_path": null, "order": 6}], "directors": [{"name": "Clif Prowse", "department": "Directing", "job": "Director", "credit_id": "52fe4d89c3a368484e1eea5f", "profile_path": null, "id": 1194749}, {"name": "Derek Lee", "department": "Directing", "job": "Director", "credit_id": "52fe4d89c3a368484e1eea7d", "profile_path": null, "id": 1194748}], "vote_average": 6.3, "runtime": 85}, "63492": {"poster_path": "/yugpF7km9nEE5GLpSWMSkGKHGNd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30426096, "overview": "Ally Darling (Anna Faris) is realizing she's a little lost in life. Her latest romance has just fizzled out, and she's just been fired from her marketing job. Then she reads an eye-opening magazine article that warns that 96 percent of women who've been with 20 or more lovers are unlikely to find a husband. Determined to turn her life around and prove the article wrong, Ally embarks on a mission to find the perfect mate from among her numerous ex-boyfriends.", "video": false, "id": 63492, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "What's Your Number?", "tagline": "Ally's looking for the best ex of her life.", "vote_count": 125, "homepage": "http://www.whatsyournumbermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0770703", "adult": false, "backdrop_path": "/jErMBy0pcJIUMfzaVPzfrXhsn9W.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Contrafilm", "id": 1836}], "release_date": "2011-09-30", "popularity": 0.978780422300708, "original_title": "What's Your Number?", "budget": 20000000, "cast": [{"name": "Chris Evans", "character": "Colin Shea", "id": 16828, "credit_id": "52fe46adc3a368484e09dd1b", "cast_id": 2, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Anna Faris", "character": "Ally Darling", "id": 1772, "credit_id": "52fe46adc3a368484e09dd1f", "cast_id": 3, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Martin Freeman", "character": "Simon Forester", "id": 7060, "credit_id": "52fe46adc3a368484e09dd23", "cast_id": 4, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 2}, {"name": "Chris Pratt", "character": "Disgusting Donald", "id": 73457, "credit_id": "52fe46adc3a368484e09dd27", "cast_id": 5, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 3}, {"name": "Ari Graynor", "character": "Daisy Darling", "id": 71552, "credit_id": "52fe46adc3a368484e09dd37", "cast_id": 10, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 4}, {"name": "Blythe Danner", "character": "Ava Darling", "id": 10401, "credit_id": "52fe46adc3a368484e09dd3b", "cast_id": 11, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 5}, {"name": "Ed Begley Jr.", "character": "Mr. Darling", "id": 42157, "credit_id": "52fe46adc3a368484e09dd3f", "cast_id": 12, "profile_path": "/m264FJDCnB5H6qyU2sDKjs9tM86.jpg", "order": 6}, {"name": "Dave Annable", "character": "Jake Adams", "id": 176653, "credit_id": "52fe46adc3a368484e09dd43", "cast_id": 13, "profile_path": "/mXFKhZTVnHufqKizKjhJEJTZz4r.jpg", "order": 7}, {"name": "Joel McHale", "character": "Roger the Boss", "id": 74949, "credit_id": "52fe46adc3a368484e09dd47", "cast_id": 14, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 8}, {"name": "Zachary Quinto", "character": "Rick", "id": 17306, "credit_id": "52fe46adc3a368484e09dd4b", "cast_id": 15, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 9}, {"name": "Eliza Coupe", "character": "Sheila", "id": 210050, "credit_id": "52fe46adc3a368484e09dd4f", "cast_id": 16, "profile_path": "/nb6JlI2OxCDUwksjZ4PjqIHu3IN.jpg", "order": 10}, {"name": "Mike Vogel", "character": "Dave Hansen", "id": 6858, "credit_id": "52fe46adc3a368484e09dd53", "cast_id": 17, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 11}, {"name": "Andy Samberg", "character": "Gerry Perry", "id": 62861, "credit_id": "52fe46adc3a368484e09dd57", "cast_id": 19, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 12}, {"name": "Thomas Lennon", "character": "Dr. Barrett Ingold", "id": 539, "credit_id": "52fe46adc3a368484e09dd5b", "cast_id": 20, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 13}, {"name": "Anthony Mackie", "character": "Tom Piper", "id": 53650, "credit_id": "52fe46adc3a368484e09dd5f", "cast_id": 21, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 14}, {"name": "Jackson Nicoll", "character": "Justin", "id": 1148130, "credit_id": "540b8ab90e0a263640000425", "cast_id": 22, "profile_path": "/2sEyIlZFLIzAgBUcL5dovdwQOUa.jpg", "order": 15}], "directors": [{"name": "Mark Mylod", "department": "Directing", "job": "Director", "credit_id": "52fe46adc3a368484e09dd17", "profile_path": "/e8besvnWIcbvD8NLjcsi5jmxxOe.jpg", "id": 57199}], "vote_average": 6.1, "runtime": 106}, "55301": {"poster_path": "/31IPWvH2l4ycyK8EsMOmmwiJC7n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 342695435, "overview": "Playing around while aboard a cruise ship, the Chipmunks and Chipettes accidentally go overboard and end up marooned in a tropical paradise. They discover their new turf is not as deserted as it seems.", "video": false, "id": 55301, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Alvin and the Chipmunks: Chipwrecked", "tagline": "This holiday it's gonna get squeaky.", "vote_count": 140, "homepage": "http://www.munkyourself.com/", "belongs_to_collection": {"backdrop_path": "/qI483yHct3PBtIiOH3K3SVNUDq5.jpg", "poster_path": "/fLvRQcuk5ZFKnDvUC553XK3OnPC.jpg", "id": 167613, "name": "Alvin and the Chipmunks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1615918", "adult": false, "backdrop_path": "/qc0NReaia4MNsr8Ens054x6udrX.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2011-12-14", "popularity": 0.6969153889529, "original_title": "Alvin and the Chipmunks: Chipwrecked", "budget": 75000000, "cast": [{"name": "Amy Poehler", "character": "Eleanor (voice)", "id": 56322, "credit_id": "52fe48c5c3a36847f817883d", "cast_id": 4, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 0}, {"name": "Jenny Slate", "character": "Zoe", "id": 213001, "credit_id": "52fe48c5c3a36847f8178841", "cast_id": 7, "profile_path": "/bKyUz4N566bXBEhj1TkFfMiNFyT.jpg", "order": 1}, {"name": "Andy Buckley", "character": "Captain Correlli", "id": 170635, "credit_id": "52fe48c5c3a36847f8178845", "cast_id": 8, "profile_path": "/jGOCrJXTzIAGAx1GlBu3Y3NMBma.jpg", "order": 2}, {"name": "Jesse McCartney", "character": "Theodore (voice)", "id": 49915, "credit_id": "52fe48c5c3a36847f8178849", "cast_id": 9, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 3}, {"name": "Jason Lee", "character": "David Seville", "id": 11662, "credit_id": "52fe48c5c3a36847f817884d", "cast_id": 10, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Anna Faris", "character": "Jeanette (voice)", "id": 1772, "credit_id": "52fe48c5c3a36847f8178851", "cast_id": 11, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 5}, {"name": "Christina Applegate", "character": "Brittany (voice)", "id": 18979, "credit_id": "52fe48c5c3a36847f8178855", "cast_id": 12, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 6}, {"name": "Justin Long", "character": "Alvin (voice)", "id": 15033, "credit_id": "52fe48c5c3a36847f8178859", "cast_id": 13, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 7}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe48c5c3a36847f817882d", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.7, "runtime": 87}, "71688": {"poster_path": "/e67tal4u66eFz8yGnJGTO5FYRxY.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 114956699, "overview": "A look at the life of Margaret Thatcher (Meryl Streep), the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.", "video": false, "id": 71688, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Iron Lady", "tagline": "Never compromise", "vote_count": 158, "homepage": "http://weinsteinco.com/sites/iron-lady/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1007029", "adult": false, "backdrop_path": "/dfM5XwQcw36HAnKhowEh5776MJl.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "Canal+", "id": 5358}, {"name": "DJ Films", "id": 5654}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Path\u00e9", "id": 7981}, {"name": "Film4", "id": 9349}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Yuk Films", "id": 19749}], "release_date": "2011-12-30", "popularity": 0.216283938273574, "original_title": "The Iron Lady", "budget": 13000000, "cast": [{"name": "Meryl Streep", "character": "Margaret Thatcher", "id": 5064, "credit_id": "52fe4843c3a368484e0f022b", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Anthony Stewart Head", "character": "Geoffrey Howe", "id": 34257, "credit_id": "52fe4843c3a368484e0f022f", "cast_id": 3, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 1}, {"name": "Harry Lloyd", "character": "Young Denis Thatcher", "id": 205258, "credit_id": "52fe4843c3a368484e0f0233", "cast_id": 4, "profile_path": "/vI6FWizXNa5quCyIiTd06gxNQu1.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Denis Thatcher", "id": 388, "credit_id": "52fe4843c3a368484e0f0237", "cast_id": 5, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Susan Brown", "character": "June", "id": 438859, "credit_id": "52fe4843c3a368484e0f0271", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Alice da Cunha", "character": "Cleaner", "id": 1023482, "credit_id": "52fe4843c3a368484e0f0275", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Phoebe Waller-Bridge", "character": "Susie", "id": 1023483, "credit_id": "52fe4843c3a368484e0f0279", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Iain Glen", "character": "Alfred Roberts", "id": 20508, "credit_id": "52fe4843c3a368484e0f027d", "cast_id": 18, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 7}, {"name": "Alexandra Roach", "character": "Young Margaret Thatcher", "id": 237020, "credit_id": "52fe4843c3a368484e0f0281", "cast_id": 19, "profile_path": "/jWJlrPYvdDN2kMCWKDkDnnFm1mP.jpg", "order": 8}, {"name": "Victoria Bewick", "character": "Muriel Roberts", "id": 1023484, "credit_id": "52fe4843c3a368484e0f0285", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Olivia Colman", "character": "Carol Thatcher", "id": 39187, "credit_id": "52fe4843c3a368484e0f0289", "cast_id": 21, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 10}, {"name": "Eloise Webb", "character": "Young Carol", "id": 1394373, "credit_id": "550bd56bc3a3687c11000d6f", "cast_id": 24, "profile_path": null, "order": 11}], "directors": [{"name": "Phyllida Lloyd", "department": "Directing", "job": "Director", "credit_id": "52fe4843c3a368484e0f0227", "profile_path": "/jNZ2wVL5lsFvM6pPmRGFWI4SFvm.jpg", "id": 71068}], "vote_average": 6.3, "runtime": 105}, "22538": {"poster_path": "/lafRuPbjEQrrHG9QEaoyV2znZC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46489927, "overview": "Scott Pilgrim is a film adaptation of the critically acclaimed, award-winning series of graphic novels of the same name by Canadian cartoonist Bryan Lee O\u2019Malley. Scott Pilgrim is a 23 year old Canadian slacker and wannabe rockstar who falls in love with an American delivery girl, Ramona V. Flowers, and must defeat her seven \"evil exes\" to be able to date her.", "video": false, "id": 22538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Scott Pilgrim vs. the World", "tagline": "Get the hot girl. Defeat her evil exes. Hit love where it hurts.", "vote_count": 670, "homepage": "http://www.scottpilgrimthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0446029", "adult": false, "backdrop_path": "/9UBtFxBdWDtwMLX5brS45Ryo840.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Marc Platt Productions", "id": 2527}], "release_date": "2010-07-27", "popularity": 1.04944532821786, "original_title": "Scott Pilgrim vs. the World", "budget": 60000000, "cast": [{"name": "Michael Cera", "character": "Scott Pilgrim", "id": 39995, "credit_id": "52fe4445c3a368484e01985f", "cast_id": 1, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 0}, {"name": "Mary Elizabeth Winstead", "character": "Ramona V. Flowers", "id": 17628, "credit_id": "52fe4445c3a368484e019863", "cast_id": 2, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 1}, {"name": "Kieran Culkin", "character": "Wallace Wells", "id": 18793, "credit_id": "52fe4445c3a368484e019867", "cast_id": 3, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 2}, {"name": "Chris Evans", "character": "Lucas Lee", "id": 16828, "credit_id": "52fe4445c3a368484e01986b", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 3}, {"name": "Anna Kendrick", "character": "Stacey Pilgrim", "id": 84223, "credit_id": "52fe4445c3a368484e01986f", "cast_id": 5, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 4}, {"name": "Brandon Routh", "character": "Todd Ingram", "id": 17271, "credit_id": "52fe4445c3a368484e019873", "cast_id": 6, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 5}, {"name": "Alison Pill", "character": "Kim Pine", "id": 17486, "credit_id": "52fe4445c3a368484e019877", "cast_id": 7, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 6}, {"name": "Jason Schwartzman", "character": "Gideon Gordon Graves", "id": 17881, "credit_id": "52fe4445c3a368484e01987b", "cast_id": 8, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 7}, {"name": "Ellen Wong", "character": "Knives Chau", "id": 88902, "credit_id": "52fe4445c3a368484e01987f", "cast_id": 9, "profile_path": "/53v3oEH5JEtrlMj6CNLbzhFncWb.jpg", "order": 8}, {"name": "Satya Bhabha", "character": "Matthew Patel", "id": 88903, "credit_id": "52fe4445c3a368484e019883", "cast_id": 10, "profile_path": "/6RHD03Mzpu4yMquIlwFAHF8MyW4.jpg", "order": 9}, {"name": "Mae Whitman", "character": "Roxy Richter", "id": 52404, "credit_id": "52fe4445c3a368484e01988d", "cast_id": 15, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 10}, {"name": "Johnny Simmons", "character": "Young Neil", "id": 27104, "credit_id": "52fe4445c3a368484e019891", "cast_id": 16, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 11}, {"name": "Brie Larson", "character": "Envy Adams", "id": 60073, "credit_id": "52fe4445c3a368484e019895", "cast_id": 17, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 12}, {"name": "John Patrick Amedori", "character": "Smoking hipster kid", "id": 43464, "credit_id": "52fe4445c3a368484e019899", "cast_id": 19, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 13}, {"name": "Mark Webber", "character": "Stephen Stills", "id": 4451, "credit_id": "52fe4445c3a368484e01989d", "cast_id": 20, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 14}, {"name": "Erik Knudsen", "character": "Luke 'Crash' Wilson", "id": 2681, "credit_id": "52fe4445c3a368484e0198a1", "cast_id": 21, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 15}, {"name": "Nelson Franklin", "character": "Comeau", "id": 88928, "credit_id": "52fe4445c3a368484e0198a5", "cast_id": 22, "profile_path": "/lk2A1zZezjIrmiXD507Chr24SyJ.jpg", "order": 16}, {"name": "Jean Yoon", "character": "Mother Chau", "id": 88929, "credit_id": "52fe4445c3a368484e0198a9", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Kristina Pesic", "character": "Sandra", "id": 88930, "credit_id": "52fe4445c3a368484e0198ad", "cast_id": 24, "profile_path": "/2e30dfLAMGcPaNQzXwpnWMsgmsY.jpg", "order": 18}, {"name": "Abigail Chu", "character": "Trisha 'Trasha' Ha", "id": 88931, "credit_id": "52fe4445c3a368484e0198b1", "cast_id": 25, "profile_path": "/erbfyBNGmUGb0X84lItZBBZ8trk.jpg", "order": 19}, {"name": "Ben Lewis", "character": "Other Scott", "id": 33702, "credit_id": "52fe4445c3a368484e0198b5", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Ingrid Haas", "character": "Monique", "id": 88932, "credit_id": "52fe4445c3a368484e0198b9", "cast_id": 27, "profile_path": "/sq5qC5Rtxl1nLreXFiEehGe5UaY.jpg", "order": 21}, {"name": "Chantelle Chung", "character": "Tamara", "id": 88933, "credit_id": "52fe4445c3a368484e0198bd", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Emily Kassie", "character": "Winifred Hailey", "id": 88934, "credit_id": "52fe4445c3a368484e0198c1", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Aubrey Plaza", "character": "Julie Powers", "id": 119592, "credit_id": "52fe4445c3a368484e0198d1", "cast_id": 33, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 24}, {"name": "Marlee Otto", "character": "Party Goer", "id": 193539, "credit_id": "52fe4445c3a368484e0198e7", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Will Seatle Bowes", "character": "Party Goer", "id": 224724, "credit_id": "52fe4445c3a368484e0198eb", "cast_id": 38, "profile_path": "/ifgJ4S5QH1m7PUgNZ823zyCeh7q.jpg", "order": 26}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe4445c3a368484e019889", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 7.1, "runtime": 112}, "127867": {"poster_path": "/4Pxtx487zw0HTpbO4k341Es33nO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.", "video": false, "id": 127867, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Brass Teapot", "tagline": "Everyone Has A Price. What's Yours?", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1935902", "adult": false, "backdrop_path": "/yWcYCpA6EWJE9nMCbzxlIVdHRXo.jpg", "production_companies": [{"name": "Laundry Films", "id": 13552}], "release_date": "2013-04-05", "popularity": 0.455374373959891, "original_title": "The Brass Teapot", "budget": 0, "cast": [{"name": "Juno Temple", "character": "Alice", "id": 36594, "credit_id": "52fe4b0bc3a368484e174ad7", "cast_id": 2, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 0}, {"name": "Michael Angarano", "character": "John", "id": 11665, "credit_id": "52fe4b0bc3a368484e174adf", "cast_id": 4, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 1}, {"name": "Alexis Bledel", "character": "Payton", "id": 6279, "credit_id": "52fe4b0bc3a368484e174adb", "cast_id": 3, "profile_path": "/soIlyGwryTHV4Y7LNn1tDejT4TC.jpg", "order": 2}, {"name": "Billy Magnussen", "character": "Arnie", "id": 141034, "credit_id": "52fe4b0bc3a368484e174aed", "cast_id": 7, "profile_path": "/9iEugwAOkNLIzkwl2388OnCLHEw.jpg", "order": 3}, {"name": "Alia Shawkat", "character": "Louise", "id": 61178, "credit_id": "52fe4b0bc3a368484e174ae9", "cast_id": 6, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 4}, {"name": "Bobby Moynihan", "character": "Chuck", "id": 452205, "credit_id": "52fe4b0bc3a368484e174af1", "cast_id": 8, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 5}, {"name": "Steve Park", "character": "Dr. Ling", "id": 4025, "credit_id": "52fe4b0bc3a368484e174af5", "cast_id": 9, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 6}, {"name": "Ben Rappaport", "character": "Ricky", "id": 224183, "credit_id": "52fe4b0bc3a368484e174af9", "cast_id": 10, "profile_path": "/9rBUqIJ07u8FKOHvI8dn0UMDGGR.jpg", "order": 7}, {"name": "Lucy Walters", "character": "Mary", "id": 1141384, "credit_id": "52fe4b0bc3a368484e174afd", "cast_id": 11, "profile_path": "/mAtULQvwCDqArnioiV4qggrXQl7.jpg", "order": 8}, {"name": "Jack McBrayer", "character": "Joe", "id": 58737, "credit_id": "52fe4b0bc3a368484e174b01", "cast_id": 12, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 9}, {"name": "Debra Monk", "character": "Trudy", "id": 10386, "credit_id": "52fe4b0bc3a368484e174b05", "cast_id": 13, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 10}, {"name": "Michael Delaney", "character": "Mr. Tutor", "id": 94602, "credit_id": "52fe4b0bc3a368484e174b09", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Tara Copeland", "character": "Mrs. Tutor", "id": 1179253, "credit_id": "52fe4b0bc3a368484e174b0d", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Thomas Middleditch", "character": "Gilad", "id": 111678, "credit_id": "52fe4b0bc3a368484e174b11", "cast_id": 16, "profile_path": "/eejkzd9gtYm7pMFiVdjsGBYde5H.jpg", "order": 13}, {"name": "Bob McClure", "character": "Yoel (as Robert Michael McClure)", "id": 1179254, "credit_id": "52fe4b0bc3a368484e174b15", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Rebecca Darke", "character": "Mollia", "id": 1179255, "credit_id": "52fe4b0bc3a368484e174b19", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Ian Scott McGregor", "character": "Interviewer", "id": 1179256, "credit_id": "52fe4b0bc3a368484e174b1d", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Travis Myers", "character": "Bartender", "id": 1179257, "credit_id": "52fe4b0bc3a368484e174b21", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Matt Walsh", "character": "Antique Dealer", "id": 59841, "credit_id": "52fe4b0bc3a368484e174b25", "cast_id": 21, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 18}, {"name": "Danielle Kotch", "character": "Eight Year Old", "id": 1179260, "credit_id": "52fe4b0bc3a368484e174b29", "cast_id": 22, "profile_path": "/sg9sLO7NPquAcwaiMrBp8lLifPs.jpg", "order": 19}, {"name": "M.K. Walsh", "character": "Female Reporter (as Mary Kate Walsh)", "id": 1179261, "credit_id": "52fe4b0bc3a368484e174b2d", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Claudia Mason", "character": "Donna", "id": 1179262, "credit_id": "52fe4b0bc3a368484e174b31", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Cristin Milioti", "character": "Brandi", "id": 204392, "credit_id": "52fe4b0bc3a368484e174b35", "cast_id": 25, "profile_path": "/mf0qpQCRYkWc17CTA03Ar5ELpHj.jpg", "order": 22}, {"name": "Roland J. Walton", "character": "BMW Dealer", "id": 1179263, "credit_id": "52fe4b0bc3a368484e174b39", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Christopher Maggi", "character": "Antiques Roadshow Attendee 1", "id": 1179264, "credit_id": "52fe4b0bc3a368484e174b3d", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Matthew Backer", "character": "Antiques Roadshow Attendee 2", "id": 1179265, "credit_id": "52fe4b0bc3a368484e174b41", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Yuen Byun", "character": "Waxer", "id": 1179266, "credit_id": "52fe4b0bc3a368484e174b45", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Adam Files", "character": "Mr. Tutor's Lover", "id": 1179267, "credit_id": "52fe4b0bc3a368484e174b49", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Kirk Roos", "character": "Highway Patrolman", "id": 937873, "credit_id": "52fe4b0bc3a368484e174b4d", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Christopher Jon Gombos", "character": "Cowboy (uncredited)", "id": 1179268, "credit_id": "52fe4b0bc3a368484e174b51", "cast_id": 32, "profile_path": "/c03IFIpAvZlquugkX46DwRC7Ak0.jpg", "order": 29}, {"name": "William Todd Levinson", "character": "Reception Attendee (uncredited)", "id": 1179269, "credit_id": "52fe4b0bc3a368484e174b55", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "Harry L. Seddon", "character": "Antique Collector (uncredited)", "id": 118387, "credit_id": "52fe4b0bc3a368484e174b59", "cast_id": 34, "profile_path": null, "order": 31}], "directors": [{"name": "Ramaa Mosley", "department": "Directing", "job": "Director", "credit_id": "52fe4b0bc3a368484e174ad3", "profile_path": null, "id": 1085904}], "vote_average": 5.8, "runtime": 100}, "10025": {"poster_path": "/vjA1TA9h2gyysAovW1MZHZdFGqS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17326650, "overview": "Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.", "video": false, "id": 10025, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Just My Luck", "tagline": "Everything changed in the wink of an eye.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397078", "adult": false, "backdrop_path": "/yVs7C9FmYS2GaqOSoTLLHRocMW8.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-05-12", "popularity": 0.910811185382972, "original_title": "Just My Luck", "budget": 28000000, "cast": [{"name": "Lindsay Lohan", "character": "Ashley Albright", "id": 49265, "credit_id": "52fe430a9251416c75001371", "cast_id": 22, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Samaire Armstrong", "character": "Maggie", "id": 19664, "credit_id": "52fe430a9251416c75001375", "cast_id": 23, "profile_path": "/n1EvtBt47rE7VgiBNipnV589YYw.jpg", "order": 1}, {"name": "Chris Pine", "character": "Jake Hardin", "id": 62064, "credit_id": "52fe430a9251416c7500137f", "cast_id": 25, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 2}, {"name": "Missi Pyle", "character": "Peggy Braden", "id": 1294, "credit_id": "52fe430a9251416c75001383", "cast_id": 26, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 3}, {"name": "Makenzie Vega", "character": "Katy", "id": 2139, "credit_id": "52fe430a9251416c75001387", "cast_id": 27, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 4}, {"name": "Bree Turner", "character": "Dana", "id": 62065, "credit_id": "52fe430a9251416c7500138f", "cast_id": 29, "profile_path": "/vR34cXXPh9JFPrPy7DS0fjOaeIc.jpg", "order": 5}, {"name": "Faizon Love", "character": "Damon Phillips", "id": 62066, "credit_id": "52fe430a9251416c7500138b", "cast_id": 28, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 6}, {"name": "Danny Jones", "character": "Himself - McFly Band Member", "id": 62069, "credit_id": "52fe430a9251416c75001393", "cast_id": 30, "profile_path": null, "order": 7}, {"name": "Tom Fletcher", "character": "Himself - McFly Band Member", "id": 62068, "credit_id": "52fe430a9251416c7500139b", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Carlos Ponce", "character": "Antonio", "id": 62067, "credit_id": "52fe430a9251416c75001397", "cast_id": 31, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 9}, {"name": "Harry Judd", "character": "Himself - McFly Band Member", "id": 62070, "credit_id": "52fe430a9251416c7500139f", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Dougie Poynter", "character": "Himself - McFly Band Member", "id": 62071, "credit_id": "52fe430a9251416c750013a3", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Tovah Feldshuh", "character": "Madame Z", "id": 41640, "credit_id": "52fe430a9251416c750013a7", "cast_id": 35, "profile_path": "/1haWbhXrJRJyhPBIoxRhTuIEWBw.jpg", "order": 12}, {"name": "Dane Rhodes", "character": "Mac", "id": 60874, "credit_id": "52fe430a9251416c750013ab", "cast_id": 36, "profile_path": "/cB1iGmzJe5OEillQvPWDGRkkSAC.jpg", "order": 13}, {"name": "Jaqueline Fleming", "character": "Tiffany", "id": 62072, "credit_id": "52fe430a9251416c750013af", "cast_id": 37, "profile_path": "/bAR3JD4dbuknBbPdtsuytWGgDaU.jpg", "order": 14}, {"name": "Ira Hawkins", "character": "Doorman Oscar", "id": 62074, "credit_id": "52fe430a9251416c750013b3", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "J.C. Sealy", "character": "Aunt Martha", "id": 62075, "credit_id": "52fe430a9251416c750013b7", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Mikki Val", "character": "Tough Jailbird", "id": 62073, "credit_id": "52fe430a9251416c750013bb", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Marcus Hester", "character": "Tom Gilpin", "id": 62076, "credit_id": "52fe430b9251416c750013bf", "cast_id": 41, "profile_path": "/mOlrvlDpYUzDJhG6yc2wiRCdH5X.jpg", "order": 18}, {"name": "Ameer Baraka", "character": "Phillips Minion", "id": 62077, "credit_id": "52fe430b9251416c750013c3", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Hannah Tointon", "character": "Concert Goer", "id": 228431, "credit_id": "52fe430b9251416c750013c7", "cast_id": 43, "profile_path": "/9Rtrh32jGdNNjY76GpirVnRLE2s.jpg", "order": 20}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe430a9251416c750012fb", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 5.3, "runtime": 103}, "227348": {"poster_path": "/iyXkJYM99gKkFgIRoACv88UiqIv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86362372, "overview": "Seventeen-year-old Jesse has been hearing terrifying sounds coming from his neighbor\u2019s apartment, but when he turns on his camera and sets out to uncover their source, he encounters an ancient evil that won\u2019t rest until it\u2019s claimed his very soul.", "video": false, "id": 227348, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Paranormal Activity: The Marked Ones", "tagline": "You're one of us now.", "vote_count": 138, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2473682", "adult": false, "backdrop_path": "/zEgaJ33dWkXBcl7J5IjRBTWdyLL.jpg", "production_companies": [{"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}, {"name": "Room 101", "id": 6302}], "release_date": "2014-01-03", "popularity": 1.02275319644469, "original_title": "Paranormal Activity: The Marked Ones", "budget": 5000000, "cast": [{"name": "Richard Cabral", "character": "Arturo", "id": 1105711, "credit_id": "52fe4ea09251416c7515cccd", "cast_id": 3, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 0}, {"name": "Carlos Pratts", "character": "Oscar Hernandez", "id": 1116973, "credit_id": "52fe4ea09251416c7515ccd1", "cast_id": 4, "profile_path": "/qKqAIpsyIK8rPtLIWuSB7NrT1Cn.jpg", "order": 1}, {"name": "Eddie J. Fernandez", "character": "Carlos", "id": 18300, "credit_id": "52fe4ea09251416c7515ccd5", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Jorge Diaz", "character": "Hector", "id": 188347, "credit_id": "52fe4ea09251416c7515ccd9", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "David Fernandez Jr.", "character": "Cholo", "id": 1117232, "credit_id": "52fe4ea09251416c7515ccdd", "cast_id": 7, "profile_path": "/eJvgc6jgVOePGvYbEyI1ZUy7KdG.jpg", "order": 4}, {"name": "Molly Ephraim", "character": "Ali", "id": 141374, "credit_id": "52fe4ea09251416c7515cce1", "cast_id": 8, "profile_path": "/d0jIHbnipL3VpDSk25sqyFT2Y7O.jpg", "order": 5}, {"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe4ea09251416c7515cce5", "cast_id": 9, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 6}, {"name": "Andrew Jacobson", "character": "Jesse", "id": 66517, "credit_id": "52fe4ea09251416c7515cce9", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Crystal Santos", "character": "Santos", "id": 1282218, "credit_id": "52fe4ea09251416c7515cced", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Catherine Toribio", "character": "Penelope", "id": 1282221, "credit_id": "52fe4ea09251416c7515ccf1", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Christopher B. Landon", "department": "Directing", "job": "Director", "credit_id": "52fe4ea09251416c7515ccc3", "profile_path": null, "id": 54248}], "vote_average": 5.5, "runtime": 84}, "14359": {"poster_path": "/cW2ZEfjWsHKIsO0fRjL7NldbbId.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50907234, "overview": "In 1964, a Catholic school nun questions a priest's ambiguous relationship with a troubled young student, suspecting him of abuse. He denies the charges, and much of the film's quick-fire dialogue tackles themes of religion, morality, and authority.", "video": false, "id": 14359, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Doubt", "tagline": "There is no evidence. There are no witnesses. But for one, there is no doubt.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0918927", "adult": false, "backdrop_path": "/3cYFrihyj3RijnPtLDlMjQHTx3p.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2008-12-11", "popularity": 0.328206640444467, "original_title": "Doubt", "budget": 20000000, "cast": [{"name": "Amy Adams", "character": "Sister James", "id": 9273, "credit_id": "52fe45ea9251416c75066cf7", "cast_id": 1, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Father Brendan Flynn", "id": 1233, "credit_id": "52fe45ea9251416c75066cfb", "cast_id": 2, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Meryl Streep", "character": "Sister Aloysius Beauvier", "id": 5064, "credit_id": "52fe45ea9251416c75066cff", "cast_id": 3, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 2}, {"name": "Viola Davis", "character": "Mrs. Miller", "id": 19492, "credit_id": "52fe45ea9251416c75066d21", "cast_id": 9, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 3}, {"name": "Alice Drummond", "character": "Sister Veronica", "id": 17488, "credit_id": "53938d7dc3a368642b001d0e", "cast_id": 10, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 4}], "directors": [{"name": "John Patrick Shanley", "department": "Directing", "job": "Director", "credit_id": "52fe45ea9251416c75066d05", "profile_path": "/qQkpdZyhoslrX5DcfQuaXp87NQv.jpg", "id": 26095}], "vote_average": 6.5, "runtime": 104}, "6171": {"poster_path": "/A85mIkXdJvOwHxIQIEaN147GSLD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75715436, "overview": "Four boyhood pals perform a heroic act and are changed by the powers they gain in return. Years later, on a hunting trip in the Maine woods, they're overtaken by a vicious blizzard that harbors an ominous presence. Challenged to stop an alien force, the friends must first prevent the slaughter of innocent civilians by a military vigilante ... and then overcome a threat to the bond that unites the four of them.", "video": false, "id": 6171, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dreamcatcher", "tagline": "A circle of friendship. A web of mystery. A pattern of fear.", "vote_count": 125, "homepage": "http://dreamcatchermovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0285531", "adult": false, "backdrop_path": "/5O3OxhgGr7pn1g22fPOaueGwCnn.jpg", "production_companies": [{"name": "Kasdan Pictures", "id": 13040}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "NPV Entertainment", "id": 172}, {"name": "WV Films II", "id": 24939}], "release_date": "2003-03-21", "popularity": 0.259633528195335, "original_title": "Dreamcatcher", "budget": 68000000, "cast": [{"name": "Morgan Freeman", "character": "Col. Abraham Curtis", "id": 192, "credit_id": "52fe4442c3a36847f808baa7", "cast_id": 2, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Thomas Jane", "character": "Dr. Henry Devlin", "id": 11155, "credit_id": "52fe4442c3a36847f808baab", "cast_id": 3, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 1}, {"name": "Jason Lee", "character": "Joe 'Beaver' Clarenden", "id": 11662, "credit_id": "52fe4442c3a36847f808baaf", "cast_id": 4, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 2}, {"name": "Damian Lewis", "character": "Gary 'Jonesy' Jones", "id": 20186, "credit_id": "52fe4442c3a36847f808bab3", "cast_id": 5, "profile_path": "/3cQpH6BvgK8C1TmcVYC9BPaICUB.jpg", "order": 3}, {"name": "Timothy Olyphant", "character": "Pete Moore", "id": 18082, "credit_id": "52fe4442c3a36847f808bab7", "cast_id": 6, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 4}, {"name": "Tom Sizemore", "character": "Lt. Owen Underhill", "id": 3197, "credit_id": "52fe4442c3a36847f808babb", "cast_id": 7, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 5}, {"name": "Donnie Wahlberg", "character": "Douglas 'Duddits' Cavell", "id": 2680, "credit_id": "52fe4442c3a36847f808babf", "cast_id": 8, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 6}, {"name": "Mikey Holekamp", "character": "Young Henry", "id": 48462, "credit_id": "52fe4443c3a36847f808baf3", "cast_id": 17, "profile_path": "/vfi5LAyl2znJ5hqY1VuwU6YtoN4.jpg", "order": 7}, {"name": "Reece Thompson", "character": "Young Beaver", "id": 48463, "credit_id": "52fe4443c3a36847f808baf7", "cast_id": 18, "profile_path": "/87u9LekMLrRmli8fV3JPV7wj8zS.jpg", "order": 8}, {"name": "Giacomo Baessato", "character": "Young Jonesy", "id": 33049, "credit_id": "52fe4443c3a36847f808bafb", "cast_id": 19, "profile_path": "/67zoEItDFyl0YdPJNOevUxc5SPq.jpg", "order": 9}, {"name": "Joel Palmer", "character": "Young Pete", "id": 48464, "credit_id": "52fe4443c3a36847f808baff", "cast_id": 20, "profile_path": "/aMYct4B4gu2S2Kvw46XrYLl0RzN.jpg", "order": 10}, {"name": "Andrew Robb", "character": "Young Duddits", "id": 48465, "credit_id": "52fe4443c3a36847f808bb03", "cast_id": 21, "profile_path": "/qZ5Cu3lL1DOW5oQL4TtF4OhxyrX.jpg", "order": 11}, {"name": "Rosemary Dunsmore", "character": "Roberta Cavell", "id": 44275, "credit_id": "52fe4443c3a36847f808bb07", "cast_id": 23, "profile_path": "/qdEePC5X5yvnKXVv9lsOAp1EOGl.jpg", "order": 13}, {"name": "Michael O'Neill", "character": "General Matheson", "id": 21710, "credit_id": "52fe4443c3a36847f808bb0b", "cast_id": 24, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 14}, {"name": "Eric Keenleyside", "character": "Rick McCarthy", "id": 2250, "credit_id": "52fe4443c3a36847f808bb0f", "cast_id": 25, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 15}], "directors": [{"name": "Lawrence Kasdan", "department": "Directing", "job": "Director", "credit_id": "52fe4442c3a36847f808baa3", "profile_path": "/pBAB9NAMRhL2IBYcgLu6P1CdXbW.jpg", "id": 8844}], "vote_average": 5.2, "runtime": 136}, "2395": {"poster_path": "/tKL0RJOeuccc1rrpcDKg8qhedIz.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 132900000, "overview": "Ast\u00e9rix and Ob\u00e9lix have to win the Olympic Games in order to help their friend Alafolix marry Princess Irina (portrayed by supermodel Vanessa Hessler). Brutus (Beno\u00eet Poelvoorde) uses every trick in the book to have his own team win the game, and get rid of his father Julius Caesar (Alain Delon) in the process.", "video": false, "id": 2395, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Asterix at the Olympic Games", "tagline": "", "vote_count": 77, "homepage": "http://www.asterixauxjeuxolympiques.com/index.php", "belongs_to_collection": {"backdrop_path": "/vm0i4KIscrTiUsri21z1SOIG4fo.jpg", "poster_path": "/sC6NY40I794YnSNxgDDCnX4B3Se.jpg", "id": 2396, "name": "Asterix and Obelix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0463872", "adult": false, "backdrop_path": "/ryjrqoX1ST2tNS18M3KlVdBJnro.jpg", "production_companies": [{"name": "TF1 Films Productions", "id": 356}, {"name": "Constantin Film", "id": 47}, {"name": "Path\u00e9 Renn Productions", "id": 866}, {"name": "La Petite Reine", "id": 1992}, {"name": "Tri Pictures", "id": 1994}, {"name": "Sorolla Films", "id": 1995}, {"name": "Novo RPI", "id": 1996}, {"name": "Canal+", "id": 5358}, {"name": "uFilm", "id": 8676}, {"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}, {"name": "Les Editions Albert Ren\u00e9", "id": 20409}], "release_date": "2008-01-13", "popularity": 0.952284600570931, "original_title": "Ast\u00e9rix aux Jeux Olympiques", "budget": 97250400, "cast": [{"name": "Clovis Cornillac", "character": "Asterix", "id": 24891, "credit_id": "52fe4354c3a36847f804c0c1", "cast_id": 15, "profile_path": "/mJSv0RaNOVcZNs9lN4I3oSou93A.jpg", "order": 0}, {"name": "G\u00e9rard Depardieu", "character": "Obelix", "id": 16927, "credit_id": "52fe4354c3a36847f804c0c5", "cast_id": 16, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 1}, {"name": "Franck Dubosc", "character": "Troubadix", "id": 24893, "credit_id": "52fe4354c3a36847f804c0c9", "cast_id": 17, "profile_path": "/4YV7cy1mBF48wdrf9Std7a94Dv2.jpg", "order": 2}, {"name": "Jos\u00e9 Garcia", "character": "Vielverdrus", "id": 24895, "credit_id": "52fe4354c3a36847f804c0cd", "cast_id": 18, "profile_path": "/9OlwiWiBgxCGd85HcxuljDXZn3U.jpg", "order": 3}, {"name": "St\u00e9phane Rousseau", "character": "Romantix", "id": 24896, "credit_id": "52fe4354c3a36847f804c0d1", "cast_id": 19, "profile_path": "/6jvSD50ZebWufJ6oc0KCFyz2x7H.jpg", "order": 4}, {"name": "Jean-Pierre Cassel", "character": "Miraculix", "id": 19162, "credit_id": "52fe4354c3a36847f804c0d5", "cast_id": 20, "profile_path": "/yWIAIvRdx0omV9ZOUwLINzHKois.jpg", "order": 5}, {"name": "M\u00f3nica Cruz", "character": "Esmeralda", "id": 24899, "credit_id": "52fe4354c3a36847f804c0d9", "cast_id": 21, "profile_path": "/zoi3DC3KjQjLdy0jESmmdwzdNGY.jpg", "order": 6}, {"name": "Alain Delon", "character": "Julus C\u00e4sar", "id": 15135, "credit_id": "52fe4354c3a36847f804c0dd", "cast_id": 22, "profile_path": "/jNXHnLspNoh1ZOH7gwCkMrjLA7R.jpg", "order": 7}, {"name": "Beno\u00eet Poelvoorde", "character": "Brutus", "id": 47820, "credit_id": "52fe4354c3a36847f804c111", "cast_id": 31, "profile_path": "/aoyfdOFUwlaKKSgAAV7No7tkIT.jpg", "order": 8}, {"name": "Vanessa Hessler", "character": "Prinzessin Irina", "id": 47821, "credit_id": "52fe4354c3a36847f804c115", "cast_id": 32, "profile_path": "/kntvEAgUVwumQNk6BaTztiRQgLa.jpg", "order": 9}, {"name": "Michael Herbig", "character": "Redkeinstus", "id": 18072, "credit_id": "52fe4354c3a36847f804c119", "cast_id": 33, "profile_path": "/n4HuBxCVORNVdZaPQa2sanSFNMF.jpg", "order": 10}, {"name": "Santiago Segura", "character": "Doktormabus", "id": 10847, "credit_id": "52fe4354c3a36847f804c11d", "cast_id": 34, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 11}, {"name": "Bouli Lanners", "character": "K\u00f6nig Aderlas", "id": 47822, "credit_id": "52fe4354c3a36847f804c121", "cast_id": 35, "profile_path": "/nnM1Yq5sodVTC95oav9iPK9ZiNw.jpg", "order": 12}, {"name": "Adriana Sklena\u0159\u00edkov\u00e1", "character": "Madame Methusalix", "id": 47824, "credit_id": "52fe4354c3a36847f804c125", "cast_id": 37, "profile_path": "/oBn7gKG25NYvRgm6gMkNdPVl9Np.jpg", "order": 13}, {"name": "J\u00e9r\u00f4me Le Banner", "character": "Claudius Muscullus", "id": 47825, "credit_id": "52fe4354c3a36847f804c129", "cast_id": 38, "profile_path": "/eKwzGpMOFOb3I3fNFwlbC6e3eMC.jpg", "order": 14}, {"name": "Alexandre Astier", "character": "Obstinatus", "id": 47826, "credit_id": "52fe4354c3a36847f804c12d", "cast_id": 39, "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "order": 15}, {"name": "Luca Bizzarri", "character": "Alpha", "id": 47827, "credit_id": "52fe4354c3a36847f804c131", "cast_id": 40, "profile_path": "/t1qJo5IjLPYBpSjnkSKiMZ0q9vi.jpg", "order": 16}, {"name": "Paolo Kessisoglu", "character": "Beta", "id": 47828, "credit_id": "52fe4354c3a36847f804c135", "cast_id": 41, "profile_path": "/yqqTokJ6hWT0wEMchTmM4QKe4pJ.jpg", "order": 17}, {"name": "Elie Semoun", "character": "Omega", "id": 47829, "credit_id": "52fe4354c3a36847f804c139", "cast_id": 42, "profile_path": "/fdVGGPIf4sXIZ2yiBVgEySUK7CK.jpg", "order": 18}, {"name": "Francis Lalanne", "character": "Lalanix", "id": 228780, "credit_id": "52fe4354c3a36847f804c141", "cast_id": 44, "profile_path": "/zuSyhEGOOx69o24D3ffqsIH72Yy.jpg", "order": 20}, {"name": "Michael Schumacher", "character": "Schumix", "id": 216299, "credit_id": "52fe4354c3a36847f804c145", "cast_id": 46, "profile_path": "/x3tFUWZiUNh5TdIzQ0nWfBeGJvB.jpg", "order": 21}, {"name": "Zinedine Zidane", "character": "Num\u00e9rodis", "id": 19731, "credit_id": "52fe4354c3a36847f804c149", "cast_id": 47, "profile_path": "/vIoeQEIg8XdMFYtUfas2F1BDVm2.jpg", "order": 22}, {"name": "Tony Parker", "character": "Tonus Parker", "id": 1177654, "credit_id": "52fe4354c3a36847f804c14d", "cast_id": 48, "profile_path": "/dfcLocFcH6e4wCKhi3wR7hmlIjt.jpg", "order": 23}, {"name": "Sim", "character": "Agecanonix", "id": 35957, "credit_id": "552af867c3a3683e52003d95", "cast_id": 49, "profile_path": "/eTUYBLL1hTDQvrsALIb6tnp6Vpm.jpg", "order": 24}], "directors": [{"name": "Fr\u00e9d\u00e9ric Forestier", "department": "Directing", "job": "Director", "credit_id": "52fe4354c3a36847f804c07b", "profile_path": "/qmTmDaWdwzbm3ppoALxi7gU5xFz.jpg", "id": 24886}, {"name": "Thomas Langmann", "department": "Directing", "job": "Director", "credit_id": "52fe4354c3a36847f804c087", "profile_path": "/3dUr93spIPeXeAwi6wRqfDekewz.jpg", "id": 20674}], "vote_average": 4.4, "runtime": 116}, "10589": {"poster_path": "/seEavscJqc1TuHfSZMeXQwohkNf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61347797, "overview": "Two master thieves (Brosnan and Hayek) are finally retiring after one last succesful mission. Residing in their own tropical paradise, their old nemesis, FBI Agent Stan P. Lloyd shows up to make sure they really are retired. Docked in the port is an ocean liner called the \"Diamond Cruise\" and Stan is convinced that they're not really retired at all, and that this is the next set up.", "video": false, "id": 10589, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "After the Sunset", "tagline": "Who will walk away?", "vote_count": 68, "homepage": "http://www.afterthesunset.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367479", "adult": false, "backdrop_path": "/8Ghuhi363sv5NNA3ckIJUhhYRXk.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}, {"name": "Firm Films", "id": 1838}], "release_date": "2004-11-12", "popularity": 1.11637968457863, "original_title": "After the Sunset", "budget": 60000000, "cast": [{"name": "Pierce Brosnan", "character": "Max Burdett", "id": 517, "credit_id": "52fe438d9251416c75014e5d", "cast_id": 12, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Lola Cirillo", "id": 3136, "credit_id": "52fe438d9251416c75014e67", "cast_id": 14, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Stan Lloyd", "id": 57755, "credit_id": "52fe438d9251416c75014e83", "cast_id": 19, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "Troy Garity", "character": "Luc", "id": 31711, "credit_id": "52fe438d9251416c75014e87", "cast_id": 21, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 3}, {"name": "Russell Hornsby", "character": "Jean-Paul", "id": 62649, "credit_id": "52fe438d9251416c75014e8b", "cast_id": 22, "profile_path": "/sLWQehUFWePO3jVSJLBCHfJYi1o.jpg", "order": 4}, {"name": "Rex Linn", "character": "Agent Kowalski", "id": 16937, "credit_id": "52fe438d9251416c75014e95", "cast_id": 25, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 5}, {"name": "Michael Bowen", "character": "FBI Driver", "id": 2234, "credit_id": "52fe438d9251416c75014e99", "cast_id": 26, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 6}, {"name": "Mark Moses", "character": "Lakers FBI Agent", "id": 11889, "credit_id": "52fe438d9251416c75014e9d", "cast_id": 27, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 7}, {"name": "Chris Penn", "character": "Rowdy Fan", "id": 2969, "credit_id": "52fe438d9251416c75014ea1", "cast_id": 28, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 8}, {"name": "Obba Babatunde", "character": "Zacharias", "id": 52057, "credit_id": "52fe438d9251416c75014ea5", "cast_id": 29, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 9}, {"name": "Gianni Russo", "character": "Clippers Fan", "id": 3095, "credit_id": "52fe438d9251416c75014ea9", "cast_id": 30, "profile_path": "/ttNwx2hFyQ7RkhAFhcfXtOYr6md.jpg", "order": 10}, {"name": "Don Cheadle", "character": "Henri Moor\u00e9", "id": 1896, "credit_id": "52fe438d9251416c75014eb1", "cast_id": 32, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 12}, {"name": "Tony Ledard", "character": "Referee", "id": 65696, "credit_id": "52fe438d9251416c75014eb9", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Shaquille O'Neal", "character": "Himself", "id": 35806, "credit_id": "52fe438d9251416c75014eb5", "cast_id": 33, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 14}, {"name": "Naomie Harris", "character": "Sophie", "id": 2038, "credit_id": "52fe438d9251416c75014ebd", "cast_id": 35, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 15}, {"name": "Andrew Fiscella", "character": "Popcorn Victim", "id": 65699, "credit_id": "52fe438d9251416c75014ec5", "cast_id": 37, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 16}, {"name": "Karl Malone", "character": "Himself", "id": 65697, "credit_id": "52fe438d9251416c75014ec1", "cast_id": 36, "profile_path": "/d4l7fbcGy6oLSXN8eDtzdbTmBoT.jpg", "order": 17}, {"name": "Gary Payton", "character": "Himself", "id": 65698, "credit_id": "52fe438d9251416c75014ec9", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Mykelti Williamson", "character": "Agent Stafford", "id": 34, "credit_id": "52fe438d9251416c75014eeb", "cast_id": 44, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 19}, {"name": "Alan Dale", "character": "Security Chief", "id": 52760, "credit_id": "52fe438d9251416c75014eef", "cast_id": 45, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 20}, {"name": "Robert Curtis Brown", "character": "Lakers FBI Agent", "id": 233298, "credit_id": "532ffa529251413a78005181", "cast_id": 46, "profile_path": "/1plgmYJoFzTUJwPD1YbMtl9NQxD.jpg", "order": 21}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe438d9251416c75014ecf", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.0, "runtime": 97}, "55347": {"poster_path": "/gE6VUgK9zS0QVD5brMKSF9knUy2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5332926, "overview": "A young man is rocked by two announcements from his elderly father: that he has terminal cancer, and that he has a young male lover.", "video": false, "id": 55347, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Beginners", "tagline": "When it comes to relationships, we\u2019re all beginners.", "vote_count": 92, "homepage": "http://focusfeatures.com/beginners", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1532503", "adult": false, "backdrop_path": "/ySQqn2UcQOhuc2UxGhHhEaYEMxY.jpg", "production_companies": [{"name": "Olympus Pictures", "id": 7400}], "release_date": "2010-09-11", "popularity": 0.431624875675911, "original_title": "Beginners", "budget": 3200000, "cast": [{"name": "Ewan McGregor", "character": "Oliver", "id": 3061, "credit_id": "52fe48c7c3a36847f8178f7f", "cast_id": 3, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Christopher Plummer", "character": "Hal", "id": 290, "credit_id": "52fe48c7c3a36847f8178f83", "cast_id": 4, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 1}, {"name": "M\u00e9lanie Laurent", "character": "Anna", "id": 19119, "credit_id": "52fe48c7c3a36847f8178f87", "cast_id": 5, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 2}, {"name": "Goran Vi\u0161nji\u0107", "character": "Andy", "id": 5725, "credit_id": "52fe48c7c3a36847f8178f8b", "cast_id": 6, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 3}, {"name": "Kai Lennox", "character": "Elliot", "id": 21633, "credit_id": "52fe48c7c3a36847f8178f8f", "cast_id": 7, "profile_path": "/m0mkP40z9aIQ0fYZxXmphdhpWk8.jpg", "order": 4}, {"name": "Mary Page Keller", "character": "Georgia", "id": 82653, "credit_id": "52fe48c7c3a36847f8178f93", "cast_id": 8, "profile_path": "/gY4phh7b54ttOplZLMEdP0DAsEe.jpg", "order": 5}, {"name": "Keegan Boos", "character": "Young Oliver", "id": 235847, "credit_id": "52fe48c7c3a36847f8178f97", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "China Shavers", "character": "Shauna", "id": 235848, "credit_id": "52fe48c7c3a36847f8178f9b", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Melissa Tang", "character": "Liz", "id": 212778, "credit_id": "52fe48c7c3a36847f8178f9f", "cast_id": 11, "profile_path": "/x3emNzx65NPNoYcL13iI6fHC5I0.jpg", "order": 8}, {"name": "Amanda Payton", "character": "Party Person", "id": 211768, "credit_id": "52fe48c7c3a36847f8178fa3", "cast_id": 12, "profile_path": "/6kgBc9pUtMhGqP6khaxVcKwuOfp.jpg", "order": 9}, {"name": "Luke Dilberto", "character": "Green Witch", "id": 235849, "credit_id": "52fe48c7c3a36847f8178fa7", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Lou Taylor Pucci", "character": "Magician", "id": 17441, "credit_id": "52fe48c7c3a36847f8178fab", "cast_id": 14, "profile_path": "/bl2iZAdBRjq9I7LhZTmxfxKdNcQ.jpg", "order": 11}, {"name": "Jennifer Lauren Grant", "character": "Record Company Rep", "id": 97923, "credit_id": "52fe48c7c3a36847f8178faf", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Reynaldo Pacheco", "character": "Julio", "id": 235850, "credit_id": "52fe48c7c3a36847f8178fb3", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Jodi Long", "character": "Dr. Long", "id": 44059, "credit_id": "52fe48c7c3a36847f8178fb7", "cast_id": 17, "profile_path": "/1Jc60wX4lOYwRPTonHDPI8l3Msv.jpg", "order": 14}, {"name": "Bruce French", "character": "Dr. Wright", "id": 157582, "credit_id": "52fe48c7c3a36847f8178fbb", "cast_id": 18, "profile_path": "/cH88DF3XQGS3hIkkveAiObPyAOy.jpg", "order": 15}, {"name": "Leslie Shea", "character": "ICU Nurse #1", "id": 235851, "credit_id": "52fe48c7c3a36847f8178fbf", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Michael Chieffo", "character": "Hal's Priest", "id": 112053, "credit_id": "52fe48c7c3a36847f8178fc3", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Jennifer Hasty", "character": "Secretary", "id": 191897, "credit_id": "52fe48c7c3a36847f8178fc7", "cast_id": 21, "profile_path": "/p2MKBorcVylJoYl7XKNVd4EsB9s.jpg", "order": 18}, {"name": "Rodney Saulsberry", "character": "1978 Museum Staff", "id": 159068, "credit_id": "52fe48c7c3a36847f8178fcb", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "June Saunders", "character": "1978 Fancy Woman", "id": 235852, "credit_id": "52fe48c7c3a36847f8178fcf", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Catherine McGoohan", "character": "1978 Older Woman", "id": 65749, "credit_id": "52fe48c7c3a36847f8178fd3", "cast_id": 24, "profile_path": "/oVFDGAuDNM5wMwBqggIfnePVZla.jpg", "order": 21}, {"name": "Terry Walters", "character": "Terse Nurse", "id": 142263, "credit_id": "52fe48c7c3a36847f8178fd7", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Lana Young", "character": "ICU Nurse #2", "id": 44578, "credit_id": "52fe48c7c3a36847f8178fdb", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Algerita Wynn Lewis", "character": "Nice Nurse", "id": 66664, "credit_id": "52fe48c7c3a36847f8178fdf", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Regine Redwing", "character": "Strict Nurse", "id": 235853, "credit_id": "52fe48c7c3a36847f8178fe3", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Sunday Burke", "character": "Home Nurse #1", "id": 235854, "credit_id": "52fe48c7c3a36847f8178fe7", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Patrick L. Birkett", "character": "Hal Look-Alike", "id": 235855, "credit_id": "52fe48c7c3a36847f8178feb", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Sabera Wise", "character": "Skating Rink Manager", "id": 235856, "credit_id": "52fe48c7c3a36847f8178fef", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Rafael J. Noble", "character": "Brian", "id": 168913, "credit_id": "52fe48c7c3a36847f8178ff3", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Jose Yenque", "character": "Robert", "id": 118045, "credit_id": "52fe48c7c3a36847f8178ff7", "cast_id": 33, "profile_path": "/i4WQ5gbb337in746o176trTFPNZ.jpg", "order": 30}], "directors": [{"name": "Mike Mills", "department": "Directing", "job": "Director", "credit_id": "52fe48c7c3a36847f8178f75", "profile_path": "/or8FfvzxImBemZ7zI07oVRkRNPQ.jpg", "id": 17439}], "vote_average": 7.0, "runtime": 105}, "22586": {"poster_path": "/lHx67Tg3vrMi0EveONGoREyTGRk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "As children, Prince Derek and Princess Odette are forced to spend their summers together by their widowed parents, who hope that the two will eventually fall in love and marry, so that the kingdoms of the two will be united. As children and adolescents, Derek and Odette can't stand each other, but as young adults they begin to see each other in a different light and fall in love with each other. B", "video": false, "id": 22586, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Swan Princess", "tagline": "An enchanting classic destined to capture your heart and free your spirit.", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wxKt5KHvMYUSLHvyPf2xj64y3dJ.jpg", "poster_path": "/3qBPAUFUMOOT9KqUEYXWAKy93Ge.jpg", "id": 144200, "name": "The Swan Princess Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111333", "adult": false, "backdrop_path": "/emhVT7rsvPbhkIEmlXVQ7ZcJxma.jpg", "production_companies": [{"name": "NEST Family Entertainment", "id": 4107}, {"name": "Rich Animation Studios", "id": 4108}], "release_date": "1994-11-18", "popularity": 0.42247952565896, "original_title": "The Swan Princess", "budget": 0, "cast": [{"name": "Michelle Nicastro", "character": "Adult Princess Odette (voice)", "id": 9260, "credit_id": "52fe4447c3a368484e019f1d", "cast_id": 1, "profile_path": "/mwaoMLHrMKFLHKyYqlVAqdfsJuY.jpg", "order": 0}, {"name": "Howard McGillin", "character": "Adult Prince Derek (voice)", "id": 88946, "credit_id": "52fe4447c3a368484e019f21", "cast_id": 2, "profile_path": "/3e8MACqsCYhPIjtCOCSapPLZPZ2.jpg", "order": 1}, {"name": "Jack Palance", "character": "Lord Rothbart (voice)", "id": 3785, "credit_id": "52fe4447c3a368484e019f25", "cast_id": 3, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 2}, {"name": "John Cleese", "character": "Jean-Bob (voice)", "id": 8930, "credit_id": "52fe4447c3a368484e019f29", "cast_id": 4, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 3}, {"name": "Steven Wright", "character": "Speed (voice)", "id": 3214, "credit_id": "52fe4447c3a368484e019f2d", "cast_id": 5, "profile_path": "/m9827iUNPGTbAsfjHD9tpMCXYbR.jpg", "order": 4}, {"name": "Sandy Duncan", "character": "Queen Uberta (voice)", "id": 88947, "credit_id": "52fe4447c3a368484e019f31", "cast_id": 6, "profile_path": "/AuNmo9KppBRuHQpyAiSELrZ0R7A.jpg", "order": 5}, {"name": "Steve Vinovich", "character": "Puffin (voice)", "id": 88948, "credit_id": "52fe4447c3a368484e019f35", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Mark Harelik", "character": "Lord Rogers (voice)", "id": 88949, "credit_id": "52fe4447c3a368484e019f39", "cast_id": 8, "profile_path": "/iiWjqkiQc9StJjC0KTSjg5AZFSa.jpg", "order": 7}, {"name": "Joel McKinnon Miller", "character": "Bromley (voice)", "id": 88950, "credit_id": "52fe4447c3a368484e019f3d", "cast_id": 9, "profile_path": "/3Ogco60XoPVmbLTzqmhgxDgsQBW.jpg", "order": 8}, {"name": "Dakin Matthews", "character": "King William (voice)", "id": 43364, "credit_id": "52fe4447c3a368484e019f41", "cast_id": 10, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 9}], "directors": [{"name": "Richard Rich", "department": "Directing", "job": "Director", "credit_id": "52fe4447c3a368484e019f47", "profile_path": null, "id": 107274}], "vote_average": 6.5, "runtime": 90}, "9754": {"poster_path": "/8L6Cegh3Sk4XKLw5oVhKyGWQqs0.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82800000, "overview": "State-of-the-art security system creator Jack Stanfield has cemented his reputation as a man who's thought of everything. But when a criminal finds a way into Jack's personal life, everything Jack holds dear is suddenly at stake.", "video": false, "id": 9754, "genres": [{"id": 53, "name": "Thriller"}], "title": "Firewall", "tagline": "Nothing Is More Dangerous Than A Man With Everything To Lose.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0408345", "adult": false, "backdrop_path": "/jC6pdiupSoUuuQdQ39cWxG6OiA1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Beacon Pictures", "id": 10157}, {"name": "Thunder Road Pictures", "id": 3528}, {"name": "Jon Shestack Productions", "id": 10991}], "release_date": "2006-02-10", "popularity": 0.294890208746306, "original_title": "Firewall", "budget": 45000000, "cast": [{"name": "Harrison Ford", "character": "Jack Stanfield", "id": 3, "credit_id": "52fe4527c3a36847f80bf513", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Bill Cox", "id": 6162, "credit_id": "52fe4527c3a36847f80bf517", "cast_id": 2, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Virginia Madsen", "character": "Beth Stanfield", "id": 12519, "credit_id": "52fe4527c3a36847f80bf51b", "cast_id": 3, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 2}, {"name": "Carly Schroeder", "character": "Sarah Stanfield", "id": 58899, "credit_id": "52fe4527c3a36847f80bf51f", "cast_id": 4, "profile_path": "/ihcZ1cj61Qz5vRoCdtJDxPcqArq.jpg", "order": 3}, {"name": "Jimmy Bennett", "character": "Andy Stanfield", "id": 6860, "credit_id": "52fe4527c3a36847f80bf523", "cast_id": 5, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 4}, {"name": "Mary Lynn Rajskub", "character": "Janet Stone", "id": 25884, "credit_id": "52fe4527c3a36847f80bf527", "cast_id": 6, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 5}, {"name": "Gail Ann Lewis", "character": "Bank Employee #1", "id": 58900, "credit_id": "52fe4527c3a36847f80bf52b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Robert Patrick", "character": "Gary Mitchell", "id": 418, "credit_id": "52fe4527c3a36847f80bf52f", "cast_id": 8, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 7}, {"name": "Robert Forster", "character": "Harry", "id": 5694, "credit_id": "52fe4527c3a36847f80bf533", "cast_id": 9, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 8}, {"name": "Alan Arkin", "character": "Arlin Forester", "id": 1903, "credit_id": "52fe4527c3a36847f80bf537", "cast_id": 10, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 9}, {"name": "Matthew Currie Holmes", "character": "Bobby", "id": 58901, "credit_id": "52fe4527c3a36847f80bf53b", "cast_id": 11, "profile_path": "/aW2pvKZC0iMSmriIoeTwkSENu47.jpg", "order": 10}, {"name": "Candus Churchill", "character": "Betty", "id": 41432, "credit_id": "52fe4527c3a36847f80bf53f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "David Lewis", "character": "Rich", "id": 4095, "credit_id": "52fe4527c3a36847f80bf543", "cast_id": 13, "profile_path": "/jnQ7KVRV72fkBzU629XlUPsupTH.jpg", "order": 12}, {"name": "Zahf Paroo", "character": "Ravi", "id": 58902, "credit_id": "52fe4527c3a36847f80bf547", "cast_id": 14, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 13}, {"name": "Pat Jenkinson", "character": "Laurie", "id": 58903, "credit_id": "52fe4527c3a36847f80bf54b", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Richard Loncraine", "department": "Directing", "job": "Director", "credit_id": "52fe4527c3a36847f80bf551", "profile_path": "/j700yY5SyI1EZegFpL4h77Otu5W.jpg", "id": 33315}], "vote_average": 5.6, "runtime": 105}, "14411": {"poster_path": "/6LELf4ZzVBJwR9mNq86Mf5QVERS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26288320, "overview": "The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.", "video": false, "id": 14411, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Sinbad: Legend of the Seven Seas", "tagline": "", "vote_count": 67, "homepage": "http://sinbad-themovie.com/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0165982", "adult": false, "backdrop_path": "/bqzJsag3BAx1d6GkS3lthC2XCga.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2003-07-02", "popularity": 0.549273587082214, "original_title": "Sinbad: Legend of the Seven Seas", "budget": 60000000, "cast": [{"name": "Brad Pitt", "character": "Sinbad", "id": 287, "credit_id": "52fe45f09251416c75067ad5", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Marina", "id": 1922, "credit_id": "52fe45f09251416c75067ad9", "cast_id": 2, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Eris", "id": 1160, "credit_id": "52fe45f09251416c75067add", "cast_id": 3, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Joseph Fiennes", "character": "Proteus", "id": 12763, "credit_id": "52fe45f09251416c75067ae1", "cast_id": 4, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 3}, {"name": "Dennis Haysbert", "character": "Kale", "id": 352, "credit_id": "53b051cc0e0a26598c00693e", "cast_id": 9, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 4}, {"name": "Timothy West", "character": "Dymas", "id": 35257, "credit_id": "53b051de0e0a265980006713", "cast_id": 10, "profile_path": "/PsZdCMfSBQA8wmq84PE51ATUhV.jpg", "order": 5}, {"name": "Timothy West", "character": "Rat", "id": 35257, "credit_id": "53b051f20e0a265983006659", "cast_id": 11, "profile_path": "/PsZdCMfSBQA8wmq84PE51ATUhV.jpg", "order": 6}, {"name": "Raman Hui", "character": "Jin", "id": 12099, "credit_id": "53b052030e0a26598c006943", "cast_id": 12, "profile_path": "/BmPYRLBeb2Ln881ihfemK1lo4w.jpg", "order": 7}, {"name": "Chung Chan", "character": "Li", "id": 1335620, "credit_id": "53b0521f0e0a265989006663", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Jim Cummings", "character": "Luca", "id": 12077, "credit_id": "53b052320e0a26598c00694b", "cast_id": 14, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}, {"name": "Conrad Vernon", "character": "Jed", "id": 12080, "credit_id": "53b052410e0a265979006677", "cast_id": 15, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 10}, {"name": "Andrew Birch", "character": "Grum / Chum", "id": 1335621, "credit_id": "53b052600e0a26598900666e", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Chris Miller", "character": "Tower guard", "id": 1335622, "credit_id": "53b052780e0a26598c006952", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe45f09251416c75067ae7", "profile_path": null, "id": 52870}, {"name": "Patrick Gilmore", "department": "Directing", "job": "Director", "credit_id": "52fe45f09251416c75067af3", "profile_path": null, "id": 1205756}], "vote_average": 6.4, "runtime": 86}, "1571": {"poster_path": "/8czarUCdvqPnulkLX8mdXyrLk2D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 383531464, "overview": "John McClane is back and badder than ever, and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.", "video": false, "id": 1571, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Live Free or Die Hard", "tagline": "The old school cop is back!", "vote_count": 951, "homepage": "http://www.livefreeordiehard.com/", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0337978", "adult": false, "backdrop_path": "/yo3LesueMprtgjRiIRmjiIrFIKj.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Wintergreen Productions", "id": 11845}], "release_date": "2007-06-21", "popularity": 1.87887230176146, "original_title": "Live Free or Die Hard", "budget": 110000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe42fec3a36847f8032857", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Mary Elizabeth Winstead", "character": "Lucy McClane", "id": 17628, "credit_id": "52fe42fec3a36847f803285b", "cast_id": 2, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 1}, {"name": "Justin Long", "character": "Matthew 'Matt' Farrell", "id": 15033, "credit_id": "52fe42fec3a36847f803285f", "cast_id": 3, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 2}, {"name": "Timothy Olyphant", "character": "Thomas Gabriel", "id": 18082, "credit_id": "52fe42fec3a36847f8032863", "cast_id": 4, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 3}, {"name": "Maggie Q", "character": "Mai Linh", "id": 21045, "credit_id": "52fe42fec3a36847f80328b5", "cast_id": 18, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 4}, {"name": "Yorgo Constantine", "character": "Russo", "id": 21051, "credit_id": "52fe42fec3a36847f80328b9", "cast_id": 20, "profile_path": "/e5kenJiOgpX9bvldQibR8ODpm4U.jpg", "order": 6}, {"name": "Kevin Smith", "character": "The Warlock", "id": 19303, "credit_id": "52fe42fec3a36847f80328bd", "cast_id": 22, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 7}, {"name": "Cliff Curtis", "character": "Bowman", "id": 7248, "credit_id": "52fe42fec3a36847f80328c1", "cast_id": 23, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 8}, {"name": "Cyril Raffaelli", "character": "Rand", "id": 21946, "credit_id": "52fe42fec3a36847f80328c5", "cast_id": 24, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 9}, {"name": "Jonathan Sadowski", "character": "Trey", "id": 21047, "credit_id": "52fe42fec3a36847f80328e1", "cast_id": 29, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 10}, {"name": "Andrew Friedman", "character": "Casper", "id": 74124, "credit_id": "52fe42fec3a36847f80328e5", "cast_id": 30, "profile_path": "/kIQj1KGXJAovEFbUOfren84UDoq.jpg", "order": 11}, {"name": "Chris Palermo", "character": "Del", "id": 35546, "credit_id": "52fe42fec3a36847f80328f5", "cast_id": 33, "profile_path": "/tt6esR3LjJ3XOVknYzCTXdHtpii.jpg", "order": 12}, {"name": "Sung Kang", "character": "Raj", "id": 61697, "credit_id": "52fe42fec3a36847f80328f9", "cast_id": 34, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 13}, {"name": "\u017deljko Ivanek", "character": "Agent Molina", "id": 6752, "credit_id": "52fe42fec3a36847f80328fd", "cast_id": 35, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 14}, {"name": "Christina Chang", "character": "Taylor", "id": 1215689, "credit_id": "52fe42fec3a36847f8032901", "cast_id": 36, "profile_path": "/gwUBGb6l1Qr1l1Q5yVQ3nbMHxhA.jpg", "order": 15}, {"name": "Jake McDorman", "character": "Jim", "id": 94791, "credit_id": "52fe42fec3a36847f8032905", "cast_id": 37, "profile_path": "/7DHDZrBne3diRwoWirg9djgKzTg.jpg", "order": 16}, {"name": "Allen Maldonado", "character": "Goatee", "id": 141432, "credit_id": "52fe42fec3a36847f8032909", "cast_id": 38, "profile_path": "/yjVKDl9IMrkOUk0ANyFZtOkdM05.jpg", "order": 17}, {"name": "Chris Ellis", "character": "Scalvino", "id": 8191, "credit_id": "52fe42fec3a36847f803290d", "cast_id": 39, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 18}, {"name": "Matt O'Leary", "character": "Clay", "id": 71467, "credit_id": "52fe42fec3a36847f8032911", "cast_id": 40, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 19}, {"name": "Nadine Ellis", "character": "Teller", "id": 168925, "credit_id": "52fe42fec3a36847f8032915", "cast_id": 41, "profile_path": "/7HxzDtQgpcWbE8BoMmTRmqZ3rny.jpg", "order": 20}, {"name": "Tim Russ", "character": "Chuck Summer", "id": 55538, "credit_id": "52fe42fec3a36847f8032919", "cast_id": 42, "profile_path": "/a6t2lHZHePoUOWz1aHotrAEgz7v.jpg", "order": 21}, {"name": "Yancey Arias", "character": "Agent Johnson", "id": 21049, "credit_id": "52fe42fec3a36847f803291d", "cast_id": 43, "profile_path": "/yXePNE3sFAHk1CAgdObHhUrWsKL.jpg", "order": 22}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe42fec3a36847f8032869", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 6.3, "runtime": 128}, "14435": {"poster_path": "/iuMSi4ibVwHuXcBjrLvijih72os.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59157085, "overview": "Ten years ago, a tragedy changed the town of Harmony forever. Tom Hanniger, an inexperienced coal miner, caused an accident in the tunnels that trapped and killed five men and sent the only survivor, Harry Warden, into a permanent coma. But Harry Warden wanted revenge. Exactly one year later, on Valentine\u2019s Day, he woke up\u2026and brutally murdered twenty-two people with a pickaxe before being killed.", "video": false, "id": 14435, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "My Bloody Valentine", "tagline": "He's gonna break your heart.", "vote_count": 62, "homepage": "http://www.mybloodyvalentinein3d.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 264437, "name": "My Bloody Valentine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179891", "adult": false, "backdrop_path": "/sWgf8vXNFFcUSThDs0P8r7ol5Me.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2009-01-16", "popularity": 0.462208886959387, "original_title": "My Bloody Valentine", "budget": 15000000, "cast": [{"name": "Jensen Ackles", "character": "Tom Hanniger", "id": 49624, "credit_id": "52fe45f39251416c75068091", "cast_id": 2, "profile_path": "/3PEwDCpJwA6ZKzD1hJdp334EGbp.jpg", "order": 0}, {"name": "Jaime King", "character": "Sarah Palmer", "id": 5915, "credit_id": "52fe45f39251416c75068095", "cast_id": 3, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 1}, {"name": "Kerr Smith", "character": "Axel Palmer", "id": 43442, "credit_id": "52fe45f39251416c75068099", "cast_id": 4, "profile_path": "/8CVdfA5L27Nh2fPyLwax3Tn9Xkr.jpg", "order": 2}, {"name": "Betsy Rue", "character": "Irene", "id": 76886, "credit_id": "52fe45f39251416c7506809d", "cast_id": 5, "profile_path": "/ijVVm6V486kul5o8bMZbT1kOW2B.jpg", "order": 3}, {"name": "Edi Gathegi", "character": "Deputy Martin", "id": 39391, "credit_id": "52fe45f39251416c750680a1", "cast_id": 6, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 4}, {"name": "Tom Atkins", "character": "Sheriff Jim Burke", "id": 11784, "credit_id": "52fe45f39251416c750680b1", "cast_id": 9, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 5}, {"name": "Kevin Tighe", "character": "Ben Foley", "id": 17770, "credit_id": "52fe45f39251416c750680b5", "cast_id": 10, "profile_path": "/5Q1Z89xsrnLdQWdHLuiaraS89vV.jpg", "order": 6}, {"name": "Megan Boone", "character": "Megan", "id": 222141, "credit_id": "52fe45f39251416c750680d5", "cast_id": 19, "profile_path": "/fqCZZb33w8RhWl2GVGdWOqXBQNO.jpg", "order": 7}, {"name": "Karen Baum", "character": "Deputy Ferris", "id": 966102, "credit_id": "52fe45f39251416c750680b9", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Joy de la Paz", "character": "Rosa", "id": 1114306, "credit_id": "52fe45f39251416c750680bd", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Marc Macaulay", "character": "Riggs", "id": 6908, "credit_id": "52fe45f39251416c750680c1", "cast_id": 14, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 10}, {"name": "Todd Farmer", "character": "Frank the Trucker", "id": 61117, "credit_id": "52fe45f39251416c750680c5", "cast_id": 15, "profile_path": "/xMd0pkgpgjfLwKX01mXpW68eYAu.jpg", "order": 11}, {"name": "Jeff Hochendoner", "character": "Red", "id": 170145, "credit_id": "52fe45f39251416c750680c9", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Bingo O'Malley", "character": "Officer Hinch", "id": 104046, "credit_id": "52fe45f39251416c750680cd", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Liam Rhodes", "character": "Michael", "id": 1114307, "credit_id": "52fe45f39251416c750680d1", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Richard John Walters", "character": "Harry Warden", "id": 1344290, "credit_id": "53cc3cccc3a368776d001b60", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Patrick Lussier", "department": "Directing", "job": "Director", "credit_id": "52fe45f39251416c7506808d", "profile_path": "/xBZm3o2FtAH0RjEdmAau8OqkoZg.jpg", "id": 27226}], "vote_average": 5.3, "runtime": 101}, "39013": {"poster_path": "/lUFZr1hEgFbowMHzJhAKx08VMGA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13831503, "overview": "17 year-old Ree Dolly sets out to track down her father, who put their house up for his bail bond and then disappeared. If she fails, Ree and her family will be turned out into the Ozark woods. Challenging her outlaw kin's code of silence and risking her life, Ree hacks through the lies, evasions and threats offered up by her relatives and begins to piece together the truth.", "video": false, "id": 39013, "genres": [{"id": 18, "name": "Drama"}], "title": "Winter's Bone", "tagline": "Talking Just Causes Witnesses", "vote_count": 135, "homepage": "http://www.wintersbonemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1399683", "adult": false, "backdrop_path": "/A9qia4GnGJsUPvRpNmmaCFe6e5Z.jpg", "production_companies": [{"name": "Anonymous Content", "id": 10039}, {"name": "Winter's Bone Productions", "id": 19778}], "release_date": "2010-06-11", "popularity": 1.15735805372852, "original_title": "Winter's Bone", "budget": 2000000, "cast": [{"name": "Jennifer Lawrence", "character": "Ree Dolly", "id": 72129, "credit_id": "52fe46f19251416c91064f27", "cast_id": 2, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "John Hawkes", "character": "Teardrop", "id": 16861, "credit_id": "52fe46f19251416c91064f2b", "cast_id": 3, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 1}, {"name": "Kevin Breznahan", "character": "Little Arthur", "id": 54711, "credit_id": "52fe46f19251416c91064f2f", "cast_id": 4, "profile_path": "/lF0rs9N5qBsXN68BNksZYEiVnAQ.jpg", "order": 2}, {"name": "Dale Dickey", "character": "Merab", "id": 46814, "credit_id": "52fe46f19251416c91064f33", "cast_id": 5, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 3}, {"name": "Garret Dillahunt", "character": "Sheriff Baskin", "id": 39520, "credit_id": "52fe46f19251416c91064f37", "cast_id": 6, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 4}, {"name": "Sheryl Lee", "character": "April", "id": 6726, "credit_id": "52fe46f29251416c91064f85", "cast_id": 20, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 5}, {"name": "Shelley Waggener", "character": "Sonya", "id": 126487, "credit_id": "52fe46f19251416c91064f3b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Isaiah Stone", "character": "Sonny", "id": 1163717, "credit_id": "52fe46f29251416c91064f8d", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Ashlee Thompson", "character": "Ashlee", "id": 1163718, "credit_id": "52fe46f29251416c91064f91", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Valerie Richards", "character": "Connie", "id": 1163719, "credit_id": "52fe46f29251416c91064f95", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Lauren Sweetser", "character": "Gail", "id": 126488, "credit_id": "52fe46f19251416c91064f3f", "cast_id": 8, "profile_path": null, "order": 10}, {"name": "Cinnamon Schultz", "character": "Victoria", "id": 1163723, "credit_id": "52fe46f29251416c91064fa9", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Casey MacLaren", "character": "Megan", "id": 1163720, "credit_id": "52fe46f29251416c91064f9d", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Tate Taylor", "character": "Satterfield", "id": 55789, "credit_id": "52fe46f29251416c91064f89", "cast_id": 21, "profile_path": "/7RQEzoruBo10j78z8fH6cIEmjNK.jpg", "order": 13}, {"name": "Ronnie Hall", "character": "Thump Milton (as Ron 'Stray Dog' Hall)", "id": 1163716, "credit_id": "52fe46f29251416c91064fbd", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Cody Brown", "character": "Floyd", "id": 180805, "credit_id": "52fe46f29251416c91064f99", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "William White", "character": "Blond Milton", "id": 1163722, "credit_id": "52fe46f29251416c91064fa5", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Beth Domann", "character": "Alice", "id": 1163725, "credit_id": "52fe46f29251416c91064fb1", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Charlotte Jeane Lucas", "character": "Tilly", "id": 1163726, "credit_id": "52fe46f29251416c91064fb5", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Ramona Blair", "character": "Parenting Teacher", "id": 1163724, "credit_id": "52fe46f29251416c91064fad", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Russell Schalk", "character": "Army Recruiter (as Sgt. Russel A. Schalk)", "id": 1163727, "credit_id": "52fe46f29251416c91064fb9", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Marideth Sisco", "character": "Singer at Party", "id": 1163721, "credit_id": "52fe46f29251416c91064fa1", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Debra Granik", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c91064f23", "profile_path": "/lHCc1iNR57bVF5QO3mGgQxVsv1.jpg", "id": 121873}], "vote_average": 6.6, "runtime": 100}, "194662": {"poster_path": "/rSZs93P0LLxqlVEbI001UKoeCQC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21822413, "overview": "A fading actor best known for his portrayal of a popular superhero attempts to mount a comeback by appearing in a Broadway play. As opening night approaches, his attempts to become more altruistic, rebuild his career, and reconnect with friends and family prove more difficult than expected.", "video": false, "id": 194662, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Birdman", "tagline": "or (The Unexpected Virtue of Ignorance)", "vote_count": 864, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2562232", "adult": false, "backdrop_path": "/AsJVim0Hk3KbQPbfjyijfjqmaoZ.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2014-10-17", "popularity": 17.701406813592, "original_title": "Birdman", "budget": 18000000, "cast": [{"name": "Michael Keaton", "character": "Riggan Thomson / Birdman", "id": 2232, "credit_id": "52fe4cf29251416c91105647", "cast_id": 2, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Zach Galifianakis", "character": "Jake", "id": 58225, "credit_id": "52fe4cf29251416c9110564f", "cast_id": 4, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 1}, {"name": "Edward Norton", "character": "Mike Shiner", "id": 819, "credit_id": "52fe4cf29251416c91105653", "cast_id": 5, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 2}, {"name": "Emma Stone", "character": "Sam Thomson", "id": 54693, "credit_id": "52fe4cf29251416c9110564b", "cast_id": 3, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 3}, {"name": "Naomi Watts", "character": "Lesley", "id": 3489, "credit_id": "52fe4cf29251416c91105657", "cast_id": 6, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 4}, {"name": "Amy Ryan", "character": "Sylvia", "id": 39388, "credit_id": "52fe4cf29251416c9110565b", "cast_id": 7, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 5}, {"name": "Andrea Riseborough", "character": "Laura", "id": 127558, "credit_id": "534d5e0b0e0a2679e300024f", "cast_id": 10, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 6}, {"name": "Merritt Wever", "character": "Annie", "id": 28044, "credit_id": "543e79be0e0a266f8e00231a", "cast_id": 17, "profile_path": "/scrfqDWvfyRBZlVvTEJvZbJxcER.jpg", "order": 7}, {"name": "Lindsay Duncan", "character": "Tabitha", "id": 30083, "credit_id": "543e79c80e0a266f7700233d", "cast_id": 18, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 8}, {"name": "Natalie Gold", "character": "Clara", "id": 143256, "credit_id": "54f0a82e9251417974008532", "cast_id": 35, "profile_path": "/rpXCiaLqeQYcZN1Wic6TeE2PBHX.jpg", "order": 9}, {"name": "Kenny Chin", "character": "Korean Grocer", "id": 1099876, "credit_id": "54f0a7689251417968008521", "cast_id": 34, "profile_path": "/yMF6twG8daFYdD6vDmonHHwpU77.jpg", "order": 10}, {"name": "Jeremy Shamos", "character": "Ralph", "id": 155222, "credit_id": "552303d19251417096004404", "cast_id": 36, "profile_path": "/xZSJqN8pBNDX7dwXavI4DUOYBEn.jpg", "order": 11}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe4cf29251416c91105643", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 7.6, "runtime": 119}, "137321": {"poster_path": "/7svFBuWKSB1CQGHBW43z7x85vfD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30800231, "overview": "A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.", "video": false, "id": 137321, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Winter's Tale", "tagline": "This is not a true story. This is true love.", "vote_count": 131, "homepage": "http://www.winterstalemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1837709", "adult": false, "backdrop_path": "/1MotwPyOk8pChJS5UcFH1A61ROI.jpg", "production_companies": [{"name": "Weed Road Pictures", "id": 433}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2014-02-13", "popularity": 1.30988524919989, "original_title": "Winter's Tale", "budget": 60000000, "cast": [{"name": "Jennifer Connelly", "character": "Virginia Gamely", "id": 6161, "credit_id": "52fe4c2ec3a368484e1ab623", "cast_id": 7, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 0}, {"name": "Will Smith", "character": "Judge", "id": 2888, "credit_id": "52fe4c2ec3a368484e1ab62f", "cast_id": 12, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Russell Crowe", "character": "Pearly Soames", "id": 934, "credit_id": "52fe4c2ec3a368484e1ab617", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 2}, {"name": "Colin Farrell", "character": "Peter Lake", "id": 72466, "credit_id": "52fe4c2ec3a368484e1ab61b", "cast_id": 5, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 3}, {"name": "Matt Bomer", "character": "Young Man", "id": 66743, "credit_id": "52fe4c2ec3a368484e1ab62b", "cast_id": 11, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 4}, {"name": "Jessica Brown Findlay", "character": "Beverly Penn", "id": 567269, "credit_id": "52fe4c2ec3a368484e1ab61f", "cast_id": 6, "profile_path": "/j7FQ5U7Bg7jUhvQ9PQt4XeZ5k4T.jpg", "order": 5}, {"name": "Kevin Durand", "character": "Cesar Tan", "id": 79072, "credit_id": "52fe4c2ec3a368484e1ab633", "cast_id": 13, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 6}, {"name": "William Hurt", "character": "Isaac Penn", "id": 227, "credit_id": "52fe4c2ec3a368484e1ab627", "cast_id": 8, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 7}, {"name": "Eva Marie Saint", "character": "Willa (Adult)", "id": 2639, "credit_id": "52fe4c2ec3a368484e1ab637", "cast_id": 14, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 8}, {"name": "Kevin Corrigan", "character": "Romeo Tan", "id": 18472, "credit_id": "52fe4c2ec3a368484e1ab63b", "cast_id": 15, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 9}, {"name": "Lucy Griffiths", "character": "Mrs. Lake", "id": 205257, "credit_id": "52fe4c2ec3a368484e1ab63f", "cast_id": 16, "profile_path": "/haPj7VrjPPZJITPup5gQNKBM7mV.jpg", "order": 10}, {"name": "Graham Greene", "character": "Humpstone John", "id": 6804, "credit_id": "52fe4c2ec3a368484e1ab643", "cast_id": 17, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 11}, {"name": "Finn Wittrock", "character": "Gabriel", "id": 168877, "credit_id": "54a6d69e925141212700dc9e", "cast_id": 28, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 12}], "directors": [{"name": "Akiva Goldsman", "department": "Directing", "job": "Director", "credit_id": "52fe4c2ec3a368484e1ab607", "profile_path": "/smyKiXX4rAfehztrmg3lxgRAuZF.jpg", "id": 5575}], "vote_average": 6.0, "runtime": 118}, "14442": {"poster_path": "/kmobKaIKO9ZvjD3p9SYuLAcHNFg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27388767, "overview": "Ella of Frell is given the \"gift of obedience\" by a fairy, only to realize that it's more of a curse because it could separate her from her true love, Prince Charmont. Will Ella manage to conjure a \"cure\" that enables her to live happily ever after?", "video": false, "id": 14442, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Ella Enchanted", "tagline": "Get enchanted", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327679", "adult": false, "backdrop_path": "/2IiaMCcQKinMY2JgXpED9lq3RlE.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2004-04-09", "popularity": 1.25494837363052, "original_title": "Ella Enchanted", "budget": 31000000, "cast": [{"name": "Anne Hathaway", "character": "Ella", "id": 1813, "credit_id": "52fe45f49251416c75068289", "cast_id": 1, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Hugh Dancy", "character": "Char", "id": 12791, "credit_id": "52fe45f49251416c750682b7", "cast_id": 9, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Edgar", "id": 2130, "credit_id": "52fe45f49251416c750682bb", "cast_id": 10, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Aidan McArdle", "character": "Slannen", "id": 47653, "credit_id": "52fe45f49251416c750682bf", "cast_id": 11, "profile_path": "/dy7uQlhYrp71mkj7EOYOr3C4uJk.jpg", "order": 3}, {"name": "Joanna Lumley", "character": "Dame Olga", "id": 34901, "credit_id": "52fe45f49251416c750682c3", "cast_id": 12, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 4}, {"name": "Lucy Punch", "character": "Hattie", "id": 66446, "credit_id": "52fe45f49251416c750682c7", "cast_id": 13, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 5}, {"name": "Jennifer Higham", "character": "Olive", "id": 64411, "credit_id": "52fe45f49251416c750682cb", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Minnie Driver", "character": "Mandy", "id": 6613, "credit_id": "52fe45f49251416c750682cf", "cast_id": 15, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 7}, {"name": "Eric Idle", "character": "Narrator", "id": 10713, "credit_id": "52fe45f49251416c750682d3", "cast_id": 16, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 8}, {"name": "Steve Coogan", "character": "Heston (voice)", "id": 4581, "credit_id": "52fe45f49251416c750682d7", "cast_id": 17, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 9}, {"name": "Jimi Mistry", "character": "Benny", "id": 16756, "credit_id": "52fe45f49251416c750682db", "cast_id": 18, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 10}, {"name": "Vivica A. Fox", "character": "Lucinda", "id": 2535, "credit_id": "52fe45f49251416c750682df", "cast_id": 19, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 11}, {"name": "Parminder Nagra", "character": "Areida", "id": 231610, "credit_id": "52fe45f49251416c750682e3", "cast_id": 20, "profile_path": "/dwOh7WvwhcK8qXzGuMLhueiy1C.jpg", "order": 12}], "directors": [{"name": "Tommy O'Haver", "department": "Directing", "job": "Director", "credit_id": "52fe45f49251416c7506828f", "profile_path": "/9mLTBNTLML7hOBzH9hDWKV0pGMh.jpg", "id": 62514}], "vote_average": 5.7, "runtime": 96}, "14451": {"poster_path": "/nDWI0SP3go01b5STPcAwQSK3eCc.jpg", "production_countries": [{"iso_3166_1": "NO", "name": "Norway"}], "revenue": 1984662, "overview": "Eight medical students on a ski trip to Norway discover that Hitler's horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.", "video": false, "id": 14451, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Dead Snow", "tagline": "Eins, Zwei, Die!", "vote_count": 68, "homepage": "http://www.deadsnow.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 286038, "name": "Dead Snow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}], "imdb_id": "tt1278340", "adult": false, "backdrop_path": "/ctwDTO8iOC4xnktJhnHVSLJTYMr.jpg", "production_companies": [{"name": "Zwart Arbeid", "id": 44997}, {"name": "Euforia Film", "id": 3553}, {"name": "FilmCamp", "id": 23682}, {"name": "Miho Film", "id": 44992}, {"name": "Barentsfilm", "id": 44993}, {"name": "Yellow Bastard Production", "id": 44995}, {"name": "News On Request (NOR)", "id": 44996}], "release_date": "2009-01-09", "popularity": 0.168263660257312, "original_title": "D\u00f8d sn\u00f8", "budget": 800000, "cast": [{"name": "Charlotte Frogner", "character": "Hanna", "id": 76917, "credit_id": "52fe45f59251416c750685d5", "cast_id": 1, "profile_path": "/2KEuV50NGFQ0kVv6Boi0A7NxNst.jpg", "order": 0}, {"name": "Stig Frode Henriksen", "character": "Roy", "id": 76919, "credit_id": "52fe45f59251416c750685d9", "cast_id": 2, "profile_path": "/9dmquAOhzmBSmIIIcaw8MiQMFoK.jpg", "order": 1}, {"name": "Vegar Hoel", "character": "Martin", "id": 76920, "credit_id": "52fe45f59251416c750685dd", "cast_id": 3, "profile_path": "/ekteFS1uufBQuRQX5Xwi7s23Nci.jpg", "order": 2}, {"name": "Jeppe Beck Laursen", "character": "Erlend", "id": 1287263, "credit_id": "52fe45f69251416c75068617", "cast_id": 20, "profile_path": null, "order": 3}, {"name": "Evy Kasseth R\u00f8sten", "character": "Liv", "id": 76922, "credit_id": "52fe45f59251416c750685e1", "cast_id": 5, "profile_path": "/leTHCUG4uTM63BwrRvPNO2iOmwP.jpg", "order": 4}, {"name": "Lasse Valdal", "character": "Vegard", "id": 76924, "credit_id": "52fe45f59251416c750685e5", "cast_id": 6, "profile_path": "/zWViV3T5UDpq1hN3wXINSScqfdL.jpg", "order": 5}, {"name": "Jenny Skavlan", "character": "Chris", "id": 76925, "credit_id": "52fe45f59251416c750685e9", "cast_id": 7, "profile_path": "/6lK8MsS0rlyenFu1UPxSn6JTLn1.jpg", "order": 6}, {"name": "Bj\u00f8rn Sundquist", "character": "The Wanderer", "id": 71186, "credit_id": "52fe45f59251416c750685ed", "cast_id": 8, "profile_path": "/4e4fDL75LqtIQXLtbkvc2oCx209.jpg", "order": 7}, {"name": "Ane Dahl Torp", "character": "Sara", "id": 63769, "credit_id": "52fe45f59251416c750685f1", "cast_id": 9, "profile_path": "/a0oCtEVw7qvlv8OJ0MOiBJOIgzd.jpg", "order": 8}, {"name": "\u00d8rjan Gamst", "character": "Herzog", "id": 76926, "credit_id": "52fe45f59251416c750685f5", "cast_id": 10, "profile_path": "/guvI7kfvXzN3FcKDH06JNiVlhYH.jpg", "order": 9}], "directors": [{"name": "Tommy Wirkola", "department": "Directing", "job": "Director", "credit_id": "52fe45f59251416c750685fb", "profile_path": "/vkpnQg4eX722Tz283OZOpzSyweK.jpg", "id": 76927}], "vote_average": 6.2, "runtime": 91}, "84329": {"poster_path": "/7oAia3Qim3tVCtNlY6eJRghePOd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3325038, "overview": "A delightful dramatic comedy, a buddy picture, and, for good measure, a heist film. Curmudgeonly old Frank lives by himself. His routine involves daily visits to his local library, where he has a twinkle in his eye for the librarian. His grown children are concerned about their father\u2019s well-being and buy him a caretaker robot. Initially resistant to the idea, Frank soon appreciates the benefits of robotic support \u2013 like nutritious meals and a clean house \u2013 and eventually begins to treat his robot like a true companion. With his robot\u2019s assistance, Frank\u2019s passion for his old, unlawful profession is reignited, for better or worse.", "video": false, "id": 84329, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Robot & Frank", "tagline": "Friendship doesn't have an off switch", "vote_count": 151, "homepage": "http://robotandfrank-film.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1990314", "adult": false, "backdrop_path": "/vWrWTEXfkF3r1sIgZlORVN7UPVr.jpg", "production_companies": [{"name": "Park Pictures", "id": 13466}, {"name": "TBB", "id": 13467}, {"name": "Dog Run Pictures", "id": 13468}, {"name": "White Hat", "id": 13469}, {"name": "Samuel Goldwyn Films", "id": 9118}, {"name": "Stage 6 Films", "id": 11341}], "release_date": "2012-08-16", "popularity": 1.13881584317454, "original_title": "Robot & Frank", "budget": 2500000, "cast": [{"name": "Frank Langella", "character": "Frank", "id": 8924, "credit_id": "52fe48eb9251416c9109cb03", "cast_id": 2, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 0}, {"name": "Liv Tyler", "character": "Madison", "id": 882, "credit_id": "52fe48eb9251416c9109cb07", "cast_id": 3, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 1}, {"name": "James Marsden", "character": "Hunter", "id": 11006, "credit_id": "52fe48eb9251416c9109cb0b", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Jennifer", "id": 4038, "credit_id": "52fe48eb9251416c9109cb0f", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Peter Sarsgaard", "character": "Robot (voice)", "id": 133, "credit_id": "52fe48eb9251416c9109cb13", "cast_id": 6, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 4}, {"name": "Jeremy Strong", "character": "Jake", "id": 239271, "credit_id": "52fe48eb9251416c9109cb17", "cast_id": 7, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 5}, {"name": "Jeremy Sisto", "character": "Sheriff Rowlings", "id": 23958, "credit_id": "52fe48ec9251416c9109cb63", "cast_id": 26, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 6}, {"name": "Bonnie Bentley", "character": "Ava", "id": 1060475, "credit_id": "52fe48ec9251416c9109cb73", "cast_id": 30, "profile_path": "/eLYeb5I7NCQj4JtvPivNLv3W5Ri.jpg", "order": 7}, {"name": "Dario Barosso", "character": "Flattop", "id": 995205, "credit_id": "52fe48ec9251416c9109cb45", "cast_id": 18, "profile_path": "/wkV04IPLZMmQdQZDW9fzKiwja40.jpg", "order": 8}, {"name": "Rachael Ma", "character": "Robot", "id": 1094159, "credit_id": "52fe48ec9251416c9109cb49", "cast_id": 21, "profile_path": "/zxCiHevb3G2wW5rwwFIUqadx0M3.jpg", "order": 9}, {"name": "Joshua Ormond", "character": "Freckles", "id": 1094160, "credit_id": "52fe48ec9251416c9109cb4d", "cast_id": 22, "profile_path": "/bmLtTIulHbUbDSdut3WBnSOlrmp.jpg", "order": 10}, {"name": "Katherine Waterston", "character": "Shopgirl", "id": 77795, "credit_id": "52fe48ec9251416c9109cb67", "cast_id": 27, "profile_path": "/fc8hqenrbXWohV83MeEIUC5L06t.jpg", "order": 11}, {"name": "Jesse Newman", "character": "Reception Guest", "id": 1145459, "credit_id": "52fe48ec9251416c9109cb6b", "cast_id": 28, "profile_path": "/4cFg1bJJFaNO9pXSaiZWTR6r0FY.jpg", "order": 12}, {"name": "Ana Gasteyer", "character": "Shoplady", "id": 86267, "credit_id": "52fe48ec9251416c9109cb6f", "cast_id": 29, "profile_path": "/8Gp1zad6m0QBpqP7wgIah1Ka1l3.jpg", "order": 13}, {"name": "Dana Morgan", "character": "Additional Robot", "id": 1168927, "credit_id": "52fe48ec9251416c9109cb77", "cast_id": 31, "profile_path": "/jvY9KAKVOxT7tE7s3HWhbcnTrkY.jpg", "order": 14}], "directors": [{"name": "Jake Schreier", "department": "Directing", "job": "Director", "credit_id": "52fe48eb9251416c9109caff", "profile_path": null, "id": 836732}], "vote_average": 6.7, "runtime": 85}, "55420": {"poster_path": "/yvjrhdXPEPB5rZbLjXCnfL4zY6V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1776935, "overview": "On the night of the discovery of a duplicate Earth in the Solar system, an ambitious young student and an accomplished composer cross paths in a tragic accident.", "video": false, "id": 55420, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Another Earth", "tagline": "", "vote_count": 146, "homepage": "http://www.anotherearth.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1549572", "adult": false, "backdrop_path": "/pVixMBjeICME6a8oezSGymkpmXs.jpg", "production_companies": [{"name": "Artists Public Domain", "id": 8145}], "release_date": "2011-07-22", "popularity": 0.729733280454602, "original_title": "Another Earth", "budget": 200000, "cast": [{"name": "Brit Marling", "character": "Rhoda Williams", "id": 222330, "credit_id": "52fe48cbc3a36847f8179cc3", "cast_id": 2, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 0}, {"name": "William Mapother", "character": "John Burroughs", "id": 15338, "credit_id": "52fe48cbc3a36847f8179cbf", "cast_id": 1, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 1}, {"name": "Jordan Baker", "character": "Kim Williams", "id": 149550, "credit_id": "52fe48cbc3a36847f8179cc7", "cast_id": 3, "profile_path": "/8bFw6Xx532O39le7YTTJTrnBIzJ.jpg", "order": 2}, {"name": "Flint Beverage", "character": "Robert Williams", "id": 185766, "credit_id": "52fe48cbc3a36847f8179ccb", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Robin Lord Taylor", "character": "Jeff Williams", "id": 59262, "credit_id": "543940430e0a2649b2000273", "cast_id": 38, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 4}, {"name": "Matthew-Lee Erlbach", "character": "Alex", "id": 1114903, "credit_id": "52fe48cbc3a36847f8179d1b", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Meggan Lennon", "character": "Maya Burroughs", "id": 1114904, "credit_id": "52fe48cbc3a36847f8179d1f", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "AJ Diana", "character": "Amos Burroughs", "id": 1114905, "credit_id": "52fe48cbc3a36847f8179d23", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "DJ Flava", "character": "Himself", "id": 1301641, "credit_id": "5326e7939251410d9500343f", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Bruce Colbert", "character": "Symposium Speaker", "id": 1301642, "credit_id": "5326e7ad925141652a0032f1", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Paul Mezey", "character": "Symposium Speaker", "id": 946074, "credit_id": "5326e7b99251411439003494", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Ana Valle", "character": "Symposium Speaker", "id": 1301643, "credit_id": "5326e7c89251411708003727", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Jeffrey Goldenberg", "character": "Symposium Speaker", "id": 549355, "credit_id": "5326e7d69251411439003497", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Joseph A. Bove", "character": "Symposium Speaker", "id": 1301644, "credit_id": "5326e7eb925141143900349b", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Rupert Reid", "character": "Keith Harding", "id": 187189, "credit_id": "5326e809925141652a0032f7", "cast_id": 35, "profile_path": "/jDJKsbUB2zgwgx5c51tHF35kafY.jpg", "order": 14}], "directors": [{"name": "Mike Cahill", "department": "Directing", "job": "Director", "credit_id": "52fe48cbc3a36847f8179cd5", "profile_path": "/mHnomJ1nar2xq8z0ht2iReFolof.jpg", "id": 45459}], "vote_average": 6.6, "runtime": 92}, "14462": {"poster_path": "/nT0mdDKWWicVSigXTUV275xaHXE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96105964, "overview": "When his army unit was ambushed during the first Gulf War, Sergeant Raymond Shaw saved his fellow soldiers just as his commanding officer, then-Captain Ben Marco, was knocked unconscious. Brokering the incident for political capital, Shaw eventually becomes a vice-presidential nominee, while Marco is haunted by dreams of what happened -- or didn't happen -- in Kuwait. As Marco (now a Major) investigates, the story begins to unravel, to the point where he questions if it happened at all. Is it possible the entire unit was kidnapped and brainwashed to believe Shaw is a war hero as part of a plot to seize the White House? Some very powerful people at Manchurian Global corporation appear desperate to stop him from finding out.", "video": false, "id": 14462, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Manchurian Candidate", "tagline": "This summer everything is under control.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368008", "adult": false, "backdrop_path": "/2EK85HcE4qNdpRHkUWNC1CjNsTW.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-07-30", "popularity": 0.344699234013972, "original_title": "The Manchurian Candidate", "budget": 80000000, "cast": [{"name": "Denzel Washington", "character": "Major Bennett Ezekiel Marco", "id": 5292, "credit_id": "52fe45f79251416c750688b5", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Senator Eleanor Prentiss Shaw (D-VA)", "id": 5064, "credit_id": "52fe45f79251416c750688b9", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Liev Schreiber", "character": "Congressman Raymond Prentiss Shaw (D-NY)", "id": 23626, "credit_id": "52fe45f79251416c750688bd", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 2}, {"name": "Jon Voight", "character": "Senator Thomas Jordan (D-CT)", "id": 10127, "credit_id": "52fe45f79251416c750688c5", "cast_id": 5, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 3}, {"name": "Kimberly Elise", "character": "FBI Ag. Eugenie Rose", "id": 55314, "credit_id": "52fe45f79251416c750688c1", "cast_id": 4, "profile_path": "/315K0qi3aFmcgGweUiLwhdrvcfU.jpg", "order": 4}, {"name": "Vera Farmiga", "character": "Jocelyne Jordan", "id": 21657, "credit_id": "52fe45f79251416c750688c9", "cast_id": 6, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "CPL Al Melvin", "id": 2954, "credit_id": "52fe45f79251416c750688cd", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Simon McBurney", "character": "Dr. Atticus Noyle", "id": 16358, "credit_id": "52fe45f79251416c750688d1", "cast_id": 8, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 7}, {"name": "Bruno Ganz", "character": "Delp", "id": 2310, "credit_id": "52fe45f79251416c750688d5", "cast_id": 9, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 8}, {"name": "Ann Dowd", "character": "Congresswoman Beckett", "id": 43366, "credit_id": "54eee966c3a3686b9a0034ab", "cast_id": 23, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 9}, {"name": "Ted Levine", "character": "Colonel Howard", "id": 15854, "credit_id": "52fe45f79251416c750688dd", "cast_id": 11, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 10}, {"name": "Miguel Ferrer", "character": "Colonel Garret", "id": 15860, "credit_id": "52fe45f79251416c750688f9", "cast_id": 16, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 11}, {"name": "Dean Stockwell", "character": "Mark Whiting", "id": 923, "credit_id": "52fe45f79251416c7506890d", "cast_id": 21, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 12}, {"name": "Charles Napier", "character": "General Sloan", "id": 16119, "credit_id": "54eee978c3a3684aff001042", "cast_id": 24, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 13}, {"name": "Jude Ciccolella", "character": "David Donovan", "id": 8693, "credit_id": "54eee987c3a368402d002ed9", "cast_id": 25, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 14}, {"name": "Tom Stechschulte", "character": "Governor Robert \"Bob\" Arthur", "id": 1237357, "credit_id": "54eee9a89251417961005a27", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Pablo Schreiber", "character": "PFC Eddie Ingram", "id": 59254, "credit_id": "54eee9b69251413ae8002f49", "cast_id": 27, "profile_path": "/uNNgZmEVvhV0WUf11oGMpYb6oWE.jpg", "order": 16}, {"name": "Anthony Mackie", "character": "PFC Robert Baker III", "id": 53650, "credit_id": "54eee9c49251413ae8002f4b", "cast_id": 28, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 17}, {"name": "Robyn Hitchcock", "character": "Laurent Tokar", "id": 73913, "credit_id": "54eeea07c3a3686d6600668b", "cast_id": 29, "profile_path": "/tQIuW5rsKV8SOps95hjInc14Y2y.jpg", "order": 18}, {"name": "Obba Babatunde", "character": "Senator Wells", "id": 52057, "credit_id": "52fe45f79251416c75068901", "cast_id": 18, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 19}, {"name": "\u017deljko Ivanek", "character": "Vaughn Utly", "id": 6752, "credit_id": "52fe45f79251416c750688fd", "cast_id": 17, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 20}, {"name": "Adam LeFevre", "character": "Congressman Healy", "id": 61607, "credit_id": "52fe45f79251416c75068905", "cast_id": 19, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 21}, {"name": "Jose Pablo Cantillo", "character": "Villalobos", "id": 20191, "credit_id": "52fe45f79251416c75068911", "cast_id": 22, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 22}, {"name": "David Keeley", "character": "Agent Evan Anderson", "id": 44302, "credit_id": "52fe45f79251416c750688d9", "cast_id": 10, "profile_path": null, "order": 23}], "directors": [{"name": "Jonathan Demme", "department": "Directing", "job": "Director", "credit_id": "52fe45f79251416c750688e3", "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "id": 16294}], "vote_average": 6.1, "runtime": 129}, "26123": {"poster_path": "/hOcgDwslaaMhBLa3x8WyGYZUVO4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ten years after the first American Pie movie, three new hapless virgins discover the Bible hidden in the school library at East Great Falls High. Unfortunately for them, the book is ruined, and with incomplete advice, the Bible leads them on a hilarious journey to lose their virginity.", "video": false, "id": 26123, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: The Book of Love", "tagline": "", "vote_count": 109, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1407050", "adult": false, "backdrop_path": "/nhERy8lKNOFgBDuIZAMkks8Znt7.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Capital Arts Entertainment", "id": 2365}], "release_date": "2009-12-04", "popularity": 0.653262719921578, "original_title": "American Pie Presents: The Book of Love", "budget": 0, "cast": [{"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe44eec3a368484e03f159", "cast_id": 1, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 0}, {"name": "Bug Hall", "character": "Rob", "id": 69395, "credit_id": "52fe44eec3a368484e03f15d", "cast_id": 2, "profile_path": "/7B2KfTPVnldxMT7pCgxd14oo6LF.jpg", "order": 1}, {"name": "Kevin M. Horton", "character": "Nathan", "id": 94769, "credit_id": "52fe44eec3a368484e03f161", "cast_id": 3, "profile_path": "/oqlX8lzDYrSzd81F5GzIjW83hlR.jpg", "order": 2}, {"name": "Brandon Hardesty", "character": "Lube", "id": 94906, "credit_id": "52fe44eec3a368484e03f16b", "cast_id": 5, "profile_path": "/mVhfytLuaYipXQX00PKqpl3JrmY.jpg", "order": 3}, {"name": "Beth Behrs", "character": "Heidi", "id": 482044, "credit_id": "52fe44efc3a368484e03f177", "cast_id": 10, "profile_path": "/fsqd93OGqBmzd17W3p9Ipt2ADEm.jpg", "order": 4}, {"name": "Melanie Papalia", "character": "Dana", "id": 453588, "credit_id": "52fe44efc3a368484e03f183", "cast_id": 13, "profile_path": "/axWncHqOabSzUIsUzCv906OjJ0o.jpg", "order": 5}, {"name": "Rosanna Arquette", "character": "Rob's Mom", "id": 2165, "credit_id": "52fe44efc3a368484e03f16f", "cast_id": 8, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 6}, {"name": "Edwin Perez", "character": "Gibbs", "id": 1121562, "credit_id": "52fe44efc3a368484e03f173", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Melanie Papalia", "character": "Dana", "id": 453588, "credit_id": "52fe44efc3a368484e03f17b", "cast_id": 11, "profile_path": "/axWncHqOabSzUIsUzCv906OjJ0o.jpg", "order": 8}, {"name": "Jennifer Holland", "character": "Ashley", "id": 87165, "credit_id": "52fe44efc3a368484e03f17f", "cast_id": 12, "profile_path": "/xMKumMcwi2UEEu47QisQDEY55RK.jpg", "order": 9}, {"name": "Louisa Lytton", "character": "Imogen", "id": 1224744, "credit_id": "52fe44efc3a368484e03f187", "cast_id": 14, "profile_path": "/bHGbPdbmmnwp7K5QnWM4CPMdbhR.jpg", "order": 10}, {"name": "Curtis Armstrong", "character": "Mr. O'Donnell", "id": 87003, "credit_id": "52fe44efc3a368484e03f18b", "cast_id": 15, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 11}, {"name": "Cindy Busby", "character": "Amy", "id": 111920, "credit_id": "52fe44efc3a368484e03f18f", "cast_id": 16, "profile_path": "/fJouHvx2hRoUa1e9HWxIglEEoMN.jpg", "order": 12}, {"name": "Naomi Hewer", "character": "Alyson", "id": 1287722, "credit_id": "52fe44efc3a368484e03f193", "cast_id": 17, "profile_path": "/78Fwy0flojbwpW3Avsx31gQZR4k.jpg", "order": 13}, {"name": "Karin Konoval", "character": "Store Manager", "id": 58395, "credit_id": "52fe44efc3a368484e03f197", "cast_id": 18, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 14}, {"name": "Carrie Keagan", "character": "Sales Lady", "id": 970104, "credit_id": "52fe44efc3a368484e03f19b", "cast_id": 19, "profile_path": "/vLYbT8NYY0P3GvqCiSwLVSjqxGZ.jpg", "order": 15}, {"name": "Jasmine Mooney", "character": "Jackie", "id": 1288767, "credit_id": "52fe44efc3a368484e03f19f", "cast_id": 20, "profile_path": "/1jk0nLmviulXiAMMyXXgCv8wpKz.jpg", "order": 16}, {"name": "Jill Teed", "character": "Miss Johnson", "id": 21214, "credit_id": "52fe44efc3a368484e03f1a3", "cast_id": 21, "profile_path": "/oiIvgxGTDfh3l8Sellhn9W7Ve4b.jpg", "order": 17}, {"name": "Cindy Lucas", "character": "French Canadian Babe", "id": 1004839, "credit_id": "52fe44efc3a368484e03f1a7", "cast_id": 22, "profile_path": "/493IOTKU7fRnOKWrgA95VY1pIeC.jpg", "order": 18}], "directors": [{"name": "John Putch", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a368484e03f167", "profile_path": "/9JBDOLXqdJiAvUOU0fO5bWnk292.jpg", "id": 21475}], "vote_average": 5.4, "runtime": 93}, "6278": {"poster_path": "/iK8kFLLZ1p035nQW8FwyXAqAkNb.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43061982, "overview": "In post-apocalyptic England, an American volunteer and a British survivor team up to fight off a brood of fire-breathing dragons seeking to return to global dominance after centuries of rest underground. The Brit -- leading a clan of survivors to hunt down the King of the Dragons -- has much at stake: His mother was killed by a dragon, but his love is still alive.", "video": false, "id": 6278, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Reign of Fire", "tagline": "Fight Fire With Fire", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253556", "adult": false, "backdrop_path": "/1R7c18aWnoe0RUEcPnc23sIxeFg.jpg", "production_companies": [{"name": "The Zanuck Company", "id": 80}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Tripod Entertainment", "id": 22902}, {"name": "World 2000 Entertainment", "id": 7692}], "release_date": "2002-07-11", "popularity": 0.85005569140886, "original_title": "Reign of Fire", "budget": 60000000, "cast": [{"name": "Christian Bale", "character": "Quinn Abercromby", "id": 3894, "credit_id": "52fe4449c3a36847f808d26d", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Denton Van Zan", "id": 10297, "credit_id": "52fe4449c3a36847f808d271", "cast_id": 2, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Izabella Scorupco", "character": "Alex Jensen", "id": 10695, "credit_id": "52fe4449c3a36847f808d275", "cast_id": 3, "profile_path": "/7lQ494byqcFfVkJtZYLl38MvfKS.jpg", "order": 2}, {"name": "Gerard Butler", "character": "Creedy", "id": 17276, "credit_id": "52fe4449c3a36847f808d27f", "cast_id": 5, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 3}, {"name": "Alexander Siddig", "character": "Ajay", "id": 2957, "credit_id": "52fe4449c3a36847f808d283", "cast_id": 6, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 4}, {"name": "Scott Moutter", "character": "Jared Wilke", "id": 56137, "credit_id": "52fe4449c3a36847f808d2b1", "cast_id": 14, "profile_path": "/vytmy0dmB7uLkw7A63S0Jy6FEbT.jpg", "order": 5}, {"name": "David Kennedy", "character": "Eddie Stax", "id": 62498, "credit_id": "52fffb9f9251416ae1165d1e", "cast_id": 16, "profile_path": "/refiQ4V3hLc9xzBwCbemVrXXpNB.jpg", "order": 6}, {"name": "Alexander Siddig", "character": "Ajay", "id": 2957, "credit_id": "52fffbf39251416ae1166213", "cast_id": 17, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 7}, {"name": "Ned Dennehy", "character": "Barlow", "id": 63362, "credit_id": "52fffc1e9251416ade1591a8", "cast_id": 18, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 8}, {"name": "Rory Keenan", "character": "Devon", "id": 1041731, "credit_id": "52fffcc99251416ad814c230", "cast_id": 19, "profile_path": "/lWvTE3d8JQVQbPyIVadoy6OYbEk.jpg", "order": 9}, {"name": "Terence Maynard", "character": "Gideon", "id": 67205, "credit_id": "52fffdaf9251416ade15de73", "cast_id": 20, "profile_path": "/pFxcJnlfp1lAnDbgumYynzlkfQE.jpg", "order": 10}, {"name": "Doug Cockle", "character": "Goosh", "id": 1047370, "credit_id": "52fffdc89251412a16113598", "cast_id": 21, "profile_path": "/pCfFEf86vkctm9rtoyajgKKlVJW.jpg", "order": 11}, {"name": "Randall Carlton", "character": "Burke (Tito)", "id": 1293209, "credit_id": "52fffecc9251416ad216ce62", "cast_id": 22, "profile_path": "/ouCYGoy7FIMBOyVKt7B2W4RIWsl.jpg", "order": 12}, {"name": "Chris Kelly", "character": "Mead", "id": 65802, "credit_id": "52ffffc69251416ae416f34e", "cast_id": 23, "profile_path": "/zDQTq30efWD5UWv62tYXziLTn64.jpg", "order": 13}, {"name": "Ben Thornton", "character": "Young Quinn", "id": 945121, "credit_id": "5300002c9251416ae1175772", "cast_id": 24, "profile_path": "/cYKvmGcKMrPmyAaB6rGjzg5GDfP.jpg", "order": 14}, {"name": "Alice Krige", "character": "Karen Abercromby", "id": 2506, "credit_id": "530001309251412a16124a2b", "cast_id": 25, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 15}], "directors": [{"name": "Rob Bowman", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d27b", "profile_path": "/u9iJgOc7XOkStRXbAHZe2qJ2O8p.jpg", "id": 12523}], "vote_average": 6.0, "runtime": 101}, "6279": {"poster_path": "/tLbvfUYw8Pr7DMI5TGL5DX1bx5S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57319029, "overview": "Deloris Van Cartier is again asked to don the nun's habit to help a run-down Catholic school, presided over by Mother Superior. And if trying to reach out to a class full of uninterested students wasn't bad enough, the sisters discover that the school is due to be closed by the unscrupulous local authority chief Mr. Crisp.", "video": false, "id": 6279, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Sister Act 2: Back in the Habit", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5zLMzYgpx2TNmISTk1MnRyRWY9M.jpg", "poster_path": "/m9xbNgB8MrrGOCvc4vjOtSWdqh9.jpg", "id": 103573, "name": "Sister Act Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108147", "adult": false, "backdrop_path": "/dvt6M1gtdUUg5NJVkkGw5Fleomd.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1993-12-09", "popularity": 0.391313601463671, "original_title": "Sister Act 2: Back in the Habit", "budget": 0, "cast": [{"name": "Whoopi Goldberg", "character": "Deloris Van Cartier", "id": 2395, "credit_id": "52fe4449c3a36847f808d2e7", "cast_id": 1, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 0}, {"name": "Kathy Najimy", "character": "Sister Mary Patrick", "id": 11074, "credit_id": "52fe4449c3a36847f808d2eb", "cast_id": 2, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 1}, {"name": "James Coburn", "character": "Mr. Crisp", "id": 5563, "credit_id": "52fe4449c3a36847f808d2ef", "cast_id": 3, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 2}, {"name": "Barnard Hughes", "character": "Father Maurice", "id": 2549, "credit_id": "52fe4449c3a36847f808d2f9", "cast_id": 5, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 3}, {"name": "Mary Wickes", "character": "Sister Mary Lazarus", "id": 20624, "credit_id": "52fe4449c3a36847f808d2fd", "cast_id": 6, "profile_path": "/5j9h5zBcsElyv0dHImPieBuQ4eL.jpg", "order": 4}, {"name": "Michael Jeter", "character": "Father Ignatius", "id": 2169, "credit_id": "52fe4449c3a36847f808d301", "cast_id": 7, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 5}, {"name": "Wendy Makkena", "character": "Sister Mary Robert", "id": 20623, "credit_id": "52fe4449c3a36847f808d305", "cast_id": 8, "profile_path": "/9Nx0N6vQP3czBYSiRgAZbETqAiC.jpg", "order": 6}, {"name": "Sheryl Lee Ralph", "character": "Florence Watson", "id": 33613, "credit_id": "52fe4449c3a36847f808d309", "cast_id": 9, "profile_path": "/sdd9mXYACgINvzY6uB8flchcUnC.jpg", "order": 7}, {"name": "Robert Pastorelli", "character": "Joey Bustamente", "id": 7866, "credit_id": "52fe4449c3a36847f808d30d", "cast_id": 10, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 8}, {"name": "Thomas Gottschalk", "character": "Father Wolfgang", "id": 38832, "credit_id": "52fe4449c3a36847f808d311", "cast_id": 11, "profile_path": "/nEEGPc5OblVTmnCREfwP3L7qSQZ.jpg", "order": 9}, {"name": "Maggie Smith", "character": "Mother Superior", "id": 10978, "credit_id": "52fe4449c3a36847f808d315", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 10}, {"name": "Lauryn Hill", "character": "Rita Louise Watson", "id": 4244, "credit_id": "52fe4449c3a36847f808d319", "cast_id": 13, "profile_path": "/2HinYxGXU0bj7DJrOaB0iVwYgpS.jpg", "order": 11}, {"name": "Brad Sullivan", "character": "Father Thomas", "id": 1274, "credit_id": "52fe4449c3a36847f808d31d", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Alanna Ubach", "character": "Maria", "id": 10402, "credit_id": "52fe4449c3a36847f808d321", "cast_id": 15, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 13}, {"name": "Ron Johnson", "character": "Richard 'Sketch' Pinshum", "id": 182691, "credit_id": "52fe4449c3a36847f808d325", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Jennifer Love Hewitt", "character": "Margare", "id": 33259, "credit_id": "52fe4449c3a36847f808d329", "cast_id": 17, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 15}, {"name": "Devin Kamin", "character": "Frankie", "id": 174966, "credit_id": "52fe4449c3a36847f808d32d", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Bill Duke", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d2f5", "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "id": 1103}], "vote_average": 5.8, "runtime": 107}, "6280": {"poster_path": "/bwt2hkLGKo5KAVMCw4u1umUPhax.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108, "overview": "As part of a fertility research project, a male scientist agrees to carry a pregnancy in his own body.", "video": false, "id": 6280, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Junior", "tagline": "Nothing is inconceivable", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110216", "adult": false, "backdrop_path": "/6N3PAKNCUs1JA3VVqt59pqc6yUU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1994-11-22", "popularity": 0.577291670522538, "original_title": "Junior", "budget": 60000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Dr. Alex Hesse", "id": 1100, "credit_id": "52fe4449c3a36847f808d369", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Dr. Larry Arbogast", "id": 518, "credit_id": "52fe4449c3a36847f808d36d", "cast_id": 2, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Emma Thompson", "character": "Dr. Diana Reddin", "id": 7056, "credit_id": "52fe4449c3a36847f808d371", "cast_id": 3, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 2}, {"name": "Frank Langella", "character": "Noah Banes", "id": 8924, "credit_id": "52fe4449c3a36847f808d3a5", "cast_id": 12, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 3}, {"name": "Pamela Reed", "character": "Angela", "id": 14699, "credit_id": "52fe4449c3a36847f808d3a9", "cast_id": 13, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 4}, {"name": "Aida Turturro", "character": "Louise", "id": 106791, "credit_id": "52fe4449c3a36847f808d3ad", "cast_id": 14, "profile_path": "/efqEyVJwU2o4zmfvlbuxOxlbEXj.jpg", "order": 5}, {"name": "Megan Cavanagh", "character": "Willow", "id": 53570, "credit_id": "52fe4449c3a36847f808d3b1", "cast_id": 15, "profile_path": "/xZML4JXgD7Yd0f19hXhq7bXLXfC.jpg", "order": 6}, {"name": "Welker White", "character": "Jenny", "id": 93620, "credit_id": "52fe4449c3a36847f808d3b5", "cast_id": 16, "profile_path": "/aR8bLPY8Z74JIYSQ4RK5VlDz19O.jpg", "order": 7}, {"name": "Christopher Meloni", "character": "Mr. Lanzarotta", "id": 22227, "credit_id": "52fe4449c3a36847f808d3b9", "cast_id": 17, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 8}, {"name": "Misa Koprova", "character": "Lyndon Receptionist", "id": 198878, "credit_id": "532558e1925141652a001578", "cast_id": 19, "profile_path": "/AsKAZK6lscFlV8FOyTMct3N20mM.jpg", "order": 9}, {"name": "James Eckhouse", "character": "Ned Sneller", "id": 19151, "credit_id": "54505b9cc3a36802420034ea", "cast_id": 21, "profile_path": "/4CUK6M7fGVK5Z1Qg65rMLDI6BdO.jpg", "order": 10}, {"name": "Mindy Seeger", "character": "Alice", "id": 1235819, "credit_id": "54505cd6c3a3680245003210", "cast_id": 22, "profile_path": "/qOMJAS5rLXQeuq3rNkehXW9cELM.jpg", "order": 11}, {"name": "Alexander Enberg", "character": "Arthur", "id": 1219384, "credit_id": "54505e06c3a368024200354d", "cast_id": 23, "profile_path": "/2nRIHKmA1SdFee6u6aSZd6PxFlP.jpg", "order": 12}, {"name": "Mary Gordon Murray", "character": "Betty", "id": 1190638, "credit_id": "54505f550e0a2642c2000376", "cast_id": 24, "profile_path": "/2n81SNTBdliBrEMRDdFWSMIhpVK.jpg", "order": 13}, {"name": "Stefan Gierasch", "character": "Edward Sawyer", "id": 52463, "credit_id": "545060d90e0a263a1000343e", "cast_id": 25, "profile_path": "/y4w2yNJYdAcaKddQyCYm4qtmLqO.jpg", "order": 14}, {"name": "Ryan Doss", "character": "Jake", "id": 1378990, "credit_id": "5450615cc3a368532b0033a1", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Zachary Doss", "character": "Jake", "id": 1378991, "credit_id": "545062b90e0a2639fe003587", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Brianna McConnell", "character": "Junior", "id": 1378995, "credit_id": "545063ee0e0a263a04003590", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Brittany McConnell", "character": "Junior", "id": 1378998, "credit_id": "54506595c3a3680245003366", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Lawrence T. Wrentz", "character": "l'agent de s\u00e9curit\u00e9 du campus", "id": 192268, "credit_id": "545066950e0a262d4600090f", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Tom Dugan", "character": "l'homme langouste", "id": 1144361, "credit_id": "5450c1530e0a2601d8003cf4", "cast_id": 31, "profile_path": "/obQfb3EhWnbxEYK7S0bLZw6oMJ6.jpg", "order": 20}, {"name": "Monika Schnarre", "character": "l'infirmi\u00e8re ang\u00e9lique", "id": 101905, "credit_id": "5450c23a0e0a263a04004101", "cast_id": 32, "profile_path": "/asyQVu4HXsWW3HNT2Itp00E5zSO.jpg", "order": 21}, {"name": "Cassandra Wilson", "character": "la chanteuse", "id": 1246316, "credit_id": "5450c3f6c3a368022a00400c", "cast_id": 33, "profile_path": "/4udA0ZJcqRSQVxzRQtWP7BdiSrA.jpg", "order": 22}, {"name": "Holly Wortell", "character": "la femme langouste", "id": 1229280, "credit_id": "5450c656c3a3680239003c7e", "cast_id": 34, "profile_path": "/oNyq9c2sh3pMd7hcoZneyhl4vrg.jpg", "order": 23}, {"name": "Charmaine Alicia Mancil", "character": "la gardienne du Scanner", "id": 1379075, "credit_id": "5450c69a0e0a2639fe0040dc", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Ellen McLaughlin", "character": "la pr\u00e9sidente de FDA", "id": 171661, "credit_id": "5450c8740e0a262d46001463", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Julie Nunis", "character": "le contr\u00f4leur des billets", "id": 1379079, "credit_id": "5450c969c3a3680233003c92", "cast_id": 37, "profile_path": "/9CzoJdJOCE8H3WQeeFfm1Ax5gWI.jpg", "order": 26}, {"name": "Dee Hengstler", "character": "les danseurs au banquet", "id": 100970, "credit_id": "5450cbc3c3a3680239003d2b", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Bubba Dean Rambo", "character": "les danseurs au banquet", "id": 1193101, "credit_id": "5450cc230e0a263a0a003fd3", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Daryl Richardson", "character": "les danseurs au banquet", "id": 1379080, "credit_id": "5450cc7e0e0a263a0400421f", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "Jerald Vincent", "character": "les danseurs au banquet", "id": 1379081, "credit_id": "5450cce2c3a3680236003f02", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Maurice Schwartzman", "character": "les danseurs au banquet", "id": 1379082, "credit_id": "5450cd54c3a368022a004109", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "Kim Wolfe", "character": "les danseurs au banquet", "id": 1379084, "credit_id": "5450ce24c3a3680245003ec4", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Charles McGowan", "character": "les danseurs au banquet", "id": 19263, "credit_id": "5450ce990e0a2642c2000ffd", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Kevin West", "character": "les dirigeants de Lyndon", "id": 57869, "credit_id": "5450cf6a0e0a263a04004274", "cast_id": 45, "profile_path": "/xkgRvORUYLButBebCpbd09Qg10H.jpg", "order": 34}, {"name": "Ira Newborn", "character": "les dirigeants de Lyndon", "id": 12939, "credit_id": "5450d05ac3a368023c003f86", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Lisa Summerour", "character": "les femmes du cours d'exercices Casitas Madres", "id": 1318896, "credit_id": "5450d0ccc3a3680233003d74", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Jodi Knotts", "character": "les femmes en salle d'attente", "id": 1379090, "credit_id": "5450d2940e0a2639fe004229", "cast_id": 48, "profile_path": "/piLL0E5ytxmNam3wsH6iTt8Quu9.jpg", "order": 37}, {"name": "Michele Abrams", "character": "les femmes en salle d'attente", "id": 77012, "credit_id": "5450d39dc3a368023c003fd5", "cast_id": 49, "profile_path": "/mtAz09TCkJrr3O1QFfbf7neFdWK.jpg", "order": 38}, {"name": "Susan Dills", "character": "les filles du campus", "id": 1379091, "credit_id": "5450d3e2c3a368532b00419d", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Maggy Myers Davidson", "character": "les filles du campus", "id": 1379092, "credit_id": "5450d452c3a368022a0041b2", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Brandon Ross", "character": "les musiciens du banquet", "id": 1379096, "credit_id": "5450d50f0e0a263a1800406e", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Steven 'Lance' Carter", "character": "les musiciens du banquet", "id": 1379100, "credit_id": "5450d60f0e0a2642c20010a7", "cast_id": 53, "profile_path": null, "order": 42}, {"name": "Kathleen Chalfant", "character": "les r\u00e9ceptionnistes de Casitas Madres", "id": 52003, "credit_id": "5450d6f7c3a368022a004207", "cast_id": 54, "profile_path": "/sxsYCRctVv85Ebzgwm32Mx9UpDd.jpg", "order": 43}, {"name": "Anna Gunn", "character": "les r\u00e9ceptionnistes de Casitas Madres", "id": 134531, "credit_id": "5450d768c3a368532b004206", "cast_id": 55, "profile_path": "/6yLKtfYFWbJp5HAjvCecQCYlmqk.jpg", "order": 44}, {"name": "Antoinette Peragine", "character": "Mrs. Lanzarotta", "id": 1379101, "credit_id": "5450d7f5c3a3680233003e3b", "cast_id": 56, "profile_path": "/oKg9HwC5iwVpxzdg7N3yXfp28yM.jpg", "order": 45}, {"name": "Leah Teweles", "character": "Mrs. Logan", "id": 1379106, "credit_id": "5450d8c2c3a368024200436c", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Judy Collins", "character": "Naomi", "id": 1226857, "credit_id": "5450da760e0a262d4600165f", "cast_id": 58, "profile_path": "/bYPQaFJFaUMpWKFFJQ4x9R5O6XP.jpg", "order": 47}, {"name": "Merle Kennedy", "character": "Samantha", "id": 105000, "credit_id": "5450dbb2c3a368023c0040a3", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "Dean Jacobson", "character": "Turkel", "id": 68497, "credit_id": "5450dc49c3a368023600409f", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Peter Chen", "character": "un chauffeur de taxi", "id": 190312, "credit_id": "5450ddc6c3a368532b0042be", "cast_id": 61, "profile_path": "/vony2LVCFJyGYoow76FMPBbg2QY.jpg", "order": 50}, {"name": "Lawrence Tierney", "character": "un d\u00e9m\u00e9nageur", "id": 6937, "credit_id": "5450decac3a368022a004307", "cast_id": 62, "profile_path": "/iFPg06kGUTdgRUkrYir3xt1Dt7c.jpg", "order": 51}, {"name": "Matt Mulhern", "character": "un d\u00e9m\u00e9nageur", "id": 85867, "credit_id": "5450e02f0e0a2642c2001200", "cast_id": 63, "profile_path": "/weHecbtH8o8PCSKv0Ukkm0yER8u.jpg", "order": 52}, {"name": "John Pinette", "character": "un employ\u00e9", "id": 82415, "credit_id": "5450e0810e0a263a100042ea", "cast_id": 64, "profile_path": "/A2sBHjPuNRuBdju9y4LuMHS2Nr3.jpg", "order": 53}, {"name": "Christopher Pray", "character": "un journaliste", "id": 1379113, "credit_id": "5450e0df0e0a262d4600171a", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "John Yang", "character": "un journaliste", "id": 1171087, "credit_id": "5450e289c3a368023c00415b", "cast_id": 66, "profile_path": null, "order": 55}, {"name": "Sara Peery", "character": "une journaliste", "id": 1379116, "credit_id": "5450e360c3a3680239003f98", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Jan Yanehiro", "character": "un journaliste", "id": 1035519, "credit_id": "5450e4650e0a2642c2001274", "cast_id": 69, "profile_path": null, "order": 58}, {"name": "Dennis O'Donnell", "character": "un journaliste", "id": 1379117, "credit_id": "5450e4ad0e0a263a10004357", "cast_id": 70, "profile_path": null, "order": 59}, {"name": "Beth Campbell Fitzgerald", "character": "une journaliste", "id": 1379118, "credit_id": "5450e5460e0a263a18004204", "cast_id": 71, "profile_path": null, "order": 60}, {"name": "Fred Stoller", "character": "un serveur", "id": 1223828, "credit_id": "5450ea640e0a2639fe0044ed", "cast_id": 72, "profile_path": "/e6SNPg0VwUPlzeni9zRSMbGAIKZ.jpg", "order": 61}, {"name": "Allen Walls", "character": "un serveur au banquet", "id": 1379140, "credit_id": "5450ead5c3a368532b004442", "cast_id": 73, "profile_path": "/l9uGptKDu67ErPG3KuquduvR25.jpg", "order": 62}, {"name": "Kevin Sifuentes", "character": "un valet au banquet", "id": 102578, "credit_id": "5450ed310e0a2601d8004185", "cast_id": 74, "profile_path": "/8sX4lmfYnU0q0XXoxfbxju4c4tW.jpg", "order": 63}, {"name": "Maggie Han", "character": "une assistante du labo", "id": 11396, "credit_id": "5450ed84c3a36802390040a8", "cast_id": 75, "profile_path": null, "order": 64}, {"name": "Judy Ovitz", "character": "une h\u00f4tesse", "id": 1379150, "credit_id": "5450edc4c3a36802330040a4", "cast_id": 76, "profile_path": null, "order": 65}, {"name": "Dayna Winston", "character": "une h\u00f4tesse \u00e0 la porte d'embarquement", "id": 1379153, "credit_id": "5450ef160e0a263a180042fd", "cast_id": 77, "profile_path": "/rN936L9JvFwMgBjlZllw9yehTEg.jpg", "order": 66}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d377", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 4.8, "runtime": 109}, "6282": {"poster_path": "/15A92dWMP4anntYpAQ0Mzq7wtru.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113916474, "overview": "When gorgeous, talented Violet Sanford lands in New York City with hopes of becoming a famous songwriter, she's forced to make ends meet by working at Coyote Ugly, a hot new club filled with beautiful bartenders and outrageous entertainment. Shaking her assets behind the bar certainly helps to boost the shy Violet's confidence. But it hasn't completely cured her crippling case of stage fright.", "video": false, "id": 6282, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Coyote Ugly", "tagline": "The Party Never Ends.", "vote_count": 154, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0200550", "adult": false, "backdrop_path": "/tm1Mv4t32RXLoeouGnxw6W0t5jk.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2000-07-30", "popularity": 0.678516116166829, "original_title": "Coyote Ugly", "budget": 80000000, "cast": [{"name": "Piper Perabo", "character": "Violet Sanford", "id": 15555, "credit_id": "52fe4449c3a36847f808d4a9", "cast_id": 1, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 0}, {"name": "Adam Garcia", "character": "Kevin O'Donnell", "id": 28472, "credit_id": "52fe4449c3a36847f808d4ad", "cast_id": 2, "profile_path": "/mNN5sBCsBbx1F9pG6QTqQtQ7vA3.jpg", "order": 1}, {"name": "John Goodman", "character": "Bill", "id": 1230, "credit_id": "52fe4449c3a36847f808d4b1", "cast_id": 3, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Izabella Miko", "character": "Cammie", "id": 59592, "credit_id": "52fe4449c3a36847f808d4bb", "cast_id": 5, "profile_path": "/y17WPWE0tOFroVttwayzU3Q2Mxb.jpg", "order": 3}, {"name": "Tyra Banks", "character": "Zoe", "id": 77897, "credit_id": "52fe4449c3a36847f808d4bf", "cast_id": 6, "profile_path": "/tmNsskMEGCDdTyWS2vNDvzCtyM9.jpg", "order": 4}, {"name": "Maria Bello", "character": "Lil", "id": 49, "credit_id": "52fe4449c3a36847f808d4c3", "cast_id": 7, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 5}, {"name": "Greg Collins", "character": "Coyote Ugly Bar Patron", "id": 58950, "credit_id": "52fe4449c3a36847f808d4fd", "cast_id": 17, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 6}, {"name": "Chip Chinery", "character": "Cop", "id": 155692, "credit_id": "52fe4449c3a36847f808d501", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Michael Bay", "character": "Photographer", "id": 865, "credit_id": "52fe4449c3a36847f808d505", "cast_id": 19, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 8}, {"name": "Stephanie Hodge", "character": "Dancing Girl in Bar", "id": 164944, "credit_id": "52fe4449c3a36847f808d509", "cast_id": 20, "profile_path": "/l5GsrC7iHU9tg98LZhh8MzQktRL.jpg", "order": 9}, {"name": "Carla Alapont", "character": "Dancing Girl in Bar", "id": 1290175, "credit_id": "52fe4449c3a36847f808d50d", "cast_id": 21, "profile_path": "/c9Ty0lTIrCtgzDtfmAbj5wTQ8LS.jpg", "order": 10}, {"name": "Sarah Jane Morris", "character": "Girl at the Surprise Party", "id": 70304, "credit_id": "52fe4449c3a36847f808d511", "cast_id": 22, "profile_path": "/ykk7CjHP7iXcX0XBWrtEYVG9Nc4.jpg", "order": 11}, {"name": "Kaitlin Olson", "character": "Bidding Customer", "id": 95102, "credit_id": "52fe4449c3a36847f808d515", "cast_id": 24, "profile_path": "/oRSDYUN7fXVWHp7FNq1P874i1Yf.jpg", "order": 12}, {"name": "Melanie Lynskey", "character": "Gloria", "id": 15091, "credit_id": "52fe4449c3a36847f808d519", "cast_id": 25, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 13}, {"name": "Susan Yeagley", "character": "Bidding Customer", "id": 1221086, "credit_id": "52fe4449c3a36847f808d51d", "cast_id": 26, "profile_path": "/jMF7RzbaPgdqhE58qT17LxDAWaZ.jpg", "order": 14}, {"name": "JJ Snyder", "character": "Bidding Customer", "id": 1290425, "credit_id": "52fe444ac3a36847f808d521", "cast_id": 27, "profile_path": "/kYuLKfy0p1jHUwVrzfRLoY0Pqt6.jpg", "order": 15}, {"name": "Whitney Dylan", "character": "Fiji Mermaid Worker", "id": 1219596, "credit_id": "533032809251413a78005641", "cast_id": 28, "profile_path": "/haj7cQlcCNKVTvGlOao25kROZAV.jpg", "order": 16}], "directors": [{"name": "David McNally", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d4b7", "profile_path": "/zDWpttAr1LAYj7uuOA0LCWO76TU.jpg", "id": 48980}], "vote_average": 6.0, "runtime": 100}, "152599": {"poster_path": "/s1KTOHIQkn78NT74bz7pmxM6c7x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5867686, "overview": "An innocent immigrant woman is tricked into a life of burlesque and vaudeville until a dazzling magician tries to save her and reunite her with her sister who is being held in the confines of Ellis Island.", "video": false, "id": 152599, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Immigrant", "tagline": "", "vote_count": 52, "homepage": "http://theimmigrant-lefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt1951181", "adult": false, "backdrop_path": "/qnvApBAWbXNm4C1PaiMsOcWfjnj.jpg", "production_companies": [{"name": "Kingsgate Films", "id": 770}, {"name": "Worldview Entertainment", "id": 9015}], "release_date": "2013-11-27", "popularity": 1.22060429065963, "original_title": "The Immigrant", "budget": 16000000, "cast": [{"name": "Jeremy Renner", "character": "Orlando the Magician", "id": 17604, "credit_id": "52fe4b259251416c910d15cd", "cast_id": 4, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Marion Cotillard", "character": "Ewa Cybulski", "id": 8293, "credit_id": "52fe4b259251416c910d15d1", "cast_id": 5, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 1}, {"name": "Joaquin Phoenix", "character": "Bruno Weiss", "id": 73421, "credit_id": "52fe4b259251416c910d15d5", "cast_id": 6, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 2}, {"name": "Dagmara Domi\u0144czyk", "character": "Belva", "id": 52776, "credit_id": "52fe4b259251416c910d15df", "cast_id": 8, "profile_path": "/wQ15ftdMUkwt281XZYBhyHAci0z.jpg", "order": 3}, {"name": "Gabriel Rush", "character": "Delivery Boy", "id": 1142686, "credit_id": "52fe4b259251416c910d15e3", "cast_id": 9, "profile_path": "/cUVwfWMapARIFYwiL75fndjpQMn.jpg", "order": 4}, {"name": "Antoni Corone", "character": "Thomas MacNally", "id": 20562, "credit_id": "52fe4b259251416c910d15e7", "cast_id": 10, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 5}, {"name": "Deedee Luxe", "character": "Bandits Roost Tart", "id": 1182185, "credit_id": "52fe4b259251416c910d15eb", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Angela Sarafyan", "character": "Magda Cybulska", "id": 85143, "credit_id": "54678f46eaeb8118be0003bb", "cast_id": 24, "profile_path": "/wJoJLYaSpRF9Ihca1reca1uR9he.jpg", "order": 7}], "directors": [{"name": "James Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4b259251416c910d15bd", "profile_path": "/y9yj1f72VATeq8JSQEvTYpQe4AP.jpg", "id": 20561}], "vote_average": 5.7, "runtime": 120}, "80035": {"poster_path": "/llVq0170tBmPCcqVuFnV7CilrLj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34350553, "overview": "Four everyday suburban guys come together as an excuse to escape their humdrum lives one night a week. But when they accidentally discover that their town has become overrun with aliens posing as ordinary suburbanites, they have no choice but to save their neighborhood - and the world - from total extermination.", "video": false, "id": 80035, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Watch", "tagline": "Got Protection?", "vote_count": 345, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1298649", "adult": false, "backdrop_path": "/2AqqmCXBzYh0Pyf6L6t8cHtsrGX.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2012-07-27", "popularity": 1.2749157731002, "original_title": "The Watch", "budget": 68000000, "cast": [{"name": "Jonah Hill", "character": "Franklin", "id": 21007, "credit_id": "52fe479e9251416c91070355", "cast_id": 5, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Evan", "id": 7399, "credit_id": "52fe479e9251416c91070359", "cast_id": 6, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Bob", "id": 4937, "credit_id": "52fe479e9251416c9107035d", "cast_id": 7, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Richard Ayoade", "character": "Jamarcus", "id": 98103, "credit_id": "52fe479e9251416c91070361", "cast_id": 9, "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "order": 3}, {"name": "Rosemarie DeWitt", "character": "Evan's wife", "id": 14892, "credit_id": "52fe479e9251416c91070365", "cast_id": 10, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 4}, {"name": "R. Lee Ermey", "character": "Manfred", "id": 8655, "credit_id": "52fe479e9251416c91070369", "cast_id": 11, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 5}, {"name": "Doug Jones", "character": "Hero Alien", "id": 17005, "credit_id": "52fe479e9251416c9107036d", "cast_id": 12, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 6}, {"name": "Will Forte", "character": "Sergeant Bressman", "id": 62831, "credit_id": "52fe479e9251416c91070371", "cast_id": 13, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 7}, {"name": "Nicholas Braun", "character": "Jason", "id": 85139, "credit_id": "52fe479e9251416c91070375", "cast_id": 14, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 8}, {"name": "Johnny Pemberton", "character": "Punk Kid", "id": 1060081, "credit_id": "52fe479e9251416c91070379", "cast_id": 15, "profile_path": "/lV9UognW1VG8P8nESSrArveBRou.jpg", "order": 9}, {"name": "Jorma Taccone", "character": "Casual Wanker #2", "id": 62863, "credit_id": "52fe479e9251416c9107037d", "cast_id": 16, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 10}, {"name": "Justin Wheelon", "character": "Kyle", "id": 1046354, "credit_id": "52fe479e9251416c91070381", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Willam Belli", "character": "Olivia", "id": 170432, "credit_id": "52fe479e9251416c91070385", "cast_id": 18, "profile_path": "/yJxx10mp93U5jpG3bb3Id2pYVm3.jpg", "order": 12}, {"name": "Carissa Capobianco", "character": "Mandy", "id": 450951, "credit_id": "52fe479e9251416c91070389", "cast_id": 19, "profile_path": "/hXCzjFx0GwG4ipxi2ZhWanSEFRe.jpg", "order": 13}, {"name": "Billy Crudup", "character": "Neighbor", "id": 8289, "credit_id": "52fe479e9251416c910703ab", "cast_id": 27, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 14}, {"name": "Erin Moriarty", "character": "Chelsea", "id": 990393, "credit_id": "52fe479e9251416c910703cd", "cast_id": 33, "profile_path": "/v0jDVSB0HugI3mRjkirOgLBawM7.jpg", "order": 15}], "directors": [{"name": "Akiva Schaffer", "department": "Directing", "job": "Director", "credit_id": "52fe479e9251416c91070345", "profile_path": "/AndF7ndhBbCgHTicoHjCKDxmoi5.jpg", "id": 62854}], "vote_average": 5.3, "runtime": 98}, "80038": {"poster_path": "/8P1iId23hDMVQL00k2IbzW46qQG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12186625, "overview": "Revolves around a pair of best friends in their 30s who observe the effect of having kids has taken on the couples they know. To avoid that toll, the best friends resolve to have a child and then date other people.", "video": false, "id": 80038, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Friends with Kids", "tagline": "Family doesn't always go according to plan.", "vote_count": 64, "homepage": "http://www.friendswithkids.com/#", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1720616", "adult": false, "backdrop_path": "/uDT5U5VBn2TVjUQsoV9hxouHmtH.jpg", "production_companies": [{"name": "Locomotive", "id": 6404}], "release_date": "2011-09-09", "popularity": 0.781319300810492, "original_title": "Friends with Kids", "budget": 7251073, "cast": [{"name": "Kristen Wiig", "character": "Missy", "id": 41091, "credit_id": "52fe479e9251416c91070493", "cast_id": 1, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 0}, {"name": "Jon Hamm", "character": "Ben", "id": 65717, "credit_id": "52fe479e9251416c91070497", "cast_id": 2, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 1}, {"name": "Jennifer Westfeldt", "character": "Julie Keller", "id": 119368, "credit_id": "52fe479f9251416c910704f1", "cast_id": 21, "profile_path": "/ZCuD043X1SS5yIHXQcPJ8Tg9Vs.jpg", "order": 2}, {"name": "Megan Fox", "character": "Mary Jane", "id": 19537, "credit_id": "52fe479e9251416c9107049b", "cast_id": 3, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 3}, {"name": "Chris O'Dowd", "character": "Alex", "id": 40477, "credit_id": "52fe479e9251416c9107049f", "cast_id": 4, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 4}, {"name": "Maya Rudolph", "character": "Leslie", "id": 52792, "credit_id": "52fe479e9251416c910704a3", "cast_id": 5, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 5}, {"name": "Edward Burns", "character": "Kurt", "id": 12833, "credit_id": "52fe479e9251416c910704a7", "cast_id": 6, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 6}, {"name": "Adam Scott", "character": "Jason", "id": 36801, "credit_id": "52fe479e9251416c910704ab", "cast_id": 7, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 7}, {"name": "Lee Bryant", "character": "Elaine Keller", "id": 160328, "credit_id": "52fe479e9251416c910704bb", "cast_id": 10, "profile_path": "/riFEbXO78dRCTxzQ358AVr1m4uD.jpg", "order": 8}, {"name": "Kelly Bishop", "character": "Marcy Fryman", "id": 728, "credit_id": "52fe479e9251416c910704bf", "cast_id": 11, "profile_path": "/rXjKYHafK17IiqgjWvmZYdmpdo9.jpg", "order": 9}, {"name": "Cotter Smith", "character": "Phil Fryman", "id": 115858, "credit_id": "52fe479e9251416c910704c3", "cast_id": 12, "profile_path": "/4lMLsN7hLmtGPqOt626dnui64Cb.jpg", "order": 10}], "directors": [{"name": "Jennifer Westfeldt", "department": "Directing", "job": "Director", "credit_id": "52fe479e9251416c910704b1", "profile_path": "/ZCuD043X1SS5yIHXQcPJ8Tg9Vs.jpg", "id": 119368}], "vote_average": 6.1, "runtime": 107}, "6312": {"poster_path": "/4jDtKADOlvE2HyqKAFvzvYFwKdy.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 70752904, "overview": "In 18th century France, the Chevalier de Fronsac and his native American friend Mani are sent by the King to the Gevaudan province to investigate the killings of hundreds by a mysterious beast.", "video": false, "id": 6312, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}, {"id": 27, "name": "Horror"}], "title": "Brotherhood of the Wolf", "tagline": "", "vote_count": 113, "homepage": "http://www.brotherhoodofthewolf.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0237534", "adult": false, "backdrop_path": "/l0GhQUGBjNxCA1kdDWaTPgsgNxF.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}, {"name": "Davis-Films", "id": 342}, {"name": "Eskwad", "id": 616}, {"name": "Natexis Banques Populaires Images", "id": 25863}, {"name": "Studio Image Soficas", "id": 25862}], "release_date": "2001-03-20", "popularity": 0.454078820400907, "original_title": "Le Pacte des loups", "budget": 29000000, "cast": [{"name": "Samuel Le Bihan", "character": "Gr\u00e9goire de Fronsac", "id": 49025, "credit_id": "52fe444ac3a36847f808d787", "cast_id": 1, "profile_path": "/j3OLT8ccuFREbG5TUwqfuHDZDkA.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Jean-Fran\u00e7ois de Morangias", "id": 1925, "credit_id": "52fe444ac3a36847f808d78b", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "\u00c9milie Dequenne", "character": "Marianne de Morangias", "id": 23671, "credit_id": "52fe444ac3a36847f808d78f", "cast_id": 3, "profile_path": "/hvDRr36AcX8JjfhiU5qsvQNQKWw.jpg", "order": 2}, {"name": "Monica Bellucci", "character": "Sylvia", "id": 28782, "credit_id": "52fe444ac3a36847f808d793", "cast_id": 4, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 3}, {"name": "J\u00e9r\u00e9mie Renier", "character": "Thomas d'Apcher", "id": 51325, "credit_id": "52fe444ac3a36847f808d7c7", "cast_id": 13, "profile_path": "/oIb19NzIJg0Rz9z2o2KvpeEy55t.jpg", "order": 4}, {"name": "Mark Dacascos", "character": "Mani", "id": 18702, "credit_id": "52fe444ac3a36847f808d7cb", "cast_id": 14, "profile_path": "/rg28gJ7hVgoKehCIzA7sf4dDuRN.jpg", "order": 5}, {"name": "Jean Yanne", "character": "Le Comte de Morangias", "id": 24381, "credit_id": "52fe444ac3a36847f808d7cf", "cast_id": 15, "profile_path": "/79Z1qcDpbyRp5HPSBQvm15xwqOI.jpg", "order": 6}, {"name": "Jean-Fran\u00e7ois St\u00e9venin", "character": "Sardis", "id": 6304, "credit_id": "52fe444ac3a36847f808d7d3", "cast_id": 16, "profile_path": "/82NUI5wvm0viU6U9PzGyRNLlnk5.jpg", "order": 7}, {"name": "Johan Leysen", "character": "Beauterne", "id": 53904, "credit_id": "52fe444ac3a36847f808d7d7", "cast_id": 17, "profile_path": "/cjLEEzFfEGoEEpHnNxjfso04Dd0.jpg", "order": 8}, {"name": "Jacques Perrin", "character": "Thomas Ag\u00e9", "id": 20030, "credit_id": "52fe444ac3a36847f808d7db", "cast_id": 18, "profile_path": "/dC3hgCkcTvsrw6fKxxTegJDQRzp.jpg", "order": 9}, {"name": "Bernard Farcy", "character": "Laffont", "id": 23984, "credit_id": "52fe444ac3a36847f808d7df", "cast_id": 19, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 10}, {"name": "\u00c9dith Scob", "character": "Mme de Morangias", "id": 27980, "credit_id": "52fe444ac3a36847f808d7e3", "cast_id": 20, "profile_path": "/DbTl7eoRq2rFmRbXuIi9i2lJjz.jpg", "order": 11}, {"name": "Hans Meyer", "character": "Marquis d'Apcher", "id": 22796, "credit_id": "52fe444ac3a36847f808d7e7", "cast_id": 21, "profile_path": "/gk0VN84CbpRwdh9mO7d2EcoQyEJ.jpg", "order": 12}, {"name": "Virginie Darmon", "character": "La Bavarde", "id": 1130631, "credit_id": "52fe444ac3a36847f808d7eb", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Philippe Nahon", "character": "Jean Chastel", "id": 5444, "credit_id": "52fe444ac3a36847f808d7ef", "cast_id": 24, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 14}, {"name": "Nicky Naude", "character": "La F\u00ealure", "id": 370383, "credit_id": "53a93b7fc3a3687a34006987", "cast_id": 35, "profile_path": "/7o0JhUIHRd7R0A5yY6g0blNNQNf.jpg", "order": 15}, {"name": "Ga\u00eblle Cohen", "character": "La Loutre", "id": 132541, "credit_id": "53a93bb4c3a3687495005dd6", "cast_id": 36, "profile_path": "/4cZJreyjEceeISLTxX0eZuW656h.jpg", "order": 16}, {"name": "Charles Maquignon", "character": "Valet Maison Teissier", "id": 185296, "credit_id": "53a93be8c3a3687a2e006a87", "cast_id": 37, "profile_path": "/eHOiahagStCC3TssKOEpvulstY9.jpg", "order": 17}, {"name": "Gaspard Ulliel", "character": "Louis", "id": 16790, "credit_id": "53a93cb2c3a3687a430069c1", "cast_id": 38, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 18}, {"name": "Pascal Laugier", "character": "Assistant de Machemort", "id": 59611, "credit_id": "53a93cfac3a3687a4000697b", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Christophe Gans", "department": "Directing", "job": "Director", "credit_id": "52fe444ac3a36847f808d799", "profile_path": "/8tFxHa7RT3MOBTs72j9pSwkG6MJ.jpg", "id": 8296}], "vote_average": 6.5, "runtime": 137}, "55465": {"poster_path": "/8zdGMb5lfq2JB5OpipASK85URHC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34413079, "overview": "Six years have elapsed since Guantanamo Bay, leaving Harold and Kumar estranged from one another with very different families, friends and lives. But when Kumar arrives on Harold's doorstep during the holiday season with a mysterious package in hand, he inadvertently burns down Harold's father-in-law's beloved Christmas tree. To fix the problem, Harold and Kumar embark on a mission through New York City to find the perfect Christmas tree, once again stumbling into trouble at every single turn.", "video": false, "id": 55465, "genres": [{"id": 35, "name": "Comedy"}], "title": "A Very Harold & Kumar Christmas", "tagline": "Christmas comes prematurely.", "vote_count": 118, "homepage": "http://haroldandkumar.warnerbros.com", "belongs_to_collection": {"backdrop_path": "/b70mFgsSn2hl3CvC0nRx0SHUEX0.jpg", "poster_path": "/9OBP4MQBAXnBZ1uXLZykIWRGnBb.jpg", "id": 30663, "name": "Harold & Kumar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1268799", "adult": false, "backdrop_path": "/2o8CFr4bqmYDiWQp1DRwC7Jh4VX.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mandate Pictures", "id": 771}], "release_date": "2011-11-04", "popularity": 0.566965729001248, "original_title": "A Very Harold & Kumar Christmas", "budget": 19000000, "cast": [{"name": "Neil Patrick Harris", "character": "Neil", "id": 41686, "credit_id": "52fe48cec3a36847f817a74b", "cast_id": 1003, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "John Cho", "character": "Harold Lee", "id": 68842, "credit_id": "52fe48cec3a36847f817a74f", "cast_id": 1004, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Sergie Katsov", "id": 13550, "credit_id": "52fe48cec3a36847f817a753", "cast_id": 1005, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Danneel Ackles", "character": "Vanessa Fanning", "id": 81164, "credit_id": "52fe48cec3a36847f817a757", "cast_id": 1006, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 3}, {"name": "Kal Penn", "character": "Kumar Patel", "id": 53493, "credit_id": "52fe48cec3a36847f817a75b", "cast_id": 1007, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 4}, {"name": "Patton Oswalt", "character": "Mall Santa", "id": 10872, "credit_id": "52fe48cec3a36847f817a75f", "cast_id": 1009, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 5}, {"name": "Isabella Gielniak", "character": "Caren", "id": 935275, "credit_id": "52fe48cec3a36847f817a763", "cast_id": 1010, "profile_path": "/wkCHnl1Ue9dScUIubKMQxqvbwHp.jpg", "order": 6}, {"name": "Austin Bickel", "character": "Kid in Line", "id": 935276, "credit_id": "52fe48cec3a36847f817a767", "cast_id": 1011, "profile_path": "/6WrySypnJGUSOHuqj2yPLmJFWXp.jpg", "order": 7}, {"name": "Inga R. Wilson", "character": "Mom in Line", "id": 935277, "credit_id": "52fe48cec3a36847f817a76b", "cast_id": 1012, "profile_path": null, "order": 8}, {"name": "Brett Gelman", "character": "T.V. Director", "id": 224197, "credit_id": "52fe48cec3a36847f817a793", "cast_id": 1020, "profile_path": "/ox8Tetm16FgBmwR3U2eYZGxRomN.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Mr. Perez", "id": 11160, "credit_id": "52fe48cec3a36847f817a797", "cast_id": 1021, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Paula Garc\u00e9s", "character": "Maria", "id": 21124, "credit_id": "52fe48cec3a36847f817a7a1", "cast_id": 1023, "profile_path": "/bc1NhQCaUsoJFCi6vIGxiljQl86.jpg", "order": 11}, {"name": "Thomas Lennon", "character": "Todd", "id": 539, "credit_id": "52fe48cec3a36847f817a7a5", "cast_id": 1024, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 12}, {"name": "Eric Kissack", "character": "Wafflebot (voice)", "id": 224530, "credit_id": "54c0315692514148b000d542", "cast_id": 1026, "profile_path": null, "order": 13}], "directors": [{"name": "Todd Strauss-Schulson", "department": "Directing", "job": "Director", "credit_id": "52fe48cec3a36847f817a73b", "profile_path": null, "id": 222470}], "vote_average": 6.1, "runtime": 108}, "71859": {"poster_path": "/782lwRsgRBmt3OCdLZvASuedS1q.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6038942, "overview": "The mother of a teenage sociopath who went on a high-school killing spree recalls her son's deranged behavior during childhood, as she deals with her grief.", "video": false, "id": 71859, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "We Need to Talk About Kevin", "tagline": "", "vote_count": 117, "homepage": "http://kevin.oscilloscope.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1242460", "adult": false, "backdrop_path": "/6426SMwaHfMTdmygfQ5WGmly7Ya.jpg", "production_companies": [{"name": "BBC Films", "id": 288}], "release_date": "2011-05-12", "popularity": 0.423740857908726, "original_title": "We Need to Talk About Kevin", "budget": 7000000, "cast": [{"name": "John C. Reilly", "character": "Franklin", "id": 4764, "credit_id": "52fe484cc3a368484e0f1d43", "cast_id": 2, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 0}, {"name": "Tilda Swinton", "character": "Eva", "id": 3063, "credit_id": "52fe484cc3a368484e0f1d47", "cast_id": 3, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 1}, {"name": "Ezra Miller", "character": "Kevin", "id": 132157, "credit_id": "52fe484cc3a368484e0f1d4b", "cast_id": 4, "profile_path": "/swxGHWhm95cgQgwt7XNqAlnAUwF.jpg", "order": 2}, {"name": "Siobhan Fallon", "character": "Wanda", "id": 6751, "credit_id": "52fe484cc3a368484e0f1d4f", "cast_id": 5, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 3}], "directors": [{"name": "Lynne Ramsay", "department": "Directing", "job": "Director", "credit_id": "52fe484cc3a368484e0f1d3f", "profile_path": null, "id": 83287}], "vote_average": 7.2, "runtime": 112}, "71864": {"poster_path": "/a4NMxSD6BbKT2zEMp2uqOn3uGXY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A childless couple bury a box in their backyard, containing all of their wishes for an infant. Soon, a child is born, though Timothy Green is not all that he appears.", "video": false, "id": 71864, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Odd Life of Timothy Green", "tagline": "He's a force of nature.", "vote_count": 118, "homepage": "http://disney.go.com/disneypictures/the-odd-life-of-timothy-green/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1462769", "adult": false, "backdrop_path": "/qUPiStKKvtfqfOxZ0rzmNcFgbdh.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2012-08-15", "popularity": 0.408265224960964, "original_title": "The Odd Life of Timothy Green", "budget": 0, "cast": [{"name": "Jennifer Garner", "character": "Cindy Green", "id": 9278, "credit_id": "52fe484cc3a368484e0f1ddf", "cast_id": 3, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 0}, {"name": "Joel Edgerton", "character": "Jim Green", "id": 33192, "credit_id": "52fe484cc3a368484e0f1de3", "cast_id": 4, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 1}, {"name": "Ron Livingston", "character": "Franklin Crudstaff", "id": 17402, "credit_id": "52fe484cc3a368484e0f1de7", "cast_id": 5, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 2}, {"name": "Rosemarie DeWitt", "character": "Brenda Best", "id": 14892, "credit_id": "52fe484cc3a368484e0f1deb", "cast_id": 6, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 3}, {"name": "CJ Adams", "character": "Timothy Green", "id": 1107800, "credit_id": "52fe484cc3a368484e0f1def", "cast_id": 7, "profile_path": "/czZGg0TvKY38w0cd7XXqvTIqXy0.jpg", "order": 4}, {"name": "Patrick Brouder", "character": "Dash Best", "id": 1108054, "credit_id": "52fe484cc3a368484e0f1df3", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Kendall Ryan Sanders", "character": "Rod Best (as Kendall Sanders)", "id": 1108055, "credit_id": "52fe484cc3a368484e0f1df7", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Chan Creswell", "character": "Billy CrudStaff", "id": 1108057, "credit_id": "52fe484cc3a368484e0f1dfb", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "William J. Harrison", "character": "Bobby Crudstaff", "id": 1108059, "credit_id": "52fe484cc3a368484e0f1dff", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Odeya Rush", "character": "Joni Jerome", "id": 1121786, "credit_id": "52fe484cc3a368484e0f1e03", "cast_id": 12, "profile_path": "/f9PSkyIjHUE5I5riVRZrUDav4YM.jpg", "order": 9}, {"name": "Shohreh Aghdashloo", "character": "Evette Onat", "id": 21041, "credit_id": "52fe484cc3a368484e0f1e07", "cast_id": 13, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 10}, {"name": "David Morse", "character": "James Green, Sr.", "id": 52, "credit_id": "52fe484cc3a368484e0f1e0b", "cast_id": 14, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 11}, {"name": "M. Emmet Walsh", "character": "Uncle Bub", "id": 588, "credit_id": "52fe484cc3a368484e0f1e0f", "cast_id": 15, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 12}, {"name": "Lois Smith", "character": "Aunt Mel", "id": 2207, "credit_id": "52fe484cc3a368484e0f1e13", "cast_id": 16, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 13}, {"name": "Dianne Wiest", "character": "Ms. Bernice Crudstaff", "id": 1902, "credit_id": "52fe484cc3a368484e0f1e17", "cast_id": 17, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 14}, {"name": "Ron Livingston", "character": "Franklin Crudstaff", "id": 17402, "credit_id": "52fe484cc3a368484e0f1e1b", "cast_id": 18, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 15}, {"name": "James Rebhorn", "character": "Joseph Crudstaff", "id": 8986, "credit_id": "52fe484cc3a368484e0f1e1f", "cast_id": 19, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 16}, {"name": "Common", "character": "Coach Cal", "id": 4238, "credit_id": "52fe484cc3a368484e0f1e23", "cast_id": 20, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 17}], "directors": [{"name": "Peter Hedges", "department": "Directing", "job": "Director", "credit_id": "52fe484cc3a368484e0f1dd5", "profile_path": "/sj2jd4t9nDYol6oNdupbQE2VVaC.jpg", "id": 3290}], "vote_average": 6.2, "runtime": 105}, "14534": {"poster_path": "/lkimdKMignuOmaZ3SmEtpvBTbdQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22750363, "overview": "Rudy grew up in a steel mill town where most people ended up working, but wanted to play football at Notre Dame instead. There were only a couple of problems. His grades were a little low, his athletic skills were poor, and he was only half the size of the other players. But he had the drive and the spirit of 5 people and has set his sights upon joining the team.", "video": false, "id": 14534, "genres": [{"id": 18, "name": "Drama"}], "title": "Rudy", "tagline": "It's not the size of the dog in the fight, It's the size of the fight in the dog.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108002", "adult": false, "backdrop_path": "/zQdYrlENSC2VOs9GVv3XjfHJfT0.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1993-10-13", "popularity": 0.136256682070047, "original_title": "Rudy", "budget": 12000000, "cast": [{"name": "Sean Astin", "character": "Daniel E. 'Rudy' Ruettiger", "id": 1328, "credit_id": "52fe45fc9251416c75069477", "cast_id": 1, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 0}, {"name": "Jon Favreau", "character": "D-Bob", "id": 15277, "credit_id": "52fe45fc9251416c7506947b", "cast_id": 2, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Daniel Ruettiger", "id": 13726, "credit_id": "52fe45fc9251416c7506947f", "cast_id": 3, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Greta Lind", "character": "Mary", "id": 76986, "credit_id": "52fe45fc9251416c75069483", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Scott Benjaminson", "character": "Frank Ruettiger", "id": 76987, "credit_id": "52fe45fc9251416c75069487", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Mary Ann Thebus", "character": "Betty", "id": 76988, "credit_id": "52fe45fd9251416c7506948b", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Charles S. Dutton", "character": "Fortune", "id": 17764, "credit_id": "52fe45fd9251416c7506948f", "cast_id": 7, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 6}, {"name": "Lili Taylor", "character": "Sherry", "id": 3127, "credit_id": "52fe45fd9251416c75069493", "cast_id": 8, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 7}, {"name": "Christopher Reed", "character": "Pete", "id": 76989, "credit_id": "52fe45fd9251416c75069497", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Deborah Wittenberg", "character": "Young Sherry", "id": 76990, "credit_id": "52fe45fd9251416c7506949b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Christopher Erwin", "character": "7-Year-Old Mark", "id": 76991, "credit_id": "52fe45fd9251416c7506949f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Kevin Duda", "character": "9-Year-Old Bernie", "id": 76992, "credit_id": "52fe45fd9251416c750694a3", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Robert Benirschke", "character": "11-Year-Old Mark", "id": 76993, "credit_id": "52fe45fd9251416c750694a7", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Luke Massery", "character": "13-Year-Old Rudy", "id": 76994, "credit_id": "52fe45fd9251416c750694ab", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Robert J. Steinmiller Jr.", "character": "13-Year-Old Pete", "id": 76995, "credit_id": "52fe45fd9251416c750694af", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Lauren Katz", "character": "Elza", "id": 162607, "credit_id": "532b80bbc3a3684bb100025f", "cast_id": 18, "profile_path": null, "order": 15}], "directors": [{"name": "David Anspaugh", "department": "Directing", "job": "Director", "credit_id": "52fe45fd9251416c750694b5", "profile_path": null, "id": 44847}], "vote_average": 7.0, "runtime": 114}, "71880": {"poster_path": "/yI6tiyhRbeK6CbIHPrNYfEjJCeg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jack Sadelstein, a successful advertising executive in Los Angeles with a beautiful wife and kids, dreads one event each year: the Thanksgiving visit of his twin sister Jill. Jill's neediness and passive-aggressiveness is maddening to Jack, turning his normally tranquil life upside down.", "video": false, "id": 71880, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jack and Jill", "tagline": "His twin sister is coming for the holidays... ...and it ain't pretty.", "vote_count": 178, "homepage": "http://www.jackandjill-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0810913", "adult": false, "backdrop_path": "/2eDCJy4x4r403hUhu7lcffwsLRv.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2011-11-11", "popularity": 0.507792664992434, "original_title": "Jack and Jill", "budget": 79000000, "cast": [{"name": "Adam Sandler", "character": "Jack / Jill", "id": 19292, "credit_id": "52fe484dc3a368484e0f2067", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Al Pacino", "character": "Himself", "id": 1158, "credit_id": "52fe484dc3a368484e0f206b", "cast_id": 3, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Katie Holmes", "character": "Erin", "id": 3897, "credit_id": "52fe484dc3a368484e0f206f", "cast_id": 4, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 2}, {"name": "Dana Carvey", "character": "", "id": 56159, "credit_id": "52fe484dc3a368484e0f2073", "cast_id": 5, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 3}, {"name": "Santiago Segura", "character": "", "id": 10847, "credit_id": "52fe484dc3a368484e0f2077", "cast_id": 6, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 4}, {"name": "Elodie Tougne", "character": "Sofia Sadelstein", "id": 935700, "credit_id": "52fe484dc3a368484e0f207b", "cast_id": 7, "profile_path": "/44f61cF2J9x6coQy4eqFgdwhVx8.jpg", "order": 5}, {"name": "Rohan Chand", "character": "Gary Sadelstein", "id": 935701, "credit_id": "52fe484dc3a368484e0f207f", "cast_id": 8, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 6}, {"name": "Eugenio Derbez", "character": "Felipe", "id": 239574, "credit_id": "52fe484dc3a368484e0f2083", "cast_id": 9, "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "order": 7}, {"name": "David Spade", "character": "Monica", "id": 60950, "credit_id": "52fe484dc3a368484e0f2087", "cast_id": 10, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 8}, {"name": "Nick Swardson", "character": "Todd", "id": 32907, "credit_id": "52fe484dc3a368484e0f208b", "cast_id": 11, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 9}, {"name": "Tim Meadows", "character": "", "id": 51857, "credit_id": "52fe484dc3a368484e0f208f", "cast_id": 12, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 10}, {"name": "Allen Covert", "character": "Joel Farley", "id": 20818, "credit_id": "52fe484dc3a368484e0f2093", "cast_id": 13, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 11}, {"name": "Norm Macdonald", "character": "", "id": 77075, "credit_id": "52fe484dc3a368484e0f20a3", "cast_id": 18, "profile_path": "/5jAVTWdeGGtSCZ37jT4uOyP2O0T.jpg", "order": 12}, {"name": "Rachel Reynolds", "character": "The Price Is Right Showcase Girl", "id": 1106959, "credit_id": "52fe484dc3a368484e0f20a7", "cast_id": 19, "profile_path": "/1Y1g0QhU4jY2cFp6mXtJpmvXYOC.jpg", "order": 13}, {"name": "Ruben Rabasa", "character": "Bathroom Attendant", "id": 1434041, "credit_id": "54f3b1c69251410bfe00025b", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe484dc3a368484e0f2063", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 4.4, "runtime": 91}, "88273": {"poster_path": "/eGUHutZExVyG59jdQILbT1TZWfE.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 534, "overview": "\u201cA young queen, who is married to an insane king, falls secretly in love with his physician - and together they start a revolution that changes a nation forever.\u201d A ROYAL AFFAIR is a gripping tale of brave idealists who risk everything in their pursuit of freedom for the people, but above all it is the story of a passionate and forbidden romance that changed an entire nation.", "video": false, "id": 88273, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "A Royal Affair", "tagline": "They changed the nation forever", "vote_count": 59, "homepage": "http://www.aroyalaffairthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1276419", "adult": false, "backdrop_path": "/ieuuAFyYHDWZ4VtFw3Y5bJZHPev.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}, {"name": "Film i V\u00e4st", "id": 6417}], "release_date": "2012-03-29", "popularity": 0.321218515498142, "original_title": "En kongelig aff\u00e6re", "budget": 8000000, "cast": [{"name": "Mads Mikkelsen", "character": "Johann Friedrich Struensee", "id": 1019, "credit_id": "52fe49ee9251416c910bd99d", "cast_id": 4, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "David Dencik", "character": "Ove H\u00f8egh-Guldberg", "id": 93236, "credit_id": "52fe49ee9251416c910bd9a1", "cast_id": 5, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 1}, {"name": "Alicia Vikander", "character": "Caroline Mathilde", "id": 227454, "credit_id": "52fe49ee9251416c910bd9a5", "cast_id": 6, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 2}, {"name": "Mikkel Boe F\u00f8lsgaard", "character": "Christian VII", "id": 1013156, "credit_id": "52fe49ee9251416c910bd9a9", "cast_id": 7, "profile_path": "/7mf9wuKTuThpGHFpJxKtWSnx7jG.jpg", "order": 3}, {"name": "Trine Dyrholm", "character": "Juliane Marie", "id": 4460, "credit_id": "52fe49ee9251416c910bd9ad", "cast_id": 8, "profile_path": "/ue2dx6F4g7uOR5nZJh8YEFlccJd.jpg", "order": 4}, {"name": "Thomas W. Gabrielsson", "character": "Schack Carl Rantzau", "id": 234741, "credit_id": "52fe49ee9251416c910bd9b1", "cast_id": 9, "profile_path": "/ipaBpGGUgBBCbfwxZUI8L9MX0X3.jpg", "order": 5}, {"name": "William J\u00f8hnk Nielsen", "character": "Frederik VI", "id": 230033, "credit_id": "52fe49ee9251416c910bd9b5", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Cyron Bj\u00f8rn Melville", "character": "Enevold Brandt", "id": 112733, "credit_id": "52fe49ee9251416c910bd9b9", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Laura Bro", "character": "Louise von Plessen", "id": 34867, "credit_id": "52fe49ee9251416c910bd9bd", "cast_id": 12, "profile_path": "/3FqEEa0NKYfXOjv2dKoqrCUD9fI.jpg", "order": 8}], "directors": [{"name": "Nikolaj Arcel", "department": "Directing", "job": "Director", "credit_id": "52fe49ee9251416c910bd98d", "profile_path": null, "id": 74752}], "vote_average": 6.9, "runtime": 137}, "47327": {"poster_path": "/afYwV0EAO8YLRyrTnNaSRysDrCh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28931401, "overview": "Milton is a hardened felon who has broken out of Hell, intent on finding the vicious cult who brutally murdered his daughter and kidnapped her baby. He joins forces with Piper, a sexy, tough-as-nails waitress with a 69 Charger, who's also seeking redemption of her own. Caught in a deadly race against time, Milton has three days to avoid capture, avenge his daughter's death, and save her baby before she's mercilessly sacrificed by the cult.", "video": false, "id": 47327, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Drive Angry", "tagline": "One hell of a ride.", "vote_count": 199, "homepage": "http://www.driveangry3d.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1502404", "adult": false, "backdrop_path": "/fjJyicmZ7wfsZrRuv1Ve2Vv0Zlf.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Summit Entertainment", "id": 491}, {"name": "Saturn Films", "id": 831}, {"name": "Nu Image Films", "id": 925}, {"name": "Michael De Luca Productions", "id": 11370}], "release_date": "2011-02-24", "popularity": 1.22013461701214, "original_title": "Drive Angry", "budget": 50000000, "cast": [{"name": "Nicolas Cage", "character": "Milton", "id": 2963, "credit_id": "52fe472dc3a36847f812754b", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Amber Heard", "character": "Piper", "id": 55085, "credit_id": "52fe472dc3a36847f812754f", "cast_id": 5, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "William Fichtner", "character": "Accountant", "id": 886, "credit_id": "52fe472dc3a36847f8127557", "cast_id": 7, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 2}, {"name": "Billy Burke", "character": "Jonah King", "id": 21029, "credit_id": "52fe472dc3a36847f812755b", "cast_id": 8, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 3}, {"name": "David Morse", "character": "Webster", "id": 52, "credit_id": "52fe472dc3a36847f8127599", "cast_id": 19, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 4}, {"name": "Katy Mixon", "character": "Norma Jean", "id": 59450, "credit_id": "52fe472dc3a36847f8127553", "cast_id": 6, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 5}, {"name": "Charlotte Ross", "character": "Candy", "id": 82622, "credit_id": "52fe472dc3a36847f81275a1", "cast_id": 21, "profile_path": "/ebmggJ92pgxMesN2DcTKLAwJSWj.jpg", "order": 6}, {"name": "Christa Campbell", "character": "Mona", "id": 85178, "credit_id": "52fe472dc3a36847f812755f", "cast_id": 9, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 7}, {"name": "Todd Farmer", "character": "Frank", "id": 61117, "credit_id": "52fe472dc3a36847f812759d", "cast_id": 20, "profile_path": "/xMd0pkgpgjfLwKX01mXpW68eYAu.jpg", "order": 8}, {"name": "Jack McGee", "character": "Fat Lou", "id": 10489, "credit_id": "52fe472dc3a36847f81275a5", "cast_id": 22, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 9}, {"name": "Tom Atkins", "character": "Cap", "id": 11784, "credit_id": "52fe472dc3a36847f81275a9", "cast_id": 23, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 10}, {"name": "Wanetah Walmsley", "character": "American Indian Mother", "id": 550117, "credit_id": "52fe472dc3a36847f81275ad", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Edrick Browne", "character": "Rookie", "id": 112286, "credit_id": "52fe472dc3a36847f81275b1", "cast_id": 25, "profile_path": "/cj7f8xZb3JgjDgR4XdW1CD33fHd.jpg", "order": 12}, {"name": "Robin McGee", "character": "Guy with Camera Phone", "id": 138611, "credit_id": "547a297fc3a368737f0004ea", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Fabian C. Moreno", "character": "Latino Busboy", "id": 1391321, "credit_id": "547a298e9251412986002b31", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Marc Macaulay", "character": "Sarge", "id": 6908, "credit_id": "547a299f9251417bd7000beb", "cast_id": 35, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 15}, {"name": "Pruitt Taylor Vince", "character": "Roy", "id": 3201, "credit_id": "547a29ae925141298a002d22", "cast_id": 36, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 16}, {"name": "Julius Washington", "character": "Uniformed Officer", "id": 204833, "credit_id": "547a29c09251414c6500011d", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Jamie Teer", "character": "Babysitter", "id": 1391322, "credit_id": "547a29d3c3a3685c42002ba1", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Bryan Massey", "character": "Trooper #1", "id": 1253910, "credit_id": "547a29e09251414c65000121", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Timothy Walter", "character": "Trooper #2", "id": 1391323, "credit_id": "547a29ee9251412986002b3f", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Kent Jude Bernard", "character": "Teen #1", "id": 138613, "credit_id": "547a29f89251417bd7000bf5", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Brent Phillip Henry", "character": "Teen #2", "id": 1391324, "credit_id": "547a2a03c3a36803df00095b", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Gerry May", "character": "TV Male News Reporter #1", "id": 1363398, "credit_id": "547a2a0e9251414c65000125", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Sherri Talley", "character": "TV Female News Reporter #2", "id": 1391325, "credit_id": "547a2a18c3a36803df000960", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Arianne Margot", "character": "Milton's Daughter (Older)", "id": 1391326, "credit_id": "547a2a25c3a36803df000965", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Con Schell", "character": "Fucking Driver", "id": 90041, "credit_id": "547a2a31925141298a002d31", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Nick Gomez", "character": "Fucking Middle", "id": 84760, "credit_id": "547a2a3e925141298a002d34", "cast_id": 47, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 27}, {"name": "Joe Chrest", "character": "Fucking Passenger", "id": 141762, "credit_id": "547a2a4c925141298d002dc3", "cast_id": 48, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 28}, {"name": "Oakley Lehman", "character": "Cultist with Iron Pipe", "id": 1391327, "credit_id": "547a2a5692514127690004cf", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Thirl Haston", "character": "Cultist with Sickle", "id": 1132300, "credit_id": "547a2a6092514127690004d3", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Jake Brake", "character": "Cultist with Machete", "id": 1391328, "credit_id": "547a2a6bc3a36803df000972", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Tim J. Smith", "character": "Cultist with Hatchet", "id": 1271752, "credit_id": "547a2a74925141298a002d3c", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Jeffrey J. Dashnaw", "character": "Cowboy with Cattle Prod", "id": 23285, "credit_id": "547a2a7fc3a36803df000976", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Tim Trella", "character": "Cultist with Sledge", "id": 200402, "credit_id": "547a2a899251417bd7000c02", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "James Landry H\u00e9bert", "character": "Man in Leather Jacket", "id": 1170659, "credit_id": "547a2a9a925141298d002dcb", "cast_id": 55, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 35}, {"name": "Kenneth Wayne Bradley", "character": "Man with Wig", "id": 557448, "credit_id": "547a2aa39251412986002b4e", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Kendrick Hudson", "character": "Burly Dude", "id": 1391329, "credit_id": "547a2aac9251412990002ce4", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Michael Papajohn", "character": "Tattooed Guy", "id": 20582, "credit_id": "547a2ab4c3a3685c48002f4e", "cast_id": 58, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 38}, {"name": "April Littlejohn", "character": "Business Woman", "id": 1391330, "credit_id": "547a2abd92514127690004db", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Henry Kingi", "character": "Thin Old Man", "id": 24969, "credit_id": "547a2ac7c3a36835be0003ba", "cast_id": 60, "profile_path": "/7NfbNpe2PQZI5BcdvBxAfVfmroi.jpg", "order": 40}, {"name": "Simona Williams", "character": "Lady in Leopard Skin", "id": 1167492, "credit_id": "547a2ad1c3a36835be0003bc", "cast_id": 61, "profile_path": "/74lse4DdBGC4COF7tWNYTjiI1KP.jpg", "order": 41}, {"name": "Shelby Swatek", "character": "Truck Driving Woman", "id": 1391331, "credit_id": "547a2ad99251412986002b53", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Joseph Blackstone", "character": "Bar Patron", "id": 1391332, "credit_id": "547a2ae4c3a3685c48002f57", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Dan Forest", "character": "American Indian Dad", "id": 1391333, "credit_id": "547a2aedc3a36868f200001f", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Elise Fyke", "character": "Laughing Cowgirl", "id": 1391334, "credit_id": "547a2af7c3a3685c48002f5c", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Jonathan O'Rear", "character": "Resturant Patron", "id": 1391335, "credit_id": "547a2b00c3a36868f2000028", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "James Paul", "character": "Bar Patron", "id": 1391337, "credit_id": "547a2b1892514127690004e8", "cast_id": 67, "profile_path": null, "order": 47}, {"name": "Alice Searcy", "character": "Restaurant Patron", "id": 1391338, "credit_id": "547a2b23c3a3685c42002bba", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Lanie Taylor", "character": "Milton's Daughter - Younger", "id": 1133579, "credit_id": "547a2b2e9251412990002cf4", "cast_id": 69, "profile_path": "/xVZ9gGBGbWZcwMGYIVh4ZC7Ctux.jpg", "order": 49}, {"name": "David Lee Valle", "character": "Highway Patrol", "id": 1391339, "credit_id": "547a2b3ac3a368737f00050e", "cast_id": 70, "profile_path": null, "order": 50}], "directors": [{"name": "Patrick Lussier", "department": "Directing", "job": "Director", "credit_id": "52fe472dc3a36847f812753b", "profile_path": "/xBZm3o2FtAH0RjEdmAau8OqkoZg.jpg", "id": 27226}], "vote_average": 5.5, "runtime": 105}, "14560": {"poster_path": "/iQpC6Yia7LpwjYlmHkeyEOeG9w2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122517153, "overview": "Mild-mannered Paul Blart (Kevin James) has always had huge dreams of becoming a State Trooper. Until then, he patrols the local mall as a security guard. With his closely cropped moustache, personal transporter and gung-ho attitude, only Blart seems to take his job seriously. All that changes when a team of thugs raids the mall and takes hostages. Untrained, unarmed and a super-size target, Blart has to become a real cop to save the day.", "video": false, "id": 14560, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Paul Blart: Mall Cop", "tagline": "Safety Never Takes A Holiday.", "vote_count": 210, "homepage": "http://paulblartmallcop.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 328372, "name": "Mall Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1114740", "adult": false, "backdrop_path": "/v0emjNwZGlhKhELLmkvaAjCqje9.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Relativity Media", "id": 7295}], "release_date": "2009-01-15", "popularity": 1.16336160257203, "original_title": "Paul Blart: Mall Cop", "budget": 26000000, "cast": [{"name": "Kevin James", "character": "Paul Blart", "id": 32895, "credit_id": "52fe46019251416c75069d3f", "cast_id": 1, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 0}, {"name": "Keir O'Donnell", "character": "Veck Sims", "id": 39213, "credit_id": "52fe46019251416c75069d55", "cast_id": 5, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 1}, {"name": "Jayma Mays", "character": "Amy", "id": 34195, "credit_id": "52fe46019251416c75069d59", "cast_id": 6, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 2}, {"name": "Raini Rodriguez", "character": "Maya Blart", "id": 78436, "credit_id": "52fe46019251416c75069d5d", "cast_id": 7, "profile_path": "/6FSx2N2xbQ7Iq7us5uMiG3UfZ9e.jpg", "order": 3}, {"name": "Shirley Knight", "character": "Mom", "id": 28778, "credit_id": "52fe46019251416c75069d61", "cast_id": 8, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 4}, {"name": "Stephen Rannazzisi", "character": "Stuart", "id": 78437, "credit_id": "52fe46019251416c75069d65", "cast_id": 9, "profile_path": "/dEzQ5W9ghBXxsJ41Ke6xIyoQESc.jpg", "order": 5}, {"name": "Peter Gerety", "character": "Chief Brooks", "id": 1986, "credit_id": "52fe46019251416c75069d69", "cast_id": 10, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 6}, {"name": "Bobby Cannavale", "character": "Cmdr. James Kent", "id": 21127, "credit_id": "52fe46019251416c75069d6d", "cast_id": 11, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 7}, {"name": "Adam Ferrara", "character": "Sergeant Howard", "id": 113245, "credit_id": "52fe46019251416c75069d71", "cast_id": 12, "profile_path": "/rRDSZwVG2AvzTiRPhhOlYiYGuAI.jpg", "order": 8}, {"name": "Jamal Mixon", "character": "Leon", "id": 59019, "credit_id": "52fe46019251416c75069d75", "cast_id": 13, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 9}, {"name": "Adhir Kalyan", "character": "Pahud", "id": 440306, "credit_id": "52fe46019251416c75069d79", "cast_id": 14, "profile_path": "/aMrG4CWhYGjKPgEgmzKTG3w5JqA.jpg", "order": 10}, {"name": "Erick Avari", "character": "Vijay", "id": 18917, "credit_id": "52fe46019251416c75069d7d", "cast_id": 15, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 11}, {"name": "Gary Valentine", "character": "Karaoke Singer", "id": 179508, "credit_id": "52fe46019251416c75069d81", "cast_id": 16, "profile_path": "/fx5UveYyZE4G1N8pqLTIGONaJi0.jpg", "order": 12}, {"name": "Allen Covert", "character": "Jerky Security Guy", "id": 20818, "credit_id": "52fe46019251416c75069d85", "cast_id": 17, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 13}, {"name": "Mike Vallely", "character": "Rudolph", "id": 558036, "credit_id": "52fe46019251416c75069d89", "cast_id": 18, "profile_path": "/hrty7GRM2pdwrNiMDJaBHk8XRU8.jpg", "order": 14}, {"name": "Mike Escamilla", "character": "Blitzen", "id": 1021579, "credit_id": "52fe46019251416c75069d8d", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Jason Ellis", "character": "Prancer", "id": 117267, "credit_id": "52fe46019251416c75069d91", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Jason Packham", "character": "Comet", "id": 953838, "credit_id": "52fe46019251416c75069d95", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Rick Thorne", "character": "Cupid", "id": 558038, "credit_id": "52fe46019251416c75069d99", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Victor T. Lopez", "character": "Donner", "id": 1077984, "credit_id": "52fe46019251416c75069d9d", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Natascha Hopkins", "character": "Vixen", "id": 200441, "credit_id": "52fe46019251416c75069da1", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Jackie Sandler", "character": "Victoria's Secret Sales Associate", "id": 60959, "credit_id": "52fe46019251416c75069da5", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Mookie Barker", "character": "Mr. Ferguson", "id": 204120, "credit_id": "52fe46019251416c75069da9", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Jackie Flynn", "character": "Officer", "id": 74934, "credit_id": "52fe46019251416c75069dad", "cast_id": 27, "profile_path": "/qDRdefQexpycxyvyYdl7XJw34kF.jpg", "order": 23}, {"name": "Richie Minervini", "character": "Bank Manager", "id": 207005, "credit_id": "52fe46019251416c75069db1", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Brie Hill Arbaugh", "character": "Bank Teller", "id": 981323, "credit_id": "52fe46019251416c75069db5", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Steffiana De La Cruz", "character": "Shopper with Kids", "id": 1431853, "credit_id": "54ee5bea925141795f004bed", "cast_id": 30, "profile_path": "/s6plNtUhJj9vDyd2aWMfBSENnPj.jpg", "order": 26}], "directors": [{"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe46019251416c75069d45", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}], "vote_average": 5.3, "runtime": 91}, "1576": {"poster_path": "/fttmSgLEOdBNwQepW2lC6t0mbOm.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102441078, "overview": "When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak. Alice and Rain are charged with leading the mission. But they only have three hours before the pathogen becomes airborne and infects the world.", "video": false, "id": 1576, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil", "tagline": "A secret experiment. A deadly virus. A fatal mistake.", "vote_count": 665, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120804", "adult": false, "backdrop_path": "/s41Er80jGJf3tNkgYHxUCttjmwv.jpg", "production_companies": [{"name": "New Legacy", "id": 939}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Davis-Films", "id": 342}, {"name": "Impact Pictures", "id": 248}], "release_date": "2002-03-15", "popularity": 1.09529293870657, "original_title": "Resident Evil", "budget": 33000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe42ffc3a36847f8032c0f", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Michelle Rodriguez", "character": "Rain", "id": 17647, "credit_id": "52fe42ffc3a36847f8032c13", "cast_id": 2, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 1}, {"name": "Eric Mabius", "character": "Matt", "id": 11867, "credit_id": "52fe42ffc3a36847f8032c17", "cast_id": 3, "profile_path": "/mfYqgYHkvJRgPus0kN2V1GhsFOU.jpg", "order": 2}, {"name": "Ryan McCluskey", "character": "Mr. Grey", "id": 146784, "credit_id": "52fe42ffc3a36847f8032c59", "cast_id": 16, "profile_path": "/wZlyqnBXgYqYHlGmQiljcLAo1mU.jpg", "order": 3}, {"name": "Oscar Pearce", "character": "Mr. Red", "id": 1104994, "credit_id": "52fe42ffc3a36847f8032c5d", "cast_id": 17, "profile_path": "/hrBYefEH3Bbl1CI5MLNeTTQgSI4.jpg", "order": 4}, {"name": "Indra Ov\u00e9", "character": "Ms. Black", "id": 232174, "credit_id": "52fe42ffc3a36847f8032c51", "cast_id": 14, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 5}, {"name": "Anna Bolt", "character": "Dr. Green", "id": 195535, "credit_id": "52fe42ffc3a36847f8032c61", "cast_id": 18, "profile_path": "/7pE1zAqODmqFGPbnE6A0tKlFTFF.jpg", "order": 6}, {"name": "Joseph May", "character": "Dr. Blue", "id": 72100, "credit_id": "52fe42ffc3a36847f8032c65", "cast_id": 19, "profile_path": "/qd3OQaoXMtGf1Ev9xXgAyYEHrG9.jpg", "order": 7}, {"name": "Robert Tannion", "character": "Dr. Brown", "id": 947006, "credit_id": "52fe42ffc3a36847f8032c7d", "cast_id": 25, "profile_path": "/fId63b7nGYl1H81298ncSJ9n3EF.jpg", "order": 8}, {"name": "Heike Makatsch", "character": "Lisa", "id": 7059, "credit_id": "52fe42ffc3a36847f8032c2b", "cast_id": 7, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 9}, {"name": "Jaymes Butler", "character": "Clarence", "id": 74225, "credit_id": "52fe42ffc3a36847f8032c69", "cast_id": 20, "profile_path": "/eKIytH97XBE8Oe87qGsmKTifHVF.jpg", "order": 10}, {"name": "Stephen Billington", "character": "Mr. White", "id": 2477, "credit_id": "52fe42ffc3a36847f8032c6d", "cast_id": 21, "profile_path": "/fWuIZcI6syFBM9UuNOj2OY4b3Yi.jpg", "order": 11}, {"name": "Fiona Glascott", "character": "Ms. Gold", "id": 43135, "credit_id": "52fe42ffc3a36847f8032c71", "cast_id": 22, "profile_path": "/hiN07YjI7jfbKmlqahFlm3k221X.jpg", "order": 12}, {"name": "Colin Salmon", "character": "One", "id": 5414, "credit_id": "52fe42ffc3a36847f8032c4d", "cast_id": 13, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 13}, {"name": "Martin Crewes", "character": "Kaplan", "id": 557323, "credit_id": "52fe42ffc3a36847f8032c55", "cast_id": 15, "profile_path": "/2ZcBr9htL48ywr78Lg8zqp8eONa.jpg", "order": 14}, {"name": "Pasquale Aleardi", "character": "Rain", "id": 47779, "credit_id": "52fe42ffc3a36847f8032c75", "cast_id": 23, "profile_path": "/cwcEHtDV3lMRwzSdI074Ki2tEQt.jpg", "order": 15}, {"name": "Liz May Brice", "character": "Medic", "id": 68224, "credit_id": "52fe42ffc3a36847f8032c79", "cast_id": 24, "profile_path": "/5cAhs4oR33lHJcjEIfDCnnOynX7.jpg", "order": 16}, {"name": "Torsten Jerabek", "character": "Commando 1", "id": 951657, "credit_id": "52fe42ffc3a36847f8032c81", "cast_id": 26, "profile_path": "/ek0o1o0uCLDrgFX6pgDlnxVVJrj.jpg", "order": 17}, {"name": "Marc Logan-Black", "character": "Commando 2", "id": 952506, "credit_id": "52fe42ffc3a36847f8032c85", "cast_id": 27, "profile_path": "/wJupeL6qEdCcoELJ0KLNbGGTR4k.jpg", "order": 18}, {"name": "James Purefoy", "character": "Spence", "id": 17648, "credit_id": "52fe42ffc3a36847f8032c1b", "cast_id": 4, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 19}, {"name": "Michaela Dicker", "character": "Red Queen", "id": 949700, "credit_id": "52fe42ffc3a36847f8032c89", "cast_id": 28, "profile_path": "/i8n0UCvAzj0RP1YHEItJksNYZdG.jpg", "order": 20}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032c21", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 6.3, "runtime": 100}, "9255": {"poster_path": "/x6yVFU815O2c5YpcIgWeK789IZ9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 133752825, "overview": "Topper Harley is found to be working as an odd-job-man in a monastery. The CIA want him to lead a rescue mission into Iraq, to rescue the last rescue team, who went in to rescue the last rescue team who... who went in to rescue hostages left behind after Desert Storm.", "video": false, "id": 9255, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10752, "name": "War"}], "title": "Hot Shots! Part Deux", "tagline": "Just deux it.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iGrRouADMV9MbidImsgRORaV3q.jpg", "poster_path": "/5uzldxeEVqvdaZhE4uCT9TTz9p1.jpg", "id": 52988, "name": "Hot Shots! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107144", "adult": false, "backdrop_path": "/4nYzn99ZPfAEQY4ypopoXa7RdPU.jpg", "production_companies": [{"name": "Sidley Wright & Associates", "id": 11751}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1993-05-21", "popularity": 0.663478057832236, "original_title": "Hot Shots! Part Deux", "budget": 25000000, "cast": [{"name": "Charlie Sheen", "character": "Topper Harley", "id": 6952, "credit_id": "52fe44ddc3a36847f80ae8f5", "cast_id": 11, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 0}, {"name": "Lloyd Bridges", "character": "President Thomas 'Tug' Benson", "id": 2177, "credit_id": "52fe44ddc3a36847f80ae8f9", "cast_id": 12, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 1}, {"name": "Valeria Golino", "character": "Ramada Rodham Hayman", "id": 3124, "credit_id": "52fe44ddc3a36847f80ae8fd", "cast_id": 13, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 2}, {"name": "Richard Crenna", "character": "Col. Denton Walters", "id": 16554, "credit_id": "52fe44ddc3a36847f80ae901", "cast_id": 14, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 3}, {"name": "Rowan Atkinson", "character": "Dexter Hayman", "id": 10730, "credit_id": "52fe44ddc3a36847f80ae905", "cast_id": 15, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 4}, {"name": "Miguel Ferrer", "character": "Commander Arvid Harbinger", "id": 15860, "credit_id": "52fe44ddc3a36847f80ae909", "cast_id": 16, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 5}, {"name": "Brenda Bakke", "character": "Michelle Rodham Huddleston", "id": 32290, "credit_id": "52fe44ddc3a36847f80ae90d", "cast_id": 17, "profile_path": "/nhTQaWKjWnTpYvTN1Le8piHTN0w.jpg", "order": 6}, {"name": "Jerry Haleva", "character": "Saddam Hussein", "id": 1000228, "credit_id": "52fe44ddc3a36847f80ae929", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "David Wohl", "character": "Gerou", "id": 92811, "credit_id": "52fe44ddc3a36847f80ae92d", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Mitchell Ryan", "character": "Gray Edwards", "id": 14312, "credit_id": "52fe44ddc3a36847f80ae931", "cast_id": 24, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 9}, {"name": "Michael Colyar", "character": "Williams", "id": 54430, "credit_id": "52fe44ddc3a36847f80ae935", "cast_id": 25, "profile_path": "/mPFHpTOxGyGuyTdxre202ZqSoLu.jpg", "order": 10}, {"name": "Ryan Stiles", "character": "Rabinowitz", "id": 162606, "credit_id": "52fe44ddc3a36847f80ae939", "cast_id": 26, "profile_path": "/eSrcWZW7wKdb1bXvYywo3vAGfiJ.jpg", "order": 11}, {"name": "Rosemary Johnston", "character": "Lavinia Rodham Benson", "id": 1123116, "credit_id": "52fe44ddc3a36847f80ae93d", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a36847f80ae8bb", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}], "vote_average": 6.1, "runtime": 86}, "14574": {"poster_path": "/f40R9to84FGF7T5bp3KGB84Lklb.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20416563, "overview": "Set during World War II, a story seen through the innocent eyes of Bruno, the eight-year-old son of the commandant at a concentration camp, whose forbidden friendship with a Jewish boy on the other side of the camp fence has startling and unexpected consequences.", "video": false, "id": 14574, "genres": [{"id": 18, "name": "Drama"}], "title": "The Boy in the Striped Pajamas", "tagline": "Lines may divide us, but hope will unite us.", "vote_count": 320, "homepage": "http://www.boyinthestripedpajamas.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0914798", "adult": false, "backdrop_path": "/prhrYZvQN1eXxBeZdLlNSyLfPQb.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "BBC Films", "id": 288}, {"name": "Heyday Films", "id": 7364}], "release_date": "2008-09-12", "popularity": 0.843884803926884, "original_title": "The Boy in the Striped Pyjamas", "budget": 12500000, "cast": [{"name": "David Thewlis", "character": "Father", "id": 11207, "credit_id": "52fe46029251416c7506a019", "cast_id": 2, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 0}, {"name": "Asa Butterfield", "character": "Bruno", "id": 77996, "credit_id": "52fe46029251416c7506a029", "cast_id": 5, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 1}, {"name": "Zac Mattoon O'Brien", "character": "Leon", "id": 77997, "credit_id": "52fe46029251416c7506a02d", "cast_id": 6, "profile_path": null, "order": 2}, {"name": "Domonkos N\u00e9meth", "character": "Martin", "id": 77998, "credit_id": "52fe46029251416c7506a031", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Henry Kingsmill", "character": "Karl", "id": 77999, "credit_id": "52fe46029251416c7506a035", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Vera Farmiga", "character": "Mother", "id": 21657, "credit_id": "52fe46029251416c7506a039", "cast_id": 9, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 5}, {"name": "Jack Scanlon", "character": "Shmuel", "id": 224188, "credit_id": "52fe46029251416c7506a03d", "cast_id": 10, "profile_path": "/lZXxoJ2dyv3tD0ookIKNx5hkxsF.jpg", "order": 6}, {"name": "Cara Horgan", "character": "Maria", "id": 961840, "credit_id": "52fe46029251416c7506a071", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Amber Beattie", "character": "Gretel", "id": 234072, "credit_id": "52fe46029251416c7506a075", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Zsuzsa Holl", "character": "Berlin Cook", "id": 1117339, "credit_id": "52fe46029251416c7506a079", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "L\u00e1szl\u00f3 \u00c1ron", "character": "Lars", "id": 76475, "credit_id": "52fe46029251416c7506a07d", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Richard Johnson", "character": "Grandpa", "id": 20510, "credit_id": "52fe46029251416c7506a081", "cast_id": 23, "profile_path": "/miDA5sN3ijfED6M4oRZ0NTdBfBR.jpg", "order": 11}, {"name": "Sheila Hancock", "character": "Grandma", "id": 93839, "credit_id": "52fe46029251416c7506a085", "cast_id": 24, "profile_path": "/jZv0I2HNE4BbFTatSXPotNvZWRS.jpg", "order": 12}, {"name": "Charlie Baker", "character": "Palm Court Singer", "id": 1252551, "credit_id": "530b483d9251411117004f03", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Iv\u00e1n Vereb\u00e9ly", "character": "Meinberg", "id": 1296078, "credit_id": "530b484c9251411111004f8c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "B\u00e9la Fesztbaum", "character": "Schultz", "id": 1037718, "credit_id": "530b48599251411105005175", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Rupert Friend", "character": "Lieutenant Kurt Kotler", "id": 36669, "credit_id": "548de059c3a368153b0026d6", "cast_id": 28, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 16}], "directors": [{"name": "Mark Herman", "department": "Directing", "job": "Director", "credit_id": "52fe46029251416c7506a015", "profile_path": null, "id": 55299}], "vote_average": 7.3, "runtime": 94}, "9257": {"poster_path": "/Aa9U6KrKZjQP5TF4rC3ZEVyuPXU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 116643346, "overview": "An imprisoned drug kingpin offers a huge cash reward to anyone that can break him out of police custody and only the LAPD's Special Weapons and Tactics team can prevent it.", "video": false, "id": 9257, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "S.W.A.T.", "tagline": "Even cops dial 911", "vote_count": 268, "homepage": "http://www.sonypictures.com/homevideo/swat/", "belongs_to_collection": {"backdrop_path": "/75To7hSFaAuciz4EXAFfj4LH6Od.jpg", "poster_path": "/7nMTOAbEEL3i65Y1gIVftWVEtOr.jpg", "id": 221111, "name": "S.W.A.T. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0257076", "adult": false, "backdrop_path": "/hauh8JKUNwLUiWRymC2gNmFIVCW.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Original Film", "id": 333}, {"name": "Camelot Pictures", "id": 11728}, {"name": "Chris Lee Productions", "id": 20033}, {"name": "Illusion Entertainment", "id": 20034}], "release_date": "2003-08-08", "popularity": 0.428955762606783, "original_title": "S.W.A.T.", "budget": 80000000, "cast": [{"name": "Samuel L. Jackson", "character": "Sgt. Dan 'Hondo' Harrelson", "id": 2231, "credit_id": "52fe44ddc3a36847f80aea97", "cast_id": 25, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Jim Street", "id": 72466, "credit_id": "52fe44ddc3a36847f80aea9b", "cast_id": 26, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Chris Sanchez", "id": 17647, "credit_id": "52fe44ddc3a36847f80aea23", "cast_id": 3, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "LL Cool J", "character": "Deacon 'Deke' Kay", "id": 36424, "credit_id": "52fe44ddc3a36847f80aea27", "cast_id": 4, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 3}, {"name": "Josh Charles", "character": "T.J. McCabe", "id": 2694, "credit_id": "52fe44ddc3a36847f80aea83", "cast_id": 20, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Brian Gamble", "id": 17604, "credit_id": "52fe44ddc3a36847f80aea87", "cast_id": 21, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "Brian Van Holt", "character": "Michael Boxer", "id": 12792, "credit_id": "52fe44ddc3a36847f80aea8b", "cast_id": 22, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 6}, {"name": "Olivier Martinez", "character": "Alex Montel", "id": 15533, "credit_id": "52fe44ddc3a36847f80aea8f", "cast_id": 23, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 7}, {"name": "Reg E. Cathey", "character": "Lt. Greg Velasquez", "id": 38951, "credit_id": "52fe44ddc3a36847f80aea93", "cast_id": 24, "profile_path": "/5SKwwUhSCgzggT6iRcO951e13XM.jpg", "order": 8}, {"name": "Domenick Lombardozzi", "character": "GQ", "id": 17941, "credit_id": "52fe44ddc3a36847f80aea7f", "cast_id": 19, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 9}, {"name": "Larry Poindexter", "character": "Capt. Thomas Fuller", "id": 25944, "credit_id": "52fe44ddc3a36847f80aea9f", "cast_id": 27, "profile_path": "/r1i1ra67xbNSscB2TDGyanBy1cb.jpg", "order": 10}, {"name": "Page Kennedy", "character": "Travis", "id": 177214, "credit_id": "52fe44ddc3a36847f80aeaa3", "cast_id": 28, "profile_path": "/x33dFKAzV0IJEZuHE5hrrLyPQmF.jpg", "order": 11}, {"name": "James DuMont", "character": "Gus", "id": 97446, "credit_id": "52fe44ddc3a36847f80aeaa7", "cast_id": 29, "profile_path": "/A448koSIESyi91EmOrCJwIC2wDA.jpg", "order": 12}, {"name": "Denis Arndt", "character": "Sgt. Howard", "id": 10480, "credit_id": "52fe44ddc3a36847f80aeaab", "cast_id": 30, "profile_path": "/yyEYxsqbXF69RgwbhckzxRvHehQ.jpg", "order": 13}, {"name": "Lindsey Ginter", "character": "Agent Hauser", "id": 156038, "credit_id": "54f2deac9251416b3100389e", "cast_id": 40, "profile_path": null, "order": 14}], "directors": [{"name": "Clark Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a36847f80aea2d", "profile_path": "/ud7Xtakgpkm0djkWGAbQDDTOUCT.jpg", "id": 47640}], "vote_average": 5.8, "runtime": 117}, "260346": {"poster_path": "/c2SSjUVYawDUnQ92bmTqsZsPEiB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 325600000, "overview": "Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.", "video": false, "id": 260346, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Taken 3", "tagline": "It Ends Here", "vote_count": 509, "homepage": "http://www.taken3movie.com/", "belongs_to_collection": {"backdrop_path": "/hO1R1TI429PjkOjby4dTPBrWFwn.jpg", "poster_path": "/4PNFiSaJWvWhkdOw0KF9Vf7v3gC.jpg", "id": 135483, "name": "Taken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2446042", "adult": false, "backdrop_path": "/razvUuLkF7CX4XsLyj02ksC0ayy.jpg", "production_companies": [{"name": "M6 Films", "id": 1115}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}], "release_date": "2015-01-09", "popularity": 14.966557607713, "original_title": "Taken 3", "budget": 48000000, "cast": [{"name": "Liam Neeson", "character": "Bryan Mills", "id": 3896, "credit_id": "532c5e6fc3a3686eec0000a0", "cast_id": 3, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Inspector Frank Dotzler", "id": 2178, "credit_id": "532c5e82c3a3686ee50000ab", "cast_id": 6, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Lenore Mills - St. John", "id": 10696, "credit_id": "532c5e75c3a3686ef80000af", "cast_id": 4, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Maggie Grace", "character": "Kim Mills", "id": 11825, "credit_id": "532c5e7bc3a3686ee50000a7", "cast_id": 5, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 3}, {"name": "Dougray Scott", "character": "Stuart St. John", "id": 15336, "credit_id": "54304082c3a36831a9000e13", "cast_id": 7, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 4}, {"name": "Sam Spruell", "character": "Oleg Malankov", "id": 55585, "credit_id": "543040a0c3a36831af000eaf", "cast_id": 10, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 5}, {"name": "Don Harvey", "character": "Garcia", "id": 1280, "credit_id": "543040e1c3a36831a6000f42", "cast_id": 16, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 6}, {"name": "Dylan Bruno", "character": "Smith", "id": 52476, "credit_id": "543040bfc3a36831a9000e23", "cast_id": 13, "profile_path": "/pNOG54RGO9sCKzbpM33pUEr9F2Y.jpg", "order": 7}, {"name": "Leland Orser", "character": "Sam", "id": 2221, "credit_id": "54304095c3a36831a9000e18", "cast_id": 9, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 8}, {"name": "David Warshofsky", "character": "Bernie (Harris)", "id": 37204, "credit_id": "551eef8a9251417e1e000214", "cast_id": 31, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 9}, {"name": "Jon Gries", "character": "(Mark) Casey", "id": 9629, "credit_id": "5430408c0e0a264649000ef4", "cast_id": 8, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 10}, {"name": "Jonny Weston", "character": "Jimy", "id": 928575, "credit_id": "543040a7c3a36831b8000ec0", "cast_id": 11, "profile_path": "/qv8lrHTf22WO92kdWcIu8ZMee0J.jpg", "order": 11}, {"name": "Andrew Borba", "character": "Clarence", "id": 167720, "credit_id": "551eefdfc3a3685ab10001bf", "cast_id": 32, "profile_path": "/knHlGxYCOO3tqFTiSoYWusjzdm1.jpg", "order": 12}, {"name": "Judi Beecher", "character": "Claire", "id": 167755, "credit_id": "543040c9c3a36831a6000f3e", "cast_id": 14, "profile_path": "/wjjXkDA5Z2DTR2spHUfywnWMDqX.jpg", "order": 13}, {"name": "Andrew Howard", "character": "Maxim", "id": 67206, "credit_id": "543040b30e0a26464f000eb6", "cast_id": 12, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 14}, {"name": "Al Sapienza", "character": "Detective Johnson", "id": 154917, "credit_id": "543040d30e0a264649000efe", "cast_id": 15, "profile_path": "/acfzjSs4lbz5EdCWfZkB45Zxn8y.jpg", "order": 15}, {"name": "Alexander Wraith", "character": "Cop Utility Room", "id": 118753, "credit_id": "543040ed0e0a26464c000e30", "cast_id": 17, "profile_path": "/6SrcyLh1k7EAmB0ZzewzZdWhGcF.jpg", "order": 16}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "54aeddd0c3a368666a00212e", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 6.3, "runtime": 109}, "190847": {"poster_path": "/4qeyW474FZWxUccDrR7pUJ8wfJ7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On the last day of the first manned mission to Mars, a crew member of Tantalus Base believes he has made an astounding discovery \u2013 fossilized evidence of bacterial life. Unwilling to let the relief crew claims all the glory, he disobeys orders to pack up and goes out on an unauthorized expedition to collect further samples. But a routine excavation turns to disaster when the porous ground collapses and he falls into a deep crevice and near certain death. His devastated colleagues attempt to recover his body. However, when another vanishes, they start to suspect that the life-form they have discovered is not without danger.", "video": false, "id": 190847, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Last Days on Mars", "tagline": "The search for life is about to end.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1709143", "adult": false, "backdrop_path": "/eerkyCF9nRXQK8tkwbuHAT0vDI7.jpg", "production_companies": [{"name": "British Film Institute (BFI)", "id": 7281}, {"name": "Irish Film Board", "id": 5267}, {"name": "Qwerty Films", "id": 892}, {"name": "Fantastic Films", "id": 18078}], "release_date": "2013-12-06", "popularity": 0.638696731253418, "original_title": "The Last Days on Mars", "budget": 0, "cast": [{"name": "Liev Schreiber", "character": "Vincent Campbell", "id": 23626, "credit_id": "52fe4c6e9251416c910f4b7b", "cast_id": 7, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 0}, {"name": "Romola Garai", "character": "Rebecca Lane", "id": 6979, "credit_id": "52fe4c6e9251416c910f4b83", "cast_id": 9, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Charles Brunel", "id": 13550, "credit_id": "52fe4c6e9251416c910f4b7f", "cast_id": 8, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Olivia Williams", "character": "Kim Aldrich", "id": 11616, "credit_id": "52fe4c6e9251416c910f4b87", "cast_id": 10, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 3}, {"name": "Johnny Harris", "character": "Robert Irwin", "id": 32300, "credit_id": "52fe4c6e9251416c910f4b8b", "cast_id": 11, "profile_path": "/1iKpLfSiJBFDrvt4RCJOGJrq2NM.jpg", "order": 4}, {"name": "Goran Kosti\u0107", "character": "Marko Petrovic", "id": 44736, "credit_id": "52fe4c6e9251416c910f4b8f", "cast_id": 12, "profile_path": "/3L0bBollvrXMH7BcuUKpcMue8Lo.jpg", "order": 5}, {"name": "Tom Cullen", "character": "Richard Harrington", "id": 586000, "credit_id": "52fe4c6e9251416c910f4b93", "cast_id": 13, "profile_path": "/zsjAPTZ3EcADUK8jfGOBCbjKxnp.jpg", "order": 6}, {"name": "Yusra Warsama", "character": "Lauren Dalby", "id": 1272903, "credit_id": "52fe4c6e9251416c910f4b97", "cast_id": 14, "profile_path": null, "order": 7}], "directors": [{"name": "Ruairi Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe4c6e9251416c910f4b59", "profile_path": "/lEvsZXpTu4MwV4LRF2kRQWbKetU.jpg", "id": 90508}], "vote_average": 5.2, "runtime": 98}, "1577": {"poster_path": "/2RxmbaRKRIJ9zMgZ7ijWMhFppx3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "As the city is locked down under quarantine, Alice joins a small band of elite soldiers, enlisted to rescue the missing daughter of the creator of the mutating T-virus. It's a heart-pounding race against time as the group faces off against hordes of blood- thirsty zombies, stealthy Lickers, mutant canines and the most sinister foe yet.", "video": false, "id": 1577, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Apocalypse", "tagline": "You're all going to die.", "vote_count": 450, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0318627", "adult": false, "backdrop_path": "/HiQeRDggI5EYLawYNHRJvB026S.jpg", "production_companies": [{"name": "Constantin Film", "id": 47}, {"name": "Impact Pictures", "id": 248}], "release_date": "2004-09-10", "popularity": 1.20208988608836, "original_title": "Resident Evil: Apocalypse", "budget": 0, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe42ffc3a36847f8032d51", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "52fe42ffc3a36847f8032d61", "cast_id": 4, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 1}, {"name": "Oded Fehr", "character": "Carlos Olivera", "id": 18041, "credit_id": "52fe42ffc3a36847f8032d65", "cast_id": 5, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Major Cain", "id": 3491, "credit_id": "52fe42ffc3a36847f8032d69", "cast_id": 6, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Sophie Vavasseur", "character": "Angie Ashford", "id": 96787, "credit_id": "52fe42ffc3a36847f8032da1", "cast_id": 16, "profile_path": "/zKuMsTRN79Rly8EoWN9i3zr2C4R.jpg", "order": 4}, {"name": "Razaaq Adoti", "character": "Sgt. Peyton Wells (as Raz Adoti)", "id": 12801, "credit_id": "52fe42ffc3a36847f8032da5", "cast_id": 17, "profile_path": "/8tyDtkUerIQfghpdX1G08EdSEie.jpg", "order": 5}, {"name": "Jared Harris", "character": "Dr. Ashford", "id": 15440, "credit_id": "52fe42ffc3a36847f8032da9", "cast_id": 18, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 6}, {"name": "Mike Epps", "character": "L.J.", "id": 51944, "credit_id": "52fe42ffc3a36847f8032dad", "cast_id": 19, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 7}, {"name": "Sandrine Holt", "character": "Terri Morales", "id": 65345, "credit_id": "52fe42ffc3a36847f8032d6d", "cast_id": 7, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 8}, {"name": "Matthew G. Taylor", "character": "Nemesis", "id": 59198, "credit_id": "52fe42ffc3a36847f8032db1", "cast_id": 20, "profile_path": "/il8bIgN6sANpmMSohJGvpNbeN8A.jpg", "order": 9}, {"name": "Zack Ward", "character": "Nicholai Ginovaeff", "id": 12714, "credit_id": "52fe42ffc3a36847f8032db5", "cast_id": 21, "profile_path": "/fuWd404vjKvxBRZLX5y8iFFzHqT.jpg", "order": 10}, {"name": "Iain Glen", "character": "Dr. Isaacs", "id": 20508, "credit_id": "52fe42ffc3a36847f8032db9", "cast_id": 22, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 11}, {"name": "Dave Nichols", "character": "Captain Henderson", "id": 185183, "credit_id": "52fe42ffc3a36847f8032dbd", "cast_id": 23, "profile_path": "/9wpYxMZxrILqFywDqhle0987Xd6.jpg", "order": 12}, {"name": "Stefan Hayes", "character": "Yuri Loginova", "id": 1282733, "credit_id": "52fe42ffc3a36847f8032dc1", "cast_id": 24, "profile_path": "/9u3VUfH0Sm4W8jiAePhunv5VX2z.jpg", "order": 13}, {"name": "Geoffrey Pounsett", "character": "Mackenzie", "id": 108892, "credit_id": "52fe42ffc3a36847f8032dc5", "cast_id": 25, "profile_path": "/xbp0HABLoF0onvNg8OsiLxO8yVx.jpg", "order": 14}, {"name": "Shaun Austin-Olsen", "character": "Priest", "id": 181010, "credit_id": "52fe42ffc3a36847f8032dc9", "cast_id": 26, "profile_path": "/aunxQUbkpZjiEmSAncNtvInID33.jpg", "order": 15}, {"name": "Geny Walters", "character": "Mrs. Priest", "id": 1282734, "credit_id": "52fe42ffc3a36847f8032dcd", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Megan Fahlenbock", "character": "Marla Mapes", "id": 87779, "credit_id": "52fe42ffc3a36847f8032dd1", "cast_id": 28, "profile_path": "/3bGOWBBpUoZ0lfjp1lKSD8XXmJX.jpg", "order": 17}, {"name": "Robert Morelli", "character": "Director", "id": 1001608, "credit_id": "52fe42ffc3a36847f8032dd5", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Aaron Abrams", "character": "Assistant", "id": 56262, "credit_id": "52fe42ffc3a36847f8032dd9", "cast_id": 30, "profile_path": "/weVv0AxBDJvk3pCf8ADnHjJRjtC.jpg", "order": 19}, {"name": "Chris Benson", "character": "Lance Halloran", "id": 76105, "credit_id": "52fe42ffc3a36847f8032ddd", "cast_id": 31, "profile_path": "/emkHKSAhTIVlLnz29T97NbTIGgJ.jpg", "order": 20}, {"name": "Martin Martinuzzi", "character": "Overworked Detective", "id": 159628, "credit_id": "52fe42ffc3a36847f8032de1", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Brad Borbridge", "character": "Overworked Sergeant", "id": 188632, "credit_id": "52fe42ffc3a36847f8032de5", "cast_id": 33, "profile_path": "/cPNnMmvViPM1GAzf3aFxiwNUYs.jpg", "order": 22}, {"name": "Frank Chiesurin", "character": "Sniper", "id": 119478, "credit_id": "52fe42ffc3a36847f8032de9", "cast_id": 34, "profile_path": "/sV3ApeDZxWV7feCodwMou2l4g55.jpg", "order": 23}, {"name": "Ron Benjamin", "character": "Bum", "id": 1282737, "credit_id": "52fe42ffc3a36847f8032ded", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Kevin Hare", "character": "Home Owner / Scientist", "id": 188609, "credit_id": "52fe42ffc3a36847f8032df1", "cast_id": 36, "profile_path": "/z2jRUQCVjcRTT7VFqsJ1a6I6yfO.jpg", "order": 25}, {"name": "Heather Dick", "character": "Older Woman", "id": 1282738, "credit_id": "52fe42ffc3a36847f8032df5", "cast_id": 37, "profile_path": "/9OQyCGt4mgAKLMtUy0v5slV85rJ.jpg", "order": 26}, {"name": "Alex Courey", "character": "Suit #1", "id": 1282739, "credit_id": "52fe42ffc3a36847f8032df9", "cast_id": 38, "profile_path": "/uvmklHNCLohRQsUR1aD77XzUgnk.jpg", "order": 27}, {"name": "John Detoro", "character": "Suit #2", "id": 1035179, "credit_id": "52fe42ffc3a36847f8032dfd", "cast_id": 39, "profile_path": "/eVzsEWszPRtDNZxNFesKVlzWvXL.jpg", "order": 28}, {"name": "Billy Khoury", "character": "Suit #3", "id": 180940, "credit_id": "52fe42ffc3a36847f8032e01", "cast_id": 40, "profile_path": "/2vGIhQQMNT3zlHozJf8waYzXXqj.jpg", "order": 29}, {"name": "Sava Drayton", "character": "Suit #4", "id": 168624, "credit_id": "52fe42ffc3a36847f8032e05", "cast_id": 41, "profile_path": "/vSZbKnORHLYEBIxQNDRrOccNGsP.jpg", "order": 30}, {"name": "Nicole Ann St. Hill", "character": "Undead Gaudy Hooker", "id": 1282740, "credit_id": "52fe42ffc3a36847f8032e09", "cast_id": 42, "profile_path": "/nqoehc5iM4femY6rgWkhOltPLcH.jpg", "order": 31}, {"name": "Ricardo Betancourt", "character": "Burly Cop #1", "id": 168611, "credit_id": "52fe42ffc3a36847f8032e0d", "cast_id": 43, "profile_path": "/4vXuYQWN8svVHemrOmTPdUtNuiP.jpg", "order": 32}, {"name": "Ted Ludzik", "character": "Burly Cop #2", "id": 40386, "credit_id": "52fe42ffc3a36847f8032e11", "cast_id": 44, "profile_path": "/fz7de231z4eWHkIA8vSqPSmB9US.jpg", "order": 33}, {"name": "Michelle Latimer", "character": "Tech #1", "id": 1233591, "credit_id": "52fe42ffc3a36847f8032e15", "cast_id": 45, "profile_path": "/3o3JyzkT5x3tQZdCWJZzhDTkLaT.jpg", "order": 34}, {"name": "Catherine Burdon", "character": "Tech #2", "id": 981162, "credit_id": "52fe42ffc3a36847f8032e19", "cast_id": 46, "profile_path": "/1OOrjAGa1s1SMU2WYpdyhBoeRKZ.jpg", "order": 35}, {"name": "Rebecca Sims", "character": "Undead Little Girl", "id": 1282741, "credit_id": "52fe42ffc3a36847f8032e1d", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Christopher Weedon", "character": "Undead Little Boy #1", "id": 1282742, "credit_id": "52fe42ffc3a36847f8032e21", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Billy Parrott", "character": "Security Guard", "id": 62674, "credit_id": "52fe42ffc3a36847f8032e25", "cast_id": 49, "profile_path": "/kVCaH4rHM5T2rTkDroyHZTTyR1S.jpg", "order": 38}, {"name": "Derek Aasland", "character": "Featured Graveyard Undead 1 (as Derek Asland) / Featured \"Surplus\" Undead #3", "id": 199822, "credit_id": "52fe42ffc3a36847f8032e29", "cast_id": 50, "profile_path": "/q04CZ3srSgdDACzxcAmbkbKXlHq.jpg", "order": 39}, {"name": "Richard Harte", "character": "Featured Graveyard Undead 2 / Featured Rooftop Undead #2", "id": 1282743, "credit_id": "52fe42ffc3a36847f8032e2d", "cast_id": 51, "profile_path": "/g8Sx0wbYpy8EljfUXYnGSW6EH5Z.jpg", "order": 40}, {"name": "Simon Girard", "character": "Chopper Pilot #1", "id": 1282744, "credit_id": "52fe42ffc3a36847f8032e31", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Dean Copkov", "character": "Chopper Pilot #2", "id": 8358, "credit_id": "52fe42ffc3a36847f8032e35", "cast_id": 53, "profile_path": "/iLGNYLW04d24GfaDt8Skgnlf8bt.jpg", "order": 42}, {"name": "Jeff White", "character": "Chopper Pilot #4", "id": 1282746, "credit_id": "52fe42ffc3a36847f8032e39", "cast_id": 54, "profile_path": "/2JUDsYrU9MJ7gXQaisQfO9IgJOX.jpg", "order": 43}, {"name": "Tim Burd", "character": "Refugee #1", "id": 2686, "credit_id": "52fe42ffc3a36847f8032e3d", "cast_id": 55, "profile_path": "/inSi2m7IYXK7pUlEk2bPEvnri4J.jpg", "order": 44}, {"name": "Natalie Charles", "character": "Refugee #2", "id": 201683, "credit_id": "52fe42ffc3a36847f8032e41", "cast_id": 56, "profile_path": null, "order": 45}, {"name": "Pierre Henry", "character": "Screaming Soldier", "id": 8370, "credit_id": "52fe42ffc3a36847f8032e45", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Jim Codrington", "character": "Lieutenant", "id": 64514, "credit_id": "52fe4300c3a36847f8032e49", "cast_id": 58, "profile_path": "/eapfLVW8DNZdW9zJ67baEiqfpsY.jpg", "order": 47}, {"name": "Deborah Valente", "character": "Tech", "id": 74279, "credit_id": "52fe4300c3a36847f8032e4d", "cast_id": 59, "profile_path": "/vY7Is15KFcXaEgjyGiIT8ziqwH0.jpg", "order": 48}, {"name": "Malcolm Fiddick", "character": "Reflection Undead", "id": 175201, "credit_id": "52fe4300c3a36847f8032e51", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Malcolm Xerxes", "character": "Featured City Hall Undead #1", "id": 180922, "credit_id": "52fe4300c3a36847f8032e55", "cast_id": 61, "profile_path": null, "order": 50}, {"name": "Michy Gustavia", "character": "Featured City Hall Undead #2", "id": 1282758, "credit_id": "52fe4300c3a36847f8032e59", "cast_id": 62, "profile_path": "/naffyoDuhp6BrZOv3pzyR3SMimO.jpg", "order": 51}, {"name": "Shane Mackinnon", "character": "Featured City Hall Undead #3", "id": 1282760, "credit_id": "52fe4300c3a36847f8032e5d", "cast_id": 63, "profile_path": "/woRI8mTxkrJEVWiR89wc46lrfCN.jpg", "order": 52}, {"name": "Ed Fielding", "character": "Featured City Hall Undead #4", "id": 166441, "credit_id": "52fe4300c3a36847f8032e61", "cast_id": 64, "profile_path": "/gWMUS5AnD9GMhA1Vqn3WRtOSyk.jpg", "order": 53}, {"name": "Stephen R. Hart", "character": "Featured City Hall Undead #5 (as Stephen Hart)", "id": 224723, "credit_id": "52fe4300c3a36847f8032e65", "cast_id": 65, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 54}, {"name": "Sandi Stahlbrand", "character": "Reporter #1", "id": 181018, "credit_id": "52fe4300c3a36847f8032e69", "cast_id": 66, "profile_path": "/1JKsfF6aDwni2ge5JJt2xq6ds2v.jpg", "order": 55}, {"name": "Christopher Marren", "character": "Guard (as Chris Marren)", "id": 186491, "credit_id": "52fe4300c3a36847f8032e6d", "cast_id": 67, "profile_path": "/iGPSLtbi2X3EXprcefvRhsSQ0Ec.jpg", "order": 56}, {"name": "Tom Gerhardt", "character": "Zombie Dad", "id": 57852, "credit_id": "52fe4300c3a36847f8032e71", "cast_id": 68, "profile_path": "/l5tIaPiOi76AnG2Di9MIqkBBvAz.jpg", "order": 57}, {"name": "Amber Marshall", "character": "Daughter", "id": 200920, "credit_id": "52fe4300c3a36847f8032e75", "cast_id": 69, "profile_path": "/ey6ZgAepsH8BahsYZg1Mteuz3Eb.jpg", "order": 58}, {"name": "Venice Grant", "character": "Undead Stripper #1", "id": 184392, "credit_id": "52fe4300c3a36847f8032e79", "cast_id": 70, "profile_path": "/1GhhGqrQKlos4NdxrLjKbERGuCQ.jpg", "order": 59}, {"name": "Ana Danilina", "character": "Undead Stripper #2", "id": 1282767, "credit_id": "52fe4300c3a36847f8032e7d", "cast_id": 71, "profile_path": "/wstIzuk3cX0ACR0gokbd2Au26rw.jpg", "order": 60}, {"name": "Ingrid Johansson", "character": "Featured IV Woman Undead", "id": 1282769, "credit_id": "52fe4300c3a36847f8032e81", "cast_id": 72, "profile_path": "/aa67SQjtKtHVJISTRY5Qj2F4iaP.jpg", "order": 61}, {"name": "Jeffrey Weedon", "character": "Undead Little Boy #2", "id": 1282773, "credit_id": "52fe4300c3a36847f8032e85", "cast_id": 73, "profile_path": null, "order": 62}, {"name": "Melanie Tonello", "character": "Featured Undead Kid #1", "id": 1227294, "credit_id": "52fe4300c3a36847f8032e89", "cast_id": 74, "profile_path": "/ibbo2kzrIufzcZo4c9nnyqNRPfj.jpg", "order": 63}, {"name": "Annabel Chu", "character": "Featured Undead Kid #2", "id": 1282774, "credit_id": "52fe4300c3a36847f8032e8d", "cast_id": 75, "profile_path": "/c1ceLXbbRtt2SinkC8AVU0LRzct.jpg", "order": 64}, {"name": "Joey Jefferson", "character": "Featured Undead Kid #3", "id": 1282775, "credit_id": "52fe4300c3a36847f8032e91", "cast_id": 76, "profile_path": null, "order": 65}, {"name": "Heather Braaten", "character": "Featured Rooftop Undead #1", "id": 1282777, "credit_id": "52fe4300c3a36847f8032e95", "cast_id": 77, "profile_path": null, "order": 66}, {"name": "Joey Beck", "character": "Featured Rooftop Undead #3", "id": 1282780, "credit_id": "52fe4300c3a36847f8032e99", "cast_id": 78, "profile_path": "/usi93Z0kZHXmySFGhPsRMXOZmcw.jpg", "order": 67}, {"name": "Eric Morgan", "character": "Featured Undead City Walker #1", "id": 1282783, "credit_id": "52fe4300c3a36847f8032e9d", "cast_id": 79, "profile_path": null, "order": 68}, {"name": "Gene Pyrz", "character": "Featured Undead City Walker #2", "id": 14903, "credit_id": "52fe4300c3a36847f8032ea1", "cast_id": 80, "profile_path": "/ydANqjUBcAKXTT3QCtdrihxXCRi.jpg", "order": 69}, {"name": "Torquil Colbo", "character": "Featured Undead City Walker #3", "id": 1282788, "credit_id": "52fe4300c3a36847f8032ea5", "cast_id": 81, "profile_path": null, "order": 70}, {"name": "Joan Moore", "character": "Featured Undead City Walker #4", "id": 1282791, "credit_id": "52fe4300c3a36847f8032ea9", "cast_id": 82, "profile_path": null, "order": 71}, {"name": "Peter C. Wylde", "character": "Featured Undead City Walker #5", "id": 1282793, "credit_id": "52fe4300c3a36847f8032ead", "cast_id": 83, "profile_path": null, "order": 72}, {"name": "Garry Geddes", "character": "Featured Undead City Walker #6", "id": 1282795, "credit_id": "52fe4300c3a36847f8032eb1", "cast_id": 84, "profile_path": null, "order": 73}, {"name": "Dionne Renee", "character": "Featured Undead City Walker #7", "id": 1282796, "credit_id": "52fe4300c3a36847f8032eb5", "cast_id": 85, "profile_path": null, "order": 74}, {"name": "Janessa Crimi", "character": "Featured Undead Kid #4", "id": 1282801, "credit_id": "52fe4300c3a36847f8032eb9", "cast_id": 86, "profile_path": "/wjOaXE5eri5moTElZQt0XN1iB9R.jpg", "order": 75}, {"name": "Dan Ellery", "character": "Featured Graveyard Undead 1 (as Derek Asland) / Featured \"Surplus\" Undead #3", "id": 1282802, "credit_id": "52fe4300c3a36847f8032ebd", "cast_id": 87, "profile_path": "/duu0n4CP140keYRxgrtpjAZftCb.jpg", "order": 76}, {"name": "Sharon Moore", "character": "Featured \"Surplus\" Undead #2", "id": 1282804, "credit_id": "52fe4300c3a36847f8032ec1", "cast_id": 88, "profile_path": "/x9QTUXivnX87p3SCIVY86j0pLpi.jpg", "order": 77}, {"name": "Jo Chim", "character": "Network Anchor #1", "id": 174584, "credit_id": "52fe4300c3a36847f8032ec5", "cast_id": 89, "profile_path": "/ygK2v0pRaTu1p9O7zvNnmYUWYEG.jpg", "order": 78}, {"name": "Bobby Prochaska", "character": "Network Anchor #2", "id": 1282808, "credit_id": "52fe4300c3a36847f8032ec9", "cast_id": 90, "profile_path": null, "order": 79}, {"name": "Jazz Mann", "character": "Reporter #2", "id": 111809, "credit_id": "52fe4300c3a36847f8032ecd", "cast_id": 91, "profile_path": "/ytC4z303UaxdWmmfoakVaQTfVOf.jpg", "order": 80}, {"name": "Larissa Gomes", "character": "Reporter #3", "id": 55572, "credit_id": "52fe4300c3a36847f8032ed1", "cast_id": 92, "profile_path": "/xddMqErSIlOJeAKwhWSxwlNV6g7.jpg", "order": 81}, {"name": "Gregory White", "character": "Lab Technician", "id": 1282809, "credit_id": "52fe4300c3a36847f8032ed5", "cast_id": 93, "profile_path": "/yncmZS8mByfyqzABQnpejouGc8T.jpg", "order": 82}, {"name": "Roman Podhora", "character": "Leader Umbrella Guard", "id": 55588, "credit_id": "52fe4300c3a36847f8032ed9", "cast_id": 94, "profile_path": "/bsLXnsfdwKkeQw7Q6vCFb5SD2Wv.jpg", "order": 83}, {"name": "Brian King", "character": "Umbrella Gate Guard", "id": 204547, "credit_id": "52fe4300c3a36847f8032edd", "cast_id": 95, "profile_path": "/11He62tWcInsk61w7NNZVHeDUCF.jpg", "order": 84}, {"name": "Rob Hall", "character": "Featured School Undead", "id": 1038790, "credit_id": "52fe4300c3a36847f8032ee1", "cast_id": 96, "profile_path": null, "order": 85}, {"name": "Eric Mabius", "character": "Matt Addison (archive footage)", "id": 11867, "credit_id": "52fe4300c3a36847f8032ee5", "cast_id": 97, "profile_path": "/mfYqgYHkvJRgPus0kN2V1GhsFOU.jpg", "order": 86}], "directors": [{"name": "Alexander Witt", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032d5d", "profile_path": "/3hegIe4CixeZCFls7g5TpauQL9K.jpg", "id": 17649}], "vote_average": 6.2, "runtime": 94}, "22794": {"poster_path": "/75QV0rNm6QHpMnpIGrZK0ev08rH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 242988466, "overview": "Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?", "video": false, "id": 22794, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cloudy with a Chance of Meatballs", "tagline": "Prepare to get served.", "vote_count": 640, "homepage": "http://www.cloudywithachanceofmeatballs.com/", "belongs_to_collection": {"backdrop_path": "/eANL41F9Zp1xHMD6VnHnD3QS7ui.jpg", "poster_path": "/pRAzOs9cZN8LlhaCKo6LQ0bSfyi.jpg", "id": 177467, "name": "Cloudy with a Chance of Meatballs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0844471", "adult": false, "backdrop_path": "/vYovS909jUV3wxms4DmHGjZ1lhw.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2009-09-16", "popularity": 1.31642694930513, "original_title": "Cloudy with a Chance of Meatballs", "budget": 100000000, "cast": [{"name": "Bill Hader", "character": "Flint Lockwood (voice)", "id": 19278, "credit_id": "52fe444fc3a368484e01be1b", "cast_id": 1, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 0}, {"name": "Anna Faris", "character": "Sam Sparks (voice)", "id": 1772, "credit_id": "52fe444fc3a368484e01be1f", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "James Caan", "character": "Tim Lockwood (voice)", "id": 3085, "credit_id": "52fe444fc3a368484e01be23", "cast_id": 3, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 2}, {"name": "Mr. T", "character": "Earl Devereaux (voice)", "id": 16619, "credit_id": "52fe444fc3a368484e01be27", "cast_id": 5, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 3}, {"name": "Benjamin Bratt", "character": "Manny (voice)", "id": 4589, "credit_id": "52fe444fc3a368484e01be31", "cast_id": 7, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 4}, {"name": "Bruce Campbell", "character": "Mayor Shelbourne (voice)", "id": 11357, "credit_id": "52fe444fc3a368484e01be35", "cast_id": 8, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 5}, {"name": "Neil Patrick Harris", "character": "Steve (voice)", "id": 41686, "credit_id": "52fe444fc3a368484e01be39", "cast_id": 9, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 6}, {"name": "Al Roker", "character": "Patrick Patrickson (voice)", "id": 111875, "credit_id": "52fe444fc3a368484e01be3d", "cast_id": 10, "profile_path": "/gl113PsTnmLTAFCjNthTyXwZJyI.jpg", "order": 7}, {"name": "Lauren Graham", "character": "Fran Lockwood (voice)", "id": 16858, "credit_id": "52fe444fc3a368484e01be41", "cast_id": 11, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 8}, {"name": "Andy Samberg", "character": "'Baby' Brent (voice)", "id": 62861, "credit_id": "52fe444fc3a368484e01be4b", "cast_id": 16, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 9}, {"name": "Bobb'e J. Thompson", "character": "Cal Devereaux (voice)", "id": 75633, "credit_id": "52fe444fc3a368484e01bea3", "cast_id": 32, "profile_path": "/egf09lgTqjSmSCxGLTROpkb5ZGS.jpg", "order": 10}, {"name": "Will Forte", "character": "Joe Towne (voice)", "id": 62831, "credit_id": "52fe444fc3a368484e01bea7", "cast_id": 33, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 11}, {"name": "Max Neuwirth", "character": "Young Flint (voice)", "id": 968412, "credit_id": "52fe444fc3a368484e01beab", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Peter Siragusa", "character": "Rufus (voice)", "id": 154693, "credit_id": "52fe444fc3a368484e01beaf", "cast_id": 35, "profile_path": "/ujsyxmkFL2Co1kJeNPPTVQrE9Dq.jpg", "order": 13}, {"name": "Angela Shelton", "character": "Regina Devereaux (voice)", "id": 470529, "credit_id": "52fe444fc3a368484e01beb3", "cast_id": 36, "profile_path": "/svMM0OLs39SSBIVuxSLSkt4J5of.jpg", "order": 14}, {"name": "Neil Flynn", "character": "Weather News Network Producer (voice)", "id": 43776, "credit_id": "52fe444fc3a368484e01beb7", "cast_id": 37, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 15}, {"name": "Liz Cackowski", "character": "Flint's Teacher (voice)", "id": 448309, "credit_id": "52fe444fc3a368484e01bebb", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Isabella Acres", "character": "(voice)", "id": 210877, "credit_id": "550e919ec3a3683e7f0020f2", "cast_id": 39, "profile_path": "/xYfOE6mlvuuzQR4nFhleaw8w12V.jpg", "order": 17}, {"name": "Lori Alan", "character": "(voice)", "id": 24358, "credit_id": "550e9aefc3a368487400a65e", "cast_id": 40, "profile_path": "/mNfJWzuaKgkIaK7CuirXOMosd2h.jpg", "order": 18}, {"name": "Shane Baumel", "character": "(voice)", "id": 52868, "credit_id": "550e9d9d925141065c002335", "cast_id": 41, "profile_path": "/lcb0H1H2hPF2RzSeGq2OadilEMy.jpg", "order": 19}, {"name": "Bob Bergen", "character": "(voice)", "id": 78317, "credit_id": "550e9dda925141073d002442", "cast_id": 42, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 20}, {"name": "Cody Cameron", "character": "(voice)", "id": 12095, "credit_id": "550e9e3c925141065c00234f", "cast_id": 43, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 21}, {"name": "Marsha Clark", "character": "(voice)", "id": 155639, "credit_id": "550e9e8292514107010023ec", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "John Cygan", "character": "(voice)", "id": 167295, "credit_id": "550e9eb1c3a3683f39002326", "cast_id": 45, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 23}, {"name": "Ann Dominic", "character": "(voice)", "id": 1443837, "credit_id": "550e9ec9925141065c002375", "cast_id": 46, "profile_path": null, "order": 24}, {"name": "Paul Eiding", "character": "(voice)", "id": 86006, "credit_id": "550e9ef6c3a3683dd6002087", "cast_id": 47, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 25}, {"name": "Jess Harnell", "character": "(voice)", "id": 84495, "credit_id": "550e9f0f92514146990096fb", "cast_id": 48, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 26}, {"name": "Gary A. Hecker", "character": "(voice) (as Gary Hecker)", "id": 1077782, "credit_id": "550e9f3b9251414699009703", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Phil Lord", "character": "(voice)", "id": 107446, "credit_id": "550ecf4d9251410701002bea", "cast_id": 50, "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "order": 28}, {"name": "Sherry Lynn", "character": "(voice)", "id": 214701, "credit_id": "550ecfa09251410701002bf5", "cast_id": 51, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 29}, {"name": "Danny Mann", "character": "(voice)", "id": 52699, "credit_id": "550ecfe19251416bd100083c", "cast_id": 52, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 30}, {"name": "Mona Marshall", "character": "(voice)", "id": 111466, "credit_id": "550ed016925141065c002b21", "cast_id": 53, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 31}, {"name": "Mickie McGowan", "character": "(voice)", "id": 84493, "credit_id": "550ed03ec3a3681db2009649", "cast_id": 54, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 32}, {"name": "Christopher Miller", "character": "(voice)", "id": 1230981, "credit_id": "550ed06b925141065c002b2e", "cast_id": 55, "profile_path": null, "order": 33}, {"name": "Laraine Newman", "character": "(voice)", "id": 35159, "credit_id": "550ed095925141065c002b38", "cast_id": 56, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 34}, {"name": "Jan Rabson", "character": "(voice)", "id": 157626, "credit_id": "550ed2949251414699009f01", "cast_id": 57, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 35}, {"name": "Grace Rolek", "character": "(voice)", "id": 946462, "credit_id": "550ed2d3c3a3683f39002b36", "cast_id": 58, "profile_path": "/ejn2P2z5KwnLHxNmxHwLCCDuIph.jpg", "order": 36}, {"name": "Jeremy Shada", "character": "(voice)", "id": 204131, "credit_id": "550ed308c3a3683f0a0029ec", "cast_id": 59, "profile_path": "/oyBtYOnOCSp2yX8shxqoQsqtBF9.jpg", "order": 37}, {"name": "Will Shadley", "character": "(voice)", "id": 1281596, "credit_id": "550ed33992514146a000a033", "cast_id": 60, "profile_path": "/lXftbxNXncsiYBBXXTVrVYmiASF.jpg", "order": 38}, {"name": "Melissa Sturm", "character": "(voice)", "id": 587697, "credit_id": "550ed377c3a368487400afb9", "cast_id": 61, "profile_path": null, "order": 39}, {"name": "Ariel Winter", "character": "(voice)", "id": 42160, "credit_id": "550ed3a992514164ac000993", "cast_id": 62, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 40}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe444fc3a368484e01be2d", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe444fc3a368484e01be47", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 6.3, "runtime": 90}, "22798": {"poster_path": "/llpanXzIJq65qEM4weBaYaLEiY9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Bodeen, Texas, Land Of The Dragon, an indie-rock loving misfit finds a way of dealing with her small-town misery after she discovers a roller derby league in nearby Austin.", "video": false, "id": 22798, "genres": [{"id": 18, "name": "Drama"}], "title": "Whip It", "tagline": "Be Your Own Hero", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1172233", "adult": false, "backdrop_path": "/iIU2NlC0EpL5NTPtGWmupyoMPhN.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Vincent Pictures", "id": 8818}], "release_date": "2009-09-13", "popularity": 0.47382305332608, "original_title": "Whip It", "budget": 15000000, "cast": [{"name": "Ellen Page", "character": "Bliss Cavendar", "id": 27578, "credit_id": "52fe4450c3a368484e01bfa3", "cast_id": 2, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Smashley Simpson", "id": 69597, "credit_id": "52fe4450c3a368484e01bfa7", "cast_id": 3, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Sarah Habel", "character": "Corbi", "id": 87444, "credit_id": "52fe4450c3a368484e01bfab", "cast_id": 4, "profile_path": "/eIEv1BHPIvxUtLxeTqQ4JFJa6Bj.jpg", "order": 2}, {"name": "Shannon Eagen", "character": "Amber", "id": 92019, "credit_id": "52fe4450c3a368484e01bfaf", "cast_id": 5, "profile_path": "/cNhj8b2IB7FsaswCwV4t6vBDF1Y.jpg", "order": 3}, {"name": "Kristen Wiig", "character": "Maggie Mayhem", "id": 41091, "credit_id": "52fe4450c3a368484e01bfb3", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 4}, {"name": "Zo\u00eb Bell", "character": "Bloody Holly", "id": 20494, "credit_id": "52fe4450c3a368484e01bfb7", "cast_id": 7, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 5}, {"name": "Juliette Lewis", "character": "Iron Maven", "id": 3196, "credit_id": "52fe4450c3a368484e01bfc1", "cast_id": 9, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 6}, {"name": "Marcia Gay Harden", "character": "Brooke Cavendar", "id": 4726, "credit_id": "52fe4450c3a368484e01bfc5", "cast_id": 10, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 7}, {"name": "Jimmy Fallon", "character": "\"Hot Tub\" Johnny Rocket", "id": 11669, "credit_id": "52fe4450c3a368484e01bfc9", "cast_id": 11, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 8}, {"name": "Eve", "character": "Rosa Sparks", "id": 230176, "credit_id": "52fe4450c3a368484e01bfcd", "cast_id": 12, "profile_path": "/3V7Um9JXpwcuTx6wnO2u1hZ1Jfa.jpg", "order": 9}, {"name": "Daniel Stern", "character": "Earl Cavendar", "id": 11511, "credit_id": "52fe4450c3a368484e01bfd1", "cast_id": 13, "profile_path": "/fyiJWh0zdIOBOSqcB8qaFw5U8bA.jpg", "order": 10}, {"name": "Alia Shawkat", "character": "Pash", "id": 61178, "credit_id": "52fe4450c3a368484e01bfd5", "cast_id": 14, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 11}, {"name": "Har Mar Superstar", "character": "Fight Attendants Coach", "id": 1107306, "credit_id": "52fe4450c3a368484e01bfd9", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Andrew Wilson", "character": "Razor", "id": 71555, "credit_id": "534d32c1c3a368607c000dae", "cast_id": 16, "profile_path": "/tGwZ3P9xENc0C8HD7wiuspCm8tM.jpg", "order": 13}], "directors": [{"name": "Drew Barrymore", "department": "Directing", "job": "Director", "credit_id": "52fe444fc3a368484e01bf9f", "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "id": 69597}], "vote_average": 6.6, "runtime": 111}, "6415": {"poster_path": "/uB9Kl71W50q5KwM6d06ho6sNuq1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108000000, "overview": "A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.", "video": false, "id": 6415, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Three Kings", "tagline": "It's good to be King.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0120188", "adult": false, "backdrop_path": "/d2fSA6N7xUvj5jA62SAsGvLdVk5.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Village-A.M. Partnership", "id": 23689}, {"name": "Coast Ridge", "id": 23690}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Junger Witt Productions", "id": 23691}], "release_date": "1999-09-27", "popularity": 0.80228629780176, "original_title": "Three Kings", "budget": 75000000, "cast": [{"name": "George Clooney", "character": "Archie Gates", "id": 1461, "credit_id": "52fe4450c3a36847f808ecd1", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Troy Barlow", "id": 13240, "credit_id": "52fe4450c3a36847f808ecd5", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Ice Cube", "character": "Chief Elgin", "id": 9778, "credit_id": "52fe4450c3a36847f808ecd9", "cast_id": 3, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 2}, {"name": "Spike Jonze", "character": "Conrad Vig", "id": 5953, "credit_id": "52fe4450c3a36847f808ed07", "cast_id": 11, "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "order": 3}, {"name": "Cliff Curtis", "character": "Amir Abdullah", "id": 7248, "credit_id": "52fe4450c3a36847f808ed0b", "cast_id": 12, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 4}, {"name": "Nora Dunn", "character": "Adriana Cruz", "id": 4496, "credit_id": "52fe4450c3a36847f808ed0f", "cast_id": 13, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 5}, {"name": "Jamie Kennedy", "character": "Walter Wogaman", "id": 6213, "credit_id": "52fe4450c3a36847f808ed13", "cast_id": 14, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 6}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a36847f808ecdf", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 6.3, "runtime": 114}, "252178": {"poster_path": "/qvcL0xrm72wWuTLdw5sLcq1JvFM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A young British soldier must find his way back to safety after his unit accidentally abandons him during a riot in the streets of Belfast.", "video": false, "id": 252178, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "'71", "tagline": "", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2614684", "adult": false, "backdrop_path": "/n3kLxEkfUI8LQu6izXFI8fByH2l.jpg", "production_companies": [{"name": "British Film Institute (BFI)", "id": 16974}, {"name": "Screen Yorkshire", "id": 2690}, {"name": "Creative Scotland", "id": 8087}, {"name": "Film4", "id": 9349}, {"name": "Warp Films", "id": 12180}, {"name": "Crab Apple Films", "id": 41517}], "release_date": "2014-10-10", "popularity": 2.06462699295693, "original_title": "'71", "budget": 0, "cast": [{"name": "Jack O'Connell", "character": "Gary", "id": 85065, "credit_id": "52fe4e319251416c9112980b", "cast_id": 6, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 0}, {"name": "Paul Anderson", "character": "MRF NCO Lewis", "id": 220448, "credit_id": "52fe4e319251416c91129801", "cast_id": 3, "profile_path": "/fHLtf1RvQ2i6ZudyL0WRwmEeTxv.jpg", "order": 1}, {"name": "Sean Harris", "character": "Captain Sandy Browning", "id": 16702, "credit_id": "52fe4e319251416c9112980f", "cast_id": 7, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 2}, {"name": "Sam Reid", "character": "Lt. Armitage", "id": 589650, "credit_id": "52fe4e319251416c91129813", "cast_id": 8, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 3}, {"name": "Sam Hazeldine", "character": "C.O.", "id": 563559, "credit_id": "52fe4e319251416c91129817", "cast_id": 9, "profile_path": "/12ev9KVmZ1xF4FNeZFGYRHjvJkQ.jpg", "order": 4}, {"name": "Charlie Murphy", "character": "Brigid", "id": 1356630, "credit_id": "53fcdfbac3a3687361006c1c", "cast_id": 11, "profile_path": "/m7Tq2K3iNPGJDyLVlI8PjDgkzYC.jpg", "order": 5}, {"name": "Valene Kane", "character": "Orla (Spitting Woman)", "id": 583815, "credit_id": "53fcdfdcc3a3687361006c20", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "David Wilmot", "character": "Boyle", "id": 73287, "credit_id": "549aba8e9251413126001921", "cast_id": 13, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 7}, {"name": "Killian Scott", "character": "Quinn", "id": 1189005, "credit_id": "549aba9b9251413132001831", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ben Peel", "character": "Ruc Man", "id": 1205630, "credit_id": "549abaa9c3a3682f19001940", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Richard Dormer", "character": "Eamon", "id": 97416, "credit_id": "549abab8c3a3680b27001070", "cast_id": 16, "profile_path": "/wVQ3YFe4VCjgcfj56hmgOXaLwAW.jpg", "order": 10}, {"name": "Martin McCann", "character": "Paul Haggerty", "id": 76104, "credit_id": "549abacc9251413123001828", "cast_id": 17, "profile_path": "/665LYyzjbJnmTpTI9HlyJRs3vZq.jpg", "order": 11}], "directors": [{"name": "Yann Demange", "department": "Directing", "job": "Director", "credit_id": "52fe4e319251416c91129807", "profile_path": null, "id": 208527}], "vote_average": 6.7, "runtime": 99}, "22803": {"poster_path": "/eaq6sH6JkS8ypbtCo9GCiopry0Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126690726, "overview": "A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family's killers free. He targets not only the killer but also the district attorney and others involved in the deal.", "video": false, "id": 22803, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Law Abiding Citizen", "tagline": "The System Must Pay.", "vote_count": 493, "homepage": "http://www.lawabidingcitizenfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1197624", "adult": false, "backdrop_path": "/xFBmZefwrKNeuN7IOksPSdX5ETG.jpg", "production_companies": [{"name": "Film Department, The", "id": 5257}, {"name": "Evil Twins", "id": 5802}, {"name": "Warp Films", "id": 12180}], "release_date": "2009-10-15", "popularity": 1.29131152367383, "original_title": "Law Abiding Citizen", "budget": 53000000, "cast": [{"name": "Jamie Foxx", "character": "Nick Rice", "id": 134, "credit_id": "52fe4450c3a368484e01c135", "cast_id": 4, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Clyde Alexander Shelton", "id": 17276, "credit_id": "52fe4450c3a368484e01c131", "cast_id": 3, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Colm Meaney", "character": "Detective Dunnigan", "id": 17782, "credit_id": "52fe4450c3a368484e01c13d", "cast_id": 6, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 2}, {"name": "Bruce McGill", "character": "Jonas Cantrell", "id": 14888, "credit_id": "52fe4450c3a368484e01c141", "cast_id": 7, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 3}, {"name": "Leslie Bibb", "character": "Sarah Lowell", "id": 57451, "credit_id": "52fe4450c3a368484e01c139", "cast_id": 5, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 4}, {"name": "Michael Irby", "character": "Detective Garza", "id": 124304, "credit_id": "52fe4450c3a368484e01c145", "cast_id": 8, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 5}, {"name": "Gregory Itzin", "character": "Warden Iger", "id": 21142, "credit_id": "52fe4450c3a368484e01c149", "cast_id": 9, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 6}, {"name": "Regina Hall", "character": "Kelly Rice", "id": 35705, "credit_id": "52fe4450c3a368484e01c14d", "cast_id": 10, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 7}, {"name": "Emerald-Angel Young", "character": "Denise Rice", "id": 124305, "credit_id": "52fe4450c3a368484e01c151", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Christian Stolte", "character": "Clarence Darby", "id": 36091, "credit_id": "52fe4450c3a368484e01c155", "cast_id": 12, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 9}, {"name": "Annie Corley", "character": "Judge Laura Burch", "id": 6907, "credit_id": "52fe4450c3a368484e01c159", "cast_id": 13, "profile_path": "/ypA6im4I1S5SzzNAJOdRmZq01YX.jpg", "order": 10}, {"name": "Richard Portnow", "character": "Bill Reynolds", "id": 4255, "credit_id": "52fe4450c3a368484e01c15d", "cast_id": 14, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 11}, {"name": "Viola Davis", "character": "Mayor April Henry", "id": 19492, "credit_id": "52fe4450c3a368484e01c161", "cast_id": 15, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 12}, {"name": "Michael Kelly", "character": "Bray", "id": 50217, "credit_id": "52fe4450c3a368484e01c169", "cast_id": 18, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 13}, {"name": "Josh Stewart", "character": "Rupert Ames", "id": 40039, "credit_id": "52fe4450c3a368484e01c165", "cast_id": 17, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 14}, {"name": "Roger Bart", "character": "Brian Bringham", "id": 45566, "credit_id": "540642070e0a2658db00dbe3", "cast_id": 19, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 15}, {"name": "Dan Bittner", "character": "Sereno", "id": 1152008, "credit_id": "54c4139b9251416eae00f0e8", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a368484e01c127", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 7.0, "runtime": 109}, "22804": {"poster_path": "/iCVk1uniEoQLXdluUGUXBaAgD1H.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68233629, "overview": "Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw's legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw's grand scheme is finally understood.", "video": false, "id": 22804, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Saw VI", "tagline": "The Game Has Come Full Circle", "vote_count": 147, "homepage": "http://www.saw6film.com/", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1233227", "adult": false, "backdrop_path": "/n7rXLeKo28a3Rxiyg9MQBoX7heX.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}], "release_date": "2009-10-23", "popularity": 0.580097703571641, "original_title": "Saw VI", "budget": 11000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw / John", "id": 2144, "credit_id": "52fe4450c3a368484e01c18f", "cast_id": 3, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Costas Mandylor", "character": "Hoffman", "id": 36055, "credit_id": "52fe4450c3a368484e01c193", "cast_id": 4, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 1}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "52fe4450c3a368484e01c197", "cast_id": 5, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 2}, {"name": "Mark Rolston", "character": "Erickson", "id": 6576, "credit_id": "52fe4450c3a368484e01c19b", "cast_id": 6, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 3}, {"name": "Peter Outerbridge", "character": "William", "id": 12978, "credit_id": "52fe4450c3a368484e01c19f", "cast_id": 7, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 4}, {"name": "Shawnee Smith", "character": "Amanda", "id": 2138, "credit_id": "52fe4450c3a368484e01c1a3", "cast_id": 8, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 5}, {"name": "George Newbern", "character": "Harold", "id": 59222, "credit_id": "52fe4450c3a368484e01c1a7", "cast_id": 9, "profile_path": "/48Ouqe1g8QrZ6qjvap5NvhfKuly.jpg", "order": 6}, {"name": "James Gilbert", "character": "Aaron", "id": 268743, "credit_id": "52fe4450c3a368484e01c1ab", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Athena Karkanis", "character": "Agent Perez", "id": 51037, "credit_id": "54c6da8392514167940005c1", "cast_id": 21, "profile_path": "/jy7XvLoZDcO2iHMzxtntHNXXRd0.jpg", "order": 8}, {"name": "Tanedra Howard", "character": "Simone", "id": 1241157, "credit_id": "54c6da99c3a36874b0000592", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Kevin Greutert", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a368484e01c185", "profile_path": "/ffijXhDTs8Up2YQyKRQFIjk5fwc.jpg", "id": 2150}], "vote_average": 5.9, "runtime": 90}, "102780": {"poster_path": "/xUbV45dXe0cASV6qxubs2snHejI.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85252, "overview": "Two mysterious women seek refuge in a run-down coastal resort. Clara meets lonely Noel, who provides shelter in his deserted guesthouse, Byzantium. Schoolgirl Eleanor befriends Frank and tells him their lethal secret. They were born 200 years ago and survive on human blood. As knowledge of their secret spreads, their past catches up on them with deathly consequence.", "video": false, "id": 102780, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Byzantium", "tagline": "Irresistible. Immoral. Immortal.", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1531901", "adult": false, "backdrop_path": "/gE9KKg3xahfQoccYkgp25HqAvSr.jpg", "production_companies": [{"name": "WestEnd Films", "id": 20782}, {"name": "Demarest Films", "id": 13241}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Number 9 Films", "id": 11752}, {"name": "Parallel Film Productions", "id": 16486}, {"name": "Irish Film Board", "id": 5267}], "release_date": "2013-05-30", "popularity": 1.05059166102235, "original_title": "Byzantium", "budget": 8000000, "cast": [{"name": "Saoirse Ronan", "character": "Eleanor Webb", "id": 36592, "credit_id": "52fe4a10c3a36847f81b6da3", "cast_id": 3, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Clara Webb", "id": 59620, "credit_id": "52fe4a10c3a36847f81b6da7", "cast_id": 4, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Sam Riley", "character": "Darvell", "id": 32987, "credit_id": "52fe4a10c3a36847f81b6db1", "cast_id": 7, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 2}, {"name": "Caleb Landry Jones", "character": "Frank", "id": 572541, "credit_id": "52fe4a10c3a36847f81b6db5", "cast_id": 9, "profile_path": "/73T6DLPggbDaIDLz162o01dCg6I.jpg", "order": 3}, {"name": "Daniel Mays", "character": "Noel", "id": 1670, "credit_id": "52fe4a10c3a36847f81b6db9", "cast_id": 10, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 4}, {"name": "Warren Brown", "character": "Gareth", "id": 211521, "credit_id": "52fe4a10c3a36847f81b6dc3", "cast_id": 12, "profile_path": "/oDs6F2vYAo7aY65WVNt74OJWwmt.jpg", "order": 5}, {"name": "Thure Lindhardt", "character": "Werner", "id": 20258, "credit_id": "52fe4a10c3a36847f81b6dc7", "cast_id": 13, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 6}, {"name": "Barry Cassin", "character": "Robert Fowlds", "id": 1186012, "credit_id": "52fe4a10c3a36847f81b6dcb", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "David Heap", "character": "Lap Dancing Client", "id": 188437, "credit_id": "52fe4a10c3a36847f81b6dcf", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Ruby Snape", "character": "Wendy", "id": 1186013, "credit_id": "52fe4a10c3a36847f81b6dd3", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jenny Kavanagh", "character": "Barmaid", "id": 1186014, "credit_id": "52fe4a10c3a36847f81b6dd7", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Glenn Doherty", "character": "Steve", "id": 549567, "credit_id": "52fe4a10c3a36847f81b6ddb", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Edyta Budnik", "character": "Nadia", "id": 1168076, "credit_id": "52fe4a10c3a36847f81b6ddf", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Gabriela Marcinkova", "character": "Anya", "id": 937219, "credit_id": "52fe4a10c3a36847f81b6de3", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Uri Gavriel", "character": "Savella", "id": 145313, "credit_id": "52fe4a10c3a36847f81b6de7", "cast_id": 22, "profile_path": "/dfQQUOj5kbboElu6676OXLqAeju.jpg", "order": 14}, {"name": "Christine Marzano", "character": "Mrs. Strange", "id": 1170656, "credit_id": "53aa891e0e0a2646d800339e", "cast_id": 38, "profile_path": "/kyPcf8uN1BC6bYNXh1NLK71QNWl.jpg", "order": 15}, {"name": "Kate Ashfield", "character": "Gabi", "id": 11110, "credit_id": "53aa89400e0a2646c2001536", "cast_id": 39, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 16}, {"name": "Jeff Mash", "character": "Mark", "id": 1140091, "credit_id": "53aa89950e0a2646c200153f", "cast_id": 40, "profile_path": "/9CfRm0zsWztCSDo1QiBu0slIr98.jpg", "order": 17}, {"name": "Maria Doyle Kennedy", "character": "Morag", "id": 33394, "credit_id": "53aa89ce0e0a2646d80033a8", "cast_id": 41, "profile_path": "/t7wdC2MGTXEmvJ2LL42j6u6EIcG.jpg", "order": 18}], "directors": [{"name": "Neil Jordan", "department": "Directing", "job": "Director", "credit_id": "52fe4a10c3a36847f81b6d99", "profile_path": "/4OWdIhT5gcfcHoBUzGL7E8tu9T1.jpg", "id": 17016}], "vote_average": 5.6, "runtime": 118}, "14620": {"poster_path": "/nw0qNvyIGiGMvQOTNpxYeERyCn8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After his girlfriend, Julie (Erica Durance), and two best friends are killed in a tragic auto accident, Nick (Eric Lively) struggles to cope with his loss and grief. Suffering from migraine-like seizures, Nick soon discovers that he has the power to change the past via his memories. However, his time-traveling attempts to alter the past and save his one true love have unexpected and dire consequen", "video": false, "id": 14620, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Butterfly Effect 2", "tagline": "Can you change your past without destroying your future?", "vote_count": 65, "homepage": "http://www.newline.com/properties/butterflyeffect2the.html", "belongs_to_collection": {"backdrop_path": "/bj0jcRYfap4gcI2VsThUMYV2ZAG.jpg", "poster_path": "/2kzjiPuc8pOXreeDQWtskp8QtdU.jpg", "id": 52749, "name": "The Butterfly Effect Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457297", "adult": false, "backdrop_path": "/5BNh4agStvdhbGQdR774LwmlIS5.jpg", "production_companies": [{"name": "BenderSpink", "id": 6363}, {"name": "New Line Cinema", "id": 12}, {"name": "FilmEngine", "id": 816}], "release_date": "2006-10-10", "popularity": 0.614538463463288, "original_title": "The Butterfly Effect 2", "budget": 0, "cast": [{"name": "Eric Lively", "character": "Nick Larson", "id": 53116, "credit_id": "52fe46089251416c7506aced", "cast_id": 8, "profile_path": "/wEl6qozyL6UrjsNcMmAG2T2r9n0.jpg", "order": 0}, {"name": "Erica Durance", "character": "Julie Miller", "id": 46897, "credit_id": "52fe46089251416c7506acf1", "cast_id": 9, "profile_path": "/rNadmNwfATIBboIzE9HGaeeBlVr.jpg", "order": 1}, {"name": "Dustin Milligan", "character": "Trevor Eastman", "id": 53117, "credit_id": "52fe46089251416c7506acf5", "cast_id": 10, "profile_path": "/yn0g5VpGYwuTcIl9BK5gc8bWXmg.jpg", "order": 2}, {"name": "Gina Holden", "character": "Amanda", "id": 33336, "credit_id": "52fe46089251416c7506acf9", "cast_id": 11, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 3}, {"name": "David Lewis", "character": "Dave Bristol", "id": 4095, "credit_id": "52fe46089251416c7506acfd", "cast_id": 12, "profile_path": "/jnQ7KVRV72fkBzU629XlUPsupTH.jpg", "order": 4}, {"name": "Andrew Airlie", "character": "Ron Callahan", "id": 41436, "credit_id": "52fe46089251416c7506ad01", "cast_id": 13, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 5}, {"name": "Chris Gauthier", "character": "Ted", "id": 53119, "credit_id": "52fe46089251416c7506ad05", "cast_id": 14, "profile_path": "/tzXtw8Mwdfv5Ofy6U9l27YZjZ0v.jpg", "order": 6}, {"name": "Susan Hogan", "character": "Katherine Larson", "id": 71763, "credit_id": "52fe46089251416c7506ad09", "cast_id": 15, "profile_path": "/sBt0r86BsJE3rzxPIIqByfdC8gM.jpg", "order": 7}, {"name": "J. R. Bourne", "character": "Malcolm Williams", "id": 62911, "credit_id": "52fe46089251416c7506ad0d", "cast_id": 16, "profile_path": "/wb1t1dHDk4UkNAjRCeHtuKmC5ra.jpg", "order": 8}, {"name": "Lindsay Maxwell", "character": "Grace Callahan", "id": 53118, "credit_id": "52fe46089251416c7506ad11", "cast_id": 17, "profile_path": "/vjCVmfBl4bEFEpvQaEenCyxLvcS.jpg", "order": 9}, {"name": "Zoran Vukelic", "character": "Christopher", "id": 173059, "credit_id": "53aa84c50e0a2646c500171b", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Jerry Wasserman", "character": "Alberto Fuentes", "id": 21091, "credit_id": "53aa84f20e0a2646c20014e4", "cast_id": 34, "profile_path": "/wNIZZXmI0LMnf2231auSExQz7FT.jpg", "order": 11}, {"name": "John Mann", "character": "Wayne", "id": 12367, "credit_id": "53aa85390e0a2646cc00157d", "cast_id": 35, "profile_path": "/ivL5otVmV67DTunWgaXPGQYZbK4.jpg", "order": 12}, {"name": "Veena Sood", "character": "Nurse", "id": 63563, "credit_id": "53aa857c0e0a2646c5001732", "cast_id": 36, "profile_path": null, "order": 13}], "directors": [{"name": "John R. Leonetti", "department": "Directing", "job": "Director", "credit_id": "52fe46089251416c7506accb", "profile_path": "/7cKC9u81p5OL5loj2PzjepPcjFV.jpg", "id": 26714}], "vote_average": 4.7, "runtime": 95}, "31011": {"poster_path": "/jxd2XSsnUHHUbo50nzVnVnHRPVJ.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Nemo Nobody leads an ordinary existence with his wife and 3 children; one day, he wakes up as a mortal centenarian in the year 2092.", "video": false, "id": 31011, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Mr. Nobody", "tagline": "Nothing is real, everything is possible.", "vote_count": 265, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0485947", "adult": false, "backdrop_path": "/r9jAdQDK1tYq2wlFPBJBH9UX5TX.jpg", "production_companies": [{"name": "Pan Europ\u00e9enne Production", "id": 796}, {"name": "Virtual Films", "id": 2366}], "release_date": "2009-09-11", "popularity": 0.801446097342229, "original_title": "Mr. Nobody", "budget": 47000000, "cast": [{"name": "Jared Leto", "character": "Nemo Nobody", "id": 7499, "credit_id": "52fe44559251416c9100d115", "cast_id": 2, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 0}, {"name": "Diane Kruger", "character": "Anna", "id": 9824, "credit_id": "52fe44559251416c9100d11f", "cast_id": 4, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "Linh Dan Pham", "character": "Jean", "id": 19115, "credit_id": "52fe44559251416c9100d123", "cast_id": 6, "profile_path": "/pkSbKTJupgoxQS5o8ErvYIEli0x.jpg", "order": 2}, {"name": "Sarah Polley", "character": "Elise", "id": 98, "credit_id": "52fe44559251416c9100d12f", "cast_id": 12, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Nemo's Father", "id": 7026, "credit_id": "52fe44559251416c9100d133", "cast_id": 13, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Natasha Little", "character": "Nemo's Mother", "id": 110581, "credit_id": "52fe44559251416c9100d137", "cast_id": 14, "profile_path": "/vpR1lI7Na56Ap3vB6BLAhLHs1cP.jpg", "order": 5}, {"name": "Toby Regbo", "character": "Nemo age 16", "id": 116606, "credit_id": "52fe44559251416c9100d127", "cast_id": 9, "profile_path": "/a8CuXhqdtjICxLNwm0yrydDo5Yy.jpg", "order": 6}, {"name": "Clare Stone", "character": "Elise age 15", "id": 129395, "credit_id": "52fe44559251416c9100d12b", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Juno Temple", "character": "Anna age 15", "id": 36594, "credit_id": "52fe44559251416c9100d13b", "cast_id": 15, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 8}, {"name": "Audrey Giacomini", "character": "Jean age 15", "id": 1335454, "credit_id": "53afde8bc3a3682edf004870", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Daniel Mays", "character": "Journalist", "id": 1670, "credit_id": "52fe44559251416c9100d13f", "cast_id": 16, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 10}, {"name": "Thomas Byrne", "character": "Nemo age 9", "id": 150543, "credit_id": "543c2b85c3a3681989005d19", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Laura Brumagne", "character": "Anna age 9", "id": 1373642, "credit_id": "543c2bbdc3a368198c0060bb", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Allan Corduner", "character": "Dr. Feldheim", "id": 78018, "credit_id": "543c2be20e0a2649ab006125", "cast_id": 21, "profile_path": "/t9w2Hi6DLMMXa4tVfnBWmW8ky71.jpg", "order": 13}, {"name": "Daniel Mays", "character": "Young Journalist", "id": 1670, "credit_id": "543c2c02c3a36819900061a2", "cast_id": 22, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 14}, {"name": "Daniel Mays", "character": "Harry", "id": 1670, "credit_id": "543c2c720e0a2649a5006251", "cast_id": 23, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 15}, {"name": "Harold Manning", "character": "TV Host", "id": 931304, "credit_id": "543c2c8e0e0a267283004f93", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Pascal Duquenne", "character": "Henry", "id": 534031, "credit_id": "543c2cc60e0a2649b2005f01", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "David Schaal", "character": "", "id": 137472, "credit_id": "543c2d21c3a368198c0060e6", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Laurent Capelluto", "character": "", "id": 228719, "credit_id": "543c2d39c3a36819a5005e1b", "cast_id": 27, "profile_path": "/fE6HK47D9rLnHwspIt27aCcFhz6.jpg", "order": 19}, {"name": "Harry Cleven", "character": "", "id": 1161618, "credit_id": "543c2d490e0a2649b6006458", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Andrew Simms", "character": "", "id": 190098, "credit_id": "543c2d65c3a36819a1006189", "cast_id": 29, "profile_path": "/cowTaScHEybfhneLfcJ0Ax7ux8A.jpg", "order": 21}, {"name": "Ben Mansfield", "character": "", "id": 220141, "credit_id": "543c2d7cc3a36819a100618e", "cast_id": 30, "profile_path": "/sjYazyor9CncGhYw0YTK7FfD3mO.jpg", "order": 22}], "directors": [{"name": "Jaco Van Dormael", "department": "Directing", "job": "Director", "credit_id": "52fe44559251416c9100d111", "profile_path": null, "id": 107490}], "vote_average": 7.6, "runtime": 141}, "22821": {"poster_path": "/hjU3caMd9O3h21e5kzJeUOAoy7h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10115258, "overview": "Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.", "video": false, "id": 22821, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Boondock Saints II: All Saints Day", "tagline": "The Saints Are Calling", "vote_count": 91, "homepage": "http://www.sonypictures.com/movies/boondocksaints2/", "belongs_to_collection": {"backdrop_path": "/9VUPq4aFG5VVTFGkv9z5pCD3GSn.jpg", "poster_path": "/u4hp2I1DgWw2ZnkX2VTZDixGP87.jpg", "id": 87186, "name": "The Boondock Saints Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1300851", "adult": false, "backdrop_path": "/cyoM4hIMHnIOWcLvfMlpmbpRer4.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Chris Brinker Productions", "id": 2461}], "release_date": "2009-11-24", "popularity": 0.606956287618101, "original_title": "The Boondock Saints II: All Saints Day", "budget": 8000000, "cast": [{"name": "Sean Patrick Flanery", "character": "Connor MacManus", "id": 54789, "credit_id": "52fe4450c3a368484e01c395", "cast_id": 3, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 0}, {"name": "Norman Reedus", "character": "Murphy MacManus", "id": 4886, "credit_id": "52fe4450c3a368484e01c399", "cast_id": 4, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 1}, {"name": "Billy Connolly", "character": "Poppa Il Duce", "id": 9188, "credit_id": "52fe4450c3a368484e01c3a1", "cast_id": 6, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 2}, {"name": "Clifton Collins, Jr.", "character": "Romeo", "id": 5365, "credit_id": "52fe4450c3a368484e01c3a5", "cast_id": 7, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 3}, {"name": "Julie Benz", "character": "Eunice Bloom", "id": 35551, "credit_id": "52fe4450c3a368484e01c391", "cast_id": 2, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 4}, {"name": "Peter Fonda", "character": "The Roman", "id": 8949, "credit_id": "52fe4450c3a368484e01c3a9", "cast_id": 8, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 5}, {"name": "Paul Johansson", "character": "Rick", "id": 73035, "credit_id": "52fe4451c3a368484e01c3ad", "cast_id": 9, "profile_path": "/2pSPtm9D6FsZqdza8OLH3GD9bvN.jpg", "order": 6}, {"name": "Judd Nelson", "character": "Concezio Yakavetta", "id": 21624, "credit_id": "52fe4451c3a368484e01c3b1", "cast_id": 10, "profile_path": "/6mwumgsKDEYy0F9GVdfw8TsNDHL.jpg", "order": 7}, {"name": "David Della Rocco", "character": "Rocco", "id": 54790, "credit_id": "52fe4450c3a368484e01c39d", "cast_id": 5, "profile_path": "/pgzIf45tq5R58K9ZWMlrAa9J62Z.jpg", "order": 8}, {"name": "Bob Marley", "character": "Detective Greenly", "id": 105776, "credit_id": "52fe4451c3a368484e01c3b5", "cast_id": 11, "profile_path": "/qtvL2i75yqBZ0kpUgbHfR11OVwG.jpg", "order": 9}, {"name": "Brian Mahoney", "character": "Detective Duffy", "id": 54792, "credit_id": "52fe4451c3a368484e01c3b9", "cast_id": 12, "profile_path": "/v6pTsqgOHE5TldFV63Kr44idQNe.jpg", "order": 10}, {"name": "David Ferry", "character": "Detective Dolly", "id": 54791, "credit_id": "52fe4451c3a368484e01c3bd", "cast_id": 13, "profile_path": "/bzz3Vx2QavSL6ODXDLubvFR3L54.jpg", "order": 11}, {"name": "Gerard Parkes", "character": "Doc", "id": 105777, "credit_id": "52fe4451c3a368484e01c3c1", "cast_id": 14, "profile_path": "/AgmAajLs8xJJdeCEe7OZa89XOr4.jpg", "order": 12}, {"name": "Richard Fitzpatrick", "character": "The Chief", "id": 44103, "credit_id": "52fe4451c3a368484e01c3c5", "cast_id": 15, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 13}, {"name": "Robert Mauriell", "character": "Louie", "id": 105778, "credit_id": "52fe4451c3a368484e01c3c9", "cast_id": 16, "profile_path": "/qoT5qLR642NQ4O2fHhTNOPPYfda.jpg", "order": 14}, {"name": "Willem Dafoe", "character": "Paul Smecker", "id": 5293, "credit_id": "52fe4451c3a368484e01c3d3", "cast_id": 18, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 15}, {"name": "Daniel DeSanto", "character": "Crew Cut", "id": 1212955, "credit_id": "54d28eaa9251413fcd0003de", "cast_id": 35, "profile_path": "/s40Uk5qXc5DA43jI7HJzrxNKAaR.jpg", "order": 16}, {"name": "Robb Wells", "character": "Jimmy the Gofer", "id": 60966, "credit_id": "54d296e5c3a3686abf00034e", "cast_id": 37, "profile_path": "/dMnez0ZRY63FP8LHhG2M9iFLqhM.jpg", "order": 18}, {"name": "Pedro Salv\u00edn", "character": "Uncle Cesar", "id": 185165, "credit_id": "54d298be9251413fd60004cf", "cast_id": 38, "profile_path": "/nlARMfccPSdkOleKmGT9jbyma13.jpg", "order": 19}, {"name": "Dwayne McLean", "character": "Father McKinney", "id": 200598, "credit_id": "54d29d23c3a3686ab9000531", "cast_id": 39, "profile_path": "/d23GNIBEg3Mbb3OrZsTiJviKSxD.jpg", "order": 20}, {"name": "Tom Barnett", "character": "Irish Gun Dealer", "id": 1224674, "credit_id": "54d29e769251413fc70005d3", "cast_id": 40, "profile_path": "/wYaR2hgl9mgOvgygR59c6WxqjCl.jpg", "order": 21}, {"name": "Bob Rubin", "character": "Gorgeous George", "id": 193939, "credit_id": "54d2a1bdc3a3686ab60009d7", "cast_id": 41, "profile_path": "/8Gk1fofqQQSYDb2paJUEE6GTrhf.jpg", "order": 22}, {"name": "Mairtin O'Carrigan", "character": "Father Sibeal", "id": 1045822, "credit_id": "54d2a36c9251413fc40004cb", "cast_id": 42, "profile_path": "/fEfZPewAN2ZfvPCh1x7j6KtXKzV.jpg", "order": 23}, {"name": "Sweeney MacArthur", "character": "Jacob McManus", "id": 1423212, "credit_id": "54d2a4bdc3a3686abc0004b3", "cast_id": 43, "profile_path": "/6oY0Doi1ipJzREgthnDZ3zMD4qv.jpg", "order": 24}, {"name": "Aaron Berg", "character": "Jo Jo Rhama", "id": 54200, "credit_id": "54d2a63e9251413fc1000549", "cast_id": 44, "profile_path": "/iGvsSJpPXrDxH6rvLIBNtCzDHwy.jpg", "order": 25}, {"name": "Joris Jarsky", "character": "Lloyd", "id": 76973, "credit_id": "54d2a6bb9251413fc40004ff", "cast_id": 45, "profile_path": "/mtzNrX8Z0WYbtot82o4gM3FDqYa.jpg", "order": 26}, {"name": "Zachary Bennett", "character": "Roy", "id": 5918, "credit_id": "54d2a7749251413fc1000564", "cast_id": 46, "profile_path": "/iI6iexASIXzF9OQeX0QxYoP1kkB.jpg", "order": 27}, {"name": "Erika Bruun-Andersen", "character": "Massage Therapist", "id": 1042709, "credit_id": "54d2a924c3a3686ac8000474", "cast_id": 47, "profile_path": "/n8kmltFIkeyaUoIEl3A5UwT5Upg.jpg", "order": 28}, {"name": "Matthew Chaffee", "character": "Officer Chaffey", "id": 1287890, "credit_id": "54d2aac2c3a3686ac8000488", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Carlo Berardinucci", "character": "50's Mafioso", "id": 1423219, "credit_id": "54d2abe49251413fc10005c0", "cast_id": 49, "profile_path": "/66KxpkTKNQlG313Sspg2HFV6Xe8.jpg", "order": 30}, {"name": "Joe Parro", "character": "50's Mafioso", "id": 1423376, "credit_id": "54d33e2f9251413fca00289f", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Joseph Di Mambro", "character": "50's Thug", "id": 180871, "credit_id": "54d3414d92514109ba002667", "cast_id": 51, "profile_path": "/12yf1ZPBxHazIky2CPRuzU8IOxm.jpg", "order": 32}, {"name": "Philip Bucceri", "character": "50's Thug", "id": 1423386, "credit_id": "54d34216c3a3686ac8002941", "cast_id": 52, "profile_path": "/AlRvMieYcPOvOFUu2mbaxbhzkP7.jpg", "order": 33}, {"name": "Tony Munch", "character": "50's Thug", "id": 5927, "credit_id": "54d344da9251413fd6003096", "cast_id": 53, "profile_path": "/1VaMaAImwDWAjzKbrn8T1prnOdf.jpg", "order": 34}, {"name": "Matthew G. Taylor", "character": "Giant", "id": 59198, "credit_id": "54d3467892514109ba00275b", "cast_id": 54, "profile_path": "/il8bIgN6sANpmMSohJGvpNbeN8A.jpg", "order": 35}, {"name": "Paul De La Rosa", "character": "Cab Driver", "id": 1423391, "credit_id": "54d347479251413fc10030a3", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Paulino Nunes", "character": "Capo", "id": 1233146, "credit_id": "54d34825c3a3686ac2002998", "cast_id": 56, "profile_path": "/ixxEYcNGo0UyBUQdj3YsZ85OTTV.jpg", "order": 37}, {"name": "A. Frank Ruffo", "character": "Capo", "id": 1423398, "credit_id": "54d349849251413fcd003068", "cast_id": 57, "profile_path": "/ytM7LXVQMpbG4aZw7ThiTCno9cN.jpg", "order": 38}, {"name": "Stefano DiMatteo", "character": "Capo", "id": 224309, "credit_id": "54d356739251413fd30031ce", "cast_id": 58, "profile_path": "/7kuOp3Yqm1ADFqQR0ZNXDjisoCA.jpg", "order": 39}, {"name": "Marco Bianco", "character": "Capo", "id": 8356, "credit_id": "54d358999251410963002b5b", "cast_id": 59, "profile_path": "/sm9ZVJnC5m1z6GZ8DLEyxGQ1OGy.jpg", "order": 40}, {"name": "Paul Rapovski", "character": "Capo", "id": 28242, "credit_id": "54d35bfcc3a3686ab90037b5", "cast_id": 60, "profile_path": "/1hjxQcz3Fr1vz1FkTESAN2j7kC0.jpg", "order": 41}, {"name": "Santino Buda", "character": "Capo", "id": 1396708, "credit_id": "54d35e0e9251413fca003326", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Jeremy Wright", "character": "Dock Worker", "id": 1244111, "credit_id": "54d35eac9251413fc400328a", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Darryl Flatman", "character": "G-Man", "id": 1423450, "credit_id": "54d35fe19251410963002c51", "cast_id": 63, "profile_path": "/fU9pJXqcVTKwiZwYqt67ShMGN3q.jpg", "order": 44}, {"name": "Darryl Pring", "character": "Hot Dog Vendor", "id": 1423451, "credit_id": "54d361a79251413fc10034da", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Rolando Alvarez Giacoman", "character": "Mexican Seaman", "id": 1423453, "credit_id": "54d3669dc3a3686ab9003903", "cast_id": 65, "profile_path": "/6Mrqk280ZALRpGeUctzpfEUyE3X.jpg", "order": 46}, {"name": "Brad Davis", "character": "North Side Bruglione", "id": 1423454, "credit_id": "54d368a09251413fcd0034d3", "cast_id": 66, "profile_path": "/30tMJEaUfos586IIGCdg9vVVASm.jpg", "order": 47}, {"name": "Ermes Blarasin", "character": "North Side Bruglione", "id": 1423458, "credit_id": "54d36c2b9251413fd3003482", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Flint Eagle", "character": "North Side Bruglione", "id": 216224, "credit_id": "54d36dd4c3a3686ab90039f4", "cast_id": 68, "profile_path": "/flPFEezO4VPaZuRyHF99S4Jc8Co.jpg", "order": 49}, {"name": "Brian Frank", "character": "North Side Bruglione", "id": 100464, "credit_id": "54d36f0dc3a3686ab6003f04", "cast_id": 69, "profile_path": null, "order": 50}, {"name": "Steve 'Shack' Shackleton", "character": "North Side Bruglione", "id": 1423459, "credit_id": "54d36ff5c3a3686ac8002f3d", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Brendan Wall", "character": "North Side Bruglione", "id": 59602, "credit_id": "54d371f8c3a3686ac2002f1d", "cast_id": 71, "profile_path": "/h2csRawwCKv7AyRbCNOiauIfDqd.jpg", "order": 52}, {"name": "Shamus Fynes", "character": "Police Officer", "id": 1423460, "credit_id": "54d372919251413fca0035a5", "cast_id": 72, "profile_path": "/4csc1l4VYczTCW7qaLth809tsJz.jpg", "order": 53}, {"name": "Louis Di Bianco", "character": "Patronazzi", "id": 1225378, "credit_id": "54d3781c9251413fc40035ba", "cast_id": 73, "profile_path": "/gaxG4eAg4nZ54fXNpVSTGoHidOQ.jpg", "order": 54}, {"name": "Louis Di Bianco", "character": "Pedestrian", "id": 1225378, "credit_id": "54d379ae9251413fca0036b4", "cast_id": 74, "profile_path": "/gaxG4eAg4nZ54fXNpVSTGoHidOQ.jpg", "order": 55}, {"name": "George Nickolas K.", "character": "Pedestrian", "id": 1423473, "credit_id": "54d37a279251413fcd0036fc", "cast_id": 75, "profile_path": "/3aOl9rU1q9bfsU0XTRMhugd7hKK.jpg", "order": 56}, {"name": "Howard Hoover", "character": "Reporter #1", "id": 1239425, "credit_id": "54d37c209251410963002fdd", "cast_id": 76, "profile_path": "/A0AWlSRvgJ7Kq64nIMeFi551Ij.jpg", "order": 57}, {"name": "Joey Amorosino", "character": "Reporter #2", "id": 1423474, "credit_id": "54d37d2ec3a368616e003063", "cast_id": 77, "profile_path": "/4mzfCpH4lhHXM3ZEFIUU3fl96m1.jpg", "order": 58}, {"name": "Mark Stables", "character": "Prison Guard", "id": 1423475, "credit_id": "54d37e4ac3a3686ab9003c8c", "cast_id": 78, "profile_path": null, "order": 59}, {"name": "Jerry Azzopardi", "character": "FBI Agent", "id": 1423476, "credit_id": "54d37ee1c3a3686ab9003cb5", "cast_id": 79, "profile_path": null, "order": 60}, {"name": "Brendan Carmody", "character": "Thug in the Woods", "id": 1423477, "credit_id": "54d37f7292514109ba002f5b", "cast_id": 80, "profile_path": null, "order": 61}, {"name": "Scott Savitz", "character": "Street Interviewee", "id": 1423478, "credit_id": "54d37ff19251413fc40036be", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Paul Joyce", "character": "Street Interviewee", "id": 1423479, "credit_id": "54d3807bc3a3686abc0038b9", "cast_id": 82, "profile_path": null, "order": 63}, {"name": "John Herman", "character": "Street Interviewee", "id": 1423480, "credit_id": "54d380f29251413fc10038ec", "cast_id": 83, "profile_path": null, "order": 64}, {"name": "Kara Apostolica", "character": "Street Interviewee", "id": 1423481, "credit_id": "54d3813bc3a3686abf0039b1", "cast_id": 84, "profile_path": null, "order": 65}, {"name": "Kimberly Tuscano", "character": "Street Interviewee", "id": 1423482, "credit_id": "54d38197c3a3686ab9003d0a", "cast_id": 85, "profile_path": null, "order": 66}], "directors": [{"name": "Troy Duffy", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a368484e01c38d", "profile_path": "/2Rsz5SXZruHG5LqswvEeD62pXLl.jpg", "id": 54795}], "vote_average": 6.0, "runtime": 118}, "22824": {"poster_path": "/wrCL8WQdyYR7wbmAqXyJZ1xK0WK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42333295, "overview": "A thriller involving an ongoing unsolved mystery in Alaska, where one town has seen an extraordinary number of unexplained disappearances during the past 40 years and there are accusations of a federal cover up.", "video": false, "id": 22824, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Fourth Kind", "tagline": "There are four kinds of alien encounters. The fourth kind is abduction.", "vote_count": 122, "homepage": "http://www.thefourthkind.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1220198", "adult": false, "backdrop_path": "/zPGo5CVwkiLqMyDpR3hcrbLv17M.jpg", "production_companies": [{"name": "Dead Crow Productions", "id": 26082}, {"name": "Universal Pictures", "id": 33}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Chambara Pictures", "id": 12234}, {"name": "Focus Films", "id": 49799}, {"name": "Saga Film", "id": 859}], "release_date": "2009-11-06", "popularity": 0.383625730256691, "original_title": "The Fourth Kind", "budget": 10000000, "cast": [{"name": "Milla Jovovich", "character": "Abbey", "id": 63, "credit_id": "52fe4451c3a368484e01c4f9", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Will Patton", "character": "Sheriff August", "id": 883, "credit_id": "52fe4451c3a368484e01c503", "cast_id": 3, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 1}, {"name": "Hakeem Kae-Kazim", "character": "Awolowa Odusami", "id": 2603, "credit_id": "52fe4451c3a368484e01c507", "cast_id": 4, "profile_path": "/cYHDYQbnvju1g8XIAnvwRr0bWSB.jpg", "order": 2}, {"name": "Corey Johnson", "character": "Tommy Fisher", "id": 17199, "credit_id": "52fe4451c3a368484e01c50b", "cast_id": 5, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 3}, {"name": "Enzo Cilenti", "character": "Scott Stracinsky", "id": 91494, "credit_id": "52fe4451c3a368484e01c50f", "cast_id": 6, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Abel Campos", "id": 13550, "credit_id": "52fe4451c3a368484e01c513", "cast_id": 7, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Eric Loren", "character": "Deputy Ryan", "id": 113235, "credit_id": "52fe4451c3a368484e01c517", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Mia McKenna-Bruce", "character": "Ashley Tyler", "id": 113236, "credit_id": "52fe4451c3a368484e01c51b", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Rapha\u00ebl Coleman", "character": "Ronnie Tyler", "id": 89827, "credit_id": "52fe4451c3a368484e01c51f", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Daphne Alexander", "character": "Theresa", "id": 84068, "credit_id": "52fe4451c3a368484e01c523", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Alisha Seaton", "character": "Cindy Stracinski", "id": 113237, "credit_id": "52fe4451c3a368484e01c527", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Tyne Rafaeli", "character": "Sarah Fisher", "id": 113238, "credit_id": "52fe4451c3a368484e01c52b", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Pavel Stefanov", "character": "Timothy Fisher", "id": 113239, "credit_id": "52fe4451c3a368484e01c52f", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Kiera McMaster", "character": "Joe Fisher", "id": 113240, "credit_id": "52fe4451c3a368484e01c533", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Sara Houghton", "character": "Jessica", "id": 113241, "credit_id": "52fe4451c3a368484e01c537", "cast_id": 16, "profile_path": null, "order": 14}], "directors": [{"name": "Olatunde Osunsanmi", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a368484e01c4ff", "profile_path": null, "id": 62367}], "vote_average": 6.0, "runtime": 98}, "22825": {"poster_path": "/1zinhNzY0okQVD1aZBZyrLffugu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33333531, "overview": "Norma and Arthur Lewis, a suburban couple with a young child, receive a simple wooden box as a gift, which bears fatal and irrevocable consequences. A mysterious stranger delivers the message that the box promises to bestow upon its owner $1 million with the press of a button. However pressing this button will simultaneously cause the death of another human being somewhere in the world; someone they don't know. With just 24 hours to have the box in their possession, Norma and Arthur find themselves in the cross-hairs of a startling moral dilemma and must face the true nature of their humanity.", "video": false, "id": 22825, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Box", "tagline": "All you have to do is push the button.", "vote_count": 130, "homepage": "http://thebox-movie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0362478", "adult": false, "backdrop_path": "/mo3Uu6km5pV0iHPRuHjL57RwAvg.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Radar Pictures", "id": 14718}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Darko Entertainment", "id": 12622}, {"name": "Lin Pictures", "id": 2723}], "release_date": "2009-09-17", "popularity": 0.959514762954033, "original_title": "The Box", "budget": 16000000, "cast": [{"name": "Cameron Diaz", "character": "Norma Lewis", "id": 6941, "credit_id": "52fe4451c3a368484e01c56d", "cast_id": 2, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "James Marsden", "character": "Arthur Lewis", "id": 11006, "credit_id": "52fe4451c3a368484e01c571", "cast_id": 3, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Frank Langella", "character": "Arlington Steward", "id": 8924, "credit_id": "52fe4451c3a368484e01c575", "cast_id": 4, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 2}, {"name": "Michael Zegen", "character": "Garcin", "id": 80661, "credit_id": "52fe4451c3a368484e01c579", "cast_id": 5, "profile_path": "/cTe8u7HNzkQvuaY4spCU3KxKKdl.jpg", "order": 3}, {"name": "James Rebhorn", "character": "Norm Cahill", "id": 8986, "credit_id": "52fe4451c3a368484e01c589", "cast_id": 8, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 4}, {"name": "Holmes Osborne", "character": "Dick Burns", "id": 1578, "credit_id": "52fe4451c3a368484e01c58d", "cast_id": 9, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 5}, {"name": "Gillian Jacobs", "character": "Dana", "id": 94098, "credit_id": "52fe4451c3a368484e01c591", "cast_id": 10, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 6}, {"name": "Celia Weston", "character": "Lana Burns", "id": 1989, "credit_id": "52fe4451c3a368484e01c595", "cast_id": 11, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "Lisa K. Wyatt", "character": "Rhonda Martin", "id": 39127, "credit_id": "52fe4451c3a368484e01c599", "cast_id": 12, "profile_path": "/nuOyrbXXYPuu5IUhoIUVmkrpxQy.jpg", "order": 8}, {"name": "Michele Durrett", "character": "Rebecca Matheson", "id": 997207, "credit_id": "52fe4451c3a368484e01c59d", "cast_id": 13, "profile_path": "/8O8v5LWp1cCLjN88BcjhR2qObPX.jpg", "order": 9}, {"name": "Allyssa Brooke", "character": "Suzanne Weller", "id": 1263931, "credit_id": "52fe4451c3a368484e01c5a1", "cast_id": 14, "profile_path": "/yCQay1LQuECduAv2FyCShUZAU6d.jpg", "order": 10}, {"name": "Cheryl McMahon", "character": "Female 911 Operator", "id": 1263937, "credit_id": "52fe4451c3a368484e01c5a5", "cast_id": 15, "profile_path": "/bn3Q9sPp43MFbqwtZsNxNR4oEdF.jpg", "order": 11}, {"name": "Jenna Lamia", "character": "Diane Carnes", "id": 155595, "credit_id": "52fe4451c3a368484e01c5ad", "cast_id": 17, "profile_path": "/jUOQXfJIxeE2Ug9PXpX9dFYpR58.jpg", "order": 13}, {"name": "Jodie Brunelle", "character": "911 Operator", "id": 1264229, "credit_id": "52fe4451c3a368484e01c5b1", "cast_id": 18, "profile_path": "/693xPmSE5z9E5LUC45GurwpgGjl.jpg", "order": 14}, {"name": "Evelina Turen", "character": "Deborah Burns", "id": 1266054, "credit_id": "53f80dc4c3a368734c000843", "cast_id": 25, "profile_path": "/myOJDfPJuKz27qqKqzLDOHzHz1v.jpg", "order": 15}], "directors": [{"name": "Richard Kelly", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a368484e01c569", "profile_path": "/nHmIALlzcsSu7Uuc4kO34mFb7k2.jpg", "id": 1577}], "vote_average": 5.2, "runtime": 115}, "39210": {"poster_path": "/5K9XPLSIYDPz3zfyaLnxeIjiIFO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A hard-living Hollywood actor re-examines his life after his 11-year-old daughter surprises him with a visit.", "video": false, "id": 39210, "genres": [{"id": 18, "name": "Drama"}], "title": "Somewhere", "tagline": "", "vote_count": 55, "homepage": "http://www.scsomewhere.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1421051", "adult": false, "backdrop_path": "/7uExmIbSz5b5MfsuIqw2rgEOTZC.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Focus Features", "id": 10146}, {"name": "Path\u00e9!", "id": 35461}, {"name": "Tohokushinsha", "id": 51850}], "release_date": "2010-09-03", "popularity": 0.327784470555625, "original_title": "Somewhere", "budget": 8000000, "cast": [{"name": "Stephen Dorff", "character": "Johnny Marco", "id": 10822, "credit_id": "52fe47039251416c91067481", "cast_id": 5, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 0}, {"name": "Chris Pontius", "character": "Sammy", "id": 56586, "credit_id": "52fe47039251416c91067485", "cast_id": 6, "profile_path": "/xTgZUtr8Lw7iKVhAZXW87Nk5IuJ.jpg", "order": 1}, {"name": "Erin Wasson", "character": "Party Girl #1", "id": 147721, "credit_id": "52fe47039251416c91067489", "cast_id": 7, "profile_path": "/6SiaA7RtdRVIPlb6BTBNRR6KH0q.jpg", "order": 2}, {"name": "Alexandra Williams", "character": "Party Girl #2", "id": 147722, "credit_id": "52fe47039251416c9106748d", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Nathalie Fay", "character": "Party Girl #3", "id": 142375, "credit_id": "52fe47039251416c91067491", "cast_id": 9, "profile_path": "/iPxcnlMUgfT2bKmVOX4ZtM3WH1u.jpg", "order": 4}, {"name": "Kristina Shannon", "character": "Bambi", "id": 147723, "credit_id": "52fe47039251416c91067495", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Karissa Shannon", "character": "Cindy", "id": 147724, "credit_id": "52fe47039251416c91067499", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "John Prudhont", "character": "Chateau Patio Waiter", "id": 147725, "credit_id": "52fe47039251416c9106749d", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ruby Corley", "character": "Patio Girl", "id": 147726, "credit_id": "52fe47039251416c910674a1", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Angela Lindvall", "character": "Blonde in Mercedes", "id": 42158, "credit_id": "52fe47039251416c910674a5", "cast_id": 14, "profile_path": "/xp0U715ol7HUjBIgvaeYI93f4dm.jpg", "order": 9}, {"name": "Maryna Linchuk", "character": "Vampire Model", "id": 147727, "credit_id": "52fe47039251416c910674a9", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Meghan Collision", "character": "Vampire Model", "id": 147728, "credit_id": "52fe47039251416c910674ad", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Jessica Miller", "character": "Vampire Model", "id": 147729, "credit_id": "52fe47039251416c910674b1", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Elle Fanning", "character": "Cleo", "id": 18050, "credit_id": "52fe47039251416c910674b5", "cast_id": 18, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 13}, {"name": "Lala Sloatman", "character": "Layla", "id": 22072, "credit_id": "52fe47039251416c910674b9", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Eliza Coupe", "character": "Hotel Room Neighbor", "id": 210050, "credit_id": "52fe47039251416c910674c3", "cast_id": 21, "profile_path": "/nb6JlI2OxCDUwksjZ4PjqIHu3IN.jpg", "order": 15}, {"name": "Ellie Kemper", "character": "Claire", "id": 475512, "credit_id": "52fe47039251416c910674c7", "cast_id": 22, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 16}, {"name": "Michelle Monaghan", "character": "Rebecca", "id": 11705, "credit_id": "52fe47039251416c910674cb", "cast_id": 23, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 17}, {"name": "Laura Ramsey", "character": "Naked Blonde with Sailor Cap", "id": 51975, "credit_id": "52fe47039251416c910674cf", "cast_id": 24, "profile_path": "/4dRnDQ7FZu54ZtLXzWARGWvtStR.jpg", "order": 18}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe47039251416c9106747d", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 6.1, "runtime": 98}, "22832": {"poster_path": "/3A3zgkcEOj1z0qflSdvZhydCVBT.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60462347, "overview": "Ninja Assassin follows Raizo (Rain), one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.", "video": false, "id": 22832, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ninja Assassin", "tagline": "Fear not the weapon, but the hand that wields it.", "vote_count": 120, "homepage": "http://ninja-assassin-movie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1186367", "adult": false, "backdrop_path": "/kmKZVgUPqf9v4c0UitSZlDM3RPv.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2009-09-29", "popularity": 0.661378254629299, "original_title": "Ninja Assassin", "budget": 40000000, "cast": [{"name": "Rain", "character": "Raizo", "id": 112013, "credit_id": "52fe4451c3a368484e01c6b7", "cast_id": 5, "profile_path": "/7oLrI71PNp9iGwJkgr2Bq34t2Yt.jpg", "order": 0}, {"name": "Naomie Harris", "character": "Mika Coretti", "id": 2038, "credit_id": "52fe4451c3a368484e01c6ab", "cast_id": 2, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 1}, {"name": "Sung Kang", "character": "Hollywood", "id": 61697, "credit_id": "52fe4451c3a368484e01c6af", "cast_id": 3, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 2}, {"name": "Randall Duk Kim", "character": "Tattoo Master", "id": 9462, "credit_id": "52fe4451c3a368484e01c6b3", "cast_id": 4, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 3}, {"name": "Rick Yune", "character": "Takeshi", "id": 10883, "credit_id": "52fe4451c3a368484e01c6c1", "cast_id": 7, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 4}, {"name": "Yuki Iwamoto", "character": "Yakuza Couch", "id": 53174, "credit_id": "52fe4451c3a368484e01c6c5", "cast_id": 8, "profile_path": "/bUHh5Y6jvJdnMEIb8UmIh3V7hvz.jpg", "order": 5}, {"name": "Sho Kosugi", "character": "Ozunu", "id": 99846, "credit_id": "52fe4451c3a368484e01c6c9", "cast_id": 9, "profile_path": "/yE5fEGNVm7YSWaKXccA3WUB6tex.jpg", "order": 6}, {"name": "Ben Miles", "character": "Maslow", "id": 11280, "credit_id": "52fe4452c3a368484e01c6cd", "cast_id": 10, "profile_path": "/erYrlzzg8F85SqEqG1cRZ9Ftjkh.jpg", "order": 7}, {"name": "Linh Dan Pham", "character": "Pretty Ninja", "id": 19115, "credit_id": "52fe4452c3a368484e01c6d1", "cast_id": 11, "profile_path": "/pkSbKTJupgoxQS5o8ErvYIEli0x.jpg", "order": 8}, {"name": "Lee Joon", "character": "Teenage Raizo", "id": 1257963, "credit_id": "54f53c3ec3a368350000098e", "cast_id": 13, "profile_path": "/gXprVtHGQeDhLQIO0GP88gX8wkv.jpg", "order": 9}, {"name": "Jonathan Chan-Pensley", "character": "Yakuza Henchman", "id": 1086861, "credit_id": "54f53d0c9251412bb60009ad", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Ill-Young Kim", "character": "Yakuza Mohawk", "id": 46021, "credit_id": "54f53d68c3a36835000009b2", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Fang Yu", "character": "Laundromat Manager", "id": 1157287, "credit_id": "54f53e919251412ba20009fb", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Adriana Altaras", "character": "Landlady", "id": 46992, "credit_id": "54f53edec3a36834f3000894", "cast_id": 17, "profile_path": "/vxgyEQAE8OywnXOm1TAEjIZRRYv.jpg", "order": 13}, {"name": "Sh\u00f4 Kosugi", "character": "Ozunu", "id": 1434484, "credit_id": "54f53f049251412bb10009b6", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Kylie Goldstein", "character": "Young Kiriko", "id": 979342, "credit_id": "54f54042c3a36835000009fb", "cast_id": 19, "profile_path": "/wxtm2b6YrqCmlfC516peKZV8WOw.jpg", "order": 15}, {"name": "Sungwoong Yoon", "character": "Young Raizo", "id": 1434485, "credit_id": "54f540cbc3a36834f7000952", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Eleonore Weisgerber", "character": "Mrs. Sabatin", "id": 38621, "credit_id": "54f541069251412bb30009f0", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Wladimir Tarasjanz", "character": "Aleksei Sabatin", "id": 17060, "credit_id": "54f54144c3a3683500000a15", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Kai Fung Rieck", "character": "Teenage Takeshi", "id": 1434486, "credit_id": "54f5417d9251412bb60009fb", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Anna Sawai", "character": "Teenage Kiriko", "id": 1434487, "credit_id": "54f541a39251412ba2000a37", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Thorston Manderlay", "character": "Agent Zabranski", "id": 1434488, "credit_id": "54f541d29251412bb6000a09", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Richard van Weyden", "character": "Battuta", "id": 1186438, "credit_id": "54f5421b9251412bb6000a13", "cast_id": 26, "profile_path": "/pa6szaD0VrR2lI13Kpyfbl1U81i.jpg", "order": 22}, {"name": "Mina Ghousi", "character": "Kid with Envelope", "id": 1434489, "credit_id": "54f542439251412ba2000a4c", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Hans Hohlbein", "character": "Mika's Neighbor", "id": 147637, "credit_id": "54f5428e9251412ba40009e5", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Stephen Marcus", "character": "Kingpin", "id": 994, "credit_id": "54f542dfc3a36834f10009b2", "cast_id": 29, "profile_path": "/hG6deNAV6EWvhJ1EFEh4XjXzfNK.jpg", "order": 25}, {"name": "Nhi Ngoc Nguyen-Hermann", "character": "Girl on Roof", "id": 1434490, "credit_id": "54f5430dc3a36834ee000bd8", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "Guido F\u00f6hrwei\u00dfer", "character": "Lead Europol Agent", "id": 104246, "credit_id": "54f5436ac3a36834f30008df", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Tim Williams", "character": "Europol Cell Guard", "id": 141778, "credit_id": "54f543bec3a3683500000a4f", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "David Leitch", "character": "Europol Door Guard", "id": 40684, "credit_id": "54f5440cc3a36834f10009cb", "cast_id": 33, "profile_path": "/eVSgvAIsP6mwuVbbhVb4HkVvmsu.jpg", "order": 29}, {"name": "Wolfgang Stegemann", "character": "Europol Pointman", "id": 40738, "credit_id": "54f54440c3a36834f30008f7", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Steffen Groth", "character": "Europol Guard", "id": 6266, "credit_id": "54f5dc969251412ba4002595", "cast_id": 35, "profile_path": "/qM8tgZrfxP28PMbhZX7gl0mwf2m.jpg", "order": 31}, {"name": "Jens Neuhaus", "character": "Europol Guard", "id": 22705, "credit_id": "54f5dcd79251415ad5000003", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Patriq Pinheiro", "character": "Maslow's Aide", "id": 96226, "credit_id": "54f5dd0fc3a3686253000010", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Matthias Schendel", "character": "Task Force Agent", "id": 40729, "credit_id": "54f5dd439251415ad9000014", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Johannes Ahn", "character": "Medic", "id": 1327310, "credit_id": "54f5de3cc3a368624900001a", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Hoang Dang-Vu", "character": "(uncredited)", "id": 998518, "credit_id": "54f5de73c3a368624d000035", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Paul Leonard", "character": "Jamison (uncredited)", "id": 1278518, "credit_id": "54f5deb19251415ade00002e", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Alexander Yassin", "character": "Indonesian Shopman - Istanbul (uncredited)", "id": 147642, "credit_id": "54f5defec3a368625000003a", "cast_id": 42, "profile_path": null, "order": 38}], "directors": [{"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a368484e01c6a7", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 6.2, "runtime": 99}, "50780": {"poster_path": "/yE0GIDaivwfSgYAXpVLvq6DjngQ.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 970816, "overview": "Suffering from a severe case of depression, toy company CEO Walter Black (Mel Gibson) begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter (Anton Yelchin) pushes for his parents to get a divorce. Jodie Foster directs and co-stars as Walter's wife in this dark comedy that also features Riley Thomas Stewart and Jennifer Lawrence.", "video": false, "id": 50780, "genres": [{"id": 18, "name": "Drama"}], "title": "The Beaver", "tagline": "He's here to save Walter's life.", "vote_count": 72, "homepage": "http://www.thebeaver-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321860", "adult": false, "backdrop_path": "/cbEDtWCFs1wJ5w9waTC7fm1obAj.jpg", "production_companies": [], "release_date": "2011-05-05", "popularity": 0.484531508600462, "original_title": "The Beaver", "budget": 21000000, "cast": [{"name": "Jodie Foster", "character": "Meredith Black", "id": 1038, "credit_id": "52fe47d6c3a36847f814aea9", "cast_id": 6, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Mel Gibson", "character": "Walter Black", "id": 2461, "credit_id": "52fe47d6c3a36847f814aead", "cast_id": 7, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "Jennifer Lawrence", "character": "Norah", "id": 72129, "credit_id": "52fe47d6c3a36847f814aeb1", "cast_id": 8, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 2}, {"name": "Anton Yelchin", "character": "Porter Black", "id": 21028, "credit_id": "52fe47d6c3a36847f814aeb5", "cast_id": 9, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 3}], "directors": [{"name": "Jodie Foster", "department": "Directing", "job": "Director", "credit_id": "52fe47d6c3a36847f814aea5", "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "id": 1038}], "vote_average": 5.9, "runtime": 91}, "104755": {"poster_path": "/1McyfXZO1F0zfrpbqqz3DvvlZ73.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The City of Salem, Massachusetts is visited by a coven of ancient witches.", "video": false, "id": 104755, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Lords of Salem", "tagline": "We've been waiting... we've always been waiting", "vote_count": 52, "homepage": "http://robzombie.com/movies/the-lords-of-salem/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1731697", "adult": false, "backdrop_path": "/kCPm2YcsQWIlv6iGm0063FGk27n.jpg", "production_companies": [{"name": "Alliance Films", "id": 2514}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2013-04-19", "popularity": 0.426662361224303, "original_title": "The Lords of Salem", "budget": 1500000, "cast": [{"name": "Sheri Moon Zombie", "character": "Heidi Hawthrone", "id": 21319, "credit_id": "52fe4a3bc3a36847f81c2a17", "cast_id": 4, "profile_path": "/ecPGCsrhqwR6clWmtqtlS6ZFdY3.jpg", "order": 0}, {"name": "Bruce Davison", "character": "Francis Matthias", "id": 52374, "credit_id": "52fe4a3bc3a36847f81c2a4f", "cast_id": 19, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 1}, {"name": "Jeff Daniel Phillips", "character": "Herman Whitey Salvador", "id": 59673, "credit_id": "52fe4a3bc3a36847f81c2a59", "cast_id": 21, "profile_path": "/yNH9BgFV4bl58xbhvwys1bGJCNF.jpg", "order": 2}, {"name": "Judy Geeson", "character": "Lacy Doyle", "id": 41234, "credit_id": "52fe4a3bc3a36847f81c2a7d", "cast_id": 30, "profile_path": "/fgx6sg9NC9eNxaYT3vAWaxt6r9z.jpg", "order": 3}, {"name": "Meg Foster", "character": "Margaret Morgan", "id": 41229, "credit_id": "52fe4a3bc3a36847f81c2a4b", "cast_id": 16, "profile_path": "/j4byQmH2KqFUhFDYKOQCsLnOA9P.jpg", "order": 4}, {"name": "Patricia Quinn", "character": "Megan", "id": 13475, "credit_id": "52fe4a3bc3a36847f81c2a79", "cast_id": 29, "profile_path": "/bfcnDApPbMGN9F2SIgFeFPgUe59.jpg", "order": 5}, {"name": "Ken Foree", "character": "Herman Jackson", "id": 15070, "credit_id": "52fe4a3bc3a36847f81c2a5d", "cast_id": 22, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 6}, {"name": "Dee Wallace", "character": "Sonny", "id": 62001, "credit_id": "52fe4a3bc3a36847f81c2a1b", "cast_id": 7, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 7}, {"name": "Mar\u00eda Conchita Alonso", "character": "Alice Matthias", "id": 2051, "credit_id": "52fe4a3bc3a36847f81c2a1f", "cast_id": 8, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 8}, {"name": "Sid Haig", "character": "Dean Magnus", "id": 5695, "credit_id": "52fe4a3bc3a36847f81c2a13", "cast_id": 3, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 9}, {"name": "Michael Berryman", "character": "Virgil Magnus", "id": 7073, "credit_id": "52fe4a3bc3a36847f81c2a23", "cast_id": 9, "profile_path": "/vXvztwbkFc0Pz8ty0Jlaomo8P10.jpg", "order": 10}, {"name": "Barbara Crampton", "character": "Virginia Cable", "id": 27995, "credit_id": "52fe4a3bc3a36847f81c2a61", "cast_id": 23, "profile_path": "/5bQhuSrBSMyXP70SNOFim1Pf8Ta.jpg", "order": 11}, {"name": "Andrew Prine", "character": "Reverend Jonathan Hawthrone", "id": 15668, "credit_id": "52fe4a3bc3a36847f81c2a65", "cast_id": 24, "profile_path": "/qPN6Y0r9TbA8e8ZUFQd1x1OhG5M.jpg", "order": 12}, {"name": "Michael Shamus Wiles", "character": "Jarrett Perkins", "id": 9291, "credit_id": "52fe4a3bc3a36847f81c2a69", "cast_id": 25, "profile_path": "/upfSW6BGze446iqsZRehzcToNm8.jpg", "order": 13}, {"name": "Torsten Voges", "character": "Count Gorgann", "id": 1238, "credit_id": "52fe4a3bc3a36847f81c2a6d", "cast_id": 26, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 14}, {"name": "Suzanne Voss", "character": "Elizabeth Jacobs", "id": 986143, "credit_id": "52fe4a3bc3a36847f81c2a71", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Ernest Lee Thomas", "character": "Chip Freakshow McDonald", "id": 75356, "credit_id": "52fe4a3bc3a36847f81c2a75", "cast_id": 28, "profile_path": "/vaovo1tJis3Td7BZjWfT0MgLYGm.jpg", "order": 16}, {"name": "Lisa Marie", "character": "Priscilla Reed", "id": 4452, "credit_id": "52fe4a3bc3a36847f81c2a81", "cast_id": 31, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 17}, {"name": "Richard Fancy", "character": "AJ Kennedy", "id": 65748, "credit_id": "52fe4a3cc3a36847f81c2a85", "cast_id": 32, "profile_path": "/gqMB9kzTff3X42jhG8doZIftzTe.jpg", "order": 18}, {"name": "Maria Olsen", "character": "Dream Sequence Woman (uncredited)", "id": 142402, "credit_id": "55143f439251412c520014ed", "cast_id": 38, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 19}], "directors": [{"name": "Rob Zombie", "department": "Directing", "job": "Director", "credit_id": "52fe4a3bc3a36847f81c2a0f", "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "id": 16848}], "vote_average": 4.7, "runtime": 101}, "112949": {"poster_path": "/q5u3anNtsMoCFi1uwK2UfWHkOFt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97594140, "overview": "A young woman with a mysterious past lands in Southport, North Carolina where her bond with a widower forces her to confront the dark secret that haunts her.", "video": false, "id": 112949, "genres": [{"id": 10749, "name": "Romance"}], "title": "Safe Haven", "tagline": "You know it when you find it", "vote_count": 295, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1702439", "adult": false, "backdrop_path": "/rxWM3Jnb4sCmmyALeSwK6RlyooP.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Temple Hill Productions", "id": 722}], "release_date": "2013-02-14", "popularity": 1.16265633234089, "original_title": "Safe Haven", "budget": 28000000, "cast": [{"name": "Julianne Hough", "character": "Katie Feldman", "id": 143240, "credit_id": "52fe4b24c3a36847f81f4be3", "cast_id": 9, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Alex Wheatley", "id": 19536, "credit_id": "52fe4b24c3a36847f81f4be7", "cast_id": 10, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Cobie Smulders", "character": "Jo", "id": 71189, "credit_id": "52fe4b24c3a36847f81f4beb", "cast_id": 11, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 2}, {"name": "David Lyons", "character": "Kevin Tierney", "id": 76941, "credit_id": "52fe4b24c3a36847f81f4bef", "cast_id": 12, "profile_path": "/swz5FmdV35UpzwYJUbkUkJ2bvWM.jpg", "order": 3}, {"name": "Mike Pniewski", "character": "Lieutenant Robinson", "id": 65423, "credit_id": "52fe4b24c3a36847f81f4bf3", "cast_id": 13, "profile_path": "/6oJOSX84GXwuR9HA9RXTOeTeiKC.jpg", "order": 4}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4b24c3a36847f81f4bb5", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.5, "runtime": 115}, "22843": {"poster_path": "/odCtbDVJMxaqsTt4fIkM7UHZ8ta.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 36347110, "overview": "Under constant attack by monstrous creatures called Angels that seek to eradicate humankind, U.N. Special Agency NERV introduces two new EVA pilots to help defend the city of Tokyo-3: the mysterious Makinami Mari Illustrous and the intense Asuka Langley Shikinami. Meanwhile, Gendo Ikari and SEELE proceed with a secret project that involves both Rei and Shinji.", "video": false, "id": 22843, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Evangelion: 2.0 You Can (Not) Advance", "tagline": "In The War Between Heaven and Earth, Salvation is Machine", "vote_count": 54, "homepage": "http://www.evangelion.co.jp/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wTgffGYEuvYDc0oSOMdSZ254VMr.jpg", "id": 210303, "name": "Rebuild of Evangelion"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0860906", "adult": false, "backdrop_path": "/chD4psMHmbIpmFKKlgD5Yfh4eRn.jpg", "production_companies": [{"name": "Studio Khara", "id": 4145}], "release_date": "2009-06-26", "popularity": 0.561976396168697, "original_title": "Evangerion shin gekij\u00f4ban: Ha", "budget": 0, "cast": [{"name": "Megumi Ogata", "character": "Shinji Ikari", "id": 77927, "credit_id": "52fe4452c3a368484e01c779", "cast_id": 4, "profile_path": "/cPGrKRfVzfyhfoLlxGTGUd62bSp.jpg", "order": 0}, {"name": "Y\u016bko Miyamura", "character": "Asuka Langley Shikinami", "id": 83768, "credit_id": "52fe4452c3a368484e01c77d", "cast_id": 6, "profile_path": "/aXRz2l0YzDtiuJSTkKJPaeKdLNN.jpg", "order": 2}, {"name": "Kotono Mitsuishi", "character": "Misato Katsuragi", "id": 77931, "credit_id": "52fe4452c3a368484e01c781", "cast_id": 7, "profile_path": "/5yISpyXWjRlbfvPebO3iLc2s3tF.jpg", "order": 3}, {"name": "Maaya Sakamoto", "character": "Makinami Mari Illustrious", "id": 9711, "credit_id": "52fe4452c3a368484e01c785", "cast_id": 8, "profile_path": "/wEJDH3mzF4cLhUfNQKt8YfhpLjZ.jpg", "order": 4}, {"name": "Megumi Hayashibara", "character": "Rei Ayanami", "id": 40325, "credit_id": "52fe4452c3a368484e01c795", "cast_id": 12, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 5}], "directors": [{"name": "Masayuki", "department": "Directing", "job": "Director", "credit_id": "52fe4452c3a368484e01c76f", "profile_path": null, "id": 77926}, {"name": "Kazuya Tsurumaki", "department": "Directing", "job": "Director", "credit_id": "52fe4452c3a368484e01c775", "profile_path": null, "id": 77923}], "vote_average": 7.8, "runtime": 108}, "76170": {"poster_path": "/o1nFdxKfPE9EFP6lSweEn2mx1Oi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415440673, "overview": "Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.", "video": false, "id": 76170, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Wolverine", "tagline": "When he's most vulnerable, he's most dangerous.", "vote_count": 2045, "homepage": "http://www.thewolverinemovie.com", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430132", "adult": false, "backdrop_path": "/oFyaTmJ5ZPPl16uB4Ry9pWKvtDc.jpg", "production_companies": [{"name": "Ingenious Media", "id": 290}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Donners' Company", "id": 431}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Big Screen Productions", "id": 10893}, {"name": "TSG Entertainment", "id": 22213}], "release_date": "2013-07-25", "popularity": 0.632823235815675, "original_title": "The Wolverine", "budget": 120000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "536e7d3dc3a368122600ce7b", "cast_id": 37, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Tao Okamoto", "character": "Mariko", "id": 1156024, "credit_id": "52fe492ac3a368484e11d99b", "cast_id": 13, "profile_path": "/ahbByaizp6xLkakmTWebPC57v06.jpg", "order": 1}, {"name": "Rila Fukushima", "character": "Yukio", "id": 1179243, "credit_id": "52fe492ac3a368484e11d9a3", "cast_id": 15, "profile_path": "/AsxUTMScQetJ1Iommki98w3rHPH.jpg", "order": 2}, {"name": "Hiroyuki Sanada", "character": "Shingen", "id": 9195, "credit_id": "52fe492ac3a368484e11d9f7", "cast_id": 32, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 3}, {"name": "Svetlana Khodchenkova", "character": "Viper", "id": 94064, "credit_id": "52fe492ac3a368484e11d9b7", "cast_id": 21, "profile_path": "/jiWZn9daZUVYudPBsuQNQQAg0lT.jpg", "order": 4}, {"name": "Brian Tee", "character": "Noburo Mori", "id": 116278, "credit_id": "52fe492ac3a368484e11d993", "cast_id": 9, "profile_path": "/rKo9U4Swi0t4IqUKOU0bhl5BuiZ.jpg", "order": 5}, {"name": "Hal Yamanouchi", "character": "Yashida", "id": 74540, "credit_id": "52fe492ac3a368484e11d99f", "cast_id": 14, "profile_path": "/rP1dLPz5Sn4nSAXTco4sKioEvQZ.jpg", "order": 6}, {"name": "Will Yun Lee", "character": "Harada", "id": 10884, "credit_id": "52fe492ac3a368484e11d997", "cast_id": 10, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 7}, {"name": "Ken Yamamura", "character": "Young Yashida", "id": 1155715, "credit_id": "52fe492ac3a368484e11d9fb", "cast_id": 33, "profile_path": "/jDMgbLU3lziydK9HMS5yvARSPCH.jpg", "order": 8}, {"name": "Famke Janssen", "character": "Jean Grey", "id": 10696, "credit_id": "52fe492ac3a368484e11d9b3", "cast_id": 20, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 9}, {"name": "Shinji Ikefuji", "character": "Pock-Face", "id": 1205489, "credit_id": "52fe492ac3a368484e11d9ff", "cast_id": 34, "profile_path": "/6m1scLGa91uDDYBftdEcEOuXrAm.jpg", "order": 10}, {"name": "Qyoko Kudo", "character": "Aya", "id": 582605, "credit_id": "52fe492ac3a368484e11da03", "cast_id": 35, "profile_path": "/e96dopF0sitsB8LuiOCxbPYauTO.jpg", "order": 11}, {"name": "Conrad Coleby", "character": "Red Beard", "id": 109750, "credit_id": "52fe492ac3a368484e11da07", "cast_id": 36, "profile_path": "/dcDED1SEbsATHAH3Kav6tUDOnu0.jpg", "order": 12}, {"name": "Taris Tyler", "character": "Bar Man (Red Beard's Friend)", "id": 1320015, "credit_id": "537571d3c3a3681f040006e1", "cast_id": 38, "profile_path": null, "order": 13}, {"name": "Sarah Naylor-Liddell", "character": "Yukon Bar Patron", "id": 1320017, "credit_id": "53757216c3a3681ee900079f", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Ian McKellen", "character": "Magneto", "id": 1327, "credit_id": "548eb96792514122ff005fdd", "cast_id": 40, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 15}, {"name": "Patrick Stewart", "character": "Professor Xavier", "id": 2387, "credit_id": "548eb982c3a3684ea100604e", "cast_id": 41, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 16}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe492ac3a368484e11d989", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.4, "runtime": 126}, "87093": {"poster_path": "/z2tqzprHojhgEGYKQepjU28oQg6.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A drama centered on the awakening of the painter Margaret Keane, her phenomenal success in the 1950s, and the subsequent legal difficulties she had with her husband, who claimed credit for her works in the 1960s.", "video": false, "id": 87093, "genres": [{"id": 18, "name": "Drama"}], "title": "Big Eyes", "tagline": "She created it. He sold it. And they bought it.", "vote_count": 174, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1126590", "adult": false, "backdrop_path": "/urnGzQvP8fwWWGkn1k809KqIjbm.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Silverwood Films", "id": 2293}, {"name": "Electric City Entertainment", "id": 8600}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2014-12-25", "popularity": 3.0597133072398, "original_title": "Big Eyes", "budget": 10000000, "cast": [{"name": "Amy Adams", "character": "Margaret Keane", "id": 9273, "credit_id": "52fe49b59251416c910b6237", "cast_id": 8, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Christoph Waltz", "character": "Walter Keane", "id": 27319, "credit_id": "52fe49b59251416c910b623b", "cast_id": 9, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 1}, {"name": "Krysten Ritter", "character": "DeeAnn", "id": 78080, "credit_id": "52fe49b59251416c910b623f", "cast_id": 10, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 2}, {"name": "Danny Huston", "character": "Dick Nolan", "id": 6413, "credit_id": "52fe49b59251416c910b6243", "cast_id": 11, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Jason Schwartzman", "character": "Ruben", "id": 17881, "credit_id": "52fe49b59251416c910b6247", "cast_id": 12, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 4}, {"name": "Terence Stamp", "character": "John Canaday", "id": 28641, "credit_id": "52fe49b59251416c910b624b", "cast_id": 13, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 5}, {"name": "Jon Polito", "character": "Enrico Banducci", "id": 4253, "credit_id": "549d15069251413132005192", "cast_id": 24, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 6}, {"name": "Farryn VanHumbeck", "character": "Lily", "id": 1423419, "credit_id": "54d34fe79251413fca003145", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Emily Fonda", "character": "Sexy Girl", "id": 1411603, "credit_id": "54fb4e359251413aa0001ef8", "cast_id": 26, "profile_path": null, "order": 8}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe49b59251416c910b6251", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.6, "runtime": 105}, "6466": {"poster_path": "/smD9JEIKuvsllgjgrGTOzzbATeN.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114908830, "overview": "Evil dream-demon Freddy Krueger devises a plan to manipulate the unstoppable Jason Vorhees into hacking up the teenagers of Elm Street in an effort to make people remember the name Freddy Krueger, thus freeing him from limbo.", "video": false, "id": 6466, "genres": [{"id": 27, "name": "Horror"}], "title": "Freddy vs. Jason", "tagline": "Evil Will Battle Evil", "vote_count": 170, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329101", "adult": false, "backdrop_path": "/pHPi34ysBhhLVM9LVKwJ0nJPFqN.jpg", "production_companies": [{"name": "WTC Productions", "id": 50102}, {"name": "New Line Cinema", "id": 12}, {"name": "Cecchi Gori Group Tiger Cinematografica", "id": 371}, {"name": "Avery Pix", "id": 1565}, {"name": "Crystal Lake Entertainment", "id": 21783}], "release_date": "2003-08-15", "popularity": 0.753465869160725, "original_title": "Freddy vs. Jason", "budget": 30000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe4452c3a36847f808f493", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Ken Kirzinger", "character": "Jason Voorhees", "id": 50094, "credit_id": "52fe4452c3a36847f808f497", "cast_id": 2, "profile_path": "/g90jZeSii6OmNOlNoxGFwCb2spJ.jpg", "order": 1}, {"name": "Jason Ritter", "character": "Will Rollins", "id": 50095, "credit_id": "52fe4453c3a36847f808f49b", "cast_id": 3, "profile_path": "/ysWVNRFfk7oGngurF7VWkWhvyQS.jpg", "order": 2}, {"name": "Monica Keena", "character": "Lori Campbell", "id": 18315, "credit_id": "52fe4453c3a36847f808f49f", "cast_id": 4, "profile_path": "/26ed24koWQ6cjJHCGIllR2CE8Rj.jpg", "order": 3}, {"name": "Lochlyn Munro", "character": "Deputy Scott Stubbs", "id": 58058, "credit_id": "52fe4453c3a36847f808f4d9", "cast_id": 14, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 4}, {"name": "Kelly Rowland", "character": "Kia Waterson", "id": 93527, "credit_id": "52fe4453c3a36847f808f4dd", "cast_id": 15, "profile_path": "/myF0itbCUAzPHkjArAaYyMzpHc9.jpg", "order": 5}, {"name": "Chris Marquette", "character": "Charlie Linderman", "id": 59238, "credit_id": "52fe4453c3a36847f808f4e1", "cast_id": 16, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 6}, {"name": "Brendan Fletcher", "character": "Mark Davis", "id": 32205, "credit_id": "52fe4453c3a36847f808f4e5", "cast_id": 17, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 7}, {"name": "Katharine Isabelle", "character": "Gibb", "id": 27136, "credit_id": "52fe4453c3a36847f808f4e9", "cast_id": 18, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 8}, {"name": "Kyle Labine", "character": "Bill Freeburg", "id": 39353, "credit_id": "52fe4453c3a36847f808f4ed", "cast_id": 19, "profile_path": "/s4JEyQPl1Qoz7U39qGjW8h6Zz1m.jpg", "order": 9}, {"name": "Tom Butler", "character": "Dr. Campbell", "id": 85922, "credit_id": "52fe4453c3a36847f808f4f1", "cast_id": 20, "profile_path": "/25mdyFUsVexK1eTHBvlfd8GPmF0.jpg", "order": 10}, {"name": "David Kopp", "character": "Blake", "id": 89248, "credit_id": "54ba7735c3a3686c61006054", "cast_id": 26, "profile_path": "/qxFUuNHZuhRLdiPfg4QLY6jlsPQ.jpg", "order": 11}, {"name": "Paula Shaw", "character": "Mrs. Pamela Voorhees (Jason's Mother)", "id": 99841, "credit_id": "54ba78bdc3a3686c61006075", "cast_id": 27, "profile_path": "/bqVe6fyo0qtD5ra9KzLTcjm8tF0.jpg", "order": 12}, {"name": "Jesse Hutch", "character": "Trey", "id": 169469, "credit_id": "54ba795ec3a3686c61006082", "cast_id": 28, "profile_path": "/4ES1tgoPAcOecGkq10gHkkBcFBS.jpg", "order": 13}, {"name": "Zack Ward", "character": "Bobby Davis (Mark's Brother)", "id": 12714, "credit_id": "54ba7a01c3a36840460014a8", "cast_id": 29, "profile_path": "/fuWd404vjKvxBRZLX5y8iFFzHqT.jpg", "order": 14}, {"name": "Gary Chalk", "character": "Sheriff Williams", "id": 26089, "credit_id": "54ba7da2925141485900388e", "cast_id": 30, "profile_path": "/1estlif6pDM9uV7sgOsTU3WQeYw.jpg", "order": 15}, {"name": "Brent Chapman", "character": "Blake's Father", "id": 65811, "credit_id": "54ba80c1c3a368404600156c", "cast_id": 31, "profile_path": "/sE8GBHEV978jWYDIoAjSWuPHRaI.jpg", "order": 16}, {"name": "Spencer Stump", "character": "Young Jason Voorhees", "id": 1414721, "credit_id": "54badf8bc3a3684046001cb7", "cast_id": 32, "profile_path": "/tIun5nPGVQiU8xfovZY64E7Iuy7.jpg", "order": 17}, {"name": "Jo\u00eblle Antonissen", "character": "Little Girl", "id": 1414722, "credit_id": "54bae0d89251413635001988", "cast_id": 33, "profile_path": "/iAYj3kU2FI5Z1NhsByWyxLjdpxV.jpg", "order": 18}, {"name": "Alistair Abell", "character": "Officer Goodman", "id": 63797, "credit_id": "54bae2e092514148f0004077", "cast_id": 34, "profile_path": "/8NpOt0Tqszhg23oLPNZ1PTWV9zg.jpg", "order": 19}, {"name": "Robert Shaye", "character": "Principal Shaye", "id": 13663, "credit_id": "54bae3a59251411d77006c7a", "cast_id": 35, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 20}, {"name": "Chris Gauthier", "character": "Shack", "id": 53119, "credit_id": "54bae4729251411d77006c89", "cast_id": 36, "profile_path": "/tzXtw8Mwdfv5Ofy6U9l27YZjZ0v.jpg", "order": 21}, {"name": "Colby Johannson", "character": "Teammate", "id": 169510, "credit_id": "54bae56ac3a3683eeb001ade", "cast_id": 37, "profile_path": "/ytr983xMiU3LBVzhIVVcNAX7e1V.jpg", "order": 22}, {"name": "Kimberley Warnat", "character": "Beer Line Girl", "id": 102749, "credit_id": "54bae6939251411d6a007357", "cast_id": 38, "profile_path": "/fmyKAEHqF93IOTzMgkHf1VsIgU8.jpg", "order": 23}, {"name": "Kevin Hansen", "character": "Beer Line Guy", "id": 1414727, "credit_id": "54bae724c3a3683eeb001afa", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Alex Green", "character": "Frisell (Glowing Raver)", "id": 45429, "credit_id": "54bae93b92514148b0003f06", "cast_id": 40, "profile_path": "/afJvBeTr8CEgPcUimeM7onLxEFX.jpg", "order": 25}, {"name": "Odessa Munroe", "character": "Heather", "id": 1244171, "credit_id": "54baea8a92514148b0003f1b", "cast_id": 41, "profile_path": "/adSUmdy4q7UrpRU3shQmGhq5Ws6.jpg", "order": 26}, {"name": "Jamie Mayo", "character": "Dead Girl on Tree", "id": 1414735, "credit_id": "54baeae9c3a368145e0044e6", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Blake Mawson", "character": "Dead Boy on Tree", "id": 1414736, "credit_id": "54baebe79251411d79006b1c", "cast_id": 43, "profile_path": "/15gI9YEfdlHoqJKiZvSwzNOh7UZ.jpg", "order": 28}, {"name": "Viv Leacock", "character": "Kinsey Park (Male Nurse)", "id": 60601, "credit_id": "54baedd19251411d79006b4d", "cast_id": 44, "profile_path": "/65ey92fHi13NBpvFLSsm7GWAXRL.jpg", "order": 29}, {"name": "Tony Willett", "character": "Asylum Guard", "id": 1414738, "credit_id": "54baf028c3a3687c40000030", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Claire Riley", "character": "TV Reporter", "id": 1234350, "credit_id": "54baf1dbc3a3686c610069c4", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Sharon Peters", "character": "Lori's Mother", "id": 1414739, "credit_id": "54baf2889251411d77006d74", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Sarah-Anne Hepher", "character": "Skipping Girl", "id": 1414740, "credit_id": "54baf33792514148bd00433a", "cast_id": 48, "profile_path": null, "order": 33}, {"name": "Kirsti Forbes", "character": "Skipping Girl", "id": 1414741, "credit_id": "54baf3a592514148590040f3", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Taryn McCulloch", "character": "Skipping Girl", "id": 1414742, "credit_id": "54baf3e09251413635001ac1", "cast_id": 50, "profile_path": null, "order": 35}, {"name": "Eileen Pedde", "character": "School Nurse", "id": 52457, "credit_id": "54baf530c3a3686c6b00831f", "cast_id": 51, "profile_path": "/pPrvpJqNN0teedsj1A8f93KUmxk.jpg", "order": 36}, {"name": "Sean Tyler Foley", "character": "Male Counselor", "id": 1414745, "credit_id": "54baf5ef92514148bd00436f", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Jacqueline Stewart", "character": "Female Counselor", "id": 1414747, "credit_id": "54baf6f09251411d77006dc4", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Laura Boddington", "character": "Female Counselor", "id": 1414748, "credit_id": "54baf7b1c3a368145e0045ec", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Colton Shock", "character": "Cruel Child", "id": 1414749, "credit_id": "54baf8d6c3a3681411003e43", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Spencer Doduk", "character": "Cruel Child", "id": 1414750, "credit_id": "54baf9229251413635001b58", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Anysha Berthot", "character": "Cruel Child", "id": 1414751, "credit_id": "54baf97a9251416e9b000043", "cast_id": 57, "profile_path": null, "order": 42}], "directors": [{"name": "Ronny Yu", "department": "Directing", "job": "Director", "credit_id": "52fe4453c3a36847f808f4a5", "profile_path": "/ttF6ZrZFNznZr79wPSZWYKz2g3m.jpg", "id": 17268}], "vote_average": 5.8, "runtime": 97}, "1852": {"poster_path": "/hYbKIxMGqm0YaxGBYW52NbkYNAx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162945894, "overview": "On September, 11th 2001, after the terrorist attack to the World Trade Center, the building collapses over the rescue team from the Port Authority Police Department. Will Jimeno and his sergeant John McLoughlin are found alive trapped under the wreckage while the rescue teams fight to save them.", "video": false, "id": 1852, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "World Trade Center", "tagline": "The World Saw Evil That Day. Two Men Saw Something Else.", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0469641", "adult": false, "backdrop_path": "/qBPsdNP23qqHUE7niOgKSPNnUSO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Double Feature Films", "id": 215}, {"name": "Intermedia Films", "id": 763}, {"name": "Kernos Filmproduktionsgesellschaft & Company", "id": 20396}], "release_date": "2006-08-09", "popularity": 0.698617897441024, "original_title": "World Trade Center", "budget": 63000000, "cast": [{"name": "Nicolas Cage", "character": "John McLoughlin", "id": 2963, "credit_id": "52fe431bc3a36847f803a98b", "cast_id": 7, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Maria Bello", "character": "Donna McLoughlin", "id": 49, "credit_id": "52fe431bc3a36847f803a98f", "cast_id": 8, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 1}, {"name": "Maggie Gyllenhaal", "character": "Allison Jimeno", "id": 1579, "credit_id": "52fe431bc3a36847f803a993", "cast_id": 9, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Will Jimeno", "id": 454, "credit_id": "52fe431bc3a36847f803a997", "cast_id": 10, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Jay Hernandez", "character": "Dominick Pezzulo", "id": 19487, "credit_id": "52fe431bc3a36847f803a99b", "cast_id": 11, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 4}, {"name": "Danny Nucci", "character": "Officer Giraldi", "id": 8540, "credit_id": "52fe431bc3a36847f803a99f", "cast_id": 12, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 5}, {"name": "Michael Shannon", "character": "Dave Karnes", "id": 335, "credit_id": "52fe431bc3a36847f803a9a3", "cast_id": 13, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 6}, {"name": "Dorothy Lyman", "character": "Allison's Mother", "id": 19488, "credit_id": "52fe431bc3a36847f803a9a7", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Peter McRobbie", "character": "Allison's Father", "id": 19489, "credit_id": "52fe431bc3a36847f803a9ab", "cast_id": 15, "profile_path": "/kx0PjY89aGd3WX1Bf1zSw3lKYvg.jpg", "order": 8}, {"name": "Wass Stevens", "character": "Pat McLoughlin", "id": 19490, "credit_id": "52fe431bc3a36847f803a9af", "cast_id": 16, "profile_path": "/p9nrtklmbqBlpbnHMru246LXW4J.jpg", "order": 9}, {"name": "Stephen Dorff", "character": "Scott Strauss", "id": 10822, "credit_id": "52fe431bc3a36847f803a9b3", "cast_id": 17, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 10}, {"name": "Frank Whaley", "character": "Chuck Sereika", "id": 11805, "credit_id": "52fe431bc3a36847f803a9b7", "cast_id": 18, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 11}, {"name": "Stoney Westmoreland", "character": "Paddy McGee", "id": 19491, "credit_id": "52fe431bc3a36847f803a9bb", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Viola Davis", "character": "Mother in Hospital with Donna", "id": 19492, "credit_id": "52fe431bc3a36847f803a9bf", "cast_id": 20, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 13}, {"name": "Lola Cook", "character": "Olivia Jimeno", "id": 19493, "credit_id": "52fe431bc3a36847f803a9c3", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Connor Paolo", "character": "Steven McLoughlin", "id": 4738, "credit_id": "52fe431bc3a36847f803a9c7", "cast_id": 22, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 15}, {"name": "Anthony Piccininni", "character": "JJ McLoughlin", "id": 19494, "credit_id": "52fe431bc3a36847f803a9cb", "cast_id": 23, "profile_path": "/zWWtx8hYrKEKUzMEnbjvI7UzEF2.jpg", "order": 16}, {"name": "Alexa Gerasimovich", "character": "Erin McLoughlin", "id": 19495, "credit_id": "52fe431bc3a36847f803a9cf", "cast_id": 24, "profile_path": "/8sc37y1xlzCQJNdo0UVBD4hOcX7.jpg", "order": 17}, {"name": "Morgan Flynn", "character": "Caitlin McLoughlin", "id": 19496, "credit_id": "52fe431bc3a36847f803a9d3", "cast_id": 25, "profile_path": "/cJqIaWZ0dCoQxUQ1OrSlez6vtjj.jpg", "order": 18}, {"name": "Armando Riesco", "character": "Antonio Rodrigues", "id": 19497, "credit_id": "52fe431bc3a36847f803a9d7", "cast_id": 26, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 19}, {"name": "Jon Bernthal", "character": "Christopher Amoroso", "id": 19498, "credit_id": "52fe431bc3a36847f803a9db", "cast_id": 27, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 20}, {"name": "Jude Ciccolella", "character": "Inspector Fields", "id": 8693, "credit_id": "52fe431bc3a36847f803a9df", "cast_id": 28, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 21}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe431ac3a36847f803a969", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 5.7, "runtime": 128}, "6477": {"poster_path": "/sAt2yb4dgrpkHjbB9dQaKD9Caor.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361366633, "overview": "A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin, brainy Simon, and chubby, impressionable Theodore.", "video": false, "id": 6477, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Alvin and the Chipmunks", "tagline": "Get your squeak on!", "vote_count": 324, "homepage": "http://www.chipmunks.com", "belongs_to_collection": {"backdrop_path": "/qI483yHct3PBtIiOH3K3SVNUDq5.jpg", "poster_path": "/fLvRQcuk5ZFKnDvUC553XK3OnPC.jpg", "id": 167613, "name": "Alvin and the Chipmunks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0952640", "adult": false, "backdrop_path": "/9gm6655C6a3M6hJt0MQ180gmd8.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "Bagdasarian Productions", "id": 10930}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2007-12-13", "popularity": 1.17195462462039, "original_title": "Alvin and the Chipmunks", "budget": 60000000, "cast": [{"name": "Jason Lee", "character": "Dave (voice)", "id": 11662, "credit_id": "52fe4454c3a36847f808fac1", "cast_id": 19, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 0}, {"name": "David Cross", "character": "Ian (voice)", "id": 212, "credit_id": "52fe4454c3a36847f808fac5", "cast_id": 20, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 1}, {"name": "Cameron Richardson", "character": "Claire (voice)", "id": 49914, "credit_id": "52fe4454c3a36847f808fac9", "cast_id": 21, "profile_path": "/lPCQYDmuSWkEXpTsNLWuLpUVa2m.jpg", "order": 2}, {"name": "Jane Lynch", "character": "Gail (voice)", "id": 43775, "credit_id": "52fe4454c3a36847f808facd", "cast_id": 22, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 3}, {"name": "Justin Long", "character": "Alvin (voice)", "id": 15033, "credit_id": "52fe4454c3a36847f808fad1", "cast_id": 23, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 4}, {"name": "Matthew Gray Gubler", "character": "Simon (voice)", "id": 5661, "credit_id": "52fe4454c3a36847f808fad5", "cast_id": 24, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 5}, {"name": "Jesse McCartney", "character": "Theodore (voice)", "id": 49915, "credit_id": "52fe4454c3a36847f808fad9", "cast_id": 25, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 6}, {"name": "Veronica Alicino", "character": "Amy (voice)", "id": 49916, "credit_id": "52fe4454c3a36847f808fadd", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Allison Karman", "character": "Female Intern #1 (voice)", "id": 1080067, "credit_id": "52fe4454c3a36847f808fae1", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Tiara Parker", "character": "Female Intern #2 (voice)", "id": 208332, "credit_id": "52fe4454c3a36847f808fae5", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Kira Verrastro", "character": "Female Intern #3 (voice)", "id": 1080068, "credit_id": "52fe4454c3a36847f808fae9", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Beth Riesgraf", "character": "Mother in Store (voice)", "id": 46928, "credit_id": "52fe4454c3a36847f808faed", "cast_id": 30, "profile_path": "/x8Mr6UKn5CMw0w53SwHc08P3J9a.jpg", "order": 11}, {"name": "Adriane Lenox", "character": "Vet (voice)", "id": 53260, "credit_id": "52fe4454c3a36847f808faf1", "cast_id": 31, "profile_path": "/pVvBJyRhJtSAYKfDlrEeQ5GBiij.jpg", "order": 12}, {"name": "Don Tiffany", "character": "Engineer (voice)", "id": 159398, "credit_id": "52fe4454c3a36847f808faf5", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Frank Maharajh", "character": "Barry (voice)", "id": 120723, "credit_id": "52fe4454c3a36847f808faf9", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Kevin Symons", "character": "Ted (voice)", "id": 1228919, "credit_id": "52fe4454c3a36847f808fafd", "cast_id": 35, "profile_path": "/ai79pjcASGhSDrlwzB8l6xik91E.jpg", "order": 15}], "directors": [{"name": "Tim Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4454c3a36847f808fa57", "profile_path": "/jN6KyRKLoI1UgC1EnyAEYJ5uDYy.jpg", "id": 49903}], "vote_average": 5.4, "runtime": 92}, "6479": {"poster_path": "/pfvQ3kkSbFsIPC5exKPUf5nOf60.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 585349010, "overview": "Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.", "video": false, "id": 6479, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "I Am Legend", "tagline": "The last man on Earth is not alone", "vote_count": 1772, "homepage": "http://iamlegend.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480249", "adult": false, "backdrop_path": "/u6Qg7TH7Oh1IFWCQSRr4htFFt0A.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "Heyday Films", "id": 7364}, {"name": "Original Film", "id": 333}], "release_date": "2007-12-13", "popularity": 1.3865032858335, "original_title": "I Am Legend", "budget": 150000000, "cast": [{"name": "Will Smith", "character": "Robert Neville", "id": 2888, "credit_id": "52fe4455c3a36847f808fc19", "cast_id": 19, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Alice Braga", "character": "Anna Montez", "id": 8602, "credit_id": "52fe4455c3a36847f808fc1d", "cast_id": 20, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 2}, {"name": "Charlie Tahan", "character": "Ethan", "id": 49918, "credit_id": "52fe4455c3a36847f808fc21", "cast_id": 21, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 3}, {"name": "Salli Richardson-Whitfield", "character": "Zoe Neville", "id": 53918, "credit_id": "52fe4455c3a36847f808fc3f", "cast_id": 29, "profile_path": "/huQHvzHVULR965KGFcHSw9IYXbN.jpg", "order": 4}, {"name": "Willow Smith", "character": "Marley Neville", "id": 49920, "credit_id": "52fe4455c3a36847f808fc25", "cast_id": 23, "profile_path": "/1wd5w9wYSwMBOvMSzGYrf2Ilk9H.jpg", "order": 5}, {"name": "Joanna Numata", "character": "Alpha Female", "id": 49922, "credit_id": "52fe4455c3a36847f808fc35", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Darrell Foster", "character": "Mike - Military Escort", "id": 49921, "credit_id": "52fe4455c3a36847f808fc29", "cast_id": 24, "profile_path": "/9DPSxjhKhoi3YGCDRADEYVKNbKz.jpg", "order": 7}, {"name": "Dash Mihok", "character": "Alpha Male", "id": 6066, "credit_id": "52fe4455c3a36847f808fc31", "cast_id": 26, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 8}, {"name": "Samuel Glen", "character": "Military Driver - Jay", "id": 964035, "credit_id": "52fe4455c3a36847f808fc4f", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Pedro Mojica", "character": "Sergeant", "id": 1075145, "credit_id": "52fe4455c3a36847f808fc5b", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Emma Thompson", "character": "Dr. Alice Krippin", "id": 7056, "credit_id": "52fe4455c3a36847f808fc5f", "cast_id": 36, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 13}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4455c3a36847f808fbaf", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 6.7, "runtime": 101}, "3489": {"poster_path": "/b5d3iWimQXvjAx9Grjuk912DSij.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16930884, "overview": "\"88 Minutes\" focuses on a college professor (Pacino) who moonlights as a forensic psychiatrist for the FBI and receives a death threat claiming he has only 88 minutes to live.", "video": false, "id": 3489, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "88 Minutes", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411061", "adult": false, "backdrop_path": "/ddMTbjChBrkdTsrUKi8l8Jcljei.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Nu Image Entertainment", "id": 713}, {"name": "Brightlight Pictures", "id": 1063}], "release_date": "2008-04-18", "popularity": 1.10779934852964, "original_title": "88 Minutes", "budget": 30000000, "cast": [{"name": "Al Pacino", "character": "Jack Gramm", "id": 1158, "credit_id": "52fe4396c3a36847f805fe2d", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Alicia Witt", "character": "Kim Cummings", "id": 3128, "credit_id": "52fe4396c3a36847f805fe7f", "cast_id": 19, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 1}, {"name": "Leelee Sobieski", "character": "Lauren Douglas", "id": 22290, "credit_id": "52fe4396c3a36847f805fe83", "cast_id": 20, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 2}, {"name": "Amy Brenneman", "character": "Shelly Barnes", "id": 15851, "credit_id": "52fe4396c3a36847f805fe87", "cast_id": 21, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 3}, {"name": "William Forsythe", "character": "Frank Parks", "id": 4520, "credit_id": "52fe4396c3a36847f805fe8b", "cast_id": 22, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 4}, {"name": "Deborah Kara Unger", "character": "Carol", "id": 13549, "credit_id": "52fe4396c3a36847f805fe8f", "cast_id": 23, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 5}, {"name": "Ben McKenzie", "character": "Mike Stemp", "id": 17245, "credit_id": "52fe4396c3a36847f805fe93", "cast_id": 24, "profile_path": "/rm3vfSXk6FDGRpjaOfM7VSsp5sd.jpg", "order": 6}, {"name": "Neal McDonough", "character": "Jon Forster", "id": 2203, "credit_id": "52fe4396c3a36847f805fe97", "cast_id": 25, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 7}, {"name": "Leah Cairns", "character": "Sara Pollard", "id": 32202, "credit_id": "52fe4396c3a36847f805fe9b", "cast_id": 26, "profile_path": "/Asuotouxe6Se3stoMP7vrLE1EaD.jpg", "order": 8}, {"name": "Stephen Moyer", "character": "Guy LaForge", "id": 32203, "credit_id": "52fe4396c3a36847f805fe9f", "cast_id": 27, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 9}, {"name": "Christopher Redman", "character": "Jeremy Guber", "id": 32204, "credit_id": "52fe4396c3a36847f805fea3", "cast_id": 28, "profile_path": "/oRUUfZV89SH3l040RZTRNis3IIS.jpg", "order": 10}, {"name": "Brendan Fletcher", "character": "Johnny D`Franco", "id": 32205, "credit_id": "52fe4396c3a36847f805fea7", "cast_id": 29, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 11}, {"name": "Paul Campbell", "character": "Albert Jackson", "id": 62909, "credit_id": "54e6579b9251416f46000109", "cast_id": 34, "profile_path": "/gmMt9mKExBd796rsfTuRvrP2SAu.jpg", "order": 12}], "directors": [{"name": "Jon Avnet", "department": "Directing", "job": "Director", "credit_id": "52fe4396c3a36847f805fead", "profile_path": "/ckcE5lD7KNCh6iYHwCbfbs4r2y2.jpg", "id": 18250}], "vote_average": 5.7, "runtime": 108}, "39254": {"poster_path": "/drtXi58nN6P3zcoLh6wUlsZAYqh.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 299268508, "overview": "In the near-future, Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After Charlie's robot is trashed, he reluctantly teams up with his estranged son Max to rebuild and train an unlikely contender.", "video": false, "id": 39254, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Real Steel", "tagline": "If you get one shot, make it real.", "vote_count": 1039, "homepage": "http://www.steelgetsreal.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433035", "adult": false, "backdrop_path": "/m3aK5gSRZdG5aN65gJsK5QvHUMA.jpg", "production_companies": [{"name": "ImageMovers", "id": 11395}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Angry Films", "id": 12087}], "release_date": "2011-10-06", "popularity": 1.23813871712305, "original_title": "Real Steel", "budget": 110000000, "cast": [{"name": "Hugh Jackman", "character": "Charlie Kenton", "id": 6968, "credit_id": "52fe47079251416c91067de7", "cast_id": 13, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Dakota Goyo", "character": "Max Kenton", "id": 234479, "credit_id": "52fe47079251416c91067def", "cast_id": 15, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 1}, {"name": "Evangeline Lilly", "character": "Bailey Tallet", "id": 19034, "credit_id": "52fe47079251416c91067de3", "cast_id": 12, "profile_path": "/lsXb0Qt9WyYDJUdON26vmtKVkE6.jpg", "order": 2}, {"name": "Anthony Mackie", "character": "Finn", "id": 53650, "credit_id": "52fe47079251416c91067ddf", "cast_id": 11, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 3}, {"name": "Kevin Durand", "character": "Ricky", "id": 79072, "credit_id": "52fe47079251416c91067deb", "cast_id": 14, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Hope Davis", "character": "Aunt Debra", "id": 15250, "credit_id": "52fe47079251416c91067ddb", "cast_id": 10, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 5}, {"name": "James Rebhorn", "character": "Marvin", "id": 8986, "credit_id": "52fe47079251416c91067df3", "cast_id": 16, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 6}, {"name": "Marco Ruggeri", "character": "Cliff", "id": 930729, "credit_id": "52fe47079251416c91067df7", "cast_id": 17, "profile_path": "/1Ox63ukTd2yfOf1LVJOMXwmeQjO.jpg", "order": 7}, {"name": "Karl Yune", "character": "Tak Mashido", "id": 19860, "credit_id": "52fe47079251416c91067dfb", "cast_id": 18, "profile_path": "/qK315vPObCNdywdRN66971FtFez.jpg", "order": 8}, {"name": "Olga Fonda", "character": "Farra Lemkova", "id": 111206, "credit_id": "52fe47079251416c91067dff", "cast_id": 19, "profile_path": "/j1qabOHf3Pf82f1lFpUmdF5XvSp.jpg", "order": 9}, {"name": "John Gatins", "character": "Kingpin", "id": 53176, "credit_id": "52fe47089251416c91067e81", "cast_id": 41, "profile_path": "/A2MqnSKVzOuBf8MVfNyve2h2LxJ.jpg", "order": 10}, {"name": "Sophie Levy", "character": "Big Sister", "id": 1126350, "credit_id": "52fe47089251416c91067e85", "cast_id": 42, "profile_path": null, "order": 11}, {"name": "Tess Levy", "character": "Little Sister", "id": 1126351, "credit_id": "52fe47089251416c91067e89", "cast_id": 43, "profile_path": null, "order": 12}, {"name": "Charlie Levy", "character": "Littlest Sister", "id": 1126352, "credit_id": "52fe47089251416c91067e8d", "cast_id": 44, "profile_path": null, "order": 13}, {"name": "Gregory Sims", "character": "Bill Panner", "id": 187983, "credit_id": "52fe47089251416c91067e91", "cast_id": 45, "profile_path": null, "order": 14}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe47079251416c91067dd7", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.4, "runtime": 127}, "6488": {"poster_path": "/pz4TWF3r6xqXN41Iqsjbf06rAQs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53208180, "overview": "A large spider from the jungles of South America is accidentally transported in a crate with a dead body to America where it mates with a local spider. Soon after, the residents of a small California town disappear as the result of spider bites from the deadly spider offspring. It's up to a couple of doctors with the help of an insect exterminator to annihilate these eight legged freaks.", "video": false, "id": 6488, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Arachnophobia", "tagline": "Eight legs, two fangs, and an attitude.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0099052", "adult": false, "backdrop_path": "/a29CEDZI05HuMF2oiLihuMoPBfl.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Tangled Web Productions", "id": 2104}], "release_date": "1990-08-09", "popularity": 0.464028811942077, "original_title": "Arachnophobia", "budget": 31000000, "cast": [{"name": "Jeff Daniels", "character": "Dr. Ross Jennings", "id": 8447, "credit_id": "52fe4455c3a36847f808fe4b", "cast_id": 1, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 0}, {"name": "Harley Jane Kozak", "character": "Molly Jennings", "id": 27106, "credit_id": "52fe4455c3a36847f808fe4f", "cast_id": 2, "profile_path": "/VXtpLchVBUib398pwahLPbgSeT.jpg", "order": 1}, {"name": "John Goodman", "character": "Delbert McClintock", "id": 1230, "credit_id": "52fe4455c3a36847f808fe53", "cast_id": 3, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Julian Sands", "character": "Doctor James Atherton", "id": 6104, "credit_id": "52fe4455c3a36847f808fe93", "cast_id": 14, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 3}, {"name": "Stuart Pankin", "character": "Sheriff Lloyd Parsons", "id": 52043, "credit_id": "52fe4455c3a36847f808fe97", "cast_id": 15, "profile_path": "/yFYrCahBSro1J2Eyj8Qoko31trL.jpg", "order": 4}, {"name": "Brandy Norwood", "character": "Brandy Beechwood", "id": 33285, "credit_id": "52fe4455c3a36847f808fe9b", "cast_id": 16, "profile_path": "/2HA5qGd6MSVM6hqE8yclbpnOfgw.jpg", "order": 5}, {"name": "Brian McNamara", "character": "Chris Collins", "id": 27238, "credit_id": "52fe4455c3a36847f808fe9f", "cast_id": 17, "profile_path": "/eHBvnSkMrhNB57yU2nlQCfH8Kl8.jpg", "order": 6}, {"name": "Mark L. Taylor", "character": "Jerry Manley", "id": 78003, "credit_id": "52fe4455c3a36847f808fea3", "cast_id": 18, "profile_path": "/uvqfJeuIQEHvbEDJWDZJcTBlzNy.jpg", "order": 7}, {"name": "Henry Jones", "character": "Doctor Sam Metcalf", "id": 5732, "credit_id": "52fe4455c3a36847f808fea7", "cast_id": 19, "profile_path": "/hOO3CG2qUq6wvM4BkjtJ05kIU1C.jpg", "order": 8}, {"name": "Peter Jason", "character": "Henry Beechwood", "id": 6916, "credit_id": "52fe4455c3a36847f808feab", "cast_id": 20, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 9}, {"name": "Roy Brocksmith", "character": "Irv Kendall", "id": 12888, "credit_id": "52fe4455c3a36847f808feaf", "cast_id": 22, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 10}, {"name": "Kathy Kinney", "character": "Blaire Kendall", "id": 162605, "credit_id": "52fe4455c3a36847f808feb3", "cast_id": 23, "profile_path": "/AtDo8MWLonRXSXUGFIF5dAPpn0J.jpg", "order": 11}, {"name": "Mary Carver", "character": "Margaret Hollins", "id": 152696, "credit_id": "52fe4455c3a36847f808feb7", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Garette Ratliff Henson", "character": "Tommy Jennings", "id": 76239, "credit_id": "52fe4455c3a36847f808febb", "cast_id": 25, "profile_path": "/xXzXov8q56YxH8pbHb1DrJ8hrV.jpg", "order": 13}, {"name": "James Handy", "character": "Milton Briggs", "id": 51551, "credit_id": "52fe4455c3a36847f808febf", "cast_id": 26, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 14}], "directors": [{"name": "Frank Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4455c3a36847f808fe59", "profile_path": "/iZrDellT1OWf1syKzBgQHjY2hJe.jpg", "id": 664}], "vote_average": 6.3, "runtime": 103}, "22881": {"poster_path": "/wEGFSgPebLk6g1ngKsJ6a46PYLV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 309208309, "overview": "Oversized African American Michael Oher, the teen from across the tracks and a broken home, has nowhere to sleep at age 16. Taken in by an affluent Memphis couple, Leigh Anne and Sean, Michael embarks on a remarkable rise to play for the NFL.", "video": false, "id": 22881, "genres": [{"id": 18, "name": "Drama"}], "title": "The Blind Side", "tagline": "Based on the extraordinary true story", "vote_count": 664, "homepage": "http://www.theblindsidemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0878804", "adult": false, "backdrop_path": "/qVjKZMB0IdOc2JlwiiGsuKTvTJs.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Left Tackle Pictures", "id": 12193}, {"name": "Zucker/Netter Productions", "id": 12194}], "release_date": "2009-11-20", "popularity": 1.59467202665639, "original_title": "The Blind Side", "budget": 29000000, "cast": [{"name": "Sandra Bullock", "character": "Leigh Anne Touhy", "id": 18277, "credit_id": "52fe4453c3a368484e01cd1b", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Quinton Aaron", "character": "Michael Oher", "id": 112560, "credit_id": "52fe4453c3a368484e01cd33", "cast_id": 6, "profile_path": "/5NeAJi2BTY4f75zTVSgGPnZZUa6.jpg", "order": 1}, {"name": "Kathy Bates", "character": "Miss Sue", "id": 8534, "credit_id": "52fe4453c3a368484e01cd1f", "cast_id": 2, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 2}, {"name": "Tim McGraw", "character": "Sean Tuohy", "id": 74428, "credit_id": "52fe4453c3a368484e01cd2f", "cast_id": 5, "profile_path": "/lotQwKKAUe3hI4EnmMySNpJGKGO.jpg", "order": 3}, {"name": "Jae Head", "character": "S.J. Tuohy", "id": 66658, "credit_id": "52fe4453c3a368484e01cd37", "cast_id": 7, "profile_path": "/iq3GxDOVoTssnByU1CjWYkhPKmz.jpg", "order": 4}, {"name": "Lily Collins", "character": "Collins Touhy", "id": 112561, "credit_id": "52fe4453c3a368484e01cd3b", "cast_id": 8, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 5}, {"name": "Ray McKinnon", "character": "Coach Burt Cotton", "id": 1472, "credit_id": "52fe4453c3a368484e01cd3f", "cast_id": 9, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 6}, {"name": "Kim Dickens", "character": "Mrs. Boswell", "id": 21165, "credit_id": "52fe4453c3a368484e01cd43", "cast_id": 10, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 7}, {"name": "Adriane Lenox", "character": "Denise Oher", "id": 53260, "credit_id": "52fe4453c3a368484e01cd47", "cast_id": 11, "profile_path": "/pVvBJyRhJtSAYKfDlrEeQ5GBiij.jpg", "order": 8}, {"name": "Catherine Dyer", "character": "Mrs. Smith", "id": 112562, "credit_id": "52fe4453c3a368484e01cd4b", "cast_id": 12, "profile_path": "/bjSNlEfh87rh1LIkLjhSKYRihDi.jpg", "order": 9}, {"name": "Sharon Morris", "character": "Investigator Granger", "id": 142374, "credit_id": "52fe4453c3a368484e01cd4f", "cast_id": 14, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 10}, {"name": "Andy Stahl", "character": "Principal Sandstrom", "id": 21083, "credit_id": "52fe4454c3a368484e01cdad", "cast_id": 30, "profile_path": "/3t0TIakWeRkIRiCICPFImVggwOy.jpg", "order": 11}, {"name": "Tom Nowicki", "character": "Literature Teacher", "id": 94854, "credit_id": "52fe4454c3a368484e01cdb1", "cast_id": 31, "profile_path": "/nm6XdgwH6IDE4nroYQwhNtlFtn9.jpg", "order": 12}, {"name": "Libby Whittemore", "character": "Sarcastic Teacher", "id": 226537, "credit_id": "52fe4454c3a368484e01cdb5", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Brian Hollan", "character": "Jay Collis", "id": 1127790, "credit_id": "52fe4454c3a368484e01cdb9", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Melody Weintraub", "character": "History Teacher", "id": 968305, "credit_id": "52fe4454c3a368484e01cdbd", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "IronE Singleton", "character": "Alton", "id": 1040864, "credit_id": "52fe4454c3a368484e01cdc1", "cast_id": 35, "profile_path": "/gUEWX9HIw2iN6bsMvRF7q0xF395.jpg", "order": 16}, {"name": "Omar J. Dorsey", "character": "'Big Tony' Hamilton", "id": 59844, "credit_id": "52fe4454c3a368484e01cdc5", "cast_id": 36, "profile_path": "/20Lrh4XaRrNEMapJGMl9uToHSQn.jpg", "order": 17}, {"name": "Paul Amadi", "character": "Steven Hamilton", "id": 1039342, "credit_id": "52fe4454c3a368484e01cdc9", "cast_id": 37, "profile_path": null, "order": 18}], "directors": [{"name": "John Lee Hancock", "department": "Directing", "job": "Director", "credit_id": "52fe4453c3a368484e01cd2b", "profile_path": "/1eCqzsuFp0xKGeTEErXyEifN82U.jpg", "id": 54040}], "vote_average": 6.9, "runtime": 129}, "22894": {"poster_path": "/mXJJPsVfQdf0OWxgoWgDUFyzJQo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48052429, "overview": "An out-of-the-way diner becomes the unlikely battleground for the survival of the human race. When God loses faith in humankind, he sends his legion of angels to bring on the Apocalypse. Humanity's only hope lies in a group of strangers trapped in a desert diner with the Archangel Michael.", "video": false, "id": 22894, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Legion", "tagline": "When the last angel falls, the fight for mankind begins.", "vote_count": 212, "homepage": "http://www.legionmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1038686", "adult": false, "backdrop_path": "/gWaMoxVrkiMJ5xgvnXDhpKtP10E.jpg", "production_companies": [{"name": "Bold Films", "id": 2266}], "release_date": "2010-01-22", "popularity": 1.31378509421618, "original_title": "Legion", "budget": 26000000, "cast": [{"name": "Paul Bettany", "character": "Michael", "id": 6162, "credit_id": "52fe4454c3a368484e01cf65", "cast_id": 1, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Bob Hanson", "id": 6065, "credit_id": "52fe4454c3a368484e01cf69", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Kevin Durand", "character": "Gabriel", "id": 79072, "credit_id": "52fe4454c3a368484e01cf75", "cast_id": 5, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 2}, {"name": "Kate Walsh", "character": "Sandra Anderson", "id": 61114, "credit_id": "52fe4454c3a368484e01cf79", "cast_id": 6, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 3}, {"name": "Doug Jones", "character": "Ice Cream Man", "id": 17005, "credit_id": "52fe4454c3a368484e01cf6d", "cast_id": 3, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 4}, {"name": "Lucas Black", "character": "Jeep Hanson", "id": 155, "credit_id": "52fe4454c3a368484e01cf71", "cast_id": 4, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 5}, {"name": "Tyrese Gibson", "character": "Kyle Williams", "id": 8169, "credit_id": "52fe4454c3a368484e01cf7d", "cast_id": 7, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 6}, {"name": "Adrianne Palicki", "character": "Charlie", "id": 88995, "credit_id": "52fe4454c3a368484e01cff3", "cast_id": 29, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 7}, {"name": "Charles S. Dutton", "character": "Percy Walker", "id": 17764, "credit_id": "52fe4454c3a368484e01cff7", "cast_id": 30, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 8}, {"name": "Jon Tenney", "character": "Howard Anderson", "id": 4602, "credit_id": "52fe4454c3a368484e01cffb", "cast_id": 31, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 9}, {"name": "Kate Walsh", "character": "Sandra Anderson", "id": 61114, "credit_id": "52fe4454c3a368484e01cfff", "cast_id": 32, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 10}, {"name": "Jeanette Miller", "character": "Gladys Foster", "id": 58929, "credit_id": "52fe4454c3a368484e01d003", "cast_id": 33, "profile_path": "/mpWlUmcibBwYRGZSYn1jY8Ot5Ne.jpg", "order": 11}, {"name": "Cameron Harlow", "character": "Minivan Boy", "id": 1125192, "credit_id": "52fe4454c3a368484e01d007", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Josh Stamberg", "character": "Burton", "id": 21882, "credit_id": "52fe4454c3a368484e01d00b", "cast_id": 35, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 13}, {"name": "Yancey Arias", "character": "Estevez", "id": 21049, "credit_id": "52fe4454c3a368484e01d00f", "cast_id": 36, "profile_path": "/yXePNE3sFAHk1CAgdObHhUrWsKL.jpg", "order": 14}, {"name": "Willa Holland", "character": "Audrey Anderson", "id": 1223171, "credit_id": "52fe4454c3a368484e01d019", "cast_id": 38, "profile_path": "/wSn01hjcRFnamCrvhbUJyeMIbxo.jpg", "order": 15}], "directors": [{"name": "Scott Stewart", "department": "Directing", "job": "Director", "credit_id": "52fe4454c3a368484e01cf83", "profile_path": "/uFhftOKdeSRbJkOsylcJSJoaimQ.jpg", "id": 116357}], "vote_average": 5.1, "runtime": 100}, "22897": {"poster_path": "/foHRwmVZG7m0XMDq15wRuNoKca6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219069702, "overview": "Ten years after their divorce, Jane and Jake Adler unite for their son's college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect, Adam. Now, she has to sort out her life -- just when she thought she had it all figured out.", "video": false, "id": 22897, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "It's Complicated", "tagline": "First comes marriage. Then comes divorce. And then...", "vote_count": 99, "homepage": "http://itscomplicatedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1230414", "adult": false, "backdrop_path": "/lt7K8envOZJGRDfZ8GcN4epSzPd.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Waverly Films", "id": 735}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Dentsu", "id": 6452}], "release_date": "2009-12-25", "popularity": 0.602506362690984, "original_title": "It's Complicated", "budget": 85000000, "cast": [{"name": "Meryl Streep", "character": "Jane Adler", "id": 5064, "credit_id": "52fe4454c3a368484e01d0c1", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Jake Adler", "id": 7447, "credit_id": "52fe4454c3a368484e01d0c9", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Steve Martin", "character": "Adam Schaffer", "id": 67773, "credit_id": "52fe4454c3a368484e01d0cd", "cast_id": 5, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 2}, {"name": "Lake Bell", "character": "Agness Adler", "id": 25703, "credit_id": "52fe4454c3a368484e01d0f5", "cast_id": 14, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 3}, {"name": "Mary Kay Place", "character": "Joanne", "id": 5960, "credit_id": "52fe4454c3a368484e01d0f9", "cast_id": 15, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 4}, {"name": "John Krasinski", "character": "Harley", "id": 17697, "credit_id": "52fe4454c3a368484e01d0c5", "cast_id": 3, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 5}, {"name": "Rita Wilson", "character": "Trisha", "id": 12931, "credit_id": "52fe4454c3a368484e01d11b", "cast_id": 21, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 6}, {"name": "Alexandra Wentworth", "character": "Diane", "id": 104998, "credit_id": "52fe4454c3a368484e01d11f", "cast_id": 22, "profile_path": "/rhROnBBAcL9UFJ4YFMPReqMafrG.jpg", "order": 7}, {"name": "Hunter Parrish", "character": "Luke Adler", "id": 35236, "credit_id": "52fe4454c3a368484e01d123", "cast_id": 23, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 8}, {"name": "Zoe Kazan", "character": "Gabby Adler", "id": 35028, "credit_id": "52fe4454c3a368484e01d127", "cast_id": 24, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 9}, {"name": "Caitlin Fitzgerald", "character": "Lauren Adler", "id": 211993, "credit_id": "52fe4454c3a368484e01d12b", "cast_id": 25, "profile_path": "/y6Oqdicw18Ecu6u4IxylAqrsHGh.jpg", "order": 10}, {"name": "Nora Dunn", "character": "Sally", "id": 4496, "credit_id": "52fe4455c3a368484e01d133", "cast_id": 27, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 12}, {"name": "Bruce Altman", "character": "Ted", "id": 27545, "credit_id": "52fe4455c3a368484e01d137", "cast_id": 28, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 13}, {"name": "Robert Curtis Brown", "character": "Peter", "id": 233298, "credit_id": "52fe4455c3a368484e01d13b", "cast_id": 29, "profile_path": "/1plgmYJoFzTUJwPD1YbMtl9NQxD.jpg", "order": 14}, {"name": "James Patrick Stuart", "character": "Dr. Moss", "id": 105641, "credit_id": "52fe4455c3a368484e01d13f", "cast_id": 30, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 15}, {"name": "Peter MacKenzie", "character": "Dr. Allen", "id": 62597, "credit_id": "52fe4455c3a368484e01d143", "cast_id": 31, "profile_path": "/mAnOLlLQDEtUvAqEjKPLiQSJ0w5.jpg", "order": 16}, {"name": "Emily Kinney", "character": "Waitress", "id": 1223878, "credit_id": "530353ad9251412195520c83", "cast_id": 32, "profile_path": "/nKsvhL2T8srsEiUYUS4HhWeeXcT.jpg", "order": 17}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe4454c3a368484e01d0bd", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 6.3, "runtime": 121}, "6519": {"poster_path": "/ts0KZTwWfpaPm4X6jaus3xBV8gN.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110803676, "overview": "Bo and Luke Duke are southern cousins. In Hazzard County, Bo and Luke help their Uncle Jesse and their sexy cousin Daisy run the Moonshine business and always getting into trouble with Sherriff Roscoe P. Coltrane and recklessly driving in their orange car \"General Lee\". Boss Hogg, the mean and corrupt local county commissioner who hates The Dukes evicts The Dukes from their farm. Bo and Duke travels to Atlanta and meets up with old friend Katie Johnson and her friend Annette as they set out to find out why Boss Hogg has evicted them from their farm and what he plans to do. With local ace race car driver Billy Prickett in town to take part in the Annual Hazzard Road Race rally, Bo and Luke sets out to save their farm and foil Boss Hogg's scheme", "video": false, "id": 6519, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Dukes of Hazzard", "tagline": "Cousins. Outlaws. Thrillbillies.", "vote_count": 88, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5xE2YWrBLCn7bETXtX0cDZfxdTi.jpg", "id": 332357, "name": "The Dukes Of Hazzard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377818", "adult": false, "backdrop_path": "/wb6XwD8z16nATOFlkGoPCVnbv6Y.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Gerber Pictures", "id": 975}, {"name": "WV Films III", "id": 12202}], "release_date": "2005-08-05", "popularity": 0.345940877867447, "original_title": "The Dukes of Hazzard", "budget": 50000000, "cast": [{"name": "Johnny Knoxville", "character": "Luke Duke", "id": 9656, "credit_id": "52fe4457c3a36847f8090595", "cast_id": 1, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Bo Duke", "id": 57599, "credit_id": "52fe4457c3a36847f8090599", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Jessica Simpson", "character": "Daisy Duke", "id": 52052, "credit_id": "52fe4457c3a36847f80905c9", "cast_id": 11, "profile_path": "/1PDbqQoEriziHHaAcRwtOkI2SHq.jpg", "order": 2}, {"name": "M.C. Gainey", "character": "Sheriff Rosco P. Coltrane", "id": 22132, "credit_id": "52fe4457c3a36847f809063f", "cast_id": 37, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 3}, {"name": "Burt Reynolds", "character": "Jefferson Davis 'Boss' Hogg", "id": 16475, "credit_id": "52fe4457c3a36847f80905cd", "cast_id": 13, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 4}, {"name": "Willie Nelson", "character": "Uncle Jesse Duke", "id": 8261, "credit_id": "52fe4457c3a36847f8090637", "cast_id": 35, "profile_path": "/9G0q9ISCbCy3lPP7Uly53xwRlJA.jpg", "order": 5}, {"name": "James Roday", "character": "Billy Prickett", "id": 80219, "credit_id": "52fe4457c3a36847f809062b", "cast_id": 31, "profile_path": "/uDRDtNTlY8JXsrratw29dj1C1cr.jpg", "order": 6}, {"name": "David Koechner", "character": "Cooter Davenport", "id": 28638, "credit_id": "52fe4457c3a36847f8090633", "cast_id": 34, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 7}, {"name": "Michael Weston", "character": "Deputy Enos Strate", "id": 51381, "credit_id": "52fe4457c3a36847f8090617", "cast_id": 26, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 8}, {"name": "Nikki Griffin", "character": "Katie Johnson", "id": 88677, "credit_id": "53a469e2c3a3682a450013fa", "cast_id": 40, "profile_path": "/rRGP3vx9LiLguZQzvE4RLWcIEeG.jpg", "order": 9}, {"name": "Alice Greczyn", "character": "Laurie Pullman", "id": 52050, "credit_id": "52fe4457c3a36847f80905c1", "cast_id": 9, "profile_path": "/nO3ZLjJ6ZUOgOTX2eB1UOa4tket.jpg", "order": 10}, {"name": "Joe Don Baker", "character": "Governor Jim Applewhite", "id": 10671, "credit_id": "52fe4457c3a36847f80905d1", "cast_id": 14, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 11}, {"name": "Lynda Carter", "character": "Pauline", "id": 44935, "credit_id": "53a4687b0e0a2667c6001945", "cast_id": 38, "profile_path": "/lC89jUGkfwEm9bD732uJ2nHzavl.jpg", "order": 12}, {"name": "Jack Polick", "character": "Deputy Cletus Hogg", "id": 60930, "credit_id": "52fe4457c3a36847f809063b", "cast_id": 36, "profile_path": "/bavt2S9iwHSjQAUfvtEkxeHT5SI.jpg", "order": 13}, {"name": "Kevin Heffernan", "character": "Sheev", "id": 56251, "credit_id": "53a46980c3a3682a3f00145b", "cast_id": 39, "profile_path": "/afuCF27oMcjV8wNf6YIPXl3XZPE.jpg", "order": 14}, {"name": "Steve Lemme", "character": "Jimmy", "id": 52051, "credit_id": "52fe4457c3a36847f80905c5", "cast_id": 10, "profile_path": "/kZtGtYLBVA6AGp8TZOF95dHobD5.jpg", "order": 15}, {"name": "Michael Roof", "character": "Dil Driscoll", "id": 53347, "credit_id": "52fe4457c3a36847f809061f", "cast_id": 28, "profile_path": "/52LqQBBrjzqhcrwuh3eNMdcBPMb.jpg", "order": 16}], "directors": [{"name": "Jay Chandrasekhar", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a36847f809059f", "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "id": 52049}], "vote_average": 5.5, "runtime": 104}, "6520": {"poster_path": "/muRn0We7BisyezWUsPyGknEOq6R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127600435, "overview": "The timeless tale of King Arthur and the legend of Camelot are retold in this passionate period drama. Arthur is reluctant to hand the crown to Lancelot, and Guinevere is torn between her loyalty to her husband and her growing love for his rival. But Lancelot must balance his loyalty to the throne with the rewards of true love.", "video": false, "id": 6520, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "First Knight", "tagline": "Their greatest battle would be for her love.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113071", "adult": false, "backdrop_path": "/wKOoD7RvfJOIW13tQWYV7cMzzn0.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "First Knight Productions", "id": 10158}], "release_date": "1995-07-07", "popularity": 0.328519400287988, "original_title": "First Knight", "budget": 55000000, "cast": [{"name": "Sean Connery", "character": "King Arthur", "id": 738, "credit_id": "52fe4457c3a36847f8090683", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Richard Gere", "character": "Lancelot", "id": 1205, "credit_id": "52fe4457c3a36847f8090687", "cast_id": 2, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Julia Ormond", "character": "Guinevere", "id": 15887, "credit_id": "52fe4457c3a36847f809068b", "cast_id": 3, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 2}, {"name": "Ben Cross", "character": "Prince Malagant", "id": 29068, "credit_id": "52fe4457c3a36847f809068f", "cast_id": 4, "profile_path": "/oSGwl0y9ZQOKDYXbrEd2zeid1Bq.jpg", "order": 3}, {"name": "Liam Cunningham", "character": "Agravaine", "id": 15498, "credit_id": "52fe4458c3a36847f80906a5", "cast_id": 8, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 4}, {"name": "Christopher Villiers", "character": "Sir Kay", "id": 34720, "credit_id": "52fe4458c3a36847f80906a9", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Valentine Pelka", "character": "Sir Patrise", "id": 52375, "credit_id": "52fe4458c3a36847f80906ad", "cast_id": 10, "profile_path": "/478wMmYjjio8h2kaHkHsRJTqfYX.jpg", "order": 6}, {"name": "Colin McCormack", "character": "Sir Mador", "id": 186032, "credit_id": "52fe4458c3a36847f80906b1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Ralph Ineson", "character": "Ralf", "id": 202032, "credit_id": "52fe4458c3a36847f80906b5", "cast_id": 12, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 8}, {"name": "John Gielgud", "character": "Oswald", "id": 11857, "credit_id": "52fe4458c3a36847f80906b9", "cast_id": 13, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 9}, {"name": "Stuart Bunce", "character": "Peter, King's Stableman", "id": 107398, "credit_id": "52fe4458c3a36847f80906bd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Jane Robbins", "character": "Elise", "id": 193360, "credit_id": "52fe4458c3a36847f80906c1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Jean Marie Coffey", "character": "Petronella", "id": 1075038, "credit_id": "52fe4458c3a36847f80906c5", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Paul Kynman", "character": "Mark", "id": 200365, "credit_id": "52fe4458c3a36847f80906c9", "cast_id": 17, "profile_path": "/o1EPKfTbNTER88NsG0tr0o5wuqk.jpg", "order": 13}, {"name": "Tom Lucy", "character": "Sir Sagramore", "id": 1063141, "credit_id": "52fe4458c3a36847f80906cd", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a36847f8090695", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.1, "runtime": 134}, "217": {"poster_path": "/qY1x6v5daMDTr904G3y84WVgpfC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 786636033, "overview": "During the Cold War, Soviet agents watch Professor Henry Jones when a young man brings him a coded message from an aged, demented colleague, Henry Oxley. Led by the brilliant Irina Spalko, the Soviets tail Jones and the young man, Mutt, to Peru. With Oxley's code, they find a legendary skull made of a single piece of quartz. If Jones can deliver the skull to its rightful place, all may be well; but if Irina takes it to its origin, she'll gain powers that could endanger the West. Aging professor and young buck join forces with a woman from Jones's past to face the dangers of the jungle, Russia, and the supernatural.", "video": false, "id": 217, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Indiana Jones and the Kingdom of the Crystal Skull", "tagline": "The adventure continues . . .", "vote_count": 892, "homepage": "http://www.indianajones.com/site/index.html", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0367882", "adult": false, "backdrop_path": "/wJByCdlvHxoAvmktWaI2jSNzHbl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lucasfilm", "id": 1}], "release_date": "2008-05-22", "popularity": 1.58836054411006, "original_title": "Indiana Jones and the Kingdom of the Crystal Skull", "budget": 185000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4227c3a36847f8008477", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Irina Spalko", "id": 112, "credit_id": "52fe4228c3a36847f8008499", "cast_id": 10, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Shia LaBeouf", "character": "Mutt", "id": 10959, "credit_id": "52fe4228c3a36847f800849d", "cast_id": 11, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 2}, {"name": "Ray Winstone", "character": "Mac", "id": 5538, "credit_id": "52fe4228c3a36847f80084a1", "cast_id": 12, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 3}, {"name": "Karen Allen", "character": "Marion Ravenwood", "id": 650, "credit_id": "52fe4228c3a36847f80084a5", "cast_id": 13, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 4}, {"name": "John Hurt", "character": "Ox", "id": 5049, "credit_id": "52fe4228c3a36847f80084a9", "cast_id": 14, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "Dean Charles Stanforth", "id": 388, "credit_id": "52fe4228c3a36847f80084ad", "cast_id": 15, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Andrew Divoff", "character": "Russian Soldier", "id": 36218, "credit_id": "52fe4228c3a36847f80084b1", "cast_id": 16, "profile_path": "/3ana0vJs5uLDXb6dSHvp5naKmcl.jpg", "order": 7}, {"name": "Igor Jijikine", "character": "Colonel Dovchenko", "id": 52761, "credit_id": "52fe4228c3a36847f80084b5", "cast_id": 17, "profile_path": "/4ArqFlvP6Fe77DLxPu1U5LvkpXC.jpg", "order": 8}, {"name": "Pavel Lychnikoff", "character": "Russian Soldier", "id": 52762, "credit_id": "52fe4228c3a36847f80084b9", "cast_id": 18, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 9}, {"name": "Alan Dale", "character": "General Ross", "id": 52760, "credit_id": "52fe4228c3a36847f80084bd", "cast_id": 19, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 10}, {"name": "Ernie Reyes, Jr.", "character": "Cemetery Warrior", "id": 58210, "credit_id": "52fe4228c3a36847f80084c1", "cast_id": 20, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 11}, {"name": "Dimitri Diatchenko", "character": "Russian Suit", "id": 173269, "credit_id": "54e0d8ba9251411956005d67", "cast_id": 26, "profile_path": "/vPScVMpccnmNQSsvYhdwGcReblD.jpg", "order": 12}, {"name": "Ilia Volok", "character": "Russian Suit", "id": 109667, "credit_id": "54e0d9fc925141469f003a2d", "cast_id": 27, "profile_path": "/k5ACLMgPMrZjKbnOmHmaeBLx2Te.jpg", "order": 13}, {"name": "Emmanuel Todorov", "character": "Russian Soldier", "id": 1133682, "credit_id": "54e0db5fc3a36845410066ee", "cast_id": 28, "profile_path": "/m6fjgWmTDAvM93fRukUYG4br9U6.jpg", "order": 14}, {"name": "Venya Manzyuk", "character": "Russian Soldier", "id": 1427626, "credit_id": "54e0e18ec3a368455100632f", "cast_id": 29, "profile_path": "/klsCxeiEX2cyd4MgXmbRUauAdt9.jpg", "order": 15}, {"name": "Joel Stoffer", "character": "Taylor", "id": 155978, "credit_id": "54e0e4ec925141454f0035e2", "cast_id": 30, "profile_path": "/5c1Q86rb4ibXK40zcZmdjZkRQAS.jpg", "order": 16}, {"name": "Neil Flynn", "character": "Smith", "id": 43776, "credit_id": "54e0e584c3a36855c7003b92", "cast_id": 31, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 17}, {"name": "V.J. Foster", "character": "Minister", "id": 122596, "credit_id": "54e0e739925141195a0056c2", "cast_id": 32, "profile_path": "/9Blp9NazzcDGRykkeDFaWcZrRas.jpg", "order": 18}, {"name": "Chet Hanks", "character": "Student in Library", "id": 1421688, "credit_id": "54e113fc9251411099000116", "cast_id": 33, "profile_path": "/tMZi5ZCAIrA0Vf8nDlUmpZuAwdZ.jpg", "order": 19}, {"name": "Brian Knutson", "character": "Letterman", "id": 1427682, "credit_id": "54e11522c3a368454d006068", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Dean Grimes", "character": "Letterman", "id": 1427688, "credit_id": "54e11605c3a3685446004e32", "cast_id": 35, "profile_path": "/qDO9ZAcPeEZcDE792IFOXX6tKOa.jpg", "order": 21}, {"name": "Sasha Spielberg", "character": "Slugger", "id": 8700, "credit_id": "54e117359251411099000167", "cast_id": 36, "profile_path": "/3ltMYYXQ6lZUxqLiAsTSn29cVCS.jpg", "order": 22}, {"name": "Nicole Luther", "character": "Diner Waitress", "id": 1427692, "credit_id": "54e13b59c3a368409500011f", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Sophia Stewart", "character": "Malt Shop Teen", "id": 1427695, "credit_id": "54e13ba69251411956006610", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Chris Todd", "character": "College Brawler", "id": 1427698, "credit_id": "54e13cccc3a368454d00640b", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Dennis Nusbaum", "character": "College Brawler", "id": 1365062, "credit_id": "54e13e80c3a36855c700434b", "cast_id": 40, "profile_path": "/kDpdYkJRWEVFuNROuKBfIOp8fhU.jpg", "order": 26}, {"name": "T. Ryan Mooney", "character": "Teenage Boy", "id": 1427700, "credit_id": "54e13f5092514119560066bb", "cast_id": 41, "profile_path": "/5WMUQhRaw1EXyirDJ2Z8sv9WlTN.jpg", "order": 27}, {"name": "Audi Resendez", "character": "Teenage Girl", "id": 1058026, "credit_id": "54e141039251411956006707", "cast_id": 42, "profile_path": "/u95S40GGvtwyko9QGIM02rBihtD.jpg", "order": 28}, {"name": "Helena Barrett", "character": "Teenage Girl", "id": 204408, "credit_id": "54e1420ec3a36857560046cf", "cast_id": 43, "profile_path": "/k2gWbKpoteeY2XEQzPfcwRdY6et.jpg", "order": 29}, {"name": "Carlos Linares", "character": "Fast Speaking Inmate", "id": 1031791, "credit_id": "54e143269251411956006773", "cast_id": 44, "profile_path": "/g9mbHUziIX8UrAglnySp8Cnse3z.jpg", "order": 30}, {"name": "Gustavo Hernandez", "character": "Shouting Inmate", "id": 1427707, "credit_id": "54e14395c3a368087b0005c6", "cast_id": 45, "profile_path": null, "order": 31}, {"name": "Maria Luisa Minelli", "character": "Sanitarium Nun", "id": 1427708, "credit_id": "54e1440292514119500062c6", "cast_id": 46, "profile_path": null, "order": 32}, {"name": "Nito Larioza", "character": "Cemetery Warrior", "id": 1427711, "credit_id": "54e144b6925141109900068a", "cast_id": 47, "profile_path": "/5kdiSdTIKFeOrnkQmrx4IVBug5c.jpg", "order": 33}, {"name": "Jon Valera", "character": "Cave Warrior", "id": 1427715, "credit_id": "54e14716c3a36857560047bb", "cast_id": 48, "profile_path": "/pQkberrVb0s47V9Sw0iK1HybgxY.jpg", "order": 34}, {"name": "Kevin Collins", "character": "M.P. in Guard Hut", "id": 1427716, "credit_id": "54e149fac3a3684551006d2e", "cast_id": 49, "profile_path": "/6ApKOlxu3OYup7qWpcIqDCGOMg7.jpg", "order": 35}, {"name": "Robert Baker", "character": "M.P. Sergeant", "id": 21723, "credit_id": "54e14bf6c3a36855c7004576", "cast_id": 50, "profile_path": "/6nywOWGA7dJLzwDhHY4AzFRQ3b8.jpg", "order": 36}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f800846d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 5.6, "runtime": 122}, "22907": {"poster_path": "/zwepORN3ONa5qSLzmcZSPlpQxce.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42005172, "overview": "A seasoned team of bank robbers, including Gordon Jennings (Idris Elba), John Rahway (Paul Walker), A.J. (Hayden Christensen), and brothers Jake (Michael Ealy) and Jesse Attica (Chris Brown) successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost (Tip T.I. Harris), a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the \"Takers\" carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer (Matt Dillon) inches closer to apprehending the criminals.", "video": false, "id": 22907, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Takers", "tagline": "Who's Taking Who?", "vote_count": 136, "homepage": "http://www.whoarethetakers.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1135084", "adult": false, "backdrop_path": "/n6FokmbxhCWH0ad7i1lJzAbrZqK.jpg", "production_companies": [{"name": "Rainforest Films", "id": 1309}], "release_date": "2010-08-26", "popularity": 1.08090237832791, "original_title": "Takers", "budget": 32000000, "cast": [{"name": "Chris Brown", "character": "Jesse Attica", "id": 31136, "credit_id": "52fe4455c3a368484e01d249", "cast_id": 11, "profile_path": "/4k8sacCMG9jI2jo7x5XVSzq2Mnt.jpg", "order": 0}, {"name": "Hayden Christensen", "character": "A.J.", "id": 17244, "credit_id": "52fe4455c3a368484e01d24d", "cast_id": 12, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Jack Welles", "id": 2876, "credit_id": "52fe4455c3a368484e01d251", "cast_id": 13, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Michael Ealy", "character": "Jake Attica", "id": 8177, "credit_id": "52fe4455c3a368484e01d255", "cast_id": 14, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 3}, {"name": "Idris Elba", "character": "Gordon Jennings", "id": 17605, "credit_id": "52fe4455c3a368484e01d259", "cast_id": 15, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 4}, {"name": "T.I.", "character": "Ghost (as Tip 'T.I'. Harris)", "id": 76126, "credit_id": "52fe4455c3a368484e01d25d", "cast_id": 17, "profile_path": "/ycNO8wU6H75wDDfojMCTjoxtEmt.jpg", "order": 5}, {"name": "Zoe Saldana", "character": "Rachel Jansen", "id": 8691, "credit_id": "52fe4455c3a368484e01d261", "cast_id": 19, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 6}, {"name": "Paul Walker", "character": "John Rahway", "id": 8167, "credit_id": "52fe4455c3a368484e01d265", "cast_id": 21, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 7}, {"name": "Marianne Jean-Baptiste", "character": "Naomi", "id": 17352, "credit_id": "52fe4455c3a368484e01d269", "cast_id": 22, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 8}, {"name": "Johnathon Schaech", "character": "Scott", "id": 51670, "credit_id": "52fe4455c3a368484e01d26d", "cast_id": 23, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 9}, {"name": "Jay Hernandez", "character": "Eddie Hatcher", "id": 19487, "credit_id": "52fe4455c3a368484e01d271", "cast_id": 24, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 10}, {"name": "Steve Harris", "character": "Lt. Carver", "id": 2202, "credit_id": "52fe4455c3a368484e01d275", "cast_id": 25, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 11}, {"name": "Trevor Donovan", "character": "Rahway Body Double", "id": 1233560, "credit_id": "52fe4455c3a368484e01d29d", "cast_id": 32, "profile_path": "/4S4JlcxIHpU6UXnskZucQo8zOHE.jpg", "order": 12}], "directors": [{"name": "John Luessenhop", "department": "Directing", "job": "Director", "credit_id": "52fe4455c3a368484e01d245", "profile_path": "/HI2jnUyVBZu2xYOohzjM4nB8XQ.jpg", "id": 97026}], "vote_average": 6.3, "runtime": 107}, "1089": {"poster_path": "/qzKNI8b8EZZhwGFqPavPO04abf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105000000, "overview": "In the coastal town of Los Angeles, a gang of bank robbers call themselves The Ex-Presidents commit their crimes while wearing masks of Reagan, Carter, Nixon and Johnson. The F.B.I. believes that the members of the gang could be surfers and send young agent Johnny Utah undercover at the beach to mix with the surfers and gather information.", "video": false, "id": 1089, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Point Break", "tagline": "Twenty-seven banks in three years. Anything to catch the perfect wave.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102685", "adult": false, "backdrop_path": "/vaFuy8olnsULqdd09DsxWf1ry1k.jpg", "production_companies": [{"name": "JVC Entertainment Networks", "id": 4248}, {"name": "Largo Entertainment", "id": 1644}], "release_date": "1991-07-12", "popularity": 1.21438016915815, "original_title": "Point Break", "budget": 24000000, "cast": [{"name": "Patrick Swayze", "character": "Bodhi", "id": 723, "credit_id": "52fe42e7c3a36847f802b89d", "cast_id": 11, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 0}, {"name": "Keanu Reeves", "character": "FBI Special Agent John 'Johnny' Utah", "id": 6384, "credit_id": "52fe42e7c3a36847f802b8a1", "cast_id": 12, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 1}, {"name": "Gary Busey", "character": "FBI Agent Angelo Pappas", "id": 2048, "credit_id": "52fe42e7c3a36847f802b8a5", "cast_id": 13, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Lori Petty", "character": "Tyler Ann Endicott", "id": 15309, "credit_id": "52fe42e7c3a36847f802b8a9", "cast_id": 14, "profile_path": "/u2D3zteSlOj4zLp7jBcGqQVBsR1.jpg", "order": 3}, {"name": "John C. McGinley", "character": "FBI Agent Ben Harp", "id": 11885, "credit_id": "52fe42e7c3a36847f802b8ad", "cast_id": 15, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 4}, {"name": "James Le Gros", "character": "Roach", "id": 6474, "credit_id": "52fe42e7c3a36847f802b8b1", "cast_id": 16, "profile_path": "/rqBjmSkcRGwtwpb2tTjGcqLtKyG.jpg", "order": 5}, {"name": "Anthony Kiedis", "character": "Tone", "id": 15310, "credit_id": "52fe42e7c3a36847f802b8b5", "cast_id": 17, "profile_path": "/88vsdNuncMZ8cOwSvKmpEnchoGa.jpg", "order": 6}, {"name": "Christopher Pettiet", "character": "15", "id": 15311, "credit_id": "52fe42e7c3a36847f802b8b9", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Lee Tergesen", "character": "Rosie", "id": 6906, "credit_id": "5323fdd9c3a3684133000456", "cast_id": 19, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 8}, {"name": "John Philbin", "character": "Nathanial", "id": 103011, "credit_id": "5511d7b69251415caa001fe1", "cast_id": 20, "profile_path": "/hVRZLok1DmiiUQ5lBXOYx04Ibk4.jpg", "order": 9}, {"name": "Bojesse Christopher", "character": "Grommet", "id": 170231, "credit_id": "5511d7d29251415c96001f2f", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Daniel Beer", "character": "Babbit", "id": 107368, "credit_id": "5511d8ea9251412a880014d5", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Vincent Klyn", "character": "Warchild", "id": 63934, "credit_id": "5511d9009251415c96001f47", "cast_id": 25, "profile_path": "/gL0vJkLbWGzZnDOU5mrM8K8zMzQ.jpg", "order": 14}, {"name": "Dave Olson", "character": "Archbold", "id": 1445331, "credit_id": "5511d948925141065c00808f", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802b863", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 6.4, "runtime": 120}, "6537": {"poster_path": "/3DMsF5gbTfEZoDp6fQH0QATOc7l.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 44000000, "overview": "A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.", "video": false, "id": 6537, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Orphanage", "tagline": "A tale of love. A story of horror.", "vote_count": 109, "homepage": "http://www.clubcultura.com/clubcine/clubcineastas/guillermodeltoro/elorfanato/", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0464141", "adult": false, "backdrop_path": "/rce3RkZfMzBvdZfqluLaUx6QSI0.jpg", "production_companies": [{"name": "Esta Vivo! Laboratorio de Nuevos Talentos", "id": 11649}, {"name": "Grupo Rodar", "id": 11650}, {"name": "Rodar y Rodar Cine y Televisi\u00f3n", "id": 11651}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Telecinco", "id": 1182}, {"name": "Televisi\u00f3 de Catalunya TV3", "id": 6778}, {"name": "Warner Bros. Pictures de Espa\u00f1a", "id": 11652}, {"name": "Wild Bunch", "id": 856}], "release_date": "2007-10-11", "popularity": 0.71427785719212, "original_title": "El orfanato", "budget": 0, "cast": [{"name": "Bel\u00e9n Rueda", "character": "Laura", "id": 19907, "credit_id": "52fe4459c3a36847f8090cc1", "cast_id": 11, "profile_path": "/fBUoGHdAJhrm1R1tX9BtgAogXQt.jpg", "order": 0}, {"name": "Fernando Cayo", "character": "Carlos", "id": 51902, "credit_id": "52fe4459c3a36847f8090cc5", "cast_id": 12, "profile_path": "/oDbXZgeh03v6OzgeIcrk0YZ556L.jpg", "order": 1}, {"name": "Roger Pr\u00edncep", "character": "Sim\u00f3n", "id": 51903, "credit_id": "52fe4459c3a36847f8090cc9", "cast_id": 13, "profile_path": null, "order": 2}, {"name": "Mabel Rivera", "character": "Pilar", "id": 33409, "credit_id": "52fe4459c3a36847f8090ccd", "cast_id": 14, "profile_path": "/A4MguHpfBb5yVz0MJ5EW11BxxJx.jpg", "order": 3}, {"name": "Montserrat Carulla", "character": "Benigna", "id": 51904, "credit_id": "52fe4459c3a36847f8090cd1", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Andr\u00e9s Gertr\u00fadix", "character": "Enrique", "id": 51905, "credit_id": "52fe4459c3a36847f8090cd5", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "\u00c9dgar Vivar", "character": "Balaban", "id": 51906, "credit_id": "52fe4459c3a36847f8090cd9", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "\u00d3scar Casas", "character": "Tom\u00e1s", "id": 51943, "credit_id": "52fe4459c3a36847f8090ce1", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Geraldine Chaplin", "character": "Aurora", "id": 400, "credit_id": "52fe4459c3a36847f8090cdd", "cast_id": 18, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 8}], "directors": [{"name": "Juan Antonio Bayona", "department": "Directing", "job": "Director", "credit_id": "52fe4459c3a36847f8090c8d", "profile_path": "/wBsdjDeNy9IEGlQ4God71IOmlOC.jpg", "id": 51894}], "vote_average": 6.9, "runtime": 105}, "6538": {"poster_path": "/uN9tN0ZDyol7VsTlugDZhGc11xQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119000410, "overview": "A drama based on Texas congressman Charlie Wilson's covert dealings in Afghanistan, where his efforts to assist rebels in their war with the Soviets had some unforeseen and long-reaching effects.", "video": false, "id": 6538, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Charlie Wilson's War", "tagline": "Based on a true story. You think we could make all this up?", "vote_count": 75, "homepage": "http://www.charliewilsonswar.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt0472062", "adult": false, "backdrop_path": "/nZfkRAT1pYLc4VkzkUaHqzTkF5v.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Participant Productions", "id": 2030}, {"name": "Playtone Production", "id": 2031}], "release_date": "2007-12-19", "popularity": 0.884997271493375, "original_title": "Charlie Wilson's War", "budget": 75000000, "cast": [{"name": "Tom Hanks", "character": "Charlie Wilson", "id": 31, "credit_id": "52fe4459c3a36847f8090d7d", "cast_id": 12, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Gust Avrakotos", "id": 1233, "credit_id": "52fe4459c3a36847f8090d81", "cast_id": 13, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Julia Roberts", "character": "Joanne Herring", "id": 1204, "credit_id": "52fe4459c3a36847f8090d85", "cast_id": 14, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 2}, {"name": "Amy Adams", "character": "Bonnie Bach", "id": 9273, "credit_id": "52fe4459c3a36847f8090d89", "cast_id": 15, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 3}, {"name": "Om Puri", "character": "President Zia", "id": 11851, "credit_id": "52fe4459c3a36847f8090d8d", "cast_id": 16, "profile_path": "/omm9W5Ae1uwccnLPeVB5PWqh0ix.jpg", "order": 4}, {"name": "Shiri Appleby", "character": "Charlies Engel", "id": 50346, "credit_id": "52fe4459c3a36847f8090d91", "cast_id": 17, "profile_path": "/8c93ox1w2opQfWmxGQKn9lsqYzZ.jpg", "order": 5}, {"name": "John Slattery", "character": "Cravely", "id": 21134, "credit_id": "52fe4459c3a36847f8090d95", "cast_id": 18, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 6}, {"name": "Rachel Nichols", "character": "Charlies Engel", "id": 50347, "credit_id": "52fe4459c3a36847f8090d99", "cast_id": 19, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 7}, {"name": "Erick Avari", "character": "Avi Perlman", "id": 18917, "credit_id": "52fe4459c3a36847f8090d9d", "cast_id": 20, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 8}, {"name": "Cyia Batten", "character": "Stacey", "id": 42515, "credit_id": "52fe4459c3a36847f8090da1", "cast_id": 22, "profile_path": "/w14tg1GarixC9tqqYzTERkroS2P.jpg", "order": 10}, {"name": "Denis O'Hare", "character": "Harold Holt", "id": 81681, "credit_id": "52fe4459c3a36847f8090da5", "cast_id": 23, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 11}, {"name": "Ned Beatty", "character": "Doc Long", "id": 13726, "credit_id": "52fe4459c3a36847f8090da9", "cast_id": 24, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 12}, {"name": "Emily Blunt", "character": "Jane Liddle", "id": 5081, "credit_id": "52fe4459c3a36847f8090dad", "cast_id": 25, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 13}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe4459c3a36847f8090d3d", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 6.1, "runtime": 102}, "1090": {"poster_path": "/19XUd3YoAY2cwWJnutvq5VEtiIO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18564088, "overview": "Computer scientist Hannon Fuller has discovered something extremely important. He's about to tell the discovery to his colleague, Douglas Hall, but knowing someone is after him, the old man leaves a letter in his computer generated parallel world that's just like the 30's with seemingly real people with real emotions.", "video": false, "id": 1090, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Thirteenth Floor", "tagline": "You can go there even though it doesn't exist.", "vote_count": 92, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0139809", "adult": false, "backdrop_path": "/yT0FxS7LogdVEJz3FcdzPetzDTK.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Centropolis Film Productions", "id": 620}], "release_date": "1999-04-16", "popularity": 0.857959615032253, "original_title": "The Thirteenth Floor", "budget": 16000000, "cast": [{"name": "Craig Bierko", "character": "Douglas Hall/John Ferguson/David", "id": 14886, "credit_id": "52fe42e7c3a36847f802b97b", "cast_id": 21, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 0}, {"name": "Armin Mueller-Stahl", "character": "Hannon Fuller/Grierson", "id": 12647, "credit_id": "52fe42e7c3a36847f802b97f", "cast_id": 22, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 1}, {"name": "Gretchen Mol", "character": "Jane Fuller/Natasha Molinaro", "id": 15370, "credit_id": "52fe42e7c3a36847f802b983", "cast_id": 23, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Jason Whitney/Jerry Ashton", "id": 7132, "credit_id": "52fe42e7c3a36847f802b987", "cast_id": 24, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "Dennis Haysbert", "character": "Detective Larry McBain", "id": 352, "credit_id": "52fe42e7c3a36847f802b98b", "cast_id": 25, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 4}, {"name": "Steven Schub", "character": "Detective Zev Bernstein", "id": 15371, "credit_id": "52fe42e7c3a36847f802b98f", "cast_id": 26, "profile_path": null, "order": 5}, {"name": "Jeremy Roberts", "character": "Tom Jones", "id": 15372, "credit_id": "52fe42e7c3a36847f802b993", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Rif Hutton", "character": "Joe", "id": 15373, "credit_id": "52fe42e7c3a36847f802b997", "cast_id": 28, "profile_path": "/7bfADzIlo4ShEFK0dGBWkJbUXTz.jpg", "order": 7}, {"name": "Leon Rippy", "character": "Jane's Lawyer", "id": 15374, "credit_id": "52fe42e7c3a36847f802b99b", "cast_id": 29, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 8}, {"name": "Janet MacLachlan", "character": "Ellen", "id": 15375, "credit_id": "52fe42e7c3a36847f802b99f", "cast_id": 30, "profile_path": "/5YWXEDMcNG9HHxk5fV2vLAyAGmw.jpg", "order": 9}, {"name": "Brad William Henke", "character": "Cop #1", "id": 15376, "credit_id": "52fe42e7c3a36847f802b9a3", "cast_id": 31, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 10}, {"name": "Burt Bulos", "character": "Bellhop", "id": 15377, "credit_id": "52fe42e7c3a36847f802b9a7", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Venessia Valentino", "character": "Concierge", "id": 1174009, "credit_id": "52fe42e7c3a36847f802b9ab", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Tia Texada", "character": "Natasha's Roommate", "id": 68430, "credit_id": "52fe42e7c3a36847f802b9af", "cast_id": 34, "profile_path": "/7aYFh7W6mUkOBTfqRqSMpOh1i7P.jpg", "order": 13}], "directors": [{"name": "Josef Rusnak", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802b905", "profile_path": null, "id": 15361}], "vote_average": 6.7, "runtime": 100}, "80271": {"poster_path": "/vlG6iHT1RuT9xLj17SmNNUd8jJZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a world connected by YouTube, iTunes, and Facebook, Lola and her friends navigate the peer pressures of high school romance and friendship while dodging their sometimes overbearing and confused parents. When Lola's mom, Anne, \"accidentally\" reads her teenage daughter's racy journal, she realizes just how wide their communication gap has grown.", "video": false, "id": 80271, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "LOL", "tagline": "You can change your status, but not your heart.", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1592873", "adult": false, "backdrop_path": "/qFdqdBiqTsfXYvKDeCfxTucxQzU.jpg", "production_companies": [{"name": "Double Feature Films", "id": 215}], "release_date": "2012-05-04", "popularity": 0.522137609446938, "original_title": "LOL", "budget": 0, "cast": [{"name": "Ashley Greene", "character": "Ashley", "id": 45827, "credit_id": "52fe47b29251416c91072c35", "cast_id": 3, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 0}, {"name": "Demi Moore", "character": "Anne", "id": 3416, "credit_id": "52fe47b29251416c91072c39", "cast_id": 4, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Miley Cyrus", "character": "Lola", "id": 76594, "credit_id": "52fe47b29251416c91072c3d", "cast_id": 5, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 2}, {"name": "Jean-Luc Bilodeau", "character": "Jeremy", "id": 205204, "credit_id": "52fe47b29251416c91072c41", "cast_id": 6, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 3}, {"name": "Fisher Stevens", "character": "", "id": 26473, "credit_id": "52fe47b29251416c91072c45", "cast_id": 7, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 4}, {"name": "Thomas Jane", "character": "", "id": 11155, "credit_id": "52fe47b29251416c91072c49", "cast_id": 8, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 5}, {"name": "Gina Gershon", "character": "", "id": 11150, "credit_id": "52fe47b29251416c91072c4d", "cast_id": 9, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 6}, {"name": "Adam G. Sevani", "character": "Max", "id": 54503, "credit_id": "52fe47b29251416c91072c51", "cast_id": 10, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 7}, {"name": "Jay Hernandez", "character": "James", "id": 19487, "credit_id": "52fe47b29251416c91072c55", "cast_id": 11, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 8}, {"name": "Douglas Booth", "character": "Kyle", "id": 230680, "credit_id": "52fe47b29251416c91072c59", "cast_id": 12, "profile_path": "/3YMp0bU20VKCzJj6xTEO2u34VRE.jpg", "order": 9}, {"name": "Austin Nichols", "character": "Mr. Ross", "id": 6069, "credit_id": "52fe47b29251416c91072c5d", "cast_id": 13, "profile_path": "/zuPYAE3HC6Sb82vZcef7edN1nkT.jpg", "order": 10}, {"name": "Marlo Thomas", "character": "Gran", "id": 104997, "credit_id": "52fe47b29251416c91072c61", "cast_id": 14, "profile_path": "/pGYjCIod2iyRXo4eKCRMkU6MJjb.jpg", "order": 11}, {"name": "Michelle Burke", "character": "Lauren", "id": 58001, "credit_id": "52fe47b29251416c91072c65", "cast_id": 15, "profile_path": "/3yWWTYt6HJHueLPawrDdyoI2gYs.jpg", "order": 12}, {"name": "Nora Dunn", "character": "Emily's Mom", "id": 4496, "credit_id": "52fe47b29251416c91072c69", "cast_id": 16, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 13}, {"name": "Ashley Hinshaw", "character": "Emily", "id": 589098, "credit_id": "52fe47b29251416c91072c6d", "cast_id": 17, "profile_path": "/7PgDm9aDweOtr6y0dmtemoR4nFW.jpg", "order": 14}], "directors": [{"name": "Lisa Azuelos", "department": "Directing", "job": "Director", "credit_id": "52fe47b29251416c91072c2b", "profile_path": "/lJCesY1XCxjJLG405fX6xLyPFHd.jpg", "id": 229568}], "vote_average": 5.8, "runtime": 97}, "80274": {"poster_path": "/zHRNhCkrFEMoudPr0uics5WZe7j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125537191, "overview": "Based on the classic novel by Orson Scott Card, Ender's Game is the story of the Earth's most gifted children training to defend their homeplanet in the space wars of the future.", "video": false, "id": 80274, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Ender's Game", "tagline": "This is not a game.", "vote_count": 813, "homepage": "http://www.if-sentinel.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1731141", "adult": false, "backdrop_path": "/98Xb6UIC9TjoVpczIaCTRENZy45.jpg", "production_companies": [{"name": "Digital Domain", "id": 31825}, {"name": "Summit Entertainment", "id": 491}, {"name": "Odd Lot Entertainment", "id": 3263}, {"name": "Chartoff Productions", "id": 3200}, {"name": "Taleswapper", "id": 31826}, {"name": "K/O Paper Products", "id": 7296}], "release_date": "2013-11-01", "popularity": 1.46562526181296, "original_title": "Ender's Game", "budget": 110000000, "cast": [{"name": "Asa Butterfield", "character": "Ender Wiggin", "id": 77996, "credit_id": "52fe47b29251416c91072cd3", "cast_id": 1, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Colonel Hyrum Graff", "id": 3, "credit_id": "52fe47b39251416c91072cdb", "cast_id": 3, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Hailee Steinfeld", "character": "Petra Arkanian", "id": 130640, "credit_id": "52fe47b29251416c91072cd7", "cast_id": 2, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 2}, {"name": "Abigail Breslin", "character": "Valentine Wiggin", "id": 17140, "credit_id": "52fe47b39251416c91072ce5", "cast_id": 6, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 3}, {"name": "Ben Kingsley", "character": "Mazer Rackham", "id": 2282, "credit_id": "52fe47b39251416c91072d0b", "cast_id": 16, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 4}, {"name": "Viola Davis", "character": "Major Gwen Anderson", "id": 19492, "credit_id": "52fe47b39251416c91072cfb", "cast_id": 13, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}, {"name": "Aramis Knight", "character": "Bean", "id": 204191, "credit_id": "52fe47b39251416c91072ce9", "cast_id": 7, "profile_path": "/8YwHVJtJGvSDg6leZDggV8xKPd8.jpg", "order": 6}, {"name": "Suraj Partha", "character": "Alai", "id": 1266195, "credit_id": "52fe47b39251416c91072d0f", "cast_id": 17, "profile_path": "/nSJG3b1XnAh0XTToI2teAoCciYV.jpg", "order": 7}, {"name": "Mois\u00e9s Arias", "character": "Bonzo Madrid", "id": 57412, "credit_id": "52fe47b39251416c91072ced", "cast_id": 8, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 8}, {"name": "Khylin Rhambo", "character": "Dink Meeker", "id": 994016, "credit_id": "530298759251412198416a7a", "cast_id": 34, "profile_path": "/p3uMyMyAZrTerFdTkhwjrSTW6v1.jpg", "order": 9}, {"name": "Jimmy \"Jax\" Pinchak", "character": "Peter Wiggin", "id": 284628, "credit_id": "52fe47b39251416c91072cf1", "cast_id": 9, "profile_path": "/ztVfjHJ9fbuzgQVUKVPQvEsVCRK.jpg", "order": 10}, {"name": "Conor Carroll", "character": "Bernard", "id": 84409, "credit_id": "52fe47b39251416c91072d17", "cast_id": 19, "profile_path": "/f3CCrxgBoLRD3CtWapsGwlRnZkQ.jpg", "order": 11}, {"name": "Nonso Anozie", "character": "Sergeant Dap", "id": 43547, "credit_id": "54f058b99251417961007d82", "cast_id": 144, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 12}, {"name": "Stevie Ray Dallimore", "character": "John Wiggin", "id": 155077, "credit_id": "54f059009251417974007ed6", "cast_id": 145, "profile_path": null, "order": 13}, {"name": "Andrea Powell", "character": "Theresa Wiggin", "id": 106949, "credit_id": "54f05921925141795f00828b", "cast_id": 146, "profile_path": "/62rV4dGQTW7G4wZcSsD6AoVul5L.jpg", "order": 14}, {"name": "Brandon Soo Hoo", "character": "Fly Molo", "id": 1115122, "credit_id": "54f0594cc3a3682e5000126a", "cast_id": 147, "profile_path": "/yZse73nxYlk9Ypr5r43PUkpuZGB.jpg", "order": 15}, {"name": "Han Soto", "character": "Lieutenant Soto", "id": 1116011, "credit_id": "54f05981c3a3687be2001548", "cast_id": 148, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 16}, {"name": "Tony Mirrcandani", "character": "Admiral Chjamrajnagar", "id": 1116145, "credit_id": "54f059a69251417971007ecf", "cast_id": 149, "profile_path": null, "order": 17}], "directors": [{"name": "Gavin Hood", "department": "Directing", "job": "Director", "credit_id": "52fe47b39251416c91072ce1", "profile_path": "/1W4NlD5YpGHnXdD2HGeG9bWSqYV.jpg", "id": 13079}], "vote_average": 6.7, "runtime": 114}, "80278": {"poster_path": "/h2VxS5qjkoiHFOBSYJOWSKIc737.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 130708631, "overview": "In December 2004, close-knit family Maria (Naomi Watts), Henry (Ewan McGregor) and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.", "video": false, "id": 80278, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Impossible", "tagline": "Nothing is more powerful than the human spirit.", "vote_count": 634, "homepage": "http://www.loimposible-lapelicula.com/#trailer", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1649419", "adult": false, "backdrop_path": "/r6LI3kLwRUMiyoo5HofgOIlnNCI.jpg", "production_companies": [{"name": "Apaches Entertainment", "id": 8111}, {"name": "Mediaset Espa\u00f1a", "id": 21632}, {"name": "Summit Entertainment", "id": 491}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Canal+ Espa\u00f1a", "id": 9335}], "release_date": "2012-10-11", "popularity": 0.927236443861116, "original_title": "Lo imposible", "budget": 42000000, "cast": [{"name": "Naomi Watts", "character": "Maria", "id": 3489, "credit_id": "52fe47b39251416c91072e37", "cast_id": 3, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Henry", "id": 3061, "credit_id": "52fe47b39251416c91072e33", "cast_id": 2, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Marta Etura ", "character": "Simone", "id": 587930, "credit_id": "52fe47b39251416c91072e3b", "cast_id": 4, "profile_path": "/oeJdzgkM4u6rnay5zkjlK11deSG.jpg", "order": 2}, {"name": "Geraldine Chaplin", "character": "Old Woman", "id": 400, "credit_id": "52fe47b39251416c91072e3f", "cast_id": 5, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 3}, {"name": "Tom Holland", "character": "Lucas", "id": 1136406, "credit_id": "52fe47b39251416c91072e55", "cast_id": 10, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 4}, {"name": "S\u00f6nke M\u00f6hring", "character": "Karl", "id": 147446, "credit_id": "52fe47b39251416c91072e59", "cast_id": 11, "profile_path": "/bFu7ecYD1ts7m0qO5pxeRndGhAK.jpg", "order": 5}, {"name": "Ploy Jindachote", "character": "Caregiver", "id": 1026231, "credit_id": "52fe47b39251416c91072e5d", "cast_id": 12, "profile_path": "/67WyPlFCHD2E1wtn9U2rWhogEO.jpg", "order": 6}], "directors": [{"name": "Juan Antonio Bayona", "department": "Directing", "job": "Director", "credit_id": "52fe47b39251416c91072e2f", "profile_path": "/wBsdjDeNy9IEGlQ4God71IOmlOC.jpg", "id": 51894}], "vote_average": 6.8, "runtime": 113}, "80280": {"poster_path": "/xVo5vRdq8siODzQTBCbmYaihqre.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 10158047, "overview": "The action now takes place miles away from the original location and partly in broad daylight, giving the film an entirely fresh yet disturbing new reality. The infection has left the building. In a clever twist that draws together the plots of the first two movies, this third part of the saga also works as a decoder to uncover information hidden in the first two films and leaves the door open for the final installment, the future '[REC] 4 Apocalypse.'", "video": false, "id": 80280, "genres": [{"id": 27, "name": "Horror"}], "title": "[REC]\u00b3 Genesis", "tagline": "You may kiss the bride.", "vote_count": 76, "homepage": "http://www.magnetreleasing.com/rec3/", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ca", "name": "Catal\u00e0"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1649444", "adult": false, "backdrop_path": "/uGICpuXLa64Pq4iTbidFU4WUUxf.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2012-03-30", "popularity": 0.779315305833807, "original_title": "[REC]\u00b3 G\u00e9nesis", "budget": 0, "cast": [{"name": "Leticia Dolera", "character": "Clara", "id": 45060, "credit_id": "52fe47b39251416c91072eaf", "cast_id": 2, "profile_path": "/6YH2rpENETOqi6iRI66Sbr54hvJ.jpg", "order": 0}, {"name": "Javier Botet", "character": "Ni\u00f1a Medeiros", "id": 111090, "credit_id": "52fe47b39251416c91072eb3", "cast_id": 3, "profile_path": "/4u8ZkMMt5ipQgfpb81YudFW5rQG.jpg", "order": 1}, {"name": "Diego Mart\u00edn", "character": "Koldo", "id": 126771, "credit_id": "52fe47b39251416c91072eb7", "cast_id": 4, "profile_path": "/4WKXdMHCmjgEleKBFccr7KWW3Du.jpg", "order": 2}, {"name": "Ismael Mart\u00ednez", "character": "Rafa", "id": 141018, "credit_id": "52fe47b39251416c91072ef1", "cast_id": 14, "profile_path": "/pcTml82WwCSwJcL04mhtQbE4NpA.jpg", "order": 3}, {"name": "\u00c0lex Monner", "character": "Adri\u00e1n", "id": 1031744, "credit_id": "52fe47b49251416c91072ef5", "cast_id": 15, "profile_path": "/yIoNNRAjCIam5HNb3bcoWCB9ybN.jpg", "order": 4}, {"name": "Carla Nieto", "character": "Rebeca Vi\u00f1as", "id": 1031745, "credit_id": "52fe47b49251416c91072ef9", "cast_id": 16, "profile_path": "/17IbDzKeU6e6GyprBoLKQRKdRPN.jpg", "order": 5}, {"name": "Claire Baschet", "character": "Natalie", "id": 1031746, "credit_id": "52fe47b49251416c91072efd", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Mireia Ros", "character": "Menchu", "id": 256062, "credit_id": "52fe47b49251416c91072f01", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ana Isabel Vel\u00e1squez", "character": "Wendy", "id": 1031748, "credit_id": "52fe47b49251416c91072f05", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Emilio Mencheta", "character": "T\u00edo V\u00edctor", "id": 1031749, "credit_id": "52fe47b49251416c91072f09", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Jose Mellinas", "character": "", "id": 1149925, "credit_id": "52fe47b49251416c91072f0d", "cast_id": 21, "profile_path": null, "order": 10}], "directors": [{"name": "Paco Plaza", "department": "Directing", "job": "Director", "credit_id": "52fe47b39251416c91072eab", "profile_path": "/kj5tBKhLcC8PcZHwGerEMZakXi5.jpg", "id": 54526}], "vote_average": 4.8, "runtime": 80}, "6557": {"poster_path": "/ausIGc4Mm7eHCRaqI197EmWWv7Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160300000, "overview": "After serving as a bridesmaid 27 times, a young woman wrestles with the idea of standing by her sister's side as her sibling marries the man she's secretly in love with.", "video": false, "id": 6557, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "27 Dresses", "tagline": "She's about to find the perfect fit.", "vote_count": 254, "homepage": "http://www.27dressesthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0988595", "adult": false, "backdrop_path": "/jwV0wmhEqHGxM5nrOPO0ifQug56.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2008-01-10", "popularity": 0.651281485998258, "original_title": "27 Dresses", "budget": 30000000, "cast": [{"name": "Katherine Heigl", "character": "Jane", "id": 25541, "credit_id": "52fe445bc3a36847f8091235", "cast_id": 14, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "James Marsden", "character": "Kevin", "id": 11006, "credit_id": "52fe445bc3a36847f8091239", "cast_id": 15, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Malin Akerman", "character": "Tess", "id": 50463, "credit_id": "52fe445bc3a36847f809123d", "cast_id": 16, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 2}, {"name": "Judy Greer", "character": "Casey", "id": 20750, "credit_id": "52fe445bc3a36847f8091241", "cast_id": 17, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 3}, {"name": "Edward Burns", "character": "George", "id": 12833, "credit_id": "52fe445bc3a36847f8091245", "cast_id": 18, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 4}, {"name": "Brian Kerwin", "character": "Hal", "id": 50464, "credit_id": "52fe445bc3a36847f8091249", "cast_id": 19, "profile_path": "/cC69Vc7F59RKBZUldffhWJWx57A.jpg", "order": 5}, {"name": "Michael Ziegfeld", "character": "Taxi Fahrer Khaleel", "id": 50465, "credit_id": "52fe445bc3a36847f809124d", "cast_id": 20, "profile_path": "/z9chWF86RtEEfEJyY0GvxzxYEM6.jpg", "order": 6}, {"name": "Melora Hardin", "character": "Maureen", "id": 404, "credit_id": "52fe445bc3a36847f8091251", "cast_id": 21, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 7}, {"name": "David Castro", "character": "Pedro", "id": 50466, "credit_id": "52fe445bc3a36847f8091255", "cast_id": 22, "profile_path": "/9qcalPZ5g1A7zid5VueB77Yq6kq.jpg", "order": 8}, {"name": "Peyton List", "character": "Young Jane", "id": 1254435, "credit_id": "52fe445bc3a36847f8091277", "cast_id": 32, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 9}, {"name": "Jennifer Lim", "character": "Bridal Salesgirl", "id": 1154564, "credit_id": "52fe445bc3a36847f809125f", "cast_id": 25, "profile_path": "/2sxWwQIbR9dyYzYlI95gaZFT0jK.jpg", "order": 10}, {"name": "Danielle Skraastad", "character": "Bride Suzanne", "id": 209730, "credit_id": "52fe445bc3a36847f8091263", "cast_id": 26, "profile_path": "/rsG8yVlPQbR0jAh6SJU8uL8sbgr.jpg", "order": 11}, {"name": "Yetta Gottesman", "character": "Hip Bridesmaid", "id": 203430, "credit_id": "52fe445bc3a36847f8091267", "cast_id": 27, "profile_path": "/k9Ocag8HH6osMpoqRceskNvEk8f.jpg", "order": 12}, {"name": "Erin Fogel", "character": "Shari Rabinowitz", "id": 993689, "credit_id": "52fe445bc3a36847f809126b", "cast_id": 28, "profile_path": "/lE4sLFKOYjJWeVh0U3q1LQVCC3H.jpg", "order": 13}, {"name": "Bern Cohen", "character": "Rabbi", "id": 550851, "credit_id": "52fe445bc3a36847f809126f", "cast_id": 29, "profile_path": "/oj0Gz4UnFr3K3EHX0jIx9fM1Ofc.jpg", "order": 14}, {"name": "Maulik Pancholy", "character": "Trent", "id": 1214403, "credit_id": "52fe445bc3a36847f809127b", "cast_id": 33, "profile_path": "/z0MJgOgDyViARuDT9u3Wo9VyY5W.jpg", "order": 15}, {"name": "Krysten Ritter", "character": "Gina the Goth", "id": 78080, "credit_id": "52fe445bc3a36847f8091273", "cast_id": 31, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 16}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe445ac3a36847f80911ef", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 5.9, "runtime": 111}, "22947": {"poster_path": "/mlH82Vp7U6sKTS0Rqm4ZU61CypY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163670000, "overview": "George Clooney plays the dry cynical character of Ryan Bingham, an executive who specializes in \"downsizing\". Ryan lives out of his suitcase, traveling the country for the sole purpose terminating unwanted employees day after day. Just as Ryan is about to reach his life-long goal of the ten million mile frequent flyer mark some major changes come his way. Changes that threaten to crack the cold heartless exterior that is Ryan Bingham.", "video": false, "id": 22947, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Up in the Air", "tagline": "The story of a man ready to make a connection.", "vote_count": 380, "homepage": "http://www.theupintheairmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1193138", "adult": false, "backdrop_path": "/nlCfq030puwR9P98gBJ4rRK7LUF.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2009-09-05", "popularity": 0.583327333511754, "original_title": "Up in the Air", "budget": 25000000, "cast": [{"name": "George Clooney", "character": "Ryan Bingham", "id": 1461, "credit_id": "52fe4457c3a368484e01d815", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Vera Farmiga", "character": "Alex", "id": 21657, "credit_id": "52fe4457c3a368484e01d819", "cast_id": 5, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Natalie", "id": 84223, "credit_id": "52fe4457c3a368484e01d81d", "cast_id": 6, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Jason Bateman", "character": "Craig Gregory", "id": 23532, "credit_id": "52fe4457c3a368484e01d821", "cast_id": 7, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 3}, {"name": "Melanie Lynskey", "character": "Julie Bingham", "id": 15091, "credit_id": "52fe4457c3a368484e01d825", "cast_id": 8, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 4}, {"name": "Sam Elliott", "character": "Maynard Finch", "id": 16431, "credit_id": "52fe4457c3a368484e01d829", "cast_id": 11, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 6}, {"name": "Amy Morton", "character": "Kara Bingham", "id": 26930, "credit_id": "52fe4457c3a368484e01d82d", "cast_id": 12, "profile_path": "/cf0V37Bw9BX2jlBCxrVETz0jkcl.jpg", "order": 7}, {"name": "J.K. Simmons", "character": "Bob", "id": 18999, "credit_id": "52fe4457c3a368484e01d831", "cast_id": 13, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 8}, {"name": "Danny McBride", "character": "Jim Miller", "id": 62862, "credit_id": "52fe4457c3a368484e01d835", "cast_id": 15, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 9}, {"name": "Zach Galifianakis", "character": "Steve", "id": 58225, "credit_id": "52fe4457c3a368484e01d839", "cast_id": 16, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 10}, {"name": "Steve Eastin", "character": "Samuels", "id": 9276, "credit_id": "52fe4457c3a368484e01d83d", "cast_id": 18, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 11}, {"name": "Adrienne Lamping", "character": "Tammy", "id": 142384, "credit_id": "52fe4457c3a368484e01d841", "cast_id": 19, "profile_path": "/mVuTnyGto4EEcb45JbrvAc9hy1h.jpg", "order": 12}, {"name": "Tamala Jones", "character": "Karen Barnes", "id": 59154, "credit_id": "52fe4457c3a368484e01d845", "cast_id": 20, "profile_path": "/gG0PHm94ArObvF8LqbuoaWP2ye5.jpg", "order": 13}, {"name": "Chris Lowell", "character": "Kevin", "id": 84300, "credit_id": "52fe4457c3a368484e01d849", "cast_id": 21, "profile_path": "/7j5M2vrnMBE0dEHKPQECiE8WSCe.jpg", "order": 14}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a368484e01d805", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.5, "runtime": 109}, "14756": {"poster_path": "/8knFfuqW289DJi2cpPl4RVTDkbo.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 21888598, "overview": "A semi-biographical account of Yip Man, the first martial arts master to teach the Chinese martial art of Wing Chun. The film focuses on events surrounding Ip that took place in the city of Foshan between the 1930s to 1940s during the Second Sino-Japanese War. Directed by Wilson Yip, the film stars Donnie Yen in the lead role, and features fight choreography by Sammo Hung.", "video": false, "id": 14756, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ip Man", "tagline": "The celebrated Kung Fu master of Bruce Lee.", "vote_count": 584, "homepage": "http://www.ipman-movie.com/", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1220719", "adult": false, "backdrop_path": "/lcRGF2RpurdvBiSQVocfzRrxV9u.jpg", "production_companies": [{"name": "Mandarin Films Distribution Co.", "id": 4054}], "release_date": "2008-12-12", "popularity": 1.16459915469272, "original_title": "\u8449\u554f", "budget": 11715578, "cast": [{"name": "Donnie Yen", "character": "Ip Man", "id": 1341, "credit_id": "52fe46169251416c7506caa3", "cast_id": 9, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 0}, {"name": "Simon Yam", "character": "Chow Ching-Chuen", "id": 20519, "credit_id": "52fe46169251416c7506ca7b", "cast_id": 1, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 1}, {"name": "Xing Yu", "character": "Master Zealot Lin", "id": 78878, "credit_id": "52fe46169251416c7506caa7", "cast_id": 10, "profile_path": "/thV1sYGuyGe2DJhOJzxjZCiJDlx.jpg", "order": 2}, {"name": "Wong Yau-Nam", "character": "Shao Dan Yuan", "id": 105422, "credit_id": "52fe46169251416c7506caab", "cast_id": 11, "profile_path": "/4UmBIDgFWcCL2eIW4beTpIGNOOI.jpg", "order": 3}, {"name": "Chen Zhi Hui", "character": "Master Liao", "id": 224927, "credit_id": "52fe46169251416c7506caaf", "cast_id": 12, "profile_path": "/2xvVLsDA8x2ezMZLwvOpbfIf1TB.jpg", "order": 4}, {"name": "Gordon Lam Ka-Tung", "character": "Captain Lei Chiu", "id": 83820, "credit_id": "52fe46169251416c7506cab9", "cast_id": 14, "profile_path": "/oG1viIlfpK4MXaPQSqJwJSi5u1M.jpg", "order": 5}, {"name": "Lynn Hung", "character": "Cheung Wing-Sing", "id": 117760, "credit_id": "52fe46169251416c7506cabd", "cast_id": 16, "profile_path": "/fcpvkrle1JA944eylXERw3gqgus.jpg", "order": 6}, {"name": "Hiroyuki Ikeuchi", "character": "Miura", "id": 234641, "credit_id": "52fe46169251416c7506cac1", "cast_id": 17, "profile_path": "/ebgO93vtBz8xskTh5QMC1UMkShD.jpg", "order": 7}, {"name": "Fan Siu-Wong", "character": "Jin Shan Zhao / Kam Shan-Chau", "id": 130598, "credit_id": "52fe46169251416c7506cac5", "cast_id": 18, "profile_path": "/tFfXqPjqhVItv5lkUVtSMbw1SPd.jpg", "order": 8}, {"name": "Tenma Shibuya", "character": "Colonel Sato", "id": 1360176, "credit_id": "5407370c0e0a261882001751", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Wilson Yip", "department": "Directing", "job": "Director", "credit_id": "52fe46169251416c7506ca81", "profile_path": "/6TDvEZYjxBLqZW6ER5fBi8d0ydK.jpg", "id": 63571}], "vote_average": 7.3, "runtime": 108}, "9286": {"poster_path": "/fO7QneBmdE9dEJUewiYMfsEp3IL.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117719158, "overview": "In this third installment of the Final Destination series, a student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself which seeks out those who escaped their fate.", "video": false, "id": 9286, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Final Destination 3", "tagline": "This Ride Will Be The Death Of You.", "vote_count": 267, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414982", "adult": false, "backdrop_path": "/6sCto39wgQGCzDojAr5c4UPBjDZ.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Zide-Perry Productions", "id": 3169}, {"name": "Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 1 KG", "id": 12067}, {"name": "Hard Eight Pictures", "id": 48772}, {"name": "Matinee Pictures", "id": 48785}, {"name": "Practical Pictures", "id": 48788}], "release_date": "2006-02-10", "popularity": 0.66330952786043, "original_title": "Final Destination 3", "budget": 25000000, "cast": [{"name": "Mary Elizabeth Winstead", "character": "Wendy Christensen", "id": 17628, "credit_id": "52fe44e1c3a36847f80afabf", "cast_id": 11, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 0}, {"name": "Ryan Merriman", "character": "Kevin Fischer", "id": 57136, "credit_id": "52fe44e1c3a36847f80afac3", "cast_id": 12, "profile_path": "/sdo2IMtBRjiIJOLpmBrebAJaF89.jpg", "order": 1}, {"name": "Kris Lemche", "character": "Ian McKinley", "id": 20176, "credit_id": "52fe44e1c3a36847f80afac7", "cast_id": 13, "profile_path": "/tugdbJ5M7wTNb6v52jqhEkWNDtu.jpg", "order": 2}, {"name": "Alexz Johnson", "character": "Erin Ulmer", "id": 57137, "credit_id": "52fe44e1c3a36847f80afacb", "cast_id": 14, "profile_path": "/eqdre0uSyBI1Nf5Ru6k19pO2HVf.jpg", "order": 3}, {"name": "Sam Easton", "character": "Frankie Cheeks", "id": 37700, "credit_id": "52fe44e1c3a36847f80afacf", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Jesse Moss", "character": "Jason Wise", "id": 59926, "credit_id": "52fe44e1c3a36847f80afad3", "cast_id": 16, "profile_path": "/d4FY9ZdC5imLXq3wp6eCBUjy8vq.jpg", "order": 5}, {"name": "Gina Holden", "character": "Carrie Dreyer", "id": 33336, "credit_id": "52fe44e1c3a36847f80afad7", "cast_id": 17, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 6}, {"name": "Texas Battle", "character": "Lewis Romero", "id": 53185, "credit_id": "52fe44e1c3a36847f80afadb", "cast_id": 18, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 7}, {"name": "Chelan Simmons", "character": "Ashley Freund", "id": 27775, "credit_id": "52fe44e1c3a36847f80afadf", "cast_id": 19, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 8}, {"name": "Crystal Lowe", "character": "Ashlyn Halperin", "id": 58393, "credit_id": "52fe44e1c3a36847f80afae3", "cast_id": 20, "profile_path": "/qnD1hQSJNrKPWZaiYFrUGUfZLBV.jpg", "order": 9}, {"name": "Amanda Crew", "character": "Julie Christensen", "id": 58370, "credit_id": "52fe44e1c3a36847f80afae7", "cast_id": 21, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 10}, {"name": "Ecstasia Sanders", "character": "Amber Regan", "id": 77052, "credit_id": "52fe44e1c3a36847f80afaef", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Jody Racicot", "character": "Bludworth", "id": 33339, "credit_id": "52fe44e1c3a36847f80afaf3", "cast_id": 24, "profile_path": "/aayVafgphvhN4aHOBVxA6sI88t6.jpg", "order": 13}, {"name": "Patrick Gallagher", "character": "Colquitt", "id": 17837, "credit_id": "52fe44e2c3a36847f80afaf7", "cast_id": 25, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 14}, {"name": "Maggie Ma", "character": "Perry Malinowski", "id": 59247, "credit_id": "54e9d8c3c3a36836ed004122", "cast_id": 28, "profile_path": "/leaxTMd5VihtWO5BhOC2R7wWTck.jpg", "order": 15}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80afa85", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 5.6, "runtime": 93}, "162215": {"poster_path": "/p2uUWeuPTePuofay6oClacXnHrC.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "An American girl on holiday in the English countryside with her family finds herself in hiding and fighting for her survival as war breaks out.", "video": false, "id": 162215, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "How I Live Now", "tagline": "Love will lead you home", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1894476", "adult": false, "backdrop_path": "/4jrOUW5EA5NSMnXIJXUcK4Bny9n.jpg", "production_companies": [{"name": "BFI Film Fund", "id": 16877}, {"name": "Passion Pictures", "id": 11594}, {"name": "Cowboy Films", "id": 245}], "release_date": "2013-11-08", "popularity": 1.01857082515443, "original_title": "How I Live Now", "budget": 0, "cast": [{"name": "Saoirse Ronan", "character": "Daisy", "id": 36592, "credit_id": "52fe4c56c3a36847f8229329", "cast_id": 1, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Tom Holland", "character": "Isaac", "id": 1136406, "credit_id": "52fe4c56c3a36847f822932d", "cast_id": 2, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 1}, {"name": "Anna Chancellor", "character": "Aunt Penn", "id": 10731, "credit_id": "52fe4c56c3a36847f8229331", "cast_id": 3, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 2}, {"name": "George MacKay", "character": "Eddie", "id": 146750, "credit_id": "52fe4c56c3a36847f822933b", "cast_id": 5, "profile_path": "/8V5uGgbl57gbAyj59kIRFFdvoXd.jpg", "order": 3}, {"name": "Corey Johnson", "character": "Consular Official", "id": 17199, "credit_id": "52fe4c56c3a36847f822933f", "cast_id": 6, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 4}, {"name": "Sophie Ellis", "character": "Farm Girl", "id": 1198487, "credit_id": "52fe4c56c3a36847f8229343", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Harley Bird", "character": "Piper", "id": 1198488, "credit_id": "52fe4c56c3a36847f8229347", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Sabrina Dickens", "character": "Guerilla Soldier Girlfriend", "id": 1198489, "credit_id": "52fe4c56c3a36847f822934b", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Natasha Jones", "character": "Woman in Truck", "id": 1198490, "credit_id": "52fe4c56c3a36847f822934f", "cast_id": 10, "profile_path": null, "order": 8}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe4c56c3a36847f8229337", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 6.4, "runtime": 101}, "55721": {"poster_path": "/x5ucaJZ4FP589Gn3I8l3ZFV3Nl8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 206686000, "overview": "Annie\u2019s life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian\u2019s maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she\u2019ll show Lillian and her bridesmaids just how far you\u2019ll go for someone you love.", "video": false, "id": 55721, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bridesmaids", "tagline": "Save the date", "vote_count": 437, "homepage": "http://www.bridesmaidsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1478338", "adult": false, "backdrop_path": "/1J6s0TW6nhfjwoffzDL98Synw5H.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}], "release_date": "2011-04-28", "popularity": 0.632209276973591, "original_title": "Bridesmaids", "budget": 32500000, "cast": [{"name": "Kristen Wiig", "character": "Annie", "id": 41091, "credit_id": "52fe48dcc3a36847f817d667", "cast_id": 4, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Helen", "id": 9827, "credit_id": "52fe48dcc3a36847f817d65f", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Jon Hamm", "character": "Ted", "id": 65717, "credit_id": "52fe48dcc3a36847f817d663", "cast_id": 3, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 2}, {"name": "Melissa McCarthy", "character": "Megan", "id": 55536, "credit_id": "52fe48dcc3a36847f817d66b", "cast_id": 5, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 3}, {"name": "Maya Rudolph", "character": "Lillian", "id": 52792, "credit_id": "52fe48dcc3a36847f817d67b", "cast_id": 8, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 4}, {"name": "Chris O'Dowd", "character": "Officer Rhodes", "id": 40477, "credit_id": "52fe48dcc3a36847f817d67f", "cast_id": 9, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 5}, {"name": "Ellie Kemper", "character": "Becca", "id": 475512, "credit_id": "52fe48ddc3a36847f817d68f", "cast_id": 12, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 6}, {"name": "Jessica St. Clair", "character": "Whitney", "id": 200237, "credit_id": "52fe48ddc3a36847f817d693", "cast_id": 13, "profile_path": "/wdYjtfUHGtUV55U9iK1E3E2Do4q.jpg", "order": 7}, {"name": "Tom Yi", "character": "Jewelry Store Couple", "id": 305993, "credit_id": "52fe48ddc3a36847f817d697", "cast_id": 14, "profile_path": "/9PQ91swJgHLJsoVZkcKGfd9NWgw.jpg", "order": 8}, {"name": "Elaine Kao", "character": "Jewelry Store Couple", "id": 117775, "credit_id": "52fe48ddc3a36847f817d69b", "cast_id": 15, "profile_path": "/esREDboeuXIrtXHLEroKHrDoVNe.jpg", "order": 9}, {"name": "Michael Hitchcock", "character": "Don Cholodecki", "id": 75463, "credit_id": "52fe48ddc3a36847f817d69f", "cast_id": 16, "profile_path": "/6OuyZXfWMJ82c96VHOOLU1xFPG0.jpg", "order": 10}, {"name": "Kali Hawk", "character": "Kahlua", "id": 89462, "credit_id": "52fe48ddc3a36847f817d6a3", "cast_id": 17, "profile_path": "/kx8aBd8FcC1gqWQ2OMV63hFza2Z.jpg", "order": 11}, {"name": "Joe Nunez", "character": "Oscar the Security Guard", "id": 54696, "credit_id": "52fe48ddc3a36847f817d6a7", "cast_id": 18, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 12}, {"name": "Rebel Wilson", "character": "Brynn", "id": 221581, "credit_id": "52fe48ddc3a36847f817d6ab", "cast_id": 19, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 13}, {"name": "Matt Lucas", "character": "Gil", "id": 26209, "credit_id": "52fe48ddc3a36847f817d6af", "cast_id": 20, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 14}, {"name": "Jill Clayburgh", "character": "Annie's Mom", "id": 20362, "credit_id": "52fe48ddc3a36847f817d6b3", "cast_id": 21, "profile_path": "/twrfhIvbqHuJ7nXVpehvU6nyi6R.jpg", "order": 15}, {"name": "Wendi McLendon-Covey", "character": "Rita", "id": 63234, "credit_id": "52fe48ddc3a36847f817d6b7", "cast_id": 22, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 16}, {"name": "Greg Tuculescu", "character": "Kevin", "id": 570559, "credit_id": "52fe48ddc3a36847f817d6bb", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Terry Crews", "character": "Boot Camp Instructor", "id": 53256, "credit_id": "52fe48ddc3a36847f817d6bf", "cast_id": 24, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 18}, {"name": "Carnie Wilson", "character": "Carnie Wilson", "id": 1186394, "credit_id": "52fe48ddc3a36847f817d6cf", "cast_id": 27, "profile_path": "/mjZW1ykrZjWlS52cyZEVnCtOpSy.jpg", "order": 19}, {"name": "Wendy Wilson", "character": "Wendy Wilson", "id": 1186421, "credit_id": "52fe48ddc3a36847f817d6d3", "cast_id": 28, "profile_path": "/ps3sXdFTSCoY2wgN0g7qU661CI2.jpg", "order": 20}, {"name": "Chynna Philips", "character": "Chynna Philips", "id": 1186422, "credit_id": "52fe48ddc3a36847f817d6d7", "cast_id": 29, "profile_path": "/xIk4incToGSiWSPiMKvDsSNMqLE.jpg", "order": 21}, {"name": "Brennan Crewe", "character": "", "id": 1192944, "credit_id": "52fe48ddc3a36847f817d6db", "cast_id": 30, "profile_path": "/6REyDX6OIDtFeEAhzxdS1ZumJgn.jpg", "order": 22}, {"name": "Mia Rose Frampton", "character": "Jewelry Store Girl", "id": 1169063, "credit_id": "533b4e139251413bad0002f2", "cast_id": 31, "profile_path": "/3wUGNSzifgTMfRjT9w7kuOoccvH.jpg", "order": 23}], "directors": [{"name": "Paul Feig", "department": "Directing", "job": "Director", "credit_id": "52fe48dcc3a36847f817d65b", "profile_path": "/6CI4revRSc9qCy6kVlyGntHblcI.jpg", "id": 116805}], "vote_average": 6.4, "runtime": 125}, "22954": {"poster_path": "/esOAiQi9jLb9JyLIyLt2JuVd8fa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 122233971, "overview": "Newly elected President Nelson Mandela knows his nation remains racially and economically divided in the wake of apartheid. Believing he can bring his people together through the universal language of sport, Mandela rallies South Africa's rugby team as they make their historic run to the 1995 Rugby World Cup Championship match.", "video": false, "id": 22954, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Invictus", "tagline": "His people needed a leader. He gave them a champion.", "vote_count": 299, "homepage": "http://invictusmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1057500", "adult": false, "backdrop_path": "/xYBKpoSlw2bkk515alcFwoGiigc.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Revelations Entertainment", "id": 906}], "release_date": "2009-12-10", "popularity": 1.13433981100608, "original_title": "Invictus", "budget": 50000000, "cast": [{"name": "Morgan Freeman", "character": "Nelson Mandela", "id": 192, "credit_id": "52fe4457c3a368484e01d931", "cast_id": 3, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Matt Damon", "character": "Francois Pienaar", "id": 1892, "credit_id": "52fe4457c3a368484e01d955", "cast_id": 13, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Tony Kgoroge", "character": "Jason Tshabalala", "id": 2606, "credit_id": "52fe4457c3a368484e01d935", "cast_id": 5, "profile_path": "/6SYs40gVJNmzKjz4kFQOwXG5BH6.jpg", "order": 2}, {"name": "Patrick Mofokeng", "character": "Linga Moonsamy", "id": 63136, "credit_id": "52fe4457c3a368484e01d939", "cast_id": 6, "profile_path": "/xLLSvpScEFg2oGShGww99JOwCo7.jpg", "order": 3}, {"name": "Matt Stern", "character": "Hendrick Booyens", "id": 109649, "credit_id": "52fe4457c3a368484e01d93d", "cast_id": 7, "profile_path": "/rtCVR8ajjLXuQ2Ss5DqpL1GsOG0.jpg", "order": 4}, {"name": "Julian Lewis Jones", "character": "Etienne Feyder", "id": 109650, "credit_id": "52fe4457c3a368484e01d941", "cast_id": 8, "profile_path": "/yYB4vsidFakP6oAfeXU3PZvDpM6.jpg", "order": 5}, {"name": "Adjoa Andoh", "character": "Brenda Mazibuko", "id": 109651, "credit_id": "52fe4457c3a368484e01d945", "cast_id": 9, "profile_path": "/oJ4JLVfcA7kEQGA5ZBAqbgNH6uw.jpg", "order": 6}, {"name": "Marguerite Wheatley", "character": "Nerine", "id": 109652, "credit_id": "52fe4457c3a368484e01d949", "cast_id": 10, "profile_path": "/rM7srhKg4fAlPCjEbndEz8bavXM.jpg", "order": 7}, {"name": "Leleti Khumalo", "character": "Mary", "id": 2609, "credit_id": "52fe4457c3a368484e01d94d", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Patrick Lyster", "character": "Mr. Pienaar", "id": 109653, "credit_id": "52fe4457c3a368484e01d951", "cast_id": 12, "profile_path": "/175ns2a0dS1Q8Dg3S9xlZKSH7ge.jpg", "order": 9}, {"name": "Scott Eastwood", "character": "Joel Stransky", "id": 928572, "credit_id": "52fe4457c3a368484e01d96b", "cast_id": 17, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 10}, {"name": "Langley Kirkwood", "character": "George", "id": 37093, "credit_id": "52fe4457c3a368484e01d96f", "cast_id": 18, "profile_path": "/tjX3GUBhLujP4s3KCM763V7bQge.jpg", "order": 11}, {"name": "Bonnie Henna", "character": "Zindzi", "id": 15544, "credit_id": "52fe4457c3a368484e01d9af", "cast_id": 32, "profile_path": "/5MMvcT7PIIXl0PrOrnaOvx7tu0j.jpg", "order": 12}, {"name": "Danny Keough", "character": "Rugby President", "id": 93919, "credit_id": "52fe4457c3a368484e01d9b3", "cast_id": 33, "profile_path": "/uTxupzSk2IpTIHrhyybPkXR4P8K.jpg", "order": 13}, {"name": "Robin Smith", "character": "Johan De Villiers", "id": 1071690, "credit_id": "52fe4457c3a368484e01d9b7", "cast_id": 34, "profile_path": "/lBYwXNeGupuaFWsxqnoJmpCTTVZ.jpg", "order": 14}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a368484e01d927", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.9, "runtime": 134}, "72113": {"poster_path": "/1nhY2l0SffJ5nK8FaeiRaMblN3d.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Brooklyn Bridge Park, eleven year old Zachary Cowan strikes his eleven year old classmate Ethan Longstreet across the face with a stick after an argument. Among the more serious of Ethan's injuries is a permanently missing tooth and the possibility of a second tooth also being lost. Their respective parents learn of the altercation through Ethan's parents questioning him about his injuries. The Longstreet parents invite the Cowan parents to their Brooklyn apartment to deal with the incident in a civilized manner. They are: Penelope Longstreet, whose idea it was to invite the Cowans, she whose priorities in life include human rights and justice; Michael Longstreet, who tries to be as accommodating as possible to retain civility in any situation; Nancy Cowan, a nervous and emotionally stressed woman; and Alan Cowan, who is married more to his work as evidenced by the attachment he has to his cell phone and taking work calls at the most inopportune times.", "video": false, "id": 72113, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Carnage", "tagline": "A new comedy of no manners", "vote_count": 158, "homepage": "http://www.sonyclassics.com/carnage/site/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1692486", "adult": false, "backdrop_path": "/wD1flEI4QYrFKAaDq0ymWlShGGe.jpg", "production_companies": [{"name": "Constantin Film Production", "id": 7158}], "release_date": "2011-09-16", "popularity": 0.639298230738854, "original_title": "Carnage", "budget": 0, "cast": [{"name": "Kate Winslet", "character": "Nancy", "id": 204, "credit_id": "52fe4859c3a368484e0f462b", "cast_id": 3, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Penelope", "id": 1038, "credit_id": "52fe4859c3a368484e0f462f", "cast_id": 4, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Christoph Waltz", "character": "Alan", "id": 27319, "credit_id": "52fe4859c3a368484e0f4633", "cast_id": 5, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 2}, {"name": "John C. Reilly", "character": "Michael", "id": 4764, "credit_id": "52fe4859c3a368484e0f4637", "cast_id": 7, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 3}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe4859c3a368484e0f4621", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 6.9, "runtime": 80}, "293299": {"poster_path": "/4XFN435sO7t9sMiWGMtWcV9qfmq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This Oscar-winning animated short film tells the story of one man's love life is seen through the eyes of his best friend and dog, Winston, and revealed bite by bite through the meals they share.", "video": false, "id": 293299, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Feast", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3689498", "adult": false, "backdrop_path": "/60cvl34Go8dvtDiHs9L82a79VXm.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2014-11-07", "popularity": 1.46769453386656, "original_title": "Feast", "budget": 0, "cast": [{"name": "Tommy Snider", "character": "James", "id": 204419, "credit_id": "54f825f292514124110041f9", "cast_id": 9, "profile_path": null, "order": 0}, {"name": "Katie Lowes", "character": "Additional Voices (voice)", "id": 108253, "credit_id": "54f8210ec3a36833bb003d51", "cast_id": 7, "profile_path": "/yn29ZcNXEyFewrrNtcCpyBfjXnR.jpg", "order": 2}, {"name": "Ben Bledsoe", "character": "Additional Voices", "id": 989809, "credit_id": "54f9071a9251414a06000488", "cast_id": 10, "profile_path": "/urbnSojnuamgoqwHzO2UzqAqo8L.jpg", "order": 4}], "directors": [{"name": "Patrick Osborne", "department": "Directing", "job": "Director", "credit_id": "54197dffc3a3686da70014bc", "profile_path": null, "id": 1364881}], "vote_average": 8.5, "runtime": 6}, "22970": {"poster_path": "/t8cW3FSCDYCaWRiNHSvI6SDuWeA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66486080, "overview": "Five college friends spend the weekend at a remote cabin in the woods, where they get more than they bargained for. Together, they must discover the truth behind the cabin in the woods.", "video": false, "id": 22970, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Cabin in the Woods", "tagline": "If you hear a strange sound outside... have sex", "vote_count": 798, "homepage": "http://www.discoverthecabininthewoods.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1259521", "adult": false, "backdrop_path": "/214TKe8WBBbFXVrBRV9RECeE4oW.jpg", "production_companies": [{"name": "LionsGate", "id": 7571}, {"name": "Mutant Enemy Productions", "id": 10567}], "release_date": "2012-04-12", "popularity": 1.65939020703361, "original_title": "The Cabin in the Woods", "budget": 30000000, "cast": [{"name": "Kristen Connolly", "character": "Dana Polk", "id": 210824, "credit_id": "52fe4458c3a368484e01dc0b", "cast_id": 9, "profile_path": "/lP7rReayiC5hDhJJjCwUy3IFfTC.jpg", "order": 0}, {"name": "Chris Hemsworth", "character": "Curt Vaughn", "id": 74568, "credit_id": "52fe4458c3a368484e01dc03", "cast_id": 7, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 1}, {"name": "Anna Hutchison", "character": "Jules Louden", "id": 486603, "credit_id": "52fe4458c3a368484e01dc17", "cast_id": 12, "profile_path": "/8yAMcrMbWZS8DXpuoelIM7PxZBR.jpg", "order": 2}, {"name": "Fran Kranz", "character": "Marty Mikalski", "id": 51533, "credit_id": "52fe4458c3a368484e01dc07", "cast_id": 8, "profile_path": "/rcd82G7YYnJNhA9Vz0bMOmM4dAK.jpg", "order": 3}, {"name": "Jesse Williams", "character": "Holden McCrea", "id": 210695, "credit_id": "52fe4458c3a368484e01dbff", "cast_id": 6, "profile_path": "/9nOsvWaXwKzHVeSbb7N6YzhAzty.jpg", "order": 4}, {"name": "Richard Jenkins", "character": "Richard Sitterson", "id": 28633, "credit_id": "52fe4458c3a368484e01dbf7", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 5}, {"name": "Bradley Whitford", "character": "Steve Hadley", "id": 11367, "credit_id": "52fe4458c3a368484e01dbfb", "cast_id": 5, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "Brian J. White", "character": "Daniel Truman (as Brian White)", "id": 31137, "credit_id": "52fe4458c3a368484e01dc0f", "cast_id": 10, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 7}, {"name": "Amy Acker", "character": "Wendy Lin", "id": 81133, "credit_id": "52fe4458c3a368484e01dc13", "cast_id": 11, "profile_path": "/dEjVHDwZ50VUjH9rxHjoKqrfA9e.jpg", "order": 8}, {"name": "Tim De Zarn", "character": "Mordecai (as Tim DeZarn)", "id": 956719, "credit_id": "52fe4458c3a368484e01dc47", "cast_id": 21, "profile_path": "/bvj6Kaq1VzAEBkqCGVDvOaQKOhi.jpg", "order": 9}, {"name": "Tom Lenk", "character": "Ronald The Intern", "id": 62849, "credit_id": "52fe4458c3a368484e01dc6d", "cast_id": 28, "profile_path": "/nXCTMTV3pTgpMlpIKwQrZk6stQ6.jpg", "order": 10}, {"name": "Dan Payne", "character": "Matthew Buckner", "id": 85505, "credit_id": "52fe4458c3a368484e01dc71", "cast_id": 29, "profile_path": "/fbp4DoIjJqTe7GnnD5sTirKnto5.jpg", "order": 11}, {"name": "Jodelle Ferland", "character": "Patience Buckner", "id": 8338, "credit_id": "52fe4458c3a368484e01dc21", "cast_id": 14, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 12}, {"name": "Dan Shea", "character": "Father Buckner", "id": 1222908, "credit_id": "52fe4458c3a368484e01dc75", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Maya Massar", "character": "Mother Buckner", "id": 172997, "credit_id": "52fe4458c3a368484e01dc79", "cast_id": 31, "profile_path": "/wEqC0RkeyTVmknuKZKL5RQYuqIe.jpg", "order": 14}, {"name": "Matt Drake", "character": "Judah Buckner", "id": 1275701, "credit_id": "52fe4458c3a368484e01dc7d", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Nels Lennarson", "character": "Clean Man", "id": 63564, "credit_id": "52fe4458c3a368484e01dc81", "cast_id": 33, "profile_path": "/fA6Qt7EdoVO4kLWyg4KneFSIPwl.jpg", "order": 16}, {"name": "Rukiya Bernard", "character": "Labcoat Girl", "id": 83948, "credit_id": "52fe4458c3a368484e01dc85", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Peter Kelamis", "character": "Demo Guy", "id": 89551, "credit_id": "52fe4458c3a368484e01dc89", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Adrian Holmes", "character": "Demo Guy", "id": 33348, "credit_id": "52fe4458c3a368484e01dc8d", "cast_id": 36, "profile_path": "/jGvsYbrvsok5QAYEJ9V8VHvDy9I.jpg", "order": 19}, {"name": "Chelah Horsdal", "character": "Demo Girl", "id": 70175, "credit_id": "52fe4458c3a368484e01dc91", "cast_id": 37, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 20}, {"name": "Terry Chen", "character": "Operations Guy", "id": 11677, "credit_id": "52fe4458c3a368484e01dc95", "cast_id": 38, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 21}, {"name": "Heather Doerksen", "character": "Accountant", "id": 83423, "credit_id": "52fe4458c3a368484e01dc99", "cast_id": 39, "profile_path": "/nIF1GLQ2WPGS5pdogVGhOm2nYmh.jpg", "order": 22}, {"name": "Patrick Sabongui", "character": "Elevator Guard", "id": 102742, "credit_id": "52fe4458c3a368484e01dc9d", "cast_id": 40, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 23}, {"name": "Phillip Mitchell", "character": "Lead Guard", "id": 158390, "credit_id": "52fe4458c3a368484e01dca1", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Naomi Dane", "character": "Japanese Floaty Girl", "id": 111933, "credit_id": "52fe4458c3a368484e01dca5", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Ellie Harvie", "character": "Military Liaison", "id": 158644, "credit_id": "52fe4458c3a368484e01dca9", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Patrick Gilmore", "character": "Werewolf Wrangler", "id": 76828, "credit_id": "52fe4458c3a368484e01dcad", "cast_id": 44, "profile_path": "/iIODRkPruE6Lh2EccZhsW3KU3h5.jpg", "order": 27}, {"name": "Brad Dryborough", "character": "Chem Department Guy", "id": 172836, "credit_id": "52fe4458c3a368484e01dcb1", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Emili Kawashima", "character": "Japanese Frog Girl", "id": 1275703, "credit_id": "52fe4458c3a368484e01dcb5", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Aya Furukawa", "character": "Japanese School Girl", "id": 1275704, "credit_id": "52fe4458c3a368484e01dcb9", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Maria Go", "character": "Japanese School Girl", "id": 1275705, "credit_id": "52fe4458c3a368484e01dcbd", "cast_id": 48, "profile_path": null, "order": 31}, {"name": "Serena Akane Chi", "character": "Japanese School Girl", "id": 1275706, "credit_id": "52fe4458c3a368484e01dcc1", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Abbey Imai", "character": "Japanese School Girl", "id": 1275707, "credit_id": "52fe4458c3a368484e01dcc5", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Marina Ishibashi", "character": "Japanese School Girl", "id": 1275708, "credit_id": "52fe4458c3a368484e01dcc9", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Miku Katsuura", "character": "Japanese School Girl", "id": 1275709, "credit_id": "52fe4458c3a368484e01dccd", "cast_id": 52, "profile_path": null, "order": 35}, {"name": "Alicia Takase Lui", "character": "Japanese School Girl", "id": 1275711, "credit_id": "52fe4458c3a368484e01dcd1", "cast_id": 53, "profile_path": null, "order": 36}, {"name": "Jodi Tabuchi", "character": "Japanese School Girl", "id": 1275712, "credit_id": "52fe4458c3a368484e01dcd5", "cast_id": 54, "profile_path": null, "order": 37}, {"name": "Sara Taira", "character": "Japanese School Girl", "id": 1275713, "credit_id": "52fe4458c3a368484e01dcd9", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Alyssandra Yamamoto", "character": "Japanese School Girl", "id": 1275714, "credit_id": "52fe4458c3a368484e01dcdd", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Richard Cetrone", "character": "Werewolf/Merman", "id": 12371, "credit_id": "52fe4458c3a368484e01dce1", "cast_id": 57, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 40}, {"name": "Phoebe Galvan", "character": "Sugarplum Fairy", "id": 1275715, "credit_id": "52fe4458c3a368484e01dce5", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Simon Pidgeon", "character": "Dismemberment Goblin", "id": 190232, "credit_id": "52fe4458c3a368484e01dce9", "cast_id": 59, "profile_path": null, "order": 42}, {"name": "Matt Phillips", "character": "Dismemberment Goblin", "id": 168815, "credit_id": "52fe4458c3a368484e01dced", "cast_id": 60, "profile_path": null, "order": 43}, {"name": "Lori Stewart", "character": "Floating Witch", "id": 196686, "credit_id": "52fe4458c3a368484e01dcf1", "cast_id": 61, "profile_path": null, "order": 44}, {"name": "Greg Zach", "character": "Fornicus, Lord of Bondage and Pain (as Gregory Zach)", "id": 1275716, "credit_id": "52fe4458c3a368484e01dcf5", "cast_id": 62, "profile_path": null, "order": 45}, {"name": "Sigourney Weaver", "character": "The Director", "id": 10205, "credit_id": "52fe4458c3a368484e01dc43", "cast_id": 20, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 46}, {"name": "Terry Notary", "character": "The Clown (uncredited)", "id": 236696, "credit_id": "52fe4458c3a368484e01dc57", "cast_id": 24, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 47}], "directors": [{"name": "Drew Goddard", "department": "Directing", "job": "Director", "credit_id": "52fe4458c3a368484e01dbe7", "profile_path": "/j5Le3QQljdGJ3kPAcjAZr9V4QUC.jpg", "id": 47506}], "vote_average": 6.3, "runtime": 95}, "211387": {"poster_path": "/eiw4sh6ieAVuJq6E1bSHQkZPfwm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The film takes place one year after the events of Captain America: The First Avenger, in which Agent Carter, a member of the Strategic Scientific Reserve, is in search of the mysterious Zodiac.", "video": false, "id": 211387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Marvel One-Shot: Agent Carter", "tagline": "In an all-new Captain America adventure", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 334164, "name": "Marvel One-Shot"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3067038", "adult": false, "backdrop_path": "/jpMVir4cCQJbtmruzpNd12yJj7Y.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2013-09-23", "popularity": 0.831067635491939, "original_title": "Marvel One-Shot: Agent Carter", "budget": 0, "cast": [{"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "52fe4d93c3a368484e1f0d05", "cast_id": 2, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Howard Stark", "id": 55470, "credit_id": "52fe4d93c3a368484e1f0d09", "cast_id": 3, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Greg Haines", "character": "Agent Johnson", "id": 1195388, "credit_id": "52fe4d93c3a368484e1f0d0d", "cast_id": 4, "profile_path": "/rF2FgRw3ujROyrbwLkfBzGxzu7N.jpg", "order": 2}, {"name": "Neal McDonough", "character": "Timothy 'Dum Dum' Dugan", "id": 2203, "credit_id": "52fe4d93c3a368484e1f0d11", "cast_id": 5, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 3}, {"name": "Bradley Whitford", "character": "Agent Flynn", "id": 11367, "credit_id": "52fe4d93c3a368484e1f0d15", "cast_id": 6, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 4}, {"name": "Shane Black", "character": "(voice)", "id": 1108, "credit_id": "52fe4d93c3a368484e1f0d19", "cast_id": 7, "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "order": 5}, {"name": "Tim Trobec", "character": "Hefty Guard", "id": 1294882, "credit_id": "5305f5bb92514134a21e7fef", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Jon Barinholtz", "character": "Analyst", "id": 1294883, "credit_id": "5305f5ca925141349a200d7a", "cast_id": 9, "profile_path": null, "order": 7}], "directors": [{"name": "Louis D'Esposito", "department": "Directing", "job": "Director", "credit_id": "52fe4d93c3a368484e1f0d01", "profile_path": null, "id": 57027}], "vote_average": 7.8, "runtime": 15}, "22972": {"poster_path": "/7O3IkeHvp1sq5yMN0O8FsTee1C0.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94882889, "overview": "During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors were dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.", "video": false, "id": 22972, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Green Zone", "tagline": "Chief Warrant Officer Roy Miller is done following orders", "vote_count": 242, "homepage": "http://www.greenzonemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0947810", "adult": false, "backdrop_path": "/lxxkBvUqfCDTh5o4Ny0RQ3CNwlG.jpg", "production_companies": [{"name": "Dentsu", "id": 6452}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2010-03-11", "popularity": 0.793315074472797, "original_title": "Green Zone", "budget": 100000000, "cast": [{"name": "Matt Damon", "character": "Roy Miller", "id": 1892, "credit_id": "52fe4458c3a368484e01de3b", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Clark Poundstone", "id": 17141, "credit_id": "52fe4458c3a368484e01de43", "cast_id": 5, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Brendan Gleeson", "character": "Martin Brown", "id": 2039, "credit_id": "52fe4459c3a368484e01df37", "cast_id": 61, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 2}, {"name": "Amy Ryan", "character": "Lawrie Dayne", "id": 39388, "credit_id": "52fe4458c3a368484e01de47", "cast_id": 6, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 3}, {"name": "Jason Isaacs", "character": "Maj. Briggs", "id": 11355, "credit_id": "52fe4458c3a368484e01de3f", "cast_id": 4, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 4}, {"name": "Khalid Abdalla", "character": "Freddy", "id": 53480, "credit_id": "52fe4458c3a368484e01de4b", "cast_id": 7, "profile_path": "/hGeH9kjx7vRxeLi7yTz8zxPcRMF.jpg", "order": 5}, {"name": "Yigal Naor", "character": "General Al Rawi", "id": 41316, "credit_id": "52fe4459c3a368484e01e027", "cast_id": 120, "profile_path": "/fywzghy8kLToNRH4OvrLkFSuXqA.jpg", "order": 6}, {"name": "Antoni Corone", "character": "Col. Lyons", "id": 20562, "credit_id": "52fe4458c3a368484e01de4f", "cast_id": 8, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 7}, {"name": "Said Faraj", "character": "Seyyed Hamza", "id": 109670, "credit_id": "52fe4459c3a368484e01decb", "cast_id": 32, "profile_path": "/kC26rThX0RbOHzddmSdhqVqnxrF.jpg", "order": 8}, {"name": "Michael O'Neill", "character": "Colonel Bethel", "id": 21710, "credit_id": "52fe4459c3a368484e01e031", "cast_id": 122, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 9}, {"name": "Jerry Della Salla", "character": "Wilkins", "id": 122281, "credit_id": "52fe4459c3a368484e01dedb", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Faycal Attougui", "character": "Al Rawi Bodyguard", "id": 122279, "credit_id": "52fe4459c3a368484e01decf", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Aymen Hamdouchi", "character": "Ayad Hamza", "id": 122280, "credit_id": "52fe4459c3a368484e01ded3", "cast_id": 34, "profile_path": "/rwqlYbVbdPUpFhx21jCvZAD6wxX.jpg", "order": 12}, {"name": "Nicoye Banks", "character": "Perry", "id": 93131, "credit_id": "52fe4459c3a368484e01ded7", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Sean Huze", "character": "Conway", "id": 122282, "credit_id": "52fe4459c3a368484e01dedf", "cast_id": 37, "profile_path": "/tR4TVQlKpg9PZ3QKXgJpa2A9fdS.jpg", "order": 14}, {"name": "Michael Dwyer", "character": "Met-D", "id": 18995, "credit_id": "52fe4459c3a368484e01dee3", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Edouard H.R. Gluck", "character": "Met-D", "id": 122283, "credit_id": "52fe4459c3a368484e01dee7", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Brian Siefkes", "character": "Met-D", "id": 122285, "credit_id": "52fe4459c3a368484e01deeb", "cast_id": 40, "profile_path": "/gH3q3HTHGlyNYkb4vhFkHgHtcMj.jpg", "order": 17}, {"name": "Adam Wendling", "character": "Met-D", "id": 122286, "credit_id": "52fe4459c3a368484e01deef", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Abdul Henderson", "character": "Met-D", "id": 122287, "credit_id": "52fe4459c3a368484e01def3", "cast_id": 42, "profile_path": "/7quLCDs2977yk1VuM5D8VgqIPsV.jpg", "order": 19}, {"name": "Paul Karsko", "character": "Met-D", "id": 122288, "credit_id": "52fe4459c3a368484e01def7", "cast_id": 43, "profile_path": null, "order": 20}, {"name": "Robert Miller", "character": "Met-D", "id": 1426429, "credit_id": "54dcf7b2c3a3682252000046", "cast_id": 125, "profile_path": null, "order": 21}, {"name": "Eugene Cherry", "character": "Met-D", "id": 122289, "credit_id": "52fe4459c3a368484e01deff", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Alexander Drum", "character": "Met-D", "id": 122290, "credit_id": "52fe4459c3a368484e01df03", "cast_id": 46, "profile_path": null, "order": 23}, {"name": "Brian VanRiper", "character": "Met-D", "id": 122291, "credit_id": "52fe4459c3a368484e01df07", "cast_id": 47, "profile_path": "/3y9e7IFr1CMNW05jJ1H2dUYjQpQ.jpg", "order": 24}, {"name": "Matthew Knott", "character": "Met-D", "id": 122292, "credit_id": "52fe4459c3a368484e01df0b", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Nathan Lewis", "character": "Met-D", "id": 81672, "credit_id": "52fe4459c3a368484e01df0f", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "John Roberson", "character": "Infantery Sergeant", "id": 122293, "credit_id": "52fe4459c3a368484e01df13", "cast_id": 50, "profile_path": "/hPL55RJv5VuNU2bFuAtwXnMQvU1.jpg", "order": 27}, {"name": "Troy Brown", "character": "Soldier at WMD Site", "id": 122294, "credit_id": "52fe4459c3a368484e01df17", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "Raad Rawi", "character": "Ahmed Zubaidi", "id": 73710, "credit_id": "52fe4459c3a368484e01df1b", "cast_id": 52, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 29}, {"name": "Bijan Daneshmand", "character": "Zubaidi's Aide", "id": 122295, "credit_id": "52fe4459c3a368484e01df1f", "cast_id": 53, "profile_path": "/Alr2NQlyDT5Ji2encRiBiDGMGW1.jpg", "order": 30}, {"name": "Bryan Reents", "character": "Poundstone Aide", "id": 122296, "credit_id": "52fe4459c3a368484e01df23", "cast_id": 54, "profile_path": "/jG2djIJpg21105tC3syRUohtKIw.jpg", "order": 31}, {"name": "Michael Judge", "character": "JMOC Tech", "id": 122297, "credit_id": "52fe4459c3a368484e01df27", "cast_id": 55, "profile_path": null, "order": 32}, {"name": "Patrick St. Esprit", "character": "Military Intel 2 Star", "id": 117437, "credit_id": "52fe4459c3a368484e01df2b", "cast_id": 58, "profile_path": "/bcbLFQUGDcgrlbJz0blywlfGutL.jpg", "order": 33}, {"name": "Allen Vaught", "character": "Colonel Jonathan Vaught", "id": 122299, "credit_id": "52fe4459c3a368484e01df2f", "cast_id": 59, "profile_path": "/h1hl2AZTeZPpm8Owm5NXGXjgQBr.jpg", "order": 34}, {"name": "Paul Rieckhoff", "character": "Gonzales", "id": 122300, "credit_id": "52fe4459c3a368484e01df33", "cast_id": 60, "profile_path": null, "order": 35}, {"name": "Martin McDougall", "character": "Brown's Aide", "id": 36901, "credit_id": "52fe4459c3a368484e01df3b", "cast_id": 62, "profile_path": null, "order": 36}, {"name": "Antoni Corone", "character": "Colonel Lyons", "id": 20562, "credit_id": "52fe4459c3a368484e01df3f", "cast_id": 63, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 37}, {"name": "Timothy Ahern", "character": "General at VTC", "id": 122302, "credit_id": "52fe4459c3a368484e01df43", "cast_id": 64, "profile_path": null, "order": 38}, {"name": "Ben Sliney", "character": "Bureaucrat at VTC", "id": 122303, "credit_id": "52fe4459c3a368484e01df47", "cast_id": 65, "profile_path": "/vtJFIEtFCWAOJNfdmFp79gGpiWJ.jpg", "order": 39}, {"name": "Whitley Bruner", "character": "Senior CIA Man at VTC", "id": 122304, "credit_id": "52fe4459c3a368484e01df4b", "cast_id": 66, "profile_path": null, "order": 40}, {"name": "Khalid Abdalla", "character": "Freddy", "id": 53480, "credit_id": "52fe4459c3a368484e01df4f", "cast_id": 67, "profile_path": "/hGeH9kjx7vRxeLi7yTz8zxPcRMF.jpg", "order": 41}, {"name": "Intishal Al Timimi", "character": "Hawkish Iraqi", "id": 122305, "credit_id": "52fe4459c3a368484e01df53", "cast_id": 68, "profile_path": null, "order": 42}, {"name": "Driss Roukhe", "character": "Tahir al-Malik", "id": 122306, "credit_id": "52fe4459c3a368484e01df57", "cast_id": 69, "profile_path": null, "order": 43}, {"name": "Muayad Ali", "character": "Quasim", "id": 122307, "credit_id": "52fe4459c3a368484e01df5b", "cast_id": 70, "profile_path": null, "order": 44}, {"name": "Jamal Selmaoui", "character": "Hawkish Aide", "id": 122308, "credit_id": "52fe4459c3a368484e01df5f", "cast_id": 71, "profile_path": null, "order": 45}, {"name": "Mohamed Kafi", "character": "Iraqi Officer", "id": 105980, "credit_id": "52fe4459c3a368484e01df63", "cast_id": 72, "profile_path": null, "order": 46}, {"name": "Kadhum Sabur", "character": "Mystery Man", "id": 122309, "credit_id": "52fe4459c3a368484e01df67", "cast_id": 73, "profile_path": null, "order": 47}, {"name": "Hillal Boubker", "character": "Qasim Aide", "id": 122310, "credit_id": "52fe4459c3a368484e01df6b", "cast_id": 74, "profile_path": null, "order": 48}, {"name": "Soumaya Akaaboune", "character": "Sanaa", "id": 122311, "credit_id": "52fe4459c3a368484e01df6f", "cast_id": 75, "profile_path": null, "order": 49}, {"name": "Thamou El Metouani", "character": "Seyyed's Housekeeper", "id": 122312, "credit_id": "52fe4459c3a368484e01df73", "cast_id": 76, "profile_path": null, "order": 50}, {"name": "Salah Eddine Elamari", "character": "Seyyed's Son", "id": 122313, "credit_id": "52fe4459c3a368484e01df77", "cast_id": 77, "profile_path": null, "order": 51}, {"name": "Naji El Jouhary", "character": "Seyyed's Son", "id": 122314, "credit_id": "52fe4459c3a368484e01df7b", "cast_id": 78, "profile_path": null, "order": 52}, {"name": "Aroun Benchkaroun", "character": "Seyyed's Son", "id": 122315, "credit_id": "52fe4459c3a368484e01df7f", "cast_id": 79, "profile_path": null, "order": 53}, {"name": "Hajar Machroune", "character": "Seyyed's Daughter", "id": 122316, "credit_id": "52fe4459c3a368484e01df83", "cast_id": 80, "profile_path": null, "order": 54}, {"name": "Scott Berendes", "character": "TF221s", "id": 122317, "credit_id": "52fe4459c3a368484e01df87", "cast_id": 81, "profile_path": null, "order": 55}, {"name": "Abdelkrim Assad", "character": "TF221s", "id": 122318, "credit_id": "52fe4459c3a368484e01df8b", "cast_id": 82, "profile_path": "/tFTXAvMqs3FtyNLUhrPd8nYczDT.jpg", "order": 56}, {"name": "Michael Diaz", "character": "TF221s", "id": 122319, "credit_id": "52fe4459c3a368484e01df8f", "cast_id": 83, "profile_path": null, "order": 57}, {"name": "Tyler Christen", "character": "TF221s", "id": 122321, "credit_id": "52fe4459c3a368484e01df93", "cast_id": 85, "profile_path": null, "order": 58}, {"name": "Adam Mackey", "character": "TF221s", "id": 122322, "credit_id": "52fe4459c3a368484e01df97", "cast_id": 86, "profile_path": null, "order": 59}, {"name": "Ben Holland", "character": "TF221s", "id": 122323, "credit_id": "52fe4459c3a368484e01df9b", "cast_id": 87, "profile_path": null, "order": 60}, {"name": "Jeffrey John Carisalez", "character": "TF221s", "id": 122324, "credit_id": "52fe4459c3a368484e01df9f", "cast_id": 88, "profile_path": null, "order": 61}, {"name": "Jonathan Stone", "character": "TF221s", "id": 122325, "credit_id": "52fe4459c3a368484e01dfa3", "cast_id": 89, "profile_path": null, "order": 62}, {"name": "James Hodges", "character": "TF221s", "id": 122327, "credit_id": "52fe4459c3a368484e01dfa7", "cast_id": 90, "profile_path": null, "order": 63}, {"name": "Larry Lewis", "character": "TF221s", "id": 122328, "credit_id": "52fe4459c3a368484e01dfab", "cast_id": 91, "profile_path": null, "order": 64}, {"name": "William Oakes", "character": "Camp Cropper Tech", "id": 122329, "credit_id": "52fe4459c3a368484e01dfaf", "cast_id": 92, "profile_path": null, "order": 65}, {"name": "Ziad Adwan", "character": "Translator", "id": 122330, "credit_id": "52fe4459c3a368484e01dfb3", "cast_id": 93, "profile_path": null, "order": 66}, {"name": "Ian Bendel", "character": "Camp Cropper Guards", "id": 122331, "credit_id": "52fe4459c3a368484e01dfb7", "cast_id": 94, "profile_path": null, "order": 67}, {"name": "Venie Joshua", "character": "Camp Cropper Guards", "id": 122332, "credit_id": "52fe4459c3a368484e01dfbb", "cast_id": 95, "profile_path": null, "order": 68}, {"name": "Miguel Berroa", "character": "Camp Cropper Guards", "id": 122333, "credit_id": "52fe4459c3a368484e01dfbf", "cast_id": 96, "profile_path": null, "order": 69}, {"name": "Peter Shayhorn", "character": "Camp Cropper Guards", "id": 122334, "credit_id": "52fe4459c3a368484e01dfc3", "cast_id": 97, "profile_path": null, "order": 70}, {"name": "Miguel Palaugalarza", "character": "Camp Cropper Wardens", "id": 122335, "credit_id": "52fe4459c3a368484e01dfc7", "cast_id": 98, "profile_path": null, "order": 71}, {"name": "Christopher Lilly", "character": "Camp Cropper Wardens", "id": 122336, "credit_id": "52fe4459c3a368484e01dfcb", "cast_id": 99, "profile_path": null, "order": 72}, {"name": "Sabir Ed-Dayab", "character": "Iraqi Prisoner", "id": 122337, "credit_id": "52fe4459c3a368484e01dfcf", "cast_id": 100, "profile_path": null, "order": 73}, {"name": "Omar Berdouni", "character": "Righteous Ali", "id": 122338, "credit_id": "52fe4459c3a368484e01dfd3", "cast_id": 101, "profile_path": "/7xi3jrfet3wb1m2pjtlLNkgpZPt.jpg", "order": 74}, {"name": "Alex Moore", "character": "CIA Techs", "id": 122339, "credit_id": "52fe4459c3a368484e01dfd7", "cast_id": 102, "profile_path": "/dgSCGvKcc3qF1hVmV4pzGAdPxcW.jpg", "order": 75}, {"name": "Alistair Bailey", "character": "CIA Techs", "id": 122341, "credit_id": "52fe4459c3a368484e01dfdb", "cast_id": 103, "profile_path": null, "order": 76}, {"name": "Eric Loren", "character": "CIA Techs", "id": 113235, "credit_id": "52fe4459c3a368484e01dfdf", "cast_id": 104, "profile_path": null, "order": 77}, {"name": "Paul Cloutier", "character": "Special Forces Tech", "id": 122342, "credit_id": "52fe4459c3a368484e01dfe3", "cast_id": 105, "profile_path": null, "order": 78}, {"name": "Wallace Bagwell", "character": "Alpha Leader 1", "id": 122343, "credit_id": "52fe4459c3a368484e01dfe7", "cast_id": 106, "profile_path": null, "order": 79}, {"name": "William Meredith", "character": "CPA Presser", "id": 122344, "credit_id": "52fe4459c3a368484e01dfeb", "cast_id": 107, "profile_path": "/5AFiiW7d8MBsnhJhjcVE2LmlqPg.jpg", "order": 80}, {"name": "Tommy Campbell", "character": "Chopper Comms Commander", "id": 122345, "credit_id": "52fe4459c3a368484e01dfef", "cast_id": 108, "profile_path": "/pmg7YmD3Dib00CItssxpPVzQIP8.jpg", "order": 81}, {"name": "James Wills", "character": "Chopper Comms Tech", "id": 122346, "credit_id": "52fe4459c3a368484e01dff3", "cast_id": 109, "profile_path": null, "order": 82}, {"name": "Jered Bezemek", "character": "Convoy Commander", "id": 122347, "credit_id": "52fe4459c3a368484e01dff7", "cast_id": 110, "profile_path": null, "order": 83}, {"name": "Johnny Nilsson", "character": "Republican Palace Reporter", "id": 122349, "credit_id": "52fe4459c3a368484e01dffb", "cast_id": 111, "profile_path": null, "order": 84}, {"name": "Salman Hassan", "character": "Zubaide Conference Speaker #1", "id": 122350, "credit_id": "52fe4459c3a368484e01dfff", "cast_id": 112, "profile_path": null, "order": 85}, {"name": "Ammar Khdir", "character": "Zubaide Conference Speaker #2", "id": 122351, "credit_id": "52fe4459c3a368484e01e003", "cast_id": 113, "profile_path": null, "order": 86}, {"name": "Youssif Falah-Jassem", "character": "Zubaide Conference Speaker #3", "id": 122352, "credit_id": "52fe4459c3a368484e01e007", "cast_id": 114, "profile_path": null, "order": 87}, {"name": "Latif Al Anzi", "character": "Zubaide Conference Speaker #4", "id": 122353, "credit_id": "52fe4459c3a368484e01e00b", "cast_id": 115, "profile_path": null, "order": 88}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe4458c3a368484e01de31", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 6.2, "runtime": 115}, "14784": {"poster_path": "/pCeKYtVfljkU3C94xD8PO4EVVhv.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3648572, "overview": "In a hospital on the outskirts of 1920s Los Angeles, an injured stuntman begins to tell a fellow patient, a little girl with a broken arm, a fantastic story about 5 mythical heroes. Thanks to his fractured state of mind and her vivid imagination, the line between fiction and reality starts to blur as the tale advances.", "video": false, "id": 14784, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Fall", "tagline": "A little blessing in disguise.", "vote_count": 124, "homepage": "http://www.thefallthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0460791", "adult": false, "backdrop_path": "/pJA8TQ4c0X0EM4RXVYOHeSvuL3K.jpg", "production_companies": [{"name": "Roadside Attractions", "id": 911}, {"name": "Absolute Entertainment", "id": 3586}, {"name": "Googly Films", "id": 11150}, {"name": "Deep Films", "id": 11151}, {"name": "Radical Media", "id": 11152}, {"name": "Tree Top Films Inc.", "id": 11153}], "release_date": "2006-09-09", "popularity": 0.69940047914533, "original_title": "The Fall", "budget": 0, "cast": [{"name": "Catinca Untaru", "character": "Alexandria", "id": 77289, "credit_id": "52fe46189251416c7506cfab", "cast_id": 4, "profile_path": "/3fqgAApEYlj0BeduivJxkHFYyMs.jpg", "order": 0}, {"name": "Justine Waddell", "character": "Nurse Evelyn / Sister Evelyn", "id": 42705, "credit_id": "52fe46189251416c7506cfaf", "cast_id": 5, "profile_path": "/CjphDEmppD6a4X9R6ncQfAJFNv.jpg", "order": 1}, {"name": "Lee Pace", "character": "Roy Walker / Blue Bandit", "id": 72095, "credit_id": "52fe46189251416c7506cfb3", "cast_id": 6, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 2}, {"name": "Kim Uylenbroek", "character": "Doctor / Alexander The Great", "id": 77290, "credit_id": "52fe46189251416c7506cfb7", "cast_id": 7, "profile_path": "/eM3ZVulJJ2PuGQ3pm7m7BFmPhy0.jpg", "order": 3}, {"name": "Aiden Lithgow", "character": "Alexander's Messenger", "id": 77291, "credit_id": "52fe46189251416c7506cfbb", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Sean Gilder", "character": "Walt Purdy", "id": 77292, "credit_id": "52fe46189251416c7506cfbf", "cast_id": 9, "profile_path": "/3k9U78b90A93O5KtbSSb4QDOJ19.jpg", "order": 5}, {"name": "Ronald France", "character": "Otto", "id": 204112, "credit_id": "52fe46199251416c7506d065", "cast_id": 37, "profile_path": null, "order": 6}, {"name": "Andrew Roussouw", "character": "Mr. Sabatini", "id": 1127904, "credit_id": "52fe46199251416c7506d069", "cast_id": 38, "profile_path": null, "order": 7}, {"name": "Michael Huff", "character": "Dr. Whitaker", "id": 1050718, "credit_id": "52fe46199251416c7506d06d", "cast_id": 39, "profile_path": null, "order": 8}, {"name": "Grant Swanby", "character": "Father Augustine", "id": 67059, "credit_id": "52fe46199251416c7506d071", "cast_id": 40, "profile_path": null, "order": 9}, {"name": "Emil Hostina", "character": "Alexandria's Father / Blue Bandit", "id": 209884, "credit_id": "52fe46199251416c7506d075", "cast_id": 41, "profile_path": "/xbhDDWD7eoutHP795gpvpy2kjFV.jpg", "order": 10}, {"name": "Jeetu Verma", "character": "Indian / Orange Picker", "id": 956054, "credit_id": "52fe46199251416c7506d079", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "Leo Bill", "character": "Darwin / Orderly", "id": 29237, "credit_id": "52fe46199251416c7506d07d", "cast_id": 44, "profile_path": null, "order": 12}, {"name": "Marcus Wesley", "character": "Otta Benga / Ice Delivery Man", "id": 964325, "credit_id": "52fe46199251416c7506d081", "cast_id": 45, "profile_path": null, "order": 13}, {"name": "Ayesha Verman", "character": "Indian's Bride", "id": 1127905, "credit_id": "52fe46199251416c7506d085", "cast_id": 46, "profile_path": null, "order": 14}, {"name": "Robin Smith", "character": "Luigi / One Legged Actor", "id": 1071690, "credit_id": "52fe46199251416c7506d089", "cast_id": 47, "profile_path": "/lBYwXNeGupuaFWsxqnoJmpCTTVZ.jpg", "order": 15}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe46189251416c7506cfa7", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 7.9, "runtime": 117}, "80321": {"poster_path": "/q79YojIzPEUb0JaEpuzDbLJT3yv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 742000000, "overview": "Alex, Marty, Gloria and Melman are still trying to get back to the Big Apple and their beloved Central Park zoo, but first they need to find the penguins. When they travel to Monte Carlo, they attract the attention of Animal Control after gate crashing a party and are joined by the penguins, King Julian and Co., and the monkeys. How do a lion, zebra, hippo, giraffe, four penguins, two monkeys, three lemurs travel through Europe without attracting attention and get back to New York? They join a traveling circus. Their attempts to get back to New York are consistently hampered by the Captain of Animal Control who wants to make Alex part of her collection. Once they make it back to New York Marty, Alex, Gloria and Melman realize that they want to be part of the traveling circus.", "video": false, "id": 80321, "genres": [{"id": 16, "name": "Animation"}], "title": "Madagascar 3: Europe's Most Wanted", "tagline": "Six years ago, they disappeared without a trace. Next summer, they finally resurface.", "vote_count": 894, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1277953", "adult": false, "backdrop_path": "/uHnLhm4AybDCbz6sAVkxZKNNXV3.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2012-06-08", "popularity": 1.33889502720602, "original_title": "Madagascar 3: Europe's Most Wanted", "budget": 145000000, "cast": [{"name": "Ben Stiller", "character": "Alex", "id": 7399, "credit_id": "52fe47b79251416c91073785", "cast_id": 2, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Sacha Baron Cohen", "character": "King Julien XIII", "id": 6730, "credit_id": "52fe47b79251416c91073789", "cast_id": 3, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Melman", "id": 14409, "credit_id": "52fe47b89251416c9107378d", "cast_id": 4, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Frances McDormand", "character": "Captain Chantel DuBois", "id": 3910, "credit_id": "52fe47b89251416c910737c7", "cast_id": 14, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 3}, {"name": "Chris Rock", "character": "Marty", "id": 2632, "credit_id": "52fe47b89251416c910737cb", "cast_id": 15, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 4}, {"name": "Jada Pinkett Smith", "character": "Gloria", "id": 9575, "credit_id": "52fe47b89251416c910737cf", "cast_id": 16, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 5}, {"name": "John Di Maggio", "character": "Rico", "id": 31531, "credit_id": "52fe47b89251416c910737d3", "cast_id": 18, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 6}, {"name": "Cedric the Entertainer", "character": "Maurice", "id": 5726, "credit_id": "52fe47b89251416c910737d7", "cast_id": 19, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 7}, {"name": "Jessica Chastain", "character": "Gia", "id": 83002, "credit_id": "52fe47b89251416c910737e1", "cast_id": 22, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 8}, {"name": "Bryan Cranston", "character": "Vitaly", "id": 17419, "credit_id": "52fe47b89251416c910737e5", "cast_id": 23, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 9}, {"name": "Martin Short", "character": "Stefano", "id": 519, "credit_id": "52fe47b89251416c910737e9", "cast_id": 24, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 10}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe47b79251416c91073781", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe47b89251416c910737ef", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}, {"name": "Conrad Vernon", "department": "Directing", "job": "Director", "credit_id": "52fe47b89251416c910737f5", "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "id": 12080}], "vote_average": 6.4, "runtime": 93}, "227783": {"poster_path": "/rXdSfDu08cs0fU9S6l3AK1bJqy8.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 0, "overview": "Surly, a curmudgeon, independent squirrel is banished from his park and forced to survive in the city. Lucky for him, he stumbles on the one thing that may be able to save his life, and the rest of park community, as they gear up for winter - Maury's Nut Store.", "video": false, "id": 227783, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Nut Job", "tagline": "Let's Get Nuts!", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1821658", "adult": false, "backdrop_path": "/TCtQLLO9PRqCcPCFgpx77a3Pct.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Gulfstream Pictures", "id": 20788}, {"name": "Red Rover International", "id": 20789}, {"name": "ToonBox Entertainment", "id": 20790}], "release_date": "2014-01-17", "popularity": 1.50347375129445, "original_title": "The Nut Job", "budget": 0, "cast": [{"name": "Will Arnett", "character": "Surly", "id": 21200, "credit_id": "52fe4eb29251416c7515f36f", "cast_id": 1, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 0}, {"name": "Katherine Heigl", "character": "Andie", "id": 25541, "credit_id": "52fe4eb29251416c7515f373", "cast_id": 2, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 1}, {"name": "Brendan Fraser", "character": "Grayson", "id": 18269, "credit_id": "52fe4eb29251416c7515f377", "cast_id": 3, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 2}, {"name": "Liam Neeson", "character": "Raccoon", "id": 3896, "credit_id": "52fe4eb29251416c7515f37b", "cast_id": 4, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 3}, {"name": "Stephen Lang", "character": "King", "id": 32747, "credit_id": "52fe4eb29251416c7515f37f", "cast_id": 5, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 4}, {"name": "Sarah Gadon", "character": "Lana", "id": 190895, "credit_id": "52fe4eb29251416c7515f383", "cast_id": 6, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 5}, {"name": "Maya Rudolph", "character": "Precious", "id": 52792, "credit_id": "52fe4eb29251416c7515f39f", "cast_id": 11, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 6}, {"name": "Jeff Dunham", "character": "Mole", "id": 76982, "credit_id": "52fe4eb29251416c7515f3a3", "cast_id": 12, "profile_path": "/2xEF6hiAPSeObVAeUxH5SXV040F.jpg", "order": 7}, {"name": "Gabriel Iglesias", "character": "Jimmy", "id": 86498, "credit_id": "52fe4eb29251416c7515f3a7", "cast_id": 13, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 8}, {"name": "Scott Yaphe", "character": "Lucky", "id": 70445, "credit_id": "52fe4eb29251416c7515f3ab", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Joe Pingue", "character": "Johnny", "id": 86237, "credit_id": "52fe4eb29251416c7515f3af", "cast_id": 15, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Julie Lemieux", "character": "Girl Scout", "id": 1129487, "credit_id": "52fe4eb29251416c7515f3b3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Robert Tinkler", "character": "Redline/ Buddy", "id": 118814, "credit_id": "52fe4eb29251416c7515f3b7", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Peter Lepeniotis", "department": "Directing", "job": "Director", "credit_id": "52fe4eb29251416c7515f389", "profile_path": null, "id": 1262197}], "vote_average": 5.5, "runtime": 85}, "193612": {"poster_path": "/dlMln6CldiB5pt9vSSJBiNL83bh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A university student and some classmates are recruited to carry out a private experiment -- to create a poltergeist. Their subject: an alluring, but dangerously disturbed young woman. Their quest: to explore the dark energy that her damaged psyche might manifest. As the experiment unravels along with their sanity, the rogue PHD students, led by their determined professor, are soon confronted with a terrifying reality: they have triggered an unspeakable force with a power beyond all explanation.", "video": false, "id": 193612, "genres": [{"id": 27, "name": "Horror"}], "title": "The Quiet Ones", "tagline": "A shocking experiment. An unspeakable evil.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2235779", "adult": false, "backdrop_path": "/v5M3sr71qXWXZ44XzhDOHkxPxdW.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Hammer Film Productions", "id": 1314}, {"name": "Travelling Picture Show Company", "id": 20791}], "release_date": "2014-04-01", "popularity": 0.87821900716119, "original_title": "The Quiet Ones", "budget": 0, "cast": [{"name": "Jared Harris", "character": "Professor Coupland", "id": 15440, "credit_id": "52fe4cd39251416c911016a5", "cast_id": 2, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 0}, {"name": "Sam Claflin", "character": "Brian McNeil", "id": 237455, "credit_id": "52fe4cd39251416c911016a9", "cast_id": 3, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 1}, {"name": "Olivia Cooke", "character": "Jane Harper", "id": 1173984, "credit_id": "52fe4cd39251416c911016ad", "cast_id": 4, "profile_path": "/5C8XBogUpSPA2fk9YeiCDJzroLk.jpg", "order": 2}, {"name": "Erin Richards", "character": "Kristina Dalton", "id": 990300, "credit_id": "52fe4cd39251416c911016b1", "cast_id": 5, "profile_path": "/3oIHsTEFUJd1jpnfOguM5s7hI6E.jpg", "order": 3}, {"name": "Rory Fleck-Byrne", "character": "Harry Abrams", "id": 1267122, "credit_id": "52fe4cd39251416c911016b5", "cast_id": 6, "profile_path": "/cra6Pud2jFOBUbuslpg7VwGG4Ds.jpg", "order": 4}, {"name": "Laurie Calvert", "character": "Phillip", "id": 1267123, "credit_id": "52fe4cd39251416c911016b9", "cast_id": 7, "profile_path": "/vxMKhtLG7bCkHhlar7tJiM6OPs6.jpg", "order": 5}, {"name": "Max Pirkis", "character": "David Q", "id": 215661, "credit_id": "532c7dc69251413a78000001", "cast_id": 12, "profile_path": "/9NJw1YV4fcOTYQ8UOuIynmbu2rD.jpg", "order": 6}, {"name": "Richard Cunningham", "character": "Provost", "id": 1097456, "credit_id": "532c7dd39251413a7e000001", "cast_id": 13, "profile_path": "/jGo9wrCxV81pgNVkzO2B1Wnuett.jpg", "order": 7}, {"name": "Aldo Maland", "character": "young David Q", "id": 550553, "credit_id": "532c7dde9251413a81000005", "cast_id": 14, "profile_path": "/y8kWKeqEFozjllaFJ3OT5PvjBF6.jpg", "order": 8}], "directors": [{"name": "John Pogue", "department": "Directing", "job": "Director", "credit_id": "52fe4cd39251416c911016a1", "profile_path": null, "id": 59328}], "vote_average": 5.5, "runtime": 98}, "96721": {"poster_path": "/cjEepHZOZAwmK6nAj5jis6HV75E.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 90247624, "overview": "A biography of Formula 1 champion driver Niki Lauda and the 1976 crash that almost claimed his life. Mere weeks after the accident, he got behind the wheel to challenge his rival, James Hunt.", "video": false, "id": 96721, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Rush", "tagline": "Everyone's driven by something.", "vote_count": 693, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1979320", "adult": false, "backdrop_path": "/w41zFKYTsq4wf5QnQJWMXuzWl2F.jpg", "production_companies": [{"name": "Double Negative", "id": 31922}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Revolution Films", "id": 163}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-09-27", "popularity": 1.59740534728553, "original_title": "Rush", "budget": 38000000, "cast": [{"name": "Daniel Br\u00fchl", "character": "Niki Lauda", "id": 3872, "credit_id": "52fe49be9251416c750d20a7", "cast_id": 2, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 0}, {"name": "Chris Hemsworth", "character": "James Hunt", "id": 74568, "credit_id": "52fe49be9251416c750d20ab", "cast_id": 3, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Suzy Miller", "id": 59315, "credit_id": "52fe49be9251416c750d20af", "cast_id": 4, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Alexandra Maria Lara", "character": "Marlene Lauda", "id": 5644, "credit_id": "52fe49bf9251416c750d20b3", "cast_id": 5, "profile_path": "/aQS8gK9zJDu2eIUEHUIWqWFcTSj.jpg", "order": 3}, {"name": "Natalie Dormer", "character": "Gemma", "id": 58502, "credit_id": "52fe49bf9251416c750d20b7", "cast_id": 6, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 4}, {"name": "Christian McKay", "character": "Lord Hesketh", "id": 28478, "credit_id": "52fe49bf9251416c750d20bb", "cast_id": 7, "profile_path": "/sNzMFhhayZvBCYak24Y306xajA.jpg", "order": 5}, {"name": "Tom Wlaschiha", "character": "Harald Ertl", "id": 52639, "credit_id": "52fe49bf9251416c750d20c5", "cast_id": 9, "profile_path": "/uauUSlcDvrjSuH9rXavOwiYTMoV.jpg", "order": 6}, {"name": "Pierfrancesco Favino", "character": "Clay Regazzoni", "id": 17839, "credit_id": "52fe49bf9251416c750d20c9", "cast_id": 10, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 7}, {"name": "David Calder", "character": "Louis Stanley", "id": 10779, "credit_id": "52fe49bf9251416c750d20cd", "cast_id": 11, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 8}, {"name": "Stephen Mangan", "character": "Alastair Caldwell", "id": 21345, "credit_id": "52fe49bf9251416c750d20d1", "cast_id": 12, "profile_path": "/aVJZoNHIvHkwuTdEz53Bqn9pD6s.jpg", "order": 9}, {"name": "Alistair Petrie", "character": "Stirling Moss", "id": 56100, "credit_id": "52fe49bf9251416c750d20d5", "cast_id": 13, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 10}, {"name": "Julian Rhind-Tutt", "character": "Anthony 'Bubbles' Horsley", "id": 7031, "credit_id": "52fe49bf9251416c750d20d9", "cast_id": 14, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 11}, {"name": "Colin Stinton", "character": "Teddy Mayer", "id": 23608, "credit_id": "5305483e9251413491084d6e", "cast_id": 30, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 12}, {"name": "Jamie de Courcey", "character": "Harvey 'Doc' Postlethwaite", "id": 1294711, "credit_id": "530549129251413494094916", "cast_id": 31, "profile_path": "/L5I2BCkw0SljzRCffKWJ36s492.jpg", "order": 13}, {"name": "Ilario Calvo", "character": "Luca Di Montezemolo", "id": 1294712, "credit_id": "530549d1925141348e07f098", "cast_id": 32, "profile_path": "/jKuVxOWKOAA7BrhnPHBicLj5nDP.jpg", "order": 14}, {"name": "Patrick Baladi", "character": "John Hogan", "id": 43019, "credit_id": "53054af592514134940a13f8", "cast_id": 33, "profile_path": "/5l8DPsvvTvvSb3F52eXnyn8Xf8F.jpg", "order": 15}, {"name": "Vincent Riotta", "character": "Lauda's Mechanic", "id": 26669, "credit_id": "53054b1f925141348e08178c", "cast_id": 34, "profile_path": "/4xlR6xTLzzxv6yudPZOunAVmR9n.jpg", "order": 16}, {"name": "Martin Savage", "character": "McLaren Mechanic", "id": 30328, "credit_id": "53054c1a92514134880a1bc4", "cast_id": 35, "profile_path": "/7r3KEXwIQT8PPGxfqIgDNffMop3.jpg", "order": 17}, {"name": "Jamie Sives", "character": "BRM Mechanic", "id": 1833, "credit_id": "53054c56925141348509af9c", "cast_id": 36, "profile_path": "/92BcXrr2W7gZri6xVlLhpLLaPsf.jpg", "order": 18}, {"name": "James Norton", "character": "Guy Edwards", "id": 1205278, "credit_id": "53fcdd240e0a267a6c00b2cf", "cast_id": 37, "profile_path": "/rseiJUwdoDe1yNXgRROyAPo8NEA.jpg", "order": 19}, {"name": "Michael Vardian", "character": "German Press Officer", "id": 1426167, "credit_id": "54dbcfd1c3a3682f24002211", "cast_id": 38, "profile_path": "/zY4xOBvFDu9GZemU5FGSNg1MD6v.jpg", "order": 20}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe49be9251416c750d20a3", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 7.9, "runtime": 123}, "96724": {"poster_path": "/vueoajubjMMmDpcLOZnrU9wW95E.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 68929150, "overview": "Trapped in a loveless marriage, aristocrat Anna Karenina enters into a life-changing affair with the affluent Count Vronsky.", "video": false, "id": 96724, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Anna Karenina", "tagline": "An epic story of love.", "vote_count": 191, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1781769", "adult": false, "backdrop_path": "/uTu5sqOXPSIQ0WLedyHdr6l7F2D.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Universal Pictures", "id": 33}, {"name": "Focus Features", "id": 10146}], "release_date": "2012-09-06", "popularity": 0.485849249124643, "original_title": "Anna Karenina", "budget": 0, "cast": [{"name": "Keira Knightley", "character": "Anna Karenina", "id": 116, "credit_id": "52fe49bf9251416c750d2195", "cast_id": 4, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Jude Law", "character": "Alexei Karenin", "id": 9642, "credit_id": "52fe49bf9251416c750d2199", "cast_id": 5, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Aaron Taylor-Johnson", "character": "Count Vronsky", "id": 27428, "credit_id": "52fe49bf9251416c750d21a9", "cast_id": 9, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 2}, {"name": "Kelly Macdonald", "character": "Dolly", "id": 9015, "credit_id": "52fe49bf9251416c750d219d", "cast_id": 6, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 3}, {"name": "Matthew Macfadyen", "character": "Oblonsky", "id": 15576, "credit_id": "52fe49bf9251416c750d21a1", "cast_id": 7, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 4}, {"name": "Michelle Dockery", "character": "Princess Myagkaya", "id": 70904, "credit_id": "52fe49bf9251416c750d21a5", "cast_id": 8, "profile_path": "/lbXBpE9jUITuDWzI9YPOR6Ej1eq.jpg", "order": 5}, {"name": "Emily Watson", "character": "Countess Lydia", "id": 1639, "credit_id": "52fe49bf9251416c750d21ad", "cast_id": 10, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 6}, {"name": "Olivia Williams", "character": "Countess Vronskaya", "id": 11616, "credit_id": "52fe49bf9251416c750d21b1", "cast_id": 11, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 7}, {"name": "Ruth Wilson", "character": "Princess Betsy", "id": 47720, "credit_id": "52fe49bf9251416c750d21b5", "cast_id": 12, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 8}, {"name": "Holliday Grainger", "character": "The Baroness", "id": 302165, "credit_id": "52fe49bf9251416c750d21b9", "cast_id": 13, "profile_path": "/1DvpsjoDK2mTT4J7MzyHOqbIkXf.jpg", "order": 9}, {"name": "Alexandra Roach", "character": "Countess Nordston", "id": 237020, "credit_id": "52fe49bf9251416c750d21bd", "cast_id": 14, "profile_path": "/jWJlrPYvdDN2kMCWKDkDnnFm1mP.jpg", "order": 10}, {"name": "Domhnall Gleeson", "character": "Levin", "id": 93210, "credit_id": "52fe49bf9251416c750d21c1", "cast_id": 15, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 11}, {"name": "Alicia Vikander", "character": "Kitty", "id": 227454, "credit_id": "52fe49bf9251416c750d21c5", "cast_id": 16, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 12}, {"name": "Bill Skarsg\u00e5rd", "character": "Captain Machouten", "id": 137905, "credit_id": "52fe49bf9251416c750d21c9", "cast_id": 17, "profile_path": "/5tChIWkdTHdvR8IzjMeJosWsDuQ.jpg", "order": 13}, {"name": "Rapha\u00ebl Personnaz", "character": "Alexander", "id": 147041, "credit_id": "52fe49bf9251416c750d21cd", "cast_id": 18, "profile_path": "/y2RpQaWgFAxNkuXszSG3Diya1Kv.jpg", "order": 14}, {"name": "Eros Vlahos", "character": "Boris", "id": 81269, "credit_id": "52fe49bf9251416c750d21d1", "cast_id": 19, "profile_path": "/bif3MhLYabK4Qr4mpdi9viBHoxN.jpg", "order": 15}, {"name": "Kenneth Collard", "character": "Prince Tverskoy", "id": 997569, "credit_id": "52fe49bf9251416c750d21d5", "cast_id": 20, "profile_path": "/7w29ibbniZoMEkTYVtsxiNSLamf.jpg", "order": 16}, {"name": "Tannishtha Chatterjee", "character": "Masha", "id": 87297, "credit_id": "52fe49bf9251416c750d21d9", "cast_id": 21, "profile_path": "/fl6vKGFT4SilKJPH3oFdN1jwGoE.jpg", "order": 17}, {"name": "Hera Hilmar", "character": "Varya", "id": 586286, "credit_id": "52fe49bf9251416c750d21dd", "cast_id": 24, "profile_path": "/yYS5Q4xDdIv59t6UscDxsbCeHIU.jpg", "order": 18}, {"name": "John Bradley", "character": "Austrian Prince", "id": 1010135, "credit_id": "52fe49bf9251416c750d21e1", "cast_id": 27, "profile_path": "/NYYgcHhFNLOwYVAGePUq9NsV3N.jpg", "order": 19}, {"name": "Thomas Howes", "character": "Yashvin", "id": 224192, "credit_id": "52fe49bf9251416c750d21e5", "cast_id": 28, "profile_path": "/aEwvsQpuElqKrcNOBXdFejjsQa0.jpg", "order": 20}, {"name": "Shirley Henderson", "character": "Opera House Wife", "id": 1834, "credit_id": "52fe49bf9251416c750d21e9", "cast_id": 29, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 21}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe49bf9251416c750d2185", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.1, "runtime": 130}, "6615": {"poster_path": "/t8CjVSDVT5fy2AMZRwL0l9OCVhG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sometimes you find love where you'd least expect it. Just ask Lars, a sweet but quirky guy who thinks he's found the girl of his dreams in a life-sized doll named Bianca. Lars is completely content with his artificial girlfriend, but when he develops feelings for Margo, an attractive co-worker, Lars finds himself lost in a unique love triangle, hoping to somehow discover the real meaning of true love.", "video": false, "id": 6615, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Lars and the Real Girl", "tagline": "The search for true love begins outside the box.", "vote_count": 125, "homepage": "http://www.larsandtherealgirl-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0805564", "adult": false, "backdrop_path": "/g3u8v1uupvHZBcR48nlvI3lpQOc.jpg", "production_companies": [{"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Metro-Goldwyn-Mayer Pictures", "id": 6127}, {"name": "Lars Productions", "id": 19731}], "release_date": "2007-10-12", "popularity": 0.372222171627597, "original_title": "Lars and the Real Girl", "budget": 0, "cast": [{"name": "Ryan Gosling", "character": "Lars Lindstrom", "id": 30614, "credit_id": "52fe445ec3a36847f8091e1f", "cast_id": 13, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Emily Mortimer", "character": "Karin", "id": 1246, "credit_id": "52fe445ec3a36847f8091e23", "cast_id": 14, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 1}, {"name": "Paul Schneider", "character": "Gus", "id": 15684, "credit_id": "52fe445ec3a36847f8091e27", "cast_id": 15, "profile_path": "/u3FUCSYpivGpCliH22PJdCk2pIY.jpg", "order": 2}, {"name": "Kelli Garner", "character": "Margo", "id": 17442, "credit_id": "52fe445ec3a36847f8091e2b", "cast_id": 16, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 3}, {"name": "Lauren Ash", "character": "Holly", "id": 50773, "credit_id": "52fe445ec3a36847f8091e2f", "cast_id": 17, "profile_path": "/8VdUJzYSZJkLwYnNw71FcznAH3S.jpg", "order": 4}, {"name": "Patricia Clarkson", "character": "Dr. Dagmar Berman", "id": 1276, "credit_id": "52fe445ec3a36847f8091e33", "cast_id": 18, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 5}, {"name": "R. D. Reid", "character": "Reverend Bock", "id": 44183, "credit_id": "52fe445ec3a36847f8091e37", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Nancy Beatty", "character": "Mrs. Gruner", "id": 50774, "credit_id": "52fe445ec3a36847f8091e3b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Doug Lennox", "character": "Mr. Hofstedter", "id": 50775, "credit_id": "52fe445ec3a36847f8091e3f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Joe Bostick", "character": "Mr. Shaw", "id": 50776, "credit_id": "52fe445ec3a36847f8091e43", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Liz Gordon", "character": "Mrs. Schindler", "id": 50777, "credit_id": "52fe445ec3a36847f8091e47", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Nicky Guadagni", "character": "Mrs. Petersen", "id": 5889, "credit_id": "52fe445ec3a36847f8091e4b", "cast_id": 24, "profile_path": "/2HJwL5EmMQSggNKfO9xc6DANmL6.jpg", "order": 11}], "directors": [{"name": "Craig Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe445ec3a36847f8091de5", "profile_path": null, "id": 50767}], "vote_average": 7.1, "runtime": 106}, "6620": {"poster_path": "/7ITDmatHa2yf5UTzjwaKAvf3Xr6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Linus and David Larrabee are the two sons of a very wealthy family. Linus is all work -- busily running the family corporate empire, he has no time for a wife and family. David is all play -- technically he is employed by the family business, but never shows up for work, spends all his time entertaining, and has been married and divorced three times. Meanwhile, Sabrina Fairchild is the young, shy, and awkward daughter of the household chauffeur, who has been infatuated with David all her life, but David hardly notices her -- \"doesn't even know I exist\" -- until she goes away to Paris for two years, and returns an elegant, sophisticated, beautiful woman. Suddenly, she finds that she has captured David's attention, but just as she does so, she finds herself falling in love with Linus, and she finds that Linus is also falling in love with her.", "video": false, "id": 6620, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sabrina", "tagline": "...the chauffeur's daughter who learned her stuff in Paris", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0047437", "adult": false, "backdrop_path": "/nd7qPxPBVgqlixRXgjIHiOafNBf.jpg", "production_companies": [], "release_date": "1954-09-09", "popularity": 0.736643608966106, "original_title": "Sabrina", "budget": 0, "cast": [{"name": "Humphrey Bogart", "character": "Linus Larrabee", "id": 4110, "credit_id": "52fe445fc3a36847f8091fc9", "cast_id": 5, "profile_path": "/pxJrZluJHhbWRo2QXAG99FvXUi7.jpg", "order": 0}, {"name": "Audrey Hepburn", "character": "Sabrina Fairchild", "id": 1932, "credit_id": "52fe445fc3a36847f8091fcd", "cast_id": 6, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 1}, {"name": "William Holden", "character": "David Larrabee", "id": 8252, "credit_id": "52fe445fc3a36847f8091fd1", "cast_id": 7, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 2}, {"name": "Walter Hampden", "character": "Oliver Larrabee", "id": 50833, "credit_id": "52fe445fc3a36847f8091fd5", "cast_id": 8, "profile_path": "/mMEusAjmxvQ9kiH4fcyvvAbRDsA.jpg", "order": 3}, {"name": "John Williams", "character": "Thomas Fairchild", "id": 5182, "credit_id": "52fe445fc3a36847f8092007", "cast_id": 20, "profile_path": "/esXPldHaXSEz8dQmahcGz4VWJ8R.jpg", "order": 4}, {"name": "Joan Vohs", "character": "Gretchen Van Horn", "id": 50834, "credit_id": "52fe445fc3a36847f8091fdd", "cast_id": 10, "profile_path": "/mSDcZQMhT4lIxD1wyZ3uFHAhvV4.jpg", "order": 5}, {"name": "Martha Hyer", "character": "Elizabeth Tyson", "id": 16759, "credit_id": "52fe445fc3a36847f8091fd9", "cast_id": 9, "profile_path": "/pTYajZSqj8OIPuDbKWupC5AkOYi.jpg", "order": 6}, {"name": "Marcel Dalio", "character": "Baron St. Foritanel", "id": 4121, "credit_id": "52fe445fc3a36847f8091fe1", "cast_id": 11, "profile_path": "/1lrGhscbhXoqVHOAI8Iv1hNQMAd.jpg", "order": 7}, {"name": "Marcel Hillaire", "character": "Professor", "id": 50835, "credit_id": "52fe445fc3a36847f8091fe5", "cast_id": 12, "profile_path": "/kUt6flere8BdiQgh4ZKoCvFO7DX.jpg", "order": 8}, {"name": "Francis X. Bushman", "character": "Mr. Tyson", "id": 50837, "credit_id": "52fe445fc3a36847f8091fed", "cast_id": 14, "profile_path": "/3rCvbcgcjdMubVc6tXpAtkirq3H.jpg", "order": 9}, {"name": "Ellen Corby", "character": "Miss McCardie", "id": 5738, "credit_id": "52fe445fc3a36847f8091ff1", "cast_id": 15, "profile_path": "/sgVSpnL4dJ8d0Y273lonNM4GuHK.jpg", "order": 10}, {"name": "Nella Walker", "character": "Maude Larrabee", "id": 50836, "credit_id": "52fe445fc3a36847f8091fe9", "cast_id": 13, "profile_path": "/kl8WuqmPAuwqaOne9fod7kkwcTQ.jpg", "order": 11}, {"name": "Marjorie Bennett", "character": "Margaret", "id": 97257, "credit_id": "535d4d9f0e0a264fd80050ac", "cast_id": 24, "profile_path": "/cyY0ltPueaqENXEBnd0KWE5VHRd.jpg", "order": 12}, {"name": "Emory Parnell", "character": "Charles", "id": 124875, "credit_id": "535d4dae0e0a264fde0050ae", "cast_id": 25, "profile_path": "/1duv3EnZjZSz8jgtXGZS4MOArNK.jpg", "order": 13}, {"name": "Nancy Kulp", "character": "Jenny", "id": 30519, "credit_id": "535d4dba0e0a264fdb004e8b", "cast_id": 26, "profile_path": "/b7paqBqgqbbGZs1hTsXC0sfBtSQ.jpg", "order": 14}, {"name": "Paul Harvey", "character": "Dr. Calaway", "id": 34320, "credit_id": "535d4dcd0e0a264fdb004e93", "cast_id": 27, "profile_path": "/cmj2DL8XIN1rSdA7tlsHzzS0ZsT.jpg", "order": 15}, {"name": "Kay Riehl", "character": "Mrs. Tyson", "id": 119506, "credit_id": "535d4df80e0a264fe500537f", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe445fc3a36847f8091fb3", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.5, "runtime": 113}, "6623": {"poster_path": "/1yemGzqs99QAWuwm6lR5wMH0Xn0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.", "video": false, "id": 6623, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Peacemaker", "tagline": "How do you get the world's attention?", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "sr", "name": "Srpski"}, {"iso_639_1": "bs", "name": ""}, {"iso_639_1": "hr", "name": "Hrvatski"}], "imdb_id": "tt0119874", "adult": false, "backdrop_path": "/4fLG140YT6DX3rmqIX4OfBqym2o.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "1997-09-26", "popularity": 0.502067370444708, "original_title": "The Peacemaker", "budget": 50000000, "cast": [{"name": "George Clooney", "character": "Lt. Col. Thomas Devoe", "id": 1461, "credit_id": "52fe445fc3a36847f80920cb", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Dr. Julia Kelly", "id": 2227, "credit_id": "52fe445fc3a36847f80920cf", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Marcel Iures", "character": "Dusan Gavrich", "id": 15320, "credit_id": "52fe445fc3a36847f80920d9", "cast_id": 4, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 2}, {"name": "Armin Mueller-Stahl", "character": "Dimitri Vertikoff", "id": 12647, "credit_id": "52fe445fc3a36847f80920dd", "cast_id": 5, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 3}, {"name": "Tamara Tunie", "character": "Jody", "id": 42694, "credit_id": "52fe445fc3a36847f8092105", "cast_id": 13, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 4}, {"name": "Aleksandr Baluev", "character": "General Aleksandr Kodoroff", "id": 93225, "credit_id": "52fe445fc3a36847f8092109", "cast_id": 14, "profile_path": "/yP7iVx8lbrh1OezJESCIk8aIKFn.jpg", "order": 5}, {"name": "Rene Medvesek", "character": "Vlado Mirich", "id": 1008309, "credit_id": "52fe445fc3a36847f809210d", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Gary Werntz", "character": "Terry Hamilton", "id": 81830, "credit_id": "52fe445fc3a36847f8092111", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Randall Batinkoff", "character": "Ken", "id": 36631, "credit_id": "52fe445fc3a36847f8092115", "cast_id": 17, "profile_path": "/aXj1Q2pr70lMPJPRuNB6EIYCujr.jpg", "order": 8}, {"name": "Jim Haynie", "character": "General Garnett", "id": 10380, "credit_id": "52fe445fc3a36847f8092119", "cast_id": 18, "profile_path": "/aFXy2ef18bE6gqibhDoZ7EAsq8n.jpg", "order": 9}, {"name": "Alexander Strobele", "character": "Dietrich Schuhmacher", "id": 134469, "credit_id": "52fe445fc3a36847f809211d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Holt McCallany", "character": "Mark Appleton", "id": 7497, "credit_id": "52fe445fc3a36847f8092121", "cast_id": 20, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 11}, {"name": "Michael Boatman", "character": "CPN Beach", "id": 66101, "credit_id": "52fe445fc3a36847f8092125", "cast_id": 21, "profile_path": "/sBqoDOi8atsaoTt6fYd3mPE6sj8.jpg", "order": 12}, {"name": "Joan Copeland", "character": "Senator Helen Bevens", "id": 31504, "credit_id": "52fe445fc3a36847f8092129", "cast_id": 22, "profile_path": "/Ysia52uqzGx3wN0rwslRSp6E46.jpg", "order": 13}, {"name": "Carlos G\u00f3mez", "character": "Santiago", "id": 115874, "credit_id": "52fe445fc3a36847f809212d", "cast_id": 23, "profile_path": "/nBxwoMv1zrhNXyEjYXbcdmAdmF0.jpg", "order": 14}, {"name": "Slavko Juraga", "character": "Stevo", "id": 1077987, "credit_id": "52fe445fc3a36847f8092131", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Aleksandr Peskov", "character": "Vassily", "id": 632849, "credit_id": "52fe445fc3a36847f8092135", "cast_id": 25, "profile_path": "/5gkqja2opMni0DRy1c53rBh8g2Z.jpg", "order": 16}, {"name": "Dejan A\u0107imovi\u0107", "character": "Kodoroff's Driver", "id": 4640, "credit_id": "52fe445fc3a36847f8092139", "cast_id": 26, "profile_path": "/kCpX3KMWoRQCuGqMtOinpE3AXiJ.jpg", "order": 17}, {"name": "Harsh Nayyar", "character": "Dr. Taraki", "id": 20807, "credit_id": "52fe445fc3a36847f809213d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Matt Adler", "character": "Alan", "id": 92623, "credit_id": "52fe445fc3a36847f8092141", "cast_id": 28, "profile_path": "/hklcdXdKkvW15x4g1XrrdrDiLGX.jpg", "order": 19}, {"name": "Tamara Tunie", "character": "Jody", "id": 42694, "credit_id": "52fe445fc3a36847f8092145", "cast_id": 29, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 20}, {"name": "Aleksandr Yatsko", "character": "Russian Corporal", "id": 119050, "credit_id": "52fe445fc3a36847f8092149", "cast_id": 30, "profile_path": "/zNf94ydbRhiTb9nHV2DIv8UJ6c1.jpg", "order": 21}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe445fc3a36847f80920d5", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 5.6, "runtime": 124}, "55779": {"poster_path": "/hlauDPAuNcikSj5os7NjmcddqAo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157887643, "overview": "In this fifth installment, Death is just as omnipresent as ever, and is unleashed after one man\u2019s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Death\u2019s sinister agenda.", "video": false, "id": 55779, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Final Destination 5", "tagline": "We all share a common destination.", "vote_count": 234, "homepage": "http://finaldestinationmovie.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1622979", "adult": false, "backdrop_path": "/3ngwmwSSSymtg7XXw2rgjnML2yT.jpg", "production_companies": [{"name": "Parallel Zide", "id": 48792}, {"name": "New Line Cinema", "id": 12}, {"name": "Practical Pictures", "id": 48788}], "release_date": "2011-08-12", "popularity": 1.17762101321892, "original_title": "Final Destination 5", "budget": 47000000, "cast": [{"name": "Emma Bell", "character": "Molly", "id": 131820, "credit_id": "52fe48e0c3a36847f817e161", "cast_id": 3, "profile_path": "/h5gQ1jUduNv6SmFFBPADvDie4nY.jpg", "order": 0}, {"name": "Nicholas D'agosto", "character": "Sam Lawton", "id": 37059, "credit_id": "52fe48e0c3a36847f817e165", "cast_id": 4, "profile_path": "/4EgYTRYaAmCoV3qG1XJQKCXudz5.jpg", "order": 1}, {"name": "Tony Todd", "character": "Bludworth", "id": 19384, "credit_id": "52fe48e0c3a36847f817e169", "cast_id": 5, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 2}, {"name": "Jacqueline MacInnes Wood", "character": "Olivia", "id": 103389, "credit_id": "52fe48e0c3a36847f817e16d", "cast_id": 6, "profile_path": "/q9sM5Ur8HfZsKO92rGy95YAtBxX.jpg", "order": 3}, {"name": "Ellen Wroe", "character": "Candice", "id": 223124, "credit_id": "52fe48e0c3a36847f817e171", "cast_id": 7, "profile_path": "/eWwlXbwGLmrR4rVyYT3nwdWIlIp.jpg", "order": 4}, {"name": "David Koechner", "character": "Dennis", "id": 28638, "credit_id": "52fe48e0c3a36847f817e175", "cast_id": 8, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 5}], "directors": [{"name": "Steven Quale", "department": "Directing", "job": "Director", "credit_id": "52fe48e0c3a36847f817e157", "profile_path": null, "id": 93214}], "vote_average": 5.8, "runtime": 95}, "55787": {"poster_path": "/yL2GKiIZTnr8w3M9NkCXSdbDTxA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114156230, "overview": "In this captivating Depression-era melodrama, impetuous veterinary student Jacob Jankowski joins a celebrated circus as an animal caretaker but faces a wrenching dilemma when he's transfixed by angelic married performer Marlena.", "video": false, "id": 55787, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Water for Elephants", "tagline": "Life is the most spectacular show on earth.", "vote_count": 226, "homepage": "http://waterforelephantsfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt1067583", "adult": false, "backdrop_path": "/3gu944cvSn9fY4ON9z7m26v3Rxh.jpg", "production_companies": [{"name": "Big Screen Productions", "id": 10893}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Flashpoint Entertainment", "id": 7717}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Media", "id": 290}], "release_date": "2011-03-15", "popularity": 1.02726674401609, "original_title": "Water for Elephants", "budget": 38000000, "cast": [{"name": "Robert Pattinson", "character": "Jacob Jankowski", "id": 11288, "credit_id": "52fe48e0c3a36847f817e3bf", "cast_id": 2, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Marlena Rosenbluth", "id": 368, "credit_id": "52fe48e0c3a36847f817e3c3", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Christoph Waltz", "character": "August Rosenbluth", "id": 27319, "credit_id": "52fe48e0c3a36847f817e3c7", "cast_id": 4, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 2}, {"name": "Tatum Etheridge", "character": "Jacob's Daughter", "id": 223518, "credit_id": "52fe48e0c3a36847f817e3cb", "cast_id": 5, "profile_path": "/ksF9F16jE3YUe0ZcO1ePN4jHnPS.jpg", "order": 3}, {"name": "Hal Holbrook", "character": "Old Jacob", "id": 11066, "credit_id": "52fe48e0c3a36847f817e3cf", "cast_id": 6, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 4}, {"name": "Richard Brake", "character": "Grady", "id": 3901, "credit_id": "52fe48e0c3a36847f817e3e5", "cast_id": 10, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 5}, {"name": "Stephen Taylor", "character": "Wade (as Stephen Monroe Taylor)", "id": 220059, "credit_id": "52fe48e0c3a36847f817e3e9", "cast_id": 11, "profile_path": "/bS2KoKPpzG6gH8c1py0GsQDyrrz.jpg", "order": 6}, {"name": "Paul Schneider", "character": "Charlie", "id": 15684, "credit_id": "52fe48e0c3a36847f817e3ed", "cast_id": 12, "profile_path": "/u3FUCSYpivGpCliH22PJdCk2pIY.jpg", "order": 7}, {"name": "Sam Anderson", "character": "Mr. Hyde", "id": 36221, "credit_id": "52fe48e0c3a36847f817e3fd", "cast_id": 15, "profile_path": "/2zcmQEBeArztSQJ317nZCHwCVtF.jpg", "order": 8}, {"name": "William Morse", "character": "Big Top Band (as William Scott Morse)", "id": 109794, "credit_id": "52fe48e0c3a36847f817e401", "cast_id": 17, "profile_path": "/hrwminfZeqELFfaD5csD8zNDu1n.jpg", "order": 9}, {"name": "Jim Norton", "character": "Camel", "id": 14950, "credit_id": "5385db1d0e0a2614470015e0", "cast_id": 29, "profile_path": "/lndFtmSwtCzoeWkgjqJBqVRKGk2.jpg", "order": 10}, {"name": "Mark Povinelli", "character": "Kinko / Walter", "id": 154785, "credit_id": "5385db530e0a2614530016c0", "cast_id": 30, "profile_path": "/cJbp38kWYicKQf3EFX136sPGswz.jpg", "order": 11}, {"name": "Ken Foree", "character": "Earl", "id": 15070, "credit_id": "5385db810e0a26144d001666", "cast_id": 31, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 12}, {"name": "Sarah Karijan", "character": "Speakeasy Socialite (uncredited)", "id": 1337696, "credit_id": "53b85037c3a3685eb40042a8", "cast_id": 32, "profile_path": "/rL28fIEVtLZw6HZXIL2W0KjLmMH.jpg", "order": 13}, {"name": "Kyle Jordan", "character": "Russ", "id": 1340108, "credit_id": "53bea98dc3a3684cf400320d", "cast_id": 33, "profile_path": "/2WYXIBljCo4E46zek2xOjevkH2F.jpg", "order": 14}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe48e0c3a36847f817e3bb", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 6.5, "runtime": 120}, "6637": {"poster_path": "/5fOwo57lLZ3TFPG5jL6Db9Qaq8Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 457363168, "overview": "Benjamin Franklin Gates and Dr. Abigail Chase -- who found riches and romance at the end of their first hunt for national treasure -- reteam with their wisecracking partner in crime, Riley Poole, for another romp through U.S. history. Now, armed with a stack of long-lost pages from John Wilkes Booth's diary, Ben must follow a clue left there to prove his ancestor's innocence in the assassination of Abraham Lincoln.", "video": false, "id": 6637, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "National Treasure: Book of Secrets", "tagline": "The Greatest Adventure History Has Ever Revealed", "vote_count": 642, "homepage": "http://disney.go.com/disneypictures/nationaltreasure/", "belongs_to_collection": {"backdrop_path": "/9QtM9ie1x8z0vl6IFFepmyoOLQN.jpg", "poster_path": "/z5EIRaI8XS0brelYwDFEVlxcpzM.jpg", "id": 52984, "name": "National Treasure Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0465234", "adult": false, "backdrop_path": "/oKLa1SGDlT0Zi9lyLcl2N2sFxsc.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Junction Entertainment", "id": 19097}, {"name": "Saturn Films", "id": 831}, {"name": "Sparkler Entertainment", "id": 20012}, {"name": "NT2 Productions", "id": 20013}, {"name": "Walt Disney", "id": 5888}], "release_date": "2007-12-13", "popularity": 1.27114925372801, "original_title": "National Treasure: Book of Secrets", "budget": 130000000, "cast": [{"name": "Nicolas Cage", "character": "Benjamin Franklin Gates", "id": 2963, "credit_id": "52fe4460c3a36847f80925ff", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Jon Voight", "character": "Patrick Gates", "id": 10127, "credit_id": "52fe4460c3a36847f8092603", "cast_id": 2, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Agent Sadusky", "id": 1037, "credit_id": "52fe4460c3a36847f8092607", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Ed Harris", "character": "Mitch Wilkinson", "id": 228, "credit_id": "52fe4460c3a36847f809260b", "cast_id": 4, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "Diane Kruger", "character": "Abigail Chase", "id": 9824, "credit_id": "52fe4460c3a36847f809260f", "cast_id": 5, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 4}, {"name": "Justin Bartha", "character": "Riley Poole", "id": 21180, "credit_id": "52fe4460c3a36847f8092613", "cast_id": 6, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 5}, {"name": "Helen Mirren", "character": "Emily Appleton", "id": 15735, "credit_id": "52fe4460c3a36847f8092617", "cast_id": 7, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "USA President", "id": 21089, "credit_id": "52fe4460c3a36847f809261b", "cast_id": 8, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Ty Burrell", "character": "Connor", "id": 15232, "credit_id": "52fe4460c3a36847f809261f", "cast_id": 9, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 8}, {"name": "Albert Hall", "character": "Dr. Nichols", "id": 8354, "credit_id": "52fe4460c3a36847f8092623", "cast_id": 10, "profile_path": "/yHGN2pIdBcBk19sAu0EchOxfYMY.jpg", "order": 9}, {"name": "Joel Gretsch", "character": "Thomas Gates", "id": 25376, "credit_id": "52fe4460c3a36847f8092627", "cast_id": 11, "profile_path": "/5CeKN4wIQUAvF3mlRdeVAQ5ybSs.jpg", "order": 10}, {"name": "Randy Travis", "character": "Celebrity Music Star", "id": 55725, "credit_id": "549ff1e1925141236b0015a7", "cast_id": 32, "profile_path": "/gzPEoDeNwySzNtMMnqepY5Wgv2B.jpg", "order": 11}, {"name": "Christian Camargo", "character": "John Wilkes Booth", "id": 122029, "credit_id": "549ff1f8c3a3682f2300a881", "cast_id": 33, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 12}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4460c3a36847f809262d", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 5.9, "runtime": 124}, "23023": {"poster_path": "/zqNo3IDzrhE9qyak87wun7uvkF7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When minor-league hockey player Derek Thompson -- who has a penchant for knocking out his opponents' teeth every time he plays -- disillusions a fan, he is sentenced to a stint for one week as a bona fide, tutu-clad, real-life tooth fairy. Soon, Derek is inspired to rekindle his youthful dreams.", "video": false, "id": 23023, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Tooth Fairy", "tagline": "You can't handle the tooth.", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xhACByxlfPJfAJloTOs7KNEX5U7.jpg", "poster_path": "/2P7Ua3qTgM5COjBfdBV0614wXaw.jpg", "id": 222634, "name": "Tooth Fairy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808510", "adult": false, "backdrop_path": "/kaa4PBGpNJgicEIeIqWaCKrUkXy.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "SF Film", "id": 5674}], "release_date": "2010-01-22", "popularity": 0.703121818511541, "original_title": "Tooth Fairy", "budget": 0, "cast": [{"name": "Dwayne Johnson", "character": "Derek Thompson / Tooth Fairy", "id": 18918, "credit_id": "52fe445bc3a368484e01e5eb", "cast_id": 4, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Julie Andrews", "character": "Lily", "id": 5823, "credit_id": "52fe445bc3a368484e01e5ef", "cast_id": 6, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 1}, {"name": "Stephen Merchant", "character": "Tracy", "id": 39189, "credit_id": "52fe445bc3a368484e01e5f3", "cast_id": 7, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 1}, {"name": "Ryan Sheckler", "character": "Mick Donnelly", "id": 116131, "credit_id": "52fe445bc3a368484e01e5f7", "cast_id": 8, "profile_path": "/zkEcTxJzD6IGK7FZBJWGQ6wvOJh.jpg", "order": 2}, {"name": "Ashley Judd", "character": "Carly", "id": 15852, "credit_id": "52fe445bc3a368484e01e5fb", "cast_id": 9, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 3}, {"name": "Seth MacFarlane", "character": "Ziggy", "id": 52139, "credit_id": "52fe445bc3a368484e01e5ff", "cast_id": 10, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 4}, {"name": "Chase Ellison", "character": "Randy", "id": 64148, "credit_id": "52fe445bc3a368484e01e603", "cast_id": 12, "profile_path": "/zNDpEo3p5zJPxwFlbRJfVtLSeCj.jpg", "order": 6}, {"name": "Darien Provost", "character": "Gabe", "id": 208246, "credit_id": "52fe445bc3a368484e01e60d", "cast_id": 14, "profile_path": "/21OHv3iBvz6BpKk72sdSmwrGdkq.jpg", "order": 7}, {"name": "Alex Ferris", "character": "Shelter Cove Kid", "id": 59243, "credit_id": "52fe445bc3a368484e01e611", "cast_id": 15, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 8}, {"name": " Nicole Mu\u00f1oz", "character": "Kelly", "id": 1112033, "credit_id": "52fe445bc3a368484e01e615", "cast_id": 16, "profile_path": "/o972tzpQwLr6W2u9nCRDW4oN4H5.jpg", "order": 9}, {"name": "Brendan Meyer", "character": "Ben", "id": 558927, "credit_id": "52fe445bc3a368484e01e619", "cast_id": 17, "profile_path": "/ykafA2ATSL1Cyae5KTOuPxRZLIF.jpg", "order": 10}, {"name": "Destiny Whitlock", "character": "Tess (as Destiny Grace Whitlock)", "id": 964590, "credit_id": "52fe445bc3a368484e01e61d", "cast_id": 18, "profile_path": "/vRLmnHUaV4eomSnHdNht4IFuAht.jpg", "order": 11}], "directors": [{"name": "Michael Lembeck", "department": "Directing", "job": "Director", "credit_id": "52fe445bc3a368484e01e5e1", "profile_path": "/nSksRzDoUToxdS2MqIeV7LGAiVk.jpg", "id": 15045}], "vote_average": 5.4, "runtime": 101}, "14836": {"poster_path": "/1E9DfFpaGOjXNLn7HOGMH52UkLL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124596398, "overview": "When Coraline moves to an old house, she feels bored and neglected by her parents. She finds a hidden door with a bricked up passage. During the night, she crosses the passage and finds a parallel world where everybody has buttons instead of eyes, with caring parents and all her dreams coming true. When the Other Mother invites Coraline to stay in her world forever, the girl refuses and finds that the alternate reality where she is trapped is only a trick to lure her.", "video": false, "id": 14836, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Coraline", "tagline": "Be careful what you wish for.", "vote_count": 328, "homepage": "http://coraline.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327597", "adult": false, "backdrop_path": "/obBsMjC9dkDeoYsLxHURikW87UZ.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Laika Entertainment", "id": 11537}, {"name": "Pandemonium", "id": 8915}], "release_date": "2009-02-05", "popularity": 1.21757194987135, "original_title": "Coraline", "budget": 60000000, "cast": [{"name": "Dakota Fanning", "character": "Coraline Jones (voice)", "id": 501, "credit_id": "52fe461e9251416c7506dc73", "cast_id": 1, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 0}, {"name": "Teri Hatcher", "character": "Mother / Other Mother (voice)", "id": 10742, "credit_id": "52fe461e9251416c7506dc77", "cast_id": 2, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 1}, {"name": "Jennifer Saunders", "character": "Miss Spink (voice)", "id": 12094, "credit_id": "52fe461e9251416c7506dc7b", "cast_id": 3, "profile_path": "/nlxiFy0LUYGlICaFY3rF2DRovcc.jpg", "order": 2}, {"name": "Dawn French", "character": "Miss Forcible (voice)", "id": 5539, "credit_id": "52fe461e9251416c7506dc7f", "cast_id": 4, "profile_path": "/z81mKzCqmLttRVpBBGwjSlATOK3.jpg", "order": 3}, {"name": "Keith David", "character": "Cat (voice)", "id": 65827, "credit_id": "52fe461e9251416c7506dc83", "cast_id": 5, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 4}, {"name": "John Hodgman", "character": "Father / Other Father (voice)", "id": 77344, "credit_id": "52fe461e9251416c7506dc87", "cast_id": 6, "profile_path": "/qMFcDuOUgz3HkD5OMjkHYa677VE.jpg", "order": 5}, {"name": "Robert Bailey Jr.", "character": "Wyborne 'Wybie' Lovat", "id": 55426, "credit_id": "52fe461e9251416c7506dc9d", "cast_id": 10, "profile_path": "/z2FbepmcNkWn12Tuv76kLavQRyS.jpg", "order": 6}, {"name": "Ian McShane", "character": "Mr. Sergei Alexander Bobinsky / Other Bobinsky", "id": 6972, "credit_id": "52fe461e9251416c7506dca1", "cast_id": 11, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 7}], "directors": [{"name": "Henry Selick", "department": "Directing", "job": "Director", "credit_id": "52fe461e9251416c7506dc8d", "profile_path": "/kiTzGq0peOTsjQnzQI3ttwqqsOv.jpg", "id": 57646}], "vote_average": 6.8, "runtime": 100}, "72105": {"poster_path": "/5ExgYTRafm4kFRwHp2jH6C23Yl4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 549368315, "overview": "Family Guy creator Seth MacFarlane brings his boundary-pushing brand of humor to the big screen for the first time as writer, director and voice star of Ted. In the live action/CG-animated comedy, he tells the story of John Bennett, a grown man who must deal with the cherished teddy bear who came to life as the result of a childhood wish, and has refused to leave his side ever since.", "video": false, "id": 72105, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Ted", "tagline": "Ted is coming.", "vote_count": 1969, "homepage": "http://www.tedisreal.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yaJUgLygyp0kXj7mAl2q6wpqKHi.jpg", "id": 266672, "name": "Ted Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1637725", "adult": false, "backdrop_path": "/sPiFgbWMSQxVMO6TuRFrkeWwarI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Fuzzy Door Productions", "id": 8789}], "release_date": "2012-06-29", "popularity": 1.88047787800558, "original_title": "Ted", "budget": 50000000, "cast": [{"name": "Mark Wahlberg", "character": "John Bennett", "id": 13240, "credit_id": "52fe4858c3a368484e0f446d", "cast_id": 10, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Lori Collins", "id": 18973, "credit_id": "52fe4858c3a368484e0f447d", "cast_id": 17, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Seth MacFarlane", "character": "Ted (voice)", "id": 52139, "credit_id": "52fe4858c3a368484e0f4469", "cast_id": 9, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 2}, {"name": "Joel McHale", "character": "Rex", "id": 74949, "credit_id": "52fe4858c3a368484e0f4479", "cast_id": 16, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 3}, {"name": "Giovanni Ribisi", "character": "Donny", "id": 1771, "credit_id": "52fe4858c3a368484e0f4475", "cast_id": 15, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 4}, {"name": "Patrick Warburton", "character": "Guy", "id": 9657, "credit_id": "52fe4858c3a368484e0f449f", "cast_id": 25, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 5}, {"name": "Matt Walsh", "character": "Thomas", "id": 59841, "credit_id": "52fe4858c3a368484e0f44b7", "cast_id": 31, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 6}, {"name": "Jessica Barth", "character": "Tami-Lynn", "id": 207150, "credit_id": "52fe4858c3a368484e0f44a3", "cast_id": 26, "profile_path": "/zYkr25I5Wk7tbow4JrSfRngBYb7.jpg", "order": 7}, {"name": "Aedin Mincks", "character": "Robert", "id": 1204318, "credit_id": "52fe4858c3a368484e0f44c7", "cast_id": 35, "profile_path": "/qQEZjqiy2fNUsh4gSUds11tK9sN.jpg", "order": 8}, {"name": "Bill Smitrovich", "character": "Frank", "id": 17200, "credit_id": "52fe4858c3a368484e0f4493", "cast_id": 21, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 9}, {"name": "Patrick Stewart", "character": "Narrator", "id": 2387, "credit_id": "52fe4858c3a368484e0f44a7", "cast_id": 27, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 10}, {"name": "Laura Vandervoort", "character": "Tanya", "id": 43286, "credit_id": "52fe4858c3a368484e0f4471", "cast_id": 14, "profile_path": "/5IWtsAzhSISq1gGxFx9G3kONprX.jpg", "order": 11}, {"name": "Bretton Manley", "character": "Young John", "id": 1063947, "credit_id": "52fe4858c3a368484e0f4497", "cast_id": 23, "profile_path": "/mMZjjVAzq8G9AUa7556LK8e4Dgo.jpg", "order": 12}, {"name": "Alex Borstein", "character": "John's Mom", "id": 24357, "credit_id": "52fe4858c3a368484e0f449b", "cast_id": 24, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 13}, {"name": "Jessica Stroup", "character": "Tracy", "id": 55463, "credit_id": "52fe4858c3a368484e0f44ab", "cast_id": 28, "profile_path": "/l1UABSlmGse4QWtHefxZSm82Axp.jpg", "order": 14}, {"name": "Tara Strong", "character": "Bellybutton", "id": 15762, "credit_id": "52fe4858c3a368484e0f44af", "cast_id": 29, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 15}, {"name": "Norah Jones", "character": "Herself", "id": 20472, "credit_id": "52fe4858c3a368484e0f44b3", "cast_id": 30, "profile_path": "/2EcSIKQe3BsHY4zJkPKdvA8QpRH.jpg", "order": 16}, {"name": "Sam J. Jones", "character": "Himself", "id": 33321, "credit_id": "52fe4858c3a368484e0f44cb", "cast_id": 36, "profile_path": "/w0C7aONaeB6a5DqdzTa23TzcvPm.jpg", "order": 17}, {"name": "Robert Wu", "character": "Asian Man 'Ming'", "id": 17041, "credit_id": "52fe4858c3a368484e0f44c3", "cast_id": 34, "profile_path": "/A8yLtkCeY7wvVlfL6TakeiUSmEa.jpg", "order": 18}, {"name": "John Viener", "character": "Alix", "id": 130836, "credit_id": "52fe4858c3a368484e0f44cf", "cast_id": 37, "profile_path": "/AjzFj009CPtewjT9jyYFx0AumBR.jpg", "order": 19}, {"name": "Ginger Gonzaga", "character": "Gina", "id": 1181314, "credit_id": "52fe4858c3a368484e0f44d3", "cast_id": 38, "profile_path": "/bIyLNXCqRdHzYEXjvr6IUFYXmKT.jpg", "order": 20}, {"name": "Melissa Ordway", "character": "Michelle", "id": 114602, "credit_id": "52fe4858c3a368484e0f44d7", "cast_id": 39, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 21}, {"name": "Max Harris", "character": "Greenbaum Kid", "id": 1204326, "credit_id": "52fe4858c3a368484e0f44db", "cast_id": 40, "profile_path": "/tuGgSv6zov0wfeoBXazDaHq4uuZ.jpg", "order": 22}, {"name": "Tom Skerritt", "character": "Himself", "id": 4139, "credit_id": "52fe4858c3a368484e0f44bb", "cast_id": 32, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 23}, {"name": "Kristina Ellery", "character": "Heavenly", "id": 1204327, "credit_id": "52fe4858c3a368484e0f44df", "cast_id": 41, "profile_path": "/kVspTfxGDz9WpPUnjLIFiXgqnj1.jpg", "order": 24}, {"name": "Katelyn Lorren", "character": "Cherene", "id": 1204328, "credit_id": "52fe4858c3a368484e0f44e3", "cast_id": 42, "profile_path": "/fBySOW0NGL5HLDs73qmGwIwfATJ.jpg", "order": 25}, {"name": "Chanty Sok", "character": "Angelique", "id": 999772, "credit_id": "52fe4858c3a368484e0f44e7", "cast_id": 43, "profile_path": "/jRj1uUrPSsyQEzoTB4pHM6T8SVR.jpg", "order": 26}, {"name": "Sarah Fischer", "character": "Sauvignon Blanc", "id": 1204329, "credit_id": "52fe4858c3a368484e0f44eb", "cast_id": 44, "profile_path": "/vmMnW4o0CWsHoDBZDvY7A92A7Qb.jpg", "order": 27}, {"name": "Ryan Reynolds", "character": "Jared (uncredited)", "id": 10859, "credit_id": "52fe4858c3a368484e0f44bf", "cast_id": 33, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 28}, {"name": "Ted Danson", "character": "Ted Danson (uncredited)", "id": 12836, "credit_id": "52fe4858c3a368484e0f44ef", "cast_id": 45, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 29}], "directors": [{"name": "Seth MacFarlane", "department": "Directing", "job": "Director", "credit_id": "52fe4858c3a368484e0f444d", "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "id": 52139}], "vote_average": 6.3, "runtime": 106}, "72190": {"poster_path": "/gAt1PrsrFY1nX6UzebeiHP8njE9.jpg", "production_countries": [{"iso_3166_1": "MT", "name": "Malta"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 531865000, "overview": "Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.", "video": false, "id": 72190, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "World War Z", "tagline": "Remember Philly!", "vote_count": 2126, "homepage": "http://www.worldwarzmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0816711", "adult": false, "backdrop_path": "/xMOQVYLeIKBXenJ9KMeasj7S64y.jpg", "production_companies": [{"name": "GK Films", "id": 3281}, {"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "Hemisphere Media Capital", "id": 9169}, {"name": "2DUX\u00b2", "id": 23644}, {"name": "Apparatus Productions", "id": 11956}, {"name": "Latina Pictures", "id": 19108}], "release_date": "2013-06-21", "popularity": 2.34551765124808, "original_title": "World War Z", "budget": 200000000, "cast": [{"name": "Brad Pitt", "character": "Gerry Lane", "id": 287, "credit_id": "52fe485dc3a368484e0f5061", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Mireille Enos", "character": "Karen Lane", "id": 175826, "credit_id": "52fe485dc3a368484e0f5065", "cast_id": 6, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 1}, {"name": "James Badge Dale", "character": "Captain Speke", "id": 18473, "credit_id": "52fe485dc3a368484e0f5069", "cast_id": 7, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 2}, {"name": "Elyes Gabel", "character": "Andrew Fassbach", "id": 78050, "credit_id": "52fe485dc3a368484e0f506d", "cast_id": 8, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 3}, {"name": "David Andrews", "character": "Navy Captain Mullenaro", "id": 7219, "credit_id": "52fe485dc3a368484e0f5071", "cast_id": 10, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 4}, {"name": "Abigail Hargrove", "character": "Rachel Lane", "id": 1027850, "credit_id": "52fe485dc3a368484e0f5075", "cast_id": 14, "profile_path": "/tVw4OP6JbhU4PtSfeB6eeEbkJwA.jpg", "order": 5}, {"name": "Daniella Kertesz", "character": "Segen", "id": 1180907, "credit_id": "52fe485dc3a368484e0f5079", "cast_id": 18, "profile_path": "/1t358QxDsYsnwoWVSZK0UB6srqw.jpg", "order": 6}, {"name": "Ludi Boeken", "character": "Jurgen Warmbrunn", "id": 119297, "credit_id": "52fe485dc3a368484e0f507d", "cast_id": 19, "profile_path": "/aexWCA6QUGsGrohQ3tdSCyAz09W.jpg", "order": 7}, {"name": "Matthew Fox", "character": "Parajumper", "id": 28657, "credit_id": "52fe485dc3a368484e0f5081", "cast_id": 20, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 8}, {"name": "Fana Mokoena", "character": "Thierry Umutoni", "id": 2607, "credit_id": "52fe485dc3a368484e0f5085", "cast_id": 21, "profile_path": "/skuKjL1Ep1SHrZuNl0lYVfZ9VM0.jpg", "order": 9}, {"name": "David Morse", "character": "Ex-CIA Agent", "id": 52, "credit_id": "52fe485dc3a368484e0f5089", "cast_id": 22, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 10}, {"name": "Peter Capaldi", "character": "W.H.O. Doctor", "id": 12982, "credit_id": "52fe485dc3a368484e0f508d", "cast_id": 23, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 11}, {"name": "Moritz Bleibtreu", "character": "W.H.O. Doctor", "id": 677, "credit_id": "52fe485dc3a368484e0f5091", "cast_id": 24, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 12}, {"name": "Fabrizio Zacharee Guido", "character": "Tomas", "id": 1180908, "credit_id": "52fe485dc3a368484e0f5095", "cast_id": 25, "profile_path": "/kkleqqCoTiDoUuxfGIUylw4SRLb.jpg", "order": 13}, {"name": "Ruth Negga", "character": "W.H.O. Doctor", "id": 17018, "credit_id": "52fe485dc3a368484e0f5099", "cast_id": 26, "profile_path": "/fIVB9H48rDgcV0hhnP7gYrv18zB.jpg", "order": 14}, {"name": "Pierfrancesco Favino", "character": "WHO Doctor", "id": 17839, "credit_id": "52fe485dc3a368484e0f5121", "cast_id": 50, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 15}, {"name": "Konstantin Khabenskiy", "character": "Russian Fighter", "id": 23440, "credit_id": "535279ce0e0a2655fe0030c2", "cast_id": 51, "profile_path": "/dSZhT7njGfcOCqvRhWrX2WANVOt.jpg", "order": 16}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe485dc3a368484e0f505d", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.8, "runtime": 116}, "72197": {"poster_path": "/z3abtsVuypFShFkfvTOjzATkeg9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 118338361, "overview": "In The Pirates! Band of Misfits, Hugh Grant stars in his first animated role as the luxuriantly bearded Pirate Captain \u2013 a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side (Martin Freeman, Brendan Gleeson, Russell Tovey, and Ashley Jensen), and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy (Jeremy Piven) and Cutlass Liz (Salma Hayek) to the much coveted Pirate Of The Year Award. It\u2019s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen (Imelda Staunton) and team up with a haplessly smitten young scientist (David Tennant), but never lose sight of what a pirate loves best: adventure!", "video": false, "id": 72197, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Pirates! In an Adventure with Scientists!", "tagline": "It's A Plunderful Life", "vote_count": 153, "homepage": "http://www.thepirates-movie.com/site/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430626", "adult": false, "backdrop_path": "/yJT2JCdjtuH5K202bC4YL0wOYD2.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}, {"name": "Aardman Animations", "id": 297}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2012-03-28", "popularity": 0.66771717847396, "original_title": "The Pirates! In an Adventure with Scientists!", "budget": 60000000, "cast": [{"name": "Hugh Grant", "character": "Pirate Captain (voice)", "id": 3291, "credit_id": "52fe485dc3a368484e0f51c7", "cast_id": 1, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Brendan Gleeson", "character": "The Pirate with Gout (voice)", "id": 2039, "credit_id": "52fe485dc3a368484e0f51cb", "cast_id": 2, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 1}, {"name": "Jeremy Piven", "character": "Black Bellamy (voice)", "id": 12799, "credit_id": "52fe485dc3a368484e0f51cf", "cast_id": 3, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 2}, {"name": "Brian Blessed", "character": "The Pirate King (voice)", "id": 8318, "credit_id": "52fe485dc3a368484e0f51d3", "cast_id": 4, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Cutlass Liz (voice)", "id": 3136, "credit_id": "52fe485dc3a368484e0f51d7", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "Imelda Staunton", "character": "Queen Victoria (voice)", "id": 11356, "credit_id": "52fe485dc3a368484e0f51db", "cast_id": 9, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 5}, {"name": "Ashley Jensen", "character": "The Surprisingly Curvaceous Pirate (voice)", "id": 55398, "credit_id": "52fe485dc3a368484e0f51df", "cast_id": 10, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 6}, {"name": "David Tennant", "character": "Charles Darwin (voice)", "id": 20049, "credit_id": "52fe485dc3a368484e0f51f9", "cast_id": 15, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 8}, {"name": "Lenny Henry", "character": "Peg Leg Hastings (voice)", "id": 53519, "credit_id": "52fe485dc3a368484e0f51fd", "cast_id": 16, "profile_path": "/nVvimLFmbCImntmAlqaOwRTWf1D.jpg", "order": 9}, {"name": "Martin Freeman", "character": "The Pirate with a Scarf (voice)", "id": 7060, "credit_id": "52fe485dc3a368484e0f5201", "cast_id": 17, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 10}, {"name": "Russell Tovey", "character": "The Albino Pirate (voice)", "id": 55469, "credit_id": "53c5935fc3a3680caf000173", "cast_id": 18, "profile_path": "/qpL1Zl5NjNTcYpRBlwpm9DPsl1I.jpg", "order": 11}], "directors": [{"name": "Peter Lord", "department": "Directing", "job": "Director", "credit_id": "52fe485dc3a368484e0f51e9", "profile_path": "/fBaZLXX3rBwhSXvtplQEtvW7VS3.jpg", "id": 53304}, {"name": "Jeff Newitt", "department": "Directing", "job": "Director", "credit_id": "52fe485dc3a368484e0f51ef", "profile_path": null, "id": 565297}], "vote_average": 6.3, "runtime": 88}, "23047": {"poster_path": "/idpwvaksByFW2gCsU3div1nDMRa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88100000, "overview": "A 14th century Crusader (Cage) returns with his comrade (Perlman) to a homeland devastated by the Black Plague. The Church commands the two knights to transport a witch (Foy) to a remote abbey, where monks will perform a ritual in hopes of ending the pestilence.", "video": false, "id": 23047, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Season of the Witch", "tagline": "Not all souls can be saved.", "vote_count": 226, "homepage": "http://www.seasonofthewitchmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0479997", "adult": false, "backdrop_path": "/dtmmUCOjCtrjzRCtXHXwaBSySjN.jpg", "production_companies": [{"name": "Atlas Entertainment", "id": 507}, {"name": "Relativity Media", "id": 7295}], "release_date": "2011-01-07", "popularity": 0.482858283750056, "original_title": "Season of the Witch", "budget": 40000000, "cast": [{"name": "Nicolas Cage", "character": "Behman", "id": 2963, "credit_id": "52fe445bc3a368484e01e85d", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Ron Perlman", "character": "Felson", "id": 2372, "credit_id": "52fe445bc3a368484e01e861", "cast_id": 3, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 1}, {"name": "Ulrich Thomsen", "character": "Eckhardt", "id": 4455, "credit_id": "52fe445bc3a368484e01e865", "cast_id": 5, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 3}, {"name": "Christopher Lee", "character": "Cardinal D'Ambroise", "id": 113, "credit_id": "52fe445bc3a368484e01e869", "cast_id": 7, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 4}, {"name": "Fernanda Dorogi", "character": "Givaudon", "id": 143548, "credit_id": "52fe445bc3a368484e01e86d", "cast_id": 8, "profile_path": "/jz4Tr25t23oNvF1xmUynjL5wUE7.jpg", "order": 5}, {"name": "Stephen Graham", "character": "Hagamar", "id": 1115, "credit_id": "52fe445bc3a368484e01e871", "cast_id": 9, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 6}, {"name": "Rebekah Kennedy", "character": "Peasant Trurk Girl", "id": 143549, "credit_id": "52fe445bc3a368484e01e875", "cast_id": 10, "profile_path": "/4s42w82j6SKUcR9mNR85DH5QaZc.jpg", "order": 7}, {"name": "Matt Devere", "character": "Sergeant in Arms", "id": 25445, "credit_id": "52fe445bc3a368484e01e879", "cast_id": 11, "profile_path": "/mtp0cfPOGZG2aLEw0N6RuJFYA6j.jpg", "order": 7}, {"name": "Robert Michael Sheehan", "character": "Kay", "id": 118616, "credit_id": "52fe445bc3a368484e01e883", "cast_id": 13, "profile_path": "/47OUDEpraCrTeqpAMlIFuqm8q0L.jpg", "order": 8}, {"name": "Claire Foy", "character": "The Girl", "id": 120932, "credit_id": "52fe445bc3a368484e01e887", "cast_id": 14, "profile_path": "/cE6R6hil91rzKg3yj71czNsuK8K.jpg", "order": 9}, {"name": "Stephen Campbell Moore", "character": "Debelzaq", "id": 55467, "credit_id": "52fe445bc3a368484e01e88b", "cast_id": 15, "profile_path": "/9LPG6fCe2ct82Io5zI8iyvJ8NsP.jpg", "order": 10}, {"name": "Rory McCann", "character": "Soldier Commander", "id": 3075, "credit_id": "52fe445bc3a368484e01e88f", "cast_id": 16, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 11}], "directors": [{"name": "Dominic Sena", "department": "Directing", "job": "Director", "credit_id": "52fe445bc3a368484e01e859", "profile_path": "/ofWADCsDpNxbTFfoK1CpU8KnBGF.jpg", "id": 58498}], "vote_average": 5.4, "runtime": 95}, "23048": {"poster_path": "/7Ol1VgQl19XAIIB38nZLNA58ZsX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61336869, "overview": "A malfunctioning time machine at a ski resort takes a man back to 1986 with his two friends and nephew, where they must relive a fateful night and not change anything to make sure the nephew is born.", "video": false, "id": 23048, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Hot Tub Time Machine", "tagline": "Kick some past", "vote_count": 284, "homepage": "http://www.mgm.com/view/Movie/2387/Hot-T...", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/iEhb00TGPucF0b4joM1ieyY026U.jpg", "id": 313576, "name": "Hot Tub Time Machine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1231587", "adult": false, "backdrop_path": "/ubuwk7cHsPMfKvTrXqfyPtMcqIz.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "New Crime Productions", "id": 12886}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2010-03-26", "popularity": 0.995455367331372, "original_title": "Hot Tub Time Machine", "budget": 36000000, "cast": [{"name": "John Cusack", "character": "Adam", "id": 3036, "credit_id": "52fe445cc3a368484e01e911", "cast_id": 2, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Lizzy Caplan", "character": "April", "id": 51988, "credit_id": "52fe445cc3a368484e01e919", "cast_id": 4, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 1}, {"name": "Rob Corddry", "character": "Lou", "id": 52997, "credit_id": "52fe445cc3a368484e01e935", "cast_id": 13, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 2}, {"name": "Craig Robinson", "character": "Nick", "id": 64342, "credit_id": "52fe445cc3a368484e01e929", "cast_id": 10, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 3}, {"name": "Clark Duke", "character": "Jacob", "id": 54729, "credit_id": "52fe445cc3a368484e01e921", "cast_id": 8, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 4}, {"name": "Chevy Chase", "character": "The Repairman", "id": 54812, "credit_id": "52fe445cc3a368484e01e931", "cast_id": 12, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 5}, {"name": "Sebastian Stan", "character": "Blaine", "id": 60898, "credit_id": "52fe445cc3a368484e01e91d", "cast_id": 7, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 6}, {"name": "Collette Wolfe", "character": "Kelly", "id": 86624, "credit_id": "52fe445cc3a368484e01e925", "cast_id": 9, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 7}, {"name": "Lyndsy Fonseca", "character": "Jennie", "id": 116882, "credit_id": "52fe445cc3a368484e01e92d", "cast_id": 11, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 8}, {"name": "Crispin Glover", "character": "Phil", "id": 1064, "credit_id": "52fe445cc3a368484e01e915", "cast_id": 3, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 9}, {"name": "William Zabka", "character": "Rick", "id": 56124, "credit_id": "52fe445cc3a368484e01e951", "cast_id": 18, "profile_path": "/kHcFbjmtF3CPK8uIDzKh5aj2bUv.jpg", "order": 10}, {"name": "Jessica Par\u00e9", "character": "Tara", "id": 82096, "credit_id": "52fe445cc3a368484e01e955", "cast_id": 19, "profile_path": "/5Rd21jddpoBeN4Zv8odhppG76LD.jpg", "order": 11}], "directors": [{"name": "Steve Pink", "department": "Directing", "job": "Director", "credit_id": "52fe445cc3a368484e01e90d", "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "id": 3227}], "vote_average": 5.9, "runtime": 101}, "72207": {"poster_path": "/202Je4e793JH11Ce4JoAwuzCRZ0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53909751, "overview": "Exactly one year after Tom meets Violet, he surprises her with a wedding ring. By all accounts, Tom and Violet are destined for their happily ever after. However, this engaged couple just keep getting tripped up on the long walk down the aisle.", "video": false, "id": 72207, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Five-Year Engagement", "tagline": "A comedy about the journey between popping the question and tying the knot.", "vote_count": 174, "homepage": "http://www.thefiveyearengagementmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1195478", "adult": false, "backdrop_path": "/NV9FSiCEcnzuJFeSTm3JycufyD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}, {"name": "Relativity Media", "id": 7295}, {"name": "Stoller Global Solutions", "id": 23876}, {"name": "Dentsu", "id": 6452}], "release_date": "2012-04-27", "popularity": 0.967258702420618, "original_title": "The Five-Year Engagement", "budget": 30000000, "cast": [{"name": "Emily Blunt", "character": "Violet Barnes", "id": 5081, "credit_id": "52fe485ec3a368484e0f539f", "cast_id": 1, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Alison Brie", "character": "Suzie Barnes", "id": 88029, "credit_id": "52fe485ec3a368484e0f53a3", "cast_id": 3, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 1}, {"name": "Jason Segel", "character": "Tom Solomon", "id": 41088, "credit_id": "52fe485ec3a368484e0f53ad", "cast_id": 7, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 2}, {"name": "Rhys Ifans", "character": "Winton Childs", "id": 7026, "credit_id": "52fe485ec3a368484e0f53b1", "cast_id": 8, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 3}, {"name": "Chris Pratt", "character": "Alex Eilhauer", "id": 73457, "credit_id": "52fe485ec3a368484e0f53b5", "cast_id": 9, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 4}, {"name": "Jacki Weaver", "character": "Sylvia Dickerson-Barnes", "id": 67837, "credit_id": "52fe485ec3a368484e0f53c5", "cast_id": 12, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 5}, {"name": "Mindy Kaling", "character": "Vaneetha", "id": 125167, "credit_id": "52fe485ec3a368484e0f53c9", "cast_id": 13, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 6}, {"name": "Jim Piddock", "character": "George Barnes", "id": 120560, "credit_id": "52fe485ec3a368484e0f53cd", "cast_id": 14, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 7}, {"name": "David Paymer", "character": "Pete Solomon", "id": 19839, "credit_id": "52fe485ec3a368484e0f53d1", "cast_id": 15, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 8}, {"name": "Kevin Hart", "character": "Doug", "id": 55638, "credit_id": "52fe485ec3a368484e0f53d5", "cast_id": 16, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 9}, {"name": "Brian Posehn", "character": "Tarquin", "id": 20405, "credit_id": "52fe485ec3a368484e0f53d9", "cast_id": 17, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 10}, {"name": "Dakota Johnson", "character": "Audrey", "id": 118545, "credit_id": "52fe485ec3a368484e0f53dd", "cast_id": 18, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 11}, {"name": "Mimi Kennedy", "character": "Carol Solomon", "id": 91495, "credit_id": "52fe485ec3a368484e0f53e1", "cast_id": 19, "profile_path": "/2bg8ItAMtb18GCX7OEICxxjxVID.jpg", "order": 12}, {"name": "Adam Campbell", "character": "Gideon", "id": 58952, "credit_id": "52fe485ec3a368484e0f53e5", "cast_id": 20, "profile_path": "/tOqtFuVOrb5b9SQRlRfknMPQEyx.jpg", "order": 13}, {"name": "Randall Park", "character": "Ming", "id": 79082, "credit_id": "52fe485ec3a368484e0f53e9", "cast_id": 21, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 14}, {"name": "Lauren Weedman", "character": "Chef Sally", "id": 1375338, "credit_id": "54bb5d1bc3a3684046002c1e", "cast_id": 31, "profile_path": "/lOv2Uva44YRDvw2Ar4je2HToWID.jpg", "order": 15}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe485ec3a368484e0f53bb", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 5.7, "runtime": 124}, "14869": {"poster_path": "/29eW5c5DaCFQejdt9V14RrA51yD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 302469017, "overview": "From the Egyptian desert to deep below the polar ice caps, the elite G.I. JOE team uses the latest in next-generation spy and military equipment to fight the corrupt arms dealer Destro and the growing threat of the mysterious Cobra organization to prevent them from plunging the world into chaos.", "video": false, "id": 14869, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "G.I. Joe: The Rise of Cobra", "tagline": "When all else fails, they don't.", "vote_count": 1082, "homepage": "http://www.gijoemovie.com/", "belongs_to_collection": {"backdrop_path": "/m3ip0ci0TnX0ATUxpweqElYCeq4.jpg", "poster_path": "/5LtZM6zLB2TDbdIaOC5uafjYZY1.jpg", "id": 135468, "name": "G.I. Joe (Live-Action Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "gd", "name": ""}], "imdb_id": "tt1046173", "adult": false, "backdrop_path": "/bAmhm8pfLqbzxNRzZw08512h4RE.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Hasbro", "id": 2598}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2009-08-06", "popularity": 1.14801810794641, "original_title": "G.I. Joe: The Rise of Cobra", "budget": 175000000, "cast": [{"name": "Dennis Quaid", "character": "General Hawk", "id": 6065, "credit_id": "52fe46229251416c7506e4b5", "cast_id": 1, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Duke", "id": 38673, "credit_id": "52fe46229251416c7506e4b9", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Marlon Wayans", "character": "Ripcord", "id": 9562, "credit_id": "52fe46229251416c7506e4bd", "cast_id": 3, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 2}, {"name": "Sienna Miller", "character": "Ana / Baroness", "id": 23459, "credit_id": "52fe46229251416c7506e4c1", "cast_id": 4, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 3}, {"name": "Joseph Gordon-Levitt", "character": "The Doctor / Rex", "id": 24045, "credit_id": "52fe46229251416c7506e4c5", "cast_id": 5, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 4}, {"name": "Sa\u00efd Taghmaoui", "character": "Breaker", "id": 5419, "credit_id": "52fe46229251416c7506e4c9", "cast_id": 6, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 5}, {"name": "Christopher Eccleston", "character": "McCullen / Destro", "id": 2040, "credit_id": "52fe46229251416c7506e4cd", "cast_id": 7, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 6}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Heavy Duty", "id": 31164, "credit_id": "52fe46229251416c7506e4d1", "cast_id": 8, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 7}, {"name": "Lee Byung-hun", "character": "Storm Shadow", "id": 25002, "credit_id": "52fe46229251416c7506e4ed", "cast_id": 13, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 8}, {"name": "Rachel Nichols", "character": "Scarlet", "id": 50347, "credit_id": "52fe46229251416c7506e4f1", "cast_id": 16, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 9}, {"name": "Ray Park", "character": "Snake Eyes", "id": 11007, "credit_id": "52fe46229251416c7506e4f5", "cast_id": 17, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 10}, {"name": "Arnold Vosloo", "character": "Zartan", "id": 16743, "credit_id": "52fe46229251416c7506e4f9", "cast_id": 18, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 11}, {"name": "Kevin J. O'Connor", "character": "Doctor Mindbender", "id": 18916, "credit_id": "52fe46229251416c7506e4fd", "cast_id": 19, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 12}, {"name": "Gr\u00e9gory Fitoussi", "character": "Baron de Cobray", "id": 1040850, "credit_id": "52fe46229251416c7506e501", "cast_id": 20, "profile_path": "/qPl77DjeQ3L689mTIqBXovY2jdm.jpg", "order": 13}, {"name": "Jonathan Pryce", "character": "U.S. President", "id": 378, "credit_id": "52fe46229251416c7506e51d", "cast_id": 28, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 14}, {"name": "Leo Howard", "character": "Young Snake Eyes", "id": 557921, "credit_id": "52fe46229251416c7506e505", "cast_id": 22, "profile_path": "/3lL32Wjcg852LIapVomWGzb4wyB.jpg", "order": 15}, {"name": "Brandon Soo Hoo", "character": "Young Storm Shadow", "id": 1115122, "credit_id": "52fe46229251416c7506e509", "cast_id": 23, "profile_path": "/yZse73nxYlk9Ypr5r43PUkpuZGB.jpg", "order": 16}, {"name": "Gerald Okamura", "character": "Hard Master", "id": 105047, "credit_id": "52fe46229251416c7506e50d", "cast_id": 24, "profile_path": "/wF4lMsaIKiClRU5mpHaaQ4oei7F.jpg", "order": 17}, {"name": "Karolina Kurkova", "character": "Cover Girl", "id": 215317, "credit_id": "52fe46229251416c7506e511", "cast_id": 25, "profile_path": "/AuHa3iOKnZgt7SuKGECd7sJdKiX.jpg", "order": 18}, {"name": "David Murray", "character": "James McCullen - 1641", "id": 93211, "credit_id": "52fe46229251416c7506e515", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Brendan Fraser", "character": "Sgt. Stone", "id": 18269, "credit_id": "52fe46229251416c7506e519", "cast_id": 27, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 20}, {"name": "Frederic Doss", "character": "Apache Navigator", "id": 209680, "credit_id": "54e89a9592514111b8001437", "cast_id": 37, "profile_path": null, "order": 21}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe46229251416c7506e4d7", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 5.7, "runtime": 118}, "14873": {"poster_path": "/9MXnhnqbubPy9NbFCvLJpg5VUns.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135680000, "overview": "Mowgli, missing the jungle and his old friends, runs away from the man village unaware of the danger he's in by going back to the wild.", "video": false, "id": 14873, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Jungle Book 2", "tagline": "", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7F5dqdq8GXhqDpLNX43pODtaevW.jpg", "poster_path": "/3Z4vzPkmnyrLnfFyr5cEHUUT1HN.jpg", "id": 97459, "name": "The Jungle Book Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0283426", "adult": false, "backdrop_path": "/mJP6tf0ScfoRZtagfsnWW7Jon1l.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-02-13", "popularity": 1.02906581824979, "original_title": "The Jungle Book 2", "budget": 20000000, "cast": [{"name": "John Goodman", "character": "Baloo", "id": 1230, "credit_id": "52fe46239251416c7506e59d", "cast_id": 1, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 0}, {"name": "Haley Joel Osment", "character": "Mowgli", "id": 9640, "credit_id": "52fe46239251416c7506e5a1", "cast_id": 2, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 1}, {"name": "Mae Whitman", "character": "Shanti", "id": 52404, "credit_id": "52fe46239251416c7506e5a5", "cast_id": 3, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 2}, {"name": "Phil Collins", "character": "Lucky", "id": 110001, "credit_id": "52fe46239251416c7506e5a9", "cast_id": 5, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 3}, {"name": "Connor Funk", "character": "Ranjan", "id": 945115, "credit_id": "52fe46239251416c7506e5b3", "cast_id": 7, "profile_path": "/rTlenqxvCHusU0YgLCzTdoZhzpe.jpg", "order": 4}, {"name": "Bob Joles", "character": "Bagheera", "id": 179702, "credit_id": "53d371650e0a262838001646", "cast_id": 8, "profile_path": "/1cbsuNkocUcvOw5D60KtsqjgLEG.jpg", "order": 5}, {"name": "Tony Jay", "character": "Shere Khan", "id": 65598, "credit_id": "53d3717f0e0a2628470014b1", "cast_id": 9, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 6}, {"name": "John Rhys-Davies", "character": "Ranjan's Father", "id": 655, "credit_id": "53d371990e0a2628470014b3", "cast_id": 10, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 7}, {"name": "Jim Cummings", "character": "Kaa / Colonel Hathi / M.C. Monkey", "id": 12077, "credit_id": "53d371b10e0a262838001656", "cast_id": 11, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 8}, {"name": "Phil Collins", "character": "Lucky (voice)", "id": 110001, "credit_id": "54357efb0e0a264d600000dd", "cast_id": 12, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 9}], "directors": [{"name": "Steve Trenbirth", "department": "Directing", "job": "Director", "credit_id": "52fe46239251416c7506e5af", "profile_path": null, "id": 142007}], "vote_average": 5.6, "runtime": 72}, "170522": {"poster_path": "/3qy4O0iRz1smlvzkJ37nFGI7MBH.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In order to wipe out the Gaulish village by any means necessary, Caesar plans to absorb the villagers into Roman culture by having an estate built next to the village to start a new Roman colony.", "video": false, "id": 170522, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}], "title": "Asterix: The Land of the Gods", "tagline": "", "vote_count": 64, "homepage": "http://www.sndm6group.com/Product/130/ASTERIX--the-Land-of-the-Gods", "belongs_to_collection": {"backdrop_path": "/zFfDpoDL1td5PLu6VCeSqQjaZbw.jpg", "poster_path": "/aZAIDg6sYbVl5CzvdwJSdn9qpxC.jpg", "id": 94039, "name": "Asterix and Obelix (Animation) Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3759416", "adult": false, "backdrop_path": "/vm7Ngs3THbsvf5XzbtX78vSUyn2.jpg", "production_companies": [{"name": "M6 Studio", "id": 4888}], "release_date": "2014-11-26", "popularity": 2.91485842985161, "original_title": "Ast\u00e9rix: Le domaine des dieux", "budget": 0, "cast": [{"name": "Roger Carel", "character": "Ast\u00e9rix", "id": 34676, "credit_id": "52fe4cf8c3a36847f8247a87", "cast_id": 2, "profile_path": "/wMJNiP6uVkoQN6tHnXU35rORbSy.jpg", "order": 0}, {"name": "Alexandre Astier", "character": "Un Centurion", "id": 47826, "credit_id": "52fe4cf8c3a36847f8247a8b", "cast_id": 4, "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "order": 1}, {"name": "Lionnel Astier", "character": "C\u00e9tautomatix", "id": 145231, "credit_id": "52fe4cf8c3a36847f8247a8f", "cast_id": 5, "profile_path": "/oubpsdlW3vBvbcsaz9uHnhZT8Na.jpg", "order": 2}, {"name": "Serge Papagalli", "character": "Abraracourcix", "id": 225853, "credit_id": "52fe4cf8c3a36847f8247a93", "cast_id": 6, "profile_path": "/1F8ulJH82Gw9mjlCUNrolJuI1EV.jpg", "order": 3}, {"name": "Fran\u00e7ois Morel", "character": "Ordralfab\u00e9tix", "id": 77929, "credit_id": "52fe4cf8c3a36847f8247a9b", "cast_id": 8, "profile_path": "/k22m9DV2EjTho6IL3TMpVeIU2Bf.jpg", "order": 5}, {"name": "Elie Semoun", "character": "Cubitus (Chef de Cohorte)", "id": 47829, "credit_id": "52fe4cf8c3a36847f8247a9f", "cast_id": 9, "profile_path": "/fdVGGPIf4sXIZ2yiBVgEySUK7CK.jpg", "order": 6}, {"name": "Guillaume Briat", "character": "Ob\u00e9lix", "id": 1152669, "credit_id": "52fe4cf8c3a36847f8247aa9", "cast_id": 11, "profile_path": "/nZRgXiCfW7ZMKi0DdivdPISPzU7.jpg", "order": 7}, {"name": "Lor\u00e0nt Deutsch", "character": "Anglaigus", "id": 25347, "credit_id": "53074e87c3a3682b7200032e", "cast_id": 12, "profile_path": "/r6kF1vGoKMcRVvYxpKfx91Ra4EK.jpg", "order": 8}, {"name": "Alain Chabat", "character": "S\u00e9nateur Prospectus", "id": 4275, "credit_id": "53074ee3c3a368538000069b", "cast_id": 13, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 9}, {"name": "G\u00e9raldine Nakache", "character": "Dulcia", "id": 114953, "credit_id": "53074f23c3a36822f1000523", "cast_id": 14, "profile_path": "/zLoLsZlHqhKkpJHdQWNFb512t2V.jpg", "order": 10}, {"name": "Florence Foresti", "character": "Bonemine", "id": 56226, "credit_id": "53074f3bc3a368363a00014d", "cast_id": 15, "profile_path": "/pBv0EiKkQWgU6YIS0Db4hQwcVZ7.jpg", "order": 11}, {"name": "Laurent Lafitte", "character": "Duplicatha", "id": 93532, "credit_id": "53074f54c3a36878010001e1", "cast_id": 16, "profile_path": "/58rntvDjklRQBDsrtar4Nw8lRde.jpg", "order": 12}, {"name": "Baptiste Lecaplain", "character": "un gladiateur", "id": 1115077, "credit_id": "53074f87c3a3685181000457", "cast_id": 17, "profile_path": "/c4b6Tu2yzlDb5sNIqjQReT8SmB9.jpg", "order": 13}, {"name": "Brice Fournier", "character": "Un S\u00e9nateur", "id": 587147, "credit_id": "53074fc0c3a3682b72000336", "cast_id": 18, "profile_path": "/tO9yEcc8jHaelRqtJTe9xMdhGu.jpg", "order": 14}, {"name": "Pascal Demolon", "character": "Cordius", "id": 1033622, "credit_id": "53075094c3a3685181000460", "cast_id": 19, "profile_path": "/o5zw4UUxmO9Jo5st5lkAohNqOYQ.jpg", "order": 15}], "directors": [{"name": "Alexandre Astier", "department": "Directing", "job": "Director", "credit_id": "52fe4cf8c3a36847f8247a83", "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "id": 47826}, {"name": "Louis Clichy", "department": "Directing", "job": "Director", "credit_id": "5488a2adc3a3684145001de8", "profile_path": null, "id": 1397397}], "vote_average": 6.8, "runtime": 85}, "39451": {"poster_path": "/vpVa9AaUHokKoRzDQmEPGgAWpaX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 310650585, "overview": "It has taken 10 years, two little Fockers with wife Pam and countless hurdles for Greg to finally get in with his tightly wound father-in-law, Jack. After the cash-strapped dad takes a job moonlighting for a drug company, Jack's suspicions about his favorite male nurse come roaring back. When Greg and Pam's entire clan descends for the twins' birthday party, Greg must prove to the skeptical Jack that he's fully capable as the man of the house.", "video": false, "id": 39451, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Little Fockers", "tagline": "Kids bring everyone closer, right?", "vote_count": 413, "homepage": "http://www.littlefockers.net/", "belongs_to_collection": {"backdrop_path": "/fgcgqjw37RThZCbVrfLLkJsqNNR.jpg", "poster_path": "/WFkinadVm4NRynRKuUcaLFNIDx.jpg", "id": 51509, "name": "Meet the Parents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970866", "adult": false, "backdrop_path": "/gpodYxsJZ6OVlpPo0fYkubTBWx9.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2010-12-21", "popularity": 0.902544077284135, "original_title": "Little Fockers", "budget": 100000000, "cast": [{"name": "Robert De Niro", "character": "Jack Byrnes", "id": 380, "credit_id": "52fe471a9251416c9106a125", "cast_id": 13, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Greg Focker", "id": 7399, "credit_id": "52fe471a9251416c9106a129", "cast_id": 14, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Kevin Rawley", "id": 887, "credit_id": "52fe471a9251416c9106a12d", "cast_id": 15, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Dustin Hoffman", "character": "Bernie Focker", "id": 4483, "credit_id": "52fe471a9251416c9106a131", "cast_id": 16, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 3}, {"name": "Barbra Streisand", "character": "Rozalin Focker", "id": 10400, "credit_id": "52fe471a9251416c9106a135", "cast_id": 17, "profile_path": "/iLkX0Qwz2BH42rcZ0yWqPtyKSeN.jpg", "order": 4}, {"name": "Teri Polo", "character": "Pam Byrnes-Focker", "id": 10399, "credit_id": "52fe471a9251416c9106a139", "cast_id": 18, "profile_path": "/67k0q1YYVIeMd0wZalfqJ2FYLuu.jpg", "order": 5}, {"name": "Blythe Danner", "character": "Dina Byrnes", "id": 10401, "credit_id": "52fe471a9251416c9106a13d", "cast_id": 19, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 6}, {"name": "Jessica Alba", "character": "Andi Garcia", "id": 56731, "credit_id": "52fe471a9251416c9106a141", "cast_id": 21, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 7}, {"name": "Harvey Keitel", "character": "Randy Weir", "id": 1037, "credit_id": "52fe471a9251416c9106a145", "cast_id": 22, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 8}, {"name": "Laura Dern", "character": "Prudence", "id": 4784, "credit_id": "52fe471a9251416c9106a149", "cast_id": 23, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 9}, {"name": "Colin Baiocchi", "character": "Henry Focker", "id": 145374, "credit_id": "52fe471a9251416c9106a14d", "cast_id": 24, "profile_path": "/tcIKr5ByT1CaGbGnjc7lLBxO6UI.jpg", "order": 10}, {"name": "Daisy Tahan", "character": "Samantha Focker", "id": 80002, "credit_id": "52fe471a9251416c9106a151", "cast_id": 25, "profile_path": "/tcu4J8a6cpefCa55eZ9OWl8W4wG.jpg", "order": 11}, {"name": "Robert Miano", "character": "Party Parent", "id": 62715, "credit_id": "52fe471a9251416c9106a155", "cast_id": 26, "profile_path": "/jdooBgF7c24ehqBWPJHjC1f09f8.jpg", "order": 12}, {"name": "Sergio Calder\u00f3n", "character": "Gustavo", "id": 9630, "credit_id": "52fe471a9251416c9106a159", "cast_id": 27, "profile_path": "/idF5aYegbTJzZF7Uhe3GarfKSsZ.jpg", "order": 13}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe471a9251416c9106a115", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 5.5, "runtime": 98}, "7942": {"poster_path": "/s6ehbUfScpU0408ahsxCzlUwAzG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 33000000, "overview": "Five years after jilting his pregnant fianc\u00e9e on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.", "video": false, "id": 7942, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Run, Fatboy, Run", "tagline": "Love. Commitment. Responsibility. There's nothing he won't run away from.", "vote_count": 56, "homepage": "http://www.runfatboyrunmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425413", "adult": false, "backdrop_path": "/ataSToX6mARHLbv0NpEmKr7IJJs.jpg", "production_companies": [{"name": "Entertainment Films", "id": 2245}, {"name": "Material Entertainment", "id": 2246}, {"name": "Beech Hill Films", "id": 6847}], "release_date": "2007-09-06", "popularity": 0.415361934774286, "original_title": "Run Fatboy Run", "budget": 10000000, "cast": [{"name": "Simon Pegg", "character": "Dennis", "id": 11108, "credit_id": "52fe4489c3a36847f809b9b3", "cast_id": 9, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Thandie Newton", "character": "Libby", "id": 9030, "credit_id": "52fe4489c3a36847f809b9b7", "cast_id": 10, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 1}, {"name": "Hank Azaria", "character": "Whit", "id": 5587, "credit_id": "52fe4489c3a36847f809b9bb", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 2}, {"name": "Dylan Moran", "character": "Gordon", "id": 7028, "credit_id": "52fe4489c3a36847f809b9bf", "cast_id": 12, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 3}, {"name": "Harish Patel", "character": "Mr. Goshdashtidar", "id": 53362, "credit_id": "52fe4489c3a36847f809b9c3", "cast_id": 13, "profile_path": "/rj5JnECTU0CR8vS9cVBhFPG5vs5.jpg", "order": 4}, {"name": "India de Beaufort", "character": "Maya Goshdashtidar", "id": 53364, "credit_id": "52fe4489c3a36847f809b9c7", "cast_id": 14, "profile_path": "/lwo8G0R4TW4Nyc6jPw6GdILkleu.jpg", "order": 5}, {"name": "Matthew Fenton", "character": "Jake", "id": 53365, "credit_id": "52fe4489c3a36847f809b9cb", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Simon Day", "character": "Vincent", "id": 53366, "credit_id": "52fe4489c3a36847f809b9cf", "cast_id": 16, "profile_path": "/abYgLYkQFueO7GRYi3q2COdm2oH.jpg", "order": 7}, {"name": "Ruth Sheen", "character": "Claudine", "id": 53367, "credit_id": "52fe4489c3a36847f809b9d3", "cast_id": 17, "profile_path": "/1A8sHqgO7vkzcaHAnGr0Ya4Dxte.jpg", "order": 8}, {"name": "Nevan Finegan", "character": "Mickey", "id": 53388, "credit_id": "52fe4489c3a36847f809b9d7", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Tyrone Huggins", "character": "Grover", "id": 53389, "credit_id": "52fe4489c3a36847f809b9db", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Iddo Goldberg", "character": "News Reporter", "id": 94958, "credit_id": "52fe4489c3a36847f809b9df", "cast_id": 20, "profile_path": "/VXjK4ZcvDMLOpkE3egiKNzM9HN.jpg", "order": 11}, {"name": "Ameet Chana", "character": "Taxi Driver", "id": 6239, "credit_id": "52fe448ac3a36847f809b9e3", "cast_id": 21, "profile_path": "/yS2siAYTSMqUBwtPpVQ7ONrJbrC.jpg", "order": 12}, {"name": "Chris Hollins", "character": "Himself", "id": 1089425, "credit_id": "52fe448ac3a36847f809b9e7", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Denis Lewis", "character": "Herself", "id": 1089426, "credit_id": "52fe448ac3a36847f809b9eb", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Lorna Gayle", "character": "Nurse", "id": 209990, "credit_id": "52fe448ac3a36847f809b9ef", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Gabriel Fleary", "character": "Drag Queen", "id": 1013050, "credit_id": "52fe448ac3a36847f809b9f3", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Pandora Colin", "character": "Claire", "id": 199523, "credit_id": "52fe448ac3a36847f809b9f7", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Stephen Merchant", "character": "Man with Broken Leg", "id": 39189, "credit_id": "52fe448ac3a36847f809b9fb", "cast_id": 27, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 18}, {"name": "David Walliams", "character": "Man in Bakery", "id": 80536, "credit_id": "52fe448ac3a36847f809b9ff", "cast_id": 28, "profile_path": "/3CrenEjzotOmk2FidLQ1mePjPNS.jpg", "order": 19}, {"name": "Hazel Douglas", "character": "Older Woman", "id": 94742, "credit_id": "52fe448ac3a36847f809ba03", "cast_id": 29, "profile_path": "/nT2a4oiWM8hk34hRvQcKA7in89g.jpg", "order": 20}, {"name": "Anna Tolputt", "character": "Receptionist", "id": 73967, "credit_id": "52fe448ac3a36847f809ba07", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Simon Lenagan", "character": "Undercover Cop / Dad", "id": 30446, "credit_id": "52fe448ac3a36847f809ba0b", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "David Cann", "character": "Marathon Official", "id": 193340, "credit_id": "52fe448ac3a36847f809ba0f", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "T.R. Bowen", "character": "Doctor", "id": 133038, "credit_id": "52fe448ac3a36847f809ba13", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Margaret John", "character": "Libby's Grandmother", "id": 119906, "credit_id": "52fe448ac3a36847f809ba17", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Floella Benjamin", "character": "Libby's Mum", "id": 220167, "credit_id": "52fe448ac3a36847f809ba1b", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "David Milner", "character": "Libby's Dad", "id": 1017831, "credit_id": "52fe448ac3a36847f809ba1f", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Henrietta Clemett", "character": "Reception Nurse", "id": 1089427, "credit_id": "52fe448ac3a36847f809ba23", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Peter Serafinowicz", "character": "TV Commentator", "id": 11115, "credit_id": "52fe448ac3a36847f809ba27", "cast_id": 38, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 29}], "directors": [{"name": "David Schwimmer", "department": "Directing", "job": "Director", "credit_id": "52fe4489c3a36847f809b985", "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "id": 14409}], "vote_average": 6.3, "runtime": 100}, "55846": {"poster_path": "/9TKwBFjvOM2yoNYVCOug94iIBWo.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 741875, "overview": "A tough cop is dispatched to take down a serial killer who has been targeting police officers.", "video": false, "id": 55846, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Blitz", "tagline": "It's cop-killer versus killer-cop.", "vote_count": 166, "homepage": "http://www.blitzmovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1297919", "adult": false, "backdrop_path": "/3QSBDya9ZI7AqGfcXqTfrrEOot0.jpg", "production_companies": [{"name": "Lipsync Productions", "id": 9987}, {"name": "Lionsgate", "id": 1632}, {"name": "Davis-Films", "id": 342}, {"name": "Current Entertainment", "id": 972}, {"name": "Kushner/Wyman Productions", "id": 25629}, {"name": "Blitz Films", "id": 25628}], "release_date": "2011-05-20", "popularity": 0.65051423727813, "original_title": "Blitz", "budget": 15774948, "cast": [{"name": "Jason Statham", "character": "Detective Sergeant Tom Brant", "id": 976, "credit_id": "52fe48e2c3a36847f817ea43", "cast_id": 9, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Paddy Considine", "character": "Porter Nash", "id": 14887, "credit_id": "52fe48e2c3a36847f817ea2b", "cast_id": 3, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 1}, {"name": "Aidan Gillen", "character": "Barry Weiss", "id": 49735, "credit_id": "52fe48e2c3a36847f817ea2f", "cast_id": 4, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 2}, {"name": "Zawe Ashton", "character": "WPC Elizabeth Falls", "id": 118034, "credit_id": "52fe48e2c3a36847f817ea33", "cast_id": 5, "profile_path": "/eZH93X0uu3OfbzELkQeXdQGbS3c.jpg", "order": 3}, {"name": "Luke Evans", "character": "DI Craig Stokes", "id": 114019, "credit_id": "52fe48e2c3a36847f817ea47", "cast_id": 10, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 4}, {"name": "David Morrissey", "character": "Dunlop", "id": 18616, "credit_id": "52fe48e2c3a36847f817ea4b", "cast_id": 11, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 5}, {"name": "Ron Donachie", "character": "Sergeant Cross", "id": 63141, "credit_id": "52fe48e2c3a36847f817ea4f", "cast_id": 12, "profile_path": "/eYU99aaSs2D0EZXbRTn5oFo3kaG.jpg", "order": 6}, {"name": "Joe Dempsie", "character": "Theo Nelson", "id": 570296, "credit_id": "52fe48e2c3a36847f817ea53", "cast_id": 13, "profile_path": "/yfFYFrVFGc5pVnc4tn5wrZgMENG.jpg", "order": 7}, {"name": "Elly Fairman", "character": "DC Sandra Bates (as Ellie Fairman)", "id": 293071, "credit_id": "52fe48e2c3a36847f817ea57", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ned Dennehy", "character": "Radnor", "id": 63362, "credit_id": "52fe48e2c3a36847f817ea5b", "cast_id": 15, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 9}, {"name": "Bill Champion", "character": "Dr. Leonard", "id": 1332498, "credit_id": "53a54b250e0a26143f000d60", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Richard Riddell", "character": "McDonald", "id": 103352, "credit_id": "53a54b5e0e0a261445000dc8", "cast_id": 31, "profile_path": "/48lJtJRVzuBK2ac8JBQZiBbVkYT.jpg", "order": 11}, {"name": "Ron Donachie", "character": "Cross", "id": 63141, "credit_id": "53a54bc6c3a36874950003fc", "cast_id": 32, "profile_path": "/eYU99aaSs2D0EZXbRTn5oFo3kaG.jpg", "order": 12}], "directors": [{"name": "Elliott Lester", "department": "Directing", "job": "Director", "credit_id": "52fe48e2c3a36847f817ea27", "profile_path": "/2VVIVzl47jSwYGAds5pCniGz17v.jpg", "id": 119406}], "vote_average": 6.1, "runtime": 97}, "244264": {"poster_path": "/dNcoXoRC7JHiqbe7k5Ufo6syiPP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Overeducated and underemployed, 28 year old Megan is in the throes of a quarterlife crisis. Squarely into adulthood with no career prospects, no particular motivation to think about her future and no one to relate to, Megan is comfortable lagging a few steps behind - while her friends check off milestones and celebrate their new grown-up status. When her high-school sweetheart proposes, Megan panics and- given an unexpected opportunity to escape for a week - hides out in the home of her new friend, 16-year old Annika and Annika's world-weary single dad Craig.", "video": false, "id": 244264, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Laggies", "tagline": "Acting your age is so overrated.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2034031", "adult": false, "backdrop_path": "/3hOPv3w5mmPV3MA9fk0nPI5MyXV.jpg", "production_companies": [{"name": "Merced Media Partners", "id": 45358}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2014-10-24", "popularity": 1.42399931139669, "original_title": "Laggies", "budget": 0, "cast": [{"name": "Keira Knightley", "character": "Megan", "id": 116, "credit_id": "52fe4eefc3a36847f82b1a53", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Annika", "id": 56734, "credit_id": "52fe4eefc3a36847f82b1a5b", "cast_id": 7, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "Craig", "id": 6807, "credit_id": "551f017f9251415c7700004b", "cast_id": 8, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Kaitlyn Dever", "character": "Misty", "id": 481337, "credit_id": "551f018dc3a3684dcd00003e", "cast_id": 9, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 4}, {"name": "Ellie Kemper", "character": "Allison", "id": 475512, "credit_id": "551f01aec3a3684dda000077", "cast_id": 10, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 5}, {"name": "Mark Webber", "character": "Anthony", "id": 4451, "credit_id": "551f01d6c3a3684dda00007e", "cast_id": 11, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 6}, {"name": "Jeff Garlin", "character": "Ed", "id": 60074, "credit_id": "551f01e6c3a3684dcf000064", "cast_id": 12, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 7}, {"name": "Daniel Zovatto", "character": "Junior", "id": 1172147, "credit_id": "551f01f7c3a3684dcd000049", "cast_id": 13, "profile_path": "/hfohvPNLolPSLSsw4jPzHW7if2R.jpg", "order": 8}, {"name": "Gretchen Mol", "character": "Bethany", "id": 15370, "credit_id": "553a12aac3a3683e55000f9d", "cast_id": 14, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 9}], "directors": [{"name": "Lynn Shelton", "department": "Directing", "job": "Director", "credit_id": "52fe4eefc3a36847f82b1a3d", "profile_path": "/rKidRtakuSjXv13CjkYXcOeiKPq.jpg", "id": 90492}], "vote_average": 6.2, "runtime": 100}, "23082": {"poster_path": "/3A6AjKUo63tfpt7Dj4md8cOR5Gg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31912793, "overview": "Set in a world where the concept of lying doesn't exist, a loser changes his lot when he invents lying and uses it to get ahead.", "video": false, "id": 23082, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Invention of Lying", "tagline": "In a world where everyone can only tell the truth... This guy can lie.", "vote_count": 146, "homepage": "http://the-invention-of-lying.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1058017", "adult": false, "backdrop_path": "/aT9YzyaNTr3vItKnfG60yyDM2PS.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "Warner Bros.", "id": 6194}, {"name": "Radar Pictures", "id": 14718}, {"name": "Media Rights Capital", "id": 2531}, {"name": "1821 Pictures", "id": 14358}, {"name": "Lin Pictures", "id": 2723}, {"name": "Lynda Obst Productions", "id": 13769}], "release_date": "2009-09-13", "popularity": 0.699539342436836, "original_title": "The Invention of Lying", "budget": 18500000, "cast": [{"name": "Ricky Gervais", "character": "Mark Bellison", "id": 17835, "credit_id": "52fe445dc3a368484e01eca7", "cast_id": 1, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Anna McDoogles", "id": 9278, "credit_id": "52fe445dc3a368484e01ecab", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Jonah Hill", "character": "Frank", "id": 21007, "credit_id": "52fe445dc3a368484e01ecaf", "cast_id": 3, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 2}, {"name": "Louis C.K.", "character": "Greg", "id": 52849, "credit_id": "52fe445dc3a368484e01ecb3", "cast_id": 4, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Anthony", "id": 4175, "credit_id": "52fe445dc3a368484e01ecb7", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Fionnula Flanagan", "character": "Martha Bellison", "id": 58068, "credit_id": "52fe445dc3a368484e01ecbb", "cast_id": 6, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 5}, {"name": "Rob Lowe", "character": "Brad Kessler", "id": 2879, "credit_id": "52fe445dc3a368484e01ecbf", "cast_id": 7, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 6}, {"name": "Tina Fey", "character": "Shelley", "id": 56323, "credit_id": "52fe445dc3a368484e01ecc3", "cast_id": 8, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 7}, {"name": "Stephanie March", "character": "Blonde", "id": 59156, "credit_id": "52fe445dc3a368484e01ecd3", "cast_id": 11, "profile_path": "/cHEnLAOfLW0sMQ83mdmlZXzuvnj.jpg", "order": 8}, {"name": "Ruben Santiago-Hudson", "character": "Landlord", "id": 31839, "credit_id": "52fe445dc3a368484e01ecd7", "cast_id": 12, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 9}, {"name": "John Hodgman", "character": "Wedding Overseer", "id": 77344, "credit_id": "52fe445dc3a368484e01ecdb", "cast_id": 13, "profile_path": "/qMFcDuOUgz3HkD5OMjkHYa677VE.jpg", "order": 10}, {"name": "Nate Corddry", "character": "News Reporter", "id": 127048, "credit_id": "52fe445dc3a368484e01ecdf", "cast_id": 14, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 11}, {"name": "Jimmi Simpson", "character": "Bob", "id": 22125, "credit_id": "52fe445dc3a368484e01ece3", "cast_id": 15, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 12}, {"name": "Martin Starr", "character": "Waiter #1", "id": 41089, "credit_id": "52fe445dc3a368484e01ece7", "cast_id": 16, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 13}, {"name": "Jason Bateman", "character": "Doctor", "id": 23532, "credit_id": "52fe445dc3a368484e01eceb", "cast_id": 17, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 14}, {"name": "Christopher Guest", "character": "Nathan Goldfrappe", "id": 13524, "credit_id": "52fe445dc3a368484e01ecef", "cast_id": 18, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 15}, {"name": "Philip Seymour Hoffman", "character": "Jim the Bartender", "id": 1233, "credit_id": "52fe445dc3a368484e01ecf3", "cast_id": 19, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 16}, {"name": "Edward Norton", "character": "Cop", "id": 819, "credit_id": "52fe445dc3a368484e01ecf7", "cast_id": 20, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 17}, {"name": "Bobby Moynihan", "character": "Assistant", "id": 452205, "credit_id": "52fe445dc3a368484e01ecfb", "cast_id": 21, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 18}, {"name": "Stephen Merchant", "character": "Man at the Door", "id": 39189, "credit_id": "52fe445dc3a368484e01ed05", "cast_id": 23, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 19}, {"name": "Dreama Walker", "character": "Receptionist", "id": 74303, "credit_id": "52fe445dc3a368484e01ed09", "cast_id": 24, "profile_path": "/s0d0pYG4ZECFGt87bBu4iEORh0K.jpg", "order": 20}], "directors": [{"name": "Ricky Gervais", "department": "Directing", "job": "Director", "credit_id": "52fe445dc3a368484e01ecc9", "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "id": 17835}], "vote_average": 5.9, "runtime": 100}, "244267": {"poster_path": "/8yBrj7mXCcNaHOJja7CL7tAnqlc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 336472, "overview": "I Origins follows a molecular biologist studying the evolution of the human eye. He finds his work permeating his life after a brief encounter with an exotic young woman who slips away from him. As his research continues years later with his lab partner, they make a stunning scientific discovery that has far reaching implications and complicates both his scientific and and spiritual beliefs. Traveling half way around the world, he risks everything he has ever known to validate his theory.", "video": false, "id": 244267, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "I Origins", "tagline": "", "vote_count": 173, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2884206", "adult": false, "backdrop_path": "/aCqtptDwByuW6gL9rm085KU9eVg.jpg", "production_companies": [{"name": "Bersin Pictures", "id": 36186}, {"name": "Verisimilitude", "id": 22632}, {"name": "WeWork Studios", "id": 36187}], "release_date": "2014-07-18", "popularity": 1.65085335869697, "original_title": "I Origins", "budget": 0, "cast": [{"name": "Michael Pitt", "character": "Ian Gray", "id": 10692, "credit_id": "52fe4eefc3a36847f82b1ac7", "cast_id": 9, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 0}, {"name": "Steven Yeun", "character": "Kenny", "id": 215055, "credit_id": "52fe4eefc3a36847f82b1ad3", "cast_id": 12, "profile_path": "/ijQd15rEvkqaEBONW7szFZMpRyP.jpg", "order": 1}, {"name": "Astrid Berg\u00e8s-Frisbey", "character": "Sofi", "id": 469759, "credit_id": "52fe4eefc3a36847f82b1acf", "cast_id": 11, "profile_path": "/tyegg8trgGSRfWwnmbX69DG5rQ5.jpg", "order": 2}, {"name": "Brit Marling", "character": "Karen", "id": 222330, "credit_id": "52fe4eefc3a36847f82b1acb", "cast_id": 10, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 3}, {"name": "Dorien Makhloghi", "character": "7-Eleven Attendant", "id": 1455931, "credit_id": "5532131292514140b50003cc", "cast_id": 19, "profile_path": "/2vNFOZgFRha79oT903ccFuMR15n.jpg", "order": 4}, {"name": "Charles W. Gray", "character": "Marriage Clerk", "id": 45448, "credit_id": "53c693f1c3a36862470022ce", "cast_id": 15, "profile_path": "/vH5sb42b01saWMdMBCmGC5xhym7.jpg", "order": 5}, {"name": "Johns Schiumo", "character": "TV Anchor", "id": 1342356, "credit_id": "53c694c70e0a267ff10022f7", "cast_id": 18, "profile_path": "/jyWS7chcSdWv97vbwubMn3FT9ym.jpg", "order": 6}, {"name": "Farasha Baylock", "character": "Posh Waitress", "id": 1455943, "credit_id": "5532169dc3a3682226002287", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Ako", "character": "Nurse", "id": 1113467, "credit_id": "553217ba92514164d500133a", "cast_id": 23, "profile_path": "/JR7IlN2W676n4GiMrvyy9pYoRs.jpg", "order": 8}, {"name": "Christopher Santamaria", "character": "Baby Tobias", "id": 1455945, "credit_id": "55321a3cc3a368221d00229a", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Sebastian Santamaria", "character": "Baby Tobias", "id": 1455946, "credit_id": "55321a4d925141529100217f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Cara Seymour", "character": "Dr. Jane Simmons", "id": 2617, "credit_id": "52fe4eefc3a36847f82b1adb", "cast_id": 14, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 11}, {"name": "Rhonda Ayers", "character": "Waitress", "id": 1342355, "credit_id": "53c6947ac3a368624b00211e", "cast_id": 17, "profile_path": "/kQCYRwOoz4yvxucTc2dREZ4WZnF.jpg", "order": 13}, {"name": "Crystal Anne Dickinson", "character": "Julie Dairy", "id": 1422497, "credit_id": "55321ac6925141529b00210b", "cast_id": 27, "profile_path": "/6MLUT6nd6X44qqICZG9T8hphUgk.jpg", "order": 14}, {"name": "Venida Evans", "character": "Margaret Dairy", "id": 1232607, "credit_id": "55321bb4c3a368222a0020fb", "cast_id": 28, "profile_path": "/jAV8n1n0uIvRnYsL0UvjmT3I82h.jpg", "order": 15}, {"name": "William Mapother", "character": "Darryl Mackenzie", "id": 15338, "credit_id": "55321bcd92514152910021c3", "cast_id": 29, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 16}, {"name": "Archie Panjabi", "character": "Priya Varma", "id": 128645, "credit_id": "52fe4eefc3a36847f82b1ad7", "cast_id": 13, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 17}], "directors": [{"name": "Mike Cahill", "department": "Directing", "job": "Director", "credit_id": "52fe4eefc3a36847f82b1a99", "profile_path": "/mHnomJ1nar2xq8z0ht2iReFolof.jpg", "id": 45459}], "vote_average": 7.2, "runtime": 106}, "10316": {"poster_path": "/4RTZVVFVFUxndkjlyauDIi0jANt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75993061, "overview": "An idealistic staffer for a newbie presidential candidate gets a crash course on dirty politics during his stint on the campaign trail. Based on the play by Beau Willimon.", "video": false, "id": 10316, "genres": [{"id": 18, "name": "Drama"}], "title": "The Ides of March", "tagline": "Ambition seduces. Power corrupts.", "vote_count": 284, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1124035", "adult": false, "backdrop_path": "/fWy4ATlV8T3mYKicihloXfBeVAd.jpg", "production_companies": [{"name": "Crystal City Entertainment", "id": 9018}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Smokehouse Pictures", "id": 22695}], "release_date": "2011-10-07", "popularity": 1.18174026811333, "original_title": "The Ides of March", "budget": 12500000, "cast": [{"name": "Ryan Gosling", "character": "Stephen Meyers", "id": 30614, "credit_id": "52fe43589251416c7500cc2f", "cast_id": 6, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "George Clooney", "character": "Governer Mike Morris", "id": 1461, "credit_id": "52fe43589251416c7500cc2b", "cast_id": 5, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 1}, {"name": "Philip Seymour Hoffman", "character": "Paul Zara", "id": 1233, "credit_id": "52fe43589251416c7500cc3f", "cast_id": 10, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Tom Duffy", "id": 13242, "credit_id": "52fe43589251416c7500cc3b", "cast_id": 9, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Evan Rachel Wood", "character": "Molly Stearns", "id": 38940, "credit_id": "52fe43589251416c7500cc33", "cast_id": 7, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 4}, {"name": "Marisa Tomei", "character": "Ida Horowicz", "id": 3141, "credit_id": "52fe43589251416c7500cc37", "cast_id": 8, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "Senator Franklin Thompson", "id": 2954, "credit_id": "52fe43589251416c7500cc43", "cast_id": 11, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Jennifer Ehle", "character": "Cindy Morris", "id": 49971, "credit_id": "52fe43589251416c7500ccd5", "cast_id": 37, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 7}, {"name": "Gregory Itzin", "character": "Jack Stearns", "id": 21142, "credit_id": "52fe43589251416c7500ccd9", "cast_id": 38, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 8}, {"name": "Michael Mantell", "character": "Senator Ted Pullman", "id": 91030, "credit_id": "52fe43589251416c7500ccdd", "cast_id": 39, "profile_path": "/80CLXfrPC9BoqhjsV5k5rzm5XQL.jpg", "order": 9}, {"name": "Max Minghella", "character": "Ben Harpen", "id": 2978, "credit_id": "52fe43589251416c7500ccd1", "cast_id": 36, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 10}, {"name": "Yuriy Sardarov", "character": "Mike", "id": 150672, "credit_id": "52fe43589251416c7500cce1", "cast_id": 40, "profile_path": "/kM5kbXtXEPfD76EbulrAGiAuF1u.jpg", "order": 11}, {"name": "Bella Ivory", "character": "Jenny", "id": 972921, "credit_id": "52fe43589251416c7500cce5", "cast_id": 41, "profile_path": null, "order": 12}, {"name": "Maya Sayre", "character": "Sue", "id": 972922, "credit_id": "52fe43589251416c7500cce9", "cast_id": 42, "profile_path": null, "order": 13}, {"name": "Danny Mooney ", "character": "Campaign Editor", "id": 146413, "credit_id": "52fe43589251416c7500cced", "cast_id": 43, "profile_path": null, "order": 14}], "directors": [{"name": "George Clooney", "department": "Directing", "job": "Director", "credit_id": "52fe43589251416c7500cc1b", "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "id": 1461}], "vote_average": 6.3, "runtime": 101}, "9316": {"poster_path": "/t4TIJWdnxcKXcsLYqKUoNzDkeU8.jpg", "production_countries": [{"iso_3166_1": "TH", "name": "Thailand"}], "revenue": 4563167, "overview": "When the head of a statue sacred to a village is stolen, a young martial artist goes to the big city and finds himself taking on the underworld to retrieve it.", "video": false, "id": 9316, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Ong Bak", "tagline": "No computer graphics. No stunt doubles. No wires.", "vote_count": 167, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wqyznAkjOn5nhRYYH7Gl6Bcq3kg.jpg", "poster_path": "/30jBLzjAGQ8YZSqyhNEcVP6XZCU.jpg", "id": 94589, "name": "Ong Bak Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368909", "adult": false, "backdrop_path": "/357wFlr9KaqWXqoE2HudCmsyvvt.jpg", "production_companies": [{"name": "Baa-Ram-Ewe", "id": 4206}, {"name": "Sahamongkolfilm Co.", "id": 4207}], "release_date": "2003-01-21", "popularity": 0.270620465200758, "original_title": "Ong Bak", "budget": 0, "cast": [{"name": "Tony Jaa", "character": "Ting", "id": 57207, "credit_id": "52fe44e6c3a36847f80b0b7d", "cast_id": 2, "profile_path": "/qq0uXKe3aKaAE04QQ0BvbbFFufF.jpg", "order": 0}, {"name": "Petchtai Wongkamlao", "character": "Humlae / Dirty Balls / George", "id": 57208, "credit_id": "52fe44e6c3a36847f80b0b79", "cast_id": 1, "profile_path": "/nfzruEoq39lHtbyfHbameRAPY8m.jpg", "order": 1}, {"name": "Pumwaree Yodkamol", "character": "Muay Lek", "id": 57272, "credit_id": "52fe44e6c3a36847f80b0b81", "cast_id": 3, "profile_path": "/9xiahRqcr2VflvdcyaC1Wv8c0XG.jpg", "order": 2}, {"name": "Suchao Pongwilai", "character": "Komtuan", "id": 57273, "credit_id": "52fe44e6c3a36847f80b0b85", "cast_id": 4, "profile_path": "/zUcE8O2y7oOFCX3hpHCKmZ1czbD.jpg", "order": 3}, {"name": "Chumphorn Thepphithak", "character": "Uncle Mao", "id": 149862, "credit_id": "52fe44e6c3a36847f80b0bd1", "cast_id": 19, "profile_path": "/7shjeY2dZLKzEmOsORvq9wSlyvR.jpg", "order": 4}, {"name": "Cheathavuth Watcharakhun", "character": "Peng", "id": 1052080, "credit_id": "52fe44e6c3a36847f80b0bd5", "cast_id": 20, "profile_path": "/tJkWynIa34GK8uHwDq6BsAs7Dqa.jpg", "order": 5}, {"name": "Wannakit Sirioput", "character": "Don", "id": 1003459, "credit_id": "52fe44e6c3a36847f80b0c03", "cast_id": 28, "profile_path": "/z5DDVOVyIoBZlpqaxilagLtehdC.jpg", "order": 6}, {"name": "Rungrawee Barijindakul", "character": "Ngek", "id": 1003463, "credit_id": "52fe44e6c3a36847f80b0c07", "cast_id": 29, "profile_path": "/isi9pmpObt9jzTkmZQ7vk8gwk8A.jpg", "order": 7}, {"name": "Chatthapong Pantanaunkul", "character": "Saming", "id": 64366, "credit_id": "52fe44e6c3a36847f80b0c0b", "cast_id": 30, "profile_path": "/mb4y01r0EdQopEVmnm8O0bPTc8S.jpg", "order": 8}, {"name": "Nudhapol Asavabhakhin", "character": "Toshiro", "id": 1003462, "credit_id": "52fe44e6c3a36847f80b0c0f", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Pornpimol Chookanthong", "character": "Mae Waan", "id": 1125641, "credit_id": "52fe44e6c3a36847f80b0c13", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Udom Chouncheun", "character": "Ta Meun", "id": 1125642, "credit_id": "52fe44e6c3a36847f80b0c17", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Boonsri Yindee", "character": "Yai Hom", "id": 1125643, "credit_id": "52fe44e6c3a36847f80b0c1b", "cast_id": 34, "profile_path": null, "order": 12}], "directors": [{"name": "Prachya Pinkaew", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0b8b", "profile_path": "/mdylkarwiTruUbrYFigolTFya7q.jpg", "id": 57214}], "vote_average": 6.8, "runtime": 105}, "39514": {"poster_path": "/q2mwTRKrq1etP9S4SZVDIJq0wI2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71664962, "overview": "When his peaceful life is threatened by a high-tech assassin, former black-ops agent Frank Moses reassembles his old team in a last ditch effort to survive and uncover his assailants.", "video": false, "id": 39514, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "RED", "tagline": "Still armed. Still dangerous. Still got it.", "vote_count": 1489, "homepage": "http://www.red-themovie.com/", "belongs_to_collection": {"backdrop_path": "/fLQjbO5Y2a4hXTPYsZCcWAdjcdS.jpg", "poster_path": "/d9T3DkXxDahif4eXPzrH28yayaL.jpg", "id": 163902, "name": "RED Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1245526", "adult": false, "backdrop_path": "/1TFEtFxD1M9OvMGlGcSAR5Pg53I.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Summit Entertainment", "id": 491}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2010-10-14", "popularity": 1.4031515573914, "original_title": "RED", "budget": 58000000, "cast": [{"name": "Bruce Willis", "character": "Frank Moses", "id": 62, "credit_id": "52fe47219251416c9106b043", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "John Malkovich", "character": "Marvin Boggs", "id": 6949, "credit_id": "52fe47229251416c9106b04b", "cast_id": 7, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Helen Mirren", "character": "Victoria", "id": 15735, "credit_id": "52fe47229251416c9106b04f", "cast_id": 8, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 2}, {"name": "Mary-Louise Parker", "character": "Sarah", "id": 18248, "credit_id": "52fe47229251416c9106b047", "cast_id": 5, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 3}, {"name": "Karl Urban", "character": "William Cooper", "id": 1372, "credit_id": "52fe47229251416c9106b059", "cast_id": 10, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 4}, {"name": "Richard Dreyfuss", "character": "Alexander Dunning", "id": 3037, "credit_id": "52fe47229251416c9106b05d", "cast_id": 12, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 5}, {"name": "Julian McMahon", "character": "VP Stanton", "id": 20402, "credit_id": "52fe47229251416c9106b061", "cast_id": 13, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 6}, {"name": "James Remar", "character": "Gabriel Loeb", "id": 1736, "credit_id": "52fe47229251416c9106b065", "cast_id": 14, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 7}, {"name": "Brian Cox", "character": "Ivan Simanov", "id": 1248, "credit_id": "52fe47229251416c9106b099", "cast_id": 27, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 8}, {"name": "Ernest Borgnine", "character": "Henry", "id": 7502, "credit_id": "52fe47229251416c9106b069", "cast_id": 15, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 9}, {"name": "Michelle Nolden", "character": "Michelle Cooper", "id": 95635, "credit_id": "52fe47229251416c9106b06d", "cast_id": 16, "profile_path": "/a72FYiArZuG0TjYXtdzPsNvtTyY.jpg", "order": 10}, {"name": "Jonathan Walker", "character": "Burbacher", "id": 52702, "credit_id": "52fe47229251416c9106b071", "cast_id": 17, "profile_path": "/1rIItto71vrSYzcS4yXMsXWk2Yu.jpg", "order": 11}, {"name": "John Stead", "character": "Agent", "id": 126257, "credit_id": "52fe47229251416c9106b075", "cast_id": 18, "profile_path": "/3pK59vDWOPNhvRFbCRkjVFXF4cC.jpg", "order": 12}, {"name": "Robert Morse", "character": "Interrogator", "id": 40173, "credit_id": "52fe47229251416c9106b079", "cast_id": 19, "profile_path": "/va3BC55HSkbKiuphzgYCF9Jaa1x.jpg", "order": 13}, {"name": "Morgan Freeman", "character": "Joe Matheson", "id": 192, "credit_id": "52fe47229251416c9106b095", "cast_id": 26, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 14}, {"name": "Laura DeCarteret", "character": "Fundraiser Greeter", "id": 63858, "credit_id": "52fe47229251416c9106b09d", "cast_id": 28, "profile_path": "/3Uj7eCO8zxLMFyUd6aNwevhXFA7.jpg", "order": 15}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe47229251416c9106b055", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 6.4, "runtime": 111}, "146015": {"poster_path": "/u401upGPw0CZRDbwCWBla7rH6Do.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "An awkward office drone (Jesse Eisenberg) becomes increasingly unhinged after a charismatic and confident look-alike takes a job at his workplace and seduces the woman (Mia Wasikowska) he desires.", "video": false, "id": 146015, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Double", "tagline": "", "vote_count": 94, "homepage": "http://www.magpictures.com/thedouble/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1825157", "adult": false, "backdrop_path": "/gSNqUnQSgYWxsFQ59xH077dW1Zx.jpg", "production_companies": [{"name": "Alcove Entertainment", "id": 11785}, {"name": "Attercop Productions", "id": 11786}, {"name": "British Film Institute (BFI)", "id": 7281}], "release_date": "2014-04-04", "popularity": 0.790660358873094, "original_title": "The Double", "budget": 0, "cast": [{"name": "Jesse Eisenberg", "character": "Simon / James", "id": 44735, "credit_id": "52fe4b6f9251416c75102b3f", "cast_id": 5, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Mia Wasikowska", "character": "Hannah", "id": 76070, "credit_id": "52fe4b6f9251416c75102b3b", "cast_id": 4, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 1}, {"name": "Wallace Shawn", "character": "Mr. Papadopoulos", "id": 12900, "credit_id": "52fe4b6f9251416c75102b43", "cast_id": 6, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 2}, {"name": "Noah Taylor", "character": "Harris", "id": 1284, "credit_id": "52fe4b6f9251416c75102b47", "cast_id": 7, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Rade \u0160erbed\u017eija", "character": "Frightening Old Man", "id": 1118, "credit_id": "52fe4b6f9251416c75102b4b", "cast_id": 8, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 4}, {"name": "Yasmin Paige", "character": "Melanie Papadopoulos", "id": 81571, "credit_id": "52fe4b6f9251416c75102b4f", "cast_id": 9, "profile_path": "/t18rPozXhXpUDzKX6gWF0YBMrca.jpg", "order": 5}, {"name": "Cathy Moriarty", "character": "Kiki", "id": 14702, "credit_id": "52fe4b6f9251416c75102b53", "cast_id": 10, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 6}, {"name": "James Fox", "character": "The Colonel", "id": 1292, "credit_id": "52fe4b6f9251416c75102b6d", "cast_id": 15, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 7}, {"name": "Phyllis Somerville", "character": "Simon's Mother", "id": 17184, "credit_id": "52fe4b6f9251416c75102b75", "cast_id": 17, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 8}, {"name": "Chris O'Dowd", "character": "Nurse", "id": 40477, "credit_id": "54b58835c3a36877db0009c5", "cast_id": 20, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 9}, {"name": "Craig Roberts", "character": "Young Detective", "id": 104561, "credit_id": "54bb56979251411d77007a9a", "cast_id": 21, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 10}, {"name": "Kobna Holdbrook-Smith", "character": "Guard / Doctor", "id": 202775, "credit_id": "54bb56a89251416e9b000e04", "cast_id": 22, "profile_path": "/k7ybvCDaMpb4hx7SeFKLmMrMRen.jpg", "order": 11}, {"name": "Tony Rohr", "character": "Rudolph", "id": 44930, "credit_id": "54bb56c39251416e9b000e07", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Sally Hawkins", "character": "Receptionist at Ball", "id": 39658, "credit_id": "54bb56d0c3a3687c40000ee7", "cast_id": 24, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 13}, {"name": "Kierston Wareing", "character": "James' Funeral Date", "id": 8309, "credit_id": "54bb56dec3a3686c610076a6", "cast_id": 25, "profile_path": "/5o3sAfFNmG1r6ot40sHZB5toTBp.jpg", "order": 14}, {"name": "Paddy Considine", "character": "'The Replicator' - Jack", "id": 14887, "credit_id": "54bb56ecc3a368145e005437", "cast_id": 26, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 15}, {"name": "Nathalie Cox", "character": "'The Replicator' - Jack's Wife", "id": 17337, "credit_id": "54bb5707c3a3686c610076ac", "cast_id": 28, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 16}, {"name": "Dirk Van Der Gert", "character": "'The Replicator' - Head Judge", "id": 1447653, "credit_id": "551928aa9251412b6d00580b", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Liam Bewley", "character": "'The Replicator' - Wise Judge", "id": 1447654, "credit_id": "551929069251412b6d005829", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Gemma Chan", "character": "'The Replicator' - Glamourous Judge", "id": 97576, "credit_id": "52fe4b6f9251416c75102b69", "cast_id": 14, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 19}, {"name": "Gabrielle Downey", "character": "Strange Woman", "id": 1457303, "credit_id": "553618b3c3a3681785001ed1", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Jon Korkes", "character": "Detective", "id": 14836, "credit_id": "5536199ec3a36842ae0006b0", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Susan Blommaert", "character": "Liz", "id": 1913, "credit_id": "553636dd9251414201000265", "cast_id": 33, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 22}, {"name": "Bruce Byron", "character": "Skinhead", "id": 25675, "credit_id": "553637639251414201000278", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "J. Mascis", "character": "Janitor", "id": 1059867, "credit_id": "553638d2c3a36817850023c5", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Karima Riachy", "character": "Secretary", "id": 1457361, "credit_id": "553639ba92514142010002d9", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Tim Key", "character": "Care Worker", "id": 1016119, "credit_id": "55363af09251416518002689", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "Andrew Gruen", "character": "Man on Train", "id": 1457369, "credit_id": "55363b21c3a368222600aebc", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Kim Noble", "character": "Box Man / 'The Replicator' - Guard 1", "id": 1250279, "credit_id": "55363c6792514152cf00278f", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Morrison Thomas", "character": "Coughing Man", "id": 1457380, "credit_id": "55363d639251417049001663", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "Lloyd Woolf", "character": "Investigator", "id": 1457381, "credit_id": "55363e5ec3a36817850024b7", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Lydia Ayoade", "character": "Well-Dressed Woman at Ball / Test Invigilator", "id": 1457382, "credit_id": "55363ef8925141651800273d", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "Stuart Silver", "character": "Waiter / 'The Replicator' - Guard 2", "id": 1457383, "credit_id": "55363fc2c3a368222600af79", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Chris Morris", "character": "Workers' Services Executive", "id": 117794, "credit_id": "55364119925141420100040b", "cast_id": 44, "profile_path": "/wsOfuOHaNGENT1d9rGEinqbYXsW.jpg", "order": 33}, {"name": "Donal Cox", "character": "Priest", "id": 1457385, "credit_id": "553642b4c3a368523e0069fa", "cast_id": 45, "profile_path": null, "order": 34}], "directors": [{"name": "Richard Ayoade", "department": "Directing", "job": "Director", "credit_id": "52fe4b6f9251416c75102b59", "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "id": 98103}], "vote_average": 6.4, "runtime": 93}, "22971": {"poster_path": "/2Fen9XsCscjupGJUhi2zaCvOaGd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114977104, "overview": "Sergeant John Tyree is home on a 2 week leave from Germany. He meets Savannah after he dives into the ocean to retrieve Savannah's purse that had fallen off the pier. John falls in love with Savannah who is a student on spring break helping build a house for Habitat for Humanity. A romance occurs and Savannah falls deeply in love with John. She promises to write John overseas until he returns.", "video": false, "id": 22971, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Dear John", "tagline": "Love brought them together will fate tear them apart.", "vote_count": 257, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0989757", "adult": false, "backdrop_path": "/hQIPa1oKM6fSzyp1UBxBfVpSCj2.jpg", "production_companies": [{"name": "Temple Hill Productions", "id": 722}], "release_date": "2010-02-04", "popularity": 1.08113283914063, "original_title": "Dear John", "budget": 25000000, "cast": [{"name": "Amanda Seyfried", "character": "Savannah Lynn Curtis", "id": 71070, "credit_id": "52fe4458c3a368484e01dd11", "cast_id": 1, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Channing Tatum", "character": "John Tyree", "id": 38673, "credit_id": "52fe4458c3a368484e01dd15", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Henry Thomas", "character": "Tim Wheddon", "id": 9976, "credit_id": "52fe4458c3a368484e01dd19", "cast_id": 3, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 2}, {"name": "Richard Jenkins", "character": "Mr. Tyree", "id": 28633, "credit_id": "52fe4458c3a368484e01dd1d", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 3}, {"name": "Scott Porter", "character": "Randy", "id": 53368, "credit_id": "52fe4458c3a368484e01dd21", "cast_id": 5, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 4}, {"name": "Keith Robinson", "character": "Captain Stone", "id": 15564, "credit_id": "52fe4458c3a368484e01dd25", "cast_id": 6, "profile_path": "/qa0NhCHbhoDBFT1V6EK4JVS4CJW.jpg", "order": 5}, {"name": "Luke Benward", "character": "Alan at 14", "id": 84482, "credit_id": "52fe4458c3a368484e01dd29", "cast_id": 7, "profile_path": "/i17S4LHKcTXbLsg56IetMEsHbzJ.jpg", "order": 6}, {"name": "David Andrews", "character": "Mr. Curtis", "id": 7219, "credit_id": "52fe4458c3a368484e01dd2d", "cast_id": 8, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 7}, {"name": "D.J. Cotrona", "character": "Noodles", "id": 51976, "credit_id": "52fe4458c3a368484e01dd31", "cast_id": 9, "profile_path": "/5eQPcmvZRJuVKBrwER2nIpmn91X.jpg", "order": 8}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4458c3a368484e01dd37", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.6, "runtime": 115}, "39538": {"poster_path": "/kbC6I0AOSLTHFA2dieyat9h8QHP.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135, "overview": "Contagion follows the rapid progress of a lethal airborne virus that kills within days. As the fast\u2013moving epidemic grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself. At the same time, ordinary people struggle to survive in a society coming apart.", "video": false, "id": 39538, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Contagion", "tagline": "Nothing spreads like fear", "vote_count": 463, "homepage": "http://contagionmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt1598778", "adult": false, "backdrop_path": "/njVTBUU5VK60KsOjju86L4HJS5y.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Participant Media", "id": 6735}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Double Feature Films", "id": 215}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2011-09-09", "popularity": 0.915324219245972, "original_title": "Contagion", "budget": 60, "cast": [{"name": "Matt Damon", "character": "Thomas Emhoff", "id": 1892, "credit_id": "52fe47249251416c9106b4f7", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Beth Emhoff", "id": 12052, "credit_id": "52fe47249251416c9106b4fb", "cast_id": 9, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Kate Winslet", "character": "Dr. Erin Mears", "id": 204, "credit_id": "52fe47249251416c9106b4eb", "cast_id": 4, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 2}, {"name": "Jude Law", "character": "Alan Krumwiede", "id": 9642, "credit_id": "52fe47249251416c9106b4ff", "cast_id": 10, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 3}, {"name": "Marion Cotillard", "character": "Dr. Leonora Orantes", "id": 8293, "credit_id": "52fe47249251416c9106b4ef", "cast_id": 6, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 4}, {"name": "Laurence Fishburne", "character": "Dr. Ellis Cheever", "id": 2975, "credit_id": "52fe47249251416c9106b4f3", "cast_id": 7, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 5}, {"name": "Bryan Cranston", "character": "Haggerty", "id": 17419, "credit_id": "52fe47249251416c9106b51f", "cast_id": 17, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 6}, {"name": "Sanaa Lathan", "character": "Aubrey Cheever", "id": 5411, "credit_id": "52fe47249251416c9106b503", "cast_id": 11, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 7}, {"name": "Jennifer Ehle", "character": "Dr. Ally Hextall", "id": 49971, "credit_id": "52fe47249251416c9106b529", "cast_id": 19, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 8}, {"name": "Daria Strokous", "character": "Irina", "id": 1106973, "credit_id": "52fe47249251416c9106b52d", "cast_id": 20, "profile_path": "/tag1RcMsJhQdPYbItRfubUDG0vm.jpg", "order": 9}, {"name": "Anna Jacoby-Heron", "character": "Jory Emhoff", "id": 1107177, "credit_id": "52fe47249251416c9106b531", "cast_id": 21, "profile_path": "/oqnuadAg2Dr6YEEuStZzLc7gMjw.jpg", "order": 10}, {"name": "Enrico Colantoni", "character": "Dennis French", "id": 15029, "credit_id": "52fe47249251416c9106b57d", "cast_id": 34, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 11}, {"name": "Demetri Martin", "character": "Dr. David Eisenberg", "id": 84075, "credit_id": "530fb95992514110350000c1", "cast_id": 35, "profile_path": "/puyGH5mGvsky1RU3rcXqB93xq9S.jpg", "order": 12}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe47249251416c9106b4e7", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.1, "runtime": 106}, "178809": {"poster_path": "/4E1jXxHcUzAQYOTlFCIANMg29YA.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "Forced underground by the next ice age, a struggling outpost of survivors must fight to preserve humanity against a threat even more savage than nature.", "video": false, "id": 178809, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "The Colony", "tagline": "One day, it started to snow .. and it never stopped", "vote_count": 186, "homepage": "http://www.afterthefreeze.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1160996", "adult": false, "backdrop_path": "/kCF76wyci4fe4DYsOIRLq1KI92t.jpg", "production_companies": [{"name": "RLJ Entertainment", "id": 43808}, {"name": "Alcina Pictures", "id": 4909}, {"name": "120dB Films", "id": 5113}, {"name": "Item 7", "id": 7177}, {"name": "Sierra Pictures (II)", "id": 14495}, {"name": "Mad Samurai Productions", "id": 43807}], "release_date": "2013-09-20", "popularity": 0.617738542739652, "original_title": "The Colony", "budget": 16000000, "cast": [{"name": "Laurence Fishburne", "character": "Briggs", "id": 2975, "credit_id": "52fe4d9cc3a36847f826a581", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 0}, {"name": "Kevin Zegers", "character": "Sam", "id": 7431, "credit_id": "52fe4d9cc3a36847f826a585", "cast_id": 3, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 1}, {"name": "Bill Paxton", "character": "Mason", "id": 2053, "credit_id": "52fe4d9cc3a36847f826a589", "cast_id": 4, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 2}, {"name": "John Tench", "character": "Viktor", "id": 27143, "credit_id": "52fe4d9cc3a36847f826a58d", "cast_id": 6, "profile_path": "/ekWT5nRPRq1EqXbE6gED6nHvFVZ.jpg", "order": 3}, {"name": "Atticus Mitchell", "character": "Graydon", "id": 237756, "credit_id": "52fe4d9cc3a36847f826a591", "cast_id": 7, "profile_path": "/hbZ0MoE695UElVmZCAgFguIEWZ1.jpg", "order": 4}, {"name": "Dru Viergever", "character": "Feral Leader", "id": 1068995, "credit_id": "52fe4d9cc3a36847f826a595", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Romano Orzari", "character": "Reynolds", "id": 96591, "credit_id": "52fe4d9cc3a36847f826a599", "cast_id": 9, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 6}, {"name": "Earl Pastko", "character": "Scientist", "id": 26093, "credit_id": "52fe4d9cc3a36847f826a59d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Lisa Berry", "character": "Nara", "id": 207713, "credit_id": "52fe4d9cc3a36847f826a5a1", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Lucius Hoyos", "character": "Rowan", "id": 1178763, "credit_id": "52fe4d9cc3a36847f826a5a5", "cast_id": 12, "profile_path": "/qLGb1mhjSdriSyC5jhgGwdHlFY7.jpg", "order": 9}, {"name": "Michael Mando", "character": "Cooper", "id": 829372, "credit_id": "52fe4d9cc3a36847f826a5a9", "cast_id": 13, "profile_path": "/zIX25FFBJwqcvzwFeVoJuKTbpCR.jpg", "order": 10}, {"name": "Eric Murdoch", "character": "Terrified Man", "id": 1178764, "credit_id": "52fe4d9cc3a36847f826a5ad", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Kimberly-Sue Murray", "character": "Janelle", "id": 550522, "credit_id": "52fe4d9cc3a36847f826a5b1", "cast_id": 15, "profile_path": "/uJZlJTzpypPteg78qTu2GDACdKU.jpg", "order": 12}, {"name": "Julian Richings", "character": "Leland", "id": 2320, "credit_id": "52fe4d9cc3a36847f826a5b5", "cast_id": 16, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 13}, {"name": "Charlotte Sullivan", "character": "Kai", "id": 1212960, "credit_id": "52fe4d9cc3a36847f826a62b", "cast_id": 36, "profile_path": "/9DLhP3ziNxUen8HZJ26DAMNdGTL.jpg", "order": 14}], "directors": [{"name": "Jeff Renfroe", "department": "Directing", "job": "Director", "credit_id": "52fe4d9cc3a36847f826a57d", "profile_path": null, "id": 229002}], "vote_average": 5.2, "runtime": 95}, "23168": {"poster_path": "/zX4fKmDXKGt4hlzhAJirdlRKFgO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154026136, "overview": "Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. But when a bank job leads to the group kidnapping attractive branch manager Claire Keesey, he takes on the role of monitoring her, but their burgeoning relationship threatens to unveil the identities of Doug and his crew to FBI Agent Adam Frawley who is on their case.", "video": false, "id": 23168, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Town", "tagline": "Welcome to the bank robbery capital of America.", "vote_count": 477, "homepage": "http://thetownmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0840361", "adult": false, "backdrop_path": "/zpaTddJYsrQApEnWxe783DNhTqD.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "GK Films", "id": 3281}, {"name": "Thunder Road Pictures", "id": 3528}], "release_date": "2010-09-15", "popularity": 1.01095029874536, "original_title": "The Town", "budget": 37000000, "cast": [{"name": "Ben Affleck", "character": "Doug MacRay", "id": 880, "credit_id": "52fe4461c3a368484e01faa5", "cast_id": 4, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Rebecca Hall", "character": "Claire", "id": 15556, "credit_id": "52fe4461c3a368484e01faad", "cast_id": 6, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 1}, {"name": "Jeremy Renner", "character": "James Coughlin", "id": 17604, "credit_id": "52fe4461c3a368484e01fab1", "cast_id": 7, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 2}, {"name": "Jon Hamm", "character": "Adam Frawley", "id": 65717, "credit_id": "52fe4461c3a368484e01faa9", "cast_id": 5, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 3}, {"name": "Blake Lively", "character": "Krista", "id": 59175, "credit_id": "52fe4461c3a368484e01faa1", "cast_id": 3, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 4}, {"name": "Slaine (George Carroll)", "character": "Albert 'Gloansy' Magloan", "id": 133067, "credit_id": "52fe4461c3a368484e01fab5", "cast_id": 8, "profile_path": "/wq0FQBzfiFfEXfjaGm3FE43IuTJ.jpg", "order": 5}, {"name": "Owen Burke", "character": "Desmond Elden", "id": 133068, "credit_id": "52fe4461c3a368484e01fab9", "cast_id": 9, "profile_path": "/qZvzQhocdmrjU6wnQXdCV155G3i.jpg", "order": 6}, {"name": "Titus Welliver", "character": "Dino Ciampa", "id": 39389, "credit_id": "52fe4461c3a368484e01fabd", "cast_id": 10, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 7}, {"name": "Pete Postlethwaite", "character": "Fergus 'Fergie' Colm", "id": 4935, "credit_id": "52fe4461c3a368484e01fac1", "cast_id": 11, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 8}, {"name": "Chris Cooper", "character": "Stephen MacRay", "id": 2955, "credit_id": "52fe4461c3a368484e01fac5", "cast_id": 12, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 9}, {"name": "Dennis McLaughlin", "character": "Rusty", "id": 133069, "credit_id": "52fe4461c3a368484e01fac9", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Corena Chase", "character": "Agent Quinlan", "id": 133070, "credit_id": "52fe4461c3a368484e01facd", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Brian Scannell", "character": "Henry", "id": 64143, "credit_id": "52fe4461c3a368484e01fad1", "cast_id": 15, "profile_path": "/cuWZ8wo23r5P2iXRhVjrjb27VNF.jpg", "order": 12}, {"name": "Kerri Dunbar", "character": "Henry\u2019s Girl", "id": 133071, "credit_id": "52fe4461c3a368484e01fad5", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Tony V.", "character": "Vericom Crew Chief", "id": 133072, "credit_id": "52fe4461c3a368484e01fad9", "cast_id": 17, "profile_path": "/aIY4IyVrdMqYZNbVbynuUGxKzgK.jpg", "order": 14}, {"name": "Stephen Bishop", "character": "Derrick", "id": 55205, "credit_id": "52fe4461c3a368484e01fb19", "cast_id": 29, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 15}], "directors": [{"name": "Ben Affleck", "department": "Directing", "job": "Director", "credit_id": "52fe4461c3a368484e01fa97", "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "id": 880}], "vote_average": 6.8, "runtime": 125}, "23169": {"poster_path": "/4zmupVCoEjVkwXfHUsX4GZq4aCQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Still reeling from a heartbreaking family event and his parents' subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother's death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.", "video": false, "id": 23169, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Remember Me", "tagline": "Live in the moments.", "vote_count": 181, "homepage": "http://rememberme-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1403981", "adult": false, "backdrop_path": "/11RZtcc6e7wcZliIUjHNemQ1YF9.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2010-03-12", "popularity": 0.760227328223015, "original_title": "Remember Me", "budget": 20000000, "cast": [{"name": "Robert Pattinson", "character": "Tyler", "id": 11288, "credit_id": "52fe4461c3a368484e01fb51", "cast_id": 2, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Pierce Brosnan", "character": "Charles", "id": 517, "credit_id": "52fe4461c3a368484e01fb55", "cast_id": 3, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 1}, {"name": "Emilie de Ravin", "character": "Ally Craig", "id": 28660, "credit_id": "52fe4461c3a368484e01fb59", "cast_id": 4, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 2}, {"name": "Chris Cooper", "character": "Neil Craig", "id": 2955, "credit_id": "52fe4461c3a368484e01fb5d", "cast_id": 5, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 3}, {"name": "Lena Olin", "character": "Diane Hirsch", "id": 5313, "credit_id": "52fe4461c3a368484e01fb61", "cast_id": 6, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 4}, {"name": "Martha Plimpton", "character": "Helen Craig", "id": 17495, "credit_id": "52fe4461c3a368484e01fb65", "cast_id": 7, "profile_path": "/4AoCoaH6agenxberK7QenEQigUc.jpg", "order": 5}, {"name": "Meghan Markle", "character": "Megan", "id": 1216701, "credit_id": "52fe4461c3a368484e01fbb7", "cast_id": 24, "profile_path": "/vCYRriV2w19TBoRWn65Bo8vKy0l.jpg", "order": 6}, {"name": "Peyton List", "character": "Samantha", "id": 1254435, "credit_id": "52fe4461c3a368484e01fbbb", "cast_id": 25, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 7}, {"name": "Emily Wickersham", "character": "Miami Blonde", "id": 204679, "credit_id": "541723850e0a261c27005c0e", "cast_id": 26, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 8}], "directors": [{"name": "Allen Coulter", "department": "Directing", "job": "Director", "credit_id": "52fe4461c3a368484e01fb4d", "profile_path": "/7nJKeRFBDdH6kJRp9UAd5f2iEXA.jpg", "id": 16834}], "vote_average": 6.9, "runtime": 113}, "14979": {"poster_path": "/qYMmEa4al0Xo5xU26d1ipM2DiDj.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A master thief recruits a notorious thief to help him steal two famous Faberge eggs from an impenetrable vault in an effort to pull off one final job and repay his debt to the Russian mob.", "video": false, "id": 14979, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Thick as Thieves", "tagline": "Never trust a thief.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1112782", "adult": false, "backdrop_path": "/dkFI8Nyav6IVhX1w2f9Jpsuj9to.jpg", "production_companies": [{"name": "Equity Pictures Medienfonds GmbH & Co. KG IV", "id": 20363}, {"name": "Revelations Entertainment", "id": 906}, {"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "Millennium Films", "id": 10254}, {"name": "Emmett/Furla Films", "id": 10405}], "release_date": "2009-01-09", "popularity": 0.63396511455388, "original_title": "Thick as Thieves", "budget": 25000000, "cast": [{"name": "Morgan Freeman", "character": "Keith Ripley", "id": 192, "credit_id": "52fe462c9251416c7506fb3b", "cast_id": 22, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Antonio Banderas", "character": "Gabriel Martin", "id": 3131, "credit_id": "52fe462d9251416c7506fb3f", "cast_id": 23, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 1}, {"name": "Radha Mitchell", "character": "Alexandra Korolenko", "id": 8329, "credit_id": "52fe462d9251416c7506fb43", "cast_id": 24, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 2}, {"name": "Robert Forster", "character": "Lt. Weber", "id": 5694, "credit_id": "52fe462d9251416c7506fb47", "cast_id": 25, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 3}, {"name": "Rade \u0160erbed\u017eija", "character": "Nicky / Victor", "id": 1118, "credit_id": "52fe462d9251416c7506fb4b", "cast_id": 26, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 4}, {"name": "Michael Hayden", "character": "Sudimack", "id": 81829, "credit_id": "52fe462d9251416c7506fb4f", "cast_id": 27, "profile_path": null, "order": 5}, {"name": "Marcel Iures", "character": "Zykov", "id": 15320, "credit_id": "52fe462d9251416c7506fb53", "cast_id": 28, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 6}, {"name": "Gary Werntz", "character": "Donley", "id": 81830, "credit_id": "52fe462d9251416c7506fb57", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "Ivan Petrushinov", "character": "\u00c9migr\u00e9 #1", "id": 94694, "credit_id": "52fe462d9251416c7506fb6d", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Gerrit Vooren", "character": "Bakker", "id": 163910, "credit_id": "52fe462d9251416c7506fb71", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Joshua Rubin", "character": "Joost", "id": 85510, "credit_id": "52fe462d9251416c7506fb75", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Victor Boichev", "character": "\u00c9migr\u00e9 #2", "id": 1129506, "credit_id": "52fe462d9251416c7506fb79", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Tom Hardy", "character": "Michaels", "id": 2524, "credit_id": "52fe462d9251416c7506fb7d", "cast_id": 37, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 12}, {"name": "Corey Johnson", "character": "Voutiritsas", "id": 17199, "credit_id": "52fe462d9251416c7506fb81", "cast_id": 38, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 13}, {"name": "Marianne Stanicheva", "character": "Madame Irina", "id": 61860, "credit_id": "52fe462d9251416c7506fb85", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Vladimir Kolev", "character": "Andrei", "id": 22016, "credit_id": "52fe462d9251416c7506fb89", "cast_id": 40, "profile_path": "/tVEzKxT0gyRyO565SXvkHP6YMMA.jpg", "order": 15}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c7506fad1", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 5.7, "runtime": 104}, "23172": {"poster_path": "/iObJG0OORpRR5xzycjBCNNzSK17.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45236543, "overview": "Former CIA spy Bob Ho takes on his toughest assignment to date: looking after his girlfriend's three kids, who haven't exactly warmed to their mom's beau. And when one of the youngsters accidentally downloads a top-secret formula, Bob's longtime nemesis, a Russian terrorist, pays a visit to the family.", "video": false, "id": 23172, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Spy Next Door", "tagline": "Spying is easy, Babysitting is hard", "vote_count": 115, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1273678", "adult": false, "backdrop_path": "/uJpcuIK7EP0RU8WaBzxIiTxYxFB.jpg", "production_companies": [{"name": "Spy Next Door", "id": 46062}, {"name": "Relativity Media", "id": 7295}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2010-01-15", "popularity": 0.444963283855205, "original_title": "The Spy Next Door", "budget": 28000000, "cast": [{"name": "Amber Valletta", "character": "Gillian", "id": 38425, "credit_id": "52fe4461c3a368484e01fbe7", "cast_id": 4, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 0}, {"name": "Lucas Till", "character": "Larry", "id": 429, "credit_id": "52fe4461c3a368484e01fbeb", "cast_id": 5, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 1}, {"name": "Jackie Chan", "character": "Bob Ho", "id": 18897, "credit_id": "52fe4461c3a368484e01fbef", "cast_id": 6, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 2}, {"name": "Billy Ray Cyrus", "character": "Colton James", "id": 78887, "credit_id": "52fe4461c3a368484e01fbf3", "cast_id": 7, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 3}, {"name": "George Lopez", "character": "Glaze", "id": 41798, "credit_id": "52fe4461c3a368484e01fbf7", "cast_id": 8, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 4}, {"name": "Madeline Carroll", "character": "Farren", "id": 62564, "credit_id": "52fe4461c3a368484e01fbfb", "cast_id": 9, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 5}, {"name": "Will Shadley", "character": "Ian", "id": 1281596, "credit_id": "52fe4461c3a368484e01fbff", "cast_id": 10, "profile_path": "/lXftbxNXncsiYBBXXTVrVYmiASF.jpg", "order": 6}, {"name": "Alina Foley", "character": "Nora", "id": 1251285, "credit_id": "54d67a32c3a3683b8f002a97", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Magn\u00fas Scheving", "character": "Anton Poldark", "id": 224446, "credit_id": "54d67a4cc3a3683b8c002b32", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Billy Ray Cyrus", "character": "Colton James", "id": 78887, "credit_id": "54d67a649251416ba100279e", "cast_id": 13, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 9}, {"name": "Katherine Boecher", "character": "Creel", "id": 211488, "credit_id": "54d67a84c3a3683ba0002df1", "cast_id": 14, "profile_path": "/dRhesZZDvEoXLjbeeALlDdOBQW5.jpg", "order": 10}, {"name": "Mia Stallard", "character": "Cute Girl", "id": 129713, "credit_id": "54d67a949251416ba10027a1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Maverick McWilliams", "character": "Chad", "id": 1424323, "credit_id": "54d67aa2c3a3683b890027f9", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Quinn Mason", "character": "Carl", "id": 1424324, "credit_id": "54d67ab19251415f9c0027e8", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Margaret Murphy", "character": "Mom", "id": 1396029, "credit_id": "54d67abfc3a3683b950028e9", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Esodie Geiger", "character": "Principal", "id": 1424325, "credit_id": "54d67ad3c3a3683b99002891", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Arron Shiver", "character": "Scientist", "id": 105786, "credit_id": "551c1be89251416a2300001d", "cast_id": 20, "profile_path": "/whHOz0t0JWvZd1LgeRm4oQe9KjO.jpg", "order": 16}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe4461c3a368484e01fbd7", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.6, "runtime": 94}, "129670": {"poster_path": "/w4kyrNpIhN3Ul4UDFGudpIRVyvt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An aging, booze-addled father makes the trip from Montana to Nebraska with his estranged son in order to claim a million dollar Publisher's Clearing House sweepstakes prize.", "video": false, "id": 129670, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Nebraska", "tagline": "", "vote_count": 211, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1821549", "adult": false, "backdrop_path": "/pjVhL1UZ33jBWPBd8HxOpfhAiA7.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Bona Fide Productions", "id": 2570}], "release_date": "2013-11-15", "popularity": 0.65098191045392, "original_title": "Nebraska", "budget": 13000000, "cast": [{"name": "Bruce Dern", "character": "Woody Grant", "id": 6905, "credit_id": "52fe4b43c3a368484e1800bf", "cast_id": 3, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 0}, {"name": "Will Forte", "character": "David Grant", "id": 62831, "credit_id": "52fe4b43c3a368484e1800bb", "cast_id": 2, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 1}, {"name": "Bob Odenkirk", "character": "Ross Grant", "id": 59410, "credit_id": "52fe4b43c3a368484e1800ed", "cast_id": 11, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 2}, {"name": "June Squibb", "character": "Kate Grant", "id": 35515, "credit_id": "52fe4b43c3a368484e1800f1", "cast_id": 12, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 3}, {"name": "Stacy Keach", "character": "Ed Pegram", "id": 825, "credit_id": "52fe4b43c3a368484e1800f5", "cast_id": 13, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 4}, {"name": "Missy Doty", "character": "Noel", "id": 162342, "credit_id": "52fe4b43c3a368484e1800f9", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Rance Howard", "character": "Uncle Ray", "id": 22250, "credit_id": "53832e280e0a2624cb00c1d3", "cast_id": 28, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 6}, {"name": "Kevin Kunkel", "character": "Cousin Randy", "id": 1202600, "credit_id": "52fe4b43c3a368484e180101", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Angela McEwan", "character": "Peg Nagy", "id": 1033573, "credit_id": "52fe4b43c3a368484e180105", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Devin Ratray", "character": "Cole", "id": 11516, "credit_id": "52fe4b43c3a368484e180109", "cast_id": 18, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 9}, {"name": "Mary Louise Wilson", "character": "Aunt Martha", "id": 115767, "credit_id": "52fe4b43c3a368484e180115", "cast_id": 21, "profile_path": "/tsvPhvPSlKrhcincuq8FMH2PAUq.jpg", "order": 10}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe4b43c3a368484e1800b7", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 7.4, "runtime": 115}, "187017": {"poster_path": "/gNlV5FhDZ1PjxSv2aqTPS30GEon.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 188441614, "overview": "After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.", "video": false, "id": 187017, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "22 Jump Street", "tagline": "They're not 21 anymore", "vote_count": 1013, "homepage": "http://www.22jumpstreetmovie.com", "belongs_to_collection": {"backdrop_path": "/iiAbTNYXpMadPDH4MkjUoJzcGn4.jpg", "poster_path": "/vufY0iuDNXGEdYOgZNcJFAEZeak.jpg", "id": 212562, "name": "Jump Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2294449", "adult": false, "backdrop_path": "/9NmTVqQ9f2ltecPZgXIj4Bk2c6s.jpg", "production_companies": [{"name": "LStar Capital", "id": 34034}, {"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Original Film", "id": 333}, {"name": "Cannell Studios", "id": 9194}, {"name": "33andOut Productions", "id": 34035}, {"name": "JHF Productions", "id": 34036}], "release_date": "2014-06-13", "popularity": 4.18088360949376, "original_title": "22 Jump Street", "budget": 50000000, "cast": [{"name": "Jonah Hill", "character": "Schmidt", "id": 21007, "credit_id": "52fe4d0e9251416c7512e751", "cast_id": 6, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Jenko", "id": 38673, "credit_id": "52fe4d0e9251416c7512e755", "cast_id": 7, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Dave Franco", "character": "Eric Molson", "id": 54697, "credit_id": "531f60cf92514177ae009196", "cast_id": 9, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 2}, {"name": "Ice Cube", "character": "Captain Dickson", "id": 9778, "credit_id": "52fe4d0e9251416c7512e759", "cast_id": 8, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 3}, {"name": "Nick Offerman", "character": "Deputy Chief Hardy", "id": 17039, "credit_id": "533079429251413a85005ce8", "cast_id": 10, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Big Meat", "id": 53, "credit_id": "5330794b9251413a81005e09", "cast_id": 11, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Rob Riggle", "character": "Mr. Walters", "id": 71403, "credit_id": "533079599251413a75005cd8", "cast_id": 12, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 6}, {"name": "Wyatt Russell", "character": "Benji", "id": 986808, "credit_id": "5330796f9251413a78005bfa", "cast_id": 13, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 7}, {"name": "Richard Grieco", "character": "Dennis Booker", "id": 87295, "credit_id": "533079809251413a7e005b31", "cast_id": 14, "profile_path": "/lku5ybzKvQvon1GXhu0eXSx8Czc.jpg", "order": 8}, {"name": "Amber Stevens", "character": "Maya", "id": 1187106, "credit_id": "533079899251413a78005bfd", "cast_id": 15, "profile_path": "/cekEtPDD53639Y0231Al8ov0uGr.jpg", "order": 9}, {"name": "Jillian Bell", "character": "Brandi", "id": 1226302, "credit_id": "533079969251413a75005cdb", "cast_id": 16, "profile_path": "/kcMhnv8e1RVInN14D0UMGEaUT5a.jpg", "order": 10}, {"name": "Jimmy Tatro", "character": "Rooster", "id": 1304335, "credit_id": "533079a39251413a72005d28", "cast_id": 17, "profile_path": "/d4zjmOOGcGKiZ4jVTO9uVwh2cvD.jpg", "order": 11}, {"name": "Caroline Aaron", "character": "Annie Schmidt", "id": 1910, "credit_id": "53a2842f0e0a26227f000d2b", "cast_id": 18, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 12}, {"name": "Joe Chrest", "character": "David Schmidt", "id": 141762, "credit_id": "53a2843c0e0a26226e000cdb", "cast_id": 19, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 13}, {"name": "Marc Evan Jackson", "character": "Dr. Murphy", "id": 141956, "credit_id": "53a284840e0a262271000d52", "cast_id": 20, "profile_path": "/739YCwcRkcTnbyCHD0Qo526bTrG.jpg", "order": 14}, {"name": "Eddie J. Fernandez", "character": "Scarface", "id": 18300, "credit_id": "53a284910e0a262274000d51", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Dax Flame", "character": "Zack", "id": 996700, "credit_id": "53a2849e0e0a262271000d54", "cast_id": 22, "profile_path": "/rEuR09MllLRYpg7gZCgtipOwuAj.jpg", "order": 16}, {"name": "Johnny Pemberton", "character": "Delroy", "id": 1060081, "credit_id": "53a284c80e0a262271000d58", "cast_id": 23, "profile_path": "/lV9UognW1VG8P8nESSrArveBRou.jpg", "order": 17}, {"name": "Anna Faris", "character": "Anna (30 Jump Street: Flight Academy)", "id": 1772, "credit_id": "53a285acc3a368320a000cc3", "cast_id": 24, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 18}, {"name": "Bill Hader", "character": "Culinary School Villain", "id": 19278, "credit_id": "53a285bcc3a36831f6000cd8", "cast_id": 25, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 19}, {"name": "Patton Oswalt", "character": "MC State Professor", "id": 10872, "credit_id": "53a285cbc3a3683202000c8c", "cast_id": 26, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 20}, {"name": "Seth Rogen", "character": "Morton Schmidt", "id": 19274, "credit_id": "53a285d7c3a3683205000cd9", "cast_id": 27, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 21}, {"name": "Queen Latifah", "character": "Mrs. Dickinson", "id": 15758, "credit_id": "53a2861ac3a36831f6000cde", "cast_id": 28, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 22}, {"name": "Dustin Nguyen", "character": "Vietnamese Jesus", "id": 61632, "credit_id": "53c529ec0e0a261e080019a9", "cast_id": 29, "profile_path": "/meiy61tBgaVQlivu42f7A0xsVG1.jpg", "order": 23}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe4d0e9251416c7512e73b", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4d0e9251416c7512e741", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 7.3, "runtime": 112}, "6795": {"poster_path": "/amqgIuISRBt8tsZM6cTT6gO9WLR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64321501, "overview": "After their father (Tim Robbins) is called into work, two young boys, Walter (Josh Hutcherson) and Danny (Jonah Bobo), are left in the care of their teenage sister, Lisa (Kristen Stewart), and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut (Dax Shepard), the boys attempt to return home.", "video": false, "id": 6795, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Zathura: A Space Adventure", "tagline": "Adventure Is Waiting", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0406375", "adult": false, "backdrop_path": "/cfoMONErxEBSnWtRZUprBYZLkGk.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Radar Pictures", "id": 14718}, {"name": "Teitler Film", "id": 2550}, {"name": "Michael De Luca Productions", "id": 11370}], "release_date": "2005-11-06", "popularity": 1.37921017733419, "original_title": "Zathura: A Space Adventure", "budget": 65000000, "cast": [{"name": "Jonah Bobo", "character": "Danny", "id": 51297, "credit_id": "52fe4466c3a36847f80939e1", "cast_id": 5, "profile_path": "/ujDjz3FtyCA3h2vF0rouoqatGNR.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Walter", "id": 27972, "credit_id": "52fe4466c3a36847f80939e5", "cast_id": 6, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Dax Shepard", "character": "Astronaut", "id": 51298, "credit_id": "52fe4466c3a36847f80939e9", "cast_id": 7, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 2}, {"name": "Tim Robbins", "character": "Dad", "id": 504, "credit_id": "52fe4466c3a36847f80939ed", "cast_id": 9, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 4}, {"name": "Frank Oz", "character": "Robot ( voice )", "id": 7908, "credit_id": "52fe4466c3a36847f80939f1", "cast_id": 10, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 5}, {"name": "Derek Mears", "character": "Lead Zorgon", "id": 51300, "credit_id": "52fe4466c3a36847f80939f5", "cast_id": 12, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 6}, {"name": "Douglas Tait", "character": "Zorgon", "id": 51301, "credit_id": "52fe4466c3a36847f80939f9", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Joe Bucaro III", "character": "Zorgon", "id": 51302, "credit_id": "52fe4466c3a36847f80939fd", "cast_id": 14, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 8}, {"name": "Jeff Wolfe", "character": "Zorgon", "id": 51303, "credit_id": "52fe4466c3a36847f8093a01", "cast_id": 15, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 9}, {"name": "Kristen Stewart", "character": "Lisa", "id": 37917, "credit_id": "52fe4466c3a36847f8093a2f", "cast_id": 23, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 10}, {"name": "John Alexander", "character": "Robot", "id": 443770, "credit_id": "52fe4466c3a36847f8093a33", "cast_id": 24, "profile_path": "/5tcxoXCC4hh12OowR1kITzkrCmC.jpg", "order": 11}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe4466c3a36847f80939cb", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 5.7, "runtime": 101}, "192538": {"poster_path": "/4UH8anWng3X9Vl5J8QNz3ZWfqm7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Action epic sees a passionate young man transform into a brutal warrior as he travels the unforgiving landscape in search of his long lost brother Hakan The Ferrocious, whose people are relying on him to restore order to their kingdom.", "video": false, "id": 192538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}], "title": "Hammer of the Gods", "tagline": "Blood will Reign", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2193418", "adult": false, "backdrop_path": "/8gWjHiLeIRWIHNLScAs8LKbEJ4F.jpg", "production_companies": [{"name": "Vertigo Films", "id": 10393}], "release_date": "2013-07-05", "popularity": 0.728585196482582, "original_title": "Hammer of the Gods", "budget": 0, "cast": [{"name": "Charlie Bewley", "character": "Steinar", "id": 84221, "credit_id": "52fe4cab9251416c910fc3a5", "cast_id": 3, "profile_path": "/3uiZaU1NwEPNmiAZT2vJM7EeXvb.jpg", "order": 0}, {"name": "Clive Standen", "character": "Hagen", "id": 85977, "credit_id": "52fe4cab9251416c910fc3a9", "cast_id": 4, "profile_path": "/euJCWcex56bTA9TZ9qrOtVVd1gV.jpg", "order": 1}, {"name": "James Cosmo", "character": "King Bagsecg", "id": 2467, "credit_id": "52fe4cab9251416c910fc3ad", "cast_id": 5, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 2}, {"name": "Elliot Cowan", "character": "Hakan", "id": 51120, "credit_id": "52fe4cab9251416c910fc3b1", "cast_id": 6, "profile_path": "/2qfMXSC5zjPEQ8iYluK7t7IpG1s.jpg", "order": 3}, {"name": "Ivan Kaye", "character": "Ivar", "id": 39683, "credit_id": "52fe4cab9251416c910fc3b5", "cast_id": 8, "profile_path": "/kYVCt7fF3U6VwCipPqlZvHnP2sX.jpg", "order": 4}, {"name": "Michael Jibson", "character": "Grim", "id": 56098, "credit_id": "52fe4cab9251416c910fc3b9", "cast_id": 9, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 5}, {"name": "Guy Flanagan", "character": "Jokul", "id": 1174091, "credit_id": "52fe4cab9251416c910fc3bd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Theo Barklem-Biggs", "character": "Vali", "id": 1013048, "credit_id": "52fe4cab9251416c910fc3c1", "cast_id": 11, "profile_path": "/9KHUtdVl8GhEUDUQeYOUKGKluBY.jpg", "order": 7}, {"name": "Glynis Barber", "character": "Astrid", "id": 1222446, "credit_id": "52fe4cab9251416c910fc3ef", "cast_id": 19, "profile_path": "/wJFTzWcTcFw3xjWwKAbH0yaRUeB.jpg", "order": 8}, {"name": "Alexandra Dowling", "character": "Agnes", "id": 1403115, "credit_id": "54bdabc3c3a3686c6b00dd89", "cast_id": 20, "profile_path": "/vxPHlongjSyNC2EQZbqbPOWj3Sf.jpg", "order": 9}], "directors": [{"name": "Farren Blackburn", "department": "Directing", "job": "Director", "credit_id": "52fe4cab9251416c910fc39b", "profile_path": null, "id": 1174090}], "vote_average": 4.7, "runtime": 99}, "10693": {"poster_path": "/n69umC19fsIKXlQBm0eD6waSwpI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29445131, "overview": "Leaving the safety of their nursery behind, Wendy, Michael and John follow Peter Pan to a magical world where childhood lasts forever. But while in Neverland, the kids must face Captain Hook and foil his attempts to get rid of Peter for good.", "video": false, "id": 10693, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Peter Pan", "tagline": "It will live in your heart forever!", "vote_count": 324, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AnhKboZjfeGuHI6qg7pp9RCesTF.jpg", "poster_path": "/t0mINaIut2aDKdGseQtC7UcbRNW.jpg", "id": 55422, "name": "Peter Pan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0046183", "adult": false, "backdrop_path": "/nXII61245PlG2vOH8Yl15WIhJFP.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1953-02-05", "popularity": 1.49395441186682, "original_title": "Peter Pan", "budget": 4000000, "cast": [{"name": "Bobby Driscoll", "character": "Peter Pan (voice)", "id": 50997, "credit_id": "52fe43a49251416c7501854f", "cast_id": 1, "profile_path": "/ib5Age9peuCwy6L5eZBN7W3egt3.jpg", "order": 0}, {"name": "Kathryn Beaumont", "character": "Wendy Darling (voice)", "id": 67228, "credit_id": "52fe43a49251416c75018553", "cast_id": 2, "profile_path": "/zpN8J3nmzDGoBNC7UeglDIDXtae.jpg", "order": 1}, {"name": "Hans Conried", "character": "Captain Hook / Mr. Darling (voice)", "id": 16421, "credit_id": "52fe43a49251416c75018557", "cast_id": 3, "profile_path": "/yR8MucKyASrgwEXLOm3vQOEVHqP.jpg", "order": 2}, {"name": "Bill Thompson", "character": "Mr. Smee (voice)", "id": 67230, "credit_id": "52fe43a49251416c7501855b", "cast_id": 4, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 3}, {"name": "Heather Angel", "character": "Mrs. Darling (voice)", "id": 93897, "credit_id": "52fe43a49251416c7501857d", "cast_id": 10, "profile_path": "/eyi5es3S6iYNFlRdu1VbpruYgIw.jpg", "order": 4}, {"name": "Paul Collins", "character": "John Darling (voice)", "id": 143574, "credit_id": "52fe43a49251416c75018581", "cast_id": 11, "profile_path": "/lPyoH2djWZ01Sred0WPmF8BlYKJ.jpg", "order": 5}, {"name": "Tommy Luske", "character": "Michael Darling (voice)", "id": 1079611, "credit_id": "52fe43a49251416c75018585", "cast_id": 12, "profile_path": "/kB5NNFayWelNUO327kgOPoGUiVb.jpg", "order": 6}, {"name": "Candy Candido", "character": "Indian Chief (voice)", "id": 61676, "credit_id": "52fe43a49251416c75018589", "cast_id": 13, "profile_path": "/5tjykiBmPIrnpPfHALfOqgEY7Nh.jpg", "order": 7}, {"name": "Tom Conway", "character": "Narrator (voice)", "id": 48962, "credit_id": "52fe43a49251416c7501858d", "cast_id": 14, "profile_path": "/p2J2JRaKOrWuvIZ5UruXTxYLnXL.jpg", "order": 8}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe43a49251416c75018561", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe43a49251416c75018567", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}], "vote_average": 6.4, "runtime": 77}, "23202": {"poster_path": "/8q4JxH8JWjv9O150hP8NwuzSg2Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Four interwoven stories that occur on Halloween: An everyday high school principal has a secret life as a serial killer; a college virgin might have just met the one guy for her; a group of teenagers pull a mean prank; a woman who loathes the night has to contend with her holiday-obsessed husband.", "video": false, "id": 23202, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Trick 'r Treat", "tagline": "Poison, Drowning, Claw, Or Knife. So Many Ways To Take A Life.", "vote_count": 72, "homepage": "http://trickrtreat-movie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0862856", "adult": false, "backdrop_path": "/oFxeGxRjlwzf0qct3g1HGBujGqH.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Little Sam Films", "id": 23784}], "release_date": "2007-10-05", "popularity": 0.766068017186009, "original_title": "Trick 'r Treat", "budget": 12000000, "cast": [{"name": "Anna Paquin", "character": "Laurie", "id": 10690, "credit_id": "52fe4462c3a368484e01ffa1", "cast_id": 6, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 0}, {"name": "Brian Cox", "character": "Mr. Kreeg", "id": 1248, "credit_id": "52fe4462c3a368484e01ff91", "cast_id": 2, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 1}, {"name": "Leslie Bibb", "character": "Emma", "id": 57451, "credit_id": "52fe4462c3a368484e01ff99", "cast_id": 4, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 2}, {"name": "Rochelle Aytes", "character": "Maria", "id": 80760, "credit_id": "52fe4462c3a368484e01ff9d", "cast_id": 5, "profile_path": "/r5JMfr0A7V4VEKIXx5EPy7Y51Ed.jpg", "order": 3}, {"name": "Quinn Lord", "character": "Sam", "id": 89885, "credit_id": "52fe4462c3a368484e01ff8d", "cast_id": 1, "profile_path": "/lsvehrliOkHJYOMaDLXuPVDS4mH.jpg", "order": 4}, {"name": "Dylan Baker", "character": "Steven", "id": 19152, "credit_id": "52fe4462c3a368484e01ff95", "cast_id": 3, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 5}, {"name": "Moneca Delain", "character": "Janet", "id": 74609, "credit_id": "52fe4462c3a368484e01ffa5", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Tahmoh Penikett", "character": "Henry", "id": 77223, "credit_id": "52fe4462c3a368484e01ffa9", "cast_id": 8, "profile_path": "/uHnfPSFXdJJTaE0rjwj3I2b91I8.jpg", "order": 7}, {"name": "Lauren Lee Smith", "character": "Danielle", "id": 52394, "credit_id": "52fe4462c3a368484e01ffcb", "cast_id": 15, "profile_path": "/bJ9ZEHet5jxAgHrDZJtVzzR4akF.jpg", "order": 8}, {"name": "Britt McKillip", "character": "Marcy", "id": 74365, "credit_id": "52fe4462c3a368484e01ffcf", "cast_id": 16, "profile_path": "/wGJL4rVEQUNtEF7WTvFBzcxjeQn.jpg", "order": 9}, {"name": "Brett Kelly", "character": "Charlie", "id": 63992, "credit_id": "52fe4462c3a368484e020015", "cast_id": 28, "profile_path": "/lrNCvvtopyLTtwQQUxjfu8JfIpj.jpg", "order": 10}, {"name": "Jean-Luc Bilodeau", "character": "Schrader", "id": 205204, "credit_id": "52fe4462c3a368484e020019", "cast_id": 29, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 11}, {"name": "Christine Willes", "character": "Mrs. Henderson", "id": 189719, "credit_id": "52fe4462c3a368484e02001d", "cast_id": 30, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 12}], "directors": [{"name": "Michael Dougherty", "department": "Directing", "job": "Director", "credit_id": "52fe4462c3a368484e01ffaf", "profile_path": null, "id": 11012}], "vote_average": 6.6, "runtime": 82}, "72358": {"poster_path": "/4T0nPirZLeLEaXOgLT7SGgopCui.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18450127, "overview": "Jack McCall is a fast-talking literary agent, who can close any deal, any time, any way. He has set his sights on New Age guru Dr. Sinja (Cliff Curtis) for his own selfish purposes. But Dr. Sinja is on to him, and Jack\u2019s life comes unglued after a magical Bodhi tree mysteriously appears in his backyard. With every word Jack speaks, a leaf falls from the tree and he realizes that when the last leaf falls, both he and the tree are toast. Words have never failed Jack McCall, but now he\u2019s got to stop talking and conjure up some outrageous ways to communicate or he\u2019s a goner.", "video": false, "id": 72358, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "A Thousand Words", "tagline": "He only has 1000 words left to discover what matters the most.", "vote_count": 112, "homepage": "http://www.thousandwordsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0763831", "adult": false, "backdrop_path": "/iskupQlVbYmWrxNH6ifatWf2X5n.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Saturn Films", "id": 831}, {"name": "Varsity Pictures", "id": 6024}], "release_date": "2012-03-08", "popularity": 0.802404430627337, "original_title": "A Thousand Words", "budget": 40000000, "cast": [{"name": "Eddie Murphy", "character": "Jack McCall", "id": 776, "credit_id": "52fe4866c3a368484e0f6b7f", "cast_id": 3, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Allison Janney", "character": "Samantha Davis", "id": 19, "credit_id": "52fe4866c3a368484e0f6b83", "cast_id": 4, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 1}, {"name": "Cliff Curtis", "character": "Dr. Sinja", "id": 7248, "credit_id": "52fe4866c3a368484e0f6b87", "cast_id": 5, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 2}, {"name": "Clark Duke", "character": "Aaron Wiseberger", "id": 54729, "credit_id": "52fe4866c3a368484e0f6b8b", "cast_id": 6, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 3}, {"name": "Kerry Washington", "character": "Caroline McCall", "id": 11703, "credit_id": "52fe4866c3a368484e0f6b8f", "cast_id": 7, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 4}, {"name": "Emanuel Ragsdale", "character": "Tyler McCall", "id": 1014850, "credit_id": "52fe4866c3a368484e0f6b93", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Jill Basey", "character": "Woman in Starbucks", "id": 177838, "credit_id": "52fe4866c3a368484e0f6b97", "cast_id": 9, "profile_path": "/wnPPZL3pBdxfzb1E0P3t77g4z79.jpg", "order": 6}, {"name": "Greg Collins", "character": "Construction Worker", "id": 58950, "credit_id": "52fe4866c3a368484e0f6b9b", "cast_id": 10, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 7}, {"name": "Robert LeQuang", "character": "Starbucks Customer", "id": 1014851, "credit_id": "52fe4866c3a368484e0f6b9f", "cast_id": 11, "profile_path": "/lQAI6hL2xq5Q8vLoygud6H4GKoK.jpg", "order": 8}, {"name": "Michael G. Wilkinson", "character": "Starbucks Customer", "id": 1014852, "credit_id": "52fe4866c3a368484e0f6ba3", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Lyndsey Nelson", "character": "Starbucks Customer", "id": 1014853, "credit_id": "52fe4866c3a368484e0f6ba7", "cast_id": 13, "profile_path": "/yrkkcPUQ6NgU4lerZSThGDgPsfC.jpg", "order": 10}, {"name": "Michael Cody Gilbert", "character": "Starbucks Customer", "id": 1014854, "credit_id": "52fe4866c3a368484e0f6bab", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Lou Saliba", "character": "Shrink", "id": 199625, "credit_id": "52fe4866c3a368484e0f6baf", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Edi Patterson", "character": "Young Female Agent", "id": 205213, "credit_id": "52fe4866c3a368484e0f6bb3", "cast_id": 16, "profile_path": null, "order": 13}], "directors": [{"name": "Brian Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe4866c3a368484e0f6bb9", "profile_path": "/l7UfY9nBeus8bHHXvf3mUmtagQJ.jpg", "id": 53177}], "vote_average": 5.7, "runtime": 91}, "96936": {"poster_path": "/9Z2KAOP1X3ACE22moHu9QdYUK7U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19145732, "overview": "Inspired by actual events, a group of fame-obsessed teenagers use the Internet to track celebrities' whereabouts in order to rob their homes.", "video": false, "id": 96936, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Bling Ring", "tagline": "Living the Dream, One Heist at a Time", "vote_count": 305, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2132285", "adult": false, "backdrop_path": "/nq4fAIN7oIn3NUP4mqZZACmhMAo.jpg", "production_companies": [{"name": "Path\u00e9 Distribution", "id": 3012}], "release_date": "2013-06-21", "popularity": 1.33990188419804, "original_title": "The Bling Ring", "budget": 15000000, "cast": [{"name": "Emma Watson", "character": "Nicki", "id": 10990, "credit_id": "52fe49c79251416c750d2ef7", "cast_id": 3, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 0}, {"name": "Israel Broussard", "character": "Marc", "id": 969140, "credit_id": "52fe49c79251416c750d2f2b", "cast_id": 16, "profile_path": "/ztE0nfwxNRYSh4EpDyhs9OrYFAT.jpg", "order": 1}, {"name": "Taissa Farmiga", "character": "Sam", "id": 527313, "credit_id": "52fe49c79251416c750d2eff", "cast_id": 5, "profile_path": "/oXQIaGXFWKUJESZqN0VgKWGFtV0.jpg", "order": 2}, {"name": "Katie Chang", "character": "Rebecca", "id": 1053170, "credit_id": "52fe49c79251416c750d2f2f", "cast_id": 17, "profile_path": "/kHrMqBM7tYkDdEQ1eTkGqa7QM4j.jpg", "order": 3}, {"name": "Claire Julien", "character": "Chloe", "id": 1172491, "credit_id": "52fe49c79251416c750d2f33", "cast_id": 18, "profile_path": "/dAuU0EZzVNJF72r15xlYAlkLkcM.jpg", "order": 4}, {"name": "Georgia Rock", "character": "Emily", "id": 1172494, "credit_id": "52fe49c79251416c750d2f37", "cast_id": 19, "profile_path": "/us2UgCk36UyZaZTOJTz6M1th2gP.jpg", "order": 5}, {"name": "Leslie Mann", "character": "Nicki's Mom", "id": 41087, "credit_id": "52fe49c79251416c750d2efb", "cast_id": 4, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 6}, {"name": "Carlos Miranda", "character": "Rob", "id": 39007, "credit_id": "52fe49c79251416c750d2f3b", "cast_id": 20, "profile_path": "/4AaU3V2VYU9SLZpt11Mv7BONbgG.jpg", "order": 7}, {"name": "Gavin Rossdale", "character": "Ricky", "id": 10961, "credit_id": "52fe49c79251416c750d2f23", "cast_id": 13, "profile_path": "/1tgaFlNL7dO9kzJADYtwQJqTeeF.jpg", "order": 8}, {"name": "Stacy Edwards", "character": "Debbie", "id": 43372, "credit_id": "52fe49c79251416c750d2f27", "cast_id": 14, "profile_path": "/3FBtBFrmjUx0W0bbKYqW2gpgIkI.jpg", "order": 9}, {"name": "Erin Daniels", "character": "Shannon", "id": 18662, "credit_id": "52fe49c79251416c750d2f1b", "cast_id": 11, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 10}, {"name": "Nina Siemaszko", "character": "Vegas Detective", "id": 42133, "credit_id": "52fe49c79251416c750d2f1f", "cast_id": 12, "profile_path": "/htNzOMMh4Hys3EhTDWdJOlbtKpL.jpg", "order": 11}, {"name": "Brenda Koo", "character": "Sarah", "id": 568714, "credit_id": "52fe49c79251416c750d2f3f", "cast_id": 21, "profile_path": "/uEU0wAFtFLfh3mGvrgPic2ILFYI.jpg", "order": 12}, {"name": "Joe Nieves", "character": "Police Officer", "id": 1222174, "credit_id": "52fe49c79251416c750d2f55", "cast_id": 25, "profile_path": "/zwuhBtnZNudwm9VMBa7576qf3Fk.jpg", "order": 13}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe49c79251416c750d2ef3", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 5.3, "runtime": 90}, "88751": {"poster_path": "/nlYk34gpPfM6KFujxB9HTHZyeiL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101702060, "overview": "On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth.", "video": false, "id": 88751, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Journey to the Center of the Earth", "tagline": "Same Planet. Different World.", "vote_count": 319, "homepage": "", "belongs_to_collection": {"backdrop_path": "/76AoK99XDWgIRrhtyrB0kOWYyfe.jpg", "poster_path": "/f3InNhgFNIvW3pwmjzB7lVtr028.jpg", "id": 72547, "name": "Journey Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0373051", "adult": false, "backdrop_path": "/tBMh4ig85nU6EC57pXhWfosSGlW.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Walden Media", "id": 10221}], "release_date": "2008-07-11", "popularity": 1.2508578858903, "original_title": "Journey to the Center of the Earth", "budget": 45000000, "cast": [{"name": "Brendan Fraser", "character": "Trevor Anderson", "id": 18269, "credit_id": "52fe4a019251416c910c0167", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Sean Anderson", "id": 27972, "credit_id": "52fe4a019251416c910c016b", "cast_id": 2, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Anita Briem", "character": "Hannah \u00c1sgeirsson", "id": 70785, "credit_id": "52fe4a019251416c910c016f", "cast_id": 3, "profile_path": "/voeG3UzEEe9VaEZdAR5LreNpuht.jpg", "order": 2}, {"name": "Seth Meyers", "character": "Professor Alan Kitzens", "id": 62856, "credit_id": "52fe4a019251416c910c0173", "cast_id": 4, "profile_path": "/pAw8sFWinnfxKe906nSYDw6UsUr.jpg", "order": 3}, {"name": "Jean Michel Par\u00e9", "character": "Max Anderson", "id": 70786, "credit_id": "52fe4a019251416c910c01b3", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Jane Wheeler", "character": "Elizabeth", "id": 110887, "credit_id": "52fe4a019251416c910c01b7", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Frank Fontaine", "character": "Old Man", "id": 60910, "credit_id": "52fe4a019251416c910c01bb", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Giancarlo Caltabiano", "character": "Leonard", "id": 110888, "credit_id": "52fe4a019251416c910c01bf", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Kaniehtiio Horn", "character": "Gum-Chewing Girl", "id": 70787, "credit_id": "52fe4a019251416c910c01c3", "cast_id": 19, "profile_path": "/osp3WEMHeI2aBl3WoB1zllJyDTZ.jpg", "order": 8}, {"name": "Garth Gilker", "character": "Sigurbj\u00f6rn \u00c1sgeirsson", "id": 110889, "credit_id": "52fe4a019251416c910c01c7", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Eric Brevig", "department": "Directing", "job": "Director", "credit_id": "52fe4a019251416c910c0179", "profile_path": "/QqS6wJAVIxQCC7khem22Hq0a4b.jpg", "id": 9622}], "vote_average": 5.4, "runtime": 93}, "117251": {"poster_path": "/niYdnzkrtBduR5lKtfeLXKXNaTT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205366737, "overview": "Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.", "video": false, "id": 117251, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "White House Down", "tagline": "It Will Start Like Any Other Day.", "vote_count": 779, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2334879", "adult": false, "backdrop_path": "/dyVFl6I0IQEKE3YAbLKwYLGymyp.jpg", "production_companies": [{"name": "Iron Horse Entertainment (II)", "id": 34981}, {"name": "Columbia Pictures", "id": 5}, {"name": "Mythology Entertainment (II)", "id": 34982}, {"name": "Centropolis Entertainment", "id": 347}], "release_date": "2013-06-28", "popularity": 1.52082956636676, "original_title": "White House Down", "budget": 150000000, "cast": [{"name": "Channing Tatum", "character": "Cale", "id": 38673, "credit_id": "52fe4baec3a36847f820f3d9", "cast_id": 9, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "President James Sawyer", "id": 134, "credit_id": "52fe4baec3a36847f820f3e7", "cast_id": 13, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Joey King", "character": "Emily", "id": 125025, "credit_id": "52fe4baec3a36847f820f3f1", "cast_id": 15, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 2}, {"name": "Maggie Gyllenhaal", "character": "Finnerty", "id": 1579, "credit_id": "52fe4baec3a36847f820f3dd", "cast_id": 10, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Raphelson", "id": 28633, "credit_id": "52fe4baec3a36847f820f3f5", "cast_id": 16, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "James Woods", "character": "Walker", "id": 4512, "credit_id": "52fe4baec3a36847f820f3f9", "cast_id": 17, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 5}, {"name": "Nicolas Wright", "character": "Donnie the Guide", "id": 73609, "credit_id": "52fe4baec3a36847f820f3fd", "cast_id": 18, "profile_path": "/kOaA9J1XVB2r1jJVPdLi9jLbSpQ.jpg", "order": 6}, {"name": "Jimmi Simpson", "character": "Tyler", "id": 22125, "credit_id": "52fe4baec3a36847f820f401", "cast_id": 19, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 7}, {"name": "Michael Murphy", "character": "Vice President Hammond", "id": 4776, "credit_id": "52fe4baec3a36847f820f405", "cast_id": 20, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 8}, {"name": "Rachelle Lefevre", "character": "Melanie", "id": 58168, "credit_id": "52fe4baec3a36847f820f409", "cast_id": 21, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 9}, {"name": "Lance Reddick", "character": "General Caulfield", "id": 129101, "credit_id": "52fe4baec3a36847f820f40d", "cast_id": 22, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 10}, {"name": "Matt Craven", "character": "Agent Kellerman", "id": 13525, "credit_id": "52fe4baec3a36847f820f411", "cast_id": 23, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 11}, {"name": "Jake Weber", "character": "Agent Hope", "id": 4177, "credit_id": "52fe4baec3a36847f820f415", "cast_id": 24, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 12}, {"name": "Peter Jacobson", "character": "Wallace", "id": 31514, "credit_id": "52fe4baec3a36847f820f419", "cast_id": 25, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 13}, {"name": "Jason Clarke", "character": "Stenz", "id": 76512, "credit_id": "52fe4baec3a36847f820f41d", "cast_id": 26, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 14}, {"name": "Kevin Rankin", "character": "Killick", "id": 114000, "credit_id": "52fe4baec3a36847f820f45d", "cast_id": 37, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 15}, {"name": "Garcelle Beauvais", "character": "Alison Sawyer", "id": 31647, "credit_id": "52fe4baec3a36847f820f461", "cast_id": 38, "profile_path": "/fuZx5JL2VeMM1nwrZw2pkAMxuVt.jpg", "order": 16}, {"name": "Falk Hentschel", "character": "Motts", "id": 118643, "credit_id": "52fe4baec3a36847f820f465", "cast_id": 39, "profile_path": "/6NFuHgdtpJ6dY8wqZ8CV95N82Z7.jpg", "order": 17}, {"name": "Romano Orzari", "character": "Mulcahy", "id": 96591, "credit_id": "52fe4baec3a36847f820f469", "cast_id": 40, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 18}, {"name": "Jackie Geary", "character": "Jenna", "id": 166688, "credit_id": "52fe4baec3a36847f820f46d", "cast_id": 41, "profile_path": "/saIV0KEUYjfDSKsCyODWxCGqbUr.jpg", "order": 19}, {"name": "Andrew Simms", "character": "Roger Skinner", "id": 190098, "credit_id": "52fe4baec3a36847f820f471", "cast_id": 42, "profile_path": "/cowTaScHEybfhneLfcJ0Ax7ux8A.jpg", "order": 20}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4baec3a36847f820f3b1", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.5, "runtime": 131}, "6844": {"poster_path": "/iEwS3ZaavaTEWmMqCapaw1T0f0X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65000000, "overview": "Escaping death, a Hebrew infant is raised in a royal household to become a prince. Upon discovery of his true heritage, Moses embarks on a personal quest to reclaim his destiny as the leader and liberator of the Hebrew people.", "video": false, "id": 6844, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Ten Commandments", "tagline": "The Greatest Event in Motion Picture History", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0049833", "adult": false, "backdrop_path": "/sO6AnUEirDnaxjy8dxaqYEKDxGi.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Motion Picture Associates", "id": 12275}], "release_date": "1956-10-05", "popularity": 0.287175212747561, "original_title": "The Ten Commandments", "budget": 13000000, "cast": [{"name": "Charlton Heston", "character": "Moses", "id": 10017, "credit_id": "52fe4466c3a36847f8093ad9", "cast_id": 9, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 0}, {"name": "Anne Baxter", "character": "Nofretete", "id": 10606, "credit_id": "52fe4466c3a36847f8093add", "cast_id": 10, "profile_path": "/jOnJoazpO6q2vAVL37IQfzQbjav.jpg", "order": 1}, {"name": "Yul Brynner", "character": "Ramses", "id": 14528, "credit_id": "52fe4466c3a36847f8093ae1", "cast_id": 11, "profile_path": "/6UerE2q3iPcr4Y1ZsZJEf1Aom2g.jpg", "order": 2}, {"name": "Edward G. Robinson", "character": "Dathan", "id": 13566, "credit_id": "52fe4466c3a36847f8093ae5", "cast_id": 12, "profile_path": "/af1aBRi4UccaxtmDPWEtlfy1vXE.jpg", "order": 3}, {"name": "Yvonne De Carlo", "character": "Sephora", "id": 41240, "credit_id": "52fe4466c3a36847f8093ae9", "cast_id": 13, "profile_path": "/gVhYTejACw6CbdLJpo2suRPUXx9.jpg", "order": 4}, {"name": "Debra Paget", "character": "Lilia", "id": 48958, "credit_id": "52fe4466c3a36847f8093aed", "cast_id": 14, "profile_path": "/hu9oG6bt7WohvU4G0ydKZ1aeDuf.jpg", "order": 5}, {"name": "Nina Foch", "character": "Bithiah", "id": 13026, "credit_id": "52fe4466c3a36847f8093af1", "cast_id": 15, "profile_path": "/jd5qWtnZdEvfwuo57CpJVzazYc0.jpg", "order": 6}, {"name": "Martha Scott", "character": "Yochabel", "id": 10022, "credit_id": "52fe4466c3a36847f8093af5", "cast_id": 16, "profile_path": "/ncuwnj0bgG62KlT8RSAhEdssamg.jpg", "order": 7}, {"name": "Judith Anderson", "character": "Memnet", "id": 3362, "credit_id": "52fe4466c3a36847f8093af9", "cast_id": 17, "profile_path": "/ryTVWN7XI2WejLsFhicfx3yJ6y9.jpg", "order": 8}, {"name": "Vincent Price", "character": "Baka", "id": 1905, "credit_id": "52fe4466c3a36847f8093afd", "cast_id": 18, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 9}, {"name": "John Carradine", "character": "Aaron", "id": 8516, "credit_id": "52fe4466c3a36847f8093b01", "cast_id": 19, "profile_path": "/iWHObxmwHuUS7g4uJFT2SS2hHXu.jpg", "order": 10}, {"name": "Douglass Dumbrille", "character": "Jannes", "id": 34748, "credit_id": "52fe4466c3a36847f8093b05", "cast_id": 20, "profile_path": "/ggD9NRWlRDofqVhVR6XaTHvLhp4.jpg", "order": 11}, {"name": "Frank Dekova", "character": "Abiram", "id": 50574, "credit_id": "52fe4466c3a36847f8093b09", "cast_id": 21, "profile_path": "/73gXe4nNFYXVnS3wB1DIJkaoO82.jpg", "order": 12}, {"name": "Henry Wilcoxon", "character": "Pentaur", "id": 51310, "credit_id": "52fe4466c3a36847f8093b0d", "cast_id": 22, "profile_path": "/6s1QdX3AcRKZ5fBKD1jKVI1nnCV.jpg", "order": 13}, {"name": "Cedric Hardwicke", "character": "Sethi", "id": 99461, "credit_id": "52fe4466c3a36847f8093b2f", "cast_id": 28, "profile_path": "/xldbAfjrbY6ny9r13SUDGtSwoSb.jpg", "order": 14}, {"name": "John Derek", "character": "Joshua", "id": 39608, "credit_id": "52fe4466c3a36847f8093b33", "cast_id": 29, "profile_path": "/5MEgaXvF8NgKUffKGA8otititib.jpg", "order": 15}, {"name": "Vincent Price", "character": "Baka", "id": 1905, "credit_id": "52fe4466c3a36847f8093b37", "cast_id": 30, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 16}, {"name": "John Carradine", "character": "Aaron", "id": 8516, "credit_id": "52fe4466c3a36847f8093b3b", "cast_id": 31, "profile_path": "/iWHObxmwHuUS7g4uJFT2SS2hHXu.jpg", "order": 17}, {"name": "Olive Deering", "character": "Miriam", "id": 100788, "credit_id": "52fe4466c3a36847f8093b3f", "cast_id": 32, "profile_path": "/yMowZ3ZiH0M7zV6SIhP9YABG1vu.jpg", "order": 18}, {"name": "Douglass Dumbrille", "character": "Jannes", "id": 34748, "credit_id": "52fe4466c3a36847f8093b43", "cast_id": 33, "profile_path": "/ggD9NRWlRDofqVhVR6XaTHvLhp4.jpg", "order": 19}, {"name": "Eduard Franz", "character": "Jethro", "id": 94070, "credit_id": "52fe4466c3a36847f8093b4b", "cast_id": 35, "profile_path": "/v6qqXmGXvHUbWnaG0L0z2JQ63zA.jpg", "order": 21}, {"name": "Donald Curtis", "character": "Mered", "id": 35847, "credit_id": "52fe4466c3a36847f8093b4f", "cast_id": 36, "profile_path": "/tW9pHQ3GlfLgbDup4Q70p0QPfoK.jpg", "order": 22}, {"name": "Lawrence Dobkin", "character": "Hur Ben Caleb", "id": 15625, "credit_id": "52fe4466c3a36847f8093b53", "cast_id": 37, "profile_path": "/mI7q9C7Z0tagylB9ew4C6mmKwFp.jpg", "order": 23}, {"name": "Woody Strode", "character": "King of Ethiopia", "id": 4963, "credit_id": "52fe4466c3a36847f8093b57", "cast_id": 38, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 24}, {"name": "Joan Woodbury", "character": "Korah's Wife", "id": 89746, "credit_id": "52fe4466c3a36847f8093b5b", "cast_id": 39, "profile_path": "/iN5cJbzUThqlwbmVsoEkNiZ1Pi4.jpg", "order": 25}, {"name": "Henry Brandon", "character": "Commander of the Hosts", "id": 30553, "credit_id": "52fe4466c3a36847f8093b5f", "cast_id": 40, "profile_path": "/xjkd8VhfGkYidjMiqJ4tjihLHsH.jpg", "order": 26}, {"name": "Clint Walker", "character": "Sardinian Captain", "id": 40207, "credit_id": "52fe4466c3a36847f8093b63", "cast_id": 41, "profile_path": "/z9EwnoNgmO9hwTHWtkuX3aBkwgv.jpg", "order": 27}, {"name": "Luis Alberni", "character": "Old Hebrew", "id": 30264, "credit_id": "52fe4466c3a36847f8093b67", "cast_id": 42, "profile_path": "/reMnlbERut9m3VWis9if3i9lCJw.jpg", "order": 28}, {"name": "Michael Ansara", "character": "Taskmaster", "id": 16074, "credit_id": "52fe4466c3a36847f8093b6b", "cast_id": 43, "profile_path": "/hljiouuRhicMyfxIm2SMBmjOlMr.jpg", "order": 29}, {"name": "Terence De Marney", "character": "Hebrew at Rameses' Gate", "id": 100790, "credit_id": "52fe4466c3a36847f8093b6f", "cast_id": 44, "profile_path": null, "order": 30}, {"name": "Richard Farnsworth", "character": "Chariot Driver", "id": 5605, "credit_id": "52fe4466c3a36847f8093b73", "cast_id": 45, "profile_path": "/7obpMM5f6zdDVHGe3SkvXMWOL0q.jpg", "order": 31}, {"name": "Gavin Gordon", "character": "Trojan Ambassador", "id": 2927, "credit_id": "52fe4466c3a36847f8093b77", "cast_id": 46, "profile_path": "/kmCRZ3fBfnoNZQqW92T0bI8QZMe.jpg", "order": 32}, {"name": "Patricia Hitchcock", "character": "Court Lady", "id": 12500, "credit_id": "52fe4466c3a36847f8093b7b", "cast_id": 47, "profile_path": "/aB59dttMS0KHSv2frlqcx43HCeC.jpg", "order": 33}, {"name": "Michael Mark", "character": "Hebrew at Dathan's Tent / Old Man", "id": 30163, "credit_id": "52fe4466c3a36847f8093b7f", "cast_id": 48, "profile_path": null, "order": 34}, {"name": "Gordon Mitchell", "character": "Egyptian Guard", "id": 30898, "credit_id": "52fe4466c3a36847f8093b83", "cast_id": 49, "profile_path": "/szzvsqfFlkHBUJEiZtRquIhxHqn.jpg", "order": 35}, {"name": "George Robotham", "character": "Attendant", "id": 34131, "credit_id": "52fe4466c3a36847f8093b87", "cast_id": 50, "profile_path": null, "order": 36}, {"name": "Robert Vaughn", "character": "Spearman / Hebrew at Golden Calf", "id": 14060, "credit_id": "52fe4466c3a36847f8093b8b", "cast_id": 52, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 37}, {"name": "Carl Switzer", "character": "Slave", "id": 941239, "credit_id": "532a56dd925141083f000a0e", "cast_id": 62, "profile_path": "/2HUMr4YzycNA40D2Xt8gpfG5KSn.jpg", "order": 38}, {"name": "Mike Connors", "character": "Amalekite Herder (as Touch Connors)", "id": 29718, "credit_id": "52fe4466c3a36847f8093b99", "cast_id": 55, "profile_path": "/4Jg5SxHYjIpC5bngQRFv7O5v2ys.jpg", "order": 39}, {"name": "Henry Corden", "character": "Sheik of Sinai", "id": 106102, "credit_id": "52fe4466c3a36847f8093b9d", "cast_id": 56, "profile_path": "/65f9Etk8mM8oQxN20eQPM8p5Wo1.jpg", "order": 40}, {"name": "Mimi Gibson", "character": "Little Egyptian Girl", "id": 16762, "credit_id": "52fe4466c3a36847f8093ba1", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Babette Bain", "character": "Little Miriam", "id": 1458725, "credit_id": "553ab96792514138a900510c", "cast_id": 63, "profile_path": null, "order": 42}], "directors": [{"name": "Cecil B. DeMille", "department": "Directing", "job": "Director", "credit_id": "52fe4466c3a36847f8093ab1", "profile_path": "/oZnXG7WjQ9FXaQkzOtAmzYGDoH5.jpg", "id": 8636}], "vote_average": 7.1, "runtime": 220}, "170687": {"poster_path": "/54F92cg4moKVShH5VKgqfDXHIl5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108255770, "overview": "The Boxtrolls is a comedic fable that unfolds in Cheesebridge, a posh Victorian-era town obsessed with wealth, class and the stinkiest of fine cheeses. Beneath its charming cobblestone streets dwell the Boxtrolls, foul monsters who crawl out of the sewers at night and steal what the townspeople hold most dear: their children and their cheeses. At least that\u2019s the legend residents have always believed. In truth, the Boxtrolls are an underground cavern-dwelling community of quirky and lovable oddballs who wear recycled cardboard boxes the way turtles wear their shells. The Boxtrolls have raised an orphaned human boy since infancy as one of their dumpster-diving and mechanical junk-collecting own. When the Boxtrolls are targeted by a villainous pest exterminator who is bent on eradicating them as his ticket to Cheesebridge society, the kind-hearted band of tinkerers must turn to their adopted charge and an adventurous rich girl to bridge two worlds amidst the winds of change \u2013 and cheese.", "video": false, "id": 170687, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Boxtrolls", "tagline": "Dare to be square.", "vote_count": 169, "homepage": "http://www.theboxtrolls.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0787474", "adult": false, "backdrop_path": "/yFtr1BD7AHeruIm9jsVnoebEN2v.jpg", "production_companies": [{"name": "Laika Entertainment", "id": 11537}, {"name": "Focus Features", "id": 10146}], "release_date": "2014-09-26", "popularity": 2.1018602261331, "original_title": "The Boxtrolls", "budget": 60000000, "cast": [{"name": "Isaac Hempstead Wright", "character": "Eggs", "id": 239020, "credit_id": "52fe4cfbc3a36847f82485b1", "cast_id": 8, "profile_path": "/qF1Ca4aNDkpSGQt9Q7qfpRbwNOk.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Archibald Snatcher", "id": 2282, "credit_id": "52fe4cfbc3a36847f824859d", "cast_id": 3, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Elle Fanning", "character": "Winnie Portley-Rind", "id": 18050, "credit_id": "52fe4cfbc3a36847f8248599", "cast_id": 2, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 2}, {"name": "Simon Pegg", "character": "Herbert Trubshaw", "id": 11108, "credit_id": "52fe4cfbc3a36847f8248595", "cast_id": 1, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 3}, {"name": "Toni Collette", "character": "Lady Portley-Rind", "id": 3051, "credit_id": "52fe4cfbc3a36847f82485a1", "cast_id": 4, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 4}, {"name": "Jared Harris", "character": "Lord Portley-Rind", "id": 15440, "credit_id": "52fe4cfbc3a36847f82485a5", "cast_id": 5, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 5}, {"name": "Nick Frost", "character": "Mr. Trout", "id": 11109, "credit_id": "52fe4cfbc3a36847f82485a9", "cast_id": 6, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 6}, {"name": "Tracy Morgan", "character": "Mr. Gristle", "id": 56903, "credit_id": "52fe4cfbc3a36847f82485b5", "cast_id": 9, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 7}, {"name": "Richard Ayoade", "character": "Mr. Pickles", "id": 98103, "credit_id": "52fe4cfbc3a36847f82485ad", "cast_id": 7, "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "order": 8}, {"name": "Laraine Newman", "character": "", "id": 35159, "credit_id": "5331bb6ec3a3686a7f001faf", "cast_id": 14, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 9}], "directors": [{"name": "Graham Annable", "department": "Directing", "job": "Director", "credit_id": "52fe4cfbc3a36847f82485bb", "profile_path": null, "id": 1152981}, {"name": "Anthony Stacchi", "department": "Directing", "job": "Director", "credit_id": "52fe4cfcc3a36847f82485c1", "profile_path": "/w4xXHA8eG9HIQFw3YXprZqggV4N.jpg", "id": 52691}], "vote_average": 6.8, "runtime": 97}, "10048": {"poster_path": "/tiezxIq6TJO4B09c13Z8a675dDy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76932943, "overview": "Deeply ensconced in a top-secret military program, three pilots struggle to bring an artificial intelligence program under control ... before it initiates the next world war.", "video": false, "id": 10048, "genres": [{"id": 28, "name": "Action"}], "title": "Stealth", "tagline": "Fear The Sky", "vote_count": 111, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0382992", "adult": false, "backdrop_path": "/uiw9D7ud7oUsQtTFoXzTkXlc9u3.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Original Film", "id": 333}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Laura Ziskin Productions", "id": 326}, {"name": "AFG Talons Productions", "id": 19523}], "release_date": "2005-07-28", "popularity": 0.671792477724259, "original_title": "Stealth", "budget": 135000000, "cast": [{"name": "Josh Lucas", "character": "Lt. Ben Gannon", "id": 6164, "credit_id": "52fe43139251416c7500278d", "cast_id": 21, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Lt. Kara Wade", "id": 10860, "credit_id": "52fe43139251416c75002797", "cast_id": 23, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Jamie Foxx", "character": "Lt. Henry Purcell", "id": 134, "credit_id": "52fe43139251416c7500279b", "cast_id": 24, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Capt. George Cummings", "id": 9880, "credit_id": "52fe43139251416c7500279f", "cast_id": 25, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Richard Roxburgh", "character": "Dr. Keith Orbit", "id": 12206, "credit_id": "52fe43139251416c750027a3", "cast_id": 26, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 4}, {"name": "Joe Morton", "character": "Capt. Dick Marshfield", "id": 3977, "credit_id": "52fe43139251416c750027a7", "cast_id": 27, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "Ebon Moss-Bachrach", "character": "Tim", "id": 21042, "credit_id": "52fe43139251416c750027ab", "cast_id": 28, "profile_path": "/ur1xAkenuiahTeQ8cIo20hwAvnm.jpg", "order": 6}, {"name": "Michael Denkha", "character": "Naval Controller", "id": 62487, "credit_id": "52fe43139251416c750027bf", "cast_id": 32, "profile_path": null, "order": 7}, {"name": "Clayton Adams", "character": "USS Abraham Lincoln Sailor", "id": 62489, "credit_id": "52fe43139251416c750027bb", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Rocky Helton", "character": "Master at Arms", "id": 62488, "credit_id": "52fe43139251416c750027c3", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Ian Bliss", "character": "Lt. Aaron Shaftsbury", "id": 62486, "credit_id": "52fe43139251416c750027cb", "cast_id": 35, "profile_path": "/cPBbJE6Pn0dU1LgPzrkE2Lfu0MJ.jpg", "order": 10}, {"name": "Maurice Morgan", "character": "USS Abraham Lincoln Sailor", "id": 62490, "credit_id": "52fe43139251416c750027c7", "cast_id": 34, "profile_path": "/96fM22kWShDIlWNS7ZVsd8s1kLo.jpg", "order": 11}, {"name": "Woody Naismith", "character": "USS Abraham Lincoln Sailor", "id": 62491, "credit_id": "52fe43139251416c750027cf", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Nicholas Hammond", "character": "Executive Officer", "id": 29095, "credit_id": "52fe43139251416c750027d3", "cast_id": 37, "profile_path": "/u7PRHFksaCypSKGIaEjk0Q3lYwN.jpg", "order": 13}, {"name": "Joel Tobeck", "character": "Black Ops Leader", "id": 41785, "credit_id": "52fe43139251416c750027d7", "cast_id": 38, "profile_path": "/14Oobz8bwcd3jiqnoCFTQnPBJdB.jpg", "order": 14}, {"name": "John Waters", "character": "Black Ops Doctor", "id": 10367, "credit_id": "52fe43139251416c750027db", "cast_id": 39, "profile_path": "/3qDSp0LlJ1Q2y802OyJcHVARsbZ.jpg", "order": 15}, {"name": "Charles Ndibe", "character": "USS Abraham Lincoln Sailor", "id": 62492, "credit_id": "52fe43139251416c750027df", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Michael McCabe", "character": "Commander 3rd Fleet", "id": 62493, "credit_id": "52fe43139251416c750027e3", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Jim Diamond", "character": "Rangoon Terrorist", "id": 62495, "credit_id": "52fe43139251416c750027e7", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Sara Saliba", "character": "Korean Girl", "id": 62494, "credit_id": "52fe43139251416c750027eb", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Caroline de Souza Correa", "character": "Henry's Date", "id": 1291386, "credit_id": "52fe43139251416c750027fb", "cast_id": 46, "profile_path": "/2xm5jeoy2NPaV69C1nXZ3Ujgc6r.jpg", "order": 20}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe43139251416c750027f1", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 4.9, "runtime": 121}, "72387": {"poster_path": "/eoiqqDHohBCDwFWQOvczUeNoixK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After a former elite agent rescues a 12-year-old Chinese girl who's been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.", "video": false, "id": 72387, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Safe", "tagline": "She has the code. He is the key.", "vote_count": 347, "homepage": "http://www.safethefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1656190", "adult": false, "backdrop_path": "/eZ7XAU70UcMvMsDajqphFeQNQ8S.jpg", "production_companies": [{"name": "IM Global", "id": 7437}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Lawrence Bender Productions", "id": 2253}, {"name": "Trigger Street Productions", "id": 11801}, {"name": "87Eleven", "id": 23008}], "release_date": "2012-04-16", "popularity": 0.937963741650963, "original_title": "Safe", "budget": 27000000, "cast": [{"name": "Jason Statham", "character": "Luke Wright", "id": 976, "credit_id": "52fe4868c3a368484e0f714f", "cast_id": 3, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Chris Sarandon", "character": "Mayor Tremello", "id": 14541, "credit_id": "52fe4868c3a368484e0f7153", "cast_id": 4, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "T Bonero", "id": 1072642, "credit_id": "5537636e92514166aa006354", "cast_id": 37, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "James Hong", "character": "Han Jiao", "id": 20904, "credit_id": "52fe4868c3a368484e0f7157", "cast_id": 5, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 3}, {"name": "Catherine Chan", "character": "Mei", "id": 565675, "credit_id": "52fe4868c3a368484e0f715b", "cast_id": 6, "profile_path": "/3O5PgeCN28g5rtT1LkGMSCsBzdq.jpg", "order": 4}, {"name": "Robert John Burke", "character": "Captain Wolf", "id": 31512, "credit_id": "52fe4868c3a368484e0f715f", "cast_id": 7, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 5}, {"name": "Anson Mount", "character": "Alex Rosen", "id": 56675, "credit_id": "52fe4868c3a368484e0f7163", "cast_id": 8, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 6}, {"name": "Reggie Lee", "character": "Quan Chang", "id": 22075, "credit_id": "52fe4868c3a368484e0f7167", "cast_id": 10, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 7}, {"name": "Joseph Sikora", "character": "Vassily Docheski", "id": 82631, "credit_id": "52fe4869c3a368484e0f71b9", "cast_id": 25, "profile_path": "/rNGXbssgOE9clqMyqGSdeiKvBJD.jpg", "order": 8}, {"name": "Igor Jijikine", "character": "Chemyakin", "id": 52761, "credit_id": "52fe4869c3a368484e0f71bd", "cast_id": 26, "profile_path": "/4ArqFlvP6Fe77DLxPu1U5LvkpXC.jpg", "order": 9}, {"name": "Reggie Lee", "character": "Quan Chang", "id": 22075, "credit_id": "52fe4869c3a368484e0f71c1", "cast_id": 27, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 10}, {"name": "Jack Gwaltney", "character": "Detective Reddick", "id": 159850, "credit_id": "52fe4869c3a368484e0f71c5", "cast_id": 30, "profile_path": "/umRHAAGWzE0jh88JWnC2w1UHL53.jpg", "order": 11}, {"name": "Barry Bradford", "character": "Detective Benoit", "id": 163976, "credit_id": "52fe4869c3a368484e0f71c9", "cast_id": 31, "profile_path": "/dKsacfla3ZgSzsgLbxHwZd6RO7x.jpg", "order": 12}, {"name": "Jay Giannone", "character": "Detective Kolfax", "id": 170240, "credit_id": "52fe4869c3a368484e0f71cd", "cast_id": 32, "profile_path": "/5T3PAzHKZudfot8FNY9hXqAjYgb.jpg", "order": 13}], "directors": [{"name": "Boaz Yakin", "department": "Directing", "job": "Director", "credit_id": "52fe4868c3a368484e0f7145", "profile_path": "/4NL3F6iwVlwdWvBKue5H8OpZrp2.jpg", "id": 52358}], "vote_average": 6.2, "runtime": 94}, "44833": {"poster_path": "/8R80QyDq7MCuBD8zMsNlminyXxy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 303025485, "overview": "When mankind beams a radio signal into space, a reply comes from \"Planet G\", in the form of several alien crafts that splash down in the waters off Hawaii. Lieutenant Alex Hopper (Taylor Kitsch) is a navel weapons officer assigned to the ship USS John Paul Jones, part of an international naval coalition which becomes the world's last hope for survival as they engage the hostile alien force of unimaginable strength. While takng on the invaders, Hopper must also try to live up to the potential his brother Stone (Alexander Skarsg\u00e5rd) and his fianc\u00e9e's father, Admiral Shane (Liam Neeson), expect of him.", "video": false, "id": 44833, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Battleship", "tagline": "The Battle for Earth Begins at Sea", "vote_count": 1043, "homepage": "http://www.battleshipmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1440129", "adult": false, "backdrop_path": "/gK3HCLid5M9AjzcIlKvhXjTHsfb.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Hasbro", "id": 2598}, {"name": "Bluegrass Films", "id": 13778}, {"name": "Film 44", "id": 20153}], "release_date": "2012-05-18", "popularity": 1.03228818303624, "original_title": "Battleship", "budget": 209000000, "cast": [{"name": "Taylor Kitsch", "character": "Lieutenant Alex Hopper", "id": 60900, "credit_id": "52fe469ec3a36847f8108ccb", "cast_id": 3, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 0}, {"name": "Alexander Skarsg\u00e5rd", "character": "Commander Stone Hopper", "id": 28846, "credit_id": "52fe469ec3a36847f8108cd7", "cast_id": 8, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 1}, {"name": "Rihanna", "character": "Petty Officer Cora", "id": 131519, "credit_id": "52fe469ec3a36847f8108ccf", "cast_id": 4, "profile_path": "/ssguCAeEMq74FS2ICMJ3Q9Wy7Bf.jpg", "order": 2}, {"name": "Brooklyn Decker", "character": "Sam", "id": 131520, "credit_id": "52fe469ec3a36847f8108cd3", "cast_id": 6, "profile_path": "/ll0ujxAqZUTcWSuA8NNsXoLppsG.jpg", "order": 3}, {"name": "Tadanobu Asano", "character": "Captain Yugi Nagata", "id": 13275, "credit_id": "52fe469ec3a36847f8108d1b", "cast_id": 21, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 4}, {"name": "Liam Neeson", "character": "Admiral Shane", "id": 3896, "credit_id": "52fe469ec3a36847f8108cdb", "cast_id": 9, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 5}, {"name": "Gregory D. Gadson", "character": "Lieutenant Colonel Mick Canales", "id": 1052162, "credit_id": "539f697ac3a3682820000da6", "cast_id": 43, "profile_path": "/p6NCHRjMiukaPxnrXcgsBalvJlf.jpg", "order": 6}, {"name": "Hamish Linklater", "character": "Cal Zapata", "id": 184581, "credit_id": "52fe469ec3a36847f8108d63", "cast_id": 35, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 7}, {"name": "Jesse Plemons", "character": "Boatswain Mate Seaman Jimmy \"Ordy\" Ord", "id": 88124, "credit_id": "52fe469ec3a36847f8108d17", "cast_id": 20, "profile_path": "/5EOD7UtSHYWR66BcDE2EnSvrQ1L.jpg", "order": 8}, {"name": "John Tui", "character": "Chief Petty Officer Walter \"The Beast\" Lynch", "id": 205406, "credit_id": "52fe469ec3a36847f8108d67", "cast_id": 36, "profile_path": "/7ZBf1x5SFm8iFiKG5trd5VaQCIO.jpg", "order": 9}, {"name": "Jerry Ferrara", "character": "Sampson JOOD Strodell", "id": 98953, "credit_id": "52fe469ec3a36847f8108d6f", "cast_id": 38, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 10}, {"name": "David Jensen", "character": "NASA Director", "id": 60875, "credit_id": "52fe469ec3a36847f8108d5b", "cast_id": 33, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 11}, {"name": "Peter Berg", "character": "JPJ 2nd Gunner", "id": 36602, "credit_id": "52fe469ec3a36847f8108d5f", "cast_id": 34, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 12}, {"name": "Adam Godley", "character": "Dr. Nogrady", "id": 23429, "credit_id": "53a159c2c3a3687bbc001fcf", "cast_id": 51, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 13}, {"name": "Rico McClinton", "character": "Captain Browley", "id": 987677, "credit_id": "53a159fdc3a3687ba60020be", "cast_id": 52, "profile_path": null, "order": 14}, {"name": "Joji Yoshida", "character": "Chief Engineer Hiroki", "id": 1331643, "credit_id": "53a15a43c3a3687bbc001fe1", "cast_id": 53, "profile_path": null, "order": 15}, {"name": "Stephen Bishop", "character": "JPJ OOD", "id": 55205, "credit_id": "53a15a74c3a3687bb000221d", "cast_id": 54, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 16}, {"name": "Austin Naulty", "character": "JPJ Fireman", "id": 1044953, "credit_id": "53a15abec3a3685b2c000987", "cast_id": 55, "profile_path": null, "order": 17}, {"name": "James Rawlings", "character": "JPJ Scat", "id": 565508, "credit_id": "53a15b02c3a3687b980020ac", "cast_id": 56, "profile_path": "/cxADb4TZ27Rsfww4lcd74iJMBwm.jpg", "order": 18}, {"name": "Dustin J. Reno", "character": "Electronic Warfare Supervisor", "id": 1337274, "credit_id": "549ac3a6925141312c001711", "cast_id": 151, "profile_path": "/4NWEMZPw5n7aqg7oVlH2b2htUv4.jpg", "order": 19}, {"name": "Rick Hoffman", "character": "Chairman, Joint Chiefs of Staff", "id": 1216133, "credit_id": "549ac3e5925141312300190f", "cast_id": 152, "profile_path": "/d1B41muPxihy4YXsWRiXKfpzq0y.jpg", "order": 20}, {"name": "Gary Grubbs", "character": "Air Force Chief of Staff", "id": 68180, "credit_id": "549ac409c3a3680b2700114e", "cast_id": 153, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 21}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe469ec3a36847f8108cc7", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 5.5, "runtime": 131}, "80585": {"poster_path": "/k5au98wpdbViuRWZMy6RbxMBXjl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Young Drew Boley (Diego Boneta) and Sherrie Christian (Julianne Hough) fall in love during the rock music scene of 1987.", "video": false, "id": 80585, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Rock of Ages", "tagline": "Nothin' but a good time", "vote_count": 110, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1336608", "adult": false, "backdrop_path": "/epwiE1BS0WqnHoKdT1GcOh8VYYW.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Corner Store Entertainment", "id": 8871}], "release_date": "2012-06-13", "popularity": 0.352828142768076, "original_title": "Rock of Ages", "budget": 75000000, "cast": [{"name": "Tom Cruise", "character": "Stacee Jaxx", "id": 500, "credit_id": "52fe47c99251416c91075af7", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Bryan Cranston", "character": "Mayor Mike Whitmore", "id": 17419, "credit_id": "52fe47c99251416c91075b01", "cast_id": 3, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 1}, {"name": "Malin Akerman", "character": "Constance Sack", "id": 50463, "credit_id": "52fe47c99251416c91075b05", "cast_id": 4, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 2}, {"name": "Russell Brand", "character": "Lonny Barnett", "id": 59919, "credit_id": "52fe47c99251416c91075b09", "cast_id": 5, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 3}, {"name": "Catherine Zeta-Jones", "character": "Patricia Whitmore", "id": 1922, "credit_id": "52fe47c99251416c91075b0d", "cast_id": 6, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 4}, {"name": "Alec Baldwin", "character": "Dennis Dupree", "id": 7447, "credit_id": "52fe47c99251416c91075b11", "cast_id": 7, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 5}, {"name": "Paul Giamatti", "character": "Paul Gill", "id": 13242, "credit_id": "52fe47c99251416c91075b4b", "cast_id": 17, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 6}, {"name": "Diego Boneta", "character": "Drew Boley", "id": 935201, "credit_id": "52fe47c99251416c91075b4f", "cast_id": 18, "profile_path": "/qcjr8SqbjkoK5kU4OTdL0tKvH17.jpg", "order": 7}, {"name": "Julianne Hough", "character": "Sherrie Christian", "id": 143240, "credit_id": "52fe47c99251416c91075b53", "cast_id": 19, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 8}, {"name": "Erica Frene", "character": "Beth", "id": 1064157, "credit_id": "52fe47c99251416c91075b57", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Shane Hartline", "character": "Bartender Jimmy", "id": 1064158, "credit_id": "52fe47c99251416c91075b5b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "James Martin Kelly", "character": "Doug Flintlock", "id": 162849, "credit_id": "52fe47c99251416c91075b5f", "cast_id": 22, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 11}, {"name": "Mary J. Blige", "character": "Justice", "id": 84933, "credit_id": "52fe47c99251416c91075b63", "cast_id": 23, "profile_path": "/mWT23vVYLuSLGDlaXhFql4BqW6T.jpg", "order": 12}, {"name": "Will Forte", "character": "Mitch Miley", "id": 62831, "credit_id": "52fe47c99251416c91075b67", "cast_id": 24, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 13}, {"name": "Eli Roth", "character": "Stefano", "id": 16847, "credit_id": "52fe47c99251416c91075b6b", "cast_id": 25, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 14}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe47c99251416c91075afd", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.6, "runtime": 123}, "36643": {"poster_path": "/tCarTEKvXjALk87r3wAxB4jb1ON.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361832400, "overview": "Greed, revenge, world dominance, high-tech terrorism -- it's all in a day's work for cunning MI6 agent James Bond, who's on a mission to protect beautiful oil heiress Elektra King from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.", "video": false, "id": 36643, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The World Is Not Enough", "tagline": "As the countdown begins for the new millennium there is still one number you can always count on.", "vote_count": 258, "homepage": "http://www.mgm.com/view/movie/231/The-World-Is-Not-Enough/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0143145", "adult": false, "backdrop_path": "/4xAb2zAe5Pmno928hBQqff4RVwr.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "United Artists", "id": 60}], "release_date": "1999-11-21", "popularity": 1.79316087311734, "original_title": "The World Is Not Enough", "budget": 135000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe45fc9251416c910452db", "cast_id": 4, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Sophie Marceau", "character": "Elektra King", "id": 1957, "credit_id": "52fe45fc9251416c910452df", "cast_id": 5, "profile_path": "/5pJ16f9QxzZMzcr9CpSnr6dTwGG.jpg", "order": 1}, {"name": "Robert Carlyle", "character": "Renard", "id": 18023, "credit_id": "52fe45fc9251416c910452e3", "cast_id": 6, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 2}, {"name": "Denise Richards", "character": "Dr. Christmas Jones", "id": 9205, "credit_id": "52fe45fc9251416c910452e7", "cast_id": 7, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 3}, {"name": "Robbie Coltrane", "character": "Valentin Zukovsky", "id": 1923, "credit_id": "52fe45fc9251416c910452eb", "cast_id": 8, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 4}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe45fc9251416c910452ef", "cast_id": 9, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 5}, {"name": "John Cleese", "character": "R", "id": 8930, "credit_id": "52fe45fc9251416c910452f3", "cast_id": 10, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Maria Grazia Cucinotta", "character": "Cigar Girl", "id": 10777, "credit_id": "52fe45fc9251416c910452f7", "cast_id": 11, "profile_path": "/bgI6qh8V7zKslCcGxRflom4H7yS.jpg", "order": 7}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe45fc9251416c910452fb", "cast_id": 12, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 8}, {"name": "Michael Kitchen", "character": "Bill Tanner", "id": 10648, "credit_id": "52fe45fc9251416c910452ff", "cast_id": 13, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 9}, {"name": "Colin Salmon", "character": "Charles Robinson", "id": 5414, "credit_id": "52fe45fc9251416c91045303", "cast_id": 14, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 10}, {"name": "David Calder", "character": "Sir Robert King", "id": 10779, "credit_id": "52fe45fc9251416c91045307", "cast_id": 15, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 11}, {"name": "Serena Scott Thomas", "character": "Dr. Molly Warmflash", "id": 10780, "credit_id": "52fe45fc9251416c9104530b", "cast_id": 16, "profile_path": "/dvTjb6V46wOo9JGgcViU54UoZNN.jpg", "order": 12}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe45fc9251416c9104530f", "cast_id": 17, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 13}, {"name": "Ulrich Thomsen", "character": "Davidov", "id": 4455, "credit_id": "5401f5580e0a2658e2005262", "cast_id": 21, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 14}, {"name": "Claude-Oliver Rudolph", "character": "Colonel Akakievich", "id": 5234, "credit_id": "5401f5840e0a2658e60051b7", "cast_id": 22, "profile_path": "/3dydKxmunb3m7UbOlRdNIaSEEKf.jpg", "order": 15}, {"name": "Patrick Malahide", "character": "Lachaise", "id": 8979, "credit_id": "5401f5970e0a2658de0052af", "cast_id": 23, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 16}, {"name": "Omid Djalili", "character": "Foreman", "id": 41379, "credit_id": "5401f5a70e0a2658e2005269", "cast_id": 24, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 17}, {"name": "Jeff Nuttall", "character": "Dr. Arkov", "id": 102761, "credit_id": "5401f5f90e0a2658e60051bb", "cast_id": 25, "profile_path": null, "order": 18}], "directors": [{"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe45fc9251416c910452cb", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.0, "runtime": 128}, "326359": {"poster_path": "/lKJiVPzsAO9IJ4LKWXZ8vkR2bg4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On Anna's birthday, Elsa and Kristoff are determined to give her the best celebration ever, but Elsa's icy powers may put more than just the party at risk.", "video": false, "id": 326359, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}], "title": "Frozen Fever", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Post Production", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt4007502", "adult": false, "backdrop_path": "/aC73wIEQhmgBefBngW9iSnTSAbp.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2015-03-13", "popularity": 0.873861406398035, "original_title": "Frozen Fever", "budget": 0, "cast": [{"name": "Kristen Bell", "character": "Anna (voice)", "id": 40462, "credit_id": "54e7501792514126ae000a2a", "cast_id": 0, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Idina Menzel", "character": "Elsa (voice)", "id": 19394, "credit_id": "54e7502592514110f6001079", "cast_id": 1, "profile_path": "/h7xxQ7jVPBy5jjOsE89V3LSAkns.jpg", "order": 2}, {"name": "Jonathan Groff", "character": "Kristoff (voice)", "id": 221611, "credit_id": "54e75039c3a3685af7001ae9", "cast_id": 2, "profile_path": "/iGQSz9GIWQ88jS9OZeF78wVwXtR.jpg", "order": 3}, {"name": "Josh Gad", "character": "Olaf (voice)", "id": 54415, "credit_id": "54e750449251416f490018a0", "cast_id": 3, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 4}, {"name": "Chris Williams", "character": "Oaken (voice)", "id": 70238, "credit_id": "550d7e92c3a368487d005e40", "cast_id": 6, "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "order": 5}, {"name": "Paul Briggs", "character": "Marshmallow (voice)", "id": 1340669, "credit_id": "550d7ea3925141469c005ac1", "cast_id": 7, "profile_path": "/vccGfQWvG6nBaMD080uDS4Vaj26.jpg", "order": 6}], "directors": [{"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "54e75064c3a3685b0000164d", "profile_path": null, "id": 15774}, {"name": "Jennifer Lee", "department": "Directing", "job": "Director", "credit_id": "54e7507a92514110f600107e", "profile_path": "/9BkQnsppXFWcNSRGo4GJ6QNq313.jpg", "id": 1120694}], "vote_average": 7.0, "runtime": 7}, "88794": {"poster_path": "/upACO9i21lb5lG7ovf51m3lIPcv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37258650, "overview": "As the face of law enforcement in America for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career and his life.", "video": false, "id": 88794, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "J. Edgar", "tagline": "The Most Powerful Man in the World", "vote_count": 184, "homepage": "http://jedgarmovie.warnerbros.com/dvd/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1616195", "adult": false, "backdrop_path": "/dqaUwCBK2Omdy5RRzTk6oBrP18p.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Malpaso Productions", "id": 171}, {"name": "Wintergreen Productions", "id": 11845}], "release_date": "2011-11-09", "popularity": 0.995130221178806, "original_title": "J. Edgar", "budget": 35000000, "cast": [{"name": "Leonardo DiCaprio", "character": "J. Edgar Hoover", "id": 6193, "credit_id": "52fe4a039251416c910c04d9", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Geoff Pierson", "character": "Mitchell Palmer", "id": 25879, "credit_id": "52fe4a039251416c910c04e3", "cast_id": 5, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 1}, {"name": "Naomi Watts", "character": "Helen Gandy", "id": 3489, "credit_id": "52fe4a039251416c910c04e7", "cast_id": 6, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 2}, {"name": "Josh Hamilton", "character": "Robert Irwin", "id": 52419, "credit_id": "52fe4a039251416c910c04eb", "cast_id": 7, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 3}, {"name": "Judi Dench", "character": "Anna Marie Hoover", "id": 5309, "credit_id": "52fe4a039251416c910c04ef", "cast_id": 8, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Gunner Wright", "character": "Dwight Eisenhower", "id": 113231, "credit_id": "52fe4a039251416c910c04f9", "cast_id": 10, "profile_path": "/4GoIrUIbioXEgoDuctyzyzxmReP.jpg", "order": 5}, {"name": "Kaitlyn Dever", "character": "Palmer's Daughter", "id": 481337, "credit_id": "52fe4a039251416c910c04fd", "cast_id": 11, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 6}, {"name": "Adam Driver", "character": "Walter Lyle", "id": 1023139, "credit_id": "52fe4a039251416c910c0501", "cast_id": 12, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 7}, {"name": "Armie Hammer", "character": "Clyde Tolson", "id": 53807, "credit_id": "52fe4a039251416c910c0505", "cast_id": 13, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 8}, {"name": "Ed Westwick", "character": "Agent Smith", "id": 21662, "credit_id": "52fe4a039251416c910c0509", "cast_id": 14, "profile_path": "/as5iYeI7C6FygvJ9LJebWEiz0y7.jpg", "order": 9}, {"name": "Jessica Hecht", "character": "Emma Goldman", "id": 14984, "credit_id": "52fe4a039251416c910c050d", "cast_id": 15, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 10}, {"name": "Josh Lucas", "character": "Charles Lindbergh", "id": 6164, "credit_id": "52fe4a039251416c910c0547", "cast_id": 26, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 11}, {"name": "Dermot Mulroney", "character": "Colonel Schwarzkopf", "id": 20212, "credit_id": "52fe4a039251416c910c054b", "cast_id": 27, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 12}, {"name": "Denis O'Hare", "character": "Albert Osborne", "id": 81681, "credit_id": "52fe4a039251416c910c054f", "cast_id": 28, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 13}, {"name": "Lea Thompson", "character": "Lela Rogers", "id": 1063, "credit_id": "52fe4a039251416c910c0553", "cast_id": 29, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 14}, {"name": "Sadie Calvano", "character": "Edgar's Niece", "id": 1258702, "credit_id": "54200ddcc3a3687985001f66", "cast_id": 31, "profile_path": "/sjtMD4t8O09Our3kz2CUepL1f6M.jpg", "order": 15}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4a039251416c910c04df", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 5.8, "runtime": 137}, "6877": {"poster_path": "/sJUEp6HGFitc3Ai2ZnaSJEGy96T.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88715192, "overview": "Tripp, an attractive man in his thirties, is still living with his parents Al and Sue. Tripp's best friends Demo and Ace are also still living in their parents' homes and seem proud of it. Al and Sue are not happy, however, and are fascinated when friends whose adult son has recently moved away from home reveal they hired an expert to arrange the matter and couldn't be happier with the result.", "video": false, "id": 6877, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Failure to Launch", "tagline": "To leave the nest, some men just need a little push.", "vote_count": 92, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427229", "adult": false, "backdrop_path": "/hH4DgWuT8wsENtm1n3wzcUkpeoC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2006-03-10", "popularity": 0.979599222557457, "original_title": "Failure to Launch", "budget": 50000000, "cast": [{"name": "Matthew McConaughey", "character": "Tripp", "id": 10297, "credit_id": "52fe4466c3a36847f8093c6d", "cast_id": 4, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Sarah Jessica Parker", "character": "Paula", "id": 520, "credit_id": "52fe4466c3a36847f8093c71", "cast_id": 5, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Kit", "id": 11664, "credit_id": "52fe4466c3a36847f8093c75", "cast_id": 6, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Ace", "id": 21180, "credit_id": "52fe4466c3a36847f8093c79", "cast_id": 7, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Bradley Cooper", "character": "Demo", "id": 51329, "credit_id": "52fe4466c3a36847f8093c7d", "cast_id": 8, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 4}, {"name": "Terry Bradshaw", "character": "Al", "id": 51330, "credit_id": "52fe4466c3a36847f8093c81", "cast_id": 9, "profile_path": "/oMUyNy9hbeYacBrLVbY4LhW4KAw.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Sue", "id": 8534, "credit_id": "52fe4466c3a36847f8093c85", "cast_id": 10, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "Tyrel Jackson Williams", "character": "Jeffrey", "id": 51331, "credit_id": "52fe4466c3a36847f8093c89", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Katheryn Winnick", "character": "Melissa", "id": 26723, "credit_id": "52fe4466c3a36847f8093c8d", "cast_id": 12, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 8}, {"name": "Patton Oswalt", "character": "Techie Guy", "id": 10872, "credit_id": "52fe4466c3a36847f8093c91", "cast_id": 14, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 9}, {"name": "Rob Corddry", "character": "Gun Salesman", "id": 52997, "credit_id": "52fe4466c3a36847f8093cb3", "cast_id": 20, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 10}, {"name": "Stephen Tobolowsky", "character": "Bud", "id": 537, "credit_id": "5504d277c3a3682529001a66", "cast_id": 21, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 11}], "directors": [{"name": "Tom Dey", "department": "Directing", "job": "Director", "credit_id": "52fe4466c3a36847f8093c5d", "profile_path": "/7YmdGtMlVmxwky3hWcDOPTZ5rv3.jpg", "id": 46076}], "vote_average": 5.4, "runtime": 97}, "20533": {"poster_path": "/vz6nzozaX12hUAUEQE4DdVsbCGx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10539000, "overview": "Gunsliger Jonah Hex (Josh Brolin) is appointed by President Ulysses Grant to track down terrorist Quentin Turnbull (John Malkovich), a former Confederate officer determined on unleashing hell on earth. Jonah not only secures freedom by accepting this task, he also gets revenge on the man who slayed his wife and child. Megan Fox plays a prostitute as well as Jonah Hex's love interst in the film.", "video": false, "id": 20533, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "Jonah Hex", "tagline": "Revenge gets ugly.", "vote_count": 129, "homepage": "http://jonah-hex.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1075747", "adult": false, "backdrop_path": "/i8gJF3ERZphPTHMYw8N4dWd68o8.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Legendary Pictures", "id": 923}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Mad Chance", "id": 1757}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2010-06-18", "popularity": 0.912779064033386, "original_title": "Jonah Hex", "budget": 47000000, "cast": [{"name": "Megan Fox", "character": "Leila", "id": 19537, "credit_id": "52fe43ebc3a368484e006015", "cast_id": 1, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Jonah Hex", "id": 16851, "credit_id": "52fe43ebc3a368484e006019", "cast_id": 2, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "John Malkovich", "character": "Turnbull", "id": 6949, "credit_id": "52fe43ebc3a368484e00601d", "cast_id": 3, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Michael Shannon", "character": "Doc Cross Williams", "id": 335, "credit_id": "52fe43ebc3a368484e006021", "cast_id": 4, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 3}, {"name": "Michael Fassbender", "character": "Burke", "id": 17288, "credit_id": "52fe43ebc3a368484e006025", "cast_id": 5, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 4}, {"name": "Brandi Coleman", "character": "Olean", "id": 86271, "credit_id": "52fe43ebc3a368484e006029", "cast_id": 6, "profile_path": "/zGxT5vYR90UGUtob2iNxkOQeHqx.jpg", "order": 5}, {"name": "David Jensen", "character": "Turnbull's Guard", "id": 60875, "credit_id": "52fe43ebc3a368484e00602d", "cast_id": 7, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 6}, {"name": "Natacha Itzel", "character": "Jonah's Wife", "id": 86272, "credit_id": "52fe43ebc3a368484e006031", "cast_id": 8, "profile_path": "/5sSsXEsAa6WVnGzyHoLhtGwI7WY.jpg", "order": 7}, {"name": "John Gallagher Jr.", "character": "Second Lt. Evan", "id": 17487, "credit_id": "52fe43ebc3a368484e006035", "cast_id": 9, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 8}, {"name": "Lisa Rotondi", "character": "The Lovely Prostitute", "id": 86273, "credit_id": "52fe43ebc3a368484e006039", "cast_id": 10, "profile_path": "/jDVmNj6WdJN4yn3saxm9dxE35B8.jpg", "order": 9}, {"name": "Michael Arnona", "character": "Train Engineer", "id": 86274, "credit_id": "52fe43ebc3a368484e00603d", "cast_id": 11, "profile_path": "/Ab5M4nndSLpITCm8TJ1xPbquZFJ.jpg", "order": 10}, {"name": "Veronica Russell", "character": "Red Haired Prostitute", "id": 86275, "credit_id": "52fe43ebc3a368484e006041", "cast_id": 12, "profile_path": "/9tDrawBPDjaOQqdPb5DoIVjMMjD.jpg", "order": 11}, {"name": "Sean Boyd", "character": "The Preacher", "id": 86276, "credit_id": "52fe43ebc3a368484e006045", "cast_id": 13, "profile_path": "/jeQ4xtuMpX4cPzPSE6iNwa7qLOG.jpg", "order": 12}, {"name": "Danny Cosmo", "character": "Grimey Local", "id": 86278, "credit_id": "52fe43ebc3a368484e006049", "cast_id": 15, "profile_path": "/fP7gwFDo6xEP5tY3rbfbtXkrid1.jpg", "order": 14}, {"name": "Sean M. Sellers", "character": "Turnbull Man", "id": 86279, "credit_id": "52fe43ebc3a368484e00604d", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Will Arnett", "character": "Lieutenant Grass", "id": 21200, "credit_id": "52fe43ebc3a368484e006075", "cast_id": 23, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 16}, {"name": "Alexander Asefa", "character": "Peasant", "id": 1025647, "credit_id": "52fe43ebc3a368484e006079", "cast_id": 24, "profile_path": "/fxrz9gOX1YqD3vCuBXu09mukQUT.jpg", "order": 17}, {"name": "Billy Blair", "character": "Billy", "id": 968889, "credit_id": "54466ce6c3a368277b002631", "cast_id": 49, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 18}], "directors": [{"name": "Jimmy Hayward", "department": "Directing", "job": "Director", "credit_id": "52fe43ebc3a368484e006053", "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "id": 8029}], "vote_average": 4.7, "runtime": 80}, "244458": {"poster_path": "/lmnPpYkSFsuAxnO6WJhQOlVZCA0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jerry (Ryan Reynolds) is that chipper guy clocking the nine-to-five at a bathtub factory, with the offbeat charm of anyone who could use a few friends. With the help of his court-appointed psychiatrist, he pursues his office crush (Gemma Arterton). However, the relationship takes a sudden, murderous turn after she stands him up for a date. Guided by his evil talking cat and benevolent talking dog, Jerry must decide whether to keep striving for normalcy, or indulge in a much more sinister path.", "video": false, "id": 244458, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Voices", "tagline": "Hearing voices can be murder.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1567437", "adult": false, "backdrop_path": "/3KiBuEKLBAQSyBbWbYXiKK0RXDS.jpg", "production_companies": [{"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Mandalay Vision", "id": 6667}, {"name": "Studio Babelsberg", "id": 264}], "release_date": "2014-01-19", "popularity": 1.72772412505608, "original_title": "The Voices", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Jerry / Mr. Whiskers (voice) / Bosco (voice) / Deer (voice) / Bunny Monkey (voice)", "id": 10859, "credit_id": "52fe4ef1c3a36847f82b26cf", "cast_id": 7, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Fiona", "id": 59620, "credit_id": "52fe4ef1c3a36847f82b26d3", "cast_id": 8, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Lisa", "id": 84223, "credit_id": "52fe4ef1c3a36847f82b26d7", "cast_id": 9, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Jacki Weaver", "character": "Dr. Warren", "id": 67837, "credit_id": "52fe4ef1c3a36847f82b26db", "cast_id": 10, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 3}, {"name": "Ella Smith", "character": "Alison", "id": 118036, "credit_id": "54d5845dc3a3683ba000105d", "cast_id": 11, "profile_path": "/sEjXwPmTi3jRjoGMJJjBmvdKC6X.jpg", "order": 4}, {"name": "Paul Chahidi", "character": "Dennis Kowalski", "id": 75074, "credit_id": "54d58474c3a368439a000c7b", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Stanley Townsend", "character": "Sheriff Weinbacher", "id": 25074, "credit_id": "54d584899251416b9f000f08", "cast_id": 13, "profile_path": "/nZZWcRY77Cc01E4bWJhHUyHOJhZ.jpg", "order": 6}, {"name": "Adi Shankar", "character": "John", "id": 1046154, "credit_id": "54d584969251415f75000bee", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Sam Spruell", "character": "Dave", "id": 55585, "credit_id": "54d584a3c3a3683b95000ec3", "cast_id": 15, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 8}, {"name": "Valerie Koch", "character": "Jerry's Mother", "id": 52666, "credit_id": "54d584b19251416b93000e66", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Gulliver McGrath", "character": "Jerry (12 years old)", "id": 234983, "credit_id": "54d584c7c3a3683ba0001078", "cast_id": 17, "profile_path": "/jpDJNQtrtHMPqpssxd8RudVhn5x.jpg", "order": 10}, {"name": "Paul Brightwell", "character": "Jerry's Stepfather", "id": 1256066, "credit_id": "54d584d8c3a3683ba000107c", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Alessa Kordeck", "character": "Sheryl", "id": 1424051, "credit_id": "54d584e69251416b93000e70", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Michael Pink", "character": "Jesus", "id": 48151, "credit_id": "54d584f69251416ba8000e39", "cast_id": 20, "profile_path": null, "order": 13}], "directors": [{"name": "Marjane Satrapi", "department": "Directing", "job": "Director", "credit_id": "52fe4ef1c3a36847f82b26ad", "profile_path": "/zkUWH6rO4TC8Jb8IhSo2QyDN3Ty.jpg", "id": 20659}], "vote_average": 6.0, "runtime": 101}, "72431": {"poster_path": "/Atq5js5fbsu5EXubZRizWaSXoBJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.", "video": false, "id": 72431, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Red Tails", "tagline": "High-Octane Action and Daring Dogfights!", "vote_count": 77, "homepage": "http://www.redtails2012.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0485985", "adult": false, "backdrop_path": "/3qAM6vvbf6RXR9pLL9yUwHvhEA3.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Partnership Pictures", "id": 22883}, {"name": "Lucasfilm Ltd.", "id": 535}], "release_date": "2012-01-20", "popularity": 0.474968198424859, "original_title": "Red Tails", "budget": 58000000, "cast": [{"name": "Bryan Cranston", "character": "Colonel William Mortamus", "id": 17419, "credit_id": "52fe486bc3a368484e0f786d", "cast_id": 2, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 0}, {"name": "David Oyelowo", "character": "Joe 'Lightning' Little", "id": 35013, "credit_id": "52fe486bc3a368484e0f7871", "cast_id": 3, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 1}, {"name": "Cuba Gooding Jr.", "character": "Major Emanuelle Stance", "id": 9777, "credit_id": "52fe486bc3a368484e0f7875", "cast_id": 4, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 2}, {"name": "Daniela Ruah", "character": "Sofia", "id": 221019, "credit_id": "52fe486bc3a368484e0f7879", "cast_id": 5, "profile_path": "/yKgVFpXptMnLgdkH7ivDPBooqXn.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Col. A.J. Bullard", "id": 18288, "credit_id": "52fe486bc3a368484e0f787d", "cast_id": 6, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Andre Royo", "character": "Antwan 'Coffee' Coleman", "id": 74957, "credit_id": "52fe486bc3a368484e0f7881", "cast_id": 7, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 5}, {"name": "Robert Kazinsky", "character": "Chester", "id": 1038379, "credit_id": "52fe486bc3a368484e0f7885", "cast_id": 8, "profile_path": "/h54Qs5LK19NT2ZA2ysRzjjnuODH.jpg", "order": 6}, {"name": "Lee Tergesen", "character": "Colonel Jack Tomlinson", "id": 6906, "credit_id": "5323ffc4c3a3683dbf000526", "cast_id": 11, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 7}, {"name": "Matthew Leitch", "character": "Lt. David Long", "id": 141770, "credit_id": "53d7247d0e0a260334000c1b", "cast_id": 20, "profile_path": "/94OPadjJLEp4FzeXndx24mUyF0o.jpg", "order": 8}], "directors": [{"name": "Anthony Hemingway", "department": "Directing", "job": "Director", "credit_id": "5330213bc3a3685fac006561", "profile_path": "/hQXmrbAyybOvEflrRX4uLAz9pIS.jpg", "id": 1216147}], "vote_average": 6.2, "runtime": 125}, "15092": {"poster_path": "/6WLcJkIwyycyUDDfZ5VWU1TcLwF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29953858, "overview": "Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.", "video": false, "id": 15092, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Crank: High Voltage", "tagline": "He was dead...But he got better", "vote_count": 298, "homepage": "http://www.crank2.com/", "belongs_to_collection": {"backdrop_path": "/nHq1qCXy4QKM1BaPG1PbWOcFEcg.jpg", "poster_path": "/wmUzRqcAi0KOW7sqnaAvEQtM8l.jpg", "id": 64751, "name": "Crank Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1121931", "adult": false, "backdrop_path": "/yr9ZWlNyR8Yz43q5gv2YZPt4Bbw.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Radical Media", "id": 11152}], "release_date": "2009-04-16", "popularity": 1.27808409419835, "original_title": "Crank: High Voltage", "budget": 20000000, "cast": [{"name": "Jason Statham", "character": "Chev Chelios", "id": 976, "credit_id": "52fe46389251416c7507132b", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Amy Smart", "character": "Eve", "id": 20189, "credit_id": "52fe46389251416c7507132f", "cast_id": 2, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Bai Ling", "character": "Ria", "id": 39126, "credit_id": "52fe46389251416c75071333", "cast_id": 3, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 2}, {"name": "Corey Haim", "character": "Randy", "id": 17444, "credit_id": "52fe46389251416c75071337", "cast_id": 4, "profile_path": "/viodPG7i2x0cJHGVHRVs6C8pIrE.jpg", "order": 3}, {"name": "Dwight Yoakam", "character": "Doc Miles", "id": 20309, "credit_id": "52fe46389251416c7507133b", "cast_id": 5, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 4}, {"name": "Glenn Howerton", "character": "Doctor", "id": 77870, "credit_id": "52fe46389251416c7507133f", "cast_id": 6, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 5}, {"name": "Jenna Haze", "character": "Pornstar on Strike", "id": 54725, "credit_id": "52fe46389251416c7507135b", "cast_id": 11, "profile_path": "/zhCjA1ldivu2yO7C6BwUowBd6bC.jpg", "order": 6}, {"name": "Efren Ramirez", "character": "Venus", "id": 20190, "credit_id": "52fe46389251416c7507135f", "cast_id": 12, "profile_path": "/6VqjTlLm469PDyNbATyqyuSvIw0.jpg", "order": 7}, {"name": "Julanne Chidi Hill", "character": "Dark Chocolate", "id": 168974, "credit_id": "52fe46389251416c75071363", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Jose Pablo Cantillo", "character": "Ricky Verona", "id": 20191, "credit_id": "52fe46389251416c75071367", "cast_id": 14, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 9}, {"name": "Reno Wilson", "character": "Orlando", "id": 117187, "credit_id": "52fe46389251416c7507136b", "cast_id": 15, "profile_path": "/xrxGdoGcF3p79NlWHEFvmj2eyx1.jpg", "order": 10}, {"name": "Keone Young", "character": "Don Kim", "id": 91387, "credit_id": "52fe46389251416c7507136f", "cast_id": 16, "profile_path": "/bzJWn4q0Vt6l5zZ33Q0dtB77g4S.jpg", "order": 11}, {"name": "Art Hsu", "character": "Johnny Vang", "id": 590820, "credit_id": "52fe46389251416c75071373", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Joseph Julian Soria", "character": "Chico", "id": 73127, "credit_id": "52fe46389251416c75071377", "cast_id": 18, "profile_path": "/q86EirhxSYY3RGtlR0tOXIBwFUx.jpg", "order": 13}, {"name": "Clifton Collins, Jr.", "character": "El Huron", "id": 5365, "credit_id": "52fe46389251416c7507137b", "cast_id": 19, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 14}, {"name": "David Carradine", "character": "Poon Dong", "id": 141, "credit_id": "52fe46389251416c7507137f", "cast_id": 20, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 15}, {"name": "Geri Halliwell", "character": "Karen Chelios", "id": 47987, "credit_id": "52fe46389251416c75071383", "cast_id": 21, "profile_path": "/thyQB6JVyengXacMX5iyi8kYt0q.jpg", "order": 16}, {"name": "Yeva-Genevieve Lavlinski", "character": "Pepper", "id": 1284345, "credit_id": "52fe46389251416c750713b1", "cast_id": 29, "profile_path": "/iEhikuzsKHQFTboBqXPMxS6a45.jpg", "order": 17}, {"name": "Nick Manning", "character": "Male Porn Star", "id": 132093, "credit_id": "54451b2e0e0a266333007d37", "cast_id": 30, "profile_path": "/tegkgXpY7BtzpFn29qpjOCrZTYU.jpg", "order": 18}], "directors": [{"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe46389251416c75071345", "profile_path": null, "id": 20193}, {"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe46389251416c7507134b", "profile_path": null, "id": 20192}], "vote_average": 5.8, "runtime": 96}, "59860": {"poster_path": "/sXgh0TTEsJdK1Z390W6beu5tMNu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17425000, "overview": "Three young women vacationing in Paris find themselves whisked away to Monte Carlo after one of the girls is mistaken for a British heiress.", "video": false, "id": 59860, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Monte Carlo", "tagline": "", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1067774", "adult": false, "backdrop_path": "/6zud4RXjAEp23Hq1cfOiqDLg1Oy.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2011-07-01", "popularity": 0.516090226934509, "original_title": "Monte Carlo", "budget": 20000000, "cast": [{"name": "Selena Gomez", "character": "Grace", "id": 77948, "credit_id": "52fe499dc3a36847f81a3adb", "cast_id": 2, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Katie Cassidy", "character": "Emma", "id": 55775, "credit_id": "52fe499dc3a36847f81a3adf", "cast_id": 3, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 1}, {"name": "Cory Monteith", "character": "Owen", "id": 33352, "credit_id": "52fe499dc3a36847f81a3ae3", "cast_id": 4, "profile_path": "/oaz0CoWbU5h0rasU6MFdtqyIMzb.jpg", "order": 2}, {"name": "Leighton Meester", "character": "Meg", "id": 85825, "credit_id": "52fe499dc3a36847f81a3ae7", "cast_id": 5, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 3}, {"name": "Andie MacDowell", "character": "", "id": 1533, "credit_id": "52fe499dc3a36847f81a3aeb", "cast_id": 6, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 4}], "directors": [{"name": "Thomas Bezucha", "department": "Directing", "job": "Director", "credit_id": "52fe499dc3a36847f81a3ad7", "profile_path": "/kEoJG7HI8RMGUr3ubRvgwfARzL0.jpg", "id": 56789}], "vote_average": 6.1, "runtime": 109}, "97020": {"poster_path": "/hFQcC5eSSHqJfk70RdgrMMxGuYt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 239379423, "overview": "In RoboCop, the year is 2028 and multinational conglomerate OmniCorp is at the center of robot technology. Overseas, their drones have been used by the military for years, but have been forbidden for law enforcement in America. Now OmniCorp wants to bring their controversial technology to the home front, and they see a golden opportunity to do it. When Alex Murphy (Joel Kinnaman) \u2013 a loving husband, father and good cop doing his best to stem the tide of crime and corruption in Detroit \u2013 is critically injured, OmniCorp sees their chance to build a part-man, part-robot police officer. OmniCorp envisions a RoboCop in every city and even more billions for their shareholders, but they never counted on one thing: there is still a man inside the machine.", "video": false, "id": 97020, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "RoboCop", "tagline": "We've got the future under control.", "vote_count": 904, "homepage": "http://www.robocop.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1234721", "adult": false, "backdrop_path": "/zkBSu5jNI9YrAGvvy8cAAc7BZX5.jpg", "production_companies": [{"name": "Strike Entertainment", "id": 655}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2014-02-07", "popularity": 2.41085175501487, "original_title": "RoboCop", "budget": 120000000, "cast": [{"name": "Joel Kinnaman", "character": "RoboCop", "id": 92404, "credit_id": "52fe49cd9251416c750d3c55", "cast_id": 7, "profile_path": "/kn3AcrSxa0ApgQVcjQ8m6YsWVq.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Norton", "id": 64, "credit_id": "52fe49cd9251416c750d3c59", "cast_id": 8, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Michael Keaton", "character": "Raymond Sellars", "id": 2232, "credit_id": "52fe49cd9251416c750d3c5d", "cast_id": 9, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 2}, {"name": "Abbie Cornish", "character": "Ellen Murphy", "id": 37260, "credit_id": "52fe49cd9251416c750d3c69", "cast_id": 12, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 3}, {"name": "Jackie Earle Haley", "character": "Maddox", "id": 17183, "credit_id": "52fe49cd9251416c750d3c6d", "cast_id": 13, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 4}, {"name": "Michael Kenneth Williams", "character": "Jack Lewis", "id": 39390, "credit_id": "536d48a10e0a2647d800e2e8", "cast_id": 22, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 5}, {"name": "Jennifer Ehle", "character": "Liz Kline", "id": 49971, "credit_id": "52fe49cd9251416c750d3c71", "cast_id": 14, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 6}, {"name": "Jay Baruchel", "character": "Pope", "id": 449, "credit_id": "52fe49cd9251416c750d3c65", "cast_id": 11, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 7}, {"name": "Marianne Jean-Baptiste", "character": "Karen Dean", "id": 17352, "credit_id": "52fe49cd9251416c750d3c75", "cast_id": 15, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 8}, {"name": "Samuel L. Jackson", "character": "Pat Novak", "id": 2231, "credit_id": "52fe49cd9251416c750d3c61", "cast_id": 10, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 9}, {"name": "Aimee Garcia", "character": "Kim", "id": 56457, "credit_id": "52fe49cd9251416c750d3c95", "cast_id": 21, "profile_path": "/lkXrwXShVpGhSTxGunNwJkkO84l.jpg", "order": 10}, {"name": "Douglas Urbanski", "character": "Mayor Durant", "id": 113526, "credit_id": "536d48f00e0a2647c400e4ba", "cast_id": 23, "profile_path": "/pISbMb3NbOb6meKgl4GrKLp7hUo.jpg", "order": 11}, {"name": "John Paul Ruttan", "character": "David Murphy", "id": 1154244, "credit_id": "536d4a090e0a2647c800e723", "cast_id": 24, "profile_path": "/zt8R71Ec4WqHxLUNgVYfiJlXtbm.jpg", "order": 12}, {"name": "Patrick Garrow", "character": "Antoine Vallon", "id": 190961, "credit_id": "536d4b160e0a2647ce00dcd0", "cast_id": 25, "profile_path": "/4jcTiet490Nd6A3VvyAkt6oAWoi.jpg", "order": 13}, {"name": "K. C. Collins", "character": "Andre Daniels", "id": 74278, "credit_id": "536d6de4c3a368122600bc2b", "cast_id": 28, "profile_path": "/7GRgZGqTZ2e1j2FZLJWND75a4My.jpg", "order": 14}, {"name": "WBBrown II", "character": "AC Freeman", "id": 1096272, "credit_id": "52fe49cd9251416c750d3c79", "cast_id": 16, "profile_path": "/98Zav9HRIlYydLBnEgmNYchhC9a.jpg", "order": 15}], "directors": [{"name": "Jos\u00e9 Padilha", "department": "Directing", "job": "Director", "credit_id": "52fe49cd9251416c750d3c33", "profile_path": "/856kyjsiBGksnzpNHgxkkcd0TZr.jpg", "id": 52576}], "vote_average": 5.9, "runtime": 102}, "7978": {"poster_path": "/lKa0Bu8aKNJcEzxvRHM6BN3o5ml.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This werewolf-themed horror film set in Victorian England centers on Lawrence Talbot, an American man who, upon a visit to London, gets bitten by a werewolf. Talbot had come to England to make amends with his estranged father, but after a moonlight transformation leaves him with a savage hunger for flesh, family harmony is the least of his worries.", "video": false, "id": 7978, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Wolfman", "tagline": "When the moon is full the legend comes to life", "vote_count": 136, "homepage": "http://www.thewolfmanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780653", "adult": false, "backdrop_path": "/kUXciLXDo2Igxw9PDPhXWIDkA5E.jpg", "production_companies": [{"name": "Stuber Productions", "id": 4403}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}], "release_date": "2010-02-11", "popularity": 0.320658229007024, "original_title": "The Wolfman", "budget": 150000000, "cast": [{"name": "Benicio del Toro", "character": "Lawrence Talbot", "id": 1121, "credit_id": "52fe448ac3a36847f809bd6d", "cast_id": 3, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Sir John Talbot", "id": 4173, "credit_id": "52fe448ac3a36847f809bd69", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Gwen Conliffe", "id": 5081, "credit_id": "52fe448ac3a36847f809bd83", "cast_id": 7, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Inspector Francis Abberline", "id": 1331, "credit_id": "52fe448ac3a36847f809bd87", "cast_id": 8, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Cristina Contes", "character": "Solana Talbot", "id": 119684, "credit_id": "52fe448ac3a36847f809bd8b", "cast_id": 9, "profile_path": "/3UImAupAsNarYvOIXsbzTeQAsbU.jpg", "order": 4}, {"name": "David Sterne", "character": "Kirk", "id": 117654, "credit_id": "52fe448ac3a36847f809bd8f", "cast_id": 10, "profile_path": "/vZaOmbLpbh3rbDa3CGoj7cBkotI.jpg", "order": 5}, {"name": "Elizabeth Croft", "character": "Ophelia", "id": 119685, "credit_id": "52fe448ac3a36847f809bd9f", "cast_id": 13, "profile_path": "/4lV9DkzSJt55BGSe1M2XfBJn7cP.jpg", "order": 6}, {"name": "Simon Merrells", "character": "Ben Talbot", "id": 119687, "credit_id": "52fe448ac3a36847f809bda3", "cast_id": 15, "profile_path": "/xg2s7DU3IHzZ2egTmooRaIUTZGD.jpg", "order": 7}, {"name": "Art Malik", "character": "Singh", "id": 10672, "credit_id": "52fe448ac3a36847f809bda7", "cast_id": 16, "profile_path": "/dJ8isTdH4hLfQHDEJu7DQYdfeIz.jpg", "order": 8}, {"name": "Asa Butterfield", "character": "Young Ben", "id": 77996, "credit_id": "52fe448ac3a36847f809bdab", "cast_id": 18, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 9}, {"name": "Geraldine Chaplin", "character": "Maleva", "id": 400, "credit_id": "52fe448ac3a36847f809bdaf", "cast_id": 19, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 10}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe448ac3a36847f809bd65", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 5.4, "runtime": 102}, "15121": {"poster_path": "/e06tZRg2xmqM3Q31x3Ln979dt0a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163214286, "overview": "Rodgers and Hammerstein's The Sound of Music is a 1965 American musical film directed by Robert Wise and starring Julie Andrews and Christopher Plummer. The film is based on the Broadway musical The Sound of Music, with songs written by Richard Rodgers and Oscar Hammerstein II. It was photographed in 70mm Todd-AO by Ted D. McCord. It won a total of five Academy Awards including Best Picture in 1965 and is one of the most popular musicals ever produced. The cast album was nominated for a Grammy Award for Album of the Year. Adjusted for inflation, it made $1.046 billion domestically at 2010 prices, putting it third on the list of all-time inflation-adjusted box office hits, behind Gone with the Wind and Star Wars. The movie is based on a postulant nun, Maria, who leaves her Abbey to become a Governess to a retired Austrian Naval Captain and his 7 children.", "video": false, "id": 15121, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}, {"id": 10752, "name": "War"}], "title": "The Sound of Music", "tagline": "The happiest sound in all the world!", "vote_count": 346, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0059742", "adult": false, "backdrop_path": "/weiACHVZa0lQ10cd3BhJm9d8YUF.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Robert Wise Productions", "id": 6304}, {"name": "Argyle Enterprises", "id": 6305}], "release_date": "1965-03-02", "popularity": 1.37048629822556, "original_title": "The Sound of Music", "budget": 8200000, "cast": [{"name": "Julie Andrews", "character": "Maria", "id": 5823, "credit_id": "52fe463b9251416c75071a4b", "cast_id": 1, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 0}, {"name": "Christopher Plummer", "character": "Captain Von Trapp", "id": 290, "credit_id": "52fe463b9251416c75071a4f", "cast_id": 2, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 1}, {"name": "Eleanor Parker", "character": "The Baroness", "id": 7331, "credit_id": "52fe463b9251416c75071a53", "cast_id": 3, "profile_path": "/pmauDYeIjoaGtZCy1PdY7lwXZ96.jpg", "order": 2}, {"name": "Richard Haydn", "character": "Max Detweiler", "id": 29283, "credit_id": "52fe463b9251416c75071a57", "cast_id": 4, "profile_path": "/fEUsWCS5Pd2pnarasaPIV9ksEst.jpg", "order": 3}, {"name": "Peggy Wood", "character": "Mother Abbess", "id": 77895, "credit_id": "52fe463b9251416c75071a5b", "cast_id": 5, "profile_path": "/o2DCNjwCeZEZeIFF4vGUNIQiwfz.jpg", "order": 4}, {"name": "Charmian Carr", "character": "Liesl", "id": 1041410, "credit_id": "52fe463c9251416c75071a7d", "cast_id": 11, "profile_path": "/1UJWpZE4Z7L0TJf8WDYTiB2jlS1.jpg", "order": 5}, {"name": "Anna Lee", "character": "Sister Margareta", "id": 88460, "credit_id": "52fe463c9251416c75071a81", "cast_id": 12, "profile_path": "/bOTG0vDCvANAMsGHlvJOYfBomEU.jpg", "order": 6}, {"name": "Portia Nelson", "character": "Sister Berthe", "id": 198948, "credit_id": "52fe463c9251416c75071a85", "cast_id": 13, "profile_path": "/fOhxKucuutEwKNZMvg00BuFUBsa.jpg", "order": 7}, {"name": "Heather Menzies", "character": "Louisa", "id": 92691, "credit_id": "52fe463c9251416c75071a9b", "cast_id": 17, "profile_path": "/sTBlteCkfkPL4gD3b5Vk2gH7FQ1.jpg", "order": 8}, {"name": "Nicholas Hammond", "character": "Friedrich", "id": 29095, "credit_id": "52fe463c9251416c75071a9f", "cast_id": 18, "profile_path": "/u7PRHFksaCypSKGIaEjk0Q3lYwN.jpg", "order": 9}, {"name": "Duane Chase", "character": "Kurt", "id": 1243355, "credit_id": "52fe463c9251416c75071acb", "cast_id": 32, "profile_path": "/qKAjYwI0zRP0V1vxXSfOCABK81R.jpg", "order": 10}, {"name": "Angela Cartwright", "character": "Brigitta", "id": 121640, "credit_id": "52fe463c9251416c75071aa3", "cast_id": 20, "profile_path": "/ngoU570GKnzVuq21RKdGDYq8itE.jpg", "order": 11}, {"name": "Debbie Turner", "character": "Marta", "id": 1198142, "credit_id": "52fe463c9251416c75071aa7", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Kym Kareth", "character": "Gretl", "id": 1194314, "credit_id": "52fe463c9251416c75071aab", "cast_id": 22, "profile_path": "/oTKlyl4Agb8HYYbvEiX1S40xj6X.jpg", "order": 13}, {"name": "Ben Wright", "character": "Herr Zeller", "id": 71781, "credit_id": "52fe463c9251416c75071aaf", "cast_id": 23, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 14}, {"name": "Norma Varden", "character": "Frau Schmidt", "id": 10926, "credit_id": "52fe463c9251416c75071ab3", "cast_id": 24, "profile_path": "/2Ypt67es6XciWAyihkcG2MSjUzT.jpg", "order": 15}, {"name": "Marni Nixon", "character": "Sister Sophia", "id": 187678, "credit_id": "52fe463c9251416c75071ab7", "cast_id": 27, "profile_path": "/hPWlkETSB5V7OQkixZic3QDxmwq.jpg", "order": 16}, {"name": "Evadne Baker", "character": "Sister Bernice", "id": 1198143, "credit_id": "52fe463c9251416c75071abb", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Doris Lloyd", "character": "Baroness Ebberfield", "id": 21878, "credit_id": "52fe463c9251416c75071abf", "cast_id": 29, "profile_path": "/4QJ0iSrOQ9rwfgEaDnqTaXem6c5.jpg", "order": 18}, {"name": "Gilchrist Stuart", "character": "Franz", "id": 1198144, "credit_id": "52fe463c9251416c75071ac3", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Daniel Truhitte", "character": "Rolfe", "id": 1016770, "credit_id": "52fe463c9251416c75071ac7", "cast_id": 31, "profile_path": "/16AcEJbuwTPdlS4xWWffXKgNNv0.jpg", "order": 20}], "directors": [{"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe463b9251416c75071a61", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 7.0, "runtime": 174}, "9348": {"poster_path": "/94P6kzKH8aPmQmPr9yZjgy7BtQQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.", "video": false, "id": 9348, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Species", "tagline": "Our time is up.", "vote_count": 94, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vnpcoCTZhg1EdEog1kAS0pklx1o.jpg", "poster_path": "/ksrne0PBm57edJZtvDv7fYM8lVW.jpg", "id": 9887, "name": "Species Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114508", "adult": false, "backdrop_path": "/fVXXpHfyTl7Ovk2R2gVyvHj2c4t.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1995-07-07", "popularity": 0.931837152165992, "original_title": "Species", "budget": 35000000, "cast": [{"name": "Natasha Henstridge", "character": "Sil", "id": 57395, "credit_id": "52fe44ebc3a36847f80b1d41", "cast_id": 5, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Xavier Fitch", "id": 2282, "credit_id": "52fe44ebc3a36847f80b1d31", "cast_id": 1, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Michael Madsen", "character": "Preston Lennox", "id": 147, "credit_id": "52fe44ebc3a36847f80b1d35", "cast_id": 2, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Dr. Stephen Arden", "id": 658, "credit_id": "52fe44ebc3a36847f80b1d39", "cast_id": 3, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Forest Whitaker", "character": "Dan Smithson, Empath", "id": 2178, "credit_id": "52fe44ebc3a36847f80b1d3d", "cast_id": 4, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 4}, {"name": "Michelle Williams", "character": "Young Sil", "id": 1812, "credit_id": "52fe44ebc3a36847f80b1d45", "cast_id": 6, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 5}, {"name": "Marg Helgenberger", "character": "Dr. Laura Baker", "id": 19838, "credit_id": "52fe44ebc3a36847f80b1d79", "cast_id": 16, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 6}, {"name": "Jordan Lund", "character": "Aide", "id": 33713, "credit_id": "52fe44ebc3a36847f80b1d7d", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Herta Ware", "character": "Mrs. Morris", "id": 136482, "credit_id": "52fe44ebc3a36847f80b1d81", "cast_id": 18, "profile_path": null, "order": 8}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1d6f", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.5, "runtime": 108}, "97051": {"poster_path": "/pzTQXGzj8XrGQVunHe50pQpcCY4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Desperate to help her ailing brother, a young woman agrees to compete in a deadly game of \"Would You Rather,\" hosted by a sadistic aristocrat.", "video": false, "id": 97051, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Would You Rather", "tagline": "Tell yourself it's just a game.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1999995", "adult": false, "backdrop_path": "/6x2WjNkHTOPuRs7bKbtYjk8qsG8.jpg", "production_companies": [{"name": "Periscope Entertainment", "id": 4917}, {"name": "Social Construct", "id": 20319}, {"name": "Dreamher Productions", "id": 23857}, {"name": "Lambrick Foundation, The", "id": 23858}], "release_date": "2012-10-14", "popularity": 0.203901299876479, "original_title": "Would You Rather", "budget": 0, "cast": [{"name": "Brittany Snow", "character": "Iris", "id": 29221, "credit_id": "52fe49cf9251416c750d4143", "cast_id": 4, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 0}, {"name": "Jeffrey Combs", "character": "Shepard Lambrick", "id": 27993, "credit_id": "52fe49cf9251416c750d4133", "cast_id": 1, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 1}, {"name": "Jonny Coyne", "character": "Bevans", "id": 1323612, "credit_id": "53805f2b0e0a26588c002bee", "cast_id": 20, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 2}, {"name": "Sasha Grey", "character": "Amy", "id": 74251, "credit_id": "52fe49cf9251416c750d416f", "cast_id": 18, "profile_path": "/yuDlbdjZgxxSmeqQlj0Ru0zK2Sl.jpg", "order": 3}, {"name": "Lawrence Gilliard Jr.", "character": "Dr. Barden", "id": 37947, "credit_id": "52fe49cf9251416c750d416b", "cast_id": 17, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 4}, {"name": "Enver Gjokaj", "character": "Lucas", "id": 1224022, "credit_id": "52fe49cf9251416c750d4173", "cast_id": 19, "profile_path": "/xatmqOREk6e051ZgaO4VSv4HCnr.jpg", "order": 5}, {"name": "John Heard", "character": "Conway", "id": 11512, "credit_id": "52fe49cf9251416c750d414b", "cast_id": 9, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 6}, {"name": "Charlie Hofheimer", "character": "Travis", "id": 12790, "credit_id": "52fe49cf9251416c750d414f", "cast_id": 10, "profile_path": "/gXQkqXYrlAGJgXRPpOwEv0NjSgT.jpg", "order": 7}, {"name": "Eddie Steeples", "character": "Cal", "id": 202958, "credit_id": "52fe49cf9251416c750d415b", "cast_id": 13, "profile_path": "/eerNYpn8kZbG9Z4nHjo24JwxyDP.jpg", "order": 8}, {"name": "June Squibb", "character": "Linda", "id": 35515, "credit_id": "52fe49cf9251416c750d4157", "cast_id": 12, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 9}, {"name": "Robin Lord Taylor", "character": "Julian (as Robin Lord Taylor)", "id": 59262, "credit_id": "52fe49cf9251416c750d415f", "cast_id": 14, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 10}, {"name": "Robb Wells", "character": "Peter", "id": 60966, "credit_id": "52fe49cf9251416c750d4163", "cast_id": 15, "profile_path": "/dMnez0ZRY63FP8LHhG2M9iFLqhM.jpg", "order": 11}, {"name": "Logan Miller", "character": "Raleigh", "id": 116088, "credit_id": "52fe49cf9251416c750d4153", "cast_id": 11, "profile_path": "/4KGktClGusmqFr1b193Fair5rlK.jpg", "order": 12}, {"name": "Larry Cedar", "character": "The Driver", "id": 94304, "credit_id": "52fe49cf9251416c750d4167", "cast_id": 16, "profile_path": "/m4WnOfVhUEX82QtFHZU4qwwuflg.jpg", "order": 13}, {"name": "Ptolemy Slocum", "character": "Shift Manager", "id": 207453, "credit_id": "538060920e0a2624c00075e7", "cast_id": 21, "profile_path": "/gdqpZq8VSETKF1a1GqeWfuMp8cv.jpg", "order": 14}], "directors": [{"name": "David Guy Levy", "department": "Directing", "job": "Director", "credit_id": "52fe49cf9251416c750d4139", "profile_path": null, "id": 543842}], "vote_average": 5.8, "runtime": 93}, "244509": {"poster_path": "/1d5Loksk4nzmLyBtdHwody6sMUj.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "How can a split-second decision change your life? While investigating noises in his house one balmy Texas night in 1989, Richard Dane puts a bullet in the brain of low-life burglar Freddy Russell. Although he\u2019s hailed as a small-town hero, Dane soon finds himself fearing for his family\u2019s safety when Freddy\u2019s ex-con father, Ben, rolls into town, hell-bent on revenge.", "video": false, "id": 244509, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Cold in July", "tagline": "How many men can one bullet kill?", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179031", "adult": false, "backdrop_path": "/bT6neJ41gV1ZY8xlrsYxsh8OWJu.jpg", "production_companies": [{"name": "Bullet Pictures", "id": 36956}, {"name": "Backup Media", "id": 26590}, {"name": "Paradise City", "id": 28360}, {"name": "BSM Studio", "id": 28361}], "release_date": "2014-05-23", "popularity": 1.11124563543801, "original_title": "Cold in July", "budget": 0, "cast": [{"name": "Michael C. Hall", "character": "Richard Dane", "id": 53820, "credit_id": "52fe4ef3c3a36847f82b2beb", "cast_id": 7, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 0}, {"name": "Don Johnson", "character": "Jim Bob", "id": 25129, "credit_id": "52fe4ef3c3a36847f82b2bef", "cast_id": 8, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 1}, {"name": "Sam Shepard", "character": "Russell", "id": 9880, "credit_id": "52fe4ef3c3a36847f82b2bf3", "cast_id": 9, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 2}, {"name": "Vinessa Shaw", "character": "Ann Dane", "id": 5025, "credit_id": "52fe4ef3c3a36847f82b2bf7", "cast_id": 10, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 3}, {"name": "Nick Damici", "character": "Ray Price", "id": 67580, "credit_id": "52fe4ef3c3a36847f82b2bfb", "cast_id": 11, "profile_path": "/vkZ2H5vLITyVyl4OkYe4r8cBMrS.jpg", "order": 4}, {"name": "Wyatt Russell", "character": "Freddy", "id": 986808, "credit_id": "52fe4ef3c3a36847f82b2bff", "cast_id": 12, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 5}, {"name": "Lanny Flaherty", "character": "Jack Crow", "id": 3204, "credit_id": "543024fb0e0a26464c000acb", "cast_id": 19, "profile_path": "/tu6UZVHRKRNLbtmHUsjHWHctprz.jpg", "order": 6}, {"name": "Brianda Agramonte", "character": "la jeune fille latine sur la cassette", "id": 1370971, "credit_id": "5430259ec3a36831a9000ae7", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tim Lajcik", "character": "Mex", "id": 89344, "credit_id": "5430264b0e0a26463d000b6f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Brogan Hall", "character": "Jordan Dane", "id": 1370972, "credit_id": "5430268bc3a36831bb000b10", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Ken Holmes", "character": "un voleur", "id": 1118347, "credit_id": "543027c30e0a26464f000b90", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Rachel Zeiger-Haag", "character": "Valerie", "id": 1370983, "credit_id": "54302802c3a36831bb000b46", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Kristin Griffith", "character": "Kay", "id": 164343, "credit_id": "543028830e0a26464f000bb2", "cast_id": 25, "profile_path": "/dRQh5YUXcCVVCxTRKaIjWbKT2qo.jpg", "order": 12}, {"name": "Laurent Rejto", "character": "Perp", "id": 1084956, "credit_id": "543029230e0a26464c000b3f", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Joe Lanza", "character": "un officier", "id": 1370985, "credit_id": "5430296ec3a36831a9000b54", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Kris Eivers", "character": "un inspecteur", "id": 122250, "credit_id": "543029d50e0a264640000bff", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Happy Anderson", "character": "Ted", "id": 1370986, "credit_id": "54302a2e0e0a264646000bfe", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Joseph Anthony Jerez", "character": "l'homme gros", "id": 1370987, "credit_id": "5430311cc3a36831a9000c5e", "cast_id": 30, "profile_path": null, "order": 17}], "directors": [{"name": "Jim Mickle", "department": "Directing", "job": "Director", "credit_id": "52fe4ef2c3a36847f82b2bc9", "profile_path": null, "id": 87082}], "vote_average": 6.6, "runtime": 109}, "154400": {"poster_path": "/lj8AMCjWx0jU93XajzUEOUUNKZF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18658381, "overview": "Bob Saginowski finds himself at the center of a robbery gone awry and entwined in an investigation that digs deep into the neighborhood's past where friends, families, and foes all work together to make a living - no matter the cost.", "video": false, "id": 154400, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Drop", "tagline": "", "vote_count": 224, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1600196", "adult": false, "backdrop_path": "/zddiDFf3X97pCimAOGKh3m0PwJV.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Chernin Entertainment", "id": 7076}], "release_date": "2014-09-12", "popularity": 4.13970837607002, "original_title": "The Drop", "budget": 12600000, "cast": [{"name": "Tom Hardy", "character": "Bob", "id": 2524, "credit_id": "52fe4b5f9251416c910d855b", "cast_id": 1, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Nadia", "id": 87722, "credit_id": "52fe4b5f9251416c910d855f", "cast_id": 2, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Cousin Marv", "id": 4691, "credit_id": "52fe4b5f9251416c910d8563", "cast_id": 3, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Matthias Schoenaerts", "character": "Eric Deeds", "id": 73381, "credit_id": "52fe4b5f9251416c910d8567", "cast_id": 4, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 3}, {"name": "John Ortiz", "character": "Detective Torres", "id": 40543, "credit_id": "52fe4b5f9251416c910d856b", "cast_id": 5, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 4}, {"name": "Ann Dowd", "character": "Dottie", "id": 43366, "credit_id": "52fe4b5f9251416c910d856f", "cast_id": 6, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 5}, {"name": "James Frecheville", "character": "Fitz", "id": 968863, "credit_id": "52fe4b5f9251416c910d8573", "cast_id": 7, "profile_path": "/fdm3sOJgXVgM1yo7a5GF53mVi7I.jpg", "order": 6}, {"name": "Michael Aronov", "character": "Chovka", "id": 126686, "credit_id": "54a1e1bdc3a36851ce004425", "cast_id": 14, "profile_path": "/anTDhvjmQDVnicNsAEooAKDNjBm.jpg", "order": 8}, {"name": "Morgan Spector", "character": "Andre", "id": 937913, "credit_id": "54a1e1c99251411d53008014", "cast_id": 15, "profile_path": "/idWtVvI0GBcpdSNBcHp2JYxOGxi.jpg", "order": 9}, {"name": "Michael Esper", "character": "Rardy", "id": 6183, "credit_id": "54a1e1d6c3a3680b2700bc4d", "cast_id": 16, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 10}, {"name": "Ross Bickell", "character": "Father Regan", "id": 67784, "credit_id": "54a1e1ea9251412127004712", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Tobias Segal", "character": "Briele", "id": 187919, "credit_id": "54a1e1f89251414d2700852c", "cast_id": 18, "profile_path": "/kn1zn5VdjhRWcanQgSWPFs8dolE.jpg", "order": 12}, {"name": "Patricia Squire", "character": "Millie", "id": 1405915, "credit_id": "54a1e204c3a3680b2700bc58", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Chris Sullivan", "character": "Jimmy", "id": 1091347, "credit_id": "54a1e2199251414d27008531", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Lucas Caleb Rooney", "character": "Paul", "id": 112264, "credit_id": "54a1e224c3a3680b2700bc5d", "cast_id": 21, "profile_path": "/5xBBRy2tU8e4WeMxkeYEaTqflb5.jpg", "order": 15}, {"name": "Jeremy Bobb", "character": "Stevie", "id": 74961, "credit_id": "54a1e230c3a3680b2700bc60", "cast_id": 22, "profile_path": "/fhrfN6vEVwIRcuNRGhwxHlOvEif.jpg", "order": 16}, {"name": "James Colby", "character": "Sully", "id": 115975, "credit_id": "54a1e23c925141313200d521", "cast_id": 23, "profile_path": "/ys2yWvjfLJAKBQ8vZ0G3T49Y18H.jpg", "order": 17}, {"name": "Mike Houston", "character": "Donny", "id": 205128, "credit_id": "54a1e2479251411d53008017", "cast_id": 24, "profile_path": "/nqdMHdfOQuRvwzRAuHtgPKIAMwS.jpg", "order": 18}, {"name": "Michael O'Hara", "character": "Sean", "id": 1433546, "credit_id": "54f2dbec9251416b380038a1", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Scott Johnsen", "character": "Car Guy", "id": 1375162, "credit_id": "54a1e25fc3a368764f00a040", "cast_id": 26, "profile_path": "/10wpICE5Pyvy02Ensq74ZQ9a2c6.jpg", "order": 20}, {"name": "Elizabeth Rodriguez", "character": "Detective Romsey", "id": 65421, "credit_id": "550e0d7ec3a3683f390002c9", "cast_id": 37, "profile_path": "/lwJXQ7DDRY9W4pdzQzJKdeKuCFl.jpg", "order": 21}], "directors": [{"name": "Micha\u00ebl R. Roskam", "department": "Directing", "job": "Director", "credit_id": "53fd98850e0a262de200150f", "profile_path": "/3BJ6YRmntYmuSqAJNwwVPHTJNN5.jpg", "id": 236859}], "vote_average": 6.6, "runtime": 106}, "15137": {"poster_path": "/uCIKdMLppi4MjPFnxQWT2GA8W5r.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 18, "overview": "After the Second Impact, Tokyo-3 is being attacked by giant creatures called Angels that seek to eradicate humankind. The child Shinji's objective is to fight the Angels by piloting one of the mysterious Evangelion mecha units. A remake of the first six episodes of GAINAX's famous 1996 anime series.", "video": false, "id": 15137, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Evangelion: 1.0: You Are (Not) Alone", "tagline": "", "vote_count": 55, "homepage": "http://www.funimation.com/evangelion/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wTgffGYEuvYDc0oSOMdSZ254VMr.jpg", "id": 210303, "name": "Rebuild of Evangelion"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0923811", "adult": false, "backdrop_path": "/ufqKwX5bz2jXfPf6WGw7fAnuhoE.jpg", "production_companies": [{"name": "Studio Khara", "id": 4145}], "release_date": "2007-09-01", "popularity": 0.350305879805061, "original_title": "Evangerion shin gekij\u00f4ban: Jo", "budget": 0, "cast": [{"name": "Megumi Ogata", "character": "Shinji Ikari", "id": 77927, "credit_id": "52fe463d9251416c75071cb7", "cast_id": 4, "profile_path": "/cPGrKRfVzfyhfoLlxGTGUd62bSp.jpg", "order": 0}, {"name": "Megumi Hayashibara", "character": "Rei Ayanami", "id": 40325, "credit_id": "52fe463d9251416c75071cbb", "cast_id": 5, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 1}, {"name": "Kotono Mitsuishi", "character": "Misato Katsuragi", "id": 77931, "credit_id": "52fe463d9251416c75071cbf", "cast_id": 6, "profile_path": "/5yISpyXWjRlbfvPebO3iLc2s3tF.jpg", "order": 2}, {"name": "Yuriko Yamaguchi", "character": "Ritsuko Akagi", "id": 77933, "credit_id": "52fe463d9251416c75071cc3", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Fumihiko Tachiki", "character": "Gendo Ikari", "id": 77934, "credit_id": "52fe463d9251416c75071cc7", "cast_id": 8, "profile_path": null, "order": 4}], "directors": [{"name": "Kazuya Tsurumaki", "department": "Directing", "job": "Director", "credit_id": "52fe463d9251416c75071cad", "profile_path": null, "id": 77923}, {"name": "Masayuki", "department": "Directing", "job": "Director", "credit_id": "52fe463d9251416c75071cb3", "profile_path": null, "id": 77926}], "vote_average": 7.1, "runtime": 97}, "6947": {"poster_path": "/8Jr4C1bLEerDxP7NBssmO8VUek.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 256697520, "overview": "When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever in this atmospheric thriller featuring a star-studded cast.", "video": false, "id": 6947, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Village", "tagline": "There is no turning back", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368447", "adult": false, "backdrop_path": "/sWypV7T6AXwmpoSEGrmPkkSsAo0.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2004-07-26", "popularity": 0.689034631993119, "original_title": "The Village", "budget": 71682975, "cast": [{"name": "Bryce Dallas Howard", "character": "Ivy Walker", "id": 18997, "credit_id": "52fe4469c3a36847f8094821", "cast_id": 3, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Lucius Hunt", "id": 73421, "credit_id": "52fe4469c3a36847f8094825", "cast_id": 4, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "Adrien Brody", "character": "Noah Percy", "id": 3490, "credit_id": "52fe4469c3a36847f8094829", "cast_id": 5, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 2}, {"name": "William Hurt", "character": "Edward Walker", "id": 227, "credit_id": "52fe4469c3a36847f809482d", "cast_id": 6, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Sigourney Weaver", "character": "Alice Hunt", "id": 10205, "credit_id": "52fe4469c3a36847f8094831", "cast_id": 7, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "August Nicholson", "id": 2039, "credit_id": "52fe4469c3a36847f8094835", "cast_id": 8, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "Cherry Jones", "character": "Mrs. Clack", "id": 1956, "credit_id": "52fe4469c3a36847f8094839", "cast_id": 9, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 6}, {"name": "Celia Weston", "character": "Vivian Percy", "id": 1989, "credit_id": "52fe4469c3a36847f809483d", "cast_id": 10, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "John Christopher Jones", "character": "Robert Percy", "id": 51532, "credit_id": "52fe4469c3a36847f8094841", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Frank Collison", "character": "Victor", "id": 1479, "credit_id": "52fe4469c3a36847f8094845", "cast_id": 12, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 9}, {"name": "Jayne Atkinson", "character": "Tabitha Walker", "id": 18261, "credit_id": "52fe4469c3a36847f8094849", "cast_id": 13, "profile_path": "/Ae4wkn9x4JABoFWlNtdABYv2uol.jpg", "order": 10}, {"name": "Judy Greer", "character": "Kitty Walker", "id": 20750, "credit_id": "52fe4469c3a36847f809484d", "cast_id": 14, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 11}, {"name": "Fran Kranz", "character": "Christop Crane", "id": 51533, "credit_id": "52fe4469c3a36847f8094851", "cast_id": 15, "profile_path": "/rcd82G7YYnJNhA9Vz0bMOmM4dAK.jpg", "order": 12}, {"name": "Jesse Eisenberg", "character": "Jamison", "id": 44735, "credit_id": "52fe4469c3a36847f809487f", "cast_id": 23, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 13}, {"name": "Michael Pitt", "character": "Finton Coin", "id": 10692, "credit_id": "52fe4469c3a36847f8094883", "cast_id": 24, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 14}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe4469c3a36847f8094817", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 6.1, "runtime": 108}, "6950": {"poster_path": "/yuQ75cmuGLBqpub7EVO1H1FXdBn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189859560, "overview": "A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House.", "video": false, "id": 6950, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Outbreak", "tagline": "This animal carries a deadly virus... and the greatest medical crisis in the world is about to happen.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0114069", "adult": false, "backdrop_path": "/wrlZRyyOnD24KQzo3OVi4lWyqdF.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1995-03-10", "popularity": 1.06807283296562, "original_title": "Outbreak", "budget": 0, "cast": [{"name": "Dustin Hoffman", "character": "Sam Daniels", "id": 4483, "credit_id": "52fe4469c3a36847f80949b5", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Rene Russo", "character": "Robby Keough", "id": 14343, "credit_id": "52fe4469c3a36847f80949b9", "cast_id": 2, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Billy Ford", "id": 192, "credit_id": "52fe4469c3a36847f80949bd", "cast_id": 3, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Kevin Spacey", "character": "Casey Schuler", "id": 1979, "credit_id": "52fe446ac3a36847f80949c1", "cast_id": 4, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 3}, {"name": "Cuba Gooding Jr.", "character": "Salt", "id": 9777, "credit_id": "52fe446ac3a36847f80949c5", "cast_id": 5, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 4}, {"name": "Donald Sutherland", "character": "Donald McClintock", "id": 55636, "credit_id": "52fe446ac3a36847f80949c9", "cast_id": 6, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 5}, {"name": "Patrick Dempsey", "character": "Jimbo Scott", "id": 18352, "credit_id": "52fe446ac3a36847f80949cd", "cast_id": 7, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 6}, {"name": "Benito Martinez", "character": "Dr. Julio Ruiz", "id": 2137, "credit_id": "52fe446ac3a36847f80949e3", "cast_id": 11, "profile_path": "/6cMiGYgjFFYY8sWITXiE0SrEnt8.jpg", "order": 7}, {"name": "Malick Bowens", "character": "Dr. Raswani", "id": 10649, "credit_id": "52fe446ac3a36847f80949e7", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Zakes Mokae", "character": "Dr. Benjamin Iwabi", "id": 47458, "credit_id": "52fe446ac3a36847f80949eb", "cast_id": 13, "profile_path": "/sxzqrmSm7Kd7eSHzos7UeiT0mke.jpg", "order": 9}, {"name": "Bruce Jarchow", "character": "Dr. Mascelli", "id": 53005, "credit_id": "52fe446ac3a36847f80949ef", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Dale Dye", "character": "Lt. Col. Briggs", "id": 3211, "credit_id": "52fe446ac3a36847f80949f3", "cast_id": 15, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 11}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a36847f80949d3", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 5.9, "runtime": 127}, "6951": {"poster_path": "/oSvaWdWISYCIySdg2TUOHTTapkS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71079915, "overview": "Scott Turner has 3 days left in the local police department before he moves to a bigger city to get some \"real\" cases, not just misdemeanors. Then Amos Reed is murdered, and Scott Turner sets himself on the case. The closest thing to a witness in the case is Amos Reed's dog, Hooch, which Scott Turner has to take care of if it's going to avoid being \"put to sleep\".", "video": false, "id": 6951, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "Turner & Hooch", "tagline": "The Oddest Couple Ever Unleashed!", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098536", "adult": false, "backdrop_path": "/3AQ7BNf15GYoNTa9ZXlhK9oxnng.jpg", "production_companies": [{"name": "Silver Screen Partners III", "id": 554}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1989-07-28", "popularity": 0.258375415296007, "original_title": "Turner & Hooch", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Scott Turner", "id": 31, "credit_id": "52fe446ac3a36847f8094a57", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Mare Winningham", "character": "Emily Carson", "id": 51544, "credit_id": "52fe446ac3a36847f8094a5b", "cast_id": 2, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 1}, {"name": "Craig T. Nelson", "character": "Howard Hyde", "id": 8977, "credit_id": "52fe446ac3a36847f8094a5f", "cast_id": 3, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 2}, {"name": "Scott Paulin", "character": "Zack Gregory", "id": 48810, "credit_id": "52fe446ac3a36847f8094a93", "cast_id": 12, "profile_path": "/hXCaNiAPOuV16eLEWfnPmNHBX2L.jpg", "order": 3}, {"name": "John McIntire", "character": "Amos Reed", "id": 53010, "credit_id": "52fe446ac3a36847f8094a97", "cast_id": 13, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 4}, {"name": "David Knell", "character": "Ernie", "id": 41253, "credit_id": "52fe446ac3a36847f8094a9b", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Reginald VelJohnson", "character": "Det. David Sutton", "id": 7672, "credit_id": "52fe446ac3a36847f8094a9f", "cast_id": 15, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 6}, {"name": "Mary McCusker", "character": "Katie", "id": 53011, "credit_id": "52fe446ac3a36847f8094aa3", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Linda Eve Miller", "character": "Mrs. Pine", "id": 203022, "credit_id": "52fe446ac3a36847f8094aad", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Andrew Walker", "character": "Police Officer", "id": 207667, "credit_id": "5339e0d79251417d9e004e1f", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Roger Spottiswoode", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a36847f8094a65", "profile_path": "/hH8tIBh0RI7VwI4jQgphtB0qABR.jpg", "id": 1724}], "vote_average": 5.9, "runtime": 97}, "15144": {"poster_path": "/rzTrRQg5ek47Yl0Vfenc69r9gOd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Samantha's life is going downhill fast. She has a crush on the most popular boy in school, but the geekiest boy in school has a crush on her. Her sister's getting married, and with all the excitement the rest of her family forgets her sixteenth birthday!", "video": false, "id": 15144, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Sixteen Candles", "tagline": "When you're just sixteen anything can happen!", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088128", "adult": false, "backdrop_path": "/if7IlmJHgi5Oo6SObOshWn1ZlOP.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1984-05-04", "popularity": 0.443907651592328, "original_title": "Sixteen Candles", "budget": 0, "cast": [{"name": "Molly Ringwald", "character": "Samantha Baker", "id": 21625, "credit_id": "52fe463d9251416c75071eab", "cast_id": 1, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 0}, {"name": "Anthony Michael Hall", "character": "The Geek", "id": 1904, "credit_id": "52fe463d9251416c75071eaf", "cast_id": 2, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 1}, {"name": "John Cusack", "character": "Bryce", "id": 3036, "credit_id": "52fe463d9251416c75071eb3", "cast_id": 3, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 2}, {"name": "Gedde Watanabe", "character": "Long Duk Dong", "id": 16183, "credit_id": "52fe463d9251416c75071ebd", "cast_id": 6, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 3}, {"name": "Michael Schoeffling", "character": "Jake Ryan", "id": 140777, "credit_id": "52fe463d9251416c75071ec1", "cast_id": 7, "profile_path": "/oljZUaJspbVhoVovMMdn7jKep8q.jpg", "order": 4}, {"name": "Paul Dooley", "character": "Jim Baker", "id": 15900, "credit_id": "52fe463d9251416c75071ec5", "cast_id": 8, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 5}, {"name": "Billie Bird", "character": "Dorthy Baker", "id": 140778, "credit_id": "52fe463e9251416c75071ec9", "cast_id": 9, "profile_path": "/jJzRnD39UAvbU1ihaXMRcPZN9Xq.jpg", "order": 6}, {"name": "Carole Cook", "character": "Grandma Helen", "id": 41730, "credit_id": "52fe463e9251416c75071ecd", "cast_id": 11, "profile_path": "/nqOpt2uNlPgFsRx9FTJ0p1SIYFe.jpg", "order": 8}, {"name": "Max Showalter", "character": "Grandpa Fred", "id": 85409, "credit_id": "52fe463e9251416c75071ed1", "cast_id": 12, "profile_path": "/xwxc6tyDORQqvw6KoYD51H9IyD3.jpg", "order": 9}, {"name": "Justin Henry", "character": "Mike Baker", "id": 71241, "credit_id": "52fe463e9251416c75071ed5", "cast_id": 13, "profile_path": "/s7Lu0NXISdK2kYpUN2KIZvIQXkR.jpg", "order": 10}, {"name": "Haviland Morris", "character": "Caroline Mulford", "id": 16181, "credit_id": "52fe463e9251416c75071ed9", "cast_id": 14, "profile_path": "/4lFaYG2lyob69bFXBZJ1GdkZjwj.jpg", "order": 11}, {"name": "Blanche Baker", "character": "Ginny Baker", "id": 21525, "credit_id": "52fe463e9251416c75071ee3", "cast_id": 16, "profile_path": "/gj4w0bcSYcycKx28Yff38oXFKKc.jpg", "order": 12}, {"name": "Joan Cusack", "character": "Geek Girl #1", "id": 3234, "credit_id": "52fe463e9251416c75071ee7", "cast_id": 17, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 13}, {"name": "Zelda Rubinstein", "character": "Organist", "id": 10091, "credit_id": "52fe463e9251416c75071eeb", "cast_id": 18, "profile_path": "/mYW44c9DYrt9xARj0I3HWjwZCLn.jpg", "order": 14}, {"name": "Edward Andrews", "character": "Howard Baker", "id": 29719, "credit_id": "52fe463e9251416c75071eef", "cast_id": 19, "profile_path": "/8tbeVNxs6puN3GiyOmoq70IchLb.jpg", "order": 15}, {"name": "Liane Curtis", "character": "Randy", "id": 157054, "credit_id": "54a879dcc3a3680c21002b3a", "cast_id": 20, "profile_path": "/zOdmZINjH8J7Cfn3C9dy12nuw4.jpg", "order": 16}, {"name": "Jami Gertz", "character": "Robin", "id": 9995, "credit_id": "54a87a51c3a3680c2900293a", "cast_id": 21, "profile_path": "/gqmX3nFtx1pFfuXoR0QR608eWT2.jpg", "order": 17}, {"name": "Brian Doyle-Murray", "character": "Reverend", "id": 1535, "credit_id": "54a87a79c3a3680c1c00282e", "cast_id": 22, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 18}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe463d9251416c75071eb9", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.7, "runtime": 93}, "6957": {"poster_path": "/wAKUo12pRBGyFJQV27LFJoTvMU5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109449237, "overview": "Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.", "video": false, "id": 6957, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The 40 Year Old Virgin", "tagline": "The longer you wait, the harder it gets.", "vote_count": 497, "homepage": "http://www.universalstudiosentertainment.com/the-40-year-old-virgin/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0405422", "adult": false, "backdrop_path": "/rjDrnIzQGR7A3fik2RlLesVo4NY.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2005-08-11", "popularity": 1.48346399599829, "original_title": "The 40 Year Old Virgin", "budget": 26000000, "cast": [{"name": "Steve Carell", "character": "Andy Stitzer", "id": 4495, "credit_id": "52fe446ac3a36847f8094c2b", "cast_id": 1, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Trish", "id": 2229, "credit_id": "52fe446ac3a36847f8094c2f", "cast_id": 2, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "Paul Rudd", "character": "David", "id": 22226, "credit_id": "52fe446ac3a36847f8094c33", "cast_id": 3, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 2}, {"name": "Romany Malco", "character": "Jay", "id": 71530, "credit_id": "52fe446ac3a36847f8094c37", "cast_id": 4, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 3}, {"name": "Seth Rogen", "character": "Cal", "id": 19274, "credit_id": "52fe446ac3a36847f8094c5f", "cast_id": 11, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 4}, {"name": "Jane Lynch", "character": "Paula", "id": 43775, "credit_id": "52fe446ac3a36847f8094c63", "cast_id": 12, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 5}, {"name": "Leslie Mann", "character": "Nicky", "id": 41087, "credit_id": "52fe446ac3a36847f8094c67", "cast_id": 13, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 6}, {"name": "Elizabeth Banks", "character": "Beth", "id": 9281, "credit_id": "52fe446ac3a36847f8094c6b", "cast_id": 14, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 7}, {"name": "Stormy Daniels", "character": "Porn Star", "id": 99803, "credit_id": "52fe446ac3a36847f8094c6f", "cast_id": 15, "profile_path": "/nYBTZ7yDDvmLZMGYauoe5lbFhIg.jpg", "order": 8}, {"name": "Kat Dennings", "character": "Marla", "id": 52852, "credit_id": "52fe446ac3a36847f8094c73", "cast_id": 16, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 9}, {"name": "Jonah Hill", "character": "Shop Customer", "id": 21007, "credit_id": "52fe446ac3a36847f8094c77", "cast_id": 17, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 10}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a36847f8094c3d", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 6.1, "runtime": 116}, "146223": {"poster_path": "/dFMktkaCqd5D2lDouzvpXfwd94h.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5733310, "overview": "A terrorist attack in London results in the capture of suspect Farroukh Erdogan (Denis Moschitto). The attorney general appoints Claudia Simmons-Howe (Rebecca Hall) as special advocate on Erdogan's legal team. On the eve of the trial, Erdogan's lawyer dies, and a new defense attorney, Martin Rose (Eric Bana), steps in. Martin and Claudia are former lovers, a fact which must remain hidden. As Martin assembles his case, he uncovers a sinister conspiracy, placing him and Claudia in danger.", "video": false, "id": 146223, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Closed Circuit", "tagline": "They see your every move", "vote_count": 62, "homepage": "http://www.focusfeatures.com/closed_circuit", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2218003", "adult": false, "backdrop_path": "/y3zMDdYfgEbqs2p0dHNkvS5HGgk.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-08-28", "popularity": 0.818268546614946, "original_title": "Closed Circuit", "budget": 0, "cast": [{"name": "Eric Bana", "character": "Martin Rose", "id": 8783, "credit_id": "52fe4b789251416c75103d65", "cast_id": 20, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Rebecca Hall", "character": "Claudia Simmons-Howe", "id": 15556, "credit_id": "52fe4b789251416c75103d11", "cast_id": 2, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 1}, {"name": "Ciar\u00e1n Hinds", "character": "Devlin", "id": 8785, "credit_id": "52fe4b789251416c75103d69", "cast_id": 21, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Attorney General", "id": 388, "credit_id": "52fe4b789251416c75103d6d", "cast_id": 22, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Kenneth Cranham", "character": "Cameron Fischer", "id": 26258, "credit_id": "52fe4b789251416c75103d29", "cast_id": 9, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 4}, {"name": "Isaac Hempstead Wright", "character": "Tom Rose", "id": 239020, "credit_id": "53769ffac3a368554a000281", "cast_id": 23, "profile_path": "/qF1Ca4aNDkpSGQt9Q7qfpRbwNOk.jpg", "order": 5}, {"name": "Julia Stiles", "character": "Joanna Reece", "id": 12041, "credit_id": "5376a0990e0a261425000382", "cast_id": 24, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 6}, {"name": "Anne-Marie Duff", "character": "Melissa", "id": 37058, "credit_id": "5376a0c40e0a261422000371", "cast_id": 25, "profile_path": "/oSHNwLcaVledYycyhmXX0mqqXQF.jpg", "order": 7}, {"name": "Riz Ahmed", "character": "Nazrul Sharma", "id": 53240, "credit_id": "5376a12a0e0a2614310003d7", "cast_id": 27, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 8}, {"name": "Jemma Powell", "character": "Elizabeth", "id": 282628, "credit_id": "5376a1070e0a261425000392", "cast_id": 26, "profile_path": "/hnvxKYa1JFztBf4h0laEwcxoA7F.jpg", "order": 9}, {"name": "Kate Lock", "character": "Mother", "id": 962885, "credit_id": "52fe4b789251416c75103d21", "cast_id": 7, "profile_path": null, "order": 10}, {"name": "Katherine Press", "character": "Pregnant Daughter", "id": 1202386, "credit_id": "52fe4b789251416c75103d25", "cast_id": 8, "profile_path": null, "order": 11}, {"name": "Patrick Warner", "character": "Young Man on Cellphone", "id": 1209911, "credit_id": "52fe4b789251416c75103d5d", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Ricky Nixon", "character": "Fish Trader", "id": 178625, "credit_id": "52fe4b789251416c75103d61", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "John Crowley", "department": "Directing", "job": "Director", "credit_id": "52fe4b789251416c75103d17", "profile_path": "/breF41bB4NuPrWfppQcUzuJeiWh.jpg", "id": 77269}], "vote_average": 5.6, "runtime": 96}, "15152": {"poster_path": "/9s12p1lRWbOyXpLh2NJSxNlhUrn.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Secret agent OSS 117 foils Nazis, beds local beauties, and brings peace to the Middle East.", "video": false, "id": 15152, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "OSS 117: Cairo, Nest of Spies", "tagline": "", "vote_count": 71, "homepage": "http://www.oss117.fr/accueil.htm", "belongs_to_collection": {"backdrop_path": "/tWFDaP55PdguD0VfgYTWZ3NyfoK.jpg", "poster_path": "/bCrDUHGcncm51H21AyEyBN13W4t.jpg", "id": 91588, "name": "OSS 117 Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0464913", "adult": false, "backdrop_path": "/lLULF5WVANFtzxq3QdJAnhRIDzP.jpg", "production_companies": [{"name": "Artemis Film", "id": 1521}], "release_date": "2006-04-05", "popularity": 0.606529923094888, "original_title": "OSS 117 : Le Caire, nid d'espions", "budget": 0, "cast": [{"name": "Jean Dujardin", "character": "Hubert Bonisseur de La Bath, alias OSS 117", "id": 56024, "credit_id": "52fe463e9251416c75072099", "cast_id": 1, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 0}, {"name": "B\u00e9r\u00e9nice Bejo", "character": "Larmina El Akmar Betouche", "id": 82923, "credit_id": "52fe463e9251416c7507209d", "cast_id": 2, "profile_path": "/lczQWfdK8GrdcUKc6TkSD96Sr3r.jpg", "order": 1}, {"name": "Aure Atika", "character": "La princesse Al Tarouk", "id": 19116, "credit_id": "52fe463e9251416c750720a1", "cast_id": 3, "profile_path": "/b74jwDYzlCxteiFTBJ9GlmU4qVX.jpg", "order": 2}, {"name": "Philippe Lefebvre", "character": "Jack Jefferson", "id": 66839, "credit_id": "52fe463e9251416c750720a5", "cast_id": 4, "profile_path": "/3OgeaSSNSQCWliABQcQoq2NrwvC.jpg", "order": 3}, {"name": "Constantin Alexandrov", "character": "Setine", "id": 82924, "credit_id": "52fe463e9251416c750720a9", "cast_id": 5, "profile_path": "/jnolrqmf30NS6dZbSGmhIKpgmzs.jpg", "order": 4}, {"name": "Sa\u00efd Amadis", "character": "Le ministre \u00e9gyptien", "id": 25083, "credit_id": "52fe463e9251416c750720ad", "cast_id": 6, "profile_path": "/4aIDHg39uexNfeJefAeAHMzQjrZ.jpg", "order": 5}, {"name": "Laurent Bateau", "character": "Gardenborough", "id": 78479, "credit_id": "52fe463e9251416c750720b1", "cast_id": 7, "profile_path": "/2zrgonxMwGTMTivBUlHs6MzCMZD.jpg", "order": 6}, {"name": "Claude Brosset", "character": "Le patron", "id": 25076, "credit_id": "52fe463e9251416c750720b5", "cast_id": 8, "profile_path": "/oRYurJPdcaWogp9YXmGx8MUN0bw.jpg", "order": 7}, {"name": "Fran\u00e7ois Damiens", "character": "Raymond Pelletier", "id": 24041, "credit_id": "52fe463e9251416c750720b9", "cast_id": 9, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 8}, {"name": "Youssef Hamid", "character": "L'imam", "id": 17899, "credit_id": "52fe463e9251416c750720bd", "cast_id": 10, "profile_path": "/jD2oFxZC8Tw1GWJOB8Qbo3gSPdv.jpg", "order": 9}, {"name": "Khalid Maadour", "character": "Le suiveur", "id": 82925, "credit_id": "52fe463e9251416c750720c1", "cast_id": 11, "profile_path": "/8Wg1nvtzl2jVceWpr9BqbzBogxa.jpg", "order": 10}, {"name": "Ars\u00e8ne Mosca", "character": "Loktar", "id": 82926, "credit_id": "52fe463e9251416c750720c5", "cast_id": 12, "profile_path": "/sGB2TdgKDu7X6j74r5dXFkrTvES.jpg", "order": 11}, {"name": "Abdellah Moundy", "character": "Slimane", "id": 82927, "credit_id": "52fe463e9251416c750720c9", "cast_id": 13, "profile_path": "/ajof4U2l2jQ6yvPUSLP6dsJUSJ3.jpg", "order": 12}, {"name": "Eric Prat", "character": "Plantieux", "id": 49748, "credit_id": "52fe463e9251416c750720cd", "cast_id": 14, "profile_path": "/l7I4H9nVkGKoJJDGm4VIEKOIVot.jpg", "order": 13}, {"name": "Richard Sammel", "character": "Moeller", "id": 49487, "credit_id": "52fe463f9251416c750720d1", "cast_id": 15, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 14}], "directors": [{"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe463f9251416c750720d7", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}], "vote_average": 7.2, "runtime": 99}, "132232": {"poster_path": "/8yy5nw7SD4VZMZIlebS96HDpp2g.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 146497771, "overview": "Guillermo del Toro presents Mama, a supernatural thriller that tells the haunting tale of two little girls who disappeared into the woods the day that their parents were killed. When they are rescued years later and begin a new life, they find that someone or something still wants to come tuck them in at night.", "video": false, "id": 132232, "genres": [{"id": 27, "name": "Horror"}], "title": "Mama", "tagline": "A Mother's Love is Forever", "vote_count": 558, "homepage": "http://www.mamamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2023587", "adult": false, "backdrop_path": "/l3QG6qJECcyOsP3yAmHtvp4XZCv.jpg", "production_companies": [{"name": "Toma 78", "id": 10677}, {"name": "De Milo", "id": 10678}, {"name": "Universal Pictures", "id": 33}], "release_date": "2013-01-18", "popularity": 1.13287156975673, "original_title": "Mama", "budget": 15000000, "cast": [{"name": "Jessica Chastain", "character": "Annabel", "id": 83002, "credit_id": "52fe4b8cc3a368484e18e703", "cast_id": 1, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 0}, {"name": "Nikolaj Coster-Waldau", "character": "Lucas", "id": 12795, "credit_id": "52fe4b8cc3a368484e18e707", "cast_id": 2, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 1}, {"name": "Megan Charpentier", "character": "Victoria", "id": 223126, "credit_id": "52fe4b8cc3a368484e18e70b", "cast_id": 3, "profile_path": "/WNe7mkDzSQl2uRhvQlqiXLBp66.jpg", "order": 2}, {"name": "Isabelle N\u00e9lisse", "character": "Lilly", "id": 1094759, "credit_id": "52fe4b8cc3a368484e18e70f", "cast_id": 4, "profile_path": "/gkWNefDoAFgruXKAgdozVg9ONHd.jpg", "order": 3}, {"name": "Daniel Kash", "character": "Dr. Dreyfuss", "id": 10210, "credit_id": "52fe4b8cc3a368484e18e713", "cast_id": 5, "profile_path": "/b6lvtpkTRHHcv4YMW3FnGRtyXJ4.jpg", "order": 4}, {"name": "Melina Matthews", "character": "Mama (voice)", "id": 1289925, "credit_id": "54990b33c3a36826f6000411", "cast_id": 21, "profile_path": null, "order": 5}], "directors": [{"name": "Andr\u00e9s Muschietti", "department": "Directing", "job": "Director", "credit_id": "52fe4b8cc3a368484e18e743", "profile_path": null, "id": 1113116}], "vote_average": 6.0, "runtime": 100}, "6963": {"poster_path": "/g36DKoIbvdhSpngVel9U8rAO3el.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12482775, "overview": "A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.", "video": false, "id": 6963, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Weather Man", "tagline": "Dave Spritz is about to take his best shot . . . at life", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384680", "adult": false, "backdrop_path": "/2CviKS5DKi64jixx3V5ag1XJ8dQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2005-10-20", "popularity": 0.395573841057746, "original_title": "The Weather Man", "budget": 20000000, "cast": [{"name": "Nicolas Cage", "character": "David Spritz", "id": 2963, "credit_id": "52fe446bc3a36847f8094f59", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Michael Caine", "character": "Robert Spritzel", "id": 3895, "credit_id": "52fe446bc3a36847f8094f5d", "cast_id": 4, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Hope Davis", "character": "Noreen", "id": 15250, "credit_id": "52fe446bc3a36847f8094f61", "cast_id": 5, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 2}, {"name": "Gemmenne de la Pe\u00f1a", "character": "Shelly", "id": 51609, "credit_id": "52fe446bc3a36847f8094f65", "cast_id": 6, "profile_path": "/ii2qoCx7dVa7hpG3M0cZRhMaAI0.jpg", "order": 3}, {"name": "Nicholas Hoult", "character": "Mike", "id": 3292, "credit_id": "52fe446bc3a36847f8094f69", "cast_id": 7, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 4}, {"name": "Michael Rispoli", "character": "Russ", "id": 18313, "credit_id": "52fe446bc3a36847f8094f6d", "cast_id": 8, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 5}, {"name": "Gil Bellows", "character": "Don", "id": 6575, "credit_id": "52fe446bc3a36847f8094f71", "cast_id": 9, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 6}, {"name": "Judith McConnell", "character": "Lauren", "id": 51610, "credit_id": "52fe446bc3a36847f8094f75", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Chris Marrs", "character": "Guy", "id": 51611, "credit_id": "52fe446bc3a36847f8094f79", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Bryant Gumbel", "character": "Himself", "id": 1223819, "credit_id": "54fd9cfac3a36869fb0071f6", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Ed McMahon", "character": "Himself", "id": 112884, "credit_id": "54fd9d059251416c3200101d", "cast_id": 21, "profile_path": "/AL5XqZZZ1O19xtWPoQMI1DaqhX.jpg", "order": 10}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a36847f8094f4f", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.0, "runtime": 101}, "6964": {"poster_path": "/q1DO4rwTGz1VSX2sEqqboPwsXUF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 266728738, "overview": "Harry Sanborn is an aged music industry exec with a fondness for younger women like Marin, his latest trophy girlfriend. Things get a little awkward when Harry suffers a heart attack at the home of Marin's mother Erica. Left in the care of Erica and his doctor, a love triangle starts to take shape.", "video": false, "id": 6964, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Something's Gotta Give", "tagline": "Schmucks are people too.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337741", "adult": false, "backdrop_path": "/3QdaSf5akgTo2qWHMftvA7nq0qu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Waverly Films", "id": 735}], "release_date": "2003-12-12", "popularity": 0.478708349168995, "original_title": "Something's Gotta Give", "budget": 80000000, "cast": [{"name": "Jack Nicholson", "character": "Harry Sanborn", "id": 514, "credit_id": "52fe446bc3a36847f8094fc7", "cast_id": 1, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Erica Barry", "id": 3092, "credit_id": "52fe446bc3a36847f8094fcb", "cast_id": 2, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Keanu Reeves", "character": "Julian Mercer", "id": 6384, "credit_id": "52fe446bc3a36847f8094fcf", "cast_id": 3, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 2}, {"name": "Frances McDormand", "character": "Zoe", "id": 3910, "credit_id": "52fe446bc3a36847f8094fd3", "cast_id": 4, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 3}, {"name": "Amanda Peet", "character": "Marin", "id": 2956, "credit_id": "52fe446bc3a36847f8094fd7", "cast_id": 5, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 4}, {"name": "Jon Favreau", "character": "Leo", "id": 15277, "credit_id": "52fe446bc3a36847f8094fe7", "cast_id": 8, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 5}, {"name": "Paul Michael Glaser", "character": "Dave", "id": 12988, "credit_id": "52fe446bc3a36847f8094feb", "cast_id": 9, "profile_path": "/yc39Cj9ZmaEnrKZIRnYLPAdDyCK.jpg", "order": 6}, {"name": "Rachel Ticotin", "character": "Dr. Martinez", "id": 10768, "credit_id": "52fe446bc3a36847f8094fef", "cast_id": 10, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 7}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a36847f8094fdd", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 5.8, "runtime": 128}, "15157": {"poster_path": "/fLdCKCfHT8A6bnWybBsQFjC4fCo.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A guy who danced with what could be the girl of his dreams at a costume ball only has one hint at her identity: the Zune she left behind as she rushed home in order to make her curfew. And with a once-in-a-lifetime opportunity in front of him, he sets out to find his masked beauty.", "video": false, "id": 15157, "genres": [{"id": 10402, "name": "Music"}], "title": "Another Cinderella Story", "tagline": "Once upon a time....can happen again.", "vote_count": 60, "homepage": "http://anothercinderellastory.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/c9RAmtGUgoa7ljS6MHLqZPBEyTx.jpg", "poster_path": "/34X6jwkjrvrtZiH6kNBhEaN2NcF.jpg", "id": 178799, "name": "A Cinderella Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1071358", "adult": false, "backdrop_path": "/dIBCsGWAACJMNoZrBE3ZspdJK4J.jpg", "production_companies": [{"name": "Warner Premiere", "id": 4811}, {"name": "CS2 Films", "id": 8806}, {"name": "Dylan Sellers Productions", "id": 8807}], "release_date": "2008-09-16", "popularity": 0.596273036363683, "original_title": "Another Cinderella Story", "budget": 5000000, "cast": [{"name": "Selena Gomez", "character": "Mary Santiago", "id": 77948, "credit_id": "52fe463f9251416c750721a3", "cast_id": 1, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Jane Lynch", "character": "Dominique Blatt", "id": 43775, "credit_id": "52fe463f9251416c750721bf", "cast_id": 7, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 1}, {"name": "Katharine Isabelle", "character": "Bree", "id": 27136, "credit_id": "52fe463f9251416c750721c3", "cast_id": 8, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 2}, {"name": "Emily Perkins", "character": "Britt", "id": 64914, "credit_id": "52fe463f9251416c750721c7", "cast_id": 9, "profile_path": "/z9XbUJ83nKoHjvdvbzrQFrQVx7R.jpg", "order": 3}, {"name": "Jessica Parker Kennedy", "character": "Tami", "id": 211540, "credit_id": "52fe463f9251416c750721dd", "cast_id": 13, "profile_path": "/s6F7jEHFfTZjSDr6yVURqIokT91.jpg", "order": 4}, {"name": "Nicole LaPlaca", "character": "Natalia Faroush", "id": 175234, "credit_id": "52fe463f9251416c750721e1", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Marcus T. Paulk", "character": "Dustin", "id": 60038, "credit_id": "548c392892514122ed001885", "cast_id": 16, "profile_path": "/vYbpojpt8wQweXoGjYSG5gIHpGD.jpg", "order": 7}, {"name": "Stuart Cowan", "character": "Debate Team Dude", "id": 930508, "credit_id": "548c395692514122fc0017e5", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Giacomo Baessato", "character": "Football Jock", "id": 33049, "credit_id": "548c396a92514122ed00188d", "cast_id": 19, "profile_path": "/67zoEItDFyl0YdPJNOevUxc5SPq.jpg", "order": 10}, {"name": "Maija Tailfeathers", "character": "Amazonian Model Girl", "id": 1398489, "credit_id": "548c397ec3a36820be0014b7", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Donald Adams", "character": "Teacher", "id": 233227, "credit_id": "548c398e92514122ff001682", "cast_id": 21, "profile_path": "/tyn9BCHeqfhWttmBdi0yjSdegE8.jpg", "order": 12}, {"name": "Jagoda Janik", "character": "Goth Girl", "id": 1398491, "credit_id": "548c39a192514122ed0018a2", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Laura Carswell", "character": "Moon-eyed Cheerleader", "id": 1088068, "credit_id": "548c39b492514122ff00168a", "cast_id": 23, "profile_path": "/fTnsiGN4Ls5K0vj9FqaLc5RNy0A.jpg", "order": 14}, {"name": "Alex Zahara", "character": "British Director", "id": 62919, "credit_id": "55168f299251413eaf001038", "cast_id": 24, "profile_path": "/7nL163KHo0LpGlzndjNfKVrwpkZ.jpg", "order": 15}, {"name": "Drew Seeley", "character": "Joey Parker", "id": 92619, "credit_id": "55244dc89251415c7c009d59", "cast_id": 25, "profile_path": "/3KUn2RzvBXIyiLw6Ad4fCKwLRHi.jpg", "order": 16}], "directors": [{"name": "Damon Santostefano", "department": "Directing", "job": "Director", "credit_id": "52fe463f9251416c750721af", "profile_path": null, "id": 66039}], "vote_average": 6.1, "runtime": 90}, "228150": {"poster_path": "/il9XWx5CbNd2KdDUwrcClEZiLkv.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Last months of World War II in April 1945. As the Allies make their final push in the European Theater, a battle-hardened U.S. Army sergeant in the 2nd Armored Division named Wardaddy commands a Sherman tank called \"Fury\" and its five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.", "video": false, "id": 228150, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Fury", "tagline": "War never ends quietly.", "vote_count": 901, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2713180", "adult": false, "backdrop_path": "/pKawqrtCBMmxarft7o1LbEynys7.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "QED International", "id": 11029}, {"name": "Crave Films", "id": 16312}, {"name": "LStar Capital", "id": 34034}, {"name": "Huayi Brothers Media", "id": 39649}, {"name": "Le Grisbi Productions", "id": 47169}], "release_date": "2014-10-17", "popularity": 8.18406457967029, "original_title": "Fury", "budget": 80000000, "cast": [{"name": "Brad Pitt", "character": "Don 'Wardaddy' Collier", "id": 287, "credit_id": "52fe4ec09251416c7516126f", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Boyd 'Bible' Swan", "id": 10959, "credit_id": "52fe4ec09251416c75161273", "cast_id": 2, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Logan Lerman", "character": "Norman Ellison", "id": 33235, "credit_id": "52fe4ec09251416c75161277", "cast_id": 3, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Trini 'Gordo' Garcia", "id": 454, "credit_id": "53a8da4b0e0a261439006bc8", "cast_id": 9, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Jon Bernthal", "character": "Grady 'Coon-Ass' Travis", "id": 19498, "credit_id": "52fe4ec09251416c7516127b", "cast_id": 4, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 4}, {"name": "Jim Parrack", "character": "Sergeant Binkowski", "id": 83968, "credit_id": "5477f4d9c3a3685f910032a0", "cast_id": 15, "profile_path": "/7ATHioOgrx9og5WO3d0AWnQu4Uo.jpg", "order": 5}, {"name": "Brad William Henke", "character": "Sergeant Davis", "id": 15376, "credit_id": "5477f4e9c3a3685873000e99", "cast_id": 17, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 6}, {"name": "Kevin Vance", "character": "Sergeant Peterson", "id": 1345133, "credit_id": "5477f4f992514160e30082bb", "cast_id": 18, "profile_path": "/tS7SsfqYiODwobJItpzrykMKDiD.jpg", "order": 7}, {"name": "Xavier Samuel", "character": "Lt. Parker", "id": 109438, "credit_id": "5341bb9f0e0a2679b1002790", "cast_id": 8, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 8}, {"name": "Jason Isaacs", "character": "Captain Waggoner", "id": 11355, "credit_id": "5477f516c3a368530f0017b8", "cast_id": 19, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 9}, {"name": "Anamaria Marinca", "character": "Irma", "id": 20699, "credit_id": "5477f524c3a3685f910032b0", "cast_id": 20, "profile_path": "/ajLN2RMuYHgTEFAzs8x8vZH0Rlu.jpg", "order": 10}, {"name": "Alicia von Rittberg", "character": "Emma", "id": 572648, "credit_id": "5477f531c3a3685f910032bb", "cast_id": 21, "profile_path": "/wX98jY8BavEkGMSjf9563METMWA.jpg", "order": 11}, {"name": "Scott Eastwood", "character": "Sergeant Miles", "id": 928572, "credit_id": "52fe4ec09251416c7516127f", "cast_id": 5, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 12}, {"name": "Eugenia Kuzmina", "character": "Hilda Meier", "id": 1333845, "credit_id": "53a8dab9c3a368749500573f", "cast_id": 10, "profile_path": "/5TpGe5oRdZ7pt9Rzrjjjt9THL9E.jpg", "order": 14}, {"name": "Adam Ganne", "character": "SS Lieutenant", "id": 1430505, "credit_id": "54eb0369c3a36836ea0066b3", "cast_id": 108, "profile_path": null, "order": 15}, {"name": "Marek Oravec", "character": "SS Officer", "id": 219473, "credit_id": "54eb038fc3a3681002000ec0", "cast_id": 109, "profile_path": null, "order": 16}, {"name": "Zach Avery", "character": "SS Medic (uncredited)", "id": 1412094, "credit_id": "54f791929251416ee4002584", "cast_id": 112, "profile_path": null, "order": 17}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe4ec09251416c75161289", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 7.5, "runtime": 135}, "15159": {"poster_path": "/bVGiumWel8Lixi87SXqlDIGwjqQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75871032, "overview": "When legendary treasures from around the world are stolen, including the priceless Pink Panther Diamond, Chief Inspector Dreyfus is forced to assign Inspector Clouseau to a team of international detectives and experts charged with catching the thief and retrieving the stolen artifacts.", "video": false, "id": 15159, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "The Pink Panther 2", "tagline": "Inspect the unexpected.", "vote_count": 79, "homepage": "http://www.sonypictures.com/movies/thepinkpanther2/", "belongs_to_collection": {"backdrop_path": "/tuE4QPHLHaMUkAW4Yggig5U92rl.jpg", "poster_path": "/xYbMC6vo4rMIX8hkTUZva86r0i5.jpg", "id": 130440, "name": "The Pink Panther Collection (Steve Martin Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0838232", "adult": false, "backdrop_path": "/yrPoJR97AiOB1db0LscrYpH0t7j.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Columbia Pictures", "id": 5}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2009-02-06", "popularity": 1.78522062357296, "original_title": "The Pink Panther 2", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Inspecteur Jacques Clouseau", "id": 67773, "credit_id": "52fe463f9251416c7507228b", "cast_id": 7, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Jean Reno", "character": "Ponton", "id": 1003, "credit_id": "52fe463f9251416c7507228f", "cast_id": 8, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Nicole", "id": 1246, "credit_id": "52fe463f9251416c75072293", "cast_id": 9, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Andy Garc\u00eda", "character": "Vicenzo", "id": 1271, "credit_id": "52fe463f9251416c75072297", "cast_id": 10, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Pepperidge", "id": 658, "credit_id": "52fe463f9251416c7507229b", "cast_id": 11, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "Yuki Matsuzaki", "character": "Kenji", "id": 77955, "credit_id": "52fe463f9251416c7507229f", "cast_id": 12, "profile_path": "/2wpDHE2XW805ql9LMgYxhbJto1h.jpg", "order": 5}, {"name": "Aishwarya Rai Bachchan", "character": "Sonia", "id": 87773, "credit_id": "52fe463f9251416c750722a3", "cast_id": 13, "profile_path": "/3iSTsyBx5FwfbIrMJXMKFJ0eWlL.jpg", "order": 6}, {"name": "John Cleese", "character": "Chief Inspector Dreyfus", "id": 8930, "credit_id": "52fe463f9251416c750722a7", "cast_id": 14, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 7}, {"name": "Lily Tomlin", "character": "Mrs. Berenger", "id": 10437, "credit_id": "52fe463f9251416c750722e7", "cast_id": 25, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 8}, {"name": "Jeremy Irons", "character": "Avellaneda", "id": 16940, "credit_id": "52fe463f9251416c750722eb", "cast_id": 26, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 9}, {"name": "Johnny Hallyday", "character": "Milliken", "id": 35084, "credit_id": "52fe463f9251416c750722ef", "cast_id": 27, "profile_path": "/18kJzn9NuGH0WMCEqm92DLFwqJt.jpg", "order": 10}, {"name": "Geoffrey Palmer", "character": "Joubert", "id": 10746, "credit_id": "52fe463f9251416c750722f3", "cast_id": 28, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 11}, {"name": "Philip Goodwin", "character": "Renard", "id": 163873, "credit_id": "52fe46409251416c750722f7", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Armel Bellec", "character": "Louis", "id": 993771, "credit_id": "52fe46409251416c750722fb", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Jack Metzger", "character": "Antoine", "id": 164387, "credit_id": "52fe46409251416c750722ff", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Yevgeni Lazarev", "character": "The Pope", "id": 19301, "credit_id": "52fe46409251416c75072309", "cast_id": 34, "profile_path": "/hLtyGhAuEeJc8qPjQDZswIMpYDd.jpg", "order": 15}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe463f9251416c7507226f", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 5.6, "runtime": 92}, "146233": {"poster_path": "/yAhqW57pwMAsCgmZpM5zSIVQVTh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122126687, "overview": "When Keller Dover's daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts. But just how far will this desperate father go to protect his family?", "video": false, "id": 146233, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Prisoners", "tagline": "Every moment matters.", "vote_count": 810, "homepage": "http://prisonersmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1392214", "adult": false, "backdrop_path": "/cLGKawjQ5tUJCuDyR0OnGYT4fyf.jpg", "production_companies": [{"name": "Madhouse Entertainment", "id": 12199}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "8:38 Productions", "id": 18208}], "release_date": "2013-09-21", "popularity": 2.01351076776546, "original_title": "Prisoners", "budget": 46000000, "cast": [{"name": "Hugh Jackman", "character": "Keller Dover", "id": 6968, "credit_id": "52fe4b799251416c75103ef7", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Detective Loki", "id": 131, "credit_id": "52fe4b789251416c75103ef3", "cast_id": 1, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Paul Dano", "character": "Alex Jones", "id": 17142, "credit_id": "52fe4b799251416c75103efb", "cast_id": 3, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 2}, {"name": "Maria Bello", "character": "Grace Dover", "id": 49, "credit_id": "52fe4b799251416c75103eff", "cast_id": 4, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "Melissa Leo", "character": "Holly Jones", "id": 6832, "credit_id": "52fe4b799251416c75103f03", "cast_id": 5, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 4}, {"name": "Viola Davis", "character": "Nancy Birch", "id": 19492, "credit_id": "52fe4b799251416c75103f07", "cast_id": 6, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}, {"name": "Terrence Howard", "character": "Franklin Birch", "id": 18288, "credit_id": "52fe4b799251416c75103f2f", "cast_id": 14, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 6}, {"name": "Dylan Minnette", "character": "Ralph Dover", "id": 112476, "credit_id": "52fe4b799251416c75103f57", "cast_id": 22, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 7}, {"name": "Zo\u00eb Borde", "character": "Eliza Birch", "id": 1208406, "credit_id": "52fe4b799251416c75103f5b", "cast_id": 23, "profile_path": "/m40sSN2l2tQtpKbhRbjm7sksNV9.jpg", "order": 8}, {"name": "Wayne Duvall", "character": "Captain Richard O'Malley", "id": 1470, "credit_id": "52fe4b799251416c75103f5f", "cast_id": 24, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 9}, {"name": "David Dastmalchian", "character": "Bob Taylor", "id": 83854, "credit_id": "52fe4b799251416c75103f63", "cast_id": 25, "profile_path": "/kl4bxkrd9yc6oPYZGs4jKHLI3f2.jpg", "order": 10}, {"name": "Len Cariou", "character": "Father Patrick Dunn", "id": 41247, "credit_id": "52fe4b799251416c75103f67", "cast_id": 26, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 11}, {"name": "Sandra Ellis Lafferty", "character": "Mrs. Milland", "id": 427, "credit_id": "52fe4b799251416c75103f6b", "cast_id": 27, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 12}], "directors": [{"name": "Denis Villeneuve", "department": "Directing", "job": "Director", "credit_id": "52fe4b799251416c75103f0d", "profile_path": "/f3bWCti2AYoAxRnFYIirQyf6A7j.jpg", "id": 137427}], "vote_average": 7.8, "runtime": 153}, "47931": {"poster_path": "/65Uy9xucPOAZDKa54RlojVyP24k.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}], "revenue": 63027681, "overview": "After a bloody invasion of the BOPE in the High-Security Penitentiary Bangu 1 in Rio de Janeiro to control a rebellion of interns, the Lieutenant-Colonel Roberto Nascimento and the second in command Captain Andr\u00e9 Matias are accused by the Human Right Aids member Diogo Fraga of execution of prisoners. Matias is transferred to the corrupted Military Police and Nascimento is exonerated from the BOPE by the Governor.", "video": false, "id": 47931, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Elite Squad: The Enemy Within", "tagline": "", "vote_count": 152, "homepage": "http://www.tropa2.com.br/", "belongs_to_collection": {"backdrop_path": "/nNUFlXdj8JIV6HnjVS58r0qCvE7.jpg", "poster_path": "/mdB0vaxi8TTnKIOeaYv25vUrkY3.jpg", "id": 119581, "name": "Elite Squad Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1555149", "adult": false, "backdrop_path": "/oMaCjoomZ1ZvFX7sASAbcDrkxU7.jpg", "production_companies": [{"name": "Feij\u00e3o Filmes", "id": 47044}, {"name": "Globo filmes", "id": 10954}, {"name": "Riofilme", "id": 21454}, {"name": "Zazen Produ\u00e7\u00f5es", "id": 2427}], "release_date": "2010-10-08", "popularity": 0.62083665486258, "original_title": "Tropa de Elite 2", "budget": 0, "cast": [{"name": "Wagner Moura", "character": "Tenente-Coronel Nascimento", "id": 52583, "credit_id": "52fe474ec3a36847f812e68f", "cast_id": 6, "profile_path": "/bESNWiGHjMhMGoqBMVtbpJBazKx.jpg", "order": 0}, {"name": "Irandhir Santos", "character": "Diogo Fraga", "id": 223286, "credit_id": "52fe474ec3a36847f812e693", "cast_id": 7, "profile_path": "/46RVPauvZjxpoxedo0u2XafRKB0.jpg", "order": 1}, {"name": "Andr\u00e9 Ramiro", "character": "Andr\u00e9 Matias", "id": 52585, "credit_id": "52fe474ec3a36847f812e697", "cast_id": 8, "profile_path": "/qFROuhLJIHPv0tiZ9TXdYZkYOfU.jpg", "order": 2}, {"name": "Pedro Van-Held", "character": "Rafael", "id": 223288, "credit_id": "52fe474ec3a36847f812e69b", "cast_id": 9, "profile_path": "/j95ufSzPXr2krPVp01v0E18ecsq.jpg", "order": 3}, {"name": "Maria Ribeiro", "character": "Rosane", "id": 12397, "credit_id": "52fe474ec3a36847f812e69f", "cast_id": 10, "profile_path": "/vh8e9h0f8AxKwZ01uKp7WWoSGP5.jpg", "order": 4}, {"name": "Sandro Rocha", "character": "Russo", "id": 223289, "credit_id": "52fe474ec3a36847f812e6a3", "cast_id": 11, "profile_path": "/vJ59YipVXfGS76RchcCZPjhgtt3.jpg", "order": 5}, {"name": "Milhem Cortaz", "character": "Tenente-Coronel F\u00e1bio", "id": 52586, "credit_id": "52fe474ec3a36847f812e6a7", "cast_id": 12, "profile_path": "/7OLA77PUeO38jqbRhpFPzQUankN.jpg", "order": 6}, {"name": "Tain\u00e1 M\u00fcller", "character": "Clara", "id": 127110, "credit_id": "52fe474ec3a36847f812e6ab", "cast_id": 13, "profile_path": "/Tvzjcm9sKQFcWnLL1TUhT96Ys1.jpg", "order": 7}, {"name": "Seu Jorge", "character": "Beirada", "id": 5659, "credit_id": "52fe474ec3a36847f812e6af", "cast_id": 14, "profile_path": "/ggUYDS85gpTLAXaDzznLw2mpTfS.jpg", "order": 8}, {"name": "Andr\u00e9 Mattos", "character": "Fortunato", "id": 223293, "credit_id": "52fe474ec3a36847f812e6b3", "cast_id": 15, "profile_path": "/uQh6iQjnYjaaIgFOnGgpnzGoQBt.jpg", "order": 9}], "directors": [{"name": "Jos\u00e9 Padilha", "department": "Directing", "job": "Director", "credit_id": "52fe474ec3a36847f812e673", "profile_path": "/856kyjsiBGksnzpNHgxkkcd0TZr.jpg", "id": 52576}], "vote_average": 7.4, "runtime": 115}, "6972": {"poster_path": "/rjyseZNRuMiomWbQZt6BQMwyyE2.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49554002, "overview": "Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin, Australia, by Japanese forces firsthand.", "video": false, "id": 6972, "genres": [{"id": 18, "name": "Drama"}], "title": "Australia", "tagline": "Welcome to Australia!", "vote_count": 207, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455824", "adult": false, "backdrop_path": "/yMHcsO8PY2J7CzxtcWxvgfT0iUz.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Bazmark Films", "id": 240}, {"name": "ScreenWest", "id": 7888}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2008-11-18", "popularity": 0.367621269465933, "original_title": "Australia", "budget": 130000000, "cast": [{"name": "Nicole Kidman", "character": "Lady Sarah Ashley", "id": 2227, "credit_id": "52fe446cc3a36847f809544b", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "The Drover", "id": 6968, "credit_id": "52fe446cc3a36847f809544f", "cast_id": 4, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Essie Davis", "character": "Katherine", "id": 33449, "credit_id": "52fe446cc3a36847f8095453", "cast_id": 5, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 2}, {"name": "David Wenham", "character": "Neil Fletcher", "id": 1371, "credit_id": "52fe446cc3a36847f8095457", "cast_id": 6, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 3}, {"name": "Bryan Brown", "character": "King Carney", "id": 29092, "credit_id": "52fe446cc3a36847f809545b", "cast_id": 7, "profile_path": "/ppE8Gy8jyjB5oQwwryVFgvQlHUr.jpg", "order": 4}, {"name": "David Gulpilil", "character": "King George", "id": 53023, "credit_id": "52fe446cc3a36847f809545f", "cast_id": 8, "profile_path": "/pns5wVD4GNEPo0FwtZHrjGX6j5n.jpg", "order": 5}, {"name": "John Jarratt", "character": "Sergeant", "id": 45210, "credit_id": "53464d5bc3a3682f20000db7", "cast_id": 23, "profile_path": "/pG2OV7KBXbMzcirLuoLWN7Uoyfq.jpg", "order": 7}, {"name": "Shea Adams", "character": "Carney Boy", "id": 208282, "credit_id": "536167c7c3a3683965000366", "cast_id": 24, "profile_path": "/36C0GE42kUgzP6i2vWwJjl8NLHB.jpg", "order": 8}, {"name": "Nathin Butler", "character": "Carney Boy", "id": 55903, "credit_id": "539c409dc3a368653d001918", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Eddie Baroo", "character": "Bull", "id": 217046, "credit_id": "539c40cfc3a36810c9001f7e", "cast_id": 35, "profile_path": "/2VA0cPaaqRCDLylXTQCPSLl73AF.jpg", "order": 10}, {"name": "Arthur Dignam", "character": "Father Benedict", "id": 108924, "credit_id": "539c4113c3a36810c9001f81", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Sandy Gore", "character": "Gloria Carney", "id": 144098, "credit_id": "539c41aac3a36810c9001f9f", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Bill Hunter", "character": "Skipper (Qantas Sloop)", "id": 23, "credit_id": "539c41e9c3a36810e3001e9e", "cast_id": 38, "profile_path": "/fDYf8bxLtyy3vnSFX27QBe3mG8d.jpg", "order": 13}, {"name": "Jacek Koman", "character": "Ivan", "id": 12210, "credit_id": "539c4301c3a36810ba00207f", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Ben Mendelsohn", "character": "Captain Dutton", "id": 77335, "credit_id": "54958188c3a3686ae300408d", "cast_id": 117, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 15}, {"name": "Barry Otto", "character": "Administrator Allsop", "id": 150536, "credit_id": "549581bac3a3680ff50029fe", "cast_id": 118, "profile_path": null, "order": 16}, {"name": "David Ngoombujarra", "character": "Magarri", "id": 1222753, "credit_id": "549582d69251412c4e002827", "cast_id": 119, "profile_path": null, "order": 17}, {"name": "Bruce Spence", "character": "Dr. Barker", "id": 27752, "credit_id": "5495837ac3a36831b8001acf", "cast_id": 120, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 18}, {"name": "Jack Thompson", "character": "Kipling Flynn", "id": 12536, "credit_id": "549583ff9251416e1e003ca5", "cast_id": 121, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 19}, {"name": "Yuen Wah", "character": "Sing Song", "id": 57609, "credit_id": "549584b29251416e1e003cb4", "cast_id": 122, "profile_path": "/dz71IIr8cfECAOD3KFosz8aj15T.jpg", "order": 20}, {"name": "Kerry Walker", "character": "Myrtle Allsop", "id": 10756, "credit_id": "549584cd9251416e2b00411a", "cast_id": 123, "profile_path": null, "order": 21}, {"name": "David Wenham", "character": "Neil Fletcher", "id": 1371, "credit_id": "5495850b9251413f75002798", "cast_id": 124, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 22}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe446cc3a36847f8095441", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 6.1, "runtime": 165}, "146238": {"poster_path": "/vh3pmcySB3sWkNwLRIyrbTugSrD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62616646, "overview": "When a poor college student who cracks an online poker game goes bust, he arranges a face-to-face with the man he thinks cheated him, a sly offshore entrepreneur.", "video": false, "id": 146238, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Runner Runner", "tagline": "The house always wins.", "vote_count": 239, "homepage": "http://www.runnerrunnermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2364841", "adult": false, "backdrop_path": "/wULBSnY3AaR9PfN6kYT8vLA8HfW.jpg", "production_companies": [{"name": "Stone Village Pictures", "id": 7420}, {"name": "Appian Way", "id": 562}, {"name": "Double Feature Films", "id": 215}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2013-10-02", "popularity": 2.09494863285235, "original_title": "Runner Runner", "budget": 30000000, "cast": [{"name": "Ben Affleck", "character": "Ivan Block", "id": 880, "credit_id": "52fe4b799251416c75103fe3", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Rebecca Shafran", "id": 59620, "credit_id": "52fe4b799251416c75103fe7", "cast_id": 2, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Richie Furst", "id": 12111, "credit_id": "52fe4b799251416c75103feb", "cast_id": 3, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Anthony Mackie", "character": "Shavers", "id": 53650, "credit_id": "52fe4b799251416c75103fef", "cast_id": 4, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 3}, {"name": "David Costabile", "character": "Professor Hornstein", "id": 82167, "credit_id": "52fe4b799251416c75104005", "cast_id": 8, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 4}, {"name": "John Heard", "character": "Harry Furst", "id": 11512, "credit_id": "52fe4b799251416c75104009", "cast_id": 9, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 5}, {"name": "Michael Esper", "character": "Billy 'Pet' Petricoff", "id": 6183, "credit_id": "52fe4b799251416c7510400d", "cast_id": 10, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 6}, {"name": "Oliver Cooper", "character": "Andrew Cronin", "id": 225694, "credit_id": "52fe4b799251416c75104011", "cast_id": 11, "profile_path": "/1eBIzPMwi7xgOAqGztXByHfqrHc.jpg", "order": 7}, {"name": "Christian George", "character": "Wilson", "id": 996296, "credit_id": "52fe4b799251416c75104015", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Yul Vazquez", "character": "Delegate Herrera", "id": 75604, "credit_id": "52fe4b799251416c75104019", "cast_id": 13, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 9}, {"name": "James Molina", "character": "Esteban", "id": 200446, "credit_id": "52fe4b799251416c7510401d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Louis Lombardi", "character": "Archie", "id": 3218, "credit_id": "52fe4b799251416c75104021", "cast_id": 15, "profile_path": "/xQxODNK3RKu0DZvJYQKBLamSmad.jpg", "order": 11}, {"name": "Vincent Laresca", "character": "Sergeant Barrancas", "id": 1983, "credit_id": "52fe4b799251416c75104025", "cast_id": 16, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 12}, {"name": "Sam Palladio", "character": "Shecky", "id": 1097967, "credit_id": "52fe4b799251416c75104029", "cast_id": 17, "profile_path": "/sKvNvDHxHHYEOYPVkOzn55xrXc1.jpg", "order": 13}, {"name": "Dayo Okeniyi", "character": "Lionel", "id": 1030512, "credit_id": "54e9da71c3a36836ed004153", "cast_id": 26, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 14}], "directors": [{"name": "Brad Furman", "department": "Directing", "job": "Director", "credit_id": "52fe4b799251416c75103ff5", "profile_path": "/o1NbAcrBHaX8Qsk2AV95TEY0iLR.jpg", "id": 144221}], "vote_average": 5.7, "runtime": 91}, "6977": {"poster_path": "/3FgiDYTJiOUMQIsOVZ29jD70uXd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171600000, "overview": "Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.", "video": false, "id": 6977, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "No Country for Old Men", "tagline": "There are no clean getaways.", "vote_count": 689, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0477348", "adult": false, "backdrop_path": "/7hx7ANh11TbbvHLDXUuywYkg5rK.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Miramax Films", "id": 14}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2007-11-08", "popularity": 1.23752222435188, "original_title": "No Country for Old Men", "budget": 25000000, "cast": [{"name": "Tommy Lee Jones", "character": "Sheriff Ed Tom Bell", "id": 2176, "credit_id": "52fe446dc3a36847f80957af", "cast_id": 1, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Javier Bardem", "character": "Anton Chigurh", "id": 3810, "credit_id": "52fe446dc3a36847f80957b3", "cast_id": 2, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Llewelyn Moss", "id": 16851, "credit_id": "52fe446dc3a36847f80957b7", "cast_id": 3, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Carson Wells", "id": 57755, "credit_id": "52fe446dc3a36847f80957bb", "cast_id": 4, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Kelly Macdonald", "character": "Carla Jean Moss", "id": 9015, "credit_id": "52fe446dc3a36847f80957bf", "cast_id": 5, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 4}, {"name": "Garret Dillahunt", "character": "Wendell", "id": 39520, "credit_id": "52fe446dc3a36847f80957c3", "cast_id": 6, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 5}, {"name": "Tess Harper", "character": "Loretta Bell", "id": 41249, "credit_id": "52fe446dc3a36847f80957c7", "cast_id": 7, "profile_path": "/gJT9fBX04LjmbOzOzYcNbA2ZLF1.jpg", "order": 6}, {"name": "Barry Corbin", "character": "Ellis", "id": 12852, "credit_id": "52fe446dc3a36847f80957cb", "cast_id": 8, "profile_path": "/sI9LkzJYancOxTdC3othmzCxdp4.jpg", "order": 7}, {"name": "Stephen Root", "character": "Man who hires Wells", "id": 17401, "credit_id": "52fe446dc3a36847f80957cf", "cast_id": 9, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 8}, {"name": "Rodger Boyce", "character": "El Paso Sheriff", "id": 51732, "credit_id": "52fe446dc3a36847f80957d3", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Beth Grant", "character": "Carla Jeans Mother", "id": 5151, "credit_id": "52fe446dc3a36847f80957d7", "cast_id": 11, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 10}, {"name": "Ana Reeder", "character": "Poolside Woman", "id": 51733, "credit_id": "52fe446dc3a36847f80957db", "cast_id": 12, "profile_path": "/4tC2l2BZjui5rUeUB5Zgjvn1EV9.jpg", "order": 11}, {"name": "Kit Gwin", "character": "Sheriff's Secretary", "id": 51734, "credit_id": "52fe446dc3a36847f80957df", "cast_id": 13, "profile_path": "/n7kR0B7fErQvOqWNzpdCU6FQ13s.jpg", "order": 12}, {"name": "Zach Hopkins", "character": "Strangled Deputy", "id": 51735, "credit_id": "52fe446dc3a36847f80957e3", "cast_id": 14, "profile_path": null, "order": 13}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe446dc3a36847f80957f5", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe446dc3a36847f80957fb", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.3, "runtime": 122}, "6978": {"poster_path": "/9U88cwgT8nKLTaQu4l7QpiHWTX2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11000000, "overview": "When trucker Jack Burton agreed to take his friend Wang Chi to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for an immortal sorcerer named Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.", "video": false, "id": 6978, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Big Trouble in Little China", "tagline": "Adventure doesn't come any bigger!", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090728", "adult": false, "backdrop_path": "/fE78fvLAlOiwQYksd11Q511tAXr.jpg", "production_companies": [{"name": "TAFT Entertainment Pictures", "id": 965}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1986-05-30", "popularity": 1.02182424409516, "original_title": "Big Trouble in Little China", "budget": 25000000, "cast": [{"name": "Kurt Russell", "character": "Jack Burton", "id": 6856, "credit_id": "52fe446ec3a36847f8095899", "cast_id": 1, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Kim Cattrall", "character": "Gracie Law", "id": 2109, "credit_id": "52fe446ec3a36847f809589d", "cast_id": 2, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 1}, {"name": "Dennis Dun", "character": "Wang Chi", "id": 11392, "credit_id": "52fe446ec3a36847f80958a1", "cast_id": 3, "profile_path": "/t8jiYbpljN07h2lgDle16dVDkT3.jpg", "order": 2}, {"name": "James Hong", "character": "David Lo Pan", "id": 20904, "credit_id": "52fe446ec3a36847f80958ab", "cast_id": 5, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 2}, {"name": "Victor Wong", "character": "Egg Shen", "id": 11395, "credit_id": "52fe446ec3a36847f80958af", "cast_id": 6, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 3}, {"name": "Kate Burton", "character": "Margo", "id": 20879, "credit_id": "52fe446ec3a36847f80958b3", "cast_id": 7, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 4}, {"name": "James Pax", "character": "Lightning", "id": 53024, "credit_id": "52fe446ec3a36847f80958b7", "cast_id": 8, "profile_path": "/rGohfLMMuUcbJ1uORku4EFg96s1.jpg", "order": 5}, {"name": "Peter Kwong", "character": "Rain", "id": 97695, "credit_id": "52fe446ec3a36847f80958eb", "cast_id": 17, "profile_path": "/7IWgFkoeWvESueJHphnd9Q8RqzZ.jpg", "order": 6}, {"name": "Carter Wong", "character": "Thunder", "id": 238896, "credit_id": "52fe446ec3a36847f80958ef", "cast_id": 18, "profile_path": "/hM7FNEsOcND2I5IZ0Wu6HMMj4LD.jpg", "order": 7}, {"name": "Rummel Mor", "character": "Joe Lucky", "id": 159078, "credit_id": "52fe446ec3a36847f80958f9", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Donald Li", "character": "Eddie Lee", "id": 168246, "credit_id": "52fe446ec3a36847f809592d", "cast_id": 29, "profile_path": "/7TeLJzqIoSUMAZJRkSLMp53wujn.jpg", "order": 9}, {"name": "Suzee Pai", "character": "Miao Yin", "id": 943369, "credit_id": "52fe446ec3a36847f8095931", "cast_id": 30, "profile_path": "/8xQ6vojVW2eiE3miKbPyirZvcD1.jpg", "order": 10}, {"name": "Chao Li Chi", "character": "Uncle Chu", "id": 995587, "credit_id": "52fe446ec3a36847f8095935", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Jeff Imada", "character": "Needles", "id": 169628, "credit_id": "52fe446ec3a36847f8095939", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Craig Ng", "character": "One Ear", "id": 156058, "credit_id": "52fe446ec3a36847f809593d", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "June Kyoto Lu", "character": "White Tiger", "id": 1115618, "credit_id": "52fe446ec3a36847f8095941", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe446ec3a36847f80958a7", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.7, "runtime": 99}, "228165": {"poster_path": "/9wChSuUoQDiBKUnGTcYMkzRha60.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.", "video": false, "id": 228165, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}], "title": "The SpongeBob Movie: Sponge Out of Water", "tagline": "He's leaving his world behind, to redeem himself of these past 10 years", "vote_count": 101, "homepage": "http://www.spongebobmovie.com/", "belongs_to_collection": {"backdrop_path": "/82aBKm6QfMzNYl7jk9VG4mMPOYu.jpg", "poster_path": "/aTnC0WJcpXbTiz7hqqR0Wj7JCTV.jpg", "id": 275402, "name": "SpongeBob Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt2279373", "adult": false, "backdrop_path": "/1DMrM1RDSClzeabdrTejEYtTFMU.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Nickelodeon Animation Studios", "id": 4859}, {"name": "United Plankton Pictures", "id": 8921}, {"name": "Disruption Entertainment", "id": 10256}], "release_date": "2015-02-06", "popularity": 1.6621930317565, "original_title": "The SpongeBob Movie: Sponge Out of Water", "budget": 30000000, "cast": [{"name": "Tom Kenny", "character": "SpongeBob / Gary / Agreeable Mob Member / Waffle (voice)", "id": 78798, "credit_id": "54cd3855925141475d001b60", "cast_id": 9, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 1}, {"name": "Bill Fagerbakke", "character": "Patrick / Male Fish / Eager Customer (voice)", "id": 34398, "credit_id": "54cd387d9251414749001b9d", "cast_id": 10, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 2}, {"name": "Rodger Bumpass", "character": "Doctor / Squidward / Angry Mob Member #2 / Doughnut / Squidasaurus Rex (voice)", "id": 70615, "credit_id": "54cd38bb925141475d001b65", "cast_id": 11, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 3}, {"name": "Clancy Brown", "character": "Mr.Krabs (voice)", "id": 6574, "credit_id": "54cd38f6c3a3687f80001a70", "cast_id": 12, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 4}, {"name": "Carolyn Lawrence", "character": "Sandy (voice)", "id": 78799, "credit_id": "54cd3951c3a3687f84001eac", "cast_id": 13, "profile_path": "/dKxOl2EsuXrFPrBhyNud7vP8I6W.jpg", "order": 5}, {"name": "Mr. Lawrence", "character": "Plankton / Plankton Robot / News Anchor Fish / Mob Member (voice)", "id": 1215951, "credit_id": "54cd3987c3a3687f94001d28", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Antonio Banderas", "character": "Burger Beard", "id": 3131, "credit_id": "54cd39b69251415cb8000673", "cast_id": 15, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 7}, {"name": "Eric Bauza", "character": "Seagull (voice)", "id": 89599, "credit_id": "55340de8c3a36848ca004c27", "cast_id": 149, "profile_path": null, "order": 8}, {"name": "Tim Conway", "character": "Seagull (voice)", "id": 83414, "credit_id": "55340df59251416f88000e14", "cast_id": 150, "profile_path": "/non96yYuFTWnopBgNtj1MWcm0Z5.jpg", "order": 9}, {"name": "Eddie Deezen", "character": "Seagull (voice)", "id": 42362, "credit_id": "55340e009251415291005cfa", "cast_id": 151, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 10}, {"name": "Rob Paulsen", "character": "Seagull (voice)", "id": 43125, "credit_id": "55340e0c92514125dc00202e", "cast_id": 152, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 11}, {"name": "Kevin Michael Richardson", "character": "Seagull (voice)", "id": 24362, "credit_id": "55340e16c3a368222600602d", "cast_id": 153, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 12}, {"name": "April Stewart", "character": "Seagull (voice)", "id": 111467, "credit_id": "55340e1f92514125dc002032", "cast_id": 154, "profile_path": "/hGOsh1a7zwBTz9S8MbnyfFCNgLv.jpg", "order": 13}, {"name": "Cree Summer", "character": "Seagull (voice)", "id": 34985, "credit_id": "55340e29c3a368523e002039", "cast_id": 155, "profile_path": "/f2ezohBr8bBuLl85YTV2UNOa5j5.jpg", "order": 14}, {"name": "Billy West", "character": "Seagull (voice)", "id": 23679, "credit_id": "55340e34c3a3682226006032", "cast_id": 156, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 15}, {"name": "Carlos Alazraqui", "character": "Seagull / Dead Parrot (voice)", "id": 59784, "credit_id": "55340e41925141529b005b3a", "cast_id": 157, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 16}, {"name": "Nolan North", "character": "Seagull / Dead Parrot / Pigeon Cabbie (voice)", "id": 19508, "credit_id": "55340e4bc3a3682219006343", "cast_id": 158, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 17}, {"name": "Paul Tibbitt", "character": "Kyle / Helpful Angry Mob Member (voice)", "id": 217174, "credit_id": "55340e569251416f88000e1d", "cast_id": 159, "profile_path": null, "order": 18}, {"name": "Jill Talley", "character": "Karen (the Computer Wife) / Harold\u2019s Wife / Ice Cream Cone #2 (voice)", "id": 17414, "credit_id": "55340e7bc3a36822230059ca", "cast_id": 160, "profile_path": "/1a6pmvxeBa7aWMJIgwxwRsoi7b3.jpg", "order": 19}, {"name": "Dee Bradley Baker", "character": "Sandals / Customer #1 / Fish on Bubble / Perch Perkins / Angry Fish / Maple Syrup Jar / Waffle / Ice Cream Cone #1 / Furballs / Giant Cute Kitty / Rainbow / Spotlight Guard / Angry Guard #1 / Tough Mob Member (voice)", "id": 23680, "credit_id": "55340e86c3a3682dc2000863", "cast_id": 161, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 20}, {"name": "Sirena Irwin", "character": "Computer Voice / Shocked Mob Member (voice)", "id": 48163, "credit_id": "55340e99c3a3682dc2000867", "cast_id": 162, "profile_path": null, "order": 21}, {"name": "Mary Jo Catlett", "character": "Mrs. Puff (voice)", "id": 80634, "credit_id": "55340ea39251411014004265", "cast_id": 163, "profile_path": "/iC6TbqiOEAYhZ9mcOoXIaRuiSDp.jpg", "order": 22}, {"name": "Mark Fite", "character": "Customer #2 (voice)", "id": 122805, "credit_id": "55340ec2c3a368222600603b", "cast_id": 164, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 23}, {"name": "Thomas F. Wilson", "character": "Angry Customer #1 (voice)", "id": 1065, "credit_id": "55340ecfc3a3680bdc00061e", "cast_id": 165, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 24}, {"name": "Riki Lindhome", "character": "Popsicle (voice)", "id": 453, "credit_id": "55340ed9c3a3682219006351", "cast_id": 166, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 25}, {"name": "Kate Micucci", "character": "Popsicle (voice)", "id": 132354, "credit_id": "55340ee69251415291005d0f", "cast_id": 167, "profile_path": "/qoUOtNflMZb9l1zgg9aeMiu1MF7.jpg", "order": 26}, {"name": "Matt Berry", "character": "Bubbles (voice)", "id": 119904, "credit_id": "55340efcc3a3680bdc000630", "cast_id": 168, "profile_path": "/xlPqH1tKaBUZVTZpwH7E3EkqbUR.jpg", "order": 27}, {"name": "Ezra James Colbert", "character": "Boy on the Beach", "id": 1381855, "credit_id": "55340f39c3a368523e002049", "cast_id": 169, "profile_path": null, "order": 28}, {"name": "Lillian Ellen Jones", "character": "Sandcastle Girl", "id": 1456704, "credit_id": "55340f449251411014004276", "cast_id": 170, "profile_path": null, "order": 29}, {"name": "Brody Rose", "character": "Kicking Boy", "id": 1360421, "credit_id": "55340f4ec3a368523e00204b", "cast_id": 171, "profile_path": "/rvFQEcA9Avve03X4lWErgLdjL3e.jpg", "order": 30}, {"name": "Noah Lomax", "character": "Mikey", "id": 524503, "credit_id": "55340f589251417ae3003bca", "cast_id": 172, "profile_path": null, "order": 31}, {"name": "Jesica Ahlberg", "character": "Tanning Woman", "id": 1456705, "credit_id": "55340f62925141101400427b", "cast_id": 173, "profile_path": null, "order": 32}, {"name": " Nina Repeta", "character": "Woman with Stroller", "id": 933509, "credit_id": "55340f6e92514125dc002040", "cast_id": 174, "profile_path": null, "order": 33}, {"name": "Corinne Engstrom", "character": "Young Woman Customer", "id": 1456706, "credit_id": "55340f7ac3a3680bdc000641", "cast_id": 175, "profile_path": null, "order": 34}, {"name": "Chip Lane", "character": "Customer", "id": 1190891, "credit_id": "55340f88c3a3682dc2000877", "cast_id": 176, "profile_path": null, "order": 35}, {"name": "Brick Jackson", "character": "Customer", "id": 1456708, "credit_id": "55340f91c3a368523e002053", "cast_id": 177, "profile_path": null, "order": 36}, {"name": "Keller Moore", "character": "Older Boy Customer", "id": 1456709, "credit_id": "55340f9b9251417ae3003bcf", "cast_id": 178, "profile_path": null, "order": 37}, {"name": "Bailey Campbell", "character": "Boy Customer #2", "id": 1456710, "credit_id": "55340fa69251416f88000e38", "cast_id": 179, "profile_path": null, "order": 38}, {"name": "Henry Davis Morales", "character": "Young Boy with Cone", "id": 1456711, "credit_id": "55340fb092514125dc002047", "cast_id": 180, "profile_path": null, "order": 39}, {"name": "Nicolette Noble", "character": "Surfer Girl with Cone", "id": 1456712, "credit_id": "55340fbb925141675e000368", "cast_id": 181, "profile_path": null, "order": 40}, {"name": "Kari Klinkenborg", "character": "Woman on Sidewalk #1", "id": 1248289, "credit_id": "55340fc792514140b5003e7d", "cast_id": 182, "profile_path": null, "order": 41}, {"name": "Lisa Datz", "character": "Amy", "id": 138035, "credit_id": "55340fcf925141101400428e", "cast_id": 183, "profile_path": null, "order": 42}, {"name": "Dane Northcutt", "character": "Nut Vendor Customer", "id": 159452, "credit_id": "55340fdec3a3680bdc00064c", "cast_id": 184, "profile_path": null, "order": 43}, {"name": "Meredith Jackson", "character": "Mother with Cone", "id": 1456713, "credit_id": "55340fea92514140b5003e82", "cast_id": 185, "profile_path": null, "order": 44}, {"name": "Ella Adele Burns", "character": "Young Girl with Cone", "id": 1456714, "credit_id": "55340ff8925141675e000373", "cast_id": 186, "profile_path": null, "order": 45}, {"name": "Mike Benitez", "character": "Nut Vendor", "id": 171896, "credit_id": "55341000c3a3682219006362", "cast_id": 187, "profile_path": null, "order": 46}, {"name": "Kron Moore", "character": "Woman on Sidewalk", "id": 1395039, "credit_id": "5534100cc3a36848ca004c51", "cast_id": 188, "profile_path": "/y0FhbSiVnGtaWQnGNk2XUpNsQYG.jpg", "order": 47}, {"name": "Eamon Sheehan", "character": "Young Father", "id": 1456715, "credit_id": "55341017c3a3680bdc000652", "cast_id": 189, "profile_path": null, "order": 48}, {"name": "Matteo Spears Satriano", "character": "Little Boy on Lifeguard Chair", "id": 1456716, "credit_id": "55341022c3a36848ca004c55", "cast_id": 190, "profile_path": null, "order": 49}, {"name": "John Brown", "character": "Food Truck Patron", "id": 1456717, "credit_id": "5534104e925141529b005b68", "cast_id": 191, "profile_path": null, "order": 50}, {"name": "David Dickson", "character": "Man Eating Krabby Patty", "id": 1456718, "credit_id": "5534105ac3a3680bdc00065d", "cast_id": 192, "profile_path": null, "order": 51}, {"name": "Ashley Nicole Hudson", "character": "ND Beach Goer", "id": 1456719, "credit_id": "55341064c3a3682219006371", "cast_id": 193, "profile_path": null, "order": 52}, {"name": "Amy Lynn Tuttle", "character": "ND Beach Goer", "id": 1456720, "credit_id": "5534106e925141101400429c", "cast_id": 194, "profile_path": null, "order": 53}, {"name": "Marian Green", "character": "ND Beach Goer", "id": 1456721, "credit_id": "5534107b925141675e000384", "cast_id": 195, "profile_path": null, "order": 54}, {"name": "Jake Kilfoyle", "character": "ND Beach Goer", "id": 1456722, "credit_id": "5534108592514125dc002060", "cast_id": 196, "profile_path": null, "order": 55}, {"name": "Dean Neistat", "character": "ND Beach Goer", "id": 1456723, "credit_id": "5534108f9251417ae3003be5", "cast_id": 197, "profile_path": null, "order": 56}, {"name": "Ashley Siloac", "character": "Beach Goer", "id": 1456724, "credit_id": "5534109bc3a3680bdc000668", "cast_id": 198, "profile_path": null, "order": 57}, {"name": "Epic Lloyd", "character": "Surfer Dude (voice)", "id": 1456725, "credit_id": "553410a69251415291005d2f", "cast_id": 199, "profile_path": null, "order": 58}, {"name": "Nice Peter", "character": "Surfer Dude", "id": 1456726, "credit_id": "553410b2c3a36852de0020d4", "cast_id": 200, "profile_path": null, "order": 59}, {"name": "Stephen Hillenburg", "character": "Baby in Stroller (voice)", "id": 70651, "credit_id": "553410bfc3a36822230059eb", "cast_id": 201, "profile_path": null, "order": 60}, {"name": "Lori Alan", "character": "Pearl (voice)", "id": 24358, "credit_id": "553410d0925141529b005b76", "cast_id": 202, "profile_path": "/mNfJWzuaKgkIaK7CuirXOMosd2h.jpg", "order": 61}], "directors": [{"name": "Paul Tibbitt", "department": "Directing", "job": "Director", "credit_id": "52fe4ec19251416c751613bb", "profile_path": null, "id": 217174}], "vote_average": 6.1, "runtime": 93}, "64328": {"poster_path": "/Ai7JRZFEXXOX7rhgfeL861zZtWv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88355068, "overview": "When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet roommate, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.", "video": false, "id": 64328, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "The Muppets", "tagline": "They're closer than you think.", "vote_count": 184, "homepage": "http://disney.go.com/muppets/", "belongs_to_collection": {"backdrop_path": "/gMqWZhJnAYhVuHB6kVFh7Hjvwfo.jpg", "poster_path": "/8Ew8EIdFFurMMYjSbWPu1Hl4vLX.jpg", "id": 256377, "name": "The Muppet Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1204342", "adult": false, "backdrop_path": "/pf2sIKxykHdiJofo3o35S33UIC0.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2011-11-23", "popularity": 0.99474280032113, "original_title": "The Muppets", "budget": 50000000, "cast": [{"name": "Amy Adams", "character": "Mary", "id": 9273, "credit_id": "52fe46d5c3a368484e0a63b9", "cast_id": 7, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Jason Segel", "character": "Gary", "id": 41088, "credit_id": "52fe46d5c3a368484e0a63c1", "cast_id": 9, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Miss Piggy's Receptionist", "id": 5081, "credit_id": "52fe46d5c3a368484e0a63bd", "cast_id": 8, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "John Krasinski", "character": "Himself", "id": 17697, "credit_id": "52fe46d5c3a368484e0a63ad", "cast_id": 3, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 3}, {"name": "Zach Galifianakis", "character": "Hobo Joe", "id": 58225, "credit_id": "52fe46d5c3a368484e0a63b1", "cast_id": 4, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 4}, {"name": "Jack Black", "character": "Himself", "id": 70851, "credit_id": "52fe46d5c3a368484e0a63b5", "cast_id": 5, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 5}, {"name": "Jim Parsons", "character": "Human Walter", "id": 5374, "credit_id": "52fe46d5c3a368484e0a63c5", "cast_id": 10, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 6}, {"name": "Mickey Rooney", "character": "Smalltown Resident", "id": 1937, "credit_id": "52fe46d5c3a368484e0a63c9", "cast_id": 11, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 7}, {"name": "Neil Patrick Harris", "character": "Himself", "id": 41686, "credit_id": "52fe46d5c3a368484e0a63cd", "cast_id": 13, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 8}, {"name": "Chris Cooper", "character": "Tex Richman", "id": 2955, "credit_id": "52fe46d5c3a368484e0a63d1", "cast_id": 15, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 9}, {"name": "Ken Jeong", "character": "'Punch Teacher' Host", "id": 83586, "credit_id": "52fe46d5c3a368484e0a63d5", "cast_id": 16, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 10}, {"name": "Alan Arkin", "character": "Tour Guide", "id": 1903, "credit_id": "52fe46d5c3a368484e0a63d9", "cast_id": 17, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 11}, {"name": "Matt Vogel", "character": "Sgt. Floyd Pepper / Camilla / Sweetums / 80's Robot / Lew Zealand / Uncle Deadly / Roowlf / Crazy Harry (voice)", "id": 135467, "credit_id": "52fe46d5c3a368484e0a63dd", "cast_id": 18, "profile_path": "/A8675oSlBx3Gt18xgFXPHupmVkr.jpg", "order": 12}, {"name": "David Rudman", "character": "Scooter / Janice / Miss Poogy / Wayne (voice)", "id": 192632, "credit_id": "52fe46d5c3a368484e0a63e1", "cast_id": 19, "profile_path": "/gbK487QzcdwHul2HKrEEiaCY9co.jpg", "order": 13}, {"name": "Rashida Jones", "character": "Veronica Martin", "id": 80591, "credit_id": "52fe46d5c3a368484e0a63e5", "cast_id": 20, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 14}, {"name": "Steve Whitmire", "character": "Kermit / Beaker / Statler / Rizzo / Link Hogthrob / The Newsman (voice)", "id": 64180, "credit_id": "52fe46d5c3a368484e0a63e9", "cast_id": 21, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 15}, {"name": "Dave Grohl", "character": "Animool", "id": 533061, "credit_id": "52fe46d5c3a368484e0a6405", "cast_id": 28, "profile_path": "/ywJweFzFBeZXXJNmDnWT0xLrH37.jpg", "order": 16}, {"name": "Eric Jacobson", "character": "Miss Piggy / Fozzie Bear / Animal / Sam Eagle / Marvin Suggs (voice)", "id": 97185, "credit_id": "52fe46d5c3a368484e0a63ed", "cast_id": 22, "profile_path": "/mfrQc4O4ntkCTSUYjdsnRXKvHXb.jpg", "order": 17}, {"name": "Dave Goelz", "character": "Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf / Kermit Moopet (voice)", "id": 64181, "credit_id": "52fe46d5c3a368484e0a63f1", "cast_id": 23, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 18}, {"name": "Justin Tinucci", "character": "Laughing Kid", "id": 1030312, "credit_id": "52fe46d5c3a368484e0a63fb", "cast_id": 26, "profile_path": "/97TNa2Ba4gsLlEA6QXfSXsEVhiK.jpg", "order": 19}, {"name": "Sarah Silverman", "character": "Greeter", "id": 7404, "credit_id": "52fe46d5c3a368484e0a6409", "cast_id": 29, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 20}, {"name": "Eddie Pepitone", "character": "Postman", "id": 1214063, "credit_id": "53f3ab59c3a36822f20001dd", "cast_id": 30, "profile_path": "/90SZlLy5HQ0DcE2R0NwEpsvqfXJ.jpg", "order": 21}], "directors": [{"name": "James Bobin", "department": "Directing", "job": "Director", "credit_id": "52fe46d5c3a368484e0a63a9", "profile_path": "/reixB8bAjIoVDyTwjNwRzB47yT2.jpg", "id": 26205}], "vote_average": 6.3, "runtime": 103}, "9356": {"poster_path": "/7HtSFUYBPOUd9ylUXU0LyPsxpRm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mollie and James are together and raising a family, which now consists of an older Mikey and his baby sister, Julie. Tension between the siblings arises, and as well with Mollie and James when Mollie's brother Stuart moves in. Mikey is also learning how to use the toilet for the first time.", "video": false, "id": 9356, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Look Who's Talking Too", "tagline": "Mikey\u2019s back and about to face his greatest challenge\u2026 his new sister.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2jEwMXBICqARNmhFFFDu1IvmJCK.jpg", "poster_path": "/ez7hA34uLtOuGIwZvwhlpr53tXh.jpg", "id": 9521, "name": "Look Who's Talking Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100050", "adult": false, "backdrop_path": "/AtQGCV8719WlfGYGRapkupivzk.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1990-12-14", "popularity": 0.330293692788807, "original_title": "Look Who's Talking Too", "budget": 0, "cast": [{"name": "John Travolta", "character": "James Ubriacco", "id": 8891, "credit_id": "52fe44ecc3a36847f80b21e1", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Kirstie Alley", "character": "Mollie Ubriacco", "id": 1796, "credit_id": "52fe44ecc3a36847f80b21e5", "cast_id": 2, "profile_path": "/fQ1EOV3dazf05uhrEVqMN2S3T0U.jpg", "order": 1}, {"name": "Bruce Willis", "character": "Mikey (voice)", "id": 62, "credit_id": "52fe44ecc3a36847f80b21e9", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 2}, {"name": "Roseanne Barr", "character": "Julie (voice)", "id": 46393, "credit_id": "52fe44edc3a36847f80b221b", "cast_id": 13, "profile_path": "/p36LMNfQssOQb5vUyYJRBEhQsaR.jpg", "order": 3}, {"name": "Gilbert Gottfried", "character": "Joey", "id": 15832, "credit_id": "52fe44ecc3a36847f80b21ed", "cast_id": 5, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 4}, {"name": "Damon Wayans", "character": "Eddie (voice)", "id": 22675, "credit_id": "5482285dc3a36829ae0064c4", "cast_id": 14, "profile_path": "/rQ1KV896Hm0jzLTOdksbHoXh67l.jpg", "order": 5}, {"name": "Mel Brooks", "character": "Mr. Toilet Man (voice)", "id": 14639, "credit_id": "54822898c3a36829ae0064c8", "cast_id": 15, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 6}, {"name": "Olympia Dukakis", "character": "Rosie", "id": 3019, "credit_id": "548228d6c3a36829a3006b9a", "cast_id": 16, "profile_path": "/A6Lb6pUF1Rr755Oi2vQvxzf0eHH.jpg", "order": 7}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b220b", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 5.2, "runtime": 81}, "47964": {"poster_path": "/xO42aJxjWiVnvWaAliq9iWjMpHZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 304654182, "overview": "Iconoclastic, take-no-prisoners cop John McClane, finds himself for the first time on foreign soil after traveling to Moscow to help his wayward son Jack - unaware that Jack is really a highly-trained CIA operative out to stop a nuclear weapons heist. With the Russian underworld in pursuit, and battling a countdown to war, the two McClanes discover that their opposing methods make them unstoppable heroes.", "video": false, "id": 47964, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "A Good Day to Die Hard", "tagline": "Yippee Ki-Yay Mother Russia", "vote_count": 2567, "homepage": "http://www.diehardmovie.com/", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1606378", "adult": false, "backdrop_path": "/17zArExB7ztm6fjUXZwQWgGMC9f.jpg", "production_companies": [{"name": "Mid Atlantic Films", "id": 2735}, {"name": "Ingenious Media", "id": 290}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Temple Hill Entertainment", "id": 12292}, {"name": "TSG Entertainment", "id": 22213}, {"name": "Giant Pictures", "id": 34396}, {"name": "Origo Film Group", "id": 34397}], "release_date": "2013-02-14", "popularity": 2.12771543095477, "original_title": "A Good Day to Die Hard", "budget": 92000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe4751c3a36847f812f049", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Jai Courtney", "character": "Jack McClane", "id": 224181, "credit_id": "52fe4751c3a36847f812f05f", "cast_id": 5, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 1}, {"name": "Sebastian Koch", "character": "Komorov", "id": 8197, "credit_id": "52fe4751c3a36847f812f063", "cast_id": 7, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 2}, {"name": "Mary Elizabeth Winstead", "character": "Lucy McClane", "id": 17628, "credit_id": "52fe4751c3a36847f812f087", "cast_id": 18, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 3}, {"name": "Yuliya Snigir", "character": "Irina", "id": 80998, "credit_id": "52fe4751c3a36847f812f07b", "cast_id": 15, "profile_path": "/ozW9ofRD0nFgzfMQv4w5h0sNRC1.jpg", "order": 4}, {"name": "Radivoje Bukvi\u0107", "character": "Alik", "id": 230400, "credit_id": "5324f548c3a3683f04001b71", "cast_id": 22, "profile_path": "/aiTCplxQF67wOASBAdHGp7fhZ6U.jpg", "order": 5}, {"name": "Cole Hauser", "character": "Collins", "id": 6614, "credit_id": "52fe4751c3a36847f812f067", "cast_id": 8, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 6}, {"name": "Amaury Nolasco", "character": "Murphy", "id": 17341, "credit_id": "52fe4751c3a36847f812f06b", "cast_id": 9, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 7}, {"name": "Sergey Kolesnikov", "character": "Chagarin", "id": 1150430, "credit_id": "52fe4751c3a36847f812f08b", "cast_id": 19, "profile_path": "/n7NDZIAlWL8NJAJ2y5aFUG3DhC4.jpg", "order": 8}, {"name": "Roman Lukn\u00e1r", "character": "Anton", "id": 130903, "credit_id": "5324f5b0c3a36824af00158f", "cast_id": 23, "profile_path": "/dp5HqVOoksyEENiQ7WqPA2SGZmN.jpg", "order": 9}, {"name": "Zolee Ganxsta", "character": "Russian Mafia Member", "id": 64413, "credit_id": "52fe4751c3a36847f812f07f", "cast_id": 16, "profile_path": "/HuBAMnIyHU096JIyQM4PkjNcjp.jpg", "order": 10}, {"name": "P\u00e9ter Tak\u00e1tsy", "character": "Prosecutor", "id": 456735, "credit_id": "5324f698c3a3683f04001ba1", "cast_id": 24, "profile_path": "/l0mth8pVJoB1lMUE45tkjJIwOrN.jpg", "order": 11}, {"name": "Pavel Lychnikoff", "character": "Taxi driver", "id": 52762, "credit_id": "52fe4751c3a36847f812f077", "cast_id": 14, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 12}, {"name": "Megalyn Echikunwoke", "character": "Reporter", "id": 25382, "credit_id": "52fe4751c3a36847f812f08f", "cast_id": 20, "profile_path": "/8orS1eGrZ9RMN7HlXtX2hYHWtIl.jpg", "order": 13}, {"name": "Melissa Tang", "character": "Lucas", "id": 212778, "credit_id": "5324f807c3a3685725008e64", "cast_id": 25, "profile_path": "/x3emNzx65NPNoYcL13iI6fHC5I0.jpg", "order": 14}, {"name": "Anne Vyalitsyna", "character": "", "id": 1059926, "credit_id": "52fe4751c3a36847f812f06f", "cast_id": 12, "profile_path": "/abJPt45QwZk4clCgaDP95hdkOPv.jpg", "order": 15}, {"name": "Attila \u00c1rpa", "character": "Russian Mafia Member", "id": 125684, "credit_id": "52fe4751c3a36847f812f073", "cast_id": 13, "profile_path": "/8QdXIFpA4eCSM97wVyD0MD7Bw8R.jpg", "order": 16}, {"name": "Norbert N\u00f6v\u00e9nyi", "character": "Russian Mafia Member", "id": 235317, "credit_id": "52fe4751c3a36847f812f083", "cast_id": 17, "profile_path": "/yYaAsahgvLNEBqOCBMCaFxq2ztw.jpg", "order": 17}, {"name": "Yuliya Snigir", "character": "Irina", "id": 1394094, "credit_id": "54803be9c3a36829ae001d97", "cast_id": 33, "profile_path": null, "order": 18}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4751c3a36847f812f04f", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.2, "runtime": 98}, "13455": {"poster_path": "/shk0MSuHOdBiQfHjLdcXDF6iXC9.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45465299, "overview": "After his father, an assassin, is brutally murdered, Nick Gant vows revenge on Division, the covert government agency that dabbles in psychic warfare and experimental drugs. Hiding in Hong Kong's underworld, Nick assembles a band of rogue psychics dedicated to destroying Division. Together with Cassie, a teenage clairvoyant, Nick goes in search of a missing girl and a stolen suitcase that could be the key to accomplishing their mutual goal.", "video": false, "id": 13455, "genres": [{"id": 28, "name": "Action"}], "title": "Push", "tagline": "One push can change everything.", "vote_count": 179, "homepage": "http://www.push-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465580", "adult": false, "backdrop_path": "/cta0YLPKH1Xb9EHmZAWFmLVQHeS.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Icon Productions", "id": 152}, {"name": "Infinity Features Entertainment", "id": 212}], "release_date": "2009-02-06", "popularity": 0.536965621601548, "original_title": "Push", "budget": 38000000, "cast": [{"name": "Dakota Fanning", "character": "Cassie Holmes", "id": 501, "credit_id": "52fe456b9251416c75055c0f", "cast_id": 19, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 0}, {"name": "Camilla Belle", "character": "Alyssa English", "id": 38670, "credit_id": "52fe456b9251416c75055c13", "cast_id": 20, "profile_path": "/dbfyIG91T5ROjDKRjWN8FpMcTay.jpg", "order": 1}, {"name": "Chris Evans", "character": "Nick Gant", "id": 16828, "credit_id": "52fe456b9251416c75055c17", "cast_id": 21, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Djimon Hounsou", "character": "Agent Henry Carver", "id": 938, "credit_id": "52fe456b9251416c75055c1b", "cast_id": 22, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 3}, {"name": "Maggie Siff", "character": "Teresa Stowe", "id": 74537, "credit_id": "52fe456b9251416c75055c1f", "cast_id": 23, "profile_path": "/99XSlFi6GlBPGLmbW0i1Jv4aR6T.jpg", "order": 4}, {"name": "Cliff Curtis", "character": "Hook", "id": 7248, "credit_id": "52fe456b9251416c75055c23", "cast_id": 24, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 5}, {"name": "Joel Gretsch", "character": "Nick's Father", "id": 25376, "credit_id": "52fe456b9251416c75055c27", "cast_id": 25, "profile_path": "/5CeKN4wIQUAvF3mlRdeVAQ5ybSs.jpg", "order": 6}, {"name": "Neil Jackson", "character": "Victor Budarin", "id": 20289, "credit_id": "52fe456b9251416c75055c2b", "cast_id": 26, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 7}, {"name": "Nate Mooney", "character": "Pinky Stein", "id": 74538, "credit_id": "52fe456b9251416c75055c2f", "cast_id": 27, "profile_path": "/g9GCabrHoMfNP7NfhS8Q0VkVJ2E.jpg", "order": 8}, {"name": "Colin Ford", "character": "Young Nick", "id": 74539, "credit_id": "52fe456b9251416c75055c33", "cast_id": 28, "profile_path": "/6S1dOJnIuaKAXoVxTePNOQJbsFU.jpg", "order": 9}, {"name": "Scott Michael Campbell", "character": "Agent Holden", "id": 65728, "credit_id": "52fe456b9251416c75055c37", "cast_id": 29, "profile_path": "/kMHZLJUwa8QCaLsBEAdEj8UtMGL.jpg", "order": 10}, {"name": "Brandon Rhea", "character": "Special Department Medical Officer", "id": 52902, "credit_id": "52fe456b9251416c75055c3b", "cast_id": 30, "profile_path": "/yev7IxmjSviqaOIkvw53C8pAV8K.jpg", "order": 11}, {"name": "Hal Yamanouchi", "character": "Pop Father", "id": 74540, "credit_id": "52fe456b9251416c75055c3f", "cast_id": 31, "profile_path": "/rP1dLPz5Sn4nSAXTco4sKioEvQZ.jpg", "order": 12}, {"name": "Corey Stoll", "character": "Agent Mack", "id": 74541, "credit_id": "52fe456b9251416c75055c43", "cast_id": 32, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 13}, {"name": "Ming-Na Wen", "character": "Emily Hu", "id": 21702, "credit_id": "52fe456b9251416c75055c47", "cast_id": 33, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 14}], "directors": [{"name": "Paul McGuigan", "department": "Directing", "job": "Director", "credit_id": "52fe456a9251416c75055ba5", "profile_path": "/6p6uzaEtKfx7ota7AdQXlantt5W.jpg", "id": 2291}], "vote_average": 5.9, "runtime": 111}, "269148": {"poster_path": "/8I5RSXcyZqXcXXUaMbKrHZCzf5i.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Samba migrated to France 10 years ago from Senegal, and has since been plugging away at various lowly jobs. Alice is a senior executive who has recently undergone a burnout. Both struggle to get out of their dead-end lives Samba's willing to do whatever it takes to get working papers, while Alice tries to get her life back on track until fate draws them together", "video": false, "id": 269148, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Samba", "tagline": "", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3399024", "adult": false, "backdrop_path": "/4GLL1cNyQgSNDkKPrbjzNGHTWl.jpg", "production_companies": [{"name": "Ten Films", "id": 8018}, {"name": "Gaumont", "id": 9}, {"name": "Quad Productions", "id": 7038}], "release_date": "2014-10-15", "popularity": 1.18475735843955, "original_title": "Samba", "budget": 0, "cast": [{"name": "Omar Sy", "character": "Samba", "id": 78423, "credit_id": "536dff140e0a2647d400fa40", "cast_id": 2, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 1}, {"name": "Tahar Rahim", "character": "Wilson", "id": 81051, "credit_id": "536dff1e0e0a2647d800fd18", "cast_id": 3, "profile_path": "/wXKlcceUG1aRzisnL2nxbQVe18w.jpg", "order": 2}, {"name": "Charlotte Gainsbourg", "character": "Alice", "id": 4273, "credit_id": "536dff260e0a2647c400ff53", "cast_id": 4, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 3}, {"name": "Izia Higelin", "character": "Manu", "id": 1121169, "credit_id": "536dff310e0a2647c400ff58", "cast_id": 5, "profile_path": "/loTZGs7xPNJ8avd6p5fxogbKS50.jpg", "order": 4}, {"name": "H\u00e9l\u00e8ne Vincent", "character": "Marcelle", "id": 1141, "credit_id": "54dd08d1c3a3684558000125", "cast_id": 6, "profile_path": "/6hNLe48tHMucffEPGUQyQxR9Zr4.jpg", "order": 5}, {"name": "Christiane Millet", "character": "Madeleine", "id": 20083, "credit_id": "54dd08f4925141194d000136", "cast_id": 7, "profile_path": "/w2M5WrwtyHkflfZW6EMXO65hkxo.jpg", "order": 6}], "directors": [{"name": "Eric Toledano", "department": "Directing", "job": "Director", "credit_id": "536dfee60e0a2647d800fd09", "profile_path": null, "id": 84425}, {"name": "Olivier Nakache", "department": "Directing", "job": "Director", "credit_id": "536dfef20e0a2647c80101c5", "profile_path": null, "id": 84426}], "vote_average": 6.6, "runtime": 120}, "72545": {"poster_path": "/jMu45saMeqB2RGDqV3HoQ3XgZ2a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 355692760, "overview": "Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.", "video": false, "id": 72545, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Journey 2: The Mysterious Island", "tagline": "Believe the Impossible. Discover the Incredible.", "vote_count": 291, "homepage": "http://www.themysteriousisland.com/", "belongs_to_collection": {"backdrop_path": "/76AoK99XDWgIRrhtyrB0kOWYyfe.jpg", "poster_path": "/f3InNhgFNIvW3pwmjzB7lVtr028.jpg", "id": 72547, "name": "Journey Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1397514", "adult": false, "backdrop_path": "/hFyKO3lkv6hY0goDa1Zv6MLtCD5.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}], "release_date": "2012-02-10", "popularity": 1.36575382319577, "original_title": "Journey 2: The Mysterious Island", "budget": 79000000, "cast": [{"name": "Dwayne Johnson", "character": "Hank", "id": 18918, "credit_id": "52fe4871c3a368484e0f87e1", "cast_id": 12, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Sean", "id": 27972, "credit_id": "52fe4871c3a368484e0f87e5", "cast_id": 14, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 2}, {"name": "Kristin Davis", "character": "Liz", "id": 38025, "credit_id": "52fe4871c3a368484e0f87e9", "cast_id": 15, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 3}, {"name": "Vanessa Hudgens", "character": "Kailani", "id": 67599, "credit_id": "52fe4871c3a368484e0f87ed", "cast_id": 17, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Gabato", "id": 40481, "credit_id": "52fe4871c3a368484e0f87f1", "cast_id": 18, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Michael Caine", "character": "Alexander", "id": 3895, "credit_id": "52fe4871c3a368484e0f87f5", "cast_id": 19, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 6}, {"name": "Anna Colwell", "character": "Jessica", "id": 118593, "credit_id": "54d7380bc3a3685431002094", "cast_id": 20, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 7}, {"name": "Stephen Caudill", "character": "Cop", "id": 223021, "credit_id": "54d7381f9251417160005639", "cast_id": 21, "profile_path": "/kK3YtJmfHzJ6s25ZWG6B1LizeYl.jpg", "order": 8}, {"name": "Branscombe Richmond", "character": "Tour Guide", "id": 106730, "credit_id": "54d73834c3a3683b8f0056c3", "cast_id": 22, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 9}, {"name": "Walter Bankson", "character": "Hockey Player", "id": 1424580, "credit_id": "54d73849c3a368543100209e", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Brad Peyton", "department": "Directing", "job": "Director", "credit_id": "52fe4871c3a368484e0f87a1", "profile_path": "/v71weTNgqA1oQCfduUu40iG5RQy.jpg", "id": 132876}], "vote_average": 5.8, "runtime": 94}, "228194": {"poster_path": "/zQWT270zHKC4xVs0ogUwrU8EwqB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88880821, "overview": "A story centered around an Indian family who moves to France and opens a restaurant across the street from a Michelin-starred French restaurant.", "video": false, "id": 228194, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hundred-Foot Journey", "tagline": "Competition is the Spice of Life", "vote_count": 148, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2980648", "adult": false, "backdrop_path": "/7xHnyT8i7aO9AzGSBAEuH0a9Amy.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Harpo Films", "id": 3298}, {"name": "DreamWorks Studios", "id": 31893}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Participant Media", "id": 6735}, {"name": "Reliance Entertainment", "id": 7294}], "release_date": "2014-08-08", "popularity": 1.42358747583911, "original_title": "The Hundred-Foot Journey", "budget": 22000000, "cast": [{"name": "Helen Mirren", "character": "Madam Mallory", "id": 15735, "credit_id": "52fe4ec29251416c75161571", "cast_id": 1, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 0}, {"name": "Manish Dayal", "character": "Hassan", "id": 964971, "credit_id": "52fe4ec29251416c75161575", "cast_id": 2, "profile_path": "/orzIF6tazSEMQE9DmA8iC50eokd.jpg", "order": 1}, {"name": "Om Puri", "character": "Papa", "id": 11851, "credit_id": "52fe4ec29251416c75161579", "cast_id": 3, "profile_path": "/omm9W5Ae1uwccnLPeVB5PWqh0ix.jpg", "order": 2}, {"name": "Charlotte Le Bon", "character": "Marguerite", "id": 1021684, "credit_id": "52fe4ec29251416c7516157d", "cast_id": 4, "profile_path": "/vozgdySw0fnS3ue6AFcTsfHRbYq.jpg", "order": 3}, {"name": "Rohan Chand", "character": "Young Hassan", "id": 935701, "credit_id": "538e1cd60e0a2632c6000121", "cast_id": 7, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 4}, {"name": "Juhi Chawla", "character": "Mama", "id": 35810, "credit_id": "538e1cdd0e0a2632b7000112", "cast_id": 8, "profile_path": "/xi127HU2YD1H06d116XlGLhJHVF.jpg", "order": 5}, {"name": "Farzana Dua Elahe", "character": "Mahira", "id": 1327299, "credit_id": "538e1ce60e0a2632b7000115", "cast_id": 9, "profile_path": "/y9P19N082ldmrgS8cvjSJUmj7Wn.jpg", "order": 6}, {"name": "Dillon Mitra", "character": "Mukthar Kadam", "id": 1327300, "credit_id": "538e1cf20e0a2632c3000125", "cast_id": 10, "profile_path": "/69ocNhK1S4u37NmKTchG3uPHNCD.jpg", "order": 7}, {"name": "Jean Kinsell", "character": "French Critic", "id": 1327301, "credit_id": "538e1cfd0e0a2632c9000117", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Amit Shah", "character": "Mansur", "id": 150072, "credit_id": "551bf076c3a368766900354c", "cast_id": 44, "profile_path": "/bd5zJCXXA2h9TCuPVO0XkwU8fw3.jpg", "order": 9}, {"name": "Aria Pandya", "character": "Aisha", "id": 1418323, "credit_id": "54c4c9b79251416eae01022b", "cast_id": 15, "profile_path": "/r4ht3xWZilU6hHVMJzHfoeAJ9uX.jpg", "order": 11}, {"name": "Michel Blanc", "character": "Mayor", "id": 21175, "credit_id": "54c4ca82c3a36814210138dd", "cast_id": 16, "profile_path": "/6sLalr8OqR6WMlxzBR4C6OrsrnU.jpg", "order": 12}, {"name": "Cl\u00e9ment Sibony", "character": "Jean-Pierre", "id": 40939, "credit_id": "54c4cc04c3a3681421013909", "cast_id": 17, "profile_path": "/wEH1cT6DavVB5c3H0mn2iR88cPa.jpg", "order": 13}, {"name": "Vincent Elbaz", "character": "Paul", "id": 54918, "credit_id": "54c4ccab925141243200785c", "cast_id": 18, "profile_path": "/qfATCrMWRBVMiryb34uhrYTK3G6.jpg", "order": 14}, {"name": "Alban Aumard", "character": "Marcel", "id": 1088197, "credit_id": "54c4ce89925141243200787f", "cast_id": 19, "profile_path": "/4Y41NxGrTNCN3ZqSptehr5zDLs4.jpg", "order": 15}, {"name": "Shuna Lemoine", "character": "Mayor's Wife", "id": 1418346, "credit_id": "54c4ceff9251412432007897", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Antoine Blanquefort", "character": "Thomas", "id": 305036, "credit_id": "54c4d06f9251412ece001205", "cast_id": 21, "profile_path": "/9Dmf3M7rbOQxubxLyA1kbjkuLTq.jpg", "order": 17}, {"name": "Malcolm Granath", "character": "Swedish Chef", "id": 1418363, "credit_id": "54c4d1a89251412d9c001165", "cast_id": 22, "profile_path": "/aOboF7KDP0H9jShisJqwZJ5xlSU.jpg", "order": 18}, {"name": "Abhijit Buddhisagar", "character": "Baleine Grise Porter", "id": 1418368, "credit_id": "54c4d22c9251412e830012b5", "cast_id": 23, "profile_path": "/ba91RRkvriXFqeEkAwDVXrsq42t.jpg", "order": 19}, {"name": "Masood Akhtar", "character": "Anwar", "id": 35821, "credit_id": "54c4d645c3a3684a1f0012e1", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Arthur Mazet", "character": "Waiter", "id": 228718, "credit_id": "54c4d73dc3a36878d0007d81", "cast_id": 25, "profile_path": "/32HIGA41JAfCpGX8pvqxLVQouIR.jpg", "order": 21}, {"name": "Laetitia de Fombelle", "character": "Female Officer", "id": 1076707, "credit_id": "54c4d88dc3a368789b007d9f", "cast_id": 26, "profile_path": "/qKzzJE6NyOpXXKQ2H6T3GRFgq6p.jpg", "order": 22}, {"name": "C\u00e9dric Weber", "character": "Officer", "id": 1375629, "credit_id": "54c4d9eac3a368333800350f", "cast_id": 27, "profile_path": "/AnBbnt7VO8k5CyeALn1VP7bpuUW.jpg", "order": 23}, {"name": "Piero Filippi", "character": "Dog Walker", "id": 1418556, "credit_id": "54c52560c3a36878fb00755f", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Robert Gailhard", "character": "Mushroom Stall Holder", "id": 1418558, "credit_id": "54c525b7c3a368792900879f", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Matyelok Gibbs", "character": "Lady Shepherd", "id": 17479, "credit_id": "54c52702c3a368789b008526", "cast_id": 30, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 26}, {"name": "Paul Daubeze", "character": "Poultry Man", "id": 1418560, "credit_id": "54c5272bc3a3684a1f001aa0", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Didier Joy", "character": "Monsieur Itan", "id": 1418561, "credit_id": "54c527619251412ece001caf", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Max Rangotte", "character": "Angry Man", "id": 1418562, "credit_id": "54c527b99251416eae010a63", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Saachi Parekh", "character": "Young Aisha", "id": 1418563, "credit_id": "54c527ecc3a36878fb00759b", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Shaunak Parekh", "character": "Young Mukhtar", "id": 1418564, "credit_id": "54c52831c3a368792c0076e5", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "St\u00e9phanie Renouvin", "character": "Newsreader", "id": 1418569, "credit_id": "54c52ec8c3a36878fb00760f", "cast_id": 36, "profile_path": "/rB1F4IPeCoN9ers1CpBWNAPjF0m.jpg", "order": 32}, {"name": "Audrey Meschi", "character": "Baleine Grise Cook", "id": 1402174, "credit_id": "54c5301d9251416185003810", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Christian Allieres", "character": "Cafe Server", "id": 1418572, "credit_id": "54c53042925141219b00058d", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Patrick Blatger", "character": "Mechanic", "id": 1418573, "credit_id": "54c53089c3a368789b0085e3", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Frederic Violante", "character": "Bike Rider", "id": 1418574, "credit_id": "54c530c5c3a368789b0085ee", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Chantal Filippi", "character": "Dog Walker's Wife", "id": 1418575, "credit_id": "54c530f8c3a368792c007793", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Sanjay Sharma", "character": "Mob Leader", "id": 1418576, "credit_id": "54c531e4c3a36823e30005be", "cast_id": 42, "profile_path": "/jiJ8haJRVZJvv0o4ADlFXbF6Ck1.jpg", "order": 38}, {"name": "Morgan Perez", "character": "Guard", "id": 458905, "credit_id": "54c533cb9251412ece001daa", "cast_id": 43, "profile_path": null, "order": 39}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4ec29251416c75161587", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 7.5, "runtime": 122}, "39781": {"poster_path": "/fB8DRRd1aw3bug7toO9IRAmCp0d.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34705850, "overview": "Two women, Nic and Jules brought a son and daughter into the world through artificial insemination. When one their children reaches age, both kids go behind their mother's backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.", "video": false, "id": 39781, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Kids Are All Right", "tagline": "Nic and Jules had the perfect family, until they met the man who made it all possible.", "vote_count": 92, "homepage": "http://filminfocus.com/focusfeatures/film/the_kids_are_all_right/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0842926", "adult": false, "backdrop_path": "/zvVo3p1L0LxoTKhxzXpKRZLYj6b.jpg", "production_companies": [{"name": "Focus Features", "id": 17301}, {"name": "Gilbert Films", "id": 10161}, {"name": "Saint Aire Production", "id": 23910}, {"name": "Artist International", "id": 23911}, {"name": "10th Hole Productions", "id": 6691}, {"name": "Antidote Films (I)", "id": 23912}, {"name": "Mandalay Vision", "id": 6667}, {"name": "Artist International Management", "id": 23913}], "release_date": "2010-07-09", "popularity": 0.475615048387883, "original_title": "The Kids Are All Right", "budget": 4000000, "cast": [{"name": "Julianne Moore", "character": "Jules", "id": 1231, "credit_id": "52fe47309251416c9106cfd7", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Annette Bening", "character": "Nic", "id": 516, "credit_id": "52fe47309251416c9106cfdb", "cast_id": 3, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Paul", "id": 103, "credit_id": "52fe47309251416c9106cfdf", "cast_id": 4, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Mia Wasikowska", "character": "Joni", "id": 76070, "credit_id": "52fe47309251416c9106cfe3", "cast_id": 5, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 3}, {"name": "Josh Hutcherson", "character": "Laser", "id": 27972, "credit_id": "52fe47309251416c9106cfe7", "cast_id": 6, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 4}, {"name": "Yaya DaCosta", "character": "Tanya", "id": 60033, "credit_id": "52fe47319251416c9106d02d", "cast_id": 18, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 5}, {"name": "James MacDonald", "character": "Clay's Dad", "id": 1188456, "credit_id": "52fe47319251416c9106d031", "cast_id": 19, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 6}, {"name": "Zosia Mamet", "character": "Sophia", "id": 206966, "credit_id": "539770a60e0a266db400a465", "cast_id": 20, "profile_path": "/sE3uZmkndftC1Z6yHT6WRycruHQ.jpg", "order": 7}, {"name": "Kunal Sharma", "character": "Jai", "id": 1224166, "credit_id": "548044dec3a36829ae001fb3", "cast_id": 21, "profile_path": "/6MMLQyvbGK1JWbg8aNKhzm15QWO.jpg", "order": 8}, {"name": "Eddie Hassell", "character": "Clay", "id": 170333, "credit_id": "5480452b9251416e74002361", "cast_id": 22, "profile_path": "/bHsGK8lh4i6lRteWtR3iy0odnbB.jpg", "order": 9}, {"name": "Joaqu\u00edn Garrido", "character": "Luis", "id": 104381, "credit_id": "54804546c3a36829ab002221", "cast_id": 23, "profile_path": "/13S8ckTXL5kwU6Oogm3f1HX9v9L.jpg", "order": 10}, {"name": "Rebecca Lawrence Levy", "character": "Brooke (as Rebecca Lawrence)", "id": 1188240, "credit_id": "548045589251416e7b001fe8", "cast_id": 24, "profile_path": "/yTEvXi1tFDTd77IDhLrC6a6lCDd.jpg", "order": 11}, {"name": "Lisa Eisner", "character": "Stella", "id": 1394120, "credit_id": "54804565c3a36817a5002022", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Eric Eisner", "character": "Joel", "id": 1394121, "credit_id": "548045859251416e7e002311", "cast_id": 26, "profile_path": "/gjgal7fuCZ8G12brxcs4i0DonH7.jpg", "order": 13}, {"name": "Sasha Spielberg", "character": "Waify Girl", "id": 8700, "credit_id": "5480459ec3a36817a5002034", "cast_id": 27, "profile_path": "/3ltMYYXQ6lZUxqLiAsTSn29cVCS.jpg", "order": 14}, {"name": "James MacDonald", "character": "Clay's Dad (as James Macdonald)", "id": 1188456, "credit_id": "548045b2c3a36829b50028a0", "cast_id": 28, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 15}, {"name": "Margo Victor", "character": "Bartender", "id": 1394124, "credit_id": "548045be9251416e81002154", "cast_id": 29, "profile_path": null, "order": 16}], "directors": [{"name": "Lisa Cholodenko", "department": "Directing", "job": "Director", "credit_id": "52fe47309251416c9106cfd3", "profile_path": "/xoEjXL2gjZ4b32Kx0ZRwfUzCyi4.jpg", "id": 75699}], "vote_average": 6.2, "runtime": 106}, "23398": {"poster_path": "/dpY7igIBW0Gw8LVLYgbCvjgc2aR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 443140005, "overview": "Pop sensations Alvin, Simon and Theodore end up in the care of Dave Seville's twenty-something nephew Toby. The boys must put aside music super stardom to return to school, and are tasked with saving the school's music program by winning the $25,000 prize in a battle of the bands. But the Chipmunks unexpectedly meet their match in three singing chipmunks known as The Chipettes - Brittany, Eleanor and Jeanette. Romantic and musical sparks are ignited when the Chipmunks and Chipettes square off.", "video": false, "id": 23398, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Alvin and the Chipmunks: The Squeakquel", "tagline": "The Boys are back in town... and they have competition.", "vote_count": 170, "homepage": "http://www.munkyourself.com/", "belongs_to_collection": {"backdrop_path": "/qI483yHct3PBtIiOH3K3SVNUDq5.jpg", "poster_path": "/fLvRQcuk5ZFKnDvUC553XK3OnPC.jpg", "id": 167613, "name": "Alvin and the Chipmunks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1231580", "adult": false, "backdrop_path": "/fltrFAIcNp8Ut41DpAHQRVdmn7I.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Bagdasarian Productions", "id": 10930}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2009-12-21", "popularity": 0.870090114889189, "original_title": "Alvin and the Chipmunks: The Squeakquel", "budget": 75000000, "cast": [{"name": "Zachary Levi", "character": "Toby", "id": 69899, "credit_id": "52fe4468c3a368484e0215b9", "cast_id": 1, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 0}, {"name": "David Cross", "character": "Ian", "id": 212, "credit_id": "52fe4468c3a368484e0215bd", "cast_id": 2, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 1}, {"name": "Jason Lee", "character": "Dave", "id": 11662, "credit_id": "52fe4468c3a368484e0215c1", "cast_id": 3, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 2}, {"name": "Justin Long", "character": "Alvin (voice)", "id": 15033, "credit_id": "52fe4468c3a368484e0215c5", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 3}, {"name": "Matthew Gray Gubler", "character": "Simon (voice)", "id": 5661, "credit_id": "52fe4468c3a368484e0215c9", "cast_id": 5, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 4}, {"name": "Jesse McCartney", "character": "Theodore (voice)", "id": 49915, "credit_id": "52fe4468c3a368484e0215cd", "cast_id": 6, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 5}, {"name": "Amy Poehler", "character": "Eleanor (voice)", "id": 56322, "credit_id": "52fe4468c3a368484e0215d1", "cast_id": 7, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 6}, {"name": "Anna Faris", "character": "Jeanette (voice)", "id": 1772, "credit_id": "52fe4468c3a368484e0215d5", "cast_id": 8, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 7}, {"name": "Christina Applegate", "character": "Brittany (voice)", "id": 18979, "credit_id": "52fe4468c3a368484e0215d9", "cast_id": 9, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 8}, {"name": "Wendie Malick", "character": "Dr. Rubin", "id": 61980, "credit_id": "52fe4468c3a368484e0215dd", "cast_id": 10, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 9}, {"name": "Anjelah N. Johnson", "character": "Julie", "id": 106934, "credit_id": "52fe4468c3a368484e0215e1", "cast_id": 11, "profile_path": "/dsa7J2Odf9iuMblrY55RxcRMjsY.jpg", "order": 10}, {"name": "Kathryn Joosten", "character": "Aunt Jackie", "id": 106935, "credit_id": "52fe4468c3a368484e0215e5", "cast_id": 12, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 11}, {"name": "Kevin G. Schmidt", "character": "Ryan", "id": 85140, "credit_id": "52fe4468c3a368484e0215e9", "cast_id": 13, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 12}, {"name": "Chris Warren, Jr.", "character": "Xander", "id": 77196, "credit_id": "52fe4468c3a368484e0215ed", "cast_id": 14, "profile_path": "/zpNs0erSBOPg1PIpIz2uZz4gWC3.jpg", "order": 13}, {"name": "Bridgit Mendler", "character": "Becca", "id": 85176, "credit_id": "52fe4468c3a368484e0215f1", "cast_id": 15, "profile_path": "/ckfgebXa5RH6gniWiESgwDKEvIx.jpg", "order": 14}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4468c3a368484e0215f7", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.5, "runtime": 88}, "50321": {"poster_path": "/6S7pkMjLrtmzn8uU5vRyTn5Az2A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39549758, "overview": "Take out the trash, eat your broccoli - who needs moms, anyway? Nine-year-old Milo finds out just how much he needs his mom when she's nabbed by Martians who plan to steal her mom-ness for their own young. Milo's quest to save his mom involves stowing away on a spaceship, navigating an elaborate, multi-level planet and taking on the alien nation and their leader. With the help of a tech-savvy, underground earthman named Gribble and a rebel Martian girl called Ki, Milo just might find his way back to his mom - in more ways than one.", "video": false, "id": 50321, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Mars Needs Moms", "tagline": "Mom needs a little space.", "vote_count": 68, "homepage": "http://disney.go.com/disneypictures/marsneedsmoms/#home", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1305591", "adult": false, "backdrop_path": "/3TTP2qVda479YgtOLDWxhzaASXU.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2011-03-09", "popularity": 0.39416403705847, "original_title": "Mars Needs Moms", "budget": 150000000, "cast": [{"name": "Seth Green", "character": "Milo (voice)", "id": 13922, "credit_id": "52fe47c3c3a36847f8146d5d", "cast_id": 3, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 0}, {"name": "Joan Cusack", "character": "Mom (voice)", "id": 3234, "credit_id": "52fe47c3c3a36847f8146d61", "cast_id": 4, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Gribble (voice)", "id": 58873, "credit_id": "52fe47c3c3a36847f8146d65", "cast_id": 5, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Alien (voice)", "id": 33654, "credit_id": "52fe47c3c3a36847f8146d69", "cast_id": 6, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Elisabeth Harnois", "character": "Ki (voice)", "id": 78197, "credit_id": "52fe47c3c3a36847f8146d6d", "cast_id": 7, "profile_path": "/bBVitNtkzupyXn8HKtLTduPclje.jpg", "order": 4}, {"name": "Tom Everett Scott", "character": "Milo's Dad (voice)", "id": 16857, "credit_id": "52fe47c3c3a36847f8146d71", "cast_id": 8, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 5}, {"name": "Mindy Sterling", "character": "Supervisor (voice)", "id": 13924, "credit_id": "52fe47c3c3a36847f8146d75", "cast_id": 9, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 6}, {"name": "Julene Renee", "character": "Martian (voice)", "id": 42286, "credit_id": "52fe47c3c3a36847f8146d79", "cast_id": 10, "profile_path": "/gONOL0vTflEd5yH1x3hcr2maFV5.jpg", "order": 7}, {"name": "Raymond Ochoa", "character": "Martian Hatchling (voice)", "id": 963134, "credit_id": "52fe47c3c3a36847f8146d7d", "cast_id": 11, "profile_path": "/iayG9g3yq7OIrrzhN7FTQqfGqgW.jpg", "order": 8}, {"name": "Robert Ochoa", "character": "Martian Hatchling (voice)", "id": 984263, "credit_id": "52fe47c3c3a36847f8146d81", "cast_id": 12, "profile_path": "/y6y7isfgDHkWAFormHNPPGGLZhy.jpg", "order": 9}, {"name": "Ryan Ochoa", "character": "Martian Hatchling (voice)", "id": 492081, "credit_id": "52fe47c3c3a36847f8146d85", "cast_id": 13, "profile_path": "/mkWaVHOCScHYN26JXMHmamn9dkD.jpg", "order": 10}, {"name": "Seth Robert Dusky", "character": "Milo (voice) (as Seth Dusky)", "id": 1108010, "credit_id": "52fe47c3c3a36847f8146d89", "cast_id": 14, "profile_path": "/7nKCmACWqBpEpbjCskT216knfni.jpg", "order": 11}], "directors": [{"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe47c3c3a36847f8146d53", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 5.8, "runtime": 88}, "249660": {"poster_path": "/XEK5B6a55ErDzRkupZ3rbq3SbN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29789000, "overview": "Radisson finds the topic of religion painful because his Christian mother died when he was 12, though he had prayed and begged God to spare her life. This may be what led him to study philosophy so in depth that he ultimately became a philosophy professor, but his desire to now avoid the topic of religion does not mesh well with his career as a philosophy professor. His anger at God has him requesting his students quote Friedrich Nietzsche and, in exchange, he promises to allow them to skip the chapter on religion. This is not the only clue the movie makers give that they have read atheist material extensively. Radisson tells Josh that if he won't reach a consensus with the class, he must prove God is not dead. Radisson had already explained this was a metaphor and, taken in the context of Nietzsche's point, Josh does an excellent job of proving this.", "video": false, "id": 249660, "genres": [{"id": 18, "name": "Drama"}], "title": "God's Not Dead", "tagline": "", "vote_count": 68, "homepage": "http://godsnotdeadthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2528814", "adult": false, "backdrop_path": "/ikCGlDrdKPewgPBwHIP3QPtGvfu.jpg", "production_companies": [{"name": "Pure Flix Entertainment", "id": 6427}], "release_date": "2014-03-21", "popularity": 0.562393482298899, "original_title": "God's Not Dead", "budget": 17000000, "cast": [{"name": "Kevin Sorbo", "character": "Professor Radisson", "id": 51965, "credit_id": "52fe4f48c3a36847f82ca995", "cast_id": 1, "profile_path": "/kPwVLsAMDZDsFVmXjg1zG5cLltT.jpg", "order": 0}, {"name": "Shane Harper", "character": "Josh Wheaton", "id": 226371, "credit_id": "52fe4f48c3a36847f82ca999", "cast_id": 2, "profile_path": "/6As8XFBxrWaHsTiIk92Pn2BFQEu.jpg", "order": 1}, {"name": "David A.R. White", "character": "Reverend Dave", "id": 116431, "credit_id": "53fe25100e0a262df2002410", "cast_id": 20, "profile_path": "/klqX1BfakxcpjhiOuDtRS1aZoOh.jpg", "order": 2}, {"name": "Dean Cain", "character": "Mark", "id": 21721, "credit_id": "52fe4f48c3a36847f82ca9af", "cast_id": 7, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 3}, {"name": "Willie Robertson", "character": "Willie Robertson", "id": 1003836, "credit_id": "52fe4f48c3a36847f82ca9a3", "cast_id": 4, "profile_path": null, "order": 4}, {"name": "Korie Robertson", "character": "Korie Robertson", "id": 1003840, "credit_id": "52fe4f48c3a36847f82ca9a7", "cast_id": 5, "profile_path": null, "order": 5}, {"name": "Hadeel Sittu", "character": "Ayisha", "id": 1357478, "credit_id": "53fe26970e0a262ddc00244c", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Paul Kwo", "character": "Martin Yip", "id": 1357479, "credit_id": "53fe26f00e0a262de800238e", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Trisha LaFache", "character": "Amy Ryan", "id": 5373, "credit_id": "53fe271c0e0a262de2002482", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Cory Oliver", "character": "Mina", "id": 184185, "credit_id": "52fe4f48c3a36847f82ca9b3", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Benjamin Ochieng", "character": "Reverend Jude", "id": 1235875, "credit_id": "53fe28060e0a262deb0024d7", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Marco Khan", "character": "Misrab", "id": 964347, "credit_id": "52fe4f48c3a36847f82ca9ab", "cast_id": 6, "profile_path": "/3clgQLGpIcPE7jW3LvJHijDY15d.jpg", "order": 11}, {"name": "Cassidy Gifford", "character": "Kara", "id": 1357480, "credit_id": "53fe28590e0a262de80023b5", "cast_id": 25, "profile_path": "/fNehfXVwco1XSsBJDfXIEpiYIMv.jpg", "order": 12}, {"name": "Jesse Wang", "character": "Martin's Father", "id": 1357481, "credit_id": "53fe28ab0e0a262def002545", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Lenore Banks", "character": "Mina's Mother", "id": 20765, "credit_id": "53fe28f90e0a262deb0024ed", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Russell Wolfe", "character": "Dr. Stevens", "id": 1085785, "credit_id": "53fe293a0e0a262de5002465", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Alex Aristidis", "character": "Fahid", "id": 1205881, "credit_id": "5344280bc3a36825b1000084", "cast_id": 11, "profile_path": "/szNg9vupjQrZ17iWOUyh2S1wpdU.jpg", "order": 16}, {"name": "Lisa Arnold", "character": "June Wheaton", "id": 78199, "credit_id": "5344281ac3a36825a8000071", "cast_id": 12, "profile_path": null, "order": 17}], "directors": [{"name": "Harold Cronk", "department": "Directing", "job": "Director", "credit_id": "52fe4f48c3a36847f82ca99f", "profile_path": "/lXyA8DhBSzNfwPkr7gNJBqgaJad.jpg", "id": 937340}], "vote_average": 6.6, "runtime": 113}, "277355": {"poster_path": "/hVOaBp86KZnsk2LJ71lr7BsvuPb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After she betrays a powerful mob boss, a woman matches wits and weaponry with a legion of killers who are out to collect the bounty on the heads of her and her family.", "video": false, "id": 277355, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Everly", "tagline": "Enter if you dare.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1945084", "adult": false, "backdrop_path": "/pIZTDlgwbGojhUymHkPrdpTwdIV.jpg", "production_companies": [{"name": "Anonymous Content", "id": 30420}, {"name": "Crime Scene Pictures", "id": 13472}, {"name": "Vega, Baby!", "id": 43906}], "release_date": "2014-09-20", "popularity": 1.32122863625609, "original_title": "Everly", "budget": 0, "cast": [{"name": "Salma Hayek", "character": "Everly", "id": 3136, "credit_id": "53a0f3e10e0a26654b0013a4", "cast_id": 0, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Hiroyuki Watanabe", "character": "Taiko", "id": 554073, "credit_id": "53a0f450c3a3687ba6001078", "cast_id": 1, "profile_path": "/yFPTPGg04TuZJOvYb4zH04aBwK5.jpg", "order": 2}, {"name": "Jennifer Blanc", "character": "Dena", "id": 130024, "credit_id": "54b52818c3a3687a63002d20", "cast_id": 5, "profile_path": "/6Yf8rENETtZUIUPzWXlAdrcSeV7.jpg", "order": 3}, {"name": "Togo Igawa", "character": "Sadist", "id": 9192, "credit_id": "54b52826c3a3680940009267", "cast_id": 6, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 4}, {"name": "Caroline Chikezie", "character": "Zelda", "id": 25448, "credit_id": "54b528339251417369004af6", "cast_id": 7, "profile_path": "/qXHS3UhFx2dd6tSuBpPqfSbAy3.jpg", "order": 5}, {"name": "Gabriella Wright", "character": "Anna", "id": 118200, "credit_id": "54b5283d92514152d4001871", "cast_id": 8, "profile_path": "/tKPC9lweFGHwSOgEmhklw7OjHlR.jpg", "order": 6}, {"name": "Akie Kotabe", "character": "Dead Man", "id": 1322309, "credit_id": "54b528479251412ffc0035b5", "cast_id": 9, "profile_path": "/kML3sC3PH4BolXQBYkpY44p6G4a.jpg", "order": 7}], "directors": [{"name": "Joe Lynch", "department": "Directing", "job": "Director", "credit_id": "53a0f46ec3a3687bbc001026", "profile_path": null, "id": 84335}], "vote_average": 5.2, "runtime": 90}, "184125": {"poster_path": "/5MPJ0anWmqo29DCbUMgE2ZPzGJx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "Jim is an average New Yorker living a peaceful life with a well paying job and a loving family. Suddenly, everything changes when the economy crashes causing Jim to lose everything. Filled with anger and rage, Jim snaps and goes to extreme lengths to seek revenge for the life taken from him.", "video": false, "id": 184125, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Assault on Wall Street", "tagline": "Power. Greed. Justice.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2368553", "adult": false, "backdrop_path": "/13aAN3iqwiYQ8TAKUCDgHl1DNxU.jpg", "production_companies": [{"name": "Lynn Peak Productions", "id": 18769}, {"name": "Studio West Productions(VCC)", "id": 23633}], "release_date": "2013-06-30", "popularity": 0.889852386542922, "original_title": "Assault on Wall Street", "budget": 0, "cast": [{"name": "Dominic Purcell", "character": "Jim", "id": 10862, "credit_id": "52fe4cb69251416c75123303", "cast_id": 1, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 0}, {"name": "Erin Karpluk", "character": "Rosie", "id": 59313, "credit_id": "52fe4cb69251416c75123307", "cast_id": 2, "profile_path": "/zYqwFR661S8pPigwHci6HlTnPly.jpg", "order": 1}, {"name": "Edward Furlong", "character": "Sean", "id": 820, "credit_id": "52fe4cb69251416c7512330b", "cast_id": 3, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 2}, {"name": "John Heard", "character": "Jeremy Stancroft", "id": 11512, "credit_id": "52fe4cb69251416c7512330f", "cast_id": 4, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Keith David", "character": "Freddy", "id": 65827, "credit_id": "52fe4cb69251416c75123313", "cast_id": 5, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 4}, {"name": "Michael Par\u00e9", "character": "Frank", "id": 60650, "credit_id": "52fe4cb69251416c75123317", "cast_id": 6, "profile_path": "/g1cVLWWAgl3J1nNFhg67qXs8GUT.jpg", "order": 5}, {"name": "Lochlyn Munro", "character": "Robert", "id": 58058, "credit_id": "52fe4cb69251416c7512331b", "cast_id": 7, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 6}, {"name": "Tyron Leitso", "character": "Spalding Smith", "id": 67977, "credit_id": "52fe4cb69251416c7512331f", "cast_id": 8, "profile_path": "/3JYD6W7nIWRDjv68ClGHGuSoRyI.jpg", "order": 7}, {"name": "Mike Dopud", "character": "Tom Allgard", "id": 64674, "credit_id": "52fe4cb69251416c75123323", "cast_id": 9, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 8}, {"name": "Barclay Hope", "character": "Ian Marwood", "id": 43431, "credit_id": "52fe4cb69251416c75123327", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Heather Feeney", "character": "Mary Jean", "id": 37697, "credit_id": "52fe4cb69251416c7512332b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Maurice Cherrie", "character": "Nate", "id": 1167221, "credit_id": "52fe4cb69251416c7512332f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Clint Howard", "character": "Chuck", "id": 15661, "credit_id": "52fe4cb69251416c75123333", "cast_id": 13, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 12}], "directors": [{"name": "Uwe Boll", "department": "Directing", "job": "Director", "credit_id": "52fe4cb69251416c75123339", "profile_path": "/8i6o27RrRGRR5iAcLSOBt06fcM7.jpg", "id": 23799}], "vote_average": 5.6, "runtime": 99}, "115348": {"poster_path": "/b6xylFodkxtChKRtS6Ng3X60YHT.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13785015, "overview": "An entry-level employee at a powerful corporation finds himself occupying a corner office, but at a dangerous price: he must spy on his boss's old mentor to secure for him a multi-billion dollar advantage.", "video": false, "id": 115348, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Paranoia", "tagline": "In a war between kings even a pawn can change the game.", "vote_count": 126, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1413495", "adult": false, "backdrop_path": "/wjQLsKKwBFZNWcj6lrEZc4rWk2.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Gaumont", "id": 9}, {"name": "Kintop Pictures", "id": 1490}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "IM Global", "id": 7437}, {"name": "Demarest Films", "id": 13241}, {"name": "EMJAG Productions", "id": 14654}, {"name": "Film 360", "id": 34077}, {"name": "E Stars Films", "id": 36353}], "release_date": "2013-08-16", "popularity": 1.42313235346649, "original_title": "Paranoia", "budget": 35000000, "cast": [{"name": "Liam Hemsworth", "character": "Adam Cassidy", "id": 96066, "credit_id": "52fe4b68c3a36847f82024f3", "cast_id": 9, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Jock Goddard", "id": 3, "credit_id": "52fe4b68c3a36847f82024ef", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Nicholas Wyatt", "id": 64, "credit_id": "52fe4b68c3a36847f82024f7", "cast_id": 10, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Amber Heard", "character": "Emma Jennings", "id": 55085, "credit_id": "52fe4b68c3a36847f82024eb", "cast_id": 7, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 3}, {"name": "Josh Holloway", "character": "Agent Gamble", "id": 142636, "credit_id": "52fe4b68c3a36847f82024fb", "cast_id": 11, "profile_path": "/4vMj8zIMSZoxxXefanh5SuEDDJ6.jpg", "order": 4}, {"name": "Embeth Davidtz", "character": "Judith Bolton", "id": 6368, "credit_id": "52fe4b68c3a36847f82024ff", "cast_id": 12, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 5}, {"name": "Richard Dreyfuss", "character": "Frank Cassidy", "id": 3037, "credit_id": "52fe4b68c3a36847f8202503", "cast_id": 13, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 6}, {"name": "Julian McMahon", "character": "Meechum", "id": 20402, "credit_id": "52fe4b68c3a36847f8202507", "cast_id": 14, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 7}, {"name": "Lucas Till", "character": "Kevin", "id": 429, "credit_id": "52fe4b68c3a36847f820250b", "cast_id": 15, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 8}, {"name": "Angela Sarafyan", "character": "Alison", "id": 85143, "credit_id": "52fe4b68c3a36847f820250f", "cast_id": 16, "profile_path": "/wJoJLYaSpRF9Ihca1reca1uR9he.jpg", "order": 9}, {"name": "Charlie Hofheimer", "character": "Richard McCallister", "id": 12790, "credit_id": "52fe4b68c3a36847f8202513", "cast_id": 17, "profile_path": "/gXQkqXYrlAGJgXRPpOwEv0NjSgT.jpg", "order": 10}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe4b68c3a36847f82024c9", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 5.8, "runtime": 106}, "269173": {"poster_path": "/7STXBkSO5WEVF98B3ZOXanKMNK6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A former soldier is taken captive and awakens in the back of a van where he learns that he only has a few moments to figure out how he got there.", "video": false, "id": 269173, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Anomaly", "tagline": "If you only had 09 minutes 47 seconds, What would you do?", "vote_count": 50, "homepage": "https://www.facebook.com/TheAnomalyMovie?fref=ts", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2962726", "adult": false, "backdrop_path": "/tp6GSi9CuptS149015jwsW6tY2k.jpg", "production_companies": [{"name": "Tea Shop & Film Company", "id": 36735}, {"name": "Unstoppable Entertainment", "id": 6371}, {"name": "thefyzz", "id": 36109}], "release_date": "2014-07-04", "popularity": 0.996308971269391, "original_title": "The Anomaly", "budget": 0, "cast": [{"name": "Ian Somerhalder", "character": "Harkin", "id": 19211, "credit_id": "536e48b0c3a368124a00d1b7", "cast_id": 0, "profile_path": "/5LwxVwxf5pLVycUeYE3uMmk5oS7.jpg", "order": 1}, {"name": "Alexis Knapp", "character": "Dana", "id": 999790, "credit_id": "536e48d7c3a368122600cb4e", "cast_id": 1, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 2}, {"name": "Noel Clarke", "character": "Ryan", "id": 76242, "credit_id": "536e48e5c3a36839c100331e", "cast_id": 2, "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "order": 3}, {"name": "Luke Hemsworth", "character": "", "id": 216986, "credit_id": "536e4901c3a368122600cb51", "cast_id": 3, "profile_path": "/524YwxvMCtwVzpxW1DkAgmE3j5d.jpg", "order": 4}, {"name": "Michael Bisping", "character": "Sergio", "id": 78909, "credit_id": "536e4a12c3a3687e6c0004a7", "cast_id": 4, "profile_path": "/wj6i8K1JGruCuE9dhXDO2iVnTI9.jpg", "order": 5}, {"name": "Art Parkinson", "character": "Alex", "id": 1050248, "credit_id": "536e4a30c3a3683bf900431c", "cast_id": 5, "profile_path": "/lm6BkM9uf69sd30o87kJ83ezKzN.jpg", "order": 6}, {"name": "Ali Cook", "character": "l'agent Travis", "id": 1056072, "credit_id": "536e4a4fc3a368122600cb5c", "cast_id": 6, "profile_path": "/9WxC22HycnaenkF0H6oMvmjNwmE.jpg", "order": 7}, {"name": "Reuben Dabrow", "character": "Polska", "id": 1379064, "credit_id": "5450b528c3a3680233003b0d", "cast_id": 38, "profile_path": "/68ezKAD9q6WeHKbxcEa1XeLrafJ.jpg", "order": 8}, {"name": "Victoria Broom", "character": "Alex's mother", "id": 120888, "credit_id": "5450b5410e0a2642c2000dc4", "cast_id": 39, "profile_path": "/1SDwFNV3IsgURu96h0ShzVTbXhs.jpg", "order": 9}, {"name": "Lee Charles", "character": "Patch", "id": 1301638, "credit_id": "5450b5620e0a2601d8003c17", "cast_id": 40, "profile_path": null, "order": 10}, {"name": "Eleanor Gecks", "character": "Officer Sanchez", "id": 119413, "credit_id": "5450b5980e0a263a18003daa", "cast_id": 41, "profile_path": "/qBLF5CITi2A8ZKx6fdrQn7PFqNL.jpg", "order": 11}, {"name": "Brian Cox", "character": "Dr. Langham", "id": 1248, "credit_id": "54730a3fc3a36822ba000fd7", "cast_id": 42, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 12}, {"name": "Niall Greig Fulton", "character": "Leonid", "id": 122648, "credit_id": "54730c61c3a368058e0015d9", "cast_id": 43, "profile_path": "/jVbIWnCYirZqprAh0RTW9SWE6XW.jpg", "order": 13}, {"name": "Kumud Pant", "character": "Shanghai's friend", "id": 1326945, "credit_id": "5473137dc3a36833ad00331e", "cast_id": 44, "profile_path": "/gxdg4QzAuuZ466NQBAqGjPOLQri.jpg", "order": 14}, {"name": "Jozef Aoki", "character": "Marble game player", "id": 1388891, "credit_id": "547317cfc3a36833ad003397", "cast_id": 45, "profile_path": "/yROpOphdySQ4jNYh0RWvdx9ASJE.jpg", "order": 15}, {"name": "Paul Blackwell", "character": "Futuristic police", "id": 37293, "credit_id": "54731b30c3a3682c55000e17", "cast_id": 46, "profile_path": "/trKFaMohgm2kAACO4lDAg47kawN.jpg", "order": 16}, {"name": "Siegfrid Calizo", "character": "Shanghai Boy", "id": 1388902, "credit_id": "54731cc1c3a368058e0017a8", "cast_id": 47, "profile_path": "/nIDGR3inuoyA0hdqe3BYLIYKEdW.jpg", "order": 17}, {"name": "Olivia Chenery", "character": "Sandy", "id": 1388903, "credit_id": "54731e17c3a3682cbe0000b9", "cast_id": 48, "profile_path": "/zxOcxtmh3kIbEFDFWCluV3dguiy.jpg", "order": 18}, {"name": "Anthony Farrelly", "character": "NYPD Officer", "id": 1369015, "credit_id": "54731f5ac3a3682cbe0000d4", "cast_id": 49, "profile_path": null, "order": 19}, {"name": "Shane Hart", "character": "Futuristic NYPD", "id": 1358596, "credit_id": "54732bb59251416dc3001a2b", "cast_id": 50, "profile_path": "/uc73DMBz9EcvvcdvRAwWvcY0lgA.jpg", "order": 20}, {"name": "osy ikhile", "character": "Actor", "id": 1388917, "credit_id": "54732c83c3a368058e001917", "cast_id": 51, "profile_path": "/xXG5aCvSUmnW3Fe0OyBnvjROaij.jpg", "order": 21}, {"name": "Jean-Paul Jesstiece", "character": "Beefqoe", "id": 1164005, "credit_id": "54732d399251412e25000c46", "cast_id": 52, "profile_path": null, "order": 22}, {"name": "Mathew Kaye", "character": "Milyya", "id": 1388918, "credit_id": "54732da0c3a3682cbe000221", "cast_id": 53, "profile_path": null, "order": 23}, {"name": "Andreas Matopoulos", "character": "Mario Luigi", "id": 1388919, "credit_id": "54732e32c3a36812de00033e", "cast_id": 54, "profile_path": null, "order": 24}, {"name": "Allistair McNab", "character": "Delphingogol", "id": 1265256, "credit_id": "54732ee89251416dc3001a7b", "cast_id": 55, "profile_path": "/f5bpEswRRUHNVY3XAqc5JDatsVC.jpg", "order": 25}, {"name": "Shane Nolan", "character": "Futuristic police officer", "id": 93778, "credit_id": "54732f879251414b4b000295", "cast_id": 56, "profile_path": null, "order": 26}, {"name": "Lydia Piechowiak", "character": "Madame Koschechka", "id": 1388920, "credit_id": "54732fe99251413a5d0044fc", "cast_id": 57, "profile_path": null, "order": 27}, {"name": "Craig Russell", "character": "Terkye", "id": 1388922, "credit_id": "5473323ec3a36812de0003b3", "cast_id": 58, "profile_path": "/onhYpWmQFhIws3U6Kf6IZBVGdT2.jpg", "order": 28}, {"name": "Jamie Swayer", "character": "Myshtsy", "id": 1388924, "credit_id": "547332e69251416dc3001adc", "cast_id": 59, "profile_path": null, "order": 29}, {"name": "Nick Thomas-Webster", "character": "Riot Police Commander", "id": 209657, "credit_id": "547333cd9251412b6d000796", "cast_id": 60, "profile_path": "/Acc5d0jcpf5xLFfayYTWqbldwHT.jpg", "order": 30}, {"name": "Buppha Witt", "character": "Supporting", "id": 1388925, "credit_id": "547334159251412b6d0007aa", "cast_id": 61, "profile_path": null, "order": 31}, {"name": "Leila Wong", "character": "Shanghai Girl", "id": 1312524, "credit_id": "54733524c3a3682cbe0002dd", "cast_id": 62, "profile_path": "/fbFl7hbj7UYLrrbdKB2VddiLf8e.jpg", "order": 32}], "directors": [{"name": "Noel Clarke", "department": "Directing", "job": "Director", "credit_id": "53ca34ef0e0a26473f001ae4", "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "id": 76242}], "vote_average": 5.1, "runtime": 97}, "138103": {"poster_path": "/fLfpaNso9leKIMp72CjvHEC7VLv.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 204000000, "overview": "Barney (Stallone), Christmas (Statham) and the rest of the team comes face-to-face with Conrad Stonebanks (Gibson), who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill... or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables' most personal battle yet.", "video": false, "id": 138103, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Expendables 3", "tagline": "New team. New attitude. New mission.", "vote_count": 657, "homepage": "http://theexpendables3film.com/", "belongs_to_collection": {"backdrop_path": "/lA7oDSt6LkyDqtbFGbyuG0afmTI.jpg", "poster_path": "/mpzHpaXjBc7bHAhwcerIznnq9qV.jpg", "id": 126125, "name": "The Expendables Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2333784", "adult": false, "backdrop_path": "/5ldMfEYNk0fea8QQ0mjyrksIr1M.jpg", "production_companies": [{"name": "Davis-Films", "id": 342}, {"name": "Nu Image Films", "id": 925}, {"name": "LionsGate", "id": 7571}, {"name": "Millennium Films", "id": 10254}, {"name": "Ex3 Productions", "id": 28384}, {"name": "Fipex Holding", "id": 40822}], "release_date": "2014-08-15", "popularity": 3.04720426858812, "original_title": "The Expendables 3", "budget": 90000000, "cast": [{"name": "Sylvester Stallone", "character": "Barney Ross", "id": 16483, "credit_id": "52fe4c3fc3a368484e1aeb5d", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Jason Statham", "character": "Lee Christmas", "id": 976, "credit_id": "52fe4c3fc3a368484e1aeb61", "cast_id": 2, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Harrison Ford", "character": "Max Drummer", "id": 3, "credit_id": "52fe4c3fc3a368484e1aeb87", "cast_id": 13, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 2}, {"name": "Arnold Schwarzenegger", "character": "Trench", "id": 1100, "credit_id": "52fe4c3fc3a368484e1aeb8b", "cast_id": 14, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 3}, {"name": "Mel Gibson", "character": "Conrad Stonebanks", "id": 2461, "credit_id": "52fe4c3fc3a368484e1aeb83", "cast_id": 12, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 4}, {"name": "Wesley Snipes", "character": "Doc", "id": 10814, "credit_id": "52fe4c3fc3a368484e1aeb7b", "cast_id": 10, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 5}, {"name": "Randy Couture", "character": "Toll Road", "id": 74748, "credit_id": "52fe4c3fc3a368484e1aeb69", "cast_id": 6, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 6}, {"name": "Dolph Lundgren", "character": "Gunnar Jensen", "id": 16644, "credit_id": "52fe4c3fc3a368484e1aeb7f", "cast_id": 11, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 7}, {"name": "Terry Crews", "character": "Hale Caesar", "id": 53256, "credit_id": "52fe4c3fc3a368484e1aeb65", "cast_id": 4, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 8}, {"name": "Kelsey Grammer", "character": "Bonaparte", "id": 7090, "credit_id": "52fe4c3fc3a368484e1aeb93", "cast_id": 16, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 9}, {"name": "Glen Powell", "character": "Thorn", "id": 83271, "credit_id": "53d6f28d0e0a260331000656", "cast_id": 35, "profile_path": "/sCeY5nuPUhfwWElxNtXuwRYKMBr.jpg", "order": 10}, {"name": "Antonio Banderas", "character": "Galgo", "id": 3131, "credit_id": "52fe4c3fc3a368484e1aeb73", "cast_id": 8, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 11}, {"name": "Victor Ortiz", "character": "Mars", "id": 1347239, "credit_id": "53d6f7fac3a3683a31000502", "cast_id": 36, "profile_path": "/ljz37lDYLjOgE7BSc0vy9rdWFoF.jpg", "order": 12}, {"name": "Ronda Rousey", "character": "Luna", "id": 997887, "credit_id": "52fe4c3fc3a368484e1aeb9b", "cast_id": 18, "profile_path": "/rspN0StWezXvYevDlN6AOJeg9rA.jpg", "order": 13}, {"name": "Kellan Lutz", "character": "John Smilee", "id": 34502, "credit_id": "52fe4c3fc3a368484e1aeb8f", "cast_id": 15, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 14}, {"name": "Jet Li", "character": "Yin Yang", "id": 1336, "credit_id": "52fe4c3fc3a368484e1aeb77", "cast_id": 9, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 15}, {"name": "Ivan Kostadinov", "character": "Krug", "id": 1409017, "credit_id": "54a9b374c3a3680c2b004fd8", "cast_id": 101, "profile_path": "/r0PK7rpI0h5zSTXuBVbtC3koBoW.jpg", "order": 16}, {"name": "Robert Davi", "character": "Vata", "id": 2055, "credit_id": "52fe4c3fc3a368484e1aeb97", "cast_id": 17, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 17}, {"name": "Nikolay Stoyanov Ilchev", "character": "Local Cop #1", "id": 1409123, "credit_id": "54aa2ef0c3a3680c1e006220", "cast_id": 102, "profile_path": "/3naDommvIfvRt8I47mwughcBcga.jpg", "order": 18}, {"name": "Daniel Angelov", "character": "Local Cop #2", "id": 1409132, "credit_id": "54aa320c9251417e0600343e", "cast_id": 103, "profile_path": null, "order": 19}, {"name": "Slavi Slavov", "character": "Warden", "id": 90116, "credit_id": "54aa33b1c3a3680c1e0062a3", "cast_id": 104, "profile_path": "/QeOYzHdXviA7zcoqMEThlKQP9U.jpg", "order": 20}, {"name": "Dimiter Doichinov", "character": "Head Bodyguard", "id": 1350263, "credit_id": "54aa36c7c3a3680c300067f5", "cast_id": 105, "profile_path": null, "order": 21}, {"name": "Nikolay Stanoev", "character": "Tech Guy", "id": 559369, "credit_id": "54aa393392514155f2000f1c", "cast_id": 106, "profile_path": "/jKlUrkyC4GhZ25dJua17ieGwdX.jpg", "order": 22}, {"name": "Harry Anichkin", "character": "Colonel", "id": 131101, "credit_id": "54aa3acac3a36822b7000ea4", "cast_id": 107, "profile_path": "/g4p8QC0VnYkCyYBtRBSiFEtIC71.jpg", "order": 23}, {"name": "Boswell Maloka", "character": "Somali Drug Warlord", "id": 1409157, "credit_id": "54aa3b8d9251414d630062ee", "cast_id": 108, "profile_path": null, "order": 24}, {"name": "Natalie Burn", "character": "Conrad's Wife", "id": 1317159, "credit_id": "54aa3e2ac3a368241e000c4b", "cast_id": 109, "profile_path": "/gX2F7OfsLT2NhjgaQzPQ1viyH1M.jpg", "order": 25}, {"name": "Velizar Binev", "character": "Art Broker", "id": 22018, "credit_id": "5486ced6c3a3681cfd001861", "cast_id": 99, "profile_path": "/rp5hKo8WEFcqIuh6eDGix2QxYwA.jpg", "order": 26}, {"name": "Sarai Givaty", "character": "Camilla", "id": 206024, "credit_id": "5486cf1c92514175fa0012e7", "cast_id": 100, "profile_path": "/i52Gaf6Q0NcisixV38ytRCEdDYj.jpg", "order": 27}, {"name": "Liubomir Simeonov", "character": "Cyclops", "id": 1409178, "credit_id": "54aa41c69251415757000f09", "cast_id": 110, "profile_path": "/88RTVUA64u0eCYOr1wbJjRFICcM.jpg", "order": 28}, {"name": "Frank Pesce", "character": "Fight Watcher", "id": 101615, "credit_id": "54aa4423c3a3680c30006988", "cast_id": 111, "profile_path": "/qkMpNT7rJj8offjNuv5OZ0VeUVQ.jpg", "order": 29}, {"name": "Thomas Canestraro", "character": "Conrad's Henchman", "id": 1409187, "credit_id": "54aa458a9251417e060035f8", "cast_id": 112, "profile_path": "/gz67lEoYDSpaXF7cCUH5vvV8GeI.jpg", "order": 30}], "directors": [{"name": "Patrick Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4c3fc3a368484e1aeb6f", "profile_path": "/bzGqSV7Y3I9KWTcCd3u4TDQqW6A.jpg", "id": 143059}], "vote_average": 6.4, "runtime": 127}, "72570": {"poster_path": "/uh8t52yMz0WWsZkuk1c6i9JgEwE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124, "overview": "Happy young married couple Paige (McAdams) and Leo (Tatum) are, well, happy. Then a car accident puts Paige into a life-threatening coma. Upon awakening she has lost the previous five years of memories, including those of her beloved Leo, her wedding, a confusing relationship with her parents, or the ending of her relationship with her ex-fiance. Despite these complications, Leo endeavors to win her heart again and rebuild their marriage.", "video": false, "id": 72570, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Vow", "tagline": "Inspired by True Events", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1606389", "adult": false, "backdrop_path": "/cfp28CJU7Xak3MEjjIMkZLkTtIW.jpg", "production_companies": [{"name": "Spyglass Entertainment", "id": 158}, {"name": "Screen Gems", "id": 3287}], "release_date": "2012-02-10", "popularity": 1.29393445165899, "original_title": "The Vow", "budget": 30000000, "cast": [{"name": "Rachel McAdams", "character": "Paige", "id": 53714, "credit_id": "52fe4873c3a368484e0f8ed1", "cast_id": 1001, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Leo", "id": 38673, "credit_id": "52fe4873c3a368484e0f8ed5", "cast_id": 1002, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Sam Neill", "character": "Bill Thornton", "id": 4783, "credit_id": "52fe4873c3a368484e0f8ed9", "cast_id": 1003, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "Scott Speedman", "character": "Jeremy", "id": 100, "credit_id": "52fe4873c3a368484e0f8edd", "cast_id": 1004, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 3}, {"name": "Jessica Lange", "character": "Rita Thornton", "id": 4431, "credit_id": "52fe4873c3a368484e0f8ee1", "cast_id": 1005, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 4}, {"name": "Lucas Bryant", "character": "Kyle", "id": 213315, "credit_id": "52fe4873c3a368484e0f8ee5", "cast_id": 1006, "profile_path": "/jtTHFknoCanVoP2N99Pga9Y8Rz3.jpg", "order": 5}, {"name": "Kristina Pesic", "character": "Lizbet", "id": 88930, "credit_id": "52fe4873c3a368484e0f8ee9", "cast_id": 1007, "profile_path": "/2e30dfLAMGcPaNQzXwpnWMsgmsY.jpg", "order": 6}, {"name": "Jessica McNamee", "character": "Gwen", "id": 136347, "credit_id": "52fe4874c3a368484e0f8ef9", "cast_id": 1011, "profile_path": "/6ib5u2Xgo2TPgzamfNHPTFqmhxL.jpg", "order": 7}, {"name": "Dillon Casey", "character": "Ryan", "id": 1235237, "credit_id": "52fe4874c3a368484e0f8f03", "cast_id": 1013, "profile_path": "/kt2hCY9L96GeHTQnYvGojm7Sx5v.jpg", "order": 8}, {"name": "Tatiana Maslany", "character": "Lily", "id": 61134, "credit_id": "52fe4874c3a368484e0f8f07", "cast_id": 1014, "profile_path": "/ab7IuPThWGtcAxxwn9po9Npk5xf.jpg", "order": 9}], "directors": [{"name": "Michael Sucsy", "department": "Directing", "job": "Director", "credit_id": "52fe4873c3a368484e0f8ecd", "profile_path": null, "id": 566328}], "vote_average": 6.6, "runtime": 104}, "72571": {"poster_path": "/uDO3wyyxrMm93lZZBuslLQxNMgJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205703818, "overview": "In 1988, evil begins to terrorize young sisters Katie and Kristi for the first time when an invisible entity resides in their home.", "video": false, "id": 72571, "genres": [{"id": 27, "name": "Horror"}], "title": "Paranormal Activity 3", "tagline": "It Runs In The Family", "vote_count": 200, "homepage": "http://www.paranormalmovie.com/", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1778304", "adult": false, "backdrop_path": "/7b0ksqDWSZzmfOLSOok7Hh8eKqk.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}, {"name": "Room 101", "id": 6302}], "release_date": "2011-10-19", "popularity": 0.850251257362021, "original_title": "Paranormal Activity 3", "budget": 5000000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe4874c3a368484e0f8f41", "cast_id": 1003, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "Sprague Grayden", "character": "Kristi Rey", "id": 118243, "credit_id": "52fe4874c3a368484e0f8f45", "cast_id": 1004, "profile_path": "/xgFJngEapZILERHqwkxu07LNZwN.jpg", "order": 1}, {"name": "Lauren Bittner", "character": "Julie", "id": 176748, "credit_id": "52fe4874c3a368484e0f8f49", "cast_id": 1005, "profile_path": "/rhOQKwVr1DhEGXEARRTXeqfOzZ1.jpg", "order": 2}, {"name": "Christopher Nicholas Smith", "character": "Dennis", "id": 579064, "credit_id": "52fe4874c3a368484e0f8f4d", "cast_id": 1006, "profile_path": null, "order": 3}, {"name": "Chloe Csengery", "character": "Young Katie", "id": 995457, "credit_id": "52fe4874c3a368484e0f8f5d", "cast_id": 1010, "profile_path": null, "order": 4}, {"name": "Jessica Tyler Brown", "character": "Young Kristi", "id": 995458, "credit_id": "52fe4874c3a368484e0f8f61", "cast_id": 1011, "profile_path": null, "order": 5}, {"name": "Hallie Foote", "character": "Grandma Lois", "id": 571244, "credit_id": "52fe4874c3a368484e0f8f65", "cast_id": 1012, "profile_path": null, "order": 6}, {"name": "Marilyn Alex", "character": "Creepy Lady", "id": 995459, "credit_id": "52fe4874c3a368484e0f8f69", "cast_id": 1013, "profile_path": null, "order": 7}, {"name": "Dustin Ingram", "character": "Randy Rosen", "id": 206112, "credit_id": "52fe4874c3a368484e0f8f6d", "cast_id": 1014, "profile_path": null, "order": 8}, {"name": "Jessica Berger", "character": "Kid", "id": 155037, "credit_id": "52fe4874c3a368484e0f8f71", "cast_id": 1015, "profile_path": null, "order": 9}, {"name": "Maria Olsen", "character": "Creepy Lady", "id": 142402, "credit_id": "55143e56c3a36861950035e3", "cast_id": 1024, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 10}], "directors": [{"name": "Henry Joost", "department": "Directing", "job": "Director", "credit_id": "52fe4874c3a368484e0f8f37", "profile_path": "/wP5btUyPGGinHoa3GJmudZB8Pwt.jpg", "id": 142272}, {"name": "Ariel Schulman", "department": "Directing", "job": "Director", "credit_id": "52fe4874c3a368484e0f8f3d", "profile_path": "/jWQRMBFA4AajaA0DJ3CrLzZ2Vby.jpg", "id": 142276}], "vote_average": 6.2, "runtime": 83}, "190955": {"poster_path": "/qDLbBFoIeGqJhWHI0vnxU85E3De.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.", "video": false, "id": 190955, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Blood Ties", "tagline": "Crime runs in the family.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1747958", "adult": false, "backdrop_path": "/ytm4breWckabzpae7zFGOeSbl9Y.jpg", "production_companies": [{"name": "Chi-Fou-Mi Productions", "id": 34780}, {"name": "Wild Bunch", "id": 856}, {"name": "LGM Productions", "id": 2490}, {"name": "Les Productions du Tr\u00e9sor", "id": 2612}, {"name": "Mars Distribution", "id": 2908}, {"name": "Canal+", "id": 5358}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "Worldview Entertainment", "id": 9015}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "M6", "id": 11261}, {"name": "France 3 Cinema", "id": 16804}, {"name": "Caneo Films", "id": 19690}, {"name": "Grisbi Productions", "id": 32242}, {"name": "France 4", "id": 33928}, {"name": "W9", "id": 34774}, {"name": "Treasure Company", "id": 34782}], "release_date": "2013-10-28", "popularity": 1.20794783925524, "original_title": "Blood Ties", "budget": 0, "cast": [{"name": "Clive Owen", "character": "Chris Pierzynski", "id": 2296, "credit_id": "52fe4c749251416c910f55e5", "cast_id": 8, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Billy Crudup", "character": "Frank", "id": 8289, "credit_id": "52fe4c749251416c910f55e9", "cast_id": 9, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Monica", "id": 8293, "credit_id": "52fe4c739251416c910f55dd", "cast_id": 6, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Mila Kunis", "character": "Natalie", "id": 18973, "credit_id": "52fe4c739251416c910f55d9", "cast_id": 5, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 3}, {"name": "Zoe Saldana", "character": "Vanessa", "id": 8691, "credit_id": "52fe4c739251416c910f55e1", "cast_id": 7, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 4}, {"name": "Matthias Schoenaerts", "character": "Anthony Scarfo", "id": 73381, "credit_id": "52fe4c749251416c910f55f5", "cast_id": 12, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 5}, {"name": "James Caan", "character": "Leon", "id": 3085, "credit_id": "52fe4c749251416c910f55ed", "cast_id": 10, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "Lili Taylor", "character": "Marie", "id": 3127, "credit_id": "52fe4c749251416c910f55f1", "cast_id": 11, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 7}, {"name": "Griffin Dunne", "character": "McNally", "id": 2171, "credit_id": "52fe4c749251416c910f55f9", "cast_id": 13, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 8}, {"name": "Noah Emmerich", "character": "Lt. Colon", "id": 11315, "credit_id": "52fe4c749251416c910f55fd", "cast_id": 14, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 9}, {"name": "Eve Hewson", "character": "Yvonne", "id": 933271, "credit_id": "52fe4c749251416c910f5605", "cast_id": 16, "profile_path": "/cDVb2oR75CCflAvEIyTNuEO4ceS.jpg", "order": 11}, {"name": "Yul Vazquez", "character": "Fabio DeSoto", "id": 75604, "credit_id": "52fe4c749251416c910f5609", "cast_id": 17, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 12}, {"name": "Daisy Tahan", "character": "Robin", "id": 80002, "credit_id": "53ef1f710e0a2675b8000eb2", "cast_id": 18, "profile_path": "/tcu4J8a6cpefCa55eZ9OWl8W4wG.jpg", "order": 13}, {"name": "Richard Petrocelli", "character": "Romero", "id": 171791, "credit_id": "543468690e0a265915009122", "cast_id": 50, "profile_path": null, "order": 14}, {"name": "Olek Krupa", "character": "Tommy", "id": 53573, "credit_id": "543468890e0a2658b2009257", "cast_id": 51, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 15}], "directors": [{"name": "Guillaume Canet", "department": "Directing", "job": "Director", "credit_id": "52fe4c739251416c910f55c3", "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "id": 19866}], "vote_average": 6.0, "runtime": 128}, "23437": {"poster_path": "/zPdMcikD993AQRd92iNv0Dxb67T.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112362985, "overview": "The film that brings back horror icon Freddy Krueger as a darker and more sinister character than ever before. While Freddy is on the prowl a group of teenagers being stalked soon learn they all have a common factor making them targets for this twisted killer.", "video": false, "id": 23437, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street", "tagline": "Never Sleep Again.", "vote_count": 210, "homepage": "http://www.nightmareonelmstreet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179056", "adult": false, "backdrop_path": "/1n3dtLjIVwsMj50aVcjUe5aqflq.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Platinum Dunes", "id": 2481}], "release_date": "2010-04-30", "popularity": 0.845503534258295, "original_title": "A Nightmare on Elm Street", "budget": 35000000, "cast": [{"name": "Jackie Earle Haley", "character": "Freddy Krueger", "id": 17183, "credit_id": "52fe4469c3a368484e02198d", "cast_id": 1, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 0}, {"name": "Katie Cassidy", "character": "Kris Fowles", "id": 55775, "credit_id": "52fe4469c3a368484e021991", "cast_id": 2, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 1}, {"name": "Kyle Gallner", "character": "Quentin Smith", "id": 59219, "credit_id": "52fe4469c3a368484e021995", "cast_id": 3, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 2}, {"name": "Kellan Lutz", "character": "Dean Russell", "id": 34502, "credit_id": "52fe4469c3a368484e021999", "cast_id": 4, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 3}, {"name": "Thomas Dekker", "character": "Jesse Braun", "id": 34199, "credit_id": "52fe4469c3a368484e02199d", "cast_id": 5, "profile_path": "/1wDz8UVkG7rx6t96QKuMrKCo9wj.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Alan Smith", "id": 6574, "credit_id": "52fe4469c3a368484e0219a1", "cast_id": 6, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Connie Britton", "character": "Marge Thompson", "id": 86310, "credit_id": "52fe4469c3a368484e0219a5", "cast_id": 7, "profile_path": "/dbX2i37hwEst6FeL0QH5QgZcsQ3.jpg", "order": 6}, {"name": "Rooney Mara", "character": "Nancy Holbrook", "id": 108916, "credit_id": "52fe4469c3a368484e0219e5", "cast_id": 19, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 7}, {"name": "Christian Stolte", "character": "Jesse's Father", "id": 36091, "credit_id": "52fe4469c3a368484e0219ef", "cast_id": 22, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 9}], "directors": [{"name": "Samuel Bayer", "department": "Directing", "job": "Director", "credit_id": "52fe4469c3a368484e0219b1", "profile_path": "/cZmM450OogsiyTgU99nlzFtW6Y5.jpg", "id": 20031}], "vote_average": 5.6, "runtime": 95}, "57157": {"poster_path": "/h6oOvsNVNO0hwHKzws3YKcxUJ9m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A divorced writer from the Midwest returns to her hometown to reconnect with an old flame, who's now married with a family.", "video": false, "id": 57157, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Young Adult", "tagline": "Everyone gets old. Not everyone grows up.", "vote_count": 103, "homepage": "http://www.youngadultmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1625346", "adult": false, "backdrop_path": "/exAFMvwgze8wYSDcLJsyQLbvZ7y.jpg", "production_companies": [], "release_date": "2011-12-09", "popularity": 0.620741247527898, "original_title": "Young Adult", "budget": 0, "cast": [{"name": "Charlize Theron", "character": "Mavis Gary", "id": 6885, "credit_id": "52fe4926c3a36847f818b6d5", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 0}, {"name": "Patton Oswalt", "character": "Matt Freehauf", "id": 10872, "credit_id": "52fe4926c3a36847f818b709", "cast_id": 18, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 1}, {"name": "Patrick Wilson", "character": "Buddy Slade", "id": 17178, "credit_id": "52fe4926c3a36847f818b6d9", "cast_id": 5, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 2}, {"name": "Elizabeth Reaser", "character": "Beth Slade", "id": 53755, "credit_id": "52fe4926c3a36847f818b6dd", "cast_id": 6, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 3}, {"name": "Collette Wolfe", "character": "Sandra Freehauf", "id": 86624, "credit_id": "52fe4926c3a36847f818b6e1", "cast_id": 7, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 4}, {"name": "Jill Eikenberry", "character": "Hedda Gary", "id": 44712, "credit_id": "52fe4926c3a36847f818b6e5", "cast_id": 8, "profile_path": "/l5rLlXkcK0G2VTp3V3mPRiQV6IC.jpg", "order": 5}, {"name": "Richard Bekins", "character": "David Gary", "id": 59691, "credit_id": "52fe4926c3a36847f818b6e9", "cast_id": 9, "profile_path": "/zNn7lSWpuiWIUriG48GfO6OzSLS.jpg", "order": 6}, {"name": "Brian McElhaney", "character": "Book Associate", "id": 132310, "credit_id": "52fe4926c3a36847f818b705", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mary Beth Hurt", "character": "Jan", "id": 54782, "credit_id": "52fe4926c3a36847f818b6ed", "cast_id": 10, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 8}, {"name": "Kate Nowlin", "character": "Mary Ellen Trantowski", "id": 206479, "credit_id": "52fe4926c3a36847f818b6f1", "cast_id": 11, "profile_path": "/emNIOj1pLShjugG3qooRrSpGBpe.jpg", "order": 9}, {"name": "Jenny Dare Paulin", "character": "Nipple Confusion Bassist", "id": 116568, "credit_id": "52fe4926c3a36847f818b6f5", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Rebecca Hart", "character": "Nipple Confusion Guitarist", "id": 999654, "credit_id": "52fe4926c3a36847f818b6f9", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Louisa Krause", "character": "Front Desk Girl", "id": 131871, "credit_id": "52fe4926c3a36847f818b6fd", "cast_id": 14, "profile_path": "/nae3zfkGZvr56xaP8k2QBfQArxm.jpg", "order": 12}, {"name": "Elizabeth Ward Land", "character": "Sales Lady", "id": 999655, "credit_id": "52fe4926c3a36847f818b701", "cast_id": 15, "profile_path": "/nFyHymjwsgHC73hBUOo0UnKA0oF.jpg", "order": 13}, {"name": "Hettienne Park", "character": "Vicki", "id": 1218184, "credit_id": "52fe4926c3a36847f818b713", "cast_id": 20, "profile_path": "/iQJMXqr5GeZogy1Ku6kPRtNl1mJ.jpg", "order": 14}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4926c3a36847f818b6d1", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 5.3, "runtime": 94}, "48034": {"poster_path": "/zTi0FYTvkS6ZAPrR4LisJVXJOlh.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Despite a traumatic event, a group of friends decide to go ahead with their annual beach vacation. Their relationships, convictions, sense of guilt and friendship are sorely tested. They are finally forced to own up to the little white lies they've been telling each other.", "video": false, "id": 48034, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Little White Lies", "tagline": "", "vote_count": 68, "homepage": "http://www.littlewhiteliesmovie.co.uk/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1440232", "adult": false, "backdrop_path": "/j2RxIz3HYDiG6vjZ1CwVdbN6de3.jpg", "production_companies": [{"name": "Les Productions du Tr\u00e9sor", "id": 2612}, {"name": "M6 Films", "id": 1115}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2010-10-20", "popularity": 0.132686806539311, "original_title": "Les petits mouchoirs", "budget": 0, "cast": [{"name": "Fran\u00e7ois Cluzet", "character": "Max Cantara", "id": 33161, "credit_id": "52fe4753c3a36847f812f845", "cast_id": 1, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 0}, {"name": "Beno\u00eet Magimel", "character": "Vincent Ribaud", "id": 5442, "credit_id": "52fe4753c3a36847f812f849", "cast_id": 3, "profile_path": "/mbOvuJivoZlhNrIIqYMSZEs6Mud.jpg", "order": 1}, {"name": "Jean Dujardin", "character": "Ludo", "id": 56024, "credit_id": "52fe4753c3a36847f812f84d", "cast_id": 4, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 2}, {"name": "Val\u00e9rie Bonneton", "character": "V\u00e9ronique Cantara", "id": 54324, "credit_id": "52fe4753c3a36847f812f851", "cast_id": 5, "profile_path": "/uqWDC3lrOjD87OI3Lfg3QEqENbL.jpg", "order": 3}, {"name": "Jo\u00ebl Dupuch", "character": "Jean-Louis", "id": 139855, "credit_id": "52fe4753c3a36847f812f855", "cast_id": 6, "profile_path": "/r3L5h7EKTxeo780fOYN9nIfThMQ.jpg", "order": 4}, {"name": "Gilles Lellouche", "character": "Eric", "id": 54291, "credit_id": "52fe4753c3a36847f812f859", "cast_id": 7, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 5}, {"name": "Laurent Lafitte", "character": "Antoine", "id": 93532, "credit_id": "52fe4753c3a36847f812f85d", "cast_id": 8, "profile_path": "/58rntvDjklRQBDsrtar4Nw8lRde.jpg", "order": 6}, {"name": "Pascale Arbillot", "character": "Isabelle Ribaud", "id": 83966, "credit_id": "52fe4753c3a36847f812f861", "cast_id": 9, "profile_path": "/4DZR4zlueuyC21STg9H4g4cDcaH.jpg", "order": 7}, {"name": "Anne Marivin", "character": "Juliette", "id": 54168, "credit_id": "52fe4753c3a36847f812f865", "cast_id": 10, "profile_path": "/oDRecloG3jOMsQy0H1zmLLld7Ti.jpg", "order": 8}, {"name": "Hocine M\u00e9rabet", "character": "Nassim", "id": 139856, "credit_id": "52fe4753c3a36847f812f869", "cast_id": 11, "profile_path": "/b6WAVLgFrt3HYlvbyL3y0qWbGsx.jpg", "order": 9}, {"name": "Louise Monot", "character": "L\u00e9a", "id": 78425, "credit_id": "52fe4753c3a36847f812f86d", "cast_id": 12, "profile_path": "/u0RFwvaNeGUuNpJOhfy3hGgiIUu.jpg", "order": 10}, {"name": "Maxim Nucci", "character": "Franck", "id": 139857, "credit_id": "52fe4753c3a36847f812f871", "cast_id": 13, "profile_path": "/4rF5Gzmy1ClJ195BlLmiYarehZH.jpg", "order": 11}, {"name": "Marion Cotillard", "character": "Marie", "id": 8293, "credit_id": "52fe4753c3a36847f812f881", "cast_id": 16, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 12}, {"name": "Sara Martins", "character": "La copine lesbienne de Marie", "id": 23390, "credit_id": "52fe4753c3a36847f812f8bf", "cast_id": 29, "profile_path": "/gXX5NfXheVoBRLibWMR2gnMrf2U.jpg", "order": 14}, {"name": "\u00c9douard Montoute", "character": "L'ami de Ludo au Baron", "id": 5441, "credit_id": "52fe4754c3a36847f812f8c9", "cast_id": 31, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 15}, {"name": "Mathieu Chedid", "character": "L'amant de Marie", "id": 66841, "credit_id": "53026ff9c3a3680a114040e4", "cast_id": 32, "profile_path": "/xti6TXbhKfOlQqAlYZjuhWxJTNc.jpg", "order": 16}], "directors": [{"name": "Guillaume Canet", "department": "Directing", "job": "Director", "credit_id": "52fe4753c3a36847f812f877", "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "id": 19866}], "vote_average": 7.2, "runtime": 154}, "252838": {"poster_path": "/u3gLkiOpkNb01r7yvrbbOfBJv3R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jimmy provides best man services for socially challenged guys, who \u2013 for whatever reason \u2013 have no one close enough to agree to stand by them on the day of their wedding. Doug a groom-to-be, has found himself in just such a situation, but, to make matters worse, he fabricates the names of not only a best man but nine groomsmen as well. When all else fails, Doug seeks out Jimmy\u2019s services to carry out a charade designed to make Doug look his best, but threatens to destroy everything if it fails.", "video": false, "id": 252838, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Wedding Ringer", "tagline": "He's the best man... Money can buy", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0884732", "adult": false, "backdrop_path": "/7S9Y0txZ1SHyfS608xaXs4J5Ajx.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "LStar Capital", "id": 34034}, {"name": "Miramax Films", "id": 14}], "release_date": "2015-01-16", "popularity": 5.97929064648722, "original_title": "The Wedding Ringer", "budget": 0, "cast": [{"name": "Kevin Hart", "character": "Jimmy Callahan / Bic", "id": 55638, "credit_id": "52fe4e579251416c9112e62b", "cast_id": 1, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 0}, {"name": "Josh Gad", "character": "Doug Harris", "id": 54415, "credit_id": "52fe4e579251416c9112e62f", "cast_id": 2, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 1}, {"name": "Kaley Cuoco", "character": "Gretchen Palmer", "id": 53862, "credit_id": "52fe4e579251416c9112e633", "cast_id": 3, "profile_path": "/sEIjKRSWUn8bxLCsxNArfxncvpO.jpg", "order": 2}, {"name": "Affion Crockett", "character": "Reggie / DrysDale", "id": 98394, "credit_id": "52fe4e579251416c9112e637", "cast_id": 4, "profile_path": "/moqCMggBapY4mHArUjaRKZ2xzIn.jpg", "order": 3}, {"name": "Jorge Garcia", "character": "Lurch / Garvey", "id": 1215525, "credit_id": "52fe4e579251416c9112e63b", "cast_id": 5, "profile_path": "/sPvMz5gWUbYc1vw0waieVIhkyb0.jpg", "order": 4}, {"name": "Corey Holcomb", "character": "Otis / Alzado", "id": 215074, "credit_id": "52fe4e579251416c9112e63f", "cast_id": 6, "profile_path": "/jbJOr0gOb7jcWs5bSGgCgrdfehh.jpg", "order": 5}, {"name": "Ken Howard", "character": "Ed Palmer", "id": 18328, "credit_id": "52fe4e579251416c9112e643", "cast_id": 7, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 6}, {"name": "Cloris Leachman", "character": "Grandma Palmer", "id": 9599, "credit_id": "52fe4e579251416c9112e647", "cast_id": 8, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 7}, {"name": "Jenifer Lewis", "character": "Doris Jenkins", "id": 15899, "credit_id": "52fe4e579251416c9112e64b", "cast_id": 9, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 8}, {"name": "Mimi Rogers", "character": "Lois Palmer", "id": 13920, "credit_id": "52fe4e579251416c9112e64f", "cast_id": 10, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 9}, {"name": "Aaron Takahashi", "character": "Endo", "id": 1053940, "credit_id": "52fe4e579251416c9112e653", "cast_id": 11, "profile_path": "/qhvi1JlCwgYOdnprP7MT9f2XZpS.jpg", "order": 10}, {"name": "Olivia Thirlby", "character": "Alison Palmer", "id": 52442, "credit_id": "52fe4e579251416c9112e657", "cast_id": 12, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 11}, {"name": "Nicky Whelan", "character": "Nadia", "id": 212833, "credit_id": "52fe4e579251416c9112e65b", "cast_id": 13, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 12}], "directors": [{"name": "Jeremy Garelick", "department": "Directing", "job": "Director", "credit_id": "52fe4e579251416c9112e661", "profile_path": null, "id": 59027}], "vote_average": 7.0, "runtime": 101}, "151368": {"poster_path": "/ATI8sLJ0pYNyJOIPaxX8tzcBsF.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nick is excited to discover that he's won a dinner date with his favorite actress, Jill Goddard. But when Jill refuses to honor the contest, her manager Chord makes an offer he can't refuse: the ability to view Jill secretly via computer. Nick begins watching the unknowing star on her webcam, not realizing that this decision will put both himself and Jill at risk as they enter a terrifying world of cat-and-mouse where nothing-and no one-are as they seem.", "video": false, "id": 151368, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Open Windows", "tagline": "The 21st Century REAR WINDOW.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2409818", "adult": false, "backdrop_path": "/xyBLT9V5auaRl5d1g4Ow36ncVgw.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Apaches Entertainment", "id": 8111}, {"name": "Atresmedia Cine", "id": 29566}, {"name": "La Panda", "id": 17727}, {"name": "Sayaka Producciones Audiovisuales", "id": 7344}, {"name": "SpectreVision", "id": 34519}], "release_date": "2014-07-04", "popularity": 1.35149845110521, "original_title": "Open Windows", "budget": 0, "cast": [{"name": "Elijah Wood", "character": "Nick Chambers", "id": 109, "credit_id": "52fe4aff9251416c910cc771", "cast_id": 1, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Sasha Grey", "character": "Jill Goddard", "id": 74251, "credit_id": "52fe4aff9251416c910cc785", "cast_id": 6, "profile_path": "/yuDlbdjZgxxSmeqQlj0Ru0zK2Sl.jpg", "order": 1}, {"name": "Neil Maskell", "character": "Chord", "id": 30433, "credit_id": "52fe4aff9251416c910cc781", "cast_id": 5, "profile_path": "/bBFkVz1paGmnxHDvmTcVIV5M5GJ.jpg", "order": 2}, {"name": "Nacho Vigalondo", "character": "Richy Gabilondo", "id": 118303, "credit_id": "533d6969c3a36878e6003218", "cast_id": 7, "profile_path": "/pYgf9PwkQ1gPjus4bw3f27yGCrh.jpg", "order": 3}, {"name": "Brian Elder", "character": "Fantastic Fest Attendee", "id": 1306732, "credit_id": "533d697cc3a368790300335c", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Scott Weinberg", "character": "Don Delano", "id": 124732, "credit_id": "533d6989c3a36878e600321b", "cast_id": 9, "profile_path": null, "order": 5}], "directors": [{"name": "Nacho Vigalondo", "department": "Directing", "job": "Director", "credit_id": "52fe4aff9251416c910cc777", "profile_path": "/pYgf9PwkQ1gPjus4bw3f27yGCrh.jpg", "id": 118303}], "vote_average": 5.5, "runtime": 101}, "7095": {"poster_path": "/nOgHa5ggt6vbmIuoNW7exrJQJq9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jack Powell suffers from an affliction that makes him grow four times faster than normal, so the 10-year-old looks like a 40-year-old man. After years of being tutored at home, Jack convinces his overprotective parents to send him to public school. The children don't know what to make of Jack, but with the help of his fifth-grade teacher, he makes an effort to win them over.", "video": false, "id": 7095, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Jack", "tagline": "Jack Powell is about to tackle his biggest adventure ever... the fifth grade!", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116669", "adult": false, "backdrop_path": "/2hsd6MbbhVyfjozeU9oonyyKymR.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Great Oaks Entertainment", "id": 2173}], "release_date": "1996-08-09", "popularity": 0.359950747786638, "original_title": "Jack", "budget": 45000000, "cast": [{"name": "Robin Williams", "character": "Jack Charles Powell", "id": 2157, "credit_id": "52fe4471c3a36847f8096541", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Diane Lane", "character": "Karen Powell", "id": 2882, "credit_id": "52fe4471c3a36847f8096545", "cast_id": 2, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 1}, {"name": "Brian Kerwin", "character": "Brian Powell", "id": 50464, "credit_id": "52fe4471c3a36847f8096549", "cast_id": 3, "profile_path": "/cC69Vc7F59RKBZUldffhWJWx57A.jpg", "order": 2}, {"name": "Jennifer Lopez", "character": "Miss Marquez", "id": 16866, "credit_id": "52fe4471c3a36847f809654d", "cast_id": 4, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 3}, {"name": "Bill Cosby", "character": "Lawrence Woodruff", "id": 51962, "credit_id": "52fe4471c3a36847f8096551", "cast_id": 5, "profile_path": "/74QfZIdzeCziphi251ueaCVXbW7.jpg", "order": 4}, {"name": "Fran Drescher", "character": "Dolores Durante", "id": 53122, "credit_id": "52fe4471c3a36847f8096573", "cast_id": 11, "profile_path": "/vQxr8CRgyDkH3GTFLwacs9W9tF4.jpg", "order": 5}, {"name": "Adam Zolotin", "character": "Louis Durante", "id": 53123, "credit_id": "52fe4471c3a36847f8096577", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Irwin Corey", "character": "Poppy", "id": 28035, "credit_id": "53e2f0840e0a262b8000305e", "cast_id": 13, "profile_path": "/rLpmlAF4SVjjUX1mv3KIbDSV8qn.jpg", "order": 7}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a36847f8096557", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 5.7, "runtime": 113}, "23483": {"poster_path": "/gtfggr5n3ED1neoTqVYmsVCoSS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96188903, "overview": "Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.", "video": false, "id": 23483, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Kick-Ass", "tagline": "Shut up. Kick ass.", "vote_count": 1847, "homepage": "http://www.kickass-themovie.com/", "belongs_to_collection": {"backdrop_path": "/kelR7BTeIP2ENVjmSz76lD3r5Ht.jpg", "poster_path": "/2DtPSyODKWXluIRV7PVru0SSzja.jpg", "id": 179892, "name": "Kick-Ass Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1250777", "adult": false, "backdrop_path": "/qf59pVUHbY9z0Ke9Jg6HQghNJhM.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "Plan B Entertainment", "id": 81}], "release_date": "2010-04-16", "popularity": 1.87381961745973, "original_title": "Kick-Ass", "budget": 28000000, "cast": [{"name": "Aaron Taylor-Johnson", "character": "Dave Lizewski / Kick-Ass", "id": 27428, "credit_id": "52fe446ac3a368484e021def", "cast_id": 9, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Hit Girl / Mindy Macready", "id": 56734, "credit_id": "52fe446ac3a368484e021de3", "cast_id": 6, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Christopher Mintz-Plasse", "character": "Chris D'Amico / Red Mist", "id": 54691, "credit_id": "52fe446ac3a368484e021ddb", "cast_id": 4, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 2}, {"name": "Nicolas Cage", "character": "Damon Macready / Big Daddy", "id": 2963, "credit_id": "52fe446ac3a368484e021dd7", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 3}, {"name": "Mark Strong", "character": "Frank D'Amico", "id": 2983, "credit_id": "52fe446ac3a368484e021ddf", "cast_id": 5, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Omari Hardwick", "character": "Marcus", "id": 41556, "credit_id": "52fe446ac3a368484e021deb", "cast_id": 8, "profile_path": "/gW4eSrYlyFhuC4QrMD0whDxA9DS.jpg", "order": 5}, {"name": "Xander Berkeley", "character": "Detective Vic Gigante", "id": 3982, "credit_id": "52fe446ac3a368484e021de7", "cast_id": 7, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 6}, {"name": "Clark Duke", "character": "Marty", "id": 54729, "credit_id": "52fe446ac3a368484e021df3", "cast_id": 10, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 7}, {"name": "Garrett M. Brown", "character": "Mr. Lizewski", "id": 27492, "credit_id": "52fe446ac3a368484e021df7", "cast_id": 11, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 8}, {"name": "Evan Peters", "character": "Todd", "id": 55089, "credit_id": "52fe446ac3a368484e021dfb", "cast_id": 12, "profile_path": "/2a1XA1ynmbZZj2nauwsc03OzRB.jpg", "order": 9}, {"name": "Deborah Twiss", "character": "Mrs. Zane", "id": 116881, "credit_id": "52fe446ac3a368484e021dff", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Lyndsy Fonseca", "character": "Katie Deauxma", "id": 116882, "credit_id": "52fe446ac3a368484e021e03", "cast_id": 14, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 11}, {"name": "Sophie Wu", "character": "Erika Cho", "id": 116883, "credit_id": "52fe446ac3a368484e021e07", "cast_id": 15, "profile_path": "/AtwCdj7Dk8qe3otYLAjARxlaD7.jpg", "order": 12}, {"name": "Elizabeth McGovern", "character": "Mrs. Lizewski", "id": 4513, "credit_id": "52fe446ac3a368484e021e29", "cast_id": 22, "profile_path": "/oECBsmiZ8OWxm6iQCV5o0eViLRg.jpg", "order": 13}, {"name": "Stu 'Large' Riley", "character": "Huge Goon", "id": 164250, "credit_id": "52fe446ac3a368484e021e2d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Michael Rispoli", "character": "Big Joe", "id": 18313, "credit_id": "52fe446ac3a368484e021e31", "cast_id": 24, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 15}, {"name": "Corey Johnson", "character": "Sporty Goon", "id": 17199, "credit_id": "52fe446ac3a368484e021e35", "cast_id": 25, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 16}, {"name": "Kenneth Simmons", "character": "Scary Goon", "id": 1132694, "credit_id": "52fe446ac3a368484e021e39", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Anthony Desio", "character": "Baby Goon", "id": 185737, "credit_id": "52fe446ac3a368484e021e3d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Randall Batinkoff", "character": "Tre Fernandez", "id": 36631, "credit_id": "52fe446ac3a368484e021e57", "cast_id": 35, "profile_path": "/aXj1Q2pr70lMPJPRuNB6EIYCujr.jpg", "order": 19}, {"name": "Dexter Fletcher", "character": "Cody", "id": 974, "credit_id": "52fe446ac3a368484e021e41", "cast_id": 29, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 20}, {"name": "Yancy Butler", "character": "Angie D'Amico", "id": 20759, "credit_id": "52fe446ac3a368484e021e45", "cast_id": 30, "profile_path": "/emcS8cLp5aEEMdJS4Am0TLiX6WA.jpg", "order": 21}, {"name": "Craig Ferguson", "character": "Himself", "id": 24264, "credit_id": "52fe446ac3a368484e021e49", "cast_id": 31, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 22}, {"name": "Jason Flemyng", "character": "Lobby Goon", "id": 973, "credit_id": "52fe446ac3a368484e021e53", "cast_id": 34, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 23}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a368484e021dcd", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.9, "runtime": 117}, "23488": {"poster_path": "/tL0JgGir10RFXZ1M0H3TgyrGdtp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 4706919, "overview": "A vain London playboy offers his soul in exchange for eternal beauty in this adaptation of the chilling tale by author Oscar Wilde. Seduced into the decadent world of Lord Henry Wotton (Colin Firth), handsome young aristocrat Dorian Gray (Ben Barnes) becomes obsessed with maintaining his youthful appearance, and commissions a special portrait that will weather the winds of time while he remains forever young. When Gray's obsession spirals out of control, his desperate attempts to safeguard his secret turn his once-privileged life into a living hell.", "video": false, "id": 23488, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Dorian Gray", "tagline": "Forever Young. Forever Cursed.", "vote_count": 81, "homepage": "http://doriangraymovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1235124", "adult": false, "backdrop_path": "/qG8MPYWkBQs0htKnsH6yBq0iCPJ.jpg", "production_companies": [{"name": "Ealing Studios", "id": 2650}, {"name": "Fragile Films", "id": 2651}], "release_date": "2009-09-09", "popularity": 0.450920708106586, "original_title": "Dorian Gray", "budget": 0, "cast": [{"name": "Ben Barnes", "character": "Dorian Gray", "id": 25130, "credit_id": "52fe446bc3a368484e021eb9", "cast_id": 3, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 0}, {"name": "Colin Firth", "character": "Lord Henry Wotton", "id": 5472, "credit_id": "52fe446bc3a368484e021eb5", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Rebecca Hall", "character": "Emily Wotton", "id": 15556, "credit_id": "52fe446bc3a368484e021ebd", "cast_id": 5, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 2}, {"name": "Emilia Fox", "character": "Lady Victoria Wotton", "id": 6639, "credit_id": "52fe446bc3a368484e021ec1", "cast_id": 6, "profile_path": "/xbOxrak2VaQTVX2pNdqRG3NZvK2.jpg", "order": 3}, {"name": "Ben Chaplin", "character": "Basil Hallward", "id": 21343, "credit_id": "52fe446bc3a368484e021ec5", "cast_id": 7, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 4}, {"name": "Fiona Shaw", "character": "Agatha", "id": 10981, "credit_id": "52fe446bc3a368484e021ec9", "cast_id": 8, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 5}, {"name": "Caroline Goodall", "character": "Lady Radly", "id": 6692, "credit_id": "52fe446bc3a368484e021ecd", "cast_id": 9, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 6}, {"name": "Maryam d'Abo", "character": "Gladys", "id": 10670, "credit_id": "52fe446bc3a368484e021ed1", "cast_id": 10, "profile_path": "/2KQONgibNNv1zM3AMVwtsO9jUdU.jpg", "order": 7}, {"name": "Douglas Henshall", "character": "Alan Campbell", "id": 35862, "credit_id": "52fe446bc3a368484e021ed5", "cast_id": 11, "profile_path": "/liGX3t9DqAXK6vdq3SromuJYcqE.jpg", "order": 8}, {"name": "Rachel Hurd-Wood", "character": "Sibyl Vane", "id": 129050, "credit_id": "52fe446bc3a368484e021ed9", "cast_id": 12, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 9}, {"name": "Max Irons", "character": "Lucius", "id": 232396, "credit_id": "52fe446bc3a368484e021eef", "cast_id": 16, "profile_path": "/mFKJvG49Gr1Fb0HgsTDg4YSZzJc.jpg", "order": 10}], "directors": [{"name": "Oliver Parker", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a368484e021edf", "profile_path": "/3qdUN7qhcQn4P3tEOTKJgTUdCIr.jpg", "id": 56710}], "vote_average": 5.9, "runtime": 112}, "146375": {"poster_path": "/bB5w3vSw9M4MyGCwDsZGGqkIkE9.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 24, "overview": "Two mismatched cops team up to investigate the murder of a business mogul's wife.", "video": false, "id": 146375, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "On the Other Side of the Tracks", "tagline": "", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1937133", "adult": false, "backdrop_path": "/rdhruSs0snPbFg4NmwJvtETb68m.jpg", "production_companies": [{"name": "Mandarin Film", "id": 7839}, {"name": "Mars Distribution", "id": 2908}, {"name": "M6 Films", "id": 1115}], "release_date": "2012-12-15", "popularity": 0.479951741869721, "original_title": "De l'autre c\u00f4t\u00e9 du p\u00e9riph", "budget": 0, "cast": [{"name": "Omar Sy", "character": "Ousmane Diakhit\u00e9", "id": 78423, "credit_id": "52fe4b7e9251416c75104b11", "cast_id": 5, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 0}, {"name": "Laurent Lafitte", "character": "Fran\u00e7ois Monge", "id": 93532, "credit_id": "52fe4b7e9251416c75104b15", "cast_id": 6, "profile_path": "/58rntvDjklRQBDsrtar4Nw8lRde.jpg", "order": 1}, {"name": "Sabrina Ouazani", "character": "Yasmine", "id": 17475, "credit_id": "52fe4b7e9251416c75104b19", "cast_id": 7, "profile_path": "/ipMrh3XlBrYDvSoNpMP28wXEpsX.jpg", "order": 2}, {"name": "Lionel Abelanski", "character": "Daniel Cardinet", "id": 7278, "credit_id": "52fe4b7e9251416c75104b1d", "cast_id": 8, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 3}, {"name": "Youssef Hajdi", "character": "Giovanni / Nabil", "id": 458904, "credit_id": "52fe4b7e9251416c75104b21", "cast_id": 9, "profile_path": "/aPV6h5YknWBxkaJRyLEAddXoqTi.jpg", "order": 4}, {"name": "Maxime Motte", "character": "Van Gogh", "id": 1124073, "credit_id": "52fe4b7e9251416c75104b25", "cast_id": 10, "profile_path": "/cLTDZI0DpKBz6dxUbxtGsqIGV6N.jpg", "order": 5}, {"name": "L\u00e9o L\u00e9othier", "character": "G\u00e9rard", "id": 1124074, "credit_id": "52fe4b7e9251416c75104b29", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Andr\u00e9 Marcon", "character": "Chaligny", "id": 55805, "credit_id": "52fe4b7e9251416c75104b2d", "cast_id": 12, "profile_path": "/dsuU4KIb8Av5rGk5T605S7utlpg.jpg", "order": 7}, {"name": "Zabou Breitman", "character": "Morland", "id": 54675, "credit_id": "52fe4b7e9251416c75104b31", "cast_id": 13, "profile_path": "/8zaqoSPo3VHTwLYnSE5BsBAKluE.jpg", "order": 8}, {"name": "Patrick Bonnel", "character": "Balard", "id": 79035, "credit_id": "52fe4b7e9251416c75104b77", "cast_id": 25, "profile_path": "/nhGCkmkLheXUAMoo74Omn95yirX.jpg", "order": 9}, {"name": "Roch Leibovici", "character": "Patrick", "id": 38876, "credit_id": "52fe4b7e9251416c75104b7b", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Rebecca Azan", "character": "Laurence", "id": 1171518, "credit_id": "52fe4b7f9251416c75104b7f", "cast_id": 27, "profile_path": "/q8mC3hxPm07hbLV91Un0l6gvqOh.jpg", "order": 11}, {"name": "Tchewk Essafi", "character": "Samir (as Tchewik Essafi)", "id": 1171519, "credit_id": "52fe4b7f9251416c75104b83", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Patrick Kodjo Topou", "character": "Tyson", "id": 1171520, "credit_id": "52fe4b7f9251416c75104b87", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "David Charhon", "department": "Directing", "job": "Director", "credit_id": "52fe4b7e9251416c75104afb", "profile_path": null, "id": 78226}], "vote_average": 5.6, "runtime": 96}, "179144": {"poster_path": "/nDBRRkZgaGhJw91wdcUFYwWIbFF.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 8371085, "overview": "Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.", "video": false, "id": 179144, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Great Beauty", "tagline": "", "vote_count": 117, "homepage": "http://www.indigofilm.it/produzioni/film/61/la-grande-bellezza/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt2358891", "adult": false, "backdrop_path": "/v1XhOGAE5wvhaXdNTwVH8Z5gxNm.jpg", "production_companies": [{"name": "Indigo Film", "id": 1533}, {"name": "Medusa Film", "id": 6246}, {"name": "Babe Films", "id": 3366}, {"name": "Path\u00e9", "id": 7981}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Mediaset", "id": 1677}, {"name": "Canal+", "id": 5358}, {"name": "France T\u00e9l\u00e9visions", "id": 11795}, {"name": "Regione Lazio", "id": 20416}, {"name": "Banca Popolare di Vicenza", "id": 20418}, {"name": "Lazio Film Commission", "id": 20419}, {"name": "Fonds Eurimages du Conseil de l'Europe", "id": 11011}, {"name": "Programme MEDIA de la Communaut\u00e9 Europ\u00e9enne", "id": 11248}, {"name": "Biscottificio Verona", "id": 20420}], "release_date": "2013-05-21", "popularity": 1.48818970183352, "original_title": "La grande bellezza", "budget": 12400000, "cast": [{"name": "Toni Servillo", "character": "Jep Gambardella", "id": 72782, "credit_id": "52fe4da2c3a36847f826bcbf", "cast_id": 2, "profile_path": "/1TIbNwPHpcb0HWledxIPBqe7elu.jpg", "order": 0}, {"name": "Carlo Verdone", "character": "Romano", "id": 89193, "credit_id": "52fe4da2c3a36847f826bcc3", "cast_id": 3, "profile_path": "/6Llxs7g6cjPrOVnp2omFhpEsbNy.jpg", "order": 1}, {"name": "Sabrina Ferilli", "character": "Ramona", "id": 128236, "credit_id": "52fe4da2c3a36847f826bcc7", "cast_id": 4, "profile_path": "/hYWbUuersG0ws8ZMu8B2zKMeuNU.jpg", "order": 2}, {"name": "Carlo Buccirosso", "character": "Lello Cava", "id": 120638, "credit_id": "52fe4da2c3a36847f826bccb", "cast_id": 5, "profile_path": "/Lp5KJrP3N8wls9Ee7gT7reNCSk.jpg", "order": 3}, {"name": "Iaia Forte", "character": "Trumeau", "id": 68166, "credit_id": "52fe4da2c3a36847f826bccf", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Pamela Villoresi", "character": "Viola", "id": 137353, "credit_id": "52fe4da2c3a36847f826bcdf", "cast_id": 9, "profile_path": "/dpPVKxi8Q6iAm7uNWDxj4RRetUh.jpg", "order": 5}, {"name": "Galatea Ranzi", "character": "Stefania", "id": 137812, "credit_id": "52fe4da2c3a36847f826bce3", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Franco Graziosi", "character": "Conte Colonna", "id": 5566, "credit_id": "52fe4da2c3a36847f826bce7", "cast_id": 11, "profile_path": "/vxjNtPJxFhnY4t89NNKLQO0VZxV.jpg", "order": 7}, {"name": "Giorgio Pasotti", "character": "Stefano", "id": 27274, "credit_id": "52fe4da2c3a36847f826bceb", "cast_id": 12, "profile_path": "/QvMLacHL5CH80zj6bGoZAK1QQ4.jpg", "order": 8}, {"name": "Massimo Popolizio", "character": "Alfio Bracco", "id": 131632, "credit_id": "52fe4da2c3a36847f826bcef", "cast_id": 13, "profile_path": null, "order": 9}], "directors": [{"name": "Paolo Sorrentino", "department": "Directing", "job": "Director", "credit_id": "52fe4da2c3a36847f826bcbb", "profile_path": "/A4N12piSSJQ80WQnIbHKPXp3H4L.jpg", "id": 56194}], "vote_average": 7.1, "runtime": 150}, "36685": {"poster_path": "/v2NC7o8f7AZvQbOAwrfRbe5Z106.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139800000, "overview": "It's the weird and wonderful as newly engaged couple Brad and Janet encounter a problem when they car halts in the rain. They both look for contact only to find themselves at the castle of Dr. Frank-N-Furter a transvestite. A place to stay is offered, but will Brad and Janet want to remain there? Especially when a large group of Transylvanians dance to the 'Time Warp', Dr. Frank-N-Furter builds his own man and a whole host of participation for the audience to enjoy.", "video": false, "id": 36685, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 878, "name": "Science Fiction"}], "title": "The Rocky Horror Picture Show", "tagline": "A Different Set Of Jaws.", "vote_count": 108, "homepage": "http://www.rockyhorror.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/av74GpX6RjxQxPqWm1Hkcbc7dAE.jpg", "id": 281644, "name": "Rocky Horror Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0073629", "adult": false, "backdrop_path": "/6Fp3am76rkv3AqevktmTMiupdnz.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1975-09-29", "popularity": 0.224626443274705, "original_title": "The Rocky Horror Picture Show", "budget": 1200000, "cast": [{"name": "Meat Loaf", "character": "Eddie", "id": 7470, "credit_id": "52fe46029251416c91045ee3", "cast_id": 7, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Janet Weiss", "id": 4038, "credit_id": "52fe46019251416c91045ecb", "cast_id": 1, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Barry Bostwick", "character": "Brad Majors", "id": 13473, "credit_id": "52fe46019251416c91045ecf", "cast_id": 2, "profile_path": "/p25f5yLOLqhFC40RmcxAmWDLtP4.jpg", "order": 2}, {"name": "Richard O'Brien", "character": "Riff Raff", "id": 13474, "credit_id": "52fe46019251416c91045ed3", "cast_id": 3, "profile_path": "/pCxCt82DQQLTgOryp6FPczmN3L9.jpg", "order": 3}, {"name": "Patricia Quinn", "character": "Magenta", "id": 13475, "credit_id": "52fe46019251416c91045ed7", "cast_id": 4, "profile_path": "/bfcnDApPbMGN9F2SIgFeFPgUe59.jpg", "order": 6}, {"name": "Nell Campbell", "character": "Columbia", "id": 13476, "credit_id": "52fe46029251416c91045edb", "cast_id": 5, "profile_path": null, "order": 7}, {"name": "Tim Curry", "character": "Dr. Frank-N-Furtert", "id": 13472, "credit_id": "52fe46029251416c91045ee7", "cast_id": 8, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 7}, {"name": "Charles Gray", "character": "The Criminologist", "id": 10074, "credit_id": "52fe46029251416c91045f21", "cast_id": 19, "profile_path": "/ejgGEya19V1jUBqixTz9D8xIjlR.jpg", "order": 8}, {"name": "Jonathan Adams", "character": "Dr. Everett V. Scott", "id": 1137209, "credit_id": "539d26fe0e0a261332002d6c", "cast_id": 21, "profile_path": "/p6KSYFUCoEvWduHdVhY9FzMEcBJ.jpg", "order": 9}, {"name": "Fran Fullenwider", "character": "The Transylvanians", "id": 123208, "credit_id": "551da689c3a3683a18000e0d", "cast_id": 22, "profile_path": "/KLFIlzxqCRTxscVZnKF1i6wir.jpg", "order": 10}], "directors": [{"name": "Jim Sharman", "department": "Directing", "job": "Director", "credit_id": "52fe46029251416c91045eed", "profile_path": null, "id": 13484}], "vote_average": 6.4, "runtime": 100}, "23514": {"poster_path": "/hYtMOXjSur5QccB4pZYWbKHMDor.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24000000, "overview": "Tired of the noise and madness of New York and the crushing conventions of late Eisenhower-era America, itinerant journalist Paul Kemp travels to the pristine island of Puerto Rico to write for a local San Juan newspaper run by the downtrodden editor Lotterman. Adopting the rum-soaked lifestyle of the late \u201850s version of Hemingway\u2019s \u201cThe Lost Generation,\u201d Paul soon becomes entangled with a very attractive American woman, Chenaults and her fianc\u00e9e Sanderson, a businessman involved in shady property development deals.\u00a0 It is within this world that Kemp ultimately discovers his true voice as a writer and integrity as a man.", "video": false, "id": 23514, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Rum Diary", "tagline": "One part outrage. One part justice. Three parts rum. Mix well.", "vote_count": 117, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0376136", "adult": false, "backdrop_path": "/nBZfHNrQY3YXKTh6tqWLnfgrVK0.jpg", "production_companies": [{"name": "FilmEngine", "id": 816}, {"name": "GK Films", "id": 3281}, {"name": "Infinitum Nihil", "id": 2691}], "release_date": "2011-10-27", "popularity": 0.551949968551351, "original_title": "The Rum Diary", "budget": 45000000, "cast": [{"name": "Johnny Depp", "character": "Paul Kemp", "id": 85, "credit_id": "52fe446bc3a368484e02214f", "cast_id": 11, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Amber Heard", "character": "Chenault", "id": 55085, "credit_id": "52fe446bc3a368484e022127", "cast_id": 2, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "Sanderson", "id": 6383, "credit_id": "52fe446bc3a368484e02212b", "cast_id": 3, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "Moberg", "id": 1771, "credit_id": "52fe446bc3a368484e022133", "cast_id": 5, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Lotterman", "id": 28633, "credit_id": "52fe446bc3a368484e022137", "cast_id": 6, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Amaury Nolasco", "character": "Segurra", "id": 17341, "credit_id": "52fe446bc3a368484e02212f", "cast_id": 4, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 5}, {"name": "Marshall Bell", "character": "Donavon", "id": 3041, "credit_id": "52fe446bc3a368484e02213b", "cast_id": 7, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 6}, {"name": "Bill Smitrovich", "character": "Zimburger", "id": 17200, "credit_id": "52fe446bc3a368484e02213f", "cast_id": 8, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 7}, {"name": "Julian Holloway", "character": "Wolsley", "id": 79635, "credit_id": "52fe446bc3a368484e02215f", "cast_id": 14, "profile_path": "/pUIJv2p67qpWGNsBnppoqO4KJMJ.jpg", "order": 8}, {"name": "Enzo Cilenti", "character": "Digby", "id": 91494, "credit_id": "52fe446bc3a368484e022163", "cast_id": 15, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 9}, {"name": "Aaron Lustig", "character": "Monk", "id": 140237, "credit_id": "5516758ac3a3683485000f06", "cast_id": 18, "profile_path": "/3Ay4BadhJtyTWxhOwxvryHkE3dj.jpg", "order": 10}, {"name": "Natalia Rivera", "character": "Chenault's Friend", "id": 973259, "credit_id": "52fe446bc3a368484e02216b", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Bruce Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a368484e022145", "profile_path": "/mImqLKRBNPUZz8dIAzoIvkADDwS.jpg", "id": 8966}], "vote_average": 5.4, "runtime": 120}, "7131": {"poster_path": "/gPFn6CIe4Af6jeFmyIpyk5hGV4.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300257475, "overview": "Famed monster slayer Gabriel Van Helsing (Hugh Jackman) is dispatched to Transylvania to assist the last of the Valerious bloodline in defeating Count Dracula. Anna Valerious (Kate Beckinsale) reveals that Dracula has formed an unholy alliance with Dr. Frankenstein's monster and is hell-bent on exacting a centuries-old curse on her family.", "video": false, "id": 7131, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Van Helsing", "tagline": "The One Name They All Fear.", "vote_count": 470, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uBNNmICsBnLhB2zhQ8PpwoluoYR.jpg", "poster_path": "/kuqxOT5Ox7mrHUSvwuDCJG6tuRL.jpg", "id": 109608, "name": "Van Helsing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0338526", "adult": false, "backdrop_path": "/xL05gsaqt6p78L5rBC9fDJBRnEy.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Sommers Company, The", "id": 19643}, {"name": "Stillking Films", "id": 11345}, {"name": "Carpathian Pictures", "id": 2174}], "release_date": "2004-05-06", "popularity": 0.999974996584815, "original_title": "Van Helsing", "budget": 160000000, "cast": [{"name": "Hugh Jackman", "character": "Van Helsing", "id": 6968, "credit_id": "52fe4471c3a36847f80965d3", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Anna Valerious", "id": 3967, "credit_id": "52fe4471c3a36847f80965d7", "cast_id": 3, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Richard Roxburgh", "character": "Vladislaus Dracula", "id": 12206, "credit_id": "52fe4471c3a36847f80965db", "cast_id": 4, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 2}, {"name": "Josie Maran", "character": "Marishka", "id": 74651, "credit_id": "52fe4471c3a36847f80965f7", "cast_id": 9, "profile_path": "/jkH3k2NS5qLdIQZbpxGCXmXLcrG.jpg", "order": 3}, {"name": "David Wenham", "character": "Carl", "id": 1371, "credit_id": "52fe4471c3a36847f80965fb", "cast_id": 10, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 4}, {"name": "Shuler Hensley", "character": "Frankenstein's Monster", "id": 96892, "credit_id": "52fe4471c3a36847f80965ff", "cast_id": 11, "profile_path": "/xAeK7my9ZFHcHGCrgDeUUDFTty1.jpg", "order": 5}, {"name": "Elena Anaya", "character": "Aleera", "id": 3623, "credit_id": "52fe4471c3a36847f8096603", "cast_id": 12, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 6}, {"name": "Will Kemp", "character": "Velkan", "id": 54500, "credit_id": "52fe4471c3a36847f8096607", "cast_id": 13, "profile_path": "/cQAKDIsxoZlzp8OmEiXGUCFjxre.jpg", "order": 7}, {"name": "Kevin J. O'Connor", "character": "Igor", "id": 18916, "credit_id": "52fe4471c3a36847f809660b", "cast_id": 14, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 8}, {"name": "Alun Armstrong", "character": "Cardinal Jinette", "id": 2629, "credit_id": "52fe4472c3a36847f809660f", "cast_id": 15, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 9}, {"name": "Silvia Colloca", "character": "Verona", "id": 141492, "credit_id": "52fe4472c3a36847f8096613", "cast_id": 16, "profile_path": "/94IqIgrhQQgw6YC562vyayH2XwP.jpg", "order": 10}, {"name": "Tom Fisher", "character": "Top Hat", "id": 27678, "credit_id": "52fe4472c3a36847f8096617", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Samuel West", "character": "Dr. Victor Frankenstein", "id": 54447, "credit_id": "52fe4472c3a36847f809661b", "cast_id": 18, "profile_path": "/w6L9AZSFx1n3O4fDcAml6BDt1t.jpg", "order": 12}, {"name": "Robbie Coltrane", "character": "Mr. Hyde (voice)", "id": 1923, "credit_id": "52fe4472c3a36847f809661f", "cast_id": 19, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 13}, {"name": "Stephen Fisher", "character": "Dr. Jekyll", "id": 141493, "credit_id": "52fe4472c3a36847f8096623", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a36847f80965cf", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 5.8, "runtime": 131}, "121824": {"poster_path": "/ybrl9mix93XF3E5M5KO9sLi3nGt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After serving 28 years in prison for accidentally killing the son of a crime boss, newly paroled gangster Val (Al Pacino) reunites with his former partners in crime, Doc (Christopher Walken) and Hirsch (Alan Arkin), for a night on the town. As the three men revisit old haunts, reflect on their glory days and try to make up for lost time, one wrestles with a terrible quandary: Doc has orders to kill Val, and time is running out for him to figure out a way out of his dilemma.", "video": false, "id": 121824, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Stand Up Guys", "tagline": "They don't make 'em like they used to.", "vote_count": 131, "homepage": "http://www.standupguysfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1389096", "adult": false, "backdrop_path": "/8bZtmUCYPDyJI5xV7yzElH67FLz.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2012-09-01", "popularity": 0.479646057006237, "original_title": "Stand Up Guys", "budget": 0, "cast": [{"name": "Alan Arkin", "character": "Richard Hirsch", "id": 1903, "credit_id": "52fe4a6ec3a368484e152cf9", "cast_id": 2, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 0}, {"name": "Julianna Margulies", "character": "Nina Hirsch", "id": 25654, "credit_id": "52fe4a6ec3a368484e152cfd", "cast_id": 3, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 1}, {"name": "Al Pacino", "character": "Valentine \"Val\"", "id": 1158, "credit_id": "52fe4a6ec3a368484e152d01", "cast_id": 4, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Doc", "id": 4690, "credit_id": "52fe4a6ec3a368484e152d05", "cast_id": 5, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Katheryn Winnick", "character": "Oxana", "id": 26723, "credit_id": "52fe4a6ec3a368484e152d09", "cast_id": 6, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 4}, {"name": "Mark Margolis", "character": "Claphands", "id": 1173, "credit_id": "52fe4a6ec3a368484e152d13", "cast_id": 9, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 5}, {"name": "Vanessa Ferlito", "character": "Sylvia", "id": 20491, "credit_id": "52fe4a6ec3a368484e152d17", "cast_id": 10, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 6}, {"name": "Addison Timlin", "character": "Alex", "id": 56542, "credit_id": "52fe4a6ec3a368484e152d1b", "cast_id": 11, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 7}, {"name": "Lucy Punch", "character": "Wendy", "id": 66446, "credit_id": "52fe4a6ec3a368484e152d1f", "cast_id": 12, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 8}, {"name": "Bill Burr", "character": "Larry", "id": 109708, "credit_id": "54cd4de4c3a3687f94001f94", "cast_id": 19, "profile_path": "/fXvur9kJ3Pw9CWqHvEkvyyRVuuU.jpg", "order": 9}, {"name": "Craig Sheffer", "character": "Jargoniew #1", "id": 4138, "credit_id": "54cd4e0dc3a3687f94001fa0", "cast_id": 20, "profile_path": "/izAHksLjKOhOUMJmOPkwcNs6Kls.jpg", "order": 10}], "directors": [{"name": "Fisher Stevens", "department": "Directing", "job": "Director", "credit_id": "52fe4a6ec3a368484e152cf5", "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "id": 26473}], "vote_average": 6.1, "runtime": 95}, "121826": {"poster_path": "/9XJCnqQA1Yl3hiIHeH1jpibyT1i.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 57138219, "overview": "The directorial debut of Dustin Hoffman, Quartet is a high-drama comedy about temperamental divas and old grudges, passion and pride, romance and Rigoletto, starring Maggie Smith, Tom Courtenay, Billy Connolly and Pauline Collins as four retired opera singers.", "video": false, "id": 121826, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Quartet", "tagline": "Four Friends Looking For A Little Harmony", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1441951", "adult": false, "backdrop_path": "/cTOZopbtjnaSSptIlGgVFtnYATV.jpg", "production_companies": [{"name": "Headline Pictures", "id": 13151}], "release_date": "2012-09-08", "popularity": 0.543998361284338, "original_title": "Quartet", "budget": 0, "cast": [{"name": "Maggie Smith", "character": "Jean Horton", "id": 10978, "credit_id": "52fe4a6ec3a368484e152d6d", "cast_id": 6, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 0}, {"name": "Tom Courtenay", "character": "Reginald Paget", "id": 14011, "credit_id": "52fe4a6ec3a368484e152d65", "cast_id": 4, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 1}, {"name": "Billy Connolly", "character": "Wilf Bond", "id": 9188, "credit_id": "52fe4a6ec3a368484e152d61", "cast_id": 3, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 2}, {"name": "Pauline Collins", "character": "Cissy Robson", "id": 83437, "credit_id": "52fe4a6ec3a368484e152d5d", "cast_id": 2, "profile_path": "/nygjw5eWU5UDvJvfZJSO36Vlpko.jpg", "order": 3}, {"name": "Michael Gambon", "character": "Cedric Livingston", "id": 5658, "credit_id": "52fe4a6ec3a368484e152d69", "cast_id": 5, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 4}, {"name": "Sheridan Smith", "character": "Dr. Lucy Cogan", "id": 110080, "credit_id": "52fe4a6ec3a368484e152d71", "cast_id": 7, "profile_path": "/1B6CdF4gsnedHUd0nudAozqvVFC.jpg", "order": 5}, {"name": "Jumayn Hunter", "character": "", "id": 85067, "credit_id": "542f2b70c3a3680442000c46", "cast_id": 8, "profile_path": null, "order": 6}], "directors": [{"name": "Dustin Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe4a6ec3a368484e152d59", "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "id": 4483}], "vote_average": 6.4, "runtime": 98}, "56292": {"poster_path": "/96k0SkL6bXqKyOj50hYu3fRRbmV.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 694713380, "overview": "In the 4th installment of the Mission Impossible series, Ethan Hunt (Cruise) and his team are racing against time to track down a dangerous terrorist named Hendricks (Nyqvist), who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.", "video": false, "id": 56292, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible - Ghost Protocol", "tagline": "No Plan. No Backup. No Choice.", "vote_count": 2048, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1229238", "adult": false, "backdrop_path": "/wLRRjb0GEUCuBMx3YFksg2xyH4S.jpg", "production_companies": [{"name": "Bad Robot", "id": 11461}, {"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "TC Productions", "id": 21777}], "release_date": "2011-12-21", "popularity": 2.37925140608446, "original_title": "Mission: Impossible - Ghost Protocol", "budget": 140000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe48f7c3a36847f8182983", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jeremy Renner", "character": "Brandt", "id": 17604, "credit_id": "52fe48f7c3a36847f818297f", "cast_id": 4, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 1}, {"name": "Simon Pegg", "character": "Benji Dunn", "id": 11108, "credit_id": "52fe48f7c3a36847f8182987", "cast_id": 6, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 2}, {"name": "Paula Patton", "character": "Jane Carter", "id": 52851, "credit_id": "52fe48f7c3a36847f8182993", "cast_id": 10, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 3}, {"name": "Anil Kapoor", "character": "Brij Nath", "id": 72118, "credit_id": "52fe48f7c3a36847f818298b", "cast_id": 7, "profile_path": "/m3GKtXU8DeP5DH1UD352c5ITOrc.jpg", "order": 4}, {"name": "Josh Holloway", "character": "Trevor Hanaway", "id": 142636, "credit_id": "52fe48f7c3a36847f818298f", "cast_id": 9, "profile_path": "/4vMj8zIMSZoxxXefanh5SuEDDJ6.jpg", "order": 5}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe48f7c3a36847f8182997", "cast_id": 11, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 6}, {"name": "Miraj Grbic", "character": "Bogdan", "id": 508582, "credit_id": "52fe48f7c3a36847f818299b", "cast_id": 12, "profile_path": "/pdbaK0gzkSS4B1EEa2FE9VsdjGq.jpg", "order": 7}, {"name": "Ivan Shvedoff", "character": "Leonid Lisenker", "id": 6079, "credit_id": "52fe48f7c3a36847f818299f", "cast_id": 13, "profile_path": "/AkzSvrLAo3e4rFb1vrT7HzAQM6R.jpg", "order": 8}, {"name": "Samuli Edelmann", "character": "Wistrom", "id": 92428, "credit_id": "52fe48f7c3a36847f81829a3", "cast_id": 14, "profile_path": "/r89sCuJlxYOWGQh6JinCUYQXrDc.jpg", "order": 9}, {"name": "Michael Nyqvist", "character": "Kurt Hendricks", "id": 6283, "credit_id": "52fe48f7c3a36847f81829a7", "cast_id": 15, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 10}, {"name": "L\u00e9a Seydoux", "character": "Sabine Moreau", "id": 121529, "credit_id": "52fe48f7c3a36847f81829ab", "cast_id": 16, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 11}, {"name": "Michelle Monaghan", "character": "Julia Meade", "id": 11705, "credit_id": "52fe48f7c3a36847f81829bb", "cast_id": 19, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 12}, {"name": "Tom Wilkinson", "character": "IMF Secretary", "id": 207, "credit_id": "52fe48f7c3a36847f81829bf", "cast_id": 20, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 13}, {"name": "Tammy Hui", "character": "Julia's Friend", "id": 173079, "credit_id": "533030fa9251413a7b005736", "cast_id": 21, "profile_path": "/xqL92MfcUjJ77c9B1SCkodQCfsl.jpg", "order": 14}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe48f7c3a36847f818296f", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 6.5, "runtime": 133}, "62630": {"poster_path": "/umXaJpx6MMO9MKx2KIcMzPctVyF.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 1284399, "overview": "A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.", "video": false, "id": 62630, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "The Devil's Double", "tagline": "The 80's were brilliant, if you were in charge.", "vote_count": 71, "homepage": "http://www.corsandd.com/be-en/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1270262", "adult": false, "backdrop_path": "/98OmSugAkjJqLGw5rrejj3qjQ9H.jpg", "production_companies": [{"name": "Corrino Media Corporation", "id": 7178}, {"name": "Corsan", "id": 7299}, {"name": "Staccato Films", "id": 7300}], "release_date": "2011-02-11", "popularity": 0.318204787082312, "original_title": "The Devil's Double", "budget": 21051437, "cast": [{"name": "Dominic Cooper", "character": "Latif Yahia / Uday Hussein", "id": 55470, "credit_id": "52fe4685c3a368484e09542d", "cast_id": 6, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 0}, {"name": "Ludivine Sagnier", "character": "Sarrab", "id": 4390, "credit_id": "52fe4685c3a368484e095431", "cast_id": 7, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 1}, {"name": "Raad Rawi", "character": "Munem", "id": 73710, "credit_id": "52fe4685c3a368484e095435", "cast_id": 8, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 2}, {"name": "Mehmet Ferda", "character": "Kamel Hannah", "id": 112429, "credit_id": "52fe4685c3a368484e095429", "cast_id": 5, "profile_path": "/ziDwUNNts043kUrErYWA1OigjYm.jpg", "order": 3}, {"name": "Philip Quast", "character": "Saddam Hussein / Faoaz", "id": 117314, "credit_id": "52fe4685c3a368484e095445", "cast_id": 11, "profile_path": "/olNUiKdIDH5njTMyl7I9fbBrD6v.jpg", "order": 3}, {"name": "Mimoun Oa\u00efssa", "character": "Ali", "id": 446906, "credit_id": "52fe4685c3a368484e095461", "cast_id": 16, "profile_path": "/atkte2MuXaXKqiAkieiGIwYUTBi.jpg", "order": 4}, {"name": "Khalid Laith", "character": "Yassem Al-Helou", "id": 219506, "credit_id": "52fe4685c3a368484e095465", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Nasser Memarzia", "character": "Latif's Father", "id": 946350, "credit_id": "52fe4685c3a368484e09546d", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Dar Salim", "character": "Azzam", "id": 234907, "credit_id": "52fe4685c3a368484e095469", "cast_id": 18, "profile_path": "/3CrPTwZJ0hsWzX7oi7sKFfzDo82.jpg", "order": 8}, {"name": "Pano Masti", "character": "Said", "id": 1423442, "credit_id": "54d35b8ec3a3686ab90037a0", "cast_id": 63, "profile_path": null, "order": 9}, {"name": "Stewart Scudamore", "character": "Father of School Girl", "id": 25095, "credit_id": "54d35bda9251413fca0032e1", "cast_id": 65, "profile_path": null, "order": 11}, {"name": "Amrita Acharia", "character": "School Girl", "id": 1048692, "credit_id": "54d35bf89251413fd30032a2", "cast_id": 66, "profile_path": "/uwz4vjtIMxD9y7uq3CFpPjrznVR.jpg", "order": 12}, {"name": "Amber Rose Revah", "character": "Bride", "id": 574378, "credit_id": "54d35c1392514109ba002ad0", "cast_id": 67, "profile_path": "/uWKJDbkZqttvc1os3UNanSmh5Aa.jpg", "order": 13}, {"name": "Selva Rasalingam", "character": "Rokan", "id": 24607, "credit_id": "54d35c3492514109ba002ad5", "cast_id": 68, "profile_path": null, "order": 14}, {"name": "Jamie Harding", "character": "Qusay", "id": 549331, "credit_id": "54d35c9ec3a3686abf003466", "cast_id": 69, "profile_path": null, "order": 15}, {"name": "Akin Gazi", "character": "Saad", "id": 1261092, "credit_id": "551861a6c3a36862f90047b3", "cast_id": 71, "profile_path": null, "order": 16}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe4685c3a368484e095425", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 6.5, "runtime": 109}, "228326": {"poster_path": "/fhq87M6NNXqYH4OUoIfsM6oDUA3.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "From producer Guillermo del Toro and director Jorge Gutierrez comes an animated comedy with a unique visual style. THE BOOK OF LIFE is the journey of Manolo, a young man who is torn between fulfilling the expectations of his family and following his heart. Before choosing which path to follow, he embarks on an incredible adventure that spans three fantastical worlds where he must face his greatest fears. Rich with a fresh take on pop music favorites, THE BOOK OF LIFE encourages us to celebrate the past while looking forward to the future.", "video": false, "id": 228326, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Book of Life", "tagline": "", "vote_count": 148, "homepage": "http://www.bookoflifemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2262227", "adult": false, "backdrop_path": "/lVshZpxU5EB8zXJrnXxblaDps6m.jpg", "production_companies": [{"name": "Reel FX Creative Studios", "id": 2787}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2014-10-17", "popularity": 1.7908949518846, "original_title": "The Book of Life", "budget": 0, "cast": [{"name": "Diego Luna", "character": "Manolo (voice)", "id": 8688, "credit_id": "52fe4ec79251416c75162175", "cast_id": 1, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Joaquin (voice)", "id": 38673, "credit_id": "52fe4ec79251416c75162179", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Zoe Saldana", "character": "Maria (voice)", "id": 8691, "credit_id": "52fe4ec79251416c7516217d", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 2}, {"name": "Christina Applegate", "character": "Mary Beth (voice)", "id": 18979, "credit_id": "52fe4ec79251416c75162181", "cast_id": 4, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 3}, {"name": "Eugenio Derbez", "character": "Chato (voice)", "id": 239574, "credit_id": "52fe4ec79251416c75162185", "cast_id": 5, "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "order": 4}, {"name": "Cheech Marin", "character": "Pancho Rodriguez (voice)", "id": 11159, "credit_id": "52fe4ec79251416c75162189", "cast_id": 6, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 5}, {"name": "Gabriel Iglesias", "character": "Pepe Rodriguez (voice)", "id": 86498, "credit_id": "52fe4ec79251416c7516218d", "cast_id": 7, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 6}, {"name": "Ron Perlman", "character": "Xibalba (voice)", "id": 2372, "credit_id": "543720790e0a2617d20006a7", "cast_id": 10, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 7}, {"name": "Kate del Castillo", "character": "La Muerte (voice)", "id": 36628, "credit_id": "54cfeee4925141475700b0c4", "cast_id": 13, "profile_path": "/p5aq3I9P53C1bN7yN8sTUhUwfrs.jpg", "order": 8}, {"name": "Ana de la Reguera", "character": "Carmen S\u00e1nchez (voice)", "id": 57409, "credit_id": "54cfef66c3a3681c9c008b82", "cast_id": 14, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 9}, {"name": "Anjelah Johnson", "character": "Adelita / Nina (voice)", "id": 933835, "credit_id": "54cfefc3c3a3687f8200b029", "cast_id": 15, "profile_path": "/8C2qTejJ1qjwOvpUgmwnTR4oGSf.jpg", "order": 10}, {"name": "Dan Navarro", "character": "Chakal", "id": 1422233, "credit_id": "54cff0a5c3a3687f8200b046", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Jorge R. Gutierrez", "department": "Directing", "job": "Director", "credit_id": "52fe4ec79251416c75162199", "profile_path": null, "id": 1265056}], "vote_average": 7.4, "runtime": 95}, "76617": {"poster_path": "/ejts0R0cfTWLduGsdEqOiMvFxHP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47241945, "overview": "A young woman learns that she has inherited a Texas estate from her deceased grandmother.\u00a0After embarking on a road trip with friends to uncover her roots, she finds she is the sole owner of a lavish, isolated Victorian mansion. But her newfound wealth comes at a price as she stumbles upon a horror that awaits her in the mansion\u2019s dank cellars.", "video": false, "id": 76617, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Texas Chainsaw 3D", "tagline": "Evil wears many faces.", "vote_count": 188, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1572315", "adult": false, "backdrop_path": "/l7hHzXb5cly5dlo6smdpUkOMaoI.jpg", "production_companies": [{"name": "Lions Gate", "id": 6644}, {"name": "Nu Image Films", "id": 925}], "release_date": "2013-01-04", "popularity": 1.12699868242046, "original_title": "Texas Chainsaw 3D", "budget": 20000000, "cast": [{"name": "Alexandra Daddario", "character": "Heather Miller", "id": 109513, "credit_id": "52fe4944c3a368484e122de9", "cast_id": 4, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 0}, {"name": "Dan Yeager", "character": "Leatherface", "id": 1054724, "credit_id": "52fe4944c3a368484e122ded", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Bill Moseley", "character": "Drayton Sawyer", "id": 27737, "credit_id": "52fe4944c3a368484e122df1", "cast_id": 6, "profile_path": "/zZP7ijcocjYN6cNKwpPwmRDWsv1.jpg", "order": 2}, {"name": "Marilyn Burns", "character": "Verna Carson", "id": 27798, "credit_id": "52fe4944c3a368484e122df5", "cast_id": 7, "profile_path": "/bEPYa5U36XHiTBdZqZkcRq3cdPP.jpg", "order": 3}, {"name": "Tania Raymonde", "character": "Nikki", "id": 38666, "credit_id": "52fe4944c3a368484e122df9", "cast_id": 8, "profile_path": "/2sJuL0fveM1K8z9wuQZiDpAgY0H.jpg", "order": 4}, {"name": "Trey Songz", "character": "Ryan", "id": 224231, "credit_id": "52fe4944c3a368484e122dfd", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Scott Eastwood", "character": "Deputy Carl Hartman", "id": 928572, "credit_id": "52fe4944c3a368484e122e01", "cast_id": 10, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 6}, {"name": "Richard Riehle", "character": "Farnsworth", "id": 18262, "credit_id": "52fe4944c3a368484e122e05", "cast_id": 11, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 7}, {"name": "Shaun Sipos", "character": "Darryl", "id": 65772, "credit_id": "52fe4944c3a368484e122e09", "cast_id": 12, "profile_path": "/zg0BVYdso2eaPuGu9zT6e2uKIIj.jpg", "order": 8}, {"name": "Thom Barry", "character": "Sheriff Hooper", "id": 8175, "credit_id": "52fe4944c3a368484e122e0d", "cast_id": 13, "profile_path": "/AhUa78UoZ5oGk5kWiatnDaPxSnO.jpg", "order": 9}, {"name": "Keram Malicki-S\u00e1nchez", "character": "Kenny", "id": 4134, "credit_id": "52fe4944c3a368484e122e11", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sue Rock", "character": "Arlene Miller", "id": 969635, "credit_id": "52fe4944c3a368484e122e15", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Paul Rae", "character": "Mayor Burt Hartman", "id": 61260, "credit_id": "52fe4944c3a368484e122e19", "cast_id": 16, "profile_path": "/ny1kzrULA4dA4j95oETiYZCl6GV.jpg", "order": 12}, {"name": "Gunnar Hansen", "character": "Leatherface (Archive Footage)", "id": 27804, "credit_id": "52fe4944c3a368484e122e1d", "cast_id": 17, "profile_path": "/bwqo7HNyvYqPCnTWlOHSUnstg2F.jpg", "order": 13}, {"name": "John Dugan", "character": "Grandfather", "id": 104892, "credit_id": "52fe4944c3a368484e122e21", "cast_id": 18, "profile_path": "/4rhSibBG8MY7qtcoOtXI7NGqBfh.jpg", "order": 14}, {"name": "Dodie Brown", "character": "Loretta Sawyer", "id": 138608, "credit_id": "52fe4944c3a368484e122e25", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Kari J. Kramer", "character": "Pig Man", "id": 1054725, "credit_id": "52fe4944c3a368484e122e29", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Sam McKinzie", "character": "Young Leatherface", "id": 1054726, "credit_id": "52fe4944c3a368484e122e2d", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "James MacDonald", "character": "Officer Marvin", "id": 1188456, "credit_id": "52fe4944c3a368484e122e67", "cast_id": 31, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 18}], "directors": [{"name": "John Luessenhop", "department": "Directing", "job": "Director", "credit_id": "52fe4944c3a368484e122de5", "profile_path": "/HI2jnUyVBZu2xYOohzjM4nB8XQ.jpg", "id": 97026}], "vote_average": 5.4, "runtime": 92}, "8967": {"poster_path": "/ptDOdfOg0srtk4TGdeYbLqxv2nd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54674226, "overview": "The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.", "video": false, "id": 8967, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Tree of Life", "tagline": "Nothing stands still.", "vote_count": 254, "homepage": "http://www.twowaysthroughlife.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0478304", "adult": false, "backdrop_path": "/zJyDbdoyNquF2GnfFdvD54y2OBG.jpg", "production_companies": [{"name": "Fox Searchlight", "id": 7391}], "release_date": "2011-05-27", "popularity": 0.891261852002461, "original_title": "The Tree of Life", "budget": 32000000, "cast": [{"name": "Brad Pitt", "character": "Mr. O'Brien", "id": 287, "credit_id": "52fe44ccc3a36847f80aa95b", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Sean Penn", "character": "Jack", "id": 2228, "credit_id": "52fe44ccc3a36847f80aa95f", "cast_id": 3, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Jessica Chastain", "character": "Mrs. O'Brien", "id": 83002, "credit_id": "52fe44ccc3a36847f80aa963", "cast_id": 4, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 2}, {"name": "Fiona Shaw", "character": "Grandmother", "id": 10981, "credit_id": "52fe44ccc3a36847f80aa967", "cast_id": 5, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 3}, {"name": "Tye Sheridan", "character": "Steve", "id": 1034681, "credit_id": "52fe44ccc3a36847f80aa981", "cast_id": 10, "profile_path": "/tdplYVnd1bEWjv41B4gk8D1vLfO.jpg", "order": 4}, {"name": "Joanna Going", "character": "Jack's Wife", "id": 59662, "credit_id": "52fe44ccc3a36847f80aa96b", "cast_id": 6, "profile_path": "/8wPmJGGj4HEUfaYzYjoL1AzOSlf.jpg", "order": 5}], "directors": [{"name": "Terrence Malick", "department": "Directing", "job": "Director", "credit_id": "52fe44ccc3a36847f80aa957", "profile_path": "/4w0C0RaJ3qS6YZ7Ons6VZcEdfl7.jpg", "id": 30715}], "vote_average": 6.7, "runtime": 139}, "211954": {"poster_path": "/dhf4A9Hwg1ZSsq6FkqEhX33SruX.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 99067206, "overview": "Valentin is Acapulco's resident playboy, until a former fling leaves a baby on his doorstep and him heading with her out of Mexico.", "video": false, "id": 211954, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Instructions Not Included", "tagline": "Life doesn't care if you're ready.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2378281", "adult": false, "backdrop_path": "/iswBaKVDpxdzYJg57rbuVCG5jb2.jpg", "production_companies": [{"name": "Pantaleon Films", "id": 15194}], "release_date": "2013-07-20", "popularity": 0.897555021273445, "original_title": "No se Aceptan Devoluciones", "budget": 5500000, "cast": [{"name": "Loreto Peralta", "character": "Maggie", "id": 1202611, "credit_id": "52fe4da0c3a368484e1f3abf", "cast_id": 18, "profile_path": null, "order": 0}, {"name": "Eugenio Derbez", "character": "Valent\u00edn", "id": 239574, "credit_id": "52fe4da0c3a368484e1f3a93", "cast_id": 7, "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "order": 1}, {"name": "Jessica Lindsey", "character": "Julie", "id": 1178995, "credit_id": "52fe4da0c3a368484e1f3a97", "cast_id": 8, "profile_path": "/1HtWGanA2Duom5aWKA1P19Y5SOQ.jpg", "order": 2}, {"name": "Daniel Raymont", "character": "Frank Ryan", "id": 181876, "credit_id": "52fe4da0c3a368484e1f3a9b", "cast_id": 9, "profile_path": "/rp7gfIafpH5LzBmuIWReXVjKcj3.jpg", "order": 3}, {"name": "Hugo Stiglitz", "character": "Johnny Bravo", "id": 38764, "credit_id": "52fe4da0c3a368484e1f3a9f", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Arcelia Ram\u00edrez", "character": "Judeisy", "id": 932160, "credit_id": "52fe4da0c3a368484e1f3aa3", "cast_id": 11, "profile_path": "/doJY9OkV9mVGW9ZpPGga9Urc5ck.jpg", "order": 5}, {"name": "Agust\u00edn Bernal", "character": "Lupe", "id": 1044093, "credit_id": "52fe4da0c3a368484e1f3aa7", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Karla Souza", "character": "Jackie", "id": 144275, "credit_id": "52fe4da0c3a368484e1f3aab", "cast_id": 13, "profile_path": "/eYwArgBl9ArlGGQi1VvYY44Zpu3.jpg", "order": 7}, {"name": "Roger Cudney", "character": "Abogado Julie", "id": 78006, "credit_id": "52fe4da0c3a368484e1f3aaf", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ari Brickman", "character": "Director", "id": 556129, "credit_id": "52fe4da0c3a368484e1f3ab3", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Jeannine Derbez", "character": "Directora", "id": 140603, "credit_id": "52fe4da0c3a368484e1f3ab7", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Jes\u00fas Ochoa", "character": "Himself", "id": 69865, "credit_id": "52fe4da0c3a368484e1f3abb", "cast_id": 17, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 11}, {"name": "Andr\u00e9s V\u00e1zquez", "character": "Valent\u00edn ni\u00f1o", "id": 1458151, "credit_id": "5538dc66c3a36815ac0095c1", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Leia Freitas", "character": "Amante Brasile\u00f1a", "id": 1458152, "credit_id": "5538e0e1c3a3681be4004c52", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "\u00c1ngela Moreno", "character": "Amante dominicana", "id": 1458153, "credit_id": "5538e176c3a36878fd005703", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Gilda Gentile", "character": "Amante argentina", "id": 1458154, "credit_id": "5538e204c3a36878fd005735", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Nancy Taira", "character": "Amante oriental", "id": 1458155, "credit_id": "5538e27ac3a3685cf8001434", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Sammy P\u00e9rez", "character": "Sammy", "id": 1458158, "credit_id": "5538e48ec3a36878fd00579a", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Gregg Lucas", "character": "Agente migraci\u00f3n", "id": 1383942, "credit_id": "5538e9d692514112560059ba", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Migael Penix", "character": "Portero hotel L.A.", "id": 1458162, "credit_id": "5538eb6c92514138a90026ee", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Alenka R\u00edos", "character": "Camarera", "id": 1058176, "credit_id": "5538ed2d925141275e001420", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Camila Gallegos", "character": "Maggie beb\u00e9", "id": 1458167, "credit_id": "5538ed7192514140b7001da9", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Matilda Gallegos", "character": "Maggie beb\u00e9", "id": 1458169, "credit_id": "5538edb192514138a9002721", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Danny Lopez", "character": "Aztecman", "id": 1458709, "credit_id": "553aa7529251416874001d7f", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Eduardo Gleason", "character": "Hern\u00e1n Cort\u00e9s", "id": 1458710, "credit_id": "553aa7df925141651800bc54", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Javier De la Vega", "character": "Staff 'Aztecman'", "id": 1087382, "credit_id": "553aae7dc3a3683e55001fad", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Jake Koenig", "character": "Mr. Anders", "id": 1376390, "credit_id": "553aaefb925141125600842e", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Margarita Wynne", "character": "Directora escuela", "id": 1262022, "credit_id": "553abffbc3a3683e550020f8", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Melissa Temme", "character": "Maestra Maggie", "id": 1276161, "credit_id": "553ac0a89251416874001fbd", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Laura Krystine", "character": "Ni\u00f1a bullying", "id": 1458737, "credit_id": "553ac133c3a3683e14002075", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "Francisco Avenda\u00f1o", "character": "Doctor", "id": 1250862, "credit_id": "553ac234925141275e003eaf", "cast_id": 37, "profile_path": null, "order": 30}], "directors": [{"name": "Eugenio Derbez", "department": "Directing", "job": "Director", "credit_id": "52fe4da0c3a368484e1f3a71", "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "id": 239574}], "vote_average": 7.6, "runtime": 115}, "9386": {"poster_path": "/vXgWOXa7m3cEhOhYjR5q2UZCBBp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102243874, "overview": "Veteran Secret Service agent Frank Horrigan is a man haunted by his failure to save President Kennedy while serving protection detail in Dallas. Thirty years later, a man calling himself \"Booth\" threatens the life of the current President, forcing Horrigan to come back to protection detail to confront the ghosts from his past.", "video": false, "id": 9386, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "In the Line of Fire", "tagline": "An assassin on the loose. A president in danger. Only one man stands between them...", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107206", "adult": false, "backdrop_path": "/lWmRtLisFIZzfvhbFeyx61af0zZ.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1993-07-08", "popularity": 0.82244563120416, "original_title": "In the Line of Fire", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Secret Service Agent Frank Horrigan", "id": 190, "credit_id": "52fe44f0c3a36847f80b3101", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Rene Russo", "character": "Secret Service Agent Lilly Raines", "id": 14343, "credit_id": "52fe44f0c3a36847f80b3109", "cast_id": 3, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 1}, {"name": "John Malkovich", "character": "Mitch Leary", "id": 6949, "credit_id": "52fe44f0c3a36847f80b3105", "cast_id": 2, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Dylan McDermott", "character": "Secret Service Agent Al D'Andrea", "id": 32597, "credit_id": "52fe44f0c3a36847f80b310d", "cast_id": 4, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 3}, {"name": "Gary Cole", "character": "Secret Service Presidential Detail Agent-In-Charge Bill Watts", "id": 21163, "credit_id": "52fe44f0c3a36847f80b3147", "cast_id": 15, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Fred Thompson", "character": "White House Chief of Staff Harry Sargent", "id": 17874, "credit_id": "52fe44f0c3a36847f80b314b", "cast_id": 16, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 5}, {"name": "Tobin Bell", "character": "Mendoza", "id": 2144, "credit_id": "52fe44f0c3a36847f80b314f", "cast_id": 17, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 6}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b3113", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 6.3, "runtime": 128}, "15362": {"poster_path": "/mdjCA5crpk0tiftH2v91c7js0qF.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The story of Jacques Mesrine, France's public enemy No. 1 during the 1970s. After nearly two decades of legendary criminal feats -- from multiple bank robberies and to prison breaks -- Mesrine was gunned down by the French police in Paris.", "video": false, "id": 15362, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mesrine: Public Enemy #1", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3SirYFnkQwYhAec3ugZS8BKpMbk.jpg", "poster_path": "/kFUC6s54Q8jn1eNBqs6xOGa2jeL.jpg", "id": 85945, "name": "The Mesrine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411272", "adult": false, "backdrop_path": "/eCkYOAH6ffHKTZYQpLZbL1H9MDF.jpg", "production_companies": [{"name": "Remstar Productions", "id": 4298}, {"name": "La Petite Reine", "id": 1992}], "release_date": "2008-11-19", "popularity": 0.53736630644706, "original_title": "L'ennemi public n\u00b01", "budget": 80000000, "cast": [{"name": "Vincent Cassel", "character": "Jacques Mesrine", "id": 1925, "credit_id": "52fe46519251416c75074781", "cast_id": 3, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "Ludivine Sagnier", "character": "Sylvie Jeanjacquot", "id": 4390, "credit_id": "52fe46519251416c75074785", "cast_id": 4, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 1}, {"name": "Mathieu Amalric", "character": "Fran\u00e7ois Besse", "id": 8789, "credit_id": "52fe46519251416c75074789", "cast_id": 5, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 2}, {"name": "G\u00e9rard Lanvin", "character": "Charly Bauer", "id": 70165, "credit_id": "52fe46519251416c7507478d", "cast_id": 6, "profile_path": "/qK3YBWuTC0CuXL0wmRo7Zhcz8tJ.jpg", "order": 3}, {"name": "Samuel Le Bihan", "character": "Michel Ardouin", "id": 49025, "credit_id": "537dc7cbc3a368059e000fee", "cast_id": 7, "profile_path": "/j3OLT8ccuFREbG5TUwqfuHDZDkA.jpg", "order": 4}, {"name": "Olivier Gourmet", "character": "Commissaire Broussard", "id": 45152, "credit_id": "53a961b60e0a261439007810", "cast_id": 8, "profile_path": "/30MOkEJL3qFtAV9dlbSrFVgcNAU.jpg", "order": 5}], "directors": [{"name": "Jean-Fran\u00e7ois Richet", "department": "Directing", "job": "Director", "credit_id": "52fe46519251416c75074777", "profile_path": null, "id": 58324}], "vote_average": 7.4, "runtime": 133}, "39939": {"poster_path": "/egJdSR2XVOC0P8P6bVa5CCvxStN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18492362, "overview": "Four bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.", "video": false, "id": 39939, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Super Troopers", "tagline": "Altered State Police", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0247745", "adult": false, "backdrop_path": "/dyHIPT1Q2nZjsciWBuTPikYOxzA.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Broken Lizard Industries", "id": 2773}], "release_date": "2001-01-18", "popularity": 0.857268469294238, "original_title": "Super Troopers", "budget": 3000000, "cast": [{"name": "Jay Chandrasekhar", "character": "Thorny", "id": 52049, "credit_id": "52fe47409251416c9106f229", "cast_id": 8, "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "order": 1}, {"name": "Steve Lemme", "character": "Mac", "id": 52051, "credit_id": "52fe47409251416c9106f22d", "cast_id": 9, "profile_path": "/kZtGtYLBVA6AGp8TZOF95dHobD5.jpg", "order": 2}, {"name": "Kevin Heffernan", "character": "Farva", "id": 56251, "credit_id": "52fe47409251416c9106f231", "cast_id": 10, "profile_path": "/afuCF27oMcjV8wNf6YIPXl3XZPE.jpg", "order": 3}, {"name": "Paul Soter", "character": "Foster", "id": 56253, "credit_id": "52fe47409251416c9106f235", "cast_id": 11, "profile_path": "/t3Sl0MLEWvYFCuQ31foB5gnYVBa.jpg", "order": 4}, {"name": "Geoffrey Arend", "character": "College Boy 3", "id": 5375, "credit_id": "52fe47409251416c9106f239", "cast_id": 12, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 5}, {"name": "Brian Cox", "character": "Captain O'Hagan", "id": 1248, "credit_id": "52fe47409251416c9106f23d", "cast_id": 13, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 6}, {"name": "Erik Stolhanske", "character": "Rabbit", "id": 56252, "credit_id": "52fe47409251416c9106f247", "cast_id": 15, "profile_path": "/RLlVv6cLfJQrMrwzNXJXdILoRp.jpg", "order": 7}, {"name": "Marisa Coughlan", "character": "Ursula", "id": 56595, "credit_id": "52fe47409251416c9106f251", "cast_id": 17, "profile_path": "/iATJK8gWf8pXwJIKB0w8lQ38TTH.jpg", "order": 8}], "directors": [{"name": "Jay Chandrasekhar", "department": "Directing", "job": "Director", "credit_id": "52fe47409251416c9106f213", "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "id": 52049}], "vote_average": 6.7, "runtime": 100}, "195589": {"poster_path": "/bpj8myebvnTw5HDmzTSI8N6WFYr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 268157400, "overview": "A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.", "video": false, "id": 195589, "genres": [{"id": 35, "name": "Comedy"}], "title": "Neighbors", "tagline": "Family vs. Frat", "vote_count": 781, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2004420", "adult": false, "backdrop_path": "/aRzZhu6hNg3FgSH8ZsOPJG4ie0Y.jpg", "production_companies": [{"name": "Good Universe", "id": 17393}, {"name": "Point Grey Pictures", "id": 16615}], "release_date": "2014-05-09", "popularity": 2.13528700002512, "original_title": "Neighbors", "budget": 18000000, "cast": [{"name": "Seth Rogen", "character": "Mac Radner", "id": 19274, "credit_id": "52fe4d169251416c9110a20b", "cast_id": 1, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Zac Efron", "character": "Teddy Sanders", "id": 29222, "credit_id": "52fe4d169251416c9110a213", "cast_id": 3, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Kelly Radner", "id": 9827, "credit_id": "52fe4d169251416c9110a20f", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Dave Franco", "character": "Pete", "id": 54697, "credit_id": "52fe4d169251416c9110a217", "cast_id": 4, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 3}, {"name": "Christopher Mintz-Plasse", "character": "Scoonie", "id": 54691, "credit_id": "52fe4d169251416c9110a21b", "cast_id": 5, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 4}, {"name": "Jake M. Johnson", "character": "Sebastian Cremmington", "id": 543505, "credit_id": "52fe4d169251416c9110a235", "cast_id": 10, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 5}, {"name": "Lisa Kudrow", "character": "Carol Gladstone", "id": 14406, "credit_id": "52fe4d169251416c9110a231", "cast_id": 9, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 6}, {"name": "Carla Gallo", "character": "Paula", "id": 54708, "credit_id": "52fe4d169251416c9110a239", "cast_id": 11, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 7}, {"name": "Chasty Ballesteros", "character": "Alecia", "id": 1158832, "credit_id": "52fe4d169251416c9110a23d", "cast_id": 12, "profile_path": "/ciHZCLB504QF9cptNy9ecLahPlJ.jpg", "order": 9}, {"name": "Halston Sage", "character": "Brooke", "id": 934243, "credit_id": "5326a290c3a3683dbf003e48", "cast_id": 20, "profile_path": "/qS5j5apFwdFdNP4ECoNEU4nLEHm.jpg", "order": 10}, {"name": "Cassandra Starr", "character": "Sorority Girl", "id": 1203537, "credit_id": "52fe4d169251416c9110a255", "cast_id": 18, "profile_path": "/jh2lsW9pwTa7fAUJf1df91VnJSF.jpg", "order": 11}, {"name": "Craig Roberts", "character": "Assjuice", "id": 104561, "credit_id": "52fe4d169251416c9110a249", "cast_id": 15, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 13}, {"name": "Hannibal Buress", "character": "Officer Watkins", "id": 500427, "credit_id": "5326a2b3c3a3682378003f42", "cast_id": 21, "profile_path": "/diJUQc3FWB0ol1MCBZQJsMZpMoK.jpg", "order": 14}, {"name": "Jason Mantzoukas", "character": "Dr. Theodorakis", "id": 111683, "credit_id": "52fe4d169251416c9110a24d", "cast_id": 16, "profile_path": "/lBMDmGGuhLrg0Q4cZi2vDc2ucgF.jpg", "order": 15}, {"name": "Ike Barinholtz", "character": "Jimmy", "id": 198150, "credit_id": "52fe4d169251416c9110a245", "cast_id": 14, "profile_path": "/j4cOnT9kT6AePfbPe3aZ5dSeDEk.jpg", "order": 16}, {"name": "Ali Cobrin", "character": "Whitney", "id": 496731, "credit_id": "53fd31e7c3a3684c8c0004da", "cast_id": 40, "profile_path": "/koAUk1iZtZcl3kXNZ08hNqhbeAN.jpg", "order": 17}, {"name": "Natasha Leggero", "character": "Prostitute", "id": 1214835, "credit_id": "542719230e0a2655660005f7", "cast_id": 41, "profile_path": "/xLHMLRHRrQ03zHukUNi1q5yroxt.jpg", "order": 18}, {"name": "Jerrod Carmichael", "character": "Garf", "id": 1400880, "credit_id": "54cf6fef92514147570082cf", "cast_id": 42, "profile_path": "/5a08qc6pLzSBlGdNnwmK8IaQXpV.jpg", "order": 19}, {"name": "Maria Olsen", "character": "Prostitute (uncredited)", "id": 142402, "credit_id": "55143ac392514103e9003032", "cast_id": 43, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 20}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe4d169251416c9110a221", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 6.2, "runtime": 96}, "72710": {"poster_path": "/jnPOLAPQLhqMeDLV2BsQfrd6R11.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63327201, "overview": "A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, \"Wanda\" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.", "video": false, "id": 72710, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Host", "tagline": "You will be one of us", "vote_count": 908, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1517260", "adult": false, "backdrop_path": "/eurvLB7prqNEFFwlwSSmf0sLGtY.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Silver Reel", "id": 12075}, {"name": "Chockstone Pictures", "id": 13649}], "release_date": "2013-03-29", "popularity": 1.04817896447352, "original_title": "The Host", "budget": 44000000, "cast": [{"name": "Saoirse Ronan", "character": "Melanie Stryder / Wanda", "id": 36592, "credit_id": "52fe487bc3a368484e0fa99d", "cast_id": 52, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Diane Kruger", "character": "The Seeker / Lacey", "id": 9824, "credit_id": "52fe487bc3a368484e0fa8eb", "cast_id": 11, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "Jake Abel", "character": "Ian O'Shea", "id": 105727, "credit_id": "52fe487bc3a368484e0fa8ef", "cast_id": 12, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 2}, {"name": "William Hurt", "character": "Jeb Stryder", "id": 227, "credit_id": "52fe487bc3a368484e0fa8f3", "cast_id": 13, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Frances Fisher", "character": "Maggie Stryder", "id": 3713, "credit_id": "52fe487bc3a368484e0fa8f7", "cast_id": 14, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 4}, {"name": "Max Irons", "character": "Jared Howe", "id": 232396, "credit_id": "52fe487bc3a368484e0fa8fb", "cast_id": 15, "profile_path": "/mFKJvG49Gr1Fb0HgsTDg4YSZzJc.jpg", "order": 5}, {"name": "Chandler Canterbury", "character": "Jamie Stryder", "id": 77334, "credit_id": "52fe487bc3a368484e0fa8ff", "cast_id": 16, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 6}, {"name": "Boyd Holbrook", "character": "Kyle O'Shea", "id": 467645, "credit_id": "52fe487bc3a368484e0fa903", "cast_id": 17, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 7}, {"name": "Stephen Rider", "character": "Seeker Reed", "id": 936403, "credit_id": "52fe487bc3a368484e0fa913", "cast_id": 20, "profile_path": "/oS4eTt8qKF9320mGceFgArbFO0v.jpg", "order": 8}, {"name": "Emily Browning", "character": "Wanda", "id": 70456, "credit_id": "52fe487bc3a368484e0fa91d", "cast_id": 22, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 9}, {"name": "Rachel Roberts", "character": "Soul Fleur", "id": 35198, "credit_id": "52fe487bc3a368484e0fa939", "cast_id": 27, "profile_path": "/70ICch4alwBoHAYygFzmIi6cwcE.jpg", "order": 10}, {"name": "Shyaam Karra", "character": "Soul Anshu", "id": 1273231, "credit_id": "52fe487bc3a368484e0fa93d", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Brent Wendell Williams", "character": "Soul Winters", "id": 1273232, "credit_id": "52fe487bc3a368484e0fa941", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Jhil McEntyre", "character": "Soul Lake", "id": 1273233, "credit_id": "52fe487bc3a368484e0fa945", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Jalen Coleman", "character": "Soul Nafisa", "id": 1273234, "credit_id": "52fe487bc3a368484e0fa949", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Jaylen Moore", "character": "Seeker Song", "id": 1181296, "credit_id": "52fe487bc3a368484e0fa94d", "cast_id": 32, "profile_path": "/xpRNJYs1ogkSIUPIUo5XLNfRW3.jpg", "order": 15}, {"name": "Stephen Conroy", "character": "Seeker Sands", "id": 1273235, "credit_id": "52fe487bc3a368484e0fa951", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Michael L. Parker", "character": "Seeker Wolfe", "id": 1273236, "credit_id": "52fe487bc3a368484e0fa955", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Phil Austin", "character": "Seeker Waverley", "id": 92058, "credit_id": "52fe487bc3a368484e0fa959", "cast_id": 35, "profile_path": "/gZfvR7jJCqYx64Y6QWdizQXsx3j.jpg", "order": 18}, {"name": "Marcus Lyle Brown", "character": "Healer Fords", "id": 16460, "credit_id": "52fe487bc3a368484e0fa95d", "cast_id": 36, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 19}, {"name": "J.D. Evermore", "character": "Trevor Stryder", "id": 129868, "credit_id": "52fe487bc3a368484e0fa961", "cast_id": 37, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 20}, {"name": "John Wilmot", "character": "Soul Raines", "id": 1273237, "credit_id": "52fe487bc3a368484e0fa965", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Evan Cleaver", "character": "Seeker Pavo", "id": 1273238, "credit_id": "52fe487bc3a368484e0fa969", "cast_id": 39, "profile_path": "/1Ejju8eS7c8lyAlI3v7L6lujndP.jpg", "order": 22}, {"name": "Mustafa Harris", "character": "Brandt", "id": 1273239, "credit_id": "52fe487bc3a368484e0fa96d", "cast_id": 40, "profile_path": "/e0moNlfMRCJkdzU3nfblnWxd2vC.jpg", "order": 23}, {"name": "Scott Lawrence", "character": "Doc", "id": 42317, "credit_id": "52fe487bc3a368484e0fa971", "cast_id": 41, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 24}, {"name": "Shawn Carter Peterson", "character": "Wes", "id": 176491, "credit_id": "52fe487bc3a368484e0fa975", "cast_id": 42, "profile_path": "/bamePsxo8GTU6BZgvyGT94NmRGm.jpg", "order": 25}, {"name": "Raeden Greer", "character": "Lily", "id": 1123886, "credit_id": "52fe487bc3a368484e0fa979", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Tatanka Means", "character": "Seeker Hawke", "id": 1112417, "credit_id": "52fe487bc3a368484e0fa97d", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "Erika Schultz", "character": "Seeker Zephyr", "id": 1035349, "credit_id": "52fe487bc3a368484e0fa981", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "David House", "character": "Seeker Summers", "id": 79211, "credit_id": "52fe487bc3a368484e0fa985", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Ruby Lou Smith", "character": "Soul Pearle", "id": 1273240, "credit_id": "52fe487bc3a368484e0fa989", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Andrea Frankle", "character": "Healer Skye", "id": 946356, "credit_id": "52fe487bc3a368484e0fa98d", "cast_id": 48, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 31}, {"name": "Yohance Myles", "character": "Seeker Nova", "id": 1049735, "credit_id": "52fe487bc3a368484e0fa991", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Alex Russell", "character": "Seeker Burns", "id": 558466, "credit_id": "52fe487bc3a368484e0fa995", "cast_id": 50, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 33}, {"name": "Bokeem Woodbine", "character": "Nate", "id": 71913, "credit_id": "52fe487bc3a368484e0fa999", "cast_id": 51, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 34}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe487bc3a368484e0fa8bd", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 5.8, "runtime": 125}, "9388": {"poster_path": "/v8PKsbAGIvAhKbbRUjdQ3jgFD2S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24793509, "overview": "The chief spokesperson and lobbyist Nick Naylor is the Vice-President of the Academy of Tobacco Studies. He is talented in speaking and spins argument to defend the cigarette industry in the most difficult situations. His best friends are Polly Bailey that works in the Moderation Council in alcohol business, and Bobby Jay Bliss of the gun business own advisory group SAFETY. They frequently meet each other in a bar and they self-entitle the Mod Squad a.k.a. Merchants of Death, disputing which industry has killed more people. Nick's greatest enemy is Vermont's Senator Ortolan Finistirre, who defends in the Senate the use a skull and crossed bones in the cigarette packs. Nick's son Joey Naylor lives with his mother, and has the chance to know his father in a business trip. When the ambitious reporter Heather Holloway betrays Nick disclosing confidences he had in bed with her, his life turns upside-down. But Nick is good in what he does for the mortgage.", "video": false, "id": 9388, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Thank You for Smoking", "tagline": "Tobacco lobbyist Nick Naylor is trying to SAVE YOUR ASH!", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427944", "adult": false, "backdrop_path": "/cv6GPeRbvlS0Vp9zVSu954nhxtR.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Room 9 Entertainment", "id": 3567}], "release_date": "2005-09-05", "popularity": 0.626784196106171, "original_title": "Thank You for Smoking", "budget": 6500000, "cast": [{"name": "Aaron Eckhart", "character": "Nick Naylor", "id": 6383, "credit_id": "52fe44f1c3a36847f80b32c1", "cast_id": 23, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Maria Bello", "character": "Polly Bailey", "id": 49, "credit_id": "52fe44f1c3a36847f80b32c5", "cast_id": 24, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 1}, {"name": "Cameron Bright", "character": "Joey Naylor", "id": 52414, "credit_id": "52fe44f1c3a36847f80b32c9", "cast_id": 25, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 2}, {"name": "Adam Brody", "character": "Jack", "id": 11702, "credit_id": "52fe44f1c3a36847f80b32cd", "cast_id": 26, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Lorne Lutch", "id": 16431, "credit_id": "52fe44f1c3a36847f80b32d1", "cast_id": 27, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Katie Holmes", "character": "Heather Holloway", "id": 3897, "credit_id": "52fe44f1c3a36847f80b32d5", "cast_id": 28, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 5}, {"name": "Rob Lowe", "character": "Jeff Megall", "id": 2879, "credit_id": "52fe44f1c3a36847f80b32d9", "cast_id": 29, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 6}, {"name": "William H. Macy", "character": "Senator Ortolan Finistirre", "id": 3905, "credit_id": "52fe44f1c3a36847f80b32dd", "cast_id": 30, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 7}, {"name": "Robert Duvall", "character": "The Captain", "id": 3087, "credit_id": "52fe44f1c3a36847f80b32e1", "cast_id": 31, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 8}, {"name": "David Koechner", "character": "Bobby Jay Bliss", "id": 28638, "credit_id": "52fe44f1c3a36847f80b32e5", "cast_id": 32, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 9}, {"name": "J.K. Simmons", "character": "BR", "id": 18999, "credit_id": "52fe44f1c3a36847f80b32e9", "cast_id": 33, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 10}, {"name": "Kim Dickens", "character": "Jill Naylor", "id": 21165, "credit_id": "52fe44f1c3a36847f80b32ed", "cast_id": 34, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 11}, {"name": "Connie Ray", "character": "Pearl", "id": 35517, "credit_id": "52fe44f1c3a36847f80b32f1", "cast_id": 35, "profile_path": "/yJriGT19J24uceLCxVLbE70pd9p.jpg", "order": 12}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b3269", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 7.1, "runtime": 92}, "15370": {"poster_path": "/liASKLjYzk6aJ4GbQDlfYfQk02h.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Haru, a schoolgirl bored by her ordinary routine, saves the life of an unusual cat and suddenly her world is transformed beyond anything she ever imagined. The Cat King rewards her good deed with a flurry of presents, including a very shocking proposal of marriage to his son! Haru embarks on an unexpected journey to the Kingdom of Cats where her eyes are opened to a whole other world.", "video": false, "id": 15370, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Cat Returns", "tagline": "Journey to another world.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0347618", "adult": false, "backdrop_path": "/tZ1nTCUFr0cMqKKoATzCFRA0LLB.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Toho Company", "id": 882}, {"name": "Tokuma Shoten", "id": 1779}], "release_date": "2002-07-19", "popularity": 0.667140069875707, "original_title": "Neko no ongaeshi", "budget": 0, "cast": [{"name": "Chizuru Ikewaki", "character": "Haru Yoshioka (voice)", "id": 118651, "credit_id": "52fe46519251416c7507491f", "cast_id": 17, "profile_path": "/gBucVAeyn2njLhHcvJ2sjzmf4bp.jpg", "order": 0}, {"name": "Yoshihiko Hakamada", "character": "Baron Humbert von Gikkingen (voice)", "id": 96569, "credit_id": "52fe46519251416c75074923", "cast_id": 18, "profile_path": "/bCYcIEvaN9QTuhqdpimS9uN4tqH.jpg", "order": 1}, {"name": "Aki Maeda", "character": "Yuki (voice)", "id": 31079, "credit_id": "52fe46519251416c75074933", "cast_id": 21, "profile_path": "/wpRkVndISU2bjhOyM61cT6OTDs9.jpg", "order": 2}, {"name": "Takayuki Yamada", "character": "Lune (voice)", "id": 74377, "credit_id": "52fe46519251416c75074937", "cast_id": 22, "profile_path": "/piORAl3VEo7U26ql0GiDStrJqWO.jpg", "order": 3}, {"name": "Hitomi Sat\u00f4", "character": "Hiromi (voice)", "id": 27780, "credit_id": "52fe46519251416c7507493b", "cast_id": 23, "profile_path": "/ghGh2wiQTivTcADNJMJ6PTecZJg.jpg", "order": 4}, {"name": "Kenta Satoi", "character": "Natori (voice)", "id": 544090, "credit_id": "52fe46519251416c7507493f", "cast_id": 24, "profile_path": "/3rnxniooJ2Ze9De3oFzd0WPeg3A.jpg", "order": 5}, {"name": "Mari Hamada", "character": "Natoru (voice)", "id": 556785, "credit_id": "52fe46519251416c75074943", "cast_id": 25, "profile_path": "/gT8jfzzQ1GCDWgtkl330Smef0cd.jpg", "order": 6}, {"name": "Tetsu Watanabe", "character": "Muta (voice)", "id": 20335, "credit_id": "52fe46519251416c75074947", "cast_id": 26, "profile_path": "/6dlabJPfVvTARfd7ZWEdncfJ3SI.jpg", "order": 7}, {"name": "Y\u00f4suke Sait\u00f4", "character": "Toto (voice)", "id": 556787, "credit_id": "52fe46519251416c7507494b", "cast_id": 27, "profile_path": "/oH6RvWqxSzqLk5Wlpj1x3fe5KiG.jpg", "order": 8}, {"name": "Kumiko Okae", "character": "Haru's Mother (voice)", "id": 1132552, "credit_id": "52fe46519251416c7507494f", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Tetsur\u014d Tamba", "character": "Cat King (voice)", "id": 10071, "credit_id": "52fe46519251416c75074953", "cast_id": 29, "profile_path": "/uGToyc24HrsIrYJh4OEzbiqLa1F.jpg", "order": 10}, {"name": "Yo Oizumi", "character": "Additional voice (voice)", "id": 40450, "credit_id": "52fe46519251416c75074957", "cast_id": 30, "profile_path": "/avSKuYQiEHYY0eJoCFiKCyhGvcL.jpg", "order": 11}, {"name": "Y\u014dko Honna", "character": "Additional voice (voice)", "id": 119263, "credit_id": "52fe46519251416c7507495b", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Ken Yasuda", "character": "Additional voices (voice)", "id": 1039220, "credit_id": "52fe46519251416c7507495f", "cast_id": 32, "profile_path": null, "order": 13}], "directors": [{"name": "Hiroyuki Morita", "department": "Directing", "job": "Director", "credit_id": "52fe46519251416c750748c7", "profile_path": null, "id": 78173}], "vote_average": 7.0, "runtime": 75}, "15373": {"poster_path": "/bq6wxu0rv1GIkEwslBT2rVgLkxe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92380927, "overview": "Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.", "video": false, "id": 15373, "genres": [{"id": 35, "name": "Comedy"}], "title": "Role Models", "tagline": "They're about to get more than they plea-bargained for.", "vote_count": 149, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430922", "adult": false, "backdrop_path": "/z8K4NtRJMRyNB6PVuTbwgxIWlHu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Internationale Filmproduktion Stella-del-S\u00fcd", "id": 3075}], "release_date": "2008-02-03", "popularity": 0.828643799137072, "original_title": "Role Models", "budget": 28000000, "cast": [{"name": "Seann William Scott", "character": "Wheeler", "id": 57599, "credit_id": "52fe46529251416c75074ac9", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 0}, {"name": "Paul Rudd", "character": "Danny Donahue", "id": 22226, "credit_id": "52fe46529251416c75074acd", "cast_id": 3, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Beth", "id": 9281, "credit_id": "52fe46529251416c75074ad1", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Christopher Mintz-Plasse", "character": "Augie Farks", "id": 54691, "credit_id": "52fe46529251416c75074ad5", "cast_id": 5, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 3}, {"name": "Bobb'e J. Thompson", "character": "Ronnie Shields", "id": 75633, "credit_id": "52fe46529251416c75074ad9", "cast_id": 6, "profile_path": "/egf09lgTqjSmSCxGLTROpkb5ZGS.jpg", "order": 4}, {"name": "Jane Lynch", "character": "Gayle Sweeny", "id": 43775, "credit_id": "52fe46529251416c75074add", "cast_id": 7, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 5}, {"name": "Ken Jeong", "character": "King Argotron", "id": 83586, "credit_id": "52fe46529251416c75074ae1", "cast_id": 8, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 6}, {"name": "Amanda Righetti", "character": "Isabel", "id": 74289, "credit_id": "52fe46529251416c75074b4b", "cast_id": 26, "profile_path": "/aCRof0Sfqrbz2vgoWqVZuPWfvD8.jpg", "order": 7}, {"name": "Joe Lo Truglio", "character": "Kuzzik", "id": 21131, "credit_id": "52fe46529251416c75074b4f", "cast_id": 27, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Ken Marino", "character": "Jim Stansel", "id": 77089, "credit_id": "52fe46529251416c75074b53", "cast_id": 28, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 9}, {"name": "Kerri Kenney-Silver", "character": "Lynette", "id": 63220, "credit_id": "52fe46529251416c75074b57", "cast_id": 29, "profile_path": "/jYTKAjioRFDuKlcaSitjMFYV1va.jpg", "order": 10}, {"name": "A.D. Miles", "character": "Martin", "id": 22225, "credit_id": "52fe46529251416c75074b5b", "cast_id": 30, "profile_path": "/gkQpAzE07jLmbUQrXNDpGJ4W977.jpg", "order": 11}, {"name": "Matt Walsh", "character": "Davith of Glencracken", "id": 59841, "credit_id": "52fe46529251416c75074b5f", "cast_id": 31, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 12}, {"name": "Nicole Randall Johnson", "character": "Karen", "id": 155687, "credit_id": "52fe46529251416c75074b63", "cast_id": 32, "profile_path": "/nwLrlB3QsFQk0ads0ox53SdKjbT.jpg", "order": 13}, {"name": "Allie Stamler", "character": "Esplen", "id": 983661, "credit_id": "52fe46529251416c75074b67", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Carly Craig", "character": "Connie", "id": 1020027, "credit_id": "52fe46529251416c75074b6b", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Jessica Morris", "character": "Linda the Teacher", "id": 104912, "credit_id": "52fe46529251416c75074b6f", "cast_id": 35, "profile_path": "/vF227oxsvYSSAObqlgZXW5juT2A.jpg", "order": 16}, {"name": "Vincent Martella", "character": "Artonius", "id": 188024, "credit_id": "52fe46529251416c75074b73", "cast_id": 36, "profile_path": "/oj6wwVmB0NgGPk9jqKkYWNVC9vz.jpg", "order": 17}, {"name": "Jorma Taccone", "character": "Mitch from Graphics", "id": 62863, "credit_id": "52fe46529251416c75074b77", "cast_id": 37, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 18}, {"name": "Nate Hartley", "character": "Rule Master", "id": 55097, "credit_id": "52fe46529251416c75074b7b", "cast_id": 38, "profile_path": "/AtqrlvIIQVEQCSMranOewGtCxt8.jpg", "order": 19}, {"name": "David Wain", "character": "Chevron Baine", "id": 22214, "credit_id": "52fe46529251416c75074b7f", "cast_id": 39, "profile_path": "/253GyLoZKOhwXPCEgn4w8RMegzW.jpg", "order": 20}, {"name": "Louis C.K.", "character": "Security Guard", "id": 52849, "credit_id": "52fe46529251416c75074b83", "cast_id": 40, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 21}, {"name": "Keegan-Michael Key", "character": "Duane", "id": 298410, "credit_id": "52fe46529251416c75074b87", "cast_id": 41, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 22}], "directors": [{"name": "David Wain", "department": "Directing", "job": "Director", "credit_id": "52fe46529251416c75074ac5", "profile_path": "/253GyLoZKOhwXPCEgn4w8RMegzW.jpg", "id": 22214}], "vote_average": 6.2, "runtime": 99}, "121875": {"poster_path": "/4qAnWMNKUadx10jlCrkRAAuT4bN.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A sixteen-year-old boy insinuates himself into the house of a fellow student from his literature class and writes about it in essays for his French teacher. Faced with this gifted and unusual pupil, the teacher rediscovers his enthusiasm for his work, but the boy\u2019s intrusion will unleash a series of uncontrollable events.", "video": false, "id": 121875, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "In the House", "tagline": "There's always a way in.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1964624", "adult": false, "backdrop_path": "/vvRlCks4HEZktmAhDIqghyamKiY.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Mandarin Film", "id": 7839}, {"name": "FOZ", "id": 149}], "release_date": "2012-10-08", "popularity": 0.957528781206647, "original_title": "Dans la maison", "budget": 0, "cast": [{"name": "Kristin Scott Thomas", "character": "Jeanne", "id": 5470, "credit_id": "52fe4a70c3a368484e153319", "cast_id": 3, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 0}, {"name": "Emmanuelle Seigner", "character": "Esther", "id": 8925, "credit_id": "52fe4a70c3a368484e15331d", "cast_id": 4, "profile_path": "/llh2iFcVslY8PEFAvuEKLI7y8U3.jpg", "order": 1}, {"name": "Denis M\u00e9nochet", "character": "Rapha p\u00e8re", "id": 81125, "credit_id": "52fe4a70c3a368484e153321", "cast_id": 5, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 2}, {"name": "Jean-Fran\u00e7ois Balmer", "character": "Le proviseur", "id": 35527, "credit_id": "52fe4a70c3a368484e153325", "cast_id": 7, "profile_path": "/b1nC316aY3wpyqN3casQdtVkUbY.jpg", "order": 3}, {"name": "Fabrice Colson", "character": "Client de la galerie", "id": 1075111, "credit_id": "52fe4a70c3a368484e153329", "cast_id": 8, "profile_path": "/dyEYNic0mFfOPoJmenJdMKaG5ah.jpg", "order": 4}, {"name": "Diana Stewart", "character": "Une femme au balcon", "id": 1075112, "credit_id": "52fe4a70c3a368484e15332d", "cast_id": 9, "profile_path": "/xB2EnRPDXhBsm3QgpfXIdlNiFjz.jpg", "order": 5}, {"name": "Ernst Umhauer", "character": "Claude", "id": 1075113, "credit_id": "52fe4a70c3a368484e153331", "cast_id": 10, "profile_path": "/scqntEjR99Mb8dgg2L84hokFrcJ.jpg", "order": 6}, {"name": "St\u00e9phanie Campion", "character": "Une femme au balcon", "id": 1075114, "credit_id": "52fe4a70c3a368484e153335", "cast_id": 11, "profile_path": "/llTea3DvWZQVISqizTOy6ZPfV7T.jpg", "order": 7}, {"name": "Bastien Ughetto", "character": "Rapha fils", "id": 1075115, "credit_id": "52fe4a70c3a368484e153339", "cast_id": 12, "profile_path": "/fblcTWDQe13KYpFC78skIWXM1c0.jpg", "order": 8}, {"name": "Fabrice Luchini", "character": "Germain", "id": 28255, "credit_id": "52fe4a70c3a368484e15333d", "cast_id": 13, "profile_path": "/wtdwJeLGUBkXSm0ElDlsGTDZcJD.jpg", "order": 9}], "directors": [{"name": "Fran\u00e7ois Ozon", "department": "Directing", "job": "Director", "credit_id": "52fe4a70c3a368484e153315", "profile_path": "/uTqoYgeKs6zmHjViolp1OspLcEF.jpg", "id": 4387}], "vote_average": 7.1, "runtime": 105}, "7191": {"poster_path": "/as01o40tJ2FhtheqeXf7bVZ0EQO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170764026, "overview": "Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.", "video": false, "id": 7191, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Cloverfield", "tagline": "Some Thing Has Found Us", "vote_count": 488, "homepage": "http://www.cloverfieldmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1060277", "adult": false, "backdrop_path": "/6kVVfNT0auG6fU5SFQ1zbayNWUC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Bad Robot", "id": 11461}], "release_date": "2008-01-15", "popularity": 1.0576344964766, "original_title": "Cloverfield", "budget": 25000000, "cast": [{"name": "Lizzy Caplan", "character": "Marlena", "id": 51988, "credit_id": "52fe4472c3a36847f809690d", "cast_id": 11, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 0}, {"name": "Jessica Lucas", "character": "Lily", "id": 51989, "credit_id": "52fe4472c3a36847f8096911", "cast_id": 12, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 1}, {"name": "Odette Annable", "character": "Beth", "id": 51992, "credit_id": "52fe4472c3a36847f8096921", "cast_id": 16, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 2}, {"name": "Michael Stahl-David", "character": "Rob", "id": 51991, "credit_id": "52fe4472c3a36847f8096919", "cast_id": 14, "profile_path": "/aPy8ph7kNIEPUMcraThfZonVs70.jpg", "order": 3}, {"name": "Mike Vogel", "character": "Jason", "id": 6858, "credit_id": "52fe4472c3a36847f809691d", "cast_id": 15, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 4}, {"name": "T.J. Miller", "character": "Hud", "id": 51990, "credit_id": "52fe4472c3a36847f8096915", "cast_id": 13, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 5}, {"name": "Anjul Nigam", "character": "Kassierer", "id": 51993, "credit_id": "52fe4472c3a36847f8096925", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Margot Farley", "character": "Jenn", "id": 51994, "credit_id": "52fe4472c3a36847f8096929", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Theo Rossi", "character": "Antonio", "id": 51995, "credit_id": "52fe4472c3a36847f809692d", "cast_id": 19, "profile_path": "/5lvHsqU7pmZjy9E7TcKkFzljAuy.jpg", "order": 8}, {"name": "Brian Klugman", "character": "Charlie", "id": 51996, "credit_id": "52fe4472c3a36847f8096931", "cast_id": 20, "profile_path": "/jlzEmXQGYOnoKC9ipLSEC5Ioz9E.jpg", "order": 9}, {"name": "Kelvin Yu", "character": "Clark", "id": 51997, "credit_id": "52fe4472c3a36847f8096935", "cast_id": 21, "profile_path": "/tYLvMxo3EBXmAdYUzJp5ymTygS.jpg", "order": 10}, {"name": "Liza Lapira", "character": "Heather", "id": 51998, "credit_id": "52fe4472c3a36847f8096939", "cast_id": 22, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 11}, {"name": "Lili Mirojnick", "character": "Lei", "id": 51999, "credit_id": "52fe4472c3a36847f809693d", "cast_id": 23, "profile_path": "/yWYc6S2ZJW5SL7wuWno6tm9AdDu.jpg", "order": 12}, {"name": "Ben Feldman", "character": "Travis", "id": 78431, "credit_id": "52fe4472c3a36847f809694d", "cast_id": 26, "profile_path": "/cve3khwonn7sWBwDThA44XwH2Fo.jpg", "order": 13}, {"name": "Elena Caruso", "character": "Party Goer", "id": 209670, "credit_id": "52fe4472c3a36847f8096951", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Vakisha Coleman", "character": "Party Goer", "id": 1205127, "credit_id": "52fe4472c3a36847f8096955", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Will Greenberg", "character": "Party Goer", "id": 203750, "credit_id": "52fe4472c3a36847f8096959", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Rob Kerkovich", "character": "Party Goer", "id": 150209, "credit_id": "52fe4472c3a36847f809695d", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Ryan Key", "character": "Party Goer", "id": 1205128, "credit_id": "52fe4472c3a36847f8096961", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Hooman Khalili", "character": "Party Goer", "id": 1205129, "credit_id": "52fe4472c3a36847f8096965", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Rasika Mathur", "character": "Party Goer", "id": 204460, "credit_id": "52fe4472c3a36847f8096969", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Baron Vaughn", "character": "Party Goer", "id": 1187107, "credit_id": "52fe4472c3a36847f809696d", "cast_id": 34, "profile_path": "/uWOWEDTBuekStc6l5FPWq32qWdV.jpg", "order": 21}, {"name": "Charlyne Yi", "character": "Party Goer", "id": 93285, "credit_id": "52fe4472c3a36847f8096971", "cast_id": 35, "profile_path": "/nH6Wfy1ikRNj97RWLZ2FRPbxSOA.jpg", "order": 22}, {"name": "Roma Torre", "character": "Herself", "id": 162555, "credit_id": "52fe4472c3a36847f8096975", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Rick Overton", "character": "Frantic Man", "id": 1539, "credit_id": "52fe4472c3a36847f8096979", "cast_id": 37, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 24}, {"name": "Martin Cohen", "character": "Burly Guy", "id": 328645, "credit_id": "52fe4472c3a36847f809697d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Jason Cerbone", "character": "Police Officer", "id": 60432, "credit_id": "52fe4472c3a36847f8096981", "cast_id": 39, "profile_path": "/6JDSTbmt33EPgGpjkURWSaF7x8T.jpg", "order": 26}, {"name": "Pavel Lychnikoff", "character": "Russian Man on Street", "id": 52762, "credit_id": "52fe4472c3a36847f8096985", "cast_id": 40, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 27}, {"name": "Billy Brown", "character": "Staff Sgt. Pryce", "id": 64805, "credit_id": "52fe4472c3a36847f8096989", "cast_id": 41, "profile_path": "/tEyVvi3dY3LDxSpTA3a7nK6nMGv.jpg", "order": 28}, {"name": "Scott Lawrence", "character": "Lead Soldier", "id": 42317, "credit_id": "52fe4472c3a36847f809698d", "cast_id": 42, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 29}, {"name": "Jeffrey De Serrano", "character": "Soldier", "id": 1016151, "credit_id": "52fe4472c3a36847f8096991", "cast_id": 43, "profile_path": "/sg7Nb65NnNWqpmFRUw4s5ynuXbZ.jpg", "order": 30}, {"name": "Tim Griffin", "character": "Command Center Officer", "id": 27031, "credit_id": "52fe4472c3a36847f8096995", "cast_id": 44, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 31}, {"name": "Chris Mulkey", "character": "Lt. Col. Graff", "id": 15824, "credit_id": "52fe4472c3a36847f8096999", "cast_id": 45, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 32}, {"name": "Susse Budde", "character": "Medic", "id": 62852, "credit_id": "52fe4472c3a36847f809699d", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Jason Lombard", "character": "Second Medic", "id": 565187, "credit_id": "52fe4472c3a36847f80969a1", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Jamie Martz", "character": "Helicopter Pilot", "id": 99764, "credit_id": "52fe4472c3a36847f80969a5", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Don Abernathy", "character": "New York Street Pedestrian (uncredited)", "id": 208360, "credit_id": "52fe4472c3a36847f80969a9", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Michael Ark", "character": "Party Goer (uncredited)", "id": 1174981, "credit_id": "52fe4472c3a36847f80969ad", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Caley Bisson", "character": "Party Bartender (uncredited)", "id": 1205130, "credit_id": "52fe4472c3a36847f80969b1", "cast_id": 51, "profile_path": null, "order": 38}, {"name": "James Thomas Bligh", "character": "EMS Commander (uncredited)", "id": 115978, "credit_id": "52fe4472c3a36847f80969b5", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Maylen Calienes", "character": "Frantic Girl on Bridge (uncredited)", "id": 1205131, "credit_id": "52fe4472c3a36847f80969b9", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Craig Dabbs", "character": "Army Sgt. First Class (uncredited)", "id": 1205132, "credit_id": "52fe4472c3a36847f80969bd", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Tommy Gerrits", "character": "Boy Looking at Magazines (uncredited)", "id": 1205133, "credit_id": "52fe4472c3a36847f80969c1", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Jason Giffin", "character": "National Guardsman / Tank Gunner (uncredited)", "id": 1205134, "credit_id": "52fe4472c3a36847f80969c5", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Adam Greeves", "character": "Military Personnel (uncredited)", "id": 1205135, "credit_id": "52fe4472c3a36847f80969c9", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Brandon G. Holley", "character": "Military Personnel (uncredited)", "id": 208008, "credit_id": "52fe4472c3a36847f80969cd", "cast_id": 58, "profile_path": null, "order": 45}, {"name": "Hisonni Johnson", "character": "Party Goer (uncredited)", "id": 97532, "credit_id": "52fe4472c3a36847f80969d1", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "Adam Karst", "character": "New Yorker (uncredited)", "id": 1205136, "credit_id": "52fe4472c3a36847f80969d5", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "Julio Leal", "character": "Rocketeer / Soldier (uncredited)", "id": 1205137, "credit_id": "52fe4472c3a36847f80969d9", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Jake McLaughlin", "character": "Helicopter Pilot (voice) (uncredited)", "id": 51683, "credit_id": "52fe4473c3a36847f80969dd", "cast_id": 62, "profile_path": "/ocDxrwFDqbDmkpmgXpwpwdSzl7T.jpg", "order": 49}, {"name": "Rachel Mower", "character": "Injured Girl (uncredited)", "id": 1205138, "credit_id": "52fe4473c3a36847f80969e1", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Gene Richards", "character": "First Man Coughing (uncredited)", "id": 128973, "credit_id": "52fe4473c3a36847f80969e5", "cast_id": 64, "profile_path": null, "order": 51}, {"name": "Bertrand Roberson Jr.", "character": "Military Personnel (uncredited)", "id": 97466, "credit_id": "52fe4473c3a36847f80969e9", "cast_id": 65, "profile_path": null, "order": 52}, {"name": "John Robert", "character": "Injured Guy on Bridge (uncredited)", "id": 1205139, "credit_id": "52fe4473c3a36847f80969ed", "cast_id": 66, "profile_path": null, "order": 53}, {"name": "Chris Spinelli", "character": "Party Goer (uncredited)", "id": 210849, "credit_id": "52fe4473c3a36847f80969f1", "cast_id": 67, "profile_path": null, "order": 54}, {"name": "Andrew Trujillo", "character": "Military Personel (uncredited)", "id": 1205140, "credit_id": "52fe4473c3a36847f80969f5", "cast_id": 68, "profile_path": null, "order": 55}, {"name": "Maria Zambrana", "character": "Brooklyn Bridge Victim (uncredited)", "id": 1205141, "credit_id": "52fe4473c3a36847f80969f9", "cast_id": 69, "profile_path": null, "order": 56}], "directors": [{"name": "Matt Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe4472c3a36847f80968d3", "profile_path": "/4SPhLx107Y7m0tvzlLpCquxFxE8.jpg", "id": 32278}], "vote_average": 6.1, "runtime": 85}, "244761": {"poster_path": "/nAoEP5QJtC2sgVOKJQdQ9Y7VqWJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "Eight years after the disappearance of Cassandra, some disturbing incidents seem to indicate that she's still alive. Police, parents and Cassandra herself, will try to unravel the mystery of her disappearance.", "video": false, "id": 244761, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Captive", "tagline": "When hope is all you have.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2326612", "adult": false, "backdrop_path": "/rvGnXccypAbDqE237SXxDGQuGmo.jpg", "production_companies": [{"name": "The Film Farm", "id": 22884}, {"name": "Ego Film Arts", "id": 12800}], "release_date": "2014-09-05", "popularity": 2.21306266739028, "original_title": "The Captive", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Jeffrey", "id": 10859, "credit_id": "530f8875925141739000113a", "cast_id": 3, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Scott Speedman", "character": "Jeffrey", "id": 100, "credit_id": "540a79c1c3a36879a800098f", "cast_id": 4, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Nicole", "id": 5916, "credit_id": "540a7a4dc3a368799f0009f6", "cast_id": 6, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Mireille Enos", "character": "Tina", "id": 175826, "credit_id": "540a7a9ec3a36879a5000997", "cast_id": 9, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 3}, {"name": "Kevin Durand", "character": "Mika", "id": 79072, "credit_id": "540a7a60c3a36879a500098f", "cast_id": 7, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Alexia Fast", "character": "Cass", "id": 203630, "credit_id": "540a7a76c3a36879ab0009ff", "cast_id": 8, "profile_path": "/rjCu0ywbStoEAhyKAcGHPSVZmX6.jpg", "order": 5}, {"name": "Peyton Kennedy", "character": "Young Cass", "id": 1074125, "credit_id": "540a7ac90e0a262b400014d6", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Bruce Greenwood", "character": "Vince", "id": 21089, "credit_id": "540a7b06c3a36879a2000a73", "cast_id": 16, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Brendan Gall", "character": "Teddy", "id": 449223, "credit_id": "540a7b1ac3a36879a80009a6", "cast_id": 17, "profile_path": "/lrbWl3RxsIn12OYVRMos9UZ667X.jpg", "order": 8}, {"name": "Aaron Poole", "character": "Mike", "id": 180942, "credit_id": "540a7b2bc3a36879a2000a78", "cast_id": 18, "profile_path": "/1b6oirh48FaFvyMhcuWsrZzbO0R.jpg", "order": 9}, {"name": "Jason Blicker", "character": "Sam", "id": 44169, "credit_id": "540a7b3cc3a36879a80009aa", "cast_id": 19, "profile_path": "/pDFZFGUQPDF0kt2izRPz4LhNCfd.jpg", "order": 10}, {"name": "Aidan Shipley", "character": "Albert", "id": 1361219, "credit_id": "540ae143c3a368799f001226", "cast_id": 22, "profile_path": null, "order": 11}], "directors": [{"name": "Atom Egoyan", "department": "Directing", "job": "Director", "credit_id": "530f879d925141733200120c", "profile_path": "/qG15OKx3VaYicQcDnd88XFlIxl3.jpg", "id": 56205}], "vote_average": 5.9, "runtime": 112}, "80389": {"poster_path": "/un6gJozywc4ZG2HCwIqf6rAOziu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A career criminal (Gibson) nabbed by Mexican authorities is placed in a tough prison where he learns to survive with the help of a 9-year-old boy.", "video": false, "id": 80389, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Get the Gringo", "tagline": "The odds are against him. So is everyone else.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1567609", "adult": false, "backdrop_path": "/gxbO2y8jeEvwGHDLC8ErqSf61ca.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}, {"name": "Airborne Productions", "id": 11732}], "release_date": "2012-05-01", "popularity": 0.821899260792808, "original_title": "Get the Gringo", "budget": 35000000, "cast": [{"name": "Mel Gibson", "character": "Driver", "id": 2461, "credit_id": "52fe47bd9251416c910742bd", "cast_id": 1001, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Peter Stormare", "character": "Frank", "id": 53, "credit_id": "52fe47bd9251416c910742c1", "cast_id": 1002, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 1}, {"name": "Dean Norris", "character": "Bill", "id": 14329, "credit_id": "52fe47bd9251416c910742c5", "cast_id": 1003, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 2}, {"name": "Bob Gunton", "character": "Mr. Kaufmann", "id": 4029, "credit_id": "52fe47bd9251416c910742c9", "cast_id": 1004, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 3}, {"name": "Kevin Hernandez", "character": "Kid", "id": 999329, "credit_id": "52fe47bd9251416c91074321", "cast_id": 1022, "profile_path": "/lz0H1XbddF4jOwuoIi2IuV1bs3A.jpg", "order": 4}, {"name": "Daniel Gim\u00e9nez Cacho", "character": "Javi", "id": 1603, "credit_id": "52fe47bd9251416c91074325", "cast_id": 1023, "profile_path": "/9kP26DdoH55mdVhH9whbFiFNP0j.jpg", "order": 5}, {"name": "Jes\u00fas Ochoa", "character": "Caracas", "id": 69865, "credit_id": "52fe47bd9251416c91074329", "cast_id": 1024, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 6}, {"name": "Dolores Heredia", "character": "Kid's Mother", "id": 224507, "credit_id": "52fe47bd9251416c9107432d", "cast_id": 1025, "profile_path": "/iBDhc3pqreLpIoF8pSzcyBOYjt5.jpg", "order": 7}, {"name": "Peter Gerety", "character": "Embassy Guy", "id": 1986, "credit_id": "52fe47bd9251416c91074331", "cast_id": 1026, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 8}, {"name": "Roberto Sosa", "character": "Carnal", "id": 61059, "credit_id": "52fe47bd9251416c91074335", "cast_id": 1027, "profile_path": "/bIyASaMwSnBTMp9SdhsNkwfCx2p.jpg", "order": 9}, {"name": "Mario Zaragoza", "character": "Vasquez", "id": 942967, "credit_id": "52fe47bd9251416c91074339", "cast_id": 1028, "profile_path": "/1xKrDGEjuKkyTdVTPByX8WY8gIj.jpg", "order": 10}, {"name": "Gerardo Taracena", "character": "Romero", "id": 17689, "credit_id": "52fe47bd9251416c9107433d", "cast_id": 1029, "profile_path": "/mZhY59OxD5sy4uHkzG9EOwEkvDb.jpg", "order": 11}, {"name": "Tenoch Huerta", "character": "Carlos", "id": 87265, "credit_id": "52fe47bd9251416c91074341", "cast_id": 1030, "profile_path": "/5m0gBfMPVaSZZmLfjNq8QHuDsgA.jpg", "order": 12}, {"name": "Fernando Becerril", "character": "Prison Director", "id": 238139, "credit_id": "52fe47bd9251416c91074345", "cast_id": 1031, "profile_path": "/bV4gNQUv2rqsdarLd63IVktP7lP.jpg", "order": 13}, {"name": "Scott Cohen", "character": "Frank's Lawyer", "id": 83721, "credit_id": "52fe47bd9251416c91074349", "cast_id": 1032, "profile_path": "/hYAGNWaiLj2zY3kj7TBUkJuGoTV.jpg", "order": 14}], "directors": [{"name": "Adrian Grunberg", "department": "Directing", "job": "Director", "credit_id": "52fe47bd9251416c910742b9", "profile_path": null, "id": 589402}], "vote_average": 6.0, "runtime": 95}, "244772": {"poster_path": "/vvmv1R2jDXJeeeyYcGg0ypXc2XK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Estranged twins Maggie and Milo coincidentally cheat death on the same day, prompting them to reunite and confront the reasons their lives went so wrong. As the twins' reunion reinvigorates them, they realize the key to fixing their lives may just lie in repairing their relationship.", "video": false, "id": 244772, "genres": [{"id": 18, "name": "Drama"}], "title": "The Skeleton Twins", "tagline": "Family is a cruel joke.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1571249", "adult": false, "backdrop_path": "/kQwzsrP1V2pMyM5wzRHUGqEXNa0.jpg", "production_companies": [{"name": "Venture Forth", "id": 20313}, {"name": "Duplass Brothers Productions", "id": 1974}], "release_date": "2014-09-12", "popularity": 0.89686530890024, "original_title": "The Skeleton Twins", "budget": 0, "cast": [{"name": "Kristen Wiig", "character": "Maggie", "id": 41091, "credit_id": "52fe4ef6c3a36847f82b3ddf", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 0}, {"name": "Bill Hader", "character": "Milo", "id": 19278, "credit_id": "52fe4ef6c3a36847f82b3de3", "cast_id": 7, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 1}, {"name": "Luke Wilson", "character": "Lance", "id": 36422, "credit_id": "52fe4ef6c3a36847f82b3de7", "cast_id": 8, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 2}, {"name": "Ty Burrell", "character": "Rich", "id": 15232, "credit_id": "52fe4ef6c3a36847f82b3deb", "cast_id": 9, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 3}, {"name": "Boyd Holbrook", "character": "Billy", "id": 467645, "credit_id": "52fe4ef6c3a36847f82b3def", "cast_id": 10, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 4}, {"name": "Joanna Gleason", "character": "Judy", "id": 20747, "credit_id": "52fe4ef6c3a36847f82b3df3", "cast_id": 11, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 5}, {"name": "Kathleen Rose Perkins", "character": "Carlie", "id": 149334, "credit_id": "52fe4ef6c3a36847f82b3df7", "cast_id": 12, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 6}, {"name": "Ian Hyland", "character": "Waiter", "id": 25909, "credit_id": "52fe4ef6c3a36847f82b3dfb", "cast_id": 13, "profile_path": "/kkDyz4ar65adYaWhUpNkKh07x9y.jpg", "order": 7}], "directors": [{"name": "Craig Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4ef6c3a36847f82b3dc3", "profile_path": null, "id": 303056}], "vote_average": 6.9, "runtime": 90}, "203819": {"poster_path": "/ysXVxDpfPvl6YmojfNYDz9zjVtb.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 4878242, "overview": "Accompanied only by her faithful dog and four camels, an Australian satisfies her craving for solitude by embarking on a solo trip across the desert from Alice Springs to the Indian Ocean.", "video": false, "id": 203819, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Tracks", "tagline": "Leave everything behind.", "vote_count": 54, "homepage": "http://tracks-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2167266", "adult": false, "backdrop_path": "/zLGbK69ZyWPzj5Pgb8tXjDJk8J2.jpg", "production_companies": [{"name": "See-Saw Films", "id": 7217}], "release_date": "2014-04-25", "popularity": 0.015452373666893, "original_title": "Tracks", "budget": 0, "cast": [{"name": "Mia Wasikowska", "character": "Robyn Davidson", "id": 76070, "credit_id": "52fe4ce7c3a368484e1cbfeb", "cast_id": 1, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 0}, {"name": "Adam Driver", "character": "Rick Smolan", "id": 1023139, "credit_id": "52fe4ce7c3a368484e1cbfef", "cast_id": 2, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 1}, {"name": "Emma Booth", "character": "Marg", "id": 1318710, "credit_id": "53703d5ec3a3687e6c0025a7", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Jessica Tovey", "character": "Jenny", "id": 1318711, "credit_id": "53703d68c3a3683bf9006567", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Rainer Bock", "character": "Kurt Posel", "id": 1318712, "credit_id": "53703d72c3a36839c10055b4", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Lily Pearl", "character": "Robyn Davidson (young)", "id": 1318714, "credit_id": "53703d8dc3a368122000f326", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Robert Coleby", "character": "Pop", "id": 190826, "credit_id": "537bbde20e0a267f1b0005c5", "cast_id": 17, "profile_path": "/45zlanh745ym7y8WMV1H11Hr43Q.jpg", "order": 7}, {"name": "Bryan Probets", "character": "Geoff", "id": 1014587, "credit_id": "537bbdeb0e0a267f1b0005c8", "cast_id": 18, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 8}, {"name": "John Flaus", "character": "Sallay", "id": 147134, "credit_id": "537bbdf50e0a267f0f000576", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Melanie Zanetti", "character": "Annie", "id": 1312450, "credit_id": "5438f6220e0a266ebd001547", "cast_id": 39, "profile_path": null, "order": 10}], "directors": [{"name": "John Curran", "department": "Directing", "job": "Director", "credit_id": "52fe4ce7c3a368484e1cbff5", "profile_path": "/cA9M4wA38ONyMUCWAn43up6VO8n.jpg", "id": 96166}], "vote_average": 7.1, "runtime": 112}, "91314": {"poster_path": "/ykIZB9dYBIKV13k5igGFncT5th6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245500000, "overview": "As humanity picks up the pieces, following the conclusion of \"Transformers: Dark of the Moon,\" Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.", "video": false, "id": 91314, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers: Age of Extinction", "tagline": "This is not war. It's extinction.", "vote_count": 1183, "homepage": "http://www.transformersmovie.com", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2109248", "adult": false, "backdrop_path": "/cHy7nSitAVgvZ7qfCK4JO47t3oZ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Hasbro", "id": 2598}, {"name": "Tom DeSanto/Don Murphy Production", "id": 38831}, {"name": "Ian Bryce Productions", "id": 38833}], "release_date": "2014-06-27", "popularity": 4.52443469625033, "original_title": "Transformers: Age of Extinction", "budget": 210000000, "cast": [{"name": "Mark Wahlberg", "character": "Cade Yeager", "id": 13240, "credit_id": "52fe48cc9251416c750b3ad1", "cast_id": 6, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Stanley Tucci", "character": "Joshua", "id": 2283, "credit_id": "52fe48cc9251416c750b3ad9", "cast_id": 8, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 1}, {"name": "Nicola Peltz", "character": "Tessa Yeager", "id": 61186, "credit_id": "52fe48cc9251416c750b3ad5", "cast_id": 7, "profile_path": "/3NLYsEVZON71ceR01bb6gf13iRJ.jpg", "order": 2}, {"name": "Jack Reynor", "character": "Shane", "id": 1007683, "credit_id": "52fe48cc9251416c750b3ae7", "cast_id": 11, "profile_path": "/j2EqR9pXwirSdug1cFSY3Su7v2O.jpg", "order": 3}, {"name": "Li Bingbing", "character": "Su Yueming", "id": 109432, "credit_id": "52fe48cc9251416c750b3aeb", "cast_id": 12, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 4}, {"name": "Frank Welker", "character": "Galvatron (voice)", "id": 15831, "credit_id": "52fe48cc9251416c750b3ac1", "cast_id": 2, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 5}, {"name": "Miguel Ferrer", "character": "Scourge (voice)", "id": 15860, "credit_id": "52fe48cc9251416c750b3ac5", "cast_id": 3, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 6}, {"name": "Jeffrey Combs", "character": "Powerglide (voice)", "id": 27993, "credit_id": "52fe48cc9251416c750b3ac9", "cast_id": 4, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 7}, {"name": "Mark Rolston", "character": "Thrust (voice)", "id": 6576, "credit_id": "52fe48cc9251416c750b3acd", "cast_id": 5, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 8}, {"name": "Sophia Myles", "character": "Darcy", "id": 3971, "credit_id": "52fe48cc9251416c750b3ae3", "cast_id": 10, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 9}, {"name": "Titus Welliver", "character": "Savoy", "id": 39389, "credit_id": "52fe48cc9251416c750b3aef", "cast_id": 13, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 10}, {"name": "Peter Cullen", "character": "Optimus Prime (voice)", "id": 19540, "credit_id": "53069ef4c3a36870480004de", "cast_id": 14, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 11}, {"name": "John Goodman", "character": "Hound (voice)", "id": 1230, "credit_id": "536cf84bc3a368122600b443", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 12}, {"name": "Ken Watanabe", "character": "Drift (voice)", "id": 3899, "credit_id": "536cf871c3a368122000b72c", "cast_id": 16, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 13}, {"name": "Kelsey Grammer", "character": "Harold Attinger", "id": 7090, "credit_id": "5379f470c3a368553a005bbc", "cast_id": 17, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 14}, {"name": "Geng Han", "character": "Convertible Passenger", "id": 937809, "credit_id": "537bb6e4c3a3684b4b00020c", "cast_id": 18, "profile_path": "/kaPIaWVrsiSSamXkbmIWZ6RKLLV.jpg", "order": 15}, {"name": "Charles Parnell", "character": "CIA Director", "id": 124112, "credit_id": "546c87fdc3a368097d001395", "cast_id": 79, "profile_path": "/9n3gI7ilMMnsnzfIdvLfpT6nxur.jpg", "order": 16}, {"name": "Erika Fong", "character": "CIA Analyst", "id": 971234, "credit_id": "546c8816c3a368096b001290", "cast_id": 80, "profile_path": "/o14jl1gCFlPJsQ4zaVnKjro63j8.jpg", "order": 17}, {"name": "David Midthunder", "character": "Arctic Site Guard", "id": 1039678, "credit_id": "546c8857c3a36809700013c6", "cast_id": 81, "profile_path": "/f0piRndy8kXPUh4onNoNNoeIO9u.jpg", "order": 18}, {"name": "Glenn Keogh", "character": "Arctic Site Foreman", "id": 1347386, "credit_id": "546c88729251413056001325", "cast_id": 82, "profile_path": "/qUVUw3maSdfLsRu2gRHr7brVICn.jpg", "order": 19}, {"name": "Richard Gallion", "character": "Air Force Operator", "id": 592343, "credit_id": "546c8895c3a368097d0013a9", "cast_id": 83, "profile_path": null, "order": 20}, {"name": "T.J. Miller", "character": "Lucas Flannery", "id": 51990, "credit_id": "54c71eb8c3a36874ac000f0c", "cast_id": 84, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 21}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe48cc9251416c750b3abd", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.1, "runtime": 165}, "7214": {"poster_path": "/8c6BeOIrDStz2aiPceYdI5sd9pL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76669806, "overview": "Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.", "video": false, "id": 7214, "genres": [{"id": 18, "name": "Drama"}], "title": "Coach Carter", "tagline": "It begins on the street. It ends here.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0393162", "adult": false, "backdrop_path": "/qgmcpz4ZyDxtAOTvqN6oIpBez7d.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "MTV Films", "id": 746}, {"name": "Tollin/Robbins Productions", "id": 2184}], "release_date": "2005-01-14", "popularity": 0.732920917500169, "original_title": "Coach Carter", "budget": 30000000, "cast": [{"name": "Samuel L. Jackson", "character": "Ken Carter", "id": 2231, "credit_id": "52fe4473c3a36847f8096c81", "cast_id": 1, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Rob Brown", "character": "Kenyon Stone", "id": 10689, "credit_id": "52fe4473c3a36847f8096c85", "cast_id": 2, "profile_path": "/m8VAOhTpIQYWDYg2MOc9lOFLahF.jpg", "order": 1}, {"name": "Robert Ri'chard", "character": "Damien Carter", "id": 52037, "credit_id": "52fe4473c3a36847f8096c89", "cast_id": 3, "profile_path": "/rB75BONTtezBafFI4TzYzYYO8T3.jpg", "order": 2}, {"name": "Rick Gonzalez", "character": "Timo Cruz", "id": 53184, "credit_id": "52fe4473c3a36847f8096cf3", "cast_id": 21, "profile_path": "/goh90mno2bYXjOIncrJWoNYbhXy.jpg", "order": 3}, {"name": "Channing Tatum", "character": "Jason Lyle", "id": 38673, "credit_id": "52fe4473c3a36847f8096cf7", "cast_id": 22, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 4}, {"name": "Texas Battle", "character": "Maddux", "id": 53185, "credit_id": "52fe4473c3a36847f8096cfb", "cast_id": 23, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 5}, {"name": "Lacey Beeman", "character": "Susan", "id": 168897, "credit_id": "52fe4473c3a36847f8096cff", "cast_id": 24, "profile_path": "/h8coFumNNoCK6wJ0XYXSeO6Q6C7.jpg", "order": 6}, {"name": "Octavia Spencer", "character": "Mrs. Battle", "id": 6944, "credit_id": "52fe4473c3a36847f8096d03", "cast_id": 25, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 7}], "directors": [{"name": "Thomas Carter", "department": "Directing", "job": "Director", "credit_id": "52fe4473c3a36847f8096c8f", "profile_path": "/j51pRbB8nCYrziSnjmB2PS9SIVh.jpg", "id": 52038}], "vote_average": 7.0, "runtime": 136}, "244786": {"poster_path": "/lIv1QinFqz4dlp5U4lQ6HaiskOZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15000000, "overview": "Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.", "video": false, "id": 244786, "genres": [{"id": 18, "name": "Drama"}], "title": "Whiplash", "tagline": "The road to greatness can take you to the edge.", "vote_count": 667, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2582802", "adult": false, "backdrop_path": "/6bbZ6XyvgfjhQwbplnUh1LSj1ky.jpg", "production_companies": [{"name": "Right of Way Films", "id": 32157}, {"name": "Bold Films", "id": 2266}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-10-10", "popularity": 10.5121661416207, "original_title": "Whiplash", "budget": 3300000, "cast": [{"name": "Miles Teller", "character": "Andrew Neimann", "id": 996701, "credit_id": "52fe4ef7c3a36847f82b3fc3", "cast_id": 5, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 0}, {"name": "J.K. Simmons", "character": "Terence Fletcher", "id": 18999, "credit_id": "52fe4ef7c3a36847f82b3fc7", "cast_id": 6, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 1}, {"name": "Melissa Benoist", "character": "Nicole", "id": 129104, "credit_id": "52fe4ef7c3a36847f82b3fe3", "cast_id": 11, "profile_path": "/etSJcWeCKInA87G9jNrKUG7Ph4m.jpg", "order": 2}, {"name": "Austin Stowell", "character": "Ryan", "id": 970216, "credit_id": "52fe4ef7c3a36847f82b3fe7", "cast_id": 12, "profile_path": "/su6KMYwfr4qVXRjlXi4u0h16Fxg.jpg", "order": 3}, {"name": "Jayson Blair", "character": "Travis", "id": 223012, "credit_id": "52fe4ef7c3a36847f82b3feb", "cast_id": 13, "profile_path": "/lqWVUUOBrv4ANxyvsv5aagc6CBq.jpg", "order": 4}, {"name": "Kavita Patil", "character": "Assistant - Sophie", "id": 159366, "credit_id": "52fe4ef7c3a36847f82b3fef", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Paul Reiser", "character": "Mr. Neyman", "id": 781, "credit_id": "5466cd46eaeb817274000acb", "cast_id": 15, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 6}, {"name": "Nate Lang", "character": "Carl Tanner", "id": 1451540, "credit_id": "5525414d925141720c001b56", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Chris Mulkey", "character": "Uncle Frank", "id": 15824, "credit_id": "5525415fc3a3687df80016c4", "cast_id": 23, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 8}, {"name": "Damon Gupton", "character": "Mr. Kramer", "id": 53454, "credit_id": "5525416c9251417276001927", "cast_id": 24, "profile_path": "/1mZvC9YKcFciPIl5vUUP01F6Fjy.jpg", "order": 9}, {"name": "Suanne Spoke", "character": "Aunt Emma", "id": 1212459, "credit_id": "55254179c3a3687ded0016cf", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Max Kasch", "character": "Dorm Neighbor", "id": 52939, "credit_id": "552541869251417be200a8f2", "cast_id": 26, "profile_path": "/4NzNJEJ6NWU40GKO6BS1Ne6ECNL.jpg", "order": 11}, {"name": "Charlie Ian", "character": "Dustin", "id": 1451542, "credit_id": "552541959251415c7c00bd61", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Jayson Blair", "character": "Travis", "id": 223012, "credit_id": "552541a1c3a3687ded0016d7", "cast_id": 28, "profile_path": "/lqWVUUOBrv4ANxyvsv5aagc6CBq.jpg", "order": 13}, {"name": "Kofi Siriboe", "character": "Bassist", "id": 1451543, "credit_id": "552541ae925141720c001b71", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "C.J. Vana", "character": "Metz", "id": 1451545, "credit_id": "552541c7c3a3687e08001774", "cast_id": 31, "profile_path": null, "order": 16}], "directors": [{"name": "Damien Chazelle", "department": "Directing", "job": "Director", "credit_id": "52fe4ef7c3a36847f82b3fad", "profile_path": "/x5bpTU8b2mwgPpPDGJGWsJ1Qt3t.jpg", "id": 136495}], "vote_average": 8.6, "runtime": 105}, "7220": {"poster_path": "/ikTj6Bf5LGd9bZHDbQbsI39Hbu2.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54700105, "overview": "FBI agent Frank Castle had it all: a loving family, a great life, and an adventurous job. But when all he held dear is taken away by a ruthless crime lord, Castle returns from the dead as \"The Punisher,\" serving as judge, jury and executioner.", "video": false, "id": 7220, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Punisher", "tagline": "The punishment has begun", "vote_count": 183, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jteeWEHZAR92MVjEe9rpecGUpZI.jpg", "poster_path": "/bESkPNkKg79S4TLfs8j93bFYH0N.jpg", "id": 101496, "name": "The Punisher Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0330793", "adult": false, "backdrop_path": "/4ZkbsV7EXvCiRoy6TNAlXb4AVGW.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}, {"name": "Lions Gate Films", "id": 35}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "VIP 2 Medienfonds", "id": 36326}], "release_date": "2004-04-15", "popularity": 1.42973865820825, "original_title": "The Punisher", "budget": 33000000, "cast": [{"name": "Thomas Jane", "character": "Frank Castle", "id": 11155, "credit_id": "52fe4474c3a36847f8096f85", "cast_id": 1, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 0}, {"name": "John Travolta", "character": "Howard Saint", "id": 8891, "credit_id": "52fe4474c3a36847f8096f89", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Will Patton", "character": "Quentin Glass", "id": 883, "credit_id": "52fe4474c3a36847f8096f8d", "cast_id": 3, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 2}, {"name": "Samantha Mathis", "character": "Maria", "id": 20767, "credit_id": "52fe4474c3a36847f8096fbb", "cast_id": 13, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 3}, {"name": "Rebecca Romijn", "character": "Joan", "id": 11008, "credit_id": "52fe4474c3a36847f8096fbf", "cast_id": 14, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 4}, {"name": "James Carpinello", "character": "Bobby Saint", "id": 53198, "credit_id": "52fe4474c3a36847f8096fc3", "cast_id": 15, "profile_path": "/t2aCdkepUU0yHi1gTGgltQ7CMvE.jpg", "order": 5}, {"name": "Mark Collie", "character": "Harry Heck", "id": 53199, "credit_id": "52fe4474c3a36847f8096fc7", "cast_id": 16, "profile_path": "/67TK0G8LwJlD9zM5Rdve2iob8JW.jpg", "order": 6}, {"name": "Laura Harring", "character": "Livia Saint", "id": 15007, "credit_id": "52fe4474c3a36847f8096fcb", "cast_id": 17, "profile_path": "/ng0u5d41FhJDS9mJ74nYnd7XNZP.jpg", "order": 7}, {"name": "Ben Foster", "character": "Specker Dave", "id": 11107, "credit_id": "52fe4474c3a36847f8096fcf", "cast_id": 18, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 8}, {"name": "Marcus Johns", "character": "Will Castle", "id": 53200, "credit_id": "52fe4474c3a36847f8096fd3", "cast_id": 19, "profile_path": "/hmXd91UC0zmK5Fi4aGO7RSvtkBc.jpg", "order": 9}, {"name": "Roy Scheider", "character": "Frank Castle, Sr.", "id": 6355, "credit_id": "52fe4474c3a36847f8096fd7", "cast_id": 20, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 10}], "directors": [{"name": "Jonathan Hensleigh", "department": "Directing", "job": "Director", "credit_id": "52fe4474c3a36847f8096f93", "profile_path": "/hi3YCs3kiSZ3Oz711r1FqIo4Qat.jpg", "id": 876}], "vote_average": 5.8, "runtime": 124}, "203833": {"poster_path": "/rUJbwJkJNjwEcFYzEktOrgm5YUd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76586316, "overview": "While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refuge is being sheltered by her adoptive parents.", "video": false, "id": 203833, "genres": [{"id": 18, "name": "Drama"}], "title": "The Book Thief", "tagline": "Courage beyond words.", "vote_count": 294, "homepage": "http://www.thebookthief.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0816442", "adult": false, "backdrop_path": "/rDP6NMuBTsjLvyaMub7BOT7Au4l.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Sunswept Entertainment", "id": 5219}], "release_date": "2013-11-08", "popularity": 1.68248647863507, "original_title": "The Book Thief", "budget": 0, "cast": [{"name": "Roger Allam", "character": "Narrator / Death (voice)", "id": 11279, "credit_id": "52fe4ce7c3a368484e1cc19f", "cast_id": 14, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 0}, {"name": "Sophie N\u00e9lisse", "character": "Liesel Meminger", "id": 1008607, "credit_id": "52fe4ce7c3a368484e1cc16d", "cast_id": 3, "profile_path": "/qDXt4dEgiVNz8sNOc149aEV8stJ.jpg", "order": 1}, {"name": "Heike Makatsch", "character": "Liesel's mother", "id": 7059, "credit_id": "52fe4ce7c3a368484e1cc1d7", "cast_id": 25, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 2}, {"name": "Julian Lehmann", "character": "Liesel's Brother", "id": 1327255, "credit_id": "545e3847c3a368536b0060fd", "cast_id": 78, "profile_path": null, "order": 3}, {"name": "Gotthard Lange", "character": "Grave Digger", "id": 42445, "credit_id": "55132f58925141045c00201e", "cast_id": 103, "profile_path": null, "order": 4}, {"name": "Rainer Reiners", "character": "Priest", "id": 1309014, "credit_id": "55132f75c3a3686195001d03", "cast_id": 104, "profile_path": "/uV6zomMFl16asOzfSsivi75xhya.jpg", "order": 5}, {"name": "Kirsten Block", "character": "Frau Heinrich", "id": 49766, "credit_id": "5475d8ee9251415273002868", "cast_id": 80, "profile_path": null, "order": 6}, {"name": "Geoffrey Rush", "character": "Hans Hubermann", "id": 118, "credit_id": "52fe4ce7c3a368484e1cc165", "cast_id": 1, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 7}, {"name": "Emily Watson", "character": "Rosa Hubermann", "id": 1639, "credit_id": "52fe4ce7c3a368484e1cc169", "cast_id": 2, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 8}, {"name": "Nico Liersch", "character": "Rudy Steiner", "id": 1153024, "credit_id": "52fe4ce7c3a368484e1cc175", "cast_id": 5, "profile_path": "/kk1dTISD93MDVZatgC4YHFOjp9z.jpg", "order": 9}, {"name": "Ludger B\u00f6kelmann", "character": "Football Urchin", "id": 1445749, "credit_id": "5513756892514104450027ec", "cast_id": 105, "profile_path": null, "order": 10}, {"name": "Paul Schalper", "character": "Football Urchin", "id": 1445750, "credit_id": "55137572925141070100a792", "cast_id": 106, "profile_path": null, "order": 11}, {"name": "Nozomi Linus Kaisar", "character": "Fat Faced Goalie", "id": 1277223, "credit_id": "5513758c9251412be4000581", "cast_id": 107, "profile_path": null, "order": 12}, {"name": "Oliver Stokowski", "character": "Alex Steiner", "id": 7804, "credit_id": "52fe4ce7c3a368484e1cc1cb", "cast_id": 22, "profile_path": "/lsw8F9zJSr1kfCaiIdQBKabUPI6.jpg", "order": 13}, {"name": "Robert Beyer", "character": "Jewish Accountant", "id": 1277224, "credit_id": "5475db3c92514160e3003ab8", "cast_id": 84, "profile_path": null, "order": 14}, {"name": "Hildegard Schroedter", "character": "Frau Becker", "id": 571188, "credit_id": "5513762ac3a3686195002508", "cast_id": 108, "profile_path": null, "order": 15}, {"name": "Levin Liam", "character": "Franz Deutscher", "id": 1193609, "credit_id": "5393a354c3a3686423001e5f", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Ben Schnetzer", "character": "Max Vandenburg", "id": 224167, "credit_id": "52fe4ce7c3a368484e1cc171", "cast_id": 4, "profile_path": "/ac6KVM4Uc1Y0WPU7yptRQERPzO4.jpg", "order": 17}, {"name": "Sandra Nedeleff", "character": "Max's Mother", "id": 42432, "credit_id": "5475d8a5925141527300285c", "cast_id": 79, "profile_path": null, "order": 18}, {"name": "Rafael Gareisen", "character": "Walter, Nazi Soldier", "id": 1086352, "credit_id": "55137694c3a368410300059e", "cast_id": 109, "profile_path": "/5aBrZjJb6Kw5uZxpmWoWzRBn4rZ.jpg", "order": 19}, {"name": "Carl Heinz Choynski", "character": "J\u00fcrgen the Groundsman", "id": 22945, "credit_id": "551376af9251412cec00058d", "cast_id": 110, "profile_path": null, "order": 20}, {"name": "Carina N. Wiese", "character": "Barbara Steiner (as Carina Wiese)", "id": 1328579, "credit_id": "5393a383c3a368643c001e1a", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Rainer Bock", "character": "B\u00fcrgermeister Hermann", "id": 65054, "credit_id": "5393a4dcc3a368425200000c", "cast_id": 40, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 22}, {"name": "Barbara Auer", "character": "Ilsa Hermann", "id": 2340, "credit_id": "52fe4ce7c3a368484e1cc1d3", "cast_id": 24, "profile_path": "/4QzzYELXioI2MhRS67t0usB6abB.jpg", "order": 23}, {"name": "Mike Maas", "character": "Rolf Fischer", "id": 44464, "credit_id": "5513775b9251412be40005ae", "cast_id": 111, "profile_path": null, "order": 24}, {"name": "Sebastian H\u00fclk", "character": "Gestapo Agent", "id": 550554, "credit_id": "53bc0910c3a368661e00247a", "cast_id": 74, "profile_path": "/1lgRo298X6MZMzf2cWKuELXE74T.jpg", "order": 25}, {"name": "Matthias Matschke", "character": "Wolfgang", "id": 40565, "credit_id": "53bc0958c3a3686623002315", "cast_id": 75, "profile_path": "/aFUN3nhSDBAbO49kAzlGE2VEw8x.jpg", "order": 26}, {"name": "Beata Lehmann", "character": "Woman with Champagne", "id": 1130367, "credit_id": "5475da27c3a3686ba100279a", "cast_id": 82, "profile_path": null, "order": 27}, {"name": "Laina Schwarz", "character": "Neighbor", "id": 1445754, "credit_id": "551377a1925141070100a7d3", "cast_id": 112, "profile_path": null, "order": 28}, {"name": "Marie Burchard", "character": "Neighbor", "id": 1195041, "credit_id": "551377b39251412cec0005ac", "cast_id": 113, "profile_path": null, "order": 29}, {"name": "Georg Tryphon", "character": "Neighbor", "id": 1196724, "credit_id": "551377cec3a3686195002532", "cast_id": 114, "profile_path": null, "order": 30}, {"name": "Joachim Paul Assb\u00f6ck", "character": "Officer", "id": 51651, "credit_id": "53bc09cec3a368661a0023cd", "cast_id": 76, "profile_path": null, "order": 31}, {"name": "Martin Ontrop", "character": "Herr Lehmann", "id": 70153, "credit_id": "5475da64c3a3683012000ca8", "cast_id": 83, "profile_path": null, "order": 32}, {"name": "Jan Andres", "character": "Fellow Conscript", "id": 1445755, "credit_id": "551377f39251412be40005bf", "cast_id": 115, "profile_path": null, "order": 33}, {"name": "Stephanie Stremler", "character": "Post Woman", "id": 1313028, "credit_id": "5513781cc3a36841030005c7", "cast_id": 116, "profile_path": null, "order": 34}], "directors": [{"name": "Brian Percival", "department": "Directing", "job": "Director", "credit_id": "52fe4ce7c3a368484e1cc18b", "profile_path": null, "id": 126945}], "vote_average": 7.4, "runtime": 131}, "203834": {"poster_path": "/zq1Er49rSBTkytVbinH9P1RoEOb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young woman recuperating at her father's run-down home after a tragic accident soon encounters a terrifying presence with a connection to her long-deceased mother.", "video": false, "id": 203834, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jessabelle", "tagline": "The dead are back for life.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2300975", "adult": false, "backdrop_path": "/o7cOd6E3IXkkUcaDckdGdVqm55U.jpg", "production_companies": [{"name": "Principato-Young Entertainment", "id": 37845}, {"name": "Lionsgate", "id": 1632}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-08-29", "popularity": 0.787201838489624, "original_title": "Jessabelle", "budget": 0, "cast": [{"name": "Sarah Snook", "character": "Jessie", "id": 235416, "credit_id": "52fe4ce7c3a368484e1cc1ef", "cast_id": 1, "profile_path": "/dvAVmiGlckhgqCfhAdTrcUudHOp.jpg", "order": 0}, {"name": "Mark Webber", "character": "Preston", "id": 4451, "credit_id": "52fe4ce7c3a368484e1cc1f3", "cast_id": 2, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 1}, {"name": "Joelle Carter", "character": "Kate", "id": 3237, "credit_id": "52fe4ce7c3a368484e1cc1f7", "cast_id": 3, "profile_path": "/zdu1LYyKidGrqqSnUkkQ9blMO83.jpg", "order": 2}, {"name": "David Andrews", "character": "Leon", "id": 7219, "credit_id": "52fe4ce7c3a368484e1cc1fb", "cast_id": 4, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 3}, {"name": "Chris Ellis", "character": "Sheriff Pruitt", "id": 8191, "credit_id": "52fe4ce7c3a368484e1cc1ff", "cast_id": 5, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 4}, {"name": "Ana de la Reguera", "character": "Rosaura", "id": 57409, "credit_id": "52fe4ce7c3a368484e1cc207", "cast_id": 7, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 6}, {"name": "Brian Hallisay", "character": "Mark", "id": 207396, "credit_id": "54d23feec3a3687388002b34", "cast_id": 41, "profile_path": "/oFPwpghpgIcqKV3Qb9YV8NMCKaq.jpg", "order": 7}, {"name": "Larisa Oleynik", "character": "Samantha", "id": 40978, "credit_id": "54d240459251411b5f002955", "cast_id": 42, "profile_path": "/qhRcTWcXykI29zsuEC4po563sJC.jpg", "order": 8}], "directors": [{"name": "Kevin Greutert", "department": "Directing", "job": "Director", "credit_id": "52fe4ce7c3a368484e1cc20d", "profile_path": "/ffijXhDTs8Up2YQyKRQFIjk5fwc.jpg", "id": 2150}], "vote_average": 5.1, "runtime": 90}, "50357": {"poster_path": "/rbZCAQhcOXzL5ToI4GlG4OtO0eF.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25562924, "overview": "Officially, Apollo 17 was the last manned mission to the moon. But a year later in 1973, two American astronauts were sent on a secret mission to the moon funded by the US Department of Defense. What you are about to see is the actual footage which the astronauts captured on that mission. While NASA denies it's authenticity, others say it's the real reason we've never gone back to the moon.", "video": false, "id": 50357, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Apollo 18", "tagline": "There's a reason we've never gone back to the moon.", "vote_count": 107, "homepage": "http://apollo18movie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1772240", "adult": false, "backdrop_path": "/aHE8y4A4mlRCQbJ5oLbPkr5iznx.jpg", "production_companies": [{"name": "Bazelevs Production", "id": 1038}, {"name": "Dimension Films", "id": 7405}, {"name": "Bekmambetov Projects Ltd.", "id": 24923}], "release_date": "2011-07-20", "popularity": 0.332474194856006, "original_title": "Apollo 18", "budget": 5000000, "cast": [{"name": "Ryan Robbins", "character": "Lt. Col. John Grey", "id": 77164, "credit_id": "52fe47c5c3a36847f8147395", "cast_id": 14, "profile_path": "/sDEb7Y5mkPFLQpjYDNxbSEs2ofB.jpg", "order": 0}, {"name": "Warren Christie", "character": "Capt. Benjamin Anderson", "id": 232525, "credit_id": "52fe47c5c3a36847f814737d", "cast_id": 5, "profile_path": "/AhIoN1YIXpTxWAgf4lTyR30oU8Y.jpg", "order": 1}, {"name": "Lloyd Owen", "character": "Cdr. Nathan Walker", "id": 172935, "credit_id": "52fe47c5c3a36847f8147381", "cast_id": 8, "profile_path": "/pcTQxHzzkvrisBfaufenLWLv8gp.jpg", "order": 2}, {"name": "Andrew Airlie", "character": "Mission Control", "id": 41436, "credit_id": "52fe47c5c3a36847f8147391", "cast_id": 13, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 3}, {"name": "Michael Kopsa", "character": "Deputy Secretary of Defense", "id": 583061, "credit_id": "52fe47c5c3a36847f8147385", "cast_id": 10, "profile_path": "/A29sJzf8T6vKzhL0wqxhz7jPSvH.jpg", "order": 4}, {"name": "Ali Liebert", "character": "Nate's Girlfriend", "id": 91402, "credit_id": "52fe47c5c3a36847f814738d", "cast_id": 12, "profile_path": "/u6p3tN2w0PM3TR0i278xn2oNkk5.jpg", "order": 6}, {"name": "Kurt Max Runte", "character": "Lab Tech", "id": 60721, "credit_id": "548592eac3a36867d5001938", "cast_id": 33, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 7}, {"name": "Kim Wylie", "character": "Laura Anderson", "id": 1400438, "credit_id": "5491740dc3a368466b0017db", "cast_id": 87, "profile_path": null, "order": 8}, {"name": "Noah Wylie", "character": "Ryan Anderson", "id": 1400439, "credit_id": "54917424925141473b00156b", "cast_id": 88, "profile_path": null, "order": 9}, {"name": "Erica Carroll", "character": "John's Fianc\u00e9e", "id": 188656, "credit_id": "5491744f9251411226000fc4", "cast_id": 89, "profile_path": "/imr1SLIHR1efVUToXeIns0r4dAm.jpg", "order": 10}, {"name": "Jan Bos", "character": "Lab Tech", "id": 1252128, "credit_id": "54917472925141472e0016a1", "cast_id": 90, "profile_path": null, "order": 11}], "directors": [{"name": "Gonzalo L\u00f3pez-Gallego", "department": "Directing", "job": "Director", "credit_id": "52fe47c5c3a36847f814736d", "profile_path": "/2C0IA635PgBHctQd60RJdROuJ1j.jpg", "id": 77123}], "vote_average": 5.0, "runtime": 86}, "50359": {"poster_path": "/avbiy6qaRMbfeI8HRpNg2HLaNwD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 177324359, "overview": "E.B., the Easter Bunny's teenage son, heads to Hollywood, determined to become a drummer in a rock 'n' roll band. In LA, he's taken in by Fred after the out-of-work slacker hits E.B. with his car.", "video": false, "id": 50359, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Hop", "tagline": "Candy, chicks and rock 'n' roll.", "vote_count": 128, "homepage": "http://www.iwantcandy.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1411704", "adult": false, "backdrop_path": "/4ROkS8GjAfOe71PJn5ocFlKmMF8.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Illumination Entertainment", "id": 6704}], "release_date": "2011-03-30", "popularity": 0.766620988192356, "original_title": "Hop", "budget": 63000000, "cast": [{"name": "Russell Brand", "character": "Easter Bunny (voice)", "id": 59919, "credit_id": "52fe47c5c3a36847f8147403", "cast_id": 1, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 0}, {"name": "James Marsden", "character": "Fred", "id": 11006, "credit_id": "52fe47c5c3a36847f8147407", "cast_id": 2, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Kaley Cuoco", "character": "Samantha O'Hare", "id": 53862, "credit_id": "52fe47c5c3a36847f814740b", "cast_id": 3, "profile_path": "/sEIjKRSWUn8bxLCsxNArfxncvpO.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Carlos / Phil (voice)", "id": 5587, "credit_id": "52fe47c5c3a36847f814740f", "cast_id": 4, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Elizabeth Perkins", "character": "Bonnie O'Hare", "id": 20, "credit_id": "52fe47c5c3a36847f8147413", "cast_id": 5, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 4}, {"name": "Gary Cole", "character": "Henry O'Hare", "id": 21163, "credit_id": "52fe47c5c3a36847f8147417", "cast_id": 6, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 5}, {"name": "Hugh Laurie", "character": "E.B.'s Dad (voice)", "id": 41419, "credit_id": "52fe47c5c3a36847f814741b", "cast_id": 7, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 6}, {"name": "Tiffany Espensen", "character": "Alex O'Hare", "id": 211937, "credit_id": "52fe47c5c3a36847f814745b", "cast_id": 20, "profile_path": "/g4gRyKc9fqnz0iL8CPcCiJe0nrq.jpg", "order": 7}, {"name": "David Hasselhoff", "character": "Himself", "id": 28238, "credit_id": "52fe47c5c3a36847f814745f", "cast_id": 21, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 8}, {"name": "Chelsea Handler", "character": "Mrs. Beck", "id": 151254, "credit_id": "52fe47c5c3a36847f8147463", "cast_id": 22, "profile_path": "/pACHYdiEy4NHtu4bJIgKqeRji85.jpg", "order": 9}], "directors": [{"name": "Tim Hill", "department": "Directing", "job": "Director", "credit_id": "52fe47c5c3a36847f8147421", "profile_path": "/jN6KyRKLoI1UgC1EnyAEYJ5uDYy.jpg", "id": 49903}], "vote_average": 5.5, "runtime": 95}, "23629": {"poster_path": "/s5SjC5pXsBQG3wx9iVzaIzJzpFl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89792502, "overview": "A young girl is institutionalized by her abusive stepfather. Retreating to an alternative reality as a coping strategy, she envisions a plan which will help her escape from the mental facility.", "video": false, "id": 23629, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Sucker Punch", "tagline": "You Will Be Unprepared.", "vote_count": 520, "homepage": "http://suckerpunchmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0978764", "adult": false, "backdrop_path": "/hVpUs9zBGDuAG6RcTeHkBQshJkk.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Cruel & Unusual Films", "id": 9995}, {"name": "Lennox House Films", "id": 22119}], "release_date": "2011-03-25", "popularity": 1.19661609810598, "original_title": "Sucker Punch", "budget": 82000000, "cast": [{"name": "Emily Browning", "character": "Baby Doll", "id": 70456, "credit_id": "52fe4471c3a368484e023597", "cast_id": 20, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 0}, {"name": "Abbie Cornish", "character": "Sweet Pea", "id": 37260, "credit_id": "52fe4471c3a368484e023593", "cast_id": 19, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 1}, {"name": "Jena Malone", "character": "Rocket", "id": 20089, "credit_id": "52fe4471c3a368484e023567", "cast_id": 6, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 2}, {"name": "Vanessa Hudgens", "character": "Blondie", "id": 67599, "credit_id": "52fe4471c3a368484e02355f", "cast_id": 3, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 3}, {"name": "Jamie Chung", "character": "Amber", "id": 78324, "credit_id": "52fe4471c3a368484e02356b", "cast_id": 7, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 4}, {"name": "Carla Gugino", "character": "Madame Vera Gorski / Dr. Vera Gorski", "id": 17832, "credit_id": "52fe4471c3a368484e02355b", "cast_id": 2, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 5}, {"name": "Oscar Isaac", "character": "Blue Jones", "id": 25072, "credit_id": "52fe4471c3a368484e02356f", "cast_id": 9, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 6}, {"name": "Richard Cetrone", "character": "CJ", "id": 12371, "credit_id": "52fe4471c3a368484e023577", "cast_id": 11, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 7}, {"name": "Jon Hamm", "character": "The Doctor / The High Roller", "id": 65717, "credit_id": "52fe4471c3a368484e023563", "cast_id": 5, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 8}, {"name": "Scott Glenn", "character": "The Wise Man / The General / The Bus Driver", "id": 349, "credit_id": "52fe4471c3a368484e023573", "cast_id": 10, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 9}, {"name": "Gerard Plunkett", "character": "The Stepfather / The Priest", "id": 27124, "credit_id": "52fe4471c3a368484e0235bb", "cast_id": 29, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 10}, {"name": "Malcolm Scott", "character": "The Cook", "id": 52514, "credit_id": "52fe4471c3a368484e02357b", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Ron Selmour", "character": "Danforth", "id": 10874, "credit_id": "52fe4471c3a368484e02357f", "cast_id": 14, "profile_path": "/zh4wuPDU4ftPd4THoXItmryfmAM.jpg", "order": 12}, {"name": "Revard Dufresne", "character": "Big Boss Thug", "id": 229694, "credit_id": "52fe4471c3a368484e023583", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Alan C. Peterson", "character": "Mayor / Lighter Orderly", "id": 52703, "credit_id": "52fe4471c3a368484e02359b", "cast_id": 21, "profile_path": "/esrNQmnKq7GYF810l3MmoKjYpsn.jpg", "order": 14}, {"name": "Kelora Clingwall", "character": "Babydoll's Mother", "id": 1079146, "credit_id": "52fe4471c3a368484e02359f", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Frederique De Raucourt", "character": "Babydoll's Sister", "id": 1079147, "credit_id": "52fe4471c3a368484e0235a3", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Monique Ganderton", "character": "Lobotomy Nurse / High Roller Girl #1", "id": 102744, "credit_id": "52fe4471c3a368484e0235a7", "cast_id": 24, "profile_path": "/8BNtDzQwv8CWW0jmtcwa2YiJqta.jpg", "order": 17}, {"name": "Lee Tomaschefski", "character": "Lobotomy Nurse / High Roller Girl #2", "id": 449127, "credit_id": "52fe4471c3a368484e0235ab", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Eli Snyder", "character": "Tommy Soldier #1", "id": 963118, "credit_id": "52fe4471c3a368484e0235af", "cast_id": 26, "profile_path": "/vM41JkLOM4i6UFy7XmaMwQxMfsT.jpg", "order": 19}, {"name": "Cainan Wiebe", "character": "Tommy Soldier #2", "id": 58402, "credit_id": "52fe4471c3a368484e0235b3", "cast_id": 27, "profile_path": "/aaMIrNZ3eVNo6NGHVG4ycxk5Vou.jpg", "order": 20}, {"name": "Danny Bristol", "character": "Tommy Soldier #3", "id": 1079148, "credit_id": "52fe4471c3a368484e0235b7", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a368484e023557", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 5.8, "runtime": 110}, "23631": {"poster_path": "/3RCX4EzTrpO6wNz536EQPhYM2Fk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31327899, "overview": "After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.", "video": false, "id": 23631, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Machete", "tagline": "He was given an offer he couldn't refuse...", "vote_count": 367, "homepage": "http://www.vivamachete.com/", "belongs_to_collection": {"backdrop_path": "/vURYjEnOd8if3juhZh6HRcTJs7T.jpg", "poster_path": "/7kN9MY7htPG0sI598VJK2pB6zEs.jpg", "id": 210006, "name": "Machete Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0985694", "adult": false, "backdrop_path": "/hyNTEAXWNvPANHYw80b79NAhnU9.jpg", "production_companies": [{"name": "Troublemaker Studios", "id": 10807}, {"name": "Dune Entertainment", "id": 444}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Overnight Films", "id": 10808}], "release_date": "2010-09-01", "popularity": 0.977088136702211, "original_title": "Machete", "budget": 20000000, "cast": [{"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe4471c3a368484e02363d", "cast_id": 4, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 0}, {"name": "Michelle Rodriguez", "character": "Luz", "id": 17647, "credit_id": "52fe4471c3a368484e023641", "cast_id": 5, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 1}, {"name": "Jessica Alba", "character": "Sartana Rivera", "id": 56731, "credit_id": "52fe4471c3a368484e023645", "cast_id": 6, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 2}, {"name": "Robert De Niro", "character": "Senator John McLaughlin", "id": 380, "credit_id": "52fe4471c3a368484e023649", "cast_id": 7, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 3}, {"name": "Lindsay Lohan", "character": "April Booth", "id": 49265, "credit_id": "52fe4471c3a368484e02364d", "cast_id": 8, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 4}, {"name": "Cheech Marin", "character": "Padre Cortez", "id": 11159, "credit_id": "52fe4471c3a368484e023651", "cast_id": 9, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 5}, {"name": "Steven Seagal", "character": "Rogelio Torrez", "id": 23880, "credit_id": "52fe4471c3a368484e023655", "cast_id": 10, "profile_path": "/f8OFR4h3ngyFesiudCygrNFdsCE.jpg", "order": 6}, {"name": "Daryl Sabara", "character": "Julio", "id": 57675, "credit_id": "52fe4471c3a368484e02365d", "cast_id": 12, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 8}, {"name": "Don Johnson", "character": "Von Jackson", "id": 25129, "credit_id": "52fe4471c3a368484e023661", "cast_id": 13, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 9}, {"name": "Jeff Fahey", "character": "Michael Booth", "id": 20495, "credit_id": "52fe4471c3a368484e023665", "cast_id": 14, "profile_path": "/6l44xDPdJE4dQAEDN9eShnJOSo8.jpg", "order": 10}, {"name": "Tom Savini", "character": "Osiris Amanpour", "id": 11161, "credit_id": "52fe4471c3a368484e023669", "cast_id": 15, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 11}, {"name": "Tina Rodriguez", "character": "Tristana", "id": 122416, "credit_id": "52fe4471c3a368484e02366d", "cast_id": 16, "profile_path": "/8DJfBQUsR4wKsTIQXQv84IeTlLH.jpg", "order": 12}, {"name": "Tito Larriva", "character": "Culebra Cruzado", "id": 53763, "credit_id": "52fe4472c3a368484e0236d1", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Stacy Keach", "character": "Doc Franklin", "id": 825, "credit_id": "52fe4472c3a368484e0236d5", "cast_id": 40, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 14}, {"name": "James Parks", "character": "Edgar McGraw", "id": 87312, "credit_id": "52fe4472c3a368484e0236d9", "cast_id": 41, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 15}, {"name": "Billy Blair", "character": "Billy", "id": 968889, "credit_id": "54466bec0e0a26633a00b0d4", "cast_id": 42, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 16}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a368484e023633", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}, {"name": "Ethan Maniquis", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a368484e023639", "profile_path": "/63ehvs9X6lb36mBP2zbS0m9IEpL.jpg", "id": 61847}], "vote_average": 6.4, "runtime": 105}, "72784": {"poster_path": "/idcOD8kqY8BtT90G8MySZyoGcUL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Five friends who share a loft for their extramarital affairs begin to question one another after the body of an unknown woman is found in the property. American remake of the Belgian film 'Loft'.", "video": false, "id": 72784, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Loft", "tagline": "If you accept the key, you accept the rules.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1850397", "adult": false, "backdrop_path": "/j7qWyikT1eKNezNKxqPkkC8lKz8.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2014-10-14", "popularity": 2.2404816185362, "original_title": "The Loft", "budget": 13000000, "cast": [{"name": "Karl Urban", "character": "Vincent", "id": 1372, "credit_id": "52fe487ec3a368484e0fb477", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 0}, {"name": "James Marsden", "character": "Chris Vanowen", "id": 11006, "credit_id": "52fe487ec3a368484e0fb47f", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Wentworth Miller", "character": "Luke Seacord", "id": 3972, "credit_id": "52fe487ec3a368484e0fb483", "cast_id": 5, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 2}, {"name": "Matthias Schoenaerts", "character": "Filip", "id": 73381, "credit_id": "540fcf09c3a3685eae000b7a", "cast_id": 17, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 3}, {"name": "Eric Stonestreet", "character": "Marty Landry", "id": 156962, "credit_id": "52fe487ec3a368484e0fb48f", "cast_id": 8, "profile_path": "/pphQCQ2rZMahePbXMiIkW0sEOM4.jpg", "order": 4}, {"name": "Rhona Mitra", "character": "Allison", "id": 25702, "credit_id": "52fe487ec3a368484e0fb47b", "cast_id": 3, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 5}, {"name": "Rachael Taylor", "character": "Ann", "id": 19538, "credit_id": "5403ff5ac3a3684363005e2e", "cast_id": 16, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 6}, {"name": "Elaine Cassidy", "character": "Ellie Seacord", "id": 20054, "credit_id": "52fe487ec3a368484e0fb493", "cast_id": 9, "profile_path": "/k6Nlte5S62h2A7sDSA2h91Uq23V.jpg", "order": 7}, {"name": "Madison Burge", "character": "Zoe", "id": 224136, "credit_id": "52fe487ec3a368484e0fb497", "cast_id": 10, "profile_path": "/egh6eWa8mH4cEjzswYQp8LZTDKw.jpg", "order": 8}, {"name": "Kristin Lehman", "character": "Detective Huggins", "id": 148112, "credit_id": "52fe487ec3a368484e0fb49b", "cast_id": 11, "profile_path": "/Ap4B4W3eR8WWaFmMn9sSrigBkYQ.jpg", "order": 9}, {"name": "Robert Wisdom", "character": "Detective Cohagan", "id": 21505, "credit_id": "52fe487ec3a368484e0fb49f", "cast_id": 12, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 10}, {"name": "Kali Rocha", "character": "Mimi Landry", "id": 149665, "credit_id": "52fe487ec3a368484e0fb4a3", "cast_id": 13, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 11}, {"name": "Laura Cayouette", "character": "Mrs. Kotkin", "id": 565498, "credit_id": "52fe487ec3a368484e0fb4a7", "cast_id": 14, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 12}, {"name": "Isabel Lucas", "character": "Sarah Deakins", "id": 103554, "credit_id": "530b1957c3a3684201005698", "cast_id": 15, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 13}], "directors": [{"name": "Erik Van Looy", "department": "Directing", "job": "Director", "credit_id": "52fe487ec3a368484e0fb473", "profile_path": null, "id": 82418}], "vote_average": 6.8, "runtime": 108}, "7249": {"poster_path": "/bIde0Qs4OkgyMBmGOZOZyiD92AW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Planet Express crew return from cancellation, only to be robbed blind by hideous \"sprunging\" scam artists. Things go from bad to worse when the scammers hack Bender, start traveling through time, and take Earth over entirely! Will the crew be able to save the day, or will Bender's larcenous tendencies and their general incompetence doom them all?", "video": false, "id": 7249, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Futurama: Bender's Big Score", "tagline": "Just when you thought it was safe to watch something else!", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wZ1Xuwhu4hbcHPAAZz9sFTIZTKX.jpg", "poster_path": "/vkrtsW1Fyzu4rRpWYz2ybDfKXb0.jpg", "id": 13800, "name": "Futurama Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0471711", "adult": false, "backdrop_path": "/9ZBiK6zW4I1CgbmMJsLqZgizmxy.jpg", "production_companies": [{"name": "20th Century Fox Television", "id": 1556}], "release_date": "2007-11-27", "popularity": 0.398758441643818, "original_title": "Futurama: Bender's Big Score", "budget": 0, "cast": [{"name": "John Di Maggio", "character": "Bender (voice)", "id": 31531, "credit_id": "52fe4475c3a36847f80973bb", "cast_id": 1, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 0}, {"name": "Al Gore", "character": "Al Gore (voice)", "id": 19013, "credit_id": "52fe4475c3a36847f80973bf", "cast_id": 2, "profile_path": "/coo3dI3upX7j1q4bYeQC2CG0vPt.jpg", "order": 1}, {"name": "Billy West", "character": "Philip J. Fry (voice)", "id": 23679, "credit_id": "52fe4475c3a36847f80973c3", "cast_id": 3, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 2}, {"name": "Katey Sagal", "character": "Turanga Leela (voice)", "id": 18980, "credit_id": "52fe4475c3a36847f80973c7", "cast_id": 6, "profile_path": "/35sEVpaGxVIfd9wJIJ0iNxz5llN.jpg", "order": 3}], "directors": [{"name": "Dwayne Carey-Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a36847f80973cd", "profile_path": null, "id": 53216}], "vote_average": 7.3, "runtime": 88}, "97365": {"poster_path": "/cHCwW8xPl8yPKQwpNzKVinwvirT.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Put in charge of his young son, Ali leaves Belgium for Antibes to live with his sister and her husband as a family. Ali's bond with Stephanie, a killer whale trainer, grows deeper after Stephanie suffers a horrible accident.", "video": false, "id": 97365, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Rust and Bone", "tagline": "", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2053425", "adult": false, "backdrop_path": "/7rgmxIgzN9yI8LnyJIvTVSN8sMK.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Les Films Du Fleuve", "id": 1926}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Page 114", "id": 11779}, {"name": "Radio T\u00e9l\u00e9vision Belge Francophone (RTBF)", "id": 7466}, {"name": "Lumi\u00e8re", "id": 11793}, {"name": "Lunanime", "id": 11794}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France T\u00e9l\u00e9visions", "id": 11795}, {"name": "Centre du Cin\u00e9ma et de l'Audiovisuel de la F\u00e9d\u00e9ration Wallonie-Bruxelles", "id": 11796}, {"name": "VOO", "id": 11797}, {"name": "Vlaams Audiovisueel fonds", "id": 3132}, {"name": "R\u00e9gion Provence-Alpes-C\u00f4te d'Azur", "id": 11798}, {"name": "D\u00e9partement des Alpes-Maritimes", "id": 11799}, {"name": "Casa Kafka Pictures Movie Tax Shelter Empowered by Dexia", "id": 11800}], "release_date": "2012-05-17", "popularity": 0.224369960267258, "original_title": "De rouille et d'os", "budget": 0, "cast": [{"name": "Marion Cotillard", "character": "Stephanie", "id": 8293, "credit_id": "52fe49dd9251416c750d5dbd", "cast_id": 2, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 0}, {"name": "Matthias Schoenaerts", "character": "Ali", "id": 73381, "credit_id": "52fe49dd9251416c750d5dc1", "cast_id": 3, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 1}, {"name": "Bouli Lanners", "character": "Martial", "id": 47822, "credit_id": "52fe49dd9251416c750d5de3", "cast_id": 9, "profile_path": "/nnM1Yq5sodVTC95oav9iPK9ZiNw.jpg", "order": 2}, {"name": "C\u00e9line Sallette", "character": "Louise", "id": 72255, "credit_id": "52fe49dd9251416c750d5de7", "cast_id": 10, "profile_path": "/gei5LHBer7tNDh55f0VTDO4y5uv.jpg", "order": 3}, {"name": "Corinne Masiero", "character": "Anna", "id": 1033671, "credit_id": "52fe49dd9251416c750d5deb", "cast_id": 11, "profile_path": "/xDzKEomTMyzfY1zMCaULswUTUH7.jpg", "order": 4}, {"name": "Mourad Frarema", "character": "Foued", "id": 1033672, "credit_id": "52fe49dd9251416c750d5def", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Jean-Michel Correia", "character": "Richard", "id": 1033673, "credit_id": "52fe49dd9251416c750d5df3", "cast_id": 13, "profile_path": "/yW9GnEKd1k0ccX3eHzE2GrTEJzj.jpg", "order": 6}, {"name": "Armand Verdure", "character": "Sam", "id": 1123784, "credit_id": "52fe49dd9251416c750d5e27", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Yannick Choirat", "character": "Simon", "id": 1123785, "credit_id": "52fe49dd9251416c750d5e2b", "cast_id": 23, "profile_path": "/yICkawhbfX0QHfy6Owj5bOghwPY.jpg", "order": 8}, {"name": "Fred Menut", "character": "Le patron d'ELP S\u00e9curit\u00e9", "id": 1123786, "credit_id": "52fe49dd9251416c750d5e2f", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Duncan Versteegh", "character": "Soigneur d'orques", "id": 1123787, "credit_id": "52fe49dd9251416c750d5e33", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Katia Chaperon", "character": "Soigneuse d'orques", "id": 1123788, "credit_id": "52fe49dd9251416c750d5e37", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Catherine Fa", "character": "Soigneuse d'orques", "id": 1123789, "credit_id": "52fe49dd9251416c750d5e3b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Fran\u00e7oise Michaud", "character": "La m\u00e8re de St\u00e9phanie", "id": 144261, "credit_id": "52fe49dd9251416c750d5e3f", "cast_id": 28, "profile_path": null, "order": 13}], "directors": [{"name": "Jacques Audiard", "department": "Directing", "job": "Director", "credit_id": "52fe49dd9251416c750d5db9", "profile_path": "/AwkHfUzBQLC9RJfm8WjX646TblA.jpg", "id": 17496}], "vote_average": 7.1, "runtime": 123}, "97367": {"poster_path": "/cdsRBoAditFXVhSr8SgnJ2WTBkX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35485608, "overview": "A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.", "video": false, "id": 97367, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Place Beyond the Pines", "tagline": "If you ride like lightning you're gonna crash like thunder", "vote_count": 689, "homepage": "http://www.focusfeatures.com/the_place_beyond_the_pines", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1817273", "adult": false, "backdrop_path": "/kamIvkwKZUdUgxtudMThuY8EiJ4.jpg", "production_companies": [{"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Electric City Entertainment", "id": 8600}, {"name": "Verisimilitude", "id": 22632}], "release_date": "2012-09-07", "popularity": 0.921550600086687, "original_title": "The Place Beyond the Pines", "budget": 15000000, "cast": [{"name": "Ryan Gosling", "character": "Luke", "id": 30614, "credit_id": "52fe49dd9251416c750d5ea1", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Bradley Cooper", "character": "Avery Cross", "id": 51329, "credit_id": "52fe49dd9251416c750d5ea5", "cast_id": 4, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Romina", "id": 8170, "credit_id": "52fe49dd9251416c750d5ead", "cast_id": 6, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Dane DeHaan", "character": "Jason", "id": 122889, "credit_id": "52fe49dd9251416c750d5eb9", "cast_id": 10, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 3}, {"name": "Emory Cohen", "character": "AJ", "id": 1041440, "credit_id": "52fe49de9251416c750d5f59", "cast_id": 40, "profile_path": "/eyRIUg5abdjtvT6SWZ8Tzh0tw2G.jpg", "order": 4}, {"name": "Rose Byrne", "character": "Jennifer", "id": 9827, "credit_id": "52fe49dd9251416c750d5ea9", "cast_id": 5, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 5}, {"name": "Mahershalalhashbaz Ali", "character": "Kofi", "id": 932967, "credit_id": "52fe49dd9251416c750d5ec9", "cast_id": 14, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Bill Killcullen", "id": 21089, "credit_id": "52fe49dd9251416c750d5eb1", "cast_id": 7, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Harris Yulin", "character": "Al Cross", "id": 1166, "credit_id": "52fe49de9251416c750d5f4d", "cast_id": 37, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 8}, {"name": "Ben Mendelsohn", "character": "Robin", "id": 77335, "credit_id": "52fe49dd9251416c750d5ebd", "cast_id": 11, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 9}, {"name": "Ray Liotta", "character": "Deluca", "id": 11477, "credit_id": "52fe49dd9251416c750d5eb5", "cast_id": 8, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 10}, {"name": "Robert Clohessy", "character": "Chief Weirzbowski", "id": 2256, "credit_id": "52fe49de9251416c750d5f51", "cast_id": 38, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 11}, {"name": "Gabe Fazio", "character": "Scott", "id": 1129833, "credit_id": "52fe49dd9251416c750d5ed1", "cast_id": 16, "profile_path": "/1ruWGcoMmyxarZOyMLk5qlSwNJE.jpg", "order": 12}, {"name": "Olga Merediz", "character": "Malena", "id": 53937, "credit_id": "52fe49dd9251416c750d5ecd", "cast_id": 15, "profile_path": "/ejdSa9boSe6492csOavWb21FxK4.jpg", "order": 13}, {"name": "Anthony Pizza", "character": "Baby Jason", "id": 1183823, "credit_id": "52fe49dd9251416c750d5ec1", "cast_id": 12, "profile_path": null, "order": 14}, {"name": "Craig Van Hook", "character": "Jack", "id": 1183824, "credit_id": "52fe49dd9251416c750d5ec5", "cast_id": 13, "profile_path": null, "order": 15}, {"name": "Luca Pierucci", "character": "Doc Crowley", "id": 1193623, "credit_id": "52fe49de9251416c750d5f55", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Jennifer Sober", "character": "Public Defender", "id": 1193624, "credit_id": "52fe49de9251416c750d5f5d", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Kayla Smalls", "character": "Vanessa", "id": 1193625, "credit_id": "52fe49de9251416c750d5f61", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Frank J. Falvo", "character": "Pharmacy Clerk", "id": 1193626, "credit_id": "52fe49de9251416c750d5f65", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Hugh T. Farley", "character": "State Senator", "id": 1193627, "credit_id": "52fe49de9251416c750d5f69", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Greta Seacat", "character": "Cory Gilbeau", "id": 1193629, "credit_id": "52fe49de9251416c750d5f6d", "cast_id": 45, "profile_path": null, "order": 21}], "directors": [{"name": "Derek Cianfrance", "department": "Directing", "job": "Director", "credit_id": "52fe49dd9251416c750d5e9d", "profile_path": "/zGhozVaRDCU5Tpu026X0al2lQN3.jpg", "id": 139098}], "vote_average": 6.7, "runtime": 140}, "97370": {"poster_path": "/vYbCF0Hn6f4kVtOtVF3FiktiiXd.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2605039, "overview": "Jonathan Glazer's atmospheric, visually arresting abstraction stars Scarlett Johansson as a seductive alien who prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell, only to be consumed by a strange liquid pool.", "video": false, "id": 97370, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Under the Skin", "tagline": "A mysterious seductress preys upon the population of Scotland", "vote_count": 314, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1441395", "adult": false, "backdrop_path": "/cGOnS9rVOPXsyUwVUfTQP5yi3Ti.jpg", "production_companies": [{"name": "Scottish Screen", "id": 698}, {"name": "UK Film Council", "id": 2452}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Creative Scotland", "id": 8087}, {"name": "British Film Institute", "id": 8092}, {"name": "Film4", "id": 9349}, {"name": "Silver Reel", "id": 12075}, {"name": "JW Films", "id": 27543}], "release_date": "2014-04-04", "popularity": 1.38115441133816, "original_title": "Under the Skin", "budget": 0, "cast": [{"name": "Scarlett Johansson", "character": "Laura", "id": 1245, "credit_id": "52fe49de9251416c750d5fa3", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Kry\u0161tof H\u00e1dek", "character": "The Swimmer", "id": 136796, "credit_id": "5427eaa20e0a265562002252", "cast_id": 52, "profile_path": "/73fDGqzbeJtGy6fvNhILsTe7alL.jpg", "order": 1}, {"name": "Paul Brannigan", "character": "Andrew", "id": 1034704, "credit_id": "52fe49de9251416c750d5faf", "cast_id": 8, "profile_path": "/5d8FMoDGCskHGTogLyp7ubyQFWk.jpg", "order": 2}, {"name": "Michael Moreland", "character": "The Quiet Man", "id": 1047642, "credit_id": "52fe49de9251416c750d5fb3", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Scott Dymond", "character": "The Nervous Man", "id": 1047643, "credit_id": "52fe49de9251416c750d5fb7", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Jeremy McWilliams", "character": "The Bad Man", "id": 1047644, "credit_id": "52fe49de9251416c750d5fbb", "cast_id": 11, "profile_path": null, "order": 5}], "directors": [{"name": "Jonathan Glazer", "department": "Directing", "job": "Director", "credit_id": "52fe49de9251416c750d5f8d", "profile_path": "/uzxOQxv6DtiEPIl06TWJ9hORKCV.jpg", "id": 66728}], "vote_average": 6.0, "runtime": 108}, "130150": {"poster_path": "/4TKMiTqZnG6KJWjmxy2ZCDuG3M0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Depressed single mom Adele and her son Henry offer a wounded, fearsome man a ride. As police search town for the escaped convict, the mother and son gradually learn his true story as their options become increasingly limited.", "video": false, "id": 130150, "genres": [{"id": 18, "name": "Drama"}], "title": "Labor Day", "tagline": "", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1967545", "adult": false, "backdrop_path": "/etWGD7y6SewUFDJHz4uTbFIOCBT.jpg", "production_companies": [{"name": "Right of Way Films", "id": 32157}, {"name": "Mr. Mudd Production", "id": 2130}, {"name": "Indian Paintbrush", "id": 9350}], "release_date": "2013-12-27", "popularity": 1.14093629233268, "original_title": "Labor Day", "budget": 0, "cast": [{"name": "Josh Brolin", "character": "Frank", "id": 16851, "credit_id": "52fe4b51c3a368484e183121", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Adele", "id": 204, "credit_id": "52fe4b51c3a368484e183125", "cast_id": 6, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Clark Gregg", "character": "Gerald", "id": 9048, "credit_id": "52fe4b51c3a368484e183129", "cast_id": 7, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 2}, {"name": "James Van Der Beek", "character": "Officer Treadwell", "id": 19210, "credit_id": "52fe4b51c3a368484e18312d", "cast_id": 8, "profile_path": "/p6FC3Zn6OHLCCy2913GWmo64o8B.jpg", "order": 3}, {"name": "Tobey Maguire", "character": "Older Henry Wheeler", "id": 2219, "credit_id": "52fe4b51c3a368484e18311d", "cast_id": 4, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 4}, {"name": "Maika Monroe", "character": "Mandy", "id": 1094091, "credit_id": "52fe4b51c3a368484e183131", "cast_id": 9, "profile_path": "/3MyvscK0RoxmwLSIWzxRA2UrC6v.jpg", "order": 5}, {"name": "Brooke Smith", "character": "Evelyn", "id": 31649, "credit_id": "52fe4b51c3a368484e183135", "cast_id": 10, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 6}, {"name": "Dylan Minnette", "character": "Henry at 16", "id": 112476, "credit_id": "52fe4b51c3a368484e183139", "cast_id": 11, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 7}, {"name": "Gattlin Griffith", "character": "Henry Wheeler", "id": 117885, "credit_id": "52fe4b51c3a368484e18313d", "cast_id": 12, "profile_path": "/ac5MJnC9olgP8bhUnLfLfBP4BYy.jpg", "order": 8}, {"name": "Greg Nutcher", "character": "Officer Benson", "id": 968746, "credit_id": "52fe4b51c3a368484e183141", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Tom Lipinski", "character": "Young Frank", "id": 995198, "credit_id": "52fe4b51c3a368484e183145", "cast_id": 14, "profile_path": "/sp8yn6M94BjGXZXYJL8BOuX3dOn.jpg", "order": 10}, {"name": "Alexie Gilmore", "character": "Marjorie", "id": 87669, "credit_id": "52fe4b51c3a368484e183149", "cast_id": 15, "profile_path": "/lvWDTug0Jythcqhy3pr4yRx5MEH.jpg", "order": 11}, {"name": "Alexandra East", "character": "", "id": 1175452, "credit_id": "52fe4b51c3a368484e18314d", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Matthew Rauch", "character": "Bank Manager", "id": 111116, "credit_id": "52fe4b51c3a368484e183151", "cast_id": 17, "profile_path": "/qer9HYndRiL7rb8cCAAqWIKm0sf.jpg", "order": 13}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4b51c3a368484e18310d", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.6, "runtime": 111}, "48231": {"poster_path": "/alhzRpJVVhkQyvrWg6Y1tBxeTPS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In 1904 a Russian woman named Sabina Spielrein arrives at Carl Jung's clinic, seeking treatment for hysteria. Jung is eager to test Sigmund Freud's theories on Sabina and, in fact, successfully treats her. Two years later Jung and Sabina meet Freud in person, and Jung takes over the treatment of Otto Gross, whose influence leads Jung to begin an affair with Sabina, contributing to a rift with Freud.", "video": false, "id": 48231, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Dangerous Method", "tagline": "Why deny what you desire the most.", "vote_count": 102, "homepage": "http://adangerousmethod-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1571222", "adult": false, "backdrop_path": "/zLlbwDz6aKsrURSrwYfTrR53sUM.jpg", "production_companies": [{"name": "Lago Films", "id": 2624}, {"name": "Recorded Picture Company (RPC)", "id": 11561}], "release_date": "2011-11-10", "popularity": 0.802547890352967, "original_title": "A Dangerous Method", "budget": 15000000, "cast": [{"name": "Viggo Mortensen", "character": "Sigmund Freud", "id": 110, "credit_id": "52fe475bc3a36847f8131221", "cast_id": 1, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Sabina Spielrein", "id": 116, "credit_id": "52fe475bc3a36847f8131225", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Michael Fassbender", "character": "Carl Jung", "id": 17288, "credit_id": "52fe475bc3a36847f8131229", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 2}, {"name": "Vincent Cassel", "character": "Otto Gross", "id": 1925, "credit_id": "52fe475bc3a36847f813122d", "cast_id": 4, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 3}, {"name": "Sarah Gadon", "character": "Emma Jung", "id": 190895, "credit_id": "52fe475bc3a36847f8131297", "cast_id": 23, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 4}, {"name": "Andr\u00e9 Hennicke", "character": "Professor Eugen Bleuler", "id": 1846, "credit_id": "52fe475bc3a36847f813129b", "cast_id": 24, "profile_path": "/7cjb7ckyLpEFO7uD9mR5g0Yahwv.jpg", "order": 5}, {"name": "Arndt Schwering-Sohnrey", "character": "Sandor Ferenczi", "id": 36463, "credit_id": "52fe475bc3a36847f813129f", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Katharina Palm", "character": "Martha Freud", "id": 235162, "credit_id": "52fe475bc3a36847f81312a3", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Mignon Rem\u00e9", "character": "Jung's Secretary", "id": 46028, "credit_id": "52fe475bc3a36847f81312ad", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Mareike Carri\u00e8re", "character": "Food Nurse", "id": 233682, "credit_id": "52fe475bc3a36847f81312b1", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Franziska Arndt", "character": "Bath Nurse", "id": 1089478, "credit_id": "52fe475bc3a36847f81312b5", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Wladimir Matuchin", "character": "Nikolai Spielrein", "id": 1012899, "credit_id": "52fe475bc3a36847f81312b9", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Andr\u00e9 Dietz", "character": "Medical Policeman", "id": 583908, "credit_id": "52fe475bc3a36847f81312bd", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Anna Thalbach", "character": "Bathtub Patient", "id": 38371, "credit_id": "52fe475bc3a36847f81312c1", "cast_id": 33, "profile_path": "/zgJ8eY1FxjDMoYOz7OxWH3JM3Yo.jpg", "order": 13}, {"name": "Sarah Marecek", "character": "Orchard Nurse", "id": 1089480, "credit_id": "52fe475bc3a36847f81312c5", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Bj\u00f6rn Geske", "character": "Orderly", "id": 1089481, "credit_id": "52fe475bc3a36847f81312c9", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Markus Haase", "character": "Orderly", "id": 1089482, "credit_id": "52fe475bc3a36847f81312cd", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Christian Serritiello", "character": "Ship's Officer", "id": 142545, "credit_id": "52fe475bc3a36847f81312d1", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Clemens Giebel", "character": "Ship's Steward", "id": 1089483, "credit_id": "52fe475bc3a36847f81312d5", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Theo Meller", "character": "Karl Abraham", "id": 1089484, "credit_id": "52fe475bc3a36847f81312d9", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Jost Grix", "character": "Leonhard Seif", "id": 1089485, "credit_id": "52fe475bc3a36847f81312dd", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Severin von Hoensbroech", "character": "Johan van Ophuijsen", "id": 1012903, "credit_id": "52fe475bc3a36847f81312e1", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Torsten Knippertz", "character": "Ernest Jones", "id": 1012902, "credit_id": "52fe475bc3a36847f81312e5", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Dirk S. Greis", "character": "Franz Riklin", "id": 1089486, "credit_id": "52fe475bc3a36847f81312e9", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Nina Azizi", "character": "Minna Bernays", "id": 1089487, "credit_id": "52fe475bc3a36847f81312ed", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Julie Chevallier", "character": "Anna Freud", "id": 1089488, "credit_id": "52fe475bc3a36847f81312f1", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Cynthia Cosima", "character": "Sophie Freud", "id": 1089489, "credit_id": "52fe475bc3a36847f81312f5", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Mirko Guckeisen", "character": "Ernst Freud", "id": 1089490, "credit_id": "52fe475bc3a36847f81312f9", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Julia Mack", "character": "Mathilde Freud", "id": 1089491, "credit_id": "52fe475bc3a36847f81312fd", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Andrea Magro", "character": "Jean Freud", "id": 1089492, "credit_id": "52fe475bc3a36847f8131301", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Aaron Keller", "character": "Oliver Freud", "id": 1089493, "credit_id": "52fe475bc3a36847f8131305", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Nadine Salomon", "character": "Maid at Freud's House", "id": 1089494, "credit_id": "52fe475bc3a36847f8131309", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Naike Jaszczyk", "character": "Agathe Jung", "id": 1089495, "credit_id": "52fe475bc3a36847f813130d", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Sarah Adams", "character": "Gret Jung", "id": 220407, "credit_id": "52fe475bc3a36847f8131311", "cast_id": 53, "profile_path": null, "order": 33}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe475bc3a36847f8131233", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 5.7, "runtime": 99}, "81005": {"poster_path": "/wn4aSJcKiQ0fPzJ92XEf6M9Kmlo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 197687603, "overview": "The story of an ancient war that is reignited when a young farmhand unwittingly opens a gateway between our world and a fearsome race of giants. Unleashed on the Earth for the first time in centuries, the giants strive to reclaim the land they once lost, forcing the young man, Jack into the battle of his life to stop them. Fighting for a kingdom, its people, and the love of a brave princess, he comes face to face with the unstoppable warriors he thought only existed in legend\u2013and gets the chance to become a legend himself.", "video": false, "id": 81005, "genres": [{"id": 28, "name": "Action"}], "title": "Jack the Giant Slayer", "tagline": "Prepare for a giant adventure", "vote_count": 1888, "homepage": "http://jackthegiantkiller.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1351685", "adult": false, "backdrop_path": "/rJw1ecWyu9uoFFmtcYwzeNjZ9yP.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "New Line Cinema", "id": 12}, {"name": "Legendary Pictures", "id": 923}, {"name": "Original Film", "id": 333}, {"name": "Big Kid Pictures", "id": 8406}, {"name": "Bad Hat Harry Productions", "id": 9168}], "release_date": "2013-03-01", "popularity": 1.67438687909994, "original_title": "Jack the Giant Slayer", "budget": 195000000, "cast": [{"name": "Nicholas Hoult", "character": "Jack", "id": 3292, "credit_id": "52fe47ef9251416c9107aa2f", "cast_id": 7, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 0}, {"name": "Eleanor Tomlinson", "character": "Princess Isabelle", "id": 73357, "credit_id": "52fe47ef9251416c9107aa4b", "cast_id": 15, "profile_path": "/1eDkLc1uz20At0UNGMaTgGaooBR.jpg", "order": 1}, {"name": "Ewan McGregor", "character": "Elmont", "id": 3061, "credit_id": "52fe47ef9251416c9107aa2b", "cast_id": 6, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Roderick", "id": 2283, "credit_id": "52fe47ef9251416c9107aa33", "cast_id": 8, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Ian McShane", "character": "King Brahmwell", "id": 6972, "credit_id": "52fe47ef9251416c9107aa3f", "cast_id": 11, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 4}, {"name": "Eddie Marsan", "character": "Crawe", "id": 1665, "credit_id": "52fe47ef9251416c9107aa47", "cast_id": 13, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 5}, {"name": "Ewen Bremner", "character": "Wicke", "id": 1125, "credit_id": "52fe47ef9251416c9107aa43", "cast_id": 12, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 6}, {"name": "Warwick Davis", "character": "Old Hamm", "id": 11184, "credit_id": "52fe47ef9251416c9107aa37", "cast_id": 9, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 7}, {"name": "Bill Nighy", "character": "General Fallon", "id": 2440, "credit_id": "52fe47ef9251416c9107aa3b", "cast_id": 10, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 8}, {"name": "Ralph Brown", "character": "General Entin", "id": 53916, "credit_id": "52fe47ef9251416c9107aa4f", "cast_id": 16, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 9}, {"name": "Andrew Brooke", "character": "Fye", "id": 202760, "credit_id": "52fe47ef9251416c9107aa53", "cast_id": 17, "profile_path": "/vXyNaZWVYGWQCXYmH7hVRaRAyVP.jpg", "order": 10}, {"name": "Ben Daniels", "character": "Fumm", "id": 27632, "credit_id": "52fe47ef9251416c9107aa57", "cast_id": 18, "profile_path": "/x6MI4Fdz1XbERbNbXYoxTK6NAgv.jpg", "order": 11}, {"name": "Daniel Lapaine", "character": "Jack's Dad", "id": 3072, "credit_id": "52fe47ef9251416c9107aa5b", "cast_id": 19, "profile_path": "/rbjKrUGYsPFvUg8bNU9afBnV4b.jpg", "order": 12}, {"name": "Lee Boardman", "character": "Badger", "id": 590929, "credit_id": "52fe47f09251416c9107aa5f", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Christian Wolf-La'Moy ", "character": "Horse Merchant", "id": 590936, "credit_id": "52fe47f09251416c9107aa63", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Duncan JC Mais ", "character": "The kings Foot Soldier", "id": 590937, "credit_id": "52fe47f09251416c9107aa67", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Santi Scinelli ", "character": "Soothsayer", "id": 590938, "credit_id": "52fe47f09251416c9107aa6b", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Caroline Hayes", "character": "Jack's Mum", "id": 590939, "credit_id": "52fe47f09251416c9107aa6f", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Angus Barnett", "character": "Foe", "id": 1714, "credit_id": "52fe47f09251416c9107aaa3", "cast_id": 34, "profile_path": "/usYsWRccdM4Y00RycsQFFOdNVe.jpg", "order": 18}, {"name": "Alex MacQueen", "character": "Tour Guide", "id": 126042, "credit_id": "52fe47f09251416c9107aaa7", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Tandi Wright", "character": "The Queen", "id": 33310, "credit_id": "52fe47f09251416c9107aaab", "cast_id": 36, "profile_path": "/yVoJwmkHUEiSC1UKmpNV4m49k68.jpg", "order": 20}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe47f09251416c9107aa75", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 5.5, "runtime": 114}, "61891": {"poster_path": "/tuAI9fT8AzakI5w4V1KZyUEvuDW.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A political thriller advancing the theory that it was in fact Edward De Vere, Earl of Oxford who penned Shakespeare's plays; set against the backdrop of the succession of Queen Elizabeth I, and the Essex Rebellion against her.", "video": false, "id": 61891, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Anonymous", "tagline": "Was Shakespeare a Fraud?", "vote_count": 103, "homepage": "http://www.anonymous-movie.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1521197", "adult": false, "backdrop_path": "/406C5l8PyTHMUBDbeaea8PTxm71.jpg", "production_companies": [{"name": "Centropolis Entertainment", "id": 347}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2011-10-21", "popularity": 0.670430960087856, "original_title": "Anonymous", "budget": 0, "cast": [{"name": "Jamie Campbell Bower", "character": "Young Oxford", "id": 83356, "credit_id": "52fe4668c3a368484e08f061", "cast_id": 2, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 0}, {"name": "Rhys Ifans", "character": "Edward de Vere", "id": 7026, "credit_id": "52fe4668c3a368484e08f065", "cast_id": 3, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 1}, {"name": "David Thewlis", "character": "William Cecil", "id": 11207, "credit_id": "52fe4668c3a368484e08f069", "cast_id": 4, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 2}, {"name": "Joely Richardson", "character": "Princess Elizabeth Tudor", "id": 20810, "credit_id": "52fe4668c3a368484e08f06d", "cast_id": 5, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 3}, {"name": "Vanessa Redgrave", "character": "Queen Elizabeth I", "id": 13333, "credit_id": "52fe4668c3a368484e08f077", "cast_id": 7, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 4}, {"name": "Sebastian Armesto", "character": "Ben Jonson", "id": 229634, "credit_id": "52fe4668c3a368484e08f07b", "cast_id": 8, "profile_path": "/oNflfULqkire4ZPHIrWEdNdqjBU.jpg", "order": 5}, {"name": "Rafe Spall", "character": "William Shakespeare", "id": 28847, "credit_id": "52fe4668c3a368484e08f07f", "cast_id": 9, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 6}, {"name": "Edward Hogg", "character": "Robert Cecil", "id": 114252, "credit_id": "52fe4668c3a368484e08f083", "cast_id": 10, "profile_path": "/cZ9Iqj7l0vmpHcJBA26JYKgqVLP.jpg", "order": 7}, {"name": "Xavier Samuel", "character": "Earl of Southampton", "id": 109438, "credit_id": "52fe4668c3a368484e08f087", "cast_id": 11, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 8}, {"name": "Sam Reid", "character": "Earl of Essex", "id": 589650, "credit_id": "52fe4668c3a368484e08f08b", "cast_id": 12, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 9}, {"name": "Jamie Campbell Bower", "character": "Young Earl of Oxford", "id": 83356, "credit_id": "52fe4668c3a368484e08f08f", "cast_id": 13, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 10}, {"name": "Paolo De Vita", "character": "Francesco", "id": 92094, "credit_id": "52fe4668c3a368484e08f093", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Trystan Gravelle", "character": "Christopher Marlowe", "id": 589651, "credit_id": "52fe4668c3a368484e08f097", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Robert Emms", "character": "Thomas Dekker", "id": 589652, "credit_id": "52fe4668c3a368484e08f09b", "cast_id": 16, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 13}, {"name": "Tony Way", "character": "Thomas Nashe", "id": 147255, "credit_id": "52fe4668c3a368484e08f09f", "cast_id": 17, "profile_path": "/uk8OCXbEGXnkmKvf7EgVzfKq918.jpg", "order": 14}, {"name": "Julian Bleach", "character": "Captain Richard Pole", "id": 30086, "credit_id": "52fe4668c3a368484e08f0a3", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Derek Jacobi", "character": "Prologue", "id": 937, "credit_id": "52fe4668c3a368484e08f0a7", "cast_id": 19, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 16}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4668c3a368484e08f05d", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.1, "runtime": 130}, "15472": {"poster_path": "/9pRod9YBfBwC0tPfMijhYSdSlwU.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 104345682, "overview": "Swedish thriller based on Stieg Larsson's novel about a male journalist and a young female hacker. In the opening of the movie, Mikael Blomkvist, a middle-aged publisher for the magazine Millennium, loses a libel case brought by corrupt Swedish industrialist Hans-Erik Wennerstr\u00f6m. Nevertheless, he is hired by Henrik Vanger in order to solve a cold case, the disappearance of Vanger's niece", "video": false, "id": 15472, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl with the Dragon Tattoo", "tagline": "Based on the Worldwide Best Seller", "vote_count": 341, "homepage": "http://dragontattoofilm.com/", "belongs_to_collection": {"backdrop_path": "/9wLsZPhI7ZafO4fh1MhwCjvkclN.jpg", "poster_path": "/sLeE5pwX9cle1v1TpBylT9MeYJ2.jpg", "id": 24761, "name": "The Millennium Collection"}, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1132620", "adult": false, "backdrop_path": "/7ajX2OJsBecgDDOYfk9VXYfhMIy.jpg", "production_companies": [{"name": "Det Danske Filminstitut", "id": 118}, {"name": "Nordisk Film", "id": 235}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}, {"name": "Yellow Bird Films", "id": 5746}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Filmpool Stockholm M\u00e4lardalen", "id": 33821}, {"name": "Spiltan Underh\u00e5llning", "id": 33822}, {"name": "Svenska Filminstitutet (SFI)", "id": 7446}, {"name": "Nordisk Film & TV Fond", "id": 5403}], "release_date": "2009-02-27", "popularity": 0.993895849661728, "original_title": "M\u00e4n som hatar kvinnor", "budget": 13000000, "cast": [{"name": "Michael Nyqvist", "character": "Mikael Blomkvist", "id": 6283, "credit_id": "52fe465d9251416c75075fb7", "cast_id": 2, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Lisbeth Salander", "id": 87722, "credit_id": "52fe465d9251416c75075fb3", "cast_id": 1, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Lena Endre", "character": "Erika Berger", "id": 79196, "credit_id": "52fe465d9251416c75075fcb", "cast_id": 7, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 2}, {"name": "Sven-Bertil Taube", "character": "Henrik Vanger", "id": 87723, "credit_id": "52fe465d9251416c75075fbb", "cast_id": 3, "profile_path": "/e4ra4ZFKQ5zDijQHh0x3TlGApWW.jpg", "order": 3}, {"name": "Peter Andersson", "character": "Nils Bjurman", "id": 21193, "credit_id": "52fe465d9251416c75075fbf", "cast_id": 4, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 4}, {"name": "Peter Haber", "character": "Martin Vanger", "id": 74709, "credit_id": "52fe465d9251416c75075fc3", "cast_id": 5, "profile_path": "/fMbTKyLcfrcyFi0rdCqayYnNAh0.jpg", "order": 5}, {"name": "Marika Lagercrantz", "character": "Cecilia Vanger", "id": 87724, "credit_id": "52fe465d9251416c75075fc7", "cast_id": 6, "profile_path": "/9SrJ2SZLLy5ApqZScf17s98myTr.jpg", "order": 6}, {"name": "Tomas K\u00f6hler", "character": "'Plague'", "id": 87727, "credit_id": "52fe465d9251416c75075fe7", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "G\u00f6sta Bredefeldt", "character": "Harald Vanger", "id": 87725, "credit_id": "52fe465d9251416c75075fcf", "cast_id": 9, "profile_path": "/qWdzGtD2UsMLh87ytEJDUAFvtCc.jpg", "order": 9}, {"name": "Bj\u00f6rn Granath", "character": "Gustav Morell", "id": 55002, "credit_id": "52fe465d9251416c75075fd3", "cast_id": 10, "profile_path": "/vnAD5t7vyCP7GPicOa2bB3WXJxD.jpg", "order": 10}, {"name": "Ewa Fr\u00f6ling", "character": "Harriet Vanger", "id": 46866, "credit_id": "52fe465d9251416c75075fd7", "cast_id": 11, "profile_path": "/9qZewaRRpxzKfOZyJ6KFx5eqoyl.jpg", "order": 11}, {"name": "Stefan Sauk", "character": "Hans-Erik Wennerstr\u00f6m", "id": 55886, "credit_id": "52fe465d9251416c75075fdb", "cast_id": 12, "profile_path": "/f2H1BUukQbd1pnVuq38anpqsdTr.jpg", "order": 12}, {"name": "Gunnel Lindblom", "character": "Isabella Vanger", "id": 6662, "credit_id": "52fe465d9251416c75075fdf", "cast_id": 13, "profile_path": "/pvyxNIdjoNBPGT3Ig8cKu97yTXo.jpg", "order": 13}, {"name": "Willie Andr\u00e9ason", "character": "Birger Vanger", "id": 87726, "credit_id": "52fe465d9251416c75075fe3", "cast_id": 14, "profile_path": null, "order": 14}, {"name": "Ingvar Hirdwall", "character": "Dirch Frode", "id": 47070, "credit_id": "52fe465d9251416c75076003", "cast_id": 20, "profile_path": "/uYpw3FrLBMdkdBuZ3yqNPBE7gMr.jpg", "order": 15}, {"name": "Annika Hallin", "character": "Annika Giannini", "id": 79270, "credit_id": "53d4de610e0a26283e003c2e", "cast_id": 26, "profile_path": "/xvbhvw0Zt8SCNXVApudzZfd6X2p.jpg", "order": 16}, {"name": "Sofia Ledarp", "character": "Malin Erikson", "id": 83899, "credit_id": "53d4de8a0e0a262844003ba7", "cast_id": 27, "profile_path": "/wYtfaMlSFX7iDpk00xtVuz0Hzof.jpg", "order": 17}, {"name": "David Dencik", "character": "Janne Dahlman", "id": 93236, "credit_id": "53d4debc0e0a26284a003aa3", "cast_id": 28, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 18}, {"name": "Michalis Koutsogiannakis", "character": "Dragan Armanskij", "id": 92897, "credit_id": "53d4deeb0e0a26283e003c37", "cast_id": 29, "profile_path": "/ne1BlRr5i2yFTC7vj8MQoznACPf.jpg", "order": 19}, {"name": "Yasmine Garbi", "character": "Miriam 'Mimmi' Wu", "id": 234908, "credit_id": "53d4e7d8c3a3686b880036c8", "cast_id": 30, "profile_path": null, "order": 20}], "directors": [{"name": "Niels Arden Oplev", "department": "Directing", "job": "Director", "credit_id": "52fe465d9251416c75075fed", "profile_path": "/kC0qwxbWkZkWC3zT8w8x6xatHq1.jpg", "id": 19346}], "vote_average": 7.1, "runtime": 152}, "10771": {"poster_path": "/yDjNnQvyGLTOl9656dGOpxPAva3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A hapless chauffer must take a comatosed secret agent's place using his special gadget-laden tuxedo.", "video": false, "id": 10771, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Tuxedo", "tagline": "Suit up for action!", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0290095", "adult": false, "backdrop_path": "/2nOOz119wBa52YBjeVXS7BVPqw2.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2002-09-27", "popularity": 1.07547886928531, "original_title": "The Tuxedo", "budget": 0, "cast": [{"name": "Jackie Chan", "character": "Jimmy Tong", "id": 18897, "credit_id": "52fe43b49251416c7501ad95", "cast_id": 10, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Jennifer Love Hewitt", "character": "Del Blaine", "id": 33259, "credit_id": "52fe43b49251416c7501ad99", "cast_id": 11, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 1}, {"name": "Jason Isaacs", "character": "Clark Devlin", "id": 11355, "credit_id": "52fe43b49251416c7501ad9d", "cast_id": 12, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 2}, {"name": "Debi Mazar", "character": "Steena", "id": 5578, "credit_id": "52fe43b49251416c7501ada1", "cast_id": 13, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 3}, {"name": "Ritchie Coster", "character": "Dietrich Banning", "id": 13939, "credit_id": "54d64c42c3a3683b9500246b", "cast_id": 14, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Dr. Simms", "id": 53, "credit_id": "54d64c4fc3a368439a00237d", "cast_id": 15, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Mia Cottet", "character": "Cheryl", "id": 149209, "credit_id": "54d64c5ec3a3683b8f00264d", "cast_id": 16, "profile_path": "/6MWsJvBf5VtB7KVAy2G5Ys7JIh2.jpg", "order": 6}, {"name": "Romany Malco", "character": "Mitch", "id": 71530, "credit_id": "54d64c6fc3a3683b8f00265b", "cast_id": 17, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 7}, {"name": "Daniel Kash", "character": "Rogers", "id": 10210, "credit_id": "54d64c7ec3a3683b92002887", "cast_id": 18, "profile_path": "/b6lvtpkTRHHcv4YMW3FnGRtyXJ4.jpg", "order": 8}, {"name": "Jody Racicot", "character": "Kells", "id": 33339, "credit_id": "54d64c899251416b9f0024d2", "cast_id": 19, "profile_path": "/aayVafgphvhN4aHOBVxA6sI88t6.jpg", "order": 9}, {"name": "Jody Racicot", "character": "Vic", "id": 33339, "credit_id": "54d64ca89251417160002726", "cast_id": 20, "profile_path": "/aayVafgphvhN4aHOBVxA6sI88t6.jpg", "order": 10}, {"name": "Scott Wickware", "character": "CSA Agent Wallace", "id": 166510, "credit_id": "54d64cb59251416b9f0024d7", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Christian Potenza", "character": "CSA Agent Joel", "id": 1212946, "credit_id": "54d64cc8c3a3683b89002387", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Karen Glave", "character": "CSA Agent Randa", "id": 79403, "credit_id": "54d64cd3c3a368439a00238b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Scott Yaphe", "character": "CSA Agent Gabe", "id": 70445, "credit_id": "54d64cdf925141758c0022f9", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Donovan", "department": "Directing", "job": "Director", "credit_id": "52fe43b49251416c7501ad61", "profile_path": "/juJfwfECTqdYrw7Dcv7Z0pwYNXc.jpg", "id": 66654}], "vote_average": 5.5, "runtime": 98}, "7288": {"poster_path": "/rFtYcCd21ML6s0EuGMEuojFvz3B.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19322135, "overview": "When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!", "video": false, "id": 7288, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Duplex", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0266489", "adult": false, "backdrop_path": "/460905or2cCiaG93csoIUBBMwYq.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Flower Films", "id": 2214}], "release_date": "2003-09-26", "popularity": 0.600448016882684, "original_title": "Duplex", "budget": 40000000, "cast": [{"name": "Ben Stiller", "character": "Alex Rose", "id": 7399, "credit_id": "52fe4477c3a36847f809797d", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Nancy Kendricks", "id": 69597, "credit_id": "52fe4477c3a36847f8097981", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Eileen Essell", "character": "Mrs. Connelly", "id": 52313, "credit_id": "52fe4477c3a36847f8097985", "cast_id": 3, "profile_path": "/lEMcgUXHVt5tVpMuXBgC1QZ41QW.jpg", "order": 2}, {"name": "Amber Valletta", "character": "C\u00e9line", "id": 38425, "credit_id": "52fe4477c3a36847f8097995", "cast_id": 6, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Justin Theroux", "character": "Coop", "id": 15009, "credit_id": "52fe4477c3a36847f8097999", "cast_id": 7, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 4}, {"name": "Swoosie Kurtz", "character": "Jean", "id": 12967, "credit_id": "52fe4477c3a36847f809799d", "cast_id": 8, "profile_path": "/vMZajDmqbbfzSw6jxgAYIf3CrJm.jpg", "order": 5}], "directors": [{"name": "Danny DeVito", "department": "Directing", "job": "Director", "credit_id": "52fe4477c3a36847f809798b", "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "id": 518}], "vote_average": 5.9, "runtime": 89}, "31867": {"poster_path": "/jAFLg9P6f59JtSNe2PkGwwwKssf.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18409891, "overview": "In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.", "video": false, "id": 31867, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Repo Men", "tagline": "For a price, any organ in your body can be replaced. But it can also be repossessed.", "vote_count": 212, "homepage": "http://www.repomenarecoming.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1053424", "adult": false, "backdrop_path": "/q5LRhDbHCLGzbQoakyjozXhIsPx.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Stuber Productions", "id": 4403}, {"name": "Dentsu", "id": 6452}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-03-18", "popularity": 0.662051818748462, "original_title": "Repo Men", "budget": 32000000, "cast": [{"name": "Jude Law", "character": "Remy", "id": 9642, "credit_id": "52fe44a39251416c91017beb", "cast_id": 1, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Jake", "id": 2178, "credit_id": "52fe44a39251416c91017bef", "cast_id": 2, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Alice Braga", "character": "Beth", "id": 8602, "credit_id": "52fe44a39251416c91017bf3", "cast_id": 3, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Frank", "id": 23626, "credit_id": "52fe44a39251416c91017bf7", "cast_id": 4, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "Carice van Houten", "character": "Carol", "id": 23229, "credit_id": "52fe44a49251416c91017c43", "cast_id": 17, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 4}, {"name": "Chandler Canterbury", "character": "Peter", "id": 77334, "credit_id": "52fe44a49251416c91017c47", "cast_id": 18, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 5}, {"name": "RZA", "character": "T-Bone", "id": 150, "credit_id": "52fe44a49251416c91017c4b", "cast_id": 19, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 6}, {"name": "Joe Pingue", "character": "Ray", "id": 86237, "credit_id": "52fe44a49251416c91017c4f", "cast_id": 20, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 7}, {"name": "Tiffany Espensen", "character": "Little Alva", "id": 211937, "credit_id": "52fe44a49251416c91017c53", "cast_id": 21, "profile_path": "/g4gRyKc9fqnz0iL8CPcCiJe0nrq.jpg", "order": 8}, {"name": "Liza Lapira", "character": "Alva", "id": 51998, "credit_id": "52fe44a49251416c91017c57", "cast_id": 22, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 9}, {"name": "Yvette Nicole Brown", "character": "Rhodesia", "id": 111513, "credit_id": "52fe44a49251416c91017c5b", "cast_id": 23, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 10}, {"name": "Tanya Clarke", "character": "Hooker", "id": 6172, "credit_id": "52fe44a49251416c91017c5f", "cast_id": 24, "profile_path": "/zLpLrVzihPObD6h72KFxTNqdKuq.jpg", "order": 11}, {"name": "John Leguizamo", "character": "Asbury", "id": 5723, "credit_id": "550f1a1d9251416bd1000f27", "cast_id": 28, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 12}], "directors": [{"name": "Miguel Sapochnik", "department": "Directing", "job": "Director", "credit_id": "52fe44a39251416c91017bfd", "profile_path": "/78aERjKz3MGE2eGJXgp92aDQy0D.jpg", "id": 114404}], "vote_average": 6.3, "runtime": 111}, "81025": {"poster_path": "/bzLlr1RhZYQ2uLvNjR9hb5A5kZ9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 34564651, "overview": "A fisheries expert is approached by a consultant to help realize a sheik's vision of bringing the sport of fly-fishing to the desert and embarks on an upstream journey of faith and fish to prove the impossible possible.", "video": false, "id": 81025, "genres": [{"id": 18, "name": "Drama"}], "title": "Salmon Fishing in the Yemen", "tagline": "Make the Improbable Possible", "vote_count": 101, "homepage": "http://www.fishingintheyemen.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1441952", "adult": false, "backdrop_path": "/4NnYQ4hOWxzqJz2DMUYZLEGKvFc.jpg", "production_companies": [{"name": "Shine Pictures", "id": 16880}, {"name": "UK Film Council", "id": 2452}, {"name": "BBC Films", "id": 288}, {"name": "CBS Films", "id": 5490}, {"name": "Lionsgate", "id": 1632}, {"name": "Kudos Film and Television", "id": 20244}, {"name": "Davis Films", "id": 14175}], "release_date": "2011-09-10", "popularity": 0.483614571558063, "original_title": "Salmon Fishing in the Yemen", "budget": 0, "cast": [{"name": "Emily Blunt", "character": "Harriet Chetwode-Talbot", "id": 5081, "credit_id": "53b5245b0e0a2676d30020ae", "cast_id": 1019, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Dr. Alfred Jones", "id": 3061, "credit_id": "52fe47f19251416c9107acab", "cast_id": 1008, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Kristin Scott Thomas", "character": "Patricia Maxwell", "id": 5470, "credit_id": "52fe47f19251416c9107acaf", "cast_id": 1009, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 2}, {"name": "Rachael Stirling", "character": "Mary Jones", "id": 18067, "credit_id": "52fe47f19251416c9107acb3", "cast_id": 1010, "profile_path": "/qG6JbbYVcZQnJhXThyY5U8PMyyb.jpg", "order": 3}, {"name": "Amr Waked", "character": "Sheikh Muhammad", "id": 2960, "credit_id": "52fe47f19251416c9107acb7", "cast_id": 1011, "profile_path": "/am80pES7tfN6RgWqmuQg6e7pkiD.jpg", "order": 4}, {"name": "Catherine Steadman", "character": "Ashley", "id": 443865, "credit_id": "52fe47f19251416c9107acbb", "cast_id": 1012, "profile_path": "/n26Z9iROU8gjtPkOX88XvNxYWqx.jpg", "order": 5}, {"name": "Tom Mison", "character": "Capt. Robert Mayers", "id": 75073, "credit_id": "52fe47f19251416c9107acbf", "cast_id": 1013, "profile_path": "/j7Hs9RStUNrwedqILRMcolI3QZz.jpg", "order": 6}, {"name": "Tom Beard", "character": "Peter Maxwell", "id": 123071, "credit_id": "52fe47f19251416c9107acc3", "cast_id": 1014, "profile_path": null, "order": 7}, {"name": "Jill Baker", "character": "Betty", "id": 37053, "credit_id": "52fe47f19251416c9107acc7", "cast_id": 1015, "profile_path": null, "order": 8}, {"name": "Conleth Hill", "character": "Bernard Sugden", "id": 84423, "credit_id": "52fe47f19251416c9107accb", "cast_id": 1016, "profile_path": "/nxSh1w1MTyAfQ1cCSie3HtjQot6.jpg", "order": 9}, {"name": "Alex Taylor-McDowall", "character": "Edward Maxwell", "id": 1074075, "credit_id": "52fe47f19251416c9107accf", "cast_id": 1017, "profile_path": null, "order": 10}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe47f19251416c9107acd5", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.4, "runtime": 107}, "121986": {"poster_path": "/mG8gvA3lxxzcJFIAnmMqir6DiWQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Shot in black and white, Frances Ha is about an aspiring dancer (co-writer Greta Gerwig) who moves to New York City and becomes caught up in a whirlwind of flighty fair-weather friends, diminishing fortunes and career setbacks. From director Noah Baumbach (Margot at the Wedding, Greenberg).", "video": false, "id": 121986, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Frances Ha", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2347569", "adult": false, "backdrop_path": "/gnFUlprcxjDUVONgtMtKZpfMPar.jpg", "production_companies": [{"name": "MFA Filmdistribution", "id": 910}], "release_date": "2012-09-01", "popularity": 0.940057772737921, "original_title": "Frances Ha", "budget": 0, "cast": [{"name": "Greta Gerwig", "character": "Frances", "id": 45400, "credit_id": "52fe4a73c3a368484e153ee3", "cast_id": 4, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 0}, {"name": "Mickey Sumner", "character": "Sophie", "id": 1175394, "credit_id": "52fe4a73c3a368484e153ef3", "cast_id": 7, "profile_path": "/2kA5dkKgymZiaqsjjXroaqJqKeZ.jpg", "order": 1}, {"name": "Adam Driver", "character": "Miles", "id": 1023139, "credit_id": "52fe4a73c3a368484e153ef7", "cast_id": 8, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 2}, {"name": "Michael Zegen", "character": "Benji", "id": 80661, "credit_id": "52fe4a73c3a368484e153efb", "cast_id": 9, "profile_path": "/cTe8u7HNzkQvuaY4spCU3KxKKdl.jpg", "order": 3}, {"name": "Charlotte d'Amboise", "character": "Colleen", "id": 171799, "credit_id": "52fe4a73c3a368484e153eff", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Josh Hamilton", "character": "Andy", "id": 52419, "credit_id": "52fe4a73c3a368484e153f03", "cast_id": 12, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 5}, {"name": "Grace Gummer", "character": "Rachel", "id": 504787, "credit_id": "52fe4a73c3a368484e153f07", "cast_id": 13, "profile_path": "/dSATF8DYRGJoSV5jVJ5uSFbmdiI.jpg", "order": 6}], "directors": [{"name": "Noah Baumbach", "department": "Directing", "job": "Director", "credit_id": "52fe4a73c3a368484e153ed3", "profile_path": "/6PuCDnBLURBnLCuat7BfouH9Gus.jpg", "id": 5656}], "vote_average": 7.3, "runtime": 86}, "7299": {"poster_path": "/4bGyKCqV4uYMZYjBJDzoZUMkXL6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5359645, "overview": "In a facist future where all forms of feeling are illegal, a man in charge of enforcing the law rises to overthrow the system.", "video": false, "id": 7299, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Equilibrium", "tagline": "Two men. One battle. No compromise.", "vote_count": 386, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0238380", "adult": false, "backdrop_path": "/tnXrFkhkeBEFXP0tCFGMjw4QN11.jpg", "production_companies": [{"name": "Blue Tulip Productions", "id": 35304}, {"name": "Dimension Films", "id": 7405}], "release_date": "2002-12-06", "popularity": 0.820308941805745, "original_title": "Equilibrium", "budget": 20000000, "cast": [{"name": "Christian Bale", "character": "John Preston", "id": 3894, "credit_id": "52fe4478c3a36847f8097ef1", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Taye Diggs", "character": "Brandt", "id": 17637, "credit_id": "52fe4478c3a36847f8097f19", "cast_id": 11, "profile_path": "/1g1demRAGhwdUpwi8PA0wgFe2IX.jpg", "order": 1}, {"name": "Emily Watson", "character": "Mary O'Brien", "id": 1639, "credit_id": "52fe4478c3a36847f8097f29", "cast_id": 15, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 2}, {"name": "Angus Macfadyen", "character": "Dupont", "id": 2464, "credit_id": "52fe4478c3a36847f8097f0d", "cast_id": 8, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 3}, {"name": "Sean Bean", "character": "Errol Partridge", "id": 48, "credit_id": "52fe4478c3a36847f8097ef9", "cast_id": 3, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Dominic Purcell", "character": "Seamus", "id": 10862, "credit_id": "52fe4478c3a36847f8097ef5", "cast_id": 2, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 5}, {"name": "Christian Kahrmann", "character": "Officer in Charge", "id": 43454, "credit_id": "52fe4478c3a36847f8097efd", "cast_id": 4, "profile_path": "/2JvAMivK1VkjBP2BfEF1CrSUjD2.jpg", "order": 6}, {"name": "Sean Pertwee", "character": "Father", "id": 28848, "credit_id": "52fe4478c3a36847f8097f05", "cast_id": 6, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 7}, {"name": "William Fichtner", "character": "J\u00fcrgen", "id": 886, "credit_id": "52fe4478c3a36847f8097f09", "cast_id": 7, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 8}, {"name": "John Keogh", "character": "Chemist", "id": 49486, "credit_id": "52fe4478c3a36847f8097f01", "cast_id": 5, "profile_path": null, "order": 9}, {"name": "David Barrash", "character": "Evidentiary Storage Officer", "id": 52399, "credit_id": "52fe4478c3a36847f8097f11", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Dirk Martens", "character": "Gate Guard", "id": 52400, "credit_id": "52fe4478c3a36847f8097f15", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Matthew Harbour", "character": "Robbie Preston", "id": 52401, "credit_id": "52fe4478c3a36847f8097f1d", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "Maria Pia Calzone", "character": "Preston's Wife", "id": 52402, "credit_id": "52fe4478c3a36847f8097f21", "cast_id": 13, "profile_path": "/7EiPEELdXiJXJHW5YmdbdzdQ5bZ.jpg", "order": 13}, {"name": "Emily Siewert", "character": "Lisa Preston", "id": 52403, "credit_id": "52fe4478c3a36847f8097f25", "cast_id": 14, "profile_path": null, "order": 14}], "directors": [{"name": "Kurt Wimmer", "department": "Directing", "job": "Director", "credit_id": "52fe4478c3a36847f8097f2f", "profile_path": "/vO84pZBssHveIxxnh2d2sbNNCLY.jpg", "id": 13927}], "vote_average": 6.8, "runtime": 107}, "7303": {"poster_path": "/3LQ4wKp4lF41yTTRSd6QdgD6eXO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154906693, "overview": "A senatorial candidate falls for a hotel maid, thinking she is a socialite when he sees her trying on a wealthy woman's dress.", "video": false, "id": 7303, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Maid in Manhattan", "tagline": "cupid in central park...", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0252076", "adult": false, "backdrop_path": "/enycOzeSeV4BXbCSQ0ZZN8PXI0n.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Hughes Entertainment", "id": 477}, {"name": "Revolution Studios", "id": 497}, {"name": "Shoelace Productions", "id": 2225}], "release_date": "2002-12-13", "popularity": 0.500050472707918, "original_title": "Maid in Manhattan", "budget": 55000000, "cast": [{"name": "Jennifer Lopez", "character": "Marisa Ventura", "id": 16866, "credit_id": "52fe4479c3a36847f80981a1", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Christopher Marshall", "id": 5469, "credit_id": "52fe4479c3a36847f80981a5", "cast_id": 2, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Natasha Richardson", "character": "Caroline Lane", "id": 20162, "credit_id": "52fe4479c3a36847f80981b5", "cast_id": 5, "profile_path": "/eHBBsS6JLSEoLBi61nYfTs5t55u.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Jerry Siegel", "id": 2283, "credit_id": "52fe4479c3a36847f80981b9", "cast_id": 6, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Tyler Posey", "character": "Ty Ventura", "id": 53280, "credit_id": "52fe4479c3a36847f80981bd", "cast_id": 7, "profile_path": "/mkh15TUgPCq8AyEm65dno1VPxu0.jpg", "order": 4}, {"name": "Bob Hoskins", "character": "Lionel Bloch", "id": 382, "credit_id": "52fe4479c3a36847f80981c1", "cast_id": 8, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 5}, {"name": "Di Quon", "character": "Lily Kim", "id": 53281, "credit_id": "52fe4479c3a36847f80981c5", "cast_id": 9, "profile_path": "/9WAHACcLROdTOePDHi0hOUd6of0.jpg", "order": 6}, {"name": "Lisa Roberts Gillan", "character": "Cora", "id": 15109, "credit_id": "52fe4479c3a36847f80981c9", "cast_id": 10, "profile_path": "/buXwQSX1Lo802E9CNlfdf8mHPJ8.jpg", "order": 7}, {"name": "Chris Eigeman", "character": "John Bextrum", "id": 78190, "credit_id": "52fe4479c3a36847f80981d3", "cast_id": 12, "profile_path": "/gUPkpZnACB78kRqPnFuQXK0PLjf.jpg", "order": 8}, {"name": "Frances Conroy", "character": "Paula Burns", "id": 4432, "credit_id": "52fe4479c3a36847f80981d7", "cast_id": 13, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 9}], "directors": [{"name": "Wayne Wang", "department": "Directing", "job": "Director", "credit_id": "52fe4479c3a36847f80981ab", "profile_path": "/1eDrTJWdrHVcaV0CWZVi3cOCmg.jpg", "id": 39819}], "vote_average": 5.8, "runtime": 105}, "7304": {"poster_path": "/lTb9focF0HA0JLdj8WVPRHgmEiW.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After a drug-op gone bad, Joey Gazelle is put in charge of disposing the gun that shot a dirty cop. But things goes wrong for Joey after the neighbor kid stole the gun and used it to shoot his abusive father. Now Joey has to find the kid and the gun before the police and the mob find them first.", "video": false, "id": 7304, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Running Scared", "tagline": "Every bullet leaves a trail.", "vote_count": 88, "homepage": "http://www.runningscaredthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0404390", "adult": false, "backdrop_path": "/9rH03A3Twe1rDSizAKngtbvjw3g.jpg", "production_companies": [{"name": "True Grit Productions", "id": 2227}, {"name": "International Production Company", "id": 1507}, {"name": "Pierce/Williams Entertainment", "id": 18621}, {"name": "Zero Gravity Management", "id": 5357}], "release_date": "2006-02-24", "popularity": 0.384232724535562, "original_title": "Running Scared", "budget": 0, "cast": [{"name": "Paul Walker", "character": "Joey Gazelle", "id": 8167, "credit_id": "52fe4479c3a36847f8098217", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Cameron Bright", "character": "Oleg Yugorsky", "id": 52414, "credit_id": "52fe4479c3a36847f809821b", "cast_id": 2, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Teresa Gazelle", "id": 21657, "credit_id": "52fe4479c3a36847f809821f", "cast_id": 3, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Chazz Palminteri", "character": "Detective Rydell", "id": 9046, "credit_id": "52fe4479c3a36847f8098223", "cast_id": 4, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 3}, {"name": "Karel Roden", "character": "Anzor Yugorsky", "id": 10841, "credit_id": "52fe4479c3a36847f8098227", "cast_id": 5, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 4}, {"name": "Johnny Messner", "character": "Tommy 'Tombs' Perello", "id": 21798, "credit_id": "52fe4479c3a36847f809822b", "cast_id": 6, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 5}, {"name": "Ivana Mili\u010devi\u0107", "character": "Mila Yugorsky", "id": 29930, "credit_id": "52fe4479c3a36847f809822f", "cast_id": 7, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 6}, {"name": "Alex Neuberger", "character": "Nicky Gazelle", "id": 50586, "credit_id": "52fe4479c3a36847f8098233", "cast_id": 8, "profile_path": "/9cgUBGom3nBkS95og3gaaIFvbee.jpg", "order": 7}, {"name": "Michael Cudlitz", "character": "Sal \"Gummy Bear\" Franzone", "id": 52415, "credit_id": "52fe4479c3a36847f8098237", "cast_id": 9, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 8}, {"name": "Bruce Altman", "character": "Dez", "id": 27545, "credit_id": "52fe4479c3a36847f809823b", "cast_id": 10, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 9}, {"name": "Elizabeth Mitchell", "character": "Edele", "id": 31167, "credit_id": "52fe4479c3a36847f809823f", "cast_id": 11, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 10}, {"name": "Arthur J. Nascarella", "character": "Frankie Perello (as Arthur Nascarella)", "id": 28033, "credit_id": "52fe4479c3a36847f8098243", "cast_id": 12, "profile_path": "/3hWjDrHfNSS1BxJ5GeIDtxm5975.jpg", "order": 11}, {"name": "John Noble", "character": "Ivan Yugorsky", "id": 1381, "credit_id": "52fe4479c3a36847f8098247", "cast_id": 13, "profile_path": "/4A2mSS9Bea5I2bNur8ZlQZXu0H9.jpg", "order": 12}, {"name": "Idalis DeLe\u00f3n", "character": "Divina", "id": 52416, "credit_id": "52fe4479c3a36847f809824b", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "David Warshofsky", "character": "Lester the Pimp", "id": 37204, "credit_id": "52fe4479c3a36847f809824f", "cast_id": 15, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 14}], "directors": [{"name": "Wayne Kramer", "department": "Directing", "job": "Director", "credit_id": "52fe4479c3a36847f8098255", "profile_path": "/gTUX8TBqihhM9iZYsokdR083AW1.jpg", "id": 19000}], "vote_average": 6.7, "runtime": 122}, "97430": {"poster_path": "/rYnPhYmG4qyWSXRmVUlzmlA0RFg.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15608545, "overview": "In feudal China, a blacksmith who makes weapons for a small village is put in the position where he must defend himself and his fellow villagers.", "video": false, "id": 97430, "genres": [{"id": 28, "name": "Action"}], "title": "The Man with the Iron Fists", "tagline": "You can't spell Kung Fu without F and U!", "vote_count": 150, "homepage": "", "belongs_to_collection": {"backdrop_path": "/nZ5zXUwlkUZVgMHz07e43Nj9Ybs.jpg", "poster_path": "/fthbrFcFkm3YK2tend3F0zAXnvc.jpg", "id": 334356, "name": "The Man with the Iron Fists"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1258972", "adult": false, "backdrop_path": "/tMAQEmldiSl3LYri4vOkqbeZvNL.jpg", "production_companies": [{"name": "Arcade Pictures", "id": 11112}, {"name": "Iron Fists", "id": 11113}], "release_date": "2012-11-02", "popularity": 1.26698078500966, "original_title": "The Man with the Iron Fists", "budget": 15000000, "cast": [{"name": "Russell Crowe", "character": "Jack Knife", "id": 934, "credit_id": "52fe49df9251416c750d628b", "cast_id": 3, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Lucy Liu", "character": "Madame Blossom", "id": 140, "credit_id": "52fe49df9251416c750d6293", "cast_id": 5, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Jamie Chung", "character": "Lady Silk", "id": 78324, "credit_id": "52fe49df9251416c750d628f", "cast_id": 4, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 2}, {"name": "RZA", "character": "Blacksmith", "id": 150, "credit_id": "52fe49df9251416c750d62f3", "cast_id": 28, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 3}, {"name": "Zhu Zhu", "character": "Chi Chi", "id": 1077356, "credit_id": "52fe49df9251416c750d62c7", "cast_id": 15, "profile_path": "/zJ1lYPLMC53rCZfkFurmmwp9hDC.jpg", "order": 4}, {"name": "Dave Bautista", "character": "Brass Body", "id": 543530, "credit_id": "52fe49df9251416c750d62cb", "cast_id": 16, "profile_path": "/21bkLWMVWkSWy0KHrvJrfZFJ94V.jpg", "order": 5}, {"name": "Cung Le", "character": "Bronze Lion", "id": 116637, "credit_id": "52fe49df9251416c750d62cf", "cast_id": 17, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 6}, {"name": "Rick Yune", "character": "Zen Yi, The X-Blade", "id": 10883, "credit_id": "52fe49df9251416c750d62d3", "cast_id": 18, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 7}, {"name": "Gordon Liu Chia-Hui", "character": "The Abbott", "id": 240171, "credit_id": "52fe49df9251416c750d630b", "cast_id": 34, "profile_path": "/yTI36A27P9YdFbzrCwjpmEpDGbR.jpg", "order": 8}, {"name": "Mary Christina Brown", "character": "Jasmine", "id": 144503, "credit_id": "52fe49df9251416c750d62d7", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Jin Auyeung", "character": "Chan", "id": 8178, "credit_id": "52fe49df9251416c750d62db", "cast_id": 21, "profile_path": "/kQIGxSJSAcc3zK37zRCGuhxdNmL.jpg", "order": 10}, {"name": "Byron Mann", "character": "Silver Lion", "id": 57748, "credit_id": "52fe49df9251416c750d62df", "cast_id": 22, "profile_path": "/fF6ZlpZ8Jj5iiI5LQjSlaemeNe5.jpg", "order": 11}, {"name": "Andrew Ng", "character": "Senior Monk", "id": 1115351, "credit_id": "52fe49df9251416c750d62e3", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Chen Kuan-Tai", "character": "Gold Lion", "id": 88351, "credit_id": "52fe49df9251416c750d62e7", "cast_id": 25, "profile_path": "/7MLe05oLIhaG7W7iGEFS8v21QHD.jpg", "order": 13}, {"name": "Yoyao Hsueh", "character": "Copper Lion", "id": 965554, "credit_id": "52fe49df9251416c750d62eb", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Telly Liu", "character": "Iron Lion", "id": 1115352, "credit_id": "52fe49df9251416c750d62ef", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Grace Huang", "character": "Gemini Female", "id": 931264, "credit_id": "52fe49df9251416c750d62f7", "cast_id": 29, "profile_path": "/ywiPjy5TbCIuvAXhxlFzkRlPH0S.jpg", "order": 16}, {"name": "Andrew Lin", "character": "Gemini Male", "id": 130562, "credit_id": "52fe49df9251416c750d62fb", "cast_id": 30, "profile_path": "/gFWleSQOWPxFhqirKzUA5GPTasc.jpg", "order": 17}, {"name": "Pam Grier", "character": "Jane", "id": 2230, "credit_id": "52fe49df9251416c750d62ff", "cast_id": 31, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 18}, {"name": "Terence Yin", "character": "Governor", "id": 74196, "credit_id": "52fe49df9251416c750d6303", "cast_id": 32, "profile_path": "/tmkFxlLN2fLMj2qrwzicpgW9lhG.jpg", "order": 19}, {"name": "Daniel Wu", "character": "Poison Dagger", "id": 64436, "credit_id": "52fe49df9251416c750d6307", "cast_id": 33, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 20}], "directors": [{"name": "RZA", "department": "Directing", "job": "Director", "credit_id": "52fe49df9251416c750d629f", "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "id": 150}], "vote_average": 5.3, "runtime": 96}, "8427": {"poster_path": "/6mtUJKyedvQwEKXfWzJt3vtWx1M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33561137, "overview": "Based on the 1960's television series I Spy. A professional athlete (boxer - Eddie Murphy) has to help a U.S. government agent recover a missing jet.", "video": false, "id": 8427, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "I Spy", "tagline": "Get another field of view", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0297181", "adult": false, "backdrop_path": "/olO5ImpkcRykFQ5r7YZzzQ5qh1N.jpg", "production_companies": [{"name": "Colombia Pictures", "id": 4154}], "release_date": "2002-10-31", "popularity": 0.447013302800332, "original_title": "I Spy", "budget": 70000000, "cast": [{"name": "Eddie Murphy", "character": "Kelly Robinson", "id": 776, "credit_id": "52fe44a7c3a36847f80a27e1", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Alexander Scott", "id": 887, "credit_id": "52fe44a7c3a36847f80a27e5", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Rachel", "id": 10696, "credit_id": "52fe44a7c3a36847f80a27e9", "cast_id": 3, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Keith Dallas", "character": "Lunchbox", "id": 55788, "credit_id": "52fe44a8c3a36847f80a2811", "cast_id": 10, "profile_path": "/4Qhhzd4DxOhKYnhxlrrpCzb5Tio.jpg", "order": 3}, {"name": "Malcolm McDowell", "character": "Gundars", "id": 56890, "credit_id": "52fe44a8c3a36847f80a2815", "cast_id": 11, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 4}, {"name": "Tate Taylor", "character": "Lieutenant Percy", "id": 55789, "credit_id": "52fe44a8c3a36847f80a2819", "cast_id": 12, "profile_path": "/7RQEzoruBo10j78z8fH6cIEmjNK.jpg", "order": 5}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe44a7c3a36847f80a27ef", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.3, "runtime": 97}, "15512": {"poster_path": "/8x0WrDcFQDC2eoXJe6iC34wXZE8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 381509870, "overview": "When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...", "video": false, "id": 15512, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Monsters vs Aliens", "tagline": "When aliens attack, monsters fight back.", "vote_count": 470, "homepage": "http://www.monstersvsaliens.com/", "belongs_to_collection": {"backdrop_path": "/uhZJNkODuAYTtsXzKLsao3LbW5H.jpg", "poster_path": "/lDJmx7FeulDKV0d1TnvkJ9tdktp.jpg", "id": 316277, "name": "Monsters vs Aliens Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0892782", "adult": false, "backdrop_path": "/t03uCzKAcYwynMOG4iTcZ75Z23U.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2009-03-26", "popularity": 1.36912486940738, "original_title": "Monsters vs Aliens", "budget": 175000000, "cast": [{"name": "Seth Rogen", "character": "B.O.B. (voice)", "id": 19274, "credit_id": "52fe46639251416c75076a61", "cast_id": 8, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Susan Murphy / Ginormica (voice)", "id": 368, "credit_id": "52fe46639251416c75076a65", "cast_id": 9, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Hugh Laurie", "character": "Dr. Cockroach Ph.D. (voice)", "id": 41419, "credit_id": "52fe46639251416c75076a69", "cast_id": 10, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Derek Dietl (voice)", "id": 22226, "credit_id": "52fe46639251416c75076a6d", "cast_id": 11, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "General W.R. Monger (voice)", "id": 2628, "credit_id": "52fe46639251416c75076a71", "cast_id": 12, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "Rainn Wilson", "character": "Gallaxhar (voice)", "id": 11678, "credit_id": "52fe46639251416c75076a75", "cast_id": 13, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 5}, {"name": "Will Arnett", "character": "The Missing Link (voice)", "id": 21200, "credit_id": "52fe46639251416c75076a79", "cast_id": 14, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 6}, {"name": "Stephen Colbert", "character": "President Hathaway (voice)", "id": 58769, "credit_id": "52fe46639251416c75076a7d", "cast_id": 15, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 7}, {"name": "Jimmy Kimmel", "character": "Insectosaurus (voice)", "id": 78303, "credit_id": "52fe46639251416c75076a81", "cast_id": 16, "profile_path": "/aIGGgXIQcN2UlReL8I5QCJ3AxOn.jpg", "order": 8}, {"name": "Julie White", "character": "Wendy Murphy (voice)", "id": 24305, "credit_id": "52fe46639251416c75076a85", "cast_id": 17, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 9}, {"name": "Jeffrey Tambor", "character": "Carl Murphy (voice)", "id": 4175, "credit_id": "52fe46639251416c75076a89", "cast_id": 18, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 10}, {"name": "Amy Poehler", "character": "Computer (voice)", "id": 56322, "credit_id": "52fe46639251416c75076a8d", "cast_id": 19, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 11}, {"name": "Ed Helms", "character": "News Reporter (voice)", "id": 27105, "credit_id": "52fe46639251416c75076a91", "cast_id": 20, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 12}, {"name": "Ren\u00e9e Zellweger", "character": "Katie (voice)", "id": 9137, "credit_id": "52fe46639251416c75076a95", "cast_id": 21, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 13}, {"name": "Sean Bishop", "character": "Private Bullhorn / Helicopter Pilot / Advisor Ortega (voice)", "id": 64446, "credit_id": "52fe46639251416c75076a99", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Rich Dietl", "character": "Commander / Advisor Smith (voice)", "id": 936666, "credit_id": "52fe46639251416c75076a9d", "cast_id": 24, "profile_path": "/caMJRrUIYD4wHlbwu1NIqZZWGby.jpg", "order": 15}, {"name": "Stephen Kearin", "character": "Technician Bee (voice)", "id": 212439, "credit_id": "52fe46639251416c75076aa1", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Rob Letterman", "character": "Secret Service Man #1 / Lieutenant (voice)", "id": 65630, "credit_id": "52fe46639251416c75076aa5", "cast_id": 26, "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "order": 17}, {"name": "Tom McGrath", "character": "Wilson (voice)", "id": 18864, "credit_id": "52fe46639251416c75076aa9", "cast_id": 27, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 18}, {"name": "Chris Miller", "character": "Advisor Cole / Army Commander Jones (voice)", "id": 12098, "credit_id": "52fe46639251416c75076aad", "cast_id": 28, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 19}, {"name": "Mike Mitchell", "character": "Advisor Wedgie (voice)", "id": 64151, "credit_id": "52fe46639251416c75076ab1", "cast_id": 29, "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "order": 20}, {"name": "Kent Osborne", "character": "Technician Jerry (voice)", "id": 45416, "credit_id": "52fe46639251416c75076ab5", "cast_id": 30, "profile_path": "/iszbGHIPuEMa1YDIiJFST3pZfLy.jpg", "order": 21}, {"name": "Latifa Ouaou", "character": "Advisor Ouaou / Mrs. Ronson / Female Advisor #2 / Panicked Guest (voice)", "id": 936669, "credit_id": "52fe46639251416c75076ab9", "cast_id": 31, "profile_path": "/gJ0ntOXcs0RRdMAM9b5Avo5REga.jpg", "order": 22}, {"name": "Geoffrey Pomeroy", "character": "Soldier #4 / Pilot / Soldier #3 / News Technician (voice)", "id": 1077843, "credit_id": "52fe46639251416c75076abd", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "David P. Smith", "character": "Soldier #1 / Advisor Jackson (voice)", "id": 1077844, "credit_id": "52fe46639251416c75076ac1", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Lisa Stewart", "character": "Bridesmaid Candy (voice)", "id": 11652, "credit_id": "52fe46639251416c75076ac5", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Conrad Vernon", "character": "Advisor Hawk / Advisor Dither / Minister / Secret Service Man #2 / Mama Dietl (voice)", "id": 12080, "credit_id": "52fe46639251416c75076ac9", "cast_id": 35, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 26}, {"name": "John Krasinski", "character": "Cuthbert (voice)", "id": 17697, "credit_id": "52fe46639251416c75076acd", "cast_id": 36, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 27}], "directors": [{"name": "Rob Letterman", "department": "Directing", "job": "Director", "credit_id": "52fe46639251416c75076a39", "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "id": 65630}, {"name": "Conrad Vernon", "department": "Directing", "job": "Director", "credit_id": "52fe46639251416c75076a45", "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "id": 12080}], "vote_average": 5.8, "runtime": 94}, "23706": {"poster_path": "/Ap0Lx5mv2tvE3LL8U3VQfCNdziL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40105542, "overview": "The story centers on a brilliant crossword constructor (Bullock) who, after one short date, decides that a CNN cameraman (Cooper) is her true love. Because the cameraman's job takes him hither and yon, she crisscrosses the country, turning up at media events as she tries to convince him they are perfect for each other.", "video": false, "id": 23706, "genres": [{"id": 35, "name": "Comedy"}], "title": "All About Steve", "tagline": "A Comedy That Clings", "vote_count": 89, "homepage": "http://www.allaboutstevemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0881891", "adult": false, "backdrop_path": "/2pM9eYWgdFZTbTqIcGFKNk6x7y2.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Radar Pictures", "id": 14718}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Fortis Films", "id": 4258}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2009-09-04", "popularity": 0.365171703547665, "original_title": "All About Steve", "budget": 15000000, "cast": [{"name": "Sandra Bullock", "character": "Sandra Horowitz", "id": 18277, "credit_id": "52fe4473c3a368484e023c01", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Thomas Haden Church", "character": "Hartman", "id": 19159, "credit_id": "52fe4473c3a368484e023c05", "cast_id": 4, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 1}, {"name": "Bradley Cooper", "character": "Steve", "id": 51329, "credit_id": "52fe4473c3a368484e023c09", "cast_id": 5, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 2}, {"name": "Ken Jeong", "character": "Angus", "id": 83586, "credit_id": "52fe4473c3a368484e023c0d", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 3}, {"name": "DJ Qualls", "character": "Howard", "id": 132078, "credit_id": "52fe4473c3a368484e023c65", "cast_id": 21, "profile_path": "/foe0XuHIgVHsnrMBYlgYtsR3Z2V.jpg", "order": 4}, {"name": "Howard Hesseman", "character": "Mr. Horowitz", "id": 35516, "credit_id": "52fe4473c3a368484e023c69", "cast_id": 22, "profile_path": "/q0glWtVUVnPoB3AoAMe8SqMRJ5e.jpg", "order": 5}, {"name": "Keith David", "character": "Corbitt", "id": 65827, "credit_id": "52fe4473c3a368484e023c6d", "cast_id": 23, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 6}, {"name": "Beth Grant", "character": "Mrs. Horowitz", "id": 5151, "credit_id": "52fe4473c3a368484e023c71", "cast_id": 24, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Katy Mixon", "character": "Elizabeth", "id": 59450, "credit_id": "52fe4473c3a368484e023c75", "cast_id": 25, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 8}, {"name": "M.C. Gainey", "character": "Norm the Truck Driver", "id": 22132, "credit_id": "52fe4473c3a368484e023c79", "cast_id": 26, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 9}, {"name": "Holmes Osborne", "character": "Soloman", "id": 1578, "credit_id": "52fe4473c3a368484e023c7d", "cast_id": 27, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 10}, {"name": "Delaney Hamilton", "character": "Little Deaf Girl", "id": 967621, "credit_id": "52fe4473c3a368484e023c81", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Jason Jones", "character": "Vasquez", "id": 185805, "credit_id": "52fe4473c3a368484e023c85", "cast_id": 29, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 12}, {"name": "Carlos G\u00f3mez", "character": "Rescue Supervisor", "id": 115874, "credit_id": "52fe4473c3a368484e023c89", "cast_id": 30, "profile_path": "/nBxwoMv1zrhNXyEjYXbcdmAdmF0.jpg", "order": 13}, {"name": "George Sharperson", "character": "Rescuer", "id": 157058, "credit_id": "52fe4473c3a368484e023c8d", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Luenell", "character": "Protestor Lydia", "id": 6735, "credit_id": "52fe4473c3a368484e023c91", "cast_id": 32, "profile_path": "/qU79UzQhwIgmTCi4HAMj5NOCT4J.jpg", "order": 15}], "directors": [{"name": "Phil Traill", "department": "Directing", "job": "Director", "credit_id": "52fe4473c3a368484e023bfd", "profile_path": null, "id": 78562}], "vote_average": 5.1, "runtime": 99}, "7326": {"poster_path": "/eE64N6PYCSRW2mtQucfK2av5Wk2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231411584, "overview": "A young girl named Juno gets herself pregnant and tries to stand on her own. She soon learns a few lessons about being grown up.", "video": false, "id": 7326, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Juno", "tagline": "A comedy about growing up... and the bumps along the way.", "vote_count": 618, "homepage": "http://www.foxsearchlight.com/juno/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0467406", "adult": false, "backdrop_path": "/xfcb5Cq5pYrGcAxGjFQqKCPVOK3.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2007-12-05", "popularity": 1.50294578091807, "original_title": "Juno", "budget": 7500000, "cast": [{"name": "Ellen Page", "character": "Juno MacGuff", "id": 27578, "credit_id": "52fe4479c3a36847f80984c7", "cast_id": 23, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 0}, {"name": "Michael Cera", "character": "Paulie Bleeker", "id": 39995, "credit_id": "52fe4479c3a36847f80984cb", "cast_id": 24, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 1}, {"name": "Jennifer Garner", "character": "Vanessa Loring", "id": 9278, "credit_id": "52fe4479c3a36847f80984cf", "cast_id": 25, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 2}, {"name": "Jason Bateman", "character": "Mark Loring", "id": 23532, "credit_id": "52fe4479c3a36847f80984d3", "cast_id": 26, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 3}, {"name": "Allison Janney", "character": "Bren MacGuff", "id": 19, "credit_id": "52fe4479c3a36847f80984d7", "cast_id": 27, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "Mac MacGuff", "id": 18999, "credit_id": "52fe4479c3a36847f80984db", "cast_id": 28, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "Olivia Thirlby", "character": "Leah", "id": 52442, "credit_id": "52fe4479c3a36847f80984df", "cast_id": 29, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 6}, {"name": "Eileen Pedde", "character": "Gerta Rauss", "id": 52457, "credit_id": "52fe4479c3a36847f80984e3", "cast_id": 30, "profile_path": "/pPrvpJqNN0teedsj1A8f93KUmxk.jpg", "order": 7}, {"name": "Rainn Wilson", "character": "Rollo", "id": 11678, "credit_id": "52fe4479c3a36847f80984e7", "cast_id": 31, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 8}, {"name": "Daniel Clark", "character": "Steve Rendazo", "id": 52458, "credit_id": "52fe4479c3a36847f80984eb", "cast_id": 32, "profile_path": "/lF9xP1scm9ZslTPVrhIPRwy6rjy.jpg", "order": 9}, {"name": "Candice Accola", "character": "Girl Lab Partner", "id": 85144, "credit_id": "52fe4479c3a36847f8098501", "cast_id": 36, "profile_path": "/sKcLZRBXWXym0e0u2wXFfembWnl.jpg", "order": 10}, {"name": "Aman Johal", "character": "Vijay", "id": 85616, "credit_id": "52fe4479c3a36847f8098505", "cast_id": 37, "profile_path": "/saVZBiBHJZUzx3SJZNhLmzsEvQp.jpg", "order": 11}, {"name": "Eve Harlow", "character": "Tough Girl", "id": 209723, "credit_id": "52fe4479c3a36847f8098509", "cast_id": 38, "profile_path": "/h3ZqWXWD6EVEzHIm6e9QsNoRL6R.jpg", "order": 12}, {"name": "Valerie Tian", "character": "Su-Chin", "id": 82791, "credit_id": "52fe4479c3a36847f809850d", "cast_id": 39, "profile_path": "/bUlkSkKZqzKvRBKEu3nqj31t63C.jpg", "order": 13}, {"name": "Emily Perkins", "character": "Punk Receptionist", "id": 64914, "credit_id": "52fe4479c3a36847f8098511", "cast_id": 40, "profile_path": "/z9XbUJ83nKoHjvdvbzrQFrQVx7R.jpg", "order": 14}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4479c3a36847f8098457", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.6, "runtime": 96}, "48289": {"poster_path": "/mt7PIAIQg2hANBwfCKtDYjutYP1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45636368, "overview": "Rachel Singer is a former Mossad agent who endeavored to capture and bring to trial a notorious Nazi war criminal-the Surgeon of Birkenau-in a secret Israeli mission that ended with his death on the streets of East Berlin. Now, 30 years later, a man claiming to be the doctor has surfaced, and Rachel must go back to Eastern Europe to uncover the truth. Overwhelmed by haunting memories of her younger self and her two fellow agents, the still-celebrated heroine must relive the trauma of those events and confront the debt she has incurred.", "video": false, "id": 48289, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Debt", "tagline": "The secret is only the beginning", "vote_count": 69, "homepage": "http://www.debt-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1226753", "adult": false, "backdrop_path": "/b7jIi5nqxYrJbUnr6OQrR2YPdZf.jpg", "production_companies": [{"name": "Pioneer Pictures", "id": 9217}, {"name": "Miramax Films", "id": 14}, {"name": "Marv Films", "id": 5374}], "release_date": "2010-09-04", "popularity": 0.789723218089268, "original_title": "The Debt", "budget": 20000000, "cast": [{"name": "Helen Mirren", "character": "Rachel Singer", "id": 15735, "credit_id": "52fe475dc3a36847f8131cb3", "cast_id": 6, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 0}, {"name": "Sam Worthington", "character": "David (Young)", "id": 65731, "credit_id": "52fe475dc3a36847f8131cb7", "cast_id": 7, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Jessica Chastain", "character": "Rachel (Young)", "id": 83002, "credit_id": "52fe475ec3a36847f8131ccb", "cast_id": 11, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Stefan", "id": 207, "credit_id": "52fe475ec3a36847f8131cd3", "cast_id": 13, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Ciar\u00e1n Hinds", "character": "David", "id": 8785, "credit_id": "52fe475ec3a36847f8131cbb", "cast_id": 8, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 4}, {"name": "Marton Csokas", "character": "Stefan (Young)", "id": 20982, "credit_id": "52fe475ec3a36847f8131ccf", "cast_id": 12, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 5}, {"name": "Jesper Christensen", "character": "Vogel", "id": 2244, "credit_id": "52fe475ec3a36847f8131cd7", "cast_id": 14, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 6}, {"name": "Adar Beck", "character": "Politicians Wife", "id": 105235, "credit_id": "52fe475ec3a36847f8131cdb", "cast_id": 15, "profile_path": "/rGUVixlx2rUz1xbmElZ4nNEFKuR.jpg", "order": 7}, {"name": "Romi Aboulafia", "character": "Sarah", "id": 140196, "credit_id": "52fe475ec3a36847f8131cdf", "cast_id": 16, "profile_path": "/hrzhtwOcfIBzru9HjicRVezbdsJ.jpg", "order": 8}], "directors": [{"name": "John Madden", "department": "Directing", "job": "Director", "credit_id": "52fe475dc3a36847f8131c9d", "profile_path": "/8HPERxuUmp44PJcwbweQfICo149.jpg", "id": 18844}], "vote_average": 6.2, "runtime": 113}, "51739": {"poster_path": "/A4w9oSNQUwtkaucy3K7LbSngKrk.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 148202743, "overview": "14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items \"borrowed\" from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.", "video": false, "id": 51739, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Secret World of Arrietty", "tagline": "Do not be seen by humans. That's been the law of children of the underfloor.", "vote_count": 214, "homepage": "http://disney.go.com/official-sites/arrietty/index", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1568921", "adult": false, "backdrop_path": "/7UfW01brClXNFNNMCwjbuISbVEO.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Toho Company", "id": 882}, {"name": "Dentsu", "id": 6452}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Buena Vista Home Entertainment", "id": 11200}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi Shoji", "id": 20191}, {"name": "Nippon Television Network (NTV)", "id": 20192}, {"name": "Walt Disney Company", "id": 20193}], "release_date": "2010-07-16", "popularity": 1.11105538251871, "original_title": "Kari-gurashi no Arietti", "budget": 37000000, "cast": [{"name": "Mirai Shida", "character": "Arrietty", "id": 227611, "credit_id": "52fe4801c3a36847f8153cc1", "cast_id": 1003, "profile_path": "/pCS5YQSbXsLmxdPVoD8ngyAMkNl.jpg", "order": 0}, {"name": "Ryunosuke Kamiki", "character": "Sh\u00f4", "id": 225730, "credit_id": "52fe4801c3a36847f8153cc5", "cast_id": 1004, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 1}, {"name": "Tomokazu Miura", "character": "Pod", "id": 33134, "credit_id": "52fe4801c3a36847f8153cc9", "cast_id": 1005, "profile_path": "/lAO4PsJOPMYH08KIe8FEWaFtWyP.jpg", "order": 2}, {"name": "Tatsuya Fujiwara", "character": "Spiller", "id": 31078, "credit_id": "52fe4801c3a36847f8153ccd", "cast_id": 1006, "profile_path": "/xPFYGeg1tE4e21AnQGuwbbHNXgB.jpg", "order": 3}, {"name": "Shinobu \u014ctake", "character": "Homily", "id": 548756, "credit_id": "52fe4801c3a36847f8153ce3", "cast_id": 1010, "profile_path": "/fYFNo1guAkAXHcRdvnOZwoeo9YF.jpg", "order": 4}, {"name": "Keiko Takeshita", "character": "Sadako Maki", "id": 548758, "credit_id": "52fe4801c3a36847f8153ce7", "cast_id": 1011, "profile_path": null, "order": 5}, {"name": "Kirin Kiki", "character": "Haru", "id": 43663, "credit_id": "52fe4801c3a36847f8153ceb", "cast_id": 1012, "profile_path": "/coAuKp7a67X44gyqJwVYTK4urVk.jpg", "order": 6}, {"name": "Saoirse Ronan", "character": "Arrietty (voice: UK version)", "id": 36592, "credit_id": "52fe4801c3a36847f8153cef", "cast_id": 1013, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 7}, {"name": "Tom Holland", "character": "Sh\u00f4 (voice: UK version)", "id": 1136406, "credit_id": "52fe4802c3a36847f8153cf3", "cast_id": 1014, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 8}, {"name": "Luke Allen-Gale", "character": "Spiller (voice: UK version)", "id": 523533, "credit_id": "52fe4802c3a36847f8153cf7", "cast_id": 1015, "profile_path": "/yBYdPWM7AXEVj6XP0KfJ1uk4ZQa.jpg", "order": 9}, {"name": "Olivia Colman", "character": "Homily (voice: UK version)", "id": 39187, "credit_id": "52fe4802c3a36847f8153cfb", "cast_id": 1016, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 10}, {"name": "Mark Strong", "character": "Pod (voice: UK version)", "id": 2983, "credit_id": "52fe4802c3a36847f8153cff", "cast_id": 1017, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 11}, {"name": "Phyllida Law", "character": "Sadako (voice: UK version)", "id": 17787, "credit_id": "52fe4802c3a36847f8153d03", "cast_id": 1018, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 12}, {"name": "Geraldine McEwan", "character": "Haru (voice: UK version)", "id": 8326, "credit_id": "52fe4802c3a36847f8153d07", "cast_id": 1019, "profile_path": "/99RxYdI81YBS6sZO3AW6rtYlmfH.jpg", "order": 13}, {"name": "Bridgit Mendler", "character": "Arrietty (US version)", "id": 85176, "credit_id": "52fe4802c3a36847f8153d0b", "cast_id": 1020, "profile_path": "/ckfgebXa5RH6gniWiESgwDKEvIx.jpg", "order": 14}, {"name": "David Henrie", "character": "Shawn (US version)", "id": 95136, "credit_id": "52fe4802c3a36847f8153d0f", "cast_id": 1021, "profile_path": "/yzD9H0890KvgsrSVY2dD1OU1gDS.jpg", "order": 15}, {"name": "Amy Poehler", "character": "Homily (US version)", "id": 56322, "credit_id": "52fe4802c3a36847f8153d13", "cast_id": 1022, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 16}, {"name": "Will Arnett", "character": "Pod (US version)", "id": 21200, "credit_id": "52fe4802c3a36847f8153d17", "cast_id": 1023, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 17}, {"name": "Mois\u00e9s Arias", "character": "Spiller (US version)", "id": 57412, "credit_id": "52fe4802c3a36847f8153d1b", "cast_id": 1024, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 18}, {"name": "Carol Burnett", "character": "Hara (US version)", "id": 14837, "credit_id": "52fe4802c3a36847f8153d1f", "cast_id": 1025, "profile_path": "/uUN23A8WtaLcItllwFADuyqF8Ci.jpg", "order": 19}], "directors": [{"name": "Hiromasa Yonebayashi", "department": "Directing", "job": "Director", "credit_id": "52fe4801c3a36847f8153cb1", "profile_path": "/wmHPe8gTwjXYfnIBmMVEpA6DVyz.jpg", "id": 144476}], "vote_average": 7.0, "runtime": 94}, "64678": {"poster_path": "/uuf5YRJ46zktEXmxAW99ElpYhcK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1406224, "overview": "George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.", "video": false, "id": 64678, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Art of Getting By", "tagline": "The toughest lesson is love.", "vote_count": 86, "homepage": "http://www.foxsearchlight.com/theartofgettingby/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1645080", "adult": false, "backdrop_path": "/hJxUb5YljPWhoJPoQyctlMxxNS4.jpg", "production_companies": [{"name": "Goldcrest Films International", "id": 500}, {"name": "Atlantic Pictures", "id": 5387}, {"name": "Gigi Productions", "id": 7499}], "release_date": "2011-06-17", "popularity": 0.444097230420349, "original_title": "The Art of Getting By", "budget": 0, "cast": [{"name": "Freddie Highmore", "character": "George Zinavoy", "id": 1281, "credit_id": "52fe46e3c3a368484e0a96cd", "cast_id": 2, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Emma Roberts", "character": "Sally Howe", "id": 34847, "credit_id": "52fe46e3c3a368484e0a96d1", "cast_id": 3, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 1}, {"name": "Michael Angarano", "character": "Dustin", "id": 11665, "credit_id": "52fe46e3c3a368484e0a96d5", "cast_id": 4, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 2}, {"name": "Elizabeth Reaser", "character": "Charlotte Howe", "id": 53755, "credit_id": "52fe46e3c3a368484e0a96d9", "cast_id": 5, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 3}, {"name": "Alicia Silverstone", "character": "Ms. Herman", "id": 5588, "credit_id": "54f3d38e925141799d000d01", "cast_id": 14, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 4}], "directors": [{"name": "Gavin Wiesen", "department": "Directing", "job": "Director", "credit_id": "52fe46e3c3a368484e0a96c9", "profile_path": "/b6rlzYdkS5SBmfFRT1mxb3PCzJt.jpg", "id": 119417}], "vote_average": 6.3, "runtime": 83}, "57201": {"poster_path": "/b4vil5ueYJNBNypHmo1tpuevh4z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89289910, "overview": "The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.", "video": false, "id": 57201, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "The Lone Ranger", "tagline": "The Legend Returns", "vote_count": 944, "homepage": "http://disney.go.com/the-lone-ranger/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1210819", "adult": false, "backdrop_path": "/sgcgfrlOOB6lVXbfl75YTszF4jI.jpg", "production_companies": [{"name": "Silver Bullet Productions (II)", "id": 37380}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Blind Wink Productions", "id": 37381}, {"name": "Infinitum Nihil", "id": 2691}, {"name": "Classic Media", "id": 37382}], "release_date": "2013-07-03", "popularity": 1.06065984509728, "original_title": "The Lone Ranger", "budget": 255000000, "cast": [{"name": "Johnny Depp", "character": "Tonto", "id": 85, "credit_id": "52fe4928c3a36847f818be99", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Armie Hammer", "character": "John Reid / The Lone Ranger", "id": 53807, "credit_id": "52fe4928c3a36847f818be9d", "cast_id": 5, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 1}, {"name": "William Fichtner", "character": "Butch Cavendish", "id": 886, "credit_id": "52fe4928c3a36847f818bead", "cast_id": 9, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 2}, {"name": "James Badge Dale", "character": "Dan Reid", "id": 18473, "credit_id": "52fe4928c3a36847f818bea1", "cast_id": 6, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 3}, {"name": "Tom Wilkinson", "character": "Latham Cole", "id": 207, "credit_id": "52fe4928c3a36847f818bea5", "cast_id": 7, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 4}, {"name": "Ruth Wilson", "character": "Rebecca Reid", "id": 47720, "credit_id": "52fe4928c3a36847f818bebd", "cast_id": 13, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 5}, {"name": "Helena Bonham Carter", "character": "Red", "id": 1283, "credit_id": "52fe4928c3a36847f818bea9", "cast_id": 8, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 6}, {"name": "Barry Pepper", "character": "Captain Jay Fuller", "id": 12834, "credit_id": "52fe4928c3a36847f818beb1", "cast_id": 10, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 7}, {"name": "James Frain", "character": "Barret", "id": 22063, "credit_id": "52fe4928c3a36847f818beb5", "cast_id": 11, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 8}, {"name": "Mason Cook", "character": "Will", "id": 583040, "credit_id": "52fe4928c3a36847f818beb9", "cast_id": 12, "profile_path": "/19XPc3ggqJSsh5k7oYyncWGrxVz.jpg", "order": 9}, {"name": "Matt O'Leary", "character": "Skinny", "id": 71467, "credit_id": "52fe4928c3a36847f818bec1", "cast_id": 14, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 10}, {"name": "Leon Rippy", "character": "Collins", "id": 15374, "credit_id": "52fe4928c3a36847f818bec5", "cast_id": 15, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 11}, {"name": "Harry Treadaway", "character": "Frank", "id": 45051, "credit_id": "52fe4928c3a36847f818bec9", "cast_id": 17, "profile_path": "/bteYHINCsRoIN9IhI1HbLd9TxTw.jpg", "order": 12}, {"name": "Damon Herriman", "character": "Ray", "id": 62752, "credit_id": "52fe4928c3a36847f818becd", "cast_id": 18, "profile_path": "/dbf7CnLNuMl1sCScOD7MllimLMV.jpg", "order": 13}, {"name": "W. Earl Brown", "character": "Stache", "id": 6951, "credit_id": "52fe4928c3a36847f818bed1", "cast_id": 19, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 14}, {"name": "Matthew Page", "character": "Soldier #3", "id": 1094319, "credit_id": "52fe4928c3a36847f818bee7", "cast_id": 25, "profile_path": "/nTAAP1s4Y0e6bW1Vyq9MqzCG95y.jpg", "order": 15}, {"name": "Nick W. Nicholson", "character": "Saloon Guy (uncredited)", "id": 1429470, "credit_id": "54e7e9ac925141117c000454", "cast_id": 42, "profile_path": null, "order": 16}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4928c3a36847f818be95", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.0, "runtime": 149}, "113833": {"poster_path": "/fIf4nLpWHK8BsbH76fPgMbLSjuU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of the onset of the HIV-AIDS crisis in New York City in the early 1980s, taking an unflinching look at the nation's sexual politics as gay activists and their allies in the medical community fight to expose the truth about the burgeoning epidemic to a city and nation in denial.", "video": false, "id": 113833, "genres": [{"id": 18, "name": "Drama"}], "title": "The Normal Heart", "tagline": "To win a war, You have to start one.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1684226", "adult": false, "backdrop_path": "/i5r9aTDKo1y6paUX1PHsPhZstZk.jpg", "production_companies": [{"name": "Twentieth Century Fox Television", "id": 24245}, {"name": "HBO Films", "id": 7429}, {"name": "Plan B Entertainment", "id": 81}, {"name": "Ryan Murphy Productions", "id": 19328}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-05-25", "popularity": 1.11339625588563, "original_title": "The Normal Heart", "budget": 0, "cast": [{"name": "Mark Ruffalo", "character": "Ned Weeks", "id": 103, "credit_id": "52fe4b3fc3a36847f81f9f6d", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 0}, {"name": "Jim Parsons", "character": "Tommy Boatwright", "id": 5374, "credit_id": "52fe4b3fc3a36847f81f9f71", "cast_id": 4, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 1}, {"name": "Matt Bomer", "character": "Felix Turner", "id": 66743, "credit_id": "52fe4b3fc3a36847f81f9f75", "cast_id": 5, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 2}, {"name": "Julia Roberts", "character": "Emma Brookner", "id": 1204, "credit_id": "52fe4b3fc3a36847f81f9f79", "cast_id": 6, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 3}, {"name": "Jonathan Groff", "character": "Craig", "id": 221611, "credit_id": "52fe4b3fc3a36847f81f9f8d", "cast_id": 10, "profile_path": "/iGQSz9GIWQ88jS9OZeF78wVwXtR.jpg", "order": 5}, {"name": "Taylor Kitsch", "character": "Bruce Niles", "id": 60900, "credit_id": "538212f50e0a2624b400a8df", "cast_id": 11, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 6}, {"name": "Alfred Molina", "character": "Ben Weeks", "id": 658, "credit_id": "538213020e0a2624cb00a386", "cast_id": 12, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 7}, {"name": "Denis O'Hare", "character": "Hiram Keebler", "id": 81681, "credit_id": "538213120e0a26588c005f93", "cast_id": 13, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 8}, {"name": "Finn Wittrock", "character": "Albert", "id": 168877, "credit_id": "5382131c0e0a2624cb00a38a", "cast_id": 14, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 9}, {"name": "Remy Auberjonois", "character": "Examining Doctor", "id": 172529, "credit_id": "538213370e0a2624b400a8e9", "cast_id": 15, "profile_path": "/3v1Rx49zP4LTMu8pH7ElN8gj6QA.jpg", "order": 10}, {"name": "Joe Zaso", "character": "Ernesto", "id": 98206, "credit_id": "538388c60e0a2624cb00cb4e", "cast_id": 16, "profile_path": "/e0VmMPEylktZQTUuHbPu9WBpZD5.jpg", "order": 11}, {"name": "BD Wong", "character": "Buzzy", "id": 14592, "credit_id": "53c2ff5c0e0a26157600bb77", "cast_id": 23, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 18}, {"name": "Danielle Ferland", "character": "Estelle", "id": 1161048, "credit_id": "53c2ffa50e0a26157900b857", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Corey Stoll", "character": "John Bruno", "id": 74541, "credit_id": "53c2ffba0e0a26158900ba27", "cast_id": 25, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 20}, {"name": "Joe Mantello", "character": "Mickey Marcus", "id": 171000, "credit_id": "54edd3319251413ae80015c4", "cast_id": 26, "profile_path": null, "order": 21}], "directors": [{"name": "Ryan Murphy", "department": "Directing", "job": "Director", "credit_id": "52fe4b3fc3a36847f81f9f63", "profile_path": "/2NjTHDZmJ1ApUfkGWDVPDeGWPPx.jpg", "id": 52779}], "vote_average": 7.8, "runtime": 133}, "64682": {"poster_path": "/7hNTazFLpoaDMxXArIz0Td28LQe.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.", "video": false, "id": 64682, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Great Gatsby", "tagline": "Reserving judgments is a matter of infinite hope. ...I come to the admission that it has a limit.", "vote_count": 1168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1343092", "adult": false, "backdrop_path": "/w8RV2fu8eja5izgTnhaoL2uokqu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Spectrum Films", "id": 14604}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Bazmark Films", "id": 240}, {"name": "A&E Television Networks", "id": 11858}], "release_date": "2013-05-10", "popularity": 2.70383317733054, "original_title": "The Great Gatsby", "budget": 120000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Jay Gatsby", "id": 6193, "credit_id": "52fe46e3c3a368484e0a9783", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Tobey Maguire", "character": "Nick Carraway", "id": 2219, "credit_id": "52fe46e3c3a368484e0a978f", "cast_id": 5, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 1}, {"name": "Carey Mulligan", "character": "Daisy Buchanan", "id": 36662, "credit_id": "52fe46e3c3a368484e0a9787", "cast_id": 3, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Tom Buchanan", "id": 33192, "credit_id": "52fe46e3c3a368484e0a979b", "cast_id": 8, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Elizabeth Debicki", "character": "Jordan Baker", "id": 1133349, "credit_id": "52fe46e3c3a368484e0a9793", "cast_id": 6, "profile_path": "/91YdxLkmQMFuCtj8bEK62fOwJx8.jpg", "order": 4}, {"name": "Isla Fisher", "character": "Myrtle Wilson", "id": 52848, "credit_id": "52fe46e3c3a368484e0a978b", "cast_id": 4, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 5}, {"name": "Jason Clarke", "character": "George Wilson", "id": 76512, "credit_id": "52fe46e3c3a368484e0a9797", "cast_id": 7, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 6}, {"name": "Amitabh Bachchan", "character": "Meyer Wolfsheim", "id": 35780, "credit_id": "52fe46e3c3a368484e0a97e5", "cast_id": 22, "profile_path": "/9daoHX8vQrrk2oLQQdrvRV0UlE6.jpg", "order": 7}, {"name": "Callan McAuliffe", "character": "Teen Jay Gatsby", "id": 236851, "credit_id": "52fe46e3c3a368484e0a97b1", "cast_id": 13, "profile_path": "/a4oVlU0LMJjwOjP5a1jHol1Nv5l.jpg", "order": 8}, {"name": "Adelaide Clemens", "character": "Catherine", "id": 205474, "credit_id": "52fe46e3c3a368484e0a97e9", "cast_id": 23, "profile_path": "/mgOHGacftimR5qBXVzaQoMyVoTX.jpg", "order": 9}, {"name": "Steve Bisley", "character": "Dan Cody", "id": 45211, "credit_id": "52fe46e3c3a368484e0a97ed", "cast_id": 24, "profile_path": "/xvGH1V1zAmbyI2aYWoeHIbu0dsU.jpg", "order": 10}, {"name": "Richard Carter", "character": "Herzog", "id": 44838, "credit_id": "52fe46e3c3a368484e0a97f1", "cast_id": 25, "profile_path": "/8Qo8Gp5zwKM82MK0Gh6rF1ullrx.jpg", "order": 11}, {"name": "Vince Colosimo", "character": "Michaelis", "id": 77496, "credit_id": "52fe46e3c3a368484e0a97f5", "cast_id": 26, "profile_path": "/q7sQhwMo5By0WIh8qpwHnzznSzf.jpg", "order": 12}, {"name": "Max Cullen", "character": "Owl Eyes", "id": 38665, "credit_id": "52fe46e3c3a368484e0a97f9", "cast_id": 27, "profile_path": "/ceHlZnHwEDyMZWNT5PhuJJVPZPZ.jpg", "order": 13}, {"name": "Mal Day", "character": "The Boss-Probity Trust", "id": 1272936, "credit_id": "52fe46e3c3a368484e0a97fd", "cast_id": 28, "profile_path": "/mefuqFRe9miStZwMHkgt9o2WZA2.jpg", "order": 14}, {"name": "Charlize Skinner", "character": "Pammy", "id": 1272937, "credit_id": "52fe46e3c3a368484e0a9801", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Brendan Maclean", "character": "Klipspringer", "id": 1272942, "credit_id": "52fe46e3c3a368484e0a9815", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Kate Mulvany", "character": "Mrs. McKee", "id": 123884, "credit_id": "52fe46e3c3a368484e0a9819", "cast_id": 35, "profile_path": "/qGpy9gYMC5NvU1iZMllHRKRaKWh.jpg", "order": 17}, {"name": "Kahlia Greksa", "character": "The Twins", "id": 1433766, "credit_id": "54f32eea9251416b3800409b", "cast_id": 44, "profile_path": "/fVzATX9UeuPmCBLQlgCeZMbpHhY.jpg", "order": 18}, {"name": "Garrett William Fountain", "character": "Barman", "id": 1272938, "credit_id": "52fe46e3c3a368484e0a9805", "cast_id": 30, "profile_path": "/gzH1t4RKKoV7wt6cCy2AxtV1H2q.jpg", "order": 19}, {"name": "David Furlong", "character": "Walter Chase", "id": 1272939, "credit_id": "52fe46e3c3a368484e0a9809", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Danniel Gill", "character": "Police Commissioner", "id": 1272940, "credit_id": "52fe46e3c3a368484e0a980d", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Iota", "character": "Trimalchio the Orchestra Leader", "id": 1272941, "credit_id": "52fe46e3c3a368484e0a9811", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Barry Otto", "character": "Benny McClenahan", "id": 150536, "credit_id": "52fe46e3c3a368484e0a981d", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "John O'Connell", "character": "Newton Orchid", "id": 1243767, "credit_id": "52fe46e3c3a368484e0a9821", "cast_id": 37, "profile_path": null, "order": 24}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe46e3c3a368484e0a977f", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 7.1, "runtime": 143}, "7340": {"poster_path": "/A5qwZ3IGWglRZtiLOOwwLWYqVWk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33800000, "overview": "Carrie may be ostracized, but the shy teen has the ability to move objects with her mind. So when the high school \"in crowd\" torments her with a sick joke at the prom, she lashes out with devastating -- and deadly -- power.", "video": false, "id": 7340, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Carrie", "tagline": "If you\u2019ve got a taste for terror, take Carrie to the prom.", "vote_count": 174, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zlMsVqzvjVEioMLA7YNFOSV0OTj.jpg", "poster_path": "/5atZnoMxfDtEJbc1XpdYJLRLsRT.jpg", "id": 257053, "name": "Carrie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074285", "adult": false, "backdrop_path": "/4eGiNZtn6hMJvXfXuhoGmlJnk6e.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1976-11-03", "popularity": 0.973046531768639, "original_title": "Carrie", "budget": 1800000, "cast": [{"name": "Sissy Spacek", "character": "Carrie White", "id": 5606, "credit_id": "52fe447ac3a36847f80985bd", "cast_id": 1, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 0}, {"name": "Piper Laurie", "character": "Margaret White", "id": 6721, "credit_id": "52fe447ac3a36847f80985c1", "cast_id": 2, "profile_path": "/eKjVK5MQ5RK9XuVLaCC2oYACmbK.jpg", "order": 1}, {"name": "Amy Irving", "character": "Sue Snell", "id": 27563, "credit_id": "52fe447ac3a36847f80985c5", "cast_id": 3, "profile_path": "/7bKYl70P5UmpaoNnlvZD82FLdR.jpg", "order": 2}, {"name": "William Katt", "character": "Tommy Ross", "id": 45415, "credit_id": "52fe447ac3a36847f80985c9", "cast_id": 4, "profile_path": "/8zgHplikymFmzQhOuwYhin6WJv6.jpg", "order": 3}, {"name": "Betty Buckley", "character": "Miss Collins", "id": 52462, "credit_id": "52fe447ac3a36847f80985cd", "cast_id": 5, "profile_path": "/5lt3xmuJOBpAiOyboKJaAurmlCb.jpg", "order": 4}, {"name": "Nancy Allen", "character": "Christine Hargenson", "id": 44038, "credit_id": "52fe447ac3a36847f80985d1", "cast_id": 6, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 5}, {"name": "John Travolta", "character": "Billy Nolan", "id": 8891, "credit_id": "52fe447ac3a36847f80985d5", "cast_id": 7, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 6}, {"name": "P.J. Soles", "character": "Norma Watson", "id": 15500, "credit_id": "52fe447ac3a36847f80985d9", "cast_id": 8, "profile_path": "/rzPjxFxrTJYtarrBPCw4E21BHBq.jpg", "order": 7}, {"name": "Priscilla Pointer", "character": "Mrs. Eleanor Snell", "id": 11793, "credit_id": "52fe447ac3a36847f80985dd", "cast_id": 9, "profile_path": "/rmT7Qje6YBG180d1hlY6zQpZmfv.jpg", "order": 8}, {"name": "Sydney Lassick", "character": "Mr. Fromm", "id": 7085, "credit_id": "52fe447ac3a36847f80985e1", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Stefan Gierasch", "character": "Mr. Henry Morton", "id": 52463, "credit_id": "52fe447ac3a36847f80985e5", "cast_id": 11, "profile_path": "/y4w2yNJYdAcaKddQyCYm4qtmLqO.jpg", "order": 10}, {"name": "Michael Talbott", "character": "Freddy DeLois", "id": 16557, "credit_id": "52fe447ac3a36847f80985e9", "cast_id": 12, "profile_path": "/yOlbGF2VDQHZeESRo0gQq0BfU1B.jpg", "order": 11}, {"name": "Doug Cox", "character": "The Beak", "id": 52464, "credit_id": "52fe447ac3a36847f80985ed", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Harry Gold", "character": "George Dawson", "id": 52465, "credit_id": "52fe447ac3a36847f80985f1", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Nichelle North", "character": "Frieda Jason", "id": 52466, "credit_id": "52fe447ac3a36847f80985f5", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Cindy Daly", "character": "Cora Wilson", "id": 52467, "credit_id": "52fe447ac3a36847f80985f9", "cast_id": 16, "profile_path": "/guuo8IvbWBrdGMCWr959tlDE8EL.jpg", "order": 15}, {"name": "Deirdre Berthrong", "character": "Rhonda Wilson", "id": 52468, "credit_id": "52fe447ac3a36847f80985fd", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Anson Downes", "character": "Ernest Peterson", "id": 52469, "credit_id": "52fe447ac3a36847f8098601", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Rory Stevens", "character": "Kenny", "id": 52470, "credit_id": "52fe447ac3a36847f8098605", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Edie McClurg", "character": "Helen Shyres", "id": 3202, "credit_id": "52fe447ac3a36847f8098609", "cast_id": 20, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 19}, {"name": "Cameron De Palma", "character": "Bobby Erbeter, the Boy on the Bike", "id": 52471, "credit_id": "52fe447ac3a36847f809860d", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Mike Towers", "character": "Vance or Towers", "id": 52472, "credit_id": "52fe447ac3a36847f8098611", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Glen Vance", "character": "Vance or Towers", "id": 52473, "credit_id": "52fe447ac3a36847f8098615", "cast_id": 23, "profile_path": null, "order": 22}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe447ac3a36847f809861b", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 6.8, "runtime": 98}, "64685": {"poster_path": "/EEf53z7xAUZzUHA5KVHVVLwgnQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55247881, "overview": "A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.", "video": false, "id": 64685, "genres": [{"id": 18, "name": "Drama"}], "title": "Extremely Loud & Incredibly Close", "tagline": "This is not a story about September 11th, it's a story about every day after.", "vote_count": 227, "homepage": "http://extremelyloudandincrediblyclose.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477302", "adult": false, "backdrop_path": "/cSaXqhEIAXK6sVKMoGvxuhEYDe4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros.", "id": 6194}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2011-12-24", "popularity": 0.897663666143499, "original_title": "Extremely Loud & Incredibly Close", "budget": 40000000, "cast": [{"name": "Thomas Horn", "character": "Oskar Schell", "id": 929136, "credit_id": "52fe46e4c3a368484e0a988f", "cast_id": 11, "profile_path": "/9PHMHBgFZhaMHIgVOdRQ8y06GaA.jpg", "order": 0}, {"name": "Tom Hanks", "character": "Thomas Schell", "id": 31, "credit_id": "52fe46e4c3a368484e0a9869", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Sandra Bullock", "character": "Linda Schell", "id": 18277, "credit_id": "52fe46e4c3a368484e0a986d", "cast_id": 2, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 2}, {"name": "John Goodman", "character": "Stan the Doorman", "id": 1230, "credit_id": "52fe46e4c3a368484e0a9871", "cast_id": 3, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Max von Sydow", "character": "The Renter", "id": 2201, "credit_id": "52fe46e4c3a368484e0a988b", "cast_id": 10, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 4}, {"name": "Dennis Hearn", "character": "Minister", "id": 928297, "credit_id": "52fe46e4c3a368484e0a987b", "cast_id": 6, "profile_path": "/97SrjUqpzGXsPwoMRVYi7gO2vd.jpg", "order": 5}, {"name": "Paul Klementowicz", "character": "Homeless Man", "id": 171567, "credit_id": "52fe46e4c3a368484e0a987f", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Julian Tepper", "character": "Deli Waiter", "id": 928929, "credit_id": "52fe46e4c3a368484e0a9883", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Caleb Reynolds", "character": "Schoolboy", "id": 928930, "credit_id": "52fe46e4c3a368484e0a9887", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Zoe Caldwell", "character": "Oskar's Grandmother", "id": 937681, "credit_id": "53a2d42d0e0a26226e00141e", "cast_id": 15, "profile_path": "/wbVtmnOg8n0JWXthhttzdi9kcNt.jpg", "order": 9}, {"name": "Viola Davis", "character": "Abby Black", "id": 19492, "credit_id": "53a2d44d0e0a26227f0014c8", "cast_id": 16, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 10}, {"name": "Jeffrey Wright", "character": "William Black", "id": 2954, "credit_id": "53a2d4600e0a26227c001417", "cast_id": 17, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 11}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9877", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 6.9, "runtime": 129}, "64686": {"poster_path": "/yAZ9AvAwNPvGte6NoAvSXjKbOTG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150962475, "overview": "Based on the original 1941 movie from Japan, and from ancient Japan\u2019s most enduring tale, the epic 3D fantasy-adventure 47 Ronin is born. Keanu Reeves leads the cast as Kai, an outcast who joins Oishi (Hiroyuki Sanada), the leader of the 47 outcast samurai. Together they seek vengeance upon the treacherous overlord who killed their master and banished their kind. To restore honor to their homeland, the warriors embark upon a quest that challenges them with a series of trials that would destroy ordinary warriors. 47 Ronin is helmed by visionary director Carl Erik Rinsch (The Gift). Inspired by styles as diverse as Miyazaki and Hokusai, Rinsch will bring to life the stunning landscapes and enormous battles that will display the timeless Ronin story to global audiences in a way that\u2019s never been seen before.", "video": false, "id": 64686, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "47 Ronin", "tagline": "For courage. For loyalty. For honour.", "vote_count": 505, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1335975", "adult": false, "backdrop_path": "/slQkkaBHH1K915HtuN89iu0xqOv.jpg", "production_companies": [{"name": "Stuber Productions", "id": 4403}, {"name": "H2F Entertainment", "id": 20851}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2013-12-25", "popularity": 1.79749510261654, "original_title": "47 Ronin", "budget": 175000000, "cast": [{"name": "Keanu Reeves", "character": "Kai", "id": 6384, "credit_id": "52fe46e4c3a368484e0a98cd", "cast_id": 1001, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Hiroyuki Sanada", "character": "Kuranosuke \u00d4ishi", "id": 9195, "credit_id": "52fe46e4c3a368484e0a98d1", "cast_id": 1002, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 1}, {"name": "Kou Shibasaki", "character": "Mika", "id": 58593, "credit_id": "52fe46e4c3a368484e0a98d5", "cast_id": 1003, "profile_path": "/5TWIdBWk1fQeitEjKD10VtaqKfT.jpg", "order": 2}, {"name": "Tadanobu Asano", "character": "Lord Kira", "id": 13275, "credit_id": "52fe46e4c3a368484e0a98d9", "cast_id": 1004, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 3}, {"name": "Min Tanaka", "character": "Lord Asano", "id": 136191, "credit_id": "52fe46e4c3a368484e0a98ff", "cast_id": 1015, "profile_path": "/ppKKjWpEJxaCGqoRdpZV3oxKmmc.jpg", "order": 4}, {"name": "Rinko Kikuchi", "character": "Witch", "id": 18054, "credit_id": "52fe46e4c3a368484e0a98dd", "cast_id": 1005, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 5}, {"name": "Jin Akanishi", "character": "Chikara", "id": 1253541, "credit_id": "52fe46e4c3a368484e0a9903", "cast_id": 1016, "profile_path": "/tE4pyo307aDLtw22AZlkudyKUC7.jpg", "order": 6}, {"name": "Masayoshi Haneda", "character": "Yasuno", "id": 1095404, "credit_id": "52fe46e4c3a368484e0a9907", "cast_id": 1017, "profile_path": "/dtUmoOUtsxeEbODCXjLILUunLmm.jpg", "order": 7}, {"name": "Hiroshi Sogabe", "character": "Hazama", "id": 1278788, "credit_id": "52fe46e4c3a368484e0a990b", "cast_id": 1018, "profile_path": "/sG9Au7CrYr5n116YqMFAMcAuDbw.jpg", "order": 8}, {"name": "Takato Yonemoto", "character": "Basho", "id": 1278789, "credit_id": "52fe46e4c3a368484e0a990f", "cast_id": 1019, "profile_path": "/fMIoKXFHTrl8yemqBK9u7O555nt.jpg", "order": 9}, {"name": "Sh\u00fb Nakajima", "character": "Horibe", "id": 550560, "credit_id": "54806f68c3a36829b2003104", "cast_id": 1096, "profile_path": null, "order": 10}, {"name": "Hiroshi Yamada", "character": "Hara", "id": 1184036, "credit_id": "53a962a5c3a368707a005de2", "cast_id": 1028, "profile_path": "/cnAXCyAD7ESIzprVRL3ZInutuEx.jpg", "order": 11}, {"name": "Cary-Hiroyuki Tagawa", "character": "Shogun Tsunayoshi", "id": 11398, "credit_id": "54806e7dc3a36829b50030d6", "cast_id": 1092, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 12}, {"name": "Tanroh Ishida", "character": "Shogun's Adjutant", "id": 1380499, "credit_id": "54806ee5c3a36817a5002764", "cast_id": 1093, "profile_path": "/mg9mM1mEKve5CgDCp2seGYMk9Mi.jpg", "order": 13}, {"name": "Yorick van Wageningen", "character": "Kapitan", "id": 31387, "credit_id": "54806f02c3a36829ae00268a", "cast_id": 1094, "profile_path": null, "order": 14}, {"name": "Ron Bottitta", "character": "Narrator", "id": 60602, "credit_id": "54806f2ec3a36829a300296f", "cast_id": 1095, "profile_path": "/9qqT4usrllY5XWONGbDYusnP7yL.jpg", "order": 15}], "directors": [{"name": "Carl Rinsch", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a98c9", "profile_path": null, "id": 239571}], "vote_average": 6.0, "runtime": 118}, "10781": {"poster_path": "/9elCJIG1TOJ0wew3JVx5ZMkHq5w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On one last road trip before they're sent to serve in Vietnam, two brothers and their girlfriends get into an accident that calls their local sheriff to the scene. Thus begins a terrifying experience where the teens are taken to a secluded house of horrors, where a young, would-be killer is being nurtured.", "video": false, "id": 10781, "genres": [{"id": 27, "name": "Horror"}], "title": "The Texas Chainsaw Massacre: The Beginning", "tagline": "What you know about fear... doesn't even come close.", "vote_count": 64, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0420294", "adult": false, "backdrop_path": "/t48RyM3pxIkbbQifa8PflY2EUIV.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Next Entertainment", "id": 1633}, {"name": "Vortex/Henkel/Hooper", "id": 23653}], "release_date": "2006-10-06", "popularity": 0.996593411343835, "original_title": "The Texas Chainsaw Massacre: The Beginning", "budget": 16000000, "cast": [{"name": "Jordana Brewster", "character": "Chrissie", "id": 22123, "credit_id": "52fe43b69251416c7501b287", "cast_id": 13, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 0}, {"name": "Taylor Handley", "character": "Dean", "id": 66741, "credit_id": "52fe43b69251416c7501b28b", "cast_id": 14, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 1}, {"name": "Diora Baird", "character": "Bailey", "id": 59263, "credit_id": "52fe43b69251416c7501b28f", "cast_id": 15, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 2}, {"name": "Matt Bomer", "character": "Eric", "id": 66743, "credit_id": "52fe43b69251416c7501b293", "cast_id": 16, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 3}, {"name": "R. Lee Ermey", "character": "Uncle Charlie Hewitt / Sheriff Hoyt", "id": 8655, "credit_id": "52fe43b69251416c7501b297", "cast_id": 17, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 4}, {"name": "Lew Temple", "character": "Sheriff Winston Hoyt", "id": 37027, "credit_id": "52fe43b69251416c7501b29b", "cast_id": 18, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 5}, {"name": "Andrew Bryniarski", "character": "Thomas Hewitt (Leatherface)", "id": 52366, "credit_id": "52fe43b69251416c7501b29f", "cast_id": 19, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 6}, {"name": "Tim De Zarn", "character": "Slaughterhouse Supervisor", "id": 956719, "credit_id": "52fe43b69251416c7501b2a3", "cast_id": 20, "profile_path": "/bvj6Kaq1VzAEBkqCGVDvOaQKOhi.jpg", "order": 7}, {"name": "Lee Tergesen", "character": "Holden", "id": 6906, "credit_id": "5323ff339251411f85005cce", "cast_id": 21, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 8}, {"name": "Cyia Batten", "character": "Alex", "id": 42515, "credit_id": "53e74441c3a36839950013e1", "cast_id": 29, "profile_path": "/w14tg1GarixC9tqqYzTERkroS2P.jpg", "order": 9}, {"name": "Terrence Evans", "character": "Monty Hewitt", "id": 132054, "credit_id": "53e744b2c3a36839950013ef", "cast_id": 30, "profile_path": "/jhEu0HyHPbFh3cbIoWGW95ubEK1.jpg", "order": 10}, {"name": "Marietta Marich", "character": "Luda Mae Hewitt", "id": 985344, "credit_id": "53e744fbc3a3683991001449", "cast_id": 31, "profile_path": "/qov07poVxBvkMYgYlPQF0RliWJn.jpg", "order": 11}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe43b69251416c7501b241", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 5.8, "runtime": 91}, "64688": {"poster_path": "/mH6xazzfGdszadd1Xy9JgdZYvn1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53957072, "overview": "In high school, Schmidt was a dork and Jenko was the popular jock. After graduation, both of them joined the police force and ended up as partners riding bicycles in the city park. Since they are young and look like high school students, they are assigned to an undercover unit to infiltrate a drug ring that is supplying high school students synthetic drugs.", "video": false, "id": 64688, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "21 Jump Street", "tagline": "They thought the streets were mean. Then they went back to high school.", "vote_count": 1918, "homepage": "http://www.21jumpstreet-movie.com/", "belongs_to_collection": {"backdrop_path": "/iiAbTNYXpMadPDH4MkjUoJzcGn4.jpg", "poster_path": "/vufY0iuDNXGEdYOgZNcJFAEZeak.jpg", "id": 212562, "name": "Jump Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1232829", "adult": false, "backdrop_path": "/uOpFdld7CIifSEoGuRVgWqaeyFs.jpg", "production_companies": [{"name": "Stephen J. Cannell Productions", "id": 5585}, {"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}], "release_date": "2012-03-12", "popularity": 2.58774901726501, "original_title": "21 Jump Street", "budget": 42000000, "cast": [{"name": "Channing Tatum", "character": "Jenko", "id": 38673, "credit_id": "52fe46e4c3a368484e0a9973", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Schmidt", "id": 21007, "credit_id": "52fe46e4c3a368484e0a9977", "cast_id": 3, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Brie Larson", "character": "Molly", "id": 60073, "credit_id": "52fe46e4c3a368484e0a997b", "cast_id": 4, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 2}, {"name": "Ellie Kemper", "character": "Ms. Griggs", "id": 475512, "credit_id": "52fe46e4c3a368484e0a9985", "cast_id": 6, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 3}, {"name": "Ice Cube", "character": "Capt. Dickson", "id": 9778, "credit_id": "52fe46e4c3a368484e0a9989", "cast_id": 7, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 4}, {"name": "Dave Franco", "character": "Eric", "id": 54697, "credit_id": "52fe46e4c3a368484e0a998d", "cast_id": 8, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 5}, {"name": "Nick Offerman", "character": "Captain", "id": 17039, "credit_id": "52fe46e4c3a368484e0a9991", "cast_id": 9, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 6}, {"name": "Rob Riggle", "character": "Mr. Walters", "id": 71403, "credit_id": "52fe46e4c3a368484e0a9999", "cast_id": 11, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 8}, {"name": "Johnny Depp", "character": "Tom Hanson (uncredited)", "id": 85, "credit_id": "52fe46e4c3a368484e0a999d", "cast_id": 12, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 9}, {"name": "Jake M. Johnson", "character": "Principal Dadier", "id": 543505, "credit_id": "52fe46e4c3a368484e0a9a0d", "cast_id": 32, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 10}, {"name": "Holly Robinson Peete", "character": "Officer Judy Hoffs", "id": 168581, "credit_id": "53a28659c3a368443e000530", "cast_id": 33, "profile_path": "/lcdP7aJNGxvgwB55gjHPdVsnlB7.jpg", "order": 11}, {"name": "Johnny Pemberton", "character": "Delroy", "id": 1060081, "credit_id": "53a28671c3a3683208000c8e", "cast_id": 34, "profile_path": "/lV9UognW1VG8P8nESSrArveBRou.jpg", "order": 12}, {"name": "Caroline Aaron", "character": "Annie Schmidt", "id": 1910, "credit_id": "53a28691c3a3683205000cf5", "cast_id": 35, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 13}, {"name": "Joe Chrest", "character": "David Schmidt", "id": 141762, "credit_id": "53a2869ac3a36831f6000cf1", "cast_id": 36, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 14}, {"name": "Dakota Johnson", "character": "Fugazy", "id": 118545, "credit_id": "53a286a4c3a3683205000cf8", "cast_id": 37, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 15}, {"name": "Johnny Simmons", "character": "Billiam Willingham", "id": 27104, "credit_id": "53a286b3c3a36831f6000cf4", "cast_id": 38, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 16}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9981", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a99af", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 6.4, "runtime": 109}, "7345": {"poster_path": "/bFgqkuAFBHNuq0oTtewHwuLVWSO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76181545, "overview": "When Daniel Plainview - a ruthless oil prospector - learns of oil-rich land in California that can be bought cheaply, he moves his operation there and begins manipulating and exploiting the local landowners into selling him their property. Using his young adopted son H.W. to project the image of a caring family man, Plainview gains the cooperation of almost all the locals with lofty promises to build schools and cultivate the land to make their community flourish. Over time, Plainview's gradual accumulation of wealth and power causes his true self to surface, and he begins to slowly alienate himself from everyone in his life.", "video": false, "id": 7345, "genres": [{"id": 18, "name": "Drama"}], "title": "There Will Be Blood", "tagline": "There Will Be Greed. There Will Be Vengeance.", "vote_count": 309, "homepage": "http://www.therewillbeblood.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0469494", "adult": false, "backdrop_path": "/1DSzHQ9jUEjKMXpVeXhC6gDa3IW.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Miramax Films", "id": 14}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "2007-12-28", "popularity": 1.01226308208005, "original_title": "There Will Be Blood", "budget": 25000000, "cast": [{"name": "Daniel Day-Lewis", "character": "Daniel Plainview", "id": 11856, "credit_id": "52fe447bc3a36847f8098a27", "cast_id": 2, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 0}, {"name": "Paul Dano", "character": "Paul Sunday / Eli Sunday", "id": 17142, "credit_id": "52fe447bc3a36847f8098a61", "cast_id": 12, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 1}, {"name": "Dillon Freasier", "character": "H. W.", "id": 52564, "credit_id": "52fe447bc3a36847f8098a6d", "cast_id": 15, "profile_path": "/sGjQ2lnfTnu0QrM1tcc98rYUmyB.jpg", "order": 2}, {"name": "Ciar\u00e1n Hinds", "character": "Fletcher", "id": 8785, "credit_id": "52fe447bc3a36847f8098a69", "cast_id": 14, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 3}, {"name": "Kevin J. O'Connor", "character": "Henry", "id": 18916, "credit_id": "52fe447bc3a36847f8098a65", "cast_id": 13, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 4}, {"name": "Hope Elizabeth Reeves", "character": "Elizabeth", "id": 52565, "credit_id": "52fe447bc3a36847f8098a71", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Colleen Foy", "character": "Mary Sunday", "id": 52566, "credit_id": "52fe447bc3a36847f8098a75", "cast_id": 17, "profile_path": "/vKRbKBw2PzK8hgLBZ11sEOW1P9O.jpg", "order": 6}, {"name": "Barry Del Sherman", "character": "H. B. Ailman", "id": 8214, "credit_id": "52fe447bc3a36847f8098a79", "cast_id": 18, "profile_path": "/8uUOdG0fTnPYNkSgPpQDhzxSrjw.jpg", "order": 7}, {"name": "David Willis", "character": "Abel Sunday", "id": 53668, "credit_id": "52fe447bc3a36847f8098a7d", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Hans Howes", "character": "Mr. Bandy", "id": 53669, "credit_id": "52fe447bc3a36847f8098a81", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Sydney McCallister", "character": "Mary Sunday (Young)", "id": 53670, "credit_id": "52fe447bc3a36847f8098a85", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Paul F. Tompkins", "character": "Prescott", "id": 1219029, "credit_id": "53353aeec3a3682a940044a7", "cast_id": 23, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 11}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe447bc3a36847f8098a5d", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 7.8, "runtime": 158}, "64690": {"poster_path": "/uhDUaZ2wCoRqxkUSXSexmIfQVWQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76175166, "overview": "A mysterious Hollywood stuntman who moonlights as a getaway driver seems to be trying to escape his shady past as he falls for his neighbor - whose husband is in prison and who's looking after her child alone. Meanwhile, his garage mechanic boss is trying to set up a race team using gangland money, which implicates our driver as he is to be used as the race team's main driver. Our hero gets more than he bargained for when he meets the man who is married to the woman he loves.", "video": false, "id": 64690, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Drive", "tagline": "There are no clean getaways.", "vote_count": 1103, "homepage": "http://drive.mgfilm.hr", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780504", "adult": false, "backdrop_path": "/ekLAySalu0CGoGogPWY0BG6uAul.jpg", "production_companies": [{"name": "FilmDistrict", "id": 7263}, {"name": "Bold Films", "id": 2266}, {"name": "Marc Platt Productions", "id": 2527}, {"name": "Odd Lot Entertainment", "id": 3263}, {"name": "Motel Movies", "id": 11337}, {"name": "Newbridge Film Capital", "id": 46625}], "release_date": "2011-09-16", "popularity": 1.3855908162753, "original_title": "Drive", "budget": 15000000, "cast": [{"name": "Ryan Gosling", "character": "Driver", "id": 30614, "credit_id": "52fe46e4c3a368484e0a9b37", "cast_id": 2, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Carey Mulligan", "character": "Irene", "id": 36662, "credit_id": "52fe46e4c3a368484e0a9b3b", "cast_id": 3, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 1}, {"name": "Christina Hendricks", "character": "Blanche", "id": 110014, "credit_id": "52fe46e4c3a368484e0a9b3f", "cast_id": 4, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 2}, {"name": "Albert Brooks", "character": "Bernie Rose", "id": 13, "credit_id": "52fe46e4c3a368484e0a9b43", "cast_id": 5, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 3}, {"name": "Bryan Cranston", "character": "Shannon", "id": 17419, "credit_id": "52fe46e4c3a368484e0a9b53", "cast_id": 8, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 4}, {"name": "Ron Perlman", "character": "Nino", "id": 2372, "credit_id": "52fe46e4c3a368484e0a9b57", "cast_id": 9, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 5}, {"name": "Andy San Dimas", "character": "Stripper", "id": 135461, "credit_id": "52fe46e4c3a368484e0a9b5b", "cast_id": 11, "profile_path": "/5yitCsPcNrW71C6jFOIE5keceSi.jpg", "order": 6}, {"name": "Oscar Isaac", "character": "Standard", "id": 25072, "credit_id": "52fe46e4c3a368484e0a9b5f", "cast_id": 12, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 7}, {"name": "Kaden Leos", "character": "Benicio", "id": 972270, "credit_id": "52fe46e4c3a368484e0a9b63", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Jeff Wolfe", "character": "Tan Suit", "id": 51303, "credit_id": "52fe46e4c3a368484e0a9b67", "cast_id": 14, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 9}, {"name": "James Biberi", "character": "Cook", "id": 37156, "credit_id": "52fe46e4c3a368484e0a9b6b", "cast_id": 15, "profile_path": "/vgkESTjzqdFsbkzGhDPcIDEcTAq.jpg", "order": 10}, {"name": "Russ Tamblyn", "character": "Doc", "id": 6725, "credit_id": "52fe46e4c3a368484e0a9b6f", "cast_id": 16, "profile_path": "/gc0wmr0vyqYRhA7piZsqKVvy0uX.jpg", "order": 11}, {"name": "Joe Bucaro III", "character": "Chauffeur", "id": 51302, "credit_id": "52fe46e4c3a368484e0a9b73", "cast_id": 17, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 12}, {"name": "Tiara Parker", "character": "Young Woman", "id": 208332, "credit_id": "52fe46e4c3a368484e0a9b77", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Tim Trella", "character": "Hitman #1", "id": 200402, "credit_id": "52fe46e4c3a368484e0a9b7b", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Jim Hart", "character": "Hitman #2", "id": 286549, "credit_id": "52fe46e4c3a368484e0a9b7f", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Tina Huang", "character": "Waitress", "id": 89376, "credit_id": "52fe46e4c3a368484e0a9b83", "cast_id": 21, "profile_path": "/88gyrF0i0oY5rrKUhzu2Y0X1ODK.jpg", "order": 16}, {"name": "John Pyper-Ferguson", "character": "Bearded Redneck", "id": 95638, "credit_id": "52fe46e4c3a368484e0a9b87", "cast_id": 22, "profile_path": "/7mjFl2dYKbbDTKQDTe6kyhKEmHa.jpg", "order": 17}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9b33", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 7.0, "runtime": 100}, "7347": {"poster_path": "/kZ9HF82Ude7EH2abjQW2JrGwKMr.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}], "revenue": 0, "overview": "In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operations Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.", "video": false, "id": 7347, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Elite Squad", "tagline": "On the streets of Rio only the elite survive.", "vote_count": 152, "homepage": "http://www.tropadeeliteofilme.com.br/", "belongs_to_collection": {"backdrop_path": "/nNUFlXdj8JIV6HnjVS58r0qCvE7.jpg", "poster_path": "/mdB0vaxi8TTnKIOeaYv25vUrkY3.jpg", "id": 119581, "name": "Elite Squad Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0861739", "adult": false, "backdrop_path": "/7hhmSkzktUm5GxuVUWXlJrVx81L.jpg", "production_companies": [{"name": "Universal Pictures do Brasil", "id": 47046}, {"name": "The Weinstein Company", "id": 308}, {"name": "Zazen Produ\u00e7\u00f5es", "id": 2427}, {"name": "Est\u00fadios Mega", "id": 2430}, {"name": "Quanta Centro de Produ\u00e7\u00f5es Cinematogr\u00e1ficas", "id": 2432}, {"name": "Costa Films", "id": 10187}, {"name": "Posto 9", "id": 47043}, {"name": "Feij\u00e3o Filmes", "id": 47044}], "release_date": "2007-10-11", "popularity": 0.315723334852947, "original_title": "Tropa de Elite", "budget": 4000000, "cast": [{"name": "Wagner Moura", "character": "Capit\u00e3o Nascimento", "id": 52583, "credit_id": "52fe447bc3a36847f8098b57", "cast_id": 12, "profile_path": "/bESNWiGHjMhMGoqBMVtbpJBazKx.jpg", "order": 0}, {"name": "Caio Junqueira", "character": "Neto", "id": 52584, "credit_id": "52fe447bc3a36847f8098b5b", "cast_id": 13, "profile_path": "/hz3UzOo0l9YWfqnSeIYaxqEwwkN.jpg", "order": 1}, {"name": "Andr\u00e9 Ramiro", "character": "Andr\u00e9 Matias", "id": 52585, "credit_id": "52fe447bc3a36847f8098b5f", "cast_id": 14, "profile_path": "/qFROuhLJIHPv0tiZ9TXdYZkYOfU.jpg", "order": 2}, {"name": "Milhem Cortaz", "character": "Capitao Fabio", "id": 52586, "credit_id": "52fe447bc3a36847f8098b63", "cast_id": 15, "profile_path": "/7OLA77PUeO38jqbRhpFPzQUankN.jpg", "order": 3}, {"name": "Fernanda Machado", "character": "Maria", "id": 469968, "credit_id": "52fe447bc3a36847f8098b67", "cast_id": 16, "profile_path": "/9Tg1miqbRaOGkekcMvdXcG55mZx.jpg", "order": 4}, {"name": "Maria Ribeiro", "character": "Rosane", "id": 12397, "credit_id": "52fe447bc3a36847f8098b6b", "cast_id": 17, "profile_path": "/vh8e9h0f8AxKwZ01uKp7WWoSGP5.jpg", "order": 5}, {"name": "Fabio Lago", "character": "Baiano", "id": 575447, "credit_id": "52fe447bc3a36847f8098b6f", "cast_id": 18, "profile_path": "/4dcZ77Tzhjq4bEX9PxLzmSKf5UY.jpg", "order": 6}, {"name": "Erick Oliveira", "character": "Marcinho", "id": 1429606, "credit_id": "54e8627d925141117c0010fc", "cast_id": 49, "profile_path": null, "order": 7}, {"name": "Marcelo Escorel", "character": "Coronel Ot\u00e1vio", "id": 1086172, "credit_id": "54e862ae9251412eb1001957", "cast_id": 50, "profile_path": null, "order": 8}, {"name": "Roberta Santiago", "character": "Rose", "id": 1429607, "credit_id": "54e862c89251412eae001995", "cast_id": 51, "profile_path": null, "order": 9}], "directors": [{"name": "Jos\u00e9 Padilha", "department": "Directing", "job": "Director", "credit_id": "52fe447bc3a36847f8098b17", "profile_path": "/856kyjsiBGksnzpNHgxkkcd0TZr.jpg", "id": 52576}], "vote_average": 7.7, "runtime": 115}, "7350": {"poster_path": "/3ktww154vChp5Y1qOrJZFLvqYz8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 175372502, "overview": "Corporate billionaire Edward and working class mechanic Carter have nothing in common except for their terminal illnesses. While sharing a hospital room together, they decide to escape and do all the things they have ever wanted to do before they die according to their \"bucket list\". In the process, both of them heal each other, become unlikely friends, and ultimately find the joy in life.", "video": false, "id": 7350, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Bucket List", "tagline": "When he closed his eyes, his heart was opened", "vote_count": 353, "homepage": "http://thebucketlist.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0825232", "adult": false, "backdrop_path": "/hO0VEdaUtJYPQjFL1xfe242ZQet.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2007-12-24", "popularity": 0.678402092416656, "original_title": "The Bucket List", "budget": 45000000, "cast": [{"name": "Jack Nicholson", "character": "Edward Cole", "id": 514, "credit_id": "52fe447bc3a36847f8098ca9", "cast_id": 12, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Carter Chambers", "id": 192, "credit_id": "52fe447bc3a36847f8098cad", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Sean Hayes", "character": "Thomas", "id": 52601, "credit_id": "52fe447bc3a36847f8098cb1", "cast_id": 14, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 2}, {"name": "Beverly Todd", "character": "Virginia Chambers", "id": 18292, "credit_id": "52fe447bc3a36847f8098cb9", "cast_id": 16, "profile_path": "/zAorVHFs2eP3YQ91pNbDeMwfymi.jpg", "order": 3}, {"name": "Rob Morrow", "character": "Dr. Hollins", "id": 52602, "credit_id": "52fe447bc3a36847f8098cb5", "cast_id": 15, "profile_path": "/pddqfHQ7AV5I2EUIzz32GFp5m5Q.jpg", "order": 4}, {"name": "Alfonso Freeman", "character": "Roger Chambers", "id": 52603, "credit_id": "52fe447bc3a36847f8098cbd", "cast_id": 17, "profile_path": "/5GBwxHB5AuY7bjujZdBhTKOZZvW.jpg", "order": 5}, {"name": "Rowena King", "character": "Angelica", "id": 47669, "credit_id": "52fe447bc3a36847f8098cc1", "cast_id": 18, "profile_path": "/oCb3Pvs2MImZcej54i2gNIpYfAf.jpg", "order": 6}, {"name": "Annton Berry Jr.", "character": "Kai", "id": 1073868, "credit_id": "52fe447bc3a36847f8098cd1", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Verda Bridges", "character": "Chandra", "id": 167225, "credit_id": "52fe447bc3a36847f8098cd5", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Destiny Brownridge", "character": "Maya", "id": 1073869, "credit_id": "52fe447bc3a36847f8098cd9", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Brian Copeland", "character": "Lee", "id": 1073870, "credit_id": "52fe447bc3a36847f8098cdd", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Ian Anthony Dale", "character": "Instructor", "id": 123813, "credit_id": "52fe447bc3a36847f8098ce1", "cast_id": 25, "profile_path": "/8lF1E9MNYDXVPUy4YB3In4mi46N.jpg", "order": 11}, {"name": "Jennifer Defrancisco", "character": "Emily", "id": 1073871, "credit_id": "52fe447bc3a36847f8098ce5", "cast_id": 26, "profile_path": "/aNdGT6gCUZKxu0Xn5MZMwQViVSI.jpg", "order": 12}, {"name": "Angela Gardner", "character": "Female Administrator", "id": 200128, "credit_id": "52fe447bc3a36847f8098ce9", "cast_id": 27, "profile_path": "/zYkJoUlE8Y7mxB2ZkS0r2luaiW8.jpg", "order": 13}, {"name": "Noel Gugliemi", "character": "Mechanic", "id": 53252, "credit_id": "52fe447bc3a36847f8098ced", "cast_id": 28, "profile_path": "/mI5urNyZJAzIGxelTjBkm624DkB.jpg", "order": 14}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe447bc3a36847f8098c81", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.8, "runtime": 97}, "23742": {"poster_path": "/cSkPYnVsD7MRNXPhkhBv3Mcxx39.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43659236, "overview": "Officers Jimmy Monroe and Paul Hodges have their weapons drawn on a gun-wielding killer. They agree to shoot on three. But, wait, does that mean 1\u20262\u2026 shoot or 1\u20262\u20263\u2026 then shoot? Punches hit hard and laughs hit harder (or is it the other way \u2019round?) when action star Bruce Willis and ace comic Tracy Morgan pair as bickering-but-got-your-back Brooklyn buddy cops. Kevin Smith (Clerks, Chasing Amy) directs the gritty, goofball goings-on as the guys hunt for a stolen 1952 mint condition baseball card (Jimmy needs it to fund his daughter\u2019s wedding), a hunt plunging them into a gunslinging war with a deadly drug ring. Batter up, fans. The boys are ready to take you out to the ol\u2019 brawl game!", "video": false, "id": 23742, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Cop Out", "tagline": "Rock out with your Glock out", "vote_count": 185, "homepage": "http://copoutmovie.warnerbros.com/dvd/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1385867", "adult": false, "backdrop_path": "/3rRAYIwh1FhdijYkSDgPFhQTTI9.jpg", "production_companies": [{"name": "Marc Platt Productions", "id": 2527}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2010-02-26", "popularity": 0.611336313389323, "original_title": "Cop Out", "budget": 30000000, "cast": [{"name": "Bruce Willis", "character": "Jimmy Monroe", "id": 62, "credit_id": "52fe4475c3a368484e0242eb", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Tracy Morgan", "character": "Paul Hodges", "id": 56903, "credit_id": "52fe4475c3a368484e024333", "cast_id": 20, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 1}, {"name": "Juan Carlos Hern\u00e1ndez", "character": "Raul", "id": 116714, "credit_id": "52fe4475c3a368484e02432f", "cast_id": 19, "profile_path": "/crzCSBiSwdK7X9B0PJFA6NP0y3o.jpg", "order": 2}, {"name": "Seann William Scott", "character": "Dave", "id": 57599, "credit_id": "52fe4475c3a368484e02431f", "cast_id": 14, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 3}, {"name": "Michelle Trachtenberg", "character": "Ava", "id": 49961, "credit_id": "52fe4475c3a368484e024323", "cast_id": 15, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 4}, {"name": "Jason Lee", "character": "Roy", "id": 11662, "credit_id": "52fe4475c3a368484e024327", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 5}, {"name": "Kevin Pollak", "character": "Hunsaker", "id": 7166, "credit_id": "52fe4475c3a368484e02432b", "cast_id": 18, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 6}, {"name": "Adam Brody", "character": "Barry Mangold", "id": 11702, "credit_id": "52fe4475c3a368484e024337", "cast_id": 21, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 7}, {"name": "Ana de la Reguera", "character": "Gabriela", "id": 57409, "credit_id": "52fe4475c3a368484e02433b", "cast_id": 22, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 8}, {"name": "Rashida Jones", "character": "Debbie", "id": 80591, "credit_id": "52fe4475c3a368484e02433f", "cast_id": 23, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 9}, {"name": "Francie Swift", "character": "Pam", "id": 118043, "credit_id": "531c29a092514177bf0052df", "cast_id": 24, "profile_path": "/r9lffvZJpFGnL6sIw176bXO6aqN.jpg", "order": 10}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a368484e0242db", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.7, "runtime": 107}, "236735": {"poster_path": "/al2AhNteG93WZgOaygru0Q87wU1.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 5169755, "overview": "The Spanish deep South, 1980. A series of brutal murders of adolescent girls in a remote and forgotten town bring together two disparate characters - both detectives in the homicide division - to investigate the cases. With deep divisions in their ideology, detectives Juan and Pedro must put aside their differences if they are to successfully hunt down a killer who for years has terrorized a community in the shadow of a general disregard for women rooted in a misogynistic past.", "video": false, "id": 236735, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Marshland", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "nl", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt3253930", "adult": false, "backdrop_path": "/aO1Iu69NRy96SiZxuKtHpzLhmCC.jpg", "production_companies": [{"name": "Sacromonte Films", "id": 31899}, {"name": "Atresmedia Cine", "id": 29566}, {"name": "At\u00edpica Films", "id": 7342}], "release_date": "2014-09-25", "popularity": 0.578848274388988, "original_title": "Marshland", "budget": 0, "cast": [{"name": "Ra\u00fal Ar\u00e9valo", "character": "Pedro", "id": 34021, "credit_id": "52fe4e5fc3a36847f828cb1b", "cast_id": 1, "profile_path": "/eFy3FCRCprRsCsaVQ63yrZJsy5W.jpg", "order": 0}, {"name": "Javier Guti\u00e9rrez", "character": "Juan", "id": 19024, "credit_id": "52fe4e5fc3a36847f828cb23", "cast_id": 3, "profile_path": "/qy8qEkPgnTFvdfXG2utW4feOwmF.jpg", "order": 1}, {"name": "Antonio de la Torre", "character": "Rodrigo", "id": 3483, "credit_id": "52fe4e5fc3a36847f828cb1f", "cast_id": 2, "profile_path": "/6gLwqdiKMB2s7ymeRAaHZlvGjvR.jpg", "order": 2}, {"name": "Nerea Barros", "character": "Roc\u00edo", "id": 1071974, "credit_id": "52fe4e5fc3a36847f828cb2b", "cast_id": 5, "profile_path": "/l8HBLMIXSoT9Lv2J6j5fYmuxXET.jpg", "order": 3}, {"name": "Salva Reina", "character": "Jes\u00fas", "id": 1413918, "credit_id": "54b7d49bc3a3686c5f0020c7", "cast_id": 22, "profile_path": "/pJxHxD8BhSzK8S7vUwkBO56SaoQ.jpg", "order": 4}, {"name": "Jes\u00fas Castro", "character": "Quini", "id": 1271594, "credit_id": "52fe4e5fc3a36847f828cb2f", "cast_id": 6, "profile_path": "/pbrNy0DPuueRCrd4dMMFxTPtkR1.jpg", "order": 5}, {"name": "Manolo Solo", "character": "Periodista", "id": 592709, "credit_id": "54b7d4bdc3a3686c610020fa", "cast_id": 23, "profile_path": "/vIYNmEhVT2b1SP9TTrIdyZzkm1N.jpg", "order": 6}, {"name": "Cecilia Villanueva", "character": "Mar\u00eda", "id": 1271595, "credit_id": "52fe4e5fc3a36847f828cb33", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Juan Carlos Villanueva", "character": "Juez Andrade", "id": 1413922, "credit_id": "54b7d534c3a3686c5d0022c3", "cast_id": 28, "profile_path": "/x9GQo1dYMr4ta5IX3DhjQ1CxvR6.jpg", "order": 8}, {"name": "Jes\u00fas Carroza", "character": "", "id": 6534, "credit_id": "52fe4e5fc3a36847f828cb27", "cast_id": 4, "profile_path": "/m06S1sTzcCCoI5g3K0E6WjoPi1n.jpg", "order": 9}, {"name": "Mercedes Le\u00f3n", "character": "", "id": 1410288, "credit_id": "54ad4787925141480b003651", "cast_id": 9, "profile_path": "/3PHpQVERHXy9IoQgKrH2BAVTyka.jpg", "order": 10}, {"name": "Adelfa Calvo", "character": "", "id": 1331728, "credit_id": "54b7d4f1c3a3686c61002100", "cast_id": 24, "profile_path": "/s0RZe0JiIHDiJ9HMYgkszSCKFGs.jpg", "order": 11}, {"name": "Jes\u00fas Ortiz", "character": "", "id": 1413919, "credit_id": "54b7d4ff9251411d770021e8", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Ana Tomeno", "character": "", "id": 1413920, "credit_id": "54b7d50a9251411d6d0022e0", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "\u00c1ngela Vega", "character": "", "id": 1413921, "credit_id": "54b7d510c3a3686c6f0020ed", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Alberto Rodr\u00edguez", "department": "Directing", "job": "Director", "credit_id": "54b7d356c3a3686c6b00286f", "profile_path": "/uFbBK2aCeBBEa6qGzfLEKN5CT82.jpg", "id": 6521}], "vote_average": 7.3, "runtime": 105}, "236737": {"poster_path": "/xoZikQavGhmBegJTD2AY4u3htUU.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Rafael, a Seville citizen who has never left the Spanish region of Andalucia, decides to leave his homeland to follow Amaia, a Basque girl unlike other women he has known.", "video": false, "id": 236737, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Spanish Affair", "tagline": "", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "eu", "name": "euskera"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2955316", "adult": false, "backdrop_path": "/ohm7LXOufzAktoainDJwKtA4oDX.jpg", "production_companies": [{"name": "Telecinco Cinema", "id": 2674}, {"name": "Lazonafilms", "id": 4601}, {"name": "Kowalski Films", "id": 13287}], "release_date": "2014-03-14", "popularity": 0.337035719657072, "original_title": "Ocho apellidos vascos", "budget": 0, "cast": [{"name": "Clara Lago", "character": "Amaia", "id": 224731, "credit_id": "52fe4e5fc3a36847f828cb5f", "cast_id": 1, "profile_path": "/eO3vaBbQRVKYagr26VINxlisiSS.jpg", "order": 0}, {"name": "Dani Rovira", "character": "Rafa", "id": 1271600, "credit_id": "52fe4e5fc3a36847f828cb67", "cast_id": 3, "profile_path": "/aXoao0AymeLgRe81Nc9Lsu3LUcl.jpg", "order": 1}, {"name": "Karra Elejalde", "character": "Koldo", "id": 24977, "credit_id": "52fe4e5fc3a36847f828cb63", "cast_id": 2, "profile_path": "/zcxUAKrcvCBN2CsDZS0qt52e3GT.jpg", "order": 2}, {"name": "Carmen Machi", "character": "Merche", "id": 102222, "credit_id": "52fe4e5fc3a36847f828cb6b", "cast_id": 4, "profile_path": "/gPT0nnzZ1M7chwt4zaYIfZJUN34.jpg", "order": 3}, {"name": "Alberto L\u00f3pez", "character": "Joaqu\u00edn", "id": 35722, "credit_id": "545e17460e0a261fb6006789", "cast_id": 24, "profile_path": null, "order": 4}, {"name": "Alfonso S\u00e1nchez", "character": "Curro", "id": 1061663, "credit_id": "545e1751c3a368535d0063f8", "cast_id": 25, "profile_path": null, "order": 5}, {"name": "Aitor Mazo", "character": "Padre Inaxio", "id": 1014909, "credit_id": "545e1766c3a3685362005f0e", "cast_id": 26, "profile_path": "/lATPwtP5S7Egwmb8pvJn93BYBlQ.jpg", "order": 6}, {"name": "Abel Mora", "character": "Pedro", "id": 1382984, "credit_id": "545e1778c3a3686cbb001725", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Aitziber Garmendia", "character": "Iratxe", "id": 1077139, "credit_id": "545e17830e0a26042c006139", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Miriam Cabeza", "character": "Edurne", "id": 1382985, "credit_id": "545e178cc3a3686cbb00172d", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Lander Otaola", "character": "", "id": 544008, "credit_id": "545e47cb0e0a261fa6006c82", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Santi Ugalde", "character": "", "id": 984078, "credit_id": "545e1799c3a36853500058df", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Itziar Atienza", "character": "", "id": 1104748, "credit_id": "545e17a6c3a368536b005d2d", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Telmo Esnal", "character": "", "id": 1034476, "credit_id": "545e17aec3a368603c0014b6", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "I\u00f1aki Beraetxe", "character": "", "id": 1124052, "credit_id": "545e17c1c3a3686cbb00173c", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Emilio Mart\u00ednez L\u00e1zaro", "department": "Directing", "job": "Director", "credit_id": "52fe4e5fc3a36847f828cb71", "profile_path": "/mmsxJvBgJC2sBHSYXMKnyQIVjtu.jpg", "id": 27449}], "vote_average": 6.8, "runtime": 98}, "7364": {"poster_path": "/xB5JjL6wLzq5goIWTPoJ4tFreL5.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119269486, "overview": "Scouring the ocean depths for treasure-laden shipwrecks is business as usual for a thrill-seeking underwater adventurer and his wisecracking buddy. But when these two cross paths with a beautiful doctor, they find themselves on the ultimate treasure hunt.", "video": false, "id": 7364, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Sahara", "tagline": "Dirk Pitt. Adventure has a new name.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0318649", "adult": false, "backdrop_path": "/8yTDTKaSrSoz944H2ibPEG11JwC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Bristol Bay Productions", "id": 2233}, {"name": "Baldwin Entertainment Group", "id": 2234}, {"name": "J.K. Livin Productions", "id": 12124}, {"name": "Desertlands Entertainment", "id": 2235}, {"name": "Kanzaman", "id": 4169}, {"name": "Babelsberg Film GmbH", "id": 424}, {"name": "Moguletta", "id": 12125}, {"name": "Sahara Productions", "id": 12126}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "2005-04-08", "popularity": 0.617837490256457, "original_title": "Sahara", "budget": 160000000, "cast": [{"name": "Matthew McConaughey", "character": "Dirk Pitt", "id": 10297, "credit_id": "52fe447cc3a36847f8098e35", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Eva Rojas", "id": 955, "credit_id": "52fe447cc3a36847f8098e39", "cast_id": 2, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Steve Zahn", "character": "Al Giordino", "id": 18324, "credit_id": "52fe447cc3a36847f8098e3d", "cast_id": 3, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 2}, {"name": "William H. Macy", "character": "Admiral Jim Sandecker", "id": 3905, "credit_id": "52fe447cc3a36847f8098e41", "cast_id": 4, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 3}, {"name": "Lennie James", "character": "General Zateb Kazim", "id": 1120, "credit_id": "52fe447cc3a36847f8098e8d", "cast_id": 17, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 4}, {"name": "Lambert Wilson", "character": "Yves Massarde", "id": 2192, "credit_id": "52fe447cc3a36847f8098e91", "cast_id": 18, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 5}, {"name": "Rainn Wilson", "character": "Rudi Gunn", "id": 11678, "credit_id": "52fe447cc3a36847f8098e95", "cast_id": 19, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 6}, {"name": "Glynn Turman", "character": "Dr. Frank Hopper", "id": 114674, "credit_id": "52fe447cc3a36847f8098e99", "cast_id": 20, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 7}, {"name": "Clint Dyer", "character": "Oshodi", "id": 109383, "credit_id": "52fe447cc3a36847f8098e9d", "cast_id": 21, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 8}, {"name": "Delroy Lindo", "character": "Carl", "id": 18792, "credit_id": "52fe447cc3a36847f8098f19", "cast_id": 42, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 9}, {"name": "Robert Cavanah", "character": "Captain Tombs", "id": 20522, "credit_id": "52fe447cc3a36847f8098f1d", "cast_id": 43, "profile_path": "/gHuA2uTVZB8prxpzJozwGWli2kI.jpg", "order": 10}, {"name": "Jude Akuwudike", "character": "Imam", "id": 669820, "credit_id": "52fe447cc3a36847f8098f21", "cast_id": 44, "profile_path": null, "order": 11}, {"name": "Mark Aspinall", "character": "Lawyer", "id": 1126783, "credit_id": "52fe447cc3a36847f8098f25", "cast_id": 45, "profile_path": null, "order": 12}, {"name": "Rakie Ayola", "character": "Mrs. Nwokolo", "id": 195575, "credit_id": "52fe447cc3a36847f8098f29", "cast_id": 46, "profile_path": "/vCdshEaPP8lrClphIMwK65Wv2XA.jpg", "order": 13}, {"name": "Christopher Bello", "character": "Train Driver", "id": 177299, "credit_id": "52fe447cc3a36847f8098f2d", "cast_id": 47, "profile_path": null, "order": 14}, {"name": "Patrick Malahide", "character": "Ambassador Polidori", "id": 8979, "credit_id": "54680ed2eaeb8101300006ee", "cast_id": 50, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 15}], "directors": [{"name": "Breck Eisner", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f8098e47", "profile_path": "/cT090Hbxtk6xKEoWA516thQcHhp.jpg", "id": 52609}], "vote_average": 5.6, "runtime": 124}, "24438": {"poster_path": "/yBrceyep5ZWaU9XuodM1X5c67K6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78331000, "overview": "In New York City, an estranged couple who witness a murder are relocated to small-town Wyoming as part of a witness-protection program.", "video": false, "id": 24438, "genres": [{"id": 35, "name": "Comedy"}], "title": "Did You Hear About The Morgans?", "tagline": "We're not in Manhattan anymore.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1314228", "adult": false, "backdrop_path": "/fiYymtAvnCJGeYf5HsOo2CZUoRS.jpg", "production_companies": [{"name": "Banter", "id": 45726}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Castle Rock Entertainment", "id": 97}], "release_date": "2009-12-17", "popularity": 0.39067455221556, "original_title": "Did You Hear About The Morgans?", "budget": 58000000, "cast": [{"name": "Hugh Grant", "character": "Paul Morgan", "id": 3291, "credit_id": "52fe4496c3a368484e02b3df", "cast_id": 1, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Sarah Jessica Parker", "character": "Meryl Morgan", "id": 520, "credit_id": "52fe4496c3a368484e02b3e3", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 1}, {"name": "Natalia Klimas", "character": "Monique Rabelais", "id": 114310, "credit_id": "52fe4496c3a368484e02b41d", "cast_id": 14, "profile_path": null, "order": 2}, {"name": "Vincenzo Amato", "character": "Girard Rabelais", "id": 20588, "credit_id": "52fe4496c3a368484e02b421", "cast_id": 15, "profile_path": "/oIsX2gS7k4wGYspeQzhjxy2Jxnc.jpg", "order": 3}, {"name": "Jesse Liebman", "character": "Adam Feller", "id": 114311, "credit_id": "52fe4496c3a368484e02b425", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Elisabeth Moss", "character": "Jackie Drake", "id": 32798, "credit_id": "52fe4496c3a368484e02b429", "cast_id": 17, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 5}, {"name": "Michael Kelly", "character": "Vincent", "id": 50217, "credit_id": "52fe4496c3a368484e02b42d", "cast_id": 18, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 6}, {"name": "Sam Elliott", "character": "Clay Wheeler", "id": 16431, "credit_id": "52fe4496c3a368484e02b431", "cast_id": 19, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 7}, {"name": "Kim Shaw", "character": "Nurse Kelly", "id": 111685, "credit_id": "52fe4496c3a368484e02b435", "cast_id": 20, "profile_path": "/l849560Ag8pW8JAKdtJZYTHPTic.jpg", "order": 8}, {"name": "Seth Gilliam", "character": "U.S. Marshal Lasky", "id": 41688, "credit_id": "54d1160f9251417c1d00373e", "cast_id": 23, "profile_path": "/5XL7Nuzt58wXijlFbDJKDWYoLFQ.jpg", "order": 9}, {"name": "S\u00e1ndor T\u00e9csy", "character": "Anton Forenski", "id": 1422570, "credit_id": "54d11623c3a368430a003f27", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Kevin Brown", "character": "U.S. Marshal Henderson", "id": 207324, "credit_id": "54d11645c3a368431400375e", "cast_id": 25, "profile_path": "/kWYNzyF6tLtMWYXsvhvc9C6Fqo4.jpg", "order": 11}, {"name": "Steven Boyer", "character": "U.S. Marshal Ferber", "id": 1422571, "credit_id": "54d11658c3a368431e003b3a", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Sharon Wilkins", "character": "U.S. Marshal King", "id": 176695, "credit_id": "54d116689251413e0b002170", "cast_id": 27, "profile_path": "/sDuWTO0LZpvfPagJPshQWqOmeOE.jpg", "order": 13}, {"name": "Mary Steenburgen", "character": "Emma Wheeler", "id": 2453, "credit_id": "54d11689c3a368430a003f34", "cast_id": 29, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 15}], "directors": [{"name": "Marc Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4496c3a368484e02b43b", "profile_path": "/6842GmjEw9svtkqA3XhXWWNY7px.jpg", "id": 18323}], "vote_average": 4.9, "runtime": 103}, "187596": {"poster_path": "/tw8KLqgjlEaOc4i2Y1iPsG1o3Hw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59209, "overview": "A reporter's dream of becoming a news anchor is compromised after a one-night stand leaves her stranded in downtown L.A. without a phone, car, ID or money - and only 8 hours to make it to the most important job interview of her life.", "video": false, "id": 187596, "genres": [{"id": 35, "name": "Comedy"}], "title": "Walk of Shame", "tagline": "Awesome night. Epic aftermath.", "vote_count": 187, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2463288", "adult": false, "backdrop_path": "/dj6AwbjOJ1DLaPls1Ckwer0Izbz.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "FilmDistrict", "id": 7263}], "release_date": "2014-05-02", "popularity": 1.51756727599558, "original_title": "Walk of Shame", "budget": 15000000, "cast": [{"name": "Elizabeth Banks", "character": "Meghan Miles", "id": 9281, "credit_id": "52fe4d1f9251416c75130afb", "cast_id": 1, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 0}, {"name": "James Marsden", "character": "Gordon", "id": 11006, "credit_id": "52fe4d1f9251416c75130aff", "cast_id": 2, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Gillian Jacobs", "character": "Rose", "id": 94098, "credit_id": "52fe4d1f9251416c75130b03", "cast_id": 3, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 2}, {"name": "Ethan Suplee", "character": "Officer Dave", "id": 824, "credit_id": "52fe4d1f9251416c75130b07", "cast_id": 4, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 3}, {"name": "Sarah Mason", "character": "Denise", "id": 131723, "credit_id": "52fe4d1f9251416c75130b0b", "cast_id": 5, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 4}, {"name": "Oliver Hudson", "character": "Kyle", "id": 62692, "credit_id": "52fe4d1f9251416c75130b0f", "cast_id": 6, "profile_path": "/hdlPIJyKifjJUat5armDU3bRafM.jpg", "order": 5}, {"name": "Willie Garson", "character": "Dan", "id": 1542, "credit_id": "52fe4d1f9251416c75130b13", "cast_id": 7, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 6}, {"name": "Vic Chao", "character": "Shift Captain / Dispatch", "id": 109423, "credit_id": "52fe4d1f9251416c75130b1b", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Lawrence Gilliard Jr.", "character": "Scrilla", "id": 37947, "credit_id": "52fe4d1f9251416c75130b1f", "cast_id": 11, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 9}, {"name": "Ken Davitian", "character": "Cab Driver", "id": 6734, "credit_id": "52fe4d1f9251416c75130b23", "cast_id": 12, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 10}, {"name": "Alphonso McAuley", "character": "Pookie", "id": 60506, "credit_id": "52fe4d1f9251416c75130b27", "cast_id": 14, "profile_path": "/bF1VjbZ73yr6eX4UpRloJgFpW64.jpg", "order": 11}, {"name": "Da'Vone McDonald", "character": "Hulk", "id": 221945, "credit_id": "52fe4d1f9251416c75130b2f", "cast_id": 16, "profile_path": "/yZZR2uyPkieCrWXdlb7g57kQtka.jpg", "order": 13}, {"name": "Bill Burr", "character": "Officer Walter", "id": 109708, "credit_id": "52fe4d1f9251416c75130b5d", "cast_id": 24, "profile_path": "/fXvur9kJ3Pw9CWqHvEkvyyRVuuU.jpg", "order": 14}, {"name": "P. J. Byrne", "character": "Moshe", "id": 1211946, "credit_id": "52fe4d1f9251416c75130b61", "cast_id": 25, "profile_path": "/n0j7SKO9rcmAPrcB5LrHafSzZG1.jpg", "order": 15}, {"name": "Ann Reilly", "character": "Female Blooper Anchor #2", "id": 1353304, "credit_id": "53ee18460e0a26192e001faa", "cast_id": 34, "profile_path": "/cnqNa114m7DwzJcCKOnjsxmmRne.jpg", "order": 16}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe4d1f9251416c75130b35", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.6, "runtime": 95}, "236751": {"poster_path": "/70CMoPOVPRzBmZiW0DXSU8Yvukt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91443253, "overview": "Heaven Is for Real is the true story of the 4-year old son of a small-town Nebraska pastor who, during emergency surgery, slips from consciousness and enters heaven. When he awakes, he recounts his experiences on the other side.", "video": false, "id": 236751, "genres": [{"id": 18, "name": "Drama"}], "title": "Heaven Is for Real", "tagline": "Based on the incredible true story", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1929263", "adult": false, "backdrop_path": "/dAXDNDz1RuN3GjEFMnPVIAhmDP.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Roth Films", "id": 16314}], "release_date": "2014-04-16", "popularity": 0.988544750693954, "original_title": "Heaven Is for Real", "budget": 12000000, "cast": [{"name": "Greg Kinnear", "character": "Todd Burpo", "id": 17141, "credit_id": "52fe4e5fc3a36847f828cced", "cast_id": 3, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 0}, {"name": "Kelly Reilly", "character": "Sonja Burpo", "id": 17521, "credit_id": "52fe4e5fc3a36847f828ccf1", "cast_id": 4, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 1}, {"name": "Connor Corum", "character": "Colton", "id": 1271809, "credit_id": "52fe4e5fc3a36847f828ccf5", "cast_id": 5, "profile_path": "/rnH8IQg3vHdreEcQ1bW9dEAri0S.jpg", "order": 2}, {"name": "Thomas Haden Church", "character": "Jay Wilkins", "id": 19159, "credit_id": "52fe4e5fc3a36847f828ccf9", "cast_id": 6, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 3}, {"name": "Jon Ted Wynne", "character": "Mr. Jackson", "id": 945302, "credit_id": "52fe4e5fc3a36847f828ccfd", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Jacob Vargas", "character": "Michael", "id": 16429, "credit_id": "52fe4e5fc3a36847f828cd01", "cast_id": 8, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 5}, {"name": "Lane Styles", "character": "Cassie", "id": 1271810, "credit_id": "52fe4e5fc3a36847f828cd05", "cast_id": 9, "profile_path": "/5Q3K5wDZROkRNUUUZAS4BVfzAaP.jpg", "order": 6}, {"name": "Darren Felbel", "character": "Mr. Parker", "id": 1191551, "credit_id": "52fe4e5fc3a36847f828cd09", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Darcy Fehr", "character": "Lee Watson", "id": 117051, "credit_id": "52fe4e5fc3a36847f828cd0d", "cast_id": 11, "profile_path": "/nh7X2TlJpeTw6oF6z23ISD8fJJa.jpg", "order": 8}, {"name": "Ali Tataryn", "character": "Arch Angel #2", "id": 1116281, "credit_id": "52fe4e5fc3a36847f828cd11", "cast_id": 12, "profile_path": "/xRxzASuufQ35yTMaoksau1Ose6O.jpg", "order": 9}], "directors": [{"name": "Randall Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe4e5fc3a36847f828cce3", "profile_path": "/sHaZ1TAca9o8f4m8obTOt4p7tlg.jpg", "id": 2460}], "vote_average": 6.2, "runtime": 99}, "64720": {"poster_path": "/jFHe1RSju7m4EyRr7fP7QGq8QpO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 272521, "overview": "Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.", "video": false, "id": 64720, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Take Shelter", "tagline": "A Jeff Nichols Film", "vote_count": 95, "homepage": "http://www.sonyclassics.com/takeshelter/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1675192", "adult": false, "backdrop_path": "/28AjFSyQxqvMm2qVhJuHKsxonG8.jpg", "production_companies": [{"name": "Hydraulx", "id": 10936}, {"name": "REI Capital", "id": 21925}, {"name": "Grove Hill Productions", "id": 21926}, {"name": "Strange Matter Films", "id": 21927}], "release_date": "2011-11-25", "popularity": 0.456651219523622, "original_title": "Take Shelter", "budget": 5000000, "cast": [{"name": "Michael Shannon", "character": "Curtis", "id": 335, "credit_id": "52fe46e6c3a368484e0aa285", "cast_id": 3, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 0}, {"name": "Jessica Chastain", "character": "Samantha", "id": 83002, "credit_id": "52fe46e6c3a368484e0aa289", "cast_id": 4, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 1}, {"name": "Katy Mixon", "character": "Nat", "id": 59450, "credit_id": "52fe46e6c3a368484e0aa28d", "cast_id": 5, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 2}, {"name": "Shea Whigham", "character": "Dewart", "id": 74242, "credit_id": "52fe46e6c3a368484e0aa291", "cast_id": 6, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 3}, {"name": "Ray McKinnon", "character": "Kyle", "id": 1472, "credit_id": "52fe46e6c3a368484e0aa295", "cast_id": 7, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 4}, {"name": "Tova Stewart", "character": "Hannah", "id": 938292, "credit_id": "52fe46e6c3a368484e0aa2a5", "cast_id": 10, "profile_path": "/dMtjVG6jiimTyBujBQvjFlnWdyM.jpg", "order": 5}, {"name": "Natasha Randall", "character": "Cammie", "id": 938309, "credit_id": "52fe46e6c3a368484e0aa2a9", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Ron Kennard", "character": "Russell", "id": 1117503, "credit_id": "52fe46e6c3a368484e0aa2ad", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Scott Knisley", "character": "Lewis", "id": 1117504, "credit_id": "52fe46e6c3a368484e0aa2b1", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Robert Longstreet", "character": "Jim", "id": 79416, "credit_id": "52fe46e6c3a368484e0aa2b5", "cast_id": 14, "profile_path": "/kOPNnIzXzE2VbGlDBXLzOf2juwu.jpg", "order": 9}, {"name": "Heather Caldwell", "character": "Special Ed Teacher", "id": 1117505, "credit_id": "52fe46e6c3a368484e0aa2b9", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Sheila Hullihen", "character": "Woman in Road", "id": 1117506, "credit_id": "52fe46e6c3a368484e0aa2bd", "cast_id": 16, "profile_path": null, "order": 11}], "directors": [{"name": "Jeff Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe46e6c3a368484e0aa27b", "profile_path": "/iFuYiBcv29IbSVMtNaYYtkA0y5X.jpg", "id": 71872}], "vote_average": 7.2, "runtime": 120}, "48340": {"poster_path": "/vnfSwR7J5dI0fq3fqSz5T515jTu.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108943221, "overview": "The 3-D action-thriller Sanctum, from executive producer James Cameron, follows a team of underwater cave divers on a treacherous expedition to the largest, most beautiful and least accessible cave system on Earth. When a tropical storm forces them deep into the caverns, they must fight raging water, deadly terrain and creeping panic as they search for an unknown escape route to the sea. Master diver Frank McGuire (Richard Roxburgh) has explored the South Pacific's Esa-ala Caves for months. But when his exit is cut off in a flash flood, Frank's team--including 17-year-old son Josh (Rhys Wakefield) and financier Carl Hurley (Ioan Gruffudd)--are forced to radically alter plans. With dwindling supplies, the crew must navigate an underwater labyrinth to make it out. Soon, they are confronted with the unavoidable question: Can they survive, or will they be trapped forever?", "video": false, "id": 48340, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Sanctum", "tagline": "The only way out is down.", "vote_count": 82, "homepage": "http://www.sanctummovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0881320", "adult": false, "backdrop_path": "/6ywCpFiu0lxTNcOeXdkMIzACurg.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Wayfare Entertainment", "id": 5703}, {"name": "Great Wight Productions/ Osford Films", "id": 19960}, {"name": "Sanctum Australia", "id": 6490}, {"name": "Start Motion Pictures", "id": 19961}], "release_date": "2011-02-02", "popularity": 0.531435855217709, "original_title": "Sanctum", "budget": 30000000, "cast": [{"name": "Ioan Gruffudd", "character": "Carl Hurley", "id": 65524, "credit_id": "52fe4760c3a36847f8132575", "cast_id": 4, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 0}, {"name": "Richard Roxburgh", "character": "Frank McGuire", "id": 12206, "credit_id": "52fe4760c3a36847f8132579", "cast_id": 5, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 1}, {"name": "Alice Parkinson", "character": "Victoria Elaine", "id": 144286, "credit_id": "52fe4760c3a36847f813257d", "cast_id": 6, "profile_path": "/8dfn4pbCdvf1EYSJhMn4fTF2ZZZ.jpg", "order": 2}, {"name": "Rhys Wakefield", "character": "Josh McGuire", "id": 55899, "credit_id": "52fe4760c3a36847f8132581", "cast_id": 7, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 3}, {"name": "Daniel Wyllie", "character": "Crazy George", "id": 3062, "credit_id": "52fe4760c3a36847f8132585", "cast_id": 8, "profile_path": "/vOE8xx5mWUxamHWvAq5q07Ud2WO.jpg", "order": 4}, {"name": "Allison Cratchley", "character": "Judes", "id": 144287, "credit_id": "52fe4760c3a36847f8132589", "cast_id": 9, "profile_path": "/8Z5i8PPYPPa6TlkOsL77pefwM1R.jpg", "order": 5}, {"name": "Christopher James Baker", "character": "J.D.", "id": 59118, "credit_id": "52fe4760c3a36847f813258d", "cast_id": 10, "profile_path": "/m5MnqQQtgDPUmoPX9Zi0AC7hwzz.jpg", "order": 6}, {"name": "Nicole Downs", "character": "Liz", "id": 1291814, "credit_id": "52fe4760c3a36847f8132591", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Cramer Cain", "character": "Luko", "id": 948767, "credit_id": "52fe4760c3a36847f8132595", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Andrew Hansen", "character": "Dex", "id": 1227235, "credit_id": "52fe4760c3a36847f8132599", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "John Garvin", "character": "Jim Sergeant", "id": 140265, "credit_id": "52fe4760c3a36847f813259d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sean Dennehy", "character": "Chopper Pilot", "id": 559996, "credit_id": "52fe4760c3a36847f81325a1", "cast_id": 15, "profile_path": "/wPwLzkuDBM5bcitNk3G1JhZ50K6.jpg", "order": 11}, {"name": "Nea Diap", "character": "Kastom Shaman", "id": 971257, "credit_id": "52fe4760c3a36847f81325a5", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Alister Grierson", "department": "Directing", "job": "Director", "credit_id": "52fe4760c3a36847f8132565", "profile_path": null, "id": 59126}], "vote_average": 5.7, "runtime": 108}, "122081": {"poster_path": "/dd71jKm9j1AJEP8MDbHYrUAfdsD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31724284, "overview": "Brit, Candy, Cotty, and Faith have been best friends since grade school. They live together in a boring college dorm and are hungry for adventure. All they have to do is save enough money for spring break to get their shot at having some real fun. A serendipitous encounter with rapper \"Alien\" promises to provide the girls with all the thrill and excitement they could hope for. With the encouragement of their new friend, it soon becomes unclear how far the girls are willing to go to experience a spring break they will never forget.", "video": false, "id": 122081, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Spring Breakers", "tagline": "A little sun can bring out your dark side.", "vote_count": 567, "homepage": "http://www.springbreakersmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2101441", "adult": false, "backdrop_path": "/44njc1OWRwl5GGCYZ5OAuTIVkC.jpg", "production_companies": [{"name": "Radar Pictures", "id": 14718}, {"name": "Muse Productions", "id": 15231}, {"name": "O' Salvation", "id": 26676}, {"name": "Division Films", "id": 14036}, {"name": "Annapurna Pictures", "id": 13184}, {"name": "Iconoclast Films", "id": 26677}, {"name": "RabbitBandini Productions", "id": 8924}], "release_date": "2012-09-05", "popularity": 1.8242386795095, "original_title": "Spring Breakers", "budget": 5000000, "cast": [{"name": "James Franco", "character": "Alien", "id": 17051, "credit_id": "52fe4a74c3a368484e15452b", "cast_id": 3, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Selena Gomez", "character": "Faith", "id": 77948, "credit_id": "52fe4a74c3a368484e15452f", "cast_id": 4, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 1}, {"name": "Vanessa Hudgens", "character": "Candy", "id": 67599, "credit_id": "52fe4a74c3a368484e154537", "cast_id": 6, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 2}, {"name": "Ashley Benson", "character": "Brit", "id": 78030, "credit_id": "52fe4a74c3a368484e154533", "cast_id": 5, "profile_path": "/dxi0fMJ7CKGwnCuAGQMqqh7xbBW.jpg", "order": 3}, {"name": "Rachel Korine", "character": "Cotty", "id": 79504, "credit_id": "52fe4a74c3a368484e154543", "cast_id": 9, "profile_path": "/82yhTEX0fi0wZUV6x64LmTgAgSn.jpg", "order": 4}, {"name": "Gucci Mane", "character": "Archie", "id": 224228, "credit_id": "52fe4a75c3a368484e154587", "cast_id": 21, "profile_path": "/clBGlHeBJlQxcfYqncx0pyef710.jpg", "order": 5}, {"name": "Heather Morris", "character": "Bess", "id": 221606, "credit_id": "52fe4a74c3a368484e15453b", "cast_id": 7, "profile_path": "/koExd1GaoNDXtDe07DqfgIYpewC.jpg", "order": 6}, {"name": "Justin Wheelon", "character": "Matt", "id": 1046354, "credit_id": "52fe4a74c3a368484e15453f", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Emma Holzer", "character": "Heather", "id": 1075505, "credit_id": "52fe4a74c3a368484e154547", "cast_id": 10, "profile_path": null, "order": 8}], "directors": [{"name": "Harmony Korine", "department": "Directing", "job": "Director", "credit_id": "52fe4a75c3a368484e154559", "profile_path": "/eNayG8Ed0bJAdpqjWT5Ibk9Jnib.jpg", "id": 51918}], "vote_average": 4.9, "runtime": 94}, "15588": {"poster_path": "/5E0abFYCo7ePxebWxKdLGOEx06f.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "French top secret agent, Hubert Bonisseur de la Bath, is sent to Rio to buy microfilms from a running nazi. To do so, he has to team up with Mossad secret services.", "video": false, "id": 15588, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "OSS 117: Lost in Rio", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tWFDaP55PdguD0VfgYTWZ3NyfoK.jpg", "poster_path": "/bCrDUHGcncm51H21AyEyBN13W4t.jpg", "id": 91588, "name": "OSS 117 Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt1167660", "adult": false, "backdrop_path": "/gRZPAilYlNoaTApTk9FpibkqEyW.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "2009-04-14", "popularity": 0.471945562967766, "original_title": "OSS 117 : Rio ne r\u00e9pond plus", "budget": 31165200, "cast": [{"name": "Jean Dujardin", "character": "Hubert Bonisseur de la Bath, OSS 117", "id": 56024, "credit_id": "52fe46699251416c75077745", "cast_id": 4, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 0}, {"name": "Louise Monot", "character": "Dolor\u00e8s", "id": 78425, "credit_id": "52fe46699251416c75077749", "cast_id": 5, "profile_path": "/u0RFwvaNeGUuNpJOhfy3hGgiIUu.jpg", "order": 1}, {"name": "Pierre Bellemare", "character": "Armand Lesignac", "id": 583686, "credit_id": "52fe46699251416c7507774d", "cast_id": 6, "profile_path": "/bWkRv1MpIhMgcghUdoRiAhHhEtE.jpg", "order": 2}, {"name": "Reem Kherici", "character": "Fraulein Frieda", "id": 583687, "credit_id": "52fe46699251416c75077751", "cast_id": 7, "profile_path": "/9ivM4ugrzCAuSxhsropHXjUyEBk.jpg", "order": 3}, {"name": "R\u00fcdiger Vogler", "character": "Von Zimmel", "id": 5266, "credit_id": "52fe46699251416c75077755", "cast_id": 8, "profile_path": "/dUUXAwPRMkRdv5PSGv8ndWvztDW.jpg", "order": 4}, {"name": "Serge Hazanavicius", "character": "Staman", "id": 54274, "credit_id": "52fe46699251416c75077759", "cast_id": 9, "profile_path": "/42VGG0jLTFoRcbGZd0PTpQRYEKE.jpg", "order": 5}], "directors": [{"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe46699251416c75077735", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}], "vote_average": 7.1, "runtime": 100}, "49020": {"poster_path": "/ibYScMoDmBktoIZzUDFrhPpTPlH.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 864659, "overview": "15-year-old deep-thinker Oliver Tate struggles to initiate and maintain a relationship with Jordana, his devilish, dark-haired classmate. As his parents' marriage begins to fall apart, similar problems arise in his relationship with Jordana.", "video": false, "id": 49020, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Submarine", "tagline": "A comedy that doesn't let principles stand in the way of progress.", "vote_count": 89, "homepage": "http://warp.net/films/submarine", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1440292", "adult": false, "backdrop_path": "/jRHZDSOv7WUKaY3NfrwYSXH3uRC.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Film Agency for Wales", "id": 12177}, {"name": "Red Hour Films", "id": 12178}, {"name": "Warp (Submarine)", "id": 12179}, {"name": "Warp Films", "id": 12180}], "release_date": "2010-09-12", "popularity": 0.710800292440563, "original_title": "Submarine", "budget": 0, "cast": [{"name": "Craig Roberts", "character": "Oliver Tate", "id": 104561, "credit_id": "52fe4780c3a36847f81395dd", "cast_id": 6, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 0}, {"name": "Sally Hawkins", "character": "Jill Tate", "id": 39658, "credit_id": "52fe4780c3a36847f81395cd", "cast_id": 2, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 1}, {"name": "Paddy Considine", "character": "Graham Purvis", "id": 14887, "credit_id": "52fe4780c3a36847f81395d1", "cast_id": 3, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 2}, {"name": "Noah Taylor", "character": "Lloyd Tate", "id": 1284, "credit_id": "52fe4780c3a36847f81395d5", "cast_id": 4, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Gemma Chan", "character": "Kim-Lin", "id": 97576, "credit_id": "52fe4780c3a36847f81395d9", "cast_id": 5, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 4}, {"name": "Yasmin Paige", "character": "Jordana Bevan", "id": 81571, "credit_id": "52fe4781c3a36847f813966b", "cast_id": 31, "profile_path": "/t18rPozXhXpUDzKX6gWF0YBMrca.jpg", "order": 5}, {"name": "Darren Evans", "character": "Chips", "id": 32266, "credit_id": "52fe4781c3a36847f813966f", "cast_id": 32, "profile_path": null, "order": 6}, {"name": "Osian Cai Dulais", "character": "Mark Pritchard", "id": 1127671, "credit_id": "52fe4781c3a36847f8139673", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Lily McCann", "character": "Zoe Preece", "id": 1127672, "credit_id": "52fe4781c3a36847f8139677", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Otis Lloyd", "character": "Keiron", "id": 1127673, "credit_id": "52fe4781c3a36847f813967b", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Elinor Crawley", "character": "Abby Smuts", "id": 972115, "credit_id": "52fe4781c3a36847f813967f", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Steffan Rhodri", "character": "Mr. Davey", "id": 143892, "credit_id": "52fe4781c3a36847f8139683", "cast_id": 37, "profile_path": "/4bptQdwRKCMveddkpZdCvDwcsHQ.jpg", "order": 11}, {"name": "Melanie Walters", "character": "Jude Bevan", "id": 220587, "credit_id": "52fe4781c3a36847f8139687", "cast_id": 38, "profile_path": "/293QtM0BJBkb5sd5PPb8fk3vOxT.jpg", "order": 12}, {"name": "Sion Tudor Owen", "character": "Brynn Bevan", "id": 189433, "credit_id": "52fe4781c3a36847f813968b", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Lydia Fox", "character": "Miss Dutton", "id": 208526, "credit_id": "52fe4781c3a36847f813968f", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Ben Stiller", "character": "Soap Opera Star", "id": 7399, "credit_id": "52fe4781c3a36847f8139693", "cast_id": 41, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 15}], "directors": [{"name": "Richard Ayoade", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f81395c9", "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "id": 98103}], "vote_average": 7.6, "runtime": 97}, "8204": {"poster_path": "/nSLjsBDzwsIpQL534CNfAKidyAm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162839667, "overview": "Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.", "video": false, "id": 8204, "genres": [{"id": 14, "name": "Fantasy"}], "title": "The Spiderwick Chronicles", "tagline": "Their World Is Closer Than You Think.", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416236", "adult": false, "backdrop_path": "/2Uwv3eUDRJ9UcjN8AlSg4GDm6TN.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Gotham Group", "id": 3672}, {"name": "Spiderwick Productions", "id": 20342}], "release_date": "2008-02-14", "popularity": 0.391512781716737, "original_title": "The Spiderwick Chronicles", "budget": 90000000, "cast": [{"name": "Freddie Highmore", "character": "Simon", "id": 1281, "credit_id": "52fe4495c3a36847f809e799", "cast_id": 9, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Sarah Bolger", "character": "Mallory", "id": 33397, "credit_id": "52fe4495c3a36847f809e79d", "cast_id": 10, "profile_path": "/qDpy6RQYxk42R4ZrIFK3eq13bC2.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Mulgarath", "id": 1733, "credit_id": "52fe4495c3a36847f809e7a7", "cast_id": 12, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Mary-Louise Parker", "character": "Helen Grace", "id": 18248, "credit_id": "52fe4495c3a36847f809e7ab", "cast_id": 13, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 3}, {"name": "David Strathairn", "character": "Arthur Spiderwick", "id": 11064, "credit_id": "52fe4495c3a36847f809e7af", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 4}, {"name": "Martin Short", "character": "Thimbletack (voice)", "id": 519, "credit_id": "52fe4495c3a36847f809e7b3", "cast_id": 15, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 5}, {"name": "Andrew McCarthy", "character": "Richard Grace", "id": 37041, "credit_id": "52fe4495c3a36847f809e7b7", "cast_id": 16, "profile_path": "/5ChWnInkq2BDpIT1Yoa9guqLiQS.jpg", "order": 6}, {"name": "Joan Plowright", "character": "Aunt Lucinda Spiderwick", "id": 23709, "credit_id": "52fe4495c3a36847f809e7bb", "cast_id": 18, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 7}, {"name": "Jordy Benattar", "character": "Young Lucinda", "id": 8712, "credit_id": "52fe4495c3a36847f809e7bf", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Tod Fennell", "character": "Helen's Co-Worker", "id": 8321, "credit_id": "52fe4495c3a36847f809e7c3", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe4495c3a36847f809e771", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.9, "runtime": 96}, "38319": {"poster_path": "/d0P3WWy3Fc3JuORpdkkHhPrhlVc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26121638, "overview": "A fantasy movie about an arrogant, lazy prince and his more heroic brother who must complete a quest in order to save their father's kingdom.", "video": false, "id": 38319, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Your Highness", "tagline": "Get your quest on.", "vote_count": 162, "homepage": "http://www.yourhighnessmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1240982", "adult": false, "backdrop_path": "/8rxetgG9pp2diwH23HgpC9Coghi.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Stuber Productions", "id": 4403}], "release_date": "2011-04-08", "popularity": 0.698954905441318, "original_title": "Your Highness", "budget": 49000000, "cast": [{"name": "Natalie Portman", "character": "Isabel", "id": 524, "credit_id": "52fe46ab9251416c9105bc8f", "cast_id": 4, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Belladonna", "id": 11664, "credit_id": "52fe46ab9251416c9105bc93", "cast_id": 5, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "James Franco", "character": "Fabious", "id": 17051, "credit_id": "52fe46ab9251416c9105bc97", "cast_id": 6, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Danny McBride", "character": "Thadeous", "id": 62862, "credit_id": "52fe46ab9251416c9105bc9b", "cast_id": 7, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 3}, {"name": "Michael Clarke Duncan", "character": "The Giant Troll", "id": 61981, "credit_id": "52fe46ab9251416c9105bc9f", "cast_id": 8, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 4}, {"name": "Justin Theroux", "character": "Leezar", "id": 15009, "credit_id": "52fe46ab9251416c9105bcaf", "cast_id": 11, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 5}, {"name": "Rasmus Hardiker", "character": "Courtney", "id": 205725, "credit_id": "52fe46ab9251416c9105bcb3", "cast_id": 12, "profile_path": "/hOI4S9JPbNRMfnZTLHLrpBWb2GH.jpg", "order": 6}, {"name": "Damian Lewis", "character": "Boremont", "id": 20186, "credit_id": "52fe46ab9251416c9105bcb7", "cast_id": 13, "profile_path": "/3cQpH6BvgK8C1TmcVYC9BPaICUB.jpg", "order": 7}, {"name": "Toby Jones", "character": "Julie", "id": 13014, "credit_id": "52fe46ab9251416c9105bcbb", "cast_id": 14, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Charles Dance", "character": "King Tallious", "id": 4391, "credit_id": "52fe46ab9251416c9105bcbf", "cast_id": 15, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 9}, {"name": "Simon Farnaby", "character": "Manious the Bold", "id": 114253, "credit_id": "52fe46ab9251416c9105bcc3", "cast_id": 16, "profile_path": "/3u1ObLUvaTyEMmpWQnkRg5Trlng.jpg", "order": 10}, {"name": "Deobia Oparei", "character": "Thundarian", "id": 58758, "credit_id": "52fe46ab9251416c9105bcc7", "cast_id": 17, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 11}, {"name": "B.J. Hogg", "character": "Royal Advisor", "id": 82142, "credit_id": "52fe46ab9251416c9105bccb", "cast_id": 18, "profile_path": "/fBx6rB5IcS8O297qcPmvodph7O5.jpg", "order": 12}, {"name": "Matyelok Gibbs", "character": "Mother", "id": 17479, "credit_id": "52fe46ab9251416c9105bccf", "cast_id": 19, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 13}, {"name": "Angela Pleasence", "character": "Mother", "id": 37440, "credit_id": "52fe46ab9251416c9105bcd3", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Anna Barry", "character": "Mother", "id": 189320, "credit_id": "52fe46ab9251416c9105bcd7", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Amber Anderson", "character": "Maiden", "id": 1121198, "credit_id": "52fe46ab9251416c9105bcdb", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "John Fricker", "character": "Marteetee", "id": 1121199, "credit_id": "52fe46ab9251416c9105bcdf", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Charles Shaughnessy", "character": "Narrator / Soul of the Maze", "id": 63474, "credit_id": "52fe46ab9251416c9105bce3", "cast_id": 24, "profile_path": "/cS7JLeMXZ4d0flSsNt8kfPejmYx.jpg", "order": 18}, {"name": "Rhian Sugden", "character": "Forest Woman", "id": 1121200, "credit_id": "52fe46ab9251416c9105bce7", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Amii Grove", "character": "Forest Woman", "id": 1121201, "credit_id": "52fe46ab9251416c9105bceb", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Madison Welch", "character": "Forest Woman", "id": 1121202, "credit_id": "52fe46ab9251416c9105bcef", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Eva Wyrwal", "character": "Regina", "id": 1121203, "credit_id": "52fe46ab9251416c9105bcf3", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Brian Steele", "character": "Minotaur", "id": 12359, "credit_id": "52fe46ab9251416c9105bcf7", "cast_id": 29, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 23}, {"name": "David Garrick", "character": "Daronius the Swift", "id": 1121204, "credit_id": "52fe46ab9251416c9105bcfb", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Caroline Grace-Cassidy", "character": "Handmaiden", "id": 1121205, "credit_id": "52fe46ab9251416c9105bcff", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Julian Rhind-Tutt", "character": "Warlock", "id": 7031, "credit_id": "52fe46ab9251416c9105bd03", "cast_id": 32, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 26}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe46ab9251416c9105bc7f", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 5.2, "runtime": 102}, "49022": {"poster_path": "/yQ7xDM7y0mIAuvkRoOFOuxhv0Zy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59901913, "overview": "Though Rachel (Ginnifer Goodwin) is a successful attorney and a loyal, generous friend, she is still single. After one drink too many at her 30th-birthday celebration, Rachel unexpectedly falls into bed with her longtime crush, Dex -- who happens to be engaged to her best friend, Darcy (Kate Hudson). Ramifications of the liaison threaten to destroy the women's lifelong friendship, while Ethan (John Krasinski), Rachel's confidant, harbors a potentially explosive secret of his own.", "video": false, "id": 49022, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Something Borrowed", "tagline": "It's a thin line between love and friendship.", "vote_count": 75, "homepage": "http://somethingborrowedmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0491152", "adult": false, "backdrop_path": "/zsyu6szRiyS1BSEqWQcHegV9uSO.jpg", "production_companies": [{"name": "Wild Ocean Films", "id": 38010}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "2S Films", "id": 38011}], "release_date": "2011-05-05", "popularity": 0.444608252650567, "original_title": "Something Borrowed", "budget": 35000000, "cast": [{"name": "Kate Hudson", "character": "Darcy", "id": 11661, "credit_id": "52fe4781c3a36847f81397d5", "cast_id": 6, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Ginnifer Goodwin", "character": "Rachel", "id": 417, "credit_id": "52fe4781c3a36847f81397d9", "cast_id": 7, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 1}, {"name": "John Krasinski", "character": "Ethan", "id": 17697, "credit_id": "52fe4781c3a36847f81397dd", "cast_id": 8, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 2}, {"name": "Colin Egglesfield", "character": "Dex", "id": 83225, "credit_id": "52fe4781c3a36847f81397e5", "cast_id": 10, "profile_path": "/ggHUyXwcrxFjSFKwSJOFvV1b0be.jpg", "order": 3}, {"name": "Ashley Williams", "character": "Claire", "id": 122888, "credit_id": "52fe4781c3a36847f81397e1", "cast_id": 9, "profile_path": "/fq4hNuLVpsbrnzjPCtoFIcf3nXN.jpg", "order": 4}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe4781c3a36847f81397d1", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 5.8, "runtime": 112}, "198287": {"poster_path": "/eVChSWb5FJC9tZRfVmEAavhQMLo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "At an international school in Jakarta, a philosophy teacher challenges his class of twenty graduating seniors to choose which ten of them would take shelter underground and reboot the human race in the event of a nuclear apocalypse.", "video": false, "id": 198287, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "After the Dark", "tagline": "", "vote_count": 70, "homepage": "http://www.anolivebranchmedia.com/philosophers.htm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1928340", "adult": false, "backdrop_path": "/lptL0NT1XHMTxbedSPLSuf0b66r.jpg", "production_companies": [{"name": "An Olive Branch Productions", "id": 8689}, {"name": "SCTV", "id": 18829}], "release_date": "2014-02-07", "popularity": 0.485831236871136, "original_title": "The Philosophers", "budget": 0, "cast": [{"name": "James D'Arcy", "character": "Mr. Zimit", "id": 19655, "credit_id": "52fe4d779251416c91116feb", "cast_id": 1, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 0}, {"name": "Sophie Lowe", "character": "Petra", "id": 103994, "credit_id": "52fe4d779251416c91116fef", "cast_id": 3, "profile_path": "/rckY6LcOMB2XRRW2IsMhKEzKnx9.jpg", "order": 1}, {"name": "Freddie Stroma", "character": "Jack", "id": 234934, "credit_id": "52fe4d779251416c91116ff7", "cast_id": 5, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 3}, {"name": "Rhys Wakefield", "character": "James", "id": 55899, "credit_id": "52fe4d779251416c91116ffb", "cast_id": 6, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 4}, {"name": "Bonnie Wright", "character": "Georgina", "id": 10991, "credit_id": "52fe4d779251416c91116fff", "cast_id": 7, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 5}, {"name": "Maia Mitchell", "character": "Beatrice", "id": 992366, "credit_id": "52fe4d779251416c9111700f", "cast_id": 10, "profile_path": "/1ggNur1TDBuag5X3GlL3I9AuyXb.jpg", "order": 6}, {"name": "Katie Findlay", "character": "Bonnie", "id": 1257387, "credit_id": "52fe4d779251416c91117013", "cast_id": 11, "profile_path": "/kaswatZOHY8KzTCH9goUs1jX5VX.jpg", "order": 7}, {"name": "Jacob Artist", "character": "Parker", "id": 1074888, "credit_id": "52fe4d779251416c91117017", "cast_id": 12, "profile_path": "/novsAlYfcku1PCQiZRN7pOnzolA.jpg", "order": 8}, {"name": "George Blagden", "character": "Andy", "id": 1256160, "credit_id": "52fe4d779251416c9111701b", "cast_id": 13, "profile_path": "/yzdb0mV2POyK3Afq1Uoa4QxrHlU.jpg", "order": 9}, {"name": "Cinta Laura Kiehl", "character": "Utami", "id": 1283686, "credit_id": "52fe4d779251416c9111701f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Toby Sebastian", "character": "Russell", "id": 1290501, "credit_id": "52fe4d779251416c91117027", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Erin Moriarty", "character": "Vivian", "id": 990393, "credit_id": "54434433c3a3683e0b003bca", "cast_id": 51, "profile_path": "/v0jDVSB0HugI3mRjkirOgLBawM7.jpg", "order": 13}], "directors": [{"name": "John Huddles", "department": "Directing", "job": "Director", "credit_id": "52fe4d779251416c9111700b", "profile_path": null, "id": 91382}], "vote_average": 6.2, "runtime": 100}, "10796": {"poster_path": "/baw9Zdb1zJDWs4iJBrmfWKnx62p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.", "video": false, "id": 10796, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The One", "tagline": "Stealing the power of the universes one by one.", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0267804", "adult": false, "backdrop_path": "/nCK3Api5TteYOhbc7JTrbcD9OlO.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}], "release_date": "2001-11-02", "popularity": 0.921616145500037, "original_title": "The One", "budget": 49000000, "cast": [{"name": "Jet Li", "character": "Gabe Law / Gabriel Yulaw / Lawless", "id": 1336, "credit_id": "52fe43b89251416c7501b90d", "cast_id": 13, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Jason Statham", "character": "MVA Agent Evan Funsch", "id": 976, "credit_id": "52fe43b89251416c7501b909", "cast_id": 12, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Carla Gugino", "character": "T.K. Law / Massie Walsh", "id": 17832, "credit_id": "52fe43b89251416c7501b905", "cast_id": 11, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 2}, {"name": "Delroy Lindo", "character": "MVA Agent Harry Roedecker / Gas Station Attendant", "id": 18792, "credit_id": "52fe43b89251416c7501b911", "cast_id": 14, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 3}, {"name": "James Morrison", "character": "LAPD Officer Bobby Aldrich / 'A' World Inmate #1", "id": 62003, "credit_id": "52fe43b89251416c7501b915", "cast_id": 15, "profile_path": "/1i72tqL3kSv4BbOvsu8CyDwkKJ0.jpg", "order": 4}, {"name": "Dylan Bruno", "character": "Yates", "id": 52476, "credit_id": "52fe43b89251416c7501b919", "cast_id": 16, "profile_path": "/pNOG54RGO9sCKzbpM33pUEr9F2Y.jpg", "order": 5}, {"name": "Richard Steinmetz", "character": "D'Antoni", "id": 129124, "credit_id": "52fe43b89251416c7501b91d", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Steve Rankin", "character": "MVA Supervisor", "id": 10137, "credit_id": "52fe43b89251416c7501b921", "cast_id": 18, "profile_path": "/5qMs4c4I7tcmubYy0xqBU7BVwSm.jpg", "order": 7}, {"name": "Tucker Smallwood", "character": "Prison Warden", "id": 92777, "credit_id": "52fe43b89251416c7501b925", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Harriet Sansom Harris", "character": "Nurse Besson", "id": 538, "credit_id": "52fe43b89251416c7501b929", "cast_id": 20, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 9}, {"name": "David Keats", "character": "MRI Technician", "id": 141489, "credit_id": "52fe43b99251416c7501b92d", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Dean Norris", "character": "Sgt. Siegel", "id": 14329, "credit_id": "52fe43b99251416c7501b931", "cast_id": 22, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 11}, {"name": "Ron Zimmerman", "character": "Rotten Ronnie", "id": 141490, "credit_id": "52fe43b99251416c7501b935", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Darin Morgan", "character": "Hugo", "id": 141491, "credit_id": "52fe43b99251416c7501b939", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Mark Borchardt", "character": "Cesar", "id": 87794, "credit_id": "52fe43b99251416c7501b93d", "cast_id": 25, "profile_path": "/d9uBnnjwDNe6fcuFx0YgNInCJdq.jpg", "order": 14}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe43b89251416c7501b8cb", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 5.8, "runtime": 87}, "171274": {"poster_path": "/uc5sYJg8wH0RmkIMv5iqHNsP3a6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Los Angeles at the turn of the 1970s, drug-fueled detective Larry \"Doc\" Sportello investigates the disappearance of an ex-girlfriend.", "video": false, "id": 171274, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Inherent Vice", "tagline": "Under the paving stones, the beach!", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1791528", "adult": false, "backdrop_path": "/whV2SlkXyH2fWf7a92SGwFQVMTZ.jpg", "production_companies": [{"name": "Ghoulardi Film Company", "id": 178}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2014-12-12", "popularity": 7.23321834799509, "original_title": "Inherent Vice", "budget": 20000000, "cast": [{"name": "Joaquin Phoenix", "character": "Doc Sportello", "id": 73421, "credit_id": "52fe4d07c3a36847f824ad45", "cast_id": 1, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Bigfoot Bjornsen", "id": 16851, "credit_id": "53190b5792514177bf001880", "cast_id": 22, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Coy Harlingen", "id": 887, "credit_id": "52fe4d08c3a36847f824ad67", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Katherine Waterston", "character": "Shasta Fay Hepworth", "id": 77795, "credit_id": "53190b6392514177b400197a", "cast_id": 23, "profile_path": "/fc8hqenrbXWohV83MeEIUC5L06t.jpg", "order": 3}, {"name": "Reese Witherspoon", "character": "Penny", "id": 368, "credit_id": "52fe4d08c3a36847f824ad6f", "cast_id": 9, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 4}, {"name": "Benicio del Toro", "character": "Sauncho Smilax", "id": 1121, "credit_id": "52fe4d08c3a36847f824ad6b", "cast_id": 8, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 5}, {"name": "Jena Malone", "character": "Hope Harlingen", "id": 20089, "credit_id": "52fe4d08c3a36847f824ad73", "cast_id": 10, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 6}, {"name": "Maya Rudolph", "character": "Petunia Leeway", "id": 52792, "credit_id": "53190b8392514177ae0018b6", "cast_id": 25, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 7}, {"name": "Martin Short", "character": "Dr. Rudy Blatnoyd", "id": 519, "credit_id": "52fe4d08c3a36847f824ad77", "cast_id": 11, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 8}, {"name": "Martin Donovan", "character": "Crocker Fenway", "id": 42993, "credit_id": "538ce190c3a3687155003324", "cast_id": 28, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 9}, {"name": "Sasha Pieterse", "character": "Japonica Fenway", "id": 62168, "credit_id": "53190b7592514177ab0018d8", "cast_id": 24, "profile_path": "/u9LYoHhqb9d4JAhQ7aakfri2R3C.jpg", "order": 10}, {"name": "Eric Roberts", "character": "Mickey Wolfmann", "id": 21315, "credit_id": "538ce13ec3a368713c00344d", "cast_id": 27, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 11}, {"name": "Michael Kenneth Williams", "character": "Tariq Khalil", "id": 39390, "credit_id": "542a070e0e0a2650e60004d2", "cast_id": 31, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 12}, {"name": "Joanna Newsom", "character": "Sortil\u00e8ge", "id": 1412012, "credit_id": "54b1b1df9251412ae7001d94", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Jeannie Berlin", "character": "Aunt Reet", "id": 124377, "credit_id": "54b1b1f49251416f2c002324", "cast_id": 33, "profile_path": "/gWaprEjboz0FeIZuNzH71JjFQKQ.jpg", "order": 14}, {"name": "Serena Scott Thomas", "character": "Sloane Wolfmann", "id": 10780, "credit_id": "54b1b20b9251417472002a99", "cast_id": 34, "profile_path": "/dvTjb6V46wOo9JGgcViU54UoZNN.jpg", "order": 15}, {"name": "Hong Chau", "character": "Jade", "id": 1360317, "credit_id": "54b1b220c3a36809510029a9", "cast_id": 35, "profile_path": "/Bf2hoLVNcwLxb6LGeSlWaEJmHB.jpg", "order": 16}, {"name": "Christopher Allen Nelson", "character": "Glenn Charlock", "id": 6446, "credit_id": "54b1b233925141746c0027f9", "cast_id": 36, "profile_path": "/pbXe8gRR81onTWMPrOwrNZaqIoS.jpg", "order": 17}, {"name": "Sam Jaeger", "character": "Agent Flatweed", "id": 65727, "credit_id": "54b1b244c3a368094a00255e", "cast_id": 37, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 18}, {"name": "Timothy Simons", "character": "Agent Borderline", "id": 1181329, "credit_id": "54b1b24ec3a3680940002b2c", "cast_id": 38, "profile_path": "/czKmLeQIELIeR4Zpn6msqdYNHuW.jpg", "order": 19}, {"name": "Jillian Bell", "character": "Chlorinda", "id": 1226302, "credit_id": "54b1b25b9251417472002aa8", "cast_id": 39, "profile_path": "/kcMhnv8e1RVInN14D0UMGEaUT5a.jpg", "order": 20}, {"name": "Christian Williams", "character": "Smedley", "id": 1222834, "credit_id": "54b1b27f9251417479002788", "cast_id": 43, "profile_path": null, "order": 24}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4d07c3a36847f824ad51", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 6.3, "runtime": 148}, "8066": {"poster_path": "/gseatc9N1a4zsaHC4cda7txOiAZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sam Foster (Ewan McGregor), a psychiatrist, has a new patient, Henry Letham (Ryan Gosling), who claims to be suicidal. In trying to diagnose him, Sam visits Henry's prior therapist (Janeane Garofalo) and also finds Henry's mother -- even though Henry has said that he murdered both of his parents. As reality starts to contradict fact, Sam spirals into an unstable mental state. Then he finds a clue as to how and when Henry may try to kill himself, and races to try to stop him.", "video": false, "id": 8066, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Stay", "tagline": "Between the worlds of the living and the dead there is a place you're not supposed to stay.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371257", "adult": false, "backdrop_path": "/dpo2SgBttTkiWwqdjsC74lv0lOO.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2005-09-24", "popularity": 0.97054954683276, "original_title": "Stay", "budget": 50000000, "cast": [{"name": "Ewan McGregor", "character": "Sam Foster", "id": 3061, "credit_id": "52fe4490c3a36847f809d3c5", "cast_id": 3, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "Henry Letham", "id": 30614, "credit_id": "52fe4490c3a36847f809d3c9", "cast_id": 4, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Naomi Watts", "character": "Lila Culpepper", "id": 3489, "credit_id": "52fe4490c3a36847f809d3cd", "cast_id": 5, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 2}, {"name": "Kate Burton", "character": "Mrs. Letham", "id": 20879, "credit_id": "52fe4490c3a36847f809d3d1", "cast_id": 6, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 3}, {"name": "Elizabeth Reaser", "character": "Athena", "id": 53755, "credit_id": "52fe4490c3a36847f809d3d5", "cast_id": 7, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 4}, {"name": "Bob Hoskins", "character": "Dr. Leon Patterson", "id": 382, "credit_id": "52fe4490c3a36847f809d3d9", "cast_id": 8, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 5}, {"name": "Janeane Garofalo", "character": "Dr. Beth Levy", "id": 21197, "credit_id": "52fe4490c3a36847f809d3dd", "cast_id": 9, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 6}, {"name": "Jessica Hecht", "character": "Boy's Mother", "id": 14984, "credit_id": "52fe4490c3a36847f809d3e1", "cast_id": 10, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 7}, {"name": "BD Wong", "character": "Bradley Ren", "id": 14592, "credit_id": "53fff5620e0a2658ee00149f", "cast_id": 20, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 8}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5800e0a2658e60013f7", "cast_id": 21, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 9}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5810e0a2658e60013f9", "cast_id": 22, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 10}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5810e0a2658de001471", "cast_id": 23, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 11}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5810e0a2658e9001435", "cast_id": 24, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 12}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58ec3a3684360000d40", "cast_id": 25, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 13}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58f0e0a2658f10013e0", "cast_id": 26, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 14}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58f0e0a2658e200140f", "cast_id": 27, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 15}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58f0e0a2658f10013e2", "cast_id": 28, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 16}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe4490c3a36847f809d3bb", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.3, "runtime": 99}, "72976": {"poster_path": "/gkkiDu9srCCbCMxGKwNwKCxK7KF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 275293450, "overview": "A revealing drama that focuses on the 16th President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.", "video": false, "id": 72976, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Lincoln", "tagline": "", "vote_count": 611, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443272", "adult": false, "backdrop_path": "/haOTy0A9tMaoEEWdoaGavBnPQfY.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Participant Media", "id": 6735}, {"name": "Dune Entertainment", "id": 444}, {"name": "Amblin Entertainment", "id": 56}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2012-11-16", "popularity": 1.0351425524543, "original_title": "Lincoln", "budget": 50000000, "cast": [{"name": "Daniel Day-Lewis", "character": "Abraham Lincoln", "id": 11856, "credit_id": "52fe4886c3a368484e0fd425", "cast_id": 4, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 0}, {"name": "Sally Field", "character": "Mary Todd Lincoln", "id": 35, "credit_id": "52fe4886c3a368484e0fd435", "cast_id": 8, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "David Strathairn", "character": "William Seward", "id": 11064, "credit_id": "52fe4886c3a368484e0fd445", "cast_id": 12, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Joseph Gordon-Levitt", "character": "Robert Lincoln", "id": 24045, "credit_id": "52fe4886c3a368484e0fd429", "cast_id": 5, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 3}, {"name": "James Spader", "character": "WN Bilbo", "id": 13548, "credit_id": "52fe4886c3a368484e0fd431", "cast_id": 7, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Preston Blair", "id": 11066, "credit_id": "52fe4886c3a368484e0fd45b", "cast_id": 17, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Tommy Lee Jones", "character": "Thaddeus Stevens", "id": 2176, "credit_id": "52fe4886c3a368484e0fd42d", "cast_id": 6, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 6}, {"name": "Lee Pace", "character": "Fernando Wood", "id": 72095, "credit_id": "52fe4886c3a368484e0fd439", "cast_id": 9, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 7}, {"name": "Jackie Earle Haley", "character": "Alexander Stephens", "id": 17183, "credit_id": "52fe4886c3a368484e0fd43d", "cast_id": 10, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 8}, {"name": "Jared Harris", "character": "Ulysses S. Grant", "id": 15440, "credit_id": "52fe4886c3a368484e0fd441", "cast_id": 11, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 9}, {"name": "Bruce McGill", "character": "Edwin Stanton", "id": 14888, "credit_id": "52fe4886c3a368484e0fd44d", "cast_id": 14, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 10}, {"name": "Walton Goggins", "character": "Wells A. Hutchins", "id": 27740, "credit_id": "52fe4886c3a368484e0fd451", "cast_id": 15, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 11}, {"name": "Tim Blake Nelson", "character": "Richard Schell", "id": 1462, "credit_id": "52fe4886c3a368484e0fd489", "cast_id": 32, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 12}, {"name": "Boris McGiver", "character": "Alexander Coffroth", "id": 151432, "credit_id": "52fe4886c3a368484e0fd499", "cast_id": 35, "profile_path": "/jwbNYQ92bT38FTthAHHxoE48pKp.jpg", "order": 13}, {"name": "Adam Driver", "character": "Samuel Beckwith", "id": 1023139, "credit_id": "52fe4886c3a368484e0fd449", "cast_id": 13, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 14}, {"name": "John Hawkes", "character": "Robert Latham", "id": 16861, "credit_id": "52fe4886c3a368484e0fd49d", "cast_id": 36, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 15}, {"name": "Joseph Cross", "character": "John Hay", "id": 33528, "credit_id": "52fe4886c3a368484e0fd4a1", "cast_id": 37, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 16}, {"name": "Peter McRobbie", "character": "George Pendleton", "id": 19489, "credit_id": "52fe4886c3a368484e0fd4a5", "cast_id": 38, "profile_path": "/kx0PjY89aGd3WX1Bf1zSw3lKYvg.jpg", "order": 17}, {"name": "Gulliver McGrath", "character": "Tad Lincoln", "id": 234983, "credit_id": "52fe4886c3a368484e0fd4a9", "cast_id": 39, "profile_path": "/jpDJNQtrtHMPqpssxd8RudVhn5x.jpg", "order": 18}, {"name": "Gloria Reuben", "character": "Elizabeth Keckley", "id": 21369, "credit_id": "52fe4886c3a368484e0fd4ad", "cast_id": 40, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 19}, {"name": "Jeremy Strong", "character": "John Nicolay", "id": 239271, "credit_id": "52fe4886c3a368484e0fd4b1", "cast_id": 41, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 20}, {"name": "Michael Stuhlbarg", "character": "George Yeaman", "id": 72873, "credit_id": "52fe4886c3a368484e0fd4b5", "cast_id": 42, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 21}, {"name": "David Costabile", "character": "James Ashley", "id": 82167, "credit_id": "52fe4886c3a368484e0fd4b9", "cast_id": 43, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 22}, {"name": "Stephen Spinella", "character": "Asa Vintner Litton", "id": 57093, "credit_id": "52fe4886c3a368484e0fd4bd", "cast_id": 44, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 23}, {"name": "Walton Goggins", "character": "Clay Hawkins", "id": 27740, "credit_id": "52fe4886c3a368484e0fd4c1", "cast_id": 45, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 24}, {"name": "David Warshofsky", "character": "William Hutton", "id": 37204, "credit_id": "52fe4886c3a368484e0fd4c5", "cast_id": 46, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 25}, {"name": "Colman Domingo", "character": "Private Harold Green", "id": 91671, "credit_id": "52fe4886c3a368484e0fd4c9", "cast_id": 47, "profile_path": "/otQg0XX0fSnnOHZphdWwwjJc8lA.jpg", "order": 26}, {"name": "Lukas Haas", "character": "First White Soldier", "id": 526, "credit_id": "52fe4886c3a368484e0fd4cd", "cast_id": 48, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 27}, {"name": "Dane DeHaan", "character": "Second White Soldier", "id": 122889, "credit_id": "52fe4886c3a368484e0fd4d1", "cast_id": 49, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 28}, {"name": "Bill Camp", "character": "Mr.Jolly", "id": 121718, "credit_id": "52fe4886c3a368484e0fd4d5", "cast_id": 50, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 29}, {"name": "Elizabeth Marvel", "character": "Mrs. Jolly", "id": 126713, "credit_id": "52fe4886c3a368484e0fd4d9", "cast_id": 51, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 30}, {"name": "Julie White", "character": "Elizabeth Blair Lee", "id": 24305, "credit_id": "52fe4886c3a368484e0fd4dd", "cast_id": 52, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 31}, {"name": "Byron Jennings", "character": "Montgomery Blair", "id": 941524, "credit_id": "52fe4886c3a368484e0fd4e1", "cast_id": 53, "profile_path": "/mEZAdDNFDO6pEcyfeIVz0JERoM8.jpg", "order": 32}, {"name": "Richard Topol", "character": "James Speed", "id": 31282, "credit_id": "52fe4886c3a368484e0fd4e9", "cast_id": 55, "profile_path": "/eKrCl8C3HQJl7xqi1lp3GlTjrwl.jpg", "order": 34}, {"name": "Walter Smith", "character": "William Fessenden", "id": 197009, "credit_id": "52fe4886c3a368484e0fd4ed", "cast_id": 56, "profile_path": "/scjGbgrifbnYS35WLs6MDTosaiu.jpg", "order": 35}, {"name": "Dakin Matthews", "character": "John Usher", "id": 43364, "credit_id": "52fe4886c3a368484e0fd4f1", "cast_id": 57, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 36}, {"name": "Wayne Duvall", "character": "Senator Bluff Wade", "id": 1470, "credit_id": "52fe4886c3a368484e0fd4f5", "cast_id": 58, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 37}, {"name": "Bill Raymond", "character": "Schuyler Colfax", "id": 7576, "credit_id": "52fe4886c3a368484e0fd4f9", "cast_id": 59, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 38}, {"name": "Drew Sease", "character": "David Homer Bates", "id": 1271708, "credit_id": "52fe4886c3a368484e0fd4fd", "cast_id": 60, "profile_path": "/blF7GxaniTudyugOvd6tTLX5xr0.jpg", "order": 39}, {"name": "John Hutton", "character": "Senator Charles Sumner", "id": 1271709, "credit_id": "52fe4886c3a368484e0fd501", "cast_id": 61, "profile_path": "/wU5BB3H2Jqo4KFmuwtX4hJ23W93.jpg", "order": 40}, {"name": "Chase Edmunds", "character": "Willie Lincoln", "id": 1271710, "credit_id": "52fe4886c3a368484e0fd505", "cast_id": 62, "profile_path": "/8ke2qp2wjaIKLqRtxP1vy8E7FiD.jpg", "order": 41}, {"name": "Gregory Itzin", "character": "Judge John A. Campbell", "id": 21142, "credit_id": "52fe4886c3a368484e0fd509", "cast_id": 63, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 42}, {"name": "John Lescault", "character": "Gustavus Fox", "id": 1271712, "credit_id": "52fe4886c3a368484e0fd50d", "cast_id": 64, "profile_path": "/nTwO6qVUtil8RP2OtPfPnrpnOnT.jpg", "order": 43}, {"name": "Mike Shiflett", "character": "Senator R.M.T. Hunter", "id": 1269695, "credit_id": "52fe4886c3a368484e0fd511", "cast_id": 65, "profile_path": "/AeflowoKIwOhAHHNXWR9yGfu5oX.jpg", "order": 44}, {"name": "Gannon McHale", "character": "Aaron Haddam", "id": 1271713, "credit_id": "52fe4886c3a368484e0fd515", "cast_id": 66, "profile_path": "/cTPCQqKcwBQqhdg8Tz7QRwwpeCL.jpg", "order": 45}, {"name": "Ken Lambert", "character": "August Benjamin", "id": 1271714, "credit_id": "52fe4886c3a368484e0fd519", "cast_id": 67, "profile_path": null, "order": 46}, {"name": "Thomas K. Belgrey", "character": "Arthur Bentleigh", "id": 176315, "credit_id": "52fe4886c3a368484e0fd51d", "cast_id": 68, "profile_path": "/lrlQ525u9a1rFnmAx0G4dqidhY3.jpg", "order": 47}, {"name": "Mary Dunleavy", "character": "Marguerite", "id": 1271715, "credit_id": "52fe4886c3a368484e0fd521", "cast_id": 69, "profile_path": "/tzzenIOS0kjqdgj5uFXhDWMMYRe.jpg", "order": 48}, {"name": "Armistead Wellford", "character": "Nehemiah Cleary", "id": 1271716, "credit_id": "52fe4886c3a368484e0fd525", "cast_id": 70, "profile_path": "/9kQSRApPMcjDEsrkSZTvINIFY8c.jpg", "order": 49}, {"name": "Ted Johnson", "character": "John Ellis", "id": 1271717, "credit_id": "52fe4886c3a368484e0fd529", "cast_id": 71, "profile_path": "/zDfhQ9yxz5OqUuRC3HuImN7eXoi.jpg", "order": 50}, {"name": "Don Henderson Baker", "character": "Walter Appleton", "id": 107406, "credit_id": "52fe4886c3a368484e0fd52d", "cast_id": 72, "profile_path": "/fTFiNzjHu0pxVHuvfSUID5oEVv9.jpg", "order": 51}, {"name": "Raynor Scheine", "character": "Josiah S. 'Beanpole' Burton", "id": 21082, "credit_id": "52fe4886c3a368484e0fd531", "cast_id": 73, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 52}, {"name": "Todd Fletcher", "character": "Walter H. Washburn", "id": 1189423, "credit_id": "52fe4886c3a368484e0fd535", "cast_id": 74, "profile_path": "/pPaZv7Pzusg8fwmotM9v9iZgMgy.jpg", "order": 53}, {"name": "Charles Kinney", "character": "Myer Strauss", "id": 1271718, "credit_id": "52fe4886c3a368484e0fd539", "cast_id": 75, "profile_path": null, "order": 54}, {"name": "Joseph Carlson", "character": "Joseph Marstern", "id": 1271719, "credit_id": "52fe4886c3a368484e0fd53d", "cast_id": 76, "profile_path": "/h34hoeJDkRfWJO7ZnaAe5rs9ire.jpg", "order": 55}, {"name": "Michael Goodwin", "character": "Chilton A. Elliot", "id": 157961, "credit_id": "52fe4886c3a368484e0fd541", "cast_id": 77, "profile_path": "/hHN4Ik3q8OjpYFsAsD0Qs6ppIpX.jpg", "order": 56}, {"name": "Edward McDonald", "character": "Daniel G. Stuart", "id": 1271720, "credit_id": "52fe4886c3a368484e0fd545", "cast_id": 78, "profile_path": "/jz5RVsiFlkeGHdODRQcRd9g61GN.jpg", "order": 57}, {"name": "Jim Batchelder", "character": "Howard Guillefoyle", "id": 1271721, "credit_id": "52fe4886c3a368484e0fd549", "cast_id": 79, "profile_path": null, "order": 58}, {"name": "Gregory Hosaflook", "character": "John F. McKenzie", "id": 1271722, "credit_id": "52fe4886c3a368484e0fd54d", "cast_id": 80, "profile_path": "/k0iSNkGv776mmJCLVz3V7ZSPX2t.jpg", "order": 59}, {"name": "Joe Kerkes", "character": "Andrew E. Finck", "id": 1271723, "credit_id": "52fe4886c3a368484e0fd551", "cast_id": 81, "profile_path": null, "order": 60}, {"name": "William Kaffenberger", "character": "John A. Casson", "id": 1271724, "credit_id": "52fe4886c3a368484e0fd555", "cast_id": 82, "profile_path": "/ocDQ1eEtMZLpHduqS9oEZQoiD4B.jpg", "order": 61}, {"name": "Larry Van Hoose", "character": "Avon Hanready", "id": 1271725, "credit_id": "52fe4887c3a368484e0fd559", "cast_id": 83, "profile_path": null, "order": 62}, {"name": "C. Brandon Marshall", "character": "Rufus Warren", "id": 1271726, "credit_id": "52fe4887c3a368484e0fd55d", "cast_id": 84, "profile_path": null, "order": 63}, {"name": "Christopher Boyer", "character": "General Robert E. Lee", "id": 153946, "credit_id": "52fe4887c3a368484e0fd561", "cast_id": 85, "profile_path": "/1J4pfvy7XW2LcV2qZkgyGb4xxDU.jpg", "order": 64}, {"name": "S. Epatha Merkerson", "character": "Lydia Smith", "id": 3978, "credit_id": "52fe4887c3a368484e0fd565", "cast_id": 86, "profile_path": "/wuzhs2DR1ImE3Y8kuMoCXpFaHVK.jpg", "order": 65}, {"name": "Robert Shepherd", "character": "Dr. Joseph K. Barnes", "id": 1050565, "credit_id": "52fe4887c3a368484e0fd569", "cast_id": 87, "profile_path": "/2SEUJgHH03owrYRAWBlpYRmTIUC.jpg", "order": 66}, {"name": "Grainger Hines", "character": "Gideon Welles", "id": 169839, "credit_id": "531a451e92514177ae002e32", "cast_id": 99, "profile_path": "/8eKbbE6CCtPS5NcIRQ7evoORr22.jpg", "order": 67}, {"name": "Skye Dennis", "character": "Union Soldier", "id": 1343249, "credit_id": "53dfc92ec3a3686c600027c0", "cast_id": 100, "profile_path": null, "order": 68}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4886c3a368484e0fd421", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.6, "runtime": 149}, "7442": {"poster_path": "/2GsBuNjlbuu6LKifsCiX5c9lgFZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 174999005, "overview": "A young woman fakes her own death in an attempt to escape her nightmarish marriage, but discovers it is impossible to elude her controlling husband.", "video": false, "id": 7442, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sleeping with the Enemy", "tagline": "Self-Defense is not murder.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102945", "adult": false, "backdrop_path": "/fbAI69ystUiS1ESFkkQR0q5shhV.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}], "release_date": "1991-02-08", "popularity": 0.516093374294195, "original_title": "Sleeping with the Enemy", "budget": 19000000, "cast": [{"name": "Julia Roberts", "character": "Laura Burney", "id": 1204, "credit_id": "52fe447cc3a36847f809900d", "cast_id": 1, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Patrick Bergin", "character": "Martin Burney", "id": 29459, "credit_id": "52fe447cc3a36847f8099011", "cast_id": 2, "profile_path": "/wmwtMCZsFTlckrsCpuz0jtuWu35.jpg", "order": 1}, {"name": "Kevin Anderson", "character": "Ben Woodward", "id": 51805, "credit_id": "52fe447cc3a36847f8099015", "cast_id": 3, "profile_path": "/roCItER7LbrJJvAV1Fku3jG9g8k.jpg", "order": 2}, {"name": "Elizabeth Lawrence", "character": "Chloe Williams", "id": 53302, "credit_id": "52fe447cc3a36847f8099043", "cast_id": 11, "profile_path": null, "order": 3}, {"name": "Tony Abatemarco", "character": "Locke", "id": 53303, "credit_id": "52fe447cc3a36847f8099047", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Kyle Secor", "character": "Fleishman", "id": 40258, "credit_id": "52fe447cc3a36847f809904b", "cast_id": 13, "profile_path": "/o5KQW91KqgfCvRUZwBwPx7mzHNC.jpg", "order": 5}, {"name": "Claudette Nevins", "character": "Dr. Rissner", "id": 104291, "credit_id": "52fe447cc3a36847f809904f", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Marita Geraghty", "character": "Julie", "id": 1536, "credit_id": "52fe447cc3a36847f8099053", "cast_id": 15, "profile_path": "/8BojqqNS3vt0zkZj4ctQztjhdcv.jpg", "order": 7}, {"name": "Harley Venton", "character": "Garber", "id": 168265, "credit_id": "52fe447cc3a36847f8099057", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Nancy Fish", "character": "Woman on Bus", "id": 42168, "credit_id": "52fe447cc3a36847f809905b", "cast_id": 17, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 9}, {"name": "Sandi Shackelford", "character": "Edna", "id": 1168438, "credit_id": "52fe447cc3a36847f809905f", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Bonnie Johnson", "character": "Mrs. Nepper", "id": 218605, "credit_id": "52fe447cc3a36847f8099063", "cast_id": 19, "profile_path": "/jk2tPblrYHNm1fJOlapoV5zCE1d.jpg", "order": 11}, {"name": "Graham Harrington", "character": "Minister", "id": 1168439, "credit_id": "52fe447cc3a36847f8099067", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "John Ward", "character": "Theater Student", "id": 125910, "credit_id": "52fe447cc3a36847f809906b", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Sharon J. Robinson", "character": "Sharon (the Nurse)", "id": 1168440, "credit_id": "52fe447cc3a36847f809906f", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Joseph Ruben", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f809901b", "profile_path": null, "id": 52629}], "vote_average": 6.4, "runtime": 99}, "23827": {"poster_path": "/ns7J1iMSDs5UkEVjMXLPiss7Lrt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 193355800, "overview": "After a young, middle class couple moves into a suburban 'starter' tract house, they become increasingly disturbed by a presence that may or may not be somehow demonic but is certainly most active in the middle of the night. Especially when they sleep. Or try to.", "video": false, "id": 23827, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Paranormal Activity", "tagline": "What Happens When You Sleep?", "vote_count": 332, "homepage": "http://www.paranormalactivity-movie.com/", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179904", "adult": false, "backdrop_path": "/sPaDUSuVQy1SL7ybnxilgWzLDAQ.jpg", "production_companies": [{"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}], "release_date": "2007-09-14", "popularity": 1.21760085011471, "original_title": "Paranormal Activity", "budget": 15000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe4477c3a368484e024aed", "cast_id": 3, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "Micah Sloat", "character": "Micah", "id": 90597, "credit_id": "52fe4477c3a368484e024af1", "cast_id": 4, "profile_path": "/mOmwvae1N5eZqDZBqaHPe2JiTQV.jpg", "order": 1}, {"name": "Mark Fredrichs", "character": "The Psychic", "id": 90598, "credit_id": "52fe4477c3a368484e024af5", "cast_id": 5, "profile_path": "/h8PmGTdVk5qqEfpEUFHF2JINf6a.jpg", "order": 2}, {"name": "Amber Armstrong", "character": "Amber", "id": 967678, "credit_id": "52fe4477c3a368484e024b35", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Ashley Palmer", "character": "Diane", "id": 967721, "credit_id": "52fe4477c3a368484e024b39", "cast_id": 17, "profile_path": null, "order": 4}], "directors": [{"name": "Oren Peli", "department": "Directing", "job": "Director", "credit_id": "52fe4477c3a368484e024afb", "profile_path": "/vmdyBa5wixR8cJzvxgvPJxLe6Xi.jpg", "id": 90591}], "vote_average": 6.2, "runtime": 86}, "7445": {"poster_path": "/rfLmpW2tzI40g91GiU0WSiMIxox.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill (Tobey Maguire) is presumed dead. Back home, brother Tommy (Jake Gyllenhaal) steps in to look over Sam\u2019s wife, Grace (Natalie Portman), and two children. Sam\u2019s surprise homecoming triggers domestic mayhem.", "video": false, "id": 7445, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Brothers", "tagline": "There are two sides to every family.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765010", "adult": false, "backdrop_path": "/5wWe5mAZ8vK6dv8YLtHuqmgTO1u.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Relativity Media", "id": 7295}, {"name": "Sighvatsson Films", "id": 11369}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "Palomar Pictures (II)", "id": 11371}], "release_date": "2009-12-02", "popularity": 0.627648831798876, "original_title": "Brothers", "budget": 26000000, "cast": [{"name": "Tobey Maguire", "character": "Sam Cahill", "id": 2219, "credit_id": "5301ec7a925141218c285708", "cast_id": 43, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Tommy Cahill", "id": 131, "credit_id": "5301ec9292514121922b855f", "cast_id": 44, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Natalie Portman", "character": "Grace Cahill", "id": 524, "credit_id": "5301eca7925141219828af30", "cast_id": 45, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Hank Cahill", "id": 9880, "credit_id": "5301ecd7925141219b2471f8", "cast_id": 46, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Mare Winningham", "character": "Elsie Cahill", "id": 51544, "credit_id": "5301ecfa92514121a725c633", "cast_id": 47, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 4}, {"name": "Bailee Madison", "character": "Isabelle Cahill", "id": 54479, "credit_id": "5301ed2792514121922b904b", "cast_id": 48, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 5}, {"name": "Taylor Geare", "character": "Maggie Cahill", "id": 967376, "credit_id": "5301ed42925141218f285383", "cast_id": 49, "profile_path": "/2ITSJXHWdkAFWu1hqIfr53zib8J.jpg", "order": 6}, {"name": "Clifton Collins, Jr.", "character": "Maj. Cavazos", "id": 5365, "credit_id": "5301ed6592514121a725d2aa", "cast_id": 50, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 7}, {"name": "Carey Mulligan", "character": "Cassie Willis", "id": 36662, "credit_id": "5301ed8592514121a725d9c4", "cast_id": 51, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 8}, {"name": "Patrick John Flueger", "character": "Joe Willis", "id": 115730, "credit_id": "5301eda1925141218c28748e", "cast_id": 52, "profile_path": "/xMGamAcbjj3m8dvl3do0yQNYXg7.jpg", "order": 9}, {"name": "Jenny Wade", "character": "Tina", "id": 33430, "credit_id": "5301edb39251412195260492", "cast_id": 53, "profile_path": "/3f85y7cJfHk05T5fuZem6kfLJoW.jpg", "order": 10}, {"name": "Omid Abtahi", "character": "Yusuf", "id": 167862, "credit_id": "5301edc8925141218f285d9b", "cast_id": 54, "profile_path": "/fk1qZBpQls4G6jV7PzYr5TELAhk.jpg", "order": 11}, {"name": "Ethan Suplee", "character": "Sweeney", "id": 824, "credit_id": "5301edde9251412195260b04", "cast_id": 55, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 12}, {"name": "Navid Negahban", "character": "Murad", "id": 103330, "credit_id": "5301ee0192514121a725e5c0", "cast_id": 57, "profile_path": "/qxp9X0SIA0FWts2qK60IcrmUhnF.jpg", "order": 13}, {"name": "Ray Prewitt", "character": "Owen", "id": 1117439, "credit_id": "5301edf092514121a428b7f1", "cast_id": 56, "profile_path": null, "order": 14}, {"name": "Arron Shiver", "character": "A.J.", "id": 105786, "credit_id": "53a94758c3a3687a31006b7a", "cast_id": 67, "profile_path": "/whHOz0t0JWvZd1LgeRm4oQe9KjO.jpg", "order": 15}, {"name": "Carrie Fleming", "character": "Marine Wife", "id": 209844, "credit_id": "53a947bac3a3687a40006a7a", "cast_id": 68, "profile_path": "/vDKtHr181M2GoMOpPVw0oRLy6xt.jpg", "order": 16}, {"name": "Jason E. Hill", "character": "Lt. Sanderson", "id": 1333907, "credit_id": "53a9480ec3a3687a40006a82", "cast_id": 69, "profile_path": null, "order": 17}, {"name": "Kevin Wiggins", "character": "Navy Chaplain", "id": 1240490, "credit_id": "53a9487fc3a3687495005ee0", "cast_id": 70, "profile_path": null, "order": 18}, {"name": "Yousuf Azami", "character": "Taliban Leader", "id": 123102, "credit_id": "53a948adc3a3687a2b00701f", "cast_id": 71, "profile_path": "/lEB2ryIlwygt5msLv4ICxPKBYxX.jpg", "order": 19}, {"name": "James D. Dever", "character": "Sgt. Major Dever", "id": 1205880, "credit_id": "53a948f6c3a3687a43006ae5", "cast_id": 72, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 20}, {"name": "Luce Rains", "character": "The Nose", "id": 53969, "credit_id": "53a949e2c3a3687a40006ab4", "cast_id": 73, "profile_path": "/1vn8TGhhs1aDSzFHUC0wHp9X9P1.jpg", "order": 21}], "directors": [{"name": "Jim Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f80991db", "profile_path": "/mfukw1JcUsXmUzt6IoaayMaescv.jpg", "id": 53334}], "vote_average": 6.5, "runtime": 104}, "23830": {"poster_path": "/dspTY7C3IHXsMm5dZVQqqgfPHbN.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7644937, "overview": "The story follows a married couple, apart for a night while the husband takes a business trip with a colleague to whom he's attracted. While he's resisting temptation, his wife encounters her past love.", "video": false, "id": 23830, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Last Night", "tagline": "Temptation can lead anywhere.", "vote_count": 53, "homepage": "http://www.lastnightmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1294688", "adult": false, "backdrop_path": "/3JwMtXzTndAQDkRtg43bG6EEkf4.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Star Entertainment", "id": 23035}], "release_date": "2010-09-18", "popularity": 0.578541300585961, "original_title": "Last Night", "budget": 7000000, "cast": [{"name": "Keira Knightley", "character": "Joanna Reed", "id": 116, "credit_id": "52fe4477c3a368484e024b69", "cast_id": 3, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Sam Worthington", "character": "Michael Reed", "id": 65731, "credit_id": "52fe4477c3a368484e024b6d", "cast_id": 4, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Laura", "id": 8170, "credit_id": "52fe4477c3a368484e024b71", "cast_id": 5, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Guillaume Canet", "character": "Alex Mann", "id": 19866, "credit_id": "52fe4477c3a368484e024b75", "cast_id": 6, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 3}, {"name": "Griffin Dunne", "character": "Truman", "id": 2171, "credit_id": "52fe4477c3a368484e024b79", "cast_id": 7, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 4}, {"name": "Scott Adsit", "character": "Stuart", "id": 66580, "credit_id": "52fe4477c3a368484e024b7d", "cast_id": 8, "profile_path": "/8VTCE0c8RSLYsgRqA8UDPRbBvYm.jpg", "order": 5}, {"name": "Anson Mount", "character": "Andy", "id": 56675, "credit_id": "52fe4477c3a368484e024b87", "cast_id": 10, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 6}, {"name": "Daniel Eric Gold", "character": "Andy", "id": 182280, "credit_id": "52fe4477c3a368484e024b8b", "cast_id": 11, "profile_path": "/vjoblDgnNr5amken3utyM0p6ykR.jpg", "order": 7}, {"name": "Stephanie Romanov", "character": "Sandra", "id": 159485, "credit_id": "52fe4477c3a368484e024b8f", "cast_id": 12, "profile_path": "/h9cDc4SN7jRkn26TDRWCwpW9vFV.jpg", "order": 8}, {"name": "Justine Cotsonas", "character": "Maggie", "id": 144577, "credit_id": "52fe4477c3a368484e024b93", "cast_id": 13, "profile_path": "/9cbHkz3ALfwqOhXepHxX1FFYQhr.jpg", "order": 9}, {"name": "Stephen Mailer", "character": "Client #1", "id": 170977, "credit_id": "52fe4477c3a368484e024b97", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Rae Ritke", "character": "Barbara", "id": 167293, "credit_id": "52fe4477c3a368484e024b9b", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Chriselle Almeida", "character": "Chris", "id": 549316, "credit_id": "52fe4477c3a368484e024b9f", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Zach Poole", "character": "Waiter", "id": 206626, "credit_id": "52fe4477c3a368484e024ba3", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Jon Norman Schneider", "character": "Server", "id": 549318, "credit_id": "52fe4477c3a368484e024ba7", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Massy Tadjedin", "department": "Directing", "job": "Director", "credit_id": "52fe4477c3a368484e024b65", "profile_path": null, "id": 90607}], "vote_average": 6.3, "runtime": 90}, "81796": {"poster_path": "/6Re7l6UQDlTzfmn3yNL35pvr2mG.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 28726864, "overview": "Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President's daughter from rioting convicts at an outer space maximum security prison.", "video": false, "id": 81796, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Lockout", "tagline": "Take no prisoners.", "vote_count": 257, "homepage": "http://www.lockoutfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1592525", "adult": false, "backdrop_path": "/t2qDw8mZlwIvdBVOBogRnFdL018.jpg", "production_companies": [{"name": "Cin\u00e9+", "id": 10611}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}], "release_date": "2012-04-12", "popularity": 1.08748635301462, "original_title": "Lockout", "budget": 20000000, "cast": [{"name": "Guy Pearce", "character": "Snow", "id": 529, "credit_id": "52fe482c9251416c91082d01", "cast_id": 1, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Maggie Grace", "character": "Emilie Warnock", "id": 11825, "credit_id": "52fe482c9251416c91082d05", "cast_id": 2, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 1}, {"name": "Joseph Gilgun", "character": "Hydell", "id": 225610, "credit_id": "52fe482c9251416c91082d09", "cast_id": 3, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 2}, {"name": "Lennie James", "character": "Harry Shaw", "id": 1120, "credit_id": "52fe482c9251416c91082d0d", "cast_id": 4, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 3}, {"name": "Peter Stormare", "character": "Scott Langral", "id": 53, "credit_id": "52fe482c9251416c91082d2f", "cast_id": 15, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 4}, {"name": "Vincent Regan", "character": "Alex", "id": 9831, "credit_id": "52fe482c9251416c91082d33", "cast_id": 16, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 5}, {"name": "Jacky Ido", "character": "Hock", "id": 51636, "credit_id": "52fe482c9251416c91082d37", "cast_id": 17, "profile_path": "/eBR6SX0hge1p3gWjxxRsmSzzhmQ.jpg", "order": 6}, {"name": "Yan Dron", "character": "Hitman N1", "id": 118598, "credit_id": "52fe482c9251416c91082d3b", "cast_id": 18, "profile_path": "/m4rLzOWGcz9hJMSZ8smNdavVQo.jpg", "order": 7}, {"name": "Tim Plester", "character": "Mace", "id": 62972, "credit_id": "52fe482c9251416c91082d3f", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Nick Harding", "character": "The Negociator", "id": 271710, "credit_id": "52fe482c9251416c91082d43", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Dan Savier", "character": "Duke", "id": 1026037, "credit_id": "52fe482c9251416c91082d7d", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Damijan Oklopdzic", "character": "Slick", "id": 1026038, "credit_id": "52fe482c9251416c91082d81", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Bojan Peric", "character": "LOPD Technician 1", "id": 1026039, "credit_id": "52fe482c9251416c91082d85", "cast_id": 33, "profile_path": null, "order": 12}], "directors": [{"name": "Stephen St. Leger", "department": "Directing", "job": "Director", "credit_id": "52fe482c9251416c91082d13", "profile_path": "/aD047Tx772IeCqQR6bITIclEsHE.jpg", "id": 936154}], "vote_average": 5.7, "runtime": 95}, "7450": {"poster_path": "/huI8CYyxY0BhzJSLn6XAP4nWAv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36754634, "overview": "A young man finds out that he holds the key to restoring hope and insuring survival for the human race, while an alien species called the Dredge are bent on mankind's destruction.", "video": false, "id": 7450, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Titan A.E.", "tagline": "When Earth Ends, The Adventure Begins.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0120913", "adult": false, "backdrop_path": "/dkOA9O8bWgIz83modVvLnF2DZcW.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "David Kirschner Productions", "id": 11050}, {"name": "Fox Animation Studios", "id": 11231}], "release_date": "2000-06-13", "popularity": 0.781478681040794, "original_title": "Titan A.E.", "budget": 75000000, "cast": [{"name": "Matt Damon", "character": "Cale Tucker", "id": 1892, "credit_id": "52fe447dc3a36847f8099461", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Bill Pullman", "character": "Captain Korso", "id": 8984, "credit_id": "52fe447dc3a36847f8099465", "cast_id": 4, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Akima", "id": 69597, "credit_id": "52fe447dc3a36847f8099475", "cast_id": 8, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "John Leguizamo", "character": "Gune", "id": 5723, "credit_id": "52fe447dc3a36847f8099469", "cast_id": 5, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 3}, {"name": "Nathan Lane", "character": "Preed", "id": 78729, "credit_id": "52fe447dc3a36847f809946d", "cast_id": 6, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 4}, {"name": "Janeane Garofalo", "character": "Stith", "id": 21197, "credit_id": "52fe447dc3a36847f8099471", "cast_id": 7, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 5}, {"name": "Ron Perlman", "character": "Prof. Sam Tucker", "id": 2372, "credit_id": "52fe447dc3a36847f8099479", "cast_id": 9, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 6}, {"name": "Alex D. Linz", "character": "Young Cale", "id": 15789, "credit_id": "52fe447dc3a36847f809947d", "cast_id": 10, "profile_path": "/fkFBjpfC3Wm97SozMrIERc01uyt.jpg", "order": 7}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f8099457", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}, {"name": "Gary Goldman", "department": "Directing", "job": "Director", "credit_id": "55397b72c3a3685f9b002c33", "profile_path": "/3GPDphDxHIlT3D8GiMCKsf3X4Rj.jpg", "id": 12881}], "vote_average": 6.4, "runtime": 94}, "113947": {"poster_path": "/iGkRA26pMY7Hhqu8uuIR1MuIMiY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Though a childhood bout with polio left him dependent on an iron lung, Mark O'Brien (John Hawkes) maintains a career as a journalist and poet. A writing assignment dealing with sex and the disabled piques Mark's curiosity, and he decides to investigate the possibility of experiencing sex himself. When his overtures toward a caregiver scare her away, he books an appointment with sex surrogate Cheryl Green (Helen Hunt) to lose his virginity.", "video": false, "id": 113947, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Sessions", "tagline": "The festival hit of the year!", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1866249", "adult": false, "backdrop_path": "/1fd15UNDW75q6pAFN9QkB2WWcJW.jpg", "production_companies": [{"name": "Such Much Films", "id": 13195}, {"name": "Rhino Films", "id": 1591}], "release_date": "2012-10-18", "popularity": 0.865713647798176, "original_title": "The Sessions", "budget": 1000000, "cast": [{"name": "John Hawkes", "character": "Mark O'Brien", "id": 16861, "credit_id": "52fe4b42c3a36847f81fa8ad", "cast_id": 3, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Cheryl Cohen Greene", "id": 9994, "credit_id": "52fe4b42c3a36847f81fa8b1", "cast_id": 4, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "William H. Macy", "character": "Father Brendan", "id": 3905, "credit_id": "52fe4b42c3a36847f81fa8b5", "cast_id": 5, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 2}, {"name": "Moon Bloodgood", "character": "", "id": 56455, "credit_id": "52fe4b42c3a36847f81fa8bf", "cast_id": 7, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 3}, {"name": "Annika Marks", "character": "", "id": 1099170, "credit_id": "52fe4b42c3a36847f81fa8c3", "cast_id": 8, "profile_path": "/lqpnmI2Z1smu0Kw8UpXs4w44UYz.jpg", "order": 4}, {"name": "W. Earl Brown", "character": "", "id": 6951, "credit_id": "52fe4b42c3a36847f81fa8c7", "cast_id": 9, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 5}, {"name": "Blake Lindsley", "character": "", "id": 41690, "credit_id": "52fe4b42c3a36847f81fa8cb", "cast_id": 10, "profile_path": "/jW9esvFejQSyjyZZMqUg4xcbsww.jpg", "order": 6}, {"name": "Adam Arkin", "character": "", "id": 55257, "credit_id": "52fe4b42c3a36847f81fa8cf", "cast_id": 11, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 7}], "directors": [{"name": "Ben Lewin", "department": "Directing", "job": "Director", "credit_id": "52fe4b42c3a36847f81fa8a3", "profile_path": null, "id": 168330}], "vote_average": 6.6, "runtime": 98}, "7453": {"poster_path": "/fOb4cJMhnZ11BoHNUii3Vcfo3XU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104478416, "overview": "Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of \"The Hitchhiker's Guide to the Galaxy.\"", "video": false, "id": 7453, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "The Hitchhiker's Guide to the Galaxy", "tagline": "Don't leave Earth without it.", "vote_count": 317, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371724", "adult": false, "backdrop_path": "/lALaxxUVJoZMeRcW3HfvG7QoDua.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Everyman Pictures", "id": 2242}, {"name": "Hammer & Tongs", "id": 2243}], "release_date": "2005-01-15", "popularity": 1.01433275041865, "original_title": "The Hitchhiker's Guide to the Galaxy", "budget": 50000000, "cast": [{"name": "Martin Freeman", "character": "Arthur Dent", "id": 7060, "credit_id": "52fe447ec3a36847f8099611", "cast_id": 12, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Trillian", "id": 11664, "credit_id": "52fe447ec3a36847f80995f3", "cast_id": 5, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Sam Rockwell", "character": "Zaphod Beeblebrox", "id": 6807, "credit_id": "52fe447ec3a36847f80995e7", "cast_id": 2, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 2}, {"name": "Mos Def", "character": "Ford Prefect", "id": 4239, "credit_id": "52fe447ec3a36847f80995eb", "cast_id": 3, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 3}, {"name": "John Malkovich", "character": "Humma Kavula", "id": 6949, "credit_id": "52fe447ec3a36847f80995e3", "cast_id": 1, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Helen Mirren", "character": "Deep Thought", "id": 15735, "credit_id": "52fe447ec3a36847f80995ef", "cast_id": 4, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 5}, {"name": "Anna Chancellor", "character": "Questular Rontok", "id": 10731, "credit_id": "52fe447ec3a36847f8099609", "cast_id": 10, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 6}, {"name": "Bill Bailey", "character": "The Whale", "id": 24265, "credit_id": "52fe447ec3a36847f809960d", "cast_id": 11, "profile_path": "/1e1XFFesh5cQJWf3brBgfMxznE9.jpg", "order": 7}, {"name": "Dominique Jackson", "character": "Fook", "id": 53352, "credit_id": "52fe447ec3a36847f8099615", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Thomas Lennon", "character": "Eddie the Computer", "id": 539, "credit_id": "52fe447ec3a36847f8099619", "cast_id": 14, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 9}, {"name": "Bill Nighy", "character": "Slartibartfast", "id": 2440, "credit_id": "52fe447ec3a36847f809961d", "cast_id": 15, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 10}, {"name": "Alan Rickman", "character": "Marvin", "id": 4566, "credit_id": "52fe447ec3a36847f8099621", "cast_id": 16, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 11}, {"name": "Steve Pemberton", "character": "Mr. Prosser", "id": 28485, "credit_id": "52fe447ec3a36847f8099625", "cast_id": 17, "profile_path": "/jToKs3u7DSCA0eZrKP0rcrjS8dR.jpg", "order": 12}, {"name": "Albie Woodington", "character": "Barman", "id": 53353, "credit_id": "52fe447ec3a36847f8099629", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Warwick Davis", "character": "Marvin", "id": 11184, "credit_id": "5405ce290e0a264d83001e6a", "cast_id": 31, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 14}, {"name": "Jos\u00e9 Wilker", "character": "Narrator version Brazil", "id": 55836, "credit_id": "541c91250e0a2638e70022c1", "cast_id": 32, "profile_path": "/lTliHmuXEZfFSJiZHiA0tDl78yN.jpg", "order": 15}], "directors": [{"name": "Garth Jennings", "department": "Directing", "job": "Director", "credit_id": "52fe447ec3a36847f80995f9", "profile_path": "/ahQh5uW5CXLe1LotxN4Y20aj5Gx.jpg", "id": 52842}], "vote_average": 6.5, "runtime": 109}, "7457": {"poster_path": "/vyFj7ZFm5AWApNGowpUzoakMuyS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15309302, "overview": "Johnny Truelove likes to see himself as tough. He's the son of an underworld figure and a drug dealer. Johnny also likes to get tough when things don't go his way. When Jake Mazursky fails to pay up for Johnny, things get worse for the Mazursky family, as Johnny and his 'gang' kidnap Jake's 15 year old brother and holds him hostage. Problem now is what to do with 'stolen boy?'", "video": false, "id": 7457, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Alpha Dog", "tagline": "One crime. 38 witnesses. No way back.", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0426883", "adult": false, "backdrop_path": "/LxmZLr6VHeibkq5DG0LvRKJWrX.jpg", "production_companies": [{"name": "A-Mark Entertainment", "id": 2248}], "release_date": "2006-01-27", "popularity": 0.562646832895379, "original_title": "Alpha Dog", "budget": 0, "cast": [{"name": "Bruce Willis", "character": "Sonny Truelove", "id": 62, "credit_id": "52fe447ec3a36847f809974b", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Matthew Barry", "character": "Interviewer (as Matt Barry)", "id": 545, "credit_id": "52fe447ec3a36847f809974f", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Emile Hirsch", "character": "Johnny Truelove", "id": 46593, "credit_id": "52fe447ec3a36847f8099753", "cast_id": 3, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 2}, {"name": "Fernando Vargas", "character": "Tiko 'TKO' Martinez", "id": 52645, "credit_id": "52fe447ec3a36847f8099757", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Vincent Kartheiser", "character": "Pick Giaimo", "id": 52646, "credit_id": "52fe447ec3a36847f809975b", "cast_id": 5, "profile_path": "/zgSvuYVE59Ry9Q2qIXM7XAe8R03.jpg", "order": 4}, {"name": "Justin Timberlake", "character": "Frankie Ballenbacher", "id": 12111, "credit_id": "52fe447ec3a36847f809975f", "cast_id": 6, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 5}, {"name": "Shawn Hatosy", "character": "Elvis Schmidt", "id": 52647, "credit_id": "52fe447ec3a36847f8099763", "cast_id": 7, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 6}, {"name": "Alex Solowitz", "character": "Bobby '911'", "id": 52648, "credit_id": "52fe447ec3a36847f8099767", "cast_id": 8, "profile_path": "/gAIrNVbk2V0PloBaXnosdOxe2Oa.jpg", "order": 7}, {"name": "Alec Vigil", "character": "P.J. Truelove", "id": 52649, "credit_id": "52fe447ec3a36847f809976b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Harry Dean Stanton", "character": "Cosmo Gadabeeti", "id": 5048, "credit_id": "52fe447ec3a36847f809976f", "cast_id": 10, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 9}, {"name": "Frank Cassavetes", "character": "Adrian Jones", "id": 52650, "credit_id": "52fe447ec3a36847f8099773", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Nicole Dubos", "character": "Neighborhood Girl on Couch", "id": 52651, "credit_id": "52fe447ec3a36847f8099777", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Regina Rice", "character": "Dance Bitch Girl", "id": 52652, "credit_id": "52fe447ec3a36847f809977b", "cast_id": 13, "profile_path": "/ggYVpD1WImaJ3sBw8e3HL8UEuHn.jpg", "order": 12}, {"name": "Laura Nativo", "character": "Party Girl", "id": 52653, "credit_id": "52fe447ec3a36847f809977f", "cast_id": 14, "profile_path": "/gXjx1gXM4WQ6RWm0k8FQ0p8ZoLr.jpg", "order": 13}, {"name": "Ben Foster", "character": "Jake Mazursky", "id": 11107, "credit_id": "52fe447ec3a36847f8099783", "cast_id": 15, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 14}, {"name": "Amber Heard", "character": "Alma", "id": 55085, "credit_id": "52fe447ec3a36847f809979f", "cast_id": 20, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 15}, {"name": "Anton Yelchin", "character": "Zack Mazursky", "id": 21028, "credit_id": "52fe447ec3a36847f80997a3", "cast_id": 21, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 16}, {"name": "David Thornton", "character": "Butch Mazursky", "id": 76526, "credit_id": "52fe447ec3a36847f80997a7", "cast_id": 22, "profile_path": "/jDcmAwRCUYd3QSVEVc9Xq2Yi9Xf.jpg", "order": 17}, {"name": "Sharon Stone", "character": "Olivia Mazursky", "id": 4430, "credit_id": "52fe447ec3a36847f80997ab", "cast_id": 23, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 18}, {"name": "Olivia Wilde", "character": "Angela Holden", "id": 59315, "credit_id": "52fe447ec3a36847f80997af", "cast_id": 24, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 19}, {"name": "Heather Wahlquist", "character": "Wanda Haynes", "id": 55317, "credit_id": "52fe447ec3a36847f80997b3", "cast_id": 25, "profile_path": "/232o4HJQu4M5cv6VNOxdvXV8itx.jpg", "order": 20}, {"name": "Amanda Seyfried", "character": "Julie Beckley", "id": 71070, "credit_id": "52fe447ec3a36847f80997b7", "cast_id": 26, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 21}, {"name": "Shera Danese", "character": "Abby", "id": 1220746, "credit_id": "533bb7fbc3a36844e5000e08", "cast_id": 27, "profile_path": "/qKIE9ef0cd401qWfrr6Bws0o7qm.jpg", "order": 22}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe447ec3a36847f8099789", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 6.4, "runtime": 122}, "7459": {"poster_path": "/zTplGrRuGcjzB9F9t7MC7DMiM43.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93945766, "overview": "Speed racer is the tale of a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, he must team up with the police and the mysterious Racer X to bring and end to the corruption and criminal activities. Inspired by the cartoon series.", "video": false, "id": 7459, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "Speed Racer", "tagline": "Go!", "vote_count": 94, "homepage": "http://www.speedracerthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0811080", "adult": false, "backdrop_path": "/5tbEFOVutwr0HdihrGj27eGIsxC.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}, {"name": "Anarchos Productions", "id": 450}, {"name": "Velocity Productions", "id": 12170}, {"name": "Sechste Babelsberg Film", "id": 12171}], "release_date": "2008-05-09", "popularity": 0.479403301198401, "original_title": "Speed Racer", "budget": 120000000, "cast": [{"name": "Emile Hirsch", "character": "Speed Racer", "id": 46593, "credit_id": "52fe447ec3a36847f8099887", "cast_id": 1, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Christina Ricci", "character": "Trixie", "id": 6886, "credit_id": "52fe447ec3a36847f809988b", "cast_id": 2, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 1}, {"name": "Matthew Fox", "character": "Racer X", "id": 28657, "credit_id": "52fe447ec3a36847f809988f", "cast_id": 3, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Mom Racer", "id": 4038, "credit_id": "52fe447ec3a36847f8099893", "cast_id": 4, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Scott Porter", "character": "Rex Racer", "id": 53368, "credit_id": "52fe447ec3a36847f8099897", "cast_id": 5, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 4}, {"name": "John Goodman", "character": "Pops Racer", "id": 1230, "credit_id": "52fe447ec3a36847f809989b", "cast_id": 6, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 5}, {"name": "Hiroyuki Sanada", "character": "Mr. Musha", "id": 9195, "credit_id": "52fe447ec3a36847f809989f", "cast_id": 7, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 6}, {"name": "Art LaFleur", "character": "Fuji Announcer", "id": 44792, "credit_id": "52fe447fc3a36847f80998bb", "cast_id": 13, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 7}, {"name": "Richard Roundtree", "character": "Ben Burns", "id": 6487, "credit_id": "52fe447fc3a36847f80998bf", "cast_id": 14, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 8}, {"name": "Togo Igawa", "character": "Mr. Togokahn", "id": 9192, "credit_id": "52fe447fc3a36847f80998c3", "cast_id": 15, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 9}, {"name": "Nan Yu", "character": "Horuko Togokahn", "id": 27084, "credit_id": "52fe447fc3a36847f80998c7", "cast_id": 16, "profile_path": "/xKWnjXyp5wb6HVbj5CbY7gywLTL.jpg", "order": 10}, {"name": "Cosma Shiva Hagen", "character": "Gennie", "id": 16718, "credit_id": "52fe447fc3a36847f80998cb", "cast_id": 17, "profile_path": "/qEx7ERu90J6iHp2gjmTiehJpnZu.jpg", "order": 11}, {"name": "Roger Allam", "character": "Royalton", "id": 11279, "credit_id": "52fe447fc3a36847f80998cf", "cast_id": 18, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 12}, {"name": "Nayo Wallace", "character": "Minx", "id": 1050936, "credit_id": "52fe447fc3a36847f80998d3", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Rain", "character": "Taejo Togokahn", "id": 112013, "credit_id": "52fe447fc3a36847f80998d7", "cast_id": 20, "profile_path": "/7oLrI71PNp9iGwJkgr2Bq34t2Yt.jpg", "order": 14}, {"name": "Moritz Bleibtreu", "character": "Grey Ghost", "id": 677, "credit_id": "5364e89f0e0a2647db001302", "cast_id": 41, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 15}, {"name": "Benno F\u00fcrmann", "character": "Inspektor Detektor", "id": 11953, "credit_id": "5364e8ae0e0a2647d10012ed", "cast_id": 42, "profile_path": "/oaOk5Sm3yTxO1QAnYiQVVDfHGMg.jpg", "order": 16}, {"name": "Ralph Herforth", "character": "Cannonball Taylor", "id": 1856, "credit_id": "5364e8bf0e0a2647d80013a7", "cast_id": 43, "profile_path": "/3soxWivaOiRS05nP5KfbCTg9nPs.jpg", "order": 17}], "directors": [{"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe447ec3a36847f80998a5", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}, {"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f80998b7", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}], "vote_average": 5.6, "runtime": 135}, "81188": {"poster_path": "/sIZr3pWcnLTjMkOaTkBrV967lTK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 302317123, "overview": "When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.", "video": false, "id": 81188, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Rise of the Guardians", "tagline": "You better believe.", "vote_count": 747, "homepage": "http://www.riseoftheguardians.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1446192", "adult": false, "backdrop_path": "/5oULqegVKFW58cgSxPd5DHE81yN.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2012-11-29", "popularity": 1.63518018679587, "original_title": "Rise of the Guardians", "budget": 145000000, "cast": [{"name": "Chris Pine", "character": "Jack Frost (voice)", "id": 62064, "credit_id": "52fe47fe9251416c9107c90d", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "North (voice)", "id": 7447, "credit_id": "52fe47fe9251416c9107c919", "cast_id": 5, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Jude Law", "character": "Pitch (voice)", "id": 9642, "credit_id": "52fe47fe9251416c9107c915", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Isla Fisher", "character": "Tooth (voice)", "id": 52848, "credit_id": "52fe47fe9251416c9107c911", "cast_id": 3, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 3}, {"name": "Hugh Jackman", "character": "E. Aster Bunnymund (voice)", "id": 6968, "credit_id": "52fe47fe9251416c9107c909", "cast_id": 1, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 4}, {"name": "Dakota Goyo", "character": "Jamie (voice)", "id": 234479, "credit_id": "52fe47fe9251416c9107c91d", "cast_id": 6, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 5}, {"name": "Khamani Griffin", "character": "Caleb (voice)", "id": 87056, "credit_id": "52fe47fe9251416c9107c93f", "cast_id": 13, "profile_path": "/6gpZY25Hc1B4MgBTrfgP1KxnAP5.jpg", "order": 6}, {"name": "Kamil McFadden", "character": "Claude (voice)", "id": 1271684, "credit_id": "5300c5eb9251416ad534b681", "cast_id": 14, "profile_path": "/wtdSHSw6kUEyNfVPvNR8Wig2rXC.jpg", "order": 7}, {"name": "Georgie Grieve", "character": "Sophie Bennett", "id": 1364655, "credit_id": "5418922bc3a3680ac400038d", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Emily Nordwind", "character": "Jamie's Mom / Jack's Mother", "id": 1364656, "credit_id": "54189243c3a3680abb00036d", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jacob Bertrand", "character": "Monty", "id": 114446, "credit_id": "54189258c3a3680aca0003f8", "cast_id": 17, "profile_path": "/xB5ifSp4RGUokOVQBJVu4qLOGE3.jpg", "order": 10}, {"name": "Olivia Mattingly", "character": "Pippa / Jack's Sister", "id": 1364657, "credit_id": "5418926ec3a3680ab4000391", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Dominique Grund", "character": "Cupcake", "id": 1364658, "credit_id": "5418927fc3a3680aaf000376", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Ryan Crego", "character": "Burgess Dog Walker", "id": 1364659, "credit_id": "54189294c3a3680aac0003a7", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "April Lawrence", "character": "Burgess Pedestrian", "id": 1364660, "credit_id": "541892abc3a3680aca000403", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Peter Ramsey", "department": "Directing", "job": "Director", "credit_id": "52fe47fe9251416c9107c923", "profile_path": null, "id": 151007}], "vote_average": 6.7, "runtime": 97}, "7461": {"poster_path": "/2PnFsTzmFC3Ydhj0uBEYjPqHWHO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The attempted assassination of the American President is told and re-told from several different perspectives.", "video": false, "id": 7461, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Vantage Point", "tagline": "8 Strangers, 8 points of view. 1 Truth.", "vote_count": 243, "homepage": "http://www.vantagepoint-movie.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443274", "adult": false, "backdrop_path": "/7DwOjEHdJ3dc3kBNaN7XQ0yE258.jpg", "production_companies": [{"name": "Kanzaman", "id": 4169}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "Art In Motion", "id": 31604}], "release_date": "2008-02-22", "popularity": 0.526066604547091, "original_title": "Vantage Point", "budget": 40000000, "cast": [{"name": "Dennis Quaid", "character": "Thomas Barnes", "id": 6065, "credit_id": "52fe447fc3a36847f8099a33", "cast_id": 1, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Matthew Fox", "character": "Kent Taylor", "id": 28657, "credit_id": "52fe447fc3a36847f8099a37", "cast_id": 2, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Howard Lewis", "id": 2178, "credit_id": "52fe447fc3a36847f8099a3b", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Sigourney Weaver", "character": "Rex Brooks", "id": 10205, "credit_id": "52fe447fc3a36847f8099a3f", "cast_id": 4, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 3}, {"name": "William Hurt", "character": "President Ashton", "id": 227, "credit_id": "52fe447fc3a36847f8099a43", "cast_id": 5, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 4}, {"name": "Ayelet Zurer", "character": "Veronica", "id": 8786, "credit_id": "52fe447fc3a36847f8099a47", "cast_id": 6, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 5}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Javier", "id": 25616, "credit_id": "52fe447fc3a36847f8099a4b", "cast_id": 7, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 6}, {"name": "Eduardo Noriega", "character": "Enrique", "id": 17093, "credit_id": "52fe447fc3a36847f8099a4f", "cast_id": 8, "profile_path": "/5B1D3MChVAZ5z7cypJbCbSGgDge.jpg", "order": 7}, {"name": "Sa\u00efd Taghmaoui", "character": "Suarez", "id": 5419, "credit_id": "52fe447fc3a36847f8099a53", "cast_id": 9, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 8}, {"name": "Zoe Saldana", "character": "Angie Jones", "id": 8691, "credit_id": "52fe447fc3a36847f8099a93", "cast_id": 20, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 9}, {"name": "James Le Gros", "character": "Ted Heinkin", "id": 6474, "credit_id": "52fe447fc3a36847f8099a97", "cast_id": 21, "profile_path": "/rqBjmSkcRGwtwpb2tTjGcqLtKyG.jpg", "order": 10}, {"name": "Bruce McGill", "character": "Phil McCullough", "id": 14888, "credit_id": "543628110e0a2624b9001871", "cast_id": 24, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 11}], "directors": [{"name": "Pete Travis", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099a59", "profile_path": "/xHxcow0RqzkTM2vwgfnpOT2FoSe.jpg", "id": 43141}], "vote_average": 6.1, "runtime": 90}, "15655": {"poster_path": "/qhiNJzT2IbK9MkMVQFr0Jk4Pj8h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45554533, "overview": "As it happens, everybody - Pooh, Piglet, Eeyore, Roo, Rabbit, Owl - is busy preparing a suitable winter home for Eeyore. When everything they do seems to get undone by Tigger's exuberant bouncing, Rabbit suggest Tigger go outside and find other tiggers to bounce with - a notion Tigger finds ridiculous because, after all, he's \"the onliest one\" Or is he?", "video": false, "id": 15655, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Tigger Movie", "tagline": "", "vote_count": 56, "homepage": "http://www.tigger.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0220099", "adult": false, "backdrop_path": "/9Mxr5NHa5pRMc9iP7aVwk9l3VqK.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2000-02-11", "popularity": 0.465272270234319, "original_title": "The Tigger Movie", "budget": 30000000, "cast": [{"name": "Jim Cummings", "character": "Tigger / Winnie the Pooh (voice)", "id": 12077, "credit_id": "52fe466f9251416c7507835b", "cast_id": 2, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 0}, {"name": "Nikita Hopkins", "character": "Roo (voice)", "id": 90453, "credit_id": "52fe466f9251416c75078363", "cast_id": 4, "profile_path": "/i4NrZ1MokeGdp6dvNDthlt7PpoG.jpg", "order": 2}, {"name": "Ken Sansom", "character": "Rabbit (voice)", "id": 77482, "credit_id": "52fe466f9251416c75078367", "cast_id": 5, "profile_path": "/el8Oje4diZsMZBk91q0xDOZH0Bq.jpg", "order": 3}, {"name": "John Fiedler", "character": "Piglet (voice)", "id": 5247, "credit_id": "52fe466f9251416c7507836b", "cast_id": 6, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 4}, {"name": "Peter Cullen", "character": "Eeyore (voice)", "id": 19540, "credit_id": "52fe466f9251416c7507836f", "cast_id": 7, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 5}, {"name": "Andre Stojka", "character": "Owl (voice)", "id": 77546, "credit_id": "52fe466f9251416c75078373", "cast_id": 8, "profile_path": "/n3rq249snLFD1Dik21Qxp8IqOv5.jpg", "order": 6}, {"name": "Kath Soucie", "character": "Kanga (voice)", "id": 60739, "credit_id": "52fe466f9251416c75078377", "cast_id": 9, "profile_path": "/urLkA155Yc19TKyeCUYGwzEt2PO.jpg", "order": 7}, {"name": "Tom Attenborough", "character": "Christopher Robin (voice)", "id": 105503, "credit_id": "52fe466f9251416c7507837b", "cast_id": 10, "profile_path": null, "order": 8}], "directors": [{"name": "Jun Falkenstein", "department": "Directing", "job": "Director", "credit_id": "52fe466f9251416c75078357", "profile_path": null, "id": 93301}], "vote_average": 6.5, "runtime": 77}, "13532": {"poster_path": "/ywI92p2x7D96nuEayGVOMll35SF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 948753, "overview": "Star Wars fanatics take a cross-country trip to George Lucas' Skywalker Ranch so their dying friend can see a screening of Star Wars: Episode I - The Phantom Menace (1999) before its release.", "video": false, "id": 13532, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Fanboys", "tagline": "Never tell them the odds.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489049", "adult": false, "backdrop_path": "/89udmMtxl8AuQHYoFdSgB5e6xYs.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Third Rail Releasing", "id": 4435}], "release_date": "2009-02-06", "popularity": 0.475253764185308, "original_title": "Fanboys", "budget": 0, "cast": [{"name": "Sam Huntington", "character": "Eric", "id": 53492, "credit_id": "52fe45779251416c75057743", "cast_id": 1, "profile_path": "/nq7pwic6Xe6XTRzOfXjMCuUqbjt.jpg", "order": 0}, {"name": "Chris Marquette", "character": "Linus", "id": 59238, "credit_id": "52fe45779251416c75057747", "cast_id": 2, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Hutch", "id": 58873, "credit_id": "52fe45779251416c7505774b", "cast_id": 3, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Windows", "id": 449, "credit_id": "52fe45779251416c7505774f", "cast_id": 4, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Kristen Bell", "character": "Zoe", "id": 40462, "credit_id": "52fe45779251416c75057753", "cast_id": 5, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 4}, {"name": "Seth Rogen", "character": "Admiral Seasholtz / Alien / Roach", "id": 19274, "credit_id": "52fe45779251416c75057769", "cast_id": 9, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 5}, {"name": "William Shatner", "character": "Himself", "id": 1748, "credit_id": "52fe45779251416c7505776d", "cast_id": 10, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 6}, {"name": "Carrie Fisher", "character": "Doctor", "id": 4, "credit_id": "52fe45779251416c75057771", "cast_id": 11, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 7}, {"name": "Ethan Suplee", "character": "Harry Knowles", "id": 824, "credit_id": "52fe45779251416c75057775", "cast_id": 12, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 8}, {"name": "Christopher McDonald", "character": "Big Chuck (as Chris McDonald)", "id": 4443, "credit_id": "52fe45779251416c75057779", "cast_id": 13, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 9}, {"name": "Danny Trejo", "character": "The Chief", "id": 11160, "credit_id": "52fe45779251416c7505777d", "cast_id": 14, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Billy Dee Williams", "character": "Judge Reinhold", "id": 3799, "credit_id": "52fe45779251416c75057781", "cast_id": 15, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 11}, {"name": "Kevin Smith", "character": "Guy at gas station", "id": 19303, "credit_id": "52fe45779251416c75057785", "cast_id": 16, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 12}, {"name": "Jason Mewes", "character": "Guy at gas station", "id": 19302, "credit_id": "52fe45779251416c75057789", "cast_id": 17, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 13}, {"name": "Zak Knutson", "character": "Bob the Trucker", "id": 140909, "credit_id": "52fe45779251416c7505778d", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Ray Park", "character": "THX Security Guard #2", "id": 11007, "credit_id": "52fe45779251416c75057791", "cast_id": 19, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 15}, {"name": "Danny McBride", "character": "Head of Security (uncredited)", "id": 62862, "credit_id": "52fe45779251416c75057795", "cast_id": 20, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 16}, {"name": "Allie Grant", "character": "Rogue Leader / Kimmy", "id": 1214423, "credit_id": "52fe45779251416c7505779f", "cast_id": 22, "profile_path": "/zGrH4hsc28SPERAu51vQQLXndPL.jpg", "order": 17}, {"name": "Joe Lo Truglio", "character": "Jail Guard", "id": 21131, "credit_id": "52fe45779251416c750577a3", "cast_id": 23, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 18}, {"name": "Craig Robinson", "character": "THX Security Guard #5", "id": 64342, "credit_id": "534672470e0a265fe900135e", "cast_id": 24, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 19}, {"name": "Will Forte", "character": "THX Security Guard #4", "id": 62831, "credit_id": "534672600e0a265fe60012ff", "cast_id": 25, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 20}], "directors": [{"name": "Kyle Newman", "department": "Directing", "job": "Director", "credit_id": "52fe45779251416c75057759", "profile_path": null, "id": 74623}], "vote_average": 6.3, "runtime": 90}, "204082": {"poster_path": "/6ymSuhG28tF2lnDxVTNibzlYzn0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43058898, "overview": "Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss' son. He is recently widowed and is left with a 9-years-old daughter,Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy's sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.", "video": false, "id": 204082, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Homefront", "tagline": "How far would you go to protect your home?", "vote_count": 297, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2312718", "adult": false, "backdrop_path": "/vcFs3Vh6g6A5K9zZeFYnQNHLUQb.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Open Road Films", "id": 10427}], "release_date": "2013-11-27", "popularity": 1.8676320111119, "original_title": "Homefront", "budget": 22000000, "cast": [{"name": "Jason Statham", "character": "Phil Broker", "id": 976, "credit_id": "52fe4cecc3a368484e1cd19f", "cast_id": 2, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "James Franco", "character": "Gator", "id": 17051, "credit_id": "52fe4cecc3a368484e1cd19b", "cast_id": 1, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Winona Ryder", "character": "Sheryl Mott", "id": 1920, "credit_id": "52fe4cecc3a368484e1cd1a7", "cast_id": 4, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 2}, {"name": "Rachelle Lefevre", "character": "Susan Hatch", "id": 58168, "credit_id": "52fe4cecc3a368484e1cd1ab", "cast_id": 5, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 3}, {"name": "Kate Bosworth", "character": "Cassie Bodine", "id": 7517, "credit_id": "52fe4cecc3a368484e1cd1a3", "cast_id": 3, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Sheriff Keith Rodrigue", "id": 6574, "credit_id": "52fe4cecc3a368484e1cd1af", "cast_id": 6, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Frank Grillo", "character": "Cyrus Hanks", "id": 81685, "credit_id": "52fe4cecc3a368484e1cd1b3", "cast_id": 7, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 6}, {"name": "Christa Campbell", "character": "Lydia", "id": 85178, "credit_id": "52fe4cecc3a368484e1cd1b7", "cast_id": 8, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 7}, {"name": "Omar Benson Miller", "character": "Tito", "id": 334, "credit_id": "52fe4cecc3a368484e1cd1bb", "cast_id": 9, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 8}, {"name": "Nicole Andrews", "character": "Ms. Etherby", "id": 1134443, "credit_id": "52fe4cecc3a368484e1cd1bf", "cast_id": 10, "profile_path": "/mjMSw1P3lpzH8uwBkwSQuxudQMQ.jpg", "order": 9}, {"name": "Celeste Star", "character": "Michelle (biker chick)", "id": 135633, "credit_id": "52fe4cecc3a368484e1cd1c3", "cast_id": 11, "profile_path": "/f65N02PSTEyUGomRoDJDksAbN0u.jpg", "order": 10}, {"name": "Stephanie Grote", "character": "Dancer", "id": 1098572, "credit_id": "52fe4cecc3a368484e1cd1c7", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Amin Joseph", "character": "Senior Agent", "id": 131772, "credit_id": "52fe4cecc3a368484e1cd1cb", "cast_id": 13, "profile_path": "/skvXr7EjcsgVfwoZnmNNjIk4Jmr.jpg", "order": 12}, {"name": "Joe Chrest", "character": "DEA Agent", "id": 141762, "credit_id": "52fe4cecc3a368484e1cd1cf", "cast_id": 14, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 13}, {"name": "Izabela Vidovic", "character": "Maddy", "id": 1109976, "credit_id": "52fe4cecc3a368484e1cd1d3", "cast_id": 15, "profile_path": "/2cGWLlVQeQzp1Li4MgUsL7HspAF.jpg", "order": 14}], "directors": [{"name": "Gary Fleder", "department": "Directing", "job": "Director", "credit_id": "52fe4cecc3a368484e1cd1d9", "profile_path": "/rRxdnJbRT8Ygg8KNpdoxULszClx.jpg", "id": 5501}], "vote_average": 6.6, "runtime": 100}, "1247": {"poster_path": "/s2RYkRXrjUIyOlmzym37kpLTKRz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59908565, "overview": "Edward Wilson, the only witness to his father's suicide and member of the Skull and Bones Society while a student at Yale, is a morally upright young man who values honor and discretion, qualities that help him to be recruited for a career in the newly founded OSS. His dedication to his work does not come without a price though, leading him to sacrifice his ideals and eventually his family.", "video": false, "id": 1247, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "The Good Shepherd", "tagline": "The untold story of the most powerful covert agency in the world.", "vote_count": 89, "homepage": "http://www.thegoodshepherdmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ln", "name": ""}], "imdb_id": "tt0343737", "adult": false, "backdrop_path": "/3qvtPTzdeV5cJFBpJO56KFAkF4d.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "American Zoetrope", "id": 70}], "release_date": "2006-12-11", "popularity": 1.03100078727577, "original_title": "The Good Shepherd", "budget": 85000000, "cast": [{"name": "Matt Damon", "character": "Edward Bell Wilson", "id": 1892, "credit_id": "52fe42eac3a36847f802c69b", "cast_id": 6, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Margaret Ann Russell", "id": 11701, "credit_id": "52fe42eac3a36847f802c6a7", "cast_id": 9, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Sam Murach", "id": 7447, "credit_id": "52fe42eac3a36847f802c69f", "cast_id": 7, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Tammy Blanchard", "character": "Laura", "id": 16859, "credit_id": "52fe42eac3a36847f802c6a3", "cast_id": 8, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 3}, {"name": "Billy Crudup", "character": "Arch Cummings", "id": 8289, "credit_id": "52fe42eac3a36847f802c6ab", "cast_id": 10, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 4}, {"name": "Robert De Niro", "character": "Bill Sullivan", "id": 380, "credit_id": "52fe42eac3a36847f802c6af", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 5}, {"name": "Keir Dullea", "character": "Senator John Russell, Sr.", "id": 245, "credit_id": "52fe42eac3a36847f802c6b3", "cast_id": 12, "profile_path": "/vRkyWW3p2Xd1FfMBKZWV2LQZlkR.jpg", "order": 6}, {"name": "Michael Gambon", "character": "Dr. Fredericks", "id": 5658, "credit_id": "52fe42eac3a36847f802c6b7", "cast_id": 13, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 7}, {"name": "Martina Gedeck", "character": "Hanna Schiller", "id": 678, "credit_id": "52fe42eac3a36847f802c6c3", "cast_id": 16, "profile_path": "/a6eR9unTwZk4xqsVKZvJySnVt5A.jpg", "order": 8}, {"name": "William Hurt", "character": "Philip Allen", "id": 227, "credit_id": "52fe42eac3a36847f802c6bf", "cast_id": 15, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 9}, {"name": "Timothy Hutton", "character": "Thomas Wilson", "id": 16327, "credit_id": "52fe42eac3a36847f802c6c7", "cast_id": 17, "profile_path": "/qSLWuXpkuuqAXzI3dQkYshXAv2O.jpg", "order": 10}, {"name": "Lee Pace", "character": "Richard Hayes", "id": 72095, "credit_id": "52fe42eac3a36847f802c6dd", "cast_id": 22, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 11}, {"name": "Joe Pesci", "character": "Joseph Palmi", "id": 4517, "credit_id": "52fe42eac3a36847f802c6bb", "cast_id": 14, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 12}, {"name": "John Turturro", "character": "Raymond Brocco", "id": 1241, "credit_id": "52fe42eac3a36847f802c6d9", "cast_id": 21, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 13}, {"name": "Lee Bryant", "character": "Mrs. John Russell, Sr.", "id": 160328, "credit_id": "52fe42eac3a36847f802c6cb", "cast_id": 18, "profile_path": "/riFEbXO78dRCTxzQ358AVr1m4uD.jpg", "order": 14}, {"name": "Eddie Redmayne", "character": "Edward Wilson Jr.", "id": 37632, "credit_id": "54e4d1fa925141454f00936f", "cast_id": 24, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 17}, {"name": "Josh Pence", "character": "Bonesman", "id": 928532, "credit_id": "54e4d2dfc3a368454d00b84e", "cast_id": 25, "profile_path": "/nNMhtY1gBYwnjZZpeGGW16fVXC5.jpg", "order": 18}], "directors": [{"name": "Robert De Niro", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c685", "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "id": 380}], "vote_average": 5.5, "runtime": 167}, "7484": {"poster_path": "/9TY3wQPNhZ60Mng0JetKEOfXqxU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 197309027, "overview": "Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.", "video": false, "id": 7484, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Open Season", "tagline": "One Fur All & All Fur One", "vote_count": 175, "homepage": "http://www.sonypictures.com/movies/openseason/", "belongs_to_collection": {"backdrop_path": "/cnaLzqjxlqGMIp7AGCizfVXUhSn.jpg", "poster_path": "/ePeybVSOnCmuWrrvGEp8hzWn979.jpg", "id": 66761, "name": "Open Season Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0400717", "adult": false, "backdrop_path": "/7bmzhqOJ9TGXUU5d4pqYUWl3YZ8.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}], "release_date": "2006-09-29", "popularity": 0.897430531022104, "original_title": "Open Season", "budget": 85000000, "cast": [{"name": "Martin Lawrence", "character": "Boog (voice)", "id": 78029, "credit_id": "52fe447fc3a36847f8099bb7", "cast_id": 7, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Elliot (voice)", "id": 18976, "credit_id": "52fe447fc3a36847f8099bbb", "cast_id": 8, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Gary Sinise", "character": "Shaw (voice)", "id": 33, "credit_id": "52fe447fc3a36847f8099bbf", "cast_id": 9, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 2}, {"name": "Debra Messing", "character": "Beth (voice)", "id": 23959, "credit_id": "52fe447fc3a36847f8099bc3", "cast_id": 10, "profile_path": "/d2LQbdccJbMSDC9Qm6vTn4qa0Ly.jpg", "order": 3}, {"name": "Billy Connolly", "character": "McSquizzy (voice)", "id": 9188, "credit_id": "52fe447fc3a36847f8099bc7", "cast_id": 11, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 4}, {"name": "Georgia Engel", "character": "Bobbie (voice)", "id": 52697, "credit_id": "52fe447fc3a36847f8099bcb", "cast_id": 12, "profile_path": "/7WfD6MAZtQgT6qIthTDvYzfYj0c.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Reilly (voice)", "id": 15277, "credit_id": "52fe447fc3a36847f8099bcf", "cast_id": 13, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Jane Krakowski", "character": "Giselle (voice)", "id": 13636, "credit_id": "52fe447fc3a36847f8099bd3", "cast_id": 14, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 7}, {"name": "Gordon Tootoosis", "character": "Gordy (voice)", "id": 37430, "credit_id": "52fe447fc3a36847f8099bd7", "cast_id": 15, "profile_path": "/l10aLDp4D8ZwWdmfRdlj6FedUYk.jpg", "order": 8}, {"name": "Patrick Warburton", "character": "Ian (voice)", "id": 9657, "credit_id": "52fe447fc3a36847f8099bdb", "cast_id": 16, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 9}, {"name": "Cody Cameron", "character": "Mr. Weenie (voice)", "id": 12095, "credit_id": "52fe447fc3a36847f8099bdf", "cast_id": 17, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 10}, {"name": "Nika Futterman", "character": "Rosie (voice)", "id": 52698, "credit_id": "52fe447fc3a36847f8099be3", "cast_id": 18, "profile_path": "/xHBt7N6YVvfgQJuWAJ74xLKF9Dr.jpg", "order": 11}, {"name": "Danny Mann", "character": "Serge (voice)", "id": 52699, "credit_id": "52fe447fc3a36847f8099be7", "cast_id": 19, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 12}, {"name": "Jack McGee", "character": "Hunter (voice)", "id": 10489, "credit_id": "52fe447fc3a36847f8099beb", "cast_id": 20, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 13}, {"name": "Michelle Murdocca", "character": "Maria (voice)", "id": 52700, "credit_id": "52fe447fc3a36847f8099bef", "cast_id": 21, "profile_path": "/finkYD4yK5hbvXNKwiN8PToWPa2.jpg", "order": 14}, {"name": "Fergal Reilly", "character": "O'Toole (voice)", "id": 52701, "credit_id": "52fe447fc3a36847f8099bf3", "cast_id": 22, "profile_path": "/924xXlQnyah5S7IXy89UMdzXXsh.jpg", "order": 15}, {"name": "Jackie Harris", "character": "Amanda (Voice)", "id": 1226913, "credit_id": "532cd2a4c3a3685fb3000652", "cast_id": 23, "profile_path": "/hWhnGL9punPhCIOJ22rH0C6o6lT.jpg", "order": 16}], "directors": [{"name": "Roger Allers", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099b95", "profile_path": "/eUMjdBRyv5gF1m5sGHm15TUVuFP.jpg", "id": 15812}, {"name": "Jill Culton", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099b9b", "profile_path": null, "id": 7881}, {"name": "Anthony Stacchi", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099ba1", "profile_path": "/w4xXHA8eG9HIQFw3YXprZqggV4N.jpg", "id": 52691}], "vote_average": 5.9, "runtime": 83}, "7485": {"poster_path": "/wCZv0lNx58sfuLT698RYYJVEeTr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95696996, "overview": "A marksman living in exile is coaxed back into action after learning of a plot to kill the president. Ultimately double-crossed and framed for the attempt, he goes on the run to track the real killer and find out who exactly set him up, and why.", "video": false, "id": 7485, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Shooter", "tagline": "Yesterday was about honor. Today is about justice.", "vote_count": 454, "homepage": "http://www.shootermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0822854", "adult": false, "backdrop_path": "/wZ2u6C7Fw0DahC3Ilr3judpDWYO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2007-03-22", "popularity": 1.65749561568059, "original_title": "Shooter", "budget": 61000000, "cast": [{"name": "Mark Wahlberg", "character": "Bob Lee Swagger", "id": 13240, "credit_id": "52fe447fc3a36847f8099c23", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Michael Pe\u00f1a", "character": "Nick Memphis", "id": 454, "credit_id": "52fe447fc3a36847f8099c27", "cast_id": 2, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 1}, {"name": "Danny Glover", "character": "Colonel Isaac Johnson", "id": 2047, "credit_id": "52fe447fc3a36847f8099c2b", "cast_id": 3, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Kate Mara", "character": "Sarah Fenn", "id": 51072, "credit_id": "52fe447fc3a36847f8099c2f", "cast_id": 4, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 3}, {"name": "Elias Koteas", "character": "Jack Payne", "id": 13550, "credit_id": "52fe447fc3a36847f8099c33", "cast_id": 5, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 4}, {"name": "Rhona Mitra", "character": "Alourdes Galindo", "id": 25702, "credit_id": "52fe447fc3a36847f8099c37", "cast_id": 6, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 5}, {"name": "Jonathan Walker", "character": "Louis Dobbler", "id": 52702, "credit_id": "52fe447fc3a36847f8099c3b", "cast_id": 7, "profile_path": "/1rIItto71vrSYzcS4yXMsXWk2Yu.jpg", "order": 6}, {"name": "Louis Ferreira", "character": "Howard Purnell", "id": 51036, "credit_id": "52fe447fc3a36847f8099c3f", "cast_id": 8, "profile_path": "/mqJglT0g3tRMg5cNeJ7C6vdP4E.jpg", "order": 7}, {"name": "Tate Donovan", "character": "Russ Turner", "id": 15455, "credit_id": "52fe447fc3a36847f8099c43", "cast_id": 9, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 8}, {"name": "Rade \u0160erbed\u017eija", "character": "Michael Sandor (as Rade Sherbedgia)", "id": 1118, "credit_id": "52fe447fc3a36847f8099c47", "cast_id": 10, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 9}, {"name": "Alan C. Peterson", "character": "Officer Stanley Timmons", "id": 52703, "credit_id": "52fe447fc3a36847f8099c4b", "cast_id": 11, "profile_path": "/esrNQmnKq7GYF810l3MmoKjYpsn.jpg", "order": 10}, {"name": "Ned Beatty", "character": "Senator Charles F. Meachum", "id": 13726, "credit_id": "52fe447fc3a36847f8099c4f", "cast_id": 12, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 11}, {"name": "Lane Garrison", "character": "Donnie Fenn", "id": 52704, "credit_id": "52fe447fc3a36847f8099c53", "cast_id": 13, "profile_path": "/aTITQgb1tnn9cTeXSlNIrS2gIKJ.jpg", "order": 12}, {"name": "Zak Santiago", "character": "Senior Agent", "id": 52705, "credit_id": "52fe447fc3a36847f8099c57", "cast_id": 14, "profile_path": "/vplo4yT9wCAf09o34uVw3uVAtJt.jpg", "order": 13}, {"name": "Michael-Ann Connor", "character": "Junior Agent", "id": 52706, "credit_id": "52fe447fc3a36847f8099c5b", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Roberto Lombardi", "character": "Assassination Witness", "id": 1209900, "credit_id": "53c9946ec3a368777e00012e", "cast_id": 22, "profile_path": "/qgrG57sp91kCwPJsPvH15psg6UL.jpg", "order": 15}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099c61", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.8, "runtime": 124}, "1248": {"poster_path": "/athS1NzNvBRBKsaGni3TEOKUO8N.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 75566697, "overview": "This terrifying prequel attempts to trace the murderous roots of the cannibalistic killer. The film follows Lecter from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a med student he hones his appetite for the kill.", "video": false, "id": 1248, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hannibal Rising", "tagline": "It started with revenge.", "vote_count": 265, "homepage": "http://hannibalrising.com/", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367959", "adult": false, "backdrop_path": "/rnRMURXoPku05iuXovoqCfJGr8p.jpg", "production_companies": [{"name": "Young Hannibal Productions", "id": 20394}, {"name": "Carthago Films S.a.r.l.", "id": 20395}, {"name": "Dino De Laurentiis Company", "id": 10308}, {"name": "ETIC Films", "id": 2979}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Quinta Communications", "id": 6370}, {"name": "Zephyr Films", "id": 16923}], "release_date": "2007-02-06", "popularity": 0.611102231664491, "original_title": "Hannibal Rising", "budget": 50000000, "cast": [{"name": "Gaspard Ulliel", "character": "Hannibal Lecter", "id": 16790, "credit_id": "52fe42eac3a36847f802c727", "cast_id": 7, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 0}, {"name": "Aaran Thomas", "character": "Hannibal Lecter (young)", "id": 16789, "credit_id": "52fe42eac3a36847f802c723", "cast_id": 6, "profile_path": null, "order": 1}, {"name": "Gong Li", "character": "Lady Murasaki", "id": 643, "credit_id": "52fe42eac3a36847f802c73d", "cast_id": 12, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 2}, {"name": "Dominic West", "character": "Inspector Popil", "id": 17287, "credit_id": "52fe42eac3a36847f802c741", "cast_id": 13, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Vladis Grutas", "id": 7026, "credit_id": "52fe42eac3a36847f802c745", "cast_id": 14, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Richard Brake", "character": "Enrikas Dortlich", "id": 3901, "credit_id": "52fe42eac3a36847f802c749", "cast_id": 15, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 5}, {"name": "Kevin McKidd", "character": "Petras Kolnas", "id": 9013, "credit_id": "52fe42eac3a36847f802c755", "cast_id": 18, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 6}, {"name": "Stephen Walters", "character": "Zigmas Milko", "id": 39681, "credit_id": "52fe42eac3a36847f802c75d", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Ivan Marevich", "character": "Bronys Grentz", "id": 206721, "credit_id": "52fe42eac3a36847f802c761", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Helena-Lia Tachovsk\u00e1", "character": "Mischa", "id": 16791, "credit_id": "52fe42eac3a36847f802c72b", "cast_id": 8, "profile_path": "/75URPQwJneMtJuHw42QI3XkFEBW.jpg", "order": 9}, {"name": "Richard Leaf", "character": "Father Lecter", "id": 16792, "credit_id": "52fe42eac3a36847f802c72f", "cast_id": 9, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 10}, {"name": "Ingeborga Dapkunaite", "character": "Mother Lecter", "id": 14593, "credit_id": "52fe42eac3a36847f802c751", "cast_id": 17, "profile_path": "/hVqzjEBJiaYp9sTJA4IXNLJtLK2.jpg", "order": 11}, {"name": "Michele Wade", "character": "Nanny", "id": 16793, "credit_id": "52fe42eac3a36847f802c733", "cast_id": 10, "profile_path": null, "order": 12}, {"name": "Martin Hub", "character": "Lothar", "id": 1054325, "credit_id": "52fe42eac3a36847f802c74d", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Joerg Stadler", "character": "Berndt", "id": 12838, "credit_id": "52fe42eac3a36847f802c759", "cast_id": 19, "profile_path": "/21XKFl1ZS7HG8YEPPyPkJj5mztp.jpg", "order": 14}], "directors": [{"name": "Peter Webber", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802c70d", "profile_path": null, "id": 16785}], "vote_average": 5.9, "runtime": 121}, "40264": {"poster_path": "/ug9h5BJ5XX9bp1nJI6Ji07QC3sx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80544470, "overview": "Becca, an anxious, non-vampire teen is torn between two boys. Before she can choose, Becca must get around her controlling father, who embarrasses Becca by treating her like a child. Meanwhile, Becca's friends contend with their own romantic issues - all of which collide at the prom.", "video": false, "id": 40264, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Vampires Suck", "tagline": "Some sagas just won't die.", "vote_count": 64, "homepage": "http://www.dancingwerewolves.com/", "belongs_to_collection": {"backdrop_path": "/rlDK7GYKJP9p1TAj7dIBOuJ7ehO.jpg", "poster_path": "/5lFDNBMJd7Yz6nXWETI8PFVqJXe.jpg", "id": 278920, "name": "Vampires Suck Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1666186", "adult": false, "backdrop_path": "/xU8MoThrmHRF2Oty46pWKTZjrLA.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2010-08-18", "popularity": 0.244498342470907, "original_title": "Vampires Suck", "budget": 20000000, "cast": [{"name": "Chris Riggi", "character": "Jacob White", "id": 108919, "credit_id": "52fe458ac3a36847f80cd123", "cast_id": 7, "profile_path": "/bP2jPaNoWGCEXPwVRGyOB3olEZC.jpg", "order": 0}, {"name": "Matt Lanter", "character": "Edward", "id": 34202, "credit_id": "52fe458ac3a36847f80cd127", "cast_id": 8, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 1}, {"name": "Jenn Proske", "character": "Becca Crane", "id": 129024, "credit_id": "52fe458ac3a36847f80cd143", "cast_id": 15, "profile_path": "/vM30EPCQi1lC6kCDc1BKz0NxuPB.jpg", "order": 2}, {"name": "Ken Jeong", "character": "Daro", "id": 83586, "credit_id": "52fe458ac3a36847f80cd11f", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 3}, {"name": "Bradley Dodds", "character": "Salvatore", "id": 129021, "credit_id": "52fe458ac3a36847f80cd12b", "cast_id": 9, "profile_path": "/s8nmGZpiFcevfDjfENAwJFFkU5j.jpg", "order": 4}, {"name": "Kelsey Ford", "character": "Iris Sullen", "id": 129022, "credit_id": "52fe458ac3a36847f80cd12f", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Arielle Kebbel", "character": "Rachel", "id": 20373, "credit_id": "52fe458ac3a36847f80cd133", "cast_id": 11, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 6}, {"name": "Jun Hee Lee", "character": "Derric", "id": 26997, "credit_id": "52fe458ac3a36847f80cd137", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Mike Mayhall", "character": "Nicholas", "id": 129023, "credit_id": "52fe458ac3a36847f80cd13b", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Krystal Mayo", "character": "Buffy the Vampire Slayer", "id": 109785, "credit_id": "52fe458ac3a36847f80cd13f", "cast_id": 14, "profile_path": "/ozbQdVym78joGAt3uSul3X4wKCK.jpg", "order": 9}, {"name": "Nick Eversman", "character": "Jeremiah", "id": 212768, "credit_id": "52fe458ac3a36847f80cd147", "cast_id": 16, "profile_path": "/faWzhLjJZSsLptXzvlnoyiVpmwZ.jpg", "order": 10}, {"name": "David DeLuise", "character": "Fisherman Scully", "id": 97600, "credit_id": "52fe458ac3a36847f80cd175", "cast_id": 29, "profile_path": "/qbYy7xfsJB8QxNy3oB6tBUReNUe.jpg", "order": 11}, {"name": "Dave Foley", "character": "Principal Smith", "id": 21290, "credit_id": "52fe458ac3a36847f80cd179", "cast_id": 30, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 12}, {"name": "Jeff Witzke", "character": "Dr. Carlton", "id": 144438, "credit_id": "52fe458ac3a36847f80cd17d", "cast_id": 31, "profile_path": "/nvnFz8I3kTKahMGkNOpY2GxXqgv.jpg", "order": 13}, {"name": "Crista Flanagan", "character": "Eden", "id": 58957, "credit_id": "52fe458ac3a36847f80cd181", "cast_id": 32, "profile_path": "/pLXGRqfV0nXNN1PdbfdleT8aQ5j.jpg", "order": 14}, {"name": "Zane Holtz", "character": "Alex", "id": 987572, "credit_id": "52fe458ac3a36847f80cd185", "cast_id": 33, "profile_path": "/4Laz1K9D9r2g5hsb4vOIWrtf2X5.jpg", "order": 15}, {"name": "Anneliese van der Pol", "character": "Jennifer", "id": 1231005, "credit_id": "52fe458ac3a36847f80cd189", "cast_id": 34, "profile_path": "/lSX5PtEPkDRXp6cwPOah4mqZl19.jpg", "order": 16}, {"name": "Diedrich Bader", "character": "Frank Crane", "id": 5727, "credit_id": "52fe458ac3a36847f80cd18d", "cast_id": 35, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 17}, {"name": "Charlie Weber", "character": "Jack", "id": 147404, "credit_id": "551109f79251410701006e02", "cast_id": 45, "profile_path": "/iiBq6ciCuHJiy0So58iuhqrirBl.jpg", "order": 18}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe458ac3a36847f80cd115", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe458ac3a36847f80cd11b", "profile_path": null, "id": 35734}], "vote_average": 4.7, "runtime": 82}, "97614": {"poster_path": "/2Q9xyrHVT3TF2polRXhSEidL7fq.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 597066, "overview": "A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.", "video": false, "id": 97614, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Deadfall", "tagline": "Twisty thriller... a wild ride.", "vote_count": 75, "homepage": "http://www.magpictures.com/deadfall/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1667310", "adult": false, "backdrop_path": "/dVMGKJ9FrgzEHFVwdS1KYLxLqwi.jpg", "production_companies": [{"name": "Magnolia Pictures", "id": 1030}, {"name": "StudioCanal", "id": 694}, {"name": "Madhouse Entertainment", "id": 12199}, {"name": "2929 Productions", "id": 846}, {"name": "Mutual Film Company", "id": 762}], "release_date": "2012-12-07", "popularity": 0.58957916256511, "original_title": "Deadfall", "budget": 12000000, "cast": [{"name": "Eric Bana", "character": "Addison", "id": 8783, "credit_id": "52fe49e79251416c750d725f", "cast_id": 3, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Olivia Wilde", "character": "Liza", "id": 59315, "credit_id": "52fe49e79251416c750d7263", "cast_id": 4, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 1}, {"name": "Charlie Hunnam", "character": "Jay", "id": 56365, "credit_id": "52fe49e79251416c750d7267", "cast_id": 5, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 2}, {"name": "Patrick Kerton", "character": "State trooper", "id": 207818, "credit_id": "52fe49e79251416c750d7287", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Kris Kristofferson", "character": "Chet", "id": 10823, "credit_id": "52fe49e79251416c750d726f", "cast_id": 7, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 4}, {"name": "Sissy Spacek", "character": "June", "id": 5606, "credit_id": "52fe49e79251416c750d726b", "cast_id": 6, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 5}, {"name": "Treat Williams", "character": "Becker", "id": 4515, "credit_id": "52fe49e79251416c750d7277", "cast_id": 9, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 6}, {"name": "Jason Cavalier", "character": "Travis", "id": 30617, "credit_id": "52fe49e79251416c750d7283", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Allison Graham", "character": "Mandy", "id": 104897, "credit_id": "52fe49e79251416c750d727f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Kate Mara", "character": "Hanna", "id": 51072, "credit_id": "52fe49e79251416c750d7273", "cast_id": 8, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 9}, {"name": "Alain Goulem", "character": "Bobby", "id": 21292, "credit_id": "52fe49e79251416c750d727b", "cast_id": 10, "profile_path": null, "order": 10}, {"name": "Kwasi Songui", "character": "Corrections Officer", "id": 207881, "credit_id": "52fe49e79251416c750d72a3", "cast_id": 18, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 11}, {"name": "John Robinson", "character": "Ronnie", "id": 564389, "credit_id": "52fe49e79251416c750d72a7", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Job Daniel", "character": "Young Boxer", "id": 1207358, "credit_id": "52fe49e79251416c750d72ab", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Jocelyne Zucco", "character": "Doris", "id": 198708, "credit_id": "52fe49e79251416c750d72af", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Maxime Savaria", "character": "Deputy Brice", "id": 1207359, "credit_id": "52fe49e79251416c750d72b3", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Kyle Gatehouse", "character": "Deputy Bill", "id": 131335, "credit_id": "52fe49e79251416c750d72b7", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Tom Jackson", "character": "Old Indian Hunter", "id": 1159002, "credit_id": "52fe49e79251416c750d72bb", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Tomomi Morimoto", "character": "Suki", "id": 1207360, "credit_id": "52fe49e79251416c750d72bf", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Nobuya Shimamoto", "character": "Hiro", "id": 930327, "credit_id": "52fe49e79251416c750d72c3", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Cheryl Diabo", "character": "Ottawa Indian Mother", "id": 1207361, "credit_id": "52fe49e79251416c750d72c7", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Andr\u00e9 Kasper Kolstad", "character": "Ottawa Indian Child", "id": 1207362, "credit_id": "52fe49e79251416c750d72cb", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Anie Pascale", "character": "Tricia", "id": 59618, "credit_id": "52fe49e79251416c750d72cf", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Andrew Johnston", "character": "Marvin", "id": 1207363, "credit_id": "52fe49e79251416c750d72d3", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Sarah Booth", "character": "Amy", "id": 1207364, "credit_id": "52fe49e79251416c750d72d7", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Teale Hansen", "character": "Lisa", "id": 1207365, "credit_id": "52fe49e79251416c750d72db", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Victor Cornfoot", "character": "Snowplow Driver", "id": 1207366, "credit_id": "52fe49e79251416c750d72df", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Warona Setshwaelo", "character": "Female Paramedic", "id": 1207367, "credit_id": "52fe49e79251416c750d72e3", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Teale Bishopric", "character": "Lisa", "id": 1207368, "credit_id": "52fe49e79251416c750d72e7", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Catherine Colvey", "character": "Vicky Wienrick", "id": 179267, "credit_id": "52fe49e79251416c750d72eb", "cast_id": 36, "profile_path": "/9ZrCykOw2EnYXfKAu2ILLDLidWY.jpg", "order": 29}, {"name": "Dennis Lafond", "character": "Theo", "id": 1207369, "credit_id": "52fe49e79251416c750d72ef", "cast_id": 37, "profile_path": null, "order": 30}, {"name": "Kevin Desfosses", "character": "State Trooper (uncredited)", "id": 1207370, "credit_id": "52fe49e79251416c750d72f3", "cast_id": 38, "profile_path": null, "order": 31}, {"name": "David Goff", "character": "Harold (uncredited)", "id": 1207371, "credit_id": "52fe49e79251416c750d72f7", "cast_id": 39, "profile_path": null, "order": 32}, {"name": "Benoit Priest", "character": "Stund (uncredited)", "id": 1207372, "credit_id": "52fe49e79251416c750d72fb", "cast_id": 40, "profile_path": null, "order": 33}], "directors": [{"name": "Stefan Ruzowitzky", "department": "Directing", "job": "Director", "credit_id": "52fe49e79251416c750d7255", "profile_path": "/qlN1bMiTQxcOzMMgNQutA6GI47Q.jpg", "id": 15115}], "vote_average": 5.5, "runtime": 95}, "10808": {"poster_path": "/b40aGyixnOfqgeDq1jeU5qzxE5b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176104344, "overview": "Dr. John Dolittle the beloved doctor is back, but this time around he plays cupid to bumbling circus bear Archie as he's so smitten by a Pacific Western bear female, Ava. Dr. Dolittle must help a group of forest creatures to save their forest. But with the aid of his mangy, madcap animal friends, Dr. Dolittle must teach Archie the ways of true romance in time to save his species and his home before their habit is gone. So John held a meeting for every animal in the forest to not give up without a fight no matter what kind of animal expression they have and everyone agrees to do it and save their home.", "video": false, "id": 10808, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Dr. Dolittle 2", "tagline": "The doctor is in again.", "vote_count": 83, "homepage": "", "belongs_to_collection": {"backdrop_path": "/dtz0ju3dikZaiSJ9HmVoMs9imT8.jpg", "poster_path": "/lbETpGm7Fw6LmB0H1LlGwHFwPPw.jpg", "id": 3169, "name": "Dr. Dolittle Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240462", "adult": false, "backdrop_path": "/lzk4Wp8GUHLZvRgrg8iy2lNqRDN.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2001-06-22", "popularity": 0.590540115154065, "original_title": "Dr. Dolittle 2", "budget": 70000000, "cast": [{"name": "Eddie Murphy", "character": "Dr. John Dolittle", "id": 776, "credit_id": "52fe43bb9251416c7501bf9f", "cast_id": 7, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Kristen Wilson", "character": "Lisa Dolittle", "id": 31029, "credit_id": "52fe43bb9251416c7501bfa3", "cast_id": 8, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 1}, {"name": "Raven-Symon\u00e9", "character": "Charisse Dolittle", "id": 66896, "credit_id": "52fe43bb9251416c7501bfa7", "cast_id": 9, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 2}, {"name": "Kyla Pratt", "character": "Maya Dolittle", "id": 31031, "credit_id": "52fe43bb9251416c7501bfab", "cast_id": 10, "profile_path": "/4BGV47PlqqgCcVb7zSveNOFtqjc.jpg", "order": 3}, {"name": "Mandy Moore", "character": "Girl Bear Cub", "id": 16855, "credit_id": "52fe43bb9251416c7501bfb5", "cast_id": 12, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 4}, {"name": "John DiMaggio", "character": "Seeing Eye Dog / Wassup Fish / Mouse", "id": 294916, "credit_id": "52fe43bb9251416c7501bfb9", "cast_id": 13, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 5}, {"name": "Andy Richter", "character": "Eugene Wilson", "id": 28637, "credit_id": "52fe43bb9251416c7501bfbd", "cast_id": 14, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 6}, {"name": "Denise Dowse", "character": "Secretary", "id": 23970, "credit_id": "52fe43bb9251416c7501bfc1", "cast_id": 15, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 7}, {"name": "James Avery", "character": "Eldon", "id": 51547, "credit_id": "52fe43bb9251416c7501bfc5", "cast_id": 16, "profile_path": "/iDJcKHZ67yQv8nAeAUhM8PhQxzb.jpg", "order": 8}], "directors": [{"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe43bb9251416c7501bfb1", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}], "vote_average": 5.1, "runtime": 87}, "269650": {"poster_path": "/3lKdgUvWW3yUHRl3Ervjz2PeXFR.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Based on the comic book by the creator of Ghost in the Shell, a young female soldier Deunan and her cyborg partner Briareos survive through the post World War 3 apocalyptic New York in search of human's future hope, the legendary city of Olympus.", "video": false, "id": 269650, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Appleseed Alpha", "tagline": "To find Olympus, they must fight to survive.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3uFYlHmUZtEGBiwdxtSlphbmfjK.jpg", "poster_path": "/AoM1NzRnSpo6VtIs3wpzKUSObUX.jpg", "id": 87800, "name": "Appleseed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3638012", "adult": false, "backdrop_path": "/dgyvS3CUtTCfPhtT1SDTR2bwCbf.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 29097}], "release_date": "2014-07-14", "popularity": 0.484971818557684, "original_title": "Appleseed Alpha", "budget": 0, "cast": [{"name": "Luci Christian", "character": "Deunan Knute", "id": 201838, "credit_id": "5373d492c3a368150f001883", "cast_id": 2, "profile_path": "/ceYu0OkR0NkjqaLQDlmQsUXjycl.jpg", "order": 1}, {"name": "David Matranga", "character": "Briareos Hecatonchires", "id": 207012, "credit_id": "5373d4a7c3a36815020018d6", "cast_id": 3, "profile_path": "/lDs2XSnwyN7pvtpbP1f2ehERnnu.jpg", "order": 2}, {"name": "Wendel Calvert", "character": "Two Horns (voice)", "id": 1319569, "credit_id": "5373d500c3a36815390018c8", "cast_id": 6, "profile_path": "/60h5uua8rPn3jC4YgElKPcC2GNO.jpg", "order": 3}, {"name": "Adam Gibbs", "character": "Olson (voice)", "id": 1319570, "credit_id": "5373d50dc3a36815390018d2", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Elizabeth Bunch", "character": "Nyx (voice)", "id": 1319571, "credit_id": "5373d51dc3a3681530001908", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Chris Hutchinson", "character": "Matthews (voice)", "id": 1319572, "credit_id": "5373d530c3a368153000190d", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Josh Sheltz", "character": "Talos (voice)", "id": 1319573, "credit_id": "5373d540c3a36815280018ab", "cast_id": 10, "profile_path": null, "order": 7}], "directors": [{"name": "Shinji Aramaki", "department": "Directing", "job": "Director", "credit_id": "5373d463c3a36815020018cf", "profile_path": null, "id": 70100}], "vote_average": 6.5, "runtime": 90}, "58595": {"poster_path": "/40iabcM7KQLJzmO8yGm8AvUbxZR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 396600000, "overview": "After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.", "video": false, "id": 58595, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Snow White and the Huntsman", "tagline": "The Fairytale is Over", "vote_count": 1351, "homepage": "http://www.snowwhiteandthehuntsman.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1735898", "adult": false, "backdrop_path": "/i5qm0Zw4GiN9sWK5yAVQMtK44w5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Roth Films", "id": 16314}], "release_date": "2012-06-01", "popularity": 1.56425102147751, "original_title": "Snow White and the Huntsman", "budget": 170000000, "cast": [{"name": "Kristen Stewart", "character": "Snow White", "id": 37917, "credit_id": "52fe496ac3a36847f8198f9b", "cast_id": 1027, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Queen Ravenna", "id": 6885, "credit_id": "52fe496ac3a36847f8198f35", "cast_id": 1003, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Chris Hemsworth", "character": "The Huntsman", "id": 74568, "credit_id": "52fe496ac3a36847f8198f39", "cast_id": 1005, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 2}, {"name": "Sam Claflin", "character": "William", "id": 237455, "credit_id": "52fe496ac3a36847f8198f3d", "cast_id": 1006, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 3}, {"name": "Ian McShane", "character": "Beith", "id": 6972, "credit_id": "52fe496ac3a36847f8198f71", "cast_id": 1015, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 4}, {"name": "Ray Winstone", "character": "Gort", "id": 5538, "credit_id": "52fe496ac3a36847f8198f75", "cast_id": 1016, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 5}, {"name": "Nick Frost", "character": "Nion", "id": 11109, "credit_id": "52fe496ac3a36847f8198f79", "cast_id": 1017, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 6}, {"name": "Toby Jones", "character": "Coll", "id": 13014, "credit_id": "52fe496ac3a36847f8198f7d", "cast_id": 1018, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 7}, {"name": "Eddie Marsan", "character": "Duir", "id": 1665, "credit_id": "52fe496ac3a36847f8198f81", "cast_id": 1019, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 8}, {"name": "Bob Hoskins", "character": "Muir", "id": 382, "credit_id": "52fe496ac3a36847f8198f85", "cast_id": 1020, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 9}, {"name": "Sam Spruell", "character": "Finn", "id": 55585, "credit_id": "52fe496ac3a36847f8198fab", "cast_id": 1030, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 10}, {"name": "Johnny Harris", "character": "Quert", "id": 32300, "credit_id": "52fe496ac3a36847f8198faf", "cast_id": 1031, "profile_path": "/1iKpLfSiJBFDrvt4RCJOGJrq2NM.jpg", "order": 11}, {"name": "Brian Gleeson", "character": "Gus", "id": 63364, "credit_id": "52fe496ac3a36847f8198fb3", "cast_id": 1032, "profile_path": "/o0Zic3R5sz2Mmrnz2CfvRuZYulY.jpg", "order": 12}, {"name": "Vincent Regan", "character": "Duke Hammond", "id": 9831, "credit_id": "52fe496ac3a36847f8198fb7", "cast_id": 1033, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 13}, {"name": "Noah Huntley", "character": "King Magnus", "id": 2050, "credit_id": "52fe496ac3a36847f8198fbb", "cast_id": 1034, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 14}, {"name": "Liberty Ross", "character": "Queen Eleanor", "id": 1088912, "credit_id": "52fe496ac3a36847f8198fbf", "cast_id": 1035, "profile_path": null, "order": 15}, {"name": "Christopher Obi", "character": "Mirror Man", "id": 1088913, "credit_id": "52fe496ac3a36847f8198fc3", "cast_id": 1036, "profile_path": "/9mkVa3qKba8S7UcyzUYZPkeRG37.jpg", "order": 16}, {"name": "Lily Cole", "character": "Greta", "id": 53688, "credit_id": "52fe496ac3a36847f8198fc7", "cast_id": 1037, "profile_path": "/9nbOarzgwOXHx9XJFfPBXjTF4IT.jpg", "order": 17}, {"name": "Rachael Stirling", "character": "Anna", "id": 18067, "credit_id": "52fe496ac3a36847f8198fcb", "cast_id": 1038, "profile_path": "/qG6JbbYVcZQnJhXThyY5U8PMyyb.jpg", "order": 18}, {"name": "Hattie Gotobed", "character": "Lily", "id": 1279512, "credit_id": "52fe496ac3a36847f8198fcf", "cast_id": 1039, "profile_path": null, "order": 19}, {"name": "Raffey Cassidy", "character": "Young Snow White", "id": 1055230, "credit_id": "52fe496ac3a36847f8198fd3", "cast_id": 1040, "profile_path": "/zrnh9Xju0UiOr8NeP1060TuNbzo.jpg", "order": 20}, {"name": "Xavier Atkins", "character": "Young William", "id": 1279513, "credit_id": "52fe496ac3a36847f8198fd7", "cast_id": 1041, "profile_path": null, "order": 21}, {"name": "Izzy Meikle-Small", "character": "Young Ravenna", "id": 142388, "credit_id": "52fe496ac3a36847f8198fdb", "cast_id": 1042, "profile_path": "/rEtcyAA8q3GObOL99EYCJUpAEvF.jpg", "order": 22}, {"name": "Anastasia Hille", "character": "Ravenna's mother", "id": 66791, "credit_id": "52fe496ac3a36847f8198fdf", "cast_id": 1043, "profile_path": "/tjUxXrtcF5pZ8k6DMdmXZikHAIP.jpg", "order": 23}, {"name": "Elliot Reeve", "character": "Young Finn", "id": 1279514, "credit_id": "52fe496ac3a36847f8198fe3", "cast_id": 1044, "profile_path": null, "order": 24}, {"name": "Mark Wingett", "character": "Thomas", "id": 65303, "credit_id": "52fe496ac3a36847f8198fe7", "cast_id": 1045, "profile_path": "/p3XQAnB8RZQsvbOoQio4lmH21jM.jpg", "order": 25}, {"name": "Jamie Blackley", "character": "Iain", "id": 221985, "credit_id": "52fe496ac3a36847f8198feb", "cast_id": 1046, "profile_path": "/AiRZjxoqNHh4pR7ngfwhLBvGe3F.jpg", "order": 26}, {"name": "Dave Legeno", "character": "Broch", "id": 60348, "credit_id": "52fe496ac3a36847f8198fef", "cast_id": 1047, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 27}, {"name": "Matt Berry", "character": "Percy", "id": 119904, "credit_id": "52fe496ac3a36847f8198ff3", "cast_id": 1048, "profile_path": "/xlPqH1tKaBUZVTZpwH7E3EkqbUR.jpg", "order": 28}, {"name": "Greg Hicks", "character": "Black Knight General", "id": 183151, "credit_id": "52fe496ac3a36847f8198ff7", "cast_id": 1049, "profile_path": null, "order": 29}, {"name": "Peter Ferdinando", "character": "Black Knight", "id": 109833, "credit_id": "52fe496ac3a36847f8198ffb", "cast_id": 1050, "profile_path": "/jrpB6xsVtTQ3f29dhywY5XH7AVP.jpg", "order": 30}, {"name": "Andrew Hawley", "character": "Guard on Duty", "id": 115683, "credit_id": "52fe496ac3a36847f8198fff", "cast_id": 1051, "profile_path": null, "order": 31}, {"name": "Joey Ansah", "character": "Aldan", "id": 29406, "credit_id": "52fe496ac3a36847f8199003", "cast_id": 1052, "profile_path": "/jHubXiYEiUhonrVzXUJfVTOJ2Jq.jpg", "order": 32}, {"name": "Gregor Truter", "character": "Duke's Commander", "id": 214794, "credit_id": "52fe496ac3a36847f8199007", "cast_id": 1053, "profile_path": null, "order": 33}, {"name": "Tom Mullion", "character": "Soldier", "id": 1279515, "credit_id": "52fe496ac3a36847f819900b", "cast_id": 1054, "profile_path": null, "order": 34}, {"name": "Darren Kent", "character": "Emaciated Peasant (uncredited)", "id": 1035907, "credit_id": "54e526dbc3a3682af600049e", "cast_id": 1056, "profile_path": "/erhPfnASkKB5ITTAi8OVf6tVz0B.jpg", "order": 35}], "directors": [{"name": "Rupert Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe496ac3a36847f8198f91", "profile_path": "/kQyRb1BmPy6or6FHMstS2e7L3J8.jpg", "id": 228134}], "vote_average": 5.5, "runtime": 127}, "7512": {"poster_path": "/fPAhLmWdXDuwDPb37ccc6DqkJiw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 495303, "overview": "To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.", "video": false, "id": 7512, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Idiocracy", "tagline": "In the future, intelligence is extinct.", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387808", "adult": false, "backdrop_path": "/1Nb27vtpb6ua72x5KPgdY6MXjYa.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Ternion Pictures", "id": 20992}], "release_date": "2006-09-01", "popularity": 0.798034630098955, "original_title": "Idiocracy", "budget": 30000000, "cast": [{"name": "Luke Wilson", "character": "Joe Bauers", "id": 36422, "credit_id": "52fe4481c3a36847f809a179", "cast_id": 1, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 0}, {"name": "Maya Rudolph", "character": "Rita", "id": 52792, "credit_id": "52fe4481c3a36847f809a17d", "cast_id": 2, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 1}, {"name": "Dax Shepard", "character": "Frito", "id": 51298, "credit_id": "52fe4481c3a36847f809a181", "cast_id": 3, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 2}, {"name": "Terry Crews", "character": "President Camacho (as Terry Alan Crews)", "id": 53256, "credit_id": "52fe4481c3a36847f809a1df", "cast_id": 23, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 3}, {"name": "Anthony 'Citric' Campos", "character": "Secretary of Defense", "id": 52793, "credit_id": "52fe4481c3a36847f809a185", "cast_id": 4, "profile_path": null, "order": 4}, {"name": "David Herman", "character": "Secretary of State", "id": 52794, "credit_id": "52fe4481c3a36847f809a189", "cast_id": 5, "profile_path": "/6S0UlaChdcilaeYk5svTxOCtShC.jpg", "order": 5}, {"name": "Sonny Castillo", "character": "Prosecutor", "id": 52795, "credit_id": "52fe4481c3a36847f809a18d", "cast_id": 6, "profile_path": null, "order": 6}, {"name": "Kevin McAfee", "character": "Bailiff (as Kevin S. McAfee)", "id": 52796, "credit_id": "52fe4481c3a36847f809a191", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Robert Musgrave", "character": "Sgt. Keller", "id": 52797, "credit_id": "52fe4481c3a36847f809a195", "cast_id": 8, "profile_path": null, "order": 8}, {"name": "Michael McCafferty", "character": "Officer Collins (as Mike McCafferty)", "id": 182680, "credit_id": "5441b551c3a3683e0100076c", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Christopher Ryan", "character": "Hospital Technician (as Ryan Melton)", "id": 52798, "credit_id": "52fe4481c3a36847f809a199", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Justin Long", "character": "Doctor", "id": 15033, "credit_id": "52fe4481c3a36847f809a19d", "cast_id": 10, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 11}, {"name": "Heath Jones", "character": "Cop #1", "id": 52799, "credit_id": "52fe4481c3a36847f809a1a1", "cast_id": 11, "profile_path": null, "order": 12}, {"name": "Eli Mu\u00f1oz", "character": "Horny Guy", "id": 52800, "credit_id": "52fe4481c3a36847f809a1a5", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Patrick Fischler", "character": "Yuppie Husband", "id": 52801, "credit_id": "52fe4481c3a36847f809a1a9", "cast_id": 13, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 14}, {"name": "Darlene Hunt", "character": "Yuppie Wife", "id": 21005, "credit_id": "52fe4481c3a36847f809a1ad", "cast_id": 14, "profile_path": null, "order": 15}, {"name": "Ryan Ransdell", "character": "Trashy Guy", "id": 52802, "credit_id": "52fe4481c3a36847f809a1b1", "cast_id": 15, "profile_path": null, "order": 16}, {"name": "Melissa Sweet", "character": "Slutty Girl", "id": 1375020, "credit_id": "5441b5c0c3a3683e01000779", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Valerie Posas", "character": "New Slutty Girl", "id": 1375021, "credit_id": "5441b5d50e0a26634d00076b", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Wes Davis", "character": "Trashy Teen Jock", "id": 1375022, "credit_id": "5441b5e20e0a266333000801", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Andrew Wilson", "character": "Beef Supreme", "id": 71555, "credit_id": "5441b5f9c3a3683e0e000786", "cast_id": 29, "profile_path": "/tGwZ3P9xENc0C8HD7wiuspCm8tM.jpg", "order": 20}, {"name": "Mark Tuner", "character": "Officer", "id": 1375023, "credit_id": "5441b606c3a3683e0e00078d", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Kevin Klee", "character": "Main Character (Ow! My Balls! Guy)", "id": 1375024, "credit_id": "5441b621c3a3683df20007b5", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "John Dodson", "character": "Additional Officer", "id": 1375025, "credit_id": "5441b642c3a3683e050007db", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Melissa Espinales", "character": "Counter Woman", "id": 1375026, "credit_id": "5441b650c3a3683e0b0007bf", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Joseph Cheatham", "character": "Doctor in Waiting Room", "id": 1375027, "credit_id": "5441b679c3a3683e0b0007ca", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Jason Schaefer", "character": "Prison Guard #1 / Costco Greeter", "id": 1375028, "credit_id": "5441b68fc3a3683df7000739", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Richard Reeder", "character": "Prison Guard #2", "id": 1375029, "credit_id": "5441b69fc3a3683e08000761", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Lawrence Castillo", "character": "Prison Guard #3", "id": 1375030, "credit_id": "5441b6a9c3a3683dfb000794", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Turk Pipkin", "character": "Guy at Costco", "id": 157534, "credit_id": "5441b6c90e0a26633600082a", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Heather Kafka", "character": "Woman at Carl's Jr.", "id": 71565, "credit_id": "5441b6f50e0a26632d00077b", "cast_id": 39, "profile_path": null, "order": 30}, {"name": "Christopher M. Campos", "character": "Congressman #1", "id": 1375031, "credit_id": "5441b708c3a3683e0e0007ba", "cast_id": 40, "profile_path": null, "order": 31}, {"name": "Roman Ramos", "character": "Congressman #2", "id": 1375032, "credit_id": "5441b7140e0a26633d00085f", "cast_id": 41, "profile_path": null, "order": 32}, {"name": "Randal Reeder", "character": "Secret Service Thug", "id": 215887, "credit_id": "5441b72cc3a3683e0b0007e3", "cast_id": 42, "profile_path": "/8rCIZVcAFwBrvrj9lFXho4HH2Xf.jpg", "order": 33}, {"name": "Scarface", "character": "Upgrayedd (as Brad \"Scarface\" Jordan)", "id": 1087617, "credit_id": "5441b79b0e0a26633d000878", "cast_id": 43, "profile_path": null, "order": 34}, {"name": "Brendan Hill", "character": "Secretary of Energy", "id": 94983, "credit_id": "5441b7b90e0a26633a0007cc", "cast_id": 44, "profile_path": null, "order": 35}, {"name": "Thomas Haden Church", "character": "Brawndo CEO", "id": 19159, "credit_id": "5441b7ebc3a3683df7000786", "cast_id": 45, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 36}, {"name": "Melissa Dawn", "character": "Female Newscaster", "id": 1375033, "credit_id": "5441b808c3a3683e080007ac", "cast_id": 46, "profile_path": null, "order": 37}, {"name": "Derek Southers", "character": "Male Newscaster", "id": 1375034, "credit_id": "5441b814c3a3683df7000798", "cast_id": 47, "profile_path": null, "order": 38}, {"name": "Lidia Porto", "character": "Female Reporter", "id": 180527, "credit_id": "5441b829c3a3683df70007a0", "cast_id": 48, "profile_path": "/pf93ztgaIlecCLhLd0t4yId8Dvb.jpg", "order": 39}, {"name": "Gregory Kelly", "character": "Stadium Guard (as Greg Kelly)", "id": 1375035, "credit_id": "5441b86ec3a3683df2000821", "cast_id": 49, "profile_path": null, "order": 40}, {"name": "Greg Pitts", "character": "Cameraman", "id": 84816, "credit_id": "5441b879c3a3683df70007af", "cast_id": 50, "profile_path": "/gl2maPRYG8s7WcAQRNel26Cswkc.jpg", "order": 41}, {"name": "Jason Konopisos", "character": "Cop at Government Center", "id": 1375036, "credit_id": "5441b906c3a3683dfb000801", "cast_id": 51, "profile_path": null, "order": 42}, {"name": "Mitch Baker", "character": "Doctor (with Trashy Guy)", "id": 32238, "credit_id": "5441b91fc3a3683e01000828", "cast_id": 52, "profile_path": null, "order": 43}, {"name": "Daniel Smith", "character": "Control Room Director", "id": 1375037, "credit_id": "5441b94dc3a3683e0b00084b", "cast_id": 53, "profile_path": null, "order": 44}, {"name": "Chris Warner", "character": "Cop at Costco", "id": 139235, "credit_id": "5441b98fc3a3683e01000840", "cast_id": 54, "profile_path": null, "order": 45}, {"name": "Lonnie Nelson", "character": "Trapped Man", "id": 1375038, "credit_id": "5441b9a20e0a26633d0008e7", "cast_id": 55, "profile_path": null, "order": 46}, {"name": "Danny Cochran", "character": "Secretary of Education", "id": 1375039, "credit_id": "5441b9b1c3a3683e0b000858", "cast_id": 56, "profile_path": null, "order": 47}, {"name": "Marcos Martinez Rios", "character": "Secret Service Thug #2", "id": 1375040, "credit_id": "5441b9cd0e0a26633a00083e", "cast_id": 57, "profile_path": null, "order": 48}, {"name": "Earl Mann", "character": "Narrator", "id": 1375041, "credit_id": "5441b9d90e0a2663330008b0", "cast_id": 58, "profile_path": null, "order": 49}, {"name": "Sara Rue", "character": "Attorney General (uncredited)", "id": 10131, "credit_id": "52fee4299251417cd3099817", "cast_id": 24, "profile_path": "/1OlEg9M8oSsGivjyFJJFyCkKqkk.jpg", "order": 50}], "directors": [{"name": "Mike Judge", "department": "Directing", "job": "Director", "credit_id": "52fe4481c3a36847f809a1b7", "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "id": 17403}], "vote_average": 6.3, "runtime": 84}, "7516": {"poster_path": "/sIxQqvlhqWRiw0czLNuGS8q3P4F.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57103895, "overview": "When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.", "video": false, "id": 7516, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Smokin' Aces", "tagline": "Nobody gets away clean.", "vote_count": 136, "homepage": "http://www.smokinaces.net/", "belongs_to_collection": {"backdrop_path": "/1TbMf5bJnYCP9sXhRSVHULPJDbw.jpg", "poster_path": "/9Y702mgpXAMQsGJ4jGEH1EqrJaW.jpg", "id": 96680, "name": "Smokin' Aces Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0475394", "adult": false, "backdrop_path": "/68DzpzWIOA54ooEvplDxtCfkWY5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}, {"name": "StudioCanal", "id": 694}, {"name": "Relativity Media", "id": 7295}, {"name": "Scion Films", "id": 7419}], "release_date": "2006-12-05", "popularity": 0.876814741474845, "original_title": "Smokin' Aces", "budget": 17000000, "cast": [{"name": "Ryan Reynolds", "character": "Richard Messner", "id": 10859, "credit_id": "52fe4482c3a36847f809a3a7", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Donald Carruthers", "id": 11477, "credit_id": "52fe4482c3a36847f809a3ab", "cast_id": 2, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Joseph Ruskin", "character": "Primo Sparazza", "id": 15998, "credit_id": "52fe4482c3a36847f809a3af", "cast_id": 3, "profile_path": "/5D0Izyi1qHLhlRWLoXgimfN436.jpg", "order": 2}, {"name": "Alex Rocco", "character": "Serna", "id": 20752, "credit_id": "52fe4482c3a36847f809a3b3", "cast_id": 4, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 3}, {"name": "Wayne Newton", "character": "Himself", "id": 10681, "credit_id": "52fe4482c3a36847f809a3b7", "cast_id": 5, "profile_path": "/18fkbXVRlEIXKKmsGq5OeJuTJ9V.jpg", "order": 4}, {"name": "Jeremy Piven", "character": "Buddy Israel", "id": 12799, "credit_id": "52fe4482c3a36847f809a3bb", "cast_id": 6, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 5}, {"name": "Ben Affleck", "character": "Jack Dupree", "id": 880, "credit_id": "52fe4482c3a36847f809a3bf", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 6}, {"name": "Martin Henderson", "character": "Hollis Elmore", "id": 26291, "credit_id": "52fe4482c3a36847f809a3c3", "cast_id": 9, "profile_path": "/tWuEwdM7TnM9KenYbRKLSFbo3zx.jpg", "order": 7}, {"name": "Common", "character": "Sir Ivy", "id": 4238, "credit_id": "52fe4482c3a36847f809a3c7", "cast_id": 10, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 8}, {"name": "Christopher Michael Holley", "character": "Beanie", "id": 52855, "credit_id": "52fe4482c3a36847f809a3cb", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Andy Garc\u00eda", "character": "Stanley Locke", "id": 1271, "credit_id": "52fe4482c3a36847f809a3cf", "cast_id": 12, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 10}, {"name": "Mike Falkow", "character": "Freeman Heller", "id": 52857, "credit_id": "52fe4482c3a36847f809a3d3", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Joe Drago", "character": "FBI Aid", "id": 52859, "credit_id": "52fe4482c3a36847f809a3d7", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Jeff Habberstad", "character": "Top Coated Gunman", "id": 9624, "credit_id": "52fe4482c3a36847f809a3db", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Peter Berg", "character": "\"Pistol\" Pete Deeks", "id": 36602, "credit_id": "52fe4482c3a36847f809a40f", "cast_id": 24, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 14}, {"name": "Matthew Fox", "character": "Bill", "id": 28657, "credit_id": "52fe4482c3a36847f809a413", "cast_id": 25, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 15}, {"name": "Alicia Keys", "character": "Georgia Sykes", "id": 72208, "credit_id": "52fe4482c3a36847f809a41d", "cast_id": 27, "profile_path": "/7s596YUye3gnBg0dD1BC5WCcoXQ.jpg", "order": 16}, {"name": "Tommy Flanagan", "character": "Lazlo Soot", "id": 2478, "credit_id": "52fe4482c3a36847f809a421", "cast_id": 28, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 17}, {"name": "Kevin Durand", "character": "Jeeves Tremor", "id": 79072, "credit_id": "52fe4482c3a36847f809a425", "cast_id": 29, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 18}, {"name": "Chris Pine", "character": "Darwin Tremor", "id": 62064, "credit_id": "52fe4482c3a36847f809a429", "cast_id": 30, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 19}], "directors": [{"name": "Joe Carnahan", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a3e1", "profile_path": "/5YPrZ1JprLwtU4tn5DG0wqLjsAT.jpg", "id": 40223}], "vote_average": 6.1, "runtime": 109}, "2123": {"poster_path": "/y7OG1Y2UvnaEoQEQIonnykJvdwt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149270999, "overview": "Rhode Island State Trooper Charlie Baileygates has a multiple personality disorder. One personality is crazy and aggressive, while the other is more friendly and laid back. Both of these personalities fall in love with the same woman named Irene after Charlie loses his medication.", "video": false, "id": 2123, "genres": [{"id": 35, "name": "Comedy"}], "title": "Me, Myself & Irene", "tagline": "From gentle to mental.", "vote_count": 256, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0183505", "adult": false, "backdrop_path": "/pIKoFpNAGd4J6kOun4PVLBfE4jN.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2000-06-15", "popularity": 1.52425242841699, "original_title": "Me, Myself & Irene", "budget": 51000000, "cast": [{"name": "Jim Carrey", "character": "Off. Charlie Baileygates/Hank Evans", "id": 206, "credit_id": "52fe4338c3a36847f8043759", "cast_id": 14, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Irene P. Waters", "id": 9137, "credit_id": "52fe4338c3a36847f8043761", "cast_id": 16, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Anthony Anderson", "character": "Jamaal Baileygates", "id": 18471, "credit_id": "52fe4338c3a36847f8043765", "cast_id": 17, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 2}, {"name": "Robert Forster", "character": "Colonel Partington", "id": 5694, "credit_id": "53d606bcc3a3686b8b005932", "cast_id": 29, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Agent Boshane", "id": 28633, "credit_id": "53d604cdc3a3686b850057b2", "cast_id": 26, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Zen Gesner", "character": "Agent Peterson", "id": 60672, "credit_id": "53d606afc3a3686b940055fd", "cast_id": 28, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 5}, {"name": "Mongo Brownlee", "character": "Lee Harvey Baileygates", "id": 21802, "credit_id": "52fe4338c3a36847f8043769", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Jerod Mixon", "character": "Shante Jr. Bailreygates", "id": 21804, "credit_id": "52fe4338c3a36847f8043771", "cast_id": 20, "profile_path": "/lshCeycr3t6iw3EZvqzGmEYqxPb.jpg", "order": 7}, {"name": "Chris Cooper", "character": "Lieutenant Gerke", "id": 2955, "credit_id": "52fe4338c3a36847f8043775", "cast_id": 21, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 8}, {"name": "Cam Neely", "character": "", "id": 184180, "credit_id": "52fe4338c3a36847f8043779", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Shannon Whirry", "character": "Beautiful Mom", "id": 81287, "credit_id": "52fe4338c3a36847f804377d", "cast_id": 23, "profile_path": "/4zeJ3FwTz4R3C76WCXC7eYJWui4.jpg", "order": 10}, {"name": "Traylor Howard", "character": "Layla", "id": 54826, "credit_id": "52fe4338c3a36847f8043781", "cast_id": 24, "profile_path": "/8UYTuF7qOZeLnQnTEvnhha1D7MX.jpg", "order": 11}, {"name": "Tony Cox", "character": "Shonte", "id": 19754, "credit_id": "53d604e0c3a3686b940055e3", "cast_id": 27, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 12}, {"name": "Daniel Greene", "character": "Dickie Thurman", "id": 42199, "credit_id": "52fe4338c3a36847f8043785", "cast_id": 25, "profile_path": null, "order": 13}], "directors": [{"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4338c3a36847f804370d", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}, {"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4338c3a36847f8043713", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}], "vote_average": 6.0, "runtime": 116}, "97630": {"poster_path": "/mjLAlPXAIooAiOqHu5IB98nfHKn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138820716, "overview": "A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.", "video": false, "id": 97630, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "Zero Dark Thirty", "tagline": "The Greatest Manhunt in History", "vote_count": 835, "homepage": "http://www.zerodarkthirty-movie.com/site/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1790885", "adult": false, "backdrop_path": "/oSGHRXvdHFbUlSq2DplenVFdqqb.jpg", "production_companies": [{"name": "First Light Production", "id": 20344}, {"name": "Columbia Pictures", "id": 5}, {"name": "Annapurna Pictures", "id": 13184}], "release_date": "2012-12-19", "popularity": 2.30766378711782, "original_title": "Zero Dark Thirty", "budget": 40000000, "cast": [{"name": "Jessica Chastain", "character": "Maya", "id": 83002, "credit_id": "52fe49e89251416c750d7415", "cast_id": 4, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 0}, {"name": "Jason Clarke", "character": "Dan", "id": 76512, "credit_id": "52fe49e89251416c750d748f", "cast_id": 38, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 1}, {"name": "Mark Strong", "character": "George", "id": 2983, "credit_id": "52fe49e89251416c750d7411", "cast_id": 3, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Patrick - Squadron Team Leader", "id": 33192, "credit_id": "52fe49e89251416c750d7419", "cast_id": 5, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Chris Pratt", "character": "Justin - DEVGRU", "id": 73457, "credit_id": "52fe49e89251416c750d741d", "cast_id": 6, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 4}, {"name": "Kyle Chandler", "character": "Joseph Bradley", "id": 3497, "credit_id": "52fe49e89251416c750d7421", "cast_id": 7, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 5}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Larry from Ground Branch", "id": 25616, "credit_id": "52fe49e89251416c750d7437", "cast_id": 11, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 6}, {"name": "Mark Duplass", "character": "Steve", "id": 45407, "credit_id": "52fe49e89251416c750d743b", "cast_id": 12, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 7}, {"name": "Scott Adkins", "character": "John", "id": 78110, "credit_id": "52fe49e89251416c750d743f", "cast_id": 13, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 8}, {"name": "Jennifer Ehle", "character": "Jessica", "id": 49971, "credit_id": "52fe49e89251416c750d7443", "cast_id": 15, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 9}, {"name": "Ricky Sekhon", "character": "Osama Bin Laden", "id": 1061516, "credit_id": "52fe49e89251416c750d7447", "cast_id": 16, "profile_path": "/dalAG4IjRcFSO5tgjNR94qA5EK9.jpg", "order": 10}, {"name": "Reda Kateb", "character": "Ammar", "id": 89626, "credit_id": "52fe49e89251416c750d744b", "cast_id": 18, "profile_path": "/zfrJui3N3UybfLJQOMC6SalcBlJ.jpg", "order": 11}, {"name": "Harold Perrineau", "character": "Jack", "id": 6195, "credit_id": "52fe49e89251416c750d744f", "cast_id": 19, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 12}, {"name": "Jeremy Strong", "character": "Thomas", "id": 239271, "credit_id": "52fe49e89251416c750d7453", "cast_id": 20, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 13}, {"name": "J.J. Kandel", "character": "J.J.", "id": 1140088, "credit_id": "52fe49e89251416c750d7457", "cast_id": 21, "profile_path": "/e1kC4CdKjfS42ytkZaoAUz1jfE9.jpg", "order": 14}, {"name": "James Gandolfini", "character": "C.I.A. Director", "id": 4691, "credit_id": "52fe49e89251416c750d745b", "cast_id": 22, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 15}, {"name": "Stephen Dillane", "character": "National Security Advisor", "id": 8435, "credit_id": "52fe49e89251416c750d745f", "cast_id": 23, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 16}, {"name": "John Schwab", "character": "Deputy National Security Advisor", "id": 207304, "credit_id": "52fe49e89251416c750d7463", "cast_id": 24, "profile_path": "/edY8s4wNBkbBkprdsFm1wTBb1sl.jpg", "order": 17}, {"name": "Martin Delaney", "character": "Assistant to National Security Advisor", "id": 255430, "credit_id": "52fe49e89251416c750d7467", "cast_id": 25, "profile_path": "/iN4EbneAUN6Yfd24424jLlX7q7Q.jpg", "order": 18}, {"name": "John Barrowman", "character": "Jeremy", "id": 182287, "credit_id": "52fe49e89251416c750d746b", "cast_id": 28, "profile_path": "/bqORM8i3H0EFc8UqYMUpFZNA8u6.jpg", "order": 19}, {"name": "Jeff Mash", "character": "Deputy Director of C.I.A.", "id": 1140091, "credit_id": "52fe49e89251416c750d746f", "cast_id": 29, "profile_path": "/9CfRm0zsWztCSDo1QiBu0slIr98.jpg", "order": 20}, {"name": "Taylor Kinney", "character": "Jared - DEVGRU", "id": 210271, "credit_id": "52fe49e89251416c750d7473", "cast_id": 30, "profile_path": "/22OpVOcxlDR2aFX3khIIQekhaEJ.jpg", "order": 21}, {"name": "Callan Mulvey", "character": "Saber - DEVGRU", "id": 208296, "credit_id": "52fe49e89251416c750d7477", "cast_id": 31, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 22}, {"name": "Siaosi Fonua", "character": "Henry - DEVGRU", "id": 1140092, "credit_id": "52fe49e89251416c750d747b", "cast_id": 32, "profile_path": "/dYbFLXKZpitdopX1acst04ay1op.jpg", "order": 23}, {"name": "Phil Somerville", "character": "Phil - DEVGRU", "id": 1140093, "credit_id": "52fe49e89251416c750d747f", "cast_id": 33, "profile_path": "/mCX6RUGErX9sGB6zuCa033eZe13.jpg", "order": 24}, {"name": "Nash Edgerton", "character": "Nate - DEVGRU EOD", "id": 75131, "credit_id": "52fe49e89251416c750d7483", "cast_id": 34, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 25}, {"name": "Mike Colter", "character": "Mike - DEVGRU", "id": 450, "credit_id": "52fe49e89251416c750d7487", "cast_id": 35, "profile_path": "/eP0RelLOZrlMH2W3qFVx87VG9ij.jpg", "order": 26}, {"name": "Jessica Collins", "character": "Debbie", "id": 1215663, "credit_id": "52fe49e89251416c750d749f", "cast_id": 41, "profile_path": "/czZN9Vx2coCDTz1TbkFBsp9LcFH.jpg", "order": 27}, {"name": "Frank Grillo", "character": "Squadron Commanding Officer", "id": 81685, "credit_id": "52fe49e89251416c750d748b", "cast_id": 36, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 28}, {"name": "Fares Fares", "character": "Hakim", "id": 57012, "credit_id": "54ce916c9251415cb8004dad", "cast_id": 54, "profile_path": "/1BE5IG3hcFXfMjBuJJyKs2JpPjI.jpg", "order": 29}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe49e89251416c750d7407", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 6.3, "runtime": 157}, "7520": {"poster_path": "/yT5OPWfdZGxxLYYn7qaVgt4GXvy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171504781, "overview": "A talented New York bartender takes a job at a bar in Jamaica and falls in love.", "video": false, "id": 7520, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Cocktail", "tagline": "When he pours, he reigns.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094889", "adult": false, "backdrop_path": "/xwT7LGaJCpq0lbVgUlxNLPCu3eA.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1988-07-29", "popularity": 0.381525359620681, "original_title": "Cocktail", "budget": 0, "cast": [{"name": "Tom Cruise", "character": "Brian Flanagan", "id": 500, "credit_id": "52fe4482c3a36847f809a58d", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Bryan Brown", "character": "Douglas \"Doug\" Coughlin", "id": 29092, "credit_id": "52fe4482c3a36847f809a591", "cast_id": 2, "profile_path": "/ppE8Gy8jyjB5oQwwryVFgvQlHUr.jpg", "order": 1}, {"name": "Elisabeth Shue", "character": "Jordan Mooney", "id": 1951, "credit_id": "52fe4482c3a36847f809a595", "cast_id": 3, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 2}, {"name": "Lisa Banes", "character": "Bonnie", "id": 52878, "credit_id": "52fe4482c3a36847f809a599", "cast_id": 4, "profile_path": "/rXBe8lx88ESRIoKLqUMIYWpfoCq.jpg", "order": 3}, {"name": "Kelly Lynch", "character": "Kerry Coughlin", "id": 6473, "credit_id": "52fe4482c3a36847f809a5d3", "cast_id": 14, "profile_path": "/20OsGbyUux00wkeL7BFfYnaXwlo.jpg", "order": 4}, {"name": "Gina Gershon", "character": "Coral", "id": 11150, "credit_id": "5428f4290e0a265562004528", "cast_id": 15, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 5}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a59f", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.6, "runtime": 104}, "796": {"poster_path": "/6RQu0J2u7viDa34Nn98sKaHv5jD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75902208, "overview": "Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.", "video": false, "id": 796, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Cruel Intentions", "tagline": "In the game of seduction, There is only one rule: Never fall in love.", "vote_count": 242, "homepage": "", "belongs_to_collection": {"backdrop_path": "/10KZhETCbOGoffxglHDRyStgdc8.jpg", "poster_path": "/9zX9Ak6JjYpIMWH43X6sNQQG7we.jpg", "id": 52789, "name": "Cruel Intentions Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0139134", "adult": false, "backdrop_path": "/74OOkCoNbMb5bDg1AVXQxmGUTex.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Cruel Productions", "id": 505}, {"name": "Newmarket Capital Group", "id": 506}], "release_date": "1999-03-05", "popularity": 0.956455585029539, "original_title": "Cruel Intentions", "budget": 10500000, "cast": [{"name": "Sarah Michelle Gellar", "character": "Kathryn Merteuil", "id": 11863, "credit_id": "52fe4277c3a36847f8021003", "cast_id": 1, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 0}, {"name": "Ryan Phillippe", "character": "Sebastian Valmont", "id": 11864, "credit_id": "52fe4277c3a36847f8021007", "cast_id": 2, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 1}, {"name": "Reese Witherspoon", "character": "Annette Hargrove", "id": 368, "credit_id": "52fe4277c3a36847f802100b", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 2}, {"name": "Selma Blair", "character": "Cecile Caldwell", "id": 11826, "credit_id": "52fe4277c3a36847f802100f", "cast_id": 4, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 3}, {"name": "Louise Fletcher", "character": "Helen Rosemond", "id": 7071, "credit_id": "52fe4277c3a36847f8021013", "cast_id": 5, "profile_path": "/A4Cn7LsuLlOXvOMKv5ez4ThyeZL.jpg", "order": 4}, {"name": "Joshua Jackson", "character": "Blaine Tuttle", "id": 11866, "credit_id": "52fe4277c3a36847f8021017", "cast_id": 6, "profile_path": "/e1btrP27otWpSRvgVV9PsOKCpJG.jpg", "order": 5}, {"name": "Eric Mabius", "character": "Greg McConnell", "id": 11867, "credit_id": "52fe4277c3a36847f802101b", "cast_id": 7, "profile_path": "/mfYqgYHkvJRgPus0kN2V1GhsFOU.jpg", "order": 6}, {"name": "Sean Patrick Thomas", "character": "Ronald Clifford", "id": 11868, "credit_id": "52fe4277c3a36847f802101f", "cast_id": 8, "profile_path": "/8cXF4Ywgs70ZL1j2q5A2yOvd2AY.jpg", "order": 7}, {"name": "Christine Baranski", "character": "Bunny Caldwell", "id": 11870, "credit_id": "52fe4277c3a36847f8021023", "cast_id": 10, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 8}, {"name": "Alaina Reed Hall", "character": "Nurse", "id": 11871, "credit_id": "52fe4277c3a36847f8021027", "cast_id": 11, "profile_path": "/gzz8PaJjPbP2j6x8ViZcyHq3C85.jpg", "order": 9}, {"name": "Deborah Offner", "character": "Mrs. Michalak", "id": 11872, "credit_id": "52fe4277c3a36847f802102b", "cast_id": 12, "profile_path": "/ywOLdDO1sXMc5ygatNxeHgg4SQo.jpg", "order": 10}, {"name": "Tara Reid", "character": "Marci Greenbaum", "id": 1234, "credit_id": "52fe4277c3a36847f802102f", "cast_id": 13, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 11}, {"name": "Swoosie Kurtz", "character": "Dr. Greenbaum", "id": 12967, "credit_id": "52fe4277c3a36847f8021069", "cast_id": 24, "profile_path": "/vMZajDmqbbfzSw6jxgAYIf3CrJm.jpg", "order": 12}, {"name": "Herta Ware", "character": "Mrs. Sugarman", "id": 136482, "credit_id": "54899b9c92514161d0001717", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Hiep Thi Le", "character": "Mai-Lee", "id": 167166, "credit_id": "54899bb192514161dc0017a9", "cast_id": 27, "profile_path": "/s7eDAproo0vjNpYyw1oK2yirwNS.jpg", "order": 14}, {"name": "Charlie O'Connell", "character": "Court Reynolds", "id": 129122, "credit_id": "54899bbc92514161d500177e", "cast_id": 28, "profile_path": "/w61jQEBWIoTQst0ZZ5Pv4gG27JN.jpg", "order": 15}, {"name": "Fred Norris", "character": "Meter Maid", "id": 1049208, "credit_id": "54899bf4c3a3686f58001782", "cast_id": 29, "profile_path": "/zHDvTYwMA7lMxdmh0voFKWEfl79.jpg", "order": 16}, {"name": "Ginger Williams", "character": "Clorissa", "id": 1395911, "credit_id": "54899bfe92514161d5001786", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Drew Snyder", "character": "Headmaster Hargrove", "id": 52188, "credit_id": "54899c0b92514161cc00171f", "cast_id": 31, "profile_path": "/xW8V4eZaFRm0J2FCNNrcojN8yOg.jpg", "order": 18}, {"name": "Phil Hawn", "character": "", "id": 94561, "credit_id": "54899c1792514161d3001773", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "Roger Kumble", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8021035", "profile_path": "/uGKg8pacbWifsUK5IBvmPziHDKK.jpg", "id": 11873}], "vote_average": 6.4, "runtime": 97}, "12177": {"poster_path": "/q3g4UFCMPqbKXfc3qMOsYQBOGbl.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41819064, "overview": "Born in America and raised in an Indian ashram, Pitka (Mike Myers) returns to his native land to seek his fortune as a spiritualist and self-help expert. His skills are put to the test when he must get a brokenhearted hockey player's marriage back on track in time for the man to help his team win the Stanley Cup.", "video": false, "id": 12177, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Love Guru", "tagline": "His Karma is Huge", "vote_count": 68, "homepage": "http://www.lovegurumovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0811138", "adult": false, "backdrop_path": "/6ohE4r6nlg4xZum13Yfoj2wdz5X.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Internationale Filmproduktion", "id": 15742}], "release_date": "2008-06-20", "popularity": 0.851524102360299, "original_title": "The Love Guru", "budget": 62000000, "cast": [{"name": "Mike Myers", "character": "Pitka", "id": 12073, "credit_id": "52fe44c49251416c7504049d", "cast_id": 12, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Jane Bullard", "id": 56731, "credit_id": "52fe44c49251416c750404a1", "cast_id": 13, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Jacques \"Le Coq\" Grande", "id": 12111, "credit_id": "52fe44c49251416c750404a5", "cast_id": 14, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Romany Malco", "character": "Darren Roanoke", "id": 71530, "credit_id": "52fe44c49251416c750404a9", "cast_id": 15, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 3}, {"name": "Meagan Good", "character": "Prudence", "id": 22122, "credit_id": "52fe44c49251416c750404ad", "cast_id": 16, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 4}, {"name": "Omid Djalili", "character": "Guru Satchabigknoba", "id": 41379, "credit_id": "52fe44c49251416c750404b1", "cast_id": 17, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 5}, {"name": "Ben Kingsley", "character": "Guru Tugginmypuddha", "id": 2282, "credit_id": "52fe44c49251416c750404b5", "cast_id": 18, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 6}, {"name": "Deepak Chopra", "character": "Deepak Chopra", "id": 71531, "credit_id": "52fe44c49251416c750404b9", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Verne Troyer", "character": "Coach Punch Cherkov", "id": 10987, "credit_id": "52fe44c49251416c750404bd", "cast_id": 20, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 8}, {"name": "Stephen Colbert", "character": "Jay Kell", "id": 58769, "credit_id": "52fe44c49251416c750404c7", "cast_id": 23, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 9}, {"name": "Val Kilmer", "character": "himself", "id": 5576, "credit_id": "52fe44c49251416c750404cb", "cast_id": 24, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 10}, {"name": "Celine Dion", "character": "herself", "id": 16303, "credit_id": "52fe44c49251416c750404cf", "cast_id": 25, "profile_path": "/truzhpeyIihZWO7B9ZOON1CefxK.jpg", "order": 11}, {"name": "Trevor Heins", "character": "Young Pitka", "id": 90748, "credit_id": "53364f5f9251417da10006b8", "cast_id": 27, "profile_path": "/2PGkFw0IzzRLsy3rImmmlEIqjBZ.jpg", "order": 12}, {"name": "Jessica Simpson", "character": "Jessica Simpson", "id": 52052, "credit_id": "5419bca70e0a266ef60002c3", "cast_id": 28, "profile_path": "/1PDbqQoEriziHHaAcRwtOkI2SHq.jpg", "order": 13}], "directors": [{"name": "Marco Schnabel", "department": "Directing", "job": "Director", "credit_id": "52fe44c49251416c75040463", "profile_path": "/kYzNedWDUq1QXvHm7CIJUEDLYdd.jpg", "id": 71527}], "vote_average": 4.6, "runtime": 87}, "9447": {"poster_path": "/yjZ3d2mKC94Lz0XGJYGRbAOrA4Q.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 69131860, "overview": "Babe, fresh from his victory in the sheepherding contest, returns to Farmer Hoggett's farm, but after Farmer Hoggett is injured and unable to work, Babe has to go to the big city to save the farm.", "video": false, "id": 9447, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Babe: Pig in the City", "tagline": "This little pig went to the city...", "vote_count": 75, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cOYRzPx86msMyCJ1E0D4jiMvASp.jpg", "poster_path": "/k42J5jYjvw1DEGBQP63VYYvteY7.jpg", "id": 9435, "name": "Babe Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120595", "adult": false, "backdrop_path": "/lCz18Ft06dHfxHvaQEerVOBCL83.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1998-11-25", "popularity": 0.772926590296791, "original_title": "Babe: Pig in the City", "budget": 90000000, "cast": [{"name": "James Cromwell", "character": "Farmer Arthur Hoggett", "id": 2505, "credit_id": "52fe44f8c3a36847f80b5003", "cast_id": 11, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 0}, {"name": "Mary Stein", "character": "The Landlady", "id": 45386, "credit_id": "52fe44f8c3a36847f80b5007", "cast_id": 12, "profile_path": "/5zVpqXqr3S8y4cMKOQNc1SwBdc7.jpg", "order": 1}, {"name": "Mickey Rooney", "character": "Fugly Floom, the Speechless Man in Hotel", "id": 1937, "credit_id": "52fe44f8c3a36847f80b500b", "cast_id": 13, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 2}, {"name": "Magda Szubanski", "character": "Mrs. Esme Cordelia Hoggett", "id": 45586, "credit_id": "52fe44f8c3a36847f80b500f", "cast_id": 14, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 3}, {"name": "E.G. Daily", "character": "Babe (voice)", "id": 15274, "credit_id": "52fe44f8c3a36847f80b5013", "cast_id": 15, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 4}, {"name": "Danny Mann", "character": "Ferdinand / Tug (voice)", "id": 52699, "credit_id": "52fe44f8c3a36847f80b5017", "cast_id": 16, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 5}, {"name": "Glenne Headly", "character": "Zootie (voice)", "id": 21104, "credit_id": "52fe44f8c3a36847f80b501b", "cast_id": 17, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 6}, {"name": "Steven Wright", "character": "Bob (voice)", "id": 3214, "credit_id": "52fe44f8c3a36847f80b501f", "cast_id": 18, "profile_path": "/m9827iUNPGTbAsfjHD9tpMCXYbR.jpg", "order": 7}, {"name": "James Cosmo", "character": "Thelonius (voice)", "id": 2467, "credit_id": "52fe44f8c3a36847f80b5023", "cast_id": 19, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 8}, {"name": "Nathan Kress", "character": "Easy / Tough Pup (voice)", "id": 212913, "credit_id": "52fe44f8c3a36847f80b5027", "cast_id": 20, "profile_path": "/4B9z58nrAaNXJi4uVkvWsztK7LF.jpg", "order": 9}, {"name": "Myles Jeffrey", "character": "Easy (voice)", "id": 11157, "credit_id": "52fe44f8c3a36847f80b502b", "cast_id": 21, "profile_path": "/snKwcKNBaIWKNv0dHzlB8h9q935.jpg", "order": 10}, {"name": "Stanley Ralph Ross", "character": "The Bull Terrier / The Doberman (voice)", "id": 46330, "credit_id": "52fe44f8c3a36847f80b502f", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Russi Taylor", "character": "The Pink Poodle / Choir Cat (voice)", "id": 6035, "credit_id": "52fe44f8c3a36847f80b5033", "cast_id": 23, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 12}, {"name": "Adam Goldberg", "character": "Flealick (voice)", "id": 6163, "credit_id": "52fe44f8c3a36847f80b5037", "cast_id": 24, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 13}, {"name": "Eddie Barth", "character": "Nigel / Alan (voice)", "id": 32384, "credit_id": "52fe44f8c3a36847f80b503b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Bill Capizzi", "character": "Snoop, The Sniffer Dog (voice)", "id": 108943, "credit_id": "52fe44f8c3a36847f80b503f", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Miriam Margolyes", "character": "Fly (voice)", "id": 6199, "credit_id": "52fe44f8c3a36847f80b5043", "cast_id": 27, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 16}, {"name": "Hugo Weaving", "character": "Rex (voice)", "id": 1331, "credit_id": "52fe44f8c3a36847f80b5047", "cast_id": 28, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 17}, {"name": "Roscoe Lee Browne", "character": "The Narrator (voice)", "id": 24368, "credit_id": "52fe44f8c3a36847f80b504b", "cast_id": 29, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 18}, {"name": "Christian Manon", "character": "Lab Technician", "id": 1451740, "credit_id": "5525aaebc3a3687e1100252b", "cast_id": 30, "profile_path": null, "order": 19}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe44f8c3a36847f80b4fc9", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 4.7, "runtime": 92}, "171372": {"poster_path": "/fLKpfI7Aczu83i201sW9Tn8gO3r.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "A comedy about a young wannabe musician (Domhnall Gleeson) who discovers he has bitten off more than he can chew when he joins an eccentric pop band led by the mysterious and enigmatic Frank (Michael Fassbender).", "video": false, "id": 171372, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Frank", "tagline": "When you think you've gone far enough, go farther.", "vote_count": 172, "homepage": "http://www.magpictures.com/frank/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1605717", "adult": false, "backdrop_path": "/wNVht6M9rGWevuURjmUKyP55UqV.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Runaway Fridge Productions", "id": 26820}, {"name": "Element Pictures", "id": 3353}], "release_date": "2014-05-09", "popularity": 0.937491162858966, "original_title": "Frank", "budget": 0, "cast": [{"name": "Michael Fassbender", "character": "Frank", "id": 17288, "credit_id": "52fe4d0ac3a36847f824b69b", "cast_id": 4, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Clara", "id": 1579, "credit_id": "52fe4d0ac3a36847f824b6a5", "cast_id": 8, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Domhnall Gleeson", "character": "Jon", "id": 93210, "credit_id": "52fe4d0ac3a36847f824b6a9", "cast_id": 9, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 2}, {"name": "Scoot McNairy", "character": "Don", "id": 59233, "credit_id": "52fe4d0ac3a36847f824b6ad", "cast_id": 10, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 3}, {"name": "Hayley Derryberry", "character": "Simone", "id": 1268081, "credit_id": "54102ff70e0a261264001646", "cast_id": 25, "profile_path": null, "order": 4}, {"name": "Fran\u00e7ois Civil", "character": "Baraque", "id": 78124, "credit_id": "54d504cbc3a368616e0137ee", "cast_id": 26, "profile_path": "/ngKymMbs7r5dUyegMm4X4dvL4aS.jpg", "order": 5}, {"name": "Tess Harper", "character": "Frank's Mom", "id": 41249, "credit_id": "54d505c9c3a368746900ada8", "cast_id": 27, "profile_path": "/gJT9fBX04LjmbOzOzYcNbA2ZLF1.jpg", "order": 6}, {"name": "Bruce McIntosh", "character": "Frank's Dad", "id": 87232, "credit_id": "54d505dec3a36871c100b6a3", "cast_id": 28, "profile_path": null, "order": 7}], "directors": [{"name": "Lenny Abrahamson", "department": "Directing", "job": "Director", "credit_id": "52fe4d0ac3a36847f824b6b3", "profile_path": null, "id": 83281}], "vote_average": 7.0, "runtime": 96}, "32985": {"poster_path": "/n5SHBE4ulsDDVa9gYttUYwp1VZU.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 7810000, "overview": "A nomadic 16th century warrior, condemned to hell for his brutal past, seeks redemption by renouncing violence, but finds some things are worth burning for as he fights to free a young Puritan woman from the grip of evil.", "video": false, "id": 32985, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Solomon Kane", "tagline": "Fight evil... With evil.", "vote_count": 119, "homepage": "http://www.solomonkane.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970452", "adult": false, "backdrop_path": "/rEAuvuZLher0Jt9xGT3b90Yx5Zq.jpg", "production_companies": [{"name": "Davis-Films", "id": 342}, {"name": "Czech Anglo Productions", "id": 20473}, {"name": "Wandering Star Pictures", "id": 20474}], "release_date": "2009-09-24", "popularity": 0.674237191416818, "original_title": "Solomon Kane", "budget": 45000000, "cast": [{"name": "James Purefoy", "character": "Solomon Kane", "id": 17648, "credit_id": "52fe44f39251416c9102263d", "cast_id": 1, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 0}, {"name": "Pete Postlethwaite", "character": "William Crowthorn", "id": 4935, "credit_id": "52fe44f39251416c91022641", "cast_id": 3, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 1}, {"name": "Alice Krige", "character": "Katherine Crowthorn", "id": 2506, "credit_id": "52fe44f39251416c91022645", "cast_id": 4, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 2}, {"name": "Mackenzie Crook", "character": "Father Michael", "id": 1711, "credit_id": "52fe44f39251416c91022649", "cast_id": 5, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 3}, {"name": "Max von Sydow", "character": "Josiah Kane", "id": 2201, "credit_id": "52fe44f39251416c9102264d", "cast_id": 7, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 4}, {"name": "Jason Flemyng", "character": "Malachi", "id": 973, "credit_id": "52fe44f39251416c91022657", "cast_id": 11, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Rachel Hurd-Wood", "character": "Meredith Crowthorn", "id": 129050, "credit_id": "52fe44f39251416c9102265b", "cast_id": 12, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 6}, {"name": "Patrick Hurd-Wood", "character": "Samuel Crowthorn", "id": 1077399, "credit_id": "52fe44f39251416c91022683", "cast_id": 20, "profile_path": "/njuBKQ6ZWkTuio0rpnbqhpS1FRE.jpg", "order": 7}, {"name": "Anthony Wilks", "character": "Edward Crowthorn", "id": 1077400, "credit_id": "52fe44f39251416c91022687", "cast_id": 21, "profile_path": "/rXLOq0E55Fug9Zho1vFofuJ6IpV.jpg", "order": 8}, {"name": "Isabel Bassett", "character": "The Witch", "id": 1077401, "credit_id": "52fe44f39251416c9102268b", "cast_id": 22, "profile_path": "/bO5YrOSXzyG3dUuKdMcHgR0EDK0.jpg", "order": 9}, {"name": "Mark O'Neal", "character": "Kane's Soldier #1", "id": 1297390, "credit_id": "53105a88925141101f000bb3", "cast_id": 26, "profile_path": "/tr9k5xH0uzc5FIKj3TiKhxPzX6g.jpg", "order": 10}, {"name": "Robert Orr", "character": "Kane's Soldier #2", "id": 21014, "credit_id": "53105a9e925141101f000bba", "cast_id": 27, "profile_path": "/1fnh6iPohS10SXQg2a8Xk9kkXaM.jpg", "order": 11}, {"name": "Richard Ryan", "character": "Kane's Soldier #3", "id": 128977, "credit_id": "53105aad925141104d000caf", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Frantisek Deak", "character": "Cowering Guard", "id": 1297391, "credit_id": "53105ac59251411008000cc0", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Christian Dunckley Clark", "character": "Lieutenant Malthus", "id": 1297392, "credit_id": "53105ae19251410ff1000c04", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Ian Whyte", "character": "Devil's Reaper", "id": 946696, "credit_id": "53105afe9251410ffc000bdb", "cast_id": 31, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 15}, {"name": "Thomas McEnchroe", "character": "Young Monk", "id": 1297393, "credit_id": "53105b1a925141101f000bc5", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Andrew Whitlaw", "character": "Older Monk", "id": 1297394, "credit_id": "53105b36925141102a000bc2", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Robert Russell", "character": "Abbott", "id": 1011851, "credit_id": "53105b499251411035000c46", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "James Babson", "character": "Skinhead", "id": 25659, "credit_id": "53105b659251410fe6000c23", "cast_id": 35, "profile_path": "/PsYYzL0CcFhCGyq2rpQq8uHF8n.jpg", "order": 19}, {"name": "Marek Va\u0161ut", "character": "Tattoo", "id": 10849, "credit_id": "53105b7f9251411035000c4e", "cast_id": 36, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 20}, {"name": "Geoff Bell", "character": "Beard", "id": 6969, "credit_id": "53105b92925141104d000cc3", "cast_id": 37, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 21}, {"name": "Lucas Stone", "character": "Young Solomon", "id": 1297395, "credit_id": "53105bb09251411035000c57", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Rory McCann", "character": "McNess", "id": 3075, "credit_id": "546eb761c3a3682f9e000c0f", "cast_id": 45, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 23}], "directors": [{"name": "Michael J. Bassett", "department": "Directing", "job": "Director", "credit_id": "52fe44f39251416c91022691", "profile_path": "/gBtbUmlRtLlA0yQV9Gt9G8bJW70.jpg", "id": 69593}], "vote_average": 5.7, "runtime": 104}, "7549": {"poster_path": "/nPku02hVAFPsAd1pJr81OkdBidw.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6971266, "overview": "Huo Yuan Jia became the most famous martial arts fighter in all of China at the turn of the 20th Century. Huo faced personal tragedy but ultimately fought his way out of darkness, defining the true spirit of martial arts and also inspiring his nation. The son of a great fighter who didn't wish for his child to follow in his footsteps, Huo resolves to teach himself how to fight - and win.", "video": false, "id": 7549, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Fearless", "tagline": "Mastering others is strength. Mastering yourself makes you fearless.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0446059", "adult": false, "backdrop_path": "/eYzHRuzwaI13ln5eO3XRnCN7Vo5.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Beijing Film Studio", "id": 708}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "Hero China International", "id": 2271}, {"name": "Wide River Investments", "id": 2272}], "release_date": "2006-01-26", "popularity": 1.11911051456667, "original_title": "Huo Yuanjia", "budget": 0, "cast": [{"name": "Jet Li", "character": "Huo Yuanjia", "id": 1336, "credit_id": "52fe4483c3a36847f809a701", "cast_id": 1, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Betty Sun", "character": "Moon", "id": 52898, "credit_id": "52fe4483c3a36847f809a705", "cast_id": 3, "profile_path": "/8oa3WndsHdGnoEDRMVhDwpYRSxv.jpg", "order": 1}, {"name": "Dong Yong", "character": "Nong Jinsun", "id": 52899, "credit_id": "52fe4483c3a36847f809a709", "cast_id": 4, "profile_path": "/9Txr10nViJ38KwV8q9GGoe6CNt4.jpg", "order": 2}, {"name": "Hee Ching Paw", "character": "Yuanjia's Mother", "id": 52900, "credit_id": "52fe4483c3a36847f809a70d", "cast_id": 5, "profile_path": "/qXiRuEQvi6pyawG0TQ67VIVvjww.jpg", "order": 3}, {"name": "Yun Qu", "character": "Grandma", "id": 52901, "credit_id": "52fe4483c3a36847f809a711", "cast_id": 6, "profile_path": "/jPeFLl0pJH9E86Ke4PdE4aDe1jB.jpg", "order": 4}, {"name": "Nathan Jones", "character": "Hercules O'Brien", "id": 24898, "credit_id": "52fe4483c3a36847f809a715", "cast_id": 7, "profile_path": "/8JGCYgqGbFYXsp0wLbwSCEW0BUB.jpg", "order": 5}, {"name": "Brandon Rhea", "character": "Belgian Fighter", "id": 52902, "credit_id": "52fe4483c3a36847f809a719", "cast_id": 8, "profile_path": "/yev7IxmjSviqaOIkvw53C8pAV8K.jpg", "order": 6}, {"name": "Anthony De Longis", "character": "Spanish Swordman", "id": 52903, "credit_id": "52fe4483c3a36847f809a71d", "cast_id": 9, "profile_path": "/iYPnSvLkDxo9jbNFBch0IdbZkav.jpg", "order": 7}, {"name": "Jean Claude Leuyer", "character": "English Boxer", "id": 52904, "credit_id": "52fe4483c3a36847f809a721", "cast_id": 10, "profile_path": "/qwWruzfs5vC4V5FCyNIEGJvupKm.jpg", "order": 8}, {"name": "Mike Leeder", "character": "Fight Referee", "id": 52905, "credit_id": "52fe4483c3a36847f809a725", "cast_id": 11, "profile_path": "/ybQ3a0WH4iEuDoK9KxHng5mh45u.jpg", "order": 9}, {"name": "Jon T. Benn", "character": "American Businessman", "id": 52906, "credit_id": "52fe4483c3a36847f809a729", "cast_id": 12, "profile_path": "/uiJtuNo89wDbQlJgDuRRxXyd1uR.jpg", "order": 10}, {"name": "John Paisley", "character": "English Businessman", "id": 52907, "credit_id": "52fe4483c3a36847f809a72d", "cast_id": 13, "profile_path": "/4seFegLOZzFHNEI2CppgcSqp8Ku.jpg", "order": 11}, {"name": "Collin Chou", "character": "Yuanjia's Father", "id": 52908, "credit_id": "52fe4483c3a36847f809a731", "cast_id": 14, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 12}, {"name": "Masato Harada", "character": "Mita", "id": 52909, "credit_id": "52fe4483c3a36847f809a735", "cast_id": 15, "profile_path": "/1hoOz8hAKe5U01SHn9YLzW7dVtG.jpg", "order": 13}, {"name": "Nakamura Shid\u014d II", "character": "Anno Tanaka", "id": 72202, "credit_id": "52fe4483c3a36847f809a76f", "cast_id": 25, "profile_path": "/jsqasWEn1ls8XQKMxOQHr9IgPTD.jpg", "order": 14}], "directors": [{"name": "Ronny Yu", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a73b", "profile_path": "/ttF6ZrZFNznZr79wPSZWYKz2g3m.jpg", "id": 17268}], "vote_average": 6.9, "runtime": 103}, "7551": {"poster_path": "/abqvTL8xYQLgAtQGmyN7UxvCRGN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180557550, "overview": "Called in to recover evidence in the aftermath of a horrific explosion on a New Orleans ferry, Federal agent Doug Carlin gets pulled away from the scene and taken to a top-secret government lab that uses a time-shifting surveillance device to help prevent crime. But can it help Carlin change the past? Hold on to your seat for an explosive and intriguing thrill ride you'll want to experience again and again.", "video": false, "id": 7551, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "D\u00e9j\u00e0 Vu", "tagline": "If you think it's just a feeling, go back... and look again.", "vote_count": 478, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453467", "adult": false, "backdrop_path": "/94Mb6dnCtmkqPmjFGucghp7UXda.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2006-11-21", "popularity": 1.12026805994186, "original_title": "D\u00e9j\u00e0 Vu", "budget": 75000000, "cast": [{"name": "Denzel Washington", "character": "Agent Doug Carlin - ATF", "id": 5292, "credit_id": "52fe4483c3a36847f809a82d", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Paula Patton", "character": "Claire Kuchever", "id": 52851, "credit_id": "52fe4483c3a36847f809a831", "cast_id": 2, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Agent Paul Pryzwarra - FBI", "id": 5576, "credit_id": "52fe4483c3a36847f809a835", "cast_id": 3, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Jim Caviezel", "character": "Carroll Oerstadt", "id": 8767, "credit_id": "52fe4483c3a36847f809a839", "cast_id": 4, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 3}, {"name": "Adam Goldberg", "character": "Dr. Alexander Denny", "id": 6163, "credit_id": "52fe4483c3a36847f809a83d", "cast_id": 5, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 4}, {"name": "Elden Henson", "character": "Gunnars", "id": 20220, "credit_id": "52fe4483c3a36847f809a841", "cast_id": 6, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 5}, {"name": "Erika Alexander", "character": "Shanti", "id": 33655, "credit_id": "52fe4483c3a36847f809a845", "cast_id": 7, "profile_path": "/4HuPRLihCbjsDsLuHOax5ETfA2V.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Agent Jack McCready - FBI", "id": 21089, "credit_id": "52fe4483c3a36847f809a849", "cast_id": 8, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Rich Hutchman", "character": "Agent Stalhuth", "id": 52924, "credit_id": "52fe4483c3a36847f809a84d", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Matt Craven", "character": "Agent Larry Minuti - ATF", "id": 13525, "credit_id": "52fe4483c3a36847f809a851", "cast_id": 10, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 9}, {"name": "Donna W. Scott", "character": "Beth", "id": 52925, "credit_id": "52fe4483c3a36847f809a855", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Elle Fanning", "character": "Abbey", "id": 18050, "credit_id": "52fe4483c3a36847f809a859", "cast_id": 12, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 11}, {"name": "Brian Howe", "character": "Medical Examiner", "id": 1990, "credit_id": "52fe4483c3a36847f809a85d", "cast_id": 13, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 12}, {"name": "Enrique Castillo", "character": "Claire's Father", "id": 16427, "credit_id": "52fe4483c3a36847f809a861", "cast_id": 14, "profile_path": "/ks5zq9TYDA1PpLx5trS7lBTwnsw.jpg", "order": 13}, {"name": "Mark Phinney", "character": "Agent Kevin Donnelly - ATF", "id": 52926, "credit_id": "52fe4483c3a36847f809a865", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Sylvia Jefferies", "character": "Reporter", "id": 1104568, "credit_id": "52fe4483c3a36847f809a881", "cast_id": 20, "profile_path": "/jtbJjvDrGAuBW3OGHSCGekuVo8J.jpg", "order": 15}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a86b", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.4, "runtime": 126}, "7552": {"poster_path": "/nevy1DCIpEOqeuqrBjeSHCrNLQ9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201580853, "overview": "After losing their high-paying corporate jobs, Jane and Dick Harper (Jim Carrey and T\u00e9a Leoni) turn to robbing banks to maintain their upwardly mobile standard of living in this action-comedy based on the 1977 film of the same name. The couple's hold-up act begins as a desperate measure. But before long, they're actually enjoying it -- and now it's getting to be a habit.", "video": false, "id": 7552, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Fun with Dick and Jane", "tagline": "Giving big businesses a run for their money!", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369441", "adult": false, "backdrop_path": "/gEXvIMvCT1TuQY7Lu9vN47MpSm4.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Sony Pictures", "id": 34}], "release_date": "2005-12-21", "popularity": 0.422509458177664, "original_title": "Fun with Dick and Jane", "budget": 100000000, "cast": [{"name": "Jim Carrey", "character": "Dick Harper", "id": 206, "credit_id": "52fe4483c3a36847f809a8a9", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Jane Harper", "id": 4939, "credit_id": "52fe4483c3a36847f809a8ad", "cast_id": 2, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Jack McCallister", "id": 7447, "credit_id": "52fe4483c3a36847f809a8b1", "cast_id": 3, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Richard Jenkins", "character": "Frank Bascombe", "id": 28633, "credit_id": "52fe4483c3a36847f809a8b5", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 3}, {"name": "Angie Harmon", "character": "Veronica Cleeman", "id": 52929, "credit_id": "52fe4483c3a36847f809a8b9", "cast_id": 5, "profile_path": "/oFsZQuVxgMm9yUl0dZe4ROznIex.jpg", "order": 4}, {"name": "John Michael Higgins", "character": "Garth", "id": 8265, "credit_id": "52fe4483c3a36847f809a8bd", "cast_id": 6, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 5}, {"name": "Richard Burgi", "character": "Joe Cleeman", "id": 25849, "credit_id": "52fe4483c3a36847f809a8c1", "cast_id": 7, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 6}, {"name": "Carlos Jacott", "character": "Oz Peterson", "id": 52930, "credit_id": "52fe4483c3a36847f809a8c5", "cast_id": 8, "profile_path": "/7bAXajnMa7BzLU8yDPgzJV5260M.jpg", "order": 7}, {"name": "Aaron Michael Drozin", "character": "Billy Harper", "id": 52931, "credit_id": "52fe4483c3a36847f809a8c9", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Gloria Garayua", "character": "Blanca", "id": 52932, "credit_id": "52fe4483c3a36847f809a8cd", "cast_id": 10, "profile_path": "/myc6J8Hnb9cdFRkzaAAwMdXuOn9.jpg", "order": 9}, {"name": "Michelle Arthur", "character": "Dick's Secretary", "id": 29054, "credit_id": "52fe4483c3a36847f809a8d1", "cast_id": 11, "profile_path": "/zKQFuK3W4LMzfIz8W86RYf6jGp7.jpg", "order": 10}, {"name": "Stacey Travis", "character": "Jack's Receptionist", "id": 31714, "credit_id": "52fe4483c3a36847f809a8d5", "cast_id": 12, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 11}, {"name": "Timm Sharp", "character": "Jack's Assistant", "id": 52933, "credit_id": "52fe4483c3a36847f809a8d9", "cast_id": 13, "profile_path": "/e4gKCKoC2Yx5SXm4vAHFaAsjo26.jpg", "order": 12}, {"name": "David Herman", "character": "Angry Caller (voice)", "id": 52794, "credit_id": "52fe4483c3a36847f809a8dd", "cast_id": 14, "profile_path": "/6S0UlaChdcilaeYk5svTxOCtShC.jpg", "order": 13}], "directors": [{"name": "Dean Parisot", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a8e3", "profile_path": "/3h20QFQ6duhpJ1FMSeJiFju0WGp.jpg", "id": 15002}], "vote_average": 6.0, "runtime": 90}, "7553": {"poster_path": "/3cyqShU9PGMtTpQgnV7Um3nEOmk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18637690, "overview": "Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.", "video": false, "id": 7553, "genres": [{"id": 35, "name": "Comedy"}], "title": "Waiting...", "tagline": "What happens in the kitchen ends up on the plate.", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/2gOKaOLhI3vdaE6wO2VpsBa408K.jpg", "id": 93731, "name": "Waiting Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0348333", "adult": false, "backdrop_path": "/eBHZQOzXAJCAjtJtX2yiiN6G0Mq.jpg", "production_companies": [{"name": "L.I.F.T. Production", "id": 1305}, {"name": "Eden Rock Media", "id": 2273}], "release_date": "2005-10-07", "popularity": 0.388545759770794, "original_title": "Waiting...", "budget": 3000000, "cast": [{"name": "Ryan Reynolds", "character": "Monty", "id": 10859, "credit_id": "52fe4483c3a36847f809a917", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Anna Faris", "character": "Serena", "id": 1772, "credit_id": "52fe4483c3a36847f809a91b", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Justin Long", "character": "Dean", "id": 15033, "credit_id": "52fe4483c3a36847f809a91f", "cast_id": 3, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 2}, {"name": "David Koechner", "character": "Dan", "id": 28638, "credit_id": "52fe4483c3a36847f809a923", "cast_id": 4, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 3}, {"name": "Luis Guzm\u00e1n", "character": "Raddimus", "id": 40481, "credit_id": "52fe4483c3a36847f809a927", "cast_id": 5, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 4}, {"name": "Chi McBride", "character": "Bishop", "id": 8687, "credit_id": "52fe4483c3a36847f809a92b", "cast_id": 6, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 5}, {"name": "John Francis Daley", "character": "Mitch", "id": 52935, "credit_id": "52fe4483c3a36847f809a92f", "cast_id": 7, "profile_path": "/xg5gaLLmB0d79ge91fUCnjBCjwk.jpg", "order": 6}, {"name": "Kaitlin Doubleday", "character": "Amy", "id": 52936, "credit_id": "52fe4483c3a36847f809a933", "cast_id": 8, "profile_path": "/1vYfIYDKhRPLiOqBvQZ8hO21tMH.jpg", "order": 7}, {"name": "Rob Benedict", "character": "Calvin", "id": 52937, "credit_id": "52fe4483c3a36847f809a937", "cast_id": 9, "profile_path": "/iVsPXfFqK6pQPtIFaTYsyO5f9ui.jpg", "order": 8}, {"name": "Alanna Ubach", "character": "Naomi", "id": 10402, "credit_id": "52fe4483c3a36847f809a93b", "cast_id": 10, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 9}, {"name": "Vanessa Lengies", "character": "Natasha", "id": 52938, "credit_id": "52fe4483c3a36847f809a93f", "cast_id": 11, "profile_path": "/gmo2myh6zjMheJyGfDpvK4YLB0P.jpg", "order": 10}, {"name": "Max Kasch", "character": "T-Dog", "id": 52939, "credit_id": "52fe4483c3a36847f809a943", "cast_id": 12, "profile_path": "/4NzNJEJ6NWU40GKO6BS1Ne6ECNL.jpg", "order": 11}, {"name": "Andy Milonakis", "character": "Nick", "id": 52940, "credit_id": "52fe4483c3a36847f809a947", "cast_id": 13, "profile_path": "/40PqvS6IbdJXNvJMCp0eUe7zH8t.jpg", "order": 12}, {"name": "Dane Cook", "character": "Floyd", "id": 31837, "credit_id": "52fe4483c3a36847f809a94b", "cast_id": 14, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 13}, {"name": "Jordan Ladd", "character": "Danielle", "id": 20492, "credit_id": "52fe4483c3a36847f809a94f", "cast_id": 15, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 14}], "directors": [{"name": "Rob McKittrick", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a955", "profile_path": null, "id": 52941}], "vote_average": 5.9, "runtime": 94}, "7555": {"poster_path": "/nwCm80TFvA7pQAQdcGHs69ZeGOK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154611774, "overview": "When governments fail to act on behalf of captive missionaries, ex-Green Beret John James Rambo sets aside his peaceful existence along the Salween River in a war-torn region of Thailand to take action. Although he's still haunted by violent memories of his time as a U.S. soldier during the Vietnam War, Rambo can hardly turn his back on the aid workers who so desperately need his help.", "video": false, "id": 7555, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Rambo", "tagline": "Heroes never die... They just reload.", "vote_count": 293, "homepage": "http://www.rambofilm.com/", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "my", "name": ""}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt0462499", "adult": false, "backdrop_path": "/73QE77hOalLxUiheYJrk9XwHL4h.jpg", "production_companies": [{"name": "Rogue Marble", "id": 696}, {"name": "Nu Image Films", "id": 925}, {"name": "LionsGate", "id": 7571}, {"name": "Millennium Films", "id": 10254}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG IV", "id": 20363}], "release_date": "2008-01-24", "popularity": 1.41148132901174, "original_title": "Rambo", "budget": 50000000, "cast": [{"name": "Sylvester Stallone", "character": "John Rambo", "id": 16483, "credit_id": "52fe4484c3a36847f809a9e9", "cast_id": 12, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Julie Benz", "character": "Sarah", "id": 35551, "credit_id": "52fe4484c3a36847f809a9ed", "cast_id": 13, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 1}, {"name": "Matthew Marsden", "character": "School Boy", "id": 12793, "credit_id": "52fe4484c3a36847f809a9f1", "cast_id": 15, "profile_path": "/4vsXCzUknnPmadfp9qVtbaO34NP.jpg", "order": 3}, {"name": "Reynaldo Gallegos", "character": "Diaz", "id": 52946, "credit_id": "52fe4484c3a36847f809a9f5", "cast_id": 16, "profile_path": "/9Auh1zaVGGBTYSDwjBs5PRChju1.jpg", "order": 4}, {"name": "Jake La Botz", "character": "Reese", "id": 52409, "credit_id": "52fe4484c3a36847f809a9f9", "cast_id": 17, "profile_path": "/pf0DFaUPd8ddEAyT5bHJYdhrjuX.jpg", "order": 5}, {"name": "Tim Kang", "character": "En-Joo", "id": 52947, "credit_id": "52fe4484c3a36847f809a9fd", "cast_id": 18, "profile_path": "/1qKA4ODtnF6SiYuSfcC8x9dI7dD.jpg", "order": 6}, {"name": "Maung Maung Khin", "character": "Tint", "id": 52948, "credit_id": "52fe4484c3a36847f809aa01", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Paul Schulze", "character": "Michael Burnett", "id": 36189, "credit_id": "52fe4484c3a36847f809aa05", "cast_id": 20, "profile_path": "/tcGHCA2seYFju3RBKItpyLHAPHc.jpg", "order": 8}, {"name": "Ken Howard", "character": "Arthur Marsh", "id": 18328, "credit_id": "52fe4484c3a36847f809aa09", "cast_id": 21, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 9}, {"name": "Graham McTavish", "character": "Lewis", "id": 95047, "credit_id": "52fe4484c3a36847f809aa13", "cast_id": 23, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 10}, {"name": "Cameron Pearson", "character": "Jeff", "id": 97551, "credit_id": "530b546c9251411114004d07", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Thomas Peterson", "character": "Dentist", "id": 1085469, "credit_id": "530b547c925141785e002e22", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Tony Skarberg", "character": "Videographer", "id": 1296116, "credit_id": "530b54909251411102004dd7", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "James With", "character": "Preacher", "id": 76489, "credit_id": "530b54a99251411105005200", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Kasikorn Niyompattana", "character": "Snake Hunter #2", "id": 1296117, "credit_id": "530b54c09251411117004fa5", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Shaliew 'Lek' Bamrungbun", "character": "Snake Hunter #1", "id": 1296118, "credit_id": "530b54cd9251411102004dde", "cast_id": 30, "profile_path": null, "order": 16}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a9af", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.3, "runtime": 92}, "10072": {"poster_path": "/4aMSIhvShIkDrhOsa0WL6KFwnpD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44793222, "overview": "It's been many years since Freddy Krueger's first victim, Nancy, came face-to-face with Freddy and his sadistic, evil ways. Now, Nancy's all grown up; she's put her frightening nightmares behind her and is helping teens cope with their dreams. Too bad Freddy's decided to herald his return by invading the kids' dreams and scaring them into committing suicide.", "video": false, "id": 10072, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street 3: Dream Warriors", "tagline": "If you think you're ready for Freddy, think again!", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093629", "adult": false, "backdrop_path": "/lNrbMhjhAQK9Hf4Nww7GoBezCMA.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Smart Egg Pictures", "id": 1531}], "release_date": "1987-02-27", "popularity": 0.853320410719287, "original_title": "A Nightmare on Elm Street 3: Dream Warriors", "budget": 5000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe431c9251416c75003d51", "cast_id": 2, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Kristen Parker", "id": 4687, "credit_id": "52fe431c9251416c75003d4d", "cast_id": 1, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Heather Langenkamp", "character": "Nancy Thompson", "id": 5141, "credit_id": "52fe431c9251416c75003d5d", "cast_id": 5, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 2}, {"name": "John Saxon", "character": "Lt. Donald Thompson", "id": 11163, "credit_id": "52fe431c9251416c75003d61", "cast_id": 6, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 3}, {"name": "Craig Wasson", "character": "Dr. Neil Gordon", "id": 62893, "credit_id": "52fe431c9251416c75003d55", "cast_id": 3, "profile_path": "/7LX5Gl56EIodVKCWZ8QaZYVLNaU.jpg", "order": 4}, {"name": "Laurence Fishburne", "character": "Max", "id": 2975, "credit_id": "52fe431c9251416c75003d59", "cast_id": 4, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 5}, {"name": "Ken Sagoes", "character": "Roland Kincaid", "id": 63915, "credit_id": "52fe431c9251416c75003dad", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Rodney Eastman", "character": "Joey", "id": 63916, "credit_id": "52fe431c9251416c75003db1", "cast_id": 21, "profile_path": "/mxA0J0Ky7XZsn4yXWj5koXTkYBq.jpg", "order": 7}, {"name": "Jennifer Rubin", "character": "Taryn White", "id": 56978, "credit_id": "52fe431c9251416c75003db5", "cast_id": 22, "profile_path": "/xK5ubDqPfiWjXffMJzTvObFlXsV.jpg", "order": 8}, {"name": "Bradley Gregg", "character": "Phillip", "id": 3039, "credit_id": "52fe431c9251416c75003db9", "cast_id": 23, "profile_path": "/l4vc0U4XQ7t07pqekPPVehzs0R.jpg", "order": 9}, {"name": "Ira Heiden", "character": "Will Stanton", "id": 44816, "credit_id": "52fe431c9251416c75003dbd", "cast_id": 24, "profile_path": "/2UrIib1OSEb2oas2MO28Re8yODM.jpg", "order": 10}, {"name": "Penelope Sudrow", "character": "Jennifer Caulfield", "id": 174848, "credit_id": "52fe431c9251416c75003dc1", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Priscilla Pointer", "character": "Dr. Elizabeth Simms", "id": 11793, "credit_id": "52fe431c9251416c75003dc5", "cast_id": 26, "profile_path": "/rmT7Qje6YBG180d1hlY6zQpZmfv.jpg", "order": 12}, {"name": "Clayton Landey", "character": "Lorenzo", "id": 101013, "credit_id": "52fe431c9251416c75003dc9", "cast_id": 27, "profile_path": "/4e1GziFKqLh5V5tEnqwT1NvMMvL.jpg", "order": 13}, {"name": "Brooke Bundy", "character": "Elaine Parker", "id": 72157, "credit_id": "52fe431c9251416c75003dcd", "cast_id": 28, "profile_path": "/hbmv1jHZNNb7AmpdW8oaMIk3jXs.jpg", "order": 14}, {"name": "Kristen Clayton", "character": "Little Girl", "id": 552162, "credit_id": "52fe431c9251416c75003dd1", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Sally Piper", "character": "Nurse #1", "id": 553736, "credit_id": "52fe431c9251416c75003dd5", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Rozlyn Sorrell", "character": "Nurse #2", "id": 553737, "credit_id": "52fe431c9251416c75003dd9", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Nan Martin", "character": "Sister Mary Helena / Amanda Krueger", "id": 87039, "credit_id": "52fe431c9251416c75003ddd", "cast_id": 32, "profile_path": "/cN7wHsog96Vv3vihOplo4xYRxnH.jpg", "order": 18}, {"name": "Zsa Zsa G\u00e1bor", "character": "Herself", "id": 44715, "credit_id": "52fe431c9251416c75003de9", "cast_id": 35, "profile_path": "/spsHbBoqF6aeLhqjYvsgvL5EBMp.jpg", "order": 19}, {"name": "Stacey Alden", "character": "Marcie", "id": 553738, "credit_id": "52fe431c9251416c75003de1", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Dick Cavett", "character": "Himself", "id": 10565, "credit_id": "52fe431c9251416c75003de5", "cast_id": 34, "profile_path": "/wxur4NDgWKAZsjrjpc75ZTzNqsO.jpg", "order": 21}, {"name": "Michael Rougas", "character": "Priest in Church", "id": 194092, "credit_id": "52fe431c9251416c75003ded", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Jack Shea", "character": "Priest in Cemetery", "id": 190793, "credit_id": "52fe431c9251416c75003df1", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Paul Kent", "character": "Dr. Carver", "id": 157612, "credit_id": "52fe431c9251416c75003df5", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Mary Brown", "character": "Neurosurgeon", "id": 553739, "credit_id": "52fe431c9251416c75003df9", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Melanie Doctors", "character": "Girl in Cemetery", "id": 553740, "credit_id": "52fe431c9251416c75003dfd", "cast_id": 40, "profile_path": null, "order": 26}, {"name": "Donna Durham", "character": "Girl in Crowd", "id": 553741, "credit_id": "52fe431c9251416c75003e01", "cast_id": 41, "profile_path": null, "order": 27}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe431c9251416c75003d67", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 6.1, "runtime": 96}, "89492": {"poster_path": "/aNx4bIjDCTVdIhZqEzBu0utBMsh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88058786, "overview": "Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they're on the verge of losing their house, and their relationship is threatening to fall apart.", "video": false, "id": 89492, "genres": [{"id": 35, "name": "Comedy"}], "title": "This Is 40", "tagline": "The sort-of sequel to 'Knocked Up'", "vote_count": 490, "homepage": "http://www.thisis40movie.com/", "belongs_to_collection": {"backdrop_path": "/sVXPlw09BLvqTQQYlqtAHruu1hs.jpg", "poster_path": "/ttZrgOVWavGJM4yPUovcr4BKc4f.jpg", "id": 182436, "name": "Knocked Up / This Is 40 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758830", "adult": false, "backdrop_path": "/uu1cPthWjb0ex1cvgI8wPy6kasC.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}], "release_date": "2012-12-21", "popularity": 0.601101437621973, "original_title": "This Is 40", "budget": 35000000, "cast": [{"name": "Paul Rudd", "character": "Pete", "id": 22226, "credit_id": "52fe4a1c9251416c910c395f", "cast_id": 2, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Debbie", "id": 41087, "credit_id": "52fe4a1c9251416c910c3963", "cast_id": 3, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Jason Segel", "character": "Jason", "id": 41088, "credit_id": "52fe4a1c9251416c910c3967", "cast_id": 4, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 2}, {"name": "Maude Apatow", "character": "Sadie", "id": 41090, "credit_id": "52fe4a1c9251416c910c397f", "cast_id": 10, "profile_path": "/3VOawL9cIJD2btDRYWoOHnJIkAM.jpg", "order": 3}, {"name": "Megan Fox", "character": "Desi", "id": 19537, "credit_id": "52fe4a1c9251416c910c396b", "cast_id": 5, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 4}, {"name": "Lena Dunham", "character": "Larry", "id": 139135, "credit_id": "52fe4a1c9251416c910c396f", "cast_id": 6, "profile_path": "/mz9Fz5OxH2CtuM0NOm6v0xxAlrl.jpg", "order": 5}, {"name": "Melissa McCarthy", "character": "Catherine", "id": 55536, "credit_id": "52fe4a1c9251416c910c3973", "cast_id": 7, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 6}, {"name": "Charlyne Yi", "character": "CAt", "id": 93285, "credit_id": "52fe4a1c9251416c910c3977", "cast_id": 8, "profile_path": "/nH6Wfy1ikRNj97RWLZ2FRPbxSOA.jpg", "order": 7}, {"name": "John Lithgow", "character": "Oliver", "id": 12074, "credit_id": "52fe4a1c9251416c910c397b", "cast_id": 9, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 8}, {"name": "Robert Smigel", "character": "CAt", "id": 53684, "credit_id": "52fe4a1c9251416c910c3983", "cast_id": 11, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 9}, {"name": "Albert Brooks", "character": "Larry", "id": 13, "credit_id": "52fe4a1c9251416c910c3987", "cast_id": 12, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 10}, {"name": "Chris O'Dowd", "character": "Ronnie", "id": 40477, "credit_id": "52fe4a1c9251416c910c39a3", "cast_id": 17, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 11}, {"name": "Annie Mumolo", "character": "Barb", "id": 174514, "credit_id": "52fe4a1c9251416c910c39a7", "cast_id": 18, "profile_path": "/1VAuKQ5jR98jA638K8E6oiMXasw.jpg", "order": 12}, {"name": "Billie Joe Armstrong", "character": "Billie Joe Armstrong", "id": 95866, "credit_id": "52fe4a1c9251416c910c39ab", "cast_id": 19, "profile_path": "/pSHyO9ykNdjq1tSOAp0ukikPlR9.jpg", "order": 13}, {"name": "Iris Apatow", "character": "Charlotte", "id": 963429, "credit_id": "52fe4a1c9251416c910c39b5", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Michael Ian Black", "character": "Accountant", "id": 22224, "credit_id": "52fe4a1c9251416c910c39b9", "cast_id": 22, "profile_path": "/aE2Bx6ABC8GWEDkCxzC8sFA7jni.jpg", "order": 15}, {"name": "Wyatt Russell", "character": "Flirty Hockey Player", "id": 986808, "credit_id": "53a288bac3a36831fc000c3d", "cast_id": 23, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 16}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe4a1c9251416c910c395b", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 5.4, "runtime": 134}, "9454": {"poster_path": "/1ELrosU04wEbfmxK9wLBjdEECqm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65705772, "overview": "A unique 16th century woman, Danielle possesses a love of books, and can easily quote from Sir Thomas More\u2019s Utopia. An intriguing mix of tomboyish athleticism and physical beauty, she has more than enough charm to capture the heart of a prince ... after beaning him with an apple.", "video": false, "id": 9454, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Ever After: A Cinderella Story", "tagline": "Desire. Defy. Escape.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120631", "adult": false, "backdrop_path": "/iPe4WUji9iSbdTIzY4nNpoyHaiZ.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1998-07-29", "popularity": 0.497526650034681, "original_title": "EverAfter", "budget": 26000000, "cast": [{"name": "Drew Barrymore", "character": "Danielle De Barbarac", "id": 69597, "credit_id": "52fe44f9c3a36847f80b53dd", "cast_id": 12, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Dougray Scott", "character": "Prince Henry", "id": 15336, "credit_id": "52fe44f9c3a36847f80b53e1", "cast_id": 13, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 1}, {"name": "Anjelica Huston", "character": "Baroness Rodmilla De Ghent", "id": 5657, "credit_id": "52fe44f9c3a36847f80b53e5", "cast_id": 14, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 2}, {"name": "Megan Dodds", "character": "Marguerite De Ghent", "id": 17198, "credit_id": "53b092790e0a26597d006bce", "cast_id": 23, "profile_path": "/nI0AsHa4AQco77RIKRb9ehwJCrE.jpg", "order": 3}, {"name": "Melanie Lynskey", "character": "Jacqueline De Ghent", "id": 15091, "credit_id": "52fe44f9c3a36847f80b53e9", "cast_id": 15, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 4}, {"name": "Timothy West", "character": "King Francis", "id": 35257, "credit_id": "53b090c4c3a3682eee005483", "cast_id": 16, "profile_path": "/PsZdCMfSBQA8wmq84PE51ATUhV.jpg", "order": 5}, {"name": "Judy Parfitt", "character": "Queen Marie", "id": 33448, "credit_id": "53b090d6c3a3682ee20057b7", "cast_id": 17, "profile_path": "/vF3gRzpyL5y2rLMOoamYjWmux7U.jpg", "order": 6}, {"name": "Patrick Godfrey", "character": "Leonardo da Vinci", "id": 3568, "credit_id": "53b09113c3a3682ed80053bf", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Richard O'Brien", "character": "Pierre Le Pieu", "id": 13474, "credit_id": "53b091920e0a265983006b01", "cast_id": 19, "profile_path": "/pCxCt82DQQLTgOryp6FPczmN3L9.jpg", "order": 8}, {"name": "Toby Jones", "character": "Royal Page", "id": 13014, "credit_id": "53b091aa0e0a26597d006bc6", "cast_id": 20, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 9}, {"name": "Lee Ingleby", "character": "Gustave", "id": 229672, "credit_id": "53b091f60e0a265979006b07", "cast_id": 21, "profile_path": "/x2OW4t8CerOMObV1opNZ2rmGto1.jpg", "order": 10}, {"name": "Jeroen Krabb\u00e9", "character": "Auguste", "id": 1924, "credit_id": "53b092180e0a265989006b55", "cast_id": 22, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 11}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44f9c3a36847f80b539d", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.8, "runtime": 121}, "125509": {"poster_path": "/olnVrUyoL2ntBBuipvXBecCbTBX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small West Virginia town is hosting the legendary Mountain Man Festival on Halloween, where throngs of costumed party goers gather for a wild night of music and mischief. But an inbred family of hillbilly cannibals kill the fun when they trick and treat themselves to a group of visiting college students.", "video": false, "id": 125509, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wrong Turn 5: Bloodlines", "tagline": "The inbred hillbillies are back!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/32IsLLCoj3mIkZbLfCKSXZVqd3k.jpg", "poster_path": "/dtfQY5ZxvdHNG4HqNDy0ifwk1q6.jpg", "id": 52985, "name": "Wrong Turn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2375779", "adult": false, "backdrop_path": "/95k1nO0SazGJD2mhJsh1ll5x8TR.jpg", "production_companies": [{"name": "20th Century Fox Home Entertainment", "id": 3635}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2012-10-23", "popularity": 1.25021270648179, "original_title": "Wrong Turn 5: Bloodlines", "budget": 0, "cast": [{"name": "Camilla Arfwedson", "character": "Sheriff Angela", "id": 1073327, "credit_id": "52fe4ac8c3a368484e166a45", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Doug Bradley", "character": "Maynard", "id": 73040, "credit_id": "52fe4ac8c3a368484e166a49", "cast_id": 4, "profile_path": "/hzITESBe6eDN4Y3TNZ6Fk6wsfaC.jpg", "order": 1}, {"name": "Simon Ginty", "character": "Billy", "id": 1081468, "credit_id": "52fe4ac8c3a368484e166a4d", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Oliver Hoare", "character": "Julian", "id": 1081469, "credit_id": "52fe4ac8c3a368484e166a51", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Roxanne McKee", "character": "Lita", "id": 228969, "credit_id": "52fe4ac8c3a368484e166a55", "cast_id": 7, "profile_path": "/oJYawHvbZM48lNTGWKATapFzplL.jpg", "order": 4}, {"name": "Amy Lennox", "character": "Cruz", "id": 1081470, "credit_id": "52fe4ac8c3a368484e166a59", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Paul Luebke", "character": "Gus", "id": 1108568, "credit_id": "52fe4ac8c3a368484e166a8d", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Duncan Wisbey", "character": "Mose", "id": 1108569, "credit_id": "52fe4ac8c3a368484e166a91", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Radoslav Parvanov", "character": "One Eye", "id": 1108570, "credit_id": "52fe4ac8c3a368484e166a95", "cast_id": 19, "profile_path": "/81LnVL0LlzMmOk7xQGY9htYvEpr.jpg", "order": 8}, {"name": "George Karlukovski", "character": "Saw Tooth", "id": 1108571, "credit_id": "52fe4ac8c3a368484e166a99", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Declan O'Brien", "department": "Directing", "job": "Director", "credit_id": "52fe4ac8c3a368484e166a3b", "profile_path": null, "id": 126882}], "vote_average": 4.8, "runtime": 91}, "15789": {"poster_path": "/iXYXjKohQ1j2FNIXLa84aaaE76K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35348597, "overview": "When Max makes an preposterous promise to his girlfriend, his chances to fulfilling it seem hopeless when he is dragged onto a cross-country trip with his embarrassing father, Goofy.", "video": false, "id": 15789, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "A Goofy Movie", "tagline": "It's the story of a father who couldn't be closer...to driving his son crazy.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113198", "adult": false, "backdrop_path": "/ijDUMFmb34Fv7jBwxzhNc3lbVP3.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1995-04-07", "popularity": 0.477338115881771, "original_title": "A Goofy Movie", "budget": 0, "cast": [{"name": "Bill Farmer", "character": "Goofy Goof (voice)", "id": 84213, "credit_id": "52fe467d9251416c75079ee1", "cast_id": 2, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 0}, {"name": "Jason Marsden", "character": "Max Goof", "id": 61983, "credit_id": "5484cd06c3a3680b48000c5d", "cast_id": 16, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 1}, {"name": "Rob Paulsen", "character": "P.J. Pete", "id": 43125, "credit_id": "52fe467d9251416c75079ee9", "cast_id": 4, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 2}, {"name": "Jim Cummings", "character": "Peter Pete", "id": 12077, "credit_id": "52fe467d9251416c75079eed", "cast_id": 5, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 3}, {"name": "Kellie Martin", "character": "Roxanne", "id": 93663, "credit_id": "52fe467d9251416c75079ef1", "cast_id": 6, "profile_path": "/ey8rv3wW0SxTfNVdYrLaKb80c3Q.jpg", "order": 4}, {"name": "Pauly Shore", "character": "Robert \"Bobby\" Zimmeruski", "id": 64998, "credit_id": "52fe467d9251416c75079ef5", "cast_id": 7, "profile_path": "/jZnwhWMyxZMDPNCYc3UCodpyCB.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Principal Arthur Mazur", "id": 12900, "credit_id": "52fe467d9251416c75079ef9", "cast_id": 8, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "Frank Welker", "character": "Bigfoot", "id": 15831, "credit_id": "52fe467d9251416c75079efd", "cast_id": 9, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 7}], "directors": [{"name": "Kevin Lima", "department": "Directing", "job": "Director", "credit_id": "52fe467d9251416c75079edd", "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "id": 15775}, {"name": "Paul Brizzi", "department": "Directing", "job": "Director", "credit_id": "5534701bc3a368523e002aed", "profile_path": null, "id": 56147}], "vote_average": 6.6, "runtime": 78}, "64956": {"poster_path": "/yr6XX4c7BOvxVjV6cJePwZdUlLn.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Cobol Job is a fourteen-minute animated prequel to Christopher Nolan\u2019s award-winning movie: Inception, detailing the heist on Mr. Kaneda's mind by Nash, Cobb, Arthur, and several Cobol Engineering thugs.", "video": false, "id": 64956, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Inception: The Cobol Job", "tagline": "", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1790736", "adult": false, "backdrop_path": "/2kGP9gJEONx1hjgRjbusXzAbKQf.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2010-12-07", "popularity": 0.46856250098985, "original_title": "Inception: The Cobol Job", "budget": 0, "cast": [{"name": "Leonardo DiCaprio", "character": "Cobb", "id": 6193, "credit_id": "52fe46f5c3a368484e0ad28b", "cast_id": 6, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Joseph Gordon-Levitt", "character": "Arthur", "id": 24045, "credit_id": "52fe46f5c3a368484e0ad28f", "cast_id": 7, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 1}, {"name": "Tom Hardy", "character": "Eames", "id": 2524, "credit_id": "52fe46f5c3a368484e0ad293", "cast_id": 8, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 2}], "directors": [{"name": "Ian Kirby", "department": "Directing", "job": "Director", "credit_id": "52fe46f5c3a368484e0ad275", "profile_path": null, "id": 1168899}], "vote_average": 7.3, "runtime": 15}, "74997": {"poster_path": "/kFtAdkCO0vXN2RWu2oMcR9GZ9Hi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Inspired by the fictional Dr. Heiter, disturbed loner Martin dreams of creating a 12-person centipede and sets out to realize his sick fantasy.", "video": false, "id": 74997, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "The Human Centipede 2 (Full Sequence)", "tagline": "100% medically INaccurate.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iNRMelQcaKeVdinF28uU9YOmvYx.jpg", "poster_path": "/mv0MySTqfXg2ndthOkBg6bGwlnk.jpg", "id": 96671, "name": "The Human Centipede Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1530509", "adult": false, "backdrop_path": "/5XgEVKSaULK2jXs4ddqdETpFqCZ.jpg", "production_companies": [{"name": "Six Entertainment", "id": 5652}], "release_date": "2011-10-07", "popularity": 0.59629476889714, "original_title": "The Human Centipede 2 (Full Sequence)", "budget": 0, "cast": [{"name": "Laurence R. Harvey", "character": "Martin", "id": 573773, "credit_id": "52fe48e9c3a368484e111787", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Ashlynn Yennie", "character": "Miss Yennie", "id": 121575, "credit_id": "52fe48e9c3a368484e11178b", "cast_id": 4, "profile_path": "/g1vpTTRSxNcZRPUZiY5I10sbFki.jpg", "order": 1}, {"name": "Dominic Borrelli", "character": "Paul", "id": 321853, "credit_id": "52fe48e9c3a368484e11178f", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Georgia Goodrick", "character": "Valerie", "id": 560872, "credit_id": "52fe48e9c3a368484e111793", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Maddi Black", "character": "Candy", "id": 1080026, "credit_id": "52fe48e9c3a368484e1117b5", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Kandace Caine", "character": "Karrie", "id": 1080027, "credit_id": "52fe48e9c3a368484e1117b9", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Lucas Hansen", "character": "Ian", "id": 1080028, "credit_id": "52fe48e9c3a368484e1117bd", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Lee Nicholas Harris", "character": "Dick", "id": 578690, "credit_id": "52fe48e9c3a368484e1117c1", "cast_id": 15, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 7}, {"name": "Dan Burman", "character": "Greg", "id": 1080029, "credit_id": "52fe48e9c3a368484e1117c5", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Daniel Jude Gennis", "character": "Tim", "id": 1080030, "credit_id": "52fe48e9c3a368484e1117c9", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Emma Lock", "character": "Kim", "id": 1080031, "credit_id": "52fe48e9c3a368484e1117cd", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Katherine Templar", "character": "Rachel", "id": 1080032, "credit_id": "52fe48e9c3a368484e1117d1", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Peter Blankenstein", "character": "Alan", "id": 121578, "credit_id": "52fe48e9c3a368484e1117d5", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Vivien Bridson", "character": "Misses Lomax", "id": 1080033, "credit_id": "52fe48e9c3a368484e1117d9", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Bill Hutchens", "character": "Dr. Sebring", "id": 1080034, "credit_id": "52fe48e9c3a368484e1117dd", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Tom Six", "department": "Directing", "job": "Director", "credit_id": "52fe48e9c3a368484e1117e3", "profile_path": "/dkj0gsN4twgJqhQmI4EY2OnGW6D.jpg", "id": 118639}], "vote_average": 4.9, "runtime": 91}, "17654": {"poster_path": "/axFmCRNQsW6Bto8XuJKo08MPPV5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 210819611, "overview": "Aliens land in South Africa and have no way home. Years later after living in a slum and wearing out their welcome the \"Non-Humans\" are being moved to a new tent city overseen by Multi-National United (MNU). The movie follows an MNU employee tasked with leading the relocation and his relationship with one of the alien leaders.", "video": false, "id": 17654, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "District 9", "tagline": "You are not welcome here.", "vote_count": 1091, "homepage": "http://www.d-9.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "ny", "name": ""}, {"iso_639_1": "st", "name": ""}, {"iso_639_1": "xh", "name": ""}, {"iso_639_1": "zu", "name": "isiZulu"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1136608", "adult": false, "backdrop_path": "/nPBDOLBPdBapuhcv4xXopHX9BAE.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Block / Hanson", "id": 8504}, {"name": "WingNut Films", "id": 11}, {"name": "Canadian Film or Video Production Tax Credit (CPTC)", "id": 8582}, {"name": "District 9", "id": 20667}, {"name": "Key Creatives", "id": 2300}, {"name": "New Zealand Post Digital and Visual Effects Grant", "id": 20668}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}, {"name": "QED International", "id": 11029}, {"name": "The Department of Trade and Industry of South Africa", "id": 10884}], "release_date": "2009-10-15", "popularity": 1.31922489525978, "original_title": "District 9", "budget": 30000000, "cast": [{"name": "Sharlto Copley", "character": "Wikus van der Merwe", "id": 82191, "credit_id": "52fe473b9251416c75092361", "cast_id": 3, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Jason Cope", "character": "Grey Bradnam", "id": 82193, "credit_id": "52fe473c9251416c75092365", "cast_id": 4, "profile_path": "/scn3r86ekzN1RQpsLc6Rhb7D76x.jpg", "order": 1}, {"name": "Nathalie Boltt", "character": "Sarah Livingstone - Sociologist", "id": 97599, "credit_id": "52fe473c9251416c750923a1", "cast_id": 15, "profile_path": "/5bpt1IKXPqsgDxOJ2BdGKoQCAV3.jpg", "order": 2}, {"name": "Sylvaine Strike", "character": "Dr Katrina McKenzie", "id": 230818, "credit_id": "52fe473c9251416c750923a5", "cast_id": 16, "profile_path": "/toznlVPsbkFnYs8JvZvGBMzz6D5.jpg", "order": 3}, {"name": "Elizabeth Mkandawie", "character": "Interviewee", "id": 1086505, "credit_id": "52fe473c9251416c750923a9", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "John Sumner", "character": "Les Feldman - MIL Engineer", "id": 3495, "credit_id": "52fe473c9251416c750923ad", "cast_id": 18, "profile_path": "/9b3RL7HRtPeqUrnCkO12bevK85a.jpg", "order": 5}, {"name": "William Allen Young", "character": "Dirk Michaels", "id": 53087, "credit_id": "52fe473b9251416c75092359", "cast_id": 1, "profile_path": "/pH8tVh3hnpIUscfT920WLBiHeOU.jpg", "order": 6}, {"name": "Nick Blake", "character": "Francois Moraneu - CIV Engineer Team", "id": 240024, "credit_id": "52fe473c9251416c750923b5", "cast_id": 20, "profile_path": "/7rtqlDb4WnqvL069OA5yZx5yOS8.jpg", "order": 7}, {"name": "Greg Melvill-Smith", "character": "Interviewer", "id": 1029046, "credit_id": "52fe473c9251416c750923b1", "cast_id": 19, "profile_path": "/z4nhS09mhZsQ3NZ6NQCiQsIwnfZ.jpg", "order": 8}, {"name": "Robert Hobbs", "character": "Ross Pienaar", "id": 82190, "credit_id": "52fe473b9251416c7509235d", "cast_id": 2, "profile_path": "/yN6gVehZi1Y5P5kDazI8FmB8Bb0.jpg", "order": 9}, {"name": "Vanessa Haywood", "character": "Tania Van De Merwe", "id": 82192, "credit_id": "52fe473c9251416c75092399", "cast_id": 13, "profile_path": "/iXiTyyrfdlxZ8wdffciAj21Z6Ly.jpg", "order": 10}, {"name": "Kenneth Nkosi", "character": "Thomas", "id": 13094, "credit_id": "52fe473c9251416c7509239d", "cast_id": 14, "profile_path": "/1SLAxQJUYRFWSj7shaSvt4AImJM.jpg", "order": 11}, {"name": "Morena Busa Sesatsa", "character": "Interviewee", "id": 1086506, "credit_id": "52fe473c9251416c750923b9", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Themba Nkosi", "character": "Interviewee", "id": 1086507, "credit_id": "52fe473c9251416c750923bd", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Mzwandile Nqoba", "character": "Interviewee", "id": 1086508, "credit_id": "52fe473c9251416c750923c1", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Barry Strydom", "character": "Interviewee", "id": 1086509, "credit_id": "52fe473c9251416c750923c5", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Jed Brophy", "character": "James Hope - Police Officer", "id": 173451, "credit_id": "52fe473c9251416c750923c9", "cast_id": 25, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 16}, {"name": "Louis Minnaar", "character": "Piet Smit", "id": 967456, "credit_id": "52fe473c9251416c750923cd", "cast_id": 26, "profile_path": "/r8JxisQiVUW3TqiSfHd9d63yHry.jpg", "order": 17}, {"name": "Marian Hooman", "character": "Sandra Van De Merwe", "id": 967457, "credit_id": "52fe473c9251416c750923d1", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Vittorio Leonardi", "character": "Michael Bloemstein - MNU Alien Civil Affairs", "id": 967458, "credit_id": "52fe473c9251416c750923d5", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "David Clatworthy", "character": "MNU Doctor", "id": 1073473, "credit_id": "5464d2020e0a262942001f5f", "cast_id": 40, "profile_path": "/sYy5IKaWGDlsEm8uiABzIxRlnAr.jpg", "order": 20}], "directors": [{"name": "Neill Blomkamp", "department": "Directing", "job": "Director", "credit_id": "52fe473c9251416c7509236b", "profile_path": "/wM1ACz7B2km2KGkxA1sg3QyHrtL.jpg", "id": 82194}], "vote_average": 6.9, "runtime": 112}, "138697": {"poster_path": "/lyglSFUcbfig1ANSwlg89WwvZnI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.", "video": false, "id": 138697, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Don Jon", "tagline": "Everyone loves a happy ending.", "vote_count": 543, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2229499", "adult": false, "backdrop_path": "/mOq8sc1V3S325htVbqworJqMUgh.jpg", "production_companies": [{"name": "Ram Bergman Productions", "id": 11092}, {"name": "Voltage Pictures", "id": 10255}, {"name": "HitRecord Films", "id": 14578}], "release_date": "2013-09-27", "popularity": 1.63651133193351, "original_title": "Don Jon", "budget": 6000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Jon", "id": 24045, "credit_id": "52fe4c52c3a368484e1b26ab", "cast_id": 8, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Barbara", "id": 1245, "credit_id": "52fe4c52c3a368484e1b26af", "cast_id": 9, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Julianne Moore", "character": "Esther", "id": 1231, "credit_id": "52fe4c52c3a368484e1b26b3", "cast_id": 10, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 2}, {"name": "Tony Danza", "character": "Jon Sr.", "id": 18298, "credit_id": "52fe4c52c3a368484e1b26bb", "cast_id": 12, "profile_path": "/zuGqT0ZJQFm0GMUnEa32jYu75Fy.jpg", "order": 3}, {"name": "Glenne Headly", "character": "Angela", "id": 21104, "credit_id": "52fe4c52c3a368484e1b26bf", "cast_id": 13, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 4}, {"name": "Brie Larson", "character": "Monica", "id": 60073, "credit_id": "52fe4c52c3a368484e1b26b7", "cast_id": 11, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 5}, {"name": "Rob Brown", "character": "Bobby", "id": 10689, "credit_id": "52fe4c52c3a368484e1b26c3", "cast_id": 14, "profile_path": "/m8VAOhTpIQYWDYg2MOc9lOFLahF.jpg", "order": 6}, {"name": "Jeremy Luke", "character": "Danny", "id": 112879, "credit_id": "52fe4c52c3a368484e1b26c7", "cast_id": 15, "profile_path": "/gvBicS8kZjWZ4TFChR7LmC9k3YT.jpg", "order": 7}, {"name": "Paul Ben-Victor", "character": "Priest", "id": 85142, "credit_id": "52fe4c52c3a368484e1b26cb", "cast_id": 16, "profile_path": "/350FIsnn84w2RLAhNPRtzeaUqLO.jpg", "order": 8}, {"name": "Italia Ricci", "character": "Gina", "id": 212429, "credit_id": "52fe4c52c3a368484e1b26cf", "cast_id": 17, "profile_path": "/c2hdp1feyjdjBdTzrLwnnlNBsO4.jpg", "order": 9}, {"name": "Lindsey Broad", "character": "Lauren", "id": 208307, "credit_id": "52fe4c52c3a368484e1b26d3", "cast_id": 18, "profile_path": "/6R4jOm6LOTlbt1L9Zbocl5OjsfQ.jpg", "order": 10}, {"name": "Amanda Perez", "character": "Lisa", "id": 1124795, "credit_id": "52fe4c52c3a368484e1b26d7", "cast_id": 19, "profile_path": "/vDE724lSQIfhdCHwkqtD3O6ZY0J.jpg", "order": 11}, {"name": "Sarah Dumont", "character": "Sequins", "id": 1223438, "credit_id": "52fe4c52c3a368484e1b26db", "cast_id": 20, "profile_path": "/5Co3Oad320D87NhQTqzkSTU3ZAy.jpg", "order": 12}, {"name": "Sloane Avery", "character": "Patricia", "id": 1223439, "credit_id": "52fe4c52c3a368484e1b26df", "cast_id": 21, "profile_path": "/aiiuUk6jAB58DWPKMGIKEAwNvrp.jpg", "order": 13}, {"name": "Loanne Bishop", "character": "Barbara's Mom", "id": 149699, "credit_id": "52fe4c52c3a368484e1b26e3", "cast_id": 22, "profile_path": "/tNwbRqGvb37TA8Ws9trV34UlPts.jpg", "order": 14}, {"name": "Arin Babaian", "character": "Bartender", "id": 1355837, "credit_id": "53f8009ac3a368735b0006cb", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Arielle Reitsma", "character": "Pink", "id": 1355838, "credit_id": "53f800a9c3a36873550006c3", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Rizwan Manji", "character": "Teacher", "id": 1223718, "credit_id": "53f800fd0e0a267a69000ab7", "cast_id": 39, "profile_path": "/yB9w540vNe4pwa3ptvO1haDUKWy.jpg", "order": 17}, {"name": "Eva Mah", "character": "Waitress", "id": 1355839, "credit_id": "53f8010a0e0a267a6c000a34", "cast_id": 40, "profile_path": null, "order": 18}, {"name": "Nina Agdal", "character": "Supermodel in Commercial", "id": 1355840, "credit_id": "53f8011c0e0a267a6f000a72", "cast_id": 41, "profile_path": "/nablozfCEzGkZnY33KzM42k7Ejg.jpg", "order": 19}, {"name": "Jason Burnham", "character": "Promoter", "id": 1355841, "credit_id": "53f801290e0a267a69000ac0", "cast_id": 42, "profile_path": null, "order": 20}, {"name": "Johnny Ferrara", "character": "Other Driver", "id": 1355842, "credit_id": "53f801390e0a267a78000a67", "cast_id": 43, "profile_path": null, "order": 21}, {"name": "Tiffany Pulvino", "character": "Hostess", "id": 239974, "credit_id": "53f801600e0a267a7b000a05", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Olia Voronkova", "character": "Russian Voices", "id": 1355844, "credit_id": "53f801740e0a267a6c000a50", "cast_id": 45, "profile_path": null, "order": 23}, {"name": "Sonni Brown", "character": "Woman in Car", "id": 1355845, "credit_id": "53f801850e0a267a7b000a11", "cast_id": 46, "profile_path": null, "order": 24}, {"name": "Antoinette Kalaj", "character": "Feefee", "id": 1346327, "credit_id": "53f8020dc3a368734c0006b5", "cast_id": 47, "profile_path": null, "order": 25}, {"name": "Arayna Eison", "character": "Beebee", "id": 1355846, "credit_id": "53f8021ac3a368735e000701", "cast_id": 48, "profile_path": null, "order": 26}, {"name": "Becky O'Donohue", "character": "Deedee", "id": 446351, "credit_id": "53f8023cc3a36873550006f2", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Elena Kim", "character": "Purple", "id": 1355847, "credit_id": "53f80248c3a36873580006cc", "cast_id": 50, "profile_path": null, "order": 28}, {"name": "Tanya Mityushina", "character": "White Shorts", "id": 1355848, "credit_id": "53f80255c3a368734f0006d2", "cast_id": 51, "profile_path": null, "order": 29}, {"name": "Craig Marks", "character": "Church Parishioner", "id": 1355849, "credit_id": "53f80263c3a36873550006f7", "cast_id": 52, "profile_path": null, "order": 30}, {"name": "Anne Hathaway", "character": "Hollywood Actress #1", "id": 1813, "credit_id": "539a17300e0a26363b0000a8", "cast_id": 32, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 31}, {"name": "Channing Tatum", "character": "Hollywood Actor #1", "id": 38673, "credit_id": "539a17420e0a2636370000aa", "cast_id": 33, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 32}, {"name": "Meagan Good", "character": "Hollywood Actress #2", "id": 22122, "credit_id": "539a17560e0a2636440000ac", "cast_id": 34, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 33}, {"name": "Cuba Gooding Jr.", "character": "Hollywood Actor #2", "id": 9777, "credit_id": "539a17680e0a2636370000b0", "cast_id": 35, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 34}, {"name": "Alexis Texas", "character": "Herself (Adult Film Clip)", "id": 124972, "credit_id": "5405e264c3a368119c003cd7", "cast_id": 76, "profile_path": "/iPcg3mtVIGehfJhhG5nRvhSXiIt.jpg", "order": 58}, {"name": "Sunny Lane", "character": "Herself (Adult Film Clip)", "id": 74250, "credit_id": "5405e271c3a36843660086fb", "cast_id": 77, "profile_path": "/sBLW6gy9B4IEl7ORn9sOHJuixnq.jpg", "order": 59}, {"name": "Devon", "character": "Herself (Adult Film Clip)", "id": 124136, "credit_id": "5405e27ec3a3682d98006e2c", "cast_id": 78, "profile_path": "/9tckZpVlheiOkQRQJhdCwb0KwsQ.jpg", "order": 60}, {"name": "Cheyne Collins", "character": "Herself (Adult Film Clip)", "id": 41990, "credit_id": "5405e291c3a3685b74003fdc", "cast_id": 79, "profile_path": null, "order": 61}, {"name": "Aletta Ocean", "character": "Herself (Adult Film Clip)", "id": 135659, "credit_id": "5405e29bc3a3684372008374", "cast_id": 80, "profile_path": "/mccelgZ7Af4SZaEOHSgEiZZxlx3.jpg", "order": 62}, {"name": "Kayden Kross", "character": "Herself (Adult Film Clip)", "id": 132388, "credit_id": "5405e2a6c3a368119c003cdb", "cast_id": 81, "profile_path": "/sEyhB3wszX7fnyesKEEFbPgoZeS.jpg", "order": 63}, {"name": "Jenny Hendrix", "character": "Herself (Adult Film Clip)", "id": 125611, "credit_id": "5405e2b2c3a368068c0084e0", "cast_id": 82, "profile_path": "/FtFwNeeKsK7KLMCbQwzTJgYIyW.jpg", "order": 64}, {"name": "Anita Blond", "character": "Herself (Adult Film Clip)", "id": 88578, "credit_id": "5405e2bfc3a36843660086ff", "cast_id": 83, "profile_path": "/74pEqhwGmP6g4H7dkQ9T2Bfekh6.jpg", "order": 65}, {"name": "Damien Michaels", "character": "Himself (Adult Film Clip)", "id": 1274860, "credit_id": "5405e2d4c3a3685b74003fe0", "cast_id": 84, "profile_path": null, "order": 66}, {"name": "Tori Black", "character": "Herself (Adult Film Clip)", "id": 132381, "credit_id": "5405e356c3a368068c0084ea", "cast_id": 85, "profile_path": "/747fboEtjXNqZQWZLPVssJUlGsm.jpg", "order": 67}, {"name": "Manuel Ferrara", "character": "Himself (Adult Film Clip)", "id": 55680, "credit_id": "5405e372c3a368119c003ced", "cast_id": 86, "profile_path": "/uMF0ZWcfE2GPFmADXD58iUuv6Ye.jpg", "order": 68}, {"name": "Rebeca Linares", "character": "Herself (Adult Film Clip)", "id": 132328, "credit_id": "5405e37fc3a368436600870d", "cast_id": 87, "profile_path": "/uEVrRa95iFfG7AhaAd6vNKnfsU6.jpg", "order": 69}, {"name": "Mia Malkova", "character": "Herself (Adult Film Clip)", "id": 1197172, "credit_id": "5405e38bc3a368068c0084ee", "cast_id": 88, "profile_path": "/fh0gtHmjm0gNtwMrgTvwILG561B.jpg", "order": 70}, {"name": "Jynx Maze", "character": "Herself (Adult Film Clip)", "id": 232271, "credit_id": "5405e395c3a368068c0084f1", "cast_id": 89, "profile_path": null, "order": 71}, {"name": "Dani Daniels", "character": "Herself (Adult Film Clip)", "id": 577492, "credit_id": "5405e3a3c3a36816af00392c", "cast_id": 90, "profile_path": "/zP4G5PeRk0HwcGFRmbVLjFCsUop.jpg", "order": 72}, {"name": "Isis Taylor", "character": "Herself (Adult Film Clip)", "id": 136791, "credit_id": "5405e3b0c3a368119c003cf2", "cast_id": 91, "profile_path": "/alRlMTs1X7XUd4nSP5Cbl5jfYOD.jpg", "order": 73}, {"name": "Bree Olson", "character": "Herself (Adult Film Clip)", "id": 132398, "credit_id": "5405e3bcc3a368119c003cf4", "cast_id": 92, "profile_path": "/53AyqMhJZPgk5KW0n0PUuEDVVIp.jpg", "order": 74}, {"name": "Selena Rose", "character": "Herself (Adult Film Clip)", "id": 136867, "credit_id": "5405e4590e0a2658de00d47d", "cast_id": 93, "profile_path": "/eL6FAo9Tv3WdgKCSvlmTwbrnWhz.jpg", "order": 75}, {"name": "Bree Daniels", "character": "Herself (Adult Film Clip)", "id": 591860, "credit_id": "5405e46d0e0a2658db00d160", "cast_id": 94, "profile_path": "/bL5ktDilduT0GxB2csT8HDyijm0.jpg", "order": 76}, {"name": "Gia Grace", "character": "Herself (Adult Film Clip)", "id": 1263089, "credit_id": "5405e4aa0e0a264b0900212d", "cast_id": 95, "profile_path": null, "order": 77}, {"name": "Missy Stone", "character": "Herself (Adult Film Clip)", "id": 139389, "credit_id": "5405e4b80e0a264d830020aa", "cast_id": 96, "profile_path": "/nCVktpQ5MLFieZMR8L2farnfiCw.jpg", "order": 78}, {"name": "Stoya", "character": "Herself (Adult Film Clip)", "id": 88229, "credit_id": "5405e4c00e0a2649e50021b2", "cast_id": 97, "profile_path": "/jECoyLfHFvZvul5cuAr0xDM2GDe.jpg", "order": 79}, {"name": "Mark Ashley", "character": "Himself (Adult Film Clip)", "id": 55682, "credit_id": "5405e4d20e0a264b09002134", "cast_id": 98, "profile_path": null, "order": 80}], "directors": [{"name": "Joseph Gordon-Levitt", "department": "Directing", "job": "Director", "credit_id": "52fe4c52c3a368484e1b2689", "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "id": 24045}], "vote_average": 6.1, "runtime": 90}, "155084": {"poster_path": "/uYPy89cVgvE1ic0bN39YJrumxwo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A bright but meek salesman, drowning in debt as he's about to get married, receives a mysterious phone call informing him that he's on a hidden camera game show where he must execute 13 tasks to receive a multi-million dollar cash prize.", "video": false, "id": 155084, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "13 Sins", "tagline": "You don't play the game. It plays you.", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2059171", "adult": false, "backdrop_path": "/qn7dV0tAGcH8NvUAUIwGmUGnMMw.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "IM Global", "id": 7437}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Little Magic Films", "id": 26470}, {"name": "Sahamongkol Film International", "id": 6018}, {"name": "Radius-TWC", "id": 20671}], "release_date": "2014-04-18", "popularity": 0.812777221393804, "original_title": "13 Sins", "budget": 5000000, "cast": [{"name": "Mark Webber", "character": "Elliot", "id": 4451, "credit_id": "52fe4b749251416c910dae07", "cast_id": 3, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 0}, {"name": "Devon Graye", "character": "Michael", "id": 111518, "credit_id": "52fe4b749251416c910dae23", "cast_id": 9, "profile_path": "/32DcMndRdSXybbbT1EWhlrYCu0Q.jpg", "order": 1}, {"name": "Rutina Wesley", "character": "Shelby", "id": 210773, "credit_id": "546deaa6c3a3685ab6001e5a", "cast_id": 42, "profile_path": "/ewT4aCJsXkfLg7e6IHZFHgIHcoV.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Det. Chilcoat", "id": 2372, "credit_id": "52fe4b749251416c910dae03", "cast_id": 2, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Pruitt Taylor Vince", "character": "Vogler", "id": 3201, "credit_id": "52fe4b749251416c910dae0b", "cast_id": 4, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 4}, {"name": "Brittney Alger", "character": "Nurse", "id": 1128522, "credit_id": "52fe4b749251416c910dae0f", "cast_id": 5, "profile_path": "/u1eKIGLkK2GTpqFArNxgAMTMhOj.jpg", "order": 5}, {"name": "Stephanie Honor\u00e9", "character": "Junkie Girl", "id": 94427, "credit_id": "52fe4b749251416c910dae27", "cast_id": 10, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 6}, {"name": "Christopher Berry", "character": "Detective Vance", "id": 1173099, "credit_id": "52fe4b749251416c910dae2b", "cast_id": 11, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 7}, {"name": "Tom Bower", "character": "Father", "id": 19453, "credit_id": "5387ea27c3a3681add003c42", "cast_id": 15, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 8}, {"name": "Clyde Jones", "character": "Gerry", "id": 108188, "credit_id": "5387ea37c3a3681ad7003d91", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Sharon Smith", "character": "Hostess", "id": 1336429, "credit_id": "53b3c246c3a3682edb008c06", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Ritchie Montgomery", "character": "Apartment Manager", "id": 52885, "credit_id": "53b3c26bc3a3682edf0087fd", "cast_id": 22, "profile_path": "/znNRxqrYkOskK3jlm3ftHyAzJDg.jpg", "order": 11}, {"name": "Sabrina Gennarino", "character": "Mother", "id": 133386, "credit_id": "53b3c2abc3a3682ed80088dc", "cast_id": 23, "profile_path": "/j2BOZDTXKIq49txsx92vCF5sCxg.jpg", "order": 12}, {"name": "John McConnell", "character": "Detective", "id": 16459, "credit_id": "53b3c2f9c3a3682ed80088e0", "cast_id": 24, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 13}, {"name": "Judd Lormand", "character": "Diner Cop", "id": 990136, "credit_id": "53b3c33fc3a3682edb008c22", "cast_id": 25, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 14}, {"name": "Lance E. Nichols", "character": "Police Captain", "id": 101847, "credit_id": "53b3c390c3a3682ee200904d", "cast_id": 26, "profile_path": "/zOaZTf9VpPutOxqXHnczoKKiALx.jpg", "order": 15}, {"name": "Danny Cosmo", "character": "Mr. Shaw", "id": 86278, "credit_id": "53b3c3f2c3a3682eea008c7e", "cast_id": 27, "profile_path": "/fP7gwFDo6xEP5tY3rbfbtXkrid1.jpg", "order": 16}], "directors": [{"name": "Daniel Stamm", "department": "Directing", "job": "Director", "credit_id": "52fe4b749251416c910dadff", "profile_path": null, "id": 120245}], "vote_average": 6.4, "runtime": 88}, "2637": {"poster_path": "/746O4Rn8TKRp2UZoenD4dgwmKMj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55157539, "overview": "Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.", "video": false, "id": 2637, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Mothman Prophecies", "tagline": "Based on true events", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265349", "adult": false, "backdrop_path": "/8AYqyt1Pp3Q0MPw2jVilSg7WnoY.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}], "release_date": "2002-01-25", "popularity": 0.509272321722098, "original_title": "The Mothman Prophecies", "budget": 32000000, "cast": [{"name": "Richard Gere", "character": "John Klein", "id": 1205, "credit_id": "52fe4361c3a36847f804fdf3", "cast_id": 1, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Laura Linney", "character": "Connie Mills", "id": 350, "credit_id": "52fe4361c3a36847f804fdf7", "cast_id": 2, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 1}, {"name": "Will Patton", "character": "Gordon Smallwood", "id": 883, "credit_id": "52fe4361c3a36847f804fdfb", "cast_id": 3, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 2}, {"name": "Bob Tracey", "character": "Cyrus Bills", "id": 27550, "credit_id": "52fe4361c3a36847f804fe35", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Debra Messing", "character": "Mary Klein", "id": 23959, "credit_id": "52fe4361c3a36847f804fe39", "cast_id": 14, "profile_path": "/d2LQbdccJbMSDC9Qm6vTn4qa0Ly.jpg", "order": 4}, {"name": "Tom Stoviak", "character": "Brian", "id": 27551, "credit_id": "52fe4361c3a36847f804fe3d", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "David Eigenberg", "character": "Ed Fleischman", "id": 27552, "credit_id": "52fe4361c3a36847f804fe41", "cast_id": 16, "profile_path": "/6In0iKsH6FRzZ5sCsUjAx4pwHJl.jpg", "order": 6}, {"name": "Bill Laing", "character": "Indrid Cold", "id": 27553, "credit_id": "52fe4361c3a36847f804fe45", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Alan Bates", "character": "Alexander Leek", "id": 27554, "credit_id": "52fe4361c3a36847f804fe49", "cast_id": 18, "profile_path": "/tXBtdL0JrFFMBP55fn3sh1z0WOG.jpg", "order": 8}, {"name": "Ron Emanuel", "character": "Washington Post Reporter", "id": 27681, "credit_id": "52fe4361c3a36847f804fe4d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Yvonne Erickson", "character": "Dr. McElroy", "id": 27682, "credit_id": "52fe4361c3a36847f804fe51", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Scott Nunnally", "character": "Orderly", "id": 27683, "credit_id": "52fe4361c3a36847f804fe55", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Harris Mackenzie", "character": "TV Journalist", "id": 27684, "credit_id": "52fe4361c3a36847f804fe59", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Zachary Mott", "character": "Otto", "id": 27685, "credit_id": "52fe4361c3a36847f804fe5d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Ann McDonough", "character": "Lucy Griffin", "id": 27686, "credit_id": "52fe4361c3a36847f804fe61", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Shane Callahan", "character": "Nat Griffin", "id": 27687, "credit_id": "52fe4361c3a36847f804fe65", "cast_id": 25, "profile_path": "/rYUkFvz1ZkR1xqWpAbIc7JTiUbw.jpg", "order": 15}, {"name": "Nesbitt Blaisdell", "character": "Chief Josh Jarrett", "id": 21152, "credit_id": "52fe4361c3a36847f804fe69", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Dan Callahan", "character": "C.J.", "id": 27688, "credit_id": "52fe4361c3a36847f804fe6d", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Christin Frame", "character": "Holly", "id": 27689, "credit_id": "52fe4361c3a36847f804fe71", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Rohn Thomas", "character": "Dr. Williams", "id": 27690, "credit_id": "52fe4361c3a36847f804fe75", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Susan Nicholas", "character": "Nachrichtensprecherin", "id": 27691, "credit_id": "52fe4361c3a36847f804fe79", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Tim Hartman", "character": "Sonny", "id": 27692, "credit_id": "52fe4361c3a36847f804fe7d", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Jennifer Martin", "character": "Coffee Shop Angestellte", "id": 27694, "credit_id": "52fe4361c3a36847f804fe81", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Mark Pellington", "character": "Barkeeper, Stimme von Indrid Cold", "id": 11676, "credit_id": "52fe4361c3a36847f804fe85", "cast_id": 33, "profile_path": "/7TR3DIbvsLKHrCkylSJgySGcs3Z.jpg", "order": 23}, {"name": "Murphy Dunne", "character": "Gov. Rob McCallum", "id": 7178, "credit_id": "52fe4361c3a36847f804fe89", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Pete Handelman", "character": "Helfer", "id": 27708, "credit_id": "52fe4361c3a36847f804fe8d", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Matt Miller", "character": "Helfer", "id": 27709, "credit_id": "52fe4361c3a36847f804fe91", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Josh Braun", "character": "Helfer", "id": 27710, "credit_id": "52fe4361c3a36847f804fe95", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Doug Korstanje", "character": "Nachrichtensprecher", "id": 27711, "credit_id": "52fe4361c3a36847f804fe99", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Betsy Zajko", "character": "Tory Pherris", "id": 27712, "credit_id": "52fe4361c3a36847f804fe9d", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Elizabeth Cazenave", "character": "Hotelpage", "id": 27713, "credit_id": "52fe4361c3a36847f804fea1", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Sam Nicotero", "character": "Mann auf Br\u00fccke", "id": 27714, "credit_id": "52fe4361c3a36847f804fea5", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Tom Tully", "character": "Motel Manager", "id": 97593, "credit_id": "52fe4361c3a36847f804fea9", "cast_id": 42, "profile_path": null, "order": 32}], "directors": [{"name": "Mark Pellington", "department": "Directing", "job": "Director", "credit_id": "52fe4361c3a36847f804fe01", "profile_path": "/7TR3DIbvsLKHrCkylSJgySGcs3Z.jpg", "id": 11676}], "vote_average": 6.2, "runtime": 119}, "1272": {"poster_path": "/upgi8oTlMthM9sweAyBoXqr8doZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32017803, "overview": "50 years from now the sun is dying and life on earth is threatened by arctic temperatures. Mankind puts together all its resources and sends a spaceship carrying a huge bomb designed to re-ignite the dying sun.", "video": false, "id": 1272, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Sunshine", "tagline": "If the sun dies, so do we.", "vote_count": 263, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0448134", "adult": false, "backdrop_path": "/eS7oirgHKzJ4lg7wOnVg8YPxs73.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "DNA Films", "id": 284}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2007-04-05", "popularity": 1.05125411815163, "original_title": "Sunshine", "budget": 50000000, "cast": [{"name": "Cillian Murphy", "character": "Capa", "id": 2037, "credit_id": "52fe42ecc3a36847f802d38b", "cast_id": 5, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Cassie", "id": 9827, "credit_id": "52fe42ecc3a36847f802d38f", "cast_id": 6, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Chris Evans", "character": "Mace", "id": 16828, "credit_id": "52fe42ecc3a36847f802d387", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Michelle Yeoh", "character": "Corazon", "id": 1620, "credit_id": "52fe42ecc3a36847f802d393", "cast_id": 7, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 3}, {"name": "Cliff Curtis", "character": "Searle", "id": 7248, "credit_id": "52fe42ecc3a36847f802d397", "cast_id": 8, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 4}, {"name": "Hiroyuki Sanada", "character": "Kaneda", "id": 9195, "credit_id": "52fe42ecc3a36847f802d39b", "cast_id": 9, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 5}, {"name": "Troy Garity", "character": "Harvey", "id": 31711, "credit_id": "52fe42ecc3a36847f802d39f", "cast_id": 10, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 6}, {"name": "Benedict Wong", "character": "Trey", "id": 30082, "credit_id": "52fe42ecc3a36847f802d3a3", "cast_id": 11, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 7}, {"name": "Mark Strong", "character": "Pinbacker", "id": 2983, "credit_id": "52fe42ecc3a36847f802d3a7", "cast_id": 12, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 8}, {"name": "Chipo Chung", "character": "Voice of Icarus", "id": 59151, "credit_id": "52fe42ecc3a36847f802d3ab", "cast_id": 13, "profile_path": "/qMWbTLIm53YE6GlD78OdboIACZF.jpg", "order": 9}, {"name": "Paloma Baeza", "character": "Capa's Sister", "id": 24618, "credit_id": "54b967539251414859001cc0", "cast_id": 25, "profile_path": "/qkctkDdjbDsFtxZY3moNf18lG7c.jpg", "order": 10}, {"name": "Archie Macdonald", "character": "Child", "id": 1414389, "credit_id": "54b96768c3a3686c6b005885", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d377", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.8, "runtime": 107}, "24021": {"poster_path": "/7UoOHjmRoOBGsm6k724IMq8saAo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300476779, "overview": "Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.", "video": false, "id": 24021, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: Eclipse", "tagline": "It all begins ... With a choice.", "vote_count": 631, "homepage": "http://eclipsethemovie.com", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1325004", "adult": false, "backdrop_path": "/lKCZYVQQb7Agw6WR25WvQBFKJmK.jpg", "production_companies": [{"name": "Sunswept Entertainment", "id": 5219}, {"name": "Summit Entertainment", "id": 491}, {"name": "Temple Hill Entertainment", "id": 12292}, {"name": "Maverick Films", "id": 4000}, {"name": "Imprint Entertainment", "id": 5218}], "release_date": "2010-06-23", "popularity": 1.43931235030561, "original_title": "The Twilight Saga: Eclipse", "budget": 65000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe447cc3a368484e025f85", "cast_id": 23, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe447dc3a368484e025f89", "cast_id": 24, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe447dc3a368484e025f8d", "cast_id": 25, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe447dc3a368484e025f91", "cast_id": 26, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 3}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe447dc3a368484e025f95", "cast_id": 27, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 4}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe447dc3a368484e025f99", "cast_id": 28, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 5}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe447dc3a368484e025f9d", "cast_id": 29, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 6}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe447dc3a368484e025fa1", "cast_id": 30, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 7}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe447dc3a368484e025fa5", "cast_id": 31, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 8}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe447dc3a368484e025fa9", "cast_id": 32, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 9}, {"name": "Gil Birmingham", "character": "Billy Black", "id": 84225, "credit_id": "52fe447dc3a368484e025fad", "cast_id": 33, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 10}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe447dc3a368484e025fb1", "cast_id": 34, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 11}, {"name": "Michael Welch", "character": "Mike Newton", "id": 56676, "credit_id": "52fe447dc3a368484e025fb5", "cast_id": 35, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 12}, {"name": "Christian Serratos", "character": "Angela Weber", "id": 84224, "credit_id": "52fe447dc3a368484e025fb9", "cast_id": 36, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 13}, {"name": "Bryce Dallas Howard", "character": "Victoria", "id": 18997, "credit_id": "52fe447dc3a368484e025fbd", "cast_id": 37, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 14}, {"name": "Justin Chon", "character": "Eric", "id": 65225, "credit_id": "52fe447dc3a368484e025fc1", "cast_id": 38, "profile_path": "/4hTyiQgqp6MZgFeW7DosqX4ifUK.jpg", "order": 15}, {"name": "Xavier Samuel", "character": "Riley", "id": 109438, "credit_id": "52fe447dc3a368484e025fc5", "cast_id": 39, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 16}, {"name": "Kirsten Prout", "character": "Lucy", "id": 60715, "credit_id": "52fe447dc3a368484e025fc9", "cast_id": 40, "profile_path": "/ohKIk8kA8TJoIfF2BNTPkgf4XEo.jpg", "order": 17}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe447dc3a368484e025fcd", "cast_id": 41, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 18}, {"name": "Sarah Clarke", "character": "Ren\u00e9e", "id": 25836, "credit_id": "52fe447dc3a368484e025fd1", "cast_id": 42, "profile_path": "/50umNQSJOGuz09Sb6R5BIRP5IoD.jpg", "order": 19}, {"name": "Cameron Bright", "character": "Alec", "id": 52414, "credit_id": "52fe447dc3a368484e025fd5", "cast_id": 43, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 20}, {"name": "Catalina Sandino Moreno", "character": "Maria", "id": 5887, "credit_id": "52fe447dc3a368484e025fd9", "cast_id": 44, "profile_path": "/6TsJDZOmhBxfTKFp6ldC68OW65n.jpg", "order": 21}, {"name": "Booboo Stewart", "character": "Seth", "id": 121868, "credit_id": "52fe447dc3a368484e025fdd", "cast_id": 45, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 22}, {"name": "Julia Jones", "character": "Leah", "id": 87310, "credit_id": "52fe447dc3a368484e025fe1", "cast_id": 46, "profile_path": "/jw08w0ySlHa5qmQWaNp2FLFeAEq.jpg", "order": 23}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe447dc3a368484e025fe5", "cast_id": 47, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 24}], "directors": [{"name": "David Slade", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a368484e025f4b", "profile_path": "/ksOn4mssJbmdBX1AvzZF4nCUAiQ.jpg", "id": 27571}], "vote_average": 5.7, "runtime": 124}, "44912": {"poster_path": "/zUSEYp9G7Hk9GZIfbPoOiSHvwHV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219851172, "overview": "For centuries, a small but powerful force of warriors called the Green Lantern Corps has sworn to keep intergalactic order. Each Green Lantern wears a ring that grants him superpowers. But when a new enemy called Parallax threatens to destroy the balance of power in the Universe, their fate and the fate of Earth lie in the hands of the first human ever recruited.", "video": false, "id": 44912, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Green Lantern", "tagline": "In our darkest hour, there will be light.", "vote_count": 994, "homepage": "http://greenlanternmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1133985", "adult": false, "backdrop_path": "/gulyiqtyuzFRJCnvNwD6Z786kQi.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2011-06-16", "popularity": 1.35410449843991, "original_title": "Green Lantern", "budget": 200000000, "cast": [{"name": "Ryan Reynolds", "character": "Hal Jordan / Green Lantern", "id": 10859, "credit_id": "52fe46a3c3a36847f8109e9d", "cast_id": 6, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Blake Lively", "character": "Carol Ferris", "id": 59175, "credit_id": "52fe46a3c3a36847f8109ea1", "cast_id": 7, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Hector Hammond", "id": 133, "credit_id": "52fe46a3c3a36847f8109ea5", "cast_id": 8, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Tim Robbins", "character": "Senator Hammond", "id": 504, "credit_id": "52fe46a3c3a36847f8109ea9", "cast_id": 9, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 3}, {"name": "Mark Strong", "character": "Sinestro", "id": 2983, "credit_id": "52fe46a3c3a36847f8109ead", "cast_id": 10, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Temuera Morrison", "character": "Abin Sur", "id": 7242, "credit_id": "52fe46a3c3a36847f8109eb1", "cast_id": 11, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 5}, {"name": "Jenna Craig", "character": "Carol Ferris at 11", "id": 109942, "credit_id": "52fe46a3c3a36847f8109eb5", "cast_id": 12, "profile_path": "/9420cGmShU7q6uOdsNJEs3owuy.jpg", "order": 6}, {"name": "Jon Tenney", "character": "Martin Jordan", "id": 4602, "credit_id": "52fe46a3c3a36847f8109eb9", "cast_id": 13, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 7}, {"name": "Mike Doyle", "character": "Jack Jordan", "id": 27107, "credit_id": "52fe46a3c3a36847f8109ebd", "cast_id": 14, "profile_path": "/lvts8lJTazcr8ipvPjjxCkpsuz9.jpg", "order": 8}, {"name": "NicK Jandl", "character": "Jim Jordan", "id": 147719, "credit_id": "52fe46a3c3a36847f8109ec1", "cast_id": 15, "profile_path": "/oVvs1izMeaJz6s0kkRf15oPdPtP.jpg", "order": 9}, {"name": "Dylan James", "character": "Jason Jordan", "id": 147720, "credit_id": "52fe46a3c3a36847f8109ec5", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Leanne Cochran", "character": "Janice Jordan", "id": 60887, "credit_id": "52fe46a3c3a36847f8109ec9", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Angela Bassett", "character": "Dr. Amanda Walker", "id": 9780, "credit_id": "52fe46a3c3a36847f8109ed9", "cast_id": 20, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 12}, {"name": "Taika Waititi", "character": "Tom Kalmaku", "id": 55934, "credit_id": "52fe46a3c3a36847f8109f19", "cast_id": 31, "profile_path": "/qFqOHyuFo1H0RuxQxI4leTZDClY.jpg", "order": 13}, {"name": "Michael Clarke Duncan", "character": "Kilowog (voice)", "id": 61981, "credit_id": "52fe46a3c3a36847f8109f1d", "cast_id": 32, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 14}, {"name": "Geoffrey Rush", "character": "Tomar-Re (voice)", "id": 118, "credit_id": "52fe46a3c3a36847f8109f21", "cast_id": 33, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 15}, {"name": "Clancy Brown", "character": "Parallax (voice)", "id": 6574, "credit_id": "52fe46a3c3a36847f8109f25", "cast_id": 34, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 16}, {"name": "Deke Anderson", "character": "Four Star General Caven", "id": 1195675, "credit_id": "54e8796ec3a3684ea6001187", "cast_id": 38, "profile_path": "/cRQAksi2LKMj6EvEySjDDtWSj19.jpg", "order": 17}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe46a3c3a36847f8109e99", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 5.2, "runtime": 114}, "114150": {"poster_path": "/qtKYrSlnrgLS7wrYvEbcxrtAAqa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113042075, "overview": "A comedy set in the middle of a war between rival a cappella groups and centered on a rebellious girl who joins one of the groups as an escape from her unhappy life at school.", "video": false, "id": 114150, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Pitch Perfect", "tagline": "Get Pitch Slapped", "vote_count": 657, "homepage": "http://www.pitchperfectmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 306031, "name": "Pitch Perfect Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1981677", "adult": false, "backdrop_path": "/vcLqVuSMx7dVfuOVKd4IL4RcMsa.jpg", "production_companies": [{"name": "Brownstone Productions", "id": 12365}], "release_date": "2012-09-28", "popularity": 2.70004964479442, "original_title": "Pitch Perfect", "budget": 17000000, "cast": [{"name": "Anna Kendrick", "character": "Beca", "id": 84223, "credit_id": "52fe4b46c3a36847f81fb7f7", "cast_id": 7, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "Skylar Astin", "character": "Jesse", "id": 73128, "credit_id": "52fe4b46c3a36847f81fb81f", "cast_id": 17, "profile_path": "/Aj1gqLbzKvcxE61RAR3456RPQ0V.jpg", "order": 1}, {"name": "Ben Platt", "character": "Benji", "id": 1107296, "credit_id": "52fe4b46c3a36847f81fb823", "cast_id": 18, "profile_path": null, "order": 2}, {"name": "Brittany Snow", "character": "Chloe", "id": 29221, "credit_id": "52fe4b46c3a36847f81fb7fb", "cast_id": 8, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 3}, {"name": "Anna Camp", "character": "Aubrey", "id": 221098, "credit_id": "52fe4b46c3a36847f81fb80b", "cast_id": 12, "profile_path": "/uQ8qyoTpgSfNPuzhSWJdiV9r32Y.jpg", "order": 4}, {"name": "Rebel Wilson", "character": "Fat Amy", "id": 221581, "credit_id": "52fe4b46c3a36847f81fb803", "cast_id": 10, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 5}, {"name": "Alexis Knapp", "character": "Stacie", "id": 999790, "credit_id": "52fe4b46c3a36847f81fb7f3", "cast_id": 6, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 6}, {"name": "Ester Dean", "character": "Cynthia Rose", "id": 1072572, "credit_id": "52fe4b46c3a36847f81fb827", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Hana Mae Lee", "character": "Lilly", "id": 1107297, "credit_id": "52fe4b46c3a36847f81fb82b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Kelley Jakle", "character": "Jessica (as Kelley Alice Jakle)", "id": 1107298, "credit_id": "52fe4b46c3a36847f81fb82f", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Wanetah Walmsley", "character": "Denise", "id": 550117, "credit_id": "52fe4b46c3a36847f81fb833", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Shelley Regner", "character": "Ashley", "id": 1107299, "credit_id": "52fe4b46c3a36847f81fb837", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Caroline Fourmy", "character": "Mary Elise", "id": 1107300, "credit_id": "52fe4b46c3a36847f81fb83b", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Nicole Lovince", "character": "Kori", "id": 1107301, "credit_id": "52fe4b46c3a36847f81fb83f", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Adam DeVine", "character": "Bumper", "id": 212604, "credit_id": "52fe4b46c3a36847f81fb807", "cast_id": 11, "profile_path": "/6qDsS9jcywuajS7gB8gLuQRJ7Um.jpg", "order": 14}, {"name": "Utkarsh Ambudkar", "character": "Donald", "id": 929511, "credit_id": "52fe4b46c3a36847f81fb843", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Michael Viruet", "character": "Unicycle", "id": 1107304, "credit_id": "52fe4b46c3a36847f81fb847", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "David Del Rio", "character": "Kolio", "id": 210389, "credit_id": "52fe4b46c3a36847f81fb84b", "cast_id": 28, "profile_path": "/sS5TuSejZqBaneaNjZ0eI0nL40d.jpg", "order": 17}, {"name": "Elizabeth Banks", "character": "Gail", "id": 9281, "credit_id": "52fe4b46c3a36847f81fb81b", "cast_id": 16, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 18}, {"name": "John Michael Higgins", "character": "John", "id": 8265, "credit_id": "52fe4b46c3a36847f81fb817", "cast_id": 15, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 19}, {"name": "John Benjamin Hickey", "character": "Dr. Mitchell", "id": 21179, "credit_id": "52fe4b46c3a36847f81fb84f", "cast_id": 29, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 20}, {"name": "Freddie Stroma", "character": "Luke", "id": 234934, "credit_id": "52fe4b46c3a36847f81fb80f", "cast_id": 13, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 21}, {"name": "Jinhee Joung", "character": "Kimmy Jin", "id": 1107305, "credit_id": "52fe4b46c3a36847f81fb853", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Jacob Wysocki", "character": "Justin", "id": 145131, "credit_id": "52fe4b46c3a36847f81fb813", "cast_id": 14, "profile_path": "/hCSwRS4cudr3kHgsSKoAvPYCszT.jpg", "order": 23}, {"name": "Jawan Harris", "character": "Timothy", "id": 1347277, "credit_id": "53d73379c3a3683a0e000abf", "cast_id": 46, "profile_path": null, "order": 24}, {"name": "Richard Kohnke", "character": "Football Player - ATO", "id": 1188269, "credit_id": "53d733c00e0a260340000eb3", "cast_id": 47, "profile_path": "/6zRezgomOpsnGyuyf806XEFpWdx.jpg", "order": 25}, {"name": "Scott Shilstone", "character": "Frat Boy - ATO", "id": 1347281, "credit_id": "53d733eb0e0a260337000e5d", "cast_id": 48, "profile_path": null, "order": 26}, {"name": "Brock Kelly", "character": "Howie - ATO", "id": 205308, "credit_id": "53d7340f0e0a26033a000e83", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Drew Battles", "character": "Emcee at Regionals", "id": 144843, "credit_id": "53d7345d0e0a260331000ec9", "cast_id": 50, "profile_path": null, "order": 28}, {"name": "Katrina Despain", "character": "UMass Greeter", "id": 1347282, "credit_id": "53d734850e0a260344000e38", "cast_id": 51, "profile_path": null, "order": 29}, {"name": "Cameron Deane Stewart", "character": "Tom (as Cameron Stewart)", "id": 1108829, "credit_id": "53d734af0e0a26033a000ea1", "cast_id": 52, "profile_path": "/shcwxi4AVFyXZSQSBKUjvfY1rTq.jpg", "order": 30}, {"name": "Kether Donohue", "character": "Alice", "id": 588972, "credit_id": "53d734ce0e0a260340000ee4", "cast_id": 53, "profile_path": "/v2wtqKngHKHzeASddJWpFShWVtq.jpg", "order": 31}, {"name": "Karen Gonzales", "character": "Barb", "id": 1347283, "credit_id": "53d734db0e0a26033a000ea8", "cast_id": 54, "profile_path": null, "order": 32}, {"name": "Lauren Gros", "character": "RIAC Representative #1", "id": 1347284, "credit_id": "53d735350e0a260334000e67", "cast_id": 55, "profile_path": null, "order": 33}, {"name": "Alex Biglane", "character": "RIAC Representative #2", "id": 1347285, "credit_id": "53d735460e0a260331000ee5", "cast_id": 56, "profile_path": null, "order": 34}, {"name": "Michael Alexander", "character": "Jewish Student", "id": 1347286, "credit_id": "53d7355c0e0a260344000e6a", "cast_id": 57, "profile_path": null, "order": 35}, {"name": "Tyler Forrest", "character": "High Note #1", "id": 1265767, "credit_id": "53d73582c3a3683a31000adf", "cast_id": 58, "profile_path": null, "order": 36}, {"name": "Joe Lo Truglio", "character": "Clef #1", "id": 21131, "credit_id": "52fe4b46c3a36847f81fb857", "cast_id": 31, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 37}, {"name": "Har Mar Superstar", "character": "Clef #2", "id": 1107306, "credit_id": "52fe4b46c3a36847f81fb85b", "cast_id": 32, "profile_path": null, "order": 38}, {"name": "Jason Jones", "character": "Clef #3", "id": 185805, "credit_id": "52fe4b46c3a36847f81fb85f", "cast_id": 33, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 39}, {"name": "Donald Faison", "character": "Clef #4", "id": 49002, "credit_id": "52fe4b46c3a36847f81fb863", "cast_id": 34, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 40}, {"name": "Jabari Thomas", "character": "Emcee - Opening", "id": 109790, "credit_id": "53d73623c3a3683a1c000b4e", "cast_id": 59, "profile_path": null, "order": 41}, {"name": "Judd Lormand", "character": "Emcee at Semi-Finals", "id": 990136, "credit_id": "53d7364ec3a3683a25000b25", "cast_id": 60, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 42}, {"name": "Christopher Mintz-Plasse", "character": "Tommy", "id": 54691, "credit_id": "52fe4b46c3a36847f81fb7ff", "cast_id": 9, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 43}, {"name": "Steven Bailey", "character": "Treble #1", "id": 1347288, "credit_id": "53d7369bc3a3683a16000a74", "cast_id": 61, "profile_path": null, "order": 44}, {"name": "Michael Anaya", "character": "Treble #2", "id": 1347289, "credit_id": "53d736a8c3a3683a12000af4", "cast_id": 62, "profile_path": null, "order": 45}, {"name": "Gregory Gorenc", "character": "Treble #3", "id": 1347290, "credit_id": "53d736b4c3a3683a31000af7", "cast_id": 63, "profile_path": null, "order": 46}, {"name": "Brian Silver", "character": "Treble #4", "id": 1347291, "credit_id": "53d736c1c3a3683a1c000b5d", "cast_id": 64, "profile_path": null, "order": 47}, {"name": "Wes Lagarde", "character": "Treble #5", "id": 1347292, "credit_id": "53d736d2c3a3683a25000b32", "cast_id": 65, "profile_path": null, "order": 48}, {"name": "Jonathan Brannan", "character": "Opening Treble #1", "id": 1347293, "credit_id": "53d736ebc3a3683a20000ab0", "cast_id": 66, "profile_path": null, "order": 49}, {"name": "Donald Watkins", "character": "Opening Treble #2", "id": 1347294, "credit_id": "53d736f8c3a3683a2b000b7f", "cast_id": 67, "profile_path": null, "order": 50}, {"name": "Jessica Jain", "character": "High Note #2", "id": 1347295, "credit_id": "53d73707c3a3683a0e000b12", "cast_id": 68, "profile_path": null, "order": 51}, {"name": "Nate Howard", "character": "High Note #7", "id": 1347296, "credit_id": "53d73715c3a3683a31000b12", "cast_id": 69, "profile_path": null, "order": 52}, {"name": "Ben Haist", "character": "BU Harmonics #1", "id": 1347297, "credit_id": "53d73743c3a3683a12000b04", "cast_id": 70, "profile_path": null, "order": 53}, {"name": "Rose Davis", "character": "BU Harmonics #2", "id": 1347298, "credit_id": "53d7374dc3a3683a20000abe", "cast_id": 71, "profile_path": null, "order": 54}, {"name": "Chiara Pittman", "character": "BU Harmonics #3", "id": 1347299, "credit_id": "53d7375cc3a3683a0e000b23", "cast_id": 72, "profile_path": null, "order": 55}, {"name": "Emma Graves", "character": "BU Harmonics #4", "id": 1347300, "credit_id": "53d73766c3a3683a12000b0f", "cast_id": 73, "profile_path": null, "order": 56}, {"name": "Emily Rodriguez", "character": "BU Harmonics #5", "id": 1347301, "credit_id": "53d73773c3a3683a20000aca", "cast_id": 74, "profile_path": null, "order": 57}, {"name": "Sawyer McLeod", "character": "BU Harmonics #6", "id": 1347302, "credit_id": "53d73789c3a3683a12000b18", "cast_id": 75, "profile_path": null, "order": 58}, {"name": "Chase Cooksey", "character": "BU Harmonics #7", "id": 1347303, "credit_id": "53d73791c3a3683a25000b3d", "cast_id": 76, "profile_path": null, "order": 59}, {"name": "Adam Gilbert", "character": "BU Harmonics #8", "id": 1347304, "credit_id": "53d7379ec3a3683a1c000b7e", "cast_id": 77, "profile_path": null, "order": 60}, {"name": "Megan Dupre", "character": "Opening Bellas #1", "id": 1347305, "credit_id": "53d737b5c3a3683a16000a9b", "cast_id": 78, "profile_path": null, "order": 61}, {"name": "Brittney Alger", "character": "Opening Bellas #2", "id": 1347306, "credit_id": "53d737bfc3a3683a20000ad7", "cast_id": 79, "profile_path": null, "order": 62}, {"name": "Monika Guiberteau", "character": "Opening Bellas #3", "id": 1347307, "credit_id": "53d737d2c3a3683a2b000b9b", "cast_id": 80, "profile_path": null, "order": 63}, {"name": "Jessica Poumaroux", "character": "Opening Bellas #3", "id": 1347309, "credit_id": "53d7384ac3a3683a1c000b9f", "cast_id": 81, "profile_path": null, "order": 64}, {"name": "Jackie Tuttle", "character": "Opening Bellas #5", "id": 1347310, "credit_id": "53d73856c3a3683a12000b2e", "cast_id": 82, "profile_path": null, "order": 65}, {"name": "Elizabeth Chance", "character": "Opening Bellas #6", "id": 1347311, "credit_id": "53d73862c3a3683a25000b56", "cast_id": 83, "profile_path": null, "order": 66}, {"name": "Margo Melancon", "character": "Opening Bellas #7", "id": 1347312, "credit_id": "53d7386dc3a3683a0e000b3f", "cast_id": 84, "profile_path": null, "order": 67}, {"name": "Brooke Fontenot", "character": "Opening Bellas #8", "id": 1347313, "credit_id": "53d73878c3a3683a1c000bae", "cast_id": 85, "profile_path": null, "order": 68}, {"name": "C.J. Perry", "character": "Opening Bellas #9 / Footnote #5", "id": 1347314, "credit_id": "53d738a9c3a3683a20000b05", "cast_id": 86, "profile_path": null, "order": 69}, {"name": "Maya Estephanos", "character": "Sockapella #1", "id": 1347316, "credit_id": "53d738d2c3a3683a31000b48", "cast_id": 87, "profile_path": null, "order": 70}, {"name": "Brian Mason", "character": "Sockapella #2", "id": 1290615, "credit_id": "53d738f0c3a3683a31000b4d", "cast_id": 88, "profile_path": null, "order": 71}, {"name": "Xavier Joe Wilcher", "character": "Sockapella #3", "id": 1347318, "credit_id": "53d738fdc3a3683a25000b70", "cast_id": 89, "profile_path": null, "order": 72}, {"name": "Julia Friedman", "character": "Sockapella #4", "id": 1347319, "credit_id": "53d73913c3a3683a12000b50", "cast_id": 90, "profile_path": null, "order": 73}, {"name": "Esther Long", "character": "Sockapella #5", "id": 1347320, "credit_id": "53d7392ec3a3683a25000b7b", "cast_id": 91, "profile_path": null, "order": 74}, {"name": "Aakomon Jones", "character": "Sockapella #6", "id": 1347321, "credit_id": "53d7393ac3a3683a25000b81", "cast_id": 92, "profile_path": null, "order": 75}, {"name": "Sora Connor", "character": "Footnote #2", "id": 1290572, "credit_id": "53d73958c3a3683a25000b8e", "cast_id": 93, "profile_path": null, "order": 76}, {"name": "Elise Wilson", "character": "Footnote #3", "id": 1347322, "credit_id": "53d7396cc3a3683a20000b23", "cast_id": 94, "profile_path": null, "order": 77}, {"name": "Sean Bankhead", "character": "Footnote #4", "id": 1290585, "credit_id": "53d73982c3a3683a20000b29", "cast_id": 95, "profile_path": null, "order": 78}, {"name": "Matthew Laraway", "character": "Footnote #6", "id": 1290642, "credit_id": "53d739cbc3a3683a12000b6d", "cast_id": 96, "profile_path": null, "order": 79}, {"name": "Madison Benson", "character": "Footnote #7", "id": 1290569, "credit_id": "53d739d5c3a3683a16000af2", "cast_id": 97, "profile_path": null, "order": 80}, {"name": "Kenneth Tipton", "character": "Footnote #8", "id": 1347326, "credit_id": "53d739e0c3a3683a1c000bd7", "cast_id": 98, "profile_path": null, "order": 81}, {"name": "Jeremy Strong", "character": "Footnote #9", "id": 1347327, "credit_id": "53d739fcc3a3683a0e000b78", "cast_id": 99, "profile_path": null, "order": 82}, {"name": "Dylan Cheek", "character": "Footnote #10", "id": 1347328, "credit_id": "53d73a05c3a3683a2b000bdb", "cast_id": 100, "profile_path": null, "order": 83}, {"name": "Naeemah McCowan", "character": "Footnote #11", "id": 1347329, "credit_id": "53d73a13c3a3683a20000b39", "cast_id": 101, "profile_path": null, "order": 84}, {"name": "Allison Sahonic", "character": "Footnote #12", "id": 1347330, "credit_id": "53d73a1fc3a3683a0e000b80", "cast_id": 102, "profile_path": null, "order": 85}, {"name": "Codie L. Wiggins", "character": "Footnote #13", "id": 1347331, "credit_id": "53d73a2cc3a3683a1c000bec", "cast_id": 103, "profile_path": null, "order": 86}, {"name": "Kelly Snow", "character": "Hullabahoo #1", "id": 1347332, "credit_id": "53d73a630e0a260334000f13", "cast_id": 104, "profile_path": null, "order": 87}, {"name": "Nathan Swedberg", "character": "Hullabahoo #2", "id": 1347333, "credit_id": "53d73a720e0a260334000f19", "cast_id": 105, "profile_path": null, "order": 88}, {"name": "Matthew Savarese", "character": "Hullabahoo #3", "id": 1347334, "credit_id": "53d73a840e0a260337000f14", "cast_id": 106, "profile_path": null, "order": 89}, {"name": "Sanford Williams", "character": "Hullabahoo #4", "id": 1347335, "credit_id": "53d73a900e0a260340000f8d", "cast_id": 107, "profile_path": null, "order": 90}, {"name": "Charles Miller", "character": "Hullabahoo #5", "id": 1347336, "credit_id": "53d73abe0e0a260347000eff", "cast_id": 108, "profile_path": null, "order": 91}, {"name": "Brandon Borror-Chappell", "character": "Hullabahoo #6", "id": 1347337, "credit_id": "53d73ad40e0a260334000f32", "cast_id": 109, "profile_path": null, "order": 92}, {"name": "Sean McDonald", "character": "Hullabahoo #7", "id": 1347339, "credit_id": "53d73ae70e0a260344000f15", "cast_id": 110, "profile_path": null, "order": 93}, {"name": "Nicholas Cafero", "character": "Hullabahoo #8", "id": 1347340, "credit_id": "53d73af20e0a260337000f26", "cast_id": 111, "profile_path": null, "order": 94}, {"name": "Alexander Fabian", "character": "Hullabahoo #9", "id": 1347341, "credit_id": "53d73afd0e0a260334000f3b", "cast_id": 112, "profile_path": null, "order": 95}, {"name": "Paul Ruess", "character": "Hullabahoo #10", "id": 1347342, "credit_id": "53d73b210e0a260347000f0d", "cast_id": 113, "profile_path": null, "order": 96}, {"name": "Andrew O'Shanick", "character": "Hullabahoo #11", "id": 1347343, "credit_id": "53d73b2f0e0a26033a000f7c", "cast_id": 114, "profile_path": null, "order": 97}, {"name": "Samuel Brennan", "character": "Hullabahoo #12", "id": 1347344, "credit_id": "53d73b3f0e0a260337000f38", "cast_id": 115, "profile_path": null, "order": 98}, {"name": "Thaddeus Potter", "character": "Hullabahoo #13", "id": 1347345, "credit_id": "53d73b490e0a260334000f49", "cast_id": 116, "profile_path": null, "order": 99}, {"name": "Jacob Mainwaring", "character": "Hullabahoo #14", "id": 1347346, "credit_id": "53d73b560e0a260331000f98", "cast_id": 117, "profile_path": null, "order": 100}, {"name": "Alexander Sneider", "character": "Hullabahoo #15", "id": 1347347, "credit_id": "53d73b620e0a260337000f3f", "cast_id": 118, "profile_path": null, "order": 101}, {"name": "William Laverack", "character": "Hullabahoo #16", "id": 1347348, "credit_id": "53d73b7f0e0a260340000fc1", "cast_id": 119, "profile_path": null, "order": 102}, {"name": "Renaldo McClinton", "character": "Rapper #1", "id": 1347349, "credit_id": "53d73b8c0e0a260334000f57", "cast_id": 120, "profile_path": null, "order": 103}, {"name": "Richard Coleman", "character": "ND Auditioner #1", "id": 1347350, "credit_id": "53d73bca0e0a260337000f51", "cast_id": 121, "profile_path": null, "order": 104}, {"name": "Margaret Osburn", "character": "ND Auditioner #2", "id": 1347352, "credit_id": "53d73bd90e0a260331000fb4", "cast_id": 122, "profile_path": null, "order": 105}, {"name": "Dan Iwrey", "character": "ND Auditioner #3", "id": 1347354, "credit_id": "53d73bea0e0a260347000f25", "cast_id": 123, "profile_path": null, "order": 106}, {"name": "Ali Bloomston", "character": "ND Auditioner #4", "id": 1347355, "credit_id": "53d73bf40e0a26033a000f9a", "cast_id": 124, "profile_path": null, "order": 107}, {"name": "Shawn Barry", "character": "ND Auditioner #5", "id": 1347356, "credit_id": "53d73bfe0e0a260340000fd2", "cast_id": 125, "profile_path": null, "order": 108}, {"name": "Alexandra Weinroth", "character": "ND Auditioner #6", "id": 1347357, "credit_id": "53d73c170e0a260344000f47", "cast_id": 126, "profile_path": null, "order": 109}, {"name": "Ciera Dawn Washington", "character": "ND Auditioner #7", "id": 1347358, "credit_id": "53d73c310e0a260337000f65", "cast_id": 127, "profile_path": null, "order": 110}, {"name": "Felipe Fuentes", "character": "ND Auditioner #9", "id": 1347360, "credit_id": "53d73c490e0a26033a000fa9", "cast_id": 128, "profile_path": null, "order": 111}, {"name": "Glen Aucoin", "character": "Beatboxer", "id": 1347362, "credit_id": "53d73c640e0a260331000fd4", "cast_id": 129, "profile_path": null, "order": 112}, {"name": "Deke Sharon", "character": "Male Voice #1", "id": 1347364, "credit_id": "53d73c6f0e0a260340000fe3", "cast_id": 130, "profile_path": null, "order": 113}, {"name": "Ed Boyer", "character": "Male Voice #2", "id": 1347366, "credit_id": "53d73c820e0a260347000f42", "cast_id": 131, "profile_path": null, "order": 114}, {"name": "Brandon Kitchel", "character": "Male Voice #3", "id": 1347367, "credit_id": "53d73c8c0e0a26033a000fb7", "cast_id": 132, "profile_path": null, "order": 115}, {"name": "Jasper Randall", "character": "Male Voice #4", "id": 1347368, "credit_id": "53d73cc3c3a3683a16000b2b", "cast_id": 133, "profile_path": null, "order": 116}, {"name": "Drew Seeley", "character": "Male Voice #5", "id": 1347369, "credit_id": "53d73cdfc3a3683a31000bae", "cast_id": 134, "profile_path": null, "order": 117}, {"name": "Jeff Lewis", "character": "Male Voice #6", "id": 1347370, "credit_id": "53d73d0ac3a3683a16000b32", "cast_id": 135, "profile_path": null, "order": 118}, {"name": "Laura Dickinson", "character": "Female Voice #1", "id": 1347371, "credit_id": "53d73d3cc3a3683a31000bb7", "cast_id": 136, "profile_path": null, "order": 119}, {"name": "Candice Helfand", "character": "Female Voice #2", "id": 1347372, "credit_id": "53d73d60c3a3683a31000bbf", "cast_id": 137, "profile_path": null, "order": 120}, {"name": "Windy Wagner", "character": "Female Voice #3", "id": 1347373, "credit_id": "53d73d82c3a3683a31000bc6", "cast_id": 138, "profile_path": null, "order": 121}, {"name": "Jessica Rotter", "character": "Female Voice #4", "id": 1347374, "credit_id": "53d73d8bc3a3683a31000bcb", "cast_id": 139, "profile_path": null, "order": 122}, {"name": "Kari Kimmel", "character": "Female Voice #5", "id": 1347375, "credit_id": "53d73d95c3a3683a1c000c2b", "cast_id": 140, "profile_path": null, "order": 123}, {"name": "Kala Balch", "character": "Female Voice #6", "id": 1347376, "credit_id": "53d73da5c3a3683a1c000c30", "cast_id": 141, "profile_path": null, "order": 124}, {"name": "Emily Benford", "character": "Female Voice #7", "id": 1347377, "credit_id": "53d73ddcc3a3683a31000bd6", "cast_id": 142, "profile_path": null, "order": 125}], "directors": [{"name": "Jason Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4b46c3a36847f81fb7d7", "profile_path": "/5zNb9ZYiFa9dHrDfw1koDZRW6xt.jpg", "id": 168667}], "vote_average": 6.9, "runtime": 112}, "174675": {"poster_path": "/smbzmGrpVNiZWyHHazrCDihjloV.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Already deep into a second Cold War, Britain\u2019s Ministry of Defense seeks a game-changing weapon. Programmer Vincent McCarthy unwittingly provides an answer in The Machine, a super-strong human cyborg. When a programming bug causes the prototype to decimate his lab, McCarthy takes his obsessive efforts underground, far away from inquisitive eyes.", "video": false, "id": 174675, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Machine", "tagline": "They Rise. We Fall.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2317225", "adult": false, "backdrop_path": "/fBzNahBViD372cX8ptg2e4COCOp.jpg", "production_companies": [{"name": "Red & Black Films", "id": 21621}], "release_date": "2013-04-25", "popularity": 0.415490205678561, "original_title": "The Machine", "budget": 0, "cast": [{"name": "Caity Lotz", "character": "Ava", "id": 1046143, "credit_id": "52fe4d4fc3a36847f825a1c1", "cast_id": 3, "profile_path": "/j9iU6kRDaKe08084hSFt1FZXIvr.jpg", "order": 0}, {"name": "Toby Stephens", "character": "Vincent", "id": 10881, "credit_id": "52fe4d4fc3a36847f825a1c5", "cast_id": 4, "profile_path": "/zZAbK5QVmZSqZzAe16mXWzgjrSs.jpg", "order": 1}, {"name": "Denis Lawson", "character": "Thomson", "id": 47698, "credit_id": "52fe4d4fc3a36847f825a1c9", "cast_id": 5, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 2}, {"name": "Lee Nicholas Harris", "character": "Implant Soldier Harris", "id": 578690, "credit_id": "52fe4d4fc3a36847f825a1cd", "cast_id": 6, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 3}, {"name": "Sam Hazeldine", "character": "James", "id": 563559, "credit_id": "52fe4d4fc3a36847f825a1d1", "cast_id": 7, "profile_path": "/12ev9KVmZ1xF4FNeZFGYRHjvJkQ.jpg", "order": 4}, {"name": "Sule Rimi", "character": "Dr. Giwa-Amu", "id": 1211217, "credit_id": "52fe4d4fc3a36847f825a1d9", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Stuart Matthews", "character": "Scientist/ Soldier", "id": 1295992, "credit_id": "532c7c14c3a3686eec000354", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Pooneh Hajimohammadi", "character": "Suri", "id": 1303070, "credit_id": "532c7c22c3a3686ef800034a", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Jonathan Byrne", "character": "Tim", "id": 1036762, "credit_id": "532c7c32c3a3686eec000357", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Jade Croot", "character": "Mary", "id": 1303071, "credit_id": "532c7c44c3a3686ee500032c", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Helen Griffin", "character": "Mrs. Dawson", "id": 218330, "credit_id": "5337c8ffc3a3680e76002d12", "cast_id": 14, "profile_path": "/ewsVkKwhumtOsuSDNB2NncNoI4U.jpg", "order": 11}, {"name": "Siwan Morris", "character": "Lucy", "id": 1221038, "credit_id": "53b9e4b4c3a3685ea8006125", "cast_id": 26, "profile_path": "/q6qYy0y82KYi3QbnFgx19o3YAkh.jpg", "order": 12}], "directors": [{"name": "Caradog W. James", "department": "Directing", "job": "Director", "credit_id": "52fe4d4fc3a36847f825a1b7", "profile_path": "/v4mbw7W5rqcNDWuDNBaIN1nVyT3.jpg", "id": 1211216}], "vote_average": 5.7, "runtime": 92}, "9470": {"poster_path": "/dZsfDrNLGWgsIUQL1vGhl8tbnqY.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 100914445, "overview": "In Shanghai, China in the 1940s, a wannabe gangster aspires to join the notorious \"Axe Gang\" while residents of a housing complex exhibit extraordinary powers in defending their turf.", "video": false, "id": 9470, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}], "title": "Kung Fu Hustle", "tagline": "From walking disaster to kung fu master.", "vote_count": 307, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0373074", "adult": false, "backdrop_path": "/qpJWj6MI6VLRt9bGbJVZtmFvqWw.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Beijing Film Studio", "id": 708}, {"name": "Columbia Pictures Film Production Asia", "id": 2798}, {"name": "Star Overseas", "id": 3477}], "release_date": "2004-12-20", "popularity": 0.442611691803797, "original_title": "Gong Fu", "budget": 20000000, "cast": [{"name": "Stephen Chow", "character": "Sing", "id": 57607, "credit_id": "52fe44fbc3a36847f80b5b1d", "cast_id": 24, "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "order": 0}, {"name": "Yuen Wah", "character": "Landlord", "id": 57609, "credit_id": "52fe44fbc3a36847f80b5acb", "cast_id": 3, "profile_path": "/dz71IIr8cfECAOD3KFosz8aj15T.jpg", "order": 1}, {"name": "Yuen Qiu", "character": "Landlady", "id": 119426, "credit_id": "52fe44fbc3a36847f80b5b47", "cast_id": 32, "profile_path": "/yhoYlv4ZdSEcUQ2leZErKpqX1mA.jpg", "order": 2}, {"name": "Lam Tze-Chung", "character": "Sing's sidekick", "id": 545277, "credit_id": "52fe44fbc3a36847f80b5b43", "cast_id": 31, "profile_path": "/pP2Y4dTsRKUgPe9NjYG3quTwLaK.jpg", "order": 3}, {"name": "Huang Sheng-Yi", "character": "Fong", "id": 83635, "credit_id": "52fe44fbc3a36847f80b5b21", "cast_id": 25, "profile_path": "/9Gl4V0Nx6VqBAwmuVK5UsR8vDov.jpg", "order": 4}, {"name": "Dung Chi-Wa", "character": "Donut - Hexagonal Staff", "id": 1173200, "credit_id": "52fe44fbc3a36847f80b5b4b", "cast_id": 33, "profile_path": "/eehPAUdsTivKZTkhyu9VMDH83LQ.jpg", "order": 5}, {"name": "Chiu Chi-Ling", "character": "Tailor", "id": 1173216, "credit_id": "52fe44fbc3a36847f80b5b4f", "cast_id": 34, "profile_path": "/gAaJuDds7Bh02ovw9gsCbWcvseH.jpg", "order": 6}, {"name": "Xing Yu", "character": "Coolie - 12 Kicks of Tam School", "id": 78878, "credit_id": "52fe44fbc3a36847f80b5b53", "cast_id": 35, "profile_path": "/thV1sYGuyGe2DJhOJzxjZCiJDlx.jpg", "order": 7}, {"name": "Danny Chan Kwok-Kwan", "character": "Brother Sum", "id": 1173223, "credit_id": "52fe44fbc3a36847f80b5b57", "cast_id": 36, "profile_path": "/lo1Rh5BoWAsXv8xWP5sfZhLMavh.jpg", "order": 8}, {"name": "Bruce Leung Siu-Lung", "character": "The Beast", "id": 576408, "credit_id": "52fe44fbc3a36847f80b5b5b", "cast_id": 37, "profile_path": "/3igH7CvLLYyXWaJ3NmsmFYPMsvK.jpg", "order": 9}, {"name": "Tenky Tin Kai-Man", "character": "Axe Gang Advisor", "id": 1136808, "credit_id": "52fe44fbc3a36847f80b5b5f", "cast_id": 38, "profile_path": "/lCcreZ88cFxhUgw0O7bVwdZc0zY.jpg", "order": 10}, {"name": "Jia Kang-Xi", "character": "Harpist Assassin # 1", "id": 1173224, "credit_id": "52fe44fbc3a36847f80b5b63", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Fung Hak-On", "character": "Harpist Assassin # 2", "id": 118745, "credit_id": "52fe44fbc3a36847f80b5b6f", "cast_id": 43, "profile_path": "/8ATQ99ZfDKP9cFUHnoxqeQtALzZ.jpg", "order": 12}, {"name": "Lam Suet", "character": "Axe Gang Vice General", "id": 25251, "credit_id": "52fe44fbc3a36847f80b5b67", "cast_id": 41, "profile_path": "/lncRaBwS0ok9PZNHkxz5UhANouT.jpg", "order": 13}, {"name": "Yuen Cheung-Yan", "character": "Beggar", "id": 65975, "credit_id": "52fe44fbc3a36847f80b5b6b", "cast_id": 42, "profile_path": "/4W2c9r7YLsfYjCdaPLoQQj1pAMu.jpg", "order": 15}, {"name": "Feng Xiaogang", "character": "Crocodile Gang Boss", "id": 1287732, "credit_id": "5305f90092514134971f79a7", "cast_id": 44, "profile_path": "/oC7nkf7JaPbJJuEwldVtKFvMyuI.jpg", "order": 16}], "directors": [{"name": "Stephen Chow", "department": "Directing", "job": "Director", "credit_id": "52fe44fbc3a36847f80b5b3f", "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "id": 57607}], "vote_average": 7.0, "runtime": 99}, "4347": {"poster_path": "/quaWuwYZd8IbZMCOhW3CZEvyCWJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129266061, "overview": "Fledgling writer Briony Tallis, as a 13-year-old, irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit. Based on the British romance novel by Ian McEwan.", "video": false, "id": 4347, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Atonement", "tagline": "Torn apart by betrayal. Separated by war. Bound by love.", "vote_count": 217, "homepage": "http://www.atonementthemovie.co.uk/site/site.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0783233", "adult": false, "backdrop_path": "/98jCUTFnZdQfICBsi9dZXcIEi8L.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2007-08-29", "popularity": 1.38070096717538, "original_title": "Atonement", "budget": 30000000, "cast": [{"name": "Keira Knightley", "character": "Cecilia Tallis", "id": 116, "credit_id": "52fe43bbc3a36847f806b5b1", "cast_id": 11, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "James McAvoy", "character": "Robbie Turner", "id": 5530, "credit_id": "52fe43bbc3a36847f806b5b5", "cast_id": 12, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Romola Garai", "character": "Briony- 18 years old", "id": 6979, "credit_id": "52fe43bbc3a36847f806b5b9", "cast_id": 13, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 2}, {"name": "Saoirse Ronan", "character": "Briony Tallis- Age 13", "id": 36592, "credit_id": "52fe43bbc3a36847f806b5bd", "cast_id": 14, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 3}, {"name": "Brenda Blethyn", "character": "Grace Turner", "id": 4154, "credit_id": "52fe43bbc3a36847f806b5c1", "cast_id": 15, "profile_path": "/wp0tIM7dGDmc9TOrm9fgL7JkzQQ.jpg", "order": 4}, {"name": "Vanessa Redgrave", "character": "older Briony", "id": 13333, "credit_id": "52fe43bbc3a36847f806b5c5", "cast_id": 16, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 5}, {"name": "Juno Temple", "character": "Lola", "id": 36594, "credit_id": "52fe43bbc3a36847f806b5c9", "cast_id": 17, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 6}, {"name": "Benedict Cumberbatch", "character": "Paul Marshall", "id": 71580, "credit_id": "52fe43bbc3a36847f806b5d3", "cast_id": 19, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 7}, {"name": "Harriet Walter", "character": "Emily Tallis", "id": 17477, "credit_id": "52fe43bbc3a36847f806b5d7", "cast_id": 20, "profile_path": "/vfpIPsC27D1ONVres7j3DgWYzdN.jpg", "order": 8}, {"name": "Alfie Allen", "character": "Danny Hardman", "id": 71586, "credit_id": "52fe43bbc3a36847f806b5db", "cast_id": 21, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 9}, {"name": "J\u00e9r\u00e9mie Renier", "character": "Luc Cornet", "id": 51325, "credit_id": "52fe43bbc3a36847f806b5e3", "cast_id": 23, "profile_path": "/oIb19NzIJg0Rz9z2o2KvpeEy55t.jpg", "order": 10}, {"name": "Anthony Minghella", "character": "Interviewer", "id": 2239, "credit_id": "52fe43bbc3a36847f806b5df", "cast_id": 22, "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "order": 11}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe43bbc3a36847f806b577", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.8, "runtime": 123}, "74998": {"poster_path": "/3AeuQK8y8j0hEzSxc9vioruY0ko.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After his wife is assaulted, a husband enlists the services of a vigilante group to help him settle the score.", "video": false, "id": 74998, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Seeking Justice", "tagline": "Vengeance always has a price", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1214962", "adult": false, "backdrop_path": "/47KqyhPlKVdsudOKXKeJaJ6KoV5.jpg", "production_companies": [{"name": "Endgame Entertainment", "id": 1205}, {"name": "Maguire Entertainment", "id": 2236}, {"name": "Aura Film Partnership", "id": 12137}, {"name": "Fierce Entertainment", "id": 12138}, {"name": "Material Pictures", "id": 12139}, {"name": "Ram Bergman Productions", "id": 11092}], "release_date": "2011-09-02", "popularity": 0.815645521113559, "original_title": "Seeking Justice", "budget": 0, "cast": [{"name": "Nicolas Cage", "character": "Will Gerard", "id": 2963, "credit_id": "52fe48e9c3a368484e11184b", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Simon", "id": 529, "credit_id": "52fe48e9c3a368484e11184f", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "January Jones", "character": "Laura Gerard", "id": 31717, "credit_id": "52fe48e9c3a368484e111847", "cast_id": 2, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 2}, {"name": "Jennifer Carpenter", "character": "Trudy", "id": 53828, "credit_id": "52fe48e9c3a368484e111853", "cast_id": 5, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 3}, {"name": "Harold Perrineau", "character": "Jimmy", "id": 6195, "credit_id": "52fe48e9c3a368484e111857", "cast_id": 6, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 4}, {"name": "Xander Berkeley", "character": "Lieutenant Durgan", "id": 3982, "credit_id": "52fe48e9c3a368484e11185b", "cast_id": 7, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 5}, {"name": "IronE Singleton", "character": "Scar", "id": 1040864, "credit_id": "52fe48e9c3a368484e1118cb", "cast_id": 28, "profile_path": "/gUEWX9HIw2iN6bsMvRF7q0xF395.jpg", "order": 6}, {"name": "David Jensen", "character": "Gas Attendant", "id": 60875, "credit_id": "52fe48e9c3a368484e1118cf", "cast_id": 29, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 7}, {"name": "Joe Chrest", "character": "Detective Rudeski", "id": 141762, "credit_id": "52fe48e9c3a368484e1118d3", "cast_id": 30, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 8}, {"name": "Donna DuPlantier", "character": "Gina", "id": 230995, "credit_id": "52fe48e9c3a368484e1118d7", "cast_id": 31, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 9}, {"name": "Alexander Asefa", "character": "Barbeque Friend", "id": 1025647, "credit_id": "52fe48e9c3a368484e1118db", "cast_id": 32, "profile_path": "/fxrz9gOX1YqD3vCuBXu09mukQUT.jpg", "order": 10}, {"name": "Wayne P\u00e9re", "character": "Cancer", "id": 31528, "credit_id": "52fe48e9c3a368484e1118f7", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Marcus Lyle Brown", "character": "Detective Green", "id": 16460, "credit_id": "52fe48e9c3a368484e1118fb", "cast_id": 38, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 12}, {"name": "Dikran Tulaine", "character": "Sideburns", "id": 174256, "credit_id": "52fe48e9c3a368484e1118ff", "cast_id": 39, "profile_path": "/2ZzHRGRNCkROZk4cykgdmwFY0C6.jpg", "order": 13}, {"name": "Demetrius Bridges", "character": "Edwin", "id": 1127094, "credit_id": "52fe48e9c3a368484e111903", "cast_id": 40, "profile_path": null, "order": 14}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe48e9c3a368484e111843", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.9, "runtime": 105}, "1281": {"poster_path": "/36B69cweS9xaeQRj0qA4jnaGM6l.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 251212670, "overview": "Bean works as a caretaker at Britain's formidable Royal National Gallery, and his bosses want to fire him because he sleeps at work all the time, but can't because the chairman of the gallery's board defends him. They send him to USA, to the small Los Angeles art gallery instead, where he'll have to officiate at the opening of the greatest US picture ever (called \"Whistler's Mother\").", "video": false, "id": 1281, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bean", "tagline": "One Man. One Masterpiece. One Very Big Mistake.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aIXcqHz5VKRLXHPsNo0dFoK7YP5.jpg", "poster_path": "/61Jcc1Gwc2KE7sIJ1HPqqdt67ji.jpg", "id": 103372, "name": "Mr. Bean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118689", "adult": false, "backdrop_path": "/6WytIKEnAT6FX2xffQc4wo6WXcS.jpg", "production_companies": [{"name": "Tiger Aspect Productions", "id": 686}, {"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1997-07-29", "popularity": 0.913342476116229, "original_title": "Bean", "budget": 18000000, "cast": [{"name": "Rowan Atkinson", "character": "Mr. Bean", "id": 10730, "credit_id": "52fe42edc3a36847f802d805", "cast_id": 20, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "Peter MacNicol", "character": "David Langley", "id": 12688, "credit_id": "52fe42edc3a36847f802d809", "cast_id": 21, "profile_path": "/ekL1Ko8DLp0ketkwRPr4DoDBfq4.jpg", "order": 1}, {"name": "John Mills", "character": "Chairman", "id": 11859, "credit_id": "52fe42edc3a36847f802d80d", "cast_id": 22, "profile_path": "/5MiJRQj6irdxqCtAhX00YWqmGjZ.jpg", "order": 2}, {"name": "Pamela Reed", "character": "Alison Langley", "id": 14699, "credit_id": "52fe42edc3a36847f802d811", "cast_id": 23, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 3}, {"name": "Harris Yulin", "character": "George Grierson", "id": 1166, "credit_id": "52fe42edc3a36847f802d815", "cast_id": 24, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 4}, {"name": "Burt Reynolds", "character": "General Newton", "id": 16475, "credit_id": "52fe42edc3a36847f802d819", "cast_id": 25, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 5}, {"name": "Larry Drake", "character": "Elmer", "id": 16476, "credit_id": "52fe42edc3a36847f802d81d", "cast_id": 26, "profile_path": "/yRtzWEX4wdviO7bV5rH5z4AfGvv.jpg", "order": 6}, {"name": "Danny Goldring", "character": "Security Buck", "id": 16477, "credit_id": "52fe42edc3a36847f802d821", "cast_id": 27, "profile_path": "/nufdKuciAuJ1vzwXnVQcUDeAsoA.jpg", "order": 7}, {"name": "Johnny Galecki", "character": "Stingo Wheelie", "id": 16478, "credit_id": "52fe42edc3a36847f802d825", "cast_id": 28, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 8}, {"name": "Chris Ellis", "character": "Det. Butler", "id": 8191, "credit_id": "52fe42edc3a36847f802d829", "cast_id": 29, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 9}, {"name": "Andrew Lawrence", "character": "Kevin Langley", "id": 16479, "credit_id": "52fe42edc3a36847f802d82d", "cast_id": 30, "profile_path": "/rW9mqQf9KABcEkkaOyeY8F67n16.jpg", "order": 10}, {"name": "Peter Egan", "character": "Lord Walton", "id": 16480, "credit_id": "52fe42edc3a36847f802d831", "cast_id": 31, "profile_path": "/kmJJEd3MXSXzbRACya76avqSB8w.jpg", "order": 11}, {"name": "Peter Capaldi", "character": "Gareth", "id": 12982, "credit_id": "52fe42edc3a36847f802d835", "cast_id": 32, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 12}, {"name": "June Brown", "character": "Delilah", "id": 16481, "credit_id": "52fe42edc3a36847f802d839", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Peter James", "character": "Dr. Rosenblum", "id": 16482, "credit_id": "52fe42edc3a36847f802d83d", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "Mel Smith", "department": "Directing", "job": "Director", "credit_id": "52fe42edc3a36847f802d843", "profile_path": "/WutScDw47AhIIErXEZtmI5KvGh.jpg", "id": 141450}], "vote_average": 6.5, "runtime": 85}, "39513": {"poster_path": "/297N75COL0NsJJY5k5U8VTJ1DCe.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97552050, "overview": "For the past 60 years, a space-traveling smart-ass named Paul has been locked up in a top-secret military base, advising world leaders about his kind. But when he worries he\u2019s outlived his usefulness and the dissection table is drawing uncomfortably close, Paul escapes on the first RV that passes by his compound in Area 51. Fortunately, it contains the two earthlings who are most likely to rescue and harbor an alien on the run.", "video": false, "id": 39513, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Paul", "tagline": "Who's up for a close encounter?", "vote_count": 501, "homepage": "http://paulthemovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1092026", "adult": false, "backdrop_path": "/mFSmjVtZ9hsU8RQm4Cda3fG7SaD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}, {"name": "Big Talk Productions", "id": 443}], "release_date": "2011-03-17", "popularity": 0.589428577988997, "original_title": "Paul", "budget": 40000000, "cast": [{"name": "Simon Pegg", "character": "Graeme Willy", "id": 11108, "credit_id": "52fe47219251416c9106af3b", "cast_id": 6, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Paul (voice)", "id": 19274, "credit_id": "52fe47219251416c9106af27", "cast_id": 1, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Nick Frost", "character": "Clive Gollings", "id": 11109, "credit_id": "52fe47219251416c9106af47", "cast_id": 10, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 2}, {"name": "Jane Lynch", "character": "Pat Stevenson", "id": 43775, "credit_id": "52fe47219251416c9106af2b", "cast_id": 2, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 3}, {"name": "Kristen Wiig", "character": "Ruth Buggs", "id": 41091, "credit_id": "52fe47219251416c9106af2f", "cast_id": 3, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Special Agent Lorenzo Zoil", "id": 23532, "credit_id": "52fe47219251416c9106af33", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "Tara", "id": 10205, "credit_id": "52fe47219251416c9106af37", "cast_id": 5, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Bill Hader", "character": "Haggard", "id": 19278, "credit_id": "52fe47219251416c9106af3f", "cast_id": 7, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 7}, {"name": "Blythe Danner", "character": "Tara Walton", "id": 10401, "credit_id": "52fe47219251416c9106af43", "cast_id": 9, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 8}, {"name": "Jeffrey Tambor", "character": "Adam Shadowchild", "id": 4175, "credit_id": "52fe47219251416c9106af5d", "cast_id": 14, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 9}, {"name": "Steven Spielberg", "character": "Himself", "id": 488, "credit_id": "52fe47219251416c9106af61", "cast_id": 15, "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "order": 10}, {"name": "David Koechner", "character": "Gus", "id": 28638, "credit_id": "52fe47219251416c9106af65", "cast_id": 16, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 11}, {"name": "Jennifer Granger", "character": "Adam Shadowchild Fan", "id": 223176, "credit_id": "52fe47219251416c9106af69", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Joe Lo Truglio", "character": "O'Reilly", "id": 21131, "credit_id": "52fe47219251416c9106b009", "cast_id": 44, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 13}], "directors": [{"name": "Greg Mottola", "department": "Directing", "job": "Director", "credit_id": "52fe47219251416c9106af4d", "profile_path": "/dC1BKEyTzgTqqy8c5MmSZrRLhNR.jpg", "id": 54733}], "vote_average": 6.4, "runtime": 104}, "65057": {"poster_path": "/5lpBvuPNaPiOpitehczWmJgf6wb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177243185, "overview": "With his wife Elizabeth on life support after a boating accident, Hawaiian land baron Matt King takes his daughters on a trip from Oahu to Kauai to confront the young real estate broker, who was having an affair with Elizabeth before her misfortune.", "video": false, "id": 65057, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Descendants", "tagline": "The South Pacific ain't that terrific.", "vote_count": 307, "homepage": "http://www.foxsearchlight.com/thedescendants/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1033575", "adult": false, "backdrop_path": "/hqz7LxiEATVXgJZMWIHsnbLLAI5.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Ad Hominem Enterprises", "id": 2361}], "release_date": "2011-11-18", "popularity": 1.09076112740501, "original_title": "The Descendants", "budget": 20000000, "cast": [{"name": "George Clooney", "character": "Matt King", "id": 1461, "credit_id": "52fe46fac3a368484e0ae7fd", "cast_id": 3, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Shailene Woodley", "character": "Alexandra", "id": 94185, "credit_id": "52fe46fac3a368484e0ae809", "cast_id": 6, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 1}, {"name": "Amara Miller", "character": "Scottie King", "id": 933002, "credit_id": "52fe46fac3a368484e0ae829", "cast_id": 14, "profile_path": "/dmDydvWXHTtWucrXizOTOYV5SKv.jpg", "order": 2}, {"name": "Nick Krause", "character": "Sid", "id": 931945, "credit_id": "52fe46fac3a368484e0ae825", "cast_id": 13, "profile_path": "/1UYyquycT8qGioKPRYNNKXLtlqJ.jpg", "order": 3}, {"name": "Robert Forster", "character": "Scott Thorson", "id": 5694, "credit_id": "52fe46fac3a368484e0ae811", "cast_id": 8, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 4}, {"name": "Judy Greer", "character": "Julie Speer", "id": 20750, "credit_id": "52fe46fac3a368484e0ae801", "cast_id": 4, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 5}, {"name": "Beau Bridges", "character": "Cousin Hugh", "id": 2222, "credit_id": "52fe46fac3a368484e0ae80d", "cast_id": 7, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 6}, {"name": "Matthew Lillard", "character": "Brian", "id": 26457, "credit_id": "52fe46fac3a368484e0ae805", "cast_id": 5, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 7}, {"name": "Rob Huebel", "character": "Mark Mitchell", "id": 80595, "credit_id": "52fe46fac3a368484e0ae819", "cast_id": 10, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 9}, {"name": "Mary Birdsong", "character": "Kai Mitchell", "id": 63232, "credit_id": "52fe46fac3a368484e0ae81d", "cast_id": 11, "profile_path": "/oBXCCLgt3q2KDVQ7Ge6BWANJHZz.jpg", "order": 10}, {"name": "Patricia Hastie", "character": "Elizabeth King", "id": 1356143, "credit_id": "53f90861c3a3687352001c9d", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Kim Gennaula", "character": "School Counselor", "id": 1394479, "credit_id": "54808a109251416e6c0029c1", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Grace A. Cruz", "character": "Scottie's Teacher", "id": 1394480, "credit_id": "54808a36c3a36829ae002a91", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Karen Kuioka Hironaga", "character": "Barb Higgins", "id": 1394481, "credit_id": "54808a5fc3a36829b5003658", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Carmen Kaichi", "character": "Lani Higgins", "id": 1394482, "credit_id": "54808a78c3a36829b2003621", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Matt Corboy", "character": "Cousin Ralph", "id": 111451, "credit_id": "54808aabc3a36829a3002dd2", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Michael Ontkean", "character": "Cousin Milo", "id": 6678, "credit_id": "54808acf9251416e6c0029e9", "cast_id": 35, "profile_path": "/iaBrgD96YOPbjx6sQF8NiL1TA8e.jpg", "order": 20}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe46fac3a368484e0ae7f3", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 6.5, "runtime": 115}, "106021": {"poster_path": "/cSyFaSCdauIsmHoAwDaeVehkTqA.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A former agent (Aaron Eckhart) of the CIA and his estranged daughter (Liana Liberato) go on the run after his employers target them for assassination.", "video": false, "id": 106021, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Erased", "tagline": "Far from home. Far from safe. Far from over.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1645155", "adult": false, "backdrop_path": "/fG8Ghq7POTd3h0fRBCMJ40frvX0.jpg", "production_companies": [{"name": "Informant Europe SPRL", "id": 48191}, {"name": "uFilm", "id": 8676}, {"name": "Informant Media", "id": 9325}, {"name": "Entertainment Motion Pictures", "id": 18302}, {"name": "Umedia", "id": 19037}, {"name": "uFund", "id": 22127}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 33960}, {"name": "Essential Entertainment", "id": 46381}, {"name": "Expatriate Films", "id": 48185}, {"name": "Smash Media", "id": 48186}, {"name": "Transfilm", "id": 48188}, {"name": "National Bank of Canada TV and Motion Picture Group", "id": 48189}], "release_date": "2012-09-26", "popularity": 0.514226140124127, "original_title": "Erased", "budget": 12000000, "cast": [{"name": "Olga Kurylenko", "character": "Anna Brandt", "id": 18182, "credit_id": "52fe4a5dc3a36847f81c9c09", "cast_id": 7, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "Ben Logan", "id": 6383, "credit_id": "52fe4a5dc3a36847f81c9c0d", "cast_id": 8, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Liana Liberato", "character": "Amy", "id": 60458, "credit_id": "52fe4a5dc3a36847f81c9c11", "cast_id": 9, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 2}, {"name": "Kate Linder", "character": "Principal Gibbins", "id": 1039359, "credit_id": "52fe4a5dc3a36847f81c9c15", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Neil Napier", "character": "Derek Kohler", "id": 105496, "credit_id": "52fe4a5dc3a36847f81c9c19", "cast_id": 11, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 4}, {"name": "Eric Godon", "character": "Maitland", "id": 145299, "credit_id": "52fe4a5dc3a36847f81c9c1d", "cast_id": 12, "profile_path": "/iKWCAMxgHIWoJ1EJG4gWKEPYxbE.jpg", "order": 5}, {"name": "Garrick Hagon", "character": "James Halgate III", "id": 17356, "credit_id": "52fe4a5dc3a36847f81c9c21", "cast_id": 13, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 6}, {"name": "Yassine Fadel", "character": "Nabil", "id": 1157010, "credit_id": "54fdb9e6925141237d004ee3", "cast_id": 40, "profile_path": null, "order": 7}, {"name": "Alexander Fehling", "character": "Floyd", "id": 31663, "credit_id": "54fdba1c925141237d004ee8", "cast_id": 41, "profile_path": "/h6nkEsHxdoV1gQAqJr5OfOp855k.jpg", "order": 8}, {"name": "Fabrice Boutique", "character": "Karim", "id": 1130187, "credit_id": "54fdba409251412204004dfd", "cast_id": 42, "profile_path": null, "order": 9}], "directors": [{"name": "Philipp St\u00f6lzl", "department": "Directing", "job": "Director", "credit_id": "52fe4a5dc3a36847f81c9be7", "profile_path": null, "id": 113500}], "vote_average": 5.5, "runtime": 100}, "97434": {"poster_path": "/5eFWMeUc7C4tpqx7iZP4JBesiUm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An art curator decides to seek revenge on his abusive boss by conning him into buying a fake Monet, but his plan requires the help of an eccentric and unpredictable Texas rodeo queen.", "video": false, "id": 97434, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Gambit", "tagline": "A fake masterpiece. The perfect plan.", "vote_count": 70, "homepage": "http://monetgame.gaga.ne.jp/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404978", "adult": false, "backdrop_path": "/ttY8YjVevl300qJOJ5GCMAXnDpM.jpg", "production_companies": [{"name": "Air-Edel Associates", "id": 12934}, {"name": "Michael Lobell Productions", "id": 13473}, {"name": "Crime Scene Pictures", "id": 13472}], "release_date": "2012-11-07", "popularity": 1.36466669961603, "original_title": "Gambit", "budget": 0, "cast": [{"name": "Stanley Tucci", "character": "Martin Zaidenweber", "id": 2283, "credit_id": "52fe49e09251416c750d636b", "cast_id": 2, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "PJ Puznowski", "id": 6941, "credit_id": "52fe49e09251416c750d636f", "cast_id": 3, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Alan Rickman", "character": "Lionel Shahbandar", "id": 4566, "credit_id": "52fe49e09251416c750d6373", "cast_id": 4, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 2}, {"name": "Colin Firth", "character": "Harry Deane", "id": 5472, "credit_id": "52fe49e09251416c750d6377", "cast_id": 5, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 3}, {"name": "Cloris Leachman", "character": "Grandma Merle", "id": 9599, "credit_id": "52fe49e09251416c750d6393", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 4}, {"name": "Tom Courtenay", "character": "The Major", "id": 14011, "credit_id": "52fe49e09251416c750d6397", "cast_id": 11, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 5}, {"name": "Alex MacQueen", "character": "Mr. Dunlop", "id": 126042, "credit_id": "53b597640e0a2676d30032c2", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Joe Berryman", "character": "Gas Station Cashier", "id": 1179344, "credit_id": "53b597750e0a2676cf0032c2", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Anna Skellern", "character": "Secretary Fiona", "id": 112894, "credit_id": "53b597850e0a2676cb0032ba", "cast_id": 14, "profile_path": "/A1jx4awTisdd7UIXF53SvXWvHNX.jpg", "order": 8}], "directors": [{"name": "Michael Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe49e09251416c750d6367", "profile_path": "/xrMI8tNQgHws3o3Ku5cdH3ayXZx.jpg", "id": 52405}], "vote_average": 5.0, "runtime": 89}, "7735": {"poster_path": "/h3FL7Un5LA5dAbg0AoRNjeWvsTK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 19000000, "overview": "A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.", "video": false, "id": 7735, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Wave", "tagline": "", "vote_count": 131, "homepage": "http://www.welle.film.de/", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1063669", "adult": false, "backdrop_path": "/2hFGKZG8G5L22O5que802vUEXF1.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}], "release_date": "2008-03-11", "popularity": 0.343842001404485, "original_title": "Die Welle", "budget": 7500000, "cast": [{"name": "J\u00fcrgen Vogel", "character": "Rainer Wenger", "id": 17373, "credit_id": "52fe4484c3a36847f809aadb", "cast_id": 10, "profile_path": "/6YSNLd5gKHqDua5Qm2kCNOoU6GL.jpg", "order": 0}, {"name": "Frederick Lau", "character": "Tim", "id": 49767, "credit_id": "52fe4484c3a36847f809aadf", "cast_id": 11, "profile_path": "/pVxIeHlFhwFcJqMDClw85HyAwTg.jpg", "order": 1}, {"name": "Max Riemelt", "character": "Marco", "id": 38773, "credit_id": "52fe4484c3a36847f809aae3", "cast_id": 12, "profile_path": "/xEcdqLYpebm2Bv9zEUG0f8oIi6N.jpg", "order": 2}, {"name": "Jennifer Ulrich", "character": "Karo", "id": 692, "credit_id": "52fe4484c3a36847f809aae7", "cast_id": 13, "profile_path": "/zMoYwvJhf5CPr1D0kecFyuEjCmo.jpg", "order": 3}, {"name": "Christiane Paul", "character": "Anke Wenger", "id": 1859, "credit_id": "52fe4484c3a36847f809aaeb", "cast_id": 14, "profile_path": "/uDgcUFWHFky6wVRI4vrPJOg9J5D.jpg", "order": 4}, {"name": "Elyas M\u2019Barek", "character": "Sinan", "id": 25409, "credit_id": "52fe4484c3a36847f809aaef", "cast_id": 15, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 5}, {"name": "Cristina do Rego", "character": "Lisa", "id": 52964, "credit_id": "52fe4484c3a36847f809aaf3", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Jacob Matschenz", "character": "Dennis", "id": 52722, "credit_id": "52fe4484c3a36847f809aaf7", "cast_id": 17, "profile_path": "/7TjZ9BDZckXx7DvK7BJ6fbQq5oj.jpg", "order": 7}, {"name": "Maximilian Vollmar", "character": "Bomber", "id": 52965, "credit_id": "52fe4484c3a36847f809aafb", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Tim Oliver Schultz", "character": "Jens", "id": 52966, "credit_id": "52fe4484c3a36847f809aaff", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Amelie Kiefer", "character": "Mona", "id": 52967, "credit_id": "52fe4484c3a36847f809ab03", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Max Mauff", "character": "Kevin", "id": 28432, "credit_id": "52fe4484c3a36847f809ab07", "cast_id": 21, "profile_path": "/crnmgf5GC318od3PqzkMZYzJGOX.jpg", "order": 11}, {"name": "Fabian Preger", "character": "Kaschi", "id": 55042, "credit_id": "52fe4484c3a36847f809ab0b", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Ferdinand Schmidt-Modrow", "character": "Ferdi", "id": 23171, "credit_id": "53e020d2c3a3686c56002d91", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Odine Johne", "character": "Maja", "id": 1327616, "credit_id": "53e02212c3a3686c56002da3", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Tino Mewes", "character": "Sch\u00e4del", "id": 20262, "credit_id": "53e02237c3a3683b57000bc8", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Karoline Teska", "character": "Miri", "id": 52721, "credit_id": "53e02268c3a3686c5a002ca4", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Marco Bretscher-Coschignano", "character": "Dominik", "id": 1053732, "credit_id": "53e0228fc3a3686c5d002ed5", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Lennard Bertzbach", "character": "Bommel", "id": 63835, "credit_id": "53e022a6c3a3686c4d002f09", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Tommy Schwimmer", "character": "Maxwell", "id": 1349918, "credit_id": "53e022c0c3a3686c51002de9", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Joseph M'Barek", "character": "Thorben", "id": 5209, "credit_id": "53e024130e0a265a8a0056d1", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Jaime Krsto Ferkic", "character": "Bobby", "id": 1314896, "credit_id": "53e0248dc3a3686c4d002f3a", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Lucas Hardt", "character": "Kulle", "id": 1349919, "credit_id": "53e024dec3a3686c56002deb", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Maren Kroymann", "character": "Dr. Kohlhage", "id": 31444, "credit_id": "53e024fdc3a3686c60002c19", "cast_id": 33, "profile_path": "/wWay4ofbGxSwfvOlPbWf0onAHmb.jpg", "order": 23}, {"name": "Teresa Harder", "character": "Karo's Mutter", "id": 588317, "credit_id": "53e02524c3a3686c56002df4", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Thomas Sarbacher", "character": "Karo's Vater", "id": 38609, "credit_id": "53e02541c3a3683fc0000b36", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Alexander Held", "character": "Tim's Vater", "id": 21743, "credit_id": "53e02563c3a3686c4d002f4a", "cast_id": 36, "profile_path": "/v8uTi2CO4eiZ1ofWHHDrrcI9pcG.jpg", "order": 26}, {"name": "Johanna Gastdorf", "character": "Tim's Mutter", "id": 18035, "credit_id": "53e0257dc3a3686c5a002ceb", "cast_id": 37, "profile_path": "/dzVe2SqKBkV4XV1oEmq83vZjv1s.jpg", "order": 27}, {"name": "Friederike Wagner", "character": "Marco's Mutter", "id": 1284699, "credit_id": "53e025b2c3a3686c5d002f21", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Hubert Mulzer", "character": "Dieter Wieland", "id": 4539, "credit_id": "53e025cdc3a3686c4d002f5a", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Dennis Gansel", "character": "Martin", "id": 52961, "credit_id": "53e025f9c3a3686c51002e3e", "cast_id": 40, "profile_path": "/ak21eoJx8goGPPct6IdJqTTN9fi.jpg", "order": 30}], "directors": [{"name": "Dennis Gansel", "department": "Directing", "job": "Director", "credit_id": "52fe4484c3a36847f809aab3", "profile_path": "/ak21eoJx8goGPPct6IdJqTTN9fi.jpg", "id": 52961}], "vote_average": 7.4, "runtime": 107}, "7737": {"poster_path": "/3sAiP55j0souKMCYlo5wmwWAgaG.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147717833, "overview": "Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.", "video": false, "id": 7737, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Extinction", "tagline": "The Extinction Is Coming...", "vote_count": 510, "homepage": "http://www.sonypictures.com/movies/residentevilextinction/index.html", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0432021", "adult": false, "backdrop_path": "/mjQoekfYIT1t18j9hf2JSZEi60Y.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Impact Pictures", "id": 248}, {"name": "Davis-Films", "id": 342}], "release_date": "2007-09-21", "popularity": 0.44864176551016, "original_title": "Resident Evil: Extinction", "budget": 45000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe4484c3a36847f809abcb", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Oded Fehr", "character": "Carlos Olivera", "id": 18041, "credit_id": "52fe4484c3a36847f809abcf", "cast_id": 2, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 1}, {"name": "Ali Larter", "character": "Claire Redfield", "id": 17303, "credit_id": "52fe4484c3a36847f809abd3", "cast_id": 3, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 2}, {"name": "Iain Glen", "character": "Dr. Isaacs", "id": 20508, "credit_id": "52fe4484c3a36847f809abd7", "cast_id": 4, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 3}, {"name": "Mike Epps", "character": "L.J.", "id": 51944, "credit_id": "52fe4484c3a36847f809abdb", "cast_id": 5, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 4}, {"name": "Ashanti", "character": "Betty", "id": 57172, "credit_id": "52fe4484c3a36847f809ac21", "cast_id": 17, "profile_path": "/lN5YrFFhCmxvX22Ts9hmzTMYblY.jpg", "order": 5}, {"name": "Spencer Locke", "character": "K-Mart", "id": 57192, "credit_id": "52fe4484c3a36847f809ac29", "cast_id": 19, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 7}, {"name": "Matthew Marsden", "character": "Slater", "id": 12793, "credit_id": "52fe4484c3a36847f809ac2d", "cast_id": 20, "profile_path": "/4vsXCzUknnPmadfp9qVtbaO34NP.jpg", "order": 8}, {"name": "Linden Ashby", "character": "Chaser", "id": 57251, "credit_id": "52fe4484c3a36847f809ac31", "cast_id": 21, "profile_path": "/sKcRZFXk4o9Y2373s9oofm93NRU.jpg", "order": 9}, {"name": "Jason O'Mara", "character": "Albert Wesker", "id": 183812, "credit_id": "52fe4484c3a36847f809ac35", "cast_id": 22, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 10}, {"name": "Joe Hursley", "character": "Otto", "id": 59264, "credit_id": "52fe4484c3a36847f809ac39", "cast_id": 23, "profile_path": "/euZBX3gW18tpEVaInzq06K4BjhK.jpg", "order": 11}, {"name": "James Tumminia", "character": "Lab Tech", "id": 74500, "credit_id": "52fe4484c3a36847f809ac3d", "cast_id": 24, "profile_path": "/i5CkGRP2JgJaicddxUqD66cS0hX.jpg", "order": 12}, {"name": "Madeline Carroll", "character": "White Queen", "id": 62564, "credit_id": "52fe4484c3a36847f809ac41", "cast_id": 25, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 13}, {"name": "Christopher Egan", "character": "", "id": 1312315, "credit_id": "55226591c3a3685733000fe8", "cast_id": 37, "profile_path": "/bheD2SRyi1UtAC6VXBj2K9fNZ0C.jpg", "order": 14}], "directors": [{"name": "Russell Mulcahy", "department": "Directing", "job": "Director", "credit_id": "52fe4484c3a36847f809abe1", "profile_path": "/jScppFv3bbozdAdIPUQ8vp4GbnG.jpg", "id": 52968}], "vote_average": 6.1, "runtime": 94}, "24122": {"poster_path": "/nkkFebe8ZgE843rnTrlaRWJy0g9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sandy, upon discovering her husband's infidelity while watching her son's birthday video, leaves the suburbs and moves into the city. She gets an apartment that's above a coffee house where she befriends one of the workers, Aram, a guy whose wife only married him so she could get a green card. Aram's family thinks he's wasting his life and education by working in the coffee house. Soon after moving into the apartment, Sandy hires Aram to be her nanny while she takes on work for the first time since her children where born. It isn't long when Aram and Sandy find they get along wonderfully and start to date. But the question is: is their relationship real or is it, in fact, just a rebound for both of them?", "video": false, "id": 24122, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Rebound", "tagline": "She's still got it. He's just getting it.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1205535", "adult": false, "backdrop_path": "/tHskgc02jDVnhsPSmPpfEZeLL5v.jpg", "production_companies": [{"name": "Film Department, The", "id": 5257}], "release_date": "2009-09-16", "popularity": 0.382589409652531, "original_title": "The Rebound", "budget": 0, "cast": [{"name": "Catherine Zeta-Jones", "character": "Sandy", "id": 1922, "credit_id": "52fe4483c3a368484e027585", "cast_id": 1, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Justin Bartha", "character": "Aram Finklestein", "id": 21180, "credit_id": "52fe4483c3a368484e027589", "cast_id": 2, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 1}, {"name": "Art Garfunkel", "character": "Harry Finklestein", "id": 64928, "credit_id": "52fe4483c3a368484e0275c3", "cast_id": 14, "profile_path": "/kGbVVEfv7e0O4SjXebP7NfUHXon.jpg", "order": 2}, {"name": "Joanna Gleason", "character": "Roberta Finklestein", "id": 20747, "credit_id": "52fe4483c3a368484e0275c7", "cast_id": 15, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 3}, {"name": "Lynn Whitfield", "character": "Laura Reilly", "id": 16217, "credit_id": "52fe4483c3a368484e02759b", "cast_id": 6, "profile_path": "/7NELeIc5qIwSuAKG3Riq0CN2F7t.jpg", "order": 4}, {"name": "Andrew Cherry", "character": "Frank Jr. (Age 7)", "id": 150656, "credit_id": "52fe4483c3a368484e0275cb", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Kate Jennings Grant", "character": "Daphne", "id": 59697, "credit_id": "52fe4483c3a368484e0275cf", "cast_id": 17, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 7}, {"name": "Rob Kerkovich", "character": "Mitch", "id": 150209, "credit_id": "52fe4483c3a368484e0275d3", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "John Schneider", "character": "Trevor", "id": 55779, "credit_id": "52fe4483c3a368484e0275d7", "cast_id": 19, "profile_path": "/jRKj9EVJTiedOeSYpN6uNOwGbsD.jpg", "order": 9}, {"name": "Sam Robards", "character": "Frank", "id": 8213, "credit_id": "52fe4483c3a368484e0275db", "cast_id": 20, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 10}, {"name": "Alice Playten", "character": "Sensei Dana", "id": 80165, "credit_id": "52fe4483c3a368484e0275df", "cast_id": 21, "profile_path": "/oRaMq0i9PI64VKPVivVe0xCPDKB.jpg", "order": 11}, {"name": "Stephanie Szostak", "character": "Alice Marnier", "id": 121953, "credit_id": "52fe4483c3a368484e027593", "cast_id": 4, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 12}, {"name": "Kelly Gould ", "character": "Sandy young", "id": 928330, "credit_id": "54a086ce9251411d53005a8a", "cast_id": 22, "profile_path": null, "order": 13}], "directors": [{"name": "Bart Freundlich", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a368484e02758f", "profile_path": null, "id": 86203}], "vote_average": 5.8, "runtime": 95}, "65086": {"poster_path": "/sJ1jGUTMYijpQ4TryTvnC5SkQ4N.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "The story follows a young lawyer, Arthur Kipps, who is ordered to travel to a remote village and sort out a recently deceased client\u2019s papers. As he works alone in the client\u2019s isolated house, Kipps begins to uncover tragic secrets, his unease growing when he glimpses a mysterious woman dressed only in black. Receiving only silence from the locals, Kipps is forced to uncover the true identity of the Woman in Black on his own, leading to a desperate race against time when he discovers her true identity.", "video": false, "id": 65086, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Woman in Black", "tagline": "What did they see?", "vote_count": 298, "homepage": "http://womaninblack.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/aWMxfo5LEWkL5o4xpQcLVsbcmNp.jpg", "id": 315560, "name": "The Woman in Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1596365", "adult": false, "backdrop_path": "/2kUeyJW0ErqMmUjfJJ73sKAXcRD.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Hammer Film Productions", "id": 1314}, {"name": "UK Film Council", "id": 2452}, {"name": "Alliance Films", "id": 2514}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Talisman Productions", "id": 8989}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Filmgate Films", "id": 18230}], "release_date": "2012-02-01", "popularity": 0.748082920145663, "original_title": "The Woman in Black", "budget": 17000000, "cast": [{"name": "Daniel Radcliffe", "character": "Arthur Kipps", "id": 10980, "credit_id": "52fe46fcc3a368484e0aedd3", "cast_id": 2, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Ciar\u00e1n Hinds", "character": "Mr. Daily", "id": 8785, "credit_id": "52fe46fcc3a368484e0aedd7", "cast_id": 3, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 1}, {"name": "Sidney Johnston", "character": "Nicholas Daily", "id": 202360, "credit_id": "52fe46fcc3a368484e0aeddf", "cast_id": 6, "profile_path": "/aoNlKHmhTFN49mtI5Mz2oz41WRb.jpg", "order": 3}, {"name": "Alisa Khazanova", "character": "Alice", "id": 934737, "credit_id": "52fe46fcc3a368484e0aede3", "cast_id": 7, "profile_path": "/gmgZ5Q6EBjSuPpDMTIib3ewBCkv.jpg", "order": 4}, {"name": "Mary Stockley", "character": "Mrs. Fisher", "id": 40672, "credit_id": "52fe46fcc3a368484e0aede7", "cast_id": 8, "profile_path": "/duzAifGRp5avCoefoDapemvBL3h.jpg", "order": 5}, {"name": "Alfie Field ", "character": "Tom Hardy", "id": 582938, "credit_id": "52fe46fcc3a368484e0aedeb", "cast_id": 9, "profile_path": "/gx3C4HViVVRj4ggruNBUaPO57NI.jpg", "order": 6}, {"name": "Roger Allam", "character": "Mr. Bentley", "id": 11279, "credit_id": "52fe46fcc3a368484e0aedef", "cast_id": 10, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 7}, {"name": "Sophie Stuckey", "character": "Stella Kipps", "id": 56, "credit_id": "52fe46fcc3a368484e0aedf3", "cast_id": 11, "profile_path": "/detvecq2YxaCYeG6EhHCMdprQbK.jpg", "order": 8}, {"name": "Shaun Dooley", "character": "Fisher", "id": 85071, "credit_id": "52fe46fcc3a368484e0aedf7", "cast_id": 12, "profile_path": "/3jFprpFHI3pYPAXW6cxMevf8u7D.jpg", "order": 9}, {"name": "Liz White", "character": "Jennet Humfrye", "id": 90046, "credit_id": "52fe46fcc3a368484e0aedfb", "cast_id": 13, "profile_path": "/g5MwaqoKPy0lRPff7BaXgteiGUX.jpg", "order": 10}, {"name": "Victor McGuire", "character": "Gerald Hardy", "id": 4318, "credit_id": "52fe46fcc3a368484e0aedff", "cast_id": 14, "profile_path": "/czEQ0XdYIURxBfdiAdGXS6KAWea.jpg", "order": 11}, {"name": "Tim McMullan", "character": "Mr. Jerome", "id": 15740, "credit_id": "52fe46fcc3a368484e0aee03", "cast_id": 15, "profile_path": "/8se9JhmD9LE6tiibkGiV51M8rdD.jpg", "order": 12}, {"name": "Daniel Cerqueira", "character": "Keckwick", "id": 75071, "credit_id": "52fe46fcc3a368484e0aee07", "cast_id": 16, "profile_path": "/edu1hN9hzKm76wwsq1ri09WhxCB.jpg", "order": 13}, {"name": "Janet McTeer", "character": "Mrs. Daily", "id": 47627, "credit_id": "52fe46fcc3a368484e0aee29", "cast_id": 23, "profile_path": "/fVxhoT9udQl9UFXe3qa9cbUq3h4.jpg", "order": 14}, {"name": "David Burke", "character": "PC Collins", "id": 1220099, "credit_id": "532084d49251411f8900163e", "cast_id": 24, "profile_path": "/chZOTgwqyUiD4DgIM392L1mR1kM.jpg", "order": 15}], "directors": [{"name": "James Watkins", "department": "Directing", "job": "Director", "credit_id": "52fe46fcc3a368484e0aedcf", "profile_path": null, "id": 63306}], "vote_average": 6.1, "runtime": 95}, "138832": {"poster_path": "/4Ujmqx7BTaRLBHVmeTe7aj6qSsA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 269994119, "overview": "A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.", "video": false, "id": 138832, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "We're the Millers", "tagline": "-If anyone asks.", "vote_count": 952, "homepage": "http://werethemillers.warnerbros.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 297923, "name": "We're the Millers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1723121", "adult": false, "backdrop_path": "/zq1jEtJCszbQPFMt65QEsjIRTft.jpg", "production_companies": [{"name": "Vincent Newman Entertainment", "id": 17929}, {"name": "New Line Cinema", "id": 12}, {"name": "Newman/Tooley Films", "id": 16791}, {"name": "Slap Happy Productions (II)", "id": 31073}, {"name": "Heyday Films", "id": 7364}, {"name": "BenderSpink", "id": 6363}], "release_date": "2013-08-07", "popularity": 3.8299339609622, "original_title": "We're the Millers", "budget": 37000000, "cast": [{"name": "Jason Sudeikis", "character": "David Clark", "id": 58224, "credit_id": "52fe4c56c3a368484e1b3213", "cast_id": 37, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Rose O'Reilly", "id": 4491, "credit_id": "52fe4c56c3a368484e1b31ab", "cast_id": 8, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Will Poulter", "character": "Kenny Rossmore", "id": 93491, "credit_id": "52fe4c56c3a368484e1b31c3", "cast_id": 16, "profile_path": "/d3wR8o9y9jmTha426ms1m70h0HC.jpg", "order": 2}, {"name": "Emma Roberts", "character": "Casey Mathis", "id": 34847, "credit_id": "52fe4c56c3a368484e1b31af", "cast_id": 10, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 3}, {"name": "Ed Helms", "character": "Brad Gurdlinger", "id": 27105, "credit_id": "52fe4c56c3a368484e1b31b3", "cast_id": 12, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 4}, {"name": "Nick Offerman", "character": "Donny Fitzgerald", "id": 17039, "credit_id": "52fe4c56c3a368484e1b31b7", "cast_id": 13, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 5}, {"name": "Thomas Lennon", "character": "Rick Nathanson", "id": 539, "credit_id": "52fe4c56c3a368484e1b31bb", "cast_id": 14, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 6}, {"name": "Kathryn Hahn", "character": "Edie Fitzgerald", "id": 17696, "credit_id": "52fe4c56c3a368484e1b31bf", "cast_id": 15, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 7}, {"name": "Molly C. Quinn", "character": "Melissa Fitzgerald", "id": 96349, "credit_id": "52fe4c56c3a368484e1b31c7", "cast_id": 22, "profile_path": "/8i908NzSx5K4LBxxh5qtzLe6U8e.jpg", "order": 8}, {"name": "Tomer Sisley", "character": "Pablo Chacon", "id": 25089, "credit_id": "53fc8a8a0e0a267a7200ab86", "cast_id": 38, "profile_path": "/s6WMMYArYkMibpTrMMBBLfqqT7t.jpg", "order": 9}, {"name": "Matthew Willig", "character": "One-Eye", "id": 92617, "credit_id": "53fc8a9d0e0a267a7500ac7e", "cast_id": 39, "profile_path": "/5ZW9nqkmFnWTIkr4ALNCiHdPt9S.jpg", "order": 10}, {"name": "Luis Guzm\u00e1n", "character": "Mexican Cop", "id": 40481, "credit_id": "53fc8aac0e0a267a6f00ab33", "cast_id": 40, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 11}, {"name": "Thomas Lennon", "character": "Rick Nathanson", "id": 539, "credit_id": "53fc8ac50e0a267a6900aba5", "cast_id": 41, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 12}, {"name": "Mark L. Young", "character": "Scottie P.", "id": 81197, "credit_id": "53fc8ad30e0a267a7500ac82", "cast_id": 42, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 13}, {"name": "Ken Marino", "character": "Todd - Strip Club Owner", "id": 77089, "credit_id": "53fc8ae10e0a267a6f00ab35", "cast_id": 43, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 14}, {"name": "Laura-Leigh", "character": "Kymberly", "id": 211539, "credit_id": "53fc8af00e0a267a7500ac85", "cast_id": 44, "profile_path": "/prUO6jOfVx1ZQHaQV4ZZZywCyok.jpg", "order": 15}, {"name": "Vickie Eng", "character": "Hospital Nurse", "id": 208316, "credit_id": "54f09d7dc3a3687be2001a9c", "cast_id": 45, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 16}], "directors": [{"name": "Rawson Marshall Thurber", "department": "Directing", "job": "Director", "credit_id": "52fe4c56c3a368484e1b318f", "profile_path": "/uucsuvXxMFdeoKr4mtL2UV3UUvP.jpg", "id": 57633}], "vote_average": 6.9, "runtime": 110}, "64635": {"poster_path": "/tWBo7aZk3I1dLxmMj7ZJcN8uke5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 198802074, "overview": "Welcome to Rekall, the company that can turn your dreams into real memories. For a factory worker named Douglas Quaid, even though he's got a beautiful wife who he loves, the mind-trip sounds like the perfect vacation from his frustrating life - real memories of life as a super-spy might be just what he needs. But when the procedure goes horribly wrong, Quaid becomes a hunted man. Finding himself on the run from the police - controlled by Chancellor Cohaagen, the leader of the free world - Quaid teams up with a rebel fighter to find the head of the underground resistance and stop Cohaagen. The line between fantasy and reality gets blurred and the fate of his world hangs in the balance as Quaid discovers his true identity, his true love, and his true fate.", "video": false, "id": 64635, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Total Recall", "tagline": "What Is Real?", "vote_count": 1341, "homepage": "http://www.welcometorecall.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1386703", "adult": false, "backdrop_path": "/yRaCI0pjb1FGgagYXjg7dV4lkJJ.jpg", "production_companies": [{"name": "Original Film", "id": 333}, {"name": "Rekall Productions", "id": 12676}, {"name": "Prime Focus", "id": 15357}], "release_date": "2012-08-03", "popularity": 1.12375477201766, "original_title": "Total Recall", "budget": 125000000, "cast": [{"name": "Colin Farrell", "character": "Doug Quaid/Carl Hauser", "id": 72466, "credit_id": "52fe46e1c3a368484e0a8fb5", "cast_id": 2, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Lori Quaid", "id": 3967, "credit_id": "52fe46e1c3a368484e0a8fbd", "cast_id": 4, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Jessica Biel", "character": "Melina", "id": 10860, "credit_id": "52fe46e1c3a368484e0a8fc5", "cast_id": 6, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 2}, {"name": "Bryan Cranston", "character": "Cohaagen", "id": 17419, "credit_id": "52fe46e1c3a368484e0a8fb9", "cast_id": 3, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Matthias", "id": 2440, "credit_id": "52fe46e1c3a368484e0a8fc1", "cast_id": 5, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "John Cho", "character": "McClane", "id": 68842, "credit_id": "52fe46e1c3a368484e0a8fc9", "cast_id": 7, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 5}, {"name": "Bokeem Woodbine", "character": "Harry", "id": 71913, "credit_id": "52fe46e1c3a368484e0a8fcd", "cast_id": 8, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 6}, {"name": "Will Yun Lee", "character": "Marek", "id": 10884, "credit_id": "52fe46e1c3a368484e0a8fe9", "cast_id": 14, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 7}, {"name": "Steve Byers", "character": "Henry Reed", "id": 43292, "credit_id": "52fe46e1c3a368484e0a8fed", "cast_id": 15, "profile_path": "/idVVOo2FaOTK2EMBNy34Pesqi4H.jpg", "order": 8}, {"name": "Currie Graham", "character": "Bergen", "id": 156590, "credit_id": "52fe46e1c3a368484e0a8ff1", "cast_id": 16, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 9}, {"name": "Jesse Bond", "character": "Lead Federal Police", "id": 1021545, "credit_id": "52fe46e1c3a368484e0a8ff5", "cast_id": 17, "profile_path": "/nyAZ0BNDGZsS4NPmQriDkSmgghS.jpg", "order": 10}, {"name": "Brooks Darnell", "character": "Stevens", "id": 1021546, "credit_id": "52fe46e1c3a368484e0a8ff9", "cast_id": 18, "profile_path": "/qgM1WhQ8DbgfulLqhX1vvg59a7s.jpg", "order": 11}, {"name": "Michael Therriault", "character": "Bank Clerk", "id": 1018325, "credit_id": "52fe46e1c3a368484e0a9051", "cast_id": 35, "profile_path": "/nHkK7i0zhKvSA4JWtE5ITXf4zn2.jpg", "order": 12}, {"name": "Lisa Chandler", "character": "Prostitute", "id": 1075842, "credit_id": "52fe46e1c3a368484e0a9055", "cast_id": 36, "profile_path": "/9bThsDXxbYI1X4V6MUdIwvG41ki.jpg", "order": 13}, {"name": "Milton Barnes", "character": "Resistance Fighter", "id": 1226806, "credit_id": "52fe46e1c3a368484e0a9059", "cast_id": 37, "profile_path": "/8Lb9cegevGfADPuZNQ1BWunisik.jpg", "order": 14}, {"name": "Natalie Lisinska", "character": "Bohemian Nurse", "id": 1228319, "credit_id": "52fe46e1c3a368484e0a905d", "cast_id": 38, "profile_path": "/wVZMqXZjwXOQogwJpAiJVnaN1Hl.jpg", "order": 15}, {"name": "Billy Choi", "character": "Street peddler", "id": 1300910, "credit_id": "5322eb779251411f850049a7", "cast_id": 39, "profile_path": "/hvfV8oe6dXitxfNGdYpChNiRwlC.jpg", "order": 16}, {"name": "Emily Chang", "character": "Newscaster Lien Nguyen", "id": 1190814, "credit_id": "53313602c3a3686a780012b3", "cast_id": 40, "profile_path": "/3IouyREMuGhQN62PnfqbSZLYQ6J.jpg", "order": 17}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe46e1c3a368484e0a8fb1", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 5.7, "runtime": 121}, "138843": {"poster_path": "/xOfaCTulNOFktg99N4h3p2qdyRY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 318000141, "overview": "Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.", "video": false, "id": 138843, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Conjuring", "tagline": "", "vote_count": 979, "homepage": "http://theconjuring.warnerbros.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 313086, "name": "The Conjuring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1457767", "adult": false, "backdrop_path": "/C9Fiv2lZOuQEWWuXB8C0LVZapC.jpg", "production_companies": [{"name": "Evergreen Media Group", "id": 31375}, {"name": "New Line Cinema", "id": 12}, {"name": "The Safran Company", "id": 11565}], "release_date": "2013-07-19", "popularity": 2.40231005453423, "original_title": "The Conjuring", "budget": 13000000, "cast": [{"name": "Patrick Wilson", "character": "Ed Warren", "id": 17178, "credit_id": "52fe4c56c3a368484e1b3271", "cast_id": 7, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Vera Farmiga", "character": "Lorraine Warren", "id": 21657, "credit_id": "52fe4c56c3a368484e1b3275", "cast_id": 8, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 1}, {"name": "Lili Taylor", "character": "Carolyn Perron", "id": 3127, "credit_id": "52fe4c56c3a368484e1b3281", "cast_id": 11, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 2}, {"name": "Ron Livingston", "character": "Roger Perron", "id": 17402, "credit_id": "52fe4c56c3a368484e1b3279", "cast_id": 9, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 3}, {"name": "Hayley McFarland", "character": "Nancy", "id": 63663, "credit_id": "52fe4c56c3a368484e1b3289", "cast_id": 13, "profile_path": "/m7PKCycRo7Waf3elIJqEfEsUIxZ.jpg", "order": 4}, {"name": "Mackenzie Foy", "character": "Cindy", "id": 851784, "credit_id": "52fe4c56c3a368484e1b327d", "cast_id": 10, "profile_path": "/sC3yotsYEmqoxuaO2xnnqGee4U.jpg", "order": 5}, {"name": "Joey King", "character": "Christine Perron", "id": 125025, "credit_id": "52fe4c56c3a368484e1b3285", "cast_id": 12, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 6}, {"name": "Shanley Caswell", "character": "Andrea Perron", "id": 553504, "credit_id": "52fe4c56c3a368484e1b328d", "cast_id": 14, "profile_path": "/euXGdfscgkJlQDLhboLjFau7Cx5.jpg", "order": 7}, {"name": "Shannon Kook-Chun", "character": "Drew Thomas", "id": 979807, "credit_id": "52fe4c56c3a368484e1b3291", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Kyla Deaver", "character": "April", "id": 1186839, "credit_id": "52fe4c56c3a368484e1b3295", "cast_id": 16, "profile_path": "/mni61zWABRCHRhEAGEnNPXcwmhR.jpg", "order": 9}, {"name": "Sterling Jerins", "character": "Judy Warren", "id": 1186840, "credit_id": "52fe4c56c3a368484e1b3299", "cast_id": 17, "profile_path": "/Yfls1AkMHuf1uS2D39bRqwrFdx.jpg", "order": 10}, {"name": "Marion Guyot", "character": "Georgiana", "id": 196899, "credit_id": "52fe4c56c3a368484e1b32a1", "cast_id": 19, "profile_path": "/2xX5r4rw06diH0JnubOlmWXZQI2.jpg", "order": 12}, {"name": "Morganna Bridgers", "character": "Debbie", "id": 1186841, "credit_id": "52fe4c56c3a368484e1b32a5", "cast_id": 20, "profile_path": "/f8pJdITRZKygzHFIptxRLf3uAxH.jpg", "order": 13}, {"name": "Amy Tipton", "character": "Camilla", "id": 1186842, "credit_id": "52fe4c56c3a368484e1b32a9", "cast_id": 21, "profile_path": "/k4obOMrtRMtK7PaDiHYESXDAoz3.jpg", "order": 14}, {"name": "John Brotherton", "character": "Brad", "id": 222906, "credit_id": "53539d3bc3a3681d81003de7", "cast_id": 30, "profile_path": "/cxCXFaFpgPRTxuXydI53hGvUMgk.jpg", "order": 15}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4c56c3a368484e1b324f", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 7.3, "runtime": 112}, "150117": {"poster_path": "/o5cKKnjBQJuJ4vWw4pnHuKqkHYR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 28234657, "overview": "A look at the trials and tribulations of a pair of newlyweds during their first year of marriage.", "video": false, "id": 150117, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "I Give It A Year", "tagline": "", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2244901", "adult": false, "backdrop_path": "/9498vD4khnvpiKIWgr0KyxtThxS.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}], "release_date": "2013-02-08", "popularity": 1.10422899172593, "original_title": "I Give It A Year", "budget": 0, "cast": [{"name": "Rafe Spall", "character": "Josh", "id": 28847, "credit_id": "52fe4ad99251416c910c7cfb", "cast_id": 5, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Nat", "id": 9827, "credit_id": "52fe4ad99251416c910c7cf7", "cast_id": 3, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Anna Faris", "character": "Chloe", "id": 1772, "credit_id": "52fe4ad99251416c910c7cf3", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Jason Flemyng", "character": "Hugh", "id": 973, "credit_id": "52fe4ad99251416c910c7cff", "cast_id": 6, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 3}, {"name": "Stephen Merchant", "character": "Danny", "id": 39189, "credit_id": "52fe4ad99251416c910c7d03", "cast_id": 7, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 4}, {"name": "Minnie Driver", "character": "Naomi", "id": 6613, "credit_id": "52fe4ad99251416c910c7d07", "cast_id": 8, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 5}, {"name": "Olivia Colman", "character": "Linda", "id": 39187, "credit_id": "52fe4ad99251416c910c7d0b", "cast_id": 9, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 6}, {"name": "Jane Asher", "character": "Diana", "id": 22969, "credit_id": "52fe4ad99251416c910c7d0f", "cast_id": 10, "profile_path": "/vL9Y4ArXO1Q4ctMYw6Q4JEeiiwm.jpg", "order": 7}, {"name": "Tim Key", "character": "Alan", "id": 1016119, "credit_id": "52fe4ad99251416c910c7d19", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Nigel Planer", "character": "Brian", "id": 117555, "credit_id": "52fe4ad99251416c910c7d45", "cast_id": 23, "profile_path": "/uAmUbKmCVa233CEUcJQenyvknBe.jpg", "order": 9}, {"name": "Alex MacQueen", "character": "Minister", "id": 126042, "credit_id": "52fe4ad99251416c910c7d41", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Simon Baker", "character": "Guy", "id": 1284159, "credit_id": "52fe4ad99251416c910c7d4d", "cast_id": 25, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 11}, {"name": "Daisy Haggard", "character": "Helen", "id": 209458, "credit_id": "536b86150e0a2647d400bce4", "cast_id": 26, "profile_path": "/sAwONMmNmeiI85XOzueXJc2cI3k.jpg", "order": 12}], "directors": [{"name": "Dan Mazer", "department": "Directing", "job": "Director", "credit_id": "52fe4ad99251416c910c7cef", "profile_path": null, "id": 6733}], "vote_average": 5.5, "runtime": 97}, "15969": {"poster_path": "/rsmMSZv6aJf3ua163Iug5eBiKuH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Aladdin is adjusting to his new life as part of the upper crust. He and Princess Jasmine may not be married yet, but the pressures of palace society have already begun. On top of that, Iago (the parrot pet of Sultan's ex-vizir turned genie, Jafar) appears asking for help and no one is happy to see him. But things begin to look up when Genie returns from his trip around the world. Meanwhile, Jafar's black lamp is discovered by an idiot crook called Abis Mal. By using Abis Mal, Jafar makes his way back to Agrabah with ideas of payback for Aladdin and his friends.", "video": false, "id": 15969, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Return of Jafar", "tagline": "The Aladdin adventure continues...", "vote_count": 135, "homepage": "", "belongs_to_collection": {"backdrop_path": "/acIVr0B6wWxvtEzoIOzWWgY6bs2.jpg", "poster_path": "/9jAbtLbAbebtuF5q1gZIPUCuegd.jpg", "id": 86027, "name": "Aladdin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107952", "adult": false, "backdrop_path": "/w1Okw5778jLM5cv3gLCCf6zRDSo.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}], "release_date": "1994-05-20", "popularity": 1.22794313357, "original_title": "The Return of Jafar", "budget": 0, "cast": [{"name": "Jason Alexander", "character": "Abis Mal - the Chief of the Thieves (voice)", "id": 1206, "credit_id": "53fb1dbd0e0a267a7800742d", "cast_id": 17, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 1}, {"name": "Jonathan Freeman", "character": "Jafar (voice)", "id": 15830, "credit_id": "53fb1dd00e0a267a72007729", "cast_id": 18, "profile_path": "/zOuESGSTRY0LS3mC9u03evqvjMi.jpg", "order": 2}, {"name": "Jeff Bennett", "character": "Thief (voice)", "id": 34982, "credit_id": "53fb1de10e0a267a78007432", "cast_id": 19, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 3}, {"name": "Gilbert Gottfried", "character": "Iago (voice)", "id": 15832, "credit_id": "53fb1df40e0a267a7b00732e", "cast_id": 20, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 4}, {"name": "Val Bettin", "character": "The Sultan of Agrabah (voice)", "id": 61674, "credit_id": "53fb1e0f0e0a267a6f007783", "cast_id": 21, "profile_path": "/dwdUalc3PdmC1zoAX7qHl6FMvrq.jpg", "order": 5}, {"name": "Brad Kane", "character": "Aladdin (singing voice)", "id": 228428, "credit_id": "53fb1e200e0a267a7800743f", "cast_id": 22, "profile_path": "/g4UmBOKZfYYD5VtyuAO4t4LpCcP.jpg", "order": 6}, {"name": "Liz Callaway", "character": "Princess Jasmine (singing voice)", "id": 58828, "credit_id": "53fb1e310e0a267a7500769b", "cast_id": 23, "profile_path": "/pIZwTupFvJCppbYt26q4ydKIbnl.jpg", "order": 7}, {"name": "Linda Larkin", "character": "Princess Jasmine (voice)", "id": 15829, "credit_id": "53fb1e410e0a267a7200773b", "cast_id": 24, "profile_path": "/7dFMvof0vdGHVvtfpAewjzGOZhf.jpg", "order": 8}, {"name": "Dan Castellaneta", "character": "Blue Genie (voice)", "id": 198, "credit_id": "53fb1e510e0a267a7b00733a", "cast_id": 25, "profile_path": "/dmId1hAL2tluhrgVPChDabeoA0n.jpg", "order": 9}, {"name": "B. J. Ward", "character": "Street Mother (voice)", "id": 88622, "credit_id": "53fb1e640e0a267a7b00733d", "cast_id": 26, "profile_path": "/jTj0AcqLDyMkhdyCYSNR8DS2TpT.jpg", "order": 10}, {"name": "Jim Cummings", "character": "Razoul (voice)", "id": 12077, "credit_id": "53fb1e760e0a267a72007741", "cast_id": 27, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 11}, {"name": "Scott Weinger", "character": "Aladdin (voice)", "id": 15827, "credit_id": "53fb1e8c0e0a267a690077be", "cast_id": 28, "profile_path": "/rlZpPoORiJzStzIuAyrPOlLhnaL.jpg", "order": 12}, {"name": "Frank Welker", "character": "Abu the Monkey (voice)", "id": 15831, "credit_id": "53fb1e9d0e0a267a7200774a", "cast_id": 29, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 13}], "directors": [{"name": "Toby Shelton", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c7507c5f9", "profile_path": null, "id": 139851}, {"name": "Alan Zaslove", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c7507c621", "profile_path": null, "id": 34480}, {"name": "Tad Stones", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c7507c627", "profile_path": null, "id": 56852}], "vote_average": 5.7, "runtime": 69}, "228967": {"poster_path": "/2uWb0aSm5cFmRCHP95OdA6hvTEs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9005175, "overview": "Dave Skylark is king of the celebrity interview and host of the hit night time talk show \"Skylark Tonight.\" The brain behind Dave's empire is his producer and best friend, Aaron Rapoport. Unfulfilled, Aaron yearns to do meaningful work. He scores the chance of a lifetime when he secures an interview for Dave with Kim Jong-Un, the mysterious and ruthless dictator of a nuclear-armed North Korea. As Dave and Aaron prepare to leave for North Korea, they are approached by the CIA and asked to assassinate Kim. They accept the mission, becoming two of the least qualified men ever to assassinate \u2013 or interview \u2013 the most dangerous man on earth.", "video": false, "id": 228967, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Interview", "tagline": "Their Trip To North Korea Just Went South.", "vote_count": 650, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2788710", "adult": false, "backdrop_path": "/p5n7VTC6qmFIuBFjACWURYCAlKP.jpg", "production_companies": [{"name": "Columbia TriStar", "id": 177}], "release_date": "2014-12-25", "popularity": 6.16600196098147, "original_title": "The Interview", "budget": 0, "cast": [{"name": "James Franco", "character": "Dave Skylark", "id": 17051, "credit_id": "52fe4ede9251416c751652bf", "cast_id": 8, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Aaron Rapaport", "id": 19274, "credit_id": "52fe4ede9251416c751652bb", "cast_id": 7, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Lizzy Caplan", "character": "Agent Lacey", "id": 51988, "credit_id": "52fe4ede9251416c751652b7", "cast_id": 6, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 2}, {"name": "Randall Park", "character": "Kim Jung-Un", "id": 79082, "credit_id": "52fe4ede9251416c751652c3", "cast_id": 9, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 3}, {"name": "Diana Bang", "character": "Sook", "id": 583051, "credit_id": "54911230925141472c0009b0", "cast_id": 18, "profile_path": "/sULeEfPOqPPzi29Nd02EF1obx2l.jpg", "order": 4}, {"name": "Timothy Simons", "character": "Malcolm", "id": 1181329, "credit_id": "52fe4ede9251416c751652c7", "cast_id": 10, "profile_path": "/czKmLeQIELIeR4Zpn6msqdYNHuW.jpg", "order": 5}, {"name": "Reese Alexander", "character": "Agent Botwin", "id": 141774, "credit_id": "54911223c3a368465a000b0e", "cast_id": 17, "profile_path": "/eFv7F7LDzkw2mQUfRh9C0FBGvph.jpg", "order": 6}, {"name": "James Yi", "character": "Officer Koh", "id": 1400266, "credit_id": "54911253c3a3684654000aea", "cast_id": 19, "profile_path": "/fPpAOrAGD3YaJZRitRusrqtcdXz.jpg", "order": 7}, {"name": "Paul Bae", "character": "Officer Yu", "id": 1406556, "credit_id": "54a31e3292514117dd00272d", "cast_id": 44, "profile_path": "/6VLZvntggk9Ic7g9IMytQ4sAXWH.jpg", "order": 8}, {"name": "Geoff Gustafson", "character": "Cole", "id": 119810, "credit_id": "54a31e559251411d5300a6a3", "cast_id": 45, "profile_path": "/qBXeCtDRg8tM5Kj0v9zH0CMWmtx.jpg", "order": 9}, {"name": "Dominique Lalonde", "character": "Jackie", "id": 1406557, "credit_id": "54a31eaec3a3684d8f002855", "cast_id": 46, "profile_path": "/dU5nimk1kOuC4Glb2pauXisu7Va.jpg", "order": 10}, {"name": "Anesha Bailey", "character": "Janet", "id": 1274528, "credit_id": "52fe4ede9251416c751652d3", "cast_id": 13, "profile_path": "/sFusvWfTTagpNe6N91cUITcJOdK.jpg", "order": 11}, {"name": "Anders Holm", "character": "Jake", "id": 521563, "credit_id": "54a31ee5c3a368554200d2b7", "cast_id": 47, "profile_path": "/gIZLXRBwYCgTMXr0CoTnHfLKXH9.jpg", "order": 12}, {"name": "Charles Rahi Chun", "character": "General Jong", "id": 62833, "credit_id": "53d727b80e0a260337000cb1", "cast_id": 16, "profile_path": "/eQIo5xMlggtkmWbZDM8UsMqr7pS.jpg", "order": 13}, {"name": "Don Chow", "character": "Two-Fingered Man", "id": 1406558, "credit_id": "54a31f81c3a3682f1e00fb67", "cast_id": 48, "profile_path": null, "order": 14}, {"name": "Jason Cox", "character": "Paparrazi", "id": 550224, "credit_id": "52fe4ede9251416c751652d7", "cast_id": 14, "profile_path": "/9lryEmiSGz3Ks5Zbnsv6QlUly1p.jpg", "order": 15}, {"name": "Tommy Chang", "character": "Presidential Body Guard #1", "id": 201067, "credit_id": "52fe4ede9251416c751652cf", "cast_id": 12, "profile_path": "/rKJsZKtEN98kfoPTM95MNgBFWES.jpg", "order": 16}, {"name": "Eminem", "character": "Eminem", "id": 325, "credit_id": "549f180d925141312f009522", "cast_id": 43, "profile_path": "/mKPPGlIZ2EiKb6LSC46cSzK2NEU.jpg", "order": 17}, {"name": "Ben Schwartz", "character": "Eminem's Publicist", "id": 222121, "credit_id": "549f17fec3a3682f16008aae", "cast_id": 42, "profile_path": "/ty2N3LuUiXO1uKyRg74DUN82xQe.jpg", "order": 18}, {"name": "Rob Lowe", "character": "Himself", "id": 2879, "credit_id": "54c4b0119251416185002d5c", "cast_id": 49, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 19}], "directors": [{"name": "Evan Goldberg", "department": "Directing", "job": "Director", "credit_id": "52fe4ede9251416c751652a1", "profile_path": "/evgasY3JkcPEyQ1Jqz5BHCxb5oc.jpg", "id": 54734}, {"name": "Seth Rogen", "department": "Directing", "job": "Director", "credit_id": "52fe4ede9251416c751652a7", "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "id": 19274}], "vote_average": 6.1, "runtime": 112}, "228970": {"poster_path": "/xyVxo2g0qZBAHJRy5L7FnkMRoKt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.", "video": false, "id": 228970, "genres": [{"id": 18, "name": "Drama"}], "title": "Wild", "tagline": "", "vote_count": 193, "homepage": "http://howwilditwas.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2305051", "adult": false, "backdrop_path": "/pl6mEeLTI4IRnjbBGTMrJSBoYsU.jpg", "production_companies": [{"name": "Pacific Standard", "id": 15829}, {"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2014-12-05", "popularity": 2.94341935412618, "original_title": "Wild", "budget": 40100000, "cast": [{"name": "Reese Witherspoon", "character": "Cheryl Strayed", "id": 368, "credit_id": "52fe4ede9251416c75165335", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Laura Dern", "character": "Bobbi", "id": 4784, "credit_id": "537243c50e0a2672e5002096", "cast_id": 7, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 1}, {"name": "Thomas Sadoski", "character": "Paul", "id": 1218218, "credit_id": "537244020e0a2672f1001f70", "cast_id": 13, "profile_path": "/76x2G7gyY25krEc3OBMUWaEzgnB.jpg", "order": 2}, {"name": "Mo McRae", "character": "Jimmy Carter", "id": 59014, "credit_id": "52fe4ede9251416c75165339", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Michiel Huisman", "character": "Jonathan", "id": 91520, "credit_id": "537243a70e0a2672f400205e", "cast_id": 5, "profile_path": "/sUyhFWPSF13HkoB8aElJuh4D1sp.jpg", "order": 4}, {"name": "Gaby Hoffmann", "character": "Aimee", "id": 12930, "credit_id": "537243bd0e0a2672f4002061", "cast_id": 6, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 5}, {"name": "W. Earl Brown", "character": "Frank", "id": 6951, "credit_id": "537243ce0e0a2672fb0020a1", "cast_id": 8, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 6}, {"name": "Charles Baker", "character": "TJ", "id": 82945, "credit_id": "537243d60e0a2672f4002067", "cast_id": 9, "profile_path": "/lZ5fOVbTVvHkpSX9PUXNfkYLPUt.jpg", "order": 7}, {"name": "Kevin Rankin", "character": "Greg", "id": 114000, "credit_id": "537243de0e0a2672e500209c", "cast_id": 10, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 8}, {"name": "Brian Van Holt", "character": "Ranger", "id": 12792, "credit_id": "537243e70e0a2672eb002042", "cast_id": 11, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 9}, {"name": "J.D. Evermore", "character": "Clint", "id": 129868, "credit_id": "537243f80e0a2672f8001f44", "cast_id": 12, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 10}, {"name": "Keene McRae", "character": "Leif", "id": 1223463, "credit_id": "54b66401c3a368779000193a", "cast_id": 28, "profile_path": null, "order": 11}], "directors": [{"name": "Jean-Marc Vall\u00e9e", "department": "Directing", "job": "Director", "credit_id": "52fe4ede9251416c7516532b", "profile_path": "/zFb4XBBx3TYSeeTXYv6GkAKYYcK.jpg", "id": 69371}], "vote_average": 7.1, "runtime": 115}, "179826": {"poster_path": "/mcgYHOqJpS8q02pbZXoECRlIthc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a California desert town, a short-order cook with clairvoyant abilities encounters a mysterious man with a link to dark, threatening forces.", "video": false, "id": 179826, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Odd Thomas", "tagline": "I might see dead people... But then, by God, I do something about it.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1767354", "adult": false, "backdrop_path": "/bEu0Fe8nlc7japuTMp0n5A5QC4Y.jpg", "production_companies": [{"name": "Future Films", "id": 10843}, {"name": "Fusion Films", "id": 16278}, {"name": "Sommers Company, The", "id": 19643}], "release_date": "2013-04-16", "popularity": 0.607015273236379, "original_title": "Odd Thomas", "budget": 27000000, "cast": [{"name": "Anton Yelchin", "character": "Odd Thomas", "id": 21028, "credit_id": "52fe4dacc3a36847f826dfef", "cast_id": 4, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Wyatt Porter", "id": 5293, "credit_id": "52fe4dacc3a36847f826dff3", "cast_id": 5, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Nico Tortorella", "character": "Simon Varner", "id": 127128, "credit_id": "52fe4dacc3a36847f826dff7", "cast_id": 6, "profile_path": "/A6H0K8h39LcpQpjjjBCoWekDiAf.jpg", "order": 2}, {"name": "Addison Timlin", "character": "Stormy Llewellyn", "id": 56542, "credit_id": "52fe4dacc3a36847f826dffb", "cast_id": 7, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 3}, {"name": "Melissa Ordway", "character": "Lysette", "id": 114602, "credit_id": "52fe4dacc3a36847f826dfff", "cast_id": 8, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 4}, {"name": "Patton Oswalt", "character": "Ozzie P. Boone", "id": 10872, "credit_id": "52fe4dacc3a36847f826e003", "cast_id": 9, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 5}, {"name": "Leonor Varela", "character": "Odd's mother", "id": 10839, "credit_id": "52fe4dacc3a36847f826e007", "cast_id": 10, "profile_path": "/rXn3ruoRRSplCyeNXs7z9BMxHAb.jpg", "order": 6}, {"name": "Bryan Head", "character": "Bowling Alley Patron", "id": 1155332, "credit_id": "52fe4dacc3a36847f826e00b", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Gugu Mbatha-Raw", "character": "Viola", "id": 1216606, "credit_id": "52fe4dacc3a36847f826e00f", "cast_id": 13, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 8}, {"name": "Kyle McKeever", "character": "Officer Bern Eckles", "id": 1291691, "credit_id": "52fe4dacc3a36847f826e013", "cast_id": 14, "profile_path": "/m9HI4V1QKgTkUX6Q1BJNiQPG1mq.jpg", "order": 9}, {"name": "Maisha Diatta", "character": "Nicolina", "id": 1291692, "credit_id": "52fe4dacc3a36847f826e017", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jack Justice", "character": "Young Odd", "id": 1291693, "credit_id": "52fe4dacc3a36847f826e01b", "cast_id": 16, "profile_path": "/8xMAWjEpg9REb5cNwO6XIqqcLbe.jpg", "order": 11}, {"name": "Ashley Sommers", "character": "Penny Kalisto", "id": 1404645, "credit_id": "549e567b9251414d27002d21", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Matthew Page", "character": "Harlo Landerson", "id": 1094319, "credit_id": "549e5af39251414e28002e94", "cast_id": 26, "profile_path": "/nTAAP1s4Y0e6bW1Vyq9MqzCG95y.jpg", "order": 13}, {"name": "Casey Messer", "character": "Pool Mom", "id": 1404646, "credit_id": "549e5bf9c3a3682f23007a9f", "cast_id": 27, "profile_path": "/mwADMVHBbhs1daCUTZxP6rPAVPd.jpg", "order": 14}, {"name": "Barney Lanning", "character": "Stevie", "id": 1404647, "credit_id": "549e5d789251413132007681", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Carmen Corley", "character": "Levanna", "id": 1404648, "credit_id": "549e5f7cc3a3682f210077e1", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Robin Lanning", "character": "Young Stormy", "id": 1404650, "credit_id": "549e63d5c3a3680b2700673a", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Jesus Mayorga", "character": "Mexican Teenager", "id": 204196, "credit_id": "549e6553c3a3682f21007889", "cast_id": 31, "profile_path": "/dYAnZvjvmpy93jHYDR2aAQdWNnD.jpg", "order": 18}, {"name": "Shuler Hensley", "character": "Fungus Bob Robertson", "id": 96892, "credit_id": "549e665dc3a3682f23007be8", "cast_id": 32, "profile_path": "/xAeK7my9ZFHcHGCrgDeUUDFTty1.jpg", "order": 19}, {"name": "Arnold Vosloo", "character": "Tom Jedd", "id": 16743, "credit_id": "549e66f0925141312f0081a1", "cast_id": 33, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 20}, {"name": "Talia Lanning", "character": "Ice Cream Girl", "id": 1404651, "credit_id": "549e6788c3a3682f16007866", "cast_id": 34, "profile_path": "/1W7HhNO9Nvt51cVb2B1svZwlWAo.jpg", "order": 21}, {"name": "Morse Bicknell", "character": "Kevin Goss", "id": 223395, "credit_id": "549e68f6c3a3682f23007c3e", "cast_id": 35, "profile_path": "/viBm5279hwLvjZ9rTHutq721aUb.jpg", "order": 22}, {"name": "Laurel Harris", "character": "Karla Porter", "id": 1404652, "credit_id": "549e6990c3a368764f0039ae", "cast_id": 36, "profile_path": "/z4MoI0GRGW4MGWKF0TYhOWQWshi.jpg", "order": 23}, {"name": "Rob Lawrence Brown", "character": "Shamus Cocobolo", "id": 1404689, "credit_id": "549e80f49251413132007a75", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Andy Ryan", "character": "Police Captain", "id": 1367502, "credit_id": "549e823cc3a3680b27006a7f", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Kyle T. Cowan", "character": "Lyle", "id": 1391874, "credit_id": "549e83b3c3a3682f21007c0d", "cast_id": 39, "profile_path": "/9wL14PFDT0ODsqsGkRJBiSYPOSV.jpg", "order": 26}, {"name": "Nell Murphy", "character": "Nell", "id": 1404693, "credit_id": "549e841b9251414bb2006168", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Kevin Wiggins", "character": "Foreman", "id": 1240490, "credit_id": "549e84dac3a3682f1b007b91", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Kellie Matteson", "character": "Nurse", "id": 1404696, "credit_id": "549e856c9251413132007af9", "cast_id": 42, "profile_path": "/cz0GnGpFAey5pSGrr1DzcMbSpXG.jpg", "order": 29}, {"name": "Jermaine Washington", "character": "Head Bowling Alley Employee", "id": 210700, "credit_id": "549e86b0c3a3682f21007c4d", "cast_id": 43, "profile_path": "/euCpGATxR0ncFXsuuW5tAyKB8U0.jpg", "order": 30}, {"name": "Jimmy Romano", "character": "Bowling Alley Employee #2", "id": 1404697, "credit_id": "549e876bc3a3682f23007f7c", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Saleem Watley", "character": "Bowling Alley Employee #3", "id": 1404698, "credit_id": "549e880c9251413123007bd0", "cast_id": 45, "profile_path": null, "order": 32}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4dacc3a36847f826dfdf", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 6.7, "runtime": 100}, "12222": {"poster_path": "/rcRoduyCzOA0orAS9By8w9gTxy8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 297138014, "overview": "One day, Horton the elephant hears a cry from help coming from a speck of dust. Even though he can't see anyone on the speck, he decides to help it. As it turns out, the speck of dust is home to the Whos, who live in their city of Whoville. Horton agrees to help protect the Whos and their home", "video": false, "id": 12222, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Horton Hears a Who!", "tagline": "A persons a person no matter how small!", "vote_count": 285, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0451079", "adult": false, "backdrop_path": "/jft2L1Jhe9xhKhB5uYBzYIjGXkw.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 9383}, {"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2008-03-03", "popularity": 1.15056717736726, "original_title": "Horton Hears a Who!", "budget": 85000000, "cast": [{"name": "Jim Carrey", "character": "Horton", "id": 206, "credit_id": "52fe44cc9251416c75041599", "cast_id": 3, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Steve Carell", "character": "The Mayor of Whoville (voice)", "id": 4495, "credit_id": "52fe44cc9251416c7504159d", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Carol Burnett", "character": "Kangaroo (voice)", "id": 14837, "credit_id": "52fe44cc9251416c750415a1", "cast_id": 5, "profile_path": "/uUN23A8WtaLcItllwFADuyqF8Ci.jpg", "order": 2}, {"name": "Seth Rogen", "character": "Morton (voice)", "id": 19274, "credit_id": "52fe44cc9251416c750415a5", "cast_id": 6, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 3}, {"name": "Will Arnett", "character": "Vlad (voice)", "id": 21200, "credit_id": "52fe44cc9251416c750415a9", "cast_id": 7, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 4}, {"name": "Dan Fogler", "character": "Councilman / Yummo Wickersham", "id": 58873, "credit_id": "52fe44cc9251416c750415cb", "cast_id": 13, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 5}, {"name": "Isla Fisher", "character": "Dr. Mary Lou Larue", "id": 52848, "credit_id": "52fe44cc9251416c750415cf", "cast_id": 14, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 6}, {"name": "Jonah Hill", "character": "Tommy", "id": 21007, "credit_id": "52fe44cc9251416c750415d3", "cast_id": 15, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 7}, {"name": "Amy Poehler", "character": "Sally O'Malley", "id": 56322, "credit_id": "52fe44cc9251416c750415d7", "cast_id": 16, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 8}, {"name": "Jaime Pressly", "character": "Mrs. Quilligan", "id": 56824, "credit_id": "52fe44cc9251416c750415db", "cast_id": 17, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 9}, {"name": "Charles Osgood", "character": "Narrator", "id": 974472, "credit_id": "52fe44cc9251416c750415df", "cast_id": 18, "profile_path": "/qdmEZ0wEB0LY9sLMSFWXJka2dzc.jpg", "order": 10}, {"name": "Josh Flitter", "character": "Rudy", "id": 216, "credit_id": "52fe44cc9251416c750415e3", "cast_id": 19, "profile_path": "/6RCA8tDWBxIVk9N3IqUjJEAzYGv.jpg", "order": 11}, {"name": "Niecy Nash", "character": "Miss Yelp", "id": 63231, "credit_id": "52fe44cd9251416c750415e7", "cast_id": 20, "profile_path": "/uDgMY19qLLxJLGGr0JYzbi01JmW.jpg", "order": 12}, {"name": "Jesse McCartney", "character": "JoJo", "id": 49915, "credit_id": "52fe44cd9251416c750415eb", "cast_id": 21, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 13}, {"name": "Shelby Adamowsky", "character": "Hedy / Hooly / Additional Voices", "id": 215772, "credit_id": "52fe44cd9251416c750415ef", "cast_id": 22, "profile_path": "/s0o3TxZOCorcN4fGzofnaDI2cef.jpg", "order": 14}, {"name": "Jack Angel", "character": "Old Time Who / Additional Voices", "id": 19545, "credit_id": "52fe44cd9251416c750415f3", "cast_id": 23, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 15}, {"name": "Caitlin Rose Anderson", "character": "Helen", "id": 1086503, "credit_id": "52fe44cd9251416c750415f7", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Emily Anderson", "character": "Heather", "id": 1086504, "credit_id": "52fe44cd9251416c750415fb", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Jan Rabson", "character": "Town Cryer / Additional Voices", "id": 157626, "credit_id": "52fe44cd9251416c750415ff", "cast_id": 26, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 18}, {"name": "John Cygan", "character": "Who / Additional Voices", "id": 167295, "credit_id": "52fe44cd9251416c75041603", "cast_id": 27, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 19}, {"name": "Jess Harnell", "character": "Another Who / Additional Voices", "id": 84495, "credit_id": "52fe44cd9251416c75041607", "cast_id": 28, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 20}, {"name": "Debi Derryberry", "character": "Who Mom / Additional Voices", "id": 73016, "credit_id": "52fe44cd9251416c7504160b", "cast_id": 29, "profile_path": "/mfmF3MjoL7sV76BSElFkVgDgA30.jpg", "order": 21}], "directors": [{"name": "Jimmy Hayward", "department": "Directing", "job": "Director", "credit_id": "52fe44cc9251416c7504158f", "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "id": 8029}, {"name": "Steve Martino", "department": "Directing", "job": "Director", "credit_id": "52fe44cc9251416c75041595", "profile_path": "/rrzPXZh0fj0QBkfWGOZdtb9Ppy1.jpg", "id": 71729}], "vote_average": 6.2, "runtime": 88}, "8999": {"poster_path": "/ArgrsyWKzVTi1AdyetHBV3jmhgM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57479076, "overview": "When two married business executives having an affair are blackmailed by a violent criminal, they are forced to turn the tables on him to save their families.", "video": false, "id": 8999, "genres": [{"id": 53, "name": "Thriller"}], "title": "Derailed", "tagline": "He never saw it coming.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398017", "adult": false, "backdrop_path": "/4tSHqK1Bq61SGLWrGbSVbQ1B2rF.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Miramax Films", "id": 14}, {"name": "Patalex V Productions Limited", "id": 23635}], "release_date": "2005-11-11", "popularity": 0.941704335482833, "original_title": "Derailed", "budget": 22000000, "cast": [{"name": "Clive Owen", "character": "Charles Schine", "id": 2296, "credit_id": "52fe44d0c3a36847f80ab7ff", "cast_id": 2, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Lucinda Harris", "id": 4491, "credit_id": "52fe44d0c3a36847f80ab80b", "cast_id": 5, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Melissa George", "character": "Deanna Schine", "id": 27755, "credit_id": "52fe44d0c3a36847f80ab807", "cast_id": 4, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 2}, {"name": "Vincent Cassel", "character": "LaRoche", "id": 1925, "credit_id": "52fe44d0c3a36847f80ab7fb", "cast_id": 1, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 3}, {"name": "Addison Timlin", "character": "Amy Schine", "id": 56542, "credit_id": "52fe44d0c3a36847f80ab803", "cast_id": 3, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 4}, {"name": "Sandra Bee", "character": "Train Conductor", "id": 56543, "credit_id": "52fe44d0c3a36847f80ab80f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Xzibit", "character": "Dexter", "id": 336, "credit_id": "52fe44d0c3a36847f80ab82b", "cast_id": 14, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 6}, {"name": "RZA", "character": "Winston Boyko", "id": 150, "credit_id": "52fe44d0c3a36847f80ab853", "cast_id": 22, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 7}, {"name": "Giancarlo Esposito", "character": "Detective Church", "id": 4808, "credit_id": "52fe44d0c3a36847f80ab857", "cast_id": 23, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 8}, {"name": "Tom Conti", "character": "Eliot Firth", "id": 71010, "credit_id": "52fe44d0c3a36847f80ab85b", "cast_id": 24, "profile_path": "/lpEvoHDWJtuV2h7Yw3NQisb902P.jpg", "order": 9}, {"name": "Richard Leaf", "character": "Night Clerk Ray", "id": 16792, "credit_id": "52fe44d0c3a36847f80ab85f", "cast_id": 25, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 10}, {"name": "Denis O'Hare", "character": "Jerry the Lawyer", "id": 81681, "credit_id": "52fe44d0c3a36847f80ab863", "cast_id": 26, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 11}, {"name": "David Morrissey", "character": "Sam Griffin", "id": 18616, "credit_id": "52fe44d0c3a36847f80ab867", "cast_id": 27, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 12}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80ab827", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 6.0, "runtime": 108}, "38167": {"poster_path": "/s57E4AfPIU1fxwpGGRahk6A0DUl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181069591, "overview": "Liz Gilbert had everything a modern woman is supposed to dream of having - a husband, a house, a successful career - yet like so many others, she found herself lost, confused, and searching for what she really wanted in life. Newly divorced and at a crossroads, Gilbert steps out of her comfort zone, risking everything to change her life, embarking on a journey around the world that becomes a quest for self-discovery. In her travels, she discovers the true pleasure of nourishment by eating in Italy; the power of prayer in India, and, finally and unexpectedly, the inner peace and balance of true love in Bali. Based upon the bestselling memoir by Elizabeth Gilbert.", "video": false, "id": 38167, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Eat Pray Love", "tagline": "Let Yourself GO", "vote_count": 162, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0879870", "adult": false, "backdrop_path": "/2fwHVLvh6kdwCujsMwtNmwRJAf1.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Red Om Films", "id": 2455}], "release_date": "2010-08-12", "popularity": 0.900546542574837, "original_title": "Eat Pray Love", "budget": 60000000, "cast": [{"name": "Julia Roberts", "character": "Elizabeth Gilbert", "id": 1204, "credit_id": "52fe469c9251416c91059e9d", "cast_id": 4, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "James Franco", "character": "David", "id": 17051, "credit_id": "52fe469c9251416c91059ea1", "cast_id": 5, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Felipe", "id": 3810, "credit_id": "52fe469c9251416c91059ea5", "cast_id": 6, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Billy Crudup", "character": "Steven", "id": 8289, "credit_id": "52fe469c9251416c91059ea9", "cast_id": 7, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Richard", "id": 28633, "credit_id": "52fe469c9251416c91059ead", "cast_id": 8, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Viola Davis", "character": "Delia", "id": 19492, "credit_id": "52fe469c9251416c91059eb1", "cast_id": 9, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}], "directors": [{"name": "Ryan Murphy", "department": "Directing", "job": "Director", "credit_id": "52fe469c9251416c91059e93", "profile_path": "/2NjTHDZmJ1ApUfkGWDVPDeGWPPx.jpg", "id": 52779}], "vote_average": 5.5, "runtime": 133}, "7840": {"poster_path": "/rnGR3EHkL4ryhQd50XBrtRrV8nq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 266000000, "overview": "A prehistoric epic that follows a young mammoth hunter's journey through uncharted territory to secure the future of his tribe.", "video": false, "id": 7840, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "10,000 BC", "tagline": "The legend. The battle. The first hero.", "vote_count": 308, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443649", "adult": false, "backdrop_path": "/x449jyGofRwbnkYgUnS9VLdPkmu.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Legendary Pictures", "id": 923}, {"name": "The Department of Trade and Industry of South Africa", "id": 10884}, {"name": "Moonlighting Films", "id": 9137}], "release_date": "2008-03-05", "popularity": 0.895263075821019, "original_title": "10,000 BC", "budget": 105000000, "cast": [{"name": "Steven Strait", "character": "D'Leh", "id": 54815, "credit_id": "52fe4485c3a36847f809aebd", "cast_id": 7, "profile_path": "/yL9IKHHVaDupVstNLwWWDpdhW8k.jpg", "order": 0}, {"name": "Camilla Belle", "character": "Evolet", "id": 38670, "credit_id": "52fe4485c3a36847f809aeb9", "cast_id": 6, "profile_path": "/dbfyIG91T5ROjDKRjWN8FpMcTay.jpg", "order": 1}, {"name": "Cliff Curtis", "character": "Tic-Tic", "id": 7248, "credit_id": "52fe4485c3a36847f809aec1", "cast_id": 8, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 2}, {"name": "Nathanael Baring", "character": "Baku", "id": 54805, "credit_id": "52fe4485c3a36847f809af13", "cast_id": 22, "profile_path": "/xfXZOhnLq9u9Dev1r2akyXV9KvF.jpg", "order": 3}, {"name": "Mo Zinal", "character": "Ka\u2019Ren", "id": 54806, "credit_id": "52fe4485c3a36847f809af17", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "Affif Ben Badra", "character": "Warlord", "id": 54807, "credit_id": "52fe4486c3a36847f809af1b", "cast_id": 24, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 5}, {"name": "Mona Hammond", "character": "Old Mother", "id": 54808, "credit_id": "52fe4486c3a36847f809af1f", "cast_id": 25, "profile_path": "/bcKUoLinghTX8OImePyNMGFUSfh.jpg", "order": 6}, {"name": "Marco Khan", "character": "One-Eye", "id": 54809, "credit_id": "52fe4486c3a36847f809af23", "cast_id": 26, "profile_path": "/7ICgwwtohryQmWyLPsaJvrnorDi.jpg", "order": 7}, {"name": "Reece Ritchie", "character": "Moha", "id": 54810, "credit_id": "52fe4486c3a36847f809af27", "cast_id": 27, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 8}, {"name": "Joel Fry", "character": "Lu\u2019Kibu", "id": 54811, "credit_id": "52fe4486c3a36847f809af2b", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Joel Virgel", "character": "Nakudu", "id": 143647, "credit_id": "52fe4486c3a36847f809af2f", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Omar Sharif", "character": "Narrator (voice)", "id": 5004, "credit_id": "52fe4486c3a36847f809af33", "cast_id": 30, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 11}, {"name": "Kristian Beazley", "character": "D'Leh's Father", "id": 964350, "credit_id": "52fe4486c3a36847f809af37", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Junior Oliphant", "character": "Tudu", "id": 964351, "credit_id": "52fe4486c3a36847f809af3b", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Louise Tu'u", "character": "Baku's Mother", "id": 1080044, "credit_id": "52fe4486c3a36847f809af3f", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Jacob Renton", "character": "Young D'Leh", "id": 1080045, "credit_id": "52fe4486c3a36847f809af43", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Grayson Hunt Urwin", "character": "Young Evolet", "id": 1080046, "credit_id": "52fe4486c3a36847f809af47", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Farouk Valley Omar", "character": "High Priest", "id": 953772, "credit_id": "52fe4486c3a36847f809af4b", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Boubacar Babiane", "character": "Quina", "id": 1080047, "credit_id": "52fe4486c3a36847f809af4f", "cast_id": 37, "profile_path": null, "order": 18}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4485c3a36847f809ae9d", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.3, "runtime": 109}, "40619": {"poster_path": "/15yOr3M2lOk8fTkn7Bpxuc19ZU9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Day, a sunny fellow, encounters Night, a stranger of distinctly darker moods, sparks fly! Day and Night are frightened and suspicious of each other at first, and quickly get off on the wrong foot. But as they discover each other's unique qualities--and come to realize that each of them offers a different window onto the same world-the friendship helps both to gain a new perspective.", "video": false, "id": 40619, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Day & Night", "tagline": "", "vote_count": 67, "homepage": "http://www.pixar.com/shorts/d&n/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1620446", "adult": false, "backdrop_path": "/16Zih6SSQzWrDRMnAaiaszx2mbV.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2010-06-17", "popularity": 0.292744722065318, "original_title": "Day & Night", "budget": 0, "cast": [{"name": "Wayne Dyer", "character": "Radio Lecturer (voice) (archive sound) (uncredited)", "id": 143640, "credit_id": "52fe459ac3a36847f80d0563", "cast_id": 2, "profile_path": "/cwr5I9BOB5E3GemSUkeaU6rFwvm.jpg", "order": 0}], "directors": [{"name": "Teddy Newton", "department": "Directing", "job": "Director", "credit_id": "52fe459ac3a36847f80d055f", "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "id": 59357}], "vote_average": 7.3, "runtime": 6}, "24238": {"poster_path": "/k0lQISUC4NuvKYasJn59JHc2rla.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 0, "overview": "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. In the mid-1970's, a homely, friendless Australian girl of 8 picks a name out of a Manhattan phone book and writes to him; she includes a chocolate bar. She's Mary Dinkle, the only child of an alcoholic mother and a distracted father. He's Max Horowitz, living alone in New York, overweight, subject to anxiety attacks. He writes back, with chocolate. Thus begins a 20-year correspondence, interrupted by a stay in an asylum and a few misunderstandings. Mary falls in love with a neighbor, saves money to have a birthmark removed and deals with loss. Max has a friendship with a neighbor, tries to control his weight, and finally gets the dream job. Will the two ever meet face to face?", "video": false, "id": 24238, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Mary and Max", "tagline": "Sometimes perfect strangers make the best friends.", "vote_count": 199, "homepage": "http://www.maryandmax.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt0978762", "adult": false, "backdrop_path": "/akUyYgdcY3Q4WfbWLDB9Ur8ttFG.jpg", "production_companies": [{"name": "Melodrama Pictures", "id": 3908}], "release_date": "2009-04-09", "popularity": 0.557139102593417, "original_title": "Mary and Max", "budget": 8000000, "cast": [{"name": "Toni Collette", "character": "Mary Daisy Dinkle", "id": 3051, "credit_id": "52fe448cc3a368484e028ed5", "cast_id": 1, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Max Jerry Horovitz", "id": 1233, "credit_id": "52fe448cc3a368484e028ed9", "cast_id": 2, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Eric Bana", "character": "Damien", "id": 8783, "credit_id": "52fe448cc3a368484e028edd", "cast_id": 3, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 2}, {"name": "Barry Humphries", "character": "Narrator", "id": 22, "credit_id": "52fe448cc3a368484e028ee1", "cast_id": 4, "profile_path": "/bBXWmZtFbKy6Wzk1fHOCE8j6KfS.jpg", "order": 3}, {"name": "Bethany Whitmore", "character": "Young Mary", "id": 92731, "credit_id": "52fe448cc3a368484e028ee5", "cast_id": 5, "profile_path": "/y5ZKK6lgNWAvVPKobq78eTN0aqE.jpg", "order": 4}, {"name": "Ren\u00e9e Geyer", "character": "Vera", "id": 92732, "credit_id": "52fe448cc3a368484e028ee9", "cast_id": 6, "profile_path": null, "order": 5}], "directors": [{"name": "Adam Elliot", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a368484e028eef", "profile_path": "/6EXr5WTdWQvA45GPULmCnupZzo9.jpg", "id": 92733}], "vote_average": 7.5, "runtime": 92}, "181533": {"poster_path": "/tWwASv4CU1Au1IukacdSUewDCV3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 349424282, "overview": "When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley (Ben Stiller) spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.", "video": false, "id": 181533, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Night at the Museum: Secret of the Tomb", "tagline": "One Final Night to Save the Day.", "vote_count": 294, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fOmqiIXfJmeANciOTCN6WkKbwK.jpg", "poster_path": "/q2nwE0Qi8U6tsU5HDmiWS2D3dSJ.jpg", "id": 85943, "name": "Night at the Museum Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2692250", "adult": false, "backdrop_path": "/73hI1zgRALUDrB46JDPBLFqHcqv.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2014-12-19", "popularity": 8.98686579558323, "original_title": "Night at the Museum: Secret of the Tomb", "budget": 127000000, "cast": [{"name": "Rami Malek", "character": "Ahkmenrah", "id": 17838, "credit_id": "537d3527c3a368059e00002a", "cast_id": 14, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Larry Daley", "id": 7399, "credit_id": "52fe4c6a9251416c75119c17", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Rebel Wilson", "character": "Tilly", "id": 221581, "credit_id": "52fe4c6a9251416c75119c35", "cast_id": 7, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 2}, {"name": "Robin Williams", "character": "Theodore Roosevelt", "id": 2157, "credit_id": "53454d730e0a267bc0001b04", "cast_id": 10, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Jedediah Smith", "id": 887, "credit_id": "53454dc60e0a267bc0001b0a", "cast_id": 13, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Dick Van Dyke", "character": "Cecil", "id": 61303, "credit_id": "537d3556c3a368059200001c", "cast_id": 15, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 5}, {"name": "Rachael Harris", "character": "Madeline Phelps", "id": 46074, "credit_id": "537d3565c3a3680595000020", "cast_id": 16, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Ankmenrah's father", "id": 2282, "credit_id": "52fe4c6a9251416c75119c39", "cast_id": 8, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "Ricky Gervais", "character": "Dr. McPhee", "id": 17835, "credit_id": "52fe4c6a9251416c75119c1b", "cast_id": 2, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 8}, {"name": "Mickey Rooney", "character": "Gus", "id": 1937, "credit_id": "53454cf00e0a267bcd001b29", "cast_id": 9, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 9}, {"name": "Dan Stevens", "character": "Sir Lancelot", "id": 221018, "credit_id": "52fe4c6a9251416c75119c1f", "cast_id": 3, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 10}, {"name": "Skyler Gisondo", "character": "Nick Daley", "id": 61263, "credit_id": "537d3588c3a36805a8000018", "cast_id": 17, "profile_path": "/aA6PhyCQy32YZwOitQva10hjcq5.jpg", "order": 11}, {"name": "Mizuo Peck", "character": "Sacajawea", "id": 17841, "credit_id": "537d3594c3a3680598000021", "cast_id": 18, "profile_path": "/ohnloj1aKehzgbupxszmgdvdHS3.jpg", "order": 12}, {"name": "Bill Cobbs", "character": "Reginald", "id": 8854, "credit_id": "537d359ec3a368059b00001c", "cast_id": 19, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 13}, {"name": "Brennan Elliott", "character": "Robert Fredericks", "id": 43458, "credit_id": "537d35a8c3a36805a100002e", "cast_id": 20, "profile_path": "/7Wilyo6uHlKK4IiD3HkzJriVEaZ.jpg", "order": 14}, {"name": "Steve Coogan", "character": "Octavius", "id": 4581, "credit_id": "54453b840e0a26633a007f37", "cast_id": 29, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 15}, {"name": "Patrick Gallagher", "character": "Attila the Hun", "id": 17837, "credit_id": "549b6bab925141312f002aab", "cast_id": 32, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 16}, {"name": "Andrea Martin", "character": "Rose (Archivist)", "id": 8263, "credit_id": "549b6bf49251413123002790", "cast_id": 33, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 17}, {"name": "Alice Eve", "character": "Herself", "id": 59860, "credit_id": "549b6c21c3a3682f23002911", "cast_id": 34, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 18}, {"name": "Hugh Jackman", "character": "Himself", "id": 6968, "credit_id": "549b6c32925141312f002abb", "cast_id": 35, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 19}, {"name": "Crystal the Monkey", "character": "Dexter", "id": 1428580, "credit_id": "550a870fc3a3684883000edf", "cast_id": 36, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 20}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4c6a9251416c75119c25", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.3, "runtime": 97}, "2675": {"poster_path": "/bY9lCUVUajpkKWlfjWF1mtXaSUp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 408247917, "overview": "A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.", "video": false, "id": 2675, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Signs", "tagline": "It\u2019s not like they didn\u2019t warn us.", "vote_count": 331, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0286106", "adult": false, "backdrop_path": "/ksyOtfDvn3eZZIfEcoRy87YUiwL.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2002-08-02", "popularity": 0.753270234191487, "original_title": "Signs", "budget": 72000000, "cast": [{"name": "Mel Gibson", "character": "Rev. Graham Hess", "id": 2461, "credit_id": "52fe4364c3a36847f805100b", "cast_id": 2, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Merrill Hess", "id": 73421, "credit_id": "52fe4364c3a36847f805103f", "cast_id": 11, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "Rory Culkin", "character": "Morgan Hess", "id": 28042, "credit_id": "52fe4364c3a36847f8051043", "cast_id": 12, "profile_path": "/ceb0M0ikZj8kg5oXfGr5wi1MDc6.jpg", "order": 2}, {"name": "Abigail Breslin", "character": "Bo Hess", "id": 17140, "credit_id": "52fe4364c3a36847f8051047", "cast_id": 13, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 3}, {"name": "Cherry Jones", "character": "Officer Paski", "id": 1956, "credit_id": "52fe4364c3a36847f805104b", "cast_id": 14, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 4}, {"name": "M. Night Shyamalan", "character": "Ray Reddy", "id": 11614, "credit_id": "52fe4364c3a36847f805104f", "cast_id": 15, "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "order": 5}, {"name": "Patricia Kalember", "character": "Colleen Hess", "id": 23627, "credit_id": "52fe4364c3a36847f8051053", "cast_id": 16, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 6}, {"name": "Ted Sutton", "character": "SFC Cunningham", "id": 28043, "credit_id": "52fe4364c3a36847f8051057", "cast_id": 17, "profile_path": "/8aqC9afqEiHOwvkIgCVcPxgEyhc.jpg", "order": 7}, {"name": "Merritt Wever", "character": "Tracey Abernathy, die Apothekerin", "id": 28044, "credit_id": "52fe4364c3a36847f805105b", "cast_id": 18, "profile_path": "/scrfqDWvfyRBZlVvTEJvZbJxcER.jpg", "order": 8}, {"name": "Marion McCorry", "character": "Mrs. Nathan", "id": 28046, "credit_id": "52fe4364c3a36847f805105f", "cast_id": 20, "profile_path": "/kLyiSUWs9kmRG1UurMSAJNMg59E.jpg", "order": 10}, {"name": "Michael Showalter", "character": "Lionel Prichard", "id": 22215, "credit_id": "52fe4364c3a36847f8051063", "cast_id": 21, "profile_path": "/5lYlx2Rxrigh1UZqAjviYWNt9md.jpg", "order": 11}, {"name": "Kevin Pires", "character": "Brasilianischer Geburtstags Junge", "id": 28047, "credit_id": "52fe4364c3a36847f8051067", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Clifford David", "character": "Professor der an Columbia Universit\u00e4t", "id": 28048, "credit_id": "52fe4364c3a36847f805106b", "cast_id": 23, "profile_path": "/nRj0mmoXqn2Q1U9x7rELesrzMOQ.jpg", "order": 13}, {"name": "Rhonda Overby", "character": "Sarah Hughes", "id": 28049, "credit_id": "52fe4364c3a36847f805106f", "cast_id": 24, "profile_path": "/qP5uteKafc8Jto9LtWNLFo9SCR8.jpg", "order": 14}, {"name": "Lanny Flaherty", "character": "Mr. Nathan", "id": 3204, "credit_id": "52fe4364c3a36847f8051079", "cast_id": 26, "profile_path": "/tu6UZVHRKRNLbtmHUsjHWHctprz.jpg", "order": 15}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8051007", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 6.3, "runtime": 106}, "12233": {"poster_path": "/m54pXsIUy3IJoaGhk3RwKsZQPG8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This animated take on Oliver Twist re-imagines Oliver as an adorable orphaned kitten who struggles to survive in New York City and falls in with a band of canine criminals led by an evil human. First, Oliver meets Dodger, a carefree mutt with street savoir faire. But when Oliver meets wealthy Jenny on one of the gang's thieving missions, his life changes forever.", "video": false, "id": 12233, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Oliver & Company", "tagline": "The first Disney movie with attitude.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095776", "adult": false, "backdrop_path": "/9kgZc7BRePE2AHqWgF1DBrggQ8J.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners III", "id": 554}], "release_date": "1988-11-18", "popularity": 0.941288063754801, "original_title": "Oliver & Company", "budget": 0, "cast": [{"name": "Joey Lawrence", "character": "Oliver (voice)", "id": 51750, "credit_id": "52fe44cf9251416c75041c0d", "cast_id": 1, "profile_path": "/oFSF7c9nowbtKU3CK7WKGIm9SuQ.jpg", "order": 0}, {"name": "Billy Joel", "character": "Dodger (voice)", "id": 71791, "credit_id": "52fe44cf9251416c75041c11", "cast_id": 2, "profile_path": "/sXnzN7gfuNoIY1kv422guWYquvx.jpg", "order": 1}, {"name": "Cheech Marin", "character": "Tito (voice)", "id": 11159, "credit_id": "52fe44cf9251416c75041c15", "cast_id": 3, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 2}, {"name": "Richard Mulligan", "character": "Einstein (voice)", "id": 58661, "credit_id": "52fe44cf9251416c75041c19", "cast_id": 4, "profile_path": "/8WhTCXvnAZgfOMQJEZK7DFJcJJI.jpg", "order": 3}, {"name": "Roscoe Lee Browne", "character": "Francis (voice)", "id": 24368, "credit_id": "52fe44cf9251416c75041c1d", "cast_id": 5, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 4}, {"name": "Sheryl Lee Ralph", "character": "Rita (voice)", "id": 33613, "credit_id": "52fe44cf9251416c75041c21", "cast_id": 6, "profile_path": "/sdd9mXYACgINvzY6uB8flchcUnC.jpg", "order": 5}, {"name": "Dom DeLuise", "character": "Fagin (voice)", "id": 6844, "credit_id": "52fe44cf9251416c75041c61", "cast_id": 17, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 6}, {"name": "Taurean Blacque", "character": "Roscoe (voice)", "id": 70003, "credit_id": "52fe44cf9251416c75041c65", "cast_id": 18, "profile_path": "/28k0MReMW0lYMICw2h74L7MFJPI.jpg", "order": 7}, {"name": "Carl Weintraub", "character": "Desoto (voice)", "id": 157140, "credit_id": "52fe44cf9251416c75041c69", "cast_id": 19, "profile_path": "/fYsFbi57VL49hwCLg6CReiDsbDJ.jpg", "order": 8}, {"name": "Robert Loggia", "character": "Sykes (voice)", "id": 1162, "credit_id": "52fe44cf9251416c75041c6d", "cast_id": 20, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 9}, {"name": "Natalie Gregory", "character": "Jenny (voice)", "id": 112568, "credit_id": "52fe44cf9251416c75041c71", "cast_id": 21, "profile_path": "/oJ0nbAEFRktkb4sLNC24KTIWVQI.jpg", "order": 10}, {"name": "William Glover", "character": "Winston (voice)", "id": 175078, "credit_id": "52fe44cf9251416c75041c75", "cast_id": 22, "profile_path": "/cBtbH3jCG8AHNk7SXrRcSlbfk9Y.jpg", "order": 11}, {"name": "Bette Midler", "character": "Carlo (voice)", "id": 73931, "credit_id": "52fe44cf9251416c75041c79", "cast_id": 23, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 12}, {"name": "Deborah Gates", "character": "Additional Voice (voice)", "id": 128272, "credit_id": "52fe44cf9251416c75041c7d", "cast_id": 24, "profile_path": "/8D5dRcVmNbU43M7NZF9xtNbVQDx.jpg", "order": 13}, {"name": "Charles Bartlett", "character": "Additional Voice (voice)", "id": 1229258, "credit_id": "54dfa930c3a36855c7001b57", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Jonathan Brandis", "character": "Additional Voice (voice)", "id": 27773, "credit_id": "52fe44cf9251416c75041c85", "cast_id": 26, "profile_path": "/dWKS1zkrHt1mtaTuAjQNr6nNnlb.jpg", "order": 16}, {"name": "Kal David", "character": "Additional Voice (voice)", "id": 1077923, "credit_id": "52fe44cf9251416c75041c89", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Marcia Del Mar", "character": "Additional Voice (voice)", "id": 1014817, "credit_id": "52fe44cf9251416c75041c8d", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Victor DiMattia", "character": "Additional Voice (voice)", "id": 939799, "credit_id": "52fe44cf9251416c75041c91", "cast_id": 29, "profile_path": "/3UsT53aqWYmlmXwgYuqUE8OyZuS.jpg", "order": 19}, {"name": "Judi M. Durand", "character": "Additional Voice (voice)", "id": 949895, "credit_id": "52fe44cf9251416c75041c95", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Greg Finley", "character": "Additional Voice (voice)", "id": 30029, "credit_id": "52fe44cf9251416c75041c99", "cast_id": 31, "profile_path": "/uSh4hjwQ80gc61h1mlg7bnMQTtD.jpg", "order": 21}, {"name": "Javier Grajeda", "character": "Additional Voice (voice)", "id": 66148, "credit_id": "52fe44d09251416c75041c9d", "cast_id": 32, "profile_path": "/btMQzeHaFkUDzRjBccPy16yjER.jpg", "order": 22}], "directors": [{"name": "George Scribner", "department": "Directing", "job": "Director", "credit_id": "52fe44cf9251416c75041c27", "profile_path": null, "id": 71792}], "vote_average": 6.1, "runtime": 74}, "24253": {"poster_path": "/qHRpU2d9NWB0WDulwgFwg6a9JRK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 66995253, "overview": "Mikael Blomkvist, publisher of Millennium magazine, has made his living exposing the crooked and corrupt practices of establishment Swedish figures. So when a young journalist approaches him with a meticulously researched thesis about sex trafficking in Sweden and those in high office who abuse underage girls, Blomkvist immediately throws himself into the investigation.", "video": false, "id": 24253, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl Who Played with Fire", "tagline": "Fight Fire with Fire", "vote_count": 206, "homepage": "http://dragontattoofilm.com/about-5/the-girl-who-played-with-fire/", "belongs_to_collection": {"backdrop_path": "/9wLsZPhI7ZafO4fh1MhwCjvkclN.jpg", "poster_path": "/sLeE5pwX9cle1v1TpBylT9MeYJ2.jpg", "id": 24761, "name": "The Millennium Collection"}, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1216487", "adult": false, "backdrop_path": "/qMDiCjxfv6Y8JN2DFViTX5D1ORH.jpg", "production_companies": [{"name": "Svenska Filminstitutet (SFI)", "id": 7446}, {"name": "ZDF Enterprises", "id": 5747}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Nordisk Film", "id": 235}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}, {"name": "Filmpool Stockholm M\u00e4lardalen", "id": 33821}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Spiltan Underh\u00e5llning", "id": 33822}], "release_date": "2009-09-18", "popularity": 0.549630484644865, "original_title": "Flickan som lekte med elden", "budget": 4000000, "cast": [{"name": "Michael Nyqvist", "character": "Mikael Blomkvist", "id": 6283, "credit_id": "52fe448cc3a368484e029195", "cast_id": 2, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Lisbeth Salander", "id": 87722, "credit_id": "52fe448cc3a368484e029191", "cast_id": 1, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Lena Endre", "character": "Erika Berger", "id": 79196, "credit_id": "52fe448cc3a368484e029199", "cast_id": 3, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 2}, {"name": "Peter Andersson", "character": "Nils Bjurman", "id": 21193, "credit_id": "52fe448cc3a368484e0291a1", "cast_id": 5, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 3}, {"name": "Annika Hallin", "character": "Annika Giannini", "id": 79270, "credit_id": "52fe448cc3a368484e0291a5", "cast_id": 6, "profile_path": "/xvbhvw0Zt8SCNXVApudzZfd6X2p.jpg", "order": 4}, {"name": "Per Oscarsson", "character": "Holger Palmgren", "id": 3855, "credit_id": "52fe448cc3a368484e0291ad", "cast_id": 8, "profile_path": "/qCSUP6c7jz8kgJrGEX4tKDf8emr.jpg", "order": 5}, {"name": "Sofia Ledarp", "character": "Malin Erikson", "id": 83899, "credit_id": "52fe448cc3a368484e02919d", "cast_id": 4, "profile_path": "/wYtfaMlSFX7iDpk00xtVuz0Hzof.jpg", "order": 6}, {"name": "Micke Spreitz", "character": "Ronald Niedermann", "id": 92644, "credit_id": "52fe448cc3a368484e0291a9", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Georgi Staykov", "character": "Alexander Zalachenko", "id": 92645, "credit_id": "52fe448cc3a368484e0291b1", "cast_id": 9, "profile_path": "/uuf8Vkg1hU3jeT1gE0H98UE56Lz.jpg", "order": 8}, {"name": "Paolo Roberto", "character": "Himself", "id": 929148, "credit_id": "53d4e67d0e0a262844003c38", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Yasmine Garbi", "character": "Miriam 'Mimmi' Wu", "id": 234908, "credit_id": "53d4e6b80e0a262838003cac", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Micke Spreitz", "character": "Ronald Niedermann", "id": 92644, "credit_id": "53d4e831c3a3686b910038ec", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Tanja Lorentzon", "character": "Sonja Modig", "id": 106659, "credit_id": "53d4e875c3a3686b85003792", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Magnus Krepper", "character": "Hans Faste", "id": 143391, "credit_id": "53d4e89dc3a3686b910038f8", "cast_id": 22, "profile_path": "/iHJ5HM0bV5UfogcOobnKJtyJklf.jpg", "order": 13}, {"name": "Ralph Carlsson", "character": "Gunnar Bj\u00f6rk", "id": 114580, "credit_id": "53d4e8cbc3a3686b940036d8", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Hans-Christian Thulin", "character": "Dag Svensson", "id": 1042033, "credit_id": "53d4e921c3a3686b91003909", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Michalis Koutsogiannakis", "character": "Dragan Armanskij", "id": 92897, "credit_id": "53d4e954c3a3686b850037ab", "cast_id": 25, "profile_path": "/ne1BlRr5i2yFTC7vj8MQoznACPf.jpg", "order": 16}], "directors": [{"name": "Daniel Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a368484e0291b7", "profile_path": "/252U4sFKLzHLb53Lha2pG5D01Gb.jpg", "id": 76325}], "vote_average": 6.9, "runtime": 129}, "48838": {"poster_path": "/dYdfVHlKmHRJi1JcywGWS4gwOu4.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4644108, "overview": "A parolee battles a gangster for the affections of a reclusive movie star.", "video": false, "id": 48838, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "London Boulevard", "tagline": "Not every criminal wants to be one.", "vote_count": 79, "homepage": "http://www.ifcfilms.com/films/london-boulevard", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1213648", "adult": false, "backdrop_path": "/asSgXEMQkZsSpeFBoifRhsshq92.jpg", "production_companies": [{"name": "London Boulevard", "id": 43792}, {"name": "GK Films", "id": 3281}, {"name": "Henceforth", "id": 6899}, {"name": "Projection Pictures", "id": 21923}], "release_date": "2010-11-10", "popularity": 0.431286316226779, "original_title": "London Boulevard", "budget": 25000000, "cast": [{"name": "Keira Knightley", "character": "Charlotte", "id": 116, "credit_id": "52fe4777c3a36847f813757d", "cast_id": 11, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Mitchell", "id": 72466, "credit_id": "52fe4777c3a36847f8137581", "cast_id": 12, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Anna Friel", "character": "Briony", "id": 58016, "credit_id": "52fe4777c3a36847f8137585", "cast_id": 13, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 2}, {"name": "Ray Winstone", "character": "Gant", "id": 5538, "credit_id": "52fe4777c3a36847f8137589", "cast_id": 14, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 3}, {"name": "Jamie Campbell Bower", "character": "White Boy", "id": 83356, "credit_id": "52fe4777c3a36847f813758d", "cast_id": 15, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 4}, {"name": "David Thewlis", "character": "Jordan", "id": 11207, "credit_id": "52fe4777c3a36847f8137591", "cast_id": 17, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 5}, {"name": "Ophelia Lovibond", "character": "Penny", "id": 82639, "credit_id": "52fe4777c3a36847f8137595", "cast_id": 18, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 6}, {"name": "Eddie Marsan", "character": "DI Bailey", "id": 1665, "credit_id": "52fe4777c3a36847f8137599", "cast_id": 19, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 7}, {"name": "Ben Chaplin", "character": "Billy", "id": 21343, "credit_id": "52fe4777c3a36847f813759d", "cast_id": 20, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 8}, {"name": "Matt King", "character": "Fletcher", "id": 23776, "credit_id": "52fe4777c3a36847f81375a1", "cast_id": 21, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 9}, {"name": "Donald Sumpter", "character": "Pentonville Governor", "id": 20425, "credit_id": "52fe4777c3a36847f81375a5", "cast_id": 22, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 10}, {"name": "Velibor Topi\u0107", "character": "Storbor", "id": 34515, "credit_id": "52fe4777c3a36847f81375a9", "cast_id": 23, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 11}, {"name": "Lee Boardman", "character": "Lee", "id": 138161, "credit_id": "52fe4777c3a36847f81375ad", "cast_id": 24, "profile_path": "/vdDKY1VzdlUOxkNa9Gn2KsUjbhq.jpg", "order": 12}, {"name": "Andrew Havill", "character": "Unlikely Vagrant", "id": 176191, "credit_id": "52fe4778c3a36847f81375b1", "cast_id": 25, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 13}, {"name": "Stephen Graham", "character": "Danny", "id": 1115, "credit_id": "52fe4778c3a36847f81375b5", "cast_id": 26, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 14}, {"name": "Jonny Coyne", "character": "Heavy One (as Jonathan Coyne)", "id": 1323612, "credit_id": "538063f8c3a36805a1004b8e", "cast_id": 27, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 15}], "directors": [{"name": "William Monahan", "department": "Directing", "job": "Director", "credit_id": "52fe4777c3a36847f8137573", "profile_path": null, "id": 34510}], "vote_average": 5.7, "runtime": 103}, "40662": {"poster_path": "/78kjgspmLLOm2Glgpzqo9cS4GpI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6629178, "overview": "Batman faces his ultimate challenge as the mysterious Red Hood takes Gotham City by firestorm. One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code.", "video": false, "id": 40662, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Batman: Under the Red Hood", "tagline": "Dare to Look Beneath the Hood.", "vote_count": 157, "homepage": "http://www.warnervideo.com/batmanredhood/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 314036, "name": "Batman - DC Universe Animated Movies - Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1569923", "adult": false, "backdrop_path": "/rHNz1AlYG0S9J3CGp9ObSFxUyMH.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2010-07-27", "popularity": 0.697983174700856, "original_title": "Batman: Under the Red Hood", "budget": 0, "cast": [{"name": "Bruce Greenwood", "character": "Bruce Wayne/Batman", "id": 21089, "credit_id": "52fe459dc3a36847f80d0e99", "cast_id": 3, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 0}, {"name": "Jensen Ackles", "character": "Red Hood", "id": 49624, "credit_id": "52fe459dc3a36847f80d0e9d", "cast_id": 4, "profile_path": "/3PEwDCpJwA6ZKzD1hJdp334EGbp.jpg", "order": 1}, {"name": "Neil Patrick Harris", "character": "Dick Grayson/Nightwing", "id": 41686, "credit_id": "52fe459dc3a36847f80d0ea1", "cast_id": 5, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 2}, {"name": "Jason Isaacs", "character": "Ra's al Ghul", "id": 11355, "credit_id": "52fe459dc3a36847f80d0ea5", "cast_id": 6, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 3}, {"name": "John Di Maggio", "character": "The Joker", "id": 31531, "credit_id": "52fe459dc3a36847f80d0ea9", "cast_id": 7, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 4}, {"name": "Wade Williams", "character": "Black Mask", "id": 51930, "credit_id": "533009dbc3a3685fb30062ca", "cast_id": 27, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 5}, {"name": "Carlos Alazraqui", "character": "Chi Chi / Thug #1 / Baton", "id": 59784, "credit_id": "52fe459dc3a36847f80d0eb7", "cast_id": 10, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 6}, {"name": "Robert Clotworthy", "character": "Leon / Thug", "id": 35172, "credit_id": "52fe459dc3a36847f80d0ebb", "cast_id": 11, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 7}, {"name": "Gary Cole", "character": "Bobo / Commissioner Gordon / Shot / Guard", "id": 21163, "credit_id": "52fe459dc3a36847f80d0ebf", "cast_id": 12, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 8}, {"name": "Brian George", "character": "Ra's Assistant", "id": 58511, "credit_id": "52fe459dc3a36847f80d0ec3", "cast_id": 13, "profile_path": "/g0bVyXsHDhRhd5WuQwRQDv2TkG9.jpg", "order": 9}, {"name": "Kelly Hu", "character": "Ms. Li", "id": 11024, "credit_id": "52fe459dc3a36847f80d0ec7", "cast_id": 14, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 10}, {"name": "Phil LaMarr", "character": "Rick / Bulk", "id": 31549, "credit_id": "52fe459dc3a36847f80d0ef3", "cast_id": 26, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 11}, {"name": "Alexander Martella", "character": "Young Robin / Jason Todd", "id": 1128886, "credit_id": "52fe459dc3a36847f80d0ecb", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Vincent Martella", "character": "Robin / Jason Todd", "id": 188024, "credit_id": "52fe459dc3a36847f80d0ecf", "cast_id": 17, "profile_path": "/oj6wwVmB0NgGPk9jqKkYWNVC9vz.jpg", "order": 13}, {"name": "Jim Piddock", "character": "Alfred Pennyworth", "id": 120560, "credit_id": "52fe459dc3a36847f80d0ed3", "cast_id": 18, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 14}, {"name": "Kevin Michael Richardson", "character": "Tyler Bramford", "id": 24362, "credit_id": "52fe459dc3a36847f80d0ed7", "cast_id": 19, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 15}, {"name": "Andrea Romano", "character": "Reporter #1", "id": 34945, "credit_id": "52fe459dc3a36847f80d0edb", "cast_id": 20, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 16}, {"name": "Dwight Schultz", "character": "Freddie / Drug Dealer", "id": 28248, "credit_id": "52fe459dc3a36847f80d0edf", "cast_id": 21, "profile_path": "/lvhnIeUHMUvjfxRS2xWeF6xbsJc.jpg", "order": 17}, {"name": "Fred Tatasciore", "character": "Mercenary #1 / Amazo / Guard", "id": 60279, "credit_id": "52fe459dc3a36847f80d0ee3", "cast_id": 22, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 18}, {"name": "Keri Tombazian", "character": "Reporter #2 / Fearsome Hand Leader", "id": 1128887, "credit_id": "52fe459dc3a36847f80d0ee7", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Bruce Timm", "character": "The Riddler", "id": 34934, "credit_id": "52fe459dc3a36847f80d0eeb", "cast_id": 24, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 20}, {"name": "Michael Villani", "character": "Reporter #3", "id": 128267, "credit_id": "52fe459dc3a36847f80d0eef", "cast_id": 25, "profile_path": null, "order": 21}], "directors": [{"name": "Brandon Vietti", "department": "Directing", "job": "Director", "credit_id": "52fe459dc3a36847f80d0e8f", "profile_path": null, "id": 124279}], "vote_average": 7.4, "runtime": 75}, "196325": {"poster_path": "/pK9MmQdYpnbvXZmFo5enaw4SVqB.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 88000000, "overview": "During the economic reform period of the 80\u2019s, three undergraduates bind together by a common ambition \u2013 to live the American dream. They are Cheng Dongqing, a hillbilly who refuses to accept his destiny of being a farmer; Meng Xiaojun, a self-confident, cynical intellectual; and Wang Yang, an idealistic romantic poet. Xiaojun is the first to obtain an US Visa for studying abroad. Yang follows but decides to remain in China for his beloved. Poor Dongqing is rejected by the US Embassy repeatedly. Baffled, he reluctantly accepts the job as an English instructor in the university but eventually gets fired for teaching tutorial classes in private. Across the Pacific, Xiaojun fails to find a decent job and is driven to work as a busboy in a diner.", "video": false, "id": 196325, "genres": [{"id": 18, "name": "Drama"}], "title": "American Dreams in China", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2278392", "adult": false, "backdrop_path": "/kbuvi3b2EgqG2KILdbdrcEmhivg.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Enlight Pictures", "id": 4053}], "release_date": "2013-05-18", "popularity": 0.0664028036418384, "original_title": "\u4e2d\u56fd\u5408\u4f19\u4eba", "budget": 0, "cast": [{"name": "Huang Xiaoming", "character": "Cheng Dongqing", "id": 109434, "credit_id": "52fe4d2c9251416c9110d221", "cast_id": 1, "profile_path": "/lsJtypOH5BXvIVKk9trdckqUIlR.jpg", "order": 0}, {"name": "Deng Chao", "character": "Meng Xiaojun", "id": 99689, "credit_id": "52fe4d2c9251416c9110d225", "cast_id": 2, "profile_path": "/dz351d0VeDsExPMggWZaQfmyFAB.jpg", "order": 1}, {"name": "Tong Dawei", "character": "Wang Yang", "id": 1031246, "credit_id": "52fe4d2c9251416c9110d229", "cast_id": 3, "profile_path": "/ef7XGxTVz71AyeA5fYd66c21Bbg.jpg", "order": 2}, {"name": "Du Juan", "character": "", "id": 1374141, "credit_id": "543df1ddc3a36825170012cf", "cast_id": 9, "profile_path": null, "order": 3}], "directors": [{"name": "Peter Chan", "department": "Directing", "job": "Director", "credit_id": "52fe4d2c9251416c9110d22f", "profile_path": "/zg3cqkxlB4Ybm1yFbRD5N0CU9fM.jpg", "id": 56739}], "vote_average": 7.0, "runtime": 112}, "212716": {"poster_path": "/wtTAUft8yvsQ954QbGIItlD9d7a.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "A story of a young man and woman who struggle to navigate their friendship, which has developed a deep romantic undercurrent.", "video": false, "id": 212716, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "What If", "tagline": "...being friends has its benefits?", "vote_count": 174, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1486834", "adult": false, "backdrop_path": "/q9urivCCkANxSdlJopkat8aBu1j.jpg", "production_companies": [{"name": "Fastnet Films", "id": 5353}, {"name": "No Trace Camping", "id": 35846}, {"name": "Caramel Film", "id": 23108}], "release_date": "2013-09-07", "popularity": 1.28205421789893, "original_title": "What If", "budget": 0, "cast": [{"name": "Daniel Radcliffe", "character": "Wallace", "id": 10980, "credit_id": "52fe4db4c3a368484e1f8019", "cast_id": 5, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Zoe Kazan", "character": "Chantry", "id": 35028, "credit_id": "52fe4db4c3a368484e1f801d", "cast_id": 7, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 1}, {"name": "Rafe Spall", "character": "Ben", "id": 28847, "credit_id": "52fe4db4c3a368484e1f8021", "cast_id": 8, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 2}, {"name": "Megan Park", "character": "Dalia", "id": 55615, "credit_id": "52fe4db4c3a368484e1f8025", "cast_id": 9, "profile_path": "/AjIaQKbjMgYcJxalCBM4MGREss0.jpg", "order": 3}, {"name": "Adam Driver", "character": "Allan", "id": 1023139, "credit_id": "52fe4db4c3a368484e1f8029", "cast_id": 10, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 4}, {"name": "Jemima Rooper", "character": "Ellie", "id": 62932, "credit_id": "52fe4db4c3a368484e1f802d", "cast_id": 11, "profile_path": "/2R1635Z7ezTXcbhEsCF39oteidZ.jpg", "order": 5}, {"name": "Meghan Heffern", "character": "Tabby", "id": 27004, "credit_id": "52fe4db4c3a368484e1f8031", "cast_id": 12, "profile_path": "/djl8gcKuGRREfR51UgF0TUfINwG.jpg", "order": 6}, {"name": "Jordan Hayes", "character": "Becky", "id": 239464, "credit_id": "52fe4db4c3a368484e1f8035", "cast_id": 13, "profile_path": "/aWV8O05SJuYRJ1ZZqUJ9YNdgoBh.jpg", "order": 7}, {"name": "Mackenzie Davis", "character": "Nicole", "id": 1110405, "credit_id": "52fe4db4c3a368484e1f8039", "cast_id": 14, "profile_path": "/csf5dxwk1IKeVA4xYgWsqp9sVCM.jpg", "order": 8}, {"name": "Vanessa Matsui", "character": "Saleswoman", "id": 978906, "credit_id": "52fe4db4c3a368484e1f803d", "cast_id": 15, "profile_path": "/K47Pa8ebusP9MSxmgiGECF8cXH.jpg", "order": 9}, {"name": "Sarah Gadon", "character": "Megan", "id": 190895, "credit_id": "53f5d6f3c3a36834070035b3", "cast_id": 16, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 10}, {"name": "Lucius Hoyos", "character": "Felix", "id": 1178763, "credit_id": "54b15f3d925141747e002197", "cast_id": 27, "profile_path": "/qLGb1mhjSdriSyC5jhgGwdHlFY7.jpg", "order": 11}, {"name": "Tommie-Amber Pirie", "character": "Gretchen", "id": 228332, "credit_id": "54b160f092514174790020ae", "cast_id": 28, "profile_path": "/iD07yPmb6hpA5G7Kep6wDPnG2BF.jpg", "order": 12}, {"name": "Jonathan Cherry", "character": "Josh", "id": 51937, "credit_id": "54b16261c3a36809400023d3", "cast_id": 29, "profile_path": "/9WpmG9INzrUeRO0OkzDMajo0K4v.jpg", "order": 13}, {"name": "Rebecca Northan", "character": "Holly", "id": 23535, "credit_id": "54b1634992514174790020f9", "cast_id": 30, "profile_path": "/idm46AJeOnOMyOfhz2nBWiAiIy5.jpg", "order": 14}, {"name": "Oona Chaplin", "character": "Julianne", "id": 566331, "credit_id": "54b164969251416fe1001a50", "cast_id": 31, "profile_path": "/25hiavig6bfXJ8DjLjbtIkM6mO1.jpg", "order": 15}, {"name": "Adam Fergus", "character": "Rolf", "id": 950197, "credit_id": "54b231b8c3a3682313000fd8", "cast_id": 32, "profile_path": "/iipRd0o7pWqevXkpU5umUkxXl2U.jpg", "order": 16}, {"name": "Sam Moses", "character": "Cabbie", "id": 185147, "credit_id": "54b2336e92514107e0002783", "cast_id": 33, "profile_path": "/sGYtyX8M4gvYJxWdiYYBvB9Dmjf.jpg", "order": 17}, {"name": "Ennis Esmer", "character": "Paramedic", "id": 101251, "credit_id": "54b233fcc3a368231300102c", "cast_id": 34, "profile_path": "/ioD0IGDuSnt5HRrBihHiR2cFvW.jpg", "order": 18}, {"name": "Mike Wilmot", "character": "Murray", "id": 1216471, "credit_id": "54b2379ac3a368094e003f9a", "cast_id": 35, "profile_path": "/iq5vstiLmAzKHTPoUabolzBhJet.jpg", "order": 19}, {"name": "George Tchortov", "character": "Bartender", "id": 1179445, "credit_id": "54b239c09251416fe1003028", "cast_id": 36, "profile_path": "/uZDfTdJiQQIhOVqSELlaxyUxpkO.jpg", "order": 20}, {"name": "Tamara Duarte", "character": "Cute Girl", "id": 1323878, "credit_id": "54b23befc3a368234600133f", "cast_id": 37, "profile_path": "/9hEJUiqbSnNGe1MKya2OPyCQ9De.jpg", "order": 21}, {"name": "Rosalind Feldman", "character": "Antique Employee", "id": 1412070, "credit_id": "54b23d89c3a368210c000de7", "cast_id": 38, "profile_path": "/adpTqLYrtNlzCpqXrM1V2Pcyd1s.jpg", "order": 22}, {"name": "Don Ritter", "character": "Karate Referee", "id": 1412074, "credit_id": "54b24152c3a36820a7000cdc", "cast_id": 39, "profile_path": null, "order": 23}], "directors": [{"name": "Michael Dowse", "department": "Directing", "job": "Director", "credit_id": "52fe4db4c3a368484e1f8003", "profile_path": null, "id": 71280}], "vote_average": 6.9, "runtime": 93}, "294652": {"poster_path": "/pJoofuXXnEsDu5U4L1L48qkgUPf.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 0, "overview": "Locked up for a minor crime, 19 year old JR quickly learns the harsh realities of prison life. Protection, if you can get it, is paramount. JR soon finds himself under the watchful eye of Australia's most notorious criminal, Brendan Lynch, but protection comes at a price.", "video": false, "id": 294652, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Son of a Gun", "tagline": "Everyone gets what they deserve", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2452200", "adult": false, "backdrop_path": "/7UWPr9LUq3GizuZDG3e6PvSlvck.jpg", "production_companies": [{"name": "Media House Capital", "id": 13235}, {"name": "Altitude Film Entertainment", "id": 19638}, {"name": "Bridle Path Films", "id": 41636}], "release_date": "2014-10-16", "popularity": 1.92551487615436, "original_title": "Son of a Gun", "budget": 0, "cast": [{"name": "Ewan McGregor", "character": "Brendan", "id": 3061, "credit_id": "5422364bc3a368087a000643", "cast_id": 0, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Brenton Thwaites", "character": "JR", "id": 1017347, "credit_id": "54223652c3a3680883000691", "cast_id": 1, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "", "id": 227454, "credit_id": "549305309251410918001ac3", "cast_id": 4, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Matthew Nable", "character": "Sterlo", "id": 123879, "credit_id": "5493053cc3a3683cfa00145e", "cast_id": 5, "profile_path": "/yE5MHKIUreuzL5bEgh8NTN8bSYe.jpg", "order": 4}, {"name": "Damon Herriman", "character": "Private Wilson", "id": 62752, "credit_id": "5493054bc3a3680efc0004ae", "cast_id": 6, "profile_path": "/dbf7CnLNuMl1sCScOD7MllimLMV.jpg", "order": 5}, {"name": "Nash Edgerton", "character": "Chris", "id": 75131, "credit_id": "54930554925141091300192e", "cast_id": 7, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 6}, {"name": "Jacek Koman", "character": "Sam", "id": 12210, "credit_id": "54930560c3a3683cf8001a81", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Jesse McGinn", "character": "Swimsuit Girl", "id": 1400921, "credit_id": "5493056fc3a3683cf8001a8a", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Julius Avery", "department": "Directing", "job": "Director", "credit_id": "5446a1c60e0a26632d00b7a9", "profile_path": null, "id": 1299642}], "vote_average": 6.2, "runtime": 108}, "188161": {"poster_path": "/12fqfvUmBOPg2pA0RsEhc31P28O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.", "video": false, "id": 188161, "genres": [{"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "A Million Ways to Die in the West", "tagline": "Bring protection.", "vote_count": 545, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2557490", "adult": false, "backdrop_path": "/tkxiEwG9xJIbyzvJSGYUyTkz3Mj.jpg", "production_companies": [{"name": "RGB Media", "id": 31470}, {"name": "Bluegrass Films", "id": 27451}, {"name": "Fuzzy Door Productions", "id": 8789}, {"name": "Media Rights Capital", "id": 2531}], "release_date": "2014-05-30", "popularity": 1.64385816904557, "original_title": "A Million Ways to Die in the West", "budget": 0, "cast": [{"name": "Seth MacFarlane", "character": "Albert", "id": 52139, "credit_id": "52fe4d309251416c75132fb9", "cast_id": 5, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Anna", "id": 6885, "credit_id": "52fe4d309251416c75132fbd", "cast_id": 6, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Liam Neeson", "character": "Clinch", "id": 3896, "credit_id": "52fe4d309251416c75132fc1", "cast_id": 7, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Louise", "id": 71070, "credit_id": "52fe4d309251416c75132fc5", "cast_id": 8, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Neil Patrick Harris", "character": "Foy", "id": 41686, "credit_id": "52fe4d309251416c75132fe1", "cast_id": 13, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Edward", "id": 1771, "credit_id": "52fe4d309251416c75132fe5", "cast_id": 14, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "Sarah Silverman", "character": "Ruth", "id": 7404, "credit_id": "52fe4d309251416c75132fe9", "cast_id": 15, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 6}, {"name": "Wes Studi", "character": "Cochise", "id": 15853, "credit_id": "532c8dde9251413a78000149", "cast_id": 16, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 7}, {"name": "Evan Jones", "character": "Lewis", "id": 333, "credit_id": "532c8de79251413a7b00012c", "cast_id": 17, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 8}, {"name": "Preston Bailey", "character": "Young Albert", "id": 80378, "credit_id": "532c8df29251413a72000132", "cast_id": 18, "profile_path": "/d1zkkK3olnyHAVkFGiKqpB2NCcp.jpg", "order": 9}, {"name": "Ralph Garman", "character": "Dan", "id": 60286, "credit_id": "532c8dfa9251413a7800014c", "cast_id": 19, "profile_path": "/vMzb4yCslLhJb7CQkS3R1jbyCO6.jpg", "order": 10}, {"name": "Challen Cates", "character": "Female Passenger", "id": 175570, "credit_id": "532c8e0d9251413a72000137", "cast_id": 20, "profile_path": "/ds3mSbHCMF5WfUoklNXxfyJP2VV.jpg", "order": 11}, {"name": "Dennis Haskins", "character": "Montgomery", "id": 19190, "credit_id": "532c8e199251413a81000174", "cast_id": 21, "profile_path": "/hcC0zWG5iyl6rJBCEbP98mn5HTu.jpg", "order": 12}, {"name": "Rex Linn", "character": "Sheriff / Narrator", "id": 16937, "credit_id": "532c8e229251413a75000105", "cast_id": 22, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 13}, {"name": "Christopher Lloyd", "character": "Doc Brown", "id": 1062, "credit_id": "5474f755c3a3683e3f001e77", "cast_id": 37, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 14}, {"name": "Matt Clark", "character": "Old Prospector", "id": 2454, "credit_id": "5474f7aa9251413981002ac0", "cast_id": 38, "profile_path": "/hDNQhAEns3nl9cgQJ4udgCdBABI.jpg", "order": 15}, {"name": "Gilbert Gottfried", "character": "Abraham Lincoln", "id": 15832, "credit_id": "5474f7c6c3a368364c00097e", "cast_id": 39, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 16}, {"name": "Ewan McGregor", "character": "Cowboy at Fair", "id": 3061, "credit_id": "5474f7e0c3a3686bf3001022", "cast_id": 40, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 17}, {"name": "Jamie Foxx", "character": "Django (uncredited)", "id": 134, "credit_id": "5474f85392514160e30019c4", "cast_id": 41, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 18}, {"name": "Christopher Hagen", "character": "George Stark", "id": 1112414, "credit_id": "547e00e7c3a3685b0500641f", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Seth MacFarlane", "department": "Directing", "job": "Director", "credit_id": "52fe4d309251416c75132fcb", "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "id": 52139}], "vote_average": 6.0, "runtime": 116}, "188166": {"poster_path": "/jspgd5F60RH8sKFfuvVW5jVL1F0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The quiet life of a beach bum is upended by dreadful news. He sets off for his childhood home to carry out an act of vengeance but proves an inept assassin and finds himself in a brutal fight to protect his estranged family.", "video": false, "id": 188166, "genres": [{"id": 53, "name": "Thriller"}], "title": "Blue Ruin", "tagline": "Revenge comes home", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2359024", "adult": false, "backdrop_path": "/uppaqwgSPiPLmbwoNJByoeTddRz.jpg", "production_companies": [{"name": "Paradise City", "id": 28360}, {"name": "Film Science", "id": 1976}, {"name": "The Lab Of Madness", "id": 2772}, {"name": "Neighborhood Watch", "id": 22700}], "release_date": "2014-04-25", "popularity": 1.41786824700804, "original_title": "Blue Ruin", "budget": 0, "cast": [{"name": "Macon Blair", "character": "Dwight", "id": 209513, "credit_id": "52fe4d319251416c751330c7", "cast_id": 3, "profile_path": "/xnjzgPkHaxDifGzUWJ5Xz6SbsRp.jpg", "order": 0}, {"name": "Devin Ratray", "character": "Ben Gaffney", "id": 11516, "credit_id": "52fe4d319251416c751330cb", "cast_id": 4, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 1}, {"name": "Amy Hargreaves", "character": "Sam", "id": 92728, "credit_id": "52fe4d319251416c751330cf", "cast_id": 5, "profile_path": "/nwNrt6RFP7yLRPKYSUVbGEdeEF8.jpg", "order": 2}, {"name": "Kevin Kolack", "character": "Teddy Cleland", "id": 1194965, "credit_id": "52fe4d319251416c751330d3", "cast_id": 6, "profile_path": "/1DYMl6klAmUB5Vqjo4ldYeGjc1K.jpg", "order": 3}, {"name": "Eve Plumb", "character": "Kris Cleland", "id": 1212485, "credit_id": "52fe4d319251416c751330e7", "cast_id": 12, "profile_path": "/2OACpDEDQe8i2OFVdixikAQ8rTR.jpg", "order": 4}, {"name": "David W. Thompson", "character": "William", "id": 1194966, "credit_id": "52fe4d319251416c751330d7", "cast_id": 8, "profile_path": "/wa7666sN8oARQcvN1c7jQXm6oJd.jpg", "order": 5}, {"name": "Brent Werzner", "character": "Carl Cleland", "id": 1194967, "credit_id": "52fe4d319251416c751330db", "cast_id": 9, "profile_path": "/hVfzu4B92l6BxLwh10L1Hr29Nz8.jpg", "order": 6}, {"name": "Stacy Rock", "character": "Hope Cleland", "id": 1194968, "credit_id": "52fe4d319251416c751330df", "cast_id": 10, "profile_path": "/1pyL8uUhO6JSTcAsztV8OiXJCkZ.jpg", "order": 7}, {"name": "Sidn\u00e9 Anderson", "character": "Officer Eddy", "id": 1194969, "credit_id": "52fe4d319251416c751330e3", "cast_id": 11, "profile_path": "/lwZSpKVXYpk9b7Huv2uyR7icFPi.jpg", "order": 8}, {"name": "Bonnie Johnson", "character": "Margaret", "id": 218605, "credit_id": "54169a8d0e0a261c20004e2a", "cast_id": 32, "profile_path": "/jk2tPblrYHNm1fJOlapoV5zCE1d.jpg", "order": 9}, {"name": "Ydaiber Orozco", "character": "Amanda", "id": 1364103, "credit_id": "54169aa6c3a3684d06004c1c", "cast_id": 33, "profile_path": "/wn48KyfKEWT1AI78fot0Ab8OCRN.jpg", "order": 10}, {"name": "Erica Genereux Smith", "character": "Rock Girl", "id": 1364104, "credit_id": "54169abe0e0a261c2a004bdb", "cast_id": 34, "profile_path": "/1PrNLHOWTophBo8DCPMUww3te2j.jpg", "order": 11}, {"name": "Daniel L. Kelly", "character": "Large Man", "id": 1404728, "credit_id": "549e958b92514131290083de", "cast_id": 35, "profile_path": null, "order": 12}], "directors": [{"name": "Jeremy Saulnier", "department": "Directing", "job": "Director", "credit_id": "52fe4d319251416c751330bd", "profile_path": "/9fjoSOxr3RTEAExWDY48FR8mvSZ.jpg", "id": 74655}], "vote_average": 6.8, "runtime": 92}, "146203": {"poster_path": "/nFWl45XKP3XhZY4K9ngZSBo6BkZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15179302, "overview": "As Nell Sweetzer tries to build a new life after the events of the first movie, the evil force that once possessed her returns with an even more horrific plan.", "video": false, "id": 146203, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Last Exorcism Part II", "tagline": "The second coming", "vote_count": 95, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5Sqzzmn7ApjfcuasUrnyRlDcpUu.jpg", "poster_path": "/AktaOzAg0QnEdz9Ss1KctsNh5bc.jpg", "id": 177675, "name": "The Last Exorcism Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2034139", "adult": false, "backdrop_path": "/8dqbSrHv2MfZ1SNCtm30Eu1I8zI.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}, {"name": "StudioCanal", "id": 694}], "release_date": "2013-02-28", "popularity": 0.568390381552961, "original_title": "The Last Exorcism Part II", "budget": 5000000, "cast": [{"name": "Ashley Bell", "character": "Nell Sweetzer", "id": 120248, "credit_id": "52fe4b779251416c75103b4f", "cast_id": 1, "profile_path": "/rPc2n1A1ieTvh30hv2CNozyCv6O.jpg", "order": 0}, {"name": "Julia Garner", "character": "Gwen", "id": 936970, "credit_id": "52fe4b779251416c75103b79", "cast_id": 10, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 1}, {"name": "Andrew Sensenig", "character": "Doctor", "id": 141226, "credit_id": "52fe4b779251416c75103b53", "cast_id": 2, "profile_path": "/oiPTOeTpMnEHq1sydiLgsMtwDVa.jpg", "order": 2}, {"name": "Spencer Treat Clark", "character": "Chris", "id": 4012, "credit_id": "52fe4b779251416c75103b57", "cast_id": 3, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 3}, {"name": "Judd Lormand", "character": "Jared", "id": 990136, "credit_id": "52fe4b779251416c75103b5b", "cast_id": 4, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 4}, {"name": "Muse Watson", "character": "Frank", "id": 17348, "credit_id": "52fe4b779251416c75103b5f", "cast_id": 5, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 5}, {"name": "Raeden Greer", "character": "Steph", "id": 1123886, "credit_id": "52fe4b779251416c75103b63", "cast_id": 6, "profile_path": null, "order": 6}], "directors": [{"name": "Ed Gass-Donnelly", "department": "Directing", "job": "Director", "credit_id": "52fe4b779251416c75103b69", "profile_path": null, "id": 557179}], "vote_average": 4.6, "runtime": 88}, "73499": {"poster_path": "/7FEQQuznwV1RyNEOxJWhQ3tUqnr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The mysterious murder of a US senator bearing the distinctive trademark of the legendary Soviet assassin \"Cassius,\" forces Paul Shepherdson (Richard Gere), a retired CIA operative, to team with rookie FBI agent, Ben Geary (Topher Grace), to solve the crime. Having spent his career chasing Cassius, Shepherdson is convinced his nemesis is long dead, but is pushed to take on the case by his former supervisor, Tom Highland (Martin Sheen). Meanwhile, Agent Geary, who wrote his Master's thesis on Shepherdson's pursuit of the Soviet killer, is certain that Cassius has resurfaced. As Shepherdson and Geary work their way through crimes both past and present, they discover that Cassius may not be the person they always thought him to be, forcing both to re-examine everything and everyone around them.", "video": false, "id": 73499, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Double", "tagline": "", "vote_count": 65, "homepage": "http://www.thedoublemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646980", "adult": false, "backdrop_path": "/5pPMcj7JThD2XNehL2kx7Of4V5B.jpg", "production_companies": [{"name": "Industry Entertainment", "id": 376}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Agent Two", "id": 46353}, {"name": "Brandt/Haas Productions", "id": 46354}], "release_date": "2011-10-27", "popularity": 1.04327360416279, "original_title": "The Double", "budget": 0, "cast": [{"name": "Stephen Moyer", "character": "Brutus", "id": 32203, "credit_id": "52fe489dc3a368484e102099", "cast_id": 4, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 0}, {"name": "Topher Grace", "character": "Ben Geary", "id": 17052, "credit_id": "52fe489dc3a368484e10209d", "cast_id": 5, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 1}, {"name": "Richard Gere", "character": "Paul Shepherdson", "id": 1205, "credit_id": "52fe489dc3a368484e1020a1", "cast_id": 6, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 2}, {"name": "Stana Katic", "character": "Amber", "id": 34408, "credit_id": "52fe489dc3a368484e1020a5", "cast_id": 7, "profile_path": "/5Uv6wssCvAZfSTaXbiEiySQquHC.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Tom Highland", "id": 8349, "credit_id": "52fe489dc3a368484e1020af", "cast_id": 9, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "Tamer Hassan", "character": "Bozlovski", "id": 39660, "credit_id": "52fe489dc3a368484e1020b3", "cast_id": 10, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 5}, {"name": "Chris Marquette", "character": "Oliver", "id": 59238, "credit_id": "52fe489dc3a368484e1020b7", "cast_id": 11, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 6}, {"name": "Odette Annable", "character": "Natalie Geary", "id": 51992, "credit_id": "52fe489dc3a368484e1020bb", "cast_id": 12, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 7}, {"name": "Yuriy Sardarov", "character": "Leo", "id": 150672, "credit_id": "54db2cb4c3a3682f24001042", "cast_id": 77, "profile_path": "/kM5kbXtXEPfD76EbulrAGiAuF1u.jpg", "order": 8}, {"name": "Ed Kelly", "character": "Senator Dennis Darden", "id": 130408, "credit_id": "54db2cdac3a36812240013b5", "cast_id": 78, "profile_path": null, "order": 9}, {"name": "Jeffrey Pierce", "character": "Agent Weaver", "id": 82821, "credit_id": "54db2d06c3a368122d0014d4", "cast_id": 79, "profile_path": "/ozdNCKCUjrOeKYZIrkhjn5jI4Dz.jpg", "order": 10}, {"name": "Lawrence Gilliard Jr.", "character": "Agent Burton", "id": 37947, "credit_id": "54db2d27c3a368122d0014d7", "cast_id": 80, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 11}, {"name": "Dan Lemieux", "character": "Russian Military Officer", "id": 201202, "credit_id": "54db2d75c3a368123b001576", "cast_id": 81, "profile_path": null, "order": 12}], "directors": [{"name": "Michael Brandt", "department": "Directing", "job": "Director", "credit_id": "52fe489dc3a368484e10208f", "profile_path": "/x1z3Eo8ukAPm7JeuZTKxWZqpr4v.jpg", "id": 7865}], "vote_average": 6.0, "runtime": 98}, "139038": {"poster_path": "/ydPHfacCuSHkscuaG9L5GZ0YjL4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60141683, "overview": "A spoof of all the \"found-footage/documentary style\" films released in recent years.", "video": false, "id": 139038, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "A Haunted House", "tagline": "This $*%! ain't paranormal.", "vote_count": 200, "homepage": "https://www.facebook.com/AHauntedHouse?fref=ts", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/6OHNDLSvTxvis1oWGdIqmH8jrEH.jpg", "id": 251937, "name": "A Haunted House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2243537", "adult": false, "backdrop_path": "/AbgdeWvmTv3UI2zknDWzKiuFwrU.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Endgame Entertainment", "id": 1205}, {"name": "Wayans Bros. Entertainment", "id": 1608}, {"name": "IM Global", "id": 7437}], "release_date": "2013-01-11", "popularity": 0.547963257334582, "original_title": "A Haunted House", "budget": 2500000, "cast": [{"name": "Marlon Wayans", "character": "Malcolm", "id": 9562, "credit_id": "52fe4c5ac3a368484e1b3f33", "cast_id": 9, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 0}, {"name": "Essence Atkins", "character": "Keisha", "id": 154000, "credit_id": "52fe4c5ac3a368484e1b3f43", "cast_id": 13, "profile_path": "/3MC6xJrqXZ7LNJpyxC0RzPule72.jpg", "order": 1}, {"name": "Nick Swardson", "character": "Chip the Psychic", "id": 32907, "credit_id": "52fe4c5ac3a368484e1b3f37", "cast_id": 10, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 2}, {"name": "Cedric the Entertainer", "character": "Father Williams", "id": 5726, "credit_id": "52fe4c5ac3a368484e1b3f3b", "cast_id": 11, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 3}, {"name": "David Koechner", "character": "Dan the Security Man", "id": 28638, "credit_id": "52fe4c5ac3a368484e1b3f3f", "cast_id": 12, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 4}, {"name": "Dave Sheridan", "character": "Kisha's Mom", "id": 35701, "credit_id": "52fe4c5ac3a368484e1b3f47", "cast_id": 14, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 5}, {"name": "Liana Mendoza", "character": "Carmita", "id": 1107486, "credit_id": "52fe4c5ac3a368484e1b3f4b", "cast_id": 15, "profile_path": "/zVGoCH3e12a8edxMZtaPXoFHqMC.jpg", "order": 6}, {"name": "Jamie Noel", "character": "Juanita", "id": 1080246, "credit_id": "52fe4c5ac3a368484e1b3f4f", "cast_id": 16, "profile_path": "/gR5cfKBzveJBcqGTDE2fpRgNdvr.jpg", "order": 7}, {"name": "Marlene Forte", "character": "Rosa", "id": 146004, "credit_id": "52fe4c5ac3a368484e1b3f53", "cast_id": 17, "profile_path": "/qNgRzZvT0YyxaQELeTDGZw6ToDg.jpg", "order": 8}, {"name": "Affion Crockett", "character": "Ray-Ray", "id": 98394, "credit_id": "52fe4c5ac3a368484e1b3f57", "cast_id": 18, "profile_path": "/moqCMggBapY4mHArUjaRKZ2xzIn.jpg", "order": 9}, {"name": "Robin Thede", "character": "Kisha's Mom", "id": 1110105, "credit_id": "52fe4c5ac3a368484e1b3f5b", "cast_id": 19, "profile_path": "/mLaOq1IS6tulHuFlo2lDXaudpiX.jpg", "order": 10}, {"name": "Bobbie Lee", "character": "Thug", "id": 1110108, "credit_id": "52fe4c5ac3a368484e1b3f5f", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Damien Bray", "character": "Entity", "id": 1110109, "credit_id": "52fe4c5ac3a368484e1b3f63", "cast_id": 21, "profile_path": "/phq2CphI7PaIxOH1hIb70hJFttW.jpg", "order": 12}, {"name": "Joel Kelley Dauten", "character": "Egon", "id": 1110110, "credit_id": "52fe4c5ac3a368484e1b3f67", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Jordenn Thompson", "character": "Little Kisha", "id": 928306, "credit_id": "52fe4c5ac3a368484e1b3f6b", "cast_id": 23, "profile_path": "/a7z5hHQeJ4iQaT0pJxXWaAMRNPZ.jpg", "order": 14}], "directors": [{"name": "Michael Tiddes", "department": "Directing", "job": "Director", "credit_id": "52fe4c5ac3a368484e1b3f0b", "profile_path": null, "id": 1110102}], "vote_average": 5.6, "runtime": 86}, "7972": {"poster_path": "/1Bx9hPcOcytHMoeuWEdqndGB1F5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25005257, "overview": "When two brothers organize the robbery of their parents' jewelry store, the job goes horribly wrong, triggering a series of events that send them and their family hurtling towards a shattering climax.", "video": false, "id": 7972, "genres": [{"id": 18, "name": "Drama"}], "title": "Before the Devil Knows You're Dead", "tagline": "No one was supposed to get hurt.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0292963", "adult": false, "backdrop_path": "/93N1ShuTWxG8e8tkXTr6d2XLOwu.jpg", "production_companies": [{"name": "Capitol Films", "id": 826}, {"name": "Funky Buddha Productions", "id": 11542}, {"name": "Unity Productions", "id": 2287}, {"name": "Linsefilm", "id": 2286}], "release_date": "2007-09-26", "popularity": 0.612929085718666, "original_title": "Before the Devil Knows You're Dead", "budget": 18000000, "cast": [{"name": "Philip Seymour Hoffman", "character": "Andy", "id": 1233, "credit_id": "52fe448ac3a36847f809bb0d", "cast_id": 1, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "Hank", "id": 569, "credit_id": "52fe448ac3a36847f809bb11", "cast_id": 2, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Albert Finney", "character": "Charles", "id": 3926, "credit_id": "52fe448ac3a36847f809bb15", "cast_id": 3, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 2}, {"name": "Marisa Tomei", "character": "Gina", "id": 3141, "credit_id": "52fe448ac3a36847f809bb19", "cast_id": 4, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 3}, {"name": "Aleksa Palladino", "character": "Chris", "id": 53441, "credit_id": "52fe448ac3a36847f809bb1d", "cast_id": 5, "profile_path": "/nTpCRzn8raVlqLQfBP9oaAT3pXF.jpg", "order": 4}, {"name": "Michael Shannon", "character": "Dex", "id": 335, "credit_id": "52fe448ac3a36847f809bb21", "cast_id": 6, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 5}, {"name": "Amy Ryan", "character": "Martha", "id": 39388, "credit_id": "52fe448ac3a36847f809bb25", "cast_id": 7, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 6}, {"name": "Sarah Livingston", "character": "Danielle", "id": 53448, "credit_id": "52fe448ac3a36847f809bb29", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Br\u00edan F. O'Byrne", "character": "Bobby", "id": 31713, "credit_id": "52fe448ac3a36847f809bb2d", "cast_id": 9, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 8}, {"name": "Rosemary Harris", "character": "Nanette", "id": 18998, "credit_id": "52fe448ac3a36847f809bb31", "cast_id": 10, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 9}, {"name": "Blaine Horton", "character": "Justin", "id": 53453, "credit_id": "52fe448ac3a36847f809bb35", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Arija Bareikis", "character": "Kathrine", "id": 33432, "credit_id": "52fe448ac3a36847f809bb39", "cast_id": 12, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 11}, {"name": "Leonardo Cimino", "character": "William", "id": 12514, "credit_id": "52fe448ac3a36847f809bb3d", "cast_id": 13, "profile_path": "/gb2YuqRIifoTjX0F6YkYP4p4z29.jpg", "order": 12}, {"name": "Lee Wilkof", "character": "Jake", "id": 21154, "credit_id": "52fe448ac3a36847f809bb41", "cast_id": 14, "profile_path": "/hLMn7bvQy1kKuqMxhzOJQxQTjxt.jpg", "order": 13}, {"name": "Damon Gupton", "character": "Doctor", "id": 53454, "credit_id": "52fe448ac3a36847f809bb45", "cast_id": 15, "profile_path": "/1mZvC9YKcFciPIl5vUUP01F6Fjy.jpg", "order": 14}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe448ac3a36847f809bb4b", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 6.8, "runtime": 117}, "212778": {"poster_path": "/jc2BCqYtoyUM6rWdtW6KvJjL2Dq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45967935, "overview": "A chef who loses his restaurant job starts up a food truck in an effort to reclaim his creative promise, while piecing back together his estranged family.", "video": false, "id": 212778, "genres": [{"id": 35, "name": "Comedy"}], "title": "Chef", "tagline": "Starting from scratch never tasted so good", "vote_count": 348, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2883512", "adult": false, "backdrop_path": "/sbH9aJV7fqhRaazCSWuOwNDIf1m.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Aldamisa Entertainment", "id": 11006}, {"name": "Kilburn Media", "id": 21887}, {"name": "Fetisov Teterin Films", "id": 30030}], "release_date": "2014-05-09", "popularity": 2.11377657922032, "original_title": "Chef", "budget": 0, "cast": [{"name": "Jon Favreau", "character": "Carl Casper", "id": 15277, "credit_id": "52fe4db6c3a368484e1f89b9", "cast_id": 10, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Martin", "id": 5723, "credit_id": "52fe4db6c3a368484e1f89bd", "cast_id": 11, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Bobby Cannavale", "character": "Tony", "id": 21127, "credit_id": "52fe4db6c3a368484e1f89c1", "cast_id": 12, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 2}, {"name": "Emjay Anthony", "character": "Percy", "id": 1259762, "credit_id": "52fe4db6c3a368484e1f89c9", "cast_id": 14, "profile_path": "/vGuvafo0ZFRlmv77gxODfY3lCpx.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Molly", "id": 1245, "credit_id": "52fe4db6c3a368484e1f898f", "cast_id": 2, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Dustin Hoffman", "character": "Riva", "id": 4483, "credit_id": "52fe4db6c3a368484e1f8993", "cast_id": 3, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Inez", "id": 63522, "credit_id": "52fe4db6c3a368484e1f8997", "cast_id": 4, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Oliver Platt", "character": "Ramsey Michel", "id": 17485, "credit_id": "52fe4db6c3a368484e1f89c5", "cast_id": 13, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 7}, {"name": "Amy Sedaris", "character": "Jen", "id": 12110, "credit_id": "53687e7e0e0a2647cb0076c0", "cast_id": 15, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 8}, {"name": "Robert Downey Jr.", "character": "Marvin", "id": 3223, "credit_id": "52fe4db6c3a368484e1f898b", "cast_id": 1, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 9}, {"name": "Russell Peters", "character": "Miami Cop", "id": 82417, "credit_id": "53687e940e0a2647cb0076c9", "cast_id": 16, "profile_path": "/hL7XitH9iuUonknMr8mpSDC51FG.jpg", "order": 10}, {"name": "Chase Grimm", "character": "Vendor", "id": 1317000, "credit_id": "53687ea40e0a2647ce0073c1", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Will Schutze", "character": "Mr. Bonetangles", "id": 1317001, "credit_id": "53687ec00e0a2647c4007810", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Gloria Sandoval", "character": "Flora", "id": 1188686, "credit_id": "53687edc0e0a2647cb0076d5", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Jose C. Hernandez", "character": "Abuelito", "id": 1317002, "credit_id": "53687f0b0e0a2647cb0076e0", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe4db6c3a368484e1f899d", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 7.3, "runtime": 115}, "89899": {"poster_path": "/udrcXlDU7U0bX7ufh7w4UyhD8hD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A series of short films set around the theme of infidelity.", "video": false, "id": 89899, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Players", "tagline": "", "vote_count": 53, "homepage": "http://www.lesinfideles-lefilm.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2087850", "adult": false, "backdrop_path": "/xZYRKMm2lJXqxWNMIaE2rQtOXCo.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Black Dynamite Films", "id": 8728}], "release_date": "2012-02-29", "popularity": 0.703400411828663, "original_title": "Les infid\u00e8les", "budget": 0, "cast": [{"name": "Gilles Lellouche", "character": "Greg / Nicolas / Bernard / Antoine / Eric", "id": 54291, "credit_id": "52fe4a339251416c910c69bd", "cast_id": 14, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 0}, {"name": "Guillaume Canet", "character": "Thibault", "id": 19866, "credit_id": "52fe4a339251416c910c69c1", "cast_id": 16, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 1}, {"name": "Aina Clotet", "character": "Julia", "id": 938080, "credit_id": "52fe4a339251416c910c69c5", "cast_id": 17, "profile_path": "/fo5kTO7UIAvwgu4UfJFH5j9NQ5x.jpg", "order": 2}, {"name": "Jean Dujardin", "character": "Fred / Olivier / Fran\u00e7ois / Laurent / James", "id": 56024, "credit_id": "52fe4a339251416c910c69c9", "cast_id": 19, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 3}, {"name": "Charles G\u00e9rard", "character": "Richard", "id": 55920, "credit_id": "52fe4a339251416c910c69cd", "cast_id": 20, "profile_path": "/jXmLpLuS3EYkQVBEYFiX455ZMbI.jpg", "order": 4}, {"name": "Rebecca Jameson", "character": "", "id": 209656, "credit_id": "52fe4a339251416c910c69d1", "cast_id": 21, "profile_path": "/jxP4uvbKrQOto9C7WBI1zQrivPI.jpg", "order": 5}, {"name": "Sandrine Kiberlain", "character": "Marie-Christine", "id": 81821, "credit_id": "52fe4a339251416c910c69d5", "cast_id": 22, "profile_path": "/nISERu1XbLVgX4OffyA8nnfBEpq.jpg", "order": 6}, {"name": "Alexandra Lamy", "character": "Lisa", "id": 113617, "credit_id": "52fe4a339251416c910c69d9", "cast_id": 23, "profile_path": "/b7QNDdsqzrI4Wfy26MsigfMftho.jpg", "order": 7}, {"name": "Mathilda May", "character": "Ariane", "id": 44233, "credit_id": "52fe4a339251416c910c69dd", "cast_id": 24, "profile_path": "/nNqf6LXM52lVKI7xFdynKorf1zH.jpg", "order": 8}, {"name": "G\u00e9raldine Nakache", "character": "Christine", "id": 114953, "credit_id": "52fe4a339251416c910c69e1", "cast_id": 25, "profile_path": "/zLoLsZlHqhKkpJHdQWNFb512t2V.jpg", "order": 9}, {"name": "Isabelle Nanty", "character": "St\u00e9phanie", "id": 2412, "credit_id": "52fe4a339251416c910c69e5", "cast_id": 26, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 10}, {"name": "Manu Payet", "character": "Simon", "id": 83967, "credit_id": "52fe4a339251416c910c69e9", "cast_id": 27, "profile_path": "/q4tzH08ExGGlhasVMxsCUIbnNph.jpg", "order": 11}, {"name": "Clara Ponsot", "character": "In\u00e8s", "id": 938082, "credit_id": "52fe4a339251416c910c69ed", "cast_id": 28, "profile_path": "/fUMn5nohj85bUtxi9eA12TZZpnk.jpg", "order": 12}, {"name": "Lionel Abelanski", "character": "Le directeur de s\u00e9minaire", "id": 7278, "credit_id": "52fe4a349251416c910c6a09", "cast_id": 34, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 13}, {"name": "Bastien Bouillon", "character": "Valentin", "id": 910944, "credit_id": "53ee2522c3a368167c001416", "cast_id": 35, "profile_path": "/k20Uc0q06eitL7597QVrWBkzCla.jpg", "order": 14}], "directors": [{"name": "Emmanuelle Bercot", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6977", "profile_path": "/6qlcTXvdSlTHPjZuWjCYZLzOb4e.jpg", "id": 25340}, {"name": "Fred Cavay\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c697d", "profile_path": "/mTRrHYTxjVCPAA9VHxqSsOgccUv.jpg", "id": 77008}, {"name": "Alexandre Courtes", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6983", "profile_path": null, "id": 938077}, {"name": "Jean Dujardin", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6989", "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "id": 56024}, {"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c698f", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}, {"name": "Eric Lartigau", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6995", "profile_path": "/7tMUb274bl7JqTzguhWnovKx4Pw.jpg", "id": 85340}, {"name": "Gilles Lellouche", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c69b3", "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "id": 54291}], "vote_average": 4.9, "runtime": 109}, "7980": {"poster_path": "/6PpGOkpb8KpCMe15FcfBd7lbP5d.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93525586, "overview": "When 14-year-old Susie Salmon is murdered, she watches from above as her family deals with her tragic death -- and as her killer prepares to strike again. Torn between vengeance and healing, Susie's loved ones are forever changed.", "video": false, "id": 7980, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Lovely Bones", "tagline": "The story of a life and everything that came after...", "vote_count": 250, "homepage": "http://www.lovelybones.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0380510", "adult": false, "backdrop_path": "/1ob8hisSbDnG4iV19XSZJN97sKI.jpg", "production_companies": [{"name": "WingNut Films", "id": 11}, {"name": "Key Creatives", "id": 2300}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Film4", "id": 9349}, {"name": "New Zealand Large Budget Screen Production Grant", "id": 12248}, {"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2009-12-26", "popularity": 0.797046501334261, "original_title": "The Lovely Bones", "budget": 65000000, "cast": [{"name": "Rachel Weisz", "character": "Abigail Salmon", "id": 3293, "credit_id": "52fe448bc3a36847f809be65", "cast_id": 3, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Jack Salmon", "id": 13240, "credit_id": "52fe448bc3a36847f809be69", "cast_id": 4, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Lynn", "id": 4038, "credit_id": "52fe448bc3a36847f809be6d", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Saoirse Ronan", "character": "Susie Salmon", "id": 36592, "credit_id": "52fe448bc3a36847f809be71", "cast_id": 6, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 3}, {"name": "Stanley Tucci", "character": "George Harvey", "id": 2283, "credit_id": "52fe448bc3a36847f809be75", "cast_id": 7, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 4}, {"name": "Michael Imperioli", "character": "Len Fenerman", "id": 11486, "credit_id": "52fe448bc3a36847f809be79", "cast_id": 8, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 5}, {"name": "Rose McIver", "character": "Lindsey", "id": 53485, "credit_id": "52fe448bc3a36847f809be7d", "cast_id": 9, "profile_path": "/wMbfF650SDV9Oyy78EvYOi9aQqV.jpg", "order": 6}, {"name": "Carolyn Dando", "character": "Ruth Connors", "id": 53486, "credit_id": "52fe448bc3a36847f809be81", "cast_id": 10, "profile_path": "/7iv87g89sD8zqZVVBeJtAfNBrjV.jpg", "order": 7}, {"name": "Christian Thomas Ashdale", "character": "Buckley Salmon", "id": 1128255, "credit_id": "52fe448bc3a36847f809bf0f", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Reece Ritchie", "character": "Ray Singh", "id": 54810, "credit_id": "52fe448bc3a36847f809bf13", "cast_id": 35, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 9}, {"name": "Nikki SooHoo", "character": "Holly", "id": 63676, "credit_id": "52fe448bc3a36847f809bf17", "cast_id": 36, "profile_path": "/zLFLu1UoK2e70wZ1iAnbaa3e9g3.jpg", "order": 10}, {"name": "Jake Abel", "character": "Brian Nelson", "id": 105727, "credit_id": "52fe448bc3a36847f809bf1f", "cast_id": 38, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 12}, {"name": "Amanda Michalka", "character": "Clarissa", "id": 113926, "credit_id": "52fe448bc3a36847f809bf23", "cast_id": 39, "profile_path": "/5bj8eyZsc0UbZAxhhq8krrx5ygn.jpg", "order": 13}, {"name": "Thomas McCarthy", "character": "Principal Caden", "id": 17867, "credit_id": "52fe448bc3a36847f809bf27", "cast_id": 40, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 14}, {"name": "Stink Fisher", "character": "Mr. Connors", "id": 155081, "credit_id": "52fe448bc3a36847f809bf2b", "cast_id": 41, "profile_path": "/3AykyXSvy6l0iYEn7QHhlgDqaJH.jpg", "order": 15}, {"name": "Andrew James Allen", "character": "Samuel Heckler", "id": 1212194, "credit_id": "53a662e60e0a26143f002dce", "cast_id": 43, "profile_path": "/aoZAfQYmY39QgUUmfK0RRscR6D.jpg", "order": 16}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe448bc3a36847f809be61", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.4, "runtime": 135}, "188207": {"poster_path": "/eIHrBHeqfQodgEjSPdZWh9b5lV3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11775292, "overview": "In Ancient Greece 1200 B.C., a queen succumbs to the lust of Zeus to bear a son promised to overthrow the tyrannical rule of the king and restore peace to a land in hardship. But this prince, Hercules, knows nothing of his real identity or his destiny. He desires only one thing: the love of Hebe, Princess of Crete, who has been promised to his own brother. When Hercules learns of his greater purpose, he must choose: to flee with his true love or to fulfill his destiny and become the true hero of his time. The story behind one of the greatest myths is revealed in this action-packed epic - a tale of love, sacrifice and the strength of the human spirit.", "video": false, "id": 188207, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "The Legend of Hercules", "tagline": "Every Man Has a Destiny", "vote_count": 244, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1043726", "adult": false, "backdrop_path": "/xptExiX6KgSVgVw15XOh4Nf2DQq.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}], "release_date": "2014-01-10", "popularity": 1.02111919079229, "original_title": "The Legend of Hercules", "budget": 70000000, "cast": [{"name": "Kellan Lutz", "character": "Hercules", "id": 34502, "credit_id": "52fe4d329251416c751333b3", "cast_id": 1, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 0}, {"name": "Liam McIntyre", "character": "Sotiris", "id": 934219, "credit_id": "52fe4d329251416c751333b7", "cast_id": 2, "profile_path": "/63TYSVIX456YNsui1Paufw5kM11.jpg", "order": 1}, {"name": "Gaia Weiss", "character": "Hebe", "id": 1165384, "credit_id": "52fe4d329251416c751333c1", "cast_id": 4, "profile_path": "/4uBNMI8idFLWL4lRC4mZpRCKmFl.jpg", "order": 2}, {"name": "Scott Adkins", "character": "King Amphitryon", "id": 78110, "credit_id": "52fe4d329251416c751333c5", "cast_id": 5, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 3}, {"name": "Roxanne McKee", "character": "Queen Alcmene", "id": 228969, "credit_id": "52fe4d329251416c751333c9", "cast_id": 6, "profile_path": "/oJYawHvbZM48lNTGWKATapFzplL.jpg", "order": 4}, {"name": "Liam Garrigan", "character": "Iphicles", "id": 165441, "credit_id": "52fe4d329251416c751333cd", "cast_id": 7, "profile_path": "/bE1l5NEOmtn3k1kiGH4ddJW7jpH.jpg", "order": 5}, {"name": "Jukka Hilden", "character": "Creon", "id": 60805, "credit_id": "52fe4d329251416c751333d1", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Rade \u0160erbed\u017eija", "character": "Chiron", "id": 1118, "credit_id": "52fe4d329251416c751333db", "cast_id": 10, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 7}, {"name": "Johnathon Schaech", "character": "Tarak", "id": 51670, "credit_id": "52fe4d329251416c7513344b", "cast_id": 29, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 8}, {"name": "Luke Newberry", "character": "Agamemnon", "id": 214019, "credit_id": "52fe4d329251416c7513344f", "cast_id": 30, "profile_path": "/9hKoTMk8IE7vGEciYWT883ZyA99.jpg", "order": 9}, {"name": "Kenneth Cranham", "character": "Lucius", "id": 26258, "credit_id": "52fe4d329251416c75133453", "cast_id": 31, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 10}, {"name": "Sarai Givaty", "character": "Saphirra", "id": 206024, "credit_id": "52fe4d329251416c75133457", "cast_id": 32, "profile_path": "/i52Gaf6Q0NcisixV38ytRCEdDYj.jpg", "order": 11}, {"name": "Dimiter Doichinov", "character": "King Galenus / Champion #1", "id": 1350263, "credit_id": "53e1edd0c3a3684850000458", "cast_id": 67, "profile_path": null, "order": 12}, {"name": "Nikolai Sotirov", "character": "King Tallas", "id": 94702, "credit_id": "53e1edeac3a368484a0004cb", "cast_id": 68, "profile_path": null, "order": 13}, {"name": "Radoslav Parvanov", "character": "Half Face / Champion", "id": 1108570, "credit_id": "53e1ee08c3a3684850000461", "cast_id": 69, "profile_path": "/81LnVL0LlzMmOk7xQGY9htYvEpr.jpg", "order": 14}, {"name": "Spencer Wilding", "character": "Humbaba", "id": 25451, "credit_id": "53e1ee29c3a368485000046a", "cast_id": 70, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 15}, {"name": "Bashar Rahal", "character": "Battalion Commander", "id": 105688, "credit_id": "53e1ee49c3a36848600003da", "cast_id": 71, "profile_path": "/kTDG0QqFEwjeidB4OaSL7E0fDfC.jpg", "order": 16}, {"name": "Vlado Mihailov", "character": "Battalion Commander", "id": 61861, "credit_id": "53e1ee60c3a3684850000477", "cast_id": 72, "profile_path": null, "order": 17}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe4d329251416c751333bd", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 4.6, "runtime": 99}, "7985": {"poster_path": "/f1onDDba0W85o2eIZr4vcfqI47j.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Forlorn heiress Penelope Wilhern is cursed, and the only way out is to fall in love with someone of suitable stock. But how can she find her soul mate when she's sequestered inside her family's estate with only her parents to keep her company. This untraditional fairy tale about a girl who bucks convention to create her own happy ending.", "video": false, "id": 7985, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Penelope", "tagline": "A fairytale like no other.", "vote_count": 75, "homepage": "http://www.penelopethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472160", "adult": false, "backdrop_path": "/8fYXNzpwjJIUmP6ZtxPO3zpIXJa.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Tatira-Hiller Productions", "id": 273}, {"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "Type A Films", "id": 2308}], "release_date": "2006-03-01", "popularity": 0.47251668431323, "original_title": "Penelope", "budget": 15000000, "cast": [{"name": "Christina Ricci", "character": "Penelope Wilhern", "id": 6886, "credit_id": "52fe448bc3a36847f809c129", "cast_id": 1, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 0}, {"name": "James McAvoy", "character": "Johnny/Max", "id": 5530, "credit_id": "52fe448bc3a36847f809c12d", "cast_id": 2, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Jessica Wilhern", "id": 11514, "credit_id": "52fe448bc3a36847f809c131", "cast_id": 3, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "Reese Witherspoon", "character": "Annie", "id": 368, "credit_id": "52fe448bc3a36847f809c13d", "cast_id": 6, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 3}, {"name": "Peter Dinklage", "character": "Lemon", "id": 22970, "credit_id": "52fe448bc3a36847f809c135", "cast_id": 4, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 4}, {"name": "Richard E. Grant", "character": "Franklin Wilhern", "id": 20766, "credit_id": "52fe448bc3a36847f809c139", "cast_id": 5, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 5}, {"name": "Simon Woods", "character": "Edward Vanderman", "id": 36665, "credit_id": "52fe448bc3a36847f809c141", "cast_id": 7, "profile_path": "/kU3NE79wuOPeIZ8hRKGUkDc203X.jpg", "order": 6}, {"name": "Nigel Havers", "character": "Mr. Vanderman", "id": 53517, "credit_id": "52fe448bc3a36847f809c145", "cast_id": 8, "profile_path": "/yujuXwxZibgl7NMhk0uZ1FX7Nyf.jpg", "order": 7}, {"name": "Christina Greatrex", "character": "Mrs. Vanderman", "id": 53518, "credit_id": "52fe448bc3a36847f809c149", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Michael Feast", "character": "Jake/Witch", "id": 26259, "credit_id": "52fe448bc3a36847f809c14d", "cast_id": 10, "profile_path": "/ZeCV7CPVG63XE9Eria0pTPRgXh.jpg", "order": 9}, {"name": "Ronni Ancona", "character": "Wanda", "id": 47723, "credit_id": "52fe448bc3a36847f809c151", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Lenny Henry", "character": "Krull", "id": 53519, "credit_id": "52fe448bc3a36847f809c155", "cast_id": 12, "profile_path": "/nVvimLFmbCImntmAlqaOwRTWf1D.jpg", "order": 11}], "directors": [{"name": "Mark Palansky", "department": "Directing", "job": "Director", "credit_id": "52fe448bc3a36847f809c1a3", "profile_path": null, "id": 53525}], "vote_average": 6.5, "runtime": 103}, "16186": {"poster_path": "/dB2WX5romhtjQ0uF2ma6yedRd54.jpg", "production_countries": [], "revenue": 0, "overview": "Charles McCarter and his wife Helen are about to celebrate their 18th-wedding anniversary when Helen comes home to find her clothes packed up in a U-Haul van parked in the driveway. Charles is divorcing Her. Helen moves in with her grandmother Madea, an old woman who doesn't take any lip from anyone. Madea helps Helen through these tough times by showing her what is really important in life.", "video": false, "id": 16186, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Diary of a Mad Black Woman", "tagline": "", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0422093", "adult": false, "backdrop_path": "/gX5n6DzXF3fOaXRlRiejQRTSBWz.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}], "release_date": "2005-02-25", "popularity": 0.332550353740787, "original_title": "Diary of a Mad Black Woman", "budget": 0, "cast": [{"name": "Kimberly Elise", "character": "Helen", "id": 55314, "credit_id": "52fe46b49251416c75080b19", "cast_id": 1, "profile_path": "/315K0qi3aFmcgGweUiLwhdrvcfU.jpg", "order": 0}, {"name": "Steve Harris", "character": "Charles", "id": 2202, "credit_id": "52fe46b49251416c75080b1d", "cast_id": 2, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 1}, {"name": "Tyler Perry", "character": "Madea", "id": 80602, "credit_id": "52fe46b49251416c75080b21", "cast_id": 3, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 2}, {"name": "Tyler Perry", "character": "Brian", "id": 80602, "credit_id": "52fe46b49251416c75080b25", "cast_id": 4, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 3}, {"name": "Tyler Perry", "character": "Joe", "id": 80602, "credit_id": "52fe46b49251416c75080b29", "cast_id": 5, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 4}, {"name": "Shemar Moore", "character": "Orlando", "id": 50266, "credit_id": "52fe46b49251416c75080b33", "cast_id": 7, "profile_path": "/yHhjKqWqfyJbMMIhfLRDfigwm7L.jpg", "order": 5}, {"name": "Vickie Eng", "character": "Doctor", "id": 208316, "credit_id": "54f09e78925141795f008869", "cast_id": 9, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 6}, {"name": "Vickie Eng", "character": "Christina", "id": 208316, "credit_id": "54f09e83c3a3686b9a0061a5", "cast_id": 10, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 7}], "directors": [{"name": "Darren Grant", "department": "Directing", "job": "Director", "credit_id": "5483b5419251416e7e009935", "profile_path": null, "id": 77441}], "vote_average": 6.5, "runtime": 116}, "72331": {"poster_path": "/lHcaLiPDDrLmJAL2MTlMzgM2s2x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112265139, "overview": "President Lincoln's mother is killed by a supernatural creature, which fuels his passion to crush vampires and their slave-owning helpers.", "video": false, "id": 72331, "genres": [{"id": 27, "name": "Horror"}], "title": "Abraham Lincoln: Vampire Hunter", "tagline": "Are you a patriot or a vampire?", "vote_count": 574, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1611224", "adult": false, "backdrop_path": "/6dJgvOSLD6DKYqd29HsC10Cjyii.jpg", "production_companies": [{"name": "Tim Burton Productions", "id": 8601}, {"name": "Abraham Productions", "id": 36430}, {"name": "Bazelevs Production", "id": 1038}, {"name": "Location Gourmet", "id": 36431}], "release_date": "2012-06-22", "popularity": 0.716150653487074, "original_title": "Abraham Lincoln: Vampire Hunter", "budget": 69000000, "cast": [{"name": "Benjamin Walker", "character": "Abraham Lincoln", "id": 239996, "credit_id": "52fe4864c3a368484e0f6683", "cast_id": 8, "profile_path": "/zd56RC1ifqvQyA90cjtvYD4sO3I.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Henry Sturgess", "id": 55470, "credit_id": "52fe4865c3a368484e0f6701", "cast_id": 39, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Anthony Mackie", "character": "Will Johnson", "id": 53650, "credit_id": "52fe4864c3a368484e0f667f", "cast_id": 7, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 2}, {"name": "Mary Elizabeth Winstead", "character": "Mary Todd Lincoln", "id": 17628, "credit_id": "52fe4864c3a368484e0f6677", "cast_id": 3, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 3}, {"name": "Rufus Sewell", "character": "Adam", "id": 17328, "credit_id": "52fe4864c3a368484e0f667b", "cast_id": 5, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 4}, {"name": "John Rothman", "character": "Jefferson Davis", "id": 60205, "credit_id": "52fe4865c3a368484e0f671b", "cast_id": 45, "profile_path": "/bRSoDm75c5fKBbCrbrXwaPiAeST.jpg", "order": 5}, {"name": "Marton Csokas", "character": "Jack Barts", "id": 20982, "credit_id": "52fe4865c3a368484e0f671f", "cast_id": 46, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 6}, {"name": "Alex Lombard", "character": "Gabrielle", "id": 565500, "credit_id": "52fe4864c3a368484e0f6687", "cast_id": 14, "profile_path": "/12KAJdNlqWK1ACdsKTHDw0MUiHr.jpg", "order": 7}, {"name": "Jimmi Simpson", "character": "Joshua Speed", "id": 22125, "credit_id": "52fe4865c3a368484e0f670d", "cast_id": 42, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 8}, {"name": "Teri Wyble", "character": "Henry's Wife", "id": 565501, "credit_id": "52fe4864c3a368484e0f668b", "cast_id": 15, "profile_path": "/4peyoUZx7wqQpLCII4Kcb5VmaaV.jpg", "order": 9}, {"name": "Cameron M. Brown", "character": "Willie Lincoln", "id": 565503, "credit_id": "52fe4864c3a368484e0f668f", "cast_id": 17, "profile_path": "/l66Cc8vED4OZ0n7MP320TX9xqvZ.jpg", "order": 10}, {"name": "Frank Brennan", "character": "Jeb Nolan", "id": 565504, "credit_id": "52fe4864c3a368484e0f6693", "cast_id": 18, "profile_path": "/A1Z23UqiwBxX66iJTB4q9xjnG5P.jpg", "order": 11}, {"name": "John Neisler", "character": "Rev. Charles Dresser", "id": 565505, "credit_id": "52fe4864c3a368484e0f6697", "cast_id": 19, "profile_path": "/yfqtwgV4ettobFyPn6x7LW6u5AI.jpg", "order": 12}, {"name": "Meade Patton", "character": "Nancy Lincoln's Doctor", "id": 565506, "credit_id": "52fe4864c3a368484e0f669b", "cast_id": 20, "profile_path": "/nFielXY5gJS2HJFjP0PrMaKAoRL.jpg", "order": 13}, {"name": "Simeon Sj\u00f6berg", "character": "Edward's Dancer #16", "id": 565507, "credit_id": "52fe4864c3a368484e0f669f", "cast_id": 21, "profile_path": "/iqSTfiVrsXEzOz6WkwuUUDq9dN3.jpg", "order": 14}, {"name": "James Rawlings", "character": "Congress Man", "id": 565508, "credit_id": "52fe4864c3a368484e0f66a3", "cast_id": 22, "profile_path": "/cxADb4TZ27Rsfww4lcd74iJMBwm.jpg", "order": 15}, {"name": "Alan Tudyk", "character": "Stephen A. Douglas", "id": 21088, "credit_id": "52fe4865c3a368484e0f6705", "cast_id": 40, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 16}, {"name": "Robin McLeavy", "character": "Nancy Hanks Lincoln", "id": 136348, "credit_id": "52fe4865c3a368484e0f6709", "cast_id": 41, "profile_path": "/hOVhmkIWqWy7CBGXyNdZmZEaHza.jpg", "order": 17}, {"name": "Erin Wasson", "character": "Vadoma", "id": 147721, "credit_id": "52fe4865c3a368484e0f6717", "cast_id": 44, "profile_path": "/6SiaA7RtdRVIPlb6BTBNRR6KH0q.jpg", "order": 18}, {"name": "Jaqueline Fleming", "character": "Harriet Tubman", "id": 62072, "credit_id": "52fe4865c3a368484e0f6723", "cast_id": 47, "profile_path": "/bAR3JD4dbuknBbPdtsuytWGgDaU.jpg", "order": 19}, {"name": "Laura Cayouette", "character": "Vadoma Maid", "id": 565498, "credit_id": "52fe4865c3a368484e0f6727", "cast_id": 48, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 20}, {"name": "Joseph Mawle", "character": "Thomas Lincoln", "id": 119783, "credit_id": "52fe4865c3a368484e0f672b", "cast_id": 49, "profile_path": "/a7334sICnKRe5RFQEECQsvoyQ8P.jpg", "order": 21}, {"name": "Lux Haney-Jardine", "character": "Young Abraham Lincoln", "id": 1271772, "credit_id": "52fe4865c3a368484e0f672f", "cast_id": 50, "profile_path": "/nWeBQur85McjXYN8R8PzqM60oy3.jpg", "order": 22}, {"name": "Curtis Harris", "character": "Young Will", "id": 221087, "credit_id": "52fe4865c3a368484e0f6733", "cast_id": 51, "profile_path": "/t0bj62C7QmUouCw2QN2imi527hw.jpg", "order": 23}, {"name": "Bill Martin Williams", "character": "RR Pastor", "id": 1271773, "credit_id": "52fe4865c3a368484e0f6737", "cast_id": 52, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 24}], "directors": [{"name": "Timur Bekmambetov", "department": "Directing", "job": "Director", "credit_id": "52fe4865c3a368484e0f6713", "profile_path": "/7XQsDvrshgbFYvQN0KgUmI691uF.jpg", "id": 23430}], "vote_average": 5.5, "runtime": 94}, "8005": {"poster_path": "/3pd3sdot0HfQTFzqgTUzaF4kcxP.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35739755, "overview": "Robin Hood comes home after fighting in the Crusades to learn that the noble King Richard is in exile and that the despotic King John now rules England, with the help of the Sheriff of Rottingham. Robin Hood assembles a band of fellow patriots to do battle with King John and the Sheriff.", "video": false, "id": 8005, "genres": [{"id": 35, "name": "Comedy"}], "title": "Robin Hood: Men in Tights", "tagline": "The legend had it coming... Find out where Robin Hood put his Little John, what made Will Scarlet, and what did Friar Tuck into his tights that Maid Marion all of a quiver?", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107977", "adult": false, "backdrop_path": "/oq3KGdwfK4XRyemPTOBEP1QviIi.jpg", "production_companies": [{"name": "Brooksfilms Ltd.", "id": 617}, {"name": "Gaumont", "id": 9}], "release_date": "1993-07-28", "popularity": 0.861126967946469, "original_title": "Robin Hood: Men in Tights", "budget": 20000000, "cast": [{"name": "Cary Elwes", "character": "Robin Hood", "id": 2130, "credit_id": "52fe448cc3a36847f809c3a5", "cast_id": 1, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 0}, {"name": "Dom DeLuise", "character": "Don Giovanni", "id": 6844, "credit_id": "52fe448cc3a36847f809c3d5", "cast_id": 13, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 1}, {"name": "Roger Rees", "character": "Sheriff of Rotingham", "id": 16407, "credit_id": "52fe448cc3a36847f809c3ad", "cast_id": 3, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 2}, {"name": "Dave Chappelle", "character": "Ahchoo", "id": 4169, "credit_id": "52fe448cc3a36847f809c3b9", "cast_id": 6, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 3}, {"name": "Eric Allan Kramer", "character": "Little John", "id": 41125, "credit_id": "52fe448cc3a36847f809c3c5", "cast_id": 9, "profile_path": "/dHXrTKp6Ksa4TzC2SJCGHzKKzpI.jpg", "order": 4}, {"name": "Patrick Stewart", "character": "King Richard", "id": 2387, "credit_id": "52fe448cc3a36847f809c3d1", "cast_id": 12, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 5}, {"name": "Megan Cavanagh", "character": "Broomhilde", "id": 53570, "credit_id": "52fe448cc3a36847f809c3c1", "cast_id": 8, "profile_path": "/xZML4JXgD7Yd0f19hXhq7bXLXfC.jpg", "order": 6}, {"name": "Richard Lewis", "character": "Prince John", "id": 6105, "credit_id": "52fe448cc3a36847f809c3a9", "cast_id": 2, "profile_path": "/zc2BlkPtYJAsIAVbZ4zQPEMW1t6.jpg", "order": 9}, {"name": "Isaac Hayes", "character": "Asneeze", "id": 6542, "credit_id": "52fe448cc3a36847f809c3bd", "cast_id": 7, "profile_path": "/4igh7emwzt4xBLw1r05gCUHxwzD.jpg", "order": 10}, {"name": "Amy Yasbeck", "character": "Maid Marian", "id": 1219, "credit_id": "52fe448cc3a36847f809c3b1", "cast_id": 4, "profile_path": "/p2wXpK7wRwLre2e37Z6QQ6BvcUg.jpg", "order": 11}, {"name": "Mark Blankfield", "character": "Blinkin", "id": 29709, "credit_id": "52fe448cc3a36847f809c3b5", "cast_id": 5, "profile_path": "/r537yoz3NyRB5I3OZaXqrUH2TaA.jpg", "order": 11}, {"name": "Matthew Porretta", "character": "Will Scarlet O'Hara", "id": 53571, "credit_id": "52fe448cc3a36847f809c3c9", "cast_id": 10, "profile_path": "/w8vC9WumfJl6XyRecgav8Pvp8C1.jpg", "order": 11}, {"name": "Tracey Ullman", "character": "Latrine", "id": 30364, "credit_id": "52fe448cc3a36847f809c3cd", "cast_id": 11, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 12}, {"name": "Dick Van Patten", "character": "The Abbot", "id": 14671, "credit_id": "52fe448cc3a36847f809c3d9", "cast_id": 14, "profile_path": "/gZumTJacsExMTwMwNCAQ54i2k2l.jpg", "order": 13}, {"name": "Robert Ridgely", "character": "The Hangman", "id": 25626, "credit_id": "52fe448cc3a36847f809c3dd", "cast_id": 15, "profile_path": "/sxvnvaZRpOhFqXk7yiN8iJE9Elw.jpg", "order": 14}, {"name": "Mel Brooks", "character": "Rabbi Tuckman", "id": 14639, "credit_id": "52fe448cc3a36847f809c405", "cast_id": 22, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 15}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a36847f809c3e3", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 6.2, "runtime": 104}, "57158": {"poster_path": "/gQCiuxGsfiXH1su6lp9n0nd0UeH.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 958400000, "overview": "The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.", "video": false, "id": 57158, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Hobbit: The Desolation of Smaug", "tagline": "Beyond darkness... beyond desolation... lies the greatest danger of all.", "vote_count": 1579, "homepage": "http://www.thehobbit.com/", "belongs_to_collection": {"backdrop_path": "/7wO7MSnP5UcwR2cTHdJFF1vP4Ie.jpg", "poster_path": "/hQghXOjSS2xfzx9XnMyZqt8brCF.jpg", "id": 121938, "name": "The Hobbit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1170358", "adult": false, "backdrop_path": "/hyR7Fs6Tepgu3yCQGtgO4Ilz9tY.jpg", "production_companies": [{"name": "WingNut Films", "id": 11}, {"name": "New Line Cinema", "id": 12}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}], "release_date": "2013-12-13", "popularity": 7.4804638119443, "original_title": "The Hobbit: The Desolation of Smaug", "budget": 250000000, "cast": [{"name": "Martin Freeman", "character": "Bilbo Baggins", "id": 7060, "credit_id": "52fe4926c3a36847f818b775", "cast_id": 3, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf", "id": 1327, "credit_id": "52fe4926c3a36847f818b779", "cast_id": 7, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Richard Armitage", "character": "Thorin Oakenshield", "id": 30315, "credit_id": "52fe4926c3a36847f818b7c9", "cast_id": 26, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 2}, {"name": "Ken Stott", "character": "Balin", "id": 25136, "credit_id": "52fe4926c3a36847f818b7e9", "cast_id": 35, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 3}, {"name": "Graham McTavish", "character": "Dwalin", "id": 95047, "credit_id": "52fe4926c3a36847f818b7ed", "cast_id": 36, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 4}, {"name": "William Kircher", "character": "Bifur", "id": 67123, "credit_id": "52fe4926c3a36847f818b7e1", "cast_id": 33, "profile_path": "/pgSkxH8LeJhNWKwG3D5690ZTLbs.jpg", "order": 5}, {"name": "James Nesbitt", "character": "Bofur", "id": 34715, "credit_id": "52fe4926c3a36847f818b7f1", "cast_id": 37, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 6}, {"name": "Stephen Hunter", "character": "Bombur", "id": 1193834, "credit_id": "52fe4926c3a36847f818b7dd", "cast_id": 32, "profile_path": "/xGKavu5mcGBOQMSawk9voZeEzN6.jpg", "order": 7}, {"name": "Dean O'Gorman", "character": "Fili", "id": 152566, "credit_id": "52fe4926c3a36847f818b7b5", "cast_id": 21, "profile_path": "/lSXxMaASqm9TfnKaDNaxolEOW3A.jpg", "order": 8}, {"name": "Aidan Turner", "character": "Kili", "id": 207558, "credit_id": "52fe4926c3a36847f818b7e5", "cast_id": 34, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 9}, {"name": "Benedict Cumberbatch", "character": "Smaug / The Necromancer", "id": 71580, "credit_id": "52fe4926c3a36847f818b7ad", "cast_id": 19, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 10}, {"name": "Lee Pace", "character": "Thranduil", "id": 72095, "credit_id": "52fe4926c3a36847f818b7bd", "cast_id": 23, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 11}, {"name": "Luke Evans", "character": "Bard the Bowman", "id": 114019, "credit_id": "52fe4926c3a36847f818b7cd", "cast_id": 27, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 12}, {"name": "Evangeline Lilly", "character": "Tauriel", "id": 19034, "credit_id": "52fe4926c3a36847f818b7c1", "cast_id": 24, "profile_path": "/lsXb0Qt9WyYDJUdON26vmtKVkE6.jpg", "order": 13}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe4926c3a36847f818b7c5", "cast_id": 25, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 14}, {"name": "Billy Connolly", "character": "Dain Ironfoot", "id": 9188, "credit_id": "52fe4926c3a36847f818b7d5", "cast_id": 29, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 15}, {"name": "Mikael Persbrandt", "character": "Beorn", "id": 52398, "credit_id": "52fe4926c3a36847f818b77d", "cast_id": 10, "profile_path": "/yr557miX4IwMLqPfLQs3kWQZTMq.jpg", "order": 16}, {"name": "Manu Bennett", "character": "Azog", "id": 41782, "credit_id": "52fe4926c3a36847f818b7d1", "cast_id": 28, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 17}, {"name": "Stephen Fry", "character": "The Master of Laketown", "id": 11275, "credit_id": "52fe4926c3a36847f818b78b", "cast_id": 13, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 18}, {"name": "John Bell", "character": "Bain", "id": 126667, "credit_id": "52fe4926c3a36847f818b7b1", "cast_id": 20, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 19}, {"name": "Sylvester McCoy", "character": "Radagast", "id": 80112, "credit_id": "52fe4926c3a36847f818b781", "cast_id": 11, "profile_path": "/hgM7jEkkwI0HHx3K44UE48gBbfa.jpg", "order": 20}, {"name": "Terry Notary", "character": "Goblin", "id": 236696, "credit_id": "52fe4926c3a36847f818b7b9", "cast_id": 22, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 21}, {"name": "Peter Hambleton", "character": "Gloin", "id": 1193832, "credit_id": "52fe4926c3a36847f818b7d9", "cast_id": 31, "profile_path": "/jcsOAVVLyAnJpnZRAWoGtuI4nlk.jpg", "order": 22}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe4926c3a36847f818b83d", "cast_id": 50, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 23}, {"name": "Stephen Colbert", "character": "Laketown Spy", "id": 58769, "credit_id": "532bf221c3a3684bab000fe8", "cast_id": 51, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 24}, {"name": "Jed Brophy", "character": "Nori", "id": 173451, "credit_id": "534106980e0a2679aa00190c", "cast_id": 52, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 25}, {"name": "Sarah Peirse", "character": "Hilda Blanca", "id": 15092, "credit_id": "53e652d90e0a2628cb001eb5", "cast_id": 61, "profile_path": "/dILxeuQbDxtSxMCL863X4qum29X.jpg", "order": 26}, {"name": "Mary Nesbitt", "character": "Tilda", "id": 1359823, "credit_id": "5405c71cc3a368068c0082ed", "cast_id": 62, "profile_path": "/vgiEo4KYAIoLWECsVBWebRBnwnr.jpg", "order": 27}, {"name": "Peggy Nesbitt", "character": "Sigrid", "id": 1359824, "credit_id": "5405c753c3a3682d98006c39", "cast_id": 63, "profile_path": "/ArwjGFXBsUvLxMvI1VHc0eCkUys.jpg", "order": 28}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4926c3a36847f818b771", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.7, "runtime": 161}, "8007": {"poster_path": "/dl1OgKeKxKQsOAqGM7TZRNozbKf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91753202, "overview": "While flying a routine reconnaissance mission over Bosnia, fighter pilot Chris Burnett photographs something he wasn't supposed to see and gets shot down behind enemy lines, where he must outrun an army led by a ruthless Serbian general. With time running out and a deadly tracker on his trail, Burnett's commanding officer decides to risk his career and launch a renegade rescue mission to save his life.", "video": false, "id": 8007, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Behind Enemy Lines", "tagline": "His only weapon is his will to survive.", "vote_count": 131, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5sMWk8wutGCFAM7MAFPQJyc0ny0.jpg", "poster_path": "/baDDWPQgZyBKiDNeipLJ9LEZ5BX.jpg", "id": 98513, "name": "Behind Enemy Lines Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "sh", "name": ""}], "imdb_id": "tt0159273", "adult": false, "backdrop_path": "/wv2E3WwZPGTU8eSh8IwtzlgQyaY.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2001-11-17", "popularity": 0.942541641129127, "original_title": "Behind Enemy Lines", "budget": 40000000, "cast": [{"name": "Owen Wilson", "character": "Lt. Chris Burnett", "id": 887, "credit_id": "52fe448cc3a36847f809c465", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Admiral Leslie McMahon Reigart", "id": 193, "credit_id": "52fe448cc3a36847f809c469", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Gabriel Macht", "character": "Stackhouse", "id": 16856, "credit_id": "52fe448cc3a36847f809c46d", "cast_id": 3, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 2}, {"name": "Charles Malik Whitfield", "character": "Capt. Rodway, USMC", "id": 53572, "credit_id": "52fe448cc3a36847f809c471", "cast_id": 4, "profile_path": "/zejy0VbTCNhoCeFFcs7y5d5ETAo.jpg", "order": 3}, {"name": "David Keith", "character": "Master Chief Tom O'Malley", "id": 18181, "credit_id": "52fe448cc3a36847f809c475", "cast_id": 5, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 4}, {"name": "Olek Krupa", "character": "Miroslav Lokar", "id": 53573, "credit_id": "52fe448cc3a36847f809c479", "cast_id": 6, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 5}, {"name": "Joaquim de Almeida", "character": "Admiral Piquet", "id": 22462, "credit_id": "52fe448cc3a36847f809c47d", "cast_id": 7, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 6}, {"name": "Vladimir Mashkov", "character": "Sasha", "id": 86151, "credit_id": "537f36f60e0a26588c000239", "cast_id": 19, "profile_path": "/iHbpax1R5fXet4ibr0M1ipJ7VXS.jpg", "order": 7}, {"name": "Marko Igonda", "character": "Bazda", "id": 137336, "credit_id": "537f37020e0a2624ba0045fa", "cast_id": 20, "profile_path": "/pIyYLugGzv2tp2KJX2Nbd9YKYES.jpg", "order": 8}, {"name": "Eyal Podell", "character": "Petty Officer Kennedy", "id": 61855, "credit_id": "537f37180e0a2624c0004b10", "cast_id": 21, "profile_path": "/c5HBvjC98ex55qTR8eOomQ93srd.jpg", "order": 9}, {"name": "Geoff Pierson", "character": "Admiral Donnelly", "id": 25879, "credit_id": "537f37280e0a26588c00024c", "cast_id": 22, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 10}, {"name": "Aernout Van Lynden", "character": "Aernout Van Lynden", "id": 1323218, "credit_id": "537f37380e0a26588c000250", "cast_id": 23, "profile_path": "/qBvZpDMFYMRJi9E7lkoepgse0hw.jpg", "order": 11}, {"name": "Sam Jaeger", "character": "Red Crown Operator", "id": 65727, "credit_id": "537f37490e0a2624c0004b18", "cast_id": 24, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 12}, {"name": "Shane Johnson", "character": "Red Crown Operator", "id": 76038, "credit_id": "537f37580e0a26588c00025b", "cast_id": 25, "profile_path": "/eyogwkraTiQQlTMvWSxTKsfgayr.jpg", "order": 13}, {"name": "Don Winston", "character": "Red Crown Operator", "id": 1323219, "credit_id": "537f37670e0a2624b7004c4c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Laurence Mason", "character": "Brandon", "id": 65141, "credit_id": "53a16bb1c3a3687bab0023f8", "cast_id": 31, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 15}, {"name": "Leon Russom", "character": "Ed Burnett", "id": 169920, "credit_id": "53a16bfac3a3687bbc0022a3", "cast_id": 32, "profile_path": "/kITkYMh1VZgHSAMlMxsZ6jaUF7C.jpg", "order": 16}, {"name": "Todd Boyce", "character": "Junior Officer", "id": 17354, "credit_id": "53a16c82c3a3687b9e002471", "cast_id": 33, "profile_path": "/3uT1rplcxrKBmhi9vFQpB4Q6Qop.jpg", "order": 17}, {"name": "Dorothy Lucey", "character": "Dorothy Lucey", "id": 1219107, "credit_id": "53a16ce7c3a3687b9e002494", "cast_id": 34, "profile_path": "/yO5MfrWKwYx149HBusSlt8XfIeU.jpg", "order": 18}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a36847f809c483", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.9, "runtime": 106}, "8009": {"poster_path": "/6l4t1vWAFMuAiOpDT0mDWlrr5Mp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5900000, "overview": "He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.", "video": false, "id": 8009, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Highlander", "tagline": "There can be only one.", "vote_count": 147, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gY5NPUGGJJdaGPlEM6f2pfHNtit.jpg", "poster_path": "/hxy9GZRAoEIt2OJ2e1YXSRP80ti.jpg", "id": 8050, "name": "Highlander Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091203", "adult": false, "backdrop_path": "/q6jg0cSixdEGUsyzkuh2qqL6iVq.jpg", "production_companies": [{"name": "EMI Films Ltd.", "id": 538}], "release_date": "1986-03-07", "popularity": 0.884428705531826, "original_title": "Highlander", "budget": 16000000, "cast": [{"name": "Christopher Lambert", "character": "Connor 'The Highlander' MacLeod", "id": 38559, "credit_id": "52fe448cc3a36847f809c58f", "cast_id": 1, "profile_path": "/sIl2F9LDTjfnAVBxEG5CTtZGuJU.jpg", "order": 0}, {"name": "Roxanne Hart", "character": "Brenda J. Wyatt", "id": 29021, "credit_id": "52fe448cc3a36847f809c593", "cast_id": 2, "profile_path": "/2Zale2M3jj2G2rwNSifzklYxluX.jpg", "order": 1}, {"name": "Clancy Brown", "character": "Victor 'The Kurgan' Kruger", "id": 6574, "credit_id": "52fe448cc3a36847f809c597", "cast_id": 3, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 2}, {"name": "Sean Connery", "character": "Juan Sanchez Villa-Lobos Ramirez", "id": 738, "credit_id": "52fe448dc3a36847f809c59b", "cast_id": 4, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 3}, {"name": "Beatie Edney", "character": "Heather MacLeod", "id": 53515, "credit_id": "52fe448dc3a36847f809c59f", "cast_id": 5, "profile_path": "/fV5Mf1AKqsL1IhxZxX9JQ68WrqB.jpg", "order": 4}, {"name": "Alan North", "character": "Lieutenant Frank Moran", "id": 53584, "credit_id": "52fe448dc3a36847f809c5a3", "cast_id": 6, "profile_path": "/q79hT4OeYOYzH2WIfqS6VsCmKzg.jpg", "order": 5}, {"name": "Jon Polito", "character": "Det. Walter Bedsoe", "id": 4253, "credit_id": "52fe448dc3a36847f809c5a7", "cast_id": 7, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 6}, {"name": "Sheila Gish", "character": "Rachel Ellenstein", "id": 53585, "credit_id": "52fe448dc3a36847f809c5ab", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Hugh Quarshie", "character": "Sunda Kastagir", "id": 31925, "credit_id": "52fe448dc3a36847f809c5af", "cast_id": 9, "profile_path": "/klpbBUBEwIuVHt2RWCNOxNvuprS.jpg", "order": 8}, {"name": "Peter Diamond", "character": "Aman Fasil", "id": 53587, "credit_id": "52fe448dc3a36847f809c5b3", "cast_id": 11, "profile_path": "/rIf04LU2CsdzdvUJghFVVjdWcm6.jpg", "order": 10}, {"name": "Billy Hartman", "character": "Dugal MacLeod", "id": 53588, "credit_id": "52fe448dc3a36847f809c5b7", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "James Cosmo", "character": "Angus MacLeod", "id": 2467, "credit_id": "52fe448dc3a36847f809c5bb", "cast_id": 13, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 12}, {"name": "Celia Imrie", "character": "Kate MacLeod", "id": 9139, "credit_id": "52fe448dc3a36847f809c5bf", "cast_id": 14, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 13}, {"name": "Christopher Malcolm", "character": "Kirk Matunas", "id": 47808, "credit_id": "52fe448dc3a36847f809c5f3", "cast_id": 23, "profile_path": "/9Ua0yZoI6dZQ5VDqfU096dAM1Un.jpg", "order": 14}, {"name": "Frank Dux", "character": "Old Man in Car", "id": 56985, "credit_id": "52fe448dc3a36847f809c5f7", "cast_id": 24, "profile_path": null, "order": 15}], "directors": [{"name": "Russell Mulcahy", "department": "Directing", "job": "Director", "credit_id": "52fe448dc3a36847f809c5c5", "profile_path": "/jScppFv3bbozdAdIPUQ8vp4GbnG.jpg", "id": 52968}], "vote_average": 6.4, "runtime": 116}, "8012": {"poster_path": "/vWtDUUgQAsVyvRW4mE75LBgVm2e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72021008, "overview": "A mobster travels to Hollywood to collect a debt and discovers that the movie business is much the same as his current job.", "video": false, "id": 8012, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Get Shorty", "tagline": "The mob is tough, but it\u2019s nothing like show business.", "vote_count": 60, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6KEpKs5asAqOwEr9XrOZJSMHW7O.jpg", "poster_path": "/lEVceV3akWMUeShECVCow1auUQv.jpg", "id": 91698, "name": "Chili Palmer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113161", "adult": false, "backdrop_path": "/g1BfxcnplYEveGqS1ttfhdRBgbR.jpg", "production_companies": [{"name": "Jersey Films", "id": 216}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1995-10-20", "popularity": 0.547267727592625, "original_title": "Get Shorty", "budget": 30250000, "cast": [{"name": "John Travolta", "character": "Chili Palmer", "id": 8891, "credit_id": "52fe448dc3a36847f809c6eb", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Harry Zimm", "id": 193, "credit_id": "52fe448dc3a36847f809c6ef", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Rene Russo", "character": "Karen Flores", "id": 14343, "credit_id": "52fe448dc3a36847f809c6f3", "cast_id": 3, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 2}, {"name": "Danny DeVito", "character": "Martin Weir", "id": 518, "credit_id": "52fe448dc3a36847f809c6f7", "cast_id": 4, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 3}, {"name": "Dennis Farina", "character": "Ray 'Bones' Barboni", "id": 1117, "credit_id": "52fe448dc3a36847f809c6fb", "cast_id": 5, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 4}, {"name": "Delroy Lindo", "character": "Bo Catlett", "id": 18792, "credit_id": "52fe448dc3a36847f809c6ff", "cast_id": 6, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 5}, {"name": "James Gandolfini", "character": "Bear", "id": 4691, "credit_id": "52fe448dc3a36847f809c703", "cast_id": 7, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 6}, {"name": "Jon Gries", "character": "Ronnie Wingate", "id": 9629, "credit_id": "52fe448dc3a36847f809c707", "cast_id": 8, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 7}, {"name": "Renee Props", "character": "Nicki", "id": 53600, "credit_id": "52fe448dc3a36847f809c70b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "David Paymer", "character": "Leo Devoe", "id": 19839, "credit_id": "52fe448dc3a36847f809c70f", "cast_id": 10, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 9}, {"name": "Martin Ferrero", "character": "Tommy Carlo", "id": 4790, "credit_id": "52fe448dc3a36847f809c713", "cast_id": 11, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 10}, {"name": "Miguel Sandoval", "character": "Mr. Escobar", "id": 30488, "credit_id": "52fe448dc3a36847f809c717", "cast_id": 12, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 11}, {"name": "Jacob Vargas", "character": "Yayo Portillo", "id": 16429, "credit_id": "52fe448dc3a36847f809c71b", "cast_id": 13, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 12}, {"name": "Bobby Slayton", "character": "Dick Allen", "id": 53601, "credit_id": "52fe448dc3a36847f809c71f", "cast_id": 14, "profile_path": "/nFTCMgev1PrIwyn9EpZNDSgeyyN.jpg", "order": 13}, {"name": "Linda Hart", "character": "Fay Devoe", "id": 53602, "credit_id": "52fe448dc3a36847f809c723", "cast_id": 15, "profile_path": "/9gzrHfKwWcwVYikfWhqsOWitpnZ.jpg", "order": 14}, {"name": "Jeffrey J. Stephen", "character": "Bones' Buddy (as Jeffrey J. Stephan)", "id": 141582, "credit_id": "53aa2737c3a3684cf800094d", "cast_id": 25, "profile_path": "/krBGyBelQSG7FOFS7WpKDQSA0eQ.jpg", "order": 15}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe448dc3a36847f809c729", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.5, "runtime": 105}, "57165": {"poster_path": "/Albfq3ziSCQVyh5PzMSsFmmgHmy.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 301000000, "overview": "A decade after his heroic defeat of the monstrous Kraken, Perseus-the demigod son of Zeus-is attempting to live a quieter life as a village fisherman and the sole parent to his 10-year old son, Helius. Meanwhile, a struggle for supremacy rages between the gods and the Titans. Dangerously weakened by humanity's lack of devotion, the gods are losing control of the imprisoned Titans and their ferocious leader, Kronos, father of the long-ruling brothers Zeus, Hades and Poseidon.", "video": false, "id": 57165, "genres": [{"id": 12, "name": "Adventure"}], "title": "Wrath of the Titans", "tagline": "Feel the Wrath", "vote_count": 681, "homepage": "http://www.wrathofthetitansmovie.org", "belongs_to_collection": {"backdrop_path": "/Awy2ye1yJ75ukpDP0qtOx0r7Eng.jpg", "poster_path": "/3TXIuCHr2m9oZcLJOc5qo9o5WsT.jpg", "id": 86780, "name": "Clash of the Titans Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646987", "adult": false, "backdrop_path": "/mdDiviHKdjYZ8kFZKaoz4ZfYcwM.jpg", "production_companies": [{"name": "Thunder Road Pictures", "id": 3528}, {"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Cott Productions", "id": 24175}, {"name": "Furia de Titanes II, A.I.E.", "id": 24176}], "release_date": "2012-03-29", "popularity": 1.33630157119527, "original_title": "Wrath of the Titans", "budget": 150000000, "cast": [{"name": "Liam Neeson", "character": "Zeus", "id": 3896, "credit_id": "52fe4926c3a36847f818b903", "cast_id": 3, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Sam Worthington", "character": "Perseus", "id": 65731, "credit_id": "52fe4926c3a36847f818b907", "cast_id": 4, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Hades", "id": 5469, "credit_id": "52fe4926c3a36847f818b90f", "cast_id": 6, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Rosamund Pike", "character": "Andromeda", "id": 10882, "credit_id": "52fe4926c3a36847f818b90b", "cast_id": 5, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Hephaestus", "id": 2440, "credit_id": "52fe4926c3a36847f818b913", "cast_id": 7, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Toby Kebbell", "character": "Argenor", "id": 20286, "credit_id": "52fe4926c3a36847f818b91f", "cast_id": 10, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 5}, {"name": "Danny Huston", "character": "Poseidon", "id": 6413, "credit_id": "52fe4926c3a36847f818b917", "cast_id": 8, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Ares", "id": 25616, "credit_id": "52fe4926c3a36847f818b91b", "cast_id": 9, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 7}, {"name": "John Bell", "character": "Helius", "id": 126667, "credit_id": "52fe4926c3a36847f818b977", "cast_id": 27, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 8}, {"name": "Lily James", "character": "Korrina", "id": 1016168, "credit_id": "52fe4926c3a36847f818b97b", "cast_id": 28, "profile_path": "/oBeTe9bKFkyDbuhGbEdp06LRR1K.jpg", "order": 9}, {"name": "Spencer Wilding", "character": "Minotaur", "id": 25451, "credit_id": "52fe4926c3a36847f818b97f", "cast_id": 29, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 10}, {"name": "Martin Bayfield", "character": "Cyclops", "id": 11177, "credit_id": "52fe4926c3a36847f818b983", "cast_id": 30, "profile_path": "/h14uj9f3EAJAgWqNSFzWN93ZxEQ.jpg", "order": 11}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe4926c3a36847f818b8ff", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 5.6, "runtime": 99}, "286554": {"poster_path": "/787egmKPQvpL7GiUze7AlkoQB1B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After an extremely regrettable one night stand, two strangers wake up to find themselves snowed in after sleeping through a blizzard that put all of Manhattan on ice. They're now trapped together in a tiny apartment, forced to get to know each other way more than any one night stand should.", "video": false, "id": 286554, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Two Night Stand", "tagline": "Before love. After sex.", "vote_count": 125, "homepage": "http://haveatwonightstand.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2140619", "adult": false, "backdrop_path": "/9hR9RTe8olTuM5ZLd2sIOa2KVqN.jpg", "production_companies": [{"name": "Demarest Films", "id": 13241}, {"name": "Flynn Picture Company", "id": 34081}], "release_date": "2014-09-26", "popularity": 1.87719516662386, "original_title": "Two Night Stand", "budget": 0, "cast": [{"name": "Analeigh Tipton", "character": "Megan", "id": 124644, "credit_id": "542679e50e0a2659f60012c4", "cast_id": 0, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 1}, {"name": "Miles Teller", "character": "Alec", "id": 996701, "credit_id": "542679f9c3a3681c250011bd", "cast_id": 1, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 2}, {"name": "Jessica Szohr", "character": "Faiza", "id": 130782, "credit_id": "54267a060e0a265a050012a2", "cast_id": 2, "profile_path": "/ijp9eZ0Toq2WfrHwThfLRmGugWD.jpg", "order": 3}, {"name": "Leven Rambin", "character": "Daisy", "id": 207401, "credit_id": "54267a120e0a2659fd00124a", "cast_id": 3, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 4}, {"name": "Scott Mescudi", "character": "Cedric", "id": 484359, "credit_id": "54267a20c3a3681c1e0012cb", "cast_id": 4, "profile_path": "/431ip65azwGdciT8CdMKzezCFv3.jpg", "order": 5}, {"name": "Kellyn Lindsay", "character": "Becca", "id": 1306641, "credit_id": "54267a2dc3a3681c250011c5", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Michael Showalter", "character": "David Raines", "id": 22215, "credit_id": "54267a390e0a2659fd001250", "cast_id": 6, "profile_path": "/5lYlx2Rxrigh1UZqAjviYWNt9md.jpg", "order": 7}, {"name": "Berto Colon", "character": "Bouncer", "id": 1030204, "credit_id": "54267a6f0e0a2659fa0012ba", "cast_id": 8, "profile_path": "/lJoSGfDlWMHmPr0gcsrxZnK0XQC.jpg", "order": 9}, {"name": "Brian Petsos", "character": "Himself", "id": 1057653, "credit_id": "54267a7cc3a3681c280012cb", "cast_id": 9, "profile_path": "/yDvg1Du0T9hZ2RlAjW5IryaldWE.jpg", "order": 10}, {"name": "Josh Salatin", "character": "Chris", "id": 1152252, "credit_id": "54267a89c3a3681c280012cd", "cast_id": 10, "profile_path": "/tVGxGbNOa2moVc8COjPZcOQnhNq.jpg", "order": 11}, {"name": "Chris Conroy", "character": "Ben", "id": 96032, "credit_id": "54267a9ac3a3681c22001218", "cast_id": 11, "profile_path": "/2EFBCEKccaLJAwguisMm1XJGJte.jpg", "order": 12}, {"name": "Victor Cruz", "character": "Arresting Officer #1", "id": 979216, "credit_id": "542703a8c3a3680b370003ea", "cast_id": 25, "profile_path": "/aDn5Kxft6FcK9fxmgf7oxGSpHaJ.jpg", "order": 13}, {"name": "David Weiss", "character": "Officer Purcell", "id": 1368147, "credit_id": "54270411c3a3680b2100040d", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "David Weiss", "character": "Officer Purcell", "id": 1368148, "credit_id": "542704110e0a26556c00048d", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Mike Lubik", "character": "Desk Cop", "id": 1368149, "credit_id": "54270424c3a3680b21000413", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Joey Lauren Adams", "character": "Customer Service Agent (voice)", "id": 16484, "credit_id": "54d8c42792514154a1000972", "cast_id": 40, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 17}], "directors": [{"name": "Max Nichols", "department": "Directing", "job": "Director", "credit_id": "54270293c3a3680b2500044d", "profile_path": null, "id": 1368144}], "vote_average": 6.6, "runtime": 86}, "48988": {"poster_path": "/hRvf9rhmwIzvfZwQx4IT6xsUhPe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83160734, "overview": "When best buds Rick and Fred begin to show signs of restlessness at home, their wives take a bold approach to revitalize their marriages: they grant the guys a \"hall pass\", one week of freedom to do whatever they want. At first, it seems like a dream come true, but they quickly discover that their expectations of the single life - and themselves - are completely and hilariously out of sync with reality.", "video": false, "id": 48988, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Hall Pass", "tagline": "One Week, No Rules", "vote_count": 241, "homepage": "http://hallpassmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480687", "adult": false, "backdrop_path": "/hGWwNxyCvpVW9FSCbVNbcJSgG1h.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Conundrum Entertainment", "id": 1156}], "release_date": "2011-02-25", "popularity": 1.27321654190124, "original_title": "Hall Pass", "budget": 36000000, "cast": [{"name": "Owen Wilson", "character": "Rick", "id": 887, "credit_id": "52fe477ec3a36847f8138bc3", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Jason Sudeikis", "character": "Fred", "id": 58224, "credit_id": "52fe477ec3a36847f8138bc7", "cast_id": 4, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 1}, {"name": "Jenna Fischer", "character": "Maggie", "id": 51856, "credit_id": "52fe477ec3a36847f8138bcb", "cast_id": 5, "profile_path": "/ceSnU3b5mWMCXQpeA3tTh0x7k0N.jpg", "order": 2}, {"name": "Christina Applegate", "character": "Grace", "id": 18979, "credit_id": "52fe477ec3a36847f8138bcf", "cast_id": 6, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 3}, {"name": "Nicky Whelan", "character": "Leigh", "id": 212833, "credit_id": "52fe477ec3a36847f8138bd3", "cast_id": 7, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 4}, {"name": "Stephen Merchant", "character": "Gary", "id": 39189, "credit_id": "52fe477ec3a36847f8138bd7", "cast_id": 8, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 5}, {"name": "Bruce Thomas", "character": "Rick Coleman", "id": 79497, "credit_id": "52fe477ec3a36847f8138bdb", "cast_id": 9, "profile_path": "/mh7ckVcito9SJiMYhAH5Ca7EY3B.jpg", "order": 6}, {"name": "Alexandra Daddario", "character": "Paige", "id": 109513, "credit_id": "52fe477ec3a36847f8138bdf", "cast_id": 10, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 7}, {"name": "Lauren Bowles", "character": "Britney", "id": 168326, "credit_id": "52fe477ec3a36847f8138be3", "cast_id": 11, "profile_path": "/pGLvRMdrTObr3Xg5mxfuMIz3nmt.jpg", "order": 8}, {"name": "Richard Jenkins", "character": "Coakley", "id": 28633, "credit_id": "52fe477ec3a36847f8138be7", "cast_id": 12, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 9}, {"name": "Joy Behar", "character": "Dr. Lucille \"Lucy\" Gilbert", "id": 166772, "credit_id": "52fe477ec3a36847f8138bf7", "cast_id": 15, "profile_path": "/85fQO74oEjAYKz9kojRA87svf3F.jpg", "order": 10}, {"name": "Daniel Greene", "character": "Officer #1", "id": 42199, "credit_id": "52fe477ec3a36847f8138bfb", "cast_id": 16, "profile_path": null, "order": 11}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe477ec3a36847f8138bb9", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe477ec3a36847f8138bbf", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.3, "runtime": 105}, "73567": {"poster_path": "/mGLeViPOSwkF4rG9c0ZngJECrk2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3665069, "overview": "A cop (Matthew McConaughey) who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer (Emile Hirsch) in exchange for a tumble with the young man's virginal sister (Juno Temple).", "video": false, "id": 73567, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Killer Joe", "tagline": "A Totally Deep-Fried Texas Redneck Trailer Park Murder Story.", "vote_count": 86, "homepage": "http://killerjoethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1726669", "adult": false, "backdrop_path": "/ynZpOFq3j7A6sD9WLctfMLaKuX3.jpg", "production_companies": [{"name": "ANA Media", "id": 21817}, {"name": "Voltage pictures", "id": 6633}, {"name": "Picture Perfect (I)", "id": 37833}, {"name": "Worldview Entertainment", "id": 9015}], "release_date": "2012-07-27", "popularity": 0.872288643718105, "original_title": "Killer Joe", "budget": 10000000, "cast": [{"name": "Matthew McConaughey", "character": "Killer Joe Cooper", "id": 10297, "credit_id": "52fe48a1c3a368484e102add", "cast_id": 3, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Emile Hirsch", "character": "Chris Smith", "id": 46593, "credit_id": "52fe48a1c3a368484e102ae1", "cast_id": 4, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 1}, {"name": "Thomas Haden Church", "character": "Ansel", "id": 19159, "credit_id": "52fe48a1c3a368484e102ae5", "cast_id": 5, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 2}, {"name": "Gina Gershon", "character": "Sharla", "id": 11150, "credit_id": "52fe48a1c3a368484e102ae9", "cast_id": 6, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 3}, {"name": "Juno Temple", "character": "Dottie Smith", "id": 36594, "credit_id": "52fe48a1c3a368484e102aed", "cast_id": 7, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 4}, {"name": "Marc Macaulay", "character": "Digger Soames", "id": 6908, "credit_id": "52fe48a1c3a368484e102af1", "cast_id": 8, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 5}, {"name": "Gralen Bryant Banks", "character": "Pizza Patron", "id": 557804, "credit_id": "545f205f0e0a261fbd008542", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Carol Sutton", "character": "Saleslady", "id": 60877, "credit_id": "545f2077c3a368076e0023f9", "cast_id": 18, "profile_path": "/dIzENUx3Exb0RNb7xC6ZYiYwbvx.jpg", "order": 7}, {"name": "Danny Epper", "character": "G-Man", "id": 574380, "credit_id": "545f208c0e0a265477001fa6", "cast_id": 19, "profile_path": "/51tZpRQ7ECagFytqbdrGMcAW7T.jpg", "order": 8}, {"name": "Jeff Galpin", "character": "Biker Thug", "id": 550473, "credit_id": "545f20a4c3a3686e490013b2", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Scott A. Martin", "character": "Pizza Manager", "id": 1055739, "credit_id": "545f20b90e0a265477001fbf", "cast_id": 21, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 10}, {"name": "Gregory C. Bachaud", "character": "Filpatrick", "id": 1383386, "credit_id": "545f20cdc3a3685358008100", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Charley Vance", "character": "Preacher", "id": 1383387, "credit_id": "545f20e00e0a261fb9008684", "cast_id": 23, "profile_path": null, "order": 12}], "directors": [{"name": "William Friedkin", "department": "Directing", "job": "Director", "credit_id": "52fe48a1c3a368484e102ad3", "profile_path": "/egUtSz4yBSvTTv7GJMk4MykWswt.jpg", "id": 15175}], "vote_average": 6.1, "runtime": 102}, "1690": {"poster_path": "/zF3pEs1CUbjPgioxDH4h2MEHsWl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80578934, "overview": "Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.", "video": false, "id": 1690, "genres": [{"id": 27, "name": "Horror"}], "title": "Hostel", "tagline": "Welcome To Your Worst Nightmare", "vote_count": 206, "homepage": "http://www.hostelfilm.com/", "belongs_to_collection": {"backdrop_path": "/rXf4gEh8m3ZcK9KHkxT78Kscxee.jpg", "poster_path": "/2jLQFRlH8CC9cptcANY5cEtC1q8.jpg", "id": 86578, "name": "Hostel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450278", "adult": false, "backdrop_path": "/9jTL24i6meo6u5hHEPwUY8TD1N4.jpg", "production_companies": [{"name": "Raw Nerve", "id": 1631}, {"name": "Hostel LLC", "id": 17793}, {"name": "International Production Company", "id": 1507}, {"name": "Next Entertainment", "id": 1633}], "release_date": "2005-01-06", "popularity": 0.759182206948243, "original_title": "Hostel", "budget": 4800000, "cast": [{"name": "Jay Hernandez", "character": "Paxton", "id": 19487, "credit_id": "52fe430cc3a36847f8036a43", "cast_id": 13, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 0}, {"name": "Derek Richardson", "character": "Josh", "id": 33934, "credit_id": "52fe430cc3a36847f8036a47", "cast_id": 14, "profile_path": "/6gGEr4ZBEoPiepdyCxhlG2WKeN3.jpg", "order": 1}, {"name": "Eythor Gudjonsson", "character": "Oli", "id": 33935, "credit_id": "52fe430cc3a36847f8036a4b", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Barbara Nedeljakova", "character": "Natalya", "id": 33936, "credit_id": "52fe430cc3a36847f8036a4f", "cast_id": 16, "profile_path": "/kAS6W6nbliAUnJnvvAFaRtH7PLQ.jpg", "order": 3}, {"name": "Jana Kaderabkova", "character": "Svetlana", "id": 33937, "credit_id": "52fe430cc3a36847f8036a53", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Jan Vlas\u00e1k", "character": "The Dutch Businessman", "id": 33938, "credit_id": "52fe430cc3a36847f8036a57", "cast_id": 18, "profile_path": "/yEZ7y8caFgmAIx0QodLXhY95E9J.jpg", "order": 5}, {"name": "Lubomir Bukovy", "character": "Alex", "id": 33939, "credit_id": "52fe430cc3a36847f8036a5b", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Takashi Miike", "character": "Miike Takashi", "id": 17282, "credit_id": "52fe430cc3a36847f8036a5f", "cast_id": 20, "profile_path": "/hFpUsxCjrZNiyHAGsIPWlZl2uTI.jpg", "order": 7}, {"name": "Keiko Seiko", "character": "Yuki", "id": 1265216, "credit_id": "52fe430cc3a36847f8036a67", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Jana Havlickova", "character": "Vala", "id": 1265217, "credit_id": "52fe430cc3a36847f8036a6b", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Rick Hoffman", "character": "The American Client", "id": 1216133, "credit_id": "52fe430cc3a36847f8036a91", "cast_id": 31, "profile_path": "/d1B41muPxihy4YXsWRiXKfpzq0y.jpg", "order": 11}, {"name": "Petr Janis", "character": "The German Surgeon", "id": 1265218, "credit_id": "52fe430cc3a36847f8036a6f", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Jennifer Lim", "character": "Kana", "id": 1154564, "credit_id": "54e3bc81c3a368454b00931d", "cast_id": 32, "profile_path": "/2sxWwQIbR9dyYzYlI95gaZFT0jK.jpg", "order": 13}], "directors": [{"name": "Eli Roth", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f8036a09", "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "id": 16847}], "vote_average": 5.8, "runtime": 94}, "5723": {"poster_path": "/fEjwJfeDxgsRBlYgEWMgvrKQ6VB.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 20710513, "overview": "The Guy is a Dublin guitarist/singer-songwriter who makes a living by fixing vacuum cleaners in his Dad's Hoover repair shop by day, and singing and playing for money on the Dublin streets by night. The Girl is a Czech who plays piano when she gets a chance, and does odd jobs by day and takes care of her mom and her daughter by night.", "video": false, "id": 5723, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Once", "tagline": "How often do you find the right person?", "vote_count": 194, "homepage": "http://www.foxsearchlight.com/once/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0907657", "adult": false, "backdrop_path": "/1pmPwJiHGOKjzSHxnogd655cUdL.jpg", "production_companies": [{"name": "RTE", "id": 25489}, {"name": "Samson Films", "id": 11571}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2006-07-14", "popularity": 0.676941166600842, "original_title": "Once", "budget": 160000, "cast": [{"name": "Glen Hansard", "character": "Guy", "id": 45124, "credit_id": "52fe441cc3a36847f8082d75", "cast_id": 21, "profile_path": "/2pP8bMolp7DbquoQ1w25yef2CQl.jpg", "order": 0}, {"name": "Mark\u00e9ta Irglov\u00e1", "character": "Girl", "id": 45127, "credit_id": "52fe441cc3a36847f8082d79", "cast_id": 22, "profile_path": "/ite9YJKyFwZgI9sfX8eN3UfEtf7.jpg", "order": 1}, {"name": "Hugh Walsh", "character": "Timmy Drummer", "id": 231753, "credit_id": "52fe441cc3a36847f8082d7d", "cast_id": 23, "profile_path": null, "order": 2}, {"name": "Gerard Hendrick", "character": "Lead Guitarist", "id": 231754, "credit_id": "52fe441cc3a36847f8082d81", "cast_id": 24, "profile_path": null, "order": 3}, {"name": "Alaistair Foley", "character": "Bassist", "id": 45129, "credit_id": "52fe441cc3a36847f8082d85", "cast_id": 25, "profile_path": null, "order": 4}, {"name": "Geoff Minogue", "character": "Eamon", "id": 45130, "credit_id": "52fe441cc3a36847f8082d89", "cast_id": 26, "profile_path": "/2E8b8k1mxzjhtQBFfuTUWa4Y8vP.jpg", "order": 5}, {"name": "Bill Hodnett", "character": "Guy's Dad", "id": 45131, "credit_id": "52fe441cc3a36847f8082d8d", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Danuse Ktrestova", "character": "Girl's Mother", "id": 45132, "credit_id": "52fe441cc3a36847f8082d91", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Darren Healy", "character": "Heroin Addict", "id": 143859, "credit_id": "52fe441cc3a36847f8082d95", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Mal Whyte", "character": "Bill", "id": 188433, "credit_id": "52fe441cc3a36847f8082d99", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Marcella Plunkett", "character": "Ex Girlfriend", "id": 163544, "credit_id": "52fe441cc3a36847f8082d9d", "cast_id": 31, "profile_path": "/tnEDag92n7GD8HVBgT0pNKT1rRv.jpg", "order": 10}], "directors": [{"name": "John Carney", "department": "Directing", "job": "Director", "credit_id": "52fe441cc3a36847f8082d71", "profile_path": null, "id": 45117}], "vote_average": 7.1, "runtime": 85}, "9531": {"poster_path": "/1muhBn45uvFWCfdewdFGHLfAnqw.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75800000, "overview": "Aiming to defeat the Man of Steel, wealthy executive Ross Webster hires bumbling but brilliant Gus Gorman to develop synthetic kryptonite, which yields some unexpected psychological effects in the third installment of the 1980s Superman franchise. Between rekindling romance with his high school sweetheart and saving himself, Superman must contend with a powerful supercomputer.", "video": false, "id": 9531, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman III", "tagline": "If the world's most powerful computer can control even Superman...no one on earth is safe.", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086393", "adult": false, "backdrop_path": "/pkqkxX7tkN0QLBtOYzugtBqyu0C.jpg", "production_companies": [{"name": "Cantharus Productions", "id": 51903}, {"name": "Dovemead Films", "id": 51861}], "release_date": "1983-06-17", "popularity": 1.29373590641828, "original_title": "Superman III", "budget": 39000000, "cast": [{"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe4505c3a36847f80b7a13", "cast_id": 1, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 0}, {"name": "Richard Pryor", "character": "Gus Gorman", "id": 9309, "credit_id": "52fe4505c3a36847f80b7a17", "cast_id": 2, "profile_path": "/hzJ3Q7wDLv4m82eMTbK2tzVzCHG.jpg", "order": 1}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe4505c3a36847f80b7a1b", "cast_id": 3, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 2}, {"name": "Marc McClure", "character": "Jimmy Olsen", "id": 1067, "credit_id": "52fe4505c3a36847f80b7a1f", "cast_id": 4, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 3}, {"name": "Annette O'Toole", "character": "Lana Lang", "id": 1734, "credit_id": "52fe4505c3a36847f80b7a23", "cast_id": 5, "profile_path": "/hFmg2LVQD0w0A9uDNu5na9pQamV.jpg", "order": 4}, {"name": "Annie Ross", "character": "Vera Webster", "id": 37368, "credit_id": "52fe4505c3a36847f80b7a27", "cast_id": 6, "profile_path": "/eyegZafZ3RaQ901th5KugONCERL.jpg", "order": 5}, {"name": "Pamela Stephenson", "character": "Lorelei", "id": 43805, "credit_id": "52fe4505c3a36847f80b7a67", "cast_id": 17, "profile_path": "/dePtjeY9OE4VD6RV6L2DmKXEBCp.jpg", "order": 6}, {"name": "Robert Vaughn", "character": "Ross Webster", "id": 14060, "credit_id": "52fe4505c3a36847f80b7a6b", "cast_id": 18, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 7}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe4505c3a36847f80b7a6f", "cast_id": 19, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 8}, {"name": "Gavin O'Herlihy", "character": "Brad", "id": 12660, "credit_id": "54099d3fc3a36812b7001833", "cast_id": 20, "profile_path": "/brFrEXHx5vaeWJmqhQJMEaZhUHl.jpg", "order": 9}], "directors": [{"name": "Richard Lester", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b7a2d", "profile_path": "/2H4PFCd4G8BLHK34lTsUs3cn2tM.jpg", "id": 10586}], "vote_average": 4.8, "runtime": 125}, "24420": {"poster_path": "/ayGp00uS6XRrNfbR59XWrJh9jpC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101229792, "overview": "Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.", "video": false, "id": 24420, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Time Traveler's Wife", "tagline": "", "vote_count": 202, "homepage": "http://www.thetimetravelerswifemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452694", "adult": false, "backdrop_path": "/2Po4fvS46AAshzDZGDdjkrVxPo8.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Plan B Entertainment", "id": 81}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Internationale Scarena Filmproduktionsgesellschaft 2", "id": 23046}], "release_date": "2009-08-14", "popularity": 1.10769431018959, "original_title": "The Time Traveler's Wife", "budget": 39000000, "cast": [{"name": "Eric Bana", "character": "Henry DeTamble", "id": 8783, "credit_id": "52fe4494c3a368484e02af4f", "cast_id": 3, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Clare Abshire", "id": 53714, "credit_id": "52fe4494c3a368484e02af53", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Michelle Nolden", "character": "Annette DeTamble", "id": 95635, "credit_id": "52fe4494c3a368484e02af57", "cast_id": 5, "profile_path": "/a72FYiArZuG0TjYXtdzPsNvtTyY.jpg", "order": 2}, {"name": "Arliss Howard", "character": "Richard DeTamble", "id": 3229, "credit_id": "52fe4494c3a368484e02af5b", "cast_id": 6, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 3}, {"name": "Ron Livingston", "character": "Gomez", "id": 17402, "credit_id": "52fe4494c3a368484e02af63", "cast_id": 8, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 5}, {"name": "Brian Bisson", "character": "Mark Abshire", "id": 1017085, "credit_id": "52fe4495c3a368484e02afdf", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Maggie Castle", "character": "Alicia Abshire", "id": 41743, "credit_id": "52fe4495c3a368484e02afe3", "cast_id": 30, "profile_path": "/mNiLxh1UZWXrVoXow3PB094mYCL.jpg", "order": 7}, {"name": "Fiona Reid", "character": "Lucille Abshire", "id": 54652, "credit_id": "52fe4495c3a368484e02afe7", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Philip Craig", "character": "Philip Abshire", "id": 166529, "credit_id": "52fe4495c3a368484e02afeb", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Alex Ferris", "character": "Henry at Six", "id": 59243, "credit_id": "547f257a92514124ad001631", "cast_id": 36, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 10}, {"name": "Katherine Trowell", "character": "Hospital Receptionist", "id": 1393528, "credit_id": "547f2595c3a368395a001789", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Bart Bedford", "character": "Library Researcher", "id": 1393529, "credit_id": "547f25ae92514124aa001792", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Esther Jun", "character": "Waitress", "id": 1123849, "credit_id": "547f25c0c3a36839650015ed", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Esther Jun", "character": "Chicago Police #1", "id": 1123849, "credit_id": "547f25fb92514124bb0016c8", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Craig Snoyer", "character": "Chicago Police #2", "id": 1393530, "credit_id": "547f260bc3a36839610012ed", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Carly Street", "character": "Librarian", "id": 1393531, "credit_id": "547f264bc3a368396f00183f", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Romyen Tangsubutra", "character": "Thai Waiter", "id": 1393533, "credit_id": "547f26e5c3a368395a0017ab", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Brooklynn Proulx", "character": "Clare at Six and Eight", "id": 39518, "credit_id": "547f26f492514124b90015e8", "cast_id": 45, "profile_path": "/yqnhEdUSWYZPUxQFUYHptAlgk4h.jpg", "order": 19}, {"name": "Mario Tufino", "character": "Barber", "id": 1393534, "credit_id": "547f276c92514124b90015f5", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Shawn Storer", "character": "Moving Man", "id": 115582, "credit_id": "547f2782c3a368395a0017bd", "cast_id": 47, "profile_path": null, "order": 21}, {"name": "David Talbot", "character": "Pastor", "id": 1239413, "credit_id": "547f279292514124af00150b", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "James Lafazanos", "character": "Jeremy (Gallery Owner)", "id": 1178559, "credit_id": "547f27a7c3a368395c001940", "cast_id": 49, "profile_path": "/g3Lj4f9Bxk6rQsAot1RsMBv1QsH.jpg", "order": 23}, {"name": "Dan Duran", "character": "Lottery Announcer", "id": 193040, "credit_id": "547f27b292514124ad001664", "cast_id": 50, "profile_path": null, "order": 24}, {"name": "Kenner Ames", "character": "TV Sales Person", "id": 44246, "credit_id": "547f27bec3a368395e0017c5", "cast_id": 51, "profile_path": null, "order": 25}, {"name": "Alison MacLeod", "character": "Realtor", "id": 1393535, "credit_id": "547f27cc92514124af001511", "cast_id": 52, "profile_path": null, "order": 26}, {"name": "Stephen Tobolowsky", "character": "Dr. Kendrick", "id": 537, "credit_id": "547f27d792514124bb0016f1", "cast_id": 53, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 27}, {"name": "Hailey McCann", "character": "Alba at Nine and Ten", "id": 1393536, "credit_id": "547f27e8c3a368396f001872", "cast_id": 54, "profile_path": null, "order": 28}, {"name": "Donald Carrier", "character": "Dr. Osman", "id": 1393537, "credit_id": "547f27f5c3a368395c001945", "cast_id": 55, "profile_path": null, "order": 29}, {"name": "Jan Caruana", "character": "Dr. Osman's Nurse", "id": 1393538, "credit_id": "547f2802c3a368395a0017d0", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Jean Yoon", "character": "Dr. Montague", "id": 88929, "credit_id": "547f280dc3a368396f00187c", "cast_id": 57, "profile_path": null, "order": 31}, {"name": "Tatum McCann", "character": "Alba at Four and Five", "id": 1225804, "credit_id": "547f281a92514124aa0017c7", "cast_id": 58, "profile_path": null, "order": 32}, {"name": "Duane Murray", "character": "Resident Doctor", "id": 113931, "credit_id": "547f282692514124aa0017c9", "cast_id": 59, "profile_path": "/7pQ3cybuhdGpOlPA0r6R7vJCwZW.jpg", "order": 33}, {"name": "Jon Bruno", "character": "Chicago Radio Show Host", "id": 1393539, "credit_id": "547f285c92514124aa0017d3", "cast_id": 61, "profile_path": null, "order": 35}, {"name": "Paul Francis", "character": "Hunting Buddy", "id": 91607, "credit_id": "54e7af0cc3a36836e70005f3", "cast_id": 62, "profile_path": null, "order": 36}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a368484e02af45", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 6.4, "runtime": 107}, "40805": {"poster_path": "/yQx2tEtuM6gafeF2O7au4Kfg9wf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227817248, "overview": "Britt Reid (Seth Rogen), the heir to the largest newspaper fortune in Los Angeles, is a spoiled playboy who has been, thus far, happy to lead an aimless life. After his father (Tom Wilkinson) dies, Britt meets Kato (Jay Chou), a resourceful company employee. Realizing that they have the talent and resources to make something of their lives, Britt and Kato join forces as costumed crime-fighters to bring down the city's most-powerful criminal, Chudnofsky (Christoph Waltz).", "video": false, "id": 40805, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Green Hornet", "tagline": "Breaking the Law to Protect It.", "vote_count": 538, "homepage": "http://www.sonypictures.com/movies/thegreenhornet/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0990407", "adult": false, "backdrop_path": "/obqNqj4tBoUkWzufsMLmDABFLEL.jpg", "production_companies": [{"name": "Original Film", "id": 333}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Reliance BIG Entertainment", "id": 6733}], "release_date": "2011-01-13", "popularity": 1.38949496895035, "original_title": "The Green Hornet", "budget": 120000000, "cast": [{"name": "Seth Rogen", "character": "Britt Reid / Green Hornet", "id": 19274, "credit_id": "52fe45a4c3a36847f80d257f", "cast_id": 1, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Jay Chou", "character": "Kato", "id": 17380, "credit_id": "52fe45a4c3a36847f80d258f", "cast_id": 5, "profile_path": "/g2fvgW2IVgLHt988eYoAl0REILQ.jpg", "order": 1}, {"name": "Christoph Waltz", "character": "Chudnofsky", "id": 27319, "credit_id": "52fe45a4c3a36847f80d2587", "cast_id": 3, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 2}, {"name": "Cameron Diaz", "character": "Lenore Case", "id": 6941, "credit_id": "52fe45a4c3a36847f80d2583", "cast_id": 2, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 3}, {"name": "Edward Furlong", "character": "Tupper", "id": 820, "credit_id": "52fe45a4c3a36847f80d258b", "cast_id": 4, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "James Reid", "id": 207, "credit_id": "52fe45a4c3a36847f80d2593", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "Edward James Olmos", "character": "Michael Axford", "id": 587, "credit_id": "52fe45a4c3a36847f80d2597", "cast_id": 7, "profile_path": "/i7zKqsFqL5L1HPmAMeSA1xZzlD5.jpg", "order": 6}, {"name": "Analeigh Tipton", "character": "Anna Lee", "id": 124644, "credit_id": "52fe45a4c3a36847f80d259b", "cast_id": 8, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 7}, {"name": "Chad L. Coleman", "character": "Chili", "id": 124645, "credit_id": "52fe45a4c3a36847f80d259f", "cast_id": 9, "profile_path": "/soxBAVJOM5qzN7nS78UGzaWNdCv.jpg", "order": 8}, {"name": "Robert Clotworthy", "character": "Politician", "id": 35172, "credit_id": "52fe45a4c3a36847f80d25a3", "cast_id": 10, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 9}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe45a4c3a36847f80d25a9", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 5.6, "runtime": 119}, "40807": {"poster_path": "/uDKmnFHqE3rQ9r6ErQsOZWuzXN8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39185691, "overview": "Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis, and his subsequent struggle to beat the disease.", "video": false, "id": 40807, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "50/50", "tagline": "It takes a pair to beat the odds.", "vote_count": 370, "homepage": "http://www.50-50themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1306980", "adult": false, "backdrop_path": "/xfXDFAjG37O8DT0oKoRhakwyJdx.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Mandate Pictures", "id": 771}], "release_date": "2011-09-30", "popularity": 0.725815383043353, "original_title": "50/50", "budget": 8000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Adam", "id": 24045, "credit_id": "52fe45a4c3a36847f80d263d", "cast_id": 3, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Kyle", "id": 19274, "credit_id": "52fe45a4c3a36847f80d2641", "cast_id": 4, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Katherine", "id": 84223, "credit_id": "52fe45a4c3a36847f80d2639", "cast_id": 2, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Bryce Dallas Howard", "character": "Rachael", "id": 18997, "credit_id": "52fe45a4c3a36847f80d2635", "cast_id": 1, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 3}, {"name": "Anjelica Huston", "character": "Diane", "id": 5657, "credit_id": "52fe45a4c3a36847f80d2645", "cast_id": 5, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 4}, {"name": "Serge Houde", "character": "Richard", "id": 41746, "credit_id": "52fe45a4c3a36847f80d2655", "cast_id": 10, "profile_path": "/txotfOoZhyo7DXaga0vmHkMS5aD.jpg", "order": 5}, {"name": "Andrew Airlie", "character": "Dr. Ross", "id": 41436, "credit_id": "52fe45a4c3a36847f80d2659", "cast_id": 11, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 6}, {"name": "Matt Frewer", "character": "Mitch", "id": 40009, "credit_id": "52fe45a4c3a36847f80d265d", "cast_id": 12, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 7}, {"name": "Philip Baker Hall", "character": "Alan", "id": 4492, "credit_id": "52fe45a4c3a36847f80d2661", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 8}, {"name": "Donna Yamamoto", "character": "Dr. Walderson", "id": 177885, "credit_id": "52fe45a4c3a36847f80d2665", "cast_id": 14, "profile_path": "/cPcpw8nC3zSKfqPNHRVEAlMCHhm.jpg", "order": 9}, {"name": "Yee Jee Tso", "character": "Dr. Lee", "id": 61541, "credit_id": "52fe45a4c3a36847f80d2669", "cast_id": 16, "profile_path": "/9oVMHObp5JoOxnycf8DzWm8JuK0.jpg", "order": 10}, {"name": "Stephanie Beard", "character": "Susan", "id": 1149548, "credit_id": "52fe45a4c3a36847f80d266d", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Sarah Smyth", "character": "Jenny", "id": 387183, "credit_id": "52fe45a4c3a36847f80d2671", "cast_id": 18, "profile_path": "/2WQokpXOaeXHu2M0k63XfnyzgrO.jpg", "order": 12}, {"name": "Peter Kelamis", "character": "Phil", "id": 89551, "credit_id": "52fe45a4c3a36847f80d2675", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Jessica Parker Kennedy", "character": "Jackie", "id": 211540, "credit_id": "52fe45a4c3a36847f80d2679", "cast_id": 20, "profile_path": "/s6F7jEHFfTZjSDr6yVURqIokT91.jpg", "order": 14}, {"name": "Daniel Bacon", "character": "Dr. Phillips", "id": 61187, "credit_id": "52fe45a4c3a36847f80d267d", "cast_id": 21, "profile_path": "/thLJx8rAqpxGI1YlCr9SIae1JOU.jpg", "order": 15}, {"name": "P. Lynn Johnson", "character": "Bernie", "id": 59241, "credit_id": "52fe45a4c3a36847f80d2681", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Laura Bertram", "character": "Claire", "id": 122876, "credit_id": "52fe45a4c3a36847f80d2685", "cast_id": 23, "profile_path": "/x19fvLM5YbvRh8ktbFU9REU7puK.jpg", "order": 17}, {"name": "Matty Finochio", "character": "Ted", "id": 440439, "credit_id": "52fe45a4c3a36847f80d2689", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "Marie Avgeropoulos", "character": "Allison", "id": 140114, "credit_id": "52fe45a4c3a36847f80d26cf", "cast_id": 37, "profile_path": "/xSlt8am4RrYGsSGjZO3Oy46ORyE.jpg", "order": 19}], "directors": [{"name": "Jonathan Levine", "department": "Directing", "job": "Director", "credit_id": "52fe45a4c3a36847f80d264b", "profile_path": "/gfJOKZPSbpzls7FV0Ogv4IpEeXh.jpg", "id": 56661}], "vote_average": 6.6, "runtime": 100}, "24428": {"poster_path": "/cezWGskPY5x7GaglTTRN4Fugfb8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1518594910, "overview": "When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", "video": false, "id": 24428, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Avengers", "tagline": "Some assembly required.", "vote_count": 6735, "homepage": "http://marvel.com/avengers_movie/", "belongs_to_collection": {"backdrop_path": "/zuW6fOiusv4X9nnW3paHGfXcSll.jpg", "poster_path": "/qJawKUQcIBha507UahUlX0keOT7.jpg", "id": 86311, "name": "The Avengers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0848228", "adult": false, "backdrop_path": "/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2012-05-04", "popularity": 6.80510341137803, "original_title": "The Avengers", "budget": 220000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe4495c3a368484e02b251", "cast_id": 46, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe4495c3a368484e02b19b", "cast_id": 2, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Bruce Banner / The Hulk", "id": 103, "credit_id": "52fe4495c3a368484e02b221", "cast_id": 32, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe4495c3a368484e02b1a5", "cast_id": 4, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe4495c3a368484e02b229", "cast_id": 34, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Clint Barton / Hawkeye", "id": 17604, "credit_id": "52fe4495c3a368484e02b225", "cast_id": 33, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "Tom Hiddleston", "character": "Loki", "id": 91606, "credit_id": "52fe4495c3a368484e02b22d", "cast_id": 35, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Agent Phil Coulson", "id": 9048, "credit_id": "52fe4495c3a368484e02b239", "cast_id": 38, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "Cobie Smulders", "character": "Agent Maria Hill", "id": 71189, "credit_id": "52fe4495c3a368484e02b235", "cast_id": 37, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 8}, {"name": "Stellan Skarsg\u00e5rd", "character": "Erik Selvig", "id": 1640, "credit_id": "52fe4495c3a368484e02b241", "cast_id": 41, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 9}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4495c3a368484e02b231", "cast_id": 36, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 10}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe4495c3a368484e02b23d", "cast_id": 40, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 11}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe4495c3a368484e02b245", "cast_id": 42, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 12}, {"name": "Jenny Agutter", "character": "World Security Council", "id": 14464, "credit_id": "52fe4495c3a368484e02b249", "cast_id": 44, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 13}, {"name": "Walter Perez", "character": "Shield Pilot", "id": 101522, "credit_id": "52fe4495c3a368484e02b24d", "cast_id": 45, "profile_path": "/9huEhMUi4x5I2RSaIjvoP5mbP67.jpg", "order": 14}, {"name": "Powers Boothe", "character": "World Security Council", "id": 6280, "credit_id": "52fe4495c3a368484e02b255", "cast_id": 47, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 15}, {"name": "Stan Lee", "character": "Old Man in TV Report", "id": 7624, "credit_id": "52fe4495c3a368484e02b259", "cast_id": 48, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 16}, {"name": "Arthur Darbinyan", "character": "World Security Council", "id": 188758, "credit_id": "52fe4495c3a368484e02b25d", "cast_id": 50, "profile_path": "/efj5VJqc2tlZ15aesmMXit3oner.jpg", "order": 17}, {"name": "Donald Li", "character": "World Security Council", "id": 168246, "credit_id": "52fe4495c3a368484e02b261", "cast_id": 51, "profile_path": "/7TeLJzqIoSUMAZJRkSLMp53wujn.jpg", "order": 18}, {"name": "Ashley Johnson", "character": "Waitress", "id": 34486, "credit_id": "52fe4495c3a368484e02b265", "cast_id": 52, "profile_path": "/e4GJkGmRGvrqPG5jcTNHBCmL1x9.jpg", "order": 19}, {"name": "Harry Dean Stanton", "character": "Security Guard", "id": 5048, "credit_id": "52fe4495c3a368484e02b269", "cast_id": 53, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 20}, {"name": "Alicia Sixtos", "character": "Carrier Bridge Techs", "id": 81959, "credit_id": "52fe4495c3a368484e02b26d", "cast_id": 54, "profile_path": "/d26uuvEXN4xIrGaLNOwbwNrX6Z8.jpg", "order": 21}, {"name": "Dieter Riesle", "character": "Gala Scientist", "id": 1033652, "credit_id": "52fe4495c3a368484e02b275", "cast_id": 57, "profile_path": "/yN8sg3spmSs651w0HZVdCdA9HSh.jpg", "order": 23}, {"name": "Jamie McShane", "character": "Celebration Montage Interviewee", "id": 79079, "credit_id": "52fe4495c3a368484e02b279", "cast_id": 61, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 25}, {"name": "Jeff Wolfe", "character": "Tall Thug", "id": 51303, "credit_id": "52fe4495c3a368484e02b27d", "cast_id": 62, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 26}, {"name": "Jerzy Skolimowski", "character": "Georgi Luchkov", "id": 43553, "credit_id": "52fe4495c3a368484e02b281", "cast_id": 63, "profile_path": "/uQGDiNRAcTrOH9CNEWzTgJFkn7L.jpg", "order": 27}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Agent Jasper Sitwell", "id": 1018947, "credit_id": "52fe4495c3a368484e02b285", "cast_id": 64, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 28}, {"name": "Jillian Morgese", "character": "Woman in Restaurant (uncredited)", "id": 1263294, "credit_id": "52fe4495c3a368484e02b289", "cast_id": 65, "profile_path": "/lxnn0PCMaDhBABueZYoV0JBlzMg.jpg", "order": 29}, {"name": "Alexis Denisof", "character": "The Other", "id": 1214673, "credit_id": "52fe4495c3a368484e02b28d", "cast_id": 66, "profile_path": "/hAcTJxSbSPHLfa59D8mnJOzxpmE.jpg", "order": 30}, {"name": "James Eckhouse", "character": "Senator Boynton", "id": 19151, "credit_id": "52fe4495c3a368484e02b291", "cast_id": 67, "profile_path": "/4CUK6M7fGVK5Z1Qg65rMLDI6BdO.jpg", "order": 31}, {"name": "Enver Gjokaj", "character": "Young Cop", "id": 1224022, "credit_id": "52fe4495c3a368484e02b295", "cast_id": 68, "profile_path": "/xatmqOREk6e051ZgaO4VSv4HCnr.jpg", "order": 32}, {"name": "Damion Poitier", "character": "Man #1 / Thanos (uncredited)", "id": 150194, "credit_id": "552a8df6c3a36858d60038d8", "cast_id": 188, "profile_path": "/zBoq4SAauhVmbHSyWZXYXvA36Ky.jpg", "order": 33}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe4495c3a368484e02b1a1", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 7.2, "runtime": 143}, "49009": {"poster_path": "/5lPRuICgmMmdrBr6qMNl80psEGo.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "PL", "name": "Poland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20348249, "overview": "Peter Weir's follow-up to Master & Commander (2003) is the stark & brilliant The Way Back, which takes on the theme of man's struggle for freedom. At the dawn of WWII, several men escape from a Russian gulag. The film details their perilous & uncertain journey to freedom, as they cross deserts, mountains, & several nations.", "video": false, "id": 49009, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Way Back", "tagline": "Their escape was just the beginning", "vote_count": 92, "homepage": "http://thewaybackthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1023114", "adult": false, "backdrop_path": "/TXWZrzM8AG0jHEJPlDOVojldZh.jpg", "production_companies": [{"name": "Exclusive Films", "id": 13920}, {"name": "National Geographic Entertainment", "id": 11522}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Monolith Films", "id": 18392}, {"name": "On the Road", "id": 23992}, {"name": "Point Blank Productions", "id": 23993}, {"name": "Polish Film Institute", "id": 6555}], "release_date": "2010-09-03", "popularity": 0.505352568620427, "original_title": "The Way Back", "budget": 30000000, "cast": [{"name": "Colin Farrell", "character": "Valka", "id": 72466, "credit_id": "52fe477fc3a36847f8139161", "cast_id": 6, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Dejan Angelov", "character": "Andrei", "id": 94699, "credit_id": "52fe477fc3a36847f8139165", "cast_id": 7, "profile_path": "/zCszCjsbCe80H9ZZhQXXg9pE0ak.jpg", "order": 1}, {"name": "Drago\u0219 Bucur", "character": "Zoran", "id": 129565, "credit_id": "52fe477fc3a36847f8139169", "cast_id": 8, "profile_path": "/gzflxaNSoBcW7f0ZXB0gtztE1Oo.jpg", "order": 2}, {"name": "Ed Harris", "character": "Mr. Smith", "id": 228, "credit_id": "52fe477fc3a36847f813916d", "cast_id": 9, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "Jim Sturgess", "character": "Janusz", "id": 38941, "credit_id": "52fe477fc3a36847f813919b", "cast_id": 17, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 4}, {"name": "Saoirse Ronan", "character": "Irena", "id": 36592, "credit_id": "52fe477fc3a36847f813919f", "cast_id": 18, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 5}, {"name": "Mark Strong", "character": "Khabarov", "id": 2983, "credit_id": "52fe477fc3a36847f81391a3", "cast_id": 19, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 6}, {"name": "Alexandru Potocean", "character": "Tomasz", "id": 39960, "credit_id": "52fe477fc3a36847f81391a7", "cast_id": 20, "profile_path": "/2W5yDYRs9WSFEb39AFovz44DOg8.jpg", "order": 7}, {"name": "Gustaf Skarsg\u00e5rd", "character": "Voss", "id": 63764, "credit_id": "52fe477fc3a36847f81391ab", "cast_id": 21, "profile_path": "/fdlsUaoS99C3ZwRD6QVqRQZnRzR.jpg", "order": 8}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f813915d", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 6.6, "runtime": 133}, "49010": {"poster_path": "/do7uf8m627YnTnspMGY3lD7vDEH.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 672648, "overview": "A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city's crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how - with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.", "video": false, "id": 49010, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Hobo with a Shotgun", "tagline": "Delivering justice, one shell at a time...", "vote_count": 51, "homepage": "http://www.hobowithashotgun.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1640459", "adult": false, "backdrop_path": "/7VtaXw0iT8L3GcCGb8aBZ2YYg8Z.jpg", "production_companies": [{"name": "Yer Dead Productions", "id": 6869}, {"name": "Rhombus Media", "id": 164}, {"name": "Whizbang Films", "id": 17457}, {"name": "Telefilm Canada", "id": 7320}], "release_date": "2011-05-06", "popularity": 0.203114184320856, "original_title": "Hobo with a Shotgun", "budget": 3000000, "cast": [{"name": "Rutger Hauer", "character": "Hobo", "id": 585, "credit_id": "52fe477fc3a36847f81391c3", "cast_id": 2, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 0}, {"name": "Gregory Smith", "character": "Slick", "id": 20814, "credit_id": "52fe477fc3a36847f81391c7", "cast_id": 3, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 1}, {"name": "Robb Wells", "character": "Logan (as Rob Wells)", "id": 60966, "credit_id": "52fe477fc3a36847f81391cb", "cast_id": 4, "profile_path": "/dMnez0ZRY63FP8LHhG2M9iFLqhM.jpg", "order": 2}, {"name": "Brian Downey", "character": "Drake", "id": 117458, "credit_id": "52fe477fc3a36847f81391cf", "cast_id": 5, "profile_path": "/nkIjQbpC9t5NExCl0aDxGqS4ba8.jpg", "order": 3}, {"name": "Molly Dunsworth", "character": "Abby", "id": 232684, "credit_id": "52fe477fc3a36847f81391d3", "cast_id": 6, "profile_path": "/7SO0H6Agztjdd0ewhTCt5bCtfJH.jpg", "order": 4}], "directors": [{"name": "Jason Eisener", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f81391bf", "profile_path": "/4EJtYbZVXCUyjUHMLVomgcWqcsZ.jpg", "id": 141673}], "vote_average": 5.7, "runtime": 86}, "8051": {"poster_path": "/350rVL2BZi1xT7pLK6tk0xIJkTy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17000000, "overview": "A beleaguered small-business owner gets a harmonium and embarks on a romantic journey with a mysterious woman.", "video": false, "id": 8051, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Punch-Drunk Love", "tagline": "", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0272338", "adult": false, "backdrop_path": "/gxoO809imgs2hxDwFUmKamfxSHa.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "New Line Cinema", "id": 12}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "2002-10-25", "popularity": 0.729505919472558, "original_title": "Punch-Drunk Love", "budget": 25000000, "cast": [{"name": "Adam Sandler", "character": "Barry Egan", "id": 19292, "credit_id": "52fe448ec3a36847f809cb83", "cast_id": 13, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Emily Watson", "character": "Lena Leonard", "id": 1639, "credit_id": "52fe448ec3a36847f809cb87", "cast_id": 14, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 1}, {"name": "Philip Seymour Hoffman", "character": "Dean Trumbell", "id": 1233, "credit_id": "52fe448ec3a36847f809cb8b", "cast_id": 15, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 2}, {"name": "Luis Guzm\u00e1n", "character": "Lance", "id": 40481, "credit_id": "52fe448ec3a36847f809cb8f", "cast_id": 16, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 3}, {"name": "Mary Lynn Rajskub", "character": "Elizabeth", "id": 25884, "credit_id": "52fe448ec3a36847f809cb93", "cast_id": 17, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 4}, {"name": "Robert Smigel", "character": "Walter the Dentist", "id": 53684, "credit_id": "52fe448ec3a36847f809cb97", "cast_id": 18, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 5}, {"name": "Jason Andrews", "character": "Operator Carter", "id": 177063, "credit_id": "52fe448ec3a36847f809cb9b", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Don McManus", "character": "Plastic", "id": 79025, "credit_id": "52fe448ec3a36847f809cb9f", "cast_id": 20, "profile_path": "/8JOjJkZBQmhVb6n8yHw70LIgC7i.jpg", "order": 7}, {"name": "David Schrempf", "character": "Customer #1", "id": 554026, "credit_id": "52fe448ec3a36847f809cba3", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Seann Conway", "character": "Customer #2", "id": 554027, "credit_id": "52fe448ec3a36847f809cba7", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Rico Bueno", "character": "Rico", "id": 54428, "credit_id": "52fe448ec3a36847f809cbab", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Hazel Mailloux", "character": "Rhonda", "id": 554028, "credit_id": "52fe448ec3a36847f809cbaf", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Karen Kilgariff", "character": "Anna", "id": 162609, "credit_id": "52fe448ec3a36847f809cbb3", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Julie Hermelin", "character": "Kathleen", "id": 149800, "credit_id": "52fe448ec3a36847f809cbb7", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Salvador Curiel", "character": "Sal", "id": 554029, "credit_id": "52fe448ec3a36847f809cbbb", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Jorge Barahona", "character": "Jorge", "id": 554030, "credit_id": "52fe448ec3a36847f809cbbf", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ernesto Quintero", "character": "Ernesto", "id": 554031, "credit_id": "52fe448ec3a36847f809cbc3", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Julius Steuer", "character": "Mechanic", "id": 554032, "credit_id": "52fe448ec3a36847f809cbc7", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Lisa Spector", "character": "Susan", "id": 554033, "credit_id": "52fe448ec3a36847f809cbcb", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Nicole Gelbard", "character": "Nicole", "id": 554034, "credit_id": "52fe448ec3a36847f809cbcf", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Mia Weinberg", "character": "Gilda", "id": 554035, "credit_id": "52fe448ec3a36847f809cbd3", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Karen Hermelin", "character": "Anna", "id": 554036, "credit_id": "52fe448ec3a36847f809cbd7", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Larry Ring", "character": "Steve / Brother-in-Law", "id": 554037, "credit_id": "52fe448ec3a36847f809cbdb", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Kerry Gelbard", "character": "Richard / Brother-in-Law", "id": 554038, "credit_id": "52fe448ec3a36847f809cbdf", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Ashley Clark", "character": "Phone Sex Sister", "id": 554039, "credit_id": "52fe448ec3a36847f809cbe3", "cast_id": 37, "profile_path": null, "order": 24}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe448ec3a36847f809cb3d", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 6.8, "runtime": 95}, "49012": {"poster_path": "/28HW1Kc4OwQH50M0XmcEuIYrCWk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47787943, "overview": "A drunken playboy stands to lose a wealthy inheritance when he falls for a woman, his family doesn't like.", "video": false, "id": 49012, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Arthur", "tagline": "Meet the world's only loveable billionaire.", "vote_count": 96, "homepage": "http://arthurthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1334512", "adult": false, "backdrop_path": "/nuJWx6hdjSHhEAPU9wUKx2s6J5H.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2011-04-08", "popularity": 0.784181722294289, "original_title": "Arthur", "budget": 40000000, "cast": [{"name": "Russell Brand", "character": "Arthur", "id": 59919, "credit_id": "52fe477fc3a36847f81391fb", "cast_id": 7, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 0}, {"name": "Helen Mirren", "character": "Hobson", "id": 15735, "credit_id": "52fe477fc3a36847f81391ff", "cast_id": 8, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 1}, {"name": "Greta Gerwig", "character": "Naomi Quinn", "id": 45400, "credit_id": "52fe477fc3a36847f81391f7", "cast_id": 6, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 2}, {"name": "Jennifer Garner", "character": "Susan Johnson", "id": 9278, "credit_id": "52fe477fc3a36847f8139203", "cast_id": 9, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 3}, {"name": "Geraldine James", "character": "Vivienne", "id": 11855, "credit_id": "52fe477fc3a36847f8139207", "cast_id": 10, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Bitterman", "id": 40481, "credit_id": "52fe477fc3a36847f813920b", "cast_id": 11, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Nick Nolte", "character": "Burt Johnson", "id": 1733, "credit_id": "52fe477fc3a36847f813920f", "cast_id": 12, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 6}, {"name": "Peter Van Wagner", "character": "Naomi's Dad", "id": 159828, "credit_id": "52fe477fc3a36847f8139213", "cast_id": 13, "profile_path": null, "order": 7}], "directors": [{"name": "Jason Winer", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f81391f3", "profile_path": "/6X7zuwKp2QMguZt0PgHaEwTuVNK.jpg", "id": 141675}], "vote_average": 5.4, "runtime": 110}, "49013": {"poster_path": "/7WILDjnJggB3bIioS3LRvtvmu1X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 559852396, "overview": "Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.", "video": false, "id": 49013, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cars 2", "tagline": "Ka-ciao!", "vote_count": 824, "homepage": "http://www.disney.go.com/cars/", "belongs_to_collection": {"backdrop_path": "/A8DqaTGwZ8iCEjWMNRsZumzfKLw.jpg", "poster_path": "/uq3N2SFj1Y06zA6LzCQPkmBdaaE.jpg", "id": 87118, "name": "Cars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1216475", "adult": false, "backdrop_path": "/jEcmZhtJkZQc6ta2vzBd9CU7GIx.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2011-06-16", "popularity": 1.47547401648015, "original_title": "Cars 2", "budget": 200000000, "cast": [{"name": "Owen Wilson", "character": "Lightning McQueen (voice)", "id": 887, "credit_id": "52fe477fc3a36847f813927b", "cast_id": 4, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Michael Caine", "character": "Finn McMissile (voice)", "id": 3895, "credit_id": "52fe477fc3a36847f813927f", "cast_id": 5, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Holley Shiftwell (voice)", "id": 1246, "credit_id": "52fe477fc3a36847f8139283", "cast_id": 6, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Michael Keaton", "character": "Chick Hicks (voice)", "id": 2232, "credit_id": "52fe477fc3a36847f8139287", "cast_id": 7, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 3}, {"name": "Jason Isaacs", "character": "Siddeley (voice)", "id": 11355, "credit_id": "52fe477fc3a36847f813928b", "cast_id": 8, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 4}, {"name": "Bonnie Hunt", "character": "Sally Carrera (voice)", "id": 5149, "credit_id": "52fe477fc3a36847f813928f", "cast_id": 9, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 5}, {"name": "John Ratzenberger", "character": "Mack (voice)", "id": 7907, "credit_id": "52fe477fc3a36847f8139293", "cast_id": 10, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 6}, {"name": "Tony Shalhoub", "character": "Luigi (voice)", "id": 4252, "credit_id": "52fe4780c3a36847f8139297", "cast_id": 11, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 7}, {"name": "Larry the Cable Guy", "character": "Mater (voice)", "id": 15897, "credit_id": "52fe4780c3a36847f813929b", "cast_id": 12, "profile_path": "/9yGwJBveIvLidqJEQI4PRuKQhMr.jpg", "order": 8}, {"name": "Eddie Izzard", "character": "Sir Miles Axlerod (voice)", "id": 1926, "credit_id": "52fe4780c3a36847f81392e7", "cast_id": 26, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 9}, {"name": "John Turturro", "character": "Francesco Bernoulli (voice)", "id": 1241, "credit_id": "52fe4780c3a36847f81392eb", "cast_id": 27, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 10}, {"name": "Brent Musburger", "character": "Brent Mustangburger (voice)", "id": 188559, "credit_id": "52fe4780c3a36847f81392ef", "cast_id": 28, "profile_path": "/fZXRho9StEBcblGYtplxiFTxD73.jpg", "order": 11}, {"name": "Joe Mantegna", "character": "Grem (voice)", "id": 3266, "credit_id": "52fe4780c3a36847f81392f3", "cast_id": 29, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 12}, {"name": "Thomas Kretschmann", "character": "Professor Z (voice)", "id": 3491, "credit_id": "52fe4780c3a36847f81392f7", "cast_id": 30, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 13}, {"name": "Darrell Waltrip", "character": "Darrell Cartrip (voice)", "id": 942993, "credit_id": "52fe4780c3a36847f81392fb", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Franco Nero", "character": "Uncle Topolino (voice)", "id": 22383, "credit_id": "52fe4780c3a36847f81392ff", "cast_id": 33, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 15}, {"name": "David Hobbs", "character": "David Hobbscap (voice)", "id": 571731, "credit_id": "52fe4780c3a36847f8139303", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Patrick Walker", "character": "Mel Dorado (voice)", "id": 1117784, "credit_id": "52fe4780c3a36847f8139307", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Jeff Garlin", "character": "Otis (voice)", "id": 60074, "credit_id": "52fe4780c3a36847f813930b", "cast_id": 36, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 18}, {"name": "Michel Michelis", "character": "Tomber (voice)", "id": 1117785, "credit_id": "52fe4780c3a36847f813930f", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Vanessa Redgrave", "character": "The Queen / Mama Topolino (voice)", "id": 13333, "credit_id": "52fe4780c3a36847f8139313", "cast_id": 38, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 20}, {"name": "Cheech Marin", "character": "Ramone (voice)", "id": 11159, "credit_id": "52fe4780c3a36847f8139317", "cast_id": 39, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 21}, {"name": "Peter Jacobson", "character": "Acer (voice)", "id": 31514, "credit_id": "52fe4780c3a36847f813931b", "cast_id": 40, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 22}, {"name": "Lloyd Sherr", "character": "Fillmore / Combat Ship (voice)", "id": 116317, "credit_id": "550dd09ec3a3685be500256e", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Bruce Campbell", "character": "Rod 'Torque' Redline (voice)", "id": 11357, "credit_id": "550dd11d9251414691006826", "cast_id": 43, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 24}, {"name": "Teresa Gallagher", "character": "Mater's Computer (voice)", "id": 1230799, "credit_id": "550dd17c92514146990065dc", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Jenifer Lewis", "character": "Flo (voice)", "id": 15899, "credit_id": "550dd1eb92514146990065f0", "cast_id": 45, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 26}, {"name": "Stanley Townsend", "character": "Victor Hugo / Vladimir Trunkov / Ivan the Tow Truck (voice)", "id": 25074, "credit_id": "550e6652925141065c00190a", "cast_id": 46, "profile_path": "/nZZWcRY77Cc01E4bWJhHUyHOJhZ.jpg", "order": 27}, {"name": "Velibor Topi\u0107", "character": "Alexander Hugo (voice)", "id": 34515, "credit_id": "550e6692c3a368488600928a", "cast_id": 47, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 28}, {"name": "Sig Hansen", "character": "Crabby (voice)", "id": 1224968, "credit_id": "550e6839c3a3681db20084a4", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Guido Quaroni", "character": "Guido (voice)", "id": 15898, "credit_id": "550e69459251413554006bd7", "cast_id": 49, "profile_path": "/qfnm3XzrMljLhU3HoNfYk0YGoBw.jpg", "order": 30}, {"name": "John Mainieri", "character": "J. Curby Gremlin (voice)", "id": 1360072, "credit_id": "550e69ccc3a3683e7f001991", "cast_id": 50, "profile_path": "/d1ULsQupeUfn6KvUa7pLQ80ZMFZ.jpg", "order": 31}, {"name": "Brad Lewis", "character": "Tubbs Pacer (voice)", "id": 32532, "credit_id": "550e6a26c3a3683f0a001881", "cast_id": 51, "profile_path": "/wfIglAFUH6n1Jbxt7P2Wh317jvI.jpg", "order": 32}, {"name": "Jeff Gordon", "character": "Jeff Gorvette (voice)", "id": 932719, "credit_id": "550e6a8d925141793a0028a5", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Paul Dooley", "character": "Sarge (voice)", "id": 15900, "credit_id": "550e6b0c9251417624002f27", "cast_id": 54, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 34}, {"name": "Edie McClurg", "character": "Minny (voice)", "id": 3202, "credit_id": "550e6b389251417624002f2e", "cast_id": 55, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 35}, {"name": "Richard Kind", "character": "Van (voice)", "id": 21125, "credit_id": "550e6b5e9251410701001a9f", "cast_id": 56, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 36}, {"name": "Katherine Helmond", "character": "Lizzie (voice)", "id": 381, "credit_id": "550e6b81c3a3683dd60017e1", "cast_id": 57, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 37}, {"name": "Michael Wallis", "character": "Sheriff (voice)", "id": 15902, "credit_id": "550e6bb2925141793a0028db", "cast_id": 58, "profile_path": "/4LuttJxXdNZgSDPeY0IOaczfajj.jpg", "order": 38}, {"name": "Lewis Hamilton", "character": "Lewis Hamilton (voice)", "id": 216294, "credit_id": "551c1d589251416a30000053", "cast_id": 77, "profile_path": "/t5zm6EkUfTHgfpS4cVEtein4LLK.jpg", "order": 39}, {"name": "Catherine Bolt", "character": "Additional Voices (voice)", "id": 1443737, "credit_id": "550e6bd7c3a3683f39001a4a", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Gillian Bolt", "character": "Additional Voices (voice)", "id": 1443742, "credit_id": "550e6bf8925141793a0028ea", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Jess Fulton", "character": "Additional Voices (voice)", "id": 1443749, "credit_id": "550e6c58c3a3684874009d99", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Sonoko Konishi", "character": "Additional Voices (voice)", "id": 1443471, "credit_id": "550e6c7b9251410701001ad0", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "John Lasseter", "character": "Additional Voices (voice)", "id": 7879, "credit_id": "550e6ce2925141065c001a4a", "cast_id": 63, "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "order": 44}, {"name": "Daisuke 'Dice' Tsutsumi", "character": "Additional Voices (voice) (as Dice Tsutsumi)", "id": 1290451, "credit_id": "550e6d1ec3a3683f0a001914", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Fernando Alonso", "character": "Fernando Alonso (voice)", "id": 938203, "credit_id": "550e6d44c3a3684874009dbf", "cast_id": 65, "profile_path": "/acpmwxPnQl3EfZ2UwfoWGICoPyF.jpg", "order": 46}, {"name": "Jan Nilsson", "character": "Flash (voice)", "id": 1443755, "credit_id": "550e6d65925141073d001ba9", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "Vitaly Petrov", "character": "Vitaly Petrov (voice)", "id": 1443756, "credit_id": "550e6d829251410701001b0d", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Memo Rojas", "character": "Memo Rojas (voice)", "id": 1443757, "credit_id": "550e6da39251414699008e2a", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Sebastian Vettel", "character": "Sebastian Schnell (voice)", "id": 1443760, "credit_id": "550e6dc7c3a3683f39001aaa", "cast_id": 69, "profile_path": "/aGKbbLALLZ7HnGBQbuzZNfJCGVJ.jpg", "order": 50}, {"name": "Jacques Villeneuve", "character": "Jacques Villeneuve (voice)", "id": 1156310, "credit_id": "550e6e0bc3a3683eb8001975", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Mark Winterbottom", "character": "Frosty (voice)", "id": 1443765, "credit_id": "550e6e4f925141065c001a96", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Jess Harnell", "character": "Additional Voices (voice) (uncredited)", "id": 84495, "credit_id": "550e6e8f9251414699008e61", "cast_id": 72, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 53}, {"name": "Junichi Kajioka", "character": "Additional Voices (voice) (uncredited)", "id": 1168129, "credit_id": "550e6ed4c3a3683e7f001aa8", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Barbara Kottmeier", "character": "Additional Voices (voice) (uncredited)", "id": 175779, "credit_id": "550e6f03925141793a002972", "cast_id": 74, "profile_path": "/kkQXjIbpxVQAtVSejDzQnELY922.jpg", "order": 55}, {"name": "Colleen O'Shaughnessey", "character": "Additional Voices (voice) (uncredited)", "id": 1212864, "credit_id": "550e6f26c3a3683dd6001896", "cast_id": 75, "profile_path": null, "order": 56}, {"name": "Daniel Okeefe", "character": "Additional Voices (voice) (uncredited)", "id": 1443777, "credit_id": "550e700d9251414699008eb7", "cast_id": 76, "profile_path": null, "order": 57}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f8139271", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}, {"name": "Brad Lewis", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f8139277", "profile_path": "/wfIglAFUH6n1Jbxt7P2Wh317jvI.jpg", "id": 32532}], "vote_average": 5.9, "runtime": 106}, "8054": {"poster_path": "/jcJRTfd2b5db5DpsCh5XnO6pakN.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61808775, "overview": "A traveling theater company gives its audience much more than they were expecting.", "video": false, "id": 8054, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "The Imaginarium of Doctor Parnassus", "tagline": "", "vote_count": 223, "homepage": "http://doctorparnassus.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1054606", "adult": false, "backdrop_path": "/xxGhGpmkaa4j9yJYpqu3N8WGxlh.jpg", "production_companies": [{"name": "Infinity Features Entertainment", "id": 212}, {"name": "Poo Poo Pictures", "id": 23116}], "release_date": "2009-12-24", "popularity": 0.67121585170025, "original_title": "The Imaginarium of Doctor Parnassus", "budget": 30000000, "cast": [{"name": "Christopher Plummer", "character": "Doctor Parnassus", "id": 290, "credit_id": "52fe448ec3a36847f809cd35", "cast_id": 4, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 0}, {"name": "Heath Ledger", "character": "Tony", "id": 1810, "credit_id": "52fe448ec3a36847f809cd39", "cast_id": 5, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Imaginarium Tony 1", "id": 85, "credit_id": "52fe448ec3a36847f809cd3d", "cast_id": 6, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Jude Law", "character": "Imaginarium Tony 2", "id": 9642, "credit_id": "52fe448ec3a36847f809cd41", "cast_id": 7, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 3}, {"name": "Colin Farrell", "character": "Imaginarium Tony 3", "id": 72466, "credit_id": "52fe448ec3a36847f809cd45", "cast_id": 8, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 4}, {"name": "Andrew Garfield", "character": "Anton", "id": 37625, "credit_id": "52fe448ec3a36847f809cd49", "cast_id": 9, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 5}, {"name": "Tom Waits", "character": "Devil", "id": 2887, "credit_id": "52fe448ec3a36847f809cd4d", "cast_id": 10, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 6}, {"name": "Lily Cole", "character": "Valentina", "id": 53688, "credit_id": "52fe448ec3a36847f809cd51", "cast_id": 11, "profile_path": "/9nbOarzgwOXHx9XJFfPBXjTF4IT.jpg", "order": 7}, {"name": "Verne Troyer", "character": "Percy", "id": 10987, "credit_id": "52fe448ec3a36847f809cd55", "cast_id": 12, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 8}, {"name": "Gwendoline Christie", "character": "Classy Shopper 2", "id": 1011904, "credit_id": "52fe448ec3a36847f809cd59", "cast_id": 13, "profile_path": "/g1J7zfl9EPY4hDzoKUE5J23T4od.jpg", "order": 9}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe448ec3a36847f809cd25", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 6.4, "runtime": 123}, "8055": {"poster_path": "/vxeeviaCZbuTaef25ysOdqMIAto.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tells the story of Michael Berg, a German lawyer who as a teenager in the late 1950s had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that at the expense of her freedom.", "video": false, "id": 8055, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Reader", "tagline": "Behind the mystery lies a truth that will make you question everything you know.", "vote_count": 180, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0976051", "adult": false, "backdrop_path": "/nsqs8dV3DBeheey1qqnbTD4LSHW.jpg", "production_companies": [{"name": "Mirage Enterprises", "id": 932}, {"name": "The Weinstein Company", "id": 308}, {"name": "Filmf\u00f6rderanstalt (FFA)", "id": 270}, {"name": "Deutsche Filmf\u00f6rderfonds (DFFF)", "id": 11238}, {"name": "Medienboard Berlin-Brandenburg", "id": 7307}, {"name": "Mitteldeutsche Medienf\u00f6rderung (MDM)", "id": 12346}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 315}], "release_date": "2008-12-10", "popularity": 1.02628061580427, "original_title": "The Reader", "budget": 32000000, "cast": [{"name": "Kate Winslet", "character": "Hanna Schmitz", "id": 204, "credit_id": "52fe448ec3a36847f809cda7", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Michael Berg", "id": 5469, "credit_id": "52fe448fc3a36847f809cde3", "cast_id": 15, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "David Kross", "character": "Young Michael Berg", "id": 5847, "credit_id": "52fe448fc3a36847f809cdbb", "cast_id": 7, "profile_path": "/50BcSbOZtfCktGMEepExob45O2h.jpg", "order": 2}, {"name": "Jeanette Hain", "character": "Brigitte", "id": 49018, "credit_id": "52fe448fc3a36847f809cdc3", "cast_id": 9, "profile_path": "/icET9X1pV73INdR7YYZcYXJeCDU.jpg", "order": 3}, {"name": "Bruno Ganz", "character": "Professor Rohl", "id": 2310, "credit_id": "52fe448ec3a36847f809cdb3", "cast_id": 5, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 4}, {"name": "Hannah Herzsprung", "character": "Julia", "id": 16783, "credit_id": "52fe448ec3a36847f809cdab", "cast_id": 3, "profile_path": "/3EJlnF0PJyjyciLLJNasKRFcTUQ.jpg", "order": 5}, {"name": "Karoline Herfurth", "character": "Marthe", "id": 17067, "credit_id": "52fe448ec3a36847f809cdb7", "cast_id": 6, "profile_path": "/8HVqhIaLQA3MOTO88Ncn6VOCzdp.jpg", "order": 6}, {"name": "Volker Bruch", "character": "Dieter Spenz", "id": 23182, "credit_id": "52fe448fc3a36847f809cdbf", "cast_id": 8, "profile_path": "/sIVPnaOQwdrt915Xh9Onp7gCpl0.jpg", "order": 7}, {"name": "Alexandra Maria Lara", "character": "Young Ilana Mather", "id": 5644, "credit_id": "52fe448ec3a36847f809cdaf", "cast_id": 4, "profile_path": "/aQS8gK9zJDu2eIUEHUIWqWFcTSj.jpg", "order": 8}, {"name": "Fabian Busch", "character": "Hanna's Defense Council", "id": 17543, "credit_id": "52fe448fc3a36847f809cddf", "cast_id": 14, "profile_path": "/cFgqQEFL9qBPKQFITBgjPSr3QWB.jpg", "order": 9}, {"name": "Vijessna Ferkic", "character": "Sophie", "id": 45811, "credit_id": "531900e492514177b700181c", "cast_id": 34, "profile_path": "/4YWi1weaNFnpiYcUys6nCwv2RqW.jpg", "order": 10}, {"name": "Susanne Lothar", "character": "Carla Berg", "id": 19123, "credit_id": "536b63210e0a2647d100b69b", "cast_id": 35, "profile_path": "/7Lbdxz43iVMlKrNTnc7AE6gfULs.jpg", "order": 11}, {"name": "Matthias Habich", "character": "Peter Berg", "id": 4534, "credit_id": "536b63310e0a2647db00b8cc", "cast_id": 36, "profile_path": "/7YB9tFGl8rbxBhuy9jqjU2qMHU9.jpg", "order": 12}, {"name": "Burghart Klau\u00dfner", "character": "Richter", "id": 3934, "credit_id": "536b63420e0a2647d800bbf4", "cast_id": 37, "profile_path": "/uH3aUfhfgQy4eJvi5otRMKgIbme.jpg", "order": 13}, {"name": "Sylvester Groth", "character": "Staatsanwalt", "id": 41965, "credit_id": "536b63530e0a2647d400b958", "cast_id": 38, "profile_path": "/vMNpftjWH7Q2dGSFYjp6U4pJkNx.jpg", "order": 14}, {"name": "J\u00fcrgen Tarrach", "character": "Gerhard Bade", "id": 10923, "credit_id": "536b63670e0a2647db00b8d1", "cast_id": 39, "profile_path": null, "order": 15}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe448ec3a36847f809cda3", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 6.9, "runtime": 124}, "49017": {"poster_path": "/4oy4e0DP6LRwRszfx8NY8EYBj8V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215529201, "overview": "Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, including Vlad's son, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he's turned into the mythological vampire Dracula.", "video": false, "id": 49017, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 10752, "name": "War"}], "title": "Dracula Untold", "tagline": "Every bloodline has a beginning", "vote_count": 717, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0829150", "adult": false, "backdrop_path": "/6UPlIYKxZqUR6Xbpgu1JKG0J7UC.jpg", "production_companies": [{"name": "Michael De Luca Productions", "id": 27551}, {"name": "Universal Pictures", "id": 33}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2014-10-03", "popularity": 6.2074166074464, "original_title": "Dracula Untold", "budget": 70000000, "cast": [{"name": "Luke Evans", "character": "Dracula (Vlad Tepes)", "id": 114019, "credit_id": "52fe4780c3a36847f81394e1", "cast_id": 6, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 0}, {"name": "Sarah Gadon", "character": "Mirena", "id": 190895, "credit_id": "52fe4780c3a36847f81394e5", "cast_id": 7, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 1}, {"name": "Dominic Cooper", "character": "Mehmed II", "id": 55470, "credit_id": "52fe4780c3a36847f81394e9", "cast_id": 8, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 2}, {"name": "Art Parkinson", "character": "Ingeras", "id": 1050248, "credit_id": "53a9b9c10e0a2646cc000049", "cast_id": 10, "profile_path": "/lm6BkM9uf69sd30o87kJ83ezKzN.jpg", "order": 3}, {"name": "Charles Dance", "character": "Master Vampire", "id": 4391, "credit_id": "542f0ef0c3a36804360008ac", "cast_id": 16, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 4}, {"name": "Diarmaid Murtagh", "character": "Dimitru", "id": 1330044, "credit_id": "542f0f27c3a3680439000858", "cast_id": 18, "profile_path": "/mGYuCYKnPojosNhviSoB1BifofA.jpg", "order": 5}, {"name": "William Houston", "character": "Cazan", "id": 84865, "credit_id": "53a9bb81c3a3684cfb000065", "cast_id": 12, "profile_path": "/cDRUNHUyHB29YKrTmzkQqBRCdla.jpg", "order": 7}, {"name": "Noah Huntley", "character": "Captain Petru", "id": 2050, "credit_id": "53a9bc8f0e0a2646d5000066", "cast_id": 13, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 8}, {"name": "Ronan Vibert", "character": "Simion", "id": 20523, "credit_id": "542f0f62c3a3680449000889", "cast_id": 20, "profile_path": "/3mCxRbHuq1aJwrFqLwk3OSdqva9.jpg", "order": 9}, {"name": "Zach McGowan", "character": "Shkelgim", "id": 62307, "credit_id": "542f0f760e0a26259f000953", "cast_id": 21, "profile_path": "/mrnpQbd7n0twHvtfWIx6LqF67M0.jpg", "order": 10}, {"name": "Ferdinand Kingsley", "character": "Hamza Bey", "id": 1211873, "credit_id": "542f0f88c3a368044900088c", "cast_id": 22, "profile_path": "/aqgAnX1yR3e8SLcR4sQRgVgea7r.jpg", "order": 11}, {"name": "Joseph Long", "character": "General Omer", "id": 27649, "credit_id": "542f10090e0a26259f00095d", "cast_id": 24, "profile_path": "/4dWSFArq1Qg9VYQzpS2pmmebqOq.jpg", "order": 12}, {"name": "Thor Kristjansson", "character": "Bright Eyes", "id": 1065016, "credit_id": "542f0ff50e0a26259300091b", "cast_id": 23, "profile_path": "/uXxczPZA9oX2VsMyrNCcVmL4ysJ.jpg", "order": 13}, {"name": "Jakub Giersza\u0142", "character": "Acemi", "id": 489961, "credit_id": "54d54711c3a3683b920001c5", "cast_id": 34, "profile_path": "/qzl317BQRgu9gbZwMEdVecBTopb.jpg", "order": 14}, {"name": "Dilan Gwyn", "character": "Governess", "id": 1334010, "credit_id": "53a9bd150e0a2646c500006b", "cast_id": 14, "profile_path": "/w7KPmbTY2r0bKt2b1mKPvynZIqF.jpg", "order": 15}, {"name": "J.J. Murphy", "character": "The Village Elder", "id": 1352394, "credit_id": "53e996ef0e0a26602b0009ee", "cast_id": 15, "profile_path": "/szTRTFzkTlyLmRPf9BOlBueD2nX.jpg", "order": 16}, {"name": "Paul Kaye", "character": "Brother Lucian", "id": 71281, "credit_id": "54d7b8bfc3a3685431003051", "cast_id": 35, "profile_path": "/lKPoRmfY8cfkd4qdUr2AJwy9tsB.jpg", "order": 17}], "directors": [{"name": "Gary Shore", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f81394d1", "profile_path": null, "id": 1167470}], "vote_average": 6.3, "runtime": 92}, "49018": {"poster_path": "/urAaOffVaxQzRJ8X5Z0oDqOWAjl.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97009150, "overview": "A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.", "video": false, "id": 49018, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Insidious", "tagline": "It's not the house that's haunted.", "vote_count": 400, "homepage": "http://www.insidious-movie.com/", "belongs_to_collection": {"backdrop_path": "/bA8UpUuAbET2RMQE96xT7eBPF4Q.jpg", "poster_path": "/fct5wsWu6niDIGRIC4aWEsN5Npa.jpg", "id": 228446, "name": "Insidious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1591095", "adult": false, "backdrop_path": "/xVNR5eperbCm1DI1JfGhUXd4lqm.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Alliance Films", "id": 2514}, {"name": "IM Global", "id": 7437}, {"name": "Haunted Movies", "id": 21742}], "release_date": "2010-09-13", "popularity": 1.70277089479311, "original_title": "Insidious", "budget": 1500000, "cast": [{"name": "Patrick Wilson", "character": "Josh Lambert", "id": 17178, "credit_id": "52fe4780c3a36847f813951f", "cast_id": 7, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Renai Lambert", "id": 9827, "credit_id": "52fe4780c3a36847f8139523", "cast_id": 8, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Lorraine Lambert", "id": 10767, "credit_id": "52fe4780c3a36847f8139527", "cast_id": 9, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Leigh Whannell", "character": "Specs", "id": 2128, "credit_id": "52fe4780c3a36847f813952b", "cast_id": 10, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 3}, {"name": "Angus Sampson", "character": "Tucker", "id": 59117, "credit_id": "52fe4780c3a36847f813952f", "cast_id": 11, "profile_path": "/jbUAdNqytgyuPPpEBvM4onQWt3Q.jpg", "order": 4}, {"name": "Ty Simpkins", "character": "Dalton Lambert", "id": 17181, "credit_id": "52fe4780c3a36847f8139533", "cast_id": 12, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 5}, {"name": "Lin Shaye", "character": "Elise Rainier", "id": 7401, "credit_id": "52fe4780c3a36847f813956d", "cast_id": 22, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 6}, {"name": "Andrew Astor", "character": "Foster Lambert", "id": 208524, "credit_id": "53a7509a0e0a261442004661", "cast_id": 24, "profile_path": null, "order": 7}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f8139515", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.6, "runtime": 103}, "57212": {"poster_path": "/6wMoQyJddEiLCzLUHiX7LNWhDol.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177000000, "overview": "Follows a young man named Albert and his horse, Joey, and how their bond is broken when Joey is sold to the cavalry and sent to the trenches of World War One. Despite being too young to enlist, Albert heads to France to save his friend.", "video": false, "id": 57212, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "War Horse", "tagline": "Separated by War. Tested by Battle. Bound by Friendship.", "vote_count": 303, "homepage": "http://www.warhorsemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1568911", "adult": false, "backdrop_path": "/iO4fslQ9CenAOcg3JfhN6o9va2.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2011-12-25", "popularity": 0.922510691083555, "original_title": "War Horse", "budget": 66000000, "cast": [{"name": "Tom Hiddleston", "character": "Capt. James Nicholls", "id": 91606, "credit_id": "52fe4928c3a36847f818c121", "cast_id": 2, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 0}, {"name": "Benedict Cumberbatch", "character": "Maj. Jamie Stewart", "id": 71580, "credit_id": "52fe4928c3a36847f818c125", "cast_id": 3, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 1}, {"name": "Toby Kebbell", "character": "Geordie Soldier", "id": 20286, "credit_id": "52fe4928c3a36847f818c129", "cast_id": 4, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 2}, {"name": "Emily Watson", "character": "Rose Narracott", "id": 1639, "credit_id": "52fe4928c3a36847f818c12d", "cast_id": 5, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 3}, {"name": "Jeremy Irvine", "character": "Albert Narracott", "id": 225692, "credit_id": "52fe4928c3a36847f818c131", "cast_id": 6, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 4}, {"name": "David Thewlis", "character": "Lyons", "id": 11207, "credit_id": "52fe4928c3a36847f818c13f", "cast_id": 9, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 6}, {"name": "Peter Mullan", "character": "Ted Narracott", "id": 3064, "credit_id": "52fe4929c3a36847f818c161", "cast_id": 16, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 7}, {"name": "David Kross", "character": "Pvt. G\u00fcnther Schr\u00f6der", "id": 5847, "credit_id": "52fe4929c3a36847f818c165", "cast_id": 17, "profile_path": "/50BcSbOZtfCktGMEepExob45O2h.jpg", "order": 8}, {"name": "Nicolas Bro", "character": "Friedrich", "id": 15086, "credit_id": "52fe4929c3a36847f818c16f", "cast_id": 19, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 9}, {"name": "David Dencik", "character": "Base Camp Officer", "id": 93236, "credit_id": "52fe4929c3a36847f818c173", "cast_id": 20, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 10}, {"name": "Eddie Marsan", "character": "Sgt. Fry", "id": 1665, "credit_id": "52fe4929c3a36847f818c177", "cast_id": 21, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 11}, {"name": "Celine Buckens", "character": "Emilie", "id": 1389549, "credit_id": "5475a3bac3a36859b9001536", "cast_id": 62, "profile_path": "/4g8tU91I2Nba1RnWRpnKPM3f3Zz.jpg", "order": 12}, {"name": "Matt Milne", "character": "Andrew Easton", "id": 1252495, "credit_id": "5475a580925141407a00158f", "cast_id": 64, "profile_path": null, "order": 14}, {"name": "Robert Emms", "character": "David Lyons", "id": 589652, "credit_id": "5475a59f925141527300212b", "cast_id": 65, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 15}, {"name": "Rainer Bock", "character": "Brandt", "id": 65054, "credit_id": "5475a606925141527300213f", "cast_id": 66, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 16}, {"name": "Geoff Bell", "character": "Sgt. Sam Perkins", "id": 6969, "credit_id": "5475a64cc3a3687fd9000e79", "cast_id": 67, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 17}, {"name": "Tony Pitts", "character": "Sgt. Martin", "id": 1229255, "credit_id": "5475a688c3a368364c0025dd", "cast_id": 68, "profile_path": null, "order": 18}, {"name": "Irfan Hussein", "character": "Sgt. Maj. Singh", "id": 1389553, "credit_id": "5475a6a49251414f190005df", "cast_id": 69, "profile_path": null, "order": 19}, {"name": "Pip Torrens", "character": "Maj. Tompkins", "id": 36666, "credit_id": "5475a6bd925141407a0015ca", "cast_id": 70, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 20}, {"name": "Patrick Kennedy", "character": "Lt.Waverley", "id": 1225859, "credit_id": "54cd7459c3a3681c9c000276", "cast_id": 71, "profile_path": null, "order": 21}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4928c3a36847f818c11d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.8, "runtime": 146}, "49021": {"poster_path": "/cnhNUChZVkLxrvfqDEVLKgBPy1z.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57777106, "overview": "Based on a shocking true story, Killer Elite pits two of the world\u2019s most elite operatives\u2014Danny, an ex-special ops agent and Hunter, his longtime mentor\u2014against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouse\u2014where the predators become the prey.", "video": false, "id": 49021, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Killer Elite", "tagline": "May the Best Man Live", "vote_count": 245, "homepage": "http://www.killerelite.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1448755", "adult": false, "backdrop_path": "/pQcSfSu4hy4AJ1KjjTxXKBQdMzE.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Current Entertainment", "id": 972}, {"name": "Omnilab Media", "id": 2729}, {"name": "Ambience Entertainment", "id": 3427}, {"name": "International Traders", "id": 6408}, {"name": "Sighvatsson Films", "id": 11369}, {"name": "Palomar Pictures (II)", "id": 11371}, {"name": "Film Victoria", "id": 11840}, {"name": "Wales Creative IP Fund", "id": 11841}], "release_date": "2011-09-23", "popularity": 1.62095929487664, "original_title": "Killer Elite", "budget": 66000000, "cast": [{"name": "Jason Statham", "character": "Danny", "id": 976, "credit_id": "52fe4781c3a36847f81396f9", "cast_id": 9, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Clive Owen", "character": "Spike", "id": 2296, "credit_id": "52fe4781c3a36847f81396fd", "cast_id": 10, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Hunter", "id": 380, "credit_id": "52fe4781c3a36847f8139701", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Dominic Purcell", "character": "Davies", "id": 10862, "credit_id": "52fe4781c3a36847f8139705", "cast_id": 12, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 3}, {"name": "Yvonne Strahovski", "character": "Anne", "id": 63312, "credit_id": "52fe4781c3a36847f8139709", "cast_id": 13, "profile_path": "/mgcaJaKhZtakVldW2KXYXhQ6ZJY.jpg", "order": 4}, {"name": "Aden Young", "character": "Meier", "id": 144081, "credit_id": "52fe4781c3a36847f813970d", "cast_id": 14, "profile_path": "/yXvlTjXdrMqEtHnL1pofXWNjFCJ.jpg", "order": 5}, {"name": "Ben Mendelsohn", "character": "Martin", "id": 77335, "credit_id": "52fe4781c3a36847f8139711", "cast_id": 15, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 6}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Agent", "id": 31164, "credit_id": "52fe4781c3a36847f8139715", "cast_id": 16, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 7}, {"name": "David Whiteley", "character": "M16 Man", "id": 267790, "credit_id": "52fe4781c3a36847f8139719", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Matthew Nable", "character": "Pennock", "id": 123879, "credit_id": "52fe4781c3a36847f813971d", "cast_id": 18, "profile_path": "/yE5MHKIUreuzL5bEgh8NTN8bSYe.jpg", "order": 9}, {"name": "Lachy Hulme", "character": "Harris", "id": 75122, "credit_id": "52fe4781c3a36847f8139721", "cast_id": 19, "profile_path": "/w2CvxXsrZWoJUcVgGs7RhpCovc3.jpg", "order": 10}, {"name": "Firass Dirani", "character": "Bakhait", "id": 56450, "credit_id": "52fe4781c3a36847f8139725", "cast_id": 20, "profile_path": "/dqIE2ckazhjMc5ETNCPgn8B4Mr9.jpg", "order": 11}, {"name": "Nick Tate", "character": "Commander B", "id": 85354, "credit_id": "52fe4781c3a36847f8139729", "cast_id": 21, "profile_path": "/1cQlUPh9S59TC4EtbovA7KC68ew.jpg", "order": 12}, {"name": "Bille Brown", "character": "Colonel Fitz", "id": 42393, "credit_id": "52fe4781c3a36847f813972d", "cast_id": 22, "profile_path": "/u6VUTGmbaSt0LfvbXMoY1P2weh8.jpg", "order": 13}, {"name": "Stewart Morritt", "character": "Campbell", "id": 369078, "credit_id": "52fe4781c3a36847f8139731", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Sandy Greenwood", "character": "Harris' Girlfriend", "id": 1387586, "credit_id": "546f6064c3a3682fa4002190", "cast_id": 48, "profile_path": "/aEpgeweTwS3Ul1mttSJGJG7ycMx.jpg", "order": 15}], "directors": [{"name": "Gary McKendry", "department": "Directing", "job": "Director", "credit_id": "52fe4781c3a36847f81396f5", "profile_path": null, "id": 141688}], "vote_average": 6.1, "runtime": 116}, "57214": {"poster_path": "/cWXkRLmzKfYutvWeJXaednoGKdF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100000000, "overview": "Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.", "video": false, "id": 57214, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Project X", "tagline": "Witness it", "vote_count": 433, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1636826", "adult": false, "backdrop_path": "/eJhymb0SiOd39L3BDe7aO7iQhQx.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Green Hat Films", "id": 3527}], "release_date": "2012-03-02", "popularity": 0.997800248331335, "original_title": "Project X", "budget": 12000000, "cast": [{"name": "Oliver Cooper", "character": "Costa", "id": 225694, "credit_id": "52fe4929c3a36847f818c1c1", "cast_id": 1002, "profile_path": "/1eBIzPMwi7xgOAqGztXByHfqrHc.jpg", "order": 0}, {"name": "Jonathan Daniel Brown", "character": "JB", "id": 225695, "credit_id": "52fe4929c3a36847f818c1c5", "cast_id": 1003, "profile_path": "/qrMeyCIdZw0SM0F5qbGbQEX1iwc.jpg", "order": 1}, {"name": "Thomas Mann", "character": "Thomas", "id": 1142720, "credit_id": "52fe4929c3a36847f818c24f", "cast_id": 1035, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 2}, {"name": "Dax Flame", "character": "Dax", "id": 996700, "credit_id": "52fe4929c3a36847f818c1eb", "cast_id": 1017, "profile_path": "/rEuR09MllLRYpg7gZCgtipOwuAj.jpg", "order": 3}, {"name": "Kirby Bliss Blanton", "character": "Kirby", "id": 131771, "credit_id": "52fe4929c3a36847f818c1df", "cast_id": 1013, "profile_path": "/vZkMAkFExFIME3A1SveuHQYAgIn.jpg", "order": 4}, {"name": "Brady Hender", "character": "Everett", "id": 996699, "credit_id": "52fe4929c3a36847f818c1e7", "cast_id": 1016, "profile_path": "/5HwQ5BSG6tho3OGg4qt5bGgrjDK.jpg", "order": 5}, {"name": "Nick Nervies", "character": "Tyler", "id": 1333921, "credit_id": "53a959520e0a2614320078f6", "cast_id": 1037, "profile_path": null, "order": 6}, {"name": "Alexis Knapp", "character": "Alexis", "id": 999790, "credit_id": "52fe4929c3a36847f818c1f7", "cast_id": 1020, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 7}, {"name": "Miles Teller", "character": "Miles", "id": 996701, "credit_id": "52fe4929c3a36847f818c1ef", "cast_id": 1018, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 8}, {"name": "Peter MacKenzie", "character": "Dad", "id": 62597, "credit_id": "52fe4929c3a36847f818c1f3", "cast_id": 1019, "profile_path": "/mAnOLlLQDEtUvAqEjKPLiQSJ0w5.jpg", "order": 9}, {"name": "Caitlin Dulany", "character": "Mom", "id": 42194, "credit_id": "52fe4929c3a36847f818c1e3", "cast_id": 1015, "profile_path": "/yWc0oe7bMythW2ENVyjCFTNKdrF.jpg", "order": 10}, {"name": "Brendan Miller", "character": "Brendan", "id": 83861, "credit_id": "52fe4929c3a36847f818c1db", "cast_id": 1012, "profile_path": "/dNMco4j668OZ0FkFMxEFyyrfRG9.jpg", "order": 11}, {"name": "Nichole Bloom", "character": "JB's Girl", "id": 996697, "credit_id": "52fe4929c3a36847f818c1d3", "cast_id": 1010, "profile_path": "/lnnOmkblreKRWtG7IBjGeDISmBz.jpg", "order": 12}, {"name": "Martin Klebba", "character": "Angry Little Person", "id": 4030, "credit_id": "52fe4929c3a36847f818c1c9", "cast_id": 1004, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 13}, {"name": "Sam Lant", "character": "Freshman Party Crasher", "id": 996698, "credit_id": "52fe4929c3a36847f818c1d7", "cast_id": 1011, "profile_path": "/ncZWeaHR3doeQKiaudYKf7dXHzh.jpg", "order": 14}], "directors": [{"name": "Nima Nourizadeh", "department": "Directing", "job": "Director", "credit_id": "52fe4929c3a36847f818c1bd", "profile_path": null, "id": 225693}], "vote_average": 6.6, "runtime": 88}, "8065": {"poster_path": "/4zKAgycQDJD2zIkmPYV3aMR8tEy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69823199, "overview": "Ben Campbell is a young, highly intelligent, student at M.I.T. in Boston who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine with the desire to become a doctor, Ben learns that he cannot afford the $300,000 for the four to five years of schooling as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor Micky Rosa into a small but secretive club of five. Students Jill, Choi, Kianna, and Fisher, who are being trained by Professor Rosa of the skill of card counting at blackjack.", "video": false, "id": 8065, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "21", "tagline": "They proved the Vegas Blackjack System was beatable...by beating the hell out of it.", "vote_count": 515, "homepage": "http://www.sonypictures.com/movies/21/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0478087", "adult": false, "backdrop_path": "/avqznLsnPzSROYJTxRMC70MM4Ps.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}], "release_date": "2008-03-27", "popularity": 0.783607801414717, "original_title": "21", "budget": 35000000, "cast": [{"name": "Jim Sturgess", "character": "Ben Campbell", "id": 38941, "credit_id": "52fe4490c3a36847f809d2fd", "cast_id": 1, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Micky Rosa", "id": 1979, "credit_id": "52fe4490c3a36847f809d301", "cast_id": 2, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Kate Bosworth", "character": "Jill Taylor", "id": 7517, "credit_id": "52fe4490c3a36847f809d305", "cast_id": 3, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 2}, {"name": "Aaron Yoo", "character": "Choi", "id": 54247, "credit_id": "52fe4490c3a36847f809d30d", "cast_id": 5, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 3}, {"name": "Liza Lapira", "character": "Kianna", "id": 51998, "credit_id": "52fe4490c3a36847f809d311", "cast_id": 6, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 4}, {"name": "Jacob Pitts", "character": "Fisher", "id": 54414, "credit_id": "52fe4490c3a36847f809d315", "cast_id": 7, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 5}, {"name": "Laurence Fishburne", "character": "Cole Williams", "id": 2975, "credit_id": "52fe4490c3a36847f809d309", "cast_id": 4, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 6}, {"name": "Jack McGee", "character": "Terry", "id": 10489, "credit_id": "52fe4490c3a36847f809d319", "cast_id": 8, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 7}, {"name": "Josh Gad", "character": "Miles", "id": 54415, "credit_id": "52fe4490c3a36847f809d31d", "cast_id": 9, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 8}, {"name": "Sam Golzari", "character": "Cam", "id": 54416, "credit_id": "52fe4490c3a36847f809d321", "cast_id": 10, "profile_path": "/1qKufCjC0aV6nHM1sGBiKHUY3pe.jpg", "order": 9}, {"name": "Helen Carey", "character": "Ellen Campbell", "id": 17185, "credit_id": "52fe4490c3a36847f809d389", "cast_id": 28, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 10}, {"name": "Jack Gilpin", "character": "Bob Phillips", "id": 77023, "credit_id": "52fe4490c3a36847f809d38d", "cast_id": 29, "profile_path": "/cYaMYTd4TawSeF9eUSwXR1rP3th.jpg", "order": 11}, {"name": "Ben Campbell", "character": "Kartengeber", "id": 54477, "credit_id": "52fe4490c3a36847f809d385", "cast_id": 27, "profile_path": "/zUbrFpDpLZzbbesdeJwrbTGyLQN.jpg", "order": 12}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe4490c3a36847f809d327", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 6.3, "runtime": 123}, "49026": {"poster_path": "/dEYnvnUfXrqvqeRSqvIEtmzhoA8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1081041287, "overview": "Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.", "video": false, "id": 49026, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Dark Knight Rises", "tagline": "The Legend Ends", "vote_count": 4875, "homepage": "http://www.thedarkknightrises.com/", "belongs_to_collection": {"backdrop_path": "/xfKot7lqaiW4XpL5TtDlVBA9ei9.jpg", "poster_path": "/bqS2lMgGkuodIXtDILFWTSWDDpa.jpg", "id": 263, "name": "The Dark Knight Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1345836", "adult": false, "backdrop_path": "/3bgtUfKQKNi3nJsAB5URpP2wdRt.jpg", "production_companies": [{"name": "Syncopy", "id": 9996}, {"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2012-07-20", "popularity": 4.68499667586586, "original_title": "The Dark Knight Rises", "budget": 250000000, "cast": [{"name": "Christian Bale", "character": "Bruce Wayne / Batman", "id": 3894, "credit_id": "52fe4781c3a36847f8139869", "cast_id": 2, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Michael Caine", "character": "Alfred", "id": 3895, "credit_id": "52fe4781c3a36847f8139881", "cast_id": 8, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Commissioner Gordon", "id": 64, "credit_id": "52fe4781c3a36847f8139875", "cast_id": 5, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Anne Hathaway", "character": "Selina Kyle", "id": 1813, "credit_id": "52fe4781c3a36847f813986d", "cast_id": 3, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 3}, {"name": "Tom Hardy", "character": "Bane", "id": 2524, "credit_id": "52fe4781c3a36847f8139871", "cast_id": 4, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 4}, {"name": "Marion Cotillard", "character": "Miranda", "id": 8293, "credit_id": "52fe4781c3a36847f813988d", "cast_id": 15, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 5}, {"name": "Joseph Gordon-Levitt", "character": "Blake", "id": 24045, "credit_id": "52fe4781c3a36847f8139879", "cast_id": 6, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 6}, {"name": "Morgan Freeman", "character": "Fox", "id": 192, "credit_id": "52fe4781c3a36847f813987d", "cast_id": 7, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 7}, {"name": "Cillian Murphy", "character": "Dr. Jonathan Crane / Scarecrow", "id": 2037, "credit_id": "52fe4781c3a36847f8139939", "cast_id": 46, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 8}, {"name": "Juno Temple", "character": "Jen", "id": 36594, "credit_id": "52fe4781c3a36847f8139885", "cast_id": 9, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 9}, {"name": "Liam Neeson", "character": "Ra's Al Ghul", "id": 3896, "credit_id": "52fe4781c3a36847f813993d", "cast_id": 47, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 10}, {"name": "Matthew Modine", "character": "Deputy Commissioner Foley", "id": 8654, "credit_id": "52fe4781c3a36847f813992d", "cast_id": 43, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 11}, {"name": "Alon Aboutboul", "character": "Dr. Pavel (as Alon Moni Aboutboul)", "id": 16607, "credit_id": "52fe4781c3a36847f8139935", "cast_id": 45, "profile_path": "/g2ER1Yk1jtwMkugOEkK8FdCGUTB.jpg", "order": 12}, {"name": "Ben Mendelsohn", "character": "Daggett", "id": 77335, "credit_id": "52fe4782c3a36847f8139945", "cast_id": 49, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 13}, {"name": "Nestor Carbonell", "character": "The Mayor", "id": 21316, "credit_id": "52fe4781c3a36847f8139889", "cast_id": 10, "profile_path": "/yALf2koeUAc2UNoT5o0hQO6Akzn.jpg", "order": 14}, {"name": "Josh Pence", "character": "Young Ra's Al Ghul", "id": 928532, "credit_id": "52fe4781c3a36847f8139909", "cast_id": 36, "profile_path": "/nNMhtY1gBYwnjZZpeGGW16fVXC5.jpg", "order": 15}, {"name": "Vincent van Ommen", "character": "Chanter (voice)", "id": 102516, "credit_id": "52fe4781c3a36847f8139925", "cast_id": 41, "profile_path": "/ioyMicmlgFB59KQ3JuRVhBGqrtn.jpg", "order": 16}, {"name": "Tom Conti", "character": "Prisoner", "id": 71010, "credit_id": "52fe4781c3a36847f8139929", "cast_id": 42, "profile_path": "/lpEvoHDWJtuV2h7Yw3NQisb902P.jpg", "order": 17}, {"name": "Joey King", "character": "Young Talia Al Ghul", "id": 125025, "credit_id": "52fe4781c3a36847f8139931", "cast_id": 44, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 18}, {"name": "Warren Brown", "character": "Mercenary Security #1", "id": 211521, "credit_id": "52fe4781c3a36847f8139941", "cast_id": 48, "profile_path": "/oDs6F2vYAo7aY65WVNt74OJWwmt.jpg", "order": 19}, {"name": "Daniel Sunjata", "character": "Captain Jones", "id": 10582, "credit_id": "52fe4782c3a36847f8139949", "cast_id": 50, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 20}, {"name": "Sam Kennard", "character": "Special Ops Sergeant", "id": 224365, "credit_id": "52fe4782c3a36847f8139951", "cast_id": 52, "profile_path": "/8kK3czVfS2ZQo5B5vxY0lBRmDWk.jpg", "order": 21}, {"name": "Aliash Tepina", "character": "Hooded Man #2", "id": 1334307, "credit_id": "53ab5495c3a3684bb900059a", "cast_id": 53, "profile_path": "/y9w1U8GLxsKRGkNMVueVDKeiwR.jpg", "order": 22}, {"name": "Nick Julian", "character": "Caterer", "id": 1334308, "credit_id": "53ab59d40e0a267622000761", "cast_id": 54, "profile_path": "/ldmu4cPa5QtjA8YWx3fNa4FEPSX.jpg", "order": 23}, {"name": "Miranda Nolan", "character": "Maid #2", "id": 1334309, "credit_id": "53ab5ba70e0a26761f000715", "cast_id": 55, "profile_path": "/lwIOE3hSz4M3l3dab0UrhoK2Xt6.jpg", "order": 24}, {"name": "Aidan Gillen", "character": "CIA Op", "id": 49735, "credit_id": "53e761100e0a266f9d00176c", "cast_id": 56, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 25}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4781c3a36847f8139865", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.4, "runtime": 165}, "8068": {"poster_path": "/7eVo5DbP7gcsDzHcpRCTA6JAuF2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25625110, "overview": "A gunslinger is embroiled in a war with a local drug runner.", "video": false, "id": 8068, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Desperado", "tagline": "When the smoke clears, it just means he's reloading.", "vote_count": 186, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6p1OzuIKWnTDfDea7IpB9xra5J.jpg", "poster_path": "/4UMPWCj3MuHLCR2vVPPNCxU6RDV.jpg", "id": 9649, "name": "Mexico Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112851", "adult": false, "backdrop_path": "/wA3qqVezyktBj92nTVXU7tYd1iG.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1995-08-25", "popularity": 0.518457476071144, "original_title": "Desperado", "budget": 7000000, "cast": [{"name": "Antonio Banderas", "character": "El Mariachi", "id": 3131, "credit_id": "52fe4490c3a36847f809d4f1", "cast_id": 3, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Carolina", "id": 3136, "credit_id": "52fe4490c3a36847f809d4f5", "cast_id": 4, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Joaquim de Almeida", "character": "Bucho", "id": 22462, "credit_id": "52fe4490c3a36847f809d4f9", "cast_id": 5, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 2}, {"name": "Cheech Marin", "character": "Short Bartender", "id": 11159, "credit_id": "52fe4490c3a36847f809d4fd", "cast_id": 6, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Buscemi", "id": 884, "credit_id": "52fe4490c3a36847f809d501", "cast_id": 7, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Carlos Andr\u00e9s G\u00f3mez", "character": "Right Hand", "id": 5295, "credit_id": "52fe4490c3a36847f809d505", "cast_id": 8, "profile_path": "/fJrzxb24agdScxqXbTWs90mQN0x.jpg", "order": 5}, {"name": "Quentin Tarantino", "character": "Pick-Up Guy", "id": 138, "credit_id": "52fe4490c3a36847f809d509", "cast_id": 9, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 6}, {"name": "Tito Larriva", "character": "Tavo", "id": 53763, "credit_id": "52fe4490c3a36847f809d50d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Angel Aviles", "character": "Zamira", "id": 53764, "credit_id": "52fe4490c3a36847f809d511", "cast_id": 11, "profile_path": "/40zdLo8BpwlBSQyFLCgiO16prQl.jpg", "order": 8}, {"name": "Danny Trejo", "character": "Navajas", "id": 11160, "credit_id": "52fe4490c3a36847f809d515", "cast_id": 12, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 9}, {"name": "Abraham Verduzco", "character": "Ni\u00f1o", "id": 53765, "credit_id": "52fe4490c3a36847f809d519", "cast_id": 13, "profile_path": "/9yxvXER6Eof82FUIMVNSTfhvf8J.jpg", "order": 10}, {"name": "Carlos Gallardo", "character": "Campa", "id": 20498, "credit_id": "52fe4490c3a36847f809d51d", "cast_id": 14, "profile_path": "/4ZT5vkGvOdmC8dLHciGN8emkkpj.jpg", "order": 11}, {"name": "Albert Michel Jr.", "character": "Quino", "id": 53766, "credit_id": "52fe4490c3a36847f809d521", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "David Alvarado", "character": "Buddy", "id": 6897, "credit_id": "52fe4490c3a36847f809d525", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Angela Lanza", "character": "Tourist Girl", "id": 4666, "credit_id": "52fe4490c3a36847f809d529", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Elizabeth Rodriguez", "character": "Mariachi Fan", "id": 65421, "credit_id": "550e0da5c3a3683f0a0002cb", "cast_id": 22, "profile_path": "/lwJXQ7DDRY9W4pdzQzJKdeKuCFl.jpg", "order": 15}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4490c3a36847f809d4e7", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.5, "runtime": 104}, "8077": {"poster_path": "/vz1vBw17F0x42bhziHdYRJC9uCv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159773545, "overview": "After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.", "video": false, "id": 8077, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Alien\u00b3", "tagline": "The bitch is back.", "vote_count": 478, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103644", "adult": false, "backdrop_path": "/oVV6z4Tqbklvy2uQAPAKZGokqzS.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Brandywine Productions", "id": 19747}], "release_date": "1992-05-22", "popularity": 1.50577098616456, "original_title": "Alien\u00b3", "budget": 50000000, "cast": [{"name": "Sigourney Weaver", "character": "Ripley", "id": 10205, "credit_id": "52fe4491c3a36847f809d8a7", "cast_id": 1, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Charles S. Dutton", "character": "Dillon", "id": 17764, "credit_id": "52fe4491c3a36847f809d8b1", "cast_id": 3, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 1}, {"name": "Charles Dance", "character": "Clemens", "id": 4391, "credit_id": "52fe4491c3a36847f809d8b5", "cast_id": 4, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 2}, {"name": "Pete Postlethwaite", "character": "David", "id": 4935, "credit_id": "52fe4491c3a36847f809d8b9", "cast_id": 5, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 3}, {"name": "Ralph Brown", "character": "Aaron", "id": 53916, "credit_id": "52fe4491c3a36847f809d8bd", "cast_id": 6, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 4}, {"name": "Paul McGann", "character": "Golic", "id": 47654, "credit_id": "52fe4491c3a36847f809d8c1", "cast_id": 7, "profile_path": "/vtp1wTbuxO9JfKP52xo0pjCOkh9.jpg", "order": 5}, {"name": "Danny Webb", "character": "Morse", "id": 53917, "credit_id": "52fe4491c3a36847f809d8c5", "cast_id": 8, "profile_path": "/dEAZ46qwZWF9CGxzaijoE0qnFMb.jpg", "order": 6}, {"name": "Lance Henriksen", "character": "Bishop II", "id": 2714, "credit_id": "52fe4491c3a36847f809d8c9", "cast_id": 9, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 7}, {"name": "Brian Glover", "character": "Andrews", "id": 14468, "credit_id": "52fe4491c3a36847f809d8eb", "cast_id": 15, "profile_path": "/dUqgIdAO8jctUM4ordJ0cbovR4M.jpg", "order": 8}, {"name": "Tom Woodruff Jr.", "character": "Alien", "id": 109870, "credit_id": "52fe4491c3a36847f809d8ef", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Deobia Oparei", "character": "Arthur", "id": 58758, "credit_id": "52fe4491c3a36847f809d907", "cast_id": 23, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 10}, {"name": "Niall Buggy", "character": "Eric", "id": 40043, "credit_id": "52fe4491c3a36847f809d8f3", "cast_id": 17, "profile_path": "/9TPlvhoblLdowWVSs8olnG0J7CO.jpg", "order": 11}, {"name": "Christopher John Fields", "character": "Rains", "id": 145531, "credit_id": "52fe4491c3a36847f809d8f7", "cast_id": 19, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 12}, {"name": "Peter Guinness", "character": "Gregor", "id": 27172, "credit_id": "52fe4491c3a36847f809d8fb", "cast_id": 20, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 13}, {"name": "Vincenzo Nicoli", "character": "Jude", "id": 24595, "credit_id": "52fe4491c3a36847f809d8ff", "cast_id": 21, "profile_path": "/bTP43izMKRfeULFJ2xONN3mG62c.jpg", "order": 14}, {"name": "Christopher Fairbank", "character": "Murphy", "id": 8399, "credit_id": "52fe4491c3a36847f809d903", "cast_id": 22, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 15}, {"name": "Philip Davis", "character": "Kevin", "id": 26854, "credit_id": "52fe4491c3a36847f809d90b", "cast_id": 24, "profile_path": "/znnB0M3mdPiiXZHjl9zUEP9MTiu.jpg", "order": 16}, {"name": "Paul Brennen", "character": "Troy", "id": 145532, "credit_id": "52fe4491c3a36847f809d90f", "cast_id": 25, "profile_path": "/5se1ioESfiqvhfZC8JOrqMouApD.jpg", "order": 17}, {"name": "Clive Mantle", "character": "William", "id": 145533, "credit_id": "52fe4491c3a36847f809d913", "cast_id": 26, "profile_path": "/6r632NEmhKpPzpNHe67uLhIfNJF.jpg", "order": 18}, {"name": "Carl Chase", "character": "Frank", "id": 127166, "credit_id": "52fe4491c3a36847f809d91b", "cast_id": 28, "profile_path": "/3HLdJB6ZQNi3DK4Ix9FXZ0a67K8.jpg", "order": 19}, {"name": "Hi Ching", "character": "Company Man", "id": 145534, "credit_id": "52fe4491c3a36847f809d917", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Leon Herbert", "character": "Boggs", "id": 145536, "credit_id": "52fe4491c3a36847f809d91f", "cast_id": 29, "profile_path": "/eMGvAyBwsgmHKgmHyHp3fJLfyxy.jpg", "order": 21}, {"name": "Danielle Edmond", "character": "Newt", "id": 145537, "credit_id": "52fe4491c3a36847f809d923", "cast_id": 30, "profile_path": "/aDYSWHp5Mbxl0fFYZ9nyCcdJItP.jpg", "order": 22}, {"name": "Holt McCallany", "character": "Junior", "id": 7497, "credit_id": "52fe4491c3a36847f809d927", "cast_id": 31, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 23}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4491c3a36847f809d8ad", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.0, "runtime": 114}, "8078": {"poster_path": "/ve2P64a9kzd7M78kfeaEzBEIEOR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162000000, "overview": "Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises \u2026 as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.", "video": false, "id": 8078, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Alien: Resurrection", "tagline": "It's already too late.", "vote_count": 393, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118583", "adult": false, "backdrop_path": "/kFslzsvxOQgjbuDfta3kzbOWQY5.jpg", "production_companies": [{"name": "Brandywine Productions", "id": 19747}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1997-11-26", "popularity": 1.31532467553944, "original_title": "Alien: Resurrection", "budget": 70000000, "cast": [{"name": "Sigourney Weaver", "character": "Ripley", "id": 10205, "credit_id": "52fe4492c3a36847f809d98b", "cast_id": 1, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Annalee Call", "id": 1920, "credit_id": "52fe4492c3a36847f809d9a1", "cast_id": 5, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Dominique Pinon", "character": "Vriess", "id": 2413, "credit_id": "52fe4492c3a36847f809d9a5", "cast_id": 6, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Johner", "id": 2372, "credit_id": "52fe4492c3a36847f809d9a9", "cast_id": 7, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Michael Wincott", "character": "Frank Elgyn", "id": 7486, "credit_id": "52fe4492c3a36847f809d9ad", "cast_id": 8, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 4}, {"name": "Brad Dourif", "character": "Dr. Jonathan Gediman", "id": 1370, "credit_id": "52fe4492c3a36847f809d9b1", "cast_id": 9, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 5}, {"name": "Gary Dourdan", "character": "Christie", "id": 40276, "credit_id": "52fe4492c3a36847f809d9b5", "cast_id": 10, "profile_path": "/yGNXneJeb4Ug1iJ08lspzJocpN0.jpg", "order": 6}, {"name": "Dan Hedaya", "character": "General Martin Perez", "id": 6486, "credit_id": "52fe4492c3a36847f809d9b9", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 7}, {"name": "Leland Orser", "character": "Larry Purvis", "id": 2221, "credit_id": "52fe4492c3a36847f809d9bd", "cast_id": 12, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 8}, {"name": "Raymond Cruz", "character": "Vincent Distephano", "id": 58650, "credit_id": "52fe4492c3a36847f809d9c1", "cast_id": 13, "profile_path": "/4k0r3xJjgTac5GiJoHDDBVAFYcj.jpg", "order": 9}, {"name": "J.E. Freeman", "character": "Dr. Mason Wren", "id": 5169, "credit_id": "52fe4492c3a36847f809d9e3", "cast_id": 19, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 10}, {"name": "David St. James", "character": "Surgeon", "id": 1598, "credit_id": "548d7d8692514122fc003bd3", "cast_id": 74, "profile_path": "/cOJhnH9pJph2snOgpTMgWcWY5kz.jpg", "order": 11}, {"name": "Marlene Bush", "character": "Scientist", "id": 1398983, "credit_id": "548d7da9925141031b000382", "cast_id": 75, "profile_path": null, "order": 12}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4492c3a36847f809d991", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 6.0, "runtime": 109}, "49040": {"poster_path": "/66na1ha5ejYGsNXbd5ShzwdCMwr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 276572938, "overview": "The fourth installment of the highly successful Bourne series sidelines main character Jason Bourne in order to focus on a fellow estranged assassin Aaron Cross (Jeremy Renner). The story centers on new CIA operative, Aaron Cross as he experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne. Edward Norton and Rachel Weisz co-star, with Joan Allen and Albert Finney reprising their roles from the previous films.", "video": false, "id": 49040, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Legacy", "tagline": "There Was Never Just One", "vote_count": 1545, "homepage": "http://www.thebournelegacy.com/", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1194173", "adult": false, "backdrop_path": "/gCdJYpX1TXGEZrEJl0mMTTpinMh.jpg", "production_companies": [{"name": "Captivate Entertainment", "id": 25716}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Dentsu", "id": 6452}], "release_date": "2012-08-10", "popularity": 1.47908351379855, "original_title": "The Bourne Legacy", "budget": 130000000, "cast": [{"name": "Jeremy Renner", "character": "Aaron Cross", "id": 17604, "credit_id": "52fe4782c3a36847f8139c51", "cast_id": 5, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Scott Glenn", "character": "Ezra Kramer", "id": 349, "credit_id": "52fe4782c3a36847f8139c6d", "cast_id": 12, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Dr. Marta Shearing", "id": 3293, "credit_id": "52fe4782c3a36847f8139c55", "cast_id": 6, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Edward Norton", "character": "Byer", "id": 819, "credit_id": "52fe4782c3a36847f8139c59", "cast_id": 7, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 3}, {"name": "Stacy Keach", "character": "Turso", "id": 825, "credit_id": "52fe4782c3a36847f8139c79", "cast_id": 15, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 4}, {"name": "Joan Allen", "character": "Pamela Landy", "id": 11148, "credit_id": "52fe4782c3a36847f8139c5d", "cast_id": 8, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 5}, {"name": "Donna Murphy", "character": "Dita Mandy", "id": 2517, "credit_id": "52fe4782c3a36847f8139c61", "cast_id": 9, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 6}, {"name": "Albert Finney", "character": "Dr. Albert Hirsch", "id": 3926, "credit_id": "52fe4782c3a36847f8139c65", "cast_id": 10, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 7}, {"name": "Michael Chernus", "character": "Arthur Ingram", "id": 87070, "credit_id": "52fe4782c3a36847f8139cab", "cast_id": 26, "profile_path": "/z3H7if45AI2bpT98m5geAXdlrSV.jpg", "order": 8}, {"name": "Oscar Isaac", "character": "#3", "id": 25072, "credit_id": "52fe4782c3a36847f8139c69", "cast_id": 11, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 9}, {"name": "Corey Stoll", "character": "Vendel", "id": 74541, "credit_id": "52fe4782c3a36847f8139c71", "cast_id": 13, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 10}, {"name": "David Strathairn", "character": "Noah Vosen", "id": 11064, "credit_id": "52fe4782c3a36847f8139c75", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 11}, {"name": "Michael Papajohn", "character": "Larry Hooper", "id": 20582, "credit_id": "52fe4782c3a36847f8139c7d", "cast_id": 16, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 12}, {"name": "Dennis Boutsikaris", "character": "Ward", "id": 118937, "credit_id": "52fe4782c3a36847f8139c81", "cast_id": 17, "profile_path": "/uq1dmNevTzOw62hbLhE6JMu7p1H.jpg", "order": 13}, {"name": "Sheena Colette", "character": "Candent Woman #2", "id": 1030256, "credit_id": "52fe4782c3a36847f8139c85", "cast_id": 18, "profile_path": "/x9huC1iIlzU0ev9B61So34b9n3X.jpg", "order": 14}, {"name": "Louis Ozawa Changchien", "character": "LARX #3", "id": 113308, "credit_id": "52fe4782c3a36847f8139c89", "cast_id": 19, "profile_path": "/2mQAXKYbqP7Lhhsdz3OBYB6IMCw.jpg", "order": 15}, {"name": "Corey Johnson", "character": "Ray Wills", "id": 17199, "credit_id": "52fe4782c3a36847f8139caf", "cast_id": 27, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 16}, {"name": "Jennifer Kim", "character": "Outcome #4", "id": 1077345, "credit_id": "52fe4782c3a36847f8139cb3", "cast_id": 28, "profile_path": "/nfcO4QPTlPXB4UVX1k0Jqp8nc5H.jpg", "order": 17}, {"name": "Elizabeth Marvel", "character": "Dr. Connie Dowd", "id": 126713, "credit_id": "52fe4782c3a36847f8139cb7", "cast_id": 29, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 18}, {"name": "Shane Jacobson", "character": "Mackie", "id": 74245, "credit_id": "52fe4782c3a36847f8139cbb", "cast_id": 30, "profile_path": "/bVACUQAGeNYOchpzIUkKoiHHJAf.jpg", "order": 19}, {"name": "Page Leong", "character": "Mrs. Yun", "id": 156729, "credit_id": "52fe4782c3a36847f8139cbf", "cast_id": 31, "profile_path": "/2RsStgOBJliUSUrqTaJwio974gV.jpg", "order": 20}, {"name": "Robert Christopher Riley", "character": "Outcome #6", "id": 1089770, "credit_id": "52fe4782c3a36847f8139cc3", "cast_id": 32, "profile_path": "/vnQMhDlZ1BX0BiUikoSo6BXU1Ii.jpg", "order": 21}, {"name": "\u017deljko Ivanek", "character": "Dr. Donald Foite", "id": 6752, "credit_id": "52fe4782c3a36847f8139cc7", "cast_id": 33, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 22}, {"name": "Lou Veloso", "character": "boatman", "id": 1156086, "credit_id": "539a8f2a0e0a260fb00013c0", "cast_id": 41, "profile_path": "/phFnSVDugcvpzid3gHAiIkIcNzK.jpg", "order": 23}], "directors": [{"name": "Tony Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe4782c3a36847f8139c41", "profile_path": "/9HOtDgcO6F4Fa4BaIjt0t3Vbxrj.jpg", "id": 19242}], "vote_average": 5.8, "runtime": 120}, "32657": {"poster_path": "/sfWuWsL4tdYvfzB2RXKaHEmDW7B.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 226497209, "overview": "Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.", "video": false, "id": 32657, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Percy Jackson & the Olympians: The Lightning Thief", "tagline": "From The Director of Harry Potter & The Philosopher's Stone", "vote_count": 560, "homepage": "http://www.imdb.com/title/tt0814255/?ref_=ttrel_rel_tt", "belongs_to_collection": {"backdrop_path": "/ae7DIULlFVTPp6mjgBLr4hzP59O.jpg", "poster_path": "/fimFFNm5LTSTaYcQEbjrFXT4rgo.jpg", "id": 179919, "name": "Percy Jackson Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0814255", "adult": false, "backdrop_path": "/pVXLoxvvFBwK6DUh677dZhcMGRm.jpg", "production_companies": [{"name": "TCF Vancouver Productions", "id": 28431}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "1492 Pictures", "id": 436}, {"name": "Sunswept Entertainment", "id": 5219}, {"name": "Dune Entertainment", "id": 444}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2010-02-11", "popularity": 1.2960946388373, "original_title": "Percy Jackson & the Olympians: The Lightning Thief", "budget": 95000000, "cast": [{"name": "Logan Lerman", "character": "Percy Jackson", "id": 33235, "credit_id": "52fe44e29251416c910201cf", "cast_id": 1, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 0}, {"name": "Brandon T. Jackson", "character": "Grover", "id": 53336, "credit_id": "52fe44e29251416c910201d3", "cast_id": 2, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 1}, {"name": "Alexandra Daddario", "character": "Annabeth", "id": 109513, "credit_id": "52fe44e29251416c910201d7", "cast_id": 3, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 2}, {"name": "Jake Abel", "character": "Luke", "id": 105727, "credit_id": "52fe44e29251416c910201db", "cast_id": 4, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 3}, {"name": "Sean Bean", "character": "Zeus", "id": 48, "credit_id": "52fe44e29251416c910201df", "cast_id": 5, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Pierce Brosnan", "character": "Mr. Brunner / Chiron", "id": 517, "credit_id": "52fe44e29251416c910201e3", "cast_id": 6, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Hades", "id": 4581, "credit_id": "52fe44e29251416c910201e7", "cast_id": 7, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Rosario Dawson", "character": "Persephone", "id": 5916, "credit_id": "52fe44e29251416c910201eb", "cast_id": 8, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 7}, {"name": "Melina Kanakaredes", "character": "Athena", "id": 25972, "credit_id": "52fe44e29251416c910201ef", "cast_id": 9, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 8}, {"name": "Catherine Keener", "character": "Sally Jackson", "id": 2229, "credit_id": "52fe44e29251416c910201f3", "cast_id": 10, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 9}, {"name": "Kevin McKidd", "character": "Poseidon", "id": 9013, "credit_id": "52fe44e29251416c910201f7", "cast_id": 11, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 10}, {"name": "Joe Pantoliano", "character": "Gabe Ugliano", "id": 532, "credit_id": "52fe44e29251416c910201fb", "cast_id": 12, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 11}, {"name": "Uma Thurman", "character": "Medusa", "id": 139, "credit_id": "52fe44e29251416c910201ff", "cast_id": 13, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 12}, {"name": "Julian Richings", "character": "Ferryman", "id": 2320, "credit_id": "52fe44e29251416c91020203", "cast_id": 14, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 13}, {"name": "Annie Ilonzeh", "character": "Aphrodite Girl", "id": 209196, "credit_id": "52fe44e29251416c91020219", "cast_id": 18, "profile_path": "/pClp0YqYYVjeKOzrjzS5S1Mi7GH.jpg", "order": 14}, {"name": "Alexis Knapp", "character": "Aphrodite Girl", "id": 999790, "credit_id": "52fe44e29251416c9102021d", "cast_id": 19, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 15}, {"name": "Natassia Malthe", "character": "Lotus Land Waitress", "id": 21430, "credit_id": "52fe44e29251416c91020221", "cast_id": 20, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 16}, {"name": "Erica Cerra", "character": "Hera", "id": 1218928, "credit_id": "52fe44e29251416c91020225", "cast_id": 21, "profile_path": "/4jWKnFDPw7YbqJUuG5TAb9NodDC.jpg", "order": 17}, {"name": "Marie Avgeropoulos", "character": "Aphrodite Girl", "id": 140114, "credit_id": "52fe44e29251416c91020229", "cast_id": 22, "profile_path": "/xSlt8am4RrYGsSGjZO3Oy46ORyE.jpg", "order": 18}, {"name": "Maria Olsen", "character": "Mrs. Dodds / Fury", "id": 142402, "credit_id": "55143e15c3a36803da000a55", "cast_id": 23, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 19}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe44e29251416c91020209", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.0, "runtime": 118}, "49047": {"poster_path": "/2gPjLWIyrWlAn2DgKMOKTBnZYyO.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 716392705, "overview": "Dr. Ryan Stone (Sandra Bullock), a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky (George Clooney) in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expance of space\u2026", "video": false, "id": 49047, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Gravity", "tagline": "Don't Let Go", "vote_count": 1866, "homepage": "http://gravitymovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1454468", "adult": false, "backdrop_path": "/9aoWzwOwy9NLuSk9LkBwwrBdPYM.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Esperanto Filmoj", "id": 7470}, {"name": "Heyday Films", "id": 7364}], "release_date": "2013-10-04", "popularity": 3.04355746091431, "original_title": "Gravity", "budget": 105000000, "cast": [{"name": "Sandra Bullock", "character": "Dr. Ryan Stone", "id": 18277, "credit_id": "52fe4783c3a36847f8139d6b", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "George Clooney", "character": "Matt Kowalski", "id": 1461, "credit_id": "52fe4783c3a36847f8139d6f", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 1}, {"name": "Ed Harris", "character": "Mission Control (voice)", "id": 228, "credit_id": "52fe4783c3a36847f8139dad", "cast_id": 21, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Orto Ignatiussen", "character": "Aningaaq (voice)", "id": 1223440, "credit_id": "52fe4783c3a36847f8139db5", "cast_id": 23, "profile_path": "/cIpItbFg6AqAVdAYDgFMlwZlf9p.jpg", "order": 3}, {"name": "Paul Sharma", "character": "Shariff (voice)", "id": 58587, "credit_id": "52fe4783c3a36847f8139db1", "cast_id": 22, "profile_path": "/7JtZRXtmaKdJ2aAPEP1eqmhl7Bt.jpg", "order": 4}, {"name": "Amy Warren", "character": "Explorer Captain (voice)", "id": 1223442, "credit_id": "52fe4783c3a36847f8139db9", "cast_id": 24, "profile_path": "/ipZ0DxKDD66lixcQpku29rGiCxA.jpg", "order": 5}, {"name": "Basher Savage", "character": "Space Station Captain (voice)", "id": 1027852, "credit_id": "52fe4783c3a36847f8139d8b", "cast_id": 14, "profile_path": "/7QSnc4MUJVZ56mz86aLDnZ3mdjN.jpg", "order": 6}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe4783c3a36847f8139d67", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 7.7, "runtime": 91}, "49049": {"poster_path": "/71fkYuMVMtdbREh9Mp3gTFmI8Bv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 41037742, "overview": "In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn\u2019t as easy as it seems in this explosive adaptation of the hugely popular comic series.", "video": false, "id": 49049, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Dredd", "tagline": "Judgement is coming", "vote_count": 854, "homepage": "http://dreddthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1343727", "adult": false, "backdrop_path": "/kqKcID44nGtIxhhzmziAX65abRx.jpg", "production_companies": [{"name": "Rena Film", "id": 46506}, {"name": "DNA Films", "id": 284}, {"name": "Reliance BIG Entertainment", "id": 6733}, {"name": "IM Global", "id": 7437}, {"name": "Peach Trees", "id": 46507}], "release_date": "2012-09-21", "popularity": 1.71167621395385, "original_title": "Dredd", "budget": 50000000, "cast": [{"name": "Karl Urban", "character": "Judge Dredd", "id": 1372, "credit_id": "52fe4783c3a36847f8139e4b", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 0}, {"name": "Olivia Thirlby", "character": "Anderson", "id": 52442, "credit_id": "52fe4783c3a36847f8139e4f", "cast_id": 3, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 1}, {"name": "Lena Headey", "character": "Ma-Ma", "id": 17286, "credit_id": "52fe4783c3a36847f8139e61", "cast_id": 8, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 2}, {"name": "Wood Harris", "character": "Kay", "id": 65829, "credit_id": "52fe4783c3a36847f8139e6d", "cast_id": 11, "profile_path": "/u88haG6iG7zwV0PTk9tSG5obaeP.jpg", "order": 3}, {"name": "Jason Cope", "character": "Zwirner", "id": 82193, "credit_id": "52fe4783c3a36847f8139e53", "cast_id": 4, "profile_path": "/scn3r86ekzN1RQpsLc6Rhb7D76x.jpg", "order": 4}, {"name": "Domhnall Gleeson", "character": "Clan Techie", "id": 93210, "credit_id": "52fe4783c3a36847f8139e75", "cast_id": 18, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 5}, {"name": "Rakie Ayola", "character": "Chief Judge", "id": 195575, "credit_id": "52fe4783c3a36847f8139e65", "cast_id": 9, "profile_path": "/vCdshEaPP8lrClphIMwK65Wv2XA.jpg", "order": 6}, {"name": "Deobia Oparei", "character": "Paramedic TJ", "id": 58758, "credit_id": "52fe4783c3a36847f8139e85", "cast_id": 27, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 7}, {"name": "Langley Kirkwood", "character": "Judge Lex", "id": 37093, "credit_id": "52fe4783c3a36847f8139e57", "cast_id": 5, "profile_path": "/tjX3GUBhLujP4s3KCM763V7bQge.jpg", "order": 8}, {"name": "Warrick Grier", "character": "Caleb", "id": 107550, "credit_id": "52fe4783c3a36847f8139e69", "cast_id": 10, "profile_path": "/t12KLQgyB9oC86IvfbLB5J2BlZE.jpg", "order": 9}, {"name": "Scott Sparrow", "character": "Japhet", "id": 1134987, "credit_id": "52fe4783c3a36847f8139e71", "cast_id": 12, "profile_path": "/mfuklIvNtqIR4jovnDpjeQsb8z6.jpg", "order": 10}, {"name": "Porteus Xandau", "character": "Driver", "id": 230822, "credit_id": "52fe4783c3a36847f8139ed7", "cast_id": 41, "profile_path": "/cokfPKuMyrfWYPONUcPaSlHujXj.jpg", "order": 11}, {"name": "Joe Vaz", "character": "Big Joe", "id": 137463, "credit_id": "52fe4783c3a36847f8139e79", "cast_id": 19, "profile_path": "/wNW0XpdWxAe2pzVjbRagqdhBEHk.jpg", "order": 12}, {"name": "Nicole Bailey", "character": "Cathy", "id": 200002, "credit_id": "52fe4783c3a36847f8139e7d", "cast_id": 22, "profile_path": "/3HzCjGQQq68fbAG46ClccMs1SbU.jpg", "order": 13}, {"name": "Karl Thaning", "character": "Judge Chan", "id": 209193, "credit_id": "52fe4783c3a36847f8139e81", "cast_id": 25, "profile_path": "/e08CojIbdPtwL2OrnIDyzl8xLWg.jpg", "order": 14}], "directors": [{"name": "Pete Travis", "department": "Directing", "job": "Director", "credit_id": "52fe4783c3a36847f8139e47", "profile_path": "/xHxcow0RqzkTM2vwgfnpOT2FoSe.jpg", "id": 43141}], "vote_average": 6.3, "runtime": 95}, "8090": {"poster_path": "/XX32uGigY8wVMGESal2BtEf8kU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32483410, "overview": "Special Agent Jennifer Marsh (Diane Lane) works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out.", "video": false, "id": 8090, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Untraceable", "tagline": "A cyber killer has finally found the perfect accomplice: You.", "vote_count": 54, "homepage": "http://www.sonypictures.com/movies/untraceable/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0880578", "adult": false, "backdrop_path": "/eXuIPt9I1xuaVddlgzEQRC2EMnJ.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Cohen/Pearl Productions", "id": 2397}], "release_date": "2008-01-22", "popularity": 0.442819577498355, "original_title": "Untraceable", "budget": 35000000, "cast": [{"name": "Diane Lane", "character": "Agent Jennifer Marsh", "id": 2882, "credit_id": "52fe4492c3a36847f809dc0f", "cast_id": 1, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 0}, {"name": "Billy Burke", "character": "Eric Box", "id": 21029, "credit_id": "52fe4492c3a36847f809dc85", "cast_id": 23, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 1}, {"name": "Colin Hanks", "character": "Griffin Dowd", "id": 3492, "credit_id": "52fe4492c3a36847f809dc89", "cast_id": 24, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 2}, {"name": "Joseph Cross", "character": "Owen Reilly", "id": 33528, "credit_id": "52fe4492c3a36847f809dc8d", "cast_id": 25, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 3}, {"name": "Mary Beth Hurt", "character": "Stella Marsh", "id": 54782, "credit_id": "52fe4492c3a36847f809dc91", "cast_id": 26, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 4}, {"name": "Peter Lewis", "character": "Richard Brooks", "id": 54783, "credit_id": "52fe4492c3a36847f809dc95", "cast_id": 27, "profile_path": "/mUIoV6iig49oUwF6y6iTGbiY4j9.jpg", "order": 5}, {"name": "Perla Haney-Jardine", "character": "Annie Haskins", "id": 6585, "credit_id": "52fe4492c3a36847f809dc99", "cast_id": 28, "profile_path": "/3G3vIBZgZkTzrmvyNiEzOsb5v38.jpg", "order": 6}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe4492c3a36847f809dc15", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 5.8, "runtime": 101}, "49051": {"poster_path": "/h1XjBJoWdOh8aegBoVYKgABQZSL.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1017003568, "overview": "Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.", "video": false, "id": 49051, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Hobbit: An Unexpected Journey", "tagline": "From the smallest beginnings come the greatest legends.", "vote_count": 4971, "homepage": "http://www.thehobbit.com/", "belongs_to_collection": {"backdrop_path": "/7wO7MSnP5UcwR2cTHdJFF1vP4Ie.jpg", "poster_path": "/hQghXOjSS2xfzx9XnMyZqt8brCF.jpg", "id": 121938, "name": "The Hobbit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0903624", "adult": false, "backdrop_path": "/jjAq3tCezdlQduusgtMhpY2XzW0.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "WingNut Films", "id": 11}, {"name": "New Line Cinema", "id": 12}], "release_date": "2012-12-14", "popularity": 5.94318629549635, "original_title": "The Hobbit: An Unexpected Journey", "budget": 250000000, "cast": [{"name": "Ian McKellen", "character": "Gandalf", "id": 1327, "credit_id": "52fe4783c3a36847f8139f93", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 0}, {"name": "Martin Freeman", "character": "Bilbo", "id": 7060, "credit_id": "52fe4783c3a36847f8139f87", "cast_id": 3, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 1}, {"name": "Richard Armitage", "character": "Thorin", "id": 30315, "credit_id": "52fe4783c3a36847f8139fa9", "cast_id": 13, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 2}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe4783c3a36847f8139f8b", "cast_id": 4, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 3}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe4783c3a36847f8139f83", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 4}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe4783c3a36847f8139f9b", "cast_id": 8, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 5}, {"name": "Sylvester McCoy", "character": "Radagast", "id": 80112, "credit_id": "52fe4783c3a36847f8139f9f", "cast_id": 10, "profile_path": "/hgM7jEkkwI0HHx3K44UE48gBbfa.jpg", "order": 6}, {"name": "Ian Holm", "character": "Older Bilbo", "id": 65, "credit_id": "52fe4783c3a36847f8139f97", "cast_id": 7, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 7}, {"name": "Elijah Wood", "character": "Frodo", "id": 109, "credit_id": "52fe4783c3a36847f8139f8f", "cast_id": 5, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 8}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe4783c3a36847f8139fad", "cast_id": 16, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 9}, {"name": "Lee Pace", "character": "Thranduil", "id": 72095, "credit_id": "52fe4783c3a36847f8139fb1", "cast_id": 19, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 10}, {"name": "Conan Stevens", "character": "Azog", "id": 127453, "credit_id": "52fe4783c3a36847f8139fb5", "cast_id": 20, "profile_path": "/8mlrCTSXDInF15w6CO4IYgbPKg7.jpg", "order": 11}, {"name": "Bret McKenzie", "character": "Lindir", "id": 105584, "credit_id": "52fe4783c3a36847f8139fb9", "cast_id": 21, "profile_path": "/tEP4b5bTpSxJUHOYItg5xrZh43F.jpg", "order": 12}, {"name": "Aidan Turner", "character": "Kili", "id": 207558, "credit_id": "52fe4783c3a36847f8139fbd", "cast_id": 22, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 13}, {"name": "James Nesbitt", "character": "Bofur", "id": 34715, "credit_id": "52fe4783c3a36847f8139fc1", "cast_id": 23, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 14}, {"name": "Graham McTavish", "character": "Dwalin", "id": 95047, "credit_id": "52fe4783c3a36847f8139fc5", "cast_id": 24, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 15}, {"name": "Barry Humphries", "character": "Great Goblin", "id": 22, "credit_id": "52fe4784c3a36847f8139fc9", "cast_id": 25, "profile_path": "/bBXWmZtFbKy6Wzk1fHOCE8j6KfS.jpg", "order": 16}, {"name": "Ken Stott", "character": "Balin", "id": 25136, "credit_id": "52fe4784c3a36847f8139fcd", "cast_id": 26, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 17}, {"name": "Jeffrey Thomas", "character": "King Thror", "id": 218563, "credit_id": "52fe4784c3a36847f8139fd1", "cast_id": 28, "profile_path": "/vLO7WJKnAxDV6IBH8fBAmsTnmzI.jpg", "order": 18}, {"name": "Mark Hadlow", "character": "Dori", "id": 81877, "credit_id": "52fe4784c3a36847f8139fd5", "cast_id": 29, "profile_path": "/qNBpe4BKgKrLF6yZrCtCjFMRFJv.jpg", "order": 19}, {"name": "John Callen", "character": "Oin", "id": 534336, "credit_id": "52fe4784c3a36847f8139fd9", "cast_id": 30, "profile_path": "/k6JoHrkyGMH0b13yZxtLKtW1npz.jpg", "order": 20}, {"name": "William Kircher", "character": "Bifur/Tom Troll", "id": 67123, "credit_id": "52fe4784c3a36847f8139fdd", "cast_id": 31, "profile_path": "/pgSkxH8LeJhNWKwG3D5690ZTLbs.jpg", "order": 21}, {"name": "John Bell", "character": "Bain", "id": 126667, "credit_id": "52fe4784c3a36847f813a071", "cast_id": 58, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 22}, {"name": "Benedict Cumberbatch", "character": "Necromancer", "id": 71580, "credit_id": "52fe4784c3a36847f813a075", "cast_id": 59, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 23}, {"name": "Dean O'Gorman", "character": "Fili", "id": 152566, "credit_id": "52fe4784c3a36847f813a079", "cast_id": 60, "profile_path": "/lSXxMaASqm9TfnKaDNaxolEOW3A.jpg", "order": 24}, {"name": "Manu Bennett", "character": "Azog", "id": 41782, "credit_id": "52fe4784c3a36847f813a07d", "cast_id": 61, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 25}, {"name": "Jed Brophy", "character": "Nori", "id": 173451, "credit_id": "534106e4c3a36815170013e3", "cast_id": 64, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 26}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4783c3a36847f8139f7f", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.8, "runtime": 169}, "24480": {"poster_path": "/5M5bg79OV96Vb4O0fDjX5clxASG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Everyone knows that the stork delivers babies, but where do the storks get the babies from? The answer lies up in the stratosphere, where cloud people sculpt babies from clouds and bring them to life. Gus, a lonely and insecure grey cloud, is a master at creating \"dangerous\" babies. Crocodiles, porcupines, rams and more - Gus's beloved creations are works of art, but more than a handful for his loyal delivery stork partner, Peck. As Gus's creations become more and more rambunctious, Peck's job gets harder and harder. How will Peck manage to handle both his hazardous cargo and his friend's fiery temperament?", "video": false, "id": 24480, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Partly Cloudy", "tagline": "", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1425244", "adult": false, "backdrop_path": "/xxAgWR8WVBoXDUIopqHNYFxyla6.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2009-05-28", "popularity": 0.398014078413721, "original_title": "Partly Cloudy", "budget": 0, "cast": [{"name": "Tony Fucile", "character": "Gus / Peck / Other males (voice)", "id": 1260745, "credit_id": "52fe4498c3a368484e02bb71", "cast_id": 5, "profile_path": null, "order": 0}, {"name": "Lori Richardson", "character": "Female Cloud / Human Mom / Other females (voice)", "id": 225986, "credit_id": "52fe4498c3a368484e02bb6d", "cast_id": 4, "profile_path": null, "order": 1}], "directors": [{"name": "Peter Sohn", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a368484e02bb63", "profile_path": "/ouaPg2hdBBXfq8N7HPatvEq3P81.jpg", "id": 21198}], "vote_average": 8.0, "runtime": 5}, "82650": {"poster_path": "/tev1d0E9hkiloecGi038tvTsm3y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77112176, "overview": "School is out and Greg is ready for the days of summer, when all his plans go wrong. What on earth is he going to do all summer?", "video": false, "id": 82650, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Diary of a Wimpy Kid: Dog Days", "tagline": "School's Out for the summer", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hTbw2nLM44eE5m7ZIIXodcoDR1X.jpg", "poster_path": "/4Miizfzuds4ldROTff9vB0Z3EId.jpg", "id": 86110, "name": "Diary of a Wimpy Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2023453", "adult": false, "backdrop_path": "/4mdRyMSLHxeTIwqNLUgQtNxla20.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2012-08-02", "popularity": 0.46392901657775, "original_title": "Diary of a Wimpy Kid: Dog Days", "budget": 22000000, "cast": [{"name": "Devon Bostick", "character": "Rodrick Heffley", "id": 90498, "credit_id": "52fe48649251416c9108ab9b", "cast_id": 11, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Frank Heffley", "id": 18324, "credit_id": "52fe48649251416c9108ab9f", "cast_id": 12, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Peyton List", "character": "Holly Hills", "id": 1254435, "credit_id": "52fe48649251416c9108abbf", "cast_id": 21, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 2}, {"name": "Rachael Harris", "character": "Susan Heffley", "id": 46074, "credit_id": "52fe48649251416c9108aba3", "cast_id": 14, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 3}, {"name": "Zachary Gordon", "character": "Greg Heffley", "id": 89819, "credit_id": "52fe48649251416c9108aba7", "cast_id": 15, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 4}, {"name": "Karan Brar", "character": "Chirag Gupta", "id": 111923, "credit_id": "52fe48649251416c9108abab", "cast_id": 16, "profile_path": "/eelNaGrUz5jRyEk6XlH6C1q5pON.jpg", "order": 5}, {"name": "Robert Capron", "character": "Rowley Jefferson", "id": 111922, "credit_id": "52fe48649251416c9108abaf", "cast_id": 17, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 6}, {"name": "Laine MacNeil", "character": "Patty Farrell", "id": 84468, "credit_id": "52fe48649251416c9108abb3", "cast_id": 18, "profile_path": "/1CX7wfCXTttRUVwMnfWmHtl9kz1.jpg", "order": 7}, {"name": "Grayson Russell", "character": "Fregley", "id": 111921, "credit_id": "52fe48649251416c9108abb7", "cast_id": 19, "profile_path": "/mgpxDDI7uqhdPgT0VoMSW28dh4y.jpg", "order": 8}, {"name": "Connor Fielding", "character": "Manny Heffley", "id": 858704, "credit_id": "52fe48649251416c9108abbb", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe48639251416c9108ab61", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}], "vote_average": 5.9, "runtime": 94}, "81836": {"poster_path": "/zGVAVQufbwE5BjU17OBkXM9PWRS.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16684352, "overview": "Set in the romantic city of Rome. The intertwining stories of a worker who wakes up to find himself a celebrity, an architect who takes a trip back to the street he lived on as a student, a young couple on their honeymoon, and a frustrated opera director who has a talent for discovering talented singers.", "video": false, "id": 81836, "genres": [{"id": 35, "name": "Comedy"}], "title": "To Rome with Love", "tagline": "", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1859650", "adult": false, "backdrop_path": "/sGyUqZQZF5IByJW3V5jivIVtHl1.jpg", "production_companies": [{"name": "Mediapro", "id": 12010}, {"name": "Perdido Productions", "id": 12966}, {"name": "Medusa Film", "id": 6246}, {"name": "Gravier Productions", "id": 1824}], "release_date": "2012-07-04", "popularity": 0.475183502465677, "original_title": "To Rome with Love", "budget": 17000000, "cast": [{"name": "Ellen Page", "character": "Shannon", "id": 27578, "credit_id": "52fe482e9251416c910830e1", "cast_id": 3, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 0}, {"name": "Woody Allen", "character": "Mark Lovegood", "id": 1243, "credit_id": "52fe482e9251416c910830e5", "cast_id": 4, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 1}, {"name": "Jesse Eisenberg", "character": "Tyson", "id": 44735, "credit_id": "52fe482e9251416c910830e9", "cast_id": 5, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Anna", "id": 955, "credit_id": "52fe482e9251416c910830ed", "cast_id": 6, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "Alec Baldwin", "character": "John", "id": 7447, "credit_id": "52fe482e9251416c910830f1", "cast_id": 7, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 4}, {"name": "Roberto Benigni", "character": "Leopoldo", "id": 4818, "credit_id": "52fe482e9251416c910830f5", "cast_id": 8, "profile_path": "/3PTaBUHrSgculvAFD7xbZqZWMo9.jpg", "order": 5}, {"name": "Alison Pill", "character": "Lillian", "id": 17486, "credit_id": "52fe482e9251416c910830f9", "cast_id": 9, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 6}, {"name": "Alessandra Mastronardi", "character": "Milly", "id": 145326, "credit_id": "52fe482e9251416c910830fd", "cast_id": 10, "profile_path": "/cRSTrcnazaYECQhzozHWjnvklbB.jpg", "order": 7}, {"name": "Riccardo Scamarcio", "character": "Rapinatore hotel", "id": 59270, "credit_id": "52fe482e9251416c91083101", "cast_id": 11, "profile_path": "/zpphrSmdn2TR0F0kbVG5CAGqfxv.jpg", "order": 8}, {"name": "Judy Davis", "character": "Phyllis", "id": 351, "credit_id": "52fe482e9251416c91083105", "cast_id": 12, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 9}, {"name": "Ornella Muti", "character": "Pia Fusari", "id": 27163, "credit_id": "52fe482e9251416c91083109", "cast_id": 13, "profile_path": "/5bwQ4mTsGROX3KHtlvEXkFObpRD.jpg", "order": 10}, {"name": "Greta Gerwig", "character": "Sally", "id": 45400, "credit_id": "52fe482e9251416c9108310d", "cast_id": 14, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 11}, {"name": "Flavio Parenti", "character": "Michelangelo", "id": 125488, "credit_id": "52fe482e9251416c91083111", "cast_id": 15, "profile_path": "/dyFHHbWuhiukLyaW5rDsmVUzFYL.jpg", "order": 12}, {"name": "Alessandro Tiberi", "character": "Antonio", "id": 210766, "credit_id": "52fe482e9251416c91083115", "cast_id": 16, "profile_path": "/tQRIe0LF3QI83hG3cILbFvV56Us.jpg", "order": 13}, {"name": "Carol Alt", "character": "Carol", "id": 52087, "credit_id": "52fe482e9251416c91083119", "cast_id": 17, "profile_path": "/9hU7AJO7TWgCo7mJJJWhR0wVjkY.jpg", "order": 14}, {"name": "David Pasquesi", "character": "Tim", "id": 74487, "credit_id": "52fe482e9251416c9108311d", "cast_id": 18, "profile_path": "/gdmc0k64Tz1s7mJRVIWKjJJSn1M.jpg", "order": 15}, {"name": "Lynn Swanson", "character": "Ellen", "id": 553696, "credit_id": "52fe482e9251416c91083121", "cast_id": 19, "profile_path": "/fpRL5fvbLufIO2CfQ4jrV6ofnYR.jpg", "order": 16}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe482e9251416c910830d7", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 5.6, "runtime": 112}, "76649": {"poster_path": "/x1QMhNN6dNghhqltcZKBEMuWQ9g.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108550407, "overview": "Set in 79 A.D., POMPEII tells the epic story of Milo, a slave turned invincible gladiator who finds himself in a race against time to save his true love Cassia, the beautiful daughter of a wealthy merchant who has been unwillingly betrothed to a corrupt Roman Senator. As Mount Vesuvius erupts in a torrent of blazing lava, Milo must fight his way out of the arena in order to save his beloved as the once magnificent Pompeii crumbles around him.", "video": false, "id": 76649, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Pompeii", "tagline": "No warning. No escape.", "vote_count": 409, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1921064", "adult": false, "backdrop_path": "/6Q4GeMo08AOJJos9BzgnutFiZTG.jpg", "production_companies": [{"name": "Don Carmody Productions", "id": 4253}, {"name": "TriStar Pictures", "id": 559}, {"name": "FilmDistrict", "id": 7263}, {"name": "Constantin Film International", "id": 12162}, {"name": "Impact Pictures", "id": 248}], "release_date": "2014-02-21", "popularity": 1.2442139391904, "original_title": "Pompeii", "budget": 130000000, "cast": [{"name": "Kit Harington", "character": "Milo", "id": 239019, "credit_id": "52fe4946c3a368484e1235a3", "cast_id": 3, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Aurelia", "id": 530, "credit_id": "52fe4946c3a368484e1235af", "cast_id": 6, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Emily Browning", "character": "Cassia", "id": 70456, "credit_id": "52fe4946c3a368484e12359f", "cast_id": 2, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 2}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Atticus", "id": 31164, "credit_id": "52fe4946c3a368484e1235b3", "cast_id": 7, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 3}, {"name": "Jessica Lucas", "character": "Ariadne", "id": 51989, "credit_id": "530c60fcc3a3685c0c000d9d", "cast_id": 17, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 4}, {"name": "Jared Harris", "character": "Lucretius", "id": 15440, "credit_id": "52fe4946c3a368484e1235ab", "cast_id": 5, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 5}, {"name": "Joe Pingue", "character": "Gracecus", "id": 86237, "credit_id": "53039c74c3a3680a3f64a0b9", "cast_id": 14, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 6}, {"name": "Kiefer Sutherland", "character": "Corvus", "id": 2628, "credit_id": "52fe4946c3a368484e1235a7", "cast_id": 4, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 7}, {"name": "Currie Graham", "character": "Bellator", "id": 156590, "credit_id": "53039c82c3a36809fd5f3f82", "cast_id": 15, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 8}, {"name": "Ron Kennell", "character": "The Weasel", "id": 1224669, "credit_id": "53039c0892514161a23488ba", "cast_id": 12, "profile_path": "/6M41eLlFQ3M0gyOHbKj8iRSmbjY.jpg", "order": 9}, {"name": "Rebecca Eady", "character": "Milo's Mother", "id": 1294155, "credit_id": "53039bed9251411cf006a9c1", "cast_id": 11, "profile_path": "/kytYJuqyZyRfdPkJbPC3fbULGsG.jpg", "order": 10}, {"name": "Sasha Roiz", "character": "Proculus", "id": 6071, "credit_id": "53039c1692514121a161f138", "cast_id": 13, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 11}, {"name": "Jean Frenette", "character": "Boss Slaver", "id": 92234, "credit_id": "53039c8fc3a3680a3f64a28c", "cast_id": 16, "profile_path": "/6hvHdlR9Hjb7RjgbJ2AjmlLmjVN.jpg", "order": 12}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4946c3a368484e12359b", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.3, "runtime": 105}, "229297": {"poster_path": "/pSakqsaqifEbgY2Q8EhesyFWdGt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set in the 1920s French Riviera, a master magician is commissioned to try and expose a psychic as a fraud.", "video": false, "id": 229297, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Magic in the Moonlight", "tagline": "", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2870756", "adult": false, "backdrop_path": "/4mDvMIGV4x8UKpLFCIoKkfA9Ro0.jpg", "production_companies": [{"name": "Perdido Productions", "id": 12966}, {"name": "Harbor Picture Company", "id": 23716}], "release_date": "2014-07-25", "popularity": 1.06483895842764, "original_title": "Magic in the Moonlight", "budget": 0, "cast": [{"name": "Colin Firth", "character": "Stanley Crawford", "id": 5472, "credit_id": "52fe4eea9251416c75166c91", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 0}, {"name": "Emma Stone", "character": "Sophie Baker", "id": 54693, "credit_id": "52fe4eea9251416c75166c8d", "cast_id": 1, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Hamish Linklater", "character": "Brice", "id": 184581, "credit_id": "52fe4eea9251416c75166c99", "cast_id": 4, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 2}, {"name": "Marcia Gay Harden", "character": "Mrs. Baker", "id": 4726, "credit_id": "52fe4eea9251416c75166c95", "cast_id": 3, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 3}, {"name": "Jacki Weaver", "character": "Grace", "id": 67837, "credit_id": "52fe4eea9251416c75166c9d", "cast_id": 5, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 4}, {"name": "Erica Leerhsen", "character": "Caroline", "id": 57514, "credit_id": "538e1748c3a368275300007c", "cast_id": 10, "profile_path": "/qI82zKaMmoSsWmjvbvWuNN0lWJy.jpg", "order": 5}, {"name": "Eileen Atkins", "character": "Aunt Vanessa", "id": 20300, "credit_id": "52fe4eea9251416c75166ca1", "cast_id": 6, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 6}, {"name": "Simon McBurney", "character": "Howard Burkan", "id": 16358, "credit_id": "538e1741c3a3682760000072", "cast_id": 9, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 7}, {"name": "Catherine McCormack", "character": "Olivia", "id": 2462, "credit_id": "5484dc879251416a63000f61", "cast_id": 17, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 8}, {"name": "Jeremy Shamos", "character": "George", "id": 155222, "credit_id": "538e1751c3a3682760000074", "cast_id": 11, "profile_path": "/xZSJqN8pBNDX7dwXavI4DUOYBEn.jpg", "order": 9}, {"name": "Antonia Clarke", "character": "Wei Ling Soo's Assistant", "id": 1278555, "credit_id": "54c641e9c3a368789b00a33d", "cast_id": 18, "profile_path": "/pIEcwcJM4izHP4JFOkQcgniJzyK.jpg", "order": 10}, {"name": "Natasha Andrews", "character": "Wei Ling Soo's Assistant", "id": 236622, "credit_id": "54c6446a9251412ece003abf", "cast_id": 19, "profile_path": "/dp5hKPAZY8xWp3eFZYPDSXdGAnV.jpg", "order": 11}, {"name": "Val\u00e9rie Beaulieu", "character": "Wei Ling Soo's Assistant", "id": 1418841, "credit_id": "54c64516c3a368789b00a391", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Peter Wollasch", "character": "Stage Manager", "id": 1418845, "credit_id": "54c64686c3a368792900a540", "cast_id": 21, "profile_path": "/3dgL49UJoGNfvVTSsSRnfz1iVFi.jpg", "order": 13}, {"name": "J\u00fcrgen Zwingel", "character": "Backstage Fan", "id": 1418852, "credit_id": "54c647bac3a3682c3c0017fb", "cast_id": 22, "profile_path": "/qSROW6xMCc0FMvCaGqnp656YyI5.jpg", "order": 14}, {"name": "Wolfgang Pissors", "character": "Backstage Fan", "id": 1416230, "credit_id": "54c6494e9251414cb200171b", "cast_id": 23, "profile_path": "/4X4xFXuQ3M9RdXBb4CvefholXbE.jpg", "order": 15}, {"name": "S\u00e9bastien Siroux", "character": "Backstage Fan", "id": 1418859, "credit_id": "54c64a04c3a3682c3c00185d", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Ute Lemper", "character": "Cabaret Singer", "id": 29408, "credit_id": "54c6695f9251414cb2001a9b", "cast_id": 25, "profile_path": "/e8sVrg3B6sGJesrWRnB2i54XvkV.jpg", "order": 17}, {"name": "Didier Muller", "character": "Butler", "id": 1418983, "credit_id": "54c6a445925141679c0000e3", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Ronald Alphonse", "character": "Jazz Musician", "id": 1418992, "credit_id": "54c6a608925141679100011d", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Ronald Baker", "character": "Jazz Musician", "id": 1418993, "credit_id": "54c6a647c3a36874ac0000fa", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Kelly Keto", "character": "Jazz Musician", "id": 1418994, "credit_id": "54c6a67bc3a36874bf000129", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Olivier Marchevet", "character": "Jazz Musician", "id": 1418995, "credit_id": "54c6a6b5c3a36874bc000107", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Geroges Edouard Nouel", "character": "Jazz Musician", "id": 1418996, "credit_id": "54c6a6efc3a36874bc00010f", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Mark Sims", "character": "Jazz Musician", "id": 1418997, "credit_id": "54c6a72b9251416787000113", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Rudolf Krause", "character": "Reporter", "id": 49702, "credit_id": "54c7cec2925141678e00454e", "cast_id": 33, "profile_path": "/bSQ6HNyzZ2Gx1UgItQBo3Sba63Y.jpg", "order": 25}, {"name": "Patrick Zard", "character": "Reporter", "id": 1351859, "credit_id": "54c7d099c3a368709000048e", "cast_id": 34, "profile_path": "/4ujJamjrTzPZAYNZFQ0Bz3Ufy39.jpg", "order": 26}, {"name": "Pedro Chomnalez", "character": "Reporter", "id": 1419293, "credit_id": "54c7d0c592514167890042e4", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Jessica Forde", "character": "Reporter", "id": 35918, "credit_id": "54c7d282925141679c0045bb", "cast_id": 36, "profile_path": "/eM2tgKgBXy2orG1NL1J3xdAONTl.jpg", "order": 28}, {"name": "Paul Bandey", "character": "Reporter", "id": 1237652, "credit_id": "54c7d3b1c3a3683f7d003d4a", "cast_id": 37, "profile_path": "/tbIFAXqHo8mXAm51lomBXVIJizR.jpg", "order": 29}, {"name": "Lionel Abelanski", "character": "Doctor", "id": 7278, "credit_id": "54c7d40d925141678900432a", "cast_id": 38, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 30}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe4eea9251416c75166ca7", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.3, "runtime": 97}, "16307": {"poster_path": "/9kHTypiwFGjqa6N4oT8fv3lB3VW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.", "video": false, "id": 16307, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Wicker Man", "tagline": "Flesh to touch... Flesh to burn! Don't keep the Wicker Man waiting!", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070917", "adult": false, "backdrop_path": "/pCDHiLbKwvbaJEEtCMSwRSRx7TK.jpg", "production_companies": [{"name": "British Lion Film Corporation", "id": 660}], "release_date": "1973-12-01", "popularity": 0.211538818468829, "original_title": "The Wicker Man", "budget": 0, "cast": [{"name": "Edward Woodward", "character": "Sergeant Howie", "id": 39188, "credit_id": "52fe46c39251416c75082af3", "cast_id": 2, "profile_path": "/7fjj2SwxZ3gev9JPwYfVpgoeUFR.jpg", "order": 0}, {"name": "Christopher Lee", "character": "Lord Summerisle", "id": 113, "credit_id": "52fe46c39251416c75082af7", "cast_id": 3, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 1}, {"name": "Britt Ekland", "character": "Willow", "id": 10341, "credit_id": "52fe46c39251416c75082afb", "cast_id": 4, "profile_path": "/euypp72CwsKq4nOUjoBzDqtvfsI.jpg", "order": 2}, {"name": "Diane Cilento", "character": "Miss Rose", "id": 45467, "credit_id": "52fe46c39251416c75082aff", "cast_id": 5, "profile_path": "/A4Pl3bPh7JltbhXraK0R1JAK6o8.jpg", "order": 3}, {"name": "Ingrid Pitt", "character": "Librarian", "id": 83739, "credit_id": "52fe46c39251416c75082b03", "cast_id": 6, "profile_path": "/dlFxz3UkLq3EjV0WClzbcfEzYXu.jpg", "order": 4}, {"name": "Lindsay Kemp", "character": "Alder MacGreagor", "id": 119942, "credit_id": "52fe46c39251416c75082b07", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Russell Waters", "character": "Harbour Master", "id": 114837, "credit_id": "52fe46c39251416c75082b0b", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Robin Hardy", "character": "Minister (uncredited)", "id": 80261, "credit_id": "52fe46c39251416c75082b15", "cast_id": 12, "profile_path": "/qpaluWgurG8TbCT05OW18aum39b.jpg", "order": 7}, {"name": "Aubrey Morris", "character": "Old Gardener / Gravedigger", "id": 2278, "credit_id": "52fe46c39251416c75082b19", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Irene Sunters", "character": "May Morrison", "id": 206590, "credit_id": "52fe46c39251416c75082b1d", "cast_id": 15, "profile_path": "/85U9xZEJlYsqYFlbxoOdwolnVL1.jpg", "order": 9}, {"name": "Walter Carr", "character": "School Master", "id": 1119550, "credit_id": "52fe46c39251416c75082b21", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Roy Boyd", "character": "Broome", "id": 156387, "credit_id": "52fe46c39251416c75082b25", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Robin Hardy", "department": "Directing", "job": "Director", "credit_id": "52fe46c39251416c75082aef", "profile_path": "/qpaluWgurG8TbCT05OW18aum39b.jpg", "id": 80261}], "vote_average": 6.7, "runtime": 99}, "41733": {"poster_path": "/88m6HPueDnDnuCGwDa2BtA9sK8m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 211714982, "overview": "Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the \"no-fly\" list. Peter embarks on a terrifying journey when he accepts a ride from actor Ethan Tremblay.", "video": false, "id": 41733, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Due Date", "tagline": "Leave Your Comfort Zone", "vote_count": 479, "homepage": "http://duedatemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1231583", "adult": false, "backdrop_path": "/oNeqMgCr8FgH3CqioA420utgdT5.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Green Hat Films", "id": 3527}], "release_date": "2010-11-04", "popularity": 1.09139055140524, "original_title": "Due Date", "budget": 65000000, "cast": [{"name": "Zach Galifianakis", "character": "Ethan Tremblay", "id": 58225, "credit_id": "52fe45dac3a36847f80de231", "cast_id": 6, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Peter Highman", "id": 3223, "credit_id": "52fe45dac3a36847f80de241", "cast_id": 18, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Michelle Monaghan", "character": "Sarah Highman", "id": 11705, "credit_id": "52fe45dac3a36847f80de235", "cast_id": 8, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 2}, {"name": "Jamie Foxx", "character": "Darryl", "id": 134, "credit_id": "52fe45dac3a36847f80de23d", "cast_id": 10, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 3}, {"name": "Juliette Lewis", "character": "Heidi", "id": 3196, "credit_id": "52fe45dac3a36847f80de239", "cast_id": 9, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 4}, {"name": "Danny McBride", "character": "Lonnie", "id": 62862, "credit_id": "52fe45dac3a36847f80de245", "cast_id": 19, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 5}, {"name": "RZA", "character": "Airport Screener", "id": 150, "credit_id": "52fe45dac3a36847f80de249", "cast_id": 20, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 6}, {"name": "Matt Walsh", "character": "TSA Agent", "id": 59841, "credit_id": "52fe45dac3a36847f80de24d", "cast_id": 21, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 7}, {"name": "Brody Stevens", "character": "Limo Driver", "id": 142373, "credit_id": "52fe45dac3a36847f80de251", "cast_id": 22, "profile_path": "/dzypgW3rNwGImzyKeOlZg8Olhwi.jpg", "order": 8}, {"name": "Jakob Ulrich", "character": "Patrick", "id": 1288866, "credit_id": "52fe45dac3a36847f80de255", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Naiia Ulrich", "character": "Alex", "id": 1288867, "credit_id": "52fe45dac3a36847f80de259", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Todd Phillips", "character": "Barry", "id": 57130, "credit_id": "52fe45dac3a36847f80de25d", "cast_id": 25, "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "order": 11}, {"name": "Bobby Tisdale", "character": "Carl", "id": 1241324, "credit_id": "52fe45dac3a36847f80de261", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Nathalie Fay", "character": "Flight Attendant", "id": 142375, "credit_id": "52fe45dac3a36847f80de269", "cast_id": 28, "profile_path": "/iPxcnlMUgfT2bKmVOX4ZtM3WH1u.jpg", "order": 14}, {"name": "Sharon Morris", "character": "Airport X-Ray", "id": 142374, "credit_id": "54ed839e9251413ae8000e6c", "cast_id": 29, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 15}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe45dac3a36847f80de215", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 6.2, "runtime": 95}, "16320": {"poster_path": "/8KWRN6NhwbYupwky780G2dgD5k3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38869464, "overview": "When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything - or anyone - to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But, the greatest danger of all may be on their ship.", "video": false, "id": 16320, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Serenity", "tagline": "Can't stop the signal.", "vote_count": 421, "homepage": "http://www.serenitymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0379786", "adult": false, "backdrop_path": "/424MxHQe5Hfu92hTeRvZb5Giv0X.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Barry Mendel Productions", "id": 17032}], "release_date": "2005-09-30", "popularity": 0.854420967278747, "original_title": "Serenity", "budget": 39000000, "cast": [{"name": "Nathan Fillion", "character": "Mal", "id": 51797, "credit_id": "52fe46c59251416c75082fb7", "cast_id": 3, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 0}, {"name": "Gina Torres", "character": "Zoe", "id": 9576, "credit_id": "52fe46c59251416c75082fbb", "cast_id": 4, "profile_path": "/z43hy1X1vRD26vNDh0lzxg1rcBl.jpg", "order": 1}, {"name": "Alan Tudyk", "character": "Wash", "id": 21088, "credit_id": "52fe46c59251416c75082fbf", "cast_id": 5, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 2}, {"name": "Morena Baccarin", "character": "Inara", "id": 54882, "credit_id": "52fe46c59251416c75082fe7", "cast_id": 12, "profile_path": "/gUG9fnudV5Ev1MIr3adngn1GuZJ.jpg", "order": 3}, {"name": "Adam Baldwin", "character": "Jayne", "id": 2059, "credit_id": "52fe46c59251416c75082feb", "cast_id": 13, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 4}, {"name": "Jewel Staite", "character": "Kaylee", "id": 72092, "credit_id": "52fe46c59251416c75082fef", "cast_id": 14, "profile_path": "/cCXbnCH66Sk1ELGs3gSmXKpKnXq.jpg", "order": 5}, {"name": "Sean Maher", "character": "Simon", "id": 55148, "credit_id": "52fe46c59251416c75082ff3", "cast_id": 15, "profile_path": "/aycbrfFLcBTUrP2p26QwRaoFWo3.jpg", "order": 6}, {"name": "Summer Glau", "character": "River", "id": 54881, "credit_id": "52fe46c59251416c75082ff7", "cast_id": 16, "profile_path": "/rjGaep6Y79syXn4lzpRt299BuY9.jpg", "order": 7}, {"name": "Ron Glass", "character": "Shepherd Book", "id": 74570, "credit_id": "52fe46c59251416c75083001", "cast_id": 18, "profile_path": "/4OBVfJUbWo6vhnKkwGu6Qq3r3sf.jpg", "order": 8}, {"name": "Chiwetel Ejiofor", "character": "The Operative", "id": 5294, "credit_id": "52fe46c59251416c75083005", "cast_id": 19, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 9}, {"name": "David Krumholtz", "character": "Mr. Universe", "id": 38582, "credit_id": "52fe46c59251416c75083009", "cast_id": 20, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 10}, {"name": "Michael Hitchcock", "character": "Dr. Mathias", "id": 75463, "credit_id": "52fe46c59251416c7508300d", "cast_id": 21, "profile_path": "/6OuyZXfWMJ82c96VHOOLU1xFPG0.jpg", "order": 11}, {"name": "Sarah Paulson", "character": "Dr. Caron", "id": 34490, "credit_id": "52fe46c59251416c75083011", "cast_id": 22, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 12}, {"name": "Yan Feldman", "character": "Mingo", "id": 80426, "credit_id": "52fe46c59251416c75083015", "cast_id": 23, "profile_path": "/v2iA8zjFAKCZ5kEMd3xj4mIOWLm.jpg", "order": 13}, {"name": "Rafael Feldman", "character": "Fanty", "id": 80427, "credit_id": "52fe46c59251416c75083019", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Nectar Rose", "character": "Lenore", "id": 36137, "credit_id": "52fe46c59251416c7508301d", "cast_id": 25, "profile_path": "/rT6AOnYLiGHA4ln71cWYU1MKKpZ.jpg", "order": 15}, {"name": "Tamara Taylor", "character": "Teacher", "id": 39464, "credit_id": "52fe46c59251416c75083021", "cast_id": 26, "profile_path": "/v1h1XzjYfE1OP9si32ZTf1tCfid.jpg", "order": 16}, {"name": "Glenn Howerton", "character": "Lilac Young Tough", "id": 77870, "credit_id": "52fe46c59251416c75083025", "cast_id": 27, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 17}, {"name": "Hunter Ansley Wryn", "character": "Young River", "id": 80428, "credit_id": "52fe46c59251416c75083029", "cast_id": 28, "profile_path": "/mPfNoV3BS6kA6VSM0oyqAn67P4a.jpg", "order": 18}, {"name": "Logan O'Brien", "character": "Boy Student", "id": 80429, "credit_id": "52fe46c59251416c7508302d", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Erik Erotas", "character": "Boy Student", "id": 80430, "credit_id": "52fe46c59251416c75083031", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Demetra Raven", "character": "Girl Student", "id": 80431, "credit_id": "52fe46c59251416c75083035", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Jessica Huang", "character": "Girl Student", "id": 80432, "credit_id": "52fe46c59251416c75083039", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Marley S. McClean", "character": "Girl Student", "id": 80433, "credit_id": "52fe46c59251416c7508303d", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Scott Kinworthy", "character": "Ensign", "id": 80434, "credit_id": "52fe46c59251416c75083041", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Erik Weiner", "character": "Helmsman", "id": 80435, "credit_id": "52fe46c59251416c75083045", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Conor O'Brien", "character": "Lab Technician", "id": 80436, "credit_id": "52fe46c59251416c75083049", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Peter James Smith", "character": "Lab Technician", "id": 80437, "credit_id": "52fe46c59251416c7508304d", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Weston Nathanson", "character": "Trade Agent", "id": 80438, "credit_id": "52fe46c59251416c75083051", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Carrie 'CeCe' Cline", "character": "Young Female Intern", "id": 80439, "credit_id": "52fe46c59251416c75083055", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Chuck O'Neil", "character": "Vault Guard", "id": 80440, "credit_id": "52fe46c59251416c75083059", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Amy Wieczorek", "character": "Lilac Mom", "id": 80441, "credit_id": "52fe46c59251416c7508305d", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Tristan Jarred", "character": "Lilac Son", "id": 80442, "credit_id": "52fe46c59251416c75083061", "cast_id": 42, "profile_path": "/uBzU4KJLTLWBT63Z0GoRx3PIB2o.jpg", "order": 32}, {"name": "Elaine Mani Lee", "character": "Fan Dancer", "id": 80443, "credit_id": "52fe46c59251416c75083065", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Terrence Hardy Jr.", "character": "Mining Camp Boy", "id": 61305, "credit_id": "52fe46c59251416c75083069", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Brian O'Hare", "character": "Alliance Pilot", "id": 80444, "credit_id": "52fe46c59251416c7508306d", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "Ryan Tasz", "character": "Black Room Soldier", "id": 80445, "credit_id": "52fe46c59251416c75083071", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Colin Patrick Lynch", "character": "Black Room Soldier", "id": 56459, "credit_id": "52fe46c59251416c75083075", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Terrell Tilford", "character": "News Anchor", "id": 80446, "credit_id": "52fe46c59251416c75083079", "cast_id": 48, "profile_path": null, "order": 38}, {"name": "Joshua Michael Kwiat", "character": "Slovenly Beaumonde Man", "id": 80447, "credit_id": "52fe46c59251416c7508307d", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Antonio Rufino", "character": "Bartender", "id": 80448, "credit_id": "52fe46c59251416c75083081", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Linda Wang", "character": "Chinese snake dancer", "id": 43470, "credit_id": "52fe46c59251416c75083085", "cast_id": 51, "profile_path": null, "order": 41}, {"name": "Mark Winn", "character": "Futuristic Worker", "id": 80449, "credit_id": "52fe46c59251416c75083089", "cast_id": 52, "profile_path": null, "order": 42}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe46c59251416c75082fad", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 7.3, "runtime": 119}, "12279": {"poster_path": "/tethGDyocmatW6Li1NcUBXQo6Oo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Carmen's caught in a virtual reality game designed by the Kids' new nemesis, the Toymaker (Stallone). It's up to Juni to save his sister, and ultimately the world.", "video": false, "id": 12279, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids 3-D: Game Over", "tagline": "", "vote_count": 114, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338459", "adult": false, "backdrop_path": "/7c2JZCf4pYYy5GNtvfFyGBYXLWp.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "SF Film", "id": 5674}], "release_date": "2003-07-25", "popularity": 0.999842351087652, "original_title": "Spy Kids 3-D: Game Over", "budget": 38000000, "cast": [{"name": "Antonio Banderas", "character": "Gregorio Cortez", "id": 3131, "credit_id": "52fe44d89251416c75042f39", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Ingrid Cortez", "id": 17832, "credit_id": "52fe44d89251416c75042f3d", "cast_id": 2, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 1}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe44d89251416c75042f41", "cast_id": 3, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe44d89251416c75042f45", "cast_id": 4, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Sylvester Stallone", "character": "Toymaker", "id": 16483, "credit_id": "52fe44d89251416c75042f49", "cast_id": 5, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 4}, {"name": "Salma Hayek", "character": "Cesca Giggles", "id": 3136, "credit_id": "52fe44d89251416c75042f4d", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 5}, {"name": "Ricardo Montalban", "character": "Grandfather", "id": 1793, "credit_id": "52fe44d89251416c75042f8d", "cast_id": 17, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 6}, {"name": "Holland Taylor", "character": "Grandmother", "id": 11318, "credit_id": "52fe44d89251416c75042f91", "cast_id": 18, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 7}, {"name": "Mike Judge", "character": "Donnagon Giggles", "id": 17403, "credit_id": "52fe44d89251416c75042f95", "cast_id": 19, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 8}, {"name": "Matt O'Leary", "character": "Gary Giggles", "id": 71467, "credit_id": "52fe44d89251416c75042f99", "cast_id": 20, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 9}, {"name": "Emily Osment", "character": "Gerti Giggles", "id": 82785, "credit_id": "52fe44d89251416c75042f9d", "cast_id": 21, "profile_path": "/7Uhb0bJp7v3sqnSBkxXjya8UeXO.jpg", "order": 10}, {"name": "Ryan Pinkston", "character": "Arnold", "id": 78341, "credit_id": "52fe44d89251416c75042fa1", "cast_id": 22, "profile_path": "/cxQOEi5yv8QVoAZGJcPX99Chk7F.jpg", "order": 11}, {"name": "Robert Vito", "character": "Rez", "id": 64775, "credit_id": "52fe44d89251416c75042fa5", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Bobby Edner", "character": "Francis", "id": 151385, "credit_id": "52fe44d89251416c75042fa9", "cast_id": 24, "profile_path": "/lNuwv1mcwqCC7VWzTWz3sHNrvYS.jpg", "order": 13}, {"name": "Courtney Jines", "character": "Demetra", "id": 84481, "credit_id": "52fe44d89251416c75042fad", "cast_id": 25, "profile_path": "/pVWtDyaHL3beHkYCrk26zQeLBpP.jpg", "order": 14}, {"name": "Cheech Marin", "character": "Felix Gumm", "id": 11159, "credit_id": "52fe44d89251416c75042fb1", "cast_id": 26, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 15}, {"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe44d89251416c75042fb5", "cast_id": 27, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 16}, {"name": "Alan Cumming", "character": "Fegan Floop", "id": 10697, "credit_id": "52fe44d89251416c75042fb9", "cast_id": 28, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 17}, {"name": "Tony Shalhoub", "character": "Alexander Minion", "id": 4252, "credit_id": "52fe44d89251416c75042fbd", "cast_id": 29, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 18}, {"name": "Steve Buscemi", "character": "Romero", "id": 884, "credit_id": "52fe44d89251416c75042fc1", "cast_id": 30, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 19}, {"name": "Bill Paxton", "character": "Dinky Winks", "id": 2053, "credit_id": "52fe44d89251416c75042fc5", "cast_id": 31, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 20}, {"name": "George Clooney", "character": "Devlin", "id": 1461, "credit_id": "52fe44d89251416c75042fc9", "cast_id": 32, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 21}, {"name": "Elijah Wood", "character": "The Guy", "id": 109, "credit_id": "52fe44d89251416c75042fcd", "cast_id": 33, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 22}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44d89251416c75042f6b", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 4.8, "runtime": 84}, "270303": {"poster_path": "/4MrwJZr0R9LbyOgZqwLNmtzzxbu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13500000, "overview": "For 19-year-old Jay, fall should be about school, boys and weekends out at the lake. But after a seemingly innocent sexual encounter, she finds herself plagued by strange visions and the inescapable sense that someone, or something, is following her. Faced with this burden, Jay and her teenage friends must find a way to escape the horrors that seem to be only a few steps behind.", "video": false, "id": 270303, "genres": [{"id": 27, "name": "Horror"}], "title": "It Follows", "tagline": "", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3235888", "adult": false, "backdrop_path": "/seXjpUZxEYsRGgQQq5HvwPiu0Sv.jpg", "production_companies": [{"name": "Northern Lights Films", "id": 8714}, {"name": "Animal Kingdom", "id": 26995}], "release_date": "2015-03-27", "popularity": 2.2623259350034, "original_title": "It Follows", "budget": 2000000, "cast": [{"name": "Maika Monroe", "character": "Jay", "id": 1094091, "credit_id": "537770fd0e0a2614190021d7", "cast_id": 1, "profile_path": "/3MyvscK0RoxmwLSIWzxRA2UrC6v.jpg", "order": 1}, {"name": "Keir Gilchrist", "character": "Paul", "id": 132712, "credit_id": "537771140e0a2614250022bc", "cast_id": 2, "profile_path": "/3qD75fzIrNvTAgYQCVczZ0SBsxI.jpg", "order": 2}, {"name": "Olivia Luccardi", "character": "Yara", "id": 1210610, "credit_id": "5377712d0e0a26141c0023aa", "cast_id": 3, "profile_path": null, "order": 3}, {"name": "Lili Sepe", "character": "Kelly", "id": 1361099, "credit_id": "540a684dc3a368799c000886", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Bailey Spry", "character": "Annie", "id": 1361100, "credit_id": "540a685fc3a368799c00088c", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Daniel Zovatto", "character": "Greg", "id": 1172147, "credit_id": "540a6871c3a368799c000891", "cast_id": 8, "profile_path": "/hfohvPNLolPSLSsw4jPzHW7if2R.jpg", "order": 7}, {"name": "Jake Weary", "character": "Hugh", "id": 133980, "credit_id": "548507d3c3a36867d500070e", "cast_id": 9, "profile_path": "/jpVMl6LI5J7rVCrocHeUbBtBJBl.jpg", "order": 8}], "directors": [{"name": "David Robert Mitchell", "department": "Directing", "job": "Director", "credit_id": "537770b20e0a261431002299", "profile_path": null, "id": 558929}], "vote_average": 7.5, "runtime": 100}, "9552": {"poster_path": "/eYVZP9CibJg1fyZnZahfFIYqfPr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 441306145, "overview": "12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter, and ultimately turns to her last hope: Father Damien Karras, a troubled priest who is struggling with his own faith.", "video": false, "id": 9552, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Exorcist", "tagline": "Something almost beyond comprehension is happening to a girl on this street, in this house... and a man has been sent for as a last resort. This man is The Exorcist.", "vote_count": 514, "homepage": "http://theexorcist.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/gZnEheMdhKxSZQUEzphCHXldud1.jpg", "poster_path": "/wjMqwHkOuDBSOY5MujL5GSdlBTk.jpg", "id": 12263, "name": "The Exorcist Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070047", "adult": false, "backdrop_path": "/unBJ0rZsL2kzs11FliadlDyv6ji.jpg", "production_companies": [{"name": "Hoya Productions", "id": 48184}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1973-12-26", "popularity": 1.47301946057541, "original_title": "The Exorcist", "budget": 8000000, "cast": [{"name": "Linda Blair", "character": "Regan", "id": 37366, "credit_id": "52fe4508c3a36847f80b8691", "cast_id": 14, "profile_path": "/tIoU3CSpjnLi79UfBgNjXNQM1GN.jpg", "order": 0}, {"name": "Max von Sydow", "character": "Father Merrin", "id": 2201, "credit_id": "52fe4508c3a36847f80b864f", "cast_id": 2, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 1}, {"name": "Ellen Burstyn", "character": "Chris MacNeil", "id": 9560, "credit_id": "52fe4508c3a36847f80b864b", "cast_id": 1, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 2}, {"name": "Jason Miller", "character": "Father Karras", "id": 21736, "credit_id": "52fe4508c3a36847f80b869d", "cast_id": 17, "profile_path": "/wwExdVTadL0jd8kqEicjK8k6yu8.jpg", "order": 3}, {"name": "Lee J. Cobb", "character": "Lt. Kinderman", "id": 5248, "credit_id": "52fe4508c3a36847f80b8653", "cast_id": 3, "profile_path": "/535dOk8eUI97esLMunIXdG58jUu.jpg", "order": 4}, {"name": "Kitty Winn", "character": "Sharon", "id": 57921, "credit_id": "52fe4508c3a36847f80b8657", "cast_id": 4, "profile_path": "/4rDAmxWgAdiFA7qd9LJT0ehIbjI.jpg", "order": 5}, {"name": "William O'Malley", "character": "Father Dyer", "id": 65433, "credit_id": "52fe4508c3a36847f80b8695", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Jack MacGowran", "character": "Burke Dennings", "id": 14016, "credit_id": "52fe4508c3a36847f80b8699", "cast_id": 16, "profile_path": "/kzh0Gmhp0MG57kfXsqkTPH8LyTr.jpg", "order": 7}, {"name": "Barton Heyman", "character": "Dr. Klein", "id": 79732, "credit_id": "52fe4508c3a36847f80b86a1", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Peter Masterson", "character": "Dr. Barringer - Clinic Director (as Pete Masterson)", "id": 71732, "credit_id": "52fe4508c3a36847f80b86a5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Rudolf Sch\u00fcndler", "character": "Karl", "id": 26600, "credit_id": "52fe4508c3a36847f80b86a9", "cast_id": 20, "profile_path": "/8R3yeMw89PbstuKw10U2f47sVqi.jpg", "order": 10}, {"name": "Robert Symonds", "character": "Dr. Taney", "id": 119716, "credit_id": "52fe4508c3a36847f80b86ad", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Titos Vandis", "character": "Karras' Uncle", "id": 140177, "credit_id": "52fe4508c3a36847f80b86b1", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Donna Mitchell", "character": "Mary Jo Perrin", "id": 56694, "credit_id": "52fe4508c3a36847f80b86b5", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Robert Gerringer", "character": "Senator at Party", "id": 129664, "credit_id": "52fe4508c3a36847f80b86b9", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Mercedes McCambridge", "character": "Demon (voice)", "id": 18737, "credit_id": "52fe4508c3a36847f80b86bd", "cast_id": 32, "profile_path": "/aZXQHJKuCirvwqJprMwBqGqfTRz.jpg", "order": 15}, {"name": "Eileen Dietz", "character": "Captain Howdy / Regan Double", "id": 108700, "credit_id": "53fe8aed0e0a262de2002f64", "cast_id": 37, "profile_path": "/jg2P2xUJfgMElcMCufbdVBvpwnv.jpg", "order": 16}], "directors": [{"name": "William Friedkin", "department": "Directing", "job": "Director", "credit_id": "52fe4508c3a36847f80b865d", "profile_path": "/egUtSz4yBSvTTv7GJMk4MykWswt.jpg", "id": 15175}], "vote_average": 6.9, "runtime": 122}, "147441": {"poster_path": "/f7SEuLjl2Ur2AX4YO5lxIP2IEVv.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75888368, "overview": "The defiant leader Moses rises up against the Egyptian Pharaoh Ramses, setting 600,000 slaves on a monumental journey of escape from Egypt and its terrifying cycle of deadly plagues.", "video": false, "id": 147441, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Exodus: Gods and Kings", "tagline": "Once brothers, now enemies.", "vote_count": 469, "homepage": "http://www.exodusgodsandkings.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1528100", "adult": false, "backdrop_path": "/hOOgtrByGgWfqGTTn5VL7jkLYXJ.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Babieka", "id": 20656}], "release_date": "2014-12-12", "popularity": 11.8617918248396, "original_title": "Exodus: Gods and Kings", "budget": 140000000, "cast": [{"name": "Christian Bale", "character": "Moses", "id": 3894, "credit_id": "52fe4ba69251416c75109a73", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Joel Edgerton", "character": "Rhamses", "id": 33192, "credit_id": "52fe4ba69251416c75109a77", "cast_id": 2, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 1}, {"name": "John Turturro", "character": "Seti", "id": 1241, "credit_id": "52fe4ba69251416c75109a89", "cast_id": 6, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 2}, {"name": "Aaron Paul", "character": "Joshua", "id": 84497, "credit_id": "52fe4ba69251416c75109a85", "cast_id": 5, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 3}, {"name": "Ben Mendelsohn", "character": "Viceroy Hegep", "id": 77335, "credit_id": "5319c01592514177b100269d", "cast_id": 28, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 4}, {"name": "Mar\u00eda Valverde", "character": "S\u00e9fora", "id": 77122, "credit_id": "52fe4ba69251416c75109a91", "cast_id": 8, "profile_path": "/43htKmIzJGfRUJ95a0d7ZVLQFnR.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "Tuya", "id": 10205, "credit_id": "52fe4ba69251416c75109a7b", "cast_id": 3, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Nun", "id": 2282, "credit_id": "5319c02c92514177ab00267d", "cast_id": 29, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "Hiam Abbass", "character": "Bithia", "id": 765, "credit_id": "54b945c3c3a3686c6b005536", "cast_id": 30, "profile_path": "/sAOmSXEudaIoBuM8eilfIBMQuXg.jpg", "order": 8}, {"name": "Isaac Andrews", "character": "Malak", "id": 1264233, "credit_id": "54b945e6c3a36814450019cb", "cast_id": 31, "profile_path": "/5R8RheJGkn7lY6qgiHvQ5YhRLpY.jpg", "order": 9}, {"name": "Ewen Bremner", "character": "Expert", "id": 1125, "credit_id": "54b94627c3a3686c6b005545", "cast_id": 32, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 10}, {"name": "Indira Varma", "character": "Miriam", "id": 30430, "credit_id": "52fe4ba69251416c75109a8d", "cast_id": 7, "profile_path": "/o3f68XjdnWdbbOMDHHxOHnxqs5P.jpg", "order": 11}, {"name": "Golshifteh Farahani", "character": "Nefertari", "id": 229932, "credit_id": "52fe4ba69251416c75109a99", "cast_id": 10, "profile_path": "/jEVJQviEvXkaPZMum7wFFtBxzFC.jpg", "order": 12}, {"name": "Ghassan Massoud", "character": "Ramses' Grand Vizier", "id": 70577, "credit_id": "54b9463ec3a3686c6f00457c", "cast_id": 33, "profile_path": "/zJxirBFZ1Yn31qxAHCK6I34p8FQ.jpg", "order": 13}, {"name": "Tara Fitzgerald", "character": "Miriam", "id": 47615, "credit_id": "54b94655c3a368145e001d2b", "cast_id": 34, "profile_path": "/8ofvBAnrK9R6IkKz2cQAuS6L0Sm.jpg", "order": 14}, {"name": "Dar Salim", "character": "Commander Khyan", "id": 234907, "credit_id": "5506e929c3a368262e00471c", "cast_id": 35, "profile_path": "/3CrPTwZJ0hsWzX7oi7sKFfzDo82.jpg", "order": 15}, {"name": "Andrew Tarbet", "character": "Aaron", "id": 104040, "credit_id": "5506eaccc3a36805810035fb", "cast_id": 36, "profile_path": "/dAWnjk5mNFcMZvTU524oMawhKyU.jpg", "order": 16}, {"name": "Ken Bones", "character": "Ramses' Scribe", "id": 91662, "credit_id": "5506ecb5c3a3686b75002078", "cast_id": 37, "profile_path": "/3T5Dibtk4LzPWfdDXTXzW81Xgut.jpg", "order": 17}, {"name": "Philip Arditti", "character": "Viceroy Hegep's Aide", "id": 1235294, "credit_id": "5506ee0492514179fb00205c", "cast_id": 38, "profile_path": "/j7kpt6uVToEDRF8Cz7CXSBq7u0o.jpg", "order": 18}, {"name": "Hal Hewetson", "character": "Gershom", "id": 1440869, "credit_id": "5506eeefc3a368262e00478b", "cast_id": 39, "profile_path": "/yTplEjSzSWZUs54xndFPnTIo3xU.jpg", "order": 19}, {"name": "Christopher Sciueref", "character": "Stonework Guard", "id": 1440871, "credit_id": "5506f00292514174b00049f7", "cast_id": 40, "profile_path": "/vR2vDOdqVSHwpI7Vpq6ZDyYsVdk.jpg", "order": 20}, {"name": "Emun Elliott", "character": "Abiram", "id": 228968, "credit_id": "52fe4ba69251416c75109a95", "cast_id": 9, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 21}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4ba69251416c75109a81", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 5.7, "runtime": 153}, "73723": {"poster_path": "/6FuYtjegxaUv7n7C733hUEOQytR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 348840316, "overview": "A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax, the grumpy yet charming creature who fights to protect his world.", "video": false, "id": 73723, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Lorax", "tagline": "Meet The Original Force Of Nature", "vote_count": 466, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1482459", "adult": false, "backdrop_path": "/7CuXAFUWcOlR5kt07ln1fZDxdHX.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Illumination Entertainment", "id": 6704}], "release_date": "2012-03-01", "popularity": 1.22605164588029, "original_title": "The Lorax", "budget": 70000000, "cast": [{"name": "Zac Efron", "character": "Ted (voice)", "id": 29222, "credit_id": "52fe48a9c3a368484e1045eb", "cast_id": 8, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Danny DeVito", "character": "The Lorax (voice)", "id": 518, "credit_id": "52fe48a9c3a368484e1045ef", "cast_id": 9, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Taylor Swift", "character": "Audrey (voice)", "id": 212208, "credit_id": "52fe48a9c3a368484e1045f3", "cast_id": 10, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 2}, {"name": "Ed Helms", "character": "Once-ler (voice)", "id": 27105, "credit_id": "52fe48a9c3a368484e1045f7", "cast_id": 11, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 3}, {"name": "Willow Smith", "character": "Marta (voice)", "id": 49920, "credit_id": "52fe48a9c3a368484e1045fb", "cast_id": 12, "profile_path": "/1wd5w9wYSwMBOvMSzGYrf2Ilk9H.jpg", "order": 4}, {"name": "Rob Riggle", "character": "O'Hare", "id": 71403, "credit_id": "52fe48a9c3a368484e1045ff", "cast_id": 14, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 5}, {"name": "Betty White", "character": "Grammy Norma (voice)", "id": 71727, "credit_id": "52fe48a9c3a368484e104603", "cast_id": 15, "profile_path": "/4cPsS3xppS2EKPwf6j4VJMzIBZ8.jpg", "order": 6}, {"name": "Jenny Slate", "character": "Ted's Mom (voice)", "id": 213001, "credit_id": "52fe48a9c3a368484e104607", "cast_id": 16, "profile_path": "/bKyUz4N566bXBEhj1TkFfMiNFyT.jpg", "order": 7}, {"name": "Nasim Pedrad", "character": "Once-ler's Mom (voice)", "id": 476163, "credit_id": "52fe48a9c3a368484e10460b", "cast_id": 17, "profile_path": "/kA12uJDhiLW6xhTYJEwhMFjJBjb.jpg", "order": 8}, {"name": "Joel Swetow", "character": "1st Marketing Guy (voice)", "id": 156136, "credit_id": "52fe48a9c3a368484e10460f", "cast_id": 18, "profile_path": "/grAzwmiFh08MRfzutbsiQZfoCFZ.jpg", "order": 9}, {"name": "Michael Beattie", "character": "2nd Marketing Guy (voice)", "id": 73476, "credit_id": "52fe48a9c3a368484e104613", "cast_id": 19, "profile_path": "/cdW4ZWXmAaykyv6NF1sg7eHXrJe.jpg", "order": 10}, {"name": "Dave B. Mitchell", "character": "1st Commercial Guy (voice)", "id": 1082094, "credit_id": "52fe48a9c3a368484e104617", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Dempsey Pappion", "character": "2nd Commercial Guy (voice)", "id": 167756, "credit_id": "52fe48a9c3a368484e10461b", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Elmarie Wendel", "character": "Aunt Grizelda (voice)", "id": 159729, "credit_id": "52fe48a9c3a368484e10461f", "cast_id": 22, "profile_path": "/uooGeF8hIRzBAVhcSJrWyXr4qGd.jpg", "order": 13}, {"name": "Danny Cooksey", "character": "Brett / Chet (voice)", "id": 3980, "credit_id": "52fe48a9c3a368484e104623", "cast_id": 23, "profile_path": "/4jrP2XHLUOx4l2RWunuhp3mfBCW.jpg", "order": 14}, {"name": "Stephen Tobolowsky", "character": "Uncle Ubb (voice)", "id": 537, "credit_id": "52fe48a9c3a368484e104627", "cast_id": 24, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 15}, {"name": "Chris Renaud", "character": "Forest Animals (voice)", "id": 124748, "credit_id": "52fe48a9c3a368484e10462b", "cast_id": 25, "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "order": 16}], "directors": [{"name": "Chris Renaud", "department": "Directing", "job": "Director", "credit_id": "52fe48a9c3a368484e1045c3", "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "id": 124748}, {"name": "Kyle Balda", "department": "Directing", "job": "Director", "credit_id": "52fe48a9c3a368484e1045c9", "profile_path": null, "id": 8023}], "vote_average": 6.3, "runtime": 86}} \ No newline at end of file +{"93837": {"poster_path": "/mfMndRWFbzXbTx0g3rHUXFAxyOh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the FBI hires her to go undercover at a college sorority, Molly Morris (Miley Cyrus) must transform herself from a tough, streetwise private investigator to a refined, sophisticated university girl to help protect the daughter of a one-time Mobster. With several suspects on her list, Molly unexpectedly discovers that not everyone is who they appear to be, including herself.", "video": false, "id": 93837, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "So Undercover", "tagline": "Meet the FBI's new secret weapon", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1766094", "adult": false, "backdrop_path": "/o4Tt60z94Hbgk8adeZG9WE4S2im.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}], "release_date": "2012-01-01", "popularity": 0.345124796829192, "original_title": "So Undercover", "budget": 0, "cast": [{"name": "Miley Cyrus", "character": "Molly", "id": 76594, "credit_id": "52fe49419251416c750c21c9", "cast_id": 10, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 0}, {"name": "Joshua Bowman", "character": "Nicholas", "id": 139835, "credit_id": "52fe49419251416c750c21cd", "cast_id": 11, "profile_path": "/FOSRcKOJqCZzpFhBCzlEphp5F.jpg", "order": 1}, {"name": "Eloise Mumford", "character": "Sasha", "id": 222130, "credit_id": "52fe49419251416c750c21d1", "cast_id": 12, "profile_path": "/6yT9OjHcnG55iGjq7XFvd2qpYT2.jpg", "order": 2}, {"name": "Jeremy Piven", "character": "Armon", "id": 12799, "credit_id": "52fe49419251416c750c21d5", "cast_id": 13, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 3}, {"name": "Autumn Reeser", "character": "Bizzy", "id": 74607, "credit_id": "52fe49419251416c750c21d9", "cast_id": 14, "profile_path": "/vZlZQkQzQ0PSCnQT77vqEFnYsoO.jpg", "order": 4}, {"name": "Alexis Knapp", "character": "Taylor", "id": 999790, "credit_id": "52fe49419251416c750c21dd", "cast_id": 15, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 5}, {"name": "Matthew Settle", "character": "Professor Talloway", "id": 33286, "credit_id": "52fe49419251416c750c21e1", "cast_id": 16, "profile_path": "/neODd3vTVEb7TXOWEZC44ZZu1yk.jpg", "order": 6}, {"name": "Megan Park", "character": "Cotton", "id": 55615, "credit_id": "52fe49419251416c750c21e5", "cast_id": 17, "profile_path": "/AjIaQKbjMgYcJxalCBM4MGREss0.jpg", "order": 7}, {"name": "Mike O'Malley", "character": "Sam", "id": 87192, "credit_id": "52fe49419251416c750c21e9", "cast_id": 18, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 8}, {"name": "Kelly Osbourne", "character": "Becky", "id": 178425, "credit_id": "52fe49419251416c750c21ed", "cast_id": 19, "profile_path": "/ub2UobCm9Fe4PYWgerPQkdXMSQA.jpg", "order": 9}, {"name": "Lauren McKnight", "character": "Alex", "id": 560298, "credit_id": "52fe49419251416c750c21f1", "cast_id": 20, "profile_path": null, "order": 10}], "directors": [{"name": "Tom Vaughan", "department": "Directing", "job": "Director", "credit_id": "52fe49419251416c750c2195", "profile_path": "/opDMR3lConDBNSiVmqt4h6TMFBF.jpg", "id": 56717}], "vote_average": 5.9, "runtime": 94}, "8193": {"poster_path": "/s0yuDUKiAJNl5XkO9OT4aFwnA3I.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46118097, "overview": "A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.", "video": false, "id": 8193, "genres": [{"id": 35, "name": "Comedy"}], "title": "Napoleon Dynamite", "tagline": "He's out to prove he's got nothing to prove.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0374900", "adult": false, "backdrop_path": "/Ac1DJFbYXWANxO59l1uabUcYQT0.jpg", "production_companies": [{"name": "Access Films", "id": 2339}, {"name": "Napoleon Pictures Limited", "id": 2340}, {"name": "Carnival Films", "id": 6196}], "release_date": "2004-06-11", "popularity": 1.05771531941715, "original_title": "Napoleon Dynamite", "budget": 400000, "cast": [{"name": "Jon Heder", "character": "Napoleon Dynamite", "id": 53926, "credit_id": "52fe4494c3a36847f809e21d", "cast_id": 2, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 0}, {"name": "Aaron Ruell", "character": "Kip Dynamite", "id": 53927, "credit_id": "52fe4494c3a36847f809e221", "cast_id": 3, "profile_path": "/8YM46p3eUBOSqkFRkRu7Tp0ZooW.jpg", "order": 1}, {"name": "Jon Gries", "character": "Uncle Rico", "id": 9629, "credit_id": "52fe4494c3a36847f809e225", "cast_id": 4, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 2}, {"name": "Efren Ramirez", "character": "Pedro Sanchez", "id": 20190, "credit_id": "52fe4494c3a36847f809e229", "cast_id": 5, "profile_path": "/6VqjTlLm469PDyNbATyqyuSvIw0.jpg", "order": 3}, {"name": "Shondrella Avery", "character": "LaFawnduh", "id": 53928, "credit_id": "52fe4494c3a36847f809e22d", "cast_id": 6, "profile_path": "/tTRyVWKBCmZR0Eq3XQHMG682kUJ.jpg", "order": 4}, {"name": "Haylie Duff", "character": "Summer", "id": 53929, "credit_id": "52fe4494c3a36847f809e231", "cast_id": 7, "profile_path": "/6ZNv9nQKD50nuED7MTKECzdx48G.jpg", "order": 5}, {"name": "Tina Majorino", "character": "Deb", "id": 53930, "credit_id": "52fe4494c3a36847f809e235", "cast_id": 8, "profile_path": "/kGzCUaPddOm84cRlExLKOvZEoqP.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Rex", "id": 5727, "credit_id": "52fe4494c3a36847f809e239", "cast_id": 9, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Sandy Martin", "character": "Grandma", "id": 53931, "credit_id": "52fe4494c3a36847f809e23d", "cast_id": 10, "profile_path": "/WfdT2V1DxUvoBlgUzeCVq340IH.jpg", "order": 8}, {"name": "Trevor Snarr", "character": "Don", "id": 53932, "credit_id": "52fe4494c3a36847f809e241", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Emily Dunn", "character": "Trisha", "id": 53933, "credit_id": "52fe4494c3a36847f809e245", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Ellen Dubin", "character": "Ilene", "id": 53934, "credit_id": "52fe4494c3a36847f809e249", "cast_id": 13, "profile_path": "/nyOs1itoxJxF2PN6fSQy00rCT0f.jpg", "order": 11}], "directors": [{"name": "Jared Hess", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a36847f809e219", "profile_path": "/sQsIDQEpPl1ZAUcK6nqRSj4RSZ9.jpg", "id": 53925}], "vote_average": 6.5, "runtime": 82}, "8195": {"poster_path": "/UoFUXemMYGKuCN01Y111JlPjjr.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41610884, "overview": "A briefcase with undisclosed contents -- sought by Irish terrorists and the Russian mob -- makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or ronin, charged with the thorny task of recovering the case. But the team, led by an ex-CIA agent, mistrusts one another. Can they accomplish their mission?", "video": false, "id": 8195, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ronin", "tagline": "Your ally could become your enemy.", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0122690", "adult": false, "backdrop_path": "/6BU1yZnoL1LeC6lKiDFUfXLkcgH.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "United Artists Corporation", "id": 8213}, {"name": "FGM Entertainment", "id": 2347}], "release_date": "1998-09-12", "popularity": 0.942588485027931, "original_title": "Ronin", "budget": 55000000, "cast": [{"name": "Robert De Niro", "character": "Sam", "id": 380, "credit_id": "52fe4494c3a36847f809e317", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Jean Reno", "character": "Vincent", "id": 1003, "credit_id": "52fe4494c3a36847f809e31b", "cast_id": 2, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Natascha McElhone", "character": "Deirdre", "id": 11317, "credit_id": "52fe4494c3a36847f809e31f", "cast_id": 3, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Gregor", "id": 1640, "credit_id": "52fe4494c3a36847f809e323", "cast_id": 4, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Sean Bean", "character": "Spence", "id": 48, "credit_id": "52fe4494c3a36847f809e327", "cast_id": 5, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "Seamus O'Rourke", "id": 378, "credit_id": "52fe4494c3a36847f809e32b", "cast_id": 6, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Skipp Sudduth", "character": "Larry", "id": 33658, "credit_id": "52fe4494c3a36847f809e32f", "cast_id": 7, "profile_path": "/yFBPLy1jYDvkXyT5vEBbkRREciz.jpg", "order": 6}, {"name": "Katarina Witt", "character": "Natacha Kirilova", "id": 53955, "credit_id": "52fe4494c3a36847f809e333", "cast_id": 9, "profile_path": "/4YFB0EQxxSGyEe5R1wfFEfRi52D.jpg", "order": 7}, {"name": "Michael Lonsdale", "character": "Jean-Pierre", "id": 2369, "credit_id": "52fe4494c3a36847f809e34f", "cast_id": 15, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 8}, {"name": "Jan T\u0159\u00edska", "character": "Dapper Gent", "id": 61151, "credit_id": "52fe4494c3a36847f809e397", "cast_id": 32, "profile_path": "/pg2DHi92xJwJ8KoQq8UfuNkAdtT.jpg", "order": 9}, {"name": "Ron Perkins", "character": "Man with the Newspaper", "id": 125024, "credit_id": "52fe4494c3a36847f809e353", "cast_id": 18, "profile_path": "/mlmdELJA9yAwIIOh7JhxYW2hJtM.jpg", "order": 10}, {"name": "F\u00e9odor Atkine", "character": "Mikhi", "id": 20285, "credit_id": "52fe4494c3a36847f809e357", "cast_id": 19, "profile_path": "/cf50q5tFxLlp6rlSyG96AlhZrfi.jpg", "order": 11}, {"name": "Bernard Bloch", "character": "Sergi", "id": 32948, "credit_id": "52fe4494c3a36847f809e35b", "cast_id": 20, "profile_path": "/jaHWM6MTjNTiJ6lfiNKPpjkrGuN.jpg", "order": 12}, {"name": "Dominic Gugliametti", "character": "Clown Ice Skater", "id": 1056214, "credit_id": "52fe4494c3a36847f809e35f", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Alan Beckworth", "character": "Clown Ice Skater", "id": 1056215, "credit_id": "52fe4494c3a36847f809e363", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Daniel Breton", "character": "Sergi's Accomplice", "id": 185257, "credit_id": "52fe4494c3a36847f809e367", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Amidou", "character": "Man at Exchange (as Amidou Ben Messaoud)", "id": 20115, "credit_id": "52fe4494c3a36847f809e36b", "cast_id": 24, "profile_path": "/2G97iTsBjF2cudFBjUdQhPuQvCC.jpg", "order": 16}, {"name": "L\u00e9opoldine Serre", "character": "Arles Little Girl", "id": 37189, "credit_id": "52fe4494c3a36847f809e393", "cast_id": 31, "profile_path": "/A3cYx44kfCk1LNMRR7NEkyH6sBy.jpg", "order": 17}], "directors": [{"name": "John Frankenheimer", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a36847f809e339", "profile_path": "/2RvRtSTRoRgkNJOOJoxJpTp6Gak.jpg", "id": 13776}], "vote_average": 6.5, "runtime": 122}, "5": {"poster_path": "/zbwxBgGO9wtauX8dDfG16ZYZdn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4300000, "overview": "It's Ted the Bellhop's first night on the job...and the hotel's very unusual guests are about to place him in some outrageous predicaments. It seems that this evening's room service is serving up one unbelievable happening after another.", "video": false, "id": 5, "genres": [{"id": 35, "name": "Comedy"}], "title": "Four Rooms", "tagline": "Twelve outrageous guests. Four scandalous requests. And one lone bellhop, in his first day on the job, who's in for the wildest New year's Eve of his life.", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113101", "adult": false, "backdrop_path": "/3EqYpbGCE9S5GddU2K4cYzP5UmI.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}], "release_date": "1995-12-25", "popularity": 0.666914647537022, "original_title": "Four Rooms", "budget": 4000000, "cast": [{"name": "Quentin Tarantino", "character": "Chester Rush", "id": 138, "credit_id": "52fe420dc3a36847f80001a7", "cast_id": 38, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 0}, {"name": "Antonio Banderas", "character": "Man", "id": 3131, "credit_id": "52fe420dc3a36847f800018b", "cast_id": 31, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 1}, {"name": "Jennifer Beals", "character": "Angela", "id": 3130, "credit_id": "52fe420dc3a36847f8000183", "cast_id": 29, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 2}, {"name": "Sammi Davis", "character": "Jezebel", "id": 3122, "credit_id": "52fe420dc3a36847f8000167", "cast_id": 22, "profile_path": "/1h6J7f0AZBGtn1kmfoipQVFZBaQ.jpg", "order": 4}, {"name": "Amanda de Cadenet", "character": "Diana", "id": 3123, "credit_id": "52fe420dc3a36847f800016b", "cast_id": 23, "profile_path": "/m6poxt6GFglku6yregZH7NxElET.jpg", "order": 5}, {"name": "Valeria Golino", "character": "Athena", "id": 3124, "credit_id": "52fe420dc3a36847f800016f", "cast_id": 24, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 8}, {"name": "Lili Taylor", "character": "Raven", "id": 3127, "credit_id": "52fe420dc3a36847f800017b", "cast_id": 27, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 9}, {"name": "Patricia Vonne", "character": "Corpse", "id": 3133, "credit_id": "52fe420dc3a36847f8000193", "cast_id": 33, "profile_path": "/hQ5YETklKKI8FwTZoDREDYJ0K4I.jpg", "order": 11}, {"name": "Madonna", "character": "Elspeth", "id": 3125, "credit_id": "52fe420dc3a36847f8000173", "cast_id": 25, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 12}, {"name": "Bruce Willis", "character": "Leo", "id": 62, "credit_id": "52fe420dc3a36847f80001bb", "cast_id": 43, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 13}, {"name": "Lawrence Bender", "character": "Long Hair Yuppy Scum", "id": 2545, "credit_id": "52fe420dc3a36847f80001ab", "cast_id": 39, "profile_path": "/5EzlP8qdCYQrhqEYB2MTmY74KFB.jpg", "order": 14}, {"name": "Tim Roth", "character": "Ted the Bellhop", "id": 3129, "credit_id": "52fe420dc3a36847f80001b7", "cast_id": 42, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 14}, {"name": "Ione Skye", "character": "Eva", "id": 3126, "credit_id": "52fe420dc3a36847f8000177", "cast_id": 26, "profile_path": "/qHXZJXqrSNUW4XGXm78K7arMAJp.jpg", "order": 15}, {"name": "Alicia Witt", "character": "Kiva", "id": 3128, "credit_id": "52fe420dc3a36847f800017f", "cast_id": 28, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 16}, {"name": "David Proval", "character": "Siegfried", "id": 2555, "credit_id": "52fe420dc3a36847f8000187", "cast_id": 30, "profile_path": "/ujBzP61tYlwqWpB3oOxknl1XuEg.jpg", "order": 16}, {"name": "Lana McKissack", "character": "Sarah", "id": 3132, "credit_id": "52fe420dc3a36847f800018f", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Marisa Tomei", "character": "Margaret", "id": 3141, "credit_id": "52fe420dc3a36847f80001b3", "cast_id": 41, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 17}, {"name": "Tamlyn Tomita", "character": "Wife", "id": 3134, "credit_id": "52fe420dc3a36847f8000197", "cast_id": 34, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 18}, {"name": "Kathy Griffin", "character": "Betty", "id": 3138, "credit_id": "52fe420dc3a36847f80001af", "cast_id": 40, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 19}, {"name": "Danny Verduzco", "character": "Juancho", "id": 3135, "credit_id": "52fe420dc3a36847f800019b", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Salma Hayek", "character": "TV Dancing Girl", "id": 3136, "credit_id": "52fe420dc3a36847f800019f", "cast_id": 36, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 20}, {"name": "Paul Calderon", "character": "Norman", "id": 3137, "credit_id": "52fe420dc3a36847f80001a3", "cast_id": 37, "profile_path": "/uS3RyQ6QWr5P6bwHDJWc4UeTnvG.jpg", "order": 21}, {"name": "Kimberly Blair", "character": "Hooker", "id": 37336, "credit_id": "52fe420dc3a36847f80001bf", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Marc Lawrence", "character": "Sam the Bellhop", "id": 3140, "credit_id": "52fe420dc3a36847f80001c3", "cast_id": 45, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 23}], "directors": [{"name": "Allison Anders", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f800012d", "profile_path": "/wpD5RgO4vPMilRDxU6eQgWuI3qz.jpg", "id": 3110}, {"name": "Alexandre Rockwell", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f8000133", "profile_path": null, "id": 3111}, {"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f8000139", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}, {"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f800013f", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 6.4, "runtime": 98}, "8202": {"poster_path": "/3rKw2QInyaACZ6wnqSg4nAXgKal.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52000000, "overview": "400 years into the future, disease has wiped out the majority of the world's population, except one walled city, Bregna, ruled by a congress of scientists. When \u00c6on Flux, the top operative in the underground 'Monican' rebellion, is sent on a mission to kill a government leader, she uncovers a world of secrets.", "video": false, "id": 8202, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "\u00c6on Flux", "tagline": "The Perfect World Meets The Perfect Assassin", "vote_count": 216, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402022", "adult": false, "backdrop_path": "/3c7e0IywQOmPKyVRPwNe2uys0MZ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "MTV Films", "id": 746}, {"name": "MTV Productions", "id": 11534}, {"name": "Colossal Pictures", "id": 6041}], "release_date": "2005-12-01", "popularity": 1.05344995975567, "original_title": "\u00c6on Flux", "budget": 62000000, "cast": [{"name": "Charlize Theron", "character": "\u00c6on Flux", "id": 6885, "credit_id": "52fe4495c3a36847f809e68d", "cast_id": 1, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 0}, {"name": "Marton Csokas", "character": "Trevor Goodchild", "id": 20982, "credit_id": "52fe4495c3a36847f809e691", "cast_id": 2, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 1}, {"name": "Jonny Lee Miller", "character": "Oren Goodchild", "id": 9012, "credit_id": "52fe4495c3a36847f809e695", "cast_id": 3, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 2}, {"name": "Sophie Okonedo", "character": "Sithandra", "id": 2598, "credit_id": "52fe4495c3a36847f809e699", "cast_id": 4, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 3}, {"name": "Caroline Chikezie", "character": "Freya", "id": 25448, "credit_id": "52fe4495c3a36847f809e69d", "cast_id": 5, "profile_path": "/qXHS3UhFx2dd6tSuBpPqfSbAy3.jpg", "order": 4}, {"name": "Pete Postlethwaite", "character": "Keeper", "id": 4935, "credit_id": "52fe4495c3a36847f809e6a1", "cast_id": 6, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 5}, {"name": "Yangzom Brauen", "character": "Inari", "id": 54023, "credit_id": "52fe4495c3a36847f809e6a5", "cast_id": 7, "profile_path": "/zkfnDTHu7zU1Qwq2LIktdYTt7k1.jpg", "order": 6}, {"name": "Frances McDormand", "character": "Handler", "id": 3910, "credit_id": "52fe4495c3a36847f809e6a9", "cast_id": 8, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 7}, {"name": "Amelia Warner", "character": "Una Flux", "id": 23496, "credit_id": "52fe4495c3a36847f809e6ad", "cast_id": 9, "profile_path": "/yXhwlM0dnrvtdpGExCCtT5tfvoB.jpg", "order": 8}, {"name": "Nikolai Kinski", "character": "Claudius", "id": 54024, "credit_id": "52fe4495c3a36847f809e6b1", "cast_id": 10, "profile_path": "/3DlkCTEX5iFfWkgAbfUBswwjZKR.jpg", "order": 9}, {"name": "Milton Welsh", "character": "Monican Man", "id": 902, "credit_id": "52fe4495c3a36847f809e6fd", "cast_id": 23, "profile_path": "/n3BYt4bbPey6UwMGRyhlRCaaFkB.jpg", "order": 10}, {"name": "Paterson Joseph", "character": "Giroux", "id": 19868, "credit_id": "52fe4495c3a36847f809e737", "cast_id": 33, "profile_path": "/8UipvAExpG59oYeQ8LZ5xJD4VSq.jpg", "order": 11}, {"name": "Aoibheann O'Hara", "character": "Scientist", "id": 1120509, "credit_id": "52fe4495c3a36847f809e73b", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Thomas Huber", "character": "Scientist", "id": 43170, "credit_id": "52fe4495c3a36847f809e73f", "cast_id": 35, "profile_path": "/4R09DYiilcDylGjTcCCxtgikhHL.jpg", "order": 13}, {"name": "Weijian Liu", "character": "Scientist", "id": 1120510, "credit_id": "52fe4495c3a36847f809e743", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Karyn Kusama", "department": "Directing", "job": "Director", "credit_id": "52fe4495c3a36847f809e6b7", "profile_path": "/6KlEWWO7aZE6MZtExVZKoQ6Ddzs.jpg", "id": 54025}], "vote_average": 5.4, "runtime": 93}, "11": {"poster_path": "/tvSlBzAdRE29bZe5yYWrJ2ds137.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 775398007, "overview": "Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.", "video": false, "id": 11, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode IV - A New Hope", "tagline": "A long time ago in a galaxy far, far away...", "vote_count": 2463, "homepage": "http://www.starwars.com", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076759", "adult": false, "backdrop_path": "/4iJfYYoQzZcONB9hNzg0J0wWyPH.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1977-05-25", "popularity": 4.20012290861386, "original_title": "Star Wars: Episode IV - A New Hope", "budget": 11000000, "cast": [{"name": "Mark Hamill", "character": "Luke Skywalker", "id": 2, "credit_id": "52fe420dc3a36847f8000441", "cast_id": 3, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Han Solo", "id": 3, "credit_id": "52fe420dc3a36847f8000445", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Leia Organa", "id": 4, "credit_id": "52fe420dc3a36847f8000449", "cast_id": 5, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "Peter Cushing", "character": "Grand Moff Tarkin", "id": 5, "credit_id": "52fe420dc3a36847f800044d", "cast_id": 6, "profile_path": "/iFE9Xi5B0eZcNFqvCx78UUzmUfI.jpg", "order": 3}, {"name": "Alec Guinness", "character": "Obi-Wan Kenobi", "id": 12248, "credit_id": "52fe420dc3a36847f8000477", "cast_id": 14, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe420dc3a36847f8000451", "cast_id": 7, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe420dc3a36847f8000455", "cast_id": 8, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 6}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "52fe420dc3a36847f800047b", "cast_id": 15, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 7}, {"name": "David Prowse", "character": "Darth Vader", "id": 24342, "credit_id": "52fe420dc3a36847f800047f", "cast_id": 16, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 8}, {"name": "Phil Brown", "character": "Uncle Owen", "id": 33032, "credit_id": "52fe420dc3a36847f8000487", "cast_id": 18, "profile_path": "/exkyN66HiZWJDmpcOza2hWoswOo.jpg", "order": 9}, {"name": "Shelagh Fraser", "character": "Aunt Beru", "id": 131625, "credit_id": "52fe420dc3a36847f800048b", "cast_id": 19, "profile_path": "/xNfiibBvknHztEnL0g7dcdrxOKq.jpg", "order": 10}, {"name": "Jack Purvis", "character": "Chief Jawa", "id": 132538, "credit_id": "52fe420dc3a36847f800049f", "cast_id": 24, "profile_path": "/tuFTY1jhlEgZm3vM80KdAEvHwNI.jpg", "order": 11}, {"name": "Alex McCrindle", "character": "General Dodonna", "id": 216087, "credit_id": "52fe420dc3a36847f80004a3", "cast_id": 25, "profile_path": "/6Q1m79FMq444Q6VpmdERSqvwxpX.jpg", "order": 12}, {"name": "Eddie Byrne", "character": "General Willard", "id": 69249, "credit_id": "52fe420dc3a36847f80004a7", "cast_id": 26, "profile_path": "/mSwNawI6Ou8m99Y05WjctoTWYUK.jpg", "order": 13}, {"name": "Drewe Henley", "character": "Red Leader (as Drewe Hemley)", "id": 47401, "credit_id": "52fe420dc3a36847f800049b", "cast_id": 23, "profile_path": "/C28FmnpDyhI9BwD6YjagAe1U53.jpg", "order": 14}, {"name": "Denis Lawson", "character": "Red Two (Wedge) (as Dennis Lawson)", "id": 47698, "credit_id": "52fe420dc3a36847f80004ab", "cast_id": 27, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 15}, {"name": "Garrick Hagon", "character": "Red Three (Biggs)", "id": 17356, "credit_id": "52fe420dc3a36847f80004af", "cast_id": 28, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 16}, {"name": "Jack Klaff", "character": "Red Four (John D.)", "id": 162432, "credit_id": "52fe420dc3a36847f80004b3", "cast_id": 29, "profile_path": "/6l21oFayFKyyuBEELJEaj3veo21.jpg", "order": 17}, {"name": "William Hootkins", "character": "Jek Tono Porkins (Red Six)", "id": 663, "credit_id": "52fe420dc3a36847f8000493", "cast_id": 21, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 18}, {"name": "James Earl Jones", "character": "Darth Vader (voice)", "id": 15152, "credit_id": "52fe420dc3a36847f8000483", "cast_id": 17, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 19}, {"name": "Malcolm Tierney", "character": "Lt. Shann Childsen", "id": 166258, "credit_id": "52fe420dc3a36847f8000497", "cast_id": 22, "profile_path": "/fe7Cz6sxTLt9qSQANRpAAaYcPlV.jpg", "order": 21}, {"name": "Angus MacInnes", "character": "Gold Leader (as Angus Mcinnis)", "id": 58475, "credit_id": "52fe420dc3a36847f80004b7", "cast_id": 30, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 22}, {"name": "Jeremy Sinden", "character": "Gold Two", "id": 1212896, "credit_id": "52fe420dc3a36847f80004bb", "cast_id": 31, "profile_path": "/zW7H2n3IE5Ozt0ITffIJbIWpGxU.jpg", "order": 23}, {"name": "Graham Ashley", "character": "Gold Five", "id": 202276, "credit_id": "52fe420dc3a36847f80004bf", "cast_id": 32, "profile_path": "/wp02ruOjX8AiGMrRD8QEBljgnlA.jpg", "order": 24}, {"name": "Don Henderson", "character": "General Taggi", "id": 42570, "credit_id": "52fe420dc3a36847f80004c3", "cast_id": 33, "profile_path": "/qeOAWEiZ4cXddRziyaJQ2Mt5Mpm.jpg", "order": 25}, {"name": "Richard LeParmentier", "character": "General Motti", "id": 12829, "credit_id": "52fe420dc3a36847f80004c7", "cast_id": 34, "profile_path": "/u0xNmE4QAS5EUbn7tG44EfYUkib.jpg", "order": 26}, {"name": "Leslie Schofield", "character": "Commander #1", "id": 79489, "credit_id": "52fe420dc3a36847f80004cb", "cast_id": 35, "profile_path": "/r1WQsrbi1XkbfpORgrWTDNGQCKD.jpg", "order": 27}, {"name": "David Ankrum", "character": "Red Two (voice) (uncredited)", "id": 1216947, "credit_id": "52fe420dc3a36847f80004cf", "cast_id": 36, "profile_path": "/vo6JMA38exMSSbyQ3K0YCBwBrWT.jpg", "order": 28}, {"name": "Mark Austin", "character": "Boba Fett (special edition) (uncredited)", "id": 1271058, "credit_id": "52fe420dc3a36847f80004d3", "cast_id": 37, "profile_path": "/3Zocn38GPVYwWSgVEE3jKJvKyNT.jpg", "order": 29}, {"name": "Scott Beach", "character": "Stormtrooper (voice) (uncredited)", "id": 3044, "credit_id": "52fe420dc3a36847f80004d7", "cast_id": 38, "profile_path": "/gkt4TpoRR75eTddsny3Qvofe6TY.jpg", "order": 30}, {"name": "Lightning Bear", "character": "Stormtrooper (uncredited)", "id": 1271059, "credit_id": "52fe420ec3a36847f80004db", "cast_id": 39, "profile_path": "/RWJgw1QvH1rgIzGTM6QYwRiQRC.jpg", "order": 31}, {"name": "Jon Berg", "character": "Cantina Alien (uncredited)", "id": 1271060, "credit_id": "52fe420ec3a36847f80004df", "cast_id": 40, "profile_path": "/q4IxPRLu82E3ppEw02GeejaNGeJ.jpg", "order": 32}, {"name": "Doug Beswick", "character": "Cantina Alien (uncredited)", "id": 1271061, "credit_id": "52fe420ec3a36847f80004e3", "cast_id": 41, "profile_path": "/iKnyfUrS410O4yQShOAqVTw2SyU.jpg", "order": 33}, {"name": "Paul Blake", "character": "Greedo (uncredited)", "id": 199356, "credit_id": "52fe420ec3a36847f80004e7", "cast_id": 42, "profile_path": "/WSO4C7YdURE1thtj2MPkWSKD6o.jpg", "order": 34}, {"name": "Janice Burchette", "character": "Nabrun Leids (uncredited)", "id": 1271062, "credit_id": "52fe420ec3a36847f80004eb", "cast_id": 43, "profile_path": null, "order": 35}, {"name": "Ted Burnett", "character": "Wuher (uncredited)", "id": 1271063, "credit_id": "52fe420ec3a36847f80004ef", "cast_id": 44, "profile_path": "/A1GOhCu6LH4fg1VlyOT08NjWmJU.jpg", "order": 36}, {"name": "John Chapman", "character": "Drifter (Red 12) (uncredited)", "id": 1271064, "credit_id": "52fe420ec3a36847f80004f3", "cast_id": 45, "profile_path": "/oqqR2ylj8CyjlIaSizHlhQlZ1PV.jpg", "order": 37}, {"name": "Gilda Cohen", "character": "Cantina Patron (uncredited)", "id": 1271065, "credit_id": "52fe420ec3a36847f80004f7", "cast_id": 46, "profile_path": "/uSByRJBieeMpIwg4SeqB8XFCy7x.jpg", "order": 38}, {"name": "Tim Condren", "character": "Stormtrooper (uncredited)", "id": 1178140, "credit_id": "52fe420ec3a36847f80004fb", "cast_id": 47, "profile_path": "/b2LuPeiNkiN7YT0mpJ1O0C2BV58.jpg", "order": 39}, {"name": "Barry Copping", "character": "Wioslea (uncredited)", "id": 186229, "credit_id": "52fe420ec3a36847f80004ff", "cast_id": 48, "profile_path": null, "order": 40}, {"name": "Alfie Curtis", "character": "Dr. Evazan (uncredited)", "id": 1271066, "credit_id": "52fe420ec3a36847f8000503", "cast_id": 49, "profile_path": "/5jKHKbIF1cEWeG2sPAzHScgGW7n.jpg", "order": 41}, {"name": "Robert Davies", "character": "Cantina Patron (uncredited)", "id": 1271067, "credit_id": "52fe420ec3a36847f8000507", "cast_id": 50, "profile_path": null, "order": 42}, {"name": "Maria De Aragon", "character": "Greedo (uncredited)", "id": 104149, "credit_id": "52fe420ec3a36847f800050b", "cast_id": 51, "profile_path": "/rnaslrjV5ui6cKphksSni3K0TVQ.jpg", "order": 43}, {"name": "Robert A. Denham", "character": "Hrchek Kal Fas (uncredited)", "id": 1271068, "credit_id": "52fe420ec3a36847f800050f", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "Frazer Diamond", "character": "Jawa (uncredited)", "id": 1271069, "credit_id": "52fe420ec3a36847f8000513", "cast_id": 53, "profile_path": "/9e3i9TJ0pp5zbUnDljNuvkjhgCW.jpg", "order": 45}, {"name": "Peter Diamond", "character": "Stormtrooper / Tusken Raider / Death Star Trooper / Garouf Lafoe (uncredited)", "id": 53587, "credit_id": "52fe420ec3a36847f8000517", "cast_id": 54, "profile_path": "/rIf04LU2CsdzdvUJghFVVjdWcm6.jpg", "order": 46}, {"name": "Warwick Diamond", "character": "Jawa (uncredited)", "id": 1271070, "credit_id": "52fe420ec3a36847f800051b", "cast_id": 55, "profile_path": "/3E5Ktz0o6k4Xz6iTq2zCVHsxleX.jpg", "order": 47}, {"name": "Sadie Eden", "character": "Garindan (uncredited)", "id": 1271071, "credit_id": "52fe420ec3a36847f800051f", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Kim Falkinburg", "character": "Djas Puhr (uncredited)", "id": 1271072, "credit_id": "52fe420ec3a36847f8000523", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "Harry Fielder", "character": "Death Star Trooper (uncredited)", "id": 202402, "credit_id": "52fe420ec3a36847f8000527", "cast_id": 58, "profile_path": "/tVA1eKmQk3RXMLCuDP0cO5r5txJ.jpg", "order": 50}, {"name": "Ted Gagliano", "character": "Stormtrooper with Binoculars (uncredited)", "id": 1271073, "credit_id": "52fe420ec3a36847f800052b", "cast_id": 59, "profile_path": "/jpfBK5PYsY13c1gey5HdojwWW8i.jpg", "order": 51}, {"name": "Salo Gardner", "character": "Cantina Patron (uncredited)", "id": 1271074, "credit_id": "52fe420ec3a36847f800052f", "cast_id": 60, "profile_path": "/dEDmkjjpqaNcadl2vVwO6osg8Yv.jpg", "order": 52}, {"name": "Steve Gawley", "character": "Death Star Trooper (uncredited)", "id": 1195602, "credit_id": "52fe420ec3a36847f8000533", "cast_id": 61, "profile_path": "/q0XmjHBKRdWsZfMnP3ks30NdzXb.jpg", "order": 53}, {"name": "Barry Gnome", "character": "Kabe (uncredited)", "id": 1271075, "credit_id": "52fe420ec3a36847f8000537", "cast_id": 62, "profile_path": null, "order": 54}, {"name": "Rusty Goffe", "character": "Kabe / Jawa / GONK Droid (uncredited)", "id": 252527, "credit_id": "52fe420ec3a36847f800053b", "cast_id": 63, "profile_path": "/3PE20IWLMKv1r4nIdkLj65ljv28.jpg", "order": 55}, {"name": "Isaac Grand", "character": "Cantina Patron (uncredited)", "id": 1271076, "credit_id": "52fe420ec3a36847f800053f", "cast_id": 64, "profile_path": null, "order": 56}, {"name": "Nelson Hall", "character": "Stormtrooper (special edition) (uncredited)", "id": 1271077, "credit_id": "52fe420ec3a36847f8000543", "cast_id": 65, "profile_path": "/8t1Fx7haF4OYN7ah57FitSeQDLf.jpg", "order": 57}, {"name": "Reg Harding", "character": "Stormtrooper (uncredited)", "id": 1271078, "credit_id": "52fe420ec3a36847f8000547", "cast_id": 66, "profile_path": "/2saprCiNLI7rpGmNSPjEVvlkxXA.jpg", "order": 58}, {"name": "Alan Harris", "character": "Leia's Rebel Escort (uncredited)", "id": 964699, "credit_id": "52fe420ec3a36847f800054b", "cast_id": 67, "profile_path": "/t7bLuzCIGJWn7FRUVoHHQGzijWo.jpg", "order": 59}, {"name": "Frank Henson", "character": "Stormtrooper (uncredited)", "id": 1271079, "credit_id": "52fe420ec3a36847f800054f", "cast_id": 68, "profile_path": "/dFYRMa53HVxrHahfMMgutssxsMP.jpg", "order": 60}, {"name": "Christine Hewett", "character": "Brea Tonnika (uncredited)", "id": 1271080, "credit_id": "52fe420ec3a36847f8000553", "cast_id": 69, "profile_path": "/67ZqL2PGP2o6uLBOOwzZLikwHHp.jpg", "order": 61}, {"name": "Arthur Howell", "character": "Stormtrooper (uncredited)", "id": 1271081, "credit_id": "52fe420ec3a36847f8000557", "cast_id": 70, "profile_path": "/rQU7GbmvonJN8SGjcbusEb9M1aG.jpg", "order": 62}, {"name": "Tommy Ilsley", "character": "Ponda Baba (uncredited)", "id": 1271082, "credit_id": "52fe420ec3a36847f800055b", "cast_id": 71, "profile_path": null, "order": 63}, {"name": "Joe Johnston", "character": "Death Star Trooper (uncredited)", "id": 4945, "credit_id": "52fe420ec3a36847f800055f", "cast_id": 72, "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "order": 64}, {"name": "Annette Jones", "character": "Mosep (uncredited)", "id": 1271083, "credit_id": "52fe420ec3a36847f8000563", "cast_id": 73, "profile_path": null, "order": 65}, {"name": "Linda Jones", "character": "Chall Bekan (uncredited)", "id": 1148750, "credit_id": "52fe420ec3a36847f8000567", "cast_id": 74, "profile_path": null, "order": 66}, {"name": "Joe Kaye", "character": "Solomohal (uncredited)", "id": 201344, "credit_id": "52fe420ec3a36847f800056b", "cast_id": 75, "profile_path": null, "order": 67}, {"name": "Colin Michael Kitchens", "character": "Stormtrooper (voice) (uncredited)", "id": 1271085, "credit_id": "52fe420ec3a36847f800056f", "cast_id": 76, "profile_path": null, "order": 68}, {"name": "Melissa Kurtz", "character": "Jawa (uncredited)", "id": 1271086, "credit_id": "52fe420ec3a36847f8000573", "cast_id": 77, "profile_path": "/8KFIcrGTYoI7twjwerAnQH1eaum.jpg", "order": 69}, {"name": "Tiffany L. Kurtz", "character": "Jawa (uncredited)", "id": 1190780, "credit_id": "52fe420ec3a36847f8000577", "cast_id": 78, "profile_path": "/8ic5gMUYR5MBtv6FxoFTAZK9OEB.jpg", "order": 70}, {"name": "Al Lampert", "character": "Daine Jir (uncredited)", "id": 190453, "credit_id": "52fe420ec3a36847f800057b", "cast_id": 79, "profile_path": "/8YLrP1AQTVtP6G1FJnPsiQOOOO5.jpg", "order": 71}, {"name": "Anthony Lang", "character": "BoShek (uncredited)", "id": 1012562, "credit_id": "52fe420ec3a36847f800057f", "cast_id": 80, "profile_path": "/xdrvGrXLIVw65PTdozxHUPDRgFQ.jpg", "order": 72}, {"name": "Laine Liska", "character": "Muftak / Cantina Band Member (uncredited)", "id": 1271091, "credit_id": "52fe420ec3a36847f8000583", "cast_id": 81, "profile_path": null, "order": 73}, {"name": "Derek Lyons", "character": "Temple Guard / Medal Bearer (uncredited)", "id": 1271092, "credit_id": "52fe420ec3a36847f8000587", "cast_id": 82, "profile_path": "/oO7dJlNLJhYyqdTsoUQAFXp1UQS.jpg", "order": 74}, {"name": "Mahjoub", "character": "Jawa (uncredited)", "id": 1271095, "credit_id": "52fe420ec3a36847f800058b", "cast_id": 83, "profile_path": null, "order": 75}, {"name": "Alf Mangan", "character": "Takeel (uncredited)", "id": 1271096, "credit_id": "52fe420ec3a36847f800058f", "cast_id": 84, "profile_path": "/yZ1jthofTE7NCwcJkGMCSjrFpz6.jpg", "order": 76}, {"name": "Rick McCallum", "character": "Stormtrooper (special edition) (uncredited)", "id": 19801, "credit_id": "52fe420ec3a36847f8000593", "cast_id": 85, "profile_path": "/iEA5hgOu02fKjfrsrxvvW5ub6q1.jpg", "order": 77}, {"name": "Grant McCune", "character": "Death Star Gunner (uncredited)", "id": 1271102, "credit_id": "52fe420ec3a36847f8000597", "cast_id": 86, "profile_path": "/dyYcw0CDPRWZP0upMV0UPdCVTZw.jpg", "order": 78}, {"name": "Geoffrey Moon", "character": "Cantina Patron (uncredited)", "id": 1271104, "credit_id": "52fe420ec3a36847f800059b", "cast_id": 87, "profile_path": "/mmSpFa7i6gJVBxETLHyiMLx54ay.jpg", "order": 79}, {"name": "Mandy Morton", "character": "Swilla Corey (uncredited)", "id": 1271106, "credit_id": "52fe420ec3a36847f800059f", "cast_id": 88, "profile_path": "/2lmVJN1qV5zAYDy4DYwRxvW8nCb.jpg", "order": 80}, {"name": "Lorne Peterson", "character": "Massassi Base Rebel Scout (uncredited)", "id": 1271107, "credit_id": "52fe420ec3a36847f80005a3", "cast_id": 89, "profile_path": "/xCIzR3kH76oNJga9gRNAwxPm2yu.jpg", "order": 81}, {"name": "Marcus Powell", "character": "Rycar Ryjerd (uncredited)", "id": 1183443, "credit_id": "52fe420ec3a36847f80005a7", "cast_id": 90, "profile_path": "/cNIpsCHwTl5CCtzaqVSfNjsHQe5.jpg", "order": 82}, {"name": "Shane Rimmer", "character": "InCom Engineer (uncredited)", "id": 10657, "credit_id": "52fe420ec3a36847f80005ab", "cast_id": 91, "profile_path": "/ctrIOcWLjOB5rocS0vVHEjbS1Sx.jpg", "order": 83}, {"name": "Pam Rose", "character": "Leesub Sirln (uncredited)", "id": 1271116, "credit_id": "52fe420ec3a36847f80005af", "cast_id": 92, "profile_path": "/uaFDw1Ksx9ctyDKhoxTw4aFRRtu.jpg", "order": 84}, {"name": "George Roubicek", "character": "Cmdr. Praji (Imperial Officer #2 on rebel ship) (uncredited)", "id": 110319, "credit_id": "52fe420ec3a36847f80005b3", "cast_id": 93, "profile_path": "/ru7WxtpEOkWADyemk3XlK61v5GS.jpg", "order": 85}, {"name": "Erica Simmons", "character": "Tawss Khaa (uncredited)", "id": 1271121, "credit_id": "52fe420ec3a36847f80005b7", "cast_id": 94, "profile_path": null, "order": 86}, {"name": "Angela Staines", "character": "Senni Tonnika (uncredited)", "id": 1271122, "credit_id": "52fe420ec3a36847f80005bb", "cast_id": 95, "profile_path": "/ydiU1ozqqeWuSXYMEKyLattGUr0.jpg", "order": 87}, {"name": "George Stock", "character": "Cantina Patron (uncredited)", "id": 1271123, "credit_id": "52fe420ec3a36847f80005bf", "cast_id": 96, "profile_path": null, "order": 88}, {"name": "Roy Straite", "character": "Cantina Patron (uncredited)", "id": 1271124, "credit_id": "52fe420ec3a36847f80005c3", "cast_id": 97, "profile_path": "/iTTVUQwq9Jit8BmrDYN0dmZXQjG.jpg", "order": 89}, {"name": "Peter Sturgeon", "character": "Sai'torr Kal Fas (uncredited)", "id": 1271125, "credit_id": "52fe420ec3a36847f80005c7", "cast_id": 98, "profile_path": null, "order": 90}, {"name": "Peter Sumner", "character": "Lt. Pol Treidum (uncredited)", "id": 187398, "credit_id": "52fe420ec3a36847f80005cb", "cast_id": 99, "profile_path": "/3BiflFG5cnHYI1Ehn85PhTyCZaf.jpg", "order": 91}, {"name": "John Sylla", "character": "Cantina Voices (voice) (uncredited)", "id": 1271126, "credit_id": "52fe420ec3a36847f80005cf", "cast_id": 100, "profile_path": "/46ef2FOF35ieIFM14A8F8nch85t.jpg", "order": 92}, {"name": "Tom Sylla", "character": "Massassi Outpost Announcer / Various Voices (voice) (uncredited)", "id": 390158, "credit_id": "52fe420ec3a36847f80005d3", "cast_id": 101, "profile_path": "/7oKTyEfvDwS7zOz3wsMU5z51P4P.jpg", "order": 93}, {"name": "Phil Tippett", "character": "Cantina Alien (uncredited)", "id": 7727, "credit_id": "52fe420ec3a36847f80005d7", "cast_id": 102, "profile_path": "/2uQ0B7fN5cDQk17J1X3pxDSf9y.jpg", "order": 94}, {"name": "Burnell Tucker", "character": "Del Goren (uncredited)", "id": 184980, "credit_id": "52fe420ec3a36847f80005db", "cast_id": 103, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 95}, {"name": "Morgan Upton", "character": "Stormtrooper (voice) (uncredited)", "id": 160947, "credit_id": "52fe420ec3a36847f80005df", "cast_id": 104, "profile_path": "/c6cHfJSxRl6Z9D2BcYNELq9ZwEZ.jpg", "order": 96}, {"name": "Jerry Walter", "character": "Stormtrooper (voice) (uncredited)", "id": 161301, "credit_id": "52fe420ec3a36847f80005e3", "cast_id": 105, "profile_path": "/kxMyDTBi2DpgVnzPgbOJTokpMUy.jpg", "order": 97}, {"name": "Hal Wamsley", "character": "Jawa (uncredited)", "id": 1271127, "credit_id": "52fe420ec3a36847f80005e7", "cast_id": 106, "profile_path": "/4nRNQyY5TyKNpNIUK6Z9JRr3xWw.jpg", "order": 98}, {"name": "Larry Ward", "character": "Greedo (voice) (uncredited)", "id": 159108, "credit_id": "52fe420ec3a36847f80005eb", "cast_id": 107, "profile_path": "/zRqHcr0ySV1IJiDVmpciCokzn3h.jpg", "order": 99}, {"name": "Diana Sadley Way", "character": "Thuku (uncredited)", "id": 1271128, "credit_id": "52fe420ec3a36847f80005ef", "cast_id": 108, "profile_path": null, "order": 100}, {"name": "Harold Weed", "character": "Ketwol / Melas (uncredited)", "id": 1271129, "credit_id": "52fe420ec3a36847f80005f3", "cast_id": 109, "profile_path": "/ysocn4XckZRUqZsUp4qwldLCgZk.jpg", "order": 101}, {"name": "Bill Weston", "character": "Stormtrooper (uncredited)", "id": 24278, "credit_id": "52fe420ec3a36847f80005f7", "cast_id": 110, "profile_path": "/apVNA3SRNIrB6gu88nGTEhPewI2.jpg", "order": 102}, {"name": "Steve 'Spaz' Williams", "character": "Mos Eisley Citizen (special edition) (uncredited)", "id": 60207, "credit_id": "52fe420ec3a36847f80005fb", "cast_id": 111, "profile_path": "/zD0Qyhjjg87fDdEDJbqOFsSMtjm.jpg", "order": 103}, {"name": "Fred Wood", "character": "Cantina Patron (uncredited)", "id": 1271131, "credit_id": "52fe420ec3a36847f80005ff", "cast_id": 112, "profile_path": "/iSUYytTzBokyqKhCw4tvQAL74vn.jpg", "order": 104}, {"name": "Eddie Eddon", "character": "Pello Scrambas", "id": 1452480, "credit_id": "55287b2592514111c600070a", "cast_id": 113, "profile_path": null, "order": 105}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe420dc3a36847f8000437", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 7.7, "runtime": 121}, "12": {"poster_path": "/zjqInUwldOBa0q07fOyohYCWxWX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 864625978, "overview": "A tale which follows the comedic and eventful journeys of two fish, the fretful Marlin and his young son Nemo, who are separated from each other in the Great Barrier Reef when Nemo is unexpectedly taken from his home and thrust into a fish tank in a dentist's office overlooking Sydney Harbor. Buoyed by the companionship of a friendly but forgetful fish named Dory, the overly cautious Marlin embarks on a dangerous trek and finds himself the unlikely hero of an epic journey to rescue his son.", "video": false, "id": 12, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Finding Nemo", "tagline": "There are 3.7 trillion fish in the ocean, they're looking for one.", "vote_count": 2308, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2hC8HHRUvwRljYKIcQDMyMbLlxz.jpg", "poster_path": "/dzs7PHZnJPCJoNnX03aswviXprM.jpg", "id": 137697, "name": "Finding Nemo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0266543", "adult": false, "backdrop_path": "/n2vIGWw4ezslXjlP0VNxkp9wqwU.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Pixar Animation Studios", "id": 3}], "release_date": "2003-05-30", "popularity": 2.79949840464601, "original_title": "Finding Nemo", "budget": 94000000, "cast": [{"name": "Albert Brooks", "character": "Marlin (voice)", "id": 13, "credit_id": "52fe420ec3a36847f8000679", "cast_id": 8, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 0}, {"name": "Ellen DeGeneres", "character": "Dory (voice)", "id": 14, "credit_id": "52fe420ec3a36847f800067d", "cast_id": 9, "profile_path": "/b6XNecDpyRZQAuBDYTMsW6McFSp.jpg", "order": 1}, {"name": "Alexander Gould", "character": "Nemo (voice)", "id": 12, "credit_id": "52fe420ec3a36847f8000675", "cast_id": 7, "profile_path": "/c4EHOhxzwx7uDBxC8zODvKAEFGX.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Gill (voice)", "id": 5293, "credit_id": "52fe420ec3a36847f8000699", "cast_id": 16, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Brad Garrett", "character": "Bloat (voice)", "id": 18, "credit_id": "52fe420ec3a36847f8000681", "cast_id": 10, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 4}, {"name": "Allison Janney", "character": "Peach (voice)", "id": 19, "credit_id": "52fe420ec3a36847f8000685", "cast_id": 11, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 5}, {"name": "Austin Pendleton", "character": "Gurgle (voice)", "id": 6168, "credit_id": "52fe420ec3a36847f80006c1", "cast_id": 23, "profile_path": "/pxcdhd4oAsnhvUg0BalmiiKJyXg.jpg", "order": 6}, {"name": "Stephen Root", "character": "Bubbles (voice)", "id": 17401, "credit_id": "52fe420ec3a36847f80006c5", "cast_id": 24, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 7}, {"name": "Vicki Lewis", "character": "Deb / Flo (voice)", "id": 14723, "credit_id": "52fe420ec3a36847f80006c9", "cast_id": 25, "profile_path": "/4IYuDOZKW9XxSahF1QsxwU4a0p4.jpg", "order": 8}, {"name": "Joe Ranft", "character": "Jacques (voice)", "id": 7911, "credit_id": "52fe420ec3a36847f80006cd", "cast_id": 26, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 9}, {"name": "Geoffrey Rush", "character": "Nigel (voice)", "id": 118, "credit_id": "52fe420ec3a36847f80006d1", "cast_id": 27, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 10}, {"name": "Andrew Stanton", "character": "Crush (voice)", "id": 7, "credit_id": "52fe420ec3a36847f8000689", "cast_id": 12, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 11}, {"name": "Elizabeth Perkins", "character": "Coral (voice)", "id": 20, "credit_id": "52fe420ec3a36847f800068d", "cast_id": 13, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 12}, {"name": "Nicholas Bird", "character": "Squirt (voice)", "id": 981048, "credit_id": "52fe420ec3a36847f80006d5", "cast_id": 28, "profile_path": "/1LW8FJgEqfa9EoFroYofTquZDx0.jpg", "order": 13}, {"name": "Bob Peterson", "character": "Mr. Ray (voice)", "id": 10, "credit_id": "52fe420ec3a36847f80006d9", "cast_id": 29, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 14}, {"name": "Barry Humphries", "character": "Bruce (voice)", "id": 22, "credit_id": "52fe420ec3a36847f8000691", "cast_id": 14, "profile_path": "/bBXWmZtFbKy6Wzk1fHOCE8j6KfS.jpg", "order": 15}, {"name": "Eric Bana", "character": "Anchor (voice)", "id": 8783, "credit_id": "52fe420ec3a36847f80006e9", "cast_id": 33, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 16}, {"name": "Bill Hunter", "character": "Phillip Sherman (voice)", "id": 23, "credit_id": "52fe420ec3a36847f8000695", "cast_id": 15, "profile_path": "/fDYf8bxLtyy3vnSFX27QBe3mG8d.jpg", "order": 17}, {"name": "Bruce Spence", "character": "Chum (voice)", "id": 27752, "credit_id": "52fe420ec3a36847f80006ed", "cast_id": 34, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 21}, {"name": "LuLu Ebeling", "character": "Darla (voice)", "id": 981049, "credit_id": "52fe420ec3a36847f80006f1", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Jordan Ranft", "character": "Tad (voice)", "id": 1211731, "credit_id": "52fe420ec3a36847f80006f5", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Erica Beck", "character": "Pearl (voice)", "id": 1372790, "credit_id": "5438598cc3a36825ba001f32", "cast_id": 39, "profile_path": "/naleEkxyWI3Ldy4bcEY28zV6kl0.jpg", "order": 24}, {"name": "Erik Per Sullivan", "character": "Sheldon (voice)", "id": 17190, "credit_id": "52fe420ec3a36847f80006f9", "cast_id": 37, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 25}, {"name": "John Ratzenberger", "character": "Fish School (voice)", "id": 7907, "credit_id": "52fe420ec3a36847f80006fd", "cast_id": 38, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 26}], "directors": [{"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000653", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}, {"name": "Lee Unkrich", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000659", "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "id": 8}], "vote_average": 7.2, "runtime": 100}, "13": {"poster_path": "/y3EsNpMFwvpcucLmx4HiiRRhCXV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 677945399, "overview": "A man with a low IQ has accomplished great things in his life and been present during significant historic events - in each case, far exceeding what anyone imagined he could do. Yet, despite all the things he has attained, his one true love eludes him. 'Forrest Gump' is the story of a man who rose above his challenges, and who proved that determination, courage, and love are more important than ability.", "video": false, "id": 13, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Forrest Gump", "tagline": "The world will never be the same, once you've seen it through the eyes of Forrest Gump.", "vote_count": 2635, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109830", "adult": false, "backdrop_path": "/ctOEhQiFIHWkiaYp7b0ibSTe5IL.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1994-06-22", "popularity": 2.82167270569693, "original_title": "Forrest Gump", "budget": 55000000, "cast": [{"name": "Tom Hanks", "character": "Forrest Gump", "id": 31, "credit_id": "52fe420ec3a36847f800074f", "cast_id": 7, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Sally Field", "character": "Mrs. Gump", "id": 35, "credit_id": "52fe420ec3a36847f800075f", "cast_id": 11, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "Robin Wright", "character": "Jenny Curran", "id": 32, "credit_id": "52fe420ec3a36847f8000753", "cast_id": 8, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Mykelti Williamson", "character": "Pvt. Benjamin Buford 'Bubba' Blue", "id": 34, "credit_id": "52fe420ec3a36847f800075b", "cast_id": 10, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 3}, {"name": "Gary Sinise", "character": "Lt. Dan Taylor", "id": 33, "credit_id": "52fe420ec3a36847f8000757", "cast_id": 9, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 4}, {"name": "Michael Conner Humphreys", "character": "Young Forrest Gump", "id": 37821, "credit_id": "540b61f0c3a368799f001e2b", "cast_id": 38, "profile_path": "/vMEHkoxaJ7sn6rFYwfPLw2h6sb5.jpg", "order": 5}, {"name": "Hanna Hall", "character": "Young Jenny Curran", "id": 204997, "credit_id": "52fe420ec3a36847f8000785", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "Haley Joel Osment", "character": "Forrest Gump Jr.", "id": 9640, "credit_id": "52fe420ec3a36847f8000775", "cast_id": 25, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 7}, {"name": "Siobhan Fallon", "character": "School Bus Driver", "id": 6751, "credit_id": "52fe420ec3a36847f8000789", "cast_id": 34, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 8}, {"name": "Afemo Omilami", "character": "Drill Sergeant", "id": 37825, "credit_id": "52fe420ec3a36847f800078d", "cast_id": 35, "profile_path": "/bHluEOsKBKajFbk2cnxESo1nSCY.jpg", "order": 9}, {"name": "Peter Dobson", "character": "Young Elvis Presley", "id": 37822, "credit_id": "5517d886c3a36862ff003646", "cast_id": 105, "profile_path": "/3laM5gryWnG2tfjE2jt0UuPTFlp.jpg", "order": 10}, {"name": "Sonny Shroyer", "character": "College Football Coach", "id": 37823, "credit_id": "5517d8dd9251412c1e001eb4", "cast_id": 106, "profile_path": null, "order": 11}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f800072d", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 7.8, "runtime": 142}, "14": {"poster_path": "/3UBQGKS8c1dxRnDiu5kUK6ej3pP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 356296601, "overview": "Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.", "video": false, "id": 14, "genres": [{"id": 18, "name": "Drama"}], "title": "American Beauty", "tagline": "Look closer.", "vote_count": 782, "homepage": "http://www.dreamworks.com/ab/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0169547", "adult": false, "backdrop_path": "/z5J18ByLeOZ68iORfMXmxeFuwyL.jpg", "production_companies": [{"name": "DreamWorks Pictures", "id": 7293}, {"name": "Jinks/Cohen Company", "id": 2721}], "release_date": "1999-09-14", "popularity": 1.75251246964661, "original_title": "American Beauty", "budget": 15000000, "cast": [{"name": "Kevin Spacey", "character": "Lester Burnham", "id": 1979, "credit_id": "52fe420ec3a36847f80007db", "cast_id": 6, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Annette Bening", "character": "Carolyn Burnham", "id": 516, "credit_id": "52fe420ec3a36847f80007cf", "cast_id": 3, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Thora Birch", "character": "Jane Burnham", "id": 2155, "credit_id": "52fe420ec3a36847f80007d7", "cast_id": 5, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 2}, {"name": "Wes Bentley", "character": "Ricky Fitts", "id": 8210, "credit_id": "52fe420ec3a36847f80007df", "cast_id": 7, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 3}, {"name": "Mena Suvari", "character": "Angela Hayes", "id": 8211, "credit_id": "52fe420ec3a36847f80007e3", "cast_id": 8, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 4}, {"name": "Chris Cooper", "character": "Colonel Frank Fitts", "id": 2955, "credit_id": "52fe420ec3a36847f80007e7", "cast_id": 9, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 5}, {"name": "Scott Bakula", "character": "Jim Olmeyer", "id": 2154, "credit_id": "52fe420ec3a36847f80007d3", "cast_id": 4, "profile_path": "/o0lOdRjvFe0DEjquR1miMnjUUzt.jpg", "order": 6}, {"name": "Peter Gallagher", "character": "Buddy Kane", "id": 8212, "credit_id": "52fe420ec3a36847f80007eb", "cast_id": 10, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 7}, {"name": "Allison Janney", "character": "Barbara Fitts", "id": 19, "credit_id": "52fe420ec3a36847f80007ef", "cast_id": 11, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 8}, {"name": "Sam Robards", "character": "Jim Berkley", "id": 8213, "credit_id": "52fe420ec3a36847f80007f3", "cast_id": 12, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 9}, {"name": "Barry Del Sherman", "character": "Brad Dupree", "id": 8214, "credit_id": "52fe420ec3a36847f80007f7", "cast_id": 13, "profile_path": "/8uUOdG0fTnPYNkSgPpQDhzxSrjw.jpg", "order": 10}, {"name": "Ara Celi", "character": "Sale House Woman #1", "id": 64189, "credit_id": "549729c6c3a3686ae9006c28", "cast_id": 25, "profile_path": "/v5ejFjsfIX4gBeBzoEo5LCejCgq.jpg", "order": 11}, {"name": "Erin Cathryn Strubbe", "character": "Young Jane", "id": 1448568, "credit_id": "551cbac99251416a21001742", "cast_id": 26, "profile_path": null, "order": 12}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f80007c5", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 7.3, "runtime": 122}, "15": {"poster_path": "/n8wfFsQ5vtm6dM8vdgXb6OLv2GY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23217674, "overview": "Following the death of a publishing tycoon, news reporters scramble to discover the meaning of his final utterance.", "video": false, "id": 15, "genres": [{"id": 18, "name": "Drama"}], "title": "Citizen Kane", "tagline": "It's Terrific!", "vote_count": 269, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0033467", "adult": false, "backdrop_path": "/xqDfLC7XbiaVN5XxZBWOJCX0hU7.jpg", "production_companies": [{"name": "Mercury Productions", "id": 11447}], "release_date": "1941-05-01", "popularity": 0.444289916555205, "original_title": "Citizen Kane", "budget": 839727, "cast": [{"name": "Orson Welles", "character": "Charles Foster Kane", "id": 40, "credit_id": "52fe420ec3a36847f8000893", "cast_id": 5, "profile_path": "/pZz07JqawZP3eKUwpaAZq63vEmF.jpg", "order": 0}, {"name": "William Alland", "character": "Jerry Thompson", "id": 11030, "credit_id": "52fe420ec3a36847f80008ab", "cast_id": 11, "profile_path": null, "order": 1}, {"name": "Joseph Cotten", "character": "Jedediah Leland", "id": 7664, "credit_id": "52fe420ec3a36847f800088f", "cast_id": 4, "profile_path": "/bTUTrTnzacCQV4F0rs1xH4QaETf.jpg", "order": 2}, {"name": "Agnes Moorehead", "character": "Mutter", "id": 11025, "credit_id": "52fe420ec3a36847f8000897", "cast_id": 6, "profile_path": "/5FzeKtI94nExMbdY9GCsLVJUMgf.jpg", "order": 3}, {"name": "Ruth Warrick", "character": "Emily Norton Kane", "id": 11026, "credit_id": "52fe420ec3a36847f800089b", "cast_id": 7, "profile_path": "/zb6SLWE9PFCy1ZEEDznuVbYmoio.jpg", "order": 4}, {"name": "Everett Sloane", "character": "Mr. Bernstein", "id": 11027, "credit_id": "52fe420ec3a36847f800089f", "cast_id": 8, "profile_path": "/7TRtzy6BzV8SF0k6eny1jpizx8H.jpg", "order": 5}, {"name": "George Coulouris", "character": "Mr. Thatcher", "id": 11028, "credit_id": "52fe420ec3a36847f80008a3", "cast_id": 9, "profile_path": "/6lZrP9zhuFyL0uOHYJU09FpUV9.jpg", "order": 6}, {"name": "Dorothy Comingore", "character": "Susan Alexander Kane", "id": 11029, "credit_id": "52fe420ec3a36847f80008a7", "cast_id": 10, "profile_path": "/uUPQOYeLIzTucPd4Hn96tCqGSv1.jpg", "order": 7}, {"name": "Philip Van Zandt", "character": "Mr. Rawlston", "id": 11031, "credit_id": "52fe420ec3a36847f80008af", "cast_id": 12, "profile_path": "/6gvimJ7WbMTMfczOtPyzbWNUCDk.jpg", "order": 8}, {"name": "Buddy Swan", "character": "Kane als Kind", "id": 11032, "credit_id": "52fe420ec3a36847f80008b3", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Paul Stewart", "character": "Raymond", "id": 11033, "credit_id": "52fe420ec3a36847f80008b7", "cast_id": 14, "profile_path": "/8tKdcrxfykUgevbWTz8kuK7neQZ.jpg", "order": 10}, {"name": "Harry Shannon", "character": "Kane's Father", "id": 4077, "credit_id": "52fe420ec3a36847f80008eb", "cast_id": 23, "profile_path": "/7Js8vAjzKzM5eXcu6THDzWM7j5P.jpg", "order": 11}, {"name": "Ray Collins", "character": "James W. Gettys", "id": 14518, "credit_id": "52fe420ec3a36847f800090d", "cast_id": 29, "profile_path": "/gJe4Jfdzi01MoQ9eRTr9v4FyD76.jpg", "order": 12}, {"name": "Erskine Sanford", "character": "Mr. Bernstein", "id": 14364, "credit_id": "52fe420ec3a36847f8000911", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Fortunio Bonanova", "character": "Matiste", "id": 14979, "credit_id": "52fe420ec3a36847f8000915", "cast_id": 31, "profile_path": "/3oTAUQDI95m13EmADN6HI9pws8v.jpg", "order": 14}, {"name": "Gus Schilling", "character": "The Headwaiter", "id": 33743, "credit_id": "52fe420ec3a36847f8000919", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Georgia Backus", "character": "Miss Anderson", "id": 105021, "credit_id": "52fe420ec3a36847f800091d", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Sonny Bupp", "character": "Kane III", "id": 1198371, "credit_id": "52fe420ec3a36847f8000921", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Don Ackerman", "character": "Man at Party in Everglades (uncredited)", "id": 945285, "credit_id": "52fe420ec3a36847f8000925", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Danny Borzage", "character": "Man Singing at Inquirer Party (uncredited)", "id": 1404180, "credit_id": "549d3b73c3a3682f23005862", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Nat 'King' Cole", "character": "Pianist in 'El Rancho' (uncredited)", "id": 70261, "credit_id": "549d3b9192514131230055af", "cast_id": 37, "profile_path": "/4S9QCY5sbr2sCinticzPZq28Al4.jpg", "order": 20}, {"name": "Gino Corrado", "character": "Gino (uncredited)", "id": 9096, "credit_id": "549d3ba2c3a3682f1e0056a6", "cast_id": 38, "profile_path": "/s9WKkWJFUNgbPhczUP4sD0OA4I4.jpg", "order": 21}, {"name": "Maurice Costello", "character": "Extra (uncredited)", "id": 1142371, "credit_id": "549d3bbcc3a3682f16005694", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Alan Ladd", "character": "Reporter Smoking Pipe at End (uncredited)", "id": 30510, "credit_id": "549d3bf7c3a3682f1e0056af", "cast_id": 40, "profile_path": "/1DuDOljdykH8HmiKFvO05HB68UP.jpg", "order": 23}, {"name": "Herman J. Mankiewicz", "character": "Newspaperman (uncredited)", "id": 30012, "credit_id": "549d3c129251413129005a01", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Gregg Toland", "character": "Interviewer in 1935 Newsreel (uncredited)", "id": 8504, "credit_id": "549d3c50c3a3682f1b005666", "cast_id": 42, "profile_path": "/6DKcT5fCniS4gIEEEqsLkZC6QeK.jpg", "order": 25}], "directors": [{"name": "Orson Welles", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000885", "profile_path": "/pZz07JqawZP3eKUwpaAZq63vEmF.jpg", "id": 40}], "vote_average": 7.5, "runtime": 119}, "16": {"poster_path": "/dbSXueAo31UnHuEwKtjZ4oviTLu.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 40031879, "overview": "Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings.", "video": false, "id": 16, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Dancer in the Dark", "tagline": "You don't need eyes to see.", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9TSxhVABUzJqUv0dINNT91ymdyk.jpg", "poster_path": "/cwrmUIVzOuR9FdqKBfERkMHdde0.jpg", "id": 498, "name": "Heart of Gold Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0168629", "adult": false, "backdrop_path": "/2PaYKVhagjRwZ4KU914Ohmo1uOO.jpg", "production_companies": [{"name": "Fine Line Features", "id": 8}, {"name": "Zentropa Entertainments", "id": 76}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Blind Spot Pictures Oy", "id": 7330}, {"name": "France 3 Cin\u00e9ma", "id": 591}, {"name": "Danmarks Radio (DR)", "id": 119}, {"name": "Arte France Cin\u00e9ma", "id": 6916}, {"name": "Angel films", "id": 2996}, {"name": "Canal+", "id": 5358}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "TV 1000", "id": 4524}, {"name": "Vrijzinnig Protestantse Radio Omroep (VPRO)", "id": 8659}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Yleisradio (YLE)", "id": 5975}, {"name": "Memfis Film", "id": 321}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Film4", "id": 9349}], "release_date": "2000-09-22", "popularity": 0.400029061250287, "original_title": "Dancer in the Dark", "budget": 12800000, "cast": [{"name": "Bj\u00f6rk", "character": "Selma Jezkova", "id": 47, "credit_id": "52fe420fc3a36847f8000a17", "cast_id": 33, "profile_path": "/dzCbf8FyuUF2VBO7a0ytmV6ktfK.jpg", "order": 0}, {"name": "Catherine Deneuve", "character": "Kathy", "id": 50, "credit_id": "52fe420ec3a36847f8000985", "cast_id": 2, "profile_path": "/5xkwq8GelCwOIVtyZ15LVA0UJGJ.jpg", "order": 1}, {"name": "David Morse", "character": "Bill Houston", "id": 52, "credit_id": "52fe420ec3a36847f8000989", "cast_id": 3, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Peter Stormare", "character": "Jeff", "id": 53, "credit_id": "52fe420ec3a36847f800098d", "cast_id": 4, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 3}, {"name": "Joel Grey", "character": "Oldrich Novy", "id": 6748, "credit_id": "52fe420ec3a36847f800099d", "cast_id": 7, "profile_path": "/yCLwC64GVp96bNi7eTPT0VPmjON.jpg", "order": 4}, {"name": "Cara Seymour", "character": "Linda Houston", "id": 2617, "credit_id": "52fe420ec3a36847f80009a1", "cast_id": 8, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 5}, {"name": "Vladica Kostic", "character": "Gene Jezkova", "id": 6749, "credit_id": "52fe420ec3a36847f80009a5", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Jean-Marc Barr", "character": "Norman", "id": 1642, "credit_id": "52fe420ec3a36847f80009a9", "cast_id": 10, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 7}, {"name": "Vincent Paterson", "character": "Samuel", "id": 6750, "credit_id": "52fe420ec3a36847f80009ad", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Siobhan Fallon", "character": "Brenda", "id": 6751, "credit_id": "52fe420ec3a36847f80009b1", "cast_id": 12, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 9}, {"name": "\u017deljko Ivanek", "character": "District Attorney", "id": 6752, "credit_id": "52fe420ec3a36847f80009b5", "cast_id": 13, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 10}, {"name": "Udo Kier", "character": "Dr. Porkorny", "id": 1646, "credit_id": "52fe420ec3a36847f80009b9", "cast_id": 14, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 11}, {"name": "Jens Albinus", "character": "Morty", "id": 6121, "credit_id": "52fe420ec3a36847f80009bd", "cast_id": 15, "profile_path": "/9CgGf30xp3hreseXoQd3qCQV1cY.jpg", "order": 12}, {"name": "Reathel Bean", "character": "Judge", "id": 6753, "credit_id": "52fe420ec3a36847f80009c1", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Mette Berggreen", "character": "Receptionist", "id": 6754, "credit_id": "52fe420ec3a36847f80009c5", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Lars Michael Dinesen", "character": "Defense Attorney", "id": 6755, "credit_id": "52fe420ec3a36847f80009c9", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Katrine Falkenberg", "character": "Suzan", "id": 6756, "credit_id": "52fe420ec3a36847f80009cd", "cast_id": 19, "profile_path": "/vHpgl8FBvEadVJYQfMsWKNTR635.jpg", "order": 16}, {"name": "Michael Flessas", "character": "Angry Man", "id": 6757, "credit_id": "52fe420ec3a36847f80009d1", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "John Randolph Jones", "character": "Detective", "id": 6758, "credit_id": "52fe420ec3a36847f80009d5", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Stellan Skarsg\u00e5rd", "character": "Doctor", "id": 1640, "credit_id": "52fe420ec3a36847f80009d9", "cast_id": 22, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 19}, {"name": "Paprika Steen", "character": "Woman on Night Shift", "id": 4458, "credit_id": "52fe420ec3a36847f80009dd", "cast_id": 23, "profile_path": "/7iz6g2gXDCVL9LFjqmVV8KwGvNP.jpg", "order": 20}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe420ec3a36847f8000981", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 7.5, "runtime": 140}, "18": {"poster_path": "/zaFa1NRZEnFgRTv5OVXkNIZO78O.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 263920180, "overview": "It\u2019s the year 2257 and a taxi driver has been unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity. The Fifth Element takes place in a futuristic metropolitan city and is filmed in a French comic book aesthetic by a British, French and American lineup.", "video": false, "id": 18, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Fifth Element", "tagline": "There is no future without it.", "vote_count": 1684, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0119116", "adult": false, "backdrop_path": "/15yszF6DeZD9zUzh89WtY5pnnRD.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1997-05-09", "popularity": 1.35074637569714, "original_title": "The Fifth Element", "budget": 90000000, "cast": [{"name": "Bruce Willis", "character": "Korben Dallas", "id": 62, "credit_id": "52fe420fc3a36847f8000b53", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Milla Jovovich", "character": "Leeloo", "id": 63, "credit_id": "52fe420fc3a36847f8000b57", "cast_id": 6, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Jean-Baptiste Emmanuel Zorg", "id": 64, "credit_id": "52fe420fc3a36847f8000b5b", "cast_id": 7, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Ian Holm", "character": "Father Vito Cornelius", "id": 65, "credit_id": "52fe420fc3a36847f8000b5f", "cast_id": 8, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 3}, {"name": "Chris Tucker", "character": "Ruby Rhod", "id": 66, "credit_id": "52fe420fc3a36847f8000bcf", "cast_id": 36, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 4}, {"name": "Luke Perry", "character": "Billy", "id": 8395, "credit_id": "52fe420fc3a36847f8000bd3", "cast_id": 37, "profile_path": "/gs74eTwX2Qpp5uG7vSoibZpHUOL.jpg", "order": 5}, {"name": "Brion James", "character": "General Munro", "id": 591, "credit_id": "52fe420fc3a36847f8000bd7", "cast_id": 38, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 6}, {"name": "Tommy Lister", "character": "President Lindberg", "id": 8396, "credit_id": "52fe420fc3a36847f8000bdb", "cast_id": 39, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 7}, {"name": "Lee Evans", "character": "Fog", "id": 7400, "credit_id": "52fe420fc3a36847f8000bdf", "cast_id": 40, "profile_path": "/oMMGnjjU9bPxtaS4swZ4dxkifwX.jpg", "order": 8}, {"name": "Charlie Creed-Miles", "character": "David", "id": 8397, "credit_id": "52fe420fc3a36847f8000be3", "cast_id": 41, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 9}, {"name": "John Bluthal", "character": "Professor Pacoli", "id": 8398, "credit_id": "52fe420fc3a36847f8000be7", "cast_id": 42, "profile_path": null, "order": 10}, {"name": "Mathieu Kassovitz", "character": "Mugger", "id": 2406, "credit_id": "52fe420fc3a36847f8000beb", "cast_id": 43, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 11}, {"name": "Christopher Fairbank", "character": "Mactilburgh", "id": 8399, "credit_id": "52fe420fc3a36847f8000bef", "cast_id": 44, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 12}, {"name": "Kim Chan", "character": "Mr. Kim", "id": 8400, "credit_id": "52fe420fc3a36847f8000bf3", "cast_id": 45, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 13}, {"name": "Tricky", "character": "Right Arm", "id": 183500, "credit_id": "52fe420fc3a36847f8000bf7", "cast_id": 46, "profile_path": "/qz8g8XPQ2NQC1rmd4j06nbVDKh5.jpg", "order": 14}, {"name": "Indra Ov\u00e9", "character": "VIP Stewardess", "id": 232174, "credit_id": "52fe420fc3a36847f8000bfb", "cast_id": 47, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 15}, {"name": "John Neville", "character": "General Staedert", "id": 12642, "credit_id": "52fe420fc3a36847f8000bff", "cast_id": 48, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 16}, {"name": "Ma\u00efwenn", "character": "Diva Plavalaguna", "id": 64210, "credit_id": "52fe420fc3a36847f8000c03", "cast_id": 49, "profile_path": "/4w26lbGWf1sZtGem2KOI89F5TPu.jpg", "order": 17}, {"name": "Al Matthews", "character": "General Tudor", "id": 10208, "credit_id": "5506e93b92514179fb00200e", "cast_id": 107, "profile_path": null, "order": 18}, {"name": "Julie T. Wallace", "character": "Major Iceborg", "id": 28897, "credit_id": "5506e966c3a36805810035c6", "cast_id": 108, "profile_path": null, "order": 19}, {"name": "Mac McDonald", "character": "Flying Cop", "id": 33403, "credit_id": "550c90c49251414691003fae", "cast_id": 109, "profile_path": "/cRKziKEi6eucP7EjV4t24Gyf7Ck.jpg", "order": 20}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe420fc3a36847f8000b43", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.9, "runtime": 126}, "19": {"poster_path": "/hnj1AptUFmYYZNjrbIHgNjgt3ZX.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 650422, "overview": "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.", "video": false, "id": 19, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Metropolis", "tagline": "There can be no understanding between the hands and the brain unless the heart acts as mediator.", "vote_count": 170, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0017136", "adult": false, "backdrop_path": "/gmH0N0bdlYGN1EUr8U2cMQYyg78.jpg", "production_companies": [{"name": "Universum Film", "id": 811}], "release_date": "1927-01-10", "popularity": 0.794940218869626, "original_title": "Metropolis", "budget": 92620000, "cast": [{"name": "Brigitte Helm", "character": "Maria", "id": 75, "credit_id": "52fe420fc3a36847f8000c87", "cast_id": 10, "profile_path": "/gHCAWZxoYMUMfT1yQFG0WqdmAnU.jpg", "order": 0}, {"name": "Alfred Abel", "character": "Johann 'Joh' Fredersen", "id": 73, "credit_id": "52fe420fc3a36847f8000cdb", "cast_id": 28, "profile_path": null, "order": 1}, {"name": "Gustav Fr\u00f6hlich", "character": "Freder Fredersen", "id": 74, "credit_id": "52fe420fc3a36847f8000c83", "cast_id": 9, "profile_path": "/z8fMRjarFtxAeLsI9rurs3v1R9D.jpg", "order": 2}, {"name": "Rudolf Klein-Rogge", "character": "C.A. Rotwang, the inventor", "id": 77, "credit_id": "52fe420fc3a36847f8000c8b", "cast_id": 11, "profile_path": "/dz2NKTrM06vyg4iQN9vHQ3a7bDR.jpg", "order": 3}, {"name": "Fritz Rasp", "character": "Der Schmale", "id": 78, "credit_id": "52fe420fc3a36847f8000c8f", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Theodor Loos", "character": "Josaphat - Joseph", "id": 79, "credit_id": "52fe420fc3a36847f8000c93", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Erwin Biswanger", "character": "No. 11811", "id": 80, "credit_id": "52fe420fc3a36847f8000c97", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Heinrich George", "character": "Grot", "id": 81, "credit_id": "52fe420fc3a36847f8000c9b", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Olaf Storm", "character": "Jan", "id": 82, "credit_id": "52fe420fc3a36847f8000c9f", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Hanns Leo Reich", "character": "Marinus", "id": 83, "credit_id": "52fe420fc3a36847f8000ca3", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Helene Weigel", "character": "Arbeiterfrau", "id": 2350, "credit_id": "52fe420fc3a36847f8000cad", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Fritz Alberti", "character": "Kreativer Mensch", "id": 20535, "credit_id": "52fe420fc3a36847f8000cb9", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Heinrich Gotho", "character": "Zeremonienmeister", "id": 20533, "credit_id": "52fe420fc3a36847f8000cb1", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Margarete Lanner", "character": "Frau im Wagen", "id": 20534, "credit_id": "52fe420fc3a36847f8000cb5", "cast_id": 21, "profile_path": null, "order": 13}], "directors": [{"name": "Fritz Lang", "department": "Directing", "job": "Director", "credit_id": "52fe420fc3a36847f8000c61", "profile_path": "/iq0KqfkJzEGGHx9MupllyJoCush.jpg", "id": 68}], "vote_average": 7.9, "runtime": 153}, "22": {"poster_path": "/tkt9xR1kNX5R9rCebASKck44si2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 655011224, "overview": "Jack Sparrow, a freewheeling 17th-century pirate who roams the Caribbean Sea butts heads with a rival pirate bent on pillaging the village of Port Royal. When the governor's daughter is kidnapped, Sparrow decides to help the girl's love save her. But their seafaring mission is hardly simple.", "video": false, "id": 22, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: The Curse of the Black Pearl", "tagline": "Prepare to be blown out of the water.", "vote_count": 2522, "homepage": "http://disney.go.com/disneyvideos/liveaction/pirates/main_site/main.html", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0325980", "adult": false, "backdrop_path": "/jpRpigNQUjNlfx0gYRBJ30tQIOl.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-07-09", "popularity": 2.43148449658197, "original_title": "Pirates of the Caribbean: The Curse of the Black Pearl", "budget": 140000000, "cast": [{"name": "Johnny Depp", "character": "Jack Sparrow", "id": 85, "credit_id": "52fe420fc3a36847f8000ecb", "cast_id": 12, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Geoffrey Rush", "character": "Barbossa", "id": 118, "credit_id": "52fe420fc3a36847f8000ea3", "cast_id": 5, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 1}, {"name": "Orlando Bloom", "character": "Will Turner", "id": 114, "credit_id": "52fe420fc3a36847f8000e8f", "cast_id": 1, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 2}, {"name": "Keira Knightley", "character": "Elizabeth Swann", "id": 116, "credit_id": "52fe420fc3a36847f8000e9f", "cast_id": 4, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 3}, {"name": "Jack Davenport", "character": "Norrington", "id": 1709, "credit_id": "52fe420fc3a36847f8000ecf", "cast_id": 13, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 4}, {"name": "Kevin McNally", "character": "Joshamee Gibbs", "id": 2449, "credit_id": "52fe4210c3a36847f8000f33", "cast_id": 36, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 5}, {"name": "Zoe Saldana", "character": "Anamaria", "id": 8691, "credit_id": "52fe4210c3a36847f8000f1b", "cast_id": 31, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 6}, {"name": "Jonathan Pryce", "character": "Governor Weatherby Swann", "id": 378, "credit_id": "52fe420fc3a36847f8000ed3", "cast_id": 14, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 7}, {"name": "Lee Arenberg", "character": "Pintel", "id": 1710, "credit_id": "52fe420fc3a36847f8000ed7", "cast_id": 15, "profile_path": "/ziQH86o2BInPEUF7VW0gYte35Tw.jpg", "order": 8}, {"name": "Mackenzie Crook", "character": "Ragetti", "id": 1711, "credit_id": "52fe420fc3a36847f8000edb", "cast_id": 16, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 9}, {"name": "Damian O'Hare", "character": "Lt. Gillette", "id": 1712, "credit_id": "52fe420fc3a36847f8000edf", "cast_id": 17, "profile_path": "/fKpaczsKihsuEPWInNENp1WVtwg.jpg", "order": 10}, {"name": "Giles New", "character": "Murtogg", "id": 1713, "credit_id": "52fe420fc3a36847f8000ee3", "cast_id": 18, "profile_path": "/I9X3rsueDsvAqq0LneLU8mEgJw.jpg", "order": 11}, {"name": "Angus Barnett", "character": "Mullroy", "id": 1714, "credit_id": "52fe420fc3a36847f8000ee7", "cast_id": 19, "profile_path": "/usYsWRccdM4Y00RycsQFFOdNVe.jpg", "order": 12}, {"name": "David Bailie", "character": "Cotton", "id": 1715, "credit_id": "52fe420fc3a36847f8000eeb", "cast_id": 20, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 13}, {"name": "Michael Berry Jr.", "character": "Twigg", "id": 1716, "credit_id": "52fe420fc3a36847f8000eef", "cast_id": 21, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 14}, {"name": "Isaac C. Singleton Jr.", "character": "Bo'sun", "id": 1717, "credit_id": "52fe420fc3a36847f8000ef3", "cast_id": 22, "profile_path": "/CV8zy42A8Bn76IoibLVmFdYkiU.jpg", "order": 15}, {"name": "Treva Etienne", "character": "Koehler", "id": 12802, "credit_id": "52fe4210c3a36847f8000f3b", "cast_id": 38, "profile_path": "/wIHXwmb2aFBNIT9aJHahtlHMrto.jpg", "order": 16}, {"name": "Guy Siner", "character": "Harbormaster", "id": 9298, "credit_id": "52fe4210c3a36847f8000f3f", "cast_id": 39, "profile_path": "/qlEznv2uAbN46pmVaAuWNTULdVh.jpg", "order": 17}, {"name": "Ralph P. Martin", "character": "Mr. Brown", "id": 155955, "credit_id": "52fe4210c3a36847f8000f43", "cast_id": 40, "profile_path": "/gZThHsCXovn1KrB0f0IToSx8i4f.jpg", "order": 18}, {"name": "Paula J. Newman", "character": "Estrella (as Paula Jane Newman)", "id": 59056, "credit_id": "52fe4210c3a36847f8000f47", "cast_id": 41, "profile_path": "/u3HCFYLWPR2tnkNLmohldgxc2Sb.jpg", "order": 19}, {"name": "Paul Keith", "character": "Butler", "id": 116234, "credit_id": "52fe4210c3a36847f8000f4b", "cast_id": 42, "profile_path": "/ln0ACkzDK4xRbLuanja3RKUqpYP.jpg", "order": 20}, {"name": "Dylan Smith", "character": "Young Will", "id": 1172661, "credit_id": "52fe4210c3a36847f8000f37", "cast_id": 37, "profile_path": "/z2PRKKGdq0P8tbFmW97KCI2yPgq.jpg", "order": 21}, {"name": "Lucinda Dryzek", "character": "Young Elizabeth Swann", "id": 82143, "credit_id": "52fe4210c3a36847f8000f2f", "cast_id": 35, "profile_path": "/oI6MJR0X9g1ay8iRsNps6lq2UHt.jpg", "order": 22}, {"name": "Luke de Woolfson", "character": "Frightened Sailor", "id": 82636, "credit_id": "52fe4210c3a36847f8000f1f", "cast_id": 32, "profile_path": "/lsJ51EAV14lf0F39nGnlHz7CdM8.jpg", "order": 23}, {"name": "Michael Sean Tighe", "character": "Seedy Looking Prisoner", "id": 74578, "credit_id": "52fe4210c3a36847f8000f4f", "cast_id": 43, "profile_path": "/pCnyL2emYr3eo1kYw8B6diH8nkk.jpg", "order": 24}, {"name": "Greg Ellis", "character": "Officer", "id": 4031, "credit_id": "52fe4210c3a36847f8000f53", "cast_id": 44, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 25}, {"name": "Dustin Seavey", "character": "Sentry", "id": 106514, "credit_id": "52fe4210c3a36847f8000f57", "cast_id": 45, "profile_path": "/bunBp2hQCBykaZUQypGrPmedxXF.jpg", "order": 26}, {"name": "Christian Martin", "character": "Steersman", "id": 1269546, "credit_id": "52fe4210c3a36847f8000f5b", "cast_id": 46, "profile_path": "/cyM7aZ4RtH5kiNWH6nj5af6AYSA.jpg", "order": 27}, {"name": "Trevor Goddard", "character": "Grapple", "id": 57252, "credit_id": "52fe4210c3a36847f8000f63", "cast_id": 48, "profile_path": "/5qctMNVCJeJ8RO6W03GGDeRNxJG.jpg", "order": 28}, {"name": "Vince Lozano", "character": "Jacoby", "id": 88032, "credit_id": "52fe4210c3a36847f8000f67", "cast_id": 49, "profile_path": "/ne8tZvqhhTbFWoQIpp4yaf7bclX.jpg", "order": 29}, {"name": "Ben Wilson", "character": "Seedy Prisoner #2", "id": 60941, "credit_id": "52fe4210c3a36847f8000f6b", "cast_id": 50, "profile_path": "/aEoSC2MLB8X5I9v6hscth0th3Ex.jpg", "order": 30}, {"name": "Antonio Valentino", "character": "Seedy Prisoner #3", "id": 1269548, "credit_id": "52fe4210c3a36847f8000f6f", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Lauren Maher", "character": "Scarlett", "id": 2450, "credit_id": "52fe4210c3a36847f8000f73", "cast_id": 52, "profile_path": "/6lOXL14xydRIplYqVv6KBdNs9MG.jpg", "order": 32}, {"name": "Matthew Bowyer", "character": "Sailor / Edinburgh", "id": 1077834, "credit_id": "52fe4210c3a36847f8000f77", "cast_id": 53, "profile_path": "/sEfjY9lBchn6kHYMa17aCzLyXHY.jpg", "order": 33}, {"name": "Brye Cooper", "character": "Mallot", "id": 931645, "credit_id": "52fe4210c3a36847f8000f7b", "cast_id": 54, "profile_path": "/aHsDAj8jotUgpeMi7WfHpMwpSc2.jpg", "order": 34}, {"name": "Mike Babcock", "character": "Seedy Prisoner #4", "id": 1269549, "credit_id": "52fe4210c3a36847f8000f7f", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Owen Finnegan", "character": "Town Clerk", "id": 1269550, "credit_id": "52fe4210c3a36847f8000f83", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Ian McIntyre", "character": "Sailor", "id": 1269551, "credit_id": "52fe4210c3a36847f8000f87", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Vanessa Branch", "character": "Giselle", "id": 2452, "credit_id": "52fe4210c3a36847f8000f8b", "cast_id": 58, "profile_path": "/we5DEoTqeJznGe8m7ssRgmVXmwB.jpg", "order": 38}, {"name": "Sam Roberts", "character": "Crying Boy", "id": 1269553, "credit_id": "52fe4210c3a36847f8000f8f", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Ben Roberts", "character": "Crying Boy", "id": 1269554, "credit_id": "52fe4210c3a36847f8000f93", "cast_id": 60, "profile_path": "/6QeKEBGVTnlAWfGx2rVFzyPd9dH.jpg", "order": 40}, {"name": "Martin Klebba", "character": "Marty", "id": 4030, "credit_id": "52fe4210c3a36847f8000f97", "cast_id": 61, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 41}, {"name": "F\u00e9lix Castro", "character": "Moises: Jack's Crew", "id": 1269555, "credit_id": "52fe4210c3a36847f8000f9b", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Mike Haberecht", "character": "Kursar: Jack's Crew", "id": 1269556, "credit_id": "52fe4210c3a36847f8000f9f", "cast_id": 63, "profile_path": "/dUyuOhs3URvFLznnVsBiOzwnyjv.jpg", "order": 43}, {"name": "Rudolph McCollum", "character": "Matelot: Jack's Crew", "id": 1269557, "credit_id": "52fe4210c3a36847f8000fa3", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Gerard J. Reyes", "character": "Tearlach: Jack's Crew (as Gerard Reyes)", "id": 1269559, "credit_id": "52fe4210c3a36847f8000fa7", "cast_id": 65, "profile_path": "/mkb3O3DIwuxDzcRozEttr6nOeWq.jpg", "order": 45}, {"name": "M. Scott Shields", "character": "Duncan: Jack's Crew", "id": 1269560, "credit_id": "52fe4210c3a36847f8000fab", "cast_id": 66, "profile_path": "/vLxsphyxszicGYbwmSUrJ3MHGTu.jpg", "order": 46}, {"name": "Christopher Sullivan", "character": "Ladbroc: Jack's Crew (as Chris 'Sully' Sullivan)", "id": 1269561, "credit_id": "52fe4210c3a36847f8000faf", "cast_id": 67, "profile_path": null, "order": 47}, {"name": "Craig Thomson", "character": "Crimp: Jack's Crew", "id": 1269562, "credit_id": "52fe4210c3a36847f8000fb3", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Fred Toft", "character": "Quartetto: Jack's Crew", "id": 1269602, "credit_id": "52fe4210c3a36847f8000fb7", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "D.P. FitzGerald", "character": "Weatherby: Barbossa's Crew", "id": 1269603, "credit_id": "52fe4210c3a36847f8000fbb", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Jerry Gauny", "character": "Ketchum: Barbossa's Crew", "id": 1269604, "credit_id": "52fe4210c3a36847f8000fbf", "cast_id": 71, "profile_path": "/l4R9AqAJ4LAoTKKqascCttOoNgT.jpg", "order": 51}, {"name": "Maxie J. Santillan Jr.", "character": "Maximo: Barbossa's Crew", "id": 145555, "credit_id": "52fe4210c3a36847f8000fc3", "cast_id": 72, "profile_path": "/iajY9C4fEv47S5PL1eA32UTaiEE.jpg", "order": 52}, {"name": "Michael Earl Lane", "character": "Monk: Barbossa's Crew (as Michael Lane)", "id": 1269605, "credit_id": "52fe4210c3a36847f8000fc7", "cast_id": 73, "profile_path": "/ztu6mVqL4Fm7iIXFXbKTEdUINaw.jpg", "order": 53}, {"name": "Tobias McKinney", "character": "Dog Ear: Barbossa's Crew", "id": 1269606, "credit_id": "52fe4210c3a36847f8000fcb", "cast_id": 74, "profile_path": null, "order": 54}, {"name": "David Patykewich", "character": "Clubba: Barbossa's Crew", "id": 1269607, "credit_id": "52fe4210c3a36847f8000fcf", "cast_id": 75, "profile_path": "/jVOAdvckgprtJrfW41XSg5Az3Ny.jpg", "order": 55}, {"name": "Tommy Schooler", "character": "Scarus: Barbossa's Crew", "id": 1269608, "credit_id": "52fe4210c3a36847f8000fd3", "cast_id": 76, "profile_path": "/jlQEUTpejFbazxyl97PM1d5hKZv.jpg", "order": 56}, {"name": "Michael A. Thompson", "character": "Simbakka: Barbossa's Crew", "id": 1269609, "credit_id": "52fe4210c3a36847f8000fd7", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Michael W. Williams", "character": "Hawksmoor: Barbossa's Crew", "id": 1196317, "credit_id": "52fe4210c3a36847f8000fdb", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Jose Zelaya", "character": "Katracho: Barbossa's Crew", "id": 180394, "credit_id": "52fe4210c3a36847f8000fdf", "cast_id": 79, "profile_path": null, "order": 59}, {"name": "Finneus Egan", "character": "Scratch: Barbossa's Crew", "id": 182212, "credit_id": "52fe4210c3a36847f8000fe3", "cast_id": 80, "profile_path": "/d5auyJjoO88yJ6xJ96A7ywxBHUh.jpg", "order": 60}, {"name": "Don LaDaga", "character": "Nipperkin: Barbossa's Crew", "id": 1269610, "credit_id": "52fe4210c3a36847f8000fe7", "cast_id": 81, "profile_path": null, "order": 61}, {"name": "LeJon", "character": "Lejon (as LeJon Stewart)", "id": 1269611, "credit_id": "52fe4210c3a36847f8000feb", "cast_id": 82, "profile_path": "/9V0WQsy3aj6I8iTW3eyLy3cpYpL.jpg", "order": 62}, {"name": "Christopher S. Capp", "character": "Parrot Voice (voice)", "id": 21700, "credit_id": "52fe4210c3a36847f8000fef", "cast_id": 83, "profile_path": null, "order": 63}, {"name": "Gregory Alosio", "character": "Pirate (uncredited)", "id": 1269612, "credit_id": "52fe4210c3a36847f8000ff3", "cast_id": 84, "profile_path": "/tV1nWYs1tsm1qbvbvm2Se4iKgeE.jpg", "order": 64}, {"name": "Jordi Caballero", "character": "Pirate (uncredited)", "id": 59215, "credit_id": "52fe4210c3a36847f8000ff7", "cast_id": 85, "profile_path": "/6LJPfa9Pt4zhrGl1phkCb3F6mU2.jpg", "order": 65}, {"name": "Paul Gagn\u00e9", "character": "Sailor (uncredited)", "id": 74666, "credit_id": "52fe4210c3a36847f8000ffb", "cast_id": 86, "profile_path": "/cx0gtawr9FNG3ZQwNsQQwUcct9G.jpg", "order": 66}, {"name": "Joe Grisaffi", "character": "Marine (uncredited)", "id": 1146942, "credit_id": "52fe4210c3a36847f8000fff", "cast_id": 87, "profile_path": "/2QQcjENUjpp5xpCJ2mpFobiczOo.jpg", "order": 67}, {"name": "James McAuley", "character": "Barbossa's Crew (uncredited)", "id": 1269613, "credit_id": "52fe4210c3a36847f8001003", "cast_id": 88, "profile_path": "/mAke047ruqikk5vQzKm4Opu1llk.jpg", "order": 68}, {"name": "Israel Aduramo", "character": "Crippled Man", "id": 67147, "credit_id": "53091444c3a3687b57000f41", "cast_id": 90, "profile_path": "/mYBMfXnhlWDFx28okomf3VpBCEg.jpg", "order": 69}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe420fc3a36847f8000ea9", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 7.1, "runtime": 143}, "24": {"poster_path": "/vdENJAPObttowMtIwe9jgtbsEnq.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180949000, "overview": "An assassin is shot at the altar by her ruthless employer, Bill, and other members of their assassination circle. But \"The Bride\" lives to plot her vengeance. Setting out for some payback, she makes a death list and hunts down those who wronged her, saving Bill for last.", "video": false, "id": 24, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Kill Bill: Vol. 1", "tagline": "Go for the kill.", "vote_count": 1352, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oCLKNACMNrEf4T1EP6BpMXDl5m1.jpg", "poster_path": "/tf1nUtw3LJGUGv1EFFi23iz6ngr.jpg", "id": 2883, "name": "Kill Bill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0266697", "adult": false, "backdrop_path": "/kkS8PKa8c134vXsj2fQkNqOaCXU.jpg", "production_companies": [{"name": "Super Cool ManChu", "id": 39121}, {"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}], "release_date": "2003-10-09", "popularity": 1.41990748742006, "original_title": "Kill Bill: Vol. 1", "budget": 55000000, "cast": [{"name": "Uma Thurman", "character": "Beatrix 'The Bride' Kiddo", "id": 139, "credit_id": "52fe4210c3a36847f800104d", "cast_id": 3, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "Lucy Liu", "character": "O-Ren Ishii", "id": 140, "credit_id": "52fe4210c3a36847f8001051", "cast_id": 4, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Vivica A. Fox", "character": "Vernita Green", "id": 2535, "credit_id": "52fe4210c3a36847f800106d", "cast_id": 10, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 2}, {"name": "Daryl Hannah", "character": "Elle Driver", "id": 589, "credit_id": "52fe4210c3a36847f8001069", "cast_id": 9, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 3}, {"name": "David Carradine", "character": "Bill", "id": 141, "credit_id": "52fe4210c3a36847f8001055", "cast_id": 5, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 4}, {"name": "Chiaki Kuriyama", "character": "Gogo Yubari", "id": 2538, "credit_id": "52fe4210c3a36847f8001075", "cast_id": 12, "profile_path": "/ccaYcabNnxA4MPItZdKAMdqEqTk.jpg", "order": 5}, {"name": "Julie Dreyfus", "character": "Sofie Fatale", "id": 2539, "credit_id": "52fe4210c3a36847f800107d", "cast_id": 14, "profile_path": "/vkUvcV6oFkZXcIv4SGeW66LUoqC.jpg", "order": 6}, {"name": "Michael Madsen", "character": "Budd", "id": 147, "credit_id": "52fe4210c3a36847f8001059", "cast_id": 6, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 7}, {"name": "Sonny Chiba", "character": "Hattori Hanzo", "id": 2537, "credit_id": "52fe4210c3a36847f8001079", "cast_id": 13, "profile_path": "/9VduIlJK3bujNX0Gv0WvZ2cFxrK.jpg", "order": 8}, {"name": "Gordon Liu Chia-Hui", "character": "Johnny Mo", "id": 240171, "credit_id": "52fe4210c3a36847f80010c3", "cast_id": 35, "profile_path": "/yTI36A27P9YdFbzrCwjpmEpDGbR.jpg", "order": 9}, {"name": "Michael Bowen", "character": "Buck", "id": 2234, "credit_id": "53adbe460e0a265986002691", "cast_id": 38, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 10}, {"name": "Michael Parks", "character": "Earl McGraw", "id": 2536, "credit_id": "52fe4210c3a36847f8001071", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 11}, {"name": "James Parks", "character": "Edgar McGraw", "id": 87312, "credit_id": "53adbf1f0e0a26597500281c", "cast_id": 39, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 12}, {"name": "Sakichi Sat\u00f4", "character": "Charlie Brown", "id": 58616, "credit_id": "52fe4210c3a36847f80010af", "cast_id": 30, "profile_path": "/s3slnuF2U18zAPJi0yovdzZPIQF.jpg", "order": 13}, {"name": "Ambrosia Kelley", "character": "Nikki Bell", "id": 4026, "credit_id": "52fe4210c3a36847f80010a5", "cast_id": 25, "profile_path": "/8y5vikbwYbNcBfWt1hIjrgwEYYN.jpg", "order": 14}, {"name": "Jun Kunimura", "character": "Tanaka", "id": 2541, "credit_id": "53e23f3a0e0a262b9100123a", "cast_id": 40, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 15}, {"name": "Akaji Maro", "character": "Boss Ozawah", "id": 2544, "credit_id": "5475b93bc3a36859b90018da", "cast_id": 56, "profile_path": "/b28JIJMTwtVPiuz6TtOiFh5gNzs.jpg", "order": 16}, {"name": "Goro Daimon", "character": "Boss Honda", "id": 1369182, "credit_id": "5475b970c3a368364c0028ad", "cast_id": 57, "profile_path": null, "order": 17}, {"name": "Shun Sugata", "character": "Boss Benta", "id": 9193, "credit_id": "5475b98bc3a368364c0028b6", "cast_id": 58, "profile_path": "/9Ntziepdp2P2xsLGHdy0rchVJ3G.jpg", "order": 18}, {"name": "Zhang Jin Zhan", "character": "Boss Orgami", "id": 1389612, "credit_id": "5475b9cfc3a3684df2000487", "cast_id": 59, "profile_path": null, "order": 19}, {"name": "Sachiko Fujii", "character": "The 5, 6, 7, 8's", "id": 1314989, "credit_id": "5475dc2992514166ba0009b1", "cast_id": 84, "profile_path": null, "order": 20}, {"name": "Kazuki Kitamura", "character": "Crazy 88", "id": 2542, "credit_id": "5475dc75c3a368764e000ff3", "cast_id": 85, "profile_path": "/2DefK5vG0JquPJ1UdcckaPRcy96.jpg", "order": 21}, {"name": "Y\u00f4ji Tanaka", "character": "Crazy 88", "id": 115659, "credit_id": "5475dc8d92514152730028f1", "cast_id": 86, "profile_path": "/xPpE9vinviRqjewLsnMQ5X5Dx9B.jpg", "order": 22}, {"name": "Issei Takahashi", "character": "Crazy 88", "id": 115657, "credit_id": "5475dca29251412c3b004666", "cast_id": 87, "profile_path": null, "order": 23}, {"name": "S\u00f4 Yamanaka", "character": "Crazy 88", "id": 121751, "credit_id": "5475dcb7c3a368364c002e02", "cast_id": 88, "profile_path": null, "order": 24}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4210c3a36847f8001049", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.2, "runtime": 111}, "25": {"poster_path": "/kmbyO0XUHRHcMyxVSZAWDdrpxIu.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96900000, "overview": "Jarhead is a film about a US Marine Anthony Swofford\u2019s experience in the Gulf War. After putting up with an arduous boot camp, Swafford and his unit are sent to the Persian Gulf where they are earger to fight but are forced to stay back from the action. Meanwhile Swofford gets news of his girlfriend is cheating on him. Desperately he wants to kill someone and finally put his training to use.", "video": false, "id": 25, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Jarhead", "tagline": "Welcome to the suck.", "vote_count": 204, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4AIiITFKoM99NJbzxGkxYSWjTtw.jpg", "poster_path": "/dHiKGct4c6k0h4L9ftjPRhcR2cS.jpg", "id": 285564, "name": "Jarhead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0418763", "adult": false, "backdrop_path": "/shg7ZGAGVxhM9ZfOtV6bp93QZwt.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Neal Street Productions", "id": 1522}, {"name": "Motion Picture KAPPA Produktionsgesellschaft", "id": 19934}], "release_date": "2005-11-04", "popularity": 1.05432833340949, "original_title": "Jarhead", "budget": 70000000, "cast": [{"name": "Jamie Foxx", "character": "Staff Sgt. Sykes", "id": 134, "credit_id": "52fe4210c3a36847f8001103", "cast_id": 1, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Anthony Swofford", "id": 131, "credit_id": "52fe4210c3a36847f8001107", "cast_id": 2, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Scott MacDonald", "character": "D.I. Fitch", "id": 132, "credit_id": "52fe4210c3a36847f800110b", "cast_id": 3, "profile_path": "/8GPZZWgiGPgpOOz6BRqNhNZej5W.jpg", "order": 1}, {"name": "Lucas Black", "character": "Kruger", "id": 155, "credit_id": "52fe4210c3a36847f800114f", "cast_id": 15, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 3}, {"name": "Peter Sarsgaard", "character": "Alan Troy", "id": 133, "credit_id": "52fe4210c3a36847f800110f", "cast_id": 4, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 4}, {"name": "Laz Alonso", "character": "Ramon Escobar", "id": 10964, "credit_id": "52fe4210c3a36847f8001153", "cast_id": 16, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 5}, {"name": "Chris Cooper", "character": "Lt. Col. Kazinski", "id": 2955, "credit_id": "52fe4210c3a36847f8001157", "cast_id": 17, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 6}, {"name": "Brian Geraghty", "character": "Fergus O'Donnell", "id": 49271, "credit_id": "52fe4210c3a36847f800115b", "cast_id": 18, "profile_path": "/3risyyYIFDQaz0EHRVqNOCToaDe.jpg", "order": 7}, {"name": "Damion Poitier", "character": "Poitier", "id": 150194, "credit_id": "52fe4210c3a36847f800115f", "cast_id": 19, "profile_path": "/zBoq4SAauhVmbHSyWZXYXvA36Ky.jpg", "order": 8}, {"name": "John Krasinski", "character": "Corporal Harrigan", "id": 17697, "credit_id": "52fe4210c3a36847f8001163", "cast_id": 20, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 9}, {"name": "Jocko Sims", "character": "Julius", "id": 107939, "credit_id": "52fe4210c3a36847f8001167", "cast_id": 21, "profile_path": "/14jDiruPZn8euVRYt0D3pjqTF6C.jpg", "order": 10}, {"name": "Ming Lo", "character": "Bored Gunny", "id": 1226506, "credit_id": "52fe4210c3a36847f800116b", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Kevin Foster", "character": "Branded Marine", "id": 95698, "credit_id": "52fe4210c3a36847f800116f", "cast_id": 23, "profile_path": "/9YZigxSi9V4mdpzxvs6G1nVRPbC.jpg", "order": 12}, {"name": "Riad Galayini", "character": "Nurse", "id": 1291645, "credit_id": "52fe4210c3a36847f8001173", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Craig Coyne", "character": "Young Mr. Swofford", "id": 1172840, "credit_id": "52fe4210c3a36847f8001177", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Katherine Randolph", "character": "Young Mrs. Swofford", "id": 557545, "credit_id": "52fe4210c3a36847f800117b", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Honorine Bell", "character": "Swoff's Sister", "id": 1291646, "credit_id": "52fe4210c3a36847f800117f", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Dendrie Taylor", "character": "Mrs. Swofford", "id": 81462, "credit_id": "52fe4210c3a36847f8001183", "cast_id": 28, "profile_path": "/mGFSoz0U4wkGGrt8ZFeEXnLOYr6.jpg", "order": 17}, {"name": "James Morrison", "character": "Mr. Swofford", "id": 62003, "credit_id": "53262c0e925141143900245a", "cast_id": 29, "profile_path": "/1i72tqL3kSv4BbOvsu8CyDwkKJ0.jpg", "order": 18}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe4210c3a36847f8001115", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.3, "runtime": 125}, "122906": {"poster_path": "/fjy3OdcYqe4dq3Ypa3NLtLG2Kdk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The night after another unsatisfactory New Year party, Tim's father (Bill Nighy) tells his son that the men in his family have always had the ability to travel through time. Tim can't change history, but he can change what happens and has happened in his own life---so he decides to make his world a better place...by getting a girlfriend. Sadly, that turns out not to be as easy as you might think.", "video": false, "id": 122906, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "About Time", "tagline": "A new funny film about love. With a bit of time travel.", "vote_count": 549, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2194499", "adult": false, "backdrop_path": "/u6ydjtF1epBmGBGAPoa8SG5EnLm.jpg", "production_companies": [{"name": "Translux", "id": 14384}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-11-08", "popularity": 2.20599006273647, "original_title": "About Time", "budget": 0, "cast": [{"name": "Rachel McAdams", "character": "Mary", "id": 53714, "credit_id": "52fe4a87c3a368484e15883f", "cast_id": 5, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Bill Nighy", "character": "Dad", "id": 2440, "credit_id": "52fe4a87c3a368484e158843", "cast_id": 6, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 1}, {"name": "Domhnall Gleeson", "character": "Tim", "id": 93210, "credit_id": "52fe4a87c3a368484e158847", "cast_id": 7, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Harry", "id": 2441, "credit_id": "52fe4a87c3a368484e15884f", "cast_id": 9, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Margot Robbie", "character": "Charlotte", "id": 234352, "credit_id": "52fe4a87c3a368484e158853", "cast_id": 10, "profile_path": "/cdc4z3uOFUoM7VNq7FqLUVDalwf.jpg", "order": 4}, {"name": "Lindsay Duncan", "character": "Mum", "id": 30083, "credit_id": "52fe4a87c3a368484e158857", "cast_id": 11, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 5}, {"name": "Lee Asquith-Coe", "character": "Bin Man", "id": 531772, "credit_id": "52fe4a87c3a368484e15884b", "cast_id": 8, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 6}, {"name": "Vanessa Kirby", "character": "Joanna", "id": 556356, "credit_id": "52fe4a87c3a368484e15885b", "cast_id": 13, "profile_path": "/ndrtjCvIXEuHerMBOz8sLyxgIlc.jpg", "order": 7}, {"name": "Lisa Eichhorn", "character": "Mary's Mother, Jean", "id": 28950, "credit_id": "52fe4a87c3a368484e15885f", "cast_id": 14, "profile_path": "/bXHlVhxhpBUztRTxLPbDH97kNy5.jpg", "order": 8}, {"name": "Lydia Wilson", "character": "Kit Kat", "id": 1095524, "credit_id": "52fe4a87c3a368484e158887", "cast_id": 22, "profile_path": "/ndlya4VREXguyeZYLP7OB3HHjzu.jpg", "order": 9}, {"name": "Matthew C. Martino", "character": "Commuter", "id": 1186080, "credit_id": "52fe4a87c3a368484e15888b", "cast_id": 23, "profile_path": "/5wtp4SjBr3e6zvxIHrWHKKxWR1w.jpg", "order": 10}], "directors": [{"name": "Richard Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a368484e158829", "profile_path": "/uLjkovqtUtM4SckCFtrevZKKJNM.jpg", "id": 7018}], "vote_average": 7.6, "runtime": 123}, "28": {"poster_path": "/l8dn7rKbjP36PtHsViHGpzf5ey7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83471511, "overview": "At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \"does not exist, nor will it ever exist.\" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.", "video": false, "id": 28, "genres": [{"id": 10752, "name": "War"}], "title": "Apocalypse Now", "tagline": "This is the end...", "vote_count": 453, "homepage": "http://www.apocalypsenow.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "km", "name": ""}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0078788", "adult": false, "backdrop_path": "/k91Dag8AZbhjIJqrtf7F1bQnGPg.jpg", "production_companies": [{"name": "Zoetrope Studios", "id": 26663}], "release_date": "1979-08-15", "popularity": 1.30312860862308, "original_title": "Apocalypse Now", "budget": 31500000, "cast": [{"name": "Martin Sheen", "character": "Captain Benjamin L. Willard", "id": 8349, "credit_id": "52fe4210c3a36847f800135b", "cast_id": 29, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 0}, {"name": "Marlon Brando", "character": "Colonel Walter E. Kurtz", "id": 3084, "credit_id": "52fe4210c3a36847f800135f", "cast_id": 30, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 1}, {"name": "Robert Duvall", "character": "Lieutenant Colonel Bill Kilgore", "id": 3087, "credit_id": "52fe4210c3a36847f8001363", "cast_id": 31, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 2}, {"name": "Laurence Fishburne", "character": "Tyrone 'Clean' Miller", "id": 2975, "credit_id": "52fe4210c3a36847f8001367", "cast_id": 32, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 3}, {"name": "Sam Bottoms", "character": "Lance B. Johnson", "id": 8350, "credit_id": "52fe4210c3a36847f800136b", "cast_id": 33, "profile_path": "/4J8AQtnLV8OFIyTl3p0YnxZoPsi.jpg", "order": 4}, {"name": "Frederic Forrest", "character": "Jay 'Chef' Hicks", "id": 8351, "credit_id": "52fe4210c3a36847f800136f", "cast_id": 34, "profile_path": "/fCHsWrGcgfREM7e9POq6FCFGvR9.jpg", "order": 5}, {"name": "Albert Hall", "character": "Chief Phillips", "id": 8354, "credit_id": "52fe4210c3a36847f8001373", "cast_id": 35, "profile_path": "/yHGN2pIdBcBk19sAu0EchOxfYMY.jpg", "order": 6}, {"name": "Harrison Ford", "character": "Colonel Lucas", "id": 3, "credit_id": "52fe4210c3a36847f8001377", "cast_id": 36, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 7}, {"name": "Dennis Hopper", "character": "Photojournalist", "id": 2778, "credit_id": "52fe4210c3a36847f800137b", "cast_id": 38, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 8}, {"name": "G. D. Spradlin", "character": "General Corman", "id": 3173, "credit_id": "52fe4210c3a36847f800137f", "cast_id": 39, "profile_path": "/lyk0Fo343PJJ5gItBqGGl7oG112.jpg", "order": 9}, {"name": "Jerry Ziesmer", "character": "Jerry, Civilian", "id": 8346, "credit_id": "52fe4210c3a36847f8001383", "cast_id": 40, "profile_path": "/TCrODTVTktmyXk4PrD5fWvMJye.jpg", "order": 10}, {"name": "Francis Ford Coppola", "character": "Director (cameo)", "id": 1776, "credit_id": "52fe4210c3a36847f800138d", "cast_id": 42, "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "order": 11}, {"name": "Tom Mason", "character": "Supply Sergeant", "id": 80874, "credit_id": "52fe4210c3a36847f8001391", "cast_id": 43, "profile_path": "/lWPITFNNJOoJprOoatAgfVRV9pH.jpg", "order": 12}, {"name": "Scott Glenn", "character": "Lieutenant Richard M. Colby", "id": 349, "credit_id": "52fe4210c3a36847f8001395", "cast_id": 44, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 13}, {"name": "Colleen Camp", "character": "Miss May", "id": 13023, "credit_id": "52fe4211c3a36847f800139f", "cast_id": 46, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 14}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4210c3a36847f80012c7", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 7.4, "runtime": 153}, "9562": {"poster_path": "/A6tzqXzlUjCOZT035zYOLqfYFSr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19480739, "overview": "A group of archaeological students become trapped in the past when they go there to retrieve their professor. The group must survive in 14th century France long enough to be rescued.", "video": false, "id": 9562, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Timeline", "tagline": "In 6 hours they'll be history!", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0300556", "adult": false, "backdrop_path": "/6PIQKisHu0oIvNpOGNoUHgxEJ0.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "Donners' Company", "id": 431}, {"name": "Cobalt Media Group", "id": 18619}, {"name": "Artists Production Group (APG)", "id": 18620}], "release_date": "2003-11-26", "popularity": 1.31618319188983, "original_title": "Timeline", "budget": 80000000, "cast": [{"name": "Paul Walker", "character": "Chris Johnston", "id": 8167, "credit_id": "52fe450ac3a36847f80b8c55", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Frances O'Connor", "character": "Kate Ericson", "id": 1518, "credit_id": "52fe450ac3a36847f80b8c59", "cast_id": 2, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 1}, {"name": "Gerard Butler", "character": "Andre Marek", "id": 17276, "credit_id": "52fe450ac3a36847f80b8c5d", "cast_id": 3, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 2}, {"name": "Billy Connolly", "character": "Professor E.A. Johnston", "id": 9188, "credit_id": "52fe450ac3a36847f80b8c61", "cast_id": 4, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 3}, {"name": "David Thewlis", "character": "Robert Doniger", "id": 11207, "credit_id": "52fe450ac3a36847f80b8c65", "cast_id": 5, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 4}, {"name": "Anna Friel", "character": "Lady Claire", "id": 58016, "credit_id": "52fe450ac3a36847f80b8c69", "cast_id": 6, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 5}, {"name": "Neal McDonough", "character": "Frank Gordon", "id": 2203, "credit_id": "52fe450ac3a36847f80b8c6d", "cast_id": 7, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 6}, {"name": "Matt Craven", "character": "Steven Kramer", "id": 13525, "credit_id": "52fe450ac3a36847f80b8c71", "cast_id": 8, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 7}, {"name": "Ethan Embry", "character": "Josh Stern", "id": 58019, "credit_id": "52fe450ac3a36847f80b8c75", "cast_id": 9, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 8}, {"name": "Michael Sheen", "character": "Lord Oliver", "id": 3968, "credit_id": "52fe450ac3a36847f80b8c79", "cast_id": 10, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 9}, {"name": "Lambert Wilson", "character": "Lord Arnaut", "id": 2192, "credit_id": "52fe450ac3a36847f80b8c7d", "cast_id": 11, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 10}, {"name": "Marton Csokas", "character": "Sir William De Kere / William Decker", "id": 20982, "credit_id": "52fe450ac3a36847f80b8c81", "cast_id": 12, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 11}, {"name": "Rossif Sutherland", "character": "Fran\u00e7ois Dontelle", "id": 58014, "credit_id": "52fe450ac3a36847f80b8c85", "cast_id": 13, "profile_path": "/pKDCSFxZF4Fe8xLIFidaZQYmnNF.jpg", "order": 12}, {"name": "David La Haye", "character": "Arnaut's Deputy", "id": 58012, "credit_id": "52fe450ac3a36847f80b8c89", "cast_id": 15, "profile_path": "/8JQT0LMz3LMc4soF2uhTEfK7KMs.jpg", "order": 14}, {"name": "Steve Kahan", "character": "Baker", "id": 14328, "credit_id": "52fe450ac3a36847f80b8ce7", "cast_id": 32, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 15}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe450ac3a36847f80b8c8f", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 5.1, "runtime": 116}, "8224": {"poster_path": "/oEgBIcIJb1Z5sperKxE8Pb4tTr0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96618699, "overview": "A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.", "video": false, "id": 8224, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "8MM", "tagline": "You can't prepare for where the truth will take you.", "vote_count": 117, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bfiFGeaSaMRJLvDY8USyeoylnh2.jpg", "poster_path": "/AqSVDVjICt4CHqH3NIjuCbO8rFT.jpg", "id": 226833, "name": "8MM Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134273", "adult": false, "backdrop_path": "/7mg6NTzvqpMDHtatxA36jFhXvdT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-02-25", "popularity": 0.711558805327077, "original_title": "8MM", "budget": 40000000, "cast": [{"name": "Nicolas Cage", "character": "Tom Welles", "id": 2963, "credit_id": "52fe4498c3a36847f809f195", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Max California", "id": 73421, "credit_id": "52fe4498c3a36847f809f199", "cast_id": 4, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Eddie Poole", "id": 4691, "credit_id": "52fe4498c3a36847f809f19d", "cast_id": 5, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Chris Bauer", "character": "George Higgins", "id": 4445, "credit_id": "52fe4498c3a36847f809f1a1", "cast_id": 6, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 3}, {"name": "Anthony Heald", "character": "Daniel Longdale", "id": 16293, "credit_id": "52fe4498c3a36847f809f1a5", "cast_id": 7, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Dino Velvet", "id": 53, "credit_id": "52fe4498c3a36847f809f1a9", "cast_id": 8, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Catherine Keener", "character": "Amy Welles", "id": 2229, "credit_id": "52fe4498c3a36847f809f1ad", "cast_id": 9, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 6}, {"name": "Norman Reedus", "character": "Warren Anderson", "id": 4886, "credit_id": "52fe4498c3a36847f809f1b1", "cast_id": 10, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 7}, {"name": "Amy Morton", "character": "Janet Mathews", "id": 26930, "credit_id": "52fe4498c3a36847f809f1b5", "cast_id": 11, "profile_path": "/cf0V37Bw9BX2jlBCxrVETz0jkcl.jpg", "order": 8}, {"name": "Jenny Powell", "character": "Mary Ann Mathews", "id": 26919, "credit_id": "52fe4498c3a36847f809f1b9", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Claudia Aros", "character": "Miami Girlfriend", "id": 27003, "credit_id": "52fe4498c3a36847f809f1bd", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Mario Ernesto S\u00e1nchez", "character": "Taxi Driver", "id": 26651, "credit_id": "52fe4498c3a36847f809f1c1", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Suzy Nakamura", "character": "Computer Wizard", "id": 26998, "credit_id": "52fe4498c3a36847f809f1c5", "cast_id": 15, "profile_path": "/rymamRd9wzjZquxMBKWOkylD5wN.jpg", "order": 12}, {"name": "William Lawrence Mack", "character": "Larry", "id": 26972, "credit_id": "52fe4498c3a36847f809f1c9", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Myra Carter", "character": "Mrs. Christian", "id": 54159, "credit_id": "52fe4498c3a36847f809f1cd", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Torsten Voges", "character": "Stick", "id": 1238, "credit_id": "54dc86af92514101bf000136", "cast_id": 29, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 15}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a36847f809f18b", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.9, "runtime": 123}, "33": {"poster_path": "/9oPodyvCWyPMZJDjg29tBfFRwtG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159157447, "overview": "William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.", "video": false, "id": 33, "genres": [{"id": 37, "name": "Western"}], "title": "Unforgiven", "tagline": "", "vote_count": 298, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105695", "adult": false, "backdrop_path": "/nKYH8DaWjKE3RhEyaa0Ue01kPCp.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1992-08-07", "popularity": 1.6754713804049, "original_title": "Unforgiven", "budget": 14000000, "cast": [{"name": "Clint Eastwood", "character": "Bill Munny", "id": 190, "credit_id": "52fe4211c3a36847f8001447", "cast_id": 4, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Little Bill Daggett", "id": 193, "credit_id": "52fe4211c3a36847f800144b", "cast_id": 6, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Ned Logan", "id": 192, "credit_id": "52fe4211c3a36847f80014a5", "cast_id": 25, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Richard Harris", "character": "English Bob", "id": 194, "credit_id": "52fe4211c3a36847f800144f", "cast_id": 7, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 3}, {"name": "Jaimz Woolvett", "character": "The Schofield Kid", "id": 3710, "credit_id": "52fe4211c3a36847f8001459", "cast_id": 9, "profile_path": "/psrj817qm3RPBzF2VzPFgL8qdwq.jpg", "order": 4}, {"name": "Anna Thomson", "character": "Delilah Fitzgerald", "id": 3711, "credit_id": "52fe4211c3a36847f800145d", "cast_id": 10, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 5}, {"name": "Saul Rubinek", "character": "W.W. Beauchamp", "id": 3712, "credit_id": "52fe4211c3a36847f8001461", "cast_id": 11, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 6}, {"name": "Frances Fisher", "character": "Strawberry Alice", "id": 3713, "credit_id": "52fe4211c3a36847f8001465", "cast_id": 12, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 7}, {"name": "David Mucci", "character": "Quick Mike", "id": 3714, "credit_id": "52fe4211c3a36847f8001469", "cast_id": 13, "profile_path": "/qD1Acd4PngkCtUl2qmPAFdlyACM.jpg", "order": 8}, {"name": "Rob Campbell", "character": "Davey Bunting", "id": 2843, "credit_id": "52fe4211c3a36847f800146d", "cast_id": 14, "profile_path": "/hRJihsQgFfm86htdiM6xL4BpZE9.jpg", "order": 9}, {"name": "Anthony James", "character": "Skinny Dubois", "id": 3715, "credit_id": "52fe4211c3a36847f8001471", "cast_id": 15, "profile_path": "/IovpB0rm77GljLMLP5S3VW6AAi.jpg", "order": 10}, {"name": "Ron White", "character": "Clyde Ledbetter", "id": 1242148, "credit_id": "5468f5b4eaeb816b4f001312", "cast_id": 28, "profile_path": "/wwct4MqN4iEMJQk27qeMj4qMoUR.jpg", "order": 11}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f8001437", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.4, "runtime": 131}, "35": {"poster_path": "/eCytnEriVur3rT47NWfkgPXD9qs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 527068851, "overview": "After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.", "video": false, "id": 35, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Simpsons Movie", "tagline": "See our family. And feel better about yours.", "vote_count": 566, "homepage": "http://www.simpsonsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462538", "adult": false, "backdrop_path": "/4RaoQCwliLvbokgpFzMXvSznC0h.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gracie Films", "id": 18}], "release_date": "2007-07-27", "popularity": 1.042271596986, "original_title": "The Simpsons Movie", "budget": 75000000, "cast": [{"name": "Dan Castellaneta", "character": "Homer / Itchy / Barney / Grampa / Stage Manager / Krusty the Clown / Mayor Quimby / Mayor's Aide / Multi-Eyed Squirrel / Panicky Man / Sideshow Mel / Mr. Teeny / EPA Official / Kissing Cop / Bear / Boy on Phone / NSA Worker / Officer / Santa's Little Helper / Squeaky-Voiced Teen (voice)", "id": 198, "credit_id": "52fe4211c3a36847f8001525", "cast_id": 2, "profile_path": "/dmId1hAL2tluhrgVPChDabeoA0n.jpg", "order": 0}, {"name": "Julie Kavner", "character": "Marge Simpson / Selma / Patty (voice)", "id": 199, "credit_id": "52fe4211c3a36847f8001529", "cast_id": 3, "profile_path": "/AuhOCpsQwr09nBvTtaqArggLNd7.jpg", "order": 1}, {"name": "Nancy Cartwright", "character": "Bart Simpson / Maggie Simpson / Ralph / Nelson / Todd Flanders / TV Daughter / Woman on Phone (voice)", "id": 200, "credit_id": "52fe4211c3a36847f800152d", "cast_id": 4, "profile_path": "/wb8RZu3vw7gDZoRFWNNpsbznRWC.jpg", "order": 2}, {"name": "Yeardley Smith", "character": "Lisa Simpson (voice)", "id": 5586, "credit_id": "52fe4211c3a36847f8001531", "cast_id": 5, "profile_path": "/g2LYM8XqkFiPsupUgky6PNuIenL.jpg", "order": 3}, {"name": "Hank Azaria", "character": "Professor Frink / Comic Book Guy / Moe / Chief Wiggum / Lou / Carl / Cletus / Bumblebee Man / Male EPA Worker / Dome Depot Announcer / Kissing Cop / Carnival Barker / Counter Man / Apu / Drederick Tatum / Sea Captain / EPA Passenger / Robot / Dr. Nick / Wise Guy (voice)", "id": 5587, "credit_id": "52fe4211c3a36847f8001535", "cast_id": 10, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Harry Shearer", "character": "Scratchy / Mr. Burns / Rev. Lovejoy / Ned Flanders / Lenny / Skull / President Arnold Schwarzenegger / Kent Brockman / Principal Skinner / Dr. Hibbert / Smithers / Toll Booth Man / Guard / Otto / Kang (voice)", "id": 6008, "credit_id": "52fe4211c3a36847f8001539", "cast_id": 13, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 5}, {"name": "Kelsey Grammer", "character": "Sideshow Bob (voice)", "id": 7090, "credit_id": "52fe4211c3a36847f800153d", "cast_id": 15, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 6}, {"name": "Maile Flanagan", "character": "Colin (voice)", "id": 23211, "credit_id": "52fe4211c3a36847f8001541", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Pamela Hayden", "character": "Milhouse Van Houten / Jimbo Jones / Rod Flanders (voice)", "id": 6009, "credit_id": "52fe4211c3a36847f8001545", "cast_id": 17, "profile_path": "/ugtzqXDJcI5SomOb3eNKVULbgqE.jpg", "order": 8}, {"name": "Marcia Wallace", "character": "Mrs. Krabappel (voice)", "id": 6036, "credit_id": "52fe4211c3a36847f8001549", "cast_id": 20, "profile_path": "/y0l14sNEvc1qaoQwwb5UGQuwOVM.jpg", "order": 9}, {"name": "Joe Mantegna", "character": "Fat Tony (voice)", "id": 3266, "credit_id": "52fe4211c3a36847f800154d", "cast_id": 21, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 10}, {"name": "Tom Hanks", "character": "Himself (voice)", "id": 31, "credit_id": "52fe4211c3a36847f8001551", "cast_id": 22, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 11}, {"name": "Billie Joe Armstrong", "character": "Green Day (voice)", "id": 95866, "credit_id": "52fe4211c3a36847f800160f", "cast_id": 60, "profile_path": "/pSHyO9ykNdjq1tSOAp0ukikPlR9.jpg", "order": 12}, {"name": "Tre Cool", "character": "Green Day (voice)", "id": 95868, "credit_id": "52fe4211c3a36847f8001613", "cast_id": 61, "profile_path": null, "order": 13}, {"name": "Tress MacNeille", "character": "Sweet Old Lady / Colin / Mrs. Skinner / Nelson's Mother / Pig / Cat Lady / Female EPA Worker / G.P.S. Woman / Cookie Kwan / Lindsey Naegle / TV Son / Medicine Woman / Girl on Phone (voice)", "id": 34983, "credit_id": "52fe4211c3a36847f8001617", "cast_id": 62, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 14}, {"name": "Albert Brooks", "character": "Russ Cargill (voice)", "id": 13, "credit_id": "52fe4211c3a36847f800161b", "cast_id": 63, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 15}, {"name": "Russi Taylor", "character": "Martin (voice)", "id": 6035, "credit_id": "52fe4211c3a36847f800161f", "cast_id": 64, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 16}, {"name": "Karl Wiedergott", "character": "Man / EPA Driver (voice)", "id": 156910, "credit_id": "52fe4211c3a36847f8001623", "cast_id": 65, "profile_path": null, "order": 17}, {"name": "Maggie Roswell", "character": "Helen Lovejoy (voice)", "id": 6007, "credit_id": "52fe4211c3a36847f8001627", "cast_id": 66, "profile_path": null, "order": 18}, {"name": "Philip Rosenthal", "character": "TV Dad (voice)", "id": 179632, "credit_id": "52fe4211c3a36847f800162b", "cast_id": 67, "profile_path": "/5ZTtVJ1tKI6OUamavdiohpyg3w9.jpg", "order": 19}], "directors": [{"name": "David Silverman", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f8001521", "profile_path": "/oatUUj2riEaUSoncMv1Ulheffog.jpg", "id": 197}], "vote_average": 6.8, "runtime": 87}, "122917": {"poster_path": "/qrFwjJ5nvFnpBCmXLI4YoeHJNBH.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 955119788, "overview": "Mere seconds after the events of \"Desolation\", Bilbo and Company continue to claim a mountain of treasure that was guarded long ago: But with Gandalf the Grey also facing some formidable foes of his own, the Hobbit is outmatched when the brutal army of orcs led by Azog the Defiler returns. But with other armies such as the elves and the men of Lake-Town, which are unsure to be trusted, are put to the ultimate test when Smaug's wrath, Azog's sheer strength, and Sauron's force of complete ends attack. All in all, the trusted armies have two choices: unite or die. But even worse, Bilbo gets put on a knife edge and finds himself fighting with Hobbit warfare with all of his might for his dwarf-friends, as the hope for Middle-Earth is all put in Bilbo's hands. The one \"precious\" thing to end it all.", "video": false, "id": 122917, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Hobbit: The Battle of the Five Armies", "tagline": "Witness the defining chapter of the Middle-Earth saga", "vote_count": 1229, "homepage": "http://www.thehobbit.com/", "belongs_to_collection": {"backdrop_path": "/7wO7MSnP5UcwR2cTHdJFF1vP4Ie.jpg", "poster_path": "/hQghXOjSS2xfzx9XnMyZqt8brCF.jpg", "id": 121938, "name": "The Hobbit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2310332", "adult": false, "backdrop_path": "/qhH3GyIfAnGv1pjdV3mw03qAilg.jpg", "production_companies": [{"name": "3Foot7", "id": 7413}, {"name": "WingNut Films", "id": 11}, {"name": "New Line Cinema", "id": 12}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}], "release_date": "2014-12-17", "popularity": 31.890486423754, "original_title": "The Hobbit: The Battle of the Five Armies", "budget": 250000000, "cast": [{"name": "Martin Freeman", "character": "Bilbo Baggins", "id": 7060, "credit_id": "52fe4a87c3a368484e158b93", "cast_id": 10, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf", "id": 1327, "credit_id": "52fe4a87c3a368484e158bb7", "cast_id": 20, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Richard Armitage", "character": "Thorin Oakenshield", "id": 30315, "credit_id": "52fe4a87c3a368484e158bab", "cast_id": 17, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 2}, {"name": "Ken Stott", "character": "Balin", "id": 25136, "credit_id": "52fe4a88c3a368484e158bdf", "cast_id": 30, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 3}, {"name": "Graham McTavish", "character": "Dwalin", "id": 95047, "credit_id": "52fe4a87c3a368484e158bd3", "cast_id": 27, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 4}, {"name": "William Kircher", "character": "Bifur", "id": 67123, "credit_id": "52fe4a88c3a368484e158bf3", "cast_id": 35, "profile_path": "/pgSkxH8LeJhNWKwG3D5690ZTLbs.jpg", "order": 5}, {"name": "James Nesbitt", "character": "Bofur", "id": 34715, "credit_id": "52fe4a87c3a368484e158bcf", "cast_id": 26, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 6}, {"name": "Stephen Hunter", "character": "Bombur", "id": 1193834, "credit_id": "52fe4a88c3a368484e158bf7", "cast_id": 36, "profile_path": "/xGKavu5mcGBOQMSawk9voZeEzN6.jpg", "order": 7}, {"name": "Dean O'Gorman", "character": "Fili", "id": 152566, "credit_id": "52fe4a87c3a368484e158b73", "cast_id": 4, "profile_path": "/lSXxMaASqm9TfnKaDNaxolEOW3A.jpg", "order": 8}, {"name": "Aidan Turner", "character": "Kili", "id": 207558, "credit_id": "52fe4a87c3a368484e158bbb", "cast_id": 21, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 9}, {"name": "John Callen", "character": "Ori", "id": 534336, "credit_id": "52fe4a88c3a368484e158bff", "cast_id": 38, "profile_path": "/k6JoHrkyGMH0b13yZxtLKtW1npz.jpg", "order": 10}, {"name": "Peter Hambleton", "character": "Gloin", "id": 1193832, "credit_id": "52fe4a88c3a368484e158be7", "cast_id": 32, "profile_path": "/jcsOAVVLyAnJpnZRAWoGtuI4nlk.jpg", "order": 11}, {"name": "Jed Brophy", "character": "Nori", "id": 173451, "credit_id": "52fe4a88c3a368484e158bef", "cast_id": 34, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 12}, {"name": "Mark Hadlow", "character": "Dori", "id": 81877, "credit_id": "52fe4a88c3a368484e158bfb", "cast_id": 37, "profile_path": "/qNBpe4BKgKrLF6yZrCtCjFMRFJv.jpg", "order": 13}, {"name": "Adam Brown", "character": "Ori", "id": 1193833, "credit_id": "52fe4a88c3a368484e158beb", "cast_id": 33, "profile_path": "/54iHvIA8ZTNfvKpb2ZxRY73A5MZ.jpg", "order": 14}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe4a87c3a368484e158b9f", "cast_id": 14, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 15}, {"name": "Evangeline Lilly", "character": "Tauriel", "id": 19034, "credit_id": "52fe4a88c3a368484e158c0b", "cast_id": 41, "profile_path": "/lsXb0Qt9WyYDJUdON26vmtKVkE6.jpg", "order": 16}, {"name": "Lee Pace", "character": "Thranduil", "id": 72095, "credit_id": "52fe4a87c3a368484e158b8f", "cast_id": 9, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 17}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe4a87c3a368484e158ba3", "cast_id": 15, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 18}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe4a87c3a368484e158baf", "cast_id": 18, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 19}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe4a87c3a368484e158bbf", "cast_id": 22, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 20}, {"name": "Ian Holm", "character": "Old Bilbo", "id": 65, "credit_id": "52fe4a87c3a368484e158bcb", "cast_id": 25, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 21}, {"name": "Mikael Persbrandt", "character": "Beorn", "id": 52398, "credit_id": "52fe4a88c3a368484e158be3", "cast_id": 31, "profile_path": "/yr557miX4IwMLqPfLQs3kWQZTMq.jpg", "order": 22}, {"name": "Sylvester McCoy", "character": "Radagast", "id": 80112, "credit_id": "52fe4a88c3a368484e158bdb", "cast_id": 29, "profile_path": "/hgM7jEkkwI0HHx3K44UE48gBbfa.jpg", "order": 23}, {"name": "Luke Evans", "character": "Bard", "id": 114019, "credit_id": "52fe4a87c3a368484e158b9b", "cast_id": 13, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 24}, {"name": "Stephen Fry", "character": "Master of Laketown", "id": 11275, "credit_id": "5507081c9251411db4002d9b", "cast_id": 58, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 25}, {"name": "John Bell", "character": "Bain", "id": 126667, "credit_id": "52fe4a87c3a368484e158b6f", "cast_id": 3, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 26}, {"name": "Ryan Gage", "character": "Alfrid", "id": 60349, "credit_id": "52fe4a88c3a368484e158c03", "cast_id": 39, "profile_path": "/fFn1u2WnYuRMBuCxxW661ppttsk.jpg", "order": 27}, {"name": "Peggy Nesbitt", "character": "Sigrid", "id": 1359824, "credit_id": "55070872c3a36862e500488c", "cast_id": 59, "profile_path": "/ArwjGFXBsUvLxMvI1VHc0eCkUys.jpg", "order": 28}, {"name": "Mary Nesbitt", "character": "Tilda", "id": 1359823, "credit_id": "550708b8c3a3683d78000b5b", "cast_id": 60, "profile_path": "/vgiEo4KYAIoLWECsVBWebRBnwnr.jpg", "order": 29}, {"name": "Manu Bennett", "character": "Azog", "id": 41782, "credit_id": "52fe4a87c3a368484e158bb3", "cast_id": 19, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 30}, {"name": "John Tui", "character": "Bolg", "id": 205406, "credit_id": "55070921c3a368262e004994", "cast_id": 61, "profile_path": "/7ZBf1x5SFm8iFiKG5trd5VaQCIO.jpg", "order": 31}, {"name": "Billy Connolly", "character": "Dain", "id": 9188, "credit_id": "52fe4a87c3a368484e158bc3", "cast_id": 23, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 32}, {"name": "Benedict Cumberbatch", "character": "Smaug / Necromancer (voice)", "id": 71580, "credit_id": "52fe4a87c3a368484e158b97", "cast_id": 11, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 33}, {"name": "Kelly Kilgour", "character": "Soury", "id": 986734, "credit_id": "55070b4c92514174b6004612", "cast_id": 62, "profile_path": "/43zuUGlaHIOMak260qMH6wUVkb2.jpg", "order": 34}, {"name": "Sarah Peirse", "character": "Hilda Bianca", "id": 15092, "credit_id": "55070b7192514174b6004617", "cast_id": 63, "profile_path": "/dILxeuQbDxtSxMCL863X4qum29X.jpg", "order": 35}, {"name": "Nick Blake", "character": "Percy", "id": 240024, "credit_id": "55070bb5c3a36862e9004f2d", "cast_id": 64, "profile_path": "/7rtqlDb4WnqvL069OA5yZx5yOS8.jpg", "order": 36}, {"name": "Simon London", "character": "Feren", "id": 1440652, "credit_id": "55070c77c3a36862e9004f40", "cast_id": 65, "profile_path": "/nlUl5QPRQal4Q58bI9As9l34egx.jpg", "order": 37}, {"name": "Conan Stevens", "character": "Keeper of the Dungeons", "id": 127453, "credit_id": "52fe4a87c3a368484e158bd7", "cast_id": 28, "profile_path": "/8mlrCTSXDInF15w6CO4IYgbPKg7.jpg", "order": 38}, {"name": "Elijah Wood", "character": "Frodo", "id": 109, "credit_id": "52fe4a87c3a368484e158ba7", "cast_id": 16, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 39}, {"name": "Bret McKenzie", "character": "Lindir", "id": 105584, "credit_id": "52fe4a87c3a368484e158bc7", "cast_id": 24, "profile_path": "/tEP4b5bTpSxJUHOYItg5xrZh43F.jpg", "order": 40}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a368484e158b65", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.3, "runtime": 144}, "38": {"poster_path": "/gutwXkVChJkpIrclokNESybj0GC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72000000, "overview": "A man, Joel Barish, heartbroken that his girlfriend Clementine underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realizes that he still loves her, and may be too late to correct his mistake.", "video": false, "id": 38, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Eternal Sunshine of the Spotless Mind", "tagline": "I already forget how I used to feel about you.", "vote_count": 875, "homepage": "http://www.eternalsunshine.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338013", "adult": false, "backdrop_path": "/1dXTsaFxHoF9cas08UjAqE8NqOW.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Anonymous Content", "id": 10039}, {"name": "This Is That Productions", "id": 10059}], "release_date": "2004-03-19", "popularity": 1.29747481538596, "original_title": "Eternal Sunshine of the Spotless Mind", "budget": 20000000, "cast": [{"name": "Jim Carrey", "character": "Joel Barish", "id": 206, "credit_id": "52fe4211c3a36847f800167f", "cast_id": 5, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Clementine Kruczynski", "id": 204, "credit_id": "52fe4211c3a36847f8001673", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Patrick", "id": 109, "credit_id": "52fe4211c3a36847f8001677", "cast_id": 3, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Stan", "id": 103, "credit_id": "52fe4211c3a36847f800167b", "cast_id": 4, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Kirsten Dunst", "character": "Mary", "id": 205, "credit_id": "52fe4211c3a36847f8001683", "cast_id": 6, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "Dr. Howard Mierzwiak", "id": 207, "credit_id": "52fe4211c3a36847f8001687", "cast_id": 7, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "Ryan Whitney", "character": "Young Joel", "id": 208, "credit_id": "52fe4211c3a36847f800168b", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Jane Adams", "character": "Carrie", "id": 209, "credit_id": "52fe4211c3a36847f800168f", "cast_id": 9, "profile_path": "/HbQfL01xmV1psnh0WvldIBzDg3.jpg", "order": 7}, {"name": "Debbon Ayer", "character": "Joel's mother", "id": 211, "credit_id": "52fe4211c3a36847f8001693", "cast_id": 10, "profile_path": "/uWqRVvIotKf6MOnkW0qf2AcoVNq.jpg", "order": 8}, {"name": "David Cross", "character": "Rob", "id": 212, "credit_id": "52fe4211c3a36847f8001697", "cast_id": 11, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 9}, {"name": "Gerry Robert Byrne", "character": "Train Conducter", "id": 213, "credit_id": "52fe4211c3a36847f800169b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Brian Price", "character": "Young Bully", "id": 214, "credit_id": "52fe4211c3a36847f800169f", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Josh Flitter", "character": "Young Bully", "id": 216, "credit_id": "52fe4211c3a36847f80016a3", "cast_id": 14, "profile_path": "/6RCA8tDWBxIVk9N3IqUjJEAzYGv.jpg", "order": 12}, {"name": "Paul Litowsky", "character": "Young Bully", "id": 217, "credit_id": "52fe4211c3a36847f80016a7", "cast_id": 15, "profile_path": "/dMcbqtmt6hPbGr6wiHpuaFziJmP.jpg", "order": 13}, {"name": "Lola Daehler", "character": "Young Clementine", "id": 220, "credit_id": "52fe4211c3a36847f80016ab", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Amir Ali Said", "character": "Young Bully", "id": 210, "credit_id": "52fe4211c3a36847f80016af", "cast_id": 18, "profile_path": "/pRMk72kpTkYaDEjZKcEzUB9Jx0d.jpg", "order": 15}, {"name": "Deirdre O'Connell", "character": "Hollis", "id": 77013, "credit_id": "52fe4211c3a36847f80016ed", "cast_id": 29, "profile_path": "/1dPJbDo3ghv7eTqNSeiTCWBwnWz.jpg", "order": 16}, {"name": "Lauren Adler", "character": "Rollerblader", "id": 221, "credit_id": "52fe4211c3a36847f80016b3", "cast_id": 19, "profile_path": null, "order": 17}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f800166f", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 7.6, "runtime": 108}, "46429": {"poster_path": "/1FKOhUUdkXlh7g9jiU0jl7suP9p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a nun broke her covenant with God to save the life of Aman, her unborn son, he was cursed for life. As an adult, Aman (Snipes) has killed those who have crossed him. But his curse brings his victims back to life, and as the undead, they pursue him endlessly for revenge. Forever suffering this curse, Aman enlists Fabulos (Smith), a young gunman, to fight by his side against his undead victims.", "video": false, "id": 46429, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 37, "name": "Western"}], "title": "Gallowwalkers", "tagline": "Live by the gun. Die by the gun. Come back for more.", "vote_count": 81, "homepage": "http://www.gallowwalker.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0829176", "adult": false, "backdrop_path": "/uih89zQNhmywCQw8a61nZpoHGPL.jpg", "production_companies": [{"name": "Boundless Pictures", "id": 15948}], "release_date": "2013-08-06", "popularity": 0.409674557446708, "original_title": "Gallowwalkers", "budget": 17000000, "cast": [{"name": "Wesley Snipes", "character": "Aman", "id": 10814, "credit_id": "52fe46f6c3a36847f811c22f", "cast_id": 1, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Riley Smith", "character": "Fabulos", "id": 67850, "credit_id": "52fe46f6c3a36847f811c233", "cast_id": 2, "profile_path": "/pef2GeUoMY1ECORr0n3ev6EO6m2.jpg", "order": 1}, {"name": "Tanit Phoenix", "character": "Angel", "id": 37769, "credit_id": "52fe46f6c3a36847f811c237", "cast_id": 3, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 2}, {"name": "Simona Brhlikova", "character": "Kisscut", "id": 136136, "credit_id": "52fe46f6c3a36847f811c23b", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Steven Elder", "character": "Apollo Jones", "id": 80371, "credit_id": "52fe46f6c3a36847f811c23f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jenny Gago", "character": "Mistress", "id": 129872, "credit_id": "52fe46f6c3a36847f811c247", "cast_id": 8, "profile_path": "/pflr8vyv1CF9024D8cnUCZpZfwb.jpg", "order": 7}, {"name": "Kevin Howarth", "character": "Kansa", "id": 92996, "credit_id": "52fe46f6c3a36847f811c24b", "cast_id": 9, "profile_path": "/lOP0DxOBXhvh9KC5Yba5X2L4UJS.jpg", "order": 8}, {"name": "Alyssa Pridham", "character": "Sueno", "id": 136137, "credit_id": "52fe46f6c3a36847f811c24f", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Alex Avant", "character": "Forty Bold", "id": 136138, "credit_id": "52fe46f6c3a36847f811c253", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Hector Hank", "character": "Hool", "id": 136139, "credit_id": "52fe46f6c3a36847f811c257", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Jack Bowyer", "character": "Bubis", "id": 136140, "credit_id": "52fe46f6c3a36847f811c25b", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Patrick Bergin", "character": "Marshall Gaza", "id": 29459, "credit_id": "52fe46f6c3a36847f811c271", "cast_id": 17, "profile_path": "/wmwtMCZsFTlckrsCpuz0jtuWu35.jpg", "order": 13}], "directors": [{"name": "Andrew Goth", "department": "Directing", "job": "Director", "credit_id": "52fe46f6c3a36847f811c261", "profile_path": null, "id": 136141}], "vote_average": 4.2, "runtime": 90}, "98357": {"poster_path": "/pYDj2b15p4YdNz88XvO7QmBoHgD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19701164, "overview": "In a broken city rife with injustice, ex-cop Billy Taggart (Mark Wahlberg) seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor (Russell Crowe). Billy's relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force - and the mayor's worst nightmare.", "video": false, "id": 98357, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Broken City", "tagline": "Proof Can Be a Powerful Weapon.", "vote_count": 295, "homepage": "http://www.brokencitymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1235522", "adult": false, "backdrop_path": "/5VsPAeiXGy7PhvYlbQFPO2FO3H4.jpg", "production_companies": [{"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Inferno International", "id": 7415}, {"name": "Regency Enterprises", "id": 508}, {"name": "Black Bear Pictures", "id": 22146}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Closest to the Hole Productions", "id": 8537}, {"name": "Leverage Communications", "id": 25790}, {"name": "Envision Entertainment Corporation", "id": 11030}], "release_date": "2013-01-18", "popularity": 0.489398387059845, "original_title": "Broken City", "budget": 56000000, "cast": [{"name": "Mark Wahlberg", "character": "Billy Taggart", "id": 13240, "credit_id": "52fe4a0f9251416c750dc4dd", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Nicholas Hostetler", "id": 934, "credit_id": "52fe4a0f9251416c750dc4e1", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Cathleen Hostetler", "id": 1922, "credit_id": "52fe4a0f9251416c750dc4e5", "cast_id": 5, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "Jeffrey Wright", "character": "Carl Fairbanks", "id": 2954, "credit_id": "52fe4a0f9251416c750dc4ef", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 3}, {"name": "Barry Pepper", "character": "Jack Valliant", "id": 12834, "credit_id": "52fe4a0f9251416c750dc4f3", "cast_id": 8, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 4}, {"name": "Alona Tal", "character": "Katy Bradshaw", "id": 203096, "credit_id": "52fe4a0f9251416c750dc4f7", "cast_id": 9, "profile_path": "/k32JlDCKKItwaxqJn6qA6bbZE7H.jpg", "order": 5}, {"name": "Natalie Martinez", "character": "Natalie Barrow", "id": 76511, "credit_id": "52fe4a0f9251416c750dc4fb", "cast_id": 10, "profile_path": "/9F8hCTTuDfPn5DPjsSuwxaJVwT4.jpg", "order": 6}, {"name": "Michael Beach", "character": "Tony Jansen", "id": 87118, "credit_id": "52fe4a0f9251416c750dc4ff", "cast_id": 11, "profile_path": "/lOlWhURNKyZHn71dvq7qC7fiwN6.jpg", "order": 7}, {"name": "Kyle Chandler", "character": "Paul Andrews", "id": 3497, "credit_id": "52fe4a0f9251416c750dc503", "cast_id": 12, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 8}, {"name": "James Ransone", "character": "Todd Lancaster", "id": 5296, "credit_id": "52fe4a0f9251416c750dc507", "cast_id": 13, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 9}, {"name": "Griffin Dunne", "character": "Sam Lancaster", "id": 2171, "credit_id": "52fe4a0f9251416c750dc50b", "cast_id": 14, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 10}, {"name": "Britney Theriot", "character": "Valerie", "id": 1141737, "credit_id": "52fe4a0f9251416c750dc50f", "cast_id": 15, "profile_path": "/6LGLryrGdvwJcnBiUpea98YOZOY.jpg", "order": 11}, {"name": "Odessa Sykes", "character": "Secretary", "id": 586270, "credit_id": "52fe4a0f9251416c750dc513", "cast_id": 16, "profile_path": "/oxuXS981jmkUbaqog7UmKLVgmVL.jpg", "order": 12}, {"name": "Luis Tolentino", "character": "Mikey Tavarez", "id": 1273242, "credit_id": "52fe4a0f9251416c750dc517", "cast_id": 17, "profile_path": "/2oTbyi1HoSMKUEuJSYTIivyC4Hy.jpg", "order": 13}, {"name": "Tony Bentley", "character": "Judge", "id": 120253, "credit_id": "52fe4a0f9251416c750dc51b", "cast_id": 18, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 14}, {"name": "Andrea Frankle", "character": "Prosecutor", "id": 946356, "credit_id": "52fe4a0f9251416c750dc51f", "cast_id": 19, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 15}, {"name": "William Ragsdale", "character": "Mr. Davies", "id": 31467, "credit_id": "52fe4a0f9251416c750dc523", "cast_id": 20, "profile_path": "/njtQMv0vm9uNzSdVTqjYTu1TzNd.jpg", "order": 16}, {"name": "Chance Kelly", "character": "Murdock", "id": 17194, "credit_id": "52fe4a0f9251416c750dc587", "cast_id": 37, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 17}, {"name": "Justin Chambers", "character": "Ryan Blake", "id": 20746, "credit_id": "53387e4ac3a3680e9f003e9f", "cast_id": 38, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 18}, {"name": "Ric Reitz", "character": "Mitch Rappaport", "id": 118595, "credit_id": "53a807350e0a26143f005bbd", "cast_id": 52, "profile_path": "/oxskVXgWJ8EkbCxuuF7OeHPxeaA.jpg", "order": 19}, {"name": "Lydia Hull", "character": "Mitch Rapapport's Wife", "id": 1042684, "credit_id": "53a807620e0a261432005904", "cast_id": 53, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 20}], "directors": [{"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4a0f9251416c750dc4d3", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}], "vote_average": 5.7, "runtime": 109}, "55": {"poster_path": "/8gEXmIzw1tDnBfOaCFPimkNIkmm.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 21000000, "overview": "Three interconnected stories about the different strata of life in Mexico City all resolve with a fatal car accident. Octavio is trying to raise enough money to run away with his sister-in-law, and decides to enter his dog Cofi into the world of dogfighting. After a dogfight goes bad, Octavio flees in his car, running a red light and causing the accident. Daniel and Valeria's new-found bliss is prematurely ended when she loses her leg in the accident. El Chivo is a homeless man who cares for stray dogs and is there to witness the collision. Amores Perros is the first film in I\u00f1\u00e1rritu's \"Death Trilogy\".", "video": false, "id": 55, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Love's a Bitch", "tagline": "Love. Betrayal. Death.", "vote_count": 113, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0245712", "adult": false, "backdrop_path": "/rGQ5S7T4u1VHRx9yZ11ff8sz2TT.jpg", "production_companies": [{"name": "Altavista Films", "id": 5084}, {"name": "Zeta Film", "id": 11230}], "release_date": "2000-03-14", "popularity": 0.45696492894152, "original_title": "Amores perros", "budget": 2000000, "cast": [{"name": "Gael Garc\u00eda Bernal", "character": "Octavio", "id": 258, "credit_id": "52fe4211c3a36847f8001741", "cast_id": 2, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 0}, {"name": "Vanessa Bauche", "character": "Susana", "id": 259, "credit_id": "52fe4211c3a36847f8001745", "cast_id": 3, "profile_path": "/uO2cH3HN7avXrW5pJw0MqvNvuGd.jpg", "order": 1}, {"name": "Goya Toledo", "character": "Valeria", "id": 261, "credit_id": "52fe4211c3a36847f8001749", "cast_id": 4, "profile_path": "/rskTnamfwea5xhtEelpRlqo1tCD.jpg", "order": 2}, {"name": "Alvaro Guerrero", "character": "Daniel", "id": 262, "credit_id": "52fe4211c3a36847f800174d", "cast_id": 5, "profile_path": "/d2k2Z0XgSIkBJxAuedS5yOF9O1U.jpg", "order": 3}, {"name": "Emilio Echevarr\u00eda", "character": "El Chivo", "id": 263, "credit_id": "52fe4211c3a36847f8001751", "cast_id": 6, "profile_path": "/iGgExtFoyuIAmll19gEmorWQAPX.jpg", "order": 4}, {"name": "Jorge Salinas", "character": "Luis", "id": 264, "credit_id": "52fe4211c3a36847f8001755", "cast_id": 7, "profile_path": "/jE1rqg8ZvYC0q6oEjCOYCvLrXLt.jpg", "order": 5}, {"name": "Rodrigo Murray", "character": "Gustavo", "id": 265, "credit_id": "52fe4211c3a36847f8001759", "cast_id": 8, "profile_path": "/qNUDwOV5TiEcKnugCBMofIIhgvV.jpg", "order": 6}, {"name": "Humberto Busto", "character": "Jorge", "id": 266, "credit_id": "52fe4211c3a36847f800175d", "cast_id": 9, "profile_path": "/u9Y1oxHrkj6J69HDTWPCgtMcIrp.jpg", "order": 7}, {"name": "Gerardo Campbell", "character": "Mauricio", "id": 267, "credit_id": "52fe4211c3a36847f8001761", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Rosa Mar\u00eda Bianchi", "character": "T\u00eda Luisa", "id": 268, "credit_id": "52fe4211c3a36847f8001765", "cast_id": 11, "profile_path": "/qZkZhM3fa0IH5qgMOArHtZ0K6pH.jpg", "order": 9}, {"name": "Dunia Sald\u00edvar", "character": "Mama Susana", "id": 269, "credit_id": "52fe4211c3a36847f8001769", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Adriana Barraza", "character": "Mama Octavio", "id": 270, "credit_id": "52fe4211c3a36847f800176d", "cast_id": 13, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 11}, {"name": "Jos\u00e9 Sefami", "character": "Leonardo", "id": 271, "credit_id": "52fe4211c3a36847f8001771", "cast_id": 14, "profile_path": "/3HBwhHXeCBOkf4Cx0jO5MEOmaf6.jpg", "order": 12}, {"name": "Lourdes Echevarr\u00eda", "character": "Maru", "id": 272, "credit_id": "52fe4211c3a36847f8001775", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Marco P\u00e9rez", "character": "Ramiro", "id": 260, "credit_id": "52fe4211c3a36847f80017a9", "cast_id": 24, "profile_path": "/348xOvXxkEiKXa5PMSWgBBzkHyw.jpg", "order": 14}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f800173d", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 7.5, "runtime": 154}, "58": {"poster_path": "/iwvyZBRD7qfDQ8ylRmf5NbLC5Oi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1065659812, "overview": "The high-seas adventures of happy-go-lucky troublemaker Captain Jack Sparrow, young Will Turner and headstrong beauty Elizabeth Swann continues as Sparrow works his way out of a blood debt with the ghostly Davey Jones, he also attempts to avoid eternal damnation.", "video": false, "id": 58, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: Dead Man's Chest", "tagline": "Jack is back!", "vote_count": 1981, "homepage": "http://disney.go.com/disneypictures/pirates/", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0383574", "adult": false, "backdrop_path": "/hdHgIcljPHli4xaJGt0INz8Gn3J.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Second Mate Productions", "id": 19936}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-07-07", "popularity": 1.58940686733895, "original_title": "Pirates of the Caribbean: Dead Man's Chest", "budget": 200000000, "cast": [{"name": "Johnny Depp", "character": "Captain Jack Sparrow", "id": 85, "credit_id": "52fe4212c3a36847f80018c3", "cast_id": 37, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Will Turner", "id": 114, "credit_id": "52fe4211c3a36847f8001823", "cast_id": 3, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Elizabeth Swann", "id": 116, "credit_id": "52fe4211c3a36847f800181f", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Davy Jones", "id": 2440, "credit_id": "52fe4211c3a36847f8001831", "cast_id": 6, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Jack Davenport", "character": "James Norrington", "id": 1709, "credit_id": "52fe4211c3a36847f8001827", "cast_id": 4, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 4}, {"name": "Stellan Skarsg\u00e5rd", "character": "Bootstrap Bill", "id": 1640, "credit_id": "52fe4211c3a36847f8001835", "cast_id": 7, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 5}, {"name": "Tom Hollander", "character": "Lord Beckett", "id": 2441, "credit_id": "52fe4211c3a36847f8001839", "cast_id": 8, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 6}, {"name": "Jonathan Pryce", "character": "Governor Weatherby Swann", "id": 378, "credit_id": "52fe4212c3a36847f80018bf", "cast_id": 36, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 7}, {"name": "Naomie Harris", "character": "Tia Dalma", "id": 2038, "credit_id": "52fe4211c3a36847f800183d", "cast_id": 9, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 8}, {"name": "Geoffrey Rush", "character": "Captain Barbossa", "id": 118, "credit_id": "52fe4212c3a36847f800189b", "cast_id": 26, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 9}, {"name": "Kevin McNally", "character": "Joshamee Gibbs", "id": 2449, "credit_id": "52fe4212c3a36847f800189f", "cast_id": 27, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 10}, {"name": "Lee Arenberg", "character": "Pintel", "id": 1710, "credit_id": "52fe4212c3a36847f80018a3", "cast_id": 29, "profile_path": "/ziQH86o2BInPEUF7VW0gYte35Tw.jpg", "order": 11}, {"name": "Mackenzie Crook", "character": "Ragetti", "id": 1711, "credit_id": "52fe4212c3a36847f80018a7", "cast_id": 30, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 12}, {"name": "David Bailie", "character": "Cotton", "id": 1715, "credit_id": "52fe4212c3a36847f80018ab", "cast_id": 31, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 13}, {"name": "Lauren Maher", "character": "Scarlet", "id": 2450, "credit_id": "52fe4212c3a36847f80018af", "cast_id": 32, "profile_path": "/6lOXL14xydRIplYqVv6KBdNs9MG.jpg", "order": 14}, {"name": "Alex Norton", "character": "Captain Bellamy", "id": 2451, "credit_id": "52fe4212c3a36847f80018b3", "cast_id": 33, "profile_path": "/yqmwlDs8CDxCJNa72lNxNwRKoSa.jpg", "order": 15}, {"name": "Vanessa Branch", "character": "Giselle", "id": 2452, "credit_id": "52fe4212c3a36847f80018b7", "cast_id": 34, "profile_path": "/we5DEoTqeJznGe8m7ssRgmVXmwB.jpg", "order": 16}, {"name": "Luke de Woolfson", "character": "Frightened Sailor", "id": 82636, "credit_id": "52fe4212c3a36847f80018bb", "cast_id": 35, "profile_path": "/lsJ51EAV14lf0F39nGnlHz7CdM8.jpg", "order": 17}, {"name": "Jonathan Kite", "character": "Black Pearl Pirate", "id": 1254626, "credit_id": "52fe4212c3a36847f80018d3", "cast_id": 40, "profile_path": "/yjCvcUO8DnhlFcLVzIQsbBrbxsV.jpg", "order": 18}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4211c3a36847f800182d", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.6, "runtime": 151}, "59": {"poster_path": "/pHl0rnnd4RyNNUKVt7blQdtaAbd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60740827, "overview": "An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.", "video": false, "id": 59, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A History of Violence", "tagline": "Tom Stall had the perfect life... until he became a hero.", "vote_count": 162, "homepage": "http://wwws.warnerbros.de/historyofviolence/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0399146", "adult": false, "backdrop_path": "/8rbvmhGmUqEjLmo2mDycTazEaAc.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "New Line Cinema", "id": 12}, {"name": "BenderSpink", "id": 6363}], "release_date": "2005-09-23", "popularity": 0.691873883783024, "original_title": "A History of Violence", "budget": 32000000, "cast": [{"name": "Viggo Mortensen", "character": "Tom Stall", "id": 110, "credit_id": "52fe4212c3a36847f8001927", "cast_id": 2, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Maria Bello", "character": "Edie Stall", "id": 49, "credit_id": "52fe4212c3a36847f800192b", "cast_id": 3, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 1}, {"name": "Heidi Hayes", "character": "Sarah Stall", "id": 226, "credit_id": "52fe4212c3a36847f800192f", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Ashton Holmes", "character": "Jack Stall", "id": 225, "credit_id": "52fe4212c3a36847f8001933", "cast_id": 5, "profile_path": "/glpPD22Zk2b7bGSOAFoy9ucPDmj.jpg", "order": 3}, {"name": "William Hurt", "character": "Richie Cusack", "id": 227, "credit_id": "52fe4212c3a36847f8001937", "cast_id": 6, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 4}, {"name": "Ed Harris", "character": "Carl Fogerty", "id": 228, "credit_id": "52fe4212c3a36847f800193b", "cast_id": 7, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 5}, {"name": "Peter MacNeill", "character": "Sheriff Sam Carney", "id": 229, "credit_id": "52fe4212c3a36847f800193f", "cast_id": 8, "profile_path": "/wNBsE9FqylAdCwzRvZtkvZJCfVI.jpg", "order": 6}, {"name": "Stephen McHattie", "character": "Leland", "id": 230, "credit_id": "52fe4212c3a36847f8001943", "cast_id": 9, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 7}, {"name": "Greg Bryk", "character": "Billy", "id": 231, "credit_id": "52fe4212c3a36847f8001947", "cast_id": 10, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 8}, {"name": "Kyle Schmid", "character": "Bobby", "id": 232, "credit_id": "52fe4212c3a36847f800194b", "cast_id": 11, "profile_path": "/d0BikewdLHSo6gjNMlBU7m7ePdG.jpg", "order": 9}, {"name": "Sumela Kay", "character": "Judy Danvers", "id": 233, "credit_id": "52fe4212c3a36847f800194f", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Gerry Quigley", "character": "Mick", "id": 234, "credit_id": "52fe4212c3a36847f8001953", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Deborah Drakeford", "character": "Charlotte", "id": 235, "credit_id": "52fe4212c3a36847f8001957", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Bill MacDonald", "character": "Frank Mulligan", "id": 236, "credit_id": "52fe4212c3a36847f800195b", "cast_id": 15, "profile_path": "/k9FyefziPLUSfawSQq7M0med6R6.jpg", "order": 13}, {"name": "Aidan Devine", "character": "Charlie Roarke", "id": 237, "credit_id": "52fe4212c3a36847f800195f", "cast_id": 16, "profile_path": "/8RyUP2FYu4xuEkpJZFFlf2204Si.jpg", "order": 14}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001923", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.4, "runtime": 96}, "62": {"poster_path": "/rT9w3tzk25jA8vl7KyvzUP5gHJV.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56715371, "overview": "Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.", "video": false, "id": 62, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "2001: A Space Odyssey", "tagline": "An epic drama of adventure and exploration", "vote_count": 835, "homepage": "", "belongs_to_collection": {"backdrop_path": "/15FumSExI9SRoL7QJWZAsA0b10c.jpg", "poster_path": "/i1WdRtc6aObiwGz5NU8WWPW3r1N.jpg", "id": 4438, "name": "The Space Odyssey Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0062622", "adult": false, "backdrop_path": "/pckdZ29bHj11hBsV3SbVVfmCB6C.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Stanley Kubrick Productions", "id": 385}], "release_date": "1968-04-05", "popularity": 2.22301837144001, "original_title": "2001: A Space Odyssey", "budget": 10500000, "cast": [{"name": "Keir Dullea", "character": "Dr. Dave Bowman", "id": 245, "credit_id": "52fe4212c3a36847f8001a1b", "cast_id": 6, "profile_path": "/vRkyWW3p2Xd1FfMBKZWV2LQZlkR.jpg", "order": 0}, {"name": "Douglas Rain", "character": "HAL 9000 (voice)", "id": 253, "credit_id": "52fe4212c3a36847f8001a3b", "cast_id": 14, "profile_path": null, "order": 1}, {"name": "Gary Lockwood", "character": "Dr. Frank Poole", "id": 246, "credit_id": "52fe4212c3a36847f8001a1f", "cast_id": 7, "profile_path": "/93PNFjRuV3u4SRFwmvaAMZ4HNna.jpg", "order": 2}, {"name": "William Sylvester", "character": "Dr. Heywood R. Floyd", "id": 247, "credit_id": "52fe4212c3a36847f8001a23", "cast_id": 8, "profile_path": "/iz3JAVIColzTaQ3PFvxdlFaCzfW.jpg", "order": 3}, {"name": "Daniel Richter", "character": "Moon-Watcher", "id": 248, "credit_id": "52fe4212c3a36847f8001a27", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Leonard Rossiter", "character": "Dr. Andrei Smyslov", "id": 249, "credit_id": "52fe4212c3a36847f8001a2b", "cast_id": 10, "profile_path": "/a9AKQbnY69kRwwBgkL3wqfJgQru.jpg", "order": 5}, {"name": "Margaret Tyzack", "character": "Elena", "id": 250, "credit_id": "52fe4212c3a36847f8001a2f", "cast_id": 11, "profile_path": "/gZgVXY3WszU2dcEL0CwmdKAf7Vd.jpg", "order": 6}, {"name": "Robert Beatty", "character": "Dr. Ralph Halvorsen", "id": 251, "credit_id": "52fe4212c3a36847f8001a33", "cast_id": 12, "profile_path": "/nQrvFDN5pIo4y5qHRgsCJ3zpoQM.jpg", "order": 7}, {"name": "Sean Sullivan", "character": "Dr. Bill Michaels", "id": 252, "credit_id": "52fe4212c3a36847f8001a37", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Bill Weston", "character": "Astronaut", "id": 24278, "credit_id": "52fe4212c3a36847f8001a6f", "cast_id": 24, "profile_path": "/apVNA3SRNIrB6gu88nGTEhPewI2.jpg", "order": 9}, {"name": "Ed Bishop", "character": "Aries-1B Lunar Shuttle Captain", "id": 108277, "credit_id": "52fe4212c3a36847f8001a73", "cast_id": 25, "profile_path": "/v5jVNLCSACz9yC0mhD4akfXPtc6.jpg", "order": 10}, {"name": "Alan Gifford", "character": "Poole's Father", "id": 93948, "credit_id": "52fe4212c3a36847f8001a77", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Ann Gillis", "character": "Poole's Mother", "id": 107445, "credit_id": "52fe4212c3a36847f8001a7b", "cast_id": 28, "profile_path": "/pj9tiEfMxDe4vedKtmlGu5oMB9m.jpg", "order": 12}, {"name": "Edwina Carroll", "character": "Aries-1B Stewardess", "id": 117540, "credit_id": "52fe4212c3a36847f8001a7f", "cast_id": 29, "profile_path": "/h0MjcnyMU2KvlhX21AHmf33zJGS.jpg", "order": 13}, {"name": "Frank Miller", "character": "Mission Controller (voice)", "id": 102573, "credit_id": "52fe4212c3a36847f8001a83", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Glenn Beck", "character": "Astronaut", "id": 948173, "credit_id": "52fe4212c3a36847f8001a87", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Penny Brahms", "character": "Stewardess", "id": 127363, "credit_id": "539d3d53c3a3683b2a002a98", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Heather Downham", "character": "Stewardess", "id": 1102076, "credit_id": "539d3d76c3a3683b50002997", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Mike Lovell", "character": "Astronaut", "id": 1330785, "credit_id": "539d3da9c3a3683b500029a3", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "John Ashley", "character": "Ape", "id": 1330786, "credit_id": "539d3df0c3a3683b37002a8b", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Jimmy Bell", "character": "Ape", "id": 1330787, "credit_id": "539d3e13c3a3683b37002a92", "cast_id": 43, "profile_path": null, "order": 20}, {"name": "David Charkham", "character": "Ape", "id": 1330788, "credit_id": "539d3e2ec3a3683b590029db", "cast_id": 44, "profile_path": null, "order": 21}, {"name": "Simon Davis", "character": "Ape", "id": 1330789, "credit_id": "539d3e44c3a3683b41002a7e", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Jonathan Daw", "character": "Ape", "id": 1330790, "credit_id": "539d3e6ac3a3683b23002b57", "cast_id": 46, "profile_path": null, "order": 23}, {"name": "P\u00e9ter Delm\u00e1r", "character": "Ape", "id": 1330791, "credit_id": "539d3e80c3a3683b310029ff", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "Terry Duggan", "character": "Ape Attacked by Leopard", "id": 1330792, "credit_id": "539d3ec4c3a3683b23002b81", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "David Fleetwood", "character": "Ape", "id": 1330793, "credit_id": "539d3eeac3a3683b23002b88", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "Danny Grover", "character": "Ape", "id": 1330794, "credit_id": "539d3f04c3a3683b2a002ad4", "cast_id": 50, "profile_path": null, "order": 27}, {"name": "Brian Hawley", "character": "Ape", "id": 1330795, "credit_id": "539d3f25c3a3683b23002ba3", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "David Hines", "character": "Ape", "id": 1330796, "credit_id": "539d3f42c3a3683b50002a01", "cast_id": 52, "profile_path": null, "order": 29}, {"name": "Tony Jackson", "character": "Ape", "id": 1330797, "credit_id": "539d3f81c3a3683b50002a27", "cast_id": 53, "profile_path": null, "order": 30}, {"name": "John Jordan", "character": "Ape", "id": 1330798, "credit_id": "539d3f9ec3a3683b31002a89", "cast_id": 54, "profile_path": null, "order": 31}, {"name": "Scott MacKee", "character": "Ape", "id": 1330799, "credit_id": "539d3fb4c3a3683b41002b14", "cast_id": 55, "profile_path": null, "order": 32}, {"name": "Laurence Marchant", "character": "Ape", "id": 1330800, "credit_id": "539d3fcbc3a3683b59002a74", "cast_id": 56, "profile_path": null, "order": 33}, {"name": "Darryl Paes", "character": "Ape", "id": 1330801, "credit_id": "539d3fe5c3a3683b31002ab7", "cast_id": 57, "profile_path": null, "order": 34}, {"name": "Joe Refalo", "character": "Ape", "id": 1330802, "credit_id": "539d3fffc3a3683b50002a65", "cast_id": 58, "profile_path": null, "order": 35}, {"name": "Andy Wallace", "character": "Ape", "id": 1330803, "credit_id": "539d4011c3a3683b48002a0b", "cast_id": 59, "profile_path": null, "order": 36}, {"name": "Bob Wilyman", "character": "Ape", "id": 1330804, "credit_id": "539d4024c3a3683b23002c27", "cast_id": 60, "profile_path": null, "order": 37}, {"name": "Richard Woods", "character": "Ape Killed by Moon-Watcher", "id": 1330805, "credit_id": "539d4048c3a3683b50002a82", "cast_id": 61, "profile_path": null, "order": 38}, {"name": "Martin Amor", "character": "Interviewer (uncredited)", "id": 1330806, "credit_id": "539d4069c3a3683b48002a28", "cast_id": 62, "profile_path": null, "order": 39}, {"name": "S. Newton Anderson", "character": "Young Man (uncredited)", "id": 1330807, "credit_id": "539d407ec3a3683b41002b55", "cast_id": 63, "profile_path": null, "order": 40}, {"name": "Sheraton Blount", "character": "(uncredited)", "id": 1330808, "credit_id": "539d4092c3a3683b50002a8b", "cast_id": 64, "profile_path": null, "order": 41}, {"name": "Ann Bormann", "character": "(uncredited)", "id": 1330809, "credit_id": "539d40a6c3a3683b41002b5c", "cast_id": 65, "profile_path": null, "order": 42}, {"name": "John Clifford", "character": "TMA-1 Site Technician #2 (uncredited)", "id": 1330810, "credit_id": "539d40dfc3a3683b50002a92", "cast_id": 66, "profile_path": null, "order": 43}, {"name": "Julie Croft", "character": "(uncredited)", "id": 1330811, "credit_id": "539d4177c3a3683b48002a75", "cast_id": 67, "profile_path": null, "order": 44}, {"name": "Penny Francis", "character": "(uncredited)", "id": 1330812, "credit_id": "539d418fc3a3683b41002baf", "cast_id": 68, "profile_path": null, "order": 45}, {"name": "Kenneth Kendall", "character": "BBC-12 Announcer (uncredited)", "id": 1330813, "credit_id": "539d41b9c3a3683b50002b1f", "cast_id": 69, "profile_path": null, "order": 46}, {"name": "Vivian Kubrick", "character": "Squirt - Floyd's Daughter (uncredited)", "id": 8645, "credit_id": "539d41d2c3a3683b41002bee", "cast_id": 70, "profile_path": null, "order": 47}, {"name": "Marcella Markham", "character": "(uncredited)", "id": 1330814, "credit_id": "539d41e5c3a3683b23002ce1", "cast_id": 71, "profile_path": null, "order": 48}, {"name": "Irena Marr", "character": "Russian Scientist (uncredited)", "id": 1330815, "credit_id": "539d41f9c3a3683b50002b54", "cast_id": 72, "profile_path": null, "order": 49}, {"name": "Krystyna Marr", "character": "Russian Scientist (uncredited)", "id": 1330816, "credit_id": "539d420bc3a3683b23002d11", "cast_id": 73, "profile_path": null, "order": 50}, {"name": "Kim Neil", "character": "(uncredited)", "id": 1330817, "credit_id": "539d421ec3a3683b59002b72", "cast_id": 74, "profile_path": null, "order": 51}, {"name": "Jane Pearl", "character": "(uncredited)", "id": 1330818, "credit_id": "539d4230c3a3683b37002c2f", "cast_id": 75, "profile_path": null, "order": 52}, {"name": "Penny Pearl", "character": "(uncredited)", "id": 1330819, "credit_id": "539d4244c3a3683b48002b19", "cast_id": 76, "profile_path": null, "order": 53}, {"name": "Kevin Scott", "character": "Miller (uncredited)", "id": 1330820, "credit_id": "539d427dc3a3683b23002d36", "cast_id": 77, "profile_path": null, "order": 54}, {"name": "John Swindells", "character": "TMA-1 Site Technician #1 (uncredited)", "id": 1330821, "credit_id": "539d42bfc3a3683b23002d3e", "cast_id": 78, "profile_path": null, "order": 55}, {"name": "Burnell Tucker", "character": "TMA-1 Site Photographer (uncredited)", "id": 184980, "credit_id": "539d43ea0e0a261328003623", "cast_id": 79, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 56}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001a6b", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.4, "runtime": 149}, "63": {"poster_path": "/6Sj9wDu3YugthXsU0Vry5XFAZGg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 168840000, "overview": "In the year 2035, convict James Cole (Bruce Willis) reluctantly volunteers to be sent back in time to discover the origin of a deadly virus that wiped out nearly all of the earth's population and forced the survivors into underground communities. But when Cole is mistakenly sent to 1990 instead of 1996, he's arrested and locked up in a mental hospital. There he meets psychiatrist Dr. Kathryn Railly (Madeleine Stowe), and patient Jeffrey Goines (Brad Pitt), the son of a famous virus expert, who may hold the key to the mysterious rogue group, the Army of the 12 Monkeys, thought to be responsible for unleashing the killer disease.", "video": false, "id": 63, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Twelve Monkeys", "tagline": "The future is history", "vote_count": 813, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0114746", "adult": false, "backdrop_path": "/6KXbhaxkgExC5EdDqAzRinhmoZ8.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Classico", "id": 17031}], "release_date": "1995-12-27", "popularity": 1.22867641112124, "original_title": "Twelve Monkeys", "budget": 29500000, "cast": [{"name": "Bruce Willis", "character": "James Cole", "id": 62, "credit_id": "52fe4212c3a36847f8001b31", "cast_id": 41, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Madeleine Stowe", "character": "Dr. Kathryn Railly", "id": 289, "credit_id": "52fe4212c3a36847f8001b35", "cast_id": 42, "profile_path": "/jqd70MNVUs3nTbxn3B3G6UNV4Oc.jpg", "order": 1}, {"name": "Brad Pitt", "character": "Jeffrey Goines", "id": 287, "credit_id": "52fe4212c3a36847f8001b39", "cast_id": 43, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "Dr. Goines", "id": 290, "credit_id": "52fe4212c3a36847f8001b3d", "cast_id": 44, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "David Morse", "character": "Dr. Peters", "id": 52, "credit_id": "52fe4212c3a36847f8001b41", "cast_id": 45, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 4}, {"name": "Jon Seda", "character": "Jose", "id": 288, "credit_id": "52fe4212c3a36847f8001b45", "cast_id": 46, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 5}, {"name": "Frank Gorshin", "character": "Dr. Fletcher", "id": 291, "credit_id": "52fe4212c3a36847f8001b49", "cast_id": 47, "profile_path": "/1hfi3gAMouvfXzrnrbJLHqYHHVP.jpg", "order": 6}, {"name": "Joseph Melito", "character": "young Cole", "id": 975569, "credit_id": "52fe4212c3a36847f8001b4d", "cast_id": 48, "profile_path": "/rPgGtrcKQsV9wlDW91kgjGm39K5.jpg", "order": 7}, {"name": "Aaron Michael Lacey", "character": "WWI Sergeant", "id": 1273540, "credit_id": "52fe4212c3a36847f8001b51", "cast_id": 49, "profile_path": "/6cBXtAhaqQfT14WLIgGXqmEQ12j.jpg", "order": 8}, {"name": "Christopher Meloni", "character": "Lt. Halperin", "id": 22227, "credit_id": "52fe4212c3a36847f8001b55", "cast_id": 50, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 9}, {"name": "Joey Perillo", "character": "Det. Franki", "id": 1318900, "credit_id": "54064688c3a3682d98007531", "cast_id": 51, "profile_path": null, "order": 10}, {"name": "LisaGay Hamilton", "character": "Teddy", "id": 534231, "credit_id": "540646a2c3a3685b74004731", "cast_id": 52, "profile_path": "/4K8SwWpmwGX1EwJcYX2IJoMbWHZ.jpg", "order": 11}, {"name": "Matt Ross", "character": "Bee", "id": 11154, "credit_id": "540646b0c3a3685b74004733", "cast_id": 53, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 12}, {"name": "Annie Golden", "character": "woman cabbie", "id": 66094, "credit_id": "540646dcc3a36816af003fb5", "cast_id": 54, "profile_path": "/2onk2YDUlJIQdJKhfRRNyuNjzu7.jpg", "order": 13}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001ac7", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.0, "runtime": 129}, "64": {"poster_path": "/zxRaFJyxvomX3uPCfAh35BdZy5e.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 51001550, "overview": "Two men share an odd friendship while they care for two women who are both in deep comas.", "video": false, "id": 64, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Talk to Her", "tagline": "", "vote_count": 50, "homepage": "http://www.clubcultura.com/clubcine/clubcineastas/almodovar/hableconella/hableconella.htm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0287467", "adult": false, "backdrop_path": "/9GruQLprYzRnT72vQNF92tcUUQJ.jpg", "production_companies": [{"name": "V\u00eda Digital", "id": 357}, {"name": "Good Machine", "id": 10565}, {"name": "El Deseo S.A.", "id": 11736}, {"name": "Antena 3 Televisi\u00f3n", "id": 11737}], "release_date": "2002-03-14", "popularity": 0.351836714783365, "original_title": "Hable con ella", "budget": 9285469, "cast": [{"name": "Leonor Watling", "character": "Alicia", "id": 101, "credit_id": "52fe4212c3a36847f8001ba9", "cast_id": 4, "profile_path": "/6M9s0VigBmmVOBbkRTQz1K0LbN4.jpg", "order": 0}, {"name": "Rosario Flores", "character": "Lydia", "id": 398, "credit_id": "52fe4212c3a36847f8001bad", "cast_id": 5, "profile_path": "/bWK2h9obFbPjMpq7oOnwbd7oIW.jpg", "order": 1}, {"name": "Javier C\u00e1mara", "character": "Benigno", "id": 1610, "credit_id": "52fe4212c3a36847f8001bbd", "cast_id": 8, "profile_path": "/pbS8PFYTSh2LqODPUuygKLmytVu.jpg", "order": 2}, {"name": "Dar\u00edo Grandinetti", "character": "Marco", "id": 3618, "credit_id": "52fe4212c3a36847f8001bc7", "cast_id": 10, "profile_path": "/UQN0TZJyEsxP06yAlS1OuAZEoL.jpg", "order": 3}, {"name": "Mariola Fuentes", "character": "Rosa", "id": 399, "credit_id": "52fe4212c3a36847f8001bcb", "cast_id": 11, "profile_path": "/79y7ii3WPe8y6yV2hqLKYbYXLnL.jpg", "order": 4}, {"name": "Geraldine Chaplin", "character": "Katerina Bilova", "id": 400, "credit_id": "52fe4212c3a36847f8001bcf", "cast_id": 12, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 5}, {"name": "Pina Bausch", "character": "Bailarine", "id": 402, "credit_id": "52fe4212c3a36847f8001bd3", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Malou Airaudo", "character": "Bailarine", "id": 3619, "credit_id": "52fe4212c3a36847f8001bd7", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Caetano Veloso", "character": "Singer at Party", "id": 3620, "credit_id": "52fe4212c3a36847f8001bdb", "cast_id": 15, "profile_path": "/onHlrk9FN5KkDkxfO70XW9X6qGt.jpg", "order": 8}, {"name": "Roberto Alvarez", "character": "Doctor", "id": 3621, "credit_id": "52fe4212c3a36847f8001bdf", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Elena Anaya", "character": "\u00c1ngela", "id": 3623, "credit_id": "52fe4212c3a36847f8001be3", "cast_id": 17, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 10}, {"name": "Lola Due\u00f1as", "character": "Matilde", "id": 2759, "credit_id": "52fe4212c3a36847f8001be7", "cast_id": 18, "profile_path": "/r5rHHPDV7flRGF2qQ885VsKTp5K.jpg", "order": 11}, {"name": "Adolfo Fern\u00e1ndez", "character": "Ni\u00f1o de Valencia", "id": 3624, "credit_id": "52fe4212c3a36847f8001beb", "cast_id": 19, "profile_path": "/fbfwl2MSG7s4SqaxOhXV1mCKKkn.jpg", "order": 12}, {"name": "Ana Fern\u00e1ndez", "character": "Lydia's Sister", "id": 3625, "credit_id": "52fe4212c3a36847f8001bef", "cast_id": 20, "profile_path": "/o8NIVZ6Q3F4aLExbbyP0BvbODzS.jpg", "order": 13}, {"name": "Chus Lampreave", "character": "Concierge", "id": 3482, "credit_id": "52fe4212c3a36847f8001bf3", "cast_id": 21, "profile_path": "/dwoyRWC5Nyo2UgE7M6AjqJWSAAD.jpg", "order": 14}, {"name": "Helio Pedregal", "character": "Alicia's Father", "id": 3626, "credit_id": "52fe4212c3a36847f8001bf7", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Paz Vega", "character": "Amparo", "id": 3627, "credit_id": "52fe4212c3a36847f8001bfb", "cast_id": 23, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 16}, {"name": "Fele Mart\u00ednez", "character": "Alfredo", "id": 1602, "credit_id": "52fe4212c3a36847f8001bff", "cast_id": 24, "profile_path": "/7Hccxji7taf2NmfNBiXBnQLCyHk.jpg", "order": 17}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001b99", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 7.1, "runtime": 112}, "65": {"poster_path": "/dXzTrKwpbLpCqn8O70FUUhNbYQT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215000000, "overview": "The setting is Detroit in 1995. The city is divided by 8 Mile, a road that splits the town in half along racial lines. A young white rapper, Jimmy \"B-Rabbit\" Smith Jr summons strength within himself to cross over these arbitrary boundaries to fulfill his dream of success in hip hop. With future and the three one third all he has to do is not choke.", "video": false, "id": 65, "genres": [{"id": 18, "name": "Drama"}], "title": "8 Mile", "tagline": "Every moment is another chance.", "vote_count": 286, "homepage": "http://movies.uip.de/8mile/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298203", "adult": false, "backdrop_path": "/4uJZvmEMX6Z6ag3bzym5exLY9wI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2002-11-08", "popularity": 1.15778230917123, "original_title": "8 Mile", "budget": 41000000, "cast": [{"name": "Eminem", "character": "Jimmy B. \"Rabbit\" Smith", "id": 325, "credit_id": "52fe4212c3a36847f8001c53", "cast_id": 3, "profile_path": "/mKPPGlIZ2EiKb6LSC46cSzK2NEU.jpg", "order": 0}, {"name": "Mekhi Phifer", "character": "David 'Future' Porter", "id": 327, "credit_id": "52fe4212c3a36847f8001c57", "cast_id": 4, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 1}, {"name": "Brittany Murphy", "character": "Alex", "id": 328, "credit_id": "52fe4212c3a36847f8001c5f", "cast_id": 6, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 2}, {"name": "Kim Basinger", "character": "Stephanie Smith", "id": 326, "credit_id": "52fe4212c3a36847f8001c5b", "cast_id": 5, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 3}, {"name": "Michael Shannon", "character": "Greg Buehl", "id": 335, "credit_id": "52fe4212c3a36847f8001c7b", "cast_id": 13, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 4}, {"name": "Taryn Manning", "character": "Janeane", "id": 343, "credit_id": "52fe4212c3a36847f8001c8b", "cast_id": 21, "profile_path": "/vgLUb0mjZqJsDCnZZ3I9VKeyo9J.jpg", "order": 5}, {"name": "Anthony Mackie", "character": "Papa Doc", "id": 53650, "credit_id": "52fe4212c3a36847f8001c8f", "cast_id": 22, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 6}, {"name": "De'Angelo Wilson", "character": "DJ IZ", "id": 341, "credit_id": "54ebba54c3a3686d64000057", "cast_id": 26, "profile_path": "/59cfQidcF39uWLlVgqrGwj5GpJi.jpg", "order": 7}, {"name": "Evan Jones", "character": "Cheddar Bob", "id": 333, "credit_id": "53615f92c3a368394e00031c", "cast_id": 23, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 8}, {"name": "Omar Benson Miller", "character": "Sol George", "id": 334, "credit_id": "54ebba71925141796500005e", "cast_id": 28, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 9}, {"name": "Eugene Byrd", "character": "Wink", "id": 342, "credit_id": "54ebba7a925141795f000044", "cast_id": 29, "profile_path": "/ab4zEcqdBSjpaz4CPQ2Z6q4rLmO.jpg", "order": 10}, {"name": "Mike Bell", "character": "Shorty Mike", "id": 217173, "credit_id": "536161d2c3a368395d000326", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Xzibit", "character": "Mike", "id": 336, "credit_id": "54ebba899251417971000050", "cast_id": 30, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 12}, {"name": "Proof", "character": "Lil'Tic", "id": 1069291, "credit_id": "53616364c3a368397600034f", "cast_id": 25, "profile_path": null, "order": 13}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe4212c3a36847f8001c49", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}], "vote_average": 6.6, "runtime": 110}, "68": {"poster_path": "/fbaxxLP6PztGwLrHO0lBDquof0d.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Brazil is a Terry Gilliam dystopic black comedy film that reflects the melancholy, dreamlike quality of a famous Brazilian song that\u2019s been translated into English. The film parodies the mostly dysfunctional bureaucratic world we live in and takes us to a post-apocalyptic world in the future yet with our present day attitudes in mind.", "video": false, "id": 68, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Brazil", "tagline": "It's only a state of mind.", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088846", "adult": false, "backdrop_path": "/bYgN55xPNQWUy9xzKwA9pVbGxeE.jpg", "production_companies": [{"name": "Embassy International Pictures", "id": 10214}], "release_date": "1985-02-20", "popularity": 0.786259103513953, "original_title": "Brazil", "budget": 15000000, "cast": [{"name": "Jonathan Pryce", "character": "Sam Lowry", "id": 378, "credit_id": "52fe4213c3a36847f8001e8f", "cast_id": 7, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Archibald 'Harry' Tuttle", "id": 380, "credit_id": "52fe4213c3a36847f8001e93", "cast_id": 8, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Katherine Helmond", "character": "Mrs. Ida Lowry", "id": 381, "credit_id": "52fe4213c3a36847f8001e97", "cast_id": 9, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 2}, {"name": "Ian Holm", "character": "Mr. M. Kurtzmann", "id": 65, "credit_id": "52fe4213c3a36847f8001e9b", "cast_id": 10, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 3}, {"name": "Bob Hoskins", "character": "Spoor", "id": 382, "credit_id": "52fe4213c3a36847f8001e9f", "cast_id": 11, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 4}, {"name": "Michael Palin", "character": "Jack Lint", "id": 383, "credit_id": "52fe4213c3a36847f8001ea3", "cast_id": 12, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 5}, {"name": "Ian Richardson", "character": "Mr. Warrenn", "id": 385, "credit_id": "52fe4213c3a36847f8001ea7", "cast_id": 13, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 6}, {"name": "Peter Vaughan", "character": "Mr. Helpmann", "id": 386, "credit_id": "52fe4213c3a36847f8001eab", "cast_id": 14, "profile_path": "/z9ZplbTA1ojYhgZ8kJUKKhsJ7Gs.jpg", "order": 7}, {"name": "Kim Greist", "character": "Jill Layton", "id": 387, "credit_id": "52fe4213c3a36847f8001eaf", "cast_id": 15, "profile_path": "/1qLn5aQeL02ysauDs1hJhL0ozfs.jpg", "order": 8}, {"name": "Jim Broadbent", "character": "Dr. Jaffe", "id": 388, "credit_id": "52fe4213c3a36847f8001eb3", "cast_id": 16, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 9}, {"name": "Terry Gilliam", "character": "Smoking Man (uncredited)", "id": 280, "credit_id": "52fe4213c3a36847f8001eb7", "cast_id": 17, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 10}, {"name": "Barbara Hicks", "character": "Mrs. Alma Terrain", "id": 97167, "credit_id": "52fe4213c3a36847f8001ee5", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Charles McKeown", "character": "Harvey Lime", "id": 374, "credit_id": "52fe4213c3a36847f8001ee9", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Derrick O'Connor", "character": "Dowser", "id": 14325, "credit_id": "52fe4213c3a36847f8001eed", "cast_id": 29, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 13}, {"name": "Kathryn Pogson", "character": "Shirley", "id": 177594, "credit_id": "52fe4213c3a36847f8001ef1", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Bryan Pringle", "character": "Spiro", "id": 22171, "credit_id": "52fe4213c3a36847f8001ef5", "cast_id": 31, "profile_path": null, "order": 15}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8001e6d", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.4, "runtime": 132}, "69": {"poster_path": "/nUsaYt9Wk4fVP8jp1ncfQe7Io7t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170000000, "overview": "A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.", "video": false, "id": 69, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Walk the Line", "tagline": "Love is a burning thing.", "vote_count": 201, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0358273", "adult": false, "backdrop_path": "/gti33Idw0SqTH6wFzRlGmdjnLxs.jpg", "production_companies": [{"name": "Tree Line Films", "id": 84}, {"name": "Konrad Pictures", "id": 85}, {"name": "Catfish Productions", "id": 86}], "release_date": "2005-09-13", "popularity": 0.429567689954736, "original_title": "Walk the Line", "budget": 28000000, "cast": [{"name": "Joaquin Phoenix", "character": "Johnny Cash", "id": 73421, "credit_id": "52fe4213c3a36847f8001f43", "cast_id": 2, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "June Carter", "id": 368, "credit_id": "52fe4213c3a36847f8001f47", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Ginnifer Goodwin", "character": "Vivian", "id": 417, "credit_id": "52fe4213c3a36847f8001f63", "cast_id": 10, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 2}, {"name": "Robert Patrick", "character": "Ray Cash", "id": 418, "credit_id": "52fe4213c3a36847f8001f67", "cast_id": 11, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 3}, {"name": "Tyler Hilton", "character": "Elvis Presley", "id": 419, "credit_id": "52fe4213c3a36847f8001f6b", "cast_id": 12, "profile_path": "/6CKulnmKgIuKB455pHd0m8hWeFm.jpg", "order": 4}, {"name": "Johnathan Rice", "character": "Roy Orbison", "id": 420, "credit_id": "52fe4213c3a36847f8001f6f", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Shooter Jennings", "character": "Waylon Jennings", "id": 421, "credit_id": "52fe4213c3a36847f8001f73", "cast_id": 14, "profile_path": "/oWn81H5SLIYQikUkeRFrnVnwL9M.jpg", "order": 6}, {"name": "Waylon Payne", "character": "Jerry Lee Lewis", "id": 422, "credit_id": "52fe4213c3a36847f8001f77", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Dallas Roberts", "character": "Sam Phillips", "id": 424, "credit_id": "52fe4213c3a36847f8001f7b", "cast_id": 16, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 8}, {"name": "Dan John Miller", "character": "Luther Perkins", "id": 425, "credit_id": "52fe4213c3a36847f8001f7f", "cast_id": 17, "profile_path": "/vqCkSeRyFK90Y578eSU4zeKMC4I.jpg", "order": 9}, {"name": "Larry Bagby", "character": "Marshall Grant", "id": 426, "credit_id": "52fe4213c3a36847f8001f83", "cast_id": 18, "profile_path": "/zBXOdQkskwkYCK34RnVKTVaI8DR.jpg", "order": 10}, {"name": "Sandra Ellis Lafferty", "character": "Maybelle Carter", "id": 427, "credit_id": "52fe4213c3a36847f8001f87", "cast_id": 19, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 11}, {"name": "Dan Beene", "character": "Ezra Carter", "id": 428, "credit_id": "52fe4213c3a36847f8001f8b", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Lucas Till", "character": "Young Johnny Cash", "id": 429, "credit_id": "52fe4213c3a36847f8001f8f", "cast_id": 21, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 13}, {"name": "Victoria Hester", "character": "Carlene Carter", "id": 431, "credit_id": "52fe4213c3a36847f8001f93", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Hailey Anne Nelson", "character": "Rosanne Cash", "id": 430, "credit_id": "52fe4213c3a36847f8001f97", "cast_id": 23, "profile_path": "/g3P0V4D6g4wYlhTxakTaAQC7DW2.jpg", "order": 15}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8001f3f", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.7, "runtime": 136}, "70": {"poster_path": "/h4VZKi2Jt4VoBYJmtC4c3bO8KqM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 216763646, "overview": "Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.", "video": false, "id": 70, "genres": [{"id": 18, "name": "Drama"}], "title": "Million Dollar Baby", "tagline": "Beyond his silence, there is a past. Beyond her dreams, there is a feeling. Beyond hope, there is a memory. Beyond their journey, there is a love.", "vote_count": 548, "homepage": "http://www.milliondollarbaby-derfilm.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405159", "adult": false, "backdrop_path": "/o4OSztAvDYNDXkn9PJGbaQAO8VG.jpg", "production_companies": [{"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Malpaso Productions", "id": 171}, {"name": "Albert S. Ruddy Productions", "id": 16311}], "release_date": "2004-12-14", "popularity": 1.09643309460655, "original_title": "Million Dollar Baby", "budget": 30000000, "cast": [{"name": "Clint Eastwood", "character": "Frankie Dunn", "id": 190, "credit_id": "52fe4213c3a36847f8002015", "cast_id": 4, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Hilary Swank", "character": "Maggie Fitzgerald", "id": 448, "credit_id": "52fe4213c3a36847f8002079", "cast_id": 24, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Eddie Scrap-Iron Dupris", "id": 192, "credit_id": "52fe4213c3a36847f8002083", "cast_id": 26, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Danger Barch", "id": 449, "credit_id": "52fe4213c3a36847f8002019", "cast_id": 6, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Mike Colter", "character": "Big Willie Little", "id": 450, "credit_id": "52fe4213c3a36847f800201d", "cast_id": 7, "profile_path": "/eP0RelLOZrlMH2W3qFVx87VG9ij.jpg", "order": 4}, {"name": "Br\u00edan F. O'Byrne", "character": "Father Horvak", "id": 31713, "credit_id": "52fe4213c3a36847f8002091", "cast_id": 30, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 5}, {"name": "Anthony Mackie", "character": "Shawrelle Berry", "id": 53650, "credit_id": "52fe4213c3a36847f8002087", "cast_id": 28, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 6}, {"name": "Margo Martindale", "character": "Earline Fitzgerald", "id": 452, "credit_id": "52fe4213c3a36847f8002025", "cast_id": 9, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 7}, {"name": "Riki Lindhome", "character": "Mardell Fitzgerald", "id": 453, "credit_id": "52fe4213c3a36847f8002029", "cast_id": 10, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 8}, {"name": "Michael Pe\u00f1a", "character": "Omar", "id": 454, "credit_id": "52fe4213c3a36847f800202d", "cast_id": 11, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 9}, {"name": "Lucia Rijker", "character": "Billie 'The Blue Bear'", "id": 451, "credit_id": "52fe4213c3a36847f8002021", "cast_id": 8, "profile_path": "/dNKQK7uLrdG1g8ETKF9SxbXHGNQ.jpg", "order": 10}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f800200b", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.3, "runtime": 132}, "71": {"poster_path": "/x0ySHQPAxQYD0D79BeDY2XhPzXg.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 110000000, "overview": "Set against the background of the 1984 Miner's Strike, Billy Elliot is an 11 year old boy who stumbles out of the boxing ring and onto the ballet floor. He faces many trials and triumphs as he strives to conquer his family's set ways, inner conflict, and standing on his toes!", "video": false, "id": 71, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Billy Elliot", "tagline": "Inside every one of us is a special talent waiting to come out. The trick is finding it.", "vote_count": 127, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0249462", "adult": false, "backdrop_path": "/xZ5qlcdZPyUKnoAugPE58XQyPXz.jpg", "production_companies": [{"name": "Arts Council of England", "id": 718}, {"name": "BBC Films", "id": 288}, {"name": "Studio Canal", "id": 5870}, {"name": "Tiger Aspect Productions", "id": 686}, {"name": "WT2 Productions", "id": 10462}, {"name": "Working Title Films", "id": 10163}], "release_date": "2000-05-18", "popularity": 0.561863222982333, "original_title": "Billy Elliot", "budget": 5000000, "cast": [{"name": "Jamie Bell", "character": "Billy Elliot", "id": 478, "credit_id": "52fe4213c3a36847f800211d", "cast_id": 16, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 0}, {"name": "Julie Walters", "character": "Mrs. Wilkinson", "id": 477, "credit_id": "52fe4213c3a36847f8002119", "cast_id": 15, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 1}, {"name": "Jean Heywood", "character": "Grandmother", "id": 481, "credit_id": "52fe4213c3a36847f8002129", "cast_id": 19, "profile_path": null, "order": 2}, {"name": "Jamie Draven", "character": "Tony Elliot", "id": 479, "credit_id": "52fe4213c3a36847f8002121", "cast_id": 17, "profile_path": "/tC1EJV652XHWPDITZfKe1JrH7Ii.jpg", "order": 3}, {"name": "Gary Lewis", "character": "Jackie Elliot", "id": 480, "credit_id": "52fe4213c3a36847f8002125", "cast_id": 18, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 4}, {"name": "Stuart Wells", "character": "Michael Caffrey", "id": 482, "credit_id": "52fe4213c3a36847f800212d", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Nicola Blackwell", "character": "Debbie Wilkinson", "id": 483, "credit_id": "52fe4213c3a36847f8002131", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Janine Birkett", "character": "Billy's mother", "id": 487, "credit_id": "52fe4213c3a36847f8002135", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Joe Renton", "character": "Gary Poulson", "id": 107381, "credit_id": "536910720e0a2647c400865d", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Colin MacLachlan", "character": "Mr. Tom Wilkinson", "id": 116991, "credit_id": "536910820e0a2647c80086a5", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Trevor Fox", "character": "PC Jeff Peverly", "id": 938824, "credit_id": "536910960e0a2647d1008161", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Charlie Hardwick", "character": "Sheila Briggs", "id": 1041491, "credit_id": "536910a40e0a2647d4008162", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f80020eb", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 7.1, "runtime": 110}, "73": {"poster_path": "/fXepRAYOx1qC3wju7XdDGx60775.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23875127, "overview": "Derek Vineyard is paroled after serving 3 years in prison for killing two thugs who tried to break into/steal his truck. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.", "video": false, "id": 73, "genres": [{"id": 18, "name": "Drama"}], "title": "American History X", "tagline": "Some Legacies Must End.", "vote_count": 733, "homepage": "http://www.historyx.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120586", "adult": false, "backdrop_path": "/i9A0UMFg1hI2kLyCCwnmSbpT2cd.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Savoy Pictures", "id": 11308}, {"name": "The Turman-Morrissey Company", "id": 924}], "release_date": "1998-10-30", "popularity": 1.93401745649286, "original_title": "American History X", "budget": 10000000, "cast": [{"name": "Edward Norton", "character": "Derek Vinyard", "id": 819, "credit_id": "52fe4213c3a36847f8002187", "cast_id": 4, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Edward Furlong", "character": "Danny Vinyard", "id": 820, "credit_id": "52fe4213c3a36847f800218b", "cast_id": 5, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 1}, {"name": "Beverly D'Angelo", "character": "Doris Vinyard", "id": 821, "credit_id": "52fe4213c3a36847f800218f", "cast_id": 6, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 2}, {"name": "Avery Brooks", "character": "Dr. Bob Sweeney", "id": 822, "credit_id": "52fe4213c3a36847f8002193", "cast_id": 7, "profile_path": "/rlxoULLYfqGCsHGMly2yYW9Hf6x.jpg", "order": 3}, {"name": "Jennifer Lien", "character": "Davina Vinyard", "id": 823, "credit_id": "52fe4213c3a36847f8002197", "cast_id": 8, "profile_path": "/szHZKvsa4SDo6ZfqYZA1qr77vE4.jpg", "order": 4}, {"name": "Ethan Suplee", "character": "Seth Ryan", "id": 824, "credit_id": "52fe4213c3a36847f800219b", "cast_id": 9, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 5}, {"name": "Stacy Keach", "character": "Cameron Alexander", "id": 825, "credit_id": "52fe4213c3a36847f800219f", "cast_id": 10, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 6}, {"name": "Fairuza Balk", "character": "Stacey", "id": 826, "credit_id": "52fe4213c3a36847f80021a3", "cast_id": 11, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 7}, {"name": "Elliott Gould", "character": "Murray", "id": 827, "credit_id": "52fe4213c3a36847f80021a7", "cast_id": 12, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 8}, {"name": "Guy Torry", "character": "Lamont", "id": 828, "credit_id": "52fe4213c3a36847f80021ab", "cast_id": 13, "profile_path": "/aNpthnwYd2oHN8KhYBUAhzViNzT.jpg", "order": 9}, {"name": "William Russ", "character": "Dennis Vinyard", "id": 829, "credit_id": "52fe4213c3a36847f80021af", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Joe Cortese", "character": "Rasmussen (as Joe Cortese)", "id": 830, "credit_id": "52fe4213c3a36847f80021b3", "cast_id": 15, "profile_path": "/gIE0CB1FVMGP8cG7qEyCYz0nkqY.jpg", "order": 11}, {"name": "Jason Bose Smith", "character": "Little Henry (as Jason Bose-Smith)", "id": 831, "credit_id": "52fe4213c3a36847f80021b7", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Antonio David Lyons", "character": "Lawrence", "id": 832, "credit_id": "52fe4213c3a36847f80021bb", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Alex Sol", "character": "Mitch McCormick", "id": 833, "credit_id": "52fe4213c3a36847f80021bf", "cast_id": 18, "profile_path": "/r5ILaD7d10x3W3f6rhJXeQEgq0i.jpg", "order": 14}, {"name": "Giuseppe Andrews", "character": "Jason", "id": 4133, "credit_id": "52fe4213c3a36847f80021e1", "cast_id": 24, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 15}, {"name": "Keram Malicki-S\u00e1nchez", "character": "Chris", "id": 4134, "credit_id": "52fe4213c3a36847f80021e5", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Jonathan Fowler Jr.", "character": "Jerome", "id": 1332231, "credit_id": "53a422590e0a2667c6001314", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Christopher Masterson", "character": "Daryl Dawson", "id": 35769, "credit_id": "53a422710e0a2667cd001388", "cast_id": 29, "profile_path": "/gz0GFQmLLjo6Q9Gvf1rKdZd2XhM.jpg", "order": 18}, {"name": "Nicholas R. Oleson", "character": "Huge Aryan", "id": 1332233, "credit_id": "53a422840e0a2667c200131e", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Ala\u00efs Zo\u00eb Ang\u00e9lique Adell", "character": "Lizzy", "id": 1332230, "credit_id": "53a422450e0a2667c2001317", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Jordan Marder", "character": "Curtis", "id": 1332234, "credit_id": "53a422af0e0a2667d9001281", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Paul Le Mat", "character": "McMahon", "id": 12406, "credit_id": "53a422c40e0a2667d000124f", "cast_id": 32, "profile_path": "/lVFnr0ErI5A2ONotKRaAGE6xzAf.jpg", "order": 22}, {"name": "Thomas L. Bellissimo", "character": "Cop #2", "id": 1280435, "credit_id": "53a422d80e0a2667d9001289", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Cherish Lee", "character": "Kammi", "id": 112997, "credit_id": "53a422ec0e0a2667d0001252", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Sam Vlahos", "character": "Dr. Aguilar", "id": 157567, "credit_id": "53a423000e0a2667c90012c6", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Tara Blanchard", "character": "Ally Vinyard", "id": 1332235, "credit_id": "53a423160e0a2667c90012c9", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Anne Lambton", "character": "Cassandra", "id": 40310, "credit_id": "53a423250e0a2667c6001322", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Steve Wolford", "character": "Reporter", "id": 1332236, "credit_id": "53a423360e0a2667c90012cf", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Richard Noyce", "character": "Desk Sergeant", "id": 1332238, "credit_id": "53a4234c0e0a2667d50012f0", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Danso Gordon", "character": "Buddy #1", "id": 67453, "credit_id": "53a4235f0e0a2667d50012f6", "cast_id": 40, "profile_path": "/rgASd05kYCFjItn9dNk9Qj99Z5F.jpg", "order": 30}, {"name": "David Basulto", "character": "Guard", "id": 170730, "credit_id": "53a4239c0e0a2667d9001299", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "Alexis Rose Coen", "character": "Young Ally Vinyard", "id": 1332240, "credit_id": "53a423ae0e0a2667bf00126d", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Kiante Elam", "character": "Lawrence's Partner", "id": 1332241, "credit_id": "53a423c20e0a2667d5001303", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Paul Hopkins", "character": "Student", "id": 102853, "credit_id": "53a423d80e0a2667bf00127f", "cast_id": 45, "profile_path": "/bETrIuwlbd37J2Ljye4n5yjPjTj.jpg", "order": 34}, {"name": "Keith Odett", "character": "Random Skinhead", "id": 1332242, "credit_id": "53a423ee0e0a2667d0001263", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Jim Norton", "character": "Randy", "id": 14950, "credit_id": "53a43c84c3a3682a3f001146", "cast_id": 64, "profile_path": "/lndFtmSwtCzoeWkgjqJBqVRKGk2.jpg", "order": 36}, {"name": "Paul E. Short", "character": "Stocky Buddy", "id": 1331794, "credit_id": "53a424040e0a2667d0001267", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Nigel Miguel", "character": "Basketball Player", "id": 134770, "credit_id": "53a43d59c3a3682a4b001111", "cast_id": 65, "profile_path": null, "order": 38}, {"name": "Darrell Britt", "character": "White Supremicist (uncredited)", "id": 1332243, "credit_id": "53a424580e0a2667cd0013ae", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Robert 'Duckie' Carpenter", "character": "Skinhead (uncredited)", "id": 1332244, "credit_id": "53a4246a0e0a2667c90012eb", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Sydney 'Big Dawg' Colston", "character": "Prison Gang Leader (uncredited)", "id": 202080, "credit_id": "53a4247c0e0a2667c90012ef", "cast_id": 51, "profile_path": null, "order": 41}, {"name": "Hans Cozzens", "character": "Police officer #2 (uncredited)", "id": 1332246, "credit_id": "53a424920e0a2667d500131a", "cast_id": 52, "profile_path": null, "order": 42}, {"name": "John Embry", "character": "Parking Lot Skinhead (uncredited)", "id": 1332247, "credit_id": "53a424a80e0a2667cd0013ba", "cast_id": 53, "profile_path": null, "order": 43}, {"name": "Maximillian Kesmodel", "character": "Young Danny Vinyard (uncredited)", "id": 1332248, "credit_id": "53a424bc0e0a2667d000127c", "cast_id": 54, "profile_path": null, "order": 44}, {"name": "Barbie Marie", "character": "Student (uncredited)", "id": 40072, "credit_id": "53a424ce0e0a2667c90012f8", "cast_id": 55, "profile_path": null, "order": 45}, {"name": "Allie Moss", "character": "Skinhead Girlfriend (uncredited)", "id": 104619, "credit_id": "53a424df0e0a2667c90012fb", "cast_id": 56, "profile_path": null, "order": 46}, {"name": "Louis E. Rosas", "character": "Jail Inmate (uncredited)", "id": 1332249, "credit_id": "53a425280e0a2667d90012bb", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Sam Sarpong", "character": "Jail Inmate (uncredited)", "id": 146008, "credit_id": "53a43e92c3a3682a4e000fcd", "cast_id": 66, "profile_path": "/sTwCo10iZpyOq5SGP7NkGb58b6Y.jpg", "order": 48}, {"name": "Jeremy Sweet", "character": "Skinhead (uncredited)", "id": 1332252, "credit_id": "53a425980e0a2667bf0012aa", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Selwyn Ward", "character": "High School Student Leaving Bathroom (uncredited)", "id": 1229751, "credit_id": "53a425af0e0a2667d90012c7", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Denney Pierce", "character": "Arresting Officer (uncredited)", "id": 159264, "credit_id": "53a424f20e0a2667d90012b5", "cast_id": 57, "profile_path": null, "order": 51}, {"name": "Glendon Rich", "character": "Deputy Sheriff (uncredited)", "id": 1274297, "credit_id": "53a43ed8c3a3682a420011d4", "cast_id": 67, "profile_path": null, "order": 52}], "directors": [{"name": "Tony Kaye", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8002177", "profile_path": "/JCcF3JbptET0eF44w3sfMJw5E4.jpg", "id": 814}], "vote_average": 7.8, "runtime": 119}, "74": {"poster_path": "/xXMM9KY2eq1SDOQif9zO91YOBA8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 591739379, "overview": "The extraordinary battle for the future of humankind through the eyes of one American family fighting to survive it. Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop of his teenage son Robbie and young daughter Rachel for a rare weekend visit, a strange and powerful lightning storm touches down.", "video": false, "id": 74, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "War of the Worlds", "tagline": "They're already here.", "vote_count": 570, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0407304", "adult": false, "backdrop_path": "/hozzH6DHXjqSVx9LyipyQiWc7MA.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2005-06-28", "popularity": 1.32935476562618, "original_title": "War of the Worlds", "budget": 132000000, "cast": [{"name": "Tom Cruise", "character": "Ray Ferrier", "id": 500, "credit_id": "52fe4213c3a36847f800226b", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Dakota Fanning", "character": "Rachel Ferrier", "id": 501, "credit_id": "52fe4213c3a36847f800226f", "cast_id": 14, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 1}, {"name": "Miranda Otto", "character": "Mary-Ann", "id": 502, "credit_id": "52fe4213c3a36847f8002273", "cast_id": 15, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 2}, {"name": "Justin Chatwin", "character": "Robbie Ferrier", "id": 503, "credit_id": "52fe4213c3a36847f8002277", "cast_id": 16, "profile_path": "/rG5aYePsnpDf3H5NS6iH0F63WIy.jpg", "order": 3}, {"name": "Tim Robbins", "character": "Harlan Ogilvy", "id": 504, "credit_id": "52fe4213c3a36847f800227b", "cast_id": 17, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 4}, {"name": "Camillia Sanes", "character": "News Producer", "id": 505, "credit_id": "52fe4213c3a36847f800227f", "cast_id": 18, "profile_path": "/vXcl0AppqxNOezulogepdhiDos9.jpg", "order": 5}, {"name": "John Scurti", "character": "Ferry Captain", "id": 506, "credit_id": "52fe4213c3a36847f8002283", "cast_id": 19, "profile_path": "/eX86aQIuaZORhGRpf7TiGdZ2K6g.jpg", "order": 6}, {"name": "Morgan Freeman", "character": "Narrator (Voice)", "id": 192, "credit_id": "52fe4213c3a36847f8002287", "cast_id": 20, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 7}, {"name": "Takayo Fischer", "character": "Older Woman", "id": 33500, "credit_id": "52fe4214c3a36847f800229d", "cast_id": 24, "profile_path": "/gNIFc8rWnFzplkisEonefyxjmG1.jpg", "order": 8}, {"name": "Yul Vazquez", "character": "Julio", "id": 75604, "credit_id": "52fe4214c3a36847f80022a1", "cast_id": 25, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 9}, {"name": "Ann Robinson", "character": "Grandmother", "id": 103079, "credit_id": "530a66539251411108003d2a", "cast_id": 27, "profile_path": "/bsA08Ny0XnOvQvW0IVCi0jRo6XV.jpg", "order": 10}, {"name": "Gene Barry", "character": "Grandfather", "id": 56442, "credit_id": "530a66419251411111003f15", "cast_id": 26, "profile_path": "/q2DQGsyA5hxyKDEiLeR3yVGmcqM.jpg", "order": 11}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4213c3a36847f8002225", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 5.8, "runtime": 116}, "180299": {"poster_path": "/egBhIDn9P9Pw3z0UFL3ylHikdzJ.jpg", "production_countries": [{"iso_3166_1": "ID", "name": "Indonesia"}], "revenue": 6600000, "overview": "After fighting his way through an apartment building populated by an army of dangerous criminals and escaping with his life, SWAT team member Rama goes undercover, joining a powerful Indonesian crime syndicate to protect his family and uncover corrupt members of his own force.", "video": false, "id": 180299, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Raid 2", "tagline": "It's Not Over Yet", "vote_count": 264, "homepage": "http://www.sonyclassics.com/theraid2/", "belongs_to_collection": {"backdrop_path": "/oRQ7INsPDVon7U2jphXDr7LSP3H.jpg", "poster_path": "/eAlYfpNmZ2BFjdamgXvy96kt3WG.jpg", "id": 257960, "name": "The Raid Collection"}, "original_language": "id", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "id", "name": "Bahasa indonesia"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2265171", "adult": false, "backdrop_path": "/1UVnDeeiN6IoJqgCJDfa1XTzB4N.jpg", "production_companies": [{"name": "XYZ Films", "id": 12142}, {"name": "Pt. Merantau Films", "id": 12141}], "release_date": "2014-03-28", "popularity": 0.629084271753696, "original_title": "The Raid 2: Berandal", "budget": 4500000, "cast": [{"name": "Iko Uwais", "character": "Rama", "id": 113732, "credit_id": "52fe4c449251416c7511520d", "cast_id": 3, "profile_path": "/5unOYIpJUl35q5Q7dG1A6tJF2Jk.jpg", "order": 0}, {"name": "Arifin Putra", "character": "Ucok", "id": 1290939, "credit_id": "52fe4c449251416c75115217", "cast_id": 5, "profile_path": "/271wW3kxeiQgnXiLAXs3QzfXsmd.jpg", "order": 1}, {"name": "Tio Pakusodewo", "character": "Bangun", "id": 1155281, "credit_id": "52fe4c449251416c7511521b", "cast_id": 6, "profile_path": "/odGJFwM9KrsmR6JQabv8SfWA3KE.jpg", "order": 2}, {"name": "Oka Antara", "character": "Eka", "id": 1154465, "credit_id": "52fe4c449251416c7511521f", "cast_id": 7, "profile_path": "/2BY3OgPWwbpGN7rQEXGlm1muqtQ.jpg", "order": 3}, {"name": "Julie Estelle", "character": "Hammer Girl", "id": 145882, "credit_id": "52fe4c449251416c75115223", "cast_id": 8, "profile_path": "/AtX1IFI7ionpsKuTVr4gOWqEnhz.jpg", "order": 4}, {"name": "Ken'ichi End\u00f4", "character": "Hideaki Goto", "id": 35642, "credit_id": "52fe4c449251416c7511522b", "cast_id": 10, "profile_path": "/aifZwBDDgNNhBiz8UfzppwhX5Zf.jpg", "order": 6}, {"name": "Kazuki Kitamura", "character": "Ryuichi", "id": 2542, "credit_id": "52fe4c449251416c7511522f", "cast_id": 11, "profile_path": "/2DefK5vG0JquPJ1UdcckaPRcy96.jpg", "order": 7}, {"name": "Donny Alamsyah", "character": "Andi", "id": 1202416, "credit_id": "532c53bec3a3684bc6001943", "cast_id": 12, "profile_path": "/r0nj2yPF760NEgj2tVT5TCY2HjG.jpg", "order": 8}, {"name": "Alek Abbad", "character": "Bejo", "id": 1304641, "credit_id": "5331b0fec3a3686a9d001f36", "cast_id": 13, "profile_path": "/cK6IXZP6PKpgw95QE5dv3jeNBRZ.jpg", "order": 9}, {"name": "Very Tri Yulisman", "character": "Baseball Bat Man", "id": 1304642, "credit_id": "5331b118c3a3686aa5001e1a", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Yayan Ruhian", "character": "Prakoso", "id": 142019, "credit_id": "5367d730c3a3681231004d5f", "cast_id": 15, "profile_path": "/dt6EJRqA4UMHWIEDddbkONXaz4k.jpg", "order": 11}, {"name": "Ryuhei Matsuda", "character": "Keiichi", "id": 72932, "credit_id": "53712646c3a3687012000448", "cast_id": 16, "profile_path": "/h5LaFzOmcIufsD0i0nv12AG00Mo.jpg", "order": 12}, {"name": "Roy Marten", "character": "Reza", "id": 1307923, "credit_id": "537d9566c3a36805a8000ac2", "cast_id": 17, "profile_path": "/2SmtBdoYo1B7Ap0tvaD5Bs5Tcph.jpg", "order": 13}, {"name": "Epy Kusnandar", "character": "Topan", "id": 1180616, "credit_id": "5452d6370e0a265f2e0004db", "cast_id": 39, "profile_path": "/epfkHCgeWv4QErSoU6jMyTJKrPO.jpg", "order": 14}, {"name": "Cok Simbara", "character": "Bunawar", "id": 1379748, "credit_id": "5452d65b0e0a265f2800055e", "cast_id": 40, "profile_path": "/9qXG4YMRXtAfQqzruqndQl0fFYU.jpg", "order": 15}, {"name": "Cecep Arif Rahman", "character": "The Assassin", "id": 1379749, "credit_id": "5452d6830e0a265f1e00052c", "cast_id": 41, "profile_path": null, "order": 16}], "directors": [{"name": "Gareth Evans", "department": "Directing", "job": "Director", "credit_id": "52fe4c449251416c75115203", "profile_path": "/alW7ScKUxyiI2TOBYOZkACsLD7c.jpg", "id": 142013}], "vote_average": 7.7, "runtime": 150}, "76": {"poster_path": "/4sDmI88gUAInHitaTkGej90Q3Z7.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5535405, "overview": "A dialogue marathon of a film, this fairytale love story of an American boy and French girl. During a day and a night together in Vienna their two hearts collide.", "video": false, "id": 76, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Before Sunrise", "tagline": "Can the greatest moment of your life last only one night?", "vote_count": 277, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wtNugZq8ZzBYwPIh3VoNUJdkBWG.jpg", "poster_path": "/fYSKN1tV1gdiTMfzRpZpKspGAHp.jpg", "id": 123800, "name": "Before... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0112471", "adult": false, "backdrop_path": "/x2M8mp6wSU4iFPECacHJkQuuvYx.jpg", "production_companies": [{"name": "Detour Film Production", "id": 98}], "release_date": "1995-01-27", "popularity": 0.903404068682618, "original_title": "Before Sunrise", "budget": 2500000, "cast": [{"name": "Ethan Hawke", "character": "Jesse", "id": 569, "credit_id": "52fe4214c3a36847f80023e5", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Julie Delpy", "character": "C\u00e9line", "id": 1146, "credit_id": "52fe4214c3a36847f800241b", "cast_id": 16, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Andrea Eckert", "character": "Wife on Train", "id": 571, "credit_id": "52fe4214c3a36847f80023e9", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Hanno P\u00f6schl", "character": "Husband on Train", "id": 572, "credit_id": "52fe4214c3a36847f80023ed", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Karl Bruckschwaiger", "character": "Guy on Bridge", "id": 573, "credit_id": "52fe4214c3a36847f80023f1", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Tex Rubinowitz", "character": "Guy on Bridge", "id": 574, "credit_id": "52fe4214c3a36847f80023f5", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Erni Mangold", "character": "Palm Reader", "id": 146859, "credit_id": "52fe4214c3a36847f8002457", "cast_id": 28, "profile_path": "/rPeOwfbWBeuNWHvc2UoMPrHyOQl.jpg", "order": 6}, {"name": "Dominik Castell", "character": "Street Poet", "id": 3735, "credit_id": "52fe4214c3a36847f8002437", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Haymon Maria Buttinger", "character": "Bartender", "id": 3738, "credit_id": "52fe4214c3a36847f8002443", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Harold Waiglein", "character": "Guitar Player in Club", "id": 3737, "credit_id": "52fe4214c3a36847f800243f", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Bilge Jeschim", "character": "Belly Dancer", "id": 3736, "credit_id": "52fe4214c3a36847f800243b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Kurti", "character": "Percussionist", "id": 3739, "credit_id": "52fe4214c3a36847f8002447", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Hans Weingartner", "character": "Cafe Patron", "id": 3722, "credit_id": "52fe4214c3a36847f8002417", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Liese Lyon", "character": "Cafe Patron", "id": 1265413, "credit_id": "52fe4214c3a36847f800245b", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Peter Ily Huemer", "character": "Cafe Patron", "id": 1265414, "credit_id": "52fe4214c3a36847f800245f", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Otto Reiter", "character": "Cafe Patron", "id": 1265415, "credit_id": "52fe4214c3a36847f8002463", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Hubert Fabian Kulterer", "character": "Cafe Patron", "id": 1265416, "credit_id": "52fe4214c3a36847f8002467", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Branko Andric", "character": "Cafe Patron", "id": 1265417, "credit_id": "52fe4214c3a36847f800246b", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Constanze Schweiger", "character": "Cafe Patron", "id": 1265418, "credit_id": "52fe4214c3a36847f800246f", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "John Sloss", "character": "Cafe Patron", "id": 3727, "credit_id": "52fe4214c3a36847f8002473", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Alexandra Seibel", "character": "Cafe Patron", "id": 1265419, "credit_id": "52fe4214c3a36847f8002477", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Georg Sch\u00f6llhammer", "character": "Cafe Patron", "id": 1265420, "credit_id": "52fe4214c3a36847f800247b", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Christian Ankowitsch", "character": "Cafe Patron", "id": 1265421, "credit_id": "52fe4214c3a36847f800247f", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Wilbirg Reiter", "character": "Cafe Patron", "id": 1265422, "credit_id": "52fe4214c3a36847f8002483", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Barbara Klebel", "character": "Musician on Boat", "id": 1265423, "credit_id": "52fe4214c3a36847f8002487", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Wolfgang Staribacher", "character": "Musician on Boat", "id": 1265424, "credit_id": "52fe4214c3a36847f800248b", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Wolfgang Gl\u00fcxam", "character": "Harpsichord Player", "id": 1265425, "credit_id": "52fe4214c3a36847f800248f", "cast_id": 42, "profile_path": null, "order": 26}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f80023e1", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.4, "runtime": 105}, "77": {"poster_path": "/fQMSaP88cf1nz4qwuNEEFtazuDM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39723096, "overview": "Suffering short-term memory loss after a head injury, Leonard Shelby embarks on a grim quest to find the lowlife who murdered his wife in this gritty, complex thriller that packs more knots than a hangman's noose. To carry out his plan, Shelby snaps Polaroids of people and places, jotting down contextual notes on the backs of photos to aid in his search and jog his memory. He even tattoos his own body in a desperate bid to remember.", "video": false, "id": 77, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Memento", "tagline": "Some memories are best forgotten.", "vote_count": 1074, "homepage": "http://www.otnemem.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0209144", "adult": false, "backdrop_path": "/oBUznaSdjkY3HtQUzAxgdIZqh4w.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Newmarket Capital Group", "id": 506}, {"name": "Team Todd", "id": 598}, {"name": "I Remember Productions", "id": 34446}], "release_date": "2000-10-11", "popularity": 1.58227714442313, "original_title": "Memento", "budget": 9000000, "cast": [{"name": "Guy Pearce", "character": "Leonard", "id": 529, "credit_id": "52fe4214c3a36847f80024db", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Natalie", "id": 530, "credit_id": "52fe4214c3a36847f80024df", "cast_id": 5, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Joe Pantoliano", "character": "Teddy Gammell", "id": 532, "credit_id": "52fe4214c3a36847f80024e3", "cast_id": 6, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 2}, {"name": "Mark Boone Junior", "character": "Burt", "id": 534, "credit_id": "52fe4214c3a36847f80024e7", "cast_id": 7, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 3}, {"name": "Russ Fega", "character": "Waiter", "id": 535, "credit_id": "52fe4214c3a36847f80024eb", "cast_id": 8, "profile_path": "/7JFQueMbXqGIz16wKBlok7WfNNz.jpg", "order": 4}, {"name": "Jorja Fox", "character": "Leonard's Wife", "id": 536, "credit_id": "52fe4214c3a36847f80024ef", "cast_id": 9, "profile_path": "/KmCnCaOutfi5tWlgD9U2AZHpqi.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Sammy", "id": 537, "credit_id": "52fe4214c3a36847f80024f3", "cast_id": 10, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Harriet Sansom Harris", "character": "Mrs. Jankis", "id": 538, "credit_id": "52fe4214c3a36847f80024f7", "cast_id": 11, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 7}, {"name": "Thomas Lennon", "character": "Doctor", "id": 539, "credit_id": "52fe4214c3a36847f80024fb", "cast_id": 12, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 8}, {"name": "Callum Keith Rennie", "character": "Dodd", "id": 540, "credit_id": "52fe4214c3a36847f80024ff", "cast_id": 13, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 9}, {"name": "Kimberly Campbell", "character": "Blonde", "id": 542, "credit_id": "52fe4214c3a36847f8002503", "cast_id": 14, "profile_path": "/sgIVwvbipevAf9SplOOctJRuP36.jpg", "order": 10}, {"name": "Marianne Muellerleile", "character": "Tattooist", "id": 543, "credit_id": "52fe4214c3a36847f8002507", "cast_id": 15, "profile_path": "/5Qex2uBzsjqSRUFeeW4sT7FhuYH.jpg", "order": 11}, {"name": "Larry Holden", "character": "Jimmy", "id": 544, "credit_id": "52fe4214c3a36847f800250b", "cast_id": 16, "profile_path": "/8yV3Rfvt0iWJZwO6jt2YnkdzdzL.jpg", "order": 12}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f80024cb", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.7, "runtime": 113}, "78": {"poster_path": "/p64TtbZGCElxQHpAMWmDHkWJlH2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32768670, "overview": "In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to kill a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.", "video": false, "id": 78, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blade Runner", "tagline": "Man has made his match... now it's his problem.", "vote_count": 1182, "homepage": "http://bladerunnerthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0083658", "adult": false, "backdrop_path": "/tv8J6uCTKsTlASa8luJqrFiJlBX.jpg", "production_companies": [{"name": "Shaw Brothers", "id": 5798}, {"name": "The Ladd Company", "id": 7965}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1982-06-25", "popularity": 1.65418683462246, "original_title": "Blade Runner", "budget": 28000000, "cast": [{"name": "Harrison Ford", "character": "Rick Deckard", "id": 3, "credit_id": "52fe4214c3a36847f800259f", "cast_id": 6, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Rutger Hauer", "character": "Roy Batty", "id": 585, "credit_id": "52fe4214c3a36847f80025a3", "cast_id": 7, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 1}, {"name": "Sean Young", "character": "Rachael", "id": 586, "credit_id": "52fe4214c3a36847f80025a7", "cast_id": 8, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 2}, {"name": "Edward James Olmos", "character": "Gaff", "id": 587, "credit_id": "52fe4214c3a36847f80025ab", "cast_id": 9, "profile_path": "/i7zKqsFqL5L1HPmAMeSA1xZzlD5.jpg", "order": 3}, {"name": "Daryl Hannah", "character": "Pris", "id": 589, "credit_id": "52fe4214c3a36847f80025b3", "cast_id": 11, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 5}, {"name": "William Sanderson", "character": "J.F. Sebastian", "id": 590, "credit_id": "52fe4214c3a36847f80025b7", "cast_id": 12, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 6}, {"name": "Brion James", "character": "Leon Kowalski", "id": 591, "credit_id": "52fe4214c3a36847f80025bb", "cast_id": 13, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 7}, {"name": "Joe Turkel", "character": "Eldon Tyrell", "id": 592, "credit_id": "52fe4214c3a36847f80025bf", "cast_id": 14, "profile_path": "/8d16GA57SnVXP3WGB0fbkFCKily.jpg", "order": 8}, {"name": "Joanna Cassidy", "character": "Zhora", "id": 593, "credit_id": "52fe4214c3a36847f80025c3", "cast_id": 15, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 9}, {"name": "James Hong", "character": "Hannibal Chew", "id": 20904, "credit_id": "52fe4214c3a36847f8002615", "cast_id": 29, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 10}, {"name": "Morgan Paull", "character": "Holden", "id": 58495, "credit_id": "52fe4214c3a36847f8002625", "cast_id": 33, "profile_path": "/k8EaOIcEWYrWknWyR4zfQbansPN.jpg", "order": 11}, {"name": "Kevin Thompson", "character": "Bear", "id": 53760, "credit_id": "52fe4214c3a36847f8002629", "cast_id": 34, "profile_path": "/pUKpoqEjQg7Isu0dJFBtootlWad.jpg", "order": 12}, {"name": "John Edward Allen", "character": "Kaiser", "id": 943481, "credit_id": "52fe4214c3a36847f800262d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Hy Pyke", "character": "Taffey Lewis", "id": 107074, "credit_id": "52fe4214c3a36847f8002631", "cast_id": 36, "profile_path": "/b7DfZgPV2lOvPJZNRrvMoAzxJ0t.jpg", "order": 14}, {"name": "Kimiko Hiroshige", "character": "Cambodian Lady", "id": 951333, "credit_id": "52fe4214c3a36847f8002635", "cast_id": 37, "profile_path": "/1WPGIg7JzUSGviTjH8vorQ4xG69.jpg", "order": 15}, {"name": "Carolyn DeMirjian", "character": "Saleslady", "id": 949610, "credit_id": "52fe4214c3a36847f8002639", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Bob Okazaki", "character": "Howie Lee", "id": 1221198, "credit_id": "52fe4214c3a36847f8002643", "cast_id": 41, "profile_path": "/ke2y5GnDnVR2BQ6y8Z8B4TXq2aj.jpg", "order": 17}, {"name": "M. Emmet Walsh", "character": "Bryant", "id": 588, "credit_id": "5402bd1bc3a3684360004649", "cast_id": 42, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 18}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f8002595", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.6, "runtime": 117}, "79": {"poster_path": "/xkJnow23eDxwQXB0iIWAWkBF47y.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 177394432, "overview": "One man defeated three assassins who sought to murder the most powerful warlord in pre-unified China.", "video": false, "id": 79, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Hero", "tagline": "One man's strength will unite an empire.", "vote_count": 165, "homepage": "", "belongs_to_collection": null, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0299977", "adult": false, "backdrop_path": "/xC9DRxpKgqJKDYLa9mkNa74eX4q.jpg", "production_companies": [{"name": "Beijing New Picture Film Co. Ltd.", "id": 724}, {"name": "China Film Co-Production Corporation", "id": 2269}], "release_date": "2002-12-19", "popularity": 0.97129713594225, "original_title": "\u82f1\u96c4", "budget": 31000000, "cast": [{"name": "Jet Li", "character": "Nameless", "id": 1336, "credit_id": "52fe4214c3a36847f8002697", "cast_id": 6, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Tony Leung Chiu-Wai", "character": "Broken Sword", "id": 1337, "credit_id": "52fe4214c3a36847f800269b", "cast_id": 7, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 1}, {"name": "Maggie Cheung", "character": "Flying Snow", "id": 1338, "credit_id": "52fe4214c3a36847f800269f", "cast_id": 8, "profile_path": "/qDkqRF3SwuopbT2bw6B4amEwQzO.jpg", "order": 2}, {"name": "Zhang Ziyi", "character": "Moon", "id": 1339, "credit_id": "52fe4214c3a36847f80026a3", "cast_id": 9, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 3}, {"name": "Chen Dao-Ming", "character": "King of Qin", "id": 1340, "credit_id": "52fe4214c3a36847f80026a7", "cast_id": 10, "profile_path": "/scPOGddPDvmN46v2uJ2vRubm65c.jpg", "order": 4}, {"name": "Donnie Yen", "character": "Sky", "id": 1341, "credit_id": "52fe4214c3a36847f80026ab", "cast_id": 11, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 5}, {"name": "Liu Zhong Yuan", "character": "Scholar", "id": 1342, "credit_id": "52fe4214c3a36847f80026af", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Zheng Tia Yong", "character": "Old Servant", "id": 1343, "credit_id": "52fe4214c3a36847f80026b3", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Yan Qin", "character": "Prime Minister", "id": 1344, "credit_id": "52fe4214c3a36847f80026b7", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Chang Xiao Yang", "character": "General", "id": 1345, "credit_id": "52fe4214c3a36847f80026bb", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "James Hong", "character": "Qin Emperor (voice)", "id": 20904, "credit_id": "549af481c3a3680b27001556", "cast_id": 30, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 10}, {"name": "Xia Bin", "character": "Qin Guard #4", "id": 1403596, "credit_id": "549af4c2925141311f001d2d", "cast_id": 31, "profile_path": null, "order": 11}], "directors": [{"name": "Zhang Yimou", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f8002709", "profile_path": "/rXancm9GMRLQlGc4dz6o5BFtnRy.jpg", "id": 607}], "vote_average": 6.6, "runtime": 99}, "80": {"poster_path": "/cIj6yWJKUjdCCO7vuZQKl0NqCQe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15992615, "overview": "Nine years ago two strangers met by chance and spent a night in Vienna that ended before sunrise. They are about to meet for the first time since. Now they have one afternoon to find out if they belong together.", "video": false, "id": 80, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Before Sunset", "tagline": "What if you had a second chance with the one that got away?", "vote_count": 203, "homepage": "http://www.warnerbros.com/?site=beforesunset#/page=movies&pid=f-57b53b9e/BEFORE_SUNSET&asset=059437/Before_Sunset_-_Trailer_1A&type=video/", "belongs_to_collection": {"backdrop_path": "/wtNugZq8ZzBYwPIh3VoNUJdkBWG.jpg", "poster_path": "/fYSKN1tV1gdiTMfzRpZpKspGAHp.jpg", "id": 123800, "name": "Before... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0381681", "adult": false, "backdrop_path": "/tNOf61ltTMg8UD1Hi9yQravElFF.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Detour Film Production", "id": 98}], "release_date": "2004-02-10", "popularity": 0.471635829726755, "original_title": "Before Sunset", "budget": 2700000, "cast": [{"name": "Ethan Hawke", "character": "Jesse", "id": 569, "credit_id": "52fe4214c3a36847f800276b", "cast_id": 8, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Julie Delpy", "character": "C\u00e9line", "id": 1146, "credit_id": "52fe4214c3a36847f800276f", "cast_id": 13, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Vernon Dobtcheff", "character": "Bookstore Manager", "id": 649, "credit_id": "52fe4214c3a36847f80027a3", "cast_id": 26, "profile_path": "/lcPki2IDdmRvqiBbv2RUBfgm3IH.jpg", "order": 2}, {"name": "Louise Lemoine Torr\u00e8s", "character": "Journalist #1", "id": 651, "credit_id": "52fe4214c3a36847f80027a7", "cast_id": 27, "profile_path": null, "order": 3}, {"name": "Rodolphe Pauly", "character": "Journalist #2", "id": 1275639, "credit_id": "52fe4214c3a36847f80027ab", "cast_id": 28, "profile_path": null, "order": 4}, {"name": "Mariane Plasteig", "character": "Waitress", "id": 657, "credit_id": "52fe4215c3a36847f80027af", "cast_id": 29, "profile_path": null, "order": 5}, {"name": "Diabolo", "character": "Philippe", "id": 3728, "credit_id": "52fe4215c3a36847f80027b3", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "Denis Evrard", "character": "Boat Attendant", "id": 3729, "credit_id": "52fe4215c3a36847f80027b7", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Albert Delpy", "character": "Man at Grill", "id": 3730, "credit_id": "52fe4215c3a36847f80027bb", "cast_id": 32, "profile_path": "/eydDphfX1BM7Q0HvLKFGhAIJGlW.jpg", "order": 8}, {"name": "Marie Pillet", "character": "Woman in Courtyard", "id": 3731, "credit_id": "52fe4215c3a36847f80027bf", "cast_id": 33, "profile_path": "/39EBKcbGa8PUIRL2q0dF31LZ4fQ.jpg", "order": 9}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f8002743", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.4, "runtime": 77}, "81": {"poster_path": "/y2rl0OkMfZHpBaQYPfSJmLMOxwp.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 3301446, "overview": "Nausica\u00e4, a gentle young princess, has an empathetic bond with the giant mutated insects that evolved in the wake of the destruction of the ecosystem. Traveling by cumbersome flying ship, on the backs of giant birds, and perched atop her beloved glider, Nausica\u00e4 and her allies must negotiate peace between kingdoms battling over the last of the world's precious natural resources.", "video": false, "id": 81, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Nausica\u00e4 of the Valley of the Wind", "tagline": "", "vote_count": 289, "homepage": "http://disneydvd.disney.go.com/nausicaa-of-the-valley-of-the-wind.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0087544", "adult": false, "backdrop_path": "/qKIldRZ3jy3uGWdrNIt3P7QA5J3.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Nibariki", "id": 12516}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "Topcraft", "id": 29}], "release_date": "1984-03-11", "popularity": 1.1239258259499, "original_title": "\u98a8\u306e\u8c37\u306e\u30ca\u30a6\u30b7\u30ab", "budget": 1000000, "cast": [{"name": "Sumi Shimamoto", "character": "Nausica\u00e4 (Voice)", "id": 613, "credit_id": "52fe4215c3a36847f800281f", "cast_id": 5, "profile_path": "/cB1JXMD6Eyb1ONKfsj32Lai4AfV.jpg", "order": 0}, {"name": "Mahito Tsujimura", "character": "Jihl (Voice)", "id": 614, "credit_id": "52fe4215c3a36847f8002823", "cast_id": 6, "profile_path": "/dqVhQYTCYWOCuEofBZ5O3Xdgd3y.jpg", "order": 1}, {"name": "Hisako Ky\u014dda", "character": "Oh-Baba (Voice)", "id": 615, "credit_id": "52fe4215c3a36847f8002827", "cast_id": 7, "profile_path": "/3HC0RARybfpcA1D0vS349UHwCea.jpg", "order": 2}, {"name": "Gor\u014d Naya", "character": "Yupa (Voice)", "id": 616, "credit_id": "52fe4215c3a36847f800282b", "cast_id": 8, "profile_path": "/emnvHXMyXPnJteqypnp5LreX4YG.jpg", "order": 3}, {"name": "Ichir\u014d Nagai", "character": "Mito (Voice)", "id": 617, "credit_id": "52fe4215c3a36847f800282f", "cast_id": 9, "profile_path": "/dI7cAwwF6LJ9uQs0BB6jbr8mghm.jpg", "order": 4}, {"name": "K\u014dhei Miyauchi", "character": "Goru (Voice)", "id": 618, "credit_id": "52fe4215c3a36847f8002833", "cast_id": 10, "profile_path": "/AeGLykfdziKEpQ8NY2uTfE5Lril.jpg", "order": 5}, {"name": "J\u00f4ji Yanami", "character": "Gikkuri (Voice)", "id": 619, "credit_id": "52fe4215c3a36847f8002837", "cast_id": 11, "profile_path": "/6PgJcEz2RgGcZ1TwfkIIuhrUaXz.jpg", "order": 6}, {"name": "Minoru Yada", "character": "Niga (Voice)", "id": 620, "credit_id": "52fe4215c3a36847f800283b", "cast_id": 12, "profile_path": "/ou7xfpY5ao7uKfFAWLpJAIr6bHm.jpg", "order": 7}, {"name": "Rihoko Yoshida", "character": "Teto / Girl C (Voice)", "id": 621, "credit_id": "52fe4215c3a36847f800283f", "cast_id": 13, "profile_path": "/qnb5bWs7wdiVCLpTggIZId5Pj2q.jpg", "order": 8}, {"name": "Y\u014dji Matsuda", "character": "Asbel (Voice)", "id": 622, "credit_id": "52fe4215c3a36847f8002843", "cast_id": 14, "profile_path": "/wZijOHyaFIVKJY9yfyIsusamFbv.jpg", "order": 9}, {"name": "M\u00eena Tominaga", "character": "Rastel (Voice)", "id": 623, "credit_id": "52fe4215c3a36847f8002847", "cast_id": 15, "profile_path": "/yTdkX8n81mdhY8YZtuEVRihoYKB.jpg", "order": 10}, {"name": "Yoshiko Sakakibara", "character": "Kushana (Voice)", "id": 624, "credit_id": "52fe4215c3a36847f800284b", "cast_id": 16, "profile_path": "/aocre8nV2T4VpIHasdguw1W7edM.jpg", "order": 11}, {"name": "Iemasa Kayumi", "character": "Kurotowa (Voice)", "id": 625, "credit_id": "52fe4215c3a36847f800284f", "cast_id": 17, "profile_path": "/doji21RoWXS4gjWkBLyClNicHKW.jpg", "order": 12}, {"name": "Tetsuo Mizutori", "character": "Commando (Voice)", "id": 626, "credit_id": "52fe4215c3a36847f8002853", "cast_id": 18, "profile_path": "/wi0ufCIpj2go4LVLQ71tiDjPG6Z.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002815", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.8, "runtime": 117}, "82": {"poster_path": "/3BsNsigWcET4tKLZZhJegw7eOjF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163794509, "overview": "Miami Vice is a feature film based on the 1980's action drama TV series. The film tells the story of vice detectives Crockett and Tubbs and how their personal and professional lives are dangerously getting mixed.", "video": false, "id": 82, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Miami Vice", "tagline": "No Law. No Rules. No Order.", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0430357", "adult": false, "backdrop_path": "/cxiwBBPdBAFV1SbMCRt7CMgLhLi.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-07-27", "popularity": 0.869194007424346, "original_title": "Miami Vice", "budget": 135000000, "cast": [{"name": "Jamie Foxx", "character": "Detective Ricardo \"Rico\" Tubbs", "id": 134, "credit_id": "52fe4215c3a36847f800291f", "cast_id": 5, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Detective James \"Sonny\" Crockett", "id": 72466, "credit_id": "52fe4215c3a36847f8002977", "cast_id": 25, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Gong Li", "character": "Isabella", "id": 643, "credit_id": "52fe4215c3a36847f8002923", "cast_id": 7, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 2}, {"name": "Luis Tosar", "character": "Montoya", "id": 16867, "credit_id": "52fe4215c3a36847f800292d", "cast_id": 9, "profile_path": "/tRNvw26QeN80JwWHoamk262hjjq.jpg", "order": 3}, {"name": "Naomie Harris", "character": "Trudy Joplin", "id": 2038, "credit_id": "52fe4215c3a36847f8002931", "cast_id": 10, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 4}, {"name": "Justin Theroux", "character": "Zito", "id": 15009, "credit_id": "52fe4215c3a36847f8002935", "cast_id": 11, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 5}, {"name": "Ciar\u00e1n Hinds", "character": "FBI Agent Fujima", "id": 8785, "credit_id": "52fe4215c3a36847f8002939", "cast_id": 12, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 6}, {"name": "John Ortiz", "character": "Jose Yero", "id": 40543, "credit_id": "52fe4215c3a36847f800293d", "cast_id": 13, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 7}, {"name": "Elizabeth Rodriguez", "character": "Gina Calabrese", "id": 65421, "credit_id": "52fe4215c3a36847f8002941", "cast_id": 14, "profile_path": "/lwJXQ7DDRY9W4pdzQzJKdeKuCFl.jpg", "order": 8}, {"name": "Domenick Lombardozzi", "character": "Switek", "id": 17941, "credit_id": "52fe4215c3a36847f8002945", "cast_id": 15, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 9}, {"name": "Eddie Marsan", "character": "Nicholas", "id": 1665, "credit_id": "52fe4215c3a36847f8002949", "cast_id": 16, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 10}, {"name": "John Hawkes", "character": "Alonzo Stevens", "id": 16861, "credit_id": "52fe4215c3a36847f800294d", "cast_id": 17, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 11}, {"name": "Vivienne Sendaydiego", "character": "ER Doctor", "id": 65422, "credit_id": "52fe4215c3a36847f8002951", "cast_id": 18, "profile_path": "/b3JChYQNrdQKMsqscShvEwPWsGe.jpg", "order": 12}, {"name": "Mike Pniewski", "character": "ER Doctor", "id": 65423, "credit_id": "52fe4215c3a36847f8002955", "cast_id": 19, "profile_path": "/6oJOSX84GXwuR9HA9RXTOeTeiKC.jpg", "order": 13}, {"name": "Isaach De Bankol\u00e9", "character": "Neptune", "id": 4812, "credit_id": "53565f050e0a262861002f4a", "cast_id": 26, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 14}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "53e53d870e0a2628d1000034", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 5.8, "runtime": 134}, "8275": {"poster_path": "/uIqZ7Pt0xMAcQAXUc2nziZc4T47.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The movie will shift its focus on Erik Stifler, the cousin of Matt and Steve, a youngster who is nothing like his wild relations. Peer pressure starts to turn him to live up to the legacy of the other Stiflers when he attends the Naked Mile, a naked run across the college campus. Things get worse when he finds that his cousin Dwight is the life of the party down at the campus", "video": false, "id": 8275, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: The Naked Mile", "tagline": "the most outrageous slice of pie!", "vote_count": 119, "homepage": "http://www.americanreunionmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808146", "adult": false, "backdrop_path": "/pOGdj63Szvtyf1nYa5h8hZ1vDFm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-12-21", "popularity": 0.760579610354926, "original_title": "American Pie Presents: The Naked Mile", "budget": 0, "cast": [{"name": "Christopher McDonald", "character": "Mr. Stifler", "id": 4443, "credit_id": "52fe449ac3a36847f809fa53", "cast_id": 2, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 0}, {"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe449ac3a36847f809fa57", "cast_id": 3, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 1}, {"name": "John White", "character": "Erik Stifler", "id": 26973, "credit_id": "52fe449ac3a36847f809fa5b", "cast_id": 4, "profile_path": "/8zB8P7zyTTftK1acA5UhwWb4jMU.jpg", "order": 2}, {"name": "Jessy Schram", "character": "Tracey", "id": 26974, "credit_id": "52fe449ac3a36847f809fa5f", "cast_id": 5, "profile_path": "/xIU2h01K7fL46RdjZ1mqY9Hvtxm.jpg", "order": 3}, {"name": "Steve Talley", "character": "Dwight Stifler", "id": 26975, "credit_id": "52fe449ac3a36847f809fa63", "cast_id": 6, "profile_path": "/k0T00nPOY7K0Wocd5l7gfjoTJHF.jpg", "order": 4}, {"name": "Jordan Prentice", "character": "Rock", "id": 54476, "credit_id": "52fe449ac3a36847f809fa67", "cast_id": 7, "profile_path": "/6h6zFtJapmtixIenZJV0UYDzCNc.jpg", "order": 5}, {"name": "Jake Siegel", "character": "Mike Coozeman", "id": 54598, "credit_id": "52fe449ac3a36847f809fa6b", "cast_id": 8, "profile_path": "/58L1doLjmEJxxfA23qeu2QjNt4C.jpg", "order": 6}], "directors": [{"name": "Joe Nussbaum", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809fa4f", "profile_path": "/sQR3t4gOVvI58k4fA2YbxnL5ygI.jpg", "id": 54597}], "vote_average": 5.7, "runtime": 97}, "85": {"poster_path": "/44sKJOGP3fTm4QXBcIuqu0RkdP7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 389925971, "overview": "When Dr. Indiana Jones \u2013 the tweed-suited professor who just happens to be a celebrated archaeologist \u2013 is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.", "video": false, "id": 85, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Raiders of the Lost Ark", "tagline": "Indiana Jones - the new hero from the creators of JAWS and STAR WARS.", "vote_count": 1673, "homepage": "http://www.indianajones.com", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "ne", "name": ""}], "imdb_id": "tt0082971", "adult": false, "backdrop_path": "/dU1CArBM4YsKLfG8YvhtuTJJaGR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lucasfilm", "id": 1}], "release_date": "1981-06-12", "popularity": 2.33004170472407, "original_title": "Raiders of the Lost Ark", "budget": 18000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4215c3a36847f8002a05", "cast_id": 2, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Karen Allen", "character": "Marion Ravenwood", "id": 650, "credit_id": "52fe4215c3a36847f8002a09", "cast_id": 3, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 1}, {"name": "Paul Freeman", "character": "Dr. Rene Belloq", "id": 652, "credit_id": "52fe4215c3a36847f8002a0d", "cast_id": 4, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 2}, {"name": "Ronald Lacey", "character": "Major Toht", "id": 653, "credit_id": "52fe4215c3a36847f8002a11", "cast_id": 5, "profile_path": "/nQTtqJP7Go9cnvq9252IXqY9dMM.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "Sallah", "id": 655, "credit_id": "52fe4215c3a36847f8002a15", "cast_id": 6, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Denholm Elliott", "character": "Dr. Marcus Brody", "id": 656, "credit_id": "52fe4215c3a36847f8002a19", "cast_id": 7, "profile_path": "/lpDIKHwg1ttp03i3fKWcSuQ8MfY.jpg", "order": 5}, {"name": "Wolf Kahler", "character": "Colonel Dietrich", "id": 659, "credit_id": "52fe4215c3a36847f8002a1d", "cast_id": 8, "profile_path": "/uqHI2PLeGFxdjlw0qIk1D17NjWb.jpg", "order": 6}, {"name": "Anthony Higgins", "character": "Gobler", "id": 660, "credit_id": "52fe4215c3a36847f8002a21", "cast_id": 9, "profile_path": "/1cjZmBBVlUCZlLqX4Jn1EOdVulw.jpg", "order": 7}, {"name": "Vic Tablian", "character": "Barranca / Monkey Man", "id": 661, "credit_id": "52fe4215c3a36847f8002a25", "cast_id": 10, "profile_path": "/2QHEhXgTbp4BvRw1tiQeduqaXxP.jpg", "order": 8}, {"name": "Don Fellows", "character": "Col. Musgrove", "id": 662, "credit_id": "52fe4215c3a36847f8002a29", "cast_id": 11, "profile_path": "/sQgCr3xz2LVomGMKCvb7rLD9dMX.jpg", "order": 9}, {"name": "William Hootkins", "character": "Major Eaton", "id": 663, "credit_id": "52fe4215c3a36847f8002a2d", "cast_id": 12, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Alfred Molina", "character": "Satipo", "id": 658, "credit_id": "52fe4215c3a36847f8002a31", "cast_id": 13, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 11}, {"name": "Eddie Tagoe", "character": "Messenger Pirate", "id": 55909, "credit_id": "52fe4215c3a36847f8002a95", "cast_id": 30, "profile_path": "/1J9ujNEgWVupIxTJ8NouIRbblvn.jpg", "order": 12}, {"name": "George Harris", "character": "Katanga", "id": 2247, "credit_id": "52fe4215c3a36847f8002a99", "cast_id": 31, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 13}, {"name": "Bill Reimbold", "character": "Bureaucrat", "id": 1402694, "credit_id": "54982fa29251417315003497", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Fred Sorenson", "character": "Jock", "id": 1402695, "credit_id": "549830409251415447001607", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Patrick Durkin", "character": "Australian Climber", "id": 1402696, "credit_id": "5498313b9251416e1e0079c2", "cast_id": 34, "profile_path": "/sGzsiLgMbYl3tJPdofVCHOg8eoK.jpg", "order": 16}, {"name": "Matthew Scurfield", "character": "2nd. Nazi", "id": 134116, "credit_id": "5498537292514130fc006f20", "cast_id": 35, "profile_path": "/o2khvP0opODBIf6X6zvrFPUJ2SH.jpg", "order": 17}, {"name": "Malcolm Weaver", "character": "Ratty Nepalese", "id": 1402756, "credit_id": "54985429c3a3680ff50071e9", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Sonny Caldinez", "character": "Mean Mongolian", "id": 1230490, "credit_id": "54985531c3a3680ff50071fd", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Anthony Chinn", "character": "Mohan", "id": 1211876, "credit_id": "5498965492514150330002e7", "cast_id": 38, "profile_path": "/vDan4SUtiJ8HXD4GWREqg090Vjv.jpg", "order": 20}, {"name": "Pat Roach", "character": "Giant Sherpa / 1st Mechanic", "id": 10942, "credit_id": "549896c5c3a3681cff00024b", "cast_id": 39, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 21}, {"name": "Christopher Frederick", "character": "Otto", "id": 1402807, "credit_id": "5498982492514150360002ef", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Tutte Lemkow", "character": "Imam", "id": 1231662, "credit_id": "5498996cc3a3681ce9000357", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Ishaq Bux", "character": "Omar", "id": 1220322, "credit_id": "54989ab0c3a3681ce900036a", "cast_id": 42, "profile_path": "/jKK0Gw3rKQoA7IRNpYARisQNS2c.jpg", "order": 24}, {"name": "Kiran Shah", "character": "Abu", "id": 5531, "credit_id": "54989b9c92514150390002f8", "cast_id": 43, "profile_path": "/oQer3lBnxD8gKFHoz7o7eJMF6od.jpg", "order": 25}, {"name": "Souad Messaoudi", "character": "Fayah", "id": 1402821, "credit_id": "54989c3f9251415036000326", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Terry Richards", "character": "Arab Swordsman", "id": 1229106, "credit_id": "54989e6f9251415033000360", "cast_id": 45, "profile_path": "/y8UKK34LF8dFbSA6ALCvaADGIiT.jpg", "order": 27}, {"name": "Steve Hanson", "character": "German Agent", "id": 1402823, "credit_id": "54989ef2c3a3681cef0003d1", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Frank Marshall", "character": "Pilot", "id": 664, "credit_id": "5498a2439251415039000389", "cast_id": 47, "profile_path": "/iZrDellT1OWf1syKzBgQHjY2hJe.jpg", "order": 29}, {"name": "Martin Kreidt", "character": "Young Soldier", "id": 1402828, "credit_id": "5498a2ee925141502d000351", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "John Rees", "character": "Sergeant", "id": 145876, "credit_id": "5498a6cd925141502600041d", "cast_id": 49, "profile_path": null, "order": 31}, {"name": "Tony Vogel", "character": "Tall Captain", "id": 24714, "credit_id": "5498a7b4c3a3681cef000477", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Ted Grossman", "character": "Peruvian Porter", "id": 8591, "credit_id": "5498a8f492514150390003e0", "cast_id": 51, "profile_path": null, "order": 33}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002a01", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.2, "runtime": 115}, "4474": {"poster_path": "/aP7lAuOywcuUVk9kVMdj2FNDQy7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60896147, "overview": "When New York architect Matt Saunders dumps his new girlfriend Jenny Johnson - a smart, sexy and reluctant superhero known as G-Girl - she uses her powers to make his life a living hell!", "video": false, "id": 4474, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "My Super Ex-Girlfriend", "tagline": "Hell hath no fury like a superwoman scorned.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465624", "adult": false, "backdrop_path": "/jr4LERW2A5MjWi7wJyvVq1NHfRX.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-06-20", "popularity": 0.38240598661818, "original_title": "My Super Ex-Girlfriend", "budget": 0, "cast": [{"name": "Uma Thurman", "character": "Jenny Johnson", "id": 139, "credit_id": "52fe43c4c3a36847f806e085", "cast_id": 3, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "Luke Wilson", "character": "Matt Saunders", "id": 36422, "credit_id": "52fe43c4c3a36847f806e089", "cast_id": 4, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Anna Faris", "character": "Hannah", "id": 1772, "credit_id": "52fe43c4c3a36847f806e08d", "cast_id": 5, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Eddie Izzard", "character": "Professor Bedlam", "id": 1926, "credit_id": "52fe43c4c3a36847f806e091", "cast_id": 6, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 3}, {"name": "Rainn Wilson", "character": "Vaughn Haige", "id": 11678, "credit_id": "52fe43c4c3a36847f806e095", "cast_id": 7, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 4}, {"name": "Stelio Savante", "character": "Leo", "id": 37403, "credit_id": "52fe43c4c3a36847f806e099", "cast_id": 8, "profile_path": "/eumJP3cImfBBH1cNSPi6N85bz15.jpg", "order": 5}, {"name": "Big Guido", "character": "Lenny", "id": 37404, "credit_id": "52fe43c4c3a36847f806e09d", "cast_id": 9, "profile_path": "/dO9LFUCpUy2k4Fq6pl0nBRqELxS.jpg", "order": 6}, {"name": "Wanda Sykes", "character": "Carla Dunkirk", "id": 27102, "credit_id": "52fe43c4c3a36847f806e0a1", "cast_id": 10, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 7}, {"name": "Margaret Anne Florence", "character": "Bartender", "id": 37405, "credit_id": "52fe43c4c3a36847f806e0a5", "cast_id": 11, "profile_path": "/hHdAas8A7aQQ42sIdUsszDO1FE6.jpg", "order": 8}, {"name": "Catherine Reitman", "character": "TV News Reporter", "id": 154826, "credit_id": "530378d6c3a3680a095a0140", "cast_id": 24, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 9}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806e07b", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.2, "runtime": 95}, "87": {"poster_path": "/f2nTRKk2zGdUTE7tLJ5EGGSuKA6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 333000000, "overview": "After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees, and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.", "video": false, "id": 87, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Indiana Jones and the Temple of Doom", "tagline": "If adventure has a name... it must be Indiana Jones.", "vote_count": 1067, "homepage": "http://www.indianajones.com", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "si", "name": ""}], "imdb_id": "tt0087469", "adult": false, "backdrop_path": "/uG6AChg2FA3EmRuJDezDqoIpQzB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lucasfilm", "id": 1}], "release_date": "1984-05-22", "popularity": 1.4912321678831, "original_title": "Indiana Jones and the Temple of Doom", "budget": 28000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4215c3a36847f8002c09", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Kate Capshaw", "character": "Wilhelmina \"Willie\" Scott", "id": 689, "credit_id": "52fe4215c3a36847f8002c0d", "cast_id": 5, "profile_path": "/qhrU9F2xcMd9ZHBQZxth8P6FpLF.jpg", "order": 1}, {"name": "Jonathan Ke Quan", "character": "Short Round", "id": 690, "credit_id": "52fe4215c3a36847f8002c11", "cast_id": 6, "profile_path": "/1cKtw6cBhWPHtjUBiY3si8odVIE.jpg", "order": 2}, {"name": "Amrish Puri", "character": "Mola Ram", "id": 691, "credit_id": "52fe4215c3a36847f8002c15", "cast_id": 7, "profile_path": "/9WsIjfAyhYgkT4Nvbffn98NLvio.jpg", "order": 3}, {"name": "Roshan Seth", "character": "Chattar Lal", "id": 693, "credit_id": "52fe4215c3a36847f8002c19", "cast_id": 8, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 4}, {"name": "Philip Stone", "character": "Captain Blumburtt", "id": 694, "credit_id": "52fe4215c3a36847f8002c1d", "cast_id": 9, "profile_path": "/qtaBPJZC7MpoyWfcyXJ1zdEfYwU.jpg", "order": 5}, {"name": "Roy Chiao", "character": "Lao Che", "id": 695, "credit_id": "52fe4215c3a36847f8002c21", "cast_id": 10, "profile_path": "/6gBxdImc8eGHeDDEJGFiGrIwx6O.jpg", "order": 6}, {"name": "David Yip", "character": "Wu Han", "id": 696, "credit_id": "52fe4215c3a36847f8002c25", "cast_id": 11, "profile_path": "/s2ApWZ620ZMe8nwvKM2y8TwjenE.jpg", "order": 7}, {"name": "Ric Young", "character": "Kao Kan", "id": 11397, "credit_id": "52fe4215c3a36847f8002c29", "cast_id": 12, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 8}, {"name": "Chua Kah Joo", "character": "Chen", "id": 699, "credit_id": "52fe4215c3a36847f8002c2d", "cast_id": 13, "profile_path": "/sVJUeMRFGYuCTD3jvrf4hRpteky.jpg", "order": 9}, {"name": "Rex Ngui", "character": "Maitre d'", "id": 701, "credit_id": "52fe4215c3a36847f8002c31", "cast_id": 14, "profile_path": "/y2FC7QT3jcT7YfzZ0ac5eLaDqad.jpg", "order": 10}, {"name": "Philip Tan", "character": "Chief Henchman", "id": 702, "credit_id": "52fe4215c3a36847f8002c35", "cast_id": 15, "profile_path": "/dJP4kbCF2f8dg88BROfRukd67H1.jpg", "order": 11}, {"name": "Dan Aykroyd", "character": "Earl Weber", "id": 707, "credit_id": "52fe4215c3a36847f8002c39", "cast_id": 16, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 12}, {"name": "Akio Mitamura", "character": "Chinese Pilot", "id": 1402218, "credit_id": "5496e97f9251417315001633", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Michael Yama", "character": "Chinese Co-Pilot", "id": 80123, "credit_id": "5496eb479251416e2b006625", "cast_id": 33, "profile_path": "/pLgUpZWV5iOxHkQW7kLKkhHT4WJ.jpg", "order": 14}, {"name": "D.R. Nanayakkara", "character": "Shaman", "id": 1055317, "credit_id": "5496f4c4c3a368115300450b", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Dharmadasa Kuruppu", "character": "Chieftain", "id": 1402258, "credit_id": "5496f51192514130fc004f7f", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Stany De Silva", "character": "Sajnu", "id": 1402260, "credit_id": "5496f55c92514130fc004f89", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Ruby de Mel", "character": "Village Woman", "id": 1402261, "credit_id": "5496f5ef925141731500177c", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Denavaka Hamine", "character": "Village Woman", "id": 1402263, "credit_id": "5496f6d89251416e2b0067ac", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Iranganie Serasinghe", "character": "Village Woman", "id": 1402266, "credit_id": "5496f81392514171620016bb", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Dharshana Panangala", "character": "Village Child", "id": 1402267, "credit_id": "5496f92bc3a3686ae900680b", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Raj Singh", "character": "Little Maharaja", "id": 1402268, "credit_id": "549707fbc3a3686ae1006eb7", "cast_id": 41, "profile_path": "/pmLAWqfc1U0L5ru8WwK6pgwzk9s.jpg", "order": 22}, {"name": "Frank Olegario", "character": "Merchant #1", "id": 977657, "credit_id": "549709f09251413f75004b98", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Ahmed El Shenawi", "character": "Merchant #2", "id": 1402269, "credit_id": "54970a3692514132ed004ba6", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Arthur F. Repola", "character": "Eel Eater", "id": 735, "credit_id": "5497f1319251416e2b007e9b", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Nizwar Karanj", "character": "Sacrifice Victim", "id": 213391, "credit_id": "5497f1e0c3a3680fc6005cd4", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Pat Roach", "character": "Chief Guard", "id": 10942, "credit_id": "5497f351c3a3686af3007337", "cast_id": 46, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 27}, {"name": "Moti Makan", "character": "Guard", "id": 1402504, "credit_id": "5497f3e2c3a3686af3007342", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Mellan Mitchell", "character": "Temple Guard", "id": 215400, "credit_id": "5497f4fdc3a3680511001102", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Bhasker Patel", "character": "Temple Guard", "id": 119792, "credit_id": "5497f6b3c3a3680fc6005d4d", "cast_id": 49, "profile_path": "/yL95vZesZfDXIaRDsX94w2BzkFZ.jpg", "order": 30}, {"name": "Arjun Pandher", "character": "1st Boy in Cell", "id": 1402509, "credit_id": "5497f6e3c3a368054b001224", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Zia Gelani", "character": "2nd Boy in Cell", "id": 1402514, "credit_id": "5497f776c3a3681153005b2a", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Debbie Astell", "character": "Dancer", "id": 1402517, "credit_id": "5497f8519251417a810058ca", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Maureen Bacchus", "character": "Dancer", "id": 1402521, "credit_id": "5497f8ef9251415447001055", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Corinne Barton", "character": "Dancer", "id": 1402523, "credit_id": "5497f93ac3a368054b00126a", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Carol Beddington", "character": "Dancer", "id": 1402527, "credit_id": "5497f9b69251416e2b007f96", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Sharon Boone", "character": "Dancer", "id": 1402528, "credit_id": "5497fa35c3a36802a9000f30", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Elizabeth Burville", "character": "Dancer", "id": 1402609, "credit_id": "54980f109251413f75006298", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "Marisa Campbell", "character": "Dancer", "id": 1402610, "credit_id": "54980f8092514130fc0068f6", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Christine Cartwright", "character": "Dancer", "id": 1402613, "credit_id": "54981215c3a3686ae900840a", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Andrea Chance", "character": "Dancer", "id": 1402614, "credit_id": "5498127092514132ed00636b", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Jan Colton", "character": "Dancer", "id": 1402615, "credit_id": "549812cd92514132ed006379", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Louise Dalgleish", "character": "Dancer", "id": 1402616, "credit_id": "54981328c3a36802a90011a2", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Lorraine Doyle", "character": "Dancer", "id": 563900, "credit_id": "549813fc925141544700135b", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Vanessa Fieldwright", "character": "Dancer", "id": 1402617, "credit_id": "5498143a9251417315003222", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Brenda Glassman", "character": "Dancer", "id": 1402618, "credit_id": "54981490c3a368051100146b", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Elaine Gough", "character": "Dancer", "id": 1402619, "credit_id": "549814d8c3a3680511001477", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "Sue Hadleigh", "character": "Dancer", "id": 1402620, "credit_id": "5498153b92514132ed0063ae", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Sarah-Jane Hassell", "character": "Dancer", "id": 1402632, "credit_id": "549815fa9251417a81005ba6", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Samantha Hughes", "character": "Dancer", "id": 1402641, "credit_id": "549816bbc3a36805110014af", "cast_id": 69, "profile_path": null, "order": 50}, {"name": "Julie Kirk", "character": "Dancer", "id": 1402664, "credit_id": "549817db9251413f75006372", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Deirdre Laird", "character": "Dancer", "id": 1402666, "credit_id": "54981853c3a3680fc60060b6", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Vicki McDonald", "character": "Dancer", "id": 1402669, "credit_id": "549818afc3a3680fc60060c0", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Nina McMahon", "character": "Dancer", "id": 1402670, "credit_id": "549818fb92514132ed006415", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Julia Marstand", "character": "Dancer", "id": 1402672, "credit_id": "54981948c3a3680ff5006ce4", "cast_id": 74, "profile_path": null, "order": 55}, {"name": "Gaynor Martine", "character": "Dancer", "id": 1402675, "credit_id": "549819fe9251417a81005c14", "cast_id": 75, "profile_path": null, "order": 56}, {"name": "Lisa Mulidore", "character": "Dancer", "id": 1402676, "credit_id": "54981a6ac3a3680fc60060f7", "cast_id": 76, "profile_path": null, "order": 57}, {"name": "Dawn Reddall", "character": "Dancer", "id": 1402677, "credit_id": "54981ac292514132ed006443", "cast_id": 77, "profile_path": null, "order": 58}, {"name": "Rebekkah Sekyi", "character": "Dancer", "id": 1402678, "credit_id": "54981b00c3a3680fc600610b", "cast_id": 78, "profile_path": null, "order": 59}, {"name": "Clare Smalley", "character": "Dancer", "id": 1402682, "credit_id": "54981b7cc3a368054b001671", "cast_id": 79, "profile_path": null, "order": 60}, {"name": "Lee Sprintall", "character": "Dancer", "id": 1402684, "credit_id": "54981be5c3a3680fc6006122", "cast_id": 80, "profile_path": null, "order": 61}, {"name": "Jenny Turnock", "character": "Dancer", "id": 1402685, "credit_id": "54981c24c3a3681153005ef2", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Ruth Welby", "character": "Dancer", "id": 1402686, "credit_id": "54981c68c3a3681153005f04", "cast_id": 82, "profile_path": null, "order": 63}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002bf9", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.7, "runtime": 118}, "88": {"poster_path": "/zMHIZHxKv6kdE3JFQqZFqj7OswK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213954274, "overview": "Expecting the usual tedium that accompanies a summer in the Catskills with her family, 17-year-old Frances \"Baby\" Houseman is surprised to find herself stepping into the shoes of a professional hoofer -- and unexpectedly falling in love. The object of her affection? The resort's free-spirited dance instructor.", "video": false, "id": 88, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Dirty Dancing", "tagline": "Have the time of your life.", "vote_count": 276, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qR6POAKwCL8VwuK8ZjSAdRRFNj9.jpg", "poster_path": "/gkrOvdbCFuGlxVwCYmczw7aw6Ku.jpg", "id": 86058, "name": "Dirty Dancing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092890", "adult": false, "backdrop_path": "/ngDmpFRzNGr9XMtKchhBZjt4DLH.jpg", "production_companies": [{"name": "Great American Films Limited Partnership", "id": 137}, {"name": "Vestron Pictures", "id": 12360}], "release_date": "1987-08-20", "popularity": 1.03239297211051, "original_title": "Dirty Dancing", "budget": 6000000, "cast": [{"name": "Jennifer Grey", "character": "Baby (Frances) Houseman", "id": 722, "credit_id": "52fe4215c3a36847f8002d0f", "cast_id": 7, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 0}, {"name": "Patrick Swayze", "character": "Johnny Castle", "id": 723, "credit_id": "52fe4216c3a36847f8002d13", "cast_id": 8, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 1}, {"name": "Cynthia Rhodes", "character": "Penny Johnson", "id": 724, "credit_id": "52fe4216c3a36847f8002d17", "cast_id": 9, "profile_path": "/zt0z8Mj1aQC8SHeYAo6vph9Hd6.jpg", "order": 2}, {"name": "Jerry Orbach", "character": "Dr. Jake Houseman", "id": 725, "credit_id": "52fe4216c3a36847f8002d1b", "cast_id": 10, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 3}, {"name": "Jack Weston", "character": "Max Kellerman", "id": 726, "credit_id": "52fe4216c3a36847f8002d1f", "cast_id": 11, "profile_path": "/1y2ohASYY91i4hDrkhZVuyb1uVD.jpg", "order": 4}, {"name": "Jane Brucker", "character": "Lisa Houseman", "id": 727, "credit_id": "52fe4216c3a36847f8002d23", "cast_id": 12, "profile_path": "/ll7qdMGtJS10sxJs3eYEj9TrALn.jpg", "order": 5}, {"name": "Kelly Bishop", "character": "Marjorie Houseman", "id": 728, "credit_id": "52fe4216c3a36847f8002d27", "cast_id": 13, "profile_path": "/rXjKYHafK17IiqgjWvmZYdmpdo9.jpg", "order": 6}, {"name": "Lonny Price", "character": "Neil Kellerman", "id": 729, "credit_id": "52fe4216c3a36847f8002d2b", "cast_id": 14, "profile_path": "/lC6huJbgseVOA35LNeXy2e2cgOY.jpg", "order": 7}, {"name": "Max Cantor", "character": "Robbie Gould", "id": 730, "credit_id": "52fe4216c3a36847f8002d2f", "cast_id": 15, "profile_path": "/x0ETedhRTA21vCrvlPxh97s1rjH.jpg", "order": 8}, {"name": "Alvin Myerovich", "character": "Mr. Schumacher", "id": 733, "credit_id": "52fe4216c3a36847f8002d33", "cast_id": 16, "profile_path": "/l7lzg6gG389TIl7QGHrJeEA5s0e.jpg", "order": 9}, {"name": "Paula Trueman", "character": "Mrs. Schumacher", "id": 734, "credit_id": "52fe4216c3a36847f8002d37", "cast_id": 17, "profile_path": "/qXZAw0uswXslggmg5hJmeC0iAAL.jpg", "order": 10}, {"name": "Charles 'Honi' Coles", "character": "Tito Suarez", "id": 4198, "credit_id": "52fe4216c3a36847f8002d5f", "cast_id": 25, "profile_path": "/4nD8ff4h8WMdacWKQjPJZlcVlVZ.jpg", "order": 11}, {"name": "Neal Jones", "character": "Billy Kostecki", "id": 4199, "credit_id": "52fe4216c3a36847f8002d63", "cast_id": 26, "profile_path": "/c86o0FZyiksJW3p90wvhtmMVykL.jpg", "order": 12}, {"name": "Wayne Knight", "character": "Stan", "id": 4201, "credit_id": "52fe4216c3a36847f8002d67", "cast_id": 28, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 13}, {"name": "Miranda Garrison", "character": "Vivian Pressman", "id": 4202, "credit_id": "52fe4216c3a36847f8002d6b", "cast_id": 29, "profile_path": "/vwRsn3kEdudFaZTDLWnkOu2GhZq.jpg", "order": 14}, {"name": "Garry Goodrow", "character": "Moe Pressman", "id": 4203, "credit_id": "52fe4216c3a36847f8002d6f", "cast_id": 30, "profile_path": "/wqoBQvY6HGhYA3VvG9iDoKzpz6t.jpg", "order": 15}, {"name": "Antone Pagan", "character": "Staff Kid", "id": 4204, "credit_id": "52fe4216c3a36847f8002d73", "cast_id": 31, "profile_path": "/8Jpc1xDU1BS1t7TKaEXQpu7dWnt.jpg", "order": 16}, {"name": "Thomas Cannold", "character": "Bus Boy", "id": 4205, "credit_id": "52fe4216c3a36847f8002d77", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Heather Lea Gerdes", "character": "Dirty Dancer", "id": 4206, "credit_id": "52fe4216c3a36847f8002d7b", "cast_id": 33, "profile_path": "/ytyeUreMJLFprK76XngfjdE7Xce.jpg", "order": 18}, {"name": "Jesus Fuentes", "character": "Dirty Dancer", "id": 4207, "credit_id": "52fe4216c3a36847f8002d7f", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "M.R. Fletcher", "character": "Dirty Dancer", "id": 4208, "credit_id": "52fe4216c3a36847f8002d83", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Karen Getz", "character": "Dirty Dancer", "id": 4209, "credit_id": "52fe4216c3a36847f8002d87", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Andrew Charles Koch", "character": "Dirty Dancer", "id": 4210, "credit_id": "52fe4216c3a36847f8002d8b", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "D.A. Pauley", "character": "Dirty Dancer", "id": 4211, "credit_id": "52fe4216c3a36847f8002d8f", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Jennifer Stahl", "character": "Dirty Dancer", "id": 4212, "credit_id": "52fe4216c3a36847f8002d93", "cast_id": 39, "profile_path": "/AjBPZ4q98aXo16E5RF4uK9rdWUx.jpg", "order": 24}, {"name": "Dorian Sanchez", "character": "Dirty Dancer", "id": 4213, "credit_id": "52fe4216c3a36847f8002d97", "cast_id": 40, "profile_path": "/2gWA8NvEIrCMWJhP7WccDC4GSCC.jpg", "order": 25}, {"name": "Cousin Brucie Morrow", "character": "Magician", "id": 1022730, "credit_id": "52fe4216c3a36847f8002da7", "cast_id": 43, "profile_path": "/bT4Re8WJTujPPXzKK8RhXzXeW1h.jpg", "order": 26}], "directors": [{"name": "Emile Ardolino", "department": "Directing", "job": "Director", "credit_id": "52fe4215c3a36847f8002ced", "profile_path": "/h4LqsmRshajyuggfxR3wj7aNqyi.jpg", "id": 716}], "vote_average": 6.7, "runtime": 100}, "89": {"poster_path": "/4p1N2Qrt8j0H8xMHMHvtRxv9weZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 474171806, "overview": "When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana Jones must team up with Marcus Brody, Sallah, and Elsa Schneider to follow in his father's footsteps and stop the Nazis from recovering the power of eternal life.", "video": false, "id": 89, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Indiana Jones and the Last Crusade", "tagline": "The man with the hat is back. And this time, he's bringing his Dad.", "vote_count": 1343, "homepage": "http://www.indianajones.com/crusade", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097576", "adult": false, "backdrop_path": "/m3bEQlir8IWpmFocQBXWM5fkHri.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1989-05-24", "popularity": 1.46340568907959, "original_title": "Indiana Jones and the Last Crusade", "budget": 48000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4216c3a36847f8002e1d", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Sean Connery", "character": "Professor Henry Jones", "id": 738, "credit_id": "52fe4216c3a36847f8002e21", "cast_id": 9, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Denholm Elliott", "character": "Dr. Marcus Brody", "id": 656, "credit_id": "52fe4216c3a36847f8002e25", "cast_id": 10, "profile_path": "/lpDIKHwg1ttp03i3fKWcSuQ8MfY.jpg", "order": 2}, {"name": "Alison Doody", "character": "Dr. Elsa Schneider", "id": 739, "credit_id": "52fe4216c3a36847f8002e29", "cast_id": 11, "profile_path": "/rF2Ai6QVb2WeDwrFMhtbOOfUule.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "Sallah", "id": 655, "credit_id": "52fe4216c3a36847f8002e2d", "cast_id": 12, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Julian Glover", "character": "Walter Donovan", "id": 740, "credit_id": "52fe4216c3a36847f8002e31", "cast_id": 13, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 5}, {"name": "River Phoenix", "character": "Indiana Jones (young)", "id": 741, "credit_id": "52fe4216c3a36847f8002e35", "cast_id": 14, "profile_path": "/qfokbmRwRvmIVsLHScshxLPAB3C.jpg", "order": 6}, {"name": "Michael Byrne", "character": "Vogel", "id": 742, "credit_id": "52fe4216c3a36847f8002e39", "cast_id": 15, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 7}, {"name": "Kevork Malikyan", "character": "Kazim", "id": 743, "credit_id": "52fe4216c3a36847f8002e3d", "cast_id": 16, "profile_path": "/aq3elIciFeSrvbVyDNeoozQqLnm.jpg", "order": 8}, {"name": "Robert Eddison", "character": "Grail Knight", "id": 744, "credit_id": "52fe4216c3a36847f8002e41", "cast_id": 17, "profile_path": "/oONf8tM0Kxvg8CaLfpT7sx09Iug.jpg", "order": 9}, {"name": "Richard Young", "character": "Fedora", "id": 745, "credit_id": "52fe4216c3a36847f8002e45", "cast_id": 18, "profile_path": "/WAnB3iXDZ5eOWOpDQBHr04ifiX.jpg", "order": 10}, {"name": "Alexei Sayle", "character": "Sultan", "id": 746, "credit_id": "52fe4216c3a36847f8002e49", "cast_id": 19, "profile_path": "/xZ45YRSZi6rDbCo6iWgDu7WeFWQ.jpg", "order": 11}, {"name": "Paul Maxwell", "character": "Panama Hat", "id": 748, "credit_id": "52fe4216c3a36847f8002e4d", "cast_id": 20, "profile_path": "/vioUXrSIz2OV0yWCPIJNZqHI9n0.jpg", "order": 12}, {"name": "Isla Blair", "character": "Mrs. Donovan", "id": 749, "credit_id": "52fe4216c3a36847f8002e51", "cast_id": 21, "profile_path": "/aqHLIxtiB7TfFVp68vcQLVEdRNu.jpg", "order": 13}, {"name": "Vernon Dobtcheff", "character": "Butler", "id": 649, "credit_id": "52fe4216c3a36847f8002e97", "cast_id": 33, "profile_path": "/lcPki2IDdmRvqiBbv2RUBfgm3IH.jpg", "order": 14}, {"name": "Alex Hyde-White", "character": "Young Henry", "id": 747, "credit_id": "549936699251411f400008bc", "cast_id": 36, "profile_path": "/n51gvejj2jPn2rLLPC0mO47uGTL.jpg", "order": 15}, {"name": "J. J. Hardy", "character": "Herman", "id": 1402876, "credit_id": "54993af79251411f4300095c", "cast_id": 37, "profile_path": "/oqT6ak0uvKHxdF2P5eZmYeRAkTx.jpg", "order": 16}, {"name": "Bradley Gregg", "character": "Roscoe", "id": 3039, "credit_id": "54993c9ec3a368270a000943", "cast_id": 38, "profile_path": "/l4vc0U4XQ7t07pqekPPVehzs0R.jpg", "order": 17}, {"name": "Jeff O'Haco", "character": "Half Breed", "id": 1020340, "credit_id": "54993e09c3a3682703000902", "cast_id": 39, "profile_path": "/jxzZd6t8KhDx5aKkRJyBxgXWBM0.jpg", "order": 18}, {"name": "Vince Deadrick Sr.", "character": "Rough Rider", "id": 1402879, "credit_id": "54994086c3a368270a0009a0", "cast_id": 40, "profile_path": "/vZQrgFgmMZShbOAg9WjulBGMWzo.jpg", "order": 19}, {"name": "Marc Miles", "character": "Sheriff", "id": 1402887, "credit_id": "549942979251411f400009ca", "cast_id": 41, "profile_path": "/bAggC0KaaITXJ7daVaGDOcjZimy.jpg", "order": 20}, {"name": "Ted Grossman", "character": "Deputy Sheriff", "id": 8591, "credit_id": "549943629251411f400009e2", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Tim Hiser", "character": "Young Panama Hat", "id": 1402890, "credit_id": "549944019251411f450009d0", "cast_id": 43, "profile_path": "/9b9QRZF3XmCTMAG7uWA7t78xpM.jpg", "order": 22}, {"name": "Larry Sanders", "character": "Scout Master", "id": 1402891, "credit_id": "549944ce9251411f40000a03", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Will Miles", "character": "Scout #1", "id": 1402892, "credit_id": "549945789251411f5400098a", "cast_id": 45, "profile_path": "/2CN88cENaO3LsEdGHbBVJJVU4kr.jpg", "order": 24}, {"name": "David Murray", "character": "Scout #2", "id": 1402893, "credit_id": "5499464cc3a36826f8000b47", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Frederick Jaeger", "character": "World War One Ace", "id": 1212166, "credit_id": "5499491dc3a36826fc000b1f", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Jerry Harte", "character": "Professor Stanton", "id": 1270880, "credit_id": "54994d0a9251411f43000aed", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Billy J. Mitchell", "character": "Dr. Mulbray", "id": 55911, "credit_id": "54994e259251411f54000a2b", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Martin Gordon", "character": "Man at Hitler Rally", "id": 1402913, "credit_id": "54994f179251411f45000a9f", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Paul Humpoletz", "character": "German Officer at Hitler Rally", "id": 158674, "credit_id": "549950519251411f40000ab3", "cast_id": 51, "profile_path": "/mXHgh2NQvtktfYvHYwAHbTuEJHa.jpg", "order": 30}, {"name": "Tom Branch", "character": "Hatay Soldier in Temple", "id": 1402917, "credit_id": "549950c0c3a3682703000a7f", "cast_id": 52, "profile_path": null, "order": 31}, {"name": "Graeme Crowther", "character": "Zeppelin Crewman", "id": 1402919, "credit_id": "5499518fc3a36826f8000c22", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Luke Hanson", "character": "Principal SS Officer at Castle", "id": 1402922, "credit_id": "549952679251411f43000b60", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Chris Jenkinson", "character": "Officer at Castle", "id": 1402925, "credit_id": "549952fb9251411f52000b48", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Nicola Scott", "character": "Female Officer at Castle", "id": 1402957, "credit_id": "549961a59251411f43000ce0", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Louis Sheldon", "character": "Young Officer at Castle", "id": 1402960, "credit_id": "5499627a9251411f45000c54", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Stefan Kalipha", "character": "Hatay Tank Gunner", "id": 25079, "credit_id": "549964e39251411f54000c2e", "cast_id": 58, "profile_path": "/g1mNJ1eTrVi5wD1d76kRnFWbn2h.jpg", "order": 37}, {"name": "Peter Pacey", "character": "Hatay Tank Driver", "id": 81030, "credit_id": "5499673dc3a368270e000bbc", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Pat Roach", "character": "Gestapo", "id": 10942, "credit_id": "5499677a9251411f43000d89", "cast_id": 60, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 39}, {"name": "Suzanne Roquette", "character": "Film Director", "id": 43496, "credit_id": "549968649251411f4b000cd6", "cast_id": 61, "profile_path": "/cXcwUFYOusOgSF1q25PIBE2YQgz.jpg", "order": 40}, {"name": "Eugene Lipinski", "character": "G-Man", "id": 28871, "credit_id": "54996a4bc3a36826f8000e69", "cast_id": 62, "profile_path": "/rhpOJsibsqA4SG71GcH0LMfnygd.jpg", "order": 41}, {"name": "George Malpas", "character": "Man on Zeppelin", "id": 1229130, "credit_id": "54996cc09251411f54000cde", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Julie Eccles", "character": "Irene", "id": 1402970, "credit_id": "54996d069251411f4b000d5a", "cast_id": 64, "profile_path": null, "order": 43}, {"name": "Nina Armstrong", "character": "Flower Girl", "id": 1032068, "credit_id": "54996e31c3a3682707000c58", "cast_id": 65, "profile_path": null, "order": 44}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f8002df5", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.3, "runtime": 127}, "90": {"poster_path": "/s7n0rS2Ff85SuSpqYG3ndkmdQf4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 316360478, "overview": "Tough-talking Detroit cop Axel Foley heads to the rarified world of Beverly Hills in his beat-up Chevy Nova to investigate a friend's murder. But soon, he realizes he's stumbled onto something much more complicated. Bungling rookie detective Billy Rosewood joins the fish-out-of-water Axel and shows him the West Los Angeles ropes.", "video": false, "id": 90, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Beverly Hills Cop", "tagline": "The Heat Is On!", "vote_count": 294, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lhZQuT76B9YcxZIudXZMhhWCKcl.jpg", "poster_path": "/ty7zsl0xkVDUlibYkFUjRAYUkvE.jpg", "id": 85861, "name": "Beverly Hills Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086960", "adult": false, "backdrop_path": "/38aEFo3chy25jobknuIX0WTF0Xl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Eddie Murphy Productions", "id": 30}], "release_date": "1984-11-30", "popularity": 1.23876064969208, "original_title": "Beverly Hills Cop", "budget": 15000000, "cast": [{"name": "Eddie Murphy", "character": "Det. Axel Foley", "id": 776, "credit_id": "52fe4216c3a36847f8002f03", "cast_id": 6, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Judge Reinhold", "character": "Det. William 'Billy' Rosewood", "id": 777, "credit_id": "52fe4216c3a36847f8002f07", "cast_id": 7, "profile_path": "/oN7TsF0yFJhsoKe9KzxXEOhheci.jpg", "order": 1}, {"name": "John Ashton", "character": "Det. Sgt. John Taggart", "id": 778, "credit_id": "52fe4216c3a36847f8002f0b", "cast_id": 8, "profile_path": "/omfIdOt1F8LDkb7AMZTtLDiyJ3O.jpg", "order": 2}, {"name": "Lisa Eilbacher", "character": "Jeannette 'Jenny' Summers", "id": 779, "credit_id": "52fe4216c3a36847f8002f0f", "cast_id": 9, "profile_path": "/kyiePU42bPqcGCRJfta1Ev2m7if.jpg", "order": 3}, {"name": "Ronny Cox", "character": "Lt. Andrew Bogomil", "id": 780, "credit_id": "52fe4216c3a36847f8002f13", "cast_id": 10, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 4}, {"name": "Paul Reiser", "character": "Jeffrey", "id": 781, "credit_id": "52fe4216c3a36847f8002f17", "cast_id": 11, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 5}, {"name": "Steven Berkoff", "character": "Victor Maitland", "id": 782, "credit_id": "52fe4216c3a36847f8002f1b", "cast_id": 12, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 6}, {"name": "Jonathan Banks", "character": "Zack, Maitland's Thug", "id": 783, "credit_id": "52fe4216c3a36847f8002f1f", "cast_id": 13, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 7}, {"name": "Bronson Pinchot", "character": "Serge", "id": 4689, "credit_id": "52fe4216c3a36847f8002f23", "cast_id": 14, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 8}, {"name": "James Russo", "character": "Mikey Tandino", "id": 785, "credit_id": "52fe4216c3a36847f8002f27", "cast_id": 15, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 9}, {"name": "Stephen Elliott", "character": "Police Chief Hubbard", "id": 786, "credit_id": "52fe4216c3a36847f8002f2b", "cast_id": 16, "profile_path": "/pKD6zR7MJW6gHc9ewxaSJeNBrQi.jpg", "order": 10}, {"name": "Gilbert R. Hill", "character": "Insp. Douglas Todd", "id": 787, "credit_id": "52fe4216c3a36847f8002f2f", "cast_id": 17, "profile_path": "/9kgwJTs4hT9oJuRiC4zj4zxwn68.jpg", "order": 11}, {"name": "Art Kimbro", "character": "Det. Foster", "id": 788, "credit_id": "52fe4216c3a36847f8002f33", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Joel Bailey", "character": "Det. McCabe", "id": 789, "credit_id": "52fe4216c3a36847f8002f37", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Michael Champion", "character": "Casey", "id": 790, "credit_id": "52fe4216c3a36847f8002f3b", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Martin Brest", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f8002ee7", "profile_path": null, "id": 769}], "vote_average": 6.4, "runtime": 105}, "245775": {"poster_path": "/sfaZHepyrq6C4AxW9kOOntK9ihm.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 21026290, "overview": "A look at the life of French designer Yves Saint Laurent from the beginning of his career in 1958 when he met his lover and business partner, Pierre Berge.", "video": false, "id": 245775, "genres": [{"id": 18, "name": "Drama"}], "title": "Yves Saint Laurent", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt2707858", "adult": false, "backdrop_path": "/zpskODYa543GxzPAU5ALb0nUNCT.jpg", "production_companies": [{"name": "WY Productions", "id": 3304}, {"name": "SND", "id": 2902}, {"name": "H\u00e9rodiade", "id": 7673}, {"name": "Umedia", "id": 19037}], "release_date": "2014-06-25", "popularity": 1.44656149146695, "original_title": "Yves Saint Laurent", "budget": 12000000, "cast": [{"name": "Pierre Niney", "character": "Yves Saint Laurent", "id": 145121, "credit_id": "52fe4f0bc3a36847f82b968d", "cast_id": 1, "profile_path": "/g84J44XjdrOsJ9zplB4ClAZpeaB.jpg", "order": 0}, {"name": "Guillaume Gallienne", "character": "Pierre Berg\u00e9", "id": 6554, "credit_id": "52fe4f0bc3a36847f82b9691", "cast_id": 2, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 1}, {"name": "Nikolai Kinski", "character": "Karl Lagerfeld", "id": 54024, "credit_id": "52fe4f0bc3a36847f82b9695", "cast_id": 3, "profile_path": "/3DlkCTEX5iFfWkgAbfUBswwjZKR.jpg", "order": 2}, {"name": "Charlotte Le Bon", "character": "Victoire Doutreleau", "id": 1021684, "credit_id": "52fe4f0bc3a36847f82b96c3", "cast_id": 11, "profile_path": "/vozgdySw0fnS3ue6AFcTsfHRbYq.jpg", "order": 3}, {"name": "Xavier Lafitte", "character": "Jacques De Bascher", "id": 133091, "credit_id": "52fe4f0bc3a36847f82b96c7", "cast_id": 12, "profile_path": "/vSgVdtC6jJD0kZRfMWZxeGZuEqt.jpg", "order": 4}, {"name": "Laura Smet", "character": "Loulou de la Falaise", "id": 149223, "credit_id": "52fe4f0bc3a36847f82b96cb", "cast_id": 13, "profile_path": "/pz6qoS8c5YSu6UoxgvbM9FbPX7l.jpg", "order": 5}, {"name": "Marie de Villepin", "character": "Betty Catroux", "id": 1156455, "credit_id": "536176cdc3a36839470004c8", "cast_id": 14, "profile_path": "/8kboVTA3cw0SObWNtK6pygyPnbG.jpg", "order": 6}, {"name": "Ruben Alves", "character": "Fernando Sanchez", "id": 212080, "credit_id": "5361793ec3a3683965000472", "cast_id": 15, "profile_path": "/9ihi5Y7iGLAp4PWRf3813LzsXOc.jpg", "order": 7}, {"name": "Astrid Whettnall", "character": "Yvonne de Peyerimhoff", "id": 1167748, "credit_id": "53617a42c3a368397600050d", "cast_id": 16, "profile_path": "/w5p3rsdapJ86RiReVPg615mLU6Y.jpg", "order": 8}, {"name": "Marianne Basler", "character": "Lucienne Saint Laurent", "id": 15481, "credit_id": "53617ba9c3a368396e000519", "cast_id": 17, "profile_path": "/7o0p5kukWtfkp4sxfKwVQaPI778.jpg", "order": 9}, {"name": "Adeline D'Hermy", "character": "Anne-Marie Munoz", "id": 1315534, "credit_id": "53617d92c3a3683947000552", "cast_id": 18, "profile_path": "/vtHW6ltQXaiv4IbZkckhrVTt1DZ.jpg", "order": 10}, {"name": "Jean-\u00c9douard Bodziak", "character": "Bernard Buffet", "id": 1315535, "credit_id": "53617ea7c3a368395600052e", "cast_id": 19, "profile_path": "/puhXcIwTGWmkLugFXUHhUr8EPDs.jpg", "order": 11}, {"name": "Alexandre Steiger", "character": "Jean-Pierre Debord", "id": 549333, "credit_id": "53617f48c3a3683947000568", "cast_id": 20, "profile_path": "/yuG97dPaco4rXfUkLkq8wNatWiY.jpg", "order": 12}, {"name": "Mich\u00e8le Garcia", "character": "Raymonde Zehnacker", "id": 26401, "credit_id": "53617fa8c3a368395d000582", "cast_id": 21, "profile_path": "/m0zVOSGtLCKOn6uRSvGYR2QLSNI.jpg", "order": 13}, {"name": "Olivier Pajot", "character": "Charles", "id": 267603, "credit_id": "536180b3c3a368397e000586", "cast_id": 22, "profile_path": "/5ZKHDEruX9p9fe3M8nU2rM9W26D.jpg", "order": 14}], "directors": [{"name": "Jalil Lespert", "department": "Directing", "job": "Director", "credit_id": "52fe4f0bc3a36847f82b969b", "profile_path": "/e0iU7swcVCQtSPzwipTJDkh3t8h.jpg", "id": 72327}], "vote_average": 6.2, "runtime": 101}, "8285": {"poster_path": "/4TlzgL6yW9zI4Y0rGY0LjpmWWKJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39031337, "overview": "Down these mean streets a man must come. A hero born, murdered, and born again. When a Rookie cop named Denny Colt returns from the beyond as The Spirit, a hero whose mission is to fight against the bad forces from the shadows of Central City, the Octopus who kills anyone unfortunate enough to see his face who has other plans. He's going to wipe out the entire city.", "video": false, "id": 8285, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Spirit", "tagline": "I'm gonna kill you all kinds of dead.", "vote_count": 92, "homepage": "http://www.mycityscreams.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0831887", "adult": false, "backdrop_path": "/p0fMUR7ZFjsfpaLxqAAt62y1i4r.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Lionsgate", "id": 1632}, {"name": "Dark Lot Entertainment", "id": 7375}, {"name": "Continental Entertainment Group (CEG)", "id": 7376}, {"name": "Odd Lot Entertainment", "id": 3263}, {"name": "Media Magik Entertainment", "id": 5627}], "release_date": "2008-12-25", "popularity": 0.450278054649003, "original_title": "The Spirit", "budget": 60000000, "cast": [{"name": "Gabriel Macht", "character": "The Spirit/Denny Colt", "id": 16856, "credit_id": "52fe449cc3a36847f809fee1", "cast_id": 6, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Silken Floss", "id": 1245, "credit_id": "52fe449cc3a36847f809fecb", "cast_id": 1, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Octopuss", "id": 2231, "credit_id": "52fe449cc3a36847f809fecf", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Eva Mendes", "character": "Sand Saref", "id": 8170, "credit_id": "52fe449cc3a36847f809fed3", "cast_id": 3, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 3}, {"name": "Paz Vega", "character": "Plaster of Paris", "id": 3627, "credit_id": "52fe449cc3a36847f809fed7", "cast_id": 4, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 4}, {"name": "Jaime King", "character": "Lorelei Rox", "id": 5915, "credit_id": "52fe449cc3a36847f809feeb", "cast_id": 9, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 5}, {"name": "Dan Lauria", "character": "Dolan", "id": 29774, "credit_id": "52fe449cc3a36847f809feef", "cast_id": 10, "profile_path": "/ov3F6ddfjgw3SpvEuuHUxhh4yom.jpg", "order": 6}, {"name": "Sarah Paulson", "character": "Ellen Dolan", "id": 34490, "credit_id": "52fe449cc3a36847f809fef3", "cast_id": 11, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 7}, {"name": "Stana Katic", "character": "Morgenstern", "id": 34408, "credit_id": "52fe449cc3a36847f809fef7", "cast_id": 12, "profile_path": "/5Uv6wssCvAZfSTaXbiEiySQquHC.jpg", "order": 8}, {"name": "Frank Miller", "character": "Liebowitz", "id": 2293, "credit_id": "52fe449cc3a36847f809fefb", "cast_id": 13, "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "order": 9}, {"name": "Eric Balfour", "character": "Mahmoud", "id": 34489, "credit_id": "52fe449cc3a36847f809feff", "cast_id": 14, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 10}], "directors": [{"name": "Frank Miller", "department": "Directing", "job": "Director", "credit_id": "52fe449cc3a36847f809fedd", "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "id": 2293}], "vote_average": 4.9, "runtime": 103}, "193893": {"poster_path": "/8GVU8AaYpxiIS462SZgAtjh02pm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136621271, "overview": "It's the ultimate buddy cop movie except for one thing: they're not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted \u201cheroes\u201d get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.", "video": false, "id": 193893, "genres": [{"id": 35, "name": "Comedy"}], "title": "Let's Be Cops", "tagline": "Fake Cops. Real Trouble.", "vote_count": 373, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1924435", "adult": false, "backdrop_path": "/43GrPpAeBUOvOCZ8L1A3MLuDnkc.jpg", "production_companies": [{"name": "WideAwake", "id": 28787}, {"name": "Genre Films", "id": 28788}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2014-08-13", "popularity": 6.28753720260726, "original_title": "Let's Be Cops", "budget": 17000000, "cast": [{"name": "Nina Dobrev", "character": "Josie", "id": 19961, "credit_id": "52fe4cdc9251416c91102901", "cast_id": 2, "profile_path": "/7YM2mqfrO9mrNJ6GwBNmSSiWNTR.jpg", "order": 0}, {"name": "Jake M. Johnson", "character": "Ryan Davis", "id": 543505, "credit_id": "52fe4cdc9251416c91102905", "cast_id": 3, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 1}, {"name": "Damon Wayans Jr.", "character": "Justin Chang", "id": 87822, "credit_id": "52fe4cdc9251416c91102909", "cast_id": 4, "profile_path": "/wOYJdq19v0rnUTY9vC0BZJowQiC.jpg", "order": 2}, {"name": "James D'Arcy", "character": "Porter", "id": 19655, "credit_id": "52fe4cdc9251416c9110290d", "cast_id": 5, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 3}, {"name": "Andy Garc\u00eda", "character": "Brolin", "id": 1271, "credit_id": "52fe4cdc9251416c9110291d", "cast_id": 8, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 4}, {"name": "Angela Kerecz", "character": "Sunset Strip Girl (uncredited)", "id": 1285499, "credit_id": "52fe4cdc9251416c91102921", "cast_id": 9, "profile_path": "/pTsh8auk8614t2rghDD4waA6l7A.jpg", "order": 5}, {"name": "Rob Riggle", "character": "Officer Segars", "id": 71403, "credit_id": "52fe4cdc9251416c91102925", "cast_id": 10, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 6}, {"name": "Keegan-Michael Key", "character": "Pupa", "id": 298410, "credit_id": "52fe4cdc9251416c91102929", "cast_id": 11, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 7}, {"name": "Anna Colwell", "character": "", "id": 118593, "credit_id": "52fe4cdc9251416c91102931", "cast_id": 13, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 8}, {"name": "Natasha Leggero", "character": "Annie", "id": 1214835, "credit_id": "542718f9c3a3680b370005ab", "cast_id": 16, "profile_path": "/xLHMLRHRrQ03zHukUNi1q5yroxt.jpg", "order": 9}, {"name": "Jon Lajoie", "character": "Todd Cutler", "id": 1251286, "credit_id": "5457c09e0e0a2652780034b8", "cast_id": 17, "profile_path": "/z516v78jbhrreNiiHFCud69hLwc.jpg", "order": 10}, {"name": "Tom Mardirosian", "character": "Georgie", "id": 118754, "credit_id": "5457cda40e0a266fc0001f3b", "cast_id": 18, "profile_path": "/xWLZyxA7oEjGIbu6pFn2nrO2Ux6.jpg", "order": 11}, {"name": "Rebecca Koon", "character": "Lydia", "id": 1229201, "credit_id": "5457cf45c3a3686075002f0b", "cast_id": 19, "profile_path": "/xLQkjmx7lK7QN6hyS1cW3VmXDq4.jpg", "order": 12}, {"name": "Joshua Ormond", "character": "Little Joey", "id": 1094160, "credit_id": "5457cf99c3a36869020038b2", "cast_id": 20, "profile_path": "/bmLtTIulHbUbDSdut3WBnSOlrmp.jpg", "order": 13}, {"name": "L. Warren Young", "character": "Jackson", "id": 80618, "credit_id": "5457d154c3a368209f002046", "cast_id": 21, "profile_path": "/mS5jEWRaWXJfzDDjPuVzs4HcYGm.jpg", "order": 14}, {"name": "Nelson Bonilla", "character": "Pasha", "id": 232749, "credit_id": "5457d2bcc3a3681473009a60", "cast_id": 22, "profile_path": "/5LtJKIaeBtzm9u64bIIvYP3cUFc.jpg", "order": 15}, {"name": "Brian Oerly", "character": "Goran", "id": 1381388, "credit_id": "5457d3aec3a3686902003940", "cast_id": 23, "profile_path": "/zaBG1TgdRxsAgVsg3M2KDTrQnNd.jpg", "order": 16}, {"name": "Jeff Chase", "character": "Leka", "id": 56448, "credit_id": "5457d51b0e0a2648c200a142", "cast_id": 24, "profile_path": "/x7W1nwnsITcPdODJ5OEP0HF71BH.jpg", "order": 17}, {"name": "Alec Rayme", "character": "Misha", "id": 1381389, "credit_id": "5457d646c3a3681473009aa6", "cast_id": 25, "profile_path": "/iYVNYYIJTtdPWFfAcujmhoZ3bs.jpg", "order": 18}, {"name": "Randall P. Havens", "character": "Dave", "id": 1381393, "credit_id": "5457d86ac3a3681473009af4", "cast_id": 26, "profile_path": "/rSs4RR2sDJSp8hWj6bNbSTwwSio.jpg", "order": 19}, {"name": "Chas Harvey", "character": "Creative Executive #1 (as Chas Robert Skees)", "id": 1381394, "credit_id": "5457d973c3a36869020039e4", "cast_id": 27, "profile_path": "/2taIxqmnBHENQKZSlIz1WqpF6fE.jpg", "order": 20}, {"name": "Dane Davenport", "character": "Creative Executive #2", "id": 1371098, "credit_id": "5457db4f0e0a265278003770", "cast_id": 28, "profile_path": "/6DEdP1h8MlbCibQgut0EqpazXDe.jpg", "order": 21}, {"name": "Raven-Danielle Baker", "character": "Creative Executive #3 (as Raven Baker)", "id": 1381396, "credit_id": "5457dbf2c3a368209f00216f", "cast_id": 29, "profile_path": "/3iDPYiBIaD1TIcNhqUosLXLLXnp.jpg", "order": 22}, {"name": "Chelsea Hayes", "character": "Female Kiss-Ass Executive", "id": 1381406, "credit_id": "5457dcfc0e0a2648d600a0d1", "cast_id": 30, "profile_path": "/wHfseKDKrubOfDhq3tlOdpmyRg2.jpg", "order": 23}, {"name": "Kara Michele Wilder", "character": "Gorgeous Woman", "id": 1381473, "credit_id": "545811230e0a261155000479", "cast_id": 31, "profile_path": "/mlq6f3r4XXfkFGCpEKTrnEqpn81.jpg", "order": 24}, {"name": "Briana Venskus", "character": "Precious", "id": 1381474, "credit_id": "545812a1c3a36839a70004a8", "cast_id": 32, "profile_path": "/rt3p1sLRbDu06xh4CLF5eUp9TyN.jpg", "order": 25}, {"name": "Jwaundace Candece", "character": "JaQuandae", "id": 1370799, "credit_id": "5458156d0e0a26115e0004e0", "cast_id": 33, "profile_path": "/s7qJp6vIXJWf8ASpsTydwdUJZER.jpg", "order": 26}, {"name": "Sam Medina", "character": "Tough Guy", "id": 1044954, "credit_id": "5458169b0e0a26115e000516", "cast_id": 34, "profile_path": "/5erle4K8m7QbK8ITKnY7F4PMMAp.jpg", "order": 27}, {"name": "Americus Abesamis", "character": "Samoan Guy", "id": 1381475, "credit_id": "5458175fc3a368398f00051f", "cast_id": 35, "profile_path": "/sZefgkttso3M6Rg63y0I0iYwXC4.jpg", "order": 28}, {"name": "Wilson Schwarz", "character": "Mississippi Kid", "id": 1381476, "credit_id": "545818b80e0a26116f000573", "cast_id": 36, "profile_path": "/xDiBQdzrzIqcQnHlYeqKJpkqvUw.jpg", "order": 29}, {"name": "Andrew Kochman", "character": "Upset Kid", "id": 1381477, "credit_id": "545819adc3a36839970005a7", "cast_id": 37, "profile_path": "/eKejGIPxzcJbxl5SAfEbpNKTKw7.jpg", "order": 30}, {"name": "Hoke Faser", "character": "8th Grader", "id": 1381478, "credit_id": "54581a880e0a2611580005be", "cast_id": 38, "profile_path": null, "order": 31}, {"name": "Ron Caldwell", "character": "Ron", "id": 1272952, "credit_id": "54581bb7c3a36839ac000551", "cast_id": 39, "profile_path": "/ar318YF8fBHuUw9Cvzo25DKv32Z.jpg", "order": 32}, {"name": "Ted Huckabee", "character": "Father", "id": 97845, "credit_id": "54581cee0e0a26115500061a", "cast_id": 40, "profile_path": "/sLkpSWB86TBC3XRHkTwmJwUOB9F.jpg", "order": 33}, {"name": "Jackie Costello", "character": "Wife #1", "id": 1381479, "credit_id": "54581d500e0a26115500062e", "cast_id": 41, "profile_path": null, "order": 34}, {"name": "Joy Glover Walters", "character": "Wife #2", "id": 1381480, "credit_id": "545820ba0e0a26116a000665", "cast_id": 42, "profile_path": "/qTHAeMHLl0BfI8cYk8YxO61eUNp.jpg", "order": 35}, {"name": "Daniel Parvis", "character": "Husband #1", "id": 1381481, "credit_id": "54582207c3a368398f000721", "cast_id": 43, "profile_path": null, "order": 36}, {"name": "Justin Miles", "character": "Husband #2", "id": 1381491, "credit_id": "5458253bc3a368398f0007c0", "cast_id": 44, "profile_path": "/lI6F1rwXrQ65FgbHlC6btSwHUUq.jpg", "order": 37}, {"name": "Michael Scialabba", "character": "Old Teammate #1", "id": 1381492, "credit_id": "545827080e0a2611620007f1", "cast_id": 45, "profile_path": "/o3p4pmpoXOdVwXNVkrIzcSOhSLM.jpg", "order": 38}, {"name": "Matt Mangum", "character": "Old Teammate #2", "id": 1381493, "credit_id": "5458284e0e0a26115800084f", "cast_id": 46, "profile_path": "/xDrLNsZtzBmNUXzhFpNR7HAd8HW.jpg", "order": 39}, {"name": "Desmond Phillips", "character": "Mike", "id": 558899, "credit_id": "54582a43c3a368399d00082b", "cast_id": 47, "profile_path": "/5lyZ3OIHBaivlJB8ce4DGxXN4Xd.jpg", "order": 40}, {"name": "Corey James Wright", "character": "Paul", "id": 1381494, "credit_id": "54582acec3a368399d000847", "cast_id": 48, "profile_path": "/hsRaM5wVFk3QMZz8SGugb1A4aBn.jpg", "order": 41}, {"name": "Rebecca Galarza", "character": "Hot Bachelorette", "id": 1205578, "credit_id": "5458af7f0e0a26115b0018d0", "cast_id": 49, "profile_path": "/jxGs5h2RRLEoV77Ip0gVTbzqNC5.jpg", "order": 42}, {"name": "Katie Deal", "character": "Frozen Wife", "id": 1381627, "credit_id": "5458aff3c3a368398f001841", "cast_id": 50, "profile_path": null, "order": 43}, {"name": "Ryan Girard", "character": "Frozen Husband", "id": 1381628, "credit_id": "5458b087c3a36839a700196f", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Jamie Moore", "character": "Frozen Guy #1", "id": 1381630, "credit_id": "5458b26f0e0a26116a0017f4", "cast_id": 52, "profile_path": "/vpvSx7rmn320bAApwJS9EHDvl7P.jpg", "order": 45}, {"name": "Jamie Renell", "character": "Frozen Guy #2", "id": 1083987, "credit_id": "5458b43a0e0a2611550019ce", "cast_id": 53, "profile_path": "/bdGhyb8657S8vW8gEtw0bvH475u.jpg", "order": 46}, {"name": "Michael McCormick", "character": "Punk Skateboarder", "id": 163839, "credit_id": "5458b861c3a368399d0019a1", "cast_id": 54, "profile_path": null, "order": 47}, {"name": "Adam Rosenberg", "character": "Dude #1", "id": 1381649, "credit_id": "5458b8d60e0a261158001a75", "cast_id": 55, "profile_path": "/hriGvPG3xiTfTglInenSPPnJQFc.jpg", "order": 48}, {"name": "Elliott Dixon", "character": "Dude #2", "id": 1381651, "credit_id": "5458bac30e0a261158001ac1", "cast_id": 56, "profile_path": "/xou7PoVVIGLd0Jcl1eMDzmNWzM9.jpg", "order": 49}, {"name": "Allie O'Neill", "character": "Bachelorette #1 (as Allie Brown)", "id": 1381663, "credit_id": "5458bfc7c3a36839a4001a5c", "cast_id": 57, "profile_path": "/qdc34BDdMq9NBImIzWPHwN9zfpp.jpg", "order": 50}, {"name": "Brittany Susko", "character": "Bachelorette #2", "id": 1381665, "credit_id": "5458c1d3c3a36839a4001aa4", "cast_id": 58, "profile_path": null, "order": 51}, {"name": "Jennifer Allison Chavez", "character": "Bachelorette #3", "id": 1381670, "credit_id": "5458c41e0e0a261155001bad", "cast_id": 59, "profile_path": null, "order": 52}, {"name": "Caroline Kiger", "character": "Bachelorette #4", "id": 1381671, "credit_id": "5458c52e0e0a26116a0019ba", "cast_id": 60, "profile_path": null, "order": 53}, {"name": "Rose Locke", "character": "Bachelorette #5 (as Jennifer Rose Locke)", "id": 1381672, "credit_id": "5458c5e20e0a26115e001b86", "cast_id": 61, "profile_path": null, "order": 54}, {"name": "Courtney Patterson", "character": "Receptionist", "id": 1381673, "credit_id": "5458c8aac3a36839ac0018ab", "cast_id": 62, "profile_path": "/xqd47Gqy4MpAwCkFaJACksol3Ch.jpg", "order": 55}, {"name": "Marc Farley", "character": "Random Neighbor", "id": 1381675, "credit_id": "5458cad50e0a261155001c56", "cast_id": 63, "profile_path": "/trkKfG4OydjGmstukjOaAtNkUXI.jpg", "order": 56}, {"name": "Patricia Taylor", "character": "Random Neighbor's Wife", "id": 1381688, "credit_id": "5458cdc60e0a26115e001c40", "cast_id": 64, "profile_path": "/XXiEJ1k9T0Ob1sjTr7K3oCoUen.jpg", "order": 57}, {"name": "Patricia French", "character": "Angie", "id": 128207, "credit_id": "5458cfd2c3a36839a4001bc3", "cast_id": 65, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 58}, {"name": "Matthew Wiese", "character": "Pupa's Rival (as Matt 'Horshu' Wiese)", "id": 983700, "credit_id": "5459de07c3a36839ac00338c", "cast_id": 80, "profile_path": "/8eowxpdU650dByrmMFKzS9h7BsQ.jpg", "order": 59}, {"name": "Bob Jennings", "character": "Basement Sergeant", "id": 113506, "credit_id": "5458d55bc3a3683993001cea", "cast_id": 67, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 60}, {"name": "Jessica Luza", "character": "Clipboard Girl", "id": 1381695, "credit_id": "5458d6590e0a261155001d2f", "cast_id": 68, "profile_path": "/yjp7XSwCVffZjQJzs1NeiDsFTq9.jpg", "order": 61}, {"name": "Jason Pendergraft", "character": "Officer Thomas", "id": 1381698, "credit_id": "5458d85dc3a36839a7001d19", "cast_id": 69, "profile_path": "/w3YXbqY0n1Ljlo04aqfksi8ifUZ.jpg", "order": 62}, {"name": "Patch Darragh", "character": "Officer Kaplan", "id": 172156, "credit_id": "5458db990e0a261155001dac", "cast_id": 70, "profile_path": "/ozrGFV2Ffv5erGlXvWKRPCNmpu9.jpg", "order": 63}, {"name": "Bill Pankow", "character": "Police Captain", "id": 1264, "credit_id": "5458ddc4c3a36839a0001d26", "cast_id": 71, "profile_path": "/3cX0GVPg9YnqRFKFoZ5Xa7fjSX5.jpg", "order": 64}, {"name": "Michael Flores", "character": "Tattooed Gangster", "id": 1381706, "credit_id": "5458e3acc3a36839a4001d5b", "cast_id": 72, "profile_path": "/58Z9sJA6hQOeAUW2R3SBn6x7dCi.jpg", "order": 65}, {"name": "Antwan Mills", "character": "Commercial Actor #1", "id": 1381712, "credit_id": "5458e5810e0a261155001e95", "cast_id": 73, "profile_path": "/58nvO2Se7TS0ETUEzHHjJ0MLH5U.jpg", "order": 66}, {"name": "Jennifer Stearns", "character": "Commercial Actor #2", "id": 1381720, "credit_id": "5458e99b0e0a261155001efa", "cast_id": 74, "profile_path": null, "order": 67}, {"name": "Sal Verena", "character": "Commercial Actor #3", "id": 1381721, "credit_id": "5458ea0d0e0a261158001eb4", "cast_id": 75, "profile_path": null, "order": 68}, {"name": "Mary Jo Catlett", "character": "Old Lady", "id": 80634, "credit_id": "5458ebc90e0a26115e001ebe", "cast_id": 76, "profile_path": "/iC6TbqiOEAYhZ9mcOoXIaRuiSDp.jpg", "order": 69}, {"name": "Colin Dennard", "character": "Pizza Guy", "id": 1254366, "credit_id": "5458ec91c3a368398f001de3", "cast_id": 77, "profile_path": "/uGKX5nNtTfVtqkaCodfTz59XBFk.jpg", "order": 70}, {"name": "Damon Sementilli", "character": "Expensive Car Guy", "id": 1381725, "credit_id": "5458ed2ac3a3683997001f0b", "cast_id": 78, "profile_path": "/8QeVaslr2SxILzQ7ybpw9Eipsk8.jpg", "order": 71}, {"name": "Chen Tang", "character": "The Real Chang", "id": 1381726, "credit_id": "5458f0690e0a261165001e8c", "cast_id": 79, "profile_path": "/cWdfBw0FMjA7yJ5aPZVNDhOMIQ4.jpg", "order": 72}, {"name": "Vickie Eng", "character": "Asian Tourist (uncredited)", "id": 208316, "credit_id": "54f09d4a925141796e0083c0", "cast_id": 81, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 73}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe4cdc9251416c911028fd", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 6.6, "runtime": 104}, "96": {"poster_path": "/2y1z1baxKT0coTTRlnkI6McnR9f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 299965036, "overview": "Axel Foley is back and as funny as ever in this fast-paced sequel to the original smash hit. This time, the Detroit cop heads for the land of sunshine and palm trees to find out who shot police Captain Andrew Bogomil. Thanks to a couple of old friends, Axel's investigation uncovers a series of robberies masterminded by a heartless weapons kingpin, and the chase is on!", "video": false, "id": 96, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Beverly Hills Cop II", "tagline": "The Heat's Back On!", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lhZQuT76B9YcxZIudXZMhhWCKcl.jpg", "poster_path": "/ty7zsl0xkVDUlibYkFUjRAYUkvE.jpg", "id": 85861, "name": "Beverly Hills Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092644", "adult": false, "backdrop_path": "/mXenFohxCO4jQ0e1bJf4e9gebxL.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1987-05-18", "popularity": 0.664007210450233, "original_title": "Beverly Hills Cop II", "budget": 20000000, "cast": [{"name": "Eddie Murphy", "character": "Det. Axel Foley", "id": 776, "credit_id": "52fe4217c3a36847f80032a9", "cast_id": 17, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Judge Reinhold", "character": "Det. William 'Billy' Rosewood", "id": 777, "credit_id": "52fe4217c3a36847f80032ad", "cast_id": 18, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 1}, {"name": "John Ashton", "character": "Det. Sgt. John Taggart", "id": 778, "credit_id": "52fe4217c3a36847f80032b1", "cast_id": 19, "profile_path": "/omfIdOt1F8LDkb7AMZTtLDiyJ3O.jpg", "order": 2}, {"name": "J\u00fcrgen Prochnow", "character": "Maxwell Dent", "id": 920, "credit_id": "52fe4217c3a36847f80032b5", "cast_id": 20, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 3}, {"name": "Ronny Cox", "character": "Capt./Chief Andrew Bogomil", "id": 780, "credit_id": "52fe4217c3a36847f80032b9", "cast_id": 21, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 4}, {"name": "Brigitte Nielsen", "character": "Karla Fry", "id": 921, "credit_id": "52fe4217c3a36847f80032bd", "cast_id": 22, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 5}, {"name": "Dean Stockwell", "character": "Charles 'Chip' Cain", "id": 923, "credit_id": "52fe4217c3a36847f80032c1", "cast_id": 23, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 6}, {"name": "Paul Reiser", "character": "Det. Jeffrey Friedman", "id": 781, "credit_id": "52fe4217c3a36847f80032c5", "cast_id": 24, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 7}, {"name": "Gilbert R. Hill", "character": "Insp. Douglas Todd (as Gil Hill)", "id": 787, "credit_id": "52fe4217c3a36847f80032c9", "cast_id": 25, "profile_path": "/9kgwJTs4hT9oJuRiC4zj4zxwn68.jpg", "order": 8}, {"name": "Paul Guilfoyle", "character": "Nikos Thomopolis", "id": 925, "credit_id": "52fe4217c3a36847f80032cd", "cast_id": 26, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 9}, {"name": "Ola Ray", "character": "Playboy Playmate", "id": 926, "credit_id": "52fe4217c3a36847f80032d1", "cast_id": 27, "profile_path": "/9GSKZj7Hfg4Wee00etJwd18Zakb.jpg", "order": 10}, {"name": "Rebecca Ferratti", "character": "Playboy Playmate", "id": 928, "credit_id": "52fe4217c3a36847f80032d5", "cast_id": 28, "profile_path": "/jkj9xVFHEftdPfuDTxqLF1WgoZr.jpg", "order": 11}, {"name": "Allen Garfield", "character": "Police Chief Harold Lutz", "id": 922, "credit_id": "52fe4217c3a36847f80032d9", "cast_id": 29, "profile_path": "/wa8WAH20QGm1fLPR5Wrbja5C5rx.jpg", "order": 12}, {"name": "Chris Rock", "character": "Playboy Mansion Valet", "id": 2632, "credit_id": "52fe4217c3a36847f80032dd", "cast_id": 30, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 13}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f800324b", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.1, "runtime": 100}, "97": {"poster_path": "/cTF8lpXvAwT1SLH9kVFZZl0AO0D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33000000, "overview": "As Kevin Flynn searches for proof that he invented a hit video game, he is \"digitalized\" by a laser and finds himself inside The Grid, where programs suffer under the tyrannical rule of the Master Control Program. With the help of TRON, a security program, Flynn seeks to free The Grid from the MCP.", "video": false, "id": 97, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "TRON", "tagline": "A world inside the computer where man has never been. Until now.", "vote_count": 245, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o8NBfffQPE9tHTR9l7FuWbdVPHu.jpg", "poster_path": "/cvFlDIfOwhYe4ouAAfdyq9E5zlZ.jpg", "id": 63043, "name": "TRON Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084827", "adult": false, "backdrop_path": "/rRTMdhZ7kxMdJIqykz0t4p0HABA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Lisberger/Kushner", "id": 558}], "release_date": "1982-07-09", "popularity": 0.812611122738359, "original_title": "TRON", "budget": 17000000, "cast": [{"name": "Jeff Bridges", "character": "Kevin Flynn/Clu", "id": 1229, "credit_id": "52fe4217c3a36847f800332b", "cast_id": 1, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Bruce Boxleitner", "character": "Alan Bradley/Tron", "id": 2547, "credit_id": "52fe4217c3a36847f800332f", "cast_id": 2, "profile_path": "/8CWvXiTru0EPH0M9ecLQ84E0YWA.jpg", "order": 1}, {"name": "David Warner", "character": "Ed Dillinger/Sark/Voice of Master Control Program", "id": 2076, "credit_id": "52fe4217c3a36847f8003333", "cast_id": 3, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 2}, {"name": "Cindy Morgan", "character": "Lora/Yori", "id": 2548, "credit_id": "52fe4217c3a36847f8003337", "cast_id": 4, "profile_path": "/iv7FOx6sann9O0SqLmHs5OFlWCz.jpg", "order": 3}, {"name": "Barnard Hughes", "character": "Dr. Walter Gibbs/Dumont", "id": 2549, "credit_id": "52fe4217c3a36847f800333b", "cast_id": 5, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 4}, {"name": "Dan Shor", "character": "Ram/Popcorn Co-Worker", "id": 2550, "credit_id": "52fe4217c3a36847f800333f", "cast_id": 6, "profile_path": "/3howkcUGMpjGL2uyON5AlUnFJG8.jpg", "order": 5}, {"name": "Peter Jurasik", "character": "Crom", "id": 12876, "credit_id": "52fe4217c3a36847f80033b5", "cast_id": 26, "profile_path": "/jk1UwljHvhFTyVqJQuj1jMj6WeD.jpg", "order": 6}, {"name": "Tony Stephano", "character": "Peter/Sark's Lieutenant", "id": 12877, "credit_id": "52fe4217c3a36847f80033b9", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Craig Chudy", "character": "Warrior #1", "id": 12878, "credit_id": "52fe4217c3a36847f80033bd", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Vince Deadrick Jr.", "character": "Warrior #2", "id": 12879, "credit_id": "52fe4217c3a36847f80033c1", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Sam Schatz", "character": "Expert Disc Warrior", "id": 12880, "credit_id": "52fe4217c3a36847f80033c5", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Michael Dudikoff", "character": "Conscript #2", "id": 21259, "credit_id": "53dbbdc3c3a368434100006e", "cast_id": 31, "profile_path": "/oUsn5aUJ4f9V4a5mcucTVbQMRj1.jpg", "order": 11}], "directors": [{"name": "Steven Lisberger", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f800334b", "profile_path": "/ixjKUmGCNjA0dkeGI1pqKtNEolj.jpg", "id": 12859}], "vote_average": 6.6, "runtime": 96}, "98": {"poster_path": "/6WBIzCgmDCYrqh64yDREGeDk9d3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 457640427, "overview": "Gladiator is an epic film of love, death and betrayal set in the Roman Empire. General Maximus' success in battle earns the favour of an elderly Emperor at the expense of the Emperor's son. In a fit of jealous rage the son slays his father before turning his anger towards Maximus. Now reduced to a slave, his family dead, Maximus must fight as a gladiator to gain his freedom, and his revenge.", "video": false, "id": 98, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Gladiator", "tagline": "A Hero Will Rise.", "vote_count": 2284, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0172495", "adult": false, "backdrop_path": "/5vZw7ltCKI0JiOYTtRxaIC3DX0e.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Mill Film", "id": 21904}, {"name": "C & L", "id": 21905}, {"name": "Dawliz", "id": 21906}], "release_date": "2000-05-01", "popularity": 3.29709474884894, "original_title": "Gladiator", "budget": 103000000, "cast": [{"name": "Russell Crowe", "character": "Maximus", "id": 934, "credit_id": "52fe4217c3a36847f8003435", "cast_id": 8, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Commodus", "id": 73421, "credit_id": "52fe4217c3a36847f8003439", "cast_id": 9, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "Connie Nielsen", "character": "Lucilla", "id": 935, "credit_id": "52fe4217c3a36847f800343d", "cast_id": 10, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 2}, {"name": "Oliver Reed", "character": "Proximo", "id": 936, "credit_id": "52fe4217c3a36847f8003441", "cast_id": 11, "profile_path": "/we10IusqRV1NHRtA68ftyck2N33.jpg", "order": 3}, {"name": "Richard Harris", "character": "Marcus Aurelius", "id": 194, "credit_id": "52fe4217c3a36847f8003445", "cast_id": 12, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 4}, {"name": "Derek Jacobi", "character": "Gracchus", "id": 937, "credit_id": "52fe4217c3a36847f8003449", "cast_id": 13, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 5}, {"name": "Djimon Hounsou", "character": "Juba", "id": 938, "credit_id": "52fe4217c3a36847f800344d", "cast_id": 14, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 6}, {"name": "David Schofield", "character": "Falco", "id": 939, "credit_id": "52fe4217c3a36847f8003451", "cast_id": 15, "profile_path": "/6FdYsGTI85M5s5QDbFCogmQWsOR.jpg", "order": 7}, {"name": "John Shrapnel", "character": "Gaius", "id": 940, "credit_id": "52fe4217c3a36847f8003455", "cast_id": 16, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 8}, {"name": "Tomas Arana", "character": "Quintus", "id": 941, "credit_id": "52fe4217c3a36847f8003459", "cast_id": 17, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 9}, {"name": "Ralf M\u00f6ller", "character": "Hagen", "id": 942, "credit_id": "52fe4217c3a36847f800345d", "cast_id": 18, "profile_path": "/hkeBpMT7UAPTARD6fPsG10Ob5Cr.jpg", "order": 10}, {"name": "Tommy Flanagan", "character": "Cicero", "id": 2478, "credit_id": "52fe4217c3a36847f8003491", "cast_id": 28, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 11}, {"name": "Spencer Treat Clark", "character": "Lucius", "id": 4012, "credit_id": "52fe4217c3a36847f8003495", "cast_id": 29, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 12}, {"name": "David Hemmings", "character": "Cassius", "id": 15196, "credit_id": "52fe4217c3a36847f8003499", "cast_id": 30, "profile_path": "/k2M6UrbkWYF8FewmKQm3TWu6KMX.jpg", "order": 13}, {"name": "Sven-Ole Thorsen", "character": "Tigris", "id": 20761, "credit_id": "52fe4217c3a36847f800349d", "cast_id": 31, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 14}, {"name": "Giannina Facio", "character": "Maximus' Wife", "id": 58787, "credit_id": "52fe4217c3a36847f80034a5", "cast_id": 33, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 15}, {"name": "Alun Raglan", "character": "Praetorian Guard #1", "id": 1052482, "credit_id": "52fe4217c3a36847f80034a1", "cast_id": 32, "profile_path": "/7HOO5qPFBRAKCEgsqXZltaEyB4Z.jpg", "order": 16}, {"name": "Giorgio Cantarini", "character": "Maximus' Son", "id": 9236, "credit_id": "55338bc39251415295004f7b", "cast_id": 106, "profile_path": "/kqS0xt0oPSjAA54S1wWk118ALgA.jpg", "order": 17}, {"name": "David Bailie", "character": "Engineer", "id": 1715, "credit_id": "55338c25c3a368221f004b9c", "cast_id": 107, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 18}, {"name": "Omid Djalili", "character": "Slave Trader", "id": 41379, "credit_id": "55338c68925141101400343c", "cast_id": 108, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 19}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f800340d", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.4, "runtime": 155}, "100": {"poster_path": "/9WObtE3uqnVAt9hLSK0qtwh9Izd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 3897569, "overview": "A fast paced comedy about a card sharp and his unwillingly enlisted friends, who need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door. Lots of British humor, off the wall characters, and a line up of unbelievable scenes put director Guy Ritchie on the map.", "video": false, "id": 100, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Lock, Stock and Two Smoking Barrels", "tagline": "A Disgrace to Criminals Everywhere.", "vote_count": 817, "homepage": "http://www.universalstudiosentertainment.com/lock-stock-and-two-smoking-barrels/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120735", "adult": false, "backdrop_path": "/lBpl3aIprl25iOPqjc2JiOSd7eT.jpg", "production_companies": [{"name": "Handmade Films Ltd.", "id": 146}, {"name": "Summit Entertainment", "id": 491}, {"name": "The Steve Tisch Company", "id": 21920}, {"name": "SKA Films", "id": 13419}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1998-03-05", "popularity": 0.48290347868943, "original_title": "Lock, Stock and Two Smoking Barrels", "budget": 1350000, "cast": [{"name": "Jason Flemyng", "character": "Tom", "id": 973, "credit_id": "52fe4217c3a36847f80035fb", "cast_id": 12, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 0}, {"name": "Dexter Fletcher", "character": "Soap", "id": 974, "credit_id": "52fe4217c3a36847f80035ff", "cast_id": 13, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 1}, {"name": "Nick Moran", "character": "Eddie", "id": 975, "credit_id": "52fe4217c3a36847f8003603", "cast_id": 14, "profile_path": "/q5As2X1Idd34ma9qXHhH5OvR7mE.jpg", "order": 2}, {"name": "Jason Statham", "character": "Bacon", "id": 976, "credit_id": "52fe4217c3a36847f8003607", "cast_id": 15, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 3}, {"name": "Steven Mackintosh", "character": "Winston", "id": 978, "credit_id": "52fe4217c3a36847f800360b", "cast_id": 16, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 4}, {"name": "Vinnie Jones", "character": "Big Chris", "id": 980, "credit_id": "52fe4217c3a36847f800360f", "cast_id": 17, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 5}, {"name": "Sting", "character": "JD", "id": 982, "credit_id": "52fe4217c3a36847f8003613", "cast_id": 18, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 6}, {"name": "Nicholas Rowe", "character": "J", "id": 984, "credit_id": "52fe4217c3a36847f8003617", "cast_id": 19, "profile_path": "/iA32qMujonoTzU1DdlnTRemBvRQ.jpg", "order": 7}, {"name": "Nick Marcq", "character": "Charles", "id": 985, "credit_id": "52fe4217c3a36847f800361b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Charles Forbes", "character": "Willie", "id": 986, "credit_id": "52fe4217c3a36847f800361f", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Lenny McLean", "character": "Barry the Baptist", "id": 987, "credit_id": "52fe4217c3a36847f8003623", "cast_id": 22, "profile_path": "/A3WqhQxdL7fZJ5ZcVHoLlksG4Np.jpg", "order": 10}, {"name": "Peter McNicholl", "character": "Little Chris", "id": 988, "credit_id": "52fe4217c3a36847f8003627", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "P. H. Moriarty", "character": "'Hatchet' Harry Lonsdale", "id": 989, "credit_id": "52fe4217c3a36847f800362b", "cast_id": 24, "profile_path": "/hbe7K1D6RDGErosR7C8erdN3ODR.jpg", "order": 12}, {"name": "Frank Harper", "character": "Dog", "id": 990, "credit_id": "52fe4217c3a36847f800362f", "cast_id": 25, "profile_path": "/6MaOt1Q6Js7jiA3qsHIcSGY1bbf.jpg", "order": 13}, {"name": "Steve Sweeney", "character": "Plank", "id": 991, "credit_id": "52fe4217c3a36847f8003633", "cast_id": 26, "profile_path": "/uxp1OyyGnzZW9m5ZqJ7v9b7RYPQ.jpg", "order": 14}, {"name": "Huggy Leaver", "character": "Paul", "id": 992, "credit_id": "52fe4217c3a36847f8003637", "cast_id": 27, "profile_path": "/xcfx1ELLNth5UZIM4lOpMK3GG0k.jpg", "order": 15}, {"name": "Tony McMahon", "character": "John", "id": 993, "credit_id": "52fe4217c3a36847f800363b", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Stephen Marcus", "character": "Nick the Greek", "id": 994, "credit_id": "52fe4217c3a36847f800363f", "cast_id": 29, "profile_path": "/hG6deNAV6EWvhJ1EFEh4XjXzfNK.jpg", "order": 17}, {"name": "Vas Blackwood", "character": "Rory Breaker", "id": 995, "credit_id": "52fe4217c3a36847f8003643", "cast_id": 30, "profile_path": "/h9JfWxJyG38n2JZFJ6LmUU3kG4k.jpg", "order": 18}, {"name": "Jake Abraham", "character": "Dean", "id": 4317, "credit_id": "52fe4217c3a36847f8003647", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Victor McGuire", "character": "Gary", "id": 4318, "credit_id": "52fe4217c3a36847f800364b", "cast_id": 32, "profile_path": "/czEQ0XdYIURxBfdiAdGXS6KAWea.jpg", "order": 20}, {"name": "Danny John-Jules", "character": "Barfly Jack", "id": 115787, "credit_id": "550c8bc89251413443001cbb", "cast_id": 35, "profile_path": "/d9yIjilG7BdiPYIsXyZBV0hCuyv.jpg", "order": 21}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f80035c1", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 7.2, "runtime": 105}, "101": {"poster_path": "/6fpIIUc0cbfSlsDzkf1m1XCiIAc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45284974, "overview": "Leon, the top hit man in New York, has earned a rep as an effective \"cleaner\". But when his next-door neighbors are wiped out by a loose-cannon DEA agent, he becomes the unwilling custodian of 12-year-old Mathilda. Before long, Mathilda's thoughts turn to revenge, and she considers following in Leon's footsteps.", "video": false, "id": 101, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Leon: The Professional", "tagline": "If you want a job done well, hire a professional.", "vote_count": 1304, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110413", "adult": false, "backdrop_path": "/mGN0lH2phYfesyEVqP2xvGUaxAQ.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1994-09-14", "popularity": 2.28859538590716, "original_title": "L\u00e9on", "budget": 16000000, "cast": [{"name": "Jean Reno", "character": "L\u00e9on", "id": 1003, "credit_id": "52fe4217c3a36847f80036b3", "cast_id": 12, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Mathilda", "id": 524, "credit_id": "52fe4217c3a36847f80036c3", "cast_id": 21, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Stansfield", "id": 64, "credit_id": "52fe4217c3a36847f80036b7", "cast_id": 13, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Danny Aiello", "character": "Tony", "id": 1004, "credit_id": "52fe4217c3a36847f80036bb", "cast_id": 15, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 2}, {"name": "Peter Appel", "character": "Malky", "id": 1005, "credit_id": "52fe4217c3a36847f80036bf", "cast_id": 16, "profile_path": "/wrAf4TGgtKE1mXWVtm1baTBDh6F.jpg", "order": 4}, {"name": "Willi One Blood", "character": "1St Stansfield Man", "id": 1006, "credit_id": "5300b1e19251416ae430779f", "cast_id": 23, "profile_path": "/v6CKo0DWpTkJt47aWiBuiCp7lH.jpg", "order": 5}, {"name": "Don Creech", "character": "2nd Stansfield man", "id": 1007, "credit_id": "5300b2139251416ade300c61", "cast_id": 24, "profile_path": "/sI2hA8u4BiMfqtMLaKwLgeH5vGy.jpg", "order": 6}, {"name": "Keith A. Glascoe", "character": "3rd Stansfield man (Benny)", "id": 1008, "credit_id": "5300b2399251416ade300f87", "cast_id": 25, "profile_path": "/d466DzS2wLqEz7FAHOfLpCmSpF0.jpg", "order": 7}, {"name": "Michael Badalucco", "character": "Mathilda's Father", "id": 1010, "credit_id": "5300b31e9251416ad830d36a", "cast_id": 26, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 8}, {"name": "Ellen Greene", "character": "Mathilda's Mother", "id": 13420, "credit_id": "5300b3529251416ade3049d4", "cast_id": 27, "profile_path": "/1EHwrl4PzPJzVbheXoqW6uzhMos.jpg", "order": 9}, {"name": "Elizabeth Regen", "character": "Mathilda's Sister", "id": 122230, "credit_id": "5300b3809251412a162ced41", "cast_id": 28, "profile_path": "/g53E398tOGW1wkgFtRxzVicVSOL.jpg", "order": 10}, {"name": "Carl J. Matusovich", "character": "Mathilda's Brother", "id": 977543, "credit_id": "5300b4a99251416ae431227f", "cast_id": 29, "profile_path": "/yTldUVHfjZ6EETmqTu96p3DlUaB.jpg", "order": 11}, {"name": "Frank Senger", "character": "Fatman", "id": 138401, "credit_id": "5300b53f9251416adb30e489", "cast_id": 31, "profile_path": "/jJXwj06VHdc7evwWq9kbcfsTZtQ.jpg", "order": 13}, {"name": "Stuart Rudin", "character": "Leon's Taxi driver", "id": 94435, "credit_id": "541193a5c3a3680207000f14", "cast_id": 32, "profile_path": "/7UOKyx48mPGHXl6HzQkCpCkEcn0.jpg", "order": 14}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4217c3a36847f8003679", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 7.8, "runtime": 110}, "103": {"poster_path": "/yxq4pk1xGmro8tQABuQIrWrvdaE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21100000, "overview": "Robert De Niro stars as Travis Bickle in this oppressive psychodrama about a Vietnam veteran who rebels against the decadence and immorality of big city life in New York while working the nightshift as a taxi driver.", "video": false, "id": 103, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Taxi Driver", "tagline": "On every street in every city, there's a nobody who dreams of being a somebody.", "vote_count": 500, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0075314", "adult": false, "backdrop_path": "/hjmJKAVoZ3n2KWbKgasbfdugwhu.jpg", "production_companies": [{"name": "Italo/Judeo Productions", "id": 46059}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Bill/Phillips", "id": 46060}], "release_date": "1976-02-08", "popularity": 1.4152518096347, "original_title": "Taxi Driver", "budget": 1300000, "cast": [{"name": "Robert De Niro", "character": "Travis Bickle", "id": 380, "credit_id": "52fe4218c3a36847f80037d7", "cast_id": 5, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Cybill Shepherd", "character": "Betsy", "id": 1036, "credit_id": "52fe4218c3a36847f80037db", "cast_id": 6, "profile_path": "/iWlt5Xba1z9oFqL8MHo110I6qZ5.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "'Sport' Matthew", "id": 1037, "credit_id": "52fe4218c3a36847f80037df", "cast_id": 7, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Jodie Foster", "character": "Iris Steensma", "id": 1038, "credit_id": "52fe4218c3a36847f80037e3", "cast_id": 8, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 3}, {"name": "Peter Boyle", "character": "Wizard", "id": 1039, "credit_id": "52fe4218c3a36847f80037e7", "cast_id": 9, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 4}, {"name": "Leonard Harris", "character": "Senator Charles Palantine", "id": 1040, "credit_id": "52fe4218c3a36847f80037eb", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Albert Brooks", "character": "Tom", "id": 13, "credit_id": "52fe4218c3a36847f80037ef", "cast_id": 11, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 6}, {"name": "Diahnne Abbott", "character": "Concession Girl", "id": 1041, "credit_id": "52fe4218c3a36847f80037f3", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Gino Ardito", "character": "Policeman al rally", "id": 1043, "credit_id": "52fe4218c3a36847f80037f7", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Martin Scorsese", "character": "Man in cab", "id": 1032, "credit_id": "52fe4218c3a36847f800384f", "cast_id": 29, "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "order": 9}, {"name": "Murray Moston", "character": "Iris' Time Keeper", "id": 77255, "credit_id": "52fe4218c3a36847f8003853", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Richard Higgs", "character": "Secret Service Agent", "id": 1274408, "credit_id": "52fe4218c3a36847f8003857", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Bill Minkin", "character": "Tom's Assistant", "id": 1274409, "credit_id": "52fe4218c3a36847f800385b", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Bob Maroff", "character": "Mafioso", "id": 169093, "credit_id": "52fe4218c3a36847f800385f", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Victor Argo", "character": "Melio, Delicatessen Owner", "id": 2561, "credit_id": "52fe4218c3a36847f8003863", "cast_id": 39, "profile_path": "/kYwuOpT59qqJnssl9R4226yHSAG.jpg", "order": 14}, {"name": "Joe Spinell", "character": "Personell Officer", "id": 16525, "credit_id": "53bb26ac0e0a2619780006b7", "cast_id": 40, "profile_path": "/wzZZO8xXn9OgljCmrGGR4L6wBdg.jpg", "order": 15}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f80037c1", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.4, "runtime": 113}, "104": {"poster_path": "/oTvbjW6NPVHswwiYrzqqC8GEzRL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Lola receives a phone call from her boyfriend Manny. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manny. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.", "video": false, "id": 104, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Run Lola Run", "tagline": "Every second of every day you're faced with a decision that can change your life.", "vote_count": 213, "homepage": "http://www.lolarennt.de/", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0130827", "adult": false, "backdrop_path": "/xzbAey8RrRNKOe6JZMuxbIRc1UE.jpg", "production_companies": [{"name": "X-Filme Creative Pool", "id": 1972}], "release_date": "1998-08-20", "popularity": 0.714455900911701, "original_title": "Lola rennt", "budget": 1530000, "cast": [{"name": "Franka Potente", "character": "Lola", "id": 679, "credit_id": "52fe4218c3a36847f80038df", "cast_id": 11, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 0}, {"name": "Moritz Bleibtreu", "character": "Manni", "id": 677, "credit_id": "52fe4218c3a36847f80038e3", "cast_id": 12, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 1}, {"name": "Herbert Knaup", "character": "Lola's Father", "id": 1081, "credit_id": "52fe4218c3a36847f80038e7", "cast_id": 13, "profile_path": "/cH0TG69o6Sc6of7ZaZP9BwQ3tHX.jpg", "order": 2}, {"name": "Nina Petri", "character": "Frau Hansen", "id": 1082, "credit_id": "52fe4218c3a36847f80038eb", "cast_id": 14, "profile_path": "/2P0ExPJn2ko62BwuVA7Ify4vRjm.jpg", "order": 3}, {"name": "Armin Rohde", "character": "Herr Schuster", "id": 1083, "credit_id": "52fe4218c3a36847f80038ef", "cast_id": 15, "profile_path": "/jUOdSGDo9az8rtpZnP4AzzgydQj.jpg", "order": 4}, {"name": "Joachim Kr\u00f3l", "character": "Homeless Man", "id": 1084, "credit_id": "52fe4218c3a36847f80038f3", "cast_id": 16, "profile_path": "/swED4GruvGgMdqpbshKKdzLIm1e.jpg", "order": 5}, {"name": "Heino Ferch", "character": "Ronnie", "id": 1086, "credit_id": "52fe4218c3a36847f80038f7", "cast_id": 18, "profile_path": "/dZFdmRr4Ohm5WXZstv7X0lMyd8m.jpg", "order": 6}, {"name": "Lars Rudolph", "character": "Herr Kruse", "id": 1087, "credit_id": "52fe4218c3a36847f80038fb", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Ludger Pistor", "character": "Herr Meier", "id": 1088, "credit_id": "52fe4218c3a36847f80038ff", "cast_id": 20, "profile_path": "/bhtJu7xvac15bcGGf7e6nwGOeI7.jpg", "order": 8}, {"name": "Sebastian Schipper", "character": "Mike", "id": 3702, "credit_id": "52fe4218c3a36847f8003915", "cast_id": 25, "profile_path": "/fzRs9csoyl9uE5aybQ9bqe1SGuc.jpg", "order": 10}, {"name": "Ute Lubosch", "character": "Mother", "id": 3703, "credit_id": "52fe4218c3a36847f8003919", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Julia Lindig", "character": "Doris", "id": 3704, "credit_id": "52fe4218c3a36847f800391d", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Andreas Petri", "character": "Cleaning Person", "id": 3705, "credit_id": "52fe4218c3a36847f8003921", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Klaus M\u00fcller", "character": "Croupier", "id": 3706, "credit_id": "52fe4218c3a36847f8003925", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Utz Krause", "character": "Casino Manager", "id": 3707, "credit_id": "52fe4218c3a36847f8003929", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Volkart Buff", "character": "Ambulance Driver", "id": 3708, "credit_id": "52fe4218c3a36847f800392d", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Monica Bleibtreu", "character": "Blind Woman", "id": 16782, "credit_id": "52fe4218c3a36847f8003937", "cast_id": 33, "profile_path": "/bAiztxeF4MXJmBFso5YJukNn0Y9.jpg", "order": 17}, {"name": "Suzanne von Borsody", "character": "Frau J\u00e4ger", "id": 142653, "credit_id": "52fe4218c3a36847f8003941", "cast_id": 35, "profile_path": "/nbL9bTK6hnGPSZtCccR85GT3bDs.jpg", "order": 18}], "directors": [{"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f80038ab", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 7.1, "runtime": 81}, "105": {"poster_path": "/pTpxQB1N0waaSc3OSn0e9oc8kx9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 381109762, "overview": "Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.", "video": false, "id": 105, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Back to the Future", "tagline": "He's the only kid ever to get into trouble before he was born.", "vote_count": 2224, "homepage": "http://www.bttfmovie.com/", "belongs_to_collection": {"backdrop_path": "/c9C9Pg2QctyjZHRmS0P8rZg1OTA.jpg", "poster_path": "/51J1AroyQ45V8DCJnfItFUaKFxL.jpg", "id": 264, "name": "Back to the Future Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088763", "adult": false, "backdrop_path": "/x4N74cycZvKu5k3KDERJay4ajR3.jpg", "production_companies": [{"name": "U-Drive Productions", "id": 20448}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1985-07-03", "popularity": 2.87794700675633, "original_title": "Back to the Future", "budget": 19000000, "cast": [{"name": "Michael J. Fox", "character": "Marty McFly / Marty McFly Jr / Marlene McFly", "id": 521, "credit_id": "52fe4218c3a36847f8003a13", "cast_id": 14, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Dr. Emmett Brown", "id": 1062, "credit_id": "52fe4218c3a36847f8003a17", "cast_id": 15, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Lorraine Baines McFly", "id": 1063, "credit_id": "52fe4218c3a36847f8003a1b", "cast_id": 16, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Crispin Glover", "character": "George McFly", "id": 1064, "credit_id": "52fe4218c3a36847f8003a1f", "cast_id": 17, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 3}, {"name": "Thomas F. Wilson", "character": "Biff Tannen", "id": 1065, "credit_id": "52fe4218c3a36847f8003a23", "cast_id": 18, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 4}, {"name": "Claudia Wells", "character": "Jennifer Parker", "id": 1066, "credit_id": "52fe4218c3a36847f8003a27", "cast_id": 19, "profile_path": "/lQWUidwPartKLzV3NYMVrkxooRO.jpg", "order": 5}, {"name": "Marc McClure", "character": "Dave McFly", "id": 1067, "credit_id": "52fe4218c3a36847f8003a2b", "cast_id": 20, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 6}, {"name": "Wendie Jo Sperber", "character": "Linda McFly", "id": 1068, "credit_id": "52fe4218c3a36847f8003a2f", "cast_id": 21, "profile_path": "/nadvO9Q24eNrGAznKmlOwV6E6Wb.jpg", "order": 7}, {"name": "George DiCenzo", "character": "Sam Baines", "id": 1069, "credit_id": "52fe4218c3a36847f8003a33", "cast_id": 22, "profile_path": "/u5pQL3gkcGcnpkc9NPuyiBB3e8f.jpg", "order": 8}, {"name": "Frances Lee McCain", "character": "Stella Baines", "id": 1070, "credit_id": "52fe4218c3a36847f8003a37", "cast_id": 23, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 9}, {"name": "James Tolkan", "character": "Mr. Strickland", "id": 1072, "credit_id": "52fe4218c3a36847f8003a3b", "cast_id": 24, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 10}, {"name": "Harry Waters, Jr.", "character": "Marvin Berry", "id": 1074, "credit_id": "52fe4218c3a36847f8003a3f", "cast_id": 25, "profile_path": "/lDpuXzAeqfoYbxV0QxidKPXoYfV.jpg", "order": 11}, {"name": "Billy Zane", "character": "Match", "id": 1954, "credit_id": "52fe4218c3a36847f8003a43", "cast_id": 26, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 12}, {"name": "J.J. Cohen", "character": "Skinhead", "id": 11673, "credit_id": "52fe4218c3a36847f8003a47", "cast_id": 27, "profile_path": "/cEmMWxPQ1PfpEYU1NjNb2F4XSJo.jpg", "order": 13}, {"name": "Casey Siemaszko", "character": "3-D", "id": 1953, "credit_id": "52fe4218c3a36847f8003a4b", "cast_id": 28, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 14}, {"name": "Donald Fullilove", "character": "Goldie Wilson", "id": 84494, "credit_id": "52fe4218c3a36847f8003a4f", "cast_id": 29, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 15}, {"name": "Lisa Freeman", "character": "Babs", "id": 97708, "credit_id": "52fe4218c3a36847f8003a53", "cast_id": 30, "profile_path": "/spwZaVY8ufKeT0Kkb02a8HgAr9i.jpg", "order": 16}, {"name": "Cristen Kauffman", "character": "Betty", "id": 1116544, "credit_id": "52fe4218c3a36847f8003a57", "cast_id": 31, "profile_path": "/b8mpdSwVGQqdZo37BDAeseCcQB0.jpg", "order": 17}, {"name": "Elsa Raven", "character": "Clocktower Lady", "id": 172280, "credit_id": "52fe4218c3a36847f8003a5b", "cast_id": 32, "profile_path": "/4pxbeI6yZyAMmeikbM7DzPex4z4.jpg", "order": 18}, {"name": "Will Hare", "character": "Pa Peabody", "id": 97718, "credit_id": "52fe4218c3a36847f8003a5f", "cast_id": 33, "profile_path": "/ucBDiQeJBnrwPvTCYiH194lRru5.jpg", "order": 19}, {"name": "Ivy Bethune", "character": "Ma Peabody", "id": 129319, "credit_id": "52fe4218c3a36847f8003a63", "cast_id": 34, "profile_path": "/9I1oyF0Fee3pQABnADhG0Kq73Vw.jpg", "order": 20}, {"name": "Jason Marin", "character": "Sherman Peabody", "id": 184030, "credit_id": "52fe4218c3a36847f8003a67", "cast_id": 35, "profile_path": "/vt8OeZi93AlWkVGZ3yazBqh4jWx.jpg", "order": 21}, {"name": "Katherine Britton", "character": "Daughter Peabody", "id": 1200788, "credit_id": "52fe4218c3a36847f8003a6b", "cast_id": 36, "profile_path": "/s4w5tbvGWrFkRCvNZ9AgNV9xse5.jpg", "order": 22}, {"name": "Jason Hervey", "character": "Milton Baines", "id": 94500, "credit_id": "52fe4218c3a36847f8003a6f", "cast_id": 37, "profile_path": "/1bFPRMePCwHTICLbUN3PN0k3dI5.jpg", "order": 23}, {"name": "Maia Brewton", "character": "Sally Baines", "id": 139044, "credit_id": "52fe4218c3a36847f8003a73", "cast_id": 38, "profile_path": "/zKdpmkcRGCo4Zs9mdfc8ZkSOVtN.jpg", "order": 24}, {"name": "Courtney Gains", "character": "Dixon", "id": 18708, "credit_id": "52fe4218c3a36847f8003a77", "cast_id": 39, "profile_path": "/7u8dTzgr4ODfpKwdYoUlTwptoCq.jpg", "order": 25}, {"name": "Richard L. Duran", "character": "Terrorist", "id": 238572, "credit_id": "52fe4218c3a36847f8003a7b", "cast_id": 40, "profile_path": "/iRdAaP2YNnhWk0iTfyTVzLkP8VU.jpg", "order": 26}, {"name": "Jeff O'Haco", "character": "Terrorist Van Driver", "id": 1020340, "credit_id": "52fe4218c3a36847f8003a7f", "cast_id": 41, "profile_path": "/jxzZd6t8KhDx5aKkRJyBxgXWBM0.jpg", "order": 27}, {"name": "Johnny Green", "character": "Scooter Kid #1", "id": 21065, "credit_id": "52fe4218c3a36847f8003a83", "cast_id": 42, "profile_path": "/wjx2eWoZ3GVuu4Po2gXGIdXbICn.jpg", "order": 28}, {"name": "Jamie Abbott", "character": "Scooter Kid #2", "id": 158713, "credit_id": "52fe4218c3a36847f8003a87", "cast_id": 43, "profile_path": null, "order": 29}, {"name": "Read Morgan", "character": "Cop", "id": 99725, "credit_id": "52fe4218c3a36847f8003a8f", "cast_id": 45, "profile_path": "/stXkSnEaGj9cSLIdiqlCWzasV0O.jpg", "order": 31}, {"name": "Sachi Parker", "character": "Bystander #1", "id": 77874, "credit_id": "52fe4218c3a36847f8003a93", "cast_id": 46, "profile_path": "/mGdbHzoQ7ToJ7mLIvKLAoDLExS2.jpg", "order": 32}, {"name": "Robert Krantz", "character": "Bystander #2", "id": 160343, "credit_id": "52fe4218c3a36847f8003a97", "cast_id": 47, "profile_path": "/8zrLA17q7BcACYbTRwCcs1xYyKi.jpg", "order": 33}, {"name": "Gary Riley", "character": "Guy #1", "id": 3038, "credit_id": "52fe4218c3a36847f8003a9b", "cast_id": 48, "profile_path": "/d1TZEZcWxyTnqLdop06MOKWMvm8.jpg", "order": 34}, {"name": "Karen Petrasek", "character": "Girl #1", "id": 175060, "credit_id": "52fe4218c3a36847f8003a9f", "cast_id": 49, "profile_path": null, "order": 35}, {"name": "George Buck Flower", "character": "Red Thomas - the Bum", "id": 54564, "credit_id": "52fe4218c3a36847f8003aa3", "cast_id": 50, "profile_path": "/xHzW4GszCLTZLNxvTcKL9ICuLIc.jpg", "order": 36}, {"name": "Tommy Thomas", "character": "Starlighter", "id": 1200791, "credit_id": "52fe4218c3a36847f8003aa7", "cast_id": 51, "profile_path": null, "order": 37}, {"name": "Granville 'Danny' Young", "character": "Starlighter", "id": 1200792, "credit_id": "52fe4218c3a36847f8003aab", "cast_id": 52, "profile_path": null, "order": 38}, {"name": "David Harold Brown", "character": "Starlighter", "id": 1200793, "credit_id": "52fe4218c3a36847f8003aaf", "cast_id": 53, "profile_path": null, "order": 39}, {"name": "Lloyd L. Tolbert", "character": "Starlighter", "id": 1200794, "credit_id": "52fe4218c3a36847f8003ab3", "cast_id": 54, "profile_path": "/5q81Ro5P2nonxEHq1L6kAebMVWV.jpg", "order": 40}, {"name": "Paul Hanson", "character": "Pinhead", "id": 964124, "credit_id": "52fe4218c3a36847f8003ab7", "cast_id": 55, "profile_path": "/3rdsCqjVoLEZpO5iqVrQbZHOsyp.jpg", "order": 41}, {"name": "Lee Brownfield", "character": "Pinhead", "id": 1200796, "credit_id": "52fe4218c3a36847f8003abb", "cast_id": 56, "profile_path": null, "order": 42}, {"name": "Robert DeLapp", "character": "Pinhead", "id": 180468, "credit_id": "52fe4218c3a36847f8003abf", "cast_id": 57, "profile_path": null, "order": 43}, {"name": "Walter Scott", "character": "Man driving jeep - 1985", "id": 16474, "credit_id": "52fe4218c3a36847f8003ac3", "cast_id": 58, "profile_path": "/l8uXZW6xypNY7e4wd7a0HqzP6iA.jpg", "order": 44}, {"name": "Charles L. Campbell", "character": "1955 Radio Announcer (voice) (uncredited)", "id": 9971, "credit_id": "52fe4218c3a36847f8003ac7", "cast_id": 59, "profile_path": "/1MoCPekZ23I9uyq6VPFka6o9Zkz.jpg", "order": 45}, {"name": "Deborah Harmon", "character": "TV Newscaster (uncredited)", "id": 100600, "credit_id": "52fe4218c3a36847f8003acb", "cast_id": 60, "profile_path": "/f9zq9wnb7y9QzdseVz7TiiERRRb.jpg", "order": 46}, {"name": "Janine King", "character": "High School Girl (uncredited)", "id": 1200797, "credit_id": "52fe4218c3a36847f8003acf", "cast_id": 61, "profile_path": "/lr97zuxxGlLivxcQbSbNGiliesE.jpg", "order": 47}, {"name": "Huey Lewis", "character": "High School Band Audition Judge (uncredited)", "id": 168702, "credit_id": "52fe4218c3a36847f8003ad3", "cast_id": 62, "profile_path": "/5x30rIs9NnV4r1AUMpPIhw9UhgQ.jpg", "order": 48}, {"name": "Tom Tangen", "character": "Student (uncredited)", "id": 553735, "credit_id": "52fe4218c3a36847f8003ad7", "cast_id": 63, "profile_path": "/3IhcC4FmrgBtcCZpl85amgVaVRy.jpg", "order": 49}, {"name": "Norman Alden", "character": "Lou", "id": 7139, "credit_id": "530a6612c3a36863b1003f64", "cast_id": 64, "profile_path": "/8UZtACb7u0JEOKh9IzFTi5FC4NH.jpg", "order": 50}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f80039c7", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 7.5, "runtime": 116}, "106": {"poster_path": "/sa8OiwfkGLeQ3HDXf8BwXUx6pZV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98235548, "overview": "Dutch and his group of commandos are hired by the CIA to rescue downed airmen from guerillas in a Central American jungle. The mission goes well but as they return they find that something is hunting them. Nearly invisible, it blends in with the forest, taking trophies from the bodies of its victims as it goes along. Occasionally seeing through its eyes, the audience sees it is an intelligent alien hunter, hunting them for sport, killing them off one at a time.", "video": false, "id": 106, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predator", "tagline": "If it bleeds, we can kill it...", "vote_count": 580, "homepage": "", "belongs_to_collection": {"backdrop_path": "/e8ycFoI8vGoZSOY7KmxFzZA1dkE.jpg", "poster_path": "/6Z7lASptoiRVxiCFvZaFgH9qp7u.jpg", "id": 399, "name": "Predator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0093773", "adult": false, "backdrop_path": "/cN8V7Hc40SthRI60J2myfqhHCBQ.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Amercent Films", "id": 5263}, {"name": "American Entertainment Partners II L.P.", "id": 21451}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1987-06-11", "popularity": 1.70521667538356, "original_title": "Predator", "budget": 18000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Major Alan 'Dutch' Schaeffer", "id": 1100, "credit_id": "52fe4218c3a36847f8003b53", "cast_id": 13, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Carl Weathers", "character": "Major George Dillon", "id": 1101, "credit_id": "52fe4218c3a36847f8003b57", "cast_id": 14, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 1}, {"name": "Elpidia Carrillo", "character": "Anna", "id": 1102, "credit_id": "52fe4218c3a36847f8003b5b", "cast_id": 15, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 2}, {"name": "Bill Duke", "character": "Sergeant 'Mac' Eliot", "id": 1103, "credit_id": "52fe4218c3a36847f8003b5f", "cast_id": 16, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 3}, {"name": "Jesse Ventura", "character": "Blain", "id": 1104, "credit_id": "52fe4218c3a36847f8003b63", "cast_id": 17, "profile_path": "/25AzScRxybPMRxEfv9iB116jj7a.jpg", "order": 4}, {"name": "Sonny Landham", "character": "Billy", "id": 1105, "credit_id": "52fe4218c3a36847f8003b67", "cast_id": 18, "profile_path": "/dmOpsfsz56FtcrQMfyiivmoEXXP.jpg", "order": 5}, {"name": "Richard Chaves", "character": "Poncho Ramirez", "id": 1106, "credit_id": "52fe4218c3a36847f8003b6b", "cast_id": 19, "profile_path": "/5vt3CgYIAPFXwYvFXea4p2GlhIH.jpg", "order": 6}, {"name": "R. G. Armstrong", "character": "General Phillips", "id": 1107, "credit_id": "52fe4218c3a36847f8003b6f", "cast_id": 20, "profile_path": "/lRGoPhebBnPFzZQvcmnUokjGL7L.jpg", "order": 7}, {"name": "Shane Black", "character": "Hawkins", "id": 1108, "credit_id": "52fe4218c3a36847f8003b73", "cast_id": 21, "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "order": 8}, {"name": "Kevin Peter Hall", "character": "Helicopter Pilot / Predator", "id": 1109, "credit_id": "52fe4218c3a36847f8003b7b", "cast_id": 23, "profile_path": "/lxlubrzo3np1mU0ML7G12zuy654.jpg", "order": 10}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f8003b0d", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 7.0, "runtime": 107}, "107": {"poster_path": "/on9JlbGEccLsYkjeEph2Whm1DIp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83557872, "overview": "The second film from British director Guy Ritchie. Snatch tells an obscure story similar to his first fast-paced crazy character-colliding filled film \u201cLock, Stock & Two Smoking Barrels.\u201d There are two overlapping stories here \u2013 one is the search for a stolen diamond, and the other about a boxing promoter who\u2019s having trouble with a psychotic gangster.", "video": false, "id": 107, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Snatch", "tagline": "Stealin' Stones and Breakin' Bones.", "vote_count": 1288, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0208092", "adult": false, "backdrop_path": "/w6Ecdh1Erq285jEVVKmjnkFUIdj.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "SKA Films", "id": 13419}], "release_date": "2000-09-01", "popularity": 1.95796349398208, "original_title": "Snatch", "budget": 10000000, "cast": [{"name": "Jason Statham", "character": "Turkish", "id": 976, "credit_id": "52fe4218c3a36847f8003be1", "cast_id": 10, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Mickey O'Neil", "id": 287, "credit_id": "52fe4218c3a36847f8003be5", "cast_id": 11, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Stephen Graham", "character": "Tommy", "id": 1115, "credit_id": "52fe4218c3a36847f8003be9", "cast_id": 12, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 2}, {"name": "Vinnie Jones", "character": "Bullet Tooth Tony", "id": 980, "credit_id": "52fe4218c3a36847f8003bed", "cast_id": 13, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 3}, {"name": "Alan Ford", "character": "Brick Top Polford", "id": 1116, "credit_id": "52fe4218c3a36847f8003bf1", "cast_id": 14, "profile_path": "/3HtCLGRkuLmObyp1oJNJzplxOkI.jpg", "order": 4}, {"name": "Dennis Farina", "character": "Abraham 'Cousin Avi' Denovitz", "id": 1117, "credit_id": "52fe4219c3a36847f8003bf5", "cast_id": 15, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 5}, {"name": "Rade \u0160erbed\u017eija", "character": "Boris 'The Blade' Yurinov (as Rade Serbedgia)", "id": 1118, "credit_id": "52fe4219c3a36847f8003bf9", "cast_id": 16, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 6}, {"name": "Robbie Gee", "character": "Vincent", "id": 1119, "credit_id": "52fe4219c3a36847f8003bfd", "cast_id": 17, "profile_path": "/sNjG7yCwwF6gMChC6gNfNuPUbwE.jpg", "order": 7}, {"name": "Lennie James", "character": "Sol", "id": 1120, "credit_id": "52fe4219c3a36847f8003c01", "cast_id": 18, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 8}, {"name": "Benicio del Toro", "character": "Franky Four Fingers", "id": 1121, "credit_id": "52fe4219c3a36847f8003c05", "cast_id": 19, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 9}, {"name": "Mike Reid", "character": "Doug 'The Head' Denovitz", "id": 1122, "credit_id": "52fe4219c3a36847f8003c09", "cast_id": 20, "profile_path": "/j9ULDYBKDQEbVC33IWsElHE1cLm.jpg", "order": 10}, {"name": "Jason Flemyng", "character": "Darren", "id": 973, "credit_id": "52fe4219c3a36847f8003c0d", "cast_id": 21, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 11}, {"name": "Andy Beckwith", "character": "Errol", "id": 1123, "credit_id": "52fe4219c3a36847f8003c11", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "William Beck", "character": "Neil", "id": 1124, "credit_id": "52fe4219c3a36847f8003c15", "cast_id": 23, "profile_path": "/jVGePQQAy2gY9zmIBxzRILPEadU.jpg", "order": 13}, {"name": "Ewen Bremner", "character": "Mullet", "id": 1125, "credit_id": "52fe4219c3a36847f8003c19", "cast_id": 24, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 14}, {"name": "Guy Ritchie", "character": "Man Reading Newspaper (uncredited)", "id": 956, "credit_id": "52fe4219c3a36847f8003c1d", "cast_id": 25, "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "order": 15}, {"name": "Adam Fogerty", "character": "Gorgeous George", "id": 2302, "credit_id": "52fe4219c3a36847f8003c21", "cast_id": 26, "profile_path": "/atUrQzMNfGgcbFcdCLw9YklohS7.jpg", "order": 16}, {"name": "Ade", "character": "Tyrone", "id": 2627, "credit_id": "52fe4219c3a36847f8003c25", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe4218c3a36847f8003bb9", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 7.4, "runtime": 103}, "24684": {"poster_path": "/n0mH5BgPjlMWJLWKhjtf5MDRrm9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A coming-of-age story about a teenage girl in 1960s suburban London, and how her life changes with the arrival of a playboy nearly twice her age.", "video": false, "id": 24684, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "An Education", "tagline": "Innocence of the Young.", "vote_count": 89, "homepage": "http://www.sonyclassics.com/aneducation/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1174732", "adult": false, "backdrop_path": "/aTmb50x9TfOfBGGMaeRr7M1Riui.jpg", "production_companies": [{"name": "BBC Films", "id": 288}], "release_date": "2009-10-29", "popularity": 0.592929106585063, "original_title": "An Education", "budget": 7500000, "cast": [{"name": "Carey Mulligan", "character": "Jenny", "id": 36662, "credit_id": "52fe44a4c3a368484e02e853", "cast_id": 3, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 0}, {"name": "Olivia Williams", "character": "Miss Stubbs", "id": 11616, "credit_id": "52fe44a4c3a368484e02e857", "cast_id": 4, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "David", "id": 133, "credit_id": "52fe44a4c3a368484e02e863", "cast_id": 7, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Jack", "id": 658, "credit_id": "52fe44a4c3a368484e02e85b", "cast_id": 5, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Cara Seymour", "character": "Majorie", "id": 2617, "credit_id": "52fe44a4c3a368484e02e85f", "cast_id": 6, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 4}, {"name": "Dominic Cooper", "character": "Danny", "id": 55470, "credit_id": "52fe44a4c3a368484e02e867", "cast_id": 8, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 5}, {"name": "Rosamund Pike", "character": "Helen", "id": 10882, "credit_id": "52fe44a4c3a368484e02e86b", "cast_id": 9, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 6}, {"name": "Sally Hawkins", "character": "Sarah Goldman", "id": 39658, "credit_id": "52fe44a4c3a368484e02e873", "cast_id": 11, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 7}, {"name": "Amanda Fairbank-Hynes", "character": "Hattie", "id": 235837, "credit_id": "52fe44a4c3a368484e02e86f", "cast_id": 10, "profile_path": "/127xlkSaLK92NaYdStJQxWkqR1I.jpg", "order": 8}, {"name": "William Melling", "character": "Small Boy #1", "id": 568374, "credit_id": "52fe44a4c3a368484e02e877", "cast_id": 12, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 9}, {"name": "Connor Catchpole", "character": "Small Boy #2", "id": 1205266, "credit_id": "52fe44a4c3a368484e02e87b", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Matthew Beard", "character": "Graham", "id": 213394, "credit_id": "52fe44a4c3a368484e02e87f", "cast_id": 14, "profile_path": "/1Cbv1JWSg4RJ385OZrS3lnlo7eu.jpg", "order": 11}, {"name": "Ellie Kendrick", "character": "Tina", "id": 220290, "credit_id": "52fe44a4c3a368484e02e883", "cast_id": 15, "profile_path": "/xggl7GihLGxqyd1i8lPL5Aj5qp2.jpg", "order": 12}, {"name": "Nick Sampson", "character": "Auctioneer", "id": 1205267, "credit_id": "52fe44a4c3a368484e02e887", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Kate Duchene", "character": "Latin Teacher", "id": 1036345, "credit_id": "52fe44a4c3a368484e02e88b", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Bel Parker", "character": "Small Girl", "id": 1205268, "credit_id": "52fe44a4c3a368484e02e88f", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Emma Thompson", "character": "Headmistress", "id": 7056, "credit_id": "52fe44a4c3a368484e02e893", "cast_id": 19, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 16}, {"name": "Luis Soto", "character": "Rachman", "id": 59091, "credit_id": "52fe44a4c3a368484e02e897", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Olenka Wrzesniewski", "character": "Shakespeare Girl #1", "id": 1205269, "credit_id": "52fe44a4c3a368484e02e89b", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Bryony Wadsworth", "character": "Shakespeare Girl #2", "id": 1205270, "credit_id": "52fe44a4c3a368484e02e89f", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Ashley Taylor-Rhys", "character": "Petrol Attendant", "id": 1205271, "credit_id": "52fe44a4c3a368484e02e8a3", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Beth Rowley", "character": "Nightclub Singer", "id": 1205272, "credit_id": "52fe44a4c3a368484e02e8a7", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Ben Castle", "character": "Nightclub Band", "id": 1205273, "credit_id": "52fe44a4c3a368484e02e8ab", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Mark Edwards", "character": "Nightclub Band", "id": 177024, "credit_id": "52fe44a4c3a368484e02e8af", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Tom Rees-Roberts", "character": "Nightclub Band", "id": 1205274, "credit_id": "52fe44a4c3a368484e02e8b3", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Arne Somogyi", "character": "Nightclub Band", "id": 1205275, "credit_id": "52fe44a4c3a368484e02e8b7", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Paul Pilot", "character": "Nightclub Band", "id": 1205276, "credit_id": "52fe44a4c3a368484e02e8bb", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Phil Wilkinson", "character": "Nightclub Band", "id": 1205277, "credit_id": "52fe44a4c3a368484e02e8bf", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "James Norton", "character": "Student", "id": 1205278, "credit_id": "52fe44a4c3a368484e02e8c3", "cast_id": 31, "profile_path": "/rseiJUwdoDe1yNXgRROyAPo8NEA.jpg", "order": 28}, {"name": "Charlee Hall", "character": "Baby 1 (uncredited)", "id": 1205279, "credit_id": "52fe44a4c3a368484e02e8c7", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Neo Hall", "character": "Baby 2 (uncredited)", "id": 1205280, "credit_id": "52fe44a4c3a368484e02e8cb", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "David Wayman", "character": "Man in Cafe (uncredited)", "id": 1085939, "credit_id": "52fe44a4c3a368484e02e8cf", "cast_id": 34, "profile_path": null, "order": 31}], "directors": [{"name": "Lone Scherfig", "department": "Directing", "job": "Director", "credit_id": "52fe44a4c3a368484e02e849", "profile_path": "/zJDZjeBfJxVUslaOU2lI9zfsU3F.jpg", "id": 1176}], "vote_average": 6.7, "runtime": 100}, "111": {"poster_path": "/xYZjUGOhks1PFZm8sZ6PkIq6wni.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65884703, "overview": "Tony Montana is an exiled Cuban criminal who goes to work for Miami drug lord Robert Loggia. Montana rises to the top of Florida's crime chain, appropriating Loggia's cokehead mistress in the process.", "video": false, "id": 111, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Scarface", "tagline": "The world is yours...", "vote_count": 784, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0086250", "adult": false, "backdrop_path": "/ux2nVfA689N1phsRMtj76Ona65M.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1983-12-08", "popularity": 1.40082313583044, "original_title": "Scarface", "budget": 25000000, "cast": [{"name": "Al Pacino", "character": "Tony Montana", "id": 1158, "credit_id": "52fe4219c3a36847f8003e47", "cast_id": 9, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Steven Bauer", "character": "Manny Ribera", "id": 1159, "credit_id": "52fe4219c3a36847f8003e4b", "cast_id": 10, "profile_path": "/2wbrq8xIKbIAQAgtxsftJT5XgVs.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Elvira Hancock", "id": 1160, "credit_id": "52fe4219c3a36847f8003e4f", "cast_id": 11, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Mary Elizabeth Mastrantonio", "character": "Gina Montana", "id": 1161, "credit_id": "52fe4219c3a36847f8003e53", "cast_id": 12, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 3}, {"name": "Robert Loggia", "character": "Frank Lopez", "id": 1162, "credit_id": "52fe4219c3a36847f8003e57", "cast_id": 13, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 4}, {"name": "Miriam Colon", "character": "Mama Montana", "id": 1163, "credit_id": "52fe4219c3a36847f8003e5b", "cast_id": 14, "profile_path": "/vNKUyJKVIvAmXT6pv0vWrZXazlS.jpg", "order": 5}, {"name": "F. Murray Abraham", "character": "Omar Suarez", "id": 1164, "credit_id": "52fe4219c3a36847f8003e5f", "cast_id": 15, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 6}, {"name": "Paul Shenar", "character": "Alejandro Sosa", "id": 1165, "credit_id": "52fe4219c3a36847f8003e63", "cast_id": 16, "profile_path": "/pKKAqHEVKXLFVik1zWT59vaXRbk.jpg", "order": 7}, {"name": "Harris Yulin", "character": "Mel Bernstein", "id": 1166, "credit_id": "52fe4219c3a36847f8003e67", "cast_id": 17, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 8}, {"name": "\u00c1ngel Salazar", "character": "Chi Chi", "id": 1167, "credit_id": "52fe4219c3a36847f8003e6b", "cast_id": 18, "profile_path": "/cEVKX5UXroRG9yPNrxbcFUSk22Y.jpg", "order": 9}, {"name": "Arnaldo Santana", "character": "Ernie", "id": 1168, "credit_id": "52fe4219c3a36847f8003e6f", "cast_id": 19, "profile_path": "/oJqpEjkzsAaPdp7P0ZStQiNzMix.jpg", "order": 10}, {"name": "Pepe Serna", "character": "Angel", "id": 1169, "credit_id": "52fe4219c3a36847f8003e73", "cast_id": 20, "profile_path": "/geQdZHiHobopH86AKxCRVIn5kga.jpg", "order": 11}, {"name": "Michael P. Moran", "character": "Nick The Pig", "id": 1170, "credit_id": "52fe4219c3a36847f8003e77", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Al Israel", "character": "Hector The Toad", "id": 1171, "credit_id": "52fe4219c3a36847f8003e7b", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Dennis Holahan", "character": "Jerry The Banker", "id": 1172, "credit_id": "52fe4219c3a36847f8003e7f", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Mark Margolis", "character": "Alberto The Shadow", "id": 1173, "credit_id": "52fe4219c3a36847f8003e83", "cast_id": 24, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 15}, {"name": "John Carter", "character": "Vic Phillips", "id": 1070996, "credit_id": "52fe4219c3a36847f8003e87", "cast_id": 25, "profile_path": null, "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4219c3a36847f8003e1f", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 7.5, "runtime": 170}, "114": {"poster_path": "/4ufvm0uwtvilabyUP5Zo6QeraB2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 463000000, "overview": "When millionaire wheeler-dealer Edward Lewis enters a business contract with Hollywood hooker Vivian Ward, he loses his heart in the bargain in this charming romantic comedy. After Edward hires Vivian as his date for a week and gives her a Cinderella makeover, she returns the favor by mellowing the hardnosed tycoon's outlook. Can the poor prostitute and the rich capitalist live happily ever after?", "video": false, "id": 114, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Pretty Woman", "tagline": "Who knew it was so much fun to be a hooker?", "vote_count": 434, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100405", "adult": false, "backdrop_path": "/fztlIPN1EAO2kFVdJhKaXjAgjhH.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners IV", "id": 10282}], "release_date": "1990-03-23", "popularity": 0.780429280326036, "original_title": "Pretty Woman", "budget": 14000000, "cast": [{"name": "Julia Roberts", "character": "Vivian Ward", "id": 1204, "credit_id": "52fe4219c3a36847f8004051", "cast_id": 5, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Richard Gere", "character": "Edward Lewis", "id": 1205, "credit_id": "52fe4219c3a36847f8004055", "cast_id": 6, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Ralph Bellamy", "character": "James Morse", "id": 1208, "credit_id": "52fe4219c3a36847f800405d", "cast_id": 8, "profile_path": "/fjRvQxfzPw77TUMDaJHnPKirpG0.jpg", "order": 2}, {"name": "Jason Alexander", "character": "Philip Stuckey", "id": 1206, "credit_id": "52fe4219c3a36847f8004059", "cast_id": 7, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 3}, {"name": "H\u00e9ctor Elizondo", "character": "Barney Thompson", "id": 1210, "credit_id": "52fe4219c3a36847f8004061", "cast_id": 9, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 4}, {"name": "Larry Miller", "character": "Mr. Hollister", "id": 1211, "credit_id": "52fe4219c3a36847f8004065", "cast_id": 10, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 5}, {"name": "Laura San Giacomo", "character": "Kit De Luca", "id": 1212, "credit_id": "52fe4219c3a36847f8004069", "cast_id": 11, "profile_path": "/uGHG7OO1DtBWz0uztjE1MDtd0DU.jpg", "order": 6}, {"name": "Alex Hyde-White", "character": "David Morse", "id": 747, "credit_id": "52fe4219c3a36847f8004085", "cast_id": 16, "profile_path": "/n51gvejj2jPn2rLLPC0mO47uGTL.jpg", "order": 7}, {"name": "Elinor Donahue", "character": "Bridget", "id": 1209, "credit_id": "52fe4219c3a36847f8004089", "cast_id": 17, "profile_path": "/mEsZ2YLvmni9S1dUS1pTeQYhdf3.jpg", "order": 8}, {"name": "Amy Yasbeck", "character": "Elizabeth Stuckey", "id": 1219, "credit_id": "52fe4219c3a36847f800408d", "cast_id": 18, "profile_path": "/p2wXpK7wRwLre2e37Z6QQ6BvcUg.jpg", "order": 9}, {"name": "Judith Baldwin", "character": "Susan", "id": 1220, "credit_id": "52fe4219c3a36847f8004091", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Hank Azaria", "character": "Detective", "id": 5587, "credit_id": "52fe4219c3a36847f80040a1", "cast_id": 22, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 11}, {"name": "John David Carson", "character": "Mark", "id": 42162, "credit_id": "52fe4219c3a36847f80040a5", "cast_id": 23, "profile_path": "/jhw8E71tHB6fYO6wyqZdiW4KRzY.jpg", "order": 12}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4219c3a36847f800403b", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 6.6, "runtime": 119}, "115": {"poster_path": "/aHaVjVoXeNanfwUwQ92SG7tosFM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27739163, "overview": "Jeffrey \"The Dude\" Lebowski, a Los Angeles slacker who only wants to bowl and drink white Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.", "video": false, "id": 115, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Big Lebowski", "tagline": "They figured he was a lazy time wasting slacker. They were right.", "vote_count": 898, "homepage": "http://www.biglebowskibluray.com/splash.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0118715", "adult": false, "backdrop_path": "/okbbgki0sUFgDHWSInMIQgC86Pc.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1998-03-06", "popularity": 1.50286389053851, "original_title": "The Big Lebowski", "budget": 15000000, "cast": [{"name": "Jeff Bridges", "character": "The Dude", "id": 1229, "credit_id": "52fe421ac3a36847f8004131", "cast_id": 12, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "John Goodman", "character": "Walter Sobchak", "id": 1230, "credit_id": "52fe421ac3a36847f8004135", "cast_id": 13, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Theodore Donald Kerabatsos", "id": 884, "credit_id": "52fe421ac3a36847f800413d", "cast_id": 15, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Maude Lebowski", "id": 1231, "credit_id": "52fe421ac3a36847f8004139", "cast_id": 14, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "David Huddleston", "character": "Jeffrey Lebowski - The Big Lebowski", "id": 1232, "credit_id": "52fe421ac3a36847f8004141", "cast_id": 16, "profile_path": "/6cXqGzHB0zJautJVPCtbEsCtsCQ.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Brandt", "id": 1233, "credit_id": "52fe421ac3a36847f8004145", "cast_id": 17, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Tara Reid", "character": "Bunny Lebowski", "id": 1234, "credit_id": "52fe421ac3a36847f8004149", "cast_id": 18, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 6}, {"name": "Philip Moon", "character": "Woo, Treehorn Thug", "id": 1235, "credit_id": "52fe421ac3a36847f800414d", "cast_id": 19, "profile_path": "/7IB8OtD4L3k3hxzrPeBSpucODyI.jpg", "order": 7}, {"name": "Mark Pellegrino", "character": "Blond Treehorn Thug", "id": 1236, "credit_id": "52fe421ac3a36847f8004151", "cast_id": 20, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 8}, {"name": "Peter Stormare", "character": "Nihilist #1, Uli Kunkel/'Karl Hungus'", "id": 53, "credit_id": "52fe421ac3a36847f8004155", "cast_id": 21, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 9}, {"name": "Flea", "character": "Nihilist #2, Kieffer", "id": 1237, "credit_id": "52fe421ac3a36847f8004159", "cast_id": 22, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 10}, {"name": "Torsten Voges", "character": "Nihilist #3, Franz", "id": 1238, "credit_id": "52fe421ac3a36847f800415d", "cast_id": 23, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 11}, {"name": "Jimmie Dale Gilmore", "character": "Smokey", "id": 1239, "credit_id": "52fe421ac3a36847f8004161", "cast_id": 24, "profile_path": "/ylyEf3lESzWWYZMMCIoaWzfaSmY.jpg", "order": 12}, {"name": "Jack Kehler", "character": "Marty", "id": 1240, "credit_id": "52fe421ac3a36847f8004165", "cast_id": 25, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 13}, {"name": "John Turturro", "character": "Jesus Quintana", "id": 1241, "credit_id": "52fe421ac3a36847f8004169", "cast_id": 26, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 14}, {"name": "James G. Hoosier", "character": "Liam O'Brien, Quintana's Partner", "id": 1242, "credit_id": "52fe421ac3a36847f800416d", "cast_id": 27, "profile_path": "/onaoCjwtPZF7W0pIXQV2SEQcvJP.jpg", "order": 15}, {"name": "Ben Gazzara", "character": "Jackie Treehorn", "id": 856, "credit_id": "52fe421ac3a36847f8004171", "cast_id": 28, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 16}, {"name": "Sam Elliott", "character": "The Stranger", "id": 16431, "credit_id": "52fe421ac3a36847f800417b", "cast_id": 30, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 17}, {"name": "David Thewlis", "character": "Knox Harrington", "id": 11207, "credit_id": "54dae86ac3a368123b000e88", "cast_id": 38, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 18}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4219c3a36847f80040f1", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "544a99b80e0a267480004938", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.5, "runtime": 117}, "116": {"poster_path": "/cUaA5DFV8mg50O8bU9XlGe4N1i0.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "LU", "name": "Luxembourg"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85306374, "overview": "Match Point is Woody Allen\u2019s satire of the British High Society and the ambition of a young tennis instructor to enter into it. Yet when he must decide between two women - one assuring him his place in high society, and the other that would bring him far from it - palms start to sweat and a dark psychological match in his head begins.", "video": false, "id": 116, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Match Point", "tagline": "Passion Temptation Obsession", "vote_count": 247, "homepage": "http://www.matchpoint.dreamworks.com/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416320", "adult": false, "backdrop_path": "/40gCaXoyT75wuLbz1t5BwpLm0w4.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}], "release_date": "2005-05-12", "popularity": 0.927684806026164, "original_title": "Match Point", "budget": 15000000, "cast": [{"name": "Jonathan Rhys Meyers", "character": "Chris Wilton", "id": 1244, "credit_id": "530633d692514134912c121e", "cast_id": 16, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Nola Rice", "id": 1245, "credit_id": "5306347792514134972b7868", "cast_id": 17, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Chloe Hewett Wilton", "id": 1246, "credit_id": "530634b3925141348b2dd441", "cast_id": 18, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Brian Cox", "character": "Alec Hewett", "id": 1248, "credit_id": "530634cf92514134972b89f1", "cast_id": 19, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Penelope Wilton", "character": "Eleanor Hewett", "id": 1249, "credit_id": "5306357192514134942b82ca", "cast_id": 21, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 5}, {"name": "James Nesbitt", "character": "Detective Banner", "id": 34715, "credit_id": "5306371a925141348528300b", "cast_id": 23, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 6}, {"name": "Ewen Bremner", "character": "Inspector Dowd", "id": 1125, "credit_id": "5306379292514134912c7e4b", "cast_id": 24, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 7}, {"name": "Miranda Raison", "character": "Heather", "id": 195525, "credit_id": "530636ff92514134a2286ae9", "cast_id": 22, "profile_path": "/A3UbPTpbDkvM1L1UoPSvhpzJvn8.jpg", "order": 8}, {"name": "Margaret Tyzack", "character": "Mrs. Eastby", "id": 250, "credit_id": "53063905c3a3685a8f294651", "cast_id": 25, "profile_path": "/gZgVXY3WszU2dcEL0CwmdKAf7Vd.jpg", "order": 9}, {"name": "Rupert Penry-Jones", "character": "Henry", "id": 42276, "credit_id": "530b670f92514168dc000f90", "cast_id": 26, "profile_path": "/8WoMM6UnqbZuSV46uCDBqJK3Hd7.jpg", "order": 10}, {"name": "Toby Kebbell", "character": "Policeman", "id": 20286, "credit_id": "530b6754925141111700508e", "cast_id": 27, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 11}, {"name": "Alexander Armstrong", "character": "Mr. Townsend", "id": 1250, "credit_id": "530b677c925141111a004c90", "cast_id": 28, "profile_path": "/xLmK4CvFRMxsRwyvV4L5Y9fRfDy.jpg", "order": 12}, {"name": "Matthew Goode", "character": "Tom Hewett", "id": 1247, "credit_id": "532897609251413d860002b9", "cast_id": 29, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 13}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f80041b9", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.0, "runtime": 124}, "117": {"poster_path": "/qx4CDBhJDX5LQoVZ8UXPxQy5pt7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76270454, "overview": "Young Treasury Agent Elliot Ness arrives in Chicago and is determined to take down Al Capone but it's not going to be easy, because Capone has the police in his pocket. Ness meets Jimmy Malone a veteran patrolman and probably the most honorable one in the force. He asks Malone to help him get Capone but Malone warns him that if he goes after Capone, he is going to war.", "video": false, "id": 117, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "The Untouchables", "tagline": "What are you prepared to do?", "vote_count": 291, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094226", "adult": false, "backdrop_path": "/4cJv0cghFaJfepzGdOyqeNaJWYb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1987-06-02", "popularity": 0.824148742948873, "original_title": "The Untouchables", "budget": 25000000, "cast": [{"name": "Kevin Costner", "character": "Eliot Ness", "id": 1269, "credit_id": "52fe421ac3a36847f800427d", "cast_id": 14, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Sean Connery", "character": "Jim Malone", "id": 738, "credit_id": "52fe421ac3a36847f8004281", "cast_id": 15, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Al Capone", "id": 380, "credit_id": "52fe421ac3a36847f800428d", "cast_id": 18, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Andy Garc\u00eda", "character": "Agent George Stone/Giuseppe Petri", "id": 1271, "credit_id": "52fe421ac3a36847f8004289", "cast_id": 17, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 3}, {"name": "Charles Martin Smith", "character": "Agent Oscar Wallace", "id": 1270, "credit_id": "52fe421ac3a36847f8004285", "cast_id": 16, "profile_path": "/fahfWqqrdJwajrfEGmEOXQ1p9bm.jpg", "order": 4}, {"name": "Richard Bradford", "character": "Police Chief Mike Dorsett", "id": 1272, "credit_id": "52fe421ac3a36847f8004291", "cast_id": 19, "profile_path": "/fmMEdEgPa7tmPvQodngVpPRznRt.jpg", "order": 5}, {"name": "Jack Kehoe", "character": "Walter Payne", "id": 1273, "credit_id": "52fe421ac3a36847f8004295", "cast_id": 20, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 6}, {"name": "Brad Sullivan", "character": "George", "id": 1274, "credit_id": "52fe421ac3a36847f8004299", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Billy Drago", "character": "Frank Nitti", "id": 1275, "credit_id": "52fe421ac3a36847f800429d", "cast_id": 22, "profile_path": "/sAC4lsuhdueS3sBXjnlNsZbdYEq.jpg", "order": 8}, {"name": "Patricia Clarkson", "character": "Catherine Ness", "id": 1276, "credit_id": "52fe421ac3a36847f80042a1", "cast_id": 23, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 9}, {"name": "Vito D'Ambrosio", "character": "Bowtie Driver", "id": 1277, "credit_id": "52fe421ac3a36847f80042a5", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Steven Goldstein", "character": "Scoop", "id": 1278, "credit_id": "52fe421ac3a36847f80042a9", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Peter Aylward", "character": "Lt. Anderson", "id": 1279, "credit_id": "52fe421ac3a36847f80042ad", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Don Harvey", "character": "Officer Preseuski", "id": 1280, "credit_id": "52fe421ac3a36847f80042b1", "cast_id": 27, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 13}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f800423d", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 7.3, "runtime": 119}, "118": {"poster_path": "/dvHl1dYvaZRhj9Gk0ITcCHr4DIJ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 474968763, "overview": "A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.", "video": false, "id": 118, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Charlie and the Chocolate Factory", "tagline": "Willy Wonka is semi-sweet and nuts.", "vote_count": 694, "homepage": "http://chocolatefactorymovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367594", "adult": false, "backdrop_path": "/1za2EfHEdwhYE2MzbpHgmdYRgdA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2005-07-09", "popularity": 2.36367815478998, "original_title": "Charlie and the Chocolate Factory", "budget": 150000000, "cast": [{"name": "Johnny Depp", "character": "Willy Wonka", "id": 85, "credit_id": "52fe421ac3a36847f80042ff", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Freddie Highmore", "character": "Charlie Bucket", "id": 1281, "credit_id": "52fe421ac3a36847f8004303", "cast_id": 3, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 1}, {"name": "AnnaSophia Robb", "character": "Violet Beauregarde", "id": 1285, "credit_id": "52fe421ac3a36847f8004313", "cast_id": 7, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 2}, {"name": "Julia Winter", "character": "Veruca Salt", "id": 1286, "credit_id": "52fe421ac3a36847f8004317", "cast_id": 8, "profile_path": "/tOmLJwV53aSxRHxidQUQ8MhLtWC.jpg", "order": 3}, {"name": "David Kelly", "character": "Grandpa Joe", "id": 1282, "credit_id": "52fe421ac3a36847f8004307", "cast_id": 4, "profile_path": "/jxPBAzbia65yJAsNxoyGQri5Bah.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Mrs. Bucket", "id": 1283, "credit_id": "52fe421ac3a36847f800430b", "cast_id": 5, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Noah Taylor", "character": "Mr. Bucket", "id": 1284, "credit_id": "52fe421ac3a36847f800430f", "cast_id": 6, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 6}, {"name": "Jordan Fry", "character": "Mike Teavee", "id": 1290, "credit_id": "52fe421ac3a36847f800431b", "cast_id": 9, "profile_path": "/9mr4LKxtlSFLFTgQ0eFlD6yHtdI.jpg", "order": 7}, {"name": "Philip Wiegratz", "character": "Augustus Glupsch", "id": 1291, "credit_id": "52fe421ac3a36847f800431f", "cast_id": 10, "profile_path": "/KXDK5MJ7juz7H1EzEe2pDdljDP.jpg", "order": 8}, {"name": "James Fox", "character": "Mr. Salt", "id": 1292, "credit_id": "52fe421ac3a36847f8004323", "cast_id": 11, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 9}, {"name": "Franziska Troegner", "character": "Mrs. Glupsch", "id": 1293, "credit_id": "52fe421ac3a36847f8004327", "cast_id": 12, "profile_path": "/lCuV1knsruWXG3JEsyJPJkFpjII.jpg", "order": 10}, {"name": "Missi Pyle", "character": "Mrs. Beauregard", "id": 1294, "credit_id": "52fe421ac3a36847f800432b", "cast_id": 13, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 11}, {"name": "Christopher Lee", "character": "Dr. Wonka", "id": 113, "credit_id": "52fe421ac3a36847f800432f", "cast_id": 14, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 12}, {"name": "Deep Roy", "character": "Oompa Loompa", "id": 1295, "credit_id": "52fe421ac3a36847f8004333", "cast_id": 15, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 13}, {"name": "Oscar James", "character": "Shopkeeper", "id": 184997, "credit_id": "52fe421ac3a36847f8004385", "cast_id": 30, "profile_path": "/eHxVJu08olDzW8eYok6U5ETNlBk.jpg", "order": 14}, {"name": "Liz Smith", "character": "Grandma Georgina", "id": 7320, "credit_id": "52fe421ac3a36847f8004389", "cast_id": 31, "profile_path": "/rFmFjKTl9Drjv7tA687miEyn1tG.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f80042fb", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.3, "runtime": 115}, "120": {"poster_path": "/9HG6pINW1KoFTAKY3LdybkoOKAm.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 871368364, "overview": "Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.", "video": false, "id": 120, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Lord of the Rings: The Fellowship of the Ring", "tagline": "One ring to rule them all", "vote_count": 4046, "homepage": "http://www.lordoftherings.net/", "belongs_to_collection": {"backdrop_path": "/bccR2CGTWVVSZAG0yqmy3DIvhTX.jpg", "poster_path": "/p4UokEk2XnjjRTdXGe6DLYXlbI1.jpg", "id": 119, "name": "The Lord of the Rings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120737", "adult": false, "backdrop_path": "/pIUvQ9Ed35wlWhY2oU6OmwEsmzG.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "WingNut Films", "id": 11}, {"name": "The Saul Zaentz Company", "id": 5237}], "release_date": "2001-12-19", "popularity": 3.6413444075881, "original_title": "The Lord of the Rings: The Fellowship of the Ring", "budget": 93000000, "cast": [{"name": "Elijah Wood", "character": "Frodo Baggins", "id": 109, "credit_id": "52fe421ac3a36847f800448f", "cast_id": 28, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf the Grey", "id": 1327, "credit_id": "52fe421ac3a36847f8004493", "cast_id": 29, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Aragorn", "id": 110, "credit_id": "52fe421ac3a36847f8004497", "cast_id": 30, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Arwen Evenstar", "id": 882, "credit_id": "52fe421ac3a36847f800449b", "cast_id": 31, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe421ac3a36847f800449f", "cast_id": 32, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 4}, {"name": "John Rhys-Davies", "character": "Gimli", "id": 655, "credit_id": "52fe421ac3a36847f80044a3", "cast_id": 33, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 5}, {"name": "Sean Bean", "character": "Boromir", "id": 48, "credit_id": "52fe421ac3a36847f80044a7", "cast_id": 34, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 6}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe421ac3a36847f80044ab", "cast_id": 35, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 7}, {"name": "Billy Boyd", "character": "Peregrin 'Pippin' Took", "id": 1329, "credit_id": "52fe421ac3a36847f80044b3", "cast_id": 37, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 8}, {"name": "Dominic Monaghan", "character": "Meriadoc 'Merry' Brandybuck", "id": 1330, "credit_id": "52fe421ac3a36847f80044b7", "cast_id": 38, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 9}, {"name": "Sean Astin", "character": "Samwise 'Sam' Gamgee", "id": 1328, "credit_id": "52fe421ac3a36847f80044af", "cast_id": 36, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 10}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe421ac3a36847f80044d3", "cast_id": 46, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 11}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe421ac3a36847f80044bb", "cast_id": 39, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 12}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe421ac3a36847f80044bf", "cast_id": 40, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 13}, {"name": "Ian Holm", "character": "Bilbo Baggins", "id": 65, "credit_id": "52fe421ac3a36847f80044c3", "cast_id": 41, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 14}, {"name": "Craig Parker", "character": "Haldir", "id": 1332, "credit_id": "52fe421ac3a36847f80044c7", "cast_id": 42, "profile_path": "/amJPcZnpWIABjbaN5FzW5vvTIEk.jpg", "order": 15}, {"name": "Lawrence Makoare", "character": "Lurtz", "id": 1365, "credit_id": "52fe421ac3a36847f80044cb", "cast_id": 43, "profile_path": "/yVHInaWXU4ynUnNE3qa59hvsFAJ.jpg", "order": 16}, {"name": "Sala Baker", "character": "Sauron", "id": 1366, "credit_id": "52fe421ac3a36847f80044cf", "cast_id": 44, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 17}, {"name": "Sarah McLeod", "character": "Rose 'Rosie' Cotton", "id": 965278, "credit_id": "52fe421ac3a36847f80044d7", "cast_id": 47, "profile_path": "/8BFVSAmPX0sjyqelYCtJktF0Vk6.jpg", "order": 18}, {"name": "Marton Csokas", "character": "Celeborn", "id": 20982, "credit_id": "52fe421ac3a36847f80044db", "cast_id": 49, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 19}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe421ac3a36847f80043ef", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.6, "runtime": 178}, "121": {"poster_path": "/5o5fv1dHG7vWoH2hmqwihVPBoBm.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 926287400, "overview": "Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.", "video": false, "id": 121, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Lord of the Rings: The Two Towers", "tagline": "A New Power Is Rising.", "vote_count": 3346, "homepage": "http://www.lordoftherings.net/", "belongs_to_collection": {"backdrop_path": "/bccR2CGTWVVSZAG0yqmy3DIvhTX.jpg", "poster_path": "/p4UokEk2XnjjRTdXGe6DLYXlbI1.jpg", "id": 119, "name": "The Lord of the Rings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167261", "adult": false, "backdrop_path": "/dG4BmM32XJmKiwopLDQmvXEhuHB.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "WingNut Films", "id": 11}, {"name": "The Saul Zaentz Company", "id": 5237}], "release_date": "2002-12-18", "popularity": 2.99562881744059, "original_title": "The Lord of the Rings: The Two Towers", "budget": 79000000, "cast": [{"name": "Elijah Wood", "character": "Frodo Baggins", "id": 109, "credit_id": "52fe421ac3a36847f8004589", "cast_id": 13, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf the White", "id": 1327, "credit_id": "52fe421ac3a36847f800458d", "cast_id": 14, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Aragorn", "id": 110, "credit_id": "52fe421ac3a36847f8004591", "cast_id": 15, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Arwen Evenstar", "id": 882, "credit_id": "52fe421ac3a36847f8004595", "cast_id": 16, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe421ac3a36847f8004599", "cast_id": 17, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 4}, {"name": "John Rhys-Davies", "character": "Gimli / Voice of Treebeard", "id": 655, "credit_id": "52fe421ac3a36847f800459d", "cast_id": 18, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 5}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe421ac3a36847f80045a1", "cast_id": 19, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 6}, {"name": "Sean Astin", "character": "Sam Gamgee", "id": 1328, "credit_id": "52fe421ac3a36847f80045a5", "cast_id": 20, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 7}, {"name": "Billy Boyd", "character": "Peregrin 'Pippin' Took", "id": 1329, "credit_id": "52fe421ac3a36847f80045a9", "cast_id": 21, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 8}, {"name": "Dominic Monaghan", "character": "Meriadoc 'Merry' Brandybuck", "id": 1330, "credit_id": "52fe421ac3a36847f80045ad", "cast_id": 22, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 9}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe421ac3a36847f80045bd", "cast_id": 26, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 10}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe421ac3a36847f80045b1", "cast_id": 23, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 11}, {"name": "Craig Parker", "character": "Haldir", "id": 1332, "credit_id": "52fe421ac3a36847f80045b5", "cast_id": 24, "profile_path": "/amJPcZnpWIABjbaN5FzW5vvTIEk.jpg", "order": 12}, {"name": "Bernard Hill", "character": "Th\u00e9oden", "id": 1369, "credit_id": "52fe421ac3a36847f80045b9", "cast_id": 25, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 13}, {"name": "Brad Dourif", "character": "Gr\u00edma Wormtongue", "id": 1370, "credit_id": "52fe421ac3a36847f80045c1", "cast_id": 27, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 14}, {"name": "Miranda Otto", "character": "\u00c9owyn", "id": 502, "credit_id": "52fe421ac3a36847f80045c5", "cast_id": 28, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 15}, {"name": "David Wenham", "character": "Faramir", "id": 1371, "credit_id": "52fe421ac3a36847f80045c9", "cast_id": 29, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 16}, {"name": "Karl Urban", "character": "\u00c9omer", "id": 1372, "credit_id": "52fe421ac3a36847f80045cd", "cast_id": 30, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 17}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe421bc3a36847f800463d", "cast_id": 49, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 18}, {"name": "Olivia Tennet", "character": "Freda", "id": 941439, "credit_id": "52fe421bc3a36847f8004647", "cast_id": 52, "profile_path": "/hv8zCPSiju8YpVXXjv17osV2pV7.jpg", "order": 19}, {"name": "Sean Bean", "character": "Boromir", "id": 48, "credit_id": "52fe421bc3a36847f800464b", "cast_id": 53, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 20}, {"name": "Jed Brophy", "character": "Sharku / Snaga", "id": 173451, "credit_id": "534107bd0e0a2679a7001901", "cast_id": 54, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 21}, {"name": "Calum Gittins", "character": "Halteh", "id": 1356914, "credit_id": "53fb60b3c3a3687355004d0b", "cast_id": 57, "profile_path": null, "order": 22}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f8004643", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.6, "runtime": 179}, "122": {"poster_path": "/50LoR9gJhbWZ5PpoHgi8MNTYgzd.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1118888979, "overview": "Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam bring the ring closer to the heart of Mordor, the dark lord's realm.", "video": false, "id": 122, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Lord of the Rings: The Return of the King", "tagline": "The eye of the enemy is moving.", "vote_count": 3806, "homepage": "http://www.lordoftherings.net", "belongs_to_collection": {"backdrop_path": "/bccR2CGTWVVSZAG0yqmy3DIvhTX.jpg", "poster_path": "/p4UokEk2XnjjRTdXGe6DLYXlbI1.jpg", "id": 119, "name": "The Lord of the Rings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167260", "adult": false, "backdrop_path": "/8BPZO0Bf8TeAy8znF43z8soK3ys.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "WingNut Films", "id": 11}], "release_date": "2003-12-01", "popularity": 3.59737139139034, "original_title": "The Lord of the Rings: The Return of the King", "budget": 94000000, "cast": [{"name": "Elijah Wood", "character": "Frodo Baggins", "id": 109, "credit_id": "52fe421bc3a36847f80046f7", "cast_id": 12, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf the White", "id": 1327, "credit_id": "52fe421bc3a36847f80046fb", "cast_id": 13, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Aragorn", "id": 110, "credit_id": "52fe421bc3a36847f80046ff", "cast_id": 14, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Arwen Evenstar", "id": 882, "credit_id": "52fe421bc3a36847f8004703", "cast_id": 15, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe421bc3a36847f8004707", "cast_id": 16, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 4}, {"name": "John Rhys-Davies", "character": "Gimli & Treebeard (Voice)", "id": 655, "credit_id": "52fe421bc3a36847f800470b", "cast_id": 17, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 5}, {"name": "Sean Astin", "character": "Sam Gamgee", "id": 1328, "credit_id": "52fe421bc3a36847f800470f", "cast_id": 18, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 6}, {"name": "Billy Boyd", "character": "Peregrin 'Pippin' Took", "id": 1329, "credit_id": "52fe421bc3a36847f8004713", "cast_id": 19, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 7}, {"name": "Dominic Monaghan", "character": "Meriadoc 'Merry' Brandybuck", "id": 1330, "credit_id": "52fe421bc3a36847f8004717", "cast_id": 20, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 8}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe421bc3a36847f8004723", "cast_id": 23, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 9}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe421bc3a36847f800471b", "cast_id": 21, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 10}, {"name": "Ian Holm", "character": "Bilbo Baggins", "id": 65, "credit_id": "52fe421bc3a36847f8004737", "cast_id": 28, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 11}, {"name": "Bernard Hill", "character": "Th\u00e9oden, King of Rohan", "id": 1369, "credit_id": "52fe421bc3a36847f800471f", "cast_id": 22, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 12}, {"name": "Miranda Otto", "character": "\u00c9owyn", "id": 502, "credit_id": "52fe421bc3a36847f8004727", "cast_id": 24, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 13}, {"name": "David Wenham", "character": "Faramir", "id": 1371, "credit_id": "52fe421bc3a36847f800472b", "cast_id": 25, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 14}, {"name": "Karl Urban", "character": "\u00c9omer", "id": 1372, "credit_id": "52fe421bc3a36847f800472f", "cast_id": 26, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 15}, {"name": "John Noble", "character": "Denethor", "id": 1381, "credit_id": "52fe421bc3a36847f8004733", "cast_id": 27, "profile_path": "/4A2mSS9Bea5I2bNur8ZlQZXu0H9.jpg", "order": 16}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe421bc3a36847f800473b", "cast_id": 29, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 17}, {"name": "Lawrence Makoare", "character": "Gothmog & Witchking of Angmar", "id": 1365, "credit_id": "52fe421bc3a36847f800473f", "cast_id": 30, "profile_path": "/yVHInaWXU4ynUnNE3qa59hvsFAJ.jpg", "order": 18}, {"name": "Paul Norell", "character": "King of the Dead", "id": 1382, "credit_id": "52fe421bc3a36847f8004743", "cast_id": 31, "profile_path": "/dLjsu7vVkgXLLQ8QfqRb6iDRxvH.jpg", "order": 19}, {"name": "Thomas Robins", "character": "Deagol", "id": 1383, "credit_id": "52fe421bc3a36847f8004747", "cast_id": 32, "profile_path": "/p8AQeI7SXxAIjUpVEpv9q8ZxGD0.jpg", "order": 20}, {"name": "Sarah McLeod", "character": "Rosie Cotton", "id": 965278, "credit_id": "52fe421bc3a36847f80047a5", "cast_id": 49, "profile_path": "/8BFVSAmPX0sjyqelYCtJktF0Vk6.jpg", "order": 21}, {"name": "Sean Bean", "character": "Boromir", "id": 48, "credit_id": "52fe421bc3a36847f80047a9", "cast_id": 50, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 22}, {"name": "Marton Csokas", "character": "Celeborn", "id": 20982, "credit_id": "52fe421bc3a36847f80047ad", "cast_id": 58, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 23}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f80046b7", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.7, "runtime": 201}, "252607": {"poster_path": "/8wbxCF4B1ftmKEX3V7sJxxe3n1A.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": null, "video": false, "id": 252607, "genres": [{"id": 35, "name": "Comedy"}], "title": "Fiston", "tagline": null, "vote_count": 60, "homepage": null, "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2836252", "adult": false, "backdrop_path": "/5kqh2VGDh6RdwNwYPa6kFEiZXrn.jpg", "production_companies": [{"name": "uFilm", "id": 8676}, {"name": "Monkey Pack Films", "id": 8906}], "release_date": "2014-03-12", "popularity": 0.246232305255289, "original_title": "Fiston", "budget": 0, "cast": [{"name": "Kev Adams", "character": "Alex", "id": 1165008, "credit_id": "52fe4e4a9251416c9112cb27", "cast_id": 1, "profile_path": "/TxOlDGfAdsfoRd3ZmzVokK524B.jpg", "order": 0}, {"name": "Franck Dubosc", "character": "Antoine", "id": 24893, "credit_id": "52fe4e4a9251416c9112cb2b", "cast_id": 2, "profile_path": "/4YV7cy1mBF48wdrf9Std7a94Dv2.jpg", "order": 1}, {"name": "Nora Arnezeder", "character": "Sandra", "id": 453272, "credit_id": "52fe4e4a9251416c9112cb2f", "cast_id": 3, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 2}, {"name": "Val\u00e9rie Benguigui", "character": "Sophie", "id": 136489, "credit_id": "52fe4e4a9251416c9112cb33", "cast_id": 4, "profile_path": "/tHh7G038Hh9KXREgNYpTKtuZc9f.jpg", "order": 3}, {"name": "H\u00e9l\u00e9na Noguerra", "character": "Monica", "id": 587159, "credit_id": "52fe4e4a9251416c9112cb37", "cast_id": 5, "profile_path": "/lc85sxTP2Y5O83QQHpUD0Y5IoTH.jpg", "order": 4}, {"name": "Alice Isaaz", "character": "Elie", "id": 1288047, "credit_id": "52fe4e4a9251416c9112cb3b", "cast_id": 6, "profile_path": "/eh96lNQPKcwhRG38GmETkve3DzA.jpg", "order": 5}, {"name": "Laurent Bateau", "character": "Benoit Legrand", "id": 78479, "credit_id": "52fe4e4a9251416c9112cb3f", "cast_id": 7, "profile_path": "/2zrgonxMwGTMTivBUlHs6MzCMZD.jpg", "order": 6}], "directors": [{"name": "Pascal Bourdiaux", "department": "Directing", "job": "Director", "credit_id": "52fe4e4a9251416c9112cb45", "profile_path": null, "id": 113609}], "vote_average": 5.9, "runtime": 0}, "128": {"poster_path": "/gzlJkVfWV5VEG5xK25cvFGJgkDz.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 159375308, "overview": "Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", "video": false, "id": 128, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Princess Mononoke", "tagline": "The Fate Of The World Rests On The Courage Of One Warrior.", "vote_count": 574, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0119698", "adult": false, "backdrop_path": "/dB2rATwfCbsPGfRLIoluBnKdVHb.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1997-07-12", "popularity": 0.967050440382068, "original_title": "\u3082\u306e\u306e\u3051\u59eb", "budget": 26500000, "cast": [{"name": "Y\u014dji Matsuda", "character": "Ashitaka", "id": 622, "credit_id": "52fe421bc3a36847f800499d", "cast_id": 3, "profile_path": "/wZijOHyaFIVKJY9yfyIsusamFbv.jpg", "order": 0}, {"name": "Yuriko Ishida", "character": "San", "id": 20330, "credit_id": "52fe421bc3a36847f80049a1", "cast_id": 4, "profile_path": "/w2EcOwlQ9q8cfW9RQBA2RkAFtHr.jpg", "order": 1}, {"name": "Y\u016bko Tanaka", "character": "Eboshi-gozen", "id": 20331, "credit_id": "52fe421bc3a36847f80049a5", "cast_id": 5, "profile_path": "/k32uD3NkzeJHPaALp0amspIqVzc.jpg", "order": 2}, {"name": "Kaoru Kobayashi", "character": "Jiko-b\u00f4", "id": 20332, "credit_id": "52fe421bc3a36847f80049a9", "cast_id": 6, "profile_path": "/ao6ahEACiVZuQAQ2ysL7DSbRwfS.jpg", "order": 3}, {"name": "Masahiko Nishimura", "character": "Kouroku", "id": 20333, "credit_id": "52fe421bc3a36847f80049ad", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Tsunehiko Kamij\u00f4", "character": "Gonza", "id": 20334, "credit_id": "52fe421bc3a36847f80049b1", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Sumi Shimamoto", "character": "Toki", "id": 613, "credit_id": "52fe421bc3a36847f80049b5", "cast_id": 9, "profile_path": "/cB1JXMD6Eyb1ONKfsj32Lai4AfV.jpg", "order": 6}, {"name": "Tetsu Watanabe", "character": "Yama-inu", "id": 20335, "credit_id": "52fe421bc3a36847f80049b9", "cast_id": 10, "profile_path": "/6dlabJPfVvTARfd7ZWEdncfJ3SI.jpg", "order": 7}, {"name": "Mitsuru Sat\u00f4", "character": "Tatari-gami", "id": 20336, "credit_id": "52fe421bc3a36847f80049bd", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Akira Nagoya", "character": "Usi-kai", "id": 20337, "credit_id": "52fe421bc3a36847f80049c1", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Akihiro Miwa", "character": "Moro-no-kimi", "id": 20338, "credit_id": "52fe421bc3a36847f80049c5", "cast_id": 13, "profile_path": "/xQaxWhOqAZmRecv6ZratXzJVZzs.jpg", "order": 10}, {"name": "Mitsuko Mori", "character": "Hii-sama", "id": 20339, "credit_id": "52fe421bc3a36847f80049c9", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Hisaya Morishige", "character": "Okkoto-nusi", "id": 20340, "credit_id": "52fe421bc3a36847f80049cd", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Takako Fuji", "character": "Woman in Iron Town", "id": 20329, "credit_id": "52fe421bc3a36847f8004999", "cast_id": 2, "profile_path": "/nLSke54TL1eIF9LfdNsJzfwmOWv.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f8004995", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 8.0, "runtime": 134}, "129": {"poster_path": "/dL11DBPcRhWWnJcFXl9A07MrqTI.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 274925095, "overview": "Spirited Away is an Oscar winning Japanese animated film about a ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?", "video": false, "id": 129, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Spirited Away", "tagline": "The tunnel led Chihiro to a mysterious town...", "vote_count": 1131, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0245429", "adult": false, "backdrop_path": "/mnpRKVSXBX6jb56nabvmGKA0Wig.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "DENTSU Music And Entertainment", "id": 2752}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Tohokushinsha Film", "id": 12387}, {"name": "Buena Vista International", "id": 25646}, {"name": "Mitsubishi Commercial Affairs", "id": 33024}], "release_date": "2001-07-20", "popularity": 2.16478392679707, "original_title": "\u5343\u3068\u5343\u5c0b\u306e\u795e\u96a0\u3057", "budget": 15000000, "cast": [{"name": "Rumi Hiiragi", "character": "Chihiro", "id": 19587, "credit_id": "52fe421bc3a36847f8004a97", "cast_id": 3, "profile_path": "/gAjyBxRsQKYeZMkYQ6cmEj5DmHD.jpg", "order": 0}, {"name": "Miyu Irino", "character": "Haku", "id": 19588, "credit_id": "52fe421bc3a36847f8004a9b", "cast_id": 4, "profile_path": "/ietPOr7aiarxikxZE3772c9aScq.jpg", "order": 1}, {"name": "Mari Natsuki", "character": "Yubaba", "id": 19589, "credit_id": "52fe421bc3a36847f8004a9f", "cast_id": 5, "profile_path": "/oPCV2XYAJ4D1tK0OdJ2PPQbug5I.jpg", "order": 2}, {"name": "Takashi Nait\u00f4", "character": "Chihiro's Father", "id": 19590, "credit_id": "52fe421bc3a36847f8004aa3", "cast_id": 6, "profile_path": "/ljbNlt6v9a7E9uvnph2qAJ6ba55.jpg", "order": 3}, {"name": "Yasuko Sawaguchi", "character": "Chihiro's Mother", "id": 19591, "credit_id": "52fe421bc3a36847f8004aa7", "cast_id": 7, "profile_path": "/biQ1OczU65gZDVfH2ItCdjaGn7S.jpg", "order": 4}, {"name": "Tatsuya Gash\u00fbin", "character": "Aogaeru", "id": 19592, "credit_id": "52fe421bc3a36847f8004aab", "cast_id": 8, "profile_path": "/dZ5KJLxLmoXIYrG7JcXuphGESIv.jpg", "order": 5}, {"name": "Yumi Tamai", "character": "Lin", "id": 19594, "credit_id": "52fe421bc3a36847f8004aaf", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Yo Oizumi", "character": "Bandai-gaeru", "id": 40450, "credit_id": "52fe421bc3a36847f8004b07", "cast_id": 25, "profile_path": "/avSKuYQiEHYY0eJoCFiKCyhGvcL.jpg", "order": 7}, {"name": "Koba Hayashi", "character": "Kawa no Kami", "id": 554423, "credit_id": "52fe421bc3a36847f8004b0b", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Tsunehiko Kamij\u00f4", "character": "Chichiyaku", "id": 20334, "credit_id": "52fe421bc3a36847f8004b0f", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Takehiko Ono", "character": "Aniyaku", "id": 544088, "credit_id": "52fe421bc3a36847f8004b13", "cast_id": 28, "profile_path": "/kqeS1AuvIoDtJo4ZvAlbNBhtNAU.jpg", "order": 10}, {"name": "Ryunosuke Kamiki", "character": "B\u00f4h", "id": 225730, "credit_id": "52fe421bc3a36847f8004b17", "cast_id": 30, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 12}, {"name": "Bunta Sugawara", "character": "Kamaj\u00ee", "id": 119243, "credit_id": "52fe421bc3a36847f8004b1b", "cast_id": 31, "profile_path": "/w3J8EkYDHi0UQ3JPradqKBfa22V.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe421bc3a36847f8004a8d", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.9, "runtime": 125}, "245891": {"poster_path": "/sq2MmFv9sanl9PFMfbdaBLveSJ8.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73600000, "overview": "After the sudden death of his beloved wife, John Wick receives one last gift from her, a beagle puppy named Daisy, and a note imploring him not to forget how to love. But John's mourning is interrupted when his 1969 Boss Mustang catches the eye of sadistic thug Iosef Tarasov who breaks into his house and steals it, beating John unconscious in the process. Unwittingly, he has just reawakened one of the most brutal assassins the underworld has ever known.", "video": false, "id": 245891, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "John Wick", "tagline": "Don't set him off.", "vote_count": 741, "homepage": "http://www.johnwickthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2911666", "adult": false, "backdrop_path": "/mFb0ygcue4ITixDkdr7wm1Tdarx.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "87Eleven", "id": 23008}, {"name": "DefyNite Films", "id": 36259}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2014-10-24", "popularity": 7.64166781035436, "original_title": "John Wick", "budget": 20000000, "cast": [{"name": "Keanu Reeves", "character": "John Wick", "id": 6384, "credit_id": "52fe4f0cc3a36847f82b9c41", "cast_id": 6, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Michael Nyqvist", "character": "Viggo Tarasov", "id": 6283, "credit_id": "544b95150e0a2630f9000dc0", "cast_id": 20, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 1}, {"name": "Alfie Allen", "character": "Iosef Tarasov", "id": 71586, "credit_id": "52fe4f0cc3a36847f82b9c59", "cast_id": 12, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Marcus", "id": 5293, "credit_id": "52fe4f0cc3a36847f82b9c4d", "cast_id": 9, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Dean Winters", "character": "Avi", "id": 68763, "credit_id": "544ab7dec3a3680fb4004dbb", "cast_id": 14, "profile_path": "/l6yaRWtG1yjkdKo4oGk2SMBx64x.jpg", "order": 4}, {"name": "Adrianne Palicki", "character": "Ms. Perkins", "id": 88995, "credit_id": "52fe4f0cc3a36847f82b9c45", "cast_id": 7, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 5}, {"name": "Omer Barnea", "character": "Gregori", "id": 968977, "credit_id": "544b95460e0a267486006b42", "cast_id": 21, "profile_path": "/oBNeyaNaZ5hoh84XISKWt4RteLV.jpg", "order": 6}, {"name": "Toby Leonard Moore", "character": "Victor", "id": 1377438, "credit_id": "544b955bc3a3680fb4006e27", "cast_id": 22, "profile_path": "/mNmFB7OxcwLIQm3ovnHFL0PNtsN.jpg", "order": 7}, {"name": "Daniel Bernhardt", "character": "Kirill", "id": 9452, "credit_id": "544b9572c3a3686ac1000873", "cast_id": 23, "profile_path": "/gsIWvByH4lzQdTgMswQWqiAQOql.jpg", "order": 8}, {"name": "Bridget Moynahan", "character": "Helen Wick", "id": 18354, "credit_id": "52fe4f0cc3a36847f82b9c51", "cast_id": 10, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 9}, {"name": "John Leguizamo", "character": "Aureilo", "id": 5723, "credit_id": "544ab810c3a3680fbb004280", "cast_id": 19, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 10}, {"name": "Ian McShane", "character": "Winston", "id": 6972, "credit_id": "544b9592c3a3686ac1000876", "cast_id": 24, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 11}, {"name": "Bridget Regan", "character": "Addy", "id": 1222298, "credit_id": "52fe4f0cc3a36847f82b9c49", "cast_id": 8, "profile_path": "/uzVNdcPD2drMUKmT73xuKKYXBzB.jpg", "order": 12}, {"name": "Lance Reddick", "character": "Hotel Manager / Charon", "id": 129101, "credit_id": "544b95bac3a3680fb1006fd5", "cast_id": 26, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 15}, {"name": "David Patrick Kelly", "character": "Charlie", "id": 1737, "credit_id": "545198220e0a2642c2002280", "cast_id": 28, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 17}, {"name": "Clarke Peters", "character": "Harry", "id": 61011, "credit_id": "54519830c3a3680239004fbd", "cast_id": 29, "profile_path": "/7a3OTcJlncY32LDvdTjLS6bTMxh.jpg", "order": 18}, {"name": "Kevin Nash", "character": "Francis", "id": 135352, "credit_id": "5451983a0e0a263a1000545c", "cast_id": 30, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 19}, {"name": "Thomas Sadoski", "character": "Officer Jimmy", "id": 1218218, "credit_id": "552506f2c3a3687e03001016", "cast_id": 49, "profile_path": "/76x2G7gyY25krEc3OBMUWaEzgnB.jpg", "order": 20}], "directors": [{"name": "Chad Stahelski", "department": "Directing", "job": "Director", "credit_id": "52fe4f0cc3a36847f82b9c2b", "profile_path": null, "id": 40644}, {"name": "David Leitch", "department": "Directing", "job": "Director", "credit_id": "54532a3b0e0a2648cf00085b", "profile_path": "/eVSgvAIsP6mwuVbbhVb4HkVvmsu.jpg", "id": 40684}], "vote_average": 7.2, "runtime": 101}, "134": {"poster_path": "/vWGpHTmkZdKJJWpZ0ngPVHsq68l.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71000000, "overview": "In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them. On their journey they come across many comical characters and incredible situations. Based upon Homer's 'Odyssey'.", "video": false, "id": 134, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "O Brother, Where Art Thou?", "tagline": "They have a plan...but not a clue.", "vote_count": 325, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0190590", "adult": false, "backdrop_path": "/s4SmtlX13p1E2laSQqmVZQ8sYbe.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}], "release_date": "2000-12-21", "popularity": 1.34979690816522, "original_title": "O Brother, Where Art Thou?", "budget": 26000000, "cast": [{"name": "George Clooney", "character": "Everett Ulysses McGill", "id": 1461, "credit_id": "52fe421cc3a36847f8004ccb", "cast_id": 3, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "John Turturro", "character": "Pete", "id": 1241, "credit_id": "52fe421cc3a36847f8004ccf", "cast_id": 4, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Tim Blake Nelson", "character": "Delmar", "id": 1462, "credit_id": "52fe421cc3a36847f8004cd3", "cast_id": 5, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 2}, {"name": "John Goodman", "character": "Big Dan Teague", "id": 1230, "credit_id": "52fe421cc3a36847f8004cd7", "cast_id": 6, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Holly Hunter", "character": "Penny", "id": 18686, "credit_id": "52fe421cc3a36847f8004cdb", "cast_id": 7, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 4}, {"name": "Chris Thomas King", "character": "Tommy Johnson", "id": 1465, "credit_id": "52fe421cc3a36847f8004cdf", "cast_id": 8, "profile_path": "/hUeI7GRVoOqpqOeEYObuGIYTuIi.jpg", "order": 5}, {"name": "Charles Durning", "character": "Pappy O'Daniel", "id": 1466, "credit_id": "52fe421cc3a36847f8004ce3", "cast_id": 9, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 6}, {"name": "Del Pentecost", "character": "Junior O'Daniel", "id": 1467, "credit_id": "52fe421cc3a36847f8004ce7", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Michael Badalucco", "character": "George Nelson", "id": 1010, "credit_id": "52fe421cc3a36847f8004ceb", "cast_id": 11, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 8}, {"name": "J.R. Horne", "character": "Pappy's Staff", "id": 1468, "credit_id": "52fe421cc3a36847f8004cef", "cast_id": 12, "profile_path": "/kwXWf5gEZGWyqRDu5VjXAoll1Hw.jpg", "order": 9}, {"name": "Brian Reddy", "character": "Pappy's Staff", "id": 1469, "credit_id": "52fe421cc3a36847f8004cf3", "cast_id": 13, "profile_path": "/6AOxOUfyU3iDQabWL6EipPZ5DAM.jpg", "order": 10}, {"name": "Wayne Duvall", "character": "Homer Stokes", "id": 1470, "credit_id": "52fe421cc3a36847f8004cf7", "cast_id": 14, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 11}, {"name": "Ed Gale", "character": "The Little Man", "id": 1471, "credit_id": "52fe421cc3a36847f8004cfb", "cast_id": 15, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 12}, {"name": "Ray McKinnon", "character": "Vernon T. Waldrip", "id": 1472, "credit_id": "52fe421cc3a36847f8004cff", "cast_id": 16, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 13}, {"name": "Daniel von Bargen", "character": "Sheriff Cooley", "id": 1473, "credit_id": "52fe421cc3a36847f8004d03", "cast_id": 17, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 14}, {"name": "Mia Tate", "character": "Siren", "id": 1474, "credit_id": "52fe421cc3a36847f8004d07", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Musetta Vander", "character": "Siren", "id": 1475, "credit_id": "52fe421cc3a36847f8004d0b", "cast_id": 19, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 16}, {"name": "Christy Taylor", "character": "Siren", "id": 1476, "credit_id": "52fe421cc3a36847f8004d0f", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Millford Fortenberry", "character": "Pomade Vendor", "id": 1478, "credit_id": "52fe421cc3a36847f8004d13", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Frank Collison", "character": "Wash Hogwallop", "id": 1479, "credit_id": "52fe421cc3a36847f8004d17", "cast_id": 22, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 19}, {"name": "Quinn Gasaway", "character": "Boy Hogwallop", "id": 1480, "credit_id": "52fe421cc3a36847f8004d1b", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Lee Weaver", "character": "Blind Seer", "id": 1481, "credit_id": "52fe421cc3a36847f8004d1f", "cast_id": 24, "profile_path": "/8XnZM7YOWSqdUgPXNLZBWuDQ6Nl.jpg", "order": 21}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe421cc3a36847f8004cc1", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe421cc3a36847f8004cc7", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.1, "runtime": 106}, "8328": {"poster_path": "/5SwoeOUyfkS8s6aGB2bLYAL5jKR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58017783, "overview": "When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.", "video": false, "id": 8328, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up 2: The Streets", "tagline": "It's not where you're from. It's where you're at.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1023481", "adult": false, "backdrop_path": "/fGq48GZp2PLVgx9IwW5lBf4DBYJ.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Summit Entertainment", "id": 491}, {"name": "Offspring Entertainment", "id": 2378}], "release_date": "2008-02-14", "popularity": 1.20767395109235, "original_title": "Step Up 2: The Streets", "budget": 17500000, "cast": [{"name": "Briana Evigan", "character": "Andie West", "id": 54499, "credit_id": "52fe449fc3a36847f80a097b", "cast_id": 1, "profile_path": "/aCNDUEvMJYofz9EzIguET7KRfqT.jpg", "order": 0}, {"name": "Robert Hoffman", "character": "Chase Collins", "id": 58368, "credit_id": "52fe449fc3a36847f80a0a1b", "cast_id": 31, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 1}, {"name": "Will Kemp", "character": "Blake Collins", "id": 54500, "credit_id": "52fe449fc3a36847f80a097f", "cast_id": 3, "profile_path": "/cQAKDIsxoZlzp8OmEiXGUCFjxre.jpg", "order": 2}, {"name": "Cassie Ventura", "character": "Sophie Donovan", "id": 54502, "credit_id": "52fe449fc3a36847f80a0983", "cast_id": 4, "profile_path": "/ymVzJ7n4ZLuMjC9oG4S7H3htwFC.jpg", "order": 3}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "52fe449fc3a36847f80a0987", "cast_id": 5, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 4}, {"name": "Danielle Polanco", "character": "Missy", "id": 54504, "credit_id": "52fe449fc3a36847f80a098b", "cast_id": 6, "profile_path": "/uerNcZ5L350k7MAWhxMyD0kdJEn.jpg", "order": 5}, {"name": "Telisha Shaw", "character": "Felicia", "id": 54505, "credit_id": "52fe449fc3a36847f80a098f", "cast_id": 7, "profile_path": "/5cFsHGqdjpCgnTmRFDSDWNCb9E.jpg", "order": 6}, {"name": "Black Thomas", "character": "Tuck", "id": 54506, "credit_id": "52fe449fc3a36847f80a0993", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Mari Koda", "character": "Jenny Kido", "id": 1189078, "credit_id": "52fe449fc3a36847f80a0a1f", "cast_id": 32, "profile_path": "/oFrTgN8bhNmHSFY2PN5MISLa2IL.jpg", "order": 8}, {"name": "Harry Shum Jr.", "character": "Cable", "id": 232499, "credit_id": "52fe449fc3a36847f80a0a23", "cast_id": 33, "profile_path": "/aNnMmND0UYiE1J2yDA3QzHgHYdY.jpg", "order": 9}, {"name": "Hi-Hat", "character": "Businesswoman on Subway", "id": 54515, "credit_id": "54aff29bc3a3683fba0044a3", "cast_id": 34, "profile_path": "/9KIBPhKOxizRBH3YPLSSVaL2PYW.jpg", "order": 10}], "directors": [{"name": "Jon M. Chu", "department": "Directing", "job": "Director", "credit_id": "52fe449fc3a36847f80a0999", "profile_path": "/h80Zf0GR4jdmURx32hjvckJE8o5.jpg", "id": 54507}], "vote_average": 6.5, "runtime": 98}, "137": {"poster_path": "/vXjVd0Vu0MXRZnga7wEnHIIhO5B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70906973, "overview": "A narcissistic TV weatherman, along with his attractive-but-distant producer and mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.", "video": false, "id": 137, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Groundhog Day", "tagline": "He's having the worst day of his life... over, and over...", "vote_count": 546, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0107048", "adult": false, "backdrop_path": "/dTUH9xO3w6vQjcN2ictxgpnAhKm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1993-02-11", "popularity": 1.50364939814854, "original_title": "Groundhog Day", "budget": 14600000, "cast": [{"name": "Bill Murray", "character": "Phil Connors", "id": 1532, "credit_id": "52fe421dc3a36847f8004f01", "cast_id": 11, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Andie MacDowell", "character": "Rita", "id": 1533, "credit_id": "52fe421dc3a36847f8004f05", "cast_id": 12, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 1}, {"name": "Chris Elliott", "character": "Larry", "id": 1534, "credit_id": "52fe421dc3a36847f8004f09", "cast_id": 13, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 2}, {"name": "Stephen Tobolowsky", "character": "Ned Ryerson", "id": 537, "credit_id": "52fe421dc3a36847f8004f0d", "cast_id": 14, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 3}, {"name": "Brian Doyle-Murray", "character": "Buster Green", "id": 1535, "credit_id": "52fe421dc3a36847f8004f11", "cast_id": 15, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 4}, {"name": "Angela Paton", "character": "Mrs. Lancaster", "id": 1537, "credit_id": "52fe421dc3a36847f8004f15", "cast_id": 17, "profile_path": "/eJZpJyEuMT4mQ8d8tbU0addZ1kD.jpg", "order": 5}, {"name": "Rick Ducommun", "character": "Gus", "id": 1538, "credit_id": "52fe421dc3a36847f8004f19", "cast_id": 18, "profile_path": "/d1tBYjxG2VuLX6ryj5BrrGQJ0UL.jpg", "order": 6}, {"name": "Rick Overton", "character": "Ralph", "id": 1539, "credit_id": "52fe421dc3a36847f8004f1d", "cast_id": 19, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 7}, {"name": "Robin Duke", "character": "Doris, the Waitress", "id": 1540, "credit_id": "52fe421dc3a36847f8004f21", "cast_id": 20, "profile_path": "/40Jb4K4fkgwZJYy3mu55WBjAprZ.jpg", "order": 8}, {"name": "Willie Garson", "character": "Kenny", "id": 1542, "credit_id": "52fe421dc3a36847f8004f25", "cast_id": 22, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 9}, {"name": "Ken Hudson Campbell", "character": "Man in Hallway", "id": 236327, "credit_id": "52fe421dc3a36847f8004f5f", "cast_id": 34, "profile_path": "/lN9e975UkER6sRu9tKpeL2XyU5D.jpg", "order": 10}, {"name": "Michael Shannon", "character": "Fred", "id": 335, "credit_id": "52fe421dc3a36847f8004f75", "cast_id": 38, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 11}, {"name": "Harold Ramis", "character": "Neurologist", "id": 1524, "credit_id": "530ce988925141143500140b", "cast_id": 42, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 12}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe421cc3a36847f8004ec7", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 7.0, "runtime": 101}, "16523": {"poster_path": "/h6obMSAV3yi5TL3Srh8tiXpre1a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99771364, "overview": "Max imagines running away from his mom and sailing to a far-off land where large talking beasts -- Ira, Carol, Douglas, the Bull, Judith and Alexander -- crown him as their king, play rumpus, build forts and discover secret hideaways.", "video": false, "id": 16523, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Where the Wild Things Are", "tagline": "There's one in all of us.", "vote_count": 147, "homepage": "http://wherethewildthingsare.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386117", "adult": false, "backdrop_path": "/4li3yPTAwc64iGdGR2GMafLxPvF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Playtone", "id": 4171}, {"name": "Wild Things Productions", "id": 5289}], "release_date": "2009-10-16", "popularity": 0.722827217455587, "original_title": "Where the Wild Things Are", "budget": 115000000, "cast": [{"name": "Max Records", "character": "Max", "id": 80576, "credit_id": "52fe46d89251416c7508571f", "cast_id": 4, "profile_path": "/ggqpknWzy80JUgQRNPUspihCy6V.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Connie", "id": 2229, "credit_id": "52fe46d89251416c7508571b", "cast_id": 3, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "Lauren Ambrose", "character": "KW (voice)", "id": 54470, "credit_id": "52fe46d89251416c75085723", "cast_id": 5, "profile_path": "/zEdW3X6MHTDVG4jizKfVebVTmCH.jpg", "order": 2}, {"name": "James Gandolfini", "character": "Carol (voice)", "id": 4691, "credit_id": "52fe46d89251416c75085727", "cast_id": 6, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 3}, {"name": "Catherine O'Hara", "character": "Judith (voice)", "id": 11514, "credit_id": "52fe46d89251416c7508572b", "cast_id": 7, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 4}, {"name": "Forest Whitaker", "character": "Ira (voice)", "id": 2178, "credit_id": "52fe46d89251416c7508572f", "cast_id": 8, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 5}, {"name": "Mark Ruffalo", "character": "Connie's boyfriend", "id": 103, "credit_id": "52fe46d89251416c7508575d", "cast_id": 16, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 6}, {"name": "Pepita Emmerichs", "character": "Claire", "id": 113495, "credit_id": "52fe46d89251416c75085761", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Max Pfeiffer", "character": "Claire's Friend", "id": 225293, "credit_id": "52fe46d89251416c75085765", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Madeleine Greaves", "character": "Claire's Friend", "id": 187406, "credit_id": "52fe46d89251416c75085769", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Joshua Jay", "character": "Claire's Friend", "id": 187281, "credit_id": "52fe46d89251416c7508576d", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Steve Mouzakis", "character": "Teacher", "id": 187494, "credit_id": "52fe46d89251416c75085775", "cast_id": 22, "profile_path": "/z5GjGHH4h5UQOof7bfyPR05Fwl8.jpg", "order": 11}, {"name": "Paul Dano", "character": "Alexander (voice)", "id": 17142, "credit_id": "52fe46d89251416c75085779", "cast_id": 23, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 12}, {"name": "Michael Berry Jr.", "character": "The Bull (voice)", "id": 1716, "credit_id": "52fe46d89251416c7508577d", "cast_id": 24, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 13}, {"name": "Chris Cooper", "character": "Douglas (voice)", "id": 2955, "credit_id": "52fe46d89251416c75085781", "cast_id": 25, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 14}, {"name": "Ryan Corr", "character": "Claire's Friend", "id": 1213279, "credit_id": "530b1a09c3a36841f00055b8", "cast_id": 26, "profile_path": "/mK9GfkUDfu3YDcPVU4fvafKqzqW.jpg", "order": 15}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe46d89251416c75085711", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 6.4, "runtime": 101}, "141": {"poster_path": "/dGcIsUfeatHYqgp9gX6KOcYT427.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1270522, "overview": "A troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes, after narrowly escaping a bizarre accident.", "video": false, "id": 141, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Donnie Darko", "tagline": "Dark. Darker. Darko.", "vote_count": 778, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hja7IzXp6how8eD1WHriI386TGY.jpg", "poster_path": "/4Oj6ctBucsLvkbKsQMDaDXXR5cu.jpg", "id": 178106, "name": "Darko Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0246578", "adult": false, "backdrop_path": "/mqMGZIMKg2tGEkcuSduAxWAL7UF.jpg", "production_companies": [{"name": "Pandora Cinema", "id": 185}, {"name": "Flower Films", "id": 2214}, {"name": "Adam Fields Productions", "id": 3334}], "release_date": "2001-10-26", "popularity": 1.30087470628827, "original_title": "Donnie Darko", "budget": 6000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Donnie Darko", "id": 131, "credit_id": "52fe421dc3a36847f80051fb", "cast_id": 3, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Patrick Swayze", "character": "Jim Cunningham", "id": 723, "credit_id": "52fe421dc3a36847f8005217", "cast_id": 10, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Karen Pomeroy", "id": 69597, "credit_id": "52fe421dc3a36847f800526d", "cast_id": 27, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Maggie Gyllenhaal", "character": "Elizabeth Darko", "id": 1579, "credit_id": "52fe421dc3a36847f8005203", "cast_id": 5, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 3}, {"name": "Holmes Osborne", "character": "Eddie Darko", "id": 1578, "credit_id": "52fe421dc3a36847f80051ff", "cast_id": 4, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 4}, {"name": "Daveigh Chase", "character": "Samantha Darko", "id": 1580, "credit_id": "52fe421dc3a36847f8005207", "cast_id": 6, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 5}, {"name": "Mary McDonnell", "character": "Mrs. Rose Darko", "id": 1581, "credit_id": "52fe421dc3a36847f800520b", "cast_id": 7, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 6}, {"name": "James Duval", "character": "Frank", "id": 1582, "credit_id": "52fe421dc3a36847f800520f", "cast_id": 8, "profile_path": "/ydlb3Rp5vkle9codpcfBWxFmUYr.jpg", "order": 7}, {"name": "Arthur Taxier", "character": "Dr. Fisher", "id": 1583, "credit_id": "52fe421dc3a36847f8005213", "cast_id": 9, "profile_path": "/35r49niniBCW1h7lYyUYJSgma5t.jpg", "order": 8}, {"name": "Mark Hoffman", "character": "Police Officer", "id": 1584, "credit_id": "52fe421dc3a36847f800521b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Patience Cleveland", "character": "Roberty Sparrow / Grandma Death", "id": 1585, "credit_id": "52fe421dc3a36847f800521f", "cast_id": 12, "profile_path": "/hPGnL3LRYhlusBDic0M6tpqsW2J.jpg", "order": 10}, {"name": "David St. James", "character": "Bob Garland", "id": 1598, "credit_id": "52fe421dc3a36847f8005265", "cast_id": 25, "profile_path": "/cOJhnH9pJph2snOgpTMgWcWY5kz.jpg", "order": 11}, {"name": "Jazzie Mahannah", "character": "Joanie James", "id": 1599, "credit_id": "52fe421dc3a36847f8005269", "cast_id": 26, "profile_path": "/uhw5q0UlGEpaolUUODL8CKNjy8F.jpg", "order": 12}, {"name": "Jolene Purdy", "character": "Cherita Chen", "id": 20088, "credit_id": "52fe421dc3a36847f8005271", "cast_id": 28, "profile_path": "/9Tc4JXy9SrXt8NIhNwzTR9khfoq.jpg", "order": 13}, {"name": "Beth Grant", "character": "Kitty Farmer", "id": 5151, "credit_id": "52fe421dc3a36847f8005275", "cast_id": 29, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 14}, {"name": "Jena Malone", "character": "Gretchen Ross", "id": 20089, "credit_id": "52fe421dc3a36847f8005279", "cast_id": 30, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 15}, {"name": "David Moreland", "character": "Principal Cole", "id": 20090, "credit_id": "52fe421dc3a36847f800527d", "cast_id": 31, "profile_path": "/5vDvT3mBrTLE8PvU6fV4cZcCH4r.jpg", "order": 16}, {"name": "Noah Wyle", "character": "Prof. Kenneth Monnitoff", "id": 13526, "credit_id": "52fe421dc3a36847f8005281", "cast_id": 32, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 17}, {"name": "Kristina Malota", "character": "Susie Bates", "id": 20091, "credit_id": "52fe421dc3a36847f8005285", "cast_id": 33, "profile_path": "/x8kF5QFvQk5ilD9ll5QDdgmSNjN.jpg", "order": 18}, {"name": "Marina Malota", "character": "Emily Bates", "id": 20092, "credit_id": "52fe421dc3a36847f8005289", "cast_id": 34, "profile_path": "/9RuSfaUoY4lCMise2m2Z5f4Dghv.jpg", "order": 19}, {"name": "Katharine Ross", "character": "Dr. Lilian Thurman", "id": 9594, "credit_id": "52fe421dc3a36847f800528d", "cast_id": 35, "profile_path": "/KtXzfeLdU8NtwjSPOQ9dvBqQeS.jpg", "order": 20}, {"name": "Scotty Leavenworth", "character": "David", "id": 20093, "credit_id": "52fe421dc3a36847f8005291", "cast_id": 36, "profile_path": "/fMlu6DxBCqTT2lYJ8WKtNGMhPVG.jpg", "order": 21}, {"name": "Phyllis Lyons", "character": "Anne Fisher", "id": 10383, "credit_id": "52fe421dc3a36847f8005295", "cast_id": 37, "profile_path": "/gShHL20sIsP5AS2w6ZGPvGb10Hz.jpg", "order": 22}, {"name": "Gary Lundy", "character": "Sean Smith", "id": 20094, "credit_id": "52fe421dc3a36847f8005299", "cast_id": 38, "profile_path": "/oo0Ptsl4R5Bk4PibnIt6w4bTDau.jpg", "order": 23}, {"name": "Alex Greenwald", "character": "Seth Devlin", "id": 20095, "credit_id": "52fe421dc3a36847f800529d", "cast_id": 39, "profile_path": "/vQtO9O4obyCEodeJ8zNXBa6TUPJ.jpg", "order": 24}, {"name": "Stuart Stone", "character": "Ronald Fisher", "id": 156011, "credit_id": "536558890e0a2647ce001aeb", "cast_id": 42, "profile_path": "/xLAtmUL0GtXMnwCrendFcXSu1Eq.jpg", "order": 25}, {"name": "Seth Rogen", "character": "Ricky Danforth", "id": 19274, "credit_id": "54f8c79992514151c60051f1", "cast_id": 43, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 26}], "directors": [{"name": "Richard Kelly", "department": "Directing", "job": "Director", "credit_id": "52fe421dc3a36847f80051f1", "profile_path": "/nHmIALlzcsSu7Uuc4kO34mFb7k2.jpg", "id": 1577}], "vote_average": 7.4, "runtime": 113}, "142": {"poster_path": "/hmBG09xDFK1n1czJ74BvfnSlxDI.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 178043761, "overview": "Brokeback Mountain is an Ang Lee film about two modern day cowboys who meet on a shepherding job in the summer of \u201963. The two share a raw and powerful summer together that turns into a life long relationship conflicting with the lives they are supposed to live.", "video": false, "id": 142, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Brokeback Mountain", "tagline": "Love is a force of nature.", "vote_count": 304, "homepage": "http://www.brokebackmountain.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0388795", "adult": false, "backdrop_path": "/1fuUoZfDVHTFIDTl1cJKDKwRlzM.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2005-09-02", "popularity": 1.0540591199248, "original_title": "Brokeback Mountain", "budget": 14000000, "cast": [{"name": "Heath Ledger", "character": "Ennis Del Mar", "id": 1810, "credit_id": "52fe421dc3a36847f8005317", "cast_id": 11, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Jack Twist", "id": 131, "credit_id": "52fe421dc3a36847f800531b", "cast_id": 12, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Randy Quaid", "character": "Joe Aguirre", "id": 1811, "credit_id": "52fe421dc3a36847f800531f", "cast_id": 13, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 2}, {"name": "Michelle Williams", "character": "Alma Beers del Mar", "id": 1812, "credit_id": "52fe421dc3a36847f8005323", "cast_id": 14, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 3}, {"name": "Anne Hathaway", "character": "Lureen Newsome", "id": 1813, "credit_id": "52fe421dc3a36847f8005327", "cast_id": 15, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 4}, {"name": "Larry Reese", "character": "Jolly Minister", "id": 1814, "credit_id": "52fe421dc3a36847f800532b", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Valerie Planche", "character": "Waitress", "id": 1815, "credit_id": "52fe421dc3a36847f800532f", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Marty Antonini", "character": "Timmy", "id": 1816, "credit_id": "52fe421dc3a36847f8005333", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Linda Cardellini", "character": "Cassie Cartwright", "id": 1817, "credit_id": "52fe421dc3a36847f8005337", "cast_id": 19, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 8}, {"name": "Anna Faris", "character": "LaShawn", "id": 1772, "credit_id": "52fe421dc3a36847f800533b", "cast_id": 20, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 9}, {"name": "Kate Mara", "character": "Alma Jr. (Age 19)", "id": 51072, "credit_id": "52fe421dc3a36847f800533f", "cast_id": 22, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 10}, {"name": "Dave Trimble", "character": "Basque", "id": 1081513, "credit_id": "54b91926c3a36814210014c9", "cast_id": 24, "profile_path": null, "order": 11}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe421dc3a36847f80052dd", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 6.8, "runtime": 134}, "123025": {"poster_path": "/t1UAqk1Yej8rfxEUqNLFyKkcny1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Batman has not been seen for ten years. A new breed of criminal ravages Gotham City, forcing 55-year-old Bruce Wayne back into the cape and cowl. But, does he still have what it takes to fight crime in a new era?", "video": false, "id": 123025, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}], "title": "Batman: The Dark Knight Returns, Part 1", "tagline": "Old heroes never die. They just get darker.", "vote_count": 136, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/9OMTLs9efR8UYLoAD7JhGbmEurm.jpg", "id": 248534, "name": "Batman: The Dark Knight Returns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2313197", "adult": false, "backdrop_path": "/a6pB1w4lwp0WeTRQk9Q2K1F9W34.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Premiere", "id": 4811}, {"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2012-09-25", "popularity": 0.569725477696637, "original_title": "Batman: The Dark Knight Returns, Part 1", "budget": 3500000, "cast": [{"name": "Peter Weller", "character": "Batman / Bruce Wayne", "id": 27811, "credit_id": "52fe4a8bc3a368484e159843", "cast_id": 6, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Ariel Winter", "character": "Robin / Carrie Kelley", "id": 42160, "credit_id": "52fe4a8bc3a368484e159847", "cast_id": 7, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 1}, {"name": "David Selby", "character": "James Gordon", "id": 56930, "credit_id": "52fe4a8bc3a368484e15985f", "cast_id": 13, "profile_path": "/31FZf0TdcYm53S9R9q1KWNNxVaH.jpg", "order": 2}, {"name": "Wade Williams", "character": "Harvey Dent / Two-Face", "id": 51930, "credit_id": "52fe4a8bc3a368484e15984b", "cast_id": 8, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 3}, {"name": "Michael McKean", "character": "Dr. Bartholomew Wolper (voice)", "id": 21731, "credit_id": "52fe4a8bc3a368484e15984f", "cast_id": 9, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 4}, {"name": "Rob Paulsen", "character": "Jeff Adams (voice)", "id": 43125, "credit_id": "52fe4a8bc3a368484e159853", "cast_id": 10, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 5}, {"name": "Maurice LaMarche", "character": "Newscaster (voice)", "id": 34521, "credit_id": "52fe4a8bc3a368484e159857", "cast_id": 11, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 6}, {"name": "Gary Anthony Williams", "character": "Mutant Leader / Anchor Bill (voice)", "id": 54043, "credit_id": "549badddc3a3682cd700131e", "cast_id": 38, "profile_path": "/2aS1bHnkEnQErbnJl8ZzQQJSzBM.jpg", "order": 7}, {"name": "Gary Anthony Sturgis", "character": "Silk / Other Spike / Young Mutant (voice)", "id": 74614, "credit_id": "52fe4a8bc3a368484e159863", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Paget Brewster", "character": "Lana Lang (voice)", "id": 15423, "credit_id": "52fe4a8bc3a368484e159867", "cast_id": 15, "profile_path": "/rnOb1bTjYVSj868mXNWJoQYq8Rn.jpg", "order": 9}, {"name": "Carlos Alazraqui", "character": "Hernando / TV Host (voice)", "id": 59784, "credit_id": "52fe4a8bc3a368484e15986b", "cast_id": 16, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 10}, {"name": "Dee Bradley Baker", "character": "Don / Fat Mutant / Additional Voices (voice)", "id": 23680, "credit_id": "52fe4a8bc3a368484e15986f", "cast_id": 17, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 11}, {"name": "Maria Canals-Barrera", "character": "Yindel (voice)", "id": 85759, "credit_id": "52fe4a8bc3a368484e159873", "cast_id": 18, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 12}, {"name": "Catherine Cavadini", "character": "Joanie / Woman with Hot Dog (voice)", "id": 64948, "credit_id": "52fe4a8bc3a368484e159877", "cast_id": 19, "profile_path": "/o2wULQltvbzCTCJitNeT72AjklR.jpg", "order": 13}, {"name": "Townsend Coleman", "character": "Morrie / Civilian (voice)", "id": 35035, "credit_id": "52fe4a8bc3a368484e15987b", "cast_id": 20, "profile_path": "/j7PvxQ7XuOQc1ggSRHWRP6CB8CU.jpg", "order": 14}, {"name": "Grey DeLisle", "character": "Anchor Carla / Female Mutant (voice)", "id": 15761, "credit_id": "52fe4a8bc3a368484e15987f", "cast_id": 21, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 15}, {"name": "Richard Doyle", "character": "The Mayor (voice)", "id": 51063, "credit_id": "52fe4a8bc3a368484e159883", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Greg Eagles", "character": "Mackie (voice)", "id": 154106, "credit_id": "52fe4a8bc3a368484e159887", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Michael Emerson", "character": "Joker (voice)", "id": 2136, "credit_id": "52fe4a8bc3a368484e15988b", "cast_id": 24, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 18}, {"name": "Michael A. Jackson", "character": "Alfred Pennyworth (voice)", "id": 159572, "credit_id": "52fe4a8bc3a368484e15988f", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Maurice LaMarche", "character": "Dr. Willing / News Anchor (voice)", "id": 34521, "credit_id": "52fe4a8bc3a368484e159893", "cast_id": 27, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 20}, {"name": "Sam McMurray", "character": "Anchor Ted (voice)", "id": 5176, "credit_id": "52fe4a8bc3a368484e15989b", "cast_id": 29, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 22}, {"name": "Andrea Romano", "character": "Woman / Police Dispatch (voice)", "id": 34945, "credit_id": "52fe4a8bc3a368484e15989f", "cast_id": 30, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 23}, {"name": "Tara Strong", "character": "Michelle / Young Bruce Wayne / Kevin Ridley / Anchor Trish / Additional Voices (voice)", "id": 15762, "credit_id": "52fe4a8bc3a368484e1598a3", "cast_id": 31, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 24}, {"name": "James Patrick Stuart", "character": "Murray (voice)", "id": 105641, "credit_id": "52fe4a8bc3a368484e1598a7", "cast_id": 32, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 25}, {"name": "James Arnold Taylor", "character": "Mr. Hudson / Spud / Additional Voices (voice)", "id": 19506, "credit_id": "52fe4a8bc3a368484e1598ab", "cast_id": 33, "profile_path": "/rAtyfY0diWt078qQIg0IX9xxG9F.jpg", "order": 26}, {"name": "Bruce Timm", "character": "Thomas Wayne (voice)", "id": 34934, "credit_id": "52fe4a8bc3a368484e1598af", "cast_id": 34, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 27}, {"name": "Jim Wise", "character": "Femur (voice)", "id": 162630, "credit_id": "52fe4a8bc3a368484e1598b3", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Gwendoline Yeo", "character": "Lola Chong (voice)", "id": 46774, "credit_id": "52fe4a8bc3a368484e1598b7", "cast_id": 36, "profile_path": "/mTd2DqE4zDcfLDBcy6DdT6nZKyv.jpg", "order": 29}, {"name": "Danny Jacobs", "character": "Merkel (voice)", "id": 62389, "credit_id": "52fe4a8bc3a368484e1598bb", "cast_id": 37, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 30}, {"name": "Yuri Lowenthal", "character": "", "id": 127387, "credit_id": "54e73251c3a3685af9001490", "cast_id": 39, "profile_path": "/d5vbYEkrPYAiVdTee8e4xCm7Fg1.jpg", "order": 31}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4a8bc3a368484e159827", "profile_path": null, "id": 105643}], "vote_average": 7.4, "runtime": 76}, "146": {"poster_path": "/2D7kikHUHbecJGoRAspBYiqoxd6.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "TW", "name": "Taiwan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209000000, "overview": "Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.", "video": false, "id": 146, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Crouching Tiger, Hidden Dragon", "tagline": "A timeless story of strength, secrets and two warriors who would never surrender.", "vote_count": 309, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 290973, "name": "Crouching Tiger, Hidden Dragon (Collection)"}, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0190332", "adult": false, "backdrop_path": "/kgUVeWLZnBTmHwXORqOSVW5btTv.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "Columbia Pictures Film Production Asia", "id": 2798}, {"name": "Good Machine", "id": 10565}, {"name": "EDKO Film", "id": 12205}, {"name": "Asia Union Film & Entertainment Ltd.", "id": 20289}, {"name": "United China Vision", "id": 20290}, {"name": "Zoom Hunt International Productions Company Ltd.", "id": 20291}], "release_date": "2000-10-01", "popularity": 0.803993449422241, "original_title": "Wo hu cang long", "budget": 15000000, "cast": [{"name": "Michelle Yeoh", "character": "Yu Shu Lien", "id": 1620, "credit_id": "52fe421ec3a36847f80055c3", "cast_id": 7, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 0}, {"name": "Zhang Ziyi", "character": "Jen Yu (Mandarin) / Jiao Long (English)", "id": 1339, "credit_id": "52fe421ec3a36847f80055c7", "cast_id": 8, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 1}, {"name": "Chang Chen", "character": "Lo 'Dark Cloud' / Luo Xiao Hu", "id": 1622, "credit_id": "52fe421ec3a36847f80055cb", "cast_id": 9, "profile_path": "/RccYC6G6bhz3Mjpm9wGvsyKsoY.jpg", "order": 2}, {"name": "Sihung Lung", "character": "Sir Te", "id": 1623, "credit_id": "52fe421ec3a36847f80055cf", "cast_id": 10, "profile_path": "/aBb0V4IUGhu477uMS2dSONC4fHW.jpg", "order": 3}, {"name": "Cheng Pei-pei", "character": "Jade Fox", "id": 1624, "credit_id": "52fe421ec3a36847f80055d3", "cast_id": 11, "profile_path": "/m3kfKB2jsPF6Veq2WgyMq8QGu6V.jpg", "order": 4}, {"name": "Fa Zeng Li", "character": "Governor Yu", "id": 1625, "credit_id": "52fe421ec3a36847f80055d7", "cast_id": 12, "profile_path": "/rxUXIO3JdmLeDq1JTxAsc4xRdRp.jpg", "order": 5}, {"name": "Xian Gao", "character": "Bo", "id": 1626, "credit_id": "52fe421ec3a36847f80055db", "cast_id": 13, "profile_path": "/7MLWYmR9HWEJhzihA1b9ZxLJqNV.jpg", "order": 6}, {"name": "Yan Hai", "character": "Madame Yu", "id": 1627, "credit_id": "52fe421ec3a36847f80055df", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "De Ming Wang", "character": "Police Inspector Tsai", "id": 1628, "credit_id": "52fe421ec3a36847f80055e3", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Li Li", "character": "May", "id": 1629, "credit_id": "52fe421ec3a36847f80055e7", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Chow Yun-Fat", "character": "Master Li Mu Bai", "id": 1619, "credit_id": "52fe421ec3a36847f8005615", "cast_id": 25, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 10}, {"name": "Su Ying Huang", "character": "Auntie Wu", "id": 1268919, "credit_id": "5497c7eac3a3686af3006f96", "cast_id": 26, "profile_path": "/1T2cLnq1WAnptzZVFp9KH3Im0cf.jpg", "order": 11}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe421ec3a36847f80055a7", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 6.7, "runtime": 120}, "10947": {"poster_path": "/nJPhjD6HCE6vPokWKuJtc9yX196.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Troy (Zac Efron), the popular captain of the basketball team, and Gabriella (Vanessa Anne Hudgens), the brainy and beautiful member of the academic club, break all the rules of East High society when they secretly audition for the leads in the school's musical. As they reach for the stars and follow their dreams, everyone learns about acceptance, teamwork, and being yourself. And it's all set to fun tunes and very cool dance moves!", "video": false, "id": 10947, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "High School Musical", "tagline": "", "vote_count": 168, "homepage": "http://tv.disney.go.com/disneychannel/originalmovies/highschoolmusical/index.html", "belongs_to_collection": {"backdrop_path": "/t1mwGPJi3NkwMeyeUHr9zlQhlTo.jpg", "poster_path": "/dXIgM9sEWIkUfRH8GZUKHv1t5n.jpg", "id": 87253, "name": "High School Musical Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0475293", "adult": false, "backdrop_path": "/fY4SLH4MLU8D2XPqV4jjTBW6dmV.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2006-01-20", "popularity": 0.920504216581989, "original_title": "High School Musical", "budget": 4200000, "cast": [{"name": "Zac Efron", "character": "Troy Bolton", "id": 29222, "credit_id": "52fe43d79251416c75020297", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Gabriella Montez", "id": 67599, "credit_id": "52fe43d79251416c7502029b", "cast_id": 2, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "Ashley Tisdale", "character": "Sharpay Evans", "id": 67600, "credit_id": "52fe43d79251416c7502029f", "cast_id": 3, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 2}, {"name": "Lucas Grabeel", "character": "Ryan Evans", "id": 67601, "credit_id": "52fe43d79251416c750202a3", "cast_id": 4, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 3}, {"name": "Corbin Bleu", "character": "Chad", "id": 67602, "credit_id": "52fe43d79251416c750202a7", "cast_id": 5, "profile_path": "/1fTGgTuAa2EdvVJEj8Vu5PGifAn.jpg", "order": 4}, {"name": "Monique Coleman", "character": "Taylor McKessie", "id": 180279, "credit_id": "5449940ac3a3680fb4002680", "cast_id": 14, "profile_path": "/phGefy73dHXXisjZi0Egb0zUS3h.jpg", "order": 5}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c750202ad", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 5.6, "runtime": 98}, "149": {"poster_path": "/8Pt7hlu7fkc5IIR0VZ2kNGY8sT4.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Childhood friends Tetsuo and Kaneda are pulled into the post-apocalyptic underworld of Neo-Tokyo and forced to fight for their very survival. Kaneda is a bike gang leader, and Tetsuo is a member of a tough motorcycle crew who becomes involved in a covert government project called Akira. But a bloody battle ensues when Kaneda sets out to save his friend.", "video": false, "id": 149, "genres": [{"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Akira", "tagline": "Neo-Tokyo is about to E.X.P.L.O.D.E.", "vote_count": 243, "homepage": "http://www.bandaivisual.co.jp/akira/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0094625", "adult": false, "backdrop_path": "/wtwn4pSFZhm665cQIHFmBjmgMEC.jpg", "production_companies": [{"name": "Bandai Visual Company", "id": 528}, {"name": "TMS Entertainment", "id": 10919}, {"name": "Akira Committee Company Ltd.", "id": 10920}, {"name": "Kodansha", "id": 6999}, {"name": "Mainichi Broadcasting System (MBS)", "id": 3363}, {"name": "Sumitomo Corporation", "id": 10921}, {"name": "Toho Company", "id": 882}, {"name": "Tokyo Movie Shinsha (TMS)", "id": 9155}], "release_date": "1988-07-16", "popularity": 0.589984920977884, "original_title": "Akira", "budget": 10000000, "cast": [{"name": "Mitsuo Iwata", "character": "Sh\u00f4tar\u00f4 Kaneda (voice)", "id": 1678, "credit_id": "52fe421ec3a36847f80057b3", "cast_id": 4, "profile_path": "/uiCp6G7TR3kHtxQQNNLiVEiXadU.jpg", "order": 0}, {"name": "Nozomu Sasaki", "character": "Tetsuo Shima (voice)", "id": 1679, "credit_id": "52fe421ec3a36847f80057b7", "cast_id": 5, "profile_path": "/8U9bbTScsKpicR2piN4GsLfbOsh.jpg", "order": 1}, {"name": "Mami Koyama", "character": "Kei (voice)", "id": 1680, "credit_id": "52fe421ec3a36847f80057bb", "cast_id": 6, "profile_path": "/vqdcJrnO2VMMxyvg7j5Pft0dhmn.jpg", "order": 2}, {"name": "Tessh\u014d Genda", "character": "Ry\u00fbsaku (voice)", "id": 1681, "credit_id": "52fe421ec3a36847f80057bf", "cast_id": 7, "profile_path": "/ahCru7z0zyaV6RV1uCP0HBNLRoC.jpg", "order": 3}, {"name": "Hiroshi Ohtake", "character": "Nezu (voice)", "id": 1682, "credit_id": "52fe421ec3a36847f80057c3", "cast_id": 8, "profile_path": "/kjPYDilt85Zcuhrg89nhyaQoXv5.jpg", "order": 4}, {"name": "K\u014dichi Kitamura", "character": "Priestess Miyako, Council A (voice)", "id": 1683, "credit_id": "52fe421ec3a36847f80057c7", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Yuriko Fuchizaki", "character": "Kaori (voice)", "id": 1314101, "credit_id": "535ceed8c3a36830a9003d65", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Masaaki \u014ckura", "character": "Yamagata (voice)", "id": 1685, "credit_id": "52fe421ec3a36847f80057cf", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Takeshi Kusao", "character": "Kai (voice)", "id": 1686, "credit_id": "52fe421ec3a36847f80057d3", "cast_id": 12, "profile_path": "/8IG3iCbOJGQPINr2Xud3ple1cVQ.jpg", "order": 9}, {"name": "Kazuhiro Kamifuji", "character": "Masaru (No. 27) (voice)", "id": 1687, "credit_id": "52fe421ec3a36847f80057d7", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Tatsuhiko Nakamura", "character": "Takashi (No. 26) (voice)", "id": 1688, "credit_id": "52fe421ec3a36847f80057db", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Fukue It\u00f4", "character": "Kiyoko (No. 25) (voice)", "id": 1689, "credit_id": "52fe421ec3a36847f80057df", "cast_id": 15, "profile_path": null, "order": 12}], "directors": [{"name": "Katsuhiro \u014ctomo", "department": "Directing", "job": "Director", "credit_id": "52fe421ec3a36847f80057a3", "profile_path": "/d3TPHQkTqAe3NeZZ280TqBa2x43.jpg", "id": 185}], "vote_average": 7.8, "runtime": 124}, "106646": {"poster_path": "/wAgdJRx4uZ0u4uzu34NOMvtjLAR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 392000694, "overview": "A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.", "video": false, "id": 106646, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Wolf of Wall Street", "tagline": "EARN. SPEND. PARTY.", "vote_count": 1765, "homepage": "http://www.thewolfofwallstreet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0993846", "adult": false, "backdrop_path": "/dYtAyg4vD88hIfrR1VKDnVGhnE6.jpg", "production_companies": [{"name": "EMJAG Productions", "id": 14654}, {"name": "Paramount Pictures", "id": 4}, {"name": "Red Granite Pictures", "id": 19177}, {"name": "Appian Way", "id": 562}, {"name": "Sikelia Productions", "id": 23243}], "release_date": "2013-12-25", "popularity": 3.50738078676463, "original_title": "The Wolf of Wall Street", "budget": 100000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Jordan Belfort", "id": 6193, "credit_id": "52fe4a6dc3a36847f81cd4e7", "cast_id": 8, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Donnie Azoff", "id": 21007, "credit_id": "52fe4a6dc3a36847f81cd4eb", "cast_id": 9, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Margot Robbie", "character": "Naomi Lapaglia", "id": 234352, "credit_id": "52fe4a6dc3a36847f81cd519", "cast_id": 20, "profile_path": "/cdc4z3uOFUoM7VNq7FqLUVDalwf.jpg", "order": 2}, {"name": "Kyle Chandler", "character": "Agent Patrick Denham", "id": 3497, "credit_id": "52fe4a6dc3a36847f81cd4ff", "cast_id": 14, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 3}, {"name": "Rob Reiner", "character": "Max Belfort", "id": 3026, "credit_id": "52fe4a6dc3a36847f81cd50b", "cast_id": 17, "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "order": 4}, {"name": "Matthew McConaughey", "character": "Mark Hanna", "id": 10297, "credit_id": "52fe4a6dc3a36847f81cd4ef", "cast_id": 10, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 5}, {"name": "Jon Bernthal", "character": "Brad", "id": 19498, "credit_id": "52fe4a6dc3a36847f81cd4f3", "cast_id": 11, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 6}, {"name": "Kenneth Choi", "character": "Chester Ming", "id": 41561, "credit_id": "52fe4a6dc3a36847f81cd535", "cast_id": 29, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 7}, {"name": "P. J. Byrne", "character": "Nicky Koskoff ('Rugrat')", "id": 1211946, "credit_id": "52fe4a6dc3a36847f81cd561", "cast_id": 39, "profile_path": "/n0j7SKO9rcmAPrcB5LrHafSzZG1.jpg", "order": 8}, {"name": "Brian Sacca", "character": "Robbie Feinberg ('Pinhead')", "id": 1332746, "credit_id": "53a5e796c3a3687a2b001aa2", "cast_id": 41, "profile_path": "/s1SW3C6Ge1drV1b1yewW19oPJrV.jpg", "order": 9}, {"name": "Henry Zebrowski", "character": "Alden Kupferberg ('Sea Otter')", "id": 1332747, "credit_id": "53a5e7bbc3a3687a2b001aa8", "cast_id": 42, "profile_path": "/n8Zc31Jzv8qdT9cfQBih3lGofsM.jpg", "order": 10}, {"name": "Jon Favreau", "character": "Manny Riskin", "id": 15277, "credit_id": "52fe4a6dc3a36847f81cd4f7", "cast_id": 12, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 11}, {"name": "Cristin Milioti", "character": "Teresa Petrillo", "id": 204392, "credit_id": "52fe4a6dc3a36847f81cd4fb", "cast_id": 13, "profile_path": "/mf0qpQCRYkWc17CTA03Ar5ELpHj.jpg", "order": 12}, {"name": "Joanna Lumley", "character": "Aunt Emma", "id": 34901, "credit_id": "52fe4a6dc3a36847f81cd529", "cast_id": 24, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 13}, {"name": "Jake Hoffman", "character": "Steve Madden", "id": 134235, "credit_id": "52fe4a6dc3a36847f81cd539", "cast_id": 31, "profile_path": "/6WdRhZyEk8S0stnzdAFtbhEVEms.jpg", "order": 14}, {"name": "Ethan Suplee", "character": "Toby Welch", "id": 824, "credit_id": "52fe4a6dc3a36847f81cd503", "cast_id": 15, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 15}, {"name": "Jean Dujardin", "character": "Jean-Jacques Handali", "id": 56024, "credit_id": "52fe4a6dc3a36847f81cd50f", "cast_id": 18, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 16}, {"name": "Jon Bernthal", "character": "Brad", "id": 19498, "credit_id": "5496dfa49251416e1e005c80", "cast_id": 43, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 17}, {"name": "Christine Ebersole", "character": "Leah Belfort", "id": 4003, "credit_id": "5496dff692514130fc004d66", "cast_id": 44, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 18}, {"name": "Shea Whigham", "character": "Captain Ted Beecham", "id": 74242, "credit_id": "5496e0669251417162001463", "cast_id": 45, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 19}, {"name": "Katarina Cas", "character": "Chantalle", "id": 549981, "credit_id": "5496e092c3a3681153004320", "cast_id": 46, "profile_path": "/bgbjA8ZkmN3CGXo24Lgd5TInHDP.jpg", "order": 20}, {"name": "P. J. Byrne", "character": "Rugrat", "id": 1211946, "credit_id": "5496e0b792514132ed0047b7", "cast_id": 47, "profile_path": "/n0j7SKO9rcmAPrcB5LrHafSzZG1.jpg", "order": 21}, {"name": "Kenneth Choi", "character": "Chester Ming", "id": 41561, "credit_id": "5496e0d19251413f750047be", "cast_id": 48, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 22}, {"name": "Bo Dietl", "character": "Bo Dietl", "id": 131119, "credit_id": "5496e171c3a3686ae90064d9", "cast_id": 53, "profile_path": "/p4g45Hu2GX8YgzMsAv4DnPvVZjt.jpg", "order": 27}, {"name": "Jon Spinogatti", "character": "Nicholas the Butler", "id": 191278, "credit_id": "5496e1b79251417a81003f52", "cast_id": 54, "profile_path": null, "order": 28}, {"name": "Aya Cash", "character": "Janet", "id": 133451, "credit_id": "5496e1cbc3a3686af3005ba9", "cast_id": 55, "profile_path": "/ihZqcurACgV6NDy95pkwQ29OawL.jpg", "order": 29}, {"name": "Rizwan Manji", "character": "Kalil", "id": 1223718, "credit_id": "5496e1db9251413f750047d6", "cast_id": 56, "profile_path": "/yB9w540vNe4pwa3ptvO1haDUKWy.jpg", "order": 30}, {"name": "Stephanie Kurtzuba", "character": "Kimmie Belzer", "id": 204651, "credit_id": "5496e1f5925141716200148a", "cast_id": 57, "profile_path": "/r7qC9kiDXwXnvTeDB6ULg0lkNI0.jpg", "order": 31}, {"name": "J.C. MacKenzie", "character": "Lucas Solomon", "id": 63296, "credit_id": "5496e21b9251416e1e005cae", "cast_id": 58, "profile_path": "/wnwpYi4jKbYZeWTFI8bVorTp9aA.jpg", "order": 32}, {"name": "Ashlie Atkinson", "character": "Rochelle Applebaum", "id": 77264, "credit_id": "5496e23092514130fc004da8", "cast_id": 59, "profile_path": "/h0ykP84QXTDLxfzizdQaFXZzzY8.jpg", "order": 33}, {"name": "Stephen Kunken", "character": "Jerry Fogel", "id": 79991, "credit_id": "5496e2519251413f750047e6", "cast_id": 60, "profile_path": "/a0phhoaFskKNICOLjniYpIO9072.jpg", "order": 34}, {"name": "Ted Griffin", "character": "Agent Hughes", "id": 1886, "credit_id": "5496e26f9251417162001497", "cast_id": 61, "profile_path": null, "order": 35}, {"name": "Sandra Nelson", "character": "Aliyah Farran", "id": 78017, "credit_id": "5496e292c3a368115300433f", "cast_id": 62, "profile_path": "/jkotsFvrKWWanvlZbU0vwpyUGxc.jpg", "order": 36}, {"name": "Dan Bittner", "character": "Rothschild Broker #1", "id": 1152008, "credit_id": "54c4151192514124c8006064", "cast_id": 63, "profile_path": null, "order": 37}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4a6dc3a36847f81cd4bf", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.9, "runtime": 180}, "152": {"poster_path": "/dlQxDFDj6crYfDWRuoK7bq6Q2bF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139000000, "overview": "When a destructive space entity is spotted approaching Earth, Admiral Kirk resumes command of the Starship Enterprise in order to intercept, examine, and hopefully stop it.", "video": false, "id": 152, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek: The Motion Picture", "tagline": "The human adventure is just beginning.", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079945", "adult": false, "backdrop_path": "/w9iSKX1GSlaPPASW7jSFkFkkDnz.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1979-12-06", "popularity": 0.889925001604088, "original_title": "Star Trek: The Motion Picture", "budget": 35000000, "cast": [{"name": "William Shatner", "character": "Captain James T. Kirk", "id": 1748, "credit_id": "52fe421fc3a36847f8005a69", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Mr. Spock", "id": 1749, "credit_id": "52fe421fc3a36847f8005a6d", "cast_id": 6, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "George Takei", "character": "Lt. Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe421fc3a36847f8005a79", "cast_id": 9, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe421fc3a36847f8005a75", "cast_id": 8, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "Walter Koenig", "character": "Lt. Pavel Chekov", "id": 1754, "credit_id": "52fe421fc3a36847f8005a81", "cast_id": 11, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Lt. Cmdr. Uhura", "id": 1753, "credit_id": "52fe421fc3a36847f8005a7d", "cast_id": 10, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe421fc3a36847f8005a71", "cast_id": 7, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 6}, {"name": "Majel Barrett", "character": "Dr. Christine Chapel", "id": 1755, "credit_id": "52fe421fc3a36847f8005a85", "cast_id": 12, "profile_path": "/6esZeIlIdrCnoGkAggRAJ8FWs7Z.jpg", "order": 7}, {"name": "Stephen Collins", "character": "Capt./Cmdr. Willard Decker", "id": 1756, "credit_id": "52fe421fc3a36847f8005a89", "cast_id": 13, "profile_path": "/eYUtj7K9pzgvARQlU8Fn4ybyGAj.jpg", "order": 8}, {"name": "Persis Khambatta", "character": "Lieutenant Ilia", "id": 1757, "credit_id": "52fe421fc3a36847f8005a8d", "cast_id": 14, "profile_path": "/fpXboRL524smwVeEtOBSKx62Gz3.jpg", "order": 9}, {"name": "Grace Lee Whitney", "character": "CPO Janice Rand", "id": 1759, "credit_id": "52fe421fc3a36847f8005a91", "cast_id": 15, "profile_path": "/h1uisJQaVHhNCYqvxgx3VevGNtA.jpg", "order": 10}, {"name": "Mark Lenard", "character": "Klingon Captain", "id": 1820, "credit_id": "52fe421fc3a36847f8005add", "cast_id": 28, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 11}, {"name": "Billy Van Zandt", "character": "Alien Boy", "id": 168423, "credit_id": "52fe421fc3a36847f8005ae1", "cast_id": 29, "profile_path": "/14Pk9JIIjNdu0d3vxBWsBRzjrSy.jpg", "order": 12}, {"name": "Roger Aaron Brown", "character": "Epsilon Technician", "id": 44054, "credit_id": "52fe421fc3a36847f8005ae5", "cast_id": 30, "profile_path": "/mQ2mEx7EteO2zdOFUzu1shDi7E.jpg", "order": 13}, {"name": "Gary Faga", "character": "Airlock Technician", "id": 178145, "credit_id": "52fe421fc3a36847f8005ae9", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Franklyn Seales", "character": "Crew Member", "id": 72658, "credit_id": "52fe421fc3a36847f8005aed", "cast_id": 32, "profile_path": null, "order": 15}], "directors": [{"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005a53", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 6.0, "runtime": 132}, "153": {"poster_path": "/5T8VvuFTdaawKLJk34i69Utaw7o.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9, "overview": "Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.", "video": false, "id": 153, "genres": [{"id": 18, "name": "Drama"}], "title": "Lost in Translation", "tagline": "Everyone wants to be found.", "vote_count": 495, "homepage": "http://www.lost-in-translation.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0335266", "adult": false, "backdrop_path": "/iJP2ogeM5YpZyUOkmCiZ5UXWyBf.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}], "release_date": "2003-09-18", "popularity": 1.18134242607306, "original_title": "Lost in Translation", "budget": 4000000, "cast": [{"name": "Bill Murray", "character": "Bob Harris", "id": 1532, "credit_id": "52fe421fc3a36847f8005b35", "cast_id": 2, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Charlotte", "id": 1245, "credit_id": "52fe421fc3a36847f8005b39", "cast_id": 3, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Anna Faris", "character": "Kelly", "id": 1772, "credit_id": "52fe421fc3a36847f8005b45", "cast_id": 6, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "John", "id": 1771, "credit_id": "52fe421fc3a36847f8005b41", "cast_id": 5, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "Akiko Takeshita", "character": "Ms. Kawasaki", "id": 1770, "credit_id": "52fe421fc3a36847f8005b3d", "cast_id": 4, "profile_path": "/d9JbzYZJIwXdd5DEuGqwJv6HUwR.jpg", "order": 4}, {"name": "Kazuyoshi Minamimagoe", "character": "Press Agent", "id": 1773, "credit_id": "52fe421fc3a36847f8005b49", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Kazuko Shibata", "character": "Press Agent", "id": 1774, "credit_id": "52fe421fc3a36847f8005b4d", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Take", "character": "Press Agent", "id": 1775, "credit_id": "52fe421fc3a36847f8005b51", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Fumihiro Hayashi", "character": "Charlie", "id": 1785, "credit_id": "52fe421fc3a36847f8005b97", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Hiroko Kawasaki", "character": "Hiroko", "id": 1786, "credit_id": "52fe421fc3a36847f8005b9b", "cast_id": 22, "profile_path": "/vSZDgzRwCsJeC6YTjX35GeVlMSy.jpg", "order": 9}, {"name": "Daikon", "character": "Bambie", "id": 1787, "credit_id": "52fe421fc3a36847f8005b9f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Catherine Lambert", "character": "Jazz Singer", "id": 75491, "credit_id": "52fe421fc3a36847f8005baf", "cast_id": 26, "profile_path": "/luN3iUUebKCnjjKiOXQtC6v7Jnx.jpg", "order": 11}, {"name": "Daiamondo Yukai", "character": "Commercial Director", "id": 1276607, "credit_id": "52fe421fc3a36847f8005bb3", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Akiko Mon\u00f4", "character": "", "id": 237167, "credit_id": "54c1d182c3a368792c002a5b", "cast_id": 28, "profile_path": null, "order": 13}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005b31", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 7.2, "runtime": 102}, "154": {"poster_path": "/7VKpj4Xl3hTzgAS3xpVuOyqNnSv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96800000, "overview": "Admiral James T. Kirk is feeling old; the prospect of accompanying his old ship the Enterprise on a two week cadet cruise is not making him feel any younger. But the training cruise becomes a a life or death struggle when Khan escapes from years of exile and captures the power of creation itself.", "video": false, "id": 154, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek II: The Wrath of Khan", "tagline": "At the end of the universe lies the beginning of vengeance.", "vote_count": 216, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084726", "adult": false, "backdrop_path": "/gih4L6m9u1yB3PGwyJxB5wjzbqR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1982-06-03", "popularity": 0.815742308032791, "original_title": "Star Trek II: The Wrath of Khan", "budget": 12000000, "cast": [{"name": "William Shatner", "character": "Admiral James T. Kirk", "id": 1748, "credit_id": "52fe421fc3a36847f8005c03", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Captain Spock", "id": 1749, "credit_id": "52fe421fc3a36847f8005c07", "cast_id": 6, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe421fc3a36847f8005c0b", "cast_id": 7, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe421fc3a36847f8005c0f", "cast_id": 8, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe421fc3a36847f8005c13", "cast_id": 9, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe421fc3a36847f8005c17", "cast_id": 10, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Cmdr. Pavel Chekov", "id": 1754, "credit_id": "52fe421fc3a36847f8005c1b", "cast_id": 11, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "Ricardo Montalban", "character": "Khan Noonien Singh", "id": 1793, "credit_id": "52fe421fc3a36847f8005c1f", "cast_id": 12, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 7}, {"name": "Bibi Besch", "character": "Dr. Carol Marcus", "id": 1794, "credit_id": "52fe421fc3a36847f8005c23", "cast_id": 13, "profile_path": "/3Np4qyewSj56jbYgqQnHcl7C7xT.jpg", "order": 8}, {"name": "Merritt Butrick", "character": "Dr. David Marcus", "id": 1795, "credit_id": "52fe421fc3a36847f8005c27", "cast_id": 14, "profile_path": "/mczHE9Z15Uo7C1VCiwaB9yP1DBD.jpg", "order": 9}, {"name": "Kirstie Alley", "character": "Lt. Saavik", "id": 1796, "credit_id": "52fe421fc3a36847f8005c2b", "cast_id": 15, "profile_path": "/fQ1EOV3dazf05uhrEVqMN2S3T0U.jpg", "order": 10}, {"name": "Paul Winfield", "character": "Captain Clark Terrell", "id": 1818, "credit_id": "52fe421fc3a36847f8005c65", "cast_id": 25, "profile_path": "/6oc80tWtRg8pRAPXOhV3FQBvBR5.jpg", "order": 11}], "directors": [{"name": "Nicholas Meyer", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005bed", "profile_path": "/iDQ5NP10dTa7e0WyY16cELdAid4.jpg", "id": 1788}], "vote_average": 7.1, "runtime": 113}, "155": {"poster_path": "/1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1001921825, "overview": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", "video": false, "id": 155, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Dark Knight", "tagline": "Why So Serious?", "vote_count": 5490, "homepage": "http://thedarkknight.warnerbros.com/dvdsite/", "belongs_to_collection": {"backdrop_path": "/xfKot7lqaiW4XpL5TtDlVBA9ei9.jpg", "poster_path": "/bqS2lMgGkuodIXtDILFWTSWDDpa.jpg", "id": 263, "name": "The Dark Knight Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0468569", "adult": false, "backdrop_path": "/nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Legendary Pictures", "id": 923}, {"name": "DC Comics", "id": 429}, {"name": "Syncopy", "id": 9996}], "release_date": "2008-07-18", "popularity": 5.03367286532616, "original_title": "The Dark Knight", "budget": 185000000, "cast": [{"name": "Christian Bale", "character": "Bruce Wayne", "id": 3894, "credit_id": "52fe4220c3a36847f8005d17", "cast_id": 35, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Heath Ledger", "character": "Joker", "id": 1810, "credit_id": "52fe421fc3a36847f8005cbf", "cast_id": 3, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "Harvey Dent", "id": 6383, "credit_id": "52fe4220c3a36847f8005cf1", "cast_id": 15, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Michael Caine", "character": "Alfred", "id": 3895, "credit_id": "52fe4220c3a36847f8005cf9", "cast_id": 17, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Maggie Gyllenhaal", "character": "Rachel Dawes", "id": 1579, "credit_id": "52fe421fc3a36847f8005cd5", "cast_id": 8, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 4}, {"name": "Gary Oldman", "character": "Lt. James Gordon", "id": 64, "credit_id": "52fe4220c3a36847f8005cf5", "cast_id": 16, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 5}, {"name": "Morgan Freeman", "character": "Lucius Fox", "id": 192, "credit_id": "52fe4220c3a36847f8005d13", "cast_id": 34, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 6}, {"name": "Ron Dean", "character": "Wuertz", "id": 57597, "credit_id": "52fe4220c3a36847f8005d65", "cast_id": 228, "profile_path": "/a910oOgeYR0IxutHf3GeyDNw3qY.jpg", "order": 7}, {"name": "Cillian Murphy", "character": "Scarecrow", "id": 2037, "credit_id": "52fe4220c3a36847f8005cfd", "cast_id": 20, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 8}, {"name": "Chin Han", "character": "Lau", "id": 101015, "credit_id": "52fe4220c3a36847f8005d61", "cast_id": 227, "profile_path": "/xvMCVDvrQ2WlAB2LmkG6HAzlYag.jpg", "order": 9}, {"name": "Nestor Carbonell", "character": "Mayor of Gotham", "id": 21316, "credit_id": "52fe4220c3a36847f8005d59", "cast_id": 225, "profile_path": "/yALf2koeUAc2UNoT5o0hQO6Akzn.jpg", "order": 10}, {"name": "Eric Roberts", "character": "Salvatore Maroni", "id": 21315, "credit_id": "52fe4220c3a36847f8005d69", "cast_id": 229, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 11}, {"name": "Ritchie Coster", "character": "Chechen", "id": 13939, "credit_id": "52fe4220c3a36847f8005d71", "cast_id": 232, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 12}, {"name": "Anthony Michael Hall", "character": "Engel", "id": 1904, "credit_id": "52fe4220c3a36847f8005d55", "cast_id": 224, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 13}, {"name": "Keith Szarabajka", "character": "Stephen", "id": 87957, "credit_id": "52fe4220c3a36847f8005d75", "cast_id": 233, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 14}, {"name": "Colin McFarlane", "character": "Loeb", "id": 128386, "credit_id": "52fe4220c3a36847f8005d79", "cast_id": 234, "profile_path": "/7jzQFnBDALhTclwIohM78bGoFzF.jpg", "order": 15}, {"name": "Melinda McGraw", "character": "Barbara Gordon", "id": 58692, "credit_id": "52fe4220c3a36847f8005d6d", "cast_id": 230, "profile_path": "/6FlZftxpIQ0PoJKvtEL9lSbgI63.jpg", "order": 16}, {"name": "William Fichtner", "character": "The bank manager", "id": 886, "credit_id": "52fe4220c3a36847f8005d5d", "cast_id": 226, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 17}, {"name": "David Dastmalchian", "character": "Joker's henchman", "id": 83854, "credit_id": "52fe4220c3a36847f8005d51", "cast_id": 223, "profile_path": "/kl4bxkrd9yc6oPYZGs4jKHLI3f2.jpg", "order": 18}, {"name": "William Smillie", "character": "Happy", "id": 1334139, "credit_id": "53aa62f00e0a2646c2001238", "cast_id": 235, "profile_path": "/peKlOZUvgfeA9lBVzYTnS1GBCIv.jpg", "order": 19}, {"name": "Danny Goldring", "character": "Grumpy", "id": 16477, "credit_id": "53aa63a00e0a2646d20011d3", "cast_id": 236, "profile_path": "/nufdKuciAuJ1vzwXnVQcUDeAsoA.jpg", "order": 20}, {"name": "Michael Stoyanov", "character": "Dopey", "id": 1196130, "credit_id": "53aa63de0e0a2646d80030b5", "cast_id": 237, "profile_path": "/hywQ6MpqibcyS0h5HaOek39tEn1.jpg", "order": 21}, {"name": "Beatrice Rosen", "character": "Natascha", "id": 101014, "credit_id": "53aa646e0e0a2646d20011ec", "cast_id": 238, "profile_path": "/897MnsgQUwXuN0OfMwY19BMFULl.jpg", "order": 22}, {"name": "Matthew Leitch", "character": "Prisoner on Ferry", "id": 141770, "credit_id": "53d7244c0e0a260337000c0c", "cast_id": 239, "profile_path": "/94OPadjJLEp4FzeXndx24mUyF0o.jpg", "order": 23}, {"name": "Amit Shah", "character": "Party Guest (uncredited)", "id": 1209046, "credit_id": "551bf00d9251414af6003148", "cast_id": 240, "profile_path": null, "order": 24}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe421fc3a36847f8005cbb", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.9, "runtime": 152}, "245916": {"poster_path": "/zVFVvN2AHXQi3AwHLXauoraMXA3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A reporter becomes the target of a vicious smear campaign that drives him to the point of suicide after he exposes the CIA's role in arming Contra rebels in Nicaragua and importing cocaine into California. Based on the true story of journalist Gary Webb.", "video": false, "id": 245916, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Kill the Messenger", "tagline": "Can you keep a National Secret?", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1216491", "adult": false, "backdrop_path": "/4DDTUMwQpq0Qli6IYPTqSV5GNb7.jpg", "production_companies": [{"name": "The Combine", "id": 27450}, {"name": "Bluegrass Films", "id": 27451}], "release_date": "2014-10-10", "popularity": 1.91669955925239, "original_title": "Kill the Messenger", "budget": 0, "cast": [{"name": "Jeremy Renner", "character": "Gary Webb", "id": 17604, "credit_id": "52fe4f0dc3a36847f82b9e91", "cast_id": 8, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Mary Elizabeth Winstead", "character": "Anna Simons", "id": 17628, "credit_id": "52fe4f0dc3a36847f82b9e8d", "cast_id": 7, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 1}, {"name": "Michael Sheen", "character": "Fred Weil", "id": 3968, "credit_id": "52fe4f0dc3a36847f82b9e95", "cast_id": 9, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 2}, {"name": "Ray Liotta", "character": "John Cullen", "id": 11477, "credit_id": "52fe4f0dc3a36847f82b9e99", "cast_id": 10, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Robert Patrick", "character": "Ronny Quail", "id": 418, "credit_id": "52fe4f0dc3a36847f82b9ea1", "cast_id": 12, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 4}, {"name": "Andy Garc\u00eda", "character": "Norwin Meneses", "id": 1271, "credit_id": "52fe4f0dc3a36847f82b9ea5", "cast_id": 13, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 5}, {"name": "Paz Vega", "character": "Coral Baca", "id": 3627, "credit_id": "52fe4f0dc3a36847f82b9ea9", "cast_id": 14, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 6}, {"name": "Michael Kenneth Williams", "character": "Ricky Ross", "id": 39390, "credit_id": "54a070e8925141212700220a", "cast_id": 15, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 7}, {"name": "Rosemarie DeWitt", "character": "Sue Webb", "id": 14892, "credit_id": "54b1a22c925141747200292a", "cast_id": 16, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 8}, {"name": "Tim Blake Nelson", "character": "Alan Fenster", "id": 1462, "credit_id": "54b1a2559251412ae7001be6", "cast_id": 17, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 9}, {"name": "Barry Pepper", "character": "Russell Dodson", "id": 12834, "credit_id": "54b1a2759251417472002931", "cast_id": 18, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 10}, {"name": "Oliver Platt", "character": "Jerry Ceppos", "id": 17485, "credit_id": "54b1a565c3a3684138002309", "cast_id": 19, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 11}, {"name": "Richard Schiff", "character": "Richard Zuckerman", "id": 31028, "credit_id": "54f0aefbc3a3686b9a006350", "cast_id": 20, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 12}, {"name": "Jena Sims", "character": "Quail's Girlfriend", "id": 1081736, "credit_id": "54f0af4e92514179680085d5", "cast_id": 21, "profile_path": "/gZ6aRQG9IoSuxCpNs3fazk0dcZi.jpg", "order": 13}, {"name": "Joshua Close", "character": "Rich Kline (as Josh Close)", "id": 81096, "credit_id": "54f0afb2c3a3686d5e007e10", "cast_id": 22, "profile_path": "/3JirJGndNoladUiIACKyMLlAzSE.jpg", "order": 14}, {"name": "Yul Vazquez", "character": "Danilo Blandon", "id": 75604, "credit_id": "54f0b013c3a36869e5005fae", "cast_id": 23, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 15}], "directors": [{"name": "Michael Cuesta", "department": "Directing", "job": "Director", "credit_id": "52fe4f0dc3a36847f82b9e6b", "profile_path": "/n3iTN6e1Bq13WlalqddULpsnEUn.jpg", "id": 84931}], "vote_average": 6.6, "runtime": 112}, "157": {"poster_path": "/uSIdBRd6YfAkTN6kNR9nin6xQ9u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87000000, "overview": "Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock's body.", "video": false, "id": 157, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek III: The Search for Spock", "tagline": "A dying planet. A fight for life.", "vote_count": 130, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0088170", "adult": false, "backdrop_path": "/tkdgoNMc0yaQnsCPYZms6zMT8nN.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1984-05-31", "popularity": 0.732902028429522, "original_title": "Star Trek III: The Search for Spock", "budget": 18000000, "cast": [{"name": "William Shatner", "character": "Admiral James T. Kirk", "id": 1748, "credit_id": "52fe4220c3a36847f8005e6d", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Capt. Spock/Elevator Voice", "id": 1749, "credit_id": "52fe4220c3a36847f8005e71", "cast_id": 6, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4220c3a36847f8005e75", "cast_id": 7, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4220c3a36847f8005e79", "cast_id": 8, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Hikaru Sulu", "id": 1752, "credit_id": "52fe4220c3a36847f8005e7d", "cast_id": 9, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe4220c3a36847f8005e81", "cast_id": 10, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Pavel Chekov", "id": 1754, "credit_id": "52fe4220c3a36847f8005e85", "cast_id": 11, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "Merritt Butrick", "character": "Dr. David Marcus", "id": 1795, "credit_id": "52fe4220c3a36847f8005e89", "cast_id": 12, "profile_path": "/mczHE9Z15Uo7C1VCiwaB9yP1DBD.jpg", "order": 7}, {"name": "Christopher Lloyd", "character": "Cmdr. Kruge", "id": 1062, "credit_id": "52fe4220c3a36847f8005e8d", "cast_id": 13, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 8}, {"name": "Robin Curtis", "character": "Lt. Saavik", "id": 1819, "credit_id": "52fe4220c3a36847f8005e91", "cast_id": 14, "profile_path": "/pHOmW0od8GD3PUC1Yd1jBDr2aD4.jpg", "order": 9}, {"name": "Mark Lenard", "character": "Ambassador Sarek", "id": 1820, "credit_id": "52fe4220c3a36847f8005e95", "cast_id": 15, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 10}, {"name": "Carl Steven", "character": "Spock...Age 9", "id": 1829, "credit_id": "52fe4220c3a36847f8005ecf", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Vadia Potenza", "character": "Spock...Age 13", "id": 1830, "credit_id": "52fe4220c3a36847f8005ed3", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Stephen Manley", "character": "Spock...Age 17", "id": 1831, "credit_id": "52fe4220c3a36847f8005ed7", "cast_id": 27, "profile_path": "/71TPGLlBDPLm3KRZEF74Dxj4zIE.jpg", "order": 13}, {"name": "Joe W. Davis", "character": "Spock at age 25", "id": 1832, "credit_id": "52fe4220c3a36847f8005edb", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Judith Anderson", "character": "Vulcan High Priestess", "id": 3362, "credit_id": "52fe4220c3a36847f8005edf", "cast_id": 29, "profile_path": "/ryTVWN7XI2WejLsFhicfx3yJ6y9.jpg", "order": 15}], "directors": [{"name": "Leonard Nimoy", "department": "Directing", "job": "Director", "credit_id": "52fe4220c3a36847f8005e57", "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "id": 1749}], "vote_average": 6.3, "runtime": 105}, "161": {"poster_path": "/o0h76DVXvk5OKjmNez5YY0GODC2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 450717150, "overview": "Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.", "video": false, "id": 161, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ocean's Eleven", "tagline": "Are you in or out?", "vote_count": 1859, "homepage": "http://www.warnerbros.co.uk/movies/oceans11/index.html", "belongs_to_collection": {"backdrop_path": "/vxmFb03PyjycekffLqXqFibbCzx.jpg", "poster_path": "/CZs07c4vgMdPXqtVu7y8yhCdFx.jpg", "id": 304, "name": "Ocean's Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240772", "adult": false, "backdrop_path": "/wrI5n29GgneQvgFOd79V1FxTBHb.jpg", "production_companies": [{"name": "WV Films II", "id": 24939}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Section Eight", "id": 129}], "release_date": "2001-12-06", "popularity": 1.36997113121475, "original_title": "Ocean's Eleven", "budget": 85000000, "cast": [{"name": "George Clooney", "character": "Danny Ocean", "id": 1461, "credit_id": "52fe4220c3a36847f8006167", "cast_id": 11, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Rusty Ryan", "id": 287, "credit_id": "52fe4220c3a36847f800616b", "cast_id": 12, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Matt Damon", "character": "Linus Caldwell", "id": 1892, "credit_id": "52fe4220c3a36847f800616f", "cast_id": 13, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 2}, {"name": "Andy Garc\u00eda", "character": "Terry Benedict", "id": 1271, "credit_id": "52fe4220c3a36847f8006173", "cast_id": 14, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 3}, {"name": "Julia Roberts", "character": "Tess Ocean", "id": 1204, "credit_id": "52fe4220c3a36847f8006177", "cast_id": 15, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 4}, {"name": "Casey Affleck", "character": "Virgil Malloy", "id": 1893, "credit_id": "52fe4220c3a36847f800617b", "cast_id": 16, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 5}, {"name": "Scott Caan", "character": "Turk Malloy", "id": 1894, "credit_id": "52fe4220c3a36847f800617f", "cast_id": 17, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "Carl Reiner", "character": "Saul Bloom", "id": 1895, "credit_id": "52fe4220c3a36847f8006183", "cast_id": 18, "profile_path": "/mG0YcJ72Dw0jwFvg44lncv21mut.jpg", "order": 7}, {"name": "Don Cheadle", "character": "Basher Tarr (uncredited)", "id": 1896, "credit_id": "52fe4220c3a36847f8006187", "cast_id": 19, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 8}, {"name": "Bernie Mac", "character": "Frank Catton", "id": 1897, "credit_id": "52fe4220c3a36847f800618b", "cast_id": 20, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 9}, {"name": "Elliott Gould", "character": "Reuben Tishkoff", "id": 827, "credit_id": "52fe4220c3a36847f800618f", "cast_id": 21, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 10}, {"name": "Eddie Jemison", "character": "Livingston Dell", "id": 1898, "credit_id": "52fe4220c3a36847f8006193", "cast_id": 22, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 11}, {"name": "Shaobo Qin", "character": "Yen", "id": 1900, "credit_id": "52fe4220c3a36847f8006197", "cast_id": 23, "profile_path": "/d12Ni5dBctraHwkPsmLl6gPt3PR.jpg", "order": 12}, {"name": "Scott L. Schwartz", "character": "Bulldog, the Bruiser", "id": 1906, "credit_id": "52fe4220c3a36847f800619b", "cast_id": 24, "profile_path": "/7bm9Ra2DHkEu9NqHfAi0PcGQBz0.jpg", "order": 13}, {"name": "Scott Beringer", "character": "Head Goon", "id": 240770, "credit_id": "52fe4220c3a36847f800619f", "cast_id": 25, "profile_path": "/d18wj4LWoN1za5EfvNz3zZwaMnl.jpg", "order": 14}, {"name": "Henry Silva", "character": "Boxing Spectator", "id": 14731, "credit_id": "52fe4220c3a36847f80061a3", "cast_id": 26, "profile_path": "/bIQ27e769EbNtMBdU1xSoaGgNd3.jpg", "order": 15}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4220c3a36847f800612d", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.9, "runtime": 116}, "162": {"poster_path": "/kgLTB53HinftRRwhft7yrUOclDC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53000000, "overview": "Edward Scissorhands is a classic Tim Burton and Johnny Depp film about a small suburban town that receives a visit from a castaway unfinished science experiment named Edward. A satire on the normality of Middle-America and their fear of outsiders. A magical fairytale story of loneliness, learning, and love; that will make you laugh, curse, and cry.", "video": false, "id": 162, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Edward Scissorhands", "tagline": "His scars run deep.", "vote_count": 720, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099487", "adult": false, "backdrop_path": "/8XVovs4mLYZmmr2pgU5KYXkohcP.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1990-12-05", "popularity": 1.10481055583641, "original_title": "Edward Scissorhands", "budget": 20000000, "cast": [{"name": "Johnny Depp", "character": "Edward Scissorhands", "id": 85, "credit_id": "52fe4221c3a36847f80061f9", "cast_id": 5, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Kim", "id": 1920, "credit_id": "52fe4221c3a36847f8006253", "cast_id": 25, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Dianne Wiest", "character": "Peg", "id": 1902, "credit_id": "52fe4221c3a36847f80061fd", "cast_id": 6, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 2}, {"name": "Alan Arkin", "character": "Bill", "id": 1903, "credit_id": "52fe4221c3a36847f8006201", "cast_id": 7, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 3}, {"name": "Anthony Michael Hall", "character": "Jim", "id": 1904, "credit_id": "52fe4221c3a36847f8006205", "cast_id": 8, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 4}, {"name": "Vincent Price", "character": "The Inventor", "id": 1905, "credit_id": "52fe4221c3a36847f8006209", "cast_id": 9, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 5}, {"name": "Kathy Baker", "character": "Joyce", "id": 1907, "credit_id": "52fe4221c3a36847f8006213", "cast_id": 11, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 6}, {"name": "Robert Oliveri", "character": "Kevin", "id": 1908, "credit_id": "52fe4221c3a36847f8006217", "cast_id": 12, "profile_path": "/hakmz3osPPPI1zPXaQjXxkj2avn.jpg", "order": 7}, {"name": "Conchata Ferrell", "character": "Helen", "id": 1909, "credit_id": "52fe4221c3a36847f800621b", "cast_id": 13, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 8}, {"name": "Caroline Aaron", "character": "Marge", "id": 1910, "credit_id": "52fe4221c3a36847f800621f", "cast_id": 14, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 9}, {"name": "Dick Anthony Williams", "character": "Officer Allen", "id": 1911, "credit_id": "52fe4221c3a36847f8006223", "cast_id": 15, "profile_path": "/daCKfIQ0iOgWIGQLiuxpVgNqXL4.jpg", "order": 10}, {"name": "O-Lan Jones", "character": "Esmeralda", "id": 1912, "credit_id": "52fe4221c3a36847f8006227", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Susan Blommaert", "character": "Tinka", "id": 1913, "credit_id": "52fe4221c3a36847f800622b", "cast_id": 17, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 12}, {"name": "Linda Perri", "character": "Cissy", "id": 1914, "credit_id": "52fe4221c3a36847f800622f", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "John Davidson", "character": "Host TV", "id": 1915, "credit_id": "52fe4221c3a36847f8006233", "cast_id": 19, "profile_path": "/4XH4wdu5JLHtaFDWKsZizNsj7kW.jpg", "order": 14}, {"name": "Biff Yeager", "character": "George", "id": 1916, "credit_id": "52fe4221c3a36847f8006237", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Donna Pieroni", "character": "Blonde / TV", "id": 181154, "credit_id": "52fe4221c3a36847f8006263", "cast_id": 28, "profile_path": "/q3Utf3piRYRrQs7ZSjpjxUB9zQn.jpg", "order": 16}, {"name": "Nick Carter", "character": "", "id": 82602, "credit_id": "55221aba92514171cb002411", "cast_id": 29, "profile_path": "/EwGA9BeBp31GxS6ZzHnOIMFGVZ.jpg", "order": 17}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4220c3a36847f80061e3", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 7.0, "runtime": 105}, "8355": {"poster_path": "/crAf8b9gFpcdvY7majL8xWzTbem.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 886686817, "overview": "Times are changing for moody mammoth Manny, motor mouthed sloth Sid and crafty saber-toothed tiger Diego in this third installment of the beloved computer-animated children's franchise. Life heats up for our heroes when they meet some new and none-too-friendly neighbors: the mighty dinosaurs.", "video": false, "id": 8355, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age: Dawn of the Dinosaurs", "tagline": "The sub-zero heroes are back, on an incredible adventure... for the ages.", "vote_count": 758, "homepage": "http://www.iceagemovie.com/us/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1080016", "adult": false, "backdrop_path": "/2ZkYXWejAwpkFkNnOY6nQYcJSPn.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 26162}, {"name": "Twentieth Century Fox Animation", "id": 11749}], "release_date": "2009-07-01", "popularity": 1.9521165414639, "original_title": "Ice Age: Dawn of the Dinosaurs", "budget": 90000000, "cast": [{"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe44a2c3a36847f80a13a5", "cast_id": 2, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe44a2c3a36847f80a13a9", "cast_id": 3, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe44a2c3a36847f80a13ad", "cast_id": 4, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Ellie (voice)", "id": 15758, "credit_id": "52fe44a2c3a36847f80a13b1", "cast_id": 5, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Simon Pegg", "character": "Buck (voice)", "id": 11108, "credit_id": "52fe44a2c3a36847f80a13b5", "cast_id": 6, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 4}, {"name": "Seann William Scott", "character": "Crash (voice)", "id": 57599, "credit_id": "52fe44a2c3a36847f80a13b9", "cast_id": 7, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 5}, {"name": "Karen Disher", "character": "Scratte (voice)", "id": 87055, "credit_id": "52fe44a2c3a36847f80a13cd", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Chris Wedge", "character": "Scrat (voice)", "id": 5713, "credit_id": "52fe44a2c3a36847f80a13d1", "cast_id": 12, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 7}, {"name": "Kristen Wiig", "character": "Pudgy Beaver Mom (voice)", "id": 41091, "credit_id": "52fe44a2c3a36847f80a13d5", "cast_id": 13, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 8}, {"name": "Eunice Cho", "character": "Madison (Diatryma Girl) (voice)", "id": 1239793, "credit_id": "53aebf0f0e0a265989004741", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Harrison Fahn", "character": "Glypto Boy (voice)", "id": 60734, "credit_id": "53aebf4e0e0a26598c004728", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Maile Flanagan", "character": "Aardvark Mom (voice)", "id": 23211, "credit_id": "53aebf850e0a265989004754", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Jason Fricchione", "character": "Adult Molehog Male (voice)", "id": 1214603, "credit_id": "53aebf9a0e0a265980004707", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Bill Hader", "character": "Gazelle (voice)", "id": 19278, "credit_id": "53aebfb60e0a26598000470d", "cast_id": 20, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 13}, {"name": "Kelly Keaton", "character": "Molehog Mom / Shovelmouth Mom (voice)", "id": 95691, "credit_id": "53aebfce0e0a26598000470f", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Joey King", "character": "Beaver Girl (voice)", "id": 125025, "credit_id": "53aebfe50e0a265983004689", "cast_id": 22, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 15}, {"name": "Lucas Leguizamo", "character": "Aardvark Boy / Beaver Kid #2 (voice)", "id": 1335112, "credit_id": "53aec01d0e0a26597500475c", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Clea Lewis", "character": "Start Mom (voice)", "id": 186319, "credit_id": "53aec03a0e0a265975004762", "cast_id": 24, "profile_path": "/ypjVHbVYASpArT9NjU3B8q9aLyT.jpg", "order": 17}, {"name": "Jane Lynch", "character": "Diatryma Mom (voice)", "id": 43775, "credit_id": "53aec0510e0a26597900472c", "cast_id": 25, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 18}, {"name": "Regan Mizrahi", "character": "additional voices (adr loop group)", "id": 451877, "credit_id": "52fe44a2c3a36847f80a13c9", "cast_id": 10, "profile_path": "/cFrnYQzSNiPPGQtrgOzb0dXeVwa.jpg", "order": 19}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe44a2c3a36847f80a13a1", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.4, "runtime": 94}, "164": {"poster_path": "/c95lbDwL5WT8PV9DZsdSvRtXKNA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9500000, "overview": "Fortune hunter Holly Golightly finds herself captivated by aspiring writer Paul Varjak, who's moved into her building on a wealthy woman's dime. As romance blooms between Paul and Holly, Doc Golightly shows up on the scene, revealing Holly's past.", "video": false, "id": 164, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Breakfast at Tiffany's", "tagline": "Audrey Hepburn plays that daring, darling Holly Golightly to a new high in entertainment delight!", "vote_count": 233, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054698", "adult": false, "backdrop_path": "/haHULz59jdG4OVmqHjZ01z7HEit.jpg", "production_companies": [{"name": "Jurow-Shepherd", "id": 11355}], "release_date": "1961-10-05", "popularity": 1.1137074730196, "original_title": "Breakfast at Tiffany's", "budget": 2500000, "cast": [{"name": "Audrey Hepburn", "character": "Holly Golightly", "id": 1932, "credit_id": "52fe4221c3a36847f8006399", "cast_id": 6, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 0}, {"name": "George Peppard", "character": "Paul \u201eFred\u201c Varjak", "id": 1933, "credit_id": "52fe4221c3a36847f800639d", "cast_id": 7, "profile_path": "/by01dePJ5Q0UXZu5eYvQD1kAwZ4.jpg", "order": 1}, {"name": "Patricia Neal", "character": "2-E (Mrs. Failenson)", "id": 1934, "credit_id": "52fe4221c3a36847f80063a1", "cast_id": 8, "profile_path": "/1VPdXeUnI6RcCzLtKv8uTHNB690.jpg", "order": 2}, {"name": "Buddy Ebsen", "character": "Doc Golightly", "id": 1935, "credit_id": "52fe4221c3a36847f80063a5", "cast_id": 9, "profile_path": "/7tgVdVH4mXqOgTeazYAZYL2zQMk.jpg", "order": 3}, {"name": "Martin Balsam", "character": "O. J. Berman", "id": 1936, "credit_id": "52fe4221c3a36847f80063a9", "cast_id": 10, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 4}, {"name": "Mickey Rooney", "character": "Mr. Yunioshi", "id": 1937, "credit_id": "52fe4221c3a36847f80063ad", "cast_id": 11, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 5}, {"name": "Jos\u00e9 Luis de Villalonga", "character": "Jos\u00e9 da Silva Pereira", "id": 1942, "credit_id": "52fe4221c3a36847f80063c9", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "John McGiver", "character": "Tiffany's salesman", "id": 1943, "credit_id": "52fe4221c3a36847f80063cd", "cast_id": 17, "profile_path": "/4SPN4He1egZ60aIMNuh7tArx21x.jpg", "order": 7}, {"name": "Alan Reed", "character": "Sally Tomato", "id": 1944, "credit_id": "52fe4221c3a36847f80063d1", "cast_id": 18, "profile_path": "/8s1O9NJNM8kZQCmlvfYdFUiyODt.jpg", "order": 8}, {"name": "Dorothy Whitney", "character": "Mag Wildwood", "id": 1945, "credit_id": "52fe4221c3a36847f80063d5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Beverly Powers", "character": "Dancer at nightclub", "id": 1946, "credit_id": "52fe4221c3a36847f80063d9", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Stanley Adams", "character": "Rusty Trawler", "id": 1947, "credit_id": "52fe4221c3a36847f80063dd", "cast_id": 21, "profile_path": "/lHMryF9N5VfyLj6fx07haIaD6mH.jpg", "order": 11}, {"name": "Claude Stroud", "character": "Sid Arbuck", "id": 1948, "credit_id": "52fe4221c3a36847f80063e1", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Elvia Allman", "character": "Librarian", "id": 1949, "credit_id": "52fe4221c3a36847f80063e5", "cast_id": 23, "profile_path": "/nHTxHcykh8mjEUq2xv7ce2KIzx.jpg", "order": 13}, {"name": "Orangey", "character": "Cat", "id": 1950, "credit_id": "52fe4221c3a36847f80063e9", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Blake Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f800637d", "profile_path": "/tQ13izDBcErAV2qSz9KGjQbV5p9.jpg", "id": 1927}], "vote_average": 7.1, "runtime": 110}, "165": {"poster_path": "/k5dzvCQkXU2CAhLtlj9BHE7xmyK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 332000000, "overview": "Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.", "video": false, "id": 165, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Back to the Future Part II", "tagline": "Roads? Where we're going, we don't need roads!", "vote_count": 1275, "homepage": "http://www.bttf.com/", "belongs_to_collection": {"backdrop_path": "/c9C9Pg2QctyjZHRmS0P8rZg1OTA.jpg", "poster_path": "/51J1AroyQ45V8DCJnfItFUaKFxL.jpg", "id": 264, "name": "Back to the Future Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096874", "adult": false, "backdrop_path": "/snLFUFzWUZCdYkAbhZlaGJxiY3I.jpg", "production_companies": [{"name": "U-Drive Productions", "id": 20448}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1989-11-20", "popularity": 0.937353095010958, "original_title": "Back to the Future Part II", "budget": 40000000, "cast": [{"name": "Michael J. Fox", "character": "Marty McFly Sr. / Marty McFly Jr. / Marlene McFly", "id": 521, "credit_id": "52fe4221c3a36847f80064b3", "cast_id": 25, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Dr. Emmett Brown", "id": 1062, "credit_id": "52fe4221c3a36847f800648f", "cast_id": 15, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Lorraine", "id": 1063, "credit_id": "52fe4221c3a36847f8006493", "cast_id": 16, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Elisabeth Shue", "character": "Jennifer Parker / Jennifer McFly", "id": 1951, "credit_id": "52fe4221c3a36847f8006497", "cast_id": 18, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 3}, {"name": "James Tolkan", "character": "Mr. Strickland", "id": 1072, "credit_id": "52fe4221c3a36847f800649b", "cast_id": 19, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 4}, {"name": "Jeffrey Weissman", "character": "George McFly", "id": 1952, "credit_id": "52fe4221c3a36847f800649f", "cast_id": 20, "profile_path": "/rJJ066KTyGPNmu13eu2279DQrAw.jpg", "order": 5}, {"name": "Casey Siemaszko", "character": "3-D", "id": 1953, "credit_id": "52fe4221c3a36847f80064a3", "cast_id": 21, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 6}, {"name": "Billy Zane", "character": "Match", "id": 1954, "credit_id": "52fe4221c3a36847f80064a7", "cast_id": 22, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 7}, {"name": "Darlene Vogel", "character": "Spike", "id": 1955, "credit_id": "52fe4221c3a36847f80064ab", "cast_id": 23, "profile_path": "/2drohDdLkHY2K8lMG4b79DGXFdp.jpg", "order": 8}, {"name": "Elijah Wood", "character": "Video Game Boy", "id": 109, "credit_id": "52fe4221c3a36847f80064af", "cast_id": 24, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 9}, {"name": "Jason Scott Lee", "character": "Whitey", "id": 58319, "credit_id": "52fe4221c3a36847f80064c3", "cast_id": 28, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 10}, {"name": "Ricky Dean Logan", "character": "Data", "id": 68851, "credit_id": "52fe4221c3a36847f80064c7", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Charles Fleischer", "character": "Terry", "id": 12826, "credit_id": "52fe4221c3a36847f80064cb", "cast_id": 30, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 12}, {"name": "J.J. Cohen", "character": "Skinhead", "id": 11673, "credit_id": "52fe4221c3a36847f80064cf", "cast_id": 31, "profile_path": "/cEmMWxPQ1PfpEYU1NjNb2F4XSJo.jpg", "order": 13}, {"name": "Flea", "character": "Needles", "id": 1237, "credit_id": "52fe4221c3a36847f80064d3", "cast_id": 32, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 14}, {"name": "Joe Flaherty", "character": "Western Union Man", "id": 59196, "credit_id": "52fe4221c3a36847f80064d7", "cast_id": 33, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 15}, {"name": "Neil Ross", "character": "Biff Tannen Museum Narrator (voice)", "id": 64951, "credit_id": "52fe4221c3a36847f80064db", "cast_id": 34, "profile_path": "/dgcStU8y6YccpzuLeG0U0bC5xvC.jpg", "order": 16}, {"name": "Al White", "character": "Dad", "id": 73337, "credit_id": "5407d0bac3a368581b00054a", "cast_id": 50, "profile_path": "/61EO8MnW7KNjjawBykQrFMxwZWX.jpg", "order": 17}, {"name": "Thomas F. Wilson", "character": "Biff Tannen / Griff", "id": 1065, "credit_id": "54f75bff9251412405002bc6", "cast_id": 51, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 18}, {"name": "E. Casanova Evans", "character": "'Michael Jackson' Video Waiter", "id": 1434975, "credit_id": "54f75c7ac3a36833bb0024d5", "cast_id": 52, "profile_path": null, "order": 19}, {"name": "Jay Koch", "character": "'Ronald Reagan' Video Waiter", "id": 1434976, "credit_id": "54f75ca0c3a36834a20020ff", "cast_id": 53, "profile_path": null, "order": 20}, {"name": "Charles Gherardi", "character": "'Ayatollah Khomeini' Video Waiter", "id": 1434978, "credit_id": "54f75cc2c3a36833dc00200f", "cast_id": 54, "profile_path": null, "order": 21}, {"name": "John Thornton", "character": "Video Game Boy", "id": 1024268, "credit_id": "54f75d40c3a36833bb0024eb", "cast_id": 55, "profile_path": null, "order": 22}, {"name": "Theo Schwartz", "character": "Hoverboard Girl #1", "id": 1434979, "credit_id": "54f75d649251416ebf001f93", "cast_id": 56, "profile_path": null, "order": 23}, {"name": "Lindsey Whitney Barry", "character": "Hoverboard Girl #2", "id": 1434980, "credit_id": "54f75d86c3a3683a57002cf9", "cast_id": 57, "profile_path": null, "order": 24}, {"name": "Judy Ovitz", "character": "Antique Store Saleswoman", "id": 1379150, "credit_id": "54f75dbac3a36833dc00202c", "cast_id": 58, "profile_path": null, "order": 25}, {"name": "Stephanie Williams", "character": "Officer Foley (as Stephanie E. Williams)", "id": 169769, "credit_id": "54f75e679251416f37002237", "cast_id": 59, "profile_path": null, "order": 26}, {"name": "Marty Levy", "character": "Cab Driver", "id": 1434981, "credit_id": "54f75e879251416e46002257", "cast_id": 60, "profile_path": null, "order": 27}, {"name": "Jim Ishida", "character": "Fujitsu (as James Ishida)", "id": 1217015, "credit_id": "54f760aec3a36833dc002083", "cast_id": 62, "profile_path": null, "order": 29}, {"name": "Nikki Birdsong", "character": "Loretta", "id": 1434984, "credit_id": "54f760df9251416f6e0022f6", "cast_id": 63, "profile_path": null, "order": 30}, {"name": "Junior Fann", "character": "Mom", "id": 1434985, "credit_id": "54f761649251412411002ced", "cast_id": 64, "profile_path": null, "order": 31}, {"name": "Shaun Hunter", "character": "Harold", "id": 1434986, "credit_id": "54f76189c3a3683a69002b3d", "cast_id": 65, "profile_path": null, "order": 32}, {"name": "George Buck Flower", "character": "Bum (as Buck Flower)", "id": 54564, "credit_id": "54f761ad9251416f370022b4", "cast_id": 66, "profile_path": "/xHzW4GszCLTZLNxvTcKL9ICuLIc.jpg", "order": 33}, {"name": "Tamara Carrera", "character": "Jacuzzi Girl #1", "id": 1434987, "credit_id": "54f761df92514151c6002c3d", "cast_id": 67, "profile_path": null, "order": 34}, {"name": "Tracy Dali", "character": "Jacuzzi Girl #2 (as Tracy D'Aldia)", "id": 37623, "credit_id": "54f7622ec3a36833dc00209f", "cast_id": 68, "profile_path": null, "order": 35}, {"name": "Jennifer Brown", "character": "Basketball Kid #1", "id": 1434988, "credit_id": "54f7627ec3a3683a69002b75", "cast_id": 69, "profile_path": null, "order": 36}, {"name": "Irina Cashen", "character": "Basketball Kid #2", "id": 1434990, "credit_id": "54f762adc3a36834a20021c6", "cast_id": 70, "profile_path": null, "order": 37}, {"name": "Angela Greenblatt", "character": "Basketball Kid #3", "id": 1434991, "credit_id": "54f762d192514151c6002c6f", "cast_id": 71, "profile_path": null, "order": 38}, {"name": "Cameron Moore", "character": "Basketball Kid #4", "id": 1434992, "credit_id": "54f762f8c3a36834a50023a7", "cast_id": 72, "profile_path": null, "order": 39}, {"name": "Justin Mosley Spink", "character": "Basketball Kid #5", "id": 1434994, "credit_id": "54f7631b9251416e4600230c", "cast_id": 73, "profile_path": null, "order": 40}, {"name": "Lisa Freeman", "character": "Babs", "id": 97708, "credit_id": "54f7637b9251416e4600231e", "cast_id": 74, "profile_path": "/spwZaVY8ufKeT0Kkb02a8HgAr9i.jpg", "order": 41}, {"name": "John Erwin", "character": "Radio Sportscaster (voice)", "id": 176053, "credit_id": "54f7d12792514124110039a7", "cast_id": 75, "profile_path": null, "order": 42}, {"name": "Harry Waters, Jr.", "character": "Marvin Berry", "id": 1074, "credit_id": "54f7d152c3a368126c0006fc", "cast_id": 76, "profile_path": "/lDpuXzAeqfoYbxV0QxidKPXoYfV.jpg", "order": 43}, {"name": "David Harold Brown", "character": "Starlighter", "id": 1200793, "credit_id": "54f7d1dac3a36833bb003430", "cast_id": 77, "profile_path": null, "order": 44}, {"name": "Tommy Thomas", "character": "Tommy Thomas", "id": 1200791, "credit_id": "54f7d1f9c3a368351d003058", "cast_id": 78, "profile_path": null, "order": 45}, {"name": "Tommy Thomas", "character": "Starlighter", "id": 1200791, "credit_id": "54f7d20ec3a3683a57003a04", "cast_id": 79, "profile_path": null, "order": 46}, {"name": "Lloyd L. Tolbert", "character": "Starlighter", "id": 1200794, "credit_id": "54f7d23bc3a3683a57003a09", "cast_id": 80, "profile_path": "/5q81Ro5P2nonxEHq1L6kAebMVWV.jpg", "order": 47}, {"name": "Granville 'Danny' Young", "character": "Starlighter", "id": 1200792, "credit_id": "54f7d261c3a368126c00070f", "cast_id": 81, "profile_path": null, "order": 48}, {"name": "Wesley Mann", "character": "CPR Kid", "id": 1214023, "credit_id": "54f7d2b6c3a368131c0005b5", "cast_id": 82, "profile_path": null, "order": 49}, {"name": "Freddie", "character": "Einstein", "id": 2459, "credit_id": "54f7d2f09251416f6e003076", "cast_id": 83, "profile_path": "/4JeX5W2IKzZyRvqwb4LfT30YIDz.jpg", "order": 50}, {"name": "Crispin Glover", "character": "George McFly (archive footage)", "id": 1064, "credit_id": "54f7d319c3a368126c000721", "cast_id": 84, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 51}, {"name": "Todd Blood", "character": "Dance Extra (uncredited)", "id": 1435060, "credit_id": "54f7d342c3a36834a50031b8", "cast_id": 85, "profile_path": null, "order": 52}, {"name": "Sean Michael Fish", "character": "King Neptune (uncredited)", "id": 1435061, "credit_id": "54f7d390c3a3683a57003a24", "cast_id": 87, "profile_path": null, "order": 54}, {"name": "Donald Fullilove", "character": "Goldie Wilson III (uncredited)", "id": 84494, "credit_id": "54f7d3bcc3a36833dc002dc6", "cast_id": 88, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 55}, {"name": "Annette May", "character": "(uncredited)", "id": 1435062, "credit_id": "54f7d3e6c3a36834a50031cd", "cast_id": 89, "profile_path": null, "order": 56}, {"name": "Mary Ellen Trainor", "character": "Officer Reese (uncredited)", "id": 23967, "credit_id": "54f7d41bc3a368131c0005d7", "cast_id": 90, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 57}, {"name": "Gian Maria Volont\u00e9", "character": "Ramon Rojo (archive footage) (uncredited)", "id": 14276, "credit_id": "54f7d4449251416f37003006", "cast_id": 91, "profile_path": "/fnluody7boW6FHuhXoUmO141BeU.jpg", "order": 58}, {"name": "Flea", "character": "Needles", "id": 1237, "credit_id": "551d9c7f9251413756000b03", "cast_id": 93, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 59}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f8006443", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.9, "runtime": 108}, "8358": {"poster_path": "/w515BrZvczKIxbHurG6HIiYYrba.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 429632142, "overview": "Chuck, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia ditches at sea during a terrible storm. He's the only survivor, and he washes up on a tiny island with nothing but some flotsam and jetsam from the aircraft's cargo. Can he survive in this tropical wasteland? Will he ever return to woman he loves?", "video": false, "id": 8358, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Cast Away", "tagline": "At the edge of the world, his journey begins.", "vote_count": 809, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0162222", "adult": false, "backdrop_path": "/aMfCoafOGcU1KpHIyZZdwsaWcrH.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "DreamWorks SKG", "id": 27}, {"name": "ImageMovers", "id": 11395}, {"name": "Playtone", "id": 4171}], "release_date": "2000-12-07", "popularity": 1.15555351861634, "original_title": "Cast Away", "budget": 90000000, "cast": [{"name": "Tom Hanks", "character": "Chuck Noland", "id": 31, "credit_id": "52fe44a2c3a36847f80a14df", "cast_id": 3, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Kelly Frears", "id": 9994, "credit_id": "52fe44a2c3a36847f80a14e3", "cast_id": 4, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "Chris Noth", "character": "Jerry Lovett", "id": 38026, "credit_id": "52fe44a2c3a36847f80a14e7", "cast_id": 5, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 2}, {"name": "Paul Sanchez", "character": "Ramon", "id": 11892, "credit_id": "52fe44a2c3a36847f80a1515", "cast_id": 13, "profile_path": "/jKUbLQHM8FTDmLqK7OlIJxqoenc.jpg", "order": 3}, {"name": "Lari White", "character": "Bettina Peterson", "id": 55433, "credit_id": "52fe44a2c3a36847f80a1519", "cast_id": 14, "profile_path": "/rKSreViOljFVpMqKMrl3gNdreTe.jpg", "order": 4}, {"name": "Leonid Citer", "character": "Fyodor", "id": 55434, "credit_id": "52fe44a2c3a36847f80a151d", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "David Allen Brooks", "character": "Dick Peterson", "id": 55435, "credit_id": "52fe44a2c3a36847f80a1521", "cast_id": 16, "profile_path": "/406xWYihza21XRKOZV3PYyWTXxg.jpg", "order": 6}, {"name": "Semion Sudarikov", "character": "Nicolai", "id": 55436, "credit_id": "52fe44a2c3a36847f80a1525", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Peter von Berg", "character": "Yuri", "id": 55437, "credit_id": "52fe44a2c3a36847f80a1529", "cast_id": 18, "profile_path": "/ekmjFccWDzaEprBSZdxF4Obgz1x.jpg", "order": 8}, {"name": "Dmitri S. Boudrine", "character": "Lev", "id": 55438, "credit_id": "52fe44a2c3a36847f80a152d", "cast_id": 19, "profile_path": "/iHhdB3qOE1G60ucCdnslZjlNEbw.jpg", "order": 9}, {"name": "Nick Searcy", "character": "Stan", "id": 12538, "credit_id": "52fe44a2c3a36847f80a1531", "cast_id": 20, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 10}, {"name": "Fran\u00e7ois Duhamel", "character": "French FedEx Loader", "id": 1177850, "credit_id": "52fe44a2c3a36847f80a154d", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Michael Forest", "character": "Pilot Jack", "id": 1007561, "credit_id": "52fe44a2c3a36847f80a1551", "cast_id": 26, "profile_path": "/2q5tzl9eFG5GgXmoQCGjHQI3icW.jpg", "order": 12}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe44a2c3a36847f80a14d5", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 7.1, "runtime": 143}, "167": {"poster_path": "/pCZxl9Si7i46nduSqUSzFdHYiEO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50315140, "overview": "Prot is a patient at a mental hospital who claims to be from a far away Planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.", "video": false, "id": 167, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "K-PAX", "tagline": "Change the way you look at the world.", "vote_count": 151, "homepage": "http://www.k-pax.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0272152", "adult": false, "backdrop_path": "/yrPhUxZcTo68CFjsVCdHXYm8emP.jpg", "production_companies": [{"name": "Intermedia Films", "id": 763}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Path\u00e9 Pictures International", "id": 1178}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}], "release_date": "2001-10-22", "popularity": 0.734795464217852, "original_title": "K-PAX", "budget": 48000000, "cast": [{"name": "Jeff Bridges", "character": "Dr. Mark Powell", "id": 1229, "credit_id": "52fe4221c3a36847f80065cf", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Prot", "id": 1979, "credit_id": "52fe4221c3a36847f80065d3", "cast_id": 3, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Mary McCormack", "character": "Rachel Powell", "id": 1980, "credit_id": "52fe4221c3a36847f80065d7", "cast_id": 4, "profile_path": "/vMS1VGv0Cd2PMo2cuceNBPsd1GH.jpg", "order": 2}, {"name": "Alfre Woodard", "character": "Claudia Villars", "id": 1981, "credit_id": "52fe4221c3a36847f80065db", "cast_id": 5, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 3}, {"name": "Ajay Naidu", "character": "Dr. Chakaraborty", "id": 1982, "credit_id": "52fe4221c3a36847f80065df", "cast_id": 6, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 4}, {"name": "Vincent Laresca", "character": "Navarro", "id": 1983, "credit_id": "52fe4221c3a36847f80065e3", "cast_id": 7, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 5}, {"name": "Kimberly Scott", "character": "Joyce Trexler", "id": 1984, "credit_id": "52fe4221c3a36847f80065e7", "cast_id": 8, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 6}, {"name": "Conchata Ferrell", "character": "Betty McAllister", "id": 1909, "credit_id": "52fe4221c3a36847f80065eb", "cast_id": 9, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 7}, {"name": "Saul Williams", "character": "Ernie", "id": 1985, "credit_id": "52fe4221c3a36847f80065ef", "cast_id": 10, "profile_path": "/cV8sC60M089WHKvu7hQVxHhUfBl.jpg", "order": 8}, {"name": "Peter Gerety", "character": "Sal", "id": 1986, "credit_id": "52fe4221c3a36847f80065f3", "cast_id": 11, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 9}, {"name": "David Patrick Kelly", "character": "Howie", "id": 1737, "credit_id": "52fe4221c3a36847f80065f7", "cast_id": 12, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 10}, {"name": "Melanee Murray", "character": "Bess", "id": 1987, "credit_id": "52fe4221c3a36847f80065fb", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Tracey Vilar", "character": "Maria", "id": 1988, "credit_id": "52fe4221c3a36847f80065ff", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Celia Weston", "character": "Mrs. Archer", "id": 1989, "credit_id": "52fe4221c3a36847f8006603", "cast_id": 15, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 13}, {"name": "Brian Howe", "character": "Steve Becker", "id": 1990, "credit_id": "52fe4221c3a36847f8006607", "cast_id": 16, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 14}, {"name": "Tess McCarthy", "character": "Natalie Powell", "id": 1991, "credit_id": "52fe4221c3a36847f800660b", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Natasha Dorfhuber", "character": "Gabby Powell", "id": 1992, "credit_id": "52fe4221c3a36847f800660f", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f80065cb", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.8, "runtime": 120}, "168": {"poster_path": "/62nATuMKuaLhd5VHKumHOrJnCZa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 133000000, "overview": "Fugitives of the Federation for their daring rescue of Spock from the doomed Genesis Planet, Admiral Kirk (William Shatner) and his crew begin their journey home to face justice for their actions. But as they near Earth, they find it at the mercy of a mysterious alien presence whose signals are slowly destroying the planet. In a desperate attempt to answer the call of the probe, Kirk and his crew race back to the late twentieth century. However they soon find the world they once knew to be more alien than anything they've encountered in the far reaches of the galaxy!", "video": false, "id": 168, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek IV: The Voyage Home", "tagline": "The key to saving the future can only be found in the past.", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fi", "name": "suomi"}], "imdb_id": "tt0092007", "adult": false, "backdrop_path": "/2SmriSA5l4WE40KnZ8mA0GuqtEJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-11-25", "popularity": 1.01780590029031, "original_title": "Star Trek IV: The Voyage Home", "budget": 24000000, "cast": [{"name": "William Shatner", "character": "Admiral/Captain James T. Kirk", "id": 1748, "credit_id": "52fe4221c3a36847f80066a7", "cast_id": 7, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Captain Spock", "id": 1749, "credit_id": "52fe4221c3a36847f80066ab", "cast_id": 8, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4221c3a36847f80066af", "cast_id": 9, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4221c3a36847f80066b3", "cast_id": 10, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe4221c3a36847f80066b7", "cast_id": 11, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Walter Koenig", "character": "Cmdr. Pavel Chekov", "id": 1754, "credit_id": "52fe4221c3a36847f80066bb", "cast_id": 12, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 5}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe4221c3a36847f80066bf", "cast_id": 13, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 6}, {"name": "Jane Wyatt", "character": "Amanda", "id": 2021, "credit_id": "52fe4221c3a36847f80066c3", "cast_id": 14, "profile_path": "/eovluFbKVmsVjFnlHoYvzKjwXMw.jpg", "order": 7}, {"name": "Catherine Hicks", "character": "Dr. Gillian Taylor", "id": 2022, "credit_id": "52fe4221c3a36847f80066c7", "cast_id": 15, "profile_path": "/pAqwxZ5AgpgsExQC79fDVtFdvhe.jpg", "order": 8}, {"name": "Mark Lenard", "character": "Ambassador Sarek", "id": 1820, "credit_id": "52fe4221c3a36847f80066cb", "cast_id": 16, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 9}, {"name": "Robin Curtis", "character": "Lt. Saavik", "id": 1819, "credit_id": "52fe4221c3a36847f80066cf", "cast_id": 17, "profile_path": "/pHOmW0od8GD3PUC1Yd1jBDr2aD4.jpg", "order": 10}, {"name": "Robert Ellenstein", "character": "Federation Council President", "id": 2647, "credit_id": "546237880e0a2672a000271f", "cast_id": 29, "profile_path": "/hOyTZHJx2ZrbsQusSHsfEolORv0.jpg", "order": 11}, {"name": "John Schuck", "character": "Klingon Ambassador", "id": 24046, "credit_id": "546237950e0a2672b60025b5", "cast_id": 30, "profile_path": "/liBIO7P3HMO4Nil7ZsW7OFNChvb.jpg", "order": 12}, {"name": "Brock Peters", "character": "Admiral Cartwright", "id": 2112, "credit_id": "546237a30e0a2672a0002722", "cast_id": 31, "profile_path": "/iFSHbqBaOKiqsZFpUteqbCJQmR7.jpg", "order": 13}, {"name": "Michael Snyder", "character": "Starfleet Communications Officer", "id": 1219391, "credit_id": "546237ae0e0a2672b60025bd", "cast_id": 32, "profile_path": null, "order": 14}], "directors": [{"name": "Leonard Nimoy", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f8006685", "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "id": 1749}], "vote_average": 6.7, "runtime": 119}, "169": {"poster_path": "/4cAQgbIPislEeBJahLO5BsqAUZN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57120318, "overview": "Ten years after a band of mercenaries first battled a vicious alien, the invisible creature from another world has returned to Earth -- and this time, it's drawn to the gang-ruled and ravaged city of Los Angeles. When it starts murdering drug dealers, detective-lieutenant Mike Harrigan and his police force set out to capture the creature, ignoring warnings from a mysterious government agent to stay away.", "video": false, "id": 169, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predator 2", "tagline": "Silent. Invisible. Invincible. He's in town with a few days to kill.", "vote_count": 190, "homepage": "", "belongs_to_collection": {"backdrop_path": "/e8ycFoI8vGoZSOY7KmxFzZA1dkE.jpg", "poster_path": "/6Z7lASptoiRVxiCFvZaFgH9qp7u.jpg", "id": 399, "name": "Predator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100403", "adult": false, "backdrop_path": "/vlfYYFavD87DNnwuNBsOyf8xzOs.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1990-11-20", "popularity": 0.836934211210548, "original_title": "Predator 2", "budget": 35000000, "cast": [{"name": "Kevin Peter Hall", "character": "The Predator", "id": 1109, "credit_id": "52fe4222c3a36847f800679f", "cast_id": 14, "profile_path": "/lxlubrzo3np1mU0ML7G12zuy654.jpg", "order": 0}, {"name": "Danny Glover", "character": "Lieutenant Mike Harrigan", "id": 2047, "credit_id": "52fe4222c3a36847f80067a3", "cast_id": 15, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Gary Busey", "character": "Peter Keyes", "id": 2048, "credit_id": "52fe4222c3a36847f80067a7", "cast_id": 16, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Rub\u00e9n Blades", "character": "Danny Archuleta", "id": 2049, "credit_id": "52fe4222c3a36847f80067ab", "cast_id": 17, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 3}, {"name": "Mar\u00eda Conchita Alonso", "character": "Leona Cantrell", "id": 2051, "credit_id": "52fe4222c3a36847f80067af", "cast_id": 18, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 4}, {"name": "Bill Paxton", "character": "Jerry Lambert", "id": 2053, "credit_id": "52fe4222c3a36847f80067b3", "cast_id": 19, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 5}, {"name": "Adam Baldwin", "character": "Garber", "id": 2059, "credit_id": "52fe4222c3a36847f80067bb", "cast_id": 21, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 6}, {"name": "Robert Davi", "character": "Captain Phil Heinemann", "id": 2055, "credit_id": "52fe4222c3a36847f80067b7", "cast_id": 20, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 7}, {"name": "Kent McCord", "character": "Captain B. Pilgrim", "id": 2062, "credit_id": "52fe4222c3a36847f80067bf", "cast_id": 22, "profile_path": "/9ZrPhRZvwQEhrURXLfM4mRqbFXC.jpg", "order": 8}, {"name": "Morton Downey, Jr.", "character": "Tony Pope", "id": 2064, "credit_id": "52fe4222c3a36847f80067c3", "cast_id": 23, "profile_path": "/vvaBkpr0r6az3DtOSKojVKfiBBc.jpg", "order": 9}, {"name": "Calvin Lockhart", "character": "King Willie", "id": 2067, "credit_id": "52fe4222c3a36847f80067c7", "cast_id": 24, "profile_path": "/3yJrPwyFScLuBukMb5BMJ8lDk1m.jpg", "order": 10}, {"name": "Corey Rand", "character": "Ramon Vega", "id": 2069, "credit_id": "52fe4222c3a36847f80067cb", "cast_id": 26, "profile_path": "/7LVuh2T13rt0vEKPxqRQ5Wv3G0O.jpg", "order": 12}, {"name": "Elpidia Carrillo", "character": "Anna", "id": 1102, "credit_id": "52fe4222c3a36847f80067cf", "cast_id": 27, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 13}, {"name": "Lilyan Chauvin", "character": "Irene Edwards", "id": 2072, "credit_id": "52fe4222c3a36847f80067d3", "cast_id": 28, "profile_path": "/cL03vrPlSc4RwqydPnPvyCqZpAm.jpg", "order": 14}, {"name": "Michael Mark Edmondson", "character": "Gold Tooth", "id": 2074, "credit_id": "52fe4222c3a36847f80067d7", "cast_id": 29, "profile_path": "/bsxNiOjeHGdW9P7BgxgeRh5L9Q5.jpg", "order": 15}, {"name": "Henry Kingi", "character": "El Scorpio", "id": 24969, "credit_id": "52fe4222c3a36847f80067db", "cast_id": 30, "profile_path": "/7NfbNpe2PQZI5BcdvBxAfVfmroi.jpg", "order": 16}], "directors": [{"name": "Stephen Hopkins", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006753", "profile_path": "/zHwFIL63LbeSS83FMC8J6TAgDNL.jpg", "id": 2042}], "vote_average": 5.7, "runtime": 108}, "170": {"poster_path": "/xaYdxi1PBEAYvqknvAmMPK5Eff3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 82000000, "overview": "Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.", "video": false, "id": 170, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "28 Days Later...", "tagline": "His fear began when he woke up alone. His terror began when he realised he wasn't.", "vote_count": 513, "homepage": "http://kino.20thcenturyfox.de/filmarchiv/28dayslater/set.html", "belongs_to_collection": {"backdrop_path": "/oLT5tHDNzb5LfytO2g7q6dF0QkC.jpg", "poster_path": "/52KVqdsEJTYzDpUvOMvP0Bbfq5E.jpg", "id": 1565, "name": "28 Days Later Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289043", "adult": false, "backdrop_path": "/yUztTrOARxj1lgcPyrSCeGWigZO.jpg", "production_companies": [{"name": "DNA Films", "id": 284}, {"name": "British Film Council", "id": 10889}], "release_date": "2002-11-01", "popularity": 1.26412635832391, "original_title": "28 Days Later...", "budget": 5000000, "cast": [{"name": "Cillian Murphy", "character": "Jim", "id": 2037, "credit_id": "52fe4222c3a36847f800681f", "cast_id": 4, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 0}, {"name": "Naomie Harris", "character": "Selena", "id": 2038, "credit_id": "52fe4222c3a36847f8006823", "cast_id": 5, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 1}, {"name": "Brendan Gleeson", "character": "Frank", "id": 2039, "credit_id": "52fe4222c3a36847f8006827", "cast_id": 6, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 2}, {"name": "Christopher Eccleston", "character": "Major Henry West", "id": 2040, "credit_id": "52fe4222c3a36847f800682b", "cast_id": 7, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 3}, {"name": "Noah Huntley", "character": "Mark", "id": 2050, "credit_id": "52fe4222c3a36847f800682f", "cast_id": 8, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 4}, {"name": "Christopher Dunne", "character": "Jim's father", "id": 2052, "credit_id": "52fe4222c3a36847f8006833", "cast_id": 9, "profile_path": "/8ky6LE3YTH0I9wFNEEvYQhmJ9vu.jpg", "order": 5}, {"name": "Emma Hitching", "character": "Jim's mother", "id": 2054, "credit_id": "52fe4222c3a36847f8006837", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Alexander Delamere", "character": "Mr. Bridges", "id": 2056, "credit_id": "52fe4222c3a36847f800683b", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Kim McGarrity", "character": "Mr. Bridges\u2019 Daughter", "id": 2057, "credit_id": "52fe4222c3a36847f800683f", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Megan Burns", "character": "Hannah", "id": 2058, "credit_id": "52fe4222c3a36847f8006843", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Alex Palmer", "character": "Aktivist", "id": 2060, "credit_id": "52fe4222c3a36847f8006847", "cast_id": 14, "profile_path": "/leOXZpYLgCFgQoBb6vuHYoPbA5J.jpg", "order": 10}, {"name": "Bindu De Stoppani", "character": "Aktivist", "id": 2061, "credit_id": "52fe4222c3a36847f800684b", "cast_id": 15, "profile_path": "/MYCVwqxWTRhFomPvlniNckBCiu.jpg", "order": 11}, {"name": "Jukka Hiltunen", "character": "Aktivist", "id": 2063, "credit_id": "52fe4222c3a36847f800684f", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "David Schneider", "character": "Scientist", "id": 2065, "credit_id": "52fe4222c3a36847f8006853", "cast_id": 17, "profile_path": "/dwnUaApf65LPIKUndH4VkznA5Lv.jpg", "order": 13}, {"name": "Toby Sedgwick", "character": "Infected Priest", "id": 2066, "credit_id": "52fe4222c3a36847f8006857", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Stuart McQuarrie", "character": "Seargent Farrell", "id": 2258, "credit_id": "52fe4222c3a36847f8006873", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006815", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.8, "runtime": 113}, "8363": {"poster_path": "/w5LPpLZvlNblrW90HAT6lJmQoGS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 169860655, "overview": "High school best buddies are facing separation anxiety as they prepare to go off to college. While attempting to score alcohol for a party with help from their fake ID-toting friend, \"McLovin\", the guys' evening takes a turn into chaotic territory.", "video": false, "id": 8363, "genres": [{"id": 35, "name": "Comedy"}], "title": "Superbad", "tagline": "Come and Get Some!", "vote_count": 514, "homepage": "http://www.areyousuperbad.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0829482", "adult": false, "backdrop_path": "/kQzcHOxcjZ8hG0bF0tMNPghAFe0.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2007-08-17", "popularity": 1.00328809664001, "original_title": "Superbad", "budget": 20000000, "cast": [{"name": "Jonah Hill", "character": "Seth", "id": 21007, "credit_id": "52fe44a2c3a36847f80a1667", "cast_id": 1, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Michael Cera", "character": "Evan", "id": 39995, "credit_id": "52fe44a2c3a36847f80a166b", "cast_id": 2, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 1}, {"name": "Christopher Mintz-Plasse", "character": "Fogell", "id": 54691, "credit_id": "52fe44a2c3a36847f80a166f", "cast_id": 3, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 2}, {"name": "Bill Hader", "character": "Officer Slater", "id": 19278, "credit_id": "52fe44a2c3a36847f80a1673", "cast_id": 4, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 3}, {"name": "Seth Rogen", "character": "Officer Michaels", "id": 19274, "credit_id": "52fe44a2c3a36847f80a1677", "cast_id": 5, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 4}, {"name": "Martha MacIsaac", "character": "Becca", "id": 54692, "credit_id": "52fe44a2c3a36847f80a167b", "cast_id": 6, "profile_path": "/iohyyedpbE1sZcJjYU00f8DnLLJ.jpg", "order": 5}, {"name": "Emma Stone", "character": "Jules", "id": 54693, "credit_id": "52fe44a2c3a36847f80a167f", "cast_id": 7, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 6}, {"name": "Aviva", "character": "Nicola", "id": 53208, "credit_id": "52fe44a2c3a36847f80a1683", "cast_id": 8, "profile_path": "/kpoOjIzGaEYWwZTgAwqLCMthl6C.jpg", "order": 7}, {"name": "Joe Lo Truglio", "character": "Francis", "id": 21131, "credit_id": "52fe44a2c3a36847f80a1687", "cast_id": 9, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Kevin Corrigan", "character": "Mark", "id": 18472, "credit_id": "52fe44a2c3a36847f80a168b", "cast_id": 10, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 9}, {"name": "Clement Blake", "character": "Homeless Guy (Obdachloser)", "id": 54694, "credit_id": "52fe44a2c3a36847f80a168f", "cast_id": 11, "profile_path": "/tO2XVokGDHJqSxoIVKjsV2JGWvz.jpg", "order": 10}, {"name": "Erica Vittina Phillips", "character": "Mindy", "id": 54695, "credit_id": "52fe44a2c3a36847f80a1693", "cast_id": 12, "profile_path": "/h8HdJfM2Ajutj5QokjQIEA7mVG4.jpg", "order": 11}, {"name": "Joe Nunez", "character": "Liquor Store Clerk (Mitarbeiter Getr\u00e4nkeladen)", "id": 54696, "credit_id": "52fe44a2c3a36847f80a1697", "cast_id": 13, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 12}, {"name": "Dave Franco", "character": "Greg (Soccer Player / Fu\u00dfballspieler)", "id": 54697, "credit_id": "52fe44a2c3a36847f80a169b", "cast_id": 14, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 13}, {"name": "Marcella Lentz-Pope", "character": "Gaby", "id": 54698, "credit_id": "52fe44a2c3a36847f80a169f", "cast_id": 15, "profile_path": "/eMxlMzKb1qRLr1fnjORhwAJCNL4.jpg", "order": 14}, {"name": "Scott Gerbacia", "character": "Jesse", "id": 54699, "credit_id": "52fe44a2c3a36847f80a16a3", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Laura Seay", "character": "Shirley", "id": 54700, "credit_id": "52fe44a2c3a36847f80a16a7", "cast_id": 17, "profile_path": "/o4l4jdZk3C1OelS1HgkUnJbfdRJ.jpg", "order": 16}, {"name": "Roger Iwami", "character": "Miroki", "id": 54701, "credit_id": "52fe44a2c3a36847f80a16ab", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Clint Mabry", "character": "Prosthetic Leg Kid (Kind mit Beinprothese)", "id": 54702, "credit_id": "52fe44a2c3a36847f80a16af", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Stacy Edwards", "character": "Evan's Mom (Evans Mutter)", "id": 43372, "credit_id": "52fe44a2c3a36847f80a16b3", "cast_id": 20, "profile_path": "/3FBtBFrmjUx0W0bbKYqW2gpgIkI.jpg", "order": 19}, {"name": "Mark Rogen", "character": "Father with Bat", "id": 54703, "credit_id": "52fe44a2c3a36847f80a16b7", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Charlie Hartsock", "character": "Good Shopper Cashier", "id": 54704, "credit_id": "52fe44a2c3a36847f80a16bb", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Donna Hardy", "character": "Old Lady", "id": 54705, "credit_id": "52fe44a2c3a36847f80a16bf", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Charley Rossman", "character": "Good Shopper Security", "id": 54706, "credit_id": "52fe44a2c3a36847f80a16c3", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Carla Gallo", "character": "Period Blood Girl", "id": 54708, "credit_id": "52fe44a2c3a36847f80a16c7", "cast_id": 26, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 24}, {"name": "Ben Best", "character": "Quince Danbury", "id": 54709, "credit_id": "52fe44a2c3a36847f80a16cb", "cast_id": 27, "profile_path": "/39Rn6j5zFapIadjoA5l5AbpE0pu.jpg", "order": 25}, {"name": "Jody Hill", "character": "Tut Long John Silver", "id": 54710, "credit_id": "52fe44a2c3a36847f80a16cf", "cast_id": 28, "profile_path": "/vVQbPkXeRBsZxA45tNa7sXyNGct.jpg", "order": 26}, {"name": "Kevin Breznahan", "character": "Patrick Manchester", "id": 54711, "credit_id": "52fe44a2c3a36847f80a16d3", "cast_id": 29, "profile_path": "/lF0rs9N5qBsXN68BNksZYEiVnAQ.jpg", "order": 27}, {"name": "David Krumholtz", "character": "Benji Austin", "id": 38582, "credit_id": "52fe44a2c3a36847f80a16d7", "cast_id": 30, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 28}, {"name": "Mousa Kraish", "character": "Billy Baybridge", "id": 54712, "credit_id": "52fe44a2c3a36847f80a16db", "cast_id": 31, "profile_path": "/bATns500G3T6he2yBeIVQSFRpiU.jpg", "order": 29}, {"name": "Nicholas Jasenovec", "character": "Coffee Fairmount", "id": 54713, "credit_id": "52fe44a2c3a36847f80a16df", "cast_id": 32, "profile_path": null, "order": 30}, {"name": "Martin Starr", "character": "James Masselin", "id": 41089, "credit_id": "52fe44a2c3a36847f80a16e3", "cast_id": 33, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 31}, {"name": "Keith Loneker", "character": "Wild Bill Cherry", "id": 54714, "credit_id": "52fe44a2c3a36847f80a16e7", "cast_id": 34, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 32}, {"name": "Matthew McKane", "character": "Kane Cloverdale", "id": 54715, "credit_id": "52fe44a2c3a36847f80a16eb", "cast_id": 35, "profile_path": null, "order": 33}, {"name": "Lauren Miller", "character": "Scarlett Brighton", "id": 54716, "credit_id": "52fe44a2c3a36847f80a16ef", "cast_id": 36, "profile_path": "/baHXpn6DK8ai7Pg7lsywD642uT2.jpg", "order": 34}, {"name": "Peter Salett", "character": "Tiger Greendragon", "id": 53607, "credit_id": "52fe44a2c3a36847f80a16f3", "cast_id": 37, "profile_path": null, "order": 35}, {"name": "Rakefet Abergel", "character": "Muffin Selby", "id": 54717, "credit_id": "52fe44a2c3a36847f80a16f7", "cast_id": 38, "profile_path": "/yg3i1dWluH66d1pfMgfaEpJisiC.jpg", "order": 36}, {"name": "Brooke Dillman", "character": "Mrs. Hayworth", "id": 54718, "credit_id": "52fe44a2c3a36847f80a16fb", "cast_id": 39, "profile_path": "/d75GJILbWQv8c96At9lflDWwGxY.jpg", "order": 37}, {"name": "Michael Naughton", "character": "Gym Teacher", "id": 54719, "credit_id": "52fe44a2c3a36847f80a16ff", "cast_id": 40, "profile_path": null, "order": 38}, {"name": "Steve Bannos", "character": "Math Teacher", "id": 54720, "credit_id": "52fe44a2c3a36847f80a1703", "cast_id": 41, "profile_path": "/xiapg97am8zqjcB60lRGBIQeFqA.jpg", "order": 39}, {"name": "Casey Margolis", "character": "Young Seth", "id": 54721, "credit_id": "52fe44a2c3a36847f80a1707", "cast_id": 42, "profile_path": null, "order": 40}, {"name": "Laura Marano", "character": "Young Becca", "id": 54722, "credit_id": "52fe44a2c3a36847f80a170b", "cast_id": 43, "profile_path": "/bP5xvXStD7JFScGZx959FLPmD9S.jpg", "order": 41}, {"name": "Matthew Bass", "character": "Vagtastic Voyager", "id": 54723, "credit_id": "52fe44a3c3a36847f80a170f", "cast_id": 44, "profile_path": null, "order": 42}, {"name": "Aurora Snow", "character": "Vagtastic Voyage Girl #1", "id": 54724, "credit_id": "52fe44a3c3a36847f80a1713", "cast_id": 45, "profile_path": "/ygB33djUOKlBIW235yD3qgKfoNM.jpg", "order": 43}, {"name": "Jenna Haze", "character": "Vagtastic Voyage Girl #2", "id": 54725, "credit_id": "52fe44a3c3a36847f80a1717", "cast_id": 46, "profile_path": "/zhCjA1ldivu2yO7C6BwUowBd6bC.jpg", "order": 44}, {"name": "Ted Haigh", "character": "Bartender", "id": 54726, "credit_id": "52fe44a3c3a36847f80a171b", "cast_id": 47, "profile_path": null, "order": 45}, {"name": "Michael Fennessey", "character": "Bus Driver", "id": 54727, "credit_id": "52fe44a3c3a36847f80a171f", "cast_id": 48, "profile_path": null, "order": 46}, {"name": "Brian Huskey", "character": "Elementary Principal", "id": 54728, "credit_id": "52fe44a3c3a36847f80a1723", "cast_id": 49, "profile_path": "/krewoXz2qgDdIAB2PTGRuilX0K5.jpg", "order": 47}, {"name": "Clark Duke", "character": "Party Teenager #1", "id": 54729, "credit_id": "52fe44a3c3a36847f80a1727", "cast_id": 50, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 48}, {"name": "Stephen Borrello IV", "character": "Party Teenager #2", "id": 54730, "credit_id": "52fe44a3c3a36847f80a172b", "cast_id": 51, "profile_path": null, "order": 49}, {"name": "Naathan Phan", "character": "Party Teenager #3", "id": 54731, "credit_id": "52fe44a3c3a36847f80a172f", "cast_id": 52, "profile_path": null, "order": 50}, {"name": "Pamella D'Pella", "character": "Teacher", "id": 54732, "credit_id": "52fe44a3c3a36847f80a1733", "cast_id": 53, "profile_path": null, "order": 51}], "directors": [{"name": "Greg Mottola", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a1739", "profile_path": "/dC1BKEyTzgTqqy8c5MmSZrRLhNR.jpg", "id": 54733}], "vote_average": 6.8, "runtime": 113}, "172": {"poster_path": "/pV68KIKhlMneCnnopBzDTYgqonC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70200000, "overview": "Capt. Kirk and his crew must deal with Mr. Spock's half brother who kidnaps three diplomats and hijacks the Enterprise in his obsessive search for God.", "video": false, "id": 172, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek V: The Final Frontier", "tagline": "Adventure and imagination will meet at the final frontier.", "vote_count": 112, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098382", "adult": false, "backdrop_path": "/nNH43KDwtiXJIie6oviBIEwE8xd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1989-06-09", "popularity": 0.722928163062144, "original_title": "Star Trek V: The Final Frontier", "budget": 30000000, "cast": [{"name": "William Shatner", "character": "Captain James T. Kirk", "id": 1748, "credit_id": "52fe4222c3a36847f8006975", "cast_id": 4, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Captain Spock", "id": 1749, "credit_id": "52fe4222c3a36847f8006979", "cast_id": 5, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4222c3a36847f800697d", "cast_id": 6, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4222c3a36847f8006981", "cast_id": 7, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Cmdr. Hikaru Sulu", "id": 1752, "credit_id": "52fe4222c3a36847f8006985", "cast_id": 8, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Cmdr. Uhura", "id": 1753, "credit_id": "52fe4222c3a36847f8006989", "cast_id": 9, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Cmdr. Pavel Chekov", "id": 1754, "credit_id": "52fe4222c3a36847f800698d", "cast_id": 10, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "David Warner", "character": "St. John Talbot", "id": 2076, "credit_id": "52fe4222c3a36847f8006991", "cast_id": 11, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 7}, {"name": "Laurence Luckinbill", "character": "Sybok", "id": 2077, "credit_id": "52fe4222c3a36847f8006995", "cast_id": 12, "profile_path": "/34t57JO6Tidp3AKgzfH4rXxbYI4.jpg", "order": 8}, {"name": "Charles Cooper", "character": "Gen. Korrd", "id": 2078, "credit_id": "52fe4222c3a36847f8006999", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Cynthia Gouw", "character": "Caithlin Dar", "id": 2079, "credit_id": "52fe4222c3a36847f800699d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Todd Bryant", "character": "Capt. Klaa", "id": 2080, "credit_id": "52fe4222c3a36847f80069a1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "George Murdock", "character": "God", "id": 2081, "credit_id": "52fe4222c3a36847f80069a5", "cast_id": 16, "profile_path": "/6FsCrzj86JjQJsEMYWnDBdPa0kw.jpg", "order": 12}, {"name": "Jonathan Simpson", "character": "Young Sarek", "id": 1444735, "credit_id": "5510cdd69251415c32000756", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "William Shatner", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006965", "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "id": 1748}], "vote_average": 5.4, "runtime": 107}, "174": {"poster_path": "/5PvIZAOFDe63M1oByFEFDoQobkc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96900000, "overview": "The crews of the Enterprise and the Excelsior must stop a plot to prevent a peace treaty between the Klingon Empire and the Federation", "video": false, "id": 174, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek VI: The Undiscovered Country", "tagline": "The battle for peace has begun.", "vote_count": 128, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9BQj9hq0aK6yM9Tm2NJ28jg572y.jpg", "poster_path": "/zcB8KxHA4EapOoZZPAvwgmE1iGK.jpg", "id": 151, "name": "Star Trek: The Original Series Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102975", "adult": false, "backdrop_path": "/qzrOCLviAseY5WOmsgkNVIAHQea.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1991-12-05", "popularity": 0.423690007434451, "original_title": "Star Trek VI: The Undiscovered Country", "budget": 27000000, "cast": [{"name": "William Shatner", "character": "James Tiberius Kirk", "id": 1748, "credit_id": "52fe4222c3a36847f8006acb", "cast_id": 6, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 0}, {"name": "Leonard Nimoy", "character": "Spock", "id": 1749, "credit_id": "52fe4222c3a36847f8006acf", "cast_id": 7, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 1}, {"name": "DeForest Kelley", "character": "Dr. Leonard McCoy", "id": 1750, "credit_id": "52fe4222c3a36847f8006ad3", "cast_id": 8, "profile_path": "/fUL1BY8XjLsQihueDD1UUAm0Qy6.jpg", "order": 2}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4222c3a36847f8006ad7", "cast_id": 9, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 3}, {"name": "George Takei", "character": "Hikaru Sulu", "id": 1752, "credit_id": "52fe4222c3a36847f8006adb", "cast_id": 10, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 4}, {"name": "Nichelle Nichols", "character": "Uhura", "id": 1753, "credit_id": "52fe4222c3a36847f8006adf", "cast_id": 11, "profile_path": "/1p5EIwiyFBxjs5e8a6AzPRzy1JL.jpg", "order": 5}, {"name": "Walter Koenig", "character": "Pavel Chekov", "id": 1754, "credit_id": "52fe4222c3a36847f8006ae3", "cast_id": 12, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 6}, {"name": "Christopher Plummer", "character": "General Chang", "id": 290, "credit_id": "52fe4222c3a36847f8006ae7", "cast_id": 13, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 7}, {"name": "Kim Cattrall", "character": "Lieutenant Valeris", "id": 2109, "credit_id": "52fe4222c3a36847f8006aeb", "cast_id": 14, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 8}, {"name": "David Warner", "character": "Chancellor Gorkon", "id": 2076, "credit_id": "52fe4222c3a36847f8006aef", "cast_id": 15, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 9}, {"name": "Rosanna DeSoto", "character": "Azetbur", "id": 2111, "credit_id": "52fe4222c3a36847f8006af3", "cast_id": 16, "profile_path": "/ppAz1PLGnuxTgXYDVWblLgXKkqp.jpg", "order": 10}, {"name": "Brock Peters", "character": "Admiral Cartwright", "id": 2112, "credit_id": "52fe4222c3a36847f8006af7", "cast_id": 17, "profile_path": "/iFSHbqBaOKiqsZFpUteqbCJQmR7.jpg", "order": 11}, {"name": "Kurtwood Smith", "character": "Federation President", "id": 2115, "credit_id": "52fe4222c3a36847f8006afb", "cast_id": 18, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 12}, {"name": "Iman", "character": "Martia", "id": 2124, "credit_id": "52fe4222c3a36847f8006b35", "cast_id": 28, "profile_path": "/4HAfEFjc7XkJSGeL7nKiQzntHuw.jpg", "order": 13}, {"name": "Mark Lenard", "character": "Sarek", "id": 1820, "credit_id": "52fe4222c3a36847f8006b39", "cast_id": 29, "profile_path": "/sROqIxtLAUlK0BhbmNwRfCyPXrY.jpg", "order": 14}, {"name": "Grace Lee Whitney", "character": "Excelsior Communications Officer", "id": 1759, "credit_id": "52fe4222c3a36847f8006b3d", "cast_id": 30, "profile_path": "/h1uisJQaVHhNCYqvxgx3VevGNtA.jpg", "order": 15}, {"name": "Leon Russom", "character": "Chief in Command", "id": 169920, "credit_id": "52fe4222c3a36847f8006b41", "cast_id": 31, "profile_path": "/kITkYMh1VZgHSAMlMxsZ6jaUF7C.jpg", "order": 16}, {"name": "John Schuck", "character": "Klingon Ambassador", "id": 24046, "credit_id": "52fe4222c3a36847f8006b45", "cast_id": 32, "profile_path": "/liBIO7P3HMO4Nil7ZsW7OFNChvb.jpg", "order": 17}, {"name": "Michael Dor", "character": "Klingon Defense Attorney", "id": 1054307, "credit_id": "52fe4222c3a36847f8006b49", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Paul Rossilli", "character": "Kerla", "id": 160414, "credit_id": "52fe4222c3a36847f8006b4d", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Robert Easton", "character": "Klingon Judge", "id": 32494, "credit_id": "52fe4222c3a36847f8006b51", "cast_id": 35, "profile_path": "/1FtmmVRUFFepaE5ovwfwcSId8Ka.jpg", "order": 20}, {"name": "Michael Dorn", "character": "Klingon Defense Attorney", "id": 2391, "credit_id": "52fe4222c3a36847f8006b55", "cast_id": 36, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 21}], "directors": [{"name": "Nicholas Meyer", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006aaf", "profile_path": "/iDQ5NP10dTa7e0WyY16cELdAid4.jpg", "id": 1788}], "vote_average": 6.6, "runtime": 113}, "175": {"poster_path": "/w4TWqa7SiXP0Hm4rkRnCfXwIeRK.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two men answer the call of the ocean in this romantic fantasy-adventure. Jacques (Jean-Marc Barr) and Enzo (Jean Reno) are a pair of friends who have been close since childhood, and who share a passion for the dangerous sport of free diving. Professional diver Jacques opted to follow in the footsteps of his father, who died at sea when Jacques was a boy; to the bewilderment of scientists, Jacques harbors a remarkable ability to adjust his heart rate and breathing pattern in the water, so that his vital signs more closely resemble that of dolphins than men (he even considers a school of dolphins as his extended family). As Enzo persuades a reluctant Jacques to compete against him in a free diving contest -- determining who can dive deeper and longer without scuba gear -- Jacques meets Johana (Rosanna Arquette), a beautiful insurance investigator from America, and he finds that he must choose between his love for her and his love of the sea.", "video": false, "id": 175, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Big Blue", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095250", "adult": false, "backdrop_path": "/eSZUjmpNSnQZ2Wp1IRdlbUpSAuz.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1988-05-11", "popularity": 0.60814737800591, "original_title": "Le Grand Bleu", "budget": 0, "cast": [{"name": "Jean-Marc Barr", "character": "Jacques Mayol", "id": 1642, "credit_id": "52fe4222c3a36847f8006bbd", "cast_id": 8, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 0}, {"name": "Jean Reno", "character": "Enzo Molinari", "id": 1003, "credit_id": "52fe4222c3a36847f8006bc1", "cast_id": 9, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Rosanna Arquette", "character": "Johana Baker", "id": 2165, "credit_id": "52fe4222c3a36847f8006bc5", "cast_id": 10, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 2}, {"name": "Paul Shenar", "character": "Dr. Laurence", "id": 1165, "credit_id": "52fe4222c3a36847f8006bc9", "cast_id": 11, "profile_path": "/pKKAqHEVKXLFVik1zWT59vaXRbk.jpg", "order": 3}, {"name": "Sergio Castellitto", "character": "Novelli", "id": 2166, "credit_id": "52fe4222c3a36847f8006bcd", "cast_id": 12, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 4}, {"name": "Jean Bouise", "character": "Uncle Louis", "id": 2168, "credit_id": "52fe4222c3a36847f8006bd1", "cast_id": 13, "profile_path": "/rBFl7KVzK2tax2CUbLtJBFFcBzm.jpg", "order": 5}, {"name": "Marc Duret", "character": "Roberto", "id": 2170, "credit_id": "52fe4222c3a36847f8006bd5", "cast_id": 14, "profile_path": "/yZu9GrdnBYT0nEwPNPKvbXN9DfE.jpg", "order": 6}, {"name": "Griffin Dunne", "character": "Duffy", "id": 2171, "credit_id": "52fe4222c3a36847f8006bd9", "cast_id": 15, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 7}, {"name": "Andr\u00e9as Voutsinas", "character": "Priest", "id": 2172, "credit_id": "52fe4222c3a36847f8006bdd", "cast_id": 16, "profile_path": "/ydBwnErUYKKLDdQGRWbGkb6bWdo.jpg", "order": 8}, {"name": "Valentina Vargas", "character": "Bonita", "id": 2173, "credit_id": "52fe4222c3a36847f8006be1", "cast_id": 17, "profile_path": "/rG1QVgI2giG46XiYL0coozKzJ2H.jpg", "order": 9}, {"name": "Kimberly Beck", "character": "Sally", "id": 2174, "credit_id": "52fe4222c3a36847f8006be5", "cast_id": 18, "profile_path": "/wt7KIBun88QLlxlXnPj7Tp9lwkB.jpg", "order": 10}, {"name": "Bruce Guerre-Berthelot", "character": "Young Jacques", "id": 2175, "credit_id": "52fe4222c3a36847f8006be9", "cast_id": 19, "profile_path": "/tHED9FH3QOFmTODqA9RKJVLzviH.jpg", "order": 11}, {"name": "Gregory Forstner", "character": "Young Enzo", "id": 2180, "credit_id": "52fe4222c3a36847f8006bed", "cast_id": 20, "profile_path": "/kgQ03l0Qz1fjrRl9VV9VyibmqCM.jpg", "order": 12}, {"name": "Claude Besson", "character": "Jacques Father", "id": 2181, "credit_id": "52fe4223c3a36847f8006bf1", "cast_id": 21, "profile_path": "/1Oaqgi9aM72jSsYi2UNEHQ6xvST.jpg", "order": 13}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4222c3a36847f8006b95", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 7.8, "runtime": 168}, "176": {"poster_path": "/dHYvIgsax8ZFgkz1OslE4V6Pnf5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102000000, "overview": "Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying...", "video": false, "id": 176, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Saw", "tagline": "Live or die. Make your choice.", "vote_count": 520, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387564", "adult": false, "backdrop_path": "/fLL6WfUXvdQee1fD4xuzNnWfVBk.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}, {"name": "Evolution Entertainment", "id": 23019}], "release_date": "2004-01-19", "popularity": 1.57181116421567, "original_title": "Saw", "budget": 1200000, "cast": [{"name": "Leigh Whannell", "character": "Adam", "id": 2128, "credit_id": "52fe4223c3a36847f8006c61", "cast_id": 3, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 0}, {"name": "Cary Elwes", "character": "Dr. Lawrence Gordon", "id": 2130, "credit_id": "52fe4223c3a36847f8006c65", "cast_id": 4, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 1}, {"name": "Danny Glover", "character": "Detective David Tapp", "id": 2047, "credit_id": "52fe4223c3a36847f8006c69", "cast_id": 5, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Ken Leung", "character": "Detective Steven Sing", "id": 2131, "credit_id": "52fe4223c3a36847f8006c6d", "cast_id": 6, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 3}, {"name": "Dina Meyer", "character": "Kerry", "id": 2133, "credit_id": "52fe4223c3a36847f8006c71", "cast_id": 7, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 4}, {"name": "Mike Butters", "character": "Paul", "id": 2134, "credit_id": "52fe4223c3a36847f8006c75", "cast_id": 8, "profile_path": "/vinnp0V36UVVoMIEKaV6T1pzzhe.jpg", "order": 5}, {"name": "Paul Gutrecht", "character": "Mark", "id": 2135, "credit_id": "52fe4223c3a36847f8006c79", "cast_id": 9, "profile_path": "/jAv8rTrhNtbxKK4t0QlpVP9gtBW.jpg", "order": 6}, {"name": "Michael Emerson", "character": "Zep Hindle", "id": 2136, "credit_id": "52fe4223c3a36847f8006c7d", "cast_id": 10, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 7}, {"name": "Benito Martinez", "character": "Brett", "id": 2137, "credit_id": "52fe4223c3a36847f8006c81", "cast_id": 11, "profile_path": "/6cMiGYgjFFYY8sWITXiE0SrEnt8.jpg", "order": 8}, {"name": "Shawnee Smith", "character": "Amanda", "id": 2138, "credit_id": "52fe4223c3a36847f8006c85", "cast_id": 12, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 9}, {"name": "Makenzie Vega", "character": "Diana Gordon", "id": 2139, "credit_id": "52fe4223c3a36847f8006c89", "cast_id": 13, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 10}, {"name": "Monica Potter", "character": "Alison Gordon", "id": 2140, "credit_id": "52fe4223c3a36847f8006c8d", "cast_id": 14, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 11}, {"name": "Ned Bellamy", "character": "Jeff", "id": 2141, "credit_id": "52fe4223c3a36847f8006c91", "cast_id": 15, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 12}, {"name": "Alexandra Bokyun Chun", "character": "Carla", "id": 2142, "credit_id": "52fe4223c3a36847f8006c95", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Avner Garbi", "character": "Father", "id": 2143, "credit_id": "52fe4223c3a36847f8006c99", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Tobin Bell", "character": "John", "id": 2144, "credit_id": "52fe4223c3a36847f8006c9d", "cast_id": 18, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 15}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006c57", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 7.0, "runtime": 103}, "177": {"poster_path": "/x93W5WrOOr3PCia1cANnWmAtUwQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41895491, "overview": "Two troubled men face their terrible destinies and events of their past as they join together on a mission to find the Holy Grail and thus to save themselves.", "video": false, "id": 177, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Fisher King", "tagline": "A Modern Day Tale About The Search For Love, Sanity, Ethel Merman And The Holy Grail.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101889", "adult": false, "backdrop_path": "/tWw7e5Sn7M0aKfhDGdf2qK1GdMc.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1991-09-20", "popularity": 0.490886097062057, "original_title": "The Fisher King", "budget": 24000000, "cast": [{"name": "Jeff Bridges", "character": "Jack Lucas", "id": 1229, "credit_id": "52fe4223c3a36847f8006d0f", "cast_id": 1, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Robin Williams", "character": "Henry Sagan 'Parry'", "id": 2157, "credit_id": "52fe4223c3a36847f8006d19", "cast_id": 3, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Mercedes Ruehl", "character": "Anne Napolitano", "id": 2167, "credit_id": "52fe4223c3a36847f8006d2f", "cast_id": 7, "profile_path": "/nPsSRaDQxiviOVY8ouqTBLGaui6.jpg", "order": 2}, {"name": "Amanda Plummer", "character": "Lydia", "id": 99, "credit_id": "52fe4223c3a36847f8006d33", "cast_id": 8, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 3}, {"name": "Michael Jeter", "character": "Homeless Cabaret Singer", "id": 2169, "credit_id": "52fe4223c3a36847f8006d37", "cast_id": 9, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 4}, {"name": "Lara Harris", "character": "Sondra", "id": 11073, "credit_id": "52fe4223c3a36847f8006d4d", "cast_id": 13, "profile_path": "/8LDep1yHwovQjutfBiet0D8Azto.jpg", "order": 5}, {"name": "Kathy Najimy", "character": "Crazy video customer", "id": 11074, "credit_id": "52fe4223c3a36847f8006d51", "cast_id": 14, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 6}, {"name": "Paul Lombardi", "character": "Radio Engineer", "id": 11075, "credit_id": "52fe4223c3a36847f8006d55", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "David Hyde Pierce", "character": "Lou Rosen", "id": 11076, "credit_id": "52fe4223c3a36847f8006d59", "cast_id": 16, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 8}, {"name": "John de Lancie", "character": "TV Executive", "id": 11077, "credit_id": "52fe4223c3a36847f8006d5d", "cast_id": 17, "profile_path": "/bb3j02gYvgs5ApK2l2qKCweYW5z.jpg", "order": 9}, {"name": "Lisa Blades", "character": "Parry's Wife", "id": 11078, "credit_id": "52fe4223c3a36847f8006d61", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Adam Bryant", "character": "Radio Engineer", "id": 981542, "credit_id": "52fe4223c3a36847f8006d77", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Ted Ross", "character": "Limo Bum", "id": 57357, "credit_id": "52fe4223c3a36847f8006d7b", "cast_id": 23, "profile_path": "/d9zdWKzAwNalU0BLwOM0aM2xlww.jpg", "order": 12}, {"name": "Warren Olney", "character": "TV Anchorman", "id": 1075039, "credit_id": "52fe4223c3a36847f8006d7f", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Frazer Smith", "character": "News Reporter", "id": 170237, "credit_id": "52fe4223c3a36847f8006d83", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Harry Shearer", "character": "Sitcom Actor Ben Starr", "id": 6008, "credit_id": "52fe4223c3a36847f8006d87", "cast_id": 26, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 15}, {"name": "Melinda Culea", "character": "Sitcom Wife", "id": 105704, "credit_id": "52fe4223c3a36847f8006d8b", "cast_id": 27, "profile_path": "/7rfhpMYQBDA8YGMSaUTp0oQYLiF.jpg", "order": 16}, {"name": "James Remini", "character": "Bum at Hotel", "id": 1075040, "credit_id": "52fe4223c3a36847f8006d8f", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Mark Bowden", "character": "Doorman", "id": 12782, "credit_id": "52fe4223c3a36847f8006d93", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "John Ottavino", "character": "Father at Hotel", "id": 171301, "credit_id": "52fe4223c3a36847f8006d97", "cast_id": 30, "profile_path": null, "order": 19}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006d15", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.1, "runtime": 137}, "62835": {"poster_path": "/tJIWuZC4ZVUJdVHXJfefUDzS2BX.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 64856065, "overview": "Zoe Saldana plays a young woman who, after witnessing her parents\u2019 murder as a child in Bogota, grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.", "video": false, "id": 62835, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Colombiana", "tagline": "Revenge is beautiful.", "vote_count": 293, "homepage": "http://www.colombiana-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1657507", "adult": false, "backdrop_path": "/uo5krr5i4q33TlHhTHI3PmpVjJu.jpg", "production_companies": [{"name": "A.J.O.Z. Films", "id": 11473}, {"name": "EuropaCorp", "id": 6896}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Grive Productions", "id": 6877}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2011-08-26", "popularity": 1.23969225371948, "original_title": "Colombiana", "budget": 40000000, "cast": [{"name": "Zoe Saldana", "character": "Cataleya Restrepo", "id": 8691, "credit_id": "52fe468fc3a368484e097593", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 0}, {"name": "Cliff Curtis", "character": "Emilio", "id": 7248, "credit_id": "52fe468fc3a368484e097597", "cast_id": 4, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 1}, {"name": "Callum Blue", "character": "Richard", "id": 68287, "credit_id": "52fe468fc3a368484e09759b", "cast_id": 5, "profile_path": "/jEeLPZg7GlNhdkAmtPQXLGqOMZF.jpg", "order": 2}, {"name": "Michael Vartan", "character": "Danny Delanay", "id": 15424, "credit_id": "52fe468fc3a368484e09759f", "cast_id": 6, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 3}, {"name": "Lennie James", "character": "Special Agent Ross", "id": 1120, "credit_id": "52fe468fc3a368484e0975a3", "cast_id": 7, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 4}, {"name": "Amandla Stenberg", "character": "Cataleya Restrepo (Age10)", "id": 561869, "credit_id": "52fe468fc3a368484e0975ad", "cast_id": 9, "profile_path": "/zbsIVoRHTw3VmQ18O7xUaSfIQBE.jpg", "order": 5}, {"name": "Graham McTavish", "character": "Head Marshall Warren", "id": 95047, "credit_id": "52fe468fc3a368484e0975b1", "cast_id": 11, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 6}, {"name": "Jesse Borrego", "character": "Fabio", "id": 58647, "credit_id": "52fe468fc3a368484e0975b5", "cast_id": 12, "profile_path": "/cJkz421gRMJPWWMd7nLxgSuUZfY.jpg", "order": 7}, {"name": "Beto Benites", "character": "Don Luis", "id": 1023670, "credit_id": "52fe468fc3a368484e0975d1", "cast_id": 19, "profile_path": "/gWQq2vej5Q1EXjrTGNR8oggr2rg.jpg", "order": 8}, {"name": "Cynthia Addai-Robinson", "character": "Alicia", "id": 182272, "credit_id": "52fe468fc3a368484e0975d5", "cast_id": 21, "profile_path": "/sVHW4dPZFiLjtYUnxmennc47d0l.jpg", "order": 9}, {"name": "Angel Garnica", "character": "Pepe", "id": 1023671, "credit_id": "52fe468fc3a368484e0975d9", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Ofelia Medina", "character": "Mama", "id": 104982, "credit_id": "52fe468fc3a368484e0975dd", "cast_id": 23, "profile_path": "/5vFhaAtxmbNnpacSRCPkLvOxGY2.jpg", "order": 11}, {"name": "Sam Douglas", "character": "William Woodgard", "id": 17072, "credit_id": "52fe468fc3a368484e0975e1", "cast_id": 24, "profile_path": "/5ZcldKZ1PDmf2gzTL3LA671PNZL.jpg", "order": 12}, {"name": "Graham McTavish", "character": "Head Marshall Warren", "id": 95047, "credit_id": "52fe468fc3a368484e0975e5", "cast_id": 25, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 13}, {"name": "Charles Maquignon", "character": "Sergeant Bill Attwood", "id": 185296, "credit_id": "52fe468fc3a368484e0975e9", "cast_id": 26, "profile_path": "/eHOiahagStCC3TssKOEpvulstY9.jpg", "order": 14}, {"name": "Jordi Moll\u00e0", "character": "Marco", "id": 31384, "credit_id": "52fe468fc3a368484e0975ed", "cast_id": 27, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 15}, {"name": "Affif Ben Badra", "character": "Genarro Rizzo", "id": 54807, "credit_id": "52fe468fc3a368484e0975f1", "cast_id": 28, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 16}, {"name": "Mark De Alessandro", "character": "SWAT", "id": 16500, "credit_id": "53b7236fc3a3685eb1002df7", "cast_id": 76, "profile_path": null, "order": 17}, {"name": "Max Martini", "character": "Agent Robert Williams", "id": 94864, "credit_id": "53b72398c3a3685ebd002e60", "cast_id": 77, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 18}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "52fe468fc3a368484e097589", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 6.4, "runtime": 108}, "180": {"poster_path": "/7Sr9kOW70nxR9CreAozC7KaNP9y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 358372926, "overview": "John Anderton is a top \"Precrime\" cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge. Can Anderton find a glitch in the system and prove his innocence before it's too late?", "video": false, "id": 180, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Minority Report", "tagline": "The system is perfect until it comes after you.", "vote_count": 876, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0181689", "adult": false, "backdrop_path": "/u8BvwuiiQ0uLFuXviKJU0cCHXIW.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Ronald Shusett/Gary Goldman", "id": 26265}], "release_date": "2002-06-20", "popularity": 1.55606656793976, "original_title": "Minority Report", "budget": 102000000, "cast": [{"name": "Tom Cruise", "character": "Chief John Anderton", "id": 500, "credit_id": "52fe4223c3a36847f8006f53", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Max von Sydow", "character": "Pre-Crime Director Lamar Burgess", "id": 2201, "credit_id": "52fe4223c3a36847f8006f57", "cast_id": 6, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 1}, {"name": "Steve Harris", "character": "Jad", "id": 2202, "credit_id": "52fe4223c3a36847f8006f5b", "cast_id": 7, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 2}, {"name": "Neal McDonough", "character": "Officer Gordon 'Fletch' Fletcher", "id": 2203, "credit_id": "52fe4223c3a36847f8006f5f", "cast_id": 8, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 3}, {"name": "Jessica Capshaw", "character": "Evanna", "id": 2205, "credit_id": "52fe4223c3a36847f8006f63", "cast_id": 10, "profile_path": "/iQL4ePgdr4sPXlvmotUieHrrGWF.jpg", "order": 4}, {"name": "Colin Farrell", "character": "Danny Witwer", "id": 72466, "credit_id": "52fe4223c3a36847f8006f67", "cast_id": 11, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 5}, {"name": "Samantha Morton", "character": "Agatha", "id": 2206, "credit_id": "52fe4223c3a36847f8006f6b", "cast_id": 12, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 6}, {"name": "Lois Smith", "character": "Dr. Iris Hineman", "id": 2207, "credit_id": "52fe4223c3a36847f8006f6f", "cast_id": 13, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 7}, {"name": "Kathryn Morris", "character": "Lara Clarke Anderton", "id": 2208, "credit_id": "52fe4223c3a36847f8006f73", "cast_id": 14, "profile_path": "/kacv3Og9yU1bp6RJGb4Asnhsavt.jpg", "order": 8}, {"name": "Peter Stormare", "character": "Dr. Solomon Eddie", "id": 53, "credit_id": "52fe4223c3a36847f8006f77", "cast_id": 15, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 9}, {"name": "Paul Wesley", "character": "Nathan with Bicycle", "id": 83141, "credit_id": "52fe4223c3a36847f8006fc9", "cast_id": 29, "profile_path": "/arhkjiCDzV9GxwKWIqBt095tnna.jpg", "order": 10}, {"name": "Patrick Kilpatrick", "character": "Officer Jeff Knott", "id": 32286, "credit_id": "52fe4223c3a36847f8006fcd", "cast_id": 30, "profile_path": "/wEu61ecaSkCN1mD4vXf5WlrUKTV.jpg", "order": 11}, {"name": "Keith Campbell", "character": "Pre-Crime Cop", "id": 15318, "credit_id": "53b95639c3a3685eba005605", "cast_id": 32, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 12}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006f3d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.6, "runtime": 145}, "8373": {"poster_path": "/kVISXAXDYhjQCfu50QZeCCzzbPv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 836297228, "overview": "Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.", "video": false, "id": 8373, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers: Revenge of the Fallen", "tagline": "Revenge is coming.", "vote_count": 1399, "homepage": "http://www.transformersmovie.com/", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1055369", "adult": false, "backdrop_path": "/tg7UGXaUROpzY5ppPh7dnvy4l7P.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Paramount Pictures", "id": 4}, {"name": "Hasbro", "id": 2598}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2009-06-23", "popularity": 0.643275289443288, "original_title": "Transformers: Revenge of the Fallen", "budget": 150000000, "cast": [{"name": "Shia LaBeouf", "character": "Sam Witwicky", "id": 10959, "credit_id": "52fe44a3c3a36847f80a19f3", "cast_id": 5, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Megan Fox", "character": "Mikaela Banes", "id": 19537, "credit_id": "52fe44a3c3a36847f80a19f7", "cast_id": 6, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 1}, {"name": "Josh Duhamel", "character": "Captain Lennox", "id": 19536, "credit_id": "52fe44a3c3a36847f80a19fb", "cast_id": 7, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 2}, {"name": "Rainn Wilson", "character": "College Professor", "id": 11678, "credit_id": "52fe44a3c3a36847f80a19ff", "cast_id": 8, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 3}, {"name": "Tyrese Gibson", "character": "USAF Tech Sergeant Epps", "id": 8169, "credit_id": "52fe44a3c3a36847f80a1a03", "cast_id": 9, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 4}, {"name": "John Turturro", "character": "Agent Simmons", "id": 1241, "credit_id": "52fe44a3c3a36847f80a1a07", "cast_id": 10, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 5}, {"name": "Kevin Dunn", "character": "Ron Witwicky", "id": 14721, "credit_id": "52fe44a3c3a36847f80a1a1d", "cast_id": 14, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 6}, {"name": "Julie White", "character": "Judy Witwicky", "id": 24305, "credit_id": "52fe44a3c3a36847f80a1a21", "cast_id": 15, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 7}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Leo Spitz", "id": 72985, "credit_id": "52fe44a3c3a36847f80a1a25", "cast_id": 16, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 8}, {"name": "Isabel Lucas", "character": "Alice", "id": 103554, "credit_id": "52fe44a3c3a36847f80a1a29", "cast_id": 17, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 9}, {"name": "Glenn Morshower", "character": "General Morshower", "id": 12797, "credit_id": "52fe44a3c3a36847f80a1a2d", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 10}, {"name": "Hugo Weaving", "character": "Megatron (voice)", "id": 1331, "credit_id": "52fe44a3c3a36847f80a1a31", "cast_id": 19, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 11}, {"name": "Marc Evan Jackson", "character": "Commander, US Central Command", "id": 141956, "credit_id": "530580e2c3a36816bc0e90ce", "cast_id": 20, "profile_path": "/739YCwcRkcTnbyCHD0Qo526bTrG.jpg", "order": 12}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a19dd", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.1, "runtime": 150}, "8374": {"poster_path": "/fg6fhyKg3vbdGtnf9Hq27Q5gS3r.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30471, "overview": "With a God-inspired moral obligation to act against evil, twin brothers Conner and Murphy set out to rid Boston of criminals. However, rather than working within the system, these Irish Americans decide to take swift retribution into their own hands.", "video": false, "id": 8374, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Boondock Saints", "tagline": "Thy Kingdom Come. Thy Will Be Done.", "vote_count": 231, "homepage": "http://www.theboondocksaints.com", "belongs_to_collection": {"backdrop_path": "/9VUPq4aFG5VVTFGkv9z5pCD3GSn.jpg", "poster_path": "/u4hp2I1DgWw2ZnkX2VTZDixGP87.jpg", "id": 87186, "name": "The Boondock Saints Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0144117", "adult": false, "backdrop_path": "/zL6GpSqaEyRwNMkqKVXsROinzSa.jpg", "production_companies": [{"name": "Franchise Pictures", "id": 1403}, {"name": "Brood Syndicate", "id": 11342}, {"name": "B.D.S. Productions Inc.", "id": 20088}], "release_date": "1999-01-22", "popularity": 0.828773777254972, "original_title": "The Boondock Saints", "budget": 6000000, "cast": [{"name": "Willem Dafoe", "character": "Paul Smecker", "id": 5293, "credit_id": "52fe44a3c3a36847f80a1a6b", "cast_id": 1, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 0}, {"name": "Norman Reedus", "character": "Murphy McManus", "id": 4886, "credit_id": "52fe44a3c3a36847f80a1a6f", "cast_id": 2, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 1}, {"name": "Sean Patrick Flanery", "character": "Connor McManus", "id": 54789, "credit_id": "52fe44a3c3a36847f80a1a73", "cast_id": 3, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 2}, {"name": "David Della Rocco", "character": "Rocco", "id": 54790, "credit_id": "52fe44a3c3a36847f80a1a77", "cast_id": 4, "profile_path": "/pgzIf45tq5R58K9ZWMlrAa9J62Z.jpg", "order": 3}, {"name": "David Ferry", "character": "Detective Dolly", "id": 54791, "credit_id": "52fe44a3c3a36847f80a1a7b", "cast_id": 5, "profile_path": "/bzz3Vx2QavSL6ODXDLubvFR3L54.jpg", "order": 4}, {"name": "Brian Mahoney", "character": "Detective Duffy", "id": 54792, "credit_id": "52fe44a3c3a36847f80a1a7f", "cast_id": 6, "profile_path": "/v6pTsqgOHE5TldFV63Kr44idQNe.jpg", "order": 5}, {"name": "Billy Connolly", "character": "II Duce", "id": 9188, "credit_id": "52fe44a3c3a36847f80a1a83", "cast_id": 7, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 6}, {"name": "Carlo Rota", "character": "Yakavetta", "id": 54793, "credit_id": "52fe44a3c3a36847f80a1a87", "cast_id": 8, "profile_path": "/arfSlKjQqBWV77Tyu0jjASnvFII.jpg", "order": 7}, {"name": "Ron Jeremy", "character": "Vincenzo Lipazzi", "id": 42545, "credit_id": "52fe44a3c3a36847f80a1a8b", "cast_id": 9, "profile_path": "/l4aDQlLafsG3N4pJ3W6YjpMXWI3.jpg", "order": 8}, {"name": "Bob Marley", "character": "Detective Greenly", "id": 105776, "credit_id": "52fe44a4c3a36847f80a1ae9", "cast_id": 25, "profile_path": "/qtvL2i75yqBZ0kpUgbHfR11OVwG.jpg", "order": 9}, {"name": "Richard Fitzpatrick", "character": "The Chief", "id": 44103, "credit_id": "52fe44a4c3a36847f80a1aed", "cast_id": 26, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 10}], "directors": [{"name": "Troy Duffy", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a1a91", "profile_path": "/2Rsz5SXZruHG5LqswvEeD62pXLl.jpg", "id": 54795}], "vote_average": 6.9, "runtime": 108}, "184": {"poster_path": "/5AiK0vIBuhC6sXlDMLEyHOc8Laj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39673162, "overview": "Jackie Brown is a flight attendant who gets caught in the middle of smuggling cash into the country for her gunrunner boss. When the cops try to use Jackie to get to her boss, she hatches a plan\u2014with help from a bail bondsman\u2014to keep the money for herself. Based on Elmore Leonard's novel \u201cRum Punch\u201d.", "video": false, "id": 184, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Jackie Brown", "tagline": "Six players on the trail of a half a million in Cash. There's only one question... Who's playing who?", "vote_count": 288, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119396", "adult": false, "backdrop_path": "/oT8RNPVSaZzEhimXcWihQxQPxKy.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "1997-12-24", "popularity": 0.801363197361493, "original_title": "Jackie Brown", "budget": 12000000, "cast": [{"name": "Pam Grier", "character": "Jackie Brown", "id": 2230, "credit_id": "52fe4223c3a36847f80070ef", "cast_id": 2, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Ordell Robbie", "id": 2231, "credit_id": "52fe4223c3a36847f80070f3", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Robert Forster", "character": "Max Cherry", "id": 5694, "credit_id": "52fe4224c3a36847f800710f", "cast_id": 10, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 2}, {"name": "Bridget Fonda", "character": "Melanie Ralston", "id": 2233, "credit_id": "52fe4224c3a36847f800713b", "cast_id": 18, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 3}, {"name": "Michael Keaton", "character": "Ray Nicolette", "id": 2232, "credit_id": "52fe4223c3a36847f80070f7", "cast_id": 5, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 4}, {"name": "Robert De Niro", "character": "Louis Gara", "id": 380, "credit_id": "52fe4224c3a36847f8007147", "cast_id": 22, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 5}, {"name": "Michael Bowen", "character": "Mark Dargus", "id": 2234, "credit_id": "52fe4223c3a36847f80070fb", "cast_id": 6, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 6}, {"name": "Chris Tucker", "character": "Beaumont Livingston", "id": 66, "credit_id": "52fe4223c3a36847f80070ff", "cast_id": 7, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 7}, {"name": "Lisa Gay Hamilton", "character": "Sheronda", "id": 64908, "credit_id": "52fe4224c3a36847f800713f", "cast_id": 19, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 8}, {"name": "Tommy Lister", "character": "Winston", "id": 8396, "credit_id": "52fe4224c3a36847f8007143", "cast_id": 20, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 9}, {"name": "Sid Haig", "character": "Judge", "id": 5695, "credit_id": "52fe4224c3a36847f8007113", "cast_id": 11, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 10}, {"name": "Aimee Graham", "character": "Amy, Billingsley Sales Girl", "id": 35545, "credit_id": "52fe4224c3a36847f800714b", "cast_id": 23, "profile_path": "/nWcKO2LokRckgnRWywWlRfyIUyX.jpg", "order": 11}, {"name": "Ellis Williams", "character": "Cockatoo Bartender", "id": 169705, "credit_id": "52fe4224c3a36847f800714f", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Tangie Ambrose", "character": "Billingsley Sales Girl #2", "id": 97260, "credit_id": "52fe4224c3a36847f8007153", "cast_id": 25, "profile_path": "/xyNaxHNwD3ZXx74jRRIqHXCDaW7.jpg", "order": 13}, {"name": "T'Keyah Crystal Keymah", "character": "Raynelle, Ordell's Junkie Friend", "id": 534301, "credit_id": "52fe4224c3a36847f8007157", "cast_id": 26, "profile_path": "/10xtbGjEHEmxxUlfEVe5d1O1bQx.jpg", "order": 14}, {"name": "Vanessia Valentino", "character": "Cabo Flight Attendant", "id": 1265427, "credit_id": "52fe4224c3a36847f800715b", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Diana Uribe", "character": "Anita Lopez", "id": 1214957, "credit_id": "52fe4224c3a36847f800715f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Renee Kelly", "character": "Cocktail Waitress", "id": 1265428, "credit_id": "52fe4224c3a36847f8007163", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Elizabeth McInerney", "character": "Bartender at Sam's", "id": 1265429, "credit_id": "52fe4224c3a36847f8007167", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Colleen Mayne", "character": "Girl at Security Gate", "id": 1265430, "credit_id": "52fe4224c3a36847f800716b", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Laura Lovelace", "character": "Steakhouse Waitress", "id": 11807, "credit_id": "52fe4224c3a36847f800716f", "cast_id": 32, "profile_path": "/hty1tWzaBThqc6AwuBlpanIeT4x.jpg", "order": 20}, {"name": "Christine Lydon", "character": "Tec-9 Sidney - Chicks Who Love Guns", "id": 106886, "credit_id": "52fe4224c3a36847f8007173", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Julia Ervin", "character": "Steyr AUG Cindy - Chicks Who Love Guns", "id": 1265431, "credit_id": "52fe4224c3a36847f8007177", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Juliet Long", "character": "AK-47 Gloria - Chicks Who Love Guns", "id": 1265432, "credit_id": "52fe4224c3a36847f800717b", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Michelle Berube", "character": "Baretta 12S Brittany - Chicks Who Love Guns", "id": 1265433, "credit_id": "52fe4224c3a36847f800717f", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Gillian Iliana-Waters", "character": "Mossberg 500 Tammy Jo - Chicks Who Love Guns", "id": 1265434, "credit_id": "52fe4224c3a36847f8007183", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Candice Briese", "character": "The Deputy", "id": 1265435, "credit_id": "52fe4224c3a36847f8007187", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Gary Mann", "character": "The Deputy", "id": 1265436, "credit_id": "52fe4224c3a36847f800718b", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Jeffrey Deedrick", "character": "The Sheriff", "id": 1265437, "credit_id": "52fe4224c3a36847f800718f", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Roy Nesvold", "character": "The Sheriff", "id": 1265438, "credit_id": "52fe4224c3a36847f8007193", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Herbert Hans Wilmsen", "character": "The Sheriff", "id": 1265439, "credit_id": "52fe4224c3a36847f8007197", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Hattie Winston", "character": "Simone", "id": 1212688, "credit_id": "52fe4224c3a36847f800719b", "cast_id": 43, "profile_path": "/dwiglObCKhTDJsp6Rn8KsHfFWmz.jpg", "order": 31}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f80070eb", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 6.9, "runtime": 154}, "185": {"poster_path": "/hJYwfHxh9O7lyF7hTIT7ZoP8FYQ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26589000, "overview": "The head of a gang of toughs, in an insensitive futuristic society, is conditioned to become physically ill at sex and violence during a prison sentence. When he is released, he's brutally beaten by all of his old adversaries.", "video": false, "id": 185, "genres": [{"id": 18, "name": "Drama"}], "title": "A Clockwork Orange", "tagline": "Being the adventures of a young man whose principal interests are rape, ultra-violence and Beethoven. Money isn't everything!", "vote_count": 825, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066921", "adult": false, "backdrop_path": "/cuajHs7j41RiENdWMjimuGyna9A.jpg", "production_companies": [{"name": "Hawk Films", "id": 88}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1971-12-18", "popularity": 1.64134279980176, "original_title": "A Clockwork Orange", "budget": 2200000, "cast": [{"name": "Malcolm McDowell", "character": "Alexander de Large", "id": 56890, "credit_id": "52fe4224c3a36847f80071e5", "cast_id": 4, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 0}, {"name": "Patrick Magee", "character": "Mr. Alexander", "id": 2264, "credit_id": "52fe4224c3a36847f80071e9", "cast_id": 5, "profile_path": "/97RYoo5XQj0R8rr5Fvua9HlB55E.jpg", "order": 1}, {"name": "Adrienne Corri", "character": "Mrs. Alexander", "id": 2265, "credit_id": "52fe4224c3a36847f80071ed", "cast_id": 6, "profile_path": "/fEO6V3zvvyWpviIvEdJ8jSLkTL1.jpg", "order": 2}, {"name": "Michael Bates", "character": "Chief Guard", "id": 2267, "credit_id": "52fe4224c3a36847f80071f1", "cast_id": 7, "profile_path": "/ftE2KiyBW8inxUWhJqnv4iPhGik.jpg", "order": 3}, {"name": "Warren Clarke", "character": "Dim", "id": 2268, "credit_id": "52fe4224c3a36847f80071f5", "cast_id": 8, "profile_path": "/baucXNIzHXSMxIZfsKzr8P0xiXI.jpg", "order": 4}, {"name": "James Marcus", "character": "Georgie", "id": 2270, "credit_id": "52fe4224c3a36847f80071f9", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Michael Tarn", "character": "Pete", "id": 2271, "credit_id": "52fe4224c3a36847f80071fd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Carl Duering", "character": "Dr. Brodsky", "id": 2272, "credit_id": "52fe4224c3a36847f8007201", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Paul Farrell", "character": "Tramp", "id": 2273, "credit_id": "52fe4224c3a36847f8007205", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Miriam Karlin", "character": "Catlady", "id": 2274, "credit_id": "52fe4224c3a36847f8007209", "cast_id": 13, "profile_path": "/8X7n8x3IOFjIj7BbZAIetywbuyU.jpg", "order": 9}, {"name": "Sheila Raynor", "character": "Mum", "id": 2276, "credit_id": "52fe4224c3a36847f800720d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Aubrey Morris", "character": "Mr. P. R. Deltoid", "id": 2278, "credit_id": "52fe4224c3a36847f8007211", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Godfrey Quigley", "character": "Prison Chaplain", "id": 2279, "credit_id": "52fe4224c3a36847f8007215", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Clive Francis", "character": "Lodger", "id": 2280, "credit_id": "52fe4224c3a36847f8007219", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Richard Connaught", "character": "Billy Boy (gang leader)", "id": 2290, "credit_id": "52fe4224c3a36847f800723b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Pauline Taylor", "character": "Psychiatrist", "id": 2292, "credit_id": "52fe4224c3a36847f800723f", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Philip Stone", "character": "Dad", "id": 694, "credit_id": "52fe4224c3a36847f8007243", "cast_id": 27, "profile_path": "/qtaBPJZC7MpoyWfcyXJ1zdEfYwU.jpg", "order": 16}, {"name": "David Prowse", "character": "Bodyguard", "id": 24342, "credit_id": "54cc705ec3a3687f8f000b6f", "cast_id": 34, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 17}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f80071db", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.3, "runtime": 136}, "186": {"poster_path": "/jtKq0EtothAzWlnRBBWGCA8uFuu.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56308881, "overview": "Slevin is mistakenly put in the middle of a personal war between the city\u2019s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma. A film with many twists and turns.", "video": false, "id": 186, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Lucky Number Slevin", "tagline": "Wrong Time. Wrong Place. Wrong Number.", "vote_count": 402, "homepage": "http://www.slevin-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425210", "adult": false, "backdrop_path": "/8nvayG5l0urcjvvpszoECDqLWzD.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "FilmEngine", "id": 816}, {"name": "Capitol Films", "id": 826}, {"name": "Ascendant Pictures", "id": 1204}, {"name": "VIP Medienfonds 4", "id": 2116}, {"name": "The Complex Studio", "id": 21962}], "release_date": "2006-04-07", "popularity": 0.648597155386775, "original_title": "Lucky Number Slevin", "budget": 27000000, "cast": [{"name": "Josh Hartnett", "character": "Slevin", "id": 2299, "credit_id": "52fe4224c3a36847f80072b5", "cast_id": 7, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Bruce Willis", "character": "Mr. Goodkat", "id": 62, "credit_id": "52fe4224c3a36847f80072ab", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 1}, {"name": "Lucy Liu", "character": "Lindsey", "id": 140, "credit_id": "52fe4224c3a36847f800729f", "cast_id": 2, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "The Boss", "id": 192, "credit_id": "52fe4224c3a36847f800729b", "cast_id": 1, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Ben Kingsley", "character": "The Rabbi", "id": 2282, "credit_id": "52fe4224c3a36847f80072a3", "cast_id": 3, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 4}, {"name": "Michael Rubenfeld", "character": "Yitzchok", "id": 205104, "credit_id": "52fe4224c3a36847f8007301", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Peter Outerbridge", "character": "Dumbrowski", "id": 12978, "credit_id": "52fe4224c3a36847f8007305", "cast_id": 21, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Det. Brikowski", "id": 2283, "credit_id": "52fe4224c3a36847f80072a7", "cast_id": 4, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Kevin Chamberlin", "character": "Marty", "id": 34395, "credit_id": "52fe4224c3a36847f8007309", "cast_id": 22, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 8}, {"name": "Dorian Missick", "character": "Elvis", "id": 26718, "credit_id": "52fe4224c3a36847f800730d", "cast_id": 23, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 9}, {"name": "Mykelti Williamson", "character": "Sloe", "id": 34, "credit_id": "52fe4224c3a36847f8007311", "cast_id": 24, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 10}, {"name": "Scott Gibson", "character": "Max", "id": 63859, "credit_id": "52fe4224c3a36847f8007315", "cast_id": 25, "profile_path": "/7eyU1bC6wrXs9D1O67HlfufCpfN.jpg", "order": 11}, {"name": "Corey Stoll", "character": "Saul", "id": 74541, "credit_id": "52fe4224c3a36847f800731d", "cast_id": 27, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 12}, {"name": "Robert Forster", "character": "Murphy", "id": 5694, "credit_id": "52fe4224c3a36847f8007319", "cast_id": 26, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 13}, {"name": "Sam Jaeger", "character": "Nick Fisher", "id": 65727, "credit_id": "52fe4224c3a36847f8007321", "cast_id": 28, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 14}, {"name": "Danny Aiello", "character": "Roth", "id": 1004, "credit_id": "52fe4224c3a36847f8007325", "cast_id": 29, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 15}], "directors": [{"name": "Paul McGuigan", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f80072b1", "profile_path": "/6p6uzaEtKfx7ota7AdQXlantt5W.jpg", "id": 2291}], "vote_average": 7.1, "runtime": 110}, "187": {"poster_path": "/n6vLv4kg6VNpi2tQVIo9vyAVMjU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 158733820, "overview": "Sin City is a neo-noir crime thriller based on Frank Miller's graphic novel series of the same name.The film is primarily based on three of Miller's works: The Hard Goodbye, about a man who embarks on a brutal rampage in search of his one-time sweetheart's killer; The Big Fat Kill, which focuses on a street war between a group of prostitutes and a group of mercenaries; and That Yellow Bastard, which follows an aging police officer who protects a young woman from a grotesquely disfigured serial killer.", "video": false, "id": 187, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Sin City", "tagline": "Walk down the right back alley in Sin City and you can find anything...", "vote_count": 918, "homepage": "http://hd24hr.blogspot.com/2014/08/sin-city.html", "belongs_to_collection": {"backdrop_path": "/qs200GlvLNIQKUns6AIeLcJWtPT.jpg", "poster_path": "/aGgHxGVmjssn7lw1ZucY5U2gI8K.jpg", "id": 135179, "name": "Sin City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0401792", "adult": false, "backdrop_path": "/my81Hjt7NpZhaMX9bHi4wVhFy0v.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Troublemaker Studios", "id": 10807}], "release_date": "2005-03-31", "popularity": 1.63379361714434, "original_title": "Sin City", "budget": 40000000, "cast": [{"name": "Bruce Willis", "character": "Hartigan", "id": 62, "credit_id": "52fe4224c3a36847f800737f", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Mickey Rourke", "character": "Marv", "id": 2295, "credit_id": "52fe4224c3a36847f8007383", "cast_id": 6, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 1}, {"name": "Clive Owen", "character": "Dwight", "id": 2296, "credit_id": "52fe4224c3a36847f8007387", "cast_id": 7, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 2}, {"name": "Jessica Alba", "character": "Nancy Callahan", "id": 56731, "credit_id": "52fe4224c3a36847f800738b", "cast_id": 8, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 3}, {"name": "Elijah Wood", "character": "Kevin", "id": 109, "credit_id": "52fe4224c3a36847f800738f", "cast_id": 9, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 4}, {"name": "Josh Hartnett", "character": "The Salesman", "id": 2299, "credit_id": "52fe4224c3a36847f8007393", "cast_id": 10, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 5}, {"name": "Jaime King", "character": "Goldie/Wendy", "id": 5915, "credit_id": "52fe4224c3a36847f80073c7", "cast_id": 19, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 6}, {"name": "Rutger Hauer", "character": "Cardinal Roark", "id": 585, "credit_id": "52fe4224c3a36847f80073cb", "cast_id": 20, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 7}, {"name": "Benicio del Toro", "character": "Jackie Boy", "id": 1121, "credit_id": "52fe4224c3a36847f80073cf", "cast_id": 21, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 8}, {"name": "Rosario Dawson", "character": "Gail", "id": 5916, "credit_id": "52fe4224c3a36847f80073d3", "cast_id": 22, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 9}, {"name": "Michael Clarke Duncan", "character": "Manute", "id": 61981, "credit_id": "52fe4224c3a36847f80073d7", "cast_id": 23, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 10}, {"name": "Devon Aoki", "character": "Miho", "id": 6278, "credit_id": "52fe4224c3a36847f80073db", "cast_id": 24, "profile_path": "/mytZpvb5lykocoOCDelFy8Eqezm.jpg", "order": 11}, {"name": "Alexis Bledel", "character": "Becky", "id": 6279, "credit_id": "52fe4224c3a36847f80073df", "cast_id": 25, "profile_path": "/soIlyGwryTHV4Y7LNn1tDejT4TC.jpg", "order": 12}, {"name": "Brittany Murphy", "character": "Shellie", "id": 328, "credit_id": "52fe4224c3a36847f80073f7", "cast_id": 31, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 13}, {"name": "Powers Boothe", "character": "Senator Roark", "id": 6280, "credit_id": "52fe4224c3a36847f80073e3", "cast_id": 26, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 14}, {"name": "Marley Shelton", "character": "The Customer", "id": 6407, "credit_id": "52fe4224c3a36847f80073e7", "cast_id": 27, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 15}, {"name": "Nick Stahl", "character": "Roark Jr./The Yellow Bastard", "id": 6408, "credit_id": "52fe4224c3a36847f80073eb", "cast_id": 28, "profile_path": "/2QYVx2D71lY2MfRbluC8PPyLMlH.jpg", "order": 16}, {"name": "Michael Madsen", "character": "Bob", "id": 147, "credit_id": "52fe4224c3a36847f80073ef", "cast_id": 29, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 17}, {"name": "Carla Gugino", "character": "Lucille", "id": 17832, "credit_id": "52fe4224c3a36847f80073fb", "cast_id": 32, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 18}, {"name": "Makenzie Vega", "character": "Nancy (11 Years)", "id": 2139, "credit_id": "52fe4224c3a36847f80073f3", "cast_id": 30, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 19}, {"name": "Frank Miller", "character": "Priest", "id": 2293, "credit_id": "52fe4224c3a36847f8007405", "cast_id": 34, "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "order": 20}, {"name": "Nick Offerman", "character": "Shlubb", "id": 17039, "credit_id": "54caacc9925141678c01242f", "cast_id": 37, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 21}], "directors": [{"name": "Frank Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f800736f", "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "id": 2293}, {"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f8007375", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 7.1, "runtime": 124}, "189": {"poster_path": "/k80qKrJ0qQ6ocVo5N932stNSg6j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39407616, "overview": "Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.", "video": false, "id": 189, "genres": [{"id": 80, "name": "Crime"}], "title": "Sin City: A Dame to Kill For", "tagline": "There is no justice without sin.", "vote_count": 413, "homepage": "http://sincity-2.com/", "belongs_to_collection": {"backdrop_path": "/qs200GlvLNIQKUns6AIeLcJWtPT.jpg", "poster_path": "/aGgHxGVmjssn7lw1ZucY5U2gI8K.jpg", "id": 135179, "name": "Sin City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458481", "adult": false, "backdrop_path": "/khzRw7ZDE3NIrYpe0RYyB864FPT.jpg", "production_companies": [{"name": "Residaco", "id": 41658}, {"name": "Miramax Films", "id": 14}, {"name": "Troublemaker Studios", "id": 10807}, {"name": "Aldamisa Entertainment", "id": 11006}, {"name": "Demarest Films", "id": 13241}, {"name": "Solipsist Film", "id": 29076}, {"name": "AR Films", "id": 11005}], "release_date": "2014-08-22", "popularity": 3.86485611134035, "original_title": "Sin City: A Dame to Kill For", "budget": 65000000, "cast": [{"name": "Mickey Rourke", "character": "Marv", "id": 2295, "credit_id": "52fe4224c3a36847f800744d", "cast_id": 5, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Nancy", "id": 56731, "credit_id": "52fe4224c3a36847f8007443", "cast_id": 3, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Dwight", "id": 16851, "credit_id": "52fe4224c3a36847f8007471", "cast_id": 16, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Joseph Gordon-Levitt", "character": "Johnny", "id": 24045, "credit_id": "52fe4224c3a36847f8007465", "cast_id": 13, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 3}, {"name": "Rosario Dawson", "character": "Gail", "id": 5916, "credit_id": "52fe4224c3a36847f8007459", "cast_id": 8, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 4}, {"name": "Bruce Willis", "character": "Hartigan", "id": 62, "credit_id": "52fe4224c3a36847f8007491", "cast_id": 24, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 5}, {"name": "Eva Green", "character": "Ava", "id": 10912, "credit_id": "52fe4224c3a36847f8007479", "cast_id": 18, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 6}, {"name": "Powers Boothe", "character": "Senator Roark", "id": 6280, "credit_id": "52fe4224c3a36847f8007475", "cast_id": 17, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 7}, {"name": "Dennis Haysbert", "character": "Manute", "id": 352, "credit_id": "52fe4224c3a36847f8007469", "cast_id": 14, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 8}, {"name": "Ray Liotta", "character": "Joey", "id": 11477, "credit_id": "52fe4224c3a36847f8007481", "cast_id": 20, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 9}, {"name": "Christopher Meloni", "character": "Mort", "id": 22227, "credit_id": "52fe4224c3a36847f8007485", "cast_id": 21, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 10}, {"name": "Jeremy Piven", "character": "Bob", "id": 12799, "credit_id": "53fc02300e0a267a78009402", "cast_id": 27, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 11}, {"name": "Christopher Lloyd", "character": "Kroenig", "id": 1062, "credit_id": "53fc02390e0a267a720097b3", "cast_id": 28, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 12}, {"name": "Jaime King", "character": "Goldie / Wendy", "id": 5915, "credit_id": "52fe4224c3a36847f8007455", "cast_id": 7, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 13}, {"name": "Juno Temple", "character": "Sally", "id": 36594, "credit_id": "52fe4224c3a36847f800748d", "cast_id": 23, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 14}, {"name": "Stacy Keach", "character": "Wallenquist", "id": 825, "credit_id": "52fe4224c3a36847f800747d", "cast_id": 19, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 15}, {"name": "Marton Csokas", "character": "Damien Lord", "id": 20982, "credit_id": "53fc024a0e0a267a720097b6", "cast_id": 29, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 16}, {"name": "Jude Ciccolella", "character": "Lt. Liebowitz", "id": 8693, "credit_id": "53fc02560e0a267a6f00976f", "cast_id": 30, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 17}, {"name": "Jamie Chung", "character": "Miho", "id": 78324, "credit_id": "52fe4224c3a36847f800746d", "cast_id": 15, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 18}, {"name": "Lady Gaga", "character": "Bertha", "id": 237405, "credit_id": "53fc02670e0a267a75009824", "cast_id": 31, "profile_path": "/uPlzD1ARsApOsU20eeWradHpWjr.jpg", "order": 19}, {"name": "Alexa PenaVega", "character": "Gilda", "id": 57674, "credit_id": "53fc02730e0a267a6f009774", "cast_id": 32, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 20}, {"name": "Julia Garner", "character": "Marcie", "id": 936970, "credit_id": "54301ee2c3a36831b8000a4f", "cast_id": 43, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 21}, {"name": "Billy Blair", "character": "Louie", "id": 968889, "credit_id": "54466ae10e0a2661af002422", "cast_id": 44, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 22}, {"name": "Patricia Vonne", "character": "Dallas", "id": 3133, "credit_id": "54a32775c3a3680b2700dfa4", "cast_id": 104, "profile_path": "/hQ5YETklKKI8FwTZoDREDYJ0K4I.jpg", "order": 23}, {"name": "Bart Fletcher", "character": "Flint", "id": 84791, "credit_id": "54a3293092514117dd00284b", "cast_id": 105, "profile_path": "/xVFZcLk4XeYcaeZjTnF7km5DioA.jpg", "order": 24}, {"name": "Alejandro Rose-Garcia", "character": "Buzz", "id": 90553, "credit_id": "54a32a229251412127006c25", "cast_id": 106, "profile_path": "/3cvFQ9jbMYfuOAxqygwYsU5gk3R.jpg", "order": 25}, {"name": "Samuel Davis", "character": "Frat Boy #3", "id": 1129413, "credit_id": "54a32b63c3a368764f00ca48", "cast_id": 107, "profile_path": "/aAOyhZjymZhIvh2HM6qL6M7P7dw.jpg", "order": 26}, {"name": "Mike Davis", "character": "Frat Boy #4", "id": 1406568, "credit_id": "54a32ba79251414d2700aace", "cast_id": 108, "profile_path": null, "order": 27}, {"name": "Kimberly Cox", "character": "Lillian", "id": 1406570, "credit_id": "54a32c549251412127006c58", "cast_id": 109, "profile_path": "/4E72wzQugid2H5W0iGN1UCriRrS.jpg", "order": 28}, {"name": "Alcides Dias", "character": "Tony", "id": 60674, "credit_id": "54a32df8c3a3684d8f0029bc", "cast_id": 110, "profile_path": "/2bPSN1PUdMBHjWbFSRuS27gCFoT.jpg", "order": 29}, {"name": "Vincent Fuentes", "character": "Abdul", "id": 1393520, "credit_id": "54a382819251412127007988", "cast_id": 111, "profile_path": "/aVkkvyAEON8lZuFhwDLAYRHPJp5.jpg", "order": 30}, {"name": "Rob Franco", "character": "Luigi", "id": 1406674, "credit_id": "54a385949251411d5300b60e", "cast_id": 112, "profile_path": "/yfwiwHx3FU2KIZFw6JPeBjYD6Ic.jpg", "order": 31}, {"name": "Daylon Walton", "character": "Gordo", "id": 1025370, "credit_id": "54a386959251414d2700b7c1", "cast_id": 113, "profile_path": "/f7DPspglqeE05HQ7vSDv3ZT1iCe.jpg", "order": 32}, {"name": "Eloise DeJoria", "character": "Joey's Wife", "id": 55269, "credit_id": "54a3889a925141236b0080b6", "cast_id": 114, "profile_path": "/7aExA8zxIaGJmltoEc82yPEmegr.jpg", "order": 33}, {"name": "Bob Schreck", "character": "Mulgrew", "id": 1406676, "credit_id": "54a38a6b925141198b0057b8", "cast_id": 115, "profile_path": "/4aYbES7IJueeE4DQz0wv7hG9KDK.jpg", "order": 34}, {"name": "Lawrence Varnado", "character": "Boogaard", "id": 61566, "credit_id": "54a38d0d925141198b005809", "cast_id": 116, "profile_path": "/3cPbqZFTRALAEzv23IXbzU7vfSz.jpg", "order": 35}, {"name": "Jimmy Gonzales", "character": "Jacoby", "id": 1091423, "credit_id": "54a38e949251411860003c8b", "cast_id": 117, "profile_path": "/xHKgZYPiteLS9hCvM1mL11d6bRe.jpg", "order": 36}, {"name": "Tommy Townsend", "character": "Wino Old Timer", "id": 1406685, "credit_id": "54a38f36c3a3682f1e010bf5", "cast_id": 118, "profile_path": null, "order": 37}, {"name": "Robert Lott", "character": "Cowboy", "id": 101981, "credit_id": "54a39771925141236b0082c2", "cast_id": 119, "profile_path": "/8fOS3wrYuR88aAeKCNZ5nE3Bdtf.jpg", "order": 38}, {"name": "Gregory Kelly", "character": "Godzilla", "id": 1375035, "credit_id": "54a399bfc3a368764f00dc10", "cast_id": 120, "profile_path": null, "order": 39}, {"name": "Patrick Sane", "character": "Gorgo", "id": 1268114, "credit_id": "54a39afec3a3682f210112cd", "cast_id": 121, "profile_path": "/cQp14aYzC8OLUVFZQiLUCcG1QG3.jpg", "order": 40}, {"name": "Greg Ingram", "character": "Mothra", "id": 1358928, "credit_id": "54a39ca8c3a368554200e698", "cast_id": 122, "profile_path": "/vjaq2FOpxzj4ZyqJmruMdnuZpmu.jpg", "order": 41}, {"name": "Will Beinbrink", "character": "Lawyer", "id": 58942, "credit_id": "54a39d429251411d5300b9e0", "cast_id": 123, "profile_path": "/ppLJLsXKF8PsxuiVKx194M4GuNW.jpg", "order": 42}, {"name": "Dimitrius Pulido", "character": "Maitre D", "id": 1094233, "credit_id": "54a39e9ec3a3682f1b0110c5", "cast_id": 124, "profile_path": "/gxVznhH0n2D1eHGu5h0ZQvGAFxM.jpg", "order": 43}, {"name": "John Wirt", "character": "Heavy", "id": 1406693, "credit_id": "54a39fc59251412127007dec", "cast_id": 125, "profile_path": null, "order": 44}, {"name": "Emmy Robbin", "character": "Flamethower", "id": 1155321, "credit_id": "54a3a266c3a368642800225d", "cast_id": 126, "profile_path": "/8i6hZN1TUxqu3wnfsbu07E5jkL5.jpg", "order": 45}, {"name": "Luis Albert Acevedo Jr.", "character": "Security Guard #1", "id": 1406695, "credit_id": "54a3a3ff9251414d2700bb6b", "cast_id": 127, "profile_path": "/qCipaHiSAQ6vViqYiVtDhla3yk5.jpg", "order": 46}, {"name": "Christian Bowman", "character": "The Man", "id": 1226245, "credit_id": "54a3a5e992514118600040a4", "cast_id": 128, "profile_path": "/koKY6HydRnAQXo2DRW8bNqvOd58.jpg", "order": 47}, {"name": "Johnny Reno", "character": "Weevil", "id": 96007, "credit_id": "54a3a73fc3a3680b2700f197", "cast_id": 129, "profile_path": null, "order": 48}], "directors": [{"name": "Frank Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f8007439", "profile_path": "/ghKVHIRrtOq4Jkuasbe6ww7d359.jpg", "id": 2293}, {"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f800743f", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.4, "runtime": 102}, "192": {"poster_path": "/dk3Vmp86t4lacnI3sQuU9ihOCUh.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 77200000, "overview": "In this adaptation of Umberto Eco's best-selling novel, 14th-century Franciscan monk William of Baskerville and his young novice arrive at a conference to find that several monks have been murdered under mysterious circumstances. To solve the crimes, William must rise up against the Church's authority and fight the shadowy conspiracy of monastery monks using only his intelligence -- which is considerable.", "video": false, "id": 192, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Name of the Rose", "tagline": "Who, in the name of God, is getting away with murder?", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091605", "adult": false, "backdrop_path": "/qthiIjX8Lt4Jg6hqPAdp2EIyJss.jpg", "production_companies": [{"name": "RAI Radiotelevisione Italiana", "id": 20091}, {"name": "Cristaldifilm", "id": 45693}, {"name": "Les Films Ariane", "id": 7110}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}], "release_date": "1986-09-24", "popularity": 0.679921469290689, "original_title": "The Name of the Rose", "budget": 20000000, "cast": [{"name": "Sean Connery", "character": "William of Baskerville", "id": 738, "credit_id": "52fe4225c3a36847f800763d", "cast_id": 16, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Christian Slater", "character": "Adso of Melk", "id": 2224, "credit_id": "52fe4225c3a36847f8007641", "cast_id": 17, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 1}, {"name": "Helmut Qualtinger", "character": "Remigio de Varagine", "id": 2367, "credit_id": "52fe4225c3a36847f8007645", "cast_id": 18, "profile_path": "/sgSX0fYUBre1dqGgbsTC4Vi0BZf.jpg", "order": 2}, {"name": "Elya Baskin", "character": "Severinus", "id": 2368, "credit_id": "52fe4225c3a36847f8007649", "cast_id": 19, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 3}, {"name": "Feodor Chaliapin Jr.", "character": "Jorge de Burgos", "id": 2371, "credit_id": "52fe4225c3a36847f800764d", "cast_id": 20, "profile_path": "/fB2wL1MEqOmNrlJ7gDM9pgRvocq.jpg", "order": 4}, {"name": "Valentina Vargas", "character": "The Girl", "id": 2173, "credit_id": "52fe4225c3a36847f8007651", "cast_id": 21, "profile_path": "/rG1QVgI2giG46XiYL0coozKzJ2H.jpg", "order": 5}, {"name": "Ron Perlman", "character": "Salvatore", "id": 2372, "credit_id": "52fe4225c3a36847f8007655", "cast_id": 22, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 6}, {"name": "Lucien Bodard", "character": "Cardinal Bertrand", "id": 2373, "credit_id": "52fe4225c3a36847f8007659", "cast_id": 23, "profile_path": "/32E18j61qgCTSljV2OBz2eD7ORr.jpg", "order": 7}, {"name": "F. Murray Abraham", "character": "Bernardo Gui", "id": 1164, "credit_id": "52fe4225c3a36847f800765d", "cast_id": 24, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 8}, {"name": "Dwight Weist", "character": "Adso as Old Man (voice)", "id": 2374, "credit_id": "52fe4225c3a36847f8007661", "cast_id": 25, "profile_path": "/beXKkE6tJ3DXtepD463yjcDcznJ.jpg", "order": 9}, {"name": "Michael Lonsdale", "character": "The Abbot", "id": 2369, "credit_id": "52fe4225c3a36847f8007665", "cast_id": 26, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 10}, {"name": "Volker Prechtel", "character": "Malachias", "id": 2370, "credit_id": "52fe4225c3a36847f8007669", "cast_id": 27, "profile_path": "/phEHxCDidfdrCWoZ7Cj8rxCiFVv.jpg", "order": 11}, {"name": "Lars Bodin-Jorgensen", "character": "Adelmo", "id": 2375, "credit_id": "52fe4225c3a36847f800766d", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Urs Althaus", "character": "Venantius", "id": 2376, "credit_id": "52fe4225c3a36847f8007671", "cast_id": 29, "profile_path": "/eOFu7foiVOX5ydZ5Lwop0Uwuj77.jpg", "order": 13}, {"name": "Michael Habeck", "character": "Berengar", "id": 2377, "credit_id": "52fe4225c3a36847f8007675", "cast_id": 30, "profile_path": "/aZ3RjWeBf7oULzw02F4KMPpBN7q.jpg", "order": 14}], "directors": [{"name": "Jean-Jacques Annaud", "department": "Directing", "job": "Director", "credit_id": "52fe4224c3a36847f80075e5", "profile_path": "/wWECpMbiIcKZF8VXsNfxJVeW2Rr.jpg", "id": 2352}], "vote_average": 7.0, "runtime": 130}, "193": {"poster_path": "/wjrXjlNpDq9U8vYmAwf420yDFtn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120000000, "overview": "Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.", "video": false, "id": 193, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: Generations", "tagline": "Boldly go.", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111280", "adult": false, "backdrop_path": "/mmwQBfWmEqJBOwfsjIBJPchXlSP.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1994-11-17", "popularity": 0.407379298224961, "original_title": "Star Trek: Generations", "budget": 38000000, "cast": [{"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4225c3a36847f80076d9", "cast_id": 5, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Jonathan Frakes", "character": "Commander William T. Riker", "id": 2388, "credit_id": "52fe4225c3a36847f80076dd", "cast_id": 6, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 1}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4225c3a36847f800774f", "cast_id": 30, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 2}, {"name": "LeVar Burton", "character": "Lt. Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4225c3a36847f80076e1", "cast_id": 8, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 3}, {"name": "Michael Dorn", "character": "Lt. Commander Worf", "id": 2391, "credit_id": "52fe4225c3a36847f80076e5", "cast_id": 9, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 4}, {"name": "Gates McFadden", "character": "Dr. Beverly Crusher", "id": 2392, "credit_id": "52fe4225c3a36847f80076e9", "cast_id": 10, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 5}, {"name": "Marina Sirtis", "character": "Commander Deanna Troi", "id": 2393, "credit_id": "52fe4225c3a36847f80076ed", "cast_id": 11, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 6}, {"name": "William Shatner", "character": "James T. Kirk", "id": 1748, "credit_id": "52fe4225c3a36847f80076f1", "cast_id": 12, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 7}, {"name": "James Doohan", "character": "Montgomery Scott", "id": 1751, "credit_id": "52fe4225c3a36847f80076f5", "cast_id": 13, "profile_path": "/fzPmUR60dIqu9oLiqJe4iLw6XBn.jpg", "order": 8}, {"name": "Walter Koenig", "character": "Pavel Chekov", "id": 1754, "credit_id": "52fe4225c3a36847f80076f9", "cast_id": 14, "profile_path": "/aq4fu8vSQQxMklB7FdXbN6uNQoV.jpg", "order": 9}, {"name": "Malcolm McDowell", "character": "Dr. Tolian Soran", "id": 56890, "credit_id": "52fe4225c3a36847f80076fd", "cast_id": 15, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 10}, {"name": "Alan Ruck", "character": "Capt. John Harriman", "id": 2394, "credit_id": "52fe4225c3a36847f8007701", "cast_id": 16, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 11}, {"name": "Whoopi Goldberg", "character": "Guinan", "id": 2395, "credit_id": "52fe4225c3a36847f8007705", "cast_id": 17, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 12}, {"name": "Thomas Dekker", "character": "Picard's Kid", "id": 34199, "credit_id": "52fe4225c3a36847f800774b", "cast_id": 29, "profile_path": "/1wDz8UVkG7rx6t96QKuMrKCo9wj.jpg", "order": 13}, {"name": "Cameron Oppenheimer", "character": "Ensign Kellogg", "id": 1368723, "credit_id": "54298c9c0e0a260a2a000072", "cast_id": 31, "profile_path": "/twMoDAIlapicAjBYe0s5hf1Isd5.jpg", "order": 14}, {"name": "Jenette Goldstein", "character": "Science Officer", "id": 3981, "credit_id": "54c494e5c3a368789b0076fb", "cast_id": 32, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 15}, {"name": "Tim Russ", "character": "Lieutenant", "id": 55538, "credit_id": "54c494fe9251416eae00fe0b", "cast_id": 33, "profile_path": "/a6t2lHZHePoUOWz1aHotrAEgz7v.jpg", "order": 16}], "directors": [{"name": "David Carson", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f80076c3", "profile_path": "/bErwoKKZwUuYz77micPIwjhHFyx.jpg", "id": 2380}], "vote_average": 6.5, "runtime": 118}, "194": {"poster_path": "/azmIGygncm5t5iAMiKnjRgVIlac.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 174000000, "overview": "At a tiny Parisian caf\u00e9, the adorable yet painfully shy Am\u00e9lie (Audrey Tautou) accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?", "video": false, "id": 194, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Am\u00e9lie", "tagline": "One person can change your life forever.", "vote_count": 869, "homepage": "http://www.die-fabelhafte-welt-der-amelie.de", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0211915", "adult": false, "backdrop_path": "/nxhfenC1jb5EcTI5GYxqnjYZMId.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Claudie Ossard Productions", "id": 592}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique (UGC)", "id": 30994}, {"name": "Victoires Productions", "id": 25020}, {"name": "Tapioca Films", "id": 12000}, {"name": "France 3 Cinema", "id": 16804}, {"name": "MMC Independent", "id": 4411}, {"name": "Sofica Sofinergie 5", "id": 23446}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 27897}], "release_date": "2001-04-25", "popularity": 1.83733335744234, "original_title": "Le fabuleux destin d'Am\u00e9lie Poulain", "budget": 11400000, "cast": [{"name": "Audrey Tautou", "character": "Am\u00e9lie Poulain", "id": 2405, "credit_id": "52fe4225c3a36847f800779b", "cast_id": 4, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 0}, {"name": "Mathieu Kassovitz", "character": "Nino Quincampoix", "id": 2406, "credit_id": "52fe4225c3a36847f8007805", "cast_id": 28, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 1}, {"name": "Rufus", "character": "Rapha\u00ebl Poulain", "id": 2407, "credit_id": "52fe4225c3a36847f800779f", "cast_id": 6, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 2}, {"name": "Jamel Debbouze", "character": "Lucien", "id": 2408, "credit_id": "52fe4225c3a36847f80077a3", "cast_id": 7, "profile_path": "/rnXlFlIAbCnQqQUyTdBCt7B0H5L.jpg", "order": 3}, {"name": "Claire Maurier", "character": "Suzanne", "id": 1654, "credit_id": "52fe4225c3a36847f80077b3", "cast_id": 11, "profile_path": "/cP1n7zMsMKr77xJeR3CncomxEZ0.jpg", "order": 4}, {"name": "Isabelle Nanty", "character": "Georgette", "id": 2412, "credit_id": "52fe4225c3a36847f80077b7", "cast_id": 12, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 5}, {"name": "Dominique Pinon", "character": "Joseph", "id": 2413, "credit_id": "52fe4225c3a36847f80077bb", "cast_id": 13, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 6}, {"name": "Artus de Penguern", "character": "Hipolito", "id": 2414, "credit_id": "52fe4225c3a36847f80077bf", "cast_id": 14, "profile_path": "/xDoI1YT3J4hBvJaa9lGxtNUjTKK.jpg", "order": 7}, {"name": "Yolande Moreau", "character": "Madeleine Wallace", "id": 2415, "credit_id": "52fe4225c3a36847f80077c3", "cast_id": 15, "profile_path": "/9FTIYqBRisPqgT4HV30EjRg4hkb.jpg", "order": 8}, {"name": "Lorella Cravotta", "character": "Amandine Poulain", "id": 2409, "credit_id": "52fe4225c3a36847f80077a7", "cast_id": 8, "profile_path": "/ogcgzecaUkJrnSjhXt1GMrOfzvU.jpg", "order": 9}, {"name": "Serge Merlin", "character": "Raymond Dufayel", "id": 2410, "credit_id": "52fe4225c3a36847f80077ab", "cast_id": 9, "profile_path": "/w07o6hg3hUxoWtgUBJ87VXilKzu.jpg", "order": 10}, {"name": "Clotilde Mollet", "character": "Gina", "id": 2411, "credit_id": "52fe4225c3a36847f80077af", "cast_id": 10, "profile_path": "/8aXYC2plPTD48hhTnpZSZs3KoSX.jpg", "order": 11}, {"name": "Urbain Cancelier", "character": "Collignon", "id": 2416, "credit_id": "52fe4225c3a36847f80077c7", "cast_id": 16, "profile_path": "/lbxlNBsenBuAL4l2p97BBY30HEM.jpg", "order": 12}, {"name": "Maurice B\u00e9nichou", "character": "Dominique Bretodeau", "id": 2417, "credit_id": "52fe4225c3a36847f80077cb", "cast_id": 17, "profile_path": "/wHyw6K7H5e1hExFixTrZDmlivC1.jpg", "order": 13}, {"name": "Michel Robin", "character": "M. Collignon", "id": 32092, "credit_id": "53b1a9dec3a3682ef1006789", "cast_id": 29, "profile_path": "/1eANJ5aDxh3SRYvXtRcO8ugxM5H.jpg", "order": 14}, {"name": "Andr\u00e9e Damant", "character": "Mme. Collignon", "id": 231607, "credit_id": "53b1aa37c3a3682eea0068e9", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Claude Perron", "character": "Eva", "id": 119199, "credit_id": "53b1aa52c3a3682eea0068eb", "cast_id": 31, "profile_path": "/1D6C2zz3bkO6KZBwrfKJwddYGT3.jpg", "order": 16}, {"name": "Armelle", "character": "Philom\u00e8ne", "id": 77736, "credit_id": "53b1aa68c3a3682ef1006794", "cast_id": 32, "profile_path": "/wM36ChCOpQ2jTwXGjcw7yKvtTW5.jpg", "order": 17}, {"name": "Ticky Holgado", "character": "L'homme dans la photo", "id": 13689, "credit_id": "53b1aa7cc3a3682eee0068cc", "cast_id": 33, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 18}, {"name": "Marc Amyot", "character": "L'inconnu des photomatons", "id": 1336073, "credit_id": "53b1aab2c3a3682ee6006899", "cast_id": 34, "profile_path": null, "order": 19}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f8007801", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 7.5, "runtime": 122}, "196": {"poster_path": "/6DmgPTZYaug7QNDjOhUDWyjOQDl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244527583, "overview": "The final installment of the Back to the Future trilogy finds Marty digging the trusty DeLorean out of a mineshaft and looking up Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.", "video": false, "id": 196, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Back to the Future Part III", "tagline": "They've saved the best trip for last... But this time they may have gone too far.", "vote_count": 966, "homepage": "http://www.bttf.com/", "belongs_to_collection": {"backdrop_path": "/c9C9Pg2QctyjZHRmS0P8rZg1OTA.jpg", "poster_path": "/51J1AroyQ45V8DCJnfItFUaKFxL.jpg", "id": 264, "name": "Back to the Future Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099088", "adult": false, "backdrop_path": "/pP2a4MBQbIeZMbErBWMjxTT5Npb.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}, {"name": "U-Drive Productions", "id": 20448}], "release_date": "1990-05-25", "popularity": 1.03339967308452, "original_title": "Back to the Future Part III", "budget": 40000000, "cast": [{"name": "Michael J. Fox", "character": "Marty McFly / Seamus McFly", "id": 521, "credit_id": "52fe4225c3a36847f80078fd", "cast_id": 14, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Dr. Emmett Brown", "id": 1062, "credit_id": "52fe4225c3a36847f8007901", "cast_id": 15, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Mary Steenburgen", "character": "Clara Clayton", "id": 2453, "credit_id": "52fe4225c3a36847f8007905", "cast_id": 16, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 2}, {"name": "Thomas F. Wilson", "character": "Buford 'Mad Dog' Tannen/Biff Tannen", "id": 1065, "credit_id": "52fe4225c3a36847f8007909", "cast_id": 17, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 3}, {"name": "Lea Thompson", "character": "Maggie McFly / Lorraine McFly", "id": 1063, "credit_id": "52fe4225c3a36847f800790d", "cast_id": 18, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 4}, {"name": "Elisabeth Shue", "character": "Jennifer Parker", "id": 1951, "credit_id": "52fe4225c3a36847f8007911", "cast_id": 19, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 5}, {"name": "James Tolkan", "character": "Marshal James Strickland", "id": 1072, "credit_id": "52fe4225c3a36847f8007915", "cast_id": 20, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 6}, {"name": "Matt Clark", "character": "Chester the Bartender", "id": 2454, "credit_id": "52fe4225c3a36847f8007919", "cast_id": 21, "profile_path": "/hDNQhAEns3nl9cgQJ4udgCdBABI.jpg", "order": 7}, {"name": "Christopher Wynne", "character": "Buford Tannen's Gang / Needles' Gang", "id": 2455, "credit_id": "52fe4225c3a36847f800791d", "cast_id": 22, "profile_path": "/krcB4LZlqK4txPZeNcuvJ7qUm0g.jpg", "order": 8}, {"name": "Sean Sullivan", "character": "Buford Tannen's Gang (as Sean Gregory Sullivan)", "id": 2456, "credit_id": "52fe4225c3a36847f8007921", "cast_id": 23, "profile_path": "/stYTM5pmC6SH9iTcz8hSoF6Te0h.jpg", "order": 9}, {"name": "Mike Watson", "character": "Buford Tannen's Gang", "id": 2457, "credit_id": "52fe4225c3a36847f8007925", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Foster", "character": "Copernicus", "id": 2458, "credit_id": "52fe4225c3a36847f8007929", "cast_id": 25, "profile_path": "/cP5z7pTlHnTZAVzuhQVGpiJlJYg.jpg", "order": 11}, {"name": "Freddie", "character": "Einstein", "id": 2459, "credit_id": "52fe4225c3a36847f800792d", "cast_id": 26, "profile_path": "/4JeX5W2IKzZyRvqwb4LfT30YIDz.jpg", "order": 12}, {"name": "Marc McClure", "character": "Dave McFly", "id": 1067, "credit_id": "52fe4225c3a36847f8007931", "cast_id": 27, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 13}, {"name": "Wendie Jo Sperber", "character": "Linda McFly", "id": 1068, "credit_id": "52fe4225c3a36847f8007935", "cast_id": 28, "profile_path": "/nadvO9Q24eNrGAznKmlOwV6E6Wb.jpg", "order": 14}, {"name": "Jeffrey Weissman", "character": "George McFly", "id": 1952, "credit_id": "52fe4225c3a36847f8007939", "cast_id": 29, "profile_path": "/rJJ066KTyGPNmu13eu2279DQrAw.jpg", "order": 15}, {"name": "Flea", "character": "Douglas J. Needles", "id": 1237, "credit_id": "52fe4225c3a36847f8007949", "cast_id": 32, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 16}, {"name": "J.J. Cohen", "character": "Needles' Gang", "id": 11673, "credit_id": "52fe4225c3a36847f800794d", "cast_id": 33, "profile_path": "/cEmMWxPQ1PfpEYU1NjNb2F4XSJo.jpg", "order": 17}, {"name": "Ricky Dean Logan", "character": "Needles' Gang", "id": 68851, "credit_id": "52fe4225c3a36847f8007951", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Dean Cundey", "character": "Photographer", "id": 1060, "credit_id": "52fe4225c3a36847f8007955", "cast_id": 35, "profile_path": "/xunb0FZLZLhca2F5OJcKzV1mjR0.jpg", "order": 19}, {"name": "Richard Dysart", "character": "Barbwire Salesman", "id": 15413, "credit_id": "52fe4225c3a36847f8007959", "cast_id": 36, "profile_path": "/rUCGqsBUOb1d7OsEVJo7BITfMIL.jpg", "order": 20}, {"name": "Pat Buttram", "character": "Saloon Old Timer", "id": 21460, "credit_id": "52fe4225c3a36847f800795d", "cast_id": 37, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 21}, {"name": "Harry Carey, Jr.", "character": "Saloon Old Timer", "id": 4316, "credit_id": "52fe4225c3a36847f8007961", "cast_id": 38, "profile_path": "/7Via2uVuYnnz8gJ5qx0zXqIKTkz.jpg", "order": 22}, {"name": "Dub Taylor", "character": "Saloon Old Timer", "id": 6463, "credit_id": "52fe4225c3a36847f8007965", "cast_id": 39, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 23}, {"name": "Hugh Gillin", "character": "Mayor Hubert", "id": 73349, "credit_id": "54f7da9092514151c6003a4f", "cast_id": 52, "profile_path": null, "order": 24}, {"name": "Burton Gilliam", "character": "Colt Gun Salesman", "id": 133952, "credit_id": "54f7df4cc3a36833bb0035c3", "cast_id": 53, "profile_path": "/vy97LXXW4hRjwJa4h9IbTBwuGN5.jpg", "order": 25}, {"name": "Bill McKinney", "character": "Engineer", "id": 16555, "credit_id": "54f7df8792514118ba00081a", "cast_id": 54, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 26}, {"name": "Donovan Scott", "character": "Deputy", "id": 57350, "credit_id": "54f7dfad92514118ba000827", "cast_id": 55, "profile_path": "/8Gd1PcWF5Qapvzia8pxnsnQrdba.jpg", "order": 27}, {"name": "Marvin J. McIntyre", "character": "Mortician", "id": 13003, "credit_id": "54f7e026c3a36833dc002f16", "cast_id": 57, "profile_path": null, "order": 28}, {"name": "Kaleb Henley", "character": "Strickland's Son", "id": 1096552, "credit_id": "54f7e063c3a368131c000710", "cast_id": 58, "profile_path": null, "order": 29}, {"name": "Todd Cameron Brown", "character": "Jules Brown", "id": 1435064, "credit_id": "54f7e097c3a36833dc002f2f", "cast_id": 59, "profile_path": null, "order": 30}, {"name": "Dannel Evans", "character": "Verne Brown", "id": 1435065, "credit_id": "54f7e11dc3a36834a2003084", "cast_id": 60, "profile_path": null, "order": 31}, {"name": "Leslie A. Prickett", "character": "Celebration Man", "id": 1435066, "credit_id": "54f7e1429251416f6e0031ff", "cast_id": 61, "profile_path": null, "order": 32}, {"name": "Jo B. Cummings", "character": "Pie Lady", "id": 1435067, "credit_id": "54f7e17cc3a36834a2003096", "cast_id": 62, "profile_path": null, "order": 33}, {"name": "Steve McArthur", "character": "Festival Man #1", "id": 1435068, "credit_id": "54f7e1a5c3a36833bb003602", "cast_id": 63, "profile_path": null, "order": 34}, {"name": "John Ickes", "character": "Festival Man #2", "id": 1435069, "credit_id": "54f7e1ca92514118df000791", "cast_id": 64, "profile_path": null, "order": 35}, {"name": "James A. Rammel", "character": "Festival Dance Caller", "id": 1435070, "credit_id": "54f7e1f492514118120007d0", "cast_id": 65, "profile_path": null, "order": 36}, {"name": "Michael Klastorin", "character": "Townsman #1", "id": 14336, "credit_id": "54f7e239c3a36834a20030a4", "cast_id": 66, "profile_path": null, "order": 37}, {"name": "Michael Mills", "character": "Townsman #2 (as Michael John Mills)", "id": 1435071, "credit_id": "54f7e3b392514151c6003b3c", "cast_id": 67, "profile_path": null, "order": 38}, {"name": "Flea", "character": "Needles", "id": 1237, "credit_id": "551d9ca39251413748000b2c", "cast_id": 82, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 39}, {"name": "Kenny Myers", "character": "Townsman #3", "id": 579077, "credit_id": "54f7e491c3a36834a5003373", "cast_id": 68, "profile_path": null, "order": 40}, {"name": "Brad McPeters", "character": "Eyepatch", "id": 1435072, "credit_id": "54f7e4af92514118df0007da", "cast_id": 69, "profile_path": null, "order": 41}, {"name": "Phinnaes D.", "character": "Toothless", "id": 1435073, "credit_id": "54f7e4cac3a36833bb00366b", "cast_id": 70, "profile_path": null, "order": 42}, {"name": "Rod Kuehne", "character": "Ticket Agent", "id": 1435074, "credit_id": "54f7e4f79251416f370031de", "cast_id": 71, "profile_path": null, "order": 43}, {"name": "Leno Fletcher", "character": "Conductor", "id": 1435075, "credit_id": "54f7e5259251412411003baa", "cast_id": 72, "profile_path": null, "order": 44}, {"name": "Joey Newington", "character": "Joey", "id": 1435076, "credit_id": "54f7e546c3a368351d00325e", "cast_id": 73, "profile_path": null, "order": 45}, {"name": "Larry Ingold", "character": "Train Fireman", "id": 1435077, "credit_id": "54f7e5649251411812000833", "cast_id": 74, "profile_path": null, "order": 46}, {"name": "Tim Konrad", "character": "Barbwire Salesman's Companion", "id": 1435078, "credit_id": "54f7e583c3a368126c000925", "cast_id": 75, "profile_path": null, "order": 47}, {"name": "Glenn Fox", "character": "Boy with Gun", "id": 1435079, "credit_id": "54f7e5a7c3a36834a5003399", "cast_id": 76, "profile_path": null, "order": 48}, {"name": "Frank Beard", "character": "Party Band Member #1 (uncredited)", "id": 105629, "credit_id": "54f7e6129251411812000848", "cast_id": 77, "profile_path": "/eeqfHOibpgPtdPBqh69MBVXqu4T.jpg", "order": 49}, {"name": "Billy Gibbons", "character": "Party Band Member #2 (uncredited)", "id": 105630, "credit_id": "54f7e63b9251416f6e00328b", "cast_id": 78, "profile_path": "/1iqr6yGZyQX4IZmPa9xoBpSV9K0.jpg", "order": 50}, {"name": "Dorothy Hack", "character": "Townswoman (uncredited)", "id": 1435080, "credit_id": "54f7e65bc3a36833bb00369e", "cast_id": 79, "profile_path": null, "order": 51}, {"name": "Dusty Hill", "character": "Party Band Member #3 (uncredited)", "id": 105628, "credit_id": "54f7e67ec3a3683a57003beb", "cast_id": 80, "profile_path": "/gWJfkKxPyce9aYfnttxpjWglAKP.jpg", "order": 52}, {"name": "Marion Tumen", "character": "Prostitute at Palace Saloon (uncredited)", "id": 1338840, "credit_id": "54f7e6abc3a368351d003281", "cast_id": 81, "profile_path": null, "order": 53}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f80078b1", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.8, "runtime": 118}, "197": {"poster_path": "/2qAgGeYdLjelOEqjW9FYvPHpplC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 210000000, "overview": "Enraged at the slaughter of Murron, his new bride and childhood love, legendary Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.", "video": false, "id": 197, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Braveheart", "tagline": "Every man dies. Not every man truly lives.", "vote_count": 1465, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "gd", "name": ""}], "imdb_id": "tt0112573", "adult": false, "backdrop_path": "/mXJnEzFHmchkMkuvaJ25eV4qWL5.jpg", "production_companies": [{"name": "Icon Entertainment International", "id": 4564}, {"name": "The Ladd Company", "id": 7965}, {"name": "B.H. Finance C.V.", "id": 11353}], "release_date": "1995-05-24", "popularity": 1.42422793241696, "original_title": "Braveheart", "budget": 72000000, "cast": [{"name": "Mel Gibson", "character": "William Wallace", "id": 2461, "credit_id": "52fe4225c3a36847f80079d7", "cast_id": 5, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Catherine McCormack", "character": "Murron MacClannough", "id": 2462, "credit_id": "52fe4225c3a36847f80079db", "cast_id": 6, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 1}, {"name": "Sophie Marceau", "character": "Princess Isabelle", "id": 1957, "credit_id": "52fe4225c3a36847f80079df", "cast_id": 7, "profile_path": "/5pJ16f9QxzZMzcr9CpSnr6dTwGG.jpg", "order": 2}, {"name": "Patrick McGoohan", "character": "King Edward", "id": 2463, "credit_id": "52fe4225c3a36847f80079e3", "cast_id": 8, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 3}, {"name": "Angus Macfadyen", "character": "Robert the Bruce", "id": 2464, "credit_id": "52fe4225c3a36847f80079e7", "cast_id": 9, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "Hamish Campbell", "id": 2039, "credit_id": "52fe4225c3a36847f80079eb", "cast_id": 10, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "James Robinson", "character": "Young William Wallace", "id": 2465, "credit_id": "52fe4225c3a36847f80079ef", "cast_id": 11, "profile_path": "/jmTg4EX5xVy5m2fOGgWs2xigNkr.jpg", "order": 6}, {"name": "James Cosmo", "character": "Campbell", "id": 2467, "credit_id": "52fe4225c3a36847f80079f3", "cast_id": 12, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 7}, {"name": "Sean McGinley", "character": "MacClannough", "id": 2468, "credit_id": "52fe4225c3a36847f80079f7", "cast_id": 13, "profile_path": "/1Kt6KJ2g6JLwpV7tfLOFExJJ6TZ.jpg", "order": 8}, {"name": "Gerda Stevenson", "character": "Mother MacClannough", "id": 2469, "credit_id": "52fe4225c3a36847f80079fb", "cast_id": 14, "profile_path": "/guyKVZEsD4GLj2h6gDgUNmbBLyG.jpg", "order": 9}, {"name": "Mhairi Calvey", "character": "Young Murron MacClannough", "id": 2470, "credit_id": "52fe4225c3a36847f80079ff", "cast_id": 15, "profile_path": "/yqhUNZdhGIQdpY1eNjj0nXkG5ea.jpg", "order": 10}, {"name": "Jeanne Marine", "character": "Nicolette", "id": 2471, "credit_id": "52fe4225c3a36847f8007a03", "cast_id": 16, "profile_path": "/1OteArXdpe89FGkQcOqaHZm8lOx.jpg", "order": 11}, {"name": "Sean Lawlor", "character": "Malcolm Wallace", "id": 2472, "credit_id": "52fe4225c3a36847f8007a07", "cast_id": 17, "profile_path": "/ehCSI4ZfmHRB59mZtrUs6xLo47I.jpg", "order": 12}, {"name": "Sandy Nelson", "character": "John Wallace", "id": 2473, "credit_id": "52fe4225c3a36847f8007a0b", "cast_id": 18, "profile_path": "/6RksAX6zUs5gPwlO0R2AXMiuAUx.jpg", "order": 13}, {"name": "Alan Tall", "character": "Elder Stewart", "id": 2474, "credit_id": "52fe4225c3a36847f8007a0f", "cast_id": 19, "profile_path": "/7eXUt2XAFrNXWUT6LyS6L3mj8PV.jpg", "order": 14}, {"name": "Andrew Weir", "character": "Young Hamish Campbell", "id": 2475, "credit_id": "52fe4225c3a36847f8007a13", "cast_id": 20, "profile_path": "/cif5yxGkTmLyOuN9E2ICStN7yqd.jpg", "order": 15}, {"name": "Brian Cox", "character": "Argyle Wallace", "id": 1248, "credit_id": "52fe4225c3a36847f8007a17", "cast_id": 21, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 16}, {"name": "Peter Hanly", "character": "Edward, Prince of Wales", "id": 2476, "credit_id": "52fe4225c3a36847f8007a1b", "cast_id": 22, "profile_path": "/cV4IiHHY7XtxONMpr1nJwFmj5TL.jpg", "order": 17}, {"name": "Stephen Billington", "character": "Phillip", "id": 2477, "credit_id": "52fe4225c3a36847f8007a1f", "cast_id": 23, "profile_path": "/fWuIZcI6syFBM9UuNOj2OY4b3Yi.jpg", "order": 18}, {"name": "Tommy Flanagan", "character": "Morrison", "id": 2478, "credit_id": "52fe4225c3a36847f8007a23", "cast_id": 24, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 19}, {"name": "Rupert Vansittart", "character": "Lord Bottoms", "id": 2479, "credit_id": "52fe4225c3a36847f8007a27", "cast_id": 25, "profile_path": "/Adw0Z2bT8qU5H6S0swuUWrBKDDs.jpg", "order": 20}, {"name": "Tam White", "character": "MacGregor", "id": 2480, "credit_id": "52fe4225c3a36847f8007a2b", "cast_id": 26, "profile_path": "/jk1UaBYHiiEm6BXLhlHtG50NDLc.jpg", "order": 21}, {"name": "Ian Bannen", "character": "Robert Bruce Sr.", "id": 2481, "credit_id": "52fe4225c3a36847f8007a2f", "cast_id": 27, "profile_path": "/o1M55VhFgRimGz9cNjadt8fWlXE.jpg", "order": 22}, {"name": "David O'Hara", "character": "Stephen, Irish Fighter", "id": 2482, "credit_id": "52fe4225c3a36847f8007a33", "cast_id": 28, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 23}, {"name": "Peter Mullan", "character": "Veteran", "id": 3064, "credit_id": "52fe4225c3a36847f8007a81", "cast_id": 43, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 24}, {"name": "David Gant", "character": "Chief Justice/Executioner", "id": 21431, "credit_id": "52fe4225c3a36847f8007a77", "cast_id": 41, "profile_path": "/hDrKggQ1lYc8bjiEHBKVKAS5QDi.jpg", "order": 25}, {"name": "Malcolm Tierney", "character": "Magistrate", "id": 166258, "credit_id": "52fe4225c3a36847f8007a61", "cast_id": 37, "profile_path": "/fe7Cz6sxTLt9qSQANRpAAaYcPlV.jpg", "order": 26}, {"name": "Martin Murphy", "character": "Lord Talmadge", "id": 1333582, "credit_id": "53a7e8a90e0a26143c005413", "cast_id": 51, "profile_path": null, "order": 27}, {"name": "Gerard McSorley", "character": "Cheltham", "id": 43131, "credit_id": "53a7e9af0e0a26143200570d", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Bernard Horsfall", "character": "Balliol", "id": 10174, "credit_id": "53a7ea740e0a26143600570d", "cast_id": 53, "profile_path": "/gAWAqff7bQ9RVf34nFd8dmxJy6u.jpg", "order": 29}, {"name": "Richard Leaf", "character": "Governor of York", "id": 16792, "credit_id": "53a7eac40e0a261449005708", "cast_id": 54, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 30}, {"name": "Liam Carney", "character": "Sean", "id": 1333583, "credit_id": "53a7eb070e0a261439005740", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Ralph Riach", "character": "Priest No. 1", "id": 17788, "credit_id": "53accf700e0a26597d000d82", "cast_id": 56, "profile_path": "/k30uy8kibmGQ1UE5Al7X74Kqa49.jpg", "order": 32}], "directors": [{"name": "Mel Gibson", "department": "Directing", "job": "Director", "credit_id": "52fe4225c3a36847f80079c7", "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "id": 2461}], "vote_average": 7.3, "runtime": 177}, "8390": {"poster_path": "/26U9CeCwH63P0n4jrYnhxnlfKWs.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55447968, "overview": "When Will decides to tell his daughter the story of how he met her mother, he discovers that a second look at the past might also give him a second chance at the future.", "video": false, "id": 8390, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Definitely, Maybe", "tagline": "Three relationships. Three disasters. One last chance.", "vote_count": 160, "homepage": "http://www.definitelymaybemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0832266", "adult": false, "backdrop_path": "/nFs9hEgQKEsmhaItx11Qv9Ubnz.jpg", "production_companies": [{"name": "Ringerike Erste Filmproduktion", "id": 49123}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}], "release_date": "2008-02-08", "popularity": 0.734713085745122, "original_title": "Definitely, Maybe", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Will Hayes", "id": 10859, "credit_id": "52fe44a4c3a36847f80a1dab", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Abigail Breslin", "character": "Maya Hayes", "id": 17140, "credit_id": "52fe44a4c3a36847f80a1daf", "cast_id": 2, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Emily", "id": 9281, "credit_id": "52fe44a4c3a36847f80a1db3", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Isla Fisher", "character": "April", "id": 52848, "credit_id": "52fe44a4c3a36847f80a1db7", "cast_id": 4, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 3}, {"name": "Rachel Weisz", "character": "Summer Hartley", "id": 3293, "credit_id": "52fe44a4c3a36847f80a1dbb", "cast_id": 5, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 4}, {"name": "Kevin Kline", "character": "Hampton Roth", "id": 8945, "credit_id": "52fe44a4c3a36847f80a1dbf", "cast_id": 6, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 5}, {"name": "Derek Luke", "character": "Russell McCormack", "id": 15543, "credit_id": "52fe44a4c3a36847f80a1dc3", "cast_id": 7, "profile_path": "/8aWVcw4JDB76dhKRvUQgDGxInvN.jpg", "order": 6}, {"name": "Liane Balaban", "character": "Kelly", "id": 54817, "credit_id": "52fe44a4c3a36847f80a1dc7", "cast_id": 8, "profile_path": "/way8YUaXSxxJ5PYg0tM92savRMD.jpg", "order": 7}, {"name": "Annie Parisse", "character": "Anne", "id": 24291, "credit_id": "52fe44a4c3a36847f80a1dcb", "cast_id": 9, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 8}, {"name": "Nestor Serrano", "character": "Arthur", "id": 14331, "credit_id": "52fe44a4c3a36847f80a1dcf", "cast_id": 10, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 9}, {"name": "Kevin Corrigan", "character": "Rafael", "id": 18472, "credit_id": "52fe44a4c3a36847f80a1dd3", "cast_id": 11, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 10}, {"name": "An Nguyen", "character": "Ad Exec", "id": 1142303, "credit_id": "52fe44a4c3a36847f80a1e2b", "cast_id": 26, "profile_path": "/e46MsI3zoQRsfRSMdQYRXbbFs4p.jpg", "order": 11}, {"name": "Adam Brooks", "character": "Bookstore Owner", "id": 16328, "credit_id": "53e9ee48c3a3680ec1000bad", "cast_id": 28, "profile_path": "/yUyhsz2KZ87ePFxyQGeW9FjoGZ6.jpg", "order": 13}, {"name": "Emily Wickersham", "character": "1998 Intern", "id": 204679, "credit_id": "5417240ac3a3684cf7005b31", "cast_id": 29, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 14}], "directors": [{"name": "Adam Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe44a4c3a36847f80a1e21", "profile_path": "/yUyhsz2KZ87ePFxyQGeW9FjoGZ6.jpg", "id": 16328}], "vote_average": 6.1, "runtime": 112}, "199": {"poster_path": "/qhVB8eUGwkdVvd8Fezk0AgcMPDH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150000000, "overview": "The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.", "video": false, "id": 199, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: First Contact", "tagline": "Resistance is futile.", "vote_count": 271, "homepage": "http://www.startrek.com/startrek/view/series/MOV/008/index.html", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117731", "adult": false, "backdrop_path": "/welkOTUozJ968u1KLx33vPpo7aS.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1996-11-21", "popularity": 0.948535719122159, "original_title": "Star Trek: First Contact", "budget": 46000000, "cast": [{"name": "James Cromwell", "character": "Dr. Zefram Cochrane", "id": 2505, "credit_id": "52fe4226c3a36847f8007b57", "cast_id": 5, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 0}, {"name": "Alfre Woodard", "character": "Lily Sloane", "id": 1981, "credit_id": "52fe4226c3a36847f8007b5b", "cast_id": 6, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 1}, {"name": "Alice Krige", "character": "Borg Queen", "id": 2506, "credit_id": "52fe4226c3a36847f8007b5f", "cast_id": 7, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 2}, {"name": "Neal McDonough", "character": "Lieutenant Hawk", "id": 2203, "credit_id": "52fe4226c3a36847f8007b63", "cast_id": 8, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 3}, {"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4226c3a36847f8007ba3", "cast_id": 19, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 4}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4226c3a36847f8007bbf", "cast_id": 27, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 5}, {"name": "LeVar Burton", "character": "Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4226c3a36847f8007ba7", "cast_id": 21, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 6}, {"name": "Michael Dorn", "character": "Lieutenant Commander Worf", "id": 2391, "credit_id": "52fe4226c3a36847f8007bab", "cast_id": 22, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 7}, {"name": "Gates McFadden", "character": "Commander Beverly Crusher", "id": 2392, "credit_id": "52fe4226c3a36847f8007baf", "cast_id": 23, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 8}, {"name": "Marina Sirtis", "character": "Ships Counselor Commander Deanna Troi", "id": 2393, "credit_id": "52fe4226c3a36847f8007bb3", "cast_id": 24, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 9}, {"name": "Jonathan Frakes", "character": "Commander William Riker", "id": 2388, "credit_id": "52fe4226c3a36847f8007bb7", "cast_id": 25, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 10}, {"name": "Dwight Schultz", "character": "Lt. Barclay", "id": 28248, "credit_id": "52fe4226c3a36847f8007bbb", "cast_id": 26, "profile_path": "/lvhnIeUHMUvjfxRS2xWeF6xbsJc.jpg", "order": 11}, {"name": "Cameron Oppenheimer", "character": "Ensign Kellogg", "id": 1368723, "credit_id": "54298c6d0e0a260a30000073", "cast_id": 32, "profile_path": "/twMoDAIlapicAjBYe0s5hf1Isd5.jpg", "order": 12}], "directors": [{"name": "Jonathan Frakes", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007b41", "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "id": 2388}], "vote_average": 6.9, "runtime": 111}, "8392": {"poster_path": "/2i0OOjvi7CqNQA6ZtYJtL65P9oZ.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Two sisters move to the country with their father in order to be closer to their hospitalized mother, and discover the surrounding trees are inhabited by Totoros, magical spirits of the forest. When the youngest runs away from home, the older sister seeks help from the spirits to find her.", "video": false, "id": 8392, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "My Neighbor Totoro", "tagline": "", "vote_count": 528, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0096283", "adult": false, "backdrop_path": "/p2yfO8o9lpegOu3w3gXMljPGGkP.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Nibariki", "id": 12516}, {"name": "Tokuma Japan Communications Co. Ltd.", "id": 12523}], "release_date": "1988-04-16", "popularity": 1.56955723154865, "original_title": "Tonari no Totoro", "budget": 0, "cast": [{"name": "Noriko Hidaka", "character": "Satsuki (voz)", "id": 55662, "credit_id": "52fe44a5c3a36847f80a1ec5", "cast_id": 2, "profile_path": "/yswUeNWfjrWhqGyMB3QDSP8D8v.jpg", "order": 0}, {"name": "Hitoshi Takagi", "character": "Totoro (voz)", "id": 55663, "credit_id": "52fe44a5c3a36847f80a1ec9", "cast_id": 3, "profile_path": "/ckNvu6uLIjRXULtinh7e1BPp3kp.jpg", "order": 1}, {"name": "Chika Sakamoto", "character": "Mei (voz)", "id": 55664, "credit_id": "52fe44a5c3a36847f80a1ecd", "cast_id": 4, "profile_path": "/b84KZUb7zjrXP21aYLSJXcJoRTC.jpg", "order": 2}, {"name": "Shigesato Itoi", "character": "Tatsuo Kusakabe (voz)", "id": 55665, "credit_id": "52fe44a5c3a36847f80a1ed1", "cast_id": 5, "profile_path": "/2H5QFmY4CysInJd7WCDpAPbvGsp.jpg", "order": 3}, {"name": "Sumi Shimamoto", "character": "Yasuko Kusakabe (voz)", "id": 613, "credit_id": "52fe44a5c3a36847f80a1ed5", "cast_id": 6, "profile_path": "/cB1JXMD6Eyb1ONKfsj32Lai4AfV.jpg", "order": 4}, {"name": "Tanie Kitabayashi", "character": "Kanta no ob\u00e2san (voz)", "id": 55666, "credit_id": "52fe44a5c3a36847f80a1ed9", "cast_id": 7, "profile_path": "/wPPlvuRZQWuEEG6bT83c1sn0MqJ.jpg", "order": 5}, {"name": "Akiko Hiramatsu", "character": "(voz)", "id": 143502, "credit_id": "52fe44a5c3a36847f80a1f23", "cast_id": 20, "profile_path": "/v0F4QOBvuwoAbQKxdBVBBai4hEb.jpg", "order": 7}, {"name": "Masashi Hirose", "character": "Kanta no ot\u00f4san (voz)", "id": 553286, "credit_id": "52fe44a5c3a36847f80a1f27", "cast_id": 21, "profile_path": "/jCVmC2Ov8c7p9kyKbx05uGcXfii.jpg", "order": 8}, {"name": "Chie K\u00f4jiro", "character": "(voz)", "id": 1132636, "credit_id": "52fe44a5c3a36847f80a1f2b", "cast_id": 22, "profile_path": "/atSmFWDPOQx6Vv8uUwnFnTCCQVR.jpg", "order": 9}, {"name": "Y\u00fbko Maruyama", "character": "Kanta no ok\u00e2san (voz)", "id": 552603, "credit_id": "52fe44a5c3a36847f80a1f2f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Y\u00fbko Mizutani", "character": "(voz)", "id": 112138, "credit_id": "52fe44a5c3a36847f80a1f33", "cast_id": 24, "profile_path": "/n7zoT3w5pkorKvIBrFBhqjAamW2.jpg", "order": 11}, {"name": "Tomohiro Nishimura", "character": "(voz)", "id": 554867, "credit_id": "52fe44a5c3a36847f80a1f3b", "cast_id": 26, "profile_path": "/6Th9GLzkwoL4CxnCPmjkkeoGiv9.jpg", "order": 13}, {"name": "Shigeru Chiba", "character": "Kusakari-Otoko (voz)", "id": 105816, "credit_id": "53083cd192514111020017c4", "cast_id": 27, "profile_path": "/23GASkx3cOtzgtBkrDTj44nbpVg.jpg", "order": 14}, {"name": "Daiki Nakamura", "character": "(voz)", "id": 81866, "credit_id": "5308416e925141111700181d", "cast_id": 28, "profile_path": "/z6EgWIVXYFs1VztcOxwBUU2d0C7.jpg", "order": 15}, {"name": "Toshiyuki Amagasa", "character": "Kanta (voice)", "id": 1011400, "credit_id": "5353f6850e0a265603004ed4", "cast_id": 29, "profile_path": null, "order": 16}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe44a5c3a36847f80a1ec1", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.9, "runtime": 86}, "8393": {"poster_path": "/yDTZtfKT0SHoXSzEHMHS0pMI1IN.jpg", "production_countries": [{"iso_3166_1": "BW", "name": "Botswana"}], "revenue": 0, "overview": "Misery is brought to a small group of Sho in the Kalahari desert in the form of a cola bottle. In his quest to throw the evil object over the edge of the earth, Xixo encounters Western \"civilization,\" a haphazard doctor and a tyranical despot.", "video": false, "id": 8393, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Gods Must Be Crazy", "tagline": "The critics are raving... the natives are restless... and the laughter is non-stop!", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/3KAJpE2OOimXE5Z15LHARbeA0eC.jpg", "id": 87805, "name": "The Gods Must Be Crazy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080801", "adult": false, "backdrop_path": "/iVxo0Qy4FMIEF9LhBJtJwwvsuIU.jpg", "production_companies": [{"name": "CAT Films", "id": 22284}, {"name": "Mimosa Films", "id": 22285}], "release_date": "1980-09-10", "popularity": 0.502524511912552, "original_title": "The Gods Must Be Crazy", "budget": 0, "cast": [{"name": "N!xau", "character": "Xixo", "id": 55674, "credit_id": "52fe44a5c3a36847f80a1f81", "cast_id": 5, "profile_path": "/r340m1PXJoz4YxprkA6fHRGwKEJ.jpg", "order": 0}, {"name": "Michael Thys", "character": "Mpudi", "id": 55675, "credit_id": "52fe44a5c3a36847f80a1f85", "cast_id": 6, "profile_path": null, "order": 1}, {"name": "Marius Weyers", "character": "Andrew Steyn", "id": 16758, "credit_id": "52fe44a5c3a36847f80a1f89", "cast_id": 7, "profile_path": "/xhUgoqJQOPzi2XoKVpVlJPcrcC3.jpg", "order": 2}, {"name": "Sandra Prinsloo", "character": "Kate Thompson", "id": 55676, "credit_id": "52fe44a5c3a36847f80a1f8d", "cast_id": 8, "profile_path": "/qpfBiTfNiOWzv2fbc1Zg0Ud693y.jpg", "order": 3}, {"name": "Louw Verwey", "character": "Sam Boga", "id": 55677, "credit_id": "52fe44a5c3a36847f80a1f91", "cast_id": 9, "profile_path": "/zCjDTEgmnNZwQq8EmQnyO2TQcWQ.jpg", "order": 4}, {"name": "Nic De Jager", "character": "Jack Hind", "id": 1099025, "credit_id": "52fe44a5c3a36847f80a1fb3", "cast_id": 16, "profile_path": "/aw0SWxL9fe3ToGEGNU5xAbTmYHU.jpg", "order": 5}, {"name": "Fanyana H. Sidumo", "character": "Card 1", "id": 1099026, "credit_id": "52fe44a5c3a36847f80a1fb7", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Joe Seakatsie", "character": "Card 2", "id": 1099027, "credit_id": "52fe44a5c3a36847f80a1fbb", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Brian O'Shaughnessy", "character": "Mr. Thompson", "id": 33718, "credit_id": "52fe44a5c3a36847f80a1fbf", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Ken Gampu", "character": "President", "id": 59804, "credit_id": "52fe44a5c3a36847f80a1fc3", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Jamie Uys", "department": "Directing", "job": "Director", "credit_id": "52fe44a5c3a36847f80a1f6b", "profile_path": "/aJOs1gdY5WQwaS8E6xf5LQAwsWh.jpg", "id": 55668}], "vote_average": 7.4, "runtime": 109}, "205": {"poster_path": "/ux6TRpqIOv6h8VJAiDVQBy2LBBH.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 38000000, "overview": "Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.", "video": false, "id": 205, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Hotel Rwanda", "tagline": "When the world closed its eyes, he opened his arms.", "vote_count": 209, "homepage": "http://www.metrofilms.com/hotelrwanda/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0395169", "adult": false, "backdrop_path": "/dQCTuhrP8bgsctRYeHSX21ceNX1.jpg", "production_companies": [{"name": "Sixth Sense Productions", "id": 7495}, {"name": "United Artists", "id": 60}, {"name": "Lions Gate Films", "id": 35}, {"name": "Industrial Development Corporation of South Africa", "id": 564}, {"name": "Miracle Pictures", "id": 2760}, {"name": "Inside Track Films", "id": 19834}, {"name": "Mikado Film", "id": 11912}, {"name": "Endgame Entertainment", "id": 1205}], "release_date": "2004-12-22", "popularity": 0.902627811562843, "original_title": "Hotel Rwanda", "budget": 17500000, "cast": [{"name": "Don Cheadle", "character": "Paul Rusesabagina", "id": 1896, "credit_id": "52fe4226c3a36847f8007f07", "cast_id": 10, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 0}, {"name": "Nick Nolte", "character": "Colonel Oliver", "id": 1733, "credit_id": "52fe4226c3a36847f8007f0b", "cast_id": 11, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 1}, {"name": "Sophie Okonedo", "character": "Tatiana Rusesabagina", "id": 2598, "credit_id": "52fe4226c3a36847f8007f0f", "cast_id": 12, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 2}, {"name": "Joaquin Phoenix", "character": "Jack Daglish", "id": 73421, "credit_id": "52fe4226c3a36847f8007f13", "cast_id": 13, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 3}, {"name": "Jean Reno", "character": "Sabena Airlines President, Mr. Tillens", "id": 1003, "credit_id": "52fe4226c3a36847f8007f17", "cast_id": 14, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Ofentse Modiselle", "character": "Roger Rusesabagina", "id": 2599, "credit_id": "52fe4226c3a36847f8007f1b", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Mathabo Pieterson", "character": "Diane Rusesabagina", "id": 2600, "credit_id": "52fe4226c3a36847f8007f1f", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Neil McCarthy", "character": "Jean Jacques", "id": 2601, "credit_id": "52fe4226c3a36847f8007f23", "cast_id": 17, "profile_path": "/sNQxZARN2qUtNzL28oyJnmuZWGe.jpg", "order": 7}, {"name": "Desmond Dube", "character": "Dube", "id": 2602, "credit_id": "52fe4226c3a36847f8007f27", "cast_id": 18, "profile_path": "/tT23u6yoJdVwbvA4RV20WmFMud8.jpg", "order": 8}, {"name": "Hakeem Kae-Kazim", "character": "George Rutaganda", "id": 2603, "credit_id": "52fe4226c3a36847f8007f2b", "cast_id": 19, "profile_path": "/cYHDYQbnvju1g8XIAnvwRr0bWSB.jpg", "order": 9}, {"name": "Tony Kgoroge", "character": "Gregoire", "id": 2606, "credit_id": "52fe4226c3a36847f8007f2f", "cast_id": 20, "profile_path": "/6SYs40gVJNmzKjz4kFQOwXG5BH6.jpg", "order": 10}, {"name": "Fana Mokoena", "character": "General Bizimungu", "id": 2607, "credit_id": "52fe4226c3a36847f8007f33", "cast_id": 21, "profile_path": "/skuKjL1Ep1SHrZuNl0lYVfZ9VM0.jpg", "order": 11}, {"name": "Lebo Mashile", "character": "Odette", "id": 2608, "credit_id": "52fe4226c3a36847f8007f37", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Antonio David Lyons", "character": "Thomas Mirama", "id": 832, "credit_id": "52fe4226c3a36847f8007f3b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Leleti Khumalo", "character": "Fedens", "id": 2609, "credit_id": "52fe4226c3a36847f8007f3f", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Terry George", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007ed9", "profile_path": "/bQDk9TM3y1pswHHKLoeb9bV88S9.jpg", "id": 2589}], "vote_average": 7.0, "runtime": 121}, "207": {"poster_path": "/3Ri2GReavqSHqWemlP6HYn8i2P9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 235860116, "overview": "At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.", "video": false, "id": 207, "genres": [{"id": 18, "name": "Drama"}], "title": "Dead Poets Society", "tagline": "He was their inspiration. He made their lives extraordinary.", "vote_count": 481, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097165", "adult": false, "backdrop_path": "/1K4KlYAfz1qSd8tZx720hlI58EY.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners IV", "id": 10282}], "release_date": "1989-06-09", "popularity": 1.49251569431807, "original_title": "Dead Poets Society", "budget": 16400000, "cast": [{"name": "Robin Williams", "character": "John Keating", "id": 2157, "credit_id": "52fe4227c3a36847f8007feb", "cast_id": 3, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "Todd Anderson", "id": 569, "credit_id": "52fe4227c3a36847f8007fef", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Robert Sean Leonard", "character": "Neil Perry", "id": 2692, "credit_id": "52fe4227c3a36847f8007ff3", "cast_id": 5, "profile_path": "/90xoBVpR2LzaFdo83KmcxjXR7Dg.jpg", "order": 2}, {"name": "Gale Hansen", "character": "Charlie Dalton", "id": 2693, "credit_id": "52fe4227c3a36847f8007ff7", "cast_id": 6, "profile_path": "/ecgoxKjYTjdyqhGiPdLyDIagoii.jpg", "order": 3}, {"name": "Josh Charles", "character": "Knox Overstreet", "id": 2694, "credit_id": "52fe4227c3a36847f8007ffb", "cast_id": 7, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 4}, {"name": "Dylan Kussman", "character": "Richard Cameron", "id": 2695, "credit_id": "52fe4227c3a36847f8007fff", "cast_id": 8, "profile_path": "/1qxGjFfkYGiEpM6QriVo4gjTTWz.jpg", "order": 5}, {"name": "Allelon Ruggiero", "character": "Steven Meeks", "id": 2696, "credit_id": "52fe4227c3a36847f8008003", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "James Waterston", "character": "Gerard Pitts", "id": 2697, "credit_id": "52fe4227c3a36847f8008007", "cast_id": 10, "profile_path": "/4uJlnCbWtcFWjUJf264WkfL05Ri.jpg", "order": 7}, {"name": "Norman Lloyd", "character": "Mr. Nolan", "id": 2698, "credit_id": "52fe4227c3a36847f800800b", "cast_id": 11, "profile_path": "/k4ofwRHZPeMSm8M3YWLeyoNvWTN.jpg", "order": 8}, {"name": "Kurtwood Smith", "character": "Mr. Perry", "id": 2115, "credit_id": "52fe4227c3a36847f800800f", "cast_id": 12, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 9}, {"name": "Carla Belver", "character": "Mrs. Perry", "id": 2699, "credit_id": "52fe4227c3a36847f8008013", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Leon Pownall", "character": "McAllister", "id": 2700, "credit_id": "52fe4227c3a36847f8008017", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "George Martin", "character": "Dr. Hager", "id": 2701, "credit_id": "52fe4227c3a36847f800801b", "cast_id": 15, "profile_path": "/lax77fIWSWrMYuS9zJi7VquNOeI.jpg", "order": 12}, {"name": "Alexandra Powers", "character": "Chris Noel", "id": 131183, "credit_id": "53af20edc3a3682ed8003d67", "cast_id": 25, "profile_path": "/bcZFHTddjsAR73j0rlRetktvEIE.jpg", "order": 13}, {"name": "Lara Flynn Boyle", "character": "Ginny Danburry", "id": 6684, "credit_id": "53af2114c3a3682edb003f20", "cast_id": 26, "profile_path": "/m6yHSVEjItgFkMAKB3zOdOoLITy.jpg", "order": 14}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f8007fe1", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 7.6, "runtime": 129}, "73937": {"poster_path": "/kBnR6jbFRnbSQTqLEcDpKd7FxK5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7, "overview": "Three avid bird watchers compete to spot the rarest birds in North America at a prestigious annual event.", "video": false, "id": 73937, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Big Year", "tagline": "Everyone is searching for something", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1053810", "adult": false, "backdrop_path": "/mP8q3nQIWPsj3NEQs8PKssvwPSk.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Deuce Three Productions", "id": 812}], "release_date": "2011-10-14", "popularity": 0.927311842437273, "original_title": "The Big Year", "budget": 41, "cast": [{"name": "Owen Wilson", "character": "Kenny Bostick", "id": 887, "credit_id": "52fe48b3c3a368484e10667b", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Steve Martin", "character": "Stu Preissler", "id": 67773, "credit_id": "52fe48b3c3a368484e10667f", "cast_id": 2, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 1}, {"name": "Jack Black", "character": "Brad Harris", "id": 70851, "credit_id": "52fe48b3c3a368484e106683", "cast_id": 3, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 2}, {"name": "Rashida Jones", "character": "Ellie", "id": 80591, "credit_id": "52fe48b3c3a368484e106687", "cast_id": 4, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 3}, {"name": "Jim Parsons", "character": "Crane", "id": 5374, "credit_id": "52fe48b3c3a368484e106697", "cast_id": 7, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 4}, {"name": "Anjelica Huston", "character": "Annie Auklet", "id": 5657, "credit_id": "52fe48b3c3a368484e10669b", "cast_id": 8, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Fuchs", "id": 1462, "credit_id": "52fe48b3c3a368484e10669f", "cast_id": 9, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "Kevin Pollak", "character": "Jim Gittelson", "id": 7166, "credit_id": "52fe48b3c3a368484e1066a3", "cast_id": 10, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 7}, {"name": "Rosamund Pike", "character": "Jessica", "id": 10882, "credit_id": "52fe48b3c3a368484e1066a7", "cast_id": 11, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 8}, {"name": "Joel McHale", "character": "Barry Loomis", "id": 74949, "credit_id": "52fe48b3c3a368484e1066ab", "cast_id": 12, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 9}, {"name": "Dianne Wiest", "character": "Brenda Harris", "id": 1902, "credit_id": "52fe48b3c3a368484e1066af", "cast_id": 13, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 10}, {"name": "Anthony Anderson", "character": "Bill Clemont", "id": 18471, "credit_id": "52fe48b3c3a368484e1066b3", "cast_id": 14, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 11}, {"name": "Brian Dennehy", "character": "Raymond Harris", "id": 6197, "credit_id": "52fe48b3c3a368484e1066b7", "cast_id": 15, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 12}, {"name": "June Squibb", "character": "Old Lady", "id": 35515, "credit_id": "52fe48b3c3a368484e1066bb", "cast_id": 16, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 13}, {"name": "Zahf Paroo", "character": "Prasad", "id": 58902, "credit_id": "54e658cd9251416f49000145", "cast_id": 17, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 14}, {"name": "Stacey Scowley", "character": "Vicki", "id": 98818, "credit_id": "54e658ea9251416f430000ec", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Michael Karl Richards", "character": "Vicki's Fianc\u00e9e", "id": 172833, "credit_id": "54e659039251416f4f000139", "cast_id": 19, "profile_path": "/t3JFAyGzTadJ8sB7F5BtC80YxXx.jpg", "order": 16}, {"name": "Paul Campbell", "character": "Tony", "id": 62909, "credit_id": "54e659299251416f4f00013e", "cast_id": 20, "profile_path": "/gmMt9mKExBd796rsfTuRvrP2SAu.jpg", "order": 17}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe48b3c3a368484e10668d", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 5.3, "runtime": 100}, "212": {"poster_path": "/9E0JXBuFkSCe2k3CPynUBFEpTnO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mortimer Brewster is a newspaperman and author known for his diatribes against marriage. We watch him being married at city hall in the opening scene. Now all that is required is a quick trip home to tell Mortimer's two maiden aunts. While trying to break the news, he finds out his aunts' hobby; killing lonely old men and burying them in the cellar. It gets worse.", "video": false, "id": 212, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Arsenic and Old Lace", "tagline": "She Passed Out On Cary! No Wonder . . . She's just discovered his favorite aunts have poisoned their 13th gentleman friend!", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0036613", "adult": false, "backdrop_path": "/cFZ45bhZRLI2fY08ULMe6NTd8e1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1944-09-23", "popularity": 0.443100210709386, "original_title": "Arsenic and Old Lace", "budget": 1120175, "cast": [{"name": "Cary Grant", "character": "Mortimer Brewster", "id": 2638, "credit_id": "52fe4227c3a36847f8008113", "cast_id": 7, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Priscilla Lane", "character": "Elaine Harper", "id": 2670, "credit_id": "52fe4227c3a36847f8008127", "cast_id": 12, "profile_path": "/29ry8Ct4sqs1dht9rn80TBPmuUA.jpg", "order": 1}, {"name": "Raymond Massey", "character": "Jonathan Brewster", "id": 2669, "credit_id": "52fe4227c3a36847f800811f", "cast_id": 10, "profile_path": "/hGum9pfA0NOSD1CYXyG4TYc3upQ.jpg", "order": 2}, {"name": "Jack Carson", "character": "Officer Patrick O'Hara", "id": 2672, "credit_id": "52fe4227c3a36847f800812b", "cast_id": 13, "profile_path": "/7Ys9ZSd9vspOkmWrFJkVDnknRCi.jpg", "order": 3}, {"name": "Edward Everett Horton", "character": "Mr. Witherspoon", "id": 2437, "credit_id": "52fe4227c3a36847f8008133", "cast_id": 17, "profile_path": "/yf4MoiK7wnb2dafruUvnVgtuxSN.jpg", "order": 4}, {"name": "Peter Lorre", "character": "Dr. Einstein", "id": 2094, "credit_id": "52fe4227c3a36847f8008123", "cast_id": 11, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 5}, {"name": "James Gleason", "character": "Lt. Rooney", "id": 30537, "credit_id": "52fe4227c3a36847f8008137", "cast_id": 18, "profile_path": "/7wG5IWZnaAObGJbdUPmJWNjS54s.jpg", "order": 6}, {"name": "Josephine Hull", "character": "Aunt Abby Brewster", "id": 2667, "credit_id": "52fe4227c3a36847f8008117", "cast_id": 8, "profile_path": "/zlT2oyVqCIwYF7v21bO6qIU67mA.jpg", "order": 7}, {"name": "Jean Adair", "character": "Aunt Martha Brewster", "id": 2668, "credit_id": "52fe4227c3a36847f800811b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "John Alexander", "character": "'Teddy Roosevelt' Brewster", "id": 2671, "credit_id": "52fe4227c3a36847f800812f", "cast_id": 16, "profile_path": "/pRfrSsL3exXrj0rjvx8CG2xhhuX.jpg", "order": 9}, {"name": "Grant Mitchell", "character": "Reverend Harper", "id": 30215, "credit_id": "52fe4227c3a36847f800813b", "cast_id": 19, "profile_path": "/cDZpWgH0qOF4L5nmZJzGIHE5xo3.jpg", "order": 10}, {"name": "Edward McNamara", "character": "Sergeant Brophy", "id": 2674, "credit_id": "52fe4227c3a36847f800813f", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Garry Owen", "character": "Taxi Cab Driver", "id": 117772, "credit_id": "52fe4227c3a36847f8008143", "cast_id": 21, "profile_path": "/mnRNfqFfQAUNxqfotr6T32iWWf2.jpg", "order": 12}, {"name": "John Ridgely", "character": "Officer Saunders", "id": 2673, "credit_id": "52fe4227c3a36847f8008147", "cast_id": 22, "profile_path": "/438JXIe6hZKXcao3X7mfYdcPOOc.jpg", "order": 13}, {"name": "Vaughan Glaser", "character": "Judge Cullman", "id": 247639, "credit_id": "52fe4227c3a36847f800814b", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Chester Clute", "character": "Dr. Gilchrist", "id": 30280, "credit_id": "52fe4227c3a36847f800814f", "cast_id": 24, "profile_path": "/9ZlAACiCnepfZS0dTAqqkdqWGse.jpg", "order": 15}, {"name": "Charles Lane", "character": "Reporter", "id": 29579, "credit_id": "52fe4227c3a36847f8008153", "cast_id": 25, "profile_path": "/wu5fTupk5atyJlCsHhXPGcdf8Mg.jpg", "order": 16}, {"name": "Edward McWade", "character": "Gibbs", "id": 96069, "credit_id": "52fe4227c3a36847f8008157", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Spencer Charters", "character": "Marriage License Clerk (uncredited)", "id": 34280, "credit_id": "52fe4227c3a36847f800815b", "cast_id": 27, "profile_path": "/67wOC0rjJG6tpXVQLZsOj6s7clP.jpg", "order": 18}, {"name": "Hank Mann", "character": "Photographer at Marriage License Office (uncredited)", "id": 13856, "credit_id": "52fe4227c3a36847f8008171", "cast_id": 31, "profile_path": null, "order": 19}], "directors": [{"name": "Frank Capra", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f8008103", "profile_path": "/hvPrtfKnJs9arck1zKGnG8uRkBC.jpg", "id": 2662}], "vote_average": 7.3, "runtime": 118}, "213": {"poster_path": "/rEHP8ylmL3pcsDUEA6Z5qhajYui.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13275000, "overview": "An advertising man is mistaken for a spy, triggering a deadly cross-country chase.", "video": false, "id": 213, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "North by Northwest", "tagline": "It's a deadly game of 'tag' and Cary Grant is 'it'...", "vote_count": 320, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053125", "adult": false, "backdrop_path": "/AplR1QRswlXiM65GoifX8sDadME.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1959-07-17", "popularity": 0.920950020112408, "original_title": "North by Northwest", "budget": 4000000, "cast": [{"name": "Cary Grant", "character": "Roger O. Thornhill", "id": 2638, "credit_id": "52fe4227c3a36847f80081cb", "cast_id": 3, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Eva Marie Saint", "character": "Eve Kendall", "id": 2639, "credit_id": "52fe4227c3a36847f80081cf", "cast_id": 4, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 1}, {"name": "James Mason", "character": "Phillip Vandamm", "id": 2091, "credit_id": "52fe4227c3a36847f80081d3", "cast_id": 5, "profile_path": "/b0ebmboBdaYvk8fn2CFCQl4TaW9.jpg", "order": 2}, {"name": "Jessie Royce Landis", "character": "Clara Thornhill", "id": 2640, "credit_id": "52fe4227c3a36847f80081d7", "cast_id": 6, "profile_path": "/o7NngdQPrvEfN3m3UVcjVPwC3Co.jpg", "order": 3}, {"name": "Philip Coolidge", "character": "Dr. Cross", "id": 2649, "credit_id": "52fe4227c3a36847f80081fb", "cast_id": 15, "profile_path": "/bjJ436taU3waod9H5PvTUHB1t6B.jpg", "order": 4}, {"name": "Doreen Lang", "character": "Maggie - Thornhill's Secretary", "id": 2745, "credit_id": "52fe4227c3a36847f800824d", "cast_id": 30, "profile_path": "/1t2LDiPbR4FHdEoCRgQnqDmV1Jv.jpg", "order": 5}, {"name": "Josephine Hutchinson", "character": "Vandamm's Sister aka Mrs. Townsend", "id": 2643, "credit_id": "52fe4227c3a36847f80081e3", "cast_id": 9, "profile_path": "/d394ymYaSSxTMlZY8d2S8brpWHz.jpg", "order": 6}, {"name": "Leo G. Carroll", "character": "The Professor", "id": 2642, "credit_id": "52fe4227c3a36847f80081df", "cast_id": 8, "profile_path": "/xTxzUMrwj00ZXa3iWOqP5w1xgO5.jpg", "order": 7}, {"name": "Philip Ober", "character": "Lester Townsend", "id": 2644, "credit_id": "52fe4227c3a36847f80081e7", "cast_id": 10, "profile_path": "/ney8KQ445hFtsb0fu3apsleKWmh.jpg", "order": 8}, {"name": "Adam Williams", "character": "Valerian", "id": 2645, "credit_id": "52fe4227c3a36847f80081eb", "cast_id": 11, "profile_path": "/eGdsCvVnd66A57JOEQ2SghzSBJi.jpg", "order": 9}, {"name": "Edward Platt", "character": "Victor Larrabee", "id": 2646, "credit_id": "52fe4227c3a36847f80081ef", "cast_id": 12, "profile_path": "/3ZEEg2FwYjDxJVzNU4nR03l0K2h.jpg", "order": 10}, {"name": "Robert Ellenstein", "character": "Licht", "id": 2647, "credit_id": "52fe4227c3a36847f80081f3", "cast_id": 13, "profile_path": "/hOyTZHJx2ZrbsQusSHsfEolORv0.jpg", "order": 11}, {"name": "Martin Landau", "character": "Leonard", "id": 2641, "credit_id": "52fe4227c3a36847f80081db", "cast_id": 7, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 12}, {"name": "Les Tremayne", "character": "Auctioneer", "id": 2648, "credit_id": "52fe4227c3a36847f80081f7", "cast_id": 14, "profile_path": "/4CN7uxPFPf1Kt2hB9f2kDcuM0za.jpg", "order": 13}, {"name": "Patrick McVey", "character": "Sergeant Flamm", "id": 2650, "credit_id": "52fe4227c3a36847f80081ff", "cast_id": 16, "profile_path": "/gkMUnuHc2oYtoj4HfXjVceC4eV2.jpg", "order": 14}, {"name": "Edward Binns", "character": "Captain Junket", "id": 2651, "credit_id": "52fe4227c3a36847f8008203", "cast_id": 17, "profile_path": "/uTPEszrP1ZgDVo1nkRIYwAeYHnO.jpg", "order": 15}, {"name": "Ken Lynch", "character": "Charley - Chicago Policeman", "id": 2652, "credit_id": "52fe4227c3a36847f8008207", "cast_id": 18, "profile_path": "/6zrOWruN0LoolGOSNdzKdJMiVkd.jpg", "order": 16}, {"name": "Nora Marlowe", "character": "Menacing housekeeper", "id": 153241, "credit_id": "52fe4227c3a36847f8008257", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Maudie Prickett", "character": "Hotel maid Elsie", "id": 151503, "credit_id": "52fe4227c3a36847f800825b", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Ned Glass", "character": "Ticket seller", "id": 18870, "credit_id": "52fe4227c3a36847f800825f", "cast_id": 34, "profile_path": "/dwfC6rmH6JkaNxuYEgi2Yh55n4w.jpg", "order": 19}, {"name": "Malcolm Atterbury", "character": "Man waiting for bus", "id": 115460, "credit_id": "52fe4227c3a36847f8008263", "cast_id": 35, "profile_path": "/A5bi0v9WuSt1Y6KyUnHvq6XKNHk.jpg", "order": 20}, {"name": "Bess Flowers", "character": "Plaza Hotel lounge patron", "id": 121323, "credit_id": "52fe4227c3a36847f8008267", "cast_id": 36, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 21}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f80081c1", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.3, "runtime": 136}, "214": {"poster_path": "/anWZLD1GS4oumMkf20o2xIMnvlp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163876815, "overview": "Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scramble to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.", "video": false, "id": 214, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Saw III", "tagline": "Suffering? You Haven't Seen Anything Yet...", "vote_count": 217, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489270", "adult": false, "backdrop_path": "/1AG4zhL1MPdJGwAp3GODLG1j1LY.jpg", "production_companies": [{"name": "Twisted Pictures", "id": 2061}, {"name": "Evolution Entertainment", "id": 23019}, {"name": "Lions Gate Films", "id": 35}], "release_date": "2006-10-27", "popularity": 0.761691864480091, "original_title": "Saw III", "budget": 10000000, "cast": [{"name": "Tobin Bell", "character": "John Kramer", "id": 2144, "credit_id": "52fe4227c3a36847f8008297", "cast_id": 3, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Angus Macfadyen", "character": "Jeff Reinhart", "id": 2464, "credit_id": "52fe4227c3a36847f800829b", "cast_id": 4, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 1}, {"name": "Dina Meyer", "character": "Kerry", "id": 2133, "credit_id": "52fe4227c3a36847f800829f", "cast_id": 5, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 2}, {"name": "Kim Roberts", "character": "Deborah", "id": 2676, "credit_id": "52fe4227c3a36847f80082a3", "cast_id": 6, "profile_path": "/buXKE9uKIjT4u0TZXv32zgqDCOR.jpg", "order": 3}, {"name": "Shawnee Smith", "character": "Amanda Young", "id": 2138, "credit_id": "52fe4227c3a36847f80082a7", "cast_id": 7, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 4}, {"name": "Bahar Soomekh", "character": "Dr. Lynn Denlon", "id": 2677, "credit_id": "52fe4227c3a36847f80082ab", "cast_id": 8, "profile_path": "/l3tlQiTmny4jjWidesht3nlt6sW.jpg", "order": 5}, {"name": "Donnie Wahlberg", "character": "Eric Matthews", "id": 2680, "credit_id": "54c3d40bc3a368789b0062f0", "cast_id": 19, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 6}, {"name": "Leigh Whannell", "character": "Adam", "id": 2128, "credit_id": "54c3d43f92514124ed005f65", "cast_id": 20, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 7}, {"name": "J. Larose", "character": "Troy", "id": 139631, "credit_id": "54c3d45c9251412446005e60", "cast_id": 21, "profile_path": "/fhWAhpZ1wpfO0tRI6NVxWzP3ci4.jpg", "order": 8}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "54c3d46ec3a3687c400105ec", "cast_id": 22, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 9}, {"name": "Costas Mandylor", "character": "Forensic Hoffman", "id": 36055, "credit_id": "54c3d4ae9251416e6000f72d", "cast_id": 23, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 10}], "directors": [{"name": "Darren Lynn Bousman", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f800828d", "profile_path": "/83Q6TkXPsq1VAqRPYb2NrqN3lI7.jpg", "id": 2675}], "vote_average": 6.1, "runtime": 108}, "215": {"poster_path": "/vC7ggR8njwtQOZRmrSvMtHqy9hx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152925093, "overview": "When a new murder victim is discovered with all the signs of Jigsaw's hand, Detective Eric Matthews begins a full investigation and apprehends Jigsaw with little effort. But for Jigsaw, getting caught is just another part of his plan. Eight more of his victims are already fighting for their lives and now it's time for Matthews to join the game...", "video": false, "id": 215, "genres": [{"id": 27, "name": "Horror"}], "title": "Saw II", "tagline": "Oh Yes... There Will Be Blood.", "vote_count": 252, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0432348", "adult": false, "backdrop_path": "/aVrbpwcyWffkeicKhB7h21M6A4I.jpg", "production_companies": [{"name": "Evolution Entertainment", "id": 23019}, {"name": "Twisted Pictures", "id": 2061}, {"name": "Lions Gate Films", "id": 35}, {"name": "Got Films", "id": 1053}], "release_date": "2005-10-28", "popularity": 1.12708186077459, "original_title": "Saw II", "budget": 4000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw", "id": 2144, "credit_id": "52fe4227c3a36847f8008325", "cast_id": 4, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Shawnee Smith", "character": "Amanda", "id": 2138, "credit_id": "52fe4227c3a36847f8008329", "cast_id": 5, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 1}, {"name": "Donnie Wahlberg", "character": "Eric Matthews", "id": 2680, "credit_id": "52fe4227c3a36847f800832d", "cast_id": 6, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 2}, {"name": "Erik Knudsen", "character": "Daniel Matthews", "id": 2681, "credit_id": "52fe4227c3a36847f8008331", "cast_id": 7, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 3}, {"name": "Franky G", "character": "Xavier", "id": 2682, "credit_id": "52fe4227c3a36847f8008335", "cast_id": 8, "profile_path": "/2C6BTj03PQlbCIzb1zAv9gcMr5l.jpg", "order": 4}, {"name": "Glenn Plummer", "character": "Jonas", "id": 2683, "credit_id": "52fe4227c3a36847f8008339", "cast_id": 9, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 5}, {"name": "Emmanuelle Vaugier", "character": "Addison", "id": 2684, "credit_id": "52fe4227c3a36847f800833d", "cast_id": 10, "profile_path": "/k8bjOJmREhKUHeUj33Sihnk89V9.jpg", "order": 6}, {"name": "Beverley Mitchell", "character": "Laura", "id": 2685, "credit_id": "52fe4227c3a36847f8008341", "cast_id": 11, "profile_path": "/y2Ewc5yedkG3ZjsturrY6CfMHSC.jpg", "order": 7}, {"name": "Tim Burd", "character": "Obi", "id": 2686, "credit_id": "52fe4227c3a36847f8008345", "cast_id": 12, "profile_path": "/inSi2m7IYXK7pUlEk2bPEvnri4J.jpg", "order": 8}, {"name": "Dina Meyer", "character": "Kerry", "id": 2133, "credit_id": "52fe4227c3a36847f8008349", "cast_id": 13, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 9}, {"name": "Lyriq Bent", "character": "Rigg", "id": 2687, "credit_id": "52fe4227c3a36847f800834d", "cast_id": 14, "profile_path": "/sPiFZOViNCGM9jWNDSr4G9FpWvD.jpg", "order": 10}, {"name": "Noam Jenkins", "character": "Michael", "id": 33668, "credit_id": "52fe4227c3a36847f800838d", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Tony Nappo", "character": "Gus", "id": 76528, "credit_id": "52fe4227c3a36847f8008391", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Kelly Jones", "character": "SWAT Member Pete", "id": 76529, "credit_id": "52fe4227c3a36847f8008395", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Vincent Rother", "character": "SWAT Member Joe", "id": 76530, "credit_id": "52fe4227c3a36847f8008399", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Darren Lynn Bousman", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f8008315", "profile_path": "/83Q6TkXPsq1VAqRPYb2NrqN3lI7.jpg", "id": 2675}], "vote_average": 6.2, "runtime": 92}, "8409": {"poster_path": "/l9UIm6rCHzfbMy6KY8ynjV4kLHX.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44350926, "overview": "When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.", "video": false, "id": 8409, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "A Man Apart", "tagline": "Love changes a man. Revenge tears him apart.", "vote_count": 76, "homepage": "http://www.newline.com/properties/manaparta.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0266465", "adult": false, "backdrop_path": "/3pAQqMg1bGPKA3OlPl8u8n1glcn.jpg", "production_companies": [{"name": "Newman/Tooley Films", "id": 16791}, {"name": "\"DIA\" Productions GmbH & Co. KG", "id": 37103}, {"name": "Joseph Nittolo Entertainment", "id": 21975}, {"name": "New Line Cinema", "id": 12}], "release_date": "2003-04-04", "popularity": 0.908304338694091, "original_title": "A Man Apart", "budget": 36000000, "cast": [{"name": "Vin Diesel", "character": "Sean Vetter", "id": 12835, "credit_id": "52fe44a5c3a36847f80a216f", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Larenz Tate", "character": "Demetrius Hicks", "id": 18291, "credit_id": "52fe44a5c3a36847f80a2173", "cast_id": 2, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 1}, {"name": "Timothy Olyphant", "character": "Hollywood Jack", "id": 18082, "credit_id": "52fe44a5c3a36847f80a2177", "cast_id": 3, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 2}, {"name": "Geno Silva", "character": "Memo Lucero", "id": 54864, "credit_id": "52fe44a5c3a36847f80a217b", "cast_id": 4, "profile_path": "/K9Nban8CdJltJqn8GXgnZbgTLc.jpg", "order": 3}, {"name": "Jacqueline Obradors", "character": "Stacy Vetter", "id": 49818, "credit_id": "52fe44a5c3a36847f80a217f", "cast_id": 5, "profile_path": "/p7QydGjTdM6sya62gSvMNMEqMT4.jpg", "order": 4}, {"name": "Steve Eastin", "character": "Ty Frost", "id": 9276, "credit_id": "52fe44a5c3a36847f80a2183", "cast_id": 6, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 5}, {"name": "Juan Fern\u00e1ndez", "character": "Mateo Santos", "id": 1607, "credit_id": "52fe44a5c3a36847f80a2187", "cast_id": 7, "profile_path": "/kA5I0SunYlTP9YJYwOrs4aCarCH.jpg", "order": 6}, {"name": "Jeff Kober", "character": "Pomona Joe", "id": 54865, "credit_id": "52fe44a5c3a36847f80a218b", "cast_id": 8, "profile_path": "/eMp9ZsC77yddwW4SMiuZ7xOd0GS.jpg", "order": 7}, {"name": "Marco Rodr\u00edguez", "character": "Hondo", "id": 73132, "credit_id": "5455e6960e0a2648d6006768", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Mike Moroff", "character": "Gustavo Leon", "id": 100260, "credit_id": "5455e6a8c3a3680b76001e05", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Emilio Rivera", "character": "Garza", "id": 53257, "credit_id": "5455e6bdc3a3681473006522", "cast_id": 30, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 10}, {"name": "George Sharperson", "character": "Big Sexy", "id": 157058, "credit_id": "5455e6d00e0a2648cf0069cd", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Malieek Straughter", "character": "Overdose", "id": 130689, "credit_id": "5455e6e40e0a2648cb006891", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Alice Amter", "character": "Marta", "id": 61081, "credit_id": "5455e6f5c3a368147c006738", "cast_id": 33, "profile_path": "/4E9f0lK8u91WpS9tEZfZFWyCxcz.jpg", "order": 13}, {"name": "Jim Boeke", "character": "Bad Cop", "id": 1380680, "credit_id": "5455e7070e0a2648c5006afe", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe44a5c3a36847f80a21df", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 6.0, "runtime": 109}, "65754": {"poster_path": "/voxRWFTtagLiqnJQs9tWQLB0MN.jpg", "production_countries": [{"iso_3166_1": "NO", "name": "Norway"}, {"iso_3166_1": "SE", "name": "Sweden"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102515793, "overview": "This English-language adaptation of the Swedish novel by Stieg Larsson follows a disgraced journalist, Mikael Blomkvist, as he investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.", "video": false, "id": 65754, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl with the Dragon Tattoo", "tagline": "Evil shall with evil be expelled.", "vote_count": 877, "homepage": "http://dragontattoo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1568346", "adult": false, "backdrop_path": "/1fk2xS5hRkblBuag5JXZkmE8pg6.jpg", "production_companies": [{"name": "Ground Control", "id": 47479}, {"name": "Columbia Pictures", "id": 5}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Film Rites", "id": 8083}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Yellow Bird", "id": 33817}], "release_date": "2011-12-21", "popularity": 1.09154150658762, "original_title": "The Girl with the Dragon Tattoo", "budget": 100000000, "cast": [{"name": "Daniel Craig", "character": "Mikael Blomkvist", "id": 8784, "credit_id": "52fe4718c3a368484e0b4c4d", "cast_id": 2, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Rooney Mara", "character": "Lisbeth Salander", "id": 108916, "credit_id": "52fe4718c3a368484e0b4c55", "cast_id": 4, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Henrik Vanger", "id": 290, "credit_id": "52fe4718c3a368484e0b4c5d", "cast_id": 6, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Martin Vanger", "id": 1640, "credit_id": "52fe4718c3a368484e0b4c51", "cast_id": 3, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Robin Wright", "character": "Erika Berger", "id": 32, "credit_id": "52fe4718c3a368484e0b4c59", "cast_id": 5, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 4}, {"name": "Steven Berkoff", "character": "Dirch Frode", "id": 782, "credit_id": "52fe4718c3a368484e0b4c6d", "cast_id": 9, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 5}, {"name": "Joely Richardson", "character": "Anita Vanger", "id": 20810, "credit_id": "52fe4718c3a368484e0b4c71", "cast_id": 10, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 6}, {"name": "Embeth Davidtz", "character": "Annika Blomkvist Giannini", "id": 6368, "credit_id": "533983189251417d9b004a73", "cast_id": 28, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 7}, {"name": "Geraldine James", "character": "Cecilia Vanger", "id": 11855, "credit_id": "52fe4718c3a368484e0b4c75", "cast_id": 11, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 8}, {"name": "Goran Vi\u0161nji\u0107", "character": "Dragan Armansky", "id": 5725, "credit_id": "52fe4718c3a368484e0b4c79", "cast_id": 12, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 9}, {"name": "Elodie Yung", "character": "Miriam Wu", "id": 78147, "credit_id": "52fe4718c3a368484e0b4c7d", "cast_id": 13, "profile_path": "/pbhMOW06QNPujrHM2aNX2TS0eXH.jpg", "order": 10}, {"name": "Julian Sands", "character": "Young Henrik Vanger", "id": 6104, "credit_id": "52fe4718c3a368484e0b4c81", "cast_id": 14, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 11}, {"name": "Ulf Friberg", "character": "Hans-Erik Wennerstr\u00f6m", "id": 255653, "credit_id": "52fe4718c3a368484e0b4c91", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Gustaf Hammarsten", "character": "Young Harald Vanger", "id": 11040, "credit_id": "52fe4718c3a368484e0b4c95", "cast_id": 18, "profile_path": "/zG4x2kuRTS3bx5l4cATSk98WMof.jpg", "order": 13}, {"name": "David Dencik", "character": "Young Gustaf Morell", "id": 93236, "credit_id": "52fe4718c3a368484e0b4c99", "cast_id": 19, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 14}, {"name": "Alan Dale", "character": "Detective Isaksson", "id": 52760, "credit_id": "52fe4718c3a368484e0b4c9d", "cast_id": 20, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 15}, {"name": "Yorick van Wageningen", "character": "Nils Bjurman", "id": 31387, "credit_id": "53beb3180e0a26157f0045da", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Donald Sumpter", "character": "Detective Inspector Gustaf Morell", "id": 20425, "credit_id": "53beb35f0e0a26158f004297", "cast_id": 30, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 17}, {"name": "Bengt C.W. Carlsson", "character": "Holger Palmgren", "id": 111786, "credit_id": "53beb3850e0a26158f00429d", "cast_id": 31, "profile_path": "/9QKuOwCNh3SBcKIbnxAqinhIIia.jpg", "order": 18}, {"name": "Tony Way", "character": "Plague", "id": 147255, "credit_id": "53beb39a0e0a26158f0042a1", "cast_id": 32, "profile_path": "/uk8OCXbEGXnkmKvf7EgVzfKq918.jpg", "order": 19}, {"name": "Inga Landgr\u00e9", "character": "Isabella Vanger", "id": 6661, "credit_id": "53beb3b90e0a26157c004359", "cast_id": 33, "profile_path": "/tTMBmDtvEBNOGl9JpvV9WXAqYw2.jpg", "order": 20}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4718c3a368484e0b4c49", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.8, "runtime": 158}, "219": {"poster_path": "/3FCPHBd0F5Hva2SaUZMVj7Qj8XZ.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 85582407, "overview": "Raimunda (Pen\u00e9lope Cruz) works and lives Madrid with her husband Paco and daughter Paula. Her sister Sole (Lola Due\u00f1as) lives nearby and they both miss their mother Irene (Carmen Maura), who died several years ago in a house fire along with their father. A former neighbor from their hometown reports that she has seen the ghost of Irene and both daughters do not believe her. After a murder and a family tragedy, Irene's spirit materializes around her daughters to help comfort them.", "video": false, "id": 219, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Volver", "tagline": "Return.", "vote_count": 84, "homepage": "http://www.volver-lapelicula.com", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0441909", "adult": false, "backdrop_path": "/2ZqUuollwvBiNvGHdxBVngiP0YG.jpg", "production_companies": [{"name": "El Deseo", "id": 49}], "release_date": "2006-03-16", "popularity": 0.286243308524025, "original_title": "Volver", "budget": 12899867, "cast": [{"name": "Pen\u00e9lope Cruz", "character": "Raimunda", "id": 955, "credit_id": "52fe4228c3a36847f80085d7", "cast_id": 3, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 0}, {"name": "Carmen Maura", "character": "Abuela Irene", "id": 2744, "credit_id": "52fe4228c3a36847f80085db", "cast_id": 4, "profile_path": "/vVFMLSBC9c817FGGoS4ZHLdwyKE.jpg", "order": 1}, {"name": "Lola Due\u00f1as", "character": "Sole", "id": 2759, "credit_id": "52fe4228c3a36847f80085df", "cast_id": 5, "profile_path": "/r5rHHPDV7flRGF2qQ885VsKTp5K.jpg", "order": 2}, {"name": "Blanca Portillo", "character": "Agustina", "id": 3480, "credit_id": "52fe4228c3a36847f80085e3", "cast_id": 6, "profile_path": "/i07cqKKYOi1MydmthPnFNpzmkx.jpg", "order": 3}, {"name": "Yohana Cobo", "character": "Paula", "id": 3481, "credit_id": "52fe4228c3a36847f80085e7", "cast_id": 7, "profile_path": "/AaSEX1BHvIAw13LiJnPMkb4CiFj.jpg", "order": 4}, {"name": "Chus Lampreave", "character": "T\u00eda Paula", "id": 3482, "credit_id": "52fe4228c3a36847f80085eb", "cast_id": 8, "profile_path": "/dwoyRWC5Nyo2UgE7M6AjqJWSAAD.jpg", "order": 5}, {"name": "Antonio de la Torre", "character": "Paco", "id": 3483, "credit_id": "52fe4228c3a36847f80085ef", "cast_id": 9, "profile_path": "/6gLwqdiKMB2s7ymeRAaHZlvGjvR.jpg", "order": 6}, {"name": "Carlos Blanco", "character": "Emilio", "id": 4363, "credit_id": "52fe4228c3a36847f80085f3", "cast_id": 10, "profile_path": "/obYflQjJ1LUCSETiBfoE8HCCnNC.jpg", "order": 7}, {"name": "Mar\u00eda Isabel D\u00edaz", "character": "Regina", "id": 4364, "credit_id": "52fe4228c3a36847f80085f7", "cast_id": 11, "profile_path": "/1emMA2qcYTa8ysOUJ8j99C0kvSb.jpg", "order": 8}, {"name": "Neus Sanz", "character": "In\u00e9s", "id": 4365, "credit_id": "52fe4228c3a36847f80085fb", "cast_id": 12, "profile_path": "/lIbDFkhcWaDnX8awmKcIuaLfvaq.jpg", "order": 9}, {"name": "Leandro Rivera", "character": "Auxiliar", "id": 4366, "credit_id": "52fe4228c3a36847f80085ff", "cast_id": 13, "profile_path": "/p1i0CY0lsr6mckL6Q4BWNdOx7RY.jpg", "order": 10}, {"name": "Yolanda Ramos", "character": "Presentadora TV", "id": 4367, "credit_id": "52fe4228c3a36847f8008603", "cast_id": 14, "profile_path": "/7vZc4FXla6k3jFxKjvR9QduH4W6.jpg", "order": 11}, {"name": "Carlos Garc\u00eda Cambero", "character": "Carlos", "id": 4368, "credit_id": "52fe4228c3a36847f8008607", "cast_id": 15, "profile_path": "/osxvC4fT68MtQioV7c3LWTJTNVV.jpg", "order": 12}, {"name": "Natalia Roig", "character": "Vecina", "id": 4369, "credit_id": "52fe4228c3a36847f800860b", "cast_id": 16, "profile_path": "/dwXB0OgcQ63a9AbCIZxxygQtECC.jpg", "order": 13}, {"name": "Eli Iranzo", "character": "Vecina", "id": 4370, "credit_id": "52fe4228c3a36847f800860f", "cast_id": 17, "profile_path": "/bvgII5PnGAOpnQN2Y57lREGVFYs.jpg", "order": 14}, {"name": "Fanny de Castro", "character": "Vecina", "id": 4371, "credit_id": "52fe4228c3a36847f8008613", "cast_id": 18, "profile_path": "/lEZydmsCWbAfNPHgYw5t00B58Ab.jpg", "order": 15}, {"name": "Concha Gal\u00e1n", "character": "Vecina", "id": 4372, "credit_id": "52fe4228c3a36847f8008617", "cast_id": 19, "profile_path": "/m2XgSzCTbgPLCI7C2qfRDsBGMnq.jpg", "order": 16}, {"name": "Magdalena Brotto", "character": "Vecina", "id": 4373, "credit_id": "52fe4228c3a36847f800861b", "cast_id": 20, "profile_path": "/mcJA4kPJtxjzsiYBgSHTDxVEOT1.jpg", "order": 17}, {"name": "Pepa Aniorte", "character": "Vecina", "id": 4374, "credit_id": "52fe4228c3a36847f800861f", "cast_id": 21, "profile_path": "/AuEBh4Nec1ERu714NmChwpp3ta7.jpg", "order": 18}, {"name": "Isabel Ay\u00facar", "character": "Vecina", "id": 4375, "credit_id": "52fe4228c3a36847f8008623", "cast_id": 22, "profile_path": "/Awt03qgWvCCrF67G2SEYe5yFTuF.jpg", "order": 19}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe4228c3a36847f80085cd", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 7.3, "runtime": 121}, "8413": {"poster_path": "/vo02iJLsem3VCJ2TNvSzRiJMpAE.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47073851, "overview": "In the year 2047 a group of astronauts are sent to investigate and salvage the long lost starship \"Event Horizon\". The ship disappeared mysteriously 7 years before on its maiden voyage and with its return comes even more mystery as the crew of the \"Lewis and Clark\" discover the real truth behind its disappearance and something even more terrifying.", "video": false, "id": 8413, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Event Horizon", "tagline": "Infinite Space - Infinite Terror", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0119081", "adult": false, "backdrop_path": "/kOO8XuIjhfhinxVKMFiAgs91k0F.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Paramount Pictures", "id": 4}, {"name": "Golar Productions", "id": 2484}], "release_date": "1997-08-14", "popularity": 1.09688328272271, "original_title": "Event Horizon", "budget": 60000000, "cast": [{"name": "Laurence Fishburne", "character": "Captain Miller", "id": 2975, "credit_id": "52fe44a6c3a36847f80a22b1", "cast_id": 8, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 0}, {"name": "Sam Neill", "character": "Dr. William Weir", "id": 4783, "credit_id": "52fe44a6c3a36847f80a22b5", "cast_id": 9, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 1}, {"name": "Kathleen Quinlan", "character": "Peters, Med Tech", "id": 8183, "credit_id": "52fe44a6c3a36847f80a22b9", "cast_id": 10, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 2}, {"name": "Joely Richardson", "character": "Lt. Starck", "id": 20810, "credit_id": "52fe44a6c3a36847f80a22bd", "cast_id": 11, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 3}, {"name": "Richard T. Jones", "character": "Cooper", "id": 55755, "credit_id": "52fe44a6c3a36847f80a22c1", "cast_id": 12, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 4}, {"name": "Jack Noseworthy", "character": "Justin", "id": 22133, "credit_id": "52fe44a6c3a36847f80a22c5", "cast_id": 13, "profile_path": "/g30R5ax6RSN8OSdsWZnG2IhLDFT.jpg", "order": 5}, {"name": "Jason Isaacs", "character": "D.J.", "id": 11355, "credit_id": "52fe44a6c3a36847f80a22c9", "cast_id": 14, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 6}, {"name": "Sean Pertwee", "character": "Smith", "id": 28848, "credit_id": "52fe44a6c3a36847f80a22cd", "cast_id": 15, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 7}, {"name": "Peter Marinker", "character": "Captain John Kilpack", "id": 93477, "credit_id": "52fe44a6c3a36847f80a22d1", "cast_id": 16, "profile_path": "/yY3zB4Jof1tfDcr4hJLqdHeEQZK.jpg", "order": 8}, {"name": "Holley Chant", "character": "Claire", "id": 1052953, "credit_id": "52fe44a6c3a36847f80a22d5", "cast_id": 17, "profile_path": "/rX4ofv9ogqXl3cm6t1tmvCj3l37.jpg", "order": 9}, {"name": "Barclay Wright", "character": "Denny Peters", "id": 575916, "credit_id": "52fe44a6c3a36847f80a22d9", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Noah Huntley", "character": "Burning Man / Edward Corrick", "id": 2050, "credit_id": "52fe44a6c3a36847f80a22dd", "cast_id": 19, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 11}, {"name": "Robert Jezek", "character": "Rescue 1 Technician", "id": 189445, "credit_id": "52fe44a6c3a36847f80a22e1", "cast_id": 20, "profile_path": null, "order": 12}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44a6c3a36847f80a228f", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 6.5, "runtime": 96}, "223": {"poster_path": "/eIkJjEbQcPasYvoNHKueFrfgpX4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43455, "overview": "A self-conscious bride is tormented by the memory of her husband's dead first wife.", "video": false, "id": 223, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Rebecca", "tagline": "The shadow of this woman darkened their love.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032976", "adult": false, "backdrop_path": "/ao0OWpQPMy3lagLwksWyciO6Iaj.jpg", "production_companies": [{"name": "Selznick International Pictures", "id": 1553}], "release_date": "1940-04-12", "popularity": 0.59804072628585, "original_title": "Rebecca", "budget": 1288000, "cast": [{"name": "Laurence Olivier", "character": "'Maxim' de Winter", "id": 3359, "credit_id": "52fe4228c3a36847f80088b3", "cast_id": 10, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 0}, {"name": "Joan Fontaine", "character": "Mrs. de Winter (2nd)", "id": 3360, "credit_id": "52fe4228c3a36847f80088b7", "cast_id": 11, "profile_path": "/qvmpsYyTlLrqet22UnOjAweSPd8.jpg", "order": 1}, {"name": "George Sanders", "character": "Jack Favell", "id": 3361, "credit_id": "52fe4228c3a36847f80088bb", "cast_id": 12, "profile_path": "/6fvK8vUTgSMRvuw77PjjuIOMl6.jpg", "order": 2}, {"name": "Judith Anderson", "character": "Mrs. Danvers", "id": 3362, "credit_id": "52fe4228c3a36847f80088bf", "cast_id": 13, "profile_path": "/ryTVWN7XI2WejLsFhicfx3yJ6y9.jpg", "order": 3}, {"name": "Nigel Bruce", "character": "Major Giles Lacy", "id": 3363, "credit_id": "52fe4228c3a36847f80088c3", "cast_id": 14, "profile_path": "/ljpZKxRAHC2GE2HiBqtaKCWtXPf.jpg", "order": 4}, {"name": "Reginald Denny", "character": "Frank Crawley", "id": 3364, "credit_id": "52fe4228c3a36847f80088c7", "cast_id": 15, "profile_path": "/s8YBz4bSkFkLDvVLJeZcbrLCff8.jpg", "order": 5}, {"name": "Gladys Cooper", "character": "Beatrice Lacy", "id": 3366, "credit_id": "52fe4228c3a36847f80088cb", "cast_id": 17, "profile_path": "/muj0IC75UJn841IME4LILMMFwtc.jpg", "order": 6}, {"name": "Florence Bates", "character": "Mrs. Edythe Van Hopper", "id": 3367, "credit_id": "52fe4228c3a36847f80088cf", "cast_id": 18, "profile_path": "/88b2ljcVKqcIiInibVvQWriXRLP.jpg", "order": 7}, {"name": "Leo G. Carroll", "character": "Dr. Baker", "id": 2642, "credit_id": "52fe4228c3a36847f80088d3", "cast_id": 19, "profile_path": "/xTxzUMrwj00ZXa3iWOqP5w1xgO5.jpg", "order": 8}, {"name": "Leonard Carey", "character": "Ben", "id": 3368, "credit_id": "52fe4228c3a36847f80088d7", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Lumsden Hare", "character": "Tabbs", "id": 3369, "credit_id": "52fe4228c3a36847f80088db", "cast_id": 21, "profile_path": "/26Yga7CHRIbYzFWXB3K3wWSz9YY.jpg", "order": 10}, {"name": "Edward Fielding", "character": "Frith", "id": 3370, "credit_id": "52fe4228c3a36847f80088df", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Forrester Harvey", "character": "Chalcroft", "id": 3371, "credit_id": "52fe4228c3a36847f80088e3", "cast_id": 23, "profile_path": "/fmvJQjFEgDY8fVTl9zCO5QxZRxR.jpg", "order": 12}, {"name": "Philip Winter", "character": "Robert", "id": 3372, "credit_id": "52fe4228c3a36847f80088e7", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Alfred Hitchcock", "character": "Man outside phone booth", "id": 2636, "credit_id": "52fe4228c3a36847f80088f7", "cast_id": 27, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 14}, {"name": "C. Aubrey Smith", "character": "Colonel Julyan", "id": 2438, "credit_id": "52fe4228c3a36847f8008907", "cast_id": 30, "profile_path": "/u00cKiTSCbCeFLaTPL6ykgqB5AB.jpg", "order": 15}, {"name": "Billy Bevan", "character": "Policeman", "id": 100763, "credit_id": "52fe4228c3a36847f800891d", "cast_id": 34, "profile_path": "/aDXzvZ1h8IGTPNO01WEEyjMpSwS.jpg", "order": 16}, {"name": "Gino Corrado", "character": "Manager, Princesse Hotel", "id": 9096, "credit_id": "52fe4228c3a36847f8008921", "cast_id": 35, "profile_path": "/s9WKkWJFUNgbPhczUP4sD0OA4I4.jpg", "order": 17}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4228c3a36847f8008885", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.1, "runtime": 130}, "16608": {"poster_path": "/tfDvfeCRdwQ1XwQ7o1FotVuAxje.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 1900725, "overview": "Set in the Australian outback in the 1880s, the movie follows the series of events following the horrific rape and murder of the Hopkins family, allegedly committed by the infamous Burns brothers gang. Captain Morris Stanley captures Charlie Burns and gives him 9 days to kill his older dangerous psychopathic brother, or else they'll hang his younger mentally slow brother on Christmas Day.", "video": false, "id": 16608, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "The Proposition", "tagline": "This land will be civilized.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421238", "adult": false, "backdrop_path": "/wVlW9mO5ffW5J9eXB0XkQc0GNTo.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "Surefire Film Productions", "id": 3205}, {"name": "Autonomous", "id": 2326}, {"name": "Pictures in Paradise", "id": 3207}, {"name": "Pacific Film and Television Commission", "id": 4024}, {"name": "Film Consortium", "id": 20455}, {"name": "National Lottery through UK Film Council", "id": 20456}], "release_date": "2005-10-06", "popularity": 0.602781688618359, "original_title": "The Proposition", "budget": 2000000, "cast": [{"name": "Guy Pearce", "character": "Charlie Burns", "id": 529, "credit_id": "52fe46dd9251416c75086245", "cast_id": 1, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Ray Winstone", "character": "Captain Morris Stanley", "id": 5538, "credit_id": "52fe46dd9251416c75086249", "cast_id": 2, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 1}, {"name": "Emily Watson", "character": "Martha Stanley", "id": 1639, "credit_id": "52fe46dd9251416c7508624d", "cast_id": 3, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 2}, {"name": "Danny Huston", "character": "Arthur Burns", "id": 6413, "credit_id": "52fe46de9251416c75086251", "cast_id": 4, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "David Wenham", "character": "Eden Fletcher", "id": 1371, "credit_id": "52fe46de9251416c75086255", "cast_id": 5, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 4}, {"name": "John Hurt", "character": "Jellon Lamb", "id": 5049, "credit_id": "52fe46de9251416c75086259", "cast_id": 7, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 5}, {"name": "Richard Wilson", "character": "Mike Burns", "id": 1093948, "credit_id": "54143213c3a3687dc5001a7f", "cast_id": 46, "profile_path": null, "order": 6}, {"name": "Noah Taylor", "character": "Brian O'Leary", "id": 1284, "credit_id": "530f4bc19251417378000bec", "cast_id": 31, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 7}, {"name": "Jeremy Madrona", "character": "Asian Prostitute", "id": 1297074, "credit_id": "530f4bd6925141734a000c25", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Jae Mamuyac", "character": "Asian Prostitute", "id": 1297075, "credit_id": "530f4be69251417384000b2b", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Mick Roughan", "character": "Mad Jack Bradshaw", "id": 152537, "credit_id": "530f4bfe9251417332000cad", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Shane Watt", "character": "John Gordon", "id": 1297078, "credit_id": "530f4c0d925141733e000bc8", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Robert Morgan", "character": "Sergeant Lawrence", "id": 126200, "credit_id": "530f4c2b925141734a000c30", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "David Gulpilil", "character": "Jacko", "id": 53023, "credit_id": "530f4c3b9251417332000cb9", "cast_id": 37, "profile_path": "/pns5wVD4GNEPo0FwtZHrjGX6j5n.jpg", "order": 13}, {"name": "Bryan Probets", "character": "Officer Dunn", "id": 1014587, "credit_id": "530f4c4d9251417390000bc6", "cast_id": 38, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 14}, {"name": "Oliver Ackland", "character": "Patrick Hopkins", "id": 191661, "credit_id": "530f4c61925141739b000bc9", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Danny Huston", "character": "Arthur Burns", "id": 6413, "credit_id": "530f4c749251417390000bca", "cast_id": 40, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 16}, {"name": "David Vallon", "character": "Tom Cox", "id": 1262385, "credit_id": "530f4c889251417384000b40", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Daniel Parker", "character": "Henry Clark", "id": 128661, "credit_id": "530f4c96925141736c000c1a", "cast_id": 42, "profile_path": null, "order": 18}], "directors": [{"name": "John Hillcoat", "department": "Directing", "job": "Director", "credit_id": "52fe46de9251416c7508625f", "profile_path": "/4VqHE3mBPSUpR2ep7vpx27arFiY.jpg", "id": 53333}], "vote_average": 7.3, "runtime": 104}, "123105": {"poster_path": "/qEQRsxwgHNDVkbiihdCSlK0dc4U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two million fish washed ashore. One thousand blackbirds dropped from the sky. On July 4, 2009 a deadly menace swept through the quaint seaside town of Claridge, Maryland, but the harrowing story of what happened that Independence Day has never been told\u2014until now. The authorities believed they had buried the truth about the tragedy that claimed over 700 human lives. Now, three years later, a reporter has emerged with footage revealing the cover-up and an unimaginable killer: a mysterious parasitic outbreak. Told from the perspective of those who were there and saw what happened, The Bay unfolds over 24 hours through people's iPhones, Androids, 911 calls, webcams, and whatever else could be used to document the nightmare in Claridge. What follows is a nerve-shredding tale of a small town plunged into absolute terror.", "video": false, "id": 123105, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Bay", "tagline": "Panic feeds on fear.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1713476", "adult": false, "backdrop_path": "/n0To46rlvlFkSGxrDbFkwDDdYWl.jpg", "production_companies": [{"name": "Baltimore Pictures", "id": 11407}, {"name": "Hydraulx", "id": 10936}, {"name": "Automatik Entertainment", "id": 7625}], "release_date": "2012-11-02", "popularity": 0.297987580995118, "original_title": "The Bay", "budget": 0, "cast": [{"name": "Kristen Connolly", "character": "Stephanie", "id": 210824, "credit_id": "52fe4a8dc3a368484e159ea1", "cast_id": 3, "profile_path": "/lP7rReayiC5hDhJJjCwUy3IFfTC.jpg", "order": 0}, {"name": "Will Rogers", "character": "Alex", "id": 1188239, "credit_id": "53725071c3a368436e00129f", "cast_id": 21, "profile_path": "/aVnWDzEc9z6Kb8Ou5dQ1KRoazXL.jpg", "order": 1}, {"name": "Michael Beasley", "character": "Officer Jimson", "id": 143261, "credit_id": "52fe4a8dc3a368484e159ea9", "cast_id": 5, "profile_path": "/mk8jUlzVPUsKSQjHi6ATtaCtb47.jpg", "order": 2}, {"name": "Christopher Denham", "character": "Sam", "id": 61510, "credit_id": "52fe4a8dc3a368484e159ead", "cast_id": 6, "profile_path": "/oPnHnLW51n9qFtCxh4phejRm6xe.jpg", "order": 3}, {"name": "Kenny Alfonso", "character": "Doctor Michaels", "id": 1088939, "credit_id": "52fe4a8dc3a368484e159eb5", "cast_id": 8, "profile_path": "/eNWxCXO908YNdhFNQ3INyka5p4J.jpg", "order": 4}, {"name": "Kether Donohue", "character": "Donna Thompson", "id": 588972, "credit_id": "52fe4a8dc3a368484e159eb9", "cast_id": 9, "profile_path": "/v2wtqKngHKHzeASddJWpFShWVtq.jpg", "order": 5}, {"name": "Jane McNeill", "character": "Victim #1", "id": 1078610, "credit_id": "52fe4a8dc3a368484e159ea5", "cast_id": 4, "profile_path": "/r8ss9Gv9zABNrc3pz4k06THuhw6.jpg", "order": 6}, {"name": "Anthony Reynolds", "character": "Steve Slattery - Homeland Security Officer", "id": 1088938, "credit_id": "52fe4a8dc3a368484e159eb1", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Frank Deal", "character": "Mayor Stockman", "id": 171886, "credit_id": "53725067c3a3684343001348", "cast_id": 20, "profile_path": "/k0Gn9ZgMuUQ0jFeVuvK6Vyh14ZU.jpg", "order": 8}, {"name": "Kimberly Campbell", "character": "Nurse Rebecca", "id": 542, "credit_id": "5372507dc3a36843510013a9", "cast_id": 22, "profile_path": "/sgIVwvbipevAf9SplOOctJRuP36.jpg", "order": 9}, {"name": "Lamya Jezek", "character": "Ms. Rosenblatt", "id": 1331647, "credit_id": "53a163ab0e0a2665470028cb", "cast_id": 29, "profile_path": null, "order": 10}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe4a8dc3a368484e159e97", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 5.3, "runtime": 84}, "226": {"poster_path": "/3qHZtLvPDgdSBxyrIXgYgbiib63.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11540607, "overview": "Female born, Teena Brandon adopts his male identity of Brandon Teena and attempts to find himself and love in Nebraska.", "video": false, "id": 226, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Boys Don't Cry", "tagline": "A true story about finding the courage to be yourself.", "vote_count": 61, "homepage": "http://www.foxsearchlight.com/boysdontcry/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0171804", "adult": false, "backdrop_path": "/nriBinb7Y3Bm6LdbmOC0mFxSm8d.jpg", "production_companies": [{"name": "IFC Films", "id": 307}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "The Independent Film Channel Productions", "id": 54}, {"name": "Killer Films", "id": 1422}, {"name": "Hart-Sharp Entertainment", "id": 11351}], "release_date": "1999-09-02", "popularity": 0.761935828078014, "original_title": "Boys Don't Cry", "budget": 2000000, "cast": [{"name": "Hilary Swank", "character": "Brandon Teena", "id": 448, "credit_id": "52fe4229c3a36847f8008a9d", "cast_id": 4, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 0}, {"name": "Chlo\u00eb Sevigny", "character": "Lana Tisdel", "id": 2838, "credit_id": "52fe4229c3a36847f8008aa1", "cast_id": 5, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "John Lotter", "id": 133, "credit_id": "52fe4229c3a36847f8008aa5", "cast_id": 6, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Brendan Sexton III", "character": "Tom Nissen", "id": 2839, "credit_id": "52fe4229c3a36847f8008aa9", "cast_id": 7, "profile_path": "/kQsOIQuGcqwdpolSEzLV7RfYVsV.jpg", "order": 3}, {"name": "Alicia Goranson", "character": "Candace", "id": 1346644, "credit_id": "53d48515c3a3686b8b002db0", "cast_id": 44, "profile_path": null, "order": 4}, {"name": "Alison Folland", "character": "Kate", "id": 2841, "credit_id": "52fe4229c3a36847f8008aad", "cast_id": 8, "profile_path": "/j4LkS9pycdpKECqZ4bCTqMtZrHA.jpg", "order": 5}, {"name": "Jeannetta Arnette", "character": "Lana's Mom", "id": 2842, "credit_id": "52fe4229c3a36847f8008ab1", "cast_id": 9, "profile_path": "/uVaqZLhpTh5OmJDFSv7wim63sV1.jpg", "order": 6}, {"name": "Rob Campbell", "character": "Brian", "id": 2843, "credit_id": "52fe4229c3a36847f8008ab5", "cast_id": 10, "profile_path": "/hRJihsQgFfm86htdiM6xL4BpZE9.jpg", "order": 7}, {"name": "Matt McGrath", "character": "Lonny", "id": 2844, "credit_id": "52fe4229c3a36847f8008ab9", "cast_id": 11, "profile_path": "/zrw8HWHNWvNmBGHBYZkicaNJg9A.jpg", "order": 8}, {"name": "Cheyenne Rushing", "character": "Nicole", "id": 2845, "credit_id": "52fe4229c3a36847f8008abd", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Robert Prentiss", "character": "Trucker", "id": 2846, "credit_id": "52fe4229c3a36847f8008ac1", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Josh Ridgway", "character": "Kwik Stop Cashier", "id": 2847, "credit_id": "52fe4229c3a36847f8008ac5", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Craig Erickson", "character": "Trucker in Kwik Stop", "id": 2848, "credit_id": "52fe4229c3a36847f8008ac9", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Stephanie Sechrist", "character": "April", "id": 2849, "credit_id": "52fe4229c3a36847f8008acd", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Jerry Haynes", "character": "Judge", "id": 2850, "credit_id": "52fe4229c3a36847f8008ad1", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Lou Perryman", "character": "Sheriff", "id": 2851, "credit_id": "52fe4229c3a36847f8008ad5", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Lisa Renee Wilson", "character": "Pam (as Lisa Wilson)", "id": 2852, "credit_id": "52fe4229c3a36847f8008ad9", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Jackson D. Kane", "character": "Sam Phillips (as Jackson Kane)", "id": 2853, "credit_id": "52fe4229c3a36847f8008add", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Joseph Gibson", "character": "Tom", "id": 2854, "credit_id": "52fe4229c3a36847f8008ae1", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Michael Tripp", "character": "Nerdy Teen", "id": 2855, "credit_id": "52fe4229c3a36847f8008ae5", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Shana McClendon", "character": "Girl in Car", "id": 2856, "credit_id": "52fe4229c3a36847f8008ae9", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Libby Villari", "character": "Nurse", "id": 2857, "credit_id": "52fe4229c3a36847f8008aed", "cast_id": 24, "profile_path": "/dGSRIXHG4er86LBk4HAKK4TGWL0.jpg", "order": 21}, {"name": "Paige Carl Griggs", "character": "Dave (Deputy)", "id": 2858, "credit_id": "52fe4229c3a36847f8008af1", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Gail Cronauer", "character": "Clerk", "id": 2859, "credit_id": "52fe4229c3a36847f8008af5", "cast_id": 26, "profile_path": "/tDfitFZcmJ9DTnJBMNuiWLPTkbp.jpg", "order": 23}], "directors": [{"name": "Kimberly Peirce", "department": "Directing", "job": "Director", "credit_id": "52fe4229c3a36847f8008a8d", "profile_path": null, "id": 2836}], "vote_average": 7.0, "runtime": 118}, "227": {"poster_path": "/35K8ItoRuD7i0VBqjj8bEX0Ct6E.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25697647, "overview": "When two poor greasers, Johnny, and Ponyboy are assaulted by a vicious gang, the socs, and Johnny kills one of the attackers, tension begins to mount between the two rival gangs, setting off a turbulent chain of events.", "video": false, "id": 227, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Outsiders", "tagline": "They grew up on the outside of society. They weren't looking for a fight. They were looking to belong.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086066", "adult": false, "backdrop_path": "/2Y9Zb61gL4w0eUgyla4IELWqzGh.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "American Zoetrope", "id": 70}], "release_date": "1983-03-25", "popularity": 1.08173160541477, "original_title": "The Outsiders", "budget": 10000000, "cast": [{"name": "Matt Dillon", "character": "Dallas 'Dally' Winston", "id": 2876, "credit_id": "52fe4229c3a36847f8008bd5", "cast_id": 11, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 0}, {"name": "Ralph Macchio", "character": "Johnny Cade", "id": 2877, "credit_id": "52fe4229c3a36847f8008bd9", "cast_id": 12, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 1}, {"name": "C. Thomas Howell", "character": "Ponyboy Curtis", "id": 2878, "credit_id": "52fe4229c3a36847f8008bdd", "cast_id": 13, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 2}, {"name": "Patrick Swayze", "character": "Darrel 'Darry' Curtis", "id": 723, "credit_id": "52fe4229c3a36847f8008be1", "cast_id": 14, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 3}, {"name": "Rob Lowe", "character": "Sodapop Curtis", "id": 2879, "credit_id": "52fe4229c3a36847f8008be5", "cast_id": 15, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 4}, {"name": "Emilio Estevez", "character": "Keith 'Two-Bit' Mathews", "id": 2880, "credit_id": "52fe4229c3a36847f8008be9", "cast_id": 16, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 5}, {"name": "Tom Cruise", "character": "Steve Randle", "id": 500, "credit_id": "52fe4229c3a36847f8008bed", "cast_id": 17, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 6}, {"name": "Glenn Withrow", "character": "Tim Shepard", "id": 2881, "credit_id": "52fe4229c3a36847f8008bf1", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Diane Lane", "character": "Sherri 'Cherry' Valance", "id": 2882, "credit_id": "52fe4229c3a36847f8008bf5", "cast_id": 19, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 8}, {"name": "Leif Garrett", "character": "Bob Sheldon", "id": 2883, "credit_id": "52fe4229c3a36847f8008bf9", "cast_id": 20, "profile_path": "/bjzqSgp3vfbpMSBR1p4Q1D5CDFp.jpg", "order": 9}, {"name": "Darren Dalton", "character": "Randy Anderson", "id": 2884, "credit_id": "52fe4229c3a36847f8008bfd", "cast_id": 21, "profile_path": "/ilvaY9lSWPWMPXxRmrDBTl3xbWm.jpg", "order": 10}, {"name": "Michelle Meyrink", "character": "Marcia", "id": 2885, "credit_id": "52fe4229c3a36847f8008c01", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Gailard Sartain", "character": "Jerry Wood", "id": 2886, "credit_id": "52fe4229c3a36847f8008c05", "cast_id": 23, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 12}, {"name": "Tom Waits", "character": "Buck Merrill", "id": 2887, "credit_id": "52fe4229c3a36847f8008c09", "cast_id": 24, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 13}, {"name": "Sofia Coppola", "character": "Little Girl (as Domino)", "id": 1769, "credit_id": "52fe4229c3a36847f8008c0d", "cast_id": 25, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 14}, {"name": "William Smith", "character": "Store Clerk", "id": 98102, "credit_id": "52fe4229c3a36847f8008c17", "cast_id": 27, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 15}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4229c3a36847f8008b9b", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 6.3, "runtime": 91}, "16614": {"poster_path": "/hjSN69srPDuFeUkrChIgZ0Vh3i0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17164377, "overview": "In the summer of 1987, a college graduate takes a 'nowhere' job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.", "video": false, "id": 16614, "genres": [{"id": 35, "name": "Comedy"}], "title": "Adventureland", "tagline": "Nothing brings people together like a crappy summer job.", "vote_count": 163, "homepage": "http://www.adventurelandthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1091722", "adult": false, "backdrop_path": "/q98RIq2DdJragrWAM5wWOxd5Qni.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "This Is That Productions", "id": 10059}], "release_date": "2009-04-03", "popularity": 1.24005027773108, "original_title": "Adventureland", "budget": 9500000, "cast": [{"name": "Jesse Eisenberg", "character": "James Brennan", "id": 44735, "credit_id": "52fe46de9251416c7508634f", "cast_id": 1, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Kristen Stewart", "character": "Em Lewin", "id": 37917, "credit_id": "52fe46de9251416c75086363", "cast_id": 6, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 1}, {"name": "Martin Starr", "character": "Joel", "id": 41089, "credit_id": "52fe46de9251416c75086383", "cast_id": 17, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 2}, {"name": "Kristen Wiig", "character": "Paulette", "id": 41091, "credit_id": "52fe46de9251416c75086357", "cast_id": 3, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 3}, {"name": "Bill Hader", "character": "Bobby", "id": 19278, "credit_id": "52fe46de9251416c7508635b", "cast_id": 4, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 4}, {"name": "Ryan Reynolds", "character": "Mike Connell", "id": 10859, "credit_id": "52fe46de9251416c7508635f", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 5}, {"name": "Margarita Levieva", "character": "Lisa P.", "id": 59237, "credit_id": "52fe46de9251416c75086373", "cast_id": 12, "profile_path": "/5YDkouUZf4khoFfNoWps3PK5JQf.jpg", "order": 6}, {"name": "Kelsey Ford", "character": "Arlene", "id": 129022, "credit_id": "52fe46de9251416c75086367", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Michael Zegen", "character": "Eric", "id": 80661, "credit_id": "52fe46de9251416c75086353", "cast_id": 2, "profile_path": "/cTe8u7HNzkQvuaY4spCU3KxKKdl.jpg", "order": 8}, {"name": "Ryan McFarland", "character": "Brad", "id": 136030, "credit_id": "52fe46de9251416c7508636b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Jack Gilpin", "character": "Mr. Brennan", "id": 77023, "credit_id": "52fe46de9251416c7508636f", "cast_id": 11, "profile_path": "/cYaMYTd4TawSeF9eUSwXR1rP3th.jpg", "order": 10}, {"name": "Matt Bush", "character": "Tommy Frigo", "id": 130227, "credit_id": "52fe46de9251416c75086377", "cast_id": 14, "profile_path": "/kyBLgeVnvnsx3zOZXlZwSF5BFEE.jpg", "order": 11}, {"name": "Todd Cioppa", "character": "Velvet Touch Manager", "id": 136032, "credit_id": "52fe46de9251416c7508637b", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Stephen Mast", "character": "Rich", "id": 136033, "credit_id": "52fe46de9251416c7508637f", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Adam Kroloff", "character": "Adult Contestant", "id": 136034, "credit_id": "52fe46de9251416c75086387", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Wendie Malick", "character": "Mrs. Brennan", "id": 61980, "credit_id": "52fe46de9251416c750863c7", "cast_id": 29, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 15}, {"name": "Dan Bittner", "character": "Pete O'Malley", "id": 1152008, "credit_id": "54c4141292514124320065f9", "cast_id": 30, "profile_path": null, "order": 16}], "directors": [{"name": "Greg Mottola", "department": "Directing", "job": "Director", "credit_id": "52fe46de9251416c7508638d", "profile_path": "/dC1BKEyTzgTqqy8c5MmSZrRLhNR.jpg", "id": 54733}], "vote_average": 6.1, "runtime": 107}, "231": {"poster_path": "/ArLpoafsdFhs5USOn2AUsEIImxI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94000000, "overview": "The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.", "video": false, "id": 231, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Syriana", "tagline": "Everything is connected.", "vote_count": 121, "homepage": "http://syrianamovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0365737", "adult": false, "backdrop_path": "/urovI2vLKwXPHd2OUFEs8aU8UOp.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Participant Media", "id": 6735}, {"name": "4M", "id": 20665}, {"name": "Section Eight", "id": 129}, {"name": "FilmWorks", "id": 7786}, {"name": "MID Foundation", "id": 20666}], "release_date": "2005-11-23", "popularity": 0.686958552182492, "original_title": "Syriana", "budget": 50000000, "cast": [{"name": "George Clooney", "character": "Bob Barnes", "id": 1461, "credit_id": "52fe4229c3a36847f8008e65", "cast_id": 16, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Matt Damon", "character": "Bryan Woodman", "id": 1892, "credit_id": "52fe4229c3a36847f8008e69", "cast_id": 17, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Jeffrey Wright", "character": "Bennett Holiday", "id": 2954, "credit_id": "52fe4229c3a36847f8008e6d", "cast_id": 18, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 2}, {"name": "Chris Cooper", "character": "Jimmy Pope", "id": 2955, "credit_id": "52fe4229c3a36847f8008e71", "cast_id": 19, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 3}, {"name": "Amanda Peet", "character": "Julie Woodman", "id": 2956, "credit_id": "52fe4229c3a36847f8008e75", "cast_id": 20, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 4}, {"name": "William Hurt", "character": "Stan", "id": 227, "credit_id": "52fe4229c3a36847f8008e79", "cast_id": 21, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 5}, {"name": "Christopher Plummer", "character": "Dean Whiting", "id": 290, "credit_id": "52fe4229c3a36847f8008e7d", "cast_id": 22, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 6}, {"name": "Alexander Siddig", "character": "Prince Nasir Al-Subaai", "id": 2957, "credit_id": "52fe4229c3a36847f8008e81", "cast_id": 23, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 7}, {"name": "Kayvan Novak", "character": "Arash", "id": 2959, "credit_id": "52fe4229c3a36847f8008e85", "cast_id": 24, "profile_path": "/frOXuqWJXzFlcTQx2fuILD50ODE.jpg", "order": 8}, {"name": "Amr Waked", "character": "Mohammed Sheik Agiza", "id": 2960, "credit_id": "52fe4229c3a36847f8008e89", "cast_id": 25, "profile_path": "/am80pES7tfN6RgWqmuQg6e7pkiD.jpg", "order": 9}, {"name": "Robert Foxworth", "character": "Tommy Barton", "id": 2962, "credit_id": "52fe4229c3a36847f8008e8d", "cast_id": 26, "profile_path": "/ofBWY1UDjnYMCSjrSXARlKs4yn9.jpg", "order": 10}, {"name": "Nicky Henson", "character": "Sydney Hewitt", "id": 2964, "credit_id": "52fe422ac3a36847f8008e91", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Nicholas Art", "character": "Riley Woodman", "id": 2965, "credit_id": "52fe422ac3a36847f8008e95", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Steven Hinkle", "character": "Max Woodman", "id": 2966, "credit_id": "52fe422ac3a36847f8008e99", "cast_id": 29, "profile_path": "/cawNiWCqwdvPSeXFKcrtj04CLgf.jpg", "order": 13}, {"name": "Daisy Torm\u00e9", "character": "Rebecca", "id": 2967, "credit_id": "52fe422ac3a36847f8008e9d", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Peter Gerety", "character": "Leland \"Lee\" Janus", "id": 1986, "credit_id": "52fe422ac3a36847f8008ea1", "cast_id": 31, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 15}, {"name": "Richard Lintern", "character": "Bryan's Boss", "id": 2968, "credit_id": "52fe422ac3a36847f8008ea5", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Mazhar Munir", "character": "Wasim Khan", "id": 2971, "credit_id": "52fe422ac3a36847f8008ead", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Jocelyn Quivrin", "character": "Vincent", "id": 2970, "credit_id": "52fe422ac3a36847f8008ea9", "cast_id": 33, "profile_path": "/bRA811QtMSH8JAu2gdZ6Cjta9Br.jpg", "order": 18}, {"name": "Shahid Ahmed", "character": "Saleem Ahmed Khan", "id": 2972, "credit_id": "52fe422ac3a36847f8008eb1", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Bikram Singh Bhamra", "character": "Pakistani Translator", "id": 2973, "credit_id": "52fe422ac3a36847f8008eb5", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Roger Yuan", "character": "Chinese Engineer", "id": 2974, "credit_id": "52fe422ac3a36847f8008eb9", "cast_id": 37, "profile_path": "/mocNZK4KHv3j9os7tsS7b9B9ecK.jpg", "order": 21}, {"name": "Jamey Sheridan", "character": "Division Chief", "id": 2977, "credit_id": "52fe422ac3a36847f8008ebd", "cast_id": 38, "profile_path": "/jpyh4Wd6AZ1oBCsbIxB72otXtcy.jpg", "order": 22}, {"name": "Max Minghella", "character": "Robby Barnes", "id": 2978, "credit_id": "52fe422ac3a36847f8008ec1", "cast_id": 39, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 23}, {"name": "Nadim Sawalha", "character": "Emir Hamed Al-Subaai", "id": 2980, "credit_id": "52fe422ac3a36847f8008ec5", "cast_id": 40, "profile_path": "/94kMNtU2FYXruX4BOOjWrWkoe2x.jpg", "order": 24}, {"name": "Akbar Kurtha", "character": "Prince Meshal Al-Subaai", "id": 2981, "credit_id": "52fe422ac3a36847f8008ec9", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Sonnell Dadral", "character": "Farooq", "id": 2982, "credit_id": "52fe422ac3a36847f8008ecd", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Tim Blake Nelson", "character": "Danny Dalton", "id": 1462, "credit_id": "52fe422ac3a36847f8008ed1", "cast_id": 43, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 27}, {"name": "Mark Strong", "character": "Mussawi", "id": 2983, "credit_id": "52fe422ac3a36847f8008ed5", "cast_id": 44, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 28}, {"name": "Badria Timimi", "character": "Nasir's Wife", "id": 2984, "credit_id": "52fe422ac3a36847f8008ed9", "cast_id": 45, "profile_path": null, "order": 29}], "directors": [{"name": "Stephen Gaghan", "department": "Directing", "job": "Director", "credit_id": "52fe4229c3a36847f8008e0d", "profile_path": "/wNv62DVAoCLRsw7nEcGZaetFJmc.jpg", "id": 2945}], "vote_average": 6.0, "runtime": 128}, "8424": {"poster_path": "/1LdSjHC9MwRQios1zdXYL7SweRc.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "As adults, best friends Julien and Sophie continue the odd game they started as children -- a fearless competition to outdo one another with daring and outrageous stunts. While they often act out to relieve one another's pain, their game might be a way to avoid the fact that they are truly meant for one another", "video": false, "id": 8424, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Love Me If You Dare", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0364517", "adult": false, "backdrop_path": "/91VZyRZgykMvTFbhlQymZ2u9MOJ.jpg", "production_companies": [{"name": "Nord Ouest Production", "id": 615}, {"name": "StudioCanal", "id": 694}], "release_date": "2003-09-17", "popularity": 0.450899759053029, "original_title": "Jeux d'enfants", "budget": 0, "cast": [{"name": "Guillaume Canet", "character": "Julien", "id": 19866, "credit_id": "52fe44a7c3a36847f80a26af", "cast_id": 2, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 0}, {"name": "Marion Cotillard", "character": "Sophie", "id": 8293, "credit_id": "52fe44a7c3a36847f80a26b3", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 1}, {"name": "Thibault Verhaeghe", "character": "Julien \u00e0 8 ans", "id": 55384, "credit_id": "52fe44a7c3a36847f80a26cb", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "Jos\u00e9phine Lebas-Joly", "character": "Sophie \u00e0 8 ans", "id": 550027, "credit_id": "52fe44a7c3a36847f80a26ff", "cast_id": 19, "profile_path": "/118UJ3wOdTA0Cw2yUgdsYdHVZKS.jpg", "order": 3}, {"name": "Emmanuelle Gr\u00f6nvold", "character": "M\u00e8re de Julien", "id": 55383, "credit_id": "52fe44a7c3a36847f80a26c7", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Fr\u00e9d\u00e9ric Geerts", "character": "Igor", "id": 55380, "credit_id": "52fe44a7c3a36847f80a26b7", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Isabelle Delval", "character": "Clothilde", "id": 55381, "credit_id": "52fe44a7c3a36847f80a26bb", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Jean-Michel Flagothier", "character": "Dorzac", "id": 55382, "credit_id": "52fe44a7c3a36847f80a26bf", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Gilles Lellouche", "character": "Sergei Nimov Nimovitch", "id": 54291, "credit_id": "52fe44a7c3a36847f80a26c3", "cast_id": 7, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 8}, {"name": "\u00c9lodie Navarre", "character": "Aur\u00e9lie", "id": 142443, "credit_id": "52fe44a7c3a36847f80a2703", "cast_id": 20, "profile_path": "/hLTiIyutbtih9JxISMO3tOPE4zD.jpg", "order": 9}, {"name": "G\u00e9rard Watkins", "character": "Julien's Father", "id": 49947, "credit_id": "54a42ac3c3a368764f00efe0", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Julia Faure", "character": "Sophie's Sister", "id": 946511, "credit_id": "54b7e2e1c3a3686c71001fbd", "cast_id": 22, "profile_path": "/pAaZ59df9XcT6DFKwhHF0QbH0qV.jpg", "order": 11}], "directors": [{"name": "Yann Samuell", "department": "Directing", "job": "Director", "credit_id": "52fe44a7c3a36847f80a26ab", "profile_path": null, "id": 55379}], "vote_average": 7.3, "runtime": 93}, "16617": {"poster_path": "/95AVerEgqrWhvGJxPfwiVsGd4c1.jpg", "production_countries": [{"iso_3166_1": "FI", "name": "Finland"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21148829, "overview": "Trainees in the FBI's psychological profiling program must put their training into practice when they discover a killer in their midst.", "video": false, "id": 16617, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mindhunters", "tagline": "For seven elite profilers, finding a serial killer is a process of elimination. Their own.", "vote_count": 72, "homepage": "http://www.mindhunters-thefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0297284", "adult": false, "backdrop_path": "/6lMzEzEx3JjIOtcqHlycACB7BtL.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Intermedia Films", "id": 763}, {"name": "Avenue Pictures Productions", "id": 251}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Egmond Film & Television", "id": 4588}, {"name": "Tonna Oy", "id": 19510}, {"name": "Outlaw Victoria Productions Inc.", "id": 19511}, {"name": "Mindhunters (UK) Limited", "id": 19508}, {"name": "Mindhunters Productie BV", "id": 19509}], "release_date": "2004-03-19", "popularity": 0.59846698312343, "original_title": "Mindhunters", "budget": 27000000, "cast": [{"name": "LL Cool J", "character": "Gabe Jensen", "id": 36424, "credit_id": "52fe46de9251416c750864bb", "cast_id": 8, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 0}, {"name": "Jonny Lee Miller", "character": "Lucas Harper", "id": 9012, "credit_id": "52fe46de9251416c750864af", "cast_id": 5, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 1}, {"name": "Kathryn Morris", "character": "Sara Moore", "id": 2208, "credit_id": "52fe46de9251416c750864b3", "cast_id": 6, "profile_path": "/kacv3Og9yU1bp6RJGb4Asnhsavt.jpg", "order": 2}, {"name": "Patricia Vel\u00e1squez", "character": "Nicole Willis", "id": 18920, "credit_id": "52fe46de9251416c750864bf", "cast_id": 9, "profile_path": "/dRD0tYxrtxPZ11mJCN0O3nLd1Mx.jpg", "order": 3}, {"name": "Clifton Collins, Jr.", "character": "Vince Sherman", "id": 5365, "credit_id": "52fe46de9251416c750864a7", "cast_id": 2, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 4}, {"name": "Eion Bailey", "character": "Bobby Whitman", "id": 7498, "credit_id": "52fe46de9251416c750864a3", "cast_id": 1, "profile_path": "/4MnRgrwuiJvHsfoiJrIUL4TkfoC.jpg", "order": 5}, {"name": "Will Kemp", "character": "Rafe Perry", "id": 54500, "credit_id": "52fe46e09251416c750866fd", "cast_id": 108, "profile_path": "/cQAKDIsxoZlzp8OmEiXGUCFjxre.jpg", "order": 6}, {"name": "Val Kilmer", "character": "Jake Harris", "id": 5576, "credit_id": "52fe46de9251416c750864ab", "cast_id": 4, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 7}, {"name": "Christian Slater", "character": "J.D. Reston", "id": 2224, "credit_id": "52fe46de9251416c750864b7", "cast_id": 7, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 8}, {"name": "Cassandra Bell", "character": "Jen", "id": 128290, "credit_id": "52fe46e09251416c75086701", "cast_id": 109, "profile_path": null, "order": 9}, {"name": "Dani\u00ebl Boissevain", "character": "Second Man in the Bar", "id": 117200, "credit_id": "52fe46de9251416c750864c3", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Antonie Kamerling", "character": "Man in the Bar", "id": 27957, "credit_id": "52fe46de9251416c750864c7", "cast_id": 12, "profile_path": "/85uavBfxcIfjMYm5RNK1f6l33yc.jpg", "order": 11}, {"name": "Jasmine Sendar", "character": "Friend of Jen", "id": 117201, "credit_id": "52fe46de9251416c750864cb", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Trevor White", "character": "Attacker", "id": 158484, "credit_id": "52fe46e09251416c75086705", "cast_id": 110, "profile_path": "/oFIH3JRRp4Iulq9lqqoPhJ7ALk8.jpg", "order": 13}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe46e09251416c750866e7", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.7, "runtime": 106}, "235": {"poster_path": "/98qQLkTKEdWo3UVBzzeaetwNeQD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52287000, "overview": "The film's name comes from the song \"Stand By Me\" by Ben E. King from 1961. The song was also the theme song. This film was modeled from a novella by Stephen King called \"The Body\" and was the ninth filmed story from the author. The film tells the story of a group of 10-year-old friends out on their own and the trials and tribulation they are confronted with along the journey.", "video": false, "id": 235, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Stand by Me", "tagline": "For some, it's the last real taste of innocence, and the first real taste of life.", "vote_count": 293, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092005", "adult": false, "backdrop_path": "/abLeo89r15NBTFfosXveyosBrHE.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1986-08-07", "popularity": 1.17959397788271, "original_title": "Stand by Me", "budget": 8000000, "cast": [{"name": "Wil Wheaton", "character": "Gordie Lachance", "id": 3033, "credit_id": "52fe422ac3a36847f8009147", "cast_id": 8, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 0}, {"name": "River Phoenix", "character": "Chris Chambers", "id": 741, "credit_id": "52fe422ac3a36847f800914b", "cast_id": 9, "profile_path": "/qfokbmRwRvmIVsLHScshxLPAB3C.jpg", "order": 1}, {"name": "Corey Feldman", "character": "Teddy Duchamp", "id": 3034, "credit_id": "52fe422ac3a36847f800914f", "cast_id": 10, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 2}, {"name": "Jerry O'Connell", "character": "Vern Tessio", "id": 3035, "credit_id": "52fe422ac3a36847f8009153", "cast_id": 11, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "Ace Merrill", "id": 2628, "credit_id": "52fe422ac3a36847f8009157", "cast_id": 12, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "John Cusack", "character": "Denny Lachance", "id": 3036, "credit_id": "52fe422ac3a36847f800915b", "cast_id": 13, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 5}, {"name": "Richard Dreyfuss", "character": "Gordon Lachance (Adult)", "id": 3037, "credit_id": "52fe422ac3a36847f800915f", "cast_id": 14, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 6}, {"name": "Casey Siemaszko", "character": "Billy Tessio", "id": 1953, "credit_id": "52fe422ac3a36847f8009163", "cast_id": 15, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 7}, {"name": "Gary Riley", "character": "Charlie Hogan", "id": 3038, "credit_id": "52fe422ac3a36847f8009167", "cast_id": 16, "profile_path": "/d1TZEZcWxyTnqLdop06MOKWMvm8.jpg", "order": 8}, {"name": "Bradley Gregg", "character": "Eyeball Chambers", "id": 3039, "credit_id": "52fe422ac3a36847f800916b", "cast_id": 17, "profile_path": "/l4vc0U4XQ7t07pqekPPVehzs0R.jpg", "order": 9}, {"name": "Jason Oliver", "character": "Vince Desjardins", "id": 3040, "credit_id": "52fe422ac3a36847f800916f", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Marshall Bell", "character": "Mr. Lachance", "id": 3041, "credit_id": "52fe422ac3a36847f8009173", "cast_id": 19, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 11}, {"name": "Frances Lee McCain", "character": "Mrs. Lachance", "id": 1070, "credit_id": "52fe422ac3a36847f8009177", "cast_id": 20, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 12}, {"name": "Bruce Kirby", "character": "Mr. Quidacioluo", "id": 3042, "credit_id": "52fe422ac3a36847f800917b", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "William Bronder", "character": "Milo Pressman", "id": 3043, "credit_id": "52fe422ac3a36847f800917f", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Scott Beach", "character": "Mayor Grundy", "id": 3044, "credit_id": "52fe422ac3a36847f8009183", "cast_id": 26, "profile_path": "/gkt4TpoRR75eTddsny3Qvofe6TY.jpg", "order": 15}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe422ac3a36847f8009137", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.2, "runtime": 89}, "238": {"poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245066411, "overview": "The story spans the years from 1945 to 1955 and chronicles the fictional Italian-American Corleone crime family. When organized crime family patriarch Vito Corleone barely survives an attempt on his life, his youngest son, Michael, steps in to take care of the would-be killers, launching a campaign of bloody revenge.", "video": false, "id": 238, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Godfather", "tagline": "An offer you can't refuse.", "vote_count": 2371, "homepage": "http://www.thegodfather.com/", "belongs_to_collection": {"backdrop_path": "/3WZTxpgscsmoUk81TuECXdFOD0R.jpg", "poster_path": "/msRyKgqWJWGSprcagItruC8mfL3.jpg", "id": 230, "name": "The Godfather Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0068646", "adult": false, "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Alfran Productions", "id": 10211}], "release_date": "1972-03-15", "popularity": 3.08618272815224, "original_title": "The Godfather", "budget": 6000000, "cast": [{"name": "Marlon Brando", "character": "Don Vito Corleone", "id": 3084, "credit_id": "52fe422bc3a36847f8009357", "cast_id": 5, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 0}, {"name": "Al Pacino", "character": "Michael Corleone", "id": 1158, "credit_id": "52fe422bc3a36847f800935b", "cast_id": 6, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "James Caan", "character": "Santino 'Sonny' Corleone", "id": 3085, "credit_id": "52fe422bc3a36847f800935f", "cast_id": 7, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 2}, {"name": "Richard S. Castellano", "character": "Pete Clemenza", "id": 3086, "credit_id": "52fe422bc3a36847f8009363", "cast_id": 8, "profile_path": "/uBNqpxmlNSX7FJeubO1g3nlrrkF.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Tom Hagen", "id": 3087, "credit_id": "52fe422bc3a36847f8009367", "cast_id": 9, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Sterling Hayden", "character": "Capt. Mark McCluskey", "id": 3088, "credit_id": "52fe422bc3a36847f800936b", "cast_id": 10, "profile_path": "/aE85Dzwaf5rTbjLnMgOtpw47BSY.jpg", "order": 5}, {"name": "John Marley", "character": "Jack Woltz", "id": 3142, "credit_id": "52fe422bc3a36847f800938b", "cast_id": 33, "profile_path": "/ecteroI3S9feBlkxm33HJbPotHt.jpg", "order": 6}, {"name": "Richard Conte", "character": "Emilio Barzini", "id": 3090, "credit_id": "52fe422bc3a36847f800936f", "cast_id": 11, "profile_path": "/5682H8oxwIezxImi7HiFnBYLL4V.jpg", "order": 7}, {"name": "Al Lettieri", "character": "Virgil 'Der T\u00fcrke' Sollozzo", "id": 3091, "credit_id": "52fe422bc3a36847f8009373", "cast_id": 12, "profile_path": "/uTzNiDToGv513rvxQMx37mz0q9V.jpg", "order": 8}, {"name": "Diane Keaton", "character": "Kay Adams", "id": 3092, "credit_id": "52fe422bc3a36847f8009377", "cast_id": 13, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 9}, {"name": "Abe Vigoda", "character": "Salvatore \"Sally\" Tessio", "id": 3093, "credit_id": "52fe422bc3a36847f800937b", "cast_id": 14, "profile_path": "/pUgFgNhow9niMPfTvj3mOzwtfRk.jpg", "order": 10}, {"name": "Talia Shire", "character": "Connie Corleone Rizzi", "id": 3094, "credit_id": "52fe422bc3a36847f800937f", "cast_id": 15, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 11}, {"name": "Gianni Russo", "character": "Carlo Rizzi", "id": 3095, "credit_id": "52fe422bc3a36847f8009383", "cast_id": 16, "profile_path": "/ttNwx2hFyQ7RkhAFhcfXtOYr6md.jpg", "order": 12}, {"name": "John Cazale", "character": "Fredo Corleone", "id": 3096, "credit_id": "52fe422bc3a36847f8009387", "cast_id": 17, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 13}, {"name": "Rudy Bond", "character": "Carmine Cuneo", "id": 3143, "credit_id": "52fe422bc3a36847f800938f", "cast_id": 34, "profile_path": "/wNpO0orqR8rWz7tf11iKN0UhvGg.jpg", "order": 14}, {"name": "Al Martino", "character": "Johnny Fontane", "id": 3144, "credit_id": "52fe422bc3a36847f8009393", "cast_id": 35, "profile_path": "/4rdC1Ezms99xSDrQnqHZDDpdZiW.jpg", "order": 15}, {"name": "Morgana King", "character": "Mama Corleone", "id": 933716, "credit_id": "52fe422bc3a36847f80093a7", "cast_id": 42, "profile_path": "/k9PLB28bm1oylZGAyzkWbIrZioM.jpg", "order": 16}, {"name": "Lenny Montana", "character": "Luca Brasi", "id": 106811, "credit_id": "52fe422bc3a36847f80093b3", "cast_id": 45, "profile_path": "/6rCsufBnJAj57mJ7PVaAFpIzm3j.jpg", "order": 17}, {"name": "John Martino", "character": "Paulie", "id": 99724, "credit_id": "52fe422bc3a36847f80093bb", "cast_id": 47, "profile_path": "/pq72Duoc6F6fP5rlVYE2nTU9mFH.jpg", "order": 18}, {"name": "Salvatore Corsitto", "character": "Bonasera", "id": 1195877, "credit_id": "52fe422bc3a36847f80093b7", "cast_id": 46, "profile_path": "/grnzoe9ElGN0qgcFZDQjMN0w6oq.jpg", "order": 19}, {"name": "Alex Rocco", "character": "Moe Greene", "id": 20752, "credit_id": "52fe422bc3a36847f80093a3", "cast_id": 41, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 20}, {"name": "Tony Giorgio", "character": "Bruno Tattaglia", "id": 3414, "credit_id": "52fe422bc3a36847f800939f", "cast_id": 38, "profile_path": "/oqR33f9gT5ODA8U8h2y05myM7dj.jpg", "order": 21}, {"name": "Victor Rendina", "character": "Philip Tattaglia", "id": 3413, "credit_id": "52fe422bc3a36847f800939b", "cast_id": 37, "profile_path": "/g4syFwXi60P1ID3aLTyxup4EXbT.jpg", "order": 22}, {"name": "Simonetta Stefanelli", "character": "Apollonia Vitelli-Corleone", "id": 3145, "credit_id": "52fe422bc3a36847f8009397", "cast_id": 36, "profile_path": "/oNH6iH1IkMvWJevQRtnVnXygd8b.jpg", "order": 23}, {"name": "Saro Urz\u00ec", "character": "Vitelli", "id": 119431, "credit_id": "52fe422bc3a36847f80093bf", "cast_id": 48, "profile_path": "/JjUgH6kyEyZ4kgfusXENCkhlk8.jpg", "order": 24}, {"name": "Sofia Coppola", "character": "Baby in baptism scene", "id": 1769, "credit_id": "52fe422bc3a36847f80093ab", "cast_id": 43, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 25}, {"name": "Louis Guss", "character": "Don Zaluchi", "id": 20973, "credit_id": "52fe422bc3a36847f80093af", "cast_id": 44, "profile_path": "/ndDIYrXz2catGlP01JUwuHi2nFU.jpg", "order": 26}, {"name": "Gabriele Torrei", "character": "Enzo, the baker", "id": 138211, "credit_id": "52fe422bc3a36847f80093c3", "cast_id": 49, "profile_path": "/sDwZ0sbq1AHGZGuUr9IlumiVzgf.jpg", "order": 27}, {"name": "Tony King", "character": "Tony - Stablehand (uncredited)", "id": 55672, "credit_id": "54de315fc3a3685446001351", "cast_id": 69, "profile_path": null, "order": 28}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f80093c9", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 8.1, "runtime": 175}, "239": {"poster_path": "/pxc9EFCMYkItESpqqrI783yl8Gh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl band as they leave on a tour. To make their getaway they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate and a very determined suitor.", "video": false, "id": 239, "genres": [{"id": 35, "name": "Comedy"}], "title": "Some Like It Hot", "tagline": "The movie too HOT for words!", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053291", "adult": false, "backdrop_path": "/tzdIslFViohCTLkNS1eI7qyUjVh.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1959-03-29", "popularity": 0.500287542138781, "original_title": "Some Like It Hot", "budget": 3500000, "cast": [{"name": "Marilyn Monroe", "character": "Sugar Kane Kowalczyk", "id": 3149, "credit_id": "52fe422bc3a36847f8009465", "cast_id": 15, "profile_path": "/AjIAEUq6JrsTG6vTFNEEmzFZVca.jpg", "order": 0}, {"name": "Tony Curtis", "character": "Joe (Josephine)", "id": 3150, "credit_id": "52fe422bc3a36847f8009437", "cast_id": 5, "profile_path": "/y2y6QFlLkbDzNbAaKKa8mSH3Lde.jpg", "order": 1}, {"name": "Jack Lemmon", "character": "Jerry (Daphne)", "id": 3151, "credit_id": "52fe422bc3a36847f800943b", "cast_id": 6, "profile_path": "/1Y3wQsqRALOL3LZQtKmulmN3qff.jpg", "order": 2}, {"name": "George Raft", "character": "Spats Colombo", "id": 3152, "credit_id": "52fe422bc3a36847f8009469", "cast_id": 16, "profile_path": "/ftXWCxlAF1n4AyiZLLPWpHQQauL.jpg", "order": 3}, {"name": "Joe E. Brown", "character": "Osgood Fielding III", "id": 3156, "credit_id": "52fe422bc3a36847f800943f", "cast_id": 7, "profile_path": "/sFU0iVNQrDRA5TYi3WJQHoAbUya.jpg", "order": 4}, {"name": "Nehemiah Persoff", "character": "Little Bonaparte", "id": 3160, "credit_id": "52fe422bc3a36847f800944f", "cast_id": 10, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 5}, {"name": "Joan Shawlee", "character": "Sweet Sue", "id": 3161, "credit_id": "52fe422bc3a36847f8009453", "cast_id": 11, "profile_path": "/1KSTHsyQsyuIAaj4k1BLmdpMaEc.jpg", "order": 6}, {"name": "Barbara Drew", "character": "Nellie", "id": 3168, "credit_id": "52fe422bc3a36847f8009457", "cast_id": 12, "profile_path": "/v6S957xjM9g36qdlS3CUTgEiSxl.jpg", "order": 7}, {"name": "Edward G. Robinson Jr.", "character": "Johnny Paradise", "id": 81501, "credit_id": "52fe422bc3a36847f8009461", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Pat O'Brien", "character": "Det. Mulligan", "id": 3155, "credit_id": "52fe422bc3a36847f800946d", "cast_id": 17, "profile_path": "/nRd6AufixcDcptqRSJwq1pTLArX.jpg", "order": 9}, {"name": "George E. Stone", "character": "Toothpick Charlie", "id": 3163, "credit_id": "52fe422bc3a36847f8009471", "cast_id": 18, "profile_path": "/zTW4BPeu6LpCHuNXhNVz2pYL5tk.jpg", "order": 10}, {"name": "Mike Mazurki", "character": "Spats' henchman", "id": 84229, "credit_id": "52fe422bc3a36847f8009475", "cast_id": 19, "profile_path": "/s1alibwL5JiBhBNZQGiN91Hccc3.jpg", "order": 11}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f8009421", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.5, "runtime": 122}, "240": {"poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47542841, "overview": "The continuing saga of the Corleone crime family tells the story of a young Vito Corleone growing up in Sicily and in 1910s New York; and follows Michael Corleone in the 1950s as he attempts to expand the family business into Las Vegas, Hollywood and Cuba", "video": false, "id": 240, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Godfather: Part II", "tagline": "I don't feel I have to wipe everybody out, Tom. Just my enemies.", "vote_count": 1222, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3WZTxpgscsmoUk81TuECXdFOD0R.jpg", "poster_path": "/msRyKgqWJWGSprcagItruC8mfL3.jpg", "id": 230, "name": "The Godfather Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0071562", "adult": false, "backdrop_path": "/xUU1melxrkb7IXl1F7PXrtZAWWl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "The Coppola Company", "id": 536}], "release_date": "1974-12-20", "popularity": 2.38857591784702, "original_title": "The Godfather: Part II", "budget": 13000000, "cast": [{"name": "Al Pacino", "character": "Don Michael Corleone", "id": 1158, "credit_id": "52fe422bc3a36847f8009505", "cast_id": 8, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Tom Hagen", "id": 3087, "credit_id": "52fe422bc3a36847f8009509", "cast_id": 9, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Diane Keaton", "character": "Kay Corleone", "id": 3092, "credit_id": "52fe422bc3a36847f800950d", "cast_id": 10, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 2}, {"name": "Robert De Niro", "character": "Vito Corleone", "id": 380, "credit_id": "52fe422bc3a36847f8009511", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 3}, {"name": "John Cazale", "character": "Fredo Corleone", "id": 3096, "credit_id": "52fe422bc3a36847f8009515", "cast_id": 12, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 4}, {"name": "Talia Shire", "character": "Connie Corleone", "id": 3094, "credit_id": "52fe422bc3a36847f8009519", "cast_id": 13, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 5}, {"name": "Lee Strasberg", "character": "Hyman Roth", "id": 3171, "credit_id": "52fe422bc3a36847f800951d", "cast_id": 14, "profile_path": "/ygEiIBPmoDfv4T8f4jL3EDn4cm3.jpg", "order": 6}, {"name": "Michael V. Gazzo", "character": "Frankie Pentangeli", "id": 3172, "credit_id": "52fe422bc3a36847f8009521", "cast_id": 15, "profile_path": "/z50tLgbtVvIEI05uHO6udwOgwe3.jpg", "order": 7}, {"name": "G. D. Spradlin", "character": "Senator Pat Geary", "id": 3173, "credit_id": "52fe422bc3a36847f8009525", "cast_id": 16, "profile_path": "/lyk0Fo343PJJ5gItBqGGl7oG112.jpg", "order": 8}, {"name": "Richard Bright", "character": "Al Neri", "id": 3174, "credit_id": "52fe422bc3a36847f8009529", "cast_id": 17, "profile_path": "/k2P17sxGhh7Dafidxn9Ub5YbF7n.jpg", "order": 9}, {"name": "Francesca De Sapio", "character": "die Mutter des jungen Vito", "id": 3279, "credit_id": "52fe422bc3a36847f8009581", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Oreste Baldini", "character": "junger Vito Andolini", "id": 3280, "credit_id": "52fe422bc3a36847f8009585", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Gastone Moschin", "character": "Don Fanucci", "id": 3281, "credit_id": "52fe422bc3a36847f8009589", "cast_id": 34, "profile_path": "/dlzOimu2std73cyi7S2RVb84XQg.jpg", "order": 12}, {"name": "Giuseppe Sillato", "character": "Don Francesco Ciccio", "id": 3333, "credit_id": "52fe422bc3a36847f800958d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Bruno Kirby", "character": "Young Clemenza (as B. Kirby Jr.)", "id": 9257, "credit_id": "52fe422bc3a36847f8009597", "cast_id": 37, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 14}, {"name": "Frank Sivero", "character": "Genco", "id": 11480, "credit_id": "52fe422bc3a36847f800959b", "cast_id": 38, "profile_path": "/jszCGdc8p9d42K8e7qvVpzaQa5b.jpg", "order": 15}, {"name": "Morgana King", "character": "Mama Corleone", "id": 933716, "credit_id": "52fe422bc3a36847f800959f", "cast_id": 39, "profile_path": "/k9PLB28bm1oylZGAyzkWbIrZioM.jpg", "order": 16}, {"name": "Marianna Hill", "character": "Deanna Corleone (as Mariana Hill)", "id": 15659, "credit_id": "52fe422bc3a36847f80095a3", "cast_id": 40, "profile_path": "/h3X58tFp2a7Tgt7gNW2sbM6N2EH.jpg", "order": 17}, {"name": "Leopoldo Trieste", "character": "Signor Roberto", "id": 14151, "credit_id": "52fe422bc3a36847f80095a7", "cast_id": 41, "profile_path": "/yPdmZwmCW4cvmENFKMBj63NCFCq.jpg", "order": 18}, {"name": "Dominic Chianese", "character": "Johnny Ola", "id": 68186, "credit_id": "52fe422bc3a36847f80095ab", "cast_id": 42, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 19}, {"name": "Fay Spain", "character": "Mrs. Marcia Roth", "id": 116739, "credit_id": "52fe422bc3a36847f80095af", "cast_id": 43, "profile_path": "/6Dk7IjVZDZJ0v4oF63q7w49PaP4.jpg", "order": 20}, {"name": "Harry Dean Stanton", "character": "F.B.I. Man #1", "id": 5048, "credit_id": "52fe422bc3a36847f80095b3", "cast_id": 44, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 21}, {"name": "Danny Aiello", "character": "Tony Rosato", "id": 1004, "credit_id": "52fe422bc3a36847f80095b7", "cast_id": 45, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 22}, {"name": "Roger Corman", "character": "Senator #2", "id": 102429, "credit_id": "52fe422bc3a36847f80095bb", "cast_id": 46, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 23}, {"name": "William Bowers", "character": "Senate Committee Chairman", "id": 69948, "credit_id": "52fe422bc3a36847f80095bf", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "James Caan", "character": "Sonny Corleone", "id": 3085, "credit_id": "52fe422bc3a36847f80095c3", "cast_id": 48, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 25}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f80094dd", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 8.0, "runtime": 200}, "241": {"poster_path": "/w5sruoTQ87PFAGRJQyyaCOM1C4A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two victims of traumatized childhoods become lovers and psychopathic serial murderers irresponsibly glorified by the mass media.", "video": false, "id": 241, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Natural Born Killers", "tagline": "The Media Made Them Superstars.", "vote_count": 218, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "nv", "name": ""}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0110632", "adult": false, "backdrop_path": "/ozpp9xeOzMz7GglNvcUy841T5pQ.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1994-08-25", "popularity": 0.829108765450684, "original_title": "Natural Born Killers", "budget": 34000000, "cast": [{"name": "Woody Harrelson", "character": "Mickey Knox", "id": 57755, "credit_id": "52fe422bc3a36847f800967d", "cast_id": 49, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Juliette Lewis", "character": "Mallory Knox", "id": 3196, "credit_id": "52fe422bc3a36847f8009681", "cast_id": 50, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 1}, {"name": "Robert Downey Jr.", "character": "Wayne Gale", "id": 3223, "credit_id": "52fe422bc3a36847f8009685", "cast_id": 51, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 2}, {"name": "Tommy Lee Jones", "character": "Warden Dwight McClusky", "id": 2176, "credit_id": "52fe422bc3a36847f8009689", "cast_id": 52, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 3}, {"name": "Tom Sizemore", "character": "Det. Jack Scagnetti", "id": 3197, "credit_id": "52fe422bc3a36847f800968d", "cast_id": 53, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 4}, {"name": "Rodney Dangerfield", "character": "Mallory's Dad", "id": 3198, "credit_id": "52fe422bc3a36847f8009691", "cast_id": 54, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 5}, {"name": "Edie McClurg", "character": "Mallory's Mom", "id": 3202, "credit_id": "52fe422bc3a36847f8009695", "cast_id": 55, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 6}, {"name": "Russell Means", "character": "Old Indian", "id": 3203, "credit_id": "52fe422bc3a36847f8009699", "cast_id": 56, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 7}, {"name": "Maria Pitillo", "character": "Deborah", "id": 3208, "credit_id": "52fe422bc3a36847f800969d", "cast_id": 57, "profile_path": "/ihaCNZzuR7P06OFqOf1aHmAIDna.jpg", "order": 8}, {"name": "Sean Stone", "character": "Kevin", "id": 3210, "credit_id": "52fe422bc3a36847f80096a1", "cast_id": 58, "profile_path": "/kSvY7qVOiNilpf13bI3quoNyLKo.jpg", "order": 9}, {"name": "Everett Quinton", "character": "Deputy Warden Wurlitzer", "id": 3199, "credit_id": "54971aec92514130fc0052d8", "cast_id": 59, "profile_path": null, "order": 10}, {"name": "Jared Harris", "character": "London Boy", "id": 15440, "credit_id": "54971b40c3a36831b800434b", "cast_id": 61, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 12}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f8009607", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.7, "runtime": 119}, "242": {"poster_path": "/uzaP0L7BEprcJHCuwbaHiYT0UYX.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136766062, "overview": "In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.", "video": false, "id": 242, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Godfather: Part III", "tagline": "All the power on earth can't change destiny.", "vote_count": 475, "homepage": "http://www.imdb.com/title/tt0099674/", "belongs_to_collection": {"backdrop_path": "/3WZTxpgscsmoUk81TuECXdFOD0R.jpg", "poster_path": "/msRyKgqWJWGSprcagItruC8mfL3.jpg", "id": 230, "name": "The Godfather Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0099674", "adult": false, "backdrop_path": "/Aj9SXKV2OUXXAQUqmsJXDgub39H.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1990-12-24", "popularity": 1.10626001119713, "original_title": "The Godfather: Part III", "budget": 54000000, "cast": [{"name": "Al Pacino", "character": "Don Michael Corleone", "id": 1158, "credit_id": "52fe422bc3a36847f8009721", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Kay Adams Michelson", "id": 3092, "credit_id": "52fe422bc3a36847f8009725", "cast_id": 2, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Andy Garc\u00eda", "character": "Don Vincent 'Vinnie' Mancini-Corleone", "id": 1271, "credit_id": "52fe422bc3a36847f8009729", "cast_id": 3, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 2}, {"name": "Talia Shire", "character": "Connie Corleone-Rizzi", "id": 3094, "credit_id": "52fe422bc3a36847f800972d", "cast_id": 4, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 3}, {"name": "Sofia Coppola", "character": "Mary Corleone", "id": 1769, "credit_id": "52fe422bc3a36847f8009731", "cast_id": 5, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 4}, {"name": "Eli Wallach", "character": "Don Altobello", "id": 3265, "credit_id": "52fe422bc3a36847f800977d", "cast_id": 18, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 5}, {"name": "Joe Mantegna", "character": "Joey Zasa", "id": 3266, "credit_id": "52fe422bc3a36847f8009781", "cast_id": 19, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 6}, {"name": "George Hamilton", "character": "B.J. Harrison", "id": 3267, "credit_id": "52fe422bc3a36847f8009785", "cast_id": 20, "profile_path": "/vvQPSTNPezjzu92lfUagUXpayGG.jpg", "order": 7}, {"name": "Bridget Fonda", "character": "Grace Hamilton", "id": 2233, "credit_id": "52fe422bc3a36847f8009789", "cast_id": 21, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 8}, {"name": "Raf Vallone", "character": "Cardinal Lamberto", "id": 3268, "credit_id": "52fe422bc3a36847f800978d", "cast_id": 22, "profile_path": "/kmXprY5YSYc5ubCVzDjGTK0lntq.jpg", "order": 9}, {"name": "Franc D'Ambrosio", "character": "Anthony Vito Corleone/Turiddu (auch 'Cavalleria Rusticana')", "id": 3269, "credit_id": "52fe422bc3a36847f8009791", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Donal Donnelly", "character": "Archbishop Gilday", "id": 168632, "credit_id": "52fe422cc3a36847f80097d7", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Richard Bright", "character": "Al Neri", "id": 3174, "credit_id": "52fe422cc3a36847f80097db", "cast_id": 36, "profile_path": "/k2P17sxGhh7Dafidxn9Ub5YbF7n.jpg", "order": 12}, {"name": "Helmut Berger", "character": "Frederick Keinszig", "id": 32058, "credit_id": "52fe422cc3a36847f80097df", "cast_id": 37, "profile_path": "/1ZzAyXQhlnWiBkxMYrc4uV4yAsn.jpg", "order": 13}, {"name": "Don Novello", "character": "Dominic Abbandando", "id": 161860, "credit_id": "52fe422cc3a36847f80097e3", "cast_id": 38, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 14}, {"name": "John Savage", "character": "Father Andrew Hagen", "id": 47879, "credit_id": "52fe422cc3a36847f80097e7", "cast_id": 39, "profile_path": "/ddGrvKHqhziYw9r6U1wu0VDLPYn.jpg", "order": 15}, {"name": "Franco Citti", "character": "Calo", "id": 44860, "credit_id": "52fe422cc3a36847f80097eb", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Mario Donatone", "character": "Mosca", "id": 103060, "credit_id": "52fe422cc3a36847f80097ef", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Vittorio Duse", "character": "Don Tommasino", "id": 32676, "credit_id": "52fe422cc3a36847f80097f3", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Enzo Robutti", "character": "Don Licio Lucchesi", "id": 122022, "credit_id": "52fe422cc3a36847f80097f7", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Michele Russo", "character": "Spara", "id": 982447, "credit_id": "52fe422cc3a36847f80097fb", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Al Martino", "character": "Johnny Fontane", "id": 3144, "credit_id": "52fe422cc3a36847f80097ff", "cast_id": 45, "profile_path": "/4rdC1Ezms99xSDrQnqHZDDpdZiW.jpg", "order": 21}, {"name": "Robert Cicchini", "character": "Lou Pennino", "id": 156431, "credit_id": "52fe422cc3a36847f8009803", "cast_id": 46, "profile_path": "/nvrzmogQGwWeULp8kzjG8EM1lsQ.jpg", "order": 22}, {"name": "Rogerio Miranda", "character": "Twin Bodyguard Armand", "id": 982212, "credit_id": "52fe422cc3a36847f8009807", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "Carlos Miranda", "character": "Twin Bodyguard Francesco", "id": 39007, "credit_id": "52fe422cc3a36847f800980b", "cast_id": 48, "profile_path": "/4AaU3V2VYU9SLZpt11Mv7BONbgG.jpg", "order": 24}, {"name": "Vito Antuofermo", "character": "Anthony 'The Ant' Squigliaro", "id": 1169885, "credit_id": "52fe422cc3a36847f800980f", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Robert Vento", "character": "Father John", "id": 1169886, "credit_id": "52fe422cc3a36847f8009813", "cast_id": 50, "profile_path": null, "order": 26}, {"name": "Willie Brown", "character": "Party Politician", "id": 196286, "credit_id": "52fe422cc3a36847f8009817", "cast_id": 51, "profile_path": null, "order": 27}, {"name": "Jeannie Linero", "character": "Lucy Mancini", "id": 167363, "credit_id": "52fe422cc3a36847f800981b", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Jeanne Savarino Pesch", "character": "Francesca Corleone", "id": 1169887, "credit_id": "52fe422cc3a36847f800981f", "cast_id": 53, "profile_path": null, "order": 29}, {"name": "Janet Savarino Smith", "character": "Kathryn Corleone", "id": 1169888, "credit_id": "52fe422cc3a36847f8009823", "cast_id": 54, "profile_path": null, "order": 30}, {"name": "Tere Livrano", "character": "Teresa Hagen (as Tere L. Baker)", "id": 982089, "credit_id": "52fe422cc3a36847f8009827", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Carmine Caridi", "character": "Albert Volpe", "id": 133853, "credit_id": "52fe422cc3a36847f800982b", "cast_id": 56, "profile_path": "/1BQ7WLUtywjSWoH2G08VixhJXLG.jpg", "order": 32}, {"name": "Don Costello", "character": "Frank Romano", "id": 1209294, "credit_id": "52fe422cc3a36847f800983f", "cast_id": 63, "profile_path": null, "order": 33}, {"name": "Al Ruscio", "character": "Leo Cuneo", "id": 37254, "credit_id": "52fe422cc3a36847f800982f", "cast_id": 58, "profile_path": null, "order": 34}, {"name": "Mickey Knox", "character": "Marty Parisi", "id": 46418, "credit_id": "52fe422cc3a36847f8009833", "cast_id": 59, "profile_path": "/5tyGEyr0PwKt9tFhDySAFekOj7S.jpg", "order": 35}, {"name": "Michael Bowen", "character": "Mask #2", "id": 2234, "credit_id": "52fe422cc3a36847f8009837", "cast_id": 61, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 36}, {"name": "Brett Halsey", "character": "Douglas Michelson", "id": 31896, "credit_id": "52fe422cc3a36847f800983b", "cast_id": 62, "profile_path": "/2YlRV09Bz4QM9C8gX1FDLpVKbmW.jpg", "order": 37}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe422bc3a36847f8009737", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 7.0, "runtime": 162}, "243": {"poster_path": "/sEZKCUFU6Ozf7hZ3UuaKWUqHLTZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47126295, "overview": "When record store owner Rob Gordon gets dumped by his girlfriend, Laura, because he hasn't changed since they met, he revisits his top five breakups of all time in an attempt to figure out what went wrong. As Rob seeks out his former lovers to find out why they left, he keeps up his efforts to win Laura back.", "video": false, "id": 243, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "High Fidelity", "tagline": "A comedy about fear of commitment, hating your job, falling in love and other pop favorites.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146882", "adult": false, "backdrop_path": "/7DbIcmNxYgivKq5R4xgje3xSuqp.jpg", "production_companies": [{"name": "Buena Vista", "id": 32}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2000-03-17", "popularity": 0.366449211095441, "original_title": "High Fidelity", "budget": 30000000, "cast": [{"name": "John Cusack", "character": "Rob Gordon", "id": 3036, "credit_id": "52fe422cc3a36847f80098e7", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Iben Hjejle", "character": "Laura", "id": 1562, "credit_id": "52fe422cc3a36847f80098eb", "cast_id": 8, "profile_path": "/t0areKrmJIoopPaKzPCY7ILuUze.jpg", "order": 1}, {"name": "Todd Louiso", "character": "Dick", "id": 3230, "credit_id": "52fe422cc3a36847f80098ef", "cast_id": 9, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 2}, {"name": "Jack Black", "character": "Barry", "id": 70851, "credit_id": "52fe422cc3a36847f80098f3", "cast_id": 10, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "Lisa Bonet", "character": "Marie DeSalle", "id": 3232, "credit_id": "52fe422cc3a36847f80098f7", "cast_id": 11, "profile_path": "/wP9edkzvr5vIIVaocRf70vdRcdW.jpg", "order": 4}, {"name": "Catherine Zeta-Jones", "character": "Charlie Nicholson", "id": 1922, "credit_id": "52fe422cc3a36847f80098fb", "cast_id": 12, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 5}, {"name": "Joan Cusack", "character": "Liz", "id": 3234, "credit_id": "52fe422cc3a36847f80098ff", "cast_id": 13, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 6}, {"name": "Tim Robbins", "character": "Ian 'Ray' Raymond", "id": 504, "credit_id": "52fe422cc3a36847f8009903", "cast_id": 14, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 7}, {"name": "Chris Rehmann", "character": "Vince", "id": 3235, "credit_id": "52fe422cc3a36847f8009907", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Ben Carr", "character": "Justin", "id": 3236, "credit_id": "52fe422cc3a36847f800990b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Lili Taylor", "character": "Sarah Kendrew", "id": 3127, "credit_id": "52fe422cc3a36847f800990f", "cast_id": 17, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 10}, {"name": "Joelle Carter", "character": "Penny Hardwick", "id": 3237, "credit_id": "52fe422cc3a36847f8009913", "cast_id": 18, "profile_path": "/zdu1LYyKidGrqqSnUkkQ9blMO83.jpg", "order": 11}, {"name": "Natasha Gregson Wagner", "character": "Caroline Fortis", "id": 3270, "credit_id": "52fe422cc3a36847f8009929", "cast_id": 22, "profile_path": "/jjzEhU1kxnHnwDBq4CtNDRxS1f6.jpg", "order": 12}, {"name": "Shannon Stillo", "character": "Alison Jr. High", "id": 3271, "credit_id": "52fe422cc3a36847f800992d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Drake Bell", "character": "Rob Jr. High", "id": 3272, "credit_id": "52fe422cc3a36847f8009931", "cast_id": 24, "profile_path": "/5GqFeFdNXRzb9DwlFSfBef8Pmb0.jpg", "order": 14}, {"name": "Laura Whyte", "character": "Laura's Mom", "id": 3273, "credit_id": "52fe422cc3a36847f8009935", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Sara Gilbert", "character": "Anaugh", "id": 3282, "credit_id": "52fe422cc3a36847f8009939", "cast_id": 26, "profile_path": "/pNimJ9cfqe9OeOLFl0k1pXkQ7SY.jpg", "order": 16}, {"name": "Rich Talarico", "character": "Barry's Customer", "id": 1051450, "credit_id": "52fe422cc3a36847f8009963", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Matthew O'Neill", "character": "Beta Band Customer (as Matt O'Neill)", "id": 1208967, "credit_id": "52fe422cc3a36847f8009967", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Brian Powell", "character": "Middle Aged Customer", "id": 189758, "credit_id": "52fe422cc3a36847f800996b", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Margaret Travolta", "character": "Rob's Mom", "id": 3283, "credit_id": "52fe422cc3a36847f800993d", "cast_id": 27, "profile_path": "/igwSgzjk8Hxe0BZk1GQZUzLKvUw.jpg", "order": 20}, {"name": "Bruce Springsteen", "character": "Himself", "id": 3284, "credit_id": "52fe422cc3a36847f8009941", "cast_id": 28, "profile_path": "/fhp9cMGFvminiYc1uFN1MvHnQaP.jpg", "order": 21}, {"name": "Jill Peterson", "character": "Laura's Sister Jo", "id": 554631, "credit_id": "52fe422cc3a36847f800996f", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Dick Cusack", "character": "Minister", "id": 933416, "credit_id": "52fe422cc3a36847f8009973", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Susan Yoo", "character": "Girl - 19 year old", "id": 1273201, "credit_id": "52fe422cc3a36847f8009977", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Chris Bauer", "character": "Paul", "id": 4445, "credit_id": "52fe422cc3a36847f800997b", "cast_id": 40, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 25}, {"name": "K. K. Dodds", "character": "Miranda", "id": 6945, "credit_id": "52fe422cc3a36847f800997f", "cast_id": 41, "profile_path": "/n9d6ovtwlfZ5Xvvo2oaJd3rUGvp.jpg", "order": 26}, {"name": "Marilyn Dodds Frank", "character": "Alison's Mom", "id": 142333, "credit_id": "52fe422cc3a36847f8009983", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Duke Doyle", "character": "Kevin Bannister", "id": 1273202, "credit_id": "52fe422cc3a36847f8009987", "cast_id": 43, "profile_path": null, "order": 28}, {"name": "Aaron Himelstein", "character": "Boy In Park", "id": 43373, "credit_id": "52fe422cc3a36847f800998b", "cast_id": 44, "profile_path": "/dx7qDc6tMxsfP9jAYkCVClX6p8q.jpg", "order": 29}, {"name": "Jonathan Herrington", "character": "Chris Thompson", "id": 1273203, "credit_id": "52fe422cc3a36847f800998f", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Daniel Lee Smith", "character": "Rock Guy", "id": 1273204, "credit_id": "52fe422cc3a36847f8009993", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Leah Gale", "character": "Mourner", "id": 1273205, "credit_id": "52fe422cc3a36847f8009997", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "David Darlow", "character": "Mourner", "id": 35022, "credit_id": "52fe422cc3a36847f800999b", "cast_id": 48, "profile_path": null, "order": 33}, {"name": "Erik Gundersen", "character": "Marco", "id": 1273206, "credit_id": "52fe422cc3a36847f800999f", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Alex D\u00e9sert", "character": "Louis (as Alex Desert)", "id": 110141, "credit_id": "52fe422cc3a36847f80099a3", "cast_id": 50, "profile_path": "/gewcwADaymdJpV88kwEbYQqHP6F.jpg", "order": 35}, {"name": "Alan S. Johnson", "character": "Man In Store", "id": 1273207, "credit_id": "52fe422cc3a36847f80099a7", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "Ian Belknap", "character": "Party Guest", "id": 204293, "credit_id": "52fe422cc3a36847f80099ab", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Andrew Micheli", "character": "Party Guest", "id": 1084579, "credit_id": "52fe422cc3a36847f80099af", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Polly Noonan", "character": "Party Guest", "id": 86561, "credit_id": "52fe422cc3a36847f80099b3", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Philip Rayburn Smith", "character": "Party Guest", "id": 1226311, "credit_id": "52fe422cc3a36847f80099b7", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Michele Graff", "character": "Party Guest", "id": 181502, "credit_id": "52fe422cc3a36847f80099bb", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Susie Cusack", "character": "Party Guest", "id": 146281, "credit_id": "52fe422cc3a36847f80099bf", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Liam Hayes", "character": "Piano Player", "id": 1141597, "credit_id": "52fe422cc3a36847f80099c3", "cast_id": 58, "profile_path": null, "order": 43}, {"name": "Damian Rogers", "character": "Greenday Girl", "id": 1273209, "credit_id": "52fe422cc3a36847f80099c7", "cast_id": 59, "profile_path": null, "order": 44}, {"name": "Robert A. Villanueva", "character": "Skateboarder", "id": 1273210, "credit_id": "52fe422cc3a36847f80099cb", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Joe Spaulding", "character": "Flea Market Musician", "id": 1273211, "credit_id": "52fe422cc3a36847f80099cf", "cast_id": 61, "profile_path": null, "order": 46}, {"name": "Scott A. Martin", "character": "Bartender", "id": 1055739, "credit_id": "52fe422cc3a36847f80099d3", "cast_id": 62, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 47}, {"name": "Heather Norris", "character": "Laura's Friend", "id": 1273212, "credit_id": "52fe422cc3a36847f80099d7", "cast_id": 63, "profile_path": null, "order": 48}], "directors": [{"name": "Stephen Frears", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f80098c5", "profile_path": "/n95XJkCqkKkWqc2swPsqXYpxxaQ.jpg", "id": 3224}], "vote_average": 6.8, "runtime": 113}, "98548": {"poster_path": "/lMAHB1r1vSUOZRKCYR143mm6VMk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It tells the story of a struggling man who, after flying home to L.A. for the funeral of his estranged record-producer father, discovers that the will stipulates that he must deliver $150,000 in cash to a 30-year-old alcoholic sister he never knew existed, and her troubled 12-year-old son.", "video": false, "id": 98548, "genres": [{"id": 18, "name": "Drama"}], "title": "People Like Us", "tagline": "Find your family.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1716777", "adult": false, "backdrop_path": "/lDxexgNTafPaGUwDOXQWa6RQ2OG.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2012-06-29", "popularity": 0.3625576999018, "original_title": "People Like Us", "budget": 16000000, "cast": [{"name": "Chris Pine", "character": "Sam", "id": 62064, "credit_id": "52fe4a179251416c750dd571", "cast_id": 11, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Frankie", "id": 9281, "credit_id": "52fe4a179251416c750dd575", "cast_id": 12, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Hannah", "id": 59315, "credit_id": "52fe4a179251416c750dd579", "cast_id": 13, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Lillian", "id": 1160, "credit_id": "52fe4a179251416c750dd57d", "cast_id": 14, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Mark Duplass", "character": "Ted", "id": 45407, "credit_id": "52fe4a179251416c750dd581", "cast_id": 15, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 4}, {"name": "Jon Morgan Woodward", "character": "John AA menber", "id": 1018659, "credit_id": "52fe4a179251416c750dd585", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Devin Brochu", "character": "Simon", "id": 202949, "credit_id": "52fe4a179251416c750dd589", "cast_id": 17, "profile_path": "/kxyh9XX1rAtaI02bJxmVDAeFaWv.jpg", "order": 6}, {"name": "Barbara Eve Harris", "character": "Mrs. Haney", "id": 157146, "credit_id": "52fe4a179251416c750dd58d", "cast_id": 18, "profile_path": "/dEiJziN5TPJU5LQjeN95tL3lrNk.jpg", "order": 7}, {"name": "Dean Chekvala", "character": "Jerry", "id": 209573, "credit_id": "52fe4a179251416c750dd591", "cast_id": 19, "profile_path": "/pipG4OPM8ZDEf9RMsdsebz2HPPb.jpg", "order": 8}, {"name": "Sara Mornell", "character": "Dr. Amanda Goldstein", "id": 156785, "credit_id": "52fe4a179251416c750dd595", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Alex Kurtzman", "department": "Directing", "job": "Director", "credit_id": "52fe4a179251416c750dd543", "profile_path": "/5cO0ug7TtRqzbYU4ukKzUzfuUk.jpg", "id": 15345}], "vote_average": 6.8, "runtime": 114}, "245": {"poster_path": "/1kz4Q2v7cxwNnTfkjrujzWAVCne.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129000000, "overview": "Will Freeman is a hip Londoner who one day realizes that his friends are all involved with the responsibilities of married life and that leaves him alone in the cold. Passing himself off as a single father, he starts to meet a string of single mums, confident in his ability to leave them behind when they start to ask for a commitment. But Will's hope of a continued bachelorhood is interrupted when he meets 12-year old Marcus, in many ways his complete opposite.", "video": false, "id": 245, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "About a Boy", "tagline": "One ordinary couple. One little white lie.", "vote_count": 148, "homepage": "http://movies.uip.de/aboutaboy/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0276751", "adult": false, "backdrop_path": "/90eJYj2PxtE9Lu2AiwTsaSWt94Z.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2002-04-26", "popularity": 0.568526374465225, "original_title": "About a Boy", "budget": 27000000, "cast": [{"name": "Hugh Grant", "character": "Will", "id": 3291, "credit_id": "52fe422cc3a36847f8009b23", "cast_id": 7, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Nicholas Hoult", "character": "Marcus Brewer", "id": 3292, "credit_id": "52fe422cc3a36847f8009b27", "cast_id": 8, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 1}, {"name": "Toni Collette", "character": "Fiona Brewer", "id": 3051, "credit_id": "52fe422cc3a36847f8009b2b", "cast_id": 9, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Rachel Weisz", "character": "Rachel", "id": 3293, "credit_id": "52fe422cc3a36847f8009b2f", "cast_id": 10, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 3}, {"name": "Sharon Small", "character": "Christine", "id": 3294, "credit_id": "52fe422cc3a36847f8009b33", "cast_id": 11, "profile_path": "/3hYpwSpiARkKVXGaeq9r6Ji03oI.jpg", "order": 4}, {"name": "Madison Cook", "character": "Imogen", "id": 3295, "credit_id": "52fe422cc3a36847f8009b37", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Jordan Cook", "character": "Imogen", "id": 3296, "credit_id": "52fe422cc3a36847f8009b3b", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Nicholas Hutchison", "character": "John", "id": 3297, "credit_id": "52fe422cc3a36847f8009b3f", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Ryan Speechley", "character": "Barney", "id": 3298, "credit_id": "52fe422cc3a36847f8009b43", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Joseph Speechley", "character": "Barney", "id": 3299, "credit_id": "52fe422cc3a36847f8009b47", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Natalia Tena", "character": "Ellie", "id": 3300, "credit_id": "52fe422cc3a36847f8009b4b", "cast_id": 17, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 10}, {"name": "Isabel Brook", "character": "Angie", "id": 3301, "credit_id": "52fe422cc3a36847f8009b4f", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Orlando Thor Newman", "character": "Louie, Angie's Kid", "id": 3302, "credit_id": "52fe422cc3a36847f8009b53", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Russell Barr", "character": "Maitre D'", "id": 3303, "credit_id": "52fe422cc3a36847f8009b57", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Denise Stephenson", "character": "Lindsey", "id": 3306, "credit_id": "52fe422cc3a36847f8009b79", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Peter Roy", "character": "Will's Dad", "id": 3307, "credit_id": "52fe422cc3a36847f8009b7d", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Rosalind Knight", "character": "Lindsey's Mum", "id": 3308, "credit_id": "52fe422cc3a36847f8009b81", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Augustus Prew", "character": "Ali", "id": 3309, "credit_id": "52fe422cc3a36847f8009b85", "cast_id": 29, "profile_path": "/k3pRpdfeHZq0BGBAYqhXyKjDuic.jpg", "order": 17}, {"name": "Victoria Smurfit", "character": "Suzie", "id": 3315, "credit_id": "52fe422cc3a36847f8009ba7", "cast_id": 35, "profile_path": "/aNPzf4S9WNIF60HTkTuGHvE8JqO.jpg", "order": 18}, {"name": "Sian Martin", "character": "", "id": 1328285, "credit_id": "53b17de70e0a26598c0085d3", "cast_id": 37, "profile_path": null, "order": 19}], "directors": [{"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f8009b01", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}, {"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f8009b07", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 6.3, "runtime": 101}, "246": {"poster_path": "/xNFaRG30R3IiVFMgX8X8kAFGxCP.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Zat\u00f4ichi is a 19th century blind nomad who makes his living as a gambler and masseur. However, behind this humble facade, he is a master swordsman gifted with a lightning-fast draw and breathtaking precision. While wandering, Zat\u00f4ichi discovers a remote mountain village at the mercy of Ginzo, a ruthless gang-leader. Ginzo disposes of anyone who gets in his way, especially after hiring the mighty samurai ronin, Hattori, as a bodyguard. After a raucous night of gambling in town, Zat\u00f4ichi encounters a pair of geishas--as dangerous as they are beautiful--who've come to avenge their parents' murder. As the paths of these and other colorful characters intertwine, Ginzo's henchmen are soon after Zat\u00f4ichi. With his legendary cane sword at his side, the stage is set for a riveting showdown.", "video": false, "id": 246, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Zatoichi: The Blind Swordsman", "tagline": "His sword made him a hero... his courage made him a legend.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0363226", "adult": false, "backdrop_path": "/qvtzzhdr8ne2eb6lMaoCeXWye09.jpg", "production_companies": [{"name": "Office Kitano", "id": 567}, {"name": "Saito Entertainment", "id": 568}, {"name": "Tokyo FM Broadcasting Company", "id": 569}, {"name": "Bandai Visual Company (JAPAN)", "id": 570}], "release_date": "2003-09-06", "popularity": 0.516689612892227, "original_title": "Zat\u00f4ichi", "budget": 0, "cast": [{"name": "Takeshi Kitano", "character": "Zat\u00f4ichi", "id": 3317, "credit_id": "52fe422cc3a36847f8009c27", "cast_id": 13, "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "order": 0}, {"name": "Tadanobu Asano", "character": "Hattori, der Leibw\u00e4chter", "id": 13275, "credit_id": "52fe422cc3a36847f8009c2b", "cast_id": 14, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 1}, {"name": "Michiyo Ohkusu", "character": "Tante O-Ume", "id": 1050798, "credit_id": "54b2100992514107e000238e", "cast_id": 24, "profile_path": null, "order": 2}, {"name": "Gadarukanaru Taka", "character": "Shinkichi", "id": 13277, "credit_id": "52fe422cc3a36847f8009c33", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Daigor\u014d Tachibana", "character": "Geisha O-Sei", "id": 13278, "credit_id": "52fe422cc3a36847f8009c37", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Y\u00fbko Daike", "character": "Geisha O-Kinu", "id": 13257, "credit_id": "52fe422cc3a36847f8009c4b", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Yui Natsukawa", "character": "Hattoris Frau", "id": 13280, "credit_id": "52fe422cc3a36847f8009c3b", "cast_id": 18, "profile_path": "/y49Kk0dslXP0zXJjUYKB9X7Jbk9.jpg", "order": 6}, {"name": "Ittoku Kishibe", "character": "Ginzo", "id": 13281, "credit_id": "52fe422cc3a36847f8009c3f", "cast_id": 19, "profile_path": "/zisEtz9j0k1AjExiSsgxMdhOYMh.jpg", "order": 7}, {"name": "Saburo Ishikura", "character": "Ogi", "id": 13282, "credit_id": "52fe422cc3a36847f8009c43", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Akira Emoto", "character": "Kneipenbesitzer", "id": 13283, "credit_id": "52fe422cc3a36847f8009c47", "cast_id": 21, "profile_path": "/9jh1u0EGmIoeAuXgTWE76lB0DDr.jpg", "order": 9}], "directors": [{"name": "Takeshi Kitano", "department": "Directing", "job": "Director", "credit_id": "52fe422cc3a36847f8009be1", "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "id": 3317}], "vote_average": 7.1, "runtime": 111}, "262391": {"poster_path": "/bdSB0XqFB0cu0z9TkMQHKErtiU2.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A catholic French couple sees their life upside down when their four daughters get married to men of different religion and origins.", "video": false, "id": 262391, "genres": [{"id": 35, "name": "Comedy"}], "title": "Serial (Bad) Weddings", "tagline": "4 marriages, 2 long-faces", "vote_count": 248, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2800240", "adult": false, "backdrop_path": "/umRJ4di4xbpv6jAddHczdt1723S.jpg", "production_companies": [{"name": "UGC", "id": 581}], "release_date": "2014-04-16", "popularity": 2.11367285294911, "original_title": "Qu'est-ce qu'on a fait au Bon Dieu", "budget": 0, "cast": [{"name": "Christian Clavier", "character": "Claude Verneuil", "id": 28781, "credit_id": "5339b71dc3a3680e70006520", "cast_id": 1, "profile_path": "/1VB7ls5ibtsklup67akj6bLbgp.jpg", "order": 1}, {"name": "Chantal Lauby", "character": "Marie Verneuil", "id": 82119, "credit_id": "5339b77dc3a3680e6900663d", "cast_id": 6, "profile_path": "/jjAqj8DtfVD4F4jJOn2ZUEfp0Qm.jpg", "order": 6}, {"name": "Ary Abittan", "character": "David Benichou", "id": 83969, "credit_id": "5339b839c3a3680e9f00625a", "cast_id": 7, "profile_path": "/icnoi1nE54NtAjkM671iisoz08Y.jpg", "order": 7}, {"name": "Medi Sadoun", "character": "Rachid Benassem", "id": 1077538, "credit_id": "5339b859c3a3680e760065f5", "cast_id": 8, "profile_path": "/exreP1BqQICDw5I0ozdyv8TnKKd.jpg", "order": 8}, {"name": "Fr\u00e9d\u00e9ric Chau", "character": "Chao Ling", "id": 226021, "credit_id": "5339b880c3a3680e760065f8", "cast_id": 9, "profile_path": "/9QRFgZqIv08TxaR19ouomv8FgWs.jpg", "order": 9}, {"name": "Noom Diawara", "character": "Charles Koffi", "id": 131403, "credit_id": "5339b896c3a3680e7f0064dd", "cast_id": 10, "profile_path": "/hc7SjF5THPJrik6LtItNXYeqyN3.jpg", "order": 10}, {"name": "Fr\u00e9d\u00e9rique Bel", "character": "Isabelle Verneuil", "id": 65572, "credit_id": "5339b8b8c3a3680e760065fe", "cast_id": 11, "profile_path": "/5iZ1art3eLMcBTZmbXgSFG4c3Yx.jpg", "order": 11}, {"name": "Julia Piaton", "character": "Odile Verneuil", "id": 1074716, "credit_id": "5339b8d5c3a3680e8f0066dd", "cast_id": 12, "profile_path": "/cEc2DScbXfp1UjQN1jnPox1YG81.jpg", "order": 12}, {"name": "Emilie Caen", "character": "S\u00e9gol\u00e8ne Verneuil", "id": 999406, "credit_id": "5339b8fbc3a3680e69006661", "cast_id": 13, "profile_path": "/5uHAZnWJj7HFHtJl72kS3qSMJA1.jpg", "order": 13}, {"name": "Elodie Fontan", "character": "Laure Verneuil", "id": 146630, "credit_id": "5339b91ec3a3680e9f00626e", "cast_id": 14, "profile_path": "/2NjUCEsgyPOnxKepprszrDSZT31.jpg", "order": 14}], "directors": [{"name": "Philippe de Chauveron", "department": "Directing", "job": "Director", "credit_id": "5339b6f8c3a3680e70006518", "profile_path": null, "id": 225142}], "vote_average": 7.2, "runtime": 94}, "182219": {"poster_path": "/8XsytWmkZmF6QG1mFgKG4RkK1xj.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "With only 12 percent of its pupils obtaining their baccalaureate, Jules Ferry High School is the worst school in France. The Inspector of Schools has already exhausted all the conventional means to raise standards at the school and he has no choice but to take the advice of his deputy. It is a case of having to fight fire with fire: the worst pupils must be taught by the worst teachers...", "video": false, "id": 182219, "genres": [{"id": 35, "name": "Comedy"}], "title": "Serial Teachers", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2276778", "adult": false, "backdrop_path": "/dc46nZwoHAKmnfoR0TMrTlGMeel.jpg", "production_companies": [{"name": "UGC", "id": 581}], "release_date": "2013-04-17", "popularity": 0.000871890323546716, "original_title": "Les profs", "budget": 0, "cast": [{"name": "Christian Clavier", "character": "Cutiro / Serge Tirocul", "id": 28781, "credit_id": "52fe4c7d9251416c7511c16d", "cast_id": 1, "profile_path": "/1VB7ls5ibtsklup67akj6bLbgp.jpg", "order": 0}, {"name": "Isabelle Nanty", "character": "Gladys", "id": 2412, "credit_id": "52fe4c7d9251416c7511c171", "cast_id": 2, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 1}, {"name": "Pierre-Fran\u00e7ois Martin-Laval", "character": "Antoine Polochon", "id": 35968, "credit_id": "52fe4c7d9251416c7511c175", "cast_id": 3, "profile_path": "/fPjMhzeUglQVqWZptkhnCfO7ust.jpg", "order": 2}, {"name": "Kev Adams", "character": "Boulard", "id": 1165008, "credit_id": "52fe4c7d9251416c7511c179", "cast_id": 4, "profile_path": "/TxOlDGfAdsfoRd3ZmzVokK524B.jpg", "order": 3}, {"name": "Fran\u00e7ois Morel", "character": "L'inspecteur adjoint", "id": 77929, "credit_id": "52fe4c7d9251416c7511c17d", "cast_id": 5, "profile_path": "/k22m9DV2EjTho6IL3TMpVeIU2Bf.jpg", "order": 4}, {"name": "Arnaud Ducret", "character": "Eric, prof d'EPS", "id": 1069634, "credit_id": "52fe4c7d9251416c7511c181", "cast_id": 6, "profile_path": "/liOdX5nSYxxtKsIbVM5fqAYBN4B.jpg", "order": 5}, {"name": "Stefi Celma", "character": "Amina, prof de Fran\u00e7ais", "id": 1145003, "credit_id": "52fe4c7d9251416c7511c185", "cast_id": 7, "profile_path": "/yer0PSxVCrXEfNAlYyVGRcp3J1z.jpg", "order": 6}, {"name": "Raymond Bouchard", "character": "Maurice, prof de Philo", "id": 46275, "credit_id": "52fe4c7d9251416c7511c189", "cast_id": 8, "profile_path": "/kgu87sGNqOGa0O4EbujWGZhThlX.jpg", "order": 7}, {"name": "Fred Tousch", "character": "Albert, prof de chimie", "id": 1169052, "credit_id": "52fe4c7e9251416c7511c1c9", "cast_id": 19, "profile_path": null, "order": 8}], "directors": [{"name": "Pierre-Fran\u00e7ois Martin-Laval", "department": "Directing", "job": "Director", "credit_id": "52fe4c7d9251416c7511c18f", "profile_path": "/fPjMhzeUglQVqWZptkhnCfO7ust.jpg", "id": 35968}], "vote_average": 5.1, "runtime": 88}, "41210": {"poster_path": "/cikOGh4sUstWitAS3BTEpXsJ1vr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49830607, "overview": "An unmarried 40-year-old woman turns to a turkey baster in order to become pregnant. Seven years later, she reunites with her best friend, who has been living with a secret: he replaced her preferred sperm sample with his own.", "video": false, "id": 41210, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Switch", "tagline": "The most unexpected comedy ever conceived.", "vote_count": 179, "homepage": "http://theswitch-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0889573", "adult": false, "backdrop_path": "/4UnmIN6aJhUiCIw8JlQuxUJ9vzR.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Bona Fide Productions", "id": 2570}, {"name": "Echo Films", "id": 7382}], "release_date": "2010-05-11", "popularity": 1.11761579727789, "original_title": "The Switch", "budget": 19000000, "cast": [{"name": "Jason Bateman", "character": "Wally Mars", "id": 23532, "credit_id": "52fe45bcc3a36847f80d7815", "cast_id": 1, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Kassie Larson", "id": 4491, "credit_id": "52fe45bcc3a36847f80d7819", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Jeff Goldblum", "character": "Leonard", "id": 4785, "credit_id": "52fe45bcc3a36847f80d781d", "cast_id": 3, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Debbie", "id": 3196, "credit_id": "52fe45bcc3a36847f80d7821", "cast_id": 4, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Todd Louiso", "character": "Artie", "id": 3230, "credit_id": "52fe45bcc3a36847f80d7825", "cast_id": 6, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 4}, {"name": "Jason Jones", "character": "Climbing Wall Guide", "id": 185805, "credit_id": "530023cec3a368400f1b1253", "cast_id": 11, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 5}, {"name": "Scott Elrod", "character": "Declan", "id": 108532, "credit_id": "530023e1c3a3683ff21a0b79", "cast_id": 12, "profile_path": "/b7nV383fAzIcygOAsuvcDukJlK1.jpg", "order": 6}, {"name": "Patrick Wilson", "character": "Roland", "id": 17178, "credit_id": "530023eac3a3683fe21b55d3", "cast_id": 13, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 7}, {"name": "Kelli Barrett", "character": "Jessica", "id": 968851, "credit_id": "530023f7c3a3683ffe1bfaf1", "cast_id": 14, "profile_path": "/hAzAP92FgiGXJgvrl8lWuqN23lT.jpg", "order": 8}, {"name": "Thomas Robinson", "character": "Sebastian", "id": 965224, "credit_id": "53002406c3a3683fcf1cc2a3", "cast_id": 15, "profile_path": "/duhdLnjGG7s05T4xjXDu7ISYKeN.jpg", "order": 9}, {"name": "Victor Pagan", "character": "Knit Hat Guy", "id": 59280, "credit_id": "5335534bc3a3682ab50046ba", "cast_id": 16, "profile_path": "/5HEuGK2u5cA3DK30sySmxwJHCDo.jpg", "order": 10}, {"name": "Jeremy J. Mohler", "character": "Party Guest #2", "id": 1305257, "credit_id": "53355376c3a3682ab50046c0", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Will Swenson", "character": "Actor on Stage", "id": 1022885, "credit_id": "5335538ac3a3680a1e00411a", "cast_id": 18, "profile_path": "/tDjLvhLQilz2lqlYR3qQC8uT80g.jpg", "order": 12}, {"name": "Edward James Hyland", "character": "Man in Theater", "id": 91453, "credit_id": "5335539ec3a3682a870048fc", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Caroline Dhavernas", "character": "Pauline", "id": 31383, "credit_id": "533553abc3a3682aac00464f", "cast_id": 20, "profile_path": "/nLj1IbeBb3aYPcfJKMuE0JHzhcy.jpg", "order": 14}, {"name": "Brian Podnos", "character": "Waiter", "id": 1305264, "credit_id": "533553c2c3a3682a9c0045a0", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "Josh Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d782b", "profile_path": "/g316UVVZWfD4cXQpxYirnhgop7U.jpg", "id": 60922}, {"name": "Will Speck", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d7831", "profile_path": "/mrTboVxXv4LnVuPoBdQvU1cMD4l.jpg", "id": 60923}], "vote_average": 5.8, "runtime": 101}, "41211": {"poster_path": "/fECaEIjjvozG1dGoi6cgTevIae5.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "MC", "name": "Monaco"}], "revenue": 34900000, "overview": "Alex and his sister run a business designed to break up relationships. They are hired by a rich man to break up the wedding of his daughter. The only problem is that they only have one week to do so.", "video": false, "id": 41211, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Heartbreaker", "tagline": "He's broken every heart except his own... until now.", "vote_count": 65, "homepage": "http://www.heartbreakermovie.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1465487", "adult": false, "backdrop_path": "/hM11OEjhNdWzohu77wN7T0vxAK9.jpg", "production_companies": [{"name": "Quad Productions", "id": 7038}, {"name": "Script Associ\u00e9s", "id": 19957}, {"name": "Focus Features", "id": 17301}, {"name": "Chaocorp", "id": 7766}, {"name": "A Plus Image", "id": 19959}, {"name": "Banque Populaire Images 10", "id": 12609}, {"name": "Orange Cin\u00e9ma S\u00e9ries", "id": 11620}], "release_date": "2010-03-17", "popularity": 0.493264081282725, "original_title": "L'arnacoeur", "budget": 42041529, "cast": [{"name": "Romain Duris", "character": "Alex Lippi", "id": 17497, "credit_id": "52fe45bcc3a36847f80d787f", "cast_id": 5, "profile_path": "/buU0mFOX7PvSr50F6H8SrN71W08.jpg", "order": 0}, {"name": "Vanessa Paradis", "character": "Juliette Van Der Beck", "id": 65007, "credit_id": "52fe45bcc3a36847f80d7883", "cast_id": 6, "profile_path": "/zPwmGEC7nN43bRIb4eovuTWEE18.jpg", "order": 1}, {"name": "Julie Ferrier", "character": "M\u00e9lanie", "id": 54292, "credit_id": "52fe45bcc3a36847f80d7887", "cast_id": 7, "profile_path": "/lDyve5gGt5KM4hWLeCCYY6XNUcg.jpg", "order": 2}, {"name": "Fran\u00e7ois Damiens", "character": "Marc", "id": 24041, "credit_id": "52fe45bcc3a36847f80d788f", "cast_id": 9, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 3}, {"name": "Andrew Lincoln", "character": "Jonathan Alcott", "id": 7062, "credit_id": "52fe45bcc3a36847f80d788b", "cast_id": 8, "profile_path": "/b4KqT3vy3MFurEp7q2ni1PRyDxL.jpg", "order": 4}, {"name": "H\u00e9l\u00e9na Noguerra", "character": "Sophie", "id": 587159, "credit_id": "52fe45bcc3a36847f80d7893", "cast_id": 10, "profile_path": "/lc85sxTP2Y5O83QQHpUD0Y5IoTH.jpg", "order": 5}, {"name": "Jacques Frantz", "character": "Van Der Beck", "id": 39884, "credit_id": "52fe45bcc3a36847f80d7897", "cast_id": 11, "profile_path": "/sxXM4WGSwqbjjxRJ7JqaP6qabmG.jpg", "order": 6}, {"name": "Jean-Yves Lafesse", "character": "Dutour", "id": 544566, "credit_id": "52fe45bcc3a36847f80d789b", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Jean-Marie Paris", "character": "Goran", "id": 1291809, "credit_id": "52fe45bcc3a36847f80d789f", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Elodie Frenck", "character": "Karine", "id": 42718, "credit_id": "52fe45bcc3a36847f80d78a3", "cast_id": 14, "profile_path": "/dMJTta8394RTt4MzqErwNHu2V96.jpg", "order": 9}, {"name": "Tarek Boudali", "character": "Le manager Montecarlo Bay", "id": 1186075, "credit_id": "52fe45bcc3a36847f80d78a7", "cast_id": 15, "profile_path": "/kxZDvHShgONqXNyZzdeOGm4Wq47.jpg", "order": 10}, {"name": "Philippe Lacheau", "character": "Le compagnon (as Philippe Lacheau dit \u00ab Fifi \u00bb)", "id": 1186076, "credit_id": "52fe45bcc3a36847f80d78ab", "cast_id": 16, "profile_path": "/c7uygPak9MLfOa6WCTv46ir7muW.jpg", "order": 11}, {"name": "Julien Arruti", "character": "Fr\u00e8re de Florence", "id": 1291810, "credit_id": "52fe45bcc3a36847f80d78af", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Geoffrey Bateman", "character": "Le beau-p\u00e8re de Juliette", "id": 185391, "credit_id": "52fe45bcc3a36847f80d78b3", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Pascal Chaumeil", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d7869", "profile_path": null, "id": 8392}], "vote_average": 6.8, "runtime": 105}, "252": {"poster_path": "/b94qXd1FcIwgzv0NYMUe2bjrzJR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4000000, "overview": "Eccentric candy man Willy Wonka prompts a worldwide frenzy when he announces that golden tickets hidden inside five of his delicious candy bars will admit their lucky holders into his top-secret confectionary. But does Wonka have an agenda hidden amid a world of Oompa Loompas and chocolate rivers?", "video": false, "id": 252, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Willy Wonka & the Chocolate Factory", "tagline": "It's Scrumdiddlyumptious!", "vote_count": 218, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0067992", "adult": false, "backdrop_path": "/nyqiCFF3pjcdwG2KmOwvM6CCLKA.jpg", "production_companies": [{"name": "David L. Wolper Productions", "id": 3434}], "release_date": "1971-06-29", "popularity": 0.639126665162848, "original_title": "Willy Wonka & the Chocolate Factory", "budget": 2900000, "cast": [{"name": "Gene Wilder", "character": "Willy Wonka", "id": 3460, "credit_id": "52fe422dc3a36847f800a019", "cast_id": 11, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 0}, {"name": "Jack Albertson", "character": "Grandpa Joe", "id": 3461, "credit_id": "52fe422dc3a36847f800a01d", "cast_id": 12, "profile_path": "/k9oqFrLhgd6v1hGG8Jg2mluM1XL.jpg", "order": 1}, {"name": "Peter Ostrum", "character": "Charlie Bucket", "id": 3462, "credit_id": "52fe422dc3a36847f800a021", "cast_id": 13, "profile_path": "/2P3JRXYxuY0Ynoj1uVnX9zqlZCg.jpg", "order": 2}, {"name": "Roy Kinnear", "character": "Mr. Henry Salt", "id": 3463, "credit_id": "52fe422dc3a36847f800a025", "cast_id": 14, "profile_path": "/llKNI5XTjF35oy22cdFO4bhkxYG.jpg", "order": 3}, {"name": "Julie Dawn Cole", "character": "Veruca Salt", "id": 3464, "credit_id": "52fe422dc3a36847f800a029", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Leonard Stone", "character": "Mr. Sam Beauregarde", "id": 3467, "credit_id": "52fe422dc3a36847f800a02d", "cast_id": 16, "profile_path": "/2tastJvF2MWzj1yhbnEI88ZH9a.jpg", "order": 5}, {"name": "Denise Nickerson", "character": "Violet Beauregarde", "id": 3468, "credit_id": "52fe422dc3a36847f800a031", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Nora Denney", "character": "Mrs. Teevee", "id": 3469, "credit_id": "52fe422dc3a36847f800a035", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Paris Themmen", "character": "Mike Teevee", "id": 3470, "credit_id": "52fe422dc3a36847f800a039", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Ursula Reit", "character": "Mrs. Gloop", "id": 3471, "credit_id": "52fe422dc3a36847f800a03d", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Diana Sowle", "character": "Mrs. Bucket", "id": 3473, "credit_id": "52fe422dc3a36847f800a041", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Aubrey Woods", "character": "Bill, Candy Shop Owner", "id": 3474, "credit_id": "52fe422dc3a36847f800a045", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "David Battley", "character": "Mr. Turkentine", "id": 3475, "credit_id": "52fe422dc3a36847f800a049", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Peter Capell", "character": "The Tinker", "id": 3476, "credit_id": "52fe422dc3a36847f800a04d", "cast_id": 24, "profile_path": "/kwAOpbL1SeDxvQXkKLDkm8ZeTY0.jpg", "order": 13}, {"name": "Pat Coombs", "character": "Henrietta Salt", "id": 3478, "credit_id": "52fe422dc3a36847f800a051", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "G\u00fcnter Meisner", "character": "Mr. Slugworth", "id": 3617, "credit_id": "52fe422dc3a36847f800a067", "cast_id": 29, "profile_path": null, "order": 15}], "directors": [{"name": "Mel Stuart", "department": "Directing", "job": "Director", "credit_id": "52fe422dc3a36847f8009fe5", "profile_path": "/w1R95d86v3YDWDrAtpETSeMGF5X.jpg", "id": 3451}], "vote_average": 7.1, "runtime": 100}, "253": {"poster_path": "/xuuoqXxhUDS1o417edMilIvGa88.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JM", "name": "Jamaica"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161777836, "overview": "James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.", "video": false, "id": 253, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Live and Let Die", "tagline": "Roger Moore is James Bond.", "vote_count": 151, "homepage": "http://www.mgm.com/view/movie/1130/Live-and-Let-Die/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0070328", "adult": false, "backdrop_path": "/gY5D80kK6QBgHa8c9aL3tx0aTEb.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1973-07-05", "popularity": 1.03720508791402, "original_title": "Live and Let Die", "budget": 7000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe422ec3a36847f800a117", "cast_id": 19, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Yaphet Kotto", "character": "Kananga/Mr. Big", "id": 5050, "credit_id": "52fe422ec3a36847f800a11b", "cast_id": 20, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 1}, {"name": "Jane Seymour", "character": "Solitaire", "id": 10223, "credit_id": "52fe422ec3a36847f800a11f", "cast_id": 21, "profile_path": "/tBWYbLSieHshqVhy1EXlv12mBjs.jpg", "order": 2}, {"name": "Clifton James", "character": "Sheriff J.W. Pepper", "id": 10224, "credit_id": "52fe422ec3a36847f800a123", "cast_id": 22, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 3}, {"name": "Julius Harris", "character": "Tee Hee", "id": 6772, "credit_id": "52fe422ec3a36847f800a127", "cast_id": 23, "profile_path": "/vhyuxFmam4SQSjTOLPStOVYMgbb.jpg", "order": 4}, {"name": "Geoffrey Holder", "character": "Baron Samedi", "id": 10225, "credit_id": "52fe422ec3a36847f800a12b", "cast_id": 24, "profile_path": "/bmNg7Ld2H1V3Sqz2PmxvOJOof8z.jpg", "order": 5}, {"name": "David Hedison", "character": "Felix Leiter", "id": 10226, "credit_id": "52fe422ec3a36847f800a12f", "cast_id": 25, "profile_path": "/1Wp1EV1Kcpr85imqCEkFvqCMYDZ.jpg", "order": 6}, {"name": "Gloria Hendry", "character": "Rosie Carver", "id": 10227, "credit_id": "52fe422ec3a36847f800a133", "cast_id": 26, "profile_path": "/pjEOcZSMyVouzpCvVk9DyY43C5x.jpg", "order": 7}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe422ec3a36847f800a137", "cast_id": 27, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 8}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe422ec3a36847f800a13b", "cast_id": 28, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 9}, {"name": "Tommy Lane", "character": "Adam", "id": 10228, "credit_id": "5405a5dbc3a3685b74003bb8", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Earl Jolly Brown", "character": "Whisper", "id": 141270, "credit_id": "5405a5f2c3a36816af0034f0", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Lon Satton", "character": "Strutter", "id": 19617, "credit_id": "5405a608c3a3684366008313", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Madeline Smith", "character": "Miss Caruso", "id": 30577, "credit_id": "5405a64dc3a3684363007f7f", "cast_id": 32, "profile_path": "/3X8F6o4uPt7mrQvs66dkn1W9wiw.jpg", "order": 13}, {"name": "Roy Stewart", "character": "Quarrel", "id": 1350577, "credit_id": "54ad6a3bc3a3682870000025", "cast_id": 33, "profile_path": "/4b4vCgdVQLAghAWU785nuF0HVVv.jpg", "order": 14}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe422dc3a36847f800a0ad", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 5.9, "runtime": 121}, "254": {"poster_path": "/ueMFrWi2NTqvpDAUWh5lSewai8Q.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 550000000, "overview": "In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with leading lady Ann Darrow.", "video": false, "id": 254, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "King Kong", "tagline": "The eighth wonder of the world.", "vote_count": 583, "homepage": "http://movies.uip.de/kingkong/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0360717", "adult": false, "backdrop_path": "/lWnPz1EvXUWMvXK1plZMA1I2XMV.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "WingNut Films", "id": 11}, {"name": "Big Primate Pictures", "id": 68}, {"name": "MFPV Film", "id": 69}], "release_date": "2005-12-14", "popularity": 1.0637451159188, "original_title": "King Kong", "budget": 207000000, "cast": [{"name": "Naomi Watts", "character": "Ann Darrow", "id": 3489, "credit_id": "52fe422ec3a36847f800a19f", "cast_id": 5, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Jack Black", "character": "Carl Denham", "id": 70851, "credit_id": "52fe422ec3a36847f800a1a3", "cast_id": 6, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 1}, {"name": "Adrien Brody", "character": "Jack Driscoll", "id": 3490, "credit_id": "52fe422ec3a36847f800a1a7", "cast_id": 7, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Captain Englehorn", "id": 3491, "credit_id": "52fe422ec3a36847f800a1ab", "cast_id": 8, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Colin Hanks", "character": "Preston", "id": 3492, "credit_id": "52fe422ec3a36847f800a1af", "cast_id": 9, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 4}, {"name": "Andy Serkis", "character": "Kong/Lumpy", "id": 1333, "credit_id": "52fe422ec3a36847f800a1b3", "cast_id": 10, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 5}, {"name": "Evan Parke", "character": "Hayes", "id": 3493, "credit_id": "52fe422ec3a36847f800a1b7", "cast_id": 11, "profile_path": "/kHzILtL1BS7bGFuoTTufqt78sOD.jpg", "order": 6}, {"name": "Jamie Bell", "character": "Jimmy", "id": 478, "credit_id": "52fe422ec3a36847f800a1bb", "cast_id": 12, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 7}, {"name": "Lobo Chan", "character": "Choy", "id": 3494, "credit_id": "52fe422ec3a36847f800a1bf", "cast_id": 13, "profile_path": "/hxZPJaRW6SGhc5MFXuPd3LQlaMz.jpg", "order": 8}, {"name": "John Sumner", "character": "Herb", "id": 3495, "credit_id": "52fe422ec3a36847f800a1c3", "cast_id": 14, "profile_path": "/9b3RL7HRtPeqUrnCkO12bevK85a.jpg", "order": 9}, {"name": "Craig Hall", "character": "Mike", "id": 3496, "credit_id": "52fe422ec3a36847f800a1c7", "cast_id": 15, "profile_path": "/e18KUAquVXJcEl9uPC0InR9BLyu.jpg", "order": 10}, {"name": "Kyle Chandler", "character": "Bruce Baxter", "id": 3497, "credit_id": "52fe422ec3a36847f800a1cb", "cast_id": 16, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 11}, {"name": "William Johnson", "character": "Manny", "id": 1166385, "credit_id": "52fe422ec3a36847f800a239", "cast_id": 36, "profile_path": "/b5cYHL0BJ8DlMML18ZlrSF6ZlMp.jpg", "order": 12}, {"name": "David Pittu", "character": "Weston", "id": 3541, "credit_id": "52fe422ec3a36847f800a235", "cast_id": 35, "profile_path": "/8LIOzw0A9K3D0XKdtuamQZx1bES.jpg", "order": 13}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe422ec3a36847f800a189", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.3, "runtime": 187}, "41215": {"poster_path": "/t5ltTHRIyr4ARgyNIb7DytMEOLQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 242764, "overview": "As the plague decimates medieval Europe, rumors circulate of a village immune from the plague. There is talk of a necromancer who leads the village and is able to raise the dead. A fearsome knight joined by a cohort of soldiers and a young monk are charged by the church to investigate. Their journey is filled with danger, but it's upon entering the village that their true horror begins.", "video": false, "id": 41215, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Black Death", "tagline": "In an age of darkness one man will face the ultimate battle against evil.", "vote_count": 51, "homepage": "http://www.blackdeathmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1181791", "adult": false, "backdrop_path": "/qqmi8TAsSSOdi1pgHYtTA05W7OB.jpg", "production_companies": [{"name": "Egoli Tossell Film AG", "id": 2254}, {"name": "The Post Republic", "id": 11009}, {"name": "Ecosse Films", "id": 1267}, {"name": "Zephyr Films", "id": 16923}, {"name": "HanWay Films", "id": 2395}], "release_date": "2010-06-11", "popularity": 0.449548861414505, "original_title": "Black Death", "budget": 0, "cast": [{"name": "Sean Bean", "character": "Ulric", "id": 48, "credit_id": "52fe45bcc3a36847f80d7981", "cast_id": 2, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 0}, {"name": "Eddie Redmayne", "character": "Osmund", "id": 37632, "credit_id": "52fe45bcc3a36847f80d7985", "cast_id": 4, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 2}, {"name": "Carice van Houten", "character": "Langiva", "id": 23229, "credit_id": "52fe45bcc3a36847f80d7989", "cast_id": 5, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 3}, {"name": "Kimberley Nixon", "character": "Averill", "id": 124828, "credit_id": "52fe45bcc3a36847f80d798d", "cast_id": 6, "profile_path": "/frdqvlqCWK76ERBB9cMVeRCKcHv.jpg", "order": 4}, {"name": "John Lynch", "character": "Wolfstan", "id": 28743, "credit_id": "52fe45bcc3a36847f80d7991", "cast_id": 7, "profile_path": "/2OHQ4Hck4QlCqDjQ4mK6OMW65n3.jpg", "order": 5}, {"name": "Tim McInnerny", "character": "Hob", "id": 41043, "credit_id": "52fe45bcc3a36847f80d7995", "cast_id": 8, "profile_path": "/wxO1c0e5N1WHn2wLHmEbvrfqnnX.jpg", "order": 6}, {"name": "Andy Nyman", "character": "Dalywag", "id": 22810, "credit_id": "52fe45bcc3a36847f80d7999", "cast_id": 9, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 7}, {"name": "Daniel Steiner", "character": "Monk", "id": 1064525, "credit_id": "52fe45bcc3a36847f80d79a3", "cast_id": 11, "profile_path": "/o4IfD5CslMvI0WKUYzOHTKBuBCw.jpg", "order": 8}, {"name": "David Warner", "character": "Abbot", "id": 2076, "credit_id": "52fe45bcc3a36847f80d79a7", "cast_id": 12, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 9}, {"name": "Tobias Kasimirowicz", "character": "Grimbold", "id": 69094, "credit_id": "52fe45bcc3a36847f80d79ab", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Emun Elliott", "character": "Swire", "id": 228968, "credit_id": "52fe45bcc3a36847f80d79af", "cast_id": 14, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 11}, {"name": "Tygo Gernandt", "character": "Ivo", "id": 43646, "credit_id": "53a2fb78c3a36832080016d1", "cast_id": 30, "profile_path": "/4JyTkQEbHf4RZBTwfGusmvQEUds.jpg", "order": 12}, {"name": "Jamie Ballard", "character": "Griff", "id": 1321621, "credit_id": "53a2fba9c3a36831f9001708", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Keith Dunphy", "character": "Witch Finder", "id": 1278499, "credit_id": "53a2fc11c3a36831f9001715", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Marianne Graffam", "character": "Suspected Witch", "id": 84067, "credit_id": "53a2fc65c3a36831f9001721", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Ines Marie Westernstr\u00f6er", "character": "Bel", "id": 1331980, "credit_id": "53a2fca1c3a36832020016a3", "cast_id": 34, "profile_path": null, "order": 16}], "directors": [{"name": "Christopher Smith", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d797d", "profile_path": null, "id": 41041}], "vote_average": 5.7, "runtime": 102}, "41216": {"poster_path": "/mgkRaVtdrOAZT2cFZi9Ihh9QpuL.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140073390, "overview": "Soren, a young barn owl, is kidnapped by owls of St. Aggie's, ostensibly an orphanage, where owlets are brainwashed into becoming soldiers. He and his new friends escape to the island of Ga'Hoole, to assist its noble, wise owls who fight the army being created by the wicked rulers of St. Aggie's. The film is based on the first three books in the series.", "video": false, "id": 41216, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Legend of the Guardians: The Owls of Ga'Hoole", "tagline": "On his way to finding a legend...he will become one.", "vote_count": 257, "homepage": "http://legendoftheguardians.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1219342", "adult": false, "backdrop_path": "/6lwiZ1v5n3F0oY9ouCLlI9LgRRm.jpg", "production_companies": [{"name": "Animal Logic", "id": 8089}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2010-09-24", "popularity": 1.11990766829067, "original_title": "Legend of the Guardians: The Owls of Ga'Hoole", "budget": 80000000, "cast": [{"name": "Emily Barclay", "character": "Gylfie (voice)", "id": 15577, "credit_id": "52fe45bcc3a36847f80d7a25", "cast_id": 1, "profile_path": "/pkG190C7XoMN9rCASsgHE0Avjtc.jpg", "order": 0}, {"name": "Abbie Cornish", "character": "Otulissa (voice)", "id": 37260, "credit_id": "52fe45bcc3a36847f80d7a29", "cast_id": 2, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 1}, {"name": "Essie Davis", "character": "Marella (voice)", "id": 33449, "credit_id": "52fe45bcc3a36847f80d7a2d", "cast_id": 3, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Metalbeak (voice)", "id": 33192, "credit_id": "52fe45bcc3a36847f80d7a43", "cast_id": 7, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Deborra-Lee Furness", "character": "Barran (voice)", "id": 28745, "credit_id": "52fe45bcc3a36847f80d7a47", "cast_id": 8, "profile_path": "/f851hK50kZ98JOKO1cPO3fGYFSS.jpg", "order": 4}, {"name": "Ryan Kwanten", "character": "Kludd (voice)", "id": 133212, "credit_id": "52fe45bcc3a36847f80d7a4b", "cast_id": 9, "profile_path": "/gbAhDfCKKUtGJhQJIukkiZGgQBW.jpg", "order": 5}, {"name": "Anthony LaPaglia", "character": "Twilight (voice)", "id": 57829, "credit_id": "52fe45bcc3a36847f80d7a4f", "cast_id": 10, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 6}, {"name": "Helen Mirren", "character": "Nyra (voice)", "id": 15735, "credit_id": "52fe45bcc3a36847f80d7a53", "cast_id": 11, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 7}, {"name": "Sam Neill", "character": "Allomere (voice)", "id": 4783, "credit_id": "52fe45bcc3a36847f80d7a57", "cast_id": 12, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 8}, {"name": "Richard Roxburgh", "character": "Boron (voice)", "id": 12206, "credit_id": "52fe45bcc3a36847f80d7a5b", "cast_id": 13, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 9}, {"name": "Adrienne DeFaria", "character": "Eglantine (voice)", "id": 1077326, "credit_id": "52fe45bcc3a36847f80d7a89", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Sacha Horler", "character": "Strix Struma (voice)", "id": 79713, "credit_id": "52fe45bcc3a36847f80d7a8d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Bill Hunter", "character": "Bubo (voice)", "id": 23, "credit_id": "52fe45bcc3a36847f80d7a91", "cast_id": 23, "profile_path": "/fDYf8bxLtyy3vnSFX27QBe3mG8d.jpg", "order": 12}, {"name": "Miriam Margolyes", "character": "Mrs. Plithiver (voice)", "id": 6199, "credit_id": "52fe45bcc3a36847f80d7a95", "cast_id": 24, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 13}, {"name": "Barry Otto", "character": "Echidna (voice)", "id": 150536, "credit_id": "52fe45bcc3a36847f80d7a99", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Geoffrey Rush", "character": "Ezylryb (voice)", "id": 118, "credit_id": "52fe45bcc3a36847f80d7a9d", "cast_id": 26, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 15}, {"name": "Angus Sampson", "character": "Jutt (voice)", "id": 59117, "credit_id": "52fe45bcc3a36847f80d7aa1", "cast_id": 27, "profile_path": "/jbUAdNqytgyuPPpEBvM4onQWt3Q.jpg", "order": 16}, {"name": "Jim Sturgess", "character": "Soren (voice)", "id": 38941, "credit_id": "52fe45bcc3a36847f80d7aa5", "cast_id": 28, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 17}, {"name": "Hugo Weaving", "character": "Noctus / Grimble (voice)", "id": 1331, "credit_id": "52fe45bcc3a36847f80d7aa9", "cast_id": 29, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 18}, {"name": "David Wenham", "character": "Digger (voice)", "id": 1371, "credit_id": "52fe45bcc3a36847f80d7aad", "cast_id": 30, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 19}, {"name": "Leigh Whannell", "character": "Jatt (voice)", "id": 2128, "credit_id": "52fe45bcc3a36847f80d7ab1", "cast_id": 31, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 20}, {"name": "Gareth Young", "character": "Pete (voice)", "id": 1077327, "credit_id": "52fe45bcc3a36847f80d7ab5", "cast_id": 32, "profile_path": null, "order": 21}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe45bcc3a36847f80d7a33", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.4, "runtime": 97}, "90369": {"poster_path": "/pnVbqegDYPfZjuhXUV3CMybAtgk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Tessa, a girl who is dying of leukaemia and tries to enjoy her remaining life as much as she possibly can.\r She compiles a list of things she'd like to do before passing away. Topping the list is her desire to lose her virginity.", "video": false, "id": 90369, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Now Is Good", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1937264", "adult": false, "backdrop_path": "/zWoPfrYoFE1SbimmuFi8DAOEQRM.jpg", "production_companies": [{"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2012-05-25", "popularity": 0.426309054957667, "original_title": "Now Is Good", "budget": 0, "cast": [{"name": "Dakota Fanning", "character": "Tessa Scott", "id": 501, "credit_id": "52fe48a69251416c750aee89", "cast_id": 2, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 0}, {"name": "Jeremy Irvine", "character": "Adam", "id": 225692, "credit_id": "52fe48a69251416c750aee8d", "cast_id": 3, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 1}, {"name": "Kaya Scodelario", "character": "Zoey", "id": 115150, "credit_id": "52fe48a69251416c750aee91", "cast_id": 4, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 2}, {"name": "Olivia Williams", "character": "Mother", "id": 11616, "credit_id": "52fe48a79251416c750aee95", "cast_id": 5, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Father", "id": 14887, "credit_id": "52fe48a79251416c750aee99", "cast_id": 6, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Rose Leslie", "character": "Fiona", "id": 1223793, "credit_id": "52fe48a79251416c750aee9d", "cast_id": 7, "profile_path": "/yWFmxrAfLtXePzVRatiAMv1KDQS.jpg", "order": 5}], "directors": [{"name": "Ol Parker", "department": "Directing", "job": "Director", "credit_id": "52fe48a69251416c750aee85", "profile_path": null, "id": 17510}], "vote_average": 7.0, "runtime": 103}, "196867": {"poster_path": "/hkvKhuUUgjJ4jrXKkvqoQ5JnQx5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Annie is a young, happy foster kid who's also tough enough to make her way on the streets of New York in 2014. Originally left by her parents as a baby with the promise that they'd be back for her someday, it's been a hard knock life ever since with her mean foster mom Miss Hannigan. But everything's about to change when the hard-nosed tycoon and New York mayoral candidate Will Stacks - advised by his brilliant VP, Grace and his shrewd and scheming campaign advisor, Guy - makes a thinly-veiled campaign move and takes her in. Stacks believes he's her guardian angel, but Annie's self-assured nature and bright, sun-will-come-out-tomorrow outlook on life just might mean it's the other way around.", "video": false, "id": 196867, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Annie", "tagline": "It's a Hard Knock Life", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1823664", "adult": false, "backdrop_path": "/hqNff5zochp9hzo299wC4Uoy8M9.jpg", "production_companies": [{"name": "Overbrook Entertainment", "id": 12485}, {"name": "Sony Pictures Entertainment (SPE)", "id": 7431}], "release_date": "2014-12-19", "popularity": 3.6590924714178, "original_title": "Annie", "budget": 0, "cast": [{"name": "Quvenzhan\u00e9 Wallis", "character": "Annie Beckett", "id": 1055235, "credit_id": "52fe4d3c9251416c9110f439", "cast_id": 6, "profile_path": "/khaGuAENEdm1gnfszBJjyGuN0jl.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "William \"Will\" Stacks", "id": 134, "credit_id": "52fe4d3c9251416c9110f43d", "cast_id": 7, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Grace Farell", "id": 9827, "credit_id": "531754c4c3a36813a60029dd", "cast_id": 8, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Cameron Diaz", "character": "Miss Hannigan", "id": 6941, "credit_id": "531754d4c3a36813c20029d8", "cast_id": 9, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 3}, {"name": "Bobby Cannavale", "character": "Guy", "id": 21127, "credit_id": "54fc3b8d9251413aa000448a", "cast_id": 10, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 4}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Nash", "id": 31164, "credit_id": "54fc3ba59251412329001c34", "cast_id": 11, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 5}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe4d3c9251416c9110f41d", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.4, "runtime": 119}, "8452": {"poster_path": "/6pBUekwhnjW99V0cLphx7dZE2Wx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34543701, "overview": "Futuristic action about a man who meets a clone of himself and stumbles into a grand conspiracy about clones taking over the world.", "video": false, "id": 8452, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The 6th Day", "tagline": "Are You Who You Think You Are", "vote_count": 149, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0216216", "adult": false, "backdrop_path": "/s6bKy6vSDy8qJ76qLw7cSX4yooG.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Phoenix Pictures", "id": 11317}], "release_date": "2000-11-17", "popularity": 1.1701367726147, "original_title": "The 6th Day", "budget": 82000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Adam Gibson", "id": 1100, "credit_id": "52fe44aac3a36847f80a32b1", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Michael Rapaport", "character": "Hank Morgan", "id": 4688, "credit_id": "52fe44aac3a36847f80a32b5", "cast_id": 2, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 1}, {"name": "Tony Goldwyn", "character": "Michael Drucker", "id": 3417, "credit_id": "52fe44aac3a36847f80a32b9", "cast_id": 3, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 2}, {"name": "Michael Rooker", "character": "Robert Marshall", "id": 12132, "credit_id": "52fe44aac3a36847f80a32c3", "cast_id": 5, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 3}, {"name": "Sarah Wynter", "character": "Talia Elsworth", "id": 41819, "credit_id": "52fe44aac3a36847f80a32c7", "cast_id": 6, "profile_path": "/5eRmuhTtlhJBOmOl5Cam2eBcAHW.jpg", "order": 4}, {"name": "Robert Duvall", "character": "Dr. Griffin Weir", "id": 3087, "credit_id": "52fe44aac3a36847f80a32cb", "cast_id": 7, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Natalie", "id": 19957, "credit_id": "52fe44aac3a36847f80a32db", "cast_id": 10, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}, {"name": "Taylor-Anne Reid", "character": "Clara", "id": 378849, "credit_id": "52fe44aac3a36847f80a32df", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Andrew McIlroy", "character": "Scott Moore", "id": 158456, "credit_id": "52fe44aac3a36847f80a32e3", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Alexandra Castillo", "character": "Reporter", "id": 190944, "credit_id": "52fe44aac3a36847f80a32e7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Steve Bacic", "character": "Johnny Phoenix", "id": 33355, "credit_id": "547dd4889251412d7c005ca3", "cast_id": 64, "profile_path": "/pQEALNHNqEs1je9rFCA59kif3Rz.jpg", "order": 10}, {"name": "Wanda Cannon", "character": "Katherine Weir", "id": 117085, "credit_id": "547dd4b4c3a3685afd005bca", "cast_id": 65, "profile_path": "/btdp9evoMcWO7V6oIiwa2QEjsv0.jpg", "order": 11}], "directors": [{"name": "Roger Spottiswoode", "department": "Directing", "job": "Director", "credit_id": "52fe44aac3a36847f80a32bf", "profile_path": "/hH8tIBh0RI7VwI4jQgphtB0qABR.jpg", "id": 1724}], "vote_average": 5.6, "runtime": 123}, "98566": {"poster_path": "/oDL2ryJ0sV2bmjgshVgJb3qzvwp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 477200000, "overview": "The city needs heroes. Darkness has settled over New York City as Shredder and his evil Foot Clan have an iron grip on everything from the police to the politicians. The future is grim until four unlikely outcast brothers rise from the sewers and discover their destiny as Teenage Mutant Ninja Turtles. The Turtles must work with fearless reporter April and her wise-cracking cameraman Vern Fenwick to save the city and unravel Shredder's diabolical plan.", "video": false, "id": 98566, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Teenage Mutant Ninja Turtles", "tagline": "Mysterious. Dangerous. Reptilious. You've never seen heroes like this.", "vote_count": 795, "homepage": "http://www.teenagemutantninjaturtlesmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1291150", "adult": false, "backdrop_path": "/OqCXGt5nl1cHPeotxCDvXLLe6p.jpg", "production_companies": [{"name": "Nickelodeon Movies", "id": 2348}, {"name": "Paramount Pictures", "id": 4}, {"name": "Platinum Dunes", "id": 2481}], "release_date": "2014-08-08", "popularity": 8.53317228142136, "original_title": "Teenage Mutant Ninja Turtles", "budget": 125000000, "cast": [{"name": "Megan Fox", "character": "April O'Neil", "id": 19537, "credit_id": "52fe4a199251416c750dd9db", "cast_id": 12, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 0}, {"name": "Will Arnett", "character": "Vernon Fenwick", "id": 21200, "credit_id": "52fe4a199251416c750dd9ef", "cast_id": 17, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 1}, {"name": "William Fichtner", "character": "Eric Sacks", "id": 886, "credit_id": "52fe4a199251416c750dd9f7", "cast_id": 19, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 2}, {"name": "Alan Ritchson", "character": "Raphael", "id": 64295, "credit_id": "52fe4a199251416c750dd9df", "cast_id": 13, "profile_path": "/aCyp11i8yTFqa8vOAksarDkRfR7.jpg", "order": 3}, {"name": "Noel Fisher", "character": "Michelangelo", "id": 80352, "credit_id": "52fe4a199251416c750dd9e3", "cast_id": 14, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 4}, {"name": "Pete Ploszek", "character": "Leonardo", "id": 1163622, "credit_id": "52fe4a199251416c750dd9eb", "cast_id": 16, "profile_path": "/wFnyDjQkPURu8qjLpqnYoYzs2Dc.jpg", "order": 5}, {"name": "Johnny Knoxville", "character": "Leonardo (voice)", "id": 9656, "credit_id": "53f98be1c3a3687352002750", "cast_id": 24, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 6}, {"name": "Jeremy Howard", "character": "Donatello", "id": 15034, "credit_id": "52fe4a199251416c750dd9e7", "cast_id": 15, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 7}, {"name": "Danny Woodburn", "character": "Master Splinter", "id": 13645, "credit_id": "52fe4a199251416c750dd9f3", "cast_id": 18, "profile_path": "/mT7jSNAoZjB7zlRhWxcnRrFla7d.jpg", "order": 8}, {"name": "Tony Shalhoub", "character": "Splinter (voice)", "id": 4252, "credit_id": "53f98bffc3a36873580026e6", "cast_id": 25, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 9}, {"name": "Tohoru Masamune", "character": "Shredder", "id": 173212, "credit_id": "53f98c13c3a368735e0026ed", "cast_id": 26, "profile_path": "/hCevJsAh0RByhKzRZwrGXlW64Oo.jpg", "order": 10}, {"name": "Whoopi Goldberg", "character": "Bernadette Thompson", "id": 2395, "credit_id": "52fe4a199251416c750dd9fb", "cast_id": 21, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 11}, {"name": "Minae Noji", "character": "Karai", "id": 177525, "credit_id": "530029bd9251416ad81ceb1e", "cast_id": 23, "profile_path": "/AhG78OBpLJJP59U4PQMQAa9zzFU.jpg", "order": 12}, {"name": "Abby Elliott", "character": "Taylor", "id": 1240486, "credit_id": "52fe4a199251416c750dd9ff", "cast_id": 22, "profile_path": "/pYjlIPsmbkI5A6obFcLSkaZxU8.jpg", "order": 13}, {"name": "Madison Mason", "character": "Councilman", "id": 118756, "credit_id": "53f98c36c3a368735b00272a", "cast_id": 27, "profile_path": "/t3FdfHpAVx7wYcZFWk1WmowsKBv.jpg", "order": 14}, {"name": "Derek Mears", "character": "Dojo Ninja", "id": 51300, "credit_id": "53f98c48c3a3687355002884", "cast_id": 28, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 15}, {"name": "Malina Weissman", "character": "Young April O'Neil", "id": 1394686, "credit_id": "548149569251416e7e0052ce", "cast_id": 36, "profile_path": "/zrQ2ZkR4ioXw1QwyAguM77va2D7.jpg", "order": 16}, {"name": "Taran Killam", "character": "McNaughton", "id": 1213573, "credit_id": "54b3f3c3c3a368783b000149", "cast_id": 37, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 17}, {"name": "K. Todd Freeman", "character": "Dr. Baxter Stockman", "id": 143328, "credit_id": "54b3f508925141746c0062d0", "cast_id": 38, "profile_path": "/2L7Qh4hA2dsCIPZAVfgerax7i2q.jpg", "order": 18}, {"name": "Paul Fitzgerald", "character": "Dr. O'Neil", "id": 1232623, "credit_id": "54b3f6f5c3a368094e0071a4", "cast_id": 39, "profile_path": "/Wb6Qzm4r95vjUHNmY7l8SoTyAU.jpg", "order": 19}, {"name": "Venida Evans", "character": "Subway Hostage", "id": 1232607, "credit_id": "54b3fa0a9251417472006c38", "cast_id": 40, "profile_path": "/jAV8n1n0uIvRnYsL0UvjmT3I82h.jpg", "order": 20}, {"name": "Mikal Vega", "character": "Sacks Bodyguard", "id": 1412782, "credit_id": "54b3fb8f92514115e1000270", "cast_id": 41, "profile_path": "/vPmQPAWRCbxGfM4aN3RIiTOnQLX.jpg", "order": 21}, {"name": "Harley Pasternak", "character": "Himself", "id": 1412784, "credit_id": "54b3fd17c3a368028700192b", "cast_id": 42, "profile_path": "/A9IeK4LkuwhQfDfCH2CrN2dH7uZ.jpg", "order": 22}, {"name": "Braeson Herold", "character": "Reporter", "id": 1412785, "credit_id": "54b3fec892514114a200418c", "cast_id": 43, "profile_path": "/qhipjPiGHqeB69kzIug494zOfGA.jpg", "order": 23}, {"name": "Chris Wylde", "character": "Reporter", "id": 1233909, "credit_id": "54b3ffbcc3a368094e007259", "cast_id": 44, "profile_path": "/k8GeKsnKyHxaYQRW9N3JOpp3Nvi.jpg", "order": 24}, {"name": "Chance Kelly", "character": "Mr. Rivetti", "id": 17194, "credit_id": "54b40067c3a3680940006f51", "cast_id": 45, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 25}, {"name": "Rick Chambers", "character": "News Anchor", "id": 1412789, "credit_id": "54b4014cc3a368094e007273", "cast_id": 46, "profile_path": "/mqmyYDML2mdHZgjtOYc4y0vsi8W.jpg", "order": 26}, {"name": "Leyna Nguyen", "character": "News Anchor", "id": 1215973, "credit_id": "54b402d5c3a368094e00728b", "cast_id": 47, "profile_path": "/oNBDs5GFG83IiwTfwODqs9ZOdsh.jpg", "order": 27}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe4a199251416c750dd99b", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 6.1, "runtime": 101}, "98567": {"poster_path": "/qUo6fIvNPRZTIBOT4vTSFi3pWHP.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Asian Hawk (Jackie Chan) leads a mercenary team to recover several lost artifacts from the Old Summer Palace, the bronze heads of the 12 Chinese Zodiac animals which were sacked by the French and British armies from the imperial Summer Palace in Beijing in 1860. Assisted by a Chinese student and a Parisian lady, Hawk stops at nothing to accomplish the mission.", "video": false, "id": 98567, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Chinese Zodiac", "tagline": "His mission is to recover their heads, before they take his", "vote_count": 129, "homepage": "http://hbpictures.ayomovie.com/12shengxiao//", "belongs_to_collection": {"backdrop_path": "/mQIeZScwbZx35bnQsZFUVFdvq.jpg", "poster_path": "/3Uy9OGhej5jq9bCvKJNjmdjOibN.jpg", "id": 146136, "name": "Armour of God Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1424310", "adult": false, "backdrop_path": "/fb2JuqsTqub0fm6akn3mNjK9KWT.jpg", "production_companies": [{"name": "JCE Movies", "id": 5649}, {"name": "Emperor Motion Pictures", "id": 2726}], "release_date": "2012-12-20", "popularity": 0.772107239359007, "original_title": "Chinese Zodiac", "budget": 48000000, "cast": [{"name": "Jackie Chan", "character": "Jackie / Asian Hawk", "id": 18897, "credit_id": "52fe4a199251416c750dda33", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Yao Xing-Tong", "character": "Coco", "id": 1110519, "credit_id": "52fe4a199251416c750dda65", "cast_id": 17, "profile_path": "/oOh5XmkVqVZ0IwzIA1wrfWF7HQ1.jpg", "order": 1}, {"name": "Shu Qi", "character": "David's Wife", "id": 21911, "credit_id": "539bebf3c3a36810b500111f", "cast_id": 38, "profile_path": "/kmTErFq6lKQww2Yk9AfpR2Q5YWx.jpg", "order": 2}, {"name": "Kwon Sang-Woo", "character": "Simon", "id": 1073360, "credit_id": "52fe4a199251416c750dda59", "cast_id": 12, "profile_path": "/5PWjQNDgcbJCTPSv5hk13DDYF9i.jpg", "order": 3}, {"name": "Zhang Lan-Xin", "character": "Bonnie", "id": 1110520, "credit_id": "52fe4a199251416c750dda6d", "cast_id": 19, "profile_path": "/zDK83qjIFdeA1grENypMZTA3H5A.jpg", "order": 4}, {"name": "Liao Fan", "character": "David Liao", "id": 99692, "credit_id": "52fe4a199251416c750dda5d", "cast_id": 13, "profile_path": "/3FcmZYC3XtYfQ9F6kSaW4XNOJfp.jpg", "order": 5}, {"name": "Laura Weissbecker", "character": "Catherine de Sichel", "id": 1110517, "credit_id": "52fe4a199251416c750dda61", "cast_id": 14, "profile_path": "/qJ4Xw2tDVNyRn2I0sMCvG7uNQZn.jpg", "order": 6}, {"name": "Rosario Amedeo", "character": "Pierre Marceau", "id": 1192651, "credit_id": "52fe4a199251416c750dda75", "cast_id": 23, "profile_path": "/b9Y3lxesLHaCd5BhXnSbSjxrYCc.jpg", "order": 7}, {"name": "Vincent Sze", "character": "Michael Morgan", "id": 228614, "credit_id": "52fe4a199251416c750dda55", "cast_id": 8, "profile_path": "/kmoI6PuP64AYheVW78hrITe7P4U.jpg", "order": 8}, {"name": "Oliver Platt", "character": "Lawrence Morgan", "id": 17485, "credit_id": "52fe4a199251416c750dda69", "cast_id": 18, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 9}, {"name": "Jonathan Lee Chung-Shing", "character": "Jonathan", "id": 1192656, "credit_id": "52fe4a199251416c750dda79", "cast_id": 24, "profile_path": "/xfZO4lFndBXKxS4kzEPqxh2sl4q.jpg", "order": 10}, {"name": "Alaa Safi", "character": "Vulture", "id": 126802, "credit_id": "52fe4a199251416c750dda7d", "cast_id": 25, "profile_path": "/8umFHsHqbZoPD4kvcamXJ2Gg9e4.jpg", "order": 11}, {"name": "Caitlin Dechelle", "character": "Katie", "id": 1110521, "credit_id": "52fe4a199251416c750dda71", "cast_id": 20, "profile_path": "/hAWbwDeiSE7y2DBgU7ScfZwtLr3.jpg", "order": 12}, {"name": "Bolin Chen", "character": "Wu Qing", "id": 64440, "credit_id": "52fe4a199251416c750dda81", "cast_id": 26, "profile_path": "/eRDmuLHY4mSOEsB6lHeisfVO951.jpg", "order": 13}, {"name": "Daniel Wu", "character": "Hospital doctor", "id": 64436, "credit_id": "52fe4a199251416c750dda85", "cast_id": 31, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 14}, {"name": "Ken Lo", "character": "Thai Pirate", "id": 70690, "credit_id": "52fe4a199251416c750dda89", "cast_id": 33, "profile_path": "/3cxY30w6S6hraBUpCtY7S8PQhDq.jpg", "order": 15}], "directors": [{"name": "Jackie Chan", "department": "Directing", "job": "Director", "credit_id": "52fe4a199251416c750dda39", "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "id": 18897}], "vote_average": 6.3, "runtime": 120}, "8456": {"poster_path": "/6vT35MJ67U3llfi6W7MbM5r2dav.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41627431, "overview": "Rebellious Jake Tyler is lured into an ultimate underground fight Scene at his new high school, after receiving threats to the safety of his friends and family Jake decides to seek the mentoring of a veteran fighter who trains him for one final no-holds-barred elimination fight with his nemesis and local martial arts champion Ryan McCarthy.", "video": false, "id": 8456, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Never Back Down", "tagline": "Win or lose... Everyone has their fight.", "vote_count": 98, "homepage": "http://www.neverbackdownthemovie.com/", "belongs_to_collection": {"backdrop_path": "/f069jw6rYHIWfypDjzQvODuGSz8.jpg", "poster_path": "/2srb1k1nAPHk7lzpheLK8e76Clp.jpg", "id": 96676, "name": "Never Back Down Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1023111", "adult": false, "backdrop_path": "/yG5Woj34Hjj9OKCaVSHE6cRGeLX.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Mandalay Pictures", "id": 551}, {"name": "Baumgarten Management and Productions (BMP)", "id": 23423}], "release_date": "2008-03-04", "popularity": 0.62062945640514, "original_title": "Never Back Down", "budget": 20000000, "cast": [{"name": "Sean Faris", "character": "Jake Tyler", "id": 55084, "credit_id": "52fe44abc3a36847f80a33c7", "cast_id": 12, "profile_path": "/aUyhN5GjPxRJSSHeaVk0QbYFe2i.jpg", "order": 0}, {"name": "Amber Heard", "character": "Baja Miller", "id": 55085, "credit_id": "52fe44abc3a36847f80a33cb", "cast_id": 13, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Cam Gigandet", "character": "Ryan McCarthy", "id": 55086, "credit_id": "52fe44abc3a36847f80a33cf", "cast_id": 14, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 2}, {"name": "Djimon Hounsou", "character": "Jean Roqua", "id": 938, "credit_id": "52fe44abc3a36847f80a33c3", "cast_id": 11, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 3}, {"name": "Evan Peters", "character": "Max Cooperman", "id": 55089, "credit_id": "52fe44abc3a36847f80a33d7", "cast_id": 16, "profile_path": "/2a1XA1ynmbZZj2nauwsc03OzRB.jpg", "order": 4}, {"name": "Leslie Hope", "character": "Margot Tyler", "id": 25834, "credit_id": "52fe44abc3a36847f80a33d3", "cast_id": 15, "profile_path": "/uJsgXloczXpFaRSZTB7FnkiijGi.jpg", "order": 5}, {"name": "Wyatt Smith", "character": "Charlie Tyler", "id": 55090, "credit_id": "52fe44abc3a36847f80a33db", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Neil Brown Jr.", "character": "Aaron", "id": 55091, "credit_id": "52fe44abc3a36847f80a33df", "cast_id": 18, "profile_path": "/mv2DgT9RABBYCxOY4ZHYalYBiUt.jpg", "order": 7}, {"name": "Lauren Leech", "character": "Jenny", "id": 55092, "credit_id": "52fe44abc3a36847f80a33e3", "cast_id": 19, "profile_path": null, "order": 8}], "directors": [{"name": "Jeff Wadlow", "department": "Directing", "job": "Director", "credit_id": "52fe44abc3a36847f80a338f", "profile_path": null, "id": 55075}], "vote_average": 6.8, "runtime": 115}, "8457": {"poster_path": "/rc1lPbKX1JPQiqqOsoQMr3tXA8J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three kids hire a low-budget bodyguard to protect them from the playground bully, not realising he is just a homeless beggar and petty thief looking for some easy cash.", "video": false, "id": 8457, "genres": [{"id": 35, "name": "Comedy"}], "title": "Drillbit Taylor", "tagline": "You get what you pay for", "vote_count": 57, "homepage": "http://www.drillbittaylor.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0817538", "adult": false, "backdrop_path": "/qERtpJ6t8LR0fMbyoQcfgyk7XHc.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-03-20", "popularity": 0.486408968902074, "original_title": "Drillbit Taylor", "budget": 40000000, "cast": [{"name": "Owen Wilson", "character": "Drillbit Taylor", "id": 887, "credit_id": "52fe44abc3a36847f80a342f", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Lisa", "id": 41087, "credit_id": "52fe44abc3a36847f80a3433", "cast_id": 2, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Josh Peck", "character": "Ronnie", "id": 15760, "credit_id": "52fe44abc3a36847f80a3437", "cast_id": 4, "profile_path": "/mLQ9fKG7E1PLErgPWRMfIccwOTM.jpg", "order": 2}, {"name": "David Dorfman", "character": "Emmit", "id": 26292, "credit_id": "52fe44abc3a36847f80a343b", "cast_id": 5, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 3}, {"name": "Nate Hartley", "character": "Wade", "id": 55097, "credit_id": "52fe44abc3a36847f80a343f", "cast_id": 6, "profile_path": "/AtqrlvIIQVEQCSMranOewGtCxt8.jpg", "order": 4}, {"name": "Alex Frost", "character": "Filkins", "id": 19195, "credit_id": "52fe44abc3a36847f80a3443", "cast_id": 7, "profile_path": "/ip1ABnG49oeE5bOS78bAu8whdeI.jpg", "order": 5}, {"name": "Troy Gentile", "character": "Ryan", "id": 55673, "credit_id": "52fe44abc3a36847f80a3489", "cast_id": 19, "profile_path": "/qX6Py6V8sGMC004CIjqitPssrM.jpg", "order": 6}, {"name": "Casey Boersma", "character": "Chuck", "id": 71726, "credit_id": "52fe44abc3a36847f80a3493", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Dylan Boersma", "character": "Nick", "id": 181553, "credit_id": "52fe44abc3a36847f80a3497", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Lisa Ann Walter", "character": "Dolores", "id": 4494, "credit_id": "52fe44abc3a36847f80a349b", "cast_id": 25, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 9}, {"name": "Beth Littleford", "character": "Barbara", "id": 79024, "credit_id": "52fe44abc3a36847f80a349f", "cast_id": 26, "profile_path": "/fENKh8l0qV6EPS6chqT6ijYwHJt.jpg", "order": 10}, {"name": "David Koechner", "character": "Frightened Dad", "id": 28638, "credit_id": "52fe44abc3a36847f80a34a3", "cast_id": 27, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 11}, {"name": "Matt Walsh", "character": "Not for Pot Driver", "id": 59841, "credit_id": "52fe44abc3a36847f80a34bf", "cast_id": 35, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 12}, {"name": "Janet Varney", "character": "Attractive Woman Driver", "id": 204462, "credit_id": "52fe44abc3a36847f80a34a7", "cast_id": 29, "profile_path": "/3eX3p6CB4T6FFIKrK77X8DKcXd2.jpg", "order": 13}, {"name": "Lisa Lampanelli", "character": "Ronnie's Mom", "id": 105788, "credit_id": "52fe44abc3a36847f80a34ab", "cast_id": 30, "profile_path": "/w5PhZCcS6kqNn4u086ZzHshgRML.jpg", "order": 14}, {"name": "Bill O'Neill", "character": "Dean", "id": 1061111, "credit_id": "52fe44abc3a36847f80a34af", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Shaun Weiss", "character": "Bus Driver", "id": 147499, "credit_id": "52fe44abc3a36847f80a34b3", "cast_id": 32, "profile_path": "/asBOiROZPLezU9YYjvp9qsaA0LK.jpg", "order": 16}, {"name": "Jordan Valacich", "character": "Cute Girl on Stairs", "id": 1074686, "credit_id": "52fe44abc3a36847f80a34b7", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Danny McBride", "character": "Don", "id": 62862, "credit_id": "52fe44abc3a36847f80a34bb", "cast_id": 34, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 18}, {"name": "Ian Roberts", "character": "Jim", "id": 13101, "credit_id": "52fe44abc3a36847f80a34c3", "cast_id": 36, "profile_path": "/yVLXoRloTMZGoZIoaFLcyPrp1yV.jpg", "order": 19}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe44abc3a36847f80a3449", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.6, "runtime": 102}, "268": {"poster_path": "/kBf3g9crrADGMc2AMAMlLBgSm2h.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 411348924, "overview": "The Dark Knight of Gotham City begins his war on crime with his first major enemy being the clownishly homicidal Joker, who has seized control of Gotham's underworld.", "video": false, "id": 268, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Batman", "tagline": "Have you ever danced with the devil in the pale moonlight?", "vote_count": 642, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0096895", "adult": false, "backdrop_path": "/2blmxp2pr4BhwQr74AdCfwgfMOb.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Guber-Peters Company", "id": 4357}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1989-06-23", "popularity": 1.52136127948877, "original_title": "Batman", "budget": 35000000, "cast": [{"name": "Michael Keaton", "character": "Batman", "id": 2232, "credit_id": "52fe422fc3a36847f800aa01", "cast_id": 4, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Jack Nicholson", "character": "Joker", "id": 514, "credit_id": "52fe422fc3a36847f800aa05", "cast_id": 5, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 1}, {"name": "Kim Basinger", "character": "Vicki Vale", "id": 326, "credit_id": "52fe422fc3a36847f800aa09", "cast_id": 6, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 2}, {"name": "Michael Gough", "character": "Alfred", "id": 3796, "credit_id": "52fe422fc3a36847f800aa0d", "cast_id": 7, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 3}, {"name": "Pat Hingle", "character": "Commissioner James Gordon", "id": 3798, "credit_id": "52fe422fc3a36847f800aa11", "cast_id": 8, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 4}, {"name": "Billy Dee Williams", "character": "Harvey Dent", "id": 3799, "credit_id": "52fe422fc3a36847f800aa15", "cast_id": 9, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 5}, {"name": "Jack Palance", "character": "Carl Grissom", "id": 3785, "credit_id": "52fe422fc3a36847f800aa19", "cast_id": 10, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 6}, {"name": "Jerry Hall", "character": "Alicia Grissom", "id": 3800, "credit_id": "52fe422fc3a36847f800aa1d", "cast_id": 11, "profile_path": "/nOs4mbm0Y7KGpmmom29sVizAUrP.jpg", "order": 7}, {"name": "Tracey Walter", "character": "Bob the Goon", "id": 3801, "credit_id": "52fe422fc3a36847f800aa21", "cast_id": 12, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 8}, {"name": "Lee Wallace", "character": "Mayor", "id": 3802, "credit_id": "52fe422fc3a36847f800aa25", "cast_id": 13, "profile_path": "/k2rVcgalJ4oJqxL2XykvR58lm9D.jpg", "order": 9}, {"name": "William Hootkins", "character": "Eckhardt", "id": 663, "credit_id": "52fe422fc3a36847f800aa29", "cast_id": 14, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Edwin Craig", "character": "Rotelli", "id": 3803, "credit_id": "52fe422fc3a36847f800aa2d", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Robert Wuhl", "character": "Alexander Knox", "id": 4040, "credit_id": "52fe4230c3a36847f800aa61", "cast_id": 24, "profile_path": "/ibDgbYtVwOwTuClvFclLybMk24T.jpg", "order": 12}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe422fc3a36847f800a9f1", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.6, "runtime": 126}, "8461": {"poster_path": "/cB1U1fbL4oTX1LH1zhlSK5YQjdD.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7938872, "overview": "When Ann, husband George and son Georgie arrive at their holiday home they are visited by a pair of polite and seemingly pleasant young men. Armed with deceptively sweet smiles and some golf clubs, they proceed to terrorize and torture the tight-knit clan, giving them until the next day to survive.", "video": false, "id": 8461, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Funny Games", "tagline": "Let the games begin...", "vote_count": 73, "homepage": "http://wip.warnerbros.com/funnygames/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808279", "adult": false, "backdrop_path": "/x0IvYeF88qYoKkigRjJ9CiyfY6b.jpg", "production_companies": [{"name": "Halcyon Pictures", "id": 2457}, {"name": "Kinematograf Wien", "id": 2459}], "release_date": "2007-10-20", "popularity": 0.52855046715835, "original_title": "Funny Games", "budget": 15000000, "cast": [{"name": "Naomi Watts", "character": "Ann", "id": 3489, "credit_id": "52fe44abc3a36847f80a35a5", "cast_id": 18, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Tim Roth", "character": "George", "id": 3129, "credit_id": "52fe44abc3a36847f80a35a9", "cast_id": 19, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 1}, {"name": "Michael Pitt", "character": "Paul", "id": 10692, "credit_id": "52fe44abc3a36847f80a35ad", "cast_id": 20, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 2}, {"name": "Brady Corbet", "character": "Peter", "id": 55493, "credit_id": "52fe44abc3a36847f80a35b1", "cast_id": 21, "profile_path": "/cnlvcYJP4UyeKdbCCuTKvFkjWSH.jpg", "order": 3}, {"name": "Devon Gearhart", "character": "Georgie", "id": 55494, "credit_id": "52fe44abc3a36847f80a35b5", "cast_id": 22, "profile_path": "/q8wiqc1euz0nXmijFlgaRsnio1g.jpg", "order": 4}, {"name": "Boyd Gaines", "character": "Fred", "id": 32389, "credit_id": "52fe44abc3a36847f80a35b9", "cast_id": 23, "profile_path": "/aEGL2lbzrwmTEirxKm8xGm1F9xC.jpg", "order": 5}, {"name": "Robert LuPone", "character": "Robert", "id": 55496, "credit_id": "52fe44abc3a36847f80a35bd", "cast_id": 25, "profile_path": "/hIVQjz4iP4JJ5c8euwVjEsG9SiO.jpg", "order": 7}, {"name": "Susanne C. Hanke", "character": "Betsys Schw\u00e4gerin", "id": 55497, "credit_id": "52fe44abc3a36847f80a35c1", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Linda Moran", "character": "Eve", "id": 7433, "credit_id": "52fe44abc3a36847f80a35c5", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Siobhan Fallon", "character": "Betsy", "id": 6751, "credit_id": "52fe44abc3a36847f80a35c9", "cast_id": 28, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 10}], "directors": [{"name": "Michael Haneke", "department": "Directing", "job": "Director", "credit_id": "52fe44abc3a36847f80a3547", "profile_path": "/xxHw9hBEXL4BrktfG3Q3vVZBx2D.jpg", "id": 6011}], "vote_average": 6.0, "runtime": 112}, "266285": {"poster_path": "/pzKXVk5NZH8Uw1tBS9YE1dLva6x.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 0, "overview": "In 1870s America, a peaceful American settler kills his family's murderer which unleashes the fury of a notorious gang leader. His cowardly fellow townspeople then betray him, forcing him to hunt down the outlaws alone.", "video": false, "id": 266285, "genres": [{"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "The Salvation", "tagline": "Bad men will bleed.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "da", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2720680", "adult": false, "backdrop_path": "/vNNWdSVML7sXSzf4N4BLgVVKNFu.jpg", "production_companies": [{"name": "Zentropa Productions", "id": 1880}, {"name": "Forward Films", "id": 17748}, {"name": "Spier Films", "id": 8275}], "release_date": "2014-05-22", "popularity": 0.890095125535158, "original_title": "The Salvation", "budget": 10500000, "cast": [{"name": "Eva Green", "character": "Madelaine", "id": 10912, "credit_id": "5357d3e9c3a36855f9002c7e", "cast_id": 0, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Mads Mikkelsen", "character": "John", "id": 1019, "credit_id": "5357d3f3c3a3685601002c59", "cast_id": 1, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 2}, {"name": "Jeffrey Dean Morgan", "character": "Delarue", "id": 47296, "credit_id": "5357d403c3a36855f2002c77", "cast_id": 2, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 3}, {"name": "Eric Cantona", "character": "Corsican", "id": 37758, "credit_id": "53de67ccc3a3686c510014d2", "cast_id": 13, "profile_path": "/tevcJNgEMt8ZDbXFvnWBidrxxek.jpg", "order": 4}, {"name": "Mikael Persbrandt", "character": "Peter", "id": 52398, "credit_id": "53de67dec3a3686c56001435", "cast_id": 14, "profile_path": "/yr557miX4IwMLqPfLQs3kWQZTMq.jpg", "order": 5}, {"name": "Douglas Henshall", "character": "Mallick", "id": 35862, "credit_id": "53de67fac3a3686c450014cc", "cast_id": 15, "profile_path": "/liGX3t9DqAXK6vdq3SromuJYcqE.jpg", "order": 6}, {"name": "Michael Raymond-James", "character": "Paul", "id": 53259, "credit_id": "53de680bc3a3686c4d0015af", "cast_id": 16, "profile_path": "/35kiFPR1MhaoNbBJYg8wWi187TW.jpg", "order": 7}, {"name": "Jonathan Pryce", "character": "Keane", "id": 378, "credit_id": "53de6819c3a3686c6000140a", "cast_id": 17, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 8}], "directors": [{"name": "Kristian Levring", "department": "Directing", "job": "Director", "credit_id": "5357d416c3a3685621002c09", "profile_path": "/9BoGTgDyRyRW51JgXaCl5gmVNYC.jpg", "id": 65879}], "vote_average": 6.1, "runtime": 100}, "272": {"poster_path": "/xiosOeLfzPbfLfqui41kSWnO0sZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 374218673, "overview": "Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.", "video": false, "id": 272, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Batman Begins", "tagline": "Evil fears the knight.", "vote_count": 3114, "homepage": "http://www2.warnerbros.com/batmanbegins/index.html", "belongs_to_collection": {"backdrop_path": "/xfKot7lqaiW4XpL5TtDlVBA9ei9.jpg", "poster_path": "/bqS2lMgGkuodIXtDILFWTSWDDpa.jpg", "id": 263, "name": "The Dark Knight Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0372784", "adult": false, "backdrop_path": "/65JWXDCAfwHhJKnDwRnEgVB411X.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Syncopy", "id": 9996}, {"name": "Legendary Pictures", "id": 923}, {"name": "Patalex III Productions Limited", "id": 19231}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2005-06-15", "popularity": 4.04093447866989, "original_title": "Batman Begins", "budget": 150000000, "cast": [{"name": "Christian Bale", "character": "Bruce Wayne / Batman", "id": 3894, "credit_id": "52fe4230c3a36847f800ac3d", "cast_id": 13, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Michael Caine", "character": "Alfred Pennyworth", "id": 3895, "credit_id": "52fe4230c3a36847f800ac41", "cast_id": 14, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Liam Neeson", "character": "Henri Ducard", "id": 3896, "credit_id": "52fe4230c3a36847f800ac45", "cast_id": 15, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 2}, {"name": "Katie Holmes", "character": "Rachel Dawes", "id": 3897, "credit_id": "52fe4230c3a36847f800ac49", "cast_id": 16, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 3}, {"name": "Gary Oldman", "character": "Jim Gordon", "id": 64, "credit_id": "52fe4230c3a36847f800ac35", "cast_id": 8, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 4}, {"name": "Cillian Murphy", "character": "Dr. Jonathan Crane / The Scarecrow", "id": 2037, "credit_id": "52fe4230c3a36847f800ac39", "cast_id": 9, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 5}, {"name": "Tom Wilkinson", "character": "Carmine Falcone", "id": 207, "credit_id": "52fe4230c3a36847f800ac71", "cast_id": 29, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 6}, {"name": "Morgan Freeman", "character": "Lucius Fox", "id": 192, "credit_id": "52fe4230c3a36847f800ac75", "cast_id": 31, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 7}, {"name": "Rutger Hauer", "character": "Earle", "id": 585, "credit_id": "52fe4230c3a36847f800ac79", "cast_id": 32, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 8}, {"name": "Ken Watanabe", "character": "Ra's Al Ghul", "id": 3899, "credit_id": "52fe4230c3a36847f800ac7d", "cast_id": 33, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 9}, {"name": "Mark Boone Junior", "character": "Flass", "id": 534, "credit_id": "52fe4230c3a36847f800ac81", "cast_id": 34, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 10}, {"name": "Linus Roache", "character": "Thomas Wayne", "id": 3900, "credit_id": "52fe4230c3a36847f800ac85", "cast_id": 35, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 11}, {"name": "Larry Holden", "character": "Finch", "id": 544, "credit_id": "52fe4230c3a36847f800ac89", "cast_id": 36, "profile_path": "/8yV3Rfvt0iWJZwO6jt2YnkdzdzL.jpg", "order": 12}, {"name": "Gerard Murphy", "character": "Judge Faden", "id": 151943, "credit_id": "52fe4230c3a36847f800ac8d", "cast_id": 37, "profile_path": "/onkF4igAmOiiKl2wxXm8eSgLgFd.jpg", "order": 13}, {"name": "Colin McFarlane", "character": "Loeb", "id": 128386, "credit_id": "52fe4230c3a36847f800ac91", "cast_id": 38, "profile_path": "/7jzQFnBDALhTclwIohM78bGoFzF.jpg", "order": 14}, {"name": "Jack Gleeson", "character": "Little Boy", "id": 489467, "credit_id": "52fe4230c3a36847f800ac95", "cast_id": 39, "profile_path": "/7v7nLA9VKj5roujZgcj69A1mRUv.jpg", "order": 15}, {"name": "T.J. Ramini", "character": "Crane Thug #1", "id": 1317397, "credit_id": "536a31870e0a2647c400a14d", "cast_id": 40, "profile_path": "/yGbVvKLGxS8j6mnYn3k89w2NQV4.jpg", "order": 16}, {"name": "Catherine Porter", "character": "Blonde Female Reporter / Assassin", "id": 1334124, "credit_id": "53aa4d4ac3a3684cfb000d93", "cast_id": 41, "profile_path": "/myHS5mkAYBRXQ5b4mWv8M4VBAlw.jpg", "order": 17}, {"name": "Gus Lewis", "character": "Bruce Wayne als Kind", "id": 1172371, "credit_id": "54e27de7c3a368087b0023dd", "cast_id": 42, "profile_path": "/xuvrpe9q9oAzrJHTcfK07LIsm9o.jpg", "order": 18}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800ac0d", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.2, "runtime": 140}, "41233": {"poster_path": "/q8Pm7UpAqDdxo1Xnt29EHHAl2u2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159291809, "overview": "A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world's best hip hop dancers in a high-stakes showdown that will change their lives forever.", "video": false, "id": 41233, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Step Up 3D", "tagline": "Two Worlds. One Dream.", "vote_count": 139, "homepage": "http://stepupmovie.com/", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1193631", "adult": false, "backdrop_path": "/3CbUdwyKnEcLSLkQYWJfi8H6gPO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2010-08-06", "popularity": 2.09126133858858, "original_title": "Step Up 3D", "budget": 30000000, "cast": [{"name": "Rick Malambri", "character": "Luke", "id": 138009, "credit_id": "52fe45bec3a36847f80d7dd7", "cast_id": 5, "profile_path": "/19UVd9VCfNcKlhEqjH9cFVK5UwE.jpg", "order": 0}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "52fe45bec3a36847f80d7ddb", "cast_id": 6, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 1}, {"name": "Joe Slaughter", "character": "Julien", "id": 1338420, "credit_id": "53ba219f0e0a2676cf00adfa", "cast_id": 12, "profile_path": "/pFVzAIAvQH50xGsUcgHuKrD3SSW.jpg", "order": 2}, {"name": "Sharni Vinson", "character": "Natalie", "id": 138010, "credit_id": "52fe45bec3a36847f80d7ddf", "cast_id": 7, "profile_path": "/u7TgXhZhSZwtRMuuPOIjkiAqxik.jpg", "order": 3}, {"name": "Alyson Stoner", "character": "Camille", "id": 58965, "credit_id": "52fe45bec3a36847f80d7de3", "cast_id": 8, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 4}, {"name": "Keith Stallworth", "character": "Jacob", "id": 138011, "credit_id": "52fe45bec3a36847f80d7de7", "cast_id": 9, "profile_path": "/zwdHFSK1cqrv6XG10zgfS5sKcBV.jpg", "order": 5}, {"name": "Kendra Andrews", "character": "Anala", "id": 138012, "credit_id": "52fe45bec3a36847f80d7deb", "cast_id": 10, "profile_path": "/lUuz8TVkl5FFfsszzZylwtZJ4IY.jpg", "order": 6}, {"name": "Stephen Boss", "character": "Jason", "id": 110743, "credit_id": "52fe45bec3a36847f80d7def", "cast_id": 11, "profile_path": "/5mGP9IXwtmCFAK8dSiOVaFxjSRM.jpg", "order": 7}, {"name": "Mart\u00edn Lombard", "character": "The Santiago Twins", "id": 1397768, "credit_id": "548c264d92514122f200154b", "cast_id": 13, "profile_path": "/90JgwlpMJK0YMvK1GC9pL93phe9.jpg", "order": 8}, {"name": "Facundo Lombard", "character": "The Santiago Twins", "id": 1397762, "credit_id": "548c2661c3a36820c200165c", "cast_id": 14, "profile_path": "/dixi9Cn16IUpAHR8pV1jamMVEjw.jpg", "order": 9}, {"name": "Oren Michaeli", "character": "Carlos", "id": 1398472, "credit_id": "548c2735c3a36820be0012da", "cast_id": 15, "profile_path": "/1e8BRQsCFFDOJyXtDfO3KrVKJOo.jpg", "order": 10}, {"name": "Daniel 'Cloud' Campos", "character": "Kid Darkness", "id": 568652, "credit_id": "548c2c3492514122ef00170c", "cast_id": 16, "profile_path": "/8VhkmmiLaAqNd68ELkTJNXa2Vnq.jpg", "order": 11}, {"name": "Aja George", "character": "The Ticks", "id": 1398477, "credit_id": "548c2e03c3a36820ba0015ba", "cast_id": 17, "profile_path": "/aAHMJ9VPLhYcZQnv49y7kizxnE9.jpg", "order": 12}, {"name": "Straphanio 'Shonnie' Solomon", "character": "The Ticks", "id": 1398521, "credit_id": "548c51b1c3a36820c2001aef", "cast_id": 18, "profile_path": "/h6qAq6qKw0XEorGQeJARgIHxxrZ.jpg", "order": 13}, {"name": "Terence Dickson", "character": "The Ticks", "id": 1148759, "credit_id": "548c5428c3a36820be00175d", "cast_id": 19, "profile_path": "/36Ba9N0SxSOrnvgMn1HRuEToaGR.jpg", "order": 14}, {"name": "Chadd Smith", "character": "Vladd", "id": 1341648, "credit_id": "548c548492514122ea001bca", "cast_id": 20, "profile_path": "/aAFFe4w9TbPTjfuBRt3rZAR96bG.jpg", "order": 15}, {"name": "Britney 'B' Thomas", "character": "B.", "id": 1398544, "credit_id": "548c553192514122ed001bb0", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Terrance Harrison", "character": "Radius", "id": 1398550, "credit_id": "548c565492514122ea001bff", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Jonathan 'Legacy' Perez", "character": "Legz", "id": 1093497, "credit_id": "548c57b0c3a36820c2001b8c", "cast_id": 23, "profile_path": "/nyv6OjlSOXCx3bGIKuf0g1AAjOb.jpg", "order": 18}, {"name": "Jaime Burgos III", "character": "Mohawk", "id": 1398554, "credit_id": "548c5820c3a36820b5001e0f", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Ivan 'Flipz' Velez", "character": "Spinz", "id": 1046144, "credit_id": "548c5b3ac3a3684eb9001804", "cast_id": 25, "profile_path": "/adXcwdqNqC1gmYYxLda9ZIUjBmU.jpg", "order": 20}, {"name": "Ashlee Nino", "character": "Stix", "id": 1398593, "credit_id": "548c6625c3a36820c5001fed", "cast_id": 26, "profile_path": "/kPpuK5wJCA9yX3zTS3toGf3NGhQ.jpg", "order": 21}, {"name": "Tamara Levinson", "character": "Bend", "id": 568659, "credit_id": "548c6c02c3a36820b5002060", "cast_id": 27, "profile_path": "/rszBSN45sRNOBs60CtY5JOIRh4L.jpg", "order": 22}, {"name": "Ricardo 'Boogie Frantick' Rodriguez Jr.", "character": "Wave", "id": 1398614, "credit_id": "548c6d51c3a36820ba001cb0", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Mari Koda", "character": "Jenny Kido", "id": 1189078, "credit_id": "548c6ddf92514122f2001d27", "cast_id": 29, "profile_path": "/oFrTgN8bhNmHSFY2PN5MISLa2IL.jpg", "order": 24}, {"name": "Christopher Scott", "character": "Hair", "id": 1341649, "credit_id": "548c7359c3a36820b8002126", "cast_id": 31, "profile_path": "/xqIgvt7rqj1Id0wPiCz8wh41z3s.jpg", "order": 26}, {"name": "Luis Rosado", "character": "Monster", "id": 1148762, "credit_id": "548c73a7c3a36820b500216f", "cast_id": 32, "profile_path": "/3WQyLA5js8eioERwZBNdCLlejdd.jpg", "order": 27}, {"name": "LaJon Dantzler", "character": "Smiles", "id": 1398617, "credit_id": "548c743792514122f2001dcd", "cast_id": 33, "profile_path": "/7ZJHdIlTy0MjRz5F7oqSDYzXFDo.jpg", "order": 28}, {"name": "Janelle Cambridge", "character": "Fly", "id": 1398618, "credit_id": "548c798592514122ff001d56", "cast_id": 34, "profile_path": null, "order": 29}, {"name": "Anjelo 'Lil Demon' Baligad", "character": "Arcade Rats", "id": 1398619, "credit_id": "548c7a17c3a36820b8002224", "cast_id": 35, "profile_path": null, "order": 30}, {"name": "Jalen Testerman", "character": "Arcade Rats", "id": 1398621, "credit_id": "548c7bb992514122fc001eeb", "cast_id": 36, "profile_path": "/rr8mFLdRKHJNAsegfyNf90KaKfF.jpg", "order": 31}, {"name": "Jose 'Boy Boi' Tena", "character": "Arcade Rats", "id": 1398623, "credit_id": "548c7f0492514122f5001f26", "cast_id": 37, "profile_path": "/clnF0yYgMEGJP0AhKLTbn313Ypf.jpg", "order": 32}, {"name": "Simrin C. Player", "character": "Arcade Rats", "id": 1398626, "credit_id": "548c7ff592514122f5001f45", "cast_id": 38, "profile_path": "/7TR8xMsgJM6FY8TFIohho6bpaLQ.jpg", "order": 33}, {"name": "Joshua Allen", "character": "House of Samurai", "id": 1290629, "credit_id": "548cbb1292514122ea0028a5", "cast_id": 39, "profile_path": "/6H0W8ZmTY3hBi3jlFpL2ljBpihp.jpg", "order": 34}, {"name": "Jeffrey 'Machine' McCann", "character": "House of Samurai", "id": 1398124, "credit_id": "548cbdbf92514122fc00267e", "cast_id": 40, "profile_path": null, "order": 35}, {"name": "Casper Smart", "character": "House of Samurai", "id": 559646, "credit_id": "548cbfbf92514122ef002833", "cast_id": 41, "profile_path": "/lLESgQOmlKWSqunwWMWAfiIYlsf.jpg", "order": 36}, {"name": "Joshua Lee Ayers", "character": "House of Samurai", "id": 1071483, "credit_id": "548cc6d992514122ef0028dd", "cast_id": 42, "profile_path": "/j74Y9HfMhLnklFGVfVTXWmFN8dV.jpg", "order": 37}, {"name": "Philip Albuquerque", "character": "House of Samurai", "id": 1398741, "credit_id": "548cc770c3a36820b5002d07", "cast_id": 43, "profile_path": null, "order": 38}, {"name": "Richard Steelo Vasquez", "character": "House of Samurai", "id": 1398742, "credit_id": "548cc83892514122ef002914", "cast_id": 44, "profile_path": null, "order": 39}, {"name": "John 'J-Rock' Nelson", "character": "House of Samurai", "id": 1398825, "credit_id": "548d334ec3a36820b5003c71", "cast_id": 45, "profile_path": null, "order": 40}, {"name": "Aaron 'Deuce' Cooke", "character": "House of Samurai", "id": 1398826, "credit_id": "548d35c5c3a36820b8003b0a", "cast_id": 46, "profile_path": null, "order": 41}, {"name": "Moises Rivas", "character": "House of Samurai", "id": 1398827, "credit_id": "548d3657c3a36820be002f7f", "cast_id": 47, "profile_path": null, "order": 42}, {"name": "Zahra 'Jeskilz' Hamani", "character": "The House of Samurais", "id": 1398828, "credit_id": "548d3761c3a36820c500398d", "cast_id": 48, "profile_path": null, "order": 43}, {"name": "Ivan Koumaev", "character": "House of Samurai", "id": 1290640, "credit_id": "548d399a92514122ff003329", "cast_id": 49, "profile_path": null, "order": 44}, {"name": "Sharya Howell", "character": "House of Samurai", "id": 1398829, "credit_id": "548d3a12c3a36820be002fe9", "cast_id": 50, "profile_path": null, "order": 45}, {"name": "Carly Lang", "character": "House of Samurai", "id": 1398830, "credit_id": "548d3b92c3a3681d4b001417", "cast_id": 51, "profile_path": "/vzj5KsnHJPnHTTqNP4oawTdsX2I.jpg", "order": 46}, {"name": "Nick Wilson", "character": "House of Samurai", "id": 1398831, "credit_id": "548d3c8692514122f2003627", "cast_id": 52, "profile_path": null, "order": 47}, {"name": "Nick DeMoura", "character": "House of Samurai", "id": 1398832, "credit_id": "548d3d1ec3a36820ba003580", "cast_id": 53, "profile_path": null, "order": 48}, {"name": "Bailey Hanks", "character": "NYU Tour Guide", "id": 1398833, "credit_id": "548d404f92514122f9003a27", "cast_id": 55, "profile_path": "/dAK9zEZmzd2HVTM3BaB28cpOBlH.jpg", "order": 50}, {"name": "Robin Lord Taylor", "character": "Punk Kid", "id": 59262, "credit_id": "548d41dcc3a368153b00133e", "cast_id": 56, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 51}, {"name": "Alex Zelenty", "character": "Emo Skater", "id": 1398835, "credit_id": "548d424fc3a36820b5003e66", "cast_id": 57, "profile_path": null, "order": 52}, {"name": "Jimmy Smagula", "character": "Balloon Vendor", "id": 1398836, "credit_id": "548d434ac3a36820be0030bd", "cast_id": 58, "profile_path": "/pzx8qt8yh4EVUTICPjaQ2xMTpKI.jpg", "order": 53}, {"name": "Christopher Place", "character": "Police Officer", "id": 204339, "credit_id": "548d4568c3a36820ba003652", "cast_id": 59, "profile_path": "/nHSXl6Y8ZNyv7noxTrh1uXHp0tE.jpg", "order": 54}, {"name": "Mark Blum", "character": "NYU Professor", "id": 14103, "credit_id": "548d45dd92514122ff003476", "cast_id": 60, "profile_path": "/mXRMbyyUtZ0JBs8aagC5Gn3omnE.jpg", "order": 55}, {"name": "Alex Charak", "character": "Silence D. Class", "id": 1398837, "credit_id": "548d4648c3a368153b0013c1", "cast_id": 61, "profile_path": "/1FjjbaDLl4T6c9fuJsOQqEUbTdK.jpg", "order": 56}, {"name": "Carolina Ravassa", "character": "Kristin", "id": 1398838, "credit_id": "548d485092514122fc00361f", "cast_id": 62, "profile_path": "/tauK5sqjI1JIIEXkco8XNbZ3QGB.jpg", "order": 57}, {"name": "Ally Maki", "character": "Jenny", "id": 209596, "credit_id": "548d49fd92514122f9003b66", "cast_id": 63, "profile_path": "/fZK27EmQkDTtUayLX38XhLBZE9h.jpg", "order": 58}, {"name": "Jamal Sims", "character": "Red Hook Announcer", "id": 29215, "credit_id": "548d4b3e92514122fc003684", "cast_id": 64, "profile_path": "/9GagwrpYPzSgEPppIEcMFugsU5I.jpg", "order": 59}, {"name": "Kevin Chew", "character": "Gwai Announcer", "id": 230163, "credit_id": "548d4be5c3a368153b001487", "cast_id": 65, "profile_path": null, "order": 60}, {"name": "Ken Marks", "character": "Walter", "id": 1398851, "credit_id": "548d5a47c3a3681d4b001887", "cast_id": 66, "profile_path": "/1eXMVRWlgd8dDQ8rb0W8IvbxZBw.jpg", "order": 61}, {"name": "Mark Tallman", "character": "Door Person", "id": 1344380, "credit_id": "548d5b59c3a36820c5003de3", "cast_id": 67, "profile_path": "/k5jAH1JuANNRi3qbjCnpRPLzoEb.jpg", "order": 62}, {"name": "Jennifer Van Dyck", "character": "Natalie's Mom", "id": 88755, "credit_id": "548d5c879251415568001735", "cast_id": 68, "profile_path": "/iil0xqgJbuXdEohG1vqz7KDWxVg.jpg", "order": 63}, {"name": "Kylie Goldstein", "character": "Ice Cream Girl", "id": 979342, "credit_id": "548d5d83c3a3681d4b001917", "cast_id": 69, "profile_path": "/wxtm2b6YrqCmlfC516peKZV8WOw.jpg", "order": 64}, {"name": "David Brown", "character": "Ice Cream Man", "id": 1260146, "credit_id": "548d604992514122fc0038d4", "cast_id": 70, "profile_path": "/rS11US9Th9grQlTN0NdK7Q2VrI1.jpg", "order": 65}, {"name": "Rhapsody James", "character": "Woman Watering Plants", "id": 1400904, "credit_id": "5492fd4bc3a3683cf80019a4", "cast_id": 71, "profile_path": null, "order": 66}, {"name": "Dylan Hartigan", "character": "Scooter boy", "id": 60015, "credit_id": "5492fedcc3a3683cfa0013d0", "cast_id": 72, "profile_path": "/8Te5OtZD4Dq1ILvktsMhGnmetc7.jpg", "order": 67}, {"name": "Sal Mistretta", "character": "Diner Customer", "id": 1400907, "credit_id": "5492ffbd925141090e001ab7", "cast_id": 73, "profile_path": "/yFkb1ZjzzeKGQ9YqKgtUg3afhye.jpg", "order": 68}, {"name": "Sonnie Brown", "character": "Mrs. Kido", "id": 1400908, "credit_id": "54930139925141090c001ba0", "cast_id": 74, "profile_path": "/ficJnMtw0f4fSXRyDnSru3ZUrsr.jpg", "order": 69}, {"name": "Akira Takayama", "character": "Mr. Kido", "id": 1333696, "credit_id": "5493029ec3a3683d04001bbf", "cast_id": 75, "profile_path": "/wxPcSoz4KThwbwE3fnEPJCNBRGj.jpg", "order": 70}, {"name": "Grandmaster Caz", "character": "World Jam Announcer", "id": 1096823, "credit_id": "549305ad92514118f2001a12", "cast_id": 76, "profile_path": "/7ivGQGf8by40XUSpp4qOn0hSPod.jpg", "order": 71}, {"name": "Hi-Hat", "character": "World Jam Judge", "id": 54515, "credit_id": "54930740c3a3683d00001a70", "cast_id": 77, "profile_path": "/9KIBPhKOxizRBH3YPLSSVaL2PYW.jpg", "order": 72}, {"name": "Raymond Del Barrio", "character": "World Jam Judge", "id": 1400927, "credit_id": "549307f592514118f2001a64", "cast_id": 78, "profile_path": "/bzJG3FyGuaNXMAzgj1ODNmCHakb.jpg", "order": 73}, {"name": "Marley Marl", "character": "World Jam Judge", "id": 1400978, "credit_id": "54935502925141092100202c", "cast_id": 79, "profile_path": null, "order": 74}, {"name": "Dan Ziskie", "character": "NYU Dean", "id": 61323, "credit_id": "549357b49251410896000001", "cast_id": 80, "profile_path": "/c4TZVcVFAmsqDUSPNhEQ73LFn4s.jpg", "order": 75}, {"name": "Ryan Daniel Beck", "character": "Mover Dancer", "id": 1400979, "credit_id": "549357fe925141089f00000d", "cast_id": 81, "profile_path": null, "order": 76}, {"name": "Sawandi Wilson", "character": "Mover Dancer", "id": 1400980, "credit_id": "54935966c3a36871bf000029", "cast_id": 82, "profile_path": "/rDSj3wSqSN5Mr3wmrIhlqO1iDSD.jpg", "order": 77}, {"name": "Noel Rodriguez", "character": "Club Dancer", "id": 1401031, "credit_id": "5493ba7c9251416e1c000872", "cast_id": 83, "profile_path": null, "order": 78}, {"name": "Marie 'Pandora' Medina", "character": "House of Red Hook", "id": 1401040, "credit_id": "5493bc42c3a3686af30007de", "cast_id": 84, "profile_path": "/cBNUw59XUVCR0TGMHdFLsXU5Uh6.jpg", "order": 79}, {"name": "Tyrell Washington", "character": "House of Red Hook", "id": 1401048, "credit_id": "5493be42c3a3686ae7000818", "cast_id": 85, "profile_path": null, "order": 80}, {"name": "Anthony Carr", "character": "House of Red Hook", "id": 1401053, "credit_id": "5493bf139251416e280008f5", "cast_id": 86, "profile_path": null, "order": 81}, {"name": "Adrian Wiltshire", "character": "House of Red Hook", "id": 1401057, "credit_id": "5493bfb0c3a3686ae700083e", "cast_id": 87, "profile_path": null, "order": 82}, {"name": "Dave Scott", "character": "House of Red Hook", "id": 54516, "credit_id": "5493c1c29251416e240008c2", "cast_id": 88, "profile_path": "/hKC4qqXAzEpfQNADXZlkjn3sqsn.jpg", "order": 83}, {"name": "Cedric Gardner", "character": "House of Red Hook", "id": 1401068, "credit_id": "5493c22b9251416e2200092f", "cast_id": 89, "profile_path": null, "order": 84}, {"name": "Josue Anthony", "character": "House of Red Hook", "id": 1398070, "credit_id": "5493c2b9c3a3686ae30008d1", "cast_id": 90, "profile_path": null, "order": 85}, {"name": "Richie Soto", "character": "House of Red Hook", "id": 1401073, "credit_id": "5493c35fc3a3686adc000bb8", "cast_id": 91, "profile_path": null, "order": 86}, {"name": "Cheryl Alessio", "character": "Arcade Player", "id": 1343738, "credit_id": "5493c4fd9251416e2400092f", "cast_id": 92, "profile_path": "/7414QDtXpvIz2PZS30BfzyHRhJS.jpg", "order": 87}, {"name": "George Alexander", "character": "World Jam Dancer", "id": 1401076, "credit_id": "5493c654c3a3686ae70008e4", "cast_id": 93, "profile_path": "/sQymX0JZ91wCZCGOqeIF9ImTVNv.jpg", "order": 88}, {"name": "Shawn Breathwaite", "character": "Dancer", "id": 1401077, "credit_id": "5493c740c3a3686aed000a15", "cast_id": 94, "profile_path": null, "order": 89}, {"name": "Leon C. Carswell", "character": "House of Gwai", "id": 1099849, "credit_id": "5493c9abc3a3686ae9000987", "cast_id": 95, "profile_path": null, "order": 90}, {"name": "Bryan Dechart", "character": "Anton", "id": 1349554, "credit_id": "5493cb43c3a3686ae30009d8", "cast_id": 96, "profile_path": "/kUa4juzzxV6MMJeFNvG6trEkJBi.jpg", "order": 91}, {"name": "Monique Dupree", "character": "Hip Hop Girl", "id": 98214, "credit_id": "5493cd83c3a3686af3000a44", "cast_id": 97, "profile_path": "/vSlP5d56aKJlCrHRTEe3grKVNSp.jpg", "order": 92}, {"name": "Jason Etter", "character": "Preppy Kid", "id": 1401078, "credit_id": "5493cdf49251416e1e00097c", "cast_id": 98, "profile_path": "/66nMYnLVjRML2AxhaYtPyAjcF5L.jpg", "order": 93}, {"name": "Ruby Feliciano", "character": "Mimi", "id": 1401079, "credit_id": "5493cfe8c3a3686ae1000af8", "cast_id": 99, "profile_path": "/sQ3VwAD8SSomahSIh2Sr86YeB6l.jpg", "order": 94}, {"name": "Moe Hindi", "character": "Grand Central Passenger", "id": 1401080, "credit_id": "5493d1589251416e1c000bd6", "cast_id": 100, "profile_path": null, "order": 95}, {"name": "Jeremy Hudson", "character": "Tango Dancer", "id": 1290608, "credit_id": "5493d30f9251416e24000b83", "cast_id": 101, "profile_path": null, "order": 96}, {"name": "Morris Isby", "character": "House of Gwai", "id": 1401081, "credit_id": "5493d3659251416e1e000b08", "cast_id": 102, "profile_path": null, "order": 97}, {"name": "Joseph Charles Kaye", "character": "House of Germany", "id": 1401084, "credit_id": "5493d4049251416e18000d3d", "cast_id": 103, "profile_path": null, "order": 98}, {"name": "Kristen Kress Parness", "character": "Backround", "id": 1401089, "credit_id": "5493d4f69251416e28000c0b", "cast_id": 104, "profile_path": "/3kZP4l8jOEe3Gw1dn2iJWUrnGF.jpg", "order": 99}, {"name": "Chris Kulanusorstit", "character": "Dance Battle Spectator", "id": 1401090, "credit_id": "5493d656c3a3686ae7000c14", "cast_id": 105, "profile_path": null, "order": 100}, {"name": "Zachary McElderry", "character": "Bill", "id": 1401091, "credit_id": "5493d6b79251416e18000dac", "cast_id": 106, "profile_path": null, "order": 101}, {"name": "Shauna Mitchell", "character": "Tango Dancer", "id": 1401092, "credit_id": "5493d7179251416e1c000d01", "cast_id": 107, "profile_path": null, "order": 102}, {"name": "Owen J. Murphy", "character": "Engineering Student", "id": 1401093, "credit_id": "5493d7a89251416e2b000cd1", "cast_id": 108, "profile_path": null, "order": 103}, {"name": "Kathy Najimy", "character": "Moose's Mom", "id": 11074, "credit_id": "5493d89b9251416e22000c47", "cast_id": 109, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 104}, {"name": "Stefanie Paige", "character": "College Freshman", "id": 1401094, "credit_id": "5493d90d9251416e22000c56", "cast_id": 110, "profile_path": null, "order": 105}, {"name": "Danielle Polanco", "character": "Missy", "id": 54504, "credit_id": "5493db249251411e5e000a33", "cast_id": 111, "profile_path": "/uerNcZ5L350k7MAWhxMyD0kdJEn.jpg", "order": 106}, {"name": "Alicia Qui\u00f1ones", "character": "World Jam Exhibition Dacner", "id": 1401095, "credit_id": "5493dbc09251416e18000e2e", "cast_id": 112, "profile_path": null, "order": 107}, {"name": "Tony Styles", "character": "House of Gwai", "id": 1401096, "credit_id": "5493dc359251411e5e000a52", "cast_id": 113, "profile_path": null, "order": 108}, {"name": "Ashley Sugarman", "character": "Dance Battle Spectator", "id": 1401099, "credit_id": "5493dd109251416e2b000d57", "cast_id": 114, "profile_path": "/fB8oMBPVd14FPCEifuy5qOZXjUx.jpg", "order": 109}, {"name": "Michael Trobiano", "character": "Hipster", "id": 1401100, "credit_id": "5493dda79251416e18000e6d", "cast_id": 115, "profile_path": null, "order": 110}, {"name": "Uzimann", "character": "Hot Dog Vendor", "id": 1401102, "credit_id": "5493de349251416e1e000c4f", "cast_id": 116, "profile_path": "/8WVXLqjnBf431l55CuhgQwNHvJJ.jpg", "order": 111}, {"name": "Sean Van der Wilt", "character": "Tango Dancer", "id": 1401103, "credit_id": "5493df2d9251416e2b000d8d", "cast_id": 117, "profile_path": null, "order": 112}, {"name": "Penelope Vazquez", "character": "Tango Dancer", "id": 1401104, "credit_id": "5493dfb7c3a3686ae1000d16", "cast_id": 118, "profile_path": null, "order": 113}, {"name": "Harry Shum Jr.", "character": "Cable", "id": 232499, "credit_id": "55185eff9251416f0d004b02", "cast_id": 119, "profile_path": "/aNnMmND0UYiE1J2yDA3QzHgHYdY.jpg", "order": 114}], "directors": [{"name": "Jon M. Chu", "department": "Directing", "job": "Director", "credit_id": "52fe45bec3a36847f80d7dc1", "profile_path": "/h80Zf0GR4jdmURx32hjvckJE8o5.jpg", "id": 54507}], "vote_average": 6.7, "runtime": 107}, "274": {"poster_path": "/qjAyTj2BSth1EQ89vNfo0JYVPFN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 272742922, "overview": "FBI trainee Clarice Starling ventures into a maximum-security asylum to pick the diseased brain of Hannibal Lecter, a psychiatrist turned homicidal cannibal. Starling needs clues to help her capture a serial killer. Unfortunately, her Faustian relationship with Lecter soon leads to his escape, and now two deranged killers are on the loose.", "video": false, "id": 274, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Silence of the Lambs", "tagline": "To enter the mind of a killer she must challenge the mind of a madman.", "vote_count": 1230, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102926", "adult": false, "backdrop_path": "/upTn8UYt1n92opIEIyzh8HljB0F.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}, {"name": "Strong Heart Productions", "id": 801}], "release_date": "1991-02-13", "popularity": 0.469661466081179, "original_title": "The Silence of the Lambs", "budget": 19000000, "cast": [{"name": "Anthony Hopkins", "character": "Hannibal Lecter", "id": 4173, "credit_id": "52fe4230c3a36847f800ada7", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Clarice Starling", "id": 1038, "credit_id": "52fe4230c3a36847f800ada3", "cast_id": 1, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Jack Crawford", "id": 349, "credit_id": "52fe4230c3a36847f800adaf", "cast_id": 4, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Ted Levine", "character": "Jame 'Buffalo Bill' Gumb", "id": 15854, "credit_id": "52fe4230c3a36847f800adb3", "cast_id": 5, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 3}, {"name": "Anthony Heald", "character": "Dr. Frederick Chilton", "id": 16293, "credit_id": "52fe4230c3a36847f800adab", "cast_id": 3, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 4}, {"name": "Brooke Smith", "character": "Catherine Martin", "id": 31649, "credit_id": "52fe4230c3a36847f800ade3", "cast_id": 16, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 5}, {"name": "Diane Baker", "character": "Senator Ruth Martin", "id": 6930, "credit_id": "52fe4230c3a36847f800adf7", "cast_id": 21, "profile_path": "/pExT2sv2tCRBxNzGKKNf2cdYI2q.jpg", "order": 6}, {"name": "Kasi Lemmons", "character": "Ardelia Mapp", "id": 51864, "credit_id": "52fe4230c3a36847f800addf", "cast_id": 15, "profile_path": "/dO8h85dpcoVFkKwa8MMOacRro4F.jpg", "order": 7}, {"name": "Frankie Faison", "character": "Barney Matthews", "id": 13936, "credit_id": "52fe4230c3a36847f800adb7", "cast_id": 6, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 8}, {"name": "Tracey Walter", "character": "Lamar", "id": 3801, "credit_id": "52fe4230c3a36847f800adef", "cast_id": 19, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 9}, {"name": "Charles Napier", "character": "Lt. Boyle", "id": 16119, "credit_id": "52fe4230c3a36847f800adff", "cast_id": 23, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 10}, {"name": "Danny Darst", "character": "Sgt. Tate", "id": 183640, "credit_id": "52fe4230c3a36847f800aea5", "cast_id": 62, "profile_path": null, "order": 11}, {"name": "Alex Coleman", "character": "Sgt. Pembry", "id": 1280997, "credit_id": "52fe4230c3a36847f800aeb1", "cast_id": 65, "profile_path": null, "order": 12}, {"name": "Dan Butler", "character": "Roden", "id": 76470, "credit_id": "52fe4230c3a36847f800ae81", "cast_id": 53, "profile_path": "/1JpxhswGPAkx3prXVZUpc7aM0uD.jpg", "order": 13}, {"name": "Paul Lazar", "character": "Pilcher", "id": 138988, "credit_id": "52fe4230c3a36847f800ae85", "cast_id": 54, "profile_path": "/8Aj1kAid7DQoLx76v7yn0pQdo90.jpg", "order": 14}, {"name": "Ron Vawter", "character": "Paul Krendler", "id": 32592, "credit_id": "52fe4230c3a36847f800ae95", "cast_id": 58, "profile_path": null, "order": 15}, {"name": "Roger Corman", "character": "FBI Director Hayden Burke", "id": 102429, "credit_id": "52fe4230c3a36847f800adfb", "cast_id": 22, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 16}, {"name": "Lawrence A. Bonney", "character": "FBI Instructor", "id": 1280985, "credit_id": "52fe4230c3a36847f800ae49", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Lawrence T. Wrentz", "character": "Agent Burroughs", "id": 192268, "credit_id": "52fe4230c3a36847f800ae4d", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Don Brockett", "character": "Friendly Psychopath", "id": 31118, "credit_id": "52fe4230c3a36847f800ade7", "cast_id": 17, "profile_path": null, "order": 19}, {"name": "Fank Seals Jr.", "character": "Brooding Psychopath", "id": 1280986, "credit_id": "52fe4230c3a36847f800ae51", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Stuart Rudin", "character": "Miggs", "id": 94435, "credit_id": "52fe4230c3a36847f800ae55", "cast_id": 41, "profile_path": "/7UOKyx48mPGHXl6HzQkCpCkEcn0.jpg", "order": 21}, {"name": "Masha Skorobogatov", "character": "Young Clarice", "id": 1280987, "credit_id": "52fe4230c3a36847f800ae59", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Jeffrie Lane", "character": "Clarice's Father", "id": 1280988, "credit_id": "52fe4230c3a36847f800ae5d", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Leib Lensky", "character": "Mr. Lang", "id": 68927, "credit_id": "52fe4230c3a36847f800ae61", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "George 'Red' Schwartz", "character": "Mr. Lang's Driver (as Red Schwartz)", "id": 68926, "credit_id": "52fe4230c3a36847f800ae65", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Jim Roche", "character": "TV Evangelist", "id": 1280989, "credit_id": "52fe4230c3a36847f800ae69", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "James B. Howard", "character": "Boxing Instructor", "id": 1280990, "credit_id": "52fe4230c3a36847f800ae6d", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Bill Miller", "character": "Mr. Brigham", "id": 174914, "credit_id": "52fe4230c3a36847f800ae71", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Chuck Aber", "character": "Agent Terry", "id": 102805, "credit_id": "52fe4230c3a36847f800adeb", "cast_id": 18, "profile_path": null, "order": 29}, {"name": "Gene Borkan", "character": "Oscar", "id": 152638, "credit_id": "52fe4230c3a36847f800ae75", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Pat McNamara", "character": "Sheriff Perkins", "id": 1174793, "credit_id": "52fe4230c3a36847f800ae79", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Kenneth Utt", "character": "Dr. Akin", "id": 16298, "credit_id": "52fe4230c3a36847f800ae7d", "cast_id": 52, "profile_path": "/8zXlrOU5Yjq0EHOjE5LDUOYH3Rs.jpg", "order": 32}, {"name": "Darla", "character": "\"Precious\" (as \"Darla\")", "id": 1280991, "credit_id": "52fe4230c3a36847f800ae89", "cast_id": 55, "profile_path": null, "order": 33}, {"name": "Adelle Lutz", "character": "TV Anchor Woman", "id": 1041787, "credit_id": "52fe4230c3a36847f800ae8d", "cast_id": 56, "profile_path": null, "order": 34}, {"name": "Obba Babatunde", "character": "TV Anchor Man", "id": 52057, "credit_id": "52fe4230c3a36847f800adf3", "cast_id": 20, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 35}, {"name": "George Michael", "character": "TV Sportscaster", "id": 1280992, "credit_id": "52fe4230c3a36847f800ae91", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Jim Dratfield", "character": "Sen. Martin's Aide", "id": 175082, "credit_id": "52fe4230c3a36847f800ae99", "cast_id": 59, "profile_path": null, "order": 37}, {"name": "Stanton-Miranda", "character": "1st Reporter", "id": 1280995, "credit_id": "52fe4230c3a36847f800ae9d", "cast_id": 60, "profile_path": null, "order": 38}, {"name": "Rebecca Saxon", "character": "2nd Reporter", "id": 1280996, "credit_id": "52fe4230c3a36847f800aea1", "cast_id": 61, "profile_path": null, "order": 39}, {"name": "Cynthia Ettinger", "character": "Officer Jacobs", "id": 1212913, "credit_id": "52fe4230c3a36847f800aea9", "cast_id": 63, "profile_path": null, "order": 40}, {"name": "Brent Hinkley", "character": "Officer Murray", "id": 7134, "credit_id": "52fe4230c3a36847f800ae03", "cast_id": 24, "profile_path": null, "order": 41}, {"name": "Steve Wyatt", "character": "Airport Flirt", "id": 1111682, "credit_id": "52fe4230c3a36847f800aead", "cast_id": 64, "profile_path": null, "order": 42}, {"name": "David Early", "character": "Spooked Memphis Cop", "id": 15074, "credit_id": "52fe4230c3a36847f800ae07", "cast_id": 25, "profile_path": null, "order": 43}, {"name": "Andre B. Blake", "character": "Tall Memphis Cop (as Andre Blake)", "id": 552526, "credit_id": "52fe4230c3a36847f800aeb5", "cast_id": 66, "profile_path": null, "order": 44}, {"name": "Bill Dalzell", "character": "Distraught Memphis Cop (as Bill Dalzell III)", "id": 1280998, "credit_id": "52fe4230c3a36847f800aeb9", "cast_id": 67, "profile_path": null, "order": 45}, {"name": "Chris Isaak", "character": "SWAT Commander", "id": 6591, "credit_id": "52fe4230c3a36847f800ae0b", "cast_id": 26, "profile_path": "/zL7bz7RQM2iVe45CZyYhM8fAi1U.jpg", "order": 46}, {"name": "Daniel von Bargen", "character": "SWAT Communicator", "id": 1473, "credit_id": "52fe4230c3a36847f800ae0f", "cast_id": 27, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 47}, {"name": "Tommy Lafitte", "character": "SWAT Shooter (as Tommy LaFitte)", "id": 1219514, "credit_id": "52fe4230c3a36847f800aebd", "cast_id": 68, "profile_path": "/6aMEXcJtuHoAkPy8Oub1xVYjo6V.jpg", "order": 48}, {"name": "Josh Broder", "character": "EMS Attendant", "id": 1280999, "credit_id": "52fe4230c3a36847f800aec1", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Buzz Kilman", "character": "EMS Driver", "id": 59329, "credit_id": "52fe4230c3a36847f800aec5", "cast_id": 70, "profile_path": "/pDwywHDHEwWlkxd3vkg6A7h6S9f.jpg", "order": 50}, {"name": "Harry Northup", "character": "Mr. Bimmel", "id": 127738, "credit_id": "52fe4230c3a36847f800aec9", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Lauren Roselli", "character": "Stacy Hubka", "id": 1281000, "credit_id": "52fe4230c3a36847f800aecd", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Lamont Arnold", "character": "Flower Delivery Man", "id": 1281001, "credit_id": "52fe4230c3a36847f800aed1", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "John Hall", "character": "State Trooper (uncredited)", "id": 102809, "credit_id": "52fe4230c3a36847f800ae13", "cast_id": 28, "profile_path": null, "order": 54}, {"name": "Ted Monte", "character": "FBI Agent (uncredited)", "id": 97902, "credit_id": "52fe4230c3a36847f800ae1b", "cast_id": 30, "profile_path": null, "order": 55}, {"name": "George A. Romero", "character": "FBI Agent in Memphis (uncredited)", "id": 14999, "credit_id": "52fe4230c3a36847f800ae17", "cast_id": 29, "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "order": 56}, {"name": "Maria Skorobogatov", "character": "Young Clarice", "id": 1447788, "credit_id": "5519b9c5c3a36830ce000085", "cast_id": 78, "profile_path": null, "order": 57}], "directors": [{"name": "Jonathan Demme", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800adbd", "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "id": 16294}], "vote_average": 7.5, "runtime": 118}, "275": {"poster_path": "/aZeX4XNSqa08TdMHRB1gDLO6GOi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60611975, "overview": "Jerry, a small-town Minnesota car salesman is bursting at the seams with debt... but he's got a plan. He's going to hire two thugs to kidnap his wife in a scheme to collect a hefty ransom from his wealthy father-in-law. It's going to be a snap and nobody's going to get hurt... until people start dying. Enter Police Chief Marge, a coffee-drinking, parka-wearing - and extremely pregnant - investigator who'll stop at nothing to get her man. And if you think her small-time investigative skills will give the crooks a run for their ransom... you betcha!", "video": false, "id": 275, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fargo", "tagline": "A lot can happen in the middle of nowhere.", "vote_count": 478, "homepage": "http://www.themoviefargo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116282", "adult": false, "backdrop_path": "/lGAaaOzqw8nc14HOgSP58TWWo1y.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1996-04-05", "popularity": 2.29497683959813, "original_title": "Fargo", "budget": 7000000, "cast": [{"name": "William H. Macy", "character": "Jerry Lundegaard", "id": 3905, "credit_id": "52fe4230c3a36847f800af23", "cast_id": 7, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Marge Gunderson", "id": 3910, "credit_id": "52fe4230c3a36847f800af37", "cast_id": 12, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Carl Showalter", "id": 884, "credit_id": "52fe4230c3a36847f800af1b", "cast_id": 5, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Peter Stormare", "character": "Gaear Grimsrud", "id": 53, "credit_id": "52fe4230c3a36847f800af1f", "cast_id": 6, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 3}, {"name": "Kristin Rudr\u00fcd", "character": "Jean Lundegaard", "id": 3906, "credit_id": "52fe4230c3a36847f800af27", "cast_id": 8, "profile_path": "/oZFXHbANc2MsFgB2VXR8UOsDqDM.jpg", "order": 4}, {"name": "Harve Presnell", "character": "Wade Gustafson", "id": 3907, "credit_id": "52fe4230c3a36847f800af2b", "cast_id": 9, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 5}, {"name": "Tony Denman", "character": "Scotty Lundegaard", "id": 3908, "credit_id": "52fe4230c3a36847f800af2f", "cast_id": 10, "profile_path": "/8W0gxnfQyeWATYKOdQhjFtWLsft.jpg", "order": 6}, {"name": "Gary Houston", "character": "Irate Customer", "id": 3909, "credit_id": "52fe4230c3a36847f800af33", "cast_id": 11, "profile_path": "/sHnbRD3qic7ndwrYB3qRRPSiEFE.jpg", "order": 7}, {"name": "John Carroll Lynch", "character": "Norm Gunderson", "id": 3911, "credit_id": "52fe4230c3a36847f800af3b", "cast_id": 13, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 8}, {"name": "Sally Wingert", "character": "Irate Customer's Wife", "id": 3912, "credit_id": "52fe4231c3a36847f800af57", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Steve Reevis", "character": "Shep Proudfoot", "id": 4024, "credit_id": "52fe4231c3a36847f800af5b", "cast_id": 19, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 10}, {"name": "Steve Park", "character": "Mike Yanagita", "id": 4025, "credit_id": "52fe4231c3a36847f800af5f", "cast_id": 20, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 11}, {"name": "Larry Brandenburg", "character": "Stan Grossman", "id": 92119, "credit_id": "53a625340e0a261439002638", "cast_id": 28, "profile_path": "/3TGsmGFwJps4dmVncOZIO3p6ToO.jpg", "order": 12}, {"name": "Kurt Schweickhardt", "character": "Car Salesman", "id": 1332890, "credit_id": "53a624400e0a2614360025eb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Larissa Kokernot", "character": "Hooker #1", "id": 1332891, "credit_id": "53a6245f0e0a26143200256c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Melissa Peterman", "character": "Hooker #2", "id": 145816, "credit_id": "53a625050e0a26143f002506", "cast_id": 27, "profile_path": "/yDgJvUVNVBqHATiAluIjqsUjYCT.jpg", "order": 15}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800af05", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4230c3a36847f800af0b", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.4, "runtime": 98}, "8469": {"poster_path": "/AuJkgAh7zAGsm7Oo3CGyDtYvzg0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141000000, "overview": "At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.", "video": false, "id": 8469, "genres": [{"id": 35, "name": "Comedy"}], "title": "Animal House", "tagline": "We got to do something...You know what we are gonna do ? Toga party !", "vote_count": 121, "homepage": "http://www.animalhouse.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077975", "adult": false, "backdrop_path": "/3A4xKsa3EYk9ohlkTRlrcNZGXg2.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Oregon Film Factory", "id": 13298}, {"name": "Stage III Productions", "id": 13300}], "release_date": "1978-07-28", "popularity": 0.346287993735879, "original_title": "Animal House", "budget": 2700000, "cast": [{"name": "John Belushi", "character": "John Blutarski", "id": 7171, "credit_id": "52fe44acc3a36847f80a38cf", "cast_id": 1, "profile_path": "/xVD48zqKxJWBOMYouWlnNExhM3g.jpg", "order": 0}, {"name": "Tim Matheson", "character": "Eric Stratton", "id": 21561, "credit_id": "52fe44acc3a36847f80a38d3", "cast_id": 2, "profile_path": "/iQQCtIS9bQJlQ8OMOzeidsJptAQ.jpg", "order": 1}, {"name": "John Vernon", "character": "Dean Vernon Wormer", "id": 17580, "credit_id": "52fe44acc3a36847f80a38d7", "cast_id": 3, "profile_path": "/8jESb02RChcuBEh4yZrLHElNhWa.jpg", "order": 2}, {"name": "Tom Hulce", "character": "Larry Kroger", "id": 3999, "credit_id": "52fe44acc3a36847f80a3a39", "cast_id": 82, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 3}, {"name": "Verna Bloom", "character": "Marion Wormer", "id": 55192, "credit_id": "52fe44acc3a36847f80a38db", "cast_id": 4, "profile_path": "/nNQMSCdsTE2sA3FzMOshdYr5RU5.jpg", "order": 4}, {"name": "Donald Sutherland", "character": "Dave Jennings", "id": 55636, "credit_id": "52fe44acc3a36847f80a38df", "cast_id": 6, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 5}, {"name": "Kevin Bacon", "character": "Chip Diller", "id": 4724, "credit_id": "52fe44acc3a36847f80a38e3", "cast_id": 7, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 6}, {"name": "Bruce McGill", "character": "Daniel Simpson Day", "id": 14888, "credit_id": "52fe44acc3a36847f80a38e7", "cast_id": 8, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 7}, {"name": "Mark Metcalf", "character": "Doug Neidermeyer", "id": 55194, "credit_id": "52fe44acc3a36847f80a38eb", "cast_id": 9, "profile_path": "/qjxCggGQH99OkXjDxm33QPIJZcl.jpg", "order": 8}, {"name": "Peter Riegert", "character": "Donald Schoenstein", "id": 20899, "credit_id": "52fe44acc3a36847f80a38ef", "cast_id": 10, "profile_path": "/szAJjIZY23cRhPUKLb6X3IbGEc5.jpg", "order": 9}, {"name": "James Widdoes", "character": "Robert Hoover", "id": 55195, "credit_id": "52fe44acc3a36847f80a38f3", "cast_id": 11, "profile_path": "/kNJqBzJCQ9mHD1ahAgqyhLYEMIE.jpg", "order": 10}, {"name": "Karen Allen", "character": "Katy", "id": 650, "credit_id": "52fe44acc3a36847f80a38f7", "cast_id": 12, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 11}, {"name": "Stephen Furst", "character": "Kent Dorfman", "id": 52304, "credit_id": "52fe44acc3a36847f80a3901", "cast_id": 15, "profile_path": "/omZKqkF9PrOS4mNyFPpu5iZcdAL.jpg", "order": 12}, {"name": "Mary Louise Weller", "character": "Mandy Pepperidge", "id": 55196, "credit_id": "52fe44acc3a36847f80a3905", "cast_id": 16, "profile_path": "/t6LjRfsu9Z1F2rPsM1XyX5wTPOi.jpg", "order": 13}, {"name": "Martha Smith", "character": "Babs Jansen", "id": 55197, "credit_id": "52fe44acc3a36847f80a3909", "cast_id": 17, "profile_path": "/mjAJaFrlaPBbvpyKSQiksvcqf7b.jpg", "order": 14}, {"name": "James Daughton", "character": "Greg Marmalard", "id": 55198, "credit_id": "52fe44acc3a36847f80a390d", "cast_id": 18, "profile_path": "/vXLuYRdzAy2NkZa0BQjAEAVDS21.jpg", "order": 15}, {"name": "Douglas Kenney", "character": "Stork", "id": 55199, "credit_id": "52fe44acc3a36847f80a3911", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Chris Miller", "character": "Hardbar", "id": 55200, "credit_id": "52fe44acc3a36847f80a3915", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Bruce Bonnheim", "character": "B.B.", "id": 55201, "credit_id": "52fe44acc3a36847f80a3919", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Joshua Daniel", "character": "Mothball", "id": 55202, "credit_id": "52fe44acc3a36847f80a391d", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Cesare Danova", "character": "Mayor Carmine DePasto", "id": 2558, "credit_id": "52fe44acc3a36847f80a3921", "cast_id": 23, "profile_path": "/8TZCVyWtXAT1PhALPASgS8RSiBr.jpg", "order": 20}, {"name": "Sunny Johnson", "character": "Otter's Co-Ed", "id": 31116, "credit_id": "52fe44acc3a36847f80a3925", "cast_id": 24, "profile_path": "/mKFoSy6SFZzaXKcEy6guoqu9gWU.jpg", "order": 21}, {"name": "Sarah Holcomb", "character": "Clorette DePasto", "id": 55203, "credit_id": "52fe44acc3a36847f80a3929", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Stacy Grooman", "character": "Sissy", "id": 55204, "credit_id": "52fe44acc3a36847f80a392d", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Otis Day", "character": "Otis Day", "id": 55206, "credit_id": "52fe44acc3a36847f80a3931", "cast_id": 28, "profile_path": "/rmxOhvzry0IFA3DZDroRHRrk2iV.jpg", "order": 24}, {"name": "Eliza Roberts", "character": "Brunella", "id": 55207, "credit_id": "52fe44acc3a36847f80a3935", "cast_id": 29, "profile_path": "/twTgZzVk2hT4KHHfNQ7AnkCJ371.jpg", "order": 25}, {"name": "Lisa Baur", "character": "Shelly", "id": 55208, "credit_id": "52fe44acc3a36847f80a3939", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "Aseneth Jurgenson", "character": "Beth", "id": 55209, "credit_id": "52fe44acc3a36847f80a393d", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Katherine Denning", "character": "Noreen", "id": 55210, "credit_id": "52fe44acc3a36847f80a3941", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Raymone Robinson", "character": "Mean Dude", "id": 55211, "credit_id": "52fe44acc3a36847f80a3945", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Robert Elliott", "character": "Meaner Dude", "id": 55212, "credit_id": "52fe44acc3a36847f80a3949", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Reginald Farmer", "character": "Meanest Dude", "id": 55213, "credit_id": "52fe44acc3a36847f80a394d", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Jebidiah R. Dumas", "character": "Gigantic Dude", "id": 55214, "credit_id": "52fe44acc3a36847f80a3951", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Priscilla Lauris", "character": "Dean's Secretary", "id": 55215, "credit_id": "52fe44acc3a36847f80a3955", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Rick Eby", "character": "Omega", "id": 55216, "credit_id": "52fe44acc3a36847f80a3959", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "John Freeman", "character": "Man On Street", "id": 55217, "credit_id": "52fe44acc3a36847f80a395d", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Sean McCartin", "character": "Lucky Boy", "id": 55218, "credit_id": "52fe44acc3a36847f80a3961", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Helen Vick", "character": "Sorority Girl", "id": 55219, "credit_id": "52fe44acc3a36847f80a3965", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Rick Greenough", "character": "Mongol", "id": 55220, "credit_id": "52fe44acc3a36847f80a3969", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Stephen Bishop", "character": "Charming Guy with Guitar", "id": 938558, "credit_id": "52fe44acc3a36847f80a3a55", "cast_id": 87, "profile_path": "/uhUDLWO1QDTyYmnByPyzqYKiLXh.jpg", "order": 39}, {"name": "John Landis", "character": "Cafeteria Dishwasher", "id": 4610, "credit_id": "530e0396c3a3685c2f002a4b", "cast_id": 88, "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "order": 40}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a38fd", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.7, "runtime": 109}, "278": {"poster_path": "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28341469, "overview": "Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", "video": false, "id": 278, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Shawshank Redemption", "tagline": "Fear can hold you prisoner. Hope can set you free.", "vote_count": 3745, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111161", "adult": false, "backdrop_path": "/xBKGJQsAIeweesB79KC89FpBrVr.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}], "release_date": "1994-09-14", "popularity": 3.10687249487982, "original_title": "The Shawshank Redemption", "budget": 25000000, "cast": [{"name": "Tim Robbins", "character": "Andy Dufresne", "id": 504, "credit_id": "52fe4231c3a36847f800b131", "cast_id": 3, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Ellis Boyd 'Red' Redding", "id": 192, "credit_id": "52fe4231c3a36847f800b135", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Warden Samuel Norton", "id": 4029, "credit_id": "52fe4231c3a36847f800b139", "cast_id": 5, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "William Sadler", "character": "Heywood", "id": 6573, "credit_id": "52fe4231c3a36847f800b13d", "cast_id": 7, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 3}, {"name": "Clancy Brown", "character": "Captain Byron T. Hadley", "id": 6574, "credit_id": "52fe4231c3a36847f800b141", "cast_id": 8, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 4}, {"name": "Gil Bellows", "character": "Tommy", "id": 6575, "credit_id": "52fe4231c3a36847f800b145", "cast_id": 9, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 5}, {"name": "Mark Rolston", "character": "Bogs Diamond", "id": 6576, "credit_id": "52fe4231c3a36847f800b149", "cast_id": 10, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 6}, {"name": "James Whitmore", "character": "Brooks Hatlen", "id": 6577, "credit_id": "52fe4231c3a36847f800b14d", "cast_id": 11, "profile_path": "/r1xOgXFjqhn2fonn78rlXKPZGFw.jpg", "order": 7}, {"name": "Jeffrey DeMunn", "character": "1946 D.A.", "id": 12645, "credit_id": "540dc040c3a36879b200546e", "cast_id": 28, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 8}, {"name": "Larry Brandenburg", "character": "Skeet", "id": 92119, "credit_id": "542eb4a5c3a3680439000009", "cast_id": 29, "profile_path": "/3TGsmGFwJps4dmVncOZIO3p6ToO.jpg", "order": 9}, {"name": "Neil Giuntoli", "character": "Jigger", "id": 168323, "credit_id": "542eb4b1c3a3680436000003", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Brian Libby", "character": "Floyd", "id": 6580, "credit_id": "542eb4bd0e0a2625a6000004", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "David Proval", "character": "Snooze", "id": 2555, "credit_id": "542eb4c90e0a2625a6000007", "cast_id": 32, "profile_path": "/ujBzP61tYlwqWpB3oOxknl1XuEg.jpg", "order": 12}, {"name": "Joseph Ragno", "character": "Ernie", "id": 5063, "credit_id": "542eb4d50e0a2625a3000005", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Jude Ciccolella", "character": "Guard Mert", "id": 8693, "credit_id": "542eb4ecc3a368043d00000f", "cast_id": 34, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 14}], "directors": [{"name": "Frank Darabont", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b127", "profile_path": "/9KVvZtDyy8DXacw2TTsjC9VLxQi.jpg", "id": 4027}], "vote_average": 8.2, "runtime": 142}, "279": {"poster_path": "/flnoqdC38mbaulAeptjynOFO7yi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51564280, "overview": "The incredible story of genius musician Wolfgang Amadeus Mozart, told in flashback by his peer and secret rival Antonio Salieri - now confined to an insane asylum.", "video": false, "id": 279, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10402, "name": "Music"}], "title": "Amadeus", "tagline": "...Everything you've heard is true", "vote_count": 280, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086879", "adult": false, "backdrop_path": "/sHsPEij3nojL34xcnaLdnuKEfmH.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Saul Zaentz Company", "id": 5237}], "release_date": "1984-10-26", "popularity": 1.37937065347243, "original_title": "Amadeus", "budget": 18000000, "cast": [{"name": "F. Murray Abraham", "character": "Antonio Salieri", "id": 1164, "credit_id": "52fe4231c3a36847f800b1cb", "cast_id": 4, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 0}, {"name": "Tom Hulce", "character": "Wolfgang Amadeus Mozart", "id": 3999, "credit_id": "52fe4231c3a36847f800b1cf", "cast_id": 5, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 1}, {"name": "Elizabeth Berridge", "character": "Constanze Mozart", "id": 4000, "credit_id": "52fe4231c3a36847f800b1d3", "cast_id": 6, "profile_path": "/vMNx6L9z19KELydCq6oQdzPlwyM.jpg", "order": 2}, {"name": "Roy Dotrice", "character": "Leopold Mozart", "id": 4002, "credit_id": "52fe4231c3a36847f800b1db", "cast_id": 8, "profile_path": "/5lEq1zJbdKO9KmhNiYxqEeiHgqT.jpg", "order": 3}, {"name": "Simon Callow", "character": "Emanuel Schikaneder", "id": 4001, "credit_id": "52fe4231c3a36847f800b1d7", "cast_id": 7, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 4}, {"name": "Christine Ebersole", "character": "Katerina Cavalieri", "id": 4003, "credit_id": "52fe4231c3a36847f800b1df", "cast_id": 9, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 5}, {"name": "Jeffrey Jones", "character": "Emperor Joseph II", "id": 4004, "credit_id": "52fe4231c3a36847f800b1e3", "cast_id": 10, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 6}, {"name": "Barbara Bryne", "character": "Mrs. Weber", "id": 4005, "credit_id": "52fe4231c3a36847f800b1e7", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Cynthia Nixon", "character": "Lorl", "id": 38024, "credit_id": "52fe4231c3a36847f800b215", "cast_id": 19, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 8}, {"name": "Douglas Seale", "character": "Count Arco", "id": 15833, "credit_id": "52fe4231c3a36847f800b219", "cast_id": 20, "profile_path": "/1Tbu7xnv3iwiLtKIJg1taQITbKC.jpg", "order": 9}, {"name": "Charles Kay", "character": "Count Orsini-Rosenberg", "id": 138413, "credit_id": "52fe4231c3a36847f800b21d", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Kenny Baker", "character": "Parody Commendatore", "id": 130, "credit_id": "52fe4231c3a36847f800b221", "cast_id": 22, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 11}, {"name": "Lisabeth Bartlett", "character": "Papagena in 'The Magic Flute'", "id": 948105, "credit_id": "52fe4231c3a36847f800b225", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Martin Cavina", "character": "Young Salieri", "id": 1077244, "credit_id": "52fe4231c3a36847f800b229", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Roderick Cook", "character": "Count Von Strack", "id": 1217752, "credit_id": "52fe4231c3a36847f800b235", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Milan Demjanenko", "character": "Karl Mozart", "id": 1077245, "credit_id": "52fe4231c3a36847f800b22d", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Peter DiGesu", "character": "Francesco Salieri", "id": 1077246, "credit_id": "52fe4231c3a36847f800b231", "cast_id": 27, "profile_path": null, "order": 16}], "directors": [{"name": "Milo\u0161 Forman", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b1bb", "profile_path": "/nKnsrK9h02F1QlMetkyr9R45VGM.jpg", "id": 3974}], "vote_average": 7.1, "runtime": 160}, "280": {"poster_path": "/2y4dmgWYRMYXdD1UyJVcn2HSd1D.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 520000000, "overview": "Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son, John, the future leader of the resistance, is the target for a newer, more deadly terminator. Once again, the resistance has managed to send a protector back to attempt to save John and his mother Sarah.", "video": false, "id": 280, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Terminator 2: Judgment Day", "tagline": "It's nothing personal.", "vote_count": 1779, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0103064", "adult": false, "backdrop_path": "/d9AqtruwS8nljKjL5aYzM42hQJr.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Le Studio Canal+", "id": 183}, {"name": "Lightstorm Entertainment", "id": 574}, {"name": "Pacific Western Production", "id": 7746}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1991-07-01", "popularity": 2.68411727316206, "original_title": "Terminator 2: Judgment Day", "budget": 100000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "The Terminator", "id": 1100, "credit_id": "52fe4231c3a36847f800b283", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Linda Hamilton", "character": "Sarah Connor", "id": 2713, "credit_id": "52fe4231c3a36847f800b28d", "cast_id": 3, "profile_path": "/bxsVrRYOpAL0vI6X7nnEsyLvZ8H.jpg", "order": 1}, {"name": "Edward Furlong", "character": "John Connor", "id": 820, "credit_id": "52fe4231c3a36847f800b297", "cast_id": 5, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 2}, {"name": "Robert Patrick", "character": "T-1000", "id": 418, "credit_id": "52fe4231c3a36847f800b29b", "cast_id": 6, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 3}, {"name": "Earl Boen", "character": "Dr. Peter Silberman", "id": 2716, "credit_id": "52fe4231c3a36847f800b29f", "cast_id": 7, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 4}, {"name": "Joe Morton", "character": "Dr. Miles Bennett Dyson", "id": 3977, "credit_id": "52fe4231c3a36847f800b2a3", "cast_id": 8, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "S. Epatha Merkerson", "character": "Tarissa Dyson", "id": 3978, "credit_id": "52fe4231c3a36847f800b2a7", "cast_id": 9, "profile_path": "/wuzhs2DR1ImE3Y8kuMoCXpFaHVK.jpg", "order": 6}, {"name": "Castulo Guerra", "character": "Enrique Salceda", "id": 3979, "credit_id": "52fe4231c3a36847f800b2ab", "cast_id": 10, "profile_path": "/njap7gZlVKHMKFb0aMQB17kMUNh.jpg", "order": 7}, {"name": "Danny Cooksey", "character": "Tim", "id": 3980, "credit_id": "52fe4231c3a36847f800b2af", "cast_id": 11, "profile_path": "/4jrP2XHLUOx4l2RWunuhp3mfBCW.jpg", "order": 8}, {"name": "Jenette Goldstein", "character": "Janelle Voight", "id": 3981, "credit_id": "52fe4231c3a36847f800b2b3", "cast_id": 12, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 9}, {"name": "Xander Berkeley", "character": "Todd Voight", "id": 3982, "credit_id": "52fe4231c3a36847f800b2b7", "cast_id": 13, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 10}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b289", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.2, "runtime": 137}, "281": {"poster_path": "/rXvy5hG9OeVmgnv9w4IhQxhqEKD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Lenny Nero, a retired police officer turned street-hustler, accidentally uncovers a conspiracy on New Years' Eve.", "video": false, "id": 281, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Strange Days", "tagline": "You know you want it.", "vote_count": 59, "homepage": "http://www.strange-days.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114558", "adult": false, "backdrop_path": "/4PuvZmLtwKQ8eejyfKf51NWTG13.jpg", "production_companies": [{"name": "Lightstorm Entertainment", "id": 574}, {"name": "20th Century Fox", "id": 25}], "release_date": "1995-10-13", "popularity": 0.299616760483177, "original_title": "Strange Days", "budget": 42000000, "cast": [{"name": "Ralph Fiennes", "character": "Lenny Nero", "id": 5469, "credit_id": "52fe4231c3a36847f800b3a1", "cast_id": 9, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Angela Bassett", "character": "Lornette 'Mace' Mason", "id": 9780, "credit_id": "52fe4231c3a36847f800b3a5", "cast_id": 10, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 1}, {"name": "Tom Sizemore", "character": "Max Peltier", "id": 3197, "credit_id": "52fe4231c3a36847f800b3a9", "cast_id": 11, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Faith Justin", "id": 3196, "credit_id": "52fe4231c3a36847f800b3ad", "cast_id": 12, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Vincent D'Onofrio", "character": "Burton Steckler", "id": 7132, "credit_id": "52fe4231c3a36847f800b3b1", "cast_id": 13, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 4}, {"name": "William Fichtner", "character": "Dwayne Engelman", "id": 886, "credit_id": "52fe4231c3a36847f800b3b5", "cast_id": 14, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 5}, {"name": "Michael Wincott", "character": "Philo Gant", "id": 7486, "credit_id": "52fe4231c3a36847f800b3b9", "cast_id": 15, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 6}, {"name": "Glenn Plummer", "character": "Jeriko One", "id": 2683, "credit_id": "52fe4231c3a36847f800b3bd", "cast_id": 16, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 7}, {"name": "Brigitte Bako", "character": "Iris", "id": 14607, "credit_id": "52fe4231c3a36847f800b3c1", "cast_id": 17, "profile_path": "/1D7yfHTpFEc8nQmsHHJiFE5yvwe.jpg", "order": 8}, {"name": "Kelly Hu", "character": "Anchor Woman", "id": 11024, "credit_id": "52ffb8429251416ae4097e20", "cast_id": 22, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 9}, {"name": "Josef Sommer", "character": "Palmer Strickland", "id": 14792, "credit_id": "536fd9a40e0a2647cb012eb6", "cast_id": 23, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 10}, {"name": "Joe Urla", "character": "Keith", "id": 151433, "credit_id": "536fd9ffc3a368124100ee4d", "cast_id": 24, "profile_path": "/92uDSmkBkgcVXDO8DBr3iInd62H.jpg", "order": 11}, {"name": "Michael Jace", "character": "Wade Beemer", "id": 46921, "credit_id": "536fda36c3a36839c1004db4", "cast_id": 25, "profile_path": "/7iTtCeZZnAPeE4x5TiXtinb0izJ.jpg", "order": 12}, {"name": "Kelly Hu", "character": "Anchor Woman", "id": 11024, "credit_id": "536fdafc0e0a2647d1012a1a", "cast_id": 26, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 13}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b373", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 6.9, "runtime": 145}, "284": {"poster_path": "/8nrQKQjD6z0SJouKHQapXzmjFc6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25000000, "overview": "Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he's left with a major problem to solve.", "video": false, "id": 284, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Apartment", "tagline": "Movie-wise, there has never been anything like it - laugh-wise, love-wise, or otherwise-wise", "vote_count": 92, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053604", "adult": false, "backdrop_path": "/ataq3FgceLuNQy5C8xUyLnVEWz.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "The Mirisch Company", "id": 11241}], "release_date": "1960-06-15", "popularity": 1.1536676292809, "original_title": "The Apartment", "budget": 3000000, "cast": [{"name": "Jack Lemmon", "character": "C.C. Baxter", "id": 3151, "credit_id": "52fe4232c3a36847f800b417", "cast_id": 1, "profile_path": "/1Y3wQsqRALOL3LZQtKmulmN3qff.jpg", "order": 0}, {"name": "Shirley MacLaine", "character": "Fran Kubelik", "id": 4090, "credit_id": "52fe4232c3a36847f800b41b", "cast_id": 2, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 1}, {"name": "Fred MacMurray", "character": "Jeff D. Sheldrake", "id": 4091, "credit_id": "52fe4232c3a36847f800b41f", "cast_id": 3, "profile_path": "/3TQjxCbV4xaILVSd0biqfKXt50u.jpg", "order": 2}, {"name": "Ray Walston", "character": "Joe Dobisch", "id": 4093, "credit_id": "52fe4232c3a36847f800b423", "cast_id": 4, "profile_path": "/KzlcoLq3s2I3ogQAdbE1eUcXsb.jpg", "order": 3}, {"name": "Jack Kruschen", "character": "Dr. Dreyfuss", "id": 4094, "credit_id": "52fe4232c3a36847f800b427", "cast_id": 5, "profile_path": "/wV2cXcwJGwtySHjGKnjhSN0usq7.jpg", "order": 4}, {"name": "Naomi Stevens", "character": "Mrs. Mildred Dreyfuss", "id": 4096, "credit_id": "52fe4232c3a36847f800b42b", "cast_id": 6, "profile_path": "/xN6uGfzCot414AALXKcC0wL9vJl.jpg", "order": 5}, {"name": "Hope Holiday", "character": "Mrs. Margie MacDougall", "id": 4097, "credit_id": "52fe4232c3a36847f800b42f", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Edie Adams", "character": "Miss Olsen", "id": 4098, "credit_id": "52fe4232c3a36847f800b433", "cast_id": 8, "profile_path": "/nR9nzWhHMZeRrk5EeJhOVhxILbk.jpg", "order": 7}, {"name": "Joan Shawlee", "character": "Sylvia", "id": 3161, "credit_id": "52fe4232c3a36847f800b437", "cast_id": 9, "profile_path": "/1KSTHsyQsyuIAaj4k1BLmdpMaEc.jpg", "order": 8}, {"name": "Johnny Seven", "character": "Karl Matuschka", "id": 4099, "credit_id": "52fe4232c3a36847f800b43b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "David Lewis", "character": "Al Kirkeby", "id": 571911, "credit_id": "52fe4232c3a36847f800b4a5", "cast_id": 28, "profile_path": "/hi8Y2vwvTw8FhclgwS1w2mOKvO4.jpg", "order": 10}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe4232c3a36847f800b489", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.9, "runtime": 125}, "285": {"poster_path": "/llx7OTBy7BvflJzoFSStmBcdegy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 961000000, "overview": "Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with brave Will Turner and feisty Elizabeth Swann. And what of Jack Sparrow? Nothing is as it seems.", "video": false, "id": 285, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: At World's End", "tagline": "At the end of the world, the adventure begins.", "vote_count": 1516, "homepage": "http://disney.go.com/disneypictures/pirates/", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449088", "adult": false, "backdrop_path": "/8ZgpAftUiYTU76IhUADITa3Ur9n.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Second Mate Productions", "id": 19936}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2007-05-19", "popularity": 1.63879798031733, "original_title": "Pirates of the Caribbean: At World's End", "budget": 300000000, "cast": [{"name": "Johnny Depp", "character": "Jack Sparrow", "id": 85, "credit_id": "52fe4232c3a36847f800b50d", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Will Turner", "id": 114, "credit_id": "52fe4232c3a36847f800b511", "cast_id": 5, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Elizabeth Swann", "id": 116, "credit_id": "52fe4232c3a36847f800b515", "cast_id": 6, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Chow Yun-Fat", "character": "Captain Sao Feng", "id": 1619, "credit_id": "52fe4232c3a36847f800b525", "cast_id": 10, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 3}, {"name": "Geoffrey Rush", "character": "Barbossa", "id": 118, "credit_id": "52fe4232c3a36847f800b519", "cast_id": 7, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "Governor Weatherby Swann", "id": 378, "credit_id": "52fe4232c3a36847f800b51d", "cast_id": 8, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Bill Nighy", "character": "Davy Jones", "id": 2440, "credit_id": "52fe4232c3a36847f800b521", "cast_id": 9, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 6}, {"name": "Tom Hollander", "character": "Lord Cutler Beckett", "id": 2441, "credit_id": "52fe4232c3a36847f800b529", "cast_id": 11, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 7}, {"name": "Stellan Skarsg\u00e5rd", "character": "Bootstrap' Bill Turner", "id": 1640, "credit_id": "52fe4232c3a36847f800b52d", "cast_id": 12, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 8}, {"name": "Kevin McNally", "character": "Joshamee Gibbs", "id": 2449, "credit_id": "52fe4232c3a36847f800b531", "cast_id": 13, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 9}, {"name": "Jack Davenport", "character": "Admiral James Norrington", "id": 1709, "credit_id": "52fe4232c3a36847f800b535", "cast_id": 14, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 10}, {"name": "Mackenzie Crook", "character": "Ragetti", "id": 1711, "credit_id": "52fe4232c3a36847f800b539", "cast_id": 15, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 11}, {"name": "Lee Arenberg", "character": "Pintel", "id": 1710, "credit_id": "52fe4232c3a36847f800b53d", "cast_id": 16, "profile_path": "/ziQH86o2BInPEUF7VW0gYte35Tw.jpg", "order": 12}, {"name": "Martin Klebba", "character": "Marty", "id": 4030, "credit_id": "52fe4232c3a36847f800b541", "cast_id": 17, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 13}, {"name": "Greg Ellis", "character": "Lieutenant Groves", "id": 4031, "credit_id": "52fe4232c3a36847f800b545", "cast_id": 18, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 14}, {"name": "Naomie Harris", "character": "Tia Dalma", "id": 2038, "credit_id": "52fe4232c3a36847f800b549", "cast_id": 19, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 15}, {"name": "Keith Richards", "character": "Teague Sparrow", "id": 1430, "credit_id": "52fe4232c3a36847f800b5b3", "cast_id": 37, "profile_path": "/uGF4AHKqaTI8K98n1lzqtRfv4N2.jpg", "order": 16}, {"name": "Takayo Fischer", "character": "Mistress Ching", "id": 33500, "credit_id": "52fe4232c3a36847f800b5bd", "cast_id": 39, "profile_path": "/gNIFc8rWnFzplkisEonefyxjmG1.jpg", "order": 17}, {"name": "David Meunier", "character": "Lieutenant Greitzer", "id": 1224149, "credit_id": "52fe4232c3a36847f800b5c1", "cast_id": 40, "profile_path": "/bBCXP8UmTHjwqAJRO3Nk3UBftBt.jpg", "order": 18}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4232c3a36847f800b4fd", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.6, "runtime": 169}, "288": {"poster_path": "/fFoojluLQb7UDgR6VEdizbvmgrY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "High Noon is about a recently freed leader of a gang of bandits in the desert who is looking to get revenge on the Sheriff who put him in jail. A legendary western film from the Austrian director Fred Zinnemann.", "video": false, "id": 288, "genres": [{"id": 37, "name": "Western"}], "title": "High Noon", "tagline": "The story of a man who was too proud to run", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0044706", "adult": false, "backdrop_path": "/6AH0BpiEaLz3NMTaBhqgHdA4YJ6.jpg", "production_companies": [{"name": "Stanley Kramer Productions", "id": 893}, {"name": "United Artists", "id": 60}], "release_date": "1952-07-24", "popularity": 0.5106276345046, "original_title": "High Noon", "budget": 750000, "cast": [{"name": "Gary Cooper", "character": "Marshal Will Kane", "id": 4068, "credit_id": "52fe4232c3a36847f800b767", "cast_id": 4, "profile_path": "/zVUK71x5IoBaJ5H9dTgE2CRmLKy.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Amy Fowler Kane", "id": 4070, "credit_id": "52fe4232c3a36847f800b777", "cast_id": 8, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Thomas Mitchell", "character": "Mayor Jonas Henderson", "id": 3383, "credit_id": "52fe4232c3a36847f800b76b", "cast_id": 5, "profile_path": "/b0WAgmbZjTX99prApnSMdiYOhRK.jpg", "order": 2}, {"name": "Lloyd Bridges", "character": "Deputy Marshal Harvey Pell", "id": 2177, "credit_id": "52fe4232c3a36847f800b76f", "cast_id": 6, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 3}, {"name": "Katy Jurado", "character": "Helen Ram\u00edrez", "id": 4069, "credit_id": "52fe4232c3a36847f800b773", "cast_id": 7, "profile_path": "/3BtMJxRUWLuUFUPn3bNHsPTo6th.jpg", "order": 4}, {"name": "Otto Kruger", "character": "Judge Percy Mettrick", "id": 4071, "credit_id": "52fe4232c3a36847f800b77b", "cast_id": 9, "profile_path": "/i7S1SCl57AapOJ70S24HOjkHarZ.jpg", "order": 5}, {"name": "Lon Chaney, Jr.", "character": "Martin Howe", "id": 4072, "credit_id": "52fe4232c3a36847f800b77f", "cast_id": 10, "profile_path": "/jcMINaWTeyY8FyRE5pnk2ZkWPw7.jpg", "order": 6}, {"name": "Harry Morgan", "character": "Sam Fuller", "id": 4073, "credit_id": "52fe4232c3a36847f800b783", "cast_id": 11, "profile_path": "/xQlBwecEQEz84k7jDLPGi6FqxRJ.jpg", "order": 7}, {"name": "Ian MacDonald", "character": "Frank Miller", "id": 4074, "credit_id": "52fe4232c3a36847f800b787", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Eve McVeagh", "character": "Mildred Fuller", "id": 4075, "credit_id": "52fe4232c3a36847f800b78b", "cast_id": 13, "profile_path": "/y41JZxTVZDOtKBXk9uA7zOFdtzO.jpg", "order": 9}, {"name": "Morgan Farley", "character": "Dr. Mahin, minister", "id": 4076, "credit_id": "52fe4232c3a36847f800b78f", "cast_id": 14, "profile_path": "/94yu6kY3TVj60OV7gUxTFvFUJDD.jpg", "order": 10}, {"name": "Harry Shannon", "character": "Cooper", "id": 4077, "credit_id": "52fe4232c3a36847f800b793", "cast_id": 15, "profile_path": "/7Js8vAjzKzM5eXcu6THDzWM7j5P.jpg", "order": 11}, {"name": "Lee Van Cleef", "character": "Jack Colby", "id": 4078, "credit_id": "52fe4232c3a36847f800b797", "cast_id": 16, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 12}, {"name": "Robert J. Wilke", "character": "Jim Pierce", "id": 2096, "credit_id": "52fe4232c3a36847f800b79b", "cast_id": 17, "profile_path": "/3VL03wavl7fUGuVtayjft9eYAua.jpg", "order": 13}, {"name": "Sheb Wooley", "character": "Ben Miller", "id": 4080, "credit_id": "52fe4232c3a36847f800b79f", "cast_id": 18, "profile_path": "/wngAcuEA3AslnYxoJSonPcaLJ3f.jpg", "order": 14}, {"name": "Jack Elam", "character": "Charlie - Drunk in Jail (uncredited)", "id": 4965, "credit_id": "52fe4233c3a36847f800b7e5", "cast_id": 30, "profile_path": "/viH168AYhlsKm4jCT0zrWWAFr94.jpg", "order": 15}, {"name": "John Doucette", "character": "Trumbull (uncredited)", "id": 34130, "credit_id": "52fe4233c3a36847f800b7e9", "cast_id": 31, "profile_path": "/2J6UfUe9nNkd6wjtIF5Yp3ilnZ8.jpg", "order": 16}, {"name": "Ted Stanhope", "character": "Station Master (uncredited)", "id": 137203, "credit_id": "52fe4233c3a36847f800b7ed", "cast_id": 32, "profile_path": "/w1YfFPc56XQIPYsRtCg9nCUqlPJ.jpg", "order": 17}], "directors": [{"name": "Fred Zinnemann", "department": "Directing", "job": "Director", "credit_id": "52fe4232c3a36847f800b757", "profile_path": "/1761Z9Javs1OTYFmrdE4Hy7HDVw.jpg", "id": 4065}], "vote_average": 7.0, "runtime": 85}, "289": {"poster_path": "/sm1QVZu5RKe1vXVHZooo4SZyHMx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10462500, "overview": "Casablanca is a classic and one of the most revered films of all time. Starring Humphrey Bogart and Ingrid Bergman in a love triangle in the city of Casablanca which is a refuge for many fleeing foreigners looking for a new life during the war. Political romance with a backdrop of war conflict between democracy and totalitarianism. A landmark in film history.", "video": false, "id": 289, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Casablanca", "tagline": "They had a date with fate in Casablanca!", "vote_count": 429, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0034583", "adult": false, "backdrop_path": "/nhHsH7qUySVTY57mxf231xO7Fga.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1942-11-26", "popularity": 1.30983983134836, "original_title": "Casablanca", "budget": 950000, "cast": [{"name": "Humphrey Bogart", "character": "Rick Blaine", "id": 4110, "credit_id": "52fe4233c3a36847f800b83f", "cast_id": 2, "profile_path": "/pxJrZluJHhbWRo2QXAG99FvXUi7.jpg", "order": 0}, {"name": "Ingrid Bergman", "character": "Ilsa Lund", "id": 4111, "credit_id": "52fe4233c3a36847f800b843", "cast_id": 3, "profile_path": "/iwU6mXNKj6VFvsGIEnNKu4UbXUL.jpg", "order": 1}, {"name": "Paul Henreid", "character": "Victor Laszlo", "id": 4112, "credit_id": "52fe4233c3a36847f800b847", "cast_id": 4, "profile_path": "/eWRFO86IttlVeHAlrWLyig8pm2m.jpg", "order": 2}, {"name": "Claude Rains", "character": "Capt. Renault", "id": 4113, "credit_id": "52fe4233c3a36847f800b84b", "cast_id": 5, "profile_path": "/Ai8dxQY9p90n3YO9o3J6iEqxZ04.jpg", "order": 3}, {"name": "Conrad Veidt", "character": "Maj. Strasser", "id": 3001, "credit_id": "52fe4233c3a36847f800b84f", "cast_id": 6, "profile_path": "/dfOSkNseKWva6mNItPMvM1RB05E.jpg", "order": 4}, {"name": "Sydney Greenstreet", "character": "Signor Ferrari", "id": 4114, "credit_id": "52fe4233c3a36847f800b853", "cast_id": 7, "profile_path": "/tXSc0cmUmsMqbR3A3xbevNfp3N7.jpg", "order": 5}, {"name": "Peter Lorre", "character": "Ugarte", "id": 2094, "credit_id": "52fe4233c3a36847f800b857", "cast_id": 8, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 6}, {"name": "Madeleine Lebeau", "character": "Yvonne", "id": 4116, "credit_id": "52fe4233c3a36847f800b85b", "cast_id": 9, "profile_path": "/tYUnGiQEBJLG1OfeqHvdcANgm2I.jpg", "order": 7}, {"name": "Dooley Wilson", "character": "Sam", "id": 4117, "credit_id": "52fe4233c3a36847f800b85f", "cast_id": 10, "profile_path": "/vAeLJujyXIn3fUve3foqpU6O18X.jpg", "order": 8}, {"name": "Joy Page", "character": "Annina Brandel", "id": 4118, "credit_id": "52fe4233c3a36847f800b863", "cast_id": 11, "profile_path": "/n7ZgvALY8nlQSXJkSozgqsWV95M.jpg", "order": 9}, {"name": "John Qualen", "character": "Berger", "id": 4119, "credit_id": "52fe4233c3a36847f800b867", "cast_id": 12, "profile_path": "/nbXFHZo4TUpNnFGnADXfPwQIvEn.jpg", "order": 10}, {"name": "Leonid Kinskey", "character": "Sascha", "id": 4120, "credit_id": "52fe4233c3a36847f800b86b", "cast_id": 13, "profile_path": "/fM1pWZWlFdJZjyEOKSILNjbTYFn.jpg", "order": 11}, {"name": "Curt Bois", "character": "Pickpocket", "id": 2313, "credit_id": "52fe4233c3a36847f800b86f", "cast_id": 14, "profile_path": "/uw8SYxoA546jt0Or2pAFJbkJR1B.jpg", "order": 12}, {"name": "Marcel Dalio", "character": "Emil", "id": 4121, "credit_id": "52fe4233c3a36847f800b873", "cast_id": 15, "profile_path": "/1lrGhscbhXoqVHOAI8Iv1hNQMAd.jpg", "order": 13}, {"name": "Helmut Dantine", "character": "Jan Brandel", "id": 4122, "credit_id": "52fe4233c3a36847f800b877", "cast_id": 16, "profile_path": "/a8wCT6fpQMxZ855rIrkItrtUQ1B.jpg", "order": 14}, {"name": "Hans Heinrich von Twardowski", "character": "German officer with Yvonne", "id": 3007, "credit_id": "52fe4233c3a36847f800b8e1", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "S.Z. Sakall", "character": "Carl", "id": 94110, "credit_id": "52fe4233c3a36847f800b8e5", "cast_id": 35, "profile_path": "/9dV6JB48tQKlXUzeqyI12r0xrD8.jpg", "order": 16}, {"name": "Norma Varden", "character": "Wife of Pickpocketed Englishman (uncredited)", "id": 10926, "credit_id": "53a183a70e0a26653a002fe8", "cast_id": 36, "profile_path": "/2Ypt67es6XciWAyihkcG2MSjUzT.jpg", "order": 17}, {"name": "Gino Corrado", "character": "Waiter at Rick's (uncredited)", "id": 9096, "credit_id": "53a183da0e0a26654b002f7b", "cast_id": 37, "profile_path": "/s9WKkWJFUNgbPhczUP4sD0OA4I4.jpg", "order": 18}, {"name": "Enrique Acosta", "character": "Guest at Rick's (uncredited)", "id": 1331750, "credit_id": "53a1b40bc3a3687ba6002f78", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Ed Agresti", "character": "Bar Patron (uncredited)", "id": 121320, "credit_id": "53a1b428c3a3687bb000309d", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Louis V. Arco", "character": "Refugee at Rick's (uncredited)", "id": 1224787, "credit_id": "53a1b445c3a3687bab003073", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Frank Arnold", "character": "Overseer (uncredited)", "id": 1331753, "credit_id": "53a1b4aec3a3685b2c001752", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Leon Belasco", "character": "Dealer at Rick's (uncredited)", "id": 95054, "credit_id": "53a1b4cec3a3687b9b002fa3", "cast_id": 42, "profile_path": "/f5zHwIwjSqsyWuia82cDUcocd6N.jpg", "order": 23}, {"name": "Nino Bellini", "character": "Gendarme (uncredited)", "id": 1331754, "credit_id": "53a1b4e0c3a3687b98002f20", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Oliver Blake", "character": "Waiter at the Blue Parrot (uncredited)", "id": 114402, "credit_id": "53a1b516c3a3687b9e0030b4", "cast_id": 45, "profile_path": "/68AmFqZCnccFJzzSh9S8hp7jRZr.jpg", "order": 26}, {"name": "Monte Blue", "character": "American (uncredited)", "id": 90074, "credit_id": "53a1b530c3a3687ba6002fb4", "cast_id": 46, "profile_path": "/u5eHdofzXRQu08r0YFS5LwXoc3E.jpg", "order": 27}, {"name": "Eugene Borden", "character": "Policeman (uncredited)", "id": 120545, "credit_id": "53a1b54bc3a3685b2c00178e", "cast_id": 47, "profile_path": "/2Wa7jN88fwPQyQ3IIoCmq88iif1.jpg", "order": 28}, {"name": "Dick Botiller", "character": "Native Officer (uncredited)", "id": 981271, "credit_id": "53a1b55ec3a3687bbc002e69", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Maurice Brierre", "character": "Baccarat Dealer at Rick's (uncredited)", "id": 1044381, "credit_id": "53a1b578c3a3687bb000310c", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Sebastian Cabot", "character": "Bearded man in street watching plane in flight to Lisbon. (uncredited)", "id": 21877, "credit_id": "53a1b593c3a3687ba6002fe7", "cast_id": 50, "profile_path": "/x4xosGUCYnuUQntxgbcZryWaKH6.jpg", "order": 31}, {"name": "Anita Camargo", "character": "Woman Companion (uncredited)", "id": 1276330, "credit_id": "53a1b5aac3a3687b98002f6f", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "George M. Carleton", "character": "American (uncredited)", "id": 120066, "credit_id": "53a1b5bdc3a3687b98002f76", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Spencer Chan", "character": "Guest at Rick's (uncredited)", "id": 1047407, "credit_id": "53a1b5d2c3a3687b9b003004", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Melie Chang", "character": "Oriental at Rick's (uncredited)", "id": 1331756, "credit_id": "53a1b5f2c3a3687bbc002e9c", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Franco Corsaro", "character": "French Police Officer (uncredited)", "id": 1228104, "credit_id": "53a1b60fc3a3685b2c0017db", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Adrienne D'Ambricourt", "character": "Concierge (uncredited)", "id": 120778, "credit_id": "53a1b629c3a3687b98002f9d", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Jean De Briac", "character": "Orderly (uncredited)", "id": 588565, "credit_id": "53a1b64fc3a3687bb0003154", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "George Dee", "character": "Lt. Casselle (uncredited)", "id": 1331757, "credit_id": "53a1b665c3a3687b98002fac", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Jean Del Val", "character": "Police Officer (uncredited)", "id": 22099, "credit_id": "53a1b67ec3a3687bab003122", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Carl Deloro", "character": "Arab Guest with Fez (uncredited)", "id": 1331758, "credit_id": "53a1b69dc3a3685b2c0017ee", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Joseph DeVillard", "character": "Moroccan (uncredited)", "id": 1263504, "credit_id": "53a1b6b2c3a3687b98002fb5", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Arthur Dulac", "character": "News Vendor (uncredited)", "id": 1331759, "credit_id": "53a1b6cac3a3687bbc002ed7", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "William Edmunds", "character": "Second Contact Man at Rick's (uncredited)", "id": 95967, "credit_id": "53a1b70fc3a3687bbc002ee0", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Herbert Evans", "character": "Englishman Questioning Casino's Honesty (uncredited)", "id": 121095, "credit_id": "53a1b73dc3a3685b2c001807", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Fred Farrell", "character": "Singing Frenchman (uncredited)", "id": 121331, "credit_id": "53a1b752c3a3687bb0003171", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Adolph Faylauer", "character": "Gambler at Rick's (uncredited)", "id": 121322, "credit_id": "53a1b768c3a3687bbc002ef0", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "O.K. Ford", "character": "Conspirator (uncredited)", "id": 1331760, "credit_id": "53a1b779c3a3687bb000317c", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Martin Garralaga", "character": "Headwaiter at Rick's (uncredited)", "id": 94401, "credit_id": "53a1b78ec3a368417a00000d", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Gregory Gaye", "character": "German Banker Refused by Rick (uncredited)", "id": 19551, "credit_id": "53a1b7b9c3a368418300000f", "cast_id": 69, "profile_path": "/4vbSFPENXcaF2yBRB8FpjHiy6ou.jpg", "order": 50}, {"name": "Gregory Golubeff", "character": "Cashier at Rick's (uncredited)", "id": 1331761, "credit_id": "53a1b7cfc3a368417d000012", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Ilka Gr\u00fcning", "character": "Mrs. Leuchtag - Carl's Immigrating Friend (uncredited)", "id": 100898, "credit_id": "53a1b7ecc3a3684189000014", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Creighton Hale", "character": "Customer (uncredited)", "id": 97981, "credit_id": "53a1b80dc3a368418300001a", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Winifred Harris", "character": "Englishwoman (uncredited)", "id": 977271, "credit_id": "53a1b81ec3a368418000001e", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Jamiel Hasson", "character": "Muezzini (uncredited)", "id": 1331762, "credit_id": "53a1b834c3a368417a00002d", "cast_id": 74, "profile_path": null, "order": 55}, {"name": "Arthur Stuart Hull", "character": "Elderly Admirer (uncredited)", "id": 1144743, "credit_id": "53a1b854c3a368417a000034", "cast_id": 75, "profile_path": null, "order": 56}, {"name": "Olaf Hytten", "character": "Pickpocketed Prosperous Man (uncredited)", "id": 32192, "credit_id": "53a1b8c0c3a3684189000032", "cast_id": 76, "profile_path": "/uCuFf8QMmSerIkvFlveQzFg7lr7.jpg", "order": 57}, {"name": "Paul Irving", "character": "Prosperous Tourist (uncredited)", "id": 1331763, "credit_id": "53a1b8dbc3a3684189000035", "cast_id": 77, "profile_path": null, "order": 58}, {"name": "Charles La Torre", "character": "Italian Officer Tonnelli (uncredited)", "id": 125808, "credit_id": "53a1b8f5c3a3684174000030", "cast_id": 78, "profile_path": null, "order": 59}, {"name": "George J. Lewis", "character": "Haggling Arab Monkey Seller (uncredited)", "id": 120061, "credit_id": "53a1b911c3a3684189000039", "cast_id": 79, "profile_path": "/mkHEoLawjJEqi053JrVuAa9tQBM.jpg", "order": 60}, {"name": "Manuel Lopez", "character": "Policeman (uncredited)", "id": 1331764, "credit_id": "53a1b9fa0e0a266ffa00006b", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Jacques Lory", "character": "Moor Buying Diamonds (uncredited)", "id": 121330, "credit_id": "53a1ba140e0a266fef000074", "cast_id": 82, "profile_path": null, "order": 63}, {"name": "Lou Marcelle", "character": "Narrator (voice) (uncredited)", "id": 1331765, "credit_id": "53a1ba2d0e0a266ff3000067", "cast_id": 83, "profile_path": null, "order": 64}, {"name": "Michael Mark", "character": "Vendor (uncredited)", "id": 1331766, "credit_id": "53a1ba670e0a266fe600006e", "cast_id": 84, "profile_path": null, "order": 65}, {"name": "Tony Martelli", "character": "Bartender (uncredited)", "id": 1331767, "credit_id": "53a1ba7f0e0a266fef000081", "cast_id": 85, "profile_path": null, "order": 66}, {"name": "George Meeker", "character": "Rick's Friend (uncredited)", "id": 99330, "credit_id": "53a1bab70e0a266ffe000090", "cast_id": 86, "profile_path": "/ikKH7sIl6XaOcUdGLzx7XDpzr6O.jpg", "order": 67}, {"name": "Lal Chand Mehra", "character": "Policeman (uncredited)", "id": 32195, "credit_id": "53a1bad20e0a266ff700008e", "cast_id": 87, "profile_path": null, "order": 68}, {"name": "Hercules Mendez", "character": "Arab Guest with Fez (uncredited)", "id": 1331768, "credit_id": "53a1bae30e0a266fef000096", "cast_id": 88, "profile_path": null, "order": 69}, {"name": "Louis Mercier", "character": "Conspirator (uncredited)", "id": 120700, "credit_id": "53a1bb0a0e0a266ffe00009b", "cast_id": 89, "profile_path": null, "order": 70}, {"name": "Torben Meyer", "character": "Dutch Banker at Cafe Table (uncredited)", "id": 12153, "credit_id": "53a1bb200e0a266ffa00009a", "cast_id": 90, "profile_path": null, "order": 71}, {"name": "Alberto Morin", "character": "French Officer Insulting Yvonne (uncredited)", "id": 70939, "credit_id": "53a1bb390e0a266fef0000a1", "cast_id": 91, "profile_path": "/oT6SkjHlUpOxOFpzJwBdbWi2eNM.jpg", "order": 72}, {"name": "Leo Mostovoy", "character": "Fydor (uncredited)", "id": 1331769, "credit_id": "53a1bb4c0e0a266fec0000a2", "cast_id": 92, "profile_path": null, "order": 73}, {"name": "Corinna Mura", "character": "Singer with Guitar (uncredited)", "id": 82803, "credit_id": "53a1bb610e0a266ffe0000a1", "cast_id": 93, "profile_path": null, "order": 74}, {"name": "Barry Norton", "character": "Gambler at Rick's (uncredited)", "id": 148852, "credit_id": "53a1bb820e0a266ff700009d", "cast_id": 94, "profile_path": null, "order": 75}, {"name": "Lotte Palfi Andor", "character": "Woman Selling Her Diamonds (uncredited)", "id": 94325, "credit_id": "53a1bb970e0a266ffa0000a8", "cast_id": 95, "profile_path": null, "order": 76}, {"name": "Paul Panzer", "character": "Paul - Waiter at Rick's (uncredited)", "id": 931793, "credit_id": "53a1bbb30e0a266fe600009d", "cast_id": 96, "profile_path": null, "order": 77}, {"name": "Manuel Par\u00eds", "character": "Guest at Rick's (uncredited)", "id": 1331770, "credit_id": "53a1bbf20e0a266fe60000a4", "cast_id": 97, "profile_path": null, "order": 78}, {"name": "Alexander Pollard", "character": "Croupier (uncredited)", "id": 1278060, "credit_id": "53a1bc0e0e0a266ff30000a7", "cast_id": 98, "profile_path": null, "order": 79}, {"name": "Frank Puglia", "character": "Arab Vendor (uncredited)", "id": 89691, "credit_id": "53a1bc410e0a266fec0000db", "cast_id": 100, "profile_path": "/cC89EI595bAz4SPIE1JKIOkdVU.jpg", "order": 81}, {"name": "Georges Renavent", "character": "Conspirator (uncredited)", "id": 120702, "credit_id": "53a1bc560e0a266fe60000d4", "cast_id": 101, "profile_path": null, "order": 82}, {"name": "Dewey Robinson", "character": "Bouncer at Rick's (uncredited)", "id": 120046, "credit_id": "53a1bc700e0a266ffa0000df", "cast_id": 102, "profile_path": "/7jbd6WBzj7mgNqTVqSraifT09UE.jpg", "order": 83}, {"name": "Richard Ryen", "character": "Col. Heinz - Strasser's Aide (uncredited)", "id": 33074, "credit_id": "53a1bd1dc3a36841830000f3", "cast_id": 104, "profile_path": null, "order": 85}, {"name": "Dan Seymour", "character": "Abdul (uncredited)", "id": 85943, "credit_id": "53a1bd52c3a36841890000d8", "cast_id": 105, "profile_path": null, "order": 86}, {"name": "Lester Sharpe", "character": "Refugee (uncredited)", "id": 975881, "credit_id": "53a1bd65c3a36841740000db", "cast_id": 106, "profile_path": null, "order": 87}, {"name": "Dina Smirnova", "character": "Woman Customer (uncredited)", "id": 1331774, "credit_id": "53a1bd75c3a36841890000e8", "cast_id": 107, "profile_path": null, "order": 88}, {"name": "Gerald Oliver Smith", "character": "Pickpocketed Englishman (uncredited)", "id": 1039630, "credit_id": "53a1bd89c3a36841860000e6", "cast_id": 108, "profile_path": null, "order": 89}, {"name": "George Sorel", "character": "Native Officer (uncredited)", "id": 1331775, "credit_id": "53a1bdc2c3a36841890000fc", "cast_id": 109, "profile_path": null, "order": 90}, {"name": "Geoffrey Steele", "character": "Customer (uncredited)", "id": 388490, "credit_id": "53a1bddec3a36841860000ee", "cast_id": 110, "profile_path": null, "order": 91}, {"name": "Ludwig St\u00f6ssel", "character": "Mr. Leuchtag (uncredited)", "id": 31209, "credit_id": "53a1bdf6c3a36841800000f2", "cast_id": 111, "profile_path": "/7qFEZlL8vkrm4E3aJZy1rVWVK9m.jpg", "order": 92}, {"name": "Mike Tellegen", "character": "Gambler (uncredited)", "id": 1132779, "credit_id": "53a1be14c3a36841860000fa", "cast_id": 112, "profile_path": null, "order": 93}, {"name": "Rafael Trujillo", "character": "Man Turning Propeller at Airport (uncredited)", "id": 1331777, "credit_id": "53a1be46c3a368417a0000f4", "cast_id": 113, "profile_path": null, "order": 94}, {"name": "Jacques Vanaire", "character": "Frenchman (uncredited)", "id": 1015446, "credit_id": "53a1be5cc3a368417d00012f", "cast_id": 114, "profile_path": null, "order": 95}, {"name": "Ellinor Vanderveer", "character": "Woman Gambler at Rick's Next to Croupier (uncredited)", "id": 1269196, "credit_id": "53a1be70c3a368417a000115", "cast_id": 115, "profile_path": null, "order": 96}, {"name": "Ellinor Vanderveer", "character": "Emile - Waiter (uncredited)", "id": 1269196, "credit_id": "53a1bea7c3a368417a000121", "cast_id": 116, "profile_path": null, "order": 97}, {"name": "Jack Wise", "character": "Waiter (uncredited)", "id": 1331779, "credit_id": "53a1bebec3a3684183000156", "cast_id": 117, "profile_path": null, "order": 98}, {"name": "Wolfgang Zilzer", "character": "Man with Expired Papers (uncredited)", "id": 29124, "credit_id": "53a1bed4c3a368418000012f", "cast_id": 118, "profile_path": null, "order": 99}, {"name": "Trude Berliner", "character": "Baccarat Player at Rick's (uncredited)", "id": 590709, "credit_id": "53e5fdea0e0a2628c700185e", "cast_id": 119, "profile_path": null, "order": 100}, {"name": "Paul Porcasi", "character": "Native Introducing Ferrari (uncredited)", "id": 115770, "credit_id": "549d5442c3a3682f23005b18", "cast_id": 120, "profile_path": null, "order": 101}], "directors": [{"name": "Michael Curtiz", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800b83b", "profile_path": "/6I1ChzgQvAV3RR48K40hdi3okFX.jpg", "id": 4109}], "vote_average": 7.4, "runtime": 102}, "290": {"poster_path": "/e0YvBTPwIL6Jb29glF3LE9n8GH2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6153939, "overview": "A renowned New York playwright is enticed to California to write for the movies and discovers the hellish truth of Hollywood.", "video": false, "id": 290, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Barton Fink", "tagline": "There's only one thing stranger than what's going on inside his head. What's going on outside.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101410", "adult": false, "backdrop_path": "/kptmPB0rwfLqf1yQPCWewCoyiiq.jpg", "production_companies": [{"name": "Circle Films", "id": 11273}, {"name": "Working Title Films", "id": 10163}], "release_date": "1991-08-01", "popularity": 0.869729601059424, "original_title": "Barton Fink", "budget": 9000000, "cast": [{"name": "John Turturro", "character": "Barton Fink", "id": 1241, "credit_id": "52fe4233c3a36847f800b965", "cast_id": 13, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 0}, {"name": "John Goodman", "character": "Charlie Meadows", "id": 1230, "credit_id": "52fe4233c3a36847f800b969", "cast_id": 14, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Judy Davis", "character": "Audrey Taylor", "id": 351, "credit_id": "52fe4233c3a36847f800b96d", "cast_id": 15, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 2}, {"name": "Michael Lerner", "character": "Jack Lipnick", "id": 4250, "credit_id": "52fe4233c3a36847f800b971", "cast_id": 16, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 3}, {"name": "John Mahoney", "character": "W.P. Mayhew", "id": 4251, "credit_id": "52fe4233c3a36847f800b975", "cast_id": 17, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 4}, {"name": "Jon Polito", "character": "Lou Breeze", "id": 4253, "credit_id": "52fe4233c3a36847f800b979", "cast_id": 18, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 5}, {"name": "Steve Buscemi", "character": "Chet", "id": 884, "credit_id": "52fe4233c3a36847f800b97d", "cast_id": 19, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 6}, {"name": "David Warrilow", "character": "Garland Stanford", "id": 4254, "credit_id": "52fe4233c3a36847f800b981", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Richard Portnow", "character": "Detective Mastrionotti", "id": 4255, "credit_id": "52fe4233c3a36847f800b985", "cast_id": 21, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 8}, {"name": "Christopher Murney", "character": "Detective Deutsch", "id": 4256, "credit_id": "52fe4233c3a36847f800b989", "cast_id": 22, "profile_path": "/vY73eTjQcvArvLzsxousmIgk1CP.jpg", "order": 9}, {"name": "I.M. Hobson", "character": "Derek", "id": 4257, "credit_id": "52fe4233c3a36847f800b98d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Harry Bugin", "character": "Pete", "id": 4510, "credit_id": "52fe4233c3a36847f800b991", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Lance Davis", "character": "Richard St. Claire", "id": 157607, "credit_id": "52fe4233c3a36847f800b9c5", "cast_id": 33, "profile_path": null, "order": 12}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800b92b", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800b931", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.3, "runtime": 116}, "49444": {"poster_path": "/9wCrh57WO3mPmn1hWnJRcvdFtIb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 570569112, "overview": "Po is now living his dream as The Dragon Warior, protecting the Valley of Peace alongside his friends and fellow kung fu masters, The Furious Five - Tigress, Crane, Mantis, Viper and Monkey. But Po\u2019s new life of awesomeness is threatened by the emergence of a formidable villain, who plans to use a secret, unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.", "video": false, "id": 49444, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Kung Fu Panda 2", "tagline": "Prepare for the Year of Awesomeness!", "vote_count": 681, "homepage": "http://www.kungfupanda.com/", "belongs_to_collection": {"backdrop_path": "/uDosHOFFWtF5YteBRygHALFqLw2.jpg", "poster_path": "/2QT6PuYXY0T2Ry9rX0JKQYTrbwx.jpg", "id": 77816, "name": "Kung Fu Panda Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1302011", "adult": false, "backdrop_path": "/eyiE1vuizMKVu8MoZkg2xsramFl.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2011-05-25", "popularity": 1.71575853844773, "original_title": "Kung Fu Panda 2", "budget": 150000000, "cast": [{"name": "Jack Black", "character": "Po (voice)", "id": 70851, "credit_id": "52fe4795c3a36847f813d913", "cast_id": 5, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Tigress (voice)", "id": 11701, "credit_id": "52fe4795c3a36847f813d90b", "cast_id": 3, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Shifu (voice)", "id": 4483, "credit_id": "52fe4795c3a36847f813d91b", "cast_id": 7, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Gary Oldman", "character": "Lord Shen (voice)", "id": 64, "credit_id": "52fe4795c3a36847f813d90f", "cast_id": 4, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 3}, {"name": "Jackie Chan", "character": "Monkey (voice)", "id": 18897, "credit_id": "52fe4795c3a36847f813d91f", "cast_id": 8, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 4}, {"name": "Seth Rogen", "character": "Mantis (voice)", "id": 19274, "credit_id": "52fe4795c3a36847f813d907", "cast_id": 2, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 5}, {"name": "Lucy Liu", "character": "Viper (voice)", "id": 140, "credit_id": "52fe4795c3a36847f813d923", "cast_id": 9, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 6}, {"name": "David Cross", "character": "Crane (voice)", "id": 212, "credit_id": "52fe4795c3a36847f813d917", "cast_id": 6, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 7}, {"name": "James Hong", "character": "Mr. Ping (voice)", "id": 20904, "credit_id": "52fe4795c3a36847f813d92f", "cast_id": 12, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 8}, {"name": "Michelle Yeoh", "character": "The Soothsayer (voice)", "id": 1620, "credit_id": "52fe4795c3a36847f813d92b", "cast_id": 11, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 9}, {"name": "Danny McBride", "character": "Wolf Boss (voice)", "id": 62862, "credit_id": "543c1fc90e0a26499e0062b0", "cast_id": 19, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 10}, {"name": "Dennis Haysbert", "character": "Master Storming Ox (voice)", "id": 352, "credit_id": "52fe4795c3a36847f813d94b", "cast_id": 17, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 11}, {"name": "Jean-Claude Van Damme", "character": "Master Croc (voice)", "id": 15111, "credit_id": "52fe4795c3a36847f813d927", "cast_id": 10, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 12}, {"name": "Victor Garber", "character": "Master Thundering Rhino (voice)", "id": 8536, "credit_id": "543c201cc3a368199c005ecf", "cast_id": 20, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 13}, {"name": "Mike Bell", "character": "Gorilla Guard 1 (voice) (as Michael Patrick Bell)", "id": 346, "credit_id": "55293ad0925141034600129d", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Jason Bertsch", "character": "Antelope Driver (voice)", "id": 1453780, "credit_id": "552be2bcc3a36830d40034e1", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Michael DeMaio", "character": "Happy Bunny (voice)", "id": 1453781, "credit_id": "552be2d1c3a36858d6006531", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Shane Glick", "character": "Wolf Soldier 4 (voice)", "id": 1453782, "credit_id": "552be2e6c3a3681f5c00736d", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Lena Golia", "character": "Pig Fan / Bunny (voice)", "id": 1453784, "credit_id": "552be2fd925141288b0029f1", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "April Hong", "character": "Mop Bunny (voice)", "id": 1453786, "credit_id": "552be327c3a3681f5c007385", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Joseph Izzo", "character": "Wolf Soldier 1 (voice)", "id": 1453790, "credit_id": "552be3b7c3a36859cf007771", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Alexandra Gold Jourden", "character": "Bunny Fan (voice) (as Alexandra Jourden)", "id": 38668, "credit_id": "552be3fbc3a36877de000010", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Stephen Kearin", "character": "Musician Pig / Awesome Pig (voice)", "id": 1448984, "credit_id": "552be41f92514121d6003ff4", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Liam Knight", "character": "Baby Po (voice)", "id": 1453793, "credit_id": "552be443c3a36843cd000b96", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Paul Mazursky", "character": "Musician Bunny (voice)", "id": 47773, "credit_id": "552be4acc3a36877de000037", "cast_id": 32, "profile_path": "/6YUp0e6fM0OmrB6STNY1ESwHcdG.jpg", "order": 25}, {"name": "Dan O'Connor", "character": "Stain Pig / Wolf Soldier 2 (voice)", "id": 1232325, "credit_id": "552be4f19251417c290025d5", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Jeremy Shipp", "character": "Dumpling Bunny (voice)", "id": 1448987, "credit_id": "552be506c3a36877de000054", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Maury Sterling", "character": "Wolf Soldier 3 (voice)", "id": 65726, "credit_id": "552be5689251413851000c3f", "cast_id": 36, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 29}, {"name": "Fred Tatasciore", "character": "Panda Dad / Gorilla Guard 2 (voice)", "id": 60279, "credit_id": "552be589925141265f004b5e", "cast_id": 37, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 30}, {"name": "Lauren Tom", "character": "Market Sheep (voice)", "id": 15100, "credit_id": "552be5a9c3a36859cf0077f5", "cast_id": 38, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 31}, {"name": "Romy Rosemont", "character": "Pig Mother (voice)", "id": 156342, "credit_id": "552be712c3a36843cd000c64", "cast_id": 39, "profile_path": "/yFYavAUr15Q4Z3H4p7IoNmul9TM.jpg", "order": 32}, {"name": "Conrad Vernon", "character": "Boar (voice)", "id": 12080, "credit_id": "552be792925141288b002b25", "cast_id": 40, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 33}], "directors": [{"name": "Jennifer Yuh", "department": "Directing", "job": "Director", "credit_id": "52fe4795c3a36847f813d903", "profile_path": null, "id": 142312}], "vote_average": 6.6, "runtime": 91}, "293": {"poster_path": "/wMCEbmbblsi8cqet9FcqzxfDRCu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43440294, "overview": "A River Runs Through is a cinematographically stunning true story of Norman Maclean. The story follows Norman and his brother Paul through the experiences of life and growing up, and how their love of fly fishing keeps them together despite varying life circumstances in the untamed west of Montana in the 1920's.", "video": false, "id": 293, "genres": [{"id": 18, "name": "Drama"}], "title": "A River Runs Through It", "tagline": "The Story of an American Family.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105265", "adult": false, "backdrop_path": "/n4qxvNA6u7UpeYE5n93MVxjMHZi.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1992-10-09", "popularity": 0.539115021095121, "original_title": "A River Runs Through It", "budget": 0, "cast": [{"name": "Brad Pitt", "character": "Paul Maclean", "id": 287, "credit_id": "52fe4233c3a36847f800bb79", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Craig Sheffer", "character": "Norman Maclean", "id": 4138, "credit_id": "52fe4233c3a36847f800bb7d", "cast_id": 5, "profile_path": "/izAHksLjKOhOUMJmOPkwcNs6Kls.jpg", "order": 1}, {"name": "Tom Skerritt", "character": "Rev. Maclean", "id": 4139, "credit_id": "52fe4233c3a36847f800bb81", "cast_id": 6, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 2}, {"name": "Brenda Blethyn", "character": "Mrs. Maclean", "id": 4154, "credit_id": "52fe4233c3a36847f800bbf7", "cast_id": 26, "profile_path": "/wp0tIM7dGDmc9TOrm9fgL7JkzQQ.jpg", "order": 3}, {"name": "Edie McClurg", "character": "Mrs. Burns", "id": 3202, "credit_id": "52fe4233c3a36847f800bbfb", "cast_id": 27, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 4}, {"name": "Stephen Shellen", "character": "Neal Burns", "id": 4156, "credit_id": "52fe4233c3a36847f800bbff", "cast_id": 28, "profile_path": "/2noNmjpB9gKpKTUjRpM9uQX8qln.jpg", "order": 5}, {"name": "Vann Gravage", "character": "Young Paul", "id": 4157, "credit_id": "52fe4233c3a36847f800bc03", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Susan Traylor", "character": "Rawhide", "id": 4158, "credit_id": "52fe4233c3a36847f800bc07", "cast_id": 30, "profile_path": "/A3ZpoAui1ure4Nx2b83wUMI8lvv.jpg", "order": 7}, {"name": "Nicole Burdette", "character": "Mabel", "id": 4159, "credit_id": "52fe4233c3a36847f800bc0b", "cast_id": 31, "profile_path": "/uhbivJXrZ4y7n3S3BuBQnfk8uG0.jpg", "order": 8}, {"name": "Emily Lloyd", "character": "Jessie Burns", "id": 18017, "credit_id": "52fe4233c3a36847f800bc0f", "cast_id": 32, "profile_path": "/5RcJwRweZkGVcLFBBRk2LDVN1JR.jpg", "order": 9}, {"name": "William Hootkins", "character": "Murphy", "id": 663, "credit_id": "52fe4233c3a36847f800bc13", "cast_id": 33, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Joseph Gordon-Levitt", "character": "Young Norman", "id": 24045, "credit_id": "54f2896dc3a3681b71000d4c", "cast_id": 34, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 11}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800bb69", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.7, "runtime": 123}, "8487": {"poster_path": "/uqoluoavY8US144kUu9lb4mZpD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222104681, "overview": "Legless Southern inventor Dr. Arliss Loveless plans to rekindle the Civil War by assassinating President U.S. Grant. Only two men can stop him: gunfighter James West and master-of-disguise and inventor Artemus Gordon. The two must team up to thwart Loveless' plans.", "video": false, "id": 8487, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 37, "name": "Western"}], "title": "Wild Wild West", "tagline": "It's a whole new west.", "vote_count": 282, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120891", "adult": false, "backdrop_path": "/2SyU1SFcHyAuP0Af8mAsjpj0JkC.jpg", "production_companies": [{"name": "Todman, Simon, LeMasters Productions", "id": 2507}], "release_date": "1999-06-29", "popularity": 0.99141927237941, "original_title": "Wild Wild West", "budget": 170000000, "cast": [{"name": "Will Smith", "character": "Capt. James West", "id": 2888, "credit_id": "52fe44adc3a36847f80a3bdb", "cast_id": 25, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Kevin Kline", "character": "U.S. Marshal Artemus Gordon", "id": 8945, "credit_id": "52fe44adc3a36847f80a3b67", "cast_id": 2, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 1}, {"name": "Kenneth Branagh", "character": "Dr. Arliss Loveless", "id": 11181, "credit_id": "52fe44adc3a36847f80a3b6b", "cast_id": 3, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 2}, {"name": "Salma Hayek", "character": "Rita Escobar", "id": 3136, "credit_id": "52fe44adc3a36847f80a3b6f", "cast_id": 4, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 3}, {"name": "M. Emmet Walsh", "character": "Coleman", "id": 588, "credit_id": "52fe44adc3a36847f80a3b73", "cast_id": 5, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 4}, {"name": "Ted Levine", "character": "General 'Bloodbath' McGrath", "id": 15854, "credit_id": "52fe44adc3a36847f80a3b77", "cast_id": 6, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 5}, {"name": "Frederique van der Wal", "character": "Amazonia", "id": 55254, "credit_id": "52fe44adc3a36847f80a3b7b", "cast_id": 7, "profile_path": "/lFA4IynHv2KXo8bziJoNXocHQT1.jpg", "order": 6}, {"name": "Musetta Vander", "character": "Munitia", "id": 1475, "credit_id": "52fe44adc3a36847f80a3b7f", "cast_id": 8, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 7}, {"name": "Sofia Eng", "character": "Miss Lippenrieder", "id": 55255, "credit_id": "52fe44adc3a36847f80a3b83", "cast_id": 9, "profile_path": "/bsK56atqQ3JtxE0I6jqdORIPvdT.jpg", "order": 8}, {"name": "Garcelle Beauvais", "character": "Belle", "id": 31647, "credit_id": "52fe44adc3a36847f80a3b87", "cast_id": 10, "profile_path": "/fuZx5JL2VeMM1nwrZw2pkAMxuVt.jpg", "order": 9}, {"name": "Mike H. McGaughy", "character": "Big reb", "id": 16163, "credit_id": "52fe44adc3a36847f80a3b8b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Bai Ling", "character": "Miss East", "id": 39126, "credit_id": "52fe44adc3a36847f80a3bd7", "cast_id": 24, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 11}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe44adc3a36847f80a3b91", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 5.3, "runtime": 106}, "8488": {"poster_path": "/wY1AsrhhymgxVruhkPtfBoLnUA3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368100420, "overview": "Dating coach Alex \"Hitch\" Hitchens (Will Smith) mentors a bumbling client, Albert (Kevin James), who hopes to win the heart of the glamorous Allegra Cole (Amber Valletta). While Albert makes progress, Hitchens faces his own romantic setbacks when proven techniques fail to work on Sara Melas (Eva Mendes), a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitchens' connection to Albert -- now Allegra's boyfriend -- it threatens to destroy both relationships.", "video": false, "id": 8488, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Hitch", "tagline": "The cure for the common man.", "vote_count": 439, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386588", "adult": false, "backdrop_path": "/4aur0Sum8KnL5XZU0tNDjRJDUtC.jpg", "production_companies": [{"name": "Overbrook Entertainment", "id": 12485}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2005-02-10", "popularity": 1.17086998518352, "original_title": "Hitch", "budget": 70000000, "cast": [{"name": "Will Smith", "character": "Alex 'Hitch' Hitchens", "id": 2888, "credit_id": "52fe44adc3a36847f80a3c4f", "cast_id": 17, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Sara Melas", "id": 8170, "credit_id": "52fe44adc3a36847f80a3c07", "cast_id": 2, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Kevin James", "character": "Albert Brennaman", "id": 32895, "credit_id": "52fe44adc3a36847f80a3c4b", "cast_id": 16, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 2}, {"name": "Amber Valletta", "character": "Allegra Cole", "id": 38425, "credit_id": "52fe44adc3a36847f80a3c0b", "cast_id": 4, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Julie Ann Emery", "character": "Casey Sedgewick", "id": 55256, "credit_id": "52fe44adc3a36847f80a3c0f", "cast_id": 5, "profile_path": "/9E6kRGO5gWoZ8NQOwkOXw5roe3U.jpg", "order": 4}, {"name": "Adam Arkin", "character": "Max", "id": 55257, "credit_id": "52fe44adc3a36847f80a3c13", "cast_id": 6, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 5}, {"name": "Robinne Lee", "character": "Cressida Baylor", "id": 55258, "credit_id": "52fe44adc3a36847f80a3c17", "cast_id": 7, "profile_path": "/dkt0s7GjQ2fEJGHYVd1T2pTqBET.jpg", "order": 6}, {"name": "Ryan Cross", "character": "Charles Wellington", "id": 237885, "credit_id": "52fe44adc3a36847f80a3c53", "cast_id": 18, "profile_path": "/tNtnLYzWY5mnHjVy4MolGZjIJzU.jpg", "order": 7}, {"name": "Michael Rapaport", "character": "Ben", "id": 4688, "credit_id": "52fe44adc3a36847f80a3c57", "cast_id": 19, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 8}, {"name": "Jeffrey Donovan", "character": "Vance", "id": 52886, "credit_id": "52fe44adc3a36847f80a3c5b", "cast_id": 20, "profile_path": "/5i47zZDpnAjLBtQdlqhg5AIYCuT.jpg", "order": 9}, {"name": "Ato Essandoh", "character": "Tanis", "id": 5377, "credit_id": "52fe44adc3a36847f80a3c5f", "cast_id": 21, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 10}, {"name": "Nathan Lee Graham", "character": "Geoff", "id": 203809, "credit_id": "53e0dd3c0e0a265a99006b50", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Paula Patton", "character": "Mandy", "id": 52851, "credit_id": "53e0dd800e0a265a90006f87", "cast_id": 23, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 12}, {"name": "Philip Bosco", "character": "Mr. O'Brian", "id": 6541, "credit_id": "53e0ddc00e0a265a90006f8e", "cast_id": 24, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 13}, {"name": "Navia Nguyen", "character": "Mika", "id": 19856, "credit_id": "53e0de11c3a3683fc000179f", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Matt Malloy", "character": "Pete", "id": 19208, "credit_id": "53e0de32c3a3686c5a003988", "cast_id": 26, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 15}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44adc3a36847f80a3c1d", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.3, "runtime": 118}, "297": {"poster_path": "/nlxPnkZY3vY1iehJriKMQcT6eua.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 142940100, "overview": "When the grim reaper comes to collect the soul of megamogul Bill Parrish, he arrives with a proposition: Host him for a \"vacation\" among the living in trade for a few more days of existence. Parrish agrees, and using the pseudonym Joe Black, Death begins taking part in Parrish's daily agenda and falls in love with the man's daughter. Yet when Black's holiday is over, so is Parrish's life.", "video": false, "id": 297, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Meet Joe Black", "tagline": "He's Expecting You.", "vote_count": 313, "homepage": "http://www.meetjoeblack.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119643", "adult": false, "backdrop_path": "/5SmEl42nLab7WOVpvbPuVKmy4uK.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "City Light Films", "id": 136}], "release_date": "1998-11-12", "popularity": 0.709747946254098, "original_title": "Meet Joe Black", "budget": 90000000, "cast": [{"name": "Brad Pitt", "character": "Joe Black", "id": 287, "credit_id": "52fe4234c3a36847f800bdbb", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "William Parrish", "id": 4173, "credit_id": "52fe4234c3a36847f800bdbf", "cast_id": 3, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Claire Forlani", "character": "Susan Parrish", "id": 4174, "credit_id": "52fe4234c3a36847f800bdc3", "cast_id": 4, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 2}, {"name": "Jeffrey Tambor", "character": "Quince", "id": 4175, "credit_id": "52fe4234c3a36847f800bdc7", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 3}, {"name": "Marcia Gay Harden", "character": "Allison Parrish", "id": 4726, "credit_id": "52fe4234c3a36847f800bdcb", "cast_id": 6, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 4}, {"name": "Jake Weber", "character": "Drew", "id": 4177, "credit_id": "52fe4234c3a36847f800bdcf", "cast_id": 7, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 5}, {"name": "David S. Howard", "character": "Eddie Sloane", "id": 4192, "credit_id": "52fe4234c3a36847f800be4b", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Lois Kelly-Miller", "character": "Jamaican Woman", "id": 4193, "credit_id": "52fe4234c3a36847f800be4f", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "Jahnni St. John", "character": "Jamaican Woman's Daughter", "id": 4194, "credit_id": "52fe4234c3a36847f800be53", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Richard Clarke", "character": "The Parrish's Butler", "id": 4195, "credit_id": "52fe4234c3a36847f800be57", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "June Squibb", "character": "Helen", "id": 35515, "credit_id": "52fe4234c3a36847f800be61", "cast_id": 34, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 10}], "directors": [{"name": "Martin Brest", "department": "Directing", "job": "Director", "credit_id": "52fe4234c3a36847f800be5d", "profile_path": null, "id": 769}], "vote_average": 6.7, "runtime": 178}, "298": {"poster_path": "/kJKPcrRZ49ug5xSgs6z1VADRV1E.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 311312624, "overview": "Danny Ocean's team of criminals are back and are composing a plan more personal than ever. When ruthless casino owner Willy Bank double-crosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that him and his team will do anything to bring Willy Bank and everything he's got down. Even if it includes hiring help from one of their own enemies, Terry Benedict.", "video": false, "id": 298, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ocean's Thirteen", "tagline": "What are the odds of getting even? 13 to one.", "vote_count": 857, "homepage": "http://oceans13.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/vxmFb03PyjycekffLqXqFibbCzx.jpg", "poster_path": "/CZs07c4vgMdPXqtVu7y8yhCdFx.jpg", "id": 304, "name": "Ocean's Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0496806", "adult": false, "backdrop_path": "/7ytb78OyijteFpFKKoZsYSvPw2u.jpg", "production_companies": [{"name": "Section Eight Productions", "id": 14315}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2007-06-07", "popularity": 0.902999603241554, "original_title": "Ocean's Thirteen", "budget": 85000000, "cast": [{"name": "George Clooney", "character": "Daniel Ocean", "id": 1461, "credit_id": "52fe4234c3a36847f800bea1", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Robert \u201cRusty\u201d Charles Ryan", "id": 287, "credit_id": "52fe4234c3a36847f800bf0f", "cast_id": 26, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Matt Damon", "character": "Linus Caldwell", "id": 1892, "credit_id": "52fe4234c3a36847f800bea5", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 2}, {"name": "Al Pacino", "character": "Willie Banks", "id": 1158, "credit_id": "52fe4234c3a36847f800bea9", "cast_id": 4, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 3}, {"name": "Bernie Mac", "character": "Frank Catton", "id": 1897, "credit_id": "52fe4234c3a36847f800bead", "cast_id": 5, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 4}, {"name": "Andy Garc\u00eda", "character": "Terry Benedict", "id": 1271, "credit_id": "52fe4234c3a36847f800beb1", "cast_id": 6, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 5}, {"name": "Casey Affleck", "character": "Virgil Malloy", "id": 1893, "credit_id": "52fe4234c3a36847f800beb5", "cast_id": 7, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 6}, {"name": "Scott Caan", "character": "Turk Malloy", "id": 1894, "credit_id": "52fe4234c3a36847f800beb9", "cast_id": 8, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 7}, {"name": "Carl Reiner", "character": "Saul Bloom", "id": 1895, "credit_id": "52fe4234c3a36847f800bebd", "cast_id": 9, "profile_path": "/mG0YcJ72Dw0jwFvg44lncv21mut.jpg", "order": 8}, {"name": "Don Cheadle", "character": "Basher Tarr", "id": 1896, "credit_id": "52fe4234c3a36847f800bec1", "cast_id": 10, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 9}, {"name": "Shaobo Qin", "character": "\u2018The Amazing\u2019 Yen", "id": 1900, "credit_id": "52fe4234c3a36847f800bec5", "cast_id": 11, "profile_path": "/d12Ni5dBctraHwkPsmLl6gPt3PR.jpg", "order": 10}, {"name": "Eddie Jemison", "character": "Livingston Dell", "id": 1898, "credit_id": "52fe4234c3a36847f800bec9", "cast_id": 12, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 11}, {"name": "Elliott Gould", "character": "Reuben Tishkoff", "id": 827, "credit_id": "52fe4234c3a36847f800becd", "cast_id": 13, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 12}, {"name": "Ellen Barkin", "character": "Abigail Sponder", "id": 6913, "credit_id": "52fe4234c3a36847f800bed1", "cast_id": 14, "profile_path": "/rjo0S9uJ9pIEZenvYVCEdqcR8Qu.jpg", "order": 13}, {"name": "Eddie Izzard", "character": "Roman Nagel", "id": 1926, "credit_id": "52fe4234c3a36847f800bed5", "cast_id": 15, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 14}, {"name": "Vincent Cassel", "character": "Fran\u00e7ois \u201cThe Nightfox\u201d Toulour", "id": 1925, "credit_id": "52fe4234c3a36847f800bed9", "cast_id": 16, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 15}, {"name": "Bob Einstein", "character": "FBI Agent", "id": 16302, "credit_id": "52fe4234c3a36847f800bedd", "cast_id": 17, "profile_path": "/rEssSY7Naj3xAEWqZ0xYEtubdns.jpg", "order": 16}, {"name": "Celine Dion", "character": "C\u00e9line Dion", "id": 16303, "credit_id": "52fe4234c3a36847f800bee1", "cast_id": 18, "profile_path": "/truzhpeyIihZWO7B9ZOON1CefxK.jpg", "order": 17}, {"name": "Nancy Stelle", "character": "Cocktail Waitress", "id": 1115997, "credit_id": "53022bbd92514161a207a27e", "cast_id": 28, "profile_path": "/31yKCmHc7ArQhDDxGMIbQXVkmyH.jpg", "order": 18}, {"name": "Tim Conlon", "character": "Agent Caldwell's 'Deputy'", "id": 1212249, "credit_id": "550429bdc3a36862e5000d23", "cast_id": 29, "profile_path": null, "order": 19}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4234c3a36847f800bee7", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.4, "runtime": 122}, "300": {"poster_path": "/8juTRqn5o43mnlVacp1IzZSd11N.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 9524340, "overview": "A man entranced by his dreams and imagination is lovestruck with a French woman and feels he can show her his world.", "video": false, "id": 300, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Science of Sleep", "tagline": "Close your eyes. Open your heart.", "vote_count": 51, "homepage": "http://www.lasciencedesreves-lefilm.com/accueil.htm", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0354899", "adult": false, "backdrop_path": "/h5ILYBMAYAlZbMypIImmSr2NGqZ.jpg", "production_companies": [{"name": "Partizan Films", "id": 11911}, {"name": "Gaumont", "id": 9}, {"name": "France 3 Cin\u00e9ma", "id": 591}, {"name": "Canal+", "id": 5358}, {"name": "TPS Star", "id": 6586}, {"name": "Mikado Film", "id": 11912}], "release_date": "2006-02-11", "popularity": 0.68534955233264, "original_title": "La science des r\u00eaves", "budget": 6000000, "cast": [{"name": "Gael Garc\u00eda Bernal", "character": "St\u00e9phane", "id": 258, "credit_id": "52fe4234c3a36847f800bfe9", "cast_id": 1, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 0}, {"name": "Charlotte Gainsbourg", "character": "St\u00e9phanie", "id": 4273, "credit_id": "52fe4234c3a36847f800bfed", "cast_id": 2, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Miou-Miou", "character": "Christine Miroux", "id": 4274, "credit_id": "52fe4234c3a36847f800bff1", "cast_id": 3, "profile_path": "/oqTRzZm0h7KDTQEy5K4DSskaBrm.jpg", "order": 2}, {"name": "Alain Chabat", "character": "Guy", "id": 4275, "credit_id": "52fe4234c3a36847f800bff5", "cast_id": 4, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 3}, {"name": "Emma de Caunes", "character": "Zo\u00e9", "id": 4286, "credit_id": "52fe4234c3a36847f800c041", "cast_id": 17, "profile_path": "/xKHtjT3A8Y5tpmxDs7PddlMP6M1.jpg", "order": 4}, {"name": "Aur\u00e9lia Petit", "character": "Martine", "id": 4287, "credit_id": "52fe4234c3a36847f800c045", "cast_id": 18, "profile_path": "/4a5lhGwOEOjM1WyTjALPe7cNzxK.jpg", "order": 5}, {"name": "Sacha Bourdo", "character": "Serge", "id": 4288, "credit_id": "52fe4234c3a36847f800c049", "cast_id": 19, "profile_path": "/atkezsosmJoUhIODou4cDdYLw0U.jpg", "order": 6}, {"name": "Pierre Vaneck", "character": "Mr. Pouchet", "id": 4289, "credit_id": "52fe4234c3a36847f800c04d", "cast_id": 20, "profile_path": "/ssRQynR6SHmDFtTNHey5FEB15vL.jpg", "order": 7}, {"name": "St\u00e9phane Metzger", "character": "Sylvain", "id": 4290, "credit_id": "52fe4234c3a36847f800c051", "cast_id": 21, "profile_path": "/lrQthI3W6FkNQ4W4dFiD5QykHM6.jpg", "order": 8}, {"name": "Alain de Moyencourt", "character": "G\u00e9rard", "id": 4291, "credit_id": "52fe4234c3a36847f800c055", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Inigo Lezzi", "character": "M. Persinnet", "id": 4292, "credit_id": "52fe4234c3a36847f800c059", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Yvette Petit", "character": "Ivana", "id": 4293, "credit_id": "52fe4234c3a36847f800c05d", "cast_id": 24, "profile_path": "/l4fbrnmLZUiMXEgfmVKCN7KedpX.jpg", "order": 11}, {"name": "Jean-Michel Bernard", "character": "Policier qui joue au piano", "id": 4278, "credit_id": "52fe4234c3a36847f800c061", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Bertrand Delpierre", "character": "Pr\u00e9sentateur JT", "id": 4294, "credit_id": "52fe4234c3a36847f800c065", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Eric Mariotto", "character": "Policier", "id": 4295, "credit_id": "52fe4234c3a36847f800c069", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe4234c3a36847f800bffb", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 7.2, "runtime": 105}, "303": {"poster_path": "/khQmkzBibHzTRIKSwsnVqR4GYxc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "Released shortly after the war, this classic Hitchcock film illustrates the battle between German Nazis and American spies in Rio de Janeiro where a German businessman keeps a wine cellar with uranium ore.", "video": false, "id": 303, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Notorious", "tagline": "Notorious woman of affairs... Adventurous man of the world", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0038787", "adult": false, "backdrop_path": "/tnpGBhOXnhJ0W2wW1wSNS8jbluC.jpg", "production_companies": [{"name": "RKO Radio Pictures", "id": 6}], "release_date": "1946-08-15", "popularity": 0.200179990954229, "original_title": "Notorious", "budget": 2000000, "cast": [{"name": "Cary Grant", "character": "T.R. Devlin", "id": 2638, "credit_id": "52fe4235c3a36847f800c21f", "cast_id": 4, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Ingrid Bergman", "character": "Alicia Huberman", "id": 4111, "credit_id": "52fe4235c3a36847f800c215", "cast_id": 2, "profile_path": "/iwU6mXNKj6VFvsGIEnNKu4UbXUL.jpg", "order": 1}, {"name": "Claude Rains", "character": "Alexander Sebastian", "id": 4113, "credit_id": "52fe4235c3a36847f800c223", "cast_id": 5, "profile_path": "/Ai8dxQY9p90n3YO9o3J6iEqxZ04.jpg", "order": 2}, {"name": "Louis Calhern", "character": "Captain Paul Prescott", "id": 4343, "credit_id": "52fe4235c3a36847f800c22b", "cast_id": 7, "profile_path": "/k0uuHPK8XgKO7D7iOF2SrxVeE69.jpg", "order": 3}, {"name": "Leopoldine Konstantin", "character": "Madame Anna Sebastian", "id": 4342, "credit_id": "52fe4235c3a36847f800c227", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Reinhold Sch\u00fcnzel", "character": "Dr. Anderson", "id": 4344, "credit_id": "52fe4235c3a36847f800c22f", "cast_id": 8, "profile_path": "/3XLrHa6YZ02vQjdqB9Bh3EoDgWX.jpg", "order": 5}, {"name": "Ivan Triesault", "character": "Eric Mathis", "id": 5041, "credit_id": "52fe4235c3a36847f800c281", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Alex Minotis", "character": "Joseph, Sebastian's Butler", "id": 5042, "credit_id": "52fe4235c3a36847f800c285", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Eberhard Krumschmidt", "character": "Emil Hupka", "id": 5043, "credit_id": "52fe4235c3a36847f800c289", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Fred Nurney", "character": "John Huberman", "id": 5044, "credit_id": "52fe4235c3a36847f800c28d", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Moroni Olsen", "character": "Walter Beardsley", "id": 18586, "credit_id": "52fe4235c3a36847f800c291", "cast_id": 26, "profile_path": "/20iaFC3qnVA9t77SFYnjVuJas1P.jpg", "order": 10}, {"name": "Wally Brown", "character": "Mr. Hopkins", "id": 96142, "credit_id": "52fe4235c3a36847f800c295", "cast_id": 27, "profile_path": "/6nTMECYTJx3UhbRvqWd3hDn5UB.jpg", "order": 11}, {"name": "Charles Mendl", "character": "Commodore (as Sir Charles Mendl)", "id": 96143, "credit_id": "52fe4235c3a36847f800c299", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Ricardo Costa", "character": "Dr. Julio Barbosa", "id": 96144, "credit_id": "52fe4235c3a36847f800c29d", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4235c3a36847f800c211", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.7, "runtime": 102}, "16690": {"poster_path": "/zRyjRf64k9GVQnZ6hxtAr2s1upj.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109862682, "overview": "The classic tale of 'Peter Pan' continues in Disney's sequel 'Return to Never Land'. In 1940 on a world besieged by World War II, Wendy, now grown up, has two children, one of them is her daughter, Jane.", "video": false, "id": 16690, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Return to Never Land", "tagline": "The Classic Continues", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AnhKboZjfeGuHI6qg7pp9RCesTF.jpg", "poster_path": "/t0mINaIut2aDKdGseQtC7UcbRNW.jpg", "id": 55422, "name": "Peter Pan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0280030", "adult": false, "backdrop_path": "/4yN4gLc0mZNORp9hQwj5kwdxw3q.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "Walt Disney Animation Canada", "id": 12402}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2002-02-14", "popularity": 1.05526008768092, "original_title": "Return to Never Land", "budget": 20000000, "cast": [{"name": "Harriet Owen", "character": "Jane / Young Wendy (Voice)", "id": 107358, "credit_id": "52fe46e59251416c7508729b", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Blayne Weaver", "character": "Peter Pan (Voice)", "id": 77885, "credit_id": "52fe46e59251416c7508729f", "cast_id": 2, "profile_path": "/iKR3Abk1B0Y3xHyLf7cvtZafzQH.jpg", "order": 1}, {"name": "Jeff Bennett", "character": "Smee (Voice)", "id": 34982, "credit_id": "52fe46e59251416c750872a3", "cast_id": 3, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 2}, {"name": "Kath Soucie", "character": "Wendy Darling (voice)", "id": 60739, "credit_id": "52fe46e59251416c750872a7", "cast_id": 4, "profile_path": "/urLkA155Yc19TKyeCUYGwzEt2PO.jpg", "order": 3}, {"name": "Corey Burton", "character": "Captain Hook (voice)", "id": 35219, "credit_id": "5459558a0e0a26115b0025a2", "cast_id": 8, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 4}, {"name": "Corey Burton", "character": "Wendy Darling (voice)", "id": 35219, "credit_id": "54595632c3a36839a0002612", "cast_id": 9, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 5}, {"name": "Andrew McDonough", "character": "Danny (voice)", "id": 1381842, "credit_id": "545956df0e0a26116500262d", "cast_id": 10, "profile_path": "/g2F6DMt6tI4ulZaqNBMm9pAFdJq.jpg", "order": 6}, {"name": "Roger Rees", "character": "Edward (voice)", "id": 16407, "credit_id": "545956f70e0a261165002637", "cast_id": 11, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 7}, {"name": "Spencer Breslin", "character": "Cubby (voice)", "id": 35654, "credit_id": "5459570ac3a36839a000262b", "cast_id": 12, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 8}, {"name": "Bradley Pierce", "character": "Nibs (voice)", "id": 145151, "credit_id": "545957260e0a2611620026a3", "cast_id": 13, "profile_path": "/rukciCbfBZWWvyJELZqxQWzSqnS.jpg", "order": 9}, {"name": "Quinn Beswick", "character": "Slightly (voice)", "id": 1381843, "credit_id": "54595746c3a368399d002681", "cast_id": 14, "profile_path": "/lXrNnHsPVTyWk3U7rpNNaVCR7z3.jpg", "order": 10}, {"name": "Aaron Spann", "character": "Twins (voice)", "id": 91785, "credit_id": "54595845c3a368398f0025b8", "cast_id": 15, "profile_path": "/40aZRhkPjKsdJ2cBlzMTSe6K30y.jpg", "order": 11}], "directors": [{"name": "Robin Budd", "department": "Directing", "job": "Director", "credit_id": "52fe46e59251416c750872ad", "profile_path": null, "id": 1027737}, {"name": "Donovan Cook", "department": "Directing", "job": "Director", "credit_id": "52fe46e59251416c750872b3", "profile_path": null, "id": 1027738}], "vote_average": 6.2, "runtime": 72}, "77875": {"poster_path": "/eOBekVFBGK4TwETQSwfuk22B41o.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A former sports star who's fallen on hard times starts coaching his son's soccer team in an attempt to get his life together.", "video": false, "id": 77875, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Playing for Keeps", "tagline": "", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1540128", "adult": false, "backdrop_path": "/cWHOiGw3JxKok3BdqFlxSmLKZ1O.jpg", "production_companies": [{"name": "Eclectic pictures", "id": 8056}], "release_date": "2012-12-07", "popularity": 0.895015883491753, "original_title": "Playing for Keeps", "budget": 35000000, "cast": [{"name": "Gerard Butler", "character": "George", "id": 17276, "credit_id": "52fe4980c3a368484e12ea5d", "cast_id": 8, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Stacie", "id": 10860, "credit_id": "52fe4980c3a368484e12ea61", "cast_id": 9, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Uma Thurman", "character": "Patti", "id": 139, "credit_id": "52fe4980c3a368484e12ea65", "cast_id": 10, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 2}, {"name": "Catherine Zeta-Jones", "character": "Denise", "id": 1922, "credit_id": "52fe4980c3a368484e12ea69", "cast_id": 11, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 3}, {"name": "Iqbal Theba", "character": "Param", "id": 154182, "credit_id": "52fe4980c3a368484e12ea6d", "cast_id": 12, "profile_path": "/gIkJnIfmX6JBKR8oYUERsy1Sy4v.jpg", "order": 4}, {"name": "Sean O'Bryan", "character": "Coach Jacob", "id": 33836, "credit_id": "52fe4980c3a368484e12ea71", "cast_id": 16, "profile_path": "/doVNkZLo1aqfRVfUymkjuTpyUYa.jpg", "order": 5}, {"name": "Dennis Quaid", "character": "Carl", "id": 6065, "credit_id": "52fe4980c3a368484e12ea81", "cast_id": 21, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 6}, {"name": "Judy Greer", "character": "Barb", "id": 20750, "credit_id": "52fe4980c3a368484e12ea85", "cast_id": 22, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 7}, {"name": "Noah Lomax", "character": "Lewis", "id": 524503, "credit_id": "52fe4980c3a368484e12ea89", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "James Tupper", "character": "Matt", "id": 119807, "credit_id": "52fe4980c3a368484e12ea8d", "cast_id": 24, "profile_path": "/eRl6B6WlnxPztKksIpnIp3votlL.jpg", "order": 9}], "directors": [{"name": "Gabriele Muccino", "department": "Directing", "job": "Director", "credit_id": "52fe4980c3a368484e12ea7d", "profile_path": "/uU23lwEwz3TnHl0DvvyePpaGuEG.jpg", "id": 20646}], "vote_average": 5.6, "runtime": 106}, "308": {"poster_path": "/pvtdRUpJE6YjIi8BLEZ7jhEdeN1.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45742101, "overview": "As the devoutly single Don Johnston is dumped by his latest girlfriend, he receives an anonymous pink letter informing him that he has a son who may be looking for him. The situation causes Don to examine his relationships with women instead of moving on to the next one, and he embarks on a cross-country search for his old flames who might possess clues to the mystery at hand.", "video": false, "id": 308, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Broken Flowers", "tagline": "Sometimes life brings some strange surprises.", "vote_count": 74, "homepage": "http://brokenflowersmovie.com/broken_flowers", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0412019", "adult": false, "backdrop_path": "/mQGEByVNnKiOVoAMDJ9KhvlCtgz.jpg", "production_companies": [{"name": "Focus Features", "id": 17301}, {"name": "Five Roses", "id": 22456}, {"name": "Bac Films", "id": 208}], "release_date": "2005-08-05", "popularity": 0.538683401105756, "original_title": "Broken Flowers", "budget": 10000000, "cast": [{"name": "Bill Murray", "character": "Don Johnston", "id": 1532, "credit_id": "52fe4235c3a36847f800c495", "cast_id": 2, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Julie Delpy", "character": "Sherry", "id": 1146, "credit_id": "52fe4235c3a36847f800c499", "cast_id": 3, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Sharon Stone", "character": "Laura", "id": 4430, "credit_id": "52fe4235c3a36847f800c49d", "cast_id": 4, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 2}, {"name": "Tilda Swinton", "character": "Penny", "id": 3063, "credit_id": "52fe4235c3a36847f800c4a1", "cast_id": 5, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 3}, {"name": "Jessica Lange", "character": "Carmen", "id": 4431, "credit_id": "52fe4235c3a36847f800c4a5", "cast_id": 6, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 4}, {"name": "Jeffrey Wright", "character": "Winston", "id": 2954, "credit_id": "52fe4235c3a36847f800c4a9", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 5}, {"name": "Frances Conroy", "character": "Dora", "id": 4432, "credit_id": "52fe4235c3a36847f800c4ad", "cast_id": 8, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 6}, {"name": "Alexis Dziena", "character": "Lolita", "id": 4433, "credit_id": "52fe4235c3a36847f800c4b1", "cast_id": 9, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 7}, {"name": "Heather Simms", "character": "Mona", "id": 4439, "credit_id": "52fe4235c3a36847f800c4df", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Brea Frazier", "character": "Rita", "id": 4440, "credit_id": "52fe4235c3a36847f800c4e3", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Pell James", "character": "Sun Green", "id": 4441, "credit_id": "52fe4235c3a36847f800c4e7", "cast_id": 19, "profile_path": "/dUDHtnP8dmGI4pV0S2fjuFQ5XzS.jpg", "order": 10}, {"name": "Ryan Donowho", "character": "Young Man on Bus", "id": 4442, "credit_id": "52fe4235c3a36847f800c4eb", "cast_id": 20, "profile_path": "/uSOlRTo6n605f1aPZJXGCseNcFr.jpg", "order": 11}, {"name": "Christopher McDonald", "character": "Ron", "id": 4443, "credit_id": "52fe4235c3a36847f800c4ef", "cast_id": 21, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 12}, {"name": "Chris Bauer", "character": "Dan", "id": 4445, "credit_id": "52fe4235c3a36847f800c4f3", "cast_id": 23, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 14}, {"name": "Chlo\u00eb Sevigny", "character": "Carmen's Assistant", "id": 2838, "credit_id": "52fe4235c3a36847f800c51b", "cast_id": 30, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 15}, {"name": "Mark Webber", "character": "The Kid", "id": 4451, "credit_id": "52fe4235c3a36847f800c51f", "cast_id": 31, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 16}, {"name": "Homer Murray", "character": "Kid in Car", "id": 4878, "credit_id": "52fe4235c3a36847f800c523", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Larry Fessenden", "character": "Will", "id": 31268, "credit_id": "52fe4235c3a36847f800c527", "cast_id": 33, "profile_path": "/ry1FD2hv1mop8QzPCVHzpDeCX1z.jpg", "order": 18}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe4235c3a36847f800c491", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 6.9, "runtime": 105}, "310": {"poster_path": "/lgYKHifMMLT8OxYObMKa8b4STsr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 484572835, "overview": "Bruce Nolan toils as a \"human interest\" television reporter in Buffalo, N.Y. Despite his high ratings and the love of his beautiful girlfriend, Grace, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God -- and the Almighty responds, endowing Bruce with all of His divine powers.", "video": false, "id": 310, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Bruce Almighty", "tagline": "In Bruce we trust", "vote_count": 894, "homepage": "http://www.brucealmighty.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8DWF5nzKeZvwC4Fi7iacobtMlbU.jpg", "id": 124949, "name": "Almighty Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0315327", "adult": false, "backdrop_path": "/bhEudqWbWsiEBdnl0kCIwFp5Hay.jpg", "production_companies": [{"name": "Pit Bull Productions", "id": 160}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Universal Pictures", "id": 33}, {"name": "Shady Acres Entertainment", "id": 159}], "release_date": "2003-05-21", "popularity": 2.18725935164958, "original_title": "Bruce Almighty", "budget": 80000000, "cast": [{"name": "Jim Carrey", "character": "Bruce Nolan", "id": 206, "credit_id": "52fe4235c3a36847f800c645", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Grace Connelly", "id": 4491, "credit_id": "52fe4235c3a36847f800c64f", "cast_id": 3, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Philip Baker Hall", "character": "Jack Baylor", "id": 4492, "credit_id": "52fe4236c3a36847f800c653", "cast_id": 4, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 2}, {"name": "Catherine Bell", "character": "Susan Ortega", "id": 4493, "credit_id": "52fe4236c3a36847f800c657", "cast_id": 5, "profile_path": "/7fLeVjQMTGbsbd0WfgaZSZ4wan2.jpg", "order": 3}, {"name": "Lisa Ann Walter", "character": "Debbie", "id": 4494, "credit_id": "52fe4236c3a36847f800c65b", "cast_id": 6, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 4}, {"name": "Steve Carell", "character": "Evan Baxter", "id": 4495, "credit_id": "52fe4236c3a36847f800c65f", "cast_id": 7, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 5}, {"name": "Nora Dunn", "character": "Ally Loman", "id": 4496, "credit_id": "52fe4236c3a36847f800c663", "cast_id": 8, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 6}, {"name": "Paul Satterfield", "character": "Dallas Coleman", "id": 4498, "credit_id": "52fe4236c3a36847f800c667", "cast_id": 10, "profile_path": "/cpGi1KJVDAcG4eVN4yWCPurKeZe.jpg", "order": 8}, {"name": "Morgan Freeman", "character": "God", "id": 192, "credit_id": "52fe4236c3a36847f800c6d1", "cast_id": 28, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 9}, {"name": "Eddie Jemison", "character": "Bobby", "id": 1898, "credit_id": "52fe4236c3a36847f800c6d5", "cast_id": 29, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 10}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4236c3a36847f800c66d", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 6.2, "runtime": 101}, "311": {"poster_path": "/fqP3Q7DWMFqW7mh11hWXbNwN9rz.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Though Sergio Leone is primarily known for his westerns, his final film is a sweeping gangster epic with meditations on friendship, loyalty, and the passage of time. Spanning decades, the film follows a group of Jewish gangsters from childhood into their glory years of prohibition, and their eventual reunion in later years.", "video": false, "id": 311, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Once Upon a Time in America", "tagline": "Crime, passion and lust for power - Sergio Leone's explosive saga of gangland America.", "vote_count": 283, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087843", "adult": false, "backdrop_path": "/vnT6HzjLSDrAweHn9xWykb8Ii6T.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "The Ladd Company", "id": 7965}], "release_date": "1984-02-17", "popularity": 0.986783058895811, "original_title": "Once Upon a Time in America", "budget": 30000000, "cast": [{"name": "Robert De Niro", "character": "David 'Noodles' Aaronson", "id": 380, "credit_id": "52fe4236c3a36847f800c749", "cast_id": 3, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "James Woods", "character": "Maximilian 'Max' Bercovicz", "id": 4512, "credit_id": "52fe4236c3a36847f800c74d", "cast_id": 4, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 1}, {"name": "Elizabeth McGovern", "character": "Deborah Gelly", "id": 4513, "credit_id": "52fe4236c3a36847f800c751", "cast_id": 5, "profile_path": "/oECBsmiZ8OWxm6iQCV5o0eViLRg.jpg", "order": 2}, {"name": "Tuesday Weld", "character": "Carol", "id": 4514, "credit_id": "52fe4236c3a36847f800c755", "cast_id": 6, "profile_path": "/wLVlljfTvppkfdQz9fNDizNpSuK.jpg", "order": 3}, {"name": "Treat Williams", "character": "James Conway O'Donnell", "id": 4515, "credit_id": "52fe4236c3a36847f800c759", "cast_id": 7, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 4}, {"name": "James Hayden", "character": "Patrick 'Patsy' Goldberg", "id": 4516, "credit_id": "52fe4236c3a36847f800c75d", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Joe Pesci", "character": "Frankie Minaldi", "id": 4517, "credit_id": "52fe4236c3a36847f800c761", "cast_id": 9, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 6}, {"name": "Larry Rapp", "character": "'Fat' Moe Gelly", "id": 4518, "credit_id": "52fe4236c3a36847f800c765", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Danny Aiello", "character": "Police Chief Vincent Aiello", "id": 1004, "credit_id": "52fe4236c3a36847f800c809", "cast_id": 47, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 8}, {"name": "William Forsythe", "character": "Philip 'Cockeye' Stein", "id": 4520, "credit_id": "52fe4236c3a36847f800c769", "cast_id": 11, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 9}, {"name": "Franco Ferrini", "character": "", "id": 4668, "credit_id": "52fe4236c3a36847f800c7a7", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Burt Young", "character": "Joe", "id": 4521, "credit_id": "52fe4236c3a36847f800c76d", "cast_id": 12, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 11}, {"name": "Scott Schutzman Tiler", "character": "Young Noodles", "id": 4750, "credit_id": "52fe4236c3a36847f800c7e7", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Rusty Jacobs", "character": "Young Max / David Bailey", "id": 4751, "credit_id": "52fe4236c3a36847f800c7eb", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Adrian Curran", "character": "Young Cockeye", "id": 4752, "credit_id": "52fe4236c3a36847f800c7ef", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Brian Bloom", "character": "Young Patsy", "id": 4753, "credit_id": "52fe4236c3a36847f800c7f3", "cast_id": 39, "profile_path": "/5Pc6tCfeVZFkBMQACRA318jqwph.jpg", "order": 15}, {"name": "Noah Moazezi", "character": "Dominic", "id": 4754, "credit_id": "52fe4236c3a36847f800c7f7", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Darlanne Fluegel", "character": "Eve", "id": 4761, "credit_id": "52fe4236c3a36847f800c7fb", "cast_id": 41, "profile_path": "/bhZdjbtZ71fsdYztrsq3KCC94F.jpg", "order": 17}, {"name": "Mike Monetti", "character": "Young 'Fat' Moe Gelly", "id": 4773, "credit_id": "52fe4236c3a36847f800c7ff", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Jennifer Connelly", "character": "Young Deborah", "id": 6161, "credit_id": "52fe4236c3a36847f800c849", "cast_id": 66, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 19}, {"name": "Clem Caserta", "character": "Al Capuano", "id": 17921, "credit_id": "543d06290e0a2653540016d5", "cast_id": 69, "profile_path": "/sXh8zi1BVBe0q9Hza3GhNvdTJsv.jpg", "order": 20}, {"name": "Frank Gio", "character": "Beefy", "id": 1373773, "credit_id": "543d09530e0a265357001729", "cast_id": 70, "profile_path": null, "order": 21}, {"name": "James Russo", "character": "Bugsy", "id": 785, "credit_id": "543d0e560e0a2653440017fa", "cast_id": 71, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 22}, {"name": "Richard Bright", "character": "Chicken Joe", "id": 3174, "credit_id": "543d0e8cc3a36815ea0015f6", "cast_id": 72, "profile_path": "/k2P17sxGhh7Dafidxn9Ub5YbF7n.jpg", "order": 23}, {"name": "Gerard Murphy", "character": "Crowning", "id": 151943, "credit_id": "543d0f8fc3a36815f600170d", "cast_id": 73, "profile_path": "/onkF4igAmOiiKl2wxXm8eSgLgFd.jpg", "order": 24}, {"name": "Margherita Pace", "character": "doublure de Jennifer Connelly", "id": 1373775, "credit_id": "543d138e0e0a265341001899", "cast_id": 74, "profile_path": null, "order": 25}, {"name": "Frank Sisto", "character": "Fred Capuano", "id": 1373776, "credit_id": "543d14afc3a36815ea001696", "cast_id": 75, "profile_path": null, "order": 26}, {"name": "Mike Gendel", "character": "Irving Gold", "id": 1373778, "credit_id": "543d1500c3a36815f60017a1", "cast_id": 76, "profile_path": null, "order": 27}, {"name": "Jerry Strivelli", "character": "Johnny Capuano", "id": 61236, "credit_id": "543d15660e0a265347001888", "cast_id": 77, "profile_path": null, "order": 28}, {"name": "Sandra Solberg", "character": "l'ami de Deborah jeune", "id": 1373779, "credit_id": "543d15a5c3a36815ed0018f2", "cast_id": 78, "profile_path": null, "order": 29}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4236c3a36847f800c745", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.6, "runtime": 229}, "314": {"poster_path": "/3E1XPZ2lZmL4lJV1KSUi1jaSx3w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82102379, "overview": "Liquidated after discovering a corporate conspiracy, mild-mannered graphic artist Patience Phillips washes up on an island, where she's resurrected and endowed with the prowess of a cat -- and she's eager to use her new skills ... as a vigilante. Before you can say \"cat and mouse,\" handsome gumshoe Tom Lone is on her tail.", "video": false, "id": 314, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Catwoman", "tagline": "CATch Her In IMAX", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327554", "adult": false, "backdrop_path": "/p7Q8RuElbCsVEb6TZ3vTXY5M5ev.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-07-23", "popularity": 0.899396687066679, "original_title": "Catwoman", "budget": 100000000, "cast": [{"name": "Halle Berry", "character": "Patience Phillips", "id": 4587, "credit_id": "52fe4236c3a36847f800ca9b", "cast_id": 2, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 0}, {"name": "Benjamin Bratt", "character": "Tom Lone", "id": 4589, "credit_id": "52fe4236c3a36847f800cab7", "cast_id": 7, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 1}, {"name": "Sharon Stone", "character": "Laurel Hedare", "id": 4430, "credit_id": "52fe4236c3a36847f800cabb", "cast_id": 8, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 2}, {"name": "Lambert Wilson", "character": "George Hedare", "id": 2192, "credit_id": "52fe4236c3a36847f800cabf", "cast_id": 9, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 3}, {"name": "Frances Conroy", "character": "Ophelia", "id": 4432, "credit_id": "52fe4236c3a36847f800cac3", "cast_id": 10, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 4}, {"name": "Alex Borstein", "character": "Sally", "id": 24357, "credit_id": "52fe4236c3a36847f800cac7", "cast_id": 11, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 5}, {"name": "Michael Massee", "character": "Armando", "id": 9289, "credit_id": "52fe4236c3a36847f800cacb", "cast_id": 12, "profile_path": "/qbM7GWc86Lw5y6E6eCnokgVaHia.jpg", "order": 6}, {"name": "Byron Mann", "character": "Wesley", "id": 57748, "credit_id": "52fe4236c3a36847f800cacf", "cast_id": 13, "profile_path": "/fF6ZlpZ8Jj5iiI5LQjSlaemeNe5.jpg", "order": 7}, {"name": "Kim Smith", "character": "Drina", "id": 141446, "credit_id": "52fe4236c3a36847f800cad3", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Christopher Heyerdahl", "character": "Rocker", "id": 32887, "credit_id": "52fe4236c3a36847f800cad7", "cast_id": 15, "profile_path": "/imu1EK0I8J5xesKxLweLqqhKq8q.jpg", "order": 9}, {"name": "Peter Wingfield", "character": "Dr. Ivan Slavicky", "id": 60462, "credit_id": "52fe4236c3a36847f800cadb", "cast_id": 16, "profile_path": "/usy4BEnrZ4b8WOTFPDYxlTSHBvS.jpg", "order": 10}, {"name": "Berend McKenzie", "character": "Lance", "id": 141447, "credit_id": "52fe4236c3a36847f800cadf", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Pitof", "department": "Directing", "job": "Director", "credit_id": "52fe4236c3a36847f800ca97", "profile_path": "/vsMggmTlZENErMCdw5fKtrCKAJp.jpg", "id": 4586}], "vote_average": 4.5, "runtime": 104}, "147773": {"poster_path": "/sXYsltqKCYbwKsquuswWAiycEBv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23198652, "overview": "Over the course of his summer break, a teenager comes into his own thanks in part to the friendship he strikes up with one of the park's managers.", "video": false, "id": 147773, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Way Way Back", "tagline": "We've all been there.", "vote_count": 233, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1727388", "adult": false, "backdrop_path": "/rMtDntmRmkXGSK7apEMe1OrVbOG.jpg", "production_companies": [{"name": "What Just Happened Productions", "id": 36208}, {"name": "Sycamore Pictures", "id": 14319}, {"name": "The Walsh Company", "id": 14320}, {"name": "OddLot Entertainment", "id": 36209}], "release_date": "2013-07-05", "popularity": 0.962327952727496, "original_title": "The Way Way Back", "budget": 4600000, "cast": [{"name": "Steve Carell", "character": "Trent", "id": 4495, "credit_id": "52fe4bb39251416c7510b383", "cast_id": 5, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Toni Collette", "character": "Pam", "id": 3051, "credit_id": "52fe4bb39251416c7510b38f", "cast_id": 13, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 1}, {"name": "AnnaSophia Robb", "character": "Susanna", "id": 1285, "credit_id": "52fe4bb39251416c7510b39f", "cast_id": 17, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "Owen", "id": 6807, "credit_id": "52fe4bb39251416c7510b387", "cast_id": 7, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Allison Janney", "character": "Betty", "id": 19, "credit_id": "52fe4bb39251416c7510b39b", "cast_id": 16, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 4}, {"name": "Liam James", "character": "Duncan", "id": 83852, "credit_id": "52fe4bb39251416c7510b38b", "cast_id": 12, "profile_path": "/heAbNsKPFDCFIrzy7zDeZm6w2xd.jpg", "order": 5}, {"name": "Amanda Peet", "character": "Joan", "id": 2956, "credit_id": "52fe4bb39251416c7510b393", "cast_id": 14, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 6}, {"name": "Maya Rudolph", "character": "Caitlyn", "id": 52792, "credit_id": "52fe4bb39251416c7510b397", "cast_id": 15, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 7}, {"name": "Rob Corddry", "character": "Kip", "id": 52997, "credit_id": "52fe4bb39251416c7510b3c3", "cast_id": 24, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 8}, {"name": "Nat Faxon", "character": "Roddy", "id": 105648, "credit_id": "52fe4bb39251416c7510b3bb", "cast_id": 22, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 9}, {"name": "Jim Rash", "character": "Lewis", "id": 161932, "credit_id": "52fe4bb39251416c7510b3bf", "cast_id": 23, "profile_path": "/eWBHlcgATCzoAqNDI7xiAPi7g1d.jpg", "order": 10}, {"name": "Zoe Levin", "character": "Steph", "id": 1190917, "credit_id": "52fe4bb39251416c7510b3c7", "cast_id": 25, "profile_path": "/uhJnIakHRrW30r1H8ljVUiTWR4E.jpg", "order": 11}, {"name": "River Alexander", "character": "Peter", "id": 1190919, "credit_id": "52fe4bb39251416c7510b3cb", "cast_id": 26, "profile_path": "/q5MzLpJWd0eafrBqQtnwHRh1Bmr.jpg", "order": 12}], "directors": [{"name": "Jim Rash", "department": "Directing", "job": "Director", "credit_id": "52fe4bb39251416c7510b373", "profile_path": "/eWBHlcgATCzoAqNDI7xiAPi7g1d.jpg", "id": 161932}, {"name": "Nat Faxon", "department": "Directing", "job": "Director", "credit_id": "52fe4bb39251416c7510b379", "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "id": 105648}], "vote_average": 7.2, "runtime": 103}, "319": {"poster_path": "/xBO8R3CZfrJ9rrwrZoJ68PgJyAR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12281551, "overview": "Clarence marries hooker Alabama, steals cocaine from her pimp, and tries to sell it in Hollywood, while the owners of the coke try to reclaim it.", "video": false, "id": 319, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "True Romance", "tagline": "Stealing, Cheating, Killing. Who said romance was dead?", "vote_count": 176, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0108399", "adult": false, "backdrop_path": "/f7EbIN1bMf8tOtoSmiqd6mO5p4P.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Davis-Films", "id": 342}, {"name": "August Entertainment", "id": 3322}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1993-09-09", "popularity": 0.914961858275389, "original_title": "True Romance", "budget": 12500000, "cast": [{"name": "Christian Slater", "character": "Clarence Worley", "id": 2224, "credit_id": "52fe4237c3a36847f800cdb7", "cast_id": 4, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Alabama Whitman", "id": 4687, "credit_id": "52fe4237c3a36847f800cdbb", "cast_id": 5, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Michael Rapaport", "character": "Dick Ritchie", "id": 4688, "credit_id": "52fe4237c3a36847f800cdbf", "cast_id": 6, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 2}, {"name": "Bronson Pinchot", "character": "Elliot Blitzer", "id": 4689, "credit_id": "52fe4237c3a36847f800cdc3", "cast_id": 7, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 3}, {"name": "Gary Oldman", "character": "Drexl Spivey", "id": 64, "credit_id": "52fe4237c3a36847f800cdc7", "cast_id": 8, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 4}, {"name": "Dennis Hopper", "character": "Clifford Worley", "id": 2778, "credit_id": "52fe4237c3a36847f800cdcb", "cast_id": 9, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 5}, {"name": "Christopher Walken", "character": "Vincenzo Coccotti", "id": 4690, "credit_id": "52fe4237c3a36847f800cdcf", "cast_id": 10, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 6}, {"name": "Brad Pitt", "character": "Floyd", "id": 287, "credit_id": "52fe4237c3a36847f800cdd3", "cast_id": 11, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 7}, {"name": "Tom Sizemore", "character": "Cody Nicholson", "id": 3197, "credit_id": "52fe4237c3a36847f800cdd7", "cast_id": 12, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 8}, {"name": "Samuel L. Jackson", "character": "Big Don", "id": 2231, "credit_id": "52fe4237c3a36847f800cddb", "cast_id": 13, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 9}, {"name": "Saul Rubinek", "character": "Lee Donowitz", "id": 3712, "credit_id": "52fe4237c3a36847f800cddf", "cast_id": 14, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 10}, {"name": "James Gandolfini", "character": "Virgil", "id": 4691, "credit_id": "52fe4237c3a36847f800cde3", "cast_id": 15, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 11}, {"name": "Frank Adonis", "character": "Frankie", "id": 4692, "credit_id": "52fe4237c3a36847f800cde7", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Paul Bates", "character": "Marty", "id": 4693, "credit_id": "52fe4237c3a36847f800cdeb", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Val Kilmer", "character": "Mentor", "id": 5576, "credit_id": "52fe4237c3a36847f800ce91", "cast_id": 46, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 14}, {"name": "Chris Penn", "character": "Nicky Dimes", "id": 2969, "credit_id": "52fe4237c3a36847f800ce95", "cast_id": 47, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 15}, {"name": "Anna Thomson", "character": "Lucy", "id": 3711, "credit_id": "54dcd141c3a3681233004837", "cast_id": 48, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 16}, {"name": "Eric Allan Kramer", "character": "Boris", "id": 41125, "credit_id": "54f366c99251416b3800459f", "cast_id": 49, "profile_path": "/dHXrTKp6Ksa4TzC2SJCGHzKKzpI.jpg", "order": 17}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4237c3a36847f800cda7", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 7.1, "runtime": 120}, "320": {"poster_path": "/zb0D3vfjcPFvuyHp1mFPOIcYJWH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67000000, "overview": "Two Los Angeles homicide detectives are dispatched to a northern town where the sun doesn't set to investigate the methodical murder of a local teen.", "video": false, "id": 320, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Insomnia", "tagline": "A tough cop. A brilliant killer. An unspeakable crime.", "vote_count": 224, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0278504", "adult": false, "backdrop_path": "/5ezMAWNO5ybkrEnxrgCy74krBa6.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Witt/Thomas Productions", "id": 1089}, {"name": "Section Eight", "id": 129}], "release_date": "2002-05-24", "popularity": 0.972766515814363, "original_title": "Insomnia", "budget": 46000000, "cast": [{"name": "Al Pacino", "character": "Will Dormer", "id": 1158, "credit_id": "52fe4237c3a36847f800cedd", "cast_id": 3, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Robin Williams", "character": "Walter Finch", "id": 2157, "credit_id": "52fe4237c3a36847f800cee1", "cast_id": 4, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Maura Tierney", "character": "Rachel Clement", "id": 16307, "credit_id": "52fe4237c3a36847f800cee5", "cast_id": 5, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 2}, {"name": "Hilary Swank", "character": "Ellie Burr", "id": 448, "credit_id": "52fe4237c3a36847f800ced9", "cast_id": 2, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 3}, {"name": "Martin Donovan", "character": "Hap Eckhart", "id": 42993, "credit_id": "52fe4237c3a36847f800cee9", "cast_id": 6, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 4}, {"name": "Oliver 'Ole' Zemen", "character": "Pilot", "id": 1075149, "credit_id": "52fe4237c3a36847f800ceed", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Paul Dooley", "character": "Chief Nyback", "id": 15900, "credit_id": "52fe4237c3a36847f800cef1", "cast_id": 8, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 6}, {"name": "Nicky Katt", "character": "Fred Duggar", "id": 18070, "credit_id": "52fe4237c3a36847f800cef5", "cast_id": 9, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 7}, {"name": "Larry Holden", "character": "Farrell", "id": 544, "credit_id": "52fe4237c3a36847f800cef9", "cast_id": 10, "profile_path": "/8yV3Rfvt0iWJZwO6jt2YnkdzdzL.jpg", "order": 8}, {"name": "Jay Brazeau", "character": "Francis", "id": 63791, "credit_id": "52fe4237c3a36847f800cefd", "cast_id": 11, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 9}, {"name": "Lorne Cardinal", "character": "Rich", "id": 179495, "credit_id": "52fe4237c3a36847f800cf01", "cast_id": 12, "profile_path": "/kYdEcebOBXPYloeZUeFvyARXkC9.jpg", "order": 10}, {"name": "James Hutson", "character": "Officer #1", "id": 65800, "credit_id": "52fe4237c3a36847f800cf05", "cast_id": 13, "profile_path": "/3JmDtYG87RaXBLVcMJ5CAwRgXIB.jpg", "order": 11}, {"name": "Andrew Campbell", "character": "Officer #2", "id": 169723, "credit_id": "52fe4237c3a36847f800cf09", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Paula Shaw", "character": "Coroner", "id": 99841, "credit_id": "52fe4237c3a36847f800cf0d", "cast_id": 15, "profile_path": "/bqVe6fyo0qtD5ra9KzLTcjm8tF0.jpg", "order": 13}, {"name": "Crystal Lowe", "character": "Kay Connell", "id": 58393, "credit_id": "52fe4237c3a36847f800cf11", "cast_id": 16, "profile_path": "/qnD1hQSJNrKPWZaiYFrUGUfZLBV.jpg", "order": 14}, {"name": "Tasha Simms", "character": "Mrs. Connell", "id": 83211, "credit_id": "52fe4237c3a36847f800cf15", "cast_id": 17, "profile_path": "/rUpxBaMRBei6jyyRTiUqszw566I.jpg", "order": 15}, {"name": "Jonathan Jackson", "character": "Randy Stetz", "id": 23495, "credit_id": "52fe4237c3a36847f800cf1f", "cast_id": 19, "profile_path": "/duZP6q1JQ1Is797xsZplydvgsRL.jpg", "order": 16}, {"name": "Malcolm Boddington", "character": "Principal", "id": 1089889, "credit_id": "52fe4237c3a36847f800cf23", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Katharine Isabelle", "character": "Tanya Francke", "id": 27136, "credit_id": "52fe4237c3a36847f800cf27", "cast_id": 21, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 18}, {"name": "Kerry Sandomirsky", "character": "Trish Eckhart", "id": 152410, "credit_id": "52fe4237c3a36847f800cf2b", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Chris Gauthier", "character": "Uniformed Officer", "id": 53119, "credit_id": "52fe4237c3a36847f800cf2f", "cast_id": 23, "profile_path": "/tzXtw8Mwdfv5Ofy6U9l27YZjZ0v.jpg", "order": 20}, {"name": "Ian Tracey", "character": "Warfield (voice)", "id": 25386, "credit_id": "52fe4237c3a36847f800cf33", "cast_id": 24, "profile_path": "/p2JEHCudpbZNOeNo3lYpLPOCaCD.jpg", "order": 21}, {"name": "Kate Robbins", "character": "Woman on the Road", "id": 162445, "credit_id": "52fe4237c3a36847f800cf37", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Emily Perkins", "character": "Girl at Funeral", "id": 64914, "credit_id": "52fe4237c3a36847f800cf3b", "cast_id": 26, "profile_path": "/z9XbUJ83nKoHjvdvbzrQFrQVx7R.jpg", "order": 23}, {"name": "Dean Wray", "character": "Ticket Taker", "id": 117997, "credit_id": "52fe4237c3a36847f800cf3f", "cast_id": 27, "profile_path": "/1Bk0OKpzgvKlHsbrGnLaVybltiY.jpg", "order": 24}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4237c3a36847f800ced5", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 6.6, "runtime": 118}, "322": {"poster_path": "/qeHasONCKH5sR9HcTWquXI5ZN5y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156822020, "overview": "A thriller about friendship and loyalty, guilt and vengeance, and the fateful affect the past has on the present. Sean Penn won an Oscar for his multifaceted performance as a father who lost his daughter.", "video": false, "id": 322, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mystic River", "tagline": "We bury our sins, we wash them clean.", "vote_count": 317, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327056", "adult": false, "backdrop_path": "/77SSqcbjWooVLUndqjhGugA8eln.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2003-10-07", "popularity": 1.61666706461608, "original_title": "Mystic River", "budget": 25000000, "cast": [{"name": "Sean Penn", "character": "Jimmy Markum", "id": 2228, "credit_id": "52fe4238c3a36847f800d061", "cast_id": 4, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Tim Robbins", "character": "Dave Boyle", "id": 504, "credit_id": "52fe4238c3a36847f800d065", "cast_id": 5, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Sean Devine", "id": 4724, "credit_id": "52fe4238c3a36847f800d069", "cast_id": 6, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Marcia Gay Harden", "character": "Celeste Boyle", "id": 4726, "credit_id": "52fe4238c3a36847f800d06d", "cast_id": 7, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 3}, {"name": "Kevin Chapman", "character": "Val Savage", "id": 4728, "credit_id": "52fe4238c3a36847f800d071", "cast_id": 8, "profile_path": "/7uhnHTZ8W4FsSTtbBSCuyeGGqlK.jpg", "order": 4}, {"name": "Tom Guiry", "character": "Brendan Harris", "id": 4729, "credit_id": "52fe4238c3a36847f800d075", "cast_id": 9, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 5}, {"name": "Emmy Rossum", "character": "Katie Markum", "id": 4730, "credit_id": "52fe4238c3a36847f800d079", "cast_id": 10, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 6}, {"name": "Spencer Treat Clark", "character": "Silent Ray Harris", "id": 4012, "credit_id": "52fe4238c3a36847f800d07d", "cast_id": 11, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 7}, {"name": "Andrew Mackin", "character": "John O'Shea", "id": 4731, "credit_id": "52fe4238c3a36847f800d081", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Adam Nelson", "character": "Nick Savage", "id": 4732, "credit_id": "52fe4238c3a36847f800d085", "cast_id": 13, "profile_path": "/wKAaHygc4o4Mr2HwBxPELm1ysqg.jpg", "order": 9}, {"name": "Robert Wahlberg", "character": "Kevin Savage", "id": 4733, "credit_id": "52fe4238c3a36847f800d089", "cast_id": 14, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 10}, {"name": "Jenny O'Hara", "character": "Esther Harris", "id": 4734, "credit_id": "52fe4238c3a36847f800d08d", "cast_id": 15, "profile_path": "/yyr6dyBOP1BQedXbQ3RDsvoLicb.jpg", "order": 11}, {"name": "John Doman", "character": "Driver", "id": 4735, "credit_id": "52fe4238c3a36847f800d091", "cast_id": 16, "profile_path": "/xfcSluMohRbnMySSlosFmlZyLLy.jpg", "order": 12}, {"name": "Cameron Bowen", "character": "Young Dave", "id": 4736, "credit_id": "52fe4238c3a36847f800d095", "cast_id": 17, "profile_path": "/c6Gy2DzAPE3fRW8IwFp9ING3DlM.jpg", "order": 13}, {"name": "Jason Kelly", "character": "Young Jimmy", "id": 4737, "credit_id": "52fe4238c3a36847f800d099", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Connor Paolo", "character": "Young Sean", "id": 4738, "credit_id": "52fe4238c3a36847f800d09d", "cast_id": 19, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 15}, {"name": "T. Bruce Page", "character": "Jimmy's Father", "id": 4739, "credit_id": "52fe4238c3a36847f800d0a1", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Miles Herter", "character": "Sean's Father", "id": 4740, "credit_id": "52fe4238c3a36847f800d0a5", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Cayden Boyd", "character": "Michael Boyle", "id": 4741, "credit_id": "52fe4238c3a36847f800d0a9", "cast_id": 22, "profile_path": "/fUs3Q321AELBrSxxm0W3OZlIhi.jpg", "order": 18}, {"name": "Tori Davis", "character": "Lauren Devine", "id": 4742, "credit_id": "52fe4238c3a36847f800d0ad", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Jonathan Togo", "character": "Pete", "id": 4743, "credit_id": "52fe4238c3a36847f800d0b1", "cast_id": 24, "profile_path": "/6TqThthkj9pND8ABuVHzgVOQbiL.jpg", "order": 20}, {"name": "Laurence Fishburne", "character": "Sergeant Whitey Powers", "id": 2975, "credit_id": "52fe4238c3a36847f800d0e5", "cast_id": 34, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 21}, {"name": "Laura Linney", "character": "Annabeth Markum", "id": 350, "credit_id": "52fe4238c3a36847f800d0e9", "cast_id": 35, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 22}, {"name": "Eli Wallach", "character": "Mr. Loonie - Liquor Store Owner (uncredited)", "id": 3265, "credit_id": "52fe4238c3a36847f800d0f3", "cast_id": 37, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 23}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4237c3a36847f800d051", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.2, "runtime": 138}, "41283": {"poster_path": "/xaHojTGfidOUfON6DGY14qUqATj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23081726, "overview": "Driver (Dwayne Johnson) has spent the last 10 years in prison planning revenge for the murder of his brother. Now that Driver is free to carry out his deadly plan only two men stand in his way- Billy Bob Thornton plays a veteran cop and Oliver Jackson-Cohen, a crazy hitman. With those two close on his trail, Driver races to carry out his mission as the mystery surrounding his brothers murder deepens.", "video": false, "id": 41283, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Faster", "tagline": "Slow Justice is No Justice", "vote_count": 207, "homepage": "http://www.fasterthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1433108", "adult": false, "backdrop_path": "/oSEq6TrGiGHo1p0gsY1rox2MTSg.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "State Street Pictures", "id": 3356}, {"name": "CBS Films", "id": 5490}], "release_date": "2010-11-23", "popularity": 0.854181353590194, "original_title": "Faster", "budget": 24000000, "cast": [{"name": "Dwayne Johnson", "character": "Driver", "id": 18918, "credit_id": "52fe45c0c3a36847f80d8817", "cast_id": 20, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Billy Bob Thornton", "character": "Cop", "id": 879, "credit_id": "52fe45c0c3a36847f80d87eb", "cast_id": 9, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 1}, {"name": "Maggie Grace", "character": "Lily", "id": 11825, "credit_id": "52fe45c0c3a36847f80d8807", "cast_id": 17, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 3}, {"name": "Carla Gugino", "character": "Cicero", "id": 17832, "credit_id": "52fe45c0c3a36847f80d87f7", "cast_id": 12, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 4}, {"name": "Tom Berenger", "character": "Warden", "id": 13022, "credit_id": "52fe45c0c3a36847f80d87df", "cast_id": 6, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 5}, {"name": "Jan Hoag", "character": "Receptionist", "id": 143204, "credit_id": "52fe45c0c3a36847f80d87e3", "cast_id": 7, "profile_path": "/k8KZOdJKwo3MXeohtsWLvzgxc2a.jpg", "order": 6}, {"name": "Courtney Gains", "character": "Telemarketer", "id": 18708, "credit_id": "52fe45c0c3a36847f80d87e7", "cast_id": 8, "profile_path": "/7u8dTzgr4ODfpKwdYoUlTwptoCq.jpg", "order": 7}, {"name": "Michael Irby", "character": "Vaquero", "id": 124304, "credit_id": "52fe45c0c3a36847f80d87ef", "cast_id": 10, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 8}, {"name": "Josh Clark", "character": "Uniform", "id": 143205, "credit_id": "52fe45c0c3a36847f80d87f3", "cast_id": 11, "profile_path": "/5MfUFuksjtkJVmWqiDmIfsKIWH.jpg", "order": 9}, {"name": "Michael Blain-Rozgay", "character": "TV Anchor", "id": 143206, "credit_id": "52fe45c0c3a36847f80d87fb", "cast_id": 13, "profile_path": "/9NxAdcXilvTJ3BUVhwDxio57U5I.jpg", "order": 10}, {"name": "Mike Epps", "character": "Roy Grone", "id": 51944, "credit_id": "52fe45c0c3a36847f80d87ff", "cast_id": 14, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 11}, {"name": "Sidney S. Liufau", "character": "Kenny", "id": 143208, "credit_id": "52fe45c0c3a36847f80d8803", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Moon Bloodgood", "character": "Marina", "id": 56455, "credit_id": "52fe45c0c3a36847f80d8821", "cast_id": 23, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 13}, {"name": "Adewale Akinnuoye-Agbaje", "character": "The Evangelist", "id": 31164, "credit_id": "52fe45c0c3a36847f80d8855", "cast_id": 32, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 14}, {"name": "Oliver Jackson-Cohen", "character": "Killer", "id": 551020, "credit_id": "52fe45c0c3a36847f80d8859", "cast_id": 33, "profile_path": "/qRtqkOYzm26zsZ9lRp8GQ1qO8ft.jpg", "order": 15}, {"name": "Jennifer Carpenter", "character": "Woman", "id": 53828, "credit_id": "53f710a4c3a36833f4005060", "cast_id": 35, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 16}, {"name": "Geraldine Keams", "character": "Preacher's Wife", "id": 1173474, "credit_id": "54d7a783c3a368439a005f64", "cast_id": 36, "profile_path": "/6UwlPREttyRXJNTyJNtWf7lvGU1.jpg", "order": 17}, {"name": "Buzz Belmondo", "character": "Preacher", "id": 1225650, "credit_id": "54d7a793c3a368439a005f66", "cast_id": 37, "profile_path": null, "order": 18}], "directors": [{"name": "George Tillman, Jr.", "department": "Directing", "job": "Director", "credit_id": "52fe45c0c3a36847f80d87db", "profile_path": "/np4Q1q68M8ejWmkUpChXTIVrQRO.jpg", "id": 66121}], "vote_average": 6.2, "runtime": 98}, "326": {"poster_path": "/dbt9YEAPZjd0LbaK1r8UnOZp2Uv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62022014, "overview": "America is on the search for the murderer Eddie Kim (Bryon Lawson). Sean Jones (Nathan Philips) must fly to L.A. to testify in a hearing against Kim. Accompanied by FBI agent Neville Flynn, the flight receives some unexpected visitors.", "video": false, "id": 326, "genres": [{"id": 28, "name": "Action"}], "title": "Snakes on a Plane", "tagline": "At 30,000 feet, snakes aren't the deadliest thing on this plane.", "vote_count": 109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0417148", "adult": false, "backdrop_path": "/iF5ix0kDBBdcJpMTAwa41znmxC1.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2006-08-18", "popularity": 0.461685755340521, "original_title": "Snakes on a Plane", "budget": 33000000, "cast": [{"name": "Samuel L. Jackson", "character": "Neville Flynn", "id": 2231, "credit_id": "52fe4238c3a36847f800d127", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Julianna Margulies", "character": "Claire Miller", "id": 25654, "credit_id": "52fe4238c3a36847f800d12b", "cast_id": 3, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 1}, {"name": "Kenan Thompson", "character": "Troy", "id": 77330, "credit_id": "52fe4238c3a36847f800d12f", "cast_id": 4, "profile_path": "/4mHHu3XXTOQ9yPKOQ3V8jsQyupT.jpg", "order": 2}, {"name": "Nathan Phillips", "character": "Sean Jones", "id": 60005, "credit_id": "52fe4238c3a36847f800d133", "cast_id": 5, "profile_path": "/mgR2JHtOp9sjvdj2me1p7wyJV4d.jpg", "order": 3}, {"name": "Rachel Blanchard", "character": "Mercedes", "id": 52478, "credit_id": "52fe4238c3a36847f800d137", "cast_id": 6, "profile_path": "/b8C355lKxrfwqHmCD3N22BjXMxz.jpg", "order": 4}, {"name": "Flex Alexander", "character": "Three G's", "id": 109686, "credit_id": "52fe4238c3a36847f800d13b", "cast_id": 7, "profile_path": "/s0KtM2EuM8k35bpep4sh5efzzCf.jpg", "order": 5}, {"name": "Keith Dallas", "character": "Troy", "id": 55788, "credit_id": "52fe4238c3a36847f800d13f", "cast_id": 8, "profile_path": "/4Qhhzd4DxOhKYnhxlrrpCzb5Tio.jpg", "order": 6}, {"name": "Lin Shaye", "character": "Grace", "id": 7401, "credit_id": "52fe4238c3a36847f800d143", "cast_id": 9, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 7}, {"name": "Bruce James", "character": "Ken", "id": 1154165, "credit_id": "52fe4238c3a36847f800d147", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Sunny Mabrey", "character": "Tiffany", "id": 58707, "credit_id": "52fe4238c3a36847f800d14b", "cast_id": 11, "profile_path": "/fKPc0yMFKIMJmvXH8yJcse22BmV.jpg", "order": 9}, {"name": "Casey Dubois", "character": "Curtis", "id": 132347, "credit_id": "52fe4238c3a36847f800d14f", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Gerard Plunkett", "character": "Paul", "id": 27124, "credit_id": "52fe4238c3a36847f800d153", "cast_id": 13, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 11}, {"name": "Terry Chen", "character": "Chen Leong", "id": 11677, "credit_id": "52fe4238c3a36847f800d157", "cast_id": 14, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "Elsa Pataky", "character": "Maria", "id": 73269, "credit_id": "52fe4238c3a36847f800d15b", "cast_id": 15, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 13}, {"name": "Emily Holmes", "character": "Ashley", "id": 37979, "credit_id": "52fe4238c3a36847f800d15f", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Emily Holmes", "character": "Tyler", "id": 37979, "credit_id": "52fe4238c3a36847f800d163", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Mark Houghton", "character": "John Sanders", "id": 26782, "credit_id": "52fe4238c3a36847f800d167", "cast_id": 18, "profile_path": "/cNXgbzlsbucTlj0w3PHhMDCLe0K.jpg", "order": 16}, {"name": "David Koechner", "character": "Rick", "id": 28638, "credit_id": "52fe4238c3a36847f800d16b", "cast_id": 19, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 17}, {"name": "Bobby Cannavale", "character": "Hank Harris", "id": 21127, "credit_id": "52fe4238c3a36847f800d16f", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 18}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d123", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 5.2, "runtime": 105}, "329": {"poster_path": "/c414cDeQ9b6qLPLeKmiJuLDUREJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 920100000, "overview": "A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.", "video": false, "id": 329, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Jurassic Park", "tagline": "An adventure 65 million years in the making.", "vote_count": 1784, "homepage": "http://www.jurassicpark.com/", "belongs_to_collection": {"backdrop_path": "/pJjIH9QN0OkHFV9eue6XfRVnPkr.jpg", "poster_path": "/aQR4VLVxfrTZedr5fml385PFRzI.jpg", "id": 328, "name": "Jurassic Park Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0107290", "adult": false, "backdrop_path": "/8LZ0r7r2SdJIApRvGo2k6CXHq8x.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1993-06-08", "popularity": 5.0912095520141, "original_title": "Jurassic Park", "budget": 63000000, "cast": [{"name": "Sam Neill", "character": "Dr. Alan Grant", "id": 4783, "credit_id": "52fe4238c3a36847f800d295", "cast_id": 4, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 0}, {"name": "Laura Dern", "character": "Dr. Ellie Sattler", "id": 4784, "credit_id": "52fe4238c3a36847f800d299", "cast_id": 5, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 1}, {"name": "Jeff Goldblum", "character": "Dr. Ian Malcolm", "id": 4785, "credit_id": "52fe4238c3a36847f800d29d", "cast_id": 6, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 2}, {"name": "Richard Attenborough", "character": "John Hammond", "id": 4786, "credit_id": "52fe4238c3a36847f800d2a1", "cast_id": 7, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 3}, {"name": "Bob Peck", "character": "Robert Muldoon", "id": 4789, "credit_id": "52fe4238c3a36847f800d2ad", "cast_id": 10, "profile_path": "/rZDQGYzVIHr78B86q3rgHffCJFZ.jpg", "order": 4}, {"name": "Martin Ferrero", "character": "Donald Gennaro", "id": 4790, "credit_id": "52fe4238c3a36847f800d2b5", "cast_id": 12, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 5}, {"name": "Joseph Mazzello", "character": "Tim Murphy", "id": 4787, "credit_id": "52fe4238c3a36847f800d2a5", "cast_id": 8, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 6}, {"name": "Ariana Richards", "character": "Lex Murphy", "id": 4788, "credit_id": "52fe4238c3a36847f800d2a9", "cast_id": 9, "profile_path": "/b4S0q3uSDIophwYcPlBABgJObSX.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Ray Arnold", "id": 2231, "credit_id": "52fe4238c3a36847f800d2b1", "cast_id": 11, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "BD Wong", "character": "Henry Wu", "id": 14592, "credit_id": "52fe4238c3a36847f800d2f7", "cast_id": 25, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 9}, {"name": "Wayne Knight", "character": "Dennis Nedry", "id": 4201, "credit_id": "52fe4238c3a36847f800d2b9", "cast_id": 13, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 10}, {"name": "Gerald R. Molen", "character": "Gerry Harding", "id": 2211, "credit_id": "52fe4238c3a36847f800d2fb", "cast_id": 26, "profile_path": "/ih3yLiYixeQuW2Zp545aHtD5nq.jpg", "order": 11}, {"name": "Miguel Sandoval", "character": "Juanito Rostagno", "id": 30488, "credit_id": "52fe4238c3a36847f800d2ff", "cast_id": 27, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 12}, {"name": "Cameron Thor", "character": "Lewis Dodgson", "id": 176312, "credit_id": "52fe4238c3a36847f800d303", "cast_id": 28, "profile_path": "/kOguY8OMOOBs2L9IyL6OzGvdxJ0.jpg", "order": 13}, {"name": "Christopher John Fields", "character": "Volunteer #1", "id": 145531, "credit_id": "52fe4238c3a36847f800d307", "cast_id": 29, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 14}, {"name": "Greg Burson", "character": "Mr. D.N.A. (voice)", "id": 4791, "credit_id": "52fe4238c3a36847f800d2bd", "cast_id": 14, "profile_path": "/A8sRcbpxZ5ft9UN8nRTc51DNWxS.jpg", "order": 15}, {"name": "Whit Hertford", "character": "Volunteer Boy (as Whitby Hertford)", "id": 166298, "credit_id": "52fe4238c3a36847f800d31d", "cast_id": 33, "profile_path": "/8jhUyJUXdXKh4RJPk2T9NMU5bWP.jpg", "order": 16}, {"name": "Dean Cundey", "character": "Mate", "id": 1060, "credit_id": "52fe4238c3a36847f800d321", "cast_id": 34, "profile_path": "/xunb0FZLZLhca2F5OJcKzV1mjR0.jpg", "order": 17}, {"name": "Jophery C. Brown", "character": "Worker in Raptor Pen (as Jophery Brown)", "id": 9559, "credit_id": "52fe4238c3a36847f800d325", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Tom Mishler", "character": "Helicopter Pilot", "id": 1278538, "credit_id": "52fe4238c3a36847f800d329", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Adrian Escober", "character": "Worker at Amber Mine", "id": 1278539, "credit_id": "52fe4238c3a36847f800d32d", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Richard Kiley", "character": "Jurassic Park Tour Voice (voice)", "id": 26660, "credit_id": "52fe4238c3a36847f800d331", "cast_id": 38, "profile_path": "/jqyhpE74uT5F2H1Ey8LllbKpdAK.jpg", "order": 21}, {"name": "Brad M. Bucklin", "character": "Lab Technician (uncredited)", "id": 1278540, "credit_id": "52fe4238c3a36847f800d335", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Laura Burnett", "character": "Archeologist (uncredited)", "id": 1278541, "credit_id": "52fe4238c3a36847f800d339", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Gary A. Rodriguez", "character": "Miner - Dug Out Mosquito (uncredited)", "id": 1004156, "credit_id": "52fe4238c3a36847f800d33d", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Brian Smrz", "character": "Driver of Grant, Sattler & Malcolm's Jeep (uncredited)", "id": 15335, "credit_id": "52fe4238c3a36847f800d341", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Robert 'Bobby Z' Zajonc", "character": "InGen Helicopter Pilot (uncredited)", "id": 1278542, "credit_id": "52fe4238c3a36847f800d345", "cast_id": 43, "profile_path": null, "order": 26}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d291", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.0, "runtime": 127}, "330": {"poster_path": "/u1fXmEQUCI9CjyHCCYOPBSq2DYo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 229074524, "overview": "Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that Hammond has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.", "video": false, "id": 330, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Lost World: Jurassic Park", "tagline": "Something has survived.", "vote_count": 1036, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pJjIH9QN0OkHFV9eue6XfRVnPkr.jpg", "poster_path": "/aQR4VLVxfrTZedr5fml385PFRzI.jpg", "id": 328, "name": "Jurassic Park Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119567", "adult": false, "backdrop_path": "/6KOPTlgmEb6MkKYTcDA1QAN6vGJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1997-05-19", "popularity": 3.37665076971257, "original_title": "The Lost World: Jurassic Park", "budget": 73000000, "cast": [{"name": "Jeff Goldblum", "character": "Dr. Ian Malcolm", "id": 4785, "credit_id": "52fe4238c3a36847f800d383", "cast_id": 1, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Dr. Sarah Harding", "id": 1231, "credit_id": "52fe4238c3a36847f800d387", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Pete Postlethwaite", "character": "Roland Tembo", "id": 4935, "credit_id": "52fe4238c3a36847f800d38b", "cast_id": 3, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 2}, {"name": "Richard Attenborough", "character": "John Hammond", "id": 4786, "credit_id": "52fe4238c3a36847f800d38f", "cast_id": 4, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 3}, {"name": "Vince Vaughn", "character": "Nick Van Owen", "id": 4937, "credit_id": "52fe4238c3a36847f800d393", "cast_id": 5, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 4}, {"name": "Arliss Howard", "character": "Peter Ludlow", "id": 3229, "credit_id": "52fe4238c3a36847f800d397", "cast_id": 6, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 5}, {"name": "Vanessa Lee Chester", "character": "Kelly Curtis Malcolm", "id": 4938, "credit_id": "52fe4238c3a36847f800d39b", "cast_id": 7, "profile_path": "/7MISWIcns6CLagoPnKGzRXchoMz.jpg", "order": 6}, {"name": "Joseph Mazzello", "character": "Tim Murphy", "id": 4787, "credit_id": "52fe4238c3a36847f800d39f", "cast_id": 8, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 7}, {"name": "Ariana Richards", "character": "Lex Murphy", "id": 4788, "credit_id": "52fe4238c3a36847f800d3a3", "cast_id": 9, "profile_path": "/b4S0q3uSDIophwYcPlBABgJObSX.jpg", "order": 8}, {"name": "Steven Spielberg", "character": "Popcorn-Eating Man", "id": 488, "credit_id": "52fe4238c3a36847f800d3a7", "cast_id": 10, "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "order": 9}, {"name": "Peter Stormare", "character": "Dieter Stark", "id": 53, "credit_id": "52fe4238c3a36847f800d3e7", "cast_id": 22, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 10}, {"name": "Camilla Belle", "character": "Cathy Bowman", "id": 38670, "credit_id": "52fe4238c3a36847f800d3f1", "cast_id": 24, "profile_path": "/dbfyIG91T5ROjDKRjWN8FpMcTay.jpg", "order": 11}, {"name": "Thomas Rosales, Jr.", "character": "Carter", "id": 43010, "credit_id": "52fe4238c3a36847f800d3f5", "cast_id": 25, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 12}, {"name": "Thomas F. Duffy", "character": "Dr. Robert Burke", "id": 46919, "credit_id": "52fe4238c3a36847f800d3f9", "cast_id": 26, "profile_path": "/jLANWUvY91SUNcBfB4z7PQUieE7.jpg", "order": 13}, {"name": "Richard Schiff", "character": "Eddie Carr", "id": 31028, "credit_id": "52fe4238c3a36847f800d3fd", "cast_id": 28, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 14}, {"name": "Harvey Jason", "character": "Ajay Sidhu", "id": 113935, "credit_id": "52fe4238c3a36847f800d401", "cast_id": 29, "profile_path": "/8wgzBygmr51OnXS2uJFZMerIzXT.jpg", "order": 15}, {"name": "Ian Abercrombie", "character": "Butler", "id": 11764, "credit_id": "52fe4238c3a36847f800d405", "cast_id": 30, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 16}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d3ad", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.0, "runtime": 129}, "32823": {"poster_path": "/a3HJGSFuFbaVAK3l8IqdVYchF0B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90029656, "overview": "Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.", "video": false, "id": 32823, "genres": [{"id": 35, "name": "Comedy"}], "title": "Get Him to the Greek", "tagline": "Aaron Green has 72 hours to get a Rock Star from London to L.A. Pray for him.", "vote_count": 179, "homepage": "http://www.gethimtothegreek.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1226229", "adult": false, "backdrop_path": "/5vEJkHXYDYW3RDZD31cQsQ0hoeF.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}], "release_date": "2010-06-04", "popularity": 1.00250919544375, "original_title": "Get Him to the Greek", "budget": 40000000, "cast": [{"name": "Jonah Hill", "character": "Aaron Green", "id": 21007, "credit_id": "52fe44e89251416c9102106d", "cast_id": 1, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Russell Brand", "character": "Aldous Snow", "id": 59919, "credit_id": "52fe44e89251416c91021071", "cast_id": 2, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Jackie Q", "id": 9827, "credit_id": "52fe44e89251416c91021075", "cast_id": 3, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Colm Meaney", "character": "Jonathan Snow", "id": 17782, "credit_id": "52fe44e89251416c91021079", "cast_id": 4, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 3}, {"name": "Sean Combs", "character": "Sergio Roma", "id": 16450, "credit_id": "52fe44e89251416c9102107d", "cast_id": 5, "profile_path": "/hbiHQv0Mz5hrFEMbcVxClSPV8FU.jpg", "order": 4}, {"name": "Tom Felton", "character": "Himself", "id": 10993, "credit_id": "52fe44e89251416c91021081", "cast_id": 6, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 5}, {"name": "Christina Aguilera", "character": "Herself", "id": 53397, "credit_id": "52fe44e89251416c91021085", "cast_id": 7, "profile_path": "/syaj20GgGkFaHtt0khpCZaJD5DJ.jpg", "order": 6}, {"name": "Katy Perry", "character": "Herself", "id": 111455, "credit_id": "52fe44e89251416c91021089", "cast_id": 8, "profile_path": "/mXSbYNKFessbuimdMIxccdRC8ph.jpg", "order": 7}, {"name": "Pink", "character": "Herself", "id": 77271, "credit_id": "52fe44e89251416c9102108d", "cast_id": 9, "profile_path": "/A4tOzacgaBltm522XYxLodG3ImX.jpg", "order": 8}, {"name": "Elisabeth Moss", "character": "Daphne Binks", "id": 32798, "credit_id": "52fe44e99251416c910210c7", "cast_id": 23, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 9}, {"name": "Christine Nguyen", "character": "Lap Dancer in Vegas", "id": 97906, "credit_id": "52fe44e99251416c910210d1", "cast_id": 25, "profile_path": "/46XQZRVaaPQwAwt6guNHxW7VIRM.jpg", "order": 10}, {"name": "Kali Hawk", "character": "Kali", "id": 89462, "credit_id": "52fe44e99251416c910210d5", "cast_id": 26, "profile_path": "/kx8aBd8FcC1gqWQ2OMV63hFza2Z.jpg", "order": 11}, {"name": "Lino Facioli", "character": "Naples", "id": 1014926, "credit_id": "52fe44e99251416c910210d9", "cast_id": 27, "profile_path": "/5OqKQqQBBu8TAEkw5y3rMlvKoS9.jpg", "order": 12}, {"name": "Ato Essandoh", "character": "Smiling African Drummer", "id": 5377, "credit_id": "52fe44e99251416c910210dd", "cast_id": 28, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 13}, {"name": "Derek Theler", "character": "Standard Guest", "id": 1057442, "credit_id": "52fe44e99251416c910210ff", "cast_id": 34, "profile_path": "/qMJWaezGr68GWOSciUXjVtU1sC4.jpg", "order": 14}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe44e89251416c91021093", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 5.9, "runtime": 109}, "332": {"poster_path": "/ii4W1UfRR9o4iBvqVn7xLQhAg3Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nebbish rent-a-cop John Brown clings to life after he's mangled in an explosion perpetrated by the iniquitous Dr. Claw. But robotics expert Brenda Bradford comes to his rescue and replaces his limbs with a cornucopia of gadgets. Transformed into crime-fighting machine, the newly-created Inspector Gadget vows revenge -- and he'll need all his mettle -- and metal -- to bring down Dr. Claw.", "video": false, "id": 332, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Inspector Gadget", "tagline": "The greatest hero ever assembled.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 237445, "name": "Inspector Gadget Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0141369", "adult": false, "backdrop_path": "/St6SHtq38JODJRcCN4G3BWvqJt.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Caravan Pictures", "id": 175}], "release_date": "1999-07-23", "popularity": 0.706168583767152, "original_title": "Inspector Gadget", "budget": 75000000, "cast": [{"name": "Matthew Broderick", "character": "Inspector Gadget / Robo Gadget / John Brown", "id": 4756, "credit_id": "52fe4238c3a36847f800d52d", "cast_id": 2, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Rupert Everett", "character": "Sanford Scolex", "id": 4757, "credit_id": "52fe4238c3a36847f800d531", "cast_id": 3, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 1}, {"name": "Joely Fisher", "character": "Brenda / Robobrenda", "id": 4758, "credit_id": "52fe4238c3a36847f800d535", "cast_id": 4, "profile_path": "/riZ02fz5sKs5X4MHpEoahk9Kl8h.jpg", "order": 2}, {"name": "Michelle Trachtenberg", "character": "Penny", "id": 49961, "credit_id": "52fe4239c3a36847f800d539", "cast_id": 5, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 3}, {"name": "Andy Dick", "character": "Kramer", "id": 43120, "credit_id": "52fe4239c3a36847f800d53d", "cast_id": 6, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 4}, {"name": "Cheri Oteri", "character": "Mayor Wilson", "id": 60252, "credit_id": "52fe4239c3a36847f800d541", "cast_id": 7, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 5}, {"name": "Mike Hagerty", "character": "Sikes", "id": 15105, "credit_id": "52fe4239c3a36847f800d551", "cast_id": 12, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 6}, {"name": "Dabney Coleman", "character": "Chief Quimby", "id": 12850, "credit_id": "52fe4239c3a36847f800d555", "cast_id": 13, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 7}, {"name": "D. L. Hughley", "character": "Gadgetmobile (voice)", "id": 85931, "credit_id": "52fe4239c3a36847f800d559", "cast_id": 14, "profile_path": "/72VEmMvVirWPpiPDWcMNIQswEoT.jpg", "order": 8}, {"name": "Rene Auberjonois", "character": "Artemus Bradford", "id": 9807, "credit_id": "52fe4239c3a36847f800d55d", "cast_id": 15, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 9}, {"name": "Frances Bay", "character": "Thelma", "id": 11794, "credit_id": "52fe4239c3a36847f800d561", "cast_id": 16, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 10}, {"name": "Mr. T", "character": "Himself", "id": 16619, "credit_id": "52fe4239c3a36847f800d565", "cast_id": 17, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 11}, {"name": "Richard Kiel", "character": "Famous Big Guy with Silver Teeth", "id": 10460, "credit_id": "52fe4239c3a36847f800d569", "cast_id": 18, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 12}, {"name": "Richard Lee-Sung", "character": "Famous Villain with Deadly Hat", "id": 61709, "credit_id": "52fe4239c3a36847f800d56d", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Bobby Bell", "character": "Famous Identifier of Sea Planes", "id": 81414, "credit_id": "52fe4239c3a36847f800d571", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "David Kellogg", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d529", "profile_path": "/8CqtSRR1QoLQGD1cbtoA1HwOF2u.jpg", "id": 4759}], "vote_average": 4.4, "runtime": 78}, "334": {"poster_path": "/jxkHxPiMfGiFvxSOduNV4oIKJI5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48451803, "overview": "An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.", "video": false, "id": 334, "genres": [{"id": 18, "name": "Drama"}], "title": "Magnolia", "tagline": "Things fall down. People look up. And when it rains, it pours.", "vote_count": 186, "homepage": "http://www.magnoliamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0175880", "adult": false, "backdrop_path": "/9In3XGQSdr2yfgUoEdCpqxEGAOO.jpg", "production_companies": [{"name": "Ghoulardi Film Company", "id": 178}, {"name": "The Magnolia Project", "id": 179}, {"name": "New Line Cinema", "id": 12}], "release_date": "1999-12-08", "popularity": 1.25854140637684, "original_title": "Magnolia", "budget": 37000000, "cast": [{"name": "Julianne Moore", "character": "Linda Partridge", "id": 1231, "credit_id": "52fe4239c3a36847f800d681", "cast_id": 3, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "William H. Macy", "character": "Donnie Smith", "id": 3905, "credit_id": "52fe4239c3a36847f800d6f3", "cast_id": 26, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 1}, {"name": "John C. Reilly", "character": "Jim Kurring", "id": 4764, "credit_id": "52fe4239c3a36847f800d685", "cast_id": 4, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 2}, {"name": "Tom Cruise", "character": "Frank T.J. Mackey", "id": 500, "credit_id": "52fe4239c3a36847f800d689", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 3}, {"name": "Philip Baker Hall", "character": "Jimmy Gator", "id": 4492, "credit_id": "52fe4239c3a36847f800d68d", "cast_id": 6, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Phil Parma", "id": 1233, "credit_id": "52fe4239c3a36847f800d691", "cast_id": 7, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Jason Robards", "character": "Earl Partridge", "id": 4765, "credit_id": "52fe4239c3a36847f800d695", "cast_id": 8, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 6}, {"name": "Alfred Molina", "character": "Solomon Solomon", "id": 658, "credit_id": "52fe4239c3a36847f800d699", "cast_id": 9, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 7}, {"name": "Melora Walters", "character": "Claudia Wilson Gator", "id": 4766, "credit_id": "52fe4239c3a36847f800d69d", "cast_id": 10, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 8}, {"name": "Michael Bowen", "character": "Rick Spector", "id": 2234, "credit_id": "52fe4239c3a36847f800d6a1", "cast_id": 11, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 9}, {"name": "Jeremy Blackman", "character": "Stanley Spector", "id": 4779, "credit_id": "52fe4239c3a36847f800d6ef", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Emmanuel Johnson", "character": "Dixon", "id": 4777, "credit_id": "52fe4239c3a36847f800d6e7", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Melinda Dillon", "character": "Rose Gator", "id": 4778, "credit_id": "52fe4239c3a36847f800d6eb", "cast_id": 24, "profile_path": "/f4DU3lNCJqNVgwDZmHMlNV96rKV.jpg", "order": 12}, {"name": "April Grace", "character": "Gwenovier", "id": 10691, "credit_id": "52fe4239c3a36847f800d6f7", "cast_id": 27, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 13}, {"name": "Felicity Huffman", "character": "Cynthia", "id": 7427, "credit_id": "52fe4239c3a36847f800d6fb", "cast_id": 28, "profile_path": "/wtFoENVM5jo4NhcWx9qFWuvFuXC.jpg", "order": 14}, {"name": "Orlando Jones", "character": "Worm", "id": 18270, "credit_id": "52fe4239c3a36847f800d6ff", "cast_id": 29, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 15}, {"name": "Ricky Jay", "character": "Narrator/Burt Ramsey", "id": 10743, "credit_id": "52fe4239c3a36847f800d703", "cast_id": 30, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 16}, {"name": "Patton Oswalt", "character": "Delmer Darion", "id": 10872, "credit_id": "52fe4239c3a36847f800d707", "cast_id": 31, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 17}, {"name": "Neil Flynn", "character": "Stanley Berry", "id": 43776, "credit_id": "52fe4239c3a36847f800d70b", "cast_id": 32, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 18}, {"name": "Henry Gibson", "character": "Thurston Howell", "id": 19439, "credit_id": "52fe4239c3a36847f800d72d", "cast_id": 38, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 19}, {"name": "Miriam Margolyes", "character": "Faye Barringer", "id": 6199, "credit_id": "53071373c3a368518100005a", "cast_id": 39, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 20}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4239c3a36847f800d677", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 7.3, "runtime": 188}, "335": {"poster_path": "/rVAHRtAMhV8QVXQMQ8NxNbZXCDp.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5321508, "overview": "This classic western masterpiece is an epic film about a widow whose land and life are in danger as the railroad is getting closer and closer to taking them over. A mysterious harmonica player joins forces with a desperado to protect the woman and her land.", "video": false, "id": 335, "genres": [{"id": 28, "name": "Action"}, {"id": 37, "name": "Western"}], "title": "Once Upon a Time in the West", "tagline": "There were three men in her life. One to take her... one to love her... and one to kill her.", "vote_count": 376, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064116", "adult": false, "backdrop_path": "/lagdbLlNPVVbFczUgRnGjdeKeQC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Finanzia San Marco", "id": 11386}, {"name": "Rafran Cinematografica", "id": 218}], "release_date": "1969-08-10", "popularity": 0.807393807533725, "original_title": "C'era una volta il West", "budget": 5000000, "cast": [{"name": "Henry Fonda", "character": "Frank", "id": 4958, "credit_id": "52fe4239c3a36847f800d781", "cast_id": 9, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 0}, {"name": "Claudia Cardinale", "character": "Jill McBain", "id": 4959, "credit_id": "52fe4239c3a36847f800d785", "cast_id": 10, "profile_path": "/tV3oboOm0Iix0AEtQKGPnPE2hbF.jpg", "order": 1}, {"name": "Jason Robards", "character": "Cheyenne", "id": 4765, "credit_id": "52fe4239c3a36847f800d789", "cast_id": 11, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 2}, {"name": "Charles Bronson", "character": "Harmonica", "id": 4960, "credit_id": "52fe4239c3a36847f800d78d", "cast_id": 12, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 3}, {"name": "Gabriele Ferzetti", "character": "Morton (railroad baron)", "id": 4961, "credit_id": "52fe4239c3a36847f800d791", "cast_id": 13, "profile_path": "/gpiJIBogUvPgKIwf65BXu37NDY1.jpg", "order": 4}, {"name": "Paolo Stoppa", "character": "Sam", "id": 4962, "credit_id": "52fe4239c3a36847f800d795", "cast_id": 14, "profile_path": "/clvCKNVh6NIMsTCFcgRWSCHuGwd.jpg", "order": 5}, {"name": "Woody Strode", "character": "Stony (member of Frank's gang)", "id": 4963, "credit_id": "52fe4239c3a36847f800d799", "cast_id": 15, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 6}, {"name": "Jack Elam", "character": "Snaky (member of Frank's gang)", "id": 4965, "credit_id": "52fe4239c3a36847f800d79d", "cast_id": 16, "profile_path": "/viH168AYhlsKm4jCT0zrWWAFr94.jpg", "order": 7}, {"name": "Keenan Wynn", "character": "Sheriff", "id": 4966, "credit_id": "52fe4239c3a36847f800d7a1", "cast_id": 17, "profile_path": "/6DcmPzaBXRrlgi75r2RK6yVWEMM.jpg", "order": 8}, {"name": "Frank Wolff", "character": "Brett McBain", "id": 4968, "credit_id": "52fe4239c3a36847f800d7a5", "cast_id": 18, "profile_path": "/iVv0TkXmoHNhJqM4fUdCWMRgXF9.jpg", "order": 9}, {"name": "Lionel Stander", "character": "Barman", "id": 4969, "credit_id": "52fe4239c3a36847f800d7a9", "cast_id": 19, "profile_path": "/gDbj1eKxhXraVY36m1q4ypAdegJ.jpg", "order": 10}, {"name": "Al Mulock", "character": "Knuckles - Member of Frank's Gang (uncredited)", "id": 129314, "credit_id": "53c6acacc3a36862600023e8", "cast_id": 32, "profile_path": "/80ibJHwEbjS6Wnb9DbkennzKLBL.jpg", "order": 11}, {"name": "Aldo Sambrell", "character": "Cheyenne's Lieutenant (uncredited)", "id": 49895, "credit_id": "53c6acc1c3a36862550022fb", "cast_id": 33, "profile_path": "/AuDVbzviUIWEi9PJAeilFWTf5Xq.jpg", "order": 12}, {"name": "Fabio Testi", "character": "Member of Frank's Gang with Black Hat at Auction (uncredited)", "id": 21181, "credit_id": "53c6acdac3a368624b0022c2", "cast_id": 34, "profile_path": "/qqE1Vh8guRCoIGkfNRuE0mXx0vL.jpg", "order": 13}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4239c3a36847f800d76b", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.8, "runtime": 175}, "338": {"poster_path": "/2YTTkqdiuQea07s1nMPGQTR58tt.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 79384880, "overview": "Good Bye Lenin was the biggest box-office hit for Germany in 2003. An affectionate and refreshing East/West-Germany comedy about a boy who\u2019s mother was in a coma while the Berlin wall fell and when she wakes up he must try to keep her from learning what happen (since she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.", "video": false, "id": 338, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Good Bye, Lenin!", "tagline": "The German Democratic Republic lives on -- in 79 square meters!", "vote_count": 144, "homepage": "http://www.good-bye-lenin.de/index2.php", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0301357", "adult": false, "backdrop_path": "/ihrwADHDVr0gj6FPbHDv8DZJn2I.jpg", "production_companies": [{"name": "WDR", "id": 46}, {"name": "X Filme", "id": 96}, {"name": "Arte", "id": 201}], "release_date": "2003-02-13", "popularity": 0.614069457270114, "original_title": "Good Bye, Lenin!", "budget": 4800000, "cast": [{"name": "Daniel Br\u00fchl", "character": "Alexander 'Alex' Kerner", "id": 3872, "credit_id": "52fe4239c3a36847f800d971", "cast_id": 4, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 0}, {"name": "Katrin Sass", "character": "Christiane Kerner", "id": 4792, "credit_id": "52fe4239c3a36847f800d975", "cast_id": 5, "profile_path": "/xnXEz2KIzZGn0P46LAWYpW2iYdf.jpg", "order": 1}, {"name": "Chulpan Khamatova", "character": "Lara", "id": 4793, "credit_id": "52fe4239c3a36847f800d979", "cast_id": 6, "profile_path": "/5bH3nmaZuHhQ0M1VIx4NfoUXZUA.jpg", "order": 2}, {"name": "Maria Simon", "character": "Ariane Kerner", "id": 4794, "credit_id": "52fe4239c3a36847f800d97d", "cast_id": 7, "profile_path": "/rTCZcZwtXZM23n3zmy7tO1XxwHC.jpg", "order": 3}, {"name": "Florian Lukas", "character": "Denis", "id": 4795, "credit_id": "52fe4239c3a36847f800d981", "cast_id": 8, "profile_path": "/g3AW6IIUEjmjCLTnS0Q5SfjcsUd.jpg", "order": 4}, {"name": "Alexander Beyer", "character": "Rainer", "id": 4796, "credit_id": "52fe4239c3a36847f800d985", "cast_id": 9, "profile_path": "/krl8hF4VBmbizQuddEoG6KvDW0o.jpg", "order": 5}, {"name": "Burghart Klau\u00dfner", "character": "Robert Kerner", "id": 3934, "credit_id": "52fe4239c3a36847f800d989", "cast_id": 10, "profile_path": "/uH3aUfhfgQy4eJvi5otRMKgIbme.jpg", "order": 6}, {"name": "Michael Gwisdek", "character": "Klapprath", "id": 697, "credit_id": "52fe4239c3a36847f800d98d", "cast_id": 11, "profile_path": "/rjOU3IAEkL7tjrcFjLtKurF5jD0.jpg", "order": 7}, {"name": "Christine Schorn", "character": "Frau Sch\u00e4fer", "id": 4797, "credit_id": "52fe4239c3a36847f800d991", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "J\u00fcrgen Holtz", "character": "Herr Ganske", "id": 4798, "credit_id": "52fe4239c3a36847f800d995", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Jochen Stern", "character": "Herr Mehlert", "id": 210570, "credit_id": "53e13dfcc3a3686c510040cd", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Stefan Walz", "character": "Taxifahrer / Sigmund J\u00e4hn", "id": 1350135, "credit_id": "53e13e42c3a3686c56004080", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Eberhard Kirchberg", "character": "Dr. Wagner", "id": 13746, "credit_id": "53e13e60c3a3686c5d0041f7", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Hans-Uwe Bauer", "character": "Dr. Mewes", "id": 8200, "credit_id": "53e13e77c3a3686c4d00418f", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "J\u00fcrgen Vogel", "character": "Das K\u00fcken", "id": 17373, "credit_id": "52fe4239c3a36847f800d9d5", "cast_id": 24, "profile_path": "/6YSNLd5gKHqDua5Qm2kCNOoU6GL.jpg", "order": 14}, {"name": "Elke Werner", "character": "Verk\u00e4uferin HO-Markt", "id": 17411, "credit_id": "52fe4239c3a36847f800d9d9", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Wolfgang Becker", "department": "Directing", "job": "Director", "credit_id": "52fe4239c3a36847f800d961", "profile_path": null, "id": 4780}], "vote_average": 7.2, "runtime": 121}, "183011": {"poster_path": "/kde98IJmR3HBh5B366dYlVE4BNK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When time travel allows a past wrong to be righted for The Flash and his family, the ripples of the event prove disastrous as a fractured, alternate reality now exists where a Justice League never formed, and even Superman is nowhere to be found. Teaming with a grittier, more violent Dark Knight and Cyborg, Flash races to restore the continuity of his original timeline while this new world is ravaged by a fierce war between Wonder Woman's Amazons and Aquaman\u2019s Atlanteans.", "video": false, "id": 183011, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Justice League: The Flashpoint Paradox", "tagline": "Fight the future.", "vote_count": 217, "homepage": "http://www.dccomics.com/movies/justice-league-the-flashpoint-paradox-2013", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2820466", "adult": false, "backdrop_path": "/zHKslz6juyOQdv8mKbOk6I4cZJj.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2013-07-28", "popularity": 0.640695163394888, "original_title": "Justice League: The Flashpoint Paradox", "budget": 3500000, "cast": [{"name": "Kevin Conroy", "character": "Bruce Wayne / Batman (voice)", "id": 34947, "credit_id": "52fe4c929251416c7511eb4b", "cast_id": 1, "profile_path": "/oWfPFRH65zNdeV46zSTXD0jVr8q.jpg", "order": 0}, {"name": "Vanessa Marshall", "character": "Wonder Woman (voice)", "id": 81663, "credit_id": "52fe4c929251416c7511eb4f", "cast_id": 2, "profile_path": "/wOXilt4TVOd0LuTw6RbWhe5DUy4.jpg", "order": 1}, {"name": "Ron Perlman", "character": "Slade Wilson / Deathstroke (voice)", "id": 2372, "credit_id": "52fe4c929251416c7511eb53", "cast_id": 3, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 2}, {"name": "Dana Delany", "character": "Lois Lane (voice)", "id": 65002, "credit_id": "52fe4c929251416c7511eb57", "cast_id": 4, "profile_path": "/dCvBuRdn2h4GpAfdJIzvl6MUqIG.jpg", "order": 3}, {"name": "C. Thomas Howell", "character": "Eobard Thawne / Reverse-Flash (voice)", "id": 2878, "credit_id": "52fe4c929251416c7511eb5b", "cast_id": 5, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 4}, {"name": "Kevin McKidd", "character": "Thomas Wayne / Flashpoint Batman (voice)", "id": 9013, "credit_id": "52fe4c939251416c7511eb83", "cast_id": 15, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 5}, {"name": "Michael B. Jordan", "character": "Cyborg (voice)", "id": 135651, "credit_id": "52fe4c939251416c7511eb87", "cast_id": 16, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 6}, {"name": "Sam Daly", "character": "Superman (voice)", "id": 1169115, "credit_id": "52fe4c939251416c7511eb8b", "cast_id": 17, "profile_path": "/gAHep3xTh4VfMZqeDtFvAjv5rcR.jpg", "order": 7}, {"name": "Justin Chambers", "character": "Barry Allen / The Flash (voice)", "id": 20746, "credit_id": "52fe4c939251416c7511eb8f", "cast_id": 18, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 8}, {"name": "Danny Huston", "character": "General Lane (voice)", "id": 6413, "credit_id": "52fe4c939251416c7511eb93", "cast_id": 19, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 9}, {"name": "Cary Elwes", "character": "Aquaman (voice)", "id": 2130, "credit_id": "52fe4c939251416c7511eb97", "cast_id": 21, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 10}, {"name": "Nathan Fillion", "character": "Hal Jordan / Green Lantern (voice)", "id": 51797, "credit_id": "52fe4c939251416c7511ebad", "cast_id": 25, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 11}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4c939251416c7511eb79", "profile_path": null, "id": 105643}], "vote_average": 7.0, "runtime": 75}, "340": {"poster_path": "/d83IUUdA8mbenp5RaEuC02MbN6f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2697930, "overview": "A film based on the semi-autobiographical novel of the same name by American writer Jonathan Safran Foer, in which a young Jewish American man endeavors\u2014with the help of eccentric, distant relatives\u2014to find the woman who saved his grandfather during World War II, in a Ukrainian village which was ultimately razed by the Nazis.", "video": false, "id": 340, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Everything is Illuminated", "tagline": "Leave Normal Behind.", "vote_count": 56, "homepage": "http://wip.warnerbros.com/everythingisilluminated/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404030", "adult": false, "backdrop_path": "/pHs2A0WLP64aumBsmyHulYiYKce.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Big Beach Productions", "id": 188}], "release_date": "2005-09-16", "popularity": 0.264998012931176, "original_title": "Everything is Illuminated", "budget": 7000000, "cast": [{"name": "Elijah Wood", "character": "Jonathan Safran Foer", "id": 109, "credit_id": "52fe423ac3a36847f800db5d", "cast_id": 5, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Eugene Hutz", "character": "Alex", "id": 4846, "credit_id": "52fe423ac3a36847f800db59", "cast_id": 4, "profile_path": "/6PaFzCej5B31OAv31t7L3ZTp2qn.jpg", "order": 1}, {"name": "Boris Leskin", "character": "Grandfather", "id": 4852, "credit_id": "52fe423ac3a36847f800db9d", "cast_id": 18, "profile_path": "/sYTOrRfehOEdYgyv0w1LLknbpOZ.jpg", "order": 2}, {"name": "Jana Hrabetova", "character": "Jonathan's Grandmother", "id": 4858, "credit_id": "52fe423ac3a36847f800db89", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Jonathan Safran Foer", "character": "Leaf Blower", "id": 4853, "credit_id": "52fe423ac3a36847f800db85", "cast_id": 12, "profile_path": "/cJwo2CO2B5PnAkCwHN6kej5ja3x.jpg", "order": 4}, {"name": "Stephen Samudovsky", "character": "Jonathan's Grandfather Safran", "id": 4861, "credit_id": "52fe423ac3a36847f800db8d", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Oleksandr Choroshko", "character": "Alexander Perchov, Father", "id": 4862, "credit_id": "52fe423ac3a36847f800db91", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Gil Kazimirov", "character": "Igor", "id": 4863, "credit_id": "52fe423ac3a36847f800db95", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Zuzana Hodkova", "character": "Alex's Mother", "id": 4860, "credit_id": "52fe423ac3a36847f800db99", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Ljubomir Dezera", "character": "Young Jonathan", "id": 4864, "credit_id": "52fe423ac3a36847f800dba1", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Laryssa Lauret", "character": "Lista", "id": 4879, "credit_id": "52fe423ac3a36847f800dbc9", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Tereza Veselkova", "character": "Augustine", "id": 4880, "credit_id": "52fe423ac3a36847f800dbcd", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Vera Sindelarova", "character": "Young Grandfather", "id": 4881, "credit_id": "52fe423ac3a36847f800dbd1", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Lukas Kral", "character": "Young Lista", "id": 4882, "credit_id": "52fe423ac3a36847f800dbd5", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Liev Schreiber", "department": "Directing", "job": "Director", "credit_id": "52fe423ac3a36847f800db49", "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "id": 23626}], "vote_average": 7.6, "runtime": 106}, "9614": {"poster_path": "/pG5edeKkntnt5A799Y0UNI5hi9W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41205099, "overview": "Failed hockey player-turned-golf whiz Happy Gilmore -- whose unconventional approach and antics on the grass courts the ire of rival Shooter McGavin -- is determined to win a PGA tournament so he can save his granny's house with the prize money. Meanwhile, an attractive tour publicist tries to soften Happy's image.", "video": false, "id": 9614, "genres": [{"id": 35, "name": "Comedy"}], "title": "Happy Gilmore", "tagline": "He doesn't play golf... he destroys it.", "vote_count": 216, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116483", "adult": false, "backdrop_path": "/z5qwh317CANMZO7KMPAEepwxlyq.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Brillstein-Grey Entertainment", "id": 1606}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "1996-02-16", "popularity": 0.492802350785399, "original_title": "Happy Gilmore", "budget": 10000000, "cast": [{"name": "Adam Sandler", "character": "Happy Gilmore", "id": 19292, "credit_id": "52fe4511c3a36847f80ba93d", "cast_id": 11, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Christopher McDonald", "character": "Shooter McGavin", "id": 4443, "credit_id": "52fe4511c3a36847f80ba941", "cast_id": 12, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 1}, {"name": "Julie Bowen", "character": "Virginia Venit", "id": 31171, "credit_id": "52fe4511c3a36847f80ba945", "cast_id": 13, "profile_path": "/fbELrYxMYvUftgceh0KXnw2mQ8r.jpg", "order": 2}, {"name": "Frances Bay", "character": "Grandma Gilmore", "id": 11794, "credit_id": "52fe4511c3a36847f80ba949", "cast_id": 14, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 3}, {"name": "Carl Weathers", "character": "Chubbs", "id": 1101, "credit_id": "52fe4511c3a36847f80ba94d", "cast_id": 15, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 4}, {"name": "Richard Kiel", "character": "Mr. Larson", "id": 10460, "credit_id": "52fe4511c3a36847f80ba951", "cast_id": 16, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 5}, {"name": "Bob Barker", "character": "Himself", "id": 170802, "credit_id": "52fe4511c3a36847f80ba955", "cast_id": 17, "profile_path": "/4ex3lzv9LEibpLibFkqSdWiRBMz.jpg", "order": 6}, {"name": "Allen Covert", "character": "Otto", "id": 20818, "credit_id": "52fe4511c3a36847f80ba959", "cast_id": 18, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 7}, {"name": "Joe Flaherty", "character": "Jeering Fan", "id": 59196, "credit_id": "52fe4511c3a36847f80ba95d", "cast_id": 19, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 8}, {"name": "Lee Trevino", "character": "Himself", "id": 392685, "credit_id": "52fe4511c3a36847f80ba961", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Robert Smigel", "character": "IRS Agent", "id": 53684, "credit_id": "52fe4511c3a36847f80ba965", "cast_id": 21, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 10}, {"name": "Dennis Dugan", "character": "Doug Thompson", "id": 17494, "credit_id": "52fe4511c3a36847f80ba969", "cast_id": 22, "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "order": 11}, {"name": "Kevin Nealon", "character": "Potter", "id": 58478, "credit_id": "52fe4511c3a36847f80ba96d", "cast_id": 23, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 12}, {"name": "Verne Lundquist", "character": "Announcer", "id": 1024638, "credit_id": "52fe4511c3a36847f80ba971", "cast_id": 24, "profile_path": "/AkUVqg2rkExTneawEUSYFjYnv8O.jpg", "order": 13}, {"name": "Jared Van Snellenberg", "character": "Happy's Waterbury Caddy", "id": 191857, "credit_id": "52fe4511c3a36847f80ba975", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Ken Camroux", "character": "Coach", "id": 106789, "credit_id": "52fe4511c3a36847f80ba979", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe4511c3a36847f80ba903", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.4, "runtime": 92}, "49494": {"poster_path": "/1e3SKFIEy8zPYICzQXBqeKM6xx8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27122040, "overview": "In 140 AD, twenty years after the unexplained disappearance of the entire Ninth Legion in the mountains of Scotland, young centurion Marcus Aquila (Tatum) arrives from Rome to solve the mystery and restore the reputation of his father, the commander of the Ninth. Accompanied only by his British slave Esca (Bell), Marcus sets out across Hadrian's Wall into the uncharted highlands of Caledonia - to confront its savage tribes, make peace with his father's memory, and retrieve the lost legion's golden emblem, the Eagle of the Ninth.", "video": false, "id": 49494, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "The Eagle", "tagline": "The destiny of a soldier. The honour of a slave. The fate of an empire.", "vote_count": 118, "homepage": "http://focusfeatures.com/the_eagle", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034389", "adult": false, "backdrop_path": "/aRL0VSl58stheyPRVDRtgbq1TEx.jpg", "production_companies": [{"name": "Prime Focus", "id": 15357}, {"name": "Toledo Productions", "id": 6326}, {"name": "Film4", "id": 9349}, {"name": "Focus Features", "id": 10146}, {"name": "Twins Financing", "id": 20899}], "release_date": "2011-02-08", "popularity": 0.550334844370062, "original_title": "The Eagle", "budget": 25000000, "cast": [{"name": "Channing Tatum", "character": "Marcus Aquila", "id": 38673, "credit_id": "52fe4797c3a36847f813de9d", "cast_id": 1, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Mark Strong", "character": "Guern", "id": 2983, "credit_id": "52fe4797c3a36847f813dea1", "cast_id": 2, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Esca", "id": 478, "credit_id": "52fe4797c3a36847f813dea5", "cast_id": 3, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Donald Sutherland", "character": "Aquila", "id": 55636, "credit_id": "52fe4797c3a36847f813dea9", "cast_id": 4, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 3}, {"name": "Denis O'Hare", "character": "Lotorius", "id": 81681, "credit_id": "52fe4797c3a36847f813dead", "cast_id": 5, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 4}, {"name": "Tahar Rahim", "character": "Seal Prince", "id": 81051, "credit_id": "53272edbc3a3684133004c70", "cast_id": 15, "profile_path": "/wXKlcceUG1aRzisnL2nxbQVe18w.jpg", "order": 5}, {"name": "Dakin Matthews", "character": "Claudius Marcellus", "id": 43364, "credit_id": "53272ef2c3a368572500bdd3", "cast_id": 16, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 6}, {"name": "Douglas Henshall", "character": "Cradoc", "id": 35862, "credit_id": "53272f03c3a36824af00446b", "cast_id": 17, "profile_path": "/liGX3t9DqAXK6vdq3SromuJYcqE.jpg", "order": 7}, {"name": "Paul Ritter", "character": "Galba", "id": 52888, "credit_id": "53272f15c3a36824b500b170", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Pip Carter", "character": "Servius Placidus", "id": 230681, "credit_id": "53272f25c3a36824b500b176", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Ned Dennehy", "character": "Seal Chief / The Horned One", "id": 63362, "credit_id": "53272f36c3a36813c2004843", "cast_id": 20, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 10}, {"name": "Istv\u00e1n G\u00f6z", "character": "Cohort Centurion", "id": 143576, "credit_id": "53272f48c3a3682378004c04", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bence Ger\u00f6", "character": "Celt Boy / Young Marcus", "id": 1301674, "credit_id": "53272f57c3a3683dbf004b8f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Zsolt L\u00e1szl\u00f3", "character": "Paulus", "id": 125381, "credit_id": "53272f63c3a36813c2004848", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Julian Lewis Jones", "character": "Cassius", "id": 109650, "credit_id": "53272f7ac3a36824af004474", "cast_id": 24, "profile_path": "/yYB4vsidFakP6oAfeXU3PZvDpM6.jpg", "order": 14}, {"name": "Brian Gleeson", "character": "Traveller #1", "id": 63364, "credit_id": "54b536d0c3a368783b002425", "cast_id": 25, "profile_path": "/o0Zic3R5sz2Mmrnz2CfvRuZYulY.jpg", "order": 15}, {"name": "Jon Campling", "character": "Traveller #2", "id": 1140635, "credit_id": "54b536dd9251417369004c7c", "cast_id": 26, "profile_path": "/u5Iu5PzbcJpiZTIbrg0z3tvJH3e.jpg", "order": 16}, {"name": "Alad\u00e1r Lakl\u00f3th", "character": "Flavius Aquila", "id": 1413152, "credit_id": "54b536eac3a3685fbd001cf6", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe4797c3a36847f813deb3", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 6.0, "runtime": 114}, "8536": {"poster_path": "/d8bydymAcNHwya3pHMyP62TL2re.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108185706, "overview": "Three escaped criminals from the planet Krypton test the Man of Steel's mettle. Led by Gen. Zod, the Kryptonians take control of the White House and partner with Lex Luthor to destroy Superman and rule the world. But Superman, who attempts to make himself human in order to get closer to Lois, realizes he has a responsibility to save the planet.", "video": false, "id": 8536, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman II", "tagline": "The Man of Steel meets his match!", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0081573", "adult": false, "backdrop_path": "/1d0bPDy0Ud7g7vZ5qnKI6HsduLE.jpg", "production_companies": [{"name": "International Film Productions", "id": 2039}, {"name": "Dovemead Films", "id": 51861}, {"name": "Film Export A.G.", "id": 51862}], "release_date": "1980-12-04", "popularity": 1.27619998162416, "original_title": "Superman II", "budget": 54000000, "cast": [{"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe44aec3a36847f80a3f33", "cast_id": 1, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 0}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe44aec3a36847f80a3f37", "cast_id": 2, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 1}, {"name": "Gene Hackman", "character": "Lex Luthor", "id": 193, "credit_id": "52fe44aec3a36847f80a3f3b", "cast_id": 3, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 2}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe44aec3a36847f80a3f3f", "cast_id": 4, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 3}, {"name": "Marc McClure", "character": "Jimmy Olsen", "id": 1067, "credit_id": "52fe44aec3a36847f80a3f43", "cast_id": 5, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 4}, {"name": "Ned Beatty", "character": "Otis", "id": 13726, "credit_id": "52fe44aec3a36847f80a3f47", "cast_id": 6, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 5}, {"name": "Sarah Douglas", "character": "Ursa", "id": 31364, "credit_id": "52fe44aec3a36847f80a3f4b", "cast_id": 7, "profile_path": "/als2MT3X28mDol3e5uEy25agNRM.jpg", "order": 6}, {"name": "Jack O'Halloran", "character": "Non", "id": 41224, "credit_id": "52fe44aec3a36847f80a3f4f", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Valerie Perrine", "character": "Eve Teschmacher", "id": 26483, "credit_id": "52fe44aec3a36847f80a3f53", "cast_id": 9, "profile_path": "/1Er0uPPTmQ7perH3hZmozvbYDX.jpg", "order": 8}, {"name": "Susannah York", "character": "Lara", "id": 13326, "credit_id": "52fe44aec3a36847f80a3f57", "cast_id": 10, "profile_path": "/uVWQdc4Oae7JlhewHYmxysOnORl.jpg", "order": 9}, {"name": "Terence Stamp", "character": "General Zod", "id": 28641, "credit_id": "52fe44aec3a36847f80a3f5b", "cast_id": 11, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 10}, {"name": "E.G. Marshall", "character": "US President", "id": 5249, "credit_id": "52fe44aec3a36847f80a3f5f", "cast_id": 12, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 11}, {"name": "Clifton James", "character": "Sheriff", "id": 10224, "credit_id": "52fe44aec3a36847f80a3f63", "cast_id": 13, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 12}, {"name": "Michael Shannon", "character": "President's Aide", "id": 1184168, "credit_id": "548090de9251416e6c002add", "cast_id": 31, "profile_path": "/iIKbgOWkiyDTT1ip3mSUxWRZTWZ.jpg", "order": 13}], "directors": [{"name": "Richard Lester", "department": "Directing", "job": "Director", "credit_id": "52fe44aec3a36847f80a3f69", "profile_path": "/2H4PFCd4G8BLHK34lTsUs3cn2tM.jpg", "id": 10586}], "vote_average": 6.2, "runtime": 127}, "345": {"poster_path": "/c8X6UIbzbhBBuyuHRrzVzaCMbkZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162091208, "overview": "After Dr. Bill Hartford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.", "video": false, "id": 345, "genres": [{"id": 18, "name": "Drama"}], "title": "Eyes Wide Shut", "tagline": "Cruise. Kidman. Kubrick.", "vote_count": 266, "homepage": "http://eyeswideshut.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120663", "adult": false, "backdrop_path": "/nTBRgAF4lWzGZ1GWOqsKkbBNWT.jpg", "production_companies": [{"name": "Pole Star", "id": 195}, {"name": "Warner Bros.", "id": 6194}, {"name": "Stanley Kubrick Productions", "id": 385}, {"name": "Hobby Films", "id": 194}], "release_date": "1999-07-16", "popularity": 0.670469302228305, "original_title": "Eyes Wide Shut", "budget": 65000000, "cast": [{"name": "Tom Cruise", "character": "Dr. William 'Bill' Harford", "id": 500, "credit_id": "52fe423ac3a36847f800df1b", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Alice Harford", "id": 2227, "credit_id": "52fe423ac3a36847f800df1f", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Madison Eginton", "character": "Helena Harford", "id": 5006, "credit_id": "52fe423ac3a36847f800df23", "cast_id": 3, "profile_path": "/jenk3RaSLnX2tI2YP2rTfDKC3J4.jpg", "order": 2}, {"name": "Jackie Sawiris", "character": "Roz", "id": 5007, "credit_id": "52fe423ac3a36847f800df27", "cast_id": 4, "profile_path": "/cLss5E3ZOCoSlT8mEhSsiJzCeio.jpg", "order": 3}, {"name": "Sydney Pollack", "character": "Victor Ziegler", "id": 2226, "credit_id": "52fe423ac3a36847f800df2b", "cast_id": 5, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 4}, {"name": "Leslie Lowe", "character": "Illona Ziegler", "id": 5008, "credit_id": "52fe423ac3a36847f800df2f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Peter Benson", "character": "Bandleader", "id": 1292351, "credit_id": "53f1c816c3a3685af2004554", "cast_id": 29, "profile_path": "/ws1BahUp7EybJ7u1ovhRFubsjpX.jpg", "order": 6}, {"name": "Todd Field", "character": "Nick Nightingale", "id": 5010, "credit_id": "52fe423ac3a36847f800df37", "cast_id": 8, "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "order": 7}, {"name": "Michael Doven", "character": "Ziegler's Secretary", "id": 5011, "credit_id": "52fe423bc3a36847f800df3b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Sky du Mont", "character": "Sandor Szavost", "id": 5012, "credit_id": "52fe423bc3a36847f800df3f", "cast_id": 10, "profile_path": "/8BEBOXP0BToOi4m9KBWAcWPGPlr.jpg", "order": 9}, {"name": "Julienne Davis", "character": "Amanda 'Mandy' Curran", "id": 5023, "credit_id": "52fe423bc3a36847f800df97", "cast_id": 25, "profile_path": "/wwNoWvD5sdDAnRoVaj6jqYjLsRu.jpg", "order": 10}, {"name": "Marie Richardson", "character": "Marion Nathanson", "id": 5024, "credit_id": "52fe423bc3a36847f800df9b", "cast_id": 26, "profile_path": "/c7lcHFTxgHarcgOZqACZ1a7hTEK.jpg", "order": 11}, {"name": "Vinessa Shaw", "character": "Domino", "id": 5025, "credit_id": "52fe423bc3a36847f800df9f", "cast_id": 27, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 12}, {"name": "Leelee Sobieski", "character": "Milich's Daughter", "id": 22290, "credit_id": "52fe423bc3a36847f800dfa3", "cast_id": 28, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 13}, {"name": "Alan Cumming", "character": "Desk Clerk", "id": 10697, "credit_id": "5482496a9251414efa0075ff", "cast_id": 30, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 14}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800df45", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 6.7, "runtime": 159}, "346": {"poster_path": "/5hqbJSmtAimbaP3XcYshCixuUtk.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 269061, "overview": "A veteran samurai, who has fallen on hard times, answers a village's request for protection from bandits. He gathers 6 other samurai to help him, and they teach the townspeople how to defend themselves, and they supply the samurai with three small meals a day. The film culminates in a giant battle when 40 bandits attack the village.", "video": false, "id": 346, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Seven Samurai", "tagline": "Will Take Its Place With the Seven Greatest Films of All Time!", "vote_count": 250, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0047478", "adult": false, "backdrop_path": "/61vLiK96sbXeHpQiMxI4CuqBA3z.jpg", "production_companies": [{"name": "Toho Company", "id": 882}], "release_date": "1954-04-26", "popularity": 1.19199337171272, "original_title": "\u4e03\u4eba\u306e\u4f8d", "budget": 500000, "cast": [{"name": "Toshir\u014d Mifune", "character": "Kikuchiyo", "id": 7450, "credit_id": "52fe423bc3a36847f800e015", "cast_id": 13, "profile_path": "/32nCFJneAfmZxYTQsaF5bcmCB7e.jpg", "order": 0}, {"name": "Takashi Shimura", "character": "Kambei Shimada", "id": 7453, "credit_id": "52fe423bc3a36847f800dff3", "cast_id": 5, "profile_path": "/k8Ff4Nq2peKfiUpd8IILrSBM0ts.jpg", "order": 1}, {"name": "Yoshio Inaba", "character": "Gorobei Katayama", "id": 20828, "credit_id": "52fe423bc3a36847f800dff7", "cast_id": 6, "profile_path": "/3q3nR6a0aeBOBi84712ZX04dC1O.jpg", "order": 2}, {"name": "Seiji Miyaguchi", "character": "Kyuzo", "id": 20829, "credit_id": "52fe423bc3a36847f800dffb", "cast_id": 7, "profile_path": "/q2I5eEnqGK1A2AmCvYaPF8pMDtf.jpg", "order": 3}, {"name": "Minoru Chiaki", "character": "Heihachi Hayashida", "id": 7454, "credit_id": "52fe423bc3a36847f800dfff", "cast_id": 8, "profile_path": "/yuHeTk3R9XGrPo1i1EbR3kfQibd.jpg", "order": 4}, {"name": "Daisuke Kat\u00f4", "character": "Shichiroji", "id": 7457, "credit_id": "52fe423bc3a36847f800e003", "cast_id": 9, "profile_path": "/rZGOg4xRkDTVMdGCzMhswioT4pU.jpg", "order": 5}, {"name": "Isao Kimura", "character": "Katsushiro Okamoto", "id": 20830, "credit_id": "52fe423bc3a36847f800e007", "cast_id": 10, "profile_path": "/iL2XYnzkEZkXXx9tcoHMBDe9Ymu.jpg", "order": 6}, {"name": "Keiko Tsushima", "character": "Shino", "id": 20831, "credit_id": "52fe423bc3a36847f800e00b", "cast_id": 11, "profile_path": "/7IDKNmGI1sPUV2bFsav9uRAM9aF.jpg", "order": 7}, {"name": "Yukiko Shimazaki", "character": "Rikichi's Wife", "id": 554250, "credit_id": "52fe423bc3a36847f800e019", "cast_id": 14, "profile_path": "/3Fh32fFAAIYLnYiRqt7huqQb5iX.jpg", "order": 8}, {"name": "Kamatari Fujiwara", "character": "Manz\u00f4 - Father of Shino", "id": 96552, "credit_id": "52fe423bc3a36847f800e01d", "cast_id": 15, "profile_path": "/detxCmyJe9W1WqGCCYJQC7U5Tgq.jpg", "order": 9}, {"name": "Yoshio Kosugi", "character": "Mosuke", "id": 134272, "credit_id": "52fe423bc3a36847f800e021", "cast_id": 16, "profile_path": "/pZrCexgS1ewpgjsEhXijZ2mmuSF.jpg", "order": 10}, {"name": "Bokuzen Hidari", "character": "Yohei", "id": 34377, "credit_id": "52fe423bc3a36847f800e025", "cast_id": 17, "profile_path": "/xvYih2QuKWfCoAId3WFEyrKXfIN.jpg", "order": 11}, {"name": "Yoshio Tsuchiya", "character": "Rikichi", "id": 17540, "credit_id": "52fe423bc3a36847f800e029", "cast_id": 18, "profile_path": "/d5p1jSAUVJJbtWSJCAEpR3PmMDJ.jpg", "order": 12}, {"name": "Kokuten K\u00f4d\u00f4", "character": "Gisaku, the Old Man", "id": 108028, "credit_id": "52fe423bc3a36847f800e02d", "cast_id": 19, "profile_path": "/eoP753m4oPzYrYhwfs983n5d1dr.jpg", "order": 13}, {"name": "Eijir\u00f4 T\u00f4no", "character": "Kidnapper", "id": 106165, "credit_id": "52fe423bc3a36847f800e031", "cast_id": 20, "profile_path": "/5wb61i8W4r9On3FkwUbaTkWqfdb.jpg", "order": 14}, {"name": "Jun Tatara", "character": "Coolie A", "id": 228547, "credit_id": "52fe423bc3a36847f800e039", "cast_id": 22, "profile_path": "/xzUlQEvQgTDt7939OhQH3Rf7vHN.jpg", "order": 16}, {"name": "Atsushi Watanabe", "character": "Bun Seller", "id": 134294, "credit_id": "52fe423bc3a36847f800e03d", "cast_id": 23, "profile_path": "/iInI90DbSCtBj3x9rKD60Jhqx0a.jpg", "order": 17}, {"name": "Toranosuke Ogawa", "character": "Grandfather of Kidnapped Girl", "id": 134406, "credit_id": "52fe423bc3a36847f800e041", "cast_id": 24, "profile_path": "/tMF1gb5bkyvjJVPMP9aDWUpUlOA.jpg", "order": 18}, {"name": "Isao Yamagata", "character": "Samurai", "id": 134020, "credit_id": "52fe423bc3a36847f800e045", "cast_id": 25, "profile_path": "/wXFb1lDj5WvQlfPcmDBv6zEyxRI.jpg", "order": 19}, {"name": "Kichijir\u00f4 Ueda", "character": "Bandit Scout", "id": 7455, "credit_id": "53028093925141218f3d1e9e", "cast_id": 26, "profile_path": "/ieTlJVanMpV2eiYTm3D5kKbYM3T.jpg", "order": 20}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800dfdd", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 8.1, "runtime": 207}, "348": {"poster_path": "/uU9R1byS3USozpzWJ5oz7YAkXyk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104931801, "overview": "During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.", "video": false, "id": 348, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Alien", "tagline": "In space no one can hear you scream.", "vote_count": 1664, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0078748", "adult": false, "backdrop_path": "/vMNl7mDS57vhbglfth5JV7bAwZp.jpg", "production_companies": [{"name": "Brandywine Productions", "id": 19747}, {"name": "Twentieth Century-Fox Productions", "id": 11865}], "release_date": "1979-05-25", "popularity": 2.60606201376055, "original_title": "Alien", "budget": 11000000, "cast": [{"name": "Sigourney Weaver", "character": "Ripley", "id": 10205, "credit_id": "52fe423bc3a36847f800e125", "cast_id": 4, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Tom Skerritt", "character": "Dallas", "id": 4139, "credit_id": "52fe423bc3a36847f800e121", "cast_id": 3, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 1}, {"name": "Veronica Cartwright", "character": "Lambert", "id": 5047, "credit_id": "52fe423bc3a36847f800e129", "cast_id": 5, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 2}, {"name": "Harry Dean Stanton", "character": "Brett", "id": 5048, "credit_id": "52fe423bc3a36847f800e12d", "cast_id": 6, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 3}, {"name": "John Hurt", "character": "Kane", "id": 5049, "credit_id": "52fe423bc3a36847f800e131", "cast_id": 7, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Ian Holm", "character": "Ash", "id": 65, "credit_id": "52fe423bc3a36847f800e135", "cast_id": 8, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 5}, {"name": "Yaphet Kotto", "character": "Parker", "id": 5050, "credit_id": "52fe423bc3a36847f800e139", "cast_id": 9, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 6}, {"name": "Bolaji Badejo", "character": "Alien", "id": 5051, "credit_id": "52fe423bc3a36847f800e13d", "cast_id": 10, "profile_path": "/83NFKY9rgC5Pnx5hRJtHj0KkpnT.jpg", "order": 7}, {"name": "Helen Horton", "character": "Mother (voice)", "id": 5052, "credit_id": "52fe423bc3a36847f800e141", "cast_id": 11, "profile_path": "/90ruMVGVYNS6dUYj6zCa7XIw8eG.jpg", "order": 8}, {"name": "Eddie Powell", "character": "Alien", "id": 1077325, "credit_id": "52fe423bc3a36847f800e1b1", "cast_id": 30, "profile_path": null, "order": 9}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800e117", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.3, "runtime": 117}, "350": {"poster_path": "/8unCRm0LeiO0fM6skWAZy3ZfXR1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 326551094, "overview": "The Devil Wears Prada is about a young journalist who moves to New York to work in the fashion industry. Her boss however is extremely demanding and cruel and won\u2019t let her succeed if she doesn\u2019t fit into the high class elegant look of their magazine when all she really wants to be a good journalist.", "video": false, "id": 350, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Devil Wears Prada", "tagline": "Meet Andy Sachs. A million girls would kill to have her job. She's not one of them.", "vote_count": 537, "homepage": "http://www.devilwearspradamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0458352", "adult": false, "backdrop_path": "/2veJf7wcs1hvJGCQRFTwm37djMW.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Dune Entertainment", "id": 444}, {"name": "Major Studio Partners", "id": 445}, {"name": "Peninsula Films", "id": 682}], "release_date": "2006-06-30", "popularity": 1.21834970083119, "original_title": "The Devil Wears Prada", "budget": 35000000, "cast": [{"name": "Meryl Streep", "character": "Miranda Priestly", "id": 5064, "credit_id": "5301f30492514121a7269b59", "cast_id": 25, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Andrea Sachs", "id": 1813, "credit_id": "5301f31a925141219b257c3c", "cast_id": 26, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Emily", "id": 5081, "credit_id": "53b520c90e0a2676cb001fc0", "cast_id": 44, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Nigel", "id": 2283, "credit_id": "5301f34192514121a127c44a", "cast_id": 28, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Simon Baker", "character": "Christian Thompson", "id": 1284159, "credit_id": "5301f35e92514121a726a907", "cast_id": 29, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 4}, {"name": "Adrian Grenier", "character": "Nate Cooper", "id": 5090, "credit_id": "5301f37092514161a2003466", "cast_id": 30, "profile_path": "/rZ0y8mxadSJexY2c3DDo6yzGHnr.jpg", "order": 5}, {"name": "Tracie Thoms", "character": "Lily", "id": 10580, "credit_id": "5301f38492514121a127cbcc", "cast_id": 31, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 6}, {"name": "Rich Sommer", "character": "Doug", "id": 10581, "credit_id": "5301f39b92514121a726b50e", "cast_id": 32, "profile_path": "/nRN8lyfq1gOdCfTwstuK1eZZIaZ.jpg", "order": 7}, {"name": "Daniel Sunjata", "character": "James Holt", "id": 10582, "credit_id": "5301f3c8925141218f2945c5", "cast_id": 33, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 8}, {"name": "David Marshall Grant", "character": "Richard Sachs", "id": 24535, "credit_id": "5301f3ef925141219829baf7", "cast_id": 34, "profile_path": "/tKe6LIoceX8738rIELToYMuefCH.jpg", "order": 9}, {"name": "Rebecca Mader", "character": "Jocelyn", "id": 54679, "credit_id": "5301f47392514121a726d4be", "cast_id": 36, "profile_path": "/rzeCT8nG6KvvjlNKapdfcEvHOQz.jpg", "order": 10}, {"name": "Gisele B\u00fcndchen", "character": "Serena", "id": 10583, "credit_id": "5301f48b92514161a20067e0", "cast_id": 37, "profile_path": "/j3Lm6iGXPE57990A8DKW563BzYt.jpg", "order": 11}, {"name": "Heidi Klum", "character": "herself", "id": 10584, "credit_id": "5301f4b192514161a200893a", "cast_id": 38, "profile_path": "/paqUEfaU9ERt0y0bLtD4vHa9oYl.jpg", "order": 12}, {"name": "Alyssa Sutherland", "character": "Clacker", "id": 220620, "credit_id": "5301f4ec92514121a4299d7a", "cast_id": 39, "profile_path": "/t053QTudyPg1rpzOeBKFV7gEJJf.jpg", "order": 13}, {"name": "Ines Rivero", "character": "Clacker in Elevator", "id": 1248824, "credit_id": "5301f50692514121922c5589", "cast_id": 40, "profile_path": "/vIlaZdvUuWnza2TMWcbBvjI2oJB.jpg", "order": 14}, {"name": "Stephanie Szostak", "character": "Jacqueline Follet", "id": 121953, "credit_id": "5301f523925141219526ff7a", "cast_id": 41, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 15}, {"name": "Ivanka Trump", "character": "herself", "id": 1224937, "credit_id": "5301f54992514121a7270991", "cast_id": 42, "profile_path": "/5HwNHdEEnieD2VFnuUeMVQU6xTH.jpg", "order": 16}, {"name": "Tibor Feldman", "character": "Irv Ravitz", "id": 1192389, "credit_id": "53413799c3a36814f9001838", "cast_id": 43, "profile_path": "/6NR8t0gDsgoQKtL8mYUYmuEjRq6.jpg", "order": 17}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe423bc3a36847f800e2c5", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 6.6, "runtime": 109}, "172385": {"poster_path": "/3U5aKvnnZcAmDm9VMK4eWuERSRV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29100000, "overview": "It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.", "video": false, "id": 172385, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Rio 2", "tagline": "He's villainous, she's venomous.", "vote_count": 346, "homepage": "http://www.riomovies.com/", "belongs_to_collection": {"backdrop_path": "/9Rgf0Lcp0bZ0ik3r93ACleL1GJp.jpg", "poster_path": "/pT6r9PuRyIldckN9mKDIkT21nCA.jpg", "id": 229932, "name": "Rio Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt2357291", "adult": false, "backdrop_path": "/zWVBctXkUYyi5ezjEVOLT3tiSqT.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2014-04-11", "popularity": 2.26608092533381, "original_title": "Rio 2", "budget": 0, "cast": [{"name": "Jesse Eisenberg", "character": "Blu (voice)", "id": 44735, "credit_id": "52fe4d1fc3a36847f824fae1", "cast_id": 5, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Jewel (voice)", "id": 1813, "credit_id": "52fe4d1fc3a36847f824fad5", "cast_id": 2, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Linda (voice)", "id": 41087, "credit_id": "52fe4d1fc3a36847f824fad9", "cast_id": 3, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Jamie Foxx", "character": "Nico (voice)", "id": 134, "credit_id": "52fe4d1fc3a36847f824fadd", "cast_id": 4, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 3}, {"name": "Andy Garc\u00eda", "character": "Eduardo (voice)", "id": 1271, "credit_id": "52fe4d1fc3a36847f824fafd", "cast_id": 12, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 4}, {"name": "Bruno Mars", "character": "Roberto (voice)", "id": 969218, "credit_id": "52fe4d1fc3a36847f824fb0d", "cast_id": 16, "profile_path": "/535a6grD6XtGwnVQA6OypLjUQvB.jpg", "order": 5}, {"name": "Jemaine Clement", "character": "Nigel (voice)", "id": 55936, "credit_id": "52fe4d1fc3a36847f824fae5", "cast_id": 6, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 6}, {"name": "Rodrigo Santoro", "character": "Tulio (voice)", "id": 17289, "credit_id": "52fe4d1fc3a36847f824fae9", "cast_id": 7, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 7}, {"name": "Jake T. Austin", "character": "Fernando (voice)", "id": 60255, "credit_id": "52fe4d1fc3a36847f824faed", "cast_id": 8, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 8}, {"name": "Amandla Stenberg", "character": "Bia (voice)", "id": 561869, "credit_id": "52fe4d1fc3a36847f824faf1", "cast_id": 9, "profile_path": "/zbsIVoRHTw3VmQ18O7xUaSfIQBE.jpg", "order": 9}, {"name": "Pierce Gagnon", "character": "Tiago (voice)", "id": 992427, "credit_id": "52fe4d1fc3a36847f824fb01", "cast_id": 13, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 10}, {"name": "Rita Moreno", "character": "Aunt Mimi (voice)", "id": 13299, "credit_id": "52fe4d1fc3a36847f824fb09", "cast_id": 15, "profile_path": "/A5IKvjUTdwexp4l5Bi6vaH8Hypc.jpg", "order": 11}, {"name": "Kristin Chenoweth", "character": "Gabi (voice)", "id": 52775, "credit_id": "533d578392514176000027bc", "cast_id": 21, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 12}, {"name": "Tracy Morgan", "character": "Luiz (voice)", "id": 56903, "credit_id": "53b079fec3a3682eea0054ad", "cast_id": 22, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 13}, {"name": "Will.i.am", "character": "Pedro (voice)", "id": 82092, "credit_id": "53b07a39c3a3682ee600538e", "cast_id": 23, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 14}, {"name": "George Lopez", "character": "Rafael (voice)", "id": 41798, "credit_id": "53b07a73c3a3682ed8005295", "cast_id": 24, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 15}, {"name": "Rachel Crow", "character": "Carla (voice)", "id": 1335646, "credit_id": "53b07b2fc3a3682eee005361", "cast_id": 25, "profile_path": "/iX4QfD8jynd0M5vlYBMMdgr43xe.jpg", "order": 16}, {"name": "Bebel Gilberto", "character": "Eva (voice)", "id": 1335647, "credit_id": "53b07b61c3a3682ed80052a3", "cast_id": 26, "profile_path": "/zssPpJcU8Eumk4JZcLKH7AqcJoX.jpg", "order": 17}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe4d1fc3a36847f824fad1", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.7, "runtime": 102}, "9559": {"poster_path": "/5RhCpfiZcEWhKhuoGw9XaqtCgHG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A kidnapped boy strikes up a friendship with his captor: an escaped convict on the run from the law, headed by an honorable U.S. Marshal.", "video": false, "id": 9559, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Perfect World", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107808", "adult": false, "backdrop_path": "/pBz7T9KYTEbZoGlrynHT43QxNwE.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1993-11-24", "popularity": 0.460312391279203, "original_title": "A Perfect World", "budget": 0, "cast": [{"name": "Kevin Costner", "character": "Robert 'Butch' Haynes", "id": 1269, "credit_id": "52fe4509c3a36847f80b8ad1", "cast_id": 10, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Chief Red Garnett", "id": 190, "credit_id": "52fe4509c3a36847f80b8add", "cast_id": 14, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Laura Dern", "character": "Sally Gerber", "id": 4784, "credit_id": "52fe4509c3a36847f80b8ad5", "cast_id": 12, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 2}, {"name": "T.J. Lowther", "character": "Phillip 'Buzz' Perry", "id": 64025, "credit_id": "52fe4509c3a36847f80b8ad9", "cast_id": 13, "profile_path": "/efL2QLud60j87EJQ2VG1pFrYtD7.jpg", "order": 3}, {"name": "Bradley Whitford", "character": "Bobby Lee", "id": 11367, "credit_id": "52fe4509c3a36847f80b8ae1", "cast_id": 15, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 4}, {"name": "Keith Szarabajka", "character": "Terry Pugh", "id": 87957, "credit_id": "52fe4509c3a36847f80b8ae5", "cast_id": 16, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 5}, {"name": "Leo Burmester", "character": "Tom Adler", "id": 30151, "credit_id": "52fe4509c3a36847f80b8ae9", "cast_id": 17, "profile_path": "/8V3Ev6pKP8VBRIjDONJW5cgi5Zc.jpg", "order": 6}, {"name": "Paul Hewitt", "character": "Dick Suttle", "id": 177049, "credit_id": "52fe4509c3a36847f80b8aed", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ray McKinnon", "character": "Bradley", "id": 1472, "credit_id": "52fe450ac3a36847f80b8af1", "cast_id": 19, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 8}, {"name": "Jennifer Griffin", "character": "Gladys Perry", "id": 159381, "credit_id": "52fe450ac3a36847f80b8af5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Leslie Flowers", "character": "Naomi Perry", "id": 1079606, "credit_id": "52fe450ac3a36847f80b8af9", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Belinda Flowers", "character": "Ruth Perry", "id": 1079607, "credit_id": "52fe450ac3a36847f80b8afd", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Darryl Cox", "character": "Mr. Hughes", "id": 97391, "credit_id": "52fe450ac3a36847f80b8b01", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Jay Whiteaker", "character": "Billy Reeves", "id": 1079608, "credit_id": "52fe450ac3a36847f80b8b05", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Taylor Suzanna McBride", "character": "Tinkerbell", "id": 1079609, "credit_id": "52fe450ac3a36847f80b8b09", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Christopher Reagan Ammons", "character": "Dancing Skeleton", "id": 1079610, "credit_id": "52fe450ac3a36847f80b8b0d", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Mark Voges", "character": "Larry Billings", "id": 35652, "credit_id": "52fe450ac3a36847f80b8b11", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Vernon Grote", "character": "Prison Guard", "id": 974854, "credit_id": "52fe450ac3a36847f80b8b15", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "James Jeter", "character": "Oldtimer", "id": 79646, "credit_id": "52fe450ac3a36847f80b8b19", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Ed Geldart", "character": "Fred Cummings", "id": 981812, "credit_id": "52fe450ac3a36847f80b8b1d", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Bruce McGill", "character": "Paul Saunders", "id": 14888, "credit_id": "52fe450ac3a36847f80b8b21", "cast_id": 31, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 20}, {"name": "Nik Hagler", "character": "General Store Manager", "id": 20912, "credit_id": "52fe450ac3a36847f80b8b25", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Gary Moody", "character": "Local Sheriff", "id": 194353, "credit_id": "52fe450ac3a36847f80b8b29", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Mary Alice", "character": "Lottie", "id": 9572, "credit_id": "52fe450ac3a36847f80b8b2d", "cast_id": 34, "profile_path": "/2h20nF8gvhqhgVDV6Lru55dKB44.jpg", "order": 23}, {"name": "Wayne Dehart", "character": "Mack", "id": 1193431, "credit_id": "52fe450ac3a36847f80b8b31", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Kevin Woods", "character": "Cleveland", "id": 1193432, "credit_id": "52fe450ac3a36847f80b8b35", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Linda Hart", "character": "Eileen", "id": 53602, "credit_id": "52fe450ac3a36847f80b8b39", "cast_id": 37, "profile_path": "/9gzrHfKwWcwVYikfWhqsOWitpnZ.jpg", "order": 26}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4509c3a36847f80b8a9d", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.9, "runtime": 138}, "262500": {"poster_path": "/aBBQSC8ZECGn6Wh92gKDOakSC8p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 263523571, "overview": "Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.", "video": false, "id": 262500, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Insurgent", "tagline": "One Choice Can Destroy You", "vote_count": 305, "homepage": "http://www.thedivergentseries.com/", "belongs_to_collection": {"backdrop_path": "/uExS9jcaFBM1wJhkn1Q1P0MFpv6.jpg", "poster_path": "/2tVtmjJTwkieDf4c42SMzKEOyXF.jpg", "id": 283579, "name": "Divergent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2908446", "adult": false, "backdrop_path": "/L5QRL1O3fGs2hH1LbtYyVl8Tce.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Red Wagon Entertainment", "id": 14440}], "release_date": "2015-03-20", "popularity": 18.9431183306122, "original_title": "Insurgent", "budget": 110000000, "cast": [{"name": "Shailene Woodley", "character": "Beatrice 'Tris' Prior", "id": 94185, "credit_id": "533a707a9251417d9b005bc5", "cast_id": 0, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Theo James", "character": "Four", "id": 587020, "credit_id": "533a70d0c3a3680e69007788", "cast_id": 1, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 1}, {"name": "Ansel Elgort", "character": "Caleb", "id": 1159982, "credit_id": "5431e1d3c3a36831a9004134", "cast_id": 11, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 2}, {"name": "Miles Teller", "character": "Peter", "id": 996701, "credit_id": "5431e1dc0e0a265834002cef", "cast_id": 12, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 3}, {"name": "Naomi Watts", "character": "Evelyn", "id": 3489, "credit_id": "5431e1e50e0a265915002ca7", "cast_id": 13, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 4}, {"name": "Maggie Q", "character": "Tori Wu", "id": 21045, "credit_id": "5431e217c3a36831a60043ea", "cast_id": 17, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 5}, {"name": "Kate Winslet", "character": "Jeanine", "id": 204, "credit_id": "5431e1f80e0a265915002cae", "cast_id": 15, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 6}, {"name": "Jai Courtney", "character": "Eric", "id": 224181, "credit_id": "5431e1efc3a36811ef002cf0", "cast_id": 14, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 7}, {"name": "Zo\u00eb Kravitz", "character": "Christina", "id": 37153, "credit_id": "5431e20cc3a36825d3000148", "cast_id": 16, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 8}, {"name": "Ray Stevenson", "character": "Marcus Eaton", "id": 56614, "credit_id": "5431e2230e0a2658b2002c9d", "cast_id": 18, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 10}, {"name": "Octavia Spencer", "character": "Johanna", "id": 6944, "credit_id": "5431e22d0e0a2658b2002ca0", "cast_id": 19, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 11}, {"name": "Suki Waterhouse", "character": "Marlene", "id": 1325961, "credit_id": "5431e25cc3a368258a00017a", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Rosa Salazar", "character": "Lynn", "id": 973667, "credit_id": "54642eea0e0a26293b000bfb", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Daniel Dae Kim", "character": "Jack Kang", "id": 18307, "credit_id": "5431e238c3a36811ef002cfe", "cast_id": 20, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 14}, {"name": "Mekhi Phifer", "character": "Max", "id": 327, "credit_id": "5431e244c3a36831a9004165", "cast_id": 21, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 15}, {"name": "Ben Lloyd-Hughes", "character": "Will", "id": 1173230, "credit_id": "550afbd0925141467e0017ea", "cast_id": 28, "profile_path": "/mGCcNsBdIb4rngbWs7mK94YGuzA.jpg", "order": 16}, {"name": "Tony Goldwyn", "character": "Andrew", "id": 3417, "credit_id": "550afbe5c3a3684877001b32", "cast_id": 29, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 17}, {"name": "Ashley Judd", "character": "Natalie", "id": 15852, "credit_id": "550afbf7c3a3684883001cbc", "cast_id": 30, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 18}, {"name": "Keiynan Lonsdale", "character": "Uriah", "id": 1251875, "credit_id": "550afc2ac3a3684877001b36", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Emjay Anthony", "character": "Hector", "id": 1259762, "credit_id": "550afc4dc3a3684872001bdb", "cast_id": 33, "profile_path": "/vGuvafo0ZFRlmv77gxODfY3lCpx.jpg", "order": 20}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "533a71a6c3a3680e7000765e", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 7.3, "runtime": 119}, "364": {"poster_path": "/jX5THE1yW3zTdeD9dupcIyQvKiG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 280000000, "overview": "Having defeated the Joker, Batman now faces the Penguin - a warped and deformed individual who is intent on being accepted into Gotham society. Crooked businessman Max Schreck is coerced into helping him become Mayor of Gotham and they both attempt to expose Batman in a different light. Selina Kyle, Max's secretary, is thrown from the top of a building and is transformed into Catwoman - a mysterious figure who has the same personality disorder as Batman. Batman must attempt to clear his name, all the time deciding just what must be done with the Catwoman.", "video": false, "id": 364, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Batman Returns", "tagline": "The Bat, the Cat, the Penguin.", "vote_count": 430, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103776", "adult": false, "backdrop_path": "/wNIE5dpkiHU2csDRptMutFjAGiV.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1992-06-19", "popularity": 1.11154721722933, "original_title": "Batman Returns", "budget": 80000000, "cast": [{"name": "Michael Keaton", "character": "Batman/Bruce Wayne", "id": 2232, "credit_id": "52fe423cc3a36847f800e57d", "cast_id": 22, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Penguin/Oswald Cobblepot", "id": 518, "credit_id": "52fe423cc3a36847f800e529", "cast_id": 5, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Catwoman/Selina Kyle", "id": 1160, "credit_id": "52fe423cc3a36847f800e52d", "cast_id": 6, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Max Shreck", "id": 4690, "credit_id": "52fe423cc3a36847f800e531", "cast_id": 7, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Michael Gough", "character": "Alfred", "id": 3796, "credit_id": "52fe423cc3a36847f800e535", "cast_id": 8, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 4}, {"name": "Pat Hingle", "character": "Commissioner James Gordon", "id": 3798, "credit_id": "52fe423cc3a36847f800e539", "cast_id": 9, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 5}, {"name": "Paul Reubens", "character": "Mr. Cobblepot/ Penguin's Father", "id": 5129, "credit_id": "52fe423cc3a36847f800e53d", "cast_id": 10, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 6}, {"name": "Michael Murphy", "character": "Mayor", "id": 4776, "credit_id": "52fe423cc3a36847f800e541", "cast_id": 11, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 7}, {"name": "Diane Salinger", "character": "Mrs. Cobblepot/Penguin's Mother", "id": 5131, "credit_id": "52fe423cc3a36847f800e549", "cast_id": 13, "profile_path": "/kJkPiBp9tSBxlX4h1OZ1I82Q5Vi.jpg", "order": 8}, {"name": "Cristi Conaway", "character": "Ice Princess", "id": 5130, "credit_id": "52fe423cc3a36847f800e545", "cast_id": 12, "profile_path": "/5bbfOgGXmNf2MHQn0f6q7aY12bx.jpg", "order": 9}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e513", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.4, "runtime": 126}, "49517": {"poster_path": "/ggu2lYqxSAObuK82wk1TmEyyWGr.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "George Smiley, a recently retired MI6 agent, is doing his best to adjust to a life outside the secret service. However, when a disgraced agent reappears with information concerning a mole at the heart of the service, Smiley is drawn back into the murky field of espionage. Tasked with investigating which of his trusted former colleagues has chosen to betray him and their country, Smiley narrows his search to four suspects - all experienced, skilled and successful agents - but past histories, rivalries and friendships make it far from easy to pinpoint the man who is eating away at the heart of the British establishment.", "video": false, "id": 49517, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Tinker Tailor Soldier Spy", "tagline": "How do you find an enemy who is hidden right before your eyes?", "vote_count": 240, "homepage": "http://www.tinker-tailor-soldier-spy.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt1340800", "adult": false, "backdrop_path": "/5oS5Qx6yAkdQCzLMXl5BQSCFhBI.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Karla Films", "id": 23697}, {"name": "Kinowelt Filmproduktion", "id": 2051}, {"name": "Working Title Films", "id": 10163}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2011-12-09", "popularity": 1.30616584202585, "original_title": "Tinker Tailor Soldier Spy", "budget": 30000000, "cast": [{"name": "John Hurt", "character": "Control", "id": 5049, "credit_id": "52fe4799c3a36847f813e47b", "cast_id": 18, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 0}, {"name": "Gary Oldman", "character": "George Smiley", "id": 64, "credit_id": "52fe4798c3a36847f813e467", "cast_id": 13, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Kathy Burke", "character": "Connie Sachs", "id": 37759, "credit_id": "52fe4799c3a36847f813e48f", "cast_id": 23, "profile_path": "/3VjQaOV0Wyy1tzwxKI5Os5ZqID8.jpg", "order": 2}, {"name": "Benedict Cumberbatch", "character": "Peter Guillam", "id": 71580, "credit_id": "52fe4799c3a36847f813e46b", "cast_id": 14, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 3}, {"name": "Colin Firth", "character": "Bill Haydon", "id": 5472, "credit_id": "52fe4798c3a36847f813e45b", "cast_id": 10, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 4}, {"name": "Mark Strong", "character": "Jim Prideaux", "id": 2983, "credit_id": "52fe4798c3a36847f813e45f", "cast_id": 11, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 5}, {"name": "Toby Jones", "character": "Percy Alleline", "id": 13014, "credit_id": "52fe4799c3a36847f813e46f", "cast_id": 15, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 6}, {"name": "Stephen Graham", "character": "Jerry Westerby", "id": 1115, "credit_id": "52fe4799c3a36847f813e493", "cast_id": 24, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 7}, {"name": "Ciar\u00e1n Hinds", "character": "Roy Bland", "id": 8785, "credit_id": "52fe4799c3a36847f813e477", "cast_id": 17, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 8}, {"name": "Simon McBurney", "character": "Oliver Lacon", "id": 16358, "credit_id": "52fe4799c3a36847f813e49b", "cast_id": 26, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 9}, {"name": "David Dencik", "character": "Toby Esterhase", "id": 93236, "credit_id": "52fe4799c3a36847f813e473", "cast_id": 16, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 10}, {"name": "Tom Hardy", "character": "Ricki Tarr", "id": 2524, "credit_id": "52fe4798c3a36847f813e463", "cast_id": 12, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 11}, {"name": "Svetlana Khodchenkova", "character": "Irina", "id": 94064, "credit_id": "52fe4799c3a36847f813e4b9", "cast_id": 32, "profile_path": "/jiWZn9daZUVYudPBsuQNQQAg0lT.jpg", "order": 12}, {"name": "Arthur Nightingale", "character": "Bryant", "id": 186275, "credit_id": "52fe4799c3a36847f813e497", "cast_id": 25, "profile_path": "/rmHgVma3jk8snCVkIO7MKCtzxlF.jpg", "order": 13}, {"name": "Zolt\u00e1n Mucsi", "character": "Magyar", "id": 42069, "credit_id": "52fe4799c3a36847f813e47f", "cast_id": 19, "profile_path": "/z4S9Bg4f8gDvBtduEV3vdieHQey.jpg", "order": 14}, {"name": "Amanda Fairbank-Hynes", "character": "Belinda", "id": 235837, "credit_id": "52fe4799c3a36847f813e49f", "cast_id": 27, "profile_path": "/127xlkSaLK92NaYdStJQxWkqR1I.jpg", "order": 15}, {"name": "Laura Carmichael", "character": "Sal", "id": 224194, "credit_id": "52fe4799c3a36847f813e4a3", "cast_id": 28, "profile_path": "/6hSmDvghHqZp1CMsFnmdiRXQil8.jpg", "order": 16}, {"name": "Konstantin Khabenskiy", "character": "Polyakov", "id": 23440, "credit_id": "53527a43c3a3681d81002832", "cast_id": 35, "profile_path": "/dSZhT7njGfcOCqvRhWrX2WANVOt.jpg", "order": 17}, {"name": "Ilona Kassai", "character": "Woman in Window", "id": 933031, "credit_id": "52fe4799c3a36847f813e487", "cast_id": 21, "profile_path": "/7jSXaSoldlwA8TtN0LRUcPyc0xX.jpg", "order": 18}, {"name": "Imre Csuja", "character": "KGB Agent", "id": 82364, "credit_id": "52fe4799c3a36847f813e48b", "cast_id": 22, "profile_path": "/7Fhtm6tPuWB1hnyBXHEVv5xlvqU.jpg", "order": 19}, {"name": "P\u00e9ter K\u00e1lloy Moln\u00e1r", "character": "Hungarian Waiter", "id": 89645, "credit_id": "52fe4799c3a36847f813e483", "cast_id": 20, "profile_path": null, "order": 20}], "directors": [{"name": "Tomas Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe4798c3a36847f813e445", "profile_path": "/sRl6QzCtO7SlLspfFSvnv8u7ITi.jpg", "id": 74396}], "vote_average": 6.6, "runtime": 127}, "49519": {"poster_path": "/bued85CL5MRd02dkyt7HGbkKAuy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 585178928, "overview": "The Croods is a prehistoric comedy adventure that follows the world's first family as they embark on a journey of a lifetime when the cave that has always shielded them from danger is destroyed. Traveling across a spectacular landscape, the Croods discover an incredible new world filled with fantastic creatures -- and their outlook is changed forever.", "video": false, "id": 49519, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Croods", "tagline": "Meet the first modern family.", "vote_count": 1105, "homepage": "http://www.thecroodsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481499", "adult": false, "backdrop_path": "/kYY4CKjjknT1GY45ZueZs556Mnl.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2013-03-21", "popularity": 1.49760485690196, "original_title": "The Croods", "budget": 135000000, "cast": [{"name": "Nicolas Cage", "character": "Grug (voice)", "id": 2963, "credit_id": "52fe4799c3a36847f813e4f7", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Emma Stone", "character": "Eep (voice)", "id": 54693, "credit_id": "52fe4799c3a36847f813e4fb", "cast_id": 4, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Ryan Reynolds", "character": "Guy (voice)", "id": 10859, "credit_id": "52fe4799c3a36847f813e4ff", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 2}, {"name": "Catherine Keener", "character": "Ugga (voice)", "id": 2229, "credit_id": "52fe4799c3a36847f813e503", "cast_id": 6, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 3}, {"name": "Cloris Leachman", "character": "Gran (voice)", "id": 9599, "credit_id": "52fe4799c3a36847f813e513", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 4}, {"name": "Clark Duke", "character": "Thunk (voice)", "id": 54729, "credit_id": "52fe4799c3a36847f813e517", "cast_id": 11, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 5}, {"name": "Chris Sanders", "character": "Belt (voice)", "id": 66193, "credit_id": "53ad0e7d0e0a26597d0014cb", "cast_id": 19, "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "order": 6}, {"name": "Randy Thom", "character": "Sandy (voice)", "id": 42267, "credit_id": "53ad0e900e0a2659750014df", "cast_id": 20, "profile_path": "/gENCvbLHHHtxeZcPJIHcSq6Y4BW.jpg", "order": 7}], "directors": [{"name": "Kirk De Micco", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e4ed", "profile_path": "/kqknILDV0ZOIeFOZnA8zMQ8NxC5.jpg", "id": 71267}, {"name": "Chris Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e4f3", "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "id": 66193}], "vote_average": 6.9, "runtime": 98}, "49520": {"poster_path": "/vvouEsB13kZN0NcV4vvFJwwhrs1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75450437, "overview": "Dave is a married man with two kids and a loving wife , and Mitch is a single man who is at the prime of his sexual life. One fateful night while Mitch and Dave are peeing in a fountain when lightning strikes and they switch bodies.", "video": false, "id": 49520, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Change-Up", "tagline": "Who says men can't change?", "vote_count": 201, "homepage": "http://www.thechangeupmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1488555", "adult": false, "backdrop_path": "/vX5Leufgvw6Hy1KMF3bhoUfcvPc.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "Big Kid Pictures", "id": 8406}], "release_date": "2011-08-05", "popularity": 0.490175364966145, "original_title": "The Change-Up", "budget": 52000000, "cast": [{"name": "Olivia Wilde", "character": "Sabrina McArdle", "id": 59315, "credit_id": "52fe4799c3a36847f813e555", "cast_id": 2, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Mitch Planko", "id": 10859, "credit_id": "52fe4799c3a36847f813e559", "cast_id": 3, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Jason Bateman", "character": "Dave Lockwood", "id": 23532, "credit_id": "52fe4799c3a36847f813e55d", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 2}, {"name": "Leslie Mann", "character": "Jamie Lockwood", "id": 41087, "credit_id": "52fe4799c3a36847f813e561", "cast_id": 5, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 3}, {"name": "Mircea Monroe", "character": "Tatiana", "id": 83352, "credit_id": "52fe4799c3a36847f813e565", "cast_id": 6, "profile_path": "/b27UZlc4VBwVbOiJSbkyfnfLWZP.jpg", "order": 4}, {"name": "Alan Arkin", "character": "Mitch's Dad", "id": 1903, "credit_id": "52fe4799c3a36847f813e569", "cast_id": 7, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 5}, {"name": "TJ Hassan", "character": "Kinkabe Lawyer", "id": 1000822, "credit_id": "52fe4799c3a36847f813e579", "cast_id": 10, "profile_path": "/6A0n3eZSvtBBtxgEW03cEEmAJQZ.jpg", "order": 6}, {"name": "Mircea Monroe", "character": "Tatiana", "id": 83352, "credit_id": "532c2a009251416e9c000e57", "cast_id": 11, "profile_path": "/b27UZlc4VBwVbOiJSbkyfnfLWZP.jpg", "order": 7}, {"name": "Gregory Itzin", "character": "Flemming Steel", "id": 21142, "credit_id": "532c2a1b9251416e95000d92", "cast_id": 12, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 8}, {"name": "Ned Schmidtke", "character": "Ted Norton", "id": 173739, "credit_id": "532c2a2c9251416e89000e8a", "cast_id": 13, "profile_path": "/nCZ1y7sre7m7pVurBwKoR6mzmrc.jpg", "order": 9}, {"name": "Ming Lo", "character": "Ken Kinkabe", "id": 945062, "credit_id": "532c2a3b9251416e95000d95", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sydney Rouviere", "character": "Cara Lockwood", "id": 123065, "credit_id": "532c2a4a9251416e98000e2b", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Craig Bierko", "character": "Valtan", "id": 14886, "credit_id": "532c2a579251416e89000e92", "cast_id": 16, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 12}, {"name": "Dax Griffin", "character": "Blow-Dried Goon", "id": 1224311, "credit_id": "532c2a649251416e98000e30", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Andrea Moore", "character": "Sophia", "id": 1046200, "credit_id": "532c2a729251416e92000f55", "cast_id": 18, "profile_path": "/q4AfAMZTLSCtsqWEjfSRoXewc6p.jpg", "order": 14}, {"name": "Matt Cornwell", "character": "Parks Foreman", "id": 1068811, "credit_id": "532c2a849251416e9f000e10", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Taaffe O'Connell", "character": "Mona", "id": 102335, "credit_id": "532c2a919251416e95000d9f", "cast_id": 20, "profile_path": null, "order": 16}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e551", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 6.0, "runtime": 112}, "49521": {"poster_path": "/6HQT7R0tiWGxi7CA1zb58j28OTM.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 662845518, "overview": "A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.", "video": false, "id": 49521, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Man of Steel", "tagline": "You will believe that a man can fly.", "vote_count": 3250, "homepage": "http://www.manofsteel.com/", "belongs_to_collection": {"backdrop_path": "/csERw2A3XIsGegkzil6UGpyhqfw.jpg", "poster_path": "/oOHKVVQkaDvc5R5vM0NjhZPYfKc.jpg", "id": 209131, "name": "Man of Steel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0770828", "adult": false, "backdrop_path": "/jYLh4mdOqkt30i7LTFs3o02UcGF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Syncopy", "id": 9996}], "release_date": "2013-06-14", "popularity": 3.84921134506416, "original_title": "Man of Steel", "budget": 225000000, "cast": [{"name": "Henry Cavill", "character": "Clark Kent / Kal-El", "id": 73968, "credit_id": "52fe4799c3a36847f813e605", "cast_id": 2, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 0}, {"name": "Amy Adams", "character": "Lois Lane", "id": 9273, "credit_id": "52fe4799c3a36847f813e609", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Michael Shannon", "character": "General Zod", "id": 335, "credit_id": "52fe4799c3a36847f813e61b", "cast_id": 9, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 2}, {"name": "Diane Lane", "character": "Martha Kent", "id": 2882, "credit_id": "52fe4799c3a36847f813e60d", "cast_id": 4, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 3}, {"name": "Russell Crowe", "character": "Jor-El", "id": 934, "credit_id": "52fe4799c3a36847f813e617", "cast_id": 8, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 4}, {"name": "Antje Traue", "character": "Faora-Ul", "id": 43202, "credit_id": "52fe4799c3a36847f813e637", "cast_id": 17, "profile_path": "/xWbtFJyN8ynIpdKNCB0KpsKldM7.jpg", "order": 5}, {"name": "Kevin Costner", "character": "Jonathan Kent", "id": 1269, "credit_id": "52fe4799c3a36847f813e61f", "cast_id": 10, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 6}, {"name": "Christopher Meloni", "character": "Colonel Hardy", "id": 22227, "credit_id": "52fe4799c3a36847f813e623", "cast_id": 11, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 7}, {"name": "Laurence Fishburne", "character": "Perry White", "id": 2975, "credit_id": "52fe4799c3a36847f813e627", "cast_id": 12, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 8}, {"name": "Jadin Gould", "character": "Lana Lang", "id": 213049, "credit_id": "52fe4799c3a36847f813e62b", "cast_id": 13, "profile_path": "/xC07rBx6DTXzclGMy7fOzYM2Q6S.jpg", "order": 9}, {"name": "Tahmoh Penikett", "character": "Emerson", "id": 77223, "credit_id": "52fe4799c3a36847f813e62f", "cast_id": 15, "profile_path": "/uHnfPSFXdJJTaE0rjwj3I2b91I8.jpg", "order": 10}, {"name": "Ayelet Zurer", "character": "Lara Lor-Van", "id": 8786, "credit_id": "52fe4799c3a36847f813e633", "cast_id": 16, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 11}, {"name": "Richard Schiff", "character": "Dr. Emil Hamilton", "id": 31028, "credit_id": "52fe4799c3a36847f813e63b", "cast_id": 18, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 12}, {"name": "Dylan Sprayberry", "character": "Clark Kent at 13", "id": 236302, "credit_id": "52fe4799c3a36847f813e63f", "cast_id": 19, "profile_path": "/pBVSPaXOFZqhwt2COhkLaOq9MSW.jpg", "order": 13}, {"name": "Michael Kelly", "character": "Steve Lombard", "id": 50217, "credit_id": "52fe4799c3a36847f813e643", "cast_id": 20, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 14}, {"name": "Carla Gugino", "character": "Kelor (voice)", "id": 17832, "credit_id": "52fe4799c3a36847f813e70d", "cast_id": 54, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 15}, {"name": "Richard Cetrone", "character": "Tor-An", "id": 12371, "credit_id": "52fe4799c3a36847f813e711", "cast_id": 55, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 16}, {"name": "Mackenzie Gray", "character": "Jax-Ur", "id": 37698, "credit_id": "52fe4799c3a36847f813e715", "cast_id": 56, "profile_path": "/rYkz9NRfhVzgDbpXHRWqLkvjlgh.jpg", "order": 17}, {"name": "Julian Richings", "character": "Lor-Em", "id": 2320, "credit_id": "52fe4799c3a36847f813e719", "cast_id": 57, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 18}, {"name": "Mary Black", "character": "Ro-Zar", "id": 11831, "credit_id": "52fe4799c3a36847f813e71d", "cast_id": 58, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 19}, {"name": "Samantha Jo", "character": "Car-Vex", "id": 1272968, "credit_id": "52fe4799c3a36847f813e721", "cast_id": 59, "profile_path": "/aHUB2vNo5ZbOVnlmqJ4SkUpDXrk.jpg", "order": 20}, {"name": "Rebecca Buller", "character": "Jenny", "id": 1272969, "credit_id": "52fe4799c3a36847f813e725", "cast_id": 60, "profile_path": "/2e4eLghYs2jXxnoy4gG0TOSsyVA.jpg", "order": 21}, {"name": "Christina Wren", "character": "Major Carrie Farris", "id": 1272970, "credit_id": "52fe4799c3a36847f813e729", "cast_id": 61, "profile_path": "/8nLwMjNuL9FU9lVGXZBBZpMWLGk.jpg", "order": 22}, {"name": "David Lewis", "character": "Major Laramore", "id": 571911, "credit_id": "52fe4799c3a36847f813e72d", "cast_id": 62, "profile_path": "/hi8Y2vwvTw8FhclgwS1w2mOKvO4.jpg", "order": 23}, {"name": "Doug Abrahams", "character": "Heraldson", "id": 27138, "credit_id": "52fe4799c3a36847f813e731", "cast_id": 63, "profile_path": "/l1WXHzijnXtsZs5xcPk3yVLURgX.jpg", "order": 24}, {"name": "Brad Kelly", "character": "Byrne", "id": 172809, "credit_id": "52fe4799c3a36847f813e735", "cast_id": 64, "profile_path": "/wNZGxPawhdulAVq5Ud4m7mAwmrk.jpg", "order": 25}, {"name": "Alessandro Juliani", "character": "Officer Sekowsky", "id": 59312, "credit_id": "52fe4799c3a36847f813e739", "cast_id": 65, "profile_path": "/eTF7C0HA5M31J9gvoupyPt3sedX.jpg", "order": 26}, {"name": "Jack Foley", "character": "Teenage Pete Ross", "id": 1272971, "credit_id": "52fe4799c3a36847f813e73d", "cast_id": 66, "profile_path": "/cCoJMPYTALWvrlpzpAFcEFAqsh0.jpg", "order": 27}, {"name": "Robert Gerdisch", "character": "Whitney Fordman", "id": 1025970, "credit_id": "52fe4799c3a36847f813e741", "cast_id": 67, "profile_path": "/lDyXyHQcRK21hcSO8oEJqlmvKQG.jpg", "order": 28}, {"name": "Tom Nagel", "character": "A-10 Pilot", "id": 64294, "credit_id": "550ea1f2c3a3681db2008ed7", "cast_id": 68, "profile_path": null, "order": 29}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e601", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.6, "runtime": 143}, "9619": {"poster_path": "/6wBlgo0xqja56OMfQoxsdLmcR76.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Volcanologist Harry Dalton comes to the sleepy town of Dante's Peak to investigate the recent rumblings of the dormant volcano the burg is named for. Before long, his worst fears are realized when a massive eruption hits, and immediately, Harry, the mayor and the townspeople find themselves fighting for their lives amid a catastrophic nightmare.", "video": false, "id": 9619, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Dante's Peak", "tagline": "Whatever you do, don't look back.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118928", "adult": false, "backdrop_path": "/6TSzmESfh0LVOBnDcktcRMI6Wnk.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1997-02-06", "popularity": 1.08266674450858, "original_title": "Dante's Peak", "budget": 116000000, "cast": [{"name": "Pierce Brosnan", "character": "Harry Dalton", "id": 517, "credit_id": "52fe4512c3a36847f80babe9", "cast_id": 8, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Linda Hamilton", "character": "Rachel Wando", "id": 2713, "credit_id": "52fe4512c3a36847f80babed", "cast_id": 9, "profile_path": "/bxsVrRYOpAL0vI6X7nnEsyLvZ8H.jpg", "order": 1}, {"name": "Charles Hallahan", "character": "Paul Dreyfus", "id": 15414, "credit_id": "52fe4512c3a36847f80babf1", "cast_id": 10, "profile_path": "/bXRE5dfHZZhovEbXgQCXDTw9ZHY.jpg", "order": 2}, {"name": "Jamie Ren\u00e9e Smith", "character": "Lauren Wando", "id": 58727, "credit_id": "52fe4512c3a36847f80babf5", "cast_id": 11, "profile_path": null, "order": 3}, {"name": "Grant Heslov", "character": "Greg", "id": 31511, "credit_id": "52fe4512c3a36847f80babf9", "cast_id": 12, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 4}, {"name": "Jeremy Foley", "character": "Graham Wando", "id": 108939, "credit_id": "52fe4512c3a36847f80babfd", "cast_id": 13, "profile_path": "/uQn7bDcWyFtF4En85nj6eOkeB2t.jpg", "order": 5}, {"name": "Elizabeth Hoffman", "character": "Ruth", "id": 172559, "credit_id": "52fe4512c3a36847f80bac01", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Kirk Trutner", "character": "Terry Furlong", "id": 174794, "credit_id": "52fe4512c3a36847f80bac05", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Arabella Field", "character": "Nancy", "id": 14722, "credit_id": "52fe4512c3a36847f80bac09", "cast_id": 16, "profile_path": "/aDhXyY1fwrS0gRdOJSc0uQPb3h5.jpg", "order": 8}, {"name": "Tzi Ma", "character": "Stan", "id": 21629, "credit_id": "52fe4512c3a36847f80bac0d", "cast_id": 17, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 9}, {"name": "Brian Reddy", "character": "Les Worrell", "id": 1469, "credit_id": "52fe4512c3a36847f80bac11", "cast_id": 18, "profile_path": "/6AOxOUfyU3iDQabWL6EipPZ5DAM.jpg", "order": 10}, {"name": "Lee Garlington", "character": "Dr. Jane Fox", "id": 23975, "credit_id": "52fe4512c3a36847f80bac15", "cast_id": 19, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 11}, {"name": "Bill Bolender", "character": "Sheriff Turner", "id": 105649, "credit_id": "52fe4512c3a36847f80bac19", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Carole Androsky", "character": "Mary Kelly", "id": 183404, "credit_id": "52fe4512c3a36847f80bac1d", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Peter Jason", "character": "Norman Gates", "id": 6916, "credit_id": "52fe4512c3a36847f80bac21", "cast_id": 22, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 14}, {"name": "Christopher Murray", "character": "Pilot", "id": 122491, "credit_id": "53d8ea7d0e0a261c8400243e", "cast_id": 23, "profile_path": "/5yTwriS5a7Tg2xiMT8B2kMYrIkY.jpg", "order": 15}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80babc1", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.4, "runtime": 108}, "49524": {"poster_path": "/ldBBulVDkifYnT501PWXIvtCgmO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61648500, "overview": "A recently slain cop joins a team of undead police officers working for the Rest in Peace Department and tries to find the man who murdered him. Based on the comic by Peter M. Lenkov.", "video": false, "id": 49524, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}], "title": "R.I.P.D.", "tagline": "To protect and serve the living", "vote_count": 505, "homepage": "http://www.ripd.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790736", "adult": false, "backdrop_path": "/aTjMXroOL6f3FObPvwcA5hpWtXm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Original Film", "id": 333}], "release_date": "2013-07-19", "popularity": 1.39985875943551, "original_title": "R.I.P.D.", "budget": 130000000, "cast": [{"name": "Jeff Bridges", "character": "Roy Pulsipher", "id": 1229, "credit_id": "52fe4799c3a36847f813e7f3", "cast_id": 3, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Nick Walker", "id": 10859, "credit_id": "52fe4799c3a36847f813e7f7", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Bobby Hayes", "id": 4724, "credit_id": "52fe4799c3a36847f813e807", "cast_id": 8, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Stephanie Szostak", "character": "Julia", "id": 121953, "credit_id": "52fe4799c3a36847f813e80b", "cast_id": 9, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 3}, {"name": "Mary-Louise Parker", "character": "Proctor", "id": 18248, "credit_id": "52fe4799c3a36847f813e80f", "cast_id": 10, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 4}, {"name": "Marisa Miller", "character": "Roy's Avatar", "id": 209197, "credit_id": "52fe4799c3a36847f813e813", "cast_id": 11, "profile_path": "/sEZfAdodSzQ6OATRYLSAAlRxYnB.jpg", "order": 5}, {"name": "Robert Knepper", "character": "Nawlicki", "id": 17343, "credit_id": "52fe4799c3a36847f813e817", "cast_id": 12, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 6}, {"name": "James Hong", "character": "Nick's Avatar / Jerry Chen", "id": 20904, "credit_id": "52fe4799c3a36847f813e81b", "cast_id": 13, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 7}, {"name": "Mike O'Malley", "character": "Elliot", "id": 87192, "credit_id": "52fe4799c3a36847f813e81f", "cast_id": 14, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 8}, {"name": "Devin Ratray", "character": "Pulaski", "id": 11516, "credit_id": "52fe4799c3a36847f813e823", "cast_id": 15, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 9}, {"name": "Kachina Dechert", "character": "Goth Chick", "id": 1186622, "credit_id": "52fe4799c3a36847f813e827", "cast_id": 16, "profile_path": "/jnHj9TUQou7Gt4Vxgd7vIrihCPi.jpg", "order": 10}, {"name": "Catherine Kresge", "character": "Female TV Reporter", "id": 92877, "credit_id": "52fe4799c3a36847f813e82b", "cast_id": 17, "profile_path": "/A19KrrPWpXbozWNRzzT2rP8QOwg.jpg", "order": 11}, {"name": "Larry Joe Campbell", "character": "Murphy", "id": 118590, "credit_id": "52fe4799c3a36847f813e82f", "cast_id": 18, "profile_path": "/91kXO2XCIv8B9bP3720QIrTJNfs.jpg", "order": 12}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe4799c3a36847f813e7ef", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 5.4, "runtime": 96}, "156022": {"poster_path": "/2eQfjqlvPAxd9aLDs8DvsKLnfed.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 192330738, "overview": "In The Equalizer, Denzel Washington plays McCall, a man who believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when McCall meets Teri (Chlo\u00eb Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he can\u2019t stand idly by \u2013 he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.", "video": false, "id": 156022, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Equalizer", "tagline": "What do you see when you look at me?", "vote_count": 839, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455944", "adult": false, "backdrop_path": "/rKESeEePWWu4rATQDJOktllaDDv.jpg", "production_companies": [{"name": "Lonetree Entertainment", "id": 41096}, {"name": "Columbia Pictures", "id": 5}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Escape Artists", "id": 1423}, {"name": "LStar Capital", "id": 34034}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "2014-09-26", "popularity": 5.59452185739035, "original_title": "The Equalizer", "budget": 55000000, "cast": [{"name": "Denzel Washington", "character": "Robert McCall", "id": 5292, "credit_id": "52fe4b919251416c910dec1d", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Marton Csokas", "character": "Teddy", "id": 20982, "credit_id": "52fe4b919251416c910dec31", "cast_id": 5, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 1}, {"name": "Chlo\u00eb Grace Moretz", "character": "Teri", "id": 56734, "credit_id": "52fe4b919251416c910dec2d", "cast_id": 4, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "David Harbour", "character": "Masters", "id": 35029, "credit_id": "54311ab10e0a264643002d7d", "cast_id": 13, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 3}, {"name": "Haley Bennett", "character": "Mandy", "id": 58754, "credit_id": "54311a8cc3a368117b001719", "cast_id": 12, "profile_path": "/wYmPPXn61F1ecMwIFF8AGla8pKQ.jpg", "order": 4}, {"name": "Bill Pullman", "character": "Brian Plummer", "id": 8984, "credit_id": "5428486cc3a3680b37002a37", "cast_id": 11, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 5}, {"name": "Melissa Leo", "character": "Susan Plummer", "id": 6832, "credit_id": "5371ca08c3a368436e000a88", "cast_id": 7, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 6}, {"name": "David Meunier", "character": "Slavi", "id": 1224149, "credit_id": "54311adbc3a368117b001724", "cast_id": 14, "profile_path": "/bBCXP8UmTHjwqAJRO3Nk3UBftBt.jpg", "order": 7}, {"name": "Johnny Skourtis", "character": "Ralphie", "id": 1399659, "credit_id": "548f2fe192514122ff006e91", "cast_id": 37, "profile_path": "/A6nlgGgziBwzVPjOYFfhBgjfdCD.jpg", "order": 8}, {"name": "Alex Veadov", "character": "Tevi", "id": 20563, "credit_id": "54311b1a0e0a2658b2001693", "cast_id": 15, "profile_path": "/5MNUwSmCYGFQ9ytVRYzKGZcadVq.jpg", "order": 9}, {"name": "Vladimir Kulich", "character": "Vladimir Pushkin", "id": 19898, "credit_id": "548f3000c3a36820b800800c", "cast_id": 38, "profile_path": "/A2g8P9LbEhi34s4I5my4Soo5Y30.jpg", "order": 10}, {"name": "E. Roger Mitchell", "character": "Lead Investigator", "id": 41020, "credit_id": "548f304e9251415568005364", "cast_id": 39, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 11}, {"name": "James Wilcox", "character": "Pederson", "id": 151278, "credit_id": "548f3079c3a3681d4b005a74", "cast_id": 40, "profile_path": "/uIWOVeYs4Vb1QQLOmnugug7yScs.jpg", "order": 12}, {"name": "Mike O'Dea", "character": "Remar", "id": 1399660, "credit_id": "548f30d3c3a3685c3f00246b", "cast_id": 41, "profile_path": "/tXvPtl0QPph3xoAKrv8UbuBk2It.jpg", "order": 13}, {"name": "Anastasia Sanidopoulos Mousis", "character": "Jenny", "id": 1371550, "credit_id": "548f30ef92514122ed00797a", "cast_id": 42, "profile_path": "/20VHqPMLLh98c7Uk36FKudS28sd.jpg", "order": 14}, {"name": "Andrew Farazi", "character": "Gangster", "id": 1195813, "credit_id": "52fe4b919251416c910dec35", "cast_id": 6, "profile_path": "/7gFtpexZvebaeXlNpbBFyojtQ5V.jpg", "order": 15}, {"name": "Allen Maldonado", "character": "Marcus", "id": 141432, "credit_id": "54c7667cc3a36874ae001739", "cast_id": 100, "profile_path": "/yjVKDl9IMrkOUk0ANyFZtOkdM05.jpg", "order": 16}, {"name": "Matt Lasky", "character": "Marat", "id": 101088, "credit_id": "54c766ad92514167910016d3", "cast_id": 101, "profile_path": "/yFJpwI2zeZiyHdzrdVaZueIe0Hc.jpg", "order": 17}, {"name": "Vitaliy Shtabnoy", "character": "Andri", "id": 1419121, "credit_id": "54c766cc925141678e001835", "cast_id": 102, "profile_path": "/6cUY7w39VuLoWjE0OUZM1smR0rn.jpg", "order": 18}, {"name": "Timothy John Smith", "character": "Detective Gilly", "id": 1419122, "credit_id": "54c766e592514167870017b5", "cast_id": 103, "profile_path": "/fQ7VIw071hRRW82yiN2eJ62BVyZ.jpg", "order": 19}, {"name": "Robert Wahlberg", "character": "Detective Harris", "id": 4733, "credit_id": "54c76701c3a36874b40017f9", "cast_id": 104, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 20}, {"name": "Rhet Kidd", "character": "Jay", "id": 1435189, "credit_id": "54f8413a925141241100441a", "cast_id": 105, "profile_path": "/og8pce2BWcfqLV6tsCtn1GH5GZ4.jpg", "order": 21}, {"name": "Mike Morrell", "character": "HM Brian", "id": 1435196, "credit_id": "54f84760c3a36834a2003a58", "cast_id": 106, "profile_path": null, "order": 22}, {"name": "Shawn Fitzgibbon", "character": "Little John Looney", "id": 1435747, "credit_id": "54f9dd409251414b65001a93", "cast_id": 107, "profile_path": "/ddo9U3H6NQCTeUzZmrhwSSL2hNP.jpg", "order": 23}, {"name": "Steve Sweeney", "character": "Counterman", "id": 1435796, "credit_id": "54f9ef0a9251411c4d0000ed", "cast_id": 108, "profile_path": "/4QYaBIVybBU9glR88TnIbhUIepr.jpg", "order": 24}, {"name": "Owen Burke", "character": "Thief", "id": 133068, "credit_id": "54f9f1e49251411c4b00015e", "cast_id": 109, "profile_path": "/qZvzQhocdmrjU6wnQXdCV155G3i.jpg", "order": 25}, {"name": "Luz Mery Sanchez", "character": "Ralphie's Mom", "id": 1435802, "credit_id": "54f9f5669251411c4d0001aa", "cast_id": 110, "profile_path": null, "order": 26}, {"name": "John Romualdi", "character": "Agent Mosley", "id": 1435805, "credit_id": "54f9f600c3a368579600019b", "cast_id": 111, "profile_path": "/eybvc8tmGOWFPxoVMC22sPUZPVu.jpg", "order": 27}, {"name": "Johnny Messner", "character": "P&E Worker", "id": 21798, "credit_id": "54f9fa3ec3a36811c9000059", "cast_id": 112, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 28}, {"name": "Patrick Coppola", "character": "Homeowner", "id": 51666, "credit_id": "54f9fd4fc3a36811c3000069", "cast_id": 113, "profile_path": "/nTgQkkcAM5TXzOlIsIcZbBrNysn.jpg", "order": 29}, {"name": "William Xifaras", "character": "Laborer", "id": 1360002, "credit_id": "54f9fe93c3a36811cf000087", "cast_id": 114, "profile_path": "/cpZ0yxGtal0Qw3A9dzENfCL14pL.jpg", "order": 30}, {"name": "Jenny Johnson", "character": "Reporter", "id": 1435827, "credit_id": "54f9fedec3a36811d2000089", "cast_id": 115, "profile_path": null, "order": 31}, {"name": "Peter Haydu", "character": "Bank Officer", "id": 1435832, "credit_id": "54f9ffa4c3a36811da0000c8", "cast_id": 116, "profile_path": "/yhliTlZS0TQMgqj9tdLAePfd3rd.jpg", "order": 32}, {"name": "Tait Fletcher", "character": "Teddy's Guy", "id": 1105706, "credit_id": "54fa01a7c3a36811d20000e0", "cast_id": 117, "profile_path": "/b70bowmWAiXqlSCBXy0IFC1Mcw4.jpg", "order": 33}, {"name": "Mark Stefanich", "character": "Teddy's Guy", "id": 955406, "credit_id": "54fa030bc3a36811da000136", "cast_id": 118, "profile_path": "/vQyKeuQtJYSdEjP8Zu0r4T6m5c8.jpg", "order": 34}, {"name": "Dan Bilzerian", "character": "Teddy's Guy", "id": 1278777, "credit_id": "54fa060b9251414a1100017d", "cast_id": 119, "profile_path": "/xNvGQiUfsJh6vXGJiyreQ8aHhMO.jpg", "order": 35}, {"name": "Matt Leonard", "character": "Teddy's Guy", "id": 1205742, "credit_id": "54fa07709251414a0d0002bd", "cast_id": 120, "profile_path": "/nxKRJPiFS0aO8PJBnevBAUrRmi7.jpg", "order": 36}, {"name": "Sala Baker", "character": "Teddy's Guy", "id": 1366, "credit_id": "54fa088dc3a36811cf000146", "cast_id": 121, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 37}, {"name": "Yan Dron", "character": "Teddy's Guy", "id": 118598, "credit_id": "54fa0acd9251414a0a0001cb", "cast_id": 122, "profile_path": "/m4rLzOWGcz9hJMSZ8smNdavVQo.jpg", "order": 38}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe4b919251416c910dec23", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 7.4, "runtime": 132}, "49527": {"poster_path": "/ssl4ZcThbMtEPNBEXmWpSgtT9xK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46221189, "overview": "An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.", "video": false, "id": 49527, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Man on a Ledge", "tagline": "You can only push an innocent man so far", "vote_count": 303, "homepage": "http://www.manonaledge.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1568338", "adult": false, "backdrop_path": "/iol2mmfheqTk9AmQXwmgCwKYHm7.jpg", "production_companies": [{"name": "Di Bonaventura Picture", "id": 5955}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2012-01-27", "popularity": 1.17824315154846, "original_title": "Man on a Ledge", "budget": 42000000, "cast": [{"name": "Sam Worthington", "character": "Nick Cassidy", "id": 65731, "credit_id": "52fe479ac3a36847f813e999", "cast_id": 2, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Lydia Mercer", "id": 9281, "credit_id": "52fe479ac3a36847f813e99d", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Joey Cassidy", "id": 478, "credit_id": "52fe479ac3a36847f813e9a1", "cast_id": 4, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Ed Harris", "character": "David Englander", "id": 228, "credit_id": "52fe479ac3a36847f813e9a5", "cast_id": 5, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "Edward Burns", "character": "Jack Dougherty", "id": 12833, "credit_id": "52fe479ac3a36847f813e9a9", "cast_id": 6, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 4}, {"name": "Kyra Sedgwick", "character": "Suzie Morales", "id": 26467, "credit_id": "52fe479ac3a36847f813e9ad", "cast_id": 7, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 5}, {"name": "Anthony Mackie", "character": "Mike Ackerman", "id": 53650, "credit_id": "52fe479ac3a36847f813e9b1", "cast_id": 8, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 6}, {"name": "William Sadler", "character": "Valet", "id": 6573, "credit_id": "52fe479ac3a36847f813e9b5", "cast_id": 9, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 7}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Angie", "id": 589162, "credit_id": "52fe479ac3a36847f813e9b9", "cast_id": 10, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 8}, {"name": "Afton Williamson", "character": "Janice Ackerman", "id": 970631, "credit_id": "52fe479ac3a36847f813e9cf", "cast_id": 15, "profile_path": "/49861fsyV6hLAfGNJjZz0bJdVkf.jpg", "order": 9}, {"name": "J. Smith-Cameron", "character": "Psychiatrist", "id": 52475, "credit_id": "52fe479ac3a36847f813ea09", "cast_id": 25, "profile_path": "/kWOSapPQ0VyG4fASKt5smtt7Tha.jpg", "order": 10}, {"name": "Jonathan Walker", "character": "Investor", "id": 1289296, "credit_id": "52fe479ac3a36847f813ea0d", "cast_id": 26, "profile_path": "/cJvySijSAmPSz6qq0SfGn6icmsp.jpg", "order": 11}], "directors": [{"name": "Asger Leth", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813e995", "profile_path": "/4BKzNUobREK7Wv7LYsUzdKvN9mC.jpg", "id": 72344}], "vote_average": 6.0, "runtime": 102}, "377": {"poster_path": "/sXFlyjfWv544uKOJmPd2vVsaFm9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25504513, "overview": "Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson (Heather Langenkamp) traces the cause to child molester Fred Krueger (Robert Englund), who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen (Johnny Depp), must devise a plan to lure the monster out of the realm of nightmares and into the real world...", "video": false, "id": 377, "genres": [{"id": 27, "name": "Horror"}], "title": "A Nightmare on Elm Street", "tagline": "If Nancy Doesn't Wake Up Screaming, She Won't Wake Up At All!", "vote_count": 250, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087800", "adult": false, "backdrop_path": "/sm0yY77YkAt3nkfVboqm7bw9pjU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Smart Egg Pictures", "id": 1531}], "release_date": "1984-11-15", "popularity": 0.760476199880818, "original_title": "A Nightmare on Elm Street", "budget": 1800000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe423cc3a36847f800e5c1", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Heather Langenkamp", "character": "Nancy Thompson", "id": 5141, "credit_id": "52fe423cc3a36847f800e5d5", "cast_id": 5, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Glen Lantz", "id": 85, "credit_id": "52fe423cc3a36847f800e5d1", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Ronee Blakley", "character": "Marge Thompson", "id": 13652, "credit_id": "52fe423cc3a36847f800e5d9", "cast_id": 6, "profile_path": "/3NFJ8OZshHNfmiSMXbpxQF4RZNH.jpg", "order": 3}, {"name": "John Saxon", "character": "Lt. Thompson", "id": 11163, "credit_id": "52fe423cc3a36847f800e5dd", "cast_id": 7, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 4}, {"name": "Amanda Wyss", "character": "Tina Gray", "id": 13656, "credit_id": "52fe423cc3a36847f800e5e1", "cast_id": 8, "profile_path": "/1HEqQELnhQ7NAC6unYqc4CQ1ib.jpg", "order": 5}, {"name": "Jsu Garcia", "character": "Rod Lane", "id": 13657, "credit_id": "52fe423cc3a36847f800e5e5", "cast_id": 9, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 6}, {"name": "Charles Fleischer", "character": "Dr. King", "id": 12826, "credit_id": "52fe423cc3a36847f800e5e9", "cast_id": 10, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 7}, {"name": "Joseph Whipp", "character": "Sgt. Parker", "id": 13660, "credit_id": "52fe423cc3a36847f800e5ed", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Lin Shaye", "character": "Teacher", "id": 7401, "credit_id": "52fe423cc3a36847f800e5f1", "cast_id": 12, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 9}, {"name": "Joe Unger", "character": "Sgt. Garcia", "id": 13661, "credit_id": "52fe423cc3a36847f800e5f5", "cast_id": 13, "profile_path": "/ebDUtKHeOv2mZthv8cLfKWev2Vi.jpg", "order": 10}, {"name": "Mimi Craven", "character": "Nurse", "id": 13662, "credit_id": "52fe423cc3a36847f800e5f9", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "David Andrews", "character": "Foreman", "id": 7219, "credit_id": "52fe423cc3a36847f800e64b", "cast_id": 28, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 12}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e5cd", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.9, "runtime": 91}, "378": {"poster_path": "/btzzZ3RV9ypuGT2j4Ft72xI013F.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29180280, "overview": "The Coen Brothers tell the story of a absurd yet likable family with an unproductive couple as the focal point. The couple has gotten themselves into some trouble while kidnapping a baby and give Hollywood one of the most memorable chase scenes to date.", "video": false, "id": 378, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Raising Arizona", "tagline": "Their lawless years are behind them. Their child-rearing years lay ahead...", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093822", "adult": false, "backdrop_path": "/A9jMrrFyAHhbr0c7OwrFuL5Ay7E.jpg", "production_companies": [{"name": "Circle Films", "id": 11273}], "release_date": "1987-03-01", "popularity": 0.28350352474625, "original_title": "Raising Arizona", "budget": 6000000, "cast": [{"name": "Nicolas Cage", "character": "H.I. McDunnough", "id": 2963, "credit_id": "52fe423cc3a36847f800e6c1", "cast_id": 12, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Holly Hunter", "character": "Edwina 'Ed' McDunnough", "id": 18686, "credit_id": "52fe423cc3a36847f800e6c5", "cast_id": 13, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 1}, {"name": "Trey Wilson", "character": "Nathan Arizona Huffhines, Sr.", "id": 4039, "credit_id": "52fe423cc3a36847f800e6c9", "cast_id": 14, "profile_path": "/lT3Ia2j6BpNflu3duzK0bU2t83m.jpg", "order": 2}, {"name": "John Goodman", "character": "Gale Snoats", "id": 1230, "credit_id": "52fe423cc3a36847f800e6cd", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "William Forsythe", "character": "Evelle Snoats", "id": 4520, "credit_id": "52fe423cc3a36847f800e6d1", "cast_id": 16, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 4}, {"name": "Sam McMurray", "character": "Glen", "id": 5176, "credit_id": "52fe423cc3a36847f800e6d5", "cast_id": 17, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 5}, {"name": "Frances McDormand", "character": "Dot", "id": 3910, "credit_id": "52fe423cc3a36847f800e6d9", "cast_id": 18, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 6}, {"name": "Randall 'Tex' Cobb", "character": "Leonard Smalls", "id": 5177, "credit_id": "52fe423cc3a36847f800e6dd", "cast_id": 19, "profile_path": "/wtRQp99LgNrJ8bF9XyAzbuoekMb.jpg", "order": 7}, {"name": "T.J. Kuhn", "character": "Nathan Arizona, Jr.", "id": 5178, "credit_id": "52fe423cc3a36847f800e6e1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Lynne Kitei", "character": "Florence Arizona", "id": 5179, "credit_id": "52fe423cc3a36847f800e6e5", "cast_id": 21, "profile_path": null, "order": 9}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e681", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e687", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.2, "runtime": 94}, "379": {"poster_path": "/szjELUMzo3fIVBlMTISIMfQWqJc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5080409, "overview": "Miller\u2019s Crossing is the Coen brothers' first successful attempt at reaching a wider audience. They illustrate an atypical Mafia story that sways away from the typical films from the genre like The Godfather or Goodfellas. Taking place during Prohibition, this film is an incredible piece of work accompanied by superb acting performances.", "video": false, "id": 379, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Miller's Crossing", "tagline": "Up is down, black is white, and nothing is what it seems.", "vote_count": 79, "homepage": "http://www.geocities.com/~mikemckiernan/mcfrontpage.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "gd", "name": ""}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "yi", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100150", "adult": false, "backdrop_path": "/bOiWS61bV1oIaHhxXtmtAy8Gfvq.jpg", "production_companies": [{"name": "Circle Films", "id": 11273}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1990-09-21", "popularity": 0.703368798885098, "original_title": "Miller's Crossing", "budget": 14000000, "cast": [{"name": "Gabriel Byrne", "character": "Tom Reagan", "id": 5168, "credit_id": "52fe423cc3a36847f800e777", "cast_id": 6, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Verna Bernbaum", "id": 4726, "credit_id": "52fe423cc3a36847f800e77b", "cast_id": 7, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "John Turturro", "character": "Bernie Bernbaum", "id": 1241, "credit_id": "52fe423cc3a36847f800e77f", "cast_id": 8, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 2}, {"name": "Jon Polito", "character": "Johnny Caspar", "id": 4253, "credit_id": "52fe423cc3a36847f800e783", "cast_id": 9, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 3}, {"name": "J.E. Freeman", "character": "Eddie Dane", "id": 5169, "credit_id": "52fe423cc3a36847f800e787", "cast_id": 10, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 4}, {"name": "Albert Finney", "character": "Liam 'Leo' O'Bannon", "id": 3926, "credit_id": "52fe423cc3a36847f800e78b", "cast_id": 11, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 5}, {"name": "Mike Starr", "character": "Frankie", "id": 5170, "credit_id": "52fe423cc3a36847f800e78f", "cast_id": 12, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 6}, {"name": "Al Mancini", "character": "Tic-Tac", "id": 5171, "credit_id": "52fe423cc3a36847f800e793", "cast_id": 13, "profile_path": "/k4bnip5sXDzH1dIH5QeLxUs3xP4.jpg", "order": 7}, {"name": "Richard Woods", "character": "Mayor Dale Levander", "id": 5172, "credit_id": "52fe423cc3a36847f800e797", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Thomas Toner", "character": "O'Doole", "id": 5173, "credit_id": "52fe423cc3a36847f800e79b", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Steve Buscemi", "character": "Mink", "id": 884, "credit_id": "52fe423cc3a36847f800e79f", "cast_id": 16, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 10}, {"name": "Mario Todisco", "character": "Clarence \"Drop\" Johnson", "id": 176958, "credit_id": "52fe423cc3a36847f800e7dd", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Olek Krupa", "character": "Tad", "id": 53573, "credit_id": "52fe423cc3a36847f800e7e1", "cast_id": 29, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 12}, {"name": "Michael Jeter", "character": "Adolph", "id": 2169, "credit_id": "52fe423cc3a36847f800e7e5", "cast_id": 30, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 13}, {"name": "Lanny Flaherty", "character": "Terry", "id": 3204, "credit_id": "52fe423cc3a36847f800e7e9", "cast_id": 31, "profile_path": "/tu6UZVHRKRNLbtmHUsjHWHctprz.jpg", "order": 14}, {"name": "Jeanette Kontomitras", "character": "Mrs. Caspar", "id": 1126347, "credit_id": "52fe423cc3a36847f800e7ed", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Louis Charles Mounicou III", "character": "Johnny Caspar, Jr.", "id": 1281525, "credit_id": "52fe423cc3a36847f800e7f1", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "John McConnell", "character": "Cop - Brian", "id": 16459, "credit_id": "52fe423cc3a36847f800e7f5", "cast_id": 34, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 17}, {"name": "Danny Aiello III", "character": "Cop - Delahanty", "id": 27513, "credit_id": "52fe423cc3a36847f800e7f9", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Helen Jolly", "character": "Screaming Lady", "id": 1281526, "credit_id": "52fe423cc3a36847f800e7fd", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Hilda McLean", "character": "Landlady", "id": 1281527, "credit_id": "52fe423cc3a36847f800e801", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Monte Starr", "character": "Gunman in Leo's House", "id": 1281528, "credit_id": "52fe423cc3a36847f800e805", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Don Picard", "character": "Gunman in Leo's House", "id": 142160, "credit_id": "52fe423cc3a36847f800e809", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Salvatore H. Tornabene", "character": "Rug Daniels", "id": 1281529, "credit_id": "52fe423cc3a36847f800e80d", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Kevin Dearie", "character": "Street Urchin", "id": 1281530, "credit_id": "52fe423cc3a36847f800e811", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Michael Badalucco", "character": "Caspar's Driver", "id": 1010, "credit_id": "52fe423cc3a36847f800e815", "cast_id": 42, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 25}, {"name": "Charles Ferrara", "character": "Caspar's Butler", "id": 1281531, "credit_id": "52fe423cc3a36847f800e819", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Esteban Fernandez", "character": "Caspar's Cousin", "id": 1281532, "credit_id": "52fe423cc3a36847f800e81d", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "George Fernandez", "character": "Caspar's Cousin", "id": 1281533, "credit_id": "52fe423cc3a36847f800e821", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Charles Gunning", "character": "Hitman at Verna's", "id": 71659, "credit_id": "52fe423cc3a36847f800e825", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Dave Drinkx", "character": "Hitman #2", "id": 1281535, "credit_id": "52fe423cc3a36847f800e829", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "David Darlow", "character": "Lazarre's Messenger", "id": 35022, "credit_id": "52fe423cc3a36847f800e82d", "cast_id": 48, "profile_path": null, "order": 31}, {"name": "Robert LaBrosse", "character": "Lazarre's Tough", "id": 1281536, "credit_id": "52fe423cc3a36847f800e831", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Carl Rooney", "character": "Lazarre's Tough", "id": 1281537, "credit_id": "52fe423cc3a36847f800e835", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Jack Harris", "character": "Man with Pipe Bomb (as Jack David Harris)", "id": 1190852, "credit_id": "52fe423cc3a36847f800e839", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Jery Hewitt", "character": "Son of Erin", "id": 1281538, "credit_id": "52fe423cc3a36847f800e83d", "cast_id": 52, "profile_path": null, "order": 35}, {"name": "Sam Raimi", "character": "Snickering Gunman", "id": 7623, "credit_id": "52fe423cc3a36847f800e841", "cast_id": 53, "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "order": 36}, {"name": "John Schnauder Jr.", "character": "Cop with Bullhorn", "id": 1281539, "credit_id": "52fe423cc3a36847f800e845", "cast_id": 54, "profile_path": null, "order": 37}, {"name": "Zolly Levin", "character": "Rabbi", "id": 1281540, "credit_id": "52fe423cc3a36847f800e849", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Joey Ancona", "character": "Boxer", "id": 1281541, "credit_id": "52fe423cc3a36847f800e84d", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Bill Raye", "character": "Boxer", "id": 1281542, "credit_id": "52fe423cc3a36847f800e851", "cast_id": 57, "profile_path": null, "order": 40}, {"name": "William Preston Robertson", "character": "Voice (voice)", "id": 565196, "credit_id": "52fe423cc3a36847f800e855", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Frances McDormand", "character": "Mayor's secretary (uncredited)", "id": 3910, "credit_id": "52fe423cc3a36847f800e7d9", "cast_id": 27, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 42}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "53c44a360e0a26157f00d8c3", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e767", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 7.7, "runtime": 115}, "380": {"poster_path": "/vllKYkA7eYi2UMM9yWQ1JegefBh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 354825435, "overview": "Selfish yuppie Charlie Babbitt's father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country.", "video": false, "id": 380, "genres": [{"id": 18, "name": "Drama"}], "title": "Rain Man", "tagline": "A journey through understanding and fellowship.", "vote_count": 452, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095953", "adult": false, "backdrop_path": "/si2eYu8vpfb2Gu9jHnnbBtSXnNJ.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Star Partners II Ltd.", "id": 206}], "release_date": "1988-12-11", "popularity": 1.13914321242952, "original_title": "Rain Man", "budget": 25000000, "cast": [{"name": "Dustin Hoffman", "character": "Raymond Babbitt", "id": 4483, "credit_id": "52fe423cc3a36847f800e8b7", "cast_id": 4, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Tom Cruise", "character": "Charlie Babbitt", "id": 500, "credit_id": "52fe423cc3a36847f800e8bb", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 1}, {"name": "Valeria Golino", "character": "Susanna", "id": 3124, "credit_id": "52fe423cc3a36847f800e8bf", "cast_id": 6, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 2}, {"name": "Gerald R. Molen", "character": "Dr. Bruner", "id": 2211, "credit_id": "52fe423cc3a36847f800e8c3", "cast_id": 7, "profile_path": "/ih3yLiYixeQuW2Zp545aHtD5nq.jpg", "order": 3}, {"name": "Jack Murdock", "character": "John Mooney", "id": 5145, "credit_id": "52fe423cc3a36847f800e8c7", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Michael D. Roberts", "character": "Vern", "id": 5146, "credit_id": "52fe423cc3a36847f800e8cb", "cast_id": 9, "profile_path": "/lljqOALpsg8lkOiXedHgWmOA5bY.jpg", "order": 5}, {"name": "Ralph Seymour", "character": "Lenny", "id": 5147, "credit_id": "52fe423cc3a36847f800e8cf", "cast_id": 10, "profile_path": "/7lu95loRqfN0TTWZGM1QfI5hX8W.jpg", "order": 6}, {"name": "Lucinda Jenney", "character": "Iris", "id": 5148, "credit_id": "52fe423cc3a36847f800e8d3", "cast_id": 11, "profile_path": "/ucvaRviBWE1IR4YPGA8VYVMSand.jpg", "order": 7}, {"name": "Bonnie Hunt", "character": "Sally Dibbs", "id": 5149, "credit_id": "52fe423cc3a36847f800e8d7", "cast_id": 12, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 8}, {"name": "Kim Robillard", "character": "Township Doctor", "id": 5150, "credit_id": "52fe423cc3a36847f800e8db", "cast_id": 13, "profile_path": "/vhmpyqkhpIv1NjB4rfDBLsxfybu.jpg", "order": 9}, {"name": "Beth Grant", "character": "Mother at Farm House", "id": 5151, "credit_id": "52fe423cc3a36847f800e8df", "cast_id": 14, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 10}, {"name": "Dolan Dougherty", "character": "Farm Kid#1", "id": 5152, "credit_id": "52fe423cc3a36847f800e8e3", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Marshall Dougherty", "character": "Farm Kid#2", "id": 5153, "credit_id": "52fe423cc3a36847f800e8e7", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Patrick Dougherty", "character": "Farm Kid#3", "id": 5154, "credit_id": "52fe423cc3a36847f800e8eb", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Peter Dougherty", "character": "Farm Kid#5", "id": 5156, "credit_id": "52fe423cc3a36847f800e8ef", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Andrew Dougherty", "character": "Farm Kid#6", "id": 5157, "credit_id": "52fe423cc3a36847f800e8f3", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Loretta Wendt Jolivette", "character": "Secretary Dr. Bruner", "id": 5158, "credit_id": "52fe423cc3a36847f800e8f7", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Donald E. Jones", "character": "Minister at Funeral", "id": 5159, "credit_id": "52fe423cc3a36847f800e8fb", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Bryon P. Caunar", "character": "Patient in Waiting Room", "id": 5160, "credit_id": "52fe423cc3a36847f800e8ff", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Donna J. Dickson", "character": "Nurse", "id": 5161, "credit_id": "52fe423cc3a36847f800e903", "cast_id": 23, "profile_path": null, "order": 19}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e8a7", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 7.1, "runtime": 133}, "381": {"poster_path": "/i2BehBKq2PGiv0LmGUQxzWgk10l.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8750000, "overview": "A delightful Hitchcock film about an ex-burglar who must catch a thief who\u2019s been copying this style before he gets accused of the wrong crimes. His time is running out as the police are close behind him yet he finds time for a little romance of course. A classic masterpiece starring Grace Kelly and Cary Grant.", "video": false, "id": 381, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "To Catch a Thief", "tagline": "WANTED by the police in all the luxury-spots of Europe!... A catch for any woman!", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0048728", "adult": false, "backdrop_path": "/h0uogx8C6Es5chDvY5USa3r7Tr1.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1955-08-03", "popularity": 0.690641047298019, "original_title": "To Catch a Thief", "budget": 2500000, "cast": [{"name": "Cary Grant", "character": "John Robie", "id": 2638, "credit_id": "52fe423dc3a36847f800e9db", "cast_id": 19, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Frances Stevens", "id": 4070, "credit_id": "52fe423cc3a36847f800e989", "cast_id": 3, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Jessie Royce Landis", "character": "Jessie Stevens", "id": 2640, "credit_id": "52fe423cc3a36847f800e999", "cast_id": 6, "profile_path": "/o7NngdQPrvEfN3m3UVcjVPwC3Co.jpg", "order": 2}, {"name": "Brigitte Auber", "character": "Danielle Foussard", "id": 5183, "credit_id": "52fe423cc3a36847f800e9a5", "cast_id": 9, "profile_path": "/yopJUGz9G5bbJKMRQnC6R27SXtc.jpg", "order": 3}, {"name": "John Williams", "character": "H. H. Hughson", "id": 5182, "credit_id": "52fe423cc3a36847f800e99d", "cast_id": 7, "profile_path": "/esXPldHaXSEz8dQmahcGz4VWJ8R.jpg", "order": 4}, {"name": "Charles Vanel", "character": "Bertani", "id": 2566, "credit_id": "52fe423cc3a36847f800e9a1", "cast_id": 8, "profile_path": "/m3zN5n0ehtZcSJHu4E2miJt7dsp.jpg", "order": 5}, {"name": "Jean Martinelli", "character": "Foussard", "id": 5185, "credit_id": "52fe423dc3a36847f800e9b5", "cast_id": 12, "profile_path": "/aem2faLcsdEsnO59Om3y8OciAgu.jpg", "order": 6}, {"name": "Georgette Anys", "character": "Germaine", "id": 5186, "credit_id": "52fe423dc3a36847f800e9b9", "cast_id": 13, "profile_path": "/sfrenrCZsCMz0CGeIein5LlabTU.jpg", "order": 7}, {"name": "Bess Flowers", "character": "Masquerade party guest", "id": 121323, "credit_id": "52fe423dc3a36847f800e9df", "cast_id": 20, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 8}, {"name": "Alfred Hitchcock", "character": "Man Sitting Next to John Robie on Bus (uncredited)", "id": 2636, "credit_id": "5512926cc3a3686195001195", "cast_id": 21, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 9}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe423cc3a36847f800e985", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.2, "runtime": 106}, "9621": {"poster_path": "/Asn50mIjDaeDKbaJkQ7lY6goV8p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13500000, "overview": "Drew Baylor is fired after causing his shoe company to lose hundreds of millions of dollars. To make matters worse, he's also dumped by his girlfriend. On the verge of ending it all, Drew gets a new lease on life when he returns to his family's small Kentucky hometown after his father dies. Along the way, he meets a flight attendant with whom he falls in love.", "video": false, "id": 9621, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Elizabethtown", "tagline": "It's a heck of a place to find yourself", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368709", "adult": false, "backdrop_path": "/3iwNfRoESEM2aI5wXkNSeDeiWCW.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Vinyl Films", "id": 485}, {"name": "KMP Film Invest", "id": 20157}], "release_date": "2005-09-04", "popularity": 0.407867049933252, "original_title": "Elizabethtown", "budget": 57000000, "cast": [{"name": "Orlando Bloom", "character": "Drew Baylor", "id": 114, "credit_id": "52fe4512c3a36847f80bace5", "cast_id": 6, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Claire Colburn", "id": 205, "credit_id": "52fe4512c3a36847f80bace9", "cast_id": 7, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Hollie Baylor", "id": 4038, "credit_id": "52fe4512c3a36847f80baced", "cast_id": 8, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Alec Baldwin", "character": "Phil DeVoss", "id": 7447, "credit_id": "52fe4512c3a36847f80bacf1", "cast_id": 9, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Bill Banyon", "id": 14888, "credit_id": "52fe4512c3a36847f80bacf5", "cast_id": 10, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Judy Greer", "character": "Heather Baylor", "id": 20750, "credit_id": "52fe4512c3a36847f80bacf9", "cast_id": 11, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 5}, {"name": "Jessica Biel", "character": "Ellen Kishmore", "id": 10860, "credit_id": "52fe4512c3a36847f80bacfd", "cast_id": 12, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 6}, {"name": "Paul Schneider ", "character": "Jessie Baylor", "id": 997565, "credit_id": "52fe4512c3a36847f80bad01", "cast_id": 13, "profile_path": "/e3NFEoxP6G9RdbZoyyMPTfBUbol.jpg", "order": 7}, {"name": "Jed Rees", "character": "Chuck Hasboro", "id": 15032, "credit_id": "52fe4512c3a36847f80bad05", "cast_id": 14, "profile_path": "/u2zPeu9RguGzPagDjSPPxXFHxax.jpg", "order": 8}, {"name": "Paula Deen", "character": "Aunt Dora", "id": 1215524, "credit_id": "52fe4512c3a36847f80bad09", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Tim Devitt", "character": "Mitch Baylor", "id": 1086871, "credit_id": "52fe4512c3a36847f80bad0d", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Loudon Wainwright III", "character": "Uncle Dale", "id": 84848, "credit_id": "52fe4512c3a36847f80bad11", "cast_id": 17, "profile_path": "/dXknB49LSGxMcmhYGch7hcsYFY1.jpg", "order": 11}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bacc9", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.1, "runtime": 123}, "49538": {"poster_path": "/l2cBQTfbVEWUXW8nKWCgq0ct7WU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 344420111, "overview": "Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.", "video": false, "id": 49538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "X-Men: First Class", "tagline": "Witness the moment that will change our world.", "vote_count": 2605, "homepage": "http://www.x-menfirstclassmovie.com/", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1270798", "adult": false, "backdrop_path": "/39nstYsfjR6ggyKTtB4Joga2fs8.jpg", "production_companies": [{"name": "Marvel Entertainment", "id": 7505}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Ingenious Media", "id": 290}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Donners' Company", "id": 431}, {"name": "Dune Entertainment", "id": 444}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Big Screen Productions", "id": 10893}], "release_date": "2011-05-24", "popularity": 0.149384529175766, "original_title": "X-Men: First Class", "budget": 160000000, "cast": [{"name": "James McAvoy", "character": "Charles Xavier", "id": 5530, "credit_id": "52fe479bc3a36847f813ecbb", "cast_id": 22, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Erik Lehnsherr / Magneto", "id": 17288, "credit_id": "52fe479bc3a36847f813ecbf", "cast_id": 23, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Jennifer Lawrence", "character": "Raven Darkholme / Mystique", "id": 72129, "credit_id": "52fe479bc3a36847f813eccb", "cast_id": 26, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Sebastian Shaw", "id": 4724, "credit_id": "52fe479bc3a36847f813eccf", "cast_id": 27, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Rose Byrne", "character": "Moira MacTaggert", "id": 9827, "credit_id": "52fe479bc3a36847f813ecc3", "cast_id": 24, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 4}, {"name": "Nicholas Hoult", "character": "Hank McCoy / Beast", "id": 3292, "credit_id": "52fe479bc3a36847f813ece3", "cast_id": 32, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 5}, {"name": "January Jones", "character": "Emma Frost", "id": 31717, "credit_id": "52fe479bc3a36847f813ecc7", "cast_id": 25, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 6}, {"name": "Lucas Till", "character": "Alex Summers / Havok", "id": 429, "credit_id": "52fe479bc3a36847f813ecff", "cast_id": 39, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 7}, {"name": "Caleb Landry Jones", "character": "Sean Cassidy / Banshee", "id": 572541, "credit_id": "52fe479bc3a36847f813ecf7", "cast_id": 37, "profile_path": "/73T6DLPggbDaIDLz162o01dCg6I.jpg", "order": 8}, {"name": "Zo\u00eb Kravitz", "character": "Angel Salvadore", "id": 37153, "credit_id": "52fe479bc3a36847f813ecd7", "cast_id": 29, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 9}, {"name": "\u00c1lex Gonz\u00e1lez", "character": "Janos Quested / Riptide", "id": 1030252, "credit_id": "52fe479bc3a36847f813ecdb", "cast_id": 30, "profile_path": "/6ZTRJwkZ26p1wsNdUtyn6UTHyN3.jpg", "order": 10}, {"name": "Edi Gathegi", "character": "Armando Mu\u00f1oz / Darwin", "id": 39391, "credit_id": "52fe479bc3a36847f813ecfb", "cast_id": 38, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 11}, {"name": "Jason Flemyng", "character": "Azazel", "id": 973, "credit_id": "52fe479bc3a36847f813ecdf", "cast_id": 31, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 12}, {"name": "Oliver Platt", "character": "Man in Black Suit", "id": 17485, "credit_id": "52fe479bc3a36847f813ecd3", "cast_id": 28, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 13}, {"name": "Morgan Lily", "character": "Young Raven (10 yrs)", "id": 74227, "credit_id": "52fe479bc3a36847f813ece7", "cast_id": 33, "profile_path": "/iYa30gYkaxXLsGvUZ9WhieQw2xo.jpg", "order": 14}, {"name": "Laurence Belcher", "character": "Charles Xavier (12 Years)", "id": 456008, "credit_id": "52fe479bc3a36847f813ecf3", "cast_id": 36, "profile_path": "/b8085IGbfe70N80Mz27qhsIz2PH.jpg", "order": 15}, {"name": "Beth Goddard", "character": "Mrs. Xavier", "id": 182079, "credit_id": "52fe479bc3a36847f813eceb", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Bill Milner", "character": "Young Erik", "id": 81260, "credit_id": "52fe479bc3a36847f813ecef", "cast_id": 35, "profile_path": "/gc1aD7V6mnEKuLhHJX9ssjxT2H7.jpg", "order": 17}, {"name": "Demetri Goritsas", "character": "Levene", "id": 20471, "credit_id": "52fe479bc3a36847f813ed03", "cast_id": 40, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 18}, {"name": "Glenn Morshower", "character": "Colonel Hendry", "id": 12797, "credit_id": "52fe479bc3a36847f813ed07", "cast_id": 41, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 19}, {"name": "Don Creech", "character": "William Stryker", "id": 1007, "credit_id": "52fe479bc3a36847f813ed0b", "cast_id": 42, "profile_path": "/sI2hA8u4BiMfqtMLaKwLgeH5vGy.jpg", "order": 20}, {"name": "Matt Craven", "character": "CIA Director McCone", "id": 13525, "credit_id": "52fe479bc3a36847f813ed0f", "cast_id": 43, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 21}, {"name": "James Remar", "character": "US General", "id": 1736, "credit_id": "52fe479bc3a36847f813ed13", "cast_id": 44, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 22}, {"name": "Ray Wise", "character": "Secretary of State", "id": 6719, "credit_id": "52fe479bc3a36847f813ed17", "cast_id": 45, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 23}, {"name": "Brendan Fehr", "character": "Communications Officer", "id": 72440, "credit_id": "52fe479bc3a36847f813ed1b", "cast_id": 46, "profile_path": "/8tp3G4RMWNpxprEfyxvjhRFf6uq.jpg", "order": 24}, {"name": "Michael Ironside", "character": "Captain", "id": 11086, "credit_id": "52fe479bc3a36847f813ed1f", "cast_id": 47, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 25}, {"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe479bc3a36847f813ed23", "cast_id": 48, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 26}, {"name": "Rebecca Romijn", "character": "Mystique - older", "id": 11008, "credit_id": "52fe479bc3a36847f813ed27", "cast_id": 49, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 27}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe479bc3a36847f813ec8d", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.9, "runtime": 132}, "387": {"poster_path": "/nAhTaTpjATAtoxlf3Hbe6bDvQe0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 85000000, "overview": "A German submarine hunts allied ships during the Second World War. Soon it becomes hunted itself. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits...", "video": false, "id": 387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Boat", "tagline": "When the hunters become the hunted", "vote_count": 192, "homepage": "http://www.dasboot.com", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0082096", "adult": false, "backdrop_path": "/hHiR613tscJ2i6A2HcM6Yp8bWyz.jpg", "production_companies": [{"name": "Bavaria Film", "id": 1704}, {"name": "Radiant Film GmbH", "id": 209}, {"name": "S\u00fcddeutscher Rundfunk", "id": 210}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Twin Bros. Productions", "id": 11344}], "release_date": "1981-09-16", "popularity": 1.14311942826575, "original_title": "Das Boot", "budget": 14000000, "cast": [{"name": "J\u00fcrgen Prochnow", "character": "Kapit\u00e4n-Leutnant Heinrich Lehmann-Willenbrock", "id": 920, "credit_id": "52fe423dc3a36847f800ea8f", "cast_id": 1, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 0}, {"name": "Herbert Gr\u00f6nemeyer", "character": "Leutnant Werner", "id": 5228, "credit_id": "52fe423dc3a36847f800ea93", "cast_id": 2, "profile_path": "/sd500lUOKffH6GjTgmO72eCfmmL.jpg", "order": 1}, {"name": "Klaus Wennemann", "character": "Der Leitende/Fritz Grade", "id": 5229, "credit_id": "52fe423dc3a36847f800ea97", "cast_id": 3, "profile_path": "/nq80zefLZL8fAogOl4wWZ9FJZ6C.jpg", "order": 2}, {"name": "Hubertus Bengsch", "character": "1WO", "id": 5230, "credit_id": "52fe423dc3a36847f800ea9b", "cast_id": 4, "profile_path": "/ysDakvQICbinzI2Yhm1mJi6b5v0.jpg", "order": 3}, {"name": "Martin Semmelrogge", "character": "2WO", "id": 4924, "credit_id": "52fe423dc3a36847f800ea9f", "cast_id": 5, "profile_path": "/1QLBQoyszTLfk4WZmoXixpyjBb6.jpg", "order": 4}, {"name": "Bernd Tauber", "character": "Kriechbaum/Navigator", "id": 2349, "credit_id": "52fe423dc3a36847f800eaa3", "cast_id": 6, "profile_path": "/moshEghFjn4gxUHNCvqPxXU6nPj.jpg", "order": 5}, {"name": "Erwin Leder", "character": "Johann", "id": 3970, "credit_id": "52fe423dc3a36847f800eaa7", "cast_id": 7, "profile_path": "/26qbu74DyDmZM3unsU99wiPWw5i.jpg", "order": 6}, {"name": "Martin May", "character": "Ullmann", "id": 5232, "credit_id": "52fe423dc3a36847f800eab1", "cast_id": 9, "profile_path": "/xZbvM8s1sDxUHTZGRcKoC3uguZf.jpg", "order": 7}, {"name": "Heinz Hoenig", "character": "Hinrich", "id": 5233, "credit_id": "52fe423dc3a36847f800eab5", "cast_id": 10, "profile_path": "/nyBxwL4xkGIlFrhIn4l8jzlbG09.jpg", "order": 8}, {"name": "Uwe Ochsenknecht", "character": "Bosun", "id": 682, "credit_id": "52fe423dc3a36847f800eab9", "cast_id": 11, "profile_path": "/nPaQx2K0UodicKPlrAXQjjkilF7.jpg", "order": 9}, {"name": "Claude-Oliver Rudolph", "character": "Ario", "id": 5234, "credit_id": "52fe423dc3a36847f800eabd", "cast_id": 12, "profile_path": "/3dydKxmunb3m7UbOlRdNIaSEEKf.jpg", "order": 10}, {"name": "Jan Fedder", "character": "Pilgrim", "id": 5235, "credit_id": "52fe423dc3a36847f800eac1", "cast_id": 13, "profile_path": "/2NERvzzZnP2b6MeIzCwVW581qUc.jpg", "order": 11}, {"name": "Ralf Richter", "character": "Frenssen", "id": 4922, "credit_id": "52fe423dc3a36847f800eac5", "cast_id": 14, "profile_path": "/AnTdFifILOwDLZAT9xxYshUgJbF.jpg", "order": 12}, {"name": "Otto Sander", "character": "Phillip Thomsen", "id": 2311, "credit_id": "5308f4e2c3a3684213002a20", "cast_id": 31, "profile_path": "/6wIfFAG3mryP7vx2zc75Ey67fL.jpg", "order": 13}, {"name": "Sky du Mont", "character": "Leutnant M\u00fcller", "id": 5012, "credit_id": "5365e43ac3a3681220002506", "cast_id": 33, "profile_path": "/8BEBOXP0BToOi4m9KBWAcWPGPlr.jpg", "order": 15}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800eaad", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 7.6, "runtime": 149}, "388": {"poster_path": "/z6wYRuvk1lf60R4SmWETfdUvGsm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 184376254, "overview": "An efficient gang enters a Manhattan bank, locks the doors, and takes hostages. They work deliberately, without haste. Detective Frazier is assigned to negotiate, but his mind is occupied with the corruption charges he is facing. With an army of police surrounding the bank, the thief, the cop, and the plutocrat's fixer enter high-stakes negotiations. Why are the robbers asking for a plane, if they are so competent and they know they won't get one? Why aren't they in more of a hurry?", "video": false, "id": 388, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Inside Man", "tagline": "It looked like the perfect bank robbery. But you can't judge a crime by its cover.", "vote_count": 403, "homepage": "http://www.universalstudiosentertainment.com/inside-man/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sq", "name": "shqip"}], "imdb_id": "tt0454848", "adult": false, "backdrop_path": "/6sLQFh6VFxU8nIkVaYg2yyJ6FL.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}], "release_date": "2006-03-24", "popularity": 1.04698440316159, "original_title": "Inside Man", "budget": 45000000, "cast": [{"name": "Denzel Washington", "character": "Detective Keith Frazier", "id": 5292, "credit_id": "52fe423dc3a36847f800ebc1", "cast_id": 15, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Madeleine White", "id": 1038, "credit_id": "52fe423dc3a36847f800ebc5", "cast_id": 16, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Clive Owen", "character": "Dalton Russell", "id": 2296, "credit_id": "52fe423dc3a36847f800ebc9", "cast_id": 17, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "Arthur Case", "id": 290, "credit_id": "52fe423dc3a36847f800ebcd", "cast_id": 18, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "Chiwetel Ejiofor", "character": "Detective Bill Mitchell", "id": 5294, "credit_id": "52fe423dc3a36847f800ebd1", "cast_id": 19, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 4}, {"name": "Carlos Andr\u00e9s G\u00f3mez", "character": "Steve", "id": 5295, "credit_id": "52fe423dc3a36847f800ebd5", "cast_id": 20, "profile_path": "/fJrzxb24agdScxqXbTWs90mQN0x.jpg", "order": 5}, {"name": "Kim Director", "character": "Stevie", "id": 4889, "credit_id": "52fe423dc3a36847f800ebd9", "cast_id": 21, "profile_path": "/3QW5pMPzbcOkJHeif2cHAW04WhT.jpg", "order": 6}, {"name": "James Ransone", "character": "Steve-O", "id": 5296, "credit_id": "52fe423dc3a36847f800ebdd", "cast_id": 22, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 7}, {"name": "Bernie Rachelle", "character": "Chaim", "id": 5297, "credit_id": "52fe423dc3a36847f800ebe1", "cast_id": 23, "profile_path": "/lWUR45ip1TJDJHwrq62Np7AGGxD.jpg", "order": 8}, {"name": "Peter Gerety", "character": "Captain Coughlin", "id": 1986, "credit_id": "52fe423dc3a36847f800ebe5", "cast_id": 24, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 9}, {"name": "Victor Colicchio", "character": "Sergeant Collins", "id": 5298, "credit_id": "52fe423dc3a36847f800ebe9", "cast_id": 25, "profile_path": "/4qzVfLml5Jmzn20QpJF5qlfJJaA.jpg", "order": 10}, {"name": "Cassandra Freeman", "character": "Sylvia", "id": 5299, "credit_id": "52fe423dc3a36847f800ebed", "cast_id": 26, "profile_path": "/dwIqYfdeOaUUEjcEKuPf5LkBSFE.jpg", "order": 11}, {"name": "Peter Frechette", "character": "Peter Hammond", "id": 5300, "credit_id": "52fe423dc3a36847f800ebf1", "cast_id": 27, "profile_path": "/Aat9wnvCBql56V9axa5lZ0QvPP1.jpg", "order": 12}, {"name": "Waris Ahluwalia", "character": "Vikram Walia", "id": 5301, "credit_id": "52fe423dc3a36847f800ebf5", "cast_id": 28, "profile_path": "/608mxzVDmbQtWt3IedJyQ72FNg5.jpg", "order": 13}, {"name": "Gerry Vichi", "character": "Herman Gluck", "id": 5302, "credit_id": "52fe423dc3a36847f800ebf9", "cast_id": 29, "profile_path": "/kVPmf696NjAqWzyEIVlPi7HlR5l.jpg", "order": 14}, {"name": "Rafael Osorio", "character": "Bank Guard#1", "id": 5303, "credit_id": "52fe423dc3a36847f800ebfd", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Rodney 'Bear' Jackson", "character": "Bank Guard#2", "id": 5304, "credit_id": "52fe423dc3a36847f800ec01", "cast_id": 31, "profile_path": "/qi6H0wVTcWoaj0V6c0YfP9O17Pt.jpg", "order": 16}, {"name": "Willem Dafoe", "character": "Captain Darius", "id": 5293, "credit_id": "52fe423dc3a36847f800ec0b", "cast_id": 33, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 17}, {"name": "Daryl Mitchell", "character": "Mobile Command Officer Rourke", "id": 15028, "credit_id": "54f1f74ec3a368322f001f1a", "cast_id": 34, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 18}, {"name": "Ashlie Atkinson", "character": "Mobile Command Officer Berk", "id": 77264, "credit_id": "54f1f8aa9251416b3b001f3e", "cast_id": 35, "profile_path": "/h0ykP84QXTDLxfzizdQaFXZzzY8.jpg", "order": 19}, {"name": "David Brown", "character": "Mobile Command Officer Carnow", "id": 1260146, "credit_id": "54f1fa2b9251416b410022a5", "cast_id": 36, "profile_path": "/rS11US9Th9grQlTN0NdK7Q2VrI1.jpg", "order": 20}, {"name": "Robert C. Kirk", "character": "Mobile Command Officer Borinsky", "id": 150932, "credit_id": "54f1fcd89251416b3e0021b7", "cast_id": 37, "profile_path": "/fHkUG3gAwubiSJHFDJY5S97xNDu.jpg", "order": 21}, {"name": "Frank Stellato", "character": "Mobile Command Detective", "id": 1433251, "credit_id": "54f1fdadc3a36832320026b2", "cast_id": 38, "profile_path": "/v6cRDVpHb8BmS20HVnHnolMO7fL.jpg", "order": 22}, {"name": "Ken Leung", "character": "Wing", "id": 2131, "credit_id": "54f1fe9bc3a3683235001f56", "cast_id": 39, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 23}, {"name": "Marcia Jean Kurtz", "character": "Miriam Douglas", "id": 14548, "credit_id": "54f1ff21c3a3683245002184", "cast_id": 40, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 24}, {"name": "Ed Onipede Blunt", "character": "Ray Robinson", "id": 1433438, "credit_id": "54f2a783c3a368324500336f", "cast_id": 41, "profile_path": "/gWyWTodgevHEvuGDJ0QiMOkdvDW.jpg", "order": 25}, {"name": "Amir Ali Said", "character": "Brian Robinson", "id": 210, "credit_id": "54f2aa1b9251416b3800333d", "cast_id": 42, "profile_path": "/pRMk72kpTkYaDEjZKcEzUB9Jx0d.jpg", "order": 26}, {"name": "Lemon Andersen", "character": "Paul Guitierez", "id": 1108494, "credit_id": "54f2ac809251416b4100371c", "cast_id": 43, "profile_path": "/pGPGEVuimV1xpJs2FyrH7ngAcNh.jpg", "order": 27}, {"name": "Samantha Ivers", "character": "Nancy Mann", "id": 93621, "credit_id": "54f2ae019251416b2f00350a", "cast_id": 44, "profile_path": "/69UeHEIKTpD7f9iP519jUtu4Ly0.jpg", "order": 28}, {"name": "Peter Kybart", "character": "Mayor", "id": 1433441, "credit_id": "54f2af379251416b4100375b", "cast_id": 45, "profile_path": "/7P8XETMX4kZFanPQy4GFuOJyyMh.jpg", "order": 29}, {"name": "Jason Manuel Olazabal", "character": "ESU Officer Hernandez", "id": 147960, "credit_id": "54f2b0899251416b2c003556", "cast_id": 46, "profile_path": "/52AecacpPjSjP5mJwEHkOg2LooX.jpg", "order": 30}, {"name": "Jeff Ward", "character": "ESU Officer Jesus", "id": 1253648, "credit_id": "54f2b582c3a368323e00312a", "cast_id": 47, "profile_path": "/j1pxCjdfa4MIFqZJapvo4LKYTkQ.jpg", "order": 31}, {"name": "Anthony Mangano", "character": "ESU Officer", "id": 77585, "credit_id": "54f2b6f99251416b35003367", "cast_id": 48, "profile_path": "/yGuKdqVXDG95i6xg3fKisiGebdo.jpg", "order": 32}, {"name": "Michael Devine", "character": "ESU Officer", "id": 1433451, "credit_id": "54f2b7bdc3a368323e003181", "cast_id": 49, "profile_path": "/AiS5AgSFZlDTdFrAmOolaUXsJyy.jpg", "order": 33}, {"name": "Ed Bogdanowicz", "character": "ESU Officer", "id": 1433452, "credit_id": "54f2ba339251416b31003474", "cast_id": 50, "profile_path": "/odmvVGEP6h9yEqzZxSocp5HikQi.jpg", "order": 34}, {"name": "Aaron Vexler", "character": "ESU Officer", "id": 1045964, "credit_id": "54f2bcfd9251416b350033f9", "cast_id": 51, "profile_path": "/yBzhpya88GGOdD6WG8YmwKHIFWq.jpg", "order": 35}, {"name": "Anthony Borowiec", "character": "ESU Officer", "id": 1433454, "credit_id": "54f2be9c9251416b41003926", "cast_id": 52, "profile_path": null, "order": 36}, {"name": "Joe Coots", "character": "ESU Officer", "id": 210393, "credit_id": "54f2c0a59251416b2f00372d", "cast_id": 53, "profile_path": "/AtKobaUDz82mcb65nzSLC9Q8k4o.jpg", "order": 37}, {"name": "Lionel Pina", "character": "Cop with Pizzas", "id": 171154, "credit_id": "54f2cc379251416b41003ab6", "cast_id": 54, "profile_path": "/jUOpfDF15f9AuCO59h3xiAqX0Zd.jpg", "order": 38}, {"name": "Ken Ferrigni", "character": "Redheaded Detective", "id": 1433493, "credit_id": "54f2cd26c3a368322f0034b8", "cast_id": 55, "profile_path": null, "order": 39}, {"name": "Frank Hopf", "character": "Barricade Officer", "id": 1433496, "credit_id": "54f2ce4fc3a3681b710015f6", "cast_id": 56, "profile_path": "/6OecJBLgcJtziBsIH1XCu2wXivx.jpg", "order": 40}, {"name": "Robert Testut", "character": "Barricade Officer", "id": 1433497, "credit_id": "54f2cf849251416b350035c5", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Craig M. Spitzer", "character": "Seth Greenblatt", "id": 1433498, "credit_id": "54f2d02d9251416b310036f3", "cast_id": 58, "profile_path": "/onqNTr2B9hb8TXLiSeHDMpIWQPp.jpg", "order": 42}, {"name": "Limary Agosto", "character": "Gladys Perez", "id": 1059170, "credit_id": "54f2d4429251416b3e00398a", "cast_id": 59, "profile_path": "/oUDDK62MGGeZWrKClz6bAd2GtZ4.jpg", "order": 43}, {"name": "Patrick Illig", "character": "Brad Stone", "id": 1433510, "credit_id": "54f2d4ef9251416b35003656", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Frank Composto", "character": "Eric Dodge", "id": 1433512, "credit_id": "54f2d572c3a3681b710016ea", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "Rozanne Sher", "character": "Hostage Woman", "id": 1433520, "credit_id": "54f2d6e69251416b3500368f", "cast_id": 62, "profile_path": "/uzj4XRBCRifX9pluxuAy4BFd5V8.jpg", "order": 46}, {"name": "Rachel Black", "character": "Katherine", "id": 78520, "credit_id": "54f2d8a39251416b41003c1e", "cast_id": 63, "profile_path": "/ewJlnhcBM7wRvEO63dz6ynLFeHk.jpg", "order": 47}, {"name": "Gregory Dann", "character": "Case's Bodyguard", "id": 1433539, "credit_id": "54f2d95b9251416b41003c34", "cast_id": 64, "profile_path": "/wOO3uTseGT4g8o0kGihPxoaJpH3.jpg", "order": 48}, {"name": "Ben Crowley", "character": "White's Assistant", "id": 59299, "credit_id": "54f2dab49251416b2c003a8c", "cast_id": 65, "profile_path": "/wWKyy7ohR3IsmQ8S55f2tQl1KVY.jpg", "order": 49}, {"name": "Shon Gables", "character": "CBS News Reporter", "id": 1434087, "credit_id": "54f408279251410bfe000ece", "cast_id": 66, "profile_path": "/eHUVNikgjPUT6yRc7PDlp1mnNC8.jpg", "order": 50}, {"name": "Dominic Carter", "character": "NY1 News Anchor", "id": 1434088, "credit_id": "54f40b479251417992001546", "cast_id": 67, "profile_path": "/qi2Hx18FqKbgTXqizDuDDPtqXNk.jpg", "order": 51}, {"name": "Sandra Endo", "character": "NY1 News Reporter", "id": 1434089, "credit_id": "54f40d44925141799f0014d1", "cast_id": 68, "profile_path": "/aIFLRKQ4q3HKM1Mjaw7lalXunfV.jpg", "order": 52}, {"name": "Kandiss Edmundson", "character": "Madge", "id": 1434090, "credit_id": "54f40ef2c3a3683455000892", "cast_id": 69, "profile_path": "/hs2O1xtbVe8wSPnKxNxiYuAWUoD.jpg", "order": 53}, {"name": "Al Palagonia", "character": "Kevin", "id": 122546, "credit_id": "54f41075c3a36850f30010e3", "cast_id": 70, "profile_path": "/d8UrrQsxM9Bb7Vjk6RC6Ejjc5Ib.jpg", "order": 54}, {"name": "Florina Petcu", "character": "Ilina", "id": 1434091, "credit_id": "54f41152c3a3681ddd001804", "cast_id": 71, "profile_path": "/yoagT6CVedoGekwfX92mfzEYvSb.jpg", "order": 55}, {"name": "Agim Coma", "character": "Borova", "id": 1434092, "credit_id": "54f41265c3a3681de000180a", "cast_id": 72, "profile_path": null, "order": 56}, {"name": "John Speredakos", "character": "Officer Porcario", "id": 88547, "credit_id": "54f4133ec3a3683455000900", "cast_id": 73, "profile_path": "/az6N8cFtxl9EXguCsv4OefCGXjt.jpg", "order": 57}, {"name": "Baktash Zaher", "character": "Zahir", "id": 1434094, "credit_id": "54f413d99251410c2a000ec4", "cast_id": 74, "profile_path": "/uIHJBdqPNAwjQ6jFCzNZjf1vHlq.jpg", "order": 58}, {"name": "Ernest Rayford", "character": "Men's Club Attendant", "id": 141438, "credit_id": "54f41550925141799a0015af", "cast_id": 75, "profile_path": null, "order": 59}, {"name": "Vincent DiMartino", "character": "Barber", "id": 1237053, "credit_id": "54f4181b92514179a70017a4", "cast_id": 76, "profile_path": "/ei70fwyBhMI8KftQcjWfIarB1U.jpg", "order": 60}, {"name": "Julian Niccolini", "character": "Four Seasons Maitre d'", "id": 1434096, "credit_id": "54f419329251410c3e001110", "cast_id": 77, "profile_path": "/FCMQZytjCwtOjDQTg3FJ7Pkz58.jpg", "order": 61}, {"name": "Ed Crescimanni", "character": "Edwin", "id": 1434097, "credit_id": "54f41a9b9251410c3e001128", "cast_id": 78, "profile_path": "/2BoR2BoqKwpPpBGa9MWeS9e1wij.jpg", "order": 62}, {"name": "Brad Leland", "character": "Ronnie", "id": 60677, "credit_id": "54f41c209251410bfe0010e3", "cast_id": 79, "profile_path": "/gIXb73WT2fyoCChUyJgjcThqaA1.jpg", "order": 63}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800eb6f", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 6.9, "runtime": 129}, "389": {"poster_path": "/qcL1YfkCxfhsdO6sDDJ0PpzMF9n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1000000, "overview": "The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.", "video": false, "id": 389, "genres": [{"id": 18, "name": "Drama"}], "title": "12 Angry Men", "tagline": "Life is in their hands. Death is on their minds.", "vote_count": 641, "homepage": "http://www.wilsonsd.org/770240920121611/blank/browse.asp?a=383&BMDRN=2000&BCOB=0&c=63668", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0050083", "adult": false, "backdrop_path": "/lH2Ga8OzjU1XlxJ73shOlPx6cRw.jpg", "production_companies": [{"name": "Orion-Nova Productions", "id": 10212}], "release_date": "1957-04-10", "popularity": 1.29243957690624, "original_title": "12 Angry Men", "budget": 340000, "cast": [{"name": "Henry Fonda", "character": "Juror 8", "id": 4958, "credit_id": "52fe423dc3a36847f800ec89", "cast_id": 29, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 0}, {"name": "Lee J. Cobb", "character": "Juror 3", "id": 5248, "credit_id": "52fe423dc3a36847f800ec8d", "cast_id": 30, "profile_path": "/535dOk8eUI97esLMunIXdG58jUu.jpg", "order": 1}, {"name": "Ed Begley", "character": "Juror 10", "id": 39816, "credit_id": "52fe423dc3a36847f800ec91", "cast_id": 31, "profile_path": "/lnIapJ9Qwb2p2ijwXFvQtrE923w.jpg", "order": 2}, {"name": "E.G. Marshall", "character": "Juror 4", "id": 5249, "credit_id": "52fe423dc3a36847f800ec95", "cast_id": 32, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 3}, {"name": "Jack Warden", "character": "Juror 7", "id": 5251, "credit_id": "52fe423dc3a36847f800ec99", "cast_id": 33, "profile_path": "/7Pfj27pVjkQIu5HS85MlGdsl7MQ.jpg", "order": 4}, {"name": "Martin Balsam", "character": "Juror 1", "id": 1936, "credit_id": "52fe423dc3a36847f800ec9d", "cast_id": 34, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 5}, {"name": "John Fiedler", "character": "Juror 2", "id": 5247, "credit_id": "52fe423dc3a36847f800eca1", "cast_id": 35, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 6}, {"name": "Jack Klugman", "character": "Juror 5", "id": 5250, "credit_id": "52fe423dc3a36847f800eca5", "cast_id": 36, "profile_path": "/7OvZnRbj3DHxieaQpS0ZK5CITiP.jpg", "order": 7}, {"name": "Edward Binns", "character": "Juror 6", "id": 2651, "credit_id": "52fe423dc3a36847f800eca9", "cast_id": 37, "profile_path": "/uTPEszrP1ZgDVo1nkRIYwAeYHnO.jpg", "order": 8}, {"name": "Joseph Sweeney", "character": "Juror 9", "id": 5252, "credit_id": "52fe423dc3a36847f800ecad", "cast_id": 38, "profile_path": null, "order": 9}, {"name": "George Voskovec", "character": "Juror 11", "id": 5254, "credit_id": "52fe423dc3a36847f800ecb1", "cast_id": 39, "profile_path": "/rlhnKtwOb571yhuyTPtvMRt7fpg.jpg", "order": 10}, {"name": "Robert Webber", "character": "Juror 12", "id": 5255, "credit_id": "52fe423dc3a36847f800ecb5", "cast_id": 40, "profile_path": "/mg6SHDi5bi9C7pUwH14ZXxTnR7M.jpg", "order": 11}, {"name": "Rudy Bond", "character": "Judge (uncredited)", "id": 3143, "credit_id": "54fe6cc592514177f200078e", "cast_id": 42, "profile_path": "/wNpO0orqR8rWz7tf11iKN0UhvGg.jpg", "order": 12}, {"name": "James Kelly", "character": "Guard (uncredited)", "id": 1437464, "credit_id": "54fe6d0b9251410e510009bd", "cast_id": 43, "profile_path": null, "order": 13}, {"name": "Billy Nelson", "character": "Court Clerk (uncredited)", "id": 5257, "credit_id": "54fe6d409251410e56000a3c", "cast_id": 44, "profile_path": null, "order": 14}, {"name": "John Savoca", "character": "The Accused (uncredited)", "id": 5258, "credit_id": "54fe6d5f9251410e4b000a82", "cast_id": 45, "profile_path": null, "order": 15}, {"name": "Walter Stocker", "character": "Man Waiting for Elevator (uncredited)", "id": 153394, "credit_id": "54fe6d9f92514177f20007ad", "cast_id": 46, "profile_path": null, "order": 16}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800ec43", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 8.1, "runtime": 96}, "391": {"poster_path": "/sFLgxvtK9vxbNq502peVJ847Owp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 14000000, "overview": "The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.", "video": false, "id": 391, "genres": [{"id": 37, "name": "Western"}], "title": "A Fistful of Dollars", "tagline": "In his own way he is perhaps, the most dangerous man who ever lived!", "vote_count": 214, "homepage": "", "belongs_to_collection": {"backdrop_path": "/a4Lqp3QdEWF6zh740VpBg6yvTZA.jpg", "poster_path": "/lzUZptOL6iQqulMvhB2jfT5GepD.jpg", "id": 48317, "name": "The Man With No Name Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0058461", "adult": false, "backdrop_path": "/mndYimxcima4Z5YxH8XngTEGi5L.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Jolly Film", "id": 10481}, {"name": "Ocean Films", "id": 19498}], "release_date": "1964-09-12", "popularity": 1.89336328384147, "original_title": "Per un pugno di dollari", "budget": 200000, "cast": [{"name": "Clint Eastwood", "character": "Joe", "id": 190, "credit_id": "52fe423dc3a36847f800ed7d", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Marianne Koch", "character": "Marisol", "id": 16309, "credit_id": "52fe423dc3a36847f800ed81", "cast_id": 2, "profile_path": "/tAubH4kPmCYZ4mQmRyJggQe7IJd.jpg", "order": 1}, {"name": "Wolfgang Lukschy", "character": "John Baxter", "id": 16310, "credit_id": "52fe423dc3a36847f800ed85", "cast_id": 3, "profile_path": "/fhm3MzsXrS8qA2UJfI7Dg15Pdhk.jpg", "order": 2}, {"name": "Jos\u00e9 Calvo", "character": "Silvanito", "id": 16311, "credit_id": "52fe423dc3a36847f800ed89", "cast_id": 4, "profile_path": "/1rGrdQDUjmZe6n9gJhSF8kLMVLQ.jpg", "order": 3}, {"name": "Gian Maria Volont\u00e9", "character": "Ram\u00f3n Rojo", "id": 14276, "credit_id": "52fe423dc3a36847f800ed8d", "cast_id": 5, "profile_path": "/fnluody7boW6FHuhXoUmO141BeU.jpg", "order": 4}, {"name": "Sieghardt Rupp", "character": "Esteban Rojo", "id": 16312, "credit_id": "52fe423dc3a36847f800ed91", "cast_id": 6, "profile_path": "/wiriUmuj78y6TUc2oGKqKmFmD.jpg", "order": 5}, {"name": "Antonio Prieto", "character": "Don Miguel Rojo", "id": 16313, "credit_id": "52fe423dc3a36847f800ed95", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Margarita Lozano", "character": "Consuelo Baxter", "id": 16314, "credit_id": "52fe423dc3a36847f800ed99", "cast_id": 8, "profile_path": "/d4RgbbQMfRJ2K3bOF8B2mpGoYMl.jpg", "order": 7}, {"name": "Daniel Mart\u00edn", "character": "Juli\u00e1n", "id": 16316, "credit_id": "52fe423dc3a36847f800ed9d", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Bruno Carotenuto", "character": "Antonio Baxter", "id": 16317, "credit_id": "52fe423dc3a36847f800eda1", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Benito Stefanelli", "character": "Rubio", "id": 4661, "credit_id": "52fe423dc3a36847f800eda5", "cast_id": 12, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 11}, {"name": "Mario Brega", "character": "Chico", "id": 16318, "credit_id": "52fe423dc3a36847f800eda9", "cast_id": 13, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 12}, {"name": "Joseph Egger", "character": "Piripero, der Sargtischler", "id": 14279, "credit_id": "52fe423dc3a36847f800edef", "cast_id": 25, "profile_path": "/hmHgePVKgnvurDkzTLsLrXLaJcU.jpg", "order": 13}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800edaf", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.2, "runtime": 99}, "392": {"poster_path": "/qVKYduwLJ5HjbeVVYqYPSAhWQqh.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152500343, "overview": "A fable of emotional liberation and chocolate. A mother and daughter move to a small French town where they open a chocolate shop. The town, religious and morally strict, is against them as they represent free-thinking and indulgence. When a group of Boat Gypsies float down the river the prejudices of the Mayor leads to a crisis.", "video": false, "id": 392, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Chocolat", "tagline": "...and the world is still indulging!", "vote_count": 226, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0241303", "adult": false, "backdrop_path": "/mUBjXjU43hhy5bHnpHztxSmiK40.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2000-12-14", "popularity": 0.387266396343773, "original_title": "Chocolat", "budget": 25000000, "cast": [{"name": "Juliette Binoche", "character": "Vianne Rocher", "id": 1137, "credit_id": "52fe423dc3a36847f800ee67", "cast_id": 4, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 0}, {"name": "Alfred Molina", "character": "Comte Paul de Reynaud", "id": 658, "credit_id": "52fe423dc3a36847f800ee6b", "cast_id": 5, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Roux", "id": 85, "credit_id": "52fe423dc3a36847f800ee7f", "cast_id": 10, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Carrie-Anne Moss", "character": "Caroline Clairmont", "id": 530, "credit_id": "52fe423dc3a36847f800ee6f", "cast_id": 6, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 3}, {"name": "Judi Dench", "character": "Armande Voizin", "id": 5309, "credit_id": "52fe423dc3a36847f800ee73", "cast_id": 7, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Lena Olin", "character": "Josephine Muscat", "id": 5313, "credit_id": "52fe423dc3a36847f800ee87", "cast_id": 12, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 5}, {"name": "Peter Stormare", "character": "Serge Muscat", "id": 53, "credit_id": "52fe423dc3a36847f800ee8b", "cast_id": 13, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 6}, {"name": "John Wood", "character": "Guillaume Blerot", "id": 8937, "credit_id": "52fe423ec3a36847f800ef4d", "cast_id": 49, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 7}, {"name": "Leslie Caron", "character": "Madame Audel", "id": 5320, "credit_id": "52fe423dc3a36847f800eea7", "cast_id": 20, "profile_path": "/lLEvfbDgtjehC67W9kLGdnexRfQ.jpg", "order": 8}, {"name": "Antonio Gil", "character": "Jean-Marc Drou", "id": 5310, "credit_id": "52fe423dc3a36847f800ee77", "cast_id": 8, "profile_path": "/cIWyMyp4DswIEOURjhBIM1tAZim.jpg", "order": 9}, {"name": "H\u00e9l\u00e8ne Cardona", "character": "Francoise Drou", "id": 5311, "credit_id": "52fe423dc3a36847f800ee7b", "cast_id": 9, "profile_path": "/9Am8lqQ5yUrGrlpYdOjp4p4iLwb.jpg", "order": 10}, {"name": "Hugh O'Conor", "character": "Pere Henri", "id": 5312, "credit_id": "52fe423dc3a36847f800ee83", "cast_id": 11, "profile_path": "/i4NB3THRBWyYGpQbQPu6RshQf6j.jpg", "order": 11}, {"name": "Aurelien Parent Koenig", "character": "Luc Clairmont", "id": 5314, "credit_id": "52fe423dc3a36847f800ee8f", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Victoire Thivisol", "character": "Anouk Rocher", "id": 5315, "credit_id": "52fe423dc3a36847f800ee93", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Harrison Pratt", "character": "Dedou Drou", "id": 5316, "credit_id": "52fe423dc3a36847f800ee97", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Gaelan Connell", "character": "Didi Drou", "id": 5317, "credit_id": "52fe423dc3a36847f800ee9b", "cast_id": 17, "profile_path": "/l2DfscIlJcDB4En1SssW8VIQtMJ.jpg", "order": 15}, {"name": "Elisabeth Commelin", "character": "Yvette Marceau", "id": 5318, "credit_id": "52fe423dc3a36847f800ee9f", "cast_id": 18, "profile_path": "/kJYHlilPKDctDRbDjetlm1kuxoQ.jpg", "order": 16}, {"name": "Ron Cook", "character": "Alphonse Marceau", "id": 5319, "credit_id": "52fe423dc3a36847f800eea3", "cast_id": 19, "profile_path": "/9Um3ilt8KD0uLn5NyrP7vRZn2xF.jpg", "order": 17}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe423dc3a36847f800ee57", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.5, "runtime": 121}, "393": {"poster_path": "/eW6IUkxqNdESbEcP2KKXukdx0zm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152159461, "overview": "The Bride unwaveringly continues on her \"roaring rampage of revenge\" against the band of assassins who had tried to kill her and her unborn child. The woman visits each of her former associates one by one, checking off the victims on her Death List Five until there's nothing left to do \u2026 but kill Bill.", "video": false, "id": 393, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Kill Bill: Vol. 2", "tagline": "The bride is back for the final cut.", "vote_count": 1029, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oCLKNACMNrEf4T1EP6BpMXDl5m1.jpg", "poster_path": "/tf1nUtw3LJGUGv1EFFi23iz6ngr.jpg", "id": 2883, "name": "Kill Bill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0378194", "adult": false, "backdrop_path": "/33WfP01Pu8SMuuHYnoJXMRCMtmI.jpg", "production_companies": [{"name": "Super Cool ManChu", "id": 39121}, {"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}], "release_date": "2004-04-15", "popularity": 1.2412154692698, "original_title": "Kill Bill: Vol. 2", "budget": 30000000, "cast": [{"name": "Uma Thurman", "character": "Beatrix 'The Bride' Kiddo", "id": 139, "credit_id": "52fe423ec3a36847f800ef93", "cast_id": 1, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "David Carradine", "character": "Bill", "id": 141, "credit_id": "52fe423ec3a36847f800efb5", "cast_id": 8, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 1}, {"name": "Daryl Hannah", "character": "Elle Driver", "id": 589, "credit_id": "52fe423ec3a36847f800efb9", "cast_id": 9, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 2}, {"name": "Michael Madsen", "character": "Budd", "id": 147, "credit_id": "52fe423ec3a36847f800efbd", "cast_id": 10, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 3}, {"name": "Gordon Liu Chia-Hui", "character": "Pai Mei", "id": 240171, "credit_id": "52fe423ec3a36847f800f023", "cast_id": 35, "profile_path": "/yTI36A27P9YdFbzrCwjpmEpDGbR.jpg", "order": 4}, {"name": "Michael Parks", "character": "Esteban Vihaio", "id": 2536, "credit_id": "52fe423ec3a36847f800efc1", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 5}, {"name": "Perla Haney-Jardine", "character": "B.B. Kiddo", "id": 6585, "credit_id": "52fe423ec3a36847f800eff3", "cast_id": 22, "profile_path": "/3G3vIBZgZkTzrmvyNiEzOsb5v38.jpg", "order": 6}, {"name": "Larry Bishop", "character": "Larry Gomez", "id": 34721, "credit_id": "52fe423ec3a36847f800f00b", "cast_id": 28, "profile_path": "/uhWXK4cPgvu4j3oOiVYsLifFssi.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Rufus", "id": 2231, "credit_id": "52fe423ec3a36847f800efef", "cast_id": 21, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "Lucy Liu", "character": "O-Ren Ishii", "id": 140, "credit_id": "52fe423ec3a36847f800efe3", "cast_id": 17, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 9}, {"name": "Vivica A. Fox", "character": "Vernita Green", "id": 2535, "credit_id": "52fe423ec3a36847f800efe7", "cast_id": 18, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 10}, {"name": "Julie Dreyfus", "character": "Sofie Fatale", "id": 2539, "credit_id": "52fe423ec3a36847f800f017", "cast_id": 32, "profile_path": "/vkUvcV6oFkZXcIv4SGeW66LUoqC.jpg", "order": 11}, {"name": "Christopher Allen Nelson", "character": "Tommy Plympton", "id": 6446, "credit_id": "52fe423ec3a36847f800efeb", "cast_id": 20, "profile_path": "/pbXe8gRR81onTWMPrOwrNZaqIoS.jpg", "order": 12}, {"name": "Helen Kim", "character": "Karen Kim", "id": 1052339, "credit_id": "52fe423ec3a36847f800f013", "cast_id": 31, "profile_path": "/1FB3lGe4twIY7bwvipKsI59ruPM.jpg", "order": 13}, {"name": "Laura Cayouette", "character": "Rocket", "id": 565498, "credit_id": "52fe423ec3a36847f800f00f", "cast_id": 30, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 14}, {"name": "Jun Kunimura", "character": "Boss Tanaka", "id": 2541, "credit_id": "5475bf98c3a36830120008bd", "cast_id": 39, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 15}, {"name": "Goro Daimon", "character": "Boss Honda", "id": 1369182, "credit_id": "5475bfb39251412c3b00422d", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Kazuki Kitamura", "character": "Boss Koji / Crazy 88", "id": 2542, "credit_id": "5475bfca925141017d000205", "cast_id": 41, "profile_path": "/2DefK5vG0JquPJ1UdcckaPRcy96.jpg", "order": 17}, {"name": "Akaji Maro", "character": "Boss Ozawah", "id": 2544, "credit_id": "5475bfe2c3a36830120008ce", "cast_id": 42, "profile_path": "/b28JIJMTwtVPiuz6TtOiFh5gNzs.jpg", "order": 18}, {"name": "Shun Sugata", "character": "Boss Benta", "id": 9193, "credit_id": "5475bffac3a368364c0029cf", "cast_id": 43, "profile_path": "/9Ntziepdp2P2xsLGHdy0rchVJ3G.jpg", "order": 19}, {"name": "Sachiko Fujii", "character": "The 5, 6, 7, 8's", "id": 1314989, "credit_id": "5475e2d0c3a3687fd9001799", "cast_id": 74, "profile_path": null, "order": 20}, {"name": "Sakichi Sat\u00f4", "character": "Charlie Brown", "id": 58616, "credit_id": "5475e336925141779100024e", "cast_id": 75, "profile_path": "/s3slnuF2U18zAPJi0yovdzZPIQF.jpg", "order": 21}, {"name": "Y\u00f4ji Tanaka", "character": "Crazy 88", "id": 115659, "credit_id": "5475e35ac3a368068b000178", "cast_id": 76, "profile_path": "/xPpE9vinviRqjewLsnMQ5X5Dx9B.jpg", "order": 22}, {"name": "S\u00f4 Yamanaka", "character": "Crazy 88", "id": 121751, "credit_id": "5475e36f925141407a001ef2", "cast_id": 77, "profile_path": null, "order": 23}, {"name": "Issei Takahashi", "character": "Crazy 88", "id": 115657, "credit_id": "5475e38bc3a368764e001122", "cast_id": 78, "profile_path": null, "order": 24}, {"name": "Chiaki Kuriyama", "character": "Gogo", "id": 2538, "credit_id": "5475e3c09251417791000265", "cast_id": 79, "profile_path": "/ccaYcabNnxA4MPItZdKAMdqEqTk.jpg", "order": 25}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe423ec3a36847f800ef99", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.2, "runtime": 136}, "8587": {"poster_path": "/bKPtXn9n4M4s8vvZrbw40mYsefB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 788241776, "overview": "A young lion cub named Simba can't wait to be king. But his uncle craves the title for himself and will stop at nothing to get it.", "video": false, "id": 8587, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Lion King", "tagline": "Life's greatest adventure is finding your place in the Circle of Life.", "vote_count": 2366, "homepage": "", "belongs_to_collection": {"backdrop_path": "/A9IEaj9cPAwEgFnTmteB70oxgJY.jpg", "poster_path": "/y3n3SDoRDqgz3LLWuvcfi3ZiF84.jpg", "id": 94032, "name": "The Lion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110357", "adult": false, "backdrop_path": "/klI0K4oQMsLhHdjA9Uw8WLugk9v.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1994-06-23", "popularity": 2.24752956779499, "original_title": "The Lion King", "budget": 45000000, "cast": [{"name": "Jonathan Taylor Thomas", "character": "Young Simba", "id": 53283, "credit_id": "52fe44b0c3a36847f80a4537", "cast_id": 8, "profile_path": "/nYffgAfxzGaGrjizl8MaZuJojCZ.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Adult Simba", "id": 4756, "credit_id": "52fe44b0c3a36847f80a453b", "cast_id": 9, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "James Earl Jones", "character": "King Mufasa", "id": 15152, "credit_id": "52fe44b0c3a36847f80a453f", "cast_id": 10, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 2}, {"name": "Jeremy Irons", "character": "Scar", "id": 16940, "credit_id": "52fe44b0c3a36847f80a454b", "cast_id": 13, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 3}, {"name": "Moira Kelly", "character": "Adult Nala", "id": 20005, "credit_id": "52fe44b0c3a36847f80a4547", "cast_id": 12, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 4}, {"name": "Niketa Calame", "character": "Young Nala", "id": 56043, "credit_id": "52fe44b0c3a36847f80a4543", "cast_id": 11, "profile_path": "/6AjpmUU24VrUwqeTVQVAVpZ4kgl.jpg", "order": 5}, {"name": "Ernie Sabella", "character": "Pumbaa", "id": 69415, "credit_id": "52fe44b0c3a36847f80a455f", "cast_id": 18, "profile_path": "/nwdAp8FacfZ1eRU7gNkOwWvDqnc.jpg", "order": 6}, {"name": "Nathan Lane", "character": "Timon", "id": 78729, "credit_id": "52fe44b0c3a36847f80a455b", "cast_id": 17, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 7}, {"name": "Robert Guillaume", "character": "Rafiki", "id": 8294, "credit_id": "52fe44b0c3a36847f80a4563", "cast_id": 19, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 8}, {"name": "Rowan Atkinson", "character": "Zazu the Hornbill", "id": 10730, "credit_id": "52fe44b0c3a36847f80a454f", "cast_id": 14, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 9}, {"name": "Madge Sinclair", "character": "Sarabi, Simba's Mother", "id": 58074, "credit_id": "52fe44b0c3a36847f80a456f", "cast_id": 22, "profile_path": "/ph5YnCai5GDr5Ps85wuNg8Ox36m.jpg", "order": 10}, {"name": "Whoopi Goldberg", "character": "Shenzi the Hyena", "id": 2395, "credit_id": "52fe44b0c3a36847f80a4553", "cast_id": 15, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 11}, {"name": "Cheech Marin", "character": "Banzai the Hyena", "id": 11159, "credit_id": "52fe44b0c3a36847f80a456b", "cast_id": 21, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 12}, {"name": "Jim Cummings", "character": "ED the Hyena", "id": 12077, "credit_id": "52fe44b0c3a36847f80a4557", "cast_id": 16, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 13}, {"name": "Zoe Leader", "character": "Sarafina, Nala's Mother", "id": 723462, "credit_id": "52fe44b0c3a36847f80a4567", "cast_id": 20, "profile_path": "/9nHTpy0zaFVjDKxbu8CnsUKUayI.jpg", "order": 14}, {"name": "Jason Weaver", "character": "Young Simba (singing voice)", "id": 84115, "credit_id": "52fe44b0c3a36847f80a4573", "cast_id": 23, "profile_path": "/cF8uNJYPN1PiIypkmsLWJwFfczV.jpg", "order": 15}, {"name": "Frank Welker", "character": "Additional Voices", "id": 15831, "credit_id": "52fe44b0c3a36847f80a4577", "cast_id": 24, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 16}, {"name": "Judi M. Durand", "character": "Additional Voices (voice) (uncredited)", "id": 949895, "credit_id": "52fe44b0c3a36847f80a457b", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Daamen J. Krall", "character": "Additional Voices (voice) (uncredited)", "id": 96310, "credit_id": "52fe44b0c3a36847f80a457f", "cast_id": 27, "profile_path": "/u0CORJ8e2vvw1dFARU4estHYS2I.jpg", "order": 19}, {"name": "David McCharen", "character": "Additional Voices (voice) (uncredited)", "id": 952996, "credit_id": "52fe44b0c3a36847f80a4583", "cast_id": 28, "profile_path": "/EAWYGbRfp68FzDx5HtDWt4zlfN.jpg", "order": 20}, {"name": "Mary Linda Phillips", "character": "Additional Voices (voice) (uncredited)", "id": 173776, "credit_id": "52fe44b0c3a36847f80a4587", "cast_id": 29, "profile_path": "/qntaPKKUYB96hdZwGIuDcH2ildW.jpg", "order": 21}, {"name": "Philip Proctor", "character": "Additional Voices (voice) (uncredited)", "id": 61969, "credit_id": "52fe44b0c3a36847f80a458b", "cast_id": 30, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 22}, {"name": "David J. Randolph", "character": "Additional Voices (voice) (uncredited)", "id": 954335, "credit_id": "52fe44b0c3a36847f80a458f", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Evan Saucedo", "character": "Young Simba - in 'Morning Report' (singing voice) (uncredited)", "id": 200845, "credit_id": "52fe44b0c3a36847f80a4593", "cast_id": 32, "profile_path": "/8LNZHz8xfyGVJ0bJIWfSk9822S2.jpg", "order": 24}, {"name": "Brian Tochi", "character": "Fighting Hyena (voice) (uncredited)", "id": 16060, "credit_id": "52fe44b0c3a36847f80a4597", "cast_id": 33, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 25}], "directors": [{"name": "Roger Allers", "department": "Directing", "job": "Director", "credit_id": "52fe44afc3a36847f80a450f", "profile_path": "/eUMjdBRyv5gF1m5sGHm15TUVuFP.jpg", "id": 15812}, {"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe44afc3a36847f80a4515", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 7.4, "runtime": 89}, "16781": {"poster_path": "/RbR50UMMYy7bFBy5GeFxNf5wsK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57231524, "overview": "Based upon Tyler Perry's acclaimed stage production, Madea's Family Reunion continues the adventures of Southern matriarch Madea. She has just been court ordered to be in charge of Nikki, a rebellious runaway, her nieces, Lisa and Vanessa, are suffering relationship trouble, and through it all, she has to organize her family reunion.", "video": false, "id": 16781, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Madea's Family Reunion", "tagline": "", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0455612", "adult": false, "backdrop_path": "/qmJQ4ScmzmWiZH94d93a9qrxkX0.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}], "release_date": "2006-02-24", "popularity": 0.410545022002225, "original_title": "Madea's Family Reunion", "budget": 6000000, "cast": [{"name": "Tyler Perry", "character": "Madea / Brian / Joe", "id": 80602, "credit_id": "52fe46ea9251416c75087cfd", "cast_id": 1, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 0}, {"name": "Blair Underwood", "character": "Carlos", "id": 56871, "credit_id": "52fe46ea9251416c75087d01", "cast_id": 2, "profile_path": "/xDqEtEwJNb3fDYnopeFlmMYVQ66.jpg", "order": 1}, {"name": "Lynn Whitfield", "character": "Victoria", "id": 16217, "credit_id": "52fe46ea9251416c75087d05", "cast_id": 3, "profile_path": "/7NELeIc5qIwSuAKG3Riq0CN2F7t.jpg", "order": 2}, {"name": "Boris Kodjoe", "character": "Frankie", "id": 80758, "credit_id": "52fe46ea9251416c75087d09", "cast_id": 4, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 3}, {"name": "Lisa Arrindell Anderson", "character": "Vanessa", "id": 80759, "credit_id": "52fe46ea9251416c75087d0d", "cast_id": 5, "profile_path": "/a0XcZmt63vfG26qO5RdXxlqwavO.jpg", "order": 4}, {"name": "Maya Angelou", "character": "May", "id": 54424, "credit_id": "52fe46ea9251416c75087d11", "cast_id": 6, "profile_path": "/wdlFPg1qhGGzctwJ1KwrPxy3T6y.jpg", "order": 5}, {"name": "Rochelle Aytes", "character": "Lisa", "id": 80760, "credit_id": "52fe46ea9251416c75087d15", "cast_id": 7, "profile_path": "/r5JMfr0A7V4VEKIXx5EPy7Y51Ed.jpg", "order": 6}, {"name": "Jenifer Lewis", "character": "Milay Jenay Lori", "id": 15899, "credit_id": "52fe46ea9251416c75087d19", "cast_id": 8, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 7}, {"name": "Tangi Miller", "character": "Donna", "id": 80761, "credit_id": "52fe46ea9251416c75087d1d", "cast_id": 9, "profile_path": "/muPztWB474dfCrZ1tfI8lmmPqas.jpg", "order": 8}, {"name": "Keke Palmer", "character": "Nikki", "id": 74688, "credit_id": "52fe46ea9251416c75087d21", "cast_id": 10, "profile_path": "/tj3fxH0LtMVpj9fX8kj4kDSSkRu.jpg", "order": 9}, {"name": "Henry Simmons", "character": "Issac", "id": 67913, "credit_id": "52fe46ea9251416c75087d25", "cast_id": 11, "profile_path": "/ajSaqDbQfi6eAFULhpCSezYplUF.jpg", "order": 10}, {"name": "Cicely Tyson", "character": "Myrtle", "id": 18249, "credit_id": "52fe46ea9251416c75087d29", "cast_id": 12, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 11}, {"name": "China Anderson", "character": "Nima", "id": 75641, "credit_id": "52fe46ea9251416c75087d2d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Akhil Jackson", "character": "Jonathan", "id": 80767, "credit_id": "52fe46ea9251416c75087d31", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Alonzo Millsap", "character": "Tre", "id": 80768, "credit_id": "52fe46ea9251416c75087d35", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Georgia Allen", "character": "Ruby", "id": 80769, "credit_id": "52fe46ea9251416c75087d39", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Cassi Davis", "character": "Aunt Sarah", "id": 80611, "credit_id": "52fe46ea9251416c75087d3d", "cast_id": 17, "profile_path": "/h1CvHpp2CFM24hkN42c8dYkLB1Y.jpg", "order": 16}, {"name": "Leon Lamar", "character": "Grover", "id": 80770, "credit_id": "52fe46ea9251416c75087d41", "cast_id": 18, "profile_path": "/6yWKCRnzDXNfhHa8x3I0P1OuIPn.jpg", "order": 17}, {"name": "John Lawhorn", "character": "Uncle Pete", "id": 80771, "credit_id": "52fe46ea9251416c75087d45", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Afemo Omilami", "character": "Isaac Sr.", "id": 37825, "credit_id": "52fe46ea9251416c75087d49", "cast_id": 20, "profile_path": "/bHluEOsKBKajFbk2cnxESo1nSCY.jpg", "order": 19}, {"name": "Ryan Gentles", "character": "Stripper Policeman", "id": 80772, "credit_id": "52fe46ea9251416c75087d4d", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Mablean Ephriam", "character": "Judge Ephriam", "id": 80773, "credit_id": "52fe46ea9251416c75087d51", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Richard Reed", "character": "Bailiff #1", "id": 80774, "credit_id": "52fe46ea9251416c75087d55", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Dale Neal", "character": "Kid #1", "id": 80775, "credit_id": "52fe46ea9251416c75087d59", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Michelle Griffin", "character": "Carlos' Woman Friend", "id": 80776, "credit_id": "52fe46ea9251416c75087d5d", "cast_id": 25, "profile_path": null, "order": 24}, {"name": "Cedric Pendleton", "character": "Carlos' Man Friend", "id": 80777, "credit_id": "52fe46ea9251416c75087d61", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Deanna Dawn", "character": "Tyrequa", "id": 80778, "credit_id": "52fe46ea9251416c75087d65", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Enoch King", "character": "Hykeem", "id": 80779, "credit_id": "52fe46ea9251416c75087d69", "cast_id": 28, "profile_path": null, "order": 27}, {"name": "Ginnie Randall", "character": "Miss Samuel", "id": 80780, "credit_id": "52fe46ea9251416c75087d6d", "cast_id": 29, "profile_path": null, "order": 28}, {"name": "C.O.C.O. Brown", "character": "Poet / MC", "id": 80781, "credit_id": "52fe46ea9251416c75087d71", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Jennifer Sears", "character": "Female at Reunion", "id": 80782, "credit_id": "52fe46ea9251416c75087d75", "cast_id": 31, "profile_path": null, "order": 30}, {"name": "Tre Rogers", "character": "Young Man at Reunion", "id": 80783, "credit_id": "52fe46ea9251416c75087d79", "cast_id": 32, "profile_path": null, "order": 31}, {"name": "Shannon Eubanks", "character": "Secretary", "id": 80784, "credit_id": "52fe46ea9251416c75087d7d", "cast_id": 33, "profile_path": null, "order": 32}, {"name": "Emmbre Perry", "character": "Man on the Bus", "id": 80785, "credit_id": "52fe46ea9251416c75087d81", "cast_id": 34, "profile_path": null, "order": 33}, {"name": "Jeronn C. Williams", "character": "Singer / Reverend", "id": 80786, "credit_id": "52fe46ea9251416c75087d85", "cast_id": 35, "profile_path": null, "order": 34}, {"name": "Dale C. Bronner", "character": "Reverend", "id": 80787, "credit_id": "52fe46ea9251416c75087d89", "cast_id": 36, "profile_path": null, "order": 35}, {"name": "Derrick Simmons", "character": "", "id": 80831, "credit_id": "52fe46eb9251416c75087e95", "cast_id": 81, "profile_path": null, "order": 36}], "directors": [{"name": "Tyler Perry", "department": "Directing", "job": "Director", "credit_id": "52fe46ea9251416c75087de3", "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "id": 80602}], "vote_average": 6.1, "runtime": 110}, "398": {"poster_path": "/klbnGQ9OlFRzuLDtP9FSGkwepGp.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49084830, "overview": "Capote is the biographical film about writer Truman Capote and his assignment for The New Yorker to write the non-fiction book In Cold Blood. Philip Seymour Hoffman won an Oscar for Best Actor for his portrayal of Capote.", "video": false, "id": 398, "genres": [{"id": 18, "name": "Drama"}], "title": "Capote", "tagline": "In Cold Blood", "vote_count": 65, "homepage": "http://www.sonyclassics.com/capote/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0379725", "adult": false, "backdrop_path": "/vXm2sO7SoHGJuXY6CEJJaC1T6TX.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "Infinity Features Entertainment", "id": 212}, {"name": "Cooper's Town Productions", "id": 213}, {"name": "Eagle Vision Inc.", "id": 214}], "release_date": "2005-09-30", "popularity": 0.796045252632461, "original_title": "Capote", "budget": 7000000, "cast": [{"name": "Philip Seymour Hoffman", "character": "Truman Capote", "id": 1233, "credit_id": "52fe423ec3a36847f800f269", "cast_id": 1, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 0}, {"name": "Allie Mickelson", "character": "Laura Kinney", "id": 5348, "credit_id": "52fe423ec3a36847f800f27f", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Craig Archibald", "character": "Christopher", "id": 5349, "credit_id": "52fe423ec3a36847f800f283", "cast_id": 6, "profile_path": "/ukwVTOYdcwkYBa0P6jp4HR9hTHI.jpg", "order": 2}, {"name": "Bronwen Coleman", "character": "Barbara", "id": 5350, "credit_id": "52fe423ec3a36847f800f287", "cast_id": 7, "profile_path": "/hVkRkHsnotkeFtLtANkqsRwSOAs.jpg", "order": 3}, {"name": "Kate Shindle", "character": "Rose", "id": 5351, "credit_id": "52fe423ec3a36847f800f28b", "cast_id": 8, "profile_path": "/o7vKewHIL7AuNHb53wZNEALFIT8.jpg", "order": 4}, {"name": "David Wilson Barnes", "character": "Grayson", "id": 5352, "credit_id": "52fe423ec3a36847f800f28f", "cast_id": 9, "profile_path": "/ywTtESZfCocIqCqcMQV67v8fiLD.jpg", "order": 5}, {"name": "Michael J. Burg", "character": "Williams", "id": 5353, "credit_id": "52fe423ec3a36847f800f293", "cast_id": 10, "profile_path": "/6lGlo2RTn1Hyvw5zohWoSojvk94.jpg", "order": 6}, {"name": "Catherine Keener", "character": "Harper Lee", "id": 2229, "credit_id": "52fe423ec3a36847f800f297", "cast_id": 11, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 7}, {"name": "Kwesi Ameyaw", "character": "Porter", "id": 5354, "credit_id": "52fe423ec3a36847f800f29b", "cast_id": 12, "profile_path": "/5gWHtlFDUTBKCImxyBEARkKOFvo.jpg", "order": 8}, {"name": "Andrew Farago", "character": "Car Rental Agent", "id": 5355, "credit_id": "52fe423ec3a36847f800f29f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Kelci Stephenson", "character": "Nancy Clutter", "id": 5364, "credit_id": "52fe423ec3a36847f800f2d9", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Chris Cooper", "character": "Alvin Dewey", "id": 2955, "credit_id": "52fe423ec3a36847f800f2dd", "cast_id": 24, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 11}, {"name": "Clifton Collins, Jr.", "character": "Perry Smith", "id": 5365, "credit_id": "52fe423ec3a36847f800f2e1", "cast_id": 25, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 12}, {"name": "Mark Pellegrino", "character": "Dick Hickock", "id": 1236, "credit_id": "52fe423ec3a36847f800f2e5", "cast_id": 26, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 13}, {"name": "Amy Ryan", "character": "Marie Dewey", "id": 39388, "credit_id": "52fe423ec3a36847f800f2e9", "cast_id": 27, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 14}, {"name": "Bruce Greenwood", "character": "Jack Dunphy", "id": 21089, "credit_id": "532f294ec3a3685fac00473e", "cast_id": 28, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 15}], "directors": [{"name": "Bennett Miller", "department": "Directing", "job": "Director", "credit_id": "52fe423ec3a36847f800f26f", "profile_path": "/jlnO6Hg6jChoGWr6ScVBpLJBAiI.jpg", "id": 5345}], "vote_average": 6.3, "runtime": 114}, "262543": {"poster_path": "/wwo81W8PxHREEprnrJRww471hWm.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Jacq Vaucan, an insurance agent of ROC robotics corporation, routinely investigates the case of manipulating a robot. What he discovers will have profound consequences for the future of humanity.", "video": false, "id": 262543, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Aut\u00f3mata", "tagline": "Your time is coming to an end \u2013 Ours is now beginning", "vote_count": 164, "homepage": "http://www.automata-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1971325", "adult": false, "backdrop_path": "/281QVUuSYKBgtdxmr5iAM7YDUZw.jpg", "production_companies": [{"name": "Green Moon Productions", "id": 4434}, {"name": "Nu Boyana Viburno", "id": 34070}], "release_date": "2014-10-09", "popularity": 4.95964093994281, "original_title": "Aut\u00f3mata", "budget": 15000000, "cast": [{"name": "Antonio Banderas", "character": "Jacq Vaucan", "id": 3131, "credit_id": "53f59be70e0a267f890046b1", "cast_id": 0, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Birgitte Hjort S\u00f8rensen", "character": "Rachel Vaucan", "id": 90514, "credit_id": "53f59bf70e0a267f8300457c", "cast_id": 1, "profile_path": "/u4pEu9aV31yBuc5mdhhpeyR5827.jpg", "order": 1}, {"name": "Melanie Griffith", "character": "Dra. Dupre / Cleo (voice)", "id": 29369, "credit_id": "53f59c050e0a267f8000464c", "cast_id": 2, "profile_path": "/cb2IeaETE0oVV5JZc79Vi0dS6m2.jpg", "order": 2}, {"name": "Dylan McDermott", "character": "Wallace", "id": 32597, "credit_id": "53f59c100e0a26419b003253", "cast_id": 3, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 3}, {"name": "Robert Forster", "character": "Robert Bold", "id": 5694, "credit_id": "5450fd3f0e0a263a18004456", "cast_id": 30, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 4}, {"name": "Tim McInnerny", "character": "Vernon Conway", "id": 41043, "credit_id": "53f59c310e0a267f80004650", "cast_id": 5, "profile_path": "/wxO1c0e5N1WHn2wLHmEbvrfqnnX.jpg", "order": 5}, {"name": "Andy Nyman", "character": "Ellis", "id": 22810, "credit_id": "53f59c420e0a267f890046b8", "cast_id": 6, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 6}, {"name": "David Ryall", "character": "Dominic Hawk", "id": 27822, "credit_id": "53f59c590e0a267f7a004750", "cast_id": 7, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 7}, {"name": "Andrew Tiernan", "character": "Manager", "id": 17290, "credit_id": "53f59c640e0a267f7d00473f", "cast_id": 8, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 8}, {"name": "Christa Campbell", "character": "ROC Technician", "id": 85178, "credit_id": "53f59c700e0a267f770045ea", "cast_id": 9, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 9}, {"name": "Christina Tam", "character": "Morgue Technician", "id": 1355190, "credit_id": "53f59c980e0a267f7d004744", "cast_id": 10, "profile_path": null, "order": 10}, {"name": "Danny Kirrane", "character": "Muniesa Technician", "id": 1355191, "credit_id": "53f59caf0e0a267f7d00474c", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Philip Rosch", "character": "Client", "id": 1355192, "credit_id": "53f59ccf0e0a267f890046cb", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "Javier Bardem", "character": "Blue Robot (voice)", "id": 3810, "credit_id": "53f59cdf0e0a267f770045fc", "cast_id": 13, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 13}, {"name": "Harry Anichkin", "character": "Clift", "id": 131101, "credit_id": "5450fd550e0a2601d8004306", "cast_id": 31, "profile_path": "/g4p8QC0VnYkCyYBtRBSiFEtIC71.jpg", "order": 14}], "directors": [{"name": "Gabe Ib\u00e1\u00f1ez", "department": "Directing", "job": "Director", "credit_id": "53f59d270e0a267f890046d9", "profile_path": null, "id": 119953}], "vote_average": 5.6, "runtime": 110}, "8592": {"poster_path": "/4UfKEGnj9jPWV11LNKBXTgge3We.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103738726, "overview": "The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice's united mob,", "video": false, "id": 8592, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Dick Tracy", "tagline": "Their turf. Their game. Their rules. They didn't count on HIS law...", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099422", "adult": false, "backdrop_path": "/1lyGxhpRG0ftzbZdsmZ35c7DnhG.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1990-06-15", "popularity": 0.28072920310531, "original_title": "Dick Tracy", "budget": 47000000, "cast": [{"name": "Warren Beatty", "character": "Dick Tracy", "id": 6449, "credit_id": "52fe44b0c3a36847f80a4697", "cast_id": 1, "profile_path": "/qVwqGRh3gkjwF7DESvoYDINfnCM.jpg", "order": 0}, {"name": "Al Pacino", "character": "Big Boy Caprice", "id": 1158, "credit_id": "52fe44b0c3a36847f80a469b", "cast_id": 2, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Madonna", "character": "Breathless Mahoney", "id": 3125, "credit_id": "52fe44b0c3a36847f80a469f", "cast_id": 3, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 2}, {"name": "Charlie Korsmo", "character": "Kid", "id": 13389, "credit_id": "52fe44b0c3a36847f80a46a3", "cast_id": 4, "profile_path": "/5TiMQj3AXDVL1wDVtQss2xUPzTC.jpg", "order": 3}, {"name": "Glenne Headly", "character": "Tess Trueheart", "id": 21104, "credit_id": "52fe44b0c3a36847f80a46a7", "cast_id": 5, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 4}, {"name": "Dustin Hoffman", "character": "Mumbles", "id": 4483, "credit_id": "52fe44b0c3a36847f80a46ab", "cast_id": 6, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 5}, {"name": "James Caan", "character": "Spaldoni", "id": 3085, "credit_id": "52fe44b0c3a36847f80a46af", "cast_id": 7, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "William Forsythe", "character": "Flattop", "id": 4520, "credit_id": "52fe44b0c3a36847f80a46b3", "cast_id": 8, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 7}, {"name": "Seymour Cassel", "character": "Sam Catchem", "id": 5950, "credit_id": "52fe44b0c3a36847f80a46db", "cast_id": 15, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 8}, {"name": "Dick Van Dyke", "character": "D.A. Fletcher", "id": 61303, "credit_id": "52fe44b0c3a36847f80a46df", "cast_id": 16, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 9}, {"name": "Kathy Bates", "character": "Mrs. Green", "id": 8534, "credit_id": "52fe44b0c3a36847f80a46e3", "cast_id": 17, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 10}, {"name": "Paul Sorvino", "character": "Lips Manlis", "id": 7004, "credit_id": "52fe44b0c3a36847f80a46ed", "cast_id": 19, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 11}, {"name": "Charles Durning", "character": "Chief Brandon", "id": 1466, "credit_id": "52fe44b0c3a36847f80a46f1", "cast_id": 20, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 12}, {"name": "Mandy Patinkin", "character": "88 Keys", "id": 25503, "credit_id": "52fe44b0c3a36847f80a46f5", "cast_id": 21, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 13}, {"name": "June Foray", "character": "Katie valiant / wheezy weasel", "id": 15098, "credit_id": "52fe44b0c3a36847f80a46f9", "cast_id": 22, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 14}, {"name": "David Lander", "character": "Smarty weasel", "id": 78619, "credit_id": "52fe44b0c3a36847f80a46fd", "cast_id": 23, "profile_path": "/3qTHGWSHCgQgL4HBQBqCd56XK3X.jpg", "order": 15}, {"name": "Charles Fleischer", "character": "Pyscho weasel / Greasy weasel", "id": 12826, "credit_id": "52fe44b0c3a36847f80a4701", "cast_id": 24, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 16}, {"name": "Fred Newman", "character": "Stupid weasel", "id": 196714, "credit_id": "52fe44b0c3a36847f80a4705", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Tara Strong", "character": "Natasha boulder/ Jenny Triton", "id": 15762, "credit_id": "52fe44b0c3a36847f80a4711", "cast_id": 28, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 20}, {"name": "Henry Silva", "character": "Influence", "id": 14731, "credit_id": "52fe44b0c3a36847f80a4721", "cast_id": 33, "profile_path": "/bIQ27e769EbNtMBdU1xSoaGgNd3.jpg", "order": 21}, {"name": "R. G. Armstrong", "character": "Pruneface", "id": 1107, "credit_id": "52fe44b0c3a36847f80a4725", "cast_id": 34, "profile_path": "/lRGoPhebBnPFzZQvcmnUokjGL7L.jpg", "order": 22}, {"name": "Catherine O'Hara", "character": "Texie Garcia", "id": 11514, "credit_id": "52fe44b0c3a36847f80a4729", "cast_id": 35, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 23}, {"name": "Mary Woronov", "character": "Welfare Person", "id": 100552, "credit_id": "52fe44b0c3a36847f80a472d", "cast_id": 36, "profile_path": "/xMQUflLmqD5PryDHsGGMvSnIW2b.jpg", "order": 24}, {"name": "E.G. Daily", "character": "Trisha foxworth / psycha psycho", "id": 15274, "credit_id": "5538a457c3a36878fd004d03", "cast_id": 38, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 25}], "directors": [{"name": "Warren Beatty", "department": "Directing", "job": "Director", "credit_id": "52fe44b0c3a36847f80a46b9", "profile_path": "/qVwqGRh3gkjwF7DESvoYDINfnCM.jpg", "id": 6449}], "vote_average": 5.6, "runtime": 103}, "401": {"poster_path": "/jqfhv16LODEhj04E4EZ1swFRZWX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26781723, "overview": "Andrew returns to his hometown for the funeral of his mother, a journey that reconnects him with past friends. The trip coincides with his decision to stop taking his powerful antidepressants. A chance meeting with Sam - a girl also suffering from various maladies - opens up the possibility of rekindling emotional attachments, confronting his psychologist father, and perhaps beginning a new life.", "video": false, "id": 401, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Garden State", "tagline": "", "vote_count": 165, "homepage": "http://www2.foxsearchlight.com/gardenstate/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0333766", "adult": false, "backdrop_path": "/hi7OYwXv4uCeCKZB0pJirszTxI9.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Double Feature Films", "id": 215}, {"name": "Jersey Films", "id": 216}, {"name": "Camelot Pictures", "id": 11728}, {"name": "Large's Ark Productions", "id": 11729}], "release_date": "2004-01-16", "popularity": 0.954166853588294, "original_title": "Garden State", "budget": 2500000, "cast": [{"name": "Zach Braff", "character": "Andrew Largeman", "id": 5367, "credit_id": "52fe423ec3a36847f800f3c5", "cast_id": 1, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Sam", "id": 524, "credit_id": "52fe423ec3a36847f800f3d9", "cast_id": 6, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Ian Holm", "character": "Gideon Largeman", "id": 65, "credit_id": "52fe423ec3a36847f800f40f", "cast_id": 18, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 2}, {"name": "Peter Sarsgaard", "character": "Mark", "id": 133, "credit_id": "52fe423ec3a36847f800f413", "cast_id": 19, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 3}, {"name": "Kenneth Graymez", "character": "Busboy", "id": 5368, "credit_id": "52fe423ec3a36847f800f3c9", "cast_id": 2, "profile_path": null, "order": 4}, {"name": "Jean Smart", "character": "Carol", "id": 5376, "credit_id": "52fe423ec3a36847f800f3ed", "cast_id": 11, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 5}, {"name": "Armando Riesco", "character": "Jesse", "id": 19497, "credit_id": "53c02e56c3a3684cdf005330", "cast_id": 40, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 6}, {"name": "Jackie Hoffman", "character": "Aunt Sylvia Largeman", "id": 5385, "credit_id": "52fe423ec3a36847f800f40b", "cast_id": 17, "profile_path": "/2lqw56we9TqWxQ3ewiWjWsREfLO.jpg", "order": 7}, {"name": "Method Man", "character": "Diego", "id": 5384, "credit_id": "52fe423ec3a36847f800f407", "cast_id": 16, "profile_path": "/qzZv7AWVVKex2IOe65a1WaQuW0g.jpg", "order": 8}, {"name": "Alex Burns", "character": "Dave", "id": 5395, "credit_id": "52fe423fc3a36847f800f47d", "cast_id": 37, "profile_path": null, "order": 9}, {"name": "Ron Leibman", "character": "Dr. Cohen", "id": 5372, "credit_id": "52fe423ec3a36847f800f3dd", "cast_id": 7, "profile_path": "/z50U8MiKua6Vk4xK0FhWPDWnMgR.jpg", "order": 10}, {"name": "Jim Parsons", "character": "Tim", "id": 5374, "credit_id": "52fe423ec3a36847f800f3e5", "cast_id": 9, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 11}, {"name": "Michael Weston", "character": "Kenny", "id": 51381, "credit_id": "53c02e12c3a3687e59004f77", "cast_id": 39, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 12}, {"name": "Ann Dowd", "character": "Olivia", "id": 43366, "credit_id": "53c02f390e0a2615790070f7", "cast_id": 41, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 13}, {"name": "Ato Essandoh", "character": "Titembay", "id": 5377, "credit_id": "52fe423ec3a36847f800f3f1", "cast_id": 12, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 14}, {"name": "Denis O'Hare", "character": "Albert", "id": 81681, "credit_id": "52fe423fc3a36847f800f481", "cast_id": 38, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 15}, {"name": "Trisha LaFache", "character": "Kelly", "id": 5373, "credit_id": "52fe423ec3a36847f800f3e1", "cast_id": 8, "profile_path": null, "order": 16}, {"name": "Geoffrey Arend", "character": "Karl Benson", "id": 5375, "credit_id": "52fe423ec3a36847f800f3e9", "cast_id": 10, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 17}, {"name": "George C. Wolfe", "character": "Restaurant Manager", "id": 5369, "credit_id": "52fe423ec3a36847f800f3cd", "cast_id": 3, "profile_path": "/izFpDiWihiqonmSiyFCeHgu6T3J.jpg", "order": 18}, {"name": "Austin Lysy", "character": "Waiter", "id": 5370, "credit_id": "52fe423ec3a36847f800f3d1", "cast_id": 4, "profile_path": "/7MAYRiYplZmGlGEMBsIiHGoitX5.jpg", "order": 19}, {"name": "Gary Gilbert", "character": "Young Hollywood Guy", "id": 5371, "credit_id": "52fe423ec3a36847f800f3d5", "cast_id": 5, "profile_path": null, "order": 20}], "directors": [{"name": "Zach Braff", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f479", "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "id": 5367}], "vote_average": 7.0, "runtime": 102}, "402": {"poster_path": "/vGBtnm9clhAjLp3D3dky7zFTQBA.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 352927224, "overview": "A police detective is in charge of the investigation of a brutal murder, in which a beautiful and seductive woman could be involved.", "video": false, "id": 402, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Basic Instinct", "tagline": "A brutal murder. A brilliant killer. A cop who can't resist the danger.", "vote_count": 194, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o5rgryRLwlOApsO3toqpqhhdS7H.jpg", "poster_path": "/hiM5EvFgjFboZtPMY5vFjhNnRQc.jpg", "id": 86336, "name": "Basic Instinct Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103772", "adult": false, "backdrop_path": "/bKdxJMqvr4wltzAQaieA6CTkaa9.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1992-03-20", "popularity": 0.82011402565448, "original_title": "Basic Instinct", "budget": 49000000, "cast": [{"name": "Michael Douglas", "character": "Det. Nick Curran", "id": 3392, "credit_id": "52fe423fc3a36847f800f4f3", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Catherine Tramell", "id": 4430, "credit_id": "52fe423fc3a36847f800f4f7", "cast_id": 2, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "George Dzundza", "character": "Gus Moran", "id": 10477, "credit_id": "52fe423fc3a36847f800f4fb", "cast_id": 3, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 2}, {"name": "Jeanne Tripplehorn", "character": "Dr. Beth Garner", "id": 10478, "credit_id": "52fe423fc3a36847f800f4ff", "cast_id": 4, "profile_path": "/pZcw8RXsRSO9WXHOrQqentISWYv.jpg", "order": 3}, {"name": "Denis Arndt", "character": "Lt. Philip Walker", "id": 10480, "credit_id": "52fe423fc3a36847f800f503", "cast_id": 5, "profile_path": "/yyEYxsqbXF69RgwbhckzxRvHehQ.jpg", "order": 4}, {"name": "Leilani Sarelle", "character": "Roxy", "id": 10485, "credit_id": "52fe423fc3a36847f800f507", "cast_id": 6, "profile_path": "/l3TFOLMHeONi5hTw2khu4BUnyxa.jpg", "order": 5}, {"name": "Bruce A. Young", "character": "Andrews", "id": 4943, "credit_id": "52fe423fc3a36847f800f50b", "cast_id": 7, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 6}, {"name": "Chelcie Ross", "character": "Capt. Talcott", "id": 10486, "credit_id": "52fe423fc3a36847f800f50f", "cast_id": 8, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 7}, {"name": "Dorothy Malone", "character": "Hazel Dobkins", "id": 10487, "credit_id": "52fe423fc3a36847f800f513", "cast_id": 9, "profile_path": "/4bG60BRDp6xj7Gy7J3LcqjhvXpk.jpg", "order": 8}, {"name": "Wayne Knight", "character": "John Correli", "id": 4201, "credit_id": "52fe423fc3a36847f800f517", "cast_id": 10, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 9}, {"name": "Daniel von Bargen", "character": "Lt. Marty Nilsen", "id": 1473, "credit_id": "52fe423fc3a36847f800f51b", "cast_id": 11, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 10}, {"name": "Stephen Tobolowsky", "character": "Dr. Lamott", "id": 537, "credit_id": "52fe423fc3a36847f800f51f", "cast_id": 12, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 11}, {"name": "Benjamin Mouton", "character": "Harrigan", "id": 10488, "credit_id": "52fe423fc3a36847f800f523", "cast_id": 13, "profile_path": "/nzYS12c1c7GNnsnce1ysfOTgLyz.jpg", "order": 12}, {"name": "Jack McGee", "character": "Sheriff", "id": 10489, "credit_id": "52fe423fc3a36847f800f527", "cast_id": 14, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 13}, {"name": "Bill Cable", "character": "Johnny Boz", "id": 10490, "credit_id": "52fe423fc3a36847f800f52b", "cast_id": 15, "profile_path": "/lpeiDTH1sQHZYw0mQa16cUYW9rN.jpg", "order": 14}, {"name": "Stephen Rowe", "character": "Internal Affairs Investigator", "id": 163742, "credit_id": "52fe423fc3a36847f800f58f", "cast_id": 32, "profile_path": "/kQgyaZlrcYKUMj5jWntixBzIHLJ.jpg", "order": 15}, {"name": "Mitch Pileggi", "character": "Internal Affairs Investigator", "id": 12644, "credit_id": "52fe423fc3a36847f800f593", "cast_id": 33, "profile_path": "/yJhcdFVtc2J6Nnqz7rcYB7GI4P9.jpg", "order": 16}, {"name": "Mary Pat Gleason", "character": "Juvenile Officer", "id": 62595, "credit_id": "52fe423fc3a36847f800f597", "cast_id": 34, "profile_path": "/crJCES2ttMVhuU2gFxrRg1jDWum.jpg", "order": 17}, {"name": "Freda Foh Shen", "character": "Berkeley Registrar", "id": 51754, "credit_id": "52fe423fc3a36847f800f59b", "cast_id": 35, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 18}, {"name": "William Duff-Griffin", "character": "Dr. Myron", "id": 21383, "credit_id": "52fe423fc3a36847f800f59f", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "James Rebhorn", "character": "Dr. McElwaine", "id": 8986, "credit_id": "52fe423fc3a36847f800f5a3", "cast_id": 37, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 20}, {"name": "David Wells", "character": "Polygraph Examiner", "id": 64236, "credit_id": "52fe423fc3a36847f800f5e5", "cast_id": 55, "profile_path": "/uK0vM9x0nkwJbjBSfCIWHWHdN8o.jpg", "order": 21}, {"name": "Mary Ann Rodgers", "character": "Nurse", "id": 1089417, "credit_id": "52fe423fc3a36847f800f5a7", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Adilah Barnes", "character": "Nurse", "id": 154114, "credit_id": "52fe423fc3a36847f800f5ab", "cast_id": 41, "profile_path": "/uwBDR07eJU1aanOKV9fXgv6Pu6O.jpg", "order": 23}, {"name": "Irene Olga L\u00f3pez", "character": "Maid", "id": 6329, "credit_id": "52fe423fc3a36847f800f5af", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Juanita Jennings", "character": "Receptionist", "id": 80615, "credit_id": "52fe423fc3a36847f800f5b3", "cast_id": 43, "profile_path": "/epxlAax85oVnIEuDfaGeJYp4SxT.jpg", "order": 25}, {"name": "Craig C. Lewis", "character": "Bartender / Police Bar", "id": 1089418, "credit_id": "52fe423fc3a36847f800f5b7", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Michael David Lally", "character": "Detective", "id": 77017, "credit_id": "52fe423fc3a36847f800f5bb", "cast_id": 45, "profile_path": "/zkGvar3ZcYNNIuu0wzOkLszxkDc.jpg", "order": 27}, {"name": "Peter Appel", "character": "Detective", "id": 1005, "credit_id": "52fe423fc3a36847f800f5bf", "cast_id": 46, "profile_path": "/wrAf4TGgtKE1mXWVtm1baTBDh6F.jpg", "order": 28}, {"name": "Michael Halton", "character": "Bartender / Country Western Bar", "id": 1089421, "credit_id": "52fe423fc3a36847f800f5c3", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Keith McDaniel", "character": "Featured Dancer", "id": 172603, "credit_id": "52fe423fc3a36847f800f5c7", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Eric Poppick", "character": "Coroner's Guy", "id": 83109, "credit_id": "52fe423fc3a36847f800f5cb", "cast_id": 49, "profile_path": "/zVNL8diZZ7yU5qByU7DDuzxYdwv.jpg", "order": 31}, {"name": "Ron Cacas", "character": "Policeman", "id": 1089422, "credit_id": "52fe423fc3a36847f800f5cf", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Kayla Blake", "character": "Roxy's Friend", "id": 1228677, "credit_id": "52fe423fc3a36847f800f5e9", "cast_id": 56, "profile_path": null, "order": 33}, {"name": "Bradford English", "character": "Campus Policeman", "id": 1234009, "credit_id": "52fe423fc3a36847f800f5ed", "cast_id": 57, "profile_path": null, "order": 34}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f531", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.2, "runtime": 127}, "403": {"poster_path": "/vzdx1rkR0wK8NcdgTAvg6Vp061U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145793296, "overview": "The story of an old Jewish widow named Daisy Werthan and her relationship with her colored chauffeur Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned upon. Oscar winning tragic comedy with a star-studded cast and based on a play of the same name by Alfred Uhry.", "video": false, "id": 403, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Driving Miss Daisy", "tagline": "The funny, touching and totally irresistible story of a working relationship that became a 25-year friendship.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097239", "adult": false, "backdrop_path": "/uK0ihZKox9aatW6KH1yjZh8wkt3.jpg", "production_companies": [{"name": "The Zanuck Company", "id": 80}, {"name": "Majestic Films International", "id": 2630}], "release_date": "1989-12-13", "popularity": 0.497952239611202, "original_title": "Driving Miss Daisy", "budget": 7500000, "cast": [{"name": "Morgan Freeman", "character": "Hoke Colburn", "id": 192, "credit_id": "52fe423fc3a36847f800f63b", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Jessica Tandy", "character": "Daisy Werthan", "id": 5698, "credit_id": "52fe423fc3a36847f800f63f", "cast_id": 5, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Boolie Werthan", "id": 707, "credit_id": "52fe423fc3a36847f800f643", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "Patti LuPone", "character": "Florine Werthan", "id": 5699, "credit_id": "52fe423fc3a36847f800f647", "cast_id": 7, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 3}, {"name": "Esther Rolle", "character": "Idella", "id": 5700, "credit_id": "52fe423fc3a36847f800f64b", "cast_id": 8, "profile_path": "/2r5hEU7GupbbTlGKl4F5IfakIzO.jpg", "order": 4}, {"name": "Joann Havrilla", "character": "Miss McClatchey", "id": 5701, "credit_id": "52fe423fc3a36847f800f64f", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "William Hall Jr.", "character": "Oscar", "id": 5702, "credit_id": "52fe423fc3a36847f800f653", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Clarice F. Geigerman", "character": "Nonie", "id": 5703, "credit_id": "52fe423fc3a36847f800f657", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Muriel Moore", "character": "Miriam", "id": 5704, "credit_id": "52fe423fc3a36847f800f65b", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Sylvia Kaler", "character": "Beulah", "id": 5705, "credit_id": "52fe423fc3a36847f800f65f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Alvin M. Sugarman", "character": "Dr. Weil", "id": 1403815, "credit_id": "549bf8d1925141312c003256", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Carolyn Gold", "character": "Neighbor Lady", "id": 1403817, "credit_id": "549bf8fb925141312c00325c", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Bruce Beresford", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f62b", "profile_path": "/2BM92YfwzMpFkk5IlNZfZqPmODy.jpg", "id": 5696}], "vote_average": 7.1, "runtime": 99}, "406": {"poster_path": "/mIRwt45pSrirMzOA2aplFx7EJKT.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Abdel, a local hoodlum, is hospitalized after a riot, where a policeman lost his gun. His friend Vinz finds it and claims he will kill a cop if Abdel dies.", "video": false, "id": 406, "genres": [{"id": 18, "name": "Drama"}], "title": "Hate", "tagline": "Three Young Friends... One Last Chance.", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0113247", "adult": false, "backdrop_path": "/jJnjivw8vAWwjkPZTpH0C8AzPTQ.jpg", "production_companies": [{"name": "Le Studio Canal+", "id": 183}], "release_date": "1995-05-31", "popularity": 0.985582974354869, "original_title": "La Haine", "budget": 3000000, "cast": [{"name": "Vincent Cassel", "character": "Vinz", "id": 1925, "credit_id": "52fe423fc3a36847f800f88f", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "Hubert Kound\u00e9", "character": "Hubert", "id": 5418, "credit_id": "52fe423fc3a36847f800f893", "cast_id": 3, "profile_path": "/rVgtZ1d6bbbaMFcGVujZEznqQNo.jpg", "order": 1}, {"name": "Sa\u00efd Taghmaoui", "character": "Sa\u00efd", "id": 5419, "credit_id": "52fe423fc3a36847f800f897", "cast_id": 4, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 2}, {"name": "Abdel Ahmed Ghili", "character": "Abdel", "id": 5420, "credit_id": "52fe423fc3a36847f800f89b", "cast_id": 5, "profile_path": "/1ZGyOl1Xc007E9tnkLWdcAQdFNw.jpg", "order": 3}, {"name": "Solo", "character": "Santo", "id": 5422, "credit_id": "52fe423fc3a36847f800f89f", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "H\u00e9lo\u00efse Rauth", "character": "Sarah", "id": 5424, "credit_id": "52fe423fc3a36847f800f8a7", "cast_id": 8, "profile_path": "/wTrEFOrSiyPzViREYwU56Ch94Zw.jpg", "order": 5}, {"name": "Beno\u00eet Magimel", "character": "Beno\u00eet", "id": 5442, "credit_id": "52fe4240c3a36847f800f901", "cast_id": 24, "profile_path": "/mbOvuJivoZlhNrIIqYMSZEs6Mud.jpg", "order": 6}, {"name": "\u00c9douard Montoute", "character": "Darty", "id": 5441, "credit_id": "52fe4240c3a36847f800f8fd", "cast_id": 23, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 7}, {"name": "Marc Duret", "character": "Inspecteur Notre Dame", "id": 2170, "credit_id": "52fe4240c3a36847f800f911", "cast_id": 28, "profile_path": "/yZu9GrdnBYT0nEwPNPKvbXN9DfE.jpg", "order": 8}, {"name": "Joseph Momo", "character": "Gars ordinaire", "id": 5423, "credit_id": "52fe423fc3a36847f800f8a3", "cast_id": 7, "profile_path": null, "order": 9}, {"name": "Vincent Lindon", "character": "L'homme saoul", "id": 5443, "credit_id": "52fe4240c3a36847f800f905", "cast_id": 25, "profile_path": "/ttfk7etXzELkW1gMSo5eH8aEzjY.jpg", "order": 10}, {"name": "Christophe Rossignon", "character": "Le chauffeur de taxi", "id": 5425, "credit_id": "52fe4240c3a36847f800f909", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Mathieu Kassovitz", "character": "Le jeune skinhead", "id": 2406, "credit_id": "52fe4240c3a36847f800f90d", "cast_id": 27, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 12}, {"name": "Philippe Nahon", "character": "Le chef de la police", "id": 5444, "credit_id": "52fe4240c3a36847f800f915", "cast_id": 29, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 13}, {"name": "Zinedine Soualem", "character": "L'Officier de Police", "id": 5445, "credit_id": "52fe4240c3a36847f800f919", "cast_id": 30, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 14}, {"name": "Rywka Wajsbrot", "character": "Grand-m\u00e8re de Vinz", "id": 1347614, "credit_id": "53d7f92ec3a3683a12001afc", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Olga Abrego", "character": "Tante de Vinz", "id": 1347615, "credit_id": "53d7f964c3a3683a0e001a49", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Laurent Labasse", "character": "Cuisinier", "id": 579488, "credit_id": "53d7f9ce0e0a26033d0025f2", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Choukri Gabteni", "character": "Fr\u00e8re de Sa\u00efd", "id": 64546, "credit_id": "53d7fa0f0e0a26033d0025fc", "cast_id": 35, "profile_path": null, "order": 18}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe423fc3a36847f800f88b", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 8.1, "runtime": 98}, "262551": {"poster_path": "/sXnTvL5ZD7sVDID29yj4cd008ZF.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Looking for a baby-sitter for the night, Marc Schaudel entrusts his son Remy to the care of his employee Franck, a straight man. But the thing that Marc doesn't know, is that Franck is getting 30 years old this weekend and that his son Remy is a very capricious child. The next day, Marc and his wife Claire are awakened by a call from the police. Remy and Franck are missing, and the house is totally devastated. The police finds a camera in the leftovers. Marc, Claire and the police start watching the video that has been recorded the day before during the night and find out what happened to Franck and Remy.", "video": false, "id": 262551, "genres": [{"id": 35, "name": "Comedy"}], "title": "Babysitting", "tagline": "", "vote_count": 104, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 331841, "name": "Babysitting Filmreihe"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3013602", "adult": false, "backdrop_path": "/fwNCHtxafF3iaVuo94bcYdv9f8p.jpg", "production_companies": [{"name": "La Banque Postale Image 7", "id": 46205}, {"name": "Axel Films", "id": 13319}, {"name": "Madame Films", "id": 49194}, {"name": "Cin\u00e9france 1888", "id": 31229}, {"name": "Good Lap Production", "id": 47930}, {"name": "Universal Pictures International (UPI)", "id": 5726}], "release_date": "2014-04-16", "popularity": 0.530902981012688, "original_title": "Babysitting", "budget": 0, "cast": [{"name": "Philippe Lacheau", "character": "Franck", "id": 1186076, "credit_id": "533ac2c5c3a36819c40058ce", "cast_id": 0, "profile_path": "/c7uygPak9MLfOa6WCTv46ir7muW.jpg", "order": 1}, {"name": "Alice David", "character": "Sonia", "id": 1306309, "credit_id": "533ac2d2c3a36819c40058d1", "cast_id": 1, "profile_path": "/2iNCkZy1tAjM3kaoOqmrLxbSRmz.jpg", "order": 2}, {"name": "Vincent Desagnat", "character": "Ernest", "id": 76825, "credit_id": "533ac2e7c3a36819c40058d6", "cast_id": 2, "profile_path": "/chkXB8vpO0NuR66Wi0tGfVKnuBX.jpg", "order": 3}, {"name": "Tarek Boudali", "character": "Sam", "id": 1186075, "credit_id": "533ac2f5c3a3680e8f007da6", "cast_id": 3, "profile_path": "/kxZDvHShgONqXNyZzdeOGm4Wq47.jpg", "order": 4}, {"name": "Julien Arruti", "character": "Alex", "id": 1291810, "credit_id": "533ac308c3a3680e76007ce6", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Gr\u00e9goire Ludig", "character": "Paul", "id": 145123, "credit_id": "533ac323c3a3680e9f0078c9", "cast_id": 5, "profile_path": "/7K97v7BSoBV5FMHmn3wbtyCxZyG.jpg", "order": 6}, {"name": "David Marsais", "character": "Jean", "id": 1285939, "credit_id": "533ac331c3a3680e70007c7b", "cast_id": 6, "profile_path": "/3zT5rWH5oGToG2VoOtNEdMVPSFY.jpg", "order": 7}, {"name": "G\u00e9rard Jugnot", "character": "M. Schaudel", "id": 21171, "credit_id": "533ac34bc3a3680e96007a43", "cast_id": 7, "profile_path": "/xlFmLH6cGfHPKdvyoYZitfB8Txf.jpg", "order": 8}, {"name": "Clotilde Courau", "character": "Mme Schaudel", "id": 16921, "credit_id": "53ee4b380e0a2619350023f3", "cast_id": 14, "profile_path": "/htHGCsyHZ7zMyjmpSsiKmfdp21Z.jpg", "order": 9}, {"name": "Philippe Duquesne", "character": "Agent Caillaud", "id": 66032, "credit_id": "53ee4c4fc3a368168c0016d4", "cast_id": 15, "profile_path": "/9Br1Ewi1aHoiRrCt50j0QS2UyHC.jpg", "order": 10}, {"name": "David Salles", "character": "Commissaire Laville", "id": 130454, "credit_id": "53ee4cbcc3a368167800172c", "cast_id": 16, "profile_path": "/6u7gqUBTLwdWD7nXJcZQi8O2gnk.jpg", "order": 11}], "directors": [{"name": "Philippe Lacheau", "department": "Directing", "job": "Director", "credit_id": "533ac383c3a3680e7f007b68", "profile_path": "/c7uygPak9MLfOa6WCTv46ir7muW.jpg", "id": 1186076}, {"name": "Nicolas Benamou", "department": "Directing", "job": "Director", "credit_id": "533ac393c3a3680e69007de8", "profile_path": null, "id": 1067317}], "vote_average": 7.3, "runtime": 0}, "408": {"poster_path": "/vGV35HBCMhQl2phhGaQ29P08ZgM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \"the fairest in the land,\" and Snow White's beauty surpasses her own.", "video": false, "id": 408, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Snow White and the Seven Dwarfs", "tagline": "The Happiest, Dopiest, Grumpiest, Sneeziest movie of the year.", "vote_count": 505, "homepage": "http://disney.go.com/vault/archives/movies/snow/snow.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0029583", "adult": false, "backdrop_path": "/8lxW9WfWkSxmPPck605QLQL268q.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1937-12-21", "popularity": 1.94784258120522, "original_title": "Snow White and the Seven Dwarfs", "budget": 1488000, "cast": [{"name": "Stuart Buchanan", "character": "Huntsman", "id": 5458, "credit_id": "52fe4240c3a36847f800fa61", "cast_id": 13, "profile_path": "/dR6rMMbeq8m23ZhlLnOf7mke29x.jpg", "order": 0}, {"name": "Adriana Caselotti", "character": "Snow White", "id": 5460, "credit_id": "52fe4240c3a36847f800fa65", "cast_id": 14, "profile_path": "/spSFVZoDpFhkSeyEMTTJj8ZSNKs.jpg", "order": 1}, {"name": "Eddie Collins", "character": "Dopey", "id": 5461, "credit_id": "52fe4240c3a36847f800fa69", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Pinto Colvig", "character": "Sleepy/Grumpy", "id": 5462, "credit_id": "52fe4240c3a36847f800fa6d", "cast_id": 16, "profile_path": "/iHUSTwJAlqn0OzZpjiZwrkRgzXq.jpg", "order": 3}, {"name": "Marion Darlington", "character": "Bird Sounds and Warbling", "id": 5463, "credit_id": "52fe4240c3a36847f800fa71", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Billy Gilbert", "character": "Sneezy", "id": 5464, "credit_id": "52fe4240c3a36847f800fa75", "cast_id": 18, "profile_path": "/pITSLDLWwStge8KwizNn2VZdN9c.jpg", "order": 5}, {"name": "Otis Harlan", "character": "Happy", "id": 5465, "credit_id": "52fe4240c3a36847f800fa79", "cast_id": 19, "profile_path": "/dvoCiNNoupmtAh3qUfBX5zOOO1P.jpg", "order": 6}, {"name": "Roy Atwell", "character": "Doc", "id": 5457, "credit_id": "52fe4240c3a36847f800fa7d", "cast_id": 20, "profile_path": "/gHiJd6CHJyQJjL0xdnq1B0sOlVE.jpg", "order": 7}, {"name": "Lucille La Verne", "character": "Queen / Witch", "id": 288940, "credit_id": "52fe4240c3a36847f800fab7", "cast_id": 31, "profile_path": "/1kLj9WrPzUZMOyP3bgqxJX0ZkSm.jpg", "order": 8}, {"name": "Scotty Mattraw", "character": "Bashful", "id": 364526, "credit_id": "52fe4240c3a36847f800fabb", "cast_id": 32, "profile_path": "/9jOZqlkHGNwCBURJJ6mfV5RrzI5.jpg", "order": 9}, {"name": "Moroni Olsen", "character": "Magic Mirror", "id": 18586, "credit_id": "52fe4240c3a36847f800fabf", "cast_id": 33, "profile_path": "/20iaFC3qnVA9t77SFYnjVuJas1P.jpg", "order": 10}, {"name": "Harry Stockwell", "character": "Prince", "id": 540747, "credit_id": "52fe4240c3a36847f800fac3", "cast_id": 34, "profile_path": "/fpv8vxrT8QbhFSIEipQHq0BEpRh.jpg", "order": 11}, {"name": "Purv Pullen", "character": "Birds", "id": 523407, "credit_id": "52fe4240c3a36847f800fac7", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "James MacDonald", "character": "Yodeling Man", "id": 137461, "credit_id": "52fe4240c3a36847f800facb", "cast_id": 36, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 13}], "directors": [{"name": "David Hand", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fa1b", "profile_path": "/4VzUnNNHSwGT0qH99Zgd0nhmmIU.jpg", "id": 5446}], "vote_average": 6.3, "runtime": 83}, "409": {"poster_path": "/niqc0v3Lclh99Mmmxm49qZTIo2e.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231700000, "overview": "The filmed version of the novel by Michael Ondaatje of the same name. This film tells of love stories during the turbulent times of World War 2. Director Anthony Minghella films the biography of Ladislaus Almasy.", "video": false, "id": 409, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "The English Patient", "tagline": "In love, there are no boundaries.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116209", "adult": false, "backdrop_path": "/mn1GTWYUpWs7jQnI6C0PJsqa8UI.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Tiger Moth Productions", "id": 12204}], "release_date": "1996-11-14", "popularity": 1.08324997148023, "original_title": "The English Patient", "budget": 27000000, "cast": [{"name": "Ralph Fiennes", "character": "Count L\u00e1szl\u00f3 de Alm\u00e1sy", "id": 5469, "credit_id": "52fe4240c3a36847f800fb1b", "cast_id": 1, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Juliette Binoche", "character": "Hana", "id": 1137, "credit_id": "52fe4240c3a36847f800fb1f", "cast_id": 2, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "David Caravaggio", "id": 5293, "credit_id": "52fe4240c3a36847f800fb23", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Kristin Scott Thomas", "character": "Katharine Clifton", "id": 5470, "credit_id": "52fe4240c3a36847f800fb27", "cast_id": 4, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 3}, {"name": "Naveen Andrews", "character": "Sikh Kip", "id": 5471, "credit_id": "52fe4240c3a36847f800fb2b", "cast_id": 5, "profile_path": "/8Y6GvOC52mnLyiAg8Oz0IIuuW4m.jpg", "order": 4}, {"name": "Colin Firth", "character": "Geoffrey Clifton", "id": 5472, "credit_id": "52fe4240c3a36847f800fb2f", "cast_id": 6, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 5}, {"name": "Julian Wadham", "character": "Madox", "id": 5473, "credit_id": "52fe4240c3a36847f800fb33", "cast_id": 7, "profile_path": "/oDfxeUerYXpcZJXmoZPbSbfQy2A.jpg", "order": 6}, {"name": "Torri Higginson", "character": "Mary", "id": 5480, "credit_id": "52fe4240c3a36847f800fb53", "cast_id": 15, "profile_path": "/kDGgULo1Y9qGgxdZxduoePRNXoq.jpg", "order": 7}, {"name": "J\u00fcrgen Prochnow", "character": "Major Muller", "id": 920, "credit_id": "52fe4240c3a36847f800fb37", "cast_id": 8, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 8}, {"name": "Kevin Whately", "character": "Hardy", "id": 5474, "credit_id": "52fe4240c3a36847f800fb3b", "cast_id": 9, "profile_path": "/bW6z8nxcuDkEJ04TnN4pnKygNAw.jpg", "order": 9}, {"name": "Clive Merrison", "character": "Fenelon-Barnes", "id": 5475, "credit_id": "52fe4240c3a36847f800fb3f", "cast_id": 10, "profile_path": "/xaVOsuG0Slbwly5laYw98ZUq0co.jpg", "order": 10}, {"name": "Nino Castelnuovo", "character": "D'Agostino", "id": 5476, "credit_id": "52fe4240c3a36847f800fb43", "cast_id": 11, "profile_path": "/snBgTgj1yr1hAXAwVrIl5HByyRY.jpg", "order": 11}, {"name": "Hichem Rostom", "character": "Fouad", "id": 5477, "credit_id": "52fe4240c3a36847f800fb47", "cast_id": 12, "profile_path": "/2UUNuUdcyVL91i1ZZ0FUj3BBv7m.jpg", "order": 12}, {"name": "Peter R\u00fchring", "character": "Bermann", "id": 5478, "credit_id": "52fe4240c3a36847f800fb4b", "cast_id": 13, "profile_path": "/wA5xpXiyE2LQ3lhKOl0mNvSThNI.jpg", "order": 13}, {"name": "Geordie Johnson", "character": "Oliver", "id": 5479, "credit_id": "52fe4240c3a36847f800fb4f", "cast_id": 14, "profile_path": "/3ipQU3hUWj4wvFzrY4UCnUs1CpE.jpg", "order": 14}, {"name": "Liisa Repo-Martell", "character": "Jan", "id": 5481, "credit_id": "52fe4240c3a36847f800fb57", "cast_id": 16, "profile_path": "/lwjWInRTj9ZkDuMziQNywhbOKzw.jpg", "order": 15}, {"name": "Ray Coulthard", "character": "Rupert Douglas", "id": 5482, "credit_id": "52fe4240c3a36847f800fb5b", "cast_id": 17, "profile_path": "/7yn47hVgaNv4m23dYmqvqZd94ob.jpg", "order": 16}, {"name": "Philip Whitchurch", "character": "Corporal Dade", "id": 5483, "credit_id": "52fe4240c3a36847f800fb5f", "cast_id": 18, "profile_path": "/mQDrOvX4sM3Pjz4JEj44AyHBSM6.jpg", "order": 17}], "directors": [{"name": "Anthony Minghella", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fb65", "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "id": 2239}], "vote_average": 7.0, "runtime": 162}, "411": {"poster_path": "/tFOQ4q6JnHcdw58ThL4SzFv37NT.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 748806957, "overview": "Join Lucy, Edmund, Susan, and Peter, four siblings who step through a magical wardrobe and find the land of Narnia. There, the they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever!", "video": false, "id": 411, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", "tagline": "Evil Has Reigned For 100 Years...", "vote_count": 679, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ojjzZUQlqKTsN1T7s5OAVZSjYMH.jpg", "poster_path": "/sh6Kn8VBfXotJ6qsvJkdfscxXKR.jpg", "id": 420, "name": "The Chronicles of Narnia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363771", "adult": false, "backdrop_path": "/4ZwXJcUT3KdE8Kan9TJ7l0Rg5LG.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "Walt Disney", "id": 5888}], "release_date": "2005-12-09", "popularity": 2.75967204074153, "original_title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", "budget": 180000000, "cast": [{"name": "Georgie Henley", "character": "Lucy Pevensie", "id": 5526, "credit_id": "52fe4240c3a36847f800fcc9", "cast_id": 3, "profile_path": "/u8zyLaHTqx4V8LyHnYL2vDsxbrC.jpg", "order": 0}, {"name": "Skandar Keynes", "character": "Edmund Pevensie", "id": 5527, "credit_id": "52fe4240c3a36847f800fccd", "cast_id": 4, "profile_path": "/7Wc58Opf4EDjHDotwjK2XLTFLqU.jpg", "order": 1}, {"name": "William Moseley", "character": "Peter Pevensie", "id": 5528, "credit_id": "52fe4240c3a36847f800fcd1", "cast_id": 5, "profile_path": "/zBJ00uNw4nK0gFetNfnVmbGC5ly.jpg", "order": 2}, {"name": "Anna Popplewell", "character": "Susan Pevensie", "id": 5529, "credit_id": "52fe4240c3a36847f800fcd5", "cast_id": 6, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 3}, {"name": "Tilda Swinton", "character": "White Witch", "id": 3063, "credit_id": "52fe4240c3a36847f800fcd9", "cast_id": 7, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 4}, {"name": "James McAvoy", "character": "Mr. Tumnus, the Faun", "id": 5530, "credit_id": "52fe4240c3a36847f800fcdd", "cast_id": 8, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "Professor Kirke", "id": 388, "credit_id": "52fe4240c3a36847f800fce1", "cast_id": 9, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Kiran Shah", "character": "Ginarrbrik", "id": 5531, "credit_id": "52fe4240c3a36847f800fce5", "cast_id": 10, "profile_path": "/oQer3lBnxD8gKFHoz7o7eJMF6od.jpg", "order": 7}, {"name": "James Cosmo", "character": "Father Christmas", "id": 2467, "credit_id": "52fe4240c3a36847f800fce9", "cast_id": 11, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 8}, {"name": "Judy McIntosh", "character": "Mrs. Pevensie", "id": 5532, "credit_id": "52fe4240c3a36847f800fced", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Elizabeth Hawthorne", "character": "Mrs. MacReady", "id": 5533, "credit_id": "52fe4240c3a36847f800fcf1", "cast_id": 13, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 10}, {"name": "Patrick Kake", "character": "Oreius", "id": 5534, "credit_id": "52fe4240c3a36847f800fcf5", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Rachael Henley", "character": "Older Lucy", "id": 5535, "credit_id": "52fe4240c3a36847f800fcf9", "cast_id": 15, "profile_path": "/3Fy90P4vrKYq3tFjcCgOVl54Yg4.jpg", "order": 12}, {"name": "Mark Wells", "character": "Older Edmund", "id": 5536, "credit_id": "52fe4240c3a36847f800fcfd", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Noah Huntley", "character": "Older Peter", "id": 2050, "credit_id": "52fe4240c3a36847f800fd01", "cast_id": 17, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 14}, {"name": "Sophie Winkleman", "character": "Older Susan", "id": 5537, "credit_id": "52fe4240c3a36847f800fd05", "cast_id": 18, "profile_path": "/zM4FzrMmVj1ncgAttaXaFo6If4D.jpg", "order": 15}, {"name": "Liam Neeson", "character": "Aslan", "id": 3896, "credit_id": "52fe4240c3a36847f800fd09", "cast_id": 19, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 16}, {"name": "Ray Winstone", "character": "Mr. Beaver", "id": 5538, "credit_id": "52fe4240c3a36847f800fd0d", "cast_id": 20, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 17}, {"name": "Dawn French", "character": "Mrs. Beaver", "id": 5539, "credit_id": "52fe4240c3a36847f800fd11", "cast_id": 21, "profile_path": "/z81mKzCqmLttRVpBBGwjSlATOK3.jpg", "order": 18}, {"name": "Rupert Everett", "character": "Fox", "id": 4757, "credit_id": "52fe4240c3a36847f800fd15", "cast_id": 22, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 19}, {"name": "Cameron Rhodes", "character": "Gryphon", "id": 5540, "credit_id": "52fe4240c3a36847f800fd19", "cast_id": 23, "profile_path": "/58diJ0mAP4EzwsVXumz0YqcfwcD.jpg", "order": 20}, {"name": "Philip Steuer", "character": "Philip the Horse", "id": 5541, "credit_id": "52fe4240c3a36847f800fd1d", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Sim Evan-Jones", "character": "Wolf", "id": 5542, "credit_id": "52fe4240c3a36847f800fd21", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Michael Madsen", "character": "Maugrim", "id": 147, "credit_id": "52fe4240c3a36847f800fd25", "cast_id": 26, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 23}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fcbf", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}], "vote_average": 6.4, "runtime": 143}, "414": {"poster_path": "/i5bHFFv41MBwVoboOuWqDnIH3Bu.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 336529144, "overview": "The Dark Knight of Gotham City confronts a dastardly duo: Two-Face and the Riddler. Formerly District Attorney Harvey Dent, Two-Face believes Batman caused the courtroom accident which left him disfigured on one side. And Edward Nygma, computer-genius and former employee of millionaire Bruce Wayne, is out to get the philanthropist; as The Riddler. Former circus acrobat Dick Grayson, his family killed by Two-Face, becomes Wayne's ward and Batman's new partner Robin.", "video": false, "id": 414, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Batman Forever", "tagline": "Courage now, truth always...", "vote_count": 458, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112462", "adult": false, "backdrop_path": "/bbaiw9VmrHXY3mhCDpj5XB2I5We.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1995-06-15", "popularity": 1.23466505021069, "original_title": "Batman Forever", "budget": 100000000, "cast": [{"name": "Val Kilmer", "character": "Batman", "id": 5576, "credit_id": "52fe4240c3a36847f800fdf5", "cast_id": 6, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Two-Face/Harvey Dent", "id": 2176, "credit_id": "52fe4240c3a36847f800fdf9", "cast_id": 7, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Jim Carrey", "character": "Riddler/Edward Nygma", "id": 206, "credit_id": "52fe4241c3a36847f800fdfd", "cast_id": 8, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Dr. Chase Meridian", "id": 2227, "credit_id": "52fe4241c3a36847f800fe01", "cast_id": 9, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Chris O'Donnell", "character": "Robin/Dick Grayson", "id": 5577, "credit_id": "52fe4241c3a36847f800fe05", "cast_id": 10, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 2}, {"name": "Michael Gough", "character": "Alfred Pennyworth", "id": 3796, "credit_id": "52fe4241c3a36847f800fe09", "cast_id": 11, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 3}, {"name": "Pat Hingle", "character": "Commissioner Gordon", "id": 3798, "credit_id": "52fe4241c3a36847f800fe0d", "cast_id": 12, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 4}, {"name": "Drew Barrymore", "character": "Sugar", "id": 69597, "credit_id": "52fe4241c3a36847f800fe11", "cast_id": 13, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 5}, {"name": "Debi Mazar", "character": "Spice", "id": 5578, "credit_id": "52fe4241c3a36847f800fe15", "cast_id": 14, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 6}, {"name": "Elizabeth Sanders", "character": "Gossip Gerty", "id": 5579, "credit_id": "52fe4241c3a36847f800fe19", "cast_id": 15, "profile_path": "/onWcLrux1SlRuvRhaAtvoVvSpv.jpg", "order": 7}, {"name": "Rene Auberjonois", "character": "Dr. Burton", "id": 9807, "credit_id": "52fe4241c3a36847f800fe4d", "cast_id": 24, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 8}, {"name": "Joe Grifasi", "character": "Bank Guard", "id": 4887, "credit_id": "52fe4241c3a36847f800fe51", "cast_id": 25, "profile_path": "/m3phT21garD58hEADUTl9RWWNrL.jpg", "order": 9}, {"name": "Philip Moon", "character": "Male Newscaster", "id": 1235, "credit_id": "52fe4241c3a36847f800fe55", "cast_id": 26, "profile_path": "/7IB8OtD4L3k3hxzrPeBSpucODyI.jpg", "order": 10}, {"name": "Jessica Tuck", "character": "Female Newscaster", "id": 156689, "credit_id": "52fe4241c3a36847f800fe59", "cast_id": 27, "profile_path": "/smsznskzjz5c6SbjEFW6kENGhho.jpg", "order": 11}, {"name": "Dennis Paladino", "character": "Crime Boss Moroni", "id": 162556, "credit_id": "52fe4241c3a36847f800fe5d", "cast_id": 28, "profile_path": "/b4KxhVh7ViqAKwzvJiyZlI2J8kl.jpg", "order": 12}, {"name": "Don 'The Dragon' Wilson", "character": "Gang Leader", "id": 106745, "credit_id": "53724abd0e0a2672f40020e7", "cast_id": 30, "profile_path": "/vBSGab4d62EVmQuMBYy3XGyN5hW.jpg", "order": 13}, {"name": "Bob Zmuda", "character": "", "id": 25336, "credit_id": "53724ad10e0a2672fb00211c", "cast_id": 31, "profile_path": "/jXC1XpcwRxYdNna5cKNeCZkqaVg.jpg", "order": 14}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4240c3a36847f800fdd9", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.2, "runtime": 121}, "415": {"poster_path": "/79AYCcxw3kSKbhGpx1LiqaCAbwo.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 238207122, "overview": "Along with crime-fighting partner Robin and new recruit Batgirl, Batman battles the dual threat of frosty genius Mr. Freeze and homicidal horticulturalist Poison Ivy. Freeze plans to put Gotham City on ice, while Ivy tries to drive a wedge between the dynamic duo.", "video": false, "id": 415, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Batman & Robin", "tagline": "Strength. Courage. Honor. And loyalty.", "vote_count": 384, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cLnP8V27ZX44QDz4ZsgHTUAg7f6.jpg", "poster_path": "/adQxUvQW8HXNsvMG5aj71pHh9T.jpg", "id": 120794, "name": "Batman Collection (Original Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118688", "adult": false, "backdrop_path": "/5ghcieKqH3YnDpAt261Pb7daUro.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1997-06-20", "popularity": 1.26782110361612, "original_title": "Batman & Robin", "budget": 125000000, "cast": [{"name": "George Clooney", "character": "Batman", "id": 1461, "credit_id": "52fe4241c3a36847f800feaf", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Michael Gough", "character": "Alfred Pennyworth", "id": 3796, "credit_id": "52fe4241c3a36847f800feb3", "cast_id": 5, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 1}, {"name": "Pat Hingle", "character": "Commissioner James Gordon", "id": 3798, "credit_id": "52fe4241c3a36847f800feb7", "cast_id": 6, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 2}, {"name": "Elle Macpherson", "character": "Julie Madison", "id": 5590, "credit_id": "52fe4241c3a36847f800febf", "cast_id": 8, "profile_path": "/tSweboUrdsJo4nIRIJx2PEvkuVZ.jpg", "order": 3}, {"name": "John Glover", "character": "Dr. Jason Woodrue", "id": 5589, "credit_id": "52fe4241c3a36847f800febb", "cast_id": 7, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 4}, {"name": "Vivica A. Fox", "character": "Ms. B. Haven", "id": 2535, "credit_id": "52fe4241c3a36847f800fec3", "cast_id": 9, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 5}, {"name": "Arnold Schwarzenegger", "character": "Dr. Victor Fries / Freeze", "id": 1100, "credit_id": "52fe4241c3a36847f800fef1", "cast_id": 17, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 6}, {"name": "Uma Thurman", "character": "Dr. Pamela Isley / Poison Ivy", "id": 139, "credit_id": "52fe4241c3a36847f800fef5", "cast_id": 20, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 7}, {"name": "Alicia Silverstone", "character": "Barbara Wilson / Batgirl", "id": 5588, "credit_id": "52fe4241c3a36847f800fef9", "cast_id": 22, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 8}, {"name": "Chris O'Donnell", "character": "Dick Grayson / Robin", "id": 5577, "credit_id": "52fe4241c3a36847f800fefd", "cast_id": 24, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 9}, {"name": "Robert Swenson", "character": "Bane", "id": 66813, "credit_id": "52fe4241c3a36847f800ff01", "cast_id": 25, "profile_path": "/cNuq7a8nCxRw9pNvQVVQoONkNsw.jpg", "order": 10}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f800fe9f", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 4.5, "runtime": 125}, "10992": {"poster_path": "/1RLlzNwnrpMMNFt71OVFAnJp6ww.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93375151, "overview": "When a professor develops a vaccine that eliminates human allergies to dogs, he unwittingly upsets the fragile balance of power between cats and dogs and touches off an epic battle for pet supremacy. The fur flies as the feline faction, led by Mr. Tinkles, squares off against wide-eyed puppy Lou and his canine cohorts.", "video": false, "id": 10992, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cats & Dogs", "tagline": "Things Are Gonna Get Hairy!", "vote_count": 72, "homepage": "http://catsanddogsmovie.warnerbros.com/cmp/main.html", "belongs_to_collection": {"backdrop_path": "/bYM1XFABSpy0QtAEzr7dks8QRWY.jpg", "poster_path": "/mm56m8wd2BBm94FwlelT2fNl6n1.jpg", "id": 87014, "name": "Cats & Dogs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0239395", "adult": false, "backdrop_path": "/2GoKwjA0K7b3BnsvBXwm68PkaJk.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Mad Chance", "id": 1757}, {"name": "Zide-Perry Productions", "id": 3169}, {"name": "BenderSpink", "id": 6363}], "release_date": "2001-07-04", "popularity": 1.37216222761985, "original_title": "Cats & Dogs", "budget": 60000000, "cast": [{"name": "Jeff Goldblum", "character": "Professor Brody", "id": 4785, "credit_id": "52fe43de9251416c7502142d", "cast_id": 1, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 0}, {"name": "Elizabeth Perkins", "character": "Mrs. Brody", "id": 20, "credit_id": "52fe43de9251416c75021431", "cast_id": 2, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 1}, {"name": "Alexander Pollock", "character": "Scotty Brody", "id": 67817, "credit_id": "52fe43de9251416c75021435", "cast_id": 3, "profile_path": "/6GPVGBkPidrKFsardUj51K39SGx.jpg", "order": 2}, {"name": "Miriam Margolyes", "character": "Sophie the Castle Maid", "id": 6199, "credit_id": "52fe43de9251416c75021439", "cast_id": 4, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 3}], "directors": [{"name": "Lawrence Guterman", "department": "Directing", "job": "Director", "credit_id": "52fe43de9251416c7502143f", "profile_path": "/txLsjc2oiqHzOmjdm4MG637SCdf.jpg", "id": 64191}], "vote_average": 4.9, "runtime": 87}, "205220": {"poster_path": "/6BTXHupSPkrwsoz4Br6qwwSVmhj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 100129872, "overview": "A woman searches for her adult son, who was taken away from her decades ago when she was forced to live in a convent.", "video": false, "id": 205220, "genres": [{"id": 18, "name": "Drama"}], "title": "Philomena", "tagline": "These two unlikely companions are on a journey to find her long lost son.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2431286", "adult": false, "backdrop_path": "/1RTiQXeHoEMXkZNWaB8W5uaEZ2.jpg", "production_companies": [{"name": "Baby Cow Productions", "id": 1219}, {"name": "BBC Films", "id": 288}, {"name": "Magnolia Mae Films", "id": 18188}, {"name": "Path\u00e9", "id": 7981}, {"name": "Yucaipa Films", "id": 12005}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2013-11-27", "popularity": 0.755905361187884, "original_title": "Philomena", "budget": 12000000, "cast": [{"name": "Judi Dench", "character": "Philomena Lee", "id": 5309, "credit_id": "52fe4d04c3a368484e1d27b3", "cast_id": 14, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 0}, {"name": "Steve Coogan", "character": "Martin Sixsmith", "id": 4581, "credit_id": "52fe4d04c3a368484e1d27b7", "cast_id": 15, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 1}, {"name": "Michelle Fairley", "character": "Sally Mitchell", "id": 20057, "credit_id": "52fe4d04c3a368484e1d27bb", "cast_id": 16, "profile_path": "/u7EDh4RuXnK5PykiNAT3oly6sf9.jpg", "order": 2}, {"name": "Mare Winningham", "character": "Mary", "id": 51544, "credit_id": "52fe4d04c3a368484e1d27bf", "cast_id": 17, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 3}, {"name": "Anna Maxwell Martin", "character": "Jane", "id": 29236, "credit_id": "52fe4d04c3a368484e1d27c3", "cast_id": 18, "profile_path": "/gUJuwFUTNaj7U2mC3DBe8DaYuuX.jpg", "order": 4}, {"name": "Simone Lahbib", "character": "Kate Sixsmith", "id": 218269, "credit_id": "52fe4d04c3a368484e1d27cb", "cast_id": 20, "profile_path": "/wXXe75Gu7IwMMT7hyntXGSMloLj.jpg", "order": 6}, {"name": "Sophie Kennedy Clark", "character": "Young Philomena", "id": 1151957, "credit_id": "52fe4d04c3a368484e1d27cf", "cast_id": 21, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 7}, {"name": "Charles Edwards", "character": "David", "id": 281527, "credit_id": "52fe4d04c3a368484e1d27d3", "cast_id": 22, "profile_path": "/qcAysQnmu7Pi96IV85u4YjgqzkQ.jpg", "order": 8}, {"name": "Sean Mahon", "character": "Michael Hess", "id": 117165, "credit_id": "52fe4d04c3a368484e1d27d7", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Amy McAllister", "character": "Sister Anunciata", "id": 1277228, "credit_id": "52fe4d04c3a368484e1d27db", "cast_id": 25, "profile_path": "/6HGyFZSC5jl1Zkvu1cmqLZh1kDW.jpg", "order": 10}, {"name": "Cathy Belton", "character": "Sister Claire", "id": 63359, "credit_id": "52fe4d04c3a368484e1d27df", "cast_id": 26, "profile_path": "/qgPJ7zGv6rOwE4Bf1um0RyAs72P.jpg", "order": 11}, {"name": "Kate Fleetwood", "character": "Young Sister Hildegarde", "id": 178630, "credit_id": "52fe4d04c3a368484e1d27e3", "cast_id": 27, "profile_path": "/z3nIZxpSzdq0R11uABD5gmvCuob.jpg", "order": 12}, {"name": "Peter Hermann", "character": "Pete Olsson", "id": 50117, "credit_id": "52fe4d04c3a368484e1d27e7", "cast_id": 28, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 13}, {"name": "Charlie Murphy", "character": "Kathleen", "id": 1356630, "credit_id": "53fa4ab3c3a3687358003548", "cast_id": 38, "profile_path": "/m7Tq2K3iNPGJDyLVlI8PjDgkzYC.jpg", "order": 14}], "directors": [{"name": "Stephen Frears", "department": "Directing", "job": "Director", "credit_id": "52fe4d04c3a368484e1d2767", "profile_path": "/n95XJkCqkKkWqc2swPsqXYpxxaQ.jpg", "id": 3224}], "vote_average": 7.6, "runtime": 98}, "421": {"poster_path": "/1zRedSx2iLXFPVN6MdiQqTjerpn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34808403, "overview": "Wes Anderson\u2019s incisive quirky comedy build up stars complex characters like in \u2018The Royal Tenenbaums\u2019 with Bill Murray on in the leading role. An ocean adventure documentary film maker Zissou is put in all imaginable life situations and a tough life crisis as he attempts to make a new film about capturing the creature that caused him pain.", "video": false, "id": 421, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Life Aquatic With Steve Zissou", "tagline": "The deeper you go, the weirder life gets.", "vote_count": 201, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "tl", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0362270", "adult": false, "backdrop_path": "/x2EutNySnFRVrjOXsnGyj3HHvf7.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2004-12-10", "popularity": 1.13632285180385, "original_title": "The Life Aquatic With Steve Zissou", "budget": 50000000, "cast": [{"name": "Bill Murray", "character": "Steve Zissou", "id": 1532, "credit_id": "52fe4241c3a36847f8010025", "cast_id": 1, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Anjelica Huston", "character": "Eleanor Zissou", "id": 5657, "credit_id": "52fe4241c3a36847f801003b", "cast_id": 5, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 1}, {"name": "Cate Blanchett", "character": "Jane Winslett-Richardson", "id": 112, "credit_id": "52fe4241c3a36847f801003f", "cast_id": 6, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Klaus Daimler", "id": 5293, "credit_id": "52fe4241c3a36847f8010043", "cast_id": 7, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Ned Plimpton", "id": 887, "credit_id": "52fe4241c3a36847f8010047", "cast_id": 8, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Jeff Goldblum", "character": "Alistair Hennessey", "id": 4785, "credit_id": "52fe4241c3a36847f801004b", "cast_id": 9, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 5}, {"name": "Michael Gambon", "character": "Oseary Drakoulias", "id": 5658, "credit_id": "52fe4241c3a36847f801004f", "cast_id": 10, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Noah Taylor", "character": "Vladimir Wolodarsky", "id": 1284, "credit_id": "52fe4241c3a36847f8010053", "cast_id": 11, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 7}, {"name": "Bud Cort", "character": "Bill Ubell", "id": 4971, "credit_id": "52fe4241c3a36847f8010057", "cast_id": 12, "profile_path": "/kI7N8eeX8TBWBGFQCZWfKZGbrZ6.jpg", "order": 8}, {"name": "Seu Jorge", "character": "Pel\u00e9 dos Santos", "id": 5659, "credit_id": "52fe4241c3a36847f801005b", "cast_id": 13, "profile_path": "/ggUYDS85gpTLAXaDzznLw2mpTfS.jpg", "order": 9}, {"name": "Matthew Gray Gubler", "character": "Intern 1", "id": 5661, "credit_id": "52fe4241c3a36847f801005f", "cast_id": 15, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 10}, {"name": "Antonio Monda", "character": "Festival Director", "id": 5662, "credit_id": "52fe4241c3a36847f8010063", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Isabella Blow", "character": "Antonia Cook", "id": 5663, "credit_id": "52fe4241c3a36847f8010067", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Seymour Cassel", "character": "Esteban", "id": 5950, "credit_id": "52fe4241c3a36847f80100c5", "cast_id": 33, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 13}, {"name": "Rob Cohen", "character": "Anne-Marie Sakowitz", "id": 18878, "credit_id": "52fe4241c3a36847f80100c9", "cast_id": 34, "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "order": 14}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f801002b", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.1, "runtime": 119}, "422": {"poster_path": "/5pQlc8dp5dXzWg1yM70DZrsDpOl.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "With 8 \u00bd Frederico Fellini leaves a self-portrait where dreams and reality are a mix. With help from a most excellent cast and unique scenery this self reflecting film is one of his master works.", "video": false, "id": 422, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "8\u00bd", "tagline": "A picture that goes beyond what men think about - because no man ever thought about it in quite this way!", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0056801", "adult": false, "backdrop_path": "/4v3TyHFbKY42g9bFiEZXUIQHpAR.jpg", "production_companies": [{"name": "Cineriz", "id": 9387}, {"name": "Francinex", "id": 10882}], "release_date": "1963-02-15", "popularity": 0.796498709677972, "original_title": "8\u00bd", "budget": 0, "cast": [{"name": "Marcello Mastroianni", "character": "Guido Anselmi", "id": 5676, "credit_id": "52fe4241c3a36847f80100f7", "cast_id": 1, "profile_path": "/lxlTGslplgT3ao3J2whahc7fDZJ.jpg", "order": 0}, {"name": "Claudia Cardinale", "character": "Claudia", "id": 4959, "credit_id": "52fe4241c3a36847f80100fb", "cast_id": 2, "profile_path": "/tV3oboOm0Iix0AEtQKGPnPE2hbF.jpg", "order": 1}, {"name": "Anouk Aim\u00e9e", "character": "Luisa Anselmi", "id": 5682, "credit_id": "52fe4241c3a36847f801013b", "cast_id": 13, "profile_path": "/vLGlUZvzffKEJ2zB943Qx0PWgPD.jpg", "order": 2}, {"name": "Sandra Milo", "character": "Carla", "id": 5683, "credit_id": "52fe4241c3a36847f801013f", "cast_id": 14, "profile_path": "/xMsgxhrNX27Hot5FJ5aaqvGYTKU.jpg", "order": 3}, {"name": "Rossella Falk", "character": "Rossella", "id": 5684, "credit_id": "52fe4241c3a36847f8010143", "cast_id": 15, "profile_path": "/acyIHzPCYELbC9coAXYzgsoNRYN.jpg", "order": 4}, {"name": "Barbara Steele", "character": "Gloria Morin", "id": 5685, "credit_id": "52fe4241c3a36847f8010147", "cast_id": 16, "profile_path": "/jrxCN9GxreD5W3Xv0OGofkidNm3.jpg", "order": 5}, {"name": "Madeleine Lebeau", "character": "Madeleine, l'attrice francese", "id": 4116, "credit_id": "52fe4241c3a36847f801014b", "cast_id": 17, "profile_path": "/tYUnGiQEBJLG1OfeqHvdcANgm2I.jpg", "order": 6}, {"name": "Caterina Boratto", "character": "La signora misteriosa", "id": 5686, "credit_id": "52fe4241c3a36847f801014f", "cast_id": 18, "profile_path": "/1Wh2iwtM4cnZcvWx1WERc5plA8M.jpg", "order": 7}, {"name": "Eddra Gale", "character": "La Saraghina", "id": 5687, "credit_id": "52fe4241c3a36847f8010153", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Guido Alberti", "character": "Pace, il produttore", "id": 5688, "credit_id": "52fe4241c3a36847f8010157", "cast_id": 20, "profile_path": "/nJ1noc5YGOMdrfSaSha5NnvCMbF.jpg", "order": 9}], "directors": [{"name": "Federico Fellini", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f8010101", "profile_path": "/7t3sWBVdenUbZnoFAPRpBAGngQ7.jpg", "id": 4415}], "vote_average": 8.1, "runtime": 138}, "423": {"poster_path": "/iunmxWkOi7Vk17Ob3G2HwwjgHsr.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "PL", "name": "Poland"}], "revenue": 120072577, "overview": "The Pianist is a film adapted from the biography of Wladyslaw Szpilman. A Jewish-Polish pianist who during the second world war lived and hid miraculously in Warsaw after having gone through a terrible tragedy. A film from Roman Polanski.", "video": false, "id": 423, "genres": [{"id": 18, "name": "Drama"}], "title": "The Pianist", "tagline": "Music was his passion. Survival was his masterpiece.", "vote_count": 384, "homepage": "http://www.thepianistmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253474", "adult": false, "backdrop_path": "/xUR95VFV1UTyzS1C8Lj06hi2n2M.jpg", "production_companies": [{"name": "Mainstream S.A.", "id": 271}, {"name": "R.P. Productions", "id": 355}, {"name": "Heritage Films", "id": 260}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Runteam", "id": 31087}, {"name": "Canal+", "id": 5358}, {"name": "StudioCanal", "id": 694}, {"name": "Bac Films", "id": 208}, {"name": "Canal+ Polska", "id": 6476}, {"name": "Telewizja Polska (TVP)", "id": 19150}, {"name": "Agencja Produkcji Filmowej", "id": 266}, {"name": "Beverly Detroit", "id": 267}, {"name": "Interscope Communications", "id": 10201}], "release_date": "2002-09-24", "popularity": 2.77777025427314, "original_title": "The Pianist", "budget": 35000000, "cast": [{"name": "Adrien Brody", "character": "Wladyslaw Szpilman", "id": 3490, "credit_id": "52fe4241c3a36847f80101af", "cast_id": 8, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Thomas Kretschmann", "character": "Captain Wilm Hosenfeld", "id": 3491, "credit_id": "52fe4241c3a36847f80101b3", "cast_id": 9, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 1}, {"name": "Frank Finlay", "character": "Father", "id": 6637, "credit_id": "52fe4241c3a36847f80101b7", "cast_id": 10, "profile_path": "/esHCgg80H7gpUSClYclyHsksHij.jpg", "order": 2}, {"name": "Maureen Lipman", "character": "Mother", "id": 6638, "credit_id": "52fe4241c3a36847f80101bb", "cast_id": 11, "profile_path": "/cbZwHAkUZbZGr8HZDhWv1vNMlLC.jpg", "order": 3}, {"name": "Emilia Fox", "character": "Dorota", "id": 6639, "credit_id": "52fe4241c3a36847f80101bf", "cast_id": 12, "profile_path": "/xbOxrak2VaQTVX2pNdqRG3NZvK2.jpg", "order": 4}, {"name": "Ed Stoppard", "character": "Henryk", "id": 6640, "credit_id": "52fe4241c3a36847f80101c3", "cast_id": 13, "profile_path": "/rh4sgErzsFSvTIWT7GmhneZmV0Z.jpg", "order": 5}, {"name": "Julia Rayner", "character": "Regina", "id": 6641, "credit_id": "52fe4241c3a36847f80101c7", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Jessica Kate Meyer", "character": "Halina", "id": 6642, "credit_id": "52fe4241c3a36847f80101cb", "cast_id": 15, "profile_path": "/mUBmiVxXuuWqlqShe4TfPOixgZm.jpg", "order": 7}, {"name": "Micha\u0142 \u017bebrowski", "character": "Jurek", "id": 6643, "credit_id": "52fe4241c3a36847f80101cf", "cast_id": 16, "profile_path": "/ewMQFdAByOfQsgHIB5mEBVyOxxL.jpg", "order": 8}, {"name": "Wanja Mues", "character": "SS Slapping Father", "id": 6644, "credit_id": "52fe4241c3a36847f80101d3", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Richard Ridings", "character": "Mr. Lipa", "id": 6645, "credit_id": "52fe4241c3a36847f80101d7", "cast_id": 18, "profile_path": "/zzznosGBL8uEBUwqZHKcKsVZzWe.jpg", "order": 10}, {"name": "Nomi Sharron", "character": "Feather Woman", "id": 6646, "credit_id": "52fe4241c3a36847f80101db", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Detlev von Wangenheim", "character": "SS Officer", "id": 6647, "credit_id": "52fe4241c3a36847f80101df", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Krzysztof Pieczy\u0144ski", "character": "Marek G\u0119bczy\u0144ski", "id": 24524, "credit_id": "52fe4241c3a36847f80101ef", "cast_id": 23, "profile_path": "/9kZ3mwDkaOqjNlF9KPkvAXfDHSJ.jpg", "order": 13}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f801018d", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 7.7, "runtime": 150}, "424": {"poster_path": "/yPisjyLweCl1tbgwgtzBCNCBle.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 321265768, "overview": "Told from the perspective of businessman Oskar Schindler who saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory. Schindler\u2019s List is based on a true story, illustrated in black and white and controversially filmed in many original locations.", "video": false, "id": 424, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Schindler's List", "tagline": "Whoever saves one life, saves the world entire.", "vote_count": 1359, "homepage": "http://www.schindlerslist.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108052", "adult": false, "backdrop_path": "/rIpSszng8P0DL0TimSzZbpfnvh1.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1993-11-29", "popularity": 1.93662411953173, "original_title": "Schindler's List", "budget": 22000000, "cast": [{"name": "Liam Neeson", "character": "Oskar Schindler", "id": 3896, "credit_id": "52fe4242c3a36847f8010299", "cast_id": 14, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Itzhak Stern", "id": 2282, "credit_id": "52fe4242c3a36847f801029d", "cast_id": 15, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Amon Goeth", "id": 5469, "credit_id": "52fe4242c3a36847f80102a1", "cast_id": 16, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Caroline Goodall", "character": "Emilie Schindler", "id": 6692, "credit_id": "52fe4242c3a36847f80102a5", "cast_id": 17, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 3}, {"name": "Jonathan Sagall", "character": "Poldek Pfefferberg", "id": 6693, "credit_id": "52fe4242c3a36847f80102a9", "cast_id": 18, "profile_path": "/5OzTeSMXIxYmlelx0Pon2bEKVzM.jpg", "order": 4}, {"name": "Embeth Davidtz", "character": "Helen Hirsch", "id": 6368, "credit_id": "52fe4242c3a36847f80102ad", "cast_id": 19, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 5}, {"name": "Malgoscha Gebel", "character": "Victoria Klonowska", "id": 6694, "credit_id": "52fe4242c3a36847f80102b1", "cast_id": 20, "profile_path": "/lzlC2HAuPyKoVZ6drxv8K5UYHvV.jpg", "order": 6}, {"name": "Shmuel Levy", "character": "Wilek Chilowicz", "id": 6695, "credit_id": "52fe4242c3a36847f80102b5", "cast_id": 21, "profile_path": "/pbtXOAVQBTRZAxaiEYWSqGD9CNz.jpg", "order": 7}, {"name": "Mark Ivanir", "character": "Marcel Goldberg", "id": 6696, "credit_id": "52fe4242c3a36847f80102b9", "cast_id": 22, "profile_path": "/fFfosXJqRNBMU3wg2WrO3bCnom7.jpg", "order": 8}, {"name": "B\u00e9atrice Macola", "character": "Ingrid", "id": 6697, "credit_id": "52fe4242c3a36847f80102bd", "cast_id": 23, "profile_path": "/uEwED6trd6JTsAFREjA2aiahtZQ.jpg", "order": 9}, {"name": "Andrzej Seweryn", "character": "Julian Scherner", "id": 2829, "credit_id": "52fe4242c3a36847f80102c1", "cast_id": 24, "profile_path": "/aSFdg0xq0qZaFnbuAAg9iGr021d.jpg", "order": 10}, {"name": "Friedrich von Thun", "character": "Rolf Czurda", "id": 6698, "credit_id": "52fe4242c3a36847f80102c5", "cast_id": 25, "profile_path": "/30nXwt4SJn2tNNtuebP0g2ct9Xu.jpg", "order": 11}, {"name": "Krzysztof Luft", "character": "Herman Toffel", "id": 6699, "credit_id": "52fe4242c3a36847f80102c9", "cast_id": 26, "profile_path": "/9xwxhiyUs5nDNXfWVxYPwhLTDuu.jpg", "order": 12}, {"name": "Harry Nehring", "character": "Leo John", "id": 6700, "credit_id": "52fe4242c3a36847f80102cd", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Norbert Weisser", "character": "Albert Hujar", "id": 6701, "credit_id": "52fe4242c3a36847f80102d1", "cast_id": 28, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 14}, {"name": "Adi Nitzan", "character": "Mila Pfefferberg", "id": 6702, "credit_id": "52fe4242c3a36847f80102d5", "cast_id": 29, "profile_path": "/fjKisyT8h3N71ALA9uJQE8nLajK.jpg", "order": 15}, {"name": "Michael Schneider", "character": "Juda Dresner", "id": 6703, "credit_id": "52fe4242c3a36847f80102d9", "cast_id": 30, "profile_path": "/137g7xVsVD5S54TblICj9BOtDBo.jpg", "order": 16}, {"name": "Miri Fabian", "character": "Chaja Dresner", "id": 6704, "credit_id": "52fe4242c3a36847f80102dd", "cast_id": 31, "profile_path": "/sABX40rZhFBxsOUEhRc4Qrc8leo.jpg", "order": 17}, {"name": "Anna Mucha", "character": "Danka Dresner", "id": 6705, "credit_id": "52fe4242c3a36847f80102e1", "cast_id": 32, "profile_path": "/hY977SC8Rus5TuLHsBmK6h9B3O7.jpg", "order": 18}, {"name": "Albert Misak", "character": "Mordecai Wulkan", "id": 6706, "credit_id": "52fe4242c3a36847f80102e5", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Aldona Grochal", "character": "Mrs. Nussbaum", "id": 6708, "credit_id": "52fe4242c3a36847f80102ed", "cast_id": 35, "profile_path": "/xZdsCB88feOfHzr0wiziMJlV4De.jpg", "order": 21}, {"name": "Jacek W\u00f3jcicki", "character": "Henry Rosner", "id": 6709, "credit_id": "52fe4242c3a36847f80102f1", "cast_id": 36, "profile_path": "/9OoR4MIdODwRKixfn0AZVmRmc49.jpg", "order": 22}, {"name": "Beata Paluch", "character": "Manci Rosner", "id": 6710, "credit_id": "52fe4242c3a36847f80102f5", "cast_id": 37, "profile_path": "/wmjumiiVDrpEvH3xHGG260dYhRX.jpg", "order": 23}, {"name": "Piotr Polk", "character": "Leo Rosner", "id": 6711, "credit_id": "52fe4242c3a36847f80102f9", "cast_id": 38, "profile_path": "/eer1pzfxy05hp2S59n2UUpyZYyr.jpg", "order": 24}, {"name": "Ezra Dagan", "character": "Rabbi Menasha Lewartow", "id": 6712, "credit_id": "52fe4242c3a36847f80102fd", "cast_id": 39, "profile_path": "/mFVXAyWB1EZhYaYPB1wJccbLnu3.jpg", "order": 25}, {"name": "Uri Avrahami", "character": "Chaim Nowak", "id": 1317875, "credit_id": "536cb024c3a368122000b20c", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Elina L\u00f6wensohn", "character": "Diana Reiter", "id": 17257, "credit_id": "536cc0dac3a36839c10017e1", "cast_id": 48, "profile_path": "/enJyuf5k0QTOiMEBFHf8dePZUTV.jpg", "order": 27}, {"name": "Michael Gordon", "character": "Mr.Nussbaum", "id": 123401, "credit_id": "549fff73c3a3680b27009099", "cast_id": 60, "profile_path": "/guAGvZgb2fqgb6js0y26zFOyEWd.jpg", "order": 28}, {"name": "Magdalena Komornicka", "character": "Goeth's Girl", "id": 1448565, "credit_id": "551cb9c99251416a1e0015df", "cast_id": 61, "profile_path": null, "order": 29}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4241c3a36847f801024d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.8, "runtime": 195}, "425": {"poster_path": "/zpaQwR0YViPd83bx1e559QyZ35i.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 383257136, "overview": "With the impending ice age almost upon them, a mismatched trio of prehistoric critters -- Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth -- find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends. But when enemies attack, their quest takes on far nobler aims..", "video": false, "id": 425, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age", "tagline": "They came. They thawed. They conquered.", "vote_count": 1296, "homepage": "http://www.iceagemovie.com/original/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0268380", "adult": false, "backdrop_path": "/oDqbewoFuIEWA7UWurole6MzDGn.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 26162}], "release_date": "2002-03-15", "popularity": 2.01724089489978, "original_title": "Ice Age", "budget": 59000000, "cast": [{"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe4242c3a36847f801036f", "cast_id": 11, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe4242c3a36847f8010373", "cast_id": 12, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe4242c3a36847f8010377", "cast_id": 13, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Goran Vi\u0161nji\u0107", "character": "Soto (voice)", "id": 5725, "credit_id": "52fe4242c3a36847f801037b", "cast_id": 14, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 3}, {"name": "Jack Black", "character": "Zeke (voice)", "id": 70851, "credit_id": "52fe4242c3a36847f801037f", "cast_id": 15, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 4}, {"name": "Cedric the Entertainer", "character": "Carl (voice)", "id": 5726, "credit_id": "52fe4242c3a36847f8010383", "cast_id": 16, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 5}, {"name": "Stephen Root", "character": "Rhino / Start (voice)", "id": 17401, "credit_id": "52fe4242c3a36847f8010387", "cast_id": 17, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Saber-Toothed Tiger (voice)", "id": 5727, "credit_id": "52fe4242c3a36847f801038b", "cast_id": 18, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Alan Tudyk", "character": "Lenny / Oscar / Dab (voice)", "id": 21088, "credit_id": "52fe4242c3a36847f801038f", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 8}, {"name": "Lorri Bagley", "character": "Jennifer (voice)", "id": 60019, "credit_id": "52fe4242c3a36847f8010393", "cast_id": 20, "profile_path": "/2tLdetmNFCt7PC969FlLXhzIU5A.jpg", "order": 9}, {"name": "Jane Krakowski", "character": "Rachel (voice)", "id": 13636, "credit_id": "52fe4242c3a36847f8010397", "cast_id": 21, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 10}, {"name": "Peter Ackerman", "character": "Dodo / Macrauchenia (voice)", "id": 5717, "credit_id": "5516446ac3a3683489000acb", "cast_id": 22, "profile_path": "/zlWcU7pKd9904zWe2207Xu3sBrn.jpg", "order": 11}, {"name": "P.J. Benjamin", "character": "Dodo (voice)", "id": 1446460, "credit_id": "551644c7c3a368348f0009d0", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Josh Hamilton", "character": "Dodo / Scrat (voice)", "id": 52419, "credit_id": "551645239251413eb2000afc", "cast_id": 25, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 14}, {"name": "Chris Wedge", "character": "Glyptodon (voice)", "id": 5713, "credit_id": "55164558c3a368347f000aca", "cast_id": 26, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 15}, {"name": "Denny Dillon", "character": "Glyptodont (voice)", "id": 59695, "credit_id": "551645809251413eb5000ad9", "cast_id": 27, "profile_path": "/rc67RDrAKtN0qWBkB2AzXAxztHr.jpg", "order": 16}, {"name": "Mitzi McCall", "character": "Baby Moeritherium (voice)", "id": 102794, "credit_id": "551645df9251414ec9000413", "cast_id": 28, "profile_path": "/bt7eQYLai0ForMF8AXGoo1FnX36.jpg", "order": 17}, {"name": "Dann Fink", "character": "Dodo (voice) (uncredited)", "id": 1446462, "credit_id": "551645fd9251413eb5000ae0", "cast_id": 29, "profile_path": null, "order": 18}], "directors": [{"name": "Chris Wedge", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f8010335", "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "id": 5713}, {"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f801033b", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.7, "runtime": 81}, "426": {"poster_path": "/obhM86qyv8RsE69XSMTtT9FdE0b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7311013, "overview": "A retired San Francisco detective suffering from acrophobia investigates the strange activities of an old friend's wife, all the while becoming dangerously obsessed with her.", "video": false, "id": 426, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Vertigo", "tagline": "Alfred Hitchcock engulfs you in a whirlpool of terror and tension!", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0052357", "adult": false, "backdrop_path": "/idbDJjoTQxLejUUkDJ0FNEim6FB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Alfred J. Hitchcock Productions", "id": 10715}], "release_date": "1958-05-28", "popularity": 1.12061529416277, "original_title": "Vertigo", "budget": 2479000, "cast": [{"name": "James Stewart", "character": "Det. John 'Scottie' Ferguson", "id": 854, "credit_id": "52fe4242c3a36847f8010403", "cast_id": 10, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "Kim Novak", "character": "Madeleine Elster/Judy Barton", "id": 5729, "credit_id": "52fe4242c3a36847f8010407", "cast_id": 11, "profile_path": "/dn2kQpgdMXPNprR2OYHCMCCFNns.jpg", "order": 1}, {"name": "Barbara Bel Geddes", "character": "Marjorie 'Midge' Wood", "id": 5730, "credit_id": "52fe4242c3a36847f801040b", "cast_id": 12, "profile_path": "/jGWjjtFiOZL1cmmMeeX8YIBwGzE.jpg", "order": 2}, {"name": "Tom Helmore", "character": "Gavin Elster", "id": 5731, "credit_id": "52fe4242c3a36847f801040f", "cast_id": 13, "profile_path": "/u9F8kGTLSHoTuQzSW23u8FqyAqq.jpg", "order": 3}, {"name": "Henry Jones", "character": "Coroner", "id": 5732, "credit_id": "52fe4242c3a36847f8010413", "cast_id": 14, "profile_path": "/hOO3CG2qUq6wvM4BkjtJ05kIU1C.jpg", "order": 4}, {"name": "Raymond Bailey", "character": "Scottie's doctor", "id": 5737, "credit_id": "52fe4242c3a36847f801042f", "cast_id": 19, "profile_path": "/f27gMhRJhKdC99Ti2cloU7P5fLs.jpg", "order": 5}, {"name": "Ellen Corby", "character": "Manager of McKittrick Hotel", "id": 5738, "credit_id": "52fe4242c3a36847f8010433", "cast_id": 20, "profile_path": "/sgVSpnL4dJ8d0Y273lonNM4GuHK.jpg", "order": 6}, {"name": "Konstantin Shayne", "character": "Pop Leibel", "id": 5739, "credit_id": "52fe4242c3a36847f8010437", "cast_id": 21, "profile_path": "/weol1S4IhCqmPJJ0wgnipesO9kf.jpg", "order": 7}, {"name": "Lee Patrick", "character": "Car owner mistaken for Madeleine", "id": 5740, "credit_id": "52fe4242c3a36847f801043b", "cast_id": 22, "profile_path": "/sRGpSavd3VNZpzywoQMeS1D1cxM.jpg", "order": 8}, {"name": "Bess Flowers", "character": "Diner at Ernie's", "id": 121323, "credit_id": "52fe4242c3a36847f8010445", "cast_id": 24, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 9}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f80103cf", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.4, "runtime": 128}, "8619": {"poster_path": "/4o4JyEQldHQiqJn0BBRFppDmI65.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 212011111, "overview": "After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.", "video": false, "id": 8619, "genres": [{"id": 12, "name": "Adventure"}], "title": "Master and Commander: The Far Side of the World", "tagline": "The Courage to Do the Impossible Lies in the Hearts of Men", "vote_count": 232, "homepage": "http://www.masterandcommanderthefarsideoftheworld.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0311113", "adult": false, "backdrop_path": "/68sGkVSVxuFw7J9H6sk4GZfYZ1q.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Miramax Films", "id": 14}, {"name": "Universal Pictures", "id": 33}, {"name": "Samuel Goldwyn Films", "id": 9118}], "release_date": "2003-11-13", "popularity": 1.33030174791689, "original_title": "Master and Commander: The Far Side of the World", "budget": 150000000, "cast": [{"name": "Russell Crowe", "character": "Captain Jack Aubrey", "id": 934, "credit_id": "52fe44b1c3a36847f80a493d", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Dr. Stephen Maturin", "id": 6162, "credit_id": "52fe44b1c3a36847f80a4941", "cast_id": 2, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "James D'Arcy", "character": "1st Lt. Tom Pullings", "id": 19655, "credit_id": "52fe44b1c3a36847f80a4945", "cast_id": 3, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 2}, {"name": "Billy Boyd", "character": "Barrent Bonden", "id": 1329, "credit_id": "52fe44b1c3a36847f80a4949", "cast_id": 4, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 3}, {"name": "Joseph Morgan", "character": "William Warley, Cpt. of Mizzentop", "id": 79505, "credit_id": "52fe44b1c3a36847f80a499b", "cast_id": 18, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 4}, {"name": "Edward Woodall", "character": "2nd Lt. William Mowett", "id": 219496, "credit_id": "52fe44b1c3a36847f80a499f", "cast_id": 19, "profile_path": "/x1Fk0tANw7yzHOSJAIojmRoZRAv.jpg", "order": 5}, {"name": "Chris Larkin", "character": "Capt. Howard", "id": 25658, "credit_id": "52fe44b1c3a36847f80a49a3", "cast_id": 20, "profile_path": "/kjVq9FK96gIwcfDxyB3ILMIjfvh.jpg", "order": 6}, {"name": "Max Pirkis", "character": "Blakeney", "id": 215661, "credit_id": "52fe44b1c3a36847f80a49a7", "cast_id": 21, "profile_path": "/9NJw1YV4fcOTYQ8UOuIynmbu2rD.jpg", "order": 7}, {"name": "Jack Randall", "character": "Boyle", "id": 1077820, "credit_id": "52fe44b1c3a36847f80a49ab", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Max Benitz", "character": "Calamy", "id": 1032202, "credit_id": "52fe44b1c3a36847f80a49af", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Lee Ingleby", "character": "Hollom", "id": 229672, "credit_id": "52fe44b1c3a36847f80a49b3", "cast_id": 24, "profile_path": "/x2OW4t8CerOMObV1opNZ2rmGto1.jpg", "order": 10}, {"name": "Richard Pates", "character": "Williamson", "id": 1077821, "credit_id": "52fe44b1c3a36847f80a49b7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Robert Pugh", "character": "Mr. Allen", "id": 47643, "credit_id": "52fe44b1c3a36847f80a49bb", "cast_id": 26, "profile_path": "/vnqBCADoEnxQBD5e0GOCbUGrLeM.jpg", "order": 12}, {"name": "Richard McCabe", "character": "Mr. Higgins", "id": 7025, "credit_id": "52fe44b1c3a36847f80a49bf", "cast_id": 27, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 13}, {"name": "Ian Mercer", "character": "Mr. Hollar", "id": 199975, "credit_id": "52fe44b1c3a36847f80a49c3", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Tony Dolan", "character": "Mr. Lamb", "id": 1077822, "credit_id": "52fe44b1c3a36847f80a49c7", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "David Threlfall", "character": "Preserved Killick", "id": 59081, "credit_id": "52fe44b1c3a36847f80a49cb", "cast_id": 30, "profile_path": "/qhjrbokMi1DYcrL4B8YuIr3IT5y.jpg", "order": 16}, {"name": "Bryan Dick", "character": "Joseph Nagle", "id": 47703, "credit_id": "52fe44b1c3a36847f80a49cf", "cast_id": 31, "profile_path": "/1kBfn4B2bELdID5af1DYK2AU73M.jpg", "order": 17}, {"name": "George Innes", "character": "Joe Plaice", "id": 26131, "credit_id": "52fe44b1c3a36847f80a49d3", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "William Mannering", "character": "Faster Doudle", "id": 134692, "credit_id": "52fe44b1c3a36847f80a49d7", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Patrick Gallagher", "character": "Awkward Davies", "id": 17837, "credit_id": "52fe44b1c3a36847f80a49db", "cast_id": 34, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 20}, {"name": "Alex Palmer", "character": "Nehemiah Slade", "id": 2060, "credit_id": "52fe44b1c3a36847f80a49df", "cast_id": 35, "profile_path": "/leOXZpYLgCFgQoBb6vuHYoPbA5J.jpg", "order": 21}, {"name": "Mark Lewis Jones", "character": "Mr. Hogg", "id": 185460, "credit_id": "52fe44b1c3a36847f80a49e3", "cast_id": 36, "profile_path": "/qVpGXjzHtgFzVLFNMyNUZ6qsoDv.jpg", "order": 22}, {"name": "John DeSantis", "character": "Padeen", "id": 43299, "credit_id": "52fe44b1c3a36847f80a49e7", "cast_id": 37, "profile_path": "/vRAZhbcTbS56k5CpfO1NckaJf9N.jpg", "order": 23}, {"name": "Ousmane Thiam", "character": "Black Bill", "id": 1077823, "credit_id": "52fe44b1c3a36847f80a49eb", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Thierry Segall", "character": "French Captain", "id": 1077824, "credit_id": "52fe44b1c3a36847f80a49ef", "cast_id": 39, "profile_path": null, "order": 25}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe44b1c3a36847f80a494f", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 6.6, "runtime": 138}, "429": {"poster_path": "/v6TUio0GgIsK9pbW7FfFArbyECb.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6000000, "overview": "While the Civil War rages between the Union and the Confederacy, three men \u2013 a quiet loner, a ruthless hit man and a Mexican bandit \u2013 comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.", "video": false, "id": 429, "genres": [{"id": 37, "name": "Western"}], "title": "The Good, the Bad and the Ugly", "tagline": "For three men the Civil War wasn't hell. It was practice.", "vote_count": 882, "homepage": "http://www.mgm.com/view/Movie/766/The-Good,-the-Bad-and-the-Ugly/", "belongs_to_collection": {"backdrop_path": "/a4Lqp3QdEWF6zh740VpBg6yvTZA.jpg", "poster_path": "/lzUZptOL6iQqulMvhB2jfT5GepD.jpg", "id": 48317, "name": "The Man With No Name Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0060196", "adult": false, "backdrop_path": "/xGC2fY5KFmtuXnsuQwYQKFOLZFy.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Produzioni Europee Associati (PEA)", "id": 7508}, {"name": "Arturo Gonz\u00e1lez Producciones Cinematogr\u00e1ficas S.A.", "id": 42498}], "release_date": "1966-12-23", "popularity": 1.26627730466351, "original_title": "Il buono, il brutto, il cattivo", "budget": 1200000, "cast": [{"name": "Eli Wallach", "character": "Tuco", "id": 3265, "credit_id": "52fe4242c3a36847f80105d7", "cast_id": 6, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Blondie", "id": 190, "credit_id": "52fe4242c3a36847f80105db", "cast_id": 7, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Lee Van Cleef", "character": "Sentenza/Angel Eyes", "id": 4078, "credit_id": "52fe4242c3a36847f80105df", "cast_id": 8, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 2}, {"name": "Aldo Giuffr\u00e8", "character": "Alcoholic Union Captain", "id": 5813, "credit_id": "52fe4242c3a36847f80105e3", "cast_id": 9, "profile_path": "/aBp4PnfO43mTgCGg0pjmfhHrfdZ.jpg", "order": 3}, {"name": "Luigi Pistilli", "character": "Father Pablo Ramirez", "id": 5814, "credit_id": "52fe4242c3a36847f80105e7", "cast_id": 10, "profile_path": "/dUgRQX1Ge6JRYZWtFJ2vjAXT8Vi.jpg", "order": 4}, {"name": "Rada Rassimov", "character": "Maria", "id": 5815, "credit_id": "52fe4242c3a36847f80105eb", "cast_id": 11, "profile_path": "/beRCYALnzPi2AJwZSHUyTsLjoi.jpg", "order": 5}, {"name": "John Bartha", "character": "Sheriff", "id": 5816, "credit_id": "52fe4242c3a36847f80105ef", "cast_id": 12, "profile_path": "/6wqlakZTLHovTAqGvMwIUiPrQD8.jpg", "order": 6}, {"name": "Livio Lorenzon", "character": "Baker", "id": 5817, "credit_id": "52fe4242c3a36847f80105f3", "cast_id": 13, "profile_path": "/5fdlXj9HuTS5pJnHb0Q4BYosr6c.jpg", "order": 7}, {"name": "Antonio Casale", "character": "Jackson/Bill Carson", "id": 5818, "credit_id": "52fe4242c3a36847f80105f7", "cast_id": 14, "profile_path": "/iqa0pritPmbuNpRK94IpgsV7l0c.jpg", "order": 8}, {"name": "Angelo Novi", "character": "Monk", "id": 5819, "credit_id": "52fe4242c3a36847f80105fb", "cast_id": 15, "profile_path": "/6KgveqDRUbNtwiNNiQ0YSqthBQM.jpg", "order": 9}, {"name": "Jos\u00e9 Terr\u00f3n", "character": "Thomas 'Shorty' Larson (uncredited)", "id": 5843, "credit_id": "52fe4242c3a36847f8010629", "cast_id": 23, "profile_path": "/ndbCL8Cbg2xzTWO3nCmAsGkKegV.jpg", "order": 10}, {"name": "Enzo Petito", "character": "Storekeeper", "id": 1077276, "credit_id": "52fe4242c3a36847f8010639", "cast_id": 26, "profile_path": "/yN9lfTfpf3922Ws9M0rknb5Iz2M.jpg", "order": 11}, {"name": "Claudio Scarchilli", "character": "Mexican Peon", "id": 1077277, "credit_id": "52fe4242c3a36847f801063d", "cast_id": 27, "profile_path": "/42at3KFYvLiPG0ub14dXuFpoxcy.jpg", "order": 12}, {"name": "Sandro Scarchilli", "character": "Mexican Peon", "id": 1077278, "credit_id": "52fe4242c3a36847f8010641", "cast_id": 28, "profile_path": "/ojDlUTDQm5af57oWxSRdpx44uuW.jpg", "order": 13}, {"name": "Benito Stefanelli", "character": "Member of Angel Eyes' Gange", "id": 4661, "credit_id": "52fe4242c3a36847f8010645", "cast_id": 29, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 14}, {"name": "Antonio Casas", "character": "Stevens", "id": 103529, "credit_id": "52fe4242c3a36847f8010649", "cast_id": 30, "profile_path": "/epvdBxaktSZlfdqWWivitAZylpC.jpg", "order": 15}, {"name": "Aldo Sambrell", "character": "Member of Angel Eyes' Gang", "id": 49895, "credit_id": "52fe4242c3a36847f801064d", "cast_id": 31, "profile_path": "/AuDVbzviUIWEi9PJAeilFWTf5Xq.jpg", "order": 16}, {"name": "Al Mulock", "character": "One-Armed Bounty Hunter", "id": 129314, "credit_id": "52fe4242c3a36847f8010651", "cast_id": 32, "profile_path": "/80ibJHwEbjS6Wnb9DbkennzKLBL.jpg", "order": 17}, {"name": "Sergio Mendiz\u00e1bal", "character": "Blonde Bounty Hunter", "id": 37512, "credit_id": "52fe4242c3a36847f8010655", "cast_id": 33, "profile_path": "/4M55zJni66n0652YgyJVG8hCbQY.jpg", "order": 18}, {"name": "Antonio Molino Rojo", "character": "Capt. Harper", "id": 102096, "credit_id": "52fe4242c3a36847f8010659", "cast_id": 34, "profile_path": "/afs6pAQlgO9XHUbKTkXCardcUzf.jpg", "order": 19}, {"name": "Lorenzo Robledo", "character": "Member of Angel Eyes' Gang", "id": 100930, "credit_id": "52fe4242c3a36847f801065d", "cast_id": 35, "profile_path": "/dcL4hCSPvOoH3ZL0J6dQG7JYoof.jpg", "order": 20}, {"name": "Mario Brega", "character": "Cpl. Wallace", "id": 16318, "credit_id": "52fe4242c3a36847f8010661", "cast_id": 36, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 21}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f80105d3", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.6, "runtime": 161}, "431": {"poster_path": "/u50r6chJGO2iqxVAvtQ07obiCkB.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 501818, "overview": "The claustrophobic debut of Canadian director Vincenzo Natali takes seven strangers out of their daily lives and places them mysteriously in a deadly cube where they all agree they must find their way out. A mix of thriller and psychodrama and a small budget film that gained cult status.", "video": false, "id": 431, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Cube", "tagline": "Don't look for a reason... Look for a way out.", "vote_count": 243, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4SdZhO4M5vJ48dqp7r8PieZ37RJ.jpg", "poster_path": "/pRshONhwgQYb2IYcxhEIMDFc62d.jpg", "id": 432, "name": "Cube Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0123755", "adult": false, "backdrop_path": "/7BtMwHuHCgi0oE0SuITgfWOmPTu.jpg", "production_companies": [{"name": "Cube Libre", "id": 22207}, {"name": "Feature Film Project", "id": 21953}, {"name": "Harold Greenberg Fund", "id": 22208}, {"name": "Odeon Films", "id": 22209}, {"name": "Ontario Film Development Corporation", "id": 22210}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Viacom Canada", "id": 22211}], "release_date": "1997-09-09", "popularity": 0.520573517535742, "original_title": "Cube", "budget": 250000, "cast": [{"name": "Nicole de Boer", "character": "Leaven", "id": 5888, "credit_id": "52fe4242c3a36847f8010777", "cast_id": 5, "profile_path": "/bskEHtkzbiE2GMrFsqf3UmGGs4F.jpg", "order": 0}, {"name": "Nicky Guadagni", "character": "Holloway", "id": 5889, "credit_id": "52fe4242c3a36847f801077b", "cast_id": 6, "profile_path": "/2HJwL5EmMQSggNKfO9xc6DANmL6.jpg", "order": 1}, {"name": "David Hewlett", "character": "Worth", "id": 5892, "credit_id": "52fe4242c3a36847f801077f", "cast_id": 7, "profile_path": "/yntJ7Lur8LmjQ9rTfoVzlKb5WsX.jpg", "order": 2}, {"name": "Andrew Miller", "character": "Kazan", "id": 5894, "credit_id": "52fe4242c3a36847f8010783", "cast_id": 8, "profile_path": "/3m96GLYnwuostBF7ANSkafwWJnv.jpg", "order": 3}, {"name": "Julian Richings", "character": "Alderson", "id": 2320, "credit_id": "52fe4242c3a36847f8010787", "cast_id": 9, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 4}, {"name": "Wayne Robson", "character": "Rennes", "id": 5897, "credit_id": "52fe4243c3a36847f801078b", "cast_id": 10, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 5}, {"name": "Maurice Dean Wint", "character": "Quentin", "id": 5900, "credit_id": "52fe4243c3a36847f801078f", "cast_id": 11, "profile_path": "/wIw9x9BAGzeGe9SudxOUdagfNMD.jpg", "order": 6}], "directors": [{"name": "Vincenzo Natali", "department": "Directing", "job": "Director", "credit_id": "52fe4242c3a36847f8010773", "profile_path": "/4rdmLwBRQKs1gpjEfrTxabOUerv.jpg", "id": 5877}], "vote_average": 6.6, "runtime": 90}, "433": {"poster_path": "/A8LtO46RpTpn6K54SugowckB7Uw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102272727, "overview": "The movie combines a diverting story, songs, color and sequences of live action blended with the movements of animated figures. Mary Poppins is a kind of Super-nanny who flies in with her umbrella in response to the request of the Banks children and proceeds to put things right with the aid of her rather extraordinary magical powers before flying off again.", "video": false, "id": 433, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Mary Poppins", "tagline": "It's supercalifragilisticexpialidocious!", "vote_count": 254, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0058331", "adult": false, "backdrop_path": "/7DbgR36Sct5gcyEAzoM8bqiTYUV.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1964-08-27", "popularity": 1.63545734696016, "original_title": "Mary Poppins", "budget": 6000000, "cast": [{"name": "Julie Andrews", "character": "Mary Poppins", "id": 5823, "credit_id": "52fe4243c3a36847f801080f", "cast_id": 1, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 0}, {"name": "Dick Van Dyke", "character": "Bert/Mr. Dawes, Sr.", "id": 61303, "credit_id": "52fe4243c3a36847f8010813", "cast_id": 2, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 1}, {"name": "David Tomlinson", "character": "Mr. George W. Banks", "id": 5825, "credit_id": "52fe4243c3a36847f8010817", "cast_id": 3, "profile_path": "/1QJLJtcJ4x8DQFflrbd2144ZzLg.jpg", "order": 2}, {"name": "Glynis Johns", "character": "Mrs. Winifred Banks", "id": 5826, "credit_id": "52fe4243c3a36847f801081b", "cast_id": 4, "profile_path": "/36ysTAkDW1234XmgWVPYB15XhIl.jpg", "order": 3}, {"name": "Hermione Baddeley", "character": "Ellen", "id": 5827, "credit_id": "52fe4243c3a36847f801081f", "cast_id": 5, "profile_path": "/8SRb4fkFn9Wqx8mCb81KGEK4OcV.jpg", "order": 4}, {"name": "Reta Shaw", "character": "Mrs. Brill", "id": 5828, "credit_id": "52fe4243c3a36847f8010823", "cast_id": 6, "profile_path": "/x3uJBwLLOBj24O1YWAO7dUAbQ4b.jpg", "order": 5}, {"name": "Karen Dotrice", "character": "Jane Banks", "id": 5829, "credit_id": "52fe4243c3a36847f8010827", "cast_id": 7, "profile_path": "/wzpDcUOqfMTDAfYebSB4fjkKgSx.jpg", "order": 6}, {"name": "Matthew Garber", "character": "Michael Banks", "id": 5830, "credit_id": "52fe4243c3a36847f801082b", "cast_id": 8, "profile_path": "/l2dN6XkreEn3HDBnevlpayg5Ydp.jpg", "order": 7}, {"name": "Elsa Lanchester", "character": "Katie Nanna", "id": 2926, "credit_id": "52fe4243c3a36847f801082f", "cast_id": 9, "profile_path": "/2iuHeYDsEEzDScdvYOrIY673Q5N.jpg", "order": 8}, {"name": "Arthur Treacher", "character": "Constable Jones", "id": 5831, "credit_id": "52fe4243c3a36847f8010833", "cast_id": 10, "profile_path": "/6aqt3bPCFzpalaRqfMl4GhMYNhD.jpg", "order": 9}, {"name": "Reginald Owen", "character": "Admiral Boom", "id": 5832, "credit_id": "52fe4243c3a36847f8010837", "cast_id": 11, "profile_path": "/bgtpAl7ICrDyJQzjglLiVY6tlMw.jpg", "order": 10}, {"name": "Ed Wynn", "character": "Uncle Albert", "id": 5833, "credit_id": "52fe4243c3a36847f801083b", "cast_id": 12, "profile_path": "/zjH7qZlelUfL57SGXijeZAnA1bS.jpg", "order": 11}, {"name": "Jane Darwell", "character": "The Bird Woman", "id": 8515, "credit_id": "52fe4243c3a36847f8010887", "cast_id": 25, "profile_path": "/geGrMcqxcFtMKKJO36OFpVwZFFW.jpg", "order": 12}, {"name": "Arthur Malet", "character": "Mr. Dawes Junior", "id": 13392, "credit_id": "52fe4243c3a36847f801088b", "cast_id": 26, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 13}, {"name": "James Logan", "character": "Bank Doorman", "id": 161976, "credit_id": "52fe4243c3a36847f801088f", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Don Barclay", "character": "Mr. Binnacle - Admiral's Servant", "id": 30144, "credit_id": "52fe4243c3a36847f8010893", "cast_id": 28, "profile_path": "/eg54HOmaOCtvERwSHPpQWqR8uJZ.jpg", "order": 15}, {"name": "Alma Lawton", "character": "Mrs. Corry - Old Woman in Park", "id": 403760, "credit_id": "52fe4243c3a36847f8010897", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Marjorie Eaton", "character": "Miss Persimmon - Old Woman in Park", "id": 117714, "credit_id": "52fe4243c3a36847f801089b", "cast_id": 30, "profile_path": "/mwJVP4W18Rpbi8qn0a2nVyE7fdO.jpg", "order": 17}, {"name": "Marjorie Bennett", "character": "Miss Lark - Old Woman in Park", "id": 97257, "credit_id": "52fe4243c3a36847f801089f", "cast_id": 31, "profile_path": "/cyY0ltPueaqENXEBnd0KWE5VHRd.jpg", "order": 18}], "directors": [{"name": "Robert Stevenson", "department": "Directing", "job": "Director", "credit_id": "52fe4243c3a36847f8010841", "profile_path": "/86MMwlxQ7AhJMn1JnDg8hjZbnSy.jpg", "id": 5834}], "vote_average": 6.8, "runtime": 139}, "435": {"poster_path": "/pRmpaFjtegy8PnUvSBDyT9dm7c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 542772771, "overview": "After years of unabated global warming, the greenhouse effect is wreaking havoc all over the globe in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and, most ominously, the beginning of the next Ice Age. Paleoclimatologist Jack Hall tries to save the world while also shepherding to safety his son Sam, who was in New York when the city was overwhelmed by the beginnings of the new big freeze.", "video": false, "id": 435, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Day After Tomorrow", "tagline": "Where will you be?", "vote_count": 733, "homepage": "http://www.thedayaftertomorrow.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0319262", "adult": false, "backdrop_path": "/5SSu3K3YFOn0ed478R1ZfsZ6hqc.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Lions Gate Films", "id": 35}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Mark Gordon Productions", "id": 11362}], "release_date": "2004-05-24", "popularity": 0.743294359478703, "original_title": "The Day After Tomorrow", "budget": 125000000, "cast": [{"name": "Dennis Quaid", "character": "Jack Hall", "id": 6065, "credit_id": "52fe4243c3a36847f8010a53", "cast_id": 19, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Sam Hall", "id": 131, "credit_id": "52fe4243c3a36847f8010a57", "cast_id": 20, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Emmy Rossum", "character": "Laura Chapman", "id": 4730, "credit_id": "52fe4243c3a36847f8010a5b", "cast_id": 21, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 2}, {"name": "Dash Mihok", "character": "Jason Evans", "id": 6066, "credit_id": "52fe4243c3a36847f8010a5f", "cast_id": 22, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 3}, {"name": "Jay O. Sanders", "character": "Frank Harris", "id": 6067, "credit_id": "52fe4243c3a36847f8010a63", "cast_id": 23, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 4}, {"name": "Sela Ward", "character": "Dr. Lucy Hall", "id": 6068, "credit_id": "52fe4243c3a36847f8010a67", "cast_id": 24, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 5}, {"name": "Austin Nichols", "character": "J.D.", "id": 6069, "credit_id": "52fe4243c3a36847f8010a6b", "cast_id": 25, "profile_path": "/zuPYAE3HC6Sb82vZcef7edN1nkT.jpg", "order": 6}, {"name": "Arjay Smith", "character": "Brian Parks", "id": 6070, "credit_id": "52fe4243c3a36847f8010a6f", "cast_id": 26, "profile_path": "/pf1myo7qI3MTTPmmCg61BKqBayp.jpg", "order": 7}, {"name": "Tamlyn Tomita", "character": "Janet Tokada", "id": 3134, "credit_id": "52fe4243c3a36847f8010a73", "cast_id": 27, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 8}, {"name": "Sasha Roiz", "character": "Parker", "id": 6071, "credit_id": "52fe4243c3a36847f8010a77", "cast_id": 28, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 9}, {"name": "Ian Holm", "character": "Terry Rapson", "id": 65, "credit_id": "52fe4243c3a36847f8010a7b", "cast_id": 29, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 10}, {"name": "Nassim Sharara", "character": "Saudi Delegate", "id": 6072, "credit_id": "52fe4243c3a36847f8010a7f", "cast_id": 30, "profile_path": "/m0FZMpk1pZnw8dZ8fsqoNY9Qj85.jpg", "order": 11}, {"name": "Carl Alacchi", "character": "Venezuelan Delegate", "id": 6073, "credit_id": "52fe4243c3a36847f8010a83", "cast_id": 31, "profile_path": "/c7xcSsmUwsjiUTTyqhOjZ2vANkJ.jpg", "order": 12}, {"name": "Kenneth Welsh", "character": "Vice President Becker", "id": 6074, "credit_id": "52fe4243c3a36847f8010a87", "cast_id": 32, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 13}, {"name": "Michel 'Gish' Abou-Samah", "character": "Saudi Translator", "id": 6075, "credit_id": "52fe4243c3a36847f8010a8b", "cast_id": 33, "profile_path": "/sWoFi9ksYFQhj5lE2GelTNVXxN.jpg", "order": 14}, {"name": "Kenneth Moskow", "character": "Bob", "id": 1215803, "credit_id": "547c2c409251412d75001fe6", "cast_id": 102, "profile_path": null, "order": 15}, {"name": "Glenn Plummer", "character": "Luther", "id": 2683, "credit_id": "547c2d1e9251412d7800213f", "cast_id": 103, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 16}, {"name": "Adrian Lester", "character": "Simon", "id": 76215, "credit_id": "547c2d3c92514123ef0006b1", "cast_id": 104, "profile_path": "/bgp0SyX9ZczUbEnRldpq8IimhuT.jpg", "order": 17}, {"name": "Nestor Serrano", "character": "Gomez", "id": 14331, "credit_id": "547c2d56c3a3685afd002518", "cast_id": 105, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 18}, {"name": "John Maclaren", "character": "Veteran Scientist", "id": 21021, "credit_id": "547c2db4c3a3685af3001d92", "cast_id": 106, "profile_path": "/bLAjD9xwJgRHk1dmTIjDV4e8rqf.jpg", "order": 19}, {"name": "Richard Zeman", "character": "Flight Director", "id": 129419, "credit_id": "547c2dcec3a3685b050025ab", "cast_id": 107, "profile_path": null, "order": 20}, {"name": "Perry King", "character": "President Blake", "id": 64457, "credit_id": "547c2de4c3a3685b0000266f", "cast_id": 108, "profile_path": "/gne5PrFEM8FEGG96Jf7JJYgptke.jpg", "order": 21}, {"name": "Mimi Kuzyk", "character": "Secretary of State", "id": 65471, "credit_id": "547c2e039251412d7f0023cf", "cast_id": 109, "profile_path": "/7OYNPeE8DK7hi1IUXBoqyJvLYMc.jpg", "order": 22}, {"name": "Vitali Makarov", "character": "Yuri, Russian Astronaut", "id": 559897, "credit_id": "547c2e2e9251411f4e001448", "cast_id": 110, "profile_path": null, "order": 23}, {"name": "Russell Yuen", "character": "Hideki, Japanese Astronaut", "id": 29466, "credit_id": "547c2e46c3a3685b0000267e", "cast_id": 111, "profile_path": "/jCzbsp4aN7xUd8iW6FZ4HGoNovF.jpg", "order": 24}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4243c3a36847f80109e9", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.0, "runtime": 124}, "437": {"poster_path": "/6tPa2kvzsvOQTXK1JNO2JN9quBV.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "The sequel to the low budget first film \u2018Cube.\u2019 This time the prisoners find them selves in a more advanced cube environment that they must escape from before they are killed. A science fiction film where space and time have more than one path.", "video": false, "id": 437, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Cube 2: Hypercube", "tagline": "There is more to fear than you can see.", "vote_count": 71, "homepage": "http://www.scifi.com/cube2/", "belongs_to_collection": {"backdrop_path": "/4SdZhO4M5vJ48dqp7r8PieZ37RJ.jpg", "poster_path": "/pRshONhwgQYb2IYcxhEIMDFc62d.jpg", "id": 432, "name": "Cube Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0285492", "adult": false, "backdrop_path": "/yPIWvL5TFJk0MbfbSLJx70obbQY.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}, {"name": "Ghost House Pictures", "id": 768}], "release_date": "2002-04-15", "popularity": 0.236876302189795, "original_title": "Cube 2: Hypercube", "budget": 0, "cast": [{"name": "Kari Matchett", "character": "Kate Filmore", "id": 5937, "credit_id": "52fe4243c3a36847f8010b9f", "cast_id": 5, "profile_path": "/yflnRSms92un2SEj7YnKNYtLX0k.jpg", "order": 0}, {"name": "Geraint Wyn Davies", "character": "Simon Grady", "id": 5938, "credit_id": "52fe4243c3a36847f8010ba3", "cast_id": 6, "profile_path": "/kDLHVvaPj90QrxOLr1xErC0Oq8Q.jpg", "order": 1}, {"name": "Grace Lynn Kung", "character": "Sasha", "id": 5939, "credit_id": "52fe4243c3a36847f8010ba7", "cast_id": 7, "profile_path": "/n0yGKJ9M0Ag1o5QOpmF6FOHM5li.jpg", "order": 2}, {"name": "Matthew Ferguson", "character": "Max Reisler", "id": 5940, "credit_id": "52fe4243c3a36847f8010bab", "cast_id": 8, "profile_path": "/6JZRGqgfudOZcjoU9yUzidasWiu.jpg", "order": 3}, {"name": "Neil Crone", "character": "Jerry Whitehall", "id": 5941, "credit_id": "52fe4243c3a36847f8010baf", "cast_id": 9, "profile_path": "/8LYTbOzuqFQoSOFRggM28JzgEXb.jpg", "order": 4}, {"name": "Barbara Gordon", "character": "Mrs. Paley", "id": 5942, "credit_id": "52fe4243c3a36847f8010bb3", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Lindsey Connell", "character": "Julia", "id": 5943, "credit_id": "52fe4243c3a36847f8010bb7", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Greer Kent", "character": "Becky Young", "id": 5944, "credit_id": "52fe4243c3a36847f8010bbb", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Bruce Gray", "character": "Colonel Maguire", "id": 5945, "credit_id": "52fe4243c3a36847f8010bbf", "cast_id": 13, "profile_path": "/z0uEl3in5hsCD4TYTBqCtmqCdwo.jpg", "order": 8}, {"name": "Philip Akin", "character": "The General", "id": 5946, "credit_id": "52fe4243c3a36847f8010bc3", "cast_id": 14, "profile_path": "/8x3hkESG8Fyn3r3LcYMdz7QWowG.jpg", "order": 9}, {"name": "Paul Robbins", "character": "Tracton", "id": 5947, "credit_id": "52fe4243c3a36847f8010bc7", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Andrew Scorer", "character": "Dr. Phil Rosenzweig", "id": 5948, "credit_id": "52fe4243c3a36847f8010bcb", "cast_id": 16, "profile_path": null, "order": 11}], "directors": [{"name": "Andrzej Sekula", "department": "Directing", "job": "Director", "credit_id": "52fe4243c3a36847f8010b9b", "profile_path": null, "id": 3115}], "vote_average": 5.2, "runtime": 94}, "8265": {"poster_path": "/wpuxRlQ9dwPlCXCpnckIk9MzBcD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 53191886, "overview": "Although living a comfortable life in Salon-de-Provence, a charming town in the South of France, Julie has been feeling depressed for a while. To please her, Philippe Abrams, a post office administrator, her husband, tries to obtain a transfer to a seaside town, on the French Riviera, at any cost. The trouble is that he is caught red-handed while trying to scam an inspector. Philippe is immediately banished to the distant unheard of town of Bergues, in the Far North of France...", "video": false, "id": 8265, "genres": [{"id": 35, "name": "Comedy"}], "title": "Welcome to the Sticks", "tagline": "", "vote_count": 109, "homepage": "http://www.bienvenuechezleschtis-lefilm.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1064932", "adult": false, "backdrop_path": "/o2FFyK2lFk9VyumyNwG0bUk2CeR.jpg", "production_companies": [{"name": "TF1 Films Productions", "id": 356}, {"name": "Path\u00e9 Renn Productions", "id": 866}, {"name": "Hirsch", "id": 2355}, {"name": "Les Productions du Chicon", "id": 11544}, {"name": "Canal+", "id": 5358}, {"name": "Centre National de la Cin\u00e9matographie", "id": 310}, {"name": "Centre R\u00e9gional des Ressources Audiovisuelles (CRRAV)", "id": 11545}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "R\u00e9gion Nord-Pas-de-Calais", "id": 11434}], "release_date": "2008-02-20", "popularity": 0.47449742131453, "original_title": "Bienvenue chez les ch'tis", "budget": 11000000, "cast": [{"name": "Kad Merad", "character": "Philippe Abrams", "id": 22306, "credit_id": "52fe4498c3a36847f809f38d", "cast_id": 2, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 0}, {"name": "Dany Boon", "character": "Antoine Bailleul", "id": 37627, "credit_id": "52fe4498c3a36847f809f391", "cast_id": 3, "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "order": 1}, {"name": "Zo\u00e9 F\u00e9lix", "character": "Julie Abrams", "id": 54165, "credit_id": "52fe4498c3a36847f809f395", "cast_id": 4, "profile_path": "/d0IfW8sjxHZLq1WOUol7YXiflAs.jpg", "order": 2}, {"name": "Lorenzo Ausilia-Foret", "character": "Rapha\u00ebl Abrams", "id": 1120528, "credit_id": "52fe4499c3a36847f809f439", "cast_id": 35, "profile_path": null, "order": 3}, {"name": "Anne Marivin", "character": "Annabelle Deconninck", "id": 54168, "credit_id": "52fe4499c3a36847f809f3a9", "cast_id": 9, "profile_path": "/oDRecloG3jOMsQy0H1zmLLld7Ti.jpg", "order": 4}, {"name": "Philippe Duquesne", "character": "Fabrice Canoli", "id": 66032, "credit_id": "52fe4499c3a36847f809f435", "cast_id": 34, "profile_path": "/9Br1Ewi1aHoiRrCt50j0QS2UyHC.jpg", "order": 5}, {"name": "Guy Lecluyse", "character": "Yann Vandernoout", "id": 52348, "credit_id": "52fe4499c3a36847f809f3a1", "cast_id": 7, "profile_path": "/w7zCQreyVrMIpkerskuXbivGlYI.jpg", "order": 6}, {"name": "Line Renaud", "character": "Madame Bailleul", "id": 54167, "credit_id": "52fe4498c3a36847f809f399", "cast_id": 5, "profile_path": "/n1nKGW94uVUfTHuvh8a8IeGTNXv.jpg", "order": 7}, {"name": "Michel Galabru", "character": "le grand oncle de Julie", "id": 24629, "credit_id": "52fe4499c3a36847f809f39d", "cast_id": 6, "profile_path": "/swCBlLcMcmzVr4IbKjoynAhrm6B.jpg", "order": 8}, {"name": "St\u00e9phane Freiss", "character": "Jean", "id": 40305, "credit_id": "52fe4499c3a36847f809f3a5", "cast_id": 8, "profile_path": "/rlUdl4jnh5drYjqi9FBKAC0q7QR.jpg", "order": 9}, {"name": "Patrick Bosso", "character": "le gendarme", "id": 54169, "credit_id": "52fe4499c3a36847f809f3ad", "cast_id": 10, "profile_path": "/7ZBm6iFgDhHcWN4LqELh6koGHC.jpg", "order": 10}, {"name": "J\u00e9r\u00f4me Commandeur", "character": "inspecteur Lebic", "id": 54170, "credit_id": "52fe4499c3a36847f809f3b5", "cast_id": 12, "profile_path": "/oD7b6OOvypJxHDLScoNkEpxnRPA.jpg", "order": 11}, {"name": "Christophe Rossignon", "character": "le gar\u00e7on du restaurant", "id": 5425, "credit_id": "52fe4499c3a36847f809f3b9", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Zinedine Soualem", "character": "Momo", "id": 5445, "credit_id": "52fe4499c3a36847f809f3b1", "cast_id": 11, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 13}], "directors": [{"name": "Dany Boon", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a36847f809f389", "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "id": 37627}, {"name": "Nicolas Guy", "department": "Directing", "job": "Director", "credit_id": "52fe4499c3a36847f809f401", "profile_path": null, "id": 54176}], "vote_average": 6.8, "runtime": 106}, "440": {"poster_path": "/xR4Mslyum7bjzAF1rlUX2HrlwhZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41797066, "overview": "A sequel to 2004's Alien vs. Predator, the iconic creatures from two of the scariest film franchises in movie history wage their most brutal battle ever - in our own backyard. The small town of Gunnison, Colorado becomes a war zone between two of the deadliest extra-terrestrial life forms - the Alien and the Predator. When a Predator scout ship crash-lands in the hills outside the town, Alien Facehuggers and a hybrid Alien/Predator are released and begin to terrorize the town.", "video": false, "id": 440, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Aliens vs Predator: Requiem", "tagline": "The Last Place On Earth We Want To Be Is In The Middle", "vote_count": 207, "homepage": "http://www.avp-r.com/", "belongs_to_collection": {"backdrop_path": "/c5ccDw4lcTUnYGdCxc2yEl8PjTk.jpg", "poster_path": "/zrApSsUX9i0qVntcCD0Pp55TdCy.jpg", "id": 115762, "name": "AVP Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758730", "adult": false, "backdrop_path": "/uypAmOWRpjnqIlg1BzXhGgP1uMM.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "20th Century Fox", "id": 25}, {"name": "Brandywine Productions Ltd.", "id": 401}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2007-12-25", "popularity": 1.68558871718858, "original_title": "Aliens vs Predator: Requiem", "budget": 40000000, "cast": [{"name": "Steven Pasquale", "character": "Dallas Howard", "id": 56389, "credit_id": "52fe4244c3a36847f8010dfb", "cast_id": 17, "profile_path": "/6rm9ZpBrc3w7tRvAtyMTOltUUvb.jpg", "order": 0}, {"name": "Reiko Aylesworth", "character": "Kelly O'Brien", "id": 25869, "credit_id": "52fe4244c3a36847f8010dff", "cast_id": 18, "profile_path": "/59Gu57v2rOtvvBA06rSuYX2w5h2.jpg", "order": 1}, {"name": "John Ortiz", "character": "Sheriff Eddie Morales", "id": 40543, "credit_id": "52fe4244c3a36847f8010e03", "cast_id": 19, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 2}, {"name": "Ariel Gade", "character": "Molly O'Brien", "id": 76414, "credit_id": "52fe4244c3a36847f8010e07", "cast_id": 20, "profile_path": "/axreEq8FBbpww34aBzJo2xM5pkv.jpg", "order": 3}, {"name": "Sam Trammell", "character": "Tim", "id": 131006, "credit_id": "52fe4244c3a36847f8010e0b", "cast_id": 21, "profile_path": "/pvf0cmYdw3Fi2F5HjP2QHgxRKoC.jpg", "order": 4}, {"name": "Kristen Hager", "character": "Jesse", "id": 73454, "credit_id": "538dfcb6c3a3687146005413", "cast_id": 22, "profile_path": "/mofGrgUP2kXXD8cgkYnzfGb8EOL.jpg", "order": 5}, {"name": "Robert Joy", "character": "Col. Stevens", "id": 19976, "credit_id": "538dfcc4c3a368714300501f", "cast_id": 23, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 6}, {"name": "David Paetkau", "character": "Dale", "id": 33293, "credit_id": "538dfcccc3a36871520051b4", "cast_id": 24, "profile_path": "/xOAjc34j0fZlKSb6I3cpTwHStar.jpg", "order": 7}, {"name": "Tom Woodruff Jr.", "character": "Alien", "id": 109870, "credit_id": "538dfcd4c3a36871550050d3", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Ian Whyte", "character": "Predator", "id": 946696, "credit_id": "538dfcdfc3a368713c00525a", "cast_id": 26, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 9}, {"name": "Chelah Horsdal", "character": "Darcy", "id": 70175, "credit_id": "538dfce8c3a368714b0052e9", "cast_id": 27, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 10}, {"name": "Meshach Peters", "character": "Curtis", "id": 202065, "credit_id": "538dfcf1c3a36871520051b8", "cast_id": 28, "profile_path": "/2zqlQS2A0kVzoSabpSVi9Qsfrwf.jpg", "order": 11}, {"name": "Matt Ward", "character": "Mark", "id": 210348, "credit_id": "538dfcf9c3a36871550050d6", "cast_id": 29, "profile_path": "/fwGrvAJJi30gapwPIDTkk1BNYHf.jpg", "order": 12}, {"name": "Gina Holden", "character": "Carrie", "id": 33336, "credit_id": "548d9d9ac3a36820be003a19", "cast_id": 82, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 13}, {"name": "Kurt Max Runte", "character": "Buddy", "id": 60721, "credit_id": "548d9db1c3a36820ba0040c1", "cast_id": 83, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 14}, {"name": "Liam James", "character": "Sam", "id": 83852, "credit_id": "548d9dcd92514122f2004111", "cast_id": 84, "profile_path": "/heAbNsKPFDCFIrzy7zDeZm6w2xd.jpg", "order": 15}, {"name": "Ty Olsson", "character": "Nathan", "id": 42711, "credit_id": "548d9de8c3a3681d4b00215b", "cast_id": 85, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 16}, {"name": "Chris William Martin", "character": "Deputy Ray", "id": 152820, "credit_id": "548d9e15c3a368153b001ee7", "cast_id": 86, "profile_path": "/tNgMeVpoM4RhEvxjaYtaxLvi1YJ.jpg", "order": 17}, {"name": "Rekha Sharma", "character": "Nurse Helen", "id": 62717, "credit_id": "548d9e3bc3a36820be003a27", "cast_id": 87, "profile_path": "/cx3ubTduzbsfyxPPnS2HoEmZbFG.jpg", "order": 18}, {"name": "Catherine Lough Haggquist", "character": "Tina", "id": 77622, "credit_id": "548d9e58c3a3681d4b002165", "cast_id": 88, "profile_path": "/bXyoDG0aMwUtObFgLgBi7NkviDY.jpg", "order": 19}], "directors": [{"name": "Colin Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4244c3a36847f8010d9d", "profile_path": "/mM95v1bWGdz8Ira7K4drueKRT01.jpg", "id": 6037}, {"name": "Greg Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4244c3a36847f8010da3", "profile_path": "/xcEcDFHoTkIuOkLeWRuX3ksJmy1.jpg", "id": 6038}], "vote_average": 5.0, "runtime": 94}, "41402": {"poster_path": "/7Q2mLNPJ7KMZCUUNekBoFJRfDki.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24145613, "overview": "This is a remake of the movie \"Let The Right One In\" which was a movie adaptation of a book. A story of a young boy who is frequently bullied and a young girl that moves in next door with her caretaker. It is established that she is a vampire and, after losing her caretaker, must leave in order to survive. A story of innocent love entangled in murder, mystery, and horror.", "video": false, "id": 41402, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Let Me In", "tagline": "Innocence dies. Abby doesn't.", "vote_count": 171, "homepage": "http://www.letmein-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1228987", "adult": false, "backdrop_path": "/uLhpV983X2BLSpnfzwASZWmgEUL.jpg", "production_companies": [{"name": "Hammer Film Productions", "id": 1314}, {"name": "EFTI", "id": 3576}, {"name": "Overture Films", "id": 12807}, {"name": "Exclusive Media Group", "id": 11448}], "release_date": "2010-10-01", "popularity": 0.292622328822482, "original_title": "Let Me In", "budget": 20000000, "cast": [{"name": "Kodi Smit-McPhee", "character": "Owen", "id": 113505, "credit_id": "52fe45c7c3a36847f80d9dd7", "cast_id": 8, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Abby", "id": 56734, "credit_id": "52fe45c7c3a36847f80d9e0d", "cast_id": 21, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Richard Jenkins", "character": "The Father", "id": 28633, "credit_id": "52fe45c7c3a36847f80d9ddb", "cast_id": 9, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 2}, {"name": "Elias Koteas", "character": "The Policeman", "id": 13550, "credit_id": "52fe45c7c3a36847f80d9ddf", "cast_id": 10, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 3}, {"name": "Sasha Barrese", "character": "Virginia", "id": 83585, "credit_id": "52fe45c7c3a36847f80d9de3", "cast_id": 11, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 4}, {"name": "Dylan Kenin", "character": "Larry", "id": 85419, "credit_id": "52fe45c7c3a36847f80d9de7", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Dylan Minnette", "character": "Kenny", "id": 112476, "credit_id": "52fe45c7c3a36847f80d9dfd", "cast_id": 16, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 6}, {"name": "Jimmy \"Jax\" Pinchak", "character": "Mark (as Jimmy Jax Pinchak)", "id": 284628, "credit_id": "52fe45c7c3a36847f80d9e01", "cast_id": 17, "profile_path": "/ztVfjHJ9fbuzgQVUKVPQvEsVCRK.jpg", "order": 7}, {"name": "Nicolai Dorian", "character": "Donald", "id": 966943, "credit_id": "52fe45c7c3a36847f80d9e05", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Seth Adkins", "character": "High School Kid", "id": 8553, "credit_id": "52fe45c7c3a36847f80d9e09", "cast_id": 19, "profile_path": "/gmqJckjg37blaf4IKAzDnFTtV7N.jpg", "order": 9}], "directors": [{"name": "Matt Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe45c7c3a36847f80d9e13", "profile_path": "/4SPhLx107Y7m0tvzlLpCquxFxE8.jpg", "id": 32278}], "vote_average": 6.7, "runtime": 116}, "1439": {"poster_path": "/BHjZW51ZsyC1mlLOeIB5eVbU0w.jpg", "production_countries": [{"iso_3166_1": "MY", "name": "Malaysia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of the romance between the King of Siam (now Thailand) and the widowed British school teacher Anna Leonowens during the 1860's. Anna teaches the children and becomes romanced by the King. She convinces him that a man can be loved by just one woman.", "video": false, "id": 1439, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Anna and the King", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0166485", "adult": false, "backdrop_path": "/mRpSxOv2uw49MUl3HAZFefzCQqN.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "1999-12-16", "popularity": 0.32360563137468, "original_title": "Anna and the King", "budget": 75000000, "cast": [{"name": "Jodie Foster", "character": "Anna Leonowens", "id": 1038, "credit_id": "52fe42f7c3a36847f803057b", "cast_id": 1, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Chow Yun-Fat", "character": "K\u00f6nig Mongkut", "id": 1619, "credit_id": "52fe42f7c3a36847f80305f9", "cast_id": 26, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 1}, {"name": "Bai Ling", "character": "Tuptim", "id": 39126, "credit_id": "52fe42f7c3a36847f8030603", "cast_id": 28, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 2}, {"name": "Tom Felton", "character": "Louis Leonowens", "id": 10993, "credit_id": "52fe42f7c3a36847f803057f", "cast_id": 2, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 3}, {"name": "Syed Alwi", "character": "The Kralahome, Prime Minister", "id": 17154, "credit_id": "52fe42f7c3a36847f8030583", "cast_id": 3, "profile_path": null, "order": 4}, {"name": "Randall Duk Kim", "character": "General Alak", "id": 9462, "credit_id": "52fe42f7c3a36847f8030587", "cast_id": 4, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 5}, {"name": "Kay Siu Lim", "character": "Prince Chowfa, King Mongkut's Brother", "id": 17155, "credit_id": "52fe42f7c3a36847f803058b", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Melissa Campbell", "character": "Princess Fa-Ying", "id": 17156, "credit_id": "52fe42f7c3a36847f803058f", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Keith Chin", "character": "Prince Chulalongkorn", "id": 17157, "credit_id": "52fe42f7c3a36847f8030593", "cast_id": 7, "profile_path": null, "order": 8}, {"name": "Mano Maniam", "character": "Moonshee, Leonowens' Indian Servant", "id": 17158, "credit_id": "52fe42f7c3a36847f8030597", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Shanthini Venugopal", "character": "Beebe, Leonowens' Indian Servant", "id": 17159, "credit_id": "52fe42f7c3a36847f803059b", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Deanna Yusoff", "character": "Lady Thiang, Head Wife", "id": 17160, "credit_id": "52fe42f7c3a36847f803059f", "cast_id": 10, "profile_path": "/gnVastLwINGC6cqPjRrxRrAYGKu.jpg", "order": 11}, {"name": "Ann Firbank", "character": "Lady Bradley", "id": 17161, "credit_id": "52fe42f7c3a36847f80305a7", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "Geoffrey Palmer", "character": "Lord John Bradley", "id": 10746, "credit_id": "52fe42f7c3a36847f80305a3", "cast_id": 11, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 13}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe42f7c3a36847f80305d7", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.5, "runtime": 148}, "33217": {"poster_path": "/5bPEGiI6r2PvER13UWPy0Ud4MnZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Middle school isn't all it's cracked up to be for self-described \"wimpy kid\" Greg Heffley, who discovers a frightening new world teeming with boys who are taller, tougher and hairier than he is -- and decides to document it all in his diary.", "video": false, "id": 33217, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Diary of a Wimpy Kid", "tagline": "I'll be famous one day, but for now I'm stuck in middle school with a bunch of morons", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hTbw2nLM44eE5m7ZIIXodcoDR1X.jpg", "poster_path": "/4Miizfzuds4ldROTff9vB0Z3EId.jpg", "id": 86110, "name": "Diary of a Wimpy Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1196141", "adult": false, "backdrop_path": "/ag3LIUYCclnXltzoVZX3nPKmQt7.jpg", "production_companies": [{"name": "Color Force", "id": 5420}], "release_date": "2010-03-19", "popularity": 0.476429946917834, "original_title": "Diary of a Wimpy Kid", "budget": 15000000, "cast": [{"name": "Zachary Gordon", "character": "Greg", "id": 89819, "credit_id": "52fe45059251416c91024bfd", "cast_id": 4, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 0}, {"name": "Robert Capron", "character": "Rowley", "id": 111922, "credit_id": "52fe45059251416c91024c15", "cast_id": 10, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 1}, {"name": "Chlo\u00eb Grace Moretz", "character": "Angie", "id": 56734, "credit_id": "52fe45059251416c91024bf1", "cast_id": 1, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "Steve Zahn", "character": "Frank", "id": 18324, "credit_id": "52fe45059251416c91024bf5", "cast_id": 2, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 3}, {"name": "Rachael Harris", "character": "Susan", "id": 46074, "credit_id": "52fe45059251416c91024bf9", "cast_id": 3, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 4}, {"name": "Devon Bostick", "character": "Rodrick", "id": 90498, "credit_id": "52fe45059251416c91024c01", "cast_id": 5, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 5}, {"name": "Alex Ferris", "character": "Collin", "id": 59243, "credit_id": "52fe45059251416c91024c05", "cast_id": 6, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 6}, {"name": "Cindy Busby", "character": "80's Popular Girl", "id": 111920, "credit_id": "52fe45059251416c91024c09", "cast_id": 7, "profile_path": "/fJouHvx2hRoUa1e9HWxIglEEoMN.jpg", "order": 7}, {"name": "Grayson Russell", "character": "Fregley", "id": 111921, "credit_id": "52fe45059251416c91024c0d", "cast_id": 8, "profile_path": "/mgpxDDI7uqhdPgT0VoMSW28dh4y.jpg", "order": 8}, {"name": "Owen Best", "character": "Bryce Anderson", "id": 109205, "credit_id": "52fe45059251416c91024c11", "cast_id": 9, "profile_path": "/yPcXiWMFlsM1IxzzFGhIkLckD3G.jpg", "order": 9}, {"name": "Cainan Wiebe", "character": "Quentin", "id": 58402, "credit_id": "52fe45059251416c91024c19", "cast_id": 11, "profile_path": "/aaMIrNZ3eVNo6NGHVG4ycxk5Vou.jpg", "order": 10}, {"name": "Rob LaBelle", "character": "Mr.Winsky", "id": 42708, "credit_id": "52fe45059251416c91024c1d", "cast_id": 12, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 11}, {"name": "Laine MacNeil", "character": "Patty Ferrell", "id": 84468, "credit_id": "52fe45059251416c91024c21", "cast_id": 13, "profile_path": "/1CX7wfCXTttRUVwMnfWmHtl9kz1.jpg", "order": 12}, {"name": "Karan Brar", "character": "Chirag Gupta", "id": 111923, "credit_id": "52fe45059251416c91024c25", "cast_id": 14, "profile_path": "/eelNaGrUz5jRyEk6XlH6C1q5pON.jpg", "order": 13}, {"name": "Brett Dier", "character": "Breakdancer", "id": 110475, "credit_id": "52fe45059251416c91024c29", "cast_id": 15, "profile_path": "/9pUV7QcJnbWaRp7MbXZtBwoemFQ.jpg", "order": 14}, {"name": "Ryan Grantham", "character": "Rodney James", "id": 111924, "credit_id": "52fe45059251416c91024c2d", "cast_id": 16, "profile_path": "/7mHdcBgBCr3FZQzfs15ptIysE3A.jpg", "order": 15}, {"name": "Jake D. Smith", "character": "Archie Kelly", "id": 111925, "credit_id": "52fe45059251416c91024c31", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Samuel Patrick Chu", "character": "Carter", "id": 33353, "credit_id": "52fe45059251416c91024c35", "cast_id": 18, "profile_path": "/mejbBl13pPPPrsJ56BWFykpk2cx.jpg", "order": 17}, {"name": "Ava Hughes", "character": "Marley", "id": 41429, "credit_id": "52fe45059251416c91024c39", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Harrison Houde", "character": "Darren Walsh", "id": 111926, "credit_id": "52fe45059251416c91024c3d", "cast_id": 20, "profile_path": null, "order": 19}, {"name": "Samantha Page", "character": "Shelley", "id": 111927, "credit_id": "52fe45059251416c91024c41", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Talon Dunbar", "character": "Arthur, Lunch Kid 1", "id": 111928, "credit_id": "52fe45059251416c91024c45", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Jennifer Clement", "character": "Ms.Flint", "id": 64673, "credit_id": "52fe45059251416c91024c49", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Adom Osei", "character": "Marty Porter", "id": 111929, "credit_id": "52fe45059251416c91024c4d", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Donnie MacNeil", "character": "Wade", "id": 111930, "credit_id": "52fe45059251416c91024c51", "cast_id": 25, "profile_path": "/8YKf73rmd0MbbE0nH3XcGB5jps4.jpg", "order": 24}, {"name": "Andrew McNee", "character": "Coach Malone", "id": 111931, "credit_id": "52fe45059251416c91024c55", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Naomi Dane", "character": "Cheese Girl", "id": 111933, "credit_id": "52fe45059251416c91024c59", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Sarah Wik", "character": "School Girl", "id": 111934, "credit_id": "52fe45059251416c91024c5d", "cast_id": 28, "profile_path": null, "order": 27}, {"name": "Rylee Stiles", "character": "Preston", "id": 111935, "credit_id": "52fe45059251416c91024c61", "cast_id": 29, "profile_path": null, "order": 28}, {"name": "Ethan Shankaruk", "character": "Snot Kid", "id": 111936, "credit_id": "52fe45059251416c91024c65", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Triston Woolsey", "character": "Shirts Kid #2", "id": 111937, "credit_id": "52fe45059251416c91024c69", "cast_id": 31, "profile_path": null, "order": 30}, {"name": "Wyatt Cameron", "character": "Shirts Kid #1", "id": 111938, "credit_id": "52fe45059251416c91024c6d", "cast_id": 32, "profile_path": null, "order": 31}, {"name": "Shane Briscoe", "character": "Funny Dad", "id": 111939, "credit_id": "52fe45059251416c91024c71", "cast_id": 33, "profile_path": null, "order": 32}, {"name": "Douglas Armstrong", "character": "Skins Kid #1", "id": 111940, "credit_id": "52fe45059251416c91024c75", "cast_id": 34, "profile_path": null, "order": 33}, {"name": "Greta Makena Gibson", "character": "Lunch Kid #2 (as Greta Gibson)", "id": 111941, "credit_id": "52fe45059251416c91024c79", "cast_id": 35, "profile_path": null, "order": 34}, {"name": "Cainan Wiebe", "character": "Quentin", "id": 58402, "credit_id": "52fe45059251416c91024c8f", "cast_id": 39, "profile_path": "/aaMIrNZ3eVNo6NGHVG4ycxk5Vou.jpg", "order": 35}], "directors": [{"name": "Thor Freudenthal", "department": "Directing", "job": "Director", "credit_id": "52fe45059251416c91024c7f", "profile_path": null, "id": 109857}], "vote_average": 5.8, "runtime": 94}, "451": {"poster_path": "/aPD0aD4yVoiwrZjVCpUBdGa1C0j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49800000, "overview": "Ben Sanderson, an alcoholic Hollywood screenwriter who lost everything because of his drinking, arrives in Las Vegas to drink himself to death. There, he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.", "video": false, "id": 451, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Leaving Las Vegas", "tagline": "I Love You... The Way You Are.", "vote_count": 83, "homepage": "http://www.mgm.com/title_title.do?title_star=LEAVINGL", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113627", "adult": false, "backdrop_path": "/dDTAbwvWJpHlblgjyPnKLQXOiHI.jpg", "production_companies": [{"name": "Intial Productions", "id": 15547}, {"name": "United Artists", "id": 60}], "release_date": "1995-10-27", "popularity": 0.645562551540151, "original_title": "Leaving Las Vegas", "budget": 3600000, "cast": [{"name": "Nicolas Cage", "character": "Ben Sanderson", "id": 2963, "credit_id": "52fe4245c3a36847f801117b", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Elisabeth Shue", "character": "Sera", "id": 1951, "credit_id": "52fe4245c3a36847f801117f", "cast_id": 2, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 1}, {"name": "Julian Sands", "character": "Yuri", "id": 6104, "credit_id": "52fe4245c3a36847f8011183", "cast_id": 3, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 2}, {"name": "Richard Lewis", "character": "Peter", "id": 6105, "credit_id": "52fe4245c3a36847f8011187", "cast_id": 4, "profile_path": "/zc2BlkPtYJAsIAVbZ4zQPEMW1t6.jpg", "order": 3}, {"name": "Steven Weber", "character": "Marc Nussbaum", "id": 6106, "credit_id": "52fe4245c3a36847f801118b", "cast_id": 5, "profile_path": "/ujINzDjLNtELBSUkRHQgExzP4Fb.jpg", "order": 4}, {"name": "Kim Adams", "character": "Sheila", "id": 6107, "credit_id": "52fe4245c3a36847f801118f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Emily Procter", "character": "Debbie", "id": 6108, "credit_id": "52fe4245c3a36847f8011193", "cast_id": 7, "profile_path": "/nZJypfLAXUg8Nn1GpBgbYVdqO4Y.jpg", "order": 6}, {"name": "Stuart Regen", "character": "Man At Bar", "id": 6109, "credit_id": "52fe4245c3a36847f8011197", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Valeria Golino", "character": "Terri", "id": 3124, "credit_id": "52fe4245c3a36847f801119b", "cast_id": 9, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 8}, {"name": "Graham Beckel", "character": "L.A. Bartender", "id": 6110, "credit_id": "52fe4245c3a36847f801119f", "cast_id": 10, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 9}, {"name": "Mariska Hargitay", "character": "Hooker at bar", "id": 6240, "credit_id": "52fe4245c3a36847f80111eb", "cast_id": 23, "profile_path": "/evPLncwnmRiBpbsPiJD1WubviV.jpg", "order": 10}, {"name": "Laurie Metcalf", "character": "Landlady", "id": 12133, "credit_id": "5402bc210e0a2658de006b1c", "cast_id": 24, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 11}], "directors": [{"name": "Mike Figgis", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f80111a5", "profile_path": "/nIaxYZkNX6j70VQyHwzed1QxOXD.jpg", "id": 6111}], "vote_average": 6.9, "runtime": 112}, "453": {"poster_path": "/4SFqHDZ1NvWdysucWbgnYlobdxC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 313542341, "overview": "At Princeton University, John Nash struggles to make a worthwhile contribution to serve as his legacy to the world of mathematics. He finally makes a revolutionary breakthrough that will eventually earn him the Nobel Prize. After graduate school he turns to teaching, becoming romantically involved with his student Alicia. Meanwhile the government asks his help with breaking Soviet codes, which soon gets him involved in a terrifying conspiracy plot. Nash grows more and more paranoid until a discovery that turns his entire world upside down. Now it is only with Alicia's help that he will be able to recover his mental strength and regain his status as the great mathematician we know him as today.", "video": false, "id": 453, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Beautiful Mind", "tagline": "I need to believe that something extra ordinary is possible....", "vote_count": 814, "homepage": "http://www.abeautifulmind.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0268978", "adult": false, "backdrop_path": "/4E6fPI8VHCdttDve9vBk14rsuBW.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2001-12-12", "popularity": 1.46861499623406, "original_title": "A Beautiful Mind", "budget": 60000000, "cast": [{"name": "Russell Crowe", "character": "John Nash", "id": 934, "credit_id": "52fe4245c3a36847f80113a3", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Ed Harris", "character": "William Parcher", "id": 228, "credit_id": "52fe4245c3a36847f80113a7", "cast_id": 5, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Alicia Nash", "id": 6161, "credit_id": "52fe4245c3a36847f80113ab", "cast_id": 6, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Dr. Rosen", "id": 290, "credit_id": "52fe4245c3a36847f80113af", "cast_id": 7, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Charles", "id": 6162, "credit_id": "52fe4245c3a36847f80113b3", "cast_id": 8, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Adam Goldberg", "character": "Sol", "id": 6163, "credit_id": "52fe4245c3a36847f80113b7", "cast_id": 9, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 4}, {"name": "Josh Lucas", "character": "Hansen", "id": 6164, "credit_id": "52fe4245c3a36847f80113bb", "cast_id": 10, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 5}, {"name": "Anthony Rapp", "character": "Bender", "id": 6165, "credit_id": "52fe4245c3a36847f80113bf", "cast_id": 11, "profile_path": "/a9SBIDqSXkJaxJHqDaHXNkLhOUs.jpg", "order": 6}, {"name": "Jason Gray-Stanford", "character": "Ainsley", "id": 6166, "credit_id": "52fe4245c3a36847f80113c3", "cast_id": 12, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 7}, {"name": "Judd Hirsch", "character": "Helinger", "id": 6167, "credit_id": "52fe4245c3a36847f80113c7", "cast_id": 13, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 8}, {"name": "Austin Pendleton", "character": "Thomas King", "id": 6168, "credit_id": "52fe4245c3a36847f80113cb", "cast_id": 14, "profile_path": "/pxcdhd4oAsnhvUg0BalmiiKJyXg.jpg", "order": 9}, {"name": "Vivien Cardone", "character": "Marcee", "id": 6169, "credit_id": "52fe4245c3a36847f80113cf", "cast_id": 15, "profile_path": "/kPE1dEd7obmXyc3vOfJSnTkDSXS.jpg", "order": 10}, {"name": "Jillie Simon", "character": "Bar Co-Ed", "id": 6170, "credit_id": "52fe4245c3a36847f80113d3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Victor Steinbach", "character": "Prof. Horner", "id": 6171, "credit_id": "52fe4245c3a36847f80113d7", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Tanya Clarke", "character": "Becky", "id": 6172, "credit_id": "52fe4245c3a36847f80113db", "cast_id": 18, "profile_path": "/zLpLrVzihPObD6h72KFxTNqdKuq.jpg", "order": 13}, {"name": "Thomas F. Walsh", "character": "Captain", "id": 6173, "credit_id": "52fe4245c3a36847f80113df", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Jesse Doran", "character": "General", "id": 6174, "credit_id": "52fe4245c3a36847f80113e3", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Kent Cassella", "character": "Analyst", "id": 6175, "credit_id": "52fe4245c3a36847f80113e7", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Patrick Blindauer", "character": "MIT Student", "id": 6176, "credit_id": "52fe4245c3a36847f80113eb", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "John Blaylock", "character": "Photographer", "id": 6177, "credit_id": "52fe4245c3a36847f80113ef", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Roy Thinnes", "character": "Governor", "id": 6178, "credit_id": "52fe4245c3a36847f80113f3", "cast_id": 24, "profile_path": "/tb8ZfsFfl8Smhr719E3pRutPJa9.jpg", "order": 19}, {"name": "Anthony Easton", "character": "Young Man", "id": 6179, "credit_id": "52fe4245c3a36847f80113f7", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "Cheryl Howard", "character": "Harvard Administrator", "id": 6180, "credit_id": "52fe4245c3a36847f80113fb", "cast_id": 26, "profile_path": "/sKnhM1uzCpi5uQrUbsx4C5ItrbB.jpg", "order": 21}, {"name": "Josh Pais", "character": "Princeton Professor", "id": 6181, "credit_id": "52fe4245c3a36847f80113ff", "cast_id": 27, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 22}, {"name": "David B. Allen", "character": "John Nash Teenager", "id": 6182, "credit_id": "52fe4245c3a36847f8011403", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Michael Esper", "character": "John Nash Young Man", "id": 6183, "credit_id": "52fe4245c3a36847f8011407", "cast_id": 29, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 24}, {"name": "Erik Van Wyck", "character": "Princeton Student", "id": 983467, "credit_id": "52fe4245c3a36847f8011477", "cast_id": 48, "profile_path": "/bEst6J6rjGWtIazgE4KqJc9R8qG.jpg", "order": 25}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f8011393", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 7.2, "runtime": 135}, "454": {"poster_path": "/f9C1NpoQfQ7Z4fJkyihNcjNDQJ.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147298761, "overview": "In director Baz Luhrmann's contemporary take on William Shakespeare's classic tragedy, the Montagues and Capulets have moved their ongoing feud to the sweltering suburb of Verona Beach, where Romeo and Juliet fall in love and secretly wed. Though the film is visually modern, the bard's dialogue remains.", "video": false, "id": 454, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Romeo + Juliet", "tagline": "My only love sprung from my only hate.", "vote_count": 268, "homepage": "http://www.romeoandjuliet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117509", "adult": false, "backdrop_path": "/ldiZsKkwVR7sHnkQZmzoPhKmEo3.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Bazmark Films", "id": 240}], "release_date": "1996-10-31", "popularity": 0.973622048439401, "original_title": "Romeo + Juliet", "budget": 14500000, "cast": [{"name": "Leonardo DiCaprio", "character": "Romeo", "id": 6193, "credit_id": "52fe4245c3a36847f80114bf", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Claire Danes", "character": "Juliet", "id": 6194, "credit_id": "52fe4245c3a36847f80114c3", "cast_id": 2, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Tybalt", "id": 5723, "credit_id": "52fe4245c3a36847f80114c7", "cast_id": 3, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Harold Perrineau", "character": "Mercutio", "id": 6195, "credit_id": "52fe4245c3a36847f80114cb", "cast_id": 4, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 3}, {"name": "Pete Postlethwaite", "character": "Father Laurence", "id": 4935, "credit_id": "52fe4245c3a36847f80114cf", "cast_id": 5, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 4}, {"name": "Paul Sorvino", "character": "Fulgencio Capulet", "id": 7004, "credit_id": "52fe4245c3a36847f8011563", "cast_id": 34, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 5}, {"name": "Brian Dennehy", "character": "Ted Montague", "id": 6197, "credit_id": "52fe4245c3a36847f80114d3", "cast_id": 6, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 6}, {"name": "Vondie Curtis-Hall", "character": "Captain Prince", "id": 6198, "credit_id": "52fe4245c3a36847f80114d7", "cast_id": 7, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 7}, {"name": "Miriam Margolyes", "character": "The Nurse", "id": 6199, "credit_id": "52fe4245c3a36847f80114db", "cast_id": 8, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 8}, {"name": "Diane Venora", "character": "Gloria Capulet", "id": 6200, "credit_id": "52fe4245c3a36847f80114df", "cast_id": 9, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 9}, {"name": "Jamie Kennedy", "character": "Sampson", "id": 6213, "credit_id": "52fe4245c3a36847f801154f", "cast_id": 29, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 10}, {"name": "Dash Mihok", "character": "Benvolio", "id": 6066, "credit_id": "52fe4245c3a36847f8011553", "cast_id": 30, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 11}, {"name": "Vincent Laresca", "character": "Abra", "id": 1983, "credit_id": "52fe4245c3a36847f8011557", "cast_id": 31, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 12}, {"name": "Edwina Moore", "character": "Anchorwoman", "id": 6214, "credit_id": "52fe4245c3a36847f801155b", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Paul Rudd", "character": "Dave Paris", "id": 22226, "credit_id": "52fe4245c3a36847f801155f", "cast_id": 33, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 14}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f8011539", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 6.3, "runtime": 120}, "455": {"poster_path": "/vb3AtMPnFCh5wLKNoowe2bbos8Y.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76578641, "overview": "Indian director Gurinder Chadha creates a coming-of-age story of a young Indian girl who is torn between adhering to family traditions and attaining super-stardom on the soccer field.", "video": false, "id": 455, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Bend It Like Beckham", "tagline": "Who wants to cook Aloo Gobi when you can bend a ball like Beckham?", "vote_count": 109, "homepage": "http://www2.foxsearchlight.com/benditlikebeckham/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pa", "name": "\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40"}], "imdb_id": "tt0286499", "adult": false, "backdrop_path": "/gLFYabYISrrpixzNREl3TlLEJ2v.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Kintop Pictures", "id": 1490}, {"name": "Filmf\u00f6rderung Hamburg", "id": 2406}, {"name": "UK Film Council", "id": 2452}], "release_date": "2002-04-11", "popularity": 0.840203440353288, "original_title": "Bend It Like Beckham", "budget": 3500159, "cast": [{"name": "Parminder Nagra", "character": "Jesminder 'Jess' Kaur Bhamra", "id": 231610, "credit_id": "52fe4246c3a36847f8011651", "cast_id": 33, "profile_path": "/dwOh7WvwhcK8qXzGuMLhueiy1C.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Juliette 'Jules' Paxton", "id": 116, "credit_id": "52fe4245c3a36847f80115ad", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Jonathan Rhys Meyers", "character": "Joe", "id": 1244, "credit_id": "52fe4245c3a36847f80115b1", "cast_id": 3, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 2}, {"name": "Anupam Kher", "character": "Mr. Bhamra", "id": 6217, "credit_id": "52fe4245c3a36847f80115b5", "cast_id": 4, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 3}, {"name": "Shaheen Khan", "character": "Mrs. Bhamra", "id": 6218, "credit_id": "52fe4245c3a36847f80115b9", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Frank Harper", "character": "Alan Paxton", "id": 990, "credit_id": "52fe4246c3a36847f8011641", "cast_id": 29, "profile_path": "/6MaOt1Q6Js7jiA3qsHIcSGY1bbf.jpg", "order": 5}, {"name": "Juliet Stevenson", "character": "Paula Paxton", "id": 6238, "credit_id": "52fe4246c3a36847f8011645", "cast_id": 30, "profile_path": "/1LBlN6J5e6kj3y6oxnxErAJidL8.jpg", "order": 6}, {"name": "Ameet Chana", "character": "Tony", "id": 6239, "credit_id": "52fe4246c3a36847f8011649", "cast_id": 31, "profile_path": "/yS2siAYTSMqUBwtPpVQ7ONrJbrC.jpg", "order": 7}, {"name": "Archie Panjabi", "character": "Pinky Bhamra", "id": 128645, "credit_id": "52fe4246c3a36847f801164d", "cast_id": 32, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 8}, {"name": "Pooja Shah", "character": "Meena", "id": 1227682, "credit_id": "52fe4246c3a36847f8011655", "cast_id": 34, "profile_path": "/sfIqXN8AxH7mVGEMmI7Jt8vakgU.jpg", "order": 9}, {"name": "Preeya Kalidas", "character": "Monica", "id": 117795, "credit_id": "52fe4246c3a36847f8011659", "cast_id": 35, "profile_path": "/4toEBtcEY0lIKqEoliz5T0bEtMj.jpg", "order": 10}, {"name": "Ace Bhatti", "character": "Nairobi Grandson", "id": 1227784, "credit_id": "52fe4246c3a36847f801165d", "cast_id": 36, "profile_path": null, "order": 11}], "directors": [{"name": "Gurinder Chadha", "department": "Directing", "job": "Director", "credit_id": "52fe4245c3a36847f80115bf", "profile_path": "/AbUt77nmapBzaXMq9EvNNjK0ZMm.jpg", "id": 6220}], "vote_average": 5.9, "runtime": 112}, "57800": {"poster_path": "/u30xsZd3mijrdBKA6CeDsozx48g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 877244782, "overview": "Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.", "video": false, "id": 57800, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age: Continental Drift", "tagline": "Manny, Diego, and Sid embark upon another adventure after their continent is set adrift.", "vote_count": 1346, "homepage": "http://www.iceagemovie.com/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1667889", "adult": false, "backdrop_path": "/tZGKKeWGejt63jiSdi7MTAjCFE9.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2012-07-13", "popularity": 2.11935447192291, "original_title": "Ice Age: Continental Drift", "budget": 95000000, "cast": [{"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe4945c3a36847f8191f47", "cast_id": 3, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 0}, {"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe4945c3a36847f8191f4b", "cast_id": 4, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 1}, {"name": "Chris Wedge", "character": "Scrat (voice)", "id": 5713, "credit_id": "52fe4945c3a36847f8191f43", "cast_id": 2, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 2}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe4945c3a36847f8191f4f", "cast_id": 5, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 3}, {"name": "Seann William Scott", "character": "Crash (voice)", "id": 57599, "credit_id": "52fe4945c3a36847f8191f65", "cast_id": 9, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 4}, {"name": "Jennifer Lopez", "character": "Shira (voice)", "id": 16866, "credit_id": "52fe4945c3a36847f8191f69", "cast_id": 10, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 5}, {"name": "Queen Latifah", "character": "Ellie (voice)", "id": 15758, "credit_id": "52fe4945c3a36847f8191f6d", "cast_id": 11, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Captain Gutt (voice)", "id": 22970, "credit_id": "52fe4945c3a36847f8191f71", "cast_id": 12, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Nick Frost", "character": "Flynn (voice)", "id": 11109, "credit_id": "52fe4945c3a36847f8191f75", "cast_id": 13, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 8}, {"name": "Josh Gad", "character": "Louis (voice)", "id": 54415, "credit_id": "52fe4945c3a36847f8191f79", "cast_id": 14, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 9}, {"name": "Nicki Minaj", "character": "Steffie (voice)", "id": 968660, "credit_id": "52fe4945c3a36847f8191f7d", "cast_id": 15, "profile_path": "/kxbMXTarZ7btT0BEHx700chph7m.jpg", "order": 10}, {"name": "Heather Morris", "character": "Katie (voice)", "id": 221606, "credit_id": "52fe4946c3a36847f8191f81", "cast_id": 16, "profile_path": "/koExd1GaoNDXtDe07DqfgIYpewC.jpg", "order": 11}, {"name": "Wanda Sykes", "character": "Granny (voice)", "id": 27102, "credit_id": "52fe4946c3a36847f8191f85", "cast_id": 17, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 12}, {"name": "Alan Tudyk", "character": "Milton / Hunky Siren (voice)", "id": 21088, "credit_id": "52fe4946c3a36847f8191f89", "cast_id": 18, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 13}, {"name": "Rebel Wilson", "character": "Raz (voice)", "id": 221581, "credit_id": "52fe4946c3a36847f8191f8d", "cast_id": 19, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 14}, {"name": "Aziz Ansari", "character": "Squint (voice)", "id": 86626, "credit_id": "52fe4946c3a36847f8191f91", "cast_id": 20, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 15}, {"name": "Joy Behar", "character": "Eunice (voice)", "id": 166772, "credit_id": "52fe4946c3a36847f8191f95", "cast_id": 21, "profile_path": "/85fQO74oEjAYKz9kojRA87svf3F.jpg", "order": 16}, {"name": "Christopher Campbell", "character": "Creature Siren (voice)", "id": 1315615, "credit_id": "53620d3a0e0a2649b1001282", "cast_id": 23, "profile_path": null, "order": 17}], "directors": [{"name": "Steve Martino", "department": "Directing", "job": "Director", "credit_id": "52fe4945c3a36847f8191f3f", "profile_path": "/rrzPXZh0fj0QBkfWGOZdtb9Ppy1.jpg", "id": 71729}, {"name": "Mike Thurmeier", "department": "Directing", "job": "Director", "credit_id": "52fe4945c3a36847f8191f61", "profile_path": "/zrnMfWbX5rrmZSmTPZZDD6RqdOE.jpg", "id": 229962}], "vote_average": 6.1, "runtime": 88}, "9823": {"poster_path": "/rV6gISHgfmppOJ41UNFlAvNg9ZI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51000000, "overview": "A group of heroic warriors has only six days to save the planet in \"Mortal Kombat Annihilation.\" To succeed they must survive the most spectacular series of challenges any human, or god, has ever encountered as they battle an evil warlord bent on taking control of Earth. Sequel to the film \"Mortal Kombat,\" and based on the popular video game.", "video": false, "id": 9823, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Mortal Kombat: Annihilation", "tagline": "The world was created in six days, so too shall it be destroyed and on the seventh day mankind will rest... in peace", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qD3efz57VGNywAN4lTvgz3FHnBb.jpg", "poster_path": "/quwcbufZZiTMUjuiGSLKBkWWaga.jpg", "id": 9818, "name": "Mortal Kombat Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119707", "adult": false, "backdrop_path": "/ka8gyslJtjmnZ8Xk7YyoYwgo2ud.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Threshold Entertainment", "id": 4174}], "release_date": "1997-11-21", "popularity": 0.749752871275398, "original_title": "Mortal Kombat: Annihilation", "budget": 30000000, "cast": [{"name": "Robin Shou", "character": "Liu Kang", "id": 57250, "credit_id": "52fe4534c3a36847f80c2023", "cast_id": 1, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 0}, {"name": "Talisa Soto", "character": "Kitana", "id": 10680, "credit_id": "52fe4534c3a36847f80c2027", "cast_id": 2, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 1}, {"name": "Sandra Hess", "character": "Sonya Blade", "id": 59642, "credit_id": "52fe4534c3a36847f80c202b", "cast_id": 3, "profile_path": "/dBgs8LxZgMbfdNw8yZqEvB6HYZM.jpg", "order": 2}, {"name": "Lynn 'Red' Williams", "character": "Jax", "id": 59643, "credit_id": "52fe4534c3a36847f80c202f", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "James Remar", "character": "Rayden", "id": 1736, "credit_id": "52fe4534c3a36847f80c204b", "cast_id": 9, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 4}, {"name": "Brian Thompson", "character": "Shao-Kahn", "id": 2719, "credit_id": "52fe4534c3a36847f80c204f", "cast_id": 10, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 5}, {"name": "Reiner Sch\u00f6ne", "character": "Shinnok", "id": 38624, "credit_id": "52fe4534c3a36847f80c2053", "cast_id": 11, "profile_path": "/iVgta6yRKanExYsyhmbKv77HRyP.jpg", "order": 6}, {"name": "Musetta Vander", "character": "Sindel", "id": 1475, "credit_id": "52fe4534c3a36847f80c2057", "cast_id": 12, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 7}, {"name": "Irina Pantaeva", "character": "Jade", "id": 69532, "credit_id": "52fe4534c3a36847f80c205b", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Deron McBee", "character": "Motaro", "id": 31368, "credit_id": "52fe4534c3a36847f80c205f", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Marjean Holden", "character": "Sheeva", "id": 106728, "credit_id": "52fe4534c3a36847f80c2063", "cast_id": 15, "profile_path": "/6oK37CIHfEeJrn2ZdefS0nx9WnW.jpg", "order": 10}, {"name": "Litefoot", "character": "Nightwolf", "id": 69302, "credit_id": "52fe4534c3a36847f80c2067", "cast_id": 16, "profile_path": "/6MmZFvtuY2Vmnt6lDsC7hw8lk4X.jpg", "order": 11}, {"name": "Chris Conrad", "character": "Johnny Cage", "id": 227199, "credit_id": "52fe4534c3a36847f80c206b", "cast_id": 17, "profile_path": "/mPwhcY9CfnelhKgEV3OAxfg36xH.jpg", "order": 12}, {"name": "John Medlen", "character": "Ermac", "id": 1068803, "credit_id": "52fe4534c3a36847f80c206f", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "J.J. Perry", "character": "Cyrax / Scorpion", "id": 131532, "credit_id": "52fe4534c3a36847f80c2073", "cast_id": 19, "profile_path": null, "order": 14}], "directors": [{"name": "John R. Leonetti", "department": "Directing", "job": "Director", "credit_id": "52fe4534c3a36847f80c2035", "profile_path": "/7cKC9u81p5OL5loj2PzjepPcjFV.jpg", "id": 26714}], "vote_average": 4.3, "runtime": 95}, "462": {"poster_path": "/8WLnzPVUh9rSYGGQ11q4wfbwf6H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 256271286, "overview": "A twice-divorced mother of three who sees an injustice, takes on the bad guy and wins -- with a little help from her push-up bra. Erin goes to work for an attorney and comes across medical records describing illnesses clustered in one nearby town. She starts investigating and soon exposes a monumental cover-up.", "video": false, "id": 462, "genres": [{"id": 18, "name": "Drama"}], "title": "Erin Brockovich", "tagline": "She brought a small town to its feet and a huge corporation to its knees.", "vote_count": 186, "homepage": "http://www.brockovich.com/movie.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0195685", "adult": false, "backdrop_path": "/b21P45NQHZ9J8C871pNBrK0rJr3.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2000-03-13", "popularity": 0.934131455255207, "original_title": "Erin Brockovich", "budget": 51000000, "cast": [{"name": "Julia Roberts", "character": "Erin Brockovich", "id": 1204, "credit_id": "52fe4246c3a36847f801198d", "cast_id": 25, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Albert Finney", "character": "Ed Masry", "id": 3926, "credit_id": "52fe4246c3a36847f8011991", "cast_id": 26, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "George", "id": 6383, "credit_id": "52fe4246c3a36847f8011995", "cast_id": 27, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Marg Helgenberger", "character": "Donna Jensen", "id": 19838, "credit_id": "52fe4246c3a36847f8011999", "cast_id": 28, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 3}, {"name": "Cherry Jones", "character": "Pamela Duncan", "id": 1956, "credit_id": "52fe4246c3a36847f801199d", "cast_id": 29, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 4}, {"name": "Veanne Cox", "character": "Theresa Dallavale", "id": 26719, "credit_id": "52fe4246c3a36847f80119a1", "cast_id": 30, "profile_path": "/7fxVktlpPBAEWImceQB9wTPb90H.jpg", "order": 5}, {"name": "Conchata Ferrell", "character": "Brenda", "id": 1909, "credit_id": "52fe4246c3a36847f80119a5", "cast_id": 31, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 6}, {"name": "Tracey Walter", "character": "Charles Embry", "id": 3801, "credit_id": "52fe4246c3a36847f80119a9", "cast_id": 32, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 7}, {"name": "Peter Coyote", "character": "Kurt Potter", "id": 9979, "credit_id": "52fe4246c3a36847f80119ad", "cast_id": 33, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 8}, {"name": "Erin Brockovich", "character": "Julia R.", "id": 1248986, "credit_id": "543db078c3a368251a00086b", "cast_id": 34, "profile_path": null, "order": 9}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4246c3a36847f801193b", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.7, "runtime": 131}, "8656": {"poster_path": "/nbF4Tuj4OY8btrjoOHtk64hkKbJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140464664, "overview": "A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.", "video": false, "id": 8656, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Deep Impact", "tagline": "Heaven and Earth are about to collide.", "vote_count": 229, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120647", "adult": false, "backdrop_path": "/n4SEfHpFZFRHxNMX4qNjqOQkWJp.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Zanuck/Brown Productions", "id": 1865}, {"name": "Manhattan Project", "id": 2478}], "release_date": "1998-05-07", "popularity": 0.695298803492022, "original_title": "Deep Impact", "budget": 75000000, "cast": [{"name": "Robert Duvall", "character": "Capt. Spurgeon 'Fish' Tanner", "id": 3087, "credit_id": "52fe44b2c3a36847f80a4df9", "cast_id": 1, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Jenny Lerner", "id": 4939, "credit_id": "52fe44b2c3a36847f80a4dfd", "cast_id": 2, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Leo Biederman", "id": 109, "credit_id": "52fe44b2c3a36847f80a4e01", "cast_id": 3, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Vanessa Redgrave", "character": "Robin Lerner", "id": 13333, "credit_id": "52fe44b2c3a36847f80a4e05", "cast_id": 4, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 3}, {"name": "Morgan Freeman", "character": "President Tom Beck", "id": 192, "credit_id": "52fe44b2c3a36847f80a4e09", "cast_id": 5, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 4}, {"name": "Maximilian Schell", "character": "Jason Lerner", "id": 12150, "credit_id": "52fe44b2c3a36847f80a4e0d", "cast_id": 6, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 5}, {"name": "Leelee Sobieski", "character": "Sarah Hotchner", "id": 22290, "credit_id": "52fe44b2c3a36847f80a4e59", "cast_id": 19, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 6}, {"name": "James Cromwell", "character": "Alan Rittenhouse", "id": 2505, "credit_id": "52fe44b2c3a36847f80a4e5d", "cast_id": 20, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 7}, {"name": "Jon Favreau", "character": "Gus Partenza", "id": 15277, "credit_id": "52fe44b2c3a36847f80a4e61", "cast_id": 21, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 8}, {"name": "Laura Innes", "character": "Beth Stanley", "id": 454973, "credit_id": "52fe44b2c3a36847f80a4e65", "cast_id": 22, "profile_path": "/1XMMSTVdPIgYfxUwTF4em8T5rB0.jpg", "order": 9}, {"name": "Mary McCormack", "character": "Andrea Baker", "id": 1980, "credit_id": "52fe44b2c3a36847f80a4e69", "cast_id": 23, "profile_path": "/vMS1VGv0Cd2PMo2cuceNBPsd1GH.jpg", "order": 10}, {"name": "Richard Schiff", "character": "Don Biederman", "id": 31028, "credit_id": "52fe44b2c3a36847f80a4e6d", "cast_id": 24, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 11}, {"name": "Blair Underwood", "character": "Mark Simon", "id": 56871, "credit_id": "52fe44b2c3a36847f80a4e71", "cast_id": 25, "profile_path": "/xDqEtEwJNb3fDYnopeFlmMYVQ66.jpg", "order": 12}, {"name": "Charles Martin Smith", "character": "Dr. Marcus Wolf (uncredited)", "id": 1270, "credit_id": "52fe44b2c3a36847f80a4e75", "cast_id": 26, "profile_path": "/fahfWqqrdJwajrfEGmEOXQ1p9bm.jpg", "order": 13}, {"name": "Una Damon", "character": "Marianne Duclos", "id": 154644, "credit_id": "52fe44b2c3a36847f80a4e79", "cast_id": 27, "profile_path": "/d3dcUIwjXY0mH6QplM98L8fswzA.jpg", "order": 14}, {"name": "Dougray Scott", "character": "Eric Vennekor", "id": 15336, "credit_id": "52fe44b2c3a36847f80a4e7d", "cast_id": 28, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 15}, {"name": "Derek de Lint", "character": "Theo Van Sertema", "id": 9128, "credit_id": "547c40eb9251412d7800237c", "cast_id": 77, "profile_path": "/1BhDuHRp2ffTkYVeGKGQM46xGyN.jpg", "order": 16}, {"name": "Suzy Nakamura", "character": "Jenny's Assistant", "id": 26998, "credit_id": "547c411dc3a3685af00028e2", "cast_id": 78, "profile_path": "/rymamRd9wzjZquxMBKWOkylD5wN.jpg", "order": 17}, {"name": "Alimi Ballard", "character": "Bobby Rhue", "id": 165284, "credit_id": "547c414c9251412d6d00255f", "cast_id": 79, "profile_path": "/zCYjN3Lkkx9GmhEoT9lUV6Dt2hR.jpg", "order": 18}, {"name": "W. Earl Brown", "character": "McCloud", "id": 6951, "credit_id": "547c41659251412d7f0025f7", "cast_id": 80, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 19}, {"name": "Denise Crosby", "character": "Vicky Hotchner", "id": 1743, "credit_id": "547c4182c3a3685af3001f92", "cast_id": 81, "profile_path": "/6vJh3H3dTvgnZ1YoHE1qYM1AbRC.jpg", "order": 20}, {"name": "Jason Dohring", "character": "Jason", "id": 158095, "credit_id": "547c41ab9251412d700027c7", "cast_id": 82, "profile_path": "/8DrH4ERl7JPv1FXDhkAQPOYIL1S.jpg", "order": 21}, {"name": "Tucker Smallwood", "character": "Ivan Brodsky", "id": 92777, "credit_id": "54b4d727c3a368783b001b18", "cast_id": 83, "profile_path": null, "order": 22}, {"name": "Mike O'Malley", "character": "Mike Perry", "id": 87192, "credit_id": "54b4d733c3a368094e008d9a", "cast_id": 84, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 23}, {"name": "Kurtwood Smith", "character": "Otis Hefter", "id": 2115, "credit_id": "54b4d73c92514107e0007973", "cast_id": 85, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 24}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe44b2c3a36847f80a4e13", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 5.5, "runtime": 120}, "470": {"poster_path": "/jOmnwKmy4fF6rQPET62XHfCLFMr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60427839, "overview": "This is the story of three gentle persons: Paul Rivers an ailing mathematician lovelessly married to an English \u00e9migr\u00e9, Christina Peck, an upper-middle-class suburban housewife, happily married and mother of two little girls, and Jack Jordan, an ex-convict who has found in his Christian faith the strength to raise a family. They will be brought together by a terrible accident that will change their lives. By the final frame, none of them will be the same as they will learn harsh truths about love, faith, courage, desire and guilt, and how chance can change our worlds irretrievably, forever.", "video": false, "id": 470, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "21 Grams", "tagline": "How much does life weigh?", "vote_count": 235, "homepage": "http://www.21-grams.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0315733", "adult": false, "backdrop_path": "/lSPsevGgWT3Rqc9OMTyeEsZsOpf.jpg", "production_companies": [{"name": "This Is That Productions", "id": 10059}, {"name": "Y Productions", "id": 10887}, {"name": "Mediana Productions Filmgesellschaft", "id": 10888}], "release_date": "2003-11-21", "popularity": 0.957140817048579, "original_title": "21 Grams", "budget": 20000000, "cast": [{"name": "Sean Penn", "character": "Paul Rivers", "id": 2228, "credit_id": "52fe4247c3a36847f8011e25", "cast_id": 3, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Naomi Watts", "character": "Cristina Peck", "id": 3489, "credit_id": "52fe4247c3a36847f8011e29", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 1}, {"name": "Benicio del Toro", "character": "Jack Jordan", "id": 1121, "credit_id": "52fe4247c3a36847f8011e75", "cast_id": 17, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 2}, {"name": "Danny Huston", "character": "Michael", "id": 6413, "credit_id": "52fe4247c3a36847f8011e79", "cast_id": 18, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Carly Nahon", "character": "Cathy", "id": 6830, "credit_id": "52fe4247c3a36847f8011e7d", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Claire Pakis", "character": "Laura", "id": 6831, "credit_id": "52fe4247c3a36847f8011e81", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Eddie Marsan", "character": "Reverend John", "id": 1665, "credit_id": "52fe4247c3a36847f8011e85", "cast_id": 21, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 6}, {"name": "Melissa Leo", "character": "Marianne Jordan", "id": 6832, "credit_id": "52fe4247c3a36847f8011e89", "cast_id": 22, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 7}, {"name": "Charlotte Gainsbourg", "character": "Mary Rivers", "id": 4273, "credit_id": "52fe4247c3a36847f8011e8d", "cast_id": 23, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 8}, {"name": "Clea DuVall", "character": "Claudia", "id": 20387, "credit_id": "52fe4247c3a36847f8011e91", "cast_id": 24, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 9}, {"name": "Teresa Delgado", "character": "Gina", "id": 1276049, "credit_id": "52fe4247c3a36847f8011e95", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Denis O'Hare", "character": "Dr. Rothberg", "id": 81681, "credit_id": "52fe4247c3a36847f8011e99", "cast_id": 26, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 11}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe4247c3a36847f8011e1b", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 6.9, "runtime": 124}, "473": {"poster_path": "/d4pDorUHjIVFiVGiJar6sF2r8TQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3221152, "overview": "The debut film from Darren Aronofsky in which a mathematical genius Maximilian Cohen discovers a link in the connection between numbers and reality and thus believes he can predict the future.", "video": false, "id": 473, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Pi", "tagline": "There will be no order, only chaos", "vote_count": 124, "homepage": "http://www.pithemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138704", "adult": false, "backdrop_path": "/v8hOSHK0dwgwR80CZuxvMFc0DCx.jpg", "production_companies": [{"name": "Harvest Filmworks", "id": 22566}, {"name": "Truth and Soul Pictures Inc", "id": 379}, {"name": "Plantain Films", "id": 22567}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "1998-07-10", "popularity": 1.00941619605592, "original_title": "\u03c0", "budget": 60000, "cast": [{"name": "Sean Gullette", "character": "Maximillian Cohen", "id": 6432, "credit_id": "52fe4247c3a36847f8011f57", "cast_id": 5, "profile_path": "/mYW9HkRhFvubojfZZX5jbTXLsZa.jpg", "order": 0}, {"name": "Mark Margolis", "character": "Sol Robeson", "id": 1173, "credit_id": "52fe4247c3a36847f8011f7f", "cast_id": 12, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 1}, {"name": "Ben Shenkman", "character": "Lenny Meyer", "id": 6437, "credit_id": "52fe4247c3a36847f8011f83", "cast_id": 13, "profile_path": "/ocLEexcLxffgLJ41wuqc80YmdeY.jpg", "order": 2}, {"name": "Stephen Pearlman", "character": "Rabbi Cohen", "id": 6438, "credit_id": "52fe4247c3a36847f8011f87", "cast_id": 15, "profile_path": "/a1LcI65LvyKKi5UmaAc2PPihsQm.jpg", "order": 3}, {"name": "Samia Shoaib", "character": "Devi", "id": 6439, "credit_id": "52fe4247c3a36847f8011f8b", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Ajay Naidu", "character": "Farroukh", "id": 1982, "credit_id": "52fe4247c3a36847f8011f8f", "cast_id": 17, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 5}, {"name": "Kristyn Mae-Anne Lao", "character": "Jenna", "id": 6440, "credit_id": "52fe4247c3a36847f8011f93", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Espher Lao Nieves", "character": "Jenna's Mom", "id": 6441, "credit_id": "52fe4247c3a36847f8011f97", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Pamela Hart", "character": "Marcy Dawson", "id": 177560, "credit_id": "52fe4247c3a36847f8011fad", "cast_id": 23, "profile_path": null, "order": 8}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe4247c3a36847f8011f53", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 7.0, "runtime": 84}, "475": {"poster_path": "/isuVmlzVtJVUqySAmkjLB4kXdNm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50700000, "overview": "Bonnie and Clyde is based on the true stories of the gangster pair Bonnie Parker and Clyde Barrow who in the 1930s began robbing banks in U.S. cities until they were eventually killed. The film is a major landmark in the aesthetic movement known as the New Hollywood.", "video": false, "id": 475, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bonnie and Clyde", "tagline": "They\u2019re young\u2026 they\u2019re in love\u2026 and they kill people.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061418", "adult": false, "backdrop_path": "/lQPMBJ1rm9Qk0cHd1C1lAbJcXJj.jpg", "production_companies": [{"name": "Tatira-Hiller Productions", "id": 273}, {"name": "Warner Brothers/Seven Arts", "id": 4051}], "release_date": "1967-08-04", "popularity": 0.262686325326877, "original_title": "Bonnie and Clyde", "budget": 2500000, "cast": [{"name": "Warren Beatty", "character": "Clyde Barrow", "id": 6449, "credit_id": "52fe4247c3a36847f8011feb", "cast_id": 2, "profile_path": "/qVwqGRh3gkjwF7DESvoYDINfnCM.jpg", "order": 0}, {"name": "Faye Dunaway", "character": "Bonnie Parker", "id": 6450, "credit_id": "52fe4247c3a36847f8011fef", "cast_id": 3, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 1}, {"name": "Michael J. Pollard", "character": "C.W. Moss", "id": 6451, "credit_id": "52fe4247c3a36847f8011ff3", "cast_id": 4, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 2}, {"name": "Gene Wilder", "character": "Eugene Grizzard", "id": 3460, "credit_id": "52fe4247c3a36847f8011ff7", "cast_id": 5, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 3}, {"name": "Gene Hackman", "character": "Buck Barrow", "id": 193, "credit_id": "52fe4248c3a36847f801203d", "cast_id": 17, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 4}, {"name": "Estelle Parsons", "character": "Blanche", "id": 6461, "credit_id": "52fe4248c3a36847f8012041", "cast_id": 18, "profile_path": "/oqNpQBYgDvBCrLGzRDJwclNBDmd.jpg", "order": 5}, {"name": "Denver Pyle", "character": "Frank Hamer", "id": 6462, "credit_id": "52fe4248c3a36847f8012045", "cast_id": 19, "profile_path": "/cnO648FW7r1NQqHZsPkJBACfXal.jpg", "order": 6}, {"name": "Dub Taylor", "character": "Ivan Moss", "id": 6463, "credit_id": "52fe4248c3a36847f8012049", "cast_id": 20, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 7}, {"name": "Evans Evans", "character": "Velma Davis", "id": 6464, "credit_id": "52fe4248c3a36847f801204d", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Mabel Cavitt", "character": "Bonnie's mother", "id": 6798, "credit_id": "52fe4248c3a36847f801205d", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Arthur Penn", "department": "Directing", "job": "Director", "credit_id": "52fe4247c3a36847f8011fe7", "profile_path": "/cUyfXc7nQf1qhuxtdtL8CNHPKXC.jpg", "id": 6448}], "vote_average": 7.7, "runtime": 111}, "41436": {"poster_path": "/hFMMrqDR16yNRf77plyvbkxohg6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177512032, "overview": "Just as Dan and Kristi welcome a newborn baby into their home, a demonic presence begins terrorizing them, tearing apart their perfect world and turning it into an inescapable nightmare. Security cameras capture the torment, making every minute horrifyingly real.", "video": false, "id": 41436, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Paranormal Activity 2", "tagline": "In 2009 you demanded it. Nothing can prepare you for what's next.", "vote_count": 180, "homepage": "http://www.paranormalmovie.com/trailer/", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1536044", "adult": false, "backdrop_path": "/dhaxwFoaOGIKnJiqHl5hndmyU0s.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}], "release_date": "2010-10-20", "popularity": 0.682220202664951, "original_title": "Paranormal Activity 2", "budget": 3000000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe45cac3a36847f80da779", "cast_id": 3, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "David Bierend", "character": "Surveillance Camera Expert", "id": 141373, "credit_id": "52fe45cac3a36847f80da77d", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Brian Boland", "character": "Daniel Rey", "id": 87220, "credit_id": "52fe45cac3a36847f80da781", "cast_id": 5, "profile_path": "/lZreGWhm68vzL6yCw5hz2WdlFCX.jpg", "order": 2}, {"name": "Molly Ephraim", "character": "Ali Rey", "id": 141374, "credit_id": "52fe45cac3a36847f80da785", "cast_id": 6, "profile_path": "/d0jIHbnipL3VpDSk25sqyFT2Y7O.jpg", "order": 3}, {"name": "Seth Ginsberg", "character": "Brad", "id": 141378, "credit_id": "52fe45cac3a36847f80da789", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Sprague Grayden", "character": "Kristi Rey", "id": 118243, "credit_id": "52fe45cac3a36847f80da78d", "cast_id": 8, "profile_path": "/xgFJngEapZILERHqwkxu07LNZwN.jpg", "order": 5}, {"name": "William Juan Prieto", "character": "Hunter Rey", "id": 141382, "credit_id": "52fe45cac3a36847f80da791", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Jackson Xenia Prieto", "character": "Hunter Rey", "id": 141385, "credit_id": "52fe45cac3a36847f80da795", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Micah Sloat", "character": "Micah", "id": 90597, "credit_id": "52fe45cac3a36847f80da799", "cast_id": 11, "profile_path": "/mOmwvae1N5eZqDZBqaHPe2JiTQV.jpg", "order": 8}, {"name": "Vivis Cortez", "character": "Martine", "id": 141387, "credit_id": "52fe45cac3a36847f80da79d", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Tod Williams", "department": "Directing", "job": "Director", "credit_id": "52fe45cac3a36847f80da775", "profile_path": null, "id": 20133}], "vote_average": 5.8, "runtime": 91}, "8669": {"poster_path": "/xCirDLSaQwuPhKyQ2kP9AGLidQ0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Awkward teenager Charlie Bartlett (Anton Yelchin) has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.", "video": false, "id": 8669, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Charlie Bartlett", "tagline": "Popularity is a state of mind.", "vote_count": 50, "homepage": "http://www.charliebartlett-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0423977", "adult": false, "backdrop_path": "/mw6yIekHtl1eLCMLVc9vPfHNSsJ.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2007-05-01", "popularity": 0.323334593502107, "original_title": "Charlie Bartlett", "budget": 12000000, "cast": [{"name": "Anton Yelchin", "character": "Charlie Bartlett", "id": 21028, "credit_id": "52fe44b3c3a36847f80a5139", "cast_id": 10, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Nathan Gardner", "id": 3223, "credit_id": "52fe44b3c3a36847f80a5159", "cast_id": 21, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Hope Davis", "character": "Marilyn Bartlett", "id": 15250, "credit_id": "52fe44b3c3a36847f80a515d", "cast_id": 22, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 2}, {"name": "Kat Dennings", "character": "Susan Gardner", "id": 52852, "credit_id": "52fe44b3c3a36847f80a513d", "cast_id": 13, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 3}, {"name": "Tyler Hilton", "character": "Murphy Bivens", "id": 419, "credit_id": "52fe44b3c3a36847f80a5141", "cast_id": 14, "profile_path": "/6CKulnmKgIuKB455pHd0m8hWeFm.jpg", "order": 4}, {"name": "Mark Rendall", "character": "Kip Crombwell", "id": 34918, "credit_id": "52fe44b3c3a36847f80a5145", "cast_id": 15, "profile_path": "/4c2wmuLgfgBZwV3cJmdGjtC1Pc1.jpg", "order": 5}, {"name": "Dylan Taylor", "character": "Len Arbuckle", "id": 55614, "credit_id": "52fe44b3c3a36847f80a5149", "cast_id": 16, "profile_path": "/8BfilcbTNnDysk8F3gW8FTfZicp.jpg", "order": 6}, {"name": "Megan Park", "character": "Whitney Drummond", "id": 55615, "credit_id": "52fe44b3c3a36847f80a514d", "cast_id": 17, "profile_path": "/AjIaQKbjMgYcJxalCBM4MGREss0.jpg", "order": 7}, {"name": "Jake Epstein", "character": "Dustin Lauderbach", "id": 1212580, "credit_id": "52fe44b3c3a36847f80a5161", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Jonathan Malen", "character": "Jordan Sunder", "id": 116638, "credit_id": "52fe44b3c3a36847f80a5165", "cast_id": 24, "profile_path": "/7JyXJnXZ1327otRcmGG3OdfbqMK.jpg", "order": 9}, {"name": "Derek McGrath", "character": "Superintendent Sedgwick", "id": 1196133, "credit_id": "52fe44b3c3a36847f80a5169", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Stephen Young", "character": "Dr. Stan Weathers", "id": 40551, "credit_id": "52fe44b3c3a36847f80a5151", "cast_id": 18, "profile_path": "/c5GWhpWEnLCTJQLEQR1P5n81fsp.jpg", "order": 11}, {"name": "Ishan Dav\u00e9", "character": "Henry Freemont", "id": 963433, "credit_id": "52fe44b3c3a36847f80a516d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Dave Brown", "character": "Officer Hansen", "id": 182396, "credit_id": "52fe44b3c3a36847f80a5171", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Eric Fink", "character": "Thomas", "id": 94833, "credit_id": "52fe44b3c3a36847f80a5175", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Noam Jenkins", "character": "Dean West", "id": 33668, "credit_id": "52fe44b3c3a36847f80a5179", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Lauren Collins", "character": "Kelly", "id": 88620, "credit_id": "52fe44b3c3a36847f80a517d", "cast_id": 30, "profile_path": "/tJXG80Y7ve9cS0YRHNUG4ehO5ks.jpg", "order": 16}, {"name": "Annick Obonsawin", "character": "Daisy", "id": 1212302, "credit_id": "52fe44b3c3a36847f80a5181", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Sarah Gadon", "character": "Priscilla", "id": 190895, "credit_id": "52fe44b3c3a36847f80a5155", "cast_id": 20, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 18}, {"name": "Aubrey Graham", "character": "A/V Jones", "id": 197315, "credit_id": "52fe44b3c3a36847f80a5185", "cast_id": 32, "profile_path": "/1hQ1hwFe3rNpY8QuMPLrSVVetzx.jpg", "order": 19}, {"name": "Michael D'Ascenzo", "character": "Scott", "id": 205446, "credit_id": "52fe44b3c3a36847f80a5189", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Dwane McLean", "character": "Bus Driver", "id": 1281020, "credit_id": "52fe44b3c3a36847f80a518d", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Quancetia Hamilton", "character": "Mrs. Albertson", "id": 184388, "credit_id": "52fe44b3c3a36847f80a5191", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Richard Alan Campbell", "character": "Dr. Sam Costell", "id": 64310, "credit_id": "52fe44b3c3a36847f80a5195", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Kim Roberts", "character": "Dr. Linda Jenkins", "id": 2676, "credit_id": "52fe44b3c3a36847f80a5199", "cast_id": 37, "profile_path": "/buXKE9uKIjT4u0TZXv32zgqDCOR.jpg", "order": 24}, {"name": "David Fraser", "character": "Dr. Jacob Kaufmann", "id": 44101, "credit_id": "52fe44b3c3a36847f80a519d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Marvin Karon", "character": "Dr. P. Sarossy", "id": 1239376, "credit_id": "52fe44b3c3a36847f80a51a1", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Brendan Murray", "character": "Dorm Head", "id": 1239511, "credit_id": "52fe44b3c3a36847f80a51a5", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Abigail Bernardez", "character": "Cheerleader #1", "id": 1281021, "credit_id": "52fe44b3c3a36847f80a51a9", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Laura Jeanes", "character": "Cheerleader #2", "id": 1281022, "credit_id": "52fe44b3c3a36847f80a51ad", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Annamaria Janice McAndrew", "character": "Cheerleader #3", "id": 1281023, "credit_id": "52fe44b3c3a36847f80a51b1", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Amelia Tenttave", "character": "Len's Girlfriend #1", "id": 1281024, "credit_id": "52fe44b3c3a36847f80a51b5", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Annabelle Singson", "character": "Len's Girlfriend #2", "id": 1281025, "credit_id": "52fe44b3c3a36847f80a51b9", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Julia Cohen", "character": "Receptionist", "id": 1281026, "credit_id": "52fe44b3c3a36847f80a51bd", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Abby Zotz", "character": "Kip's Mom", "id": 1281027, "credit_id": "52fe44b3c3a36847f80a51c1", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Maddy Wilde", "character": "Spiral Beach Band Member", "id": 1281028, "credit_id": "52fe44b3c3a36847f80a51c5", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Dorian Wolf", "character": "Spiral Beach Band Member", "id": 1281029, "credit_id": "52fe44b3c3a36847f80a51c9", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Airick Woodhead", "character": "Spiral Beach Band Member", "id": 1281030, "credit_id": "52fe44b3c3a36847f80a51cd", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Daniel Woodhead", "character": "Spiral Beach Band Member", "id": 1281031, "credit_id": "52fe44b3c3a36847f80a51d1", "cast_id": 51, "profile_path": null, "order": 38}], "directors": [{"name": "Jon Poll", "department": "Directing", "job": "Director", "credit_id": "52fe44b3c3a36847f80a5105", "profile_path": null, "id": 10395}], "vote_average": 6.5, "runtime": 97}, "41439": {"poster_path": "/mBQX4TCfDEk2a5mvu0Z0PFeFoUp.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45300000, "overview": "As a deadly battle rages over Jigsaw's brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.", "video": false, "id": 41439, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}], "title": "Saw: The Final Chapter", "tagline": "The Traps Come Alive", "vote_count": 158, "homepage": "http://www.saw3dmovie.com", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1477076", "adult": false, "backdrop_path": "/hYWa2kS45Ix7K3KrEgY3EAmpM7P.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}, {"name": "Serendipity Productions", "id": 6680}], "release_date": "2010-10-28", "popularity": 0.688361662382175, "original_title": "Saw 3D", "budget": 17000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw / John", "id": 2144, "credit_id": "52fe45cac3a36847f80da81f", "cast_id": 4, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Cary Elwes", "character": "Dr. Lawrence Gordon", "id": 2130, "credit_id": "52fe45cac3a36847f80da823", "cast_id": 5, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 1}, {"name": "Costas Mandylor", "character": "Mark Hoffman", "id": 36055, "credit_id": "52fe45cac3a36847f80da827", "cast_id": 6, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 2}, {"name": "Betsy Russell", "character": "Jill Tuck", "id": 22434, "credit_id": "52fe45cac3a36847f80da82b", "cast_id": 7, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 3}, {"name": "Sean Patrick Flanery", "character": "Bobby Dagen", "id": 54789, "credit_id": "52fe45cac3a36847f80da82f", "cast_id": 8, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 4}, {"name": "Gina Holden", "character": "Joyce", "id": 33336, "credit_id": "52fe45cac3a36847f80da833", "cast_id": 9, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 5}, {"name": "Tanedra Howard", "character": "Simone", "id": 1241157, "credit_id": "54c82b1ec3a3680924000374", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Greg Bryk", "character": "Mallick", "id": 231, "credit_id": "54c82b43c3a3687a650000c9", "cast_id": 24, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 7}], "directors": [{"name": "Kevin Greutert", "department": "Directing", "job": "Director", "credit_id": "52fe45cac3a36847f80da839", "profile_path": "/ffijXhDTs8Up2YQyKRQFIjk5fwc.jpg", "id": 2150}], "vote_average": 6.0, "runtime": 90}, "16866": {"poster_path": "/n4Azjb2DyclHySvHWMUAsGW2Zb1.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104945765, "overview": "When Earth astronaut Capt. Chuck Baker arrives on Planet 51 -- a world reminiscent of American suburbia circa 1950 -- he tries to avoid capture, recover his spaceship and make it home safely, all with the help of an empathetic little green being.", "video": false, "id": 16866, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Planet 51", "tagline": "Something strange is coming to their planet...Us!", "vote_count": 166, "homepage": "http://www.sonypictures.com/movies/planet51/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0762125", "adult": false, "backdrop_path": "/z7z5fg7Ml1hHg67Sbk6pJmmOOT1.jpg", "production_companies": [{"name": "Ilion Animation Studios", "id": 5653}, {"name": "Hand Made Films", "id": 12297}, {"name": "TriStar Pictures", "id": 559}], "release_date": "2009-11-19", "popularity": 1.14420880192622, "original_title": "Planet 51", "budget": 70000000, "cast": [{"name": "Dwayne Johnson", "character": "Capt. Charles 'Chuck' Baker (voice)", "id": 18918, "credit_id": "52fe46f19251416c75088b01", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Skiff (voice)", "id": 57599, "credit_id": "52fe46f19251416c75088b05", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Jessica Biel", "character": "Neera (voice)", "id": 10860, "credit_id": "52fe46f19251416c75088b09", "cast_id": 3, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 2}, {"name": "Justin Long", "character": "Lem (voice)", "id": 15033, "credit_id": "52fe46f19251416c75088b0d", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 3}, {"name": "Gary Oldman", "character": "General Grawl (voice)", "id": 64, "credit_id": "52fe46f19251416c75088b11", "cast_id": 5, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 4}, {"name": "John Cleese", "character": "Professor Kipple (voice)", "id": 8930, "credit_id": "52fe46f19251416c75088b15", "cast_id": 6, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Freddie Benedict", "character": "Eckle (voice)", "id": 968218, "credit_id": "52fe46f19251416c75088b3d", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Alan Marriott", "character": "Glar (voice)", "id": 235815, "credit_id": "52fe46f19251416c75088b41", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mathew Horne", "character": "Soldier Vesklin (voice)", "id": 82806, "credit_id": "52fe46f19251416c75088b45", "cast_id": 17, "profile_path": "/a5qEe4rebEtUYM2CwSOEgKr8mI6.jpg", "order": 8}, {"name": "James Corden", "character": "Soldier Vernkot (voice)", "id": 55466, "credit_id": "52fe46f19251416c75088b49", "cast_id": 18, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 9}, {"name": "Lewis Macleod", "character": "Additional Voice (voice)", "id": 1074722, "credit_id": "52fe46f19251416c75088b4d", "cast_id": 19, "profile_path": "/mv3TTVkxdDn11Gs2AWKvFzAuW7Y.jpg", "order": 10}, {"name": "Rupert Degas", "character": "Additional Voice (voice)", "id": 211412, "credit_id": "52fe46f19251416c75088b51", "cast_id": 20, "profile_path": "/8ONoi0l5Np7AZzczk3ddnsVcXq9.jpg", "order": 11}, {"name": "Rebecca Front", "character": "Additional Voice (voice)", "id": 155530, "credit_id": "52fe46f19251416c75088b55", "cast_id": 21, "profile_path": "/64aorRgBa4Q3NYvPTYm4LkckURc.jpg", "order": 12}, {"name": "Vincent Marzello", "character": "Additional Voice (voice)", "id": 131083, "credit_id": "52fe46f19251416c75088b59", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Emma Tate", "character": "Additional Voice (voice)", "id": 185065, "credit_id": "52fe46f19251416c75088b5d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Pete Atkin", "character": "Additional Voice (voice)", "id": 127153, "credit_id": "52fe46f19251416c75088b61", "cast_id": 24, "profile_path": "/sR154GSl8nIqXQNBAtfySH6iMK5.jpg", "order": 15}, {"name": "Laurence Bouvard", "character": "Additional Voice (voice)", "id": 59865, "credit_id": "52fe46f19251416c75088b65", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Brian Bowles", "character": "Additional Voice (voice)", "id": 108399, "credit_id": "52fe46f19251416c75088b69", "cast_id": 26, "profile_path": null, "order": 17}], "directors": [{"name": "Jorge Blanco", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c75088b21", "profile_path": "/zTqe8QQRch4epGYmr09ToIs1QJW.jpg", "id": 117052}, {"name": "Javier Abad", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c75088b6f", "profile_path": "/1Ci4SDKhh24rqLN3Ro0KUdNpyGV.jpg", "id": 968303}, {"name": "Marcos Mart\u00ednez", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c75088b75", "profile_path": "/rCeWPyfSRXM4W6K6A3aTV6YRzNn.jpg", "id": 1158156}], "vote_average": 5.7, "runtime": 91}, "483": {"poster_path": "/kdm9jnyv236RYFtYwCLNbH84wXi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14560247, "overview": "Young lovers Sailor and Lula run from the variety of weirdos that Lula's mom has hired to kill Sailor.", "video": false, "id": 483, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Wild at Heart", "tagline": "A wild crazy love story.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100935", "adult": false, "backdrop_path": "/toXuHNbWmQVw6Nj4ffjYOzLK5yQ.jpg", "production_companies": [{"name": "Samuel Goldwyn", "id": 261}], "release_date": "1990-08-17", "popularity": 0.675489821461349, "original_title": "Wild at Heart", "budget": 9500000, "cast": [{"name": "Nicolas Cage", "character": "Sailor Ripley", "id": 2963, "credit_id": "52fe4248c3a36847f80124a5", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Laura Dern", "character": "Lula Fortune", "id": 4784, "credit_id": "52fe4248c3a36847f80124a9", "cast_id": 5, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Bobby Peru", "id": 5293, "credit_id": "52fe4248c3a36847f80124ad", "cast_id": 6, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "J.E. Freeman", "character": "Marcelles Santos", "id": 5169, "credit_id": "52fe4248c3a36847f80124b1", "cast_id": 7, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 3}, {"name": "Crispin Glover", "character": "Dell", "id": 1064, "credit_id": "52fe4248c3a36847f80124b5", "cast_id": 8, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 4}, {"name": "Diane Ladd", "character": "Marietta Fortune", "id": 6587, "credit_id": "52fe4248c3a36847f80124b9", "cast_id": 9, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 5}, {"name": "Calvin Lockhart", "character": "Reggie", "id": 2067, "credit_id": "52fe4248c3a36847f80124bd", "cast_id": 10, "profile_path": "/3yJrPwyFScLuBukMb5BMJ8lDk1m.jpg", "order": 6}, {"name": "Isabella Rossellini", "character": "Perdita Durango", "id": 6588, "credit_id": "52fe4248c3a36847f80124c1", "cast_id": 11, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 7}, {"name": "Harry Dean Stanton", "character": "Johnnie Farragut", "id": 5048, "credit_id": "52fe4248c3a36847f80124c5", "cast_id": 12, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 8}, {"name": "Grace Zabriskie", "character": "Juana Durango", "id": 6465, "credit_id": "52fe4248c3a36847f80124c9", "cast_id": 13, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 9}, {"name": "Sherilyn Fenn", "character": "Girl in Accident", "id": 6681, "credit_id": "52fe4248c3a36847f8012503", "cast_id": 24, "profile_path": "/1AKZocU6gfD1udBPUxYH6Vez8Ll.jpg", "order": 10}, {"name": "Glenn Walker Harris Jr.", "character": "Pace Fortune", "id": 7089, "credit_id": "52fe4248c3a36847f8012507", "cast_id": 25, "profile_path": "/pvTQf4oKrqFmcXkYiwENKK65UM3.jpg", "order": 11}, {"name": "Sheryl Lee", "character": "Good Witch", "id": 6726, "credit_id": "52fe4249c3a36847f801250b", "cast_id": 26, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 12}, {"name": "David Patrick Kelly", "character": "Dropshadow", "id": 1737, "credit_id": "52fe4249c3a36847f8012527", "cast_id": 31, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 13}, {"name": "William Morgan Sheppard", "character": "Mr. Reindeer", "id": 938390, "credit_id": "52fe4249c3a36847f801252b", "cast_id": 32, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 14}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4248c3a36847f8012495", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 6.6, "runtime": 124}, "8676": {"poster_path": "/v4YTbyUsxOVRTFlOqQKKFPAjJhL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Charming but luckless treasure hunter Ben Finnegan has sacrificed his relationship with his wife to search for the Queen's Dowry, a legendary treasure lost at sea. But the discovery of a new clue rekindles his hope for riches -- and his marriage.", "video": false, "id": 8676, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Fool's Gold", "tagline": "This February True Love Takes a Dive.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0770752", "adult": false, "backdrop_path": "/YKUNjQNJMS0vJEVWt5gunW7UDY.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2008-02-08", "popularity": 0.810952954594713, "original_title": "Fool's Gold", "budget": 70000000, "cast": [{"name": "Matthew McConaughey", "character": "Ben 'Finn' Finnegan", "id": 10297, "credit_id": "52fe44b3c3a36847f80a5337", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Tess Finnegan", "id": 11661, "credit_id": "52fe44b3c3a36847f80a533b", "cast_id": 2, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Nigel Honeycutt", "id": 55636, "credit_id": "52fe44b3c3a36847f80a533f", "cast_id": 3, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "Alexis Dziena", "character": "Gemma Honeycutt", "id": 4433, "credit_id": "52fe44b3c3a36847f80a5349", "cast_id": 5, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 3}, {"name": "Ray Winstone", "character": "Moe Fitch", "id": 5538, "credit_id": "52fe44b3c3a36847f80a534d", "cast_id": 6, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 4}, {"name": "Ewen Bremner", "character": "Alfonz", "id": 1125, "credit_id": "52fe44b3c3a36847f80a5351", "cast_id": 7, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 5}, {"name": "Brian Hooks", "character": "Curtis", "id": 55637, "credit_id": "52fe44b3c3a36847f80a5355", "cast_id": 8, "profile_path": "/rixYnuCu4Sfnfm4wZDEq308gJTx.jpg", "order": 6}, {"name": "Kevin Hart", "character": "Bigg Bunny", "id": 55638, "credit_id": "52fe44b3c3a36847f80a5359", "cast_id": 9, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 7}, {"name": "Malcolm-Jamal Warner", "character": "Cordell", "id": 40259, "credit_id": "52fe44b3c3a36847f80a535d", "cast_id": 10, "profile_path": "/nwV97v1L3GMJmywooKIuTcc0veT.jpg", "order": 8}, {"name": "David Roberts", "character": "Cyrus", "id": 77553, "credit_id": "52fe44b3c3a36847f80a5379", "cast_id": 15, "profile_path": "/shYTmEKuTg4R4xRUYS5EHbjh0Ty.jpg", "order": 9}, {"name": "Michael Mulheren", "character": "Eddie", "id": 28036, "credit_id": "52fe44b3c3a36847f80a537d", "cast_id": 16, "profile_path": "/ayS1iwzbdEreOu9ThLlwsxKR0kZ.jpg", "order": 10}, {"name": "Adam LeFevre", "character": "Gary", "id": 61607, "credit_id": "52fe44b3c3a36847f80a5381", "cast_id": 17, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 11}, {"name": "Rohan Nichol", "character": "Stefan", "id": 33184, "credit_id": "52fe44b3c3a36847f80a5385", "cast_id": 18, "profile_path": "/nzvL3MRpADYWlH4ppyYgmCnM1kZ.jpg", "order": 12}, {"name": "Roger Sciberras", "character": "Andras", "id": 964221, "credit_id": "52fe44b3c3a36847f80a5389", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Elizabeth Connolly", "character": "Precious Gem Crew Nurse", "id": 1075052, "credit_id": "52fe44b3c3a36847f80a538d", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44b3c3a36847f80a5345", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 5.0, "runtime": 112}, "16869": {"poster_path": "/vDwqPyhkzFPRDmwz9KbzN2ouEPe.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 319131050, "overview": "In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.", "video": false, "id": 16869, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Inglourious Basterds", "tagline": "Once upon a time in Nazi occupied France...", "vote_count": 1968, "homepage": "http://www.inglouriousbasterds-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0361748", "adult": false, "backdrop_path": "/7nF6B9yCEq1ZCT82sGJVtNxOcl5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "A Band Apart", "id": 59}, {"name": "Zehnte Babelsberg", "id": 6817}, {"name": "Visiona Romantica", "id": 6818}], "release_date": "2009-08-21", "popularity": 2.12499475468779, "original_title": "Inglourious Basterds", "budget": 70000000, "cast": [{"name": "Brad Pitt", "character": "Lt. Aldo Raine", "id": 287, "credit_id": "52fe46f29251416c75088c69", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Christoph Waltz", "character": "Col. Hans Landa", "id": 27319, "credit_id": "52fe46f29251416c75088c71", "cast_id": 5, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 1}, {"name": "M\u00e9lanie Laurent", "character": "Shosanna Dreyfus", "id": 19119, "credit_id": "52fe46f29251416c75088c83", "cast_id": 9, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 2}, {"name": "Diane Kruger", "character": "Bridget von Hammersmark", "id": 9824, "credit_id": "52fe46f29251416c75088c7b", "cast_id": 7, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 3}, {"name": "Mike Myers", "character": "General Ed Fenech", "id": 12073, "credit_id": "52fe46f29251416c75088c7f", "cast_id": 8, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 4}, {"name": "Michael Fassbender", "character": "Lt. Archie Hicox", "id": 17288, "credit_id": "52fe46f29251416c75088c87", "cast_id": 10, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 5}, {"name": "Samuel L. Jackson", "character": "Narrator (voice)", "id": 2231, "credit_id": "52fe46f29251416c75088c6d", "cast_id": 4, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 6}, {"name": "Eli Roth", "character": "Sergeant Donny Donowitz", "id": 16847, "credit_id": "52fe46f29251416c75088c8b", "cast_id": 11, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 7}, {"name": "Til Schweiger", "character": "Sgt. Hugo Stiglitz", "id": 1844, "credit_id": "52fe46f29251416c75088c8f", "cast_id": 12, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 8}, {"name": "B. J. Novak", "character": "Smithson Utivich", "id": 107770, "credit_id": "52fe46f29251416c75088c93", "cast_id": 13, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 9}, {"name": "Gedeon Burkhard", "character": "Corporal Wilhelm Wicki", "id": 32823, "credit_id": "52fe46f29251416c75088c97", "cast_id": 14, "profile_path": "/kyCk9N8In36cec0K4PqBG8eyhhw.jpg", "order": 10}, {"name": "Omar Doom", "character": "Omar Ulmer", "id": 23286, "credit_id": "52fe46f29251416c75088c9b", "cast_id": 15, "profile_path": "/gLWD2wYyXpD8d7oZikqGIgNSEZu.jpg", "order": 11}, {"name": "Samm Levine", "character": "Gerold Hirschberg", "id": 58507, "credit_id": "52fe46f29251416c75088c9f", "cast_id": 16, "profile_path": "/A01BJNs0QUP2SlNj48WRwB3bSWE.jpg", "order": 12}, {"name": "Paul Rust", "character": "Andy Kagan", "id": 85236, "credit_id": "52fe46f29251416c75088ca3", "cast_id": 17, "profile_path": "/rd8ZJQc8slsPcB3HeGqNcVtc0kh.jpg", "order": 13}, {"name": "Michael Bacall", "character": "Michael Zimmerman", "id": 58744, "credit_id": "52fe46f29251416c75088ca7", "cast_id": 18, "profile_path": "/vAqUOjmjY1ALiTRlYu7BI3yWmuK.jpg", "order": 14}, {"name": "Carlos Fidel", "character": "Simon Sakowitz", "id": 107771, "credit_id": "52fe46f29251416c75088cab", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Rod Taylor", "character": "Winston Churchill", "id": 8229, "credit_id": "52fe46f29251416c75088caf", "cast_id": 20, "profile_path": "/nCSU0Teu87l0Hep7CVTWbyHqPAX.jpg", "order": 16}, {"name": "Denis M\u00e9nochet", "character": "Perrier LaPadite", "id": 81125, "credit_id": "52fe46f29251416c75088cb3", "cast_id": 21, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 17}, {"name": "Jacky Ido", "character": "Marcel", "id": 51636, "credit_id": "52fe46f29251416c75088cb7", "cast_id": 22, "profile_path": "/eBR6SX0hge1p3gWjxxRsmSzzhmQ.jpg", "order": 18}, {"name": "Christian Berkel", "character": "Eric", "id": 7803, "credit_id": "52fe46f29251416c75088cbb", "cast_id": 23, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 19}, {"name": "Jana Pallaske", "character": "Babette", "id": 20259, "credit_id": "52fe46f29251416c75088cbf", "cast_id": 24, "profile_path": "/mzeBCXN3vcU6gIc8p7otO85Cbo6.jpg", "order": 20}, {"name": "Daniel Br\u00fchl", "character": "Fredrick Zoller", "id": 3872, "credit_id": "52fe46f29251416c75088cc3", "cast_id": 25, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 21}, {"name": "August Diehl", "character": "Sturmbannf\u00fchrer Dieter Hellstrom", "id": 6091, "credit_id": "52fe46f29251416c75088cc7", "cast_id": 26, "profile_path": "/A3MqiHyxUVrTHmuSh4nvzOLUeNx.jpg", "order": 22}, {"name": "Alexander Fehling", "character": "Oberfeldwebel Wilhelm", "id": 31663, "credit_id": "52fe46f29251416c75088ccb", "cast_id": 27, "profile_path": "/h6nkEsHxdoV1gQAqJr5OfOp855k.jpg", "order": 23}, {"name": "Soenke M\u00f6hring", "character": "Gefreiter Butz", "id": 107772, "credit_id": "52fe46f29251416c75088ccf", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Richard Sammel", "character": "Hauptfeldwebel Werner Rachtman", "id": 49487, "credit_id": "52fe46f29251416c75088cd3", "cast_id": 29, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 25}, {"name": "Sylvester Groth", "character": "Joseph Goebbels", "id": 41965, "credit_id": "52fe46f29251416c75088cd7", "cast_id": 30, "profile_path": "/vMNpftjWH7Q2dGSFYjp6U4pJkNx.jpg", "order": 26}, {"name": "Julie Dreyfus", "character": "Francesca Mondino", "id": 2539, "credit_id": "52fe46f29251416c75088cdb", "cast_id": 32, "profile_path": "/vkUvcV6oFkZXcIv4SGeW66LUoqC.jpg", "order": 27}, {"name": "Martin Wuttke", "character": "Adolf Hitler", "id": 49056, "credit_id": "52fe46f29251416c75088cdf", "cast_id": 34, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 28}, {"name": "Arndt Schwering-Sohnrey", "character": "German Soldier / Winnetou", "id": 36463, "credit_id": "52fe46f29251416c75088ce3", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "L\u00e9a Seydoux", "character": "Charlotte LaPadite", "id": 121529, "credit_id": "52fe46f29251416c75088ce7", "cast_id": 36, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 30}, {"name": "Bo Svenson", "character": "American Colonel", "id": 30044, "credit_id": "52fe46f29251416c75088ceb", "cast_id": 37, "profile_path": "/ow0pxYqX94ZmfKDCiMN2qzhtOe3.jpg", "order": 31}, {"name": " Anne-Sophie Franck", "character": "Mathilda", "id": 236647, "credit_id": "52fe46f29251416c75088cf5", "cast_id": 40, "profile_path": "/5OxrjtngJKI1DivutCJaTWwTmrq.jpg", "order": 32}, {"name": "Tina Rodriguez", "character": "Julie LaPadite", "id": 122416, "credit_id": "52fe46f29251416c75088cf9", "cast_id": 41, "profile_path": "/8DJfBQUsR4wKsTIQXQv84IeTlLH.jpg", "order": 33}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe46f29251416c75088c65", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.5, "runtime": 153}, "41446": {"poster_path": "/eT2y8SLxLwPFPuShV4i2FoZnOwU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97138686, "overview": "Sidney Prescott, now the author of a self-help book, returns home to Woodsboro on the last stop of her book tour. There she reconnects with Sheriff Dewey and Gale, who are now married, as well as her cousin Jill and her Aunt Kate. Unfortunately, Sidney's appearance also brings about the return of Ghostface, putting Sidney, Gale, and Dewey, along with Jill, her friends, and the whole town of Woodsboro in danger.", "video": false, "id": 41446, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream 4", "tagline": "New Decade. New Rules.", "vote_count": 226, "homepage": "http://www.scream-4.com/", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1262416", "adult": false, "backdrop_path": "/5VqyrIpMbnwXdZFcISmtKr3n75A.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2011-04-11", "popularity": 0.809641300308904, "original_title": "Scream 4", "budget": 40000000, "cast": [{"name": "Emma Roberts", "character": "Jill Kessler", "id": 34847, "credit_id": "52fe45cac3a36847f80da99b", "cast_id": 1, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "Hayden Panettiere", "character": "Kirby Reed", "id": 17265, "credit_id": "52fe45cac3a36847f80da99f", "cast_id": 2, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 1}, {"name": "Adam Brody", "character": "Detective Hoss", "id": 11702, "credit_id": "52fe45cac3a36847f80da9a3", "cast_id": 3, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 2}, {"name": "Courteney Cox", "character": "Gale Weathers-Riley", "id": 14405, "credit_id": "52fe45cac3a36847f80da9a7", "cast_id": 4, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 3}, {"name": "Rory Culkin", "character": "Charlie Walker", "id": 28042, "credit_id": "52fe45cac3a36847f80da9ab", "cast_id": 5, "profile_path": "/ceb0M0ikZj8kg5oXfGr5wi1MDc6.jpg", "order": 4}, {"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe45cac3a36847f80da9af", "cast_id": 6, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 5}, {"name": "Mary McDonnell", "character": "Kate Kessler", "id": 1581, "credit_id": "52fe45cac3a36847f80da9b3", "cast_id": 7, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 6}, {"name": "David Arquette", "character": "Sheriff Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe45cac3a36847f80da9b7", "cast_id": 8, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 7}, {"name": "Anthony Anderson", "character": "Detective Perkins", "id": 18471, "credit_id": "52fe45cac3a36847f80da9bb", "cast_id": 9, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 8}, {"name": "Erik Knudsen", "character": "Robbie", "id": 2681, "credit_id": "52fe45cac3a36847f80da9bf", "cast_id": 10, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 9}, {"name": "Marielle Jaffe", "character": "Olivia Morris", "id": 127127, "credit_id": "52fe45cac3a36847f80da9c3", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Nico Tortorella", "character": "Trevor Sheldon", "id": 127128, "credit_id": "52fe45cac3a36847f80da9c7", "cast_id": 12, "profile_path": "/A6H0K8h39LcpQpjjjBCoWekDiAf.jpg", "order": 11}, {"name": "Roger L. Jackson", "character": "The Voice (voice)", "id": 51957, "credit_id": "52fe45cac3a36847f80da9cb", "cast_id": 13, "profile_path": "/lI4N9GJ0QuC1YFYSwauNssGwe11.jpg", "order": 12}, {"name": "Justin Michael Brandt", "character": "Film Geek", "id": 127129, "credit_id": "52fe45cac3a36847f80da9cf", "cast_id": 14, "profile_path": "/5zqOLngigabOdFEj4Q910pKwJjE.jpg", "order": 13}, {"name": "Nancy O'Dell", "character": "TV Host", "id": 127130, "credit_id": "52fe45cac3a36847f80da9d3", "cast_id": 15, "profile_path": "/dYSrZtde2UrhGI1N6ooKI0jjB6Z.jpg", "order": 14}, {"name": "Dredan McFall", "character": "Cocky Student", "id": 127131, "credit_id": "52fe45cac3a36847f80da9d7", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Marley Shelton", "character": "Judy Hicks", "id": 6407, "credit_id": "52fe45cac3a36847f80da9db", "cast_id": 17, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 16}, {"name": "Alison Brie", "character": "Rebecca Walters", "id": 88029, "credit_id": "52fe45cbc3a36847f80daa0f", "cast_id": 26, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 17}, {"name": "Lucy Hale", "character": "Sherrie Marconi", "id": 205307, "credit_id": "52fe45cbc3a36847f80daa13", "cast_id": 27, "profile_path": "/osMiB2nzn0Dedtv0AkyOCDuNmqb.jpg", "order": 18}, {"name": "Shenae Grimes", "character": "Trudie Harrold", "id": 88619, "credit_id": "52fe45cbc3a36847f80daa17", "cast_id": 28, "profile_path": "/zDa5eWttJdzv1Fxp2lx3PUzVXT0.jpg", "order": 19}, {"name": "Anna Paquin", "character": "Rachel", "id": 10690, "credit_id": "52fe45cbc3a36847f80daa1b", "cast_id": 29, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 20}, {"name": "Kristen Bell", "character": "Chloe", "id": 40462, "credit_id": "52fe45cbc3a36847f80daa1f", "cast_id": 30, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 21}, {"name": "Britt Robertson", "character": "Marnie Cooper", "id": 52018, "credit_id": "52fe45cbc3a36847f80daa31", "cast_id": 36, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 24}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe45cac3a36847f80da9e1", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.2, "runtime": 111}, "16871": {"poster_path": "/4trULrbj4AoPLKSiIoQUTm2tPAG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90842646, "overview": "After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.", "video": false, "id": 16871, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Drag Me to Hell", "tagline": "Christine Brown has a good job, a great boyfriend, and a bright future. But in three days, she's going to hell.", "vote_count": 236, "homepage": "http://www.dragmetohell.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}], "imdb_id": "tt1127180", "adult": false, "backdrop_path": "/70wyqj6WnOSVWKnW2vxylFGz7c9.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Buckaroo Entertainment", "id": 11250}, {"name": "Curse Productions", "id": 11630}, {"name": "Mandate Pictures", "id": 771}], "release_date": "2009-03-15", "popularity": 0.970752883422576, "original_title": "Drag Me to Hell", "budget": 30000000, "cast": [{"name": "Alison Lohman", "character": "Christine Brown", "id": 8291, "credit_id": "52fe46f29251416c75088d7f", "cast_id": 5, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 0}, {"name": "Justin Long", "character": "Clay Dalton", "id": 15033, "credit_id": "52fe46f29251416c75088d83", "cast_id": 6, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Lorna Raver", "character": "Mrs. Ganush", "id": 95696, "credit_id": "52fe46f29251416c75088d87", "cast_id": 7, "profile_path": "/iXlz30cBxvyn66fPTFOgbrrlsqT.jpg", "order": 2}, {"name": "Dileep Rao", "character": "Rham Jas", "id": 95697, "credit_id": "52fe46f29251416c75088d8b", "cast_id": 8, "profile_path": "/f9xQkvWw5guOePcCxkso1i09w12.jpg", "order": 3}, {"name": "David Paymer", "character": "Mr. Jacks", "id": 19839, "credit_id": "52fe46f29251416c75088d7b", "cast_id": 4, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 4}, {"name": "Adriana Barraza", "character": "Shaun San Dena", "id": 270, "credit_id": "52fe46f29251416c75088d8f", "cast_id": 9, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 5}, {"name": "Chelcie Ross", "character": "Leonard Dalton", "id": 10486, "credit_id": "52fe46f29251416c75088d93", "cast_id": 10, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 6}, {"name": "Reggie Lee", "character": "Stu Rubin", "id": 22075, "credit_id": "52fe46f29251416c75088d97", "cast_id": 11, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 7}, {"name": "Molly Cheek", "character": "Trudy Dalton", "id": 54586, "credit_id": "52fe46f29251416c75088d9b", "cast_id": 12, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 8}, {"name": "Bojana Novakovi\u0107", "character": "Ilenka Ganush", "id": 81682, "credit_id": "52fe46f29251416c75088d9f", "cast_id": 13, "profile_path": "/huxuKuGq26pHRE6nO0WJu3aS0hU.jpg", "order": 9}, {"name": "Kevin Foster", "character": "Milos", "id": 95698, "credit_id": "52fe46f29251416c75088da3", "cast_id": 14, "profile_path": "/9YZigxSi9V4mdpzxvs6G1nVRPbC.jpg", "order": 10}, {"name": "Jay Gordon", "character": "Family at Diner", "id": 204265, "credit_id": "52fe46f29251416c75088db9", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Alexis Cruz", "character": "Farm Worker", "id": 22138, "credit_id": "52fe46f39251416c75088df9", "cast_id": 30, "profile_path": "/3vTlvOsUx5UfrOMhayQljM8AsVV.jpg", "order": 12}, {"name": "Ruth Livier", "character": "Farm Worker's Wife", "id": 155868, "credit_id": "52fe46f39251416c75088dfd", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Shiloh Selassie", "character": "Farm Worker's Son", "id": 1121875, "credit_id": "52fe46f39251416c75088e01", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Octavia Spencer", "character": "Bank Co-Worker", "id": 6944, "credit_id": "52fe46f39251416c75088e05", "cast_id": 33, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 15}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe46f29251416c75088d6b", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.1, "runtime": 99}, "489": {"poster_path": "/jq8LjngZ7XZEQge5JFTdOGMrHyZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 225933435, "overview": "Will Hunting, a janitor at MIT, has a gift for mathematics but needs help from a psychologist to find direction in his life.", "video": false, "id": 489, "genres": [{"id": 18, "name": "Drama"}], "title": "Good Will Hunting", "tagline": "Some people can never believe in themselves, until someone believes in them.", "vote_count": 755, "homepage": "http://www.miramax.com/movie/good-will-hunting", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119217", "adult": false, "backdrop_path": "/8vA6dxBzRqSajvqdmTLtoguAa3T.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Lawrence Bender Productions", "id": 2253}, {"name": "Be Gentlemen Limited Partnership", "id": 23201}], "release_date": "1997-12-05", "popularity": 1.28956618086364, "original_title": "Good Will Hunting", "budget": 10000000, "cast": [{"name": "Matt Damon", "character": "Will Hunting", "id": 1892, "credit_id": "52fe4249c3a36847f8012657", "cast_id": 5, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Robin Williams", "character": "Sean Maguire", "id": 2157, "credit_id": "52fe4249c3a36847f8012653", "cast_id": 4, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Ben Affleck", "character": "Chuckie Sullivan", "id": 880, "credit_id": "52fe4249c3a36847f801265b", "cast_id": 6, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Prof. Gerald Lambeau", "id": 1640, "credit_id": "52fe4249c3a36847f801265f", "cast_id": 7, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Minnie Driver", "character": "Skylar", "id": 6613, "credit_id": "52fe4249c3a36847f8012663", "cast_id": 8, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 4}, {"name": "Casey Affleck", "character": "Morgan O'Mally", "id": 1893, "credit_id": "52fe4249c3a36847f8012667", "cast_id": 9, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 5}, {"name": "Cole Hauser", "character": "Billy McBride", "id": 6614, "credit_id": "52fe4249c3a36847f801266b", "cast_id": 10, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 6}, {"name": "John Mighton", "character": "Tom", "id": 6615, "credit_id": "52fe4249c3a36847f801266f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "George Plimpton", "character": "Psychologist", "id": 95741, "credit_id": "52fe4249c3a36847f8012729", "cast_id": 49, "profile_path": "/azWcJKXfpMrNDVHxY8ryUvH4azO.jpg", "order": 8}, {"name": "Rachel Majorowski", "character": "Krystyn", "id": 6616, "credit_id": "52fe4249c3a36847f8012673", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Colleen McCauley", "character": "Cathy", "id": 6617, "credit_id": "52fe4249c3a36847f8012677", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Matt Mercier", "character": "Barbershop Quartet #1", "id": 6618, "credit_id": "52fe4249c3a36847f801267b", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Ralph St. George", "character": "Barbershop Quartet #2", "id": 6619, "credit_id": "52fe4249c3a36847f801267f", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Rob Lynds", "character": "Barbershop Quartet #3", "id": 6620, "credit_id": "52fe4249c3a36847f8012683", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Dan Washington", "character": "Barbershop Quartet #4", "id": 6621, "credit_id": "52fe4249c3a36847f8012687", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Alison Folland", "character": "M.I.T. Student", "id": 2841, "credit_id": "52fe4249c3a36847f801268b", "cast_id": 18, "profile_path": "/j4LkS9pycdpKECqZ4bCTqMtZrHA.jpg", "order": 15}, {"name": "Derrick Bridgeman", "character": "M.I.T. Student", "id": 6622, "credit_id": "52fe4249c3a36847f801268f", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Vik Sahay", "character": "M.I.T. Student", "id": 6623, "credit_id": "52fe4249c3a36847f8012693", "cast_id": 20, "profile_path": "/eApnmkajRNYJ0Jrl9Cft1lo93cF.jpg", "order": 17}, {"name": "Shannon Egleson", "character": "Girl on Street", "id": 1281440, "credit_id": "52fe4249c3a36847f80126fd", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Rob Lyons", "character": "Carmine Scarpaglia", "id": 1281441, "credit_id": "52fe4249c3a36847f8012701", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Steven Kozlowski", "character": "Carmine Friend #1", "id": 163438, "credit_id": "52fe4249c3a36847f8012705", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Jennifer Deathe", "character": "Lydia", "id": 1281442, "credit_id": "52fe4249c3a36847f8012709", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Scott William Winters", "character": "Clark", "id": 144578, "credit_id": "52fe4249c3a36847f801270d", "cast_id": 42, "profile_path": "/ubQy1q1A1EZoqJghTgcDv2v3rXb.jpg", "order": 22}, {"name": "Philip Williams", "character": "Head Custodian", "id": 134076, "credit_id": "52fe4249c3a36847f8012711", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Patrick O'Donnell", "character": "Assistant Custodian / Marty", "id": 1281443, "credit_id": "52fe4249c3a36847f8012715", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Kevin Rushton", "character": "Courtroom Guard", "id": 1237062, "credit_id": "52fe4249c3a36847f8012719", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Jimmy Flynn", "character": "Judge Malone", "id": 1281445, "credit_id": "52fe4249c3a36847f801271d", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Joe Cannon", "character": "Prosecutor", "id": 1281447, "credit_id": "52fe4249c3a36847f8012721", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Ann Matacunas", "character": "Court Officer", "id": 1281448, "credit_id": "52fe4249c3a36847f8012725", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Francesco Clemente", "character": "Hypnotist", "id": 937042, "credit_id": "52fe4249c3a36847f801272d", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Jessica Morton", "character": "Bunker Hill Student", "id": 1281449, "credit_id": "52fe4249c3a36847f8012731", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Barna Moricz", "character": "Bunker Hill Student", "id": 1242878, "credit_id": "52fe4249c3a36847f8012735", "cast_id": 52, "profile_path": null, "order": 31}, {"name": "Libby Geller", "character": "Toy Store Cashier", "id": 1281450, "credit_id": "52fe4249c3a36847f8012739", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Chas Lawther", "character": "M.I.T. Professor", "id": 101803, "credit_id": "52fe4249c3a36847f801273d", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Richard Fitzpatrick", "character": "Timmy", "id": 44103, "credit_id": "52fe4249c3a36847f8012741", "cast_id": 55, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 34}, {"name": "David Eisner", "character": "Executive #3", "id": 1190319, "credit_id": "52fe4249c3a36847f8012745", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Bruce Hunter", "character": "NSA Agent", "id": 1228841, "credit_id": "52fe4249c3a36847f8012749", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Robert Talvano", "character": "2nd NSA Agent", "id": 1281451, "credit_id": "52fe4249c3a36847f801274d", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "James Allodi", "character": "Security Guard", "id": 4572, "credit_id": "52fe4249c3a36847f8012751", "cast_id": 59, "profile_path": "/2CWfhSnCCfmzunTxZZAOpllkrCJ.jpg", "order": 38}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4249c3a36847f8012643", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 7.4, "runtime": 126}, "490": {"poster_path": "/lGbA3AtGObfWpsRDbH5ps8bpPbm.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "When disillusioned Swedish knight Antonius Block (Max von Sydow) returns home from the Crusades to find his country in the grips of the Black Death, he challenges Death (Bengt Ekerot) to a chess match for his life. Tormented by the belief that God does not exist, Block sets off on a journey, meeting up with traveling players Jof (Nils Poppe) and his wife, Mia (Bibi Andersson), and becoming determined to evade Death long enough to commit one redemptive act while he still lives.", "video": false, "id": 490, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Seventh Seal", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0050976", "adult": false, "backdrop_path": "/u2YXzSieIsDUZnhPpoytNJiTwyt.jpg", "production_companies": [{"name": "Svensk Filmindustri", "id": 6416}], "release_date": "1957-02-16", "popularity": 0.294540800562814, "original_title": "Det sjunde inseglet", "budget": 0, "cast": [{"name": "Max von Sydow", "character": "Antonius Block", "id": 2201, "credit_id": "52fe4249c3a36847f80127d9", "cast_id": 10, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 0}, {"name": "Gunnar Bj\u00f6rnstrand", "character": "J\u00f6ns", "id": 6649, "credit_id": "52fe4249c3a36847f80127ab", "cast_id": 2, "profile_path": "/AiGcTLr6uQXjtKxh2CMOOIfXEW1.jpg", "order": 1}, {"name": "Bengt Ekerot", "character": "Death", "id": 6656, "credit_id": "52fe4249c3a36847f80127dd", "cast_id": 11, "profile_path": "/nxHqm16Oo3mDYrQnPemGqbbwk9Z.jpg", "order": 2}, {"name": "Nils Poppe", "character": "Jof", "id": 6658, "credit_id": "52fe4249c3a36847f80127e5", "cast_id": 13, "profile_path": "/78c1QHlrGi8l9ie7s1wD1h1XzmA.jpg", "order": 3}, {"name": "Bibi Andersson", "character": "Mia", "id": 6657, "credit_id": "52fe4249c3a36847f80127e1", "cast_id": 12, "profile_path": "/wIC6RwWanSpubtdjCbB6IGQN4AP.jpg", "order": 4}, {"name": "Inga Gill", "character": "Lisa, Plog's wife", "id": 6659, "credit_id": "52fe4249c3a36847f80127e9", "cast_id": 14, "profile_path": "/sHkBJzKCgQEHJTiRzX7XrZ1H3UD.jpg", "order": 5}, {"name": "Maud Hansson", "character": "Witch", "id": 6660, "credit_id": "52fe4249c3a36847f80127ed", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Inga Landgr\u00e9", "character": "Karin, Block's wife", "id": 6661, "credit_id": "52fe4249c3a36847f80127f1", "cast_id": 16, "profile_path": "/tTMBmDtvEBNOGl9JpvV9WXAqYw2.jpg", "order": 7}, {"name": "Gunnel Lindblom", "character": "Mute girl", "id": 6662, "credit_id": "52fe4249c3a36847f80127f5", "cast_id": 17, "profile_path": "/pvyxNIdjoNBPGT3Ig8cKu97yTXo.jpg", "order": 8}, {"name": "Bertil Anderberg", "character": "Raval", "id": 6663, "credit_id": "52fe4249c3a36847f80127f9", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Anders Ek", "character": "Monk", "id": 6664, "credit_id": "52fe4249c3a36847f80127fd", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "\u00c5ke Fridell", "character": "Plog the smith", "id": 6665, "credit_id": "52fe4249c3a36847f8012801", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Gunnar Olsson", "character": "Albertus Pictor, church painter", "id": 6666, "credit_id": "52fe4249c3a36847f8012805", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Erik Strandmark", "character": "Jonas Skat", "id": 6667, "credit_id": "52fe4249c3a36847f8012809", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Sten Ardenstam", "character": "Knight (uncredited)", "id": 403150, "credit_id": "52fe4249c3a36847f801280d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Gudrun Brost", "character": "Woman at inn (uncredited)", "id": 58305, "credit_id": "52fe4249c3a36847f8012811", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Lars Lind", "character": "The young monk (uncredited)", "id": 231921, "credit_id": "52fe4249c3a36847f8012815", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Benkt-\u00c5ke Benktsson", "character": "Merchant at the inn (uncredited)", "id": 550014, "credit_id": "52fe4249c3a36847f8012819", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Tor Borong", "character": "Farmer at the inn (uncredited)", "id": 321845, "credit_id": "52fe4249c3a36847f801281d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Harry Asklund", "character": "The landlord (uncredited)", "id": 1194870, "credit_id": "52fe4249c3a36847f8012821", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Tommy Karlsson", "character": "Mikael, Jof and Maria's son (uncredited)", "id": 1194871, "credit_id": "52fe4249c3a36847f8012825", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "G\u00f6sta Pr\u00fczelius", "character": "Man (uncredited)", "id": 34774, "credit_id": "52fe4249c3a36847f8012829", "cast_id": 30, "profile_path": "/q0q00ZlAmPnEjZn2KDnKvfzeUYG.jpg", "order": 21}, {"name": "Tor Isedal", "character": "Man (uncredited)", "id": 244278, "credit_id": "52fe4249c3a36847f801282d", "cast_id": 31, "profile_path": "/7pbBfMkJlH0Crq3K8QHRERKJLNw.jpg", "order": 22}, {"name": "Mona Malm", "character": "Young pregnant woman (uncredited)", "id": 32729, "credit_id": "52fe4249c3a36847f8012831", "cast_id": 32, "profile_path": "/tckU77KETSkD0y2Ci0mUP3TaiYI.jpg", "order": 23}, {"name": "Josef Norman", "character": "Old man at the inn (uncredited)", "id": 1194872, "credit_id": "52fe4249c3a36847f8012835", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Fritjof Tall", "character": "Man (uncredited)", "id": 1194873, "credit_id": "52fe4249c3a36847f8012839", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Catherine Berg", "character": "Young woman kneeling for the flagellants (uncredited)", "id": 1186207, "credit_id": "52fe4249c3a36847f801283d", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Lena Bergman", "character": "Young woman kneeling for the flagellants (uncredited)", "id": 1194874, "credit_id": "52fe4249c3a36847f8012841", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Ulf Johanson", "character": "Knight Commander (uncredited)", "id": 131579, "credit_id": "52fe4249c3a36847f8012845", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Gordon L\u00f6wenadler", "character": "Knight (uncredited)", "id": 1194875, "credit_id": "52fe4249c3a36847f8012849", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Nils Whiten", "character": "Old man addressed by the monk (uncredited)", "id": 1194876, "credit_id": "52fe4249c3a36847f801284d", "cast_id": 39, "profile_path": null, "order": 30}], "directors": [{"name": "Ingmar Bergman", "department": "Directing", "job": "Director", "credit_id": "52fe4249c3a36847f80127a7", "profile_path": "/rHYYP3N2ivz6WTuTHsLX58Gab7G.jpg", "id": 6648}], "vote_average": 7.6, "runtime": 97}, "492": {"poster_path": "/gLhl4MBEC6yHTInwV7TxV1D3FLp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Spike Jonze\u2019s debut feature film is a love story mix of comedy and fantasy. The story is about an unsuccessful puppeteer named Craig, who one day at work finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters it\u2019s mad and controlling world of overtaking another human body.", "video": false, "id": 492, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Being John Malkovich", "tagline": "Ever wanted to be someone else? Now you can.", "vote_count": 288, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120601", "adult": false, "backdrop_path": "/wd2tF4vQuSc1oPNyWj2JKuBJ16N.jpg", "production_companies": [{"name": "Gramercy Pictures", "id": 37}, {"name": "Propaganda Films", "id": 278}, {"name": "Single Cell Pictures", "id": 279}], "release_date": "1999-09-30", "popularity": 1.22884026355891, "original_title": "Being John Malkovich", "budget": 13000000, "cast": [{"name": "John Malkovich", "character": "John Horatio Malkovich", "id": 6949, "credit_id": "52fe4249c3a36847f8012927", "cast_id": 18, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 0}, {"name": "John Cusack", "character": "Craig Schwartz", "id": 3036, "credit_id": "52fe4249c3a36847f8012907", "cast_id": 5, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Lotte Schwartz", "id": 6941, "credit_id": "52fe4249c3a36847f801290b", "cast_id": 6, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Mary Kay Place", "character": "Floris", "id": 5960, "credit_id": "52fe4249c3a36847f8012917", "cast_id": 11, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 3}, {"name": "Orson Bean", "character": "Dr. Lester", "id": 863, "credit_id": "52fe4249c3a36847f801291b", "cast_id": 12, "profile_path": "/vMG49W2jMiOn1wgAxCeSdtnUNjx.jpg", "order": 4}, {"name": "Catherine Keener", "character": "Maxine Lund", "id": 2229, "credit_id": "52fe4249c3a36847f801291f", "cast_id": 13, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Octavia Spencer", "character": "Woman in Elevator", "id": 6944, "credit_id": "52fe4249c3a36847f8012913", "cast_id": 10, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 6}, {"name": "Charlie Sheen", "character": "Charlie", "id": 6952, "credit_id": "52fe4249c3a36847f801292f", "cast_id": 22, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 10}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe4249c3a36847f80128f1", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 7.0, "runtime": 112}, "8274": {"poster_path": "/hwWwljYkvWebTb9xPvzJdhLtS8R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The original American Pie characters have moved on, except for Sherman and Jim Levenstein's still understanding dad. Steve Stifler's little brother Matt wants to join his brother's business (the hit it big Girls Gone Wild) and after everything Matt has heard from Jim's band-geek wife Michelle, he plans to go back to band camp and make a video of his own: Bandies Gone Wild!", "video": false, "id": 8274, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: Band Camp", "tagline": "This One Time at Band Camp...", "vote_count": 141, "homepage": "http://www.americanreunionmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0436058", "adult": false, "backdrop_path": "/Ai7WaZDlqyrOZZ6FT5NrsTCaUi4.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}], "release_date": "2005-12-30", "popularity": 0.60832474223136, "original_title": "American Pie Presents: Band Camp", "budget": 10000000, "cast": [{"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe449ac3a36847f809fa01", "cast_id": 7, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 0}, {"name": "Tad Hilgenbrink", "character": "Matt Stifler", "id": 54593, "credit_id": "52fe449ac3a36847f809fa05", "cast_id": 8, "profile_path": "/uAZIVadEM5iaVlQPkxGCpZImYuF.jpg", "order": 1}, {"name": "Arielle Kebbel", "character": "Elyse", "id": 20373, "credit_id": "52fe449ac3a36847f809fa09", "cast_id": 9, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 2}, {"name": "Jason Earles", "character": "Ernie", "id": 54594, "credit_id": "52fe449ac3a36847f809fa0d", "cast_id": 10, "profile_path": "/lwHIA7z8LAyKx7B4eV9bWUBT7tk.jpg", "order": 3}, {"name": "Crystle Lightning", "character": "Chloe", "id": 26929, "credit_id": "52fe449ac3a36847f809fa11", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Matt Barr", "character": "Brandon Vandecamp", "id": 26970, "credit_id": "52fe449ac3a36847f809fa15", "cast_id": 12, "profile_path": "/6V9LRJJ8dU5M2Xy2Ru3haAtDI4p.jpg", "order": 5}, {"name": "Jun Hee Lee", "character": "Jimmy", "id": 26997, "credit_id": "52fe449ac3a36847f809fa19", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Chris Owen", "character": "Sherman", "id": 26999, "credit_id": "52fe449ac3a36847f809fa1d", "cast_id": 14, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 7}, {"name": "Lauren C. Mayhew", "character": "Arianna", "id": 27016, "credit_id": "52fe449ac3a36847f809fa21", "cast_id": 15, "profile_path": "/kfoNtiDUh5TBoUOzNRjnNl2mEf.jpg", "order": 8}, {"name": "Angela Little", "character": "Sheree", "id": 54595, "credit_id": "52fe449ac3a36847f809fa25", "cast_id": 16, "profile_path": "/8z7GuufLCJGISmHm98SuoV2eqNz.jpg", "order": 10}, {"name": "Jennifer Walcott", "character": "Laurie", "id": 116300, "credit_id": "52fe449ac3a36847f809fa2f", "cast_id": 19, "profile_path": "/jN06qT5mWZl58xLw5P0ArLJiUE6.jpg", "order": 11}], "directors": [{"name": "Steve Rash", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809f9df", "profile_path": null, "id": 54590}], "vote_average": 5.4, "runtime": 94}, "10096": {"poster_path": "/iSvz2Nk1vzgm7bEMqMazhQ1F3zA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96455697, "overview": "After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. Thanks to some wishing dust, Jenna's prayer has been answered. With a knockout body, a dream apartment, a fabulous wardrobe, an athlete boyfriend, a dream job, and superstar friends, this can't be a better life. Unfortunetly, Jenna realizes that this is not what she wanted. The only one that she needs is her childhood best friend, Matt, a boy that she thought destroyed her party. But when she finds him, he's a grown up, and not the same person that she knew.", "video": false, "id": 10096, "genres": [{"id": 35, "name": "Comedy"}], "title": "13 Going On 30", "tagline": "For some, 13 feels like it was just yesterday. For Jenna, it was.", "vote_count": 279, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337563", "adult": false, "backdrop_path": "/zIqndpLMVerIfztNjsIOam9YnAN.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Thirteen Productions", "id": 19636}], "release_date": "2004-04-13", "popularity": 1.45430181739852, "original_title": "13 Going On 30", "budget": 37000000, "cast": [{"name": "Jennifer Garner", "character": "Jenna Rink", "id": 9278, "credit_id": "52fe43259251416c750054cb", "cast_id": 12, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 0}, {"name": "Mark Ruffalo", "character": "Matt Flamhaff", "id": 103, "credit_id": "52fe43259251416c750054cf", "cast_id": 13, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 1}, {"name": "Judy Greer", "character": "Lucy Wyman", "id": 20750, "credit_id": "52fe43259251416c750054d3", "cast_id": 14, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 2}, {"name": "Andy Serkis", "character": "Richard Kneeland", "id": 1333, "credit_id": "52fe43259251416c750054d7", "cast_id": 15, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 3}, {"name": "Christa Brittany Allen", "character": "Young Jenna", "id": 63372, "credit_id": "52fe43259251416c750054db", "cast_id": 16, "profile_path": "/2YzM71L9qmssPY53WxtbARQdFAo.jpg", "order": 4}, {"name": "Sean Marquette", "character": "Young Matt", "id": 63373, "credit_id": "52fe43259251416c750054df", "cast_id": 17, "profile_path": "/24Mh1gnjmPmHmkV3vWIce03Lm2E.jpg", "order": 5}, {"name": "Ashley Benson", "character": "Six Chick", "id": 78030, "credit_id": "52fe43259251416c750054e3", "cast_id": 18, "profile_path": "/dxi0fMJ7CKGwnCuAGQMqqh7xbBW.jpg", "order": 6}, {"name": "Susan Egan", "character": "Tracy Hansen", "id": 86128, "credit_id": "52fe43259251416c750054e7", "cast_id": 19, "profile_path": "/makjHZa6ZsjH16gLp276tB1Krd3.jpg", "order": 7}, {"name": "Lynn Collins", "character": "Wendy", "id": 21044, "credit_id": "52fe43259251416c750054eb", "cast_id": 20, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 8}, {"name": "Renee Olstead", "character": "Becky", "id": 155621, "credit_id": "52fe43259251416c750054ef", "cast_id": 21, "profile_path": "/Alru3bM9sSE0Q6yeN5fLwNxIy8v.jpg", "order": 9}, {"name": "Alexandra Kyle", "character": "Young Tom-Tom", "id": 157108, "credit_id": "52fe43259251416c750054f3", "cast_id": 22, "profile_path": "/zQRtf4W7AUrCe10m8aJwu4IH4Gq.jpg", "order": 10}, {"name": "Alex Black", "character": "Young Chris Grandy", "id": 154694, "credit_id": "52fe43259251416c750054f7", "cast_id": 23, "profile_path": "/tfJXRIsKO1mvpN6KfVtVfcqwslj.jpg", "order": 11}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe43259251416c7500548b", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 5.8, "runtime": 98}, "496": {"poster_path": "/czn1hU2hJ9ZnDSMvT9lKo261ABH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128505958, "overview": "Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.", "video": false, "id": 496, "genres": [{"id": 35, "name": "Comedy"}], "title": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", "tagline": "Come to Kazakhstan, it's nice!", "vote_count": 367, "homepage": "http://www.boratmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "kk", "name": "\u049b\u0430\u0437\u0430\u049b"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443453", "adult": false, "backdrop_path": "/hAFi159H1TIg3NIi8fGUyTVO1kU.jpg", "production_companies": [{"name": "Four By Two Productions", "id": 20567}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2006-11-02", "popularity": 1.02473761514437, "original_title": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", "budget": 18000000, "cast": [{"name": "Sacha Baron Cohen", "character": "Borat Sagdiyev", "id": 6730, "credit_id": "52fe424ac3a36847f8012b0b", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Ken Davitian", "character": "Azamat Bagatov", "id": 6734, "credit_id": "52fe424ac3a36847f8012b0f", "cast_id": 6, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 1}, {"name": "Luenell", "character": "Luenell", "id": 6735, "credit_id": "52fe424ac3a36847f8012b13", "cast_id": 7, "profile_path": "/qU79UzQhwIgmTCi4HAMj5NOCT4J.jpg", "order": 2}, {"name": "Pamela Anderson", "character": "Herself", "id": 6736, "credit_id": "52fe424ac3a36847f8012b17", "cast_id": 8, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 3}, {"name": "Bob Barr", "character": "Himself", "id": 1082650, "credit_id": "52fe424ac3a36847f8012b69", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Alan Keyes", "character": "Himself", "id": 104882, "credit_id": "52fe424ac3a36847f8012b6d", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Carole De Saram", "character": "Herself", "id": 1123205, "credit_id": "52fe424ac3a36847f8012b71", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Mitchell Falk", "character": "Prime Minister of Kazakhstan", "id": 1123206, "credit_id": "52fe424ac3a36847f8012b75", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "David Corcoran", "character": "Himself - Fraternity Member (uncredited)", "id": 1402792, "credit_id": "5498832fc3a3681cf80001a4", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Andre Myers", "character": "Pride Dancer (uncredited)", "id": 1379499, "credit_id": "54988365925141502d000145", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Jean-Pierre Parent", "character": "Kazakh Swimmer (uncredited)", "id": 1402793, "credit_id": "54988377c3a3681cf80001ad", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Chip Pickering", "character": "Himself - U.S. Congressman (uncredited)", "id": 1402794, "credit_id": "54988399c3a3681cf80001b6", "cast_id": 29, "profile_path": null, "order": 11}], "directors": [{"name": "Larry Charles", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012b65", "profile_path": "/fg42iXWfuIeRVk4NFNWvWJf4hst.jpg", "id": 6767}], "vote_average": 6.2, "runtime": 82}, "497": {"poster_path": "/3yJUlOtVa09CYJocwBU8eAryja0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 284600000, "overview": "A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cellblock's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.", "video": false, "id": 497, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Green Mile", "tagline": "Miracles do happen.", "vote_count": 1210, "homepage": "http://thegreenmile.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120689", "adult": false, "backdrop_path": "/dATygzDbQGJWlolx2vebgqFYAKO.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Darkwoods Productions", "id": 3982}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1999-12-10", "popularity": 1.79333091049337, "original_title": "The Green Mile", "budget": 60000000, "cast": [{"name": "Tom Hanks", "character": "Paul Edgecomb", "id": 31, "credit_id": "52fe424ac3a36847f8012bc7", "cast_id": 4, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Michael Clarke Duncan", "character": "John Coffey", "id": 61981, "credit_id": "52fe424ac3a36847f8012bcb", "cast_id": 5, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 1}, {"name": "David Morse", "character": "Brutus \"Brutal\" Howell", "id": 52, "credit_id": "52fe424ac3a36847f8012c0f", "cast_id": 17, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Bonnie Hunt", "character": "Jan Edgecomb", "id": 5149, "credit_id": "52fe424ac3a36847f8012c0b", "cast_id": 16, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 3}, {"name": "James Cromwell", "character": "Warden Hal Moores", "id": 2505, "credit_id": "52fe424ac3a36847f8012c2f", "cast_id": 25, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 4}, {"name": "Patricia Clarkson", "character": "Melinda Moores", "id": 1276, "credit_id": "52fe424ac3a36847f8012c1b", "cast_id": 20, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 5}, {"name": "Michael Jeter", "character": "Eduard Delacroix", "id": 2169, "credit_id": "52fe424ac3a36847f8012c13", "cast_id": 18, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 6}, {"name": "Sam Rockwell", "character": "'Wild Bill' Wharton", "id": 6807, "credit_id": "52fe424ac3a36847f8012c2b", "cast_id": 24, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 7}, {"name": "Graham Greene", "character": "Arlen Bitterbuck", "id": 6804, "credit_id": "52fe424ac3a36847f8012c17", "cast_id": 19, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 8}, {"name": "Doug Hutchison", "character": "Percy Wetmore", "id": 6806, "credit_id": "52fe424ac3a36847f8012c27", "cast_id": 23, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 9}, {"name": "Barry Pepper", "character": "Dean Stanton", "id": 12834, "credit_id": "52fe424ac3a36847f8012c33", "cast_id": 26, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 10}, {"name": "Jeffrey DeMunn", "character": "Harry Terwilliger", "id": 12645, "credit_id": "52fe424ac3a36847f8012c3b", "cast_id": 28, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 11}, {"name": "Harry Dean Stanton", "character": "Toot-Toot", "id": 5048, "credit_id": "52fe424ac3a36847f8012c37", "cast_id": 27, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 12}, {"name": "Gary Sinise", "character": "Lawyer Burt Hammersmith", "id": 33, "credit_id": "52fe424ac3a36847f8012c23", "cast_id": 22, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 13}, {"name": "Dabbs Greer", "character": "Old Paul Edgecomb", "id": 6805, "credit_id": "52fe424ac3a36847f8012c1f", "cast_id": 21, "profile_path": "/fYqPZcEkaStHTqDlIqxITnr5iJM.jpg", "order": 14}, {"name": "Eve Brent", "character": "Elaine Connelly", "id": 128201, "credit_id": "52fe424ac3a36847f8012c3f", "cast_id": 29, "profile_path": "/cQhAjiXxOfgnmDgLRbFpwrzG5Q0.jpg", "order": 15}], "directors": [{"name": "Frank Darabont", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012bb7", "profile_path": "/9KVvZtDyy8DXacw2TTsjC9VLxQi.jpg", "id": 4027}], "vote_average": 7.8, "runtime": 189}, "500": {"poster_path": "/4ctv9pxKpwjTFevWQbvaqXkXbPF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14661007, "overview": "A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.", "video": false, "id": 500, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Reservoir Dogs", "tagline": "Every dog has his day.", "vote_count": 810, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105236", "adult": false, "backdrop_path": "/gjOiE5EYH5sqcJYlSDZnVWRMgNV.jpg", "production_companies": [{"name": "Dog Eat Dog Productions Inc.", "id": 26198}, {"name": "Live Entertainment", "id": 285}], "release_date": "1992-06-25", "popularity": 1.17657150836133, "original_title": "Reservoir Dogs", "budget": 1200000, "cast": [{"name": "Harvey Keitel", "character": "Mr. White/Larry Dimmick", "id": 1037, "credit_id": "52fe424ac3a36847f8012d01", "cast_id": 20, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 0}, {"name": "Tim Roth", "character": "Mr. Orange/Freddy Newandyke", "id": 3129, "credit_id": "52fe424ac3a36847f8012cbd", "cast_id": 4, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 1}, {"name": "Michael Madsen", "character": "Mr. Blonde/Vic Vega", "id": 147, "credit_id": "52fe424ac3a36847f8012cc1", "cast_id": 5, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 2}, {"name": "Chris Penn", "character": "Nice Guy Eddie Cabot", "id": 2969, "credit_id": "52fe424ac3a36847f8012cc5", "cast_id": 6, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Mr. Pink", "id": 884, "credit_id": "52fe424ac3a36847f8012cc9", "cast_id": 7, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Lawrence Tierney", "character": "Joe Cabot", "id": 6937, "credit_id": "52fe424ac3a36847f8012ccd", "cast_id": 8, "profile_path": "/iFPg06kGUTdgRUkrYir3xt1Dt7c.jpg", "order": 5}, {"name": "Edward Bunker", "character": "Mr. Blue", "id": 6939, "credit_id": "52fe424ac3a36847f8012cd5", "cast_id": 11, "profile_path": "/kQNf8eN5qpWXAhNUrnUnWtBd3Eu.jpg", "order": 6}, {"name": "Quentin Tarantino", "character": "Mr. Brown", "id": 138, "credit_id": "52fe424ac3a36847f8012cd9", "cast_id": 12, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 7}, {"name": "Randy Brooks", "character": "Detective Holdaway", "id": 6938, "credit_id": "52fe424ac3a36847f8012cd1", "cast_id": 9, "profile_path": "/gKWfYjrlMBbaI4dOlnqhWZMWKK0.jpg", "order": 8}, {"name": "Kirk Baltz", "character": "Officer Marvin Nash", "id": 3206, "credit_id": "52fe424ac3a36847f8012d05", "cast_id": 22, "profile_path": "/zCuugN0Lgsi5IKRq9OyYl3vh9pU.jpg", "order": 9}, {"name": "Steven Wright", "character": "K-Billy DJ (voice)", "id": 3214, "credit_id": "52fe424ac3a36847f8012d45", "cast_id": 33, "profile_path": "/m9827iUNPGTbAsfjHD9tpMCXYbR.jpg", "order": 10}, {"name": "Rich Turner", "character": "Sheriff #1", "id": 46346, "credit_id": "52fe424ac3a36847f8012d49", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "David Steen", "character": "Sheriff #2", "id": 1067187, "credit_id": "52fe424ac3a36847f8012d4d", "cast_id": 35, "profile_path": "/kgdUlAb34rXiSamG5It02YDmDnU.jpg", "order": 12}, {"name": "Tony Cosmo", "character": "Sheriff #3", "id": 1287673, "credit_id": "52fe424ac3a36847f8012d51", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Stevo Polyi", "character": "Sheriff #4", "id": 65908, "credit_id": "52fe424ac3a36847f8012d55", "cast_id": 37, "profile_path": null, "order": 14}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012cb9", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.6, "runtime": 99}, "172533": {"poster_path": "/2FxzZPGS4ALSPuFLitK69F3uM02.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too long\u2026 you know what makes the line between \u201cfriends\u201d and \u201cmore than friends\u201d really blurry? Beer.", "video": false, "id": 172533, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Drinking Buddies", "tagline": "A comedy about knowing when to say when.", "vote_count": 142, "homepage": "http://www.magpictures.com/drinkingbuddies", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2265398", "adult": false, "backdrop_path": "/eKBlVf6l4g0lRX25cFCVGEcmDy0.jpg", "production_companies": [{"name": "Burn Later Productions", "id": 18346}], "release_date": "2013-08-23", "popularity": 0.970916193415665, "original_title": "Drinking Buddies", "budget": 0, "cast": [{"name": "Olivia Wilde", "character": "Kate", "id": 59315, "credit_id": "52fe4d21c3a36847f825046b", "cast_id": 4, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 0}, {"name": "Jake M. Johnson", "character": "Luke", "id": 543505, "credit_id": "52fe4d21c3a36847f825046f", "cast_id": 5, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Jill", "id": 84223, "credit_id": "52fe4d21c3a36847f8250477", "cast_id": 7, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Ron Livingston", "character": "Chris", "id": 17402, "credit_id": "52fe4d21c3a36847f8250473", "cast_id": 6, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 3}, {"name": "Jason Sudeikis", "character": "Gene Dentler", "id": 58224, "credit_id": "52fe4d21c3a36847f8250483", "cast_id": 10, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 4}, {"name": "Ti West", "character": "Dave", "id": 101542, "credit_id": "52fe4d21c3a36847f825047b", "cast_id": 8, "profile_path": "/vRxN4eGT6X5MMdjpExZ0YvjDeg9.jpg", "order": 5}, {"name": "Mike Brune", "character": "Mike", "id": 81341, "credit_id": "52fe4d21c3a36847f825047f", "cast_id": 9, "profile_path": "/k3wbxyTOGP91VowqNZWOvqj7rW2.jpg", "order": 6}, {"name": "Frank V. Ross", "character": "Frank", "id": 1034482, "credit_id": "52fe4d21c3a36847f8250487", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Joe Swanberg", "character": "Angry guy in car", "id": 40863, "credit_id": "52fe4d21c3a36847f825048b", "cast_id": 12, "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "order": 8}, {"name": "Michael Gaertner", "character": "Man with Fiance", "id": 1272896, "credit_id": "52fe4d21c3a36847f825048f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Kristin Davis", "character": "Fiance", "id": 935937, "credit_id": "52fe4d21c3a36847f8250493", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Jim Ciback", "character": "Jim", "id": 1272897, "credit_id": "52fe4d21c3a36847f8250497", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Alicia Van Couvering", "character": "Amy", "id": 139137, "credit_id": "52fe4d21c3a36847f825049b", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Michael Zeller", "character": "Eli", "id": 1272898, "credit_id": "52fe4d21c3a36847f825049f", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Joe Swanberg", "department": "Directing", "job": "Director", "credit_id": "52fe4d21c3a36847f825045b", "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "id": 40863}], "vote_average": 6.1, "runtime": 90}, "503": {"poster_path": "/kHrdehzlhyyb190D3RvH8mdX1y2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181674817, "overview": "A Cross-Atlantic ship is traveling in the Atlantic when a giant wave flips it over as the passengers begin a dramatic fight for their lives. Catastrophe film from Wolfgang Petersen from 2006.", "video": false, "id": 503, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Poseidon", "tagline": "Mayday", "vote_count": 136, "homepage": "http://www2.warnerbros.com/poseidon/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0409182", "adult": false, "backdrop_path": "/tUGSLoMcxNWZ0OIRSqDaB2jNbdE.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Virtual Studios", "id": 449}, {"name": "Radiant Productions", "id": 18990}, {"name": "Next Entertainment", "id": 1633}, {"name": "Irwin Allen Productions", "id": 14024}, {"name": "Synthesis Entertainment", "id": 19943}], "release_date": "2006-05-12", "popularity": 0.817852881663743, "original_title": "Poseidon", "budget": 160000000, "cast": [{"name": "Kurt Russell", "character": "Robert Ramsey", "id": 6856, "credit_id": "52fe424ac3a36847f8012ef5", "cast_id": 4, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Richard Dreyfuss", "character": "Richard Nelson", "id": 3037, "credit_id": "52fe424ac3a36847f8012efd", "cast_id": 6, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 1}, {"name": "Josh Lucas", "character": "Dylan Johns", "id": 6164, "credit_id": "52fe424ac3a36847f8012ef9", "cast_id": 5, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 2}, {"name": "Jacinda Barrett", "character": "Maggie James", "id": 6857, "credit_id": "52fe424bc3a36847f8012f01", "cast_id": 7, "profile_path": "/qM5BhDkFh18CASTRGp9UPj4PcYO.jpg", "order": 3}, {"name": "Emmy Rossum", "character": "Jennifer Ramsey", "id": 4730, "credit_id": "52fe424bc3a36847f8012f05", "cast_id": 8, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 4}, {"name": "Mike Vogel", "character": "Christian", "id": 6858, "credit_id": "52fe424bc3a36847f8012f09", "cast_id": 9, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 5}, {"name": "M\u00eda Maestro", "character": "Elena", "id": 6859, "credit_id": "52fe424bc3a36847f8012f0d", "cast_id": 10, "profile_path": "/UIf7kAHqAGRwJ9TZSkZ91A1scr.jpg", "order": 6}, {"name": "Jimmy Bennett", "character": "Conor James", "id": 6860, "credit_id": "52fe424bc3a36847f8012f11", "cast_id": 11, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 7}, {"name": "Andre Braugher", "character": "Captain Bradford", "id": 6861, "credit_id": "52fe424bc3a36847f8012f15", "cast_id": 12, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 8}, {"name": "Freddy Rodr\u00edguez", "character": "Valentin", "id": 6862, "credit_id": "52fe424bc3a36847f8012f19", "cast_id": 13, "profile_path": "/iP6RXaUNTj953RoL8jK3iTV2441.jpg", "order": 9}, {"name": "Kevin Dillon", "character": "Lucky Larry", "id": 6863, "credit_id": "52fe424bc3a36847f8012f1d", "cast_id": 14, "profile_path": "/cePW2pwfTv82du2glTNKklKldAf.jpg", "order": 10}, {"name": "Kirk B.R. Woller", "character": "Chief Officer Reynolds", "id": 6864, "credit_id": "52fe424bc3a36847f8012f21", "cast_id": 15, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 11}, {"name": "Fergie", "character": "Gloria", "id": 20497, "credit_id": "54a57d4ac3a36855420124d0", "cast_id": 42, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 12}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe424ac3a36847f8012ee5", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 5.1, "runtime": 99}, "504": {"poster_path": "/1wFcetx3zDkIaVgXuK6F5ug4pDR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60378584, "overview": "Aileen Wuornos is an emotionally scarred highway hooker who shoots a sadistic trick who rapes her and ultimately becomes America's first female serial killer. The film, based on a true story, centers more on the surrounding circumstances than on the murders.", "video": false, "id": 504, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Monster", "tagline": "Based on a true story.", "vote_count": 86, "homepage": "http://www.monster-derfilm.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0340855", "adult": false, "backdrop_path": "/pexMctImHaIj8haojBDP5RxhM9X.jpg", "production_companies": [{"name": "Newmarket Films", "id": 28}], "release_date": "2003-11-16", "popularity": 0.5266102274242, "original_title": "Monster", "budget": 8000000, "cast": [{"name": "Charlize Theron", "character": "Aileen", "id": 6885, "credit_id": "52fe424bc3a36847f8013009", "cast_id": 3, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 0}, {"name": "Christina Ricci", "character": "Selby", "id": 6886, "credit_id": "52fe424bc3a36847f801300d", "cast_id": 4, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 1}, {"name": "Bruce Dern", "character": "Thomas", "id": 6905, "credit_id": "52fe424bc3a36847f8013089", "cast_id": 26, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 2}, {"name": "Lee Tergesen", "character": "Vincent Corey", "id": 6906, "credit_id": "52fe424bc3a36847f801308d", "cast_id": 27, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 3}, {"name": "Annie Corley", "character": "Donna", "id": 6907, "credit_id": "52fe424bc3a36847f8013091", "cast_id": 28, "profile_path": "/ypA6im4I1S5SzzNAJOdRmZq01YX.jpg", "order": 4}, {"name": "Marc Macaulay", "character": "Will/Daddy \"John\"", "id": 6908, "credit_id": "52fe424bc3a36847f8013095", "cast_id": 29, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 5}, {"name": "Stephan Jones", "character": "Lawyer", "id": 6909, "credit_id": "52fe424bc3a36847f8013099", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "T. Robert Pigott", "character": "Bartender", "id": 6910, "credit_id": "52fe424bc3a36847f801309d", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Catherine Mangan", "character": "Justy", "id": 95749, "credit_id": "52fe424bc3a36847f80130a7", "cast_id": 34, "profile_path": null, "order": 8}], "directors": [{"name": "Patty Jenkins", "department": "Directing", "job": "Director", "credit_id": "52fe424bc3a36847f8012fff", "profile_path": null, "id": 6884}], "vote_average": 6.8, "runtime": 110}, "33273": {"poster_path": "/kIC41387ph63EIWaGkHxij6S68n.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The story of two men on different sides of a prison riot -- the inmate leading the rebellion and the young guard trapped in the revolt, who poses as a prisoner in a desperate attempt to survive the ordeal.", "video": false, "id": 33273, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Cell 211", "tagline": "To survive inside, he has to become one of them.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "eu", "name": "euskera"}], "imdb_id": "tt1242422", "adult": false, "backdrop_path": "/ktmOgR85nHbdUL3EBESus3YyKe4.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "La Fabrique 2", "id": 7346}, {"name": "La Fabrique de Films", "id": 2673}, {"name": "Morena Films", "id": 10031}, {"name": "Sofica Europacorp", "id": 854}, {"name": "Sofica Soficin\u00e9ma 4", "id": 11397}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Vaca Films", "id": 7345}], "release_date": "2009-11-06", "popularity": 0.605676738107687, "original_title": "Celda 211", "budget": 5700000, "cast": [{"name": "Luis Tosar", "character": "Malamadre", "id": 16867, "credit_id": "52fe45089251416c910252f7", "cast_id": 1, "profile_path": "/tRNvw26QeN80JwWHoamk262hjjq.jpg", "order": 0}, {"name": "Alberto Ammann", "character": "Juan Oliver", "id": 110424, "credit_id": "52fe45089251416c910252fb", "cast_id": 2, "profile_path": "/5Z1eTkSZeqHkpIoMiuXcLjG8iGo.jpg", "order": 1}, {"name": "Antonio Resines", "character": "Jos\u00e9 Utrilla", "id": 37569, "credit_id": "52fe45089251416c910252ff", "cast_id": 3, "profile_path": "/dyx66cqO6nsZqBu6hIHHT5Se8WT.jpg", "order": 2}, {"name": "Carlos Bardem", "character": "Apache", "id": 78882, "credit_id": "52fe45089251416c91025309", "cast_id": 5, "profile_path": "/pCDBcmJo0vSQPEX3aobh1ub0acd.jpg", "order": 3}, {"name": "F\u00e9lix Cubero", "character": "Germ\u00e1n", "id": 116082, "credit_id": "52fe45089251416c9102530d", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Marta Etura ", "character": "Elena", "id": 587930, "credit_id": "52fe45089251416c9102531d", "cast_id": 10, "profile_path": "/oeJdzgkM4u6rnay5zkjlK11deSG.jpg", "order": 5}, {"name": "Luis Zahera", "character": "Releches", "id": 28511, "credit_id": "52fe45089251416c91025321", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Fernando Soto", "character": "Armando Nieto", "id": 184453, "credit_id": "52fe45089251416c91025325", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Vicente Romero", "character": "Tachuela", "id": 6540, "credit_id": "52fe45089251416c91025329", "cast_id": 13, "profile_path": "/bY7ZfavsmIGAFcRWuB0o12hgxq8.jpg", "order": 8}, {"name": "Patxi Bisquert", "character": "Jon Arteaga", "id": 942128, "credit_id": "52fe45089251416c9102532d", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Manolo Solo", "character": "Prison Director", "id": 592709, "credit_id": "52fe45089251416c91025391", "cast_id": 31, "profile_path": "/vIYNmEhVT2b1SP9TTrIdyZzkm1N.jpg", "order": 10}, {"name": "Josean Bengoetxea", "character": "Antxon Elorza 'El Profesor'", "id": 1117803, "credit_id": "52fe45089251416c91025395", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Anartz Zuazua", "character": "Asier Urruticoechea", "id": 1117804, "credit_id": "52fe45089251416c91025399", "cast_id": 33, "profile_path": "/nerzZWj1fKGOWfVUQeMq9Pbu7oH.jpg", "order": 12}], "directors": [{"name": "Daniel Monz\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe45089251416c91025305", "profile_path": "/wUC6ElTblGlUI03iSxw6U67DK51.jpg", "id": 74943}], "vote_average": 7.1, "runtime": 110}, "8698": {"poster_path": "/AliSeCLFB6ZAkQIxosr8RAkFf6R.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 179265204, "overview": "In an alternate turn of the 20th century, an attack on the Bank of England by men who appear to be German soldiers followed by an attack on a German Zeppelin factory by the same men this time dressed as British soldiers, leads Europe to the brink of war. An emissary of the British government, arrives in Africa, hoping to recruit the legendary hunter Allan Quatermain to investigate the situation.", "video": false, "id": 8698, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The League of Extraordinary Gentlemen", "tagline": "The power of seven become a league of one.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0311429", "adult": false, "backdrop_path": "/rWtdOms2x2r1H4hx2IG463fuis6.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Angry Films", "id": 12087}, {"name": "International Production Company", "id": 1507}, {"name": "JD Productions", "id": 475}, {"name": "Mediastream Dritte Film GmbH & Co. Beteiligungs KG", "id": 19352}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2003-07-11", "popularity": 1.63778046189846, "original_title": "The League of Extraordinary Gentlemen", "budget": 78000000, "cast": [{"name": "Sean Connery", "character": "Allan Quatermain", "id": 738, "credit_id": "52fe44b5c3a36847f80a5963", "cast_id": 17, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Naseeruddin Shah", "character": "Captain Nemo", "id": 6497, "credit_id": "52fe44b5c3a36847f80a5947", "cast_id": 10, "profile_path": "/qWnNn7RupC0vqwZGWUHHfLuyKMM.jpg", "order": 1}, {"name": "Peta Wilson", "character": "Mina Harker", "id": 42307, "credit_id": "52fe44b5c3a36847f80a594b", "cast_id": 11, "profile_path": "/bscIMeocvJAojtsc7kpK6ab9xgL.jpg", "order": 2}, {"name": "Tony Curran", "character": "Rodney Skinner (The Invisible Man)", "id": 2220, "credit_id": "52fe44b5c3a36847f80a594f", "cast_id": 12, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 3}, {"name": "Stuart Townsend", "character": "Dorian Gray", "id": 56778, "credit_id": "52fe44b5c3a36847f80a5953", "cast_id": 13, "profile_path": "/8xnPcuwJEz2aiPr4NoqgfBj6lnW.jpg", "order": 4}, {"name": "Shane West", "character": "Tom Sawyer", "id": 81295, "credit_id": "52fe44b5c3a36847f80a5957", "cast_id": 14, "profile_path": "/1TiKpPiFwdUbs24yrNZLSzAjsnk.jpg", "order": 5}, {"name": "Jason Flemyng", "character": "Dr. Henry Jekyll / Edward Hyde", "id": 973, "credit_id": "52fe44b5c3a36847f80a595b", "cast_id": 15, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 6}, {"name": "Richard Roxburgh", "character": "M", "id": 12206, "credit_id": "52fe44b5c3a36847f80a595f", "cast_id": 16, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 7}, {"name": "Max Ryan", "character": "Dante", "id": 21942, "credit_id": "52fe44b5c3a36847f80a5967", "cast_id": 18, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 8}, {"name": "Tom Goodman-Hill", "character": "Sanderson Reed", "id": 43034, "credit_id": "52fe44b5c3a36847f80a596b", "cast_id": 19, "profile_path": "/ryyyhVGZ9cHFQQbXu1A9Vh7DKv3.jpg", "order": 9}, {"name": "David Hemmings", "character": "Nigel", "id": 15196, "credit_id": "52fe44b5c3a36847f80a596f", "cast_id": 20, "profile_path": "/k2M6UrbkWYF8FewmKQm3TWu6KMX.jpg", "order": 10}, {"name": "Terry O'Neill", "character": "Ishmael", "id": 82410, "credit_id": "52fe44b5c3a36847f80a5973", "cast_id": 21, "profile_path": "/gJazxnZsm4sDavnP7gedgO7rtpw.jpg", "order": 11}, {"name": "Rudolf Pellar", "character": "Draper", "id": 953987, "credit_id": "52fe44b5c3a36847f80a5977", "cast_id": 22, "profile_path": "/3q8e2SvZJrGAlRtTk7N8rbb2P6k.jpg", "order": 12}, {"name": "Robert Willox", "character": "Constable Dunning", "id": 27416, "credit_id": "52fe44b5c3a36847f80a597b", "cast_id": 23, "profile_path": "/z8wdLKL5bHPr2z199NJTW1Z1MXq.jpg", "order": 13}, {"name": "Robert Orr", "character": "Running Officer", "id": 21014, "credit_id": "52fe44b5c3a36847f80a597f", "cast_id": 24, "profile_path": "/1fnh6iPohS10SXQg2a8Xk9kkXaM.jpg", "order": 14}, {"name": "Michael McGuffie", "character": "Copper #1", "id": 953058, "credit_id": "52fe44b5c3a36847f80a5983", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Joel Kirby", "character": "Copper #2", "id": 25677, "credit_id": "52fe44b5c3a36847f80a5987", "cast_id": 26, "profile_path": "/pDreMKCIgOx732oMoQMhJx1FFFm.jpg", "order": 16}, {"name": "Marek Va\u0161ut", "character": "Soldier", "id": 10849, "credit_id": "52fe44b5c3a36847f80a598b", "cast_id": 27, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 17}, {"name": "Ewart James Walters", "character": "Toby", "id": 207031, "credit_id": "52fe44b5c3a36847f80a598f", "cast_id": 28, "profile_path": "/z4WRDB2e4koEf5X9kcr1AeoqVYn.jpg", "order": 18}, {"name": "Michal Gr\u00fcn", "character": "Assassin #3", "id": 950948, "credit_id": "52fe44b5c3a36847f80a5993", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Robert Vahey", "character": "Elderly Hunter", "id": 201428, "credit_id": "52fe44b5c3a36847f80a5997", "cast_id": 30, "profile_path": "/6QXqhquFJeqHLQELfww1kwERxLP.jpg", "order": 20}, {"name": "Sylvester Morand", "character": "Old Treveler", "id": 36664, "credit_id": "52fe44b5c3a36847f80a599b", "cast_id": 31, "profile_path": "/yKtoG2NtNtWtRa5ZlgWKctUfbPg.jpg", "order": 21}, {"name": "Mariano Titanti", "character": "Edgar Shreave", "id": 1077312, "credit_id": "52fe44b5c3a36847f80a599f", "cast_id": 32, "profile_path": "/e48fHF7yQ8eFJsJ3XsCicSilIW3.jpg", "order": 22}, {"name": "Huggy Leaver", "character": "Hanson Cab Driver", "id": 992, "credit_id": "52fe44b5c3a36847f80a59a3", "cast_id": 33, "profile_path": "/xcfx1ELLNth5UZIM4lOpMK3GG0k.jpg", "order": 23}], "directors": [{"name": "Stephen Norrington", "department": "Directing", "job": "Director", "credit_id": "52fe44b5c3a36847f80a5913", "profile_path": "/8BG5bnmk28IMRN8diyTwExn68HI.jpg", "id": 10808}], "vote_average": 5.7, "runtime": 110}, "8699": {"poster_path": "/pdy6TWKUbSC9vtmxsFA73FZBVP3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90574188, "overview": "It's the 1970's and San Diego super-sexist anchorman Ron Burgundy is the top dog in local TV, but that's all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.", "video": false, "id": 8699, "genres": [{"id": 35, "name": "Comedy"}], "title": "Anchorman: The Legend of Ron Burgundy", "tagline": "They bring you the news so you don't have to get it yourself.", "vote_count": 439, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eUU6edsZcr7I0AO8rHcB3vQwcOH.jpg", "poster_path": "/xjnbrB93Vj5yGYwU0uuW8Tu2qoc.jpg", "id": 93791, "name": "Anchorman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0357413", "adult": false, "backdrop_path": "/8WsItKHM14rhyG8hW6hswkAtVu.jpg", "production_companies": [{"name": "DreamWorks Pictures", "id": 7293}, {"name": "Apatow Productions", "id": 10105}, {"name": "Herzog-Cowen Entertainment", "id": 2523}], "release_date": "2004-07-09", "popularity": 0.96510244826437, "original_title": "Anchorman: The Legend of Ron Burgundy", "budget": 26000000, "cast": [{"name": "Will Ferrell", "character": "Ron Burgundy", "id": 23659, "credit_id": "52fe44b5c3a36847f80a59e3", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Christina Applegate", "character": "Veronica Corningstone", "id": 18979, "credit_id": "52fe44b5c3a36847f80a59df", "cast_id": 1, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 1}, {"name": "Paul Rudd", "character": "Brian Fantana", "id": 22226, "credit_id": "52fe44b5c3a36847f80a59e7", "cast_id": 3, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 2}, {"name": "David Koechner", "character": "Champion 'Champ' Kind", "id": 28638, "credit_id": "52fe44b5c3a36847f80a5a4f", "cast_id": 25, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 3}, {"name": "Steve Carell", "character": "Brick Tamland", "id": 4495, "credit_id": "52fe44b5c3a36847f80a59eb", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 4}, {"name": "Fred Willard", "character": "Ed Harken", "id": 20753, "credit_id": "52fe44b5c3a36847f80a5a53", "cast_id": 26, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 5}, {"name": "Chris Parnell", "character": "Garth Holladay", "id": 51382, "credit_id": "52fe44b5c3a36847f80a5a57", "cast_id": 27, "profile_path": "/dLdXHfbJ7TMe3qbtNzPpSLuaMos.jpg", "order": 6}, {"name": "Vince Vaughn", "character": "Wes Mantooth", "id": 4937, "credit_id": "52fe44b5c3a36847f80a5a1b", "cast_id": 16, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 7}, {"name": "Luke Wilson", "character": "Frank Vitchard", "id": 36422, "credit_id": "52fe44b5c3a36847f80a5a07", "cast_id": 11, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 8}, {"name": "Ben Stiller", "character": "Arturo Mendes", "id": 7399, "credit_id": "52fe44b5c3a36847f80a5a17", "cast_id": 15, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 9}, {"name": "Kathryn Hahn", "character": "Helen", "id": 17696, "credit_id": "52fe44b5c3a36847f80a59ef", "cast_id": 5, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 10}, {"name": "Seth Rogen", "character": "Eager Cameraman", "id": 19274, "credit_id": "52fe44b5c3a36847f80a59f3", "cast_id": 6, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 11}, {"name": "Danny Trejo", "character": "Barkeeper", "id": 11160, "credit_id": "52fe44b5c3a36847f80a59f7", "cast_id": 7, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 12}, {"name": "Ian Roberts", "character": "Stage Manager", "id": 13101, "credit_id": "52fe44b5c3a36847f80a59fb", "cast_id": 8, "profile_path": "/yVLXoRloTMZGoZIoaFLcyPrp1yV.jpg", "order": 13}, {"name": "Darcy Donavan", "character": "Hot Blonde", "id": 55709, "credit_id": "52fe44b5c3a36847f80a59ff", "cast_id": 9, "profile_path": null, "order": 14}, {"name": "Judd Apatow", "character": "News Station Employee", "id": 41039, "credit_id": "52fe44b5c3a36847f80a5a03", "cast_id": 10, "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "order": 15}, {"name": "Jack Black", "character": "Motorradfahrer (uncredited)", "id": 70851, "credit_id": "52fe44b5c3a36847f80a5a0b", "cast_id": 12, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 16}, {"name": "Missi Pyle", "character": "Zoo Keeper (uncredited)", "id": 1294, "credit_id": "52fe44b5c3a36847f80a5a0f", "cast_id": 13, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 17}, {"name": "Tim Robbins", "character": "Public TV News Anchor (uncredited)", "id": 504, "credit_id": "52fe44b5c3a36847f80a5a13", "cast_id": 14, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 18}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe44b5c3a36847f80a5a27", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.7, "runtime": 94}, "508": {"poster_path": "/kfX8Ctin3fSZbdnjh6CXSNZUOVP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244931766, "overview": "Follows seemingly unrelated people as their lives begin to intertwine while they fall in, and out, of love. Affections languish and develop as Christmas draws near.", "video": false, "id": 508, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Love Actually", "tagline": "The ultimate romantic comedy.", "vote_count": 646, "homepage": "http://www.loveactually.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0314331", "adult": false, "backdrop_path": "/jVvyV0VzRB8xbBxGAPMHUgT3CaZ.jpg", "production_companies": [{"name": "DNA Films", "id": 284}], "release_date": "2003-11-07", "popularity": 1.12965634886669, "original_title": "Love Actually", "budget": 40000000, "cast": [{"name": "Bill Nighy", "character": "Billy Mack", "id": 2440, "credit_id": "52fe424bc3a36847f8013351", "cast_id": 15, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "Gregor Fisher", "character": "Joe", "id": 7053, "credit_id": "52fe424bc3a36847f8013355", "cast_id": 16, "profile_path": "/reJh7YHXEfdvY6dVHyzXOP7eNhs.jpg", "order": 1}, {"name": "Colin Firth", "character": "Jamie Bennett", "id": 5472, "credit_id": "52fe424bc3a36847f8013359", "cast_id": 18, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 2}, {"name": "Sienna Guillory", "character": "Jamie's Girlfriend", "id": 7055, "credit_id": "52fe424bc3a36847f801335d", "cast_id": 19, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 3}, {"name": "Liam Neeson", "character": "Daniel", "id": 3896, "credit_id": "52fe424bc3a36847f8013361", "cast_id": 20, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 4}, {"name": "Emma Thompson", "character": "Karen", "id": 7056, "credit_id": "52fe424bc3a36847f8013365", "cast_id": 21, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 5}, {"name": "Kris Marshall", "character": "Colin Frissell", "id": 7058, "credit_id": "52fe424bc3a36847f8013369", "cast_id": 23, "profile_path": "/qFYjr7vVdSlsRD3bPlIfwft532m.jpg", "order": 6}, {"name": "Heike Makatsch", "character": "Mia", "id": 7059, "credit_id": "52fe424bc3a36847f801336d", "cast_id": 24, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 7}, {"name": "Martin Freeman", "character": "John", "id": 7060, "credit_id": "52fe424bc3a36847f8013371", "cast_id": 25, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 8}, {"name": "Joanna Page", "character": "Just Judy", "id": 7061, "credit_id": "52fe424bc3a36847f8013375", "cast_id": 26, "profile_path": "/i0Mgrg3K2HvcQWnQmliD3FesBAk.jpg", "order": 9}, {"name": "Chiwetel Ejiofor", "character": "Peter", "id": 5294, "credit_id": "52fe424bc3a36847f8013379", "cast_id": 27, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 10}, {"name": "Andrew Lincoln", "character": "Mark", "id": 7062, "credit_id": "52fe424bc3a36847f801337d", "cast_id": 28, "profile_path": "/b4KqT3vy3MFurEp7q2ni1PRyDxL.jpg", "order": 11}, {"name": "Keira Knightley", "character": "Juliet", "id": 116, "credit_id": "52fe424bc3a36847f8013381", "cast_id": 29, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 12}, {"name": "Hugh Grant", "character": "The Prime Minister", "id": 3291, "credit_id": "52fe424bc3a36847f8013385", "cast_id": 30, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 13}, {"name": "Nina Sosanya", "character": "Annie", "id": 7063, "credit_id": "52fe424bc3a36847f8013389", "cast_id": 31, "profile_path": "/gSshTv2RXJPZjYFjq0rV8COk6bX.jpg", "order": 14}, {"name": "Billy Bob Thornton", "character": "The US President", "id": 879, "credit_id": "52fe424bc3a36847f801338d", "cast_id": 32, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 15}, {"name": "Alan Rickman", "character": "Harry", "id": 4566, "credit_id": "52fe424bc3a36847f8013391", "cast_id": 33, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 16}, {"name": "Martine McCutcheon", "character": "Natalie", "id": 47714, "credit_id": "52fe424bc3a36847f801339b", "cast_id": 35, "profile_path": "/dPjVT2PMje8KtXZAiDC00H8sWmZ.jpg", "order": 17}, {"name": "Laura Linney", "character": "Sarah", "id": 350, "credit_id": "52fe424bc3a36847f801339f", "cast_id": 36, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 18}, {"name": "Thomas Sangster", "character": "Sam", "id": 25663, "credit_id": "52fe424cc3a36847f80133c9", "cast_id": 48, "profile_path": "/x8floQ1YshVhPdwdTQDz9aJjuXE.jpg", "order": 19}, {"name": "Rodrigo Santoro", "character": "Karl", "id": 17289, "credit_id": "52fe424bc3a36847f80133a3", "cast_id": 38, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 20}, {"name": "Rowan Atkinson", "character": "Rufus, jewellery salesman", "id": 10730, "credit_id": "52fe424cc3a36847f80133a7", "cast_id": 39, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 21}, {"name": "Claudia Schiffer", "character": "Carol", "id": 33163, "credit_id": "52fe424cc3a36847f80133ab", "cast_id": 40, "profile_path": "/pIF64tY07cbYo3IlnFcPB3KJl5c.jpg", "order": 22}, {"name": "Ivana Mili\u010devi\u0107", "character": "Stacey", "id": 29930, "credit_id": "52fe424cc3a36847f80133af", "cast_id": 41, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 23}, {"name": "January Jones", "character": "Jeannie", "id": 31717, "credit_id": "52fe424cc3a36847f80133b3", "cast_id": 42, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 24}, {"name": "Elisha Cuthbert", "character": "Carol-Anne", "id": 25837, "credit_id": "52fe424cc3a36847f80133b7", "cast_id": 43, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 25}, {"name": "Shannon Elizabeth", "character": "Harriet - the Sexy One", "id": 21596, "credit_id": "52fe424cc3a36847f80133c1", "cast_id": 45, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 26}, {"name": "Denise Richards", "character": "Carla - the Real Friendly One", "id": 9205, "credit_id": "52fe424cc3a36847f80133c5", "cast_id": 46, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 27}, {"name": "Sheila Allen", "character": "Jamie's mum", "id": 1220981, "credit_id": "52fe424cc3a36847f80133cd", "cast_id": 49, "profile_path": "/xRj8h5w0d6btBtR9mhQIv7ufXjL.jpg", "order": 28}], "directors": [{"name": "Richard Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe424bc3a36847f8013305", "profile_path": "/uLjkovqtUtM4SckCFtrevZKKJNM.jpg", "id": 7018}], "vote_average": 6.8, "runtime": 135}, "509": {"poster_path": "/f1gMw3PVicfdq9thlvUIjJ5UdvS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 363889678, "overview": "The British comedy from director Roger Michell tells the love story between a famous actress and a simple book seller from London. A look into the attempt for famous people to have a personal and private life and the ramifications that follow. Nominated for three Golden Globes in 2000.", "video": false, "id": 509, "genres": [{"id": 35, "name": "Comedy"}], "title": "Notting Hill", "tagline": "Can the most famous film star in the world fall for just an ordinary guy?", "vote_count": 271, "homepage": "http://www.notting-hill.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0125439", "adult": false, "backdrop_path": "/vdoJql494lQhcMhqA4ct3oeXZku.jpg", "production_companies": [{"name": "Notting Hill Pictures", "id": 283}, {"name": "Polygram Filmed Entertainment", "id": 31080}, {"name": "Working Title Films", "id": 10163}, {"name": "Bookshop Productions", "id": 282}], "release_date": "1999-05-13", "popularity": 1.05074475109073, "original_title": "Notting Hill", "budget": 42000000, "cast": [{"name": "Julia Roberts", "character": "Anna Scott", "id": 1204, "credit_id": "52fe424cc3a36847f801343d", "cast_id": 11, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Hugh Grant", "character": "William Thacker", "id": 3291, "credit_id": "52fe424cc3a36847f8013441", "cast_id": 12, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 1}, {"name": "Gina McKee", "character": "Bella", "id": 18022, "credit_id": "54839a769251416e74009896", "cast_id": 26, "profile_path": "/quZGThktNWxoeA06Er98QUKgLNr.jpg", "order": 2}, {"name": "Tim McInnerny", "character": "Max", "id": 41043, "credit_id": "54839a39c3a36829b500b627", "cast_id": 24, "profile_path": "/wxO1c0e5N1WHn2wLHmEbvrfqnnX.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Spike", "id": 7026, "credit_id": "52fe424cc3a36847f8013449", "cast_id": 14, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Emma Chambers", "character": "Honey", "id": 7446, "credit_id": "52fe424cc3a36847f8013465", "cast_id": 21, "profile_path": "/mTx1bcCLEWSfeVGX0tpztvevvY1.jpg", "order": 5}, {"name": "Hugh Bonneville", "character": "Bernie", "id": 19923, "credit_id": "54839acd92514175f5002603", "cast_id": 27, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 6}, {"name": "Richard McCabe", "character": "Tony", "id": 7025, "credit_id": "52fe424cc3a36847f8013445", "cast_id": 13, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 7}, {"name": "James Dreyfus", "character": "Martin", "id": 7027, "credit_id": "52fe424cc3a36847f801344d", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Dylan Moran", "character": "Rufus the Thief", "id": 7028, "credit_id": "52fe424cc3a36847f8013451", "cast_id": 16, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 9}, {"name": "Roger Frost", "character": "Annoying Customer", "id": 7029, "credit_id": "52fe424cc3a36847f8013455", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Henry Goodman", "character": "Ritz Concierge", "id": 7030, "credit_id": "52fe424cc3a36847f8013459", "cast_id": 18, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 11}, {"name": "Julian Rhind-Tutt", "character": "'Time Out' Journalist", "id": 7031, "credit_id": "52fe424cc3a36847f801345d", "cast_id": 19, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 12}, {"name": "Lorelei King", "character": "Anna's Publicist", "id": 7032, "credit_id": "52fe424cc3a36847f8013461", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Alec Baldwin", "character": "Jeff King", "id": 7447, "credit_id": "52fe424cc3a36847f8013469", "cast_id": 22, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 14}, {"name": "John Shrapnel", "character": "PR Chief", "id": 940, "credit_id": "52fe424cc3a36847f801346d", "cast_id": 23, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 15}], "directors": [{"name": "Roger Michell", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013403", "profile_path": "/zDjSgsAY44QJljrvzIZWnWauqlg.jpg", "id": 7017}], "vote_average": 6.6, "runtime": 124}, "510": {"poster_path": "/bYZumDpc1o0adyuAZjXqgkZ182m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108981275, "overview": "While serving time for insanity at a state mental hospital, implacable rabble-rouser Randle Patrick McMurphy inspires his fellow patients to rebel against the authoritarian rule of head nurse Mildred Ratched.", "video": false, "id": 510, "genres": [{"id": 18, "name": "Drama"}], "title": "One Flew Over the Cuckoo's Nest", "tagline": "If he's crazy, what does that make you?", "vote_count": 785, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0073486", "adult": false, "backdrop_path": "/zFbKo9V1SVzndc8mydi92txe1jg.jpg", "production_companies": [{"name": "Fantasy Films", "id": 286}], "release_date": "1975-11-18", "popularity": 1.21564315722586, "original_title": "One Flew Over the Cuckoo's Nest", "budget": 3000000, "cast": [{"name": "Jack Nicholson", "character": "Randle Patrick McMurphy", "id": 514, "credit_id": "52fe424cc3a36847f80134fd", "cast_id": 15, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Louise Fletcher", "character": "Nurse Mildred Ratched", "id": 7071, "credit_id": "52fe424cc3a36847f8013501", "cast_id": 16, "profile_path": "/A4Cn7LsuLlOXvOMKv5ez4ThyeZL.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Martini", "id": 518, "credit_id": "52fe424cc3a36847f8013505", "cast_id": 17, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "William Redfield", "character": "Harding", "id": 7072, "credit_id": "52fe424cc3a36847f8013509", "cast_id": 18, "profile_path": "/5Tk02lfq65M4GT4lfCCfSais2Qg.jpg", "order": 3}, {"name": "Scatman Crothers", "character": "Orderly Turkle", "id": 7077, "credit_id": "52fe424cc3a36847f801350d", "cast_id": 19, "profile_path": "/n3REW3TGbjLC8SbaZG7g48pm98n.jpg", "order": 4}, {"name": "Brad Dourif", "character": "Billy Bibbit", "id": 1370, "credit_id": "52fe424cc3a36847f8013511", "cast_id": 20, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 5}, {"name": "Christopher Lloyd", "character": "Taber", "id": 1062, "credit_id": "52fe424cc3a36847f8013515", "cast_id": 21, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 6}, {"name": "Will Sampson", "character": "Chief Bromden", "id": 68301, "credit_id": "52fe424cc3a36847f8013519", "cast_id": 22, "profile_path": "/qcufMVWjaK0jlcDkkUZ6Kawvj2l.jpg", "order": 7}, {"name": "Dean R. Brooks", "character": "Dr. John Spivey", "id": 7075, "credit_id": "52fe424cc3a36847f801351d", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Michael Berryman", "character": "Ellis", "id": 7073, "credit_id": "52fe424cc3a36847f8013521", "cast_id": 24, "profile_path": "/vXvztwbkFc0Pz8ty0Jlaomo8P10.jpg", "order": 9}, {"name": "Sydney Lassick", "character": "Charlie Cheswick", "id": 7085, "credit_id": "52fe424cc3a36847f8013525", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "William Duell", "character": "Jim Sefelt", "id": 7079, "credit_id": "52fe424cc3a36847f8013529", "cast_id": 26, "profile_path": "/1X6Qj2BQyy6QniGx0P73t18UxRk.jpg", "order": 11}, {"name": "Vincent Schiavelli", "character": "Fredrickson", "id": 3418, "credit_id": "52fe424cc3a36847f801352d", "cast_id": 27, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 12}], "directors": [{"name": "Milo\u0161 Forman", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f80134ab", "profile_path": "/nKnsrK9h02F1QlMetkyr9R45VGM.jpg", "id": 3974}], "vote_average": 7.8, "runtime": 133}, "8277": {"poster_path": "/jZ0mFsl1Cp28GrJoNPuku75gNPn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Erik, Ryan, and Cooze start college and pledge the Beta House fraternity, presided over by none other than legendary Dwight Stifler. But chaos ensues when a fraternity of geeks threatens to stop the debauchery and the Betas have to make a stand for their right to party.", "video": false, "id": 8277, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: Beta House", "tagline": "", "vote_count": 108, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0974959", "adult": false, "backdrop_path": "/txR74Uy6sYbUv4HQURQXNF8LXTf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2007-12-10", "popularity": 1.24748140091748, "original_title": "American Pie Presents: Beta House", "budget": 0, "cast": [{"name": "John White", "character": "Erik Stifler", "id": 26973, "credit_id": "52fe449ac3a36847f809fb53", "cast_id": 3, "profile_path": "/8zB8P7zyTTftK1acA5UhwWb4jMU.jpg", "order": 0}, {"name": "Steve Talley", "character": "Dwight Stifler", "id": 26975, "credit_id": "52fe449ac3a36847f809fb57", "cast_id": 4, "profile_path": "/k0T00nPOY7K0Wocd5l7gfjoTJHF.jpg", "order": 1}, {"name": "Christopher McDonald", "character": "Mr. Stifler", "id": 4443, "credit_id": "52fe449ac3a36847f809fb5b", "cast_id": 5, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 2}, {"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe449ac3a36847f809fb5f", "cast_id": 6, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 3}, {"name": "Jake Siegel", "character": "Mike Coozeman", "id": 54598, "credit_id": "52fe449ac3a36847f809fb63", "cast_id": 7, "profile_path": "/58L1doLjmEJxxfA23qeu2QjNt4C.jpg", "order": 4}, {"name": "Meghan Heffern", "character": "Ashley", "id": 27004, "credit_id": "52fe449ac3a36847f809fb67", "cast_id": 9, "profile_path": "/djl8gcKuGRREfR51UgF0TUfINwG.jpg", "order": 5}, {"name": "Jonathan Keltz", "character": "Wesley", "id": 95137, "credit_id": "52fe449bc3a36847f809fb83", "cast_id": 15, "profile_path": "/gU11hhT43Aj7NSNaGprBxYatqPp.jpg", "order": 6}, {"name": "Bradford Anderson", "character": "Jake Parker", "id": 203097, "credit_id": "52fe449bc3a36847f809fb87", "cast_id": 16, "profile_path": "/rx2VEbVI3UtZKv3TStr4suFxbXR.jpg", "order": 7}, {"name": "Robbie Amell", "character": "Nick Anderson", "id": 1223726, "credit_id": "52fe449bc3a36847f809fb8b", "cast_id": 17, "profile_path": "/At42ERb0b0tUQmcaQKStGLhbLqN.jpg", "order": 8}, {"name": "Italia Ricci", "character": "Laura Johnson", "id": 212429, "credit_id": "54b77f23c3a3686c5f001852", "cast_id": 18, "profile_path": "/c2hdp1feyjdjBdTzrLwnnlNBsO4.jpg", "order": 9}], "directors": [{"name": "Andrew Waller", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809fb49", "profile_path": null, "id": 26971}], "vote_average": 5.6, "runtime": 88}, "512": {"poster_path": "/mRRSxsCnJriz3geocV4i6Lm0nox.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 31584901, "overview": "An American journalism student in London scoops a big story, and begins an affair with an aristocrat as the incident unfurls.", "video": false, "id": 512, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "Scoop", "tagline": "The perfect man. The perfect story. The perfect murder.", "vote_count": 64, "homepage": "http://www.scoopmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457513", "adult": false, "backdrop_path": "/aqX5vRs8BOKhyQOozktrKBuiPXN.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Ingenious Media", "id": 290}, {"name": "Perdido Prod.", "id": 291}], "release_date": "2006-07-27", "popularity": 0.46678147737093, "original_title": "Scoop", "budget": 4000000, "cast": [{"name": "Hugh Jackman", "character": "Peter Lyman", "id": 6968, "credit_id": "52fe424cc3a36847f801368b", "cast_id": 3, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Sondra Pransky", "id": 1245, "credit_id": "52fe424cc3a36847f801368f", "cast_id": 4, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Geoff Bell", "character": "Strombel's Co-Worker", "id": 6969, "credit_id": "52fe424cc3a36847f8013693", "cast_id": 5, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 2}, {"name": "Christopher Fulford", "character": "Strombel's Co-Worker", "id": 6970, "credit_id": "52fe424cc3a36847f8013697", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Nigel Lindsay", "character": "Strombel's Co-Worker", "id": 6971, "credit_id": "52fe424cc3a36847f801369b", "cast_id": 7, "profile_path": "/upY5S0X5JkvWiCnsvtI7NRueJuF.jpg", "order": 4}, {"name": "Ian McShane", "character": "Joe Strombel", "id": 6972, "credit_id": "52fe424cc3a36847f801369f", "cast_id": 8, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 5}, {"name": "Fenella Woolgar", "character": "Jane Cook", "id": 6973, "credit_id": "52fe424cc3a36847f80136a3", "cast_id": 9, "profile_path": "/3PL2CTs2A3iVejdQ7WkrJxNe6vh.jpg", "order": 6}, {"name": "Doreen Mantle", "character": "Joe's Co-Passenger #1", "id": 6974, "credit_id": "52fe424cc3a36847f80136a7", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "David Schneider", "character": "Joe's Co-Passenger #2", "id": 2065, "credit_id": "52fe424cc3a36847f80136ab", "cast_id": 11, "profile_path": "/dwnUaApf65LPIKUndH4VkznA5Lv.jpg", "order": 8}, {"name": "Meera Syal", "character": "Joe's Co-Passenger #3", "id": 6975, "credit_id": "52fe424cc3a36847f80136af", "cast_id": 12, "profile_path": "/9MQMwNMpjScnaU5OkqXhlXedrGl.jpg", "order": 9}, {"name": "Kevin McNally", "character": "Mike Tinsley", "id": 2449, "credit_id": "52fe424cc3a36847f80136b3", "cast_id": 13, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 10}, {"name": "Robyn Kerr", "character": "Tinsley\u2019s Fan #1", "id": 6976, "credit_id": "52fe424cc3a36847f80136b7", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Richard Stirling", "character": "Tinsley's Fan #2", "id": 6977, "credit_id": "52fe424cc3a36847f80136bb", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jim Dunk", "character": "Funeral Speaker", "id": 6978, "credit_id": "52fe424cc3a36847f80136bf", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Romola Garai", "character": "Vivian", "id": 6979, "credit_id": "52fe424cc3a36847f80136c3", "cast_id": 17, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 14}, {"name": "Carolyn Backhouse", "character": "Vivian's Mother", "id": 6981, "credit_id": "52fe424cc3a36847f80136c7", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Sam Friend", "character": "Vivian's Brother", "id": 6982, "credit_id": "52fe424cc3a36847f80136cb", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Woody Allen", "character": "Sid Waterman", "id": 1243, "credit_id": "52fe424cc3a36847f80136cf", "cast_id": 20, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 17}, {"name": "Suzy Kewer", "character": "Splendini\u2019s Assistant", "id": 6984, "credit_id": "52fe424cc3a36847f80136d3", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Jody Halse", "character": "Stagehand", "id": 6985, "credit_id": "52fe424cc3a36847f80136d7", "cast_id": 22, "profile_path": "/1fCztSR6LD1J4eyMUvlxv3dZIaR.jpg", "order": 19}, {"name": "Matt Day", "character": "Jerry Burke", "id": 3068, "credit_id": "52fe424cc3a36847f80136db", "cast_id": 23, "profile_path": "/ngzxTaydI2tTo1j9KwQ9yG2lMo.jpg", "order": 20}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013687", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.5, "runtime": 96}, "41479": {"poster_path": "/3jMKeU2TQM3wAUHEenKK3EPrzUP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they're living there, they don't exactly come clean with their neighbors.", "video": false, "id": 41479, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Joneses", "tagline": "They're not just living the American dream, they're selling it.", "vote_count": 55, "homepage": "http://www.thejonesesmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1285309", "adult": false, "backdrop_path": "/zD3mhrFf8ZYOadEHPsJrYLA2HYC.jpg", "production_companies": [{"name": "Echo Lake Productions", "id": 2147}, {"name": "Premiere Picture", "id": 3870}], "release_date": "2009-09-13", "popularity": 0.567261709352673, "original_title": "The Joneses", "budget": 0, "cast": [{"name": "David Duchovny", "character": "Steve Jones", "id": 12640, "credit_id": "52fe45cdc3a36847f80db251", "cast_id": 4, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Demi Moore", "character": "Kate Jones", "id": 3416, "credit_id": "52fe45cdc3a36847f80db26d", "cast_id": 11, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Amber Heard", "character": "Jenn Jones", "id": 55085, "credit_id": "52fe45cdc3a36847f80db255", "cast_id": 5, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 2}, {"name": "Ben Hollingsworth", "character": "Mick Jones", "id": 77865, "credit_id": "52fe45cdc3a36847f80db265", "cast_id": 9, "profile_path": "/znLV2CQ5zfMszGpuqKglMiHDXJN.jpg", "order": 3}, {"name": "Lauren Hutton", "character": "KC", "id": 27964, "credit_id": "52fe45cdc3a36847f80db25d", "cast_id": 7, "profile_path": "/i7M82qKLAsLYinb6rXGdBFtCgJL.jpg", "order": 4}, {"name": "Catherine Dyer", "character": "Sylivia", "id": 112562, "credit_id": "52fe45cdc3a36847f80db259", "cast_id": 6, "profile_path": "/bjSNlEfh87rh1LIkLjhSKYRihDi.jpg", "order": 5}, {"name": "Sonya Thompson", "character": "Restaurant Patron", "id": 126913, "credit_id": "52fe45cdc3a36847f80db261", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Gary Cole", "character": "Larry Symonds", "id": 21163, "credit_id": "52fe45cdc3a36847f80db269", "cast_id": 10, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 7}, {"name": "Glenne Headly", "character": "Larry Symonds", "id": 21104, "credit_id": "52fe45cdc3a36847f80db271", "cast_id": 12, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 8}], "directors": [{"name": "Derrick Borte", "department": "Directing", "job": "Director", "credit_id": "52fe45cdc3a36847f80db247", "profile_path": "/7zKI1RQGZ8BJ3dAXRTwbdMI7n2z.jpg", "id": 126910}], "vote_average": 6.1, "runtime": 96}, "521": {"poster_path": "/1iupgVilcCQI7zPa4F7EHpmBfe1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An ex-tennis pro carries out a plot to have his wife murdered after discovering she is having an affair, and assumes she will soon leave him for the other man anyway. When things go wrong, he improvises a new plan - to frame her for murder instead.", "video": false, "id": 521, "genres": [{"id": 80, "name": "Crime"}], "title": "Dial M for Murder", "tagline": "If a woman answers...hang on for dear life!", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0046912", "adult": false, "backdrop_path": "/kmSrCmhF3mB15woqQ7z3Y4UGRwr.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1954-05-29", "popularity": 0.819666930341691, "original_title": "Dial M for Murder", "budget": 1400000, "cast": [{"name": "Ray Milland", "character": "Tony Wendice", "id": 7124, "credit_id": "52fe424cc3a36847f80137ad", "cast_id": 6, "profile_path": "/hql4xy8eWInQau8G4K6vyFgX5h5.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Margot Mary Wendice", "id": 4070, "credit_id": "52fe424cc3a36847f80137a9", "cast_id": 5, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Robert Cummings", "character": "Mark Halliday", "id": 7125, "credit_id": "52fe424cc3a36847f80137b1", "cast_id": 7, "profile_path": "/hmqYjsbHm38emGa78H1FjfxXqvw.jpg", "order": 2}, {"name": "John Williams", "character": "Chief Insp. Hubbard", "id": 5182, "credit_id": "52fe424cc3a36847f80137b5", "cast_id": 8, "profile_path": "/esXPldHaXSEz8dQmahcGz4VWJ8R.jpg", "order": 3}, {"name": "Anthony Dawson", "character": "Charles Alexander Swann aka Captain Lesgate", "id": 7682, "credit_id": "52fe424cc3a36847f80137e3", "cast_id": 16, "profile_path": "/yzh26eyKJBtORjLlz8nyLQT7C1d.jpg", "order": 4}, {"name": "Leo Britt", "character": "The Storyteller", "id": 933881, "credit_id": "52fe424cc3a36847f80137e7", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Patrick Allen", "character": "Detective Pearson", "id": 73980, "credit_id": "52fe424cc3a36847f80137eb", "cast_id": 18, "profile_path": "/2E2MnNr0Di5bC4TrhGZpNSyIOle.jpg", "order": 6}, {"name": "George Leigh", "character": "Detective Williams", "id": 933880, "credit_id": "52fe424cc3a36847f80137ef", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Bess Flowers", "character": "Woman exiting airplane", "id": 121323, "credit_id": "52fe424cc3a36847f80137f3", "cast_id": 20, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 8}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013799", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.5, "runtime": 104}, "522": {"poster_path": "/9qBe2sUDyY2dFH1iHq0SZb1G4QG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5887457, "overview": "The mostly true story of the legendary \"worst director of all time\", who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.", "video": false, "id": 522, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ed Wood", "tagline": "When it came to making bad movies, Ed Wood was the best.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109707", "adult": false, "backdrop_path": "/6zSU6K7q4zntC8vgrvpoUM66eQl.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1994-09-27", "popularity": 0.745011466502263, "original_title": "Ed Wood", "budget": 18000000, "cast": [{"name": "Johnny Depp", "character": "Ed Wood", "id": 85, "credit_id": "52fe424cc3a36847f801385f", "cast_id": 5, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Martin Landau", "character": "Bela Lugosi", "id": 2641, "credit_id": "52fe424cc3a36847f8013863", "cast_id": 6, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 1}, {"name": "Sarah Jessica Parker", "character": "Dolores Fuller", "id": 520, "credit_id": "52fe424cc3a36847f8013867", "cast_id": 7, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 2}, {"name": "Patricia Arquette", "character": "Kathy O'Hara", "id": 4687, "credit_id": "52fe424cc3a36847f801386b", "cast_id": 8, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 3}, {"name": "Jeffrey Jones", "character": "Criswell", "id": 4004, "credit_id": "52fe424cc3a36847f801386f", "cast_id": 9, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 4}, {"name": "G. D. Spradlin", "character": "Reverend Lemon", "id": 3173, "credit_id": "52fe424cc3a36847f8013873", "cast_id": 10, "profile_path": "/lyk0Fo343PJJ5gItBqGGl7oG112.jpg", "order": 5}, {"name": "Vincent D'Onofrio", "character": "Orson Welles", "id": 7132, "credit_id": "52fe424cc3a36847f8013877", "cast_id": 11, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 6}, {"name": "Bill Murray", "character": "Bunny Breckinridge", "id": 1532, "credit_id": "52fe424cc3a36847f801387b", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 7}, {"name": "Mike Starr", "character": "Georgie Weiss", "id": 5170, "credit_id": "52fe424cc3a36847f801387f", "cast_id": 13, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 8}, {"name": "Max Casella", "character": "Paul Marco", "id": 7133, "credit_id": "52fe424cc3a36847f8013883", "cast_id": 14, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 9}, {"name": "Brent Hinkley", "character": "Conrad Brooks", "id": 7134, "credit_id": "52fe424cc3a36847f8013887", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "William James Myers", "character": "Tor Johnson", "id": 7136, "credit_id": "52fe424cc3a36847f801388b", "cast_id": 16, "profile_path": "/1mzDi9g9m3cxMpUxRasnGWNdYGH.jpg", "order": 11}, {"name": "Juliet Landau", "character": "Loretta King", "id": 7137, "credit_id": "52fe424cc3a36847f801388f", "cast_id": 17, "profile_path": "/78ohsJtUTo0ZLdSRfiTgYQQQSWI.jpg", "order": 12}, {"name": "Clive Rosengren", "character": "Ed Reynolds", "id": 7138, "credit_id": "52fe424cc3a36847f8013893", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Norman Alden", "character": "Cameraman Bill", "id": 7139, "credit_id": "52fe424cc3a36847f8013897", "cast_id": 19, "profile_path": "/8UZtACb7u0JEOKh9IzFTi5FC4NH.jpg", "order": 14}, {"name": "Leonard Termo", "character": "Makeup Man Harry", "id": 7140, "credit_id": "52fe424cc3a36847f801389b", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Ned Bellamy", "character": "Dr. Tom Mason", "id": 2141, "credit_id": "52fe424cc3a36847f801389f", "cast_id": 21, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 16}, {"name": "Danny Dayton", "character": "Soundman", "id": 7141, "credit_id": "52fe424cc3a36847f80138a3", "cast_id": 22, "profile_path": "/aZTVkilP01BwP6olgirQNOSegSA.jpg", "order": 17}, {"name": "John Ross", "character": "Camera Assistant", "id": 7142, "credit_id": "52fe424cc3a36847f80138a7", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Bill Cusack", "character": "Tony McCoy", "id": 7143, "credit_id": "52fe424cc3a36847f80138ab", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Lisa Marie", "character": "Vampira", "id": 4452, "credit_id": "52fe424dc3a36847f80138f7", "cast_id": 37, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 20}, {"name": "Stanley DeSantis", "character": "Mr. Feldman", "id": 4171, "credit_id": "52fe424dc3a36847f80138fb", "cast_id": 38, "profile_path": null, "order": 21}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe424cc3a36847f8013849", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 7.2, "runtime": 127}, "57431": {"poster_path": "/5hmjGpEIXFump7sYXPUgSNK2RgP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26304000, "overview": "Noah, is not your typical entertain-the-kids-no-matter-how-boring-it-is kind of sitter. He's reluctant to take a sitting gig; he'd rather, well, be doing anything else, especially if it involves slacking. When Noah is watching the neighbor's kid he gets a booty call from his girlfriend in the city. To hook up with her, Noah takes to the streets, but his urban adventure spins out of control as he finds himself on the run from a maniacal drug lord.", "video": false, "id": 57431, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Sitter", "tagline": "Worst. Babysitter. Ever.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1366344", "adult": false, "backdrop_path": "/hGp2VR0Owc8WgiXtljsSzgJtIIg.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2011-12-09", "popularity": 0.843668496016726, "original_title": "The Sitter", "budget": 25000000, "cast": [{"name": "Sam Rockwell", "character": "Karl", "id": 6807, "credit_id": "52fe4933c3a36847f818e679", "cast_id": 1, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Noah Jaybird", "id": 21007, "credit_id": "52fe4933c3a36847f818e67d", "cast_id": 2, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Max Records", "character": "Slater", "id": 80576, "credit_id": "52fe4933c3a36847f818e687", "cast_id": 5, "profile_path": "/ggqpknWzy80JUgQRNPUspihCy6V.jpg", "order": 2}, {"name": "Ari Graynor", "character": "Marisa Lewis", "id": 71552, "credit_id": "52fe4933c3a36847f818e68b", "cast_id": 6, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 3}, {"name": "J. B. Smoove", "character": "Julio", "id": 65920, "credit_id": "52fe4933c3a36847f818e68f", "cast_id": 7, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 4}, {"name": "Landry Bender", "character": "Blithe", "id": 999325, "credit_id": "52fe4933c3a36847f818e693", "cast_id": 8, "profile_path": "/17PVmNR3PXQtzikD0tCQLaaayND.jpg", "order": 5}, {"name": "Kevin Hernandez", "character": "Rodrigo", "id": 999329, "credit_id": "52fe4933c3a36847f818e697", "cast_id": 9, "profile_path": "/lz0H1XbddF4jOwuoIi2IuV1bs3A.jpg", "order": 6}, {"name": "Kylie Bunbury", "character": "Roxanne", "id": 999346, "credit_id": "52fe4933c3a36847f818e69b", "cast_id": 10, "profile_path": "/yBsolJ7nC9ExQ17HwYSLBsotTvb.jpg", "order": 7}, {"name": "Erin Daniels", "character": "Mrs. Pedulla", "id": 18662, "credit_id": "52fe4933c3a36847f818e69f", "cast_id": 11, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 8}, {"name": "D.W. Moffett", "character": "Dr. Pedulla", "id": 87956, "credit_id": "52fe4933c3a36847f818e6a3", "cast_id": 12, "profile_path": "/fqktS2j0ZzieeU192scEcmGY5lq.jpg", "order": 9}, {"name": "Jessica Hecht", "character": "Sandy Griffith", "id": 14984, "credit_id": "52fe4933c3a36847f818e6a7", "cast_id": 13, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 10}, {"name": "Bruce Altman", "character": "Jim Griffith", "id": 27545, "credit_id": "52fe4933c3a36847f818e6ab", "cast_id": 14, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 11}, {"name": "Method Man", "character": "Jacolby", "id": 5384, "credit_id": "52fe4933c3a36847f818e6af", "cast_id": 15, "profile_path": "/qzZv7AWVVKex2IOe65a1WaQuW0g.jpg", "order": 12}, {"name": "Sean Patrick Doyle", "character": "Garv", "id": 999389, "credit_id": "52fe4933c3a36847f818e6b3", "cast_id": 16, "profile_path": "/fBv1jU9oIqtIaUXlknGB0WfXsib.jpg", "order": 13}, {"name": "Alex Wolff", "character": "Clayton", "id": 934281, "credit_id": "52fe4933c3a36847f818e6b7", "cast_id": 17, "profile_path": "/nUEAsuXKmRrubRMj5bNElBK5FM7.jpg", "order": 14}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe4933c3a36847f818e683", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 5.6, "runtime": 81}, "524": {"poster_path": "/xo517ibXBDdYQY81j0WIG7BVcWq.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 116112375, "overview": "Master director Martin Scorsese depicts the sloping depth of a casino mafia boss\u2019 fall. Filmed in a semi-documentary fashion; about the life of the gambling paradise Las Vegas and its dark mafia underbelly.", "video": false, "id": 524, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Casino", "tagline": "No one stays at the top forever.", "vote_count": 330, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112641", "adult": false, "backdrop_path": "/vxhWZkSb7OUHRq0Xndt9jzVttdR.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Syalis DA", "id": 11583}, {"name": "L\u00e9gende Entreprises", "id": 10898}, {"name": "De Fina-Cappa", "id": 11584}], "release_date": "1995-11-22", "popularity": 1.56622696296096, "original_title": "Casino", "budget": 52000000, "cast": [{"name": "Robert De Niro", "character": "Sam 'Ace' Rothstein", "id": 380, "credit_id": "52fe424dc3a36847f80139d1", "cast_id": 4, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Ginger McKenna", "id": 4430, "credit_id": "52fe424dc3a36847f80139d5", "cast_id": 5, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Nicky Santoro", "id": 4517, "credit_id": "52fe424dc3a36847f80139d9", "cast_id": 6, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "James Woods", "character": "Lester Diamond", "id": 4512, "credit_id": "52fe424dc3a36847f80139dd", "cast_id": 7, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "Don Rickles", "character": "Billy Sherbert", "id": 7167, "credit_id": "52fe424dc3a36847f80139ed", "cast_id": 11, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 4}, {"name": "Alan King", "character": "Andy Stone", "id": 7169, "credit_id": "52fe424dc3a36847f80139f5", "cast_id": 13, "profile_path": "/8yvDXsJr2jOkLDZTEcbQxwi5hcA.jpg", "order": 5}, {"name": "Kevin Pollak", "character": "Phillip Green", "id": 7166, "credit_id": "52fe424dc3a36847f80139e9", "cast_id": 10, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 6}, {"name": "Pasquale Cajano", "character": "Remo Gaggi", "id": 7165, "credit_id": "52fe424dc3a36847f80139e5", "cast_id": 9, "profile_path": "/bfRFoTvD2aVthXu912e8rkEzS6z.jpg", "order": 7}, {"name": "L.Q. Jones", "character": "Pat Webb", "id": 8262, "credit_id": "53a2d500c3a368320a0013be", "cast_id": 27, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 8}, {"name": "Dick Smothers", "character": "S\u00e9nateur", "id": 166789, "credit_id": "53a2d529c3a36832020012f8", "cast_id": 28, "profile_path": "/lwQKlZHqUjJw4JcoxSPeGAUraRV.jpg", "order": 9}, {"name": "Frank Vincent", "character": "Frank Marino", "id": 7164, "credit_id": "52fe424dc3a36847f80139e1", "cast_id": 8, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 10}, {"name": "Oscar Goodman", "character": "Oscar Goodman", "id": 7424, "credit_id": "52fe424dc3a36847f8013a1b", "cast_id": 20, "profile_path": "/9YTT2HozwL6g01HuBezUBUdO3IA.jpg", "order": 11}, {"name": "Richard Riehle", "character": "Charlie Clark", "id": 18262, "credit_id": "53a2d5aec3a368443e000bca", "cast_id": 29, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 12}, {"name": "John Bloom", "character": "Don Ward", "id": 6491, "credit_id": "53a2d5f2c3a368320a0013ce", "cast_id": 30, "profile_path": "/spEEPB8yWINH9zCDjC1nodPTGmM.jpg", "order": 13}, {"name": "Catherine Scorsese", "character": "Mme Piscano", "id": 11483, "credit_id": "53a2d80cc3a368443e000c04", "cast_id": 31, "profile_path": "/rXFjIQVimKotQUtXwVNGg7XVMeW.jpg", "order": 14}, {"name": "Vinny Vella", "character": "Artie Piscano", "id": 7168, "credit_id": "52fe424dc3a36847f80139f1", "cast_id": 12, "profile_path": "/bS0yz7PyNJ9f8Kwc4qVWm4NxDfz.jpg", "order": 15}, {"name": "Nobu Matsuhisa", "character": "Ichikawa", "id": 7425, "credit_id": "52fe424dc3a36847f8013a1f", "cast_id": 21, "profile_path": "/xSR9RmzUTU9K6qZ6Hu5HCS2IJSL.jpg", "order": 16}, {"name": "Erika von Tagen", "character": "Amy", "id": 7423, "credit_id": "52fe424dc3a36847f8013a17", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Nick Mazzola", "character": "Black Jack-Groupier", "id": 7444, "credit_id": "52fe424dc3a36847f8013a23", "cast_id": 22, "profile_path": null, "order": 18}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe424dc3a36847f80139cd", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.4, "runtime": 178}, "525": {"poster_path": "/wdcoPIqOHk3dJ1s3fQOGgrMDNYu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115229890, "overview": "Direct out of jail, Jake Blues and his Brother Elwood are off on a \u201cmission from God\u201d to raise funds for the orphanage in which they grew up. The only thing they can do is do what they do best: play music. So they get their old band together and they're on their way yet not without getting in a bit of trouble here and there.", "video": false, "id": 525, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10402, "name": "Music"}], "title": "The Blues Brothers", "tagline": "They'll never get caught. They're on a mission from God.", "vote_count": 316, "homepage": "http://www.bluesbrothers.com/", "belongs_to_collection": {"backdrop_path": "/i4Jai1IlkbOWd8eNFM0S1lupyLt.jpg", "poster_path": "/pQf9LzCokihzlLmgQlPG7yBpZ1o.jpg", "id": 112636, "name": "The Blues Brothers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080455", "adult": false, "backdrop_path": "/qugcFtH0nsG6vfLFOzxNhPpuezV.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1980-06-17", "popularity": 1.09068896247079, "original_title": "The Blues Brothers", "budget": 27000000, "cast": [{"name": "Dan Aykroyd", "character": "Elwood Blues (as Elwood)", "id": 707, "credit_id": "52fe424dc3a36847f8013ae3", "cast_id": 4, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 0}, {"name": "John Belushi", "character": "'Joliet' Jake Blues (as Jake)", "id": 7171, "credit_id": "52fe424dc3a36847f8013ae7", "cast_id": 5, "profile_path": "/xVD48zqKxJWBOMYouWlnNExhM3g.jpg", "order": 1}, {"name": "Cab Calloway", "character": "Curtis", "id": 7173, "credit_id": "52fe424dc3a36847f8013aef", "cast_id": 7, "profile_path": "/7L1vq9I4Jt31BYsTsahhGn8wcc5.jpg", "order": 2}, {"name": "Carrie Fisher", "character": "Mystery Woman", "id": 4, "credit_id": "52fe424dc3a36847f8013b0f", "cast_id": 15, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 3}, {"name": "Ray Charles", "character": "Ray", "id": 7174, "credit_id": "52fe424dc3a36847f8013af3", "cast_id": 8, "profile_path": "/5LqWrAGyYb9K0RTP7tVF2S0WoZX.jpg", "order": 4}, {"name": "James Brown", "character": "Reverend Cleophus James", "id": 7172, "credit_id": "52fe424dc3a36847f8013aeb", "cast_id": 6, "profile_path": "/opGiGzOwSRmhnUtWZcFjlyyK8Zx.jpg", "order": 5}, {"name": "Aretha Franklin", "character": "Mrs. Murphy", "id": 7175, "credit_id": "52fe424dc3a36847f8013af7", "cast_id": 9, "profile_path": "/85vRw9urUHSYzn9eGssB1KmqayZ.jpg", "order": 6}, {"name": "Steve Cropper", "character": "Steve 'The Colonel' Cropper", "id": 7176, "credit_id": "52fe424dc3a36847f8013afb", "cast_id": 10, "profile_path": "/sDp2m5fIAUamVu5BpGk30WWWRoS.jpg", "order": 7}, {"name": "Donald \"Duck\" Dunn", "character": "Donald 'Duck' Dunn", "id": 7177, "credit_id": "52fe424dc3a36847f8013aff", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Murphy Dunne", "character": "Murphy 'Murph' Dunne", "id": 7178, "credit_id": "52fe424dc3a36847f8013b03", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Willie Hall", "character": "Willie 'Too Big' Hall", "id": 7179, "credit_id": "52fe424dc3a36847f8013b07", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "John Candy", "character": "Burton Mercer", "id": 7180, "credit_id": "52fe424dc3a36847f8013b0b", "cast_id": 14, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 11}, {"name": "John Lee Hooker", "character": "John Lee Hooker", "id": 7207, "credit_id": "52fe424dc3a36847f8013b37", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Lou Marini", "character": "'Blue Lou' Marini", "id": 7208, "credit_id": "52fe424dc3a36847f8013b3b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Matt Murphy", "character": "Matt 'Guitar' Murphy", "id": 7209, "credit_id": "52fe424dc3a36847f8013b3f", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Kathleen Freeman", "character": "Schwester Mary Stigmata ('Die Pinguin-Tante')", "id": 7210, "credit_id": "52fe424dc3a36847f8013b43", "cast_id": 25, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 15}, {"name": "Tom Erhart", "character": "Prison Guard", "id": 122094, "credit_id": "52fe424dc3a36847f8013b4d", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Gerald Walling", "character": "Prison Guard", "id": 122095, "credit_id": "52fe424dc3a36847f8013b51", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Walter Levine", "character": "Prison Guard", "id": 122096, "credit_id": "52fe424dc3a36847f8013b55", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Alonzo Atkins", "character": "Choirmaster", "id": 122098, "credit_id": "52fe424dc3a36847f8013b59", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Chaka Khan", "character": "Choir Soloist", "id": 122099, "credit_id": "52fe424dc3a36847f8013b5d", "cast_id": 31, "profile_path": "/4gLs6Lonpt89dqnNtSIQdnP6TF7.jpg", "order": 20}, {"name": "Armand Cerami", "character": "Trooper Daniel", "id": 122101, "credit_id": "52fe424dc3a36847f8013b61", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Steven Williams", "character": "Trooper Mount", "id": 51579, "credit_id": "537c7fd20e0a262a8800122f", "cast_id": 83, "profile_path": "/jJCa0bKe9zBe31bbuDsiNtgoo5W.jpg", "order": 22}, {"name": "Kristi Oleson", "character": "Sales Girl", "id": 122105, "credit_id": "52fe424dc3a36847f8013b69", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Gary McLarty", "character": "Man in Toy Store", "id": 122106, "credit_id": "52fe424dc3a36847f8013b6d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Joe Cuttone", "character": "Lloyd", "id": 122107, "credit_id": "52fe424dc3a36847f8013b71", "cast_id": 40, "profile_path": null, "order": 26}, {"name": "Layne Britton", "character": "The Cheese Whiz", "id": 122108, "credit_id": "52fe424dc3a36847f8013b75", "cast_id": 41, "profile_path": null, "order": 27}, {"name": "Toni Fleming", "character": "Mrs. Tarantino", "id": 122110, "credit_id": "52fe424dc3a36847f8013b79", "cast_id": 42, "profile_path": null, "order": 28}, {"name": "Rosie Shuster", "character": "Cocktail Waitress", "id": 122114, "credit_id": "52fe424dc3a36847f8013b7d", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Alan Rubin", "character": "Mr. Fabulous", "id": 122115, "credit_id": "52fe424dc3a36847f8013b81", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Paul Reubens", "character": "Waiter", "id": 5129, "credit_id": "52fe424dc3a36847f8013b85", "cast_id": 47, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 31}, {"name": "Ben Piazza", "character": "Father", "id": 90163, "credit_id": "52fe424dc3a36847f8013b89", "cast_id": 48, "profile_path": "/8pvVOp2fuIkOb4Go6P1I2rHLb68.jpg", "order": 32}, {"name": "Gwen Banta", "character": "Mother", "id": 122116, "credit_id": "52fe424dc3a36847f8013b8d", "cast_id": 49, "profile_path": null, "order": 33}, {"name": "Lari Taylor", "character": "Daughter #1", "id": 122117, "credit_id": "52fe424dc3a36847f8013b91", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Cindy Fisher", "character": "Daughter #2", "id": 122118, "credit_id": "52fe424dc3a36847f8013b95", "cast_id": 51, "profile_path": "/eorSm5IPzlmph90cw5e70F9LGoF.jpg", "order": 35}, {"name": "Elizabeth Hoy", "character": "Daughter #3", "id": 122119, "credit_id": "52fe424dc3a36847f8013b99", "cast_id": 52, "profile_path": null, "order": 36}, {"name": "Tony M. Conde", "character": "Sommelier", "id": 122120, "credit_id": "52fe424dc3a36847f8013b9d", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Eugene J. Anthony", "character": "Gruppenf\u00fchrer", "id": 74840, "credit_id": "52fe424dc3a36847f8013ba1", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Dean Hill", "character": "Nazi", "id": 122122, "credit_id": "52fe424dc3a36847f8013ba5", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Jack Orend", "character": "Nazi", "id": 122124, "credit_id": "52fe424dc3a36847f8013ba9", "cast_id": 58, "profile_path": null, "order": 40}, {"name": "Gene Schuldt", "character": "Nazi", "id": 122125, "credit_id": "52fe424dc3a36847f8013bad", "cast_id": 59, "profile_path": null, "order": 41}, {"name": "Charles Mountain", "character": "Cop", "id": 122126, "credit_id": "52fe424dc3a36847f8013bb1", "cast_id": 60, "profile_path": null, "order": 42}, {"name": "Frank Oz", "character": "Corrections Officer", "id": 7908, "credit_id": "52fe424dc3a36847f8013bb5", "cast_id": 61, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 43}, {"name": "John Landis", "character": "Trooper La Fong", "id": 4610, "credit_id": "52fe424dc3a36847f8013bef", "cast_id": 72, "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "order": 44}, {"name": "Henry Gibson", "character": "Head Nazi", "id": 19439, "credit_id": "52fe424dc3a36847f8013bf3", "cast_id": 73, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 45}, {"name": "Gary Houston", "character": "Nazi", "id": 3909, "credit_id": "52fe424dc3a36847f8013bf7", "cast_id": 75, "profile_path": "/sHnbRD3qic7ndwrYB3qRRPSiEFE.jpg", "order": 46}, {"name": "Judith Belushi-Pisano", "character": "Cocktail Waitress", "id": 55247, "credit_id": "52fe424dc3a36847f8013bfb", "cast_id": 76, "profile_path": null, "order": 47}, {"name": "Elmore James", "character": "Choir", "id": 56271, "credit_id": "52fe424dc3a36847f8013bff", "cast_id": 77, "profile_path": null, "order": 48}, {"name": "Tom Malone", "character": "\"Bones\" Malone", "id": 76150, "credit_id": "52fe424dc3a36847f8013c03", "cast_id": 78, "profile_path": null, "order": 49}, {"name": "Stephen Bishop", "character": "Charming Trooper", "id": 938558, "credit_id": "52fe424dc3a36847f8013c0d", "cast_id": 80, "profile_path": "/uhUDLWO1QDTyYmnByPyzqYKiLXh.jpg", "order": 50}, {"name": "Charles Napier", "character": "Tucker McElroy", "id": 16119, "credit_id": "52fe424dc3a36847f8013c11", "cast_id": 81, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 51}, {"name": "Steven Spielberg", "character": "Cook County Assessor's Office Clerk", "id": 488, "credit_id": "52fe424dc3a36847f8013c15", "cast_id": 82, "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "order": 52}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe424dc3a36847f8013ad3", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 7.1, "runtime": 133}, "526": {"poster_path": "/51RFCKLFuEbvLQsFzXcupQnkoRD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Captain Etienne Navarre is a man on whose shoulders lies a cruel curse. Punished for loving each other, Navarre must become a wolf by night whilst his lover, Lady Isabeau, takes the form of a hawk by day. Together, with the thief Philippe Gaston, they must try to overthrow the corrupt Bishop and in doing so break the spell.", "video": false, "id": 526, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Ladyhawke", "tagline": "No force in Heaven will release them. No power on Earth can save them.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089457", "adult": false, "backdrop_path": "/ghkGmfUDN389Q3apyhakXm4dbih.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1985-04-11", "popularity": 0.406046904728883, "original_title": "Ladyhawke", "budget": 20000000, "cast": [{"name": "Matthew Broderick", "character": "Phillipe Gaston", "id": 4756, "credit_id": "52fe424dc3a36847f8013c6f", "cast_id": 6, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Rutger Hauer", "character": "Captain Etienne Navarre", "id": 585, "credit_id": "52fe424dc3a36847f8013c73", "cast_id": 7, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Isabeau d'Anjou", "id": 1160, "credit_id": "52fe424dc3a36847f8013c77", "cast_id": 8, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Cezar", "id": 658, "credit_id": "52fe424dc3a36847f8013c83", "cast_id": 11, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Leo McKern", "character": "Father Imperius", "id": 7192, "credit_id": "52fe424dc3a36847f8013c7b", "cast_id": 9, "profile_path": "/qcO1TFO6SowLOQAwKRMKrqmrk6A.jpg", "order": 4}, {"name": "Ken Hutchison", "character": "Marquet", "id": 7194, "credit_id": "52fe424dc3a36847f8013c7f", "cast_id": 10, "profile_path": "/9qVmE5BXPWNhFDc77VgZfJQ5tD9.jpg", "order": 5}, {"name": "Giancarlo Prete", "character": "Fornac", "id": 7195, "credit_id": "52fe424dc3a36847f8013c87", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Loris Loddi", "character": "Jehan", "id": 7196, "credit_id": "52fe424dc3a36847f8013c8b", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Alessandro Serra", "character": "Mr. Pitou", "id": 7197, "credit_id": "52fe424dc3a36847f8013c8f", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Charles Borromel", "character": "Insane Prisoner", "id": 7198, "credit_id": "52fe424dc3a36847f8013c93", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "John Wood", "character": "Bishop of Aquila", "id": 8937, "credit_id": "52fe424dc3a36847f8013cd9", "cast_id": 27, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 10}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe424dc3a36847f8013c53", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.7, "runtime": 121}, "5549": {"poster_path": "/jHE1jOJQILXSPudL4h94NI3TRL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45681173, "overview": "A corrupt businesswoman seeks to disable RoboCop in favor of her own model of cyborg.", "video": false, "id": 5549, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "RoboCop 2", "tagline": "He's back to protect the innocent.", "vote_count": 107, "homepage": "", "belongs_to_collection": {"backdrop_path": "/azQScQWHpz5puIV4YeCcqgiT9Tn.jpg", "poster_path": "/foJBQb9oEOH0mGh77tXyoxXCfzU.jpg", "id": 5547, "name": "RoboCop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100502", "adult": false, "backdrop_path": "/pkuf3xajNzDPzAXtvGNNhs59XBL.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1990-06-22", "popularity": 0.431788865463003, "original_title": "RoboCop 2", "budget": 35000000, "cast": [{"name": "Peter Weller", "character": "RoboCop", "id": 27811, "credit_id": "52fe440dc3a36847f807f917", "cast_id": 16, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Belinda Bauer", "character": "Dr. Juliette Faxx", "id": 44049, "credit_id": "52fe440dc3a36847f807f91b", "cast_id": 17, "profile_path": "/2YAaeWOjbHig2COD9omZXbirr0e.jpg", "order": 1}, {"name": "John Glover", "character": "Magnavolt Salesman", "id": 5589, "credit_id": "52fe440dc3a36847f807f91f", "cast_id": 18, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 2}, {"name": "Gabriel Damon", "character": "Hob", "id": 44055, "credit_id": "52fe440dc3a36847f807f933", "cast_id": 23, "profile_path": null, "order": 3}, {"name": "Mario Machado", "character": "Casey Wong", "id": 44050, "credit_id": "52fe440dc3a36847f807f923", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Leeza Gibbons", "character": "Jesse Perkins", "id": 44051, "credit_id": "52fe440dc3a36847f807f927", "cast_id": 20, "profile_path": "/nZOYAQ2hbLk0gnwtfuvvwokp38o.jpg", "order": 5}, {"name": "John Ingle", "character": "Surgeon General", "id": 44052, "credit_id": "52fe440dc3a36847f807f92b", "cast_id": 21, "profile_path": "/d7RnwWIuBjMpDRSpz3mTaCHMmOc.jpg", "order": 6}, {"name": "Roger Aaron Brown", "character": "Whittaker", "id": 44054, "credit_id": "52fe440dc3a36847f807f92f", "cast_id": 22, "profile_path": "/mQ2mEx7EteO2zdOFUzu1shDi7E.jpg", "order": 7}, {"name": "Mark Rolston", "character": "Stef", "id": 6576, "credit_id": "52fe440dc3a36847f807f937", "cast_id": 24, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 8}, {"name": "Nancy Allen", "character": "Officer Anne Lewis", "id": 44038, "credit_id": "52fe440dc3a36847f807f945", "cast_id": 28, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 9}, {"name": "Tom Noonan", "character": "Cain", "id": 119232, "credit_id": "52fe440dc3a36847f807f93b", "cast_id": 25, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 10}, {"name": "Lila Finn", "character": "Homeless Woman (pushing trolley)", "id": 999656, "credit_id": "52fe440dc3a36847f807f949", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "John Hateley", "character": "Purse Snatcher", "id": 999657, "credit_id": "52fe440dc3a36847f807f94d", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Gage Tarrant", "character": "Hooker", "id": 999658, "credit_id": "52fe440dc3a36847f807f951", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Tommy Rosales", "character": "Chet", "id": 999659, "credit_id": "52fe440dc3a36847f807f955", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Brandon Smith", "character": "Flint", "id": 427978, "credit_id": "52fe440dc3a36847f807f959", "cast_id": 33, "profile_path": "/hJPSZh6xe4r9xGE30iLiPzroaKg.jpg", "order": 15}, {"name": "Wallace Merck", "character": "Gun Shop Owner", "id": 131561, "credit_id": "52fe440dc3a36847f807f95d", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Michael Medeiros", "character": "Catzo", "id": 160849, "credit_id": "52fe440dc3a36847f807f961", "cast_id": 35, "profile_path": "/uTUSlzkYGjGA9GKjGHL2qYP5uUF.jpg", "order": 17}, {"name": "Clinton Austin Shirley", "character": "Jimmy Murphy", "id": 999660, "credit_id": "52fe440dc3a36847f807f971", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Galyn G\u00f6rg", "character": "Angie", "id": 105988, "credit_id": "52fe440dc3a36847f807f965", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Linda Thompson", "character": "Mother with Baby", "id": 80808, "credit_id": "52fe440dc3a36847f807f969", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Lily Chen", "character": "Desperate Woman", "id": 240192, "credit_id": "52fe440dc3a36847f807f96d", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Angie Bolling", "character": "Ellen Murphy", "id": 194418, "credit_id": "52fe440dc3a36847f807f975", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Willard Pugh", "character": "Mayor Kuzak", "id": 999661, "credit_id": "52fe440dc3a36847f807f979", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Dan O'Herlihy", "character": "The Old Man", "id": 6836, "credit_id": "52fe440dc3a36847f807f97d", "cast_id": 42, "profile_path": "/amXueiRr8cy4sTjb7h4W5GrKe14.jpg", "order": 24}, {"name": "Adam Faraizl", "character": "Little League Kid", "id": 27768, "credit_id": "52fe440dc3a36847f807f981", "cast_id": 43, "profile_path": "/xZ6FvVFQUUHFRyJVR60PVDVePC1.jpg", "order": 25}, {"name": "Erik Cord", "character": "Angry Citizen", "id": 91833, "credit_id": "52fe440dc3a36847f807f995", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "Wanda De Jesus", "character": "Estevez", "id": 57991, "credit_id": "52fe440dc3a36847f807f985", "cast_id": 45, "profile_path": "/iaMj5a3Wogclzzjaa0vv2b8huVi.jpg", "order": 27}, {"name": "George Cheung", "character": "Gilette", "id": 16580, "credit_id": "52fe440dc3a36847f807f989", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Eric Glenn", "character": "Injured Cop", "id": 214103, "credit_id": "52fe440dc3a36847f807f98d", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Stephen Lee", "character": "Duffy", "id": 53138, "credit_id": "52fe440dc3a36847f807f991", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Jo Perkins", "character": "Angry Citizen", "id": 204841, "credit_id": "52fe440dc3a36847f807f999", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Richard Reyes", "character": "Angry Citizen", "id": 999663, "credit_id": "52fe440dc3a36847f807f9a1", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "John Doolittle", "character": "Schenk", "id": 172725, "credit_id": "52fe440dc3a36847f807f9a5", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Felton Perry", "character": "Donald Johnson", "id": 44042, "credit_id": "52fe440dc3a36847f807f9a9", "cast_id": 54, "profile_path": "/ax2YtmbicXvsjayLtK5VUxQh8fC.jpg", "order": 35}, {"name": "Phil Rubenstein", "character": "Poulos", "id": 162007, "credit_id": "52fe440dc3a36847f807f9ad", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Gary Bullock", "character": "Hack Doctor", "id": 56848, "credit_id": "52fe440dc3a36847f807f9b1", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Ed Geldhart", "character": "Electronics Store Owner", "id": 999664, "credit_id": "52fe440dc3a36847f807f9b5", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "David Dwyer", "character": "Little League Coach", "id": 21084, "credit_id": "52fe440dc3a36847f807f9b9", "cast_id": 58, "profile_path": "/A0EMGjQl4t3DqqfR6Onx0tiMHc5.jpg", "order": 39}, {"name": "Justin Seidner", "character": "Brat", "id": 999665, "credit_id": "52fe440dc3a36847f807f9bd", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Bill Bolender", "character": "Cabbie", "id": 105649, "credit_id": "52fe440dc3a36847f807f9c1", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Fabiana Udenio", "character": "Sunblock Woman", "id": 13923, "credit_id": "52fe440dc3a36847f807f9c9", "cast_id": 62, "profile_path": "/60hBZQm3FVtQ99qNmLDUT93z6S6.jpg", "order": 42}, {"name": "Wayne De Hart", "character": "Vendor", "id": 999666, "credit_id": "52fe440dc3a36847f807f9c5", "cast_id": 61, "profile_path": null, "order": 43}, {"name": "Cynthia Mackey", "character": "Surgeon", "id": 999667, "credit_id": "52fe440dc3a36847f807f9cd", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "James McQueen", "character": "Dr. Weitman", "id": 999668, "credit_id": "52fe440dc3a36847f807f9d1", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Yogi Baird", "character": "Contortionist", "id": 999669, "credit_id": "52fe440dc3a36847f807f9d5", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Jerry Nelson", "character": "Darren Thomas", "id": 68455, "credit_id": "52fe440dc3a36847f807f9d9", "cast_id": 66, "profile_path": "/pJGDnYken7kbxNl9sXGqxgEanP.jpg", "order": 47}, {"name": "Michael Weller", "character": "OCP Security #1", "id": 167690, "credit_id": "52fe440dc3a36847f807f9dd", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Woody Watson", "character": "OCP Security #2", "id": 78722, "credit_id": "52fe440dc3a36847f807f9e1", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Rutherford Cravens", "character": "Reporter #1", "id": 1234823, "credit_id": "52fe440ec3a36847f807fb59", "cast_id": 134, "profile_path": null, "order": 50}, {"name": "Christopher Quinten", "character": "Reporter #2", "id": 999670, "credit_id": "52fe440dc3a36847f807f9e5", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Martin Casella", "character": "Yuppie", "id": 10089, "credit_id": "52fe440dc3a36847f807f9e9", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Ken Learner", "character": "Delaney", "id": 999671, "credit_id": "52fe440dc3a36847f807f9ed", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Jeff McCarthy", "character": "Holzgang", "id": 171689, "credit_id": "52fe440dc3a36847f807f9f1", "cast_id": 73, "profile_path": "/461Jj2XDmINOmrGYyCy7AstO8hl.jpg", "order": 54}, {"name": "Robert Doqui", "character": "Sergeant Warren Reed", "id": 30615, "credit_id": "52fe440ec3a36847f807fb51", "cast_id": 132, "profile_path": "/gbV4NbJWrvbQzEghB9it4pVIG1c.jpg", "order": 55}, {"name": "Tzi Ma", "character": "Tak Akita", "id": 21629, "credit_id": "52fe440ec3a36847f807fb55", "cast_id": 133, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 56}, {"name": "Charles Bailey", "character": "Angry Citizen", "id": 1437274, "credit_id": "54fdafe0c3a368270c002104", "cast_id": 141, "profile_path": null, "order": 57}], "directors": [{"name": "Irvin Kershner", "department": "Directing", "job": "Director", "credit_id": "52fe440dc3a36847f807f8c5", "profile_path": "/ttTefShgVMqX85QawaGpfE1RT3M.jpg", "id": 10930}], "vote_average": 5.3, "runtime": 117}, "32856": {"poster_path": "/qrZ49dcenKqtRWSbOK8zWLQC6GG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213785654, "overview": "More than a dozen Angelenos navigate Valentine's Day from early morning until midnight. Three couples awake together, but each relationship will sputter; are any worth saving? A grade-school boy wants flowers for his first true love; two high school seniors plan first-time sex at noon; a TV sports reporter gets the assignment to find romance in LA; a star quarterback contemplates his future; two strangers meet on a plane; grandparents, together for years, face a crisis; and, an \"I Hate Valentine's Day\" dinner beckons the lonely and the lied to. Can Cupid finish his work by midnight?", "video": false, "id": 32856, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Valentine's Day", "tagline": "A Love Story. More or Less.", "vote_count": 273, "homepage": "http://www.valentinesdaymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0817230", "adult": false, "backdrop_path": "/9yQWwc7mwWID0ssy4eIm50fxXCd.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2010-02-11", "popularity": 1.1162549631434, "original_title": "Valentine's Day", "budget": 52000000, "cast": [{"name": "Jessica Alba", "character": "Morley Clarkson", "id": 56731, "credit_id": "52fe44eb9251416c910216d7", "cast_id": 1, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Kara Monahan", "id": 10860, "credit_id": "52fe44eb9251416c910216db", "cast_id": 2, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Bradley Cooper", "character": "Holden", "id": 51329, "credit_id": "52fe44eb9251416c910216df", "cast_id": 3, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 2}, {"name": "Eric Dane", "character": "Sean Jackson", "id": 58115, "credit_id": "52fe44ec9251416c910216e3", "cast_id": 4, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 3}, {"name": "Patrick Dempsey", "character": "Dr. Harrison Copeland", "id": 18352, "credit_id": "52fe44ec9251416c910216e7", "cast_id": 5, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 4}, {"name": "H\u00e9ctor Elizondo", "character": "Edgar", "id": 1210, "credit_id": "52fe44ec9251416c910216eb", "cast_id": 6, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 5}, {"name": "Jamie Foxx", "character": "Kelvin Moore", "id": 134, "credit_id": "52fe44ec9251416c910216ef", "cast_id": 7, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 6}, {"name": "Jennifer Garner", "character": "Julia Fitzpatrick", "id": 9278, "credit_id": "52fe44ec9251416c910216f3", "cast_id": 8, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 7}, {"name": "Topher Grace", "character": "Jason", "id": 17052, "credit_id": "52fe44ec9251416c910216f7", "cast_id": 9, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 8}, {"name": "Anne Hathaway", "character": "Liz", "id": 1813, "credit_id": "52fe44ec9251416c910216fb", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 9}, {"name": "Carter Jenkins", "character": "Alex", "id": 86653, "credit_id": "52fe44ec9251416c910216ff", "cast_id": 11, "profile_path": "/6Sph044iNZRupQecuuReiaQT52.jpg", "order": 10}, {"name": "Ashton Kutcher", "character": "Reed Bennett", "id": 18976, "credit_id": "52fe44ec9251416c91021703", "cast_id": 12, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 11}, {"name": "Queen Latifah", "character": "Paula Thomas", "id": 15758, "credit_id": "52fe44ec9251416c91021707", "cast_id": 13, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 12}, {"name": "George Lopez", "character": "Alphonso", "id": 41798, "credit_id": "52fe44ec9251416c9102170b", "cast_id": 14, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 13}, {"name": "Shirley MacLaine", "character": "Estelle", "id": 4090, "credit_id": "52fe44ec9251416c9102170f", "cast_id": 15, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 14}, {"name": "Emma Roberts", "character": "Grace", "id": 34847, "credit_id": "52fe44ec9251416c91021713", "cast_id": 16, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 15}, {"name": "Julia Roberts", "character": "Captain Kate Hazeltine", "id": 1204, "credit_id": "52fe44ec9251416c91021717", "cast_id": 17, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 16}, {"name": "Taylor Lautner", "character": "Willy", "id": 84214, "credit_id": "52fe44ec9251416c9102171b", "cast_id": 18, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 17}, {"name": "Kathy Bates", "character": "Susan", "id": 8534, "credit_id": "52fe44ec9251416c91021737", "cast_id": 23, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 18}, {"name": "Taylor Swift", "character": "Felicia", "id": 212208, "credit_id": "52fe44ec9251416c9102173b", "cast_id": 24, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 19}, {"name": "Derek Theler", "character": "Masseuse", "id": 1057442, "credit_id": "52fe44ec9251416c9102173f", "cast_id": 25, "profile_path": "/qMJWaezGr68GWOSciUXjVtU1sC4.jpg", "order": 20}, {"name": "Katherine LaNasa", "character": "Pamela Copeland", "id": 169337, "credit_id": "5318316cc3a3685c4a000fbe", "cast_id": 26, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 21}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe44ec9251416c91021721", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.4, "runtime": 125}, "530": {"poster_path": "/jgQU84QuFQ4yofDmGYzOsXLEQj9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Wallace and Gromit have run out of cheese and this provides an excellent excuse for the animated duo to take their holiday on the moon, where, as everyone knows, there is ample cheese. The moon is inhabited by a mechanical caretaker, who is not too happy about the two visitors from earth that nibble on the moon.", "video": false, "id": 530, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Wallace and Gromit: A Grand Day Out", "tagline": "Join the ultimate human-canine team as they blast off in a home-made rocket to see if the moon is really made of cheese.", "vote_count": 51, "homepage": "http://www.wallaceandgromit.com/films/granddayout/", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104361", "adult": false, "backdrop_path": "/noFR73oa5AYj054rTuX8y50Xwia.jpg", "production_companies": [{"name": "Aardman Animations", "id": 297}], "release_date": "1989-01-01", "popularity": 0.352329257607156, "original_title": "Wallace and Gromit: A Grand Day Out", "budget": 0, "cast": [{"name": "Peter Sallis", "character": "Wallace", "id": 7317, "credit_id": "52fe424ec3a36847f8013dcb", "cast_id": 3, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}], "directors": [{"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013dc1", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 7.2, "runtime": 23}, "531": {"poster_path": "/2w8JYyCxK7GOIi68cPhFqknCESA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Gromit finds himself being pushed out of his room and home by a new lodger who is actually a ruthless criminal (and a small penguin). The penguin is planning a robbery and needs to use Wallace and his mechanical remote controlled trousers to pull off the raid. However, Gromit is wise to the penguin and comes to the rescue.", "video": false, "id": 531, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wallace and Gromit: The Wrong Trousers", "tagline": "Mild-mannered Wallace and his faithful dog, Gromit, end up in a train-top chase as they try to stop a diamond heist by a diabolical penguin.", "vote_count": 63, "homepage": "http://www.wallaceandgromit.com/films/wrongtrousers/", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108598", "adult": false, "backdrop_path": "/9tbJCIaQVg2cnUf26NwGMKDyqvh.jpg", "production_companies": [{"name": "Aardman Animations", "id": 297}], "release_date": "1993-12-17", "popularity": 0.395614869382012, "original_title": "Wallace and Gromit: The Wrong Trousers", "budget": 0, "cast": [{"name": "Peter Sallis", "character": "Wallace", "id": 7317, "credit_id": "52fe424ec3a36847f8013e1d", "cast_id": 2, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}], "directors": [{"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013e19", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 7.5, "runtime": 30}, "532": {"poster_path": "/aLhRY6psan74kcGB0GOqQXl3Yo2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Wallace falls in love with wool-shop owner Wendolene, not suspecting that she (or rather, her dog) is at the head of a fiendish sheep-rustling plot. Gromit is set up and jailed, but his new-found sheepish friend is determine to give Wallace a helping hand in finding out the real truth.", "video": false, "id": 532, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wallace and Gromit: A Close Shave", "tagline": "The cheese lover and his sidekick investigate the wildest, woolliest sheep rustling yarn ever made of clay.", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112691", "adult": false, "backdrop_path": "/qBFSlBSjHiwYRRA3sKYUO5G4kDL.jpg", "production_companies": [], "release_date": "1995-12-24", "popularity": 0.390289248755464, "original_title": "Wallace and Gromit: A Close Shave", "budget": 0, "cast": [{"name": "Peter Sallis", "character": "Wallace", "id": 7317, "credit_id": "52fe424ec3a36847f8013e63", "cast_id": 2, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}], "directors": [{"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013e5f", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 7.3, "runtime": 30}, "533": {"poster_path": "/tLryx0x9TDV5rifA9W8yUvDZFHB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 192452832, "overview": "Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.", "video": false, "id": 533, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wallace & Gromit: The Curse of the Were-Rabbit", "tagline": "Something bunny is going on...", "vote_count": 164, "homepage": "http://java.europe.yahoo.com/uk/uip/wallaceandgromit/index.html", "belongs_to_collection": {"backdrop_path": "/huyrvVKEKa9czUY89fnvaAVAtkX.jpg", "poster_path": "/993pCCMO9g9RQUtNDxQgE1B330H.jpg", "id": 529, "name": "Wallace & Gromit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0312004", "adult": false, "backdrop_path": "/vimLj0rb8jkSKaXDaCMrVqJ7VhT.jpg", "production_companies": [{"name": "Aardman Animations", "id": 297}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2005-10-14", "popularity": 1.05191204967933, "original_title": "Wallace & Gromit: The Curse of the Were-Rabbit", "budget": 30000000, "cast": [{"name": "Peter Sallis", "character": "Wallace / Hutch", "id": 7317, "credit_id": "52fe424ec3a36847f8013f27", "cast_id": 30, "profile_path": "/8vMFK2SJFzQbtEIj4FU7adyhCGM.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Lady Campanula Tottington", "id": 1283, "credit_id": "52fe424ec3a36847f8013f17", "cast_id": 26, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Victor Quartermaine", "id": 5469, "credit_id": "52fe424ec3a36847f8013f1b", "cast_id": 27, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Nicholas Smith", "character": "Reverend Clement Hedges", "id": 7319, "credit_id": "52fe424ec3a36847f8013edf", "cast_id": 11, "profile_path": "/gvEyB4DY4blMqgXrt5q8yx53x7i.jpg", "order": 3}, {"name": "Liz Smith", "character": "Mrs. Mulch", "id": 7320, "credit_id": "52fe424ec3a36847f8013ee3", "cast_id": 12, "profile_path": "/rFmFjKTl9Drjv7tA687miEyn1tG.jpg", "order": 4}, {"name": "John Thomson", "character": "Mr. Windfall", "id": 7321, "credit_id": "52fe424ec3a36847f8013ee7", "cast_id": 13, "profile_path": "/4KJpOMWTVn71rSddvlvByOVRoNb.jpg", "order": 5}, {"name": "Vincent Ebrahim", "character": "Mr. Caliche", "id": 127149, "credit_id": "52fe424ec3a36847f8013eeb", "cast_id": 15, "profile_path": "/fnL4uZeuksOUzCdbNJdop6jvd6r.jpg", "order": 6}, {"name": "Geraldine McEwan", "character": "Miss Thripp", "id": 8326, "credit_id": "52fe424ec3a36847f8013eef", "cast_id": 16, "profile_path": "/99RxYdI81YBS6sZO3AW6rtYlmfH.jpg", "order": 7}, {"name": "Edward Kelsey", "character": "Mr. Growbag", "id": 127150, "credit_id": "52fe424ec3a36847f8013ef3", "cast_id": 17, "profile_path": "/oVOkIZpefeKANtcg8nP5ycu2dS1.jpg", "order": 8}, {"name": "Dicken Ashworth", "character": "Mr. Mulch", "id": 127151, "credit_id": "52fe424ec3a36847f8013ef7", "cast_id": 18, "profile_path": "/wqmO8F6kL53ZWe0wTIieIOCC0HS.jpg", "order": 9}, {"name": "Robert Horvath", "character": "Mr. Dibber", "id": 127152, "credit_id": "52fe424ec3a36847f8013efb", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Pete Atkin", "character": "Mr. Crock", "id": 127153, "credit_id": "52fe424ec3a36847f8013eff", "cast_id": 20, "profile_path": "/sR154GSl8nIqXQNBAtfySH6iMK5.jpg", "order": 11}, {"name": "Noni Lewis", "character": "Mrs. Girdling", "id": 127154, "credit_id": "52fe424ec3a36847f8013f03", "cast_id": 21, "profile_path": "/gTywapOQyLA8OQA4xKSNhfUkDOE.jpg", "order": 12}, {"name": "Ben Whitehead", "character": "Mr. Leaching", "id": 127155, "credit_id": "52fe424ec3a36847f8013f07", "cast_id": 22, "profile_path": "/fC807FuqrNLmflv76p9CiBIyj2P.jpg", "order": 13}, {"name": "Christopher Fairbank", "character": "Additional Voice", "id": 8399, "credit_id": "52fe424ec3a36847f8013f0b", "cast_id": 23, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 14}, {"name": "James Mather", "character": "Additional Voice", "id": 11351, "credit_id": "52fe424ec3a36847f8013f0f", "cast_id": 24, "profile_path": "/28Efuv16I0yHRZrwZs5IinsDY8u.jpg", "order": 15}, {"name": "William Vanderpuye", "character": "Additional Voice", "id": 127156, "credit_id": "52fe424ec3a36847f8013f13", "cast_id": 25, "profile_path": "/j7fFWJT399XHkOdeyuAJ3wlHWR0.jpg", "order": 16}, {"name": "Mark Gatiss", "character": "Miss Blight", "id": 34546, "credit_id": "52fe424ec3a36847f8013f1f", "cast_id": 28, "profile_path": "/uHpq3hbAuTayIZlO17V2tutUVWl.jpg", "order": 17}, {"name": "Peter Kay", "character": "PC Mackintosh", "id": 7318, "credit_id": "52fe424ec3a36847f8013f23", "cast_id": 29, "profile_path": "/i6oPFmwjD8YaczJ1wevdqrbeSPk.jpg", "order": 18}], "directors": [{"name": "Steve Box", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013ebd", "profile_path": null, "id": 7313}, {"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013ec3", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 6.4, "runtime": 85}, "534": {"poster_path": "/hxDfhavtxA2Ayx7O9BsQMcZRdG0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 371353001, "overview": "All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.", "video": false, "id": 534, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Terminator Salvation", "tagline": "The End Begins.", "vote_count": 974, "homepage": "http://www.terminatorsalvation.com", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0438488", "adult": false, "backdrop_path": "/wUdsw5jvnsGRsuA9e4MMSP3TD2B.jpg", "production_companies": [{"name": "The Halcyon Company", "id": 4021}, {"name": "Wonderland Sound and Vision", "id": 4022}], "release_date": "2009-05-20", "popularity": 2.51786601432449, "original_title": "Terminator Salvation", "budget": 200000000, "cast": [{"name": "Christian Bale", "character": "John Connor", "id": 3894, "credit_id": "52fe424ec3a36847f8013ff7", "cast_id": 18, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Sam Worthington", "character": "Marcus Wright", "id": 65731, "credit_id": "52fe424ec3a36847f8013fcd", "cast_id": 6, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Anton Yelchin", "character": "Kyle Reese", "id": 21028, "credit_id": "52fe424ec3a36847f8013fc1", "cast_id": 3, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 2}, {"name": "Moon Bloodgood", "character": "Blair Williams", "id": 56455, "credit_id": "52fe424ec3a36847f8013fd1", "cast_id": 7, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 3}, {"name": "Bryce Dallas Howard", "character": "Kate Connor", "id": 18997, "credit_id": "52fe424ec3a36847f8013fef", "cast_id": 14, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Serena", "id": 1283, "credit_id": "52fe424ec3a36847f8013fc5", "cast_id": 4, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Common", "character": "Barnes", "id": 4238, "credit_id": "52fe424ec3a36847f8013fc9", "cast_id": 5, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 6}, {"name": "Roland Kickinger", "character": "Prototype T-800", "id": 76542, "credit_id": "52fe424ec3a36847f8013fd5", "cast_id": 8, "profile_path": "/27ng6dfis06ipNgkRTuNFe5N5BQ.jpg", "order": 7}, {"name": "Michael Ironside", "character": "General Ashdown", "id": 11086, "credit_id": "52fe424ec3a36847f8013fd9", "cast_id": 9, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 8}, {"name": "Jane Alexander", "character": "Virginia", "id": 13724, "credit_id": "52fe424ec3a36847f8013fdd", "cast_id": 10, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 9}, {"name": "Chris Browning", "character": "Morrison", "id": 76543, "credit_id": "52fe424ec3a36847f8013fe1", "cast_id": 11, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 10}, {"name": "Chris Ashworth", "character": "Richter", "id": 76544, "credit_id": "52fe424ec3a36847f8013fe5", "cast_id": 12, "profile_path": "/rt52xrN4ewHdMp5kmOaZUdzrN3u.jpg", "order": 11}, {"name": "Jadagrace", "character": "Star", "id": 213753, "credit_id": "52fe424ec3a36847f8013ff3", "cast_id": 17, "profile_path": "/A01kAPCgvOK8JfHXoh3TSeRezI4.jpg", "order": 12}, {"name": "David Midthunder", "character": "Soldier #1", "id": 1039678, "credit_id": "52fe424ec3a36847f8014001", "cast_id": 20, "profile_path": "/f0piRndy8kXPUh4onNoNNoeIO9u.jpg", "order": 13}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8013feb", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.9, "runtime": 115}, "535": {"poster_path": "/pW8tRnHJbZfobnEX16CjkOg8bAH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90463574, "overview": "The popular 1980\u2019s dance movie that depicts the life of an exotic dancer with a side job as a welder who true desire is to get into ballet school. It\u2019s her dream to be a professional dancer and now is her chance. The film has a great soundtrack with an Oscar winning song.", "video": false, "id": 535, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Flashdance", "tagline": "When the dancer becomes the dance.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085549", "adult": false, "backdrop_path": "/4hDK7V6YPX1LW91rNs3KS8r9Myf.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1983-04-14", "popularity": 0.881722482198963, "original_title": "Flashdance", "budget": 7000000, "cast": [{"name": "Jennifer Beals", "character": "Alex Owens", "id": 3130, "credit_id": "52fe424ec3a36847f801406f", "cast_id": 2, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 0}, {"name": "Michael Nouri", "character": "Nick Hurley", "id": 8699, "credit_id": "52fe424ec3a36847f80140af", "cast_id": 13, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 1}, {"name": "Lilia Skala", "character": "Hanna Long", "id": 31114, "credit_id": "52fe424ec3a36847f80140b3", "cast_id": 14, "profile_path": "/bPVFRCF9eFu2ZODXbH3Ur5dUWac.jpg", "order": 2}, {"name": "Kyle T. Heffner", "character": "Richie", "id": 31115, "credit_id": "52fe424ec3a36847f80140b7", "cast_id": 15, "profile_path": "/9c8G4diZ3Nr8jClTANqMOwmTN9z.jpg", "order": 3}, {"name": "Sunny Johnson", "character": "Jeanie Szabo", "id": 31116, "credit_id": "52fe424ec3a36847f80140bb", "cast_id": 16, "profile_path": "/mKFoSy6SFZzaXKcEy6guoqu9gWU.jpg", "order": 4}, {"name": "Malcolm Danare", "character": "Cecil", "id": 14738, "credit_id": "52fe424ec3a36847f80140bf", "cast_id": 17, "profile_path": "/6PQPp4Yim18xuNCBGQLg2cYAstY.jpg", "order": 5}, {"name": "Philip Bruns", "character": "Frank Szabo", "id": 31117, "credit_id": "52fe424ec3a36847f80140c3", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Micole Mercurio", "character": "Rosemary Szabo", "id": 21202, "credit_id": "542316cdc3a3681eca0005b8", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Don Brockett", "character": "Pete", "id": 31118, "credit_id": "52fe424ec3a36847f80140c7", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Cynthia Rhodes", "character": "Tina Tech", "id": 724, "credit_id": "54231645c3a3680876001cb5", "cast_id": 20, "profile_path": "/zt0z8Mj1aQC8SHeYAo6vph9Hd6.jpg", "order": 9}, {"name": "Lee Ving", "character": "Johnny C.", "id": 80745, "credit_id": "54231675c3a3680887001b20", "cast_id": 21, "profile_path": "/tG4MKdOp1viff4rrCbH8WQEhIE3.jpg", "order": 10}, {"name": "Ron Karabatsos", "character": "Jake Mawby", "id": 1367324, "credit_id": "54231692c3a3680880001d49", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Belinda Bauer", "character": "Katie Hurley", "id": 44049, "credit_id": "542316a8c3a3680887001b26", "cast_id": 23, "profile_path": "/2YAaeWOjbHig2COD9omZXbirr0e.jpg", "order": 12}], "directors": [{"name": "Adrian Lyne", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f801406b", "profile_path": null, "id": 7270}], "vote_average": 6.0, "runtime": 95}, "539": {"poster_path": "/sRTZv2dbyfuXTFEJfuEpCbECh6B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32000000, "overview": "When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother. The place seems quirky, but fine\u2026 until Marion decides to take a shower.", "video": false, "id": 539, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Psycho", "tagline": "The master of suspense moves his cameras into the icy blackness of the unexplored!", "vote_count": 460, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wkYbo0Wdnjp1wcy1q2KfaIjommA.jpg", "poster_path": "/29pDqAgmb4idzWzuZncoT7LZplA.jpg", "id": 119674, "name": "Psycho Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054215", "adult": false, "backdrop_path": "/3md49VBCeqY6MSNyAVY6d5eC6bA.jpg", "production_companies": [{"name": "Shamley Productions", "id": 10717}], "release_date": "1960-06-16", "popularity": 1.18914282279902, "original_title": "Psycho", "budget": 806948, "cast": [{"name": "Anthony Perkins", "character": "Norman Bates", "id": 7301, "credit_id": "52fe424fc3a36847f8014213", "cast_id": 4, "profile_path": "/8M8Bt20z0M587lrjkdXrEqYtQKU.jpg", "order": 0}, {"name": "Vera Miles", "character": "Lila Crane", "id": 7303, "credit_id": "52fe424fc3a36847f801421b", "cast_id": 6, "profile_path": "/qWP9L969DOSFgBhRV2Ik2ve8Z4r.jpg", "order": 1}, {"name": "John Gavin", "character": "Sam Loomis", "id": 7304, "credit_id": "52fe424fc3a36847f801421f", "cast_id": 7, "profile_path": "/sOYggS68lUhOpuXKbtz0oXOHV6x.jpg", "order": 2}, {"name": "Janet Leigh", "character": "Marion Crane", "id": 7302, "credit_id": "52fe424fc3a36847f8014217", "cast_id": 5, "profile_path": "/3FWYSCJUOuYVDPG9UoMjtqNMdyb.jpg", "order": 3}, {"name": "Martin Balsam", "character": "Det. Milton Arbogast", "id": 1936, "credit_id": "52fe424fc3a36847f8014265", "cast_id": 20, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 4}, {"name": "John McIntire", "character": "Sheriff Al Chambers", "id": 53010, "credit_id": "52fe424fc3a36847f8014269", "cast_id": 21, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 5}, {"name": "Simon Oakland", "character": "Dr. Fred Richman", "id": 14063, "credit_id": "52fe424fc3a36847f801426d", "cast_id": 22, "profile_path": "/frbQBmieMRcdAKupAIbJ0FsHuD2.jpg", "order": 6}, {"name": "Frank Albertson", "character": "Tom Cassidy", "id": 78902, "credit_id": "52fe424fc3a36847f8014271", "cast_id": 23, "profile_path": "/9ncLyc3P4SL6aiMnxHyFv2bIYwz.jpg", "order": 7}, {"name": "Patricia Hitchcock", "character": "Caroline (as Pat Hitchcock)", "id": 12500, "credit_id": "52fe424fc3a36847f8014275", "cast_id": 24, "profile_path": "/aB59dttMS0KHSv2frlqcx43HCeC.jpg", "order": 8}, {"name": "Vaughn Taylor", "character": "George Lowery", "id": 3641, "credit_id": "52fe424fc3a36847f8014279", "cast_id": 25, "profile_path": "/uS8OlzIPv5mthaAiAuNEX8AUEDt.jpg", "order": 9}, {"name": "Lurene Tuttle", "character": "Mrs. Chambers", "id": 19781, "credit_id": "52fe424fc3a36847f801427d", "cast_id": 26, "profile_path": "/cVAEXfkccfmUdj1EfSXJL4I9bxR.jpg", "order": 10}, {"name": "Mort Mills", "character": "Highway Patrol Officer", "id": 45525, "credit_id": "52fe424fc3a36847f8014281", "cast_id": 28, "profile_path": "/1KmPkFX992nBkDBPzg5QoWB8v4K.jpg", "order": 11}, {"name": "John Anderson", "character": "California Charlie", "id": 19111, "credit_id": "52fe424fc3a36847f8014285", "cast_id": 29, "profile_path": "/pM45pKyjU1c9nkO087hEr2dCNPw.jpg", "order": 12}, {"name": "Alfred Hitchcock", "character": "Man outside Office", "id": 2636, "credit_id": "52fe424fc3a36847f8014289", "cast_id": 30, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 13}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe424ec3a36847f8014203", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.5, "runtime": 109}, "544": {"poster_path": "/mbjxlfb7Z9AFq74C79R4ssqrPeF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 369884651, "overview": "Having never fully recovered from a prom date that became a total disaster, a man finally gets a chance to reunite with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.", "video": false, "id": 544, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "There's Something About Mary", "tagline": "Love Is In The Hair.", "vote_count": 332, "homepage": "http://www.aboutmary.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0129387", "adult": false, "backdrop_path": "/8ZIZJbPXCtnIG1rJpR57iFRyPTt.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1998-07-15", "popularity": 1.14046570836178, "original_title": "There's Something About Mary", "budget": 23000000, "cast": [{"name": "Cameron Diaz", "character": "Mary Jensen", "id": 6941, "credit_id": "52fe424fc3a36847f80145a5", "cast_id": 5, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Ted Stroehmann", "id": 7399, "credit_id": "52fe424fc3a36847f80145ad", "cast_id": 7, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Pat Healy", "id": 2876, "credit_id": "52fe424fc3a36847f80145a9", "cast_id": 6, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Lee Evans", "character": "Tucker/Norman Phipps", "id": 7400, "credit_id": "52fe424fc3a36847f80145b1", "cast_id": 8, "profile_path": "/oMMGnjjU9bPxtaS4swZ4dxkifwX.jpg", "order": 3}, {"name": "Chris Elliott", "character": "Dom Woganowski", "id": 1534, "credit_id": "52fe424fc3a36847f80145b5", "cast_id": 9, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 4}, {"name": "Lin Shaye", "character": "Magda", "id": 7401, "credit_id": "52fe424fc3a36847f80145b9", "cast_id": 10, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 5}, {"name": "Jeffrey Tambor", "character": "Sully", "id": 4175, "credit_id": "52fe424fc3a36847f80145bd", "cast_id": 11, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 6}, {"name": "Markie Post", "character": "Sheila Jensen", "id": 7402, "credit_id": "52fe424fc3a36847f80145c1", "cast_id": 12, "profile_path": "/1Ku4vbaYdbw8PpL0xJqepWHEbI6.jpg", "order": 7}, {"name": "Keith David", "character": "Charlie Jensen", "id": 65827, "credit_id": "52fe424fc3a36847f80145c5", "cast_id": 13, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 8}, {"name": "W. Earl Brown", "character": "Warren Jensen", "id": 6951, "credit_id": "52fe424fc3a36847f80145c9", "cast_id": 14, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 9}, {"name": "Sarah Silverman", "character": "Brenda", "id": 7404, "credit_id": "52fe424fc3a36847f80145cd", "cast_id": 15, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 10}, {"name": "Brett Favre", "character": "Brett Favre", "id": 7419, "credit_id": "52fe424fc3a36847f8014631", "cast_id": 33, "profile_path": "/97B6uuJgVcRbllnSmBjfg1C25Wl.jpg", "order": 11}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe424fc3a36847f801458f", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe424fc3a36847f8014595", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 6.4, "runtime": 119}, "547": {"poster_path": "/nT4p5iDOxcnEa2QD0Kp3907WeuA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186883563, "overview": "Based on the novel by the same name from Nicholas Evans, the talented Robert Redford presents this meditative family drama set in the country side. Redford not only directs but also stars in the roll of a cowboy with a magical talent for healing.", "video": false, "id": 547, "genres": [{"id": 10749, "name": "Romance"}], "title": "The Horse Whisperer", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119314", "adult": false, "backdrop_path": "/kY8GBg32EYpoWY7sT0A0CT0ZvhT.jpg", "production_companies": [{"name": "Wildwood Enterprises", "id": 316}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-05-14", "popularity": 0.35947052047756, "original_title": "The Horse Whisperer", "budget": 60000000, "cast": [{"name": "Robert Redford", "character": "Tom Booker", "id": 4135, "credit_id": "52fe4250c3a36847f801475d", "cast_id": 1, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Kristin Scott Thomas", "character": "Annie MacLean", "id": 5470, "credit_id": "52fe4250c3a36847f8014761", "cast_id": 2, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 1}, {"name": "Sam Neill", "character": "Robert MacLean", "id": 4783, "credit_id": "52fe4250c3a36847f8014765", "cast_id": 3, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Grace MacLean", "id": 1245, "credit_id": "52fe4250c3a36847f801476d", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Dianne Wiest", "character": "Diane Booker", "id": 1902, "credit_id": "52fe4250c3a36847f8014769", "cast_id": 4, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 4}, {"name": "Chris Cooper", "character": "Frank Booker", "id": 2955, "credit_id": "52fe4250c3a36847f8014771", "cast_id": 6, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 5}, {"name": "Cherry Jones", "character": "Liz Hammond", "id": 1956, "credit_id": "52fe4250c3a36847f8014775", "cast_id": 7, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 6}, {"name": "Ty Hillman", "character": "Joe Booker", "id": 7516, "credit_id": "52fe4250c3a36847f8014779", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Kate Bosworth", "character": "Judith", "id": 7517, "credit_id": "52fe4250c3a36847f801477d", "cast_id": 9, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 8}, {"name": "Austin Schwarz", "character": "Twin #1", "id": 7518, "credit_id": "52fe4250c3a36847f8014781", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Dustin Schwarz", "character": "Twin #2", "id": 7519, "credit_id": "52fe4250c3a36847f8014785", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jeanette Nolan", "character": "Ellen Booker", "id": 7520, "credit_id": "52fe4250c3a36847f8014789", "cast_id": 12, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 11}, {"name": "Steve Frye", "character": "Hank", "id": 7521, "credit_id": "52fe4250c3a36847f801478d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Don Edwards", "character": "Smokey", "id": 7522, "credit_id": "52fe4250c3a36847f8014791", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Jessalyn Gilsig", "character": "Annie's Assistant Lucy", "id": 7523, "credit_id": "52fe4250c3a36847f8014795", "cast_id": 15, "profile_path": "/unwwJ6IckFrwYjTdkPBcPCL8VOo.jpg", "order": 14}, {"name": "William 'Buddy' Byrd", "character": "Lester Petersen", "id": 7525, "credit_id": "52fe4250c3a36847f80147ab", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "John Hogarty", "character": "Local Tracker", "id": 7526, "credit_id": "52fe4250c3a36847f80147af", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Michel Lalonde", "character": "Park Ranger", "id": 7527, "credit_id": "52fe4250c3a36847f80147b3", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "C.J. Byrnes", "character": "Doctor", "id": 7528, "credit_id": "52fe4250c3a36847f80147b7", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Allison Moorer", "character": "Barn Dance Vocalist", "id": 7529, "credit_id": "52fe4250c3a36847f80147bb", "cast_id": 24, "profile_path": null, "order": 19}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe4250c3a36847f801479b", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.9, "runtime": 170}, "548": {"poster_path": "/z9hLdjaqQBADwBj90pULE9zgh3t.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 96568, "overview": "In ancient Japan a crime take place as told from three different travelers who have experienced the crime: a man being killed and his wife being raped. Which if any of the stories is true? A Akira Kurosawa film about morals, truth, and communication.", "video": false, "id": 548, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Rashomon", "tagline": "The husband, the wife...or the bandit?", "vote_count": 143, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0042876", "adult": false, "backdrop_path": "/eGWc9KHURMRghR1bEj25hZNztNX.jpg", "production_companies": [{"name": "Daiei Motion Picture Company", "id": 3214}], "release_date": "1950-12-26", "popularity": 1.01336926030082, "original_title": "Rash\u00f4mon", "budget": 0, "cast": [{"name": "Toshir\u014d Mifune", "character": "Taj\u00f4maru", "id": 7450, "credit_id": "52fe4250c3a36847f8014887", "cast_id": 5, "profile_path": "/32nCFJneAfmZxYTQsaF5bcmCB7e.jpg", "order": 0}, {"name": "Machiko Ky\u00f4", "character": "Masako", "id": 7451, "credit_id": "52fe4250c3a36847f801488b", "cast_id": 6, "profile_path": "/rznlEYD1gngOTdyCgChGqrQY4ii.jpg", "order": 1}, {"name": "Masayuki Mori", "character": "Takehiro", "id": 7452, "credit_id": "52fe4250c3a36847f801488f", "cast_id": 7, "profile_path": "/rqzt1uXnruuRQfVbv3PuD1nV2LX.jpg", "order": 2}, {"name": "Takashi Shimura", "character": "Woodcutter", "id": 7453, "credit_id": "52fe4250c3a36847f8014893", "cast_id": 8, "profile_path": "/k8Ff4Nq2peKfiUpd8IILrSBM0ts.jpg", "order": 3}, {"name": "Minoru Chiaki", "character": "Priest", "id": 7454, "credit_id": "52fe4250c3a36847f8014897", "cast_id": 9, "profile_path": "/yuHeTk3R9XGrPo1i1EbR3kfQibd.jpg", "order": 4}, {"name": "Kichijir\u00f4 Ueda", "character": "Commoner", "id": 7455, "credit_id": "52fe4250c3a36847f801489b", "cast_id": 10, "profile_path": "/ieTlJVanMpV2eiYTm3D5kKbYM3T.jpg", "order": 5}, {"name": "Noriko Honma", "character": "Medium", "id": 7456, "credit_id": "52fe4250c3a36847f801489f", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Daisuke Kat\u00f4", "character": "Policeman", "id": 7457, "credit_id": "52fe4250c3a36847f80148a3", "cast_id": 12, "profile_path": "/rZGOg4xRkDTVMdGCzMhswioT4pU.jpg", "order": 7}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe4250c3a36847f8014871", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 8.0, "runtime": 88}, "8741": {"poster_path": "/6nnENcwnuuigjd11DKn6ilqWaTF.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36400491, "overview": "Based on the graphic novel by James Jones, The Thin Red Line tells the story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived. A powerful frontline cast - including Sean Penn, Nick Nolte, Woody Harrelson and George Clooney - explodes into action in this hauntingly realistic view of military and moral chaos in the Pacific during World War II.", "video": false, "id": 8741, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Thin Red Line", "tagline": "Every man fights his own war.", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120863", "adult": false, "backdrop_path": "/ohX0MN7Q4IjcZvBTtFunortIzW3.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Geisler-Roberdeau", "id": 23660}], "release_date": "1998-12-25", "popularity": 0.758274919929187, "original_title": "The Thin Red Line", "budget": 52000000, "cast": [{"name": "Sean Penn", "character": "1st Sgt. Welsh", "id": 2228, "credit_id": "52fe44b6c3a36847f80a5e9f", "cast_id": 30, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Adrien Brody", "character": "Cpl. Fife", "id": 3490, "credit_id": "52fe44b6c3a36847f80a5e43", "cast_id": 6, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 1}, {"name": "Ben Chaplin", "character": "Pvt. Bell", "id": 21343, "credit_id": "52fe44b6c3a36847f80a5e47", "cast_id": 9, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 2}, {"name": "George Clooney", "character": "Capt. Bosche", "id": 1461, "credit_id": "52fe44b6c3a36847f80a5e4b", "cast_id": 10, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 3}, {"name": "John Cusack", "character": "Capt. Gaff", "id": 3036, "credit_id": "52fe44b6c3a36847f80a5e4f", "cast_id": 11, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 4}, {"name": "Woody Harrelson", "character": "Sgt. Keck", "id": 57755, "credit_id": "52fe44b6c3a36847f80a5e5b", "cast_id": 16, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 5}, {"name": "Elias Koteas", "character": "Capt. Staros", "id": 13550, "credit_id": "52fe44b6c3a36847f80a5ea3", "cast_id": 31, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 6}, {"name": "Nick Nolte", "character": "Lt. Col. Tall", "id": 1733, "credit_id": "52fe44b6c3a36847f80a5ea7", "cast_id": 32, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 7}, {"name": "John C. Reilly", "character": "Sgt. Storm", "id": 4764, "credit_id": "52fe44b6c3a36847f80a5eab", "cast_id": 33, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 8}, {"name": "John Travolta", "character": "Brig. Gen. Quintard", "id": 8891, "credit_id": "52fe44b6c3a36847f80a5eaf", "cast_id": 34, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 9}, {"name": "Kirk Acevedo", "character": "Pvt. Tella", "id": 55861, "credit_id": "52fe44b6c3a36847f80a5e3b", "cast_id": 1, "profile_path": "/9CTkCXyKQrHTFZWFN3JtDM2mF0U.jpg", "order": 10}, {"name": "Mark Boone Junior", "character": "Pvt. Peale", "id": 534, "credit_id": "52fe44b6c3a36847f80a5e3f", "cast_id": 5, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 11}, {"name": "Matt Doran", "character": "Pvt. Coombs", "id": 9374, "credit_id": "52fe44b6c3a36847f80a5e53", "cast_id": 13, "profile_path": "/gLpWm3azLiXgDPRWo23AnG5WM7O.jpg", "order": 12}, {"name": "Paul Gleeson", "character": "1st Lt. Band", "id": 55866, "credit_id": "52fe44b6c3a36847f80a5e57", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Don Harvey", "character": "Sgt. Becker", "id": 1280, "credit_id": "52fe44b6c3a36847f80a5e5f", "cast_id": 18, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 14}, {"name": "Arie Verveen", "character": "Pvt. Charlie Dale", "id": 91612, "credit_id": "52fe44b6c3a36847f80a5eb9", "cast_id": 36, "profile_path": "/yh3mOsRXENzK3JJljFlSgX7p6QL.jpg", "order": 15}, {"name": "Jared Leto", "character": "2nd Lt. Whyte", "id": 7499, "credit_id": "52fe44b6c3a36847f80a5ebd", "cast_id": 37, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 16}, {"name": "John Savage", "character": "Sgt. McCron", "id": 47879, "credit_id": "52fe44b6c3a36847f80a5ec1", "cast_id": 38, "profile_path": "/ddGrvKHqhziYw9r6U1wu0VDLPYn.jpg", "order": 17}, {"name": "Nick Stahl", "character": "Pfc - Beade", "id": 6408, "credit_id": "52fe44b6c3a36847f80a5ec5", "cast_id": 39, "profile_path": "/2QYVx2D71lY2MfRbluC8PPyLMlH.jpg", "order": 18}, {"name": "Miranda Otto", "character": "Marty Bell", "id": 502, "credit_id": "52fe44b6c3a36847f80a5ec9", "cast_id": 40, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 19}, {"name": "Tim Blake Nelson", "character": "Pvt. Brian Tills", "id": 1462, "credit_id": "52fe44b6c3a36847f80a5ecd", "cast_id": 41, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 20}, {"name": "Dash Mihok", "character": "Pfc. Don Doll", "id": 6066, "credit_id": "52fe44b6c3a36847f80a5ed1", "cast_id": 42, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 21}, {"name": "Larry Romano", "character": "Pvt. Mazzi", "id": 61233, "credit_id": "52fe44b6c3a36847f80a5ed5", "cast_id": 43, "profile_path": "/5oWKhp3sos6MWdF6n8H6X5oU8b0.jpg", "order": 22}, {"name": "Penelope Allen", "character": "Witt's Mother", "id": 14544, "credit_id": "52fe44b6c3a36847f80a5ed9", "cast_id": 44, "profile_path": "/8ar2dtYVVgf7ibQEGSqFPOuqakI.jpg", "order": 23}, {"name": "Danny Hoch", "character": "Pvt. Carni", "id": 124909, "credit_id": "52fe44b6c3a36847f80a5edd", "cast_id": 45, "profile_path": "/xW84pRsS0w674ckDoUFwZICkmYL.jpg", "order": 24}, {"name": "Jim Caviezel", "character": "Pvt. Witt", "id": 8767, "credit_id": "52fe44b6c3a36847f80a5ee1", "cast_id": 46, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 25}], "directors": [{"name": "Terrence Malick", "department": "Directing", "job": "Director", "credit_id": "52fe44b6c3a36847f80a5e65", "profile_path": "/4w0C0RaJ3qS6YZ7Ons6VZcEdfl7.jpg", "id": 30715}], "vote_average": 6.7, "runtime": 170}, "550": {"poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100853753, "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", "video": false, "id": 550, "genres": [{"id": 18, "name": "Drama"}], "title": "Fight Club", "tagline": "How much can you know about yourself if you've never been in a fight?", "vote_count": 3429, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0137523", "adult": false, "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1999-10-14", "popularity": 2.83836094352082, "original_title": "Fight Club", "budget": 63000000, "cast": [{"name": "Edward Norton", "character": "The Narrator", "id": 819, "credit_id": "52fe4250c3a36847f80149f3", "cast_id": 4, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Tyler Durden", "id": 287, "credit_id": "52fe4250c3a36847f80149f7", "cast_id": 5, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "Marla Singer", "id": 1283, "credit_id": "52fe4250c3a36847f80149fb", "cast_id": 6, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Meat Loaf", "character": "Robert 'Bob' Paulson", "id": 7470, "credit_id": "52fe4250c3a36847f80149ff", "cast_id": 7, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 3}, {"name": "Jared Leto", "character": "Angel Face", "id": 7499, "credit_id": "52fe4250c3a36847f8014a51", "cast_id": 30, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 4}, {"name": "Zach Grenier", "character": "Richard Chesler", "id": 7471, "credit_id": "52fe4250c3a36847f8014a55", "cast_id": 31, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 5}, {"name": "Holt McCallany", "character": "The Mechanic", "id": 7497, "credit_id": "52fe4250c3a36847f8014a59", "cast_id": 32, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 6}, {"name": "Eion Bailey", "character": "Ricky", "id": 7498, "credit_id": "52fe4250c3a36847f8014a5d", "cast_id": 33, "profile_path": "/4MnRgrwuiJvHsfoiJrIUL4TkfoC.jpg", "order": 7}, {"name": "Richmond Arquette", "character": "Intern", "id": 7472, "credit_id": "52fe4250c3a36847f8014a61", "cast_id": 34, "profile_path": "/xW4bb2qsPYilO27ex4Xoy2Ik1Ai.jpg", "order": 8}, {"name": "David Andrews", "character": "Thomas", "id": 7219, "credit_id": "52fe4250c3a36847f8014a65", "cast_id": 35, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 9}, {"name": "Christina Cabot", "character": "Group Leader", "id": 68277, "credit_id": "52fe4250c3a36847f8014a69", "cast_id": 36, "profile_path": "/7UBTv5lW6apPdVLnOqTTBMTJWwY.jpg", "order": 10}, {"name": "Tim De Zarn", "character": "Inspector Bird", "id": 956719, "credit_id": "52fe4250c3a36847f8014a6d", "cast_id": 37, "profile_path": "/bvj6Kaq1VzAEBkqCGVDvOaQKOhi.jpg", "order": 11}, {"name": "Ezra Buzzington", "character": "Inspector Dent", "id": 59285, "credit_id": "52fe4250c3a36847f8014a71", "cast_id": 38, "profile_path": "/dl0SIqpOqS05UpJHKuDQqZTwUvP.jpg", "order": 12}, {"name": "Bob Stephenson", "character": "Airport Security Officer", "id": 17449, "credit_id": "52fe4250c3a36847f8014a75", "cast_id": 39, "profile_path": "/jHjchnxDsghomSglNryppVWdBGC.jpg", "order": 13}, {"name": "David Lee Smith", "character": "Walter", "id": 56112, "credit_id": "52fe4250c3a36847f8014a79", "cast_id": 40, "profile_path": "/xYkMA9AWtUN93KV5hWzlDkcnebB.jpg", "order": 14}, {"name": "Thom Gossom Jr.", "character": "Detective Stern", "id": 1219497, "credit_id": "52fe4250c3a36847f8014a7d", "cast_id": 41, "profile_path": "/8je5ISnUinU4RfjRGqW0ktZLneX.jpg", "order": 15}, {"name": "Carl Ciarfalio", "character": "Lou's Body Guard", "id": 42824, "credit_id": "52fe4250c3a36847f8014a81", "cast_id": 42, "profile_path": "/1JyIKBSkpK1tADOXpYYrO1khcQH.jpg", "order": 16}, {"name": "Stuart Blumberg", "character": "Car Salesman", "id": 40277, "credit_id": "52fe4251c3a36847f8014a85", "cast_id": 43, "profile_path": "/nvHQBUin3CXD0kBsET1KBNaiekW.jpg", "order": 17}, {"name": "Mark Fite", "character": "Man #2 at Auto Shop", "id": 122805, "credit_id": "52fe4251c3a36847f8014a89", "cast_id": 44, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 18}, {"name": "Matt Winston", "character": "Seminary Student", "id": 35521, "credit_id": "52fe4251c3a36847f8014a8d", "cast_id": 45, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 19}, {"name": "Lauren S\u00e1nchez", "character": "Channel 4 Reporter", "id": 1224996, "credit_id": "52fe4251c3a36847f8014a91", "cast_id": 46, "profile_path": "/iQ16P9a8TEzb4WsN8fjLsMCtvMA.jpg", "order": 20}, {"name": "David Jean Thomas", "character": "Policeman", "id": 109100, "credit_id": "52fe4251c3a36847f8014a95", "cast_id": 47, "profile_path": "/f5YBSiswUU9rctXbJQoXi0CdJBn.jpg", "order": 21}, {"name": "Paul Carafotes", "character": "Salvator, Winking Bartender", "id": 1221838, "credit_id": "52fe4251c3a36847f8014a99", "cast_id": 48, "profile_path": "/enoYGFhHwLqKacISwjxk5yrFAOA.jpg", "order": 22}, {"name": "Christopher John Fields", "character": "Proprietor of Dry Cleaners", "id": 145531, "credit_id": "52fe4251c3a36847f8014a9d", "cast_id": 49, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 23}, {"name": "Michael Shamus Wiles", "character": "Bartender in Halo", "id": 9291, "credit_id": "52fe4251c3a36847f8014aa1", "cast_id": 50, "profile_path": "/upfSW6BGze446iqsZRehzcToNm8.jpg", "order": 24}, {"name": "Van Quattro", "character": "Detective Andrew", "id": 41352, "credit_id": "52fe4251c3a36847f8014aa5", "cast_id": 51, "profile_path": "/kNmOCRKD6PyG8t9tcDOpBFOrast.jpg", "order": 25}, {"name": "Markus Redmond", "character": "Detective Kevin", "id": 1226835, "credit_id": "52fe4251c3a36847f8014aa9", "cast_id": 52, "profile_path": "/yxMbPCGa8rMSrquc8v4UN7QLlWX.jpg", "order": 26}, {"name": "Manasa Madapu", "character": "Manasa Madapu", "id": 1378351, "credit_id": "544e7e33c3a3685682000271", "cast_id": 53, "profile_path": null, "order": 27}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4250c3a36847f8014a47", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.8, "runtime": 139}, "551": {"poster_path": "/3Ypk0OLrECSp7tqQFLMppGBrHfo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93300000, "overview": "The Poseidon Adventure was one of the first Catastrophe films and began the Disaster Film genre. Director Neame tells the story of a group of people that must fight for their lives aboard a sinking ship. Based on the novel by Paul Gallico.", "video": false, "id": 551, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "The Poseidon Adventure", "tagline": "Who will survive-in one of the greatest escape adventures ever!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0069113", "adult": false, "backdrop_path": "/xwEtJVliloiuICXoyqjyTZM9qRc.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Kent Productions", "id": 10281}], "release_date": "1972-12-12", "popularity": 0.534865616144203, "original_title": "The Poseidon Adventure", "budget": 5000000, "cast": [{"name": "Gene Hackman", "character": "Reverand Scott", "id": 193, "credit_id": "52fe4251c3a36847f8014afd", "cast_id": 5, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Ernest Borgnine", "character": "Mike Rogo", "id": 7502, "credit_id": "52fe4251c3a36847f8014b01", "cast_id": 6, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 1}, {"name": "Red Buttons", "character": "James Martin", "id": 7503, "credit_id": "52fe4251c3a36847f8014b05", "cast_id": 7, "profile_path": "/qftIHEdcpPgBnEe8P9OvMpIqiL3.jpg", "order": 2}, {"name": "Carol Lynley", "character": "Nonnie Parry", "id": 7504, "credit_id": "52fe4251c3a36847f8014b09", "cast_id": 8, "profile_path": "/xYeHABAxxjJ7p9Zw5KxB9E5SzmY.jpg", "order": 3}, {"name": "Roddy McDowall", "character": "Acres", "id": 7505, "credit_id": "52fe4251c3a36847f8014b0d", "cast_id": 9, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 4}, {"name": "Stella Stevens", "character": "Linda Rogo", "id": 7631, "credit_id": "52fe4251c3a36847f8014b53", "cast_id": 21, "profile_path": "/hsNwoHrAe6ZWaBl4f62YiP2iJqo.jpg", "order": 5}, {"name": "Shelley Winters", "character": "Belle Rosen", "id": 7632, "credit_id": "52fe4251c3a36847f8014b57", "cast_id": 22, "profile_path": "/zVg966M0RVK5kycHZUEDc51QULV.jpg", "order": 6}, {"name": "Jack Albertson", "character": "Manny Rosen", "id": 3461, "credit_id": "52fe4251c3a36847f8014b5b", "cast_id": 23, "profile_path": "/k9oqFrLhgd6v1hGG8Jg2mluM1XL.jpg", "order": 7}, {"name": "Leslie Nielsen", "character": "Captain Harrison", "id": 7633, "credit_id": "52fe4251c3a36847f8014b5f", "cast_id": 24, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 8}, {"name": "Pamela Sue Martin", "character": "Susan Shelby", "id": 7634, "credit_id": "52fe4251c3a36847f8014b63", "cast_id": 25, "profile_path": "/nxT3hW8I4hfABzlAr26Fww3WZTf.jpg", "order": 9}, {"name": "Eric Shea", "character": "Robin Shelby", "id": 7635, "credit_id": "52fe4251c3a36847f8014b67", "cast_id": 26, "profile_path": "/h1mTZMnUeHTEm54L0hw3pRjC9hA.jpg", "order": 10}, {"name": "Fred Sadoff", "character": "Mr. Linarcos", "id": 7636, "credit_id": "52fe4251c3a36847f8014b6b", "cast_id": 27, "profile_path": "/w1nYD8q0ZNfuBrEcM65qcwxwjX0.jpg", "order": 11}, {"name": "Roseann Williams", "character": "Woman (uncredited)", "id": 1407179, "credit_id": "54a507e2c3a368764f010b72", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Arthur O'Connell", "character": "Chaplain", "id": 857, "credit_id": "54cb2e77925141678e012f94", "cast_id": 29, "profile_path": "/rWoLpGwQlIZSiPIzJqE1yIMiDxr.jpg", "order": 13}, {"name": "Sheila Allen", "character": "Nurse", "id": 6865, "credit_id": "54cb3467925141561e00f124", "cast_id": 30, "profile_path": "/7eA4sejlzIYfJdelJAyyUJHnLK2.jpg", "order": 14}, {"name": "Jan Arvan", "character": "Doctor", "id": 151536, "credit_id": "54cb379692514157cc00ee32", "cast_id": 31, "profile_path": "/4hLznxGYdVhl5dvnKoMIYfGknbW.jpg", "order": 15}, {"name": "Byron Webster", "character": "Purser", "id": 88170, "credit_id": "54cb39c6c3a368709000f4b4", "cast_id": 32, "profile_path": "/iRRI5q5VVS44CNAyUCNZKsBTYFB.jpg", "order": 16}, {"name": "John Crawford", "character": "Chief Engineer", "id": 15693, "credit_id": "54cb3b66c3a368092400eb25", "cast_id": 33, "profile_path": "/wyBwzmRGML0PoIxJ2DnQAOBgmqu.jpg", "order": 17}, {"name": "Bob Hastings", "character": "M. C.", "id": 34973, "credit_id": "54cb3ce3c3a36874ac013183", "cast_id": 34, "profile_path": "/lk4qgDtuM5XqDbXLBQTyfpC6qiY.jpg", "order": 18}, {"name": "Erik L. Nelson", "character": "Mr. Tinkham", "id": 1401253, "credit_id": "54cb3fabc3a36874b7014898", "cast_id": 35, "profile_path": "/pD9V44n7frEliTwRiTcVAOn5855.jpg", "order": 19}], "directors": [{"name": "Ronald Neame", "department": "Directing", "job": "Director", "credit_id": "52fe4251c3a36847f8014ae7", "profile_path": "/6ET8GlWzxTkQu5sEH24I0UZ6IrG.jpg", "id": 7501}], "vote_average": 7.6, "runtime": 117}, "553": {"poster_path": "/mza2A9CcnE0W1zjDbC3UDSD9yQg.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FI", "name": "Finland"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "NO", "name": "Norway"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A barren soundstage is stylishly utilized to create a minimalist small-town setting in which a mysterious woman named Grace (Nicole Kidman) hides from the criminals who pursue her. The town is two-faced and offers to harbor Grace as long as she can make it worth their effort, so Grace works hard under the employ of various townspeople to win their favor. Tensions flare, however, and Grace's status as a helpless outsider provokes vicious contempt and abuse from the citizens of Dogville.", "video": false, "id": 553, "genres": [{"id": 18, "name": "Drama"}], "title": "Dogville", "tagline": "", "vote_count": 113, "homepage": "http://www.dogville.dk/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 1952, "name": "USA: Land of Opportunities Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0276919", "adult": false, "backdrop_path": "/ln8zSLTBoRUKVv3LxONxfyJdRxQ.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}], "release_date": "2003-05-19", "popularity": 0.366455574020756, "original_title": "Dogville", "budget": 10000000, "cast": [{"name": "Nicole Kidman", "character": "Grace Margaret Mulligan", "id": 2227, "credit_id": "52fe4251c3a36847f8014c93", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Harriet Andersson", "character": "Gloria", "id": 7569, "credit_id": "52fe4251c3a36847f8014c97", "cast_id": 4, "profile_path": "/zeVAlCxYjI9SvF5e6g3UfeNbeKo.jpg", "order": 1}, {"name": "Lauren Bacall", "character": "Ma Ginger", "id": 7570, "credit_id": "52fe4251c3a36847f8014c9b", "cast_id": 5, "profile_path": "/kolRFeufmFpcdRJL6v44FHkqdbJ.jpg", "order": 2}, {"name": "Jean-Marc Barr", "character": "Man with the big Hat", "id": 1642, "credit_id": "52fe4251c3a36847f8014c9f", "cast_id": 6, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 3}, {"name": "Paul Bettany", "character": "Tom Edison", "id": 6162, "credit_id": "52fe4251c3a36847f8014ca3", "cast_id": 7, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 4}, {"name": "Blair Brown", "character": "Mrs. Henson", "id": 7571, "credit_id": "52fe4251c3a36847f8014ca7", "cast_id": 8, "profile_path": "/zBMLu9wTu36i0RkQGSQ5adH6Lvu.jpg", "order": 5}, {"name": "James Caan", "character": "The Big Man", "id": 3085, "credit_id": "52fe4251c3a36847f8014cab", "cast_id": 9, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "Patricia Clarkson", "character": "Vera", "id": 1276, "credit_id": "52fe4251c3a36847f8014caf", "cast_id": 10, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 7}, {"name": "Jeremy Davies", "character": "Bill Henson", "id": 4654, "credit_id": "52fe4251c3a36847f8014cb3", "cast_id": 11, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 8}, {"name": "Ben Gazzara", "character": "Jack McKay", "id": 856, "credit_id": "52fe4251c3a36847f8014cb7", "cast_id": 12, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 9}, {"name": "Philip Baker Hall", "character": "Tom Edison Senior", "id": 4492, "credit_id": "52fe4251c3a36847f8014cbb", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 10}, {"name": "Thom Hoffman", "character": "Gangster", "id": 7572, "credit_id": "52fe4251c3a36847f8014cbf", "cast_id": 14, "profile_path": "/uqWhSQzfBScIHzYhAr4GsHKyrvP.jpg", "order": 11}, {"name": "Siobhan Fallon", "character": "Martha", "id": 6751, "credit_id": "52fe4251c3a36847f8014cc3", "cast_id": 15, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 12}, {"name": "\u017deljko Ivanek", "character": "Ben", "id": 6752, "credit_id": "52fe4251c3a36847f8014cc7", "cast_id": 16, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 13}, {"name": "John Randolph Jones", "character": "Gangster", "id": 6758, "credit_id": "52fe4251c3a36847f8014ccb", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Udo Kier", "character": "Man in the Coat", "id": 1646, "credit_id": "52fe4251c3a36847f8014ccf", "cast_id": 18, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 15}, {"name": "Cleo King", "character": "Olivia", "id": 7574, "credit_id": "52fe4251c3a36847f8014cd3", "cast_id": 19, "profile_path": "/1hyMhXnT6VuC0XA9eBmsbx9QbbY.jpg", "order": 16}, {"name": "Miles Purinton", "character": "Jason", "id": 7575, "credit_id": "52fe4251c3a36847f8014cd7", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Bill Raymond", "character": "Mr. Henson", "id": 7576, "credit_id": "52fe4251c3a36847f8014cdb", "cast_id": 21, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 18}, {"name": "Chlo\u00eb Sevigny", "character": "Liz Henson", "id": 2838, "credit_id": "52fe4251c3a36847f8014cdf", "cast_id": 22, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 19}, {"name": "Shauna Shim", "character": "June", "id": 7577, "credit_id": "52fe4251c3a36847f8014ce3", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Stellan Skarsg\u00e5rd", "character": "Chuck", "id": 1640, "credit_id": "52fe4251c3a36847f8014ce7", "cast_id": 24, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 21}, {"name": "Evelina Brinkemo", "character": "Athena", "id": 7578, "credit_id": "52fe4251c3a36847f8014ceb", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Anna Brobeck", "character": "Olympia", "id": 7579, "credit_id": "52fe4251c3a36847f8014cef", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Tilde Lindgren", "character": "Pandora", "id": 7580, "credit_id": "52fe4251c3a36847f8014cf3", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Evelina Lundqvist", "character": "Diana", "id": 7581, "credit_id": "52fe4251c3a36847f8014cf7", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Helga Olofsson", "character": "Dahlia", "id": 7582, "credit_id": "52fe4251c3a36847f8014cfb", "cast_id": 29, "profile_path": null, "order": 26}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe4251c3a36847f8014c89", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 7.7, "runtime": 178}, "41515": {"poster_path": "/5oYL4YS8WHjhodRLn4b8BRZ3YHh.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127209281, "overview": "Jellystone Park has been losing business, so greedy Mayor Brown decides to shut it down and sell the land. That means families will no longer be able to experience the natural beauty of the outdoors -- and, even worse, Yogi and Boo Boo will be tossed out of the only home they've ever known. Faced with his biggest challenge ever, Yogi must prove that he really is \"smarter than the average bear\" as he and Boo Boo join forces with their old nemesis Ranger Smith to find a way to save Jellystone Park from closing forever.", "video": false, "id": 41515, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Yogi Bear", "tagline": "Life's a Pic-A-Nic", "vote_count": 71, "homepage": "http://www.yogibear.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1302067", "adult": false, "backdrop_path": "/uSPlxOT3MppHyfP74mD8oUjlIQe.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Sunswept Entertainment", "id": 5219}, {"name": "De Line Pictures", "id": 2609}, {"name": "Rhythm and Hues", "id": 13481}, {"name": "Picnic Basket", "id": 19045}], "release_date": "2010-12-17", "popularity": 0.708425621324448, "original_title": "Yogi Bear", "budget": 80000000, "cast": [{"name": "Dan Aykroyd", "character": "Yogi Bear (voice)", "id": 707, "credit_id": "52fe45cfc3a36847f80dbc15", "cast_id": 4, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 0}, {"name": "Justin Timberlake", "character": "Boo-Boo Bear (voice)", "id": 12111, "credit_id": "52fe45cfc3a36847f80dbc11", "cast_id": 3, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 1}, {"name": "Anna Faris", "character": "Rachel", "id": 1772, "credit_id": "52fe45cfc3a36847f80dbc2d", "cast_id": 10, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Tom Cavanagh", "character": "Ranger Smith", "id": 59216, "credit_id": "52fe45cfc3a36847f80dbc21", "cast_id": 7, "profile_path": "/pBHRGDi313R4v88WM93LOCIBPwN.jpg", "order": 3}, {"name": "Christine Taylor", "character": "Cindy Bear (voice)", "id": 15286, "credit_id": "52fe45cfc3a36847f80dbc19", "cast_id": 5, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 4}, {"name": "T.J. Miller", "character": "Ranger Jones", "id": 51990, "credit_id": "52fe45cfc3a36847f80dbc1d", "cast_id": 6, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 5}, {"name": "Nate Corddry", "character": "Chief of Staff", "id": 127048, "credit_id": "52fe45cfc3a36847f80dbc29", "cast_id": 9, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 6}, {"name": "Andrew Daly", "character": "Mayor Brown", "id": 95875, "credit_id": "52fe45cfc3a36847f80dbc25", "cast_id": 8, "profile_path": "/1jUiCZOJOGE1LKBCaeMkrNceSj0.jpg", "order": 7}, {"name": "David Stott", "character": "Mayor's Tailor", "id": 66578, "credit_id": "52fe45cfc3a36847f80dbc3f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Greg Johnson", "character": "Dirty Shopper", "id": 46398, "credit_id": "52fe45cfc3a36847f80dbc43", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Greg Johnson", "character": "Stylist", "id": 46398, "credit_id": "52fe45cfc3a36847f80dbc47", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Patricia Aldersley", "character": "Elderly Purse Lady", "id": 54484, "credit_id": "52fe45cfc3a36847f80dbc4b", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Tim McLachlan", "character": "Purse Snatcher", "id": 235025, "credit_id": "52fe45cfc3a36847f80dbc4f", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Vernon Hayden", "character": "Security Guard", "id": 139912, "credit_id": "52fe45d0c3a36847f80dbc53", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Dean Knowsley", "character": "Security Guard", "id": 98216, "credit_id": "52fe45d0c3a36847f80dbc57", "cast_id": 20, "profile_path": "/uLBD2u1xuAUo9Fbxe6Jla9jEIEx.jpg", "order": 16}], "directors": [{"name": "Eric Brevig", "department": "Directing", "job": "Director", "credit_id": "52fe45cfc3a36847f80dbc0d", "profile_path": "/QqS6wJAVIxQCC7khem22Hq0a4b.jpg", "id": 9622}], "vote_average": 5.7, "runtime": 80}, "557": {"poster_path": "/rZd0y1X1Gw4t5B3f01Qzj8DYY66.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 821708551, "overview": "After being bitten by a genetically altered spider, nerdy high school student Peter Parker is endowed with amazing powers.", "video": false, "id": 557, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Spider-Man", "tagline": "With great power comes great responsibility.", "vote_count": 1798, "homepage": "http://spiderman.sonypictures.com/index.php", "belongs_to_collection": {"backdrop_path": "/waZqriYTuBE3WqXI3SDGi3kfDQE.jpg", "poster_path": "/aNknE3vw8QC5gDHBRYpOz9gzuPc.jpg", "id": 556, "name": "Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145487", "adult": false, "backdrop_path": "/jz6NCADCgj4dWU8RM81Xvrokey4.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Marvel Entertainment, LLC", "id": 325}, {"name": "Laura Ziskin Productions", "id": 326}], "release_date": "2002-05-02", "popularity": 2.06187455818809, "original_title": "Spider-Man", "budget": 139000000, "cast": [{"name": "Tobey Maguire", "character": "Spider-Man / Peter Parker", "id": 2219, "credit_id": "52fe4251c3a36847f8014f77", "cast_id": 31, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Green Goblin / Norman Osborn", "id": 5293, "credit_id": "52fe4251c3a36847f8014f7b", "cast_id": 32, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Kirsten Dunst", "character": "Mary Jane Watson", "id": 205, "credit_id": "52fe4251c3a36847f8014f11", "cast_id": 10, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 2}, {"name": "James Franco", "character": "Harry Osborn", "id": 17051, "credit_id": "52fe4251c3a36847f8014f15", "cast_id": 11, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 3}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4251c3a36847f8014f83", "cast_id": 34, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "J. Jonah Jameson", "id": 18999, "credit_id": "52fe4251c3a36847f8014f19", "cast_id": 12, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "Joe Manganiello", "character": "Flash Thompson", "id": 20580, "credit_id": "52fe4251c3a36847f8014f1d", "cast_id": 13, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 6}, {"name": "Gerry Becker", "character": "Maximilian Fargas", "id": 19468, "credit_id": "52fe4251c3a36847f8014f7f", "cast_id": 33, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 7}, {"name": "Rosemary Harris", "character": "May Parker", "id": 18998, "credit_id": "52fe4251c3a36847f8014f87", "cast_id": 35, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 8}, {"name": "Bill Nunn", "character": "Joseph 'Robbie' Robertson", "id": 5502, "credit_id": "52fe4251c3a36847f8014f8b", "cast_id": 36, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 9}, {"name": "Bruce Campbell", "character": "Ring Announcer", "id": 11357, "credit_id": "52fe4251c3a36847f8014f2d", "cast_id": 17, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 10}, {"name": "Stanley Anderson", "character": "General Slocum", "id": 15253, "credit_id": "52fe4252c3a36847f8014f8f", "cast_id": 37, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 11}, {"name": "Ron Perkins", "character": "Dr. Mendell Stromm", "id": 125024, "credit_id": "52fe4252c3a36847f8014f93", "cast_id": 38, "profile_path": "/mlmdELJA9yAwIIOh7JhxYW2hJtM.jpg", "order": 12}, {"name": "Michael Papajohn", "character": "Carjacker", "id": 20582, "credit_id": "52fe4251c3a36847f8014f29", "cast_id": 16, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 13}, {"name": "K. K. Dodds", "character": "Simkins", "id": 6945, "credit_id": "52fe4251c3a36847f8014f39", "cast_id": 20, "profile_path": "/n9d6ovtwlfZ5Xvvo2oaJd3rUGvp.jpg", "order": 14}, {"name": "Jack Betts", "character": "Henry Balkan", "id": 20581, "credit_id": "52fe4251c3a36847f8014f21", "cast_id": 14, "profile_path": "/wX6KWBh4sH2L7sHDIsgDBv6ktXQ.jpg", "order": 15}, {"name": "Elizabeth Banks", "character": "Miss Brant", "id": 9281, "credit_id": "52fe4251c3a36847f8014f25", "cast_id": 15, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 16}, {"name": "Shan Omar Huey", "character": "Teacher", "id": 20583, "credit_id": "52fe4251c3a36847f8014f31", "cast_id": 18, "profile_path": "/dKQvlvIOK1yn9NOFeKhxTZp5ouH.jpg", "order": 17}, {"name": "Lucy Lawless", "character": "Punk Rock Girl", "id": 20584, "credit_id": "52fe4251c3a36847f8014f35", "cast_id": 19, "profile_path": "/wTXMIKm3P0WMF9894Ubgky1mOXu.jpg", "order": 18}, {"name": "Robert Kerman", "character": "Tugboat Captain", "id": 55648, "credit_id": "52fe4251c3a36847f8014f73", "cast_id": 30, "profile_path": "/v6tD0f9D0k08TWObRvShYCTfV1x.jpg", "order": 19}, {"name": "Ted Raimi", "character": "Hoffman", "id": 11769, "credit_id": "52fe4252c3a36847f8014f97", "cast_id": 39, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 20}, {"name": "John Paxton", "character": "Houseman", "id": 19326, "credit_id": "52fe4252c3a36847f8014f9b", "cast_id": 40, "profile_path": "/bizhhVVs4y8CfHzPfqPYNEvs2eZ.jpg", "order": 21}, {"name": "Octavia Spencer", "character": "Check-In Girl", "id": 6944, "credit_id": "52fe4252c3a36847f8014fa3", "cast_id": 42, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 22}, {"name": "Randy Savage", "character": "Bone Saw McGraw", "id": 89023, "credit_id": "52fe4252c3a36847f8014f9f", "cast_id": 41, "profile_path": "/rcpPJQvX2uqt7oVaTVwAKhdcdN8.jpg", "order": 23}, {"name": "Jayce Bartok", "character": "Subway Guitarist", "id": 21130, "credit_id": "52fe4252c3a36847f8014fa7", "cast_id": 43, "profile_path": "/xDhwbN0QGGZ1YtvcML3EX8d5JJj.jpg", "order": 24}, {"name": "Sara Ramirez", "character": "Cop at Carjacking", "id": 125055, "credit_id": "52fe4252c3a36847f8014fab", "cast_id": 44, "profile_path": "/iXX6xCTvgMfqlWQZ2xdFxrOxhrz.jpg", "order": 25}, {"name": "Una Damon", "character": "Lab Tour Guide", "id": 154644, "credit_id": "52fe4252c3a36847f8014faf", "cast_id": 45, "profile_path": "/d3dcUIwjXY0mH6QplM98L8fswzA.jpg", "order": 26}, {"name": "Stan Lee", "character": "Man in Fair", "id": 7624, "credit_id": "52fe4252c3a36847f8014fb3", "cast_id": 46, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 27}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4251c3a36847f8014ee3", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.3, "runtime": 121}, "558": {"poster_path": "/qtBFrsEQ4oXW8sKvRxkKnYuPLg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 783766341, "overview": "Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood.", "video": false, "id": 558, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Spider-Man 2", "tagline": "There's a hero in all of us.", "vote_count": 1579, "homepage": "http://www.spider-man-2.de/", "belongs_to_collection": {"backdrop_path": "/waZqriYTuBE3WqXI3SDGi3kfDQE.jpg", "poster_path": "/aNknE3vw8QC5gDHBRYpOz9gzuPc.jpg", "id": 556, "name": "Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0316654", "adult": false, "backdrop_path": "/p2frIQykQPj3dXSYVOca60RQj9X.jpg", "production_companies": [{"name": "Laura Ziskin Productions", "id": 326}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Marvel Enterprises", "id": 19551}], "release_date": "2004-06-29", "popularity": 0.967805308687557, "original_title": "Spider-Man 2", "budget": 200000000, "cast": [{"name": "Tobey Maguire", "character": "Spider-Man / Peter Parker", "id": 2219, "credit_id": "52fe4252c3a36847f801509f", "cast_id": 33, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Mary Jane Watson", "id": 205, "credit_id": "52fe4252c3a36847f80150af", "cast_id": 37, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "James Franco", "character": "Harry Osborn", "id": 17051, "credit_id": "52fe4252c3a36847f80150b3", "cast_id": 38, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Doc Ock / Dr. Otto Octavius", "id": 658, "credit_id": "52fe4252c3a36847f801508b", "cast_id": 28, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Rosemary Harris", "character": "May Parker", "id": 18998, "credit_id": "52fe4252c3a36847f80150a7", "cast_id": 35, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "J. Jonah Jameson", "id": 18999, "credit_id": "52fe4252c3a36847f8015067", "cast_id": 19, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "Donna Murphy", "character": "Rosalie Octavius", "id": 2517, "credit_id": "52fe4252c3a36847f801506b", "cast_id": 20, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 6}, {"name": "Daniel Gillies", "character": "John Jameson", "id": 19154, "credit_id": "52fe4252c3a36847f801508f", "cast_id": 29, "profile_path": "/qBUt7kK7qFpK82Qt8ptHaBvO0QU.jpg", "order": 7}, {"name": "Dylan Baker", "character": "Dr. Curt Connors", "id": 19152, "credit_id": "52fe4252c3a36847f801506f", "cast_id": 21, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 8}, {"name": "Willem Dafoe", "character": "Green Goblin / Norman Osborn", "id": 5293, "credit_id": "52fe4252c3a36847f8015093", "cast_id": 30, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 9}, {"name": "Ted Raimi", "character": "Hoffman", "id": 11769, "credit_id": "52fe4252c3a36847f8015097", "cast_id": 31, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 10}, {"name": "Vanessa Ferlito", "character": "Louise", "id": 20491, "credit_id": "52fe4252c3a36847f8015073", "cast_id": 22, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 11}, {"name": "Aasif Mandvi", "character": "Mr. Aziz", "id": 20644, "credit_id": "52fe4252c3a36847f8015077", "cast_id": 23, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 12}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4252c3a36847f80150a3", "cast_id": 34, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 13}, {"name": "Elizabeth Banks", "character": "Miss Brant", "id": 9281, "credit_id": "52fe4252c3a36847f801507f", "cast_id": 25, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 14}, {"name": "Bruce Campbell", "character": "Snooty Usher", "id": 11357, "credit_id": "52fe4252c3a36847f801507b", "cast_id": 24, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 15}, {"name": "Gregg Edelman", "character": "Dr. Davis", "id": 17179, "credit_id": "52fe4252c3a36847f801509b", "cast_id": 32, "profile_path": "/aHbQl0K1c7rYtJVUHsLr4p0LtA6.jpg", "order": 16}, {"name": "Elya Baskin", "character": "Mr. Ditkovich", "id": 2368, "credit_id": "52fe4252c3a36847f8015087", "cast_id": 27, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 17}, {"name": "Mageina Tovah", "character": "Ursula", "id": 20645, "credit_id": "52fe4252c3a36847f8015083", "cast_id": 26, "profile_path": "/kxseJKAIiZFKnJFshy3nLXajmFz.jpg", "order": 18}, {"name": "Bill Nunn", "character": "Joseph 'Robbie' Robertson", "id": 5502, "credit_id": "52fe4252c3a36847f80150ab", "cast_id": 36, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 19}, {"name": "Emily Deschanel", "character": "Receptionist", "id": 25933, "credit_id": "52fe4252c3a36847f80150bb", "cast_id": 40, "profile_path": "/f5FjmOlXEcjLz4qxi5Rfbu3ZO4Y.jpg", "order": 20}, {"name": "Joel McHale", "character": "Mr. Jacks", "id": 74949, "credit_id": "52fe4252c3a36847f80150b7", "cast_id": 39, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 21}, {"name": "Stan Lee", "character": "Man Dodging Debris", "id": 7624, "credit_id": "52fe4252c3a36847f80150bf", "cast_id": 41, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 22}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f8015009", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.2, "runtime": 127}, "131631": {"poster_path": "/gj282Pniaa78ZJfbaixyLXnXEDI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 752100229, "overview": "Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.", "video": false, "id": 131631, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Hunger Games: Mockingjay - Part 1", "tagline": "Fire burns brighter in the darkness", "vote_count": 1172, "homepage": "http://www.thehungergamesexplorer.com/us/epk/mockingjay-part1", "belongs_to_collection": {"backdrop_path": "/lWZB4VFSlU292oJ3ZAzAzPi9GU0.jpg", "poster_path": "/cEBNDEMGqvSvU0knEv9Wl3dk5kv.jpg", "id": 131635, "name": "The Hunger Games Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1951265", "adult": false, "backdrop_path": "/fUn5I5f4069vwGFEEvA3HXt9xPP.jpg", "production_companies": [{"name": "Color Force", "id": 5420}, {"name": "Lionsgate", "id": 1632}], "release_date": "2014-11-20", "popularity": 13.6668202098639, "original_title": "The Hunger Games: Mockingjay - Part 1", "budget": 125000000, "cast": [{"name": "Jennifer Lawrence", "character": "Katniss Everdeen", "id": 72129, "credit_id": "52fe4b7bc3a368484e18b057", "cast_id": 2, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Peeta Mellark", "id": 27972, "credit_id": "52fe4b7bc3a368484e18b05b", "cast_id": 3, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Liam Hemsworth", "character": "Gale Hawthorne", "id": 96066, "credit_id": "52fe4b7bc3a368484e18b05f", "cast_id": 4, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Haymitch Abernathy", "id": 57755, "credit_id": "52fe4b7bc3a368484e18b063", "cast_id": 5, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Donald Sutherland", "character": "President Snow", "id": 55636, "credit_id": "545f744cc3a3680b5d0006ae", "cast_id": 22, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Plutarch Heavensbee", "id": 1233, "credit_id": "52fe4b7bc3a368484e18b07b", "cast_id": 11, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Julianne Moore", "character": "President Alma Coin", "id": 1231, "credit_id": "52fe4b7bc3a368484e18b06f", "cast_id": 8, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 6}, {"name": "Willow Shields", "character": "Primrose Everdeen", "id": 530025, "credit_id": "545f74710e0a264d60002178", "cast_id": 24, "profile_path": "/bKMAnqGbyVeiRBG3im1Y33Vtrgx.jpg", "order": 7}, {"name": "Sam Claflin", "character": "Finnick Odair", "id": 237455, "credit_id": "52fe4b7bc3a368484e18b06b", "cast_id": 7, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 8}, {"name": "Elizabeth Banks", "character": "Effie Trinket", "id": 9281, "credit_id": "545f74100e0a2661770015de", "cast_id": 19, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 9}, {"name": "Mahershalalhashbaz Ali", "character": "Boggs", "id": 932967, "credit_id": "52fe4b7bc3a368484e18b087", "cast_id": 14, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 10}, {"name": "Jena Malone", "character": "Johanna Mason", "id": 20089, "credit_id": "545f74880e0a261fb300924a", "cast_id": 25, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 11}, {"name": "Jeffrey Wright", "character": "Beetee", "id": 2954, "credit_id": "545f74270e0a264d6000216f", "cast_id": 20, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 12}, {"name": "Paula Malcomson", "character": "Katniss' Mother", "id": 47533, "credit_id": "54f8e16392514118ee00008e", "cast_id": 39, "profile_path": "/mqiiy0HXExPYaIczPxWFRDGqhwA.jpg", "order": 13}, {"name": "Stanley Tucci", "character": "Caesar Flickerman", "id": 2283, "credit_id": "545f743cc3a3686e49001e36", "cast_id": 21, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 14}, {"name": "Natalie Dormer", "character": "Cressida", "id": 58502, "credit_id": "545f750b0e0a261fb9009122", "cast_id": 30, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 15}, {"name": "Evan Ross", "character": "Messalla", "id": 94103, "credit_id": "52fe4b7bc3a368484e18b077", "cast_id": 10, "profile_path": "/2qNAI0zGfnsSbEAuzlbZvcij5VF.jpg", "order": 16}, {"name": "Elden Henson", "character": "Pollux", "id": 20220, "credit_id": "52fe4b7bc3a368484e18b07f", "cast_id": 12, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 17}, {"name": "Wes Chatham", "character": "Castor", "id": 51682, "credit_id": "52fe4b7bc3a368484e18b08b", "cast_id": 15, "profile_path": "/nwQdBEKxQ7KhyP1hQvLBZe6AXN2.jpg", "order": 18}, {"name": "Sarita Choudhury", "character": "Egeria", "id": 20275, "credit_id": "54f8e1ca92514118ff0000a6", "cast_id": 40, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 19}, {"name": "Stef Dawson", "character": "Annie Cresta", "id": 1085158, "credit_id": "52fe4b7bc3a368484e18b083", "cast_id": 13, "profile_path": "/jHAd1NwUfl5uYfVj6fi9N1TswDD.jpg", "order": 20}, {"name": "Patina Miller", "character": "Commander Paylor", "id": 1366702, "credit_id": "545f74b70e0a261fb300924d", "cast_id": 26, "profile_path": "/uLGWqDo0r0JdE8JbY7M8tyzG2BH.jpg", "order": 21}, {"name": "Robert Knepper", "character": "Antonius", "id": 17343, "credit_id": "52fe4b7bc3a368484e18b067", "cast_id": 6, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 22}, {"name": "Caitlin Fowler", "character": "D8 Another Patient", "id": 1435440, "credit_id": "54f8e223c3a36843e50000aa", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Jada Taylor", "character": "D8 Female Patient", "id": 1435442, "credit_id": "54f8e24dc3a36843df0000ab", "cast_id": 42, "profile_path": "/k46yfyAyNE9j3q9oVJrlhknX8WY.jpg", "order": 24}, {"name": "Nicholas Pryor", "character": "D8 Male Patient", "id": 13028, "credit_id": "54f8e359c3a36843eb0000b4", "cast_id": 43, "profile_path": "/jqJVM5jEVq2Xqi8G5fO0iiEnd5O.jpg", "order": 25}, {"name": "Donna Biscoe", "character": "D8 Old Woman", "id": 582892, "credit_id": "54f8e389c3a36843f10000c6", "cast_id": 44, "profile_path": "/a8wTPPXmRDEkLKbYGvM6pqnIfXB.jpg", "order": 26}, {"name": "Michael Garza", "character": "Eddy", "id": 1383546, "credit_id": "545f74d9c3a36841d30026f8", "cast_id": 27, "profile_path": "/l83ZOfCHVX1WD0DfZlenKYYtomg.jpg", "order": 27}, {"name": "Erika Bierman", "character": "Snow's Granddaughter", "id": 1383509, "credit_id": "545f74eec3a3680b5d0006c2", "cast_id": 28, "profile_path": "/r5zw8kHfyDTk7zNd5pm2nkKE3CL.jpg", "order": 28}, {"name": "Tyler Lee Allen", "character": "President Snow's Security", "id": 1383549, "credit_id": "545f752d0e0a262359001cb6", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Bill Bennett", "character": "District 13 Engineer", "id": 1435432, "credit_id": "54f8df24c3a36843f5000069", "cast_id": 38, "profile_path": "/zKF8BvSoapHVLgXyCddFZ0gUQdX.jpg", "order": 30}, {"name": "Stephen Mackenzie Brown", "character": "Beetee's Technican", "id": 1383551, "credit_id": "545f75700e0a262359001cc8", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Marshall Choka", "character": "District 13 Citizen", "id": 1383552, "credit_id": "545f75850e0a262359001ccf", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Kirk Crenshaw", "character": "Peace Keeper", "id": 1383548, "credit_id": "545f7500c3a3680b5a000788", "cast_id": 29, "profile_path": null, "order": 33}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "5300bbc39251416ade3196b4", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 7.0, "runtime": 123}, "561": {"poster_path": "/q19U91KJ1yabMmFYSyu5U7SetsP.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230427240, "overview": "Constantine tells the story of John Constantine, a man who has literally been to Hell and back. When he teams up with a policewoman to solve the mysterious suicide of her twin sister, their investigation takes them through the world of demons and angels that exists beneath the landscape of contemporary Los Angeles.", "video": false, "id": 561, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Constantine", "tagline": "Hell Wants Him, Heaven Won't Take Him, Earth Needs Him.", "vote_count": 565, "homepage": "http://constantinemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tl", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0360486", "adult": false, "backdrop_path": "/bGXup8uvaIrp6mLisZ8AJtl6DNA.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "DC Comics", "id": 429}, {"name": "Lonely Film Productions GmbH & Co. KG.", "id": 430}, {"name": "Donners' Company", "id": 431}, {"name": "Branded Entertainment/Batfilm Productions", "id": 432}, {"name": "Weed Road Pictures", "id": 433}, {"name": "3 Art Entertainment", "id": 434}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2005-02-18", "popularity": 0.908985501113746, "original_title": "Constantine", "budget": 100000000, "cast": [{"name": "Keanu Reeves", "character": "John Constantine", "id": 6384, "credit_id": "52fe4252c3a36847f8015399", "cast_id": 25, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Angela Dodson / Isabel Dodson", "id": 3293, "credit_id": "52fe4252c3a36847f801539d", "cast_id": 26, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Shia LaBeouf", "character": "Chas Kramer", "id": 10959, "credit_id": "52fe4252c3a36847f80153a1", "cast_id": 27, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 2}, {"name": "Djimon Hounsou", "character": "Midnite", "id": 938, "credit_id": "52fe4252c3a36847f80153a5", "cast_id": 28, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 3}, {"name": "Max Baker", "character": "Beeman", "id": 10960, "credit_id": "52fe4252c3a36847f80153a9", "cast_id": 29, "profile_path": "/v0JLmmMcCG97Kz7xQ8qpj6tNAGj.jpg", "order": 4}, {"name": "Pruitt Taylor Vince", "character": "Father Hennessy", "id": 3201, "credit_id": "52fe4252c3a36847f80153ad", "cast_id": 30, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 5}, {"name": "Gavin Rossdale", "character": "Balthazar", "id": 10961, "credit_id": "52fe4252c3a36847f80153b1", "cast_id": 31, "profile_path": "/1tgaFlNL7dO9kzJADYtwQJqTeeF.jpg", "order": 6}, {"name": "Tilda Swinton", "character": "Gabriel", "id": 3063, "credit_id": "52fe4252c3a36847f80153b5", "cast_id": 32, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 7}, {"name": "Peter Stormare", "character": "Lucifer", "id": 53, "credit_id": "52fe4252c3a36847f80153b9", "cast_id": 33, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 8}, {"name": "Jesse Ramirez", "character": "Scavenger", "id": 10962, "credit_id": "52fe4252c3a36847f80153bd", "cast_id": 34, "profile_path": "/oJua3xGxJrtUf8W7vaa4Ez9dD2C.jpg", "order": 9}, {"name": "Jos\u00e9 Z\u00fa\u00f1iga", "character": "Detective Weiss", "id": 10963, "credit_id": "52fe4252c3a36847f80153c1", "cast_id": 35, "profile_path": "/8RqlMIr7hDRWkph3wqo9BFmbuDo.jpg", "order": 10}, {"name": "Laz Alonso", "character": "Williams", "id": 10964, "credit_id": "52fe4252c3a36847f80153c5", "cast_id": 36, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 11}, {"name": "April Grace", "character": "Dr. Leslie Archer", "id": 10691, "credit_id": "52fe4252c3a36847f80153c9", "cast_id": 37, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 12}, {"name": "Michelle Monaghan", "character": "Ellie", "id": 11705, "credit_id": "53f7c6420e0a267a690000b5", "cast_id": 40, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 13}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f801530b", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 6.4, "runtime": 121}, "562": {"poster_path": "/rwBUbQ15vIBa6sb1xCBgGXcXCO7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138708852, "overview": "NYPD cop John McClane's plan to reconcile with his estranged wife, Holly, is thrown for a serious loop when minutes after he arrives at her office, the entire building is overtaken by a group of pitiless terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.", "video": false, "id": 562, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Die Hard", "tagline": "40 Stories. Twelve Terrorists. One Cop.", "vote_count": 1890, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0095016", "adult": false, "backdrop_path": "/j31bCZR33MLwgH5IFMcGKjbr3z5.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gordon Company", "id": 1073}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1988-07-14", "popularity": 1.91404511546182, "original_title": "Die Hard", "budget": 28000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe4252c3a36847f801543f", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Alan Rickman", "character": "Hans Gruber", "id": 4566, "credit_id": "52fe4252c3a36847f801545f", "cast_id": 13, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 1}, {"name": "Reginald VelJohnson", "character": "Sgt. Al Powell", "id": 7672, "credit_id": "52fe4252c3a36847f8015443", "cast_id": 6, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 2}, {"name": "Bonnie Bedelia", "character": "Holly Gennero McClane", "id": 7673, "credit_id": "52fe4252c3a36847f8015447", "cast_id": 7, "profile_path": "/u0DOzyTNZhtFgPHIFX5OITMb7wm.jpg", "order": 3}, {"name": "Alexander Godunov", "character": "Karl", "id": 7674, "credit_id": "52fe4252c3a36847f801544b", "cast_id": 8, "profile_path": "/lZyg3u3i2OrJJMKGhHDglln5GUm.jpg", "order": 4}, {"name": "Paul Gleason", "character": "Deputy Police Chief Dwayne T. Robinson", "id": 7675, "credit_id": "52fe4252c3a36847f801544f", "cast_id": 9, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 5}, {"name": "William Atherton", "character": "Richard Thornburg", "id": 7676, "credit_id": "52fe4252c3a36847f8015453", "cast_id": 10, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 6}, {"name": "De'voreaux White", "character": "Argyle", "id": 7677, "credit_id": "52fe4252c3a36847f8015457", "cast_id": 11, "profile_path": "/1EG5K8vovv6Hp9XvUplPDlJFPNz.jpg", "order": 7}, {"name": "Hart Bochner", "character": "Harry Ellis", "id": 7678, "credit_id": "52fe4252c3a36847f801545b", "cast_id": 12, "profile_path": "/jZcZHV9cac6rf0Q7nWOPSapqAwc.jpg", "order": 8}, {"name": "Dennis Hayden", "character": "Eddie", "id": 7679, "credit_id": "52fe4252c3a36847f8015463", "cast_id": 14, "profile_path": "/at1krMDognbGU9g2NmDYPbmEiea.jpg", "order": 9}, {"name": "James Shigeta", "character": "Joseph Yoshinobu Takagi", "id": 4995, "credit_id": "52fe4252c3a36847f8015467", "cast_id": 15, "profile_path": "/rBqmvcdbuMU7NCOxqmfjSxZfDsh.jpg", "order": 10}, {"name": "Robert Davi", "character": "FBI Special Agent Johnson", "id": 2055, "credit_id": "52fe4253c3a36847f80154b9", "cast_id": 29, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 11}, {"name": "Bob Jennings", "character": "Cameraman", "id": 113506, "credit_id": "52fe4253c3a36847f80154bd", "cast_id": 30, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 12}, {"name": "Grand L. Bush", "character": "FBI Agent Little Johnson", "id": 14333, "credit_id": "52fe4253c3a36847f80154c1", "cast_id": 31, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 13}, {"name": "Mary Ellen Trainor", "character": "Gail Wallens", "id": 23967, "credit_id": "52fe4253c3a36847f80154c5", "cast_id": 32, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 14}, {"name": "Andreas Wisniewski", "character": "Tony", "id": 10673, "credit_id": "52fe4253c3a36847f80154c9", "cast_id": 33, "profile_path": "/uZwfBgn0GBfmfjbxA69GDXctN5W.jpg", "order": 15}, {"name": "Al Leong", "character": "Uli", "id": 61704, "credit_id": "52fe4253c3a36847f80154cd", "cast_id": 34, "profile_path": "/9f8m0g6BgdwfQfS6ewhDOrW4kzs.jpg", "order": 16}, {"name": "Clarence Gilyard Jr.", "character": "Theo", "id": 51581, "credit_id": "52fe4253c3a36847f80154d1", "cast_id": 36, "profile_path": "/nmDObJEti5drH4dheZw2Pz3QOsV.jpg", "order": 17}, {"name": "Lorenzo Caccialanza", "character": "Marco", "id": 1217001, "credit_id": "52fe4253c3a36847f80154d5", "cast_id": 37, "profile_path": "/8R2HOMyov4Ck7roKf05TvuUWbc3.jpg", "order": 18}, {"name": "Hans Buhringer", "character": "Fritz", "id": 1290983, "credit_id": "52fe4253c3a36847f80154d9", "cast_id": 39, "profile_path": "/r12yCpbNuF0gChVlWYmoeaiDY4N.jpg", "order": 19}, {"name": "Anthony Peck", "character": "Young Cop", "id": 141747, "credit_id": "52fe4253c3a36847f80154dd", "cast_id": 40, "profile_path": "/57e2de2WH5jFm6AJYNTSSjGymtS.jpg", "order": 20}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f8015429", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 7.0, "runtime": 131}, "563": {"poster_path": "/zeCD9WkhABFJmPq3SlTozXJGEtr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 121214377, "overview": "Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as \"the Bugs\".", "video": false, "id": 563, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Starship Troopers", "tagline": "The only good bug is a dead bug.", "vote_count": 413, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hwZXCuY6GVw50o17nDGbSR8WMFJ.jpg", "poster_path": "/cR5f2lzNwleNec2YHJsmN48jZDx.jpg", "id": 10522, "name": "Starship Troopers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120201", "adult": false, "backdrop_path": "/cYWI1lnHEvoVKDdlrRt2b5et3Bj.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "TriStar Pictures", "id": 559}, {"name": "Big Bug Pictures", "id": 23434}], "release_date": "1997-11-06", "popularity": 1.39951744829894, "original_title": "Starship Troopers", "budget": 105000000, "cast": [{"name": "Casper Van Dien", "character": "Johnny Rico", "id": 27763, "credit_id": "52fe4253c3a36847f80155a5", "cast_id": 21, "profile_path": "/ktJIgsilxxQeOvA9I789veHnDnt.jpg", "order": 0}, {"name": "Dina Meyer", "character": "Dizzy Flores", "id": 2133, "credit_id": "52fe4253c3a36847f80155a9", "cast_id": 22, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 1}, {"name": "Denise Richards", "character": "Carmen Ibanez", "id": 9205, "credit_id": "52fe4253c3a36847f80155ad", "cast_id": 23, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 2}, {"name": "Jake Busey", "character": "Private Ace Levy", "id": 28410, "credit_id": "52fe4253c3a36847f80155b1", "cast_id": 24, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 3}, {"name": "Neil Patrick Harris", "character": "Colonel Carl Jenkins", "id": 41686, "credit_id": "52fe4253c3a36847f80155b5", "cast_id": 25, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Career Sergeant Zim", "id": 6574, "credit_id": "52fe4253c3a36847f80155b9", "cast_id": 26, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Michael Ironside", "character": "Lieutenant Jean Rasczak", "id": 11086, "credit_id": "52fe4253c3a36847f80155bd", "cast_id": 27, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 6}, {"name": "Patrick Muldoon", "character": "Zander Barcalow", "id": 41687, "credit_id": "52fe4253c3a36847f80155c1", "cast_id": 28, "profile_path": "/bQXk6dGI2zjRY2rvfwmpdHpyh9F.jpg", "order": 7}, {"name": "Seth Gilliam", "character": "Private Sugar Watkins", "id": 41688, "credit_id": "52fe4253c3a36847f80155c5", "cast_id": 29, "profile_path": "/5XL7Nuzt58wXijlFbDJKDWYoLFQ.jpg", "order": 8}, {"name": "Rue McClanahan", "character": "Biology Teacher", "id": 41689, "credit_id": "52fe4253c3a36847f80155c9", "cast_id": 30, "profile_path": "/cCZk8LXWcYs1UD9wHGHOktxyy8t.jpg", "order": 9}, {"name": "Blake Lindsley", "character": "Katrina McIntire", "id": 41690, "credit_id": "52fe4253c3a36847f80155cd", "cast_id": 31, "profile_path": "/jW9esvFejQSyjyZZMqUg4xcbsww.jpg", "order": 10}, {"name": "Steven Ford", "character": "Lieutenant Willy", "id": 9258, "credit_id": "52fe4253c3a36847f80155d1", "cast_id": 32, "profile_path": "/iw8CUyekmYkGwmg0bp7foY4KvrH.jpg", "order": 11}, {"name": "Ungela Brockman", "character": "Corporal Birdie", "id": 41691, "credit_id": "52fe4253c3a36847f80155d5", "cast_id": 33, "profile_path": "/q66RPSSUYmtgbLNvkdKdeqAbOwc.jpg", "order": 12}, {"name": "Bruce Gray", "character": "Sky Marshal Dienes", "id": 5945, "credit_id": "52fe4253c3a36847f80155d9", "cast_id": 34, "profile_path": "/z0uEl3in5hsCD4TYTBqCtmqCdwo.jpg", "order": 13}, {"name": "Denise Dowse", "character": "Sky Marshal Tehat Meru", "id": 23970, "credit_id": "52fe4253c3a36847f80155dd", "cast_id": 35, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 14}, {"name": "Amy Smart", "character": "Cadet Lumbreiser", "id": 20189, "credit_id": "52fe4253c3a36847f80155e1", "cast_id": 36, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 15}, {"name": "Tami-Adrian George", "character": "Djana'D", "id": 153940, "credit_id": "52fe4253c3a36847f80155e5", "cast_id": 37, "profile_path": "/qR7qZTZOo9czpb1lrOirKOS6M9V.jpg", "order": 16}, {"name": "Julianna McCarthy", "character": "Expert", "id": 101777, "credit_id": "54c91305c3a36870ba00218f", "cast_id": 39, "profile_path": "/tJJJJUjXRlTgLxVZViQ2MPPs5ai.jpg", "order": 17}, {"name": "Dale Dye", "character": "General", "id": 3211, "credit_id": "54c9135d92514157cc0023a2", "cast_id": 40, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 18}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f801552f", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.5, "runtime": 129}, "564": {"poster_path": "/cftmDzVCWKynKMfY9oyFj7igFqJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415885488, "overview": "Dashing legionnaire Rick O'Connell and Beni, his weasel of a companion, stumble upon the hidden ruins of Hamunaptra while in the midst of a battle in 1923, 3,000 years after Imhotep has suffered a fate worse than death; his body will remain undead for all eternity as a punishment for a forbidden love.", "video": false, "id": 564, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Mummy", "tagline": "The legend you know. The adventure you have yet to imagine.", "vote_count": 946, "homepage": "http://www.mummyvideo.com/", "belongs_to_collection": {"backdrop_path": "/3nNvwRGWurR5O3a8k3U13hiqs6y.jpg", "poster_path": "/jKVaPlvPfsmekiOaFqCKuGwle5M.jpg", "id": 1733, "name": "The Mummy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0120616", "adult": false, "backdrop_path": "/7rz4sMD7Ku0E4KIqYezxoiSzTMj.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alphaville Films", "id": 11462}], "release_date": "1999-05-06", "popularity": 1.57715798214967, "original_title": "The Mummy", "budget": 80000000, "cast": [{"name": "Brendan Fraser", "character": "Richard O'Connell", "id": 18269, "credit_id": "52fe4253c3a36847f80156a9", "cast_id": 19, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Evelyn Carnahan", "id": 3293, "credit_id": "52fe4253c3a36847f80156ad", "cast_id": 20, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "John Hannah", "character": "Jonathan Carnahan", "id": 10727, "credit_id": "52fe4253c3a36847f80156b1", "cast_id": 21, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 2}, {"name": "Arnold Vosloo", "character": "High Priest Imhotep", "id": 16743, "credit_id": "52fe4253c3a36847f80156b5", "cast_id": 22, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 3}, {"name": "Kevin J. O'Connor", "character": "Beni Gabor", "id": 18916, "credit_id": "52fe4253c3a36847f80156b9", "cast_id": 23, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 4}, {"name": "Oded Fehr", "character": "Ardeth Bay", "id": 18041, "credit_id": "52fe4253c3a36847f80156bd", "cast_id": 24, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 5}, {"name": "Jonathan Hyde", "character": "Dr. Allen Chamberlain", "id": 8537, "credit_id": "52fe4253c3a36847f80156c1", "cast_id": 25, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 6}, {"name": "Erick Avari", "character": "Dr. Terrence Bey", "id": 18917, "credit_id": "52fe4253c3a36847f80156c5", "cast_id": 26, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 7}, {"name": "Bernard Fox", "character": "Captain Winston Havlock", "id": 8545, "credit_id": "52fe4253c3a36847f80156c9", "cast_id": 27, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 8}, {"name": "Patricia Vel\u00e1squez", "character": "Anck-Su Namun", "id": 18920, "credit_id": "52fe4253c3a36847f80156cd", "cast_id": 28, "profile_path": "/dRD0tYxrtxPZ11mJCN0O3nLd1Mx.jpg", "order": 9}, {"name": "Stephen Dunham", "character": "Mr. Henderson", "id": 36803, "credit_id": "52fe4253c3a36847f80156d7", "cast_id": 30, "profile_path": "/6xzvLVJLXKgT7oaGoB448WNml9G.jpg", "order": 10}, {"name": "Corey Johnson", "character": "Mr. Daniels", "id": 17199, "credit_id": "52fe4253c3a36847f80156db", "cast_id": 31, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 11}, {"name": "Tuc Watkins", "character": "Mr. Burns", "id": 157942, "credit_id": "52fe4253c3a36847f80156df", "cast_id": 32, "profile_path": "/Av09pU4RA6hpDd0qyLUf6x45xTm.jpg", "order": 12}, {"name": "Omid Djalili", "character": "Warden Gad Hassan", "id": 41379, "credit_id": "52fe4253c3a36847f80156e3", "cast_id": 33, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 13}, {"name": "Aharon Ipal\u00e9", "character": "Pharaoh Seti I", "id": 25808, "credit_id": "52fe4253c3a36847f80156e7", "cast_id": 34, "profile_path": "/9Qb7EXmGOAntmK0hMocOvT57Txi.jpg", "order": 14}, {"name": "Carl Chase", "character": "Hook", "id": 127166, "credit_id": "52fe4253c3a36847f80156eb", "cast_id": 35, "profile_path": "/3HLdJB6ZQNi3DK4Ix9FXZ0a67K8.jpg", "order": 15}, {"name": "Mohammed Afifi", "character": "Hangman", "id": 947663, "credit_id": "52fe4253c3a36847f80156ef", "cast_id": 36, "profile_path": "/4sXZav94nT81KUjISX6tyokKmR6.jpg", "order": 16}, {"name": "Abderrahim El Aadili", "character": "Camel Trader", "id": 1077867, "credit_id": "52fe4253c3a36847f80156f3", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Jake Arnott", "character": "Mummy", "id": 1077868, "credit_id": "52fe4253c3a36847f80156f7", "cast_id": 38, "profile_path": "/qQ7AxYOWwGu4iWD7E1vgoDuIXbJ.jpg", "order": 18}, {"name": "Mason Ball", "character": "Mummy", "id": 947511, "credit_id": "52fe4253c3a36847f80156fb", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Isobel Brook", "character": "Mummy", "id": 1077869, "credit_id": "52fe4253c3a36847f80156ff", "cast_id": 40, "profile_path": "/2wreHWDHg9EZyL6QcqSeXpvIkrE.jpg", "order": 20}, {"name": "James Traherne Burton", "character": "Mummy", "id": 1077870, "credit_id": "52fe4253c3a36847f8015703", "cast_id": 41, "profile_path": "/6bAGK8slzTHSip8xYcdS6TkH5vb.jpg", "order": 21}, {"name": "Peter Chequer", "character": "Mummy", "id": 1077871, "credit_id": "52fe4253c3a36847f8015707", "cast_id": 42, "profile_path": "/10pL0nR0ncjwdeJpN5U1XxVuucu.jpg", "order": 22}, {"name": "Porl Smith", "character": "Mummy", "id": 1077872, "credit_id": "52fe4253c3a36847f801570b", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Ian Warner", "character": "Mummy", "id": 1077873, "credit_id": "52fe4253c3a36847f801570f", "cast_id": 44, "profile_path": null, "order": 24}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f8015645", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 6.1, "runtime": 124}, "565": {"poster_path": "/zMVpi0ohdlZw6st07SAbHYu7b9W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 249348933, "overview": "It sounded like just another urban legend: A videotape filled with nightmarish images, leading to a phone call foretelling the viewer's death in exactly seven days. As a newspaper reporter, Rachel Keller was naturally skeptical of the story, until four teenagers all met with mysterious deaths exactly one week after watching just such a tape. Allowing her investigative curiosity to get the better of her, Rachel tracks down the video... and watches it. Now she has just seven days to unravel the mystery of the Ring.", "video": false, "id": 565, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Ring", "tagline": "Before you die, you see.", "vote_count": 306, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/xk4Yrpz00gxitMLCLCUVOjvmkOq.jpg", "id": 14563, "name": "The Ring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298130", "adult": false, "backdrop_path": "/gRQucG6XnNgSQn863V5ho50J3hx.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "MacDonald/Parkes Productions", "id": 384}, {"name": "BenderSpink", "id": 6363}], "release_date": "2002-10-18", "popularity": 0.794185415656657, "original_title": "The Ring", "budget": 45000000, "cast": [{"name": "Naomi Watts", "character": "Rachel Keller", "id": 3489, "credit_id": "52fe4253c3a36847f801577f", "cast_id": 10, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Martin Henderson", "character": "Noah Clay", "id": 26291, "credit_id": "52fe4253c3a36847f8015783", "cast_id": 11, "profile_path": "/tWuEwdM7TnM9KenYbRKLSFbo3zx.jpg", "order": 1}, {"name": "David Dorfman", "character": "Aidan Keller", "id": 26292, "credit_id": "52fe4253c3a36847f8015787", "cast_id": 12, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 2}, {"name": "Brian Cox", "character": "Richard Morgan", "id": 1248, "credit_id": "52fe4253c3a36847f801578b", "cast_id": 13, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Shannon Cochran", "character": "Anna Morgan", "id": 2525, "credit_id": "52fe4253c3a36847f801578f", "cast_id": 14, "profile_path": "/x74NDVVXVPxNH5018UyIOEwhLgd.jpg", "order": 4}, {"name": "Daveigh Chase", "character": "Samara Morgan", "id": 1580, "credit_id": "52fe4253c3a36847f8015793", "cast_id": 15, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 5}, {"name": "Rachael Bella", "character": "Rebecca Kotler", "id": 26293, "credit_id": "52fe4253c3a36847f8015797", "cast_id": 16, "profile_path": "/huoBCMuoxr3Ha31Ch53csvK5iN2.jpg", "order": 6}, {"name": "Jane Alexander", "character": "Dr. Grasnik", "id": 13724, "credit_id": "52fe4253c3a36847f801579b", "cast_id": 17, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 7}, {"name": "Lindsay Frost", "character": "Ruth Embry", "id": 26294, "credit_id": "52fe4253c3a36847f801579f", "cast_id": 18, "profile_path": "/2TOoIVvS74g05wgj9MzgzLMtJOU.jpg", "order": 8}, {"name": "Amber Tamblyn", "character": "Katie Embry", "id": 20354, "credit_id": "52fe4253c3a36847f80157a3", "cast_id": 19, "profile_path": "/4nwsbtFzoxzN2YF2HOW4P4vdit2.jpg", "order": 9}, {"name": "Sandra Thigpen", "character": "Teacher", "id": 26295, "credit_id": "52fe4253c3a36847f80157a7", "cast_id": 20, "profile_path": "/9d3fCsokFR2emalElHYxTaUk27Y.jpg", "order": 10}, {"name": "Richard Lineback", "character": "Innkeeper", "id": 3205, "credit_id": "52fe4253c3a36847f80157ab", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Sara Rue", "character": "Babysitter", "id": 10131, "credit_id": "52fe4253c3a36847f80157af", "cast_id": 22, "profile_path": "/1OlEg9M8oSsGivjyFJJFyCkKqkk.jpg", "order": 12}, {"name": "Adam Brody", "character": "Male Teen #1", "id": 11702, "credit_id": "52fe4253c3a36847f80157b3", "cast_id": 23, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 13}, {"name": "Keith Campbell", "character": "Ship's Mate", "id": 15318, "credit_id": "53b9567cc3a3685eb400557f", "cast_id": 26, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 14}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f801574b", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.3, "runtime": 115}, "567": {"poster_path": "/6EDhk01fESTcdfRAvIHct4jfWk5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26105286, "overview": "Professional photographer L.B. \"Jeff\" Jeffries breaks his leg while getting an action shot at an auto race. Confined to his New York apartment, he spends his time looking out of the rear window observing the neighbors. He begins to suspect that a man across the courtyard may have murdered his wife. Jeff enlists the help of his high society fashion-consultant girlfriend Lisa Freemont and his visiting nurse Stella to investigate.", "video": false, "id": 567, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Rear Window", "tagline": "It only takes one witness to spoil the perfect crime.", "vote_count": 399, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0047396", "adult": false, "backdrop_path": "/mLhoF9Xgv8lC9YQzAkKuTQL29mt.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1954-08-04", "popularity": 1.67158368999091, "original_title": "Rear Window", "budget": 1000000, "cast": [{"name": "James Stewart", "character": "L. B. Jefferies", "id": 854, "credit_id": "52fe4253c3a36847f8015805", "cast_id": 3, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "Grace Kelly", "character": "Lisa Carol Fremont", "id": 4070, "credit_id": "52fe4253c3a36847f8015801", "cast_id": 2, "profile_path": "/2dNjXRNbhOmovybmr5iCdAhqdwl.jpg", "order": 1}, {"name": "Wendell Corey", "character": "Det. Lt. Thomas J. Doyle", "id": 7683, "credit_id": "52fe4253c3a36847f8015809", "cast_id": 4, "profile_path": "/uQ7NEKJjC6Wj00V2CoYMbCvRcSn.jpg", "order": 2}, {"name": "Thelma Ritter", "character": "Stella", "id": 7684, "credit_id": "52fe4253c3a36847f801580d", "cast_id": 5, "profile_path": "/8BUegatD1XFW0MLyOzuVpNr4P2b.jpg", "order": 3}, {"name": "Raymond Burr", "character": "Lars Thorwald", "id": 7685, "credit_id": "52fe4253c3a36847f8015811", "cast_id": 6, "profile_path": "/mHdPfgQRXvM2bz1dpSonzGpTKLu.jpg", "order": 4}, {"name": "Judith Evelyn", "character": "Miss Lonelyheart", "id": 7686, "credit_id": "52fe4253c3a36847f8015815", "cast_id": 7, "profile_path": "/vAVwSrgAhUKUNSjJiMOnA0RjMxu.jpg", "order": 5}, {"name": "Ross Bagdasarian, Sr.", "character": "Songwriter", "id": 49906, "credit_id": "52fe4253c3a36847f801586d", "cast_id": 23, "profile_path": "/qAkfHf4i1eyk6GZ4YQxbCPW6NPE.jpg", "order": 6}, {"name": "Georgine Darcy", "character": "Miss Torso", "id": 161738, "credit_id": "52fe4253c3a36847f8015871", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Sara Berner", "character": "Woman on Fire Escape", "id": 121038, "credit_id": "52fe4253c3a36847f8015875", "cast_id": 25, "profile_path": "/s28Dra8EbemuoILdvm04r223fzg.jpg", "order": 8}, {"name": "Frank Cady", "character": "Man on Fire Escape", "id": 93622, "credit_id": "52fe4253c3a36847f8015879", "cast_id": 26, "profile_path": "/lBmD8i4eCtIDon40go730e6xQcF.jpg", "order": 9}, {"name": "Jesslyn Fax", "character": "Miss Hearing Aid", "id": 85846, "credit_id": "52fe4253c3a36847f801587d", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Rand Harper", "character": "Newlywed", "id": 184636, "credit_id": "52fe4253c3a36847f8015881", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Irene Winston", "character": "Mrs. Emma Thorwald", "id": 130373, "credit_id": "52fe4253c3a36847f8015885", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Havis Davenport", "character": "Newlywed", "id": 176534, "credit_id": "52fe4253c3a36847f8015889", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Bess Flowers", "character": "Songwriter's Party Guest with Poodle (uncredited)", "id": 121323, "credit_id": "52fe4253c3a36847f8015893", "cast_id": 32, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 14}, {"name": "Kathryn Grant", "character": "Girl at Songwriter's Party (uncredited)", "id": 861, "credit_id": "52fe4253c3a36847f8015897", "cast_id": 33, "profile_path": "/lJXrVvijSSeXwZXS6f01vGqcXaO.jpg", "order": 15}, {"name": "Alfred Hitchcock", "character": "Clock-Winder in Songwriter's Apartment (uncredited)", "id": 2636, "credit_id": "52fe4253c3a36847f801589b", "cast_id": 34, "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "order": 16}, {"name": "Anthony Warde", "character": "Detective (uncredited)", "id": 33777, "credit_id": "531e763c9251417a4a0013f2", "cast_id": 35, "profile_path": "/qhMPMAPCujd6wstyDhTj2UN6ZPh.jpg", "order": 17}, {"name": "Gig Young", "character": "Jeff's Editor (voice) (uncredited)", "id": 70985, "credit_id": "531e765392514177c2007e09", "cast_id": 36, "profile_path": "/yIY38f58095uVpdfoJpbfwQp3gT.jpg", "order": 18}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f80157fd", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.6, "runtime": 112}, "568": {"poster_path": "/6JQ9z3V9x4vlU2GSZx2yNO0PvuX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 355237933, "overview": "Technical troubles scuttle the Apollo 13 lunar mission in 1971, risking the lives of astronaut Jim Lovell and his crew in director Ron Howard's chronicle of this true-life story, which turns a failed journey into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.", "video": false, "id": 568, "genres": [{"id": 18, "name": "Drama"}], "title": "Apollo 13", "tagline": "Houston, we have a problem.", "vote_count": 493, "homepage": "http://www.universalstudiosentertainment.com/apollo-13/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112384", "adult": false, "backdrop_path": "/dvpU3CJxKCfr1XBOzeMcztgDyO3.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}], "release_date": "1995-06-30", "popularity": 1.40126066343209, "original_title": "Apollo 13", "budget": 52000000, "cast": [{"name": "Tom Hanks", "character": "Jim Lovell", "id": 31, "credit_id": "52fe4253c3a36847f801595d", "cast_id": 19, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Fred Haise", "id": 2053, "credit_id": "52fe4253c3a36847f8015973", "cast_id": 23, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Jack Swigert", "id": 4724, "credit_id": "52fe4253c3a36847f8015977", "cast_id": 24, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Gary Sinise", "character": "Ken Mattingly", "id": 33, "credit_id": "52fe4253c3a36847f801597b", "cast_id": 25, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 3}, {"name": "Ed Harris", "character": "Gene Kranz", "id": 228, "credit_id": "52fe4253c3a36847f801597f", "cast_id": 26, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 4}, {"name": "Kathleen Quinlan", "character": "Marilyn Lovell", "id": 8183, "credit_id": "52fe4253c3a36847f8015989", "cast_id": 28, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 5}, {"name": "Mary Kate Schellhardt", "character": "Barbara Lovell", "id": 8184, "credit_id": "52fe4253c3a36847f801598d", "cast_id": 29, "profile_path": "/nN54NVsxm5M6yhdQlSECm2y5vxK.jpg", "order": 6}, {"name": "Emily Ann Lloyd", "character": "Susan Lovell", "id": 8185, "credit_id": "52fe4253c3a36847f8015991", "cast_id": 30, "profile_path": "/sVCzK014On8aaQNZsRl6vDgbaII.jpg", "order": 7}, {"name": "Miko Hughes", "character": "Jeffrey Lovell", "id": 8186, "credit_id": "52fe4253c3a36847f8015995", "cast_id": 31, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 8}, {"name": "Max Elliott Slade", "character": "Jay Lovell", "id": 8187, "credit_id": "52fe4253c3a36847f8015999", "cast_id": 32, "profile_path": "/g06RM2IWsiw6rvKA6SNsceFsHu5.jpg", "order": 9}, {"name": "Jean Speegle Howard", "character": "Blanch Lovell", "id": 8188, "credit_id": "52fe4254c3a36847f801599d", "cast_id": 33, "profile_path": "/6GxAKydN0p77XI0ixTAJeWFPiRR.jpg", "order": 10}, {"name": "Tracy Reiner", "character": "Mary Haise", "id": 8189, "credit_id": "52fe4254c3a36847f80159a1", "cast_id": 34, "profile_path": "/fsmETZI9aoKZD1CvYlcaTsstuZ9.jpg", "order": 11}, {"name": "David Andrews", "character": "Pete Conrad", "id": 7219, "credit_id": "52fe4254c3a36847f80159a5", "cast_id": 35, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 12}, {"name": "Michele Little", "character": "Jane Conrad", "id": 8190, "credit_id": "52fe4254c3a36847f80159a9", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Chris Ellis", "character": "Deke Slayton", "id": 8191, "credit_id": "52fe4254c3a36847f80159ad", "cast_id": 37, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 14}, {"name": "Joe Spano", "character": "NASA Director", "id": 8192, "credit_id": "52fe4254c3a36847f80159b1", "cast_id": 38, "profile_path": "/ApY9rdhS1Qrvd0byprtlMxMAQ1q.jpg", "order": 15}, {"name": "Xander Berkeley", "character": "Henry Hurt", "id": 3982, "credit_id": "52fe4254c3a36847f80159b5", "cast_id": 39, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 16}, {"name": "Roger Corman", "character": "Congressman", "id": 102429, "credit_id": "52fe4254c3a36847f80159b9", "cast_id": 40, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 17}, {"name": "Andrew Lipschultz", "character": "Launch Director", "id": 1400384, "credit_id": "54916b4f925141473700149c", "cast_id": 73, "profile_path": null, "order": 18}, {"name": "Mark Wheeler", "character": "Neil Armstrong", "id": 152718, "credit_id": "54916b7d925141473b001474", "cast_id": 74, "profile_path": "/5Sx48iaEVE5G4OktUcZ1sJHePeE.jpg", "order": 19}, {"name": "Endre Hules", "character": "Guenter Wendt", "id": 43461, "credit_id": "54916baec3a368465e001448", "cast_id": 75, "profile_path": "/cmxqIcfikG6rr5ag45ZkhYMP51Z.jpg", "order": 20}, {"name": "Clint Howard", "character": "Sy Liebergot - EECOM White", "id": 15661, "credit_id": "552b0c7cc3a36858d600466b", "cast_id": 76, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 21}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4253c3a36847f80158f3", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.8, "runtime": 140}, "571": {"poster_path": "/idm9MYIyZHcjdPsaGfiqE9z2Z99.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11403529, "overview": "Chic socialite Melanie Daniels enjoys a passing flirtation with an eligible attorney in a San Francisco pet shop and, on an impulse, follows him to his hometown bearing a gift of lovebirds. But upon her arrival, the bird population runs amok. Suddenly, the townsfolk face a massive avian onslaught, with the feathered fiends inexplicably attacking people all over Bodega Bay.", "video": false, "id": 571, "genres": [{"id": 27, "name": "Horror"}], "title": "The Birds", "tagline": "...and remember, the next scream you hear may be your own!", "vote_count": 170, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056869", "adult": false, "backdrop_path": "/oHrTL0iTwLJMKbx2T3R5L5DPSyz.jpg", "production_companies": [{"name": "Alfred J. Hitchcock Productions", "id": 10715}], "release_date": "1963-03-28", "popularity": 0.816887560168427, "original_title": "The Birds", "budget": 2500000, "cast": [{"name": "Rod Taylor", "character": "Mitch Brenner", "id": 8229, "credit_id": "52fe4254c3a36847f8015a63", "cast_id": 1, "profile_path": "/nCSU0Teu87l0Hep7CVTWbyHqPAX.jpg", "order": 0}, {"name": "Tippi Hedren", "character": "Melanie Daniels", "id": 6929, "credit_id": "52fe4254c3a36847f8015a67", "cast_id": 2, "profile_path": "/5piyjLaNRESJZ2Q8comMEjXqZBW.jpg", "order": 1}, {"name": "Suzanne Pleshette", "character": "Annie Hayworth", "id": 8231, "credit_id": "52fe4254c3a36847f8015a6b", "cast_id": 3, "profile_path": "/9KdhSa4QpLQgD1cwXmjoz60bgHo.jpg", "order": 2}, {"name": "Veronica Cartwright", "character": "Cathy Brenner", "id": 5047, "credit_id": "52fe4254c3a36847f8015a6f", "cast_id": 4, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 3}, {"name": "Ethel Griffies", "character": "Mrs. Bundy", "id": 8232, "credit_id": "52fe4254c3a36847f8015a73", "cast_id": 5, "profile_path": "/m3pXmGCIlccqKUi9ERM1aiBNhTw.jpg", "order": 4}, {"name": "Charles McGraw", "character": "Sebastian Sholes", "id": 8233, "credit_id": "52fe4254c3a36847f8015a77", "cast_id": 6, "profile_path": "/m6jBxQ3ZnePMBtCEy3eTu168kg3.jpg", "order": 5}, {"name": "Jessica Tandy", "character": "Lydia Brenner", "id": 5698, "credit_id": "52fe4254c3a36847f8015abd", "cast_id": 20, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 6}, {"name": "Doreen Lang", "character": "Hysterical Mother in Diner", "id": 2745, "credit_id": "52fe4254c3a36847f8015ac1", "cast_id": 21, "profile_path": "/1t2LDiPbR4FHdEoCRgQnqDmV1Jv.jpg", "order": 7}, {"name": "Ruth McDevitt", "character": "Mrs. MacGruder", "id": 85833, "credit_id": "52fe4254c3a36847f8015ac5", "cast_id": 22, "profile_path": "/uVyrE8fO7k9ub2zCqpm6Sbk56N3.jpg", "order": 8}, {"name": "Joe Mantell", "character": "Traveling salesman in diner", "id": 78937, "credit_id": "52fe4254c3a36847f8015acf", "cast_id": 24, "profile_path": "/5yDIgBi2dYc7PdTcAcmSLeSg4t1.jpg", "order": 9}, {"name": "Karl Swenson", "character": "Drunken doomsayer in diner", "id": 12158, "credit_id": "52fe4254c3a36847f8015ad3", "cast_id": 25, "profile_path": "/yyeaz3ruAZbyPWame4CZW49GSHe.jpg", "order": 10}, {"name": "Elizabeth Wilson", "character": "Waitress in diner", "id": 10776, "credit_id": "52fe4254c3a36847f8015ad7", "cast_id": 26, "profile_path": "/tXmYFqRiQjuiXgnzBpdzRexROAd.jpg", "order": 11}, {"name": "Richard Deacon", "character": "Man in hotel corridor", "id": 80206, "credit_id": "52fe4254c3a36847f8015adb", "cast_id": 27, "profile_path": "/yLGNyJqX3JuaUHcJ7O1rJi2C1hJ.jpg", "order": 12}, {"name": "Malcolm Atterbury", "character": "Deputy Al Malone", "id": 115460, "credit_id": "52fe4254c3a36847f8015adf", "cast_id": 28, "profile_path": "/A5bi0v9WuSt1Y6KyUnHvq6XKNHk.jpg", "order": 13}, {"name": "Lonny Chapman", "character": "Diner owner", "id": 95598, "credit_id": "52fe4254c3a36847f8015ae3", "cast_id": 29, "profile_path": "/pEhqjNb17zbPavYrY49gVhOis4E.jpg", "order": 14}, {"name": "Doodles Weaver", "character": "Fisherman Helping with Rental Boat", "id": 89735, "credit_id": "52fe4254c3a36847f8015ae7", "cast_id": 30, "profile_path": "/vjH6hkLtRzT43jLn7mekXBBoqgQ.jpg", "order": 15}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4254c3a36847f8015a89", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 6.9, "runtime": 119}, "8764": {"poster_path": "/y8KpysyZkuezkuQlO4XZILgUrON.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20458340, "overview": "Parody of WWII spy movies in which an American rock and roll singer becomes involved in a Resistance plot to rescue a scientist imprisoned in East Germany.", "video": false, "id": 8764, "genres": [{"id": 35, "name": "Comedy"}], "title": "Top Secret!", "tagline": "Don't tell anyone.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "yi", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0088286", "adult": false, "backdrop_path": "/ri1pEbtwOBYFxT1UXb30z47LVwe.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1984-06-08", "popularity": 0.1877332683849, "original_title": "Top Secret!", "budget": 9000000, "cast": [{"name": "Val Kilmer", "character": "Nick Rivers", "id": 5576, "credit_id": "52fe44b7c3a36847f80a61b7", "cast_id": 12, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Lucy Gutteridge", "character": "Hillary Flammond", "id": 55907, "credit_id": "52fe44b7c3a36847f80a61bb", "cast_id": 13, "profile_path": null, "order": 1}, {"name": "Peter Cushing", "character": "Buchh\u00e4ndler", "id": 5, "credit_id": "52fe44b7c3a36847f80a61bf", "cast_id": 14, "profile_path": "/iFE9Xi5B0eZcNFqvCx78UUzmUfI.jpg", "order": 2}, {"name": "Jeremy Kemp", "character": "General Streck", "id": 55037, "credit_id": "52fe44b7c3a36847f80a61c3", "cast_id": 15, "profile_path": "/xwayYkSd6Ld0fVioBWfRJ4BpgR6.jpg", "order": 3}, {"name": "Christopher Villiers", "character": "Rebellenf\u00fchrer", "id": 34720, "credit_id": "52fe44b7c3a36847f80a61c7", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Warren Clarke", "character": "Colonel von Horst", "id": 2268, "credit_id": "52fe44b7c3a36847f80a61cb", "cast_id": 17, "profile_path": "/baucXNIzHXSMxIZfsKzr8P0xiXI.jpg", "order": 5}, {"name": "Harry Ditson", "character": "Du Quois", "id": 55908, "credit_id": "52fe44b7c3a36847f80a61cf", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Jim Carter", "character": "D\u00e9j\u00e0 Vu", "id": 20070, "credit_id": "52fe44b7c3a36847f80a61d3", "cast_id": 19, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 7}, {"name": "Eddie Tagoe", "character": "Chocolate Mousse", "id": 55909, "credit_id": "52fe44b7c3a36847f80a61d7", "cast_id": 20, "profile_path": "/1J9ujNEgWVupIxTJ8NouIRbblvn.jpg", "order": 8}, {"name": "Omar Sharif", "character": "Agent Cedric", "id": 5004, "credit_id": "52fe44b7c3a36847f80a61db", "cast_id": 21, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 9}, {"name": "Tristram Jellinek", "character": "Major Crumpler", "id": 55910, "credit_id": "52fe44b7c3a36847f80a61df", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Billy J. Mitchell", "character": "Martin, Nicks Manager", "id": 55911, "credit_id": "52fe44b7c3a36847f80a61e3", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Ian McNeice", "character": "Blinder Andenkenverk\u00e4ufer", "id": 3547, "credit_id": "52fe44b7c3a36847f80a61e7", "cast_id": 24, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 12}, {"name": "Michael Gough", "character": "Dr. Paul Flammond", "id": 3796, "credit_id": "5487771c9251416b910001bb", "cast_id": 28, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 13}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe44b7c3a36847f80a6177", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}, {"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe44b7c3a36847f80a617d", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}, {"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe44b7c3a36847f80a6183", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 7.3, "runtime": 90}, "575": {"poster_path": "/qyUiWvJlbVfA9u4186zZAVpDHJc.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Das Experiment is a shocking psycho thriller about the potential for brutality that humans hide. Even more shocking is the fact that it\u2019s based on an actual occurrence\u2014a 1971 psychological experiment at Stanford University that was aborted prematurely when the experimenters lost control.", "video": false, "id": 575, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Experiment", "tagline": "", "vote_count": 55, "homepage": "http://www.dasexperiment.de/intro/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0250258", "adult": false, "backdrop_path": "/6BY6nJWJfdERV9ht2OAh9rtiyhp.jpg", "production_companies": [{"name": "Senator Film Produktion", "id": 191}, {"name": "FilmFernsehFonds Bayern", "id": 268}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 315}, {"name": "Typhoon Film", "id": 329}, {"name": "Fanes Film", "id": 330}, {"name": "SevenPictures", "id": 331}, {"name": "Filmf\u00f6rderungsanstalt BKM", "id": 332}], "release_date": "2001-03-07", "popularity": 0.60399147148275, "original_title": "Das Experiment", "budget": 0, "cast": [{"name": "Moritz Bleibtreu", "character": "Tarek Fahd, H\u00e4ftling Nr. 77", "id": 677, "credit_id": "52fe4254c3a36847f8015d57", "cast_id": 1, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 0}, {"name": "Christian Berkel", "character": "Steinhoff, H\u00e4ftling Nr. 38", "id": 7803, "credit_id": "52fe4254c3a36847f8015d5b", "cast_id": 2, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 1}, {"name": "Oliver Stokowski", "character": "Sch\u00fctte, H\u00e4ftling Nr. 82", "id": 7804, "credit_id": "52fe4254c3a36847f8015d5f", "cast_id": 3, "profile_path": "/lsw8F9zJSr1kfCaiIdQBKabUPI6.jpg", "order": 2}, {"name": "Wotan Wilke M\u00f6hring", "character": "Joe, H\u00e4ftling Nr. 69", "id": 7805, "credit_id": "52fe4254c3a36847f8015d63", "cast_id": 4, "profile_path": "/xHqMmUZ2b4RgRfsdIvcVcQUMl7V.jpg", "order": 3}, {"name": "Stephan Szasz", "character": "H\u00e4ftling Nr. 53", "id": 7806, "credit_id": "52fe4254c3a36847f8015d67", "cast_id": 5, "profile_path": "/lc5ztjXkalmv0mFd1YykHbAA4XC.jpg", "order": 4}, {"name": "Polat Dal", "character": "H\u00e4ftling Nr. 40", "id": 7807, "credit_id": "52fe4254c3a36847f8015d6b", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Danny Richter", "character": "H\u00e4ftling Nr. 21", "id": 7808, "credit_id": "52fe4254c3a36847f8015d6f", "cast_id": 7, "profile_path": "/cejGuiWUcV3WZqQ5pasZZOtMB8.jpg", "order": 6}, {"name": "Ralf M\u00fcller", "character": "H\u00e4ftling Nr. 15", "id": 7809, "credit_id": "52fe4254c3a36847f8015d73", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Markus Rudolf", "character": "H\u00e4ftling Nr. 74", "id": 7810, "credit_id": "52fe4254c3a36847f8015d77", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Peter Fieseler", "character": "H\u00e4ftling Nr. 11", "id": 7811, "credit_id": "52fe4254c3a36847f8015d7b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Thorsten Dersch", "character": "H\u00e4ftling Nr. 86", "id": 7812, "credit_id": "52fe4254c3a36847f8015d7f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Sven Grefer", "character": "H\u00e4ftling Nr. 94", "id": 7813, "credit_id": "52fe4254c3a36847f8015d83", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Justus von Dohn\u00e1nyi", "character": "Berus", "id": 5646, "credit_id": "52fe4254c3a36847f8015d87", "cast_id": 13, "profile_path": "/llyjSaezSTFUuUb17LcPkvMSi4M.jpg", "order": 12}, {"name": "Nicki von Tempelhoff", "character": "Kamps", "id": 7815, "credit_id": "52fe4254c3a36847f8015d8b", "cast_id": 14, "profile_path": "/yL55kjtF6CLXUIAiNe2m6VJFcFQ.jpg", "order": 13}, {"name": "Timo Dierkes", "character": "Eckert", "id": 7816, "credit_id": "52fe4254c3a36847f8015d8f", "cast_id": 15, "profile_path": "/pU2nuvme5AGFtLQuYZ0kUyqQHEo.jpg", "order": 14}, {"name": "Antoine Monot Jr.", "character": "Bosch", "id": 7817, "credit_id": "52fe4254c3a36847f8015d93", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Lars G\u00e4rtner", "character": "Renzel", "id": 7818, "credit_id": "52fe4254c3a36847f8015d97", "cast_id": 17, "profile_path": "/9MzY5sGMePTCHSkVCqT74ocyVHx.jpg", "order": 16}, {"name": "Jacek Klimontko", "character": "Gl\u00e4ser", "id": 7819, "credit_id": "52fe4254c3a36847f8015d9b", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Markus Klauk", "character": "Stock", "id": 7820, "credit_id": "52fe4254c3a36847f8015d9f", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Ralph P\u00fcttmann", "character": "Amandy", "id": 7821, "credit_id": "52fe4254c3a36847f8015da3", "cast_id": 20, "profile_path": "/pNBqJBYrmVlxCqFXXu3VrezZ3ly.jpg", "order": 19}, {"name": "Edgar Selge", "character": "Prof. Dr. Klaus Thon", "id": 7822, "credit_id": "52fe4254c3a36847f8015da7", "cast_id": 21, "profile_path": "/wGpd1SrAZ8i9pATAv3xBnr2LWS2.jpg", "order": 20}, {"name": "Andrea Sawatzki", "character": "Dr. Jutta Grimm", "id": 7823, "credit_id": "52fe4254c3a36847f8015dab", "cast_id": 22, "profile_path": "/wvZ4Ip7b7eqEi2CcYERDTrluMBG.jpg", "order": 21}, {"name": "Philipp Hochmair", "character": "Lars", "id": 7824, "credit_id": "52fe4254c3a36847f8015daf", "cast_id": 23, "profile_path": "/bL9c8hI51Du5vKbYXynxQ46HctH.jpg", "order": 22}, {"name": "Tristan Vostry", "character": "Assistent", "id": 7826, "credit_id": "52fe4254c3a36847f8015db3", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Maren Eggert", "character": "Dora", "id": 7827, "credit_id": "52fe4254c3a36847f8015db7", "cast_id": 25, "profile_path": "/p2WLHe1WGshNxtlAS9LPE1gwbyl.jpg", "order": 24}, {"name": "Andr\u00e9 Jung", "character": "Ziegler", "id": 7828, "credit_id": "52fe4254c3a36847f8015dbb", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Uwe Rohde", "character": "Hans", "id": 7829, "credit_id": "52fe4254c3a36847f8015dbf", "cast_id": 27, "profile_path": "/spaxsgrRP0eIEGFXf5LoGLET5fV.jpg", "order": 26}, {"name": "Heiner Lauterbach", "character": "Dennis", "id": 7830, "credit_id": "52fe4254c3a36847f8015dc3", "cast_id": 28, "profile_path": "/ijrlHcCTjA5VrmY3vJsuOC3qUL3.jpg", "order": 27}, {"name": "Fatih Akin", "character": "Taxifahrer", "id": 5125, "credit_id": "52fe4254c3a36847f8015dc7", "cast_id": 29, "profile_path": "/wIcm73WeaS6IAA1chaSw5NN2HTQ.jpg", "order": 28}, {"name": "Christiane Gerboth", "character": "Nachrichtensprecherin", "id": 7831, "credit_id": "52fe4254c3a36847f8015dcb", "cast_id": 30, "profile_path": "/urLsfZ0OPlqpCFC9IJUmXt0N2Nf.jpg", "order": 29}, {"name": "Klaus Spinnler", "character": "Assistent", "id": 5652, "credit_id": "52fe4254c3a36847f8015e17", "cast_id": 43, "profile_path": "/xCt2MWaTCNCujFGYB69odZaQ4n6.jpg", "order": 30}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe4254c3a36847f8015dd1", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}], "vote_average": 7.6, "runtime": 114}, "576": {"poster_path": "/hkYPeDXuxlxpflz09rvu5KxOtT5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 509424, "overview": "Aging outlaw Pike Bishop (William Holden) prepares to retire after one final robbery. Joined by his gang, which includes Dutch Engstrom (Ernest Borgnine) and brothers Lyle (Warren Oates) and Tector Gorch (Ben Johnson), Bishop discovers the heist is a setup orchestrated in part by his old partner, Deke Thornton (Robert Ryan). As the remaining gang takes refuge in Mexican territory, Thornton trails them, resulting in fierce gunfights with plenty of casualties", "video": false, "id": 576, "genres": [{"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "The Wild Bunch", "tagline": "If you only want to spend two hours in a movie theatre and go home and forget it, stay away from THE WILD BUNCH.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065214", "adult": false, "backdrop_path": "/myz6XHquJeHfQb4paDMi8BYQTge.jpg", "production_companies": [{"name": "Warner Brothers/Seven Arts", "id": 4051}], "release_date": "1969-06-17", "popularity": 0.489922784874121, "original_title": "The Wild Bunch", "budget": 6000000, "cast": [{"name": "Ernest Borgnine", "character": "Dutch Engstrom", "id": 7502, "credit_id": "52fe4254c3a36847f8015e8f", "cast_id": 6, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 0}, {"name": "William Holden", "character": "Pike Bishop", "id": 8252, "credit_id": "52fe4255c3a36847f8015ec9", "cast_id": 16, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 1}, {"name": "Robert Ryan", "character": "Deke Thornton", "id": 8253, "credit_id": "52fe4255c3a36847f8015ecd", "cast_id": 17, "profile_path": "/xBAWG79UGCkchPPTbONycJiKW2g.jpg", "order": 2}, {"name": "Edmond O'Brien", "character": "Freddie Sykes", "id": 8254, "credit_id": "52fe4255c3a36847f8015ed1", "cast_id": 18, "profile_path": "/w3xvMmH5WfHZ5y7ldeIdX2oghVN.jpg", "order": 3}, {"name": "Warren Oates", "character": "Lyle Gorch", "id": 8255, "credit_id": "52fe4255c3a36847f8015ed5", "cast_id": 19, "profile_path": "/uYp6YY55id4qLmhFdydUv7r0J4s.jpg", "order": 4}, {"name": "Jaime S\u00e1nchez", "character": "Angel", "id": 8257, "credit_id": "52fe4255c3a36847f8015ed9", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Ben Johnson", "character": "Tector Gorch", "id": 8258, "credit_id": "52fe4255c3a36847f8015edd", "cast_id": 21, "profile_path": "/39W793yr65FB1JqcctWQMmzYBAD.jpg", "order": 6}, {"name": "Emilio Fern\u00e1ndez", "character": "Gen. Mapache", "id": 8259, "credit_id": "52fe4255c3a36847f8015ee1", "cast_id": 22, "profile_path": "/pNCyE6A8wgBtQjdF2o2aKDLFAH5.jpg", "order": 7}, {"name": "Strother Martin", "character": "Coffer", "id": 8260, "credit_id": "52fe4255c3a36847f8015ee5", "cast_id": 23, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 8}, {"name": "L.Q. Jones", "character": "T.C", "id": 8262, "credit_id": "52fe4255c3a36847f8015ee9", "cast_id": 24, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 9}, {"name": "Albert Dekker", "character": "Pat Harrigan", "id": 2755, "credit_id": "52fe4255c3a36847f8015ef9", "cast_id": 27, "profile_path": "/l6uhlP7tbyb3OVGUi3M6NceagBt.jpg", "order": 10}, {"name": "Bo Hopkins", "character": "Clarence 'Crazy' Lee", "id": 12410, "credit_id": "52fe4255c3a36847f8015efd", "cast_id": 28, "profile_path": "/tfned4hs0rrq7L5PPuS5GnlHFc6.jpg", "order": 11}, {"name": "Dub Taylor", "character": "Reverend Wainscoat", "id": 6463, "credit_id": "52fe4255c3a36847f8015f01", "cast_id": 29, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 12}, {"name": "Jorge Russek", "character": "Major Zamorra", "id": 31321, "credit_id": "52fe4255c3a36847f8015f05", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Alfonso Ar\u00e1u", "character": "Herrera", "id": 22767, "credit_id": "53885162c3a3681ae300431a", "cast_id": 31, "profile_path": "/Agw6LyoGlrfJaBvTOQYzdxwUWHh.jpg", "order": 14}, {"name": "Bill Hart", "character": "Jess", "id": 160598, "credit_id": "5479eae6c3a3685c480028e4", "cast_id": 40, "profile_path": null, "order": 15}, {"name": "Rayford Barnes", "character": "Buck", "id": 30848, "credit_id": "5479eb13c3a3685c530029b6", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Stephen Ferry", "character": "McHale", "id": 950225, "credit_id": "5479eb2f925141298d00278a", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Sonia Amelio", "character": "Teresa", "id": 990426, "credit_id": "5479eb50c3a3685c4b002929", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Chalo Gonz\u00e1lez", "character": "Gonzalez", "id": 239944, "credit_id": "5479ede3c3a368321600006a", "cast_id": 44, "profile_path": null, "order": 19}], "directors": [{"name": "Sam Peckinpah", "department": "Directing", "job": "Director", "credit_id": "52fe4254c3a36847f8015e7f", "profile_path": "/lsNMJtmZwLYB8pl1gE7S6cBbuSc.jpg", "id": 7767}], "vote_average": 7.2, "runtime": 145}, "8769": {"poster_path": "/dfgA9b0eK0Dqmyf8X9X0qhvpx6z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21200000, "overview": "Geeky student Arnie Cunningham falls for Christine, a rusty 1958 Plymouth Fury, and becomes obsessed with restoring the classic automobile to her former glory. As the car changes, so does Arnie, whose newfound confidence turns to arrogance behind the wheel of his exotic beauty. Arnie's girlfriend Leigh and best friend Dennis reach out to him, only to be met by a Fury like no other.", "video": false, "id": 8769, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Christine", "tagline": "How do you kill something that can't possibly be alive?", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085333", "adult": false, "backdrop_path": "/zvR7GPQSoJTZlwuU5jjZHRiMu2o.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1983-12-09", "popularity": 0.461994322611277, "original_title": "Christine", "budget": 0, "cast": [{"name": "Keith Gordon", "character": "Arnie Cunningham", "id": 33054, "credit_id": "52fe44b8c3a36847f80a647b", "cast_id": 4, "profile_path": "/izPEmoAyZkCBnNFXEBxg03TMnLH.jpg", "order": 0}, {"name": "John Stockwell", "character": "Dennis Guilder", "id": 57082, "credit_id": "52fe44b8c3a36847f80a647f", "cast_id": 5, "profile_path": "/9AQo5W5T6vP6WTcDvHx1CbbiOzU.jpg", "order": 1}, {"name": "Alexandra Paul", "character": "Leigh Cabot", "id": 55567, "credit_id": "52fe44b8c3a36847f80a6483", "cast_id": 6, "profile_path": "/eOagFesLjENDQGrJnwSdYMeRtaP.jpg", "order": 2}, {"name": "Robert Prosky", "character": "Will Darnell", "id": 10360, "credit_id": "52fe44b8c3a36847f80a6487", "cast_id": 7, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 3}, {"name": "Harry Dean Stanton", "character": "Rudolph Junkins", "id": 5048, "credit_id": "52fe44b8c3a36847f80a648b", "cast_id": 8, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 4}, {"name": "Christine Belford", "character": "Regina Cunningham", "id": 41219, "credit_id": "52fe44b8c3a36847f80a648f", "cast_id": 9, "profile_path": "/i7awtYFwYO8ha1wZwcloKq50L3b.jpg", "order": 5}, {"name": "Roberts Blossom", "character": "George LeBay", "id": 66288, "credit_id": "52fe44b8c3a36847f80a6493", "cast_id": 10, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 6}, {"name": "William Ostrander", "character": "Buddy Repperton", "id": 55929, "credit_id": "52fe44b8c3a36847f80a6497", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "David Spielberg", "character": "Mr. Casey", "id": 54127, "credit_id": "52fe44b8c3a36847f80a649b", "cast_id": 12, "profile_path": "/hCyjIbgqyjpCyUnUJeqbYtShBon.jpg", "order": 8}, {"name": "Malcolm Danare", "character": "Moochie Welch", "id": 14738, "credit_id": "52fe44b8c3a36847f80a649f", "cast_id": 13, "profile_path": "/6PQPp4Yim18xuNCBGQLg2cYAstY.jpg", "order": 9}, {"name": "Steven Tash", "character": "Richard Trelawney", "id": 55930, "credit_id": "52fe44b8c3a36847f80a64a3", "cast_id": 14, "profile_path": "/loYE3mTbF10DvIDBdjUAqebwGaT.jpg", "order": 10}, {"name": "Stuart Charno", "character": "Don Vandenberg", "id": 55931, "credit_id": "52fe44b8c3a36847f80a64a7", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Kelly Preston", "character": "Roseanne", "id": 11164, "credit_id": "52fe44b8c3a36847f80a64ab", "cast_id": 16, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 12}, {"name": "Marc Poppel", "character": "Chuck", "id": 55932, "credit_id": "52fe44b8c3a36847f80a64af", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Robert Darnell", "character": "Michael Cunningham", "id": 55933, "credit_id": "52fe44b8c3a36847f80a64b3", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe44b8c3a36847f80a646b", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.6, "runtime": 110}, "578": {"poster_path": "/l1yltvzILaZcx2jYvc5sEMkM7Eh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 470654000, "overview": "An insatiable great white shark terrorizes the townspeople of Amity Island, The police chief, an oceanographer and a grizzled shark hunter seek to destroy the bloodthirsty beast.", "video": false, "id": 578, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jaws", "tagline": "Don't go in the water.", "vote_count": 578, "homepage": "http://www.jaws25.com/", "belongs_to_collection": {"backdrop_path": "/1e2QvI2u7Q4d2admK6Xw0AjLjVp.jpg", "poster_path": "/fgraZdDCvAtBr0MHczmL6raonHd.jpg", "id": 2366, "name": "The Jaws Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0073195", "adult": false, "backdrop_path": "/adTQnKMKOJ2Gbk2MC3nBez0Pbc3.jpg", "production_companies": [{"name": "Zanuck/Brown Productions", "id": 1865}, {"name": "Universal Pictures", "id": 33}], "release_date": "1975-06-19", "popularity": 1.47982928995305, "original_title": "Jaws", "budget": 7000000, "cast": [{"name": "Roy Scheider", "character": "Police Chief Martin Brody", "id": 6355, "credit_id": "52fe4255c3a36847f8016071", "cast_id": 15, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 0}, {"name": "Robert Shaw", "character": "Quint", "id": 8606, "credit_id": "52fe4255c3a36847f8016075", "cast_id": 16, "profile_path": "/mLlgNTWRo3zGFzg4WHP9uzOH9Xn.jpg", "order": 1}, {"name": "Richard Dreyfuss", "character": "Matt Hooper", "id": 3037, "credit_id": "52fe4255c3a36847f8016079", "cast_id": 17, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 2}, {"name": "Lorraine Gary", "character": "Ellen Brody", "id": 8607, "credit_id": "52fe4255c3a36847f801607d", "cast_id": 18, "profile_path": "/odB9w163XLYjYpLf5Z1BAfdbxnx.jpg", "order": 3}, {"name": "Murray Hamilton", "character": "Mayor Larry Vaughn", "id": 8608, "credit_id": "52fe4255c3a36847f8016081", "cast_id": 19, "profile_path": "/w2FAPn8RbGKvyhnj3K0dNySEoDa.jpg", "order": 4}, {"name": "Carl Gottlieb", "character": "Ben Meadows", "id": 8555, "credit_id": "52fe4255c3a36847f8016085", "cast_id": 20, "profile_path": "/55NXqy86bxZ64QnwsLbYNOgsS7d.jpg", "order": 5}, {"name": "Jeffrey Kramer", "character": "Deputy Leonard 'Lenny' Hendricks", "id": 8609, "credit_id": "52fe4255c3a36847f8016089", "cast_id": 21, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 6}, {"name": "Susan Backlinie", "character": "Christine 'Chrissie' Watkins", "id": 8610, "credit_id": "52fe4255c3a36847f801608d", "cast_id": 22, "profile_path": "/nYpElizNhK5tvuw13qMqBtu3vmT.jpg", "order": 7}, {"name": "Jonathan Filley", "character": "Tom Cassidy", "id": 5286, "credit_id": "52fe4255c3a36847f8016091", "cast_id": 23, "profile_path": "/esRuadwQz5Hx3hMML2DuIalUnsW.jpg", "order": 8}, {"name": "Chris Rebello", "character": "Michael 'Mike' Brody", "id": 8611, "credit_id": "52fe4255c3a36847f8016095", "cast_id": 24, "profile_path": "/7n5DRxnscqgRqonpYWFGGXdiwAf.jpg", "order": 9}, {"name": "Jay Mello", "character": "Sean Brody", "id": 8612, "credit_id": "52fe4255c3a36847f8016099", "cast_id": 25, "profile_path": "/crjgSn6d3MR5ibkzyxDf6YEf0x0.jpg", "order": 10}, {"name": "Lee Fierro", "character": "Mrs. Kintner", "id": 8613, "credit_id": "52fe4255c3a36847f801609d", "cast_id": 26, "profile_path": "/rpkKjSJpWrhOPIVY9ooVSRQKgs6.jpg", "order": 11}, {"name": "Jeffrey Voorhees", "character": "Alex M. Kintner", "id": 8614, "credit_id": "52fe4255c3a36847f80160a1", "cast_id": 27, "profile_path": "/x3ShYXoC6ET65JFAcZXBwKdvN7s.jpg", "order": 12}, {"name": "Craig Kingsbury", "character": "Ben Gardner", "id": 8615, "credit_id": "52fe4255c3a36847f80160a5", "cast_id": 28, "profile_path": "/qHWGWvGg7sTtvcKpmYKatmMBtNj.jpg", "order": 13}, {"name": "Robert Nevin", "character": "Medical Examiner", "id": 8616, "credit_id": "52fe4255c3a36847f80160a9", "cast_id": 29, "profile_path": "/dlGP4diqSoit0i2innQTfZGiNcm.jpg", "order": 14}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4255c3a36847f801601f", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.1, "runtime": 124}, "579": {"poster_path": "/zzGtimy1mUJYDjFjCmn2dpHREGV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 187884007, "overview": "The sequel to the successful blockbuster Jaws. An American horror thriller from 1978 about a great white that brings fear to everyone near the water. The film used it\u2019s predecessor\u2019s success to achieve it\u2019s own and was not directed by Steven Spielberg.", "video": false, "id": 579, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jaws 2", "tagline": "Just when you thought it was safe to go back in the water.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1e2QvI2u7Q4d2admK6Xw0AjLjVp.jpg", "poster_path": "/fgraZdDCvAtBr0MHczmL6raonHd.jpg", "id": 2366, "name": "The Jaws Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077766", "adult": false, "backdrop_path": "/jI3wfBuB6nwkpazHr3cI6fyDGGf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1978-06-16", "popularity": 0.739321843853754, "original_title": "Jaws 2", "budget": 20000000, "cast": [{"name": "Roy Scheider", "character": "Police Chief Martin Brody", "id": 6355, "credit_id": "52fe4255c3a36847f801618d", "cast_id": 23, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 0}, {"name": "Lorraine Gary", "character": "Ellen Brody", "id": 8607, "credit_id": "52fe4255c3a36847f8016191", "cast_id": 24, "profile_path": "/odB9w163XLYjYpLf5Z1BAfdbxnx.jpg", "order": 1}, {"name": "Murray Hamilton", "character": "Mayor Larry Vaughn", "id": 8608, "credit_id": "52fe4255c3a36847f8016195", "cast_id": 25, "profile_path": "/w2FAPn8RbGKvyhnj3K0dNySEoDa.jpg", "order": 2}, {"name": "Joseph Mascolo", "character": "Len Peterson", "id": 6769, "credit_id": "52fe4255c3a36847f8016199", "cast_id": 26, "profile_path": "/14hthTYc8VraHYhIDCdZH4XnD1r.jpg", "order": 3}, {"name": "Jeffrey Kramer", "character": "Deputy Jeff Hendricks", "id": 8609, "credit_id": "52fe4255c3a36847f801619d", "cast_id": 27, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 4}, {"name": "Collin Wilcox", "character": "Dr. Lureen Elkins", "id": 8497, "credit_id": "52fe4255c3a36847f80161a1", "cast_id": 28, "profile_path": "/20moI5kP6wgDGsPju2J61AlGi1N.jpg", "order": 5}, {"name": "Ann Dusenberry", "character": "Tina Wilcox", "id": 16197, "credit_id": "52fe4255c3a36847f80161a5", "cast_id": 29, "profile_path": "/bOyZ5m2yDDPsMFGkp2eh81Y6EQY.jpg", "order": 6}, {"name": "Mark Gruner", "character": "Michael 'Mike' Brody", "id": 16198, "credit_id": "52fe4255c3a36847f80161a9", "cast_id": 30, "profile_path": "/pDD9qcLZCDHhcxBGnBXz0OjsIVB.jpg", "order": 7}, {"name": "Barry Coe", "character": "Tom Andrews", "id": 16199, "credit_id": "52fe4255c3a36847f80161ad", "cast_id": 31, "profile_path": "/ckrQc9yYN425CvO4aKdy6rWIU54.jpg", "order": 8}, {"name": "Susan French", "character": "Grace Witherspoon", "id": 16200, "credit_id": "52fe4255c3a36847f80161b1", "cast_id": 32, "profile_path": "/1TxIxsdlGntJcy02MCwaQLWIVMp.jpg", "order": 9}, {"name": "Gary Springer", "character": "Andy Nicholas", "id": 14552, "credit_id": "52fe4255c3a36847f80161b5", "cast_id": 33, "profile_path": "/ovYL4jKuiyRvCbMVrgO3iy5BB10.jpg", "order": 10}, {"name": "Donna Wilkes", "character": "Jackie Peters", "id": 16201, "credit_id": "52fe4255c3a36847f80161b9", "cast_id": 34, "profile_path": "/g4QrUogwXahj7W35bDU2PK6oaWk.jpg", "order": 11}, {"name": "Gary Dubin", "character": "Eddie Marchand", "id": 16202, "credit_id": "52fe4255c3a36847f80161bd", "cast_id": 35, "profile_path": "/wEmM0j6H57x1YQy4WFu5p9Ibh4A.jpg", "order": 12}, {"name": "John Dukakis", "character": "Paul 'Polo' Loman", "id": 16203, "credit_id": "52fe4255c3a36847f80161c1", "cast_id": 36, "profile_path": "/7AaDqpjdLfSbf1zeTsoEdZq3G2B.jpg", "order": 13}, {"name": "G. Thomas Dunlop", "character": "Timmy Weldon", "id": 16204, "credit_id": "52fe4255c3a36847f80161c5", "cast_id": 37, "profile_path": "/1tlDZGPAiruuc7HldTRM5itdpyn.jpg", "order": 14}, {"name": "Keith Gordon", "character": "Doug Fetterman", "id": 33054, "credit_id": "52fe4255c3a36847f80161cf", "cast_id": 39, "profile_path": "/izPEmoAyZkCBnNFXEBxg03TMnLH.jpg", "order": 15}, {"name": "David Elliott", "character": "Larry Vaughn Jr.", "id": 103957, "credit_id": "52fe4255c3a36847f80161d3", "cast_id": 40, "profile_path": "/oexxqztkSA0BUoj96Croa19XmU1.jpg", "order": 16}, {"name": "Marc Gilpin", "character": "Sean Brody", "id": 44688, "credit_id": "52fe4255c3a36847f80161d7", "cast_id": 41, "profile_path": "/7AbLodfCqzOxupcfzBK5bsPidq.jpg", "order": 17}, {"name": "Billy Van Zandt", "character": "Bob", "id": 168423, "credit_id": "52fe4255c3a36847f80161db", "cast_id": 42, "profile_path": "/14Pk9JIIjNdu0d3vxBWsBRzjrSy.jpg", "order": 18}], "directors": [{"name": "Jeannot Szwarc", "department": "Directing", "job": "Director", "credit_id": "52fe4255c3a36847f801610b", "profile_path": "/mIW7mgLr83qyGovTWAigrPX66v3.jpg", "id": 16187}], "vote_average": 5.8, "runtime": 116}, "74308": {"poster_path": "/7bCcC4GUr4IDdQX2Kdz7dZKfsG7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Detachment is a chronicle of three weeks in the lives of several high school teachers, administrators and students through the eyes of a substitute teacher named Henry Barthes. Henry roams from school to school, imparting modes of knowledge, but never staying long enough to form any semblance of sentient attachment. A perfect profession for one seeking to hide out in the open. One day Henry arrives at his next assignment. Upon his entry into this particular school, a secret world of emotion is awakened within him by three women. A girl named Meredith in his first period. A fellow teacher Ms. Madison, and a street hooker named Erica, whom Henry has personally granted brief shelter from the streets. Each one of these women, like Henry, are in a life and death struggle to find beauty in a seemingly vicious and loveless world.", "video": false, "id": 74308, "genres": [{"id": 18, "name": "Drama"}], "title": "Detachment", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1683526", "adult": false, "backdrop_path": "/i5vWR5U9UL36KfmWQ1S4D317OVB.jpg", "production_companies": [{"name": "Kingsgate Films", "id": 770}], "release_date": "2011-04-25", "popularity": 0.378434954735609, "original_title": "Detachment", "budget": 0, "cast": [{"name": "Adrien Brody", "character": "Henry Barthes", "id": 3490, "credit_id": "52fe48c4c3a368484e109eff", "cast_id": 4, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Principal Carol Dearden", "id": 4726, "credit_id": "52fe48c4c3a368484e109f11", "cast_id": 8, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "James Caan", "character": "Mr. Charles Seaboldt", "id": 3085, "credit_id": "52fe48c4c3a368484e109f41", "cast_id": 18, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 2}, {"name": "Christina Hendricks", "character": "Ms. Sarah Madison", "id": 110014, "credit_id": "52fe48c4c3a368484e109ef7", "cast_id": 2, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 3}, {"name": "Lucy Liu", "character": "Dr. Parker", "id": 140, "credit_id": "52fe48c4c3a368484e109f03", "cast_id": 5, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 4}, {"name": "Blythe Danner", "character": "Ms. Perkins", "id": 10401, "credit_id": "52fe48c4c3a368484e109f15", "cast_id": 9, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Mr. Wiatt", "id": 1462, "credit_id": "52fe48c4c3a368484e109f45", "cast_id": 19, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "William Petersen", "character": "Mr. Sarge Kepler", "id": 52267, "credit_id": "52fe48c4c3a368484e109f49", "cast_id": 20, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 8}, {"name": "Bryan Cranston", "character": "Richard Dearden", "id": 17419, "credit_id": "52fe48c4c3a368484e109efb", "cast_id": 3, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 9}, {"name": "Sami Gayle", "character": "Erica", "id": 506085, "credit_id": "52fe48c4c3a368484e109f0d", "cast_id": 7, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 9}, {"name": "Celia Au", "character": "Ellen (as Sze Ming Au)", "id": 1087135, "credit_id": "52fe48c4c3a368484e109f19", "cast_id": 11, "profile_path": "/fRqv80ldZe4OlCCXU275pbiH1Ie.jpg", "order": 10}, {"name": "Louis Zorich", "character": "Grampa", "id": 73210, "credit_id": "52fe48c4c3a368484e109f4d", "cast_id": 21, "profile_path": "/yDyRHBmofPk3F9P4fatK8szuzdb.jpg", "order": 11}, {"name": "Isiah Whitlock, Jr.", "character": "Mr. Mathias", "id": 17490, "credit_id": "52fe48c4c3a368484e109f51", "cast_id": 22, "profile_path": "/yLaKPYOvrea7dU0Xa86SY1WN7Gc.jpg", "order": 12}, {"name": "Patricia Rae", "character": "Ms. Estrada", "id": 5973, "credit_id": "52fe48c4c3a368484e109f55", "cast_id": 23, "profile_path": "/vkVhCraBD2yOzEwCIFTGwyCbWNO.jpg", "order": 13}], "directors": [{"name": "Tony Kaye", "department": "Directing", "job": "Director", "credit_id": "52fe48c4c3a368484e109ef3", "profile_path": "/JCcF3JbptET0eF44w3sfMJw5E4.jpg", "id": 814}], "vote_average": 7.4, "runtime": 97}, "581": {"poster_path": "/hpmclspug1I8EwKSWhL7pWWltA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 424208848, "overview": "Wounded Civil War soldier John Dunbar tries to commit suicide -- and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.", "video": false, "id": 581, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Dances with Wolves", "tagline": "Inside everyone is a frontier waiting to be discovered.", "vote_count": 301, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099348", "adult": false, "backdrop_path": "/gkW2RMlwl4kqaMIDjaAE73rAPpZ.jpg", "production_companies": [{"name": "Tig Productions", "id": 335}, {"name": "Majestic Films International", "id": 2630}], "release_date": "1990-11-09", "popularity": 1.53079702533824, "original_title": "Dances with Wolves", "budget": 22000000, "cast": [{"name": "Kevin Costner", "character": "Lieutenant Dunbar", "id": 1269, "credit_id": "52fe4255c3a36847f8016347", "cast_id": 12, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Mary McDonnell", "character": "Stands With A Fist", "id": 1581, "credit_id": "52fe4255c3a36847f801634b", "cast_id": 13, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 1}, {"name": "Graham Greene", "character": "Kicking Bird", "id": 6804, "credit_id": "52fe4255c3a36847f801634f", "cast_id": 14, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 2}, {"name": "Rodney A. Grant", "character": "Wind In His Hair", "id": 7853, "credit_id": "52fe4255c3a36847f8016353", "cast_id": 15, "profile_path": "/zJI1ES5cvy7xtEvRnRURbgW03Bf.jpg", "order": 3}, {"name": "Floyd Red Crow Westerman", "character": "Ten Bears", "id": 7862, "credit_id": "52fe4255c3a36847f8016357", "cast_id": 16, "profile_path": "/rAwnURUoJrIUbQtoRAPbHaTyLcu.jpg", "order": 4}, {"name": "Tantoo Cardinal", "character": "Black Shawl", "id": 7863, "credit_id": "52fe4255c3a36847f801635b", "cast_id": 17, "profile_path": "/2FEYWnf9jbc5VY5fEFiX91vx80k.jpg", "order": 5}, {"name": "Robert Pastorelli", "character": "Timmons", "id": 7866, "credit_id": "52fe4255c3a36847f801635f", "cast_id": 18, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 6}, {"name": "Charles Rocket", "character": "Lieutenant Elgin", "id": 7867, "credit_id": "52fe4255c3a36847f8016363", "cast_id": 19, "profile_path": "/9UJTYqaPaYNPuVTjGd0Cr4XVNqe.jpg", "order": 7}, {"name": "Maury Chaykin", "character": "Major Fambrough", "id": 7868, "credit_id": "52fe4255c3a36847f8016367", "cast_id": 20, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 8}, {"name": "Jimmy Herman", "character": "Stone Calf", "id": 7869, "credit_id": "52fe4255c3a36847f801636b", "cast_id": 21, "profile_path": "/edarXZk4BLKdRodLmfGeiZPcHNt.jpg", "order": 9}, {"name": "Nathan Lee Chasing His Horse", "character": "Smiles A Lot", "id": 7871, "credit_id": "52fe4255c3a36847f8016375", "cast_id": 23, "profile_path": "/hQ8i79bGsASGQ3GsOZGAY3PSYn2.jpg", "order": 10}, {"name": "Michael Spears", "character": "Otter", "id": 7872, "credit_id": "52fe4255c3a36847f8016379", "cast_id": 24, "profile_path": "/cAsaHMudiRa0RTooNJ7phkzYchF.jpg", "order": 11}, {"name": "Jason R. Lone Hill", "character": "Worm", "id": 7873, "credit_id": "52fe4255c3a36847f801637d", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Tony Pierce", "character": "Spivey", "id": 7874, "credit_id": "52fe4255c3a36847f8016381", "cast_id": 26, "profile_path": "/nbMYwt5zndejomGFBGepBlhZQID.jpg", "order": 13}, {"name": "Doris Leader Charge", "character": "Pretty Shield", "id": 7875, "credit_id": "52fe4255c3a36847f8016385", "cast_id": 27, "profile_path": "/kxUgWAfdOtMbFH8mPKd7g2gIrOq.jpg", "order": 14}, {"name": "Tom Everett", "character": "Sergeant Pepper", "id": 140250, "credit_id": "52fe4255c3a36847f8016395", "cast_id": 30, "profile_path": "/nxrCAB3xL79EdWLwBUMwXj7FtI3.jpg", "order": 15}, {"name": "Larry Joshua", "character": "Sergeant Bauer", "id": 21380, "credit_id": "52fe4255c3a36847f8016399", "cast_id": 31, "profile_path": "/rWhP4v6mPwRGV4qCdJIC9oOqFn7.jpg", "order": 16}, {"name": "Kirk Baltz", "character": "Edwards", "id": 3206, "credit_id": "52fe4255c3a36847f801639d", "cast_id": 32, "profile_path": "/zCuugN0Lgsi5IKRq9OyYl3vh9pU.jpg", "order": 17}, {"name": "Wayne Grace", "character": "Major", "id": 52145, "credit_id": "52fe4256c3a36847f80163a1", "cast_id": 33, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 18}, {"name": "Donald Hotton", "character": "General Tide", "id": 14854, "credit_id": "52fe4256c3a36847f80163a5", "cast_id": 34, "profile_path": "/qCLOFZbktP5X0ChZDrHj5B0qsYN.jpg", "order": 19}, {"name": "Annie Costner", "character": "Christine", "id": 1080276, "credit_id": "52fe4256c3a36847f80163a9", "cast_id": 35, "profile_path": "/vBP2LHJTU48DGKJVOnM0O5DIRhy.jpg", "order": 20}, {"name": "Elisa Daniel", "character": "Christine's Mother", "id": 1160349, "credit_id": "52fe4256c3a36847f80163ad", "cast_id": 36, "profile_path": "/89kTBf4CXmeszbzu1zH0lo5Ryu9.jpg", "order": 21}, {"name": "Percy White Plume", "character": "Big Warrior", "id": 1416085, "credit_id": "54be603ac3a3686c6b00f56d", "cast_id": 81, "profile_path": null, "order": 22}, {"name": "John Tail", "character": "Escort Warrior", "id": 1444164, "credit_id": "550f3087925141073d00351b", "cast_id": 82, "profile_path": null, "order": 23}, {"name": "Steve Reevis", "character": "Sioux #1 / Warrior #1", "id": 4024, "credit_id": "550f30e7c3a3683eb800320b", "cast_id": 83, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 24}, {"name": "Sheldon Peters Wolfchild", "character": "Sioux #2 / Warrior #2 (as Sheldon Wolfchild)", "id": 240609, "credit_id": "550f3132c3a3683eb800320e", "cast_id": 84, "profile_path": null, "order": 25}, {"name": "Wes Studi", "character": "Toughest Pawnee", "id": 15853, "credit_id": "54be5ff4c3a3684046008304", "cast_id": 80, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 26}, {"name": "Buffalo Child", "character": "Pawnee #1", "id": 162972, "credit_id": "550f317792514146a000a903", "cast_id": 85, "profile_path": null, "order": 27}, {"name": "Clayton Big Eagle", "character": "Pawnee #2", "id": 1444165, "credit_id": "550f3185c3a3681db2009fbf", "cast_id": 86, "profile_path": null, "order": 28}, {"name": "Richard Leader Charge", "character": "Pawnee #3", "id": 1444166, "credit_id": "550f31989251410701003567", "cast_id": 87, "profile_path": null, "order": 29}, {"name": "Redwing Ted Nez", "character": "Sioux Warrior", "id": 1444167, "credit_id": "550f31aec3a368488600ae3f", "cast_id": 88, "profile_path": null, "order": 30}, {"name": "Marvin Holy", "character": "Sioux Warrior", "id": 1444168, "credit_id": "550f31b992514164ac0011cf", "cast_id": 89, "profile_path": null, "order": 31}, {"name": "Raymond Newholy", "character": "Sioux Courier", "id": 1444169, "credit_id": "550f31c8c3a368488600ae47", "cast_id": 90, "profile_path": null, "order": 32}, {"name": "David J. Fuller", "character": "Kicking Bird's Son", "id": 1444170, "credit_id": "550f31da925141070100356f", "cast_id": 91, "profile_path": null, "order": 33}, {"name": "Ryan White Bull", "character": "Kicking Bird's Eldest Son", "id": 1444171, "credit_id": "550f31efc3a3683f39003438", "cast_id": 92, "profile_path": null, "order": 34}, {"name": "Otakuye Conroy", "character": "Kicking Bird's Daughter", "id": 1444172, "credit_id": "550f3206925141073d003544", "cast_id": 93, "profile_path": null, "order": 35}, {"name": "Maretta Big Crow", "character": "Village Mother", "id": 1444173, "credit_id": "550f3212c3a3683eb8003217", "cast_id": 94, "profile_path": null, "order": 36}, {"name": "Steven Chambers", "character": "Guard (as Steve Chambers)", "id": 139999, "credit_id": "550f327592514166db00128e", "cast_id": 95, "profile_path": null, "order": 37}, {"name": "William H. Burton Jr.", "character": "General's Aide (as William H. Burton)", "id": 1412253, "credit_id": "550f32ee9251416bd1001154", "cast_id": 96, "profile_path": null, "order": 38}, {"name": "Bill W. Curry", "character": "Confederate Cavalryman", "id": 1444174, "credit_id": "550f331bc3a3681db2009ff1", "cast_id": 97, "profile_path": null, "order": 39}, {"name": "Nick Thompson", "character": "Confederate Soldier", "id": 1444175, "credit_id": "550f3351925141469900a82c", "cast_id": 98, "profile_path": null, "order": 40}, {"name": "Carter Hanner", "character": "Confederate Soldier", "id": 1444176, "credit_id": "550f3363c3a3683eb8003233", "cast_id": 99, "profile_path": null, "order": 41}, {"name": "Kent Hays", "character": "Wagon Driver", "id": 1444177, "credit_id": "550f336f925141469900a833", "cast_id": 100, "profile_path": null, "order": 42}, {"name": "Robert Goldman", "character": "Union Soldier", "id": 1444178, "credit_id": "550f33b59251416bd1001163", "cast_id": 101, "profile_path": null, "order": 43}, {"name": "Frank P. Costanza", "character": "Tucker", "id": 96636, "credit_id": "550f33d4c3a3681db200a003", "cast_id": 102, "profile_path": null, "order": 44}, {"name": "James A. Mitchell", "character": "Ray", "id": 1444179, "credit_id": "550f33e3c3a3683f39003468", "cast_id": 103, "profile_path": null, "order": 45}, {"name": "R. L. Curtin", "character": "Ambush Wagon Driver", "id": 1444180, "credit_id": "550f33f79251416bd100116a", "cast_id": 104, "profile_path": null, "order": 46}, {"name": "Justin", "character": "Cisco (horse)", "id": 1444181, "credit_id": "550f3416c3a3683f0a00327b", "cast_id": 105, "profile_path": null, "order": 47}, {"name": "Teddy", "character": "Two Socks (wolf)", "id": 1444182, "credit_id": "550f3434c3a3683f0a003281", "cast_id": 106, "profile_path": null, "order": 48}, {"name": "Buck", "character": "Two Socks (wolf)", "id": 1444183, "credit_id": "550f3492925141065c00359a", "cast_id": 107, "profile_path": null, "order": 49}], "directors": [{"name": "Kevin Costner", "department": "Directing", "job": "Director", "credit_id": "52fe4255c3a36847f801630d", "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "id": 1269}], "vote_average": 7.1, "runtime": 181}, "582": {"poster_path": "/6kxCD1v4yi61cOuGk5iYKjQisp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 70000000, "overview": "A tragic love story set in East Berlin with the backdrop of an undercover Stasi controlled culture. Stasi captain Wieler is ordered to follow author Dreyman and plunges deeper and deeper into his life until he reaches the threshold of doubting the system.", "video": false, "id": 582, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Lives of Others", "tagline": "Before the Fall of the Berlin Wall, East Germany's Secret Police Listened to Your Secrets.", "vote_count": 295, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0405094", "adult": false, "backdrop_path": "/86yhBiDcxe2Psicwn82QMD7cHlM.jpg", "production_companies": [{"name": "Arte", "id": 201}, {"name": "Wiedemann & Berg Filmproduktion", "id": 336}, {"name": "Creado Film", "id": 337}, {"name": "Bayerischer Rundfunk (BR)", "id": 7333}], "release_date": "2006-03-15", "popularity": 0.568229343019074, "original_title": "Das Leben der Anderen", "budget": 2000000, "cast": [{"name": "Martina Gedeck", "character": "Christa-Maria Sieland", "id": 678, "credit_id": "52fe4256c3a36847f801640b", "cast_id": 7, "profile_path": "/a6eR9unTwZk4xqsVKZvJySnVt5A.jpg", "order": 0}, {"name": "Ulrich M\u00fche", "character": "Gerd Wiesler", "id": 8196, "credit_id": "52fe4256c3a36847f801640f", "cast_id": 8, "profile_path": "/jpWubOAj7GnSfxmf1DlcpMpvseY.jpg", "order": 1}, {"name": "Sebastian Koch", "character": "Georg Dreyman", "id": 8197, "credit_id": "52fe4256c3a36847f8016413", "cast_id": 9, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 2}, {"name": "Ulrich Tukur", "character": "Anton Grubitz", "id": 8198, "credit_id": "52fe4256c3a36847f8016417", "cast_id": 10, "profile_path": "/assJYvivgfukHFWim6o9T3sUmu9.jpg", "order": 3}, {"name": "Thomas Thieme", "character": "Bruno Hempf", "id": 8199, "credit_id": "52fe4256c3a36847f801641b", "cast_id": 11, "profile_path": "/izFcVDulGPf6lhV8zUbRtecCJu7.jpg", "order": 4}, {"name": "Hans-Uwe Bauer", "character": "Paul Hauser", "id": 8200, "credit_id": "52fe4256c3a36847f801641f", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Volkmar Kleinert", "character": "Albert Jerska", "id": 8201, "credit_id": "52fe4256c3a36847f8016423", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Matthias Brenner", "character": "Karl Wallner", "id": 8202, "credit_id": "52fe4256c3a36847f8016427", "cast_id": 14, "profile_path": "/pUGJZ3PB6simHPLpcLrt51EOeBt.jpg", "order": 7}, {"name": "Bastian Trost", "character": "H\u00e4ftling 227", "id": 8203, "credit_id": "52fe4256c3a36847f801642b", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Charly H\u00fcbner", "character": "Udo", "id": 8204, "credit_id": "52fe4256c3a36847f801642f", "cast_id": 16, "profile_path": "/AgsnHOC7ZsRL4wsBsgJJVJNWpAd.jpg", "order": 9}, {"name": "Herbert Knaup", "character": "Gregor Hessenstein", "id": 1081, "credit_id": "52fe4256c3a36847f8016433", "cast_id": 17, "profile_path": "/cH0TG69o6Sc6of7ZaZP9BwQ3tHX.jpg", "order": 10}, {"name": "Marie Gruber", "character": "Frau Meineke", "id": 8205, "credit_id": "52fe4256c3a36847f8016437", "cast_id": 18, "profile_path": "/9MDP9S9uaeIOrs8ni4fuYhUtmh9.jpg", "order": 11}, {"name": "Hinnerk Sch\u00f6nemann", "character": "Axel Stigler", "id": 8206, "credit_id": "52fe4256c3a36847f801643b", "cast_id": 19, "profile_path": "/w8R9m7GTYnSWsGKb7WA8T3SJv8X.jpg", "order": 12}, {"name": "Thomas Arnold", "character": "Nowack", "id": 8207, "credit_id": "52fe4256c3a36847f801643f", "cast_id": 20, "profile_path": "/mKHJ71sdW7oY40zVoQ96RxZeUw6.jpg", "order": 13}, {"name": "Ludwig Blochberger", "character": "Benedikt Lehmann", "id": 5214, "credit_id": "52fe4256c3a36847f8016443", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Florian Henckel von Donnersmarck", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f80163ef", "profile_path": "/wQA7iaeaSWbAFB7oOFV0NRGjUMa.jpg", "id": 8193}], "vote_average": 7.8, "runtime": 137}, "583": {"poster_path": "/wEgm6iVOD4afMlEo1VGi3Yz0cmd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 20045115, "overview": "A brilliant parody from the British comedy group Monty Python about the history of (not Jesus but the boy born right next door to The Manger, Brian). A Terry Jones directed film from 1979 that has since gained cult status. What many fans don't know is that this movie might never have happened if not for the financial assistance of George Harrison (of The Beatles).", "video": false, "id": 583, "genres": [{"id": 35, "name": "Comedy"}], "title": "Life of Brian", "tagline": "He wasn't the messiah. He was a very naughty boy.", "vote_count": 414, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079470", "adult": false, "backdrop_path": "/wMPlmw0fM1B94XugcuaKGB96Vsd.jpg", "production_companies": [{"name": "Handmade Films Ltd.", "id": 146}, {"name": "Python (Monty) Pictures Limited", "id": 416}], "release_date": "1979-08-16", "popularity": 0.830343842957795, "original_title": "Life of Brian", "budget": 4000000, "cast": [{"name": "Graham Chapman", "character": "Brian Cohen", "id": 10722, "credit_id": "52fe4256c3a36847f80164eb", "cast_id": 13, "profile_path": "/gwuoxo5EB3SRMO0BPLduWdcSALd.jpg", "order": 0}, {"name": "John Cleese", "character": "Arthur", "id": 8930, "credit_id": "52fe4256c3a36847f80164ef", "cast_id": 14, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 1}, {"name": "Terry Gilliam", "character": "Crucifee", "id": 280, "credit_id": "52fe4256c3a36847f80164f3", "cast_id": 15, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 2}, {"name": "Eric Idle", "character": "Mr. Cheeky", "id": 10713, "credit_id": "52fe4256c3a36847f80164f7", "cast_id": 16, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 3}, {"name": "Terry Jones", "character": "Mandy Cohan", "id": 10707, "credit_id": "52fe4256c3a36847f80164fb", "cast_id": 17, "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "order": 4}, {"name": "Michael Palin", "character": "Wise Man #3", "id": 383, "credit_id": "52fe4256c3a36847f80164ff", "cast_id": 18, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 5}, {"name": "Terence Bayler", "character": "Gregory", "id": 10732, "credit_id": "52fe4256c3a36847f8016503", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Carol Cleveland", "character": "Mrs. Gregory", "id": 10733, "credit_id": "52fe4256c3a36847f8016507", "cast_id": 20, "profile_path": "/3QVIw2Lc18O4m3oktTeab6aVLlD.jpg", "order": 7}, {"name": "Kenneth Colley", "character": "Jesus", "id": 10734, "credit_id": "52fe4256c3a36847f801650b", "cast_id": 21, "profile_path": "/yNZF27tBauzUcg6Fw7M2xsRD8IC.jpg", "order": 8}, {"name": "Neil Innes", "character": "A Weedy Samaritan", "id": 70624, "credit_id": "53c82c1b0e0a267ff1004c64", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Charles McKeown", "character": "False Prophet / Blind Man / Giggling Guard / Stig", "id": 374, "credit_id": "53c82c520e0a267ff1004c6b", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "John Young", "character": "Matthias", "id": 179028, "credit_id": "53c82c670e0a267fed004eee", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Gwen Taylor", "character": "Mrs. Big Nose", "id": 10735, "credit_id": "52fe4256c3a36847f801650f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Sue Jones-Davies", "character": "Judith", "id": 10737, "credit_id": "52fe4256c3a36847f8016513", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "John Case", "character": "Pilate's Wife", "id": 10738, "credit_id": "52fe4256c3a36847f8016517", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Chris Langham", "character": "Alfonso / Giggling Guard", "id": 1221000, "credit_id": "53c82d3d0e0a267ffe00505a", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Andrew MacLachlan", "character": "Another Official Stoners Helper / Giggling Guard", "id": 37893, "credit_id": "53c82c960e0a267fe5005083", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Bernard McKenna", "character": "Parvus / Official Stoners Helper / Giggling Guard", "id": 70010, "credit_id": "53c82cac0e0a267ffb004f04", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "George Harrison", "character": "Mr. Papadopolous", "id": 10593, "credit_id": "53c82cde0e0a267fed004ef4", "cast_id": 37, "profile_path": "/4XqXa9nKPOOMPnX6E0oqyDFtvMX.jpg", "order": 18}], "directors": [{"name": "Terry Jones", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f80164a5", "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "id": 10707}], "vote_average": 7.4, "runtime": 94}, "584": {"poster_path": "/3CrNPUulPGbsJIH2ZnLYomGIVrk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 236350661, "overview": "It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of \"dirty\" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.", "video": false, "id": 584, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "2 Fast 2 Furious", "tagline": "How Fast Do You Want It?", "vote_count": 724, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0322259", "adult": false, "backdrop_path": "/8RkLHFm2PK4PO5W0WZA5LMXLZBz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Original Film", "id": 333}, {"name": "Mikona Productions GmbH & Co. KG", "id": 24}], "release_date": "2003-06-02", "popularity": 1.58108437227166, "original_title": "2 Fast 2 Furious", "budget": 76000000, "cast": [{"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe4256c3a36847f801658f", "cast_id": 4, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "52fe4256c3a36847f8016593", "cast_id": 5, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Monica Fuentes", "id": 8170, "credit_id": "52fe4256c3a36847f8016597", "cast_id": 6, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Cole Hauser", "character": "Carter Verone", "id": 6614, "credit_id": "52fe4256c3a36847f801659b", "cast_id": 7, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 3}, {"name": "Ludacris", "character": "Tej", "id": 8171, "credit_id": "52fe4256c3a36847f801659f", "cast_id": 8, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 4}, {"name": "Thom Barry", "character": "Agent Bilkins", "id": 8175, "credit_id": "52fe4256c3a36847f80165a3", "cast_id": 9, "profile_path": "/AhUa78UoZ5oGk5kWiatnDaPxSnO.jpg", "order": 5}, {"name": "James Remar", "character": "Agent Markham", "id": 1736, "credit_id": "52fe4256c3a36847f80165a7", "cast_id": 10, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 6}, {"name": "Devon Aoki", "character": "Suki", "id": 6278, "credit_id": "52fe4256c3a36847f80165ab", "cast_id": 11, "profile_path": "/mytZpvb5lykocoOCDelFy8Eqezm.jpg", "order": 7}, {"name": "Amaury Nolasco", "character": "Orange Julius", "id": 17341, "credit_id": "52fe4256c3a36847f80165af", "cast_id": 12, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 8}, {"name": "Michael Ealy", "character": "Slap Jack", "id": 8177, "credit_id": "52fe4256c3a36847f80165b3", "cast_id": 13, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 9}, {"name": "Jin Auyeung", "character": "Jimmy", "id": 8178, "credit_id": "52fe4256c3a36847f80165b7", "cast_id": 14, "profile_path": "/kQIGxSJSAcc3zK37zRCGuhxdNmL.jpg", "order": 10}, {"name": "Edward Finlay", "character": "Agent Dunn", "id": 8179, "credit_id": "52fe4256c3a36847f80165bb", "cast_id": 15, "profile_path": "/cHgCOdSLSvjYiKwhycwCH5X4Viu.jpg", "order": 11}, {"name": "Mark Boone Junior", "character": "Detective Whitworth", "id": 534, "credit_id": "52fe4256c3a36847f80165bf", "cast_id": 16, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 12}, {"name": "Mo Gallini", "character": "Enrique", "id": 8180, "credit_id": "52fe4256c3a36847f80165c3", "cast_id": 17, "profile_path": "/fkc5N30a7ZvZkCJEnnqh24uQwDN.jpg", "order": 13}, {"name": "Eric Etebari", "character": "Darden", "id": 1015836, "credit_id": "538da3110e0a266712006178", "cast_id": 37, "profile_path": "/bNjZk4EPaItye1szWPkse08TSJZ.jpg", "order": 14}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f801657f", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 6.1, "runtime": 107}, "585": {"poster_path": "/vawVZynP3nxXYdohD6lOXN94b2L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 562816256, "overview": "James Sullivan and Mike Wazowski are monsters, they earn their living scaring children and are the best in the business... even though they're more afraid of the children than they are of them. When a child accidentally enters their world, James and Mike suddenly find that kids are not to be afraid of and they uncover a conspiracy that could threaten all children across the world.", "video": false, "id": 585, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Monsters, Inc.", "tagline": "We Scare Because We Care.", "vote_count": 2697, "homepage": "http://www.pixar.com/featurefilms/inc/", "belongs_to_collection": {"backdrop_path": "/uzKkKhTWGSEdsN2rYanJTVAyTLi.jpg", "poster_path": "/8xHtCUKfre8b4tkpUWU1y67Cnqr.jpg", "id": 137696, "name": "Monsters, Inc. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0198781", "adult": false, "backdrop_path": "/eKBUYeSgGVvztO2MZxD5YMcz6kv.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2001-11-01", "popularity": 2.70777123443634, "original_title": "Monsters, Inc.", "budget": 115000000, "cast": [{"name": "John Goodman", "character": "Sullivan (voice)", "id": 1230, "credit_id": "52fe4256c3a36847f8016903", "cast_id": 31, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Mike (voice)", "id": 7904, "credit_id": "52fe4256c3a36847f8016907", "cast_id": 32, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Mary Gibbs", "character": "Boo (voice)", "id": 7905, "credit_id": "52fe4256c3a36847f801690b", "cast_id": 33, "profile_path": "/cxnX6F7ZmfXmMKcdLuRXa7GKvGz.jpg", "order": 2}, {"name": "Steve Buscemi", "character": "Randall (voice)", "id": 884, "credit_id": "52fe4256c3a36847f801690f", "cast_id": 34, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 3}, {"name": "James Coburn", "character": "Waternoose (voice)", "id": 5563, "credit_id": "52fe4256c3a36847f8016913", "cast_id": 35, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 4}, {"name": "Jennifer Tilly", "character": "Celia (voice)", "id": 7906, "credit_id": "52fe4256c3a36847f8016917", "cast_id": 36, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 5}, {"name": "Bob Peterson", "character": "Roz (voice)", "id": 10, "credit_id": "52fe4256c3a36847f801691b", "cast_id": 37, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 6}, {"name": "John Ratzenberger", "character": "Yeti (voice)", "id": 7907, "credit_id": "52fe4256c3a36847f801691f", "cast_id": 38, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 7}, {"name": "Frank Oz", "character": "Fungus (voice)", "id": 7908, "credit_id": "52fe4256c3a36847f8016923", "cast_id": 39, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 8}, {"name": "Steve Susskind", "character": "Floor Manager (voice)", "id": 7909, "credit_id": "52fe4256c3a36847f8016927", "cast_id": 40, "profile_path": "/asYeLNdPnkPRmRkBk0AZUNBu8Uw.jpg", "order": 10}, {"name": "Bonnie Hunt", "character": "Flint (voice)", "id": 5149, "credit_id": "52fe4256c3a36847f801692b", "cast_id": 41, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 11}, {"name": "Jeff Pidgeon", "character": "Bile (voice)", "id": 7882, "credit_id": "52fe4256c3a36847f801692f", "cast_id": 42, "profile_path": "/yLddkg5HcgbJg00cS13GVBnP0HY.jpg", "order": 12}, {"name": "Samuel Lord Black", "character": "George (voice)", "id": 7910, "credit_id": "52fe4256c3a36847f8016933", "cast_id": 43, "profile_path": "/vExVkYzIGURQkrEQIRlP4qnPcY1.jpg", "order": 13}, {"name": "Jack Angel", "character": "Additional Voices (voice)", "id": 19545, "credit_id": "52fe4258c3a36847f8016e21", "cast_id": 312, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 14}, {"name": "Bob Bergen", "character": "Additional Voices (voice)", "id": 78317, "credit_id": "52fe4258c3a36847f8016e25", "cast_id": 313, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 15}, {"name": "Rodger Bumpass", "character": "Additional Voices (voice)", "id": 70615, "credit_id": "52fe4258c3a36847f8016e29", "cast_id": 314, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 16}, {"name": "Gino Conforti", "character": "Additional Voices (voice)", "id": 74492, "credit_id": "52fe4258c3a36847f8016e2d", "cast_id": 315, "profile_path": "/7EPicshDcPKxAHnHwjYmcgtg7E.jpg", "order": 17}, {"name": "Jennifer Darling", "character": "Additional Voices (voice)", "id": 81843, "credit_id": "52fe4258c3a36847f8016e31", "cast_id": 316, "profile_path": "/yOOVSrq6pK495FB8kZR5zGOTx8x.jpg", "order": 18}, {"name": "Patti Deutsch", "character": "Additional Voices (voice)", "id": 91024, "credit_id": "52fe4258c3a36847f8016e35", "cast_id": 317, "profile_path": "/6eTkh2shxCOo2R90RavfqSzrEY9.jpg", "order": 19}, {"name": "Pete Docter", "character": "Additional Voices (voice)", "id": 12890, "credit_id": "52fe4258c3a36847f8016e39", "cast_id": 318, "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "order": 20}, {"name": "Bobby Edner", "character": "Additional Voices (voice)", "id": 151385, "credit_id": "52fe4258c3a36847f8016e3d", "cast_id": 319, "profile_path": "/lNuwv1mcwqCC7VWzTWz3sHNrvYS.jpg", "order": 21}, {"name": "Ashley Edner", "character": "Additional Voices (voice)", "id": 75331, "credit_id": "52fe4258c3a36847f8016e41", "cast_id": 320, "profile_path": "/60fg89UxBEqyDHSNQWYat2M2yJH.jpg", "order": 22}, {"name": "Paul Eiding", "character": "Additional Voices (voice)", "id": 86006, "credit_id": "52fe4258c3a36847f8016e45", "cast_id": 321, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 23}, {"name": "Katie Scarlettr", "character": "Additional Voices (voice)", "id": 1268105, "credit_id": "52fe4258c3a36847f8016e49", "cast_id": 322, "profile_path": "/4QBjiMXMqUSysOEUjxw1Zhcmp2t.jpg", "order": 24}, {"name": "Bill Farmer", "character": "Additional Voices (voice)", "id": 84213, "credit_id": "52fe4258c3a36847f8016e4d", "cast_id": 323, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 25}, {"name": "Keegan Farrell", "character": "Additional Voices (voice)", "id": 198810, "credit_id": "52fe4258c3a36847f8016e51", "cast_id": 324, "profile_path": null, "order": 26}, {"name": "Pat Fraley", "character": "Additional Voices (voice)", "id": 34737, "credit_id": "52fe4258c3a36847f8016e55", "cast_id": 325, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 27}, {"name": "Teresa Ganzel", "character": "Additional Voices (voice)", "id": 117081, "credit_id": "52fe4258c3a36847f8016e59", "cast_id": 326, "profile_path": "/4cIwealxv1bizPJks34Gfk7okBF.jpg", "order": 28}, {"name": "Taylor Gifaldi", "character": "Additional Voices (voice)", "id": 167666, "credit_id": "52fe4258c3a36847f8016e5d", "cast_id": 327, "profile_path": "/fKBPTq7D02a2wbcbrEnlZTVngAA.jpg", "order": 29}, {"name": "Marc John Jefferies", "character": "Additional Voices (voice)", "id": 62646, "credit_id": "52fe4258c3a36847f8016e61", "cast_id": 328, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 30}, {"name": "Joe Lala", "character": "Additional Voices (voice)", "id": 167667, "credit_id": "52fe4258c3a36847f8016e65", "cast_id": 329, "profile_path": "/ssPI0vk4TimoYYrMaHYDcwAO2pq.jpg", "order": 31}, {"name": "Noah Luke", "character": "Additional Voices (voice)", "id": 1231571, "credit_id": "52fe4258c3a36847f8016e69", "cast_id": 330, "profile_path": null, "order": 32}, {"name": "Sherry Lynn", "character": "Additional Voices (voice)", "id": 214701, "credit_id": "52fe4258c3a36847f8016e6d", "cast_id": 331, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 33}, {"name": "Danny Mann", "character": "Additional Voices (voice)", "id": 52699, "credit_id": "52fe4258c3a36847f8016e71", "cast_id": 332, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 34}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "52fe4258c3a36847f8016e75", "cast_id": 333, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 35}, {"name": "Mickie McGowan", "character": "Additional Voices (voice)", "id": 84493, "credit_id": "52fe4258c3a36847f8016e79", "cast_id": 334, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 36}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "52fe4258c3a36847f8016e7d", "cast_id": 335, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 37}, {"name": "Kay Panabaker", "character": "Additional Voices (voice)", "id": 38703, "credit_id": "52fe4258c3a36847f8016e81", "cast_id": 336, "profile_path": "/ucba2M5Mt1Roa1fJVNA7PRybjMm.jpg", "order": 38}, {"name": "Bret 'Brook' Parker", "character": "Trailer Mom (voice) (as Bret Parker)", "id": 7998, "credit_id": "52fe4258c3a36847f8016e85", "cast_id": 337, "profile_path": "/776ZYJGQO4Wer1cDq9XXAZ0z4C1.jpg", "order": 39}, {"name": "Philip Proctor", "character": "Additional Voices (voice)", "id": 61969, "credit_id": "52fe4258c3a36847f8016e89", "cast_id": 338, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 40}, {"name": "Josh Qualtieri", "character": "Additional Voices (voice)", "id": 1268117, "credit_id": "52fe4258c3a36847f8016e8d", "cast_id": 339, "profile_path": "/xTZ3I73gw04EqFum07pxRhG34Jw.jpg", "order": 41}, {"name": "Guido Quaroni", "character": "Additional Voices (voice)", "id": 15898, "credit_id": "52fe4258c3a36847f8016e91", "cast_id": 340, "profile_path": "/qfnm3XzrMljLhU3HoNfYk0YGoBw.jpg", "order": 42}, {"name": "Jan Rabson", "character": "Additional Voices (voice)", "id": 157626, "credit_id": "52fe4258c3a36847f8016e95", "cast_id": 341, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 43}, {"name": "Lisa Raggio", "character": "Additional Voices (voice)", "id": 152963, "credit_id": "52fe4258c3a36847f8016e99", "cast_id": 342, "profile_path": "/aYMBogWREezqmVD9PBeJ9y5l8GU.jpg", "order": 44}, {"name": "Joe Ranft", "character": "Additional Voices (voice)", "id": 7911, "credit_id": "52fe4258c3a36847f8016e9d", "cast_id": 343, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 45}, {"name": "Katherine Ringgold", "character": "Additional Voices (voice)", "id": 8066, "credit_id": "52fe4258c3a36847f8016ea1", "cast_id": 345, "profile_path": "/se4SkPHGzo7RHi9kXbfgyFvLErH.jpg", "order": 46}, {"name": "Sophia Ranft", "character": "Additional Voices (voice)", "id": 1268123, "credit_id": "52fe4258c3a36847f8016eb9", "cast_id": 351, "profile_path": null, "order": 47}, {"name": "Bob Scott", "character": "Additional Voices (voice)", "id": 954958, "credit_id": "52fe4258c3a36847f8016ea5", "cast_id": 346, "profile_path": null, "order": 48}, {"name": "Jim Thornton", "character": "Additional Voices (voice)", "id": 1156411, "credit_id": "52fe4258c3a36847f8016ead", "cast_id": 348, "profile_path": "/aaRo50aRLGJCaqRVZCkJyUkHiZY.jpg", "order": 50}, {"name": "Lee Unkrich", "character": "Additional Voices (voice)", "id": 8, "credit_id": "52fe4258c3a36847f8016eb1", "cast_id": 349, "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "order": 51}, {"name": "Wallace Shawn", "character": "Rex (outtakes) (voice) (uncredited)", "id": 12900, "credit_id": "52fe4258c3a36847f8016eb5", "cast_id": 350, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 52}, {"name": "Dan Gerson", "character": "Needleman / Smitty (voice)", "id": 7884, "credit_id": "53084060c3a3680b110001ae", "cast_id": 352, "profile_path": "/fB1vefUJ9hwKewW5BafNQImsslC.jpg", "order": 53}, {"name": "David Silverman", "character": "Additional Voices (voice)", "id": 197, "credit_id": "53084362925141110e0019ee", "cast_id": 353, "profile_path": "/oatUUj2riEaUSoncMv1Ulheffog.jpg", "order": 54}], "directors": [{"name": "Lee Unkrich", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f801685d", "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "id": 8}, {"name": "David Silverman", "department": "Directing", "job": "Director", "credit_id": "52fe4256c3a36847f8016863", "profile_path": "/oatUUj2riEaUSoncMv1Ulheffog.jpg", "id": 197}, {"name": "Pete Docter", "department": "Directing", "job": "Director", "credit_id": "52fe4257c3a36847f8016e01", "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "id": 12890}], "vote_average": 7.1, "runtime": 92}, "587": {"poster_path": "/6DRFdlNZpAaEt7eejsbAlJGgaM7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122919055, "overview": "The story revolves around a dying father and his son, who is trying to learn more about his dad by piecing together the stories he has gathered over the years. The son winds up re-creating his father's elusive life in a series of legends and myths inspired by the few facts he knows. Through these tales, the son begins to understand his father's great feats and his great failings.", "video": false, "id": 587, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Big Fish", "tagline": "An adventure as big as life itself.", "vote_count": 469, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0319061", "adult": false, "backdrop_path": "/kK1rVmqk8pLTuK5ZE7eVdCSqqHL.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Jinks/Cohen Company", "id": 2721}, {"name": "The Zanuck Company", "id": 80}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2003-12-10", "popularity": 0.932861951698831, "original_title": "Big Fish", "budget": 70000000, "cast": [{"name": "Ewan McGregor", "character": "Younger Ed Bloom", "id": 3061, "credit_id": "52fe4258c3a36847f8016fff", "cast_id": 5, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Albert Finney", "character": "Older Ed Bloom", "id": 3926, "credit_id": "52fe4258c3a36847f801706f", "cast_id": 24, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 1}, {"name": "Billy Crudup", "character": "Will Bloom", "id": 8289, "credit_id": "52fe4258c3a36847f8017073", "cast_id": 25, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 2}, {"name": "Jessica Lange", "character": "Older Sandra Bloom", "id": 4431, "credit_id": "52fe4258c3a36847f8017077", "cast_id": 26, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 3}, {"name": "Helena Bonham Carter", "character": "Younger & Older Jenny/The Witch", "id": 1283, "credit_id": "52fe4258c3a36847f801707b", "cast_id": 27, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 4}, {"name": "Alison Lohman", "character": "Younger Sandra Bloom", "id": 8291, "credit_id": "52fe4258c3a36847f801707f", "cast_id": 28, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Josephine", "id": 8293, "credit_id": "52fe4258c3a36847f8017083", "cast_id": 29, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Robert Guillaume", "character": "Older Dr. Bennett", "id": 8294, "credit_id": "52fe4258c3a36847f8017087", "cast_id": 30, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 7}, {"name": "Matthew McGrory", "character": "Karl the Giant", "id": 8295, "credit_id": "52fe4258c3a36847f801708b", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "David Denman", "character": "Don Price - Age 18-22", "id": 62562, "credit_id": "52fe4258c3a36847f8017095", "cast_id": 33, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 9}, {"name": "Missi Pyle", "character": "Mildred", "id": 1294, "credit_id": "52fe4258c3a36847f8017099", "cast_id": 34, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 10}, {"name": "Loudon Wainwright III", "character": "Beamen", "id": 84848, "credit_id": "52fe4258c3a36847f801709d", "cast_id": 35, "profile_path": "/dXknB49LSGxMcmhYGch7hcsYFY1.jpg", "order": 11}, {"name": "Arlene Tai", "character": "Jing", "id": 1116140, "credit_id": "52fe4258c3a36847f80170a1", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Ada Tai", "character": "Ping", "id": 1116141, "credit_id": "52fe4258c3a36847f80170a5", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Steve Buscemi", "character": "Norther Winslow", "id": 884, "credit_id": "52fe4258c3a36847f80170a9", "cast_id": 38, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 14}, {"name": "Danny DeVito", "character": "Amos Calloway", "id": 518, "credit_id": "52fe4258c3a36847f80170ad", "cast_id": 39, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 15}, {"name": "Deep Roy", "character": "Mr. Soggybottom", "id": 1295, "credit_id": "52fe4258c3a36847f80170b1", "cast_id": 40, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 16}, {"name": "Miley Cyrus", "character": "Ruthie - Age 8", "id": 76594, "credit_id": "52fe4258c3a36847f80170b5", "cast_id": 41, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 17}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4258c3a36847f8016fef", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 7.2, "runtime": 125}, "588": {"poster_path": "/862ko2hKHE7RZt2GOWYIJjQQAnU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97607453, "overview": "A girl has a bad case of sleep walking and while dreaming talks about a place called Silent Hill. Her parents take her to this place that she only mentions in dreams yet in an attempt to get there they crash their car and loose their daughter. They begin searching for her yet not knowing the dangers that lurk in Silent Hill.", "video": false, "id": 588, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Silent Hill", "tagline": "We've been expecting you.", "vote_count": 261, "homepage": "http://www.sonypictures.com/homevideo/silenthill/", "belongs_to_collection": {"backdrop_path": "/yBpC88ucxLLjD7rXqfA4Irk92ka.jpg", "poster_path": "/4cJgWqtVfVxxzpqyKkUtClHY0VM.jpg", "id": 64748, "name": "Silent Hill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384537", "adult": false, "backdrop_path": "/6tfW4BjdgwuYSD7gaEMEEPoDcpH.jpg", "production_companies": [{"name": "Davis-Films", "id": 342}, {"name": "Konami Corporation Ltd.", "id": 343}], "release_date": "2006-04-21", "popularity": 0.817931933063222, "original_title": "Silent Hill", "budget": 50000000, "cast": [{"name": "Radha Mitchell", "character": "Rose Da Silva", "id": 8329, "credit_id": "52fe4258c3a36847f8017167", "cast_id": 13, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 0}, {"name": "Sean Bean", "character": "Christopher Da Silva", "id": 48, "credit_id": "52fe4258c3a36847f801716b", "cast_id": 14, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 1}, {"name": "Laurie Holden", "character": "Cybil Bennett", "id": 8332, "credit_id": "52fe4258c3a36847f801716f", "cast_id": 15, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 2}, {"name": "Deborah Kara Unger", "character": "Dahlia Gillespie", "id": 13549, "credit_id": "52fe4258c3a36847f8017229", "cast_id": 51, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 3}, {"name": "Kim Coates", "character": "Officer Thomas Gucci", "id": 8335, "credit_id": "52fe4258c3a36847f8017173", "cast_id": 16, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 4}, {"name": "Tanya Allen", "character": "Anna", "id": 8336, "credit_id": "52fe4258c3a36847f8017177", "cast_id": 17, "profile_path": "/v60RHxBRJsmnjxMBmM5BTm3MBqo.jpg", "order": 5}, {"name": "Alice Krige", "character": "Christabella", "id": 2506, "credit_id": "52fe4258c3a36847f801717b", "cast_id": 18, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 6}, {"name": "Jodelle Ferland", "character": "Sharon/Alessa", "id": 8338, "credit_id": "52fe4258c3a36847f801717f", "cast_id": 19, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 7}, {"name": "Colleen Williams", "character": "Archivist", "id": 8341, "credit_id": "52fe4258c3a36847f8017183", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ron Gabriel", "character": "Old Mechanic", "id": 8343, "credit_id": "52fe4258c3a36847f8017187", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Derek Ritschel", "character": "Young Police Officer", "id": 8345, "credit_id": "52fe4258c3a36847f801718b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Eve Crawford", "character": "Sister Margaret", "id": 8347, "credit_id": "52fe4258c3a36847f801718f", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Amanda Hiebert", "character": "Gas Attendant", "id": 8348, "credit_id": "52fe4258c3a36847f8017193", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Nicky Guadagni", "character": "Distressed Woman", "id": 5889, "credit_id": "52fe4258c3a36847f8017197", "cast_id": 25, "profile_path": "/2HJwL5EmMQSggNKfO9xc6DANmL6.jpg", "order": 13}, {"name": "Roberto Campanella", "character": "Red Pyramid/Janitor/Colin", "id": 8352, "credit_id": "52fe4258c3a36847f801719b", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Maxine Dumont", "character": "Christabella's Aide", "id": 8359, "credit_id": "52fe4258c3a36847f801723f", "cast_id": 55, "profile_path": "/wnk4f1LZT8pqu4a3wlCXHvTVHet.jpg", "order": 15}], "directors": [{"name": "Christophe Gans", "department": "Directing", "job": "Director", "credit_id": "52fe4258c3a36847f8017127", "profile_path": "/8tFxHa7RT3MOBTs72j9pSwkG6MJ.jpg", "id": 8296}], "vote_average": 6.3, "runtime": 125}, "590": {"poster_path": "/vRTqBRCLGiZNITXfdhGZd3tZ7Qh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108846072, "overview": "\"The Hours\" is the story of three women searching for more potent, meaningful lives. Each is alive at a different time and place, all are linked by their yearnings and their fears. Their stories intertwine, and finally come together in a surprising, transcendent moment of shared recognition.", "video": false, "id": 590, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hours", "tagline": "The time to hide is over. The time to regret is gone. The time to live is now.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0274558", "adult": false, "backdrop_path": "/yGdO0KleREN50MRxjPDnHcbvAVL.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Miramax Films", "id": 14}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2002-12-27", "popularity": 0.943173060696782, "original_title": "The Hours", "budget": 25000000, "cast": [{"name": "Nicole Kidman", "character": "Virginia Woolf", "id": 2227, "credit_id": "52fe4258c3a36847f80172a1", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Laura Brown", "id": 1231, "credit_id": "52fe4258c3a36847f80172a5", "cast_id": 6, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Meryl Streep", "character": "Clarissa Vaughan", "id": 5064, "credit_id": "52fe4258c3a36847f80172a9", "cast_id": 7, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Leonard Woolf", "id": 8435, "credit_id": "52fe4258c3a36847f80172ad", "cast_id": 8, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Miranda Richardson", "character": "Vanessa Bell", "id": 8436, "credit_id": "52fe4258c3a36847f80172b1", "cast_id": 9, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 4}, {"name": "George Loftus", "character": "Quentin Bell", "id": 8439, "credit_id": "52fe4258c3a36847f80172b5", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Charley Ramm", "character": "Julian Bell", "id": 8440, "credit_id": "52fe4258c3a36847f80172b9", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Sophie Wyburd", "character": "Angelica Bell", "id": 8441, "credit_id": "52fe4258c3a36847f80172bd", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Lyndsey Marshal", "character": "Lottie Hope", "id": 8442, "credit_id": "52fe4258c3a36847f80172c1", "cast_id": 13, "profile_path": "/r661RpVSsy6cS7m5adhT8QFydPf.jpg", "order": 8}, {"name": "Linda Bassett", "character": "Nelly Boxall", "id": 8443, "credit_id": "52fe4258c3a36847f80172c5", "cast_id": 14, "profile_path": "/raya4YIZ9ArIxl1nVvj1Aoo7XQj.jpg", "order": 9}, {"name": "Christian Coulson", "character": "Ralph Partridge", "id": 8444, "credit_id": "52fe4258c3a36847f80172c9", "cast_id": 15, "profile_path": "/dfbirdWAL0deUUtIV7GD1T1PGWp.jpg", "order": 10}, {"name": "Michael Culkin", "character": "Doctor", "id": 8445, "credit_id": "52fe4258c3a36847f80172cd", "cast_id": 16, "profile_path": "/ROLw9EhtO44DPwdRrmX6RyFPZN.jpg", "order": 11}, {"name": "John C. Reilly", "character": "Dan Brown", "id": 4764, "credit_id": "52fe4258c3a36847f80172d1", "cast_id": 17, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 12}, {"name": "Jack Rovello", "character": "Richie", "id": 8446, "credit_id": "52fe4258c3a36847f80172d5", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Toni Collette", "character": "Kitty", "id": 3051, "credit_id": "52fe4258c3a36847f80172d9", "cast_id": 19, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 14}, {"name": "Ed Harris", "character": "Richard Brown", "id": 228, "credit_id": "52fe4258c3a36847f80172dd", "cast_id": 20, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 15}, {"name": "Allison Janney", "character": "Sally Lester", "id": 19, "credit_id": "52fe4258c3a36847f80172e1", "cast_id": 21, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 16}, {"name": "Claire Danes", "character": "Julia Vaughan", "id": 6194, "credit_id": "52fe4258c3a36847f80172e5", "cast_id": 22, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 17}, {"name": "Jeff Daniels", "character": "Louis Waters", "id": 8447, "credit_id": "52fe4258c3a36847f80172e9", "cast_id": 23, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 18}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe4258c3a36847f8017291", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 6.6, "runtime": 114}, "591": {"poster_path": "/e5Tlc0mNhb9TvgCZknmnd3XaaKU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MT", "name": "Malta"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 758239851, "overview": "When the curator of the Louvre is found murdered in the famed museum's hallowed halls, Harvard professor Robert Langdon and cryptographer Sophie Neve must untangle a deadly web of deceit involving the works of Leonardo da Vinci.", "video": false, "id": 591, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Da Vinci Code", "tagline": "So Dark The Con Of Man", "vote_count": 812, "homepage": "http://www.sonypictures.com/homevideo/thedavincicode/index.html", "belongs_to_collection": {"backdrop_path": "/j1IqpLhCypllamjKe6C2RstjfEQ.jpg", "poster_path": "/8AeWdpMobmSlo4G2eY4w8REdIDe.jpg", "id": 115776, "name": "Robert Langdon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0382625", "adult": false, "backdrop_path": "/vknb1AHOKOia2lGaGo4orNsTSXf.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Skylark Productions", "id": 8253}, {"name": "Government of Malta", "id": 19927}], "release_date": "2006-05-19", "popularity": 1.80172938318536, "original_title": "The Da Vinci Code", "budget": 125000000, "cast": [{"name": "Tom Hanks", "character": "Dr. Robert Langdon", "id": 31, "credit_id": "52fe4259c3a36847f8017445", "cast_id": 33, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Audrey Tautou", "character": "Sophie Neveu", "id": 2405, "credit_id": "52fe4259c3a36847f8017441", "cast_id": 32, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Sir Leigh Teabing", "id": 1327, "credit_id": "52fe4259c3a36847f8017449", "cast_id": 34, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Silas", "id": 6162, "credit_id": "52fe4259c3a36847f801744d", "cast_id": 35, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Jean Reno", "character": "Bezu Face", "id": 1003, "credit_id": "52fe4259c3a36847f8017451", "cast_id": 36, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Alfred Molina", "character": "Manuel Aringarosa", "id": 658, "credit_id": "52fe4259c3a36847f8017455", "cast_id": 37, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 5}, {"name": "Jean-Yves Berteloot", "character": "R\u00e9my Jean", "id": 34259, "credit_id": "52fe4259c3a36847f8017459", "cast_id": 38, "profile_path": "/fJzUeNDhSZmKSmjaIW5dHhTwdYS.jpg", "order": 6}, {"name": "Jean-Pierre Marielle", "character": "Jacques Saunier", "id": 20795, "credit_id": "52fe4259c3a36847f801745d", "cast_id": 39, "profile_path": "/ft0uW6QrcTxRikAEX2diD6pKFcL.jpg", "order": 7}, {"name": "J\u00fcrgen Prochnow", "character": "Andr\u00e9 Vernet", "id": 920, "credit_id": "52fe4259c3a36847f8017461", "cast_id": 41, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 8}, {"name": "Marie-Fran\u00e7oise Audollent", "character": "Soeur Sandrine", "id": 38885, "credit_id": "52fe4259c3a36847f8017465", "cast_id": 42, "profile_path": "/oDLfOJnv982yuKfDrXXKllpBBmG.jpg", "order": 9}, {"name": "Agathe Natanson", "character": "Ritual Priestress", "id": 28186, "credit_id": "52fe4259c3a36847f8017469", "cast_id": 43, "profile_path": "/8fGakV7phLAfT8yvZvkNAfc4yrE.jpg", "order": 10}, {"name": "Tina Maskell", "character": "Mother of Silas", "id": 38886, "credit_id": "52fe4259c3a36847f801746d", "cast_id": 44, "profile_path": "/3YVQpTswDkDRdcV4p6JPPMC4q3h.jpg", "order": 11}, {"name": "Peter Pedrero", "character": "Father of Silas", "id": 38887, "credit_id": "52fe4259c3a36847f8017471", "cast_id": 45, "profile_path": "/puBh7leRbL0RIfqQGUUgUYPOjTo.jpg", "order": 12}, {"name": "Seth Gabel", "character": "Michael", "id": 38888, "credit_id": "52fe4259c3a36847f8017475", "cast_id": 46, "profile_path": "/luxC39d38CENJY01TeHJb4M9CFk.jpg", "order": 13}, {"name": "Dhaffer L'Abidine", "character": "L'agent du PTS", "id": 129014, "credit_id": "52fe4259c3a36847f8017479", "cast_id": 47, "profile_path": "/bVksgnm8Wj3RsqV4YgTP9LwME6A.jpg", "order": 14}, {"name": "Etienne Chicot", "character": "Lt. Collet", "id": 150792, "credit_id": "52fe4259c3a36847f801747d", "cast_id": 48, "profile_path": "/pYbudifKWa0sYY5QkQc5YKLHfMf.jpg", "order": 15}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f80173a1", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.2, "runtime": 149}, "592": {"poster_path": "/un30a9MWgCzMIBpOp3P29W5eHvZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4420000, "overview": "The Conversation is a Francis Ford Coppola thriller from 1974 about a professional surveillance man who is hired to record the conversations between two workers. Yet it looks like he\u2019s gotten into more than he\u2019s getting paid for as information about a murder may have been recorded.", "video": false, "id": 592, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "The Conversation", "tagline": "Harry Caul is an invader of privacy. The best in the business.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071360", "adult": false, "backdrop_path": "/oVqcMj0DqZ1CjtCjve7eX5XjYaw.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "The Directors Company", "id": 14120}, {"name": "The Coppola Company", "id": 536}], "release_date": "1974-04-07", "popularity": 0.617208446442021, "original_title": "The Conversation", "budget": 16000000, "cast": [{"name": "Gene Hackman", "character": "Harry Caul", "id": 193, "credit_id": "52fe4259c3a36847f8017513", "cast_id": 18, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "John Cazale", "character": "Stan", "id": 3096, "credit_id": "52fe4259c3a36847f8017517", "cast_id": 19, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 1}, {"name": "Frederic Forrest", "character": "Mark", "id": 8351, "credit_id": "52fe4259c3a36847f801752f", "cast_id": 25, "profile_path": "/fCHsWrGcgfREM7e9POq6FCFGvR9.jpg", "order": 2}, {"name": "Cindy Williams", "character": "Ann", "id": 8434, "credit_id": "52fe4259c3a36847f801751b", "cast_id": 20, "profile_path": "/4lOJA6lyFhJvhlkgH6RRDiq9kXI.jpg", "order": 3}, {"name": "Harrison Ford", "character": "Martin Stett", "id": 3, "credit_id": "52fe4259c3a36847f801751f", "cast_id": 21, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 4}, {"name": "Teri Garr", "character": "Amy Fredericks", "id": 8437, "credit_id": "52fe4259c3a36847f8017523", "cast_id": 22, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 5}, {"name": "Allen Garfield", "character": "William P. 'Bernie' Moran", "id": 922, "credit_id": "52fe4259c3a36847f801752b", "cast_id": 24, "profile_path": "/wa8WAH20QGm1fLPR5Wrbja5C5rx.jpg", "order": 6}, {"name": "Elizabeth MacRae", "character": "Meredith", "id": 8438, "credit_id": "52fe4259c3a36847f8017527", "cast_id": 23, "profile_path": "/wjOm2hIoaHNj9cjM4H6oG4EaVHJ.jpg", "order": 7}, {"name": "Robert Duvall", "character": "The Director", "id": 3087, "credit_id": "546be00e925141304c0000f0", "cast_id": 27, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 8}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f80174b5", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 7.0, "runtime": 113}, "593": {"poster_path": "/pjarQzkcXDmNKi75m2FhXexvR6m.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}], "revenue": 0, "overview": "Ground control has been receiving strange transmissions from the three remaining residents of the Solaris space station. When cosmonaut and psychologist Kris Kelvin is sent to investigate, he experiences the strange phenomena that afflict the Solaris crew, sending him on a voyage into the darkest recesses of his own consciousness. Based on the novel by the same name from Polish author Stanislaw Lem.", "video": false, "id": 593, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Solaris", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0069293", "adult": false, "backdrop_path": "/6bPs1rIUOACluLosyh5EGw7ZYNj.jpg", "production_companies": [{"name": "Mosfilm", "id": 5120}], "release_date": "1972-03-20", "popularity": 0.910020921523035, "original_title": "\u0421\u043e\u043b\u044f\u0440\u0438\u0441", "budget": 0, "cast": [{"name": "Donatas Banionis", "character": "Kris Kelvin", "id": 1190206, "credit_id": "52fe4259c3a36847f80175c5", "cast_id": 28, "profile_path": "/hbeqbytpzJ99rQwhcYipwVq4qJS.jpg", "order": 0}, {"name": "Natalya Bondarchuk", "character": "Hari", "id": 1190211, "credit_id": "52fe4259c3a36847f80175c9", "cast_id": 29, "profile_path": "/xO2yG9TDVs8929L9phBo662EeUw.jpg", "order": 1}, {"name": "J\u00fcri J\u00e4rvet", "character": "Dr. Snaut", "id": 8474, "credit_id": "52fe4259c3a36847f80175a3", "cast_id": 18, "profile_path": "/sj3jlIihox7yRwn7UpBCpeUj89U.jpg", "order": 2}, {"name": "Anatoliy Solonitsyn", "character": "Dr. Sartorius", "id": 8475, "credit_id": "52fe4259c3a36847f80175a7", "cast_id": 19, "profile_path": "/mTz5gtiX2Y8B5TajEjQbnTTXlgP.jpg", "order": 3}, {"name": "Nikolay Grinko", "character": "Kelvin's Father", "id": 1190992, "credit_id": "52fe4259c3a36847f80175cd", "cast_id": 31, "profile_path": "/kSppXUS2WdGwVSNFZZpmXCdlKia.jpg", "order": 4}, {"name": "Vladislav Dvorzhetsky", "character": "Henri Berton", "id": 8476, "credit_id": "52fe4259c3a36847f80175ab", "cast_id": 20, "profile_path": "/MyFhOpKqk6BnSeDpsp1cw3amyp.jpg", "order": 5}, {"name": "Georgiy Teykh", "character": "Prof. Messenger", "id": 564897, "credit_id": "53d15307c3a368776a00a6a3", "cast_id": 32, "profile_path": "/ld14WJzJrrbHNfwNDV1QEkbgokr.jpg", "order": 6}, {"name": "Sos Sargsyan", "character": "Dr. Gibarian", "id": 8478, "credit_id": "52fe4259c3a36847f80175af", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Olga Barnet", "character": "Kelvin's Mother", "id": 8479, "credit_id": "52fe4259c3a36847f80175b3", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Tamara Ogorodnikova", "character": "Anna", "id": 8480, "credit_id": "52fe4259c3a36847f80175b7", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Andrei Tarkovsky", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f8017563", "profile_path": "/kHK6uZclCj8ZHOZRI9Hq8Q8YXOg.jpg", "id": 8452}], "vote_average": 7.7, "runtime": 167}, "594": {"poster_path": "/f4Dup6awDfDqAHKgWqNJ2HFw1qN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219417255, "overview": "Viktor Navorski is a man without a country; his plane took off just as a coup d'etat exploded in his homeland, leaving it in shambles, and now he's stranded at Kennedy Airport, where he's holding a passport that nobody recognizes. While quarantined in the transit lounge until authorities can figure out what to do with him, Viktor simply goes on living -- and courts romance with a beautiful flight attendant.", "video": false, "id": 594, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Terminal", "tagline": "Life is waiting.", "vote_count": 551, "homepage": "http://www.theterminal-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0362227", "adult": false, "backdrop_path": "/lCSjseei1M2vqmuzxadJUiL8x5D.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2004-06-17", "popularity": 1.04011947150959, "original_title": "The Terminal", "budget": 60000000, "cast": [{"name": "Tom Hanks", "character": "Viktor Navorski", "id": 31, "credit_id": "52fe4259c3a36847f801762f", "cast_id": 4, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Amelia Warren", "id": 1922, "credit_id": "52fe4259c3a36847f8017633", "cast_id": 5, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Stanley Tucci", "character": "Frank Dixon", "id": 2283, "credit_id": "52fe4259c3a36847f8017637", "cast_id": 6, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 2}, {"name": "Chi McBride", "character": "Mulroy", "id": 8687, "credit_id": "52fe4259c3a36847f801763b", "cast_id": 7, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 3}, {"name": "Diego Luna", "character": "Enrique Cruz", "id": 8688, "credit_id": "52fe4259c3a36847f801763f", "cast_id": 8, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 4}, {"name": "Barry Shabaka Henley", "character": "Thurman", "id": 8689, "credit_id": "52fe4259c3a36847f8017643", "cast_id": 9, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 5}, {"name": "Kumar Pallana", "character": "Gupta Rajan", "id": 8690, "credit_id": "52fe4259c3a36847f8017647", "cast_id": 10, "profile_path": "/emTPxZIt9j8d4FcKMSpX3eDq0tO.jpg", "order": 6}, {"name": "Zoe Saldana", "character": "Torres", "id": 8691, "credit_id": "52fe4259c3a36847f801764b", "cast_id": 11, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 7}, {"name": "Eddie Jones", "character": "Salchak", "id": 8692, "credit_id": "52fe4259c3a36847f801764f", "cast_id": 12, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 8}, {"name": "Jude Ciccolella", "character": "Karl Iverson", "id": 8693, "credit_id": "52fe4259c3a36847f8017653", "cast_id": 13, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 9}, {"name": "Corey Reynolds", "character": "Waylin", "id": 8694, "credit_id": "52fe4259c3a36847f8017657", "cast_id": 14, "profile_path": "/faEdK8pyxXUuFsNGBTr26ybZd5l.jpg", "order": 10}, {"name": "Guillermo D\u00edaz", "character": "Bobby Alima", "id": 8695, "credit_id": "52fe4259c3a36847f801765b", "cast_id": 15, "profile_path": "/hnWjRRud2n2rDI6NbaeSIeEOMcP.jpg", "order": 11}, {"name": "Rini Bell", "character": "Nadia", "id": 8696, "credit_id": "52fe4259c3a36847f801765f", "cast_id": 16, "profile_path": "/esSI9X2EoKEMDyp6ntjIkJDVYqk.jpg", "order": 12}, {"name": "Stephen Mendel", "character": "Steward First Class", "id": 8697, "credit_id": "52fe4259c3a36847f8017663", "cast_id": 17, "profile_path": "/dPdVvIMpclp64Q7DWbQHcUVCfLB.jpg", "order": 13}, {"name": "Valeri Nikolayev", "character": "Milodragovich", "id": 8698, "credit_id": "52fe4259c3a36847f8017667", "cast_id": 18, "profile_path": "/tGqjecLgqTQk96mhLMYEnkgA0eI.jpg", "order": 14}, {"name": "Michael Nouri", "character": "Max", "id": 8699, "credit_id": "52fe4259c3a36847f801766b", "cast_id": 19, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 15}, {"name": "Sasha Spielberg", "character": "Lucy", "id": 8700, "credit_id": "52fe4259c3a36847f801766f", "cast_id": 20, "profile_path": "/3ltMYYXQ6lZUxqLiAsTSn29cVCS.jpg", "order": 16}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f801761f", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.9, "runtime": 128}, "595": {"poster_path": "/gQg6sPYfNTUlf8wEtydzWl09RyR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13129846, "overview": "To Kill A Mockingbird is the film adaptation of the classic book by Harper Lee. The film tells the story of a child in a small American town in the 1930\u2019s where color prejudice, racial hatred, and taking the law into your own hands were everyday events. Gregory Peck would receive an Oscar for his excellent portrayal of a single father named Atticus Finch.", "video": false, "id": 595, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "To Kill a Mockingbird", "tagline": "If you have read the novel, you will relive every treasured moment... If not, a deeply moving experience awaits you!", "vote_count": 107, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056592", "adult": false, "backdrop_path": "/bicuIvUMD8LTK5QFtSRlq1Nz0Aj.jpg", "production_companies": [{"name": "Brentwood Productions", "id": 24308}, {"name": "Universal International Pictures (UI)", "id": 10330}, {"name": "Pakula-Mulligan", "id": 1511}], "release_date": "1962-12-25", "popularity": 0.971500857495895, "original_title": "To Kill a Mockingbird", "budget": 2000000, "cast": [{"name": "Gregory Peck", "character": "Atticus Finch", "id": 8487, "credit_id": "52fe4259c3a36847f8017735", "cast_id": 8, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "Mary Badham", "character": "Jean Louise 'Scout' Finch", "id": 8488, "credit_id": "52fe4259c3a36847f8017739", "cast_id": 9, "profile_path": "/c4CQsZG9GiTxrNr9iENrwFff51O.jpg", "order": 1}, {"name": "Phillip Alford", "character": "Jeremy 'Jem' Finch", "id": 8489, "credit_id": "52fe4259c3a36847f801773d", "cast_id": 10, "profile_path": "/lpyYiv5vilyhk57u3vwK034k9l4.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Arthur 'Boo' Radley", "id": 3087, "credit_id": "52fe4259c3a36847f8017741", "cast_id": 11, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "John Megna", "character": "Charles Baker 'Dill' Harris", "id": 8490, "credit_id": "52fe4259c3a36847f8017745", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Frank Overton", "character": "Sheriff Heck Tate", "id": 6838, "credit_id": "52fe4259c3a36847f8017749", "cast_id": 13, "profile_path": "/5XRnGQab6s3Eql4TjPOpNqO0heE.jpg", "order": 5}, {"name": "Rosemary Murphy", "character": "Maudie Atkinson", "id": 8492, "credit_id": "52fe4259c3a36847f801774d", "cast_id": 14, "profile_path": "/mNrRc207chuOUgNizM0cmTfwDxP.jpg", "order": 6}, {"name": "Ruth White", "character": "Mrs. Dubose", "id": 8493, "credit_id": "52fe4259c3a36847f8017751", "cast_id": 15, "profile_path": "/fpz3aVtyHw3luNQxoRkYBlOOqIa.jpg", "order": 7}, {"name": "Brock Peters", "character": "Tom Robinson", "id": 2112, "credit_id": "52fe4259c3a36847f8017755", "cast_id": 16, "profile_path": "/iFSHbqBaOKiqsZFpUteqbCJQmR7.jpg", "order": 8}, {"name": "Estelle Evans", "character": "Calpurnia", "id": 8494, "credit_id": "52fe4259c3a36847f8017759", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Alice Ghostley", "character": "Aunt Stephanie Crawford", "id": 8495, "credit_id": "52fe4259c3a36847f801775d", "cast_id": 18, "profile_path": "/byH2NPrSia2OkluSbvAS4HvFU07.jpg", "order": 10}, {"name": "Paul Fix", "character": "Judge Taylor", "id": 8496, "credit_id": "52fe4259c3a36847f8017761", "cast_id": 19, "profile_path": "/bFJC3Qfckylu6T1lyMBEqUaDWCF.jpg", "order": 11}, {"name": "Collin Wilcox", "character": "Mayella Violet Ewell", "id": 8497, "credit_id": "52fe4259c3a36847f8017765", "cast_id": 20, "profile_path": "/20moI5kP6wgDGsPju2J61AlGi1N.jpg", "order": 12}, {"name": "James K Anderson", "character": "Robert E. Lee 'Bob' Ewell", "id": 8498, "credit_id": "52fe4259c3a36847f8017769", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "William Windom", "character": "Prosecutor Mr. Gilmer", "id": 8499, "credit_id": "52fe4259c3a36847f801776d", "cast_id": 22, "profile_path": "/nTqbMx3o9rk6Q5PfS3fwh5LEbGw.jpg", "order": 14}, {"name": "Crahan Denton", "character": "Walter Cunningham Sr.", "id": 13787, "credit_id": "55126de9925141045c000e46", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Richard Hale", "character": "Nathan Radley", "id": 16055, "credit_id": "55126dfd925141045c000e49", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Danny Borzage", "character": "Courtroom Spectator (uncredited)", "id": 1404180, "credit_id": "55126e2e92514103e9000d08", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Kim Stanley", "character": "Scout as an Adult - Narrator (voice) (uncredited)", "id": 31440, "credit_id": "55126e45c3a3681db200f6db", "cast_id": 28, "profile_path": "/bCL1tymwXIShJF64C91J5h5wvEW.jpg", "order": 18}], "directors": [{"name": "Robert Mulligan", "department": "Directing", "job": "Director", "credit_id": "52fe4259c3a36847f801770d", "profile_path": "/oteXfOHRPqiX39sUNOOvDNVZT36.jpg", "id": 8482}], "vote_average": 7.6, "runtime": 129}, "597": {"poster_path": "/f9iH7Javzxokvnkiz2yHD1dcmUy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1845034188, "overview": "84 years later, a 101-year-old woman named Rose DeWitt Bukater tells the story to her granddaughter Lizzy Calvert, Brock Lovett, Lewis Bodine, Bobby Buell and Anatoly Mikailavich on the Keldysh about her life set in April 10th 1912, on a ship called Titanic when young Rose boards the departing ship with the upper-class passengers and her mother, Ruth DeWitt Bukater, and her fianc\u00e9, Caledon Hockley. Meanwhile, a drifter and artist named Jack Dawson and his best friend Fabrizio De Rossi win third-class tickets to the ship in a game. And she explains the whole story from departure until the death of Titanic on its first and last voyage April 15th, 1912 at 2:20 in the morning.", "video": false, "id": 597, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Titanic", "tagline": "Nothing on Earth could come between them.", "vote_count": 2806, "homepage": "http://www.titanicmovie.com/menu.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0120338", "adult": false, "backdrop_path": "/fVcZErSWa7gyENuj8IWp8eAfCnL.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Paramount Pictures", "id": 4}, {"name": "Lightstorm Entertainment", "id": 574}], "release_date": "1997-12-19", "popularity": 2.52473164654832, "original_title": "Titanic", "budget": 200000000, "cast": [{"name": "Kate Winslet", "character": "Rose DeWitt Bukater", "id": 204, "credit_id": "52fe425ac3a36847f80179cb", "cast_id": 20, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Leonardo DiCaprio", "character": "Jack Dawson", "id": 6193, "credit_id": "52fe425ac3a36847f80179cf", "cast_id": 21, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 1}, {"name": "Frances Fisher", "character": "Ruth Dewitt Bukater", "id": 3713, "credit_id": "52fe425ac3a36847f80179d3", "cast_id": 22, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 2}, {"name": "Billy Zane", "character": "Caledon 'Cal' Hockley", "id": 1954, "credit_id": "52fe425ac3a36847f80179d7", "cast_id": 23, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 3}, {"name": "Kathy Bates", "character": "Molly Brown", "id": 8534, "credit_id": "52fe425ac3a36847f80179db", "cast_id": 24, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 4}, {"name": "Gloria Stuart", "character": "Old Rose", "id": 8535, "credit_id": "52fe425ac3a36847f80179df", "cast_id": 25, "profile_path": "/fH9tJL2cgSqiKUOle5UWjCqx5FJ.jpg", "order": 5}, {"name": "Bill Paxton", "character": "Brock Lovett", "id": 2053, "credit_id": "52fe425ac3a36847f80179e3", "cast_id": 26, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 6}, {"name": "Bernard Hill", "character": "Captain Edward James Smith", "id": 1369, "credit_id": "52fe425ac3a36847f80179e7", "cast_id": 27, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 7}, {"name": "David Warner", "character": "Spicer Lovejoy", "id": 2076, "credit_id": "52fe425ac3a36847f80179eb", "cast_id": 28, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 8}, {"name": "Victor Garber", "character": "Thomas Andrews", "id": 8536, "credit_id": "52fe425ac3a36847f80179ef", "cast_id": 29, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 9}, {"name": "Jonathan Hyde", "character": "Bruce Ismay", "id": 8537, "credit_id": "52fe425ac3a36847f80179f3", "cast_id": 30, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 10}, {"name": "Suzy Amis", "character": "Lizzy Calvert", "id": 2179, "credit_id": "52fe425ac3a36847f80179f7", "cast_id": 31, "profile_path": "/caqw60Y3qBMdlEPYr3ivZf9LAwC.jpg", "order": 11}, {"name": "Lewis Abernathy", "character": "Lewis Bodine", "id": 8538, "credit_id": "52fe425ac3a36847f80179fb", "cast_id": 32, "profile_path": "/cN23m7NhF2KCtNdDvPzZJk7NZTa.jpg", "order": 12}, {"name": "Nicholas Cascone", "character": "Bobby Buell", "id": 8539, "credit_id": "52fe425ac3a36847f80179ff", "cast_id": 33, "profile_path": "/9iOE3yuoqbbXUbocFNueAjPbLnC.jpg", "order": 13}, {"name": "Danny Nucci", "character": "Fabrizio", "id": 8540, "credit_id": "52fe425ac3a36847f8017a03", "cast_id": 34, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 14}, {"name": "Jason Barry", "character": "Tommy Ryan", "id": 8541, "credit_id": "52fe425ac3a36847f8017a07", "cast_id": 35, "profile_path": "/cHtfb7s9LsDGMJqm5bCl9HehecD.jpg", "order": 15}, {"name": "Lew Palter", "character": "Isidor Strauss", "id": 8543, "credit_id": "52fe425ac3a36847f8017a0b", "cast_id": 37, "profile_path": "/sUcEhVdc8LM7Epjixr5biTptVd7.jpg", "order": 16}, {"name": "Eric Braeden", "character": "John Jacob Astor IV", "id": 8544, "credit_id": "52fe425ac3a36847f8017a0f", "cast_id": 38, "profile_path": "/6dEqM2zylkopoZtr6quXW5i7W0V.jpg", "order": 17}, {"name": "Bernard Fox", "character": "Col. Archibald Gracie", "id": 8545, "credit_id": "52fe425ac3a36847f8017a13", "cast_id": 39, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 18}, {"name": "Ewan Stewart", "character": "1st Officer Murdoch", "id": 3071, "credit_id": "52fe425ac3a36847f8017a17", "cast_id": 40, "profile_path": "/lMJIOEOxNUa0RZo3Ib1UC50K2OO.jpg", "order": 19}, {"name": "Ioan Gruffudd", "character": "5th Officer Harold Lowe", "id": 65524, "credit_id": "52fe425ac3a36847f8017a1b", "cast_id": 41, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 20}, {"name": "Jonathan Phillips", "character": "2nd Officer Lightoller", "id": 8547, "credit_id": "52fe425ac3a36847f8017a1f", "cast_id": 42, "profile_path": "/9d7aKSqfqXHWaETmTKifetsekDa.jpg", "order": 21}, {"name": "Edward Fletcher", "character": "6th Officer Moody", "id": 8548, "credit_id": "52fe425ac3a36847f8017a23", "cast_id": 43, "profile_path": "/jFwISIeHP78Ju3myfobH8okbq5x.jpg", "order": 22}, {"name": "Scott G. Anderson", "character": "Frederick Fleet", "id": 8549, "credit_id": "52fe425ac3a36847f8017a27", "cast_id": 44, "profile_path": "/7F1Tj6ORbCUtXCBnKJ0nCf0bOY2.jpg", "order": 23}, {"name": "Martin East", "character": "Reginald Lee", "id": 8550, "credit_id": "52fe425ac3a36847f8017a2b", "cast_id": 45, "profile_path": "/mRee9EFIAhFiUth8KnCpYNDv6vq.jpg", "order": 24}, {"name": "Gregory Cooke", "character": "Jack Phillips", "id": 8551, "credit_id": "52fe425ac3a36847f8017a2f", "cast_id": 46, "profile_path": "/m8FyXu7UFcgwOidEK86Y2cCFau6.jpg", "order": 25}, {"name": "Alexandrea Owens", "character": "Cora Cartmell", "id": 8552, "credit_id": "52fe425ac3a36847f8017a33", "cast_id": 47, "profile_path": "/djIkfnq1b8wPPXlcyj80f3SCQva.jpg", "order": 26}, {"name": "Seth Adkins", "character": "Slovakian 3 Year Old Boy", "id": 8553, "credit_id": "52fe425ac3a36847f8017a37", "cast_id": 48, "profile_path": "/gmqJckjg37blaf4IKAzDnFTtV7N.jpg", "order": 27}, {"name": "Michael Ensign", "character": "Benjamin Guggenheim", "id": 1080265, "credit_id": "52fe425ac3a36847f8017a41", "cast_id": 50, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 28}, {"name": "Anatoly M. Sagalevitch", "character": "Anatoly Milkailavich", "id": 93215, "credit_id": "52fe425ac3a36847f8017a45", "cast_id": 51, "profile_path": "/wyQbndvdr7j05GaO6Bmp2O5fB0N.jpg", "order": 29}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f801795b", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.0, "runtime": 194}, "598": {"poster_path": "/gCqnQaq8T4CfioP9uETLx9iMJF4.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 27387381, "overview": "City of God depicts the raw violence in the ghettos of Rio de Janeiro. In the 1970\u2019s that kids are carrying guns and joining gangs when they should be playing hide-and-seek.", "video": false, "id": 598, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "City of God", "tagline": "If you run you're dead...if you stay, you're dead again. Period.", "vote_count": 513, "homepage": "http://cidadededeus.globo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0317248", "adult": false, "backdrop_path": "/k4BAPrE5WkNLvpsPsiMfu8W4Zyi.jpg", "production_companies": [{"name": "O2 Filmes", "id": 345}, {"name": "VideoFilmes", "id": 346}, {"name": "Globo filmes", "id": 10954}, {"name": "Lumiere", "id": 11444}, {"name": "Wild Bunch", "id": 856}, {"name": "Hank Levine Film", "id": 11445}, {"name": "Lereby Productions", "id": 11446}], "release_date": "2002-08-30", "popularity": 0.736719558297785, "original_title": "Cidade de Deus", "budget": 3300000, "cast": [{"name": "Alexandre Rodrigues", "character": "Buscap\u00e9", "id": 8595, "credit_id": "52fe425ac3a36847f8017b45", "cast_id": 34, "profile_path": null, "order": 0}, {"name": "Leandro Firmino", "character": "Z\u00e9 Pequeno", "id": 8596, "credit_id": "52fe425ac3a36847f8017b49", "cast_id": 35, "profile_path": "/48NdifM6zrKXN1fuxakDBbLzkMS.jpg", "order": 1}, {"name": "Phellipe Haagensen", "character": "Ben\u00e9", "id": 8597, "credit_id": "52fe425ac3a36847f8017b4d", "cast_id": 36, "profile_path": null, "order": 2}, {"name": "Douglas Silva", "character": "Dadinho", "id": 8598, "credit_id": "52fe425ac3a36847f8017b51", "cast_id": 37, "profile_path": null, "order": 3}, {"name": "Jonathan Haagensen", "character": "Cabeleira", "id": 8599, "credit_id": "52fe425ac3a36847f8017b55", "cast_id": 38, "profile_path": null, "order": 4}, {"name": "Matheus Nachtergaele", "character": "Sandro Cenoura", "id": 8600, "credit_id": "52fe425ac3a36847f8017b59", "cast_id": 39, "profile_path": "/lJMLW3NAJbV7AzHDz178HKSiuN5.jpg", "order": 5}, {"name": "Seu Jorge", "character": "Man\u00e9 Galinha", "id": 5659, "credit_id": "52fe425ac3a36847f8017b5d", "cast_id": 40, "profile_path": "/ggUYDS85gpTLAXaDzznLw2mpTfS.jpg", "order": 6}, {"name": "Jefechander Suplino", "character": "Alicate", "id": 8601, "credit_id": "52fe425ac3a36847f8017b61", "cast_id": 41, "profile_path": null, "order": 7}, {"name": "Alice Braga", "character": "Ang\u00e9lica", "id": 8602, "credit_id": "52fe425ac3a36847f8017b65", "cast_id": 42, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 8}, {"name": "Roberta Rodrigues", "character": "Berenice", "id": 8603, "credit_id": "52fe425ac3a36847f8017b69", "cast_id": 43, "profile_path": null, "order": 9}, {"name": "Luis Ot\u00e1vio", "character": "Buscap\u00e9 Crian\u00e7a", "id": 8604, "credit_id": "52fe425ac3a36847f8017b6d", "cast_id": 44, "profile_path": null, "order": 10}, {"name": "Darlan Cunha", "character": "Fil\u00e9-com-Fritas", "id": 8605, "credit_id": "52fe425ac3a36847f8017b71", "cast_id": 45, "profile_path": "/u8OcJOmu15xErdpn3BMV8I8ajhS.jpg", "order": 11}], "directors": [{"name": "Fernando Meirelles", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f8017a9f", "profile_path": "/j77Z3f2m0e211ocFhPJu5ZiO12R.jpg", "id": 8557}, {"name": "K\u00e1tia Lund", "department": "Directing", "job": "Director", "credit_id": "54b413a89251417369002c0b", "profile_path": null, "id": 8559}], "vote_average": 7.7, "runtime": 130}, "599": {"poster_path": "/oFwzvRgfxJc0FUr2mwYTi10dk3G.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A hack screenwriter writes a screenplay for a former silent-film star who has faded into Hollywood obscurity.", "video": false, "id": 599, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sunset Boulevard", "tagline": "\"I'm ready for my close-up!\"", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0043014", "adult": false, "backdrop_path": "/wFkv7l6iz0fgXtmS24lTNyz8tV8.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1950-08-04", "popularity": 0.822807268475015, "original_title": "Sunset Boulevard", "budget": 1752000, "cast": [{"name": "William Holden", "character": "Joe Gillis", "id": 8252, "credit_id": "52fe425ac3a36847f8017c21", "cast_id": 20, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 0}, {"name": "Gloria Swanson", "character": "Norma Desmond", "id": 8629, "credit_id": "52fe425ac3a36847f8017c25", "cast_id": 21, "profile_path": "/4s8YEUboEF7DxdXXZ8HnaeovR2p.jpg", "order": 1}, {"name": "Erich von Stroheim", "character": "Max von Mayerling", "id": 8630, "credit_id": "52fe425ac3a36847f8017c29", "cast_id": 22, "profile_path": "/hH1SJChbxYGfru1ugHrifuHV63M.jpg", "order": 2}, {"name": "Nancy Olson", "character": "Betty Schaefer", "id": 8631, "credit_id": "52fe425ac3a36847f8017c2d", "cast_id": 23, "profile_path": "/8tuy84triOK0mS32KoyKSryhZtP.jpg", "order": 3}, {"name": "Fred Clark", "character": "Sheldrake", "id": 8632, "credit_id": "52fe425ac3a36847f8017c31", "cast_id": 24, "profile_path": "/oZSINxktenG9o1w21XuJQSEgX3m.jpg", "order": 4}, {"name": "Lloyd Gough", "character": "Morino", "id": 8633, "credit_id": "52fe425ac3a36847f8017c35", "cast_id": 25, "profile_path": "/zUJTsUKnKnDjZ4o1NrYri5OMJFQ.jpg", "order": 5}, {"name": "Jack Webb", "character": "Artie Green", "id": 8634, "credit_id": "52fe425ac3a36847f8017c39", "cast_id": 26, "profile_path": "/vQ00aqSH95EN0fNXMRYNGDccWKs.jpg", "order": 6}, {"name": "Buster Keaton", "character": "Himself", "id": 8635, "credit_id": "52fe425ac3a36847f8017c3d", "cast_id": 27, "profile_path": "/pYsC0NiYf4EtyVv637Ax5mB9RJz.jpg", "order": 7}, {"name": "Cecil B. DeMille", "character": "Himself", "id": 8636, "credit_id": "52fe425ac3a36847f8017c41", "cast_id": 28, "profile_path": "/oZnXG7WjQ9FXaQkzOtAmzYGDoH5.jpg", "order": 8}, {"name": "Hedda Hopper", "character": "Herself", "id": 8637, "credit_id": "52fe425ac3a36847f8017c45", "cast_id": 29, "profile_path": "/nrKG5ht56KANlLXy6sroxn8D7A.jpg", "order": 9}, {"name": "Anna Q. Nilsson", "character": "Herself", "id": 8638, "credit_id": "52fe425ac3a36847f8017c49", "cast_id": 30, "profile_path": "/tRFgifZr8gKPvAHNRE8SKof99GX.jpg", "order": 10}, {"name": "Ray Evans", "character": "Himself", "id": 8640, "credit_id": "52fe425ac3a36847f8017c4d", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Jay Livingston", "character": "Himself", "id": 8641, "credit_id": "52fe425ac3a36847f8017c51", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "H.B. Warner", "character": "Himself", "id": 33278, "credit_id": "52fe425ac3a36847f8017c55", "cast_id": 34, "profile_path": "/7zWN39xKHnPTawwN9p5m4aX1ne5.jpg", "order": 13}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f8017bbd", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.9, "runtime": 110}, "600": {"poster_path": "/29veIwD38rVL2qY74emXQw4y25H.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46357676, "overview": "A pragmatic U.S. Marine observes the dehumanizing effects the U.S.-Vietnam War has on his fellow recruits from their brutal boot camp training to the bloody street fighting in Hue.", "video": false, "id": 600, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Full Metal Jacket", "tagline": "Vietnam can kill me, but it can\u2019t make me care.", "vote_count": 650, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0093058", "adult": false, "backdrop_path": "/cVkTGLthpromkyzyCFLvvLPZxFM.jpg", "production_companies": [{"name": "Natant", "id": 50819}, {"name": "Stanley Kubrick Productions", "id": 385}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1987-05-31", "popularity": 1.6599672116294, "original_title": "Full Metal Jacket", "budget": 17000000, "cast": [{"name": "Matthew Modine", "character": "Pvt. Joker", "id": 8654, "credit_id": "52fe425bc3a36847f8017d3f", "cast_id": 25, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 0}, {"name": "Adam Baldwin", "character": "Animal Mother", "id": 2059, "credit_id": "52fe425bc3a36847f8017d43", "cast_id": 26, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 1}, {"name": "Vincent D'Onofrio", "character": "Pvt. Pyle", "id": 7132, "credit_id": "52fe425bc3a36847f8017d47", "cast_id": 27, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 2}, {"name": "R. Lee Ermey", "character": "Gny. Sgt. Hartman", "id": 8655, "credit_id": "52fe425bc3a36847f8017d4b", "cast_id": 28, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 3}, {"name": "Dorian Harewood", "character": "Eightball", "id": 8656, "credit_id": "52fe425bc3a36847f8017d4f", "cast_id": 29, "profile_path": "/zZD1wReWRwa24HzBkwbMOcbpGS1.jpg", "order": 4}, {"name": "Kevyn Major Howard", "character": "Rafterman", "id": 8657, "credit_id": "52fe425bc3a36847f8017d53", "cast_id": 30, "profile_path": null, "order": 5}, {"name": "Arliss Howard", "character": "Pvt. Cowboy", "id": 3229, "credit_id": "52fe425bc3a36847f8017d57", "cast_id": 31, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 6}, {"name": "Ed O'Ross", "character": "Lt. Touchdown", "id": 8658, "credit_id": "52fe425bc3a36847f8017d5b", "cast_id": 32, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 7}, {"name": "John Terry", "character": "Lt. Lockhart", "id": 8659, "credit_id": "52fe425bc3a36847f8017d5f", "cast_id": 33, "profile_path": "/ziI8HiAeTLdud06edGUo2AXwdij.jpg", "order": 8}, {"name": "Kieron Jecchinis", "character": "Crazy Earl", "id": 8660, "credit_id": "52fe425bc3a36847f8017d63", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Kirk Taylor", "character": "Payback", "id": 8661, "credit_id": "52fe425bc3a36847f8017d67", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Tim Colceri", "character": "Doorgunner", "id": 8662, "credit_id": "52fe425bc3a36847f8017d6b", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Jon Stafford", "character": "Doc Jay", "id": 8663, "credit_id": "52fe425bc3a36847f8017d6f", "cast_id": 37, "profile_path": "/jQyDZ78gUWpSX1scXkLRpiwERqF.jpg", "order": 12}, {"name": "Bruce Boa", "character": "Poge Colonel", "id": 8664, "credit_id": "52fe425bc3a36847f8017d73", "cast_id": 38, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 13}, {"name": "Ian Tyler", "character": "Lt. Cleves", "id": 8665, "credit_id": "52fe425bc3a36847f8017d77", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Sal Lopez", "character": "T.H.E. Rock", "id": 8666, "credit_id": "52fe425bc3a36847f8017d7b", "cast_id": 40, "profile_path": "/cDwLvQaIBRQZKav65ebQu4hHdh8.jpg", "order": 15}, {"name": "Gary Landon Mills", "character": "Donlon", "id": 8667, "credit_id": "52fe425bc3a36847f8017d7f", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Papillon Soo", "character": "Da Nang Hooker", "id": 8668, "credit_id": "52fe425bc3a36847f8017d83", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Peter Edmund", "character": "Snowball", "id": 8669, "credit_id": "52fe425bc3a36847f8017d87", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Ngoc Le", "character": "VC Sniper", "id": 8670, "credit_id": "52fe425bc3a36847f8017d8b", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Tan Hung Francione", "character": "ARVN Pimp", "id": 8671, "credit_id": "52fe425bc3a36847f8017d8f", "cast_id": 45, "profile_path": null, "order": 20}, {"name": "Costas Dino Chimona", "character": "Chili", "id": 8672, "credit_id": "52fe425bc3a36847f8017d93", "cast_id": 46, "profile_path": null, "order": 21}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe425ac3a36847f8017cb7", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.4, "runtime": 116}, "601": {"poster_path": "/hrO4FIo4zSyYo9uv6AXenOoZIUf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 792910554, "overview": "A science fiction fairytale about an extra-terrestrial who is left behind on Earth and is found by a young boy who befriends him. This heart-warming fantasy from Director Steven Spielberg became one of the most commercially successful films of all time.", "video": false, "id": 601, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "E.T. the Extra-Terrestrial", "tagline": "He is afraid. He is alone. He is three million light years from home.", "vote_count": 811, "homepage": "http://www.et20.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083866", "adult": false, "backdrop_path": "/cILxpoay7vKrQ9LBleWyZ92PY3o.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1982-06-11", "popularity": 2.09625170322483, "original_title": "E.T. the Extra-Terrestrial", "budget": 10500000, "cast": [{"name": "Henry Thomas", "character": "Elliott", "id": 9976, "credit_id": "52fe425bc3a36847f8017e4d", "cast_id": 20, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 0}, {"name": "Peter Coyote", "character": "Keys", "id": 9979, "credit_id": "52fe425bc3a36847f8017e59", "cast_id": 23, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Gertie", "id": 69597, "credit_id": "52fe425bc3a36847f8017e55", "cast_id": 22, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Erika Eleniak", "character": "Pretty Girl", "id": 23764, "credit_id": "52fe425bc3a36847f8017e7f", "cast_id": 33, "profile_path": "/7ZdUGY78qpB2MkTzAQvYEYzncwN.jpg", "order": 5}, {"name": "Sean Frye", "character": "Steve", "id": 9981, "credit_id": "52fe425bc3a36847f8017e61", "cast_id": 25, "profile_path": "/ce22ZO5D7a8ATdiblkk0yF03Uu9.jpg", "order": 6}, {"name": "C. Thomas Howell", "character": "Tyler", "id": 2878, "credit_id": "52fe425bc3a36847f8017e65", "cast_id": 26, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 6}, {"name": "Robert MacNaughton", "character": "Michael", "id": 9978, "credit_id": "52fe425bc3a36847f8017e51", "cast_id": 21, "profile_path": "/zl4cpvNgLu0EViVUC9ZmTeDxEH5.jpg", "order": 7}, {"name": "K. C. Martel", "character": "Greg", "id": 9980, "credit_id": "52fe425bc3a36847f8017e5d", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "David M. O'Dell", "character": "Schoolboy", "id": 9982, "credit_id": "52fe425bc3a36847f8017e69", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Richard Swingler", "character": "Science Teacher", "id": 9983, "credit_id": "52fe425bc3a36847f8017e6d", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Frank Toth", "character": "Policeman", "id": 9984, "credit_id": "52fe425bc3a36847f8017e71", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Pat Welsh", "character": "E.T. (voice)", "id": 9985, "credit_id": "52fe425bc3a36847f8017e75", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Dee Wallace", "character": "Mary", "id": 62001, "credit_id": "52fe425bc3a36847f8017e83", "cast_id": 34, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 12}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f8017ddd", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.8, "runtime": 115}, "602": {"poster_path": "/qKSerOMikhd1iUfx9rnZIXbhy5z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 816969268, "overview": "On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped \"destroyer\" spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4 the a plan is devised to gain access to the interior of the alien mothership in space in order to plant a nuclear missile.", "video": false, "id": 602, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Independence Day", "tagline": "Earth. Take a good look. It might be your last.", "vote_count": 967, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 304378, "name": "Independence Day Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116629", "adult": false, "backdrop_path": "/ewMSszqEvI3G1U21SfYbOeoKdxS.jpg", "production_companies": [{"name": "Centropolis Entertainment", "id": 347}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1996-06-25", "popularity": 1.70987827125936, "original_title": "Independence Day", "budget": 75000000, "cast": [{"name": "Will Smith", "character": "Captain Steven Hiller", "id": 2888, "credit_id": "52fe425bc3a36847f8017f8b", "cast_id": 16, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Bill Pullman", "character": "President Thomas J. Whitmore", "id": 8984, "credit_id": "52fe425bc3a36847f8017f8f", "cast_id": 17, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Jeff Goldblum", "character": "David Levinson", "id": 4785, "credit_id": "52fe425bc3a36847f8017f93", "cast_id": 18, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 2}, {"name": "Mary McDonnell", "character": "First Lady Marilyn Whitmore", "id": 1581, "credit_id": "52fe425bc3a36847f8017f97", "cast_id": 19, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 3}, {"name": "Judd Hirsch", "character": "Julius Levinson", "id": 6167, "credit_id": "52fe425bc3a36847f8017f9b", "cast_id": 20, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 4}, {"name": "Robert Loggia", "character": "General William Grey", "id": 1162, "credit_id": "52fe425bc3a36847f8017f9f", "cast_id": 21, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 5}, {"name": "Randy Quaid", "character": "Russell Casse", "id": 1811, "credit_id": "52fe425bc3a36847f8017fa3", "cast_id": 22, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 6}, {"name": "Margaret Colin", "character": "Constance Spano", "id": 8985, "credit_id": "52fe425bc3a36847f8017fa7", "cast_id": 23, "profile_path": "/A9nBbgguaRqjssJyqTfoFIQgADV.jpg", "order": 7}, {"name": "Vivica A. Fox", "character": "Jasmine Dubrow", "id": 2535, "credit_id": "52fe425bc3a36847f8017fab", "cast_id": 24, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 8}, {"name": "James Rebhorn", "character": "Albert Nimzicki", "id": 8986, "credit_id": "52fe425bc3a36847f8017faf", "cast_id": 25, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 9}, {"name": "Harvey Fierstein", "character": "Marty Gilbert", "id": 7420, "credit_id": "52fe425bc3a36847f8017fb3", "cast_id": 26, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 10}, {"name": "Adam Baldwin", "character": "Major Mitchell", "id": 2059, "credit_id": "52fe425bc3a36847f8017fb7", "cast_id": 27, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 11}, {"name": "James Duval", "character": "Miguel Casse", "id": 1582, "credit_id": "52fe425bc3a36847f8017fbb", "cast_id": 29, "profile_path": "/ydlb3Rp5vkle9codpcfBWxFmUYr.jpg", "order": 12}, {"name": "Lisa Jakub", "character": "Alicia Casse", "id": 8987, "credit_id": "52fe425bc3a36847f8017fbf", "cast_id": 30, "profile_path": "/1iw0l7zewS6L1FzQCKJTHu5Eg0e.jpg", "order": 13}, {"name": "Giuseppe Andrews", "character": "Troy Casse", "id": 4133, "credit_id": "52fe425bc3a36847f8017fc3", "cast_id": 31, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 14}, {"name": "Harry Connick Jr.", "character": "Captain Jimmy Wilder", "id": 18688, "credit_id": "52fe425bc3a36847f8017fc7", "cast_id": 32, "profile_path": "/zdIXPJyfpje8BGBjNQAe73CzSTx.jpg", "order": 15}, {"name": "Mae Whitman", "character": "Patricia Whitmore", "id": 52404, "credit_id": "52fe425bc3a36847f8017fcb", "cast_id": 33, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 16}, {"name": "Kiersten Warren", "character": "Tiffany", "id": 23504, "credit_id": "52fe425bc3a36847f8017fcf", "cast_id": 34, "profile_path": "/nzbUkAYhC6x3Zwdmm93nusN5vg6.jpg", "order": 17}, {"name": "John Storey", "character": "Dr. Isaacs", "id": 1240779, "credit_id": "52fe425bc3a36847f8017fd3", "cast_id": 35, "profile_path": "/1EaywymiUzuQQz0pP8762LWcZfw.jpg", "order": 18}, {"name": "Frank Novak", "character": "Teddy", "id": 46930, "credit_id": "52fe425bc3a36847f8017fd7", "cast_id": 36, "profile_path": "/qD6p4ZqXU5HmX1h2qTL4B43dMfc.jpg", "order": 19}, {"name": "Devon Gummersall", "character": "Philip", "id": 54455, "credit_id": "52fe425bc3a36847f8017fdb", "cast_id": 37, "profile_path": "/aVpEjsbP343W81vxHqoctujnGc9.jpg", "order": 20}, {"name": "Leland Orser", "character": "Technician/ Medical Assistant 1", "id": 2221, "credit_id": "52fe425bc3a36847f8017fdf", "cast_id": 38, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 21}, {"name": "Mirron E. Willis", "character": "Aide", "id": 1173560, "credit_id": "52fe425bc3a36847f8017fe3", "cast_id": 39, "profile_path": "/ozlYwIqYAzwhqfCWZK2GqtG8XWz.jpg", "order": 22}, {"name": "Ross Lacy", "character": "Aide", "id": 199697, "credit_id": "52fe425bc3a36847f8017fe7", "cast_id": 40, "profile_path": "/jseRsA15GLR88mGV3gvg9UTyo0U.jpg", "order": 23}, {"name": "David Pressman", "character": "Whitmore's Aide", "id": 111514, "credit_id": "52fe425bc3a36847f8017feb", "cast_id": 41, "profile_path": "/d7E1CW5DfYEFvlxOGQ5IioQbW8t.jpg", "order": 24}, {"name": "Raphael Sbarge", "character": "Commander / Tech", "id": 97943, "credit_id": "52fe425bc3a36847f8017fef", "cast_id": 42, "profile_path": "/dqJaYxVxOKJjMcIzOnAf3ef1RfR.jpg", "order": 25}, {"name": "Bobby Hosea", "character": "Commanding Officer", "id": 29775, "credit_id": "52fe425bc3a36847f8017ff3", "cast_id": 43, "profile_path": "/sGdelSFgmBYH3pKKZktIBUzqp9S.jpg", "order": 26}, {"name": "Dan Lauria", "character": "Commanding Officer", "id": 29774, "credit_id": "52fe425bc3a36847f8017ff7", "cast_id": 44, "profile_path": "/ov3F6ddfjgw3SpvEuuHUxhh4yom.jpg", "order": 27}, {"name": "Steve Giannelli", "character": "Radar Technician", "id": 1116827, "credit_id": "52fe425bc3a36847f8017ffb", "cast_id": 45, "profile_path": "/aIMSzuRTYTWHlaAUfzc2uS6KIJf.jpg", "order": 28}, {"name": "Eric Paskel", "character": "Radar Technician", "id": 179969, "credit_id": "52fe425bc3a36847f8017fff", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Carlos Lac\u00e1mara", "character": "Radar Operator", "id": 1212247, "credit_id": "52fe425bc3a36847f8018003", "cast_id": 47, "profile_path": "/mf5a9afrahmA2bOwgfaJVjDrzpJ.jpg", "order": 30}, {"name": "John Bennett Perry", "character": "Secret Service Agent", "id": 20361, "credit_id": "52fe425bc3a36847f8018007", "cast_id": 48, "profile_path": "/bzFhwuXsdZiOHRtBgz4XVELIFYO.jpg", "order": 31}, {"name": "Troy Willis", "character": "Secret Service Agent", "id": 1272408, "credit_id": "52fe425bc3a36847f801800b", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Tim Kelleher", "character": "Technician", "id": 72864, "credit_id": "52fe425bc3a36847f801800f", "cast_id": 50, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 33}, {"name": "Wayne Wilderson", "character": "Area 51 Technician", "id": 1216179, "credit_id": "52fe425bc3a36847f8018013", "cast_id": 51, "profile_path": "/r5GVLXdvJovWZiBUzgFsWlpIwVW.jpg", "order": 34}, {"name": "Jay Acovone", "character": "Area 51 Guard", "id": 42547, "credit_id": "52fe425bc3a36847f8018017", "cast_id": 52, "profile_path": "/7nTfBxzeO6jBzUSdukF2OWm5uBo.jpg", "order": 35}, {"name": "James Wong", "character": "SETI Technician 1", "id": 57134, "credit_id": "52fe425bc3a36847f801801b", "cast_id": 53, "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "order": 36}, {"name": "Jana Marie Hupp", "character": "SETI Technician 3", "id": 1213344, "credit_id": "52fe425bc3a36847f801801f", "cast_id": 54, "profile_path": "/vxwpMDXUfvBpJ53SOcfv7oNI2J3.jpg", "order": 37}, {"name": "Robert Pine", "character": "Chief of Staff", "id": 74573, "credit_id": "52fe425bc3a36847f8018023", "cast_id": 55, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 38}, {"name": "David Channell", "character": "Secret Service Agent", "id": 186657, "credit_id": "52fe425bc3a36847f8018027", "cast_id": 56, "profile_path": "/3EwGgjGSmA6AUwqkkPerLm1BVk.jpg", "order": 39}, {"name": "John Capodice", "character": "Mario", "id": 31007, "credit_id": "52fe425bc3a36847f801802b", "cast_id": 57, "profile_path": "/sQuJV9o2FSXr5UBo2MaiTLObXiY.jpg", "order": 40}, {"name": "Greg Collins", "character": "Military Aide", "id": 58950, "credit_id": "52fe425bc3a36847f801802f", "cast_id": 58, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 41}, {"name": "Derek Webster", "character": "Sky Crane Pilot", "id": 157029, "credit_id": "52fe425bc3a36847f8018033", "cast_id": 59, "profile_path": "/vS6FyYyx2G41Zozn1bINybpmsKY.jpg", "order": 42}, {"name": "Mark Fite", "character": "Pilot", "id": 122805, "credit_id": "52fe425bc3a36847f8018037", "cast_id": 60, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 43}, {"name": "Levan Uchaneishvili", "character": "Russian Pilot (Levani)", "id": 27037, "credit_id": "52fe425bc3a36847f801803b", "cast_id": 61, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 44}, {"name": "Kristof Konrad", "character": "Russian Pilot", "id": 74502, "credit_id": "52fe425bc3a36847f801803f", "cast_id": 62, "profile_path": "/glLoabE6ofcj9gEW0ejwvN3CyB4.jpg", "order": 45}, {"name": "Kevin Sifuentes", "character": "Tank Commander", "id": 102578, "credit_id": "52fe425bc3a36847f8018043", "cast_id": 63, "profile_path": "/8sX4lmfYnU0q0XXoxfbxju4c4tW.jpg", "order": 46}, {"name": "Elston Ridgle", "character": "Soldier", "id": 188212, "credit_id": "52fe425bc3a36847f8018047", "cast_id": 64, "profile_path": "/33ubq4IENRuOcLt1iqU3k5jOnF2.jpg", "order": 47}, {"name": "Randy Oglesby", "character": "Mechanic", "id": 102567, "credit_id": "52fe425bc3a36847f801804b", "cast_id": 65, "profile_path": "/i6Zrn7JKMnemYZysNqhkcGs9cjk.jpg", "order": 48}, {"name": "Jack Moore", "character": "Mechanic", "id": 117564, "credit_id": "52fe425bc3a36847f801804f", "cast_id": 66, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 49}, {"name": "Barry Del Sherman", "character": "Street Preacher", "id": 8214, "credit_id": "52fe425bc3a36847f8018053", "cast_id": 67, "profile_path": "/8uUOdG0fTnPYNkSgPpQDhzxSrjw.jpg", "order": 50}, {"name": "Lyman Ward", "character": "Secret Service Agent", "id": 90198, "credit_id": "52fe425bc3a36847f8018057", "cast_id": 68, "profile_path": "/lL1dAVbBcSU4O2wD4XZcsmOCcRZ.jpg", "order": 51}, {"name": "Anthony Crivello", "character": "Lincoln", "id": 31367, "credit_id": "52fe425bc3a36847f801805b", "cast_id": 69, "profile_path": "/3oZXNW4V0AeT1JjwDTu4lUOZNH3.jpg", "order": 52}, {"name": "Richard Speight Jr.", "character": "Ed", "id": 58112, "credit_id": "52fe425bc3a36847f801805f", "cast_id": 70, "profile_path": "/o5tlyRPkZXtkXOTDcwKTUfGldhM.jpg", "order": 53}, {"name": "Joe Fowler", "character": "Reporter", "id": 169931, "credit_id": "52fe425bc3a36847f8018063", "cast_id": 71, "profile_path": "/6Qp1ino2A6MP9MKZeCc6Q6hM9Si.jpg", "order": 54}, {"name": "Sharon Tay", "character": "Reporter", "id": 156131, "credit_id": "52fe425bc3a36847f8018067", "cast_id": 72, "profile_path": "/qJhvCSCXHD9Duvz5pP0sLQQl6n2.jpg", "order": 55}, {"name": "Peter J. Lucas", "character": "Russian Reporter", "id": 18905, "credit_id": "52fe425bc3a36847f801806b", "cast_id": 73, "profile_path": "/bQgIi61v5NBhDDZjArvzSpjwxxg.jpg", "order": 56}, {"name": "Yelena Danova", "character": "Russian Newscaster", "id": 163159, "credit_id": "52fe425bc3a36847f801806f", "cast_id": 74, "profile_path": "/kdA28JAPdY7Yru5469KFVGNOfDM.jpg", "order": 57}, {"name": "Johnny Kim", "character": "Korean Newscaster", "id": 64881, "credit_id": "52fe425bc3a36847f8018073", "cast_id": 75, "profile_path": "/Akh2IyKfZ4rXWb1k0c8U50d53Ew.jpg", "order": 58}, {"name": "Vanessa J. Wells", "character": "Newscaster", "id": 192276, "credit_id": "52fe425bc3a36847f8018077", "cast_id": 76, "profile_path": null, "order": 59}, {"name": "Sayed Badreya", "character": "Arab Pilot", "id": 173810, "credit_id": "52fe425bc3a36847f801807b", "cast_id": 77, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 60}, {"name": "Adam Tomei", "character": "Sailor", "id": 177144, "credit_id": "52fe425bc3a36847f801807f", "cast_id": 78, "profile_path": "/cW697JowVOiLwq3bw30aCZdsRwc.jpg", "order": 61}, {"name": "John Bradley", "character": "Lucas", "id": 1010135, "credit_id": "52fe425bc3a36847f8018083", "cast_id": 79, "profile_path": "/NYYgcHhFNLOwYVAGePUq9NsV3N.jpg", "order": 62}, {"name": "Kimberly Beck", "character": "Housewife", "id": 2174, "credit_id": "52fe425bc3a36847f8018087", "cast_id": 80, "profile_path": "/wt7KIBun88QLlxlXnPj7Tp9lwkB.jpg", "order": 63}, {"name": "Andrew Keegan", "character": "Older Boy", "id": 40979, "credit_id": "52fe425bc3a36847f801808b", "cast_id": 81, "profile_path": "/3GNxQcRNySLlO25wcPuwnxuPv3f.jpg", "order": 64}, {"name": "Jim Piddock", "character": "Reginald", "id": 120560, "credit_id": "52fe425bc3a36847f801808f", "cast_id": 82, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 65}, {"name": "Pat Skipper", "character": "Redneck", "id": 6326, "credit_id": "52fe425bc3a36847f8018093", "cast_id": 83, "profile_path": "/yz3OrX0JKWcNDLLc8TBoRUhWAcC.jpg", "order": 66}, {"name": "Erick Avari", "character": "SETI Chief", "id": 18917, "credit_id": "52fe425bc3a36847f8018097", "cast_id": 84, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 67}, {"name": "Brent Spiner", "character": "Dr. Brackish Okun", "id": 1213786, "credit_id": "52fe425bc3a36847f801809b", "cast_id": 85, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 68}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f8017f33", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.4, "runtime": 145}, "603": {"poster_path": "/ZPMhHXEhYB33YoTZZNNmezth0V.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 463517383, "overview": "Thomas A. Anderson is a man living two lives. By day he is an average computer programmer and by night a malevolent hacker known as Neo, who finds himself targeted by the police when he is contacted by Morpheus, a legendary computer hacker, who reveals the shocking truth about our reality.", "video": false, "id": 603, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Matrix", "tagline": "Welcome to the Real World.", "vote_count": 4220, "homepage": "http://www.warnerbros.com/movies/home-entertainment/the-matrix/37313ac7-9229-474d-a423-44b7a6bc1a54.html", "belongs_to_collection": {"backdrop_path": "/bRm2DEgUiYciDw3myHuYFInD7la.jpg", "poster_path": "/lh4aGpd3U9rm9B8Oqr6CUgQLtZL.jpg", "id": 2344, "name": "The Matrix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133093", "adult": false, "backdrop_path": "/7u3pxc0K1wx32IleAkLv78MKgrw.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Groucho II Film Partnership", "id": 372}], "release_date": "1999-03-30", "popularity": 3.02638600897575, "original_title": "The Matrix", "budget": 63000000, "cast": [{"name": "Keanu Reeves", "character": "Neo", "id": 6384, "credit_id": "52fe425bc3a36847f80181c1", "cast_id": 34, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Morpheus", "id": 2975, "credit_id": "52fe425bc3a36847f801818d", "cast_id": 21, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Carrie-Anne Moss", "character": "Trinity", "id": 530, "credit_id": "52fe425bc3a36847f8018191", "cast_id": 22, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Agent Smith", "id": 1331, "credit_id": "52fe425bc3a36847f8018195", "cast_id": 23, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Gloria Foster", "character": "Oracle", "id": 9364, "credit_id": "52fe425bc3a36847f8018199", "cast_id": 24, "profile_path": "/ahwiARgfOYctk6sOLBBk5w7cfH5.jpg", "order": 4}, {"name": "Joe Pantoliano", "character": "Cypher", "id": 532, "credit_id": "52fe425bc3a36847f801819d", "cast_id": 25, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Marcus Chong", "character": "Tank", "id": 9372, "credit_id": "52fe425bc3a36847f80181a1", "cast_id": 26, "profile_path": "/zYfXjMszFajTb93phn2Fi6LwEGN.jpg", "order": 6}, {"name": "Julian Arahanga", "character": "Apoc", "id": 7244, "credit_id": "52fe425bc3a36847f80181a5", "cast_id": 27, "profile_path": "/jFNdkOB6UhQEsN5Bo5Q5d2qT9YX.jpg", "order": 7}, {"name": "Matt Doran", "character": "Mouse", "id": 9374, "credit_id": "52fe425bc3a36847f80181a9", "cast_id": 28, "profile_path": "/gLpWm3azLiXgDPRWo23AnG5WM7O.jpg", "order": 8}, {"name": "Belinda McClory", "character": "Switch", "id": 9376, "credit_id": "52fe425bc3a36847f80181ad", "cast_id": 29, "profile_path": "/g8bpncsgI2ETxc1HwvarRKLsw0D.jpg", "order": 9}, {"name": "Anthony Ray Parker", "character": "Dozer", "id": 9378, "credit_id": "52fe425bc3a36847f80181b1", "cast_id": 30, "profile_path": "/iMHr0onfM8v4uVdPVnXxXx2xwwN.jpg", "order": 10}, {"name": "Paul Goddard", "character": "Agent Brown", "id": 9380, "credit_id": "52fe425bc3a36847f80181b5", "cast_id": 31, "profile_path": "/4OalonKRAdZhXreaDWig3bZkELo.jpg", "order": 11}, {"name": "Robert Taylor", "character": "Agent Jones", "id": 39545, "credit_id": "52fe425bc3a36847f80181cb", "cast_id": 38, "profile_path": "/aqRJQj0KBPhGLDxfmOAXCUzCcSJ.jpg", "order": 12}, {"name": "David Aston", "character": "Rhineheart", "id": 9383, "credit_id": "52fe425bc3a36847f80181b9", "cast_id": 32, "profile_path": "/aO7w5K2BjeQaAUN3ogo9NuAD1qI.jpg", "order": 13}, {"name": "Marc Aden", "character": "Choi", "id": 9384, "credit_id": "52fe425bc3a36847f80181bd", "cast_id": 33, "profile_path": "/h42Zd2L1srUxw1VihY1fceUgDZe.jpg", "order": 14}, {"name": "Ada Nicodemou", "character": "White Rabbit Girl", "id": 181214, "credit_id": "52fe425bc3a36847f80181cf", "cast_id": 39, "profile_path": "/xSHiqKAoEHy7i2csyqyLfb86L0O.jpg", "order": 15}, {"name": "Deni Gordon", "character": "Priestess", "id": 1090466, "credit_id": "52fe425bc3a36847f80181d3", "cast_id": 40, "profile_path": "/5TQlwo1T3EnORzkmLQMKaDZCvpa.jpg", "order": 16}, {"name": "Rowan Witt", "character": "Spoon Boy", "id": 218366, "credit_id": "52fe425bc3a36847f80181d7", "cast_id": 41, "profile_path": "/kJot5sckPZRFVzkKEEJtaod423s.jpg", "order": 17}, {"name": "Bill Young", "character": "Lieutenant", "id": 57799, "credit_id": "52fe425bc3a36847f80181db", "cast_id": 42, "profile_path": "/1B3amfg9o97EurkYl9BAlXZPC60.jpg", "order": 18}, {"name": "Eleanor Witt", "character": "Potential", "id": 1209244, "credit_id": "52fe425bc3a36847f80181df", "cast_id": 43, "profile_path": "/7lo8gg0j6OLzuAqXg1giQWAsY4F.jpg", "order": 19}, {"name": "Tamara Brown", "character": "Potential", "id": 1209245, "credit_id": "52fe425bc3a36847f80181e3", "cast_id": 44, "profile_path": "/hEhHP6qUTgj4oGWPhzW3CpZ6tx4.jpg", "order": 20}, {"name": "Janaya Pender", "character": "Potential", "id": 1209246, "credit_id": "52fe425bc3a36847f80181e7", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Adryn White", "character": "Potential", "id": 1209247, "credit_id": "52fe425bc3a36847f80181eb", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Natalie Tjen", "character": "Potential", "id": 1209248, "credit_id": "52fe425bc3a36847f80181ef", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "David O'Connor", "character": "FedEx Man", "id": 1209249, "credit_id": "52fe425bc3a36847f80181f3", "cast_id": 48, "profile_path": null, "order": 24}, {"name": "Jeremy Ball", "character": "Businessman", "id": 1209250, "credit_id": "52fe425bc3a36847f80181f7", "cast_id": 49, "profile_path": "/o81K9lM34FbCxwHakzXdtIM1JP9.jpg", "order": 25}, {"name": "Fiona Johnson", "character": "Woman in Red", "id": 1209251, "credit_id": "52fe425bc3a36847f80181fb", "cast_id": 50, "profile_path": "/tdbzgopHXZMpiLNt64TuLhsPlPA.jpg", "order": 26}, {"name": "Harry Lawrence", "character": "Old Man", "id": 110411, "credit_id": "52fe425bc3a36847f80181ff", "cast_id": 51, "profile_path": null, "order": 27}, {"name": "Steve Dodd", "character": "Blind Man", "id": 212562, "credit_id": "52fe425bc3a36847f8018203", "cast_id": 52, "profile_path": "/30pDtMIblGP1yDsFUaT5p0FJL1L.jpg", "order": 28}, {"name": "Luke Quinton", "character": "Security Guard", "id": 1209252, "credit_id": "52fe425bc3a36847f8018207", "cast_id": 53, "profile_path": "/8EJPgSkhdoyWhP7mhTfNIVXhCce.jpg", "order": 29}, {"name": "Lawrence Woodward", "character": "Guard", "id": 75715, "credit_id": "52fe425cc3a36847f801820b", "cast_id": 54, "profile_path": "/dAcZMeJmn5WzdD9SdAHGDlDq7CO.jpg", "order": 30}, {"name": "Michael Butcher", "character": "Cop Who Captures Neo", "id": 1209253, "credit_id": "52fe425cc3a36847f801820f", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Bernard Ledger", "character": "Big Cop", "id": 1209254, "credit_id": "52fe425cc3a36847f8018213", "cast_id": 56, "profile_path": null, "order": 32}, {"name": "Robert Simper", "character": "Cop", "id": 26753, "credit_id": "52fe425cc3a36847f8018217", "cast_id": 57, "profile_path": "/8lBlkhZlTBfkIi6i0iWugZaiIkY.jpg", "order": 33}, {"name": "Chris Pattinson", "character": "Cop", "id": 1209255, "credit_id": "52fe425cc3a36847f801821b", "cast_id": 58, "profile_path": "/aB6AlYxCtiSydRpaHpnyf2mLCVw.jpg", "order": 34}, {"name": "Nigel Harbach", "character": "Parking Cop", "id": 1209256, "credit_id": "52fe425cc3a36847f801821f", "cast_id": 59, "profile_path": "/avzlD8e0d5ygac0BZPEzqrzs6ME.jpg", "order": 35}, {"name": "Rana Morrison", "character": "Shaylae - Woman in Office (uncredited)", "id": 1209257, "credit_id": "52fe425cc3a36847f8018223", "cast_id": 60, "profile_path": "/7uQEGFP9gbCuPvrTVmL5MCFyMmm.jpg", "order": 36}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f8018117", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425bc3a36847f801811d", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}], "vote_average": 7.6, "runtime": 136}, "604": {"poster_path": "/ezIurBz2fdUc68d98Fp9dRf5ihv.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 738599701, "overview": "Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.", "video": false, "id": 604, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Matrix Reloaded", "tagline": "Free your mind.", "vote_count": 1577, "homepage": "http://whatisthematrix.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/bRm2DEgUiYciDw3myHuYFInD7la.jpg", "poster_path": "/lh4aGpd3U9rm9B8Oqr6CUgQLtZL.jpg", "id": 2344, "name": "The Matrix Collection"}, "original_language": "he", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0234215", "adult": false, "backdrop_path": "/Fp3piEuHXxKnPBO5R0Wj4wjZHg.jpg", "production_companies": [{"name": "Heineken Branded Entertainment", "id": 375}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "NPV Entertainment", "id": 172}], "release_date": "2003-05-06", "popularity": 2.55519559368436, "original_title": "The Matrix Reloaded", "budget": 150000000, "cast": [{"name": "Keanu Reeves", "character": "Neo", "id": 6384, "credit_id": "52fe425cc3a36847f801836f", "cast_id": 24, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Trinity", "id": 530, "credit_id": "52fe425cc3a36847f8018377", "cast_id": 26, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Laurence Fishburne", "character": "Morpheus", "id": 2975, "credit_id": "52fe425cc3a36847f8018373", "cast_id": 25, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 2}, {"name": "Helmut Bakaitis", "character": "The Architect", "id": 9443, "credit_id": "52fe425cc3a36847f8018383", "cast_id": 29, "profile_path": "/y6ICnJGyavStO2wrbqpf5hABwPj.jpg", "order": 3}, {"name": "Steve Bastoni", "character": "Soren", "id": 75121, "credit_id": "52fe425cc3a36847f80183c5", "cast_id": 50, "profile_path": "/pL2atjQ6ZnUzvlI4r3LeT6h3OW6.jpg", "order": 4}, {"name": "Don Battee", "character": "Vector", "id": 1091387, "credit_id": "52fe425cc3a36847f80183c9", "cast_id": 51, "profile_path": "/wldKStDYxScihvLnObITQV4GuUb.jpg", "order": 5}, {"name": "Monica Bellucci", "character": "Persephone", "id": 28782, "credit_id": "52fe425cc3a36847f801838b", "cast_id": 31, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 6}, {"name": "Daniel Bernhardt", "character": "Agent Johnson", "id": 9452, "credit_id": "52fe425cc3a36847f8018397", "cast_id": 34, "profile_path": "/gsIWvByH4lzQdTgMswQWqiAQOql.jpg", "order": 7}, {"name": "Valerie Berry", "character": "Priestess", "id": 1218802, "credit_id": "52fe425cc3a36847f80183cd", "cast_id": 52, "profile_path": null, "order": 8}, {"name": "Ian Bliss", "character": "Bane", "id": 62486, "credit_id": "52fe425cc3a36847f80183d1", "cast_id": 53, "profile_path": "/cPBbJE6Pn0dU1LgPzrkE2Lfu0MJ.jpg", "order": 9}, {"name": "Liliana Bogatko", "character": "Old Woman at Zion", "id": 1218824, "credit_id": "52fe425cc3a36847f80183d5", "cast_id": 54, "profile_path": "/wgSWGCUKrg9EHOZztBes4U4NuGd.jpg", "order": 10}, {"name": "Michael Budd", "character": "Zion Controller", "id": 582925, "credit_id": "52fe425cc3a36847f80183d9", "cast_id": 55, "profile_path": "/83djGObhdc8tuwJkyMHIZJHJ16M.jpg", "order": 11}, {"name": "Stoney Burke", "character": "Bike Carrier Driver", "id": 1218839, "credit_id": "52fe425cc3a36847f80183dd", "cast_id": 56, "profile_path": "/vCn45fBXGHEmfq6zzReliSK1YPA.jpg", "order": 12}, {"name": "Kelly Butler", "character": "Ice", "id": 152545, "credit_id": "52fe425cc3a36847f80183e1", "cast_id": 57, "profile_path": "/lbkGbzr9iMYuZxonZOHbceRnRVO.jpg", "order": 13}, {"name": "Josephine Byrnes", "character": "Zion Virtual Control Operator", "id": 192815, "credit_id": "52fe425cc3a36847f80183e5", "cast_id": 58, "profile_path": "/fzdJie5umMZnqgArMspceccDax2.jpg", "order": 14}, {"name": "Noris Campos", "character": "Woman with Groceries", "id": 102408, "credit_id": "52fe425cc3a36847f80183e9", "cast_id": 59, "profile_path": "/x75vRFK10qaFA1nycTONNKSyqNk.jpg", "order": 15}, {"name": "Collin Chou", "character": "Seraph", "id": 52908, "credit_id": "52fe425cc3a36847f80183af", "cast_id": 41, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 16}, {"name": "Paul Cotter", "character": "Corrupt", "id": 1265137, "credit_id": "52fe425cc3a36847f80183ed", "cast_id": 60, "profile_path": "/romSgwl2ayCusRAV16fi4HXfwsa.jpg", "order": 17}, {"name": "Marlene Cummins", "character": "Another Old Woman at Zion", "id": 1265138, "credit_id": "52fe425cc3a36847f80183f1", "cast_id": 61, "profile_path": null, "order": 18}, {"name": "Attila Davidhazy", "character": "Young Thomas Anderson at 12", "id": 1028602, "credit_id": "52fe425cc3a36847f80183f5", "cast_id": 62, "profile_path": "/fg6lHXcqsLgL5i7A0Xfv7YYGkIv.jpg", "order": 19}, {"name": "Essie Davis", "character": "Maggie", "id": 33449, "credit_id": "52fe425cc3a36847f80183f9", "cast_id": 63, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 20}, {"name": "Terrell Dixon", "character": "Wurm", "id": 1265140, "credit_id": "52fe425cc3a36847f80183fd", "cast_id": 64, "profile_path": "/yQchkdE6lQExzJFJgIGL4XNLjQg.jpg", "order": 21}, {"name": "Nash Edgerton", "character": "Security Guard #5", "id": 75131, "credit_id": "52fe425cc3a36847f8018401", "cast_id": 65, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 22}, {"name": "Gloria Foster", "character": "Oracle", "id": 9364, "credit_id": "52fe425cc3a36847f801837f", "cast_id": 28, "profile_path": "/ahwiARgfOYctk6sOLBBk5w7cfH5.jpg", "order": 23}, {"name": "David Franklin", "character": "Maitre D'", "id": 26059, "credit_id": "52fe425cc3a36847f8018405", "cast_id": 66, "profile_path": "/n5W2C8Fir0wdQg8HmBeBpmvpCfH.jpg", "order": 24}, {"name": "Austin Galuppo", "character": "Young Thomas Anderson at 4", "id": 1265141, "credit_id": "52fe425cc3a36847f8018409", "cast_id": 67, "profile_path": null, "order": 25}, {"name": "Nona Gaye", "character": "Zee", "id": 18286, "credit_id": "52fe425cc3a36847f80183bb", "cast_id": 44, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 26}, {"name": "Daryl Heath", "character": "A.P.U. Escort", "id": 1265142, "credit_id": "52fe425cc3a36847f801840d", "cast_id": 68, "profile_path": null, "order": 27}, {"name": "Roy Jones Jr.", "character": "Captain Ballard", "id": 9457, "credit_id": "52fe425cc3a36847f801839b", "cast_id": 36, "profile_path": "/fgsHZRBpMinLbRninT1RcApxEnA.jpg", "order": 28}, {"name": "Malcolm Kennard", "character": "Abel", "id": 152492, "credit_id": "52fe425cc3a36847f8018411", "cast_id": 69, "profile_path": "/aA836ZwpPlKuAcx7JqRrkADZ7vA.jpg", "order": 29}, {"name": "David Kilde", "character": "Agent Jackson", "id": 9459, "credit_id": "52fe425cc3a36847f801839f", "cast_id": 37, "profile_path": "/cDayFhoaOLlI2w1fVJGpV1ddrxB.jpg", "order": 30}, {"name": "Randall Duk Kim", "character": "The Keymaker", "id": 9462, "credit_id": "52fe425cc3a36847f80183a3", "cast_id": 38, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 31}, {"name": "Christopher Kirby", "character": "Mauser", "id": 75175, "credit_id": "52fe425cc3a36847f8018415", "cast_id": 70, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 32}, {"name": "Peter Lamb", "character": "Colt", "id": 152559, "credit_id": "52fe425cc3a36847f8018419", "cast_id": 71, "profile_path": "/33uV3Q1NF625W9oPkEy3mvqHxcj.jpg", "order": 33}, {"name": "Nathaniel Lees", "character": "Mifune", "id": 41784, "credit_id": "52fe425cc3a36847f801841d", "cast_id": 72, "profile_path": "/j1w45OYSdNpA9LVd8kDbWRhwXSM.jpg", "order": 34}, {"name": "Harry Lennix", "character": "Commander Lock", "id": 9464, "credit_id": "52fe425cc3a36847f80183a7", "cast_id": 39, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 35}, {"name": "Tony Lynch", "character": "Computer Room Technician", "id": 1265143, "credit_id": "52fe425cc3a36847f8018421", "cast_id": 73, "profile_path": "/zTACfjNSwRp7PP9rhidlhyWjbjf.jpg", "order": 36}, {"name": "Robert Mammone", "character": "AK", "id": 83769, "credit_id": "52fe425cc3a36847f8018425", "cast_id": 74, "profile_path": "/aDtHgVRqkCw0H46db8oYtS2y3VE.jpg", "order": 37}, {"name": "Joshua Mbakwe", "character": "Link's Nephew", "id": 1265144, "credit_id": "52fe425cc3a36847f8018429", "cast_id": 75, "profile_path": "/fFXxgUwK0Ges4pU2YSeVvAibiX3.jpg", "order": 38}, {"name": "Matt McColm", "character": "Agent Thompson", "id": 9466, "credit_id": "52fe425cc3a36847f80183ab", "cast_id": 40, "profile_path": "/z4bPKnOdDrkOmzeudLCcPKyyMUE.jpg", "order": 39}, {"name": "Chris Mitchell", "character": "Power Station Guard", "id": 185440, "credit_id": "52fe425cc3a36847f8018431", "cast_id": 77, "profile_path": "/x2euDIJm3NUNF3ofjGJQ2cR07mF.jpg", "order": 40}, {"name": "Steve Morris", "character": "Computer Room Guard", "id": 440902, "credit_id": "52fe425cc3a36847f8018435", "cast_id": 78, "profile_path": "/j2V1B9vxgl87CvVdn4jaO0AaVRR.jpg", "order": 41}, {"name": "Tory Mussett", "character": "Beautiful Woman at Le Vrai", "id": 56436, "credit_id": "52fe425cc3a36847f8018439", "cast_id": 79, "profile_path": "/ubSWhPfo99cqEC4SmLH9NJnjmpn.jpg", "order": 42}, {"name": "Rene Naufahu", "character": "Zion Gate Operator", "id": 73883, "credit_id": "52fe425cc3a36847f801843d", "cast_id": 80, "profile_path": "/ikLUXUl9zH55hPGoKPbakzvWX8g.jpg", "order": 43}, {"name": "Robyn Nevin", "character": "Councillor Dillard", "id": 75893, "credit_id": "52fe425cc3a36847f8018441", "cast_id": 81, "profile_path": "/5tqOX7iKTWaf3KDN4hiHXXN7wmI.jpg", "order": 44}, {"name": "David No", "character": "Cain", "id": 1155485, "credit_id": "52fe425cc3a36847f8018445", "cast_id": 82, "profile_path": "/aayfhIuyIjtcDQwhbBhVRC4Ori4.jpg", "order": 45}, {"name": "Genevieve O'Reilly", "character": "Officer Wirtz", "id": 139654, "credit_id": "52fe425cc3a36847f8018449", "cast_id": 83, "profile_path": "/8NrrFxrGng88GU7lxwOyK3PZv05.jpg", "order": 46}, {"name": "Socratis Otto", "character": "Operator", "id": 75174, "credit_id": "52fe425cc3a36847f801844d", "cast_id": 84, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 47}, {"name": "Harold Perrineau", "character": "Link", "id": 6195, "credit_id": "52fe425cc3a36847f8018451", "cast_id": 85, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 48}, {"name": "Jada Pinkett Smith", "character": "Niobe", "id": 9575, "credit_id": "52fe425cc3a36847f80183b7", "cast_id": 43, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 49}, {"name": "Monta\u00f1o Rain", "character": "Young Thomas Anderson at 8", "id": 1265151, "credit_id": "52fe425cc3a36847f8018455", "cast_id": 86, "profile_path": null, "order": 50}, {"name": "Adrian Rayment", "character": "Twin #2", "id": 9448, "credit_id": "52fe425cc3a36847f801838f", "cast_id": 32, "profile_path": "/c3ExwLos7XIsLUuEzwFjOd1wYWo.jpg", "order": 51}, {"name": "Neil Rayment", "character": "Twin #1", "id": 9450, "credit_id": "52fe425cc3a36847f8018393", "cast_id": 33, "profile_path": "/yXV3FgDENpm5P9m62GugJNGhczH.jpg", "order": 52}, {"name": "Rupert Reid", "character": "Lock's Lieutenant", "id": 187189, "credit_id": "52fe425cc3a36847f8018459", "cast_id": 87, "profile_path": "/jDJKsbUB2zgwgx5c51tHF35kafY.jpg", "order": 53}, {"name": "Hugo Weaving", "character": "Agent Smith", "id": 1331, "credit_id": "52fe425cc3a36847f801837b", "cast_id": 27, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 54}, {"name": "Lambert Wilson", "character": "The Merovingian", "id": 2192, "credit_id": "52fe425cc3a36847f8018387", "cast_id": 30, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 55}, {"name": "Cornel West", "character": "Councillor West", "id": 537506, "credit_id": "52fe425cc3a36847f80183b3", "cast_id": 42, "profile_path": "/lMOn0gg1tTphBE974NARiTmqTES.jpg", "order": 56}, {"name": "David Roberts", "character": "Roland", "id": 77553, "credit_id": "52fe425cc3a36847f801845d", "cast_id": 88, "profile_path": "/shYTmEKuTg4R4xRUYS5EHbjh0Ty.jpg", "order": 57}, {"name": "Shane C. Rodrigo", "character": "Ajax", "id": 1265152, "credit_id": "52fe425cc3a36847f8018461", "cast_id": 89, "profile_path": "/4efFc566JDCTMSrhIFU3QEclZuR.jpg", "order": 58}, {"name": "Nick Scoggin", "character": "Gidim Truck Driver", "id": 1008016, "credit_id": "52fe425cc3a36847f8018465", "cast_id": 90, "profile_path": "/tW3ztMGgR8uTB8VDVWs0fosQTXv.jpg", "order": 59}, {"name": "Kevin Scott", "character": "18 Wheel Trucker", "id": 1012973, "credit_id": "52fe425cc3a36847f8018469", "cast_id": 91, "profile_path": "/9ArAqj0Bqk7gHnXIyf41D9odTKr.jpg", "order": 60}, {"name": "Tahei Simpson", "character": "Binary", "id": 15302, "credit_id": "52fe425cc3a36847f801846d", "cast_id": 92, "profile_path": "/32pHsnzR2mJhdu4q5iG74XuDxYG.jpg", "order": 61}, {"name": "Frankie Stevens", "character": "Tirant", "id": 1113310, "credit_id": "52fe425cc3a36847f8018471", "cast_id": 93, "profile_path": "/c559hHsIDrZMSNkhHOsv5uY20dF.jpg", "order": 62}, {"name": "Nicandro Thomas", "character": "Young Thomas Anderson at 2", "id": 1265155, "credit_id": "52fe425cc3a36847f8018475", "cast_id": 94, "profile_path": "/1KAzxuBTXfp3FWZjiXznlQhCshN.jpg", "order": 63}, {"name": "Gina Torres", "character": "Cas", "id": 9576, "credit_id": "52fe425cc3a36847f8018479", "cast_id": 95, "profile_path": "/z43hy1X1vRD26vNDh0lzxg1rcBl.jpg", "order": 64}, {"name": "Andrew Valli", "character": "Police #1", "id": 1265156, "credit_id": "52fe425cc3a36847f801847d", "cast_id": 96, "profile_path": null, "order": 65}, {"name": "Steve Vella", "character": "Malachi", "id": 125323, "credit_id": "52fe425cc3a36847f8018481", "cast_id": 97, "profile_path": "/dPyKdkdk5QKbxsrx8wDSDGFjQLJ.jpg", "order": 66}, {"name": "John Walton", "character": "Security Bunker Guard", "id": 1265157, "credit_id": "52fe425cc3a36847f8018485", "cast_id": 98, "profile_path": "/uh5CRSXxm9cVGtZvOWO3rTC2Oc3.jpg", "order": 67}, {"name": "Clayton Watson", "character": "Kid", "id": 56347, "credit_id": "52fe425cc3a36847f8018489", "cast_id": 99, "profile_path": null, "order": 68}, {"name": "Leigh Whannell", "character": "Axel", "id": 2128, "credit_id": "52fe425cc3a36847f801848d", "cast_id": 100, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 69}, {"name": "Bernard White", "character": "Rama-Kandra", "id": 156739, "credit_id": "52fe425cc3a36847f8018491", "cast_id": 101, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 70}, {"name": "Anthony Zerbe", "character": "Councillor Hamann", "id": 2516, "credit_id": "52fe425cc3a36847f8018499", "cast_id": 103, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 71}, {"name": "Scott McLean", "character": "Security Bunker Guard #2", "id": 87811, "credit_id": "530836c0925141111a001771", "cast_id": 104, "profile_path": "/lv4uPdfP2JIqKm4eDOWJHdDIbmA.jpg", "order": 72}, {"name": "Anthony Wong", "character": "Ghost", "id": 930817, "credit_id": "5308383ac3a3684201001dcd", "cast_id": 105, "profile_path": "/qCXdSClvG2EaXFO3xAyAZdNjXYD.jpg", "order": 73}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f80182ed", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f80183c1", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}], "vote_average": 6.5, "runtime": 138}, "605": {"poster_path": "/sKogjhfs5q3azmpW7DFKKAeLEG8.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 424988211, "overview": "The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.", "video": false, "id": 605, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Matrix Revolutions", "tagline": "Everything that has a beginning has an end.", "vote_count": 1421, "homepage": "http://whatisthematrix.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/bRm2DEgUiYciDw3myHuYFInD7la.jpg", "poster_path": "/lh4aGpd3U9rm9B8Oqr6CUgQLtZL.jpg", "id": 2344, "name": "The Matrix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0242653", "adult": false, "backdrop_path": "/pdVHUsb2eEz9ALNTr6wfRJe5xVa.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}], "release_date": "2003-10-26", "popularity": 2.01001384476135, "original_title": "The Matrix Revolutions", "budget": 150000000, "cast": [{"name": "Keanu Reeves", "character": "Neo", "id": 6384, "credit_id": "52fe425cc3a36847f80184f5", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Morpheus", "id": 2975, "credit_id": "52fe425cc3a36847f80184f9", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Carrie-Anne Moss", "character": "Trinity", "id": 530, "credit_id": "52fe425cc3a36847f80184fd", "cast_id": 3, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Agent Smith", "id": 1331, "credit_id": "52fe425cc3a36847f8018501", "cast_id": 4, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Mary Alice", "character": "Oracle", "id": 9572, "credit_id": "52fe425cc3a36847f8018505", "cast_id": 5, "profile_path": "/2h20nF8gvhqhgVDV6Lru55dKB44.jpg", "order": 4}, {"name": "Helmut Bakaitis", "character": "The Architect", "id": 9443, "credit_id": "52fe425cc3a36847f8018509", "cast_id": 6, "profile_path": "/y6ICnJGyavStO2wrbqpf5hABwPj.jpg", "order": 5}, {"name": "Lambert Wilson", "character": "The Merovingian", "id": 2192, "credit_id": "52fe425cc3a36847f801850d", "cast_id": 7, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 6}, {"name": "Roy Jones Jr.", "character": "Captain Ballard", "id": 9457, "credit_id": "52fe425cc3a36847f8018511", "cast_id": 9, "profile_path": "/fgsHZRBpMinLbRninT1RcApxEnA.jpg", "order": 8}, {"name": "Randall Duk Kim", "character": "The Keymaker", "id": 9462, "credit_id": "52fe425cc3a36847f8018515", "cast_id": 10, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 9}, {"name": "Harry Lennix", "character": "Commander Lock", "id": 9464, "credit_id": "52fe425cc3a36847f8018519", "cast_id": 11, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 10}, {"name": "Matt McColm", "character": "Agent Thompson", "id": 9466, "credit_id": "52fe425cc3a36847f801851d", "cast_id": 12, "profile_path": "/z4bPKnOdDrkOmzeudLCcPKyyMUE.jpg", "order": 11}, {"name": "Harold Perrineau", "character": "Link", "id": 6195, "credit_id": "52fe425cc3a36847f8018521", "cast_id": 13, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 12}, {"name": "Jada Pinkett Smith", "character": "Niobe", "id": 9575, "credit_id": "52fe425cc3a36847f8018525", "cast_id": 14, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 13}, {"name": "Gina Torres", "character": "Cas", "id": 9576, "credit_id": "52fe425cc3a36847f8018529", "cast_id": 15, "profile_path": "/z43hy1X1vRD26vNDh0lzxg1rcBl.jpg", "order": 14}, {"name": "Collin Chou", "character": "Seraph", "id": 52908, "credit_id": "52fe425cc3a36847f80185b7", "cast_id": 39, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 15}, {"name": "Cornel West", "character": "Councillor West", "id": 537506, "credit_id": "52fe425cc3a36847f80185bb", "cast_id": 40, "profile_path": "/lMOn0gg1tTphBE974NARiTmqTES.jpg", "order": 16}, {"name": "Nona Gaye", "character": "Zee", "id": 18286, "credit_id": "52fe425cc3a36847f80185bf", "cast_id": 41, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 17}, {"name": "Monica Bellucci", "character": "Persephone", "id": 28782, "credit_id": "52fe425cc3a36847f80185c3", "cast_id": 42, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 18}, {"name": "Maurice Morgan", "character": "Tower Soldier", "id": 62490, "credit_id": "52fe425cc3a36847f80185c7", "cast_id": 43, "profile_path": "/96fM22kWShDIlWNS7ZVsd8s1kLo.jpg", "order": 19}, {"name": "Bernard White", "character": "Rama-Kandra", "id": 156739, "credit_id": "52fe425cc3a36847f80185cb", "cast_id": 44, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 20}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f801852f", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f801853b", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}], "vote_average": 6.3, "runtime": 129}, "606": {"poster_path": "/gYNfg38sM4aSpxfC8gPkwg5UZHN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128499205, "overview": "Out of Africa tells the story of the life of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on the autobiographical novel by Karen Blixen from 1937.", "video": false, "id": 606, "genres": [{"id": 18, "name": "Drama"}], "title": "Out of Africa", "tagline": "Based on a true story.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0089755", "adult": false, "backdrop_path": "/w6VwFCdQypTKEZAkzWtyPVii3zp.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Mirage Entertainment", "id": 205}], "release_date": "1985-12-10", "popularity": 0.812946124957046, "original_title": "Out of Africa", "budget": 31000000, "cast": [{"name": "Meryl Streep", "character": "Karen Christence Dinesen Blixen", "id": 5064, "credit_id": "52fe425cc3a36847f8018697", "cast_id": 22, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Robert Redford", "character": "Denys George Finch Hatton", "id": 4135, "credit_id": "52fe425cc3a36847f801869b", "cast_id": 23, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Klaus Maria Brandauer", "character": "Baron Bror Blixen/Baron Hans Blixen", "id": 10647, "credit_id": "52fe425cc3a36847f801869f", "cast_id": 24, "profile_path": "/7TQOSrbO4tk3jecFSg2dVdZjTHQ.jpg", "order": 2}, {"name": "Michael Kitchen", "character": "Berkeley Cole", "id": 10648, "credit_id": "52fe425cc3a36847f80186a3", "cast_id": 25, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 3}, {"name": "Malick Bowens", "character": "Farah", "id": 10649, "credit_id": "52fe425cc3a36847f80186a7", "cast_id": 26, "profile_path": null, "order": 4}, {"name": "Joseph Thiaka", "character": "Kamante", "id": 10650, "credit_id": "52fe425cc3a36847f80186ab", "cast_id": 27, "profile_path": null, "order": 5}, {"name": "Stephen Kinyanjui", "character": "Kinanjui", "id": 10651, "credit_id": "52fe425cc3a36847f80186af", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Michael Gough", "character": "Lord Delamere", "id": 3796, "credit_id": "52fe425cc3a36847f80186b3", "cast_id": 29, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 7}, {"name": "Suzanna Hamilton", "character": "Felicity", "id": 10652, "credit_id": "52fe425cc3a36847f80186b7", "cast_id": 30, "profile_path": "/ei41XX9AYpFFTk36t0mD3KYs4bg.jpg", "order": 8}, {"name": "Rachel Kempson", "character": "Lady Belfield", "id": 10653, "credit_id": "52fe425cc3a36847f80186bb", "cast_id": 31, "profile_path": "/bdnBRD6SXiJGqgt0jH5I6ZqH4yD.jpg", "order": 9}, {"name": "Graham Crowden", "character": "Lord Belfield", "id": 10654, "credit_id": "52fe425cc3a36847f80186bf", "cast_id": 32, "profile_path": "/wyGg5BXqE1N8oG1Ag82I3yHYQdW.jpg", "order": 10}, {"name": "Leslie Phillips", "character": "Sir Joseph", "id": 10655, "credit_id": "52fe425cc3a36847f80186c3", "cast_id": 33, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 11}, {"name": "Mike Bugara", "character": "Juma", "id": 10656, "credit_id": "52fe425cc3a36847f80186c7", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Shane Rimmer", "character": "Belknap, farm manager", "id": 10657, "credit_id": "52fe425cc3a36847f80186cb", "cast_id": 35, "profile_path": "/ctrIOcWLjOB5rocS0vVHEjbS1Sx.jpg", "order": 13}, {"name": "Job Seda", "character": "Kanuthia", "id": 10658, "credit_id": "52fe425cc3a36847f80186cf", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Mohammed Umar", "character": "Ismail", "id": 1154526, "credit_id": "52fe425cc3a36847f80186df", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Iman", "character": "Mariammo", "id": 2124, "credit_id": "52fe425cc3a36847f80186e3", "cast_id": 40, "profile_path": "/4HAfEFjc7XkJSGeL7nKiQzntHuw.jpg", "order": 16}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f8018621", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 7.0, "runtime": 161}, "607": {"poster_path": "/f24UVKq3UiQWLqGWdqjwkzgB8j8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 589390539, "overview": "Men in Black follows the exploits of agents Kay and Jay, members of a top-secret organization established to monitor and police alien activity on Earth. The two Men in Black find themselves in the middle of the deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies. In order to prevent worlds from colliding, the MiB must track down the terrorist and prevent the destruction of Earth. It's just another typical day for the Men in Black.", "video": false, "id": 607, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Men in Black", "tagline": "Protecting the Earth from the scum of the universe.", "vote_count": 1667, "homepage": "http://www.sonypictures.com/homevideo/meninblack/", "belongs_to_collection": {"backdrop_path": "/iGEoxfkFZXQcqAkDUDpnjqGCN6R.jpg", "poster_path": "/rWcgZaoJ0nxTFRn0H6w9bdtoDUI.jpg", "id": 86055, "name": "Men In Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0119654", "adult": false, "backdrop_path": "/o17MKb2hyuqtb0P6xLdNY4HaxDi.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1997-07-02", "popularity": 1.37783087665522, "original_title": "Men in Black", "budget": 90000000, "cast": [{"name": "Tommy Lee Jones", "character": "Agent K", "id": 2176, "credit_id": "52fe425dc3a36847f80187c7", "cast_id": 25, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Will Smith", "character": "James Edwards / Agent J", "id": 2888, "credit_id": "52fe425dc3a36847f80187cb", "cast_id": 26, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Linda Fiorentino", "character": "Dr. Laurel Weaver / Agent L", "id": 9625, "credit_id": "52fe425dc3a36847f80187cf", "cast_id": 27, "profile_path": "/16aVa4evfjWiAnM6srkLhWYJlpZ.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Edgar / The Bug", "id": 7132, "credit_id": "52fe425dc3a36847f80187d3", "cast_id": 28, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "Rip Torn", "character": "Chief Zed", "id": 9626, "credit_id": "52fe425dc3a36847f80187d7", "cast_id": 29, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 4}, {"name": "Tony Shalhoub", "character": "Jack Jeebs", "id": 4252, "credit_id": "52fe425dc3a36847f80187db", "cast_id": 30, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 5}, {"name": "Mike Nussbaum", "character": "Gentle Rosenburg the Arquillian Jeweler", "id": 9628, "credit_id": "52fe425dc3a36847f80187df", "cast_id": 31, "profile_path": "/gcsqhh40flXDPJ9s3U6clD9Jb59.jpg", "order": 6}, {"name": "Jon Gries", "character": "Van driver", "id": 9629, "credit_id": "52fe425dc3a36847f80187e3", "cast_id": 32, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 7}, {"name": "Sergio Calder\u00f3n", "character": "Jose", "id": 9630, "credit_id": "52fe425dc3a36847f80187e7", "cast_id": 33, "profile_path": "/idF5aYegbTJzZF7Uhe3GarfKSsZ.jpg", "order": 8}, {"name": "Carel Struycken", "character": "Arquillian", "id": 9631, "credit_id": "52fe425dc3a36847f80187eb", "cast_id": 34, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 9}, {"name": "Fredric Lehne", "character": "INS agent Janus", "id": 9632, "credit_id": "52fe425dc3a36847f80187ef", "cast_id": 35, "profile_path": "/imw4YH5LOtyA3lQOGA5UNp9e8NI.jpg", "order": 10}, {"name": "Richard Hamilton", "character": "Agent D", "id": 9633, "credit_id": "52fe425dc3a36847f80187f3", "cast_id": 36, "profile_path": "/voxABW599IHapx2AY9c16mqNK3n.jpg", "order": 11}, {"name": "Kent Faulcon", "character": "2nd Lt. Jake Jensen", "id": 9634, "credit_id": "52fe425dc3a36847f80187f7", "cast_id": 37, "profile_path": "/oOKr7nJJwpGNrPijma1MhhkDRPv.jpg", "order": 12}, {"name": "Siobhan Fallon", "character": "Beatrice", "id": 6751, "credit_id": "52fe425dc3a36847f80187fb", "cast_id": 39, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 13}, {"name": "John Alexander", "character": "Mikey", "id": 443770, "credit_id": "52fe425dc3a36847f80187ff", "cast_id": 40, "profile_path": "/5tcxoXCC4hh12OowR1kITzkrCmC.jpg", "order": 14}, {"name": "Keith Campbell", "character": "Perp", "id": 15318, "credit_id": "53b94f60c3a3685eb4005502", "cast_id": 41, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 15}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe425cc3a36847f8018739", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.5, "runtime": 98}, "608": {"poster_path": "/qWjRfBwr4VculczswwojXgoU0mq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 441818803, "overview": "Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIBs untarnished mission statement: protecting the earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. And now it's a race against the clock as Jay must convince Kay-who not only has absolutely no memory of his time spent with the Men In Black, but is also the only living person left with the expertise to save the galaxy-to reunite with the MIB before the earth submits to ultimate destruction.", "video": false, "id": 608, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Men in Black II", "tagline": "Same Planet. New Scum.", "vote_count": 997, "homepage": "http://www.sonypictures.com/homevideo/meninblackii/", "belongs_to_collection": {"backdrop_path": "/iGEoxfkFZXQcqAkDUDpnjqGCN6R.jpg", "poster_path": "/rWcgZaoJ0nxTFRn0H6w9bdtoDUI.jpg", "id": 86055, "name": "Men In Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120912", "adult": false, "backdrop_path": "/cITp4EM8HEKrlhXDEeGNy2IB8D9.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Amblin Entertainment", "id": 56}, {"name": "MacDonald/Parkes Productions", "id": 384}], "release_date": "2002-07-02", "popularity": 0.902867575648059, "original_title": "Men in Black II", "budget": 140000000, "cast": [{"name": "Tommy Lee Jones", "character": "Kevin Brown, Agent Kay", "id": 2176, "credit_id": "52fe425dc3a36847f80188d9", "cast_id": 25, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Will Smith", "character": "Agent Jay", "id": 2888, "credit_id": "52fe425dc3a36847f8018905", "cast_id": 36, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Rip Torn", "character": "Zed", "id": 9626, "credit_id": "52fe425dc3a36847f80188dd", "cast_id": 26, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 2}, {"name": "Lara Flynn Boyle", "character": "Serleena", "id": 6684, "credit_id": "52fe425dc3a36847f80188e1", "cast_id": 27, "profile_path": "/m6yHSVEjItgFkMAKB3zOdOoLITy.jpg", "order": 3}, {"name": "Johnny Knoxville", "character": "Scrad/Charlie", "id": 9656, "credit_id": "52fe425dc3a36847f80188e5", "cast_id": 28, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 4}, {"name": "Rosario Dawson", "character": "Laura Vasquez", "id": 5916, "credit_id": "52fe425dc3a36847f80188e9", "cast_id": 29, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 5}, {"name": "Tony Shalhoub", "character": "Jack Jeebs", "id": 4252, "credit_id": "52fe425dc3a36847f80188ed", "cast_id": 30, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 6}, {"name": "Patrick Warburton", "character": "Agent Tee", "id": 9657, "credit_id": "52fe425dc3a36847f80188f1", "cast_id": 31, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 7}, {"name": "Jack Kehler", "character": "Ben", "id": 1240, "credit_id": "52fe425dc3a36847f80188f5", "cast_id": 32, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 8}, {"name": "David Cross", "character": "Newton", "id": 212, "credit_id": "52fe425dc3a36847f80188f9", "cast_id": 33, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 9}, {"name": "Colombe Jacobsen-Derstine", "character": "Hailey", "id": 9658, "credit_id": "52fe425dc3a36847f80188fd", "cast_id": 34, "profile_path": "/2mfG4qLG4qkVs8zOwd57pPAVPH7.jpg", "order": 10}, {"name": "Peter Spellos", "character": "Captain Larry Bridgewater, The Motorman", "id": 9659, "credit_id": "52fe425dc3a36847f8018901", "cast_id": 35, "profile_path": "/sj2YF20Rqe8uvS1QQajCV5bdaky.jpg", "order": 11}, {"name": "Michael Bailey Smith", "character": "Creepy", "id": 37008, "credit_id": "52fe425dc3a36847f801890f", "cast_id": 38, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 12}, {"name": "Rick Baker", "character": "MIB Passport Control Agent", "id": 16178, "credit_id": "52fe425dc3a36847f8018913", "cast_id": 39, "profile_path": "/4sVinbTdY31QSmQUJFjomK2AXd8.jpg", "order": 13}, {"name": "Michael Jackson", "character": "Agent M", "id": 82702, "credit_id": "52fe425dc3a36847f8018917", "cast_id": 40, "profile_path": "/9nDsffd8kZ2O9MlnIiqWRVausM7.jpg", "order": 14}, {"name": "Doug Jones", "character": "Joey", "id": 17005, "credit_id": "52fe425dc3a36847f801891b", "cast_id": 41, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 15}, {"name": "Derek Mears", "character": "Mosh Tendrils", "id": 51300, "credit_id": "52fe425dc3a36847f801891f", "cast_id": 42, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 16}, {"name": "Michael Rivkin", "character": "the man with Harvey, the dog", "id": 154590, "credit_id": "535d5686c3a36830a000423a", "cast_id": 43, "profile_path": "/dbDAM1BOcjvnoFBI7QlWW0UUC3E.jpg", "order": 17}, {"name": "Lenny Venito", "character": "New York guy", "id": 37157, "credit_id": "535d56bfc3a3682273000928", "cast_id": 44, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 18}, {"name": "Howard Spiegel", "character": "New York guy", "id": 1314246, "credit_id": "535d56dec3a3683091004234", "cast_id": 45, "profile_path": "/z9CmHwe7fHG1YKPoeaykxYxqZZP.jpg", "order": 19}, {"name": "Alpheus Merchant", "character": "MIB guard", "id": 189734, "credit_id": "535d5705c3a36830a0004246", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Joel McKinnon Miller", "character": "agent", "id": 88950, "credit_id": "535d578fc3a36830a0004250", "cast_id": 48, "profile_path": "/3Ogco60XoPVmbLTzqmhgxDgsQBW.jpg", "order": 22}, {"name": "Jay Johnston", "character": "the younger Pizza Parlor MIB agent", "id": 1215262, "credit_id": "535d5836c3a36830a0004255", "cast_id": 55, "profile_path": "/tez2yLdvX40JNvZVTePuEYecda0.jpg", "order": 29}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018857", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 5.9, "runtime": 88}, "609": {"poster_path": "/hKs6umpuLSgZhOiZI1pxpO0iVTQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122200000, "overview": "Craig T. Nelson stars as Steve Freeling, the main protagonist, who lives with his wife, Diane, (JoBeth Williams) and their three children, Dana (Dominique Dunne), Robbie (Oliver Robins), and Carol Anne (Heather O'Rourke), in Southern California where he sells houses for the company that built the neighborhood. It starts with just a few odd occurrences, such as broken dishes and furniture moving around by itself. However, a tree comes alive and takes Robbie through his bedroom window, and Carol Anne is abducted by ghosts. Realizing that something evil haunts his home, Steve calls in a team of parapsychologists led by Dr. Lesh (Beatrice Straight) to investigate, hoping to get Carol Anne back, so he can remove his family from the house before it's too late.", "video": false, "id": 609, "genres": [{"id": 27, "name": "Horror"}], "title": "Poltergeist", "tagline": "They're here.", "vote_count": 216, "homepage": "", "belongs_to_collection": {"backdrop_path": "/i8QZZV1olny9FCPNrxAL7Kk9CJy.jpg", "poster_path": "/8Z6P04pKGvCnkmHdAl2lmbfAIbN.jpg", "id": 10453, "name": "Poltergeist Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084516", "adult": false, "backdrop_path": "/6kazrydTbHlqKzE5h2xUejDgIec.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "SLM Production Group", "id": 396}], "release_date": "1982-06-04", "popularity": 1.73520494702945, "original_title": "Poltergeist", "budget": 10700000, "cast": [{"name": "Craig T. Nelson", "character": "Steve Freeling", "id": 8977, "credit_id": "52fe425dc3a36847f80189dd", "cast_id": 21, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 0}, {"name": "JoBeth Williams", "character": "Diane Freeling", "id": 10080, "credit_id": "52fe425dc3a36847f80189e1", "cast_id": 22, "profile_path": "/qYpexEkDDXG1TwtmAVgr5wsi60x.jpg", "order": 1}, {"name": "Beatrice Straight", "character": "Dr. Lesh", "id": 10083, "credit_id": "52fe425dc3a36847f80189e5", "cast_id": 23, "profile_path": "/e88n8bvcpLTz6Tz1VYhccFsov7r.jpg", "order": 2}, {"name": "Dominique Dunne", "character": "Dana Freeling", "id": 10084, "credit_id": "52fe425dc3a36847f80189e9", "cast_id": 24, "profile_path": null, "order": 3}, {"name": "Oliver Robins", "character": "Robbie Freeling", "id": 10085, "credit_id": "52fe425dc3a36847f80189ed", "cast_id": 25, "profile_path": "/cp0sOxhabpGVZcHFaTc9YL0Ngn7.jpg", "order": 4}, {"name": "Heather O'Rourke", "character": "Carol Anne Freeling", "id": 10086, "credit_id": "52fe425dc3a36847f80189f1", "cast_id": 26, "profile_path": "/pa7kowurmC4DwJzVXYT08R50L5g.jpg", "order": 5}, {"name": "Michael McManus", "character": "Ben Tuthill", "id": 10087, "credit_id": "52fe425dc3a36847f80189f5", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Virginia Kiser", "character": "Mrs. Tuthill", "id": 10088, "credit_id": "52fe425dc3a36847f80189f9", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Martin Casella", "character": "Dr. Marty Casey", "id": 10089, "credit_id": "52fe425dc3a36847f80189fd", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Richard Lawson", "character": "Ryan", "id": 10090, "credit_id": "52fe425dc3a36847f8018a01", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Zelda Rubinstein", "character": "Tangina Barrons", "id": 10091, "credit_id": "52fe425dc3a36847f8018a05", "cast_id": 31, "profile_path": "/mYW44c9DYrt9xARj0I3HWjwZCLn.jpg", "order": 10}, {"name": "Lou Perryman", "character": "Pugsley", "id": 2851, "credit_id": "52fe425dc3a36847f8018a09", "cast_id": 32, "profile_path": null, "order": 11}], "directors": [{"name": "Tobe Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018967", "profile_path": "/fsPSiL7qhUBULig72zdfKWSDa1V.jpg", "id": 10051}], "vote_average": 6.8, "runtime": 114}, "270946": {"poster_path": "/eCdQdoqG9kQQbzPnbVDXqwoTgLl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98600000, "overview": "Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.", "video": false, "id": 270946, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Penguins of Madagascar", "tagline": "The Movie Event That Will Blow Their Cover", "vote_count": 286, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1911658", "adult": false, "backdrop_path": "/GtodNrQnorVd3Gv6f6i4bdEwkP.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2014-11-26", "popularity": 7.59490404281435, "original_title": "Penguins of Madagascar", "budget": 132000000, "cast": [{"name": "Tom McGrath", "character": "Skipper (voice)", "id": 18864, "credit_id": "546e0038c3a3685aab00208b", "cast_id": 8, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 0}, {"name": "Chris Miller", "character": "Kowalski (voice)", "id": 12098, "credit_id": "546e0047c3a3685aaf001e49", "cast_id": 9, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 1}, {"name": "Christopher Knights", "character": "Private (voice)", "id": 12097, "credit_id": "546e00549251412bb3001f68", "cast_id": 10, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 2}, {"name": "Benedict Cumberbatch", "character": "Classified (voice)", "id": 71580, "credit_id": "537ccf700e0a262a97001b4f", "cast_id": 3, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 3}, {"name": "Ken Jeong", "character": "Short Fuse (voice)", "id": 83586, "credit_id": "53c6323ac3a3686251001bfe", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 4}, {"name": "Annet Mahendru", "character": "Eva (voice)", "id": 1257563, "credit_id": "53c63244c3a3686247001cfd", "cast_id": 7, "profile_path": "/wKGd9Jhsl7KezMWIJ5SLLVHALxY.jpg", "order": 5}, {"name": "Peter Stormare", "character": "Corporal (voice)", "id": 53, "credit_id": "53c6322fc3a368626c001c37", "cast_id": 5, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 6}, {"name": "John Malkovich", "character": "Dave (voice)", "id": 6949, "credit_id": "537ccf770e0a262a91001a83", "cast_id": 4, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 7}, {"name": "Conrad Vernon", "character": "Rico (voice)", "id": 12080, "credit_id": "546f4f39c3a3682f9e002096", "cast_id": 11, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 8}, {"name": "Ken Jeong", "character": "Short Fuse", "id": 83586, "credit_id": "548c802ec3a36820c2002036", "cast_id": 13, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 9}, {"name": "Andy Richter", "character": "Mort (voice)", "id": 28637, "credit_id": "548c803fc3a36820b8002313", "cast_id": 14, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 10}, {"name": "Ken Jeong", "character": "Short Fuse (voice)", "id": 83586, "credit_id": "548c804592514122f90021a2", "cast_id": 15, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 11}, {"name": "Werner Herzog", "character": "Documentary Filmmaker (voice)", "id": 6818, "credit_id": "548c807392514122f5001f5d", "cast_id": 16, "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "order": 12}, {"name": "Billy Eichner", "character": "New York Reporter (voice)", "id": 973651, "credit_id": "548c813a92514122f2001f8b", "cast_id": 17, "profile_path": "/1xCPFY4Yh7evbXILi8JRDRqUWeS.jpg", "order": 13}], "directors": [{"name": "Simon J. Smith", "department": "Directing", "job": "Director", "credit_id": "537ccf650e0a262a84001b26", "profile_path": "/bCbQtXtrOuKpPLdbSLn72KlYc2Z.jpg", "id": 44114}, {"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "5483ba4d92514175f5002c15", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}], "vote_average": 6.7, "runtime": 92}, "16995": {"poster_path": "/lH5rHsUM7Umo9xyyjPguK5kTXKd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87784194, "overview": "Handsome, unflappable U.S. Congressman Stephen Collins is the future of his political party: an honorable appointee who serves as the chairman of a committee overseeing defense spending. All eyes are upon the rising star to be his party's contender for the upcoming presidential race. Until his research assistant/mistress is brutally murdered and buried secrets come tumbling out.", "video": false, "id": 16995, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "State of Play", "tagline": "Find The Truth", "vote_count": 119, "homepage": "http://www.stateofplaymovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0473705", "adult": false, "backdrop_path": "/m5IuPoczdDZyBZJxbOxsIxqghvb.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}, {"name": "Andell Entertainment", "id": 1683}, {"name": "Relativity Media", "id": 7295}, {"name": "StudioCanal", "id": 694}], "release_date": "2009-04-17", "popularity": 1.97274048263361, "original_title": "State of Play", "budget": 60000000, "cast": [{"name": "Russell Crowe", "character": "Cal McAffrey", "id": 934, "credit_id": "52fe46fc9251416c7508a2a5", "cast_id": 2, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Ben Affleck", "character": "Stephen Collins", "id": 880, "credit_id": "52fe46fc9251416c7508a2a9", "cast_id": 3, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 1}, {"name": "Rachel McAdams", "character": "Della Frye", "id": 53714, "credit_id": "52fe46fc9251416c7508a2ad", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 2}, {"name": "Helen Mirren", "character": "Cameron Lynne", "id": 15735, "credit_id": "52fe46fc9251416c7508a2b1", "cast_id": 5, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 3}, {"name": "Robin Wright", "character": "Anne Collins", "id": 32, "credit_id": "52fe46fc9251416c7508a2b5", "cast_id": 6, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Dominic Foy", "id": 23532, "credit_id": "52fe46fc9251416c7508a2b9", "cast_id": 7, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Jeff Daniels", "character": "Senator George Fergus", "id": 8447, "credit_id": "52fe46fc9251416c7508a2c9", "cast_id": 11, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 6}, {"name": "Michael Berresse", "character": "Robert Bingham", "id": 81867, "credit_id": "52fe46fc9251416c7508a2cd", "cast_id": 12, "profile_path": "/py4wHfZS40qGQ2Oi0bMBeqwXjnd.jpg", "order": 7}, {"name": "Harry Lennix", "character": "Det. Donald Bell", "id": 9464, "credit_id": "52fe46fc9251416c7508a2d1", "cast_id": 13, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 8}, {"name": "Josh Mostel", "character": "Pete", "id": 33489, "credit_id": "52fe46fc9251416c7508a2d5", "cast_id": 14, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 9}, {"name": "Michael Weston", "character": "Hank", "id": 51381, "credit_id": "52fe46fc9251416c7508a2d9", "cast_id": 15, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 10}, {"name": "Barry Shabaka Henley", "character": "Gene Stavitz", "id": 8689, "credit_id": "52fe46fc9251416c7508a2dd", "cast_id": 16, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 11}, {"name": "Viola Davis", "character": "Dr. Judith Franklin", "id": 19492, "credit_id": "52fe46fc9251416c7508a2e1", "cast_id": 17, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 12}, {"name": "David Harbour", "character": "PointCorp Insider", "id": 35029, "credit_id": "52fe46fc9251416c7508a2e5", "cast_id": 18, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 13}, {"name": "Gregg Binkley", "character": "Ferris", "id": 170185, "credit_id": "52fe46fc9251416c7508a34d", "cast_id": 36, "profile_path": "/gTmsOFfFqHDcEzeqh3ezcSuk7TB.jpg", "order": 14}, {"name": "Sarah Lord", "character": "Mandi Brokaw", "id": 81868, "credit_id": "52fe46fc9251416c7508a2e9", "cast_id": 19, "profile_path": null, "order": 15}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe46fc9251416c7508a2a1", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 6.5, "runtime": 127}, "612": {"poster_path": "/3pnsX1egUElYvgmAcCqYvXVOY9O.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130358911, "overview": "Steven Spielberg\u2019s story about the Israeli assassinations of key Palestinians following the 1972 Munich massacre, where 11 members of the Israeli olympic team were killed. The film, which questions the idea of revenge killings, caused much fury in parts of the pro-Israel camp.", "video": false, "id": 612, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "Munich", "tagline": "The world was watching in 1972 as 11 Israeli athletes were murdered at the Munich Olympics. This is the story of what happened next.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0408306", "adult": false, "backdrop_path": "/qhOlcpkWW0AcrCRvqnddA6kgCH4.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Barry Mendel Productions", "id": 17032}, {"name": "Alliance Atlantis Communications", "id": 803}, {"name": "Peninsula Films", "id": 682}], "release_date": "2005-12-22", "popularity": 1.07544089111528, "original_title": "Munich", "budget": 70000000, "cast": [{"name": "Eric Bana", "character": "Avner", "id": 8783, "credit_id": "52fe425dc3a36847f8018a81", "cast_id": 10, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Daniel Craig", "character": "Steve", "id": 8784, "credit_id": "52fe425dc3a36847f8018a85", "cast_id": 11, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 1}, {"name": "Ciar\u00e1n Hinds", "character": "Carl", "id": 8785, "credit_id": "52fe425dc3a36847f8018a89", "cast_id": 12, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 2}, {"name": "Mathieu Kassovitz", "character": "Robert", "id": 2406, "credit_id": "52fe425dc3a36847f8018a8d", "cast_id": 13, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 3}, {"name": "Hanns Zischler", "character": "Hans", "id": 169, "credit_id": "52fe425dc3a36847f8018a91", "cast_id": 14, "profile_path": "/kcWgn5jTuI3BPVQlqRMGQ27N4yU.jpg", "order": 4}, {"name": "Ayelet Zurer", "character": "Daphna", "id": 8786, "credit_id": "52fe425dc3a36847f8018a95", "cast_id": 15, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 5}, {"name": "Geoffrey Rush", "character": "Ephraim", "id": 118, "credit_id": "52fe425dc3a36847f8018a99", "cast_id": 16, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 6}, {"name": "Gila Almagor", "character": "Avner's Mother", "id": 8787, "credit_id": "52fe425dc3a36847f8018a9d", "cast_id": 17, "profile_path": "/t2rNmyhizqPnviXFbVaA4iDtqIZ.jpg", "order": 7}, {"name": "Mathieu Amalric", "character": "Louis", "id": 8789, "credit_id": "52fe425dc3a36847f8018aa1", "cast_id": 18, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 8}, {"name": "Moritz Bleibtreu", "character": "Andreas", "id": 677, "credit_id": "52fe425dc3a36847f8018aa5", "cast_id": 19, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 9}, {"name": "Valeria Bruni Tedeschi", "character": "Sylvie", "id": 5077, "credit_id": "52fe425dc3a36847f8018aa9", "cast_id": 20, "profile_path": "/n4WmQHkRwOIp1bpN3lbkJ9BK53z.jpg", "order": 10}, {"name": "Meret Becker", "character": "Yvonne", "id": 8790, "credit_id": "52fe425dc3a36847f8018aad", "cast_id": 21, "profile_path": "/rr88BPUme1o45VRfNERuaQYvc4v.jpg", "order": 11}, {"name": "Marie-Jos\u00e9e Croze", "character": "Jeanette", "id": 8791, "credit_id": "52fe425dc3a36847f8018ab1", "cast_id": 22, "profile_path": "/geZ08Bzueh6qDEGGUR7jQgomLks.jpg", "order": 12}, {"name": "Yvan Attal", "character": "Tony", "id": 2245, "credit_id": "52fe425dc3a36847f8018ab5", "cast_id": 23, "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "order": 13}, {"name": "Lynn Cohen", "character": "Golda Meir", "id": 8792, "credit_id": "52fe425dc3a36847f8018ab9", "cast_id": 24, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 14}, {"name": "Ami Weinberg", "character": "General Zamir", "id": 8793, "credit_id": "52fe425dc3a36847f8018abd", "cast_id": 25, "profile_path": "/cReUrPyB0ctdmzOlSC33azuFkQB.jpg", "order": 15}, {"name": "Michael Lonsdale", "character": "Papa", "id": 2369, "credit_id": "52fe425dc3a36847f8018aeb", "cast_id": 33, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 16}, {"name": "Yigal Naor", "character": "Mahmoud Hamshari", "id": 41316, "credit_id": "52fe425dc3a36847f8018aef", "cast_id": 34, "profile_path": "/fywzghy8kLToNRH4OvrLkFSuXqA.jpg", "order": 17}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018a53", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.6, "runtime": 164}, "613": {"poster_path": "/dKKlkfAQL4Ih3OQwqpmMf0gr4r9.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 92180910, "overview": "In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.", "video": false, "id": 613, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Downfall", "tagline": "April 1945, a nation awaits its...Downfall", "vote_count": 401, "homepage": "http://www.downfallthefilm.com/", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0363163", "adult": false, "backdrop_path": "/d3AmCJXvsP818di5KcCj4fNi36.jpg", "production_companies": [{"name": "Rai Cinema", "id": 2683}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Norddeutscher Rundfunk (NDR)", "id": 7201}, {"name": "\u00d6sterreichischer Rundfunk (ORF)", "id": 3391}, {"name": "Degeto Film", "id": 986}, {"name": "EOS Entertainment", "id": 2278}], "release_date": "2004-09-16", "popularity": 0.834409319858451, "original_title": "Der Untergang", "budget": 18339750, "cast": [{"name": "Bruno Ganz", "character": "Adolf Hitler", "id": 2310, "credit_id": "52fe425dc3a36847f8018b3d", "cast_id": 1, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 0}, {"name": "Alexandra Maria Lara", "character": "Traudl Junge", "id": 5644, "credit_id": "52fe425dc3a36847f8018b41", "cast_id": 2, "profile_path": "/aQS8gK9zJDu2eIUEHUIWqWFcTSj.jpg", "order": 1}, {"name": "Corinna Harfouch", "character": "Magda Goebbels", "id": 680, "credit_id": "52fe425dc3a36847f8018b45", "cast_id": 3, "profile_path": "/oEXqVyUnBLP1JxRVhpT6B3pIe37.jpg", "order": 2}, {"name": "Ulrich Matthes", "character": "Joseph Goebbels", "id": 8796, "credit_id": "52fe425dc3a36847f8018b49", "cast_id": 4, "profile_path": "/8kvLmHa0dkVBNAqrNRwjRjh1JP5.jpg", "order": 3}, {"name": "Juliane K\u00f6hler", "character": "Eva Braun", "id": 8797, "credit_id": "52fe425dc3a36847f8018b4d", "cast_id": 5, "profile_path": "/2cE4lqT16LV6POItflIMfIgXCmA.jpg", "order": 4}, {"name": "Heino Ferch", "character": "Albert Speer", "id": 1086, "credit_id": "52fe425dc3a36847f8018b51", "cast_id": 6, "profile_path": "/dZFdmRr4Ohm5WXZstv7X0lMyd8m.jpg", "order": 5}, {"name": "Christian Berkel", "character": "Prof. Dr. Ernst-G\u00fcnter Schenck", "id": 7803, "credit_id": "52fe425dc3a36847f8018b55", "cast_id": 7, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 6}, {"name": "Thomas Kretschmann", "character": "SS-Gruppenf\u00fchrer Hermann Fegelein", "id": 3491, "credit_id": "52fe425dc3a36847f8018b59", "cast_id": 9, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 8}, {"name": "Ulrich Noethen", "character": "Reichsf\u00fchrer SS Heinrich Himmler", "id": 8799, "credit_id": "52fe425dc3a36847f8018b5d", "cast_id": 10, "profile_path": "/nS9U2b9QzQq9paKBNTERnJi6GrW.jpg", "order": 9}, {"name": "Birgit Minichmayr", "character": "Gerda Christian", "id": 8800, "credit_id": "52fe425dc3a36847f8018b61", "cast_id": 11, "profile_path": "/z2Jbpv9mgrioR9NcrraeavjIZXl.jpg", "order": 10}, {"name": "Rolf Kanies", "character": "General der Infanterie Hans Krebs", "id": 8801, "credit_id": "52fe425dc3a36847f8018b65", "cast_id": 12, "profile_path": "/sTcgax98lVq7j8LK3wAINUYzO2b.jpg", "order": 11}, {"name": "Justus von Dohn\u00e1nyi", "character": "General der Infanterie Wilhelm Burgdorf", "id": 5646, "credit_id": "52fe425dc3a36847f8018b69", "cast_id": 13, "profile_path": "/llyjSaezSTFUuUb17LcPkvMSi4M.jpg", "order": 12}, {"name": "Michael Mendl", "character": "General der Artillerie Helmuth Weidling", "id": 8802, "credit_id": "52fe425dc3a36847f8018b6d", "cast_id": 14, "profile_path": "/yXOUGxx2rGfuiDBpuemtSQAUUJ2.jpg", "order": 13}, {"name": "Andr\u00e9 Hennicke", "character": "SS-Brigadef\u00fchrer Wilhelm Mohnke", "id": 1846, "credit_id": "52fe425dc3a36847f8018b71", "cast_id": 15, "profile_path": "/7cjb7ckyLpEFO7uD9mR5g0Yahwv.jpg", "order": 14}, {"name": "Christian Redl", "character": "Generaloberst Alfred Jodl", "id": 37102, "credit_id": "52fe425dc3a36847f8018bcf", "cast_id": 31, "profile_path": "/5EgPM4u638LpzaSWIip2ixBJyCw.jpg", "order": 15}, {"name": "G\u00f6tz Otto", "character": "SS-Hauptsturmf\u00fchrer Otto G\u00fcnsche", "id": 10744, "credit_id": "52fe425dc3a36847f8018bd3", "cast_id": 32, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 16}, {"name": "Thomas Limpinsel", "character": "Kammerdiener Heinz Linge", "id": 18944, "credit_id": "52fe425dc3a36847f8018bd7", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Thomas Thieme", "character": "Martin Bormann", "id": 8199, "credit_id": "52fe425dc3a36847f8018bdb", "cast_id": 34, "profile_path": "/izFcVDulGPf6lhV8zUbRtecCJu7.jpg", "order": 18}, {"name": "Donevan Gunia", "character": "Peter Kranz", "id": 50143, "credit_id": "52fe425dc3a36847f8018bdf", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Matthias Habich", "character": "Prof. Dr. Werner Haase", "id": 4534, "credit_id": "52fe425dc3a36847f8018be3", "cast_id": 37, "profile_path": "/7YB9tFGl8rbxBhuy9jqjU2qMHU9.jpg", "order": 21}, {"name": "Alexander Held", "character": "Walter Hewel", "id": 21743, "credit_id": "52fe425dc3a36847f8018be7", "cast_id": 38, "profile_path": "/v8uTi2CO4eiZ1ofWHHDrrcI9pcG.jpg", "order": 22}, {"name": "Devid Striesow", "character": "Feldwebel Tornow", "id": 6086, "credit_id": "54db371c925141618c001677", "cast_id": 70, "profile_path": "/86Knz2HFgvrCDZq7dT7v0CxjwFe.jpg", "order": 23}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe425dc3a36847f8018bad", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}], "vote_average": 7.5, "runtime": 156}, "615": {"poster_path": "/oFuLM1EaKhi1WNWiTjQ1HKIZ1Eg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 611899420, "overview": "\"The Passion of the Christ\" is a film about the last 12 hours in the life of Jesus. Director Mel Gibson received much criticism from critics and audiences for his explicit depiction of and focus on violence and on christs suffering, especially on the part of the jewish community. The films languages are Arabic, Latin and Hebrew and its actors are laymen which was controversially received as well.", "video": false, "id": 615, "genres": [{"id": 18, "name": "Drama"}], "title": "The Passion of the Christ", "tagline": "By his wounds, we were healed.", "vote_count": 213, "homepage": "http://www.thepassionofthechrist.com/", "belongs_to_collection": null, "original_language": "he", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0335345", "adult": false, "backdrop_path": "/1OpTk3qPCNm7nnEH0Do137dGsCk.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}], "release_date": "2004-02-25", "popularity": 0.869287752570482, "original_title": "The Passion of the Christ", "budget": 30000000, "cast": [{"name": "Jim Caviezel", "character": "Jesus", "id": 8767, "credit_id": "52fe425ec3a36847f8018d81", "cast_id": 27, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 0}, {"name": "Maia Morgenstern", "character": "Maria", "id": 8768, "credit_id": "52fe425ec3a36847f8018d85", "cast_id": 28, "profile_path": "/zpcm2zbmyi2zqjU5qsFZHY31eL1.jpg", "order": 1}, {"name": "Christo Jivkov", "character": "Johannes", "id": 8769, "credit_id": "52fe425ec3a36847f8018d89", "cast_id": 29, "profile_path": "/rRoYhDGVsXhCeVyhVa0lnhl6HSc.jpg", "order": 2}, {"name": "Francesco De Vito", "character": "Simon Peter", "id": 8770, "credit_id": "52fe425ec3a36847f8018d8d", "cast_id": 30, "profile_path": "/egdPwkp6SnLT4udBo1Svl4VR17O.jpg", "order": 3}, {"name": "Monica Bellucci", "character": "Maria Magdalena", "id": 28782, "credit_id": "52fe425ec3a36847f8018d91", "cast_id": 31, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 4}, {"name": "Mattia Sbragia", "character": "Kaiphas", "id": 8772, "credit_id": "52fe425ec3a36847f8018d95", "cast_id": 32, "profile_path": "/vCxzBHo6Ge7QhocOq4o8GlIIjsd.jpg", "order": 5}, {"name": "Luca Lionello", "character": "Judas Ischarioth", "id": 8774, "credit_id": "52fe425ec3a36847f8018d99", "cast_id": 34, "profile_path": "/uihJcvguSrQZvixepdRePNy7dmo.jpg", "order": 7}, {"name": "Hristo Shopov", "character": "Pontius Pilatus", "id": 8775, "credit_id": "52fe425ec3a36847f8018d9d", "cast_id": 35, "profile_path": "/vl6bSONRmHmyVgjQcUqyDaRxNzz.jpg", "order": 8}, {"name": "Claudia Gerini", "character": "Claudia Procula", "id": 8776, "credit_id": "52fe425ec3a36847f8018da1", "cast_id": 36, "profile_path": "/k5AvdIHYREXhYNg8lepYGqxu6Jl.jpg", "order": 9}, {"name": "Fabio Sartor", "character": "Abenader", "id": 8777, "credit_id": "52fe425ec3a36847f8018da5", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Rosalinda Celentano", "character": "Satan", "id": 8778, "credit_id": "52fe425ec3a36847f8018da9", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Toni Bertorelli", "character": "Hannas", "id": 44650, "credit_id": "52fe425ec3a36847f8018dad", "cast_id": 39, "profile_path": null, "order": 12}], "directors": [{"name": "Mel Gibson", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f8018ce7", "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "id": 2461}], "vote_average": 6.7, "runtime": 127}, "616": {"poster_path": "/sLv5pXysIz7QbtKFJy85d5yxv2W.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 456758981, "overview": "Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare -- in this lush epic set in the 1870s, which finds Algren learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.", "video": false, "id": 616, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Last Samurai", "tagline": "In the face of an enemy, in the Heart of One Man, Lies the Soul of a Warrior.", "vote_count": 552, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0325710", "adult": false, "backdrop_path": "/nO0GtGFQmEuuOyAQVpHjJlWBU8O.jpg", "production_companies": [{"name": "Radar Pictures", "id": 14718}, {"name": "Warner Bros.", "id": 6194}, {"name": "Bedford Falls Company, The", "id": 20634}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2003-12-05", "popularity": 1.23836299144966, "original_title": "The Last Samurai", "budget": 140000000, "cast": [{"name": "Tom Cruise", "character": "Captain Nathan Algren", "id": 500, "credit_id": "52fe425ec3a36847f8018e41", "cast_id": 11, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Ken Watanabe", "character": "Katsumoto", "id": 3899, "credit_id": "52fe425ec3a36847f8018e45", "cast_id": 12, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 1}, {"name": "William Atherton", "character": "Winchester Rep", "id": 7676, "credit_id": "52fe425ec3a36847f8018e49", "cast_id": 13, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 2}, {"name": "Chad Lindberg", "character": "Winchester Rep Assistant", "id": 9186, "credit_id": "52fe425ec3a36847f8018e4d", "cast_id": 14, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 3}, {"name": "Billy Connolly", "character": "Zebulon Gant", "id": 9188, "credit_id": "52fe425ec3a36847f8018e63", "cast_id": 18, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 4}, {"name": "Tony Goldwyn", "character": "Colonel Bagley", "id": 3417, "credit_id": "52fe425ec3a36847f8018e67", "cast_id": 19, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 5}, {"name": "Shichinosuke Nakamura", "character": "Emperor Meiji", "id": 9189, "credit_id": "52fe425ec3a36847f8018e6b", "cast_id": 20, "profile_path": "/aVThsn8vruHfAfjUehkSd197PDc.jpg", "order": 6}, {"name": "Koyuki", "character": "Taka", "id": 9190, "credit_id": "52fe425ec3a36847f8018e6f", "cast_id": 21, "profile_path": "/ksNF1Wl2mAYNLEPKdH4rGLUlpSf.jpg", "order": 7}, {"name": "Timothy Spall", "character": "Simon Graham", "id": 9191, "credit_id": "52fe425ec3a36847f8018e73", "cast_id": 22, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 8}, {"name": "Togo Igawa", "character": "General Hasegawa", "id": 9192, "credit_id": "52fe425ec3a36847f8018e77", "cast_id": 23, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 9}, {"name": "Scott Wilson", "character": "Ambassador Swanbeck", "id": 6914, "credit_id": "52fe425ec3a36847f8018e7b", "cast_id": 24, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 10}, {"name": "Shun Sugata", "character": "Nakao", "id": 9193, "credit_id": "52fe425ec3a36847f8018e7f", "cast_id": 25, "profile_path": "/9Ntziepdp2P2xsLGHdy0rchVJ3G.jpg", "order": 11}, {"name": "Shin Koyamada", "character": "Nobutada", "id": 9194, "credit_id": "52fe425ec3a36847f8018e83", "cast_id": 26, "profile_path": "/ojuXu0UQ6VFzHOtlRrQNenDLLq9.jpg", "order": 12}, {"name": "Hiroyuki Sanada", "character": "Ujio", "id": 9195, "credit_id": "52fe425ec3a36847f8018e87", "cast_id": 27, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 13}, {"name": "Masato Harada", "character": "Omura", "id": 52909, "credit_id": "52fe425ec3a36847f8018ea9", "cast_id": 33, "profile_path": "/1hoOz8hAKe5U01SHn9YLzW7dVtG.jpg", "order": 14}, {"name": "Masashi Odate", "character": "Omura's Companion", "id": 953738, "credit_id": "52fe425ec3a36847f8018ead", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "John Koyama", "character": "Omura's Bodyguard", "id": 92495, "credit_id": "52fe425ec3a36847f8018eb1", "cast_id": 35, "profile_path": "/uh4g85qbQGZZ0HH6IQI9fM9VUGS.jpg", "order": 16}, {"name": "Satoshi Nikaido", "character": "N.C.O.", "id": 18061, "credit_id": "52fe425ec3a36847f8018eb5", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Shintaro Wada", "character": "Young Recruit", "id": 1116509, "credit_id": "52fe425ec3a36847f8018eb9", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "S\u00f4suke Ikematsu", "character": "Higen", "id": 1116510, "credit_id": "52fe425ec3a36847f8018ebd", "cast_id": 38, "profile_path": "/AtraZUobtnkTxhlxtPZP3EKyEs3.jpg", "order": 19}, {"name": "Aoi Minato", "character": "Magojiro", "id": 1116511, "credit_id": "52fe425ec3a36847f8018ec1", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Shoji Yoshihara", "character": "Sword Master", "id": 1116512, "credit_id": "52fe425ec3a36847f8018ec9", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Seiz\u00f4 Fukumoto", "character": "Silent Samurai", "id": 239391, "credit_id": "52fe425ec3a36847f8018ec5", "cast_id": 40, "profile_path": "/teRN5t7NU6FwKyc9lDpRfg4twrN.jpg", "order": 22}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f8018e07", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.9, "runtime": 154}, "164457": {"poster_path": "/hxkAlnfVRLuf7HBJq3G3j2oy92y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15400000, "overview": "Two brothers live in the economically-depressed Rust Belt, when a cruel twist of fate lands one in prison. His brother is then lured into one of the most violent crime rings in the Northeast.", "video": false, "id": 164457, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Out of the Furnace", "tagline": "Sometimes your battles choose you.", "vote_count": 181, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1206543", "adult": false, "backdrop_path": "/pRcgYKQkx4W0h8wdPlV4o12KiuK.jpg", "production_companies": [{"name": "Energy Entertainment", "id": 18617}, {"name": "Appian Way", "id": 562}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Red Granite Pictures", "id": 19177}], "release_date": "2013-12-06", "popularity": 0.953308251173174, "original_title": "Out of the Furnace", "budget": 22000000, "cast": [{"name": "Christian Bale", "character": "Russell Baze", "id": 3894, "credit_id": "52fe4c7ac3a36847f823046f", "cast_id": 3, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Lena Taylor", "id": 8691, "credit_id": "52fe4c7ac3a36847f8230473", "cast_id": 4, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Harlan DeGroat", "id": 57755, "credit_id": "52fe4c7ac3a36847f8230477", "cast_id": 5, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Gerald 'Red' Baze", "id": 9880, "credit_id": "52fe4c7ac3a36847f8230487", "cast_id": 9, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Willem Dafoe", "character": "John Petty", "id": 5293, "credit_id": "52fe4c7ac3a36847f8230483", "cast_id": 8, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 4}, {"name": "Forest Whitaker", "character": "Chief Wesley Barnes", "id": 2178, "credit_id": "52fe4c7ac3a36847f823047b", "cast_id": 6, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 5}, {"name": "Casey Affleck", "character": "Rodney Baze Jr.", "id": 1893, "credit_id": "52fe4c7ac3a36847f823047f", "cast_id": 7, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 6}, {"name": "Boyd Holbrook", "character": "Tattooed Guy", "id": 467645, "credit_id": "52fe4c7ac3a36847f823048b", "cast_id": 10, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 7}, {"name": "Tom Bower", "character": "Dan Dugan", "id": 19453, "credit_id": "52fe4c7ac3a36847f823048f", "cast_id": 11, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 8}, {"name": "Mark Kubr", "character": "SWAT Team", "id": 193946, "credit_id": "52fe4c7ac3a36847f8230493", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Gordon Michaels", "character": "Bergen County Officer", "id": 74595, "credit_id": "52fe4c7ac3a36847f8230497", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Jack Erdie", "character": "Meth Guy", "id": 991960, "credit_id": "52fe4c7ac3a36847f823049b", "cast_id": 14, "profile_path": "/sFFUnfeU1bwdEc4XggtrfmKbi0r.jpg", "order": 11}, {"name": "Efka Kvaraciejus", "character": "Brady", "id": 1272901, "credit_id": "52fe4c7ac3a36847f823049f", "cast_id": 15, "profile_path": "/oC1hEoxr0Rv8wAY7hlypCEN2YtW.jpg", "order": 12}, {"name": "Nancy Mosser", "character": "Woman at Drive In", "id": 1275451, "credit_id": "5395660b0e0a266db400612a", "cast_id": 26, "profile_path": null, "order": 13}], "directors": [{"name": "Scott Cooper", "department": "Directing", "job": "Director", "credit_id": "52fe4c7ac3a36847f8230465", "profile_path": "/kmlJ2OLQmFLbdwCxUuofPgvYjjP.jpg", "id": 65167}], "vote_average": 6.5, "runtime": 116}, "8810": {"poster_path": "/tVaClEA7n0MxaY8sb81nHwh6XNW.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 24600832, "overview": "Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.", "video": false, "id": 8810, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Road Warrior", "tagline": "When all that's left is one last chance, pray that he's still out there ... somewhere!", "vote_count": 157, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rY4F8uRJN3IWsmtFrT7HO4WKUk0.jpg", "poster_path": "/uuvSvLb3ntGA9B0wx2JskVDSuWi.jpg", "id": 8945, "name": "Mad Max Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082694", "adult": false, "backdrop_path": "/ns75FqFLk1v6jEmecgu25IOk8yB.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1981-12-24", "popularity": 2.72104246173666, "original_title": "Mad Max 2", "budget": 2000000, "cast": [{"name": "Mel Gibson", "character": "Max Rockatansky", "id": 2461, "credit_id": "52fe44b9c3a36847f80a6a51", "cast_id": 6, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Bruce Spence", "character": "The Gyro Captain", "id": 27752, "credit_id": "52fe44b9c3a36847f80a6a55", "cast_id": 7, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 1}, {"name": "Michael Preston", "character": "Pappagallo (as Mike Preston)", "id": 47461, "credit_id": "52fe44b9c3a36847f80a6a59", "cast_id": 8, "profile_path": "/fVqzK13L5sQsHcE2EyuBGurWBWy.jpg", "order": 2}, {"name": "Max Phipps", "character": "The Toadie", "id": 121417, "credit_id": "52fe44b9c3a36847f80a6a5d", "cast_id": 10, "profile_path": "/6Z48Cu6ZY5bBiZbOyHbnKHbSi05.jpg", "order": 3}, {"name": "Vernon Wells", "character": "Wez", "id": 26491, "credit_id": "52fe44b9c3a36847f80a6a61", "cast_id": 11, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 4}, {"name": "Kjell Nilsson", "character": "The Humungus", "id": 933020, "credit_id": "52fe44b9c3a36847f80a6a65", "cast_id": 12, "profile_path": "/tNKX1blFVtrWxPduGTqUpJzXjBz.jpg", "order": 5}, {"name": "Emil Minty", "character": "The Feral Kid", "id": 933021, "credit_id": "52fe44b9c3a36847f80a6a69", "cast_id": 13, "profile_path": "/uhHrD717iVgOeskhFt2Zwjw6VCY.jpg", "order": 6}, {"name": "Virginia Hey", "character": "Warrior Woman", "id": 26055, "credit_id": "52fe44b9c3a36847f80a6a6d", "cast_id": 14, "profile_path": "/8UTt7vcFFkFFi4x03jYcIkGUyGE.jpg", "order": 7}, {"name": "William Zappa", "character": "Zetta", "id": 83771, "credit_id": "52fe44b9c3a36847f80a6a71", "cast_id": 15, "profile_path": "/vYhG9uEBlmBbbi7ZosIphmfoR2H.jpg", "order": 8}, {"name": "Arkie Whiteley", "character": "The Captain's Girl", "id": 94785, "credit_id": "52fe44b9c3a36847f80a6a75", "cast_id": 16, "profile_path": "/9XFHw9sybmU6mfrwLwiyIxQwjiP.jpg", "order": 9}, {"name": "Steve J. Spears", "character": "Mechanic", "id": 181831, "credit_id": "52fe44bac3a36847f80a6a79", "cast_id": 17, "profile_path": "/1HH8uziDpCa1X97m2NAiXCgXMrJ.jpg", "order": 10}, {"name": "Syd Heylen", "character": "Curmudgeon", "id": 933022, "credit_id": "52fe44bac3a36847f80a6a7d", "cast_id": 18, "profile_path": "/hHlZSjoJSwI6FG6Skc4uefuACon.jpg", "order": 11}, {"name": "Moira Claux", "character": "Big Rebecca", "id": 220357, "credit_id": "52fe44bac3a36847f80a6a81", "cast_id": 19, "profile_path": "/po4NSnUn5zLksdS0VQZMWhY37eO.jpg", "order": 12}, {"name": "David Downer", "character": "Nathan", "id": 152565, "credit_id": "52fe44bac3a36847f80a6a85", "cast_id": 20, "profile_path": "/tidDph8tvBbeEcsuRW8KRUrJiZx.jpg", "order": 13}, {"name": "David Slingsby", "character": "Quiet Man", "id": 933023, "credit_id": "52fe44bac3a36847f80a6a89", "cast_id": 21, "profile_path": "/2YGM9kzFkW6leP5QYmGJmnqgjOf.jpg", "order": 14}, {"name": "Kristoffer Greaves", "character": "Mechanic's Assistant", "id": 118933, "credit_id": "52fe44bac3a36847f80a6a8d", "cast_id": 22, "profile_path": "/spqgKAiNaSZe1acnhFF1wROfiRu.jpg", "order": 15}, {"name": "Max Fairchild", "character": "Broken Victim", "id": 187073, "credit_id": "52fe44bac3a36847f80a6a91", "cast_id": 23, "profile_path": "/lYw6BhRQeSVkpkJ7YSf2ZwVcnN3.jpg", "order": 16}, {"name": "Tyler Coppin", "character": "Defiant Victim", "id": 152548, "credit_id": "52fe44bac3a36847f80a6a95", "cast_id": 24, "profile_path": "/pBHo8xcl4kllgUZ3WyvDzxmTJGB.jpg", "order": 17}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe44b9c3a36847f80a6a3b", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 6.7, "runtime": 95}, "25195": {"poster_path": "/9UWKpkQvZaPqpb85Or4e0PghJft.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 29922472, "overview": "A woman who has an elaborate scheme to propose to her boyfriend on Leap Day, an Irish tradition which occurs every time the date February 29 rolls around, faces a major setback when bad weather threatens to derail her planned trip to Dublin. With the help of an innkeeper, however, her cross-country odyssey just might result in her getting engaged.", "video": false, "id": 25195, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Leap Year", "tagline": "Anna planned to propose to her boyfriend on February 29th. This is not her boyfriend.", "vote_count": 106, "homepage": "http://www.leapyearfilm.net", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1216492", "adult": false, "backdrop_path": "/b42MurYDtayBtk8WYY7GM4f6agX.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2010-01-08", "popularity": 0.388300898461936, "original_title": "Leap Year", "budget": 19000000, "cast": [{"name": "Amy Adams", "character": "Anna", "id": 9273, "credit_id": "52fe44bdc3a368484e034121", "cast_id": 1, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Matthew Goode", "character": "Declan", "id": 1247, "credit_id": "52fe44bdc3a368484e034125", "cast_id": 2, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 1}, {"name": "Adam Scott", "character": "Jeremy", "id": 36801, "credit_id": "52fe44bdc3a368484e03413b", "cast_id": 6, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 2}, {"name": "John Lithgow", "character": "Jack Brady", "id": 12074, "credit_id": "52fe44bdc3a368484e03413f", "cast_id": 7, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 3}, {"name": "Flaminia Cinque", "character": "Carla", "id": 176188, "credit_id": "52fe44bdc3a368484e034143", "cast_id": 8, "profile_path": "/hZ2Oj35tMmqHms1uRWk7T0SPmMx.jpg", "order": 4}, {"name": "Tony Rohr", "character": "Frank", "id": 44930, "credit_id": "52fe44bdc3a368484e034147", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Pat Laffan", "character": "Donal", "id": 188468, "credit_id": "52fe44bdc3a368484e03414b", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Ian McElhinney", "character": "Priest", "id": 43138, "credit_id": "52fe44bdc3a368484e03414f", "cast_id": 11, "profile_path": "/5uXESGhFNIXSIVnOA5vby8Ctg3n.jpg", "order": 7}, {"name": "Dominique McElligott", "character": "Bride", "id": 115146, "credit_id": "52fe44bdc3a368484e034153", "cast_id": 12, "profile_path": "/v7c8fYjnBOVRnE2X9FnRQBtvK3x.jpg", "order": 8}, {"name": "Kaitlin Olson", "character": "Libby", "id": 95102, "credit_id": "52fe44bdc3a368484e034157", "cast_id": 13, "profile_path": "/oRSDYUN7fXVWHp7FNq1P874i1Yf.jpg", "order": 9}, {"name": "Michael J. Reynolds", "character": "Jerome", "id": 86442, "credit_id": "52fe44bdc3a368484e03415b", "cast_id": 14, "profile_path": "/3JA1yjTfSM35GNzWR2dZgubRZ8B.jpg", "order": 10}, {"name": "Michael Ford-FitzGerald", "character": "Fergus", "id": 1057048, "credit_id": "52fe44bdc3a368484e03415f", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Vincenzo Nicoli", "character": "Stefano", "id": 24595, "credit_id": "52fe44bdc3a368484e034163", "cast_id": 16, "profile_path": "/bTP43izMKRfeULFJ2xONN3mG62c.jpg", "order": 12}, {"name": "Marcia Warren", "character": "Adele", "id": 1212145, "credit_id": "52fe44bdc3a368484e034167", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Anand Tucker", "department": "Directing", "job": "Director", "credit_id": "52fe44bdc3a368484e03412b", "profile_path": "/sdtzoy0UEFOsu9ZWFT5N5matqn7.jpg", "id": 26481}], "vote_average": 6.4, "runtime": 100}, "620": {"poster_path": "/3FS3oBdorgczgfCkFi2u8ZTFfpS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 295212467, "overview": "After losing their academic posts at a prestigious university, a team of parapsychologists goes into business as proton-pack-toting \"ghostbusters\" who exterminate ghouls, hobgoblins and supernatural pests of all stripes. An ad campaign pays off when a knockout cellist hires the squad to purge her swanky digs of demons that appear to be living in her refrigerator.", "video": false, "id": 620, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Ghostbusters", "tagline": "They ain't afraid of no ghost.", "vote_count": 732, "homepage": "http://www.ghostbusters.com/", "belongs_to_collection": {"backdrop_path": "/6Jnlhr2ac8OuDJEowsFLzZY3SXd.jpg", "poster_path": "/vy4CA3MMzyolwur7Xd9CQ0BvSMX.jpg", "id": 2980, "name": "Ghostbusters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087332", "adult": false, "backdrop_path": "/qmDy6Rdom8d8UFj9GeAAtVIjTRT.jpg", "production_companies": [{"name": "Delphi Films", "id": 4267}, {"name": "Black Rhino Productions", "id": 47565}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1984-06-07", "popularity": 1.14443298166058, "original_title": "Ghostbusters", "budget": 30000000, "cast": [{"name": "Bill Murray", "character": "Dr. Peter Venkman", "id": 1532, "credit_id": "52fe425fc3a36847f801928b", "cast_id": 18, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Dr. Raymond Stantz", "id": 707, "credit_id": "52fe425fc3a36847f801928f", "cast_id": 19, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Dana Barrett", "id": 10205, "credit_id": "52fe425fc3a36847f80192ab", "cast_id": 26, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Harold Ramis", "character": "Dr. Egon Spengler", "id": 1524, "credit_id": "52fe425fc3a36847f8019293", "cast_id": 20, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 3}, {"name": "Rick Moranis", "character": "Louis Tully", "id": 8872, "credit_id": "52fe425fc3a36847f8019297", "cast_id": 21, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 4}, {"name": "Annie Potts", "character": "Janine Melnitz", "id": 8873, "credit_id": "52fe425fc3a36847f801929b", "cast_id": 22, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 5}, {"name": "William Atherton", "character": "Walter Peck", "id": 7676, "credit_id": "52fe425fc3a36847f801929f", "cast_id": 23, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 6}, {"name": "Ernie Hudson", "character": "Winston Zeddmore", "id": 8874, "credit_id": "52fe425fc3a36847f80192a3", "cast_id": 24, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 7}, {"name": "David Margulies", "character": "Mayor", "id": 8875, "credit_id": "52fe425fc3a36847f80192a7", "cast_id": 25, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 8}, {"name": "Jennifer Runyon", "character": "Female Student", "id": 101652, "credit_id": "52fe425fc3a36847f80192bb", "cast_id": 29, "profile_path": "/uGLNyr16rdaKkskmlXcYwXAw8F.jpg", "order": 9}, {"name": "Michael Ensign", "character": "Hotel Manager", "id": 1080265, "credit_id": "52fe425fc3a36847f80192bf", "cast_id": 30, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}, {"name": "Slavitza Jovan", "character": "Gozer", "id": 562314, "credit_id": "52fe425fc3a36847f80192db", "cast_id": 35, "profile_path": "/vZoaWlkaKdyIuvtz5m9gcUwRys.jpg", "order": 11}, {"name": "Steven Tash", "character": "Male Student", "id": 55930, "credit_id": "52fe425fc3a36847f80192df", "cast_id": 36, "profile_path": "/loYE3mTbF10DvIDBdjUAqebwGaT.jpg", "order": 12}, {"name": "Alice Drummond", "character": "Librarian", "id": 17488, "credit_id": "52fe425fc3a36847f80192e3", "cast_id": 37, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 13}, {"name": "Jordan Charney", "character": "Dean Yager", "id": 51549, "credit_id": "52fe425fc3a36847f80192e7", "cast_id": 38, "profile_path": "/iG7EkLD4xAmmoUmRwQZhOcWrtgU.jpg", "order": 14}, {"name": "Timothy Carhart", "character": "Violinist", "id": 17396, "credit_id": "52fe425fc3a36847f80192eb", "cast_id": 39, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 15}, {"name": "John Rothman", "character": "Library Administrator", "id": 60205, "credit_id": "52fe425fc3a36847f80192ef", "cast_id": 40, "profile_path": "/bRSoDm75c5fKBbCrbrXwaPiAeST.jpg", "order": 16}, {"name": "Tom McDermott", "character": "Archbishop", "id": 1164427, "credit_id": "52fe425fc3a36847f80192f3", "cast_id": 41, "profile_path": "/eYjfVZikn6XGhyl9D8VXDCcezrr.jpg", "order": 17}, {"name": "John Ring", "character": "Fire Commissioner", "id": 80148, "credit_id": "52fe425fc3a36847f80192f7", "cast_id": 42, "profile_path": "/hW3E41OhhwAnp1RaAi7EZhIWpTk.jpg", "order": 18}, {"name": "Norman Matlock", "character": "Police Commissioner", "id": 84684, "credit_id": "52fe425fc3a36847f80192fb", "cast_id": 43, "profile_path": "/3XI2Zu0OwPgwYNw7j1NSwecCPEt.jpg", "order": 19}, {"name": "Joe Cirillo", "character": "Police Captain", "id": 189816, "credit_id": "52fe425fc3a36847f80192ff", "cast_id": 44, "profile_path": "/9jT78pW35ZQkqQiGU9lcUbmPGa3.jpg", "order": 20}, {"name": "Joe Schmieg", "character": "Police Seargeant", "id": 1164428, "credit_id": "52fe425fc3a36847f8019303", "cast_id": 45, "profile_path": "/9FfYwOqXRtTxv9LUCPZjLaTu59l.jpg", "order": 21}, {"name": "Roger Grimsby", "character": "Himself", "id": 950927, "credit_id": "52fe425fc3a36847f8019307", "cast_id": 46, "profile_path": "/8KMgeVezUJVlkOMvBGiXQJQ8mYL.jpg", "order": 22}, {"name": "Larry King", "character": "Himself", "id": 44127, "credit_id": "52fe425fc3a36847f801930b", "cast_id": 47, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 23}, {"name": "Joe Franklin", "character": "Himself", "id": 106223, "credit_id": "52fe425fc3a36847f801930f", "cast_id": 48, "profile_path": "/p4FMZfdBRdDTfgLI8OUUQLSseWo.jpg", "order": 24}, {"name": "Casey Kasem", "character": "Himself", "id": 16418, "credit_id": "52fe425fc3a36847f8019313", "cast_id": 49, "profile_path": "/ioQiaAGO3s6oNaxiIuT21a2RWKj.jpg", "order": 25}, {"name": "Reginald VelJohnson", "character": "Jail Guard", "id": 7672, "credit_id": "52fe425fc3a36847f8019317", "cast_id": 50, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 26}, {"name": "Rhoda Gemignani", "character": "Real Estate Woman", "id": 157996, "credit_id": "52fe425fc3a36847f801931b", "cast_id": 51, "profile_path": "/5naUTp9Bdc44cDRAPLJ4nnTYKCv.jpg", "order": 27}, {"name": "Murray Rubin", "character": "Man at Elevator", "id": 158287, "credit_id": "52fe425fc3a36847f801931f", "cast_id": 52, "profile_path": "/vdyZfe9gvBF6GP7JXk82GXt9NGM.jpg", "order": 28}, {"name": "Larry Dilg", "character": "Con Edison Man", "id": 1164429, "credit_id": "52fe425fc3a36847f8019367", "cast_id": 72, "profile_path": "/ucJKtoQ6nZ4I6Hze8i1W2N370J5.jpg", "order": 29}, {"name": "Danny Stone", "character": "Coachman", "id": 184770, "credit_id": "52fe425fc3a36847f8019323", "cast_id": 53, "profile_path": "/6ue5EEQvhmhwhFlqwWRZ5vTDy19.jpg", "order": 30}, {"name": "Patty Dworkin", "character": "Woman at Party", "id": 157512, "credit_id": "52fe425fc3a36847f8019327", "cast_id": 54, "profile_path": "/rmCCZNawobtB8r4HOCvvb2vUfv8.jpg", "order": 31}, {"name": "Jean Kasem", "character": "Tall Woman at Party", "id": 158765, "credit_id": "52fe425fc3a36847f801932b", "cast_id": 55, "profile_path": "/2NGmXjrm356mzFH86JdNJ6cxlzo.jpg", "order": 32}, {"name": "Lenny Del Genio", "character": "Doorman", "id": 1164430, "credit_id": "52fe425fc3a36847f801932f", "cast_id": 56, "profile_path": "/3T5TF5cHiRtO1wDKeysr197b4vc.jpg", "order": 33}, {"name": "Frances E. Nealy", "character": "Chambermaid", "id": 172538, "credit_id": "52fe425fc3a36847f8019333", "cast_id": 57, "profile_path": "/h8BXU3Doqum2mCd551qFvw5KRXj.jpg", "order": 34}, {"name": "Sam Moses", "character": "Hot Dog Vendor", "id": 185147, "credit_id": "52fe425fc3a36847f8019337", "cast_id": 58, "profile_path": "/sGYtyX8M4gvYJxWdiYYBvB9Dmjf.jpg", "order": 35}, {"name": "Christopher Wynkoop", "character": "TV Reporter", "id": 65924, "credit_id": "52fe425fc3a36847f801933b", "cast_id": 59, "profile_path": "/lFm8gWgNoOq323vN9iZe15CVfo3.jpg", "order": 36}, {"name": "Winston May", "character": "Businessman in Cab", "id": 1164431, "credit_id": "52fe425fc3a36847f801933f", "cast_id": 60, "profile_path": "/yk1uDQfU0s9l3GQ0f1ZHL7wijAq.jpg", "order": 37}, {"name": "Tommy Hollis", "character": "Mayor's Aide", "id": 159887, "credit_id": "52fe425fc3a36847f8019343", "cast_id": 61, "profile_path": "/ugZxLJmrams2OVhtLRhSJV6oUL4.jpg", "order": 38}, {"name": "Eda Reiss Merin", "character": "Louis's Neighbor (as Eda Reis Merin)", "id": 140796, "credit_id": "52fe425fc3a36847f8019347", "cast_id": 62, "profile_path": "/a3aiwg5H6l8vJYngEFdz5oDZ6gr.jpg", "order": 39}, {"name": "Ric Mancini", "character": "Policeman at Apartment (as Rick Mancini)", "id": 157121, "credit_id": "52fe425fc3a36847f801934b", "cast_id": 64, "profile_path": "/y4tyCxv8pjmVJCCT73RGLBWIUfq.jpg", "order": 39}, {"name": "Carol Ann Henry", "character": "Reporter", "id": 158810, "credit_id": "52fe425fc3a36847f801934f", "cast_id": 65, "profile_path": null, "order": 40}, {"name": "James Hardie", "character": "Reporter (as James Hardy)", "id": 175011, "credit_id": "52fe425fc3a36847f8019353", "cast_id": 66, "profile_path": null, "order": 41}, {"name": "Frantz Turner", "character": "Reporter (as Frances Turner)", "id": 116536, "credit_id": "52fe425fc3a36847f8019357", "cast_id": 67, "profile_path": "/bcU0XFsc5WNMnd60xLZav66vM8I.jpg", "order": 42}, {"name": "Paul Trafas", "character": "Ted Fleming", "id": 1164434, "credit_id": "52fe425fc3a36847f801935b", "cast_id": 69, "profile_path": "/u51XPgFiQSr8as9PKb5lTxhl8mJ.jpg", "order": 43}, {"name": "Cheryl Birchenfield", "character": "Annette Fleming", "id": 1164435, "credit_id": "52fe425fc3a36847f801935f", "cast_id": 70, "profile_path": "/yDbCBL4ZI5ZvLup1ZURcSbaBZM1.jpg", "order": 44}, {"name": "Kymberly Herrin", "character": "Dream Ghost (as Kym Herrin)", "id": 175055, "credit_id": "52fe425fc3a36847f8019363", "cast_id": 71, "profile_path": "/70iXdFHy3oTSphXG8I0wEW6FXqy.jpg", "order": 45}, {"name": "Stanley Grover", "character": "Reporter", "id": 129458, "credit_id": "52fe425fc3a36847f801936b", "cast_id": 75, "profile_path": "/ovPcrlDmfmVrl5qNNBtDXcSh4f3.jpg", "order": 47}, {"name": "Ruth Oliver", "character": "Library Ghost", "id": 1164436, "credit_id": "52fe425fc3a36847f801936f", "cast_id": 76, "profile_path": "/zjUoYxWTk0EAOycu8mdSjx22weB.jpg", "order": 48}, {"name": "Nancy Kelly", "character": "Reporter", "id": 1430862, "credit_id": "54ebb925c3a3686d56000034", "cast_id": 79, "profile_path": null, "order": 49}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f801922d", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.9, "runtime": 107}, "621": {"poster_path": "/iMHdFTrCYhue74sBnXkdO39AJ3R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181813770, "overview": "Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?", "video": false, "id": 621, "genres": [{"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Grease", "tagline": "Grease is the word", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/95ASlSlkBSILVLrZA69P0OdniP5.jpg", "poster_path": "/hm752B8LthSSizb4f4Owah4NtxX.jpg", "id": 86083, "name": "Grease Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077631", "adult": false, "backdrop_path": "/dSukjx8A3kOitewpG2n7HuRt4rH.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1978-07-07", "popularity": 1.34974014806634, "original_title": "Grease", "budget": 6000000, "cast": [{"name": "John Travolta", "character": "Danny Zuko", "id": 8891, "credit_id": "52fe425fc3a36847f8019413", "cast_id": 17, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Olivia Newton-John", "character": "Sandy Olsson", "id": 8892, "credit_id": "52fe425fc3a36847f8019417", "cast_id": 18, "profile_path": "/59u5Vo1ZhmTQPNW1W8wu66DZ0Cc.jpg", "order": 1}, {"name": "Stockard Channing", "character": "Betty Rizzo", "id": 8893, "credit_id": "52fe425fc3a36847f801941b", "cast_id": 19, "profile_path": "/5UFMOfbzod42UiPUna59Ch1e37a.jpg", "order": 2}, {"name": "Jeff Conaway", "character": "Kenickie", "id": 8894, "credit_id": "52fe425fc3a36847f801941f", "cast_id": 20, "profile_path": "/seX29fe7LrCXvKaq7RPrKD23EIS.jpg", "order": 3}, {"name": "Didi Conn", "character": "Frenchy", "id": 8895, "credit_id": "52fe425fc3a36847f8019423", "cast_id": 21, "profile_path": "/62QEVe9v68BfjJWUrSzrXbsXsta.jpg", "order": 4}, {"name": "Barry Pearl", "character": "Doody", "id": 8896, "credit_id": "52fe425fc3a36847f8019427", "cast_id": 22, "profile_path": "/dak967RCCBCifb1aINsRrUUv5Qf.jpg", "order": 5}, {"name": "Michael Tucci", "character": "Sonny", "id": 8897, "credit_id": "52fe425fc3a36847f801942b", "cast_id": 23, "profile_path": "/reUFx7dyg2d5PMPMLjDagwqlrtP.jpg", "order": 6}, {"name": "Kelly Ward", "character": "Putzie", "id": 8898, "credit_id": "52fe425fc3a36847f801942f", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Jamie Donnelly", "character": "Jan", "id": 8899, "credit_id": "52fe425fc3a36847f8019433", "cast_id": 25, "profile_path": "/skTjfWWRX3CXCwIDLDFQBhNgJQy.jpg", "order": 8}, {"name": "Dinah Manoff", "character": "Marty Maraschino", "id": 8900, "credit_id": "52fe425fc3a36847f8019437", "cast_id": 26, "profile_path": "/kCULJZUXCTWUTolDb2C9saK2PMj.jpg", "order": 9}, {"name": "Eve Arden", "character": "Principal McGee", "id": 860, "credit_id": "52fe425fc3a36847f801943b", "cast_id": 27, "profile_path": "/rS1rPs0lu5owJ2BrrE51k7icMnV.jpg", "order": 10}, {"name": "Edward Byrnes", "character": "Vince Fontaine", "id": 8901, "credit_id": "52fe425fc3a36847f801943f", "cast_id": 28, "profile_path": "/94hMBEx91g87unjV4AxQJ1f1nut.jpg", "order": 11}, {"name": "Sid Caesar", "character": "Coach Calhoun", "id": 8902, "credit_id": "52fe425fc3a36847f8019443", "cast_id": 29, "profile_path": "/8Dy80VkBbapAPZYleneH7CbxDzm.jpg", "order": 12}, {"name": "Dody Goodman", "character": "Blanche", "id": 8903, "credit_id": "52fe425fc3a36847f8019447", "cast_id": 30, "profile_path": "/hLWhBWoSrBGhO9kUJiG8Q4Qy4EV.jpg", "order": 13}, {"name": "Susan Buckner", "character": "Patty Simcox", "id": 8904, "credit_id": "52fe425fc3a36847f801944b", "cast_id": 31, "profile_path": "/9yH7GW2IvVChIzr8HidVhAWg8kp.jpg", "order": 14}, {"name": "Ellen Travolta", "character": "Waitress", "id": 8905, "credit_id": "52fe425fc3a36847f801944f", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Annette Charles", "character": "Cha Cha DiGregorio", "id": 8906, "credit_id": "52fe425fc3a36847f8019453", "cast_id": 33, "profile_path": "/jQcH1tULa2ZGUEq17sdNMpoD85f.jpg", "order": 16}, {"name": "Dennis Stewart", "character": "Leo, Scorpions member", "id": 8907, "credit_id": "52fe425fc3a36847f8019457", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Joan Blondell", "character": "Vi", "id": 13568, "credit_id": "52fe425fc3a36847f8019461", "cast_id": 36, "profile_path": "/2KnL9VyFPBxZ4xIxpvCUTMicVY2.jpg", "order": 18}, {"name": "Eddie Deezen", "character": "Eugene Felnic", "id": 42362, "credit_id": "52fe425fc3a36847f8019465", "cast_id": 37, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 19}, {"name": "Fannie Flagg", "character": "Nurse Wilkins", "id": 18251, "credit_id": "5305af1bc3a3685a87169428", "cast_id": 38, "profile_path": "/nelYB0M6WvF7uwArMwhYJZZkyjv.jpg", "order": 20}], "directors": [{"name": "Randal Kleiser", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f80193c1", "profile_path": "/lK8FzeNDwD9VmNvKPRGd3dFVzJy.jpg", "id": 8876}], "vote_average": 6.6, "runtime": 110}, "622": {"poster_path": "/uamhDQBebdW3UQqOaVmma3yW8pm.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "PT", "name": "Portugal"}], "revenue": 58401898, "overview": "An all-expenses-paid international search for a rare copy of The Nine Gates of the Shadow Kingdom brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.", "video": false, "id": 622, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Ninth Gate", "tagline": "Every book has a life of its own.", "vote_count": 164, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0142688", "adult": false, "backdrop_path": "/7ikpBrx2YZyVZxFS5YTZUZoyIJu.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Canal+", "id": 5358}, {"name": "Artisan Entertainment", "id": 2188}], "release_date": "1999-12-23", "popularity": 0.436612422549115, "original_title": "The Ninth Gate", "budget": 38000000, "cast": [{"name": "Johnny Depp", "character": "Dean Corso", "id": 85, "credit_id": "52fe425fc3a36847f801954b", "cast_id": 25, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Frank Langella", "character": "Boris Balkan", "id": 8924, "credit_id": "52fe425fc3a36847f801954f", "cast_id": 26, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 1}, {"name": "Lena Olin", "character": "Liana Telfer", "id": 5313, "credit_id": "52fe425fc3a36847f8019553", "cast_id": 27, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 2}, {"name": "Emmanuelle Seigner", "character": "The Girl", "id": 8925, "credit_id": "52fe425fc3a36847f8019557", "cast_id": 28, "profile_path": "/llh2iFcVslY8PEFAvuEKLI7y8U3.jpg", "order": 3}, {"name": "Barbara Jefford", "character": "Baroness Kessler", "id": 8926, "credit_id": "52fe425fc3a36847f801955b", "cast_id": 29, "profile_path": "/mYGKrPEchgTXfQbQfvR8VkhBRUc.jpg", "order": 4}, {"name": "Jack Taylor", "character": "Victor Fargas", "id": 8927, "credit_id": "52fe425fc3a36847f801955f", "cast_id": 30, "profile_path": "/3mxYZLn8mXTYtwMUn4HW6H1pHEK.jpg", "order": 5}, {"name": "Jos\u00e9 L\u00f3pez Rodero", "character": "Pablo & Pedro Ceniza/1st & 2nd Workmen", "id": 8928, "credit_id": "52fe425fc3a36847f8019563", "cast_id": 31, "profile_path": null, "order": 6}, {"name": "James Russo", "character": "Bernie", "id": 785, "credit_id": "52fe425fc3a36847f8019567", "cast_id": 32, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 7}, {"name": "Willy Holt", "character": "Andrew Telfer", "id": 19057, "credit_id": "52fe425fc3a36847f8019571", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Allen Garfield", "character": "Witkin", "id": 922, "credit_id": "52fe425fc3a36847f8019575", "cast_id": 36, "profile_path": "/wa8WAH20QGm1fLPR5Wrbja5C5rx.jpg", "order": 9}, {"name": "Tony Amoni", "character": "Liana's Bodyguard", "id": 180976, "credit_id": "52fe425fc3a36847f8019579", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Jacques Dacqmine", "character": "Old Man", "id": 266665, "credit_id": "52fe425fc3a36847f801957d", "cast_id": 38, "profile_path": "/yzPbvl384iFb4u1V8fwkrWEg8NW.jpg", "order": 11}, {"name": "Joe Sheridan", "character": "Old Man's Son", "id": 12983, "credit_id": "52fe425fc3a36847f8019581", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Rebecca Pauly", "character": "Daughter-In-Law", "id": 140055, "credit_id": "52fe425fc3a36847f8019585", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Catherine Benguigui", "character": "Concierge", "id": 220582, "credit_id": "52fe425fc3a36847f8019589", "cast_id": 41, "profile_path": "/fFtijqi9D3E77DjywvfTIWwaRvX.jpg", "order": 14}, {"name": "Maria Ducceschi", "character": "Secretary", "id": 1077903, "credit_id": "52fe425fc3a36847f801958d", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Jacques Collard", "character": "Gruber", "id": 992979, "credit_id": "52fe425fc3a36847f8019591", "cast_id": 43, "profile_path": "/xEy0svgN6WQMmnpXbcOHrHBlsJ3.jpg", "order": 16}, {"name": "Dominique Pozzetto", "character": "Desk Clerk", "id": 1077904, "credit_id": "52fe425fc3a36847f8019595", "cast_id": 44, "profile_path": "/hIlTpwVSCmDZnoaz1FWD38kbKFn.jpg", "order": 17}, {"name": "Emanuel Booz", "character": "Baker", "id": 74113, "credit_id": "52fe425fc3a36847f8019599", "cast_id": 45, "profile_path": null, "order": 18}, {"name": "Lino Ribeiro de Sousa", "character": "Hotel Porter", "id": 1077905, "credit_id": "52fe425fc3a36847f801959d", "cast_id": 46, "profile_path": null, "order": 19}, {"name": "Asil Ra\u00efs", "character": "Cabby", "id": 1077906, "credit_id": "52fe425fc3a36847f80195a1", "cast_id": 47, "profile_path": "/v9VZA33RGZfNPHNEUIIZVHQrgXn.jpg", "order": 20}, {"name": "Bernard Richier", "character": "Cafe Owner", "id": 1077907, "credit_id": "52fe425fc3a36847f80195a5", "cast_id": 48, "profile_path": null, "order": 21}, {"name": "Marinette Richier", "character": "Cafe Owner", "id": 1077908, "credit_id": "52fe425fc3a36847f80195a9", "cast_id": 49, "profile_path": null, "order": 22}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f80194c9", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 6.4, "runtime": 133}, "623": {"poster_path": "/9gZZyQ8XStpUJBFU1ceU4xx1crv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62493712, "overview": "A diamond advocate is attempting to steal a collection of diamonds, yet troubles arise when he realizes that he is not the only one after the diamonds.", "video": false, "id": 623, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "A Fish Called Wanda", "tagline": "A tale of murder, lust, greed, revenge, and seafood.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0095159", "adult": false, "backdrop_path": "/5777NJf3MnhHsjfqb7h7wrnDACR.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Prominent Features", "id": 11352}], "release_date": "1988-07-15", "popularity": 1.00117084003624, "original_title": "A Fish Called Wanda", "budget": 7500000, "cast": [{"name": "John Cleese", "character": "Archie Leach", "id": 8930, "credit_id": "52fe4260c3a36847f8019665", "cast_id": 22, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Wanda Gershwitz", "id": 8944, "credit_id": "52fe4260c3a36847f8019669", "cast_id": 23, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Kevin Kline", "character": "Otto", "id": 8945, "credit_id": "52fe4260c3a36847f801966d", "cast_id": 24, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 2}, {"name": "Michael Palin", "character": "Ken Pile", "id": 383, "credit_id": "52fe4260c3a36847f8019671", "cast_id": 25, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 3}, {"name": "Maria Aitken", "character": "Wendy", "id": 8946, "credit_id": "52fe4260c3a36847f8019675", "cast_id": 26, "profile_path": "/kVnrU7fzrw85I51OJp8yBRDg3oO.jpg", "order": 4}, {"name": "Tom Georgeson", "character": "Georges Thomason", "id": 8947, "credit_id": "52fe4260c3a36847f8019679", "cast_id": 27, "profile_path": "/90IirxcNYdJANlTW1i782SGnCkn.jpg", "order": 5}, {"name": "Cynthia Cleese", "character": "Portia", "id": 8948, "credit_id": "52fe4260c3a36847f801967d", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Patricia Hayes", "character": "Mrs. Coady", "id": 12658, "credit_id": "52fe4260c3a36847f8019681", "cast_id": 29, "profile_path": "/1G864KAppXhSlwarx9fHoMufjWF.jpg", "order": 7}, {"name": "Geoffrey Palmer", "character": "Judge", "id": 10746, "credit_id": "52fe4260c3a36847f8019685", "cast_id": 30, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 8}, {"name": "Mark Elwes", "character": "Customer in Jeweler's Shop", "id": 1157036, "credit_id": "52fe4260c3a36847f8019689", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Neville Phillips", "character": "Manager of Jeweler's Shop", "id": 49968, "credit_id": "52fe4260c3a36847f801968d", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Peter Jonfield", "character": "Inspector Marvin", "id": 27334, "credit_id": "52fe4260c3a36847f8019691", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Jeremy Child", "character": "Mr. Johnson", "id": 158293, "credit_id": "52fe4260c3a36847f8019695", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Stephen Fry", "character": "Hutchison", "id": 11275, "credit_id": "52fe4260c3a36847f8019699", "cast_id": 35, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 13}], "directors": [{"name": "Charles Crichton", "department": "Directing", "job": "Director", "credit_id": "52fe425fc3a36847f80195f5", "profile_path": "/9ahf7Ghdy9x9pXue1PeC1bFMu2y.jpg", "id": 8929}], "vote_average": 6.6, "runtime": 108}, "624": {"poster_path": "/e3jHM20jbKZbXYjRwmfQOJ0VnzP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Easy Rider is the classic cult film from the 1960s. A road movie that embodies the feeling of being a hippie as two friends head cross-country to Mardi Gras. A controversial period film by Dennis Hopper and Peter Fonda with some classic music from a generation of wanderers.", "video": false, "id": 624, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Easy Rider", "tagline": "A man went looking for America and couldn\u2019t find it anywhere...", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064276", "adult": false, "backdrop_path": "/7HVnz5THbqJZKmAuRvF9vDNaLcK.jpg", "production_companies": [{"name": "Raybert Productions", "id": 4541}], "release_date": "1969-05-07", "popularity": 0.552392418817241, "original_title": "Easy Rider", "budget": 350000, "cast": [{"name": "Peter Fonda", "character": "Wyatt", "id": 8949, "credit_id": "52fe4260c3a36847f8019735", "cast_id": 17, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 0}, {"name": "Dennis Hopper", "character": "Billy", "id": 2778, "credit_id": "52fe4260c3a36847f8019739", "cast_id": 18, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 1}, {"name": "Antonio Mendoza", "character": "Jesus", "id": 8960, "credit_id": "52fe4260c3a36847f801973d", "cast_id": 19, "profile_path": null, "order": 2}, {"name": "Phil Spector", "character": "Connection", "id": 8961, "credit_id": "52fe4260c3a36847f8019741", "cast_id": 20, "profile_path": "/8Y14xgLM4rrkdNEroj5mO7HmO0G.jpg", "order": 3}, {"name": "Jack Nicholson", "character": "George Hanson", "id": 514, "credit_id": "52fe4260c3a36847f8019745", "cast_id": 21, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 4}, {"name": "Luke Askew", "character": "Stranger on Highway", "id": 8962, "credit_id": "52fe4260c3a36847f8019749", "cast_id": 22, "profile_path": "/nlV0bfadoMjbz7vxmLl5zALc86H.jpg", "order": 5}, {"name": "Karen Black", "character": "Karen", "id": 8963, "credit_id": "52fe4260c3a36847f801974d", "cast_id": 23, "profile_path": "/d2Zf3vIWOWovWKnPe13GSz2BTLY.jpg", "order": 6}, {"name": "Toni Basil", "character": "Mary", "id": 8964, "credit_id": "52fe4260c3a36847f8019751", "cast_id": 24, "profile_path": "/xrhQq8UynWnFbxWV2kwDQBpWbbK.jpg", "order": 7}], "directors": [{"name": "Dennis Hopper", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f80196d7", "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "id": 2778}], "vote_average": 6.8, "runtime": 95}, "627": {"poster_path": "/p1O3eFsdb0GEIYu87xlwV7P4jM1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 16635027, "overview": "Renton is living the dream and that dream is Heroin. As Renton struggles with the agony and ecstasy of his life we follow him and his increasingly unstable mates. Drinking, fighting, drugs, sex and the most disgusting toilet in Scotland. Choose Trainspotting.", "video": false, "id": 627, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Trainspotting", "tagline": "Choose life.", "vote_count": 391, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117951", "adult": false, "backdrop_path": "/yfNhWKqJFWTRvSo3Qf2x1IFteG3.jpg", "production_companies": [{"name": "Channel Four Films", "id": 181}, {"name": "Noel Gay Motion Picture Company", "id": 358}, {"name": "Figment Films", "id": 359}, {"name": "Miramax Films", "id": 14}], "release_date": "1996-02-23", "popularity": 0.796976524180804, "original_title": "Trainspotting", "budget": 4000000, "cast": [{"name": "Ewan McGregor", "character": "Renton", "id": 3061, "credit_id": "52fe4260c3a36847f8019913", "cast_id": 17, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Ewen Bremner", "character": "Spud", "id": 1125, "credit_id": "52fe4260c3a36847f8019917", "cast_id": 18, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 1}, {"name": "Jonny Lee Miller", "character": "Sick Boy", "id": 9012, "credit_id": "52fe4260c3a36847f801991b", "cast_id": 19, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 2}, {"name": "Robert Carlyle", "character": "Begbie", "id": 18023, "credit_id": "52fe4260c3a36847f8019947", "cast_id": 30, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 3}, {"name": "Kelly Macdonald", "character": "Diane", "id": 9015, "credit_id": "52fe4260c3a36847f8019923", "cast_id": 21, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 4}, {"name": "Kevin McKidd", "character": "Tommy", "id": 9013, "credit_id": "52fe4260c3a36847f801991f", "cast_id": 20, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 5}, {"name": "Peter Mullan", "character": "Swanney", "id": 3064, "credit_id": "52fe4260c3a36847f8019927", "cast_id": 22, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 6}, {"name": "James Cosmo", "character": "Mr. Renton", "id": 2467, "credit_id": "52fe4260c3a36847f801992b", "cast_id": 23, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 7}, {"name": "Eileen Nicholas", "character": "Mrs. Renton", "id": 9016, "credit_id": "52fe4260c3a36847f801992f", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Susan Vidler", "character": "Allison", "id": 1837, "credit_id": "52fe4260c3a36847f8019933", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Pauline Lynch", "character": "Lizzy", "id": 9017, "credit_id": "52fe4260c3a36847f8019937", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Shirley Henderson", "character": "Gail", "id": 1834, "credit_id": "52fe4260c3a36847f801993b", "cast_id": 27, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 11}, {"name": "Stuart McQuarrie", "character": "Gavin/US Tourist", "id": 2258, "credit_id": "52fe4260c3a36847f801993f", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Irvine Welsh", "character": "Mikey Forrester", "id": 8998, "credit_id": "52fe4260c3a36847f8019943", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f80198c1", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 7.3, "runtime": 94}, "628": {"poster_path": "/hldXwwViSfHJS0kIJr07KBGmHJI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 223664608, "overview": "A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.", "video": false, "id": 628, "genres": [{"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Interview with the Vampire", "tagline": "Drink From Me And Live Forever.", "vote_count": 415, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5margBoJC97ZrciVpAUc0PiY6Rc.jpg", "poster_path": "/1Iop0dywqQeD5Mm7oRVR8vZ8gkj.jpg", "id": 217704, "name": "The Vampire Chronicles"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0110148", "adult": false, "backdrop_path": "/GRyynLqafMrLFMHqvfGdUweavA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Geffen Pictures", "id": 360}], "release_date": "1994-11-11", "popularity": 1.11796928198452, "original_title": "Interview with the Vampire", "budget": 60000000, "cast": [{"name": "Brad Pitt", "character": "Louis de Pointe du Lac", "id": 287, "credit_id": "52fe4260c3a36847f80199f9", "cast_id": 18, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Tom Cruise", "character": "Lestat de Lioncourt", "id": 500, "credit_id": "52fe4260c3a36847f80199fd", "cast_id": 19, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 1}, {"name": "Kirsten Dunst", "character": "Claudia", "id": 205, "credit_id": "52fe4260c3a36847f8019a01", "cast_id": 20, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 2}, {"name": "Antonio Banderas", "character": "Armand", "id": 3131, "credit_id": "52fe4260c3a36847f8019a05", "cast_id": 21, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 3}, {"name": "Christian Slater", "character": "Daniel Malloy", "id": 2224, "credit_id": "52fe4260c3a36847f8019a09", "cast_id": 22, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 4}, {"name": "Stephen Rea", "character": "Santiago", "id": 9029, "credit_id": "52fe4260c3a36847f8019a0d", "cast_id": 23, "profile_path": "/taD1NngDbW8cyCuacAT3YaecSEG.jpg", "order": 5}, {"name": "Thandie Newton", "character": "Yvette", "id": 9030, "credit_id": "52fe4260c3a36847f8019a11", "cast_id": 24, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 6}, {"name": "Domiziana Giordano", "character": "Madeleine", "id": 9031, "credit_id": "52fe4260c3a36847f8019a15", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Indra Ov\u00e9", "character": "New Orleans Whore", "id": 232174, "credit_id": "52fe4260c3a36847f8019a1f", "cast_id": 27, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 8}, {"name": "Laure Marsac", "character": "Mortal Woman on Stage", "id": 149876, "credit_id": "52fe4260c3a36847f8019a23", "cast_id": 28, "profile_path": "/pqUejLV3GZkUTgBCWdNiYsLMlvH.jpg", "order": 9}, {"name": "Andrew Tiernan", "character": "Paris Vampire", "id": 17290, "credit_id": "52fe4260c3a36847f8019a27", "cast_id": 29, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 10}, {"name": "Bellina Logan", "character": "Tavern Girl", "id": 1218000, "credit_id": "52fe4260c3a36847f8019a2b", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "George Kelly", "character": "Dollmaker", "id": 951881, "credit_id": "52fe4260c3a36847f8019a2f", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Helen McCrory", "character": "2nd New Orleans Whore", "id": 15737, "credit_id": "52fe4260c3a36847f8019a33", "cast_id": 32, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 13}], "directors": [{"name": "Neil Jordan", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f8019a1b", "profile_path": "/4OWdIhT5gcfcHoBUzGL7E8tu9T1.jpg", "id": 17016}], "vote_average": 6.8, "runtime": 123}, "629": {"poster_path": "/jgJoRWltoS17nD5MAQ1yK2Ztefw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23341568, "overview": "Following a truck hijack in New York, five conmen are arrested and brought together for questioning. As none of them is guilty, they plan a revenge operation against the police. The operation goes well, but then the influence of a legendary mastermind criminal called Keyser S\u00f6ze is felt. It becomes clear that each one of them has wronged S\u00f6ze at some point and must pay back now. The payback job leaves 27 men dead in a boat explosion, but the real question arises now: Who actually is Keyser S\u00f6ze?", "video": false, "id": 629, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Usual Suspects", "tagline": "Five Criminals . One Line Up . No Coincidence.", "vote_count": 935, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0114814", "adult": false, "backdrop_path": "/c7e3nH3wtSBDrHRB63onrGptl6D.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1995-08-16", "popularity": 2.43509670906584, "original_title": "The Usual Suspects", "budget": 6000000, "cast": [{"name": "Kevin Spacey", "character": "Roger 'Verbal' Kint", "id": 1979, "credit_id": "52fe4260c3a36847f8019af7", "cast_id": 23, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Stephen Baldwin", "character": "Michael McManus", "id": 9045, "credit_id": "52fe4260c3a36847f8019ae7", "cast_id": 19, "profile_path": "/u1pITf1MUXVbCdiJaFxbHEda1oQ.jpg", "order": 1}, {"name": "Gabriel Byrne", "character": "Dean Keaton", "id": 5168, "credit_id": "52fe4260c3a36847f8019aeb", "cast_id": 20, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 2}, {"name": "Benicio del Toro", "character": "Fred Fenster", "id": 1121, "credit_id": "52fe4260c3a36847f8019aef", "cast_id": 21, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 3}, {"name": "Kevin Pollak", "character": "Todd Hockney", "id": 7166, "credit_id": "52fe4260c3a36847f8019af3", "cast_id": 22, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 4}, {"name": "Chazz Palminteri", "character": "Dave Kujan, US Customs", "id": 9046, "credit_id": "52fe4260c3a36847f8019afb", "cast_id": 24, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 5}, {"name": "Pete Postlethwaite", "character": "Kobayashi", "id": 4935, "credit_id": "52fe4260c3a36847f8019aff", "cast_id": 25, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 6}, {"name": "Giancarlo Esposito", "character": "Jack Baer, FBI", "id": 4808, "credit_id": "52fe4260c3a36847f8019b03", "cast_id": 26, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 7}, {"name": "Suzy Amis", "character": "Edie Finneran", "id": 2179, "credit_id": "52fe4260c3a36847f8019b07", "cast_id": 27, "profile_path": "/caqw60Y3qBMdlEPYr3ivZf9LAwC.jpg", "order": 8}, {"name": "Dan Hedaya", "character": "Sgt. Jeffrey Jeff Rabin", "id": 6486, "credit_id": "52fe4260c3a36847f8019b0b", "cast_id": 28, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 9}, {"name": "Christine Estabrook", "character": "Dr. Plummer", "id": 9047, "credit_id": "52fe4260c3a36847f8019b0f", "cast_id": 29, "profile_path": "/882AVj0d1m7A0DoBF5GYr3v7lqf.jpg", "order": 10}, {"name": "Clark Gregg", "character": "Dr. Walters", "id": 9048, "credit_id": "52fe4260c3a36847f8019b13", "cast_id": 30, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 11}, {"name": "Louis Lombardi", "character": "Strausz", "id": 3218, "credit_id": "52fe4260c3a36847f8019b17", "cast_id": 31, "profile_path": "/xQxODNK3RKu0DZvJYQKBLamSmad.jpg", "order": 12}, {"name": "Paul Bartel", "character": "Smuggler", "id": 101377, "credit_id": "52fe4260c3a36847f8019b1b", "cast_id": 32, "profile_path": "/7Kj1Y9V8lfnFXHkjf30H8d3ylQA.jpg", "order": 13}, {"name": "Peter Greene", "character": "Redfoot the Fence", "id": 11803, "credit_id": "52fe4260c3a36847f8019b1f", "cast_id": 33, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 14}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f8019a7d", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 7.8, "runtime": 106}, "630": {"poster_path": "/tKEHoKPZv3af0Pn3poaOLHOJ6NM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16538431, "overview": "One of the most famous musical films and the first film from Hollywood to use color. Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.", "video": false, "id": 630, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Wizard of Oz", "tagline": "We're off to see the Wizard, the wonderful Wizard of Oz!", "vote_count": 463, "homepage": "http://thewizardofoz.warnerbros.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 301888, "name": "The Wizard of Oz Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032138", "adult": false, "backdrop_path": "/mghWy9Ug6sJWejXce9alLtDmgsm.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Loew's", "id": 1460}], "release_date": "1939-08-25", "popularity": 0.841377081154598, "original_title": "The Wizard of Oz", "budget": 2777000, "cast": [{"name": "Judy Garland", "character": "Dorothy Gale", "id": 9066, "credit_id": "52fe4261c3a36847f8019bdb", "cast_id": 19, "profile_path": "/r2p0SpwpkDc5hhg7hqbar9bKMox.jpg", "order": 0}, {"name": "Frank Morgan", "character": "Prof. Marvel", "id": 9067, "credit_id": "52fe4261c3a36847f8019bdf", "cast_id": 20, "profile_path": "/wqZaxQOgxkBnfSP7i2OMbBAVMI9.jpg", "order": 1}, {"name": "Ray Bolger", "character": "Hunk", "id": 9068, "credit_id": "52fe4261c3a36847f8019be3", "cast_id": 21, "profile_path": "/xREFJgnENkI4rajkGeUdXhKASXx.jpg", "order": 2}, {"name": "Bert Lahr", "character": "Zeke", "id": 9069, "credit_id": "52fe4261c3a36847f8019be7", "cast_id": 22, "profile_path": "/pZsycVLdbCAMuEM19oNCZhZLHnS.jpg", "order": 3}, {"name": "Jack Haley", "character": "Hickory", "id": 9070, "credit_id": "52fe4261c3a36847f8019beb", "cast_id": 23, "profile_path": "/w2jA19ttf0JVfue9JWO8w5omPtz.jpg", "order": 4}, {"name": "Billie Burke", "character": "Glinda, the Good Witch of the North", "id": 9071, "credit_id": "52fe4261c3a36847f8019bef", "cast_id": 24, "profile_path": "/2Gylct54q8AxpyOxSQi65HnmPJh.jpg", "order": 5}, {"name": "Margaret Hamilton", "character": "Miss Gulch", "id": 9072, "credit_id": "52fe4261c3a36847f8019bf3", "cast_id": 25, "profile_path": "/9CRmBGC4FOmNg0w6xZ7dWfn3Xkm.jpg", "order": 6}, {"name": "Charley Grapewin", "character": "Uncle Henry", "id": 8517, "credit_id": "52fe4261c3a36847f8019bf7", "cast_id": 26, "profile_path": "/d56Lm5YsoX7JoA9ImaEVZk67zi2.jpg", "order": 7}, {"name": "Clara Blandick", "character": "Auntie Em", "id": 9073, "credit_id": "52fe4261c3a36847f8019bfb", "cast_id": 27, "profile_path": "/zckHdTOY6ROKXUfOGGzNxNCU2TU.jpg", "order": 8}, {"name": "Charles Becker", "character": "Mayor of Munchkin City", "id": 9074, "credit_id": "52fe4261c3a36847f8019bff", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Meinhardt Raabe", "character": "Coroner", "id": 9075, "credit_id": "52fe4261c3a36847f8019c03", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Frank Morgan", "character": "The cabbie", "id": 9067, "credit_id": "52fe4261c3a36847f8019c07", "cast_id": 30, "profile_path": "/wqZaxQOgxkBnfSP7i2OMbBAVMI9.jpg", "order": 11}, {"name": "Margaret Hamilton", "character": "The Wicked Witch of the East", "id": 9072, "credit_id": "52fe4261c3a36847f8019c1b", "cast_id": 35, "profile_path": "/9CRmBGC4FOmNg0w6xZ7dWfn3Xkm.jpg", "order": 16}, {"name": "Bert Lahr", "character": "The Cowardly Lion", "id": 9069, "credit_id": "52fe4261c3a36847f8019c23", "cast_id": 37, "profile_path": "/pZsycVLdbCAMuEM19oNCZhZLHnS.jpg", "order": 18}, {"name": "Jack Haley", "character": "The Tin Man", "id": 9070, "credit_id": "52fe4261c3a36847f8019c27", "cast_id": 38, "profile_path": "/w2jA19ttf0JVfue9JWO8w5omPtz.jpg", "order": 19}], "directors": [{"name": "Victor Fleming", "department": "Directing", "job": "Director", "credit_id": "52fe4260c3a36847f8019b77", "profile_path": "/Lq3Hb5VsmTSIEaYvgfbpK8r8Tk.jpg", "id": 9049}, {"name": "George Cukor", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019c2d", "profile_path": "/t2RWv3nzCoqKWYiCGCjwiIHW4Sj.jpg", "id": 14674}, {"name": "Mervyn LeRoy", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019c33", "profile_path": "/78XvM0jDmFD5MuN360VbqirhKBL.jpg", "id": 9054}, {"name": "King Vidor", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019c39", "profile_path": "/33KhqI4zwndE9f3tbxS6b6qqu5B.jpg", "id": 29962}], "vote_average": 6.8, "runtime": 101}, "634": {"poster_path": "/bSr5bdlAumfBWCibvMLvhvMEkkB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 281929795, "overview": "Bridget Jones\u2019s Diary is a romantic love story comedy from the best selling novel of the same name by Helen Fielding. A chaotic Jones meets a snobbish lawer named Marc and soon he enters into her world of imperfections.", "video": false, "id": 634, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Bridget Jones's Diary", "tagline": "Health Warning: Adopting Bridget's lifestyle could seriously damage your health.", "vote_count": 265, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jiS4x140miaEH524CAFTvuxrcZ1.jpg", "poster_path": "/fB3BE3TL85Wh7dxNJf226IYQCp.jpg", "id": 8936, "name": "Bridget Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243155", "adult": false, "backdrop_path": "/h64zNCm5SrY45c7Z6gxy9tC0xb.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Working Title Films", "id": 10163}, {"name": "Little Bird", "id": 11358}], "release_date": "2001-04-13", "popularity": 1.38132421389229, "original_title": "Bridget Jones's Diary", "budget": 25000000, "cast": [{"name": "Ren\u00e9e Zellweger", "character": "Bridget Jones", "id": 9137, "credit_id": "52fe4261c3a36847f8019e7f", "cast_id": 1, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 0}, {"name": "Colin Firth", "character": "Mark Darcy", "id": 5472, "credit_id": "52fe4261c3a36847f8019f0d", "cast_id": 40, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Hugh Grant", "character": "Daniel Cleaver", "id": 3291, "credit_id": "52fe4261c3a36847f8019f11", "cast_id": 41, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 2}, {"name": "Gemma Jones", "character": "Bridget's Mum", "id": 9138, "credit_id": "52fe4261c3a36847f8019f15", "cast_id": 42, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 3}, {"name": "Jim Broadbent", "character": "Bridget's Dad", "id": 388, "credit_id": "52fe4261c3a36847f8019f19", "cast_id": 43, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 4}, {"name": "James Callis", "character": "Tom", "id": 9145, "credit_id": "52fe4261c3a36847f8019f1d", "cast_id": 44, "profile_path": "/eKYhq4PGfqE7F2xOjNyeyXHNhRU.jpg", "order": 5}, {"name": "Sally Phillips", "character": "Shazza", "id": 9144, "credit_id": "52fe4261c3a36847f8019f21", "cast_id": 45, "profile_path": "/cr0fXU9N69QOcBNZ98ih5A6QbTr.jpg", "order": 6}, {"name": "Shirley Henderson", "character": "Jude", "id": 1834, "credit_id": "52fe4261c3a36847f8019f25", "cast_id": 46, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 7}, {"name": "Embeth Davidtz", "character": "Natasha", "id": 6368, "credit_id": "52fe4261c3a36847f8019f29", "cast_id": 47, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 8}, {"name": "Lisa Barbuscia", "character": "Lara", "id": 9146, "credit_id": "52fe4261c3a36847f8019f2d", "cast_id": 48, "profile_path": "/fesKDQexfUIPI3NYDhIKa6Vfe66.jpg", "order": 9}, {"name": "Celia Imrie", "character": "Una Alconbury", "id": 9139, "credit_id": "54a3bafbc3a36864280025ca", "cast_id": 49, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 10}, {"name": "James Faulkner", "character": "Uncle Geoffrey", "id": 9140, "credit_id": "54a3bb1bc3a3682f1e011297", "cast_id": 50, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 11}], "directors": [{"name": "Sharon Maguire", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019eeb", "profile_path": "/oy9U1x6801cocQT5uQNhLvrCCtc.jpg", "id": 9158}], "vote_average": 6.3, "runtime": 97}, "635": {"poster_path": "/xFtrVJWygDiK2iZluUxNwuQZ6Sm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The down-and-out private detective Harry Angel is ordered, by a mysterious man named Louis Cyphre, to go on a mission to find a missing person. His routine failure soon leads to a bloody spur with himself as Harry Angel goes on a supernatural journey into his soul.", "video": false, "id": 635, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Angel Heart", "tagline": "Harry Angel has been hired in seach for the truth. Pray he doesn't find it.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092563", "adult": false, "backdrop_path": "/NtQjMSMinCFcejZyfhtVYBV1x0.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Winkast Film Productions", "id": 13721}, {"name": "Carolco Pictures", "id": 14723}, {"name": "Union", "id": 24905}], "release_date": "1987-03-06", "popularity": 0.463257827487062, "original_title": "Angel Heart", "budget": 17000000, "cast": [{"name": "Mickey Rourke", "character": "Harry Angel", "id": 2295, "credit_id": "52fe4261c3a36847f8019fb9", "cast_id": 14, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Louis Cyphre", "id": 380, "credit_id": "52fe4261c3a36847f8019fbd", "cast_id": 15, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Lisa Bonet", "character": "Epiphany Proudfoot", "id": 3232, "credit_id": "52fe4261c3a36847f8019fc1", "cast_id": 16, "profile_path": "/wP9edkzvr5vIIVaocRf70vdRcdW.jpg", "order": 2}, {"name": "Charlotte Rampling", "character": "Margaret Krusemark", "id": 44079, "credit_id": "52fe4261c3a36847f8019fc5", "cast_id": 17, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 3}, {"name": "Stocker Fontelieu", "character": "Ethan Krusemark", "id": 9170, "credit_id": "52fe4261c3a36847f8019fc9", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Brownie McGhee", "character": "Toots Sweet", "id": 9171, "credit_id": "52fe4261c3a36847f8019fcd", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Michael Higgins", "character": "Doctor Fowler", "id": 2979, "credit_id": "52fe4261c3a36847f8019fd1", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Elizabeth Whitcraft", "character": "Connie", "id": 9172, "credit_id": "52fe4261c3a36847f8019fd5", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Eliott Keener", "character": "Sterne", "id": 9173, "credit_id": "52fe4261c3a36847f8019fd9", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Charles Gordone", "character": "Spider Simpson", "id": 9174, "credit_id": "52fe4261c3a36847f8019fdd", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Dann Florek", "character": "Winesnap", "id": 9175, "credit_id": "52fe4261c3a36847f8019fe1", "cast_id": 24, "profile_path": "/aWRFqpmLdFAoH9BiUE7RyxUKUsX.jpg", "order": 10}, {"name": "Kathleen Wilhoite", "character": "Nurse", "id": 42335, "credit_id": "54903d8cc3a3686d7c00192d", "cast_id": 57, "profile_path": "/vVqaPBDr54BgryNaGb9IIyDQExD.jpg", "order": 11}, {"name": "George Buck", "character": "Izzy", "id": 4048, "credit_id": "54903db0c3a3686d820018cd", "cast_id": 58, "profile_path": null, "order": 12}, {"name": "Judith Drake", "character": "Izzy's Wife", "id": 109900, "credit_id": "54903dcc9251412209001abd", "cast_id": 59, "profile_path": null, "order": 13}, {"name": "Pruitt Taylor Vince", "character": "Det. Deimos", "id": 3201, "credit_id": "54903de9c3a3687cb800088b", "cast_id": 60, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 14}, {"name": "Dave Petitjean", "character": "Baptism Preacher", "id": 1262960, "credit_id": "54903e0792514122050018bf", "cast_id": 61, "profile_path": null, "order": 15}, {"name": "Rick Washburn", "character": "Cajun Heavy", "id": 97922, "credit_id": "54903e28c3a3686d7c001941", "cast_id": 62, "profile_path": null, "order": 16}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f8019fb5", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 6.7, "runtime": 113}, "636": {"poster_path": "/8cie5mojY6MlIrYMs9EtNSyterv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2437000, "overview": "People in the future live in a totalitarian society. A technician named THX 1138 lives a mundane life between work and taking a controlled consumption of drugs that the government uses to make puppets out of people. As THX is without drugs for the first time he has feelings for a woman and they start a secret relationship. The first film from George Lucas.", "video": false, "id": 636, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "THX 1138", "tagline": "Visit the future where love is the ultimate crime.", "vote_count": 50, "homepage": "http://www.thx1138movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066434", "adult": false, "backdrop_path": "/oKOVIY9W2d5VMKDN1YAAznZ58Bj.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1971-03-11", "popularity": 0.66428747845752, "original_title": "THX 1138", "budget": 777000, "cast": [{"name": "Robert Duvall", "character": "THX", "id": 3087, "credit_id": "52fe4261c3a36847f801a08d", "cast_id": 13, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 0}, {"name": "Donald Pleasence", "character": "SEN", "id": 9221, "credit_id": "52fe4261c3a36847f801a091", "cast_id": 14, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 1}, {"name": "Don Pedro Colley", "character": "SRT", "id": 9222, "credit_id": "52fe4261c3a36847f801a095", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Maggie McOmie", "character": "LUH", "id": 9223, "credit_id": "52fe4261c3a36847f801a099", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Ian Wolfe", "character": "PTO", "id": 2782, "credit_id": "52fe4261c3a36847f801a09d", "cast_id": 17, "profile_path": "/ylp7puM2Hcd0VkQvXfmD7zkP4m7.jpg", "order": 4}, {"name": "Marshall Efron", "character": "TWA", "id": 9224, "credit_id": "52fe4261c3a36847f801a0a1", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Sid Haig", "character": "NCH", "id": 5695, "credit_id": "52fe4261c3a36847f801a0a5", "cast_id": 19, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 6}, {"name": "John Pearce", "character": "DWY", "id": 9225, "credit_id": "52fe4261c3a36847f801a0a9", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Irene Forrest", "character": "IMM", "id": 9226, "credit_id": "52fe4261c3a36847f801a0ad", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Gary Alan Marsh", "character": "CAM", "id": 9227, "credit_id": "52fe4261c3a36847f801a0b1", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "John Seaton", "character": "OUE", "id": 9228, "credit_id": "52fe4261c3a36847f801a0b5", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Eugene I. Stillman", "character": "JOT", "id": 9229, "credit_id": "52fe4261c3a36847f801a0b9", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Jack Walsh", "character": "TRG", "id": 5613, "credit_id": "52fe4261c3a36847f801a0bd", "cast_id": 25, "profile_path": "/zrqDsTJbPLx1BOXT9DmcXlKOP1c.jpg", "order": 12}, {"name": "Mark Lawhead", "character": "Shell Dweller", "id": 9231, "credit_id": "52fe4262c3a36847f801a0c1", "cast_id": 26, "profile_path": null, "order": 13}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe4261c3a36847f801a089", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.4, "runtime": 86}, "637": {"poster_path": "/f7DImXDebOs148U4uPjI61iDvaK.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 229400000, "overview": "A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.", "video": false, "id": 637, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Life Is Beautiful", "tagline": "An unforgettable fable that proves love, family and imagination conquer all.", "vote_count": 836, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118799", "adult": false, "backdrop_path": "/mrbTLFsYup7iIXgJzxJVLaitcwZ.jpg", "production_companies": [{"name": "Melampo Cinematografica", "id": 370}, {"name": "Cecchi Gori Group Tiger Cinematografica", "id": 371}], "release_date": "1997-12-20", "popularity": 0.998208445084334, "original_title": "La vita \u00e8 bella", "budget": 0, "cast": [{"name": "Nicoletta Braschi", "character": "Dora", "id": 9235, "credit_id": "52fe4262c3a36847f801a121", "cast_id": 7, "profile_path": "/KVd8Wj5PXrZ4XhtnWzbdqvQLIu.jpg", "order": 0}, {"name": "Roberto Benigni", "character": "Guido Orefice", "id": 4818, "credit_id": "52fe4262c3a36847f801a125", "cast_id": 8, "profile_path": "/3PTaBUHrSgculvAFD7xbZqZWMo9.jpg", "order": 1}, {"name": "Giorgio Cantarini", "character": "Giosu\u00e9 Orefice", "id": 9236, "credit_id": "52fe4262c3a36847f801a129", "cast_id": 9, "profile_path": "/kqS0xt0oPSjAA54S1wWk118ALgA.jpg", "order": 2}, {"name": "Giustino Durano", "character": "Eliseo Orefice", "id": 9237, "credit_id": "52fe4262c3a36847f801a12d", "cast_id": 10, "profile_path": "/6M5bUmgzRLAzjZ8D5uQq6v0rAM6.jpg", "order": 3}, {"name": "Amerigo Fontani", "character": "Rodolfo", "id": 9238, "credit_id": "52fe4262c3a36847f801a131", "cast_id": 11, "profile_path": "/jb37N1fGjI8Hi9COf3qQaz7n8bY.jpg", "order": 4}, {"name": "Sergio Bini Bustric", "character": "Ferruccio", "id": 9239, "credit_id": "52fe4262c3a36847f801a135", "cast_id": 12, "profile_path": "/64ERkNCeK0oMk8YWoNK1KuDETt3.jpg", "order": 5}, {"name": "Lidia Alfonsi", "character": "Signora Guicciardini", "id": 9240, "credit_id": "52fe4262c3a36847f801a139", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Horst Buchholz", "character": "Dottore Lessing", "id": 5789, "credit_id": "52fe4262c3a36847f801a13d", "cast_id": 14, "profile_path": "/bNyMxUU2aVaqDfoqRhnIjQJe3jo.jpg", "order": 7}, {"name": "Pietro De Silva", "character": "Bartolomeo", "id": 9241, "credit_id": "52fe4262c3a36847f801a141", "cast_id": 15, "profile_path": "/lmndioiEYOcA751pcWutmyNAbPH.jpg", "order": 8}, {"name": "Marisa Paredes", "character": "Madre di Dora", "id": 954, "credit_id": "52fe4262c3a36847f801a145", "cast_id": 16, "profile_path": "/vUCGRyx1IjRvlNekMkqoFQAf8sD.jpg", "order": 9}, {"name": "Giuliana Lojodice", "character": "Direttrice", "id": 9242, "credit_id": "52fe4262c3a36847f801a149", "cast_id": 17, "profile_path": "/r16Z7t9qCUnWRbQIZcvdGTgjQMR.jpg", "order": 10}, {"name": "Francesco Guzzo", "character": "Vittorino", "id": 9243, "credit_id": "52fe4262c3a36847f801a14d", "cast_id": 18, "profile_path": "/6X7AUApTZ2RJIEdvXSU0gSAdMFC.jpg", "order": 11}], "directors": [{"name": "Roberto Benigni", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a0ff", "profile_path": "/3PTaBUHrSgculvAFD7xbZqZWMo9.jpg", "id": 4818}], "vote_average": 8.0, "runtime": 116}, "638": {"poster_path": "/c6NwqYwNCZhJndR48EJLkm8dfNg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3675201, "overview": "Director David Lynch gives us a psycho thriller beyond definition that has audiences tangled in the provocations of nightmares, violence, sex sequences, reality, the subconscious, and madness as they must create their own interpretations of the film.", "video": false, "id": 638, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Lost Highway", "tagline": "", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116922", "adult": false, "backdrop_path": "/xZNn24www3ygZtP1YOzF4NBL5So.jpg", "production_companies": [{"name": "Ciby 2000", "id": 105}, {"name": "October Films", "id": 236}, {"name": "Asymmetrical Productions", "id": 373}, {"name": "Lost Highway Productions", "id": 374}], "release_date": "1997-02-21", "popularity": 0.955892173908715, "original_title": "Lost Highway", "budget": 15000000, "cast": [{"name": "Bill Pullman", "character": "Fred Madison", "id": 8984, "credit_id": "52fe4262c3a36847f801a263", "cast_id": 2, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Renee Madison", "id": 4687, "credit_id": "52fe4262c3a36847f801a267", "cast_id": 3, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "John Roselius", "character": "Al", "id": 9285, "credit_id": "52fe4262c3a36847f801a26b", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Louis Eppolito", "character": "Ed", "id": 9286, "credit_id": "52fe4262c3a36847f801a26f", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Robert Blake", "character": "Mystery Man", "id": 9287, "credit_id": "52fe4262c3a36847f801a273", "cast_id": 6, "profile_path": "/2jNypGrgrzYyKqlrEsZ6HwSbVcy.jpg", "order": 4}, {"name": "Jenna Maetlind", "character": "Party Girl", "id": 9288, "credit_id": "52fe4262c3a36847f801a277", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Michael Massee", "character": "Andy", "id": 9289, "credit_id": "52fe4262c3a36847f801a27b", "cast_id": 8, "profile_path": "/qbM7GWc86Lw5y6E6eCnokgVaHia.jpg", "order": 6}, {"name": "Henry Rollins", "character": "Guard Henry", "id": 9290, "credit_id": "52fe4262c3a36847f801a27f", "cast_id": 9, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 7}, {"name": "Michael Shamus Wiles", "character": "Guard Mike", "id": 9291, "credit_id": "52fe4262c3a36847f801a283", "cast_id": 10, "profile_path": "/upfSW6BGze446iqsZRehzcToNm8.jpg", "order": 8}, {"name": "Mink Stole", "character": "Forewoman", "id": 9292, "credit_id": "52fe4262c3a36847f801a287", "cast_id": 11, "profile_path": "/ew1Ro2VvDR1YjaJAvO7ZjTNe7oK.jpg", "order": 9}, {"name": "Leonard Termo", "character": "Judge", "id": 7140, "credit_id": "52fe4262c3a36847f801a28b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Ivory Ocean", "character": "Guard Ivory", "id": 9293, "credit_id": "52fe4262c3a36847f801a28f", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Jack Kehler", "character": "Guard Johnny Mack", "id": 1240, "credit_id": "52fe4262c3a36847f801a293", "cast_id": 14, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 12}, {"name": "David Byrd", "character": "Doctor Smordin", "id": 9294, "credit_id": "52fe4262c3a36847f801a297", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Gene Ross", "character": "Warden Clements", "id": 9295, "credit_id": "52fe4262c3a36847f801a29b", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Balthazar Getty", "character": "Pete Dayton", "id": 9296, "credit_id": "52fe4262c3a36847f801a29f", "cast_id": 17, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 15}, {"name": "F. William Parker", "character": "Captain Luneau", "id": 9297, "credit_id": "52fe4262c3a36847f801a2a3", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Guy Siner", "character": "Prison Official #1", "id": 9298, "credit_id": "52fe4262c3a36847f801a2a7", "cast_id": 19, "profile_path": "/qlEznv2uAbN46pmVaAuWNTULdVh.jpg", "order": 17}, {"name": "Alexander Folk", "character": "Prison Official #2", "id": 9299, "credit_id": "52fe4262c3a36847f801a2ab", "cast_id": 20, "profile_path": null, "order": 18}, {"name": "Gary Busey", "character": "Bill Dayton", "id": 2048, "credit_id": "52fe4262c3a36847f801a2af", "cast_id": 21, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 19}, {"name": "Lucy Butler", "character": "Candace Dayton", "id": 9300, "credit_id": "52fe4262c3a36847f801a2b3", "cast_id": 22, "profile_path": "/ua0j2HN8Gfvh0kFagGS4kWzGV1m.jpg", "order": 20}, {"name": "Carl Sundstrom", "character": "Hank", "id": 9301, "credit_id": "52fe4262c3a36847f801a2b7", "cast_id": 23, "profile_path": null, "order": 21}, {"name": "John Solari", "character": "Lou", "id": 9302, "credit_id": "52fe4262c3a36847f801a2bb", "cast_id": 24, "profile_path": null, "order": 22}, {"name": "Jack", "character": "The Dog", "id": 9303, "credit_id": "52fe4262c3a36847f801a2bf", "cast_id": 25, "profile_path": null, "order": 23}, {"name": "Al Garrett", "character": "Carl", "id": 9304, "credit_id": "52fe4262c3a36847f801a2c3", "cast_id": 26, "profile_path": null, "order": 24}, {"name": "Heather Stephens", "character": "Lanie", "id": 9305, "credit_id": "52fe4262c3a36847f801a2c7", "cast_id": 27, "profile_path": "/oIT6TC22SV8otMR8hFmPSVtF595.jpg", "order": 25}, {"name": "Giovanni Ribisi", "character": "Steve \"V\"", "id": 1771, "credit_id": "52fe4262c3a36847f801a2cb", "cast_id": 28, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 26}, {"name": "Scott Coffey", "character": "Teddy", "id": 9306, "credit_id": "52fe4262c3a36847f801a2cf", "cast_id": 29, "profile_path": "/kRA20iJ4hBeHSUlYduRTXEhQyku.jpg", "order": 27}, {"name": "Natasha Gregson Wagner", "character": "Sheila", "id": 3270, "credit_id": "52fe4262c3a36847f801a2d3", "cast_id": 30, "profile_path": "/jjzEhU1kxnHnwDBq4CtNDRxS1f6.jpg", "order": 28}, {"name": "Amanda Anka", "character": "Girl #1", "id": 9307, "credit_id": "52fe4262c3a36847f801a2d7", "cast_id": 31, "profile_path": null, "order": 29}, {"name": "Jennifer Syme", "character": "Junkie Girl", "id": 9308, "credit_id": "52fe4262c3a36847f801a2db", "cast_id": 32, "profile_path": "/mw6mY2jakgzO6obZIwk7bBWL6mo.jpg", "order": 30}, {"name": "Richard Pryor", "character": "Arnie", "id": 9309, "credit_id": "52fe4262c3a36847f801a2df", "cast_id": 33, "profile_path": "/hzJ3Q7wDLv4m82eMTbK2tzVzCHG.jpg", "order": 31}, {"name": "Robert Loggia", "character": "Mr. Eddy / Dick Lauren", "id": 1162, "credit_id": "52fe4262c3a36847f801a2e3", "cast_id": 34, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 32}, {"name": "Matt Sigloch", "character": "Assistent #1", "id": 9310, "credit_id": "52fe4262c3a36847f801a2e7", "cast_id": 35, "profile_path": null, "order": 33}, {"name": "Gilbert B. Combs", "character": "Assistent #2", "id": 9311, "credit_id": "52fe4262c3a36847f801a2eb", "cast_id": 36, "profile_path": null, "order": 34}, {"name": "Greg Travis", "character": "Tail Gate Driver", "id": 9312, "credit_id": "52fe4262c3a36847f801a2ef", "cast_id": 37, "profile_path": "/i08bAo3ZRB9QWBvpcqviJHyU8EH.jpg", "order": 35}, {"name": "Jack Nance", "character": "Phil", "id": 6718, "credit_id": "52fe4262c3a36847f801a2f3", "cast_id": 38, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 36}, {"name": "Lisa Boyle", "character": "Marian", "id": 9313, "credit_id": "52fe4262c3a36847f801a2f7", "cast_id": 39, "profile_path": "/r7YqIRBbeNIgVNK6xgmrmLDh4uW.jpg", "order": 37}, {"name": "Leslie Bega", "character": "Raquel", "id": 9314, "credit_id": "52fe4262c3a36847f801a2fb", "cast_id": 40, "profile_path": null, "order": 38}, {"name": "Marilyn Manson", "character": "Porno Star #1", "id": 9315, "credit_id": "52fe4262c3a36847f801a2ff", "cast_id": 41, "profile_path": "/iUMXqqB1rScONzA7FrUtyb7G8pA.jpg", "order": 39}, {"name": "Jeordie White", "character": "Porno Star #2", "id": 9316, "credit_id": "52fe4262c3a36847f801a303", "cast_id": 42, "profile_path": null, "order": 40}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a25f", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.6, "runtime": 134}, "639": {"poster_path": "/anYI1fzx90PgjO9PY3JStJZJmQT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92823546, "overview": "Will sex ruin a perfect relationship between a man and a woman? that's what Harry (Billy Crystal) and Sally (Meg Ryan) debate during their travels from Chicago to New York. And eleven years and later, they're still no closer to finding the answer. Will these two best friends ever accept that they're meant for each other...or will they continue to deny the attraction that's existed since the first moment When Harry Met Sally?", "video": false, "id": 639, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "When Harry Met Sally...", "tagline": "Can two friends sleep together and still love each other in the morning?", "vote_count": 187, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098635", "adult": false, "backdrop_path": "/qSjaK9gzDUlL4beeexXwliWqSCX.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Nelson Entertainment", "id": 365}], "release_date": "1989-07-12", "popularity": 1.24019058683555, "original_title": "When Harry Met Sally...", "budget": 16000000, "cast": [{"name": "Meg Ryan", "character": "Sally Albright", "id": 5344, "credit_id": "52fe4262c3a36847f801a557", "cast_id": 19, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Harry Burns", "id": 7904, "credit_id": "52fe4262c3a36847f801a55b", "cast_id": 20, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Marie", "id": 4, "credit_id": "52fe4262c3a36847f801a55f", "cast_id": 21, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "Bruno Kirby", "character": "Jess", "id": 9257, "credit_id": "52fe4262c3a36847f801a563", "cast_id": 22, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 3}, {"name": "Steven Ford", "character": "Joe", "id": 9258, "credit_id": "5474252ac3a36845e500220e", "cast_id": 23, "profile_path": "/iw8CUyekmYkGwmg0bp7foY4KvrH.jpg", "order": 4}, {"name": "Lisa Jane Persky", "character": "Alice", "id": 9259, "credit_id": "5474253a92514160e30003d0", "cast_id": 24, "profile_path": "/9H3tSghbilxzikD3Ob59zt15Vp.jpg", "order": 5}, {"name": "Michelle Nicastro", "character": "Amanda", "id": 9260, "credit_id": "54742549c3a3683e3f00044a", "cast_id": 25, "profile_path": "/mwaoMLHrMKFLHKyYqlVAqdfsJuY.jpg", "order": 6}, {"name": "Gretchen Palmer", "character": "Stewardess", "id": 119884, "credit_id": "5474255cc3a3681db6001101", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Robert Alan Beuth", "character": "Man on Aisle", "id": 86475, "credit_id": "5474256d9251413aab001229", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "David Burdick", "character": "9 Year Old Boy", "id": 1389091, "credit_id": "5474257b9251413aab00122c", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Joe Viviani", "character": "Judge", "id": 1389092, "credit_id": "54742589c3a36875de000ce0", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Harley Jane Kozak", "character": "Helen", "id": 27106, "credit_id": "547425999251416e58001559", "cast_id": 30, "profile_path": "/VXtpLchVBUib398pwahLPbgSeT.jpg", "order": 11}, {"name": "Joseph Hunt", "character": "Waiter at Wedding", "id": 1389093, "credit_id": "547425af9251416e58001564", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Kevin Rooney", "character": "Ira", "id": 151273, "credit_id": "547425bdc3a3683e3f000456", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Franc Luz", "character": "Julian", "id": 158205, "credit_id": "54e8a33bc3a36836e0001e86", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a4ed", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.7, "runtime": 96}, "640": {"poster_path": "/MywWCQGJNUr5kivAQ7eseCG7rm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 351112395, "overview": "Frank W. Abagnale Jr. is a cunning con man -- posing as a doctor, lawyer and pilot all before turning 21. He's also a deft forger, and his work attracts the attention of FBI agent Carl Hanratty, who makes it his mission to put Frank behind bars. But Frank not only eludes capture, he revels in the pursuit, even taking time to taunt Carl by phone.", "video": false, "id": 640, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Catch Me If You Can", "tagline": "The true story of a real fake.", "vote_count": 1109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0264464", "adult": false, "backdrop_path": "/lV3HasjMmWyFjD9gCz0B4h71wwF.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2002-12-25", "popularity": 1.08036198325352, "original_title": "Catch Me If You Can", "budget": 52000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Frank Abagnale Jr.", "id": 6193, "credit_id": "52fe4263c3a36847f801a63f", "cast_id": 23, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Tom Hanks", "character": "Carl Hanratty", "id": 31, "credit_id": "52fe4263c3a36847f801a643", "cast_id": 24, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Frank Abagnale, Sr.", "id": 4690, "credit_id": "52fe4263c3a36847f801a647", "cast_id": 25, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Martin Sheen", "character": "Roger Strong", "id": 8349, "credit_id": "52fe4263c3a36847f801a64b", "cast_id": 26, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 3}, {"name": "Amy Adams", "character": "Brenda Strong", "id": 9273, "credit_id": "52fe4263c3a36847f801a64f", "cast_id": 28, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 4}, {"name": "James Brolin", "character": "Jack Barnes", "id": 9274, "credit_id": "52fe4263c3a36847f801a653", "cast_id": 29, "profile_path": "/8SGPpN3ieM3K0mHjD8bbQIRD6x.jpg", "order": 5}, {"name": "Brian Howe", "character": "Earl Amdursky", "id": 1990, "credit_id": "52fe4263c3a36847f801a657", "cast_id": 30, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 6}, {"name": "Frank John Hughes", "character": "Tom Fox", "id": 9275, "credit_id": "52fe4263c3a36847f801a65b", "cast_id": 31, "profile_path": "/djOW0Qyeym5wWGqqILWJ6LENikW.jpg", "order": 7}, {"name": "Steve Eastin", "character": "Paul Morgan", "id": 9276, "credit_id": "52fe4263c3a36847f801a65f", "cast_id": 32, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 8}, {"name": "Chris Ellis", "character": "Special Agent Witkins", "id": 8191, "credit_id": "52fe4263c3a36847f801a663", "cast_id": 33, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 9}, {"name": "John Finn", "character": "Assistant Director Marsh", "id": 9277, "credit_id": "52fe4263c3a36847f801a667", "cast_id": 34, "profile_path": "/18k2kiasthWKgu4qUGF02fWsi7m.jpg", "order": 10}, {"name": "Jennifer Garner", "character": "Cheryl Ann", "id": 9278, "credit_id": "52fe4263c3a36847f801a66b", "cast_id": 35, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 11}, {"name": "Nancy Lenehan", "character": "Carol Strong", "id": 9279, "credit_id": "52fe4263c3a36847f801a66f", "cast_id": 36, "profile_path": "/d53TslGYUtkXfHHEjCGMCQOOdlM.jpg", "order": 12}, {"name": "Ellen Pompeo", "character": "Marci", "id": 9280, "credit_id": "52fe4263c3a36847f801a673", "cast_id": 37, "profile_path": "/iX5HdQdWRPLf5Fx87QDNCdehmI9.jpg", "order": 13}, {"name": "Elizabeth Banks", "character": "Lucy", "id": 9281, "credit_id": "52fe4263c3a36847f801a677", "cast_id": 38, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 14}, {"name": "Guy Thauvette", "character": "Warden Garren", "id": 9282, "credit_id": "52fe4263c3a36847f801a67b", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Candice Azzara", "character": "Darcy", "id": 9283, "credit_id": "52fe4263c3a36847f801a67f", "cast_id": 40, "profile_path": "/sotfsarQARGTDzZ7PnKqWnTKVAk.jpg", "order": 16}, {"name": "Thomas Kopache", "character": "Principal Evans", "id": 9284, "credit_id": "52fe4263c3a36847f801a683", "cast_id": 41, "profile_path": "/x7ef1rpmCE6rjeuJq30rw0zSQE0.jpg", "order": 17}, {"name": "Nathalie Baye", "character": "Paula Abagnale", "id": 136761, "credit_id": "52fe4263c3a36847f801a68d", "cast_id": 43, "profile_path": "/1Jgb6SsdVhQhoPykMWIKzfV5s5U.jpg", "order": 18}, {"name": "Max Kerstein", "character": "Penner Brother", "id": 189735, "credit_id": "52fe4263c3a36847f801a697", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Jessica Collins", "character": "Peggy", "id": 86929, "credit_id": "52fe4263c3a36847f801a69b", "cast_id": 46, "profile_path": "/qRm0rvKJfGj6JGznemo1txstlQb.jpg", "order": 20}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4262c3a36847f801a5c3", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.3, "runtime": 141}, "641": {"poster_path": "/muym4jTjdLx7E6as09d1wlC3sOB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7390108, "overview": "The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.", "video": false, "id": 641, "genres": [{"id": 18, "name": "Drama"}], "title": "Requiem for a Dream", "tagline": "From the director of [Pi]", "vote_count": 589, "homepage": "http://www.requiemforadream.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0180093", "adult": false, "backdrop_path": "/4xwwVbTyEqzFdiX2kop1rSTX9dR.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}], "release_date": "2000-10-27", "popularity": 0.380552664420279, "original_title": "Requiem for a Dream", "budget": 4500000, "cast": [{"name": "Ellen Burstyn", "character": "Sara Goldfarb", "id": 9560, "credit_id": "52fe4263c3a36847f801a777", "cast_id": 29, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 0}, {"name": "Jared Leto", "character": "Harry Goldfarb", "id": 7499, "credit_id": "52fe4263c3a36847f801a77b", "cast_id": 30, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "Marion Silver", "id": 6161, "credit_id": "52fe4263c3a36847f801a77f", "cast_id": 31, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Marlon Wayans", "character": "Tyrone C. Love", "id": 9562, "credit_id": "52fe4263c3a36847f801a783", "cast_id": 32, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 3}, {"name": "Christopher McDonald", "character": "Tappy Tibbons", "id": 4443, "credit_id": "52fe4263c3a36847f801a787", "cast_id": 33, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 4}, {"name": "Louise Lasser", "character": "Ada", "id": 9565, "credit_id": "52fe4263c3a36847f801a78b", "cast_id": 34, "profile_path": "/32K4mhDymJMkm9goQ02cBX6lBFL.jpg", "order": 5}, {"name": "Marcia Jean Kurtz", "character": "Rae", "id": 14548, "credit_id": "52fe4263c3a36847f801a795", "cast_id": 36, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 6}, {"name": "Janet Sarno", "character": "Mrs. Pearlman", "id": 171117, "credit_id": "52fe4263c3a36847f801a799", "cast_id": 37, "profile_path": null, "order": 7}, {"name": "Suzanne Shepherd", "character": "Mrs. Scarlini", "id": 11484, "credit_id": "52fe4263c3a36847f801a79d", "cast_id": 38, "profile_path": null, "order": 8}, {"name": "Mark Margolis", "character": "Mr. Rabinowitz", "id": 1173, "credit_id": "52fe4263c3a36847f801a7a1", "cast_id": 39, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 9}, {"name": "Joanne Gordon", "character": "Mrs. Ovadia", "id": 1402326, "credit_id": "549736f0c3a3684c150002c5", "cast_id": 40, "profile_path": null, "order": 10}, {"name": "Charlotte Aronofsky", "character": "Mrs. Miles", "id": 1081123, "credit_id": "54973742c3a3686ae3006bd2", "cast_id": 41, "profile_path": null, "order": 11}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801a6e9", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 7.5, "runtime": 102}, "41602": {"poster_path": "/fSwdCCGmO50IMaH4XMAixjclLDF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "While traveling abroad, a guy falls for a Romanian beauty whose unreachable heart has its origins in her violent, charismatic ex.", "video": false, "id": 41602, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Necessary Death of Charlie Countryman", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt1196948", "adult": false, "backdrop_path": "/bGU9HdjUH22b2KOCjfGIcfdkRSr.jpg", "production_companies": [{"name": "MediaPro Pictures", "id": 11819}, {"name": "Bona Fide Productions", "id": 2570}], "release_date": "2013-11-15", "popularity": 0.816859856259536, "original_title": "The Necessary Death of Charlie Countryman", "budget": 0, "cast": [{"name": "Shia LaBeouf", "character": "Charlie Countryman", "id": 10959, "credit_id": "52fe45d5c3a36847f80dd21f", "cast_id": 1, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Evan Rachel Wood", "character": "Gabi Ibanescu", "id": 38940, "credit_id": "52fe45d5c3a36847f80dd227", "cast_id": 4, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 1}, {"name": "Mads Mikkelsen", "character": "Nigel", "id": 1019, "credit_id": "52fe45d5c3a36847f80dd22b", "cast_id": 5, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 2}, {"name": "Til Schweiger", "character": "Darko", "id": 1844, "credit_id": "52fe45d5c3a36847f80dd22f", "cast_id": 7, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 3}, {"name": "Rupert Grint", "character": "Carl", "id": 10989, "credit_id": "52fe45d5c3a36847f80dd223", "cast_id": 3, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 4}, {"name": "James Buckley", "character": "Luke", "id": 207321, "credit_id": "52fe45d5c3a36847f80dd239", "cast_id": 9, "profile_path": "/lv58w34d9qgqJiLDX5tovxzp8rV.jpg", "order": 5}, {"name": "Melissa Leo", "character": "Kate", "id": 6832, "credit_id": "52fe45d5c3a36847f80dd23d", "cast_id": 10, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 6}, {"name": "Vanessa Kirby", "character": "Felicity", "id": 556356, "credit_id": "52fe45d5c3a36847f80dd241", "cast_id": 11, "profile_path": "/ndrtjCvIXEuHerMBOz8sLyxgIlc.jpg", "order": 7}, {"name": "Montserrat Lombard", "character": "Madison", "id": 118035, "credit_id": "52fe45d6c3a36847f80dd251", "cast_id": 14, "profile_path": "/4XcmWu0tRWhNV5tPwkkHfCsII74.jpg", "order": 8}, {"name": "Ion Caramitru", "character": "Victor Ibanescu", "id": 15321, "credit_id": "52fe45d6c3a36847f80dd255", "cast_id": 15, "profile_path": "/lHgFi4CUYavMKVW7xTbHj4CoMEn.jpg", "order": 9}, {"name": "Vincent D'Onofrio", "character": "Bill", "id": 7132, "credit_id": "52fe45d6c3a36847f80dd259", "cast_id": 16, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 10}, {"name": "John Hurt", "character": "Narrator", "id": 5049, "credit_id": "52fe45d6c3a36847f80dd261", "cast_id": 18, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 12}, {"name": "Cosmin Padureanu", "character": "Bosko", "id": 1437321, "credit_id": "54fdd11092514123af00501b", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Fredrik Bond", "department": "Directing", "job": "Director", "credit_id": "52fe45d5c3a36847f80dd235", "profile_path": null, "id": 1140271}], "vote_average": 6.8, "runtime": 108}, "8835": {"poster_path": "/1gAnkZNAd3HqgWL7aqSOQFwt7D1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141774679, "overview": "Elle Woods has it all. She's the president of her sorority, a Hawaiian Tropic girl, Miss June in her campus calendar, and, above all, a natural blonde. She dates the cutest fraternity boy on campus and wants nothing more than to be Mrs. Warner Huntington III. But, there's just one thing stopping Warner from popping the question: Elle is too blonde.", "video": false, "id": 8835, "genres": [{"id": 35, "name": "Comedy"}], "title": "Legally Blonde", "tagline": "Don't judge a book by its hair color!", "vote_count": 194, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aabPyPAA6E8hJ7tUipwunr3Itzb.jpg", "poster_path": "/atW2tUdKztpE66G1FMLCj12BHWz.jpg", "id": 86024, "name": "Legally Blonde Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0250494", "adult": false, "backdrop_path": "/rusiQnUaorH0Z71hYMsrR8Ortrf.jpg", "production_companies": [{"name": "Marc Platt Productions", "id": 2527}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2001-07-13", "popularity": 0.944672170032937, "original_title": "Legally Blonde", "budget": 18000000, "cast": [{"name": "Reese Witherspoon", "character": "Elle Woods", "id": 368, "credit_id": "52fe44bbc3a36847f80a7009", "cast_id": 10, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Luke Wilson", "character": "Emmett Richmond", "id": 36422, "credit_id": "52fe44bbc3a36847f80a700d", "cast_id": 11, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Selma Blair", "character": "Vivian Kensington", "id": 11826, "credit_id": "52fe44bbc3a36847f80a7011", "cast_id": 12, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 2}, {"name": "Matthew Davis", "character": "Warner Huntington III", "id": 56045, "credit_id": "52fe44bbc3a36847f80a7015", "cast_id": 13, "profile_path": "/crjsdQlWTVKFPS5XKuLOcVMFFNd.jpg", "order": 3}, {"name": "Victor Garber", "character": "Professor Callahan", "id": 8536, "credit_id": "52fe44bbc3a36847f80a7019", "cast_id": 14, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 4}, {"name": "Lacey Beeman", "character": "Nervous 1L Girl", "id": 168897, "credit_id": "52fe44bbc3a36847f80a701d", "cast_id": 15, "profile_path": "/h8coFumNNoCK6wJ0XYXSeO6Q6C7.jpg", "order": 5}, {"name": "Jennifer Coolidge", "character": "Paulette", "id": 38334, "credit_id": "52fe44bbc3a36847f80a7021", "cast_id": 16, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 6}, {"name": "Holland Taylor", "character": "Professor Stromwell", "id": 11318, "credit_id": "53b6187b0e0a2676c7004869", "cast_id": 17, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 7}, {"name": "Ali Larter", "character": "Brooke Taylor Windham", "id": 17303, "credit_id": "53b618870e0a2676cb004575", "cast_id": 18, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 8}, {"name": "Jessica Cauffiel", "character": "Margot", "id": 22126, "credit_id": "53b618990e0a2676c700486c", "cast_id": 19, "profile_path": "/rLqK8Qj2SPjwkT7uPQyv3UV5qlg.jpg", "order": 9}, {"name": "Alanna Ubach", "character": "Serena", "id": 10402, "credit_id": "53b618a20e0a2676b80044c8", "cast_id": 20, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 10}, {"name": "Oz Perkins", "character": "Dorky David Kidney", "id": 90609, "credit_id": "53b618af0e0a2676c7004872", "cast_id": 21, "profile_path": "/mFMTeyafafTqSgaWaRvGaLNgG7j.jpg", "order": 11}, {"name": "Linda Cardellini", "character": "Chutney", "id": 1817, "credit_id": "53b618b80e0a2676c40045f7", "cast_id": 22, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 12}, {"name": "Bruce Thomas", "character": "UPS Guy", "id": 79497, "credit_id": "53b618c70e0a2676c7004877", "cast_id": 23, "profile_path": "/mh7ckVcito9SJiMYhAH5Ca7EY3B.jpg", "order": 13}, {"name": "Meredith Scott Lynn", "character": "Enid", "id": 151384, "credit_id": "53b618d30e0a2676c700487a", "cast_id": 24, "profile_path": "/dxd6wN3HoW8dqJsjkAmEtsZVuca.jpg", "order": 14}, {"name": "Raquel Welch", "character": "Mrs. Windham Vandermark", "id": 21462, "credit_id": "53b618dc0e0a2676bf004595", "cast_id": 25, "profile_path": "/dEr7QkkgOqCwH1uc5VXzTxDveAv.jpg", "order": 15}, {"name": "Greg Serano", "character": "Enrique", "id": 96553, "credit_id": "53b618fa0e0a2676b80044d1", "cast_id": 26, "profile_path": "/2HUQm4OLQUNqPf9E8I6ypZpGHGG.jpg", "order": 16}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe44bbc3a36847f80a6fd5", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 6.0, "runtime": 96}, "644": {"poster_path": "/seJhtsUcytRuRGa6oUGYhjVYL8g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 235926552, "overview": "Eleven-year-old David is the first android with human feelings. He is adopted by the Swinton family to test his ability to function. Before they are done testing him though David goes off on his own following his wish to be a human. He is on an odyssey to understand the secret to his existence. A science fiction film from Steven Spielberg taken over from Stanley Kubrick.", "video": false, "id": 644, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "A.I. Artificial Intelligence", "tagline": "Journey to a world where robots dream and desire.", "vote_count": 450, "homepage": "http://www.warnerbros.de/video/ai/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0212720", "adult": false, "backdrop_path": "/osPj1VwPkoeFtNWjOxuNY71smol.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Stanley Kubrick Productions", "id": 385}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2001-06-25", "popularity": 1.26768906010708, "original_title": "Artificial Intelligence: AI", "budget": 100000000, "cast": [{"name": "Haley Joel Osment", "character": "David", "id": 9640, "credit_id": "52fe4263c3a36847f801a9cf", "cast_id": 18, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 0}, {"name": "Frances O'Connor", "character": "Monica Swinton", "id": 1518, "credit_id": "52fe4263c3a36847f801a9d3", "cast_id": 19, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 1}, {"name": "Sam Robards", "character": "Henry Swinton", "id": 8213, "credit_id": "52fe4263c3a36847f801a9d7", "cast_id": 20, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 2}, {"name": "Jake Thomas", "character": "Martin Swinton", "id": 9641, "credit_id": "52fe4263c3a36847f801a9db", "cast_id": 21, "profile_path": "/eln9pyfOrEAZ0vNDay8cm8syhIQ.jpg", "order": 3}, {"name": "Jude Law", "character": "Gigolo Joe", "id": 9642, "credit_id": "52fe4263c3a36847f801a9df", "cast_id": 22, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 4}, {"name": "William Hurt", "character": "Prof. Hobby", "id": 227, "credit_id": "52fe4263c3a36847f801a9e3", "cast_id": 23, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 5}, {"name": "Robin Williams", "character": "Dr. Know (voice)", "id": 2157, "credit_id": "52fe4263c3a36847f801a9e7", "cast_id": 24, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Specialist (voice)", "id": 2282, "credit_id": "52fe4263c3a36847f801a9eb", "cast_id": 25, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "Meryl Streep", "character": "Blue Mecha (voice)", "id": 5064, "credit_id": "52fe4263c3a36847f801a9ef", "cast_id": 26, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 8}, {"name": "Chris Rock", "character": "Comedian (voice)", "id": 2632, "credit_id": "52fe4263c3a36847f801a9f3", "cast_id": 27, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 9}, {"name": "Ken Leung", "character": "Syatyoo-Sama", "id": 2131, "credit_id": "52fe4263c3a36847f801aa03", "cast_id": 30, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 10}, {"name": "Clark Gregg", "character": "Supernerd", "id": 9048, "credit_id": "52fe4263c3a36847f801aa07", "cast_id": 31, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 11}, {"name": "Kevin Sussman", "character": "Supernerd", "id": 60633, "credit_id": "52fe4263c3a36847f801aa0b", "cast_id": 32, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 12}, {"name": "Tom Gallop", "character": "Supernerd", "id": 27030, "credit_id": "52fe4263c3a36847f801aa0f", "cast_id": 33, "profile_path": "/t799Vz0ATVN24NmXpvFOPkrJLU9.jpg", "order": 13}, {"name": "Eugene Osment", "character": "Supernerd", "id": 1004155, "credit_id": "52fe4263c3a36847f801aa13", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "April Grace", "character": "Female Colleague", "id": 10691, "credit_id": "52fe4263c3a36847f801aa17", "cast_id": 35, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 15}, {"name": "Matt Winston", "character": "Executive", "id": 35521, "credit_id": "52fe4263c3a36847f801aa1b", "cast_id": 36, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 16}, {"name": "Sabrina Grdevich", "character": "Sheila", "id": 142736, "credit_id": "52fe4263c3a36847f801aa1f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Theo Greenly", "character": "Todd", "id": 167195, "credit_id": "52fe4263c3a36847f801aa23", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Michael Mantell", "character": "Dr. Frazier at Cryogenic Institute", "id": 91030, "credit_id": "539974960e0a263e300018a7", "cast_id": 41, "profile_path": "/80CLXfrPC9BoqhjsV5k5rzm5XQL.jpg", "order": 19}, {"name": "Keith Campbell", "character": "Roadworker", "id": 15318, "credit_id": "53b951560e0a2676c7009c2d", "cast_id": 42, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 20}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801a96b", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.5, "runtime": 146}, "49797": {"poster_path": "/2Rs64a8Xs4j3mzBcJTo04vo5MnW.jpg", "production_countries": [{"iso_3166_1": "KP", "name": "North Korea"}], "revenue": 0, "overview": "Kyung-chul (Choi Min-sik) is a dangerous psychopath who kills for pleasure. He has committed infernal serial murders in diabolic ways that one cannot even imagine and his victims range from young women to even children. The police have chased him for a long time, but were unable to catch him. One day, Joo-yeon, daughter of a retired police chief becomes his prey and is found dead in a horrific state. Her fiance Soo-hyun (Lee Byung-hun), a top secret agent, decides to track down the murderer himself. He promises himself that he will do everything in his power to take bloody vengeance against the killer, even if it means that he must become a monster himself to get this monstrous and inhumane killer.", "video": false, "id": 49797, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I Saw the Devil", "tagline": "Abandon all compassion.", "vote_count": 113, "homepage": "http://www.isawthedevilmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1588170", "adult": false, "backdrop_path": "/hZ9jN4wdFT9PQQORX68kLJqrOrH.jpg", "production_companies": [{"name": "Softbank Ventures", "id": 10922}, {"name": "Showbox/Mediaplex", "id": 10923}, {"name": "Peppermint & Company", "id": 10924}, {"name": "Siz Entertainment", "id": 10925}], "release_date": "2010-08-12", "popularity": 0.331763552068025, "original_title": "\uc545\ub9c8\ub97c \ubcf4\uc558\ub2e4", "budget": 0, "cast": [{"name": "Lee Byung-hun", "character": "Kim Soo-hyeon", "id": 25002, "credit_id": "530f2bba92514173900008ef", "cast_id": 35, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 10}, {"name": "Choi Min-sik", "character": "Kyung-chul", "id": 64880, "credit_id": "530f2e0b925141733e00095c", "cast_id": 36, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 11}, {"name": "Jeon Kuk-Hwan", "character": "Squad chief Jang", "id": 20264, "credit_id": "53c0ef5c0e0a261579008649", "cast_id": 44, "profile_path": "/hIDrEv3wmmYF9zddva0MfxIzaSW.jpg", "order": 12}, {"name": "Cheon Ho-Jin", "character": "Section chief Oh", "id": 87090, "credit_id": "53c0ef7e0e0a261582008886", "cast_id": 45, "profile_path": "/u2In8XuyPOdA0lLvY7LIKY9Qjqc.jpg", "order": 13}, {"name": "Oh San-ha", "character": "Joo-yeon", "id": 1340711, "credit_id": "53c0ef980e0a26158f00837e", "cast_id": 46, "profile_path": "/ftSLVWgILvBYEoFKEniWHSoKG82.jpg", "order": 14}, {"name": "Kim Yoon-seo", "character": "Se-yeon", "id": 1340712, "credit_id": "53c0efb70e0a261576008a0a", "cast_id": 47, "profile_path": "/preioTKU0gJf9fML5UjCE68hP2Y.jpg", "order": 15}, {"name": "Nam Bo-ra", "character": "", "id": 561199, "credit_id": "53c75626c3a3686251002f7b", "cast_id": 48, "profile_path": "/y7gOTZG36zQq1FyWnjjFL9VmZLb.jpg", "order": 16}], "directors": [{"name": "Kim Jee-woon", "department": "Directing", "job": "Director", "credit_id": "530f308b92514173550008ad", "profile_path": "/tqZ0HprSHXrxGC4V7R4uA1BCLM4.jpg", "id": 543568}], "vote_average": 7.3, "runtime": 141}, "646": {"poster_path": "/4oihF4FCuBHUHqkrul9VwJ5j4I9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JM", "name": "Jamaica"}], "revenue": 59600000, "overview": "When Strangways, the British SIS Station Chief in Jamaica goes missing, MI6 send James Bond - Agent 007 to investigate. His investigation leads him to the mysterious Crab Key; the secret base of Dr No who he suspects is trying to sabotage the American space program using a radio beam. With the assistance of local fisherman Quarrel, who had been helping Strangways, Bond sneaks onto Crab Key where he meets the beautiful Honey Ryder. Can the three of them defeat an army of henchmen and a \"fire breathing dragon\" in order to stop Dr No, save the space program and get revenge for Strangways? Dr. No is the first film of legendary James Bond series starring Sean Connery in the role of Fleming's British super agent.", "video": false, "id": 646, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Dr. No", "tagline": "NOW meet the most extraordinary gentleman spy in all fiction!", "vote_count": 292, "homepage": "http://www.mgm.com/view/movie/566/Dr.-No/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0055928", "adult": false, "backdrop_path": "/bplDiT5JhaXf9S5arO8g5QsFtDi.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1962-10-05", "popularity": 1.85706453050015, "original_title": "Dr. No", "budget": 1100000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4263c3a36847f801aa9d", "cast_id": 12, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Ursula Andress", "character": "Honey Ryder", "id": 9871, "credit_id": "52fe4263c3a36847f801aaa1", "cast_id": 13, "profile_path": "/omY7AbTTKODYR730aHtB9UNaGM0.jpg", "order": 1}, {"name": "Joseph Wiseman", "character": "Dr. No", "id": 9872, "credit_id": "52fe4263c3a36847f801aaa5", "cast_id": 14, "profile_path": "/3BigmJ5RUpS2uGCZyYxNL7mnbfW.jpg", "order": 2}, {"name": "Jack Lord", "character": "Felix Leiter", "id": 9873, "credit_id": "52fe4263c3a36847f801aaa9", "cast_id": 15, "profile_path": "/b85Nm0YGKByPEiKuxHRi5ItrdAD.jpg", "order": 3}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4263c3a36847f801aaad", "cast_id": 16, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 4}, {"name": "Anthony Dawson", "character": "Professor Dent", "id": 7682, "credit_id": "52fe4263c3a36847f801aab1", "cast_id": 17, "profile_path": "/yzh26eyKJBtORjLlz8nyLQT7C1d.jpg", "order": 5}, {"name": "Zena Marshall", "character": "Miss Taro", "id": 9875, "credit_id": "52fe4263c3a36847f801aab5", "cast_id": 18, "profile_path": "/bRWYvcVasxg5B2lbP9MKcLfUmol.jpg", "order": 6}, {"name": "John Kitzmiller", "character": "Quarrel", "id": 9876, "credit_id": "52fe4263c3a36847f801aab9", "cast_id": 19, "profile_path": "/1CnMhVqNMAvCD8I7gXWDk9tV6dC.jpg", "order": 7}, {"name": "Eunice Gayson", "character": "Sylvia Trench", "id": 9877, "credit_id": "52fe4263c3a36847f801aabd", "cast_id": 20, "profile_path": "/vR2lR94QjJNK7fJq0lvarykBZ0I.jpg", "order": 8}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4263c3a36847f801aac1", "cast_id": 21, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 9}, {"name": "Peter Burton", "character": "Major Boothroyd", "id": 9879, "credit_id": "5400ff750e0a2658e9003176", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "Terence Young", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801aa5d", "profile_path": "/vXufUCM2ybRgYggqxoV5479a03Y.jpg", "id": 9855}], "vote_average": 6.4, "runtime": 110}, "647": {"poster_path": "/pOHBhcZMLlVKALG098EOaobdeVX.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Two years have passed since the final battle with Sephiroth. Though Midgar, city of mako, city of prosperity, has been reduced to ruins, its people slowly but steadily walk the road to reconstruction. However, a mysterious illness called Geostigma torments them. With no cure in sight, it brings death to the afflicted, one after another, robbing the people of their fledgling hope.", "video": false, "id": 647, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Final Fantasy VII: Advent Children", "tagline": "Is it for the children, for a memory, or for himself?", "vote_count": 98, "homepage": "http://na.square-enix.com/ff7acc/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/x6HZaopJw26YnjBZjo06sWmPEPM.jpg", "id": 140760, "name": "Final Fantasy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0385700", "adult": false, "backdrop_path": "/rEu14LqEdPkgmlA4K4AUAYk5tuQ.jpg", "production_companies": [{"name": "Square Enix", "id": 10038}], "release_date": "2005-09-14", "popularity": 0.6692428529926, "original_title": "Final Fantasy VII: Advent Children", "budget": 0, "cast": [{"name": "Takahiro Sakurai", "character": "Cloud Strife", "id": 9705, "credit_id": "52fe4264c3a36847f801ac61", "cast_id": 46, "profile_path": "/1e96Onq8R5EDweBIuLHjZ2Rhe7K.jpg", "order": 0}, {"name": "Toshiyuki Morikawa", "character": "Sephiroth", "id": 9706, "credit_id": "52fe4264c3a36847f801ac65", "cast_id": 47, "profile_path": "/aAmwmPXJBnwTnvWVDx74OdNGo8q.jpg", "order": 1}, {"name": "Ayumi Ito", "character": "Tifa Lockhart", "id": 9707, "credit_id": "52fe4264c3a36847f801ac69", "cast_id": 48, "profile_path": "/8zHQwoRH4TmujlbHYrXWt7KrzZD.jpg", "order": 2}, {"name": "Keiji Fujiwara", "character": "Reno", "id": 9708, "credit_id": "52fe4264c3a36847f801ac6d", "cast_id": 49, "profile_path": "/1xi0CRDIMYlOGDF8i88vWnY0HDe.jpg", "order": 3}, {"name": "Kyosuke Ikeda", "character": "Denzel", "id": 9709, "credit_id": "52fe4264c3a36847f801ac71", "cast_id": 50, "profile_path": "/ouuJIRX3yW5zVG1YUJ23opff8MO.jpg", "order": 4}, {"name": "Megumi Toyoguchi", "character": "Elena", "id": 9710, "credit_id": "52fe4264c3a36847f801ac75", "cast_id": 51, "profile_path": "/dYeAMWno2dcV07Lg5kHe4oiVVOT.jpg", "order": 5}, {"name": "Maaya Sakamoto", "character": "Aerith Gainsborough", "id": 9711, "credit_id": "52fe4264c3a36847f801ac79", "cast_id": 52, "profile_path": "/wEJDH3mzF4cLhUfNQKt8YfhpLjZ.jpg", "order": 6}, {"name": "Rina Mogami", "character": "Girl", "id": 9712, "credit_id": "52fe4264c3a36847f801ac7d", "cast_id": 53, "profile_path": "/c7xuQVnUfdtuDhEEEQEdLPx8YGR.jpg", "order": 7}, {"name": "Kazuyuki Yama", "character": "Cid Highwind", "id": 9713, "credit_id": "52fe4264c3a36847f801ac81", "cast_id": 54, "profile_path": null, "order": 8}, {"name": "Showtaro Morikubo", "character": "Kadaj", "id": 9714, "credit_id": "52fe4264c3a36847f801ac85", "cast_id": 55, "profile_path": "/x7OLK5qYD6qOfRL2S6WZHV8Iulj.jpg", "order": 9}, {"name": "Yumi Kakazu", "character": "Yuffie Kisaragi", "id": 9715, "credit_id": "52fe4264c3a36847f801ac89", "cast_id": 56, "profile_path": "/9CXM6VhES0LA6GdasISeDHZzszH.jpg", "order": 10}, {"name": "Kenji Nomura", "character": "Loz", "id": 9716, "credit_id": "52fe4264c3a36847f801ac8d", "cast_id": 57, "profile_path": "/pdANkxoZJxAREu8ldXX7C96q3Ou.jpg", "order": 11}, {"name": "Masachika Ichimura", "character": "Red XIII", "id": 9717, "credit_id": "52fe4264c3a36847f801ac91", "cast_id": 58, "profile_path": "/PewyrEczJmfsef4FB8zln50Hre.jpg", "order": 12}, {"name": "Taiten Kusunoki", "character": "Rude", "id": 9718, "credit_id": "52fe4264c3a36847f801ac95", "cast_id": 59, "profile_path": "/z7UJiXiTp7mek7n8NnP3sjQPfdR.jpg", "order": 13}, {"name": "T\u00f4ru \u00d4kawa", "character": "Rufus Shinra", "id": 9719, "credit_id": "52fe4264c3a36847f801ac99", "cast_id": 60, "profile_path": "/uHMclppYBmWxivA2Gkwr1bwYkKw.jpg", "order": 14}, {"name": "Hideo Ishikawa", "character": "Cait Sith", "id": 9720, "credit_id": "52fe4264c3a36847f801ac9d", "cast_id": 61, "profile_path": "/c5QcknPSLhVRTgMcg4ECESDKQt0.jpg", "order": 15}, {"name": "Junichi Suwabe", "character": "Tseng", "id": 9721, "credit_id": "52fe4264c3a36847f801aca1", "cast_id": 62, "profile_path": "/3cG4BeHM9gakUdOYO6WpZJAt1A2.jpg", "order": 16}, {"name": "Sh\u00f4go Suzuki", "character": "Vincent Valentine", "id": 9722, "credit_id": "52fe4264c3a36847f801aca5", "cast_id": 63, "profile_path": "/en8z5qzTB827Xsm1kz5OApidk9.jpg", "order": 17}, {"name": "Masahiro Kobayashi", "character": "Barret Wallace", "id": 9723, "credit_id": "52fe4264c3a36847f801aca9", "cast_id": 64, "profile_path": "/bp14ujBRpiiTFTNNbgg3ztoBA0f.jpg", "order": 18}, {"name": "Miyuu Tsuzuhara", "character": "Marlene Wallace", "id": 9724, "credit_id": "52fe4264c3a36847f801acad", "cast_id": 65, "profile_path": "/qMkYFQHrP6G5MlYvr9eiH36BjPV.jpg", "order": 19}, {"name": "Y\u016bji Kishi", "character": "Yazoo", "id": 9725, "credit_id": "52fe4264c3a36847f801acb1", "cast_id": 66, "profile_path": "/nF6xspgZgxy8RT8hrueN1zmy8Rc.jpg", "order": 20}, {"name": "Kenichi Suzumura", "character": "Zack", "id": 9726, "credit_id": "52fe4264c3a36847f801acb5", "cast_id": 67, "profile_path": "/9UJxKPzQqhRhjQ9mzzwlho51vG6.jpg", "order": 21}], "directors": [{"name": "Tetsuya Nomura", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801ab55", "profile_path": "/vAYJYfS6mij9YnE1LcAbNvQuKv4.jpg", "id": 9660}, {"name": "Takeshi Nozue", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801ab5b", "profile_path": "/5FDWOpVI7RMRibe7778o0JhVxq3.jpg", "id": 9661}], "vote_average": 6.6, "runtime": 101}, "8840": {"poster_path": "/nXdAIa8q1YSoA3wZaTwPxjQxNBb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115267375, "overview": "In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.", "video": false, "id": 8840, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "DragonHeart", "tagline": "You will believe.", "vote_count": 124, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hRucBWgzCc7iA9avUE2k5gc7dkj.jpg", "poster_path": "/gG6mq5NZzGoUdYKgLduNGjo6ft9.jpg", "id": 169452, "name": "Dragonheart Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116136", "adult": false, "backdrop_path": "/8uuxCakfVvf5WflFacBHfwU3d8J.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1996-05-31", "popularity": 0.495288684753766, "original_title": "DragonHeart", "budget": 57000000, "cast": [{"name": "Dennis Quaid", "character": "Bowen", "id": 6065, "credit_id": "52fe44bfc3a36847f80a7a3d", "cast_id": 9, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "David Thewlis", "character": "King Einon", "id": 11207, "credit_id": "52fe44bfc3a36847f80a7a41", "cast_id": 10, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 1}, {"name": "Pete Postlethwaite", "character": "Gilbert of Glockenspur", "id": 4935, "credit_id": "52fe44bfc3a36847f80a7a45", "cast_id": 11, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 2}, {"name": "Dina Meyer", "character": "Kara", "id": 2133, "credit_id": "52fe44bfc3a36847f80a7a49", "cast_id": 12, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 3}, {"name": "Julie Christie", "character": "Queen Aislinn", "id": 1666, "credit_id": "52fe44bfc3a36847f80a7a4d", "cast_id": 13, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 4}, {"name": "Sean Connery", "character": "Draco (voice)", "id": 738, "credit_id": "52fe44bfc3a36847f80a7a51", "cast_id": 14, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 5}, {"name": "John Gielgud", "character": "King Arthur (voice) (uncredited)", "id": 11857, "credit_id": "52fe44bfc3a36847f80a7a55", "cast_id": 15, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 6}, {"name": "Lee Oakes", "character": "Young Einon", "id": 59075, "credit_id": "52fe44bfc3a36847f80a7a59", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Brian Thompson", "character": "Brok", "id": 2719, "credit_id": "52fe44bfc3a36847f80a7a5d", "cast_id": 17, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 8}, {"name": "Jason Isaacs", "character": "Lord Felton", "id": 11355, "credit_id": "52fe44bfc3a36847f80a7a61", "cast_id": 18, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 9}, {"name": "Wolf Christian", "character": "Hewe", "id": 260536, "credit_id": "52fe44bfc3a36847f80a7a6b", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Terry O'Neill", "character": "Redbeard", "id": 82410, "credit_id": "52fe44bfc3a36847f80a7a6f", "cast_id": 21, "profile_path": "/gJazxnZsm4sDavnP7gedgO7rtpw.jpg", "order": 11}, {"name": "Eva Vejm\u011blkov\u00e1", "character": "Felton's Minx", "id": 544311, "credit_id": "52fe44bfc3a36847f80a7a73", "cast_id": 22, "profile_path": "/xn2l8R9ESN74fsEYsTRYjPuYTal.jpg", "order": 12}, {"name": "Milan Bah\u00fal", "character": "Swamp Village Chief", "id": 1074679, "credit_id": "52fe44bfc3a36847f80a7a77", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Peter Hric", "character": "King Freyne", "id": 1074680, "credit_id": "52fe44bfc3a36847f80a7a7b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Sandra Kovacicova", "character": "Young Kara", "id": 1074681, "credit_id": "52fe44bfc3a36847f80a7a7f", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Kyle Cohen", "character": "Boy in Field", "id": 1074682, "credit_id": "52fe44bfc3a36847f80a7a83", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Thom Baker", "character": "Aislinn's Chess Partner", "id": 1074683, "credit_id": "52fe44bfc3a36847f80a7a87", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe44bfc3a36847f80a7a0f", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 6.0, "runtime": 103}, "651": {"poster_path": "/eOslMOtaPXgQEgVJ93U3KOLogGD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81600000, "overview": "One of the world's most acclaimed comedies, MASH focuses on three Korean War Army surgeons brilliantly brought to life by Donald Sutherland, Tom Skerritt and Elliott Gould. Though highly skilled and deeply dedicated, they adopt a hilarious, lunatic lifestyle as an antidote to the tragedies of their Mobile Army Surgical Hospital, and in the process infuriate Army bureaucrats. Robert Duvall, Gary Burghoff and Sally Kellerman co-star as a sanctimonious Major, an other-worldly Corporal, and a self-righteous yet lusty nurse.", "video": false, "id": 651, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "MASH", "tagline": "M*A*S*H Gives A D*A*M*N.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066026", "adult": false, "backdrop_path": "/8u2L2sHHAQVJ4xksOMzuYvL4SPx.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}], "release_date": "1970-01-25", "popularity": 0.62474473574741, "original_title": "MASH", "budget": 3500000, "cast": [{"name": "Donald Sutherland", "character": "Captain Benjamin Franklin 'Hawkeye' Pierce", "id": 55636, "credit_id": "52fe4264c3a36847f801af75", "cast_id": 17, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 0}, {"name": "Elliott Gould", "character": "Captain John Francis Xavier 'Trapper John' McIntyre", "id": 827, "credit_id": "52fe4264c3a36847f801af79", "cast_id": 18, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 1}, {"name": "Tom Skerritt", "character": "Captain Augustus Bedford 'Duke' Forrest", "id": 4139, "credit_id": "52fe4264c3a36847f801af7d", "cast_id": 19, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 2}, {"name": "Sally Kellerman", "character": "Major Margaret 'Hot Lips' O'Houlihan", "id": 9805, "credit_id": "52fe4264c3a36847f801af81", "cast_id": 20, "profile_path": "/5MeWRlE2F8S6tGiPx3hZHdDGVml.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Major Franklin Archimedes 'Frank' Burns", "id": 3087, "credit_id": "52fe4264c3a36847f801af85", "cast_id": 21, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Roger Bowen", "character": "Lt. Col. Henry Barymore Adlai Blake", "id": 9806, "credit_id": "52fe4264c3a36847f801af89", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Rene Auberjonois", "character": "Father Mulcahy", "id": 9807, "credit_id": "52fe4264c3a36847f801af8d", "cast_id": 23, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 6}, {"name": "David Arkin", "character": "SSgt. Wade Douglas Vollmer/PA Announcer", "id": 9808, "credit_id": "52fe4264c3a36847f801af91", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Jo Ann Pflug", "character": "Lt. Maria 'Dish' Schneider", "id": 9809, "credit_id": "52fe4264c3a36847f801af95", "cast_id": 25, "profile_path": "/bPT3KVtukqHEHX09cvpchtD70jK.jpg", "order": 8}, {"name": "Gary Burghoff", "character": "Cpl. Walter 'Radar' O'Reilly", "id": 9810, "credit_id": "52fe4264c3a36847f801af99", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Fred Williamson", "character": "Capt. Oliver Harmon 'Spearchucker' Jones", "id": 9811, "credit_id": "52fe4264c3a36847f801af9d", "cast_id": 27, "profile_path": "/n6CAXv0dbKvCyBfMvppdUmeAwt2.jpg", "order": 10}, {"name": "Michael Murphy", "character": "Capt. Ezekiel Bradbury 'Me Lai' Marston IV", "id": 4776, "credit_id": "52fe4264c3a36847f801afa1", "cast_id": 28, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 11}], "directors": [{"name": "Robert Altman", "department": "Directing", "job": "Director", "credit_id": "52fe4264c3a36847f801af23", "profile_path": "/wM4ZFeMU4fuLVuwvGsbAzdlAil3.jpg", "id": 9789}], "vote_average": 7.1, "runtime": 116}, "652": {"poster_path": "/edMlij7nw2NMla32xskDnzMCFBM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MT", "name": "Malta"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 497409852, "overview": "In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnom to help him get her back. Agamemnon sees this as an opportunity for power. So they set off with 1,000 ships holding 50,000 Greeks to Troy. With the help of Achilles, the Greeks are able to fight the never before defeated Trojans.", "video": false, "id": 652, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Troy", "tagline": "For passion.", "vote_count": 789, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0332452", "adult": false, "backdrop_path": "/lIyNUZbIeEwWpaWXAO5gnciB8Dq.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Radiant Productions", "id": 18990}, {"name": "Helena Productions", "id": 19107}, {"name": "Latina Pictures", "id": 19108}, {"name": "Plan B Entertainment", "id": 81}, {"name": "Nimar Studios", "id": 7636}], "release_date": "2004-05-13", "popularity": 1.70153885902546, "original_title": "Troy", "budget": 175000000, "cast": [{"name": "Brad Pitt", "character": "Achilles", "id": 287, "credit_id": "52fe4264c3a36847f801b083", "cast_id": 43, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Paris", "id": 114, "credit_id": "52fe4264c3a36847f801b087", "cast_id": 44, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Eric Bana", "character": "Hector", "id": 8783, "credit_id": "52fe4264c3a36847f801b08b", "cast_id": 45, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 2}, {"name": "Brian Cox", "character": "King Agamemnon", "id": 1248, "credit_id": "52fe4264c3a36847f801b08f", "cast_id": 46, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Sean Bean", "character": "Odysseus", "id": 48, "credit_id": "52fe4264c3a36847f801b093", "cast_id": 47, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "Menelaos", "id": 2039, "credit_id": "52fe4264c3a36847f801b097", "cast_id": 48, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "Diane Kruger", "character": "Helena", "id": 9824, "credit_id": "52fe4264c3a36847f801b09b", "cast_id": 49, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 6}, {"name": "Peter O'Toole", "character": "Priam", "id": 11390, "credit_id": "52fe4265c3a36847f801b09f", "cast_id": 50, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 7}, {"name": "Rose Byrne", "character": "Briseis", "id": 9827, "credit_id": "52fe4265c3a36847f801b0a3", "cast_id": 51, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 8}, {"name": "Saffron Burrows", "character": "Andromache", "id": 9825, "credit_id": "52fe4265c3a36847f801b0a7", "cast_id": 52, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 9}, {"name": "Garrett Hedlund", "character": "Patroclos", "id": 9828, "credit_id": "52fe4265c3a36847f801b0ab", "cast_id": 53, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 10}, {"name": "Vincent Regan", "character": "Eudorus", "id": 9831, "credit_id": "52fe4265c3a36847f801b0af", "cast_id": 54, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 11}, {"name": "Julie Christie", "character": "Thetis", "id": 1666, "credit_id": "52fe4265c3a36847f801b0b3", "cast_id": 55, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 12}, {"name": "John Shrapnel", "character": "Nestor", "id": 940, "credit_id": "52fe4265c3a36847f801b0b7", "cast_id": 56, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 13}, {"name": "Tyler Mane", "character": "Ajax", "id": 9832, "credit_id": "52fe4265c3a36847f801b0bb", "cast_id": 57, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 14}, {"name": "Nathan Jones", "character": "Boagrius", "id": 24898, "credit_id": "54ca547cc3a36879df00de19", "cast_id": 62, "profile_path": "/8JGCYgqGbFYXsp0wLbwSCEW0BUB.jpg", "order": 15}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe4264c3a36847f801affb", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 6.7, "runtime": 163}, "653": {"poster_path": "/uI3XYmCmQLC89UTghL2IZo3BJ09.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Vampire Count Orlok expresses interest in a new residence and real estate agent Hutter's wife. Silent classic based on the story \"Dracula.\"", "video": false, "id": 653, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Nosferatu", "tagline": "A symphony of horror", "vote_count": 59, "homepage": "http://www.nosferatumovie.com/cast_crew.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0013442", "adult": false, "backdrop_path": "/awK6eXK5vH47qyuDiXLkF5MEwrn.jpg", "production_companies": [{"name": "Jofa Atelier", "id": 1959}, {"name": "Prana-Film GmbH", "id": 1960}], "release_date": "1922-03-15", "popularity": 0.291406546354675, "original_title": "Nosferatu", "budget": 0, "cast": [{"name": "Max Schreck", "character": "Graf Orlok \"Nosferatu\"", "id": 9839, "credit_id": "52fe4265c3a36847f801b133", "cast_id": 11, "profile_path": "/3Ku1gw3cgdVJOc8d2wRxCEyvjyS.jpg", "order": 0}, {"name": "Gustav von Wangenheim", "character": "Hutter", "id": 9840, "credit_id": "52fe4265c3a36847f801b137", "cast_id": 12, "profile_path": "/vqCOzdRxXiMiMrlFib4QfD1rBS2.jpg", "order": 1}, {"name": "Greta Schr\u00f6der", "character": "Ellen Hutter", "id": 9841, "credit_id": "52fe4265c3a36847f801b13b", "cast_id": 13, "profile_path": null, "order": 2}, {"name": "Alexander Granach", "character": "Knock", "id": 9842, "credit_id": "52fe4265c3a36847f801b13f", "cast_id": 14, "profile_path": null, "order": 3}, {"name": "Georg H. Schnell", "character": "Westenra", "id": 9843, "credit_id": "52fe4265c3a36847f801b143", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Ruth Landshoff", "character": "Lucy Westenra", "id": 9844, "credit_id": "52fe4265c3a36847f801b147", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "John Gottowt", "character": "Professor Bulwer", "id": 9845, "credit_id": "52fe4265c3a36847f801b14b", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Gustav Botz", "character": "Professor Sievers, der Arzt", "id": 9846, "credit_id": "52fe4265c3a36847f801b14f", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Max Nemetz", "character": "Kapit\u00e4n der Demeter", "id": 9847, "credit_id": "52fe4265c3a36847f801b153", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Wolfgang Heinz", "character": "Matrose 1", "id": 9848, "credit_id": "52fe4265c3a36847f801b157", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Albert Venohr", "character": "Matrose 2", "id": 9849, "credit_id": "52fe4265c3a36847f801b15b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Guido Herzfeld", "character": "Wirt", "id": 46735, "credit_id": "52fe4265c3a36847f801b15f", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Hardy von Francois", "character": "Arzt im Hospital", "id": 46738, "credit_id": "52fe4265c3a36847f801b163", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Karl Etlinger", "character": "Matrose", "id": 46736, "credit_id": "52fe4265c3a36847f801b167", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Heinrich Witte", "character": "W\u00e4rter im Irrenhaus", "id": 46737, "credit_id": "52fe4265c3a36847f801b16b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Eric van Viele", "character": "Seemann", "id": 46739, "credit_id": "52fe4265c3a36847f801b16f", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Fanny Schreck", "character": "Krankenschwester im Hospital", "id": 46740, "credit_id": "52fe4265c3a36847f801b173", "cast_id": 27, "profile_path": null, "order": 16}], "directors": [{"name": "F.W. Murnau", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b0f9", "profile_path": "/1b1z38x56Hns01JDVA7DVw5ReGq.jpg", "id": 9076}], "vote_average": 7.1, "runtime": 82}, "654": {"poster_path": "/yUInNNpBUBJmn5TgUehCEOGmZDg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9600000, "overview": "Terry Malloy dreams about being a prize fighter, while tending his pigeons and running errands at the docks for Johnny Friendly, the corrupt boss of the dockers union. Terry witnesses a murder by two of Johnny's thugs, and later meets the dead man's sister and feels responsible for his death. She introduces him to Father Barry, who tries to force him to provide information for the courts that will smash the dock racketeers.", "video": false, "id": 654, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "On the Waterfront", "tagline": "The Man Lived by the Jungle Law of the Docks!", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0047296", "adult": false, "backdrop_path": "/zXp2ydvhO9qGzpIsb1CWeKnn5yg.jpg", "production_companies": [{"name": "Horizon Pictures", "id": 388}, {"name": "Columbia Pictures", "id": 5}], "release_date": "1954-06-22", "popularity": 0.805783964468061, "original_title": "On the Waterfront", "budget": 910000, "cast": [{"name": "Marlon Brando", "character": "Terry Malloy", "id": 3084, "credit_id": "52fe4265c3a36847f801b1df", "cast_id": 10, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 0}, {"name": "Karl Malden", "character": "Father Barry", "id": 9857, "credit_id": "52fe4265c3a36847f801b1e7", "cast_id": 12, "profile_path": "/ekqh6qVUFbYkIPFu2ZyTEcHi5gI.jpg", "order": 1}, {"name": "Lee J. Cobb", "character": "Johnny Friendly", "id": 5248, "credit_id": "52fe4265c3a36847f801b1e3", "cast_id": 11, "profile_path": "/535dOk8eUI97esLMunIXdG58jUu.jpg", "order": 2}, {"name": "Rod Steiger", "character": "Charlie Malloy", "id": 522, "credit_id": "52fe4265c3a36847f801b1ef", "cast_id": 14, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 3}, {"name": "Pat Henning", "character": "Timothy Dugan", "id": 9862, "credit_id": "52fe4265c3a36847f801b1f3", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Leif Erickson", "character": "Glover", "id": 9865, "credit_id": "52fe4265c3a36847f801b1f7", "cast_id": 16, "profile_path": "/e6jUlzMj1S0lf3M6fbDCGcq10M3.jpg", "order": 5}, {"name": "James Westerfield", "character": "Big Mac", "id": 9866, "credit_id": "52fe4265c3a36847f801b1fb", "cast_id": 17, "profile_path": "/s8Ian9N1Y5VVvB8C8OchOoQzRwk.jpg", "order": 6}, {"name": "Tony Galento", "character": "Truck", "id": 589670, "credit_id": "52fe4265c3a36847f801b211", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Tami Mauriello", "character": "Tillio", "id": 977544, "credit_id": "52fe4265c3a36847f801b215", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "John F. Hamilton", "character": "'Pop' Doyle", "id": 89837, "credit_id": "52fe4265c3a36847f801b219", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "John Heldabrand", "character": "Mott", "id": 88881, "credit_id": "52fe4265c3a36847f801b21d", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Rudy Bond", "character": "Moose", "id": 3143, "credit_id": "52fe4265c3a36847f801b221", "cast_id": 25, "profile_path": "/wNpO0orqR8rWz7tf11iKN0UhvGg.jpg", "order": 11}, {"name": "Don Blackman", "character": "Luke", "id": 976235, "credit_id": "52fe4265c3a36847f801b225", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Arthur Keegan", "character": "Jimmy", "id": 977392, "credit_id": "52fe4265c3a36847f801b229", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Abe Simon", "character": "Barney", "id": 1125637, "credit_id": "52fe4265c3a36847f801b22d", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Eva Marie Saint", "character": "Edie Doyle", "id": 2639, "credit_id": "52fe4265c3a36847f801b1eb", "cast_id": 13, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 15}, {"name": "Martin Balsam", "character": "Gillette (uncredited)", "id": 1936, "credit_id": "53124ad492514110130029b9", "cast_id": 29, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 16}, {"name": "Michael V. Gazzo", "character": "Bit Part (uncredited)", "id": 3172, "credit_id": "53124af4925141102a002936", "cast_id": 30, "profile_path": "/z50tLgbtVvIEI05uHO6udwOgwe3.jpg", "order": 17}, {"name": "Fred Gwynne", "character": "Slim (uncredited)", "id": 56266, "credit_id": "53124b0b9251410ffc002911", "cast_id": 31, "profile_path": "/xwDhOItVPzmBDfPqNMPHSSdXOMj.jpg", "order": 18}, {"name": "Pat Hingle", "character": "Jocko (uncredited)", "id": 3798, "credit_id": "53124b849251410ff1002895", "cast_id": 32, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 19}, {"name": "Scottie MacGregor", "character": "Mother of a Longshoreman (uncredited)", "id": 1297793, "credit_id": "53124b9e9251411042002a0c", "cast_id": 33, "profile_path": "/2aZYRyYqXktxD26erNUkza1pQrd.jpg", "order": 20}, {"name": "Nehemiah Persoff", "character": "Cab Driver (uncredited)", "id": 3160, "credit_id": "53124bbc9251411008002a50", "cast_id": 34, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 21}], "directors": [{"name": "Elia Kazan", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b1b1", "profile_path": "/aS3fMj5NfsKsTZLZmW84VHfX4YS.jpg", "id": 2746}], "vote_average": 8.2, "runtime": 108}, "655": {"poster_path": "/vbtDskCLmlDKtzpqdiJYszBhKY2.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2181987, "overview": "A man wanders out of the desert not knowing who he is. His brother finds him, and helps to pull his memory back of the life he led before he walked out on his family and disappeared four years earlier.", "video": false, "id": 655, "genres": [{"id": 18, "name": "Drama"}], "title": "Paris, Texas", "tagline": "A place for dreams. A place for heartbreak. A place to pick up the pieces.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087884", "adult": false, "backdrop_path": "/rgLcOj2vDV9DItDcgYPUuJaVT7F.jpg", "production_companies": [{"name": "Argos Films", "id": 6116}, {"name": "Road Movies Filmproduktion", "id": 8366}, {"name": "Westdeutscher Rundfunk (WDR)", "id": 7025}, {"name": "Channel Four Films", "id": 181}, {"name": "Pro-ject Filmproduktion", "id": 1448}], "release_date": "1984-11-02", "popularity": 0.986490130985515, "original_title": "Paris, Texas", "budget": 1746964, "cast": [{"name": "Harry Dean Stanton", "character": "Travis", "id": 5048, "credit_id": "52fe4265c3a36847f801b2af", "cast_id": 16, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 0}, {"name": "Nastassja Kinski", "character": "Jane", "id": 2630, "credit_id": "52fe4265c3a36847f801b2b3", "cast_id": 17, "profile_path": "/mBVK2zqBSimP1NQN6BvBubZotxg.jpg", "order": 1}, {"name": "Dean Stockwell", "character": "Walt", "id": 923, "credit_id": "52fe4265c3a36847f801b2b7", "cast_id": 18, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 2}, {"name": "Hunter Carson", "character": "Hunter", "id": 9892, "credit_id": "52fe4265c3a36847f801b2bb", "cast_id": 19, "profile_path": null, "order": 3}, {"name": "Aurore Cl\u00e9ment", "character": "Anne", "id": 9893, "credit_id": "52fe4265c3a36847f801b2bf", "cast_id": 20, "profile_path": "/i6p9msKzKG1P9I2QcCk3h3vuO5F.jpg", "order": 4}, {"name": "Bernhard Wicki", "character": "Doctor Ulmer", "id": 9894, "credit_id": "52fe4265c3a36847f801b2c3", "cast_id": 21, "profile_path": "/kWBdiWLhjdFDMV953W5xhFyHTxv.jpg", "order": 5}, {"name": "John Lurie", "character": "Slater", "id": 6394, "credit_id": "52fe4265c3a36847f801b2d9", "cast_id": 25, "profile_path": "/izPEjdTrWUy3gPEdJ8f2OOnBW3f.jpg", "order": 6}], "directors": [{"name": "Wim Wenders", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b263", "profile_path": "/l6cYWEsCx3HTH8eo6fv9mCCn5QX.jpg", "id": 2303}], "vote_average": 7.4, "runtime": 147}, "8848": {"poster_path": "/8GfGrGYtIHsqMfVpPgX1PDWCESc.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30028592, "overview": "Martine offers Terry a lead on a foolproof bank hit on London's Baker Street. She targets a roomful of safe deposit boxes worth millions in cash and jewelry. But Terry and his crew don't realize the boxes also contain a treasure trove of dirty secrets - secrets that will thrust them into a deadly web of corruption and illicit scandal.", "video": false, "id": 8848, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Bank Job", "tagline": "The true story of a heist gone wrong... in all the right ways.", "vote_count": 230, "homepage": "http://thebankjobmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0200465", "adult": false, "backdrop_path": "/h3aTGDGZly8ee9EHxIjIK7UaKf2.jpg", "production_companies": [{"name": "Omnilab Media", "id": 2729}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Relativity Media", "id": 7295}, {"name": "Skyline (Baker St)", "id": 37774}, {"name": "Atlas Entertainment", "id": 507}], "release_date": "2008-02-28", "popularity": 0.773324317754226, "original_title": "The Bank Job", "budget": 20000000, "cast": [{"name": "Jason Statham", "character": "Terry Leather", "id": 976, "credit_id": "52fe44c0c3a36847f80a7f49", "cast_id": 17, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Saffron Burrows", "character": "Martine Love", "id": 9825, "credit_id": "52fe44c0c3a36847f80a7f4d", "cast_id": 18, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 1}, {"name": "Stephen Campbell Moore", "character": "Kevin Swain", "id": 55467, "credit_id": "52fe44c0c3a36847f80a7f51", "cast_id": 19, "profile_path": "/9LPG6fCe2ct82Io5zI8iyvJ8NsP.jpg", "order": 2}, {"name": "Daniel Mays", "character": "Dave Shilling", "id": 1670, "credit_id": "52fe44c0c3a36847f80a7f55", "cast_id": 20, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 3}, {"name": "James Faulkner", "character": "Guy Singer", "id": 9140, "credit_id": "52fe44c0c3a36847f80a7f59", "cast_id": 21, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 4}, {"name": "Alki David", "character": "Bambas", "id": 56097, "credit_id": "52fe44c0c3a36847f80a7f5d", "cast_id": 22, "profile_path": "/tYa8Lr0qtUEiqOrTF3sg3ghcabt.jpg", "order": 5}, {"name": "Michael Jibson", "character": "Eddie Burton", "id": 56098, "credit_id": "52fe44c0c3a36847f80a7f61", "cast_id": 23, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 6}, {"name": "Richard Lintern", "character": "Tim Everett", "id": 2968, "credit_id": "52fe44c0c3a36847f80a7f65", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Don Gallagher", "character": "Gerald Pyke", "id": 56099, "credit_id": "52fe44c0c3a36847f80a7f69", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "David Suchet", "character": "Lew Vogel", "id": 20277, "credit_id": "52fe44c0c3a36847f80a7f6d", "cast_id": 26, "profile_path": "/z0MuDGLfLLLKhwmbXCErxedHtQ9.jpg", "order": 9}, {"name": "Alistair Petrie", "character": "Phillip Lisle", "id": 56100, "credit_id": "52fe44c0c3a36847f80a7f71", "cast_id": 27, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 10}, {"name": "Gerard Horan", "character": "Roy Given", "id": 56101, "credit_id": "52fe44c0c3a36847f80a7f75", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Peter de Jersey", "character": "Michael X", "id": 56102, "credit_id": "52fe44c0c3a36847f80a7f79", "cast_id": 29, "profile_path": "/srE760UaLCIwSj5IpPxjR7rNLux.jpg", "order": 12}, {"name": "Georgia Taylor", "character": "Ingrid", "id": 55473, "credit_id": "52fe44c0c3a36847f80a7f7d", "cast_id": 30, "profile_path": "/jRHDCLH9v3OaU3nFE4loRJoh5J6.jpg", "order": 13}, {"name": "Hattie Morahan", "character": "Gale Benson", "id": 56103, "credit_id": "52fe44c0c3a36847f80a7f81", "cast_id": 31, "profile_path": "/2GBNGjw5wK2bRBM6TJ6gustXrEE.jpg", "order": 14}, {"name": "Keeley Hawes", "character": "Wendy Leather", "id": 22809, "credit_id": "52fe44c0c3a36847f80a7f85", "cast_id": 32, "profile_path": "/l6gt960OMUsX72Ytv2AkogldjNn.jpg", "order": 15}, {"name": "Peter Bowles", "character": "Miles Urquhart", "id": 15202, "credit_id": "52fe44c0c3a36847f80a7f89", "cast_id": 33, "profile_path": "/hNwYfBMeGG1bYnuWOODogRnw7Ax.jpg", "order": 16}, {"name": "Craig Fairbrass", "character": "Nick Barton", "id": 51799, "credit_id": "52fe44c0c3a36847f80a7f8d", "cast_id": 34, "profile_path": "/1IZntbLumM3Ew5LbDaz7tJiISZw.jpg", "order": 17}, {"name": "Colin Salmon", "character": "Hakim Jamal", "id": 5414, "credit_id": "52fe44c0c3a36847f80a7f91", "cast_id": 35, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 18}, {"name": "Sharon Maughan", "character": "Sonia Bern", "id": 56104, "credit_id": "52fe44c0c3a36847f80a7f95", "cast_id": 36, "profile_path": "/9IAbrAhEe4GumEJlanFM6bb05OM.jpg", "order": 19}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe44c0c3a36847f80a7ef1", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 6.3, "runtime": 112}, "657": {"poster_path": "/xLj655bmXKMiFbUCQnKhz8xwezV.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 78898765, "overview": "James Bond is back and on the loose in exotic Istanbul looking for a super-secret coding machine. He's involved with a beautiful Russian spy and has the SPECTRE organization after him, including villainess Rosa Klebb - she of the killer shoe. Lots of exciting escapes but not an over reliance on the gadgetry of the later films. The second James Bond feature, thought by many to be the best.", "video": false, "id": 657, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "From Russia With Love", "tagline": "The world's masters of murder pull out all the stops to destroy Agent 007!", "vote_count": 257, "homepage": "http://www.mgm.com/view/movie/717/From-Russia-With-Love/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt0057076", "adult": false, "backdrop_path": "/f3wkOANYRwmzt8ATIl2hbRvF3hw.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1963-10-11", "popularity": 1.59910862176914, "original_title": "From Russia With Love", "budget": 2500000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4265c3a36847f801b397", "cast_id": 27, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Daniela Bianchi", "character": "Tatiana Romanova", "id": 9896, "credit_id": "52fe4265c3a36847f801b317", "cast_id": 1, "profile_path": "/d1CunVrPWvNQ0SJGkRfjGpCdV0g.jpg", "order": 1}, {"name": "Lotte Lenya", "character": "Rosa Klebb", "id": 9898, "credit_id": "52fe4265c3a36847f801b31b", "cast_id": 2, "profile_path": "/5qkH7EwNIIxYHeE1TfZfYIrRyVi.jpg", "order": 2}, {"name": "Robert Shaw", "character": "Donovan 'Red' Grant", "id": 8606, "credit_id": "52fe4265c3a36847f801b31f", "cast_id": 3, "profile_path": "/mLlgNTWRo3zGFzg4WHP9uzOH9Xn.jpg", "order": 3}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4265c3a36847f801b323", "cast_id": 4, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 4}, {"name": "Eunice Gayson", "character": "Sylvia Trench", "id": 9877, "credit_id": "52fe4265c3a36847f801b327", "cast_id": 5, "profile_path": "/vR2lR94QjJNK7fJq0lvarykBZ0I.jpg", "order": 5}, {"name": "Walter Gotell", "character": "Morzeny", "id": 6610, "credit_id": "52fe4265c3a36847f801b32b", "cast_id": 6, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 6}, {"name": "Francis de Wolff", "character": "Vavra", "id": 9899, "credit_id": "52fe4265c3a36847f801b32f", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Nadja Regin", "character": "Kerim's Girl", "id": 9901, "credit_id": "52fe4265c3a36847f801b333", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4265c3a36847f801b337", "cast_id": 10, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 9}, {"name": "Aliza Gur", "character": "Vida", "id": 9902, "credit_id": "52fe4265c3a36847f801b33b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4265c3a36847f801b393", "cast_id": 26, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Pedro Armend\u00e1riz", "character": "Ali Kerim Bey", "id": 96973, "credit_id": "52fe4265c3a36847f801b39b", "cast_id": 28, "profile_path": "/3Qgxk7T5oVthZNhrJdIworkxdw.jpg", "order": 12}, {"name": "Vladek Sheybal", "character": "Kronsteen", "id": 39036, "credit_id": "52fe4265c3a36847f801b39f", "cast_id": 29, "profile_path": "/ccutGFAuflgNyPXyXd6HE1pwZk5.jpg", "order": 13}, {"name": "George Pastell", "character": "Train Conductor", "id": 9900, "credit_id": "5404b54a0e0a2658d800a6d6", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Martine Beswick", "character": "Zora", "id": 9925, "credit_id": "5404b57a0e0a260c850030ef", "cast_id": 31, "profile_path": "/z5tUam9oJPDMkrgnPlVdN7UijUs.jpg", "order": 15}, {"name": "Jan Williams", "character": "Masseuse", "id": 41495, "credit_id": "5404b5ba0e0a26137900343d", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Peter Madden", "character": "McAdams", "id": 199919, "credit_id": "5404b5d00e0a2658f100a969", "cast_id": 33, "profile_path": null, "order": 17}], "directors": [{"name": "Terence Young", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b341", "profile_path": "/vXufUCM2ybRgYggqxoV5479a03Y.jpg", "id": 9855}], "vote_average": 6.6, "runtime": 115}, "658": {"poster_path": "/iEfMJFMAPIhwXvRsNhXc6E1CrU1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124900000, "overview": "Bond is in Miami on holiday when M tells him to observe Auric Goldfinger. Bond steals Goldfinger's girlfriend, Jill Masterson, but after being knocked out, he awakes to find her dead and covered in gold paint. Upon returning to London, Bond is told to further investigate Goldfinger who is believed to be smuggling gold out of Britain, but warned he will be replaced if he turns the mission into a personal vendetta. After failing to befriend Goldfinger, Bond is caught spying and taken to America as a captive. Bond learns of Goldfinger's plan, codenamed Operation Grand Slam, which involves attacking Fort Knox to increase his gold riches. Can 007 find a way to stop Goldfinger despite being held prisoner? This is the third film from the legendary James Bond series starring Sean Connery as the British super agent.", "video": false, "id": 658, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Goldfinger", "tagline": "Everything he touches turns into excitement!", "vote_count": 280, "homepage": "http://www.mgm.com/view/movie/760/Goldfinger/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0058150", "adult": false, "backdrop_path": "/sMUaAOTOs4rvK81GL52aqYGiO6b.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1964-09-17", "popularity": 1.47810803955428, "original_title": "Goldfinger", "budget": 3500000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4265c3a36847f801b3d9", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Honor Blackman", "character": "Pussy Galore", "id": 9907, "credit_id": "52fe4265c3a36847f801b3dd", "cast_id": 2, "profile_path": "/5LCImkVdJtOtahLOEH85oqmpM8R.jpg", "order": 1}, {"name": "Gert Fr\u00f6be", "character": "Auric Goldfinger", "id": 9908, "credit_id": "52fe4265c3a36847f801b3e1", "cast_id": 3, "profile_path": "/7sqA8qKg3N988PODnrhByiYOsEE.jpg", "order": 2}, {"name": "Shirley Eaton", "character": "Jill Masterson", "id": 9909, "credit_id": "52fe4265c3a36847f801b3e5", "cast_id": 4, "profile_path": "/spwHh09U8zg6I3Zzgj9Mc6SoTQs.jpg", "order": 3}, {"name": "Tania Mallet", "character": "Tilly Masterson", "id": 9910, "credit_id": "52fe4265c3a36847f801b3e9", "cast_id": 5, "profile_path": "/blxAnQg64T8dlGXraj0SN1lBX8t.jpg", "order": 4}, {"name": "Harold Sakata", "character": "Oddjob", "id": 9911, "credit_id": "52fe4265c3a36847f801b3ed", "cast_id": 6, "profile_path": "/fS90PpxE4ihCjpz7T9bgZkcllNH.jpg", "order": 5}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4265c3a36847f801b3f1", "cast_id": 7, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 6}, {"name": "Martin Benson", "character": "Martin Solo", "id": 9912, "credit_id": "52fe4265c3a36847f801b3f5", "cast_id": 8, "profile_path": "/x4AfPPRujgL6kfH8ObfefC7i9FY.jpg", "order": 7}, {"name": "Cec Linder", "character": "Felix Leiter", "id": 9913, "credit_id": "52fe4265c3a36847f801b3f9", "cast_id": 9, "profile_path": "/dXhMNdMow6iF0dF4vCHGDpbO9Di.jpg", "order": 8}, {"name": "Austin Willis", "character": "Simmons", "id": 9914, "credit_id": "52fe4265c3a36847f801b3fd", "cast_id": 10, "profile_path": "/iS3m6X3rfbdG1ZETyGdmIu6DvOx.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4265c3a36847f801b401", "cast_id": 11, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4265c3a36847f801b405", "cast_id": 12, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Burt Kwouk", "character": "Mr. Ling", "id": 21944, "credit_id": "52fe4265c3a36847f801b457", "cast_id": 26, "profile_path": "/7s1Sul5L6NU2TEfgLarBqrde65v.jpg", "order": 12}, {"name": "Nadja Regin", "character": "Bonita", "id": 9901, "credit_id": "54062e330e0a2658d800d56b", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Margaret Nolan", "character": "Dink", "id": 95129, "credit_id": "54062e610e0a264b0900291c", "cast_id": 28, "profile_path": "/9hSOhOKBPIJniI7XBtcs6IMv4Lo.jpg", "order": 14}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b40b", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 6.8, "runtime": 110}, "74387": {"poster_path": "/84mA0tnArvMdr5alUFVgfOypk7i.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4168144, "overview": "Doug Glatt, a slacker who discovers he has a talent for brawling is approached by a minor league hockey coach and invited to join the team as the \"muscle.\" Despite the fact that Glatt can't skate his best friend, Pat, convinces him to give it a shot, and Glatt becomes a hero to the team and their fans, until the league's reigning goon becomes threatened by Glatt's success and decides to even the score.", "video": false, "id": 74387, "genres": [{"id": 35, "name": "Comedy"}], "title": "Goon", "tagline": "Meet Doug, The Nicest Guy You'll Ever Fight.", "vote_count": 93, "homepage": "http://www.goonfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1456635", "adult": false, "backdrop_path": "/z6K8ClNAH9V7P9a005KTeoBEvg2.jpg", "production_companies": [{"name": "Caramel Films", "id": 6623}, {"name": "Don Carmody Productions", "id": 4253}], "release_date": "2011-09-10", "popularity": 0.313957222772292, "original_title": "Goon", "budget": 0, "cast": [{"name": "Seann William Scott", "character": "Doug Glatt", "id": 57599, "credit_id": "52fe48c8c3a368484e10aba1", "cast_id": 3, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 0}, {"name": "Jay Baruchel", "character": "Pat", "id": 449, "credit_id": "52fe48c8c3a368484e10ab9d", "cast_id": 2, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 1}, {"name": "Alison Pill", "character": "Eva", "id": 17486, "credit_id": "52fe48c8c3a368484e10aba9", "cast_id": 5, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Ross Rhea", "id": 23626, "credit_id": "52fe48c8c3a368484e10aba5", "cast_id": 4, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "Eugene Levy", "character": "Dr. Glatt", "id": 26510, "credit_id": "52fe48c8c3a368484e10abad", "cast_id": 6, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 4}, {"name": "Marc-Andr\u00e9 Grondin", "character": "Xavier Laflamme", "id": 71507, "credit_id": "52fe48c8c3a368484e10abb1", "cast_id": 7, "profile_path": "/birKqGsc5QPr8dVDfb0x5RUOi8s.jpg", "order": 5}, {"name": "Kim Coates", "character": "Ronnie Hortense", "id": 8335, "credit_id": "52fe48c8c3a368484e10abb5", "cast_id": 8, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 6}, {"name": "Nicholas Campbell", "character": "Rollie Hortense", "id": 14902, "credit_id": "52fe48c8c3a368484e10abb9", "cast_id": 9, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 7}, {"name": "Richard Clarkin", "character": "Gord Ogilvey", "id": 201074, "credit_id": "52fe48c8c3a368484e10abbd", "cast_id": 10, "profile_path": "/2qXRuSiHPHy8jU2UN3Nhh3ADISR.jpg", "order": 8}], "directors": [{"name": "Michael Dowse", "department": "Directing", "job": "Director", "credit_id": "52fe48c8c3a368484e10ab99", "profile_path": null, "id": 71280}], "vote_average": 6.0, "runtime": 92}, "660": {"poster_path": "/8SeeTUCs5ur4EqNg8q7BBlv4d28.jpg", "production_countries": [{"iso_3166_1": "BS", "name": "Bahamas"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141195658, "overview": "A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.", "video": false, "id": 660, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Thunderball", "tagline": "Look up! Look down! Look out!", "vote_count": 162, "homepage": "http://www.mgm.com/view/movie/2009/Thunderball/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0059800", "adult": false, "backdrop_path": "/qd0jrqxFLCKkNruPuJ7zXuQRpKG.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1965-12-28", "popularity": 0.9811175433948, "original_title": "Thunderball", "budget": 11000000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4265c3a36847f801b551", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Claudine Auger", "character": "Dominique 'Domino' Derval", "id": 9919, "credit_id": "52fe4265c3a36847f801b555", "cast_id": 2, "profile_path": "/lFw5lRx5oY5CKOJkzhQe9EPDy3C.jpg", "order": 1}, {"name": "Adolfo Celi", "character": "Emilio Largo", "id": 9920, "credit_id": "52fe4265c3a36847f801b559", "cast_id": 3, "profile_path": "/eAGVt87PlhJHQ0b0d7L6nRCjdqe.jpg", "order": 2}, {"name": "Luciana Paluzzi", "character": "Fiona Volpe", "id": 9921, "credit_id": "52fe4265c3a36847f801b55d", "cast_id": 4, "profile_path": "/wm2kQjIeg0wAfE4SYA9LqUu3fwA.jpg", "order": 3}, {"name": "Rik Van Nutter", "character": "Felix Leiter", "id": 9922, "credit_id": "52fe4265c3a36847f801b561", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Guy Doleman", "character": "Count Lippe", "id": 9923, "credit_id": "52fe4265c3a36847f801b565", "cast_id": 6, "profile_path": "/iHIzzV6Bdk8RRB1VCROVRpFJRqZ.jpg", "order": 5}, {"name": "Molly Peters", "character": "Patricia Fearing", "id": 9924, "credit_id": "52fe4265c3a36847f801b569", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Martine Beswick", "character": "Paula Caplan", "id": 9925, "credit_id": "52fe4265c3a36847f801b56d", "cast_id": 8, "profile_path": "/z5tUam9oJPDMkrgnPlVdN7UijUs.jpg", "order": 7}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4265c3a36847f801b571", "cast_id": 9, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4265c3a36847f801b575", "cast_id": 10, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4265c3a36847f801b579", "cast_id": 11, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Roland Culver", "character": "Foreign Secretary", "id": 9926, "credit_id": "52fe4265c3a36847f801b57d", "cast_id": 12, "profile_path": "/93CvXcv5dBXSjzYd5yf9qxxnvhj.jpg", "order": 11}, {"name": "Earl Cameron", "character": "Pinder", "id": 2246, "credit_id": "5404ada80e0a2658ee00a7a0", "cast_id": 29, "profile_path": "/4bDKeRU96RxpJ2Uv8x2yrjCmGks.jpg", "order": 12}, {"name": "Paul Stassino", "character": "Palazzi", "id": 125908, "credit_id": "5404adba0e0a2658f100a876", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Rose Alba", "character": "Madame Boitier", "id": 990420, "credit_id": "5404adcb0e0a2658f100a87b", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Philip Locke", "character": "Vargas", "id": 27321, "credit_id": "5404ade20e0a2658e200abc3", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "George Pravda", "character": "Kutze", "id": 30142, "credit_id": "5404adf50e0a260c8500300b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Edward Underdown", "character": "Air Vice Marshall", "id": 89208, "credit_id": "5404ae0b0e0a2658e200abc7", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Kevin McClory", "character": "Man Smoking at Nassau Casino (uncredited)", "id": 9951, "credit_id": "55181e309251416f0d00466a", "cast_id": 36, "profile_path": null, "order": 18}], "directors": [{"name": "Terence Young", "department": "Directing", "job": "Director", "credit_id": "52fe4265c3a36847f801b583", "profile_path": "/vXufUCM2ybRgYggqxoV5479a03Y.jpg", "id": 9855}], "vote_average": 6.3, "runtime": 130}, "663": {"poster_path": "/veApHw5ARGHWf3ptKf30rOGFY9n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139352633, "overview": "Jigsaw and his apprentice Amanda are dead. Now, upon the news of Detective Kerry's murder, two seasoned FBI profilers, Agent Strahm and Agent Perez, arrive in the terrified community to assist the veteran Detective Hoffman in sifting through Jigsaw's latest grisly remains and piecing together the puzzle. However, when SWAT Commander Rigg is abducted and thrust into a game, the last officer untouched by Jigsaw has but ninety minutes to overcome a series of demented traps and save an old friend...or face the deadly consequences.", "video": false, "id": 663, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Saw IV", "tagline": "It's A Trap", "vote_count": 185, "homepage": "http://movies.break.com/saw4/", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0890870", "adult": false, "backdrop_path": "/yKATxJtGY67cXdOmlbWwW6EgPqn.jpg", "production_companies": [{"name": "Twisted Pictures", "id": 2061}, {"name": "Lions Gate Films", "id": 35}], "release_date": "2007-10-25", "popularity": 1.01365608180898, "original_title": "Saw IV", "budget": 10000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw/John", "id": 2144, "credit_id": "52fe4266c3a36847f801b7b1", "cast_id": 1, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Scott Patterson", "character": "Agent Strahm", "id": 50020, "credit_id": "52fe4266c3a36847f801b809", "cast_id": 22, "profile_path": "/tXrO1CHnuR6zjpHh2JXNtozW0XC.jpg", "order": 1}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "52fe4266c3a36847f801b80d", "cast_id": 23, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 2}, {"name": "Costas Mandylor", "character": "Hoffman", "id": 36055, "credit_id": "52fe4266c3a36847f801b811", "cast_id": 24, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 3}, {"name": "Lyriq Bent", "character": "Rigg", "id": 2687, "credit_id": "52fe4266c3a36847f801b815", "cast_id": 25, "profile_path": "/sPiFZOViNCGM9jWNDSr4G9FpWvD.jpg", "order": 4}, {"name": "Louis Ferreira", "character": "Art", "id": 51036, "credit_id": "52fe4266c3a36847f801b819", "cast_id": 26, "profile_path": "/mqJglT0g3tRMg5cNeJ7C6vdP4E.jpg", "order": 5}, {"name": "Athena Karkanis", "character": "Agent Perez", "id": 51037, "credit_id": "52fe4266c3a36847f801b81d", "cast_id": 27, "profile_path": "/jy7XvLoZDcO2iHMzxtntHNXXRd0.jpg", "order": 6}, {"name": "Simon Reynolds", "character": "Lamanna", "id": 51038, "credit_id": "52fe4266c3a36847f801b821", "cast_id": 28, "profile_path": "/xVUL9ylIi7Cad2vmJx2vb6RgnWr.jpg", "order": 7}, {"name": "Mike Realba", "character": "Fisk", "id": 28869, "credit_id": "52fe4266c3a36847f801b825", "cast_id": 29, "profile_path": "/9VSNPVauGKQlV1cXENaUI60OoZH.jpg", "order": 8}, {"name": "Marty Adams", "character": "Ivan", "id": 51039, "credit_id": "52fe4266c3a36847f801b829", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Sarain Boylan", "character": "Brenda", "id": 51040, "credit_id": "52fe4266c3a36847f801b82d", "cast_id": 31, "profile_path": "/fiXnOzZbpTubAMWR8umS6Ayykcy.jpg", "order": 10}, {"name": "Billy Otis", "character": "Cecill", "id": 51041, "credit_id": "52fe4266c3a36847f801b831", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Niamh Wilson", "character": "Corbett", "id": 51042, "credit_id": "52fe4266c3a36847f801b835", "cast_id": 33, "profile_path": "/rFsDF73n6ipaF15OSSKnAXBtlSt.jpg", "order": 12}, {"name": "Julian Richings", "character": "Vagrant", "id": 2320, "credit_id": "52fe4266c3a36847f801b839", "cast_id": 34, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 13}, {"name": "Joanne Boland", "character": "Crime Scene Photographer", "id": 99181, "credit_id": "52fe4266c3a36847f801b849", "cast_id": 37, "profile_path": "/i3m6r3qqI5Mefww6QVCqddWWYhZ.jpg", "order": 14}, {"name": "Donnie Wahlberg", "character": "Eric Matthews", "id": 2680, "credit_id": "54c590a79251412ece00256c", "cast_id": 43, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 15}, {"name": "Shawnee Smith", "character": "Amanda Young", "id": 2138, "credit_id": "54c5a24fc3a36878fb007fc4", "cast_id": 44, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 16}], "directors": [{"name": "Darren Lynn Bousman", "department": "Directing", "job": "Director", "credit_id": "52fe4266c3a36847f801b7b7", "profile_path": "/83Q6TkXPsq1VAqRPYb2NrqN3lI7.jpg", "id": 2675}], "vote_average": 5.9, "runtime": 93}, "8856": {"poster_path": "/4zmEPGKrD3sgjHZUs99tknEBaJy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115103979, "overview": "Mr. Miyagi and Daniel take a trip to Okinawa to visit Mr. Miyagi's dying father. After arriving Mr. Miyagi finds he still has feelings for an old love. This stirs up trouble with an old rival who he originally left Okinawa to avoid. In the mean time, Daniel encounters a new love and also makes some enemies.", "video": false, "id": 8856, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid, Part II", "tagline": "This time, the combat is real.", "vote_count": 90, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sq4c328WCIFIVD7B9ZGFRwDbUTH.jpg", "poster_path": "/o6h2F0C5eZOy50Q76fNYzc9mvvw.jpg", "id": 8580, "name": "The Karate Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091326", "adult": false, "backdrop_path": "/3iLQU4WFaclBOEQxGmWZ6cARhtX.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1986-06-18", "popularity": 0.47126915563224, "original_title": "The Karate Kid, Part II", "budget": 0, "cast": [{"name": "Ralph Macchio", "character": "Daniel LaRusso", "id": 2877, "credit_id": "52fe44c1c3a36847f80a82b1", "cast_id": 1, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 0}, {"name": "Pat Morita", "character": "Kesuke Miyagi", "id": 23915, "credit_id": "52fe44c1c3a36847f80a82b5", "cast_id": 2, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 1}, {"name": "Martin Kove", "character": "John Kreese", "id": 56117, "credit_id": "52fe44c1c3a36847f80a82b9", "cast_id": 3, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 2}, {"name": "Charlie Tanimoto", "character": "Miyagi's Father", "id": 56118, "credit_id": "52fe44c1c3a36847f80a82bd", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Yuji Okumoto", "character": "Chozen", "id": 56120, "credit_id": "52fe44c1c3a36847f80a82c1", "cast_id": 6, "profile_path": "/eVq0Od53a8JdfYLGHxkBboOtsIe.jpg", "order": 5}, {"name": "Joey Miyashima", "character": "Toshio", "id": 56121, "credit_id": "52fe44c1c3a36847f80a82c5", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Marc Hayashi", "character": "Taro", "id": 56122, "credit_id": "52fe44c1c3a36847f80a82c9", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Danny Kamekona", "character": "Sato", "id": 56123, "credit_id": "52fe44c1c3a36847f80a82cd", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "William Zabka", "character": "Johnny Lawrence", "id": 56124, "credit_id": "52fe44c1c3a36847f80a82d1", "cast_id": 10, "profile_path": "/kHcFbjmtF3CPK8uIDzKh5aj2bUv.jpg", "order": 9}, {"name": "Nobu McCarthy", "character": "Kumiko", "id": 29381, "credit_id": "52fe44c1c3a36847f80a82ff", "cast_id": 18, "profile_path": "/h5LOqYVtaPsDQ62GkFnCkjL1ak.jpg", "order": 10}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe44c1c3a36847f80a82d7", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 5.9, "runtime": 113}, "665": {"poster_path": "/syPMBvvZsADTTRu3UKuxO1Wflq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000000, "overview": "Ben-Hur is a 1959 epic film directed by William Wyler, the third film version of Lew Wallace's 1880 novel Ben-Hur: A Tale of the Christ. It premiered at Loew's State Theatre in New York City on November 18, 1959. The film went on to win a record of eleven Academy Awards, including Best Picture, a feat equaled only by Titanic in 1998 and The Lord of the Rings: The Return of the King in 2004. It was also the last film to win the Oscar for both Best Actor and Best Supporting Actor, until nearly 44 years later when Mystic River achieved the same feat.The movie revolves around a Jewish prince who is betrayed and sent into slavery by a Roman friend and how he regains his freedom and comes back for revenge.", "video": false, "id": 665, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ben-Hur", "tagline": "The entertainment experience of a lifetime.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0052618", "adult": false, "backdrop_path": "/kV0wiMw24cgac7BqcppgkmUSGIw.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1959-11-18", "popularity": 1.36380586968954, "original_title": "Ben-Hur", "budget": 15000000, "cast": [{"name": "Charlton Heston", "character": "Judah Ben-Hur", "id": 10017, "credit_id": "52fe4266c3a36847f801ba0f", "cast_id": 20, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 0}, {"name": "Jack Hawkins", "character": "Quintus Arrius", "id": 10018, "credit_id": "52fe4266c3a36847f801ba13", "cast_id": 21, "profile_path": "/7b6E24ZRLEPJwP0WQauXJPt41Fs.jpg", "order": 1}, {"name": "Haya Harareet", "character": "Esther", "id": 10019, "credit_id": "52fe4266c3a36847f801ba17", "cast_id": 22, "profile_path": "/2qrzQJJu79EZcuiTrA03QvYFFX2.jpg", "order": 2}, {"name": "Stephen Boyd", "character": "Messala", "id": 10020, "credit_id": "52fe4266c3a36847f801ba1b", "cast_id": 23, "profile_path": "/nZKyN3wtSqbPDXCDsQTXaLfORhP.jpg", "order": 3}, {"name": "Hugh Griffith", "character": "Scheich Ildirim", "id": 10021, "credit_id": "52fe4266c3a36847f801ba1f", "cast_id": 24, "profile_path": "/4ZMoHlCIRR9opLRRVpjL8HmfR6y.jpg", "order": 4}, {"name": "Martha Scott", "character": "Miriam", "id": 10022, "credit_id": "52fe4266c3a36847f801ba23", "cast_id": 25, "profile_path": "/ncuwnj0bgG62KlT8RSAhEdssamg.jpg", "order": 5}, {"name": "Cathy O'Donnell", "character": "Tirzah", "id": 10023, "credit_id": "52fe4266c3a36847f801ba27", "cast_id": 26, "profile_path": "/dyBLKR0uajqDrHNkZxU4tm94nT9.jpg", "order": 6}, {"name": "Frank Thring", "character": "Pontius Pilatus", "id": 10025, "credit_id": "52fe4266c3a36847f801ba2f", "cast_id": 28, "profile_path": "/3IGtuwC2BdyfYlPqwFw1Z2yI7TH.jpg", "order": 7}, {"name": "Sam Jaffe", "character": "Simonides", "id": 10024, "credit_id": "52fe4266c3a36847f801ba2b", "cast_id": 27, "profile_path": "/drxy1JkTOjhUhQnrFnepTmSHELd.jpg", "order": 8}, {"name": "Ady Berber", "character": "Malluch", "id": 10026, "credit_id": "52fe4266c3a36847f801ba33", "cast_id": 29, "profile_path": "/dNRIR9ThNvjikIHRE1LbJoJJRNb.jpg", "order": 9}, {"name": "Finlay Currie", "character": "Balthasar", "id": 10027, "credit_id": "52fe4266c3a36847f801ba37", "cast_id": 30, "profile_path": "/4ezZVGhlabVRIeavptVayV1VJGC.jpg", "order": 10}, {"name": "George Relph", "character": "Tiberius Caesar", "id": 10028, "credit_id": "52fe4266c3a36847f801ba3b", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Andr\u00e9 Morell", "character": "Sextus", "id": 10029, "credit_id": "52fe4266c3a36847f801ba3f", "cast_id": 32, "profile_path": "/slGvSoLbXaR1g23Rxj9N2WyKNWi.jpg", "order": 12}], "directors": [{"name": "William Wyler", "department": "Directing", "job": "Director", "credit_id": "52fe4266c3a36847f801b99f", "profile_path": "/AvxH2K3FDzui3je0wQZBKN3IUTt.jpg", "id": 10001}], "vote_average": 6.9, "runtime": 212}, "667": {"poster_path": "/zWVpC5tCDCvPfxFD4zpT316g9FQ.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 111584787, "overview": "A mysterious space craft kidnaps a Russian and American space capsule and brings the world on the verge of another World War. James Bond investigates the case in Japan and meets with his archenemy Blofeld. The fifth film from the legendary James Bond series starring Sean Connery as the British super agent.", "video": false, "id": 667, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "You Only Live Twice", "tagline": "You Only Live Twice...and Twice is the only way to live!", "vote_count": 142, "homepage": "http://www.mgm.com/view/movie/2347/You-Only-Live-Twice/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0062512", "adult": false, "backdrop_path": "/jahBdYTAGMJaEove9l9hzYpDKJD.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1967-06-12", "popularity": 1.3264225035239, "original_title": "You Only Live Twice", "budget": 9500000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe4267c3a36847f801bb93", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Akiko Wakabayashi", "character": "Aki", "id": 10068, "credit_id": "52fe4267c3a36847f801bb97", "cast_id": 2, "profile_path": "/5LRNvjMLVJjWfESGbnfkhcoQ6fS.jpg", "order": 1}, {"name": "Karin Dor", "character": "Helga Brandt", "id": 10073, "credit_id": "52fe4267c3a36847f801bba7", "cast_id": 6, "profile_path": "/9xDG5844NJkAhrkIePatGvSwGls.jpg", "order": 2}, {"name": "Mie Hama", "character": "Kissy Suzuki", "id": 10070, "credit_id": "52fe4267c3a36847f801bb9b", "cast_id": 3, "profile_path": "/79z3Dz2KQCO5ru3SUqHFMx1Wate.jpg", "order": 3}, {"name": "Tetsur\u014d Tamba", "character": "Tiger Tanaka", "id": 10071, "credit_id": "52fe4267c3a36847f801bb9f", "cast_id": 4, "profile_path": "/uGToyc24HrsIrYJh4OEzbiqLa1F.jpg", "order": 4}, {"name": "Teru Shimada", "character": "Mr. Osato", "id": 10072, "credit_id": "52fe4267c3a36847f801bba3", "cast_id": 5, "profile_path": "/uuIjelPPEOUGcG68HNzme1xhUzc.jpg", "order": 5}, {"name": "Donald Pleasence", "character": "Ernst Stavro Blofeld", "id": 9221, "credit_id": "52fe4267c3a36847f801bbab", "cast_id": 7, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 6}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4267c3a36847f801bbaf", "cast_id": 8, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 7}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4267c3a36847f801bbb3", "cast_id": 9, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4267c3a36847f801bbb7", "cast_id": 10, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Charles Gray", "character": "Dikko Henderson", "id": 10074, "credit_id": "52fe4267c3a36847f801bbbb", "cast_id": 11, "profile_path": "/ejgGEya19V1jUBqixTz9D8xIjlR.jpg", "order": 10}, {"name": "Tsai Chin", "character": "Ling", "id": 10075, "credit_id": "52fe4267c3a36847f801bbbf", "cast_id": 12, "profile_path": "/2icB7ENqRRXxqzirAH3PupzTyqQ.jpg", "order": 11}, {"name": "Burt Kwouk", "character": "Spectre 3", "id": 21944, "credit_id": "52fe4267c3a36847f801bc05", "cast_id": 24, "profile_path": "/7s1Sul5L6NU2TEfgLarBqrde65v.jpg", "order": 12}, {"name": "Michael Chow", "character": "Spectre 4", "id": 21631, "credit_id": "5405a329c3a36843660082e1", "cast_id": 26, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 14}, {"name": "Ronald Rich", "character": "Hans", "id": 1231323, "credit_id": "5405a33bc3a3682d980069fa", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Jeanne Roland", "character": "Bond's Masseuse", "id": 199904, "credit_id": "5405a352c3a3685b74003b96", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Lewis Gilbert", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bbc5", "profile_path": "/9KAGNVy7N8jZKSFhrXe3Y28XwJt.jpg", "id": 10076}], "vote_average": 6.1, "runtime": 117}, "60307": {"poster_path": "/s3xslgv5fehmRiuGzo2xarD7HiH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72417394, "overview": "Back in middle school after summer vacation, Greg Heffley and his older brother Rodrick must deal with their parents' misguided attempts to have them bond.", "video": false, "id": 60307, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Diary of a Wimpy Kid: Rodrick Rules", "tagline": "Welcome to the next grade", "vote_count": 71, "homepage": "http://www.diaryofawimpykidmovie.com/", "belongs_to_collection": {"backdrop_path": "/hTbw2nLM44eE5m7ZIIXodcoDR1X.jpg", "poster_path": "/4Miizfzuds4ldROTff9vB0Z3EId.jpg", "id": 86110, "name": "Diary of a Wimpy Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1650043", "adult": false, "backdrop_path": "/zuPI1WSAoa4c2rLwslIZ3wmwo25.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Color Force", "id": 5420}], "release_date": "2011-03-25", "popularity": 0.377906254297826, "original_title": "Diary of a Wimpy Kid: Rodrick Rules", "budget": 21000000, "cast": [{"name": "Zachary Gordon", "character": "Greg Heffley", "id": 89819, "credit_id": "52fe461fc3a368484e080053", "cast_id": 1, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 0}, {"name": "Devon Bostick", "character": "Rodrick Heffley", "id": 90498, "credit_id": "52fe461fc3a368484e080057", "cast_id": 2, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 1}, {"name": "Rachael Harris", "character": "Susan Heffley", "id": 46074, "credit_id": "52fe461fc3a368484e08005b", "cast_id": 3, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 2}, {"name": "Robert Capron", "character": "Rowley Jefferson", "id": 111922, "credit_id": "52fe461fc3a368484e08005f", "cast_id": 5, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 3}, {"name": "Teryl Rothery", "character": "Mrs. Kohan", "id": 51800, "credit_id": "52fe461fc3a368484e080075", "cast_id": 9, "profile_path": "/6pk0WjBYccQod00koPBfLhWYp6B.jpg", "order": 4}, {"name": "Peyton List", "character": "Holly Hills", "id": 1254435, "credit_id": "53678244c3a36812310047c3", "cast_id": 10, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 5}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe461fc3a368484e080071", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}], "vote_average": 6.2, "runtime": 99}, "670": {"poster_path": "/fct7n9V10E8t8a7wOR90Ccw0i48.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 14980005, "overview": "Oldboy is the revenge drama from Director Park Chan-wook. Based on a Manga comic it depicts the suffering path of a man who must deal with the never ending torment of having unknowingly made someone his enemy.", "video": false, "id": 670, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Oldboy", "tagline": "15 years of imprisonment, five days of vengeance", "vote_count": 488, "homepage": "", "belongs_to_collection": {"backdrop_path": "/t5zZZOvXK8m5z1omMdEEWcL6ywl.jpg", "poster_path": "/ilyS5xmHzMtTq4ngVRNKvZEbSRo.jpg", "id": 4563, "name": "The Vengeance Trilogy"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0364569", "adult": false, "backdrop_path": "/qUxC2uJnHgGKq6Qvy4sYPxy0hoJ.jpg", "production_companies": [{"name": "Egg Films", "id": 398}, {"name": "Show East", "id": 399}], "release_date": "2003-12-21", "popularity": 1.06279754420388, "original_title": "\uc62c\ub4dc\ubcf4\uc774", "budget": 3000000, "cast": [{"name": "Choi Min-sik", "character": "Oh Dae-su", "id": 64880, "credit_id": "52fe4267c3a36847f801bd6f", "cast_id": 13, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 0}, {"name": "Yoo Ji-Tae", "character": "Lee Woo-jin", "id": 10112, "credit_id": "52fe4267c3a36847f801bd8b", "cast_id": 23, "profile_path": "/r1S6FLSQaM72zmSzwzpK4huORiU.jpg", "order": 1}, {"name": "Kang Hye-jung", "character": "Mi-do", "id": 1299317, "credit_id": "5319bbf2c3a3685c3d002dc7", "cast_id": 29, "profile_path": "/lF4wt0m522K79tgy18ykgDtmsAO.jpg", "order": 2}, {"name": "Kim Byeong-ok", "character": "Mr. Han", "id": 1299313, "credit_id": "5319bae792514177b4002634", "cast_id": 28, "profile_path": "/qDQBQQaMFTLuWtU2tdVlVymoqqa.jpg", "order": 3}, {"name": "Oh Dal-Su", "character": "Park Cheol-woong", "id": 77188, "credit_id": "52fe4267c3a36847f801bd83", "cast_id": 21, "profile_path": "/5DmhRuUQZlrjoaN6seg7Wut3elb.jpg", "order": 4}, {"name": "Ji Dae-Han", "character": "No Joo-Hwan", "id": 139491, "credit_id": "53c8bae6c3a3686e79000a1f", "cast_id": 30, "profile_path": "/8DFPhuW6XRHA0UXmpHm3tURdFvj.jpg", "order": 5}, {"name": "Oh Tae-kyung", "character": "Young Dae-su", "id": 77183, "credit_id": "52fe4267c3a36847f801bd7b", "cast_id": 18, "profile_path": "/kip9cffry8QGDepWC64WKh7StGa.jpg", "order": 6}, {"name": "Yoon Jin-Seo", "character": "Lee Soo-ah", "id": 117504, "credit_id": "52fe4267c3a36847f801bd8f", "cast_id": 24, "profile_path": "/xoRwGUyCIzAEwbWhOhpwFDpNIlu.jpg", "order": 8}, {"name": "Lee Seung-Shin", "character": "Yoo Hyung-ja", "id": 554330, "credit_id": "54972ac19251417315001bd4", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Lee Dae-yeon", "character": "Beggar", "id": 39258, "credit_id": "54972b16c3a3686af300616d", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Oh Kwang-rok", "character": "Suicidal Man", "id": 1146062, "credit_id": "54972b659251413f75004e2a", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Ahn Yeon-suk", "character": "Young Woo-jin", "id": 1402308, "credit_id": "54972c3692514132ed004e39", "cast_id": 35, "profile_path": null, "order": 13}], "directors": [{"name": "Park Chan-wook", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bd35", "profile_path": "/eFRXaT3RMoPemwDLNvfiFP0h8RX.jpg", "id": 10099}], "vote_average": 7.7, "runtime": 120}, "671": {"poster_path": "/lR4drT4VGfts32j9jYTZUc1a3Pa.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 976475550, "overview": "Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard -- with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths -- and about the villain who's to blame.", "video": false, "id": 671, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Philosopher's Stone", "tagline": "Let the Magic Begin.", "vote_count": 2567, "homepage": "http://harrypotter.warnerbros.com/harrypotterandthedeathlyhallows/mainsite/index.html", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0241527", "adult": false, "backdrop_path": "/uD93T339xX1k3fnDUaeopZBiajY.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2001-11-15", "popularity": 2.89226615532026, "original_title": "Harry Potter and the Philosopher's Stone", "budget": 125000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4267c3a36847f801be91", "cast_id": 27, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4267c3a36847f801beb9", "cast_id": 37, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "531736ea92514138c00010a3", "cast_id": 49, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Richard Harris", "character": "Albus Dumbledore", "id": 194, "credit_id": "52fe4267c3a36847f801be81", "cast_id": 23, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Professor Minerva McGonagall", "id": 10978, "credit_id": "52fe4267c3a36847f801be85", "cast_id": 24, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4267c3a36847f801be89", "cast_id": 25, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 5}, {"name": "Saunders Triplets", "character": "Baby Harry Potter", "id": 10979, "credit_id": "52fe4267c3a36847f801be8d", "cast_id": 26, "profile_path": "/y8j5WdO29Ln17uJyDnk88NGT4xE.jpg", "order": 6}, {"name": "Fiona Shaw", "character": "Aunt Petunia Dursley", "id": 10981, "credit_id": "52fe4267c3a36847f801be95", "cast_id": 28, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 7}, {"name": "Harry Melling", "character": "Dudley Dursley", "id": 10982, "credit_id": "52fe4267c3a36847f801be99", "cast_id": 29, "profile_path": "/2CXlvvGnnJlSHDRqcWxtcef8Dsf.jpg", "order": 8}, {"name": "Richard Griffiths", "character": "Uncle Vernon Dursley", "id": 10983, "credit_id": "52fe4267c3a36847f801be9d", "cast_id": 30, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 9}, {"name": "Derek Deadman", "character": "Tom", "id": 10984, "credit_id": "52fe4267c3a36847f801bea1", "cast_id": 31, "profile_path": "/xHyCqVvZUhgRgm4b70ZLLxWAqdR.jpg", "order": 10}, {"name": "Ian Hart", "character": "Professor Quirinus Quirrell", "id": 10985, "credit_id": "52fe4267c3a36847f801bea5", "cast_id": 32, "profile_path": "/35KSRxsFR20QGDhIrZn7G4Jkc2g.jpg", "order": 11}, {"name": "Ben Borowiecki", "character": "Angus", "id": 10986, "credit_id": "52fe4267c3a36847f801bea9", "cast_id": 33, "profile_path": "/nw7ksvq5B4ZWz3R2i9S734R18s0.jpg", "order": 12}, {"name": "Geraldine Somerville", "character": "Mrs. Lily Potter", "id": 10988, "credit_id": "52fe4267c3a36847f801beb5", "cast_id": 36, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 13}, {"name": "Verne Troyer", "character": "Griphook the Goblin", "id": 10987, "credit_id": "52fe4267c3a36847f801bead", "cast_id": 34, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 14}, {"name": "John Hurt", "character": "Mr. Ollivander", "id": 5049, "credit_id": "52fe4267c3a36847f801beb1", "cast_id": 35, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 15}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4267c3a36847f801bec1", "cast_id": 39, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 16}, {"name": "Chris Rankin", "character": "Percy Weasley", "id": 10992, "credit_id": "52fe4267c3a36847f801bec5", "cast_id": 40, "profile_path": "/3HEK2yr0YOEE7A5qf0SGs3VhUNz.jpg", "order": 17}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4267c3a36847f801bec9", "cast_id": 41, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 18}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4267c3a36847f801becd", "cast_id": 42, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 19}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4267c3a36847f801bed1", "cast_id": 43, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 20}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4267c3a36847f801bed5", "cast_id": 44, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 21}, {"name": "Zo\u00eb Wanamaker", "character": "Rolanda Hooch", "id": 20240, "credit_id": "52fe4267c3a36847f801bed9", "cast_id": 45, "profile_path": "/6R8oHxB9aQj7DjaBgrb4sO9SJJg.jpg", "order": 22}, {"name": "Rik Mayall", "character": "Peeves (scenes cut)", "id": 14469, "credit_id": "52fe4267c3a36847f801bedd", "cast_id": 46, "profile_path": "/wntKz7ORqD8mAsME6CFJdWTn6m.jpg", "order": 23}, {"name": "Leslie Phillips", "character": "The Sorting Hat", "id": 10655, "credit_id": "52fe4267c3a36847f801bee1", "cast_id": 48, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 24}, {"name": "Warwick Davis", "character": "Goblin Bank Teller / Professor Flitwick", "id": 11184, "credit_id": "54ecf79cc3a3680be60022eb", "cast_id": 50, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 25}, {"name": "John Cleese", "character": "Nearly Headless Nick", "id": 8930, "credit_id": "55021c2a9251413da800389e", "cast_id": 51, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 26}, {"name": "Sean Biggerstaff", "character": "Oliver Wood", "id": 11179, "credit_id": "5502218bc3a3685ba6003950", "cast_id": 52, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 27}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "55022362c3a3685bab003478", "cast_id": 53, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 28}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801be05", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.9, "runtime": 152}, "672": {"poster_path": "/aLOExwKoxdkdeBvVi7NkaFl5Wa5.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 876688482, "overview": "Everyone's favorite novice wizard, Harry Potter, continues his high-flying adventures at Hogwarts. This time around, Harry ignores warnings not to return to school - that is, if he values his life - to investigate a mysterious series of attacks with Ron and Hermione.", "video": false, "id": 672, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Chamber of Secrets", "tagline": "Hogwarts is back in session.", "vote_count": 1949, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0295297", "adult": false, "backdrop_path": "/avqzwKn89VetTEvAlBePt3Us6Al.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2002-11-03", "popularity": 2.06345645266458, "original_title": "Harry Potter and the Chamber of Secrets", "budget": 100000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4267c3a36847f801bfcb", "cast_id": 23, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4267c3a36847f801bfcf", "cast_id": 24, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "5317374d92514158d2001c3c", "cast_id": 52, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Kenneth Branagh", "character": "Gilderoy Lockhart", "id": 11181, "credit_id": "52fe4267c3a36847f801bfe3", "cast_id": 30, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 3}, {"name": "Richard Harris", "character": "Albus Dumbledore", "id": 194, "credit_id": "52fe4267c3a36847f801c017", "cast_id": 43, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4267c3a36847f801c013", "cast_id": 42, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4267c3a36847f801bfef", "cast_id": 33, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 6}, {"name": "Maggie Smith", "character": "Professor Minerva McGonagall", "id": 10978, "credit_id": "52fe4267c3a36847f801c027", "cast_id": 48, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 7}, {"name": "Heather Bleasdale", "character": "Mrs Granger", "id": 11178, "credit_id": "52fe4267c3a36847f801bfd7", "cast_id": 27, "profile_path": "/9IiyoWvIoKE6nMzqD4FQxF1p4Ro.jpg", "order": 8}, {"name": "Sean Biggerstaff", "character": "Oliver Wood", "id": 11179, "credit_id": "52fe4267c3a36847f801bfdb", "cast_id": 28, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 9}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4267c3a36847f801bfdf", "cast_id": 29, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 10}, {"name": "Veronica Clifford", "character": "Mrs Mason", "id": 11182, "credit_id": "52fe4267c3a36847f801bfe7", "cast_id": 31, "profile_path": "/n7k6VtGBZpWUHuDvMdNOKPKia6D.jpg", "order": 11}, {"name": "John Cleese", "character": "Nearly Headless Nick", "id": 8930, "credit_id": "52fe4267c3a36847f801bfeb", "cast_id": 32, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 12}, {"name": "Eleanor Columbus", "character": "Susan Bones", "id": 11183, "credit_id": "52fe4267c3a36847f801bff3", "cast_id": 34, "profile_path": "/faUiKSCt5oeXHvtn6DkdsQGivVl.jpg", "order": 13}, {"name": "Christian Coulson", "character": "Tom Marvolo Riddle", "id": 8444, "credit_id": "52fe4267c3a36847f801bff7", "cast_id": 35, "profile_path": "/dfbirdWAL0deUUtIV7GD1T1PGWp.jpg", "order": 14}, {"name": "Warwick Davis", "character": "Filius Flitwick", "id": 11184, "credit_id": "52fe4267c3a36847f801bffb", "cast_id": 36, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 15}, {"name": "Emily Dale", "character": "Katie Bell", "id": 11185, "credit_id": "52fe4267c3a36847f801bfff", "cast_id": 37, "profile_path": "/njNcJyRU1I7Kbye01VywmBPUB58.jpg", "order": 16}, {"name": "Rochelle Douglas", "character": "Alicia Spinnet", "id": 11186, "credit_id": "52fe4267c3a36847f801c003", "cast_id": 38, "profile_path": "/8Ko1ZXWe6SZPKWVxKSjCynH1lxC.jpg", "order": 17}, {"name": "Richard Griffiths", "character": "Uncle Vernon Dursley", "id": 10983, "credit_id": "52fe4267c3a36847f801c007", "cast_id": 39, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 18}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4267c3a36847f801c00b", "cast_id": 40, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 19}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4267c3a36847f801c00f", "cast_id": 41, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 20}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4267c3a36847f801c01b", "cast_id": 44, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 21}, {"name": "Leslie Phillips", "character": "The Sorting Hat (voice)", "id": 10655, "credit_id": "52fe4267c3a36847f801c01f", "cast_id": 46, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 22}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe4267c3a36847f801c023", "cast_id": 47, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 23}, {"name": "Jim Norton", "character": "Mr. Mason", "id": 14950, "credit_id": "52fe4267c3a36847f801c02b", "cast_id": 49, "profile_path": "/lndFtmSwtCzoeWkgjqJBqVRKGk2.jpg", "order": 24}, {"name": "Shirley Henderson", "character": "Moaning Myrtle", "id": 1834, "credit_id": "52fe4267c3a36847f801c02f", "cast_id": 50, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 25}, {"name": "Miriam Margolyes", "character": "Professor Sprout", "id": 6199, "credit_id": "5306f2999251414c690002f3", "cast_id": 51, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 26}, {"name": "Tom Knight", "character": "Mr. Granger", "id": 203538, "credit_id": "54c64d009251416eae0126d0", "cast_id": 53, "profile_path": "/WXka0PHeq6Ugn0D7anilbYGtRM.jpg", "order": 27}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bf49", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.8, "runtime": 161}, "673": {"poster_path": "/rsiCoJ5gcaBGANUZROJUxiN8yQ5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 789804554, "overview": "Harry, Ron and Hermione return to Hogwarts for a third adventure and magic filled year in this follow-up to the first two Potter blockbusters. Harry comes face to face with danger yet again, this time in the form of escaped convict Sirius Black. In a bid for help, Harry turns to sympathetic Professor Lupin -- but will it be enough?", "video": false, "id": 673, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Prisoner of Azkaban", "tagline": "Something wicked this way comes.", "vote_count": 1865, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0304141", "adult": false, "backdrop_path": "/wWdlIBxn9xCmySxnSWtI2BjZZkF.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Warner Bros.", "id": 6194}, {"name": "Heyday Films", "id": 7364}], "release_date": "2004-05-31", "popularity": 1.79866549656023, "original_title": "Harry Potter and the Prisoner of Azkaban", "budget": 130000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4267c3a36847f801c08b", "cast_id": 1, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4267c3a36847f801c08f", "cast_id": 2, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "5317383ec3a36813ad002841", "cast_id": 45, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe4267c3a36847f801c097", "cast_id": 4, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 3}, {"name": "David Thewlis", "character": "Professor Lupin", "id": 11207, "credit_id": "52fe4267c3a36847f801c09b", "cast_id": 5, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Professor Snape", "id": 4566, "credit_id": "52fe4267c3a36847f801c09f", "cast_id": 6, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Michael Gambon", "character": "Professor Dumbledore", "id": 5658, "credit_id": "52fe4267c3a36847f801c0a3", "cast_id": 7, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4267c3a36847f801c0a7", "cast_id": 8, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4267c3a36847f801c0ab", "cast_id": 9, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 8}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4267c3a36847f801c0af", "cast_id": 10, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 9}, {"name": "Emma Thompson", "character": "Professor Trelawney", "id": 7056, "credit_id": "52fe4267c3a36847f801c0b3", "cast_id": 11, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 10}, {"name": "Maggie Smith", "character": "Professor McGonagall", "id": 10978, "credit_id": "52fe4268c3a36847f801c0b7", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 11}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4268c3a36847f801c0bb", "cast_id": 13, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 12}, {"name": "Pam Ferris", "character": "Aunt Marge", "id": 11213, "credit_id": "52fe4268c3a36847f801c0bf", "cast_id": 14, "profile_path": "/i9ou0K069ce8rL1OeWEZRukCBCk.jpg", "order": 13}, {"name": "Richard Griffiths", "character": "Uncle Vernon", "id": 10983, "credit_id": "52fe4268c3a36847f801c0c3", "cast_id": 15, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 14}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4268c3a36847f801c151", "cast_id": 40, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 15}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4268c3a36847f801c155", "cast_id": 41, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 16}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4268c3a36847f801c159", "cast_id": 42, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 17}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4268c3a36847f801c15d", "cast_id": 43, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 18}, {"name": "Timothy Spall", "character": "Peter Pettigrew", "id": 9191, "credit_id": "55043936c3a36862e5000e0a", "cast_id": 47, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 19}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe4268c3a36847f801c0c9", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 7.0, "runtime": 141}, "674": {"poster_path": "/6sASqcdrEHXxUhA3nFpjrRecPD2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 895921036, "overview": "Young wizard Harry Potter starts his fourth year at Hogwarts, competes in the treacherous Tri-Wizard Tournament and faces the evil Lord Voldemort. Friends Ron and Hermione help Harry manage the pressure \u2026 but Voldemort lurks, awaiting his chance to destroy Harry and all that he stands for.", "video": false, "id": 674, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Goblet of Fire", "tagline": "Dark And Difficult Times Lie Ahead.", "vote_count": 1991, "homepage": "http://harrypotter.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0330373", "adult": false, "backdrop_path": "/gzKW3emulMxIHzuXxZoyDB1lei9.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2005-11-05", "popularity": 2.11423868134459, "original_title": "Harry Potter and the Goblet of Fire", "budget": 150000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4268c3a36847f801c21d", "cast_id": 1, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4268c3a36847f801c221", "cast_id": 2, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe4268c3a36847f801c225", "cast_id": 3, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe4268c3a36847f801c229", "cast_id": 4, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 3}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe4268c3a36847f801c22d", "cast_id": 5, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4268c3a36847f801c231", "cast_id": 6, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4268c3a36847f801c235", "cast_id": 7, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 6}, {"name": "Brendan Gleeson", "character": "Alastor \"Mad-Eye\" Moody", "id": 2039, "credit_id": "52fe4268c3a36847f801c239", "cast_id": 8, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 7}, {"name": "Miranda Richardson", "character": "Rita Skeeter", "id": 8436, "credit_id": "52fe4268c3a36847f801c23d", "cast_id": 9, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 8}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe4268c3a36847f801c241", "cast_id": 10, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 9}, {"name": "Robert Pattinson", "character": "Cedric Diggory", "id": 11288, "credit_id": "52fe4268c3a36847f801c245", "cast_id": 11, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 10}, {"name": "Stanislav Ianevski", "character": "Viktor Krum", "id": 11290, "credit_id": "52fe4268c3a36847f801c249", "cast_id": 12, "profile_path": "/rfsv03YZfB2cv2y26IzgdnuyuBl.jpg", "order": 11}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Fleur Delacour", "id": 11291, "credit_id": "52fe4268c3a36847f801c24d", "cast_id": 13, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 12}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4268c3a36847f801c251", "cast_id": 14, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 13}, {"name": "Maggie Smith", "character": "Minerva McGonagall", "id": 10978, "credit_id": "52fe4268c3a36847f801c2eb", "cast_id": 40, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 14}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4268c3a36847f801c2ef", "cast_id": 41, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 15}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4268c3a36847f801c2f3", "cast_id": 42, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 16}, {"name": "Frances de la Tour", "character": "Madame Olympe Maxime", "id": 47468, "credit_id": "52fe4268c3a36847f801c2f7", "cast_id": 43, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 17}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4268c3a36847f801c2fb", "cast_id": 44, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 18}, {"name": "Roger Lloyd-Pack", "character": "Barty Crouch, Sr.", "id": 81024, "credit_id": "52fe4268c3a36847f801c2ff", "cast_id": 45, "profile_path": "/6hWATATAe2Tv7v2EKefdjfAaI7.jpg", "order": 19}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe4268c3a36847f801c303", "cast_id": 47, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 20}, {"name": "Eric Sykes", "character": "Frank Bryce", "id": 20053, "credit_id": "52fe4268c3a36847f801c307", "cast_id": 48, "profile_path": "/yI7Z5BfaYmbFyPUR3idA5DCXOQY.jpg", "order": 21}, {"name": "Timothy Spall", "character": "Wormtail", "id": 9191, "credit_id": "52fe4268c3a36847f801c30b", "cast_id": 49, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 22}, {"name": "David Tennant", "character": "Bartemius 'Barty' Crouch Junior", "id": 20049, "credit_id": "52fe4268c3a36847f801c30f", "cast_id": 50, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 23}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe4268c3a36847f801c313", "cast_id": 51, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 24}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4268c3a36847f801c317", "cast_id": 52, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 25}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe4268c3a36847f801c31b", "cast_id": 53, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 26}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4268c3a36847f801c31f", "cast_id": 54, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 27}, {"name": "Jeff Rawle", "character": "Amos Diggory", "id": 81022, "credit_id": "52fe4268c3a36847f801c323", "cast_id": 55, "profile_path": "/vMAHPrE4pYrOOzcIsYXulEP7Pax.jpg", "order": 28}, {"name": "Robert Hardy", "character": "Cornelius Fudge", "id": 23076, "credit_id": "52fe4268c3a36847f801c327", "cast_id": 56, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 29}, {"name": "Sheila Allen", "character": "Ministry Witch", "id": 1220981, "credit_id": "52fe4268c3a36847f801c3af", "cast_id": 92, "profile_path": "/xRj8h5w0d6btBtR9mhQIv7ufXjL.jpg", "order": 30}, {"name": "Su Elliott", "character": "Ministry Witch", "id": 1221007, "credit_id": "52fe4268c3a36847f801c3b3", "cast_id": 93, "profile_path": "/6IlvNaDF0JRF9hhIVTOEyLDjS36.jpg", "order": 31}, {"name": "Anne Lacy", "character": "Ministry Witch", "id": 1090771, "credit_id": "52fe4268c3a36847f801c32b", "cast_id": 59, "profile_path": null, "order": 32}, {"name": "Flip Webster", "character": "Ministry Witch", "id": 20002, "credit_id": "52fe4268c3a36847f801c32f", "cast_id": 60, "profile_path": "/j8rvA4U6nFOV70MPrI0W8dAEWVx.jpg", "order": 33}, {"name": "David Sterne", "character": "Ministry Wizard", "id": 117654, "credit_id": "52fe4268c3a36847f801c333", "cast_id": 61, "profile_path": "/vZaOmbLpbh3rbDa3CGoj7cBkotI.jpg", "order": 34}, {"name": "Christopher Whittingham", "character": "Ministry Wizard", "id": 193409, "credit_id": "52fe4268c3a36847f801c337", "cast_id": 62, "profile_path": "/sBD3EqrXOyDG7AIZqLTpfV03S1s.jpg", "order": 35}, {"name": "Liam McKenna", "character": "Ministry Wizard", "id": 75065, "credit_id": "52fe4268c3a36847f801c33b", "cast_id": 63, "profile_path": "/7ZV4IHOmTYaFjk1RMyLpIa7C8by.jpg", "order": 36}, {"name": "Campbell Graham", "character": "Ministry Wizard", "id": 1090776, "credit_id": "52fe4268c3a36847f801c33f", "cast_id": 64, "profile_path": "/93Oto4Dy3TiTcHIu6Tj8sXj3yyL.jpg", "order": 37}, {"name": "Margery Mason", "character": "Food Trolley Lady", "id": 213222, "credit_id": "52fe4268c3a36847f801c343", "cast_id": 65, "profile_path": "/A1nJN61RozmvjqJQrHXfHM7F03W.jpg", "order": 38}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe4268c3a36847f801c347", "cast_id": 66, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 39}, {"name": "William Melling", "character": "Nigel", "id": 568374, "credit_id": "52fe4268c3a36847f801c34b", "cast_id": 67, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 40}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4268c3a36847f801c34f", "cast_id": 68, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 41}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe4268c3a36847f801c353", "cast_id": 69, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 42}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe4268c3a36847f801c357", "cast_id": 70, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 43}, {"name": "Warwick Davis", "character": "Filius Flitwick", "id": 11184, "credit_id": "52fe4268c3a36847f801c35b", "cast_id": 71, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 44}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe4268c3a36847f801c35f", "cast_id": 72, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 45}, {"name": "Angelica Mandy", "character": "Gabrielle Delacour", "id": 1090780, "credit_id": "52fe4268c3a36847f801c363", "cast_id": 73, "profile_path": "/fq1xra4NuMQmbFKCSPDyqdCkEeq.jpg", "order": 46}, {"name": "Predrag Bjelac", "character": "Igor Karkaroff", "id": 12044, "credit_id": "52fe4268c3a36847f801c367", "cast_id": 74, "profile_path": "/lv74T1lR0UwubTaE6FaIRLP1tu2.jpg", "order": 47}, {"name": "Tolga Safer", "character": "Karkaroff's Aide", "id": 1090781, "credit_id": "52fe4268c3a36847f801c36b", "cast_id": 75, "profile_path": "/hCh4eqAVwuOvv1x7uJbsDDbpUfm.jpg", "order": 48}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe4268c3a36847f801c36f", "cast_id": 76, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 49}, {"name": "Louis Doyle", "character": "Ernie MacMillan", "id": 1090782, "credit_id": "52fe4268c3a36847f801c373", "cast_id": 77, "profile_path": "/4853h7KAujPtQcZ6ck8EUPDVnOP.jpg", "order": 50}, {"name": "Jamie Waylett", "character": "Vincent Crabbe", "id": 956224, "credit_id": "52fe4268c3a36847f801c377", "cast_id": 78, "profile_path": "/nvw2IgN2BcpT2MczUuwSaTYuqZK.jpg", "order": 51}, {"name": "Charlotte Skeoch", "character": "Hannah Abbott", "id": 1090783, "credit_id": "52fe4268c3a36847f801c37b", "cast_id": 79, "profile_path": "/ukHczA8ykX3HNRB3CxpZwMtw4xM.jpg", "order": 52}, {"name": "Robert Wilfort", "character": "Photographer", "id": 72313, "credit_id": "52fe4268c3a36847f801c37f", "cast_id": 80, "profile_path": "/3G0QlJyhhVLvs9yTSjo4h89ce1k.jpg", "order": 53}, {"name": "Tiana Benjamin", "character": "Angelina Johnson", "id": 174713, "credit_id": "52fe4268c3a36847f801c383", "cast_id": 81, "profile_path": "/unaGXZLIAn0ViPbhF5claGB3Be1.jpg", "order": 54}, {"name": "Henry Lloyd-Hughes", "character": "Roger Davies", "id": 513677, "credit_id": "52fe4268c3a36847f801c387", "cast_id": 82, "profile_path": "/cO8PvsG3vzIvcoXGwTs6DQqaz7m.jpg", "order": 55}, {"name": "Jarvis Cocker", "character": "Band Lead Singer", "id": 107170, "credit_id": "52fe4268c3a36847f801c38b", "cast_id": 83, "profile_path": "/smJVxtorc3yZHcKo2OQHXG3caQt.jpg", "order": 56}, {"name": "Jonny Greenwood", "character": "Band Lead Guitar", "id": 74333, "credit_id": "52fe4268c3a36847f801c38f", "cast_id": 84, "profile_path": "/be8jFRIc3Q5eUmdQVFOhdJ1Aq8p.jpg", "order": 57}, {"name": "Phil Selway", "character": "Band Drums", "id": 74335, "credit_id": "52fe4268c3a36847f801c393", "cast_id": 85, "profile_path": "/7nQAY27ESsbT4oGqZlUf6zraJZ2.jpg", "order": 58}, {"name": "Steve Mackey", "character": "Band Bass Guitar", "id": 1090784, "credit_id": "52fe4268c3a36847f801c397", "cast_id": 86, "profile_path": "/oQL1gKZbCpxFudZ3rYazjWKlFHr.jpg", "order": 59}, {"name": "Jason Buckle", "character": "Band Rhythm Guitar", "id": 1090785, "credit_id": "52fe4268c3a36847f801c39b", "cast_id": 87, "profile_path": "/7hfQveVstuyrbFmmoLQ1EhhfXra.jpg", "order": 60}, {"name": "Steve Claydon", "character": "Band Keyboards", "id": 1090786, "credit_id": "52fe4268c3a36847f801c39f", "cast_id": 88, "profile_path": "/iE3ZTXZCyA9AO3NfJ4A6PvlCoHt.jpg", "order": 61}, {"name": "Shirley Henderson", "character": "Moaning Myrtle", "id": 1834, "credit_id": "52fe4268c3a36847f801c3a3", "cast_id": 89, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 62}, {"name": "Alan Watt", "character": "Assistant Judge", "id": 203935, "credit_id": "52fe4268c3a36847f801c3a7", "cast_id": 90, "profile_path": null, "order": 63}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe4268c3a36847f801c3ab", "cast_id": 91, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 64}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe4268c3a36847f801c257", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.9, "runtime": 157}, "675": {"poster_path": "/lmYmoXVzVrTadfXHZ3v1ySqA1fn.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 938212738, "overview": "Returning for his fifth year of study at the venerable Hogwarts School of Witchcraft and Wizardry, the ever-maturing Harry Potter is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students -- dubbed \"Dumbledore's Army\" -- to defend themselves against the dark arts.", "video": false, "id": 675, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Order of the Phoenix", "tagline": "Evil Must Be Confronted.", "vote_count": 1950, "homepage": "http://www.harrypotterorderofthephoenix.com/", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373889", "adult": false, "backdrop_path": "/gGt4ePOhD8ilxd3FYhKB06L2CyG.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Heyday Films", "id": 7364}, {"name": "Cool Music", "id": 1022}, {"name": "Harry Potter Publishing Rights", "id": 20006}], "release_date": "2007-07-03", "popularity": 1.90534561960797, "original_title": "Harry Potter and the Order of the Phoenix", "budget": 150000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4268c3a36847f801c4db", "cast_id": 22, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4268c3a36847f801c4df", "cast_id": 23, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe4268c3a36847f801c4e3", "cast_id": 24, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe4268c3a36847f801c4f3", "cast_id": 28, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 3}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe4268c3a36847f801c4ef", "cast_id": 27, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 4}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4268c3a36847f801c4eb", "cast_id": 26, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 5}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe4268c3a36847f801c507", "cast_id": 33, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 6}, {"name": "Maggie Smith", "character": "Minerva McGonagall", "id": 10978, "credit_id": "52fe4268c3a36847f801c50f", "cast_id": 35, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 7}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe4268c3a36847f801c4e7", "cast_id": 25, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 8}, {"name": "Brendan Gleeson", "character": "Alastor 'Mad\u00adEye' Moody", "id": 2039, "credit_id": "52fe4268c3a36847f801c4f7", "cast_id": 29, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 9}, {"name": "Richard Griffiths", "character": "Uncle Vernon", "id": 10983, "credit_id": "52fe4268c3a36847f801c4fb", "cast_id": 30, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 10}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe4268c3a36847f801c4ff", "cast_id": 31, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 11}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe4268c3a36847f801c503", "cast_id": 32, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 12}, {"name": "Fiona Shaw", "character": "Aunt Petunia", "id": 10981, "credit_id": "52fe4268c3a36847f801c50b", "cast_id": 34, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 13}, {"name": "Imelda Staunton", "character": "Dolores Umbridge", "id": 11356, "credit_id": "52fe4268c3a36847f801c513", "cast_id": 36, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 14}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4268c3a36847f801c517", "cast_id": 37, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 15}, {"name": "Robert Hardy", "character": "Cornelius Fudge", "id": 23076, "credit_id": "52fe4268c3a36847f801c521", "cast_id": 39, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 16}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4268c3a36847f801c525", "cast_id": 40, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 17}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4268c3a36847f801c529", "cast_id": 41, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 18}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4268c3a36847f801c52d", "cast_id": 42, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 19}, {"name": "Harry Melling", "character": "Dudley Dursley", "id": 10982, "credit_id": "52fe4268c3a36847f801c531", "cast_id": 43, "profile_path": "/2CXlvvGnnJlSHDRqcWxtcef8Dsf.jpg", "order": 20}, {"name": "Evanna Lynch", "character": "Lune Lovegood", "id": 140367, "credit_id": "52fe4268c3a36847f801c53b", "cast_id": 46, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 21}, {"name": "Jason Boyd", "character": "Piers", "id": 1093972, "credit_id": "52fe4268c3a36847f801c53f", "cast_id": 47, "profile_path": "/fs5Qkm9bgpjSkHJYnXQ7uyJZEtP.jpg", "order": 22}, {"name": "Richard Macklin", "character": "Malcolm", "id": 1093973, "credit_id": "52fe4268c3a36847f801c543", "cast_id": 48, "profile_path": null, "order": 23}, {"name": "Kathryn Hunter", "character": "Mrs. Arabella Figg", "id": 72309, "credit_id": "52fe4268c3a36847f801c547", "cast_id": 49, "profile_path": "/68kYLCF20dOHS3iwD0YsoMFcEYn.jpg", "order": 24}, {"name": "Miles Jupp", "character": "TV Weatherman", "id": 221857, "credit_id": "52fe4268c3a36847f801c54b", "cast_id": 50, "profile_path": "/46I2b7aManVdNQ3XFy9IPRkCDS9.jpg", "order": 25}, {"name": "Jessica Hynes", "character": "Mafalda Hopkirk (voice)", "id": 47730, "credit_id": "52fe4268c3a36847f801c54f", "cast_id": 51, "profile_path": "/rHnSgkW6oTajbz6L3BETYbqdJZe.jpg", "order": 26}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe4268c3a36847f801c553", "cast_id": 52, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 27}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe4268c3a36847f801c557", "cast_id": 53, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 28}, {"name": "George Harris", "character": "Kingsley Shacklebolt", "id": 2247, "credit_id": "52fe4268c3a36847f801c55b", "cast_id": 54, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 29}, {"name": "Peter Cartwright", "character": "Elphias Doge", "id": 186070, "credit_id": "52fe4268c3a36847f801c55f", "cast_id": 55, "profile_path": "/xsxj1F1ChT1TYjqAhByH5YsLsIN.jpg", "order": 30}, {"name": "Brigitte Millar", "character": "Emmeline Vance", "id": 1093974, "credit_id": "52fe4268c3a36847f801c563", "cast_id": 56, "profile_path": "/GatLQkdB5h3nOlk7oT8ntcHxGq.jpg", "order": 31}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe4268c3a36847f801c567", "cast_id": 57, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 32}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe4268c3a36847f801c56b", "cast_id": 58, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 33}, {"name": "Timothy Bateson", "character": "Kreacher (voice)", "id": 3548, "credit_id": "52fe4268c3a36847f801c56f", "cast_id": 59, "profile_path": "/dHSn6dpypXLmNCrCwOy3fJDbPsT.jpg", "order": 34}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4268c3a36847f801c573", "cast_id": 60, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 35}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe4268c3a36847f801c577", "cast_id": 61, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 36}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4268c3a36847f801c57b", "cast_id": 62, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 37}, {"name": "Jamie Wolpert", "character": "Newspaper Vendor", "id": 1093975, "credit_id": "52fe4268c3a36847f801c57f", "cast_id": 63, "profile_path": "/nnGC5obVIQmsal3erP6nJUX6LaA.jpg", "order": 38}, {"name": "Nicholas Blane", "character": "Bob", "id": 133031, "credit_id": "52fe4268c3a36847f801c583", "cast_id": 64, "profile_path": "/dZ1Z9EPSGItJO4Zv2Eu0d4B9czf.jpg", "order": 39}, {"name": "Daisy Haggard", "character": "Voice of Lift", "id": 209458, "credit_id": "52fe4268c3a36847f801c587", "cast_id": 65, "profile_path": "/sAwONMmNmeiI85XOzueXJc2cI3k.jpg", "order": 40}, {"name": "Chris Rankin", "character": "Percy Weasley", "id": 10992, "credit_id": "52fe4268c3a36847f801c58b", "cast_id": 66, "profile_path": "/3HEK2yr0YOEE7A5qf0SGs3VhUNz.jpg", "order": 41}, {"name": "Sian Thomas", "character": "Amelia Bones", "id": 17069, "credit_id": "52fe4268c3a36847f801c58f", "cast_id": 67, "profile_path": "/jI0TOejWhHQCkTwyMyDTmm74VmD.jpg", "order": 42}, {"name": "Jamie Waylett", "character": "Vincent Crabbe", "id": 956224, "credit_id": "52fe4268c3a36847f801c593", "cast_id": 68, "profile_path": "/nvw2IgN2BcpT2MczUuwSaTYuqZK.jpg", "order": 43}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4268c3a36847f801c597", "cast_id": 69, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 44}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe4268c3a36847f801c59b", "cast_id": 70, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 45}, {"name": "Ryan Nelson", "character": "Slightly Creepy Boy", "id": 189689, "credit_id": "52fe4268c3a36847f801c59f", "cast_id": 71, "profile_path": "/zNxIuuug0clWzhj6Xq0ERqLVn2Y.jpg", "order": 46}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4268c3a36847f801c5a3", "cast_id": 72, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 47}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe4268c3a36847f801c5a7", "cast_id": 73, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 48}, {"name": "Apple Brook", "character": "Wilhelmina Grubbly-Plank", "id": 1093976, "credit_id": "52fe4268c3a36847f801c5af", "cast_id": 75, "profile_path": "/kScQRjMg6wBHA0lfRnyUkj0lrEE.jpg", "order": 49}, {"name": "William Melling", "character": "Nigel 2nd Year", "id": 568374, "credit_id": "52fe4268c3a36847f801c5ab", "cast_id": 74, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 50}, {"name": "Emma Thompson", "character": "Sybil Trelawney", "id": 7056, "credit_id": "52fe4268c3a36847f801c5b3", "cast_id": 76, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 51}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe4268c3a36847f801c5b7", "cast_id": 77, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 52}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe4268c3a36847f801c5bb", "cast_id": 78, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 53}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe4268c3a36847f801c5bf", "cast_id": 79, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 54}, {"name": "Warwick Davis", "character": "Filius Flitwick", "id": 11184, "credit_id": "52fe4268c3a36847f801c5c3", "cast_id": 80, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 55}, {"name": "Jim McManus", "character": "Aberforth Dumbledore", "id": 144867, "credit_id": "52fe4268c3a36847f801c5c7", "cast_id": 81, "profile_path": null, "order": 56}, {"name": "Nick Shirm", "character": "Zacharias Smith", "id": 1093977, "credit_id": "52fe4268c3a36847f801c5cb", "cast_id": 82, "profile_path": "/kvAPWcWo1YzMgRHFDwh5uDPrFBT.jpg", "order": 57}, {"name": "Sam Beazley", "character": "Everard", "id": 192865, "credit_id": "52fe4268c3a36847f801c5cf", "cast_id": 83, "profile_path": "/cMhvf6mLdjF69CxzRnNneZRCjnw.jpg", "order": 58}, {"name": "John Atterbury", "character": "Phineas Nigellus Black", "id": 559759, "credit_id": "52fe4268c3a36847f801c5d3", "cast_id": 84, "profile_path": "/ceOmkoLlV6cRG4VjQdHlQvxVUJy.jpg", "order": 59}, {"name": "Arben Bajraktaraj", "character": "Azkaban Death Eater", "id": 234921, "credit_id": "52fe4268c3a36847f801c5d7", "cast_id": 85, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 60}, {"name": "Richard Leaf", "character": "John Dawlish", "id": 16792, "credit_id": "52fe4268c3a36847f801c5db", "cast_id": 86, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 61}, {"name": "Tony Maudsley", "character": "Grawp", "id": 79856, "credit_id": "52fe4268c3a36847f801c5df", "cast_id": 87, "profile_path": "/7VjhAftH1YBVEm3GRznNiX0Q3Pu.jpg", "order": 62}, {"name": "Robbie Jarvis", "character": "Young James Potter", "id": 568390, "credit_id": "537755a20e0a26141c002015", "cast_id": 88, "profile_path": "/xTnsHpzeaBb3KcDsf2OgGNWbJOP.jpg", "order": 63}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe4268c3a36847f801c465", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 6.9, "runtime": 138}, "676": {"poster_path": "/gzjMpcyV1RksWonaA87DZ8wQTH0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 449220945, "overview": "The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.", "video": false, "id": 676, "genres": [{"id": 10752, "name": "War"}], "title": "Pearl Harbor", "tagline": "December 7, 1941 - A day that shall live in infamy.", "vote_count": 479, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0213149", "adult": false, "backdrop_path": "/cDctk61tUeQz4LX7tTFPknI28ea.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2001-05-21", "popularity": 1.68738542608612, "original_title": "Pearl Harbor", "budget": 140000000, "cast": [{"name": "Ben Affleck", "character": "Capt. Rafe McCawley", "id": 880, "credit_id": "52fe4269c3a36847f801c6f9", "cast_id": 29, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Josh Hartnett", "character": "Capt. Danny Walker", "id": 2299, "credit_id": "52fe4269c3a36847f801c6fd", "cast_id": 30, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 1}, {"name": "Kate Beckinsale", "character": "Nurse Lt. Evelyn Johnson", "id": 3967, "credit_id": "52fe4269c3a36847f801c701", "cast_id": 31, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 2}, {"name": "Cuba Gooding Jr.", "character": "Petty Officer Doris Miller", "id": 9777, "credit_id": "52fe4269c3a36847f801c705", "cast_id": 32, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 3}, {"name": "Jon Voight", "character": "President Franklin Delano Roosevelt", "id": 10127, "credit_id": "52fe4269c3a36847f801c709", "cast_id": 33, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 4}, {"name": "Alec Baldwin", "character": "Lt. Col. James Doolittle", "id": 7447, "credit_id": "52fe4269c3a36847f801c70d", "cast_id": 34, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 5}, {"name": "Tom Sizemore", "character": "Sgt. Earl Sistern", "id": 3197, "credit_id": "52fe4269c3a36847f801c711", "cast_id": 35, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 6}, {"name": "William Lee Scott", "character": "Lt. Billy Thompson", "id": 10128, "credit_id": "52fe4269c3a36847f801c715", "cast_id": 36, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 7}, {"name": "Greg Zola", "character": "Lt. Anthony Fusco", "id": 10129, "credit_id": "52fe4269c3a36847f801c719", "cast_id": 37, "profile_path": "/vbtTeNeYbGHmmbbyQX9m9wzTurI.jpg", "order": 8}, {"name": "Ewen Bremner", "character": "Lt. Red Winkle", "id": 1125, "credit_id": "52fe4269c3a36847f801c71d", "cast_id": 38, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 9}, {"name": "Jaime King", "character": "Nurse Betty Bayer", "id": 5915, "credit_id": "52fe4269c3a36847f801c721", "cast_id": 39, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 10}, {"name": "Catherine Kellner", "character": "Nurse Barbara", "id": 10130, "credit_id": "52fe4269c3a36847f801c725", "cast_id": 40, "profile_path": "/hmOfknife4GM8oHRqbsMUC03d4W.jpg", "order": 11}, {"name": "Jennifer Garner", "character": "Nurse Sandra", "id": 9278, "credit_id": "52fe4269c3a36847f801c729", "cast_id": 41, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 12}, {"name": "Sara Rue", "character": "Nurse Martha", "id": 10131, "credit_id": "52fe4269c3a36847f801c72d", "cast_id": 42, "profile_path": "/1OlEg9M8oSsGivjyFJJFyCkKqkk.jpg", "order": 13}, {"name": "Michael Shannon", "character": "Lt. Gooz Wood", "id": 335, "credit_id": "52fe4269c3a36847f801c731", "cast_id": 43, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 14}, {"name": "Dan Aykroyd", "character": "Capt. Thurman", "id": 707, "credit_id": "52fe4269c3a36847f801c735", "cast_id": 44, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 15}, {"name": "Colm Feore", "character": "Adm. Husband E. Kimmel", "id": 10132, "credit_id": "52fe4269c3a36847f801c739", "cast_id": 45, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 16}, {"name": "John Fujioka", "character": "Nishikura", "id": 10133, "credit_id": "52fe4269c3a36847f801c73d", "cast_id": 46, "profile_path": "/bbJTzJbrUPJblryGuJT8pAlQZfh.jpg", "order": 17}, {"name": "Mako", "character": "Adm. Isoroku Yamamoto", "id": 10134, "credit_id": "52fe4269c3a36847f801c741", "cast_id": 47, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 18}, {"name": "Jesse James", "character": "Young Rafe", "id": 10135, "credit_id": "52fe4269c3a36847f801c745", "cast_id": 48, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 19}, {"name": "Reiley McClendon", "character": "Young Danny", "id": 10136, "credit_id": "52fe4269c3a36847f801c749", "cast_id": 49, "profile_path": "/mEvaLTUeZBqmETH07MaaApsPm1E.jpg", "order": 20}, {"name": "William Fichtner", "character": "Danny's Father", "id": 886, "credit_id": "52fe4269c3a36847f801c74d", "cast_id": 50, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 21}, {"name": "Steve Rankin", "character": "Rafe's Father", "id": 10137, "credit_id": "52fe4269c3a36847f801c751", "cast_id": 51, "profile_path": "/5qMs4c4I7tcmubYy0xqBU7BVwSm.jpg", "order": 22}, {"name": "Brian Haley", "character": "Training Captain", "id": 10138, "credit_id": "52fe4269c3a36847f801c755", "cast_id": 52, "profile_path": "/oGaZ2sa0nHJ95vW7nN2TgjeeXGM.jpg", "order": 23}, {"name": "Graham Beckel", "character": "Adm. Chester W. Nimitz", "id": 6110, "credit_id": "52fe4269c3a36847f801c759", "cast_id": 53, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 24}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4269c3a36847f801c75f", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.2, "runtime": 183}, "8869": {"poster_path": "/bZ0NbGYLsMQvJK0DZbr8uu9poHU.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The residents of a rural mining town discover that an unfortunate chemical spill has caused hundreds of little spiders to mutate overnight to the size of SUVs. It's then up to mining engineer Chris McCormack and Sheriff Sam Parker to mobilize an eclectic group of townspeople, including the Sheriff's young son, Mike, her daughter, Ashley, and paranoid radio announcer Harlan, into battle against the bloodthirsty eight-legged beasts.", "video": false, "id": 8869, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Eight Legged Freaks", "tagline": "Do you hate spiders? Do you really hate spiders? Well they don't like you either.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0271367", "adult": false, "backdrop_path": "/uNQhUXEWOeU914lqfNcCAbaL8bJ.jpg", "production_companies": [{"name": "Centropolis Entertainment", "id": 347}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Warner Bros.", "id": 6194}, {"name": "Electric Entertainment", "id": 3241}], "release_date": "2002-07-17", "popularity": 0.316676662577129, "original_title": "Eight Legged Freaks", "budget": 0, "cast": [{"name": "David Arquette", "character": "Chris McCormick", "id": 15234, "credit_id": "52fe44c2c3a36847f80a8563", "cast_id": 12, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 0}, {"name": "Kari W\u00fchrer", "character": "Sheriff Samantha Parker", "id": 56152, "credit_id": "52fe44c2c3a36847f80a8567", "cast_id": 13, "profile_path": "/2WmKU8E0lMmdBcC7F9iLLz7S2Qc.jpg", "order": 1}, {"name": "Scott Terra", "character": "Mike Parker", "id": 56153, "credit_id": "52fe44c2c3a36847f80a856b", "cast_id": 14, "profile_path": "/4mXaoogOk48PNVqcCjkXAL7zea8.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Ashley Parker", "id": 1245, "credit_id": "52fe44c2c3a36847f80a856f", "cast_id": 15, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Doug E. Doug", "character": "Harlan Griffith", "id": 12975, "credit_id": "52fe44c2c3a36847f80a8573", "cast_id": 16, "profile_path": "/dXoCEr8S5YvVdZeyJAgNChSvdu4.jpg", "order": 4}, {"name": "Rick Overton", "character": "Deputy Pete Willis", "id": 1539, "credit_id": "52fe44c2c3a36847f80a8577", "cast_id": 17, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 5}, {"name": "Leon Rippy", "character": "Wade", "id": 15374, "credit_id": "52fe44c2c3a36847f80a857b", "cast_id": 18, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 6}, {"name": "Matt Czuchry", "character": "Bret", "id": 55547, "credit_id": "52fe44c2c3a36847f80a857f", "cast_id": 19, "profile_path": "/jZTrTPDQqdOUwLNV0gSKuTZmRKk.jpg", "order": 7}, {"name": "Eileen Ryan", "character": "Gladys", "id": 12543, "credit_id": "52fe44c2c3a36847f80a8583", "cast_id": 20, "profile_path": "/ypA36mXS3CcyvtKCdBMhI3gn4Vs.jpg", "order": 8}, {"name": "Riley Smith", "character": "Randy", "id": 67850, "credit_id": "52fe44c2c3a36847f80a8587", "cast_id": 21, "profile_path": "/pef2GeUoMY1ECORr0n3ev6EO6m2.jpg", "order": 9}, {"name": "Jane Edith Wilson", "character": "Emma", "id": 156980, "credit_id": "52fe44c2c3a36847f80a858b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Jack Moore", "character": "Amos", "id": 117564, "credit_id": "52fe44c2c3a36847f80a858f", "cast_id": 23, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 11}, {"name": "Roy Gaintner", "character": "Floyd", "id": 1154284, "credit_id": "52fe44c2c3a36847f80a8593", "cast_id": 24, "profile_path": null, "order": 12}], "directors": [{"name": "Ellory Elkayem", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a8523", "profile_path": "/5xrIzpPUiOJnuolrTGWt5nyU6io.jpg", "id": 56150}], "vote_average": 5.5, "runtime": 99}, "8870": {"poster_path": "/wgXnmZG8vG7Fhmk9r3NofQsu44A.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33463969, "overview": "Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry.", "video": false, "id": 8870, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Red Planet", "tagline": "Not A Sound. Not A Warning. Not A Chance. Not Alone.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0199753", "adult": false, "backdrop_path": "/BwAlurHOXrHtDHX5UUIhiB9u6F.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "The Canton Company", "id": 22351}], "release_date": "2000-11-06", "popularity": 0.570006174562803, "original_title": "Red Planet", "budget": 80000000, "cast": [{"name": "Val Kilmer", "character": "Robby Gallagher", "id": 5576, "credit_id": "52fe44c2c3a36847f80a8605", "cast_id": 13, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Cmdr. Kate Bowman", "id": 530, "credit_id": "52fe44c2c3a36847f80a8609", "cast_id": 14, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Benjamin Bratt", "character": "Lt. Ted Santen", "id": 4589, "credit_id": "52fe44c2c3a36847f80a860d", "cast_id": 15, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 2}, {"name": "Tom Sizemore", "character": "Dr. Quinn Burchenal", "id": 3197, "credit_id": "52fe44c2c3a36847f80a8611", "cast_id": 16, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 3}, {"name": "Simon Baker", "character": "Chip Pettengill", "id": 1284159, "credit_id": "52fe44c2c3a36847f80a8619", "cast_id": 19, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 4}, {"name": "Terence Stamp", "character": "Dr. Bud Chantilas", "id": 28641, "credit_id": "52fe44c2c3a36847f80a8615", "cast_id": 18, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 5}], "directors": [{"name": "Antony Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a85bf", "profile_path": "/gZax9b2dcV8dXFKowLA6NncnFcR.jpg", "id": 56154}], "vote_average": 5.4, "runtime": 106}, "679": {"poster_path": "/nORMXEkYEbzkU5WkMWMgRDJwjSZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131060248, "overview": "When Ripley's lifepod is found by a salvage crew over 50 years later, she finds that terra-formers are on the very planet they found the alien species. When the company sends a family of colonists out to investigate her story... all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.", "video": false, "id": 679, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Aliens", "tagline": "This Time It's War", "vote_count": 1175, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090605", "adult": false, "backdrop_path": "/tgXaHtpmxj4SkMxBTi1Desl6Mc6.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Brandywine Productions", "id": 19747}, {"name": "SLM Production Group", "id": 396}], "release_date": "1986-07-18", "popularity": 1.89115344020609, "original_title": "Aliens", "budget": 18500000, "cast": [{"name": "Sigourney Weaver", "character": "Lieutenant Ellen Ripley", "id": 10205, "credit_id": "52fe4269c3a36847f801c9bf", "cast_id": 21, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Carrie Henn", "character": "Rebecca \"Newt\" Jorden", "id": 10206, "credit_id": "52fe4269c3a36847f801c9c3", "cast_id": 22, "profile_path": "/6MrxgxZoiUDA8k0GUwLuBcXN03B.jpg", "order": 1}, {"name": "Michael Biehn", "character": "Corporal Dwayne Hicks", "id": 2712, "credit_id": "52fe4269c3a36847f801c9c7", "cast_id": 23, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 2}, {"name": "Lance Henriksen", "character": "L. Bishop", "id": 2714, "credit_id": "52fe4269c3a36847f801c9cb", "cast_id": 24, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 3}, {"name": "Paul Reiser", "character": "Carter J. Burke", "id": 781, "credit_id": "52fe4269c3a36847f801c9cf", "cast_id": 25, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 4}, {"name": "Bill Paxton", "character": "Private W. Hudson", "id": 2053, "credit_id": "52fe4269c3a36847f801c9d3", "cast_id": 26, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 5}, {"name": "William Hope", "character": "Lieutenant S. Gorman", "id": 10207, "credit_id": "52fe4269c3a36847f801c9d7", "cast_id": 27, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 6}, {"name": "Jenette Goldstein", "character": "Private J. Vasquez", "id": 3981, "credit_id": "52fe4269c3a36847f801c9db", "cast_id": 28, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 7}, {"name": "Al Matthews", "character": "Sergeant A. Apone", "id": 10208, "credit_id": "52fe4269c3a36847f801c9df", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Mark Rolston", "character": "Private M. Drake", "id": 6576, "credit_id": "52fe4269c3a36847f801c9e3", "cast_id": 30, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 9}, {"name": "Colette Hiller", "character": "Corporal C. Ferro", "id": 10209, "credit_id": "52fe4269c3a36847f801c9e7", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Daniel Kash", "character": "Private D. Spunkmeyer", "id": 10210, "credit_id": "52fe4269c3a36847f801c9eb", "cast_id": 32, "profile_path": "/b6lvtpkTRHHcv4YMW3FnGRtyXJ4.jpg", "order": 11}, {"name": "Cynthia Dale Scott", "character": "Corporal C. Dietrich", "id": 10211, "credit_id": "52fe4269c3a36847f801c9ef", "cast_id": 33, "profile_path": "/cBrZS9bmSrRclBVHG6QeSuUj1Q9.jpg", "order": 12}, {"name": "Ricco Ross", "character": "Private R. Frost", "id": 10212, "credit_id": "52fe4269c3a36847f801c9f3", "cast_id": 34, "profile_path": "/ep1gfuShCdZghxBGBtNWhWTxWpp.jpg", "order": 13}, {"name": "Tip Tipping", "character": "Private T. Crowe", "id": 10213, "credit_id": "52fe4269c3a36847f801c9f7", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4269c3a36847f801c94f", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.4, "runtime": 137}, "680": {"poster_path": "/dM2w364MScsjFf8pfMbaWUcWrR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213928762, "overview": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", "video": false, "id": 680, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Pulp Fiction", "tagline": "Just because you are a character doesn't mean you have character.", "vote_count": 3147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0110912", "adult": false, "backdrop_path": "/9rZg1J6vMQoDVSgRyWcpJa8IAGy.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "A Band Apart", "id": 59}, {"name": "Jersey Films", "id": 216}], "release_date": "1994-10-14", "popularity": 2.61181948517317, "original_title": "Pulp Fiction", "budget": 8000000, "cast": [{"name": "Tim Roth", "character": "Pumpkin", "id": 3129, "credit_id": "52fe4269c3a36847f801cac3", "cast_id": 11, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 0}, {"name": "Amanda Plummer", "character": "Honey Bunny", "id": 99, "credit_id": "52fe4269c3a36847f801cac7", "cast_id": 12, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 1}, {"name": "Laura Lovelace", "character": "Waitress", "id": 11807, "credit_id": "52fe426ac3a36847f801cb37", "cast_id": 34, "profile_path": "/hty1tWzaBThqc6AwuBlpanIeT4x.jpg", "order": 2}, {"name": "John Travolta", "character": "Vincent Vega", "id": 8891, "credit_id": "52fe4269c3a36847f801ca99", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 3}, {"name": "Samuel L. Jackson", "character": "Jules Winfield", "id": 2231, "credit_id": "52fe4269c3a36847f801ca9d", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 4}, {"name": "Phil LaMarr", "character": "Marvin", "id": 31549, "credit_id": "52fe426ac3a36847f801cb4f", "cast_id": 40, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 5}, {"name": "Frank Whaley", "character": "Brett", "id": 11805, "credit_id": "52fe426ac3a36847f801cb27", "cast_id": 30, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 6}, {"name": "Burr Steers", "character": "Roger", "id": 58552, "credit_id": "52fe426ac3a36847f801cb57", "cast_id": 42, "profile_path": "/rWztkNxfPclLILEjAhaHaOHSWs3.jpg", "order": 7}, {"name": "Bruce Willis", "character": "Butch Coolidge", "id": 62, "credit_id": "52fe4269c3a36847f801ca95", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 8}, {"name": "Ving Rhames", "character": "Marsellus Wallace", "id": 10182, "credit_id": "52fe4269c3a36847f801cabf", "cast_id": 10, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 9}, {"name": "Paul Calderon", "character": "Paul", "id": 3137, "credit_id": "52fe426ac3a36847f801cb23", "cast_id": 29, "profile_path": "/uS3RyQ6QWr5P6bwHDJWc4UeTnvG.jpg", "order": 10}, {"name": "Bronagh Gallagher", "character": "Trudi", "id": 33399, "credit_id": "52fe426ac3a36847f801cb43", "cast_id": 37, "profile_path": "/h44VuQ4yxA9ssITldXngDKSLoBQ.jpg", "order": 11}, {"name": "Rosanna Arquette", "character": "Jody", "id": 2165, "credit_id": "52fe426ac3a36847f801cb1b", "cast_id": 27, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 12}, {"name": "Eric Stoltz", "character": "Lance", "id": 7036, "credit_id": "52fe4269c3a36847f801cabb", "cast_id": 9, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 13}, {"name": "Uma Thurman", "character": "Mia Wallace", "id": 139, "credit_id": "52fe4269c3a36847f801cab7", "cast_id": 8, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 14}, {"name": "Jerome Patrick Hoban", "character": "Ed Sullivan", "id": 1174004, "credit_id": "52fe426ac3a36847f801cb73", "cast_id": 49, "profile_path": null, "order": 15}, {"name": "Michael Gilden", "character": "Page for Phillip Morris", "id": 1174003, "credit_id": "52fe426ac3a36847f801cb6f", "cast_id": 48, "profile_path": null, "order": 16}, {"name": "Gary Shorelle", "character": "Ricky Nelson", "id": 1174007, "credit_id": "52fe426ac3a36847f801cb87", "cast_id": 54, "profile_path": null, "order": 17}, {"name": "Susan Griffiths", "character": "Marilyn Monroe", "id": 1174000, "credit_id": "52fe426ac3a36847f801cb5b", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Eric Clark", "character": "James Dean", "id": 1174001, "credit_id": "52fe426ac3a36847f801cb5f", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Joseph Pilato", "character": "Dean Martin", "id": 54855, "credit_id": "52fe426ac3a36847f801cb63", "cast_id": 45, "profile_path": "/l5xtdrOmCgOrLiOs4HvyiLEmtNH.jpg", "order": 20}, {"name": "Brad Blumenthal", "character": "Jerry Lewis (as Brad Parker)", "id": 1174008, "credit_id": "52fe426ac3a36847f801cb8b", "cast_id": 55, "profile_path": null, "order": 21}, {"name": "Steve Buscemi", "character": "Buddy Holly", "id": 884, "credit_id": "52fe426ac3a36847f801cb2b", "cast_id": 31, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 22}, {"name": "Lorelei Leslie", "character": "Mamie van Doren", "id": 1099751, "credit_id": "52fe426ac3a36847f801cb83", "cast_id": 53, "profile_path": null, "order": 23}, {"name": "Emil Sitka", "character": "Hold Hands You Lovebirds (archive footage)", "id": 107023, "credit_id": "52fe426ac3a36847f801cbb3", "cast_id": 64, "profile_path": null, "order": 24}, {"name": "Brenda Hillhouse", "character": "Mrs. Coolidge - Butch's Mother", "id": 11162, "credit_id": "52fe426ac3a36847f801cb67", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Christopher Walken", "character": "Captain Koons", "id": 4690, "credit_id": "52fe426ac3a36847f801cb2f", "cast_id": 32, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 26}, {"name": "Chandler Lindauer", "character": "Young Butch", "id": 1174002, "credit_id": "52fe426ac3a36847f801cb6b", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Sy Sher", "character": "Klondike", "id": 1174006, "credit_id": "52fe426ac3a36847f801cb7f", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Robert Ruth", "character": "Sportscaster #1 - Coffee Shop", "id": 1173999, "credit_id": "52fe426ac3a36847f801cb53", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Rich Turner", "character": "Sportscaster #2", "id": 46346, "credit_id": "52fe426ac3a36847f801cb8f", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Angela Jones", "character": "Esmarelda Villalobos", "id": 71836, "credit_id": "52fe426ac3a36847f801cb4b", "cast_id": 39, "profile_path": "/p7pNCt4uBTDk9kRkPU3BFfXfEPq.jpg", "order": 31}, {"name": "Don Blakely", "character": "Wilson's Trainer", "id": 90337, "credit_id": "52fe426ac3a36847f801cb7b", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Carl Allen", "character": "Dead Floyd Wilson", "id": 1174005, "credit_id": "52fe426ac3a36847f801cb77", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Maria de Medeiros", "character": "Fabienne", "id": 2319, "credit_id": "52fe4269c3a36847f801cacb", "cast_id": 13, "profile_path": "/cj7S0ncXnHlvDes44umI4TjESoE.jpg", "order": 34}, {"name": "Karen Maruyama", "character": "Gawker #1", "id": 157865, "credit_id": "52fe426ac3a36847f801cba3", "cast_id": 61, "profile_path": "/jthFzZk2riKzFt0kRt0YOqvvGzr.jpg", "order": 35}, {"name": "Kathy Griffin", "character": "Hit-and-run Witness", "id": 3138, "credit_id": "52fe426ac3a36847f801cb9f", "cast_id": 60, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 36}, {"name": "Venessia Valentino", "character": "Pedestrian / Bonnie Dimmick", "id": 1174009, "credit_id": "52fe426ac3a36847f801cb93", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Linda Kaye", "character": "Shot Woman", "id": 65907, "credit_id": "52fe426ac3a36847f801cb9b", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Duane Whitaker", "character": "Maynard", "id": 11804, "credit_id": "52fe426ac3a36847f801cb1f", "cast_id": 28, "profile_path": "/cFSmuGjUNonH683dmvx0mZ2Uots.jpg", "order": 39}, {"name": "Peter Greene", "character": "Zed", "id": 11803, "credit_id": "52fe426ac3a36847f801cb17", "cast_id": 26, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 40}, {"name": "Stephen Hibbert", "character": "The Gimp", "id": 1173998, "credit_id": "52fe426ac3a36847f801cb47", "cast_id": 38, "profile_path": null, "order": 41}, {"name": "Alexis Arquette", "character": "Man No. 4", "id": 19578, "credit_id": "52fe426ac3a36847f801cb3f", "cast_id": 36, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 42}, {"name": "Quentin Tarantino", "character": "Jimmie Dimmick", "id": 138, "credit_id": "52fe426ac3a36847f801cb3b", "cast_id": 35, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 43}, {"name": "Harvey Keitel", "character": "Wolf", "id": 1037, "credit_id": "52fe4269c3a36847f801cab3", "cast_id": 7, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 44}, {"name": "Julia Sweeney", "character": "Raquel", "id": 11806, "credit_id": "52fe426ac3a36847f801cb33", "cast_id": 33, "profile_path": "/hy7ZoNmr0h3AcrBkbnTLOXZnwRd.jpg", "order": 45}, {"name": "Lawrence Bender", "character": "Long Hair Yuppy Scum", "id": 2545, "credit_id": "52fe426ac3a36847f801cb97", "cast_id": 58, "profile_path": "/5EzlP8qdCYQrhqEYB2MTmY74KFB.jpg", "order": 46}, {"name": "Cie Allman", "character": "Winston Wolfe's Girlfriend At Party (uncredited)", "id": 1274295, "credit_id": "52fe426ac3a36847f801cbb7", "cast_id": 65, "profile_path": null, "order": 47}, {"name": "Rene Beard", "character": "Bar Tender (uncredited)", "id": 1177915, "credit_id": "52fe426ac3a36847f801cbbb", "cast_id": 66, "profile_path": null, "order": 48}, {"name": "Lori Pizzo", "character": "Lucky Lady (uncredited)", "id": 1274296, "credit_id": "52fe426ac3a36847f801cbbf", "cast_id": 67, "profile_path": null, "order": 49}, {"name": "Glendon Rich", "character": "Drug Dealer (uncredited)", "id": 1274297, "credit_id": "52fe426ac3a36847f801cbc3", "cast_id": 68, "profile_path": null, "order": 50}, {"name": "Devan Richardson", "character": "Hopalong Cassidy (uncredited)", "id": 1274298, "credit_id": "52fe426ac3a36847f801cbc7", "cast_id": 69, "profile_path": null, "order": 51}, {"name": "Ani Sava", "character": "Woman in Bathroom (uncredited)", "id": 1274299, "credit_id": "52fe426ac3a36847f801cbcb", "cast_id": 70, "profile_path": null, "order": 52}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4269c3a36847f801caa3", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.8, "runtime": 154}, "681": {"poster_path": "/981iPRF4mO2jLZNO2gu0j7pUoFP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 116000000, "overview": "Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who\u2019s guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.", "video": false, "id": 681, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Diamonds Are Forever", "tagline": "The man who made 007 a household number", "vote_count": 168, "homepage": "http://www.mgm.com/view/movie/529/Diamonds-Are-Forever/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0066995", "adult": false, "backdrop_path": "/gIGLXXvsljHK1jdDNaIXsjhZnnH.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1971-12-29", "popularity": 1.45851376471287, "original_title": "Diamonds Are Forever", "budget": 7200000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe426ac3a36847f801cc7f", "cast_id": 19, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Jill St. John", "character": "Tiffany Case", "id": 10190, "credit_id": "52fe426ac3a36847f801cc83", "cast_id": 20, "profile_path": "/g2qh046VvBgUX1pShKWNaWdFTKc.jpg", "order": 1}, {"name": "Charles Gray", "character": "Ernst Stavro Blofeld", "id": 10074, "credit_id": "52fe426ac3a36847f801cc87", "cast_id": 21, "profile_path": "/ejgGEya19V1jUBqixTz9D8xIjlR.jpg", "order": 2}, {"name": "Lana Wood", "character": "Plenty O'Toole", "id": 10191, "credit_id": "52fe426ac3a36847f801cc8b", "cast_id": 22, "profile_path": "/8ENomc6bZLSADOFDxJaiyR0s8fJ.jpg", "order": 3}, {"name": "Jimmy Dean", "character": "Willard Whyte", "id": 10192, "credit_id": "52fe426ac3a36847f801cc8f", "cast_id": 23, "profile_path": "/wlTB6VVOtyV76kFeJpI9yLiMWEX.jpg", "order": 4}, {"name": "Bruce Cabot", "character": "Albert R. Saxby", "id": 3244, "credit_id": "52fe426ac3a36847f801cc93", "cast_id": 24, "profile_path": "/mcmXDB2cTMHhJXTzHrZVIet0lWG.jpg", "order": 5}, {"name": "Putter Smith", "character": "Mr. Kidd", "id": 10193, "credit_id": "52fe426ac3a36847f801cc97", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Bruce Glover", "character": "Mr. Wint", "id": 10194, "credit_id": "52fe426ac3a36847f801cc9b", "cast_id": 26, "profile_path": "/xVS6edZlUempGkjWqSnPnkGcRTw.jpg", "order": 7}, {"name": "Norman Burton", "character": "Felix Leiter", "id": 10195, "credit_id": "52fe426ac3a36847f801cc9f", "cast_id": 27, "profile_path": "/ezoKMuCDcWSnDaB5pVWMyj21E6H.jpg", "order": 8}, {"name": "Joseph Furst", "character": "Prof. Dr. Metz", "id": 10196, "credit_id": "52fe426ac3a36847f801cca3", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426ac3a36847f801cca7", "cast_id": 29, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ac3a36847f801ccab", "cast_id": 30, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426ac3a36847f801ccaf", "cast_id": 31, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 12}, {"name": "Marc Lawrence", "character": "Slumber Inc. Attendant", "id": 3140, "credit_id": "52fe426ac3a36847f801ccb3", "cast_id": 32, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 13}, {"name": "Laurence Naismith", "character": "Sir Donald Munger", "id": 69764, "credit_id": "52fe426ac3a36847f801ccb7", "cast_id": 33, "profile_path": "/tjoCWRagvyS0Npcd1XwWDPDURMv.jpg", "order": 14}, {"name": "Leonard Barr", "character": "Shady Tree", "id": 1221898, "credit_id": "5404bf74c3a3684366006fce", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Margaret Lacey", "character": "Mrs. Whistler", "id": 228813, "credit_id": "5404bf96c3a3684372006d22", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "David de Keyser", "character": "Doctor", "id": 79866, "credit_id": "5404bfc0c3a368119c002544", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "David Bauer", "character": "Mr. Slumber", "id": 93949, "credit_id": "5404bfe3c3a3684366006fd6", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Sid Haig", "character": "Slumber Inc. Attendant", "id": 5695, "credit_id": "5404bff5c3a368068c006d30", "cast_id": 38, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 19}, {"name": "Lola Larson", "character": "Bambi (uncredited)", "id": 111838, "credit_id": "54256c0ec3a368697600091f", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Trina Parks", "character": "Thumper (uncredited)", "id": 111841, "credit_id": "54256c230e0a263b7a005c24", "cast_id": 40, "profile_path": "/sQaELcXf6mzjOO2IeAZzeqWuUtz.jpg", "order": 21}, {"name": "Valerie Perrine", "character": "Shady Tree's Acorn (uncredited)", "id": 26483, "credit_id": "54256c370e0a263b6e005c2f", "cast_id": 41, "profile_path": "/1Er0uPPTmQ7perH3hZmozvbYDX.jpg", "order": 22}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801cc15", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 6.2, "runtime": 120}, "8874": {"poster_path": "/5hHAjv9RaCtR0lsg7QiRktflsk7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126813153, "overview": "When she receives word that her longtime platonic pal Michael O'Neal is getting married to debutante Kimberly Wallace, food critic Julianne Potter realizes her true feelings for Michael -- and sets out to sabotage the wedding.", "video": false, "id": 8874, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "My Best Friend's Wedding", "tagline": "It's about finding the love of your life. And deciding what to do about it.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0119738", "adult": false, "backdrop_path": "/fVMZu49gYd5T8o1QaX0qVagv7YX.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1997-06-19", "popularity": 0.466400839837275, "original_title": "My Best Friend's Wedding", "budget": 46000000, "cast": [{"name": "Julia Roberts", "character": "Julianne Potter", "id": 1204, "credit_id": "52fe44c2c3a36847f80a88a1", "cast_id": 12, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Dermot Mulroney", "character": "Michael O'Neal", "id": 20212, "credit_id": "52fe44c2c3a36847f80a88a5", "cast_id": 13, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Kimberly Wallace", "id": 6941, "credit_id": "52fe44c2c3a36847f80a88a9", "cast_id": 14, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Rupert Everett", "character": "George Downes", "id": 4757, "credit_id": "52fe44c2c3a36847f80a88ad", "cast_id": 15, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 3}, {"name": "Philip Bosco", "character": "Walter Wallace", "id": 6541, "credit_id": "52fe44c2c3a36847f80a88b7", "cast_id": 17, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 4}, {"name": "M. Emmet Walsh", "character": "Joe O'Neal", "id": 588, "credit_id": "52fe44c2c3a36847f80a88bb", "cast_id": 18, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 5}, {"name": "Rachel Griffiths", "character": "Samantha Newhouse", "id": 3052, "credit_id": "52fe44c2c3a36847f80a88bf", "cast_id": 19, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 6}, {"name": "Carrie Preston", "character": "Mandy Newhouse", "id": 7465, "credit_id": "52fe44c2c3a36847f80a88c3", "cast_id": 20, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 7}, {"name": "Susan Sullivan", "character": "Isabelle Wallace", "id": 543204, "credit_id": "52fe44c2c3a36847f80a88c7", "cast_id": 21, "profile_path": "/pnhdm2VvkRaMEFDOjogvNCafUeq.jpg", "order": 8}, {"name": "Christopher Masterson", "character": "Scotty O'Neal", "id": 35769, "credit_id": "52fe44c3c3a36847f80a88cb", "cast_id": 22, "profile_path": "/gz0GFQmLLjo6Q9Gvf1rKdZd2XhM.jpg", "order": 9}, {"name": "Raci Alexander", "character": "Title Sequence Performer #1", "id": 1077879, "credit_id": "52fe44c3c3a36847f80a88cf", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Jennifer Garrett", "character": "Title Sequence Performer #2", "id": 1077880, "credit_id": "52fe44c3c3a36847f80a88d3", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Kelleia Sheerin", "character": "Title Sequence Performer #3", "id": 1007869, "credit_id": "52fe44c3c3a36847f80a88d7", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Bree Turner", "character": "Title Sequence Performer #4", "id": 62065, "credit_id": "52fe44c3c3a36847f80a88db", "cast_id": 26, "profile_path": "/vR34cXXPh9JFPrPy7DS0fjOaeIc.jpg", "order": 13}, {"name": "Cassie Creasy", "character": "Flower Girl", "id": 1077881, "credit_id": "52fe44c3c3a36847f80a88df", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Lucina Paquet", "character": "Kimmy's Grandma", "id": 86565, "credit_id": "52fe44c3c3a36847f80a88e3", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Aida Baggio", "character": "Old Woman #2", "id": 1077882, "credit_id": "52fe44c3c3a36847f80a88e7", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Shirley Kelly", "character": "Oldest Lady", "id": 1077883, "credit_id": "52fe44c3c3a36847f80a88eb", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "George Bozonelos", "character": "Party Guest", "id": 1077884, "credit_id": "52fe44c3c3a36847f80a88ef", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Loretta Paoletti", "character": "Party Guest", "id": 1077885, "credit_id": "52fe44c3c3a36847f80a88f3", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "P.J. Hogan", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a88b3", "profile_path": "/1ioLJjWkfihb4SllJIh8K9ilyBO.jpg", "id": 3045}], "vote_average": 6.1, "runtime": 105}, "686": {"poster_path": "/yRF1qpaQPZJjiORDsR7eUHzSHbf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171120329, "overview": "Contact is a science fiction film about an encounter with alien intelligence. Based on the novel by Carl Sagan the film starred Jodie Foster as the one chosen scientist who must make some difficult decisions between her beliefs, the truth, and reality.", "video": false, "id": 686, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Contact", "tagline": "If it's just us, it seems like an awful waste of space.", "vote_count": 302, "homepage": "http://contact-themovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118884", "adult": false, "backdrop_path": "/dBK75oCKuHVuJ9rSUnusIFbhocH.jpg", "production_companies": [{"name": "South Side Amusement Company", "id": 43910}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1997-07-11", "popularity": 1.35268003272206, "original_title": "Contact", "budget": 90000000, "cast": [{"name": "Jodie Foster", "character": "Eleanor Arroway", "id": 1038, "credit_id": "52fe426ac3a36847f801ce63", "cast_id": 5, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "David Morse", "character": "Ted Arroway", "id": 52, "credit_id": "52fe426ac3a36847f801ce67", "cast_id": 6, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 1}, {"name": "Matthew McConaughey", "character": "Palmer Joss", "id": 10297, "credit_id": "52fe426ac3a36847f801ce6b", "cast_id": 7, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 2}, {"name": "James Woods", "character": "Michael Kitz", "id": 4512, "credit_id": "52fe426ac3a36847f801ce6f", "cast_id": 8, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "John Hurt", "character": "S. R. Hadden", "id": 5049, "credit_id": "52fe426ac3a36847f801ce73", "cast_id": 9, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Rob Lowe", "character": "Richard Rank", "id": 2879, "credit_id": "52fe426ac3a36847f801ce77", "cast_id": 10, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 5}, {"name": "Tom Skerritt", "character": "David Drumlin", "id": 4139, "credit_id": "52fe426ac3a36847f801ce7b", "cast_id": 11, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 6}, {"name": "William Fichtner", "character": "Kent Clark", "id": 886, "credit_id": "52fe426ac3a36847f801ce7f", "cast_id": 12, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 7}, {"name": "Angela Bassett", "character": "Rachel Constantine", "id": 9780, "credit_id": "52fe426ac3a36847f801cea1", "cast_id": 18, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 8}, {"name": "Jake Busey", "character": "Joseph", "id": 28410, "credit_id": "52fe426ac3a36847f801cea5", "cast_id": 19, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 9}, {"name": "Jena Malone", "character": "Young Ellie", "id": 20089, "credit_id": "52fe426ac3a36847f801ceb5", "cast_id": 22, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 10}, {"name": "Henry Strozier", "character": "Minister", "id": 131120, "credit_id": "54b5430d92514107e0008602", "cast_id": 122, "profile_path": "/wfnHPBfsQ1C1a1DZCzIEegreIMx.jpg", "order": 11}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801ce4d", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.9, "runtime": 150}, "8879": {"poster_path": "/7C18VUCvZH5O0ibZogZP4TQJTiu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41410568, "overview": "A small gold mining camp is terrorised by a ruthless land owner wanting to take their land. Clint Eastwood arrives riding a pale horse just as a young girl is praying to God to help the miners. He is revealed to be a preacher with mysterious and possible otherworldly origins who teams up with the miners to defeat the land owner and the corrupt sheriff.", "video": false, "id": 8879, "genres": [{"id": 37, "name": "Western"}], "title": "Pale Rider", "tagline": "... and hell followed with him.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089767", "adult": false, "backdrop_path": "/trzERKnMxNFYsyFbsfO7a8EL1Bi.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Malpaso Company", "id": 15298}], "release_date": "1985-10-30", "popularity": 0.749994017097188, "original_title": "Pale Rider", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Preacher", "id": 190, "credit_id": "52fe44c3c3a36847f80a8a7d", "cast_id": 9, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Michael Moriarty", "character": "Hull Barret", "id": 21030, "credit_id": "52fe44c3c3a36847f80a8a81", "cast_id": 10, "profile_path": "/vWDVdQpYvCS0ez1z0zk5N9BffY9.jpg", "order": 1}, {"name": "Carrie Snodgress", "character": "Sarah Wheeler", "id": 44831, "credit_id": "52fe44c3c3a36847f80a8a85", "cast_id": 11, "profile_path": "/cmb0ZmIs3Ys8xMLpzibTjNIJRNN.jpg", "order": 2}, {"name": "Chris Penn", "character": "Josh LaHood", "id": 2969, "credit_id": "52fe44c3c3a36847f80a8a89", "cast_id": 12, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 3}, {"name": "Richard Dysart", "character": "Coy LaHood", "id": 15413, "credit_id": "52fe44c3c3a36847f80a8a8d", "cast_id": 13, "profile_path": "/rUCGqsBUOb1d7OsEVJo7BITfMIL.jpg", "order": 4}, {"name": "Sydney Penny", "character": "Megan Wheeler", "id": 158833, "credit_id": "52fe44c3c3a36847f80a8a95", "cast_id": 16, "profile_path": "/vyzXqoo7jLCUjuXD78zbQ98DB8w.jpg", "order": 5}, {"name": "Richard Kiel", "character": "Club", "id": 10460, "credit_id": "52fe44c3c3a36847f80a8a91", "cast_id": 15, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 6}, {"name": "Doug McGrath", "character": "Spider Conway", "id": 62033, "credit_id": "53a2e1cf0e0a26228600152c", "cast_id": 18, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 7}, {"name": "John Russell", "character": "Stockburn", "id": 4304, "credit_id": "53a2e3360e0a26227c00155b", "cast_id": 19, "profile_path": "/td1PYzG0wBy36tJx7HsnMcabwzp.jpg", "order": 8}, {"name": "Charles Hallahan", "character": "McGill", "id": 15414, "credit_id": "53a2e3620e0a262282001649", "cast_id": 20, "profile_path": "/bXRE5dfHZZhovEbXgQCXDTw9ZHY.jpg", "order": 9}, {"name": "Marvin J. McIntyre", "character": "Jagou", "id": 13003, "credit_id": "53a2e37f0e0a262279001632", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Fran Ryan", "character": "Ma Blankenship", "id": 152670, "credit_id": "53a2e470c3a36831fc00146d", "cast_id": 22, "profile_path": "/ht4E3qC3uO9CsldpoY2BeLaUbuX.jpg", "order": 11}, {"name": "Richard Hamilton", "character": "Jed Blankenship", "id": 9633, "credit_id": "53a2e495c3a36831f90014f9", "cast_id": 23, "profile_path": "/voxABW599IHapx2AY9c16mqNK3n.jpg", "order": 12}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe44c3c3a36847f80a8a4f", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.7, "runtime": 115}, "688": {"poster_path": "/zBzIFqhYzaKJ6sg8p7svRUFwtD6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A melancholy romance about a farmers wife who meets a photographer who\u2019s way of life that is completely foreign to her leading her to become attracted to him. She is confronted with the difficult decision to go on with the relationship thus leaving her family, or to stay and continue her ordinary life until her death. Meryl Streep was nominated for an Oscar for her excellent performance.", "video": false, "id": 688, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Bridges of Madison County", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112579", "adult": false, "backdrop_path": "/jansnSUSVM8ujoFCUfFrygyNSba.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1995-09-28", "popularity": 0.814982229534737, "original_title": "The Bridges of Madison County", "budget": 0, "cast": [{"name": "Meryl Streep", "character": "Francesca Johnson", "id": 5064, "credit_id": "52fe426ac3a36847f801cfc5", "cast_id": 10, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Robert Kincaid", "id": 190, "credit_id": "52fe426ac3a36847f801cfc9", "cast_id": 11, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Annie Corley", "character": "Caroline Johnson", "id": 6907, "credit_id": "52fe426ac3a36847f801cfcd", "cast_id": 12, "profile_path": "/ypA6im4I1S5SzzNAJOdRmZq01YX.jpg", "order": 2}, {"name": "Victor Slezak", "character": "Michael Johnson", "id": 10379, "credit_id": "52fe426ac3a36847f801cfd1", "cast_id": 13, "profile_path": "/m3Wi4uifukUJl2GA3QEOHctPESz.jpg", "order": 3}, {"name": "Jim Haynie", "character": "Richard Johnson", "id": 10380, "credit_id": "52fe426ac3a36847f801cfd5", "cast_id": 14, "profile_path": "/aFXy2ef18bE6gqibhDoZ7EAsq8n.jpg", "order": 4}, {"name": "Sarah Kathryn Schmitt", "character": "Caroline as a young girl", "id": 10381, "credit_id": "52fe426ac3a36847f801cfd9", "cast_id": 15, "profile_path": "/nKr6sUws5FKof5Am9svH436GzJK.jpg", "order": 5}, {"name": "Christopher Kroon", "character": "Michael as a young boy", "id": 10382, "credit_id": "52fe426ac3a36847f801cfdd", "cast_id": 16, "profile_path": "/laNbeJ8BRJy8dOJqXCALHcWQWqP.jpg", "order": 6}, {"name": "Phyllis Lyons", "character": "Betty", "id": 10383, "credit_id": "52fe426bc3a36847f801cfe1", "cast_id": 17, "profile_path": "/gShHL20sIsP5AS2w6ZGPvGb10Hz.jpg", "order": 7}, {"name": "Debra Monk", "character": "Madge", "id": 10386, "credit_id": "52fe426bc3a36847f801cfe5", "cast_id": 18, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 8}, {"name": "Richard Lage", "character": "Lawyer Peterson", "id": 10388, "credit_id": "52fe426bc3a36847f801cfe9", "cast_id": 19, "profile_path": "/8UYkue0JxE9JGZ887NWuyvIYITV.jpg", "order": 9}, {"name": "Michelle Benes", "character": "Lucy Redfield", "id": 10389, "credit_id": "52fe426bc3a36847f801cfed", "cast_id": 20, "profile_path": "/sEz3lmycMzoMPFpX2Wr3hfq9ZkG.jpg", "order": 10}, {"name": "Alison Wiegert", "character": "Child #1", "id": 1402769, "credit_id": "54987617925141502400003e", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801cf97", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.1, "runtime": 135}, "691": {"poster_path": "/igNXm5naC2BOoRgHidscl51JsTB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185438673, "overview": "Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.", "video": false, "id": 691, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Spy Who Loved Me", "tagline": "It's the BIGGEST. It's the BEST. It's BOND. And B-E-Y-O-N-D.", "vote_count": 144, "homepage": "http://www.mgm.com/view/movie/1891/The-Spy-Who-Loved-Me/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0076752", "adult": false, "backdrop_path": "/2tCAEhE2rPONBmUOs4W73AlBWYg.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1977-07-19", "popularity": 1.50970501328981, "original_title": "The Spy Who Loved Me", "budget": 14000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426bc3a36847f801d151", "cast_id": 1, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Barbara Bach", "character": "Major Anya Amasova", "id": 10458, "credit_id": "52fe426bc3a36847f801d155", "cast_id": 2, "profile_path": "/EYYNEUN0CmLDto4cDEesM7pS4V.jpg", "order": 1}, {"name": "Curd J\u00fcrgens", "character": "Karl Stromberg", "id": 10459, "credit_id": "52fe426bc3a36847f801d159", "cast_id": 3, "profile_path": "/psFeEFYhy1tUn9y4vLxF9eSKMK9.jpg", "order": 2}, {"name": "Richard Kiel", "character": "Jaws", "id": 10460, "credit_id": "52fe426bc3a36847f801d15d", "cast_id": 4, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 3}, {"name": "Caroline Munro", "character": "Naomi", "id": 10461, "credit_id": "52fe426bc3a36847f801d161", "cast_id": 5, "profile_path": "/2yPLDrhJjjwjfQX6OMwBZnEyxmr.jpg", "order": 4}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426bc3a36847f801d165", "cast_id": 6, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 5}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426bc3a36847f801d169", "cast_id": 7, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 6}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426bc3a36847f801d16d", "cast_id": 8, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 7}, {"name": "George Baker", "character": "Captain Benson", "id": 10173, "credit_id": "52fe426bc3a36847f801d171", "cast_id": 9, "profile_path": "/ogT7DAofS8SqeaZlQQSmJcn2sN8.jpg", "order": 8}, {"name": "Michael Billington", "character": "Sergei Barsov", "id": 10463, "credit_id": "52fe426bc3a36847f801d175", "cast_id": 10, "profile_path": "/2MmeN8YnrA6Bk4nHOS6B443xUt.jpg", "order": 9}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426bc3a36847f801d179", "cast_id": 12, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 10}, {"name": "Vernon Dobtcheff", "character": "Max Kalba", "id": 649, "credit_id": "52fe426bc3a36847f801d17d", "cast_id": 14, "profile_path": "/lcPki2IDdmRvqiBbv2RUBfgm3IH.jpg", "order": 11}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426bc3a36847f801d181", "cast_id": 15, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 12}, {"name": "Sydney Tafler", "character": "Liparus Captain", "id": 109865, "credit_id": "52fe426bc3a36847f801d1d9", "cast_id": 30, "profile_path": "/i8rQgwaffxh7nBWZknB2RV55zWw.jpg", "order": 13}, {"name": "Olga Bisera", "character": "Felicca", "id": 10464, "credit_id": "5401eba1c3a368060300306a", "cast_id": 31, "profile_path": "/5RAnZqB61GPlNuexrBhCCkKre8x.jpg", "order": 14}, {"name": "Edward de Souza", "character": "Sheik Hosein", "id": 10465, "credit_id": "5401ec13c3a3684363003322", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Valerie Leon", "character": "Hotel Recepcionist", "id": 95099, "credit_id": "5401ec56c3a368068c003458", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Nadim Sawalha", "character": "Aziz Fekkesh", "id": 2980, "credit_id": "5401ec78c3a3682d98001abd", "cast_id": 34, "profile_path": "/94kMNtU2FYXruX4BOOjWrWkoe2x.jpg", "order": 17}, {"name": "Sue Vanner", "character": "Log Cabin Girl", "id": 104279, "credit_id": "5401ecc8c3a368068c003467", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Eva Reuber-Staier", "character": "Rublevich", "id": 104940, "credit_id": "5401ece0c3a3682d98001ac3", "cast_id": 36, "profile_path": null, "order": 19}], "directors": [{"name": "Lewis Gilbert", "department": "Directing", "job": "Director", "credit_id": "52fe426bc3a36847f801d187", "profile_path": "/9KAGNVy7N8jZKSFhrXe3Y28XwJt.jpg", "id": 10076}], "vote_average": 6.0, "runtime": 125}, "693": {"poster_path": "/xHAqB06iL5D6HyOS6QpgyKkRQHD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 516642939, "overview": "In this sequel to the hit comedy Meet the Parents, hard-to-crack ex-CIA man Jack Byrnes and his wife, Dina, head for the warmer climes of Florida to meet son-in-law-to-be Greg Focker's mom and dad, Bernie and Roz. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.", "video": false, "id": 693, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Meet the Fockers", "tagline": "Misery loves family.", "vote_count": 346, "homepage": "http://www.meetthefockers.com/index.php", "belongs_to_collection": {"backdrop_path": "/fgcgqjw37RThZCbVrfLLkJsqNNR.jpg", "poster_path": "/WFkinadVm4NRynRKuUcaLFNIDx.jpg", "id": 51509, "name": "Meet the Parents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0290002", "adult": false, "backdrop_path": "/f0eF1rB9KnZPonliSt8CazKvihD.jpg", "production_companies": [{"name": "Everyman Pictures", "id": 2242}, {"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Tribeca Productions", "id": 11391}], "release_date": "2004-12-15", "popularity": 1.03915014200503, "original_title": "Meet the Fockers", "budget": 80000000, "cast": [{"name": "Ben Stiller", "character": "Gaylord 'Greg' Focker", "id": 7399, "credit_id": "52fe426bc3a36847f801d319", "cast_id": 22, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Teri Polo", "character": "Pam Byrnes", "id": 10399, "credit_id": "52fe426bc3a36847f801d31d", "cast_id": 23, "profile_path": "/67k0q1YYVIeMd0wZalfqJ2FYLuu.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Jack Byrnes", "id": 380, "credit_id": "52fe426bc3a36847f801d321", "cast_id": 24, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Dustin Hoffman", "character": "Bernie Focker", "id": 4483, "credit_id": "52fe426bc3a36847f801d325", "cast_id": 25, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 3}, {"name": "Barbra Streisand", "character": "Rozalin Focker", "id": 10400, "credit_id": "52fe426bc3a36847f801d329", "cast_id": 26, "profile_path": "/iLkX0Qwz2BH42rcZ0yWqPtyKSeN.jpg", "order": 4}, {"name": "Blythe Danner", "character": "Dina Byrnes", "id": 10401, "credit_id": "52fe426bc3a36847f801d32d", "cast_id": 27, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Officer LeFlore", "id": 1462, "credit_id": "52fe426bc3a36847f801d331", "cast_id": 28, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "Alanna Ubach", "character": "Isabel Villalobos", "id": 10402, "credit_id": "52fe426bc3a36847f801d335", "cast_id": 29, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 7}, {"name": "Shelley Berman", "character": "Judge Ira", "id": 10403, "credit_id": "52fe426bc3a36847f801d339", "cast_id": 30, "profile_path": "/ka7bIOts2wVNqcdAvR8k24Z5d7h.jpg", "order": 8}, {"name": "Owen Wilson", "character": "Kevin Rawley", "id": 887, "credit_id": "52fe426bc3a36847f801d33d", "cast_id": 31, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 9}, {"name": "Ray Santiago", "character": "Jorge Villalobos", "id": 52957, "credit_id": "52fe426bc3a36847f801d341", "cast_id": 32, "profile_path": "/uqOaejdbrJDTnH1KfOWljs5YO7q.jpg", "order": 10}, {"name": "Spencer Pickren", "character": "Little Jack 'L.J.' Byrnes", "id": 1003453, "credit_id": "52fe426bc3a36847f801d345", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Bradley Pickren", "character": "Little Jack 'L.J.' Byrnes", "id": 1003454, "credit_id": "52fe426bc3a36847f801d349", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Kali Rocha", "character": "Flight Attendant", "id": 149665, "credit_id": "52fe426bc3a36847f801d34d", "cast_id": 35, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 13}, {"name": "Dorie Barton", "character": "Airline Clerk", "id": 155393, "credit_id": "52fe426bc3a36847f801d351", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Jack Plotnick", "character": "Rent-a-Car Agent", "id": 29795, "credit_id": "52fe426bc3a36847f801d355", "cast_id": 37, "profile_path": "/oFGLmsfLkVwMtCocgKbnCPj0gYq.jpg", "order": 15}, {"name": "Wayne Thomas Yorke", "character": "Airport Security Guard", "id": 172201, "credit_id": "52fe426bc3a36847f801d359", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Max Hoffman", "character": "Woody Focker", "id": 963693, "credit_id": "52fe426bc3a36847f801d35d", "cast_id": 39, "profile_path": null, "order": 17}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe426bc3a36847f801d2a3", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.1, "runtime": 115}, "694": {"poster_path": "/caoYMcjUamGoBVy65i1AHJBvdzw.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 44017374, "overview": "Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.", "video": false, "id": 694, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Shining", "tagline": "A masterpiece of modern horror.", "vote_count": 859, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0081505", "adult": false, "backdrop_path": "/eOJbXOjo1GHfO6yMFTEzjsjNL0M.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Hawk Films", "id": 88}, {"name": "Peregrine", "id": 11272}, {"name": "Producers Circle", "id": 734}], "release_date": "1980-05-22", "popularity": 1.6362099716205, "original_title": "The Shining", "budget": 19000000, "cast": [{"name": "Jack Nicholson", "character": "Jack Torrance", "id": 514, "credit_id": "52fe426bc3a36847f801d3ff", "cast_id": 18, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Shelley Duvall", "character": "Wendy Torrance", "id": 10409, "credit_id": "52fe426bc3a36847f801d403", "cast_id": 19, "profile_path": "/4MDrH9PxYrGGHXB7LmObYTdoEHV.jpg", "order": 1}, {"name": "Danny Lloyd", "character": "Danny Torrance", "id": 10410, "credit_id": "52fe426bc3a36847f801d407", "cast_id": 20, "profile_path": "/ujXiZlSJVhrWR8FgUbuRmZHSdJp.jpg", "order": 2}, {"name": "Scatman Crothers", "character": "Dick Hallorann", "id": 7077, "credit_id": "52fe426bc3a36847f801d40b", "cast_id": 21, "profile_path": "/n3REW3TGbjLC8SbaZG7g48pm98n.jpg", "order": 3}, {"name": "Barry Nelson", "character": "Stuart Ullman", "id": 10411, "credit_id": "52fe426bc3a36847f801d40f", "cast_id": 22, "profile_path": "/d07leQJAhNZbpjfMwWHH0e6VBG6.jpg", "order": 4}, {"name": "Philip Stone", "character": "Delbert Grady", "id": 694, "credit_id": "52fe426bc3a36847f801d413", "cast_id": 23, "profile_path": "/qtaBPJZC7MpoyWfcyXJ1zdEfYwU.jpg", "order": 5}, {"name": "Joe Turkel", "character": "Lloyd the Bartender", "id": 592, "credit_id": "52fe426bc3a36847f801d417", "cast_id": 24, "profile_path": "/8d16GA57SnVXP3WGB0fbkFCKily.jpg", "order": 6}, {"name": "Anne Jackson", "character": "Doctor", "id": 10412, "credit_id": "52fe426bc3a36847f801d41b", "cast_id": 25, "profile_path": "/t6htAqvpvAkWmwdIiwBDZjWS2Ne.jpg", "order": 7}, {"name": "Tony Burton", "character": "Larry Durkin", "id": 16504, "credit_id": "52fe426bc3a36847f801d41f", "cast_id": 26, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 8}, {"name": "Barry Dennen", "character": "Bill Watson", "id": 72742, "credit_id": "52fe426bc3a36847f801d423", "cast_id": 27, "profile_path": "/zELog0P3l2ikmhZ9TIJmk81FFla.jpg", "order": 9}, {"name": "Lia Beldam", "character": "Young Woman in Bath", "id": 1413939, "credit_id": "54b7e3299251411d6a0025ec", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Billie Gibson", "character": "Old Woman in Bath", "id": 1413940, "credit_id": "54b7e3489251411d6600239f", "cast_id": 29, "profile_path": null, "order": 11}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe426bc3a36847f801d39b", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.6, "runtime": 144}, "696": {"poster_path": "/2OmmKrcLfFQeTd5N7pZeAw6fJPA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The life of a divorced television writer dating a teenage girl is further complicated when he falls in love with his best friend's mistress.", "video": false, "id": 696, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Manhattan", "tagline": "Woody Allen's New Comedy Hit", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079522", "adult": false, "backdrop_path": "/qjm30F9hwJ6BNbsb7iOrrKwkY3n.jpg", "production_companies": [{"name": "Jack Rollins & Charles H. Joffe Productions", "id": 13309}], "release_date": "1979-04-25", "popularity": 0.288695280838409, "original_title": "Manhattan", "budget": 0, "cast": [{"name": "Woody Allen", "character": "Isaac Davis", "id": 1243, "credit_id": "52fe426cc3a36847f801d5ff", "cast_id": 17, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Mary Wilkie", "id": 3092, "credit_id": "52fe426cc3a36847f801d603", "cast_id": 18, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Michael Murphy", "character": "Yale", "id": 4776, "credit_id": "52fe426cc3a36847f801d607", "cast_id": 19, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 2}, {"name": "Mariel Hemingway", "character": "Tracy", "id": 10447, "credit_id": "52fe426cc3a36847f801d60b", "cast_id": 20, "profile_path": "/lNlfYgxGwVSLC4tPJXyos02IRQC.jpg", "order": 3}, {"name": "Meryl Streep", "character": "Jill", "id": 5064, "credit_id": "52fe426cc3a36847f801d60f", "cast_id": 21, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 4}, {"name": "Anne Byrne Hoffman", "character": "Emily", "id": 10448, "credit_id": "52fe426cc3a36847f801d613", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Karen Ludwig", "character": "Connie", "id": 10449, "credit_id": "52fe426cc3a36847f801d617", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Michael O'Donoghue", "character": "Dennis", "id": 10450, "credit_id": "52fe426cc3a36847f801d61b", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Wallace Shawn", "character": "Jeremiah", "id": 12900, "credit_id": "52fe426cc3a36847f801d61f", "cast_id": 25, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 8}, {"name": "Tisa Farrow", "character": "Party Guest", "id": 43203, "credit_id": "53a2d5260e0a26227c001423", "cast_id": 26, "profile_path": "/6FT5PHmra4IOyGWNlbCBptYaYwX.jpg", "order": 9}, {"name": "Charles Levin", "character": "Television Actor #1", "id": 118071, "credit_id": "53a2d57e0e0a2622790014eb", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Karen Allen", "character": "Television Actor #2", "id": 650, "credit_id": "53a2d5af0e0a26228200153e", "cast_id": 28, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 11}, {"name": "David Rasche", "character": "Television Actor #3", "id": 33533, "credit_id": "53a2d5c70e0a262282001541", "cast_id": 29, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 12}, {"name": "Mark Linn-Baker", "character": "Shakespearean Actor", "id": 95975, "credit_id": "53a2d5f00e0a26227c001439", "cast_id": 30, "profile_path": "/myqnA6cnH8xdrPZvQyKO1JL8nEB.jpg", "order": 13}, {"name": "Frances Conroy", "character": "Shakespearean Actress", "id": 4432, "credit_id": "53a2d6070e0a26228600144e", "cast_id": 31, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 14}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d5a7", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.4, "runtime": 96}, "49849": {"poster_path": "/kcUXBEwWDzpRhKreh6C2NSStBiU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 174822325, "overview": "A stranger stumbles into the desert town of Absolution with no memory of his past and a futuristic shackle around his wrist. With the help of mysterious beauty Ella and the iron-fisted Colonel Dolarhyde, he finds himself leading an unlikely posse of cowboys, outlaws, and Apache warriors against a common enemy from beyond this world in an epic showdown for survival.", "video": false, "id": 49849, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "Cowboys & Aliens", "tagline": "First Contact. Last Stand.", "vote_count": 745, "homepage": "http://www.cowboysandaliensmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0409847", "adult": false, "backdrop_path": "/gmapSsDGkPNPRxaQXLdotYkYKzM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Relativity Media", "id": 7295}, {"name": "Imagine Entertainment", "id": 23}, {"name": "K/O Paper Products", "id": 7296}, {"name": "Fairview Entertainment", "id": 7297}, {"name": "platinum studios", "id": 7218}, {"name": "K/O Camera Toys", "id": 23300}], "release_date": "2011-07-29", "popularity": 1.2534514039299, "original_title": "Cowboys & Aliens", "budget": 163000000, "cast": [{"name": "Olivia Wilde", "character": "Ella", "id": 59315, "credit_id": "52fe47abc3a36847f8141e21", "cast_id": 6, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Col. Woodrow Dolarhyde", "id": 3, "credit_id": "52fe47abc3a36847f8141e25", "cast_id": 7, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Daniel Craig", "character": "Jake Lonergan", "id": 8784, "credit_id": "52fe47abc3a36847f8141e29", "cast_id": 8, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "Doc", "id": 6807, "credit_id": "52fe47abc3a36847f8141e2d", "cast_id": 9, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Paul Dano", "character": "Percy", "id": 17142, "credit_id": "52fe47abc3a36847f8141e31", "cast_id": 10, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 4}, {"name": "Walton Goggins", "character": "Hunt", "id": 27740, "credit_id": "52fe47abc3a36847f8141e35", "cast_id": 11, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 5}, {"name": "Ana de la Reguera", "character": "Maria", "id": 57409, "credit_id": "52fe47abc3a36847f8141e39", "cast_id": 12, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 6}, {"name": "Clancy Brown", "character": "Meacham", "id": 6574, "credit_id": "52fe47abc3a36847f8141e3d", "cast_id": 13, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 7}, {"name": "Keith Carradine", "character": "Sheriff Taggart", "id": 30613, "credit_id": "52fe47abc3a36847f8141e41", "cast_id": 14, "profile_path": "/xAZfdJPrQX5OnHOF0OXMOo5sUlX.jpg", "order": 8}, {"name": "Noah Ringer", "character": "Emmet", "id": 88816, "credit_id": "52fe47abc3a36847f8141e45", "cast_id": 15, "profile_path": "/rViKaQd4q8qCFmFRbrZY849ykST.jpg", "order": 9}, {"name": "David O'Hara", "character": "Pat Dolan", "id": 2482, "credit_id": "52fe47abc3a36847f8141e49", "cast_id": 16, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 10}, {"name": "Adam Beach", "character": "Nat Colorado", "id": 33527, "credit_id": "52fe47abc3a36847f8141e4d", "cast_id": 17, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 11}, {"name": "Abigail Spencer", "character": "Alice", "id": 123725, "credit_id": "52fe47abc3a36847f8141e51", "cast_id": 18, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 12}, {"name": "Toby Huss", "character": "Roy Murphy", "id": 18271, "credit_id": "52fe47abc3a36847f8141e55", "cast_id": 19, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 13}, {"name": "Raoul Trujillo", "character": "Black Knife", "id": 17688, "credit_id": "52fe47abc3a36847f8141e59", "cast_id": 20, "profile_path": "/vkrPv04OJRV9G6u6yydjJz2WKE0.jpg", "order": 14}, {"name": "David Midthunder", "character": "Apache Warrior 1", "id": 1039678, "credit_id": "52fe47abc3a36847f8141e69", "cast_id": 23, "profile_path": "/f0piRndy8kXPUh4onNoNNoeIO9u.jpg", "order": 15}, {"name": "Matthew Taylor", "character": "Luke Claiborne", "id": 591769, "credit_id": "52fe47abc3a36847f8141e73", "cast_id": 25, "profile_path": "/aCWVlkHatBh7DenW757xZIbf32d.jpg", "order": 16}, {"name": "Brian Duffy", "character": "Deputy", "id": 949852, "credit_id": "52fe47abc3a36847f8141e77", "cast_id": 26, "profile_path": "/1XlYJr9FaTZG4582ziUIoHT8QSP.jpg", "order": 17}, {"name": "Brendan Wayne", "character": "Charlie Lyle", "id": 946854, "credit_id": "52fe47abc3a36847f8141e7b", "cast_id": 27, "profile_path": "/e2bhg69on55SXbQnsxDRROpNohP.jpg", "order": 18}, {"name": "Gavin Grazer", "character": "Ed", "id": 38572, "credit_id": "52fe47abc3a36847f8141e7f", "cast_id": 28, "profile_path": "/qe5J2NMzcN2NVgVS1D04tuDUyke.jpg", "order": 19}, {"name": "Wyatt Russell", "character": "Little Mickey", "id": 986808, "credit_id": "52fe47abc3a36847f8141e83", "cast_id": 29, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 20}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe47abc3a36847f8141e1d", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 5.4, "runtime": 119}, "698": {"poster_path": "/s6sih3YtZTscu5XgPuUeJuQ8O9a.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 210300000, "overview": "During the transportation of a Space Shuttle a Boeing 747 crashes in the Atlantic Ocean yet when they go to look for the destroyed shuttle it is not there. James Bond investigates the missing mission space shuttle and soon learns that the shuttles owner Hugo Drax wants to kill all of mankind.", "video": false, "id": 698, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Moonraker", "tagline": "Outer space now belongs to 007.", "vote_count": 151, "homepage": "http://www.mgm.com/view/movie/1292/Moonraker/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0079574", "adult": false, "backdrop_path": "/ueJ8K4ik1UQKa3cVUa8RHfDDqL.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "United Artists", "id": 60}], "release_date": "1979-06-27", "popularity": 1.25447242115479, "original_title": "Moonraker", "budget": 34000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426cc3a36847f801d709", "cast_id": 15, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Lois Chiles", "character": "Dr. Holly Goodhead", "id": 10475, "credit_id": "52fe426cc3a36847f801d70d", "cast_id": 16, "profile_path": "/5a6SPOL0x0q25ofCgZRkduadqnl.jpg", "order": 1}, {"name": "Michael Lonsdale", "character": "Hugo Drax", "id": 2369, "credit_id": "52fe426cc3a36847f801d72f", "cast_id": 27, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 2}, {"name": "Corinne Cl\u00e9ry", "character": "Corinne Dufour", "id": 10476, "credit_id": "52fe426cc3a36847f801d715", "cast_id": 18, "profile_path": "/oNkBqfWJ3oVxNU0DswS3iBXwXx7.jpg", "order": 3}, {"name": "Richard Kiel", "character": "Jaws", "id": 10460, "credit_id": "52fe426cc3a36847f801d711", "cast_id": 17, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 4}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426cc3a36847f801d719", "cast_id": 19, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 5}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426cc3a36847f801d71d", "cast_id": 20, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 6}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426cc3a36847f801d721", "cast_id": 21, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 7}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426cc3a36847f801d725", "cast_id": 22, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 8}, {"name": "Toshir\u00f4 Suga", "character": "Chang", "id": 10479, "credit_id": "54010bd8c3a3684363002038", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Emily Bolton", "character": "Manuela", "id": 10481, "credit_id": "54010c15c3a3684360002223", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Blanche Ravalec", "character": "Dolly", "id": 10483, "credit_id": "54010c43c3a3684372002094", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Irka Bochenko", "character": "Blonde Beauty", "id": 931614, "credit_id": "54010c5cc3a3687d50000671", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Leila Shenna", "character": "Hostess Private Jet", "id": 1303696, "credit_id": "54010cb0c3a3684372002097", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Walter Gotell", "character": "General Gogol", "id": 6610, "credit_id": "54010ccfc3a3682d98000756", "cast_id": 35, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 15}, {"name": "Alfie Bass", "character": "Consumptive Italian", "id": 30119, "credit_id": "54010d5cc3a3684366002113", "cast_id": 38, "profile_path": "/kgWepJDGiRkmNYWw5FtYUwsF9JK.jpg", "order": 18}, {"name": "Mike Marshall", "character": "Col. Scott", "id": 19613, "credit_id": "5401170ec3a3684372002177", "cast_id": 40, "profile_path": "/4YQxw0JnqkSOQPUT6HOeAniJMFk.jpg", "order": 20}, {"name": "Douglas Lambert", "character": "Mission Control Director", "id": 178411, "credit_id": "540119780e0a2658ee003470", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Arthur Howard", "character": "Cavendish", "id": 219130, "credit_id": "540119bb0e0a2658db0034fd", "cast_id": 42, "profile_path": null, "order": 22}], "directors": [{"name": "Lewis Gilbert", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d6bd", "profile_path": "/9KAGNVy7N8jZKSFhrXe3Y28XwJt.jpg", "id": 10076}], "vote_average": 5.5, "runtime": 126}, "699": {"poster_path": "/abWnjvidM4yZI03N7l2jNuwdhDv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 195312802, "overview": "A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first.", "video": false, "id": 699, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "For Your Eyes Only", "tagline": "No one comes close to James Bond, 007.", "vote_count": 139, "homepage": "http://www.mgm.com/view/movie/695/For-Your-Eyes-Only/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0082398", "adult": false, "backdrop_path": "/hg8ecg8LrR8ChvZh4aMETNUraGA.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1981-06-23", "popularity": 1.05922584255002, "original_title": "For Your Eyes Only", "budget": 28000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426cc3a36847f801d7ff", "cast_id": 17, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Carole Bouquet", "character": "Melina Havelock", "id": 10500, "credit_id": "52fe426cc3a36847f801d803", "cast_id": 18, "profile_path": "/7zhFzzEEGVT0DonbSyaXgzKjAGI.jpg", "order": 1}, {"name": "Chaim Topol", "character": "Milos Columbo", "id": 10501, "credit_id": "52fe426cc3a36847f801d807", "cast_id": 19, "profile_path": "/tfFE1NOGPAPfcWLd4rITJe4G8DW.jpg", "order": 2}, {"name": "Lynn-Holly Johnson", "character": "Bibi Dahl", "id": 10502, "credit_id": "52fe426cc3a36847f801d80b", "cast_id": 20, "profile_path": "/zX61Wvq0rzuxgEKoFfcth8v2pYR.jpg", "order": 3}, {"name": "Julian Glover", "character": "Aristotle Kristatos", "id": 740, "credit_id": "52fe426cc3a36847f801d80f", "cast_id": 21, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 4}, {"name": "Cassandra Harris", "character": "Countess Lisl von Schlaf", "id": 10503, "credit_id": "52fe426cc3a36847f801d813", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Jill Bennett", "character": "Jacoba Brink", "id": 10504, "credit_id": "52fe426cc3a36847f801d817", "cast_id": 23, "profile_path": "/fEUBRw8o11hyAg1sF4fFDwTq5VA.jpg", "order": 6}, {"name": "Michael Gothard", "character": "Emile Leopold Locque", "id": 10505, "credit_id": "52fe426cc3a36847f801d81b", "cast_id": 24, "profile_path": "/cv4ncIRI62qHEk6IlGq54jtjIOI.jpg", "order": 7}, {"name": "John Wyman", "character": "Erich Kriegler", "id": 10506, "credit_id": "52fe426cc3a36847f801d81f", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Jack Hedley", "character": "Sir Timothy Havelock", "id": 10507, "credit_id": "52fe426cc3a36847f801d823", "cast_id": 26, "profile_path": "/nHNv9DqFM8VWFxBrK88nwYqCG0j.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426cc3a36847f801d827", "cast_id": 27, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426cc3a36847f801d82b", "cast_id": 28, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426cc3a36847f801d82f", "cast_id": 29, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 12}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426cc3a36847f801d833", "cast_id": 30, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 13}, {"name": "James Villiers", "character": "Tanner", "id": 39066, "credit_id": "52fe426cc3a36847f801d837", "cast_id": 31, "profile_path": "/uTm5qTLtSdilvAT6zelWrZHRTAu.jpg", "order": 14}, {"name": "John Moreno", "character": "Ferrara", "id": 1173719, "credit_id": "52fe426cc3a36847f801d83b", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Charles Dance", "character": "Claus", "id": 4391, "credit_id": "52fe426cc3a36847f801d83f", "cast_id": 33, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 16}, {"name": "Paul Angelis", "character": "Karageorge", "id": 27652, "credit_id": "52fe426cc3a36847f801d84f", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Toby Robins", "character": "Iona Havelock", "id": 35065, "credit_id": "52fe426cc3a36847f801d853", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Jack Klaff", "character": "Apostis", "id": 162432, "credit_id": "52fe426cc3a36847f801d857", "cast_id": 38, "profile_path": "/6l21oFayFKyyuBEELJEaj3veo21.jpg", "order": 19}, {"name": "Alkis Kritikos", "character": "Santos", "id": 971230, "credit_id": "52fe426cc3a36847f801d85b", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Stag Theodore", "character": "Nikos", "id": 1205478, "credit_id": "52fe426cc3a36847f801d85f", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Stefan Kalipha", "character": "Hector Gonzales", "id": 25079, "credit_id": "52fe426cc3a36847f801d863", "cast_id": 41, "profile_path": "/g1mNJ1eTrVi5wD1d76kRnFWbn2h.jpg", "order": 22}, {"name": "Graham Crowden", "character": "First Sea Lord", "id": 10654, "credit_id": "52fe426cc3a36847f801d867", "cast_id": 42, "profile_path": "/wyGg5BXqE1N8oG1Ag82I3yHYQdW.jpg", "order": 23}, {"name": "Noel Johnson", "character": "Vice Admiral", "id": 214149, "credit_id": "52fe426cc3a36847f801d86b", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "William Hoyland", "character": "McGregor", "id": 219736, "credit_id": "52fe426cc3a36847f801d86f", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Paul Brooke", "character": "Bunky", "id": 9142, "credit_id": "52fe426cc3a36847f801d873", "cast_id": 45, "profile_path": "/eiIvFEhS7WABCiIi5UI0XS70ntD.jpg", "order": 26}, {"name": "Eva Reuber-Staier", "character": "Rublevich", "id": 1064074, "credit_id": "52fe426cc3a36847f801d877", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Fred Bryant", "character": "Vicar", "id": 1205479, "credit_id": "52fe426cc3a36847f801d87b", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Robbin Young", "character": "Girl in Flower Shop", "id": 1205481, "credit_id": "52fe426cc3a36847f801d87f", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Graham Hawkes", "character": "Mantis Man", "id": 1205482, "credit_id": "52fe426cc3a36847f801d883", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "John Wells", "character": "Denis Thatcher", "id": 141347, "credit_id": "52fe426cc3a36847f801d887", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Janet Brown", "character": "The Prime Minister", "id": 1205483, "credit_id": "52fe426cc3a36847f801d88b", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Maureen Bennett", "character": "Sharon, Q's Assistant (uncredited)", "id": 185885, "credit_id": "52fe426cc3a36847f801d88f", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Andy Bradford", "character": "Guard at St. Cyril (uncredited)", "id": 199077, "credit_id": "52fe426cc3a36847f801d893", "cast_id": 53, "profile_path": "/5esiedhO0bUygYwpIDUyfaU05uu.jpg", "order": 34}, {"name": "Jeremy Bulloch", "character": "Smithers", "id": 33185, "credit_id": "52fe426cc3a36847f801d897", "cast_id": 54, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 35}, {"name": "Clive Curtis", "character": "Gonz\u00e1lez Henchman (uncredited)", "id": 1205484, "credit_id": "52fe426cc3a36847f801d89b", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Lalla Dean", "character": "Girl at Pool (uncredited)", "id": 1205485, "credit_id": "52fe426cc3a36847f801d89f", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Evelyn Drogue", "character": "Girl at Pool (uncredited)", "id": 1205486, "credit_id": "52fe426cc3a36847f801d8a3", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "Sheena Easton", "character": "Herself - Singer in Title Sequence (uncredited)", "id": 109988, "credit_id": "52fe426cc3a36847f801d8a7", "cast_id": 58, "profile_path": "/gEhSGKAvIqhMYPjc5AI7f7HnRGs.jpg", "order": 39}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d7ad", "profile_path": null, "id": 10179}], "vote_average": 5.9, "runtime": 127}, "700": {"poster_path": "/vyMJidOSK5SUCxXt9Crj7Rs5w9C.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 183700000, "overview": "James Bond is sent to investigate after a fellow \u201c00\u201d agent is found dead with a priceless Farberge egg. James bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War.", "video": false, "id": 700, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Octopussy", "tagline": "Nobody does him better.", "vote_count": 139, "homepage": "http://www.mgm.com/view/movie/1394/Octopussy/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0086034", "adult": false, "backdrop_path": "/nOp4RM4AYlW8Ux0XHBTqXbPlSgY.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "United Artists", "id": 60}], "release_date": "1983-06-05", "popularity": 1.51426130989171, "original_title": "Octopussy", "budget": 27500000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426cc3a36847f801d913", "cast_id": 1, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Maud Adams", "character": "Octopussy", "id": 10342, "credit_id": "52fe426cc3a36847f801d917", "cast_id": 2, "profile_path": "/iflQAeAUNW9zhwNGYCvk0nZR1en.jpg", "order": 1}, {"name": "Louis Jourdan", "character": "Kamal Khan", "id": 10508, "credit_id": "52fe426cc3a36847f801d91b", "cast_id": 3, "profile_path": "/c6rMOqOYoMhjpFffJ6cwCoDS4Nm.jpg", "order": 2}, {"name": "Kristina Wayborn", "character": "Magda", "id": 10509, "credit_id": "52fe426cc3a36847f801d91f", "cast_id": 4, "profile_path": "/4WEv5qQwLI5SB1mzpeyPrCWaNy8.jpg", "order": 3}, {"name": "Kabir Bedi", "character": "Gobinda", "id": 10510, "credit_id": "52fe426cc3a36847f801d923", "cast_id": 5, "profile_path": "/ltCp34kkvNTHuosjH184incMdU1.jpg", "order": 4}, {"name": "Steven Berkoff", "character": "General Orlov", "id": 782, "credit_id": "52fe426cc3a36847f801d927", "cast_id": 6, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 5}, {"name": "David Meyer", "character": "Twin One", "id": 10511, "credit_id": "52fe426cc3a36847f801d92b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Tony Meyer", "character": "Twin Two", "id": 10512, "credit_id": "52fe426cc3a36847f801d92f", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426cc3a36847f801d933", "cast_id": 9, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 8}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426cc3a36847f801d937", "cast_id": 10, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426cc3a36847f801d93b", "cast_id": 11, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Michaela Clavell", "character": "Penelope Smallbone", "id": 10514, "credit_id": "52fe426cc3a36847f801d93f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426cc3a36847f801d943", "cast_id": 13, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 12}, {"name": "Albert Moses", "character": "Sadruddin", "id": 14759, "credit_id": "52fe426cc3a36847f801d9ab", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Geoffrey Keen", "character": "Minister of Defence", "id": 10462, "credit_id": "52fe426cc3a36847f801d9af", "cast_id": 35, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 15}, {"name": "Douglas Wilmer", "character": "Jim Fanning", "id": 89065, "credit_id": "52fe426cc3a36847f801d9b3", "cast_id": 36, "profile_path": "/3aUnwOD2fBGMBcaE9Hj4EqtxKWO.jpg", "order": 16}, {"name": "Andy Bradford", "character": "009", "id": 199077, "credit_id": "52fe426cc3a36847f801d9b7", "cast_id": 37, "profile_path": "/5esiedhO0bUygYwpIDUyfaU05uu.jpg", "order": 17}, {"name": "Philip Voss", "character": "Auctioneer", "id": 189281, "credit_id": "52fe426cc3a36847f801d9bb", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Bruce Boa", "character": "U.S. General", "id": 8664, "credit_id": "52fe426cc3a36847f801d9bf", "cast_id": 39, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 19}, {"name": "Richard LeParmentier", "character": "U.S. Aide (as Richard Parmentier)", "id": 12829, "credit_id": "52fe426cc3a36847f801d9c3", "cast_id": 40, "profile_path": "/u0xNmE4QAS5EUbn7tG44EfYUkib.jpg", "order": 20}, {"name": "Paul Hardwick", "character": "Soviet Chairman", "id": 47139, "credit_id": "52fe426cc3a36847f801d9c7", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Suzanne Jerome", "character": "Gwendoline", "id": 1064072, "credit_id": "52fe426cc3a36847f801d9cb", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Cherry Gillespie", "character": "Midge", "id": 1064073, "credit_id": "52fe426cc3a36847f801d9cf", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Dermot Crowley", "character": "Kamp", "id": 17484, "credit_id": "52fe426cc3a36847f801d9d3", "cast_id": 44, "profile_path": "/z2flyEd3eV8Ho8mXa8rXOHZw9Yg.jpg", "order": 24}, {"name": "Peter Porteous", "character": "Lenkin", "id": 190439, "credit_id": "52fe426cc3a36847f801d9d7", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Eva Reuber-Staier", "character": "Rublevitch (as Eva Rueber-Staier)", "id": 1064074, "credit_id": "52fe426cc3a36847f801d9db", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Jeremy Bulloch", "character": "Smithers (as Jeremy Bullock)", "id": 33185, "credit_id": "52fe426cc3a36847f801d9df", "cast_id": 47, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 27}, {"name": "Tina Hudson", "character": "Bianca", "id": 1064075, "credit_id": "52fe426cc3a36847f801d9e3", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "William Derrick", "character": "Thug with Yo-yo", "id": 1064076, "credit_id": "52fe426cc3a36847f801d9e7", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Stuart Saunders", "character": "Major Clive", "id": 954853, "credit_id": "52fe426cc3a36847f801d9eb", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Patrick Barr", "character": "British Ambassador", "id": 100787, "credit_id": "52fe426cc3a36847f801d9ef", "cast_id": 51, "profile_path": "/pYCWzNSvm7EGagBCe3qHJ1L6Oul.jpg", "order": 31}, {"name": "Vijay Amritraj", "character": "Vijay", "id": 1233481, "credit_id": "532a2bf8c3a3681fdd0006b0", "cast_id": 55, "profile_path": "/ou36AKLWmrgye8DayKvkzfoFymF.jpg", "order": 32}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426cc3a36847f801d949", "profile_path": null, "id": 10179}], "vote_average": 5.9, "runtime": 131}, "703": {"poster_path": "/bzx16zJfmYHginMLOsNmqvajOjy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38251425, "overview": "The neurotic New Yorker Woody Allen tells one of the greatest romantic comedies to be set in the city of New York.", "video": false, "id": 703, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Annie Hall", "tagline": "A nervous romance.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075686", "adult": false, "backdrop_path": "/qNDbThLBQixXwUR3ri8NYHX0ydf.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1977-04-19", "popularity": 1.00920062260039, "original_title": "Annie Hall", "budget": 4000000, "cast": [{"name": "Woody Allen", "character": "Alvy Singer", "id": 1243, "credit_id": "52fe426dc3a36847f801dbdf", "cast_id": 21, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Annie Hall", "id": 3092, "credit_id": "52fe426dc3a36847f801dbe3", "cast_id": 22, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Tony Roberts", "character": "Rob", "id": 10555, "credit_id": "52fe426dc3a36847f801dbe7", "cast_id": 23, "profile_path": "/tSSniQufUlupZCqRkZtiCiQZnkA.jpg", "order": 2}, {"name": "Carol Kane", "character": "Allison", "id": 10556, "credit_id": "52fe426dc3a36847f801dbeb", "cast_id": 24, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 3}, {"name": "Paul Simon", "character": "Tony Lacey", "id": 10557, "credit_id": "52fe426dc3a36847f801dbef", "cast_id": 25, "profile_path": "/tsExCQX0EcVfwIyx1SytyNcfnnO.jpg", "order": 4}, {"name": "Shelley Duvall", "character": "Pam", "id": 10409, "credit_id": "52fe426dc3a36847f801dbf3", "cast_id": 26, "profile_path": "/4MDrH9PxYrGGHXB7LmObYTdoEHV.jpg", "order": 5}, {"name": "Janet Margolin", "character": "Robin", "id": 10558, "credit_id": "52fe426dc3a36847f801dbf7", "cast_id": 27, "profile_path": "/ugN7WTDQxJQvy5795n2GHn3NgfT.jpg", "order": 6}, {"name": "Colleen Dewhurst", "character": "Mrs. Hall", "id": 10559, "credit_id": "52fe426dc3a36847f801dbfb", "cast_id": 28, "profile_path": "/2dALCygtziRLWRZx0CH0IFLJGAn.jpg", "order": 7}, {"name": "Christopher Walken", "character": "Duane Hall", "id": 4690, "credit_id": "52fe426dc3a36847f801dbff", "cast_id": 29, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 8}, {"name": "Donald Symington", "character": "Mr. Hall", "id": 10560, "credit_id": "52fe426dc3a36847f801dc03", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Helen Ludlam", "character": "Grammy Hall", "id": 10561, "credit_id": "52fe426dc3a36847f801dc07", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Mordecai Lawner", "character": "Mr. Singer", "id": 10562, "credit_id": "52fe426dc3a36847f801dc0b", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Joan Neuman", "character": "Mrs. Singer", "id": 10563, "credit_id": "52fe426dc3a36847f801dc0f", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Jonathan Munk", "character": "Alvy Singer - Age 9", "id": 10564, "credit_id": "52fe426dc3a36847f801dc13", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Dick Cavett", "character": "himself", "id": 10565, "credit_id": "52fe426dc3a36847f801dc17", "cast_id": 35, "profile_path": "/wxur4NDgWKAZsjrjpc75ZTzNqsO.jpg", "order": 14}, {"name": "Marshall McLuhan", "character": "himself", "id": 10566, "credit_id": "52fe426dc3a36847f801dc1b", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Jeff Goldblum", "character": "Lacey Party Guest", "id": 4785, "credit_id": "52fe426dc3a36847f801dc1f", "cast_id": 37, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 16}, {"name": "Shelley Hack", "character": "Street Stranger (as Shelly Hack)", "id": 3665, "credit_id": "52fe426dc3a36847f801dc23", "cast_id": 38, "profile_path": "/1FdYlo8W29NyYEqy1KDESo8EqoO.jpg", "order": 17}, {"name": "Beverly D'Angelo", "character": "Actress in Rob's TV Show", "id": 821, "credit_id": "52fe426dc3a36847f801dc27", "cast_id": 39, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 18}, {"name": "Tracey Walter", "character": "Actor in Rob's TV Show", "id": 3801, "credit_id": "52fe426dc3a36847f801dc2b", "cast_id": 40, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 19}, {"name": "Sigourney Weaver", "character": "Alvy's Date Outside Theatre", "id": 10205, "credit_id": "52fe426dc3a36847f801dc2f", "cast_id": 41, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 20}, {"name": "Truman Capote", "character": "Truman Capote Look-Alike (uncredited)", "id": 1930, "credit_id": "52fe426dc3a36847f801dc33", "cast_id": 42, "profile_path": "/rRrTzbxvYAFCq55UopYDnb2aZw4.jpg", "order": 21}, {"name": "Laurie Bird", "character": "Tony Lacey's Girlfriend", "id": 97352, "credit_id": "5308944e9251411108001ce4", "cast_id": 44, "profile_path": "/iQXbHXOmX2ylwdhVKrKufQOzMez.jpg", "order": 22}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe426dc3a36847f801db87", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.5, "runtime": 93}, "707": {"poster_path": "/o8E86sXJOqAVmoxnNRoeZVCr0aa.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IS", "name": "Iceland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152427960, "overview": "A newly developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin.", "video": false, "id": 707, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "A View to a Kill", "tagline": "Has James Bond finally met his match?", "vote_count": 142, "homepage": "http://www.mgm.com/view/movie/2101/A-View-to-a-Kill/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090264", "adult": false, "backdrop_path": "/9SudvdR6HYtgTqMz17RYXdWuTUl.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "United Artists", "id": 60}], "release_date": "1985-06-12", "popularity": 1.00972806139153, "original_title": "A View to a Kill", "budget": 30000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426dc3a36847f801debf", "cast_id": 16, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Christopher Walken", "character": "Max Zorin", "id": 4690, "credit_id": "52fe426dc3a36847f801dec3", "cast_id": 17, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 1}, {"name": "Tanya Roberts", "character": "Stacey Sutton", "id": 10660, "credit_id": "52fe426dc3a36847f801dec7", "cast_id": 18, "profile_path": "/sX1JDbYa9QlzwR3vKhzK3Nx4Y3b.jpg", "order": 2}, {"name": "Grace Jones", "character": "May Day", "id": 10661, "credit_id": "52fe426dc3a36847f801decb", "cast_id": 19, "profile_path": "/8MBh8TXQYoEGHbyf7XKRbXH7kTA.jpg", "order": 3}, {"name": "Patrick Macnee", "character": "Sir Godfrey Tibbett", "id": 10662, "credit_id": "52fe426dc3a36847f801decf", "cast_id": 20, "profile_path": "/l5SmR6zmSkKO41vGpjggJYWYAT1.jpg", "order": 4}, {"name": "Patrick Bauchau", "character": "Scarpine", "id": 5274, "credit_id": "52fe426ec3a36847f801ded3", "cast_id": 21, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 5}, {"name": "David Yip", "character": "Chuck Lee", "id": 696, "credit_id": "52fe426ec3a36847f801ded7", "cast_id": 22, "profile_path": "/s2ApWZ620ZMe8nwvKM2y8TwjenE.jpg", "order": 6}, {"name": "Fiona Fullerton", "character": "Pola Ivanova", "id": 10663, "credit_id": "52fe426ec3a36847f801dedb", "cast_id": 23, "profile_path": "/xfjBxJ1mbYXa9PdzP3YOKXhUIRP.jpg", "order": 7}, {"name": "Willoughby Gray", "character": "Dr. Carl Mortner", "id": 10664, "credit_id": "52fe426ec3a36847f801dedf", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801dee3", "cast_id": 25, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426ec3a36847f801dee7", "cast_id": 26, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426ec3a36847f801deeb", "cast_id": 27, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 11}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426ec3a36847f801deef", "cast_id": 28, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 12}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426ec3a36847f801def3", "cast_id": 29, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 13}, {"name": "Manning Redwood", "character": "Bob Conley", "id": 99366, "credit_id": "5401059e0e0a2658e600326a", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Alison Doody", "character": "Jenny Flex", "id": 739, "credit_id": "540105bf0e0a2658f100309d", "cast_id": 33, "profile_path": "/rF2Ai6QVb2WeDwrFMhtbOOfUule.jpg", "order": 15}, {"name": "Jean Rougerie", "character": "Achille Aubergine", "id": 35881, "credit_id": "540105ef0e0a2658db003202", "cast_id": 34, "profile_path": "/o3bM4t4hMhFa0mnE8HW19BtvNmG.jpg", "order": 16}, {"name": "Daniel Benzali", "character": "Howe", "id": 58663, "credit_id": "5401062a0e0a2658e9003215", "cast_id": 35, "profile_path": "/kYigZnhA4GGG6ETTXeugrOsxrve.jpg", "order": 17}, {"name": "Papillon Soo", "character": "Pah Ho", "id": 8668, "credit_id": "540106420e0a2658f10030ac", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Mary Stavin", "character": "Kimberley Jones", "id": 147290, "credit_id": "540106940e0a2658d8003173", "cast_id": 37, "profile_path": null, "order": 19}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426dc3a36847f801de73", "profile_path": null, "id": 10179}], "vote_average": 5.7, "runtime": 131}, "708": {"poster_path": "/cBk0TKOc64iR5TDi1k5bWAZwbhz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 191185897, "overview": "James Bond helps a Russian General escape into the west. He soon finds out that the KGB wants to kill him for helping the General. A little while later the General is kidnapped from the Secret Service leading 007 to be suspicious.", "video": false, "id": 708, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Living Daylights", "tagline": "Licensed to thrill.", "vote_count": 123, "homepage": "http://www.mgm.com/view/movie/1132/The-Living-Daylights/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "sk", "name": "Sloven\u010dina"}], "imdb_id": "tt0093428", "adult": false, "backdrop_path": "/gL5lGkWecfArxGqDkWVJsLm4jek.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}], "release_date": "1987-06-29", "popularity": 1.16758143833182, "original_title": "The Living Daylights", "budget": 40000000, "cast": [{"name": "Timothy Dalton", "character": "James Bond", "id": 10669, "credit_id": "52fe426ec3a36847f801df93", "cast_id": 18, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 0}, {"name": "Maryam d'Abo", "character": "Kara Milovy", "id": 10670, "credit_id": "52fe426ec3a36847f801df97", "cast_id": 19, "profile_path": "/2KQONgibNNv1zM3AMVwtsO9jUdU.jpg", "order": 1}, {"name": "Jeroen Krabb\u00e9", "character": "General Georgi Koskov", "id": 1924, "credit_id": "52fe426ec3a36847f801df9b", "cast_id": 20, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 2}, {"name": "Joe Don Baker", "character": "Brad Whitaker", "id": 10671, "credit_id": "52fe426ec3a36847f801df9f", "cast_id": 21, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "General Leonid Pushkin", "id": 655, "credit_id": "52fe426ec3a36847f801dfa3", "cast_id": 22, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Art Malik", "character": "Kamran Shah", "id": 10672, "credit_id": "52fe426ec3a36847f801dfa7", "cast_id": 23, "profile_path": "/dJ8isTdH4hLfQHDEJu7DQYdfeIz.jpg", "order": 5}, {"name": "Andreas Wisniewski", "character": "Necros", "id": 10673, "credit_id": "52fe426ec3a36847f801dfab", "cast_id": 24, "profile_path": "/uZwfBgn0GBfmfjbxA69GDXctN5W.jpg", "order": 6}, {"name": "Thomas Wheatley", "character": "Saunders", "id": 10674, "credit_id": "52fe426ec3a36847f801dfaf", "cast_id": 25, "profile_path": "/e9HA0whzyevXWKY6z5Xp1TdRW1L.jpg", "order": 7}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801dfb3", "cast_id": 26, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 8}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426ec3a36847f801dfb7", "cast_id": 27, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 9}, {"name": "Geoffrey Keen", "character": "Sir Frederick Gray", "id": 10462, "credit_id": "52fe426ec3a36847f801dfbb", "cast_id": 28, "profile_path": "/1yfyO0eZFyMgDVUxzqcaGAHzPEZ.jpg", "order": 10}, {"name": "Walter Gotell", "character": "General Anatol Gogol", "id": 6610, "credit_id": "52fe426ec3a36847f801dfbf", "cast_id": 29, "profile_path": "/mZ24RTuEPPCzmbgwV7lcNuVvZ5f.jpg", "order": 11}, {"name": "Caroline Bliss", "character": "Miss Moneypenny", "id": 10675, "credit_id": "52fe426ec3a36847f801dfc3", "cast_id": 30, "profile_path": "/fZ1OrTViGGmyk0dAqnhBA94XJ9y.jpg", "order": 12}, {"name": "John Terry", "character": "Felix Leiter", "id": 8659, "credit_id": "5404ee5dc3a368068c0070f5", "cast_id": 33, "profile_path": "/ziI8HiAeTLdud06edGUo2AXwdij.jpg", "order": 13}, {"name": "Virginia Hey", "character": "Rubavitch", "id": 26055, "credit_id": "5404ee98c3a36816af0025ae", "cast_id": 34, "profile_path": "/8UTt7vcFFkFFi4x03jYcIkGUyGE.jpg", "order": 14}, {"name": "Julie T. Wallace", "character": "Rosika Miklos", "id": 28897, "credit_id": "5404eef5c3a368068c007110", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Bill Weston", "character": "Blayden Butler", "id": 24278, "credit_id": "5404ef5fc3a368119c0028d5", "cast_id": 40, "profile_path": "/apVNA3SRNIrB6gu88nGTEhPewI2.jpg", "order": 20}, {"name": "Nadim Sawalha", "character": "Tangier Chief of Security", "id": 2980, "credit_id": "5404f031c3a3682d98005a14", "cast_id": 41, "profile_path": "/94kMNtU2FYXruX4BOOjWrWkoe2x.jpg", "order": 21}, {"name": "Barbara Broccoli", "character": "Opera Patron (uncredited)", "id": 10666, "credit_id": "55183431c3a36863020042ca", "cast_id": 43, "profile_path": "/pHTiuUR93mTJhsThZv0Es4xMerS.jpg", "order": 22}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801df41", "profile_path": null, "id": 10179}], "vote_average": 5.9, "runtime": 130}, "709": {"poster_path": "/4lpfRGW7dCqlco2n6wqptyFAz4V.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156167015, "overview": "James Bond and his American colleague Felix Leiter arrest the drug lord Sanchez who succeeds in escaping and takes revenge on Felix and his wife. Bond knows but just one thing: revenge.", "video": false, "id": 709, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Licence to Kill", "tagline": "His bad side is a dangerous place to be.", "vote_count": 206, "homepage": "http://www.mgm.com/view/movie/1111/License-to-Kill/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0097742", "adult": false, "backdrop_path": "/gofH6jMZLo8AEC7YUExigYiCjSa.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "United Artists", "id": 60}, {"name": "Danjaq", "id": 10761}], "release_date": "1989-08-03", "popularity": 1.34992497841426, "original_title": "Licence to Kill", "budget": 32000000, "cast": [{"name": "Timothy Dalton", "character": "James Bond", "id": 10669, "credit_id": "52fe426ec3a36847f801e07f", "cast_id": 20, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 0}, {"name": "Carey Lowell", "character": "Pam Bouvier", "id": 10679, "credit_id": "52fe426ec3a36847f801e083", "cast_id": 21, "profile_path": "/193Lp3xIPzi8Q8VDRsRK3s8bXqg.jpg", "order": 1}, {"name": "Robert Davi", "character": "Franz Sanchez", "id": 2055, "credit_id": "52fe426ec3a36847f801e087", "cast_id": 22, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 2}, {"name": "Talisa Soto", "character": "Lupe Lamora", "id": 10680, "credit_id": "52fe426ec3a36847f801e08b", "cast_id": 23, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 3}, {"name": "Anthony Zerbe", "character": "Milton Krest", "id": 2516, "credit_id": "52fe426ec3a36847f801e08f", "cast_id": 24, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 4}, {"name": "Frank McRae", "character": "Sharkey", "id": 1735, "credit_id": "52fe426ec3a36847f801e093", "cast_id": 25, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 5}, {"name": "David Hedison", "character": "Felix Leiter", "id": 10226, "credit_id": "52fe426ec3a36847f801e097", "cast_id": 26, "profile_path": "/1Wp1EV1Kcpr85imqCEkFvqCMYDZ.jpg", "order": 6}, {"name": "Wayne Newton", "character": "Professor Joe Butcher", "id": 10681, "credit_id": "52fe426ec3a36847f801e09b", "cast_id": 27, "profile_path": "/18fkbXVRlEIXKKmsGq5OeJuTJ9V.jpg", "order": 7}, {"name": "Benicio del Toro", "character": "Dario", "id": 1121, "credit_id": "52fe426ec3a36847f801e09f", "cast_id": 28, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 8}, {"name": "Anthony Starke", "character": "Truman-Lodge", "id": 10682, "credit_id": "52fe426ec3a36847f801e0a3", "cast_id": 29, "profile_path": "/f2zbCJ2hWkxn5TGvNVi6b9RVWWj.jpg", "order": 9}, {"name": "Everett McGill", "character": "Ed Killifer", "id": 5616, "credit_id": "52fe426ec3a36847f801e0a7", "cast_id": 30, "profile_path": "/qeNdO3yN3cWVWgKQqQOKU812iiR.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801e0ab", "cast_id": 31, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "Pedro Armend\u00e1riz, Jr.", "character": "President Hector Lopez", "id": 7372, "credit_id": "52fe426ec3a36847f801e0af", "cast_id": 32, "profile_path": "/vqg8f4FeCKUD7jTVM2gLpElNZuh.jpg", "order": 12}, {"name": "Robert Brown", "character": "M", "id": 10513, "credit_id": "52fe426ec3a36847f801e0b3", "cast_id": 33, "profile_path": "/8L1cp6Py2YCC5LdmWbJcyry4swZ.jpg", "order": 13}, {"name": "Grand L. Bush", "character": "Hawkins", "id": 14333, "credit_id": "52fe426ec3a36847f801e0c3", "cast_id": 36, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 14}, {"name": "Priscilla Barnes", "character": "Della Churchill Leiter", "id": 23648, "credit_id": "5401bce30e0a2658db004b52", "cast_id": 37, "profile_path": "/llDEiCLnmEm68b658dv29Bh2wtR.jpg", "order": 15}, {"name": "Don Stroud", "character": "Heller", "id": 69494, "credit_id": "5401bcf30e0a2658ee004afb", "cast_id": 38, "profile_path": "/xXzHqpByk7c29kx6SOcnQkxwqlo.jpg", "order": 16}, {"name": "Caroline Bliss", "character": "Miss Moneypenny", "id": 10675, "credit_id": "5401bd140e0a2658f1004984", "cast_id": 39, "profile_path": "/fZ1OrTViGGmyk0dAqnhBA94XJ9y.jpg", "order": 17}, {"name": "Cary-Hiroyuki Tagawa", "character": "Kwang", "id": 11398, "credit_id": "5401bd270e0a2658db004b5a", "cast_id": 40, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 18}], "directors": [{"name": "John Glen", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e01b", "profile_path": null, "id": 10179}], "vote_average": 5.5, "runtime": 133}, "710": {"poster_path": "/qUsIUglvfAIEsRhcRLBKXj2ZvSP.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MC", "name": "Monaco"}, {"iso_3166_1": "PR", "name": "Puerto Rico"}, {"iso_3166_1": "RU", "name": "Russia"}], "revenue": 352194034, "overview": "James Bond must unmask the mysterious head of the Janus Syndicate and prevent the leader from utilizing the GoldenEye weapons system to inflict devastating revenge on Britain.", "video": false, "id": 710, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "GoldenEye", "tagline": "When the world is the target and the threat is real, you can still depend on one man.", "vote_count": 420, "homepage": "http://www.mgm.com/view/movie/757/Goldeneye/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0113189", "adult": false, "backdrop_path": "/aneVpr70Uxoo6Nk2QpZnG6DwC9E.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "United Artists", "id": 60}], "release_date": "1995-11-16", "popularity": 1.91454970732475, "original_title": "GoldenEye", "budget": 58000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe426ec3a36847f801e10d", "cast_id": 1, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Sean Bean", "character": "Alec Trevelyan", "id": 48, "credit_id": "52fe426ec3a36847f801e111", "cast_id": 2, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 1}, {"name": "Izabella Scorupco", "character": "Natalya Fyodorovna Simonova", "id": 10695, "credit_id": "52fe426ec3a36847f801e115", "cast_id": 3, "profile_path": "/7lQ494byqcFfVkJtZYLl38MvfKS.jpg", "order": 2}, {"name": "Famke Janssen", "character": "Xenia Onatopp", "id": 10696, "credit_id": "52fe426ec3a36847f801e119", "cast_id": 4, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 3}, {"name": "Joe Don Baker", "character": "Jack Wade", "id": 10671, "credit_id": "52fe426ec3a36847f801e11d", "cast_id": 5, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 4}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe426ec3a36847f801e121", "cast_id": 6, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 5}, {"name": "Gottfried John", "character": "General Arkady Grigorovich Ourumov", "id": 3757, "credit_id": "52fe426ec3a36847f801e125", "cast_id": 7, "profile_path": "/hOVrTlQwZX4THosi9usXISC7mNS.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Valentin Dmitrovich Zukovsky", "id": 1923, "credit_id": "52fe426ec3a36847f801e129", "cast_id": 8, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Alan Cumming", "character": "Boris Grishenko", "id": 10697, "credit_id": "52fe426ec3a36847f801e12d", "cast_id": 9, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 8}, {"name": "Tch\u00e9ky Karyo", "character": "Defense Minister Dmitri Mishkin", "id": 10698, "credit_id": "52fe426ec3a36847f801e131", "cast_id": 10, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 9}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ec3a36847f801e135", "cast_id": 11, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 10}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe426ec3a36847f801e139", "cast_id": 12, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 11}, {"name": "Michael Kitchen", "character": "Bill Tanner", "id": 10648, "credit_id": "52fe426ec3a36847f801e13d", "cast_id": 13, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 12}, {"name": "Serena Gordon", "character": "Caroline", "id": 10700, "credit_id": "52fe426ec3a36847f801e141", "cast_id": 14, "profile_path": "/uiqwc2Y7wP7gSbT0h3db9Mm8YDh.jpg", "order": 13}, {"name": "Simon Kunz", "character": "Severnaya Duty Officer", "id": 10701, "credit_id": "52fe426ec3a36847f801e145", "cast_id": 15, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 14}, {"name": "Billy J. Mitchell", "character": "Admiral Chuck Farrell", "id": 55911, "credit_id": "5401b8650e0a2658ee004a76", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Constantine Gregory", "character": "Computer Store Manager", "id": 27425, "credit_id": "5401b87f0e0a2658db004acf", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Minnie Driver", "character": "Irina", "id": 6613, "credit_id": "5401b88d0e0a2658e2004c04", "cast_id": 39, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 17}, {"name": "Michelle Arthur", "character": "Anna", "id": 29054, "credit_id": "5401b8a70e0a2658e2004c07", "cast_id": 40, "profile_path": "/zKQFuK3W4LMzfIz8W86RYf6jGp7.jpg", "order": 18}, {"name": "Ravil Isyanov", "character": "Mig Pilot", "id": 41742, "credit_id": "5401b8ba0e0a2658db004ad3", "cast_id": 41, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 19}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e14b", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.2, "runtime": 130}, "711": {"poster_path": "/msNpSoipcmMKaZRTlK3vHopHRAg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80049764, "overview": "Gus van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.", "video": false, "id": 711, "genres": [{"id": 18, "name": "Drama"}], "title": "Finding Forrester", "tagline": "In an ordinary place, he found the one person to make his life extraordinary.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181536", "adult": false, "backdrop_path": "/ihEhIKWqVUCWvtvGf7u7IKUMdfm.jpg", "production_companies": [{"name": "Laurence Mark Productions", "id": 415}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Finding Forrester Productions", "id": 50830}, {"name": "Fountainbridge Films", "id": 414}], "release_date": "2000-12-21", "popularity": 0.529124619674107, "original_title": "Finding Forrester", "budget": 43000000, "cast": [{"name": "Sean Connery", "character": "William Forrester", "id": 738, "credit_id": "52fe426ec3a36847f801e21d", "cast_id": 11, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Rob Brown", "character": "Jamal Wallace", "id": 10689, "credit_id": "52fe426ec3a36847f801e221", "cast_id": 12, "profile_path": "/m8VAOhTpIQYWDYg2MOc9lOFLahF.jpg", "order": 1}, {"name": "F. Murray Abraham", "character": "Prof. Robert Crawford", "id": 1164, "credit_id": "52fe426ec3a36847f801e225", "cast_id": 13, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 2}, {"name": "Anna Paquin", "character": "Claire Spence", "id": 10690, "credit_id": "52fe426ec3a36847f801e229", "cast_id": 14, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 3}, {"name": "Busta Rhymes", "character": "Terrell Wallace", "id": 6485, "credit_id": "52fe426ec3a36847f801e22d", "cast_id": 15, "profile_path": "/1NqDmMk2jnrLjJUfb68gtMnSyF8.jpg", "order": 4}, {"name": "April Grace", "character": "Ms. Joyce", "id": 10691, "credit_id": "52fe426ec3a36847f801e231", "cast_id": 16, "profile_path": "/9vHFcPQS463AjDgst7vFJy6ZUnA.jpg", "order": 5}, {"name": "Michael Pitt", "character": "John Coleridge", "id": 10692, "credit_id": "52fe426ec3a36847f801e235", "cast_id": 17, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 6}, {"name": "Michael Nouri", "character": "Dr. Spence", "id": 8699, "credit_id": "52fe426ec3a36847f801e239", "cast_id": 18, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 7}, {"name": "Matt Damon", "character": "Steven Sanderson", "id": 1892, "credit_id": "53aaa45c0e0a2646c8001723", "cast_id": 19, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 8}, {"name": "Richard Easton", "character": "Prof. Matthews", "id": 172705, "credit_id": "53aaa4ebc3a3684cff00126c", "cast_id": 20, "profile_path": "/gvFTE9Zqk5y69B4FKrAhubu4071.jpg", "order": 9}, {"name": "Glenn Fitzgerald", "character": "Massie, Forrester's Delivery Man", "id": 10694, "credit_id": "53aaa506c3a36871f8000df5", "cast_id": 21, "profile_path": "/mZtEWlHspjit1UGs9cmzzuWeubV.jpg", "order": 10}, {"name": "Lil' Zane", "character": "Damon", "id": 1216485, "credit_id": "53aaa523c3a3684d160011d4", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Gus Van Sant", "character": "Library Assistant (uncredited)", "id": 5216, "credit_id": "53aaa56cc3a3684cff001271", "cast_id": 23, "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "order": 12}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e1e3", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 6.9, "runtime": 136}, "712": {"poster_path": "/md9kMKnLG8LG4pMDM98gy5x4K5L.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 254700832, "overview": "Four Weddings And A Funeral is a British comedy about a British Man named Charles and an American Woman named Carrie who go through numerous weddings before they determine if they are right for one another.", "video": false, "id": 712, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Four Weddings and a Funeral", "tagline": "Five Good Reasons To Stay Single", "vote_count": 121, "homepage": "http://workingtitlefilms.com/film.php?filmID=59", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109831", "adult": false, "backdrop_path": "/wyvHy4ElaiNamrpS6fjquYQqxhQ.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Channel Four Films", "id": 181}, {"name": "Working Title Films", "id": 10163}], "release_date": "1994-03-09", "popularity": 0.731744252540586, "original_title": "Four Weddings and a Funeral", "budget": 6000000, "cast": [{"name": "Hugh Grant", "character": "Charles", "id": 3291, "credit_id": "52fe426ec3a36847f801e2a1", "cast_id": 7, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Andie MacDowell", "character": "Carrie", "id": 1533, "credit_id": "52fe426ec3a36847f801e2a5", "cast_id": 8, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 1}, {"name": "James Fleet", "character": "Tom", "id": 10726, "credit_id": "52fe426ec3a36847f801e2a9", "cast_id": 9, "profile_path": "/uRerBtLv4SZJp1s52vrkIF85tg2.jpg", "order": 2}, {"name": "Simon Callow", "character": "Gareth", "id": 4001, "credit_id": "52fe426ec3a36847f801e2ad", "cast_id": 10, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 3}, {"name": "John Hannah", "character": "Matthew", "id": 10727, "credit_id": "52fe426ec3a36847f801e2b1", "cast_id": 11, "profile_path": "/8NUa2IAIcDTbfXHBl4LApBi5qnR.jpg", "order": 4}, {"name": "Kristin Scott Thomas", "character": "Fiona", "id": 5470, "credit_id": "52fe426ec3a36847f801e2b5", "cast_id": 12, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 5}, {"name": "David Bower", "character": "David", "id": 10728, "credit_id": "52fe426ec3a36847f801e2b9", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Charlotte Coleman", "character": "Scarlett", "id": 10729, "credit_id": "52fe426ec3a36847f801e2bd", "cast_id": 14, "profile_path": "/tMJLpQaCeoqa4taaPpXpL8TS6b.jpg", "order": 7}, {"name": "Rowan Atkinson", "character": "Father Gerald", "id": 10730, "credit_id": "52fe426ec3a36847f801e2c1", "cast_id": 15, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 8}, {"name": "Anna Chancellor", "character": "Henrietta", "id": 10731, "credit_id": "52fe426ec3a36847f801e2c5", "cast_id": 16, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 9}, {"name": "Timothy Walker", "character": "Angus", "id": 10736, "credit_id": "52fe426ec3a36847f801e2c9", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Sara Crowe", "character": "Laura", "id": 117557, "credit_id": "52fe426ec3a36847f801e2f7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Ronald Herdman", "character": "Vicar", "id": 1075073, "credit_id": "52fe426ec3a36847f801e2fb", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Elspet Gray", "character": "Laura's Mother", "id": 151439, "credit_id": "52fe426ec3a36847f801e2ff", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Philip Voss", "character": "Laura's Father", "id": 189281, "credit_id": "52fe426ec3a36847f801e303", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Rupert Vansittart", "character": "George the Boor at The Boatman", "id": 2479, "credit_id": "52fe426ec3a36847f801e307", "cast_id": 29, "profile_path": "/Adw0Z2bT8qU5H6S0swuUWrBKDDs.jpg", "order": 15}, {"name": "Nicola Walker", "character": "Frightful Folk Duo", "id": 141354, "credit_id": "52fe426ec3a36847f801e30b", "cast_id": 30, "profile_path": "/bJzGA9tckfFSo0PnZDaHYlVCZz1.jpg", "order": 16}, {"name": "Struan Rodger", "character": "Best Man", "id": 137927, "credit_id": "52fe426ec3a36847f801e30f", "cast_id": 31, "profile_path": null, "order": 17}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe426ec3a36847f801e27f", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.3, "runtime": 117}, "82633": {"poster_path": "/uViCpDSOo0Pexx1KWX7NXQaS9BH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53676580, "overview": "Set in the Depression-era Franklin County, Virginia, a bootlegging gang is threatened by authorities who want a cut of their profits.", "video": false, "id": 82633, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Lawless", "tagline": "When the law became corrupt, outlaws became heroes.", "vote_count": 358, "homepage": "http://lawless-film.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1212450", "adult": false, "backdrop_path": "/qNXTnWdDura71AHfSu1Cf3VXupA.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Benaroya Pictures", "id": 6692}, {"name": "Yucaipa Films", "id": 12005}, {"name": "Annapurna Pictures", "id": 13184}, {"name": "Pie Films Inc.", "id": 13507}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Revolt Films", "id": 15495}, {"name": "Blum Hanson Allen Films", "id": 47124}], "release_date": "2012-08-29", "popularity": 0.652424478601727, "original_title": "Lawless", "budget": 26000000, "cast": [{"name": "Shia LaBeouf", "character": "Jack Bondurant", "id": 10959, "credit_id": "52fe48629251416c9108a71f", "cast_id": 14, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Tom Hardy", "character": "Forrest Bondurant", "id": 2524, "credit_id": "52fe48629251416c9108a717", "cast_id": 11, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 1}, {"name": "Guy Pearce", "character": "Charlie Rakes", "id": 529, "credit_id": "52fe48629251416c9108a749", "cast_id": 28, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 2}, {"name": "Jessica Chastain", "character": "Maggie Beauford", "id": 83002, "credit_id": "52fe48629251416c9108a71b", "cast_id": 12, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 3}, {"name": "Mia Wasikowska", "character": "Bertha Minnix", "id": 76070, "credit_id": "52fe48629251416c9108a723", "cast_id": 16, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 4}, {"name": "Dane DeHaan", "character": "Cricket Pate", "id": 122889, "credit_id": "52fe48629251416c9108a72f", "cast_id": 19, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 5}, {"name": "Noah Taylor", "character": "Gummy Walsh", "id": 1284, "credit_id": "52fe48629251416c9108a727", "cast_id": 17, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 6}, {"name": "Jason Clarke", "character": "Howard Bondurant", "id": 76512, "credit_id": "52fe48629251416c9108a72b", "cast_id": 18, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 7}, {"name": "Lew Temple", "character": "Deputy Henry Abshire", "id": 37027, "credit_id": "52fe48629251416c9108a733", "cast_id": 20, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 8}, {"name": "Gary Oldman", "character": "Floyd Banner", "id": 64, "credit_id": "52fe48629251416c9108a751", "cast_id": 33, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 10}, {"name": "Marcus Hester", "character": "Deputy Jeff Richards", "id": 62076, "credit_id": "52fe48629251416c9108a755", "cast_id": 35, "profile_path": "/mOlrvlDpYUzDJhG6yc2wiRCdH5X.jpg", "order": 11}, {"name": "Bill Camp", "character": "Sheriff Hodges", "id": 121718, "credit_id": "52fe48629251416c9108a759", "cast_id": 36, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 12}, {"name": "Alex Van", "character": "Tizwell Minnix", "id": 97598, "credit_id": "52fe48629251416c9108a75d", "cast_id": 37, "profile_path": "/3S4VgJgN1K1LxqARuDD1nxLdTY4.jpg", "order": 13}], "directors": [{"name": "John Hillcoat", "department": "Directing", "job": "Director", "credit_id": "52fe48629251416c9108a763", "profile_path": "/4VqHE3mBPSUpR2ep7vpx27arFiY.jpg", "id": 53333}], "vote_average": 6.5, "runtime": 115}, "714": {"poster_path": "/jcFFwrF9e7XPeQK5Hmcuf5NAHOA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 333011068, "overview": "A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now 007 must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.", "video": false, "id": 714, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Tomorrow Never Dies", "tagline": "The Man. The Number. The License...are all back.", "vote_count": 307, "homepage": "http://www.mgm.com/view/movie/2029/Tomorrow-Never-Dies/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0120347", "adult": false, "backdrop_path": "/lHZ5H1jd4zVJYr1wfLKBdXYtZ17.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "United Artists", "id": 60}], "release_date": "1997-12-11", "popularity": 1.64832932580031, "original_title": "Tomorrow Never Dies", "budget": 110000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe426fc3a36847f801e3cf", "cast_id": 1, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Jonathan Pryce", "character": "Elliot Carver", "id": 378, "credit_id": "52fe426fc3a36847f801e3d3", "cast_id": 2, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 1}, {"name": "Michelle Yeoh", "character": "Wai Lin", "id": 1620, "credit_id": "52fe426fc3a36847f801e3d7", "cast_id": 3, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 2}, {"name": "Teri Hatcher", "character": "Paris Carver", "id": 10742, "credit_id": "52fe426fc3a36847f801e3db", "cast_id": 4, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 3}, {"name": "Ricky Jay", "character": "Henry Gupta", "id": 10743, "credit_id": "52fe426fc3a36847f801e3df", "cast_id": 5, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 4}, {"name": "G\u00f6tz Otto", "character": "Stamper", "id": 10744, "credit_id": "52fe426fc3a36847f801e3e3", "cast_id": 6, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 5}, {"name": "Joe Don Baker", "character": "Jack Wade", "id": 10671, "credit_id": "52fe426fc3a36847f801e3e7", "cast_id": 7, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 6}, {"name": "Vincent Schiavelli", "character": "Dr. Kaufman", "id": 3418, "credit_id": "52fe426fc3a36847f801e3eb", "cast_id": 8, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 7}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe426fc3a36847f801e3ef", "cast_id": 9, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 8}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426fc3a36847f801e3f3", "cast_id": 10, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 9}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe426fc3a36847f801e3f7", "cast_id": 11, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 10}, {"name": "Colin Salmon", "character": "Charles Robinson", "id": 5414, "credit_id": "52fe426fc3a36847f801e3fb", "cast_id": 12, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 11}, {"name": "Geoffrey Palmer", "character": "Admiral Roebuck", "id": 10746, "credit_id": "52fe426fc3a36847f801e3ff", "cast_id": 13, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 12}, {"name": "Julian Fellowes", "character": "Minister of Defence", "id": 10747, "credit_id": "52fe426fc3a36847f801e403", "cast_id": 14, "profile_path": "/kf38Wij4DyNyVFFL9HokomrQNkc.jpg", "order": 13}, {"name": "Terence Rigby", "character": "General Bukharin", "id": 10748, "credit_id": "52fe426fc3a36847f801e407", "cast_id": 15, "profile_path": "/cmg8qwt7Wo649ocgs2vxTPC2MnH.jpg", "order": 14}, {"name": "Nina Young", "character": "Tamara Steel", "id": 58778, "credit_id": "5401f026c3a3682d98001b07", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Daphne Deckers", "character": "PR Lady", "id": 1238610, "credit_id": "5401f03fc3a368068c00349e", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Colin Stinton", "character": "Dr. Dave Greenwalt", "id": 23608, "credit_id": "5401f057c3a36843720033dd", "cast_id": 40, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 17}, {"name": "Al Matthews", "character": "Master Sergeant 3", "id": 10208, "credit_id": "5401f074c3a368436300338d", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Cecilie Thomsen", "character": "Professor Inga Bergstrom", "id": 1423897, "credit_id": "54d4fb21c3a3686ac4013afa", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Mark Spalding", "character": "Stealth Boat Captain", "id": 176228, "credit_id": "54d4fb44c3a3685d5700990f", "cast_id": 43, "profile_path": null, "order": 20}, {"name": "Bruce Alexander", "character": "Captain - HMS Chester", "id": 1184909, "credit_id": "54d4fb55c3a3686ac4013b0c", "cast_id": 44, "profile_path": null, "order": 21}, {"name": "Anthony Green", "character": "Firing Officer - HMS Chester", "id": 153208, "credit_id": "54d4fb6bc3a3686abc013fdd", "cast_id": 45, "profile_path": "/gVi3WW7Icv77cNGYibTKgz2q0eG.jpg", "order": 22}, {"name": "Christopher Bowen", "character": "Cmdr. Richard Day - HMS Devonshire", "id": 25688, "credit_id": "54d4fb7bc3a368616e0136f9", "cast_id": 46, "profile_path": null, "order": 23}, {"name": "Andrew Hawkins", "character": "Lt. Cmdr. Peter Hume - HMS Devonshire", "id": 1423898, "credit_id": "54d4fb89c3a3686ac80131f2", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "Dominic Shaun", "character": "Lieutenant Commander - HMS Devonshire", "id": 1423899, "credit_id": "54d4fb9792514173cf008ea4", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Julian Rhind-Tutt", "character": "Yeoman - HMS Devonshire", "id": 7031, "credit_id": "54d4fba6c3a36871c100b5be", "cast_id": 49, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 26}, {"name": "Gerard Butler", "character": "Leading Seaman - HMS Devonshire", "id": 17276, "credit_id": "54d4fbb3c3a3686ac4013b13", "cast_id": 50, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 27}, {"name": "Adam Barker", "character": "Sonar Operator - HMS Devonshire", "id": 201635, "credit_id": "54d4fbc4c3a368616e0136fe", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "Michael Byrne", "character": "Admiral Kelly - HMS Bedford", "id": 742, "credit_id": "54d4fbdac3a3686ac2013210", "cast_id": 52, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 29}, {"name": "Pip Torrens", "character": "Captain - HMS Bedford", "id": 36666, "credit_id": "54d4fbee9251413fca0144cc", "cast_id": 53, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 30}, {"name": "Hugh Bonneville", "character": "Air Warfare Officer - HMS Bedford", "id": 19923, "credit_id": "54d4fbfdc3a368746900ad08", "cast_id": 54, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 31}], "directors": [{"name": "Roger Spottiswoode", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e40d", "profile_path": "/hH8tIBh0RI7VwI4jQgphtB0qABR.jpg", "id": 1724}], "vote_average": 5.8, "runtime": 119}, "8909": {"poster_path": "/mUrkppyahzk6koYFekxeu0tmcPd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 258270008, "overview": "Doormat Wesley Gibson discovers that his recently murdered father -- who Wesley never knew -- belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.", "video": false, "id": 8909, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Wanted", "tagline": "Choose your destiny.", "vote_count": 739, "homepage": "http://www.wantedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0493464", "adult": false, "backdrop_path": "/2mbQF4SfdbpqF8LmIxDfJ9RDqQQ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Relativity Media", "id": 7295}, {"name": "Marc Platt Productions", "id": 2527}, {"name": "Kickstart Productions", "id": 2526}, {"name": "Top Cow Productions", "id": 2528}, {"name": "Ringerike Zweite Filmproduktion", "id": 23955}, {"name": "Bazelevs Production", "id": 1038}], "release_date": "2008-06-26", "popularity": 1.37790419977635, "original_title": "Wanted", "budget": 75000000, "cast": [{"name": "Angelina Jolie", "character": "Fox", "id": 11701, "credit_id": "52fe44c7c3a36847f80a976d", "cast_id": 2, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "James McAvoy", "character": "Wesley Gibson", "id": 5530, "credit_id": "52fe44c7c3a36847f80a9771", "cast_id": 3, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Sloan", "id": 192, "credit_id": "52fe44c7c3a36847f80a9775", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Cross", "id": 3491, "credit_id": "52fe44c7c3a36847f80a9779", "cast_id": 5, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Terence Stamp", "character": "Pekwarsky", "id": 28641, "credit_id": "52fe44c7c3a36847f80a97d7", "cast_id": 23, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 4}, {"name": "Common", "character": "The Gunsmith", "id": 4238, "credit_id": "52fe44c7c3a36847f80a97db", "cast_id": 24, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 5}, {"name": "Marc Warren", "character": "The Repairman", "id": 70903, "credit_id": "52fe44c7c3a36847f80a97df", "cast_id": 25, "profile_path": "/9szgHtWkHTMRk0IXCOHngxG4oR8.jpg", "order": 6}, {"name": "Kristen Hager", "character": "Cathy", "id": 73454, "credit_id": "52fe44c7c3a36847f80a97e3", "cast_id": 26, "profile_path": "/mofGrgUP2kXXD8cgkYnzfGb8EOL.jpg", "order": 7}, {"name": "David O'Hara", "character": "Mr. X (as David Patrick O'Hara)", "id": 2482, "credit_id": "52fe44c7c3a36847f80a97e7", "cast_id": 27, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 8}, {"name": "Konstantin Khabenskiy", "character": "The Exterminator", "id": 23440, "credit_id": "52fe44c7c3a36847f80a97eb", "cast_id": 28, "profile_path": "/dSZhT7njGfcOCqvRhWrX2WANVOt.jpg", "order": 9}, {"name": "Dato Bakhtadze", "character": "The Butcher", "id": 18283, "credit_id": "52fe44c7c3a36847f80a97ef", "cast_id": 29, "profile_path": "/icfjC4D6saHKCMXhoEUoK3mngzL.jpg", "order": 10}, {"name": "Brad Calcaterra", "character": "Assassin Max Petridge", "id": 73455, "credit_id": "52fe44c7c3a36847f80a97f3", "cast_id": 30, "profile_path": "/qAMvXjgNyf6k9J5malzm6CRO4Ic.jpg", "order": 11}, {"name": "Lorna Scott", "character": "Janice", "id": 73456, "credit_id": "52fe44c7c3a36847f80a97f7", "cast_id": 31, "profile_path": "/esuLL3MYiVvSbL71nvpebZFTaDf.jpg", "order": 12}, {"name": "Chris Pratt", "character": "Barry", "id": 73457, "credit_id": "52fe44c7c3a36847f80a97fb", "cast_id": 32, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 13}, {"name": "Sophiya Haque", "character": "Puya", "id": 73458, "credit_id": "52fe44c7c3a36847f80a97ff", "cast_id": 33, "profile_path": "/oZ3KkiJ0VSqxQtk4gTABTdQFW7H.jpg", "order": 14}], "directors": [{"name": "Timur Bekmambetov", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a980b", "profile_path": "/7XQsDvrshgbFYvQN0KgUmI691uF.jpg", "id": 23430}], "vote_average": 6.0, "runtime": 110}, "221902": {"poster_path": "/1mYAejpMskvskGr0J0SaBvdjmrH.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 5437834, "overview": "Sandra is a young woman who has only one weekend to convince her colleagues they must give up their bonuses in order for her to keep her job \u2014 not an easy task in this economy.", "video": false, "id": 221902, "genres": [{"id": 18, "name": "Drama"}], "title": "Two Days, One Night", "tagline": "A quest for self-improvement", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2737050", "adult": false, "backdrop_path": "/40fJ7cg5Q5IPNxYLE5xJil33TBc.jpg", "production_companies": [{"name": "Media Programme of the European Community", "id": 21972}, {"name": "Les Films Du Fleuve", "id": 1926}, {"name": "Archipel 35", "id": 2695}, {"name": "BIM Distribuzione", "id": 225}, {"name": "Eyeworks", "id": 6461}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "Radio T\u00e9l\u00e9vision Belge Francophone (RTBF)", "id": 7466}, {"name": "Belgacom", "id": 8009}, {"name": "VOO", "id": 11797}, {"name": "Vlaams Audiovisueel fonds", "id": 3132}, {"name": "Euro-Images", "id": 32634}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France Television", "id": 7131}], "release_date": "2014-05-21", "popularity": 0.916496626509845, "original_title": "Deux jours, une nuit", "budget": 7000000, "cast": [{"name": "Marion Cotillard", "character": "Sandra", "id": 8293, "credit_id": "52fe4dd79251416c75142bc5", "cast_id": 1, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 0}, {"name": "Fabrizio Rongione", "character": "Manu", "id": 70312, "credit_id": "52fe4dd79251416c75142bc9", "cast_id": 2, "profile_path": "/koXiiwrwd5r3nqzEunyQZQSpsGa.jpg", "order": 1}, {"name": "Olivier Gourmet", "character": "Jean-Marc", "id": 45152, "credit_id": "534fcd3cc3a3681cb5000e70", "cast_id": 5, "profile_path": "/30MOkEJL3qFtAV9dlbSrFVgcNAU.jpg", "order": 2}, {"name": "Catherine Sal\u00e9e", "character": "Juliette", "id": 1029292, "credit_id": "534fcd4e0e0a267ea4000eb5", "cast_id": 6, "profile_path": "/iyvJ4REbCPETwtxp1z3SsOe5ZD7.jpg", "order": 3}, {"name": "Christelle Cornil", "character": "Anne", "id": 234492, "credit_id": "534fcd6d0e0a267eb9000e52", "cast_id": 7, "profile_path": "/t6EEsgODAde3WQf0Gkz2H3SNm0T.jpg", "order": 4}, {"name": "Batiste Sornin", "character": "Monsieur Dumont", "id": 1125175, "credit_id": "5457be570e0a2629770023a0", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Pili Groyne", "character": "Estelle", "id": 1381361, "credit_id": "5457be73c3a3681473009840", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Simon Caudry", "character": "Maxime", "id": 1381362, "credit_id": "5457be8f0e0a266fc0001d60", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Alain Eloy", "character": "Willy", "id": 54626, "credit_id": "5457beb2c3a368642e002697", "cast_id": 21, "profile_path": null, "order": 8}], "directors": [{"name": "Jean-Pierre Dardenne", "department": "Directing", "job": "Director", "credit_id": "52fe4dd79251416c75142bcf", "profile_path": "/kn4tpNTPwWODCu356VHzCjGzSG0.jpg", "id": 56209}, {"name": "Luc Dardenne", "department": "Directing", "job": "Director", "credit_id": "52fe4dd79251416c75142bd5", "profile_path": "/rZRSDYFQn0MJE1ZQHYIsFnO06XC.jpg", "id": 45138}], "vote_average": 7.0, "runtime": 95}, "8913": {"poster_path": "/9zUax4pjRgoPIJla9CQejqNJofB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Dr. Louis Creed's family moves into the country house of their dreams and discover a pet cemetery at the back of their property. The cursed burial ground deep in the woods brings the dead back to life -- with \"minor\" problems. At first, only the family's cat makes the return trip, but an accident forces a heartbroken father to contemplate the unthinkable.", "video": false, "id": 8913, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Pet Sematary", "tagline": "Sometimes dead is better.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eKHGPVeytlBfJdHGidsceilG9sR.jpg", "poster_path": "/fzWW6QlJIhbaAUVeGQXoEPqXqkU.jpg", "id": 10789, "name": "Pet Sematary Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098084", "adult": false, "backdrop_path": "/3M4MZjThGWIWTD6jmB0NSUitljR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1989-04-21", "popularity": 0.519286480916286, "original_title": "Pet Sematary", "budget": 0, "cast": [{"name": "Dale Midkiff", "character": "Louis Creed", "id": 56265, "credit_id": "52fe44c7c3a36847f80a98c3", "cast_id": 10, "profile_path": "/4I7BGUS0ZdvKx5Uk5Uoygk5B7Hj.jpg", "order": 0}, {"name": "Fred Gwynne", "character": "Jud Crandall", "id": 56266, "credit_id": "52fe44c7c3a36847f80a98c7", "cast_id": 11, "profile_path": "/xwDhOItVPzmBDfPqNMPHSSdXOMj.jpg", "order": 1}, {"name": "Denise Crosby", "character": "Rachel Creed", "id": 1743, "credit_id": "52fe44c7c3a36847f80a98cb", "cast_id": 12, "profile_path": "/6vJh3H3dTvgnZ1YoHE1qYM1AbRC.jpg", "order": 2}, {"name": "Brad Greenquist", "character": "Victor Pascow", "id": 56267, "credit_id": "52fe44c7c3a36847f80a98cf", "cast_id": 13, "profile_path": "/8rclBoyMrNwWRnUs5iPLTengKAk.jpg", "order": 3}, {"name": "Michael Lombard", "character": "Irwin Goldman", "id": 13938, "credit_id": "52fe44c7c3a36847f80a98d3", "cast_id": 14, "profile_path": "/3VeGqcvQzJF9Xrl6eXOCoDosS28.jpg", "order": 4}, {"name": "Miko Hughes", "character": "Gage Creed", "id": 8186, "credit_id": "52fe44c7c3a36847f80a98d7", "cast_id": 15, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 5}, {"name": "Blaze Berdahl", "character": "Ellie Creed", "id": 175553, "credit_id": "52fe44c7c3a36847f80a98db", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Susan Blommaert", "character": "Missy Dandridge", "id": 1913, "credit_id": "52fe44c7c3a36847f80a98df", "cast_id": 17, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 7}, {"name": "Mara Clark", "character": "Marcy Charlton", "id": 1117928, "credit_id": "52fe44c7c3a36847f80a98e3", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Kavi Raz", "character": "Steve Masterton", "id": 111710, "credit_id": "52fe44c7c3a36847f80a98e7", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Mary Louise Wilson", "character": "Dory Goldman", "id": 115767, "credit_id": "52fe44c7c3a36847f80a98eb", "cast_id": 20, "profile_path": "/tsvPhvPSlKrhcincuq8FMH2PAUq.jpg", "order": 10}, {"name": "Andrew Hubatsek", "character": "Zelda", "id": 1117929, "credit_id": "52fe44c7c3a36847f80a98ef", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Liz Davies", "character": "Girl at Infirmary", "id": 1117930, "credit_id": "52fe44c7c3a36847f80a98f3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Kara Dalke", "character": "Candystriper", "id": 1117931, "credit_id": "52fe44c7c3a36847f80a98f7", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "Mary Lambert", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a988f", "profile_path": "/oFgE0UQeeQqFhwsVaD5l26PH5kr.jpg", "id": 56263}], "vote_average": 6.4, "runtime": 103}, "8914": {"poster_path": "/r386y8YpePXoS7P4jHWZRTF36Zb.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73648228, "overview": "On a remote former submarine refueling facility called Aquatica, a team of scientists are searching for a cure for Alzheimer's disease. Dr. Susan McAlester (Saffron Burrows) genetically engineers three Mako sharks, intending to increase their brain capacity so that they can harvest the tissue as a cure for Alzheimer's. Unfortunately, the increased brain capacity also makes the sharks smarter, faster, and more dangerous. Aquatica's financial backers are skeptical and nervous about the tests, and send a corporate executive (Samuel L. Jackson) to visit the facility.", "video": false, "id": 8914, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Deep Blue Sea", "tagline": "Bigger. Smarter. Faster. Meaner.", "vote_count": 150, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0149261", "adult": false, "backdrop_path": "/adGAeyRgc7jQyXaBFyQGWGCrdJo.jpg", "production_companies": [{"name": "Riche-Ludwig Productions", "id": 28438}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Groucho III Film Partnership", "id": 28439}], "release_date": "1999-07-27", "popularity": 0.839113138667462, "original_title": "Deep Blue Sea", "budget": 60000000, "cast": [{"name": "Thomas Jane", "character": "Carter Blake", "id": 11155, "credit_id": "52fe44c7c3a36847f80a9987", "cast_id": 14, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 0}, {"name": "Saffron Burrows", "character": "Dr. Susan McCallister", "id": 9825, "credit_id": "52fe44c7c3a36847f80a998b", "cast_id": 15, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 1}, {"name": "LL Cool J", "character": "Sherman 'Preacher' Dudley", "id": 36424, "credit_id": "52fe44c7c3a36847f80a998f", "cast_id": 16, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 2}, {"name": "Michael Rapaport", "character": "Tom \"Scoggs\" Scoggins", "id": 4688, "credit_id": "52fe44c7c3a36847f80a9993", "cast_id": 17, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 3}, {"name": "Samuel L. Jackson", "character": "Russell Franklin", "id": 2231, "credit_id": "52fe44c7c3a36847f80a9997", "cast_id": 18, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 4}, {"name": "Stellan Skarsg\u00e5rd", "character": "Jim Whitlock", "id": 1640, "credit_id": "52fe44c7c3a36847f80a999b", "cast_id": 19, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 5}, {"name": "Jacqueline McKenzie", "character": "Janice Higgins", "id": 28744, "credit_id": "52fe44c7c3a36847f80a999f", "cast_id": 20, "profile_path": "/qBAp4Syl6GhbhZFV96BSDM8Fxjv.jpg", "order": 6}, {"name": "Aida Turturro", "character": "Brenda Kerns", "id": 106791, "credit_id": "52fe44c7c3a36847f80a99a3", "cast_id": 21, "profile_path": "/efqEyVJwU2o4zmfvlbuxOxlbEXj.jpg", "order": 7}, {"name": "Cristos", "character": "Boat Captain", "id": 139997, "credit_id": "52fe44c7c3a36847f80a99a7", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Daniel Rey", "character": "Helicopter Pilot", "id": 141808, "credit_id": "52fe44c7c3a36847f80a99ab", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Valente Rodriguez", "character": "Helicopter Co-Pilot", "id": 6321, "credit_id": "52fe44c7c3a36847f80a99af", "cast_id": 24, "profile_path": "/j5fIc0HUrrgE6fVel6tjXcnDPRo.jpg", "order": 10}, {"name": "Brent Roam", "character": "Helicopter Winch Operator", "id": 67351, "credit_id": "52fe44c7c3a36847f80a99b3", "cast_id": 25, "profile_path": "/mnME0nwThDk8rkkn0GmcsfzMw93.jpg", "order": 11}, {"name": "Eyal Podell", "character": "Boy #1", "id": 61855, "credit_id": "52fe44c7c3a36847f80a99b7", "cast_id": 26, "profile_path": "/c5HBvjC98ex55qTR8eOomQ93srd.jpg", "order": 12}, {"name": "Erinn Bartlett", "character": "Girl #1", "id": 60953, "credit_id": "52fe44c7c3a36847f80a99bb", "cast_id": 27, "profile_path": "/k5T5kR6A8HZmowF3ZbkPF5QtgVg.jpg", "order": 13}, {"name": "Dan Thiel", "character": "Boy #2", "id": 141809, "credit_id": "52fe44c7c3a36847f80a99bf", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Sabrina Geerinckx", "character": "Girl #2", "id": 141810, "credit_id": "52fe44c7c3a36847f80a99c3", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Tajsha Thomas", "character": "Friend of Janice", "id": 141811, "credit_id": "52fe44c7c3a36847f80a99c7", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Frank Welker", "character": "Parrot Noises (voice)", "id": 15831, "credit_id": "52fe44c7c3a36847f80a99cb", "cast_id": 31, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 17}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a9941", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 5.3, "runtime": 105}, "8916": {"poster_path": "/zoUwYRJSwatBBvBDRf1y0RtiytI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171757863, "overview": "In this animated hit, a neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.", "video": false, "id": 8916, "genres": [{"id": 16, "name": "Animation"}], "title": "Antz", "tagline": "Every ant has his day.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120587", "adult": false, "backdrop_path": "/qvHnMakgkH6UK8nUCaQYb8dlGSq.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "1998-10-02", "popularity": 0.515053879619762, "original_title": "Antz", "budget": 60000000, "cast": [{"name": "Woody Allen", "character": "Z", "id": 1243, "credit_id": "52fe44c8c3a36847f80a9af7", "cast_id": 12, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Chip", "id": 707, "credit_id": "52fe44c8c3a36847f80a9afb", "cast_id": 13, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Anne Bancroft", "character": "Queen", "id": 10774, "credit_id": "52fe44c8c3a36847f80a9aff", "cast_id": 14, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 2}, {"name": "Danny Glover", "character": "Barbatus", "id": 2047, "credit_id": "52fe44c8c3a36847f80a9b03", "cast_id": 15, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 3}, {"name": "Gene Hackman", "character": "General Mandible (voice)", "id": 193, "credit_id": "52fe44c8c3a36847f80a9b0b", "cast_id": 17, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 4}, {"name": "Jane Curtin", "character": "Muffy (voice)", "id": 58184, "credit_id": "52fe44c8c3a36847f80a9b07", "cast_id": 16, "profile_path": "/lPiGlFpjsgb1uD3zPOkaEv4T3Es.jpg", "order": 5}, {"name": "Jennifer Lopez", "character": "Azteca (voice)", "id": 16866, "credit_id": "52fe44c8c3a36847f80a9b0f", "cast_id": 18, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 6}, {"name": "John Mahoney", "character": "Grebs / Drunk Scout / Additional Voices (voice)", "id": 4251, "credit_id": "52fe44c8c3a36847f80a9b13", "cast_id": 19, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 7}, {"name": "Paul Mazursky", "character": "Psychologist (voice)", "id": 47773, "credit_id": "52fe44c8c3a36847f80a9b17", "cast_id": 20, "profile_path": "/6YUp0e6fM0OmrB6STNY1ESwHcdG.jpg", "order": 8}, {"name": "Grant Shaud", "character": "Foreman (voice)", "id": 96595, "credit_id": "52fe44c8c3a36847f80a9b1b", "cast_id": 21, "profile_path": "/7kxL3X4XM0r022tf6egqJWRw1sD.jpg", "order": 9}, {"name": "Sylvester Stallone", "character": "Weaver (voice)", "id": 16483, "credit_id": "52fe44c8c3a36847f80a9b1f", "cast_id": 22, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 10}, {"name": "Sharon Stone", "character": "Princess Bala (voice)", "id": 4430, "credit_id": "52fe44c8c3a36847f80a9b23", "cast_id": 23, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 11}, {"name": "Christopher Walken", "character": "Colonel Cutter (voice)", "id": 4690, "credit_id": "52fe44c8c3a36847f80a9b27", "cast_id": 24, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 12}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a9ab7", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44c7c3a36847f80a9abd", "profile_path": null, "id": 52870}], "vote_average": 6.0, "runtime": 83}, "12572": {"poster_path": "/roKhZLvRRzqdVY9rvDv1i5ZAmmx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8049666, "overview": "Ten vignettes in New York City: a pickpocket meets his match; a young Hasidic woman, on the eve of her marriage, reveals herself to an Indian businessman; a writer tries a pick-up line; an artist seeks a model; a composer needs to read; two women connect; a man takes a child to Central Park; lovers meet; a couple takes a walk on their anniversary; a kid goes to the prom with a girl in a wheelchair; a retired singer contemplates suicide. There are eight million stories in the naked city: these have been ten of them.", "video": false, "id": 12572, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "New York, I Love You", "tagline": "", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808399", "adult": false, "backdrop_path": "/boT0X1wTI399zK6jJ2Dgtqhjkdj.jpg", "production_companies": [{"name": "Vivendi Entertainment", "id": 4575}], "release_date": "2008-09-01", "popularity": 0.36355178091742, "original_title": "New York, I Love You", "budget": 14700000, "cast": [{"name": "Natalie Portman", "character": "Rifka", "id": 524, "credit_id": "52fe44fd9251416c75047e1d", "cast_id": 14, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Jacob", "id": 10959, "credit_id": "52fe44fd9251416c75047e21", "cast_id": 15, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Orlando Bloom", "character": "David", "id": 114, "credit_id": "52fe44fd9251416c75047e25", "cast_id": 16, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 2}, {"name": "Christina Ricci", "character": "Camille", "id": 6886, "credit_id": "52fe44fd9251416c75047e29", "cast_id": 17, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 3}, {"name": "Hayden Christensen", "character": "Johnny", "id": 17244, "credit_id": "52fe44fd9251416c75047e2d", "cast_id": 18, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 4}, {"name": "Kevin Bacon", "character": "Tom", "id": 4724, "credit_id": "52fe44fd9251416c75047e31", "cast_id": 19, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Robin Wright", "character": "Anna", "id": 32, "credit_id": "52fe44fd9251416c75047e35", "cast_id": 20, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 6}, {"name": "Julie Christie", "character": "Isabelle", "id": 1666, "credit_id": "52fe44fd9251416c75047e39", "cast_id": 21, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 7}, {"name": "Maggie Q", "character": "Call Girl", "id": 21045, "credit_id": "52fe44fd9251416c75047e4f", "cast_id": 25, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 8}, {"name": "Andy Garc\u00eda", "character": "", "id": 1271, "credit_id": "534aae4f0e0a2640cb001eb6", "cast_id": 26, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 9}, {"name": "Rachel Bilson", "character": "", "id": 52783, "credit_id": "534aae640e0a2640cb001eba", "cast_id": 27, "profile_path": "/tb5sDcY2QR72oyJthVEn4xaLJ7J.jpg", "order": 10}, {"name": "Irrfan Khan", "character": "", "id": 76793, "credit_id": "534aae760e0a2640c5001d18", "cast_id": 28, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 11}, {"name": "Ethan Hawke", "character": "", "id": 569, "credit_id": "534aae890e0a2640c8001e9c", "cast_id": 29, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 12}, {"name": "Chris Cooper", "character": "", "id": 2955, "credit_id": "534aae960e0a2640c2001bba", "cast_id": 30, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 13}, {"name": "Anton Yelchin", "character": "", "id": 21028, "credit_id": "534aaeac0e0a2640bc001aec", "cast_id": 31, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 14}, {"name": "James Caan", "character": "", "id": 3085, "credit_id": "534aaebd0e0a2640c2001bbd", "cast_id": 32, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 15}, {"name": "Blake Lively", "character": "", "id": 59175, "credit_id": "534aaedd0e0a2640cb001ec0", "cast_id": 33, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 16}, {"name": "Drea de Matteo", "character": "", "id": 70767, "credit_id": "534aaeee0e0a2640b6001d8c", "cast_id": 34, "profile_path": "/6rAp86rimrbRbZtm61jQoc5Fmkv.jpg", "order": 17}, {"name": "Bradley Cooper", "character": "", "id": 51329, "credit_id": "534aaefa0e0a2640c8001ea1", "cast_id": 35, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 18}, {"name": "John Hurt", "character": "", "id": 5049, "credit_id": "534aaf080e0a2640bf001de5", "cast_id": 36, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 19}, {"name": "Eli Wallach", "character": "", "id": 3265, "credit_id": "534aaf4b0e0a2640cb001ed3", "cast_id": 37, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 20}, {"name": "Cloris Leachman", "character": "", "id": 9599, "credit_id": "534aaf550e0a2640cb001ed5", "cast_id": 38, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 21}, {"name": "Justin Bartha", "character": "", "id": 21180, "credit_id": "534aaf630e0a2640b6001d9d", "cast_id": 39, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 22}, {"name": "Shu Qi", "character": "", "id": 21911, "credit_id": "54a4c119c3a368764f01024c", "cast_id": 40, "profile_path": "/kmTErFq6lKQww2Yk9AfpR2Q5YWx.jpg", "order": 23}], "directors": [{"name": "Natalie Portman", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047dd7", "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "id": 524}, {"name": "Fatih Akin", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047de9", "profile_path": "/wIcm73WeaS6IAA1chaSw5NN2HTQ.jpg", "id": 5125}, {"name": "Mira Nair", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047def", "profile_path": "/dUcAW2278QXiSmjW1IGxA5hanaE.jpg", "id": 6495}, {"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047df5", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}, {"name": "Yvan Attal", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047dfb", "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "id": 2245}, {"name": "Shunji Iwai", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e01", "profile_path": "/tidlYgRReWLjzyvX9YmMVkUTmsM.jpg", "id": 55785}, {"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e07", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}, {"name": "Joshua Marston", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e0d", "profile_path": "/tIksBv5jBvQh70MXayjxwqaiIcT.jpg", "id": 5872}, {"name": "Shekhar Kapur", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e13", "profile_path": "/tscFnAwxOok4DgFE7uaJhUMk7vc.jpg", "id": 37630}, {"name": "Randall Balsmeyer", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e19", "profile_path": null, "id": 15435}, {"name": "Jiang Wen", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047e4b", "profile_path": "/sLLXxXg11VFdVYFthF9RB8wIQKv.jpg", "id": 77301}], "vote_average": 5.6, "runtime": 103}, "8920": {"poster_path": "/v6xvth8PjDG350ARG9H2sF7N3SF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200804534, "overview": "Garfield, the fat, lazy, lasagna lover, has everything a cat could want. But when Jon, in an effort to impress the Liz - the vet and an old high-school crush - adopts a dog named Odie and brings him home, Garfield gets the one thing he doesn't want. Competition.", "video": false, "id": 8920, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Garfield", "tagline": "Get ready for frisky business.", "vote_count": 155, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bd1aICMrmcz94fjTibCpuQrQVJg.jpg", "poster_path": "/fPCiS9fijCf8zHaddw2QHL6SLgK.jpg", "id": 86115, "name": "Garfield Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356634", "adult": false, "backdrop_path": "/obvIA9vxfJUUYU5N7e5u3ppqvfJ.jpg", "production_companies": [{"name": "Davis Entertainment", "id": 1302}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2004-06-11", "popularity": 0.724589293296273, "original_title": "Garfield", "budget": 50000000, "cast": [{"name": "Breckin Meyer", "character": "Jon", "id": 33654, "credit_id": "52fe44c8c3a36847f80a9ba1", "cast_id": 12, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 0}, {"name": "Jennifer Love Hewitt", "character": "Liz", "id": 33259, "credit_id": "52fe44c8c3a36847f80a9ba5", "cast_id": 13, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 1}, {"name": "Stephen Tobolowsky", "character": "Happy Chapman", "id": 537, "credit_id": "52fe44c8c3a36847f80a9ba9", "cast_id": 14, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 2}, {"name": "Bill Murray", "character": "Garfield (voice)", "id": 1532, "credit_id": "52fe44c8c3a36847f80a9bad", "cast_id": 15, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Evan Arnold", "character": "Wendell", "id": 169349, "credit_id": "52fe44c8c3a36847f80a9bb1", "cast_id": 16, "profile_path": "/tx2W1DTs7dxMoBmHredOIhTtSyx.jpg", "order": 4}, {"name": "Mark Christopher Lawrence", "character": "Christopher Mello", "id": 33501, "credit_id": "52fe44c8c3a36847f80a9bb5", "cast_id": 17, "profile_path": "/8NFSpV9nIQYqWTCVhZeguAF4JsP.jpg", "order": 5}, {"name": "Vanessa Christelle", "character": "Miss Ace Hardware", "id": 1158306, "credit_id": "52fe44c8c3a36847f80a9bb9", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Daamen J. Krall", "character": "Announcer", "id": 96310, "credit_id": "52fe44c8c3a36847f80a9bbd", "cast_id": 19, "profile_path": "/u0CORJ8e2vvw1dFARU4estHYS2I.jpg", "order": 7}, {"name": "Eve Brent", "character": "Mrs. Baker", "id": 128201, "credit_id": "52fe44c8c3a36847f80a9bc1", "cast_id": 20, "profile_path": "/cQhAjiXxOfgnmDgLRbFpwrzG5Q0.jpg", "order": 8}, {"name": "Bill Hoag", "character": "Roy the Lodge Member", "id": 164177, "credit_id": "52fe44c8c3a36847f80a9bc5", "cast_id": 21, "profile_path": "/x7hk2xuAcCZUwhK0zKDZW0iuLKX.jpg", "order": 9}, {"name": "Michael Monks", "character": "Deputy Hopkins", "id": 53249, "credit_id": "52fe44c8c3a36847f80a9bc9", "cast_id": 22, "profile_path": "/oa6n4XlzpDmJeStA5a4xBY73rsD.jpg", "order": 10}, {"name": "Mel Rodriguez", "character": "Security Officer", "id": 59675, "credit_id": "52fe44c8c3a36847f80a9bcd", "cast_id": 23, "profile_path": "/fdfVBVihcLvHAOArV2KvtTSZNrY.jpg", "order": 11}, {"name": "Juliette Goglia", "character": "Little Girl", "id": 118420, "credit_id": "52fe44c8c3a36847f80a9bd1", "cast_id": 24, "profile_path": "/s0Lp6SmVUH0JNF5JUc0VWuJRYrz.jpg", "order": 12}, {"name": "Jerry Hauck", "character": "Cop", "id": 81326, "credit_id": "52fe44c8c3a36847f80a9bd5", "cast_id": 25, "profile_path": "/4Irw84301bGmjVTPLJlcxx5HbYC.jpg", "order": 13}], "directors": [{"name": "Peter Hewitt", "department": "Directing", "job": "Director", "credit_id": "52fe44c8c3a36847f80a9b61", "profile_path": "/oTsxyjGU1C1KpvuFJg9yOuvHmbD.jpg", "id": 18357}], "vote_average": 5.1, "runtime": 80}, "8922": {"poster_path": "/gaIiibMDw95MDT0QtpwMCFDSyQO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37904175, "overview": "A college-age brother and sister get more than they bargained for on their road trip home from spring break. When the bickering siblings witness a creepy truck driver tossing body bags into a sewer near an abandoned church, they investigate. Bad move! Opening a Pandora's Box of unspeakable evil, the pair must flee for their lives -- with a monstrous \"shape\" in hot pursuit.", "video": false, "id": 8922, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jeepers Creepers", "tagline": "What\u2019s eating you?", "vote_count": 109, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/2qyn3GJXqLP54fbWazRGvsnkmAA.jpg", "id": 94899, "name": "Jeepers Creepers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0263488", "adult": false, "backdrop_path": "/rkFIuhiDLpOi3kJF7X94U0jPMk7.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "American Zoetrope", "id": 70}, {"name": "Cinerenta Medienbeteiligungs KG", "id": 995}, {"name": "Cinerenta-Cinebeta", "id": 21784}, {"name": "VCL Communications", "id": 21785}], "release_date": "2001-07-01", "popularity": 0.720228981260158, "original_title": "Jeepers Creepers", "budget": 10000000, "cast": [{"name": "Gina Philips", "character": "Patricia 'Trish' Jenner", "id": 56356, "credit_id": "52fe44c8c3a36847f80a9c43", "cast_id": 10, "profile_path": "/12V6w9FM62vJjGdCUyRyeqh9Pdr.jpg", "order": 0}, {"name": "Justin Long", "character": "Darius 'Darry' Jenner", "id": 15033, "credit_id": "52fe44c8c3a36847f80a9c47", "cast_id": 11, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Jonathan Breck", "character": "The Creeper", "id": 56357, "credit_id": "52fe44c8c3a36847f80a9c4b", "cast_id": 12, "profile_path": "/bdztgErdtOoOjO2ZiSkz4sinHQH.jpg", "order": 2}, {"name": "Patricia Belcher", "character": "Jezelle Gay Hartman", "id": 56358, "credit_id": "52fe44c8c3a36847f80a9c4f", "cast_id": 13, "profile_path": "/dbbOF0P2h8qJ0fktNzMj4rmztP3.jpg", "order": 3}, {"name": "Eileen Brennan", "character": "The Cat Lady", "id": 39015, "credit_id": "52fe44c8c3a36847f80a9c53", "cast_id": 14, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 4}, {"name": "Brandon Smith", "character": "Sgt. David Tubbs", "id": 36637, "credit_id": "52fe44c8c3a36847f80a9c57", "cast_id": 15, "profile_path": "/eM1ZbYDxOXhgPcY9Zlj12UyXxyD.jpg", "order": 5}, {"name": "Peggy Sheffield", "character": "Waitress Beverly", "id": 955065, "credit_id": "52fe44c8c3a36847f80a9c5b", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Jeffrey William Evans", "character": "Restaurant Manager", "id": 215118, "credit_id": "52fe44c8c3a36847f80a9c5f", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Patrick Cherry", "character": "Binky Plutzker", "id": 943484, "credit_id": "52fe44c8c3a36847f80a9c63", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Jon Beshara", "character": "Officer Robert Gideon", "id": 948289, "credit_id": "52fe44c8c3a36847f80a9c67", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Avis-Marie Barnes", "character": "Officer Natasha Weston", "id": 168703, "credit_id": "52fe44c8c3a36847f80a9c6b", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Steve Raulerson", "character": "Cellblock Officer", "id": 163220, "credit_id": "52fe44c8c3a36847f80a9c6f", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Tom Tarantini", "character": "Austin McCoy", "id": 945612, "credit_id": "52fe44c8c3a36847f80a9c73", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "William Haze", "character": "Officer with Hole in Chest", "id": 78116, "credit_id": "52fe44c8c3a36847f80a9c77", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Kim Kahana", "character": "Camper Driver", "id": 195854, "credit_id": "52fe44c8c3a36847f80a9c7b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Chris Shepardson", "character": "Dying Boy", "id": 955081, "credit_id": "52fe44c8c3a36847f80a9c7f", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Victor Salva", "department": "Directing", "job": "Director", "credit_id": "52fe44c8c3a36847f80a9c0f", "profile_path": "/nEynERnhq53yN2J0EHCUF4nbzbs.jpg", "id": 56349}], "vote_average": 6.1, "runtime": 90}, "8923": {"poster_path": "/z3LC4kI8azbeuHRGgDdWo6VBCdX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After being wrongfully expelled from Harvard University, American Matt Buckner flees to his sister's home in England. Once there, he is befriended by her charming and dangerous brother-in-law, Pete Dunham, and introduced to the underworld of British football hooliganism. Matt learns to stand his ground through a friendship that develops against the backdrop of this secret and often violent world. 'Green Street Hooligans' is a story of loyalty, trust and the sometimes brutal consequences of living close to the edge.", "video": false, "id": 8923, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Green Street Hooligans", "tagline": "Just think of someone you hate.", "vote_count": 174, "homepage": "http://www.warnervideo.com/greenstreethooligans/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/mwugklCYl3nTSf3TbwB5EMcS5Uf.jpg", "id": 152544, "name": "Green Street Hooligans Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0385002", "adult": false, "backdrop_path": "/3FozbFTvJmgSHEEuEtz0URFHGvv.jpg", "production_companies": [{"name": "Odd Lot Entertainment", "id": 3263}], "release_date": "2005-09-09", "popularity": 0.975113715966562, "original_title": "Hooligans", "budget": 0, "cast": [{"name": "Elijah Wood", "character": "Matt Buckner", "id": 109, "credit_id": "52fe44c8c3a36847f80a9d09", "cast_id": 12, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Claire Forlani", "character": "Shannon Dunham", "id": 4174, "credit_id": "52fe44c8c3a36847f80a9d0d", "cast_id": 13, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 1}, {"name": "Charlie Hunnam", "character": "Pete Dunham", "id": 56365, "credit_id": "52fe44c8c3a36847f80a9d11", "cast_id": 14, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 2}, {"name": "Ross McCall", "character": "Dave Bjorno", "id": 56366, "credit_id": "52fe44c8c3a36847f80a9d15", "cast_id": 15, "profile_path": "/9WpqifgQ8cQ4d26Q4D8MIlBg1xr.jpg", "order": 3}, {"name": "Leo Gregory", "character": "Bovver", "id": 76968, "credit_id": "52fe44c8c3a36847f80a9d19", "cast_id": 16, "profile_path": "/fXNoCusZFi3OmLdESlJzsuMkUjp.jpg", "order": 4}, {"name": "Marc Warren", "character": "Steve Dunham", "id": 70903, "credit_id": "52fe44c8c3a36847f80a9d1d", "cast_id": 17, "profile_path": "/9szgHtWkHTMRk0IXCOHngxG4oR8.jpg", "order": 5}, {"name": "Rafe Spall", "character": "Swill", "id": 28847, "credit_id": "52fe44c8c3a36847f80a9d21", "cast_id": 18, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 6}, {"name": "Kieran Bew", "character": "Ike", "id": 176199, "credit_id": "52fe44c8c3a36847f80a9d25", "cast_id": 19, "profile_path": "/7M8zEhrRMEKwOij0rrUDV9t70FT.jpg", "order": 7}, {"name": "Geoff Bell", "character": "Tommy Hatcher", "id": 6969, "credit_id": "52fe44c8c3a36847f80a9d29", "cast_id": 20, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 8}, {"name": "Henry Goodman", "character": "Carl Buckner", "id": 7030, "credit_id": "52fe44c8c3a36847f80a9d2d", "cast_id": 21, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 9}, {"name": "Francis Pope", "character": "Ned", "id": 219596, "credit_id": "52fe44c8c3a36847f80a9d31", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Christopher Hehir", "character": "Keith", "id": 1035594, "credit_id": "52fe44c8c3a36847f80a9d35", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Terence Jay", "character": "Jeremy Van Holden", "id": 951624, "credit_id": "52fe44c8c3a36847f80a9d39", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "David Alexander", "character": "Nigel", "id": 202050, "credit_id": "52fe44c8c3a36847f80a9d3d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Oliver Allison", "character": "Ben Dunham", "id": 1223212, "credit_id": "52fe44c8c3a36847f80a9d41", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "James Allison", "character": "Ben Dunham", "id": 1223213, "credit_id": "52fe44c8c3a36847f80a9d45", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Joel Beckett", "character": "Terry", "id": 318970, "credit_id": "52fe44c8c3a36847f80a9d49", "cast_id": 28, "profile_path": "/As65oQPvQsxfkm0ij65j0nhFJQn.jpg", "order": 16}, {"name": "Scott Christie", "character": "Ricky", "id": 1223214, "credit_id": "52fe44c8c3a36847f80a9d4d", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "David Carr", "character": "Clives", "id": 549248, "credit_id": "52fe44c8c3a36847f80a9d51", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Jacob Gaffney", "character": "Todd", "id": 1223215, "credit_id": "52fe44c8c3a36847f80a9d55", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Jamie Kenna", "character": "Big Marc", "id": 1035069, "credit_id": "52fe44c8c3a36847f80a9d59", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Johnny Palmiero", "character": "Garry", "id": 1223216, "credit_id": "52fe44c8c3a36847f80a9d5d", "cast_id": 33, "profile_path": null, "order": 21}], "directors": [{"name": "Lexi Alexander", "department": "Directing", "job": "Director", "credit_id": "52fe44c8c3a36847f80a9cc9", "profile_path": "/38jezS5VqFM9gRQ75dj7rJe4Ucb.jpg", "id": 56359}], "vote_average": 6.8, "runtime": 109}, "204922": {"poster_path": "/3UG2Pb122c7Va8MBtr1OHRB1YPh.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A woman wakes up every day, remembering nothing as a result of a traumatic accident in her past. One day, new terrifying truths emerge that force her to question everyone around her.", "video": false, "id": 204922, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Before I Go to Sleep", "tagline": "Who do you trust?", "vote_count": 165, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1726592", "adult": false, "backdrop_path": "/8zvoGTCNmWQJDqkH86oitGmq2XP.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Millennium Films", "id": 10254}, {"name": "Clarius Entertainment", "id": 36991}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Filmgate Films", "id": 18230}], "release_date": "2014-10-31", "popularity": 2.97516797512062, "original_title": "Before I Go to Sleep", "budget": 0, "cast": [{"name": "Nicole Kidman", "character": "Christine Lucas", "id": 2227, "credit_id": "52fe4cfdc3a368484e1d105f", "cast_id": 1, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Colin Firth", "character": "Ben Lucas", "id": 5472, "credit_id": "52fe4cfdc3a368484e1d1063", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Mark Strong", "character": "Dr. Nash", "id": 2983, "credit_id": "52fe4cfdc3a368484e1d1067", "cast_id": 3, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Anne-Marie Duff", "character": "Claire", "id": 37058, "credit_id": "52fe4cfdc3a368484e1d106b", "cast_id": 4, "profile_path": "/oSHNwLcaVledYycyhmXX0mqqXQF.jpg", "order": 3}, {"name": "Jing Lusi", "character": "Nurse Kate", "id": 564035, "credit_id": "53ad963a0e0a265975002442", "cast_id": 6, "profile_path": "/o6Z2Ks2a8tObnhurCp93gAHHvrU.jpg", "order": 4}, {"name": "Dean-Charles Chapman", "character": "Adam", "id": 1332971, "credit_id": "53bc560c0e0a26157900002d", "cast_id": 8, "profile_path": "/yfuKsvh1yiOnRkbEHQWsOOSAl4W.jpg", "order": 5}, {"name": "Adam Levy", "character": "Husband", "id": 1376050, "credit_id": "54b8e45ac3a3681421000f60", "cast_id": 53, "profile_path": null, "order": 6}, {"name": "Ben Crompton", "character": "Warehouse Caretaker", "id": 72315, "credit_id": "54b8e478c3a3681445001035", "cast_id": 54, "profile_path": null, "order": 7}, {"name": "Flynn MacArthur", "character": "Boy in Dream", "id": 1414108, "credit_id": "54b8e491c3a3681421000f66", "cast_id": 55, "profile_path": null, "order": 8}, {"name": "Gabriel Strong", "character": "Boy on Bike", "id": 1414109, "credit_id": "54b8e4aa92514148b0001072", "cast_id": 56, "profile_path": null, "order": 9}], "directors": [{"name": "Rowan Joffe", "department": "Directing", "job": "Director", "credit_id": "52fe4cfdc3a368484e1d1071", "profile_path": null, "id": 17608}], "vote_average": 5.8, "runtime": 92}, "82654": {"poster_path": "/8mE2wRdp9FzCHFPnQmpWN59I6xv.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 116000000, "overview": "After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.", "video": false, "id": 82654, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Warm Bodies", "tagline": "Cold body. Warm heart.", "vote_count": 1362, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1588173", "adult": false, "backdrop_path": "/sKZdmmHRLweHnssV0VbkwE9oinc.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2013-02-01", "popularity": 1.49494564654559, "original_title": "Warm Bodies", "budget": 35000000, "cast": [{"name": "Nicholas Hoult", "character": "R", "id": 3292, "credit_id": "52fe48649251416c9108ad65", "cast_id": 13, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 0}, {"name": "Teresa Palmer", "character": "Julie", "id": 20374, "credit_id": "52fe48649251416c9108ad5d", "cast_id": 11, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 1}, {"name": "Analeigh Tipton", "character": "Nora", "id": 124644, "credit_id": "52fe48649251416c9108ad61", "cast_id": 12, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 2}, {"name": "Rob Corddry", "character": "M", "id": 52997, "credit_id": "52fe48649251416c9108ad71", "cast_id": 16, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 3}, {"name": "Dave Franco", "character": "Perry", "id": 54697, "credit_id": "52fe48649251416c9108ad6d", "cast_id": 15, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 4}, {"name": "John Malkovich", "character": "Grigio", "id": 6949, "credit_id": "52fe48649251416c9108ad69", "cast_id": 14, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 5}, {"name": "Cory Hardrict", "character": "Kevin", "id": 74302, "credit_id": "52fe48649251416c9108ad75", "cast_id": 17, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 6}, {"name": "Daniel Rindress-Kay", "character": "Soldier #1", "id": 1172760, "credit_id": "52fe48649251416c9108adab", "cast_id": 28, "profile_path": "/yxbPLpJMeOUfkQis9MiTzSiwNOo.jpg", "order": 7}, {"name": "Vincent Leclerc", "character": "Perry's Dad", "id": 982065, "credit_id": "52fe48649251416c9108adaf", "cast_id": 29, "profile_path": "/dRi3BljTme2NbAsYvtvhhxX1jPK.jpg", "order": 8}, {"name": "Robert Reynolds", "character": "Janitor", "id": 101221, "credit_id": "5310f5249251410fe600145e", "cast_id": 30, "profile_path": "/3qdwA5hiyHDK6pQLwKjrx4x0A4a.jpg", "order": 9}, {"name": "John Topor", "character": "TSA Zombie", "id": 1195616, "credit_id": "5310f5d8925141104d0014d9", "cast_id": 31, "profile_path": "/tcg139Qavp4eCc5YhtpuAJQ3HQh.jpg", "order": 10}, {"name": "Ayisha Issa", "character": "Athletic Woman", "id": 231517, "credit_id": "52fe48649251416c9108ad79", "cast_id": 19, "profile_path": "/lCrVPwyBgXDBvuwY7NTwZpG8FYu.jpg", "order": 11}, {"name": "Debbie Wong", "character": "Laughing Girl", "id": 164860, "credit_id": "5310f6809251411013001446", "cast_id": 32, "profile_path": "/jw0VljYmIB5Km1ZfMix3F7WC7kL.jpg", "order": 12}, {"name": "Christian Paul", "character": "Stadium Soldier", "id": 1141258, "credit_id": "5310f7a8925141102a0013da", "cast_id": 33, "profile_path": "/7jkudDEHvuVxnewyzFqFp7z5QqD.jpg", "order": 13}, {"name": "Patrick Sabongui", "character": "Hunting Zombie", "id": 102742, "credit_id": "52fe48649251416c9108ad7d", "cast_id": 20, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 14}], "directors": [{"name": "Jonathan Levine", "department": "Directing", "job": "Director", "credit_id": "52fe48649251416c9108ad23", "profile_path": "/gfJOKZPSbpzls7FV0Ogv4IpEeXh.jpg", "id": 56661}], "vote_average": 6.3, "runtime": 97}, "74465": {"poster_path": "/2gYXRzCsQz7qpZKgoE28a9zX1eu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120081841, "overview": "Benjamin has lost his wife. In a bid to start his life over, he purchases a large house that has a zoo. This is welcome news for his daughter, but his son is not happy about it. The zoo is need of renovation and Benjamin sets about the work with the head keeper, Kelly, and the rest of the zoo staff. But, the zoo soon runs into financial trouble. The staff must get the zoo back to its former glory, pass a zoo inspection, and get it back open to the public.", "video": false, "id": 74465, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "We Bought a Zoo", "tagline": "A True Zoo Story", "vote_count": 278, "homepage": "http://www.weboughtazoo.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1389137", "adult": false, "backdrop_path": "/3shXpoLYyfKucz3vJXrP0FCuqJM.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "LBI Entertainment", "id": 8518}, {"name": "Vinyl Films", "id": 485}], "release_date": "2011-12-23", "popularity": 1.02696133217317, "original_title": "We Bought a Zoo", "budget": 9450000, "cast": [{"name": "Matt Damon", "character": "Benjamin Mee", "id": 1892, "credit_id": "52fe48ccc3a368484e10b87f", "cast_id": 4, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Kelly Foster", "id": 1245, "credit_id": "52fe48ccc3a368484e10b883", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Thomas Haden Church", "character": "Duncan Mee", "id": 19159, "credit_id": "52fe48ccc3a368484e10b893", "cast_id": 9, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 2}, {"name": "Colin Ford", "character": "Dylan Mee", "id": 74539, "credit_id": "52fe48ccc3a368484e10b8a3", "cast_id": 13, "profile_path": "/6S1dOJnIuaKAXoVxTePNOQJbsFU.jpg", "order": 3}, {"name": "Maggie Elizabeth Jones", "character": "Rosie Mee", "id": 1046348, "credit_id": "52fe48ccc3a368484e10b8a7", "cast_id": 14, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 4}, {"name": "Angus Macfadyen", "character": "Peter MacCready", "id": 2464, "credit_id": "52fe48ccc3a368484e10b8ab", "cast_id": 15, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 5}, {"name": "Elle Fanning", "character": "Lily Miska", "id": 18050, "credit_id": "52fe48ccc3a368484e10b887", "cast_id": 6, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 6}, {"name": "Patrick Fugit", "character": "Robin Jones", "id": 11663, "credit_id": "52fe48ccc3a368484e10b88b", "cast_id": 7, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 7}, {"name": "John Michael Higgins", "character": "Walter Ferris", "id": 8265, "credit_id": "52fe48ccc3a368484e10b89f", "cast_id": 12, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 8}, {"name": "Stephanie Szostak", "character": "Katherine Mee", "id": 121953, "credit_id": "52fe48ccc3a368484e10b88f", "cast_id": 8, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 9}, {"name": "Carla Gallo", "character": "Rhonda", "id": 54708, "credit_id": "52fe48ccc3a368484e10b897", "cast_id": 10, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 10}, {"name": "Desi Lydic", "character": "Shea Seger", "id": 90719, "credit_id": "52fe48ccc3a368484e10b89b", "cast_id": 11, "profile_path": "/hefkrpjs4TtM7ogAFJnRiHkZiLw.jpg", "order": 11}, {"name": "Crystal the Monkey", "character": "Crystal the Capuchin", "id": 1428580, "credit_id": "550a88e9925141468900112f", "cast_id": 16, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 12}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe48ccc3a368484e10b86f", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.2, "runtime": 124}, "744": {"poster_path": "/orGXnBKfT41LxZhitLkXhqUfJJW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 356830601, "overview": "For Lieutenant Pete Mitchell and his friend and Co-Pilot Nick Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. A tragedy, as well as personal demons, threaten Pete's dreams of becoming an Ace pilot.", "video": false, "id": 744, "genres": [{"id": 28, "name": "Action"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Top Gun", "tagline": "Up there with the best of the best.", "vote_count": 605, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092099", "adult": false, "backdrop_path": "/9GyBSsMiGkPSk4OESIYZuedijBI.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-05-16", "popularity": 1.3223234309363, "original_title": "Top Gun", "budget": 15000000, "cast": [{"name": "Tom Cruise", "character": "Pete 'Maverick' Mitchell", "id": 500, "credit_id": "52fe426fc3a36847f801e6b9", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Kelly McGillis", "character": "Charlotte 'Charlie' Blackwood", "id": 11084, "credit_id": "52fe426fc3a36847f801e6bd", "cast_id": 14, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Tom 'Iceman' Kazanski", "id": 5576, "credit_id": "52fe426fc3a36847f801e6c1", "cast_id": 15, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Anthony Edwards", "character": "Nick 'Goose' Bradshaw", "id": 11085, "credit_id": "52fe426fc3a36847f801e6c5", "cast_id": 16, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 3}, {"name": "Tom Skerritt", "character": "Viper", "id": 4139, "credit_id": "52fe426fc3a36847f801e6c9", "cast_id": 17, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 4}, {"name": "Michael Ironside", "character": "Jester", "id": 11086, "credit_id": "52fe426fc3a36847f801e6cd", "cast_id": 18, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 5}, {"name": "John Stockwell", "character": "Cougar", "id": 57082, "credit_id": "52fe426fc3a36847f801e6d1", "cast_id": 19, "profile_path": "/9AQo5W5T6vP6WTcDvHx1CbbiOzU.jpg", "order": 6}, {"name": "Barry Tubb", "character": "Wolfman", "id": 11088, "credit_id": "52fe426fc3a36847f801e6d5", "cast_id": 20, "profile_path": "/157Hggb9NMeQei5TTgBntPRuwFe.jpg", "order": 7}, {"name": "Rick Rossovich", "character": "Slider", "id": 2717, "credit_id": "52fe426fc3a36847f801e6d9", "cast_id": 21, "profile_path": "/f2bFBUT1WRImsKVkSq7A3yACFAa.jpg", "order": 8}, {"name": "Tim Robbins", "character": "Merlin", "id": 504, "credit_id": "52fe426fc3a36847f801e6dd", "cast_id": 22, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 9}, {"name": "Meg Ryan", "character": "Carole", "id": 5344, "credit_id": "52fe426fc3a36847f801e6e1", "cast_id": 23, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 10}, {"name": "Whip Hubley", "character": "Hollywood", "id": 11089, "credit_id": "52fe426fc3a36847f801e6e5", "cast_id": 24, "profile_path": "/bk8Z3dtqRB0N4hGodG5zY0yiu3a.jpg", "order": 11}, {"name": "Adrian Pasdar", "character": "Chipper", "id": 17304, "credit_id": "52fe426fc3a36847f801e6e9", "cast_id": 25, "profile_path": "/yNqnfWmzlDC5qB5Ll6PgK2JfGIi.jpg", "order": 12}, {"name": "James Tolkan", "character": "Stinger", "id": 1072, "credit_id": "52fe426fc3a36847f801e6ed", "cast_id": 27, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 14}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e673", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.5, "runtime": 110}, "745": {"poster_path": "/wW1y9pvMejWjdfz0mpbB3Ag3SJf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 672806292, "overview": "A psychological thriller about an eight year old boy named Cole Sear who believes he can see into the world of the dead. A child psychologist named Malcolm Crowe comes to Cole to help him deal with his problem, learning that he really can see ghosts of dead people.", "video": false, "id": 745, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Sixth Sense", "tagline": "Not every gift is a blessing.", "vote_count": 953, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167404", "adult": false, "backdrop_path": "/y67X8DSDEAVcfo9aqX6yipsTsrX.jpg", "production_companies": [{"name": "Hollywood Pictures", "id": 915}, {"name": "Barry Mendel Productions", "id": 17032}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "1999-08-02", "popularity": 0.971076255371449, "original_title": "The Sixth Sense", "budget": 40000000, "cast": [{"name": "Bruce Willis", "character": "Malcolm Crowe", "id": 62, "credit_id": "52fe426fc3a36847f801e74b", "cast_id": 9, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Haley Joel Osment", "character": "Cole Sear", "id": 9640, "credit_id": "52fe426fc3a36847f801e74f", "cast_id": 10, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 1}, {"name": "Toni Collette", "character": "Lynn Sear", "id": 3051, "credit_id": "52fe426fc3a36847f801e753", "cast_id": 11, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Olivia Williams", "character": "Anna Crowe", "id": 11616, "credit_id": "52fe426fc3a36847f801e757", "cast_id": 12, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 3}, {"name": "Mischa Barton", "character": "Kyra Collins", "id": 11617, "credit_id": "52fe426fc3a36847f801e75b", "cast_id": 13, "profile_path": "/pAfKhudBM6x6XjxziTJ5FftNgSR.jpg", "order": 4}, {"name": "Donnie Wahlberg", "character": "Vincent Grey", "id": 2680, "credit_id": "52fe426fc3a36847f801e75f", "cast_id": 14, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 5}, {"name": "Trevor Morgan", "character": "Tommy Tammisimo", "id": 4940, "credit_id": "52fe426fc3a36847f801e763", "cast_id": 15, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 6}, {"name": "Greg Wood", "character": "Mr. Collins", "id": 11618, "credit_id": "52fe426fc3a36847f801e767", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Jeffrey Zubernis", "character": "Bobby", "id": 11619, "credit_id": "52fe426fc3a36847f801e76b", "cast_id": 17, "profile_path": "/z8Iyi5n1c3PUXyRMhRLMw6sq62m.jpg", "order": 8}, {"name": "Glenn Fitzgerald", "character": "Sean", "id": 10694, "credit_id": "52fe426fc3a36847f801e76f", "cast_id": 18, "profile_path": "/mZtEWlHspjit1UGs9cmzzuWeubV.jpg", "order": 9}, {"name": "Bruce Norris", "character": "Stanley Cunningham", "id": 11621, "credit_id": "52fe426fc3a36847f801e785", "cast_id": 22, "profile_path": "/sBoDi1ZPhvSJH17eFM4GbgSpbSl.jpg", "order": 10}, {"name": "Peter Anthony Tambakis", "character": "Darren", "id": 52861, "credit_id": "5497f2ebc3a368054b0011ba", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e723", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 7.2, "runtime": 107}, "746": {"poster_path": "/KTirnfG6FZLKWbm8Am3EEKmZDx.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 0, "overview": "A dramatic history of Pu Yi, the last of the Emperors of China, from his lofty birth and brief reign in the Forbidden City, the object of worship by half a billion people; through his abdication, his decline and dissolute lifestyle; his exploitation by the invading Japanese, and finally to his obscure existence as just another peasant worker in the People's Republic.", "video": false, "id": 746, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Last Emperor", "tagline": "He was the Lord of Ten Thousand Years, the absolute monarch of China. He was born to rule a world of ancient tradition. Nothing prepared him for our world of change.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093389", "adult": false, "backdrop_path": "/4FfjHGlzloUqJe9h3mZK1T2olty.jpg", "production_companies": [{"name": "Hemdale Film Corporation", "id": 469}, {"name": "Recorded Pictures Company", "id": 470}, {"name": "Soprofilms", "id": 472}, {"name": "TAO Film", "id": 473}, {"name": "Yanco", "id": 474}], "release_date": "1987-10-29", "popularity": 1.03875876965791, "original_title": "The Last Emperor", "budget": 25000000, "cast": [{"name": "John Lone", "character": "Pu Yi", "id": 11389, "credit_id": "52fe426fc3a36847f801e82f", "cast_id": 17, "profile_path": "/qlzum4vK8Snzp65jiUVpZGYPzFE.jpg", "order": 0}, {"name": "Peter O'Toole", "character": "Reginal Flemming Johnson", "id": 11390, "credit_id": "52fe426fc3a36847f801e833", "cast_id": 18, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 1}, {"name": "Joan Chen", "character": "Wang Jung", "id": 6720, "credit_id": "52fe426fc3a36847f801e837", "cast_id": 19, "profile_path": "/ekWS5bAB0kv4RColHqYaUAoXz0I.jpg", "order": 2}, {"name": "Dennis Dun", "character": "Big Li", "id": 11392, "credit_id": "52fe426fc3a36847f801e83b", "cast_id": 20, "profile_path": "/t8jiYbpljN07h2lgDle16dVDkT3.jpg", "order": 3}, {"name": "Ryuichi Sakamoto", "character": "Amakasu", "id": 11382, "credit_id": "52fe426fc3a36847f801e83f", "cast_id": 21, "profile_path": "/cW50iJkJSZXlQrbLTPnZTmnk7jY.jpg", "order": 4}, {"name": "Ruocheng Ying", "character": "Governor", "id": 11394, "credit_id": "52fe426fc3a36847f801e843", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Victor Wong", "character": "Chen Pao Shen", "id": 11395, "credit_id": "52fe426fc3a36847f801e847", "cast_id": 23, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 6}, {"name": "Maggie Han", "character": "Eastern Jewel", "id": 11396, "credit_id": "52fe426fc3a36847f801e84b", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Ric Young", "character": "Interrogator", "id": 11397, "credit_id": "52fe426fc3a36847f801e84f", "cast_id": 25, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 8}, {"name": "Cary-Hiroyuki Tagawa", "character": "Chang", "id": 11398, "credit_id": "52fe426fc3a36847f801e853", "cast_id": 26, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 9}, {"name": "Fumihiko Ikeda", "character": "Yoshioka", "id": 11399, "credit_id": "52fe426fc3a36847f801e857", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Richard Vuu", "character": "Pu Yi - 3 Years", "id": 1448561, "credit_id": "551cb8bf9251416a330015eb", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Tsou Tijger", "character": "Pu Yi - 8 Years", "id": 1448562, "credit_id": "551cb907c3a3684a28001724", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Tao Wu", "character": "Pu Yi - 15 Years", "id": 1448563, "credit_id": "551cb92ac3a3680a1d0008fb", "cast_id": 32, "profile_path": null, "order": 14}], "directors": [{"name": "Bernardo Bertolucci", "department": "Directing", "job": "Director", "credit_id": "52fe426fc3a36847f801e7d1", "profile_path": "/syIk3h60I9ngaUZV9VRVeV4dKdx.jpg", "id": 4956}], "vote_average": 6.9, "runtime": 163}, "747": {"poster_path": "/ssY4EvRvufUZooNq1buRUrW7lCX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 30039392, "overview": "Shaun of the Dead is a humorous homage to Zombie movies from director Edgar Wright; an outrageous romantic comedy with zombies.", "video": false, "id": 747, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Shaun of the Dead", "tagline": "A romantic comedy. With zombies.", "vote_count": 531, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365748", "adult": false, "backdrop_path": "/50mMiR0R1QclaAODTutwXBrReLJ.jpg", "production_companies": [{"name": "WT2 Productions", "id": 10462}, {"name": "Universal Pictures", "id": 33}], "release_date": "2004-04-09", "popularity": 1.28741395916747, "original_title": "Shaun of the Dead", "budget": 4000000, "cast": [{"name": "Simon Pegg", "character": "Shaun", "id": 11108, "credit_id": "52fe4270c3a36847f801e891", "cast_id": 2, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Nick Frost", "character": "Ed", "id": 11109, "credit_id": "52fe4270c3a36847f801e895", "cast_id": 3, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 1}, {"name": "Kate Ashfield", "character": "Liz", "id": 11110, "credit_id": "52fe4270c3a36847f801e899", "cast_id": 4, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 2}, {"name": "Lucy Davis", "character": "Dianne", "id": 11111, "credit_id": "52fe4270c3a36847f801e89d", "cast_id": 5, "profile_path": "/60IfOPYBMaJwUt0M9UJ2QJCxH4S.jpg", "order": 3}, {"name": "Dylan Moran", "character": "David", "id": 7028, "credit_id": "52fe4270c3a36847f801e8a1", "cast_id": 6, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 4}, {"name": "Peter Serafinowicz", "character": "Pete", "id": 11115, "credit_id": "52fe4270c3a36847f801e8c3", "cast_id": 12, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 5}, {"name": "Penelope Wilton", "character": "Barbara", "id": 1249, "credit_id": "52fe4270c3a36847f801e8cb", "cast_id": 14, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 6}, {"name": "Steve Emerson", "character": "John", "id": 11117, "credit_id": "52fe4270c3a36847f801e8cf", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Nicola Cunningham", "character": "Mary", "id": 11116, "credit_id": "52fe4270c3a36847f801e8c7", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Reece Shearsmith", "character": "Mark", "id": 34551, "credit_id": "52fe4270c3a36847f801e8df", "cast_id": 18, "profile_path": "/d6oib5uLUMLvw3ebTkQ5Ngc73FO.jpg", "order": 9}, {"name": "Bill Nighy", "character": "Phillip", "id": 2440, "credit_id": "52fe4270c3a36847f801e8e3", "cast_id": 19, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 10}, {"name": "Jessica Hynes", "character": "Yvonne", "id": 47730, "credit_id": "52fe4270c3a36847f801e8e7", "cast_id": 20, "profile_path": "/rHnSgkW6oTajbz6L3BETYbqdJZe.jpg", "order": 11}, {"name": "Arvind Doshi", "character": "Nelson", "id": 1445662, "credit_id": "55130162c3a368619500194c", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Stuart Powell", "character": "Snakehips", "id": 1445663, "credit_id": "5513018e925141045c0019d6", "cast_id": 24, "profile_path": null, "order": 13}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe4270c3a36847f801e88d", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 7.2, "runtime": 99}, "17134": {"poster_path": "/i36NEi5TSYSxmu6dO0K1cAWxjGx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17280326, "overview": "When New Orleans cop Danny Fisher prevents a brilliant thief from successfully carrying out his latest heist, the thief's girlfriend is accidentally killed. Hungry for revenge, the criminal mastermind breaks out of prison and kidnaps Danny's fiancee. To save her, Danny must successfully navigate his way through an elaborate series of tasks and puzzles, or else watch the love of his life die.", "video": false, "id": 17134, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "12 Rounds", "tagline": "Survive all 12", "vote_count": 68, "homepage": "http://www.12rounds-movie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/whtxa0L7XIw7xomlwTaDM0sKFw8.jpg", "id": 221622, "name": "12 Rounds Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1160368", "adult": false, "backdrop_path": "/jtC2aBgz5pzjP0WQPUn7VJOWKFN.jpg", "production_companies": [{"name": "20th Century Fox Home Entertainment", "id": 3635}, {"name": "The Mark Gordon Company", "id": 1557}, {"name": "Fox Atomic", "id": 2890}, {"name": "WWE Studios", "id": 10339}, {"name": "Midnight Sun Pictures", "id": 17887}], "release_date": "2009-03-19", "popularity": 0.635525772584465, "original_title": "12 Rounds", "budget": 20000000, "cast": [{"name": "John Cena", "character": "Det. Danny Fisher", "id": 56446, "credit_id": "52fe47089251416c7508bac7", "cast_id": 1, "profile_path": "/WbnZd6SK3DRlQBBW1yP1xHwlbs.jpg", "order": 0}, {"name": "Ashley Scott", "character": "Molly Porter", "id": 71128, "credit_id": "52fe47089251416c7508bacf", "cast_id": 3, "profile_path": "/pHQXzpZbb1T5HobppWZtIMbjyIC.jpg", "order": 1}, {"name": "Brian J. White", "character": "Det. Hank Carver", "id": 31137, "credit_id": "52fe47089251416c7508bae9", "cast_id": 8, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 2}, {"name": "Aidan Gillen", "character": "Miles Jackson", "id": 49735, "credit_id": "52fe47089251416c7508bacb", "cast_id": 2, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 3}, {"name": "Steve Harris", "character": "Special Agent George Aiken", "id": 2202, "credit_id": "52fe47089251416c7508bae5", "cast_id": 7, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 4}, {"name": "Gonzalo Menendez", "character": "Special Agent Ray Santiago", "id": 84754, "credit_id": "52fe47089251416c7508baf3", "cast_id": 10, "profile_path": "/qubqkIJkHSMwG1bAkiHjqY3xfxu.jpg", "order": 5}, {"name": "Taylor Cole", "character": "Erica Kessen", "id": 54182, "credit_id": "52fe47089251416c7508baf7", "cast_id": 11, "profile_path": "/ogV3A4WUcYmN1EJ2AIOHeORKIMB.jpg", "order": 6}, {"name": "Kyle Russell Clements", "character": "Dave Fisher", "id": 84756, "credit_id": "52fe47089251416c7508bb01", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Peter \"Navy\" Tuiasosopo", "character": "Willie Dumaine", "id": 84757, "credit_id": "52fe47089251416c7508bb05", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Travis Davis", "character": "Anthony Deluso", "id": 84759, "credit_id": "52fe47089251416c7508bb0f", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Nick Gomez", "character": "Samuel", "id": 84760, "credit_id": "52fe47089251416c7508bb13", "cast_id": 17, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 10}, {"name": "Rosalind Rubin", "character": "FBI Agent Sheila", "id": 999276, "credit_id": "52fe47089251416c7508bb23", "cast_id": 20, "profile_path": "/1XhiJW95jagcp5xOtYenhqaMMzn.jpg", "order": 11}, {"name": "Billy Slaughter", "character": "Technician", "id": 62784, "credit_id": "547eeee392514124b60010c6", "cast_id": 60, "profile_path": "/5YykEE15cNzgexL7d5ewAu5M8XN.jpg", "order": 12}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe47089251416c7508bad5", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.1, "runtime": 108}, "752": {"poster_path": "/cALaAXkC8hkv1fjp1T7EKH2WSue.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132511035, "overview": "In a world in which Great Britain has become a fascist state, a masked vigilante known only as \"V\" conducts guerrilla warfare against the oppressive British government. When \"V\" rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.", "video": false, "id": 752, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "V for Vendetta", "tagline": "People should not be afraid of their governments. Governments should be afraid of their people.", "vote_count": 1533, "homepage": "http://vforvendetta.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0434409", "adult": false, "backdrop_path": "/lxwPthqCYWIr9C57W26lcbjctJZ.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Virtual Studios", "id": 449}, {"name": "Silver Pictures", "id": 1885}, {"name": "Anarchos Productions", "id": 450}, {"name": "F\u00fcnfte Babelsberg Film", "id": 23889}, {"name": "Medienboard Berlin-Brandenburg", "id": 7307}, {"name": "DC Comics", "id": 429}], "release_date": "2005-12-11", "popularity": 1.02498861033115, "original_title": "V for Vendetta", "budget": 54000000, "cast": [{"name": "Natalie Portman", "character": "Evey Hammond", "id": 524, "credit_id": "52fe4270c3a36847f801ec1d", "cast_id": 23, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Hugo Weaving", "character": "V / William Rookwood", "id": 1331, "credit_id": "52fe4270c3a36847f801ec21", "cast_id": 24, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 1}, {"name": "Stephen Rea", "character": "Chief Inspector Eric Finch", "id": 9029, "credit_id": "52fe4270c3a36847f801ec25", "cast_id": 25, "profile_path": "/taD1NngDbW8cyCuacAT3YaecSEG.jpg", "order": 2}, {"name": "Stephen Fry", "character": "Gordon Deitrich", "id": 11275, "credit_id": "52fe4270c3a36847f801ec29", "cast_id": 26, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 3}, {"name": "John Hurt", "character": "Chancellor Adam Sutler", "id": 5049, "credit_id": "52fe4270c3a36847f801ec2d", "cast_id": 27, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Tim Pigott-Smith", "character": "Creedy", "id": 11276, "credit_id": "52fe4270c3a36847f801ec31", "cast_id": 28, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 5}, {"name": "Natasha Wightman", "character": "Valerie", "id": 11277, "credit_id": "52fe4270c3a36847f801ec35", "cast_id": 29, "profile_path": "/v2VZP1K0SY9z3XSUfufaNSRk6Lz.jpg", "order": 6}, {"name": "Rupert Graves", "character": "Dominic", "id": 11278, "credit_id": "52fe4270c3a36847f801ec39", "cast_id": 30, "profile_path": "/wWMJKCYIaD9TKLKTKQL34jVrHjk.jpg", "order": 7}, {"name": "Roger Allam", "character": "Lewis Prothero", "id": 11279, "credit_id": "52fe4270c3a36847f801ec3d", "cast_id": 31, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 8}, {"name": "Ben Miles", "character": "Dascomb", "id": 11280, "credit_id": "52fe4270c3a36847f801ec41", "cast_id": 32, "profile_path": "/erYrlzzg8F85SqEqG1cRZ9Ftjkh.jpg", "order": 9}, {"name": "Sin\u00e9ad Cusack", "character": "Delia Surridge", "id": 11281, "credit_id": "52fe4270c3a36847f801ec45", "cast_id": 33, "profile_path": "/r9eWOKN1WtE7RMDAwIhOpMRh3wL.jpg", "order": 10}, {"name": "Eddie Marsan", "character": "Etheridge", "id": 1665, "credit_id": "52fe4270c3a36847f801ec4d", "cast_id": 35, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 11}, {"name": "John Standing", "character": "Bishop Lilliman", "id": 11282, "credit_id": "52fe4270c3a36847f801ec49", "cast_id": 34, "profile_path": "/npS8a4mKgqpJJiNeRPn0Ftl7pxj.jpg", "order": 12}, {"name": "Imogen Poots", "character": "Young Valerie", "id": 17606, "credit_id": "5488cfea92514161d00001d5", "cast_id": 273, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 13}], "directors": [{"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe4270c3a36847f801ebb3", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 7.4, "runtime": 132}, "146216": {"poster_path": "/dvWITvEzlq8IaUbxUuBVKvXqfo6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.", "video": false, "id": 146216, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "RED 2", "tagline": "The best never rest.", "vote_count": 694, "homepage": "http://red-themovie.com/", "belongs_to_collection": {"backdrop_path": "/fLQjbO5Y2a4hXTPYsZCcWAdjcdS.jpg", "poster_path": "/d9T3DkXxDahif4eXPzrH28yayaL.jpg", "id": 163902, "name": "RED Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1821694", "adult": false, "backdrop_path": "/9DURhsE2UwGlufkShlw9rXC2Yug.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Summit Entertainment", "id": 491}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2013-07-19", "popularity": 1.70821444379649, "original_title": "RED 2", "budget": 84000000, "cast": [{"name": "Bruce Willis", "character": "Frank Moses", "id": 62, "credit_id": "52fe4b779251416c75103c5f", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Katja", "id": 1922, "credit_id": "52fe4b779251416c75103c67", "cast_id": 3, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Anthony Hopkins", "character": "Bailey", "id": 4173, "credit_id": "52fe4b779251416c75103c63", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 2}, {"name": "Helen Mirren", "character": "Victoria", "id": 15735, "credit_id": "52fe4b779251416c75103c6b", "cast_id": 4, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 3}, {"name": "John Malkovich", "character": "Marvin Boggs", "id": 6949, "credit_id": "52fe4b779251416c75103c6f", "cast_id": 5, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Mary-Louise Parker", "character": "Sarah Ross", "id": 18248, "credit_id": "52fe4b779251416c75103c73", "cast_id": 6, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 5}, {"name": "David Thewlis", "character": "The Frog", "id": 11207, "credit_id": "52fe4b779251416c75103c77", "cast_id": 7, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 6}, {"name": "Neal McDonough", "character": "Jack Horton", "id": 2203, "credit_id": "52fe4b779251416c75103c7b", "cast_id": 8, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 7}, {"name": "Lee Byung-hun", "character": "Han Cho Bai", "id": 25002, "credit_id": "52fe4b779251416c75103c97", "cast_id": 14, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 8}, {"name": "Neve Gachev", "character": "Londoner", "id": 1186597, "credit_id": "52fe4b779251416c75103c9f", "cast_id": 16, "profile_path": "/rMkCANQP59CaTG8t1FlehuhIepw.jpg", "order": 10}, {"name": "Lee Asquith-Coe", "character": "Security Detail Soldier", "id": 531772, "credit_id": "52fe4b779251416c75103ca3", "cast_id": 17, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 11}, {"name": "George Georgiou", "character": "Revolutionary Guard", "id": 570010, "credit_id": "52fe4b779251416c75103ca7", "cast_id": 18, "profile_path": "/i4PzEbzS3b4dvcUUtdGFOvFpcG0.jpg", "order": 12}, {"name": "Paul Hopkins", "character": "Funeral Director", "id": 102853, "credit_id": "52fe4b789251416c75103cab", "cast_id": 19, "profile_path": "/bETrIuwlbd37J2Ljye4n5yjPjTj.jpg", "order": 13}, {"name": "Garrick Hagon", "character": "Davis", "id": 17356, "credit_id": "52fe4b789251416c75103caf", "cast_id": 20, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 14}, {"name": "Brian Cox", "character": "Ivan", "id": 1248, "credit_id": "53134cd6925141100800633e", "cast_id": 22, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 15}, {"name": "Tim Pigott-Smith", "character": "Director Philips", "id": 11276, "credit_id": "53134d569251411013006045", "cast_id": 23, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 16}, {"name": "Philip Arditti", "character": "Arman", "id": 1235294, "credit_id": "53134d8a925141101f005fff", "cast_id": 24, "profile_path": "/j7kpt6uVToEDRF8Cz7CXSBq7u0o.jpg", "order": 17}, {"name": "Michael Vardian", "character": "Tourist (action scenes)", "id": 1426167, "credit_id": "54dbcf5a92514155bb00004d", "cast_id": 32, "profile_path": "/zY4xOBvFDu9GZemU5FGSNg1MD6v.jpg", "order": 18}], "directors": [{"name": "Dean Parisot", "department": "Directing", "job": "Director", "credit_id": "52fe4b779251416c75103c81", "profile_path": "/3h20QFQ6duhpJ1FMSeJiFju0WGp.jpg", "id": 15002}], "vote_average": 6.3, "runtime": 116}, "754": {"poster_path": "/q1i8QHiHZ1cukG5iOxai8pydmoa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245676146, "overview": "An antiterrorism agent goes under the knife to acquire the likeness of a terrorist and gather details about a bombing plot. When the terrorist escapes custody, he undergoes surgery to look like the agent so he can get close to the agent's family.", "video": false, "id": 754, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Face/Off", "tagline": "Only one will survive.", "vote_count": 535, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0119094", "adult": false, "backdrop_path": "/kwsnFHKEkqlREvEl2RNvxGmEbFt.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Paramount Pictures", "id": 4}, {"name": "Permut Presentations", "id": 455}, {"name": "WCG Entertainment Productions", "id": 456}], "release_date": "1997-06-26", "popularity": 1.34971114552058, "original_title": "Face/Off", "budget": 80000000, "cast": [{"name": "John Travolta", "character": "Sean Archer", "id": 8891, "credit_id": "52fe4271c3a36847f801f0e3", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Nicolas Cage", "character": "Castor Troy", "id": 2963, "credit_id": "52fe4271c3a36847f801f0e7", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 1}, {"name": "Joan Allen", "character": "Eve Archer", "id": 11148, "credit_id": "52fe4271c3a36847f801f0eb", "cast_id": 3, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 2}, {"name": "Dominique Swain", "character": "Jamie Archer", "id": 11149, "credit_id": "52fe4271c3a36847f801f0ef", "cast_id": 4, "profile_path": "/ytJJHXh5PlBRLh7UAyiDn03XkGL.jpg", "order": 3}, {"name": "Alessandro Nivola", "character": "Pollux Troy", "id": 4941, "credit_id": "52fe4271c3a36847f801f0f3", "cast_id": 5, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 4}, {"name": "Gina Gershon", "character": "Sasha Hassler", "id": 11150, "credit_id": "52fe4271c3a36847f801f0f7", "cast_id": 6, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 5}, {"name": "Nick Cassavetes", "character": "Dietrich Hassler", "id": 11151, "credit_id": "52fe4271c3a36847f801f0fb", "cast_id": 7, "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "order": 6}, {"name": "Harve Presnell", "character": "Victor Lazarro", "id": 3907, "credit_id": "52fe4271c3a36847f801f0ff", "cast_id": 8, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 7}, {"name": "Colm Feore", "character": "Dr. Malcolm Walsh", "id": 10132, "credit_id": "52fe4271c3a36847f801f103", "cast_id": 9, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 8}, {"name": "John Carroll Lynch", "character": "Walt", "id": 3911, "credit_id": "52fe4271c3a36847f801f107", "cast_id": 10, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 9}, {"name": "Margaret Cho", "character": "Wanda", "id": 11152, "credit_id": "52fe4271c3a36847f801f10b", "cast_id": 11, "profile_path": "/3DUdtidVGm8FFfknl6HfBMBf366.jpg", "order": 10}, {"name": "James Denton", "character": "Buzz", "id": 11153, "credit_id": "52fe4271c3a36847f801f10f", "cast_id": 12, "profile_path": "/ApoCBEO4bhDizjqLOnF0BUW1HLX.jpg", "order": 11}, {"name": "Matt Ross", "character": "Loomis", "id": 11154, "credit_id": "52fe4271c3a36847f801f113", "cast_id": 13, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 12}, {"name": "Thomas Jane", "character": "Burke Hicks", "id": 11155, "credit_id": "52fe4271c3a36847f801f117", "cast_id": 14, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 13}, {"name": "David McCurley", "character": "Adam Hassler", "id": 11156, "credit_id": "52fe4271c3a36847f801f11b", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Myles Jeffrey", "character": "Michael Archer", "id": 11157, "credit_id": "52fe4271c3a36847f801f11f", "cast_id": 16, "profile_path": "/snKwcKNBaIWKNv0dHzlB8h9q935.jpg", "order": 15}, {"name": "Chris Bauer", "character": "Ivan Dubov", "id": 4445, "credit_id": "52fe4271c3a36847f801f123", "cast_id": 17, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 16}, {"name": "C. C. H. Pounder", "character": "Hollis Miller", "id": 30485, "credit_id": "53d6d8d70e0a26033d000294", "cast_id": 38, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 17}, {"name": "Danny Masterson", "character": "Karl", "id": 18972, "credit_id": "53d6e83c0e0a260337000450", "cast_id": 39, "profile_path": "/qml2xCFDj1cqCvcp9H0dIlrAMT6.jpg", "order": 18}, {"name": "Linda Hoffman", "character": "Livia", "id": 58042, "credit_id": "5485e05ec3a3686767001963", "cast_id": 40, "profile_path": "/h9silu0xpZpjEcPXjJAyQTWXSb5.jpg", "order": 19}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe4271c3a36847f801f129", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 6.5, "runtime": 138}, "755": {"poster_path": "/ce0d4kM5KxT4x1Oq8JkSuNYevri.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25836616, "overview": "Seth Gecko and his younger brother Richard are on the run after a bloody bank robbery in Texas. They escape across the border into Mexico and will be home-free the next morning, when they pay off the local kingpin. They just have to survive 'from dusk till dawn' at the rendezvous point, which turns out to be a Hell of a strip joint.", "video": false, "id": 755, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "From Dusk Till Dawn", "tagline": "One night is all that stands between them and freedom. But it's going to be a hell of a night.", "vote_count": 378, "homepage": "http://archives.obs-us.com/obs/english/films/mx/dusk/top.htm", "belongs_to_collection": {"backdrop_path": "/1x2Y7wq7pMWVUJnlIfPjmFS2CWg.jpg", "poster_path": "/a156nAy5ZTGXlO5wgfvnF26aaDB.jpg", "id": 10924, "name": "From Dusk Till Dawn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0116367", "adult": false, "backdrop_path": "/anr9X6KpybcZrj6vgqYP0epSTue.jpg", "production_companies": [{"name": "A Band Apart", "id": 59}, {"name": "Dimension Films", "id": 7405}], "release_date": "1996-01-18", "popularity": 1.26905678833901, "original_title": "From Dusk Till Dawn", "budget": 19000000, "cast": [{"name": "George Clooney", "character": "Seth Gecko", "id": 1461, "credit_id": "52fe4271c3a36847f801f1ef", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Quentin Tarantino", "character": "Richard Gecko", "id": 138, "credit_id": "52fe4271c3a36847f801f1f3", "cast_id": 2, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Jacob Fuller", "id": 1037, "credit_id": "52fe4271c3a36847f801f1f7", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Kate Fuller", "id": 3196, "credit_id": "52fe4271c3a36847f801f1fb", "cast_id": 4, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Ernest Liu", "character": "Scott Fuller", "id": 11158, "credit_id": "52fe4271c3a36847f801f1ff", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Salma Hayek", "character": "Santanico Pandemonium", "id": 3136, "credit_id": "52fe4271c3a36847f801f203", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 5}, {"name": "Cheech Marin", "character": "Border Guard/Chet Pussy/Carlos", "id": 11159, "credit_id": "52fe4271c3a36847f801f207", "cast_id": 7, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 6}, {"name": "Danny Trejo", "character": "Razor Charlie", "id": 11160, "credit_id": "52fe4271c3a36847f801f20b", "cast_id": 8, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 7}, {"name": "Tom Savini", "character": "Sex Machine", "id": 11161, "credit_id": "52fe4271c3a36847f801f20f", "cast_id": 9, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 8}, {"name": "Fred Williamson", "character": "Frost", "id": 9811, "credit_id": "52fe4271c3a36847f801f213", "cast_id": 10, "profile_path": "/n6CAXv0dbKvCyBfMvppdUmeAwt2.jpg", "order": 9}, {"name": "Michael Parks", "character": "Texas Ranger", "id": 2536, "credit_id": "52fe4271c3a36847f801f217", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 10}, {"name": "Brenda Hillhouse", "character": "Hostage Gloria Hill", "id": 11162, "credit_id": "52fe4271c3a36847f801f21b", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "John Saxon", "character": "FBI Agent", "id": 11163, "credit_id": "52fe4271c3a36847f801f21f", "cast_id": 13, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 12}, {"name": "Marc Lawrence", "character": "Motel Owner", "id": 3140, "credit_id": "52fe4271c3a36847f801f223", "cast_id": 14, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 13}, {"name": "Kelly Preston", "character": "Newscaster Kelly Houge", "id": 11164, "credit_id": "52fe4271c3a36847f801f227", "cast_id": 15, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 14}, {"name": "John Hawkes", "character": "Pete Bottoms / Liquor Store Clerk", "id": 16861, "credit_id": "52fe4271c3a36847f801f291", "cast_id": 33, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 15}, {"name": "Tito Larriva", "character": "Titty Twister Guitarist & Vocalist", "id": 53763, "credit_id": "52fe4272c3a36847f801f295", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Peter Atanasoff", "character": "Titty Twister Saxophonist", "id": 1089505, "credit_id": "52fe4272c3a36847f801f299", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Johnny Vatos Hernandez", "character": "Titty Twister Drummer", "id": 1089510, "credit_id": "52fe4272c3a36847f801f29d", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Aimee Graham", "character": "Blonde Hostage", "id": 35545, "credit_id": "52fe4272c3a36847f801f2a1", "cast_id": 37, "profile_path": "/nWcKO2LokRckgnRWywWlRfyIUyX.jpg", "order": 19}, {"name": "Heidi McNeal", "character": "Red-headed Hostage", "id": 982183, "credit_id": "52fe4272c3a36847f801f2a5", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Ernest M. Garcia", "character": "Big Emilio", "id": 931730, "credit_id": "52fe4272c3a36847f801f2a9", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Gregory Nicotero", "character": "Sex Machine's Buddy", "id": 59287, "credit_id": "52fe4272c3a36847f801f2ad", "cast_id": 40, "profile_path": "/jedpZq1cMzmixzznxzgRZAIzodY.jpg", "order": 22}, {"name": "Cristos", "character": "Danny", "id": 139997, "credit_id": "52fe4272c3a36847f801f2b1", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Mike Moroff", "character": "Manny", "id": 100260, "credit_id": "52fe4272c3a36847f801f2b5", "cast_id": 42, "profile_path": null, "order": 24}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4271c3a36847f801f22d", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.7, "runtime": 108}, "756": {"poster_path": "/9YXyiRszikyoakc4oNaHbjjybmT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76000000, "overview": "Fantasia is the adventurous 1940 experiment from Disney. The film sets Disney animated characters to classical music as Mickey Mouse uses his magic wand to set broomsticks dancing in one of the more famous elaborate scenes. The film was groundbreaking in its usage of animation and music and is still considered a masterpiece decades later.", "video": false, "id": 756, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Fantasia", "tagline": "Hear the pictures! See the music!", "vote_count": 214, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7YanwpylLB3yzhwzf11W1tYpcQF.jpg", "poster_path": "/ldzKpOvGVl8NWQPdAYJEZpAvPIo.jpg", "id": 55427, "name": "Fantasia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032455", "adult": false, "backdrop_path": "/44wq5UgEo4bA7ay6ZZzZNbL6zkl.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1940-11-13", "popularity": 0.834749745153254, "original_title": "Fantasia", "budget": 2280000, "cast": [{"name": "Leopold Stokowski", "character": "Himself - Conductor of The Philadelphia Orchestra", "id": 233471, "credit_id": "52fe4272c3a36847f801f32d", "cast_id": 13, "profile_path": "/8flosda3lVaAyJF9rvhZDA0xTbf.jpg", "order": 0}, {"name": "Deems Taylor", "character": "Narrator - Narrative Introductions", "id": 565402, "credit_id": "52fe4272c3a36847f801f331", "cast_id": 14, "profile_path": "/hsvtVQl5VFZKBJk1pcrFWZkncQD.jpg", "order": 1}, {"name": "Walt Disney", "character": "Mickey Mouse (segment 'The Sorcerer's Apprentice') (voice)", "id": 2106, "credit_id": "52fe4272c3a36847f801f33b", "cast_id": 16, "profile_path": "/ku2lp8t3sazCDSWZdDrka3K4KLm.jpg", "order": 2}, {"name": "James MacDonald", "character": "Percussionist", "id": 137461, "credit_id": "52fe4272c3a36847f801f33f", "cast_id": 17, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 3}, {"name": "Julietta Novis", "character": "Soloist (segment 'Ave Maria') (singing voice)", "id": 1098082, "credit_id": "52fe4272c3a36847f801f343", "cast_id": 18, "profile_path": "/3dOJdhXEY4Ui2T9UB4opxvJNMFF.jpg", "order": 4}, {"name": "Paul J. Smith", "character": "Violinist", "id": 2107, "credit_id": "52fe4272c3a36847f801f347", "cast_id": 19, "profile_path": null, "order": 5}], "directors": [{"name": "Samuel Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f2f3", "profile_path": null, "id": 5691}, {"name": "James Algar", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f2f9", "profile_path": "/3dSa9LsutXEjnsEuZfuIWznQkkC.jpg", "id": 5690}, {"name": "William Roberts", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f2ff", "profile_path": "/mkfgT5RdFbFOwJpigXWALq9hOvz.jpg", "id": 11427}, {"name": "Paul Satterfield", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f305", "profile_path": null, "id": 11428}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f30b", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}, {"name": "Jim Handley", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f311", "profile_path": null, "id": 11430}, {"name": "Ford Beebe", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f317", "profile_path": "/hYyHEnluu3sg9mCm5ZSl3oR8Jor.jpg", "id": 11431}, {"name": "T. Hee", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f31d", "profile_path": null, "id": 11432}, {"name": "Norm Ferguson", "department": "Directing", "job": "Director", "credit_id": "54e4b44a925141469f00996e", "profile_path": "/o6ZqI5lXaQW3q05ri2WyMUZKYLg.jpg", "id": 226599}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f329", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Ben Sharpsteen", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f337", "profile_path": "/1dfzGLuG0n4IeR6ONjAFuhh8Kli.jpg", "id": 11426}], "vote_average": 6.7, "runtime": 124}, "8952": {"poster_path": "/8Ng4tk25sE5erT5zGTtZXvqmRCd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10652035, "overview": "Bad Santa co-screenwriters Glenn Ficara and John Requa re-team for this fact-based black comedy starring Jim Carrey as a Virginia police officer-turned-con man who makes the leap to white-collar criminal after being sent to prison and falling in love with his sensitive cellmate. Steve Russell (Carrey) is a small-town cop. Bored with his bland lifestyle, Russell turns to fraud as a means of shaking things up. Before long, Russell's criminal antics have landed him behind bars, where he encounters the charismatic Phillip Morris (Ewan McGregor). Smitten, Russell devotes his entire life to being with Morris regardless of the consequences.", "video": false, "id": 8952, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "I Love You Phillip Morris", "tagline": "The Conman who wouldn't go straight.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1045772", "adult": false, "backdrop_path": "/ybb0gmKxnstuhhBzDK27k0dKaF4.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}], "release_date": "2009-01-18", "popularity": 0.457885949272622, "original_title": "I Love You Phillip Morris", "budget": 13000000, "cast": [{"name": "Jim Carrey", "character": "Steven Russell", "id": 206, "credit_id": "52fe44cac3a36847f80aa339", "cast_id": 4, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Phillip Morris", "id": 3061, "credit_id": "52fe44cac3a36847f80aa335", "cast_id": 3, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Debbie", "id": 41087, "credit_id": "52fe44cac3a36847f80aa33d", "cast_id": 5, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Rodrigo Santoro", "character": "Jimmy", "id": 17289, "credit_id": "52fe44cac3a36847f80aa35d", "cast_id": 15, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 3}, {"name": "Brennan Brown", "character": "Larry Bukheim", "id": 1218149, "credit_id": "52fe44cac3a36847f80aa36d", "cast_id": 18, "profile_path": "/si4VTKGM6dFyZ6liBSDbjCkn3bf.jpg", "order": 4}, {"name": "Nicholas Alexander", "character": "Steven's Brother", "id": 143260, "credit_id": "52fe44cac3a36847f80aa341", "cast_id": 7, "profile_path": "/sBO8MBGX3O3hCK4oAWAu3MyduUz.jpg", "order": 5}, {"name": "Tony Bentley", "character": "Racist Client", "id": 120253, "credit_id": "52fe44cac3a36847f80aa349", "cast_id": 9, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 6}, {"name": "Michael Beasley", "character": "Prison Guard", "id": 143261, "credit_id": "52fe44cac3a36847f80aa345", "cast_id": 8, "profile_path": "/mk8jUlzVPUsKSQjHi6ATtaCtb47.jpg", "order": 7}, {"name": "Sean Boyd", "character": "Policeman", "id": 86276, "credit_id": "52fe44cac3a36847f80aa351", "cast_id": 11, "profile_path": "/jeQ4xtuMpX4cPzPSE6iNwa7qLOG.jpg", "order": 8}, {"name": "Trey Burvant", "character": "Blake", "id": 143264, "credit_id": "52fe44cac3a36847f80aa359", "cast_id": 14, "profile_path": "/yd72jEzFu11JrBu4tqgkn56avg.jpg", "order": 10}, {"name": "Marcus Lyle Brown", "character": "Young Doctor", "id": 16460, "credit_id": "5510b9fe92514166db003f9a", "cast_id": 20, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 11}], "directors": [{"name": "Glenn Ficarra", "department": "Directing", "job": "Director", "credit_id": "52fe44cac3a36847f80aa32b", "profile_path": "/nYiriOot9jZihyuhH7utfTh7vtH.jpg", "id": 56411}, {"name": "John Requa", "department": "Directing", "job": "Director", "credit_id": "52fe44cac3a36847f80aa331", "profile_path": null, "id": 56412}], "vote_average": 6.2, "runtime": 98}, "79316": {"poster_path": "/MgMPnHzraWqgBQwaUcdJh71qWl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36433975, "overview": "An unexpected pregnancy takes a terrifying turn for newlyweds Zach and Samantha McCall.", "video": false, "id": 79316, "genres": [{"id": 27, "name": "Horror"}], "title": "Devil's Due", "tagline": "The Devil Always Gets His Due", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2752758", "adult": false, "backdrop_path": "/fwTRTBW4FmzrC22PnkZ0dZPBRrT.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2014-01-17", "popularity": 0.761428350349446, "original_title": "Devil's Due", "budget": 7000000, "cast": [{"name": "Allison Miller", "character": "Samantha McCall", "id": 17270, "credit_id": "52fe49ccc3a368484e1404f3", "cast_id": 12, "profile_path": "/x1NcyAIFO6lN41mcxQglvMOeckz.jpg", "order": 0}, {"name": "Zach Gilford", "character": "Zach McCall", "id": 70303, "credit_id": "52fe49ccc3a368484e1404ef", "cast_id": 11, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 1}, {"name": "Sam Anderson", "character": "Father Thomas", "id": 36221, "credit_id": "52fe49ccc3a368484e1404f7", "cast_id": 13, "profile_path": "/2zcmQEBeArztSQJ317nZCHwCVtF.jpg", "order": 2}, {"name": "Robert Belushi", "character": "Mason", "id": 96018, "credit_id": "52fe49ccc3a368484e1404c9", "cast_id": 2, "profile_path": "/7RMYK7NXm2D32CGP3HD4UJ5kl4y.jpg", "order": 3}, {"name": "Catherine Kresge", "character": "Tina", "id": 92877, "credit_id": "52fe49ccc3a368484e1404cd", "cast_id": 3, "profile_path": "/A19KrrPWpXbozWNRzzT2rP8QOwg.jpg", "order": 4}, {"name": "Aimee Carrero", "character": "Emily", "id": 1224238, "credit_id": "52fe49ccc3a368484e1404d1", "cast_id": 4, "profile_path": "/AsaBKtZPEakG4Z7oGrdtYdgtpzN.jpg", "order": 5}, {"name": "Griff Furst", "character": "Keith", "id": 76021, "credit_id": "5358e11b0e0a26067f008c27", "cast_id": 20, "profile_path": "/rRAtuKLOq27DFZ0MWu6FCVbbhS8.jpg", "order": 6}, {"name": "Tyler Forrest", "character": "", "id": 1265767, "credit_id": "52fe49ccc3a368484e1404d9", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Roger Payano", "character": "Cab Driver", "id": 1285380, "credit_id": "52fe49ccc3a368484e1404fb", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Vanessa Ray", "character": "Suzie", "id": 485005, "credit_id": "52fe49ccc3a368484e1404ff", "cast_id": 15, "profile_path": "/qru7y2sKuLdI1tBONGLektoC0Lx.jpg", "order": 9}, {"name": "Bill Martin Williams", "character": "Ken", "id": 1271773, "credit_id": "52fe49ccc3a368484e140503", "cast_id": 16, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 10}, {"name": "Geraldine Singer", "character": "Sally", "id": 1027298, "credit_id": "52fe49ccc3a368484e140507", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Julia Denton", "character": "Natalie", "id": 1285382, "credit_id": "52fe49ccc3a368484e14050b", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Colin Walker", "character": "Stanley", "id": 205287, "credit_id": "52fe49ccc3a368484e14050f", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Matt Bettinelli-Olpin", "department": "Directing", "job": "Director", "credit_id": "52fe49ccc3a368484e1404df", "profile_path": null, "id": 66681}, {"name": "Tyler Gillett", "department": "Directing", "job": "Director", "credit_id": "52fe49ccc3a368484e1404e5", "profile_path": null, "id": 1039527}], "vote_average": 5.0, "runtime": 89}, "762": {"poster_path": "/jRx1nDUA4sb2NEKQaukXKBz6pCf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 5028948, "overview": "Monty Python and the Holy Grail loosely follows the legend of King Arthur. Arthur along with his squire, Patsy, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as \"it is a silly place\".", "video": false, "id": 762, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Monty Python and the Holy Grail", "tagline": "And now! At Last! Another film completely different from some of the other films which aren't quite the same as this one is.", "vote_count": 547, "homepage": "http://www.sonypictures.com/cthe/montypython/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071853", "adult": false, "backdrop_path": "/6fqmcCVci3cSBCgJw8NGXE4ST8G.jpg", "production_companies": [{"name": "Python (Monty) Pictures Limited", "id": 416}, {"name": "Michael White Productions", "id": 463}, {"name": "National Film Trustee Company", "id": 464}, {"name": "Twickenham Film Studios", "id": 465}], "release_date": "1975-03-13", "popularity": 1.02552212726685, "original_title": "Monty Python and the Holy Grail", "budget": 400000, "cast": [{"name": "Graham Chapman", "character": "King Arthur / Voice of God / Middle Head / Hiccoughing Guard", "id": 10722, "credit_id": "52fe4272c3a36847f801f6a9", "cast_id": 11, "profile_path": "/gwuoxo5EB3SRMO0BPLduWdcSALd.jpg", "order": 0}, {"name": "John Cleese", "character": "Second Swallow-Savvy Guard / The Black Knight / Peasant 3 / Sir Lancelot the Brave / Taunting French Guard / Tim the Enchanter", "id": 8930, "credit_id": "52fe4272c3a36847f801f6ad", "cast_id": 18, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 1}, {"name": "Eric Idle", "character": "Dead Collector / Peasant 1 / Sir Robin the Not-Quite-So-Brave-as-Sir Launcelot / First Swamp Castle Guard / Concorde / Roger the Shrubber / Brother Maynard", "id": 10713, "credit_id": "52fe4272c3a36847f801f6b1", "cast_id": 23, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 2}, {"name": "Michael Palin", "character": "First Swallow-Savvy Guard / Dennis / Peasant 2 / Right Head / Sir Galahad the Pure / Narrator / King of Swamp Castle / Brother Maynard's Brother / Leader of The Knights Who Say NI!", "id": 383, "credit_id": "52fe4272c3a36847f801f6bd", "cast_id": 42, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 3}, {"name": "Terry Gilliam", "character": "Patsy / Green Knight / Old Man from Scene 24 (Bridgekeeper) / Sir Bors / Animator / Gorrilla Hand", "id": 280, "credit_id": "52fe4272c3a36847f801f6b5", "cast_id": 29, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 4}, {"name": "Terry Jones", "character": "Dennis's Mother / Sir Bedevere / Left Head / Prince Herbert / Cartoon Scribe (voice)", "id": 10707, "credit_id": "52fe4272c3a36847f801f6b9", "cast_id": 35, "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "order": 5}, {"name": "Connie Booth", "character": "The Witch", "id": 149979, "credit_id": "52fe4272c3a36847f801f6c1", "cast_id": 43, "profile_path": "/wm4mf8oAuJjhuWB4pK9kLYjwp7L.jpg", "order": 6}, {"name": "Carol Cleveland", "character": "Zoot / Dingo", "id": 10733, "credit_id": "52fe4272c3a36847f801f6c5", "cast_id": 44, "profile_path": "/3QVIw2Lc18O4m3oktTeab6aVLlD.jpg", "order": 7}, {"name": "Neil Innes", "character": "First Monk / Singing Minstrel / Page Crushed by the Rabbit / Peasant #4", "id": 70624, "credit_id": "52fe4272c3a36847f801f6c9", "cast_id": 45, "profile_path": null, "order": 8}, {"name": "Bee Duffell", "character": "Old Crone", "id": 18760, "credit_id": "52fe4272c3a36847f801f6cd", "cast_id": 46, "profile_path": "/5Oq2NUwE0N9LtF9Qf8dokUnHGgP.jpg", "order": 9}, {"name": "John Young", "character": "Dead Body / Historian Frank", "id": 179028, "credit_id": "52fe4272c3a36847f801f6d1", "cast_id": 47, "profile_path": null, "order": 10}, {"name": "Rita Davies", "character": "Historian's Wife", "id": 58579, "credit_id": "52fe4272c3a36847f801f6d5", "cast_id": 48, "profile_path": null, "order": 11}, {"name": "Avril Stewart", "character": "Dr. Piglet", "id": 1052099, "credit_id": "52fe4272c3a36847f801f6d9", "cast_id": 49, "profile_path": null, "order": 12}, {"name": "Sally Kinghorn", "character": "Dr. Winston", "id": 1052100, "credit_id": "52fe4272c3a36847f801f6dd", "cast_id": 50, "profile_path": null, "order": 13}, {"name": "Mark Zycon", "character": "Prisoner", "id": 1052101, "credit_id": "52fe4272c3a36847f801f6e1", "cast_id": 51, "profile_path": null, "order": 14}, {"name": "Julian Doyle", "character": "Police Sergeant", "id": 10718, "credit_id": "53c82e74c3a3686251004188", "cast_id": 58, "profile_path": null, "order": 15}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f66f", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}, {"name": "Terry Jones", "department": "Directing", "job": "Director", "credit_id": "52fe4272c3a36847f801f675", "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "id": 10707}], "vote_average": 7.5, "runtime": 91}, "763": {"poster_path": "/auD6GTyZXrvkv8ZQIGmpJsHFJxn.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}], "revenue": 242623, "overview": "When a Sumatran rat-monkey bites Lionel Cosgrove's mother, she's transformed into a zombie and begins killing (and transforming) the entire town while Lionel races to keep things under control.", "video": false, "id": 763, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Braindead", "tagline": "Some things won't stay down... even after they die.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103873", "adult": false, "backdrop_path": "/3qgqAUA1JQT3o3CUxUhKQ3qZXBY.jpg", "production_companies": [{"name": "WingNut Films", "id": 11}, {"name": "New Zealand Film Commission", "id": 294}, {"name": "Avalon/NFU Studios", "id": 466}], "release_date": "1992-08-13", "popularity": 0.808821139211619, "original_title": "Braindead", "budget": 3000000, "cast": [{"name": "Tim Balme", "character": "Lionel Cosgrove", "id": 11332, "credit_id": "52fe4273c3a36847f801f77b", "cast_id": 14, "profile_path": null, "order": 0}, {"name": "Diana Pe\u00f1alver", "character": "Paquita Maria Sanchez", "id": 11333, "credit_id": "52fe4273c3a36847f801f77f", "cast_id": 15, "profile_path": null, "order": 1}, {"name": "Elizabeth Moody", "character": "Mum", "id": 11334, "credit_id": "52fe4273c3a36847f801f783", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "Ian Watkin", "character": "Uncle Les", "id": 11335, "credit_id": "52fe4273c3a36847f801f787", "cast_id": 17, "profile_path": null, "order": 3}, {"name": "Brenda Kendall", "character": "Nurse McTavish", "id": 11336, "credit_id": "52fe4273c3a36847f801f78b", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Stephen Papps", "character": "Stephen Papps", "id": 11338, "credit_id": "52fe4273c3a36847f801f78f", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Murray Keane", "character": "Scroat", "id": 11340, "credit_id": "52fe4273c3a36847f801f793", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Glenis Levestam", "character": "Nora Matheson", "id": 11341, "credit_id": "52fe4273c3a36847f801f797", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Lewis Rowe", "character": "Mr. Matheson", "id": 11342, "credit_id": "52fe4273c3a36847f801f79b", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Stuart Devenie", "character": "Void", "id": 81876, "credit_id": "52fe4273c3a36847f801f7a5", "cast_id": 25, "profile_path": "/24ULaHp8antJCog28T59tJByJZ1.jpg", "order": 10}, {"name": "Jed Brophy", "character": "Void", "id": 173451, "credit_id": "534108b90e0a2679a400194b", "cast_id": 27, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 11}, {"name": "Elizabeth Mulfaxe", "character": "Rita", "id": 1403734, "credit_id": "549bde6f9251413123003451", "cast_id": 29, "profile_path": null, "order": 12}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f73b", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.6, "runtime": 104}, "82684": {"poster_path": "/lYxXNWpUZ92Lp7QGCawKqRLPVRp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.", "video": false, "id": 82684, "genres": [{"id": 18, "name": "Drama"}], "title": "Chasing Mavericks", "tagline": "Legends Start Somewhere", "vote_count": 89, "homepage": "http://www.livelikejay.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1629757", "adult": false, "backdrop_path": "/1FHjKwmR9kqlQEgHQHOpEGrzWXc.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Walden Media", "id": 10221}], "release_date": "2012-10-26", "popularity": 0.284598814303582, "original_title": "Chasing Mavericks", "budget": 0, "cast": [{"name": "Leven Rambin", "character": "Kim", "id": 207401, "credit_id": "52fe48699251416c9108b96f", "cast_id": 14, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Frosty Hesson", "id": 17276, "credit_id": "52fe48699251416c9108b963", "cast_id": 11, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Elisabeth Shue", "character": "Christy Moriarity", "id": 1951, "credit_id": "52fe48699251416c9108b967", "cast_id": 12, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 2}, {"name": "Abigail Spencer", "character": "Brenda Hesson", "id": 123725, "credit_id": "52fe48699251416c9108b96b", "cast_id": 13, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 3}, {"name": "Scott Eastwood", "character": "Gordy", "id": 928572, "credit_id": "52fe48699251416c9108b977", "cast_id": 16, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 4}, {"name": "Taylor Handley", "character": "Sonny", "id": 66741, "credit_id": "52fe48699251416c9108b973", "cast_id": 15, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 5}, {"name": "Channon Roe", "character": "Bob Pearson", "id": 76314, "credit_id": "52fe48699251416c9108b97b", "cast_id": 17, "profile_path": "/uUrtHAIC010Oelsx8MO6Z1mMbaV.jpg", "order": 6}, {"name": "Jenica Bergere", "character": "Zeuf", "id": 113818, "credit_id": "52fe48699251416c9108b983", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Jonny Weston", "character": "Jay Moriarity", "id": 928575, "credit_id": "52fe48699251416c9108b987", "cast_id": 20, "profile_path": "/qv8lrHTf22WO92kdWcIu8ZMee0J.jpg", "order": 8}, {"name": "Cooper Timberline", "character": "Little Jay Moriarty", "id": 928574, "credit_id": "52fe48699251416c9108b97f", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Harley Graham", "character": "Little Kim", "id": 1212271, "credit_id": "549ba7ba9251414bb200158a", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Steven Wiig", "character": "Mavericks Spectator", "id": 928577, "credit_id": "52fe48699251416c9108b98f", "cast_id": 22, "profile_path": "/lQNprdgBKw2iYWDFeZAmCrJO7bY.jpg", "order": 11}, {"name": "Andy Arness", "character": "Blue-Collar Worker", "id": 928579, "credit_id": "52fe48699251416c9108b993", "cast_id": 23, "profile_path": null, "order": 12}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe48699251416c9108b929", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}, {"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe48699251416c9108b999", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.9, "runtime": 117}, "765": {"poster_path": "/dxbIRmIo0rN5R6WGvxnJuUJPh3t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5923044, "overview": "Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from \u201cThe Book of the Dead.\u201d As they play the recording an evil power is unleashed taking over Linda\u2019s body.", "video": false, "id": 765, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Evil Dead II", "tagline": "Kiss Your Nerves Good-Bye!", "vote_count": 185, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092991", "adult": false, "backdrop_path": "/9meXjIwJZk9aMMoMZk3AMzt8o44.jpg", "production_companies": [{"name": "Studio Canal", "id": 5870}], "release_date": "1987-03-13", "popularity": 1.0849989562547, "original_title": "Evil Dead II", "budget": 3600000, "cast": [{"name": "Bruce Campbell", "character": "Ashley 'Ash' J. Williams", "id": 11357, "credit_id": "52fe4273c3a36847f801f8d1", "cast_id": 15, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 0}, {"name": "Sarah Berry", "character": "Annie Knowby", "id": 11749, "credit_id": "52fe4273c3a36847f801f8d5", "cast_id": 16, "profile_path": "/6J6waYCH4TXHdMs4AFU4zB9Mxtg.jpg", "order": 1}, {"name": "Dan Hicks", "character": "Jake", "id": 11750, "credit_id": "52fe4273c3a36847f801f8d9", "cast_id": 17, "profile_path": "/p6UEdkL9oJGLRVkMgQtrKvJ3cCl.jpg", "order": 2}, {"name": "Kassie DePaiva", "character": "Bobbie Joe", "id": 11751, "credit_id": "52fe4273c3a36847f801f8dd", "cast_id": 18, "profile_path": "/m60qVsCFDeXGSXnGvWVPBEYbeU1.jpg", "order": 3}, {"name": "Denise Bixler", "character": "Linda", "id": 11753, "credit_id": "52fe4273c3a36847f801f8e1", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Richard Domeier", "character": "Ed Getley", "id": 11754, "credit_id": "52fe4273c3a36847f801f8e5", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "John Peakes", "character": "Professor Raymond Knowby", "id": 11755, "credit_id": "52fe4273c3a36847f801f8e9", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Lou Hancock", "character": "Henrietta Knowby", "id": 11756, "credit_id": "52fe4273c3a36847f801f8ed", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Ted Raimi", "character": "Possessed Henrietta", "id": 11769, "credit_id": "52fe4273c3a36847f801f8f1", "cast_id": 23, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 8}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f885", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 7.4, "runtime": 84}, "766": {"poster_path": "/2eZKDIwLNnySbwqQtAaUz0kYDIL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man is accidentally transported to 1300 A.D., where he must battle an army of the dead and retrieve the Necronomicon so he can return home.", "video": false, "id": 766, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Army of Darkness", "tagline": "Trapped in time. Surrounded by evil. Low on gas.", "vote_count": 258, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106308", "adult": false, "backdrop_path": "/j7ctTLHSOrvY6fl63CjBNbmkTWq.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dino De Laurentiis Company", "id": 10308}, {"name": "Renaissance Pictures", "id": 467}], "release_date": "1992-10-09", "popularity": 1.19920257210749, "original_title": "Army of Darkness", "budget": 11000000, "cast": [{"name": "Bruce Campbell", "character": "Ash", "id": 11357, "credit_id": "52fe4273c3a36847f801f9c3", "cast_id": 18, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 0}, {"name": "Embeth Davidtz", "character": "Sheila", "id": 6368, "credit_id": "52fe4273c3a36847f801f9c7", "cast_id": 19, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 1}, {"name": "Marcus Gilbert", "character": "Lord Arthur", "id": 11763, "credit_id": "52fe4273c3a36847f801f9cb", "cast_id": 20, "profile_path": null, "order": 2}, {"name": "Ian Abercrombie", "character": "Wiseman", "id": 11764, "credit_id": "52fe4273c3a36847f801f9cf", "cast_id": 21, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 3}, {"name": "Richard Grove", "character": "Duke Henry the Red", "id": 11765, "credit_id": "52fe4273c3a36847f801f9d3", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Timothy Patrick Quill", "character": "Blacksmith", "id": 11766, "credit_id": "52fe4273c3a36847f801f9d7", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Michael Earl Reid", "character": "Gold Tooth", "id": 11767, "credit_id": "52fe4273c3a36847f801f9db", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Bridget Fonda", "character": "Linda", "id": 2233, "credit_id": "52fe4273c3a36847f801f9df", "cast_id": 25, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 7}, {"name": "Patricia Tallman", "character": "Possessed Witch", "id": 11768, "credit_id": "52fe4273c3a36847f801f9e3", "cast_id": 26, "profile_path": "/jl8F0Nv4dQJqg1014baS5eiHWaR.jpg", "order": 8}, {"name": "Ted Raimi", "character": "Cowardly Warrior/Second Supportive Villager/S-Mart Clerk", "id": 11769, "credit_id": "52fe4273c3a36847f801f9e7", "cast_id": 27, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 9}, {"name": "Deke Anderson", "character": "Mini-Ash #2", "id": 1195675, "credit_id": "54e87a029251412eae001bd9", "cast_id": 28, "profile_path": "/cRQAksi2LKMj6EvEySjDDtWSj19.jpg", "order": 10}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f95f", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 7.1, "runtime": 81}, "767": {"poster_path": "/bFXys2nhALwDvpkF3dP3Vvdfn8b.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 933959197, "overview": "The sixth year at Hogwarts School of Witchcraft and Wizardry kicks off with a bang for young Harry Potter when he inadvertently discovers a mysterious book that sheds light on the sordid life of the evil Lord Voldemort. Preparing for inevitable battle, Harry and Dumbledore turn to professor Horace Slughorn for help in pinpointing the weakness in Voldemort's forces.", "video": false, "id": 767, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Half-Blood Prince", "tagline": "Dark Secrets Revealed", "vote_count": 1825, "homepage": "http://harrypotter.warnerbros.com/harrypotterandthehalf-bloodprince/dvd/index.html", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0417741", "adult": false, "backdrop_path": "/mjBjhotXUWc0EFZ5sswu7cu12Sp.jpg", "production_companies": [{"name": "Heyday Films", "id": 7364}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2009-07-07", "popularity": 2.08075655175762, "original_title": "Harry Potter and the Half-Blood Prince", "budget": 250000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe4273c3a36847f801fa73", "cast_id": 3, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe4273c3a36847f801fa6f", "cast_id": 2, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe4273c3a36847f801fa6b", "cast_id": 1, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe4273c3a36847f801fa77", "cast_id": 4, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 3}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe4273c3a36847f801fa7b", "cast_id": 5, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 4}, {"name": "Jim Broadbent", "character": "Professor Horace Slughorn", "id": 388, "credit_id": "52fe4273c3a36847f801fafd", "cast_id": 27, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 5}, {"name": "Elarica Gallacher", "character": "Waitress", "id": 89387, "credit_id": "52fe4273c3a36847f801fb01", "cast_id": 28, "profile_path": "/zGDEpuTSOV6TF6crY07cVWlUZ9s.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe4273c3a36847f801fb05", "cast_id": 29, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Michael Gambon", "character": "Professor Albus Dumbledore", "id": 5658, "credit_id": "52fe4273c3a36847f801fb09", "cast_id": 30, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 8}, {"name": "Maggie Smith", "character": "Professor Minerva McGonagall", "id": 10978, "credit_id": "52fe4273c3a36847f801fb0d", "cast_id": 31, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 9}, {"name": "Alan Rickman", "character": "Professor Severus Snape", "id": 4566, "credit_id": "52fe4273c3a36847f801fb11", "cast_id": 32, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 10}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe4273c3a36847f801fb15", "cast_id": 33, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 11}, {"name": "Evanna Lynch", "character": "Lune Lovegood", "id": 140367, "credit_id": "52fe4273c3a36847f801fb19", "cast_id": 35, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 12}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe4273c3a36847f801fb1d", "cast_id": 36, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 13}, {"name": "Dave Legeno", "character": "Fenrir Greyback", "id": 60348, "credit_id": "52fe4273c3a36847f801fb21", "cast_id": 37, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 14}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe4273c3a36847f801fb25", "cast_id": 38, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 15}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe4273c3a36847f801fb29", "cast_id": 39, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 16}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe4273c3a36847f801fb2d", "cast_id": 40, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 17}, {"name": "Helen McCrory", "character": "Narcissa Malfoy", "id": 15737, "credit_id": "52fe4273c3a36847f801fb31", "cast_id": 41, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 18}, {"name": "Timothy Spall", "character": "Wormtail", "id": 9191, "credit_id": "52fe4273c3a36847f801fb35", "cast_id": 42, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 19}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe4273c3a36847f801fb39", "cast_id": 43, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 20}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe4273c3a36847f801fb3d", "cast_id": 44, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 21}, {"name": "Freddie Stroma", "character": "Cormac McLaggen", "id": 234934, "credit_id": "52fe4273c3a36847f801fb41", "cast_id": 45, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 22}, {"name": "Warwick Davis", "character": "Professor Filius Flitwick", "id": 11184, "credit_id": "52fe4273c3a36847f801fb45", "cast_id": 46, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 23}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe4273c3a36847f801fb49", "cast_id": 47, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 24}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe4273c3a36847f801fb4d", "cast_id": 48, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 25}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe4273c3a36847f801fb51", "cast_id": 49, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 26}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe4273c3a36847f801fb55", "cast_id": 50, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 27}, {"name": "Frank Dillane", "character": "Tom Riddle (16 Years)", "id": 964834, "credit_id": "52fe4273c3a36847f801fb59", "cast_id": 51, "profile_path": "/ySGcXDezq7acpZyDybgWOgWxi1U.jpg", "order": 28}, {"name": "Gemma Jones", "character": "Madam Pomfrey", "id": 9138, "credit_id": "52fe4273c3a36847f801fb5d", "cast_id": 52, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 29}, {"name": "Hero Fiennes-Tiffin", "character": "Tom Riddle (11 Years)", "id": 1114487, "credit_id": "52fe4273c3a36847f801fb61", "cast_id": 53, "profile_path": "/1GDxQvHq1Ba8og4Epuxo6v3K9vb.jpg", "order": 30}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe4273c3a36847f801fb65", "cast_id": 54, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 31}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe4273c3a36847f801fb69", "cast_id": 55, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 32}, {"name": "Georgina Leonidas", "character": "Katie Bell", "id": 174398, "credit_id": "52fe4273c3a36847f801fb6d", "cast_id": 56, "profile_path": "/hv3YEO8Q0khE41XDesUsQBhzJ1T.jpg", "order": 33}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe4273c3a36847f801fb71", "cast_id": 57, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 34}, {"name": "Anna Shaffer", "character": "Romilda Vane", "id": 234929, "credit_id": "52fe4273c3a36847f801fb75", "cast_id": 58, "profile_path": "/uldkREhKYbfdAUpAXkPUWI746CE.jpg", "order": 35}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe4273c3a36847f801fb79", "cast_id": 59, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 36}, {"name": "Jamie Waylett", "character": "Vincent Crabbe", "id": 956224, "credit_id": "52fe4273c3a36847f801fb7d", "cast_id": 60, "profile_path": "/nvw2IgN2BcpT2MczUuwSaTYuqZK.jpg", "order": 37}, {"name": "Scarlett Byrne", "character": "Pansy Parkinson", "id": 234928, "credit_id": "52fe4273c3a36847f801fb81", "cast_id": 61, "profile_path": "/7W8KCN8KlCzzbSEW35ul237HlvU.jpg", "order": 38}, {"name": "Jessie Cave", "character": "Lavender Brown", "id": 234924, "credit_id": "52fe4273c3a36847f801fb8d", "cast_id": 64, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 39}, {"name": "Louis Cordice", "character": "Blaise Zabini", "id": 234927, "credit_id": "52fe4273c3a36847f801fb85", "cast_id": 62, "profile_path": "/9GsBugZh5t5EHlcM3Wjay7EJH4B.jpg", "order": 40}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe4273c3a36847f801fb89", "cast_id": 63, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 41}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801fa81", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 7.0, "runtime": 153}, "768": {"poster_path": "/f3J77Cy3pRSeeN52Pk8oIvgi6IN.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 74558115, "overview": "Frederick Abberline is an opium-huffing inspector from Scotland Yard who falls for one of Jack the Ripper's prostitute targets in this Hughes brothers adaption of a graphic novel that posits the Ripper's true identity.", "video": false, "id": 768, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "From Hell", "tagline": "Only the legend will survive.", "vote_count": 179, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120681", "adult": false, "backdrop_path": "/oYK1KfAABFQEnbgpZHpHu2ZuUMj.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Underworld Entertainment", "id": 476}], "release_date": "2001-10-19", "popularity": 0.530067387360038, "original_title": "From Hell", "budget": 35000000, "cast": [{"name": "Johnny Depp", "character": "Inspector Frederick Abberline", "id": 85, "credit_id": "52fe4273c3a36847f801fc41", "cast_id": 19, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Heather Graham", "character": "Mary Kelly", "id": 69122, "credit_id": "52fe4273c3a36847f801fc45", "cast_id": 20, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 1}, {"name": "Ian Holm", "character": "Sir William Gull", "id": 65, "credit_id": "52fe4274c3a36847f801fc49", "cast_id": 21, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 2}, {"name": "Robbie Coltrane", "character": "Sergeant Peter Godley", "id": 1923, "credit_id": "52fe4274c3a36847f801fc4d", "cast_id": 22, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 3}, {"name": "Ian Richardson", "character": "Sir Charles Warren", "id": 385, "credit_id": "52fe4274c3a36847f801fc51", "cast_id": 23, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 4}, {"name": "Jason Flemyng", "character": "Netley, the Coachman", "id": 973, "credit_id": "52fe4274c3a36847f801fc55", "cast_id": 24, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Katrin Cartlidge", "character": "Dark Annie Chapman", "id": 1641, "credit_id": "52fe4274c3a36847f801fc59", "cast_id": 25, "profile_path": "/gs1DKojYoO49yNDgtwWkITt3iGN.jpg", "order": 6}, {"name": "Terence Harvey", "character": "Benjamin 'Ben' Kidney", "id": 25656, "credit_id": "52fe4274c3a36847f801fc5d", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Susan Lynch", "character": "Liz Stride", "id": 42571, "credit_id": "52fe4274c3a36847f801fc61", "cast_id": 27, "profile_path": "/bXwZyTYQu4YL7qcQmsw3GHgmOuh.jpg", "order": 8}, {"name": "Paul Rhys", "character": "Dr. Ferral", "id": 80365, "credit_id": "52fe4274c3a36847f801fc65", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Lesley Sharp", "character": "Kate Eddowes", "id": 80366, "credit_id": "52fe4274c3a36847f801fc69", "cast_id": 29, "profile_path": "/xaZY2lBXwS2Oa4a87qg1yxN6EgE.jpg", "order": 10}, {"name": "Estelle Skornik", "character": "Ada", "id": 80367, "credit_id": "52fe4274c3a36847f801fc6d", "cast_id": 30, "profile_path": "/kEylQeTsGN3cVlElKJiR8OARYYW.jpg", "order": 11}, {"name": "Nicholas McGaughey", "character": "Officer Bolt", "id": 80368, "credit_id": "52fe4274c3a36847f801fc71", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Annabelle Apsion", "character": "Polly Nichols", "id": 80369, "credit_id": "52fe4274c3a36847f801fc75", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Joanna Page", "character": "Ann Crook", "id": 7061, "credit_id": "52fe4274c3a36847f801fc79", "cast_id": 33, "profile_path": "/i0Mgrg3K2HvcQWnQmliD3FesBAk.jpg", "order": 14}], "directors": [{"name": "Albert Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801fbd7", "profile_path": "/wExeoXPCpuGKmNKHKwJKo8BXo4t.jpg", "id": 11447}, {"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801fbdd", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}], "vote_average": 6.3, "runtime": 122}, "769": {"poster_path": "/pwpGfTImTGifEGgLb3s6LRPd4I6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46836394, "overview": "Henry Hill is a small time gangster, who takes part in a robbery with Jimmy Conway and Tommy De Vito, two other gangsters who have set their sights a bit higher. His two partners kill off everyone else involved in the robbery, and slowly start to climb up through the hierarchy of the Mob. Henry, however, is badly affected by his partners success, but will he stoop low enough to bring about the downfall of Jimmy and Tommy?", "video": false, "id": 769, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Goodfellas", "tagline": "Three Decades of Life in the Mafia.", "vote_count": 756, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099685", "adult": false, "backdrop_path": "/daAvXBvlYyJXKEdqYIRVv6OgheT.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1990-09-18", "popularity": 1.77209982892638, "original_title": "Goodfellas", "budget": 25000000, "cast": [{"name": "Robert De Niro", "character": "Jimmy Conway", "id": 380, "credit_id": "52fe4274c3a36847f801fd1b", "cast_id": 16, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Henry Hill", "id": 11477, "credit_id": "52fe4274c3a36847f801fd1f", "cast_id": 17, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Tommy DeVito", "id": 4517, "credit_id": "52fe4274c3a36847f801fd23", "cast_id": 18, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Lorraine Bracco", "character": "Karen Hill", "id": 11478, "credit_id": "52fe4274c3a36847f801fd27", "cast_id": 19, "profile_path": "/1neO0scj7QyrrWDp1JZRrN0tA8Y.jpg", "order": 3}, {"name": "Paul Sorvino", "character": "Paul Cicero", "id": 7004, "credit_id": "52fe4274c3a36847f801fd5f", "cast_id": 33, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 4}, {"name": "Chuck Low", "character": "Morris Kessler", "id": 11479, "credit_id": "52fe4274c3a36847f801fd2b", "cast_id": 20, "profile_path": "/h4mQOMAXyNXyiWBFhpw4rTNkvHZ.jpg", "order": 5}, {"name": "Frank Sivero", "character": "Frankie Carbone", "id": 11480, "credit_id": "52fe4274c3a36847f801fd2f", "cast_id": 21, "profile_path": "/jszCGdc8p9d42K8e7qvVpzaQa5b.jpg", "order": 6}, {"name": "Frank DiLeo", "character": "Tuddy Cicero", "id": 11481, "credit_id": "52fe4274c3a36847f801fd33", "cast_id": 22, "profile_path": "/vW60CPPt7SBKRFQaEjMQMwyHlP2.jpg", "order": 7}, {"name": "Tony Darrow", "character": "Sonny Bunz", "id": 11482, "credit_id": "52fe4274c3a36847f801fd37", "cast_id": 23, "profile_path": "/ckz3hqyTyRiwVEauD6PBgvrQw0u.jpg", "order": 8}, {"name": "Mike Starr", "character": "Frenchy", "id": 5170, "credit_id": "52fe4274c3a36847f801fd3b", "cast_id": 24, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 9}, {"name": "Frank Vincent", "character": "Billy Batts", "id": 7164, "credit_id": "52fe4274c3a36847f801fd3f", "cast_id": 25, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 10}, {"name": "Frank Adonis", "character": "Anthony Stabile", "id": 4692, "credit_id": "52fe4274c3a36847f801fd43", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Catherine Scorsese", "character": "Mrs. DeVito - Tommy's Mother", "id": 11483, "credit_id": "52fe4274c3a36847f801fd47", "cast_id": 27, "profile_path": "/rXFjIQVimKotQUtXwVNGg7XVMeW.jpg", "order": 12}, {"name": "Suzanne Shepherd", "character": "Karen's Mother", "id": 11484, "credit_id": "52fe4274c3a36847f801fd4b", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Gina Mastrogiacomo", "character": "Janice Rossi", "id": 11485, "credit_id": "52fe4274c3a36847f801fd4f", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Debi Mazar", "character": "Sandy", "id": 5578, "credit_id": "52fe4274c3a36847f801fd53", "cast_id": 30, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 15}, {"name": "Michael Imperioli", "character": "Spider", "id": 11486, "credit_id": "52fe4274c3a36847f801fd57", "cast_id": 31, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 16}, {"name": "Samuel L. Jackson", "character": "Stacks Edwards", "id": 2231, "credit_id": "52fe4274c3a36847f801fd5b", "cast_id": 32, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 17}, {"name": "Charles Scorsese", "character": "Vinnie", "id": 1006721, "credit_id": "53dd95a90e0a265a8a000dad", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Illeana Douglas", "character": "Rosie", "id": 7796, "credit_id": "53dd95c90e0a265a8d000e32", "cast_id": 35, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 19}, {"name": "Tobin Bell", "character": "Parole Officer", "id": 2144, "credit_id": "53dd95e70e0a265a8d000e38", "cast_id": 36, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 20}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fcc3", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.8, "runtime": 146}, "770": {"poster_path": "/2m9qsuDpAb6aBMxbKOBU1jsP9qf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 400176459, "overview": "An American classic in which a manipulative woman and a roguish man carry on a turbulent love affair in the American south during the Civil War and Reconstruction.", "video": false, "id": 770, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Gone with the Wind", "tagline": "The greatest romance of all time!", "vote_count": 276, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0031381", "adult": false, "backdrop_path": "/bGRUMgSvs6wzYQRqehY4Fsup4f1.jpg", "production_companies": [{"name": "Selznick International Pictures", "id": 1553}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1939-12-15", "popularity": 0.865912141767354, "original_title": "Gone with the Wind", "budget": 4000000, "cast": [{"name": "Vivien Leigh", "character": "Scarlett O'Hara", "id": 10538, "credit_id": "52fe4274c3a36847f801fe17", "cast_id": 10, "profile_path": "/rATfD7y3lNbz8ji4SnIURctu7qa.jpg", "order": 0}, {"name": "Clark Gable", "character": "Rhett Butler", "id": 11492, "credit_id": "52fe4274c3a36847f801fe1b", "cast_id": 11, "profile_path": "/cebtqK6Ydrhi5ip0V12MDj3bDvd.jpg", "order": 1}, {"name": "Olivia de Havilland", "character": "Melanie Hamilton", "id": 8725, "credit_id": "52fe4274c3a36847f801fe1f", "cast_id": 12, "profile_path": "/rnMSdk6OZvRdimYbFHjiaYOtIlt.jpg", "order": 2}, {"name": "Thomas Mitchell", "character": "Gerald O'Hara", "id": 3383, "credit_id": "52fe4274c3a36847f801fe23", "cast_id": 13, "profile_path": "/b0WAgmbZjTX99prApnSMdiYOhRK.jpg", "order": 3}, {"name": "Leslie Howard", "character": "Ashley Wilkes", "id": 11493, "credit_id": "52fe4274c3a36847f801fe27", "cast_id": 14, "profile_path": "/upiLsG5efD8CrGO0gT6HyiZZEYh.jpg", "order": 4}, {"name": "Barbara O'Neil", "character": "Ellen O'Hara", "id": 7642, "credit_id": "52fe4274c3a36847f801fe2b", "cast_id": 15, "profile_path": "/osDN2GY2erXbTbwlBSapfKwXaeh.jpg", "order": 5}, {"name": "Evelyn Keyes", "character": "Suellen O'Hara", "id": 11494, "credit_id": "52fe4274c3a36847f801fe2f", "cast_id": 16, "profile_path": "/n3Dtqe51XAPNa2N4nXe1GtR90NK.jpg", "order": 6}, {"name": "Ann Rutherford", "character": "Carreen O'Hara", "id": 11495, "credit_id": "52fe4274c3a36847f801fe33", "cast_id": 17, "profile_path": "/3ZRWZ6Opn94EXXbkJalW0TudTB.jpg", "order": 7}, {"name": "George Reeves", "character": "Stuart Tarleton", "id": 11496, "credit_id": "52fe4274c3a36847f801fe37", "cast_id": 18, "profile_path": "/98aYzkJmmsMHPmY77IUHVc2sbgy.jpg", "order": 8}, {"name": "Fred Crane", "character": "Brent Tarleton", "id": 11497, "credit_id": "52fe4274c3a36847f801fe3b", "cast_id": 19, "profile_path": "/zc2dBfgR9H0IYCDFnK0N9UCYQcK.jpg", "order": 9}, {"name": "Hattie McDaniel", "character": "Mammy", "id": 11498, "credit_id": "52fe4274c3a36847f801fe3f", "cast_id": 20, "profile_path": "/logqibs2WF76dLI297OJkm4j4np.jpg", "order": 10}, {"name": "Oscar Polk", "character": "Pork", "id": 11499, "credit_id": "52fe4274c3a36847f801fe43", "cast_id": 21, "profile_path": "/AoZOpOvbLoVLHqujtKR0HxIzBNK.jpg", "order": 11}, {"name": "Butterfly McQueen", "character": "Prissy", "id": 11500, "credit_id": "52fe4274c3a36847f801fe47", "cast_id": 22, "profile_path": "/i41zpICsZwsuGyZe946MM8BG5hI.jpg", "order": 12}, {"name": "Marcella Martin", "character": "Cathleen Calvert", "id": 11501, "credit_id": "52fe4274c3a36847f801fe4b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Harry Davenport", "character": "Dr. Meade", "id": 11502, "credit_id": "52fe4274c3a36847f801fe4f", "cast_id": 24, "profile_path": "/r28I9wuqqhuMtZ0iBzoi1A74ljp.jpg", "order": 14}, {"name": "Leona Roberts", "character": "Mrs. Meade", "id": 13822, "credit_id": "52fe4274c3a36847f801fe9d", "cast_id": 43, "profile_path": "/z8oL1VwiSGnwTK4c1PV9A2som7x.jpg", "order": 17}, {"name": "Cammie King", "character": "Bonnie Blue Butler", "id": 11503, "credit_id": "52fe4274c3a36847f801fe53", "cast_id": 25, "profile_path": "/o1PkTkUR5wOU9ZRrbVdc0nWR5XS.jpg", "order": 18}, {"name": "Eric Linden", "character": "Amputation Case", "id": 124853, "credit_id": "52fe4274c3a36847f801fe5d", "cast_id": 27, "profile_path": "/wSgntN58MRBPOOT80kcCHZCo3EY.jpg", "order": 19}, {"name": "J. M. Kerrigan", "character": "Johnny Gallagher", "id": 2099, "credit_id": "52fe4274c3a36847f801fe61", "cast_id": 28, "profile_path": "/2q7u623S3giTrirUaQQMIKGdr5A.jpg", "order": 20}, {"name": "Ward Bond", "character": "Tom - Yankee Captain", "id": 4303, "credit_id": "52fe4274c3a36847f801fe65", "cast_id": 29, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 21}, {"name": "Jackie Moran", "character": "Phil Meade", "id": 33775, "credit_id": "52fe4274c3a36847f801fe69", "cast_id": 30, "profile_path": "/fabbLkwkB0yYcYSbbpSKPRxXHsQ.jpg", "order": 22}, {"name": "Cliff Edwards", "character": "Reminiscent Soldier", "id": 30236, "credit_id": "52fe4274c3a36847f801fe6d", "cast_id": 31, "profile_path": "/kbWXXmugxdX3rOEa0hUlJWHZ9pA.jpg", "order": 23}, {"name": "Lillian Kemble-Cooper", "character": "Bonnie's Nurse in London", "id": 124854, "credit_id": "52fe4274c3a36847f801fe71", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Yakima Canutt", "character": "Renegade", "id": 88979, "credit_id": "52fe4274c3a36847f801fe75", "cast_id": 33, "profile_path": "/8cLKXYJymj4753C2XzoINfaJllv.jpg", "order": 25}, {"name": "Louis Jean Heydt", "character": "Hungry Soldier Holding Beau Wilkes", "id": 13979, "credit_id": "52fe4274c3a36847f801fe79", "cast_id": 34, "profile_path": "/i3IvlNbAp6w3IB7Ur8QpRsG8MLz.jpg", "order": 26}, {"name": "Mickey Kuhn", "character": "Beau Wilkes", "id": 10545, "credit_id": "52fe4274c3a36847f801fe7d", "cast_id": 35, "profile_path": "/lqzpNfPGs77XFaNAetnNuC6dFql.jpg", "order": 27}, {"name": "Olin Howland", "character": "A Carpetbagger Businessman", "id": 34209, "credit_id": "52fe4274c3a36847f801fe81", "cast_id": 36, "profile_path": "/lstGMKS2WLNbgNZXd9bKTn0tbTz.jpg", "order": 28}, {"name": "Irving Bacon", "character": "Corporal", "id": 30530, "credit_id": "52fe4274c3a36847f801fe85", "cast_id": 37, "profile_path": "/oI6h1L5HvvXLacBIlKoHcXrHbhI.jpg", "order": 29}, {"name": "Robert Elliott", "character": "Yankee Major", "id": 124855, "credit_id": "52fe4274c3a36847f801fe89", "cast_id": 38, "profile_path": null, "order": 30}, {"name": "William Bakewell", "character": "Mounted Officer", "id": 2015, "credit_id": "52fe4274c3a36847f801fe8d", "cast_id": 39, "profile_path": "/bHFnAPWrWxFycVGFPufC1zyeeA0.jpg", "order": 31}, {"name": "Mary Anderson", "character": "Maybelle Merriwether", "id": 93896, "credit_id": "52fe4274c3a36847f801fe91", "cast_id": 40, "profile_path": "/gQYvWEt5LTvILfEg7Q9URFD1rf5.jpg", "order": 32}, {"name": "Ona Munson", "character": "Belle Watling", "id": 105797, "credit_id": "52fe4274c3a36847f801fe95", "cast_id": 41, "profile_path": "/n8OMRdRdDN2Gslu54ggCfRJ99zM.jpg", "order": 32}, {"name": "Jane Darwell", "character": "Mrs. Merriwether", "id": 8515, "credit_id": "52fe4274c3a36847f801fe99", "cast_id": 42, "profile_path": "/geGrMcqxcFtMKKJO36OFpVwZFFW.jpg", "order": 32}, {"name": "Isabel Jewell", "character": "Emmy Slattery", "id": 33277, "credit_id": "52fe4274c3a36847f801fea1", "cast_id": 45, "profile_path": "/oBUProXvlf58Y3Cp9qEFWFW6rib.jpg", "order": 33}, {"name": "Paul Hurst", "character": "Yankee Deserter", "id": 14664, "credit_id": "52fe4274c3a36847f801fea5", "cast_id": 46, "profile_path": "/3TzzVWNYUSQIw24A9EB5YBwjMcv.jpg", "order": 34}, {"name": "Eddie 'Rochester' Anderson", "character": "Uncle Peter - Her Coachman (as Eddie Anderson)", "id": 98571, "credit_id": "52fe4274c3a36847f801fea9", "cast_id": 47, "profile_path": "/zHuKGgQyNUKSX5elFdef0lG9QoS.jpg", "order": 35}, {"name": "Laura Hope Crews", "character": "Aunt 'Pittypat' Hamilton", "id": 223051, "credit_id": "52fe4274c3a36847f801fead", "cast_id": 48, "profile_path": "/oQQOd1KY5f6icBOXinr8mbuLtnA.jpg", "order": 36}, {"name": "Carroll Nye", "character": "Frank Kennedy - Guest", "id": 122148, "credit_id": "52fe4274c3a36847f801feb1", "cast_id": 49, "profile_path": "/mO3vXG5gUwsg4rIW4au70O2eoBa.jpg", "order": 37}, {"name": "Rand Brooks", "character": "Charles Hamilton - Her Brother", "id": 91217, "credit_id": "52fe4274c3a36847f801feb5", "cast_id": 50, "profile_path": "/vWqNcOULc8juvA5zjsIARIbpSzH.jpg", "order": 38}, {"name": "Alicia Rhett", "character": "India - His Daughter", "id": 1073154, "credit_id": "52fe4274c3a36847f801feb9", "cast_id": 51, "profile_path": "/wAu2dv49HNucRXkVNWffd4k48CY.jpg", "order": 39}, {"name": "Howard C. Hickman", "character": "John Wilkes (as Howard Hickman)", "id": 33025, "credit_id": "52fe4274c3a36847f801febd", "cast_id": 52, "profile_path": "/oobORM7adsUFRv25jelF1So8qFY.jpg", "order": 40}, {"name": "Everett Brown", "character": "Big Sam - Field Foreman", "id": 555903, "credit_id": "52fe4274c3a36847f801fec1", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Victor Jory", "character": "Jonas Wilkerson - Field Overseer", "id": 15666, "credit_id": "52fe4274c3a36847f801fec5", "cast_id": 54, "profile_path": "/4phylVED6xN2gFYeUQnywahstGG.jpg", "order": 42}], "directors": [{"name": "Victor Fleming", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fde3", "profile_path": "/Lq3Hb5VsmTSIEaYvgfbpK8r8Tk.jpg", "id": 9049}, {"name": "George Cukor", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fecb", "profile_path": "/t2RWv3nzCoqKWYiCGCjwiIHW4Sj.jpg", "id": 14674}, {"name": "Sam Wood", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801fed1", "profile_path": "/xtotCnG8pv42k0EudM1WZ7PQMsH.jpg", "id": 10790}], "vote_average": 6.9, "runtime": 238}, "771": {"poster_path": "/8IWPBT1rkAaI8Kpk5V3WfQRklJ7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 476684675, "overview": "Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house, the plucky kid stands ready to defend his territory. By planting booby traps galore, adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before.", "video": false, "id": 771, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Home Alone", "tagline": "A Family Comedy Without the Family.", "vote_count": 718, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ghu5A45jtbizDTwHb1iJWVTdmnF.jpg", "poster_path": "/zYPsleQJo1n1rBPlecJBRb3iwSO.jpg", "id": 9888, "name": "Home Alone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099785", "adult": false, "backdrop_path": "/vUyDnfk7DHaozfl1cXFh6PzbUW4.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Hughes Entertainment", "id": 477}], "release_date": "1990-11-09", "popularity": 0.0534188313676865, "original_title": "Home Alone", "budget": 15000000, "cast": [{"name": "Macaulay Culkin", "character": "Kevin", "id": 11510, "credit_id": "52fe4274c3a36847f801ff87", "cast_id": 13, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 0}, {"name": "Joe Pesci", "character": "Harry", "id": 4517, "credit_id": "52fe4274c3a36847f801ff8b", "cast_id": 14, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 1}, {"name": "Daniel Stern", "character": "Marv", "id": 11511, "credit_id": "52fe4274c3a36847f801ff8f", "cast_id": 15, "profile_path": "/fyiJWh0zdIOBOSqcB8qaFw5U8bA.jpg", "order": 2}, {"name": "John Heard", "character": "Peter", "id": 11512, "credit_id": "52fe4274c3a36847f801ff93", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Roberts Blossom", "character": "Marley", "id": 66288, "credit_id": "52fe4274c3a36847f801ff97", "cast_id": 17, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 4}, {"name": "Catherine O'Hara", "character": "Kate", "id": 11514, "credit_id": "52fe4274c3a36847f801ff9b", "cast_id": 18, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 5}, {"name": "Angela Goethals", "character": "Linnie", "id": 11515, "credit_id": "52fe4274c3a36847f801ff9f", "cast_id": 19, "profile_path": "/lQlv68KzjOxfTI6goKe1jHQQeV4.jpg", "order": 6}, {"name": "Devin Ratray", "character": "Buzz", "id": 11516, "credit_id": "52fe4274c3a36847f801ffa3", "cast_id": 20, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 7}, {"name": "Gerry Bamman", "character": "Uncle Frank", "id": 11517, "credit_id": "52fe4274c3a36847f801ffa7", "cast_id": 21, "profile_path": "/ybNlqyoXcAQ5pKz6fFD7Ff7LKcz.jpg", "order": 8}, {"name": "Hillary Wolf", "character": "Megan", "id": 11518, "credit_id": "52fe4274c3a36847f801ffab", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "John Candy", "character": "Gus Polinski", "id": 7180, "credit_id": "52fe4274c3a36847f801ffaf", "cast_id": 23, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 10}, {"name": "Larry Hankin", "character": "Officer Balzak", "id": 11519, "credit_id": "52fe4274c3a36847f801ffb3", "cast_id": 24, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 11}, {"name": "Kristin Minter", "character": "Heather", "id": 11521, "credit_id": "52fe4274c3a36847f801ffb7", "cast_id": 26, "profile_path": "/aGWrWP87jXdPjYTiQ6cGmxHqBGR.jpg", "order": 12}, {"name": "Jedidiah Cohen", "character": "Rod", "id": 11522, "credit_id": "52fe4274c3a36847f801ffbb", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Ken Hudson Campbell", "character": "Santa", "id": 236327, "credit_id": "52fe4274c3a36847f801ffbf", "cast_id": 28, "profile_path": "/lN9e975UkER6sRu9tKpeL2XyU5D.jpg", "order": 14}, {"name": "Kieran Culkin", "character": "Fuller McCallister", "id": 18793, "credit_id": "52fe4274c3a36847f801ffc3", "cast_id": 29, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 15}, {"name": "Michael C. Maronna", "character": "Jeff McCallister", "id": 945734, "credit_id": "52fe4274c3a36847f801ffc7", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Billie Bird", "character": "Woman in Airport", "id": 140778, "credit_id": "52fe4274c3a36847f801ffcb", "cast_id": 31, "profile_path": "/jJzRnD39UAvbU1ihaXMRcPZN9Xq.jpg", "order": 17}, {"name": "Bill Erwin", "character": "Man in Airport", "id": 26044, "credit_id": "52fe4274c3a36847f801ffcf", "cast_id": 32, "profile_path": "/b0O9XSBfgWh2CBhV2gHKvPGpOS.jpg", "order": 18}, {"name": "Ralph Foody", "character": "Johnny - Gangster #1", "id": 1244120, "credit_id": "549b61d4925141311f0025e3", "cast_id": 33, "profile_path": null, "order": 19}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f801ff41", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.6, "runtime": 103}, "772": {"poster_path": "/96iX6o0LhOKiNmSpRpufXC7WsEw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 358991681, "overview": "Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card\u2014despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas eve.", "video": false, "id": 772, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10751, "name": "Family"}], "title": "Home Alone 2: Lost In New York", "tagline": "He's up past his bedtime in the city that never sleeps.", "vote_count": 770, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ghu5A45jtbizDTwHb1iJWVTdmnF.jpg", "poster_path": "/zYPsleQJo1n1rBPlecJBRb3iwSO.jpg", "id": 9888, "name": "Home Alone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0104431", "adult": false, "backdrop_path": "/dS1EMlZK8Axj5wrgRpWGLOb85KN.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-11-19", "popularity": 1.19716978456316, "original_title": "Home Alone 2: Lost In New York", "budget": 18000000, "cast": [{"name": "Macaulay Culkin", "character": "Kevin", "id": 11510, "credit_id": "52fe4274c3a36847f8020049", "cast_id": 12, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 0}, {"name": "Joe Pesci", "character": "Harry Lime", "id": 4517, "credit_id": "52fe4274c3a36847f802004d", "cast_id": 13, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Kate McCallister", "id": 11514, "credit_id": "52fe4274c3a36847f8020051", "cast_id": 14, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "Daniel Stern", "character": "Marv Merchants", "id": 11511, "credit_id": "52fe4274c3a36847f8020055", "cast_id": 15, "profile_path": "/fyiJWh0zdIOBOSqcB8qaFw5U8bA.jpg", "order": 3}, {"name": "John Heard", "character": "Peter McCallister", "id": 11512, "credit_id": "52fe4274c3a36847f8020059", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 4}, {"name": "Devin Ratray", "character": "Buzz McCallister", "id": 11516, "credit_id": "52fe4274c3a36847f802005d", "cast_id": 17, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 5}, {"name": "Hillary Wolf", "character": "Megan McCallister", "id": 11518, "credit_id": "52fe4274c3a36847f8020061", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Gerry Bamman", "character": "Uncle Frank McCallister", "id": 11517, "credit_id": "52fe4274c3a36847f8020065", "cast_id": 19, "profile_path": "/ybNlqyoXcAQ5pKz6fFD7Ff7LKcz.jpg", "order": 7}, {"name": "Jedidiah Cohen", "character": "Rod McCallister", "id": 11522, "credit_id": "52fe4274c3a36847f8020069", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Kieran Culkin", "character": "Fuller McCallister", "id": 18793, "credit_id": "52fe4274c3a36847f802006d", "cast_id": 21, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 9}, {"name": "Tim Curry", "character": "Mr. Hector, Hotel Concierge", "id": 13472, "credit_id": "52fe4274c3a36847f8020071", "cast_id": 22, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 10}, {"name": "Eddie Bracken", "character": "E.F. Duncan", "id": 115457, "credit_id": "52fe4274c3a36847f8020075", "cast_id": 23, "profile_path": "/rBCEY264VgZXaWTB8IY64hgI1U0.jpg", "order": 11}, {"name": "Rob Schneider", "character": "Bellman", "id": 60949, "credit_id": "52fe4274c3a36847f8020079", "cast_id": 24, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 12}, {"name": "Michael C. Maronna", "character": "Jeff McCallister", "id": 945734, "credit_id": "52fe4274c3a36847f802007d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Ralph Foody", "character": "Gangster", "id": 1244120, "credit_id": "549b61fac3a3682f1b0026e5", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f8020009", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 5.9, "runtime": 120}, "82693": {"poster_path": "/ilrZAV2klTB0FLxLb01bOp5pzD9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205738714, "overview": "After spending eight months in a mental institution, a former teacher moves back in with his parents and tries to reconcile with his ex-wife.", "video": false, "id": 82693, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Silver Linings Playbook", "tagline": "Watch For The Signs", "vote_count": 2051, "homepage": "http://silverliningsplaybookmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1045658", "adult": false, "backdrop_path": "/6YEWKSFIWFTLnInzXYiSaS7pVOP.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}], "release_date": "2012-12-25", "popularity": 1.67013851619464, "original_title": "Silver Linings Playbook", "budget": 21000000, "cast": [{"name": "Bradley Cooper", "character": "Pat", "id": 51329, "credit_id": "52fe486b9251416c9108be65", "cast_id": 31, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Jennifer Lawrence", "character": "Tiffany", "id": 72129, "credit_id": "52fe486b9251416c9108bde3", "cast_id": 4, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Pat Sr.", "id": 380, "credit_id": "52fe486b9251416c9108bde7", "cast_id": 5, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Jacki Weaver", "character": "Dolores", "id": 67837, "credit_id": "52fe486b9251416c9108be03", "cast_id": 14, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 3}, {"name": "Chris Tucker", "character": "Danny", "id": 66, "credit_id": "52fe486b9251416c9108bdef", "cast_id": 9, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 4}, {"name": "Anupam Kher", "character": "Dr. Cliff Patel", "id": 6217, "credit_id": "52fe486b9251416c9108bdff", "cast_id": 13, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 5}, {"name": "John Ortiz", "character": "Ronnie", "id": 40543, "credit_id": "52fe486b9251416c9108bdfb", "cast_id": 12, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 6}, {"name": "Shea Whigham", "character": "Jake", "id": 74242, "credit_id": "52fe486b9251416c9108bdf3", "cast_id": 10, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 7}, {"name": "Julia Stiles", "character": "Veronica", "id": 12041, "credit_id": "52fe486b9251416c9108bdeb", "cast_id": 7, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 8}, {"name": "Dash Mihok", "character": "Officer Keogh", "id": 6066, "credit_id": "52fe486b9251416c9108bdf7", "cast_id": 11, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 9}, {"name": "Bonnie Aarons", "character": "Ricky D'Angelo's Mother", "id": 87287, "credit_id": "52fe486b9251416c9108be07", "cast_id": 15, "profile_path": "/9EbAXaOHxyOsIbW5JpP9ezO9t4i.jpg", "order": 10}, {"name": "Brea Bee", "character": "Nikki", "id": 108920, "credit_id": "52fe486b9251416c9108be69", "cast_id": 32, "profile_path": "/w3gmOKyXvT9Frg8PuLP5ZU0T9Uf.jpg", "order": 11}, {"name": "Paul Herman", "character": "Randy", "id": 58535, "credit_id": "52fe486b9251416c9108be6d", "cast_id": 33, "profile_path": "/vaK8wxkMeKJdZEdGUufyV0Ma24M.jpg", "order": 12}, {"name": "Matthew Russell", "character": "Ricky D'Angelo", "id": 239111, "credit_id": "52fe486b9251416c9108be71", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Cheryl Williams", "character": "Tiffany's Mother", "id": 1271780, "credit_id": "52fe486b9251416c9108be75", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Patrick McDade", "character": "Tiffany's Father", "id": 1128450, "credit_id": "52fe486b9251416c9108be79", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Phillip Chorba", "character": "Jordie", "id": 1271781, "credit_id": "52fe486b9251416c9108be7d", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Mary Regency Boies", "character": "Regina", "id": 1271782, "credit_id": "52fe486b9251416c9108be81", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Anthony Lawton", "character": "Dr.Timbers", "id": 1271783, "credit_id": "52fe486b9251416c9108be85", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Patsy Meck", "character": "Nancy", "id": 1271784, "credit_id": "52fe486b9251416c9108be89", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Jeff Reim", "character": "Jeffrey", "id": 1271785, "credit_id": "52fe486b9251416c9108be8d", "cast_id": 41, "profile_path": null, "order": 20}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe486b9251416c9108bdd3", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 6.8, "runtime": 122}, "8966": {"poster_path": "/nlvPMLCdum7bkHKmDSMnNLGztmW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 392616625, "overview": "When Bella Swan moves to a small town in the Pacific Northwest to live with her father, she starts school and meets the reclusive Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't help but fall in love with him, a fatal move that endangers her own life when a coven of bloodsuckers try to challenge the Cullen clan.", "video": false, "id": 8966, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Twilight", "tagline": "When you can live forever, what do you live for?", "vote_count": 1080, "homepage": "http://www.twilightthemovie.com", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1099212", "adult": false, "backdrop_path": "/nEdBHjvRkKwEPD1Ps5A3rRiiLVN.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Maverick Films", "id": 4000}], "release_date": "2008-11-20", "popularity": 1.25677557355888, "original_title": "Twilight", "budget": 37000000, "cast": [{"name": "Kristen Stewart", "character": "Isabella 'Bella' Swan", "id": 37917, "credit_id": "52fe44ccc3a36847f80aa8f3", "cast_id": 4, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe44ccc3a36847f80aa8f7", "cast_id": 5, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe44ccc3a36847f80aa8ff", "cast_id": 7, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 2}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe44ccc3a36847f80aa8fb", "cast_id": 6, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 3}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe44ccc3a36847f80aa903", "cast_id": 8, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 4}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe44ccc3a36847f80aa907", "cast_id": 9, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 5}, {"name": "Jackson Rathbone", "character": "Jasper", "id": 84215, "credit_id": "52fe44ccc3a36847f80aa90b", "cast_id": 10, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 6}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe44ccc3a36847f80aa90f", "cast_id": 11, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 7}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe44ccc3a36847f80aa913", "cast_id": 12, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 8}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe44ccc3a36847f80aa917", "cast_id": 13, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 9}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe44ccc3a36847f80aa91b", "cast_id": 14, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 10}, {"name": "Sarah Clarke", "character": "Ren\u00e9e", "id": 25836, "credit_id": "52fe44ccc3a36847f80aa91f", "cast_id": 15, "profile_path": "/50umNQSJOGuz09Sb6R5BIRP5IoD.jpg", "order": 11}, {"name": "Gil Birmingham", "character": "Billy Black", "id": 84225, "credit_id": "52fe44ccc3a36847f80aa923", "cast_id": 16, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 12}, {"name": "Rachelle Lefevre", "character": "Victoria", "id": 58168, "credit_id": "52fe44ccc3a36847f80aa927", "cast_id": 17, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 13}, {"name": "Cam Gigandet", "character": "James", "id": 55086, "credit_id": "52fe44ccc3a36847f80aa92b", "cast_id": 18, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 14}, {"name": "Edi Gathegi", "character": "Laurent", "id": 39391, "credit_id": "52fe44ccc3a36847f80aa92f", "cast_id": 19, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 15}, {"name": "Michael Welch", "character": "Mike Newton", "id": 56676, "credit_id": "52fe44ccc3a36847f80aa933", "cast_id": 20, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 16}, {"name": "Christian Serratos", "character": "Angela Weber", "id": 84224, "credit_id": "52fe44ccc3a36847f80aa937", "cast_id": 21, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 17}, {"name": "Justin Chon", "character": "Eric", "id": 65225, "credit_id": "52fe44ccc3a36847f80aa93b", "cast_id": 22, "profile_path": "/4hTyiQgqp6MZgFeW7DosqX4ifUK.jpg", "order": 18}], "directors": [{"name": "Catherine Hardwicke", "department": "Directing", "job": "Director", "credit_id": "52fe44ccc3a36847f80aa8e3", "profile_path": "/yUOoXg1couvQvZftVvONhcQIEhd.jpg", "id": 19850}], "vote_average": 5.6, "runtime": 122}, "213121": {"poster_path": "/cT8krQxRoioNk2KabSYuIf2yuaC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "What starts out as a fun road trip for the Toy Story gang takes an unexpected turn for the worse when the trip detours to a roadside motel. After one of the toys goes missing, the others find themselves caught up in a mysterious sequence of events that must be solved before they all suffer the same fate in this Toy Story of Terror.", "video": false, "id": 213121, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story of Terror!", "tagline": "One toy gets left behind!", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2446040", "adult": false, "backdrop_path": "/dNBMMLHOURonmtS0DHuEhrAXlPe.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2013-10-15", "popularity": 0.0306375352402628, "original_title": "Toy Story of Terror!", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Woody", "id": 31, "credit_id": "52fe4dbec3a368484e1fac11", "cast_id": 6, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear", "id": 12898, "credit_id": "52fe4dbec3a368484e1fac15", "cast_id": 7, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Kristen Schaal", "character": "Trixie", "id": 109869, "credit_id": "52fe4dbec3a368484e1fac19", "cast_id": 9, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Combat Carl / Combat Carl Jr.", "id": 1101, "credit_id": "52fe4dbec3a368484e1fac1d", "cast_id": 12, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Wallace Shawn", "character": "Rex", "id": 12900, "credit_id": "52fe4dbec3a368484e1fac21", "cast_id": 13, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 4}, {"name": "Timothy Dalton", "character": "Mr. Pricklepants", "id": 10669, "credit_id": "52fe4dbec3a368484e1fac25", "cast_id": 14, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 5}, {"name": "Don Rickles", "character": "Mr. Potato Head", "id": 7167, "credit_id": "52fe4dbec3a368484e1fac29", "cast_id": 15, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 6}, {"name": "Emily Hahn", "character": "Bonnie", "id": 1096415, "credit_id": "52fe4dbec3a368484e1fac2d", "cast_id": 17, "profile_path": "/cjCwq4bzHuYMba1kDfEkKCeEOeb.jpg", "order": 7}], "directors": [{"name": "Angus MacLane", "department": "Directing", "job": "Director", "credit_id": "52fe4dbec3a368484e1fabf5", "profile_path": "/7U1mEvzHGNJiC07EOhKIKSl3Qiy.jpg", "id": 7929}], "vote_average": 7.2, "runtime": 22}, "82696": {"poster_path": "/A2pbFehiuTRTjneNr76dPL7cCa9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114281051, "overview": "After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.", "video": false, "id": 82696, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Hope Springs", "tagline": "", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1535438", "adult": false, "backdrop_path": "/1MxJ0xKc53Q3fedX7qFI9YfW8Sb.jpg", "production_companies": [{"name": "Escape Artists", "id": 1423}, {"name": "Columbia Pictures", "id": 5}, {"name": "Mandate Pictures", "id": 771}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Management 360", "id": 4220}], "release_date": "2012-08-07", "popularity": 0.549865242010405, "original_title": "Hope Springs", "budget": 30000000, "cast": [{"name": "Meryl Streep", "character": "Kay", "id": 5064, "credit_id": "52fe486f9251416c9108c449", "cast_id": 13, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Steve Carell", "character": "Dr. Bernie Feld", "id": 4495, "credit_id": "52fe486f9251416c9108c44d", "cast_id": 14, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Tommy Lee Jones", "character": "Arnold Soames", "id": 2176, "credit_id": "52fe486f9251416c9108c451", "cast_id": 15, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 2}, {"name": "Jean Smart", "character": "Eileen, Kay's Friend", "id": 5376, "credit_id": "52fe486f9251416c9108c455", "cast_id": 16, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 3}, {"name": "Marin Ireland", "character": "Molly, Their Daughter", "id": 164094, "credit_id": "52fe486f9251416c9108c459", "cast_id": 17, "profile_path": "/wtoGyUBq04qGjEEB9OHFBBOggVJ.jpg", "order": 4}, {"name": "Ben Rappaport", "character": "Brad, Their Son", "id": 224183, "credit_id": "52fe486f9251416c9108c45d", "cast_id": 18, "profile_path": "/9rBUqIJ07u8FKOHvI8dn0UMDGGR.jpg", "order": 5}, {"name": "Susan Misner", "character": "Dana, Doctor Feld's Wife", "id": 17640, "credit_id": "52fe486f9251416c9108c461", "cast_id": 19, "profile_path": "/ugyXBkbrlG97RufRzII4sPM7kU1.jpg", "order": 6}, {"name": "Danny Flaherty", "character": "Danny, The Bookstore Clerk", "id": 512749, "credit_id": "52fe486f9251416c9108c465", "cast_id": 20, "profile_path": "/qrdJUO7rvc83P4ELSAUzaew3X9.jpg", "order": 7}, {"name": "Patch Darragh", "character": "Mark, Their Son-in-Law", "id": 172156, "credit_id": "52fe486f9251416c9108c469", "cast_id": 22, "profile_path": "/ozrGFV2Ffv5erGlXvWKRPCNmpu9.jpg", "order": 8}, {"name": "Anita Storr", "character": "Beach goer wedding scene", "id": 928636, "credit_id": "52fe486f9251416c9108c46d", "cast_id": 23, "profile_path": "/w4gVHx8yOPBr2elug9dJLjKHGok.jpg", "order": 9}, {"name": "Lee Cunningham", "character": "Lee, The Unhappy Wife", "id": 928637, "credit_id": "52fe486f9251416c9108c471", "cast_id": 24, "profile_path": "/iSxe0WXOO6A4W7baFmvHXPyEAJt.jpg", "order": 10}, {"name": "John Franchi", "character": "Driver", "id": 928638, "credit_id": "52fe486f9251416c9108c475", "cast_id": 25, "profile_path": "/3j3TU6CT87bnFTeVzLQNsGkyKCb.jpg", "order": 11}, {"name": "Elisabeth Shue", "character": "Karen, The Bartender", "id": 1951, "credit_id": "52fe486f9251416c9108c479", "cast_id": 27, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 12}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe486e9251416c9108c403", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 5.5, "runtime": 100}, "50647": {"poster_path": "/6dbzcnxU49xtvLrqsxqODJqRN9S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24159934, "overview": "Rattled by sudden unemployment, a Manhattan couple surveys alternative living options, ultimately deciding to experiment with living on a rural commune where free love rules.", "video": false, "id": 50647, "genres": [{"id": 35, "name": "Comedy"}], "title": "Wanderlust", "tagline": "Leave your baggage behind", "vote_count": 131, "homepage": "http://www.wanderlust-movie.com/Wanderlust/home.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1655460", "adult": false, "backdrop_path": "/4laX0hT8ULoiuguZbD0WG3udG9s.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "A Hot Dog", "id": 41962}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2012-02-24", "popularity": 0.882722604743934, "original_title": "Wanderlust", "budget": 0, "cast": [{"name": "Paul Rudd", "character": "George", "id": 22226, "credit_id": "52fe47d0c3a36847f8149a67", "cast_id": 1, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Linda", "id": 4491, "credit_id": "52fe47d0c3a36847f8149a6f", "cast_id": 3, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Justin Theroux", "character": "Seth", "id": 15009, "credit_id": "52fe47d0c3a36847f8149a77", "cast_id": 5, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 2}, {"name": "Malin Akerman", "character": "Eva", "id": 50463, "credit_id": "52fe47d0c3a36847f8149a6b", "cast_id": 2, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 3}, {"name": "Lauren Ambrose", "character": "Almond", "id": 54470, "credit_id": "52fe47d0c3a36847f8149a73", "cast_id": 4, "profile_path": "/zEdW3X6MHTDVG4jizKfVebVTmCH.jpg", "order": 4}, {"name": "Joe Lo Truglio", "character": "Wayne Davidson", "id": 21131, "credit_id": "52fe47d0c3a36847f8149a87", "cast_id": 9, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 5}, {"name": "Alan Alda", "character": "Carvin", "id": 21278, "credit_id": "52fe47d0c3a36847f8149a7f", "cast_id": 7, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 6}, {"name": "Kathryn Hahn", "character": "Karen", "id": 17696, "credit_id": "52fe47d0c3a36847f8149a7b", "cast_id": 6, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 7}, {"name": "Ken Marino", "character": "Rick Gergenblatt", "id": 77089, "credit_id": "547e6574c3a3682577000306", "cast_id": 22, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 8}, {"name": "Jordan Peele", "character": "Rodney Wilson", "id": 291263, "credit_id": "547e65829251412900000327", "cast_id": 23, "profile_path": "/2ZJgEIgG31efrRO2mUFnXxDi47E.jpg", "order": 9}, {"name": "Kerri Kenney-Silver", "character": "Kathy", "id": 63220, "credit_id": "52fe47d0c3a36847f8149a83", "cast_id": 8, "profile_path": "/jYTKAjioRFDuKlcaSitjMFYV1va.jpg", "order": 10}, {"name": "Michaela Watkins", "character": "Marisa", "id": 113224, "credit_id": "52fe47d0c3a36847f8149a8b", "cast_id": 10, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 11}, {"name": "Patricia French", "character": "Beverly", "id": 128207, "credit_id": "52fe47d0c3a36847f8149a8f", "cast_id": 11, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 12}], "directors": [{"name": "David Wain", "department": "Directing", "job": "Director", "credit_id": "52fe47d0c3a36847f8149a95", "profile_path": "/253GyLoZKOhwXPCEgn4w8RMegzW.jpg", "id": 22214}], "vote_average": 5.3, "runtime": 98}, "82700": {"poster_path": "/pUCK62aHDUJYcCXUvdMKkr3dJmx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 243843127, "overview": "One thousand years after cataclysmic events forced humanity's escape from Earth, Nova Prime has become mankind's new home. Legendary General Cypher Raige returns from an extended tour of duty to his estranged family, ready to be a father to his 13-year-old son, Kitai. When an asteroid storm damages Cypher and Kitai's craft, they crash-land on a now unfamiliar and dangerous Earth. As his father lies dying in the cockpit, Kitai must trek across the hostile terrain to recover their rescue beacon. His whole life, Kitai has wanted nothing more than to be a soldier like his father. Today, he gets his chance.", "video": false, "id": 82700, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "After Earth", "tagline": "DANGER IS REAL, FEAR IS A CHOICE", "vote_count": 1054, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1815862", "adult": false, "backdrop_path": "/79sgOV7YZk846qwy7g5sarYN08O.jpg", "production_companies": [{"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Columbia Pictures", "id": 5}, {"name": "Overbrook Entertainment", "id": 12485}], "release_date": "2013-05-30", "popularity": 1.54658490381795, "original_title": "After Earth", "budget": 130000000, "cast": [{"name": "Jaden Smith", "character": "Kitai Raige", "id": 120724, "credit_id": "52fe486f9251416c9108c5df", "cast_id": 11, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 0}, {"name": "Will Smith", "character": "Cypher Raige", "id": 2888, "credit_id": "52fe486f9251416c9108c5db", "cast_id": 10, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Sophie Okonedo", "character": "Faia Raige", "id": 2598, "credit_id": "52fe486f9251416c9108c5e3", "cast_id": 13, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 2}, {"name": "Zo\u00eb Kravitz", "character": "Senshi Raige", "id": 37153, "credit_id": "52fe486f9251416c9108c5e7", "cast_id": 14, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 3}, {"name": "Glenn Morshower", "character": "Commander Velan", "id": 12797, "credit_id": "52fe486f9251416c9108c5f7", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 4}, {"name": "Chris Geere", "character": "Hesper Navigator", "id": 62879, "credit_id": "52fe486f9251416c9108c5fb", "cast_id": 19, "profile_path": "/hYSoo0SAwr5vfh0jHU82JdBmP6V.jpg", "order": 5}, {"name": "Diego Klattenhoff", "character": "Veteran Ranger", "id": 142193, "credit_id": "52fe486f9251416c9108c60b", "cast_id": 22, "profile_path": "/qGAmMLw289Q64Hyh7XFiDAFkmgP.jpg", "order": 6}, {"name": "David Denman", "character": "Private McQuarrie", "id": 62562, "credit_id": "52fe486f9251416c9108c60f", "cast_id": 23, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 7}, {"name": "Lincoln Lewis", "character": "Running Cadet", "id": 94798, "credit_id": "52fe486f9251416c9108c613", "cast_id": 24, "profile_path": "/lvvMmWd4Xx4FBDO6uXuLdLVGbHv.jpg", "order": 8}, {"name": "Jaden Martin", "character": "Nine Year Old Kitai", "id": 1272929, "credit_id": "52fe48709251416c9108c653", "cast_id": 35, "profile_path": "/6Zzr0M5HI2o2C1HNu32fnooTuPO.jpg", "order": 9}, {"name": "Sincere L. Bobb", "character": "Three Year Old Kitai", "id": 1272930, "credit_id": "52fe48709251416c9108c657", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Monika Jolly", "character": "Female Ranger", "id": 1172862, "credit_id": "52fe48709251416c9108c65b", "cast_id": 37, "profile_path": "/q7hYXbvCNIG84iM46pKaT21oY0Z.jpg", "order": 11}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe486f9251416c9108c5cb", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 5.1, "runtime": 100}, "189197": {"poster_path": "/x6hO6F06iurqTn9mQOqpil1ZMLL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A 10-part mini-series from the creators of \"Band of Brothers\" telling the intertwined stories of three Marines during America's battle with the Japanese in the Pacific during World War II.", "video": false, "id": 189197, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Pacific", "tagline": "Hell was an ocean away", "vote_count": 70, "homepage": "http://www.hbo.com/the-pacific/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0374463", "adult": false, "backdrop_path": "/32GowkMyVzern686fLpr3QErWLS.jpg", "production_companies": [{"name": "HBO", "id": 6068}, {"name": "Playtone", "id": 4171}, {"name": "DreamWorks Television", "id": 15258}], "release_date": "2010-05-16", "popularity": 0.271705140127424, "original_title": "The Pacific", "budget": 200, "cast": [{"name": "James Badge Dale", "character": "PFC Robert Leckie (10 episodes, 2010)", "id": 18473, "credit_id": "52fe4d529251416c75137549", "cast_id": 1, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 0}, {"name": "Joseph Mazzello", "character": "PFC Eugene Sledge (10 episodes, 2010)", "id": 4787, "credit_id": "52fe4d529251416c7513754d", "cast_id": 2, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 1}, {"name": "Jon Seda", "character": "Sgt. John Basilone (10 episodes, 2010)", "id": 288, "credit_id": "52fe4d529251416c75137551", "cast_id": 3, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 2}, {"name": "Ashton Holmes", "character": "PFC Sidney Phillips / ... (7 episodes, 2010)", "id": 225, "credit_id": "52fe4d529251416c75137555", "cast_id": 4, "profile_path": "/glpPD22Zk2b7bGSOAFoy9ucPDmj.jpg", "order": 3}, {"name": "William Sadler", "character": "Lt. Col. Lewis \"Chesty\" Puller", "id": 6573, "credit_id": "52fe4d529251416c751375bf", "cast_id": 23, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 4}, {"name": "Jon Bernthal", "character": "Sgt. Manuel \"Manny\" Rodriguez", "id": 19498, "credit_id": "52fe4d529251416c751375c3", "cast_id": 24, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 5}, {"name": "Jacob Pitts", "character": "PFC Bill \"Hoosier\" Smith", "id": 54414, "credit_id": "52fe4d529251416c751375c7", "cast_id": 25, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 6}, {"name": "Rami Malek", "character": "Cpl. Merriell \"Snafu\" Shelton", "id": 17838, "credit_id": "52fe4d529251416c751375cb", "cast_id": 26, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 7}, {"name": "Brendan Fletcher", "character": "PFC Bill Leyden", "id": 32205, "credit_id": "52fe4d529251416c751375cf", "cast_id": 27, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 8}, {"name": "Caroline Dhavernas", "character": "Vera Keller", "id": 31383, "credit_id": "52fe4d529251416c751375d3", "cast_id": 28, "profile_path": "/nLj1IbeBb3aYPcfJKMuE0JHzhcy.jpg", "order": 9}, {"name": "Annie Parisse", "character": "Sgt. Lena Mae Riggi Basilone", "id": 24291, "credit_id": "52fe4d529251416c751375d7", "cast_id": 29, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 10}, {"name": "Anna Torv", "character": "Virginia Grey", "id": 30084, "credit_id": "52fe4d529251416c751375db", "cast_id": 30, "profile_path": "/l7jHZN4WGPkYQF2iIt0q5APpj59.jpg", "order": 11}, {"name": "Claire van der Boom", "character": "Stella", "id": 114843, "credit_id": "52fe4d529251416c751375df", "cast_id": 31, "profile_path": "/eFzAtHtXI8tfqucv5QkwH0W14bQ.jpg", "order": 12}, {"name": "Isabel Lucas", "character": "Gwen", "id": 103554, "credit_id": "52fe4d529251416c751375e3", "cast_id": 32, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 13}, {"name": "Matt Craven", "character": "Dr. Grant", "id": 13525, "credit_id": "52fe4d529251416c751375e7", "cast_id": 33, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 14}], "directors": [{"name": "Jeremy Podeswa", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c7513755b", "profile_path": "/fdzF8YFdXRh4iwwlO0kpsFn6QIY.jpg", "id": 88391}, {"name": "Tim Van Patten", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137561", "profile_path": null, "id": 44797}, {"name": "David Nutter", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137567", "profile_path": null, "id": 33316}, {"name": "Graham Yost", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c7513756d", "profile_path": "/l0tZHqHwvLZkd5uipumPQ0I2ucC.jpg", "id": 21206}, {"name": "Carl Franklin", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137573", "profile_path": "/qNFOzZb4kFqkg6wiSfHtVvRzLLa.jpg", "id": 21712}, {"name": "Tony To", "department": "Directing", "job": "Director", "credit_id": "52fe4d529251416c75137579", "profile_path": null, "id": 166291}], "vote_average": 7.7, "runtime": 540}, "782": {"poster_path": "/gZmIxR0qfaTj0sIvfAWqgqOOeVa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12532777, "overview": "Science fiction drama about a future society in the era of indefinite eugenics where humans are set on a life course depending on their DNA. The young Vincent Freeman is born with a condition that would prevent him from space travel, yet he is determined to infiltrate the GATTACA space program.", "video": false, "id": 782, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Gattaca", "tagline": "There is no gene for the human spirit.", "vote_count": 558, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "eo", "name": ""}], "imdb_id": "tt0119177", "adult": false, "backdrop_path": "/yBYmjAKALazmQ1vN6OokOv7s5nh.jpg", "production_companies": [{"name": "Jersey Films", "id": 216}, {"name": "Columbia Pictures", "id": 5}], "release_date": "1997-10-23", "popularity": 1.1121348051438, "original_title": "Gattaca", "budget": 36000000, "cast": [{"name": "Ethan Hawke", "character": "Vincent Freeman", "id": 569, "credit_id": "52fe4275c3a36847f8020579", "cast_id": 7, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Jude Law", "character": "Jerome Eugene Morrow", "id": 9642, "credit_id": "52fe4275c3a36847f8020581", "cast_id": 9, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Gore Vidal", "character": "Director Josef", "id": 11626, "credit_id": "52fe4275c3a36847f8020585", "cast_id": 10, "profile_path": "/A7BWeghsZ6SEvaBtaZaomR4UfW.jpg", "order": 2}, {"name": "Uma Thurman", "character": "Irene Cassini", "id": 139, "credit_id": "52fe4275c3a36847f802057d", "cast_id": 8, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Detective Hugo", "id": 1903, "credit_id": "52fe4275c3a36847f8020589", "cast_id": 11, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Xander Berkeley", "character": "Dr. Lamar", "id": 3982, "credit_id": "52fe4275c3a36847f802058d", "cast_id": 12, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 5}, {"name": "Jayne Brook", "character": "Marie Freeman", "id": 11627, "credit_id": "52fe4275c3a36847f8020591", "cast_id": 13, "profile_path": "/adrS4ZwaRgXpnJpV2U7uiFU9Cmd.jpg", "order": 6}, {"name": "William Lee Scott", "character": "Young Anton Freeman", "id": 10128, "credit_id": "52fe4275c3a36847f8020595", "cast_id": 14, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 7}, {"name": "Loren Dean", "character": "Adult Anton Freeman", "id": 11628, "credit_id": "52fe4275c3a36847f8020599", "cast_id": 15, "profile_path": "/wmRzRes0gXtlhcmkYDeLjxD1Xjq.jpg", "order": 8}, {"name": "Ernest Borgnine", "character": "Caesar", "id": 7502, "credit_id": "52fe4275c3a36847f802059d", "cast_id": 16, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 9}, {"name": "Tony Shalhoub", "character": "\"German\"", "id": 4252, "credit_id": "52fe4275c3a36847f80205a1", "cast_id": 17, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 10}, {"name": "Una Damon", "character": "Head Nurse", "id": 154644, "credit_id": "52fe4275c3a36847f80205a5", "cast_id": 18, "profile_path": "/d3dcUIwjXY0mH6QplM98L8fswzA.jpg", "order": 11}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe4275c3a36847f8020557", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 7.2, "runtime": 106}, "783": {"poster_path": "/2z9A4FSu1YySrhhcuqkdMIXpgyN.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IN", "name": "India"}], "revenue": 77737889, "overview": "In 1893, Gandhi is thrown off a South African train for being an Indian and traveling in a first class compartment. Gandhi realizes that the laws are biased against Indians and decides to start a non-violent protest campaign for the rights of all Indians in South Africa. After numerous arrests and the unwanted attention of the world, the government finally relents by recognizing rights for Indians, though not for the native blacks of South Africa. After this victory, Gandhi is invited back to India, where he is now considered something of a national hero. He is urged to take up the fight for India's independence from the British Empire. Gandhi agrees, and mounts a non-violent non-cooperation campaign of unprecedented scale, coordinating millions of Indians nationwide. There are some setbacks, such as violence against the protesters and Gandhi's occasional imprisonment. Nevertheless...", "video": false, "id": 783, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Gandhi", "tagline": "His Triumph Changed The World Forever.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083987", "adult": false, "backdrop_path": "/yN4mQzPthU1l3PQWxYhzWKargL5.jpg", "production_companies": [{"name": "International Film Investors", "id": 502}, {"name": "National Film Development Corporation of India", "id": 503}, {"name": "Goldcrest Films International", "id": 500}, {"name": "Indo-British", "id": 501}, {"name": "Carolina Bank", "id": 504}], "release_date": "1982-11-30", "popularity": 0.409021136796749, "original_title": "Gandhi", "budget": 22000000, "cast": [{"name": "Ben Kingsley", "character": "Mahatma Gandhi", "id": 2282, "credit_id": "52fe4275c3a36847f8020621", "cast_id": 7, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 0}, {"name": "Rohini Hattangadi", "character": "Kasturba Gandhi", "id": 11849, "credit_id": "52fe4275c3a36847f8020625", "cast_id": 8, "profile_path": "/w1EqXVtxige0wmMa8kk2eK9C9NT.jpg", "order": 1}, {"name": "Candice Bergen", "character": "Margaret Bourke-White", "id": 11850, "credit_id": "52fe4275c3a36847f8020629", "cast_id": 9, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 2}, {"name": "Roshan Seth", "character": "Pandit Nehru", "id": 693, "credit_id": "52fe4275c3a36847f802062d", "cast_id": 10, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 3}, {"name": "Om Puri", "character": "Nahari", "id": 11851, "credit_id": "52fe4275c3a36847f8020631", "cast_id": 11, "profile_path": "/omm9W5Ae1uwccnLPeVB5PWqh0ix.jpg", "order": 4}, {"name": "Saeed Jaffrey", "character": "Sardar Vallabhbhai Patel", "id": 11852, "credit_id": "52fe4275c3a36847f8020635", "cast_id": 12, "profile_path": "/nDSQCtZjVNqeOWG1QooKq2NkElb.jpg", "order": 5}, {"name": "Alyque Padamsee", "character": "Mohammad Ali Jinnah", "id": 11853, "credit_id": "52fe4275c3a36847f8020639", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Martin Sheen", "character": "Vince Walker", "id": 8349, "credit_id": "52fe4275c3a36847f802063d", "cast_id": 14, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 7}, {"name": "Amrish Puri", "character": "Khan", "id": 691, "credit_id": "52fe4275c3a36847f8020641", "cast_id": 15, "profile_path": "/9WsIjfAyhYgkT4Nvbffn98NLvio.jpg", "order": 8}, {"name": "Ian Charleson", "character": "Reverend Charlie Andrews", "id": 11854, "credit_id": "52fe4275c3a36847f8020645", "cast_id": 16, "profile_path": "/rQXBpZDKYUxaCxVN6rMYzW5m2cI.jpg", "order": 9}, {"name": "Edward Fox", "character": "General Dyer", "id": 9126, "credit_id": "52fe4275c3a36847f8020649", "cast_id": 17, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 10}, {"name": "Geraldine James", "character": "Mirabehn", "id": 11855, "credit_id": "52fe4275c3a36847f802064d", "cast_id": 18, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 11}, {"name": "Daniel Day-Lewis", "character": "Colin", "id": 11856, "credit_id": "52fe4275c3a36847f8020651", "cast_id": 19, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 12}, {"name": "John Gielgud", "character": "Lord Irwin", "id": 11857, "credit_id": "52fe4275c3a36847f8020655", "cast_id": 20, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 13}, {"name": "Trevor Howard", "character": "Judge Broomfield", "id": 12726, "credit_id": "52fe4275c3a36847f8020659", "cast_id": 21, "profile_path": "/drj1FPryhAimWCiufEnMLzUxpBQ.jpg", "order": 14}, {"name": "John Mills", "character": "Lord Chelmsford", "id": 11859, "credit_id": "52fe4276c3a36847f802065d", "cast_id": 22, "profile_path": "/5MiJRQj6irdxqCtAhX00YWqmGjZ.jpg", "order": 15}, {"name": "Athol Fugard", "character": "General Jan Christiaan Smuts", "id": 11860, "credit_id": "52fe4276c3a36847f8020661", "cast_id": 23, "profile_path": "/5Ig083fp2F4QG3BXsAaPwLle0QY.jpg", "order": 16}, {"name": "Dalip Tahil", "character": "Zia", "id": 11861, "credit_id": "52fe4276c3a36847f8020665", "cast_id": 24, "profile_path": "/gEJ9KxcMBnrrRpl9NHJ0eIktHlu.jpg", "order": 17}, {"name": "G\u00fcnther Maria Halmer", "character": "Dr. Herman Kallenbach", "id": 2344, "credit_id": "52fe4276c3a36847f8020669", "cast_id": 25, "profile_path": "/skOeHeqcRKfMXoxgf96JBhcjlz1.jpg", "order": 18}, {"name": "Shreeram Lagoo", "character": "Gopal Krishna Gokhale", "id": 110723, "credit_id": "52fe4276c3a36847f8020697", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Terrence Hardiman", "character": "Ramsay MacDonald", "id": 139444, "credit_id": "52fe4276c3a36847f802069b", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "David Grant", "character": "Daniels", "id": 1037720, "credit_id": "52fe4276c3a36847f802069f", "cast_id": 35, "profile_path": "/eEb0jqvElciRyfjs4rGSgD32efX.jpg", "order": 21}], "directors": [{"name": "Richard Attenborough", "department": "Directing", "job": "Director", "credit_id": "52fe4275c3a36847f80205ff", "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "id": 4786}], "vote_average": 6.9, "runtime": 191}, "8976": {"poster_path": "/anrhVr6lZqesL1HDgmX06Oo86R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42886719, "overview": "On a flight from Los Angeles to New York, Oliver and Emily make a connection, only to decide that they are poorly suited to be together. Over the next seven years, however, they are reunited time and time again, they go from being acquaintances to close friends to ... lovers?", "video": false, "id": 8976, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Lot Like Love", "tagline": "There's nothing better than a great romance... to ruin a perfectly good friendship.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0391304", "adult": false, "backdrop_path": "/hTxT3nuM1yOOC6DZM1voRgVwiDP.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Mile High Productions", "id": 2976}, {"name": "Kevin Messick Productions", "id": 2977}], "release_date": "2005-04-22", "popularity": 0.750371162960336, "original_title": "A Lot Like Love", "budget": 30000000, "cast": [{"name": "Ashton Kutcher", "character": "Oliver Martin", "id": 18976, "credit_id": "52fe44cdc3a36847f80aae41", "cast_id": 8, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Amanda Peet", "character": "Emily Friehl", "id": 2956, "credit_id": "52fe44cdc3a36847f80aae45", "cast_id": 9, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 1}, {"name": "Aimee Garcia", "character": "Nicole", "id": 56457, "credit_id": "52fe44cdc3a36847f80aae37", "cast_id": 5, "profile_path": "/lkXrwXShVpGhSTxGunNwJkkO84l.jpg", "order": 2}, {"name": "Taryn Manning", "character": "Ellen Martin", "id": 343, "credit_id": "52fe44cdc3a36847f80aae61", "cast_id": 15, "profile_path": "/vgLUb0mjZqJsDCnZZ3I9VKeyo9J.jpg", "order": 3}, {"name": "Ali Larter", "character": "Gina", "id": 17303, "credit_id": "52fe44cdc3a36847f80aae65", "cast_id": 16, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Michelle", "id": 17696, "credit_id": "52fe44cdc3a36847f80aae69", "cast_id": 17, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Kal Penn", "character": "Jeeter", "id": 53493, "credit_id": "52fe44cdc3a36847f80aae6d", "cast_id": 18, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 6}, {"name": "Gabriel Mann", "character": "Peter", "id": 32458, "credit_id": "52fe44cdc3a36847f80aae71", "cast_id": 19, "profile_path": "/bv6zwRM5pKaETM3XdnLe7JFzVVI.jpg", "order": 7}, {"name": "Jeremy Sisto", "character": "Ben Miller", "id": 23958, "credit_id": "52fe44cdc3a36847f80aae75", "cast_id": 20, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 8}, {"name": "Moon Bloodgood", "character": "Bridget", "id": 56455, "credit_id": "52fe44cdc3a36847f80aae79", "cast_id": 21, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 9}, {"name": "Holmes Osborne", "character": "Stephen Martin", "id": 1578, "credit_id": "52fe44cdc3a36847f80aae7d", "cast_id": 22, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 10}, {"name": "Lee Garlington", "character": "Stewardess", "id": 23975, "credit_id": "52fe44cdc3a36847f80aae81", "cast_id": 23, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 11}, {"name": "Sarah Ann Morris", "character": "Bartender", "id": 163439, "credit_id": "52fe44cdc3a36847f80aae85", "cast_id": 24, "profile_path": "/6hz0r8eZ96O4jmQ3UrZXt53eQ1t.jpg", "order": 12}], "directors": [{"name": "Nigel Cole", "department": "Directing", "job": "Director", "credit_id": "52fe44cdc3a36847f80aae5d", "profile_path": "/2CIcwfX3zzzTYqUPUQzKdnUgQl7.jpg", "id": 24248}], "vote_average": 6.4, "runtime": 107}, "786": {"poster_path": "/7BSnNxf9UMn0oUOT742ZEcXLZzF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47383689, "overview": "Almost Famous is an autobiographical inspired film about a 15-year-old who is hired by Rolling Stone magazine to follow and interview a rock band during their tour. A film about growing up, first love, disappointment, and the life of a rock star.", "video": false, "id": 786, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Almost Famous", "tagline": "Experience it. Enjoy it. Just don't fall for it.", "vote_count": 210, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181875", "adult": false, "backdrop_path": "/gZwhqo1CfYKAqTRUmnyxQw8U8Ti.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Vinyl Films", "id": 485}], "release_date": "2000-09-15", "popularity": 0.686812401439949, "original_title": "Almost Famous", "budget": 60000000, "cast": [{"name": "Kate Hudson", "character": "Penny Lane", "id": 11661, "credit_id": "52fe4276c3a36847f80207db", "cast_id": 14, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Billy Crudup", "character": "Russell Hammond", "id": 8289, "credit_id": "52fe4276c3a36847f80207df", "cast_id": 15, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 1}, {"name": "Frances McDormand", "character": "Elaine Miller", "id": 3910, "credit_id": "52fe4276c3a36847f80207e3", "cast_id": 16, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 2}, {"name": "Jason Lee", "character": "Jeff Bebe", "id": 11662, "credit_id": "52fe4276c3a36847f80207e7", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 3}, {"name": "Patrick Fugit", "character": "William Miller", "id": 11663, "credit_id": "52fe4276c3a36847f80207eb", "cast_id": 18, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 4}, {"name": "Zooey Deschanel", "character": "Anita Miller", "id": 11664, "credit_id": "52fe4276c3a36847f80207ef", "cast_id": 19, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 5}, {"name": "Michael Angarano", "character": "Young William", "id": 11665, "credit_id": "52fe4276c3a36847f80207f3", "cast_id": 20, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 6}, {"name": "Anna Paquin", "character": "Polexia Aphrodisia", "id": 10690, "credit_id": "52fe4276c3a36847f802080d", "cast_id": 46, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 7}, {"name": "Fairuza Balk", "character": "Sapphire", "id": 826, "credit_id": "52fe4276c3a36847f8020811", "cast_id": 47, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 8}, {"name": "Noah Taylor", "character": "Dick Roswell", "id": 1284, "credit_id": "52fe4276c3a36847f8020815", "cast_id": 48, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 9}, {"name": "Philip Seymour Hoffman", "character": "Lester Bangs", "id": 1233, "credit_id": "52fe4276c3a36847f8020809", "cast_id": 45, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 10}, {"name": "Jimmy Fallon", "character": "Dennis Hope", "id": 11669, "credit_id": "52fe4276c3a36847f8020819", "cast_id": 49, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 11}, {"name": "Rainn Wilson", "character": "David Felton", "id": 11678, "credit_id": "52fe4276c3a36847f802081d", "cast_id": 50, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 12}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe4276c3a36847f802078f", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 7.0, "runtime": 164}, "205587": {"poster_path": "/hNnecAVTBdtNXoSdhDXIPKm0SVu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83719388, "overview": "A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.", "video": false, "id": 205587, "genres": [{"id": 18, "name": "Drama"}], "title": "The Judge", "tagline": "Defend your Honor.", "vote_count": 394, "homepage": "http://thejudgemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1872194", "adult": false, "backdrop_path": "/qzIu5zbI190k6BHbYgaQA93IZ9K.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros.", "id": 6194}, {"name": "Big Kid Pictures", "id": 8406}, {"name": "Team Downey", "id": 27467}], "release_date": "2014-10-10", "popularity": 4.12274423408544, "original_title": "The Judge", "budget": 50000000, "cast": [{"name": "Robert Downey Jr.", "character": "Henry \"Hank\" Palmer", "id": 3223, "credit_id": "52fe4d0bc3a368484e1d40e9", "cast_id": 2, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Judge Joseph \"Joe\" Palmer", "id": 3087, "credit_id": "53a377510e0a2667cd0000ec", "cast_id": 9, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Samantha \"Sam\" Powell", "id": 21657, "credit_id": "52fe4d0bc3a368484e1d40f1", "cast_id": 4, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Glen Palmer", "id": 7132, "credit_id": "52fe4d0bc3a368484e1d40f5", "cast_id": 5, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "Jeremy Strong", "character": "Dale Palmer", "id": 239271, "credit_id": "541336010e0a264f48000353", "cast_id": 12, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 4}, {"name": "Billy Bob Thornton", "character": "Dwight Dickham", "id": 879, "credit_id": "53a377610e0a2667cd0000ef", "cast_id": 10, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 5}, {"name": "Sarah Lancaster", "character": "Lisa Palmer", "id": 81217, "credit_id": "541336450e0a264f34000385", "cast_id": 13, "profile_path": "/3eVRyNROorM3wTNp6kvimi9AfYA.jpg", "order": 6}, {"name": "David Krumholtz", "character": "Mike Kattan", "id": 38582, "credit_id": "52fe4d0bc3a368484e1d40f9", "cast_id": 6, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 7}, {"name": "Emma Tremblay", "character": "Lauren Palmer", "id": 1272862, "credit_id": "52fe4d0bc3a368484e1d40fd", "cast_id": 7, "profile_path": "/p6sRtFi1cNmR2qOXWX6buzDTFIr.jpg", "order": 8}, {"name": "Ken Howard", "character": "Judge Warren", "id": 18328, "credit_id": "541336abc3a3687da5000365", "cast_id": 14, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 9}, {"name": "Leighton Meester", "character": "Carla Powell", "id": 85825, "credit_id": "52fe4d0bc3a368484e1d40ed", "cast_id": 3, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 10}, {"name": "Balthazar Getty", "character": "Deputy Hanson", "id": 9296, "credit_id": "541336e00e0a264f40000334", "cast_id": 15, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 11}, {"name": "Grace Zabriskie", "character": "Mrs. Blackwell", "id": 6465, "credit_id": "541337000e0a264f3d000399", "cast_id": 16, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 12}, {"name": "Dax Shepard", "character": "C.P. Kennedy", "id": 51298, "credit_id": "54aaf3dbc3a3680c30007b75", "cast_id": 27, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 14}, {"name": "Denis O'Hare", "character": "Doc Morris", "id": 81681, "credit_id": "54aafca8c3a368077b005357", "cast_id": 28, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 15}, {"name": "Ian Nelson", "character": "Eric Palmer", "id": 1348957, "credit_id": "54de8dd3925141194b0024f9", "cast_id": 38, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 16}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe4d0bc3a368484e1d40e5", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 7.3, "runtime": 141}, "788": {"poster_path": "/eSz8308woe6oLyDu7UkrLK5gZDi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 441286195, "overview": "Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as an English nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.", "video": false, "id": 788, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Mrs. Doubtfire", "tagline": "She makes dinner. She does windows. She reads bedtime stories. She's a blessing... in disguise.", "vote_count": 315, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107614", "adult": false, "backdrop_path": "/qNsWEoqmGPJJk9c0orgycftzRQi.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1993-11-24", "popularity": 1.12207151821033, "original_title": "Mrs. Doubtfire", "budget": 25000000, "cast": [{"name": "Robin Williams", "character": "Daniel Hillard / Mrs. Doubtfire", "id": 2157, "credit_id": "52fe4276c3a36847f80209bb", "cast_id": 20, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Sally Field", "character": "Miranda Hillard", "id": 35, "credit_id": "52fe4276c3a36847f80209bf", "cast_id": 21, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "Pierce Brosnan", "character": "Stuart Dunmeyer", "id": 517, "credit_id": "52fe4276c3a36847f80209c3", "cast_id": 22, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 2}, {"name": "Harvey Fierstein", "character": "Uncle Frank Hillard", "id": 7420, "credit_id": "52fe4276c3a36847f80209c7", "cast_id": 23, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 3}, {"name": "Polly Holliday", "character": "Gloria Chaney", "id": 11715, "credit_id": "52fe4276c3a36847f80209cb", "cast_id": 24, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 4}, {"name": "Lisa Jakub", "character": "Lydia Hillard", "id": 8987, "credit_id": "52fe4276c3a36847f80209cf", "cast_id": 25, "profile_path": "/1iw0l7zewS6L1FzQCKJTHu5Eg0e.jpg", "order": 5}, {"name": "Matthew Lawrence", "character": "Christopher Hillard", "id": 11716, "credit_id": "52fe4276c3a36847f80209d3", "cast_id": 26, "profile_path": "/5FstHTIRe51bkmga1cWGRB7vFMc.jpg", "order": 6}, {"name": "Mara Wilson", "character": "Natalie Hillard", "id": 11717, "credit_id": "52fe4276c3a36847f80209d7", "cast_id": 27, "profile_path": "/lVfLBgPMUFcRd0eSF09dDW34nKH.jpg", "order": 7}, {"name": "Robert Prosky", "character": "Jonathan Lundy", "id": 10360, "credit_id": "52fe4276c3a36847f80209db", "cast_id": 28, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 8}, {"name": "Anne Haney", "character": "Mrs. Sellner, The Social Worker", "id": 11718, "credit_id": "52fe4276c3a36847f80209df", "cast_id": 29, "profile_path": "/2kajFAcj6bYevLdh0gwUQ6inDJN.jpg", "order": 9}, {"name": "Scott Capurro", "character": "Aunt Jack Hillard", "id": 11719, "credit_id": "52fe4276c3a36847f80209e3", "cast_id": 30, "profile_path": "/gBpjitYCEs0YapiNCDB2K8GyXMC.jpg", "order": 10}, {"name": "Sydney Walker", "character": "Bus Driver", "id": 27447, "credit_id": "52fe4276c3a36847f80209e7", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Martin Mull", "character": "Justin Gregory", "id": 80742, "credit_id": "52fe4276c3a36847f80209eb", "cast_id": 32, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 12}, {"name": "Terence McGovern", "character": "A.D.R. Director Lou", "id": 162323, "credit_id": "52fe4276c3a36847f80209ef", "cast_id": 33, "profile_path": "/yO86kO0EFrBIOHJWTx6RkeH9DEE.jpg", "order": 13}, {"name": "Karen Kahn", "character": "Female Employee #1", "id": 1006368, "credit_id": "52fe4276c3a36847f80209f3", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Eva Gholson", "character": "Female Employee #2", "id": 1077864, "credit_id": "52fe4276c3a36847f80209f7", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "James Cunningham", "character": "Male Employee", "id": 167122, "credit_id": "52fe4276c3a36847f80209fb", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Ralph Peduto", "character": "Cop", "id": 197036, "credit_id": "52fe4276c3a36847f80209ff", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Scott Beach", "character": "Judge", "id": 3044, "credit_id": "52fe4276c3a36847f8020a03", "cast_id": 38, "profile_path": "/gkt4TpoRR75eTddsny3Qvofe6TY.jpg", "order": 18}, {"name": "Juliette Marshall", "character": "Miranda's Attorney", "id": 178148, "credit_id": "52fe4276c3a36847f8020a07", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Drew Letchworth", "character": "Daniel's Attorney", "id": 156192, "credit_id": "52fe4276c3a36847f8020a0b", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Jessica Myerson", "character": "Miranda's Mother", "id": 153546, "credit_id": "52fe4276c3a36847f8020a0f", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Sharon Lockwood", "character": "Alice", "id": 1077865, "credit_id": "52fe4276c3a36847f8020a13", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Jim Cullen", "character": "Thug", "id": 1077866, "credit_id": "52fe4276c3a36847f8020a17", "cast_id": 43, "profile_path": null, "order": 23}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4276c3a36847f802094b", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.8, "runtime": 125}, "792": {"poster_path": "/sYPOQI57JVNmjiLI3KeZ5KA8O9i.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138530565, "overview": "Chris Taylor, a young, naive recruit in Vietnam, faces a moral crisis when confronted with the horrors of war and the duality of man.", "video": false, "id": 792, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Platoon", "tagline": "The first casualty of war is innocence.", "vote_count": 342, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0091763", "adult": false, "backdrop_path": "/ufqPsRItWyFzdFz3MevDkxRF8pT.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}, {"name": "Hemdale Film Corporation", "id": 469}], "release_date": "1986-12-18", "popularity": 1.36075048422651, "original_title": "Platoon", "budget": 6000000, "cast": [{"name": "Tom Berenger", "character": "Sgt. Bob Barnes", "id": 13022, "credit_id": "52fe4277c3a36847f8020d47", "cast_id": 36, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 0}, {"name": "Charlie Sheen", "character": "Pvt. Chris Taylor", "id": 6952, "credit_id": "52fe4277c3a36847f8020d1b", "cast_id": 15, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Sgt. Elias Grodin", "id": 5293, "credit_id": "52fe4277c3a36847f8020d1f", "cast_id": 16, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Forest Whitaker", "character": "Big Harold", "id": 2178, "credit_id": "52fe4277c3a36847f8020d23", "cast_id": 17, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 3}, {"name": "John C. McGinley", "character": "Sgt. Red O'Neill", "id": 11885, "credit_id": "52fe4277c3a36847f8020d2b", "cast_id": 19, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 4}, {"name": "Kevin Dillon", "character": "Bunny", "id": 6863, "credit_id": "52fe4277c3a36847f8020d27", "cast_id": 18, "profile_path": "/cePW2pwfTv82du2glTNKklKldAf.jpg", "order": 5}, {"name": "Johnny Depp", "character": "Private Gator Lerner", "id": 85, "credit_id": "52fe4277c3a36847f8020d4b", "cast_id": 37, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 6}, {"name": "Francesco Quinn", "character": "Rhah", "id": 11886, "credit_id": "52fe4277c3a36847f8020d2f", "cast_id": 20, "profile_path": "/xTSSmTuRg2xu2fKnDYyvT0GqLD7.jpg", "order": 7}, {"name": "Richard Edson", "character": "Sal", "id": 6396, "credit_id": "52fe4277c3a36847f8020d33", "cast_id": 21, "profile_path": "/7YegwxrBppretnwGEEMxEI453Ef.jpg", "order": 8}, {"name": "Keith David", "character": "King", "id": 65827, "credit_id": "52fe4277c3a36847f8020d37", "cast_id": 23, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 9}, {"name": "Mark Moses", "character": "Lt. Wolfe", "id": 11889, "credit_id": "52fe4277c3a36847f8020d3b", "cast_id": 25, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 10}, {"name": "Chris Pedersen", "character": "Crawford", "id": 11890, "credit_id": "52fe4277c3a36847f8020d3f", "cast_id": 26, "profile_path": "/y8v3KTTxcuMFR7cKxGF3sJCEZ0W.jpg", "order": 11}, {"name": "Oliver Stone", "character": "Alpha Company major in bunker", "id": 1152, "credit_id": "52fe4277c3a36847f8020d43", "cast_id": 35, "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "order": 12}, {"name": "Corkey Ford", "character": "Manny", "id": 1447263, "credit_id": "55187893925141731c000135", "cast_id": 38, "profile_path": null, "order": 13}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020cc9", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 7.1, "runtime": 120}, "793": {"poster_path": "/yXvdmffa0o8zlxwBBcQki8y3Fdw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8551228, "overview": "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 criminals who have kidnapped her child.", "video": false, "id": 793, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Blue Velvet", "tagline": "It's a strange world.", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090756", "adult": false, "backdrop_path": "/5ESiCDqO1aMlELkk0vzqXIwOvGz.jpg", "production_companies": [{"name": "De Laurentiis Entertainment Group (DEG)", "id": 484}], "release_date": "1986-09-12", "popularity": 0.825073828988785, "original_title": "Blue Velvet", "budget": 6000000, "cast": [{"name": "Isabella Rossellini", "character": "Dorothy Vallens", "id": 6588, "credit_id": "52fe4277c3a36847f8020dc7", "cast_id": 12, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 0}, {"name": "Kyle MacLachlan", "character": "Jeffrey Beaumont", "id": 6677, "credit_id": "52fe4277c3a36847f8020dcb", "cast_id": 13, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "Frank Booth", "id": 2778, "credit_id": "52fe4277c3a36847f8020dcf", "cast_id": 14, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Laura Dern", "character": "Sandy Williams", "id": 4784, "credit_id": "52fe4277c3a36847f8020dd3", "cast_id": 15, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Hope Lange", "character": "Mrs. Williams", "id": 3382, "credit_id": "52fe4277c3a36847f8020dd7", "cast_id": 16, "profile_path": "/4gJtYaS4iAPBgTYVNIMlspAzGSA.jpg", "order": 4}, {"name": "Dean Stockwell", "character": "Ben", "id": 923, "credit_id": "52fe4277c3a36847f8020ddb", "cast_id": 17, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 5}, {"name": "George Dickerson", "character": "Det. John Williams", "id": 11792, "credit_id": "52fe4277c3a36847f8020ddf", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Priscilla Pointer", "character": "Mrs. Beaumont", "id": 11793, "credit_id": "52fe4277c3a36847f8020de3", "cast_id": 19, "profile_path": "/rmT7Qje6YBG180d1hlY6zQpZmfv.jpg", "order": 7}, {"name": "Frances Bay", "character": "Aunt Barbara", "id": 11794, "credit_id": "52fe4277c3a36847f8020de7", "cast_id": 20, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 8}, {"name": "Jack Harvey", "character": "Mr. Tom Beaumont", "id": 11795, "credit_id": "52fe4277c3a36847f8020deb", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Ken Stovitz", "character": "Mike", "id": 11796, "credit_id": "52fe4277c3a36847f8020def", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Brad Dourif", "character": "Raymond", "id": 1370, "credit_id": "52fe4277c3a36847f8020df3", "cast_id": 23, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 11}, {"name": "Jack Nance", "character": "Paul", "id": 6718, "credit_id": "52fe4277c3a36847f8020df7", "cast_id": 24, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 12}, {"name": "J. Michael Hunter", "character": "Hunter", "id": 11797, "credit_id": "52fe4277c3a36847f8020dfb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Selden Smith", "character": "Nurse Cindy", "id": 11798, "credit_id": "52fe4277c3a36847f8020dff", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020d87", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.3, "runtime": 120}, "794": {"poster_path": "/uY14zS4Sm2DdvFXeczFKgLgkQUP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesn\u2019t know is that their new son is the son of the devil. A classic horror film with Gregory Peck from 1976.", "video": false, "id": 794, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Omen", "tagline": "It is the greatest mystery of all because no human being will ever solve it.", "vote_count": 88, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5IqWSXMS2qb9wijTMbCHXK4ahXE.jpg", "id": 10919, "name": "The Omen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075005", "adult": false, "backdrop_path": "/zme4RH7DVdRSGrTk7bNvcGGywAW.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1976-06-25", "popularity": 0.264357829236421, "original_title": "The Omen", "budget": 2800000, "cast": [{"name": "Gregory Peck", "character": "Robert Thorn", "id": 8487, "credit_id": "52fe4277c3a36847f8020e9b", "cast_id": 13, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "Lee Remick", "character": "Katherine Thorn", "id": 855, "credit_id": "52fe4277c3a36847f8020e9f", "cast_id": 14, "profile_path": "/nxXQhtEeYJW4S7kN2RQmmoGDGIw.jpg", "order": 1}, {"name": "David Warner", "character": "Keith Jennings", "id": 2076, "credit_id": "52fe4277c3a36847f8020ea3", "cast_id": 15, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 2}, {"name": "Billie Whitelaw", "character": "Mrs. Baylock", "id": 8226, "credit_id": "52fe4277c3a36847f8020ea7", "cast_id": 16, "profile_path": "/5XSUS3oSuG2CtJQPiEBQd9AAmg4.jpg", "order": 3}, {"name": "Harvey Stephens", "character": "Damien", "id": 11839, "credit_id": "52fe4277c3a36847f8020eab", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Patrick Troughton", "character": "Father Brennan", "id": 11840, "credit_id": "52fe4277c3a36847f8020eaf", "cast_id": 18, "profile_path": "/bPVsEU75m475FcHh4lYfAeVEkmK.jpg", "order": 5}, {"name": "Martin Benson", "character": "Father Spiletto", "id": 9912, "credit_id": "52fe4277c3a36847f8020eb3", "cast_id": 19, "profile_path": "/x4AfPPRujgL6kfH8ObfefC7i9FY.jpg", "order": 6}, {"name": "Robert Rietti", "character": "Monk", "id": 11841, "credit_id": "52fe4277c3a36847f8020eb7", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tommy Duggan", "character": "Priest", "id": 11842, "credit_id": "52fe4277c3a36847f8020ebb", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "John Stride", "character": "Psychiatrist", "id": 11843, "credit_id": "52fe4277c3a36847f8020ebf", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Holly Palance", "character": "Young Nanny", "id": 11844, "credit_id": "52fe4277c3a36847f8020ec3", "cast_id": 23, "profile_path": "/sL81HKXDG8daUmNFz9skobjBHtV.jpg", "order": 10}, {"name": "Anthony Nicholls", "character": "Dr. Becker", "id": 25643, "credit_id": "52fe4277c3a36847f8020ec7", "cast_id": 24, "profile_path": "/xf6jPF6HeYW7qZCW2OAVqermnr7.jpg", "order": 11}, {"name": "Roy Boyd", "character": "Reporter", "id": 156387, "credit_id": "52fe4277c3a36847f8020ecb", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Sheila Raynor", "character": "Mrs. Horton", "id": 2276, "credit_id": "52fe4277c3a36847f8020ecf", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Robert MacLeod", "character": "Horton", "id": 117410, "credit_id": "52fe4277c3a36847f8020ed3", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Bruce Boa", "character": "Thorn's Aide", "id": 8664, "credit_id": "52fe4277c3a36847f8020ed7", "cast_id": 28, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 15}, {"name": "Don Fellows", "character": "Thorn's Second Aide", "id": 662, "credit_id": "52fe4277c3a36847f8020edb", "cast_id": 29, "profile_path": "/sQgCr3xz2LVomGMKCvb7rLD9dMX.jpg", "order": 16}, {"name": "Patrick McAlinney", "character": "Photographer", "id": 201489, "credit_id": "52fe4277c3a36847f8020edf", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Dawn Perllman", "character": "Chambermaid", "id": 1077927, "credit_id": "52fe4277c3a36847f8020ee3", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Nancy Mannigham", "character": "Nurse", "id": 1077928, "credit_id": "52fe4277c3a36847f8020ee7", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Miki Iveria", "character": "First Nun", "id": 1077929, "credit_id": "52fe4277c3a36847f8020eeb", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Betty McDowall", "character": "American Secretary", "id": 1006770, "credit_id": "52fe4277c3a36847f8020eef", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Nicholas Campbell", "character": "Marine", "id": 14902, "credit_id": "52fe4277c3a36847f8020ef3", "cast_id": 35, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 22}, {"name": "Burnell Tucker", "character": "Secret Service Man", "id": 184980, "credit_id": "52fe4277c3a36847f8020ef7", "cast_id": 36, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 23}, {"name": "Ronald Leigh-Hunt", "character": "Gentleman at Rugby Match", "id": 29872, "credit_id": "52fe4277c3a36847f8020efb", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Guglielmo Spoletini", "character": "Italian Taxi Driver", "id": 589558, "credit_id": "52fe4277c3a36847f8020eff", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Ya'ackov Banai", "character": "Arab", "id": 583498, "credit_id": "52fe4277c3a36847f8020f03", "cast_id": 39, "profile_path": null, "order": 26}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020e55", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.9, "runtime": 111}, "795": {"poster_path": "/dMvup91Svpns2SfCtZ4jiSFiouV.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 198685114, "overview": "When guardian angel Seth -- who invisibly watches over the citizens of Los Angeles -- becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.", "video": false, "id": 795, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "City of Angels", "tagline": "She didn't believe in angels until she fell in love with one.", "vote_count": 152, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120632", "adult": false, "backdrop_path": "/1TcaKTQexv6m38k1t1Vfimco3dK.jpg", "production_companies": [{"name": "Atlas Entertainment", "id": 507}, {"name": "Monarchy Enterprises B.V.", "id": 676}, {"name": "Regency Enterprises", "id": 508}, {"name": "Taurus Film", "id": 20555}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1998-04-10", "popularity": 1.3480782890602, "original_title": "City of Angels", "budget": 55000000, "cast": [{"name": "Nicolas Cage", "character": "Seth", "id": 2963, "credit_id": "52fe4277c3a36847f8020f91", "cast_id": 14, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Maggie Rice", "id": 5344, "credit_id": "52fe4277c3a36847f8020f95", "cast_id": 15, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Andre Braugher", "character": "Cassiel", "id": 6861, "credit_id": "52fe4277c3a36847f8020f99", "cast_id": 16, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 2}, {"name": "Dennis Franz", "character": "Nathaniel Messinger", "id": 11901, "credit_id": "52fe4277c3a36847f8020f9d", "cast_id": 17, "profile_path": "/oigU88Mm2YVPvyLr6cf2PehJMjW.jpg", "order": 3}, {"name": "Colm Feore", "character": "Jordan", "id": 10132, "credit_id": "52fe4277c3a36847f8020fa1", "cast_id": 18, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 4}, {"name": "Robin Bartlett", "character": "Anne", "id": 11902, "credit_id": "52fe4277c3a36847f8020fa5", "cast_id": 19, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 5}, {"name": "Joanna Merlin", "character": "Teresa Messinger", "id": 11903, "credit_id": "52fe4277c3a36847f8020fa9", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Sarah Dampf", "character": "Susan", "id": 11911, "credit_id": "52fe4277c3a36847f8020fad", "cast_id": 21, "profile_path": "/osIf7YioqhddFpwfRkVK0MDun7K.jpg", "order": 7}, {"name": "Rhonda Dotson", "character": "Susan's Mother", "id": 11913, "credit_id": "52fe4277c3a36847f8020fb1", "cast_id": 22, "profile_path": "/yZZZJPGqLEA6VIXwiEemY55k3wp.jpg", "order": 8}, {"name": "Nigel Gibbs", "character": "Doctor", "id": 11915, "credit_id": "52fe4277c3a36847f8020fb5", "cast_id": 23, "profile_path": "/6AE4p72zOtpR9Q385eiwrPwGPaj.jpg", "order": 9}, {"name": "John Putch", "character": "Man in Car", "id": 21475, "credit_id": "52fe4277c3a36847f8020fbf", "cast_id": 25, "profile_path": "/9JBDOLXqdJiAvUOU0fO5bWnk292.jpg", "order": 10}, {"name": "Lauri Johnson", "character": "Woman in Car", "id": 66499, "credit_id": "52fe4277c3a36847f8020fc3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Christian Aubert", "character": "Foreign Visitor in Car", "id": 14740, "credit_id": "52fe4277c3a36847f8020fc7", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Jay Patterson", "character": "Air Traffic Controller", "id": 78789, "credit_id": "52fe4277c3a36847f8020fcb", "cast_id": 28, "profile_path": "/k6VNOcXw1QBm0jRteBUZfnyd9mj.jpg", "order": 13}, {"name": "Shishir Kurup", "character": "Jimmy, Anesthesiologist", "id": 111454, "credit_id": "52fe4277c3a36847f8020fcf", "cast_id": 29, "profile_path": "/nTlsmxRBLTduIvbCj9l5jvq2gXh.jpg", "order": 14}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8020f45", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 6.3, "runtime": 114}, "205596": {"poster_path": "/noUp0XOqIcmgefRnRZa1nhtRvWO.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 219501092, "overview": "Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.", "video": false, "id": 205596, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "The Imitation Game", "tagline": "The true enigma was the man who cracked the code.", "vote_count": 952, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2084970", "adult": false, "backdrop_path": "/fii9tPZTpy75qOCJBulWOb0ifGp.jpg", "production_companies": [{"name": "Bristol Automotive", "id": 38145}, {"name": "Black Bear Pictures", "id": 22146}], "release_date": "2014-11-14", "popularity": 16.6976808300326, "original_title": "The Imitation Game", "budget": 14000000, "cast": [{"name": "Benedict Cumberbatch", "character": "Alan Turing", "id": 71580, "credit_id": "52fe4d0cc3a368484e1d4157", "cast_id": 2, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Joan Clarke", "id": 116, "credit_id": "52fe4d0cc3a368484e1d415b", "cast_id": 3, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Matthew Goode", "character": "Hugh Alexander", "id": 1247, "credit_id": "54519445c3a368023c005180", "cast_id": 10, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 2}, {"name": "Rory Kinnear", "character": "Nock", "id": 139549, "credit_id": "5363bfdbc3a368158d00277c", "cast_id": 5, "profile_path": "/wfBmg2FVEDQCCFnjiTC3lhg1THP.jpg", "order": 3}, {"name": "Allen Leech", "character": "John Cairncross", "id": 85718, "credit_id": "5363bfebc3a368159f002834", "cast_id": 7, "profile_path": "/ezLSwpml7IWGy4loLpDUwIZ7wM8.jpg", "order": 4}, {"name": "Matthew Beard", "character": "Peter Hilton", "id": 213394, "credit_id": "5363bff4c3a368157d00274b", "cast_id": 8, "profile_path": "/1Cbv1JWSg4RJ385OZrS3lnlo7eu.jpg", "order": 5}, {"name": "Charles Dance", "character": "Commander Denniston", "id": 4391, "credit_id": "5363bfe2c3a3681586002734", "cast_id": 6, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 6}, {"name": "Mark Strong", "character": "Stewart Menzies", "id": 2983, "credit_id": "5363bfd3c3a368159f00282f", "cast_id": 4, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 7}, {"name": "James Northcote", "character": "Jack Good", "id": 1362119, "credit_id": "545195c30e0a263a180051c9", "cast_id": 18, "profile_path": "/wuf9ARlVXPonmRN21WcYQtdSiOv.jpg", "order": 8}, {"name": "Tom Goodman-Hill", "character": "Sergeant Staehl", "id": 43034, "credit_id": "5451952ac3a368023c0051a2", "cast_id": 14, "profile_path": "/ryyyhVGZ9cHFQQbXu1A9Vh7DKv3.jpg", "order": 9}, {"name": "Steven Waddington", "character": "Supt Smith", "id": 27764, "credit_id": "545194b10e0a262d46002cdd", "cast_id": 12, "profile_path": "/wFZoh6mW51RK0kHs64OPndEa19q.jpg", "order": 10}, {"name": "Ilan Goodman", "character": "Keith Furman", "id": 1121975, "credit_id": "54519a8e0e0a263a0400561e", "cast_id": 44, "profile_path": "/bxI8JQgYTPqGofduTDR2LvC2RK2.jpg", "order": 11}, {"name": "Jack Tarlton", "character": "Charles Richards", "id": 1379286, "credit_id": "545198e1c3a3680239004fcf", "cast_id": 35, "profile_path": "/chsUR9caJQzBXYgz40Tf8fDukGr.jpg", "order": 12}, {"name": "Alex Lawther", "character": "Young Turing", "id": 1379277, "credit_id": "545196610e0a263a0400556e", "cast_id": 21, "profile_path": "/xQvzRnvhHVjhMqIlA6qYzvt3joh.jpg", "order": 13}, {"name": "Jack Bannon", "character": "Christopher Morcom", "id": 1449329, "credit_id": "551eeb09c3a3685ab40001d2", "cast_id": 110, "profile_path": "/m436jpgrrxmBTUdKSiWPsVRLxpW.jpg", "order": 14}, {"name": "Tuppence Middleton", "character": "Helen", "id": 89822, "credit_id": "545194650e0a263a0a005265", "cast_id": 11, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 15}, {"name": "Hayley Joanne Bacon", "character": "Woman in Crowd", "id": 1374337, "credit_id": "545194f0c3a3680236005103", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Hannah Flynn", "character": "Wren", "id": 1379275, "credit_id": "54519556c3a36802450050ef", "cast_id": 15, "profile_path": null, "order": 17}, {"name": "Matthew Beard", "character": "Peter Hilton", "id": 213394, "credit_id": "54519573c3a36802450050f5", "cast_id": 16, "profile_path": "/1Cbv1JWSg4RJ385OZrS3lnlo7eu.jpg", "order": 18}, {"name": "Ancuta Breaban", "character": "Wren", "id": 1374158, "credit_id": "545195990e0a263a0400555f", "cast_id": 17, "profile_path": null, "order": 20}, {"name": "Victoria Wicks", "character": "Joan's Mother", "id": 1221046, "credit_id": "545195f80e0a263a100053f3", "cast_id": 19, "profile_path": null, "order": 21}, {"name": "Bartosz Wandrykow", "character": "Crossword Enthusiast", "id": 1379276, "credit_id": "54519638c3a3680233004f16", "cast_id": 20, "profile_path": null, "order": 22}, {"name": "Leigh Dent", "character": "Passerby", "id": 1374338, "credit_id": "5451967ec3a368115900049c", "cast_id": 22, "profile_path": null, "order": 23}, {"name": "Grace Calder", "character": "Assistant Wren", "id": 1379278, "credit_id": "545196b10e0a262d46002d26", "cast_id": 23, "profile_path": null, "order": 24}, {"name": "Lese Asquith-Coe", "character": "MI-6 Agent", "id": 1379279, "credit_id": "545196e60e0a263a180051f6", "cast_id": 24, "profile_path": null, "order": 25}, {"name": "William Bowden", "character": "Military Policeman", "id": 1091936, "credit_id": "5451970c0e0a262d46002d3c", "cast_id": 25, "profile_path": null, "order": 26}, {"name": "Luke Hope", "character": "MI-6 Agent", "id": 1379280, "credit_id": "545197580e0a263a1000542e", "cast_id": 27, "profile_path": null, "order": 27}, {"name": "Alexander Cooper", "character": "Bletchley Park Agent", "id": 1379281, "credit_id": "5451978fc3a368532b005482", "cast_id": 28, "profile_path": null, "order": 28}, {"name": "Joseph Oliveira", "character": "Mai-6 Agent", "id": 1360008, "credit_id": "545197bdc3a368023600518a", "cast_id": 29, "profile_path": null, "order": 29}, {"name": "Joseph Oliveira", "character": "MI-6 Agent", "id": 1360008, "credit_id": "545197cec3a3680233004f60", "cast_id": 30, "profile_path": null, "order": 30}, {"name": "Guna Gultniece", "character": "Passerby", "id": 1379282, "credit_id": "5451981ac3a368022a005445", "cast_id": 31, "profile_path": null, "order": 31}, {"name": "Lauren Beacham", "character": "RAF Wren", "id": 1379283, "credit_id": "5451983ec3a36811590004cf", "cast_id": 32, "profile_path": null, "order": 32}, {"name": "Nicola-Jayne Wells", "character": "First Aid Nurse", "id": 1379284, "credit_id": "54519895c3a3680233004f84", "cast_id": 33, "profile_path": null, "order": 33}, {"name": "Esther Eden", "character": "WW2 Wren", "id": 1379285, "credit_id": "545198b70e0a263a1800523f", "cast_id": 34, "profile_path": null, "order": 34}, {"name": "Alex Corbet Burcher", "character": "Dancer", "id": 1379287, "credit_id": "5451990d0e0a263a1000547d", "cast_id": 36, "profile_path": null, "order": 35}, {"name": "Stuart Matthews", "character": "Bleiches Park Operative", "id": 1295992, "credit_id": "5451994bc3a36811590004f1", "cast_id": 37, "profile_path": null, "order": 36}, {"name": "Stuart Matthews", "character": "Bletchley Park Operative", "id": 1295992, "credit_id": "5451995fc3a36802360051c9", "cast_id": 38, "profile_path": null, "order": 37}, {"name": "Sam Exley", "character": "Military Policeman", "id": 1379288, "credit_id": "54519986c3a3680245005188", "cast_id": 39, "profile_path": null, "order": 38}, {"name": "Lisa Colquhoun", "character": "Joan Clarke's Friend", "id": 1379290, "credit_id": "545199c50e0a262d46002da3", "cast_id": 40, "profile_path": null, "order": 39}, {"name": "David G. Robinson", "character": "Police Sergeant White", "id": 1358943, "credit_id": "545199fe0e0a263a1800526b", "cast_id": 41, "profile_path": null, "order": 40}, {"name": "Charlie Manton", "character": "Bully", "id": 1379291, "credit_id": "54519a1c0e0a263a18005271", "cast_id": 42, "profile_path": null, "order": 41}, {"name": "David Charkham", "character": "Joan's Father", "id": 1330788, "credit_id": "54519a51c3a368022a005495", "cast_id": 43, "profile_path": null, "order": 42}, {"name": "Peter Brown", "character": "Navy Captain", "id": 7239, "credit_id": "54519ada0e0a2601d8005123", "cast_id": 45, "profile_path": null, "order": 43}, {"name": "Denis Koroshko", "character": "Civilian", "id": 1379292, "credit_id": "54519b080e0a263a0a00535c", "cast_id": 46, "profile_path": null, "order": 44}, {"name": "Richard Campbell", "character": "Crosswordman in Pub", "id": 1379293, "credit_id": "54519b3c0e0a263a04005634", "cast_id": 47, "profile_path": null, "order": 45}, {"name": "Ben Farrow", "character": "Military Policeman", "id": 1379295, "credit_id": "54519b670e0a263a100054d4", "cast_id": 48, "profile_path": null, "order": 46}, {"name": "Laurence Kennedy", "character": "Headmaster", "id": 25680, "credit_id": "54519b87c3a368022a0054c4", "cast_id": 49, "profile_path": null, "order": 47}, {"name": "John Redmann", "character": "Young Officer", "id": 1225115, "credit_id": "54519bb60e0a263a04005658", "cast_id": 50, "profile_path": null, "order": 48}, {"name": "Josh Wichard", "character": "German Pilot", "id": 1379301, "credit_id": "54519be7c3a3680239005048", "cast_id": 51, "profile_path": null, "order": 49}, {"name": "Ingrid Benussi", "character": "Dancer", "id": 1379302, "credit_id": "54519c030e0a263a180052ae", "cast_id": 52, "profile_path": null, "order": 50}, {"name": "Adam Nowell", "character": "Technician", "id": 1379303, "credit_id": "54519c3c0e0a262d46002df3", "cast_id": 53, "profile_path": null, "order": 51}, {"name": "Mike Firth", "character": "Crossword Enthusiast", "id": 1379304, "credit_id": "54519c690e0a263a100054ff", "cast_id": 54, "profile_path": null, "order": 52}, {"name": "Daniel Chapple", "character": "MI-6 Agent", "id": 1379305, "credit_id": "54519c8ec3a368115900058d", "cast_id": 55, "profile_path": null, "order": 53}, {"name": "Oscar Hatton", "character": "Evacuee", "id": 1379308, "credit_id": "54519cb40e0a262d46002e08", "cast_id": 56, "profile_path": null, "order": 54}, {"name": "Nicolas Blatt", "character": "Ministers Man", "id": 1379311, "credit_id": "54519ce20e0a263a1000550e", "cast_id": 57, "profile_path": null, "order": 55}, {"name": "Samantha Moran", "character": "Wren", "id": 1379312, "credit_id": "54519d09c3a368023300501c", "cast_id": 58, "profile_path": null, "order": 56}, {"name": "James G. Nunn", "character": "Bully", "id": 1379313, "credit_id": "54519d32c3a3680233005028", "cast_id": 59, "profile_path": null, "order": 57}, {"name": "Jack Brash", "character": "Evacuee", "id": 1379314, "credit_id": "54519d56c3a368022a005501", "cast_id": 60, "profile_path": null, "order": 58}, {"name": "Benjamin Hardie", "character": "Paperboy", "id": 1379315, "credit_id": "54519d780e0a263a1000552f", "cast_id": 61, "profile_path": null, "order": 59}, {"name": "Harry Leonard Parkinson", "character": "Evacuee", "id": 1379316, "credit_id": "54519da90e0a263a1000553e", "cast_id": 62, "profile_path": null, "order": 60}, {"name": "Amber-Rose May", "character": "Joan Clarke's Friend", "id": 1379317, "credit_id": "54519de90e0a262d46002e34", "cast_id": 63, "profile_path": null, "order": 61}, {"name": "Dominik Charman", "character": "Bully", "id": 1379318, "credit_id": "54519e0ec3a3680236005257", "cast_id": 64, "profile_path": null, "order": 62}, {"name": "James Gard", "character": "School Boy", "id": 1379319, "credit_id": "54519e2ec3a3680239005096", "cast_id": 65, "profile_path": null, "order": 63}, {"name": "Vincent Idearson", "character": "MI-6 Agent", "id": 1379320, "credit_id": "54519e530e0a2601d8005194", "cast_id": 66, "profile_path": null, "order": 64}, {"name": "Alice Tapfield", "character": "Wren", "id": 1379321, "credit_id": "54519e75c3a368023300504f", "cast_id": 67, "profile_path": null, "order": 65}], "directors": [{"name": "Morten Tyldum", "department": "Directing", "job": "Director", "credit_id": "52fe4d0cc3a368484e1d4153", "profile_path": "/Jjdf8X3cdW5TQebY7xwREkHCCk.jpg", "id": 77965}], "vote_average": 8.2, "runtime": 113}, "797": {"poster_path": "/cUJDnNgxfmsvHGlU19x740EyX5W.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A young nurse, Alma, is put in charge of Elisabeth Vogler: an actress who is seemingly healthy in all respects, but will not talk. As they spend time together, Alma speaks to Elisabeth constantly, never receiving any answer. Alma eventually confesses her secrets to a seemingly sympathetic Elisabeth and finds that her own personality is being submerged into Elisabeth's persona.", "video": false, "id": 797, "genres": [{"id": 18, "name": "Drama"}, {"id": 10769, "name": "Foreign"}], "title": "Persona", "tagline": "One of the ten greatest films of all time.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0060827", "adult": false, "backdrop_path": "/Aa6FlC0W2sljzujYtwrSTry2oVS.jpg", "production_companies": [{"name": "Svensk Filmindustri", "id": 6416}], "release_date": "1966-10-18", "popularity": 0.539639630699954, "original_title": "Persona", "budget": 0, "cast": [{"name": "Bibi Andersson", "character": "Alma", "id": 6657, "credit_id": "52fe4278c3a36847f80210df", "cast_id": 13, "profile_path": "/wIC6RwWanSpubtdjCbB6IGQN4AP.jpg", "order": 0}, {"name": "Liv Ullmann", "character": "Elisabeth Vogler", "id": 11916, "credit_id": "52fe4278c3a36847f80210e3", "cast_id": 14, "profile_path": "/8fJYPEx6RCt2QjjnMkUyREYSJCp.jpg", "order": 1}, {"name": "Margaretha Krook", "character": "Arzt", "id": 11917, "credit_id": "52fe4278c3a36847f80210e7", "cast_id": 15, "profile_path": "/zMXDQ8h0avVOT1bbrsGIaIx9CGf.jpg", "order": 2}, {"name": "Gunnar Bj\u00f6rnstrand", "character": "Herr Vogler", "id": 6649, "credit_id": "52fe4278c3a36847f80210eb", "cast_id": 16, "profile_path": "/AiGcTLr6uQXjtKxh2CMOOIfXEW1.jpg", "order": 3}, {"name": "J\u00f6rgen Lindstr\u00f6m", "character": "Elisabet's Son (uncredited)", "id": 11918, "credit_id": "52fe4278c3a36847f80210ef", "cast_id": 17, "profile_path": null, "order": 4}], "directors": [{"name": "Ingmar Bergman", "department": "Directing", "job": "Director", "credit_id": "52fe4278c3a36847f8021099", "profile_path": "/rHYYP3N2ivz6WTuTHsLX58Gab7G.jpg", "id": 6648}], "vote_average": 7.8, "runtime": 85}, "25376": {"poster_path": "/ecnA0olMpKohgptKPjo2Yb9O3YY.jpg", "production_countries": [{"iso_3166_1": "AR", "name": "Argentina"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 33965843, "overview": "A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior - both of which still haunt him decades later.", "video": false, "id": 25376, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "The Secret in Their Eyes", "tagline": "", "vote_count": 165, "homepage": "http://www.elsecretodesusojos.com", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1305806", "adult": false, "backdrop_path": "/RwcniewAxBysGWTMLnuwPUHNFZ.jpg", "production_companies": [{"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "100 Bares", "id": 5517}, {"name": "Tornasol Films", "id": 7680}, {"name": "Ministerio de Cultura", "id": 11408}, {"name": "Instituto Nacional de Cine y Artes Audiovisuales (INCAA)", "id": 6458}, {"name": "Televisi\u00f3n Federal (Telefe)", "id": 21915}, {"name": "Televisi\u00f3n Espa\u00f1ola (TVE)", "id": 6639}, {"name": "Haddock Films S.R.L.", "id": 5623}, {"name": "Instituto de Cr\u00e9dito Oficial (ICO)", "id": 11427}], "release_date": "2009-08-13", "popularity": 0.64666276295687, "original_title": "El Secreto de sus Ojos", "budget": 2000000, "cast": [{"name": "Ricardo Dar\u00edn", "character": "Benjam\u00edn Esp\u00f3sito", "id": 69310, "credit_id": "52fe44c4c3a368484e035aff", "cast_id": 1, "profile_path": "/1TQ9iE2d7r91ohbHi93KLw3QULU.jpg", "order": 0}, {"name": "Soledad Villamil", "character": "Irene Men\u00e9ndez Hastings", "id": 93647, "credit_id": "52fe44c4c3a368484e035b03", "cast_id": 2, "profile_path": "/dHlNIS1h15DEzlsUvpiBK82AlO8.jpg", "order": 1}, {"name": "Pablo Rago", "character": "Ricardo Morales", "id": 93648, "credit_id": "52fe44c4c3a368484e035b07", "cast_id": 3, "profile_path": "/dezSxQ92ApDdZbC0cZaqC3dk8D.jpg", "order": 2}, {"name": "Javier Godino", "character": "Isidoro G\u00f3mez", "id": 93649, "credit_id": "52fe44c4c3a368484e035b0b", "cast_id": 4, "profile_path": "/2NRb8XVxWPpd7fe5d1UxD6nhQQi.jpg", "order": 3}, {"name": "Guillermo Francella", "character": "Pablo Sandoval", "id": 93650, "credit_id": "52fe44c4c3a368484e035b0f", "cast_id": 5, "profile_path": "/A2HViE0YiYO0mmGJP5Jl0SJBq34.jpg", "order": 4}, {"name": "Carla Quevedo", "character": "Liliana Coloto", "id": 968350, "credit_id": "52fe44c4c3a368484e035b8b", "cast_id": 32, "profile_path": null, "order": 5}, {"name": "B\u00e1rbara Palladino", "character": "Chica Piropo", "id": 968351, "credit_id": "52fe44c4c3a368484e035b8f", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "Alejandro Abelenda", "character": "Pinche Mariano", "id": 968353, "credit_id": "52fe44c4c3a368484e035b93", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "Mario Alarc\u00f3n", "character": "Juez Fortuna Lacalle", "id": 1016570, "credit_id": "52fe44c4c3a368484e035b97", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Rudy Romano", "character": "Ord\u00f3\u00f1ez", "id": 1331799, "credit_id": "53a1c7340e0a266ff30002d1", "cast_id": 38, "profile_path": null, "order": 9}, {"name": "Mariano Argento", "character": "Romano", "id": 1241396, "credit_id": "53a1c7830e0a266ffa000320", "cast_id": 40, "profile_path": null, "order": 10}, {"name": "Sebasti\u00e1n Blanco", "character": "Pinche Tino", "id": 1331800, "credit_id": "53a1c76d0e0a266ffe0002ee", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Gabriela Daniell", "character": "Alejandra Sandoval", "id": 1331810, "credit_id": "53a1c8bbc3a368417d0002be", "cast_id": 51, "profile_path": null, "order": 12}, {"name": "Jos\u00e9 Luis Gioia", "character": "B\u00e1ez - Inspector", "id": 1331801, "credit_id": "53a1c7950e0a266fe9000339", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Juan Jos\u00e9 Ort\u00edz", "character": "Agente Cardozo", "id": 1331802, "credit_id": "53a1c7a80e0a266fe9000343", "cast_id": 42, "profile_path": null, "order": 14}, {"name": "Kiko Cerone", "character": "Molinari", "id": 557717, "credit_id": "53a1c7c10e0a266fec00034c", "cast_id": 43, "profile_path": null, "order": 15}, {"name": "Fernando Pardo", "character": "Sicora", "id": 46861, "credit_id": "53a1c7d50e0a266fe60002e3", "cast_id": 44, "profile_path": null, "order": 16}, {"name": "Maximiliano Trento", "character": "Guardia Comisar\u00eda", "id": 1331803, "credit_id": "53a1c7e80e0a266fec000357", "cast_id": 45, "profile_path": null, "order": 17}, {"name": "Sergio L\u00f3pez Santana", "character": "Jacinto C\u00e1ceres", "id": 1331804, "credit_id": "53a1c7fa0e0a266fef00031b", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Elvio Duvini", "character": "Juan Robles", "id": 1331805, "credit_id": "53a1c861c3a368417700025d", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "David Di Napoli", "character": "Escribano Andretta", "id": 1331806, "credit_id": "53a1c875c3a368417d0002b2", "cast_id": 48, "profile_path": null, "order": 20}, {"name": "Pedro Kochdilian", "character": "Borracho 1", "id": 1331807, "credit_id": "53a1c88ac3a368417a000277", "cast_id": 49, "profile_path": null, "order": 21}, {"name": "Dar\u00edo Valenzuela", "character": "Capataz", "id": 138760, "credit_id": "53a1c8fec3a36841740002a5", "cast_id": 53, "profile_path": null, "order": 22}, {"name": "Oscar S\u00e1nchez", "character": "Borracho 2", "id": 1331808, "credit_id": "53a1c8a0c3a368417a000282", "cast_id": 50, "profile_path": null, "order": 23}, {"name": "Alicia Hayd\u00e9e Pennachi", "character": "Madre G\u00f3mez", "id": 1331811, "credit_id": "53a1c8e6c3a36841830002c9", "cast_id": 52, "profile_path": null, "order": 24}, {"name": "Carlos Mele", "character": "Viejo Letrina", "id": 1331812, "credit_id": "53a1c910c3a368418600028f", "cast_id": 54, "profile_path": null, "order": 25}, {"name": "Iv\u00e1n Sosa", "character": "Custodio Interrogatorio", "id": 1331813, "credit_id": "53a1c921c3a3684177000284", "cast_id": 55, "profile_path": null, "order": 26}, {"name": "Judith Buchalter", "character": "Madre Irene", "id": 1331814, "credit_id": "53a1c933c3a36841800002ab", "cast_id": 56, "profile_path": null, "order": 27}, {"name": "H\u00e9ctor La Porta", "character": "Guardia Civil Ministerio Bienestar Social", "id": 1331815, "credit_id": "53a1c945c3a368417a0002a4", "cast_id": 57, "profile_path": null, "order": 28}, {"name": "Liliana Cuomo", "character": "Margarita", "id": 1331816, "credit_id": "53a1c956c3a36841860002a5", "cast_id": 58, "profile_path": null, "order": 29}, {"name": "Alejandro P\u00e9rez", "character": "Mat\u00f3n", "id": 1331817, "credit_id": "53a1c96ac3a36841830002e2", "cast_id": 59, "profile_path": null, "order": 30}], "directors": [{"name": "Juan Jos\u00e9 Campanella", "department": "Directing", "job": "Director", "credit_id": "52fe44c4c3a368484e035b15", "profile_path": "/iKVUxd1703lmb6E0jNdHyeuK8ne.jpg", "id": 84714}], "vote_average": 7.9, "runtime": 129}, "205601": {"poster_path": "/r0Vp6yjsKD41xF1h6lzRztgV201.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 16505460, "overview": "BELLE is inspired by the true story of Dido Elizabeth Belle, the illegitimate mixed race daughter of a Royal Navy Admiral. Raised by her aristocratic great-uncle Lord Mansfield and his wife, Belle's lineage affords her certain privileges, yet the color of her skin prevents her from fully participating in the traditions of her social standing. Left to wonder if she will ever find love, Belle falls for an idealistic young vicar's son bent on change who, with her help, shapes Lord Mansfield's role as Lord Chief Justice to end slavery in England", "video": false, "id": 205601, "genres": [{"id": 18, "name": "Drama"}], "title": "Belle", "tagline": "Based on the inspiring true story", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2404181", "adult": false, "backdrop_path": "/aWrsPU9L5MzjNns6aeEwaYuuRCC.jpg", "production_companies": [{"name": "Pinewood Studios", "id": 19404}, {"name": "DJ Films", "id": 5654}, {"name": "Isle of Man Film", "id": 2268}, {"name": "British Film Institute (BFI)", "id": 7281}, {"name": "Metrol Technology", "id": 25954}], "release_date": "2014-05-08", "popularity": 0.702124831969375, "original_title": "Belle", "budget": 10900000, "cast": [{"name": "Gugu Mbatha-Raw", "character": "Dido Elizabeth Belle", "id": 1216606, "credit_id": "52fe4d0cc3a368484e1d41e9", "cast_id": 13, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Lord Mansfield", "id": 207, "credit_id": "52fe4d0cc3a368484e1d41c9", "cast_id": 5, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Miranda Richardson", "character": "Lady Ashford", "id": 8436, "credit_id": "52fe4d0cc3a368484e1d41c1", "cast_id": 2, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 2}, {"name": "Penelope Wilton", "character": "Lady Mary Murray", "id": 1249, "credit_id": "52fe4d0cc3a368484e1d41c5", "cast_id": 3, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 3}, {"name": "Emily Watson", "character": "Lady Mansfield", "id": 1639, "credit_id": "52fe4d0cc3a368484e1d41cd", "cast_id": 6, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 4}, {"name": "Sarah Gadon", "character": "Elizabeth", "id": 190895, "credit_id": "52fe4d0cc3a368484e1d41d1", "cast_id": 7, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 5}, {"name": "Sam Reid", "character": "John Davinier", "id": 589650, "credit_id": "52fe4d0cc3a368484e1d41e1", "cast_id": 11, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 6}, {"name": "Matthew Goode", "character": "Captain Sir John Lindsay", "id": 1247, "credit_id": "52fe4d0cc3a368484e1d41e5", "cast_id": 12, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 7}, {"name": "Tom Felton", "character": "James Ashford", "id": 10993, "credit_id": "52fe4d0cc3a368484e1d41bd", "cast_id": 1, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 8}, {"name": "James Norton", "character": "Oliver Ashford", "id": 1205278, "credit_id": "53fcddb40e0a267a6600b0e5", "cast_id": 17, "profile_path": "/rseiJUwdoDe1yNXgRROyAPo8NEA.jpg", "order": 9}, {"name": "Alan McKenna", "character": "Harry", "id": 86441, "credit_id": "5448d612c3a3680fae0015c1", "cast_id": 46, "profile_path": "/wA8uwhEQqK7k1Uoq2vLM7onN6ol.jpg", "order": 10}, {"name": "Lauren Julien-Box", "character": "Young Dido", "id": 1376817, "credit_id": "5448d63d0e0a26748f00150a", "cast_id": 47, "profile_path": null, "order": 11}], "directors": [{"name": "Amma Asante", "department": "Directing", "job": "Director", "credit_id": "52fe4d0cc3a368484e1d41d7", "profile_path": null, "id": 1193597}], "vote_average": 7.5, "runtime": 105}, "804": {"poster_path": "/konkuLjrROMzc1ieWxpnTqMnb4E.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Cosseted European princess who goes AWOL in Rome and is soon taken under the wing of tabloid journalist Joe Bradley and his photographer sidekick, Irving Radovich. She thinks the boys don't suspect who she really is, but they're onto her -- and sense a sensational story if they can just keep Princess Ann handlers from retrieving her too soon.", "video": false, "id": 804, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Roman Holiday", "tagline": "Romance in romantic Rome!", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0046250", "adult": false, "backdrop_path": "/zMnVqsxi5g2nPglCMy49fYTLAOk.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1953-08-27", "popularity": 0.80284848894539, "original_title": "Roman Holiday", "budget": 1500000, "cast": [{"name": "Gregory Peck", "character": "Joe Bradley", "id": 8487, "credit_id": "52fe4278c3a36847f80214ff", "cast_id": 13, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "Audrey Hepburn", "character": "Princess Ann", "id": 1932, "credit_id": "52fe4278c3a36847f8021503", "cast_id": 14, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 1}, {"name": "Eddie Albert", "character": "Irving Radovich", "id": 11998, "credit_id": "52fe4278c3a36847f8021507", "cast_id": 15, "profile_path": "/1x9ovDtxBVNqBPEzSQ7qVU0ITgw.jpg", "order": 2}, {"name": "Hartley Power", "character": "Mr. Hennessy", "id": 11999, "credit_id": "52fe4278c3a36847f802150b", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Harcourt Williams", "character": "Ambassador", "id": 12000, "credit_id": "52fe4279c3a36847f802150f", "cast_id": 17, "profile_path": "/cpPBPKse0jWYqWTlLXWYRfatQ4j.jpg", "order": 4}, {"name": "Margaret Rawlings", "character": "Countess Vereberg", "id": 12001, "credit_id": "52fe4279c3a36847f8021513", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Tullio Carminati", "character": "Gen. Provno", "id": 12002, "credit_id": "52fe4279c3a36847f8021517", "cast_id": 19, "profile_path": "/v7Tc3mYh36WCESRgUVrAmzoe88t.jpg", "order": 6}, {"name": "Paolo Carlini", "character": "Mario Delani", "id": 12003, "credit_id": "52fe4279c3a36847f802151b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Claudio Ermelli", "character": "Giovanni", "id": 12004, "credit_id": "52fe4279c3a36847f802151f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Paola Borboni", "character": "Charwoman", "id": 12005, "credit_id": "52fe4279c3a36847f8021523", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Alfredo Rizzo", "character": "Cab driver", "id": 12006, "credit_id": "52fe4279c3a36847f8021527", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "William Wyler", "department": "Directing", "job": "Director", "credit_id": "52fe4278c3a36847f80214b9", "profile_path": "/AvxH2K3FDzui3je0wQZBKN3IUTt.jpg", "id": 10001}], "vote_average": 7.7, "runtime": 118}, "805": {"poster_path": "/5KkgZrRAwcD97wyA3WXMrcNILi1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33395426, "overview": "A young couple moves into an infamous New York apartment building to start a family. Things become frightening as Rosemary begins to suspect her unborn baby isn't safe around their strange neighbors.", "video": false, "id": 805, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Rosemary's Baby", "tagline": "Pray for Rosemary's Baby", "vote_count": 179, "homepage": "", "belongs_to_collection": {"backdrop_path": "/36RmiFNEbyfTOF3GG17rOyv4XGD.jpg", "poster_path": "/yP9DnKsSGcEuHJktQYotND6dsgJ.jpg", "id": 264338, "name": "Rosemary's Baby Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0063522", "adult": false, "backdrop_path": "/3THF7D3uPqhV6k7iKsr2EyjqVPK.jpg", "production_companies": [{"name": "William Castle Productions", "id": 10324}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1968-06-12", "popularity": 0.37811396517462, "original_title": "Rosemary's Baby", "budget": 3200000, "cast": [{"name": "Mia Farrow", "character": "Rosemary Woodhouse", "id": 12021, "credit_id": "52fe4279c3a36847f80215b9", "cast_id": 15, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 0}, {"name": "John Cassavetes", "character": "Guy Woodhouse", "id": 11147, "credit_id": "52fe4279c3a36847f80215bd", "cast_id": 16, "profile_path": "/pp71Xsx63aoXTMQgatnYtGRU2fi.jpg", "order": 1}, {"name": "Ruth Gordon", "character": "Minnie Castevet", "id": 4970, "credit_id": "52fe4279c3a36847f80215c1", "cast_id": 17, "profile_path": "/155Pa9jPlWEaPK7qZQFWH6kol5A.jpg", "order": 2}, {"name": "Sidney Blackmer", "character": "Roman Castevet", "id": 12022, "credit_id": "52fe4279c3a36847f80215c5", "cast_id": 18, "profile_path": "/ijI8tIlurlyyVTZYgZvoiifrMi3.jpg", "order": 3}, {"name": "Maurice Evans", "character": "Edward Hutchins", "id": 12023, "credit_id": "52fe4279c3a36847f80215c9", "cast_id": 19, "profile_path": "/tpb69FMfZVErJzpyipYQBGsIRp.jpg", "order": 4}, {"name": "Ralph Bellamy", "character": "Dr. Abraham Sapirstein", "id": 1208, "credit_id": "52fe4279c3a36847f80215cd", "cast_id": 20, "profile_path": "/fjRvQxfzPw77TUMDaJHnPKirpG0.jpg", "order": 5}, {"name": "Victoria Vetri", "character": "Terry Gionoffrio", "id": 12024, "credit_id": "52fe4279c3a36847f80215d1", "cast_id": 21, "profile_path": "/6noQIMsZbHDfoNhoLaTEEsPbei3.jpg", "order": 6}, {"name": "Patsy Kelly", "character": "Laura-Louise McBirney", "id": 12025, "credit_id": "52fe4279c3a36847f80215d5", "cast_id": 22, "profile_path": "/soUhE8AQeLckoUsmarAPTBBeJs5.jpg", "order": 7}, {"name": "Elisha Cook Jr.", "character": "Mr. Nicklas", "id": 3339, "credit_id": "52fe4279c3a36847f80215d9", "cast_id": 23, "profile_path": "/ntXqHlpeaXTM7WqIsGDlYtlG7hk.jpg", "order": 8}, {"name": "Emmaline Henry", "character": "Elise Dunstan", "id": 12026, "credit_id": "52fe4279c3a36847f80215dd", "cast_id": 24, "profile_path": "/aSDa39yeqbWXn4s4s94byonwvC1.jpg", "order": 9}, {"name": "Marianne Gordon", "character": "Joan Jellico", "id": 12027, "credit_id": "52fe4279c3a36847f80215e1", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Charles Grodin", "character": "Dr. Hill", "id": 28164, "credit_id": "52fe4279c3a36847f80215eb", "cast_id": 27, "profile_path": "/qxZjqrA728HrTxWDrwgRqq1uWS2.jpg", "order": 11}, {"name": "Hanna Landy", "character": "Grace Cardiff", "id": 91197, "credit_id": "52fe4279c3a36847f80215ef", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Phil Leeds", "character": "Dr. Shand (as Philip Leeds)", "id": 3433, "credit_id": "52fe4279c3a36847f80215f3", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "D'Urville Martin", "character": "Diego", "id": 109086, "credit_id": "52fe4279c3a36847f80215f7", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Hope Summers", "character": "Mrs. Gilmore", "id": 85838, "credit_id": "52fe4279c3a36847f80215fb", "cast_id": 31, "profile_path": "/1IY7GQ3Z84647KnEPAWRJhqdzTO.jpg", "order": 15}, {"name": "Wende Wagner", "character": "Rosemary's Girl Friend (as Wendy Wagner)", "id": 103457, "credit_id": "52fe4279c3a36847f80215ff", "cast_id": 32, "profile_path": null, "order": 16}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802156d", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 7.0, "runtime": 136}, "74534": {"poster_path": "/iRMzRGR5DHSik3IA9gkeMUZGPv6.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129, "overview": "British retirees travel to India to take up residence in what they believe is a newly restored hotel. Less luxurious than its advertisements, the Marigold Hotel nevertheless slowly begins to charm in unexpected ways.", "video": false, "id": 74534, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Best Exotic Marigold Hotel", "tagline": "Share the journey. Share the laughter.", "vote_count": 129, "homepage": "http://www.foxsearchlight.com/thebestexoticmarigoldhotel/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8pMHYwfR8K2xR19RilAuVCyEBT.jpg", "id": 306937, "name": "Best Exotic Marigold Hotel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1412386", "adult": false, "backdrop_path": "/qtZbNZiFrtviX45OKeu73F7XP8p.jpg", "production_companies": [{"name": "Participant Media", "id": 6735}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}], "release_date": "2011-11-28", "popularity": 1.40702301298671, "original_title": "The Best Exotic Marigold Hotel", "budget": 10, "cast": [{"name": "Bill Nighy", "character": "Douglas Ainslie", "id": 2440, "credit_id": "52fe48d0c3a368484e10c3f7", "cast_id": 2, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "Maggie Smith", "character": "Muriel Donnelly", "id": 10978, "credit_id": "52fe48d0c3a368484e10c3fb", "cast_id": 3, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 1}, {"name": "Tom Wilkinson", "character": "Graham Dashwood", "id": 207, "credit_id": "52fe48d0c3a368484e10c3ff", "cast_id": 4, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 2}, {"name": "Judi Dench", "character": "Evelyn Greenslade", "id": 5309, "credit_id": "52fe48d0c3a368484e10c403", "cast_id": 5, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Dev Patel", "character": "Sonny Kapoor", "id": 76788, "credit_id": "52fe48d0c3a368484e10c407", "cast_id": 6, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 4}, {"name": "Penelope Wilton", "character": "Jean Ainslie", "id": 1249, "credit_id": "52fe48d0c3a368484e10c40b", "cast_id": 7, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 5}, {"name": "Ramona Marquez", "character": "Madge's Grandchild", "id": 224878, "credit_id": "52fe48d0c3a368484e10c40f", "cast_id": 8, "profile_path": "/oLT0EWlrSVxkH6VMmGEnWUCC63M.jpg", "order": 6}, {"name": "Celia Imrie", "character": "Madge Hardcastle", "id": 9139, "credit_id": "52fe48d0c3a368484e10c413", "cast_id": 9, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 7}, {"name": "Ronald Pickup", "character": "Norman Cousins", "id": 32556, "credit_id": "52fe48d0c3a368484e10c417", "cast_id": 10, "profile_path": "/a0Q0rSRe8yBPoAyWhNSX7pzIaYq.jpg", "order": 8}, {"name": "Hugh Dickson", "character": "Judge", "id": 1005280, "credit_id": "52fe48d0c3a368484e10c42d", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Patrick Pearson", "character": "Graham's Colleague", "id": 177596, "credit_id": "52fe48d0c3a368484e10c431", "cast_id": 16, "profile_path": null, "order": 10}], "directors": [{"name": "John Madden", "department": "Directing", "job": "Director", "credit_id": "52fe48d0c3a368484e10c3f3", "profile_path": "/8HPERxuUmp44PJcwbweQfICo149.jpg", "id": 18844}], "vote_average": 6.7, "runtime": 124}, "807": {"poster_path": "/mhFXxB76LVgJBIfJM1sAuVBtVKv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 327311859, "overview": "Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.", "video": false, "id": 807, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Se7en", "tagline": "Seven deadly sins. Seven ways to die.", "vote_count": 1934, "homepage": "http://www.sevenmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114369", "adult": false, "backdrop_path": "/ba4CpvnaxvAgff2jHiaqJrVpZJ5.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1995-09-22", "popularity": 1.73636805230178, "original_title": "Se7en", "budget": 33000000, "cast": [{"name": "Brad Pitt", "character": "Detective David Mills", "id": 287, "credit_id": "52fe4279c3a36847f802178b", "cast_id": 17, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Detective Lt. William Somerset", "id": 192, "credit_id": "52fe4279c3a36847f802178f", "cast_id": 18, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Gwyneth Paltrow", "character": "Tracy Mills", "id": 12052, "credit_id": "52fe4279c3a36847f8021793", "cast_id": 19, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 2}, {"name": "R. Lee Ermey", "character": "Police Captain", "id": 8655, "credit_id": "52fe4279c3a36847f8021797", "cast_id": 20, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 3}, {"name": "Andrew Kevin Walker", "character": "Dead Man", "id": 12047, "credit_id": "52fe4279c3a36847f802179b", "cast_id": 21, "profile_path": "/tPypY1vmiLEkoFuN0Q5pUU338ms.jpg", "order": 4}, {"name": "Kevin Spacey", "character": "John Doe", "id": 1979, "credit_id": "52fe4279c3a36847f802179f", "cast_id": 22, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 5}, {"name": "Daniel Zacapa", "character": "Detective Taylor", "id": 12054, "credit_id": "52fe4279c3a36847f80217a3", "cast_id": 23, "profile_path": "/lGleijPJER3lanO4cGcgfLfGRuX.jpg", "order": 6}, {"name": "John Cassini", "character": "Officer Davis", "id": 12055, "credit_id": "52fe4279c3a36847f80217a7", "cast_id": 24, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 7}, {"name": "Hawthorne James", "character": "George, Library Night Guard", "id": 12056, "credit_id": "52fe4279c3a36847f80217ab", "cast_id": 25, "profile_path": "/i7PiUf2mN7zs3V78NPlF79nCOZ4.jpg", "order": 8}, {"name": "Richard Roundtree", "character": "Dist. Atty. Martin Talbot", "id": 6487, "credit_id": "52fe4279c3a36847f80217af", "cast_id": 26, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 9}, {"name": "John C. McGinley", "character": "California", "id": 11885, "credit_id": "52fe4279c3a36847f80217b3", "cast_id": 27, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 10}, {"name": "Richard Portnow", "character": "as Dr. Beardsley", "id": 4255, "credit_id": "52fe4279c3a36847f80217c3", "cast_id": 30, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 11}, {"name": "Emily Wagner", "character": "as Detective Sara", "id": 157434, "credit_id": "52fe4279c3a36847f80217c7", "cast_id": 31, "profile_path": "/kjyX1FvobjwfksNJUaxSJ5ZasvU.jpg", "order": 12}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f80217bf", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.7, "runtime": 127}, "808": {"poster_path": "/140ewbWv8qHStD3mlBDvvGd0Zvu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 484409218, "overview": "It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.", "video": false, "id": 808, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek", "tagline": "The greatest fairy tale never told.", "vote_count": 1220, "homepage": "http://www.shrek.com/", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0126029", "adult": false, "backdrop_path": "/wBG4kHfhwm3bLwKUFNRByXXv4r2.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2001-05-16", "popularity": 2.11145176311114, "original_title": "Shrek", "budget": 60000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe4279c3a36847f80218a1", "cast_id": 24, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe4279c3a36847f80218a5", "cast_id": 25, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe4279c3a36847f80218a9", "cast_id": 26, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "John Lithgow", "character": "Lord Farquaad (voice)", "id": 12074, "credit_id": "52fe4279c3a36847f80218ad", "cast_id": 27, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 3}, {"name": "Vincent Cassel", "character": "Monsieur Hood (voice)", "id": 1925, "credit_id": "52fe4279c3a36847f80218b1", "cast_id": 28, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 4}, {"name": "Peter Dennis", "character": "Ogre Hunter (voice)", "id": 12075, "credit_id": "52fe4279c3a36847f80218b5", "cast_id": 29, "profile_path": "/9fNNPSTxuoVgsdJwQVmWUx9EDLT.jpg", "order": 5}, {"name": "Clive Pearse", "character": "Ogre Hunter (voice)", "id": 12076, "credit_id": "52fe4279c3a36847f80218b9", "cast_id": 30, "profile_path": "/dO8RhoEjfRzdWfNARRo1XaFLQOm.jpg", "order": 6}, {"name": "Jim Cummings", "character": "Captain of Guards (voice)", "id": 12077, "credit_id": "52fe4279c3a36847f80218bd", "cast_id": 31, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 7}, {"name": "Bobby Block", "character": "Baby Bear (voice)", "id": 12078, "credit_id": "52fe4279c3a36847f80218c1", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Chris Miller", "character": "Geppetto / Magic Mirror (voice)", "id": 12098, "credit_id": "52fe4279c3a36847f80218cb", "cast_id": 34, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 9}, {"name": "Cody Cameron", "character": "Pinocchio / Three Pigs (voice)", "id": 12095, "credit_id": "52fe4279c3a36847f80218cf", "cast_id": 35, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 10}, {"name": "Kathleen Freeman", "character": "Old Woman (voice)", "id": 7210, "credit_id": "52fe4279c3a36847f80218d3", "cast_id": 36, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 11}, {"name": "Conrad Vernon", "character": "Gingerbread Man (voice)", "id": 12080, "credit_id": "52fe4279c3a36847f80218d7", "cast_id": 38, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 12}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f8021819", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}, {"name": "Vicky Jenson", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802181f", "profile_path": "/eFk4SIk0nDpSfb1u8qG8DZ7Ya3e.jpg", "id": 12058}], "vote_average": 6.9, "runtime": 90}, "809": {"poster_path": "/akWDA0BMVYK4OTM92T5i91DYnsT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 919838758, "overview": "Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.", "video": false, "id": 809, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek 2", "tagline": "Once upon another time...", "vote_count": 861, "homepage": "http://www.shrek2.com/", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298148", "adult": false, "backdrop_path": "/gdFAYLb5NR5HqcEKnPloOM6fX4B.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2004-05-18", "popularity": 1.86864814545588, "original_title": "Shrek 2", "budget": 150000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe4279c3a36847f80219ad", "cast_id": 29, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe4279c3a36847f802197f", "cast_id": 18, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe4279c3a36847f8021983", "cast_id": 19, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Julie Andrews", "character": "Queen (voice)", "id": 5823, "credit_id": "52fe4279c3a36847f8021987", "cast_id": 20, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 3}, {"name": "Antonio Banderas", "character": "Puss In Boots (voice)", "id": 3131, "credit_id": "52fe4279c3a36847f802198b", "cast_id": 21, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 4}, {"name": "John Cleese", "character": "King (voice)", "id": 8930, "credit_id": "52fe4279c3a36847f802198f", "cast_id": 22, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Rupert Everett", "character": "Prince Charming (voice)", "id": 4757, "credit_id": "52fe4279c3a36847f8021993", "cast_id": 23, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 6}, {"name": "Jennifer Saunders", "character": "Fairy Godmother (voice)", "id": 12094, "credit_id": "52fe4279c3a36847f8021997", "cast_id": 24, "profile_path": "/nlxiFy0LUYGlICaFY3rF2DRovcc.jpg", "order": 7}, {"name": "Cody Cameron", "character": "Pinocchio/Three Pigs (voice)", "id": 12095, "credit_id": "52fe4279c3a36847f802199b", "cast_id": 25, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 8}, {"name": "Conrad Vernon", "character": "Gingerbread Man/Cedric/Announcer/Muffin Man/Mongo (voice)", "id": 12080, "credit_id": "52fe4279c3a36847f802199f", "cast_id": 26, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 9}, {"name": "Christopher Knights", "character": "Blind Mouse (voice)", "id": 12097, "credit_id": "52fe4279c3a36847f80219a3", "cast_id": 27, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 10}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802191b", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}, {"name": "Kelly Asbury", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f8021921", "profile_path": "/jJAHjXFbjEUJrYjxyuj0AWMPAqW.jpg", "id": 12079}, {"name": "Conrad Vernon", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f8021927", "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "id": 12080}], "vote_average": 6.3, "runtime": 93}, "810": {"poster_path": "/eDAnxTxVbrTFDz8KTMGgBXYLgYn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 798958165, "overview": "Shrek and Co, return for more adventures. The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. Shrek however wants to return to his cosy swamp and live in peace and quiet. So when he finds out their is another heir to the throne, they set of to bring him back to rule the kingdom. Meanwhile, Prince Charming enlists the fairy tale baddies to steal the throne away.", "video": false, "id": 810, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek the Third", "tagline": "Who's ready for Thirds?", "vote_count": 653, "homepage": "http://www.shrekthethird.com/flash/index.html", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0413267", "adult": false, "backdrop_path": "/7fT1IogBbxM6S7SOIGSe7BXLEMq.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2007-05-17", "popularity": 1.58792381501819, "original_title": "Shrek the Third", "budget": 160000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe4279c3a36847f8021a47", "cast_id": 22, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe4279c3a36847f8021a23", "cast_id": 13, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe4279c3a36847f8021a27", "cast_id": 14, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Julie Andrews", "character": "Queen Lillian (voice)", "id": 5823, "credit_id": "52fe4279c3a36847f8021a2b", "cast_id": 15, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 3}, {"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe4279c3a36847f8021a2f", "cast_id": 16, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 4}, {"name": "John Cleese", "character": "King Harold (voice)", "id": 8930, "credit_id": "52fe4279c3a36847f8021a33", "cast_id": 17, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Rupert Everett", "character": "Prince Charming (voice)", "id": 4757, "credit_id": "52fe4279c3a36847f8021a37", "cast_id": 18, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 6}, {"name": "Eric Idle", "character": "Merlin (voice)", "id": 10713, "credit_id": "52fe4279c3a36847f8021a3b", "cast_id": 19, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 7}, {"name": "Amy Sedaris", "character": "Cinderella (voice)", "id": 12110, "credit_id": "52fe4279c3a36847f8021a3f", "cast_id": 20, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 8}, {"name": "Justin Timberlake", "character": "Prince Artie (voice)", "id": 12111, "credit_id": "52fe4279c3a36847f8021a43", "cast_id": 21, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 9}], "directors": [{"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f80219e9", "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "id": 12098}, {"name": "Raman Hui", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f80219ef", "profile_path": "/BmPYRLBeb2Ln881ihfemK1lo4w.jpg", "id": 12099}], "vote_average": 5.8, "runtime": 93}, "9003": {"poster_path": "/4nfAhOTlfZUHNorHJXEib7GYFpp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 14564027, "overview": "An unfaithful wife encounters the zombie of her dead lover, who's being chased by demons after he escaped from their sado-masochistic Hell.", "video": false, "id": 9003, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Hellraiser", "tagline": "He'll tear your soul apart.", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uaEUgCqB6lGkvM4Wy5blNwLJdfa.jpg", "poster_path": "/lIK0UgJsA18Z5I1PwpucXzgyF3A.jpg", "id": 8917, "name": "Hellraiser Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093177", "adult": false, "backdrop_path": "/jd7pIx2XnO8wRdPT5ncAjhFxNwL.jpg", "production_companies": [{"name": "Cinemarque Entertainment BV", "id": 15338}, {"name": "Film Futures", "id": 15339}, {"name": "Rivdel Films", "id": 15340}], "release_date": "1987-09-11", "popularity": 0.598810698309347, "original_title": "Hellraiser", "budget": 1000000, "cast": [{"name": "Andrew Robinson", "character": "Larry Cotton", "id": 14782, "credit_id": "52fe44d0c3a36847f80ab8e9", "cast_id": 15, "profile_path": "/bJnqfONR5wdtIciYQ0tBnRX4PnD.jpg", "order": 0}, {"name": "Clare Higgins", "character": "Julia Cotton", "id": 45588, "credit_id": "52fe44d0c3a36847f80ab8ed", "cast_id": 16, "profile_path": "/s8Z51Z1jsVYEzCd916dIb1C6X5F.jpg", "order": 1}, {"name": "Ashley Laurence", "character": "Kirsty Cotton", "id": 56551, "credit_id": "52fe44d0c3a36847f80ab8f1", "cast_id": 17, "profile_path": "/nBpBKZdYpENFMi4cQAlaIVel9NU.jpg", "order": 2}, {"name": "Sean Chapman", "character": "Frank Cotton", "id": 56552, "credit_id": "52fe44d0c3a36847f80ab8f5", "cast_id": 18, "profile_path": null, "order": 3}, {"name": "Oliver Smith", "character": "Frank als Untoter", "id": 24737, "credit_id": "52fe44d0c3a36847f80ab8f9", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Robert Hines", "character": "Steve", "id": 56553, "credit_id": "52fe44d0c3a36847f80ab8fd", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Anthony Allen", "character": "Erstes Opfer", "id": 56554, "credit_id": "52fe44d0c3a36847f80ab901", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Leon Davis", "character": "Zweites Opfer", "id": 56555, "credit_id": "52fe44d0c3a36847f80ab905", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Kenneth Nelson", "character": "Bill", "id": 56557, "credit_id": "52fe44d0c3a36847f80ab90d", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Gay Baynes", "character": "Evelyn", "id": 56558, "credit_id": "52fe44d0c3a36847f80ab911", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Niall Buggy", "character": "Gast", "id": 40043, "credit_id": "52fe44d0c3a36847f80ab915", "cast_id": 26, "profile_path": "/9TPlvhoblLdowWVSs8olnG0J7CO.jpg", "order": 11}, {"name": "Nicholas Vince", "character": "Chatterer-Zenobit", "id": 56559, "credit_id": "52fe44d0c3a36847f80ab919", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Simon Bamford", "character": "Butterball-Zenobit", "id": 56560, "credit_id": "52fe44d0c3a36847f80ab91d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Grace Kirby", "character": "Weiblicher Zenobit", "id": 56561, "credit_id": "52fe44d0c3a36847f80ab921", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Sharon Bower", "character": "Krankenschwester", "id": 26869, "credit_id": "52fe44d0c3a36847f80ab925", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Raul Newney", "character": "Arzt", "id": 56562, "credit_id": "52fe44d0c3a36847f80ab929", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Doug Bradley", "character": "Lead Cenobite (Pinhead)", "id": 73040, "credit_id": "52fe44d0c3a36847f80ab92d", "cast_id": 32, "profile_path": "/hzITESBe6eDN4Y3TNZ6Fk6wsfaC.jpg", "order": 17}, {"name": "Michael Cassidy", "character": "Drittes Opfer", "id": 1349468, "credit_id": "53df0be9c3a3686c45001dcd", "cast_id": 38, "profile_path": null, "order": 18}], "directors": [{"name": "Clive Barker", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80ab8af", "profile_path": "/1Hlv4fojc9ogiWfqREB0iP47yVI.jpg", "id": 31211}], "vote_average": 6.8, "runtime": 94}, "812": {"poster_path": "/oA2AY6adBYrHSrvMQSfZ14yA0HA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 504050219, "overview": "Princess Jasmine grows tired of being forced to remain in the palace and she sneaks out into the marketplace in disguise where she meets street-urchin Aladdin and the two fall in love, although she may only marry a prince. After being thrown in jail, Aladdin and becomes embroiled in a plot to find a mysterious lamp with which the evil Jafar hopes to rule the land.", "video": false, "id": 812, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Aladdin", "tagline": "Wish granted!", "vote_count": 1251, "homepage": "http://disneydvd.disney.go.com/aladdin-special-edition.html", "belongs_to_collection": {"backdrop_path": "/acIVr0B6wWxvtEzoIOzWWgY6bs2.jpg", "poster_path": "/9jAbtLbAbebtuF5q1gZIPUCuegd.jpg", "id": 86027, "name": "Aladdin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103639", "adult": false, "backdrop_path": "/oZN5w508NSlrmcMql1wohhsQGIg.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1992-11-25", "popularity": 1.6974222070721, "original_title": "Aladdin", "budget": 28000000, "cast": [{"name": "Scott Weinger", "character": "Aladdin 'Al' (voice)", "id": 15827, "credit_id": "52fe427ac3a36847f8021b0d", "cast_id": 18, "profile_path": "/rlZpPoORiJzStzIuAyrPOlLhnaL.jpg", "order": 0}, {"name": "Robin Williams", "character": "Genie (voice)", "id": 2157, "credit_id": "52fe427ac3a36847f8021b11", "cast_id": 20, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Linda Larkin", "character": "Princess Jasmine (voice)", "id": 15829, "credit_id": "52fe427ac3a36847f8021b15", "cast_id": 21, "profile_path": "/7dFMvof0vdGHVvtfpAewjzGOZhf.jpg", "order": 2}, {"name": "Jonathan Freeman", "character": "Grand Vizier Jafar (voice)", "id": 15830, "credit_id": "52fe427ac3a36847f8021b19", "cast_id": 22, "profile_path": "/zOuESGSTRY0LS3mC9u03evqvjMi.jpg", "order": 3}, {"name": "Frank Welker", "character": "Abu the Monkey (voice)", "id": 15831, "credit_id": "52fe427ac3a36847f8021b1d", "cast_id": 23, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 4}, {"name": "Gilbert Gottfried", "character": "Iago the Parrot (voice)", "id": 15832, "credit_id": "52fe427ac3a36847f8021b21", "cast_id": 24, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 5}, {"name": "Douglas Seale", "character": "Sultan of Agrabah (voice)", "id": 15833, "credit_id": "52fe427ac3a36847f8021b25", "cast_id": 25, "profile_path": "/1Tbu7xnv3iwiLtKIJg1taQITbKC.jpg", "order": 6}, {"name": "Charlie Adler", "character": "Gazeem (voice)", "id": 81178, "credit_id": "52fe427ac3a36847f8021b3b", "cast_id": 29, "profile_path": "/eSZtf1oCn8PY3VEBclD7VkCEWS.jpg", "order": 7}, {"name": "Corey Burton", "character": "Prince Achmed (voice)", "id": 35219, "credit_id": "52fe427ac3a36847f8021b3f", "cast_id": 30, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 8}, {"name": "Jim Cummings", "character": "Razoul / Farouk (voice)", "id": 12077, "credit_id": "52fe427ac3a36847f8021b43", "cast_id": 31, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021b03", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021b09", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 7.1, "runtime": 90}, "813": {"poster_path": "/b4sAWNIbfXw4WTdc1wiVRBk2Vko.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83453539, "overview": "Still craving for the love of his life, ex-Air Force pilot Ted Striker follows Elaine onto the flight that she is working on as cabin crew. Elaine doesn't want to be with Ted anymore, but when the crew and passengers fall ill from food poisoning, Ted might be the only one who can save them.", "video": false, "id": 813, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Airplane!", "tagline": "What's slower than a speeding bullet, and able to hit tall buildings at a single bound?", "vote_count": 235, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sAE8KldbthdWBgvYCvpq9aMU1Kl.jpg", "poster_path": "/u8IXYbpoRcKMlnhUvND0NB8HsAM.jpg", "id": 91663, "name": "Airplane! The Collection!"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080339", "adult": false, "backdrop_path": "/tFPvOmz0uNmfp1sq2ebYAeUCLQ4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1980-07-02", "popularity": 0.607225306222177, "original_title": "Airplane!", "budget": 3500000, "cast": [{"name": "Robert Hays", "character": "Ted Striker", "id": 14416, "credit_id": "52fe427ac3a36847f8021bbf", "cast_id": 5, "profile_path": "/1KWB4DXcsTVNDkDOaTJYatiTmDn.jpg", "order": 0}, {"name": "Julie Hagerty", "character": "Elaine", "id": 14415, "credit_id": "52fe427ac3a36847f8021bbb", "cast_id": 4, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 1}, {"name": "Kareem Abdul-Jabbar", "character": "Murdock", "id": 14414, "credit_id": "52fe427ac3a36847f8021baf", "cast_id": 1, "profile_path": "/ouYcoXwHmxiOEI5eRHuYTyAXCos.jpg", "order": 2}, {"name": "Lloyd Bridges", "character": "McCroskey", "id": 2177, "credit_id": "52fe427ac3a36847f8021bb3", "cast_id": 2, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 3}, {"name": "Peter Graves", "character": "Captain Oveur", "id": 9111, "credit_id": "52fe427ac3a36847f8021bb7", "cast_id": 3, "profile_path": "/sR9B0mE399EGI9aRxMbWMpk2GKT.jpg", "order": 4}, {"name": "Leslie Nielsen", "character": "Dr. Rumack", "id": 7633, "credit_id": "52fe427ac3a36847f8021bc3", "cast_id": 6, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 5}, {"name": "Lorna Patterson", "character": "Randy", "id": 14418, "credit_id": "52fe427ac3a36847f8021bc7", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Robert Stack", "character": "Rex Kramer", "id": 2493, "credit_id": "52fe427ac3a36847f8021bcb", "cast_id": 8, "profile_path": "/gC4P6esXuU9LRlwUVd3m0K9FyKF.jpg", "order": 7}, {"name": "Stephen Stucker", "character": "Johnny", "id": 14423, "credit_id": "52fe427ac3a36847f8021bcf", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Jim Abrahams", "character": "Religious zealot #6", "id": 12936, "credit_id": "52fe427ac3a36847f8021bd3", "cast_id": 10, "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "order": 9}, {"name": "Frank Ashmore", "character": "Victor Basta", "id": 14427, "credit_id": "52fe427ac3a36847f8021bd7", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jonathan Banks", "character": "Gunderson", "id": 783, "credit_id": "52fe427ac3a36847f8021bdb", "cast_id": 12, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 11}, {"name": "Craig Berenson", "character": "Paul Carey", "id": 174872, "credit_id": "52fe427ac3a36847f8021c75", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Barbara Billingsley", "character": "Jive Lady", "id": 117723, "credit_id": "52fe427ac3a36847f8021c79", "cast_id": 39, "profile_path": "/oBI0DMzRe0XdShUKgny3wVQasGg.jpg", "order": 13}, {"name": "Lee Bryant", "character": "Mrs. Hammen", "id": 160328, "credit_id": "52fe427ac3a36847f8021c7d", "cast_id": 40, "profile_path": "/riFEbXO78dRCTxzQ358AVr1m4uD.jpg", "order": 14}, {"name": "Joyce Bulifant", "character": "Mrs. Davis", "id": 153386, "credit_id": "52fe427ac3a36847f8021c81", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Mae E. Campbell", "character": "Security Lady", "id": 169802, "credit_id": "52fe427ac3a36847f8021c85", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Ethel Merman", "character": "Lieutenant Hurwitz", "id": 109897, "credit_id": "52fe427ac3a36847f8021c89", "cast_id": 43, "profile_path": "/r2aKeUQHi5CTrthJtV6FfoJsDeq.jpg", "order": 17}, {"name": "Jimmie Walker", "character": "Windshield Wiper Man", "id": 31366, "credit_id": "52fe427ac3a36847f8021c8d", "cast_id": 44, "profile_path": "/3E8l7vhY1LHSOqbb6UTjRpHIZRM.jpg", "order": 18}, {"name": "Jill Whelan", "character": "Lisa Davis", "id": 173263, "credit_id": "52fe427ac3a36847f8021c91", "cast_id": 45, "profile_path": "/fyDOGDvnevuZ8gvrxrkSwyk6Jsy.jpg", "order": 19}, {"name": "Kitten Natividad", "character": "", "id": 41711, "credit_id": "52fe427ac3a36847f8021cb3", "cast_id": 51, "profile_path": null, "order": 20}, {"name": "Nora Meerbaum", "character": "Cocaine Lady", "id": 1449360, "credit_id": "551f18ef9251415c7a000280", "cast_id": 52, "profile_path": null, "order": 21}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021be1", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}, {"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021be7", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}, {"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021bed", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.7, "runtime": 88}, "814": {"poster_path": "/iJppgltxM80TfwLEXoJnTGz9rpY.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31973249, "overview": "Two American tourists in England are attacked by a werewolf that none of the locals will admit exists.", "video": false, "id": 814, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "An American Werewolf in London", "tagline": "Beware the Moon.", "vote_count": 123, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/lmGA5MhSb0jFzRdR74yzsUqgtgI.jpg", "id": 9380, "name": "American Werewolf Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082010", "adult": false, "backdrop_path": "/lFiEdW3zVjR2Wujxu3yZLpL2N8n.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Guber/Peters Company", "id": 276}, {"name": "American Werewolf Inc.", "id": 606}, {"name": "Lyncanthrope Films", "id": 607}], "release_date": "1981-08-21", "popularity": 0.236890084834492, "original_title": "An American Werewolf in London", "budget": 10000000, "cast": [{"name": "David Naughton", "character": "David Kessler", "id": 14463, "credit_id": "52fe427ac3a36847f8021d3d", "cast_id": 16, "profile_path": "/ehDE47qkUux5a18Mi7zqReBj79b.jpg", "order": 0}, {"name": "Jenny Agutter", "character": "Nurse Alex Price", "id": 14464, "credit_id": "52fe427ac3a36847f8021d41", "cast_id": 17, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 1}, {"name": "Griffin Dunne", "character": "Jack Goodman", "id": 2171, "credit_id": "52fe427ac3a36847f8021d45", "cast_id": 18, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 2}, {"name": "John Woodvine", "character": "Dr. J. S. Hirsch", "id": 14465, "credit_id": "52fe427ac3a36847f8021d49", "cast_id": 19, "profile_path": "/9re40l4z8VnSNtCjncUbALSBvXE.jpg", "order": 3}, {"name": "Lila Kaye", "character": "Barmaid", "id": 14466, "credit_id": "52fe427ac3a36847f8021d4d", "cast_id": 20, "profile_path": null, "order": 4}, {"name": "Joe Belcher", "character": "Truck Driver", "id": 14467, "credit_id": "52fe427ac3a36847f8021d51", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "David Schofield", "character": "Dart Player", "id": 939, "credit_id": "52fe427ac3a36847f8021d55", "cast_id": 22, "profile_path": "/6FdYsGTI85M5s5QDbFCogmQWsOR.jpg", "order": 6}, {"name": "Brian Glover", "character": "Chess Player", "id": 14468, "credit_id": "52fe427ac3a36847f8021d59", "cast_id": 23, "profile_path": "/dUqgIdAO8jctUM4ordJ0cbovR4M.jpg", "order": 7}, {"name": "Rik Mayall", "character": "2nd Chess Player", "id": 14469, "credit_id": "52fe427ac3a36847f8021d5d", "cast_id": 24, "profile_path": "/wntKz7ORqD8mAsME6CFJdWTn6m.jpg", "order": 8}, {"name": "Sean Baker", "character": "2nd Dart Player", "id": 14470, "credit_id": "52fe427ac3a36847f8021d61", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Paddy Ryan", "character": "First Werewolf", "id": 14471, "credit_id": "52fe427ac3a36847f8021d65", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Anne-Marie Davies", "character": "Nurse Susan Gallagher", "id": 14472, "credit_id": "52fe427ac3a36847f8021d69", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021cf1", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.8, "runtime": 97}, "9007": {"poster_path": "/d25cTIEuTSMsbaG9ltIxHkKReBl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102854431, "overview": "Shortly after David Abbott moves into his new San Francisco digs, he has an unwelcome visitor on his hands: winsome Elizabeth Martinson, who asserts that the apartment is hers -- and promptly vanishes. When she starts appearing and disappearing at will, David thinks she's a ghost, while Elizabeth is convinced she's alive.", "video": false, "id": 9007, "genres": [{"id": 35, "name": "Comedy"}], "title": "Just Like Heaven", "tagline": "It's a wonderful afterlife.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425123", "adult": false, "backdrop_path": "/fMXWvAU0EpeGK5IGewWU7Myh32h.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "MacDonald/Parkes Productions", "id": 384}], "release_date": "2005-09-16", "popularity": 0.858921145609978, "original_title": "Just Like Heaven", "budget": 58000000, "cast": [{"name": "Reese Witherspoon", "character": "Dr. Elizabeth Masterson", "id": 368, "credit_id": "52fe44d0c3a36847f80ab9c3", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Mark Ruffalo", "character": "David Abbott", "id": 103, "credit_id": "52fe44d0c3a36847f80ab9c7", "cast_id": 2, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 1}, {"name": "Donal Logue", "character": "Jack Houriskey", "id": 10825, "credit_id": "52fe44d0c3a36847f80ab9cb", "cast_id": 3, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 2}, {"name": "Dina Spybey-Waters", "character": "Abby Brody", "id": 56567, "credit_id": "52fe44d0c3a36847f80ab9cf", "cast_id": 4, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 3}, {"name": "Ben Shenkman", "character": "Dr. Brett Rushton", "id": 6437, "credit_id": "52fe44d0c3a36847f80ab9d3", "cast_id": 5, "profile_path": "/ocLEexcLxffgLJ41wuqc80YmdeY.jpg", "order": 4}, {"name": "Jon Heder", "character": "Darryl", "id": 53926, "credit_id": "52fe44d0c3a36847f80ab9e3", "cast_id": 14, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 5}, {"name": "Ivana Mili\u010devi\u0107", "character": "Katrina", "id": 29930, "credit_id": "52fe44d0c3a36847f80ab9e7", "cast_id": 15, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 6}, {"name": "Caroline Aaron", "character": "Grace", "id": 1910, "credit_id": "52fe44d0c3a36847f80aba27", "cast_id": 26, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 7}, {"name": "Rosalind Chao", "character": "Fran", "id": 74073, "credit_id": "52fe44d0c3a36847f80aba2b", "cast_id": 27, "profile_path": "/kTcPnmYxm9ez3vI2yX5Nm6Y3dXy.jpg", "order": 8}, {"name": "Ron Canada", "character": "Dr. Walsh", "id": 85170, "credit_id": "52fe44d0c3a36847f80aba2f", "cast_id": 28, "profile_path": "/wN1myF7qnxJCks6OuS3BXVlShSG.jpg", "order": 9}, {"name": "Willie Garson", "character": "Maitre D'", "id": 1542, "credit_id": "52fe44d0c3a36847f80aba33", "cast_id": 29, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 10}, {"name": "Gabrielle Made", "character": "Nurse Maria", "id": 1079782, "credit_id": "52fe44d0c3a36847f80aba37", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "William Caploe", "character": "Nurse Bill", "id": 1124108, "credit_id": "52fe44d0c3a36847f80aba3b", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Shulie Cowen", "character": "Nurse Jenny", "id": 170882, "credit_id": "52fe44d0c3a36847f80aba3f", "cast_id": 32, "profile_path": null, "order": 13}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80ab9df", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 6.3, "runtime": 95}, "9008": {"poster_path": "/sYQsmMl4oG56NtFaNkDxuJhhODa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28965197, "overview": "Tells the true story of a 60 Minutes television series expos\u00e9 of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand", "video": false, "id": 9008, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Insider", "tagline": "Two men driven to tell the truth... whatever the cost.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0140352", "adult": false, "backdrop_path": "/xra1bQnjUUNHSebQeRNKJdO2oJ6.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Forward Pass", "id": 675}, {"name": "Kaitz Productions", "id": 8758}, {"name": "Mann/Roth Productions", "id": 8759}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "1999-10-28", "popularity": 1.08399521539416, "original_title": "The Insider", "budget": 68000000, "cast": [{"name": "Al Pacino", "character": "Lowell Bergman", "id": 1158, "credit_id": "52fe44d1c3a36847f80abae3", "cast_id": 12, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Jeffrey Wigand", "id": 934, "credit_id": "52fe44d1c3a36847f80abae7", "cast_id": 13, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Mike Wallace", "id": 290, "credit_id": "52fe44d1c3a36847f80abaeb", "cast_id": 14, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Diane Venora", "character": "Liane Wigand", "id": 6200, "credit_id": "52fe44d1c3a36847f80abaef", "cast_id": 15, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 3}, {"name": "Philip Baker Hall", "character": "Don Hewitt", "id": 4492, "credit_id": "52fe44d1c3a36847f80abaf3", "cast_id": 16, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 4}, {"name": "Lindsay Crouse", "character": "Sharon Tiller", "id": 32225, "credit_id": "52fe44d1c3a36847f80abaf7", "cast_id": 17, "profile_path": "/mAZTWVbtfmC0R4R6TZ3rjhJSW0b.jpg", "order": 5}, {"name": "Debi Mazar", "character": "Debbie De Luca", "id": 5578, "credit_id": "52fe44d1c3a36847f80abafb", "cast_id": 18, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 6}, {"name": "Stephen Tobolowsky", "character": "Eric Kluster", "id": 537, "credit_id": "52fe44d1c3a36847f80abaff", "cast_id": 19, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 7}, {"name": "Colm Feore", "character": "Richard Scruggs", "id": 10132, "credit_id": "52fe44d1c3a36847f80abb03", "cast_id": 20, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 8}, {"name": "Bruce McGill", "character": "Ron Motley", "id": 14888, "credit_id": "52fe44d1c3a36847f80abb07", "cast_id": 21, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 9}, {"name": "Gina Gershon", "character": "Helen Caperelli", "id": 11150, "credit_id": "52fe44d1c3a36847f80abb0b", "cast_id": 22, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 10}, {"name": "Michael Gambon", "character": "Thomas Sandefur", "id": 5658, "credit_id": "52fe44d1c3a36847f80abb0f", "cast_id": 23, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 11}, {"name": "Rip Torn", "character": "John Scanlon", "id": 9626, "credit_id": "52fe44d1c3a36847f80abb13", "cast_id": 24, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 12}, {"name": "Lynne Thigpen", "character": "Mrs. Williams", "id": 71266, "credit_id": "52fe44d1c3a36847f80abb17", "cast_id": 25, "profile_path": "/hxyt6zQokF8LvWnsPPzIik8pJSG.jpg", "order": 13}, {"name": "Hallie Kate Eisenberg", "character": "Barbara Wigand", "id": 15674, "credit_id": "52fe44d1c3a36847f80abb1b", "cast_id": 26, "profile_path": "/hKxnAGbWiiMzOiZKwrbJIul8DTH.jpg", "order": 14}, {"name": "Michael Paul Chan", "character": "Norman the Cameraman", "id": 17355, "credit_id": "52fe44d1c3a36847f80abb1f", "cast_id": 27, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 15}, {"name": "Linda Hart", "character": "Mrs. Wigand", "id": 53602, "credit_id": "52fe44d1c3a36847f80abb23", "cast_id": 28, "profile_path": "/9gzrHfKwWcwVYikfWhqsOWitpnZ.jpg", "order": 16}, {"name": "Robert Harper", "character": "Mark Stern", "id": 41739, "credit_id": "52fe44d1c3a36847f80abb27", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Nestor Serrano", "character": "FBI Agent Robertson", "id": 14331, "credit_id": "52fe44d1c3a36847f80abb2b", "cast_id": 30, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 18}, {"name": "Pete Hamill", "character": "NY Times Reporter", "id": 138243, "credit_id": "52fe44d1c3a36847f80abb2f", "cast_id": 31, "profile_path": "/vViOjpF2teOaHv6adUajffmbrUy.jpg", "order": 19}, {"name": "Wings Hauser", "character": "Tobacco Lawyer", "id": 61153, "credit_id": "52fe44d1c3a36847f80abb33", "cast_id": 32, "profile_path": "/2zNWksskqZgthJ1dD0c2beFf27p.jpg", "order": 20}, {"name": "Cliff Curtis", "character": "Sheikh Fadlallah", "id": 7248, "credit_id": "52fe44d1c3a36847f80abb37", "cast_id": 33, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 21}, {"name": "Renee Olstead", "character": "Deborah Wigand", "id": 155621, "credit_id": "52fe44d1c3a36847f80abb3b", "cast_id": 34, "profile_path": "/Alru3bM9sSE0Q6yeN5fLwNxIy8v.jpg", "order": 22}, {"name": "Gary Sandy", "character": "Sandefur's Lawyer", "id": 172569, "credit_id": "52fe44d1c3a36847f80abb43", "cast_id": 36, "profile_path": "/dLrj1XXmnrktE7vnP7z6hqXYb0K.jpg", "order": 24}, {"name": "Willie C. Carpenter", "character": "John Harris", "id": 20760, "credit_id": "52fe44d1c3a36847f80abb47", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Paul Butler", "character": "Charlie Phillips", "id": 21384, "credit_id": "52fe44d1c3a36847f80abb4b", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Jack Palladino", "character": "Jack Palladino", "id": 1052891, "credit_id": "52fe44d1c3a36847f80abb4f", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Megan Odebash", "character": "Sandra Sutherland", "id": 1052892, "credit_id": "52fe44d1c3a36847f80abb53", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Michael Moore", "character": "Michael Moore", "id": 1414169, "credit_id": "54b90c88c3a368145e00173f", "cast_id": 41, "profile_path": null, "order": 29}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80abaa3", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 7.1, "runtime": 157}, "817": {"poster_path": "/yhg0l1Ddd2thQOSUUQx9jBrGI12.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 310940086, "overview": "When diabolical genius Dr. Evil travels back in time to steal superspy Austin Powers's \"mojo,\" Austin must return to the swingin' '60s himself -- with the help of American agent Felicity Shagwell -- to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions and saves the world in his own unbelievably groovy way.", "video": false, "id": 817, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Austin Powers: The Spy Who Shagged Me", "tagline": "I'm back, baby!", "vote_count": 277, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3QJMI8nqQcwU5JBPy26m8TUXtTN.jpg", "poster_path": "/9fg3fFqjr2ofmgjyWKfKgv6ZLu0.jpg", "id": 1006, "name": "Austin Powers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145660", "adult": false, "backdrop_path": "/5O2FnVv3KScTcvFqam7OfFlSJS3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Eric's Boy", "id": 595}], "release_date": "1999-06-08", "popularity": 1.47699744293081, "original_title": "Austin Powers: The Spy Who Shagged Me", "budget": 33000000, "cast": [{"name": "Mike Myers", "character": "Austin Powers / Dr. Evil / Fat Bastard", "id": 12073, "credit_id": "52fe427bc3a36847f8022039", "cast_id": 25, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Heather Graham", "character": "Felicity Shagwell", "id": 69122, "credit_id": "52fe427bc3a36847f802203d", "cast_id": 28, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 1}, {"name": "Michael York", "character": "Basil Exposition", "id": 13919, "credit_id": "52fe427bc3a36847f8022041", "cast_id": 29, "profile_path": "/xrgHhenCH3c2qKE7dYgOy9WZtZt.jpg", "order": 2}, {"name": "Robert Wagner", "character": "Number Two", "id": 9208, "credit_id": "52fe427bc3a36847f8022045", "cast_id": 31, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 3}, {"name": "Rob Lowe", "character": "Young Number Two", "id": 2879, "credit_id": "52fe427bc3a36847f8022049", "cast_id": 33, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 4}, {"name": "Seth Green", "character": "Scott Evil", "id": 13922, "credit_id": "52fe427bc3a36847f802204d", "cast_id": 34, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 5}, {"name": "Mindy Sterling", "character": "Frau Farbissina", "id": 13924, "credit_id": "52fe427bc3a36847f8022051", "cast_id": 36, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 6}, {"name": "Verne Troyer", "character": "Mini-Me", "id": 10987, "credit_id": "52fe427bc3a36847f8022055", "cast_id": 37, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 7}, {"name": "Elizabeth Hurley", "character": "Vanessa Kensington", "id": 13918, "credit_id": "52fe427bc3a36847f8022059", "cast_id": 38, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 8}, {"name": "Gia Carides", "character": "Robin Spitz Swallows", "id": 14226, "credit_id": "52fe427bc3a36847f802205d", "cast_id": 39, "profile_path": "/hd4wkz74R00PDkMhCMuH2qqH2Yt.jpg", "order": 9}, {"name": "Oliver Muirhead", "character": "British Colonel", "id": 93035, "credit_id": "52fe427bc3a36847f8022073", "cast_id": 43, "profile_path": "/vyWab6wD6r3yP56FA87hwInmdPZ.jpg", "order": 10}, {"name": "Muse Watson", "character": "Klansman", "id": 17348, "credit_id": "52fe427bc3a36847f8022077", "cast_id": 44, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 11}, {"name": "Scott Cooper", "character": "Klansman's Son - Bobby", "id": 65167, "credit_id": "52fe427bc3a36847f802207b", "cast_id": 45, "profile_path": "/kmlJ2OLQmFLbdwCxUuofPgvYjjP.jpg", "order": 12}, {"name": "Kevin Cooney", "character": "NORAD Colonel", "id": 25711, "credit_id": "52fe427bc3a36847f802207f", "cast_id": 46, "profile_path": "/3z2Rte6xznb5Bth6mar42waHc59.jpg", "order": 13}, {"name": "Will Ferrell", "character": "Mustafa", "id": 23659, "credit_id": "54f8de0392514118f0000055", "cast_id": 47, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 14}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021fb1", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.0, "runtime": 95}, "818": {"poster_path": "/tFR7dTbX5BsmoUwKHfa2cWoZbwK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 296633907, "overview": "The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe -- '70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.", "video": false, "id": 818, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Austin Powers in Goldmember", "tagline": "He's still evil... He's still deadly... and he's still surrounded by frickin' idiots!", "vote_count": 297, "homepage": "http://www.austinpowers.com/", "belongs_to_collection": {"backdrop_path": "/3QJMI8nqQcwU5JBPy26m8TUXtTN.jpg", "poster_path": "/9fg3fFqjr2ofmgjyWKfKgv6ZLu0.jpg", "id": 1006, "name": "Austin Powers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0295178", "adult": false, "backdrop_path": "/hYUoSWYv5fdeh9EuZViWqXrGXGT.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Team Todd", "id": 598}], "release_date": "2002-07-22", "popularity": 0.934246616046085, "original_title": "Austin Powers in Goldmember", "budget": 63000000, "cast": [{"name": "Mike Myers", "character": "Austin Powers / Dr. Evil / Goldmember / Fat Bastard", "id": 12073, "credit_id": "52fe427bc3a36847f8022183", "cast_id": 29, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Beyonc\u00e9 Knowles", "character": "Foxxy Cleopatra", "id": 14386, "credit_id": "52fe427bc3a36847f8022187", "cast_id": 33, "profile_path": "/mDDpeDtxuL9Af59rOB8DAjni50A.jpg", "order": 1}, {"name": "Seth Green", "character": "Scott Evil", "id": 13922, "credit_id": "52fe427bc3a36847f802218b", "cast_id": 34, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 2}, {"name": "Michael York", "character": "Basil Exposition", "id": 13919, "credit_id": "52fe427bc3a36847f802218f", "cast_id": 35, "profile_path": "/xrgHhenCH3c2qKE7dYgOy9WZtZt.jpg", "order": 3}, {"name": "Mindy Sterling", "character": "Frau Farbissina", "id": 13924, "credit_id": "52fe427bc3a36847f8022193", "cast_id": 36, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 4}, {"name": "Verne Troyer", "character": "Mini Me", "id": 10987, "credit_id": "52fe427bc3a36847f8022197", "cast_id": 37, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 5}, {"name": "Michael Caine", "character": "Nigel Powers", "id": 3895, "credit_id": "52fe427bc3a36847f802219b", "cast_id": 38, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 6}, {"name": "Fred Savage", "character": "Number Three", "id": 2223, "credit_id": "52fe427bc3a36847f802219f", "cast_id": 39, "profile_path": "/q6u7yhINrALOC9wD2tc6mifQ9sJ.jpg", "order": 7}, {"name": "Diane Mizota", "character": "Fook Mi", "id": 14390, "credit_id": "52fe427bc3a36847f80221a3", "cast_id": 40, "profile_path": "/dTBzm2hhrrptBbxrmlLBe33w9KD.jpg", "order": 8}, {"name": "Carrie Ann Inaba", "character": "Fook Yu", "id": 14391, "credit_id": "52fe427bc3a36847f80221a7", "cast_id": 41, "profile_path": "/crq2RX24ftTdRf6gD7y6lqDVYEZ.jpg", "order": 9}, {"name": "Nobu Matsuhisa", "character": "Mr. Roboto", "id": 7425, "credit_id": "52fe427bc3a36847f80221ab", "cast_id": 42, "profile_path": "/xSR9RmzUTU9K6qZ6Hu5HCS2IJSL.jpg", "order": 10}, {"name": "Robert Wagner", "character": "Number two", "id": 9208, "credit_id": "52fe427bc3a36847f80221bb", "cast_id": 45, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 11}, {"name": "Anna Marie Goddard", "character": "Henchwoman", "id": 162829, "credit_id": "52fe427bc3a36847f80221cb", "cast_id": 48, "profile_path": "/vAHUKfrpqZHIPE5Kz6IkpmXWVLZ.jpg", "order": 12}, {"name": "Aaron Himelstein", "character": "Young Austin", "id": 43373, "credit_id": "52fe427bc3a36847f80221cf", "cast_id": 49, "profile_path": "/dx7qDc6tMxsfP9jAYkCVClX6p8q.jpg", "order": 13}, {"name": "Josh Zuckerman", "character": "Young Evil", "id": 62816, "credit_id": "52fe427bc3a36847f80221d3", "cast_id": 50, "profile_path": "/rasXHgYeUA2X72sF8VuPUcB7c6G.jpg", "order": 14}, {"name": "Evan Farmer", "character": "Young Number Two", "id": 180084, "credit_id": "52fe427bc3a36847f80221d7", "cast_id": 51, "profile_path": "/t76ZaajRf9jNjzQudNRhKfRkbmn.jpg", "order": 15}, {"name": "Tommy Lister", "character": "Prisoner #2", "id": 8396, "credit_id": "52fe427bc3a36847f80221db", "cast_id": 52, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 16}, {"name": "Nichole Hiltz", "character": "French Teacher", "id": 59090, "credit_id": "52fe427bc3a36847f80221df", "cast_id": 53, "profile_path": "/6MWOvsODHSwHSbAnEmKODRZqR49.jpg", "order": 17}, {"name": "Gwyneth Paltrow", "character": "Dixie Normous", "id": 12052, "credit_id": "54db09a3925141619e001171", "cast_id": 55, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 18}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe427bc3a36847f80220e9", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.0, "runtime": 94}, "819": {"poster_path": "/80LV2GvhvMEuOutxgQwbRYpo0Vv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 165615285, "overview": "Two gangsters seek revenge on the state jail worker who during their stay at a youth prison sexually abused them. A sensational court hearing takes place to charge him for the crimes. A moving drama from director Barry Levinson.", "video": false, "id": 819, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sleepers", "tagline": "When friendship runs deeper than blood.", "vote_count": 152, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117665", "adult": false, "backdrop_path": "/ie40d2IO3iFADzWs4KLV3mvBtl5.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Propaganda Films", "id": 278}, {"name": "Baltimore Pictures", "id": 11407}], "release_date": "1996-10-18", "popularity": 0.636131408399306, "original_title": "Sleepers", "budget": 44, "cast": [{"name": "Robert De Niro", "character": "Father Bobby", "id": 380, "credit_id": "52fe427bc3a36847f802228b", "cast_id": 19, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Michael Sullivan", "id": 287, "credit_id": "52fe427bc3a36847f80222a7", "cast_id": 26, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Sean Nokes", "id": 4724, "credit_id": "52fe427bc3a36847f8022283", "cast_id": 17, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Jason Patric", "character": "Lorenzo 'Shakes' Carcaterra", "id": 12261, "credit_id": "52fe427bc3a36847f802229f", "cast_id": 24, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 3}, {"name": "Ron Eldard", "character": "John Reilly", "id": 12260, "credit_id": "52fe427bc3a36847f802229b", "cast_id": 23, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 4}, {"name": "Billy Crudup", "character": "Tommy Marcano", "id": 8289, "credit_id": "52fe427bc3a36847f8022287", "cast_id": 18, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 5}, {"name": "Dustin Hoffman", "character": "Danny Snyder", "id": 4483, "credit_id": "52fe427bc3a36847f8022297", "cast_id": 22, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 6}, {"name": "Minnie Driver", "character": "Carol Martinez", "id": 6613, "credit_id": "52fe427bc3a36847f8022293", "cast_id": 21, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 7}, {"name": "Vittorio Gassman", "character": "King Benny", "id": 12259, "credit_id": "52fe427bc3a36847f802228f", "cast_id": 20, "profile_path": "/qjSYEX5zQuuJzRvznpFz5Xqfbvv.jpg", "order": 8}, {"name": "Joseph Perrino", "character": "Young Lorenzo 'Shakes' Carcaterra", "id": 1223778, "credit_id": "537e6fcdc3a36805a8001b5d", "cast_id": 34, "profile_path": "/wXM6fXVw4xhWJqxYbwwoLC0UpCr.jpg", "order": 9}, {"name": "Brad Renfro", "character": "Young Michael Sullivan", "id": 51214, "credit_id": "537e6f9dc3a36805a4001b72", "cast_id": 33, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 10}, {"name": "Geoffrey Wigdor", "character": "Young John Reilly", "id": 12263, "credit_id": "52fe427bc3a36847f80222a3", "cast_id": 25, "profile_path": "/jXoKqE67lxsCx2q3TGSi0jdv5wQ.jpg", "order": 11}, {"name": "Jonathan Tucker", "character": "Young Tommy Marcano", "id": 17243, "credit_id": "537e73adc3a3680598001be7", "cast_id": 37, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 12}, {"name": "Terry Kinney", "character": "Ralph Ferguson", "id": 11067, "credit_id": "52fe427bc3a36847f80222ab", "cast_id": 27, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 13}, {"name": "Bruno Kirby", "character": "Shakes' Father", "id": 9257, "credit_id": "52fe427bc3a36847f80222af", "cast_id": 28, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 14}, {"name": "Eugene Byrd", "character": "Rizzo", "id": 342, "credit_id": "52fe427bc3a36847f80222b7", "cast_id": 30, "profile_path": "/ab4zEcqdBSjpaz4CPQ2Z6q4rLmO.jpg", "order": 15}, {"name": "Frank Medrano", "character": "Fat Mancho", "id": 1216752, "credit_id": "537e75420e0a2624b4002dbf", "cast_id": 38, "profile_path": null, "order": 16}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe427bc3a36847f802222b", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 7.1, "runtime": 147}, "820": {"poster_path": "/9bmXpKDJv2kdtD4QNexErjGTIOz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205405498, "overview": "New Orleans District Attorney Jim Garrison discovers there's more to the Kennedy assassination than the official story.", "video": false, "id": 820, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "JFK", "tagline": "The story that won\u2019t go away.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0102138", "adult": false, "backdrop_path": "/5qa7B2n3MCJOEr1m87JbxC8lzU4.jpg", "production_companies": [{"name": "Camelot Productions", "id": 523}, {"name": "Canal Plus Group", "id": 524}, {"name": "Ixtlan Productions", "id": 525}], "release_date": "1991-12-20", "popularity": 1.09919873409829, "original_title": "JFK", "budget": 40000000, "cast": [{"name": "Kevin Costner", "character": "Jim Garrison", "id": 1269, "credit_id": "52fe427bc3a36847f80223ab", "cast_id": 23, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Clay Shaw/Clay Bertrand", "id": 2176, "credit_id": "52fe427bc3a36847f80223af", "cast_id": 24, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Lee Harvey Oswald", "id": 64, "credit_id": "52fe427bc3a36847f80223b3", "cast_id": 25, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Willie O'Keefe", "id": 4724, "credit_id": "52fe427bc3a36847f80223b7", "cast_id": 26, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Michael Rooker", "character": "Bill Broussard", "id": 12132, "credit_id": "52fe427bc3a36847f80223bb", "cast_id": 27, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 4}, {"name": "Jack Lemmon", "character": "Jack Martin", "id": 3151, "credit_id": "52fe427bc3a36847f80223bf", "cast_id": 28, "profile_path": "/1Y3wQsqRALOL3LZQtKmulmN3qff.jpg", "order": 5}, {"name": "Laurie Metcalf", "character": "Susie Cox", "id": 12133, "credit_id": "52fe427bc3a36847f80223c3", "cast_id": 29, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 6}, {"name": "Sissy Spacek", "character": "Liz Garrison", "id": 5606, "credit_id": "52fe427bc3a36847f80223c7", "cast_id": 30, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 7}, {"name": "Joe Pesci", "character": "David Ferrie", "id": 4517, "credit_id": "52fe427bc3a36847f80223cb", "cast_id": 31, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 8}, {"name": "John Candy", "character": "Dean Andrews", "id": 7180, "credit_id": "52fe427bc3a36847f80223cf", "cast_id": 32, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 9}, {"name": "Pruitt Taylor Vince", "character": "Lee Bowers", "id": 3201, "credit_id": "52fe427bc3a36847f80223d3", "cast_id": 33, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 10}, {"name": "Jay O. Sanders", "character": "Lou Ivon", "id": 6067, "credit_id": "52fe427bc3a36847f80223d7", "cast_id": 34, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 11}, {"name": "Walter Matthau", "character": "Senator Long", "id": 6837, "credit_id": "52fe427bc3a36847f80223db", "cast_id": 35, "profile_path": "/xJVkvprOnzP5Zdh5y63y8HHniDZ.jpg", "order": 12}, {"name": "Sally Kirkland", "character": "Rose Cheramie", "id": 12134, "credit_id": "52fe427bc3a36847f80223df", "cast_id": 36, "profile_path": "/9hDatSXreVqPtEylLXxMcCLNktL.jpg", "order": 13}, {"name": "Donald Sutherland", "character": "X", "id": 55636, "credit_id": "52fe427bc3a36847f80223e3", "cast_id": 37, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 14}, {"name": "Ed Asner", "character": "Guy Bannister", "id": 68812, "credit_id": "52fe427bc3a36847f80223e7", "cast_id": 38, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 15}, {"name": "Brian Doyle-Murray", "character": "Jack Ruby", "id": 1535, "credit_id": "52fe427bc3a36847f80223eb", "cast_id": 39, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 16}, {"name": "Ray LePere", "character": "Abraham Zapruder", "id": 12136, "credit_id": "52fe427bc3a36847f80223ef", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Vincent D'Onofrio", "character": "Bill Newman", "id": 7132, "credit_id": "52fe427bc3a36847f80223f3", "cast_id": 41, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 18}, {"name": "Tom Howard", "character": "Lyndon B. Johnson", "id": 12137, "credit_id": "52fe427bc3a36847f80223f7", "cast_id": 42, "profile_path": "/dT1rqv62kbbWniPuhmuzFjhwTqP.jpg", "order": 19}, {"name": "Lolita Davidovich", "character": "Beverly Oliver", "id": 12139, "credit_id": "52fe427bc3a36847f80223fb", "cast_id": 44, "profile_path": "/eeGUO6uPzGp5hGfZIYAudfSZ8XM.jpg", "order": 21}, {"name": "Jim Garrison", "character": "Earl Warren", "id": 12128, "credit_id": "52fe427bc3a36847f80223ff", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Wayne Knight", "character": "Numa Bertel", "id": 4201, "credit_id": "52fe427bc3a36847f8022403", "cast_id": 46, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 23}, {"name": "Gary Grubbs", "character": "Al Oser", "id": 68180, "credit_id": "52fe427bc3a36847f8022407", "cast_id": 47, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 24}, {"name": "Beata Pozniak", "character": "Marina Oswald", "id": 156310, "credit_id": "52fe427bc3a36847f802240b", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Tony Plana", "character": "Carlos Bringuier", "id": 41737, "credit_id": "52fe427bc3a36847f802240f", "cast_id": 49, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 26}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe427bc3a36847f8022329", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 7.4, "runtime": 189}, "9029": {"poster_path": "/NWQmNdQwm7blsBNSdpWIfqkGte.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170000000, "overview": "During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.", "video": false, "id": 9029, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "What Happens in Vegas", "tagline": "Get Lucky", "vote_count": 220, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "sh", "name": ""}], "imdb_id": "tt1033643", "adult": false, "backdrop_path": "/925k5OHcumv1xYNwYnDdXiVPMTf.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2008-05-09", "popularity": 1.12370987541803, "original_title": "What Happens in Vegas", "budget": 35000000, "cast": [{"name": "Ashton Kutcher", "character": "Jack Fuller", "id": 18976, "credit_id": "52fe44d3c3a36847f80ac4f9", "cast_id": 23, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Joy McNally", "id": 6941, "credit_id": "52fe44d3c3a36847f80ac4a1", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Lake Bell", "character": "Tipper", "id": 25703, "credit_id": "52fe44d3c3a36847f80ac4a5", "cast_id": 5, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Dr. Twitchell", "id": 15758, "credit_id": "52fe44d3c3a36847f80ac4a9", "cast_id": 6, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Treat Williams", "character": "Jack Fuller Sr.", "id": 4515, "credit_id": "52fe44d3c3a36847f80ac4ad", "cast_id": 8, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 4}, {"name": "Michelle Krusiec", "character": "Chong", "id": 55253, "credit_id": "52fe44d3c3a36847f80ac4b1", "cast_id": 9, "profile_path": "/9wA6VGNr3Z6lY8DZGBO9MOTCSB3.jpg", "order": 5}, {"name": "Dennis Miller", "character": "Judge Whopper", "id": 18326, "credit_id": "52fe44d3c3a36847f80ac4b5", "cast_id": 10, "profile_path": "/e1SGDAB2IArMV8oiTceRYD4DoGS.jpg", "order": 6}, {"name": "Dennis Farina", "character": "Richard Banger", "id": 1117, "credit_id": "52fe44d3c3a36847f80ac4b9", "cast_id": 11, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 7}, {"name": "Jason Sudeikis", "character": "Mason", "id": 58224, "credit_id": "52fe44d3c3a36847f80ac4bd", "cast_id": 12, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 8}, {"name": "Zach Galifianakis", "character": "Dave the bear", "id": 58225, "credit_id": "52fe44d3c3a36847f80ac4c1", "cast_id": 13, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 9}, {"name": "Rob Corddry", "character": "Hater", "id": 52997, "credit_id": "52fe44d3c3a36847f80ac4f5", "cast_id": 22, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 10}, {"name": "Krysten Ritter", "character": "Kelly", "id": 78080, "credit_id": "52fe44d3c3a36847f80ac4fd", "cast_id": 24, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 11}, {"name": "Billy Eichner", "character": "Band Leader", "id": 973651, "credit_id": "53f77060c3a3683400005936", "cast_id": 25, "profile_path": "/1xCPFY4Yh7evbXILi8JRDRqUWeS.jpg", "order": 12}], "directors": [{"name": "Tom Vaughan", "department": "Directing", "job": "Director", "credit_id": "52fe44d3c3a36847f80ac497", "profile_path": "/opDMR3lConDBNSiVmqt4h6TMFBF.jpg", "id": 56717}], "vote_average": 5.8, "runtime": 99}, "8329": {"poster_path": "/dYd1GwIZdZLg5uUTr32BIVAGDqt.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 32492948, "overview": "A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.", "video": false, "id": 8329, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "[REC]", "tagline": "One witness. One camera", "vote_count": 233, "homepage": "http://www.3l-filmverleih.de/rec", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1038988", "adult": false, "backdrop_path": "/4NljLiqgOKHPg3QKUgWTyr8QVau.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2007-11-23", "popularity": 0.405962649059236, "original_title": "[REC]", "budget": 1500000, "cast": [{"name": "Manuela Velasco", "character": "\u00c1ngela Vidal", "id": 34793, "credit_id": "52fe449fc3a36847f80a0a55", "cast_id": 1, "profile_path": "/kQQrHFhTCazfWScBwTaSTtRFWUU.jpg", "order": 0}, {"name": "Ferran Terraza", "character": "Manu", "id": 54532, "credit_id": "52fe449fc3a36847f80a0abf", "cast_id": 22, "profile_path": "/7lvI2rC9emIAkEZeW5zYGr3RKnw.jpg", "order": 1}, {"name": "Martha Carbonell", "character": "Conchita Izquierdo", "id": 54523, "credit_id": "52fe449fc3a36847f80a0a69", "cast_id": 7, "profile_path": "/vdNJsDSvNggyFRYFAJer6ZTzyph.jpg", "order": 2}, {"name": "David Vert", "character": "Alex", "id": 54521, "credit_id": "52fe449fc3a36847f80a0a61", "cast_id": 5, "profile_path": "/gcosWQzYIH7HyqcFE3nUIALTbov.jpg", "order": 3}, {"name": "Carlos Lasarte", "character": "C\u00e9sar", "id": 54519, "credit_id": "52fe449fc3a36847f80a0a59", "cast_id": 3, "profile_path": "/kP7hWWZsf6GOERaKwcCofiZaBoh.jpg", "order": 4}, {"name": "Pablo Rosso", "character": "Marcos", "id": 54520, "credit_id": "52fe449fc3a36847f80a0a5d", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Vicente Gil", "character": "Polizist", "id": 54522, "credit_id": "52fe449fc3a36847f80a0a65", "cast_id": 6, "profile_path": "/6ZppZwmjxyWbELf1LEZa6TL4UE3.jpg", "order": 6}, {"name": "Carlos Vicente", "character": "Guillem", "id": 54524, "credit_id": "52fe449fc3a36847f80a0a6d", "cast_id": 8, "profile_path": "/9GKNu8NJO40CU2t7U4ymBCMV5uE.jpg", "order": 7}, {"name": "Jorge Yamam", "character": "Sergio", "id": 147878, "credit_id": "52fe449fc3a36847f80a0ac3", "cast_id": 23, "profile_path": "/5JTmGMnRGENDzUyOTf62K9vy2Rl.jpg", "order": 8}], "directors": [{"name": "Jaume Balaguer\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe449fc3a36847f80a0a73", "profile_path": "/zH7TzIJgzrYKbUecPLoTEPP7qxX.jpg", "id": 54525}, {"name": "Paco Plaza", "department": "Directing", "job": "Director", "credit_id": "52fe449fc3a36847f80a0a79", "profile_path": "/kj5tBKhLcC8PcZHwGerEMZakXi5.jpg", "id": 54526}], "vote_average": 6.8, "runtime": 78}, "824": {"poster_path": "/b09kbewjaqzHabMFcZpEImigUm1.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177677823, "overview": "A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club's most notorious and beautiful star.", "video": false, "id": 824, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Moulin Rouge!", "tagline": "No Laws. No Limits. One Rule. Never Fall In Love.", "vote_count": 319, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0203009", "adult": false, "backdrop_path": "/qj3TAGH89t8nkdTH7N6Ge1HTvGj.jpg", "production_companies": [{"name": "Bazmark Films", "id": 240}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2001-05-16", "popularity": 0.982188358380475, "original_title": "Moulin Rouge!", "budget": 52500000, "cast": [{"name": "Nicole Kidman", "character": "Satine", "id": 2227, "credit_id": "52fe427cc3a36847f8022779", "cast_id": 20, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Christian", "id": 3061, "credit_id": "52fe427cc3a36847f802277d", "cast_id": 21, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Toulouse-Lautrec", "id": 5723, "credit_id": "52fe427cc3a36847f8022789", "cast_id": 24, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "The Unconscious Argentinean", "id": 388, "credit_id": "52fe427cc3a36847f8022785", "cast_id": 23, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Richard Roxburgh", "character": "The Duke", "id": 12206, "credit_id": "52fe427cc3a36847f8022781", "cast_id": 22, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 4}, {"name": "Garry McDonald", "character": "The Doctor", "id": 12211, "credit_id": "52fe427cc3a36847f80227a1", "cast_id": 30, "profile_path": null, "order": 5}, {"name": "Jacek Koman", "character": "The Unconscious Argentinean", "id": 12210, "credit_id": "52fe427cc3a36847f802279d", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Matthew Whittet", "character": "Satie", "id": 12212, "credit_id": "52fe427cc3a36847f80227a5", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Kerry Walker", "character": "Marie", "id": 10756, "credit_id": "52fe427cc3a36847f80227a9", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Caroline O'Connor", "character": "Nini Legs in the Air", "id": 12209, "credit_id": "52fe427cc3a36847f8022799", "cast_id": 28, "profile_path": "/bxoDCPHFPquOjCbv3UbnkY6JHY4.jpg", "order": 9}, {"name": "Christine Anu", "character": "Arabia", "id": 548125, "credit_id": "52fe427cc3a36847f80227c1", "cast_id": 38, "profile_path": null, "order": 10}, {"name": "Natalie Mendoza", "character": "China Doll", "id": 57575, "credit_id": "52fe427cc3a36847f80227ad", "cast_id": 33, "profile_path": "/4yeZSEKGvUiCcljsFub2SxFGGuz.jpg", "order": 11}, {"name": "Lara Mulcahy", "character": "M\u00f4me Fromage", "id": 953445, "credit_id": "52fe427cc3a36847f80227b1", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "David Wenham", "character": "Audrey", "id": 1371, "credit_id": "52fe427cc3a36847f802278d", "cast_id": 25, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 13}, {"name": "Kylie Minogue", "character": "The Green Fairy", "id": 12207, "credit_id": "52fe427cc3a36847f8022791", "cast_id": 26, "profile_path": "/8vOTxDParoNySQrUI2OM9zQkVPu.jpg", "order": 14}, {"name": "Ozzy Osbourne", "character": "Voice of the Green Fairy", "id": 12208, "credit_id": "52fe427cc3a36847f8022795", "cast_id": 27, "profile_path": "/9EkHsyIW3xjch0MJ6LtrvMmGhdL.jpg", "order": 15}, {"name": "Deobia Oparei", "character": "Le Chocolat", "id": 58758, "credit_id": "52fe427cc3a36847f80227b5", "cast_id": 35, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 16}, {"name": "Linal Haft", "character": "Warner", "id": 75258, "credit_id": "52fe427cc3a36847f80227b9", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Keith Robinson", "character": "Le Petomane", "id": 1280478, "credit_id": "52fe427cc3a36847f80227bd", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Peter Whitford", "character": "Stage Manager", "id": 127137, "credit_id": "52fe427cc3a36847f80227c5", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Norman Kaye", "character": "Satine's Doctor", "id": 97330, "credit_id": "52fe427cc3a36847f80227c9", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Arthur Dignam", "character": "Christian's Father", "id": 108924, "credit_id": "52fe427cc3a36847f80227cd", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Carole Skinner", "character": "Landlady", "id": 975417, "credit_id": "52fe427cc3a36847f80227d1", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Jonathan Hardy", "character": "Man in the Moon", "id": 75428, "credit_id": "52fe427cc3a36847f80227d5", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Pl\u00e1cido Domingo", "character": "Voice of Man in the Moon (as Placido Domingo)", "id": 77886, "credit_id": "52fe427cc3a36847f80227d9", "cast_id": 44, "profile_path": "/w7BShaJOG0aquiUb1Sxd3ocrev6.jpg", "order": 24}, {"name": "Kiruna Stamell", "character": "La Petite Princesse", "id": 1250098, "credit_id": "52fe427cc3a36847f80227dd", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Anthony Young", "character": "Orchestra Member", "id": 1280479, "credit_id": "52fe427cc3a36847f80227e1", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Dee Donavan", "character": "Character Rake", "id": 1280480, "credit_id": "52fe427cc3a36847f80227e5", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Johnny Lockwood", "character": "Character Rake", "id": 1233684, "credit_id": "52fe427cc3a36847f80227e9", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Don Reid", "character": "Character Rake", "id": 93520, "credit_id": "52fe427cc3a36847f80227ed", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Tara Morice", "character": "Prostitute", "id": 65010, "credit_id": "52fe427cc3a36847f80227f1", "cast_id": 50, "profile_path": "/nrBPoSRIlmWsqRZkfYIwPfBSMrm.jpg", "order": 30}, {"name": "Daniel Scott", "character": "Absinthe Drinker / Guitarist", "id": 1280481, "credit_id": "52fe427cc3a36847f80227f5", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Veronica Beattie", "character": "Montmartre Dance Team", "id": 1280482, "credit_id": "52fe427cc3a36847f80227f9", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Lisa Callingham", "character": "Montmartre Dance Team", "id": 1280483, "credit_id": "52fe427cc3a36847f80227fd", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Rosetta Cook", "character": "Montmartre Dance Team", "id": 1280484, "credit_id": "52fe427cc3a36847f8022801", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "Fleur Denny", "character": "Montmartre Dance Team", "id": 1280485, "credit_id": "52fe427cc3a36847f8022805", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Kelly Grauer", "character": "Montmartre Dance Team", "id": 1280486, "credit_id": "52fe427cc3a36847f8022809", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Jaclyn Hanson", "character": "Montmartre Dance Team", "id": 1280487, "credit_id": "52fe427cc3a36847f802280d", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Michelle Hopper", "character": "Montmartre Dance Team", "id": 1280488, "credit_id": "52fe427cc3a36847f8022811", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Fallon King", "character": "Montmartre Dance Team", "id": 1280489, "credit_id": "52fe427cc3a36847f8022815", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Wendy McMahon", "character": "Montmartre Dance Team", "id": 1280490, "credit_id": "52fe427cc3a36847f8022819", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Tracie Morley", "character": "Montmartre Dance Team", "id": 1280491, "credit_id": "52fe427cc3a36847f802281d", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Sue-Ellen Shook", "character": "Montmartre Dance Team", "id": 1280492, "credit_id": "52fe427cc3a36847f8022821", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Jenny Wilson", "character": "Montmartre Dance Team", "id": 1280493, "credit_id": "52fe427cc3a36847f8022825", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Luke Alleva", "character": "Montmartre Dance Team", "id": 1280494, "credit_id": "52fe427cc3a36847f8022829", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Andrew Aroustian", "character": "Montmartre Dance Team", "id": 1280495, "credit_id": "52fe427cc3a36847f802282d", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Stephen Colyer", "character": "Montmartre Dance Team", "id": 1280496, "credit_id": "52fe427cc3a36847f8022831", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Steve Grace", "character": "Montmartre Dance Team (as Steven Grace)", "id": 543657, "credit_id": "52fe427cc3a36847f8022835", "cast_id": 67, "profile_path": null, "order": 47}, {"name": "Mark Hodge", "character": "Montmartre Dance Team", "id": 1280497, "credit_id": "52fe427cc3a36847f8022839", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Cameron Mitchell", "character": "Montmartre Dance Team", "id": 1280498, "credit_id": "52fe427cc3a36847f802283d", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Deon Nuku", "character": "Montmartre Dance Team", "id": 1280499, "credit_id": "52fe427cc3a36847f8022841", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Shaun Parker", "character": "Montmartre Dance Team", "id": 1280500, "credit_id": "52fe427cc3a36847f8022845", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Troy Phillips", "character": "Montmartre Dance Team", "id": 1280501, "credit_id": "52fe427cc3a36847f8022849", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Rodney Syaranamual", "character": "Montmartre Dance Team", "id": 1280502, "credit_id": "52fe427cc3a36847f802284d", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Ashley Wallen", "character": "Montmartre Dance Team", "id": 1280503, "credit_id": "52fe427cc3a36847f8022851", "cast_id": 74, "profile_path": null, "order": 54}, {"name": "Nathan Wright", "character": "Montmartre Dance Team", "id": 970752, "credit_id": "52fe427cc3a36847f8022855", "cast_id": 75, "profile_path": null, "order": 55}, {"name": "Susan Black", "character": "Paris Dance Team", "id": 1280504, "credit_id": "52fe427cc3a36847f8022859", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "Nicole Brooks", "character": "Paris Dance Team", "id": 174283, "credit_id": "52fe427cc3a36847f802285d", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Danielle Brown", "character": "Paris Dance Team", "id": 1280505, "credit_id": "52fe427cc3a36847f8022861", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Anastacia Flewin", "character": "Paris Dance Team", "id": 1280506, "credit_id": "52fe427cc3a36847f8022865", "cast_id": 79, "profile_path": null, "order": 59}, {"name": "Fiona Gage", "character": "Paris Dance Team", "id": 1280507, "credit_id": "52fe427cc3a36847f8022869", "cast_id": 80, "profile_path": null, "order": 60}, {"name": "Alex Harrington", "character": "Paris Dance Team", "id": 1280508, "credit_id": "52fe427cc3a36847f802286d", "cast_id": 81, "profile_path": null, "order": 61}, {"name": "Camilla Jakimowicz", "character": "Paris Dance Team", "id": 1280509, "credit_id": "52fe427cc3a36847f8022871", "cast_id": 82, "profile_path": null, "order": 62}, {"name": "Rochelle Jones", "character": "Paris Dance Team", "id": 1280510, "credit_id": "52fe427cc3a36847f8022875", "cast_id": 83, "profile_path": null, "order": 63}, {"name": "Caroline Kaspar", "character": "Paris Dance Team", "id": 1280511, "credit_id": "52fe427cc3a36847f8022879", "cast_id": 84, "profile_path": null, "order": 64}, {"name": "Mandy Liddell", "character": "Paris Dance Team", "id": 1280512, "credit_id": "52fe427cc3a36847f802287d", "cast_id": 85, "profile_path": null, "order": 65}, {"name": "Melanie Mackay", "character": "Paris Dance Team", "id": 1280513, "credit_id": "52fe427cc3a36847f8022881", "cast_id": 86, "profile_path": null, "order": 66}, {"name": "Elise Mann", "character": "Paris Dance Team", "id": 1280514, "credit_id": "52fe427cc3a36847f8022885", "cast_id": 87, "profile_path": null, "order": 67}, {"name": "Charmaine Martin", "character": "Paris Dance Team", "id": 1280515, "credit_id": "52fe427cc3a36847f8022889", "cast_id": 88, "profile_path": null, "order": 68}, {"name": "Michelle Wriggles", "character": "Paris Dance Team", "id": 1280516, "credit_id": "52fe427cc3a36847f802288d", "cast_id": 89, "profile_path": null, "order": 69}, {"name": "Michael Boyd", "character": "Paris Dance Team", "id": 1280517, "credit_id": "52fe427cc3a36847f8022891", "cast_id": 90, "profile_path": null, "order": 70}, {"name": "Lorry D'Ercole", "character": "Paris Dance Team", "id": 1280518, "credit_id": "52fe427cc3a36847f8022895", "cast_id": 91, "profile_path": null, "order": 71}, {"name": "Michael Edge", "character": "Paris Dance Team", "id": 1280519, "credit_id": "52fe427cc3a36847f8022899", "cast_id": 92, "profile_path": null, "order": 72}, {"name": "Glyn Gray", "character": "Paris Dance Team", "id": 1280520, "credit_id": "52fe427cc3a36847f802289d", "cast_id": 93, "profile_path": null, "order": 73}, {"name": "Craig Haines", "character": "Paris Dance Team", "id": 1000227, "credit_id": "52fe427cc3a36847f80228a1", "cast_id": 94, "profile_path": null, "order": 74}, {"name": "Stephen Holford", "character": "Paris Dance Team", "id": 1280521, "credit_id": "52fe427cc3a36847f80228a5", "cast_id": 95, "profile_path": null, "order": 75}, {"name": "Jamie Jewell", "character": "Paris Dance Team", "id": 1280522, "credit_id": "52fe427cc3a36847f80228a9", "cast_id": 96, "profile_path": null, "order": 76}, {"name": "Jason King", "character": "Paris Dance Team", "id": 1280523, "credit_id": "52fe427cc3a36847f80228ad", "cast_id": 97, "profile_path": null, "order": 77}, {"name": "Ryan Males", "character": "Paris Dance Team", "id": 1280524, "credit_id": "52fe427cc3a36847f80228b1", "cast_id": 98, "profile_path": null, "order": 78}, {"name": "Harlin Martin", "character": "Paris Dance Team", "id": 1280525, "credit_id": "52fe427cc3a36847f80228b5", "cast_id": 99, "profile_path": null, "order": 79}, {"name": "Andrew Micallef", "character": "Paris Dance Team", "id": 1280526, "credit_id": "52fe427cc3a36847f80228b9", "cast_id": 100, "profile_path": null, "order": 80}, {"name": "Jonathan Schm\u00f6lzer", "character": "Paris Dance Team", "id": 1280527, "credit_id": "52fe427cc3a36847f80228bd", "cast_id": 101, "profile_path": null, "order": 81}, {"name": "Bradley Spargo", "character": "Paris Dance Team", "id": 1280528, "credit_id": "52fe427cc3a36847f80228c1", "cast_id": 102, "profile_path": null, "order": 82}, {"name": "Joseph 'Pepe' Ashton", "character": "Tabasco Brother", "id": 1280529, "credit_id": "52fe427cc3a36847f80228c5", "cast_id": 103, "profile_path": null, "order": 83}, {"name": "Jordan Ashton", "character": "Tabasco Brother", "id": 1280530, "credit_id": "52fe427cc3a36847f80228c9", "cast_id": 104, "profile_path": null, "order": 84}, {"name": "Marcos Falagan", "character": "Tabasco Brother", "id": 1280531, "credit_id": "52fe427cc3a36847f80228cd", "cast_id": 105, "profile_path": null, "order": 85}, {"name": "Mitchel Falagan", "character": "Tabasco Brother", "id": 1280532, "credit_id": "52fe427cc3a36847f80228d1", "cast_id": 106, "profile_path": null, "order": 86}, {"name": "Chris Mayhew", "character": "Tabasco Brother", "id": 1280533, "credit_id": "52fe427cc3a36847f80228d5", "cast_id": 107, "profile_path": null, "order": 87}, {"name": "Hamish McCann", "character": "Tabasco Brother", "id": 1280534, "credit_id": "52fe427cc3a36847f80228d9", "cast_id": 108, "profile_path": null, "order": 88}, {"name": "Adrien Janssen", "character": "Tabasco Brother", "id": 1280535, "credit_id": "52fe427cc3a36847f80228dd", "cast_id": 109, "profile_path": null, "order": 89}, {"name": "Shaun Holloway", "character": "Tabasco Brother", "id": 1280536, "credit_id": "52fe427cc3a36847f80228e1", "cast_id": 110, "profile_path": null, "order": 90}, {"name": "Darren Dowlut", "character": "Cocoliscious Brother", "id": 1280537, "credit_id": "52fe427cc3a36847f80228e5", "cast_id": 111, "profile_path": null, "order": 91}, {"name": "Dennis Dowlut", "character": "Cocoliscious Brother", "id": 1280538, "credit_id": "52fe427cc3a36847f80228e9", "cast_id": 112, "profile_path": null, "order": 92}, {"name": "Pina Conti", "character": "La Ko Ka Chau", "id": 1280539, "credit_id": "52fe427cc3a36847f80228ed", "cast_id": 113, "profile_path": null, "order": 93}, {"name": "Nandy McClean", "character": "Twin", "id": 1280540, "credit_id": "52fe427cc3a36847f80228f1", "cast_id": 114, "profile_path": null, "order": 94}, {"name": "Maya McClean", "character": "Twin", "id": 1280541, "credit_id": "52fe427cc3a36847f80228f5", "cast_id": 115, "profile_path": null, "order": 95}, {"name": "Patrick Harding-Irmer", "character": "Waiter", "id": 1280542, "credit_id": "52fe427cc3a36847f80228f9", "cast_id": 116, "profile_path": null, "order": 96}, {"name": "Albin Pahernik", "character": "Waiter", "id": 982313, "credit_id": "52fe427cc3a36847f80228fd", "cast_id": 117, "profile_path": null, "order": 97}, {"name": "Aurel Verne", "character": "Waiter", "id": 1280543, "credit_id": "52fe427cc3a36847f8022901", "cast_id": 118, "profile_path": null, "order": 98}, {"name": "Kip Gamblin", "character": "Latin Dancer", "id": 1231101, "credit_id": "52fe427cc3a36847f8022905", "cast_id": 119, "profile_path": null, "order": 99}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe427cc3a36847f8022709", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 7.1, "runtime": 127}, "826": {"poster_path": "/vtPR6tSHeu35rF6qTDw3Yjr9eDg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33300000, "overview": "A classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson , the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.", "video": false, "id": 826, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Bridge on the River Kwai", "tagline": "Be Happy in Your Work...", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0050212", "adult": false, "backdrop_path": "/nzgFFkFmgUD3mwdYB8aZjYJ6rZY.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Horizon Pictures (II)", "id": 11356}], "release_date": "1957-10-02", "popularity": 0.974209821062017, "original_title": "The Bridge on the River Kwai", "budget": 3000000, "cast": [{"name": "William Holden", "character": "Cmdr. Shears", "id": 8252, "credit_id": "52fe427dc3a36847f8022aa5", "cast_id": 12, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 0}, {"name": "Alec Guinness", "character": "Col. Nicholson", "id": 12248, "credit_id": "52fe427dc3a36847f8022aad", "cast_id": 14, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 1}, {"name": "Jack Hawkins", "character": "Maj. Warden", "id": 10018, "credit_id": "52fe427dc3a36847f8022aa9", "cast_id": 13, "profile_path": "/7b6E24ZRLEPJwP0WQauXJPt41Fs.jpg", "order": 2}, {"name": "Sessue Hayakawa", "character": "Col. Saito", "id": 12249, "credit_id": "52fe427dc3a36847f8022ab1", "cast_id": 15, "profile_path": "/LLtMGKvp3k4LiesKdUwXhugEfE.jpg", "order": 3}, {"name": "James Donald", "character": "Maj. Clipton", "id": 12250, "credit_id": "52fe427dc3a36847f8022ab5", "cast_id": 16, "profile_path": "/37GWNFPrHxo6RZf8uY0bdk47BD8.jpg", "order": 4}, {"name": "Geoffrey Horne", "character": "Lt. Joyce", "id": 12251, "credit_id": "52fe427dc3a36847f8022ab9", "cast_id": 17, "profile_path": "/z4A17m3q9u8ScZIwTMPF3nIQVeP.jpg", "order": 5}, {"name": "Andr\u00e9 Morell", "character": "Col. Green", "id": 10029, "credit_id": "52fe427dc3a36847f8022abd", "cast_id": 18, "profile_path": "/slGvSoLbXaR1g23Rxj9N2WyKNWi.jpg", "order": 6}, {"name": "Peter Williams", "character": "Capt. Reeves", "id": 12252, "credit_id": "52fe427dc3a36847f8022ac1", "cast_id": 19, "profile_path": "/urZztHCeApsdgxeo4JZOcYODMjG.jpg", "order": 7}, {"name": "John Boxer", "character": "Major Hughes", "id": 1075445, "credit_id": "52fe427dc3a36847f8022ad1", "cast_id": 22, "profile_path": "/7i914AsImDLfYAUxQG1kqX2AnhE.jpg", "order": 8}, {"name": "Percy Herbert", "character": "Grogan", "id": 33220, "credit_id": "52fe427dc3a36847f8022ad5", "cast_id": 23, "profile_path": "/5ZUj6cyhZ237SbeyF5fwAv2jvjD.jpg", "order": 9}, {"name": "Harold Goodwin", "character": "Baker", "id": 1208202, "credit_id": "52fe427dc3a36847f8022aeb", "cast_id": 29, "profile_path": "/gLhjtadSsrzrdpYrBhV9mZ4uAs5.jpg", "order": 10}, {"name": "Ann Sears", "character": "Nurse", "id": 964548, "credit_id": "52fe427dc3a36847f8022ad9", "cast_id": 25, "profile_path": "/pdTG6k7kUl7nCeu1UTQLWsIc5vm.jpg", "order": 11}, {"name": "Heihachir\u00f4 \u00d4kawa", "character": "Captain Kanematsu", "id": 1075446, "credit_id": "52fe427dc3a36847f8022add", "cast_id": 26, "profile_path": "/kGHkcP5u9DjGX8RBSawWLfdaEVX.jpg", "order": 12}, {"name": "Keiichir\u00f4 Katsumoto", "character": "Lieutenant Miura (also as K. Katsumoto) (as Keiichiro Katsumoto)", "id": 1075447, "credit_id": "52fe427dc3a36847f8022ae1", "cast_id": 27, "profile_path": null, "order": 13}], "directors": [{"name": "David Lean", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022ac7", "profile_path": "/iUTtDo1gl0Phe342xxoPq2w643R.jpg", "id": 12238}], "vote_average": 7.2, "runtime": 161}, "828": {"poster_path": "/tyujnQl6topN3O9lPnGMpzGsYQM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An alien and a robot land on earth after World War II and tell mankind to be peaceful or face destruction. A classic science fiction film from Robert Wise with an exceptional message.", "video": false, "id": 828, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Day the Earth Stood Still", "tagline": "A robot and a man \u2026 hold the world spellbound with new and startling powers from another planet!", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0043456", "adult": false, "backdrop_path": "/6mJRuZe1GP0dwkaMCDCFOVSPqGh.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1951-09-17", "popularity": 1.00426740457357, "original_title": "The Day the Earth Stood Still", "budget": 1200000, "cast": [{"name": "Michael Rennie", "character": "Klaatu/Carpenter", "id": 12282, "credit_id": "52fe427dc3a36847f8022c0f", "cast_id": 13, "profile_path": "/ni1aEQzlPA2osEFTGKoEtyP8Nqf.jpg", "order": 0}, {"name": "Patricia Neal", "character": "Helen Benson", "id": 1934, "credit_id": "52fe427dc3a36847f8022c13", "cast_id": 14, "profile_path": "/1VPdXeUnI6RcCzLtKv8uTHNB690.jpg", "order": 1}, {"name": "Hugh Marlowe", "character": "Tom Stevens", "id": 10609, "credit_id": "52fe427dc3a36847f8022c17", "cast_id": 15, "profile_path": "/z0OHigEHpORu2Dle1lhM5MeG0xn.jpg", "order": 2}, {"name": "Sam Jaffe", "character": "Prof. Jacob Barnhardt", "id": 10024, "credit_id": "52fe427dc3a36847f8022c1b", "cast_id": 16, "profile_path": "/drxy1JkTOjhUhQnrFnepTmSHELd.jpg", "order": 3}, {"name": "Billy Gray", "character": "Bobby Benson", "id": 3162, "credit_id": "52fe427dc3a36847f8022c1f", "cast_id": 17, "profile_path": "/6dvQQidlXsNFN61nJkaIBcvNpB.jpg", "order": 4}, {"name": "Frances Bavier", "character": "Mrs. Barley", "id": 12283, "credit_id": "52fe427dc3a36847f8022c23", "cast_id": 18, "profile_path": "/8oKsw1dSx7GZ4Ngqhtiq2HGwqHG.jpg", "order": 5}, {"name": "Lock Martin", "character": "Gort", "id": 12284, "credit_id": "52fe427dc3a36847f8022c27", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Elmer Davis", "character": "Himself", "id": 12285, "credit_id": "52fe427dc3a36847f8022c2b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "H.V. Kaltenborn", "character": "Himself", "id": 12286, "credit_id": "52fe427dc3a36847f8022c2f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Drew Pearson", "character": "Himself", "id": 12287, "credit_id": "52fe427dc3a36847f8022c33", "cast_id": 22, "profile_path": "/sE7j0hA4tu7PinyVfDIJ8W2fo7I.jpg", "order": 9}, {"name": "Bess Flowers", "character": "Lady Outside Jewelry Store", "id": 121323, "credit_id": "52fe427dc3a36847f8022c37", "cast_id": 23, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 10}], "directors": [{"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022bc9", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 6.9, "runtime": 92}, "829": {"poster_path": "/iIHO6FzF6lL4mA90rrmk3Y705XS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30000000, "overview": "Jack Nicholson is private eye Jake Gittes, living off the murky moral climate of sunbaked, pre-World War II Southern California. Hired by a beautiful socialite (Faye Dunaway) to investigate her husband's extra-marital affair, Gittes is swept into a maelstrom of double dealings and deadly deceits, uncovering a web of personal and political scandals that come crashing together.", "video": false, "id": 829, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Chinatown", "tagline": "", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071315", "adult": false, "backdrop_path": "/mwo3gk3BWXt9f2LSTmQar5Nu6I3.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Penthouse", "id": 6226}, {"name": "Long Road Productions", "id": 10208}], "release_date": "1974-06-20", "popularity": 1.04087421863914, "original_title": "Chinatown", "budget": 6000000, "cast": [{"name": "Jack Nicholson", "character": "Jake Gittes", "id": 514, "credit_id": "52fe427dc3a36847f8022cfd", "cast_id": 17, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Faye Dunaway", "character": "Evelyn Cross Mulwray", "id": 6450, "credit_id": "52fe427dc3a36847f8022d01", "cast_id": 18, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 1}, {"name": "John Huston", "character": "Noah Cross", "id": 6593, "credit_id": "52fe427dc3a36847f8022d05", "cast_id": 19, "profile_path": "/x5P9KPVj6i8XnrgeEEWiiYKCSdd.jpg", "order": 2}, {"name": "Perry Lopez", "character": "Lieutenant Lou Escobar", "id": 12295, "credit_id": "52fe427dc3a36847f8022d09", "cast_id": 20, "profile_path": "/bpw3oCVkAasOd8A2uwy60pnSXoD.jpg", "order": 3}, {"name": "John Hillerman", "character": "Russ Yelburton", "id": 12296, "credit_id": "52fe427dc3a36847f8022d0d", "cast_id": 21, "profile_path": "/93n8VRJIlZivnNES3W1utuWfvkp.jpg", "order": 4}, {"name": "Darrell Zwerling", "character": "Hollis I. Mulwray", "id": 12297, "credit_id": "52fe427dc3a36847f8022d11", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Diane Ladd", "character": "Ida Sessions", "id": 6587, "credit_id": "52fe427dc3a36847f8022d15", "cast_id": 23, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 6}, {"name": "Roy Jenson", "character": "Claude Mulvihill", "id": 12298, "credit_id": "52fe427dc3a36847f8022d19", "cast_id": 24, "profile_path": "/swkMoVqkIw3CKTKkIzR2yHEfyF3.jpg", "order": 7}, {"name": "Roman Polanski", "character": "Man with Knife", "id": 3556, "credit_id": "52fe427dc3a36847f8022d1d", "cast_id": 25, "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "order": 8}, {"name": "Richard Bakalyan", "character": "Detective Loach", "id": 12299, "credit_id": "52fe427dc3a36847f8022d21", "cast_id": 26, "profile_path": "/flHUIu0hpigaZYXb7XfkEFmPc7j.jpg", "order": 9}, {"name": "Bruce Glover", "character": "Duffy", "id": 10194, "credit_id": "52fe427dc3a36847f8022d25", "cast_id": 27, "profile_path": "/xVS6edZlUempGkjWqSnPnkGcRTw.jpg", "order": 10}, {"name": "Joe Mantell", "character": "Walsh", "id": 78937, "credit_id": "52fe427dc3a36847f8022d29", "cast_id": 28, "profile_path": "/5yDIgBi2dYc7PdTcAcmSLeSg4t1.jpg", "order": 11}, {"name": "Nandu Hinds", "character": "Sophie", "id": 1077252, "credit_id": "52fe427dc3a36847f8022d2d", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "James O'Rear", "character": "Lawyer", "id": 95265, "credit_id": "52fe427dc3a36847f8022d31", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "James Hong", "character": "Evelyn's Butler", "id": 20904, "credit_id": "52fe427dc3a36847f8022d35", "cast_id": 31, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 14}, {"name": "Beulah Quo", "character": "Maid", "id": 156813, "credit_id": "52fe427dc3a36847f8022d39", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Jerry Fujikawa", "character": "Gardener", "id": 164712, "credit_id": "52fe427dc3a36847f8022d3d", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Belinda Palmer", "character": "Katherine", "id": 1077253, "credit_id": "52fe427dc3a36847f8022d41", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Roy Roberts", "character": "Mayor Bagby", "id": 19400, "credit_id": "52fe427dc3a36847f8022d45", "cast_id": 35, "profile_path": "/zKGk6q2As8QFkE4V0OHD3JmF4yA.jpg", "order": 18}, {"name": "Noble Willingham", "character": "Councilman", "id": 31005, "credit_id": "52fe427dc3a36847f8022d49", "cast_id": 36, "profile_path": "/stdQUjYtyjfuJRgA89DyzkZEyai.jpg", "order": 19}, {"name": "Elliott Montgomery", "character": "Councilman", "id": 1077254, "credit_id": "52fe427dc3a36847f8022d4d", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Rance Howard", "character": "Irate Farmer", "id": 22250, "credit_id": "53832a30c3a368059b00858c", "cast_id": 49, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 21}, {"name": "George Justin", "character": "Barber", "id": 5259, "credit_id": "52fe427dc3a36847f8022d55", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "C.O. Erickson", "character": "Customer", "id": 7690, "credit_id": "52fe427dc3a36847f8022d59", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Fritzi Burr", "character": "Mulwray's Secretary", "id": 153640, "credit_id": "52fe427dc3a36847f8022d5d", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Charles Knapp", "character": "Mortician", "id": 943879, "credit_id": "52fe427dc3a36847f8022d61", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Claudio Martinez", "character": "Boy on Horseback", "id": 980729, "credit_id": "52fe427dc3a36847f8022d65", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Federico Roberto", "character": "Cross' Butler", "id": 1077255, "credit_id": "52fe427dc3a36847f8022d69", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "Allan Warnick", "character": "Clerk", "id": 1005536, "credit_id": "52fe427dc3a36847f8022d6d", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "John Holland", "character": "Farmer in the Valley", "id": 126656, "credit_id": "53a48a8c0e0a2614360000bf", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Jesse Vint", "character": "Farmer in the Valley", "id": 12123, "credit_id": "52fe427dc3a36847f8022d7b", "cast_id": 48, "profile_path": "/yJKMTKJgvoqEdy4ExnJlNjrszVi.jpg", "order": 30}, {"name": "Burt Young", "character": "Curly", "id": 4521, "credit_id": "52fe427dc3a36847f8022d71", "cast_id": 46, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 31}, {"name": "Jim Burk", "character": "Farmer in the Valley", "id": 159024, "credit_id": "53a48af00e0a2614320000c6", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Denny Arnold", "character": "Farmer in the Valley", "id": 80303, "credit_id": "53a48b0e0e0a2614390000bd", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Elizabeth Harding", "character": "Curly's Wife", "id": 1332366, "credit_id": "53a48b2a0e0a26143c0000f5", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "John Rogers", "character": "Mr. Palmer", "id": 1332367, "credit_id": "53a48b5b0e0a2614490000de", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Cecil Elliott", "character": "Emma Dill", "id": 126013, "credit_id": "53a48b730e0a2614420000ec", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Paul Jenkins", "character": "Policeman", "id": 158868, "credit_id": "53a48b850e0a2614490000e4", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Lee de Broux", "character": "Policeman", "id": 106768, "credit_id": "53a48b9e0e0a2614490000e7", "cast_id": 57, "profile_path": "/mqrbS1epUSBe8SgV3JNz2ifkiAC.jpg", "order": 38}, {"name": "Bob Golden", "character": "Policeman", "id": 152744, "credit_id": "53a48bb10e0a2614320000d1", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Richard Warren", "character": "Driver (uncredited)", "id": 1332368, "credit_id": "53a48bc70e0a26143c000101", "cast_id": 59, "profile_path": null, "order": 40}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022c9f", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 7.4, "runtime": 130}, "9022": {"poster_path": "/2ENAfp2NhaeXSPNB4makF0In4YY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The orphan Mandy Lane is a beautiful, virgin and pure teenager raised by her aunt, desired by her schoolmates and a close friend of the outcast Emmet. After the death of their high school mate in a pool party, Mandy befriends Chloe, Marlin, Red, Bird and Jake. Red invites the group for a weekend party in the isolated ranch of his family.", "video": false, "id": 9022, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "All the Boys Love Mandy Lane", "tagline": "Everyone is dying to be with her. Someone is killing for it.", "vote_count": 54, "homepage": "http://www.mandylane.co.uk", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0490076", "adult": false, "backdrop_path": "/zSLTGVzYm1c6j5iHBDi8LnuhJuC.jpg", "production_companies": [{"name": "Occupant Films", "id": 14712}], "release_date": "2006-09-09", "popularity": 0.549575628687572, "original_title": "All the Boys Love Mandy Lane", "budget": 6500000, "cast": [{"name": "Amber Heard", "character": "Mandy Lane", "id": 55085, "credit_id": "52fe44d2c3a36847f80ac0d1", "cast_id": 12, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 0}, {"name": "Anson Mount", "character": "Garth", "id": 56675, "credit_id": "52fe44d2c3a36847f80ac0d5", "cast_id": 13, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 1}, {"name": "Michael Welch", "character": "Emmet", "id": 56676, "credit_id": "52fe44d2c3a36847f80ac0d9", "cast_id": 14, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 2}, {"name": "Whitney Able", "character": "Chloe", "id": 56677, "credit_id": "52fe44d2c3a36847f80ac0dd", "cast_id": 15, "profile_path": "/6y5KdwVTlB3o9ZGJ9iIoSCW850M.jpg", "order": 3}, {"name": "Edwin Hodge", "character": "Bird", "id": 56679, "credit_id": "52fe44d2c3a36847f80ac0e1", "cast_id": 16, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 4}, {"name": "Aaron Himelstein", "character": "Red", "id": 43373, "credit_id": "52fe44d2c3a36847f80ac0e5", "cast_id": 17, "profile_path": "/dx7qDc6tMxsfP9jAYkCVClX6p8q.jpg", "order": 5}, {"name": "Luke Grimes", "character": "Jake", "id": 56680, "credit_id": "52fe44d2c3a36847f80ac0e9", "cast_id": 18, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 6}, {"name": "Melissa Price", "character": "Marlin", "id": 56681, "credit_id": "52fe44d2c3a36847f80ac0ed", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Adam Powell", "character": "Dylan", "id": 56682, "credit_id": "52fe44d2c3a36847f80ac0f1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Peyton Hayslip", "character": "Aunt Jo", "id": 56684, "credit_id": "52fe44d2c3a36847f80ac0f5", "cast_id": 21, "profile_path": "/f9tHuhyAOThKGOUAqBmPBhqiCe8.jpg", "order": 9}, {"name": "Brooke Bloom", "character": "Cousin Jen", "id": 56685, "credit_id": "52fe44d2c3a36847f80ac0f9", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Robert Earl Keen", "character": "Keg Trucker", "id": 56686, "credit_id": "52fe44d2c3a36847f80ac0fd", "cast_id": 23, "profile_path": null, "order": 11}], "directors": [{"name": "Jonathan Levine", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac091", "profile_path": "/gfJOKZPSbpzls7FV0Ogv4IpEeXh.jpg", "id": 56661}], "vote_average": 5.7, "runtime": 90}, "9023": {"poster_path": "/7cfXsSe621cWpCpAuuJgud0Gszt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122563539, "overview": "As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.", "video": false, "id": 9023, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spirit: Stallion of the Cimarron", "tagline": "Leader. Hero. Legend.", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0166813", "adult": false, "backdrop_path": "/710YOiGmA6aOfEbVGphwkadDvNh.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2002-05-24", "popularity": 1.00565012528621, "original_title": "Spirit: Stallion of the Cimarron", "budget": 80000000, "cast": [{"name": "Matt Damon", "character": "Spirit", "id": 1892, "credit_id": "52fe44d2c3a36847f80ac133", "cast_id": 1, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "James Cromwell", "character": "The Colonel", "id": 2505, "credit_id": "52fe44d2c3a36847f80ac137", "cast_id": 2, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 1}, {"name": "Daniel Studi", "character": "Little Creek", "id": 56658, "credit_id": "52fe44d2c3a36847f80ac13b", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Chopper Bernet", "character": "Sgt. Adams", "id": 7222, "credit_id": "52fe44d2c3a36847f80ac13f", "cast_id": 4, "profile_path": "/hu7LbfGGZlEyOfRC2X9ieaejkH9.jpg", "order": 3}, {"name": "Jeff LeBeau", "character": "Murphy", "id": 56659, "credit_id": "52fe44d2c3a36847f80ac143", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "John Rubano", "character": "Soldier", "id": 35095, "credit_id": "52fe44d2c3a36847f80ac147", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Richard McGonagle", "character": "Bill", "id": 80416, "credit_id": "52fe44d2c3a36847f80ac181", "cast_id": 16, "profile_path": "/xY4y27xOSrzliCfR5ihqSt3NKOw.jpg", "order": 6}, {"name": "Matt Levin", "character": "Joe", "id": 175511, "credit_id": "52fe44d2c3a36847f80ac185", "cast_id": 17, "profile_path": "/uiLVVlRbJcyGHPMUSuGkln6Kqzw.jpg", "order": 7}, {"name": "Adam Paul", "character": "Pete", "id": 149775, "credit_id": "52fe44d2c3a36847f80ac189", "cast_id": 18, "profile_path": "/9oncQas4rvyDHuMhiyershYM814.jpg", "order": 8}, {"name": "Robert Cait", "character": "Jake", "id": 214516, "credit_id": "52fe44d2c3a36847f80ac18d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Charles Napier", "character": "Roy", "id": 16119, "credit_id": "52fe44d2c3a36847f80ac191", "cast_id": 20, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 10}, {"name": "Meredith Wells", "character": "Little Indian Girl", "id": 1057324, "credit_id": "52fe44d2c3a36847f80ac195", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Zahn McClarnon", "character": "Little Crrek's Friend", "id": 42376, "credit_id": "52fe44d2c3a36847f80ac199", "cast_id": 22, "profile_path": "/nSoFV9yj68KAhoAHIf1QQpr7Es2.jpg", "order": 12}, {"name": "Michael Horse", "character": "Little Creek's Friend", "id": 175468, "credit_id": "52fe44d2c3a36847f80ac19d", "cast_id": 23, "profile_path": "/yZEThGByfkWGYMK0bYBJkjsucNm.jpg", "order": 13}, {"name": "Donald Fullilove", "character": "Train Pull Foreman", "id": 84494, "credit_id": "52fe44d2c3a36847f80ac1a1", "cast_id": 24, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 14}], "directors": [{"name": "Kelly Asbury", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac14d", "profile_path": "/jJAHjXFbjEUJrYjxyuj0AWMPAqW.jpg", "id": 12079}, {"name": "Lorna Cook", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac153", "profile_path": null, "id": 56660}], "vote_average": 6.7, "runtime": 83}, "832": {"poster_path": "/7a1Wx3gI13I1Svrme94DfbzxMHo.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "A psychotic child murderer stalks a city. Despite an exhaustive investigation fueled by public hysteria and outcry, the police have been unable to find him. The police crackdown makes it nearly impossible for the organized criminal underground to operate. The criminals decide that the only way to get the police off their backs is to catch the murderer themselves.", "video": false, "id": 832, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "M", "tagline": "", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0022100", "adult": false, "backdrop_path": "/14qGZyC10dSWadsNuctFEM1QqHZ.jpg", "production_companies": [], "release_date": "1931-05-11", "popularity": 0.430610968885617, "original_title": "M", "budget": 0, "cast": [{"name": "Peter Lorre", "character": "Hans Beckert", "id": 2094, "credit_id": "52fe427dc3a36847f8022f07", "cast_id": 10, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 0}, {"name": "Ellen Widmann", "character": "Frau Beckmann", "id": 12322, "credit_id": "52fe427dc3a36847f8022f0b", "cast_id": 11, "profile_path": null, "order": 1}, {"name": "Inge Landgut", "character": "Elsie Beckmann", "id": 12323, "credit_id": "52fe427dc3a36847f8022f0f", "cast_id": 12, "profile_path": "/1iRmBwOJ9ISS3SU3SsSWfn2jThj.jpg", "order": 2}, {"name": "Otto Wernicke", "character": "Inspector Karl Lohmann", "id": 12324, "credit_id": "52fe427dc3a36847f8022f13", "cast_id": 13, "profile_path": "/tnfFLMa0TA4JO2ME615I3PJ7Myl.jpg", "order": 3}, {"name": "Theodor Loos", "character": "Inspector Groeber", "id": 79, "credit_id": "52fe427dc3a36847f8022f17", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Gustaf Gr\u00fcndgens", "character": "Schr\u00e4nker", "id": 12325, "credit_id": "52fe427dc3a36847f8022f1b", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Friedrich Gna\u00df", "character": "Franz, der Dieb", "id": 12326, "credit_id": "52fe427ec3a36847f8022f1f", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Fritz Odemar", "character": "Falschspieler", "id": 28068, "credit_id": "535829d10e0a26069400047d", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Paul Kemp", "character": "Taschendieb", "id": 219738, "credit_id": "535829e10e0a260682000451", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Theo Lingen", "character": "Bauernf\u00e4nger", "id": 28066, "credit_id": "535829ee0e0a26067f000441", "cast_id": 20, "profile_path": "/8PVRtf3HWd5lYzQ5uUQSaZARl1M.jpg", "order": 9}, {"name": "Gerhard Bienert", "character": "Kriminalsekret\u00e4r", "id": 2913, "credit_id": "5404621bc3a36843720066f0", "cast_id": 21, "profile_path": "/fp7T4vu8xsWsQjXNI5VSPAhRB4v.jpg", "order": 10}], "directors": [{"name": "Fritz Lang", "department": "Directing", "job": "Director", "credit_id": "52fe427dc3a36847f8022ed9", "profile_path": "/iq0KqfkJzEGGHx9MupllyJoCush.jpg", "id": 68}], "vote_average": 8.0, "runtime": 117}, "834": {"poster_path": "/fogihlu39MuYgL6pKObI4SQWPOY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 111340801, "overview": "As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.", "video": false, "id": 834, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Underworld: Evolution", "tagline": "My God. Brother, what have you done?", "vote_count": 699, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0401855", "adult": false, "backdrop_path": "/eJXLO8tlLbKxCPh1iqsBD2oV8Yf.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}], "release_date": "2006-01-12", "popularity": 1.41798730588243, "original_title": "Underworld: Evolution", "budget": 50000000, "cast": [{"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "52fe427ec3a36847f8022fe3", "cast_id": 1, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Scott Speedman", "character": "Michael Corvin", "id": 100, "credit_id": "52fe427ec3a36847f8022fe7", "cast_id": 2, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Tony Curran", "character": "Marcus Corvinus", "id": 2220, "credit_id": "52fe427ec3a36847f8022feb", "cast_id": 3, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 2}, {"name": "Shane Brolly", "character": "Kraven", "id": 3969, "credit_id": "52fe427ec3a36847f8022fef", "cast_id": 4, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 3}, {"name": "Derek Jacobi", "character": "Alexander Corvinus", "id": 937, "credit_id": "52fe427ec3a36847f8022ff3", "cast_id": 5, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 4}, {"name": "Bill Nighy", "character": "Viktor", "id": 2440, "credit_id": "52fe427ec3a36847f8022ff7", "cast_id": 6, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 5}, {"name": "Steven Mackintosh", "character": "Andreas Tanis", "id": 978, "credit_id": "52fe427ec3a36847f8022ffb", "cast_id": 7, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 6}, {"name": "Zita G\u00f6r\u00f6g", "character": "Amelia", "id": 12358, "credit_id": "52fe427ec3a36847f8022fff", "cast_id": 8, "profile_path": "/eU6PsIYBWG4ywX5PoGwmXd7EvV5.jpg", "order": 7}, {"name": "Brian Steele", "character": "William Corvinus", "id": 12359, "credit_id": "52fe427ec3a36847f8023003", "cast_id": 9, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 8}, {"name": "Scott McElroy", "character": "Soren", "id": 12366, "credit_id": "52fe427ec3a36847f8023007", "cast_id": 11, "profile_path": "/8SfKaB26PSTmk8OMFdkIXrQdp52.jpg", "order": 9}, {"name": "John Mann", "character": "Samuel", "id": 12367, "credit_id": "52fe427ec3a36847f802300b", "cast_id": 12, "profile_path": "/ivL5otVmV67DTunWgaXPGQYZbK4.jpg", "order": 10}, {"name": "Michael Sheen", "character": "Lucian", "id": 3968, "credit_id": "52fe427ec3a36847f802300f", "cast_id": 13, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 11}, {"name": "Sophia Myles", "character": "Erika", "id": 3971, "credit_id": "52fe427ec3a36847f8023013", "cast_id": 14, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 12}, {"name": "Richard Cetrone", "character": "Pierce", "id": 12371, "credit_id": "52fe427ec3a36847f8023017", "cast_id": 15, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 13}, {"name": "Mike Mukatis", "character": "Taylor", "id": 12372, "credit_id": "52fe427ec3a36847f802301b", "cast_id": 16, "profile_path": "/mVqAXYseZRVcJvHxkUWl47AcLc8.jpg", "order": 14}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f8023021", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 6.2, "runtime": 106}, "837": {"poster_path": "/fl09Ai2lKPau49MdLp0pOc5rYlP.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 2120439, "overview": "A sleazy cable-TV programmer begins to see his life and the future of media spin out of control in a very unusual fashion when he acquires a new kind of programming for his station.", "video": false, "id": 837, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Videodrome", "tagline": "First it controls your mind. Then it destroys your body.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086541", "adult": false, "backdrop_path": "/z71Ec0T4So8nGnvfR9NQHWraOdh.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Famous Players Ltd", "id": 541}, {"name": "Guardian Trust Company", "id": 542}, {"name": "Filmplan International II", "id": 543}], "release_date": "1983-02-04", "popularity": 0.725073530456093, "original_title": "Videodrome", "budget": 5952000, "cast": [{"name": "James Woods", "character": "Max Renn", "id": 4512, "credit_id": "52fe427ec3a36847f802321b", "cast_id": 13, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 0}, {"name": "Sonja Smits", "character": "Bianca O'Blivion", "id": 12482, "credit_id": "52fe427ec3a36847f802321f", "cast_id": 14, "profile_path": "/8vLGIGKq8kzoCpSXU6iHEXlgByC.jpg", "order": 1}, {"name": "Debbie Harry", "character": "Nicki Brand", "id": 102, "credit_id": "52fe427ec3a36847f8023223", "cast_id": 15, "profile_path": "/1I0WW7NaSXKeQjrIKLwnzvBq5d8.jpg", "order": 2}, {"name": "Peter Dvorsky", "character": "Harlan", "id": 12483, "credit_id": "52fe427ec3a36847f8023227", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Jack Creley", "character": "Brian O'Blivion", "id": 12485, "credit_id": "52fe427ec3a36847f802322b", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Lynne Gorman", "character": "Masha", "id": 12486, "credit_id": "52fe427ec3a36847f802322f", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Julie Khaner", "character": "Bridey", "id": 12487, "credit_id": "52fe427ec3a36847f8023233", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Reiner Schwartz", "character": "Moses", "id": 12488, "credit_id": "52fe427ec3a36847f8023237", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "David Bolt", "character": "Raphael", "id": 12489, "credit_id": "52fe427ec3a36847f802323b", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Lally Cadeau", "character": "Rena King", "id": 12490, "credit_id": "52fe427ec3a36847f802323f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Leslie Carlson", "character": "Barry Convex", "id": 12716, "credit_id": "52fe427ec3a36847f8023243", "cast_id": 24, "profile_path": "/nnYVdNB7MpXbBdq3xRzkD5fTzmW.jpg", "order": 11}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f80231e1", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 7.0, "runtime": 87}, "838": {"poster_path": "/xq8MFYQ6MLZ65mFpweqV6mCs39k.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115000000, "overview": "A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.", "video": false, "id": 838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "American Graffiti", "tagline": "Where were you in '62?", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fkQH8aHqLpdDYXyCXdqRgYOhsoN.jpg", "poster_path": "/gIb6DwlNQznC4Ex3eArgqytgght.jpg", "id": 124950, "name": "American Graffiti Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0069704", "adult": false, "backdrop_path": "/u2fwkirPOiYzmYgtGbInPQtpQo0.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Lucasfilm", "id": 1}, {"name": "The Coppola Company", "id": 536}], "release_date": "1973-08-01", "popularity": 0.519741863505421, "original_title": "American Graffiti", "budget": 777000, "cast": [{"name": "Richard Dreyfuss", "character": "Curt Henderson", "id": 3037, "credit_id": "52fe427ec3a36847f8023309", "cast_id": 16, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 0}, {"name": "Ron Howard", "character": "Steve Bolander", "id": 6159, "credit_id": "52fe427ec3a36847f802330d", "cast_id": 17, "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "order": 1}, {"name": "Paul Le Mat", "character": "John Milner", "id": 12406, "credit_id": "52fe427ec3a36847f8023311", "cast_id": 18, "profile_path": "/lVFnr0ErI5A2ONotKRaAGE6xzAf.jpg", "order": 2}, {"name": "Charles Martin Smith", "character": "Terry 'The Toad' Fields", "id": 1270, "credit_id": "52fe427ec3a36847f8023315", "cast_id": 19, "profile_path": "/fahfWqqrdJwajrfEGmEOXQ1p9bm.jpg", "order": 3}, {"name": "Cindy Williams", "character": "Laurie Henderson", "id": 8434, "credit_id": "52fe427ec3a36847f8023319", "cast_id": 20, "profile_path": "/4lOJA6lyFhJvhlkgH6RRDiq9kXI.jpg", "order": 4}, {"name": "Candy Clark", "character": "Debbie Dunham", "id": 12407, "credit_id": "52fe427ec3a36847f802331d", "cast_id": 21, "profile_path": "/aQKkCUp3tXxw1Mspz8QOfCRCFy2.jpg", "order": 5}, {"name": "Mackenzie Phillips", "character": "Carol", "id": 12408, "credit_id": "52fe427ec3a36847f8023321", "cast_id": 22, "profile_path": "/4FiO7ffdDFWOQuv4MC0NalGSBMD.jpg", "order": 6}, {"name": "Wolfman Jack", "character": "XERB Disc Jockey", "id": 12409, "credit_id": "52fe427ec3a36847f8023325", "cast_id": 23, "profile_path": "/x5dYquWThyYKkNdx2GD74a3Bz96.jpg", "order": 7}, {"name": "Bo Hopkins", "character": "Joe Young", "id": 12410, "credit_id": "52fe427ec3a36847f8023329", "cast_id": 24, "profile_path": "/tfned4hs0rrq7L5PPuS5GnlHFc6.jpg", "order": 8}, {"name": "Manuel Padilla Jr.", "character": "Carlos", "id": 12411, "credit_id": "52fe427ec3a36847f802332d", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Beau Gentry", "character": "Ants", "id": 12412, "credit_id": "52fe427ec3a36847f8023331", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Harrison Ford", "character": "Bob Falfa", "id": 3, "credit_id": "52fe427ec3a36847f8023335", "cast_id": 27, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 11}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f80232b1", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.1, "runtime": 110}, "839": {"poster_path": "/ydQrclzo7sESEnzmqVgJRcyC5Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Travelling businessman, David Mann, angers the driver of a rusty tanker whilst crossing the Californian desert. A simple trip turns deadly as Mann struggles to stay on the road while the tanker plays cat and mouse with his life.", "video": false, "id": 839, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Duel", "tagline": "Fear is the driving force.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0067023", "adult": false, "backdrop_path": "/h6NUGnzIG7q0g8mfIIIQcHIagsz.jpg", "production_companies": [{"name": "Universal TV", "id": 537}], "release_date": "1971-11-10", "popularity": 0.854062498058622, "original_title": "Duel", "budget": 450000, "cast": [{"name": "Dennis Weaver", "character": "David Mann", "id": 12422, "credit_id": "52fe427ec3a36847f802338f", "cast_id": 9, "profile_path": "/rNyOqLREeMxxlGIOHimesPkyUt7.jpg", "order": 0}, {"name": "Eddie Firestone", "character": "Cafe Owner", "id": 12423, "credit_id": "52fe427ec3a36847f8023393", "cast_id": 10, "profile_path": null, "order": 1}, {"name": "Eugene Dynarski", "character": "Man in Cafe", "id": 12424, "credit_id": "52fe427ec3a36847f8023397", "cast_id": 11, "profile_path": "/5O6IqJ06nJWEuGiNSSZURw0m9MR.jpg", "order": 2}, {"name": "Tim Herbert", "character": "Gas Station Attendant", "id": 12425, "credit_id": "52fe427ec3a36847f802339b", "cast_id": 12, "profile_path": null, "order": 3}, {"name": "Charles Seel", "character": "Old Man", "id": 12426, "credit_id": "52fe427ec3a36847f802339f", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Alexander Lockwood", "character": "Old Man in Car", "id": 12427, "credit_id": "52fe427ec3a36847f80233a3", "cast_id": 14, "profile_path": "/kMWJgFoafbn4VbxgpGDJY61IfdQ.jpg", "order": 5}, {"name": "Amy Douglass", "character": "Old Woman in Car", "id": 12428, "credit_id": "52fe427ec3a36847f80233a7", "cast_id": 15, "profile_path": "/gOuKxxrp4oVIKFV5tHMEFgyhP7X.jpg", "order": 6}, {"name": "Shirley O'Hara", "character": "Waitress", "id": 12429, "credit_id": "52fe427ec3a36847f80233ab", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Lucille Benson", "character": "Lady at Snakerama", "id": 12430, "credit_id": "52fe427ec3a36847f80233af", "cast_id": 17, "profile_path": "/rgf9wB5Q3XrZoeO11tuf6NkGMk8.jpg", "order": 8}, {"name": "Carey Loftin", "character": "The Truck Driver", "id": 12431, "credit_id": "52fe427ec3a36847f80233b3", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Jacqueline Scott", "character": "Mme Mann", "id": 40186, "credit_id": "544293b4c3a3683df2002452", "cast_id": 19, "profile_path": "/nXRVE0eA54SP9h2GTPudETpisHq.jpg", "order": 10}, {"name": "Lou Frizzell", "character": "le chauffeur de bus", "id": 160969, "credit_id": "5442945dc3a3683df700237c", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Gene Dynarski", "character": "un homme au caf\u00e9", "id": 1375237, "credit_id": "544294ae0e0a26634d00237e", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Sweet Dick Whittington", "character": "l'interviewer de la radio", "id": 1219284, "credit_id": "5442971cc3a3683e010024ad", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Dale Van Sickel", "character": "un conducteur de voiture", "id": 34094, "credit_id": "544298be0e0a2663360025d6", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f8023361", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.1, "runtime": 90}, "840": {"poster_path": "/3Av8ZPiMrxFq9XiOjZl0tkoq9Oo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 303788635, "overview": "After an encounter with UFOs, a line worker feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.", "video": false, "id": 840, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Close Encounters of the Third Kind", "tagline": "We are not alone.", "vote_count": 268, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075860", "adult": false, "backdrop_path": "/xATZyEpnZ0Z0iO9z5K8RZsraGKI.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "EMI Films", "id": 8263}, {"name": "Julia Phillips and Michael Phillips Productions", "id": 11458}], "release_date": "1977-11-16", "popularity": 1.35677555395098, "original_title": "Close Encounters of the Third Kind", "budget": 20000000, "cast": [{"name": "Richard Dreyfuss", "character": "Roy Neary", "id": 3037, "credit_id": "52fe427ec3a36847f8023499", "cast_id": 14, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 0}, {"name": "Fran\u00e7ois Truffaut", "character": "Claude Lacombe", "id": 1650, "credit_id": "52fe427ec3a36847f802349d", "cast_id": 15, "profile_path": "/fPu5ctdDUqGxQiZM7ARNaNPQtFS.jpg", "order": 1}, {"name": "Teri Garr", "character": "Ronnie Neary", "id": 8437, "credit_id": "52fe427ec3a36847f80234a1", "cast_id": 16, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 2}, {"name": "Melinda Dillon", "character": "Jillian Guiler", "id": 4778, "credit_id": "52fe427ec3a36847f80234a5", "cast_id": 17, "profile_path": "/f4DU3lNCJqNVgwDZmHMlNV96rKV.jpg", "order": 3}, {"name": "Bob Balaban", "character": "David Laughlin", "id": 12438, "credit_id": "52fe427ec3a36847f80234a9", "cast_id": 18, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 4}, {"name": "J. Patrick McNamara", "character": "Project Leader", "id": 12439, "credit_id": "52fe427ec3a36847f80234ad", "cast_id": 19, "profile_path": "/gs6xxzSGKj5Dt63sFW1J6hiGBTf.jpg", "order": 5}, {"name": "Warren J. Kemmerling", "character": "Wild Bill", "id": 12440, "credit_id": "52fe427ec3a36847f80234b1", "cast_id": 20, "profile_path": "/pUy7Kq5cprZhLf8lmAk8BDqP9F4.jpg", "order": 6}, {"name": "Roberts Blossom", "character": "Farmer", "id": 66288, "credit_id": "52fe427ec3a36847f80234b5", "cast_id": 21, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 7}, {"name": "Philip Dodds", "character": "Jean Claude", "id": 12441, "credit_id": "52fe427ec3a36847f80234b9", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Adrienne Campbell", "character": "Sylvia Neary", "id": 12442, "credit_id": "52fe427ec3a36847f80234bd", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Justin Dreyfuss", "character": "Toby Neary", "id": 12443, "credit_id": "52fe427ec3a36847f80234c1", "cast_id": 24, "profile_path": "/2M1XohXWh94qd210K5A88nYkk1J.jpg", "order": 10}, {"name": "Lance Henriksen", "character": "Robert", "id": 2714, "credit_id": "52fe427ec3a36847f80234c5", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 11}, {"name": "Merrill Connally", "character": "Team Leader", "id": 12444, "credit_id": "52fe427ec3a36847f80234c9", "cast_id": 26, "profile_path": "/tM63bmQPPHrARlFG6JR8XaTbUo6.jpg", "order": 12}, {"name": "Cary Guffey", "character": "Barry Guiler", "id": 66645, "credit_id": "52fe427ec3a36847f80234cd", "cast_id": 27, "profile_path": "/dvLTnrVPuo4bsH4x3slxAF8guzw.jpg", "order": 13}, {"name": "Shawn Bishop", "character": "Brad Neary", "id": 1031236, "credit_id": "52fe427ec3a36847f80234d1", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "George DiCenzo", "character": "Major Benchley", "id": 1069, "credit_id": "52fe427fc3a36847f80234d5", "cast_id": 29, "profile_path": "/u5pQL3gkcGcnpkc9NPuyiBB3e8f.jpg", "order": 15}, {"name": "Amy Douglass", "character": "Implantee", "id": 12428, "credit_id": "52fe427fc3a36847f80234d9", "cast_id": 30, "profile_path": "/gOuKxxrp4oVIKFV5tHMEFgyhP7X.jpg", "order": 16}, {"name": "Alexander Lockwood", "character": "Implantee", "id": 12427, "credit_id": "52fe427fc3a36847f80234dd", "cast_id": 31, "profile_path": "/kMWJgFoafbn4VbxgpGDJY61IfdQ.jpg", "order": 17}, {"name": "Eugene Dynarski", "character": "Ike", "id": 12424, "credit_id": "52fe427fc3a36847f80234e1", "cast_id": 32, "profile_path": "/5O6IqJ06nJWEuGiNSSZURw0m9MR.jpg", "order": 18}, {"name": "Mary Gafrey", "character": "Mrs. Harris", "id": 1031237, "credit_id": "52fe427fc3a36847f80234e5", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Josef Sommer", "character": "Larry Butler", "id": 14792, "credit_id": "52fe427fc3a36847f80234e9", "cast_id": 34, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 20}, {"name": "Carl Weathers", "character": "Military Policeman", "id": 1101, "credit_id": "52fe427fc3a36847f80234ed", "cast_id": 35, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 21}, {"name": "Bill Thurman", "character": "Air Traffic", "id": 39774, "credit_id": "52fe427fc3a36847f80234f1", "cast_id": 36, "profile_path": "/d3P6EJJOvNKLalFHTp6RR7sm7NY.jpg", "order": 22}, {"name": "Norman Bartold", "character": "Norman Bartold", "id": 24319, "credit_id": "52fe427fc3a36847f8023513", "cast_id": 42, "profile_path": "/vnYMtCkcP7dnQHQdjRGKlzpdyKB.jpg", "order": 23}, {"name": "Michael J. Dyer", "character": "Himself", "id": 1204277, "credit_id": "52fe427fc3a36847f8023517", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Roger Ernest", "character": "Highway Patrolman", "id": 1204279, "credit_id": "52fe427fc3a36847f802351b", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "F.J. O'Neil", "character": "ARP Project Member", "id": 152911, "credit_id": "52fe427fc3a36847f802351f", "cast_id": 46, "profile_path": "/fk9V2rhZzB7M78cAA1WBdHoQpte.jpg", "order": 26}, {"name": "Randy Hermann", "character": "Returnee #1 Flt. 19", "id": 1122770, "credit_id": "52fe427fc3a36847f8023523", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Hal Barwood", "character": "Returnee #2 Flt. 19", "id": 12678, "credit_id": "52fe427fc3a36847f8023527", "cast_id": 48, "profile_path": "/nT2nqgyHMlO1AlHTwGpaUP11yR9.jpg", "order": 28}, {"name": "Phil Dodds", "character": "ARP Musician", "id": 1204280, "credit_id": "52fe427fc3a36847f802352b", "cast_id": 49, "profile_path": "/mvS2vQaBz09KbwXLCZLJpB38uhD.jpg", "order": 29}, {"name": "Matthew Robbins", "character": "Returnee #3 Flt. 19", "id": 12677, "credit_id": "52fe427fc3a36847f802352f", "cast_id": 50, "profile_path": "/oK61i61u3G5zZO5EtXmepY9IxGy.jpg", "order": 30}, {"name": "David Anderson", "character": "Air Traffic Controller", "id": 208579, "credit_id": "52fe427fc3a36847f8023533", "cast_id": 51, "profile_path": "/1zKR8IOZLw7EoQZiyEPExm1Wxdi.jpg", "order": 31}, {"name": "Richard L. Hawkins", "character": "Air Traffic Controller", "id": 100144, "credit_id": "52fe427fc3a36847f8023537", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Craig Shreeve", "character": "Air Traffic", "id": 163330, "credit_id": "52fe427fc3a36847f802353b", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Roy E. Richards", "character": "Air East Pilot", "id": 1204285, "credit_id": "52fe427fc3a36847f802353f", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "Gene Rader", "character": "Hawker", "id": 1177596, "credit_id": "52fe427fc3a36847f8023543", "cast_id": 55, "profile_path": "/yrNi2UgvIU7IBdiYLcVZZ663NpS.jpg", "order": 35}, {"name": "Eumenio Blanco", "character": "Federale", "id": 1204286, "credit_id": "52fe427fc3a36847f8023547", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Daniel Nunez", "character": "Federale", "id": 1072934, "credit_id": "52fe427fc3a36847f802354b", "cast_id": 57, "profile_path": "/dwI7XdwKjgmmBX2wCou9f3iT0HR.jpg", "order": 37}, {"name": "Chuy Franco", "character": "Federale", "id": 1151582, "credit_id": "52fe427fc3a36847f802354f", "cast_id": 58, "profile_path": "/iQ7hKi0W0DZ2JLVz72Oj9wHKEq6.jpg", "order": 38}, {"name": "Luis Contreras", "character": "Federale", "id": 85870, "credit_id": "52fe427fc3a36847f8023553", "cast_id": 59, "profile_path": "/1OZ6UwzgLEFWvHJXyOvZTYuYisq.jpg", "order": 39}, {"name": "James Keane", "character": "Radio Telescope Team", "id": 1739, "credit_id": "52fe427fc3a36847f8023557", "cast_id": 60, "profile_path": "/1e2zknHnG1Yp92D3hRQUbXHay9c.jpg", "order": 40}, {"name": "Dennis McMullen", "character": "Radio Telescope Team", "id": 994737, "credit_id": "52fe427fc3a36847f802355b", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Cy Young", "character": "Radio Telescope Team", "id": 1204287, "credit_id": "52fe427fc3a36847f802355f", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Tom Howard", "character": "Radio Telescope Team", "id": 939624, "credit_id": "52fe427fc3a36847f8023563", "cast_id": 63, "profile_path": "/A8W7gtPBn0AD5znZe3LL1SOk400.jpg", "order": 43}, {"name": "Richard Stuart", "character": "Truck Dispatcher", "id": 1204288, "credit_id": "52fe427fc3a36847f8023567", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Bob Westmoreland", "character": "Load Dispatcher", "id": 959815, "credit_id": "52fe427fc3a36847f802356b", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Matt Emery", "character": "Support Leader", "id": 98877, "credit_id": "52fe427fc3a36847f802356f", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Galen Thompson", "character": "Special Forces", "id": 166149, "credit_id": "52fe427fc3a36847f8023573", "cast_id": 67, "profile_path": "/dyWMWqcLnkNVpwqOzOHPwOy9lVV.jpg", "order": 47}, {"name": "John Dennis Johnston", "character": "Special Forces", "id": 85869, "credit_id": "52fe427fc3a36847f8023577", "cast_id": 68, "profile_path": "/c0EIs8wCQehz0bRvao7Qxfot1h3.jpg", "order": 48}, {"name": "John Ewing", "character": "Dirty Tricks #1", "id": 1030924, "credit_id": "52fe427fc3a36847f802357b", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Keith Atkinson", "character": "Dirty Tricks #2", "id": 152729, "credit_id": "52fe427fc3a36847f802357f", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Robert Broyles", "character": "Dirty Tricks #3", "id": 160483, "credit_id": "52fe427fc3a36847f8023583", "cast_id": 71, "profile_path": "/jNe4YkViiHJ8bLfsQIo2RVJNloo.jpg", "order": 51}, {"name": "Kirk Raymond", "character": "Dirty Tricks #4", "id": 1204291, "credit_id": "52fe427fc3a36847f8023587", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Bennett Wayne Dean Sr.", "character": "Scientist (uncredited)", "id": 1204292, "credit_id": "52fe427fc3a36847f802358b", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Basil Hoffman", "character": "Longly (uncredited)", "id": 91369, "credit_id": "52fe427fc3a36847f802358f", "cast_id": 74, "profile_path": "/3kIPq25xlD05KZWJa6T835mlUMc.jpg", "order": 54}, {"name": "J. Allen Hynek", "character": "Himself - Smoking Pipe at Landing Site (uncredited)", "id": 1204293, "credit_id": "52fe427fc3a36847f8023593", "cast_id": 75, "profile_path": "/hUlCqpwtRHokKAd95LI1FPuB8KQ.jpg", "order": 55}, {"name": "Monty Jordan", "character": "Special Forces Commander / Helicopter Pilot (uncredited)", "id": 1204294, "credit_id": "52fe427fc3a36847f8023597", "cast_id": 76, "profile_path": "/byNI0Cwu6Fn935NA7cJXcY36PAx.jpg", "order": 56}, {"name": "Stephen Powers", "character": "UN Observer (uncredited)", "id": 1204295, "credit_id": "52fe427fc3a36847f802359b", "cast_id": 77, "profile_path": "/xtED5cLeDStpyHhZx9eYAlyBzc3.jpg", "order": 57}, {"name": "Howard K. Smith", "character": "Howard K. Smith (uncredited)", "id": 115768, "credit_id": "52fe427fc3a36847f802359f", "cast_id": 78, "profile_path": "/dJZbxSDmSvo2I7WaemEbKd7wJwM.jpg", "order": 58}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe427ec3a36847f8023453", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.8, "runtime": 135}, "841": {"poster_path": "/vvXGhr0vqQ0GT9npc8y5StOCJph.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30925690, "overview": "In the year 10,191, the world is at war for control of the desert planet Dune -- the only place where the time-travel substance Spice can be found. But when one leader gives up control, it's only so he can stage a coup with some unsavory characters.", "video": false, "id": 841, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Dune", "tagline": "A world beyond your experience, beyond your imagination.", "vote_count": 156, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oSMjS3kYk6e7hGoqviNzhniri09.jpg", "poster_path": "/3YfFvHwHk86tNJOCy3RjgN9UH4s.jpg", "id": 53885, "name": "Dune Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0087182", "adult": false, "backdrop_path": "/zwyQjr7PAIVvcQoVrI5kXqXqt2t.jpg", "production_companies": [{"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "1984-12-14", "popularity": 0.583372650103816, "original_title": "Dune", "budget": 40000000, "cast": [{"name": "Kyle MacLachlan", "character": "Paul Usul Muad'Dib Atreides", "id": 6677, "credit_id": "52fe427fc3a36847f8023661", "cast_id": 23, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 0}, {"name": "Francesca Annis", "character": "Lady Jessica", "id": 12513, "credit_id": "52fe427fc3a36847f8023645", "cast_id": 16, "profile_path": "/gzk3kD4qWhOBUVF536JeMLmlVbo.jpg", "order": 1}, {"name": "Leonardo Cimino", "character": "The Baron's Doctor", "id": 12514, "credit_id": "52fe427fc3a36847f8023649", "cast_id": 17, "profile_path": "/gb2YuqRIifoTjX0F6YkYP4p4z29.jpg", "order": 2}, {"name": "Brad Dourif", "character": "Piter De Vries", "id": 1370, "credit_id": "52fe427fc3a36847f802364d", "cast_id": 18, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 3}, {"name": "Jos\u00e9 Ferrer", "character": "Padishah Emperor Shaddam IV", "id": 12515, "credit_id": "52fe427fc3a36847f8023651", "cast_id": 19, "profile_path": "/4AeQKvJXTSFrjNtSKm2BFWVHdCr.jpg", "order": 4}, {"name": "Linda Hunt", "character": "Shadout Mapes", "id": 12516, "credit_id": "52fe427fc3a36847f8023655", "cast_id": 20, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 5}, {"name": "Freddie Jones", "character": "Thufir Hawat", "id": 12517, "credit_id": "52fe427fc3a36847f8023659", "cast_id": 21, "profile_path": "/mh2aJ6fuzsjsCG8bNyelPuqPHt3.jpg", "order": 6}, {"name": "Richard Jordan", "character": "Duncan Idaho", "id": 12518, "credit_id": "52fe427fc3a36847f802365d", "cast_id": 22, "profile_path": "/lsIKxCURO9l4zEnVLwbVG2o1fLQ.jpg", "order": 7}, {"name": "Virginia Madsen", "character": "Princess Irulan", "id": 12519, "credit_id": "52fe427fc3a36847f8023665", "cast_id": 24, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 8}, {"name": "Silvana Mangano", "character": "Rev. Mother Ramallo", "id": 12520, "credit_id": "52fe427fc3a36847f8023669", "cast_id": 25, "profile_path": "/8KFcMFxQbrOkXc0do7xuu8mNuNy.jpg", "order": 9}, {"name": "Everett McGill", "character": "Stilgar", "id": 5616, "credit_id": "52fe427fc3a36847f802366d", "cast_id": 26, "profile_path": "/qeNdO3yN3cWVWgKQqQOKU812iiR.jpg", "order": 10}, {"name": "Kenneth McMillan", "character": "Baron Vladimir Harkonnen", "id": 12521, "credit_id": "52fe427fc3a36847f8023671", "cast_id": 27, "profile_path": "/St74rdoCMMJHRMaEY2kU2YmuaD.jpg", "order": 11}, {"name": "Jack Nance", "character": "Capt. Iakin Nefud", "id": 6718, "credit_id": "52fe427fc3a36847f8023675", "cast_id": 28, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 12}, {"name": "Si\u00e2n Phillips", "character": "Rev. Mother Gaius Helen Mohiam", "id": 12522, "credit_id": "52fe427fc3a36847f8023679", "cast_id": 29, "profile_path": "/dihKDaexR40FUl4GGaoDb2RBhVx.jpg", "order": 13}, {"name": "J\u00fcrgen Prochnow", "character": "Duke Leto Atreides", "id": 920, "credit_id": "52fe427fc3a36847f802367d", "cast_id": 30, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 14}, {"name": "Patrick Stewart", "character": "Gurney Halleck", "id": 2387, "credit_id": "52fe427fc3a36847f8023681", "cast_id": 31, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 15}, {"name": "Sting", "character": "Feyd-Rautha", "id": 982, "credit_id": "52fe427fc3a36847f8023685", "cast_id": 32, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 16}, {"name": "Dean Stockwell", "character": "Dr. Wellington Yueh", "id": 923, "credit_id": "52fe427fc3a36847f8023689", "cast_id": 33, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 17}, {"name": "Max von Sydow", "character": "Dr. Kynes", "id": 2201, "credit_id": "52fe427fc3a36847f802368d", "cast_id": 34, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 18}, {"name": "Sean Young", "character": "Chani", "id": 586, "credit_id": "52fe427fc3a36847f8023691", "cast_id": 35, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 19}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe427fc3a36847f80235ed", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 6.5, "runtime": 137}, "843": {"poster_path": "/njsrOBLdCjfTUjhHuomEGNdnD8v.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "KH", "name": "Cambodia"}, {"iso_3166_1": "TH", "name": "Thailand"}], "revenue": 12854953, "overview": "A melancholy story about the love between a woman and a man who live in the same building and one day find out that their husband and wife had an affair with each other. More and more the two meet during their daily lives as they determine that they both don\u2019t want to be lonely in their marriage.", "video": false, "id": 843, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "In the Mood for Love", "tagline": "", "vote_count": 64, "homepage": "http://www.wkw-inthemoodforlove.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fcGKAq9R8fjvXBhVhEds7SRDiWS.jpg", "id": 287016, "name": "Wong Kar-Wai's Informal Trilogy"}, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0118694", "adult": false, "backdrop_path": "/aAWgHv8whxLj25ZxpSTnBPgXMzo.jpg", "production_companies": [{"name": "Block 2 Pictures", "id": 539}, {"name": "Jet Tone Production", "id": 540}], "release_date": "2000-05-22", "popularity": 1.05673300118764, "original_title": "\u82b1\u6a23\u5e74\u83ef", "budget": 0, "cast": [{"name": "Tony Leung Chiu-Wai", "character": "Chow Mo-Wan", "id": 1337, "credit_id": "52fe4280c3a36847f8023f41", "cast_id": 20, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 0}, {"name": "Maggie Cheung", "character": "Su Li-Zhen", "id": 1338, "credit_id": "52fe4280c3a36847f8023f45", "cast_id": 21, "profile_path": "/qDkqRF3SwuopbT2bw6B4amEwQzO.jpg", "order": 1}, {"name": "Siu Ping-Lam", "character": "Ah Ping", "id": 12674, "credit_id": "52fe4280c3a36847f8023f19", "cast_id": 6, "profile_path": "/u4bMsCdy0kYKqb0tQDjUQF4OWwb.jpg", "order": 2}, {"name": "Rebecca Pan", "character": "Mrs. Suen", "id": 12462, "credit_id": "52fe4280c3a36847f8023f1d", "cast_id": 8, "profile_path": "/7UFb7P8IrcNNmhDShBfH7XhdA6d.jpg", "order": 4}, {"name": "Kelly Lai Chen", "character": "Mr. Ho", "id": 12463, "credit_id": "52fe4280c3a36847f8023f21", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Man-Lei Chan", "character": "", "id": 12464, "credit_id": "52fe4280c3a36847f8023f25", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Kam-wah Koo", "character": "", "id": 12465, "credit_id": "52fe4280c3a36847f8023f29", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Roy Cheung", "character": "Mr. Chan", "id": 12466, "credit_id": "52fe4280c3a36847f8023f2d", "cast_id": 12, "profile_path": "/symrW3ZLhvl7Vk7Xm9CKNB1sXYl.jpg", "order": 8}, {"name": "Tsi-Ang Chin", "character": "The Amah", "id": 12467, "credit_id": "52fe4280c3a36847f8023f31", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Hsien Yu", "character": "", "id": 12468, "credit_id": "52fe4280c3a36847f8023f35", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Po-chun Chow", "character": "", "id": 12469, "credit_id": "52fe4280c3a36847f8023f39", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Paulyn Sun", "character": "Mrs. Chow", "id": 12470, "credit_id": "52fe4280c3a36847f8023f3d", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Wong Kar-Wai", "department": "Directing", "job": "Director", "credit_id": "52fe4280c3a36847f8023efd", "profile_path": "/rGk5pKmYcWB3jVPCfZcTZxDrAUr.jpg", "id": 12453}], "vote_average": 7.7, "runtime": 98}, "9036": {"poster_path": "/mk5jCKo0M6zYMWZ2TuDIyNznHAp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120455994, "overview": "In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.", "video": false, "id": 9036, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Eight Below", "tagline": "The Most Amazing Story Of Survival, Friendship, And Adventure Ever Told.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397313", "adult": false, "backdrop_path": "/kHRrE2xAMe3JdPTwY4wXgOhlfmv.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Mandeville Films", "id": 10227}, {"name": "Winking Productions", "id": 20669}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2006-02-17", "popularity": 0.818142480767418, "original_title": "Eight Below", "budget": 40000000, "cast": [{"name": "Paul Walker", "character": "Jerry Shepard", "id": 8167, "credit_id": "52fe44d4c3a36847f80ac907", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Bruce Greenwood", "character": "Davis McClaren", "id": 21089, "credit_id": "52fe44d4c3a36847f80ac90b", "cast_id": 2, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 1}, {"name": "Moon Bloodgood", "character": "Katie", "id": 56455, "credit_id": "52fe44d4c3a36847f80ac90f", "cast_id": 3, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 2}, {"name": "Jason Biggs", "character": "Charlie Cooper", "id": 21593, "credit_id": "52fe44d4c3a36847f80ac913", "cast_id": 4, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 3}, {"name": "Gerard Plunkett", "character": "Dr. Andy Harrison", "id": 27124, "credit_id": "52fe44d4c3a36847f80ac917", "cast_id": 5, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 4}, {"name": "August Schellenberg", "character": "Mindo", "id": 18260, "credit_id": "52fe44d4c3a36847f80ac91b", "cast_id": 6, "profile_path": "/iZ7dQ3JMdrWoUyh4vB8vOxhqoSI.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Eve McClaren", "id": 19957, "credit_id": "531a054092514177ab002bb0", "cast_id": 14, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}], "directors": [{"name": "Frank Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe44d4c3a36847f80ac921", "profile_path": "/iZrDellT1OWf1syKzBgQHjY2hJe.jpg", "id": 664}], "vote_average": 6.3, "runtime": 120}, "845": {"poster_path": "/y0Lec3HBZbzkB3b1ACSC4tVnj9n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A psychotic socialite confronts a pro tennis star with a theory on how two complete strangers can get away with murder...a theory that he plans to implement.", "video": false, "id": 845, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Strangers on a Train", "tagline": "It starts with a shriek of a train whistle...and ends with shrieking excitement.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0044079", "adult": false, "backdrop_path": "/3DL6BmslkyGHm70HXFNUwoYYIjb.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1951-06-30", "popularity": 0.791567879936288, "original_title": "Strangers on a Train", "budget": 1200000, "cast": [{"name": "Farley Granger", "character": "Guy Haines", "id": 12497, "credit_id": "52fe4281c3a36847f80240a9", "cast_id": 16, "profile_path": "/uMawvHjbqcg2s1UnedJwD9Njzy5.jpg", "order": 0}, {"name": "Ruth Roman", "character": "Anne Morton", "id": 12498, "credit_id": "52fe4281c3a36847f80240ad", "cast_id": 17, "profile_path": "/fBphiIhNwlseidUeUQ6s0Cg7wCJ.jpg", "order": 1}, {"name": "Robert Walker", "character": "Bruno Anthony", "id": 12499, "credit_id": "52fe4281c3a36847f80240b1", "cast_id": 18, "profile_path": "/q2qZUq1wRa28FFsgp9bGx8soaEX.jpg", "order": 2}, {"name": "Leo G. Carroll", "character": "Sen. Morton", "id": 2642, "credit_id": "52fe4281c3a36847f80240b5", "cast_id": 19, "profile_path": "/xTxzUMrwj00ZXa3iWOqP5w1xgO5.jpg", "order": 3}, {"name": "Patricia Hitchcock", "character": "Barbara Morton", "id": 12500, "credit_id": "52fe4281c3a36847f80240b9", "cast_id": 20, "profile_path": "/aB59dttMS0KHSv2frlqcx43HCeC.jpg", "order": 4}, {"name": "Norma Varden", "character": "Mrs. Cunningham", "id": 10926, "credit_id": "52fe4281c3a36847f80240bd", "cast_id": 21, "profile_path": "/2Ypt67es6XciWAyihkcG2MSjUzT.jpg", "order": 5}, {"name": "Marion Lorne", "character": "Mrs. Anthony", "id": 12501, "credit_id": "52fe4281c3a36847f80240c1", "cast_id": 22, "profile_path": "/iBRYqd8geHrBx8SB2hSKmLpZx5W.jpg", "order": 6}, {"name": "Jonathan Hale", "character": "Mr. Anthony", "id": 12502, "credit_id": "52fe4281c3a36847f80240c5", "cast_id": 23, "profile_path": "/ajOXZDy3XsZkZ3OqsMBejg8BFXG.jpg", "order": 7}, {"name": "Howard St. John", "character": "Police Capt. Turley", "id": 5792, "credit_id": "52fe4281c3a36847f80240c9", "cast_id": 24, "profile_path": "/1MmHUGc6btitSBRTu5vmYeGuHII.jpg", "order": 8}, {"name": "John Brown", "character": "Prof. Collins", "id": 12503, "credit_id": "52fe4281c3a36847f80240cd", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Robert Gist", "character": "Leslie Hennessy", "id": 12504, "credit_id": "52fe4281c3a36847f80240d1", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Kasey Rogers", "character": "Miriam Joyce Haines", "id": 12505, "credit_id": "52fe4281c3a36847f80240d5", "cast_id": 27, "profile_path": "/btowNltXZULTnTpco2uOBNWfvMO.jpg", "order": 11}, {"name": "Harry Hines", "character": "Elderly man crawling under carousel", "id": 348497, "credit_id": "52fe4281c3a36847f80240df", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "John Doucette", "character": "Hammond", "id": 34130, "credit_id": "52fe4281c3a36847f80240e3", "cast_id": 30, "profile_path": "/2J6UfUe9nNkd6wjtIF5Yp3ilnZ8.jpg", "order": 13}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f8024057", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.2, "runtime": 101}, "846": {"poster_path": "/cpvwMPMkvsZLzThJTcnh8wcNPMH.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189198313, "overview": "Blackwood, Texas: After falling through a hole in the ground, a young boy is infected by the alien Black Oil. One week later, in Dallas, a federal building is bombed by terrorists, killing five people, including the Blackwood boy. Mulder and Scully, now part of an FBI anti-terrorism unit, learn that the boy as well as three other victims were dead even before the bombing, cause of death: an alien virus. In the Texas desert, the agents find an agricultural complex that may hold the key to unlocking the government conspiracy surrounding the extraterrestrials and their lethal virus which Mulder and Scully must fight the government in a conspiracy and find the truth about an alien colonization of Earth.", "video": false, "id": 846, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The X Files", "tagline": "Fight the Future!", "vote_count": 114, "homepage": "", "belongs_to_collection": {"backdrop_path": "/22p3xTTuXc9FEnzyGlfB9KBtR4Y.jpg", "poster_path": "/aeIYknSlbIsjPTJQDExXXuKGRLb.jpg", "id": 19387, "name": "The X-Files Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120902", "adult": false, "backdrop_path": "/xLcH3m07JDmanPo0PpKGgvWD78A.jpg", "production_companies": [{"name": "Ten Thirteen Productions", "id": 545}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1998-06-19", "popularity": 0.972409988008974, "original_title": "The X Files", "budget": 66000000, "cast": [{"name": "David Duchovny", "character": "Special Agent Fox Mulder", "id": 12640, "credit_id": "52fe4281c3a36847f8024173", "cast_id": 16, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Gillian Anderson", "character": "Special Agent Dana Scully", "id": 12214, "credit_id": "52fe4281c3a36847f8024197", "cast_id": 25, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 1}, {"name": "Mitch Pileggi", "character": "Assistant Director Walter Skinner", "id": 12644, "credit_id": "52fe4281c3a36847f8024183", "cast_id": 20, "profile_path": "/yJhcdFVtc2J6Nnqz7rcYB7GI4P9.jpg", "order": 2}, {"name": "William B. Davis", "character": "The Cigarette-Smoking Man", "id": 12643, "credit_id": "52fe4281c3a36847f802417b", "cast_id": 18, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 3}, {"name": "John Neville", "character": "The Well-Manicured Man", "id": 12642, "credit_id": "52fe4281c3a36847f8024177", "cast_id": 17, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 4}, {"name": "Martin Landau", "character": "Alvin Kurtzweil", "id": 2641, "credit_id": "52fe4281c3a36847f802417f", "cast_id": 19, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 5}, {"name": "Jeffrey DeMunn", "character": "Ben Bronschweig, M.D.", "id": 12645, "credit_id": "52fe4281c3a36847f8024187", "cast_id": 21, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 6}, {"name": "Dean Haglund", "character": "Langly", "id": 129252, "credit_id": "55033487c3a3685b9b004828", "cast_id": 30, "profile_path": "/5FBY03TYtBqkD47MhSNEouhALo0.jpg", "order": 7}, {"name": "Bruce Harwood", "character": "John Fitzgerald Byers", "id": 118004, "credit_id": "55033495c3a3687b69004148", "cast_id": 31, "profile_path": "/4OD7KHq0guPqNfz7t05GhSaQtM2.jpg", "order": 8}, {"name": "Tom Braidwood", "character": "Melvin Frohike", "id": 113017, "credit_id": "550334a8c3a3685ba6004e78", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Blythe Danner", "character": "Jana Cassidy", "id": 10401, "credit_id": "52fe4281c3a36847f802418b", "cast_id": 22, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 10}, {"name": "Terry O'Quinn", "character": "Darius Michaud", "id": 12646, "credit_id": "52fe4281c3a36847f802418f", "cast_id": 23, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 11}, {"name": "Armin Mueller-Stahl", "character": "Conrad Strughold", "id": 12647, "credit_id": "52fe4281c3a36847f8024193", "cast_id": 24, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 12}, {"name": "Lucas Black", "character": "Stevie", "id": 155, "credit_id": "5503345cc3a3685b96004dd9", "cast_id": 29, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 13}], "directors": [{"name": "Rob Bowman", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f8024121", "profile_path": "/u9iJgOc7XOkStRXbAHZe2qJ2O8p.jpg", "id": 12523}], "vote_average": 6.0, "runtime": 121}, "847": {"poster_path": "/Akx1CXcDfwvZD5d4ZOsu6DCmYCA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57269863, "overview": "Fearful of a prophecy stating that a girl child will be born to bring about her downfall, the evil Queen Bavmorda imprisons all pregnant women within the formidable stronghold of Nockmaar. A child, Elora Danan, is born in the Nockmaar dungeons and identified as the prophesied child by a birthmark on her arm. However, before the black sorceress arrives to claim the child, Elora's mother convinces her reluctant midwife to escape with the baby. Willow, a timid farmer and aspiring sorcerer, is entrusted with delivering the royal infant from evil.", "video": false, "id": 847, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Willow", "tagline": "Adventure doesn't come any bigger than this.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096446", "adult": false, "backdrop_path": "/1HyOTDlkly2rlRWp2UBFTzKH8vt.jpg", "production_companies": [{"name": "Imagine Films Entertainment", "id": 20743}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Lucasfilm", "id": 1}], "release_date": "1988-05-20", "popularity": 0.794664751382705, "original_title": "Willow", "budget": 35000000, "cast": [{"name": "Warwick Davis", "character": "Willow Ufgood", "id": 11184, "credit_id": "52fe4281c3a36847f8024265", "cast_id": 22, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 0}, {"name": "Val Kilmer", "character": "Madmartigan", "id": 5576, "credit_id": "52fe4281c3a36847f802425d", "cast_id": 20, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 1}, {"name": "Joanne Whalley", "character": "Sorsha", "id": 12656, "credit_id": "52fe4281c3a36847f8024261", "cast_id": 21, "profile_path": "/f7o8bum7dHPDALZ4tmZiekoOWtG.jpg", "order": 2}, {"name": "Jean Marsh", "character": "Queen Bavmorda", "id": 12657, "credit_id": "52fe4281c3a36847f8024269", "cast_id": 23, "profile_path": "/7LLKosDRULvBm1FOOBunpkgoNdj.jpg", "order": 3}, {"name": "Patricia Hayes", "character": "Fin Raziel", "id": 12658, "credit_id": "52fe4281c3a36847f802426d", "cast_id": 24, "profile_path": "/1G864KAppXhSlwarx9fHoMufjWF.jpg", "order": 4}, {"name": "Billy Barty", "character": "High Aldwin", "id": 12659, "credit_id": "52fe4281c3a36847f8024271", "cast_id": 25, "profile_path": "/4tDse78ebbkwAh8mr7BLqY9QMp9.jpg", "order": 5}, {"name": "Pat Roach", "character": "General Kael", "id": 10942, "credit_id": "52fe4281c3a36847f8024275", "cast_id": 26, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 6}, {"name": "Gavin O'Herlihy", "character": "Airk Thaughbaer", "id": 12660, "credit_id": "52fe4281c3a36847f8024279", "cast_id": 27, "profile_path": "/brFrEXHx5vaeWJmqhQJMEaZhUHl.jpg", "order": 7}, {"name": "David Steinberg", "character": "Meegosh", "id": 12661, "credit_id": "52fe4281c3a36847f802427d", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Phil Fondacaro", "character": "Vohnkar", "id": 12662, "credit_id": "52fe4281c3a36847f8024281", "cast_id": 29, "profile_path": "/3Ao8VPvlytIm3DWFffdSPxwxFdC.jpg", "order": 9}, {"name": "Mark Northover", "character": "Burglekutt", "id": 590081, "credit_id": "52fe4281c3a36847f8024285", "cast_id": 30, "profile_path": "/9FBnX2DSitq1kRuJ8RhXyJy9tvC.jpg", "order": 10}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f80241ed", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.6, "runtime": 126}, "9040": {"poster_path": "/kGE1Uwh4NRwoo3aUg8ocgxOKze7.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29800000, "overview": "Serpico is a 1973 American biopic directed by Sidney Lumet and starring Al Pacino. It's based on Peter Maas' biography of NYPD officer Frank Serpico, who went undercover to expose corruption in the force. The film and its principals were nominated for numerous awards, and together with Scarecrow, which was released the same year, it marked the big breakthrough for Al Pacino. The film was also a commercial success.", "video": false, "id": 9040, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Serpico", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070666", "adult": false, "backdrop_path": "/6pHv9P9yNXvOAp6G9UU8W8wzeLR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "De Laurentiis Entertainment Group", "id": 499}, {"name": "Artists Entertainment Complex", "id": 612}], "release_date": "1973-12-05", "popularity": 0.831773606837441, "original_title": "Serpico", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Officer Frank Serpico", "id": 1158, "credit_id": "52fe44d5c3a36847f80acb41", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "John Randolph Jones", "character": "Chief Sidney Green", "id": 6758, "credit_id": "52fe44d5c3a36847f80acb45", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Jack Kehoe", "character": "Tom Keough", "id": 1273, "credit_id": "52fe44d5c3a36847f80acb49", "cast_id": 3, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 2}, {"name": "Biff McGuire", "character": "Capt. Insp. McClain", "id": 13947, "credit_id": "52fe44d5c3a36847f80acb4d", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Barbara Eda-Young", "character": "Laurie", "id": 56779, "credit_id": "52fe44d5c3a36847f80acb51", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Cornelia Sharpe", "character": "Leslie Lane", "id": 56780, "credit_id": "52fe44d5c3a36847f80acb55", "cast_id": 6, "profile_path": "/kT53AwKe75rsaAhTt50WobvsUKG.jpg", "order": 5}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80acb5b", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 7.5, "runtime": 129}, "28211": {"poster_path": "/9NyVhWbTrCMzWoExYZU54tsDJ6k.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8459458, "overview": "A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.", "video": false, "id": 28211, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Chloe", "tagline": "If the one you love was lying to you, how far would you go to find out the truth?", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1352824", "adult": false, "backdrop_path": "/qVATwWm9QAjkPNzaZHnEHEYHcyy.jpg", "production_companies": [{"name": "Outpost Studios", "id": 25886}, {"name": "StudioCanal", "id": 694}, {"name": "Montecito Picture Company, The", "id": 4607}], "release_date": "2009-09-12", "popularity": 0.469903026954941, "original_title": "Chloe", "budget": 15000000, "cast": [{"name": "Julianne Moore", "character": "Catherine Stewart", "id": 1231, "credit_id": "52fe4581c3a368484e05f53d", "cast_id": 4, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Liam Neeson", "character": "David", "id": 3896, "credit_id": "52fe4581c3a368484e05f535", "cast_id": 2, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 1}, {"name": "Amanda Seyfried", "character": "Chloe", "id": 71070, "credit_id": "52fe4581c3a368484e05f539", "cast_id": 3, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 2}, {"name": "Max Thieriot", "character": "Michael Stewart", "id": 41883, "credit_id": "52fe4581c3a368484e05f55f", "cast_id": 10, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 3}, {"name": "R. H. Thomson", "character": "Frank", "id": 91600, "credit_id": "52fe4581c3a368484e05f563", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Nina Dobrev", "character": "Anna", "id": 19961, "credit_id": "52fe4581c3a368484e05f567", "cast_id": 12, "profile_path": "/7YM2mqfrO9mrNJ6GwBNmSSiWNTR.jpg", "order": 5}, {"name": "Mishu Vellani", "character": "Receptionist", "id": 125579, "credit_id": "52fe4581c3a368484e05f56b", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Julie Khaner", "character": "Bimsy", "id": 12487, "credit_id": "52fe4581c3a368484e05f56f", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Laura DeCarteret", "character": "Alicia", "id": 63858, "credit_id": "52fe4581c3a368484e05f573", "cast_id": 15, "profile_path": "/3Uj7eCO8zxLMFyUd6aNwevhXFA7.jpg", "order": 8}, {"name": "Tiffany Lyndall-Knight", "character": "Trina", "id": 125581, "credit_id": "52fe4581c3a368484e05f577", "cast_id": 17, "profile_path": "/15M9lq3ralCL1xC0bGmLkbaje7W.jpg", "order": 9}, {"name": "Meghan Heffern", "character": "Miranda", "id": 27004, "credit_id": "52fe4581c3a368484e05f57b", "cast_id": 18, "profile_path": "/djl8gcKuGRREfR51UgF0TUfINwG.jpg", "order": 10}, {"name": "Arlene Duncan", "character": "Party Guest", "id": 125582, "credit_id": "52fe4581c3a368484e05f57f", "cast_id": 19, "profile_path": "/n63lHaBvQ8vlMooamgCoCcul25f.jpg", "order": 11}, {"name": "Tamsen McDonough", "character": "Waitress", "id": 1160260, "credit_id": "52fe4582c3a368484e05f5f5", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Kathryn Kriitmaa", "character": "Waitress 2", "id": 1160261, "credit_id": "52fe4582c3a368484e05f5f9", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Adam Waxman", "character": "Bartender", "id": 1160262, "credit_id": "52fe4582c3a368484e05f5fd", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Natalie Lisinska", "character": "Eliza", "id": 1228319, "credit_id": "52fe4582c3a368484e05f601", "cast_id": 42, "profile_path": "/wVZMqXZjwXOQogwJpAiJVnaN1Hl.jpg", "order": 15}], "directors": [{"name": "Atom Egoyan", "department": "Directing", "job": "Director", "credit_id": "52fe4581c3a368484e05f531", "profile_path": "/qG15OKx3VaYicQcDnd88XFlIxl3.jpg", "id": 56205}], "vote_average": 6.2, "runtime": 96}, "850": {"poster_path": "/gM7V7j81UUrUbqZYkWzfAIspQB3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19294144, "overview": "The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.", "video": false, "id": 850, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "A Christmas Story", "tagline": "Peace, Harmony, Comfort and Joy... Maybe Next Year.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sDJLWSHdsORRGMEii0SWvm7DMwN.jpg", "poster_path": "/qjHPRBBiluOwJZp7AcMtrs0dNPr.jpg", "id": 201873, "name": "A Christmas Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085334", "adult": false, "backdrop_path": "/wok0YepwQfBAPsrttFq0W6HXT2g.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Christmas Tree Films", "id": 10757}], "release_date": "1983-11-18", "popularity": 0.255286790924785, "original_title": "A Christmas Story", "budget": 0, "cast": [{"name": "Melinda Dillon", "character": "Mrs. Parker", "id": 4778, "credit_id": "52fe4281c3a36847f802449b", "cast_id": 11, "profile_path": "/f4DU3lNCJqNVgwDZmHMlNV96rKV.jpg", "order": 0}, {"name": "Darren McGavin", "character": "The Old Man (Mr. Parker)", "id": 7333, "credit_id": "52fe4281c3a36847f802449f", "cast_id": 12, "profile_path": "/issKaw0mcujeUZLiLkizs1KYG98.jpg", "order": 1}, {"name": "Peter Billingsley", "character": "Ralphie Parker", "id": 12708, "credit_id": "52fe4281c3a36847f80244a3", "cast_id": 13, "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "order": 2}, {"name": "Ian Petrella", "character": "Randy Parker", "id": 12709, "credit_id": "52fe4281c3a36847f80244a7", "cast_id": 14, "profile_path": "/zqf2DFXa8heDWOpU449VSdsk0R3.jpg", "order": 3}, {"name": "Scott Schwartz", "character": "Flick", "id": 12710, "credit_id": "52fe4281c3a36847f80244ab", "cast_id": 15, "profile_path": "/b4jHavjmm9IclKG1X00Lhl6TcuZ.jpg", "order": 4}, {"name": "R.D. Robb", "character": "Schwartz", "id": 12711, "credit_id": "52fe4281c3a36847f80244af", "cast_id": 16, "profile_path": "/j5xBAzZSS0VHj5kaKCbmc4XROPK.jpg", "order": 5}, {"name": "Tedde Moore", "character": "Miss Shields", "id": 12712, "credit_id": "52fe4281c3a36847f80244b3", "cast_id": 17, "profile_path": "/2y9WGr4Kwsy8rrCMox1m6EAVkC2.jpg", "order": 6}, {"name": "Yano Anaya", "character": "Grover Dill", "id": 12713, "credit_id": "52fe4281c3a36847f80244b7", "cast_id": 18, "profile_path": "/lTHGJL2nO6BLqdna6c4WR58BLPC.jpg", "order": 7}, {"name": "Zack Ward", "character": "Scut Farkus", "id": 12714, "credit_id": "52fe4281c3a36847f80244bb", "cast_id": 19, "profile_path": "/fuWd404vjKvxBRZLX5y8iFFzHqT.jpg", "order": 8}, {"name": "Jeff Gillen", "character": "Santa Claus", "id": 12715, "credit_id": "52fe4281c3a36847f80244bf", "cast_id": 20, "profile_path": "/jIvwCeOOb7gXcd7motKLdaeF3cC.jpg", "order": 9}, {"name": "Leslie Carlson", "character": "Christmas Tree Man", "id": 12716, "credit_id": "52fe4281c3a36847f80244c3", "cast_id": 21, "profile_path": "/nnYVdNB7MpXbBdq3xRzkD5fTzmW.jpg", "order": 10}, {"name": "Jean Shepherd", "character": "Ralphie as an Adult", "id": 12699, "credit_id": "52fe4282c3a36847f80244d3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Jim Hunter", "character": "Freight Man", "id": 61872, "credit_id": "52fe4282c3a36847f80244d7", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "Bob Clark", "department": "Directing", "job": "Director", "credit_id": "52fe4281c3a36847f8024461", "profile_path": "/yQgRWKPFH2uFWIJiWr5EyWLRbvD.jpg", "id": 12698}], "vote_average": 7.1, "runtime": 94}, "9043": {"poster_path": "/m9JjA1pPVMZKmJkShq6iTrItkUW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An uptight, conservative, businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.", "video": false, "id": 9043, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Family Stone", "tagline": "Feel The Love", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356680", "adult": false, "backdrop_path": "/593ifKg4TzL7BMKnA5dyNMaDE3k.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2005-12-14", "popularity": 0.70601905890461, "original_title": "The Family Stone", "budget": 0, "cast": [{"name": "Claire Danes", "character": "Julie Morton", "id": 6194, "credit_id": "52fe44d5c3a36847f80acc6f", "cast_id": 1, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Sybil Stone", "id": 3092, "credit_id": "52fe44d5c3a36847f80acc73", "cast_id": 2, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Rachel McAdams", "character": "Amy Stone", "id": 53714, "credit_id": "52fe44d5c3a36847f80acc77", "cast_id": 3, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 2}, {"name": "Dermot Mulroney", "character": "Everett Stone", "id": 20212, "credit_id": "52fe44d5c3a36847f80acc7b", "cast_id": 4, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 3}, {"name": "Sarah Jessica Parker", "character": "Meredith Morton", "id": 520, "credit_id": "52fe44d5c3a36847f80acca9", "cast_id": 12, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 4}, {"name": "Luke Wilson", "character": "Ben Stone", "id": 36422, "credit_id": "52fe44d5c3a36847f80accad", "cast_id": 13, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Kelly Stone", "id": 8977, "credit_id": "52fe44d5c3a36847f80accb1", "cast_id": 14, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Brian J. White", "character": "Patrick Thomas", "id": 31137, "credit_id": "52fe44d5c3a36847f80accb5", "cast_id": 15, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 7}, {"name": "Tyrone Giordano", "character": "Thad Stone", "id": 142215, "credit_id": "548e327492514122ff004fde", "cast_id": 16, "profile_path": "/wQ7zXkauiSOI8TgULlrlCCPsBLD.jpg", "order": 8}, {"name": "Elizabeth Reaser", "character": "", "id": 53755, "credit_id": "548e32b292514155680031a2", "cast_id": 21, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 13}], "directors": [{"name": "Thomas Bezucha", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80acc81", "profile_path": "/kEoJG7HI8RMGUr3ubRvgwfARzL0.jpg", "id": 56789}], "vote_average": 6.2, "runtime": 103}, "2756": {"poster_path": "/kRP5dGXDhKt7bDpXX4YBa4dRwlL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000098, "overview": "A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.", "video": false, "id": 2756, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Abyss", "tagline": "There's everything you've ever known about adventure, and then there's The Abyss.", "vote_count": 232, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096754", "adult": false, "backdrop_path": "/5mE9rLSjtjGdl1q2tSsqMAydE4F.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Lightstorm Entertainment", "id": 574}, {"name": "Pacific Western", "id": 1280}], "release_date": "1989-08-08", "popularity": 1.13523909540453, "original_title": "The Abyss", "budget": 70000000, "cast": [{"name": "Ed Harris", "character": "Virgil 'Bud' Brigman", "id": 228, "credit_id": "52fe436ac3a36847f80528f9", "cast_id": 10, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 0}, {"name": "Mary Elizabeth Mastrantonio", "character": "Lindsey Brigman", "id": 1161, "credit_id": "52fe436ac3a36847f80528fd", "cast_id": 11, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 1}, {"name": "Michael Biehn", "character": "Lieutenant Hiram Coffey", "id": 2712, "credit_id": "52fe436ac3a36847f8052901", "cast_id": 12, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 2}, {"name": "Leo Burmester", "character": "Catfish De Vries", "id": 30151, "credit_id": "52fe436ac3a36847f8052905", "cast_id": 13, "profile_path": "/8V3Ev6pKP8VBRIjDONJW5cgi5Zc.jpg", "order": 3}, {"name": "Todd Graff", "character": "Alan 'Hippy' Carnes", "id": 18342, "credit_id": "52fe436ac3a36847f8052909", "cast_id": 14, "profile_path": "/vkPr16eIkAXeZr2Xa0HUeiwsdF.jpg", "order": 4}, {"name": "John Bedford Lloyd", "character": "Jammer Willis", "id": 60118, "credit_id": "52fe436ac3a36847f805290d", "cast_id": 15, "profile_path": "/6tE1lFrmKiOVsHt3fUay62ttn3U.jpg", "order": 5}, {"name": "Kimberly Scott", "character": "Lisa 'One Night' Standing", "id": 1984, "credit_id": "52fe436ac3a36847f8052911", "cast_id": 16, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 6}, {"name": "Chris Elliott", "character": "Bendix", "id": 1534, "credit_id": "52fe436ac3a36847f8052915", "cast_id": 17, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 7}, {"name": "J.C. Quinn", "character": "Arliss 'Sonny' Dawson", "id": 21757, "credit_id": "52fe436ac3a36847f8052919", "cast_id": 18, "profile_path": "/wNvCFv3EfT2og032UGcfWQ8hatV.jpg", "order": 8}, {"name": "Captain Kidd Brewer Jr.", "character": "Lew Finler", "id": 948563, "credit_id": "52fe436ac3a36847f805291d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "George Robert Klek", "character": "Wilhite", "id": 951985, "credit_id": "52fe436ac3a36847f8052921", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Christopher Murphy", "character": "Schoenick", "id": 551894, "credit_id": "52fe436ac3a36847f8052925", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Adam Nelson", "character": "Ensign Monk", "id": 4732, "credit_id": "52fe436ac3a36847f8052929", "cast_id": 22, "profile_path": "/wKAaHygc4o4Mr2HwBxPELm1ysqg.jpg", "order": 12}, {"name": "Dick Warlock", "character": "Dwight Perry", "id": 14663, "credit_id": "52fe436ac3a36847f805292d", "cast_id": 23, "profile_path": "/n0TfOxlMYfqxclyRAN4kj2dajkk.jpg", "order": 13}, {"name": "Jimmie Ray Weeks", "character": "Leland McBride", "id": 15442, "credit_id": "52fe436ac3a36847f8052931", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "J. Kenneth Campbell", "character": "DeMarco", "id": 97944, "credit_id": "52fe436ac3a36847f8052935", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Peter Ratray", "character": "Captain", "id": 156819, "credit_id": "52fe436ac3a36847f8052939", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Michael Beach", "character": "Barnes", "id": 87118, "credit_id": "52fe436ac3a36847f805293d", "cast_id": 28, "profile_path": "/lOlWhURNKyZHn71dvq7qC7fiwN6.jpg", "order": 17}, {"name": "Ken Jenkins", "character": "Gerard Kirkhill", "id": 38570, "credit_id": "52fe436ac3a36847f8052941", "cast_id": 29, "profile_path": "/6w9OgC4nGUfYavC86a3FeeMgUJ4.jpg", "order": 18}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f80528c5", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 6.7, "runtime": 139}, "853": {"poster_path": "/dOWSbEn3ucyoiBE9IgFWAo1O7Sg.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96976270, "overview": "Enemy at the Gates is a war film from Jean-Jacques Annaud from 2001 that takes place during the battle of Stalingard in World War II between the Russians and the Germans.", "video": false, "id": 853, "genres": [{"id": 10752, "name": "War"}], "title": "Enemy at the Gates", "tagline": "Some Men Are Born To Be Heroes.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0215750", "adult": false, "backdrop_path": "/hHYp1YdJIu75Zr8F5IeQatlrex1.jpg", "production_companies": [{"name": "Swanford Films", "id": 549}, {"name": "Paramount Pictures", "id": 4}, {"name": "Mandalay Pictures", "id": 551}, {"name": "KC Medien", "id": 22182}, {"name": "Reperage", "id": 24136}, {"name": "DOS", "id": 24137}, {"name": "Little Bird", "id": 11358}, {"name": "MP Film Management", "id": 24138}], "release_date": "2001-03-13", "popularity": 1.09182025823275, "original_title": "Enemy at the Gates", "budget": 70000000, "cast": [{"name": "Jude Law", "character": "Vassili Zaitsev", "id": 9642, "credit_id": "52fe4282c3a36847f8024713", "cast_id": 22, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Tania Chernova", "id": 3293, "credit_id": "52fe4282c3a36847f8024717", "cast_id": 23, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Ed Harris", "character": "Major K\u00f6nig", "id": 228, "credit_id": "52fe4282c3a36847f802471b", "cast_id": 24, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Joseph Fiennes", "character": "Commisar Danilov", "id": 12763, "credit_id": "52fe4282c3a36847f802471f", "cast_id": 25, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 3}, {"name": "Bob Hoskins", "character": "Nikita Khrushchev", "id": 382, "credit_id": "52fe4282c3a36847f8024723", "cast_id": 26, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 4}, {"name": "Ron Perlman", "character": "Koulikov", "id": 2372, "credit_id": "52fe4282c3a36847f8024727", "cast_id": 27, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 5}, {"name": "Eva Mattes", "character": "Mother Filipov", "id": 10627, "credit_id": "52fe4282c3a36847f802472b", "cast_id": 28, "profile_path": "/9qUzPuHrQ2DV64CycNJMUFq4YvB.jpg", "order": 6}, {"name": "Gabriel Thomson", "character": "Sacha Filipov", "id": 12764, "credit_id": "52fe4282c3a36847f802472f", "cast_id": 29, "profile_path": "/gHaX9R4QkHbayJP9SeYgAs4Z0ZB.jpg", "order": 7}, {"name": "Matthias Habich", "character": "General Paulus", "id": 4534, "credit_id": "52fe4282c3a36847f8024733", "cast_id": 30, "profile_path": "/7YB9tFGl8rbxBhuy9jqjU2qMHU9.jpg", "order": 8}, {"name": "Alexander Schwan", "character": "Young Vassili Zaitsev", "id": 12765, "credit_id": "52fe4282c3a36847f8024737", "cast_id": 31, "profile_path": "/nTzrV5ENlUodFBxXs9P1kzQV2O0.jpg", "order": 9}, {"name": "Lenn Kudrjawizki", "character": "Comrade in Train", "id": 12766, "credit_id": "52fe4282c3a36847f802473b", "cast_id": 32, "profile_path": "/m8Sn5H6CHHrD8vxhLun2c3gMcs4.jpg", "order": 10}, {"name": "Gennadi Vengerov", "character": "Russian NCO", "id": 12767, "credit_id": "52fe4282c3a36847f802473f", "cast_id": 33, "profile_path": "/5O6GrF9jxvFMzqsQCs7ZEoMBYjr.jpg", "order": 11}, {"name": "Dan van Husen", "character": "Political Officer", "id": 12768, "credit_id": "52fe4282c3a36847f8024743", "cast_id": 34, "profile_path": "/tH1QUbViWdam7tkHvJKf9VE8H66.jpg", "order": 12}, {"name": "Ivan Shvedoff", "character": "Volodya", "id": 6079, "credit_id": "54f1a6e7c3a368322f00164f", "cast_id": 92, "profile_path": "/AkzSvrLAo3e4rFb1vrT7HzAQM6R.jpg", "order": 13}, {"name": "Sophie Rois", "character": "Ludmilla", "id": 15122, "credit_id": "54f1a72ec3a368322f00165d", "cast_id": 93, "profile_path": "/vazL9RbgZpQNpkIMbHuYqJauRmi.jpg", "order": 14}, {"name": "Mikhail Matveev", "character": "Grandfather", "id": 1445335, "credit_id": "5511dd31c3a36801d2002221", "cast_id": 94, "profile_path": null, "order": 15}], "directors": [{"name": "Jean-Jacques Annaud", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f8024697", "profile_path": "/wWECpMbiIcKZF8VXsNfxJVeW2Rr.jpg", "id": 2352}], "vote_average": 7.0, "runtime": 131}, "854": {"poster_path": "/v8x8p441l1Bep8p82pAG6rduBoK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 351583407, "overview": "When timid bank clerk Stanley Ipkiss (Jim Carrey) discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle (Cameron Diaz). Unfortunately, under the mask's influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell (Peter Greene), whose goons get blamed for the heist.", "video": false, "id": 854, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Mask", "tagline": "From zero to hero.", "vote_count": 583, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ucDNm5TJW1ji7kIjnX2SZYm7ATM.jpg", "poster_path": "/pl2vNt9XlxITTgm8wCQ2Y6ThkpT.jpg", "id": 43072, "name": "The Mask Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110475", "adult": false, "backdrop_path": "/kQlLZ8JgzVhFH6hlZovZycQSxbP.jpg", "production_companies": [{"name": "Dark Horse Entertainment", "id": 552}, {"name": "New Line Cinema", "id": 12}], "release_date": "1994-07-29", "popularity": 1.22341228804297, "original_title": "The Mask", "budget": 23000000, "cast": [{"name": "Jim Carrey", "character": "Stanley Ipkiss", "id": 206, "credit_id": "52fe4282c3a36847f80247c1", "cast_id": 17, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Tina Carlyle", "id": 6941, "credit_id": "52fe4282c3a36847f80247c5", "cast_id": 18, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Nancy Fish", "character": "Mrs. Peenman", "id": 42168, "credit_id": "52fe4282c3a36847f80247c9", "cast_id": 19, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 2}, {"name": "Tim Bagley", "character": "Irv", "id": 53400, "credit_id": "52fe4282c3a36847f80247cd", "cast_id": 20, "profile_path": "/eijzmkkXb4NstAdvpMZ1m91cRxY.jpg", "order": 3}, {"name": "Johnny Williams", "character": "Burt", "id": 53401, "credit_id": "52fe4282c3a36847f80247d1", "cast_id": 21, "profile_path": "/ft15amt3pyRLYG8iOjHlgS3nLaf.jpg", "order": 4}, {"name": "Peter Riegert", "character": "Lieutenant Mitch Kellaway", "id": 20899, "credit_id": "52fe4282c3a36847f80247d5", "cast_id": 22, "profile_path": "/szAJjIZY23cRhPUKLb6X3IbGEc5.jpg", "order": 5}, {"name": "Peter Greene", "character": "Dorian Tyrrell", "id": 11803, "credit_id": "52fe4282c3a36847f80247d9", "cast_id": 23, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 6}, {"name": "Amy Yasbeck", "character": "Peggy Brandt", "id": 1219, "credit_id": "52fe4282c3a36847f80247dd", "cast_id": 24, "profile_path": "/p2wXpK7wRwLre2e37Z6QQ6BvcUg.jpg", "order": 7}, {"name": "Richard Jeni", "character": "Charlie Schumaker", "id": 53402, "credit_id": "52fe4282c3a36847f80247e1", "cast_id": 25, "profile_path": "/egpfZBXrgLAMf9Evu4VowemfKnd.jpg", "order": 8}, {"name": "Orestes Matacena", "character": "Niko", "id": 53403, "credit_id": "52fe4282c3a36847f80247e5", "cast_id": 26, "profile_path": "/1HhuYbx3DlFpjfwdwTfG1z1aRC4.jpg", "order": 9}, {"name": "Anne Fletcher", "character": "Dancer", "id": 29214, "credit_id": "52fe4282c3a36847f80247e9", "cast_id": 27, "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "order": 10}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f80247a5", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 6.5, "runtime": 101}, "855": {"poster_path": "/yUzQ4r3q1Dy0bUAkMvUIwf0rPpR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 172989651, "overview": "When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.", "video": false, "id": 855, "genres": [{"id": 28, "name": "Action"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Black Hawk Down", "tagline": "Leave No Man Behind.", "vote_count": 636, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "so", "name": "Somali"}], "imdb_id": "tt0265086", "adult": false, "backdrop_path": "/ysCQvbaEPFTEhg1ufY7B2G8oJmT.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Revolution Studios", "id": 497}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2001-12-28", "popularity": 1.10302458530674, "original_title": "Black Hawk Down", "budget": 92000000, "cast": [{"name": "Josh Hartnett", "character": "SSgt. Matt Eversmann", "id": 2299, "credit_id": "52fe4282c3a36847f80248cf", "cast_id": 20, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Spec. John Grimes", "id": 3061, "credit_id": "52fe4282c3a36847f80248d3", "cast_id": 21, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Jason Isaacs", "character": "Capt. Mike Steele", "id": 11355, "credit_id": "52fe4282c3a36847f80248d7", "cast_id": 22, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 2}, {"name": "Tom Sizemore", "character": "Lt. Col. Danny McKnight", "id": 3197, "credit_id": "52fe4282c3a36847f80248db", "cast_id": 23, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 3}, {"name": "William Fichtner", "character": "Sfc. Jeff Sanderson", "id": 886, "credit_id": "52fe4282c3a36847f80248df", "cast_id": 24, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 4}, {"name": "Eric Bana", "character": "Sfc. Norm 'Hoot' Hooten", "id": 8783, "credit_id": "52fe4282c3a36847f80248e3", "cast_id": 25, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 5}, {"name": "Ewen Bremner", "character": "Spec. Shawn Nelson", "id": 1125, "credit_id": "52fe4282c3a36847f80248e7", "cast_id": 26, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 6}, {"name": "Sam Shepard", "character": "Maj. Gen. William F. Garrison", "id": 9880, "credit_id": "52fe4282c3a36847f80248eb", "cast_id": 27, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 7}, {"name": "Tom Hardy", "character": "Spec. Lance Twombly", "id": 2524, "credit_id": "52fe4282c3a36847f80248ef", "cast_id": 28, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 8}, {"name": "Charlie Hofheimer", "character": "Cpl. James 'Jamie' Smith", "id": 12790, "credit_id": "52fe4282c3a36847f80248f3", "cast_id": 30, "profile_path": "/gXQkqXYrlAGJgXRPpOwEv0NjSgT.jpg", "order": 10}, {"name": "Hugh Dancy", "character": "Sfc. Kurt Schmid", "id": 12791, "credit_id": "52fe4282c3a36847f80248f7", "cast_id": 31, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 11}, {"name": "Tom Guiry", "character": "SSgt. Ed Yurek", "id": 4729, "credit_id": "52fe4282c3a36847f80248fb", "cast_id": 32, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 12}, {"name": "Brian Van Holt", "character": "SSgt. Jeff Struecker", "id": 12792, "credit_id": "52fe4282c3a36847f80248ff", "cast_id": 33, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 13}, {"name": "Steven Ford", "character": "Lt. Col. Joe Cribbs", "id": 9258, "credit_id": "52fe4282c3a36847f8024903", "cast_id": 34, "profile_path": "/iw8CUyekmYkGwmg0bp7foY4KvrH.jpg", "order": 14}, {"name": "Gregory Sporleder", "character": "Sgt. Scott Galentine", "id": 10000, "credit_id": "52fe4282c3a36847f8024907", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "\u017deljko Ivanek", "character": "Lt. Col. Gary Harrell", "id": 6752, "credit_id": "52fe4282c3a36847f802490b", "cast_id": 36, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 16}, {"name": "Matthew Marsden", "character": "Spec. Dale Sizemore", "id": 12793, "credit_id": "52fe4282c3a36847f802490f", "cast_id": 37, "profile_path": "/4vsXCzUknnPmadfp9qVtbaO34NP.jpg", "order": 17}, {"name": "Nikolaj Coster-Waldau", "character": "MSgt. Gary Gordon", "id": 12795, "credit_id": "52fe4282c3a36847f8024913", "cast_id": 38, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 18}, {"name": "Orlando Bloom", "character": "Todd Blackburn", "id": 114, "credit_id": "52fe4282c3a36847f8024917", "cast_id": 39, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 19}, {"name": "Johnny Strong", "character": "Sfc. Randy Shughart", "id": 12796, "credit_id": "52fe4282c3a36847f802491b", "cast_id": 41, "profile_path": "/eJIgKkZKS99KRz1C1WgCq0wXsUh.jpg", "order": 20}, {"name": "Kim Coates", "character": "MSgt. Tim \"Griz\" Martin", "id": 8335, "credit_id": "52fe4282c3a36847f802491f", "cast_id": 42, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 21}, {"name": "Glenn Morshower", "character": "Lt. Col. Tom Matthews", "id": 12797, "credit_id": "52fe4282c3a36847f8024923", "cast_id": 43, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 22}, {"name": "Enrique Murciano", "character": "Sgt. Lorenzo Ruiz", "id": 12798, "credit_id": "52fe4282c3a36847f8024927", "cast_id": 44, "profile_path": "/nC37xKp4UdGylXFSJv94eQNTtja.jpg", "order": 23}, {"name": "Jeremy Piven", "character": "CWO Cliff 'Elvis' Wolcott", "id": 12799, "credit_id": "52fe4282c3a36847f802492b", "cast_id": 45, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 24}, {"name": "Brendan Sexton III", "character": "Pfc. Richard 'Alphabet' Kowalewski", "id": 2839, "credit_id": "52fe4282c3a36847f802492f", "cast_id": 46, "profile_path": "/kQsOIQuGcqwdpolSEzLV7RfYVsV.jpg", "order": 25}, {"name": "Carmine Giovinazzo", "character": "Sgt. Mike Goodale", "id": 12800, "credit_id": "52fe4282c3a36847f8024933", "cast_id": 47, "profile_path": "/vz4yAF22bqgPWM1ZDzi9OnfzVP2.jpg", "order": 26}, {"name": "George Harris", "character": "Osman Atto", "id": 2247, "credit_id": "52fe4282c3a36847f8024937", "cast_id": 48, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 27}, {"name": "Razaaq Adoti", "character": "Yousuf Dahir Mo'alim", "id": 12801, "credit_id": "52fe4282c3a36847f802493b", "cast_id": 49, "profile_path": "/8tyDtkUerIQfghpdX1G08EdSEie.jpg", "order": 28}, {"name": "Treva Etienne", "character": "Abdullahi 'Firimbi' Hassan", "id": 12802, "credit_id": "52fe4282c3a36847f802493f", "cast_id": 50, "profile_path": "/wIHXwmb2aFBNIT9aJHahtlHMrto.jpg", "order": 29}, {"name": "Jason Hildebrandt", "character": "CWO Dan Jollata", "id": 12803, "credit_id": "52fe4282c3a36847f8024943", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Ron Eldard", "character": "CWO Michael Durant", "id": 12260, "credit_id": "52fe4282c3a36847f8024947", "cast_id": 52, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 31}, {"name": "Ty Burrell", "character": "Wilkinson", "id": 15232, "credit_id": "52fe4282c3a36847f802494b", "cast_id": 53, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 32}, {"name": "Giannina Facio", "character": "Stephanie Shughart", "id": 58787, "credit_id": "52fe4282c3a36847f802494f", "cast_id": 54, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 33}, {"name": "Boyd Kestner", "character": "Goffena", "id": 37206, "credit_id": "53a2ffcfc3a36831f900174e", "cast_id": 64, "profile_path": "/iZYCIX8dn8HnaByEIOlqFDylm9Z.jpg", "order": 34}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f802485f", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.8, "runtime": 144}, "856": {"poster_path": "/hSycHavBDjY9Qk3h5B4oXWTEqp1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 329803958, "overview": "'Toon star Roger is worried that his wife Jessica is playing pattycake with someone else, so the studio hires detective Eddie Valiant to snoop on her. But the stakes are quickly raised when Marvin Acme is found dead and Roger is the prime suspect.", "video": false, "id": 856, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Who Framed Roger Rabbit", "tagline": "It's the story of a man, a woman, and a rabbit in a triangle of trouble.", "vote_count": 353, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096438", "adult": false, "backdrop_path": "/9podqGmd36AJHO13HQIQHQZRTJC.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Silver Screen Partners III", "id": 554}], "release_date": "1988-06-21", "popularity": 1.07160912682342, "original_title": "Who Framed Roger Rabbit", "budget": 70000000, "cast": [{"name": "Bob Hoskins", "character": "Eddie Valiant", "id": 382, "credit_id": "52fe4283c3a36847f8024a07", "cast_id": 17, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 0}, {"name": "Christopher Lloyd", "character": "Judge Doom", "id": 1062, "credit_id": "52fe4283c3a36847f8024a0b", "cast_id": 18, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 1}, {"name": "Joanna Cassidy", "character": "Dolores", "id": 593, "credit_id": "52fe4283c3a36847f8024a0f", "cast_id": 19, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 2}, {"name": "Charles Fleischer", "character": "Roger Rabbit/Benny The Cab/Greasy/Psycho", "id": 12826, "credit_id": "52fe4283c3a36847f8024a13", "cast_id": 20, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 3}, {"name": "Kathleen Turner", "character": "Jessica Rabbit", "id": 3391, "credit_id": "546b79a8c3a3680d7d001f2b", "cast_id": 34, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 4}, {"name": "Stubby Kaye", "character": "Marvin Acme", "id": 12827, "credit_id": "52fe4283c3a36847f8024a17", "cast_id": 21, "profile_path": "/rr8PedX37Yg62H9K7j0Ylc1Ir3o.jpg", "order": 5}, {"name": "Alan Tilvern", "character": "R.K. Maroon", "id": 12828, "credit_id": "52fe4283c3a36847f8024a1b", "cast_id": 22, "profile_path": "/8PQ6c0GCbuJ5T6dCjfX72gUtbTG.jpg", "order": 6}, {"name": "Richard LeParmentier", "character": "Lt. Santino", "id": 12829, "credit_id": "52fe4283c3a36847f8024a1f", "cast_id": 23, "profile_path": "/u0xNmE4QAS5EUbn7tG44EfYUkib.jpg", "order": 7}, {"name": "Lou Hirsch", "character": "Baby Herman", "id": 12830, "credit_id": "52fe4283c3a36847f8024a23", "cast_id": 24, "profile_path": "/phyABoneL7MRCxj5UlivxCUhoCu.jpg", "order": 8}, {"name": "Betsy Brantley", "character": "Jessica's Performance Model", "id": 12831, "credit_id": "52fe4283c3a36847f8024a27", "cast_id": 25, "profile_path": "/sAJuozmEy1eoD84yeHPdCu50c3p.jpg", "order": 9}, {"name": "Mel Blanc", "character": "Bugs Bunny/Daffy Duck/Tweety Bird", "id": 33923, "credit_id": "52fe4283c3a36847f8024a2b", "cast_id": 26, "profile_path": "/v7E4ABdhvaF1W604vIUD5Xj1jnb.jpg", "order": 10}, {"name": "Mae Questel", "character": "Betty Boop", "id": 58530, "credit_id": "52fe4283c3a36847f8024a2f", "cast_id": 27, "profile_path": "/wsUsW4fo8u82fbYQlXVaql6fgbk.jpg", "order": 11}, {"name": "Frank Sinatra", "character": "Singer", "id": 4347, "credit_id": "52fe4283c3a36847f8024a33", "cast_id": 28, "profile_path": "/ApNMKr7Eq9KYlYYMF3WyEkwXUbW.jpg", "order": 12}, {"name": "Richard Williams", "character": "Droopy", "id": 116100, "credit_id": "52fe4283c3a36847f8024a37", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Wayne Allwine", "character": "Mickey Mouse", "id": 78076, "credit_id": "52fe4283c3a36847f8024a3b", "cast_id": 30, "profile_path": "/9Xpy0TLwW1L3pCMMULOIZqgFIzt.jpg", "order": 14}, {"name": "Frank Welker", "character": "Dumbo", "id": 15831, "credit_id": "550fecda925141065c004c38", "cast_id": 35, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 16}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4282c3a36847f80249a9", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.8, "runtime": 104}, "857": {"poster_path": "/gc7IN6bWNaWXv4vI6cxSmeB7PeO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 481840909, "overview": "As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.", "video": false, "id": 857, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Saving Private Ryan", "tagline": "The mission is a man.", "vote_count": 2068, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0120815", "adult": false, "backdrop_path": "/4y5TDUZlqUmWWtjTAznWb6CFpzt.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Paramount Pictures", "id": 4}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Mutual Film Company", "id": 762}, {"name": "Mark Gordon Productions", "id": 11362}], "release_date": "1998-07-24", "popularity": 2.26012608109033, "original_title": "Saving Private Ryan", "budget": 70000000, "cast": [{"name": "Tom Hanks", "character": "Captain John H. Miller", "id": 31, "credit_id": "52fe4283c3a36847f8024aef", "cast_id": 10, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tom Sizemore", "character": "Technical Sergeant Michael Horvath", "id": 3197, "credit_id": "52fe4283c3a36847f8024af3", "cast_id": 11, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 1}, {"name": "Dennis Farina", "character": "Lieutenant Colonel Walter Anderson", "id": 1117, "credit_id": "52fe4283c3a36847f8024af7", "cast_id": 21, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 2}, {"name": "Max Martini", "character": "Corporal Henderson", "id": 94864, "credit_id": "52fe4283c3a36847f8024b15", "cast_id": 28, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 3}, {"name": "Joerg Stadler", "character": "Steamboat Willie", "id": 12838, "credit_id": "52fe4283c3a36847f8024afb", "cast_id": 22, "profile_path": "/21XKFl1ZS7HG8YEPPyPkJj5mztp.jpg", "order": 4}, {"name": "Harve Presnell", "character": "General George C. Marshall", "id": 3907, "credit_id": "52fe4283c3a36847f8024aff", "cast_id": 24, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 6}, {"name": "Matt Damon", "character": "Private James Francis Ryan", "id": 1892, "credit_id": "52fe4283c3a36847f8024b19", "cast_id": 29, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 7}, {"name": "Edward Burns", "character": "Private Richard Reiben", "id": 12833, "credit_id": "52fe4283c3a36847f8024b1d", "cast_id": 30, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 8}, {"name": "Barry Pepper", "character": "Private Daniel Jackson", "id": 12834, "credit_id": "52fe4283c3a36847f8024b21", "cast_id": 31, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 9}, {"name": "Vin Diesel", "character": "Private Adrian Caparzo", "id": 12835, "credit_id": "52fe4283c3a36847f8024b25", "cast_id": 32, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 10}, {"name": "Adam Goldberg", "character": "Private Stanley Mellish", "id": 6163, "credit_id": "52fe4283c3a36847f8024b29", "cast_id": 33, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 11}, {"name": "Giovanni Ribisi", "character": "T-Medic Irwin Wade", "id": 1771, "credit_id": "52fe4283c3a36847f8024b2d", "cast_id": 34, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 12}, {"name": "Jeremy Davies", "character": "Corporal Timothy Upham", "id": 4654, "credit_id": "52fe4283c3a36847f8024b31", "cast_id": 35, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 13}, {"name": "Ted Danson", "character": "Captain Fred Hamill", "id": 12836, "credit_id": "52fe4283c3a36847f8024b35", "cast_id": 36, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 14}, {"name": "Paul Giamatti", "character": "Sergeant William Hill", "id": 13242, "credit_id": "52fe4283c3a36847f8024b39", "cast_id": 37, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 15}, {"name": "Dylan Bruno", "character": "Toynbe", "id": 52476, "credit_id": "52fe4283c3a36847f8024b3d", "cast_id": 38, "profile_path": "/pNOG54RGO9sCKzbpM33pUEr9F2Y.jpg", "order": 16}, {"name": "Daniel Cerqueira", "character": "Weller", "id": 75071, "credit_id": "52fe4283c3a36847f8024b41", "cast_id": 39, "profile_path": "/edu1hN9hzKm76wwsq1ri09WhxCB.jpg", "order": 17}, {"name": "Demetri Goritsas", "character": "Parker", "id": 20471, "credit_id": "52fe4283c3a36847f8024b45", "cast_id": 40, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 18}, {"name": "Ian Porter", "character": "Trask", "id": 59085, "credit_id": "52fe4283c3a36847f8024b49", "cast_id": 41, "profile_path": "/8KePS3Ubkv6IM4QRxcr9ca7mtL1.jpg", "order": 19}, {"name": "Gary Sefton", "character": "Rice", "id": 218321, "credit_id": "52fe4283c3a36847f8024b4d", "cast_id": 42, "profile_path": "/gEojydkOnjBxri7h9wRjHe4uoOq.jpg", "order": 20}, {"name": "Julian Spencer", "character": "Garrity", "id": 141358, "credit_id": "52fe4283c3a36847f8024b51", "cast_id": 43, "profile_path": "/9MpFW75fGJjgjzElHQJj3h1fu1d.jpg", "order": 21}, {"name": "Kathleen Byron", "character": "Old Mrs. Ryan", "id": 99905, "credit_id": "52fe4283c3a36847f8024b55", "cast_id": 44, "profile_path": "/pw90dr1OFji81G8D6N3EROQCY11.jpg", "order": 22}, {"name": "Nathan Fillion", "character": "Minnesota Ryan", "id": 51797, "credit_id": "52fe4283c3a36847f8024b59", "cast_id": 45, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 23}, {"name": "Bryan Cranston", "character": "War Department Colonel", "id": 17419, "credit_id": "5427c809c3a3680b2c001d1e", "cast_id": 48, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 24}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024ac1", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.5, "runtime": 169}, "858": {"poster_path": "/afkYP15OeUOD0tFEmj6VvejuOcz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227799884, "overview": "A young boy who tries to set his dad up on a date after the death of his mother. He calls into a radio station to talk about his dad\u2019s loneliness which soon leads the dad into meeting a Journalist Annie who flies to Seattle to write a story about the boy and his dad. Yet Annie ends up with more than just a story in this popular romantic comedy.", "video": false, "id": 858, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sleepless in Seattle", "tagline": "What if someone you never met, someone you never saw, someone you never knew was the only someone for you?", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108160", "adult": false, "backdrop_path": "/oCsfZBZ6HpU1IAej52uke9ofk8z.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1993-06-24", "popularity": 1.10708007785734, "original_title": "Sleepless in Seattle", "budget": 21000000, "cast": [{"name": "Tom Hanks", "character": "Sam Baldwin", "id": 31, "credit_id": "52fe4283c3a36847f8024bd9", "cast_id": 13, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Annie Reed", "id": 5344, "credit_id": "52fe4283c3a36847f8024bdd", "cast_id": 14, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Bill Pullman", "character": "Walter", "id": 8984, "credit_id": "52fe4283c3a36847f8024be1", "cast_id": 15, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 2}, {"name": "Ross Malinger", "character": "Jonah Baldwin", "id": 12928, "credit_id": "52fe4283c3a36847f8024be5", "cast_id": 16, "profile_path": "/oeqoxZ3WgQRUE1DusC68SACHHrC.jpg", "order": 3}, {"name": "Rosie O'Donnell", "character": "Becky", "id": 12929, "credit_id": "52fe4283c3a36847f8024be9", "cast_id": 17, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 4}, {"name": "Gaby Hoffmann", "character": "Jessica", "id": 12930, "credit_id": "52fe4283c3a36847f8024bed", "cast_id": 18, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 5}, {"name": "Victor Garber", "character": "Greg", "id": 8536, "credit_id": "52fe4283c3a36847f8024bf1", "cast_id": 19, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 6}, {"name": "Rita Wilson", "character": "Suzy", "id": 12931, "credit_id": "52fe4283c3a36847f8024bf5", "cast_id": 20, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 7}, {"name": "Barbara Garrick", "character": "Victoria", "id": 12932, "credit_id": "52fe4283c3a36847f8024bf9", "cast_id": 21, "profile_path": "/rGnwUug86oil1pZ9whjohbBBRqj.jpg", "order": 8}, {"name": "Rob Reiner", "character": "Jay", "id": 3026, "credit_id": "52fe4283c3a36847f8024bfd", "cast_id": 22, "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "order": 9}, {"name": "Carey Lowell", "character": "Maggie Abbott Baldwin", "id": 10679, "credit_id": "52fe4283c3a36847f8024c01", "cast_id": 23, "profile_path": "/193Lp3xIPzi8Q8VDRsRK3s8bXqg.jpg", "order": 10}, {"name": "David Hyde Pierce", "character": "Dennis Reed", "id": 11076, "credit_id": "52fe4283c3a36847f8024c05", "cast_id": 24, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 11}, {"name": "Dana Ivey", "character": "Claire Bennett", "id": 13314, "credit_id": "52fe4283c3a36847f8024c09", "cast_id": 25, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 12}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024b93", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 6.2, "runtime": 105}, "860": {"poster_path": "/akPIXEzNgjmtiz5FTtaLBHJassh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74000000, "overview": "High School student David Lightman (Matthew Broderick) has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Defense Department's war computer and initiates a confrontation of global proportions! Together with his girlfriend (Ally Sheedy) and a wizardly computer genius (John Wood), David must race against time to outwit his opponent...and prevent a nuclear Armageddon.", "video": false, "id": 860, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "WarGames", "tagline": "Is it a game, or is it real?", "vote_count": 107, "homepage": "http://www.mgm.com/title_title.do?title_star=WARGAMES", "belongs_to_collection": {"backdrop_path": "/tBWSIMflBa1tUvSVVqLCuwviW1y.jpg", "poster_path": "/tPvDCajdnC6RpuKQqRI9G62IJ7f.jpg", "id": 151263, "name": "WarGames Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086567", "adult": false, "backdrop_path": "/AkwLeC0Q8GIkYJ6ZI0tc0118AY6.jpg", "production_companies": [{"name": "Sherwood", "id": 556}, {"name": "The Leonard Goldberg Company", "id": 557}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "United Artists", "id": 60}], "release_date": "1983-06-03", "popularity": 1.00581733186735, "original_title": "WarGames", "budget": 12000000, "cast": [{"name": "Matthew Broderick", "character": "David Lightman", "id": 4756, "credit_id": "52fe4283c3a36847f8024d67", "cast_id": 15, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Dabney Coleman", "character": "Dr. John McKittrick", "id": 12850, "credit_id": "52fe4283c3a36847f8024d6b", "cast_id": 16, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 1}, {"name": "Ally Sheedy", "character": "Jennifer Katherine Mack", "id": 12851, "credit_id": "52fe4283c3a36847f8024d6f", "cast_id": 18, "profile_path": "/xfNrfzgDwyvmczadJWw4fN70siS.jpg", "order": 2}, {"name": "John Wood", "character": "Dr. Stephen Falken", "id": 8937, "credit_id": "52fe4283c3a36847f8024ddf", "cast_id": 47, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 3}, {"name": "Barry Corbin", "character": "General Jack Beringer", "id": 12852, "credit_id": "52fe4283c3a36847f8024d73", "cast_id": 19, "profile_path": "/sI9LkzJYancOxTdC3othmzCxdp4.jpg", "order": 4}, {"name": "Juanin Clay", "character": "Pat Healy", "id": 12853, "credit_id": "52fe4283c3a36847f8024d77", "cast_id": 20, "profile_path": "/rSAhf4lbBTAyFnvf8vtxrhqTaGH.jpg", "order": 5}, {"name": "Kent Williams", "character": "Arthur Cabot", "id": 12854, "credit_id": "52fe4283c3a36847f8024d7b", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Dennis Lipscomb", "character": "Lyle Watson", "id": 12855, "credit_id": "52fe4283c3a36847f8024d7f", "cast_id": 22, "profile_path": "/24Rwjg1GHJiGO6qfuzJqxEqt8Fs.jpg", "order": 7}, {"name": "Joe Dorsey", "character": "Col. Joe Conley", "id": 12856, "credit_id": "52fe4283c3a36847f8024d83", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Irving Metzman", "character": "Paul Richter", "id": 12857, "credit_id": "52fe4283c3a36847f8024d87", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Michael Ensign", "character": "Beringer's Aide", "id": 1080265, "credit_id": "52fe4283c3a36847f8024ddb", "cast_id": 46, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}, {"name": "William Bogert", "character": "Mr. Lightman", "id": 14543, "credit_id": "52fe4283c3a36847f8024d8b", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Susan Davis", "character": "Mrs. Lightman", "id": 160600, "credit_id": "52fe4283c3a36847f8024d8f", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "James Tolkan", "character": "Nigan", "id": 1072, "credit_id": "52fe4283c3a36847f8024d93", "cast_id": 28, "profile_path": "/soo2H11XQlsgaf6xwUIeOrwLJuG.jpg", "order": 13}, {"name": "David Clover", "character": "Stockman", "id": 107078, "credit_id": "52fe4283c3a36847f8024d97", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Drew Snyder", "character": "Ayers", "id": 52188, "credit_id": "52fe4283c3a36847f8024d9b", "cast_id": 30, "profile_path": "/xW8V4eZaFRm0J2FCNNrcojN8yOg.jpg", "order": 15}, {"name": "John Garber", "character": "Corporal in the Infirmary", "id": 950548, "credit_id": "52fe4283c3a36847f8024d9f", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Duncan Wilmore", "character": "Major Lem", "id": 1072730, "credit_id": "52fe4283c3a36847f8024da3", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Billy Ray Sharkey", "character": "Radar Analyst", "id": 95682, "credit_id": "52fe4283c3a36847f8024da7", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "John Spencer", "character": "Jerry", "id": 34691, "credit_id": "52fe4283c3a36847f8024dab", "cast_id": 34, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 19}, {"name": "Michael Madsen", "character": "Steve", "id": 147, "credit_id": "52fe4283c3a36847f8024daf", "cast_id": 35, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 20}, {"name": "Erik Stern", "character": "Commander", "id": 161599, "credit_id": "52fe4283c3a36847f8024db3", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Gary Bisig", "character": "Deputy", "id": 161541, "credit_id": "52fe4283c3a36847f8024db7", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Gary Sexton", "character": "Technician", "id": 1072733, "credit_id": "52fe4283c3a36847f8024dbb", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Jason Bernard", "character": "Captain Knewt", "id": 18192, "credit_id": "52fe4283c3a36847f8024dbf", "cast_id": 39, "profile_path": "/sbzBKAZ1KWIusoX9nX75sIyaAJI.jpg", "order": 24}, {"name": "Frankie Hill", "character": "Airman Fields", "id": 208720, "credit_id": "52fe4283c3a36847f8024dc3", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Jesse D. Goins", "character": "Sergeant (as Jesse Goins)", "id": 44043, "credit_id": "52fe4283c3a36847f8024dc7", "cast_id": 41, "profile_path": "/rjNRg0SgCo31mCCYRb3NvtjFu18.jpg", "order": 26}, {"name": "Alan Blumenfeld", "character": "Mr. Liggett", "id": 22053, "credit_id": "52fe4283c3a36847f8024dcb", "cast_id": 42, "profile_path": "/2ag56MvKkTuhGnUFgJza4hJZl8u.jpg", "order": 27}, {"name": "Len Lawson", "character": "Boys Vice Principal", "id": 182759, "credit_id": "52fe4283c3a36847f8024dcf", "cast_id": 43, "profile_path": null, "order": 28}, {"name": "Maury Chaykin", "character": "Jim Sting", "id": 7868, "credit_id": "52fe4283c3a36847f8024dd3", "cast_id": 44, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 29}, {"name": "Eddie Deezen", "character": "Malvin", "id": 42362, "credit_id": "52fe4283c3a36847f8024dd7", "cast_id": 45, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 30}], "directors": [{"name": "John Badham", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024d15", "profile_path": "/oAhHnnyoIY7qgg7aERbsOuqFdow.jpg", "id": 12840}], "vote_average": 6.6, "runtime": 114}, "861": {"poster_path": "/ikYpJ0AjGBNnAYFnPJDUVIOcduR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 261317921, "overview": "Construction worker Douglas Quaid discovers a memory chip in his brain during a virtual-reality trip. He also finds that his past has been invented to conceal a plot of planetary domination. Soon, he's off to Mars to find out who he is and who planted the chip.", "video": false, "id": 861, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Total Recall", "tagline": "They stole his mind, now he wants it back.", "vote_count": 467, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100802", "adult": false, "backdrop_path": "/rPqCxVXBD89jeWMgJU3MeFA6GDV.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1990-06-01", "popularity": 1.09808255232685, "original_title": "Total Recall", "budget": 65000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Douglas Quaid/Hauser", "id": 1100, "credit_id": "52fe4283c3a36847f8024e9b", "cast_id": 23, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Lori", "id": 4430, "credit_id": "52fe4283c3a36847f8024e9f", "cast_id": 24, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "Rachel Ticotin", "character": "Melina", "id": 10768, "credit_id": "52fe4283c3a36847f8024ea3", "cast_id": 25, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 2}, {"name": "Ronny Cox", "character": "Vilos Cohaagen", "id": 780, "credit_id": "52fe4283c3a36847f8024ea7", "cast_id": 26, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 3}, {"name": "Michael Ironside", "character": "Richter", "id": 11086, "credit_id": "52fe4283c3a36847f8024eab", "cast_id": 27, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 4}, {"name": "Marshall Bell", "character": "George/Kuato", "id": 3041, "credit_id": "52fe4283c3a36847f8024eaf", "cast_id": 28, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 5}, {"name": "Mel Johnson Jr.", "character": "Benny", "id": 12887, "credit_id": "52fe4283c3a36847f8024eb3", "cast_id": 29, "profile_path": "/8s1kAMuKyshscKBYtzWqYxSHBVN.jpg", "order": 6}, {"name": "Michael Champion", "character": "Helm", "id": 790, "credit_id": "52fe4283c3a36847f8024eb7", "cast_id": 30, "profile_path": null, "order": 7}, {"name": "Roy Brocksmith", "character": "Dr. Edgemar", "id": 12888, "credit_id": "52fe4283c3a36847f8024ebb", "cast_id": 31, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 8}, {"name": "Ray Baker", "character": "Bob McClane", "id": 12889, "credit_id": "52fe4283c3a36847f8024ebf", "cast_id": 32, "profile_path": "/cDmi2buNK0WR5OdqAJDk6OcvC2N.jpg", "order": 9}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe4283c3a36847f8024e2b", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.6, "runtime": 113}, "50014": {"poster_path": "/6u85CuvnbrzWMhKbGk4Bm5RnO3V.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124272124, "overview": "Aibileen Clark (Viola Davis) is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson (Octavia Spencer) is an African-American maid who has often offended her employers despite her family's struggles with money and her desperate need for jobs; and Eugenia \"Skeeter\" Phelan (Emma Stone) is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around \"the help\"; yet they are always kept at a certain distance because of racial lines.", "video": false, "id": 50014, "genres": [{"id": 18, "name": "Drama"}], "title": "The Help", "tagline": "Change begins with a whisper.", "vote_count": 493, "homepage": "http://thehelpmovie.com/#/splash", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1454029", "adult": false, "backdrop_path": "/dskiB6nk4VA9pmw20L9oN7I4tkO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Participant Productions", "id": 2030}, {"name": "1492 Pictures", "id": 436}], "release_date": "2011-08-10", "popularity": 1.18254101127122, "original_title": "The Help", "budget": 25000000, "cast": [{"name": "Emma Stone", "character": "Eugenia 'Skeeter' Phelan", "id": 54693, "credit_id": "52fe47b5c3a36847f814403f", "cast_id": 10, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 0}, {"name": "Viola Davis", "character": "Aibileen Clark", "id": 19492, "credit_id": "52fe47b5c3a36847f814402f", "cast_id": 6, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 1}, {"name": "Octavia Spencer", "character": "Minny Jackson", "id": 6944, "credit_id": "52fe47b5c3a36847f8144033", "cast_id": 7, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 2}, {"name": "Bryce Dallas Howard", "character": "Hilly Holbrook", "id": 18997, "credit_id": "52fe47b5c3a36847f8144043", "cast_id": 11, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 3}, {"name": "Jessica Chastain", "character": "Celia Foote", "id": 83002, "credit_id": "52fe47b5c3a36847f814404f", "cast_id": 14, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 4}, {"name": "Mike Vogel", "character": "Johnny Foote", "id": 6858, "credit_id": "52fe47b5c3a36847f8144047", "cast_id": 12, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 5}, {"name": "Allison Janney", "character": "Charlotte Phelan", "id": 19, "credit_id": "52fe47b5c3a36847f814407b", "cast_id": 22, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 6}, {"name": "Sissy Spacek", "character": "Missus Walters", "id": 5606, "credit_id": "52fe47b5c3a36847f814404b", "cast_id": 13, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 7}, {"name": "Chris Lowell", "character": "Stuart Whitworth", "id": 84300, "credit_id": "52fe47b5c3a36847f8144083", "cast_id": 24, "profile_path": "/7j5M2vrnMBE0dEHKPQECiE8WSCe.jpg", "order": 8}, {"name": "Ahna O'Reilly", "character": "Elizabeth Leefolt", "id": 999605, "credit_id": "52fe47b5c3a36847f814407f", "cast_id": 23, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 9}, {"name": "Anna Camp", "character": "Jolene French", "id": 221098, "credit_id": "52fe47b5c3a36847f8144077", "cast_id": 21, "profile_path": "/uQ8qyoTpgSfNPuzhSWJdiV9r32Y.jpg", "order": 10}, {"name": "Cicely Tyson", "character": "Constantine Jefferson", "id": 18249, "credit_id": "52fe47b5c3a36847f8144037", "cast_id": 8, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 11}, {"name": "Aunjanue Ellis", "character": "Yule Mae Davis", "id": 53923, "credit_id": "52fe47b5c3a36847f814403b", "cast_id": 9, "profile_path": "/tOfsln2Qt3P1jL7TuFiwEPcwFZB.jpg", "order": 12}, {"name": "David Oyelowo", "character": "Preacher Green", "id": 35013, "credit_id": "52fe47b5c3a36847f8144087", "cast_id": 25, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 13}, {"name": "Dana Ivey", "character": "Gracie Higginbotham", "id": 13314, "credit_id": "52fe47b5c3a36847f814408f", "cast_id": 27, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 14}, {"name": "LaChanze", "character": "Rachel", "id": 56689, "credit_id": "52fe47b5c3a36847f814408b", "cast_id": 26, "profile_path": "/g3P0Q3ZJZaUabXZi7gdaBzMniHh.jpg", "order": 15}], "directors": [{"name": "Tate Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe47b5c3a36847f814402b", "profile_path": "/7RQEzoruBo10j78z8fH6cIEmjNK.jpg", "id": 55789}], "vote_average": 7.3, "runtime": 146}, "863": {"poster_path": "/kuTPkbQmHxBHsxaKMUL1kUchhdE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 485015179, "overview": "During a garage sale Andy\u2019s mother sells some of Andy\u2019s old things including his favorite toy Woody to a collector. Buzz Lightyear and the other toys begin a reckless mission to save their friend. The sequel to the revolutionary computer animated feature film Toy Story.", "video": false, "id": 863, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story 2", "tagline": "The toys are back!", "vote_count": 1171, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg", "poster_path": "/bDSe7UCiShmiTz7kuOjMyP6mz7l.jpg", "id": 10194, "name": "Toy Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120363", "adult": false, "backdrop_path": "/9Kjxr4VCU0Y4DAuXkzR2moAy7DK.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1999-11-24", "popularity": 1.9082885943291, "original_title": "Toy Story 2", "budget": 90000000, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "52fe4284c3a36847f80250d1", "cast_id": 18, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "52fe4284c3a36847f80250f5", "cast_id": 28, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Kelsey Grammer", "character": "Stinky Pete the Prospector (voice)", "id": 7090, "credit_id": "52fe4284c3a36847f80250d9", "cast_id": 20, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jessie, the Yodeling Cowgirl (voice)", "id": 3234, "credit_id": "52fe4284c3a36847f80250d5", "cast_id": 19, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "52fe4284c3a36847f80250dd", "cast_id": 21, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 4}, {"name": "Jim Varney", "character": "Slinky Dog (voice)", "id": 12899, "credit_id": "52fe4284c3a36847f80250e1", "cast_id": 22, "profile_path": "/eIo2jVVXYgjDtaHoF19Ll9vtW7h.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Rex the Green Dinosaur (voice)", "id": 12900, "credit_id": "52fe4284c3a36847f80250e5", "cast_id": 23, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "John Ratzenberger", "character": "Hamm the Piggy Bank (voice)", "id": 7907, "credit_id": "52fe4284c3a36847f80250e9", "cast_id": 24, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 7}, {"name": "Annie Potts", "character": "Bo Peep (voice)", "id": 8873, "credit_id": "52fe4284c3a36847f80250ed", "cast_id": 25, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 8}, {"name": "Wayne Knight", "character": "Al the Toy Collector (voice)", "id": 4201, "credit_id": "52fe4284c3a36847f80250f1", "cast_id": 26, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 9}, {"name": "John Morris", "character": "Andy (voice)", "id": 1116442, "credit_id": "52fe4284c3a36847f80250f9", "cast_id": 29, "profile_path": "/vYGyvK4LzeaUCoNSHtsuqJUY15M.jpg", "order": 10}, {"name": "Laurie Metcalf", "character": "Andy's Mom (voice)", "id": 12133, "credit_id": "52fe4284c3a36847f80250fd", "cast_id": 30, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 11}, {"name": "Estelle Harris", "character": "Mrs. Potato Head (voice)", "id": 61964, "credit_id": "52fe4284c3a36847f8025101", "cast_id": 31, "profile_path": "/equDBtZgBkO7e8QKpNokDz9EbY9.jpg", "order": 12}, {"name": "R. Lee Ermey", "character": "Army Sarge (voice)", "id": 8655, "credit_id": "52fe4284c3a36847f8025105", "cast_id": 32, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 13}, {"name": "Jodi Benson", "character": "Tour Guide Barbie / Barbie on Backpack (voice)", "id": 63978, "credit_id": "52fe4284c3a36847f8025109", "cast_id": 33, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 14}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f802506d", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}], "vote_average": 6.9, "runtime": 92}, "864": {"poster_path": "/9Jgk3T2EczJ55rElJpBJAaxeQd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154864401, "overview": "Cool Runnings is an American film from director Jon Turteltaub from 1993 about the first Jamaican Olympic bobsled team.", "video": false, "id": 864, "genres": [{"id": 35, "name": "Comedy"}], "title": "Cool Runnings", "tagline": "One dream. Four Jamaicans. Twenty below zero.", "vote_count": 146, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106611", "adult": false, "backdrop_path": "/ttxnwGZwyuiLXIV3xIr1OE5ND5X.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1993-09-30", "popularity": 1.13272690049367, "original_title": "Cool Runnings", "budget": 14000000, "cast": [{"name": "Leon Robinson", "character": "Derice Bannock", "id": 12974, "credit_id": "52fe4284c3a36847f8025195", "cast_id": 14, "profile_path": "/4i6e0y27mrdz8zBGNiryWV6EFOU.jpg", "order": 0}, {"name": "Doug E. Doug", "character": "Sanka Coffie", "id": 12975, "credit_id": "52fe4284c3a36847f8025199", "cast_id": 15, "profile_path": "/dXoCEr8S5YvVdZeyJAgNChSvdu4.jpg", "order": 1}, {"name": "Rawle D. Lewis", "character": "Junior Bevil", "id": 12976, "credit_id": "52fe4284c3a36847f802519d", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "Malik Yoba", "character": "Yul Brenner", "id": 12977, "credit_id": "52fe4284c3a36847f80251a1", "cast_id": 17, "profile_path": "/v0BfJRbZ6ECq3VQ1YZRi7ONQ4T4.jpg", "order": 3}, {"name": "John Candy", "character": "Irving 'Irv' Blitzer", "id": 7180, "credit_id": "52fe4284c3a36847f80251a5", "cast_id": 18, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 4}, {"name": "Raymond J. Barry", "character": "Kurt Hemphill", "id": 10361, "credit_id": "52fe4284c3a36847f80251a9", "cast_id": 19, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 5}, {"name": "Peter Outerbridge", "character": "Josef Grool", "id": 12978, "credit_id": "52fe4284c3a36847f80251ad", "cast_id": 20, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 6}, {"name": "Paul Coeur", "character": "Roger", "id": 12979, "credit_id": "52fe4284c3a36847f80251b1", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Larry Gilman", "character": "Larry", "id": 12980, "credit_id": "52fe4284c3a36847f80251b5", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Kristoffer Cooper", "character": "Winston", "id": 12981, "credit_id": "52fe4284c3a36847f80251b9", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Charles Hyatt", "character": "Whitby Bevil - Sr.", "id": 940039, "credit_id": "52fe4284c3a36847f80251bd", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Winston Stona", "character": "Coolidge", "id": 52819, "credit_id": "52fe4284c3a36847f80251c1", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Bertina Macauley", "character": "Joy Bannock", "id": 1074165, "credit_id": "52fe4284c3a36847f80251c5", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Pauline Stone Myrie", "character": "Momma Coffie", "id": 1074166, "credit_id": "52fe4284c3a36847f80251c9", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Bill Dow", "character": "Registration Official", "id": 118462, "credit_id": "52fe4284c3a36847f80251cd", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f8025149", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.3, "runtime": 98}, "865": {"poster_path": "/ni5PkWh3J3Zx4pVk5JYGTywZDqW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38122105, "overview": "By 2017, the global economy has collapsed and American society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where \u201crunners\u201d attempt to evade \u201cstalkers\u201d and certain death for a chance to be pardoned and set free.", "video": false, "id": 865, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "The Running Man", "tagline": "A game nobody survives. But Schwarzenegger has yet to play.", "vote_count": 189, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093894", "adult": false, "backdrop_path": "/zwW7fzXQZF6r9fdl1C7V1gRQq73.jpg", "production_companies": [{"name": "Braveworld Productions", "id": 23005}, {"name": "HBO", "id": 6068}, {"name": "Keith Barish Productions", "id": 964}, {"name": "TAFT Entertainment Pictures", "id": 965}], "release_date": "1987-11-13", "popularity": 0.885844706711876, "original_title": "The Running Man", "budget": 27000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Ben Richards", "id": 1100, "credit_id": "52fe4284c3a36847f8025257", "cast_id": 15, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Richard Dawson", "character": "Damon Killian", "id": 96623, "credit_id": "52fe4284c3a36847f8025283", "cast_id": 26, "profile_path": "/hN6YrUubNwblaKQjoqMGf80GS4I.jpg", "order": 1}, {"name": "Mar\u00eda Conchita Alonso", "character": "Amber Mendez", "id": 2051, "credit_id": "52fe4284c3a36847f802525b", "cast_id": 16, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 2}, {"name": "Yaphet Kotto", "character": "William Laughlin", "id": 5050, "credit_id": "52fe4284c3a36847f802525f", "cast_id": 17, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 3}, {"name": "Jim Brown", "character": "Fireball", "id": 4774, "credit_id": "52fe4284c3a36847f8025263", "cast_id": 18, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 4}, {"name": "Jesse Ventura", "character": "Captain Freedom", "id": 1104, "credit_id": "52fe4284c3a36847f8025267", "cast_id": 19, "profile_path": "/25AzScRxybPMRxEfv9iB116jj7a.jpg", "order": 5}, {"name": "Erland van Lidth", "character": "Dynamo", "id": 3013, "credit_id": "52fe4284c3a36847f802526b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Marvin J. McIntyre", "character": "Harold Weiss", "id": 13003, "credit_id": "52fe4284c3a36847f802526f", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Gus Rethwisch", "character": "Buzzsaw", "id": 13004, "credit_id": "52fe4284c3a36847f8025273", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Professor Tanaka", "character": "Subzero", "id": 13006, "credit_id": "52fe4284c3a36847f8025277", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Mick Fleetwood", "character": "Mic", "id": 13007, "credit_id": "52fe4284c3a36847f802527b", "cast_id": 24, "profile_path": "/x9XQaGJbrwZMkASxWJ9PEOFFT2O.jpg", "order": 10}, {"name": "Franco Columbu", "character": "911 Security Officer", "id": 35710, "credit_id": "52fe4284c3a36847f802527f", "cast_id": 25, "profile_path": "/Ajjtqewy65900sHWWkPMdhTZ2E4.jpg", "order": 11}, {"name": "Sven-Ole Thorsen", "character": "Sven", "id": 20761, "credit_id": "52fe4284c3a36847f8025293", "cast_id": 29, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 12}, {"name": "Dweezil Zappa", "character": "Stevie", "id": 120952, "credit_id": "52fe4284c3a36847f8025297", "cast_id": 30, "profile_path": "/d2HSXwuYiTKzL1Lo1IEtMsAa0WX.jpg", "order": 13}, {"name": "Karen Leigh Hopkins", "character": "Brenda", "id": 16852, "credit_id": "52fe4284c3a36847f802529b", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Edward Bunker", "character": "Lenny", "id": 6939, "credit_id": "52fe4284c3a36847f802529f", "cast_id": 32, "profile_path": "/kQNf8eN5qpWXAhNUrnUnWtBd3Eu.jpg", "order": 15}], "directors": [{"name": "Paul Michael Glaser", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f8025211", "profile_path": "/yc39Cj9ZmaEnrKZIRnYLPAdDyCK.jpg", "id": 12988}], "vote_average": 6.2, "runtime": 101}, "866": {"poster_path": "/44ioqnaokklNKBcJT6V87x6ChDb.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51676606, "overview": "Finding Neverland is an amusing drama about how the story of Peter Pan and Neverland came to be. During a writing slump play writer J.M. Barrie meets the widowed Sylvia and her three children who soon become an important part of Barrie\u2019s life and the inspiration that lead him to create his masterpiece \u201cPeter Pan.\u201d", "video": false, "id": 866, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Finding Neverland", "tagline": "Where will your imagination take you?", "vote_count": 232, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0308644", "adult": false, "backdrop_path": "/smMNfp8INGuxdFBIHIVgGsbGSJj.jpg", "production_companies": [{"name": "Film Colony", "id": 560}, {"name": "Miramax Films", "id": 14}], "release_date": "2004-11-11", "popularity": 0.87641724835323, "original_title": "Finding Neverland", "budget": 25000000, "cast": [{"name": "Johnny Depp", "character": "Sir James Matthew Barrie", "id": 85, "credit_id": "52fe4284c3a36847f802531b", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Sylvia Llewelyn Davies", "id": 204, "credit_id": "52fe4284c3a36847f802531f", "cast_id": 14, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Julie Christie", "character": "Mrs. Emma du Maurier", "id": 1666, "credit_id": "52fe4284c3a36847f8025323", "cast_id": 15, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 2}, {"name": "Dustin Hoffman", "character": "Charles Frohman", "id": 4483, "credit_id": "52fe4284c3a36847f8025327", "cast_id": 16, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 3}, {"name": "Freddie Highmore", "character": "Peter Llewelyn Davies", "id": 1281, "credit_id": "52fe4284c3a36847f802532b", "cast_id": 17, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 4}, {"name": "Radha Mitchell", "character": "Mary Ansell Barrie", "id": 8329, "credit_id": "52fe4284c3a36847f802532f", "cast_id": 18, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 5}, {"name": "Kate Maberly", "character": "Wendy", "id": 13010, "credit_id": "52fe4284c3a36847f8025333", "cast_id": 19, "profile_path": "/q2oMXChB6jfIKAEBWcoHptdH7ud.jpg", "order": 6}, {"name": "Joe Prospero", "character": "Jack Llewelyn Davies", "id": 13011, "credit_id": "52fe4284c3a36847f8025337", "cast_id": 20, "profile_path": "/8yzT8f30c0tDu3IrYUiCfw90dAu.jpg", "order": 7}, {"name": "Nick Roud", "character": "George Llewelyn Davies", "id": 13012, "credit_id": "52fe4284c3a36847f802533b", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Luke Spill", "character": "Michael Llewelyn Davies", "id": 13013, "credit_id": "52fe4284c3a36847f802533f", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Ian Hart", "character": "Sir Arthur Conan Doyle", "id": 10985, "credit_id": "52fe4284c3a36847f8025343", "cast_id": 23, "profile_path": "/35KSRxsFR20QGDhIrZn7G4Jkc2g.jpg", "order": 10}, {"name": "Kelly Macdonald", "character": "Peter Pan", "id": 9015, "credit_id": "52fe4284c3a36847f8025347", "cast_id": 24, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 11}, {"name": "Toby Jones", "character": "Smee", "id": 13014, "credit_id": "52fe4284c3a36847f802534b", "cast_id": 25, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 12}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f80252db", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.9, "runtime": 106}, "869": {"poster_path": "/gYQKMOwLolMRyofpRzXPAawiLPC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362211740, "overview": "After a spectacular crash-landing on an uncharted planet, brash astronaut Leo Davidson (Mark Wahlberg) finds himself trapped in a savage world where talking apes dominate the human race. Desperate to find a way home, Leo must evade the invincible gorilla army led by Ruthless General Thade (Tim Roth) and his most trusted warrior, Attar (Michael Clarke Duncan).", "video": false, "id": 869, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Planet of the Apes", "tagline": "You'll be sorry you were ever born human", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133152", "adult": false, "backdrop_path": "/r87F9i3JyJbCym8zNtdciEnexOS.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "The Zanuck Company", "id": 80}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2001-07-26", "popularity": 0.936792804225985, "original_title": "Planet of the Apes", "budget": 100000000, "cast": [{"name": "Mark Wahlberg", "character": "Leo Davidson", "id": 13240, "credit_id": "52fe4285c3a36847f80254f7", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Tim Roth", "character": "General Thade", "id": 3129, "credit_id": "52fe4285c3a36847f80254fb", "cast_id": 2, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "Ari", "id": 1283, "credit_id": "52fe4285c3a36847f80254ff", "cast_id": 3, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Michael Clarke Duncan", "character": "Attar", "id": 61981, "credit_id": "52fe4285c3a36847f8025503", "cast_id": 4, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 3}, {"name": "Kris Kristofferson", "character": "Karubi", "id": 10823, "credit_id": "52fe4285c3a36847f8025507", "cast_id": 5, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 4}, {"name": "Estella Warren", "character": "Daena", "id": 13241, "credit_id": "52fe4285c3a36847f802550b", "cast_id": 6, "profile_path": "/19tZOor9ARhIqshlgGYyoVoqkKR.jpg", "order": 5}, {"name": "Paul Giamatti", "character": "Limbo", "id": 13242, "credit_id": "52fe4285c3a36847f802550f", "cast_id": 7, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 6}, {"name": "Cary-Hiroyuki Tagawa", "character": "Krull", "id": 11398, "credit_id": "52fe4285c3a36847f8025513", "cast_id": 8, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 7}, {"name": "Glenn Shadix", "character": "Senator Nado", "id": 13243, "credit_id": "52fe4285c3a36847f8025517", "cast_id": 9, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 8}, {"name": "Charlton Heston", "character": "Zaius", "id": 10017, "credit_id": "52fe4285c3a36847f802551b", "cast_id": 10, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 9}, {"name": "Chad Bannon", "character": "Red Soldier", "id": 44824, "credit_id": "52fe4285c3a36847f8025555", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Linda Harrison", "character": "A woman", "id": 13260, "credit_id": "52fe4285c3a36847f802555f", "cast_id": 25, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 11}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f8025521", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 5.6, "runtime": 119}, "8337": {"poster_path": "/8N8BnBGwgsxXXwZ2q9eVFFIKFL1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nada, a down-on-his-luck construction worker, discovers a pair of special sunglasses. Wearing them, he is able to see the world as it really is: people being bombarded by media and government with messages like \"Stay Asleep\", \"No Imagination\", \"Submit to Authority\". Even scarier is that he is able to see that some usually normal-looking people are in fact ugly aliens in charge of the massive campaign to keep humans subdued.", "video": false, "id": 8337, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "They Live", "tagline": "Who are they? And what do they want?", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096256", "adult": false, "backdrop_path": "/yJVp1C2evg53kOyndpmHM5aRhua.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alive Films", "id": 17823}, {"name": "Larry Franco Productions", "id": 17824}], "release_date": "1988-11-23", "popularity": 0.689238478352181, "original_title": "They Live", "budget": 4000000, "cast": [{"name": "Roddy Piper", "character": "Nada", "id": 44240, "credit_id": "52fe44a0c3a36847f80a0ca5", "cast_id": 2, "profile_path": "/quqBuo4vO6kRJ2BxwSZlts43nYc.jpg", "order": 0}, {"name": "Meg Foster", "character": "Holly", "id": 41229, "credit_id": "52fe44a0c3a36847f80a0ca9", "cast_id": 3, "profile_path": "/j4byQmH2KqFUhFDYKOQCsLnOA9P.jpg", "order": 1}, {"name": "Keith David", "character": "Frank", "id": 65827, "credit_id": "52fe44a0c3a36847f80a0cad", "cast_id": 4, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 2}, {"name": "George Buck Flower", "character": "Drifter", "id": 54564, "credit_id": "52fe44a0c3a36847f80a0cb1", "cast_id": 5, "profile_path": "/xHzW4GszCLTZLNxvTcKL9ICuLIc.jpg", "order": 3}, {"name": "Raymond St. Jacques", "character": "Street Preacher", "id": 54565, "credit_id": "52fe44a0c3a36847f80a0cb5", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Peter Jason", "character": "Gilbert", "id": 6916, "credit_id": "52fe44a0c3a36847f80a0cb9", "cast_id": 7, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 5}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe44a0c3a36847f80a0ca1", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.9, "runtime": 93}, "872": {"poster_path": "/uJgp7KNBWHTXjEnbJZDodBTx4oD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7200000, "overview": "In 1927, Don Lockwood and Lina Lamont are a famous on-screen romantic pair. Lina, however, mistakes the on-screen romance for real love. Don has worked hard to get where he is today, with his former partner Cosmo. When Don and Lina's latest film is transformed into a musical, Don has the perfect voice for the songs. But Lina - well, even with the best efforts of a diction coach, they still decide to dub over her voice. Kathy Selden is brought in, an aspiring actress, and while she is working on the movie, Don falls in love with her. Will Kathy continue to \"aspire\", or will she get the break she deserves?", "video": false, "id": 872, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Singin' in the Rain", "tagline": "What a Glorious Feeling!", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0045152", "adult": false, "backdrop_path": "/qcfB8cAPi2RS1GuWXpoR5w8kQbJ.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1952-04-10", "popularity": 0.951483443437235, "original_title": "Singin' in the Rain", "budget": 2540800, "cast": [{"name": "Gene Kelly", "character": "Don Lockwood", "id": 13294, "credit_id": "52fe4285c3a36847f80256f9", "cast_id": 14, "profile_path": "/xbQZidMyhviuLmI1h8cJoJ7F1LV.jpg", "order": 0}, {"name": "Donald O'Connor", "character": "Cosmo Brown", "id": 13295, "credit_id": "52fe4285c3a36847f80256fd", "cast_id": 15, "profile_path": "/cwKG01GTWVTyYK0M6zfVeYbxpWU.jpg", "order": 1}, {"name": "Debbie Reynolds", "character": "Kathy Selden", "id": 8857, "credit_id": "52fe4285c3a36847f8025701", "cast_id": 16, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 2}, {"name": "Jean Hagen", "character": "Lina Lamont", "id": 13296, "credit_id": "52fe4285c3a36847f8025705", "cast_id": 17, "profile_path": "/uCuVvXXE392OWx0xptr9tnqoM0s.jpg", "order": 3}, {"name": "Millard Mitchell", "character": "R.F. Simpson", "id": 13297, "credit_id": "52fe4285c3a36847f8025709", "cast_id": 18, "profile_path": "/sYqhWsTBHtAJWqr6vhbIx65zUMc.jpg", "order": 4}, {"name": "Cyd Charisse", "character": "Dancer", "id": 41226, "credit_id": "52fe4285c3a36847f8025729", "cast_id": 26, "profile_path": "/mA1iUO4d0izoIUZ1oRn0cEQ10lv.jpg", "order": 5}, {"name": "Douglas Fowley", "character": "Roscoe Dexter", "id": 13298, "credit_id": "52fe4285c3a36847f802570d", "cast_id": 19, "profile_path": "/moXauEE9cDCaHGNkbgIMVqWZiY3.jpg", "order": 6}, {"name": "Rita Moreno", "character": "Zelda Zanders", "id": 13299, "credit_id": "52fe4285c3a36847f8025711", "cast_id": 20, "profile_path": "/A5IKvjUTdwexp4l5Bi6vaH8Hypc.jpg", "order": 7}, {"name": "Mae Clarke", "character": "Hairdresser (uncredited)", "id": 29814, "credit_id": "52fe4285c3a36847f8025725", "cast_id": 25, "profile_path": "/kVQ7r55E66lpfHYcsKpX0eOSFc1.jpg", "order": 8}, {"name": "Bess Flowers", "character": "Audience Member (uncredited)", "id": 121323, "credit_id": "532b80c0c3a3684bc6000276", "cast_id": 36, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 9}, {"name": "Robert Foulk", "character": "Matt - Policeman (uncredited)", "id": 2784, "credit_id": "532b80adc3a3684bce00029a", "cast_id": 35, "profile_path": "/pKTK3aa34Xp1J6uQK3bLnAIjPoc.jpg", "order": 10}, {"name": "Kathleen Freeman", "character": "Phoebe Dinsmore (uncredited)", "id": 7210, "credit_id": "52fe4285c3a36847f8025721", "cast_id": 24, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 11}, {"name": "Joi Lansing", "character": "Chorus Girl (uncredited)", "id": 55997, "credit_id": "532b80f5c3a3684b9d000276", "cast_id": 37, "profile_path": "/999jZOpjwXx1TzqzvlstH28Ywg0.jpg", "order": 12}, {"name": "Sylvia Lewis", "character": "Female Tango Dancer (uncredited)", "id": 1213241, "credit_id": "532b825ec3a3684b9d0002f5", "cast_id": 44, "profile_path": "/aRcFUaJJvGYWAT1nctCRVlZPYsD.jpg", "order": 13}, {"name": "'Snub' Pollard", "character": "Old Man Getting Umbrella in \"Singin' in the Rain\" Number (uncredited)", "id": 85778, "credit_id": "532b8330c3a3684bc600031a", "cast_id": 45, "profile_path": "/sAuWqpvncM3oVvytfZ8VHcAkPOf.jpg", "order": 14}, {"name": "William Schallert", "character": "Messenger on Screen (uncredited)", "id": 15992, "credit_id": "532b8357c3a3684bab000314", "cast_id": 46, "profile_path": "/d171pyQqJT272px9knj9crpYcSf.jpg", "order": 15}, {"name": "Elaine Stewart", "character": "Lady-in-Waiting (uncredited)", "id": 121765, "credit_id": "532b836fc3a3684ba400033f", "cast_id": 47, "profile_path": "/bwKigldYw8EChJt4A8ucENvj7tN.jpg", "order": 16}, {"name": "Brick Sullivan", "character": "Policeman in \"Singin' in the Rain\" Number (uncredited)", "id": 120473, "credit_id": "532b8386c3a3684bc6000323", "cast_id": 48, "profile_path": null, "order": 17}], "directors": [{"name": "Stanley Donen", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f80256b9", "profile_path": "/8r91mtKkWdYri739IilAvTVzr1E.jpg", "id": 13284}, {"name": "Gene Kelly", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f80256bf", "profile_path": "/xbQZidMyhviuLmI1h8cJoJ7F1LV.jpg", "id": 13294}], "vote_average": 7.1, "runtime": 103}, "873": {"poster_path": "/2a50LyRInWGLWq3u3DeGBQnvBHR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 146292009, "overview": "In the southern United States in the 1930s, a male-dominated African American woman fights her way through a troubled life.", "video": false, "id": 873, "genres": [{"id": 18, "name": "Drama"}], "title": "The Color Purple", "tagline": "It's about life. It's about love. It's about all of us.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088939", "adult": false, "backdrop_path": "/mGzHgeXhGSRVMfwq0oo7VAltiZH.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "The Guber-Peters Company", "id": 4357}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1985-12-18", "popularity": 0.712515953542284, "original_title": "The Color Purple", "budget": 15000000, "cast": [{"name": "Whoopi Goldberg", "character": "Celie", "id": 2395, "credit_id": "52fe4285c3a36847f802580b", "cast_id": 19, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 0}, {"name": "Margaret Avery", "character": "Shug Avery", "id": 13307, "credit_id": "52fe4285c3a36847f802580f", "cast_id": 20, "profile_path": "/fgl2niNcBqHCPEw9TAjcwIIEqiq.jpg", "order": 1}, {"name": "Danny Glover", "character": "Albert", "id": 2047, "credit_id": "52fe4285c3a36847f8025813", "cast_id": 21, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Akosua Busia", "character": "Netti", "id": 13308, "credit_id": "52fe4285c3a36847f8025817", "cast_id": 22, "profile_path": "/wxelYaGa4xWcFhII3EebwX5pscZ.jpg", "order": 3}, {"name": "Oprah Winfrey", "character": "Sofia", "id": 13309, "credit_id": "52fe4285c3a36847f802581b", "cast_id": 23, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 4}, {"name": "Willard E. Pugh", "character": "Harpo", "id": 13310, "credit_id": "52fe4285c3a36847f802581f", "cast_id": 24, "profile_path": "/iihJATSCFfsXnjcKR6OMDm1bDSS.jpg", "order": 5}, {"name": "Desreta Jackson", "character": "Young Celie Harris", "id": 13311, "credit_id": "52fe4285c3a36847f8025823", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Rae Dawn Chong", "character": "Squeak", "id": 13312, "credit_id": "52fe4285c3a36847f8025827", "cast_id": 26, "profile_path": "/6mk5lSTIUav9T1M0VAdUP46FTSH.jpg", "order": 7}, {"name": "Adolph Caesar", "character": "Old Mister", "id": 13313, "credit_id": "52fe4285c3a36847f802582b", "cast_id": 27, "profile_path": "/hSOR5aPnQ2Bp1ZoyH4OOG5DMkvV.jpg", "order": 8}, {"name": "Dana Ivey", "character": "Miss Millie", "id": 13314, "credit_id": "52fe4285c3a36847f802582f", "cast_id": 28, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 9}, {"name": "Leonard Jackson", "character": "Pa", "id": 13315, "credit_id": "52fe4285c3a36847f8025833", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Ben Guillory", "character": "Grady", "id": 13316, "credit_id": "52fe4285c3a36847f8025837", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "John Patton Jr.", "character": "Preacher", "id": 956838, "credit_id": "52fe4285c3a36847f8025847", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Carl Anderson", "character": "Reverend Samuel", "id": 72740, "credit_id": "52fe4285c3a36847f802584b", "cast_id": 34, "profile_path": "/bL9rkbAxVlxKBURw5SmUobFumpO.jpg", "order": 13}, {"name": "Susan Beaubian", "character": "Corrine", "id": 162869, "credit_id": "52fe4285c3a36847f802584f", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "James Tillis", "character": "Buster", "id": 1119468, "credit_id": "52fe4285c3a36847f8025853", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Phillip Strong", "character": "Mayor", "id": 1119469, "credit_id": "52fe4285c3a36847f8025857", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Laurence Fishburne", "character": "Swain", "id": 2975, "credit_id": "52fe4285c3a36847f802585b", "cast_id": 38, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 17}, {"name": "Peto Kinsaka", "character": "Adam", "id": 1119470, "credit_id": "52fe4285c3a36847f802585f", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Lelo Masamba", "character": "Olivia", "id": 1119471, "credit_id": "52fe4285c3a36847f8025863", "cast_id": 40, "profile_path": null, "order": 19}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f80257ad", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.6, "runtime": 154}, "9341": {"poster_path": "/qRPOFdmUlxl9Yk4dbbNTOPt6d1q.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74208267, "overview": "The Earth's core has stopped spinning and disasters are appearing all over the world; Birds are acting crazy, magnetic fields are causing huge electrical thunderstorms and people dying every second.Dr. Josh Keyes (Aaron Eckhart) and his crew have to travel down to the centre of the Earth and drop a nuclear bomb in an attempt to make the Earth's core spin once again. Or Mankind will perish...", "video": false, "id": 9341, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Core", "tagline": "Earth has a deadline", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0298814", "adult": false, "backdrop_path": "/muDrBFuHkqUgUrrSMPWlHaaK2kz.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "David Foster Productions", "id": 496}, {"name": "Horsepower Films", "id": 2199}, {"name": "Core Productions", "id": 12213}, {"name": "LivePlanet", "id": 7161}, {"name": "Munich Film Partners New Century & Company (MFP) Core Productions", "id": 12214}], "release_date": "2003-03-25", "popularity": 0.74417764304004, "original_title": "The Core", "budget": 60000000, "cast": [{"name": "Aaron Eckhart", "character": "Dr. Josh Keyes", "id": 6383, "credit_id": "52fe44eac3a36847f80b1857", "cast_id": 1, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Hilary Swank", "character": "Maj. Rebecca Childs", "id": 448, "credit_id": "52fe44eac3a36847f80b185b", "cast_id": 2, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 1}, {"name": "Delroy Lindo", "character": "Dr. Ed 'Braz' Brazzleton", "id": 18792, "credit_id": "52fe44eac3a36847f80b185f", "cast_id": 3, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Dr. Conrad Zimsky", "id": 2283, "credit_id": "52fe44eac3a36847f80b1863", "cast_id": 4, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Tch\u00e9ky Karyo", "character": "Serge", "id": 10698, "credit_id": "52fe44eac3a36847f80b18b9", "cast_id": 24, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 4}, {"name": "DJ Qualls", "character": "Theodore Donald 'Rat' Finch", "id": 132078, "credit_id": "52fe44eac3a36847f80b18a1", "cast_id": 18, "profile_path": "/foe0XuHIgVHsnrMBYlgYtsR3Z2V.jpg", "order": 5}, {"name": "Richard Jenkins", "character": "Gen. Thomas Purcell", "id": 28633, "credit_id": "52fe44eac3a36847f80b18a9", "cast_id": 20, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Cmdr. Robert Iverson", "id": 21089, "credit_id": "52fe44eac3a36847f80b18b1", "cast_id": 22, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Christopher Shyer", "character": "Dave Perry", "id": 83777, "credit_id": "52fe44eac3a36847f80b1891", "cast_id": 14, "profile_path": "/p9OWWTeNowh9UVk5S27IVXlozpS.jpg", "order": 8}, {"name": "Ray Galletti", "character": "Paul", "id": 172851, "credit_id": "52fe44eac3a36847f80b1895", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Eileen Pedde", "character": "Lynne", "id": 52457, "credit_id": "52fe44eac3a36847f80b1899", "cast_id": 16, "profile_path": "/pPrvpJqNN0teedsj1A8f93KUmxk.jpg", "order": 10}, {"name": "Rekha Sharma", "character": "Danni", "id": 62717, "credit_id": "52fe44eac3a36847f80b189d", "cast_id": 17, "profile_path": "/cx3ubTduzbsfyxPPnS2HoEmZbFG.jpg", "order": 11}, {"name": "Tom Scholte", "character": "Acker", "id": 534315, "credit_id": "52fe44eac3a36847f80b18a5", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Glenn Morshower", "character": "FBI Agent", "id": 12797, "credit_id": "52fe44eac3a36847f80b18ad", "cast_id": 21, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 13}, {"name": "Anthony Harrison", "character": "FBI Agent", "id": 106979, "credit_id": "52fe44eac3a36847f80b18b5", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Alfre Woodard", "character": "Stickley", "id": 1981, "credit_id": "52fe44eac3a36847f80b18e7", "cast_id": 32, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 15}, {"name": "Fred Keating", "character": "Court-Martial Presiding Officer", "id": 963962, "credit_id": "5503236f92514174f600118e", "cast_id": 162, "profile_path": null, "order": 16}], "directors": [{"name": "Jon Amiel", "department": "Directing", "job": "Director", "credit_id": "52fe44eac3a36847f80b1869", "profile_path": "/hpKrOAFWUwiPflcSrkAFDcajy1b.jpg", "id": 15148}], "vote_average": 5.3, "runtime": 135}, "8338": {"poster_path": "/AqWG6z1P2CBrRkgEqMKoNsqC0em.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "JP", "name": "Japan"}], "revenue": 19, "overview": "When a sudden plague of blindness devastates a city, a small group of the afflicted band together to triumphantly overcome the horrific conditions of their imposed quarantine.", "video": false, "id": 8338, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blindness", "tagline": "", "vote_count": 73, "homepage": "http://www.blindness-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0861689", "adult": false, "backdrop_path": "/dsvabsyvozyeVLQBnWd5GtXuzGP.jpg", "production_companies": [{"name": "Rhombus Media", "id": 164}, {"name": "O2 Filmes", "id": 345}, {"name": "Bee Vine Pictures", "id": 2439}, {"name": "Alliance Films", "id": 2514}, {"name": "Ancine", "id": 11547}, {"name": "Asmik Ace Entertainment", "id": 3033}, {"name": "BNDES", "id": 11548}, {"name": "Cinema Investment", "id": 11549}, {"name": "Corus Entertainment", "id": 11550}, {"name": "Fox Filmes do Brasil", "id": 4887}, {"name": "GAGA", "id": 3656}, {"name": "Movie Central Network", "id": 11551}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}], "release_date": "2008-09-12", "popularity": 0.43797955145056, "original_title": "Blindness", "budget": 25000000, "cast": [{"name": "Mark Ruffalo", "character": "Doctor", "id": 103, "credit_id": "52fe44a0c3a36847f80a0d4b", "cast_id": 4, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Doctor's Wife", "id": 1231, "credit_id": "52fe44a0c3a36847f80a0d4f", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Gael Garc\u00eda Bernal", "character": "King of Ward 3", "id": 258, "credit_id": "52fe44a0c3a36847f80a0d53", "cast_id": 6, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 2}, {"name": "Danny Glover", "character": "Man with black eye patch", "id": 2047, "credit_id": "52fe44a0c3a36847f80a0d57", "cast_id": 7, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 3}, {"name": "Alice Braga", "character": "Woman with dark glasses", "id": 8602, "credit_id": "52fe44a0c3a36847f80a0d97", "cast_id": 19, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 4}, {"name": "Y\u00fbsuke Iseya", "character": "First blind man", "id": 70209, "credit_id": "52fe44a0c3a36847f80a0d9b", "cast_id": 20, "profile_path": "/5GhcLQLicLe8xdJlnV7ic7Dtjr5.jpg", "order": 5}, {"name": "Kimura Yoshino", "character": "First blind man's wife", "id": 72764, "credit_id": "52fe44a0c3a36847f80a0d9f", "cast_id": 21, "profile_path": "/dwLTlABDjieSq8SVQrE63gvnnk1.jpg", "order": 6}, {"name": "Don McKellar", "character": "Thief", "id": 20173, "credit_id": "52fe44a0c3a36847f80a0da3", "cast_id": 22, "profile_path": "/m0UEFyCg5Sl2FHGi5WUNpI2n5AU.jpg", "order": 7}, {"name": "Maury Chaykin", "character": "Accountant", "id": 7868, "credit_id": "52fe44a0c3a36847f80a0da7", "cast_id": 23, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 8}, {"name": "Mitchell Nye", "character": "Boy", "id": 72765, "credit_id": "52fe44a0c3a36847f80a0dab", "cast_id": 24, "profile_path": "/h3KpuZZqWDfnn5IbePdiIsb999L.jpg", "order": 9}, {"name": "Joe Pingue", "character": "Taxi driver", "id": 86237, "credit_id": "53a5c307c3a368707a000c6c", "cast_id": 39, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Joe Cobden", "character": "Police man", "id": 51389, "credit_id": "53a5c32bc3a3687a310017c0", "cast_id": 40, "profile_path": "/kTf7OtOY1qBPmEbc4Kky9uMN58K.jpg", "order": 11}, {"name": "Sandra Oh", "character": "", "id": 25540, "credit_id": "53f93ba4c3a3687352002106", "cast_id": 41, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 12}], "directors": [{"name": "Fernando Meirelles", "department": "Directing", "job": "Director", "credit_id": "52fe44a0c3a36847f80a0d3b", "profile_path": "/j77Z3f2m0e211ocFhPJu5ZiO12R.jpg", "id": 8557}], "vote_average": 6.3, "runtime": 121}, "879": {"poster_path": "/POwU6bMRHWTkWsuDK95XpdH4Y9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300854823, "overview": "The boy who wasn't supposed to grow up\u2014Peter Pan\u2014did just that, becoming a soulless corporate lawyer whose workaholism could cost him his wife and kids. But a trip to see Granny Wendy in London, where the vengeful Capt. Hook kidnaps Peter's kids and forces Peter to return to Neverland, could lead to a chance at redemption, in this family-oriented fantasy from director Steven Spielberg.", "video": false, "id": 879, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Hook", "tagline": "What if Peter Pan grew up?", "vote_count": 404, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102057", "adult": false, "backdrop_path": "/zkBN7dRpNiK4aaWF6c4WfecyXof.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1991-12-10", "popularity": 0.739998400140788, "original_title": "Hook", "budget": 70000000, "cast": [{"name": "Robin Williams", "character": "Peter Banning", "id": 2157, "credit_id": "52fe4286c3a36847f8025bdf", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Captain James S. Hook", "id": 4483, "credit_id": "52fe4286c3a36847f8025be3", "cast_id": 2, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Julia Roberts", "character": "Tinkerbell", "id": 1204, "credit_id": "52fe4286c3a36847f8025be7", "cast_id": 3, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 2}, {"name": "Bob Hoskins", "character": "Smee", "id": 382, "credit_id": "52fe4286c3a36847f8025beb", "cast_id": 4, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 3}, {"name": "Caroline Goodall", "character": "Moira Banning", "id": 6692, "credit_id": "52fe4286c3a36847f8025bef", "cast_id": 5, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 4}, {"name": "Charlie Korsmo", "character": "Jack 'Jackie' Banning", "id": 13389, "credit_id": "52fe4286c3a36847f8025bf3", "cast_id": 6, "profile_path": "/5TiMQj3AXDVL1wDVtQss2xUPzTC.jpg", "order": 5}, {"name": "Amber Scott", "character": "Maggie Banning", "id": 13390, "credit_id": "52fe4286c3a36847f8025bf7", "cast_id": 7, "profile_path": "/sgRxdG2b6NMXEX75OXfFXWPucVH.jpg", "order": 6}, {"name": "Dante Basco", "character": "Rufio", "id": 13391, "credit_id": "52fe4286c3a36847f8025bfb", "cast_id": 8, "profile_path": "/96wTw5mPdYiksCeqQVUXWusAiRG.jpg", "order": 7}, {"name": "Arthur Malet", "character": "Tootles", "id": 13392, "credit_id": "52fe4286c3a36847f8025bff", "cast_id": 9, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 8}, {"name": "Isaiah Robinson", "character": "Pockets", "id": 13393, "credit_id": "52fe4286c3a36847f8025c03", "cast_id": 10, "profile_path": "/9kZNSQEofhdQZywxR0pq80PlwiR.jpg", "order": 9}, {"name": "Maggie Smith", "character": "Granny Wendy", "id": 10978, "credit_id": "52fe4286c3a36847f8025c07", "cast_id": 11, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 10}, {"name": "Gwyneth Paltrow", "character": "Young Wendy", "id": 12052, "credit_id": "52fe4286c3a36847f8025c89", "cast_id": 33, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 11}, {"name": "Phil Collins", "character": "Inspector Good", "id": 110001, "credit_id": "52fe4286c3a36847f8025c8d", "cast_id": 34, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 12}, {"name": "Glenn Close", "character": "Gutless", "id": 515, "credit_id": "52fe4286c3a36847f8025c91", "cast_id": 35, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 13}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4286c3a36847f8025c0d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.5, "runtime": 144}, "58224": {"poster_path": "/qKkyePjlG9yilHpS89ZOc3N2Cd1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83847000, "overview": "Jim Carrey stars as Tom Popper, a successful businessman who\u2019s clueless when it comes to the really important things in life...until he inherits six \u201cadorable\u201d penguins, each with its own unique personality. Soon Tom\u2019s rambunctious roommates turn his swank New York apartment into a snowy winter wonderland \u2014 and the rest of his world upside-down.", "video": false, "id": 58224, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Mr. Popper's Penguins", "tagline": "", "vote_count": 196, "homepage": "http://www.popperspenguins.com/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1396218", "adult": false, "backdrop_path": "/kJTtIU4sBfgGa6GqPkpFh3K07qM.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2011-06-17", "popularity": 0.797722969502158, "original_title": "Mr. Popper's Penguins", "budget": 65000000, "cast": [{"name": "Jim Carrey", "character": "Tom Popper", "id": 206, "credit_id": "52fe4959c3a36847f819592b", "cast_id": 4, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Amanda", "id": 17832, "credit_id": "52fe4959c3a36847f819592f", "cast_id": 5, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 1}, {"name": "Madeline Carroll", "character": "Janie Popper", "id": 62564, "credit_id": "52fe4959c3a36847f8195933", "cast_id": 6, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 2}, {"name": "Angela Lansbury", "character": "Mrs. Van Gundy", "id": 14730, "credit_id": "52fe4959c3a36847f8195937", "cast_id": 7, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 3}, {"name": "Ophelia Lovibond", "character": "Pippi", "id": 82639, "credit_id": "52fe4959c3a36847f819593b", "cast_id": 8, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 4}, {"name": "James Tupper", "character": "Rick", "id": 119807, "credit_id": "52fe4959c3a36847f819593f", "cast_id": 9, "profile_path": "/eRl6B6WlnxPztKksIpnIp3votlL.jpg", "order": 5}, {"name": "Clark Gregg", "character": "Nat Jones", "id": 9048, "credit_id": "52fe4959c3a36847f8195943", "cast_id": 10, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Mr. Gremmins", "id": 4175, "credit_id": "52fe4959c3a36847f8195947", "cast_id": 11, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "David Krumholtz", "character": "Kent", "id": 38582, "credit_id": "52fe4959c3a36847f819594b", "cast_id": 12, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 8}, {"name": "Philip Baker Hall", "character": "Franklin", "id": 4492, "credit_id": "52fe4959c3a36847f819594f", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 9}, {"name": "James Tupper", "character": "Rick", "id": 119807, "credit_id": "52fe4959c3a36847f8195957", "cast_id": 15, "profile_path": "/eRl6B6WlnxPztKksIpnIp3votlL.jpg", "order": 11}, {"name": "Dominic Chianese", "character": "Reader", "id": 68186, "credit_id": "52fe4959c3a36847f819595b", "cast_id": 16, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 12}, {"name": "William Charles Mitchell", "character": "Yates", "id": 171948, "credit_id": "52fe4959c3a36847f819595f", "cast_id": 17, "profile_path": "/zbhM3lnxMFqdCE2vYTK4fcWuP0W.jpg", "order": 13}, {"name": "Henry Kelemen", "character": "Young Tommy Popper #1", "id": 1256097, "credit_id": "52fe4959c3a36847f8195963", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Kelli Barrett", "character": "Tommy's Mom", "id": 968851, "credit_id": "52fe4959c3a36847f8195967", "cast_id": 19, "profile_path": "/hAzAP92FgiGXJgvrl8lWuqN23lT.jpg", "order": 15}, {"name": "Maxwell Perry Cotton", "character": "Billy", "id": 206928, "credit_id": "5358b2c50e0a26068b0031f6", "cast_id": 20, "profile_path": "/nhVxraRhGDmWHgEU0I0gBjpp8pI.jpg", "order": 16}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe4959c3a36847f819591b", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.8, "runtime": 94}, "881": {"poster_path": "/WgWLwk55YaXFZdlMnPJTKlxGcz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 243240178, "overview": "When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.", "video": false, "id": 881, "genres": [{"id": 18, "name": "Drama"}], "title": "A Few Good Men", "tagline": "In the heart of the nation's capital, in a courthouse of the U.S. government, one man will stop at nothing to keep his honor, and one will stop at nothing to find the truth.", "vote_count": 271, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104257", "adult": false, "backdrop_path": "/86UvnqQsefvHfBX6F65PUQHjVPc.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1992-12-11", "popularity": 1.11102375539568, "original_title": "A Few Good Men", "budget": 40000000, "cast": [{"name": "Tom Cruise", "character": "Lt. Daniel Kaffee", "id": 500, "credit_id": "52fe4286c3a36847f8025da7", "cast_id": 10, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jack Nicholson", "character": "Col. Nathan R. Jessep", "id": 514, "credit_id": "52fe4286c3a36847f8025dab", "cast_id": 11, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 1}, {"name": "Demi Moore", "character": "Lt. Cdr. JoAnne Galloway", "id": 3416, "credit_id": "52fe4286c3a36847f8025daf", "cast_id": 12, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Capt. Jack Ross", "id": 4724, "credit_id": "52fe4286c3a36847f8025db3", "cast_id": 13, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "Lt. Jonathan Kendrick", "id": 2628, "credit_id": "52fe4286c3a36847f8025db7", "cast_id": 14, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "Kevin Pollak", "character": "Lt. Sam Weinberg", "id": 7166, "credit_id": "52fe4286c3a36847f8025dbb", "cast_id": 15, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 5}, {"name": "Wolfgang Bodison", "character": "Lance Cpl. Harold W. Dawson", "id": 68672, "credit_id": "52fe4286c3a36847f8025ddb", "cast_id": 23, "profile_path": "/bYpIjl1G8NGrDfQXxtoAYpxLp5F.jpg", "order": 6}, {"name": "James Marshall", "character": "Pfc.Louden Downey", "id": 6717, "credit_id": "52fe4286c3a36847f8025dbf", "cast_id": 16, "profile_path": "/8ytq4mu3fLWlLU80QeGCBz4z0tW.jpg", "order": 7}, {"name": "J. T. Walsh", "character": "Lt. Col. Matthew A. Markinson", "id": 22131, "credit_id": "52fe4286c3a36847f8025dd7", "cast_id": 22, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 8}, {"name": "Christopher Guest", "character": "Dr. Stone", "id": 13524, "credit_id": "52fe4286c3a36847f8025dc3", "cast_id": 17, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 9}, {"name": "Matt Craven", "character": "Lt. Dave Spradling", "id": 13525, "credit_id": "52fe4286c3a36847f8025dc7", "cast_id": 18, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 10}, {"name": "Xander Berkeley", "character": "Capt. Whitaker", "id": 3982, "credit_id": "52fe4286c3a36847f8025dcb", "cast_id": 19, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 11}, {"name": "Noah Wyle", "character": "Cpl. Jeffrey Barnes", "id": 13526, "credit_id": "52fe4286c3a36847f8025dcf", "cast_id": 20, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 12}, {"name": "Cuba Gooding Jr.", "character": "Cpl. Carl Hammaker", "id": 9777, "credit_id": "52fe4286c3a36847f8025dd3", "cast_id": 21, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 13}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe4286c3a36847f8025d73", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.8, "runtime": 138}, "9075": {"poster_path": "/vzYhigzSd5Y90DXHlUTWHh4z2fE.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 26193068, "overview": "In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.", "video": false, "id": 9075, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Black Book", "tagline": "To fight the enemy, she must become one of them.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt0389557", "adult": false, "backdrop_path": "/nHUgWsYFyDOKYf2AsDdHHlHmRtJ.jpg", "production_companies": [{"name": "Fu Works", "id": 12046}, {"name": "Clockwork Pictures", "id": 25488}, {"name": "ContentFilm International", "id": 25487}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}, {"name": "Media Programme of the European Community", "id": 21972}, {"name": "Filmf\u00f6rderungsanstalt (FFA)", "id": 4247}, {"name": "Euroimages Fund of the Council of Europe", "id": 23192}, {"name": "Medienboard Berlin-Brandenburg", "id": 7307}, {"name": "CoBo Fund", "id": 234}, {"name": "Nederlands Fonds voor de Film", "id": 4508}, {"name": "uFilm", "id": 8676}, {"name": "VIP 4 Medienfonds", "id": 23238}, {"name": "Hector BV", "id": 16618}, {"name": "Motel Films", "id": 865}, {"name": "Motion Investment Group", "id": 1991}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Egoli Tossell Film AG", "id": 2254}], "release_date": "2006-09-13", "popularity": 0.458638027244581, "original_title": "Zwartboek", "budget": 21000000, "cast": [{"name": "Carice van Houten", "character": "Rachel Stein / Ellis de Vries", "id": 23229, "credit_id": "52fe44d9c3a36847f80ad961", "cast_id": 1, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 0}, {"name": "Sebastian Koch", "character": "Ludwig M\u00fcntze", "id": 8197, "credit_id": "52fe44d9c3a36847f80ad965", "cast_id": 2, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 1}, {"name": "Thom Hoffman", "character": "Hans Akkermans", "id": 7572, "credit_id": "52fe44d9c3a36847f80ad969", "cast_id": 3, "profile_path": "/uqWhSQzfBScIHzYhAr4GsHKyrvP.jpg", "order": 2}, {"name": "Halina Reijn", "character": "Ronnie", "id": 39847, "credit_id": "52fe44d9c3a36847f80ad96d", "cast_id": 4, "profile_path": "/wkXlorWKdVziK9h3g0Lizc8aO2J.jpg", "order": 3}, {"name": "Waldemar Kobus", "character": "G\u00fcnther Franken", "id": 27627, "credit_id": "52fe44d9c3a36847f80ad971", "cast_id": 5, "profile_path": "/E4doq4dgj2HOl7T7yHSjMnINPc.jpg", "order": 4}, {"name": "Matthias Schoenaerts", "character": "Joop", "id": 73381, "credit_id": "52fe44d9c3a36847f80ad9b1", "cast_id": 16, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 5}, {"name": "Theo Maassen", "character": "Prison Guard with Baret", "id": 52167, "credit_id": "52fe44d9c3a36847f80ad9b5", "cast_id": 17, "profile_path": "/lEbv5R34TpzDrbo8Df8Tv7bnfek.jpg", "order": 6}, {"name": "Derek de Lint", "character": "Gerben Kuipers", "id": 9128, "credit_id": "53a2edbe0e0a2622790016fc", "cast_id": 33, "profile_path": "/1BhDuHRp2ffTkYVeGKGQM46xGyN.jpg", "order": 7}, {"name": "Christian Berkel", "character": "General K\u00e4utner", "id": 7803, "credit_id": "53a2f4660e0a2622740017d6", "cast_id": 34, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 8}, {"name": "Dolf de Vries", "character": "Notary Wim Smaal", "id": 9130, "credit_id": "53a2f4fd0e0a2622710017fd", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Peter Blok", "character": "Van Gein", "id": 46460, "credit_id": "53a2f52c0e0a2622820017a5", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Michiel Huisman", "character": "Rob", "id": 91520, "credit_id": "53a2f5760e0a26226e0016da", "cast_id": 37, "profile_path": "/sUyhFWPSF13HkoB8aElJuh4D1sp.jpg", "order": 11}, {"name": "Ronald Armbrust", "character": "Tim Kuipers", "id": 1331977, "credit_id": "53a2f5a80e0a2622860017de", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Frank Lammers", "character": "Kees", "id": 43643, "credit_id": "53a2f5d40e0a2622860017e4", "cast_id": 39, "profile_path": "/lEfziEqpXP03lznJL5LMGSwvwVV.jpg", "order": 13}, {"name": "Johnny de Mol", "character": "Theo", "id": 107204, "credit_id": "53a2f6ed0e0a262274001810", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Xander Straat", "character": "Maarten", "id": 1245208, "credit_id": "53a2f7860e0a26227100183b", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Diana Dobbelman", "character": "Mrs. Smaal", "id": 1331978, "credit_id": "53a2f7d30e0a262274001837", "cast_id": 42, "profile_path": null, "order": 16}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe44d9c3a36847f80ad9ad", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 7.1, "runtime": 145}, "9078": {"poster_path": "/wZyRYmYrAWNiFhXohp4Ly8svpJH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Wart is a young boy who aspires to be a knight's squire. On a hunting trip he falls in on Merlin, a powerful but amnesiac wizard who has plans for him beyond mere squiredom. He starts by trying to give him an education, believing that once one has an education, one can go anywhere. Needless to say, it doesn't quite work out that way.", "video": false, "id": 9078, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Sword in the Stone", "tagline": "Tired of living in a Medieval mess...Merlin uses all his magic powers to change a scrawny little boy into a legendary hero!", "vote_count": 261, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0057546", "adult": false, "backdrop_path": "/pOCwlsmwlh8CJU4hSammuNo8a5s.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1963-12-25", "popularity": 0.842250774046703, "original_title": "The Sword in the Stone", "budget": 0, "cast": [{"name": "Sebastian Cabot", "character": "The Narrator/Sir Ector", "id": 21877, "credit_id": "52fe44d9c3a36847f80adaed", "cast_id": 1, "profile_path": "/x4xosGUCYnuUQntxgbcZryWaKH6.jpg", "order": 0}, {"name": "Karl Swenson", "character": "Merlin", "id": 12158, "credit_id": "52fe44d9c3a36847f80adaf1", "cast_id": 2, "profile_path": "/yyeaz3ruAZbyPWame4CZW49GSHe.jpg", "order": 1}, {"name": "Junius Matthews", "character": "Archimedes the Owl", "id": 57313, "credit_id": "52fe44d9c3a36847f80adaf5", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Norman Alden", "character": "Kay", "id": 7139, "credit_id": "52fe44d9c3a36847f80adaf9", "cast_id": 4, "profile_path": "/8UZtACb7u0JEOKh9IzFTi5FC4NH.jpg", "order": 3}, {"name": "Rickie Sorensen", "character": "Wart", "id": 159552, "credit_id": "52fe44d9c3a36847f80adb15", "cast_id": 9, "profile_path": "/m6DvofLisrfFrYdA3RHGDWK7cwV.jpg", "order": 4}, {"name": "Ginny Tyler", "character": "Little Girl Squirrel", "id": 955923, "credit_id": "52fe44d9c3a36847f80adb19", "cast_id": 10, "profile_path": "/yo0uqIwLh4mrFgjI0dYMYDr3DVh.jpg", "order": 5}, {"name": "Martha Wentworth", "character": "Madam Mim / Old Lady Squirrel", "id": 71780, "credit_id": "52fe44d9c3a36847f80adb1d", "cast_id": 11, "profile_path": "/jyWAHneC2QdoC1Wpnvwf05wCMZs.jpg", "order": 6}, {"name": "Alan Napier", "character": "Sir Pellinore", "id": 6933, "credit_id": "52fe44d9c3a36847f80adb21", "cast_id": 12, "profile_path": "/mmOemlQeMp0ViF4cy8QL1bArm4y.jpg", "order": 7}, {"name": "Richard Reitherman", "character": "Wart", "id": 1287645, "credit_id": "52fe44d9c3a36847f80adb25", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Robert Reitherman", "character": "Wart", "id": 1287646, "credit_id": "52fe44d9c3a36847f80adb29", "cast_id": 14, "profile_path": "/hsAuBmxp4c1F99R9M2r41IYsmO2.jpg", "order": 9}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44d9c3a36847f80adb05", "profile_path": null, "id": 57314}], "vote_average": 6.3, "runtime": 79}, "9705": {"poster_path": "/uJdI3eau8BHgTsrUbAeccnKn0ez.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69772969, "overview": "Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.", "video": false, "id": 9705, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Swordfish", "tagline": "Log On. Hack In. Go Anywhere. Get Everything.", "vote_count": 381, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0244244", "adult": false, "backdrop_path": "/9iUG3L5pJjfIJBaaCOl1ucdAM4e.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}], "release_date": "2001-06-07", "popularity": 0.641480543631239, "original_title": "Swordfish", "budget": 80000000, "cast": [{"name": "John Travolta", "character": "Gabriel Shear", "id": 8891, "credit_id": "52fe451fc3a36847f80bdac1", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "Stanley Jobson", "id": 6968, "credit_id": "52fe451fc3a36847f80bdac5", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Halle Berry", "character": "Ginger Knowles", "id": 4587, "credit_id": "52fe451fc3a36847f80bdac9", "cast_id": 3, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 2}, {"name": "Don Cheadle", "character": "Agent J.T. Roberts", "id": 1896, "credit_id": "52fe451fc3a36847f80bdacd", "cast_id": 4, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 3}, {"name": "Sam Shepard", "character": "Senator James Reisman", "id": 9880, "credit_id": "52fe451fc3a36847f80bdad1", "cast_id": 5, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 4}, {"name": "Vinnie Jones", "character": "Marco", "id": 980, "credit_id": "52fe451fc3a36847f80bdb11", "cast_id": 17, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 5}, {"name": "Drea de Matteo", "character": "Melissa", "id": 70767, "credit_id": "52fe451fc3a36847f80bdb15", "cast_id": 18, "profile_path": "/6rAp86rimrbRbZtm61jQoc5Fmkv.jpg", "order": 6}, {"name": "Rudolf Martin", "character": "Axl Torvalds", "id": 25848, "credit_id": "52fe451fc3a36847f80bdb19", "cast_id": 19, "profile_path": "/4dnohkcSh06YhtvUf3NT4DBtgs9.jpg", "order": 7}, {"name": "Zach Grenier", "character": "Assistant Director Bill Joy", "id": 7471, "credit_id": "52fe451fc3a36847f80bdb1d", "cast_id": 20, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 8}, {"name": "Camryn Grimes", "character": "Holly Jobson", "id": 177918, "credit_id": "52fe451fc3a36847f80bdb21", "cast_id": 21, "profile_path": "/fgh10Z5gysQwzocLdbfFk7BKq2q.jpg", "order": 9}, {"name": "Angelo Pagan", "character": "Torres", "id": 172355, "credit_id": "52fe451fc3a36847f80bdb25", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Chic Daniel", "character": "SWAT Leader", "id": 944478, "credit_id": "52fe451fc3a36847f80bdb29", "cast_id": 23, "profile_path": "/i8kXvMUhvQxJZTatSTo1SPSPSgq.jpg", "order": 11}, {"name": "Kirk B.R. Woller", "character": "Axl's Lawyer", "id": 6864, "credit_id": "52fe451fc3a36847f80bdb2d", "cast_id": 24, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 12}, {"name": "Carmen Argenziano", "character": "Agent", "id": 28413, "credit_id": "52fe451fc3a36847f80bdb31", "cast_id": 25, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 13}, {"name": "Tim DeKay", "character": "Agent", "id": 76001, "credit_id": "52fe451fc3a36847f80bdb35", "cast_id": 26, "profile_path": "/tqtJsa6UZeTNMyuatDnFPHRJsAh.jpg", "order": 14}, {"name": "Laura Lane", "character": "Helga", "id": 1115919, "credit_id": "52fe451fc3a36847f80bdb39", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Tait Ruppert", "character": "Ad Agency Executive", "id": 75200, "credit_id": "52fe451fc3a36847f80bdb3d", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Craig Braun", "character": "Coroner", "id": 157409, "credit_id": "52fe451fc3a36847f80bdb41", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "William Mapother", "character": "Gabriel's Crew", "id": 15338, "credit_id": "52fe451fc3a36847f80bdb45", "cast_id": 30, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 18}, {"name": "Ilia Volok", "character": "Gabriel's Crew", "id": 109667, "credit_id": "52fe451fc3a36847f80bdb49", "cast_id": 31, "profile_path": "/k5ACLMgPMrZjKbnOmHmaeBLx2Te.jpg", "order": 19}, {"name": "Jonathan Fraser", "character": "Gabriel's Crew", "id": 1231221, "credit_id": "52fe451fc3a36847f80bdb4d", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Shawn Woods", "character": "Gabriel's Crew", "id": 21472, "credit_id": "52fe451fc3a36847f80bdb51", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Leo Lee", "character": "Gabriel's Crew", "id": 188274, "credit_id": "52fe451fc3a36847f80bdb55", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Marina Black", "character": "Hostage", "id": 173996, "credit_id": "52fe451fc3a36847f80bdb59", "cast_id": 35, "profile_path": "/hOrH537RqGkDqp7xLUTY7LuffYj.jpg", "order": 23}, {"name": "Kerry Kletter", "character": "Hostage", "id": 1279725, "credit_id": "52fe451fc3a36847f80bdb5d", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Ryan Wulff", "character": "Hostage", "id": 1279726, "credit_id": "52fe451fc3a36847f80bdb61", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Ann Travolta", "character": "Hostage", "id": 167878, "credit_id": "52fe451fc3a36847f80bdb65", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Margaret Travolta", "character": "Hostage", "id": 3283, "credit_id": "52fe451fc3a36847f80bdb69", "cast_id": 39, "profile_path": "/igwSgzjk8Hxe0BZk1GQZUzLKvUw.jpg", "order": 27}, {"name": "Dana Hee", "character": "Hostage", "id": 131528, "credit_id": "52fe451fc3a36847f80bdb6d", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Denney Pierce", "character": "Hostage", "id": 159264, "credit_id": "52fe451fc3a36847f80bdb71", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jeff Ramsey", "character": "Hostage", "id": 982374, "credit_id": "52fe451fc3a36847f80bdb75", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Joey Box", "character": "Hostage", "id": 9558, "credit_id": "52fe451fc3a36847f80bdb79", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Debbie Evans", "character": "Hostage", "id": 1279727, "credit_id": "52fe451fc3a36847f80bdb7d", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Samuel Travolta", "character": "Hostage", "id": 1279728, "credit_id": "52fe451fc3a36847f80bdb81", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Tim Storms", "character": "Hostage", "id": 1279729, "credit_id": "52fe451fc3a36847f80bdb85", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Jason Christopher", "character": "Club Kid", "id": 1279730, "credit_id": "52fe451fc3a36847f80bdb89", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Jonathan Pessin", "character": "Club Kid", "id": 1279731, "credit_id": "52fe451fc3a36847f80bdb8d", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Scott Burkholder", "character": "FBI Geek", "id": 104503, "credit_id": "52fe451fc3a36847f80bdb91", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Mark Soper", "character": "FBI Geek", "id": 100276, "credit_id": "52fe451fc3a36847f80bdb95", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Craig Lally", "character": "Customs Agent", "id": 1279732, "credit_id": "52fe451fc3a36847f80bdb99", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Rusty McClennon", "character": "Customs Agent", "id": 1279733, "credit_id": "52fe451fc3a36847f80bdb9d", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Mark Riccardi", "character": "Customs Agent", "id": 198799, "credit_id": "52fe451fc3a36847f80bdba1", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Debbie Entin", "character": "Helga's Friend", "id": 1279734, "credit_id": "52fe451fc3a36847f80bdba5", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Natalia Sokolova", "character": "Helga's Friend", "id": 1243066, "credit_id": "52fe451fc3a36847f80bdba9", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Anika Poitier", "character": "Helga's Friend", "id": 1279735, "credit_id": "52fe451fc3a36847f80bdbad", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Nick Loren", "character": "Dark Suit", "id": 982098, "credit_id": "52fe451fc3a36847f80bdbb1", "cast_id": 57, "profile_path": "/xBuM0KDWPW1jcpByKFEnyt1aKrv.jpg", "order": 45}, {"name": "Tom Morris", "character": "Policeman", "id": 1172392, "credit_id": "52fe451fc3a36847f80bdbb5", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Richard Householder", "character": "Policeman", "id": 1279736, "credit_id": "52fe451fc3a36847f80bdbb9", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Michael Arias", "character": "Policeman", "id": 1279737, "credit_id": "52fe451fc3a36847f80bdbbd", "cast_id": 60, "profile_path": null, "order": 48}, {"name": "Brenda Eimers", "character": "Holly's Teacher", "id": 1279739, "credit_id": "52fe451fc3a36847f80bdbc1", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "Timothy Omundson", "character": "Agent Thomas", "id": 134423, "credit_id": "52fe451fc3a36847f80bdbc5", "cast_id": 62, "profile_path": "/z2GkN1McMM3zheE1RyCk8ZlB90Y.jpg", "order": 50}, {"name": "Astrid Veillon", "character": "Bank Executive", "id": 185374, "credit_id": "52fe451fc3a36847f80bdbc9", "cast_id": 63, "profile_path": "/17r9IBsT46fARqx2QuIlPzb17ZQ.jpg", "order": 51}, {"name": "Dean Rader Duval", "character": "Security Guard", "id": 1279744, "credit_id": "52fe451fc3a36847f80bdbcd", "cast_id": 64, "profile_path": null, "order": 52}], "directors": [{"name": "Dominic Sena", "department": "Directing", "job": "Director", "credit_id": "52fe451fc3a36847f80bdad7", "profile_path": "/ofWADCsDpNxbTFfoK1CpU8KnBGF.jpg", "id": 58498}], "vote_average": 6.0, "runtime": 99}, "888": {"poster_path": "/kCJofdPv2HqiKeUJ0743Ae4UlFr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 341631208, "overview": "Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.", "video": false, "id": 888, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Flintstones", "tagline": "Yabba-Dabba-Doo!", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109813", "adult": false, "backdrop_path": "/vbWvWqZJiEiffj8xag0owDExRVg.jpg", "production_companies": [{"name": "Hanna-Barbera Productions", "id": 1353}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1994-05-26", "popularity": 0.751052982106051, "original_title": "The Flintstones", "budget": 46000000, "cast": [{"name": "John Goodman", "character": "Fred Flintstone", "id": 1230, "credit_id": "52fe4287c3a36847f80262af", "cast_id": 16, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 0}, {"name": "Elizabeth Perkins", "character": "Wilma Flintstone", "id": 20, "credit_id": "52fe4287c3a36847f80262b3", "cast_id": 17, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 1}, {"name": "Rick Moranis", "character": "Barney Rubble", "id": 8872, "credit_id": "52fe4287c3a36847f80262b7", "cast_id": 18, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 2}, {"name": "Rosie O'Donnell", "character": "Betty Rubble", "id": 12929, "credit_id": "52fe4287c3a36847f80262bb", "cast_id": 19, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 3}, {"name": "Kyle MacLachlan", "character": "Cliff Vandercave", "id": 6677, "credit_id": "52fe4287c3a36847f80262bf", "cast_id": 20, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 4}, {"name": "Halle Berry", "character": "Rosetta Stone", "id": 4587, "credit_id": "52fe4287c3a36847f80262c3", "cast_id": 21, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 5}, {"name": "Elizabeth Taylor", "character": "Pearl Slaghoople", "id": 3635, "credit_id": "52fe4287c3a36847f80262c7", "cast_id": 22, "profile_path": "/rPbfZlBX18OIj7H1Bahq7YcJL0v.jpg", "order": 6}, {"name": "Dann Florek", "character": "Mr. Slate", "id": 9175, "credit_id": "52fe4287c3a36847f80262cb", "cast_id": 23, "profile_path": "/aWRFqpmLdFAoH9BiUE7RyxUKUsX.jpg", "order": 7}, {"name": "Richard Moll", "character": "Hoagie", "id": 13591, "credit_id": "52fe4287c3a36847f80262cf", "cast_id": 24, "profile_path": "/c1VbqIWN29mOoFfxvHMQxuAzTn5.jpg", "order": 8}, {"name": "Irwin Keyes", "character": "Joe Rockhead", "id": 13592, "credit_id": "52fe4287c3a36847f80262d3", "cast_id": 25, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 9}, {"name": "Jonathan Winters", "character": "Gobo The Grizzled Man", "id": 13593, "credit_id": "52fe4287c3a36847f80262d7", "cast_id": 26, "profile_path": "/j63YOBYEXhbDWbXUnqD3gb5KJ5k.jpg", "order": 10}, {"name": "Harvey Korman", "character": "Ali / Dicabird / Blossom's Adopted Doll Son Ali", "id": 13640, "credit_id": "52fe4287c3a36847f8026305", "cast_id": 35, "profile_path": "/zXLYvJP3ReKPI6lJr2VuDGupL1j.jpg", "order": 11}, {"name": "Corey Burton", "character": "Triple X / Green Goose", "id": 35219, "credit_id": "52fe4287c3a36847f802630d", "cast_id": 37, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 13}, {"name": "Roger L. Jackson", "character": "Bobo", "id": 51957, "credit_id": "52fe4287c3a36847f8026311", "cast_id": 38, "profile_path": "/lI4N9GJ0QuC1YFYSwauNssGwe11.jpg", "order": 14}, {"name": "Jean Vander Pyl", "character": "Tanya Slag", "id": 145257, "credit_id": "52fe4287c3a36847f8026351", "cast_id": 52, "profile_path": "/54hip6U1OiuIBxTqqWtS8KOGrXz.jpg", "order": 15}], "directors": [{"name": "William Hanna", "department": "Directing", "job": "Director", "credit_id": "537b55a40e0a267fea001658", "profile_path": "/3rCaagU4QRi0JJhcdbUGKoqEWtG.jpg", "id": 13620}, {"name": "Joseph Barbera", "department": "Directing", "job": "Director", "credit_id": "537b55e00e0a267ff7001790", "profile_path": "/A8Lorvx5HirKefQWmhftWGO5VI4.jpg", "id": 13594}, {"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe4287c3a36847f8026357", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.2, "runtime": 91}, "58233": {"poster_path": "/vnS4Lb5rNx2ZucVdrW3TQd6n2AL.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 163388693, "overview": "Johnny English Reborn is a 2011 British spy comedy film parodying the James Bond secret agent genre and film franchise reboots. The film is the sequel to Johnny English (2003), and stars Rowan Atkinson reprising his role as the title character and directed by Oliver Parker. The film has a slightly darker tone than the previous film but retains Atkinson's signature humor.", "video": false, "id": 58233, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Johnny English Reborn", "tagline": "Laugh at the face of danger", "vote_count": 407, "homepage": "http://www.johnnyenglishreborn.com/", "belongs_to_collection": {"backdrop_path": "/pMHHhMKu2iQichL6Eym4ApCvIEB.jpg", "poster_path": "/4RwgzSS4qnqKpTpCtrKQo1cdQXD.jpg", "id": 86117, "name": "Johnny English Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1634122", "adult": false, "backdrop_path": "/5QJbfO5EZtNHTABWKkGqOyvOvNg.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2011-09-15", "popularity": 0.589371502284896, "original_title": "Johnny English Reborn", "budget": 45000000, "cast": [{"name": "Rowan Atkinson", "character": "Johnny English", "id": 10730, "credit_id": "52fe495bc3a36847f8195d9b", "cast_id": 1, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "Dominic West", "character": "Ambrose", "id": 17287, "credit_id": "52fe495bc3a36847f8195d9f", "cast_id": 2, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 1}, {"name": "Gillian Anderson", "character": "Pamela Thornton (aka. Pegasus: Head of MI7)", "id": 12214, "credit_id": "52fe495bc3a36847f8195da3", "cast_id": 3, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 2}, {"name": "Rosamund Pike", "character": "Kate", "id": 10882, "credit_id": "52fe495bc3a36847f8195da7", "cast_id": 4, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 3}, {"name": "Roger Barclay", "character": "Agent Two", "id": 550312, "credit_id": "52fe495bc3a36847f8195db7", "cast_id": 7, "profile_path": "/lhrJO0nYsdB11o3Wvq1e7ph35vl.jpg", "order": 4}, {"name": "Stephen Campbell Moore", "character": "Prime Minister", "id": 55467, "credit_id": "52fe495bc3a36847f8195dbb", "cast_id": 8, "profile_path": "/9LPG6fCe2ct82Io5zI8iyvJ8NsP.jpg", "order": 5}, {"name": "Christina Chong", "character": "", "id": 472632, "credit_id": "548ebdde92514122ea0069f0", "cast_id": 9, "profile_path": null, "order": 6}], "directors": [{"name": "Oliver Parker", "department": "Directing", "job": "Director", "credit_id": "52fe495bc3a36847f8195dad", "profile_path": "/3qdUN7qhcQn4P3tEOTKJgTUdCIr.jpg", "id": 56710}], "vote_average": 6.1, "runtime": 101}, "891": {"poster_path": "/5uGlMCLH3es7Hk0JvmFJUBISGZM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70600000, "overview": "In the run-up to the 1972 elections, Washington Post reporter Bob Woodward covers what seems to be a minor break-in at the Democratic Party National headquarters. He is surprised to find top lawyers already on the defense case, and the discovery of names and addresses of Republican fund organizers on the accused further arouses his suspicions. The editor of the Post is prepared to run with the story and assigns Woodward and Carl Bernstein to it. They find the trail leading higher and higher in the Republican Party, and eventually into the White House itself.", "video": false, "id": 891, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "All the President's Men", "tagline": "At times it looked like it might cost them their jobs, their reputations, and maybe even their lives.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074119", "adult": false, "backdrop_path": "/aMjbjiH0mTUmHVLmYFTTdG5fMZQ.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Wildwood Enterprises", "id": 316}], "release_date": "1976-04-04", "popularity": 0.481267650906764, "original_title": "All the President's Men", "budget": 8500000, "cast": [{"name": "Dustin Hoffman", "character": "Carl Bernstein", "id": 4483, "credit_id": "52fe4288c3a36847f80265bd", "cast_id": 14, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Robert Redford", "character": "Bob Woodward", "id": 4135, "credit_id": "52fe4288c3a36847f80265c1", "cast_id": 15, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Jack Warden", "character": "Harry M. Rosenfeld", "id": 5251, "credit_id": "52fe4288c3a36847f80265c5", "cast_id": 16, "profile_path": "/7Pfj27pVjkQIu5HS85MlGdsl7MQ.jpg", "order": 2}, {"name": "Martin Balsam", "character": "Howard Simons", "id": 1936, "credit_id": "52fe4288c3a36847f80265c9", "cast_id": 17, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 3}, {"name": "Hal Holbrook", "character": "Deep Throat", "id": 11066, "credit_id": "52fe4288c3a36847f80265cd", "cast_id": 18, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 4}, {"name": "Jane Alexander", "character": "Judy Hoback", "id": 13724, "credit_id": "52fe4288c3a36847f80265d1", "cast_id": 19, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 5}, {"name": "Meredith Baxter", "character": "Debbie Sloan", "id": 13725, "credit_id": "52fe4288c3a36847f80265d5", "cast_id": 20, "profile_path": "/tkX4o5lfV5kS70S5Sy3zOsgKOpx.jpg", "order": 6}, {"name": "Ned Beatty", "character": "Martin Dardis", "id": 13726, "credit_id": "52fe4288c3a36847f80265d9", "cast_id": 21, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 7}, {"name": "Jason Robards", "character": "Ben Bradlee", "id": 4765, "credit_id": "52fe4288c3a36847f80265dd", "cast_id": 22, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 8}, {"name": "Stephen Collins", "character": "Hugh W. Sloan, Jr.", "id": 1756, "credit_id": "52fe4288c3a36847f80265e1", "cast_id": 23, "profile_path": "/eYUtj7K9pzgvARQlU8Fn4ybyGAj.jpg", "order": 9}, {"name": "Penny Fuller", "character": "Sally Aiken", "id": 13727, "credit_id": "52fe4288c3a36847f80265e5", "cast_id": 24, "profile_path": "/38dyZOWF3kkZmBz0EwI9najS3Nw.jpg", "order": 10}, {"name": "John McMartin", "character": "Scott", "id": 13728, "credit_id": "52fe4288c3a36847f80265e9", "cast_id": 25, "profile_path": "/ip8kfdqFYZ302OjN2gyxBKjyDAA.jpg", "order": 11}, {"name": "Robert Walden", "character": "Donald H. Segretti", "id": 13729, "credit_id": "52fe4288c3a36847f80265ed", "cast_id": 26, "profile_path": "/y2aZeeJt6OavPVaSz9kxhX93WTp.jpg", "order": 12}, {"name": "David Arkin", "character": "Eugene Bachinski", "id": 9808, "credit_id": "52fe4288c3a36847f80265f1", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Henry Calvert", "character": "Bernard L. Barker", "id": 13730, "credit_id": "52fe4288c3a36847f80265f5", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Nicolas Coster", "character": "Markham", "id": 13731, "credit_id": "52fe4288c3a36847f80265f9", "cast_id": 29, "profile_path": "/xg77v3immsYabbSE3WOKRAH5tt2.jpg", "order": 15}, {"name": "Richard Herd", "character": "James W. McCord, Jr.", "id": 13732, "credit_id": "52fe4288c3a36847f80265fd", "cast_id": 30, "profile_path": "/1wsn9V7kkrvD2Qr3bD1vSH2OjpK.jpg", "order": 16}, {"name": "Frank Latimore", "character": "Judge", "id": 13733, "credit_id": "52fe4288c3a36847f8026601", "cast_id": 31, "profile_path": "/dZiU5PnoSQIzgICKpKA6wft6xOU.jpg", "order": 17}, {"name": "F. Murray Abraham", "character": "Arresting Officer #1", "id": 1164, "credit_id": "551282129251415caa003233", "cast_id": 34, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 18}, {"name": "Dominic Chianese", "character": "Eugenio R. Martinez", "id": 68186, "credit_id": "5512822992514148dd001bf8", "cast_id": 35, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 19}, {"name": "John Randolph", "character": "John Mitchell (voice) (uncredited)", "id": 18649, "credit_id": "551282909251410701009255", "cast_id": 36, "profile_path": "/4mfEMVfzxPuRRcVBtcPyIXF5KoE.jpg", "order": 20}], "directors": [{"name": "Alan J. Pakula", "department": "Directing", "job": "Director", "credit_id": "52fe4288c3a36847f8026571", "profile_path": "/vzvxrcoFirt0LJb0hG0ezP64mYr.jpg", "id": 6349}], "vote_average": 7.3, "runtime": 138}, "892": {"poster_path": "/xO0DIw8PdkzKKyL1XiCQiEUkQJd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 13760640, "overview": "This bizarre surrealistic black comedy takes place in a small fictitious post-apocalyptic town where food is scarce and butcher Clapet has the macabre business of using human flesh to feed his customers. Yet when his daughter falls in love with his next slaughter victim things turn into chaos.", "video": false, "id": 892, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Delicatessen", "tagline": "A futuristic comic feast.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0101700", "adult": false, "backdrop_path": "/uaybyb5PuxIHrEhUAEnS4z4tK6H.jpg", "production_companies": [{"name": "Victoires Productions", "id": 25020}, {"name": "Constellation", "id": 25021}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique (UGC)", "id": 25022}, {"name": "Hachette Premi\u00e8re", "id": 582}, {"name": "Sofinergie Films", "id": 14755}, {"name": "Sofinergie 2", "id": 25023}, {"name": "Investimage 2", "id": 25024}, {"name": "Fondation GAN pour le Cin\u00e9ma", "id": 23677}], "release_date": "1991-04-17", "popularity": 0.694003805302192, "original_title": "Delicatessen", "budget": 4000000, "cast": [{"name": "Dominique Pinon", "character": "Louison", "id": 2413, "credit_id": "52fe4288c3a36847f8026679", "cast_id": 11, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 0}, {"name": "Marie-Laure Dougnac", "character": "Julie Clapet", "id": 13686, "credit_id": "52fe4288c3a36847f802667d", "cast_id": 12, "profile_path": "/1DPdX3LDF1ThZbrhU4dwLMg3J7K.jpg", "order": 1}, {"name": "Jean-Claude Dreyfus", "character": "Clapet (the butcher)", "id": 13687, "credit_id": "52fe4288c3a36847f8026681", "cast_id": 13, "profile_path": "/jOM2R4IViRNOnbCpm1YiPavEyw0.jpg", "order": 2}, {"name": "Karin Viard", "character": "Mademoiselle Plusse", "id": 13688, "credit_id": "52fe4288c3a36847f8026685", "cast_id": 14, "profile_path": "/aPupVACLe1oKrJrxWfPAihJhxJj.jpg", "order": 3}, {"name": "Ticky Holgado", "character": "Marcel Tapioca", "id": 13689, "credit_id": "52fe4288c3a36847f8026689", "cast_id": 15, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 4}, {"name": "Pascal Benezech", "character": "Tried to Escape", "id": 13690, "credit_id": "52fe4288c3a36847f802668d", "cast_id": 16, "profile_path": "/psv8JuKgiLIVeUmKQIYmTWZAYqs.jpg", "order": 5}, {"name": "Edith Ker", "character": "Grandmother", "id": 13691, "credit_id": "52fe4288c3a36847f8026691", "cast_id": 17, "profile_path": "/h59Fc5916WrMp41W8xjkiNfrp3w.jpg", "order": 6}, {"name": "Rufus", "character": "Robert Kube", "id": 2407, "credit_id": "52fe4288c3a36847f8026695", "cast_id": 18, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 7}, {"name": "Jacques Mathou", "character": "Roger Kube", "id": 13692, "credit_id": "52fe4288c3a36847f8026699", "cast_id": 19, "profile_path": "/aJoLui8GCSiPeswMxBgzTXriRIL.jpg", "order": 8}, {"name": "Chick Ortega", "character": "Postman", "id": 13693, "credit_id": "52fe4288c3a36847f802669d", "cast_id": 20, "profile_path": "/mkzUKpoDk7EdU1p96JkH7LSI01g.jpg", "order": 9}, {"name": "Jean-Fran\u00e7ois Perrier", "character": "Georges Interligator", "id": 13694, "credit_id": "52fe4288c3a36847f80266a1", "cast_id": 21, "profile_path": "/g8ACmmqTCFfXEye8Rs0uoEXV5NM.jpg", "order": 10}, {"name": "Silvie Laguna", "character": "Aurore Interligator", "id": 13695, "credit_id": "52fe4288c3a36847f80266a5", "cast_id": 22, "profile_path": "/rbigEHdNk1DBAgj9ge7Q1CqhdFD.jpg", "order": 11}, {"name": "Howard Vernon", "character": "Frog Man", "id": 13696, "credit_id": "52fe4288c3a36847f80266a9", "cast_id": 23, "profile_path": "/yWRuLOmMMDBpteWiZR4YKBmIB8.jpg", "order": 12}, {"name": "Dominique Zardi", "character": "Taxi Driver", "id": 13697, "credit_id": "52fe4288c3a36847f80266ad", "cast_id": 24, "profile_path": "/oOvnUGvgDX9mVxOYwkuUk1pljIV.jpg", "order": 13}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4288c3a36847f8026645", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}, {"name": "Marc Caro", "department": "Directing", "job": "Director", "credit_id": "52fe4288c3a36847f802664b", "profile_path": "/tUOvPzeZsFLjkclLks4xATX5PJC.jpg", "id": 13680}], "vote_average": 7.7, "runtime": 99}, "9086": {"poster_path": "/wlHmBfL43UvVILBmBsYvtizmueM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Only three of the original five \"young guns\" -- Billy the Kid (Emilio Estevez), Jose Chavez y Chavez (Lou Diamond Phillips), and Doc Scurlock (Kiefer Sutherland) -- return in Young Guns, Part 2, which is the story of Billy the Kid and his race to safety in Old Mexico while being trailed by a group of government agents led by Pat Garrett", "video": false, "id": 9086, "genres": [{"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "Young Guns II", "tagline": "Yoo-Hoo, I'll make ya famous!", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/whZZ13xGyCLFn21yVhQ9RXMSuKh.jpg", "poster_path": "/26Y1BApN2lOO18NX2ibEHOwbL1L.jpg", "id": 9329, "name": "Young Guns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100994", "adult": false, "backdrop_path": "/odfh1ImyLsvWxqBaTt06vAyigpP.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}], "release_date": "1990-07-30", "popularity": 0.301352650084909, "original_title": "Young Guns II", "budget": 20, "cast": [{"name": "Emilio Estevez", "character": "William H. 'Billy the Kid' Bonney", "id": 2880, "credit_id": "52fe44dac3a36847f80adf01", "cast_id": 10, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 0}, {"name": "Kiefer Sutherland", "character": "Josiah Gordon 'Doc' Scurlock", "id": 2628, "credit_id": "52fe44dac3a36847f80adf05", "cast_id": 11, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 1}, {"name": "Lou Diamond Phillips", "character": "Jose Chavez y Chavez", "id": 38560, "credit_id": "52fe44dac3a36847f80adf09", "cast_id": 12, "profile_path": "/afXcQRss7rZ6Ocx7PUQFbz7tPOm.jpg", "order": 2}, {"name": "Christian Slater", "character": "Arkansas Dave Rudabaugh", "id": 2224, "credit_id": "52fe44dac3a36847f80adf0d", "cast_id": 13, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 3}, {"name": "William Petersen", "character": "Patrick Floyd 'Pat' Garrett", "id": 52267, "credit_id": "52fe44dac3a36847f80adf11", "cast_id": 14, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 4}, {"name": "Alan Ruck", "character": "Hendry William French", "id": 2394, "credit_id": "52fe44dac3a36847f80adf15", "cast_id": 15, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 5}, {"name": "R. D. Call", "character": "D.A. Rynerson", "id": 49832, "credit_id": "52fe44dac3a36847f80adf19", "cast_id": 16, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 6}, {"name": "Balthazar Getty", "character": "Tom O'Folliard", "id": 9296, "credit_id": "52fe44dac3a36847f80adf1d", "cast_id": 17, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 7}, {"name": "Jack Kehoe", "character": "Ashmun Upson", "id": 1273, "credit_id": "52fe44dac3a36847f80adf21", "cast_id": 18, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 8}, {"name": "Robert Knepper", "character": "Deputy Carlyle", "id": 17343, "credit_id": "52fe44dac3a36847f80adf25", "cast_id": 19, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 9}, {"name": "Tom Kurlander", "character": "J.W. Bell", "id": 14706, "credit_id": "52fe44dac3a36847f80adf29", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Viggo Mortensen", "character": "John W. Poe", "id": 110, "credit_id": "52fe44dac3a36847f80adf2d", "cast_id": 21, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 11}, {"name": "Leon Rippy", "character": "Robert 'Bob' Ollinger", "id": 15374, "credit_id": "52fe44dac3a36847f80adf31", "cast_id": 22, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 12}, {"name": "Tracey Walter", "character": "Beever Smith", "id": 3801, "credit_id": "52fe44dac3a36847f80adf35", "cast_id": 23, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 13}, {"name": "Bradley Whitford", "character": "Charles Phalen", "id": 11367, "credit_id": "52fe44dac3a36847f80adf39", "cast_id": 24, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 14}, {"name": "Scott Wilson", "character": "Governor Lewis Wallace", "id": 6914, "credit_id": "52fe44dac3a36847f80adf3d", "cast_id": 25, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 15}, {"name": "James Coburn", "character": "John Simpson Chisum", "id": 5563, "credit_id": "52fe44dac3a36847f80adf41", "cast_id": 26, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 16}, {"name": "Jenny Wright", "character": "Jane Greathouse", "id": 64056, "credit_id": "52fe44dac3a36847f80adf45", "cast_id": 27, "profile_path": "/scz1dQwtwyFDej8zCAbk6p5bqdp.jpg", "order": 17}], "directors": [{"name": "Geoff Murphy", "department": "Directing", "job": "Director", "credit_id": "52fe44dac3a36847f80adecd", "profile_path": "/h9qts2xTEQyaI6ICnEcyLU69y7W.jpg", "id": 32277}], "vote_average": 6.3, "runtime": 132}, "9087": {"poster_path": "/lymPNGLZgPHuqM29rKMGV46ANij.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.", "video": false, "id": 9087, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The American President", "tagline": "Why can't the most powerful man in the world have the one thing he wants most?", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112346", "adult": false, "backdrop_path": "/wmViVyE9P0HTVU54sP3EriCmtIc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Castle Rock Entertainment", "id": 97}], "release_date": "1995-11-17", "popularity": 0.436017739943288, "original_title": "The American President", "budget": 0, "cast": [{"name": "Michael Douglas", "character": "Andrew Shepherd", "id": 3392, "credit_id": "52fe44dac3a36847f80adf79", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Annette Bening", "character": "Sydney Ellen Wade", "id": 516, "credit_id": "52fe44dac3a36847f80adf7d", "cast_id": 2, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Michael J. Fox", "character": "Lewis Rothschild", "id": 521, "credit_id": "52fe44dac3a36847f80adf81", "cast_id": 3, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 2}, {"name": "Martin Sheen", "character": "A.J. MacInerney", "id": 8349, "credit_id": "52fe44dac3a36847f80adf85", "cast_id": 4, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 3}, {"name": "Anna Deavere Smith", "character": "Robin McCall", "id": 63279, "credit_id": "52fe44dac3a36847f80adfad", "cast_id": 11, "profile_path": "/qxnkWqihNIu2FKL8UFxAfv9XfAW.jpg", "order": 4}, {"name": "Shawna Waldron", "character": "Lucy Shepherd", "id": 112080, "credit_id": "52fe44dac3a36847f80adfb1", "cast_id": 12, "profile_path": "/oWfERtTQVAhhvnzM7axvRD3lQju.jpg", "order": 5}, {"name": "Samantha Mathis", "character": "Janie Basdin", "id": 20767, "credit_id": "52fe44dac3a36847f80adfb5", "cast_id": 13, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 6}, {"name": "David Paymer", "character": "Leon Kodak", "id": 19839, "credit_id": "52fe44dac3a36847f80adfb9", "cast_id": 14, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 7}, {"name": "Richard Dreyfuss", "character": "Senator Bob Rumson", "id": 3037, "credit_id": "52fe44dac3a36847f80adfbd", "cast_id": 15, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 8}, {"name": "Nina Siemaszko", "character": "Beth Wade", "id": 42133, "credit_id": "52fe44dac3a36847f80adfc1", "cast_id": 16, "profile_path": "/htNzOMMh4Hys3EhTDWdJOlbtKpL.jpg", "order": 9}, {"name": "Wendie Malick", "character": "Susan Sloan", "id": 61980, "credit_id": "52fe44dac3a36847f80adfc5", "cast_id": 17, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 10}, {"name": "Beau Billingslea", "character": "Agent Cooper", "id": 78494, "credit_id": "52fe44dac3a36847f80adfc9", "cast_id": 18, "profile_path": "/3Ooz7bdkkSwwbzOs9SPXIXvGKYQ.jpg", "order": 11}, {"name": "Gail Strickland", "character": "Esther MacInerney", "id": 42003, "credit_id": "52fe44dac3a36847f80adfcd", "cast_id": 19, "profile_path": "/pT9Tb2f07joxd7KYPLucak7X8J0.jpg", "order": 12}, {"name": "Joshua Malina", "character": "David", "id": 131642, "credit_id": "52fe44dac3a36847f80adfd1", "cast_id": 20, "profile_path": "/me30212mRTU5zS1tI0CQ5jSidNT.jpg", "order": 13}, {"name": "Clement von Franckenstein", "character": "President Ren\u00e9 Jean D'Astier", "id": 43115, "credit_id": "52fe44dac3a36847f80adfd5", "cast_id": 21, "profile_path": "/pwpD8AxmseZOmnWXRsDErKk08Ro.jpg", "order": 14}, {"name": "John Mahoney", "character": "Leo Solomon", "id": 4251, "credit_id": "52fe44dac3a36847f80adfd9", "cast_id": 22, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 15}, {"name": "John Mahon", "character": "Chairman of the Joint Chiefs", "id": 43978, "credit_id": "52fe44dac3a36847f80adfdd", "cast_id": 23, "profile_path": null, "order": 16}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe44dac3a36847f80adf8b", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.3, "runtime": 106}, "58244": {"poster_path": "/jSPjz6sgbtGXvsKkAdb9Ucv8nUu.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 8106475, "overview": "In an alternate universe where twinned worlds have opposite gravities, a young man battles interplanetary prejudice and the laws of physics in his quest to reunite with the long-lost girl of his dreams in this visually stunning romantic adventure that poses the question: what if love was stronger than gravity?", "video": false, "id": 58244, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Upside Down", "tagline": "Two worlds. One future.", "vote_count": 415, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1374992", "adult": false, "backdrop_path": "/q4LkO5LPHGO8FGUzfZfYQYnmAjf.jpg", "production_companies": [{"name": "Studio 37", "id": 2577}], "release_date": "2012-08-23", "popularity": 1.2978374214258, "original_title": "Upside Down", "budget": 72000000, "cast": [{"name": "Kirsten Dunst", "character": "Eden", "id": 205, "credit_id": "52fe495bc3a36847f8195ebf", "cast_id": 4, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Adam", "id": 38941, "credit_id": "52fe495bc3a36847f8195ec3", "cast_id": 5, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Timothy Spall", "character": "", "id": 9191, "credit_id": "52fe495bc3a36847f8195ed7", "cast_id": 10, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 2}, {"name": "James Kidnie", "character": "Lagavullan", "id": 38565, "credit_id": "52fe495bc3a36847f8195ec7", "cast_id": 6, "profile_path": "/6JVjexvxnzyjlOjPcSVMkruGfWd.jpg", "order": 3}, {"name": "Heidi Hawkins", "character": "Reporter", "id": 101219, "credit_id": "52fe495bc3a36847f8195ecb", "cast_id": 7, "profile_path": "/7TlBzbFVi9fd5tqVqNMGGgk8fOo.jpg", "order": 4}, {"name": "Don Jordan", "character": "Host", "id": 92263, "credit_id": "52fe495bc3a36847f8195ecf", "cast_id": 8, "profile_path": "/jVzumyy0pq6QX9GRQOQ4jBFXmsr.jpg", "order": 5}, {"name": "Holly O'Brien", "character": "Paula", "id": 85168, "credit_id": "52fe495bc3a36847f8195ed3", "cast_id": 9, "profile_path": "/Mh2robi8gBfWpqZk4o5nyTwuYF.jpg", "order": 6}], "directors": [{"name": "Juan Diego Solanas", "department": "Directing", "job": "Director", "credit_id": "52fe495bc3a36847f8195eaf", "profile_path": null, "id": 52244}], "vote_average": 6.1, "runtime": 104}, "901": {"poster_path": "/kZTzat2Da2ZEVn90FNW15tIU9wQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19181, "overview": "City Lights is the first silent film that Charlie Chaplin directed after he established himself with sound accompanied films. The film is about a penniless man who falls in love with a flower girl. The film was a great success and today is deemed a cult classic.", "video": false, "id": 901, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "City Lights", "tagline": "", "vote_count": 81, "homepage": "http://www.charliechaplin.com/biography/articles/4-City-Lights", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0021749", "adult": false, "backdrop_path": "/xDmdjsQ2XVQCYUrnyZXwO7QzLd7.jpg", "production_companies": [{"name": "Charles Chaplin Productions", "id": 1315}], "release_date": "1931-01-30", "popularity": 0.820602286472542, "original_title": "City Lights", "budget": 1500000, "cast": [{"name": "Charles Chaplin", "character": "Tramp", "id": 13848, "credit_id": "52fe428ac3a36847f8026bf3", "cast_id": 11, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Virginia Cherrill", "character": "A Blind Girl", "id": 13852, "credit_id": "52fe428ac3a36847f8026bd9", "cast_id": 5, "profile_path": "/hzhEzAEFb5R0nxrqgNlgESOqExo.jpg", "order": 1}, {"name": "Florence Lee", "character": "The Blind Girl's Grandmother", "id": 13853, "credit_id": "52fe428ac3a36847f8026bdd", "cast_id": 6, "profile_path": "/eW96SJfOVw7VlE7HSuSujndKmQs.jpg", "order": 2}, {"name": "Harry Myers", "character": "An Eccentric Millionaire", "id": 13854, "credit_id": "52fe428ac3a36847f8026be1", "cast_id": 7, "profile_path": "/2jKQrcon9xkFpYLKZ9nOL5aOTld.jpg", "order": 3}, {"name": "Al Ernest Garcia", "character": "The Eccentric Millionaire's Butler", "id": 13855, "credit_id": "52fe428ac3a36847f8026be5", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Hank Mann", "character": "A Prizefighter", "id": 13856, "credit_id": "52fe428ac3a36847f8026be9", "cast_id": 9, "profile_path": null, "order": 5}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026bc9", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.8, "runtime": 87}, "902": {"poster_path": "/wO3p0lUHwg5RbapwBznCgi8nVC6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 1738611, "overview": "A scientist in a surrealist society kidnaps children to steal their dreams, hoping that they slow his aging process.", "video": false, "id": 902, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The City of Lost Children", "tagline": "Where happily ever after is just a dream.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0112682", "adult": false, "backdrop_path": "/4FnkreXkvv3Wbu5XBz5NLMTyMh4.jpg", "production_companies": [{"name": "Constellation Productions", "id": 590}, {"name": "Claudie Ossard Productions", "id": 592}], "release_date": "1995-05-16", "popularity": 0.827226521307956, "original_title": "La cit\u00e9 des enfants perdus", "budget": 18000000, "cast": [{"name": "Ron Perlman", "character": "One", "id": 2372, "credit_id": "52fe428ac3a36847f8026cdf", "cast_id": 24, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 0}, {"name": "Dominique Pinon", "character": "Scaphandrier / Les Clones", "id": 2413, "credit_id": "52fe428ac3a36847f8026ce3", "cast_id": 25, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 1}, {"name": "Judith Vittet", "character": "Miette", "id": 13842, "credit_id": "52fe428ac3a36847f8026ce7", "cast_id": 26, "profile_path": "/8jBxds9PU80J8aJhoNpDksbzUXU.jpg", "order": 2}, {"name": "Daniel Emilfork", "character": "Krank", "id": 13843, "credit_id": "52fe428ac3a36847f8026ceb", "cast_id": 27, "profile_path": "/sVPMtUDg3dTKpU4iBXCPwCc0k5j.jpg", "order": 3}, {"name": "Jean-Claude Dreyfus", "character": "Marcello", "id": 13687, "credit_id": "52fe428ac3a36847f8026cef", "cast_id": 28, "profile_path": "/jOM2R4IViRNOnbCpm1YiPavEyw0.jpg", "order": 4}, {"name": "Genevi\u00e8ve Brunet", "character": "la Pieuvre", "id": 13845, "credit_id": "52fe428ac3a36847f8026cf3", "cast_id": 29, "profile_path": "/3JER8Lahj03pjvIO4prsCBIcorq.jpg", "order": 5}, {"name": "Odile Mallet", "character": "la Pieuvre", "id": 13846, "credit_id": "52fe428ac3a36847f8026cf7", "cast_id": 30, "profile_path": "/cpYN3MV5RKnidTZ0JmN2Jf1A6q2.jpg", "order": 6}, {"name": "Mireille Moss\u00e9", "character": "Mademoiselle Bismuth", "id": 4394, "credit_id": "52fe428ac3a36847f8026cfb", "cast_id": 31, "profile_path": "/6NBOAx1hP0l423uEa2kjUsdr4UK.jpg", "order": 7}, {"name": "Serge Merlin", "character": "Gabriel Marie", "id": 2410, "credit_id": "52fe428ac3a36847f8026cff", "cast_id": 32, "profile_path": "/w07o6hg3hUxoWtgUBJ87VXilKzu.jpg", "order": 8}, {"name": "Rufus", "character": "Peeler", "id": 2407, "credit_id": "52fe428ac3a36847f8026d03", "cast_id": 33, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 9}, {"name": "Ticky Holgado", "character": "Ex-acrobat", "id": 13689, "credit_id": "52fe428ac3a36847f8026d07", "cast_id": 34, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 10}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026c6f", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}, {"name": "Marc Caro", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026d19", "profile_path": "/tUOvPzeZsFLjkclLks4xATX5PJC.jpg", "id": 13680}], "vote_average": 7.9, "runtime": 108}, "903": {"poster_path": "/3rg6PsJfQgI1kMJRK4N7Yc6OH2P.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16217773, "overview": "Luke Jackson is a cool, gutsy prisoner in a Southern chain gang who, while refusing to buckle under to authority, keeps escaping and being recaptured. Nevertheless, the camp staff actively works to crush Luke until he finally breaks.", "video": false, "id": 903, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Cool Hand Luke", "tagline": "What we've got here is failure to communicate.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061512", "adult": false, "backdrop_path": "/xRJ332EntToXGS7Wr2EZ6i96xHM.jpg", "production_companies": [{"name": "Jalem Productions", "id": 11496}], "release_date": "1967-11-01", "popularity": 0.789016050820466, "original_title": "Cool Hand Luke", "budget": 0, "cast": [{"name": "Paul Newman", "character": "Luke Jackson", "id": 3636, "credit_id": "52fe428ac3a36847f8026daf", "cast_id": 13, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "George Kennedy", "character": "Dragline", "id": 12950, "credit_id": "52fe428ac3a36847f8026db3", "cast_id": 14, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 1}, {"name": "Luke Askew", "character": "Boss Paul", "id": 8962, "credit_id": "52fe428ac3a36847f8026db7", "cast_id": 15, "profile_path": "/nlV0bfadoMjbz7vxmLl5zALc86H.jpg", "order": 2}, {"name": "Morgan Woodward", "character": "Boss Godfrey", "id": 13869, "credit_id": "52fe428ac3a36847f8026dbb", "cast_id": 16, "profile_path": "/n9eD22nE4ABPF1P3tVhkEd1xj4K.jpg", "order": 3}, {"name": "Harry Dean Stanton", "character": "Tramp", "id": 5048, "credit_id": "52fe428ac3a36847f8026dbf", "cast_id": 18, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 4}, {"name": "Dennis Hopper", "character": "Babalugats", "id": 2778, "credit_id": "52fe428ac3a36847f8026dc3", "cast_id": 19, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 5}, {"name": "Lou Antonio", "character": "Koko", "id": 13871, "credit_id": "52fe428ac3a36847f8026dc7", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Robert Drivas", "character": "Loudmouth Steve", "id": 13872, "credit_id": "52fe428ac3a36847f8026dcb", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Strother Martin", "character": "Captain", "id": 8260, "credit_id": "52fe428ac3a36847f8026dcf", "cast_id": 22, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 8}, {"name": "Jo Van Fleet", "character": "Arletta", "id": 2752, "credit_id": "52fe428ac3a36847f8026dd3", "cast_id": 23, "profile_path": "/ten759vBLpScDUP4FUSMBwQMWeE.jpg", "order": 9}, {"name": "Clifton James", "character": "Carr", "id": 10224, "credit_id": "52fe428ac3a36847f8026dd7", "cast_id": 24, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 10}, {"name": "Marc Cavell", "character": "Rabbitt", "id": 13874, "credit_id": "52fe428ac3a36847f8026ddb", "cast_id": 25, "profile_path": "/8n0TPwZioq7CbifGmiQezaZGPTz.jpg", "order": 11}, {"name": "Richard Davalos", "character": "Blind Dick", "id": 2751, "credit_id": "52fe428ac3a36847f8026ddf", "cast_id": 26, "profile_path": "/fQxCuObBh1hQ3CyTGerDHfshYFM.jpg", "order": 12}, {"name": "Robert Donner", "character": "Boss Shorty", "id": 13875, "credit_id": "52fe428ac3a36847f8026de3", "cast_id": 27, "profile_path": "/6GXjsXEC5a0BoFwq1pad5OqJ5M9.jpg", "order": 13}, {"name": "J. D. Cannon", "character": "Society Red", "id": 19106, "credit_id": "52fe428ac3a36847f8026de7", "cast_id": 28, "profile_path": "/fMtH2X3lphfTcmldSTLFSSL3oox.jpg", "order": 14}, {"name": "Joe Don Baker", "character": "Fixer", "id": 10671, "credit_id": "52fe428ac3a36847f8026df1", "cast_id": 30, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 15}, {"name": "James Gammon", "character": "Sleepy", "id": 16433, "credit_id": "52fe428ac3a36847f8026df5", "cast_id": 31, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 16}, {"name": "Chuck Hicks", "character": "Chief", "id": 25579, "credit_id": "52fe428ac3a36847f8026df9", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Rance Howard", "character": "Sheriff", "id": 22250, "credit_id": "538329e1c3a368059e0087ed", "cast_id": 35, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 18}, {"name": "James Jeter", "character": "Wickerman", "id": 79646, "credit_id": "52fe428ac3a36847f8026e01", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Joy Harmon", "character": "The Girl", "id": 153591, "credit_id": "55087cad92514110d70019b6", "cast_id": 36, "profile_path": "/9W0QJpPgOGKhX38rcc2N0zq4OLY.jpg", "order": 20}], "directors": [{"name": "Stuart Rosenberg", "department": "Directing", "job": "Director", "credit_id": "52fe428ac3a36847f8026d69", "profile_path": null, "id": 13859}], "vote_average": 7.3, "runtime": 126}, "9708": {"poster_path": "/aeQ65vYvOCRmeO0uaVnjHOiDrXZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38755073, "overview": "A sheriff investigating the disappearance of a young girl from a small island discovers there's a larger mystery to solve among the island's secretive, neo-pagan community.", "video": false, "id": 9708, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Wicker Man", "tagline": "Some sacrifices must be made", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450345", "adult": false, "backdrop_path": "/jB8p1HUXVPN1j3WaiymJ8vMLE3D.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Millennium Films", "id": 10254}, {"name": "Saturn Films", "id": 831}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG III", "id": 10885}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "Brightlight Pictures", "id": 1063}, {"name": "Wicker Man Productions", "id": 20453}], "release_date": "2006-09-01", "popularity": 0.469101748218084, "original_title": "The Wicker Man", "budget": 40000000, "cast": [{"name": "Nicolas Cage", "character": "Edward Malus", "id": 2963, "credit_id": "52fe451fc3a36847f80bdd7f", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Ellen Burstyn", "character": "Sister Summersisle", "id": 9560, "credit_id": "52fe451fc3a36847f80bdd83", "cast_id": 2, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 1}, {"name": "Kate Beahan", "character": "Sister Willow", "id": 57278, "credit_id": "52fe451fc3a36847f80bdd87", "cast_id": 3, "profile_path": "/tuaMd14ArMWImBjKf36RvVQCMYM.jpg", "order": 2}, {"name": "Frances Conroy", "character": "Dr. Moss", "id": 4432, "credit_id": "52fe451fc3a36847f80bdd8b", "cast_id": 4, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 3}, {"name": "Leelee Sobieski", "character": "Sister Honey", "id": 22290, "credit_id": "52fe451fc3a36847f80bddc5", "cast_id": 15, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 4}, {"name": "Molly Parker", "character": "Sister Rose / Sister Thorn", "id": 27125, "credit_id": "52fe4520c3a36847f80bddcf", "cast_id": 17, "profile_path": "/4IgmsXs2iu8nRdaKU0R5TOAeKeT.jpg", "order": 5}, {"name": "Diane Delano", "character": "Sister Beech", "id": 43859, "credit_id": "52fe4520c3a36847f80bddd3", "cast_id": 18, "profile_path": "/rzgAYv4C1pwwefA18LNb1ukw9FI.jpg", "order": 6}, {"name": "Michael Wiseman", "character": "Officer Pete", "id": 102710, "credit_id": "52fe4520c3a36847f80bddd7", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Erika-Shaye Gair", "character": "Rowan Woodward", "id": 962340, "credit_id": "52fe4520c3a36847f80bdddb", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Christa Campbell", "character": "Truck Stop Waitress", "id": 85178, "credit_id": "52fe4520c3a36847f80bdddf", "cast_id": 21, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 9}, {"name": "Emily Holmes", "character": "Station Wagon Mom", "id": 37979, "credit_id": "52fe4520c3a36847f80bdde3", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Matthew Walker", "character": "Sea Plane Pilot", "id": 27122, "credit_id": "52fe4520c3a36847f80bdde7", "cast_id": 23, "profile_path": "/umfHYNqAhypXwGPTRRAeN6mA4J0.jpg", "order": 11}, {"name": "Mary Black", "character": "Sister Oak", "id": 11831, "credit_id": "52fe4520c3a36847f80bddeb", "cast_id": 24, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 12}, {"name": "Christine Willes", "character": "Sister Violet", "id": 189719, "credit_id": "52fe4520c3a36847f80bddef", "cast_id": 25, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 13}, {"name": "Tania Saulnier", "character": "Attendant #1", "id": 59244, "credit_id": "52fe4520c3a36847f80bddf3", "cast_id": 26, "profile_path": "/bEMuffxifJMZkcAmZ2J9NbHehJu.jpg", "order": 14}, {"name": "James Franco", "character": "Bar Guy #1", "id": 17051, "credit_id": "52fe4520c3a36847f80bddf7", "cast_id": 27, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 15}, {"name": "Jason Ritter", "character": "Bar Guy #2", "id": 50095, "credit_id": "52fe4520c3a36847f80bddfb", "cast_id": 28, "profile_path": "/ysWVNRFfk7oGngurF7VWkWhvyQS.jpg", "order": 16}], "directors": [{"name": "Neil LaBute", "department": "Directing", "job": "Director", "credit_id": "52fe451fc3a36847f80bddcb", "profile_path": "/snHfcueBlYFinCdUoVmK9CHdZX0.jpg", "id": 58689}], "vote_average": 4.2, "runtime": 102}, "907": {"poster_path": "/lP1Mn1sQ9FiSNovCyZonhKjjkRM.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 111721910, "overview": "Doctor Zhivago is the filmed adapation of the Russian novel by Boris Pasternak from director David Lean that was an international success and today deemed a classic. Omar Sharif and Julie Christie play two protagonists who in fact love each other yet because of their current situation cannot find a way be together.", "video": false, "id": 907, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Doctor Zhivago", "tagline": "Turbulent were the times and fiery was the love story of Zhivago, his wife and the passionate, tender Lara.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0059113", "adult": false, "backdrop_path": "/evAe6OMQgRkrVWxjLktYy1tIARW.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1965-12-22", "popularity": 0.708032362079308, "original_title": "Doctor Zhivago", "budget": 14000000, "cast": [{"name": "Omar Sharif", "character": "Dr. Yuri Zhivago", "id": 5004, "credit_id": "52fe428bc3a36847f8026fdb", "cast_id": 18, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 0}, {"name": "Julie Christie", "character": "Lara Antipova", "id": 1666, "credit_id": "52fe428bc3a36847f8026fdf", "cast_id": 19, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 1}, {"name": "Geraldine Chaplin", "character": "Tonya Gromeko", "id": 400, "credit_id": "52fe428bc3a36847f8026fe3", "cast_id": 20, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 2}, {"name": "Rod Steiger", "character": "Viktor Komarovsky", "id": 522, "credit_id": "52fe428bc3a36847f8026fe7", "cast_id": 21, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 3}, {"name": "Alec Guinness", "character": "Gen. Yevgraf Zhivago", "id": 12248, "credit_id": "52fe428bc3a36847f8026feb", "cast_id": 22, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 4}, {"name": "Tom Courtenay", "character": "Pasha", "id": 14011, "credit_id": "52fe428bc3a36847f8026fef", "cast_id": 23, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 5}, {"name": "Siobh\u00e1n McKenna", "character": "Anna", "id": 14012, "credit_id": "52fe428bc3a36847f8026ff3", "cast_id": 24, "profile_path": "/bbP62i8GVXnt3Uc1C34DtyzCpz8.jpg", "order": 6}, {"name": "Ralph Richardson", "character": "Alexander Gromeko", "id": 12689, "credit_id": "52fe428bc3a36847f8026ff7", "cast_id": 25, "profile_path": "/8S6qfDifOU0zbRXsZmxxVJ6i22.jpg", "order": 7}, {"name": "G\u00e9rard Tichy", "character": "Liberius", "id": 14014, "credit_id": "52fe428bc3a36847f8026ffb", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Noel Willman", "character": "Razin, Liberius' Lieutenant", "id": 14015, "credit_id": "52fe428bc3a36847f8026fff", "cast_id": 27, "profile_path": "/7hJIwQieLVSqRglQjVkOZff3jeT.jpg", "order": 9}, {"name": "Jack MacGowran", "character": "Petya", "id": 14016, "credit_id": "52fe428bc3a36847f8027003", "cast_id": 28, "profile_path": "/kzh0Gmhp0MG57kfXsqkTPH8LyTr.jpg", "order": 10}, {"name": "Mark Eden", "character": "Engineer at dam", "id": 14017, "credit_id": "52fe428bc3a36847f8027007", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Erik Chitty", "character": "Sergei", "id": 14018, "credit_id": "52fe428bc3a36847f802700b", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Klaus Kinski", "character": "Kostoyed Amourski", "id": 14277, "credit_id": "52fe428bc3a36847f8027015", "cast_id": 32, "profile_path": "/7gsJB7xlovz1khNID0B8yKA9TO0.jpg", "order": 13}], "directors": [{"name": "David Lean", "department": "Directing", "job": "Director", "credit_id": "52fe428bc3a36847f8026f77", "profile_path": "/iUTtDo1gl0Phe342xxoPq2w643R.jpg", "id": 12238}], "vote_average": 7.0, "runtime": 197}, "9100": {"poster_path": "/5QoAIazIjidUcnD4Vggvmvg42NW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24769466, "overview": "A Catholic school newcomer falls in with a clique of teen witches who wield their powers against all who dare to cross them -- be they teachers, rivals or meddlesome parents.", "video": false, "id": 9100, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Craft", "tagline": "Welcome to the witching hour.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115963", "adult": false, "backdrop_path": "/doMoN3efVN4NefceDtLVY8879fR.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1996-05-03", "popularity": 0.510181103198104, "original_title": "The Craft", "budget": 15000000, "cast": [{"name": "Fairuza Balk", "character": "Nancy Downs", "id": 826, "credit_id": "52fe44dcc3a36847f80ae431", "cast_id": 1, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 0}, {"name": "Neve Campbell", "character": "Bonnie", "id": 9206, "credit_id": "52fe44dcc3a36847f80ae435", "cast_id": 2, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 1}, {"name": "Robin Tunney", "character": "Sarah Bailey", "id": 17346, "credit_id": "52fe44dcc3a36847f80ae439", "cast_id": 3, "profile_path": "/oQGr5vfYbkarmJQmhGmSpIhSapL.jpg", "order": 2}, {"name": "Rachel True", "character": "Rochelle", "id": 19222, "credit_id": "52fe44dcc3a36847f80ae43d", "cast_id": 4, "profile_path": "/cVN934tgQcX5ZMHNBFLZpw2fNCH.jpg", "order": 3}, {"name": "Skeet Ulrich", "character": "Chris Hooker", "id": 22108, "credit_id": "52fe44dcc3a36847f80ae441", "cast_id": 5, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 4}, {"name": "Christine Taylor", "character": "Laura Lizzie", "id": 15286, "credit_id": "52fe44dcc3a36847f80ae445", "cast_id": 6, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 5}, {"name": "Breckin Meyer", "character": "Mitt", "id": 33654, "credit_id": "52fe44dcc3a36847f80ae473", "cast_id": 14, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 6}, {"name": "Nathaniel Marston", "character": "Trey", "id": 211998, "credit_id": "52fe44dcc3a36847f80ae477", "cast_id": 15, "profile_path": "/q9r3UyrRKWdHTkx8WzO5BT0fS8S.jpg", "order": 7}, {"name": "Cliff DeYoung", "character": "Mr. Bailey", "id": 44301, "credit_id": "52fe44dcc3a36847f80ae47b", "cast_id": 16, "profile_path": "/ut5RFMqeVDxyTJ5YP2J9DbzEh4V.jpg", "order": 8}, {"name": "Assumpta Serna", "character": "Lirio", "id": 42123, "credit_id": "52fe44dcc3a36847f80ae47f", "cast_id": 17, "profile_path": "/7xIaDr5TcMaWmuvqUXDzCYK2e8S.jpg", "order": 9}, {"name": "Helen Shaver", "character": "Grace Downs", "id": 4160, "credit_id": "52fe44dcc3a36847f80ae483", "cast_id": 18, "profile_path": "/a9ODBCPAkAolT4QWhuMUlFNAUIL.jpg", "order": 10}, {"name": "Jeanine Jackson", "character": "Jenny", "id": 152355, "credit_id": "52fe44dcc3a36847f80ae487", "cast_id": 19, "profile_path": "/aTPsYoKNIZFZKche4OGOPoyd639.jpg", "order": 11}, {"name": "Brenda Strong", "character": "Doctor", "id": 101396, "credit_id": "52fe44dcc3a36847f80ae48b", "cast_id": 20, "profile_path": "/pxHEpBiAdflsjkXWuC0goC2FBef.jpg", "order": 12}, {"name": "Endre Hules", "character": "Monsieur Thepot", "id": 43461, "credit_id": "52fe44dcc3a36847f80ae48f", "cast_id": 21, "profile_path": "/cmxqIcfikG6rr5ag45ZkhYMP51Z.jpg", "order": 13}], "directors": [{"name": "Andrew Fleming", "department": "Directing", "job": "Director", "credit_id": "52fe44dcc3a36847f80ae46f", "profile_path": "/dV6ZxTxkbO0OOTL8b5C4Vb0JovH.jpg", "id": 41549}], "vote_average": 6.3, "runtime": 101}, "2758": {"poster_path": "/zEwEXGDvJ8Ou2s6XbLMPvMTX53S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48919043, "overview": "Siblings Wednesday and Pugsley Addams will stop at nothing to get rid of Pubert, the new baby boy adored by parents Gomez and Morticia. Things go from bad to worse when the new \"black widow\" nanny, Debbie Jellinsky, launches her plan to add Fester to her collection of dead husbands.", "video": false, "id": 2758, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Addams Family Values", "tagline": "The Family Just Got A Little Stranger", "vote_count": 97, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gS5yZLrSJ6uNbsz17xoxf70X2Ws.jpg", "poster_path": "/iqAjYCir8x2fc8eeQ2k4qZqOMP1.jpg", "id": 11716, "name": "Addams Family Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106220", "adult": false, "backdrop_path": "/i84FfYcljpH9FOO26PdvBWzLGRl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Orion Pictures", "id": 41}], "release_date": "1993-11-19", "popularity": 0.687180377821533, "original_title": "Addams Family Values", "budget": 0, "cast": [{"name": "Joan Cusack", "character": "Debbie Jellinsky", "id": 3234, "credit_id": "52fe436ac3a36847f8052a19", "cast_id": 1, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 0}, {"name": "Anjelica Huston", "character": "Morticia Addams", "id": 5657, "credit_id": "52fe436ac3a36847f8052a1d", "cast_id": 2, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 1}, {"name": "Ra\u00fal Juli\u00e1", "character": "Gomez Addams", "id": 27888, "credit_id": "52fe436ac3a36847f8052a21", "cast_id": 3, "profile_path": "/nr6Vm3KVdwzIADFThKQhG3uTRfJ.jpg", "order": 2}, {"name": "Christopher Lloyd", "character": "Uncle Fester Addams", "id": 1062, "credit_id": "52fe436ac3a36847f8052a25", "cast_id": 4, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 3}, {"name": "Christina Ricci", "character": "Wednesday Addams", "id": 6886, "credit_id": "52fe436ac3a36847f8052a29", "cast_id": 5, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 4}, {"name": "Carel Struycken", "character": "Lurch", "id": 9631, "credit_id": "52fe436ac3a36847f8052a2d", "cast_id": 6, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 5}, {"name": "Harriet Sansom Harris", "character": "Ellen Buckman", "id": 538, "credit_id": "52fe436ac3a36847f8052a79", "cast_id": 19, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 6}, {"name": "Julie Halston", "character": "Mrs. Glicker", "id": 57552, "credit_id": "52fe436ac3a36847f8052a7d", "cast_id": 20, "profile_path": "/uIRC2QqBCKwHVCcXl564a4FYPRe.jpg", "order": 7}, {"name": "Barry Sonnenfeld", "character": "Mr. Glicker", "id": 5174, "credit_id": "52fe436ac3a36847f8052a81", "cast_id": 21, "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "order": 8}, {"name": "Jimmy Workman", "character": "Pugsley Addams", "id": 119866, "credit_id": "52fe436ac3a36847f8052a85", "cast_id": 22, "profile_path": "/si15LijCxnGCSbjle6zIiUC4LE9.jpg", "order": 9}, {"name": "Peter MacNicol", "character": "Gary Granger", "id": 12688, "credit_id": "54dfb357925141194b004179", "cast_id": 25, "profile_path": "/ekL1Ko8DLp0ketkwRPr4DoDBfq4.jpg", "order": 10}, {"name": "Carol Kane", "character": "Granny", "id": 10556, "credit_id": "54dfb370c3a368537a00379c", "cast_id": 26, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 11}, {"name": "Christine Baranski", "character": "Becky Martin-Granger", "id": 11870, "credit_id": "54dfb3b8c3a368454d003fc2", "cast_id": 27, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 12}, {"name": "Mercedes McNab", "character": "Amanda Buckman", "id": 123149, "credit_id": "54dfb3d4c3a3685446003243", "cast_id": 28, "profile_path": "/6lZx80GFjfkBbjeKEZoe1261uNs.jpg", "order": 13}, {"name": "Sam McMurray", "character": "Don Buckman", "id": 5176, "credit_id": "54dfb3e6c3a368537a0037a2", "cast_id": 29, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 14}, {"name": "Nathan Lane", "character": "Desk Sergeant", "id": 78729, "credit_id": "54dfb4399251411950003dc1", "cast_id": 30, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 15}, {"name": "David Hyde Pierce", "character": "Delivery Room Doctor", "id": 11076, "credit_id": "54dfb45cc3a36855c7001c59", "cast_id": 31, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 16}, {"name": "Tony Shalhoub", "character": "Jorge", "id": 4252, "credit_id": "54dfb478c3a368537a0037a8", "cast_id": 32, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 17}, {"name": "Peter Graves", "character": "Host", "id": 9111, "credit_id": "54dfb49f9251411956004030", "cast_id": 33, "profile_path": "/sR9B0mE399EGI9aRxMbWMpk2GKT.jpg", "order": 18}, {"name": "Cynthia Nixon", "character": "Heather", "id": 38024, "credit_id": "54dfb4b9925141454f00197f", "cast_id": 34, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 19}, {"name": "John Franklin", "character": "Cousin Itt", "id": 66986, "credit_id": "54dfb4edc3a3684541004729", "cast_id": 35, "profile_path": "/3IZAPwKfnn4XwtXBBn4PHRisdRf.jpg", "order": 20}, {"name": "David Krumholtz", "character": "Joel Glicker", "id": 38582, "credit_id": "54dfbfc2925141195a003bf1", "cast_id": 36, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 21}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f8052a33", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.3, "runtime": 94}, "913": {"poster_path": "/jpRUaqNuQInXxdsLIncGJW5u3u2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124305181, "overview": "A very rich and successful playboy amuses himself by stealing artwork, but may have met his match in a seductive detective.", "video": false, "id": 913, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Thomas Crown Affair", "tagline": "Crime does pay. Handsomely.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0155267", "adult": false, "backdrop_path": "/wnm7ySqYugSMhu4wTdMbkueqNHP.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Irish Dreamtime", "id": 597}], "release_date": "1999-08-06", "popularity": 1.11331075044105, "original_title": "The Thomas Crown Affair", "budget": 48000000, "cast": [{"name": "Pierce Brosnan", "character": "Thomas Crown", "id": 517, "credit_id": "52fe428cc3a36847f80273bd", "cast_id": 16, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Rene Russo", "character": "Catherine Banning", "id": 14343, "credit_id": "52fe428cc3a36847f80273c1", "cast_id": 17, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 1}, {"name": "Denis Leary", "character": "Michael McCann", "id": 5724, "credit_id": "52fe428cc3a36847f80273c5", "cast_id": 18, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Ben Gazzara", "character": "Andrew Wallace", "id": 856, "credit_id": "52fe428cc3a36847f80273c9", "cast_id": 19, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 3}, {"name": "Frankie Faison", "character": "Detective Paretti", "id": 13936, "credit_id": "52fe428cc3a36847f80273cd", "cast_id": 20, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 4}, {"name": "Fritz Weaver", "character": "John Reynolds", "id": 6839, "credit_id": "52fe428cc3a36847f80273d1", "cast_id": 21, "profile_path": "/bUEX09s2t9vMN3Z5IHchpfxpijU.jpg", "order": 5}, {"name": "Charles Keating", "character": "Friedrich Golchan", "id": 13937, "credit_id": "52fe428cc3a36847f80273d5", "cast_id": 22, "profile_path": "/c2vPVQidD2pf77iiTwgDcIGGQaP.jpg", "order": 6}, {"name": "Mark Margolis", "character": "Heinrich Knutzhorn", "id": 1173, "credit_id": "52fe428cc3a36847f80273d9", "cast_id": 23, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 7}, {"name": "Faye Dunaway", "character": "The Psychiatrist", "id": 6450, "credit_id": "52fe428cc3a36847f80273dd", "cast_id": 24, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 8}, {"name": "Michael Lombard", "character": "Bobby McKinley", "id": 13938, "credit_id": "52fe428cc3a36847f80273e1", "cast_id": 25, "profile_path": "/3VeGqcvQzJF9Xrl6eXOCoDosS28.jpg", "order": 9}, {"name": "Ritchie Coster", "character": "Janos", "id": 13939, "credit_id": "52fe428cc3a36847f80273e5", "cast_id": 26, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 10}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe428cc3a36847f8027365", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.6, "runtime": 113}, "914": {"poster_path": "/i9rN9JPbTHplRa9OLEwcymUAKvb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Chaplin plays two totally opposite roles in his first \"talkie,\" giving a superb display of his boundless talent for both inspired comedy and powerful drama. One of his masterfully drawn characters is a Jewish barber facing the constant threat of storm troopers and religious persecution. The other is the great dictator, Hynkel, a brilliant lampoon of Adolph Hitler that is awesome proof of Chaplin's pantomime genius. The movie's famous highlight comes in its final scene, when Chaplin steps out of character and addresses the camera with an eloquent plea for the triumph of reason and humanity over mindless militarism.", "video": false, "id": 914, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Great Dictator", "tagline": "Once again - the whole world laughs!", "vote_count": 199, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "eo", "name": ""}], "imdb_id": "tt0032553", "adult": false, "backdrop_path": "/qkpsvso2neEr7v6YnyMoZtm6R9F.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1940-10-15", "popularity": 1.14950119620054, "original_title": "The Great Dictator", "budget": 2000000, "cast": [{"name": "Charles Chaplin", "character": "Hynkel - Dictator of Tomania / A Jewish Barber", "id": 13848, "credit_id": "52fe428cc3a36847f802746f", "cast_id": 13, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Jack Oakie", "character": "Benzini Napaloni", "id": 14028, "credit_id": "52fe428cc3a36847f8027477", "cast_id": 16, "profile_path": "/rSo16WdKISZTAZwffjdQTBO26DU.jpg", "order": 1}, {"name": "Reginald Gardiner", "character": "Commander Schultz", "id": 14029, "credit_id": "52fe428cc3a36847f802747b", "cast_id": 17, "profile_path": "/vQAyaZ5vC7madXSfOST0KzhbA6V.jpg", "order": 2}, {"name": "Henry Daniell", "character": "Garbitsch", "id": 10924, "credit_id": "52fe428cc3a36847f802747f", "cast_id": 18, "profile_path": "/ciLKakcCO4oQhdHTgzSkSBiwoCj.jpg", "order": 3}, {"name": "Billy Gilbert", "character": "Field Marshal Herring", "id": 5464, "credit_id": "52fe428cc3a36847f8027483", "cast_id": 19, "profile_path": "/pITSLDLWwStge8KwizNn2VZdN9c.jpg", "order": 4}, {"name": "Paul Weigel", "character": "Mr. Agar", "id": 14035, "credit_id": "52fe428cc3a36847f8027497", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Paulette Goddard", "character": "Hannah", "id": 14027, "credit_id": "52fe428cc3a36847f8027473", "cast_id": 15, "profile_path": "/jxAbHtod2vVi2kUj0gp3sCzUYRe.jpg", "order": 7}, {"name": "Grace Hayle", "character": "Madame Napaloni", "id": 14030, "credit_id": "52fe428cc3a36847f8027487", "cast_id": 20, "profile_path": "/3eWM3xwJCDp9N7vPHDhmHyJEdr.jpg", "order": 7}, {"name": "Maurice Moscovitch", "character": "Mr. Jaeckel", "id": 14032, "credit_id": "52fe428cc3a36847f802748b", "cast_id": 22, "profile_path": "/3VQTkMxXBkokwfXjopZZ2cCVgng.jpg", "order": 9}, {"name": "Emma Dunn", "character": "Mrs. Jaeckel", "id": 14033, "credit_id": "52fe428cc3a36847f802748f", "cast_id": 23, "profile_path": "/7B8QY17B600Er0DoGExWylHwOIL.jpg", "order": 10}, {"name": "Bernard Gorcey", "character": "Mr. Mann", "id": 14034, "credit_id": "52fe428cc3a36847f8027493", "cast_id": 24, "profile_path": "/henaZBBlUuxie4h871P9IVv1lY1.jpg", "order": 11}, {"name": "Carter DeHaven", "character": "Spook", "id": 14019, "credit_id": "52fe428cc3a36847f802749b", "cast_id": 26, "profile_path": "/89XdqJFwpfMr0IpPuyjwQGlqPFR.jpg", "order": 12}, {"name": "Eddie Gribbon", "character": "Tomanian Storm Trooper", "id": 141586, "credit_id": "52fe428cc3a36847f802749f", "cast_id": 27, "profile_path": "/xYwn3UIHuH8peGuTI5lzTNt5sOm.jpg", "order": 13}, {"name": "Rudolph Anders", "character": "Tomanian Commandant at Osterlich / Robert O. Davis", "id": 131045, "credit_id": "52fe428cc3a36847f80274a3", "cast_id": 28, "profile_path": "/y0ZxIY3A2fqg1U4FH8zDtFmvIMf.jpg", "order": 14}, {"name": "Nita Pike", "character": "Secretary", "id": 141587, "credit_id": "52fe428cc3a36847f80274a7", "cast_id": 29, "profile_path": "/6hMBNEOeKnyPH6zP27o7hNgt7Un.jpg", "order": 15}, {"name": "George Lynn", "character": "Commander of Storm Troopers (as Peter Lynn", "id": 31263, "credit_id": "52fe428cc3a36847f80274ab", "cast_id": 30, "profile_path": "/hDMeMn4yHw0TAGR02XIHGkjCuIC.jpg", "order": 16}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe428cc3a36847f8027429", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.8, "runtime": 125}, "11075": {"poster_path": "/mrK8hwRqaR1lveGoIcBICBqdmTG.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Seven years after the death of his wife, company executive Aoyama is invited to sit in on auditions for an actress. Leafing through the resum\u00e9s in advance, his eye is caught by Yamazaki Asami, a striking young woman with ballet training.", "video": false, "id": 11075, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Audition", "tagline": "She always gets a part", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0235198", "adult": false, "backdrop_path": "/erYnALHXFCzDwIDFthyOoGiLfsg.jpg", "production_companies": [{"name": "Basara Pictures", "id": 17337}, {"name": "Creators Company Connection", "id": 17338}, {"name": "Omega Project", "id": 1195}], "release_date": "1999-10-06", "popularity": 0.507789648003467, "original_title": "\u00d4dishon", "budget": 0, "cast": [{"name": "Ryo Ishibashi", "character": "Shigeharu Aoyama", "id": 4994, "credit_id": "52fe43f29251416c75023d6f", "cast_id": 1, "profile_path": "/aPyICNQIlt0kUlIbXSQ21bK2mo2.jpg", "order": 0}, {"name": "Eihi Shiina", "character": "Asami Yamazaki", "id": 57455, "credit_id": "52fe43f29251416c75023d73", "cast_id": 2, "profile_path": "/tL5Ynx96zJH4WGBSbeKSEs3VJiD.jpg", "order": 1}, {"name": "Jun Kunimura", "character": "Yasuhisa Yoshikawa", "id": 2541, "credit_id": "52fe43f29251416c75023d7b", "cast_id": 4, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 2}, {"name": "Tetsu Sawaki", "character": "Shigehiko Aoyama", "id": 68111, "credit_id": "52fe43f29251416c75023d77", "cast_id": 3, "profile_path": "/rLZDim09AVPm4hSUGCT4rghHRni.jpg", "order": 3}, {"name": "Renji Ishibashi", "character": "Old man in wheelchair", "id": 63706, "credit_id": "52fe43f29251416c75023da3", "cast_id": 12, "profile_path": "/tlUN7bFXEJfRwQUhYsVCXV6hY8V.jpg", "order": 4}, {"name": "Miyuki Matsuda", "character": "Ryoko Aoyama", "id": 1171071, "credit_id": "52fe43f29251416c75023da7", "cast_id": 13, "profile_path": "/inU6MHJbvJQ7ZeHvlkmFERAvGRt.jpg", "order": 5}, {"name": "Toshie Negishi", "character": "Rie", "id": 72606, "credit_id": "52fe43f29251416c75023dab", "cast_id": 14, "profile_path": "/3Lix7k6g5dpMjGoaigbNar64wNG.jpg", "order": 6}, {"name": "Shigeru Saiki", "character": "Toastmaster", "id": 1089922, "credit_id": "52fe43f29251416c75023daf", "cast_id": 16, "profile_path": "/a7rGyP2UD0coLh8e77K1mSSD3vt.jpg", "order": 7}, {"name": "Ken Mitsuishi", "character": "Director", "id": 120351, "credit_id": "52fe43f29251416c75023db3", "cast_id": 17, "profile_path": "/qdUdKjaT2Ho20JoB5ChnfnReN8z.jpg", "order": 8}, {"name": "Yuriko Hiro'oka", "character": "Michiyo Yanagida", "id": 551590, "credit_id": "52fe43f29251416c75023db7", "cast_id": 18, "profile_path": "/zWNwenNgNz95UDnCorHu4QyssK5.jpg", "order": 9}, {"name": "Ren Osugi", "character": "Shimada", "id": 137029, "credit_id": "52fe43f29251416c75023dbb", "cast_id": 20, "profile_path": "/cQ8Q7RB5onATWkbZioR2obrom2l.jpg", "order": 10}, {"name": "Kanji Tsuda", "character": "Bartender", "id": 13256, "credit_id": "54b7013b9251411d77000807", "cast_id": 25, "profile_path": "/5SF6Pb7axi78uknOGWB0eF4Beam.jpg", "order": 11}, {"name": "Fumiyo Kohinata", "character": "", "id": 58449, "credit_id": "54b7015e9251411d7700080c", "cast_id": 26, "profile_path": "/teFV6aTKiwatagFYvr5RAk7xB90.jpg", "order": 12}, {"name": "Tomomi Maruyama", "character": "", "id": 1059930, "credit_id": "54b701769251411d64000839", "cast_id": 27, "profile_path": null, "order": 13}], "directors": [{"name": "Takashi Miike", "department": "Directing", "job": "Director", "credit_id": "52fe43f29251416c75023d81", "profile_path": "/hFpUsxCjrZNiyHAGsIPWlZl2uTI.jpg", "id": 17282}], "vote_average": 6.9, "runtime": 115}, "916": {"poster_path": "/mOelcQTDAlOTLMsXGgK74ksoS3H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42300873, "overview": "Bullitt is an American action thriller from director Peter Yates from 1968. Steven Mcqueen plays the leading role as a mafia-chasing police officer who must protect a valuable witness. The film\u2019s ten minute high speed pursuit is legendary.", "video": false, "id": 916, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Bullitt", "tagline": "There are bad cops, good cops - and then there's Bullitt.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0062765", "adult": false, "backdrop_path": "/h7wpg5eYpSAWTB7K3GEccNWjTEm.jpg", "production_companies": [{"name": "Solar Productions", "id": 599}, {"name": "Warner Brothers/Seven Arts", "id": 4051}], "release_date": "1968-10-17", "popularity": 0.333132803327995, "original_title": "Bullitt", "budget": 0, "cast": [{"name": "Steve McQueen", "character": "Lt. Frank Bullit", "id": 13565, "credit_id": "52fe428cc3a36847f8027555", "cast_id": 18, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 0}, {"name": "Jacqueline Bisset", "character": "Cathy", "id": 14061, "credit_id": "52fe428cc3a36847f802755d", "cast_id": 20, "profile_path": "/9z1cG9fLoj0hEcYjrpb0rrNQaVh.jpg", "order": 1}, {"name": "Robert Vaughn", "character": "Walter Chalmers", "id": 14060, "credit_id": "52fe428cc3a36847f8027559", "cast_id": 19, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 2}, {"name": "Don Gordon", "character": "Delgetti", "id": 14062, "credit_id": "52fe428cc3a36847f8027561", "cast_id": 21, "profile_path": "/oSX1fJ1PY7RzOelwratXJX7kVTQ.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Weissberg", "id": 3087, "credit_id": "52fe428cc3a36847f8027565", "cast_id": 22, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Simon Oakland", "character": "Captain Sam Bennett", "id": 14063, "credit_id": "52fe428cc3a36847f8027569", "cast_id": 23, "profile_path": "/frbQBmieMRcdAKupAIbJ0FsHuD2.jpg", "order": 5}, {"name": "Norman Fell", "character": "Captain Baker", "id": 14064, "credit_id": "52fe428cc3a36847f802756d", "cast_id": 24, "profile_path": "/dRXygz30GtDPswkF59iJUSJCBT7.jpg", "order": 6}, {"name": "Georg Stanford Brown", "character": "Dr. Willard", "id": 14065, "credit_id": "52fe428cc3a36847f8027571", "cast_id": 25, "profile_path": "/vvPXgJ1BzPJiSuSuBe3dlJcxErN.jpg", "order": 7}, {"name": "Justin Tarr", "character": "Eddy", "id": 14066, "credit_id": "52fe428cc3a36847f8027575", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Carl Reindel", "character": "Detective Stanton", "id": 14067, "credit_id": "52fe428cc3a36847f8027579", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Felice Orlandi", "character": "Albert E. Renick", "id": 14068, "credit_id": "52fe428cc3a36847f802757d", "cast_id": 28, "profile_path": "/uh1gUkBeBUK4ch002jylSf4HuJl.jpg", "order": 10}, {"name": "Vic Tayback", "character": "Pete Ross", "id": 14069, "credit_id": "52fe428cc3a36847f8027581", "cast_id": 29, "profile_path": "/rddNsgbWGeYckB9IB0i2s8uQdv5.jpg", "order": 11}], "directors": [{"name": "Peter Yates", "department": "Directing", "job": "Director", "credit_id": "52fe428cc3a36847f80274f7", "profile_path": "/atHt3wMKu4em65WIBdKOrF8QGlS.jpg", "id": 12804}], "vote_average": 6.8, "runtime": 113}, "920": {"poster_path": "/xi7KxnMSQzlqyCyCrXFJUJFdtxm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 461983149, "overview": "Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.", "video": false, "id": 920, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cars", "tagline": "Ahhh... it's got that new movie smell.", "vote_count": 1502, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/cars/", "belongs_to_collection": {"backdrop_path": "/A8DqaTGwZ8iCEjWMNRsZumzfKLw.jpg", "poster_path": "/uq3N2SFj1Y06zA6LzCQPkmBdaaE.jpg", "id": 87118, "name": "Cars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt0317219", "adult": false, "backdrop_path": "/a1MlbLBk5Sy6YvMbSuKfwGlDVlb.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-06-08", "popularity": 2.15883476243504, "original_title": "Cars", "budget": 120000000, "cast": [{"name": "Owen Wilson", "character": "Lightning McQueen (voice)", "id": 887, "credit_id": "52fe428dc3a36847f80277e9", "cast_id": 13, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Paul Newman", "character": "Doc Hudson (voice)", "id": 3636, "credit_id": "52fe428dc3a36847f80277ed", "cast_id": 14, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 1}, {"name": "Bonnie Hunt", "character": "Sally Carrera (voice)", "id": 5149, "credit_id": "52fe428dc3a36847f80277f1", "cast_id": 15, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 2}, {"name": "Larry the Cable Guy", "character": "Mater (voice)", "id": 15897, "credit_id": "52fe428dc3a36847f80277f5", "cast_id": 16, "profile_path": "/9yGwJBveIvLidqJEQI4PRuKQhMr.jpg", "order": 3}, {"name": "Cheech Marin", "character": "Ramone (voice)", "id": 11159, "credit_id": "52fe428dc3a36847f80277f9", "cast_id": 17, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 4}, {"name": "Tony Shalhoub", "character": "Luigi (voice)", "id": 4252, "credit_id": "52fe428dc3a36847f80277fd", "cast_id": 18, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 5}, {"name": "Guido Quaroni", "character": "Guido (voice)", "id": 15898, "credit_id": "52fe428dc3a36847f8027801", "cast_id": 19, "profile_path": "/qfnm3XzrMljLhU3HoNfYk0YGoBw.jpg", "order": 6}, {"name": "Jenifer Lewis", "character": "Flo (voice)", "id": 15899, "credit_id": "52fe428dc3a36847f8027805", "cast_id": 20, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 7}, {"name": "Paul Dooley", "character": "Sarge (voice)", "id": 15900, "credit_id": "52fe428dc3a36847f8027809", "cast_id": 21, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 8}, {"name": "Michael Wallis", "character": "Sheriff (voice)", "id": 15902, "credit_id": "52fe428dc3a36847f802780d", "cast_id": 22, "profile_path": "/4LuttJxXdNZgSDPeY0IOaczfajj.jpg", "order": 9}, {"name": "George Carlin", "character": "Fillmore (voice)", "id": 15903, "credit_id": "52fe428dc3a36847f8027811", "cast_id": 23, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 10}, {"name": "Katherine Helmond", "character": "Lizzie (voice)", "id": 381, "credit_id": "52fe428dc3a36847f8027815", "cast_id": 24, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 11}, {"name": "John Ratzenberger", "character": "Mack / Hamm Truck / Abominable Snow Plow (voice)", "id": 7907, "credit_id": "52fe428dc3a36847f8027819", "cast_id": 25, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 12}, {"name": "Michael Keaton", "character": "Chick Hicks (voice)", "id": 2232, "credit_id": "52fe428dc3a36847f8027823", "cast_id": 29, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 13}, {"name": "Joe Ranft", "character": "Red / Jerry Recycled Batteries / Peterbilt (voice)", "id": 7911, "credit_id": "550b9e4e9251414691002a57", "cast_id": 40, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 14}, {"name": "Richard Petty", "character": "The King (voice)", "id": 1229705, "credit_id": "550b9ff99251414695002bbe", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Jeremy Clarkson", "character": "Harv (voice)", "id": 81113, "credit_id": "550ba03b9251413443000882", "cast_id": 42, "profile_path": "/ooqOfHp6G44n2GIduhA43BKfXbb.jpg", "order": 16}, {"name": "Jeremy Piven", "character": "Harv (voice)", "id": 12799, "credit_id": "550ba07a9251414695002bcb", "cast_id": 43, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 17}, {"name": "Bob Costas", "character": "Bob Cutlass (voice)", "id": 160042, "credit_id": "550ba0d492514146a0002a08", "cast_id": 44, "profile_path": "/fJ6N8FzKQ0bd57rNJSJCSvrRFO8.jpg", "order": 18}, {"name": "Darrell Waltrip", "character": "Darrell Cartrip (voice)", "id": 942993, "credit_id": "550ba1039251414699002a6e", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Richard Kind", "character": "Van (voice)", "id": 21125, "credit_id": "550ba142c3a3687c1100085b", "cast_id": 46, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 20}, {"name": "Edie McClurg", "character": "Minny (voice)", "id": 3202, "credit_id": "550ba17892514133c3000946", "cast_id": 47, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 21}, {"name": "Humpy Wheeler", "character": "Tex (voice)", "id": 1442427, "credit_id": "550ba1b7c3a368487d002de6", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "Tom Magliozzi", "character": "Rusty Rust-eze (voice)", "id": 933947, "credit_id": "550ba2269251414695002c08", "cast_id": 49, "profile_path": "/xRi01zAHlwvZp80EGhQoU5QPDak.jpg", "order": 23}, {"name": "Ray Magliozzi", "character": "Dusty Rust-eze (voice)", "id": 933948, "credit_id": "550ba25bc3a3684872002e4f", "cast_id": 50, "profile_path": "/6uKmbD5iXSyn1oVRljHouW1Qt3x.jpg", "order": 24}, {"name": "Lynda Petty", "character": "Mrs. The King (voice)", "id": 1442428, "credit_id": "550ba27a92514146a0002a3a", "cast_id": 51, "profile_path": null, "order": 25}, {"name": "Andrew Stanton", "character": "Fred (voice)", "id": 7, "credit_id": "550ba2b4c3a3687c11000889", "cast_id": 52, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 26}, {"name": "Dale Earnhardt Jr.", "character": "Junior (voice)", "id": 932721, "credit_id": "550ba3ab92514146a0002a57", "cast_id": 53, "profile_path": null, "order": 27}, {"name": "Michael Schumacher", "character": "Michael Schumacher Ferrari (voice)", "id": 216299, "credit_id": "550ba3efc3a3684883002dfa", "cast_id": 54, "profile_path": "/x3tFUWZiUNh5TdIzQ0nWfBeGJvB.jpg", "order": 28}, {"name": "Jay Leno", "character": "Jay Limo (voice)", "id": 14991, "credit_id": "550ba4dfc3a3684874002f93", "cast_id": 55, "profile_path": "/5sh6KGewnyzNBrvXMsLVKJPVptx.jpg", "order": 29}, {"name": "Mario Andretti", "character": "Mario Andretti (voice)", "id": 1293265, "credit_id": "550d9e4b9251414699005bad", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Sarah Clark", "character": "Kori Turbowitz (voice)", "id": 1443286, "credit_id": "550d9e97c3a3684877005d16", "cast_id": 57, "profile_path": null, "order": 31}, {"name": "Mike Nelson", "character": "Not Chuck (voice) (as Mike 'No Name' Nelson)", "id": 1443287, "credit_id": "550d9ed592514134430039d6", "cast_id": 58, "profile_path": null, "order": 32}, {"name": "Jonas Rivera", "character": "Boost (voice)", "id": 7940, "credit_id": "550d9f20c3a3684886006146", "cast_id": 59, "profile_path": null, "order": 33}, {"name": "Lou Romano", "character": "Snotrod (voice)", "id": 7962, "credit_id": "550d9f53c3a3681db20054cf", "cast_id": 60, "profile_path": "/q5BXFPkFZA7RJh9Oj15WRQawMfk.jpg", "order": 34}, {"name": "Adrian Ochoa", "character": "Wingo (voice)", "id": 1443295, "credit_id": "550d9f6fc3a3684877005d2c", "cast_id": 61, "profile_path": null, "order": 35}, {"name": "E.J. Holowicki", "character": "DJ (voice)", "id": 8078, "credit_id": "550d9fb79251414691005d0a", "cast_id": 62, "profile_path": null, "order": 36}, {"name": "Elissa Knight", "character": "Tia (voice)", "id": 72754, "credit_id": "550d9ffdc3a36848720064ec", "cast_id": 63, "profile_path": "/21JKhZc6bTAoHcwSjQhZcdhhx5d.jpg", "order": 37}, {"name": "Lindsey Collins", "character": "Mia (voice)", "id": 72753, "credit_id": "550da027c3a3684874006806", "cast_id": 64, "profile_path": null, "order": 38}, {"name": "Larry Benton", "character": "Motorhome Race Fan (voice)", "id": 1443308, "credit_id": "550da0439251414699005bda", "cast_id": 65, "profile_path": null, "order": 39}, {"name": "Douglas Keever", "character": "Albert Hinkey (voice) (as Douglas 'Mater' Keener)", "id": 1443310, "credit_id": "550da0669251414699005be2", "cast_id": 66, "profile_path": null, "order": 40}, {"name": "Tom Hanks", "character": "Woody Car (voice)", "id": 31, "credit_id": "550da08dc3a368487d006282", "cast_id": 67, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 41}, {"name": "Tim Allen", "character": "Buzz Lightyear Car (voice)", "id": 12898, "credit_id": "550da0af9251414695005f49", "cast_id": 68, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 42}, {"name": "Billy Crystal", "character": "Mike Car (voice)", "id": 7904, "credit_id": "550da0dec3a3681db20054eb", "cast_id": 69, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 43}, {"name": "John Goodman", "character": "Sullivan Truck (voice)", "id": 1230, "credit_id": "550da12292514146a0005c3a", "cast_id": 70, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 44}, {"name": "Dave Foley", "character": "Flik Car (voice)", "id": 21290, "credit_id": "550da155c3a368487d00629a", "cast_id": 71, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 45}, {"name": "Jack Angel", "character": "(voice)", "id": 19545, "credit_id": "550da21b9251414699005c12", "cast_id": 72, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 46}, {"name": "Michael Bell", "character": "(voice)", "id": 19546, "credit_id": "550da264c3a3684872006534", "cast_id": 73, "profile_path": "/izjtUFQ3zJsInc0TSIhrVmUpSd7.jpg", "order": 47}, {"name": "Bob Bergen", "character": "(voice)", "id": 78317, "credit_id": "550da2b0c3a3681db2005515", "cast_id": 74, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 48}, {"name": "Susan Blu", "character": "(voice)", "id": 19548, "credit_id": "550da353c3a3685be5001c6e", "cast_id": 75, "profile_path": null, "order": 49}, {"name": "Andrea Boerries", "character": "(voice)", "id": 1443329, "credit_id": "550da36ec3a3685be5001c73", "cast_id": 76, "profile_path": null, "order": 50}, {"name": "Marco Boerries", "character": "(voice)", "id": 1443330, "credit_id": "550da386c3a36848860061b8", "cast_id": 77, "profile_path": null, "order": 51}, {"name": "Rodger Bumpass", "character": "Wide Chick Pitty (voice)", "id": 70615, "credit_id": "550da3b89251414695005f99", "cast_id": 78, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 52}, {"name": "Torbin Xan Bullock", "character": "(voice)", "id": 8065, "credit_id": "550da3e5c3a3684877005d93", "cast_id": 79, "profile_path": null, "order": 53}, {"name": "Richard Cawood", "character": "(voice)", "id": 1443340, "credit_id": "550da402c3a368488300604f", "cast_id": 80, "profile_path": null, "order": 54}, {"name": "Scott Clark", "character": "(voice)", "id": 8011, "credit_id": "550da45892514133c3003d9d", "cast_id": 81, "profile_path": null, "order": 55}, {"name": "Kathy Coates", "character": "(voice)", "id": 1443353, "credit_id": "550da475c3a368487400687d", "cast_id": 82, "profile_path": null, "order": 56}, {"name": "John Cygan", "character": "(voice)", "id": 167295, "credit_id": "550da49d92514133c3003da7", "cast_id": 83, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 57}, {"name": "Jennifer Darling", "character": "(voice)", "id": 81843, "credit_id": "550da4d89251414695005fbd", "cast_id": 84, "profile_path": "/yOOVSrq6pK495FB8kZR5zGOTx8x.jpg", "order": 58}, {"name": "Paul Eiding", "character": "(voice)", "id": 86006, "credit_id": "550da55b92514146a0005cb8", "cast_id": 85, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 59}, {"name": "Bill Farmer", "character": "(voice)", "id": 84213, "credit_id": "550da5d0c3a368487d006319", "cast_id": 86, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 60}, {"name": "Brian Fee", "character": "(voice)", "id": 1443386, "credit_id": "550da684c3a36848720065ab", "cast_id": 87, "profile_path": null, "order": 61}, {"name": "Teresa Ganzel", "character": "(voice)", "id": 117081, "credit_id": "550da8a7c3a368487d006369", "cast_id": 88, "profile_path": "/4cIwealxv1bizPJks34Gfk7okBF.jpg", "order": 62}, {"name": "Craig Good", "character": "(voice)", "id": 1122227, "credit_id": "550da8d9c3a368487d006379", "cast_id": 89, "profile_path": "/xqm0wzTaReXJKtRKaVQg7cwUV14.jpg", "order": 63}, {"name": "Jess Harnell", "character": "Sven 'The Governator' (voice)", "id": 84495, "credit_id": "550dbf7c92514146a00061c6", "cast_id": 90, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 64}, {"name": "Artie Kempner", "character": "(voice)", "id": 1034562, "credit_id": "550dc0f69251414695006636", "cast_id": 91, "profile_path": null, "order": 65}, {"name": "Hooman Khalili", "character": "(voice)", "id": 1205129, "credit_id": "550dc12c925141762400060c", "cast_id": 92, "profile_path": null, "order": 66}, {"name": "Sonoko Konishi", "character": "Chuki (voice)", "id": 1443471, "credit_id": "550dc14fc3a3684872006a7d", "cast_id": 93, "profile_path": null, "order": 67}, {"name": "Erik Langley", "character": "(voice)", "id": 1443472, "credit_id": "550dc170c3a3684883006575", "cast_id": 94, "profile_path": null, "order": 68}, {"name": "Sherry Lynn", "character": "(voice)", "id": 214701, "credit_id": "550dc1b1925141344300400e", "cast_id": 95, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 69}, {"name": "Danny Mann", "character": "(voice)", "id": 52699, "credit_id": "550dc1ecc3a36848860067df", "cast_id": 96, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 70}, {"name": "Mickie McGowan", "character": "(voice) (as Mickie T. McGowan)", "id": 84493, "credit_id": "550dc23192514146990061b5", "cast_id": 97, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 71}, {"name": "Laraine Newman", "character": "(voice)", "id": 35159, "credit_id": "550dc27b9251417624000686", "cast_id": 98, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 72}, {"name": "Teddy Newton", "character": "(voice)", "id": 59357, "credit_id": "550dc2c392514146a000632f", "cast_id": 99, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 73}, {"name": "Colleen O'Shaughnessey", "character": "(voice)", "id": 1212864, "credit_id": "550dc322c3a3684877006386", "cast_id": 100, "profile_path": null, "order": 74}, {"name": "Bob Peterson", "character": "(voice)", "id": 10, "credit_id": "550dc4239251414695006739", "cast_id": 101, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 75}, {"name": "Steve Purcell", "character": "(voice)", "id": 137262, "credit_id": "550dc46e9251417624000722", "cast_id": 102, "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "order": 76}, {"name": "Jan Rabson", "character": "(voice)", "id": 157626, "credit_id": "550dc4aac3a3684874006fe8", "cast_id": 103, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 77}, {"name": "A.J. Riebli III", "character": "(voice)", "id": 1443479, "credit_id": "550dc6a5c3a36848770064d0", "cast_id": 104, "profile_path": null, "order": 78}, {"name": "Dan Scanlon", "character": "(voice)", "id": 225976, "credit_id": "550dc6f3c3a3685be5002360", "cast_id": 105, "profile_path": null, "order": 79}, {"name": "Stephen Schaffer", "character": "(voice)", "id": 59363, "credit_id": "550dc732c3a368487d0069d6", "cast_id": 106, "profile_path": null, "order": 80}, {"name": "Ken Schretzmann", "character": "(voice)", "id": 8063, "credit_id": "550dc76992514133c3004556", "cast_id": 107, "profile_path": null, "order": 81}, {"name": "Bob Scott", "character": "(voice)", "id": 954958, "credit_id": "550dc7a2c3a3685be500239f", "cast_id": 108, "profile_path": null, "order": 82}, {"name": "Matt Staudt", "character": "(voice)", "id": 1443483, "credit_id": "550dc7cf9251413554004257", "cast_id": 109, "profile_path": null, "order": 83}, {"name": "Jay Ward", "character": "(voice)", "id": 7971, "credit_id": "550dc8089251417624000872", "cast_id": 110, "profile_path": null, "order": 84}, {"name": "Jim Ward", "character": "(voice)", "id": 86007, "credit_id": "550dc85ec3a3685be50023ee", "cast_id": 111, "profile_path": null, "order": 85}, {"name": "Colette Whitaker", "character": "(voice)", "id": 1443485, "credit_id": "550dc88292514146a000650f", "cast_id": 112, "profile_path": null, "order": 86}, {"name": "Sheryl Crow", "character": "Elvis (voice) (uncredited)", "id": 10750, "credit_id": "550dc90192514135540042dd", "cast_id": 113, "profile_path": "/eV0dxZ6IXMNFQNgTa8hkqYMcrhx.jpg", "order": 87}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f80277a3", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}, {"name": "Joe Ranft", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f8027829", "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "id": 7911}], "vote_average": 6.3, "runtime": 117}, "921": {"poster_path": "/xZhumK43Z6jmwCWglh7uHcpkqdb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108539911, "overview": "Cinderella Man is the story of a boxer in the 1920\u2019s who after his retirement has a surprise comeback in order to get him and his family out of a socially poor state. The film is based on the true story of boxer Jim Braddock who was more famously known as Cinderella Man.", "video": false, "id": 921, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Cinderella Man", "tagline": "One man's extraordinary fight to save the family he loved.", "vote_count": 216, "homepage": "http://www.cinderellamanmovie.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0352248", "adult": false, "backdrop_path": "/ozvvHdadtBYpExCwAjsNPSjV6hT.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Miramax Films", "id": 14}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}, {"name": "Parkway Pictures (I)", "id": 631}], "release_date": "2005-06-02", "popularity": 0.487410115237078, "original_title": "Cinderella Man", "budget": 88000000, "cast": [{"name": "Russell Crowe", "character": "Jim Braddock", "id": 934, "credit_id": "52fe428dc3a36847f80278b7", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Mae Braddock", "id": 9137, "credit_id": "52fe428dc3a36847f80278bb", "cast_id": 2, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Joe Gould", "id": 13242, "credit_id": "52fe428dc3a36847f80278bf", "cast_id": 3, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Craig Bierko", "character": "Max Baer", "id": 14886, "credit_id": "52fe428dc3a36847f80278c3", "cast_id": 4, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Mike Wilson", "id": 14887, "credit_id": "52fe428dc3a36847f80278c7", "cast_id": 5, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Jimmy Johnston", "id": 14888, "credit_id": "52fe428dc3a36847f80278cb", "cast_id": 6, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "David Huband", "character": "Ford Bond", "id": 5922, "credit_id": "52fe428dc3a36847f80278cf", "cast_id": 7, "profile_path": "/o8wwJkxTtoyVggtkKVg07DhhBfd.jpg", "order": 6}, {"name": "Connor Price", "character": "Jay Braddock", "id": 14889, "credit_id": "52fe428dc3a36847f80278d3", "cast_id": 8, "profile_path": "/5wv3PDrlK7vBnEVEAY4i7X162jz.jpg", "order": 7}, {"name": "Ariel Waller", "character": "Rosemarie Braddock", "id": 14890, "credit_id": "52fe428dc3a36847f80278d7", "cast_id": 9, "profile_path": "/hufUznUGgqslVxjHQCj7ZLDjfs9.jpg", "order": 8}, {"name": "Patrick Louis", "character": "Howard Braddock", "id": 14891, "credit_id": "52fe428dc3a36847f80278db", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Rosemarie DeWitt", "character": "Sara Wilson", "id": 14892, "credit_id": "52fe428dc3a36847f80278df", "cast_id": 11, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 10}, {"name": "Linda Kash", "character": "Lucille Gould", "id": 14893, "credit_id": "52fe428dc3a36847f80278e3", "cast_id": 12, "profile_path": "/8rhFeK1ZUPvBxXpeuXCESQCzR4f.jpg", "order": 11}, {"name": "Nicholas Campbell", "character": "Sporty Lewis", "id": 14902, "credit_id": "52fe428dc3a36847f80278e7", "cast_id": 13, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 12}, {"name": "Gene Pyrz", "character": "Jake", "id": 14903, "credit_id": "52fe428dc3a36847f80278eb", "cast_id": 14, "profile_path": "/ydANqjUBcAKXTT3QCtdrihxXCRi.jpg", "order": 13}, {"name": "Chuck Shamata", "character": "Father Rorick", "id": 14905, "credit_id": "52fe428dc3a36847f80278ef", "cast_id": 15, "profile_path": "/Am0oJeJNzgEMvalgFkXe9m36rzx.jpg", "order": 14}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f80278f5", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 7.0, "runtime": 144}, "922": {"poster_path": "/vGobIvxSiFvAmwqH8BlC3SpET0C.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On the run after murdering a man, accountant William Blake encounters a strange North American man named Nobody who prepares him for his journey into the spiritual world.", "video": false, "id": 922, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 37, "name": "Western"}], "title": "Dead Man", "tagline": "No one can survive becoming a legend.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112817", "adult": false, "backdrop_path": "/6LXIgIjtt8UCCwYThiMG26JHSpn.jpg", "production_companies": [{"name": "JVC Entertainment", "id": 182}, {"name": "Pandora Filmproduktion", "id": 254}, {"name": "Newmarket Capital Group", "id": 506}, {"name": "12 Gauge Productions", "id": 663}], "release_date": "1995-05-26", "popularity": 0.830281966508047, "original_title": "Dead Man", "budget": 9000000, "cast": [{"name": "Johnny Depp", "character": "William Blake", "id": 85, "credit_id": "52fe428dc3a36847f8027a59", "cast_id": 22, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Gary Farmer", "character": "Nobody", "id": 15439, "credit_id": "52fe428dc3a36847f8027a5d", "cast_id": 23, "profile_path": "/iiIgfaFmsL1zqXozZtAqygXpYvy.jpg", "order": 1}, {"name": "Crispin Glover", "character": "Train Fireman", "id": 1064, "credit_id": "52fe428dc3a36847f8027a61", "cast_id": 24, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 2}, {"name": "Lance Henriksen", "character": "Cole Wilson", "id": 2714, "credit_id": "52fe428dc3a36847f8027a65", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 3}, {"name": "Michael Wincott", "character": "Conway Twill", "id": 7486, "credit_id": "52fe428dc3a36847f8027a69", "cast_id": 26, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 4}, {"name": "Michael Wincott", "character": "Conway Twill", "id": 7486, "credit_id": "52fe428dc3a36847f8027a6d", "cast_id": 27, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 5}, {"name": "Eugene Byrd", "character": "Johnny 'The Kid' Pickett", "id": 342, "credit_id": "52fe428dc3a36847f8027a71", "cast_id": 28, "profile_path": "/ab4zEcqdBSjpaz4CPQ2Z6q4rLmO.jpg", "order": 6}, {"name": "John Hurt", "character": "John Scholfield", "id": 5049, "credit_id": "52fe428dc3a36847f8027a75", "cast_id": 29, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 7}, {"name": "Robert Mitchum", "character": "John Dickinson", "id": 10158, "credit_id": "52fe428dc3a36847f8027a79", "cast_id": 30, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 8}, {"name": "Iggy Pop", "character": "Salvatore 'Sally' Jenko", "id": 13604, "credit_id": "52fe428dc3a36847f8027a7d", "cast_id": 31, "profile_path": "/orkeTSZYiHVKqeTntsD6e6VHuqc.jpg", "order": 9}, {"name": "Gabriel Byrne", "character": "Charlie Dickinson", "id": 5168, "credit_id": "52fe428dc3a36847f8027a81", "cast_id": 32, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 10}, {"name": "Jared Harris", "character": "Benmont Tench", "id": 15440, "credit_id": "52fe428dc3a36847f8027a85", "cast_id": 33, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 11}, {"name": "Mili Avital", "character": "Thel Russell", "id": 15441, "credit_id": "52fe428dc3a36847f8027a89", "cast_id": 34, "profile_path": "/molppCadjV0Cy6YRmYmobGv3VyP.jpg", "order": 12}, {"name": "Jimmie Ray Weeks", "character": "Marvin, Older Marshal", "id": 15442, "credit_id": "52fe428dc3a36847f8027a8d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Mark Bringelson", "character": "Lee, Younger Marshal", "id": 15443, "credit_id": "52fe428dc3a36847f8027a91", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "John North", "character": "Mr. Olafsen", "id": 15444, "credit_id": "52fe428dc3a36847f8027a95", "cast_id": 37, "profile_path": "/wzk50PWRRc1u7cc23yVaho0wUpp.jpg", "order": 15}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f80279dd", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 7.3, "runtime": 121}, "923": {"poster_path": "/8D6WEfNZr6JadQrqJr5OOq1QlV0.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55000000, "overview": "During an ever-growing epidemic of zombies that have risen from the dead, two Philadelphia SWAT team members, a traffic reporter, and his television-executive girlfriend seek refuge in a secluded shopping mall.", "video": false, "id": 923, "genres": [{"id": 27, "name": "Horror"}], "title": "Dawn of the Dead", "tagline": "When there's no more room in hell, the dead will walk the earth.", "vote_count": 157, "homepage": "", "belongs_to_collection": {"backdrop_path": "/inPPfnJ9Wzc9rg1MpkPm0P3D9rJ.jpg", "poster_path": "/mSJ20RTWWgtt3aTyn1iwNZ9fbYl.jpg", "id": 261590, "name": "Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077402", "adult": false, "backdrop_path": "/vCD9mRgSY4HuoSowm8JO4tm2mhj.jpg", "production_companies": [{"name": "Laurel Group", "id": 638}, {"name": "Nippon Herald Films", "id": 1598}], "release_date": "1978-09-02", "popularity": 0.878420626836907, "original_title": "Dawn of the Dead", "budget": 500000, "cast": [{"name": "David Emge", "character": "Stephen", "id": 15069, "credit_id": "52fe428dc3a36847f8027b7d", "cast_id": 27, "profile_path": "/nvgIp1mkMQurbUUlgF3wDhOurVJ.jpg", "order": 0}, {"name": "Ken Foree", "character": "Peter", "id": 15070, "credit_id": "52fe428dc3a36847f8027b81", "cast_id": 28, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 1}, {"name": "Scott H. Reiniger", "character": "Roger", "id": 15071, "credit_id": "52fe428dc3a36847f8027b85", "cast_id": 29, "profile_path": "/zX3UySm5yhFR0KyF1nzydcrKM60.jpg", "order": 2}, {"name": "Gaylen Ross", "character": "Francine", "id": 15072, "credit_id": "52fe428dc3a36847f8027b89", "cast_id": 30, "profile_path": "/afGvRColYStNZ7jM9ArIdpMCrpP.jpg", "order": 3}, {"name": "David Crawford", "character": "Dr. Foster", "id": 15073, "credit_id": "52fe428dc3a36847f8027b8d", "cast_id": 31, "profile_path": null, "order": 4}, {"name": "David Early", "character": "Mr. Berman", "id": 15074, "credit_id": "52fe428dc3a36847f8027b91", "cast_id": 32, "profile_path": null, "order": 5}, {"name": "Richard France", "character": "Dr. Milliard Rausch", "id": 15075, "credit_id": "52fe428dc3a36847f8027b95", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "Howard Smith", "character": "TV Commentator", "id": 15076, "credit_id": "52fe428dc3a36847f8027b99", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "Daniel Dietrich", "character": "Givens", "id": 15077, "credit_id": "52fe428dc3a36847f8027b9d", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Fred Baker", "character": "Police Commander", "id": 15078, "credit_id": "52fe428dc3a36847f8027ba1", "cast_id": 36, "profile_path": null, "order": 9}, {"name": "James A. Baffico", "character": "Wooley", "id": 15079, "credit_id": "52fe428dc3a36847f8027ba5", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Rod Stouffer", "character": "Roy Tucker", "id": 15080, "credit_id": "52fe428ec3a36847f8027ba9", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Jese Del Gre", "character": "Old Priest", "id": 1047720, "credit_id": "52fe428ec3a36847f8027bad", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Clayton McKinnon", "character": "Officer in Project Apt.", "id": 1047721, "credit_id": "52fe428ec3a36847f8027bb1", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "John Rice", "character": "Officer in Project Apt.", "id": 162074, "credit_id": "52fe428ec3a36847f8027bb5", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Ted Bank", "character": "Officer at Police Dock", "id": 1047722, "credit_id": "52fe428ec3a36847f8027bb9", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Randy Kovitz", "character": "Officer at Police Dock", "id": 152902, "credit_id": "52fe428ec3a36847f8027bbd", "cast_id": 43, "profile_path": "/77ot4s2NATwJUzIHhFOEf0MIZ4r.jpg", "order": 16}, {"name": "Patrick McCloskey", "character": "Officer at Police Dock", "id": 1047723, "credit_id": "52fe428ec3a36847f8027bc1", "cast_id": 44, "profile_path": null, "order": 17}, {"name": "Joseph Pilato", "character": "Officer at Police Dock", "id": 54855, "credit_id": "52fe428ec3a36847f8027bc5", "cast_id": 45, "profile_path": "/l5xtdrOmCgOrLiOs4HvyiLEmtNH.jpg", "order": 18}, {"name": "Pasquale Buba", "character": "Motorcycle Raider", "id": 15840, "credit_id": "52fe428ec3a36847f8027bc9", "cast_id": 46, "profile_path": null, "order": 19}, {"name": "Tom Savini", "character": "Motorcycle Raider", "id": 11161, "credit_id": "52fe428ec3a36847f8027bcd", "cast_id": 47, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 20}, {"name": "George A. Romero", "character": "Man at TV-Station", "id": 14999, "credit_id": "53a068d00e0a26506e003008", "cast_id": 48, "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "order": 21}, {"name": "Christine Forrest", "character": "Woman at TV-Station", "id": 100507, "credit_id": "53a069220e0a26508100301d", "cast_id": 49, "profile_path": null, "order": 22}], "directors": [{"name": "George A. Romero", "department": "Directing", "job": "Director", "credit_id": "52fe428dc3a36847f8027af5", "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "id": 14999}], "vote_average": 7.2, "runtime": 127}, "924": {"poster_path": "/hWq7Ixgzwat7UThluFsptUmb8zk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102356381, "overview": "A group of surviving people take refuge in a shopping center after the world has been over taken over by aggressive, flesh-eating zombies. A remake of the 1978 zombie film of the same name.", "video": false, "id": 924, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Dawn of the Dead", "tagline": "When the undead rise, civilization will fall.", "vote_count": 257, "homepage": "http://www.dawnofthedeadmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363547", "adult": false, "backdrop_path": "/cYd3PL27r0KJa9Pa4A5lfUr58Yg.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2004-03-10", "popularity": 0.896073637746964, "original_title": "Dawn of the Dead", "budget": 28000000, "cast": [{"name": "Sarah Polley", "character": "Ana", "id": 98, "credit_id": "52fe428ec3a36847f8027ca3", "cast_id": 22, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 0}, {"name": "Ving Rhames", "character": "Kenneth", "id": 10182, "credit_id": "52fe428ec3a36847f8027ca7", "cast_id": 23, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 1}, {"name": "Jake Weber", "character": "Michael", "id": 4177, "credit_id": "52fe428ec3a36847f8027cab", "cast_id": 24, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 2}, {"name": "Mekhi Phifer", "character": "Andre", "id": 327, "credit_id": "52fe428ec3a36847f8027caf", "cast_id": 25, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 3}, {"name": "Ty Burrell", "character": "Steve", "id": 15232, "credit_id": "52fe428ec3a36847f8027cb3", "cast_id": 26, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 4}, {"name": "Matt Frewer", "character": "Frank", "id": 40009, "credit_id": "52fe428ec3a36847f8027cbd", "cast_id": 28, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 5}, {"name": "Michael Kelly", "character": "C.J.", "id": 50217, "credit_id": "52fe428ec3a36847f8027cc1", "cast_id": 29, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 6}, {"name": "Kevin Zegers", "character": "Terry", "id": 7431, "credit_id": "52fe428ec3a36847f8027cc5", "cast_id": 30, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 7}, {"name": "Lindy Booth", "character": "Nicole", "id": 51936, "credit_id": "52fe428ec3a36847f8027cc9", "cast_id": 31, "profile_path": "/bzquwgIrGxF8xfPCmSiNZ563VdH.jpg", "order": 8}, {"name": "Michael Barry", "character": "Bart", "id": 79411, "credit_id": "52fe428ec3a36847f8027ccd", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Jayne Eastwood", "character": "Norma", "id": 4568, "credit_id": "52fe428ec3a36847f8027cd1", "cast_id": 33, "profile_path": "/fUYBG960fMkGDiNzcz7ERjB6BHe.jpg", "order": 10}, {"name": "Boyd Banks", "character": "Tucker", "id": 20196, "credit_id": "52fe428ec3a36847f8027cd5", "cast_id": 34, "profile_path": "/mDsIaLKyGqyV1Nt0pV9joGkQNSP.jpg", "order": 11}, {"name": "Inna Korobkina", "character": "Luda", "id": 101255, "credit_id": "52fe428ec3a36847f8027cd9", "cast_id": 35, "profile_path": "/7doFA0Dla2cn1XY6eR0XQ7YlFfv.jpg", "order": 12}, {"name": "Kim Poirier", "character": "Monica", "id": 101250, "credit_id": "52fe428ec3a36847f8027cdd", "cast_id": 36, "profile_path": "/wesJlduSqsSe2ZKoe7wpQsNzInh.jpg", "order": 13}, {"name": "Louis Ferreira", "character": "Luis", "id": 51036, "credit_id": "52fe428ec3a36847f8027ce1", "cast_id": 37, "profile_path": "/mqJglT0g3tRMg5cNeJ7C6vdP4E.jpg", "order": 14}, {"name": "Scott H. Reiniger", "character": "The General", "id": 15071, "credit_id": "52fe428ec3a36847f8027ce5", "cast_id": 39, "profile_path": "/zX3UySm5yhFR0KyF1nzydcrKM60.jpg", "order": 15}, {"name": "Tom Savini", "character": "The County Sheriff", "id": 11161, "credit_id": "52fe428ec3a36847f8027ce9", "cast_id": 40, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 16}, {"name": "Ken Foree", "character": "The Televangelist", "id": 15070, "credit_id": "52fe428ec3a36847f8027ced", "cast_id": 41, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 17}, {"name": "Natalie Brown", "character": "CDC Reporter", "id": 104635, "credit_id": "52fe428ec3a36847f8027cf1", "cast_id": 42, "profile_path": "/gjhBQLNO3mlZGmnftmbWZxVkKW.jpg", "order": 18}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f8027c27", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.7, "runtime": 101}, "16538": {"poster_path": "/bIW8xqbWnEylKcx8EJdpIMSmygw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91636986, "overview": "Peter Klaven is a successful real estate agent who, upon getting engaged to the woman of his dreams, Zooey, discovers, to his dismay and chagrin, that he has no male friend close enough to serve as his Best Man. Peter immediately sets out to rectify the situation, embarking on a series of bizarre and awkward \"man-dates,\" before meeting Sydney Fife.", "video": false, "id": 16538, "genres": [{"id": 35, "name": "Comedy"}], "title": "I Love You, Man", "tagline": "Are You Man Enough To Say It?", "vote_count": 137, "homepage": "http://www.iloveyouman.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1155056", "adult": false, "backdrop_path": "/rpNWJxp4hy23CyeItratYRDLmgV.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "The Montecito Picture Company", "id": 2364}, {"name": "De Line Pictures", "id": 2609}, {"name": "Bernard Gayle Productions", "id": 3194}], "release_date": "2009-03-20", "popularity": 0.895894776274966, "original_title": "I Love You, Man", "budget": 41000000, "cast": [{"name": "Paul Rudd", "character": "Peter Klaven", "id": 22226, "credit_id": "52fe46d99251416c750858d9", "cast_id": 1, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Rashida Jones", "character": "Zooey", "id": 80591, "credit_id": "52fe46d99251416c750858dd", "cast_id": 2, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 1}, {"name": "Jason Segel", "character": "Sydney Fife", "id": 41088, "credit_id": "52fe46d99251416c7508591b", "cast_id": 17, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 2}, {"name": "Sarah Burns", "character": "Hailey", "id": 80592, "credit_id": "52fe46d99251416c750858e1", "cast_id": 3, "profile_path": "/xGyBTIJUG7WC3wjQu0ILBCSSnh0.jpg", "order": 3}, {"name": "Greg Levine", "character": "Hailey's Date", "id": 80593, "credit_id": "52fe46d99251416c750858e5", "cast_id": 4, "profile_path": null, "order": 4}, {"name": "Jaime Pressly", "character": "Denise", "id": 56824, "credit_id": "52fe46d99251416c750858e9", "cast_id": 5, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Barry", "id": 15277, "credit_id": "52fe46d99251416c750858ed", "cast_id": 6, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Jane Curtin", "character": "Joyce Klaven", "id": 58184, "credit_id": "52fe46d99251416c750858f1", "cast_id": 7, "profile_path": "/lPiGlFpjsgb1uD3zPOkaEv4T3Es.jpg", "order": 7}, {"name": "J.K. Simmons", "character": "Oswald Klaven", "id": 18999, "credit_id": "52fe46d99251416c750858f5", "cast_id": 8, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 8}, {"name": "Jean Villepique", "character": "Leanne", "id": 80594, "credit_id": "52fe46d99251416c750858f9", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Rob Huebel", "character": "Tevin Downey", "id": 80595, "credit_id": "52fe46d99251416c750858fd", "cast_id": 11, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 9}, {"name": "Colleen Crabtree", "character": "Female Co-Worker", "id": 80596, "credit_id": "52fe46d99251416c75085901", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Kym Whitley", "character": "Female Co-Worker", "id": 80597, "credit_id": "52fe46d99251416c75085905", "cast_id": 13, "profile_path": "/87Zy7o5giRo2SpnhNJSvZRhYJue.jpg", "order": 11}, {"name": "Andy Samberg", "character": "Robbie Klaven", "id": 62861, "credit_id": "52fe46d99251416c7508591f", "cast_id": 18, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 12}, {"name": "Lou Ferrigno", "character": "Lou Ferrigno", "id": 19137, "credit_id": "52fe46d99251416c75085923", "cast_id": 21, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 14}, {"name": "Thomas Lennon", "character": "Doug", "id": 539, "credit_id": "52fe46d99251416c75085927", "cast_id": 22, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 15}, {"name": "Aziz Ansari", "character": "Eugene", "id": 86626, "credit_id": "52fe46d99251416c7508592b", "cast_id": 23, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 16}, {"name": "Nick Kroll", "character": "Larry", "id": 208519, "credit_id": "52fe46d99251416c7508592f", "cast_id": 24, "profile_path": "/puZov7sMmuVkvdqJvmlxtWcS1fU.jpg", "order": 17}, {"name": "Carla Gallo", "character": "Zooey's Friend", "id": 54708, "credit_id": "52fe46d99251416c75085933", "cast_id": 25, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 18}, {"name": "Jay Chandrasekhar", "character": "Barry's Buddy", "id": 52049, "credit_id": "52fe46d99251416c75085937", "cast_id": 26, "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "order": 19}, {"name": "Geddy Lee", "character": "Himself - Rush", "id": 81249, "credit_id": "52fe46d99251416c7508593b", "cast_id": 27, "profile_path": "/9ZpJpCL0U3HK6F7nLLyjg4EOtNc.jpg", "order": 20}, {"name": "Alex Lifeson", "character": "Himself - Rush", "id": 81248, "credit_id": "52fe46d99251416c7508593f", "cast_id": 28, "profile_path": "/kMDS4SSG7uKtgHnbckHCpTzpu3s.jpg", "order": 21}, {"name": "Neil Peart", "character": "Himself - Rush", "id": 81250, "credit_id": "52fe46d99251416c75085943", "cast_id": 29, "profile_path": "/9a1OQqSh7BzpfsOZvfMHQgE4XTW.jpg", "order": 22}, {"name": "David Krumholtz", "character": "Sydney's Buddy #3", "id": 38582, "credit_id": "52fe46d99251416c75085947", "cast_id": 30, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 23}, {"name": "Joe Lo Truglio", "character": "Lonnie", "id": 21131, "credit_id": "52fe46d99251416c7508594b", "cast_id": 31, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 24}, {"name": "Catherine Reitman", "character": "Zooey's Friend", "id": 154826, "credit_id": "530376cd92514121925af7d1", "cast_id": 32, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 25}], "directors": [{"name": "John Hamburg", "department": "Directing", "job": "Director", "credit_id": "52fe46d99251416c7508590b", "profile_path": "/sOLaBjtlparS5GWGhI3a8Rx5Qzr.jpg", "id": 17871}], "vote_average": 6.5, "runtime": 105}, "926": {"poster_path": "/9yaxerm28NP4LIAsAS7zGAAbSSa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90683916, "overview": "Decades after the success of the sci-fi series \"Galaxy Quest,\" the show's washed-up stars -- Jason Nesmith, Gwen DeMarco and Alexander Dane -- are unwittingly recruited by actual aliens to pull off an intergalactic rescue mission.", "video": false, "id": 926, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Galaxy Quest", "tagline": "A comedy of Galactic Proportions", "vote_count": 228, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0177789", "adult": false, "backdrop_path": "/1sAm8L4yOquzak9bstajTIoCEmy.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "1999-12-23", "popularity": 0.871338029381202, "original_title": "Galaxy Quest", "budget": 45000000, "cast": [{"name": "Tim Allen", "character": "Jason Nesmith", "id": 12898, "credit_id": "52fe428ec3a36847f8027ef3", "cast_id": 40, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Sigourney Weaver", "character": "Gwen DeMarco", "id": 10205, "credit_id": "52fe428ec3a36847f8027eef", "cast_id": 39, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 1}, {"name": "Alan Rickman", "character": "Alexander Dane", "id": 4566, "credit_id": "52fe428ec3a36847f8027ebb", "cast_id": 26, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 2}, {"name": "Tony Shalhoub", "character": "Fred Kwan", "id": 4252, "credit_id": "52fe428ec3a36847f8027ebf", "cast_id": 27, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 3}, {"name": "Sam Rockwell", "character": "Guy Fleegman", "id": 6807, "credit_id": "52fe428ec3a36847f8027ec3", "cast_id": 28, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 4}, {"name": "Daryl Mitchell", "character": "Tommy Webber", "id": 15028, "credit_id": "52fe428ec3a36847f8027ec7", "cast_id": 29, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 5}, {"name": "Enrico Colantoni", "character": "Mathesar", "id": 15029, "credit_id": "52fe428ec3a36847f8027ecb", "cast_id": 30, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 6}, {"name": "Robin Sachs", "character": "Sarris", "id": 15030, "credit_id": "52fe428ec3a36847f8027ecf", "cast_id": 31, "profile_path": "/rSMeopDC1loyjUVhxK0XjFfSlAC.jpg", "order": 7}, {"name": "Patrick Breen", "character": "Quellek", "id": 15031, "credit_id": "52fe428ec3a36847f8027ed3", "cast_id": 32, "profile_path": "/jMChbEq3GODrIoz1Jl4rlPGonY6.jpg", "order": 8}, {"name": "Missi Pyle", "character": "Laliari", "id": 1294, "credit_id": "52fe428ec3a36847f8027ed7", "cast_id": 33, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 9}, {"name": "Jed Rees", "character": "Teb", "id": 15032, "credit_id": "52fe428ec3a36847f8027edb", "cast_id": 34, "profile_path": "/u2zPeu9RguGzPagDjSPPxXFHxax.jpg", "order": 10}, {"name": "Justin Long", "character": "Brandon", "id": 15033, "credit_id": "52fe428ec3a36847f8027edf", "cast_id": 35, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 11}, {"name": "Jeremy Howard", "character": "Kyle", "id": 15034, "credit_id": "52fe428ec3a36847f8027ee3", "cast_id": 36, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 12}, {"name": "Kaitlin Cullum", "character": "Katelyn", "id": 15035, "credit_id": "52fe428ec3a36847f8027ee7", "cast_id": 37, "profile_path": "/dJxQ8Hqd1aKVQwlCw4bFP2SEL07.jpg", "order": 13}, {"name": "Jonathan Feyer", "character": "Hollister", "id": 15036, "credit_id": "52fe428ec3a36847f8027eeb", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Sam Lloyd", "character": "Neru (as Samuel Lloyd)", "id": 46920, "credit_id": "54e300af9251411953008ed5", "cast_id": 45, "profile_path": "/xLSxSkq41HNGmK5cCeXqnki8CIz.jpg", "order": 15}, {"name": "Rainn Wilson", "character": "Lahnk", "id": 11678, "credit_id": "54e300549251411099003520", "cast_id": 44, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 16}, {"name": "Kevin McDonald", "character": "Announcer (as Kevin Hamilton McDonald)", "id": 58955, "credit_id": "54e2fff29251411956009563", "cast_id": 43, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 17}], "directors": [{"name": "Dean Parisot", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f8027e33", "profile_path": "/3h20QFQ6duhpJ1FMSeJiFju0WGp.jpg", "id": 15002}], "vote_average": 6.7, "runtime": 102}, "927": {"poster_path": "/qehNFww7A9kRDbqCQNWvaQc8Y4w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 153083102, "overview": "When Billy Peltzer is given a strange but adorable pet named Gizmo for Christmas, he inadvertently breaks the three important rules of caring for a Mogwai, and unleashes a horde of mischievous gremlins on a small town.", "video": false, "id": 927, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Gremlins", "tagline": "Don't get him wet, keep him out of bright light, and never feed him after midnight.", "vote_count": 315, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2Oz7EyiM9nNeP7appRFkMZNeYRo.jpg", "poster_path": "/mcrb8SdAOrJpSMbWWS3Hv304FCG.jpg", "id": 89151, "name": "The Gremlins Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0087363", "adult": false, "backdrop_path": "/cRnWvmZXvvacj9FzDaaw2bzC5jh.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1984-06-07", "popularity": 1.09879837632864, "original_title": "Gremlins", "budget": 11000000, "cast": [{"name": "Zach Galligan", "character": "Billy Peltzer", "id": 16170, "credit_id": "52fe428ec3a36847f8027fcd", "cast_id": 25, "profile_path": "/eSyT6LTehecvhTfNxn5OEdEGmqR.jpg", "order": 0}, {"name": "Phoebe Cates", "character": "Kate Beringer", "id": 16171, "credit_id": "52fe428ec3a36847f8027fd1", "cast_id": 26, "profile_path": "/5PxWIvoufedYN7dfDohBXcrUx2C.jpg", "order": 1}, {"name": "Hoyt Axton", "character": "Randall Peltzer", "id": 16166, "credit_id": "52fe428ec3a36847f8027fb1", "cast_id": 18, "profile_path": "/sIJjj88LfVpvnxW56Ffr6qlj7wI.jpg", "order": 2}, {"name": "Polly Holliday", "character": "Ruby Deagle", "id": 11715, "credit_id": "52fe428ec3a36847f8027fd5", "cast_id": 27, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 3}, {"name": "Dick Miller", "character": "Murray Futterman", "id": 102441, "credit_id": "52fe428ec3a36847f8027fe1", "cast_id": 30, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 4}, {"name": "Keye Luke", "character": "Grandfather (Mr. Wing)", "id": 16103, "credit_id": "52fe428ec3a36847f8027fb9", "cast_id": 20, "profile_path": "/1mnlwICoRFyz6nmER2MGtXgocWk.jpg", "order": 5}, {"name": "Belinda Balaski", "character": "Mrs. Joe Harris", "id": 16173, "credit_id": "52fe428ec3a36847f8027fdd", "cast_id": 29, "profile_path": "/rOrH8mdW1F3HGmCb2W3EoCdv1Ox.jpg", "order": 6}, {"name": "Scott Brady", "character": "Sheriff Frank", "id": 14847, "credit_id": "52fe428ec3a36847f8027fc5", "cast_id": 23, "profile_path": "/Aop8piW356aYUAX9hsvdLyZrNr7.jpg", "order": 7}, {"name": "Judge Reinhold", "character": "Gerald Hopkins", "id": 777, "credit_id": "52fe428ec3a36847f8027ff7", "cast_id": 35, "profile_path": "/oN7TsF0yFJhsoKe9KzxXEOhheci.jpg", "order": 8}, {"name": "John Louie", "character": "Chinese Boy", "id": 16167, "credit_id": "52fe428ec3a36847f8027fb5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Don Steele", "character": "Rockin' Ricky Rialto (voice)", "id": 16168, "credit_id": "52fe428ec3a36847f8027fbd", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Susan Burgess", "character": "Little Girl", "id": 16169, "credit_id": "52fe428ec3a36847f8027fc1", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Harry Carey, Jr.", "character": "Mr. Anderson", "id": 4316, "credit_id": "52fe428ec3a36847f8027fc9", "cast_id": 24, "profile_path": "/7Via2uVuYnnz8gJ5qx0zXqIKTkz.jpg", "order": 12}, {"name": "Donald Elson", "character": "Man on Street", "id": 16172, "credit_id": "52fe428ec3a36847f8027fd9", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Howie Mandel", "character": "Gizmo (voice)", "id": 77920, "credit_id": "52fe428ec3a36847f8027feb", "cast_id": 32, "profile_path": "/vGiiLVMetVkQIRhirMDqcfOqJoz.jpg", "order": 14}, {"name": "Corey Feldman", "character": "Pete Fountaine", "id": 3034, "credit_id": "52fe428ec3a36847f8027fef", "cast_id": 33, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 15}, {"name": "Edward Andrews", "character": "Mr. Corben", "id": 29719, "credit_id": "52fe428ec3a36847f8027ff3", "cast_id": 34, "profile_path": "/8tbeVNxs6puN3GiyOmoq70IchLb.jpg", "order": 16}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f8027fe7", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.5, "runtime": 106}, "928": {"poster_path": "/mkWD9W27JYmQPbgcryPBdI2cF4r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41482207, "overview": "Young sweethearts Billy and Kate move to the Big Apple, land jobs in a high-tech office park and soon reunite with the friendly and lovable Gizmo. But a series of accidents creates a whole new generation of Gremlins. The situation worsens when the devilish green creatures invade a top-secret laboratory and develop genetically altered powers, making them even harder to destroy!", "video": false, "id": 928, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Gremlins 2: The New Batch", "tagline": "Here they grow again.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2Oz7EyiM9nNeP7appRFkMZNeYRo.jpg", "poster_path": "/mcrb8SdAOrJpSMbWWS3Hv304FCG.jpg", "id": 89151, "name": "The Gremlins Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099700", "adult": false, "backdrop_path": "/fYs97Y4IuZKiHbBPwU97mpgqRHs.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1990-06-15", "popularity": 0.87408158252482, "original_title": "Gremlins 2: The New Batch", "budget": 50000000, "cast": [{"name": "Zach Galligan", "character": "Billy Peltzer", "id": 16170, "credit_id": "52fe428ec3a36847f80280ab", "cast_id": 17, "profile_path": "/eSyT6LTehecvhTfNxn5OEdEGmqR.jpg", "order": 0}, {"name": "Phoebe Cates", "character": "Kate Beringer", "id": 16171, "credit_id": "52fe428ec3a36847f80280af", "cast_id": 18, "profile_path": "/5PxWIvoufedYN7dfDohBXcrUx2C.jpg", "order": 1}, {"name": "John Glover", "character": "Daniel Clamp", "id": 5589, "credit_id": "52fe428ec3a36847f80280b3", "cast_id": 19, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 2}, {"name": "Robert Prosky", "character": "Grandpa Fred", "id": 10360, "credit_id": "52fe428ec3a36847f80280b7", "cast_id": 20, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 3}, {"name": "Robert Picardo", "character": "Forster", "id": 16180, "credit_id": "52fe428ec3a36847f80280bb", "cast_id": 21, "profile_path": "/5L0WCl3TzjeWdP8TqXfQ1n9uaOn.jpg", "order": 4}, {"name": "Christopher Lee", "character": "Doctor Catheter", "id": 113, "credit_id": "52fe428ec3a36847f80280bf", "cast_id": 22, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 5}, {"name": "Haviland Morris", "character": "Marla Bloodstone", "id": 16181, "credit_id": "52fe428ec3a36847f80280c3", "cast_id": 23, "profile_path": "/4lFaYG2lyob69bFXBZJ1GdkZjwj.jpg", "order": 6}, {"name": "Jackie Joseph", "character": "Sheila Futterman", "id": 16182, "credit_id": "52fe428ec3a36847f80280c7", "cast_id": 24, "profile_path": "/guS1QH6qXxMs2aW6zD7YWy7RJSm.jpg", "order": 7}, {"name": "Gedde Watanabe", "character": "Mr. Katsuji", "id": 16183, "credit_id": "52fe428ec3a36847f80280cb", "cast_id": 25, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 8}, {"name": "Keye Luke", "character": "Mr. Wing", "id": 16103, "credit_id": "52fe428ec3a36847f80280cf", "cast_id": 26, "profile_path": "/1mnlwICoRFyz6nmER2MGtXgocWk.jpg", "order": 9}, {"name": "Kathleen Freeman", "character": "Microwave Marge", "id": 7210, "credit_id": "52fe428ec3a36847f80280d3", "cast_id": 27, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 10}, {"name": "Don Stanton", "character": "Martin", "id": 16184, "credit_id": "52fe428ec3a36847f80280d7", "cast_id": 28, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 11}, {"name": "Dan Stanton", "character": "Lewis", "id": 16185, "credit_id": "52fe428ec3a36847f80280db", "cast_id": 29, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 12}, {"name": "Shawn Nelson", "character": "Wally", "id": 16186, "credit_id": "52fe428ec3a36847f80280df", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Dick Miller", "character": "Murray Futterman", "id": 102441, "credit_id": "52fe428ec3a36847f80280e9", "cast_id": 32, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 14}, {"name": "Paul Bartel", "character": "Theatre Manager", "id": 101377, "credit_id": "52fe428ec3a36847f80280ed", "cast_id": 33, "profile_path": "/7Kj1Y9V8lfnFXHkjf30H8d3ylQA.jpg", "order": 15}, {"name": "John Astin", "character": "Janitor", "id": 41230, "credit_id": "52fe428ec3a36847f80280f1", "cast_id": 34, "profile_path": "/thWruW63AhnJUiQu4hcqi600dNH.jpg", "order": 16}, {"name": "Henry Gibson", "character": "Employee fired for Smoking", "id": 19439, "credit_id": "52fe428ec3a36847f80280f5", "cast_id": 35, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 17}, {"name": "Leonard Maltin", "character": "Himself", "id": 109255, "credit_id": "52fe428fc3a36847f80280f9", "cast_id": 36, "profile_path": "/oiYdHwKoqDqyDKzq9VFx7ynzfYs.jpg", "order": 18}, {"name": "Hulk Hogan", "character": "Himself", "id": 16620, "credit_id": "52fe428fc3a36847f80280fd", "cast_id": 37, "profile_path": "/jDWQ3FLbbPSIHPgfOdmuUaWWnON.jpg", "order": 19}, {"name": "Tony Randall", "character": "Brain Gremlin (voice)", "id": 40206, "credit_id": "52fe428fc3a36847f8028101", "cast_id": 38, "profile_path": "/9CV7E5onJ6AuYFvHuIdMtEiW6PG.jpg", "order": 20}, {"name": "Howie Mandel", "character": "Gizmo (voice)", "id": 77920, "credit_id": "52fe428fc3a36847f8028105", "cast_id": 39, "profile_path": "/vGiiLVMetVkQIRhirMDqcfOqJoz.jpg", "order": 21}, {"name": "Frank Welker", "character": "Mohawk (voice)", "id": 15831, "credit_id": "53d14089c3a368776d00a477", "cast_id": 40, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 22}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe428ec3a36847f80280e5", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.0, "runtime": 106}, "929": {"poster_path": "/5axr56XqJH2xqkzI4j5sjzgV1Hu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 379014294, "overview": "When a freighter is viciously attacked in the Pacific Ocean, a team of experts -- including biologist Niko Tatopoulos and scientists Elsie Chapman and Mendel Craven -- concludes that an oversized reptile is the culprit. Before long, the giant lizard is loose in Manhattan, destroying everything within its reach. The team chases the monster to Madison Square Garden, where a brutal battle ensues.", "video": false, "id": 929, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Godzilla", "tagline": "Size does matter.", "vote_count": 279, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8k47vHM7YtLTH10ZOB5m07fPMMc.jpg", "poster_path": "/nncQXO299wkUWsjQUtpvRmSyFgP.jpg", "id": 221541, "name": "Godzilla Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0120685", "adult": false, "backdrop_path": "/d8aOyxSMD7oQGFsPORCU8AJ6EQ3.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Centropolis Film Productions", "id": 620}, {"name": "Fried Films", "id": 11343}, {"name": "Independent Pictures (II)", "id": 2833}, {"name": "Toho Film (Eiga) Co. Ltd.", "id": 622}], "release_date": "1998-05-19", "popularity": 1.04610712608252, "original_title": "Godzilla", "budget": 130000000, "cast": [{"name": "Matthew Broderick", "character": "Dr. Niko Tatopoulos", "id": 4756, "credit_id": "52fe428fc3a36847f80281d1", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Jean Reno", "character": "Philippe Roach\u00e9", "id": 1003, "credit_id": "52fe428fc3a36847f80281d5", "cast_id": 2, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Maria Pitillo", "character": "Audrey Timmonds", "id": 3208, "credit_id": "52fe428fc3a36847f80281d9", "cast_id": 3, "profile_path": "/ihaCNZzuR7P06OFqOf1aHmAIDna.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Victor 'Animal' Palotti", "id": 5587, "credit_id": "52fe428fc3a36847f80281dd", "cast_id": 4, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Colonel Hicks", "id": 14721, "credit_id": "52fe428fc3a36847f80281e1", "cast_id": 5, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Michael Lerner", "character": "Mayor Ebert", "id": 4250, "credit_id": "52fe428fc3a36847f80281e5", "cast_id": 6, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 5}, {"name": "Harry Shearer", "character": "Charles Caiman", "id": 6008, "credit_id": "52fe428fc3a36847f80281e9", "cast_id": 7, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 6}, {"name": "Arabella Field", "character": "Lucy Palotti", "id": 14722, "credit_id": "52fe428fc3a36847f80281ed", "cast_id": 8, "profile_path": "/aDhXyY1fwrS0gRdOJSc0uQPb3h5.jpg", "order": 7}, {"name": "Vicki Lewis", "character": "Dr. Elsie Chapman", "id": 14723, "credit_id": "52fe428fc3a36847f80281f1", "cast_id": 9, "profile_path": "/4IYuDOZKW9XxSahF1QsxwU4a0p4.jpg", "order": 8}, {"name": "Doug Savant", "character": "Sergeant O'Neal", "id": 14737, "credit_id": "52fe428fc3a36847f80281f5", "cast_id": 10, "profile_path": "/zg1NkpTEEjIvQDmTutRCiGZTKgm.jpg", "order": 9}, {"name": "Malcolm Danare", "character": "Dr. Mendel Craven", "id": 14738, "credit_id": "52fe428fc3a36847f80281f9", "cast_id": 11, "profile_path": "/6PQPp4Yim18xuNCBGQLg2cYAstY.jpg", "order": 10}, {"name": "Lorry Goldman", "character": "Gene, Mayor's Aide", "id": 14739, "credit_id": "52fe428fc3a36847f80281fd", "cast_id": 12, "profile_path": "/9yhQJUmqBCO9OsvIPR76X4B6t3S.jpg", "order": 11}, {"name": "Christian Aubert", "character": "Jean-Luc", "id": 14740, "credit_id": "52fe428fc3a36847f8028201", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Philippe Bergeron", "character": "Jean-Claude", "id": 14741, "credit_id": "52fe428fc3a36847f8028205", "cast_id": 14, "profile_path": "/ugHYNYMyn3zrKEtQJAnuEJrLiBr.jpg", "order": 13}, {"name": "Frank Bruynbroek", "character": "Jean-Pierre", "id": 14742, "credit_id": "52fe428fc3a36847f8028209", "cast_id": 15, "profile_path": "/v1GYIZjQPSGfx5qvArjony1C2is.jpg", "order": 14}, {"name": "Francois Giroday", "character": "as Jean-Philippe", "id": 538321, "credit_id": "52fe428fc3a36847f80282b5", "cast_id": 47, "profile_path": null, "order": 15}, {"name": "Nicholas J. Giangiulio", "character": "Ed", "id": 164283, "credit_id": "52fe428fc3a36847f80282b9", "cast_id": 48, "profile_path": "/a0F71gqC7H1p5tBbyOtEEM7J1B5.jpg", "order": 16}, {"name": "Robert Lesser", "character": "Murray", "id": 140176, "credit_id": "52fe428fc3a36847f80282bd", "cast_id": 49, "profile_path": null, "order": 17}, {"name": "Ralph Manza", "character": "Old Fisherman", "id": 151606, "credit_id": "52fe428fc3a36847f80282c1", "cast_id": 50, "profile_path": null, "order": 18}, {"name": "Greg Callahan", "character": "the Governor", "id": 1116812, "credit_id": "52fe428fc3a36847f80282c5", "cast_id": 51, "profile_path": null, "order": 19}, {"name": "Chris Ellis", "character": "General Anderson", "id": 8191, "credit_id": "52fe428fc3a36847f80282c9", "cast_id": 52, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 20}, {"name": "Nancy Cartwright", "character": "Caiman's Secretary", "id": 200, "credit_id": "52fe428fc3a36847f80282cd", "cast_id": 53, "profile_path": "/wb8RZu3vw7gDZoRFWNNpsbznRWC.jpg", "order": 21}, {"name": "Richard Gant", "character": "Admiral Phelps", "id": 16662, "credit_id": "52fe428fc3a36847f80282d1", "cast_id": 54, "profile_path": "/oYDHpuey2NMlGaGqMqZJVAoKoy5.jpg", "order": 22}, {"name": "Jack Moore", "character": "Leonard", "id": 117564, "credit_id": "52fe428fc3a36847f8028347", "cast_id": 104, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 23}, {"name": "Steve Giannelli", "character": "Jules", "id": 1116827, "credit_id": "52fe428fc3a36847f80282d5", "cast_id": 56, "profile_path": "/aIMSzuRTYTWHlaAUfzc2uS6KIJf.jpg", "order": 24}, {"name": "Brian Farabaugh", "character": "Arthur", "id": 1116829, "credit_id": "52fe428fc3a36847f80282d9", "cast_id": 57, "profile_path": null, "order": 25}, {"name": "Stephen Xavier Lee", "character": "Lt. Anderson", "id": 1116831, "credit_id": "52fe428fc3a36847f80282dd", "cast_id": 58, "profile_path": null, "order": 26}, {"name": "Bodhi Elfman", "character": "Freddie", "id": 1116832, "credit_id": "52fe428fc3a36847f80282e1", "cast_id": 59, "profile_path": null, "order": 27}, {"name": "Rich Battista", "character": "Jimmy", "id": 1116834, "credit_id": "52fe428fc3a36847f80282e5", "cast_id": 60, "profile_path": null, "order": 28}, {"name": "Lloyd Kino", "character": "Japanese Tanker Cook", "id": 1116836, "credit_id": "52fe428fc3a36847f80282e9", "cast_id": 61, "profile_path": null, "order": 29}, {"name": "Toshi Toda", "character": "Japanese Tanker Captain", "id": 156963, "credit_id": "52fe428fc3a36847f8028353", "cast_id": 107, "profile_path": "/pFYqicvIVtrSSZQKnbSOXl1cw8K.jpg", "order": 30}, {"name": "Clyde Kusatsu", "character": "Japanese Tanker Skipper", "id": 2249, "credit_id": "52fe428fc3a36847f8028357", "cast_id": 108, "profile_path": "/nfOvoNP4Gwo8LZO2UFZUnLu5sIU.jpg", "order": 31}, {"name": "Masaya Kato", "character": "Japanese Tanker Crew Member", "id": 4989, "credit_id": "52fe428fc3a36847f802835b", "cast_id": 109, "profile_path": "/9oBPC6b6fsaHu48dldzE5CYouqa.jpg", "order": 32}, {"name": "Lola Pashalinski", "character": "Pharmacist", "id": 1116851, "credit_id": "52fe428fc3a36847f80282ed", "cast_id": 66, "profile_path": "/nKnk6gETKT9kFMT9zAwlmUNhlyv.jpg", "order": 33}, {"name": "Rob Fukuzaki", "character": "WIDF Co-Anchor", "id": 1116852, "credit_id": "52fe428fc3a36847f80282f1", "cast_id": 67, "profile_path": null, "order": 34}, {"name": "Dale Harimoto", "character": "WKXI Anchor", "id": 1116853, "credit_id": "52fe428fc3a36847f80282f5", "cast_id": 68, "profile_path": null, "order": 35}, {"name": "Glenn Morshower", "character": "Kyle Terrington", "id": 12797, "credit_id": "52fe428fc3a36847f802835f", "cast_id": 110, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 36}, {"name": "Gary W. Cruz", "character": "WFKK Anchor", "id": 1116854, "credit_id": "52fe428fc3a36847f80282f9", "cast_id": 69, "profile_path": null, "order": 37}, {"name": "Derek Webster", "character": "Utah Captain", "id": 157029, "credit_id": "52fe428fc3a36847f8028363", "cast_id": 111, "profile_path": "/vS6FyYyx2G41Zozn1bINybpmsKY.jpg", "order": 38}, {"name": "Stuart Fratkin", "character": "Utah Ensign", "id": 78415, "credit_id": "52fe428fc3a36847f8028367", "cast_id": 112, "profile_path": null, "order": 39}, {"name": "Frank Cilberg", "character": "Utah Sailor", "id": 1116859, "credit_id": "52fe428fc3a36847f80282fd", "cast_id": 72, "profile_path": null, "order": 40}, {"name": "Jason Edward Jones", "character": "Utah Sailor", "id": 1116860, "credit_id": "52fe428fc3a36847f8028301", "cast_id": 73, "profile_path": null, "order": 41}, {"name": "Roger McIntyre", "character": "Utah Sailor", "id": 1116864, "credit_id": "52fe428fc3a36847f8028305", "cast_id": 74, "profile_path": "/q3FrwiwVo179rwVqL0TX1ZxKIWp.jpg", "order": 42}, {"name": "David Pressman", "character": "Anchorage Captain", "id": 111514, "credit_id": "52fe428fc3a36847f802836b", "cast_id": 113, "profile_path": "/d7E1CW5DfYEFvlxOGQ5IioQbW8t.jpg", "order": 43}, {"name": "Robert Faltisco", "character": "Anchorage Ensign", "id": 1116873, "credit_id": "52fe428fc3a36847f8028309", "cast_id": 76, "profile_path": null, "order": 44}, {"name": "Christopher Darius Maleki", "character": "Anchorage Ensign", "id": 1116874, "credit_id": "52fe428fc3a36847f802830d", "cast_id": 77, "profile_path": null, "order": 45}, {"name": "Scott Lusby", "character": "Anchorage Ensign", "id": 1116877, "credit_id": "52fe428fc3a36847f8028311", "cast_id": 78, "profile_path": null, "order": 46}, {"name": "Ali Afshar", "character": "Anchorage Sailor", "id": 294813, "credit_id": "52fe428fc3a36847f802836f", "cast_id": 114, "profile_path": "/qAg8CaQQTduVQ93M6E19NgM5Q4d.jpg", "order": 47}, {"name": "Terence Paul Winter", "character": "Apache Pilot", "id": 553985, "credit_id": "52fe428fc3a36847f8028373", "cast_id": 115, "profile_path": "/sP2ENHt7boDNRKxQL0VgJ4ZkOUZ.jpg", "order": 48}, {"name": "Kirk Geiger", "character": "Apache Pilot", "id": 84079, "credit_id": "52fe428fc3a36847f8028377", "cast_id": 116, "profile_path": null, "order": 49}, {"name": "Pat Mastroianni", "character": "Apache Pilot", "id": 174571, "credit_id": "52fe428fc3a36847f802837b", "cast_id": 117, "profile_path": "/nvgncS5r7LTuxYwyKpBjToqooBg.jpg", "order": 50}, {"name": "Eric Saiet", "character": "Apache Pilot", "id": 1116888, "credit_id": "52fe428fc3a36847f8028315", "cast_id": 83, "profile_path": "/ipkybEvZxszUwPFMcWFOGjjjdSp.jpg", "order": 51}, {"name": "Burt Bulos", "character": "Apache Pilot", "id": 15377, "credit_id": "52fe428fc3a36847f802834f", "cast_id": 106, "profile_path": null, "order": 52}, {"name": "Robert Floyd", "character": "Apache Pilot", "id": 182204, "credit_id": "52fe428fc3a36847f802834b", "cast_id": 105, "profile_path": "/wmaSaj1I1xEBypRfINoGpBbDdgD.jpg", "order": 53}, {"name": "Seth Peterson", "character": "Apache Pilot", "id": 109524, "credit_id": "52fe428fc3a36847f802837f", "cast_id": 118, "profile_path": "/oYc4Zhdbc1VmW7ZEyzCmIWJ5amh.jpg", "order": 54}, {"name": "Jamison Yang", "character": "F-18 Pilot", "id": 154551, "credit_id": "52fe428fc3a36847f8028383", "cast_id": 119, "profile_path": null, "order": 55}, {"name": "Nathan Anderson", "character": "F-18 Pilot", "id": 92282, "credit_id": "52fe428fc3a36847f8028387", "cast_id": 120, "profile_path": "/qrfrMs0JNAnqocUwIwnqdulEIeF.jpg", "order": 56}, {"name": "Mark Munafo", "character": "F-18 Pilot", "id": 1116895, "credit_id": "52fe428fc3a36847f8028319", "cast_id": 89, "profile_path": null, "order": 57}, {"name": "Dwight Schmidt", "character": "F-18 Pilot", "id": 1116896, "credit_id": "52fe428fc3a36847f802831d", "cast_id": 90, "profile_path": null, "order": 58}, {"name": "Dwayne Swingler", "character": "Raven Pilot #2", "id": 1116897, "credit_id": "52fe428fc3a36847f8028321", "cast_id": 91, "profile_path": null, "order": 59}, {"name": "Lawton Paseka", "character": "Officier", "id": 560150, "credit_id": "52fe428fc3a36847f802838b", "cast_id": 121, "profile_path": "/qu1T44oLfQzwrNx9JF0qF3HjGBm.jpg", "order": 60}, {"name": "Greg Collins", "character": "Soldier on the Bridge", "id": 58950, "credit_id": "52fe428fc3a36847f802838f", "cast_id": 122, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 61}, {"name": "James Black", "character": "Soldier", "id": 106911, "credit_id": "52fe428fc3a36847f8028343", "cast_id": 103, "profile_path": "/a1D1vL7PrVjyPCLs9E6OP6hmgIW.jpg", "order": 62}, {"name": "Thomas Giuseppe Giantonelli", "character": "Soldier", "id": 1116901, "credit_id": "52fe428fc3a36847f8028325", "cast_id": 95, "profile_path": null, "order": 63}, {"name": "Paul Ware", "character": "Soldier", "id": 1116902, "credit_id": "52fe428fc3a36847f8028329", "cast_id": 96, "profile_path": null, "order": 64}, {"name": "Montae Russell", "character": "Soldier on Plane", "id": 1116903, "credit_id": "52fe428fc3a36847f802832d", "cast_id": 97, "profile_path": "/qrxUqMpa3hbxEIxHKhrYfOHHG9f.jpg", "order": 65}, {"name": "Christopher Carruthers", "character": "Radio Technician", "id": 1116904, "credit_id": "52fe428fc3a36847f8028331", "cast_id": 98, "profile_path": null, "order": 66}, {"name": "Daniel Pearce", "character": "Radio Technician", "id": 1116905, "credit_id": "52fe428fc3a36847f8028335", "cast_id": 99, "profile_path": null, "order": 67}, {"name": "Mark Fite", "character": "Radio Operator", "id": 122805, "credit_id": "52fe428fc3a36847f8028393", "cast_id": 123, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 68}, {"name": "Craig Castaldo", "character": "Radio Man", "id": 1116907, "credit_id": "52fe428fc3a36847f8028339", "cast_id": 101, "profile_path": null, "order": 69}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe428fc3a36847f802820f", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.2, "runtime": 139}, "935": {"poster_path": "/tviJ68Wj4glQk3CPMvdvExYHxX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9164370, "overview": "An insane general starts a process to nuclear holocaust that a war room of politicians and generals frantically try to stop. A classic black and white war satire from director Stanley Kubrick starring Peter Sellers.", "video": false, "id": 935, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", "tagline": "The hot-line suspense comedy", "vote_count": 375, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0057012", "adult": false, "backdrop_path": "/8Sh5rRcOrBy4AIm3keZ50dOIn4D.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Hawk Films", "id": 88}], "release_date": "1964-01-29", "popularity": 1.09444615735472, "original_title": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", "budget": 1800000, "cast": [{"name": "Peter Sellers", "character": "Captain Mandrake/Pr\u00e4sident Muffley/Doktor Seltsam", "id": 12446, "credit_id": "52fe4290c3a36847f80287ad", "cast_id": 13, "profile_path": "/2uJvjoiTjvJfbd81S2AhRtdf2aU.jpg", "order": 0}, {"name": "George C. Scott", "character": "General \"Buck\" Turgidson", "id": 862, "credit_id": "52fe4290c3a36847f80287b1", "cast_id": 14, "profile_path": "/mWXDFKbEgb7ID845I1LNeaeoXT4.jpg", "order": 1}, {"name": "Sterling Hayden", "character": "Brigade General Jack D. Ripper", "id": 3088, "credit_id": "52fe4290c3a36847f80287b5", "cast_id": 15, "profile_path": "/aE85Dzwaf5rTbjLnMgOtpw47BSY.jpg", "order": 2}, {"name": "Keenan Wynn", "character": "Colonel Bat Guano", "id": 4966, "credit_id": "52fe4290c3a36847f80287bd", "cast_id": 17, "profile_path": "/6DcmPzaBXRrlgi75r2RK6yVWEMM.jpg", "order": 3}, {"name": "Slim Pickens", "character": "Major \"King\" Kong", "id": 14253, "credit_id": "52fe4290c3a36847f80287b9", "cast_id": 16, "profile_path": "/xO2rvqSBgZRJKjkVrFy1xeygxLF.jpg", "order": 4}, {"name": "Peter Bull", "character": "Botschafter De Sadesky", "id": 6600, "credit_id": "52fe4290c3a36847f80287c1", "cast_id": 18, "profile_path": "/iIh6WkuefTUVrEybz1CXdz86puI.jpg", "order": 5}, {"name": "James Earl Jones", "character": "Lt. Lothar Zogg", "id": 15152, "credit_id": "52fe4290c3a36847f80287d3", "cast_id": 23, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 6}, {"name": "Tracy Reed", "character": "Miss Scott", "id": 126354, "credit_id": "52fe4290c3a36847f80287c9", "cast_id": 21, "profile_path": "/mLKogjlAaCAiV4NosrXeHbi35qJ.jpg", "order": 7}, {"name": "Jack Creley", "character": "Mr. Staines", "id": 12485, "credit_id": "52fe4290c3a36847f80287c5", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Frank Berry", "character": "Lt. Dietrich", "id": 1332529, "credit_id": "53a570800e0a26143c0010fc", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Robert O'Neill", "character": "Adm. Randolph", "id": 1236452, "credit_id": "53a570ae0e0a2614450010ce", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Glenn Beck", "character": "Lt. Kivel", "id": 948173, "credit_id": "53e0a47a0e0a265a860068bf", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Roy Stephens", "character": "Frank", "id": 1332531, "credit_id": "53a571170e0a26143c00110b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Shane Rimmer", "character": "Capt. 'Ace' Owens", "id": 10657, "credit_id": "53a571330e0a2614420011a7", "cast_id": 28, "profile_path": "/ctrIOcWLjOB5rocS0vVHEjbS1Sx.jpg", "order": 13}, {"name": "Hal Galili", "character": "Burpelson AFB Defense Team Member", "id": 186212, "credit_id": "53a571490e0a2614320010de", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Paul Tamarin", "character": "Lt. Goldberg", "id": 185044, "credit_id": "53a5715b0e0a2614390010db", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Laurence Herder", "character": "Burpelson AFB Defense Team Member", "id": 1332532, "credit_id": "53a571750e0a26143600107f", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Gordon Tanner", "character": "Gen. Faceman", "id": 117301, "credit_id": "53e0a40e0e0a265a83006a66", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Burnell Tucker", "character": "Mandrake' aide (uncredited)", "id": 184980, "credit_id": "53a572130e0a261436001097", "cast_id": 34, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 18}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4290c3a36847f802876d", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.7, "runtime": 95}, "938": {"poster_path": "/7Ycea564MOyfNcDb3AdsU1brvqO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 15000000, "overview": "Two bounty hunters are in pursuit of \"El Indio\" one of the most wanted fugitives in the western territories, and his gang.", "video": false, "id": 938, "genres": [{"id": 37, "name": "Western"}], "title": "For a Few Dollars More", "tagline": "The man with no name is back... The man in black is waiting... a walking arsenal - he uncoils, strikes and kills!", "vote_count": 332, "homepage": "", "belongs_to_collection": {"backdrop_path": "/a4Lqp3QdEWF6zh740VpBg6yvTZA.jpg", "poster_path": "/lzUZptOL6iQqulMvhB2jfT5GepD.jpg", "id": 48317, "name": "The Man With No Name Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0059578", "adult": false, "backdrop_path": "/oElBniuP4fcYu7kOVXOz0mDdvmu.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Produzioni Europee Associati (PEA)", "id": 7508}], "release_date": "1965-12-18", "popularity": 1.01562949039549, "original_title": "Per qualche dollaro in pi\u00f9", "budget": 600000, "cast": [{"name": "Clint Eastwood", "character": "Monco", "id": 190, "credit_id": "52fe4290c3a36847f802895b", "cast_id": 17, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Lee Van Cleef", "character": "Col. Douglas Mortimer", "id": 4078, "credit_id": "52fe4290c3a36847f802895f", "cast_id": 18, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 1}, {"name": "Gian Maria Volont\u00e9", "character": "El Indio", "id": 14276, "credit_id": "52fe4290c3a36847f8028963", "cast_id": 19, "profile_path": "/fnluody7boW6FHuhXoUmO141BeU.jpg", "order": 2}, {"name": "Klaus Kinski", "character": "Wild", "id": 14277, "credit_id": "52fe4290c3a36847f8028967", "cast_id": 20, "profile_path": "/7gsJB7xlovz1khNID0B8yKA9TO0.jpg", "order": 3}, {"name": "Mara Krupp", "character": "Mary", "id": 14278, "credit_id": "52fe4290c3a36847f802896b", "cast_id": 21, "profile_path": "/igJcs5js0w5ha7CuHBLrd8enMgm.jpg", "order": 4}, {"name": "Luigi Pistilli", "character": "Groggy", "id": 5814, "credit_id": "52fe4290c3a36847f802896f", "cast_id": 22, "profile_path": "/dUgRQX1Ge6JRYZWtFJ2vjAXT8Vi.jpg", "order": 5}, {"name": "Joseph Egger", "character": "Old Prophet", "id": 14279, "credit_id": "52fe4290c3a36847f8028973", "cast_id": 23, "profile_path": "/hmHgePVKgnvurDkzTLsLrXLaJcU.jpg", "order": 6}, {"name": "Panos Papadopulos", "character": "Sancho Perez", "id": 14280, "credit_id": "52fe4290c3a36847f8028977", "cast_id": 24, "profile_path": "/lw3JxRkD9J4BtOn7ObKMeEvr58E.jpg", "order": 7}, {"name": "Benito Stefanelli", "character": "Yuri", "id": 4661, "credit_id": "52fe4290c3a36847f802897b", "cast_id": 25, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 8}, {"name": "Tom\u00e1s Blanco", "character": "Tucumcari sheriff", "id": 544572, "credit_id": "52fe4290c3a36847f802897f", "cast_id": 26, "profile_path": "/mD61xQyubnXkIwVb2GTE9cGjrxU.jpg", "order": 9}, {"name": "Mario Brega", "character": "Nino, Member of Indio's Gang", "id": 16318, "credit_id": "52fe4290c3a36847f8028983", "cast_id": 27, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 10}, {"name": "Aldo Sambrell", "character": "Cuchillio", "id": 49895, "credit_id": "52fe4290c3a36847f8028987", "cast_id": 28, "profile_path": "/AuDVbzviUIWEi9PJAeilFWTf5Xq.jpg", "order": 11}, {"name": "Luis Rodr\u00edguez", "character": "Manuel, Member of Indio's Gang", "id": 1139165, "credit_id": "52fe4290c3a36847f802898b", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Roberto Camardiel", "character": "Tucumcari station clerk", "id": 97114, "credit_id": "52fe4290c3a36847f802898f", "cast_id": 30, "profile_path": "/kSxi647UguAugxevF6uevBWtjvz.jpg", "order": 13}, {"name": "Lorenzo Robledo", "character": "Tomaso, Indio's Traitor", "id": 100930, "credit_id": "52fe4290c3a36847f8028993", "cast_id": 31, "profile_path": "/dcL4hCSPvOoH3ZL0J6dQG7JYoof.jpg", "order": 14}], "directors": [{"name": "Sergio Leone", "department": "Directing", "job": "Director", "credit_id": "52fe4290c3a36847f80288fd", "profile_path": "/cRfaWgAxgNsDkaT6WLpgbrtEAJj.jpg", "id": 4385}], "vote_average": 7.2, "runtime": 132}, "941": {"poster_path": "/mRXZcSFrf4A4HmGmFBQY8N4oxSC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120207127, "overview": "Veteran buttoned-down LAPD detective Roger Murtaugh is partnered with unhinged cop Martin Riggs, who -- distraught after his wife's death -- has a death wish and takes unnecessary risks with criminals at every turn. The odd couple embark on their first homicide investigation as partners, involving a young woman known to Murtaugh with ties to a drug and prostitution ring.", "video": false, "id": 941, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon", "tagline": "If these two can learn to stand each other... the bad guys don't stand a chance.", "vote_count": 500, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093409", "adult": false, "backdrop_path": "/wi2stpCDJam3dBYdsRTnKmBysXF.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1987-03-05", "popularity": 1.44402163601487, "original_title": "Lethal Weapon", "budget": 15000000, "cast": [{"name": "Mel Gibson", "character": "Sergeant Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028b27", "cast_id": 13, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Sergeant Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028b2b", "cast_id": 14, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Gary Busey", "character": "Mr. Joshua", "id": 2048, "credit_id": "52fe4291c3a36847f8028b2f", "cast_id": 15, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Mitchell Ryan", "character": "General Peter McAllister", "id": 14312, "credit_id": "52fe4291c3a36847f8028b33", "cast_id": 16, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 3}, {"name": "Tom Atkins", "character": "Michael Hunsaker", "id": 11784, "credit_id": "52fe4291c3a36847f8028b37", "cast_id": 17, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 4}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028b3b", "cast_id": 18, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 5}, {"name": "Traci Wolfe", "character": "Rianne Murtaugh", "id": 14314, "credit_id": "52fe4291c3a36847f8028b3f", "cast_id": 19, "profile_path": "/eJWPtc7wxWU0wxzfRi8ybZahsky.jpg", "order": 6}, {"name": "Jackie Swanson", "character": "Amanda Hunsaker", "id": 14315, "credit_id": "52fe4291c3a36847f8028b43", "cast_id": 20, "profile_path": "/vfMg8UD4u3EhzIoclnLgpihaFHO.jpg", "order": 7}, {"name": "Damon Hines", "character": "Nick Murtaugh", "id": 14316, "credit_id": "52fe4291c3a36847f8028b47", "cast_id": 21, "profile_path": "/xFpDZ8OkrzJQQVOTrl2WZ3s7K0t.jpg", "order": 8}, {"name": "Ebonie Smith", "character": "Carrie Murtaugh", "id": 14317, "credit_id": "52fe4291c3a36847f8028b4b", "cast_id": 22, "profile_path": "/1CwobVWob2BCso6Lj3epBvLd1J6.jpg", "order": 9}, {"name": "Gilles Kohler", "character": "Mercenary", "id": 14318, "credit_id": "52fe4291c3a36847f8028b4f", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Lycia Naff", "character": "Dixie", "id": 14319, "credit_id": "52fe4291c3a36847f8028b53", "cast_id": 24, "profile_path": "/ggGDSZGOON60nEo47oeqDiZwTvr.jpg", "order": 11}, {"name": "Jack Thibeau", "character": "Sergeant McCaskey", "id": 14320, "credit_id": "52fe4291c3a36847f8028b57", "cast_id": 25, "profile_path": "/ugO5Vb7ZXUz5VMpM9dZghJSt6ui.jpg", "order": 12}, {"name": "Ed O'Ross", "character": "Mendez", "id": 8658, "credit_id": "52fe4291c3a36847f8028b5b", "cast_id": 26, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 13}, {"name": "Don Gordon", "character": "Cop #2", "id": 14062, "credit_id": "52fe4291c3a36847f8028b65", "cast_id": 28, "profile_path": "/oSX1fJ1PY7RzOelwratXJX7kVTQ.jpg", "order": 14}, {"name": "Patrick Cameron", "character": "Cop #1", "id": 194553, "credit_id": "52fe4291c3a36847f8028b69", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Mary Ellen Trainor", "character": "Psychologist", "id": 23967, "credit_id": "52fe4291c3a36847f8028b6d", "cast_id": 30, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 16}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028ae1", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.5, "runtime": 110}, "942": {"poster_path": "/qEYSpENiOoltib1vtFXifGbdNbU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227853986, "overview": "In the opening chase, Martin Riggs and Roger Murtaugh stumble across a trunk full of Krugerrands. They follow the trail to a South African diplomat who's using his immunity to conceal a smuggling operation. When he plants a bomb under Murtaugh's toilet, the action explodes!", "video": false, "id": 942, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon 2", "tagline": "The magic is back!", "vote_count": 304, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "af", "name": "Afrikaans"}], "imdb_id": "tt0097733", "adult": false, "backdrop_path": "/pe3swzDtdJhkqOGIea4lyidnOCM.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1989-07-06", "popularity": 1.30342676158013, "original_title": "Lethal Weapon 2", "budget": 25000000, "cast": [{"name": "Mel Gibson", "character": "Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028c21", "cast_id": 18, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Sergeant Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028c25", "cast_id": 19, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Leo Getz", "id": 4517, "credit_id": "52fe4291c3a36847f8028c29", "cast_id": 20, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Joss Ackland", "character": "Arjen Rudd", "id": 14324, "credit_id": "52fe4291c3a36847f8028c2d", "cast_id": 21, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 3}, {"name": "Derrick O'Connor", "character": "Pieter 'Adolph' Vorstedt", "id": 14325, "credit_id": "52fe4291c3a36847f8028c31", "cast_id": 22, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 4}, {"name": "Patsy Kensit", "character": "Rika van den Haas", "id": 14326, "credit_id": "52fe4291c3a36847f8028c35", "cast_id": 23, "profile_path": "/oCLY2IIAO64vnaGNS8n42rHGjFK.jpg", "order": 5}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028c39", "cast_id": 24, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 6}, {"name": "Steve Kahan", "character": "Captain Ed Murphy", "id": 14328, "credit_id": "52fe4291c3a36847f8028c3d", "cast_id": 25, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 7}, {"name": "Mark Rolston", "character": "Hans", "id": 6576, "credit_id": "52fe4291c3a36847f8028c41", "cast_id": 26, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 8}, {"name": "Jenette Goldstein", "character": "Officer Meagan Shapiro", "id": 3981, "credit_id": "52fe4291c3a36847f8028c45", "cast_id": 27, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 9}, {"name": "Dean Norris", "character": "Tim Cavanaugh", "id": 14329, "credit_id": "52fe4291c3a36847f8028c49", "cast_id": 28, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 10}, {"name": "Juney Smith", "character": "Tom Wyler", "id": 14330, "credit_id": "52fe4291c3a36847f8028c4d", "cast_id": 29, "profile_path": "/ajDBZhChcwETIyCuCbbH3u39l4D.jpg", "order": 11}, {"name": "Nestor Serrano", "character": "Eddie Estaban", "id": 14331, "credit_id": "52fe4291c3a36847f8028c51", "cast_id": 30, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 12}, {"name": "Philip Suriano", "character": "Joseph Ragucci", "id": 14332, "credit_id": "52fe4291c3a36847f8028c55", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Grand L. Bush", "character": "Jerry Collins", "id": 14333, "credit_id": "52fe4291c3a36847f8028c59", "cast_id": 32, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 14}, {"name": "Allan Dean Moore", "character": "George", "id": 14334, "credit_id": "52fe4291c3a36847f8028c5d", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Jack McGee", "character": "Mickey McGee, the Carpenter", "id": 10489, "credit_id": "52fe4291c3a36847f8028c61", "cast_id": 34, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 16}, {"name": "Mary Ellen Trainor", "character": "Police Psychiatrist", "id": 23967, "credit_id": "52fe4291c3a36847f8028c6b", "cast_id": 36, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 17}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028bbd", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.3, "runtime": 114}, "943": {"poster_path": "/4ypm2KfdQuROp0VXbRD4Q6BKilP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 321731527, "overview": "Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action, this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.", "video": false, "id": 943, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon 3", "tagline": "The magic is back again!", "vote_count": 257, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104714", "adult": false, "backdrop_path": "/yNzqW70twGvLLe8WaJKC6KKcwJU.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1992-05-14", "popularity": 1.42714079089657, "original_title": "Lethal Weapon 3", "budget": 35000000, "cast": [{"name": "Mel Gibson", "character": "Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028d21", "cast_id": 21, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028d25", "cast_id": 22, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Leo Getz", "id": 4517, "credit_id": "52fe4291c3a36847f8028d29", "cast_id": 23, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Rene Russo", "character": "Lorna Cole", "id": 14343, "credit_id": "52fe4291c3a36847f8028d2d", "cast_id": 24, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 3}, {"name": "Stuart Wilson", "character": "Jack Travis", "id": 14344, "credit_id": "52fe4291c3a36847f8028d31", "cast_id": 25, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 4}, {"name": "Steve Kahan", "character": "Captain Ed Murphy", "id": 14328, "credit_id": "52fe4291c3a36847f8028d35", "cast_id": 26, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 5}, {"name": "Mary Ellen Trainor", "character": "Stephanie Woods", "id": 23967, "credit_id": "52fe4291c3a36847f8028d39", "cast_id": 27, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 6}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028d3d", "cast_id": 28, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 7}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028cab", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.1, "runtime": 118}, "944": {"poster_path": "/kpC9Y0jhwTqtRlcetxbgn3crnlU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 285444603, "overview": "In the combustible action franchise's final installment, maverick detectives Martin Riggs and Roger Murtaugh square off against Asian mobster Wah Sing Ku, who's up to his neck in slave trading and counterfeit currency. With help from gumshoe Leo Getz and smart-aleck rookie cop Lee Butters, Riggs and Murtaugh aim to take down Ku and his gang.", "video": false, "id": 944, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Lethal Weapon 4", "tagline": "The faces you love. The action you expect.", "vote_count": 229, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7PH31kIhz6BnzoP9cxG7JbkB6fT.jpg", "poster_path": "/xiK7NX0eWmFLb3OZrIS9IDS9p9N.jpg", "id": 945, "name": "Lethal Weapon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0122151", "adult": false, "backdrop_path": "/jssTFAf5MCBbZPA02vRSYSeVtHh.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}, {"name": "Donner/Shuler-Donner Productions", "id": 5739}], "release_date": "1998-07-09", "popularity": 1.92787934396955, "original_title": "Lethal Weapon 4", "budget": 140000000, "cast": [{"name": "Mel Gibson", "character": "Martin Riggs", "id": 2461, "credit_id": "52fe4291c3a36847f8028df9", "cast_id": 19, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Danny Glover", "character": "Roger Murtaugh", "id": 2047, "credit_id": "52fe4291c3a36847f8028dfd", "cast_id": 20, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 1}, {"name": "Joe Pesci", "character": "Leo Getz", "id": 4517, "credit_id": "52fe4291c3a36847f8028e01", "cast_id": 21, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 2}, {"name": "Rene Russo", "character": "Lorna Cole", "id": 14343, "credit_id": "52fe4291c3a36847f8028e05", "cast_id": 22, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 3}, {"name": "Jet Li", "character": "Wah Sing Ku", "id": 1336, "credit_id": "52fe4291c3a36847f8028e09", "cast_id": 23, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 4}, {"name": "Darlene Love", "character": "Trish Murtaugh", "id": 14313, "credit_id": "52fe4291c3a36847f8028e0d", "cast_id": 24, "profile_path": "/bVfVgYhCi9P9QiL67T0eYb4tRAc.jpg", "order": 5}, {"name": "Traci Wolfe", "character": "Rianne Murtaugh", "id": 14314, "credit_id": "52fe4291c3a36847f8028e11", "cast_id": 25, "profile_path": "/eJWPtc7wxWU0wxzfRi8ybZahsky.jpg", "order": 6}, {"name": "Kim Chan", "character": "Benny Chan", "id": 8400, "credit_id": "52fe4291c3a36847f8028e15", "cast_id": 26, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 7}, {"name": "Steve Kahan", "character": "Captain Ed Murphy", "id": 14328, "credit_id": "52fe4291c3a36847f8028e19", "cast_id": 27, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 8}, {"name": "Damon Hines", "character": "Nick Murtaugh", "id": 14316, "credit_id": "52fe4291c3a36847f8028e1d", "cast_id": 28, "profile_path": "/xFpDZ8OkrzJQQVOTrl2WZ3s7K0t.jpg", "order": 9}, {"name": "Ebonie Smith", "character": "Carrie Murtaugh", "id": 14317, "credit_id": "52fe4291c3a36847f8028e21", "cast_id": 29, "profile_path": "/1CwobVWob2BCso6Lj3epBvLd1J6.jpg", "order": 10}, {"name": "Michael Chow", "character": "Benny's Assistant", "id": 21631, "credit_id": "52fe4291c3a36847f8028e25", "cast_id": 30, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 11}, {"name": "Danny Arroyo", "character": "Gomez", "id": 33386, "credit_id": "52fe4291c3a36847f8028e29", "cast_id": 31, "profile_path": "/fecbbtGoR0PIXKBPnEY1O9BQ8L4.jpg", "order": 12}, {"name": "Elizabeth Sung", "character": "Hong's Wife", "id": 19861, "credit_id": "52fe4291c3a36847f8028e2d", "cast_id": 32, "profile_path": "/m8q9gRb9owm33pDuNlEeC59ck8W.jpg", "order": 13}, {"name": "Chris Rock", "character": "Det.Lee Butters", "id": 2632, "credit_id": "52fe4291c3a36847f8028e31", "cast_id": 33, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 14}, {"name": "Bob Jennings", "character": "Sheriff #1", "id": 113506, "credit_id": "52fe4291c3a36847f8028e35", "cast_id": 34, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 15}, {"name": "Jeanne Chinn", "character": "Ping's Mother", "id": 154675, "credit_id": "52fe4291c3a36847f8028e39", "cast_id": 35, "profile_path": "/wUOjPsPTey0P2F5OSWMcRk0Jvh7.jpg", "order": 16}, {"name": "Conan Lee", "character": "Four Father Michael Sing Ku", "id": 26783, "credit_id": "52fe4291c3a36847f8028e3d", "cast_id": 36, "profile_path": "/xAE76Nkhyqu7BLLTwz4z7w7kcRq.jpg", "order": 17}, {"name": "Mary Ellen Trainor", "character": "Dr. Stephanie Woods", "id": 23967, "credit_id": "52fe4291c3a36847f8028e41", "cast_id": 37, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 18}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028d8f", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.1, "runtime": 127}, "947": {"poster_path": "/we2lCeDzaeExUk68qyTDflHAq5m.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70000000, "overview": "Lawrence of Arabia is the classic film from David Lean starring Peter O\u2019Toole and based on the autobiography from Thomas Edward Lawrence who during the first World War was on assignment by the British Empire in Arabia. The film would become a cult classic and is known today as a masterpiece.", "video": false, "id": 947, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Lawrence of Arabia", "tagline": "A Mighty Motion Picture Of Action And Adventure!", "vote_count": 268, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056172", "adult": false, "backdrop_path": "/aSYxlJmM6393RF77ubSEYVKS5Ip.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Horizon Pictures (II)", "id": 11356}], "release_date": "1962-12-10", "popularity": 0.898581608482337, "original_title": "Lawrence of Arabia", "budget": 15000000, "cast": [{"name": "Peter O'Toole", "character": "T.E. Lawrence", "id": 11390, "credit_id": "52fe4291c3a36847f8028fa1", "cast_id": 18, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 0}, {"name": "Alec Guinness", "character": "Prince Feisal", "id": 12248, "credit_id": "52fe4291c3a36847f8028fa5", "cast_id": 19, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 1}, {"name": "Anthony Quinn", "character": "Auda abu Tayi", "id": 5401, "credit_id": "52fe4291c3a36847f8028fa9", "cast_id": 20, "profile_path": "/9sKpm4KCoUbmMbR86fpqcgBCHrJ.jpg", "order": 2}, {"name": "Jack Hawkins", "character": "General Lord Edmund Allenby", "id": 10018, "credit_id": "52fe4291c3a36847f8028fad", "cast_id": 21, "profile_path": "/7b6E24ZRLEPJwP0WQauXJPt41Fs.jpg", "order": 3}, {"name": "Omar Sharif", "character": "Sherif Ali", "id": 5004, "credit_id": "52fe4291c3a36847f8028fb1", "cast_id": 22, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 4}, {"name": "Claude Rains", "character": "Mr. Dryden", "id": 4113, "credit_id": "52fe4291c3a36847f8028fb5", "cast_id": 23, "profile_path": "/Ai8dxQY9p90n3YO9o3J6iEqxZ04.jpg", "order": 5}, {"name": "Anthony Quayle", "character": "Colonel Brighton", "id": 14371, "credit_id": "52fe4291c3a36847f8028fb9", "cast_id": 24, "profile_path": "/cGxouSdw4SoGE5Soxlj6KnpZObE.jpg", "order": 6}, {"name": "Jos\u00e9 Ferrer", "character": "Turkish Bey", "id": 12515, "credit_id": "52fe4291c3a36847f8028fbd", "cast_id": 25, "profile_path": "/4AeQKvJXTSFrjNtSKm2BFWVHdCr.jpg", "order": 7}, {"name": "Arthur Kennedy", "character": "Jackson Bentley", "id": 11128, "credit_id": "52fe4291c3a36847f8028fc1", "cast_id": 26, "profile_path": "/k8ew7ZMRadQeDyteqt7ZicSySub.jpg", "order": 8}, {"name": "Donald Wolfit", "character": "General Sir Archibald Murray", "id": 14372, "credit_id": "52fe4291c3a36847f8028fc5", "cast_id": 27, "profile_path": "/3lPf8aoBVgWoQc7NhSf8eQ1a5Tg.jpg", "order": 9}, {"name": "Zia Mohyeddin", "character": "Tafas", "id": 14373, "credit_id": "52fe4291c3a36847f8028fc9", "cast_id": 28, "profile_path": "/1oYap4c1e3yVa2iA3AKIISydnco.jpg", "order": 10}, {"name": "I.S. Johar", "character": "Gasim", "id": 35250, "credit_id": "52fe4291c3a36847f8028fcd", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Gamil Ratib", "character": "Majid", "id": 105634, "credit_id": "52fe4291c3a36847f8028fd1", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Michel Ray", "character": "Farraj", "id": 105633, "credit_id": "52fe4291c3a36847f8028fd5", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "John Dimech", "character": "Daud", "id": 105635, "credit_id": "52fe4291c3a36847f8028fd9", "cast_id": 32, "profile_path": null, "order": 14}], "directors": [{"name": "David Lean", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8028f43", "profile_path": "/iUTtDo1gl0Phe342xxoPq2w643R.jpg", "id": 12238}], "vote_average": 7.3, "runtime": 216}, "948": {"poster_path": "/vjoOFOTBJcJvA1weJejlZ92LZD4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70000000, "overview": "A psychotic murderer institutionalized since childhood for the murder of his sister, escapes and stalks a bookish teenage girl and her friends while his doctor chases him through the streets.", "video": false, "id": 948, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Halloween", "tagline": "", "vote_count": 250, "homepage": "http://www.halloweenmovies.com/filmarchive/h1plot.htm", "belongs_to_collection": {"backdrop_path": "/mmxf1sOe2T1sma0tH0TgTdcit1p.jpg", "poster_path": "/2uqHV6YcD9jEL2WuJYjXiiuRDqd.jpg", "id": 91361, "name": "Halloween Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0077651", "adult": false, "backdrop_path": "/vJHu0oQ35NW4AHUc35DtDK0BZvU.jpg", "production_companies": [{"name": "Compass International Pictures", "id": 14323}, {"name": "Falcon International Productions", "id": 22814}], "release_date": "1978-10-25", "popularity": 0.879914479976346, "original_title": "Halloween", "budget": 300000, "cast": [{"name": "Donald Pleasence", "character": "Dr. Sam Loomis", "id": 9221, "credit_id": "52fe4292c3a36847f8029083", "cast_id": 14, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Laurie Strode", "id": 8944, "credit_id": "52fe4292c3a36847f8029087", "cast_id": 15, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Nancy Kyes", "character": "Annie Brackett", "id": 11787, "credit_id": "52fe4292c3a36847f802908b", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "P.J. Soles", "character": "Lynda van der Klok", "id": 15500, "credit_id": "52fe4292c3a36847f802908f", "cast_id": 17, "profile_path": "/rzPjxFxrTJYtarrBPCw4E21BHBq.jpg", "order": 3}, {"name": "Charles Cyphers", "character": "Sheriff Leigh Brackett", "id": 11786, "credit_id": "52fe4292c3a36847f8029093", "cast_id": 18, "profile_path": "/pglMfoHMVEcziDlnl33DrZjRSM3.jpg", "order": 4}, {"name": "Kyle Richards", "character": "Lindsey Wallace", "id": 15503, "credit_id": "52fe4292c3a36847f8029097", "cast_id": 19, "profile_path": "/zSMK2gkiaV9ld7lDELqo7Wu87DO.jpg", "order": 5}, {"name": "Brian Andrews", "character": "Tommy Doyle", "id": 15505, "credit_id": "52fe4292c3a36847f802909b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "John Michael Graham", "character": "Bob Simms", "id": 15506, "credit_id": "52fe4292c3a36847f802909f", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Nancy Stephens", "character": "Marion Chambers", "id": 15508, "credit_id": "52fe4292c3a36847f80290a3", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Arthur Malet", "character": "Graveyard Keeper", "id": 13392, "credit_id": "52fe4292c3a36847f80290a7", "cast_id": 23, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 9}, {"name": "Mickey Yablans", "character": "Richie", "id": 15510, "credit_id": "52fe4292c3a36847f80290ab", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Brent Le Page", "character": "Lonnie Elamb", "id": 15511, "credit_id": "52fe4292c3a36847f80290af", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Adam Hollander", "character": "Keith", "id": 15513, "credit_id": "52fe4292c3a36847f80290b3", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Robert Phalen", "character": "Dr. Terence Wynn", "id": 15515, "credit_id": "52fe4292c3a36847f80290b7", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Tony Moran", "character": "Michael Myers", "id": 15516, "credit_id": "52fe4292c3a36847f80290bb", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Will Sandin", "character": "Michael Myers (age 6)", "id": 15517, "credit_id": "52fe4292c3a36847f80290bf", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Sandy Johnson", "character": "Judith Margaret Myers", "id": 15518, "credit_id": "52fe4292c3a36847f80290c3", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "David Kyle", "character": "Judith's Boyfriend", "id": 15519, "credit_id": "52fe4292c3a36847f80290c7", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Peter Griffith", "character": "Morgan Strode", "id": 1205471, "credit_id": "52fe4292c3a36847f80290d7", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Nick Castle", "character": "The Shape", "id": 14692, "credit_id": "52fe4292c3a36847f80290db", "cast_id": 35, "profile_path": "/ecUHW93fTzJLCEZcpfvfjgNMi1o.jpg", "order": 19}, {"name": "Barry Bernardi", "character": "Dead Mechanic (uncredited)", "id": 11772, "credit_id": "52fe4292c3a36847f80290df", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "John Carpenter", "character": "Paul, Annie's Boyfriend (voice) (uncredited)", "id": 11770, "credit_id": "52fe4292c3a36847f80290e3", "cast_id": 37, "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "order": 21}, {"name": "George O'Hanlon Jr.", "character": "Mr. Peter Myers (uncredited)", "id": 152289, "credit_id": "52fe4292c3a36847f80290e7", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Darla Rae", "character": "Student (uncredited)", "id": 1205472, "credit_id": "52fe4292c3a36847f80290eb", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Gwen Van Dam", "character": "Sanitarium Nurse (uncredited)", "id": 1205473, "credit_id": "52fe4292c3a36847f80290ef", "cast_id": 40, "profile_path": null, "order": 24}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe4291c3a36847f8029037", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 7.1, "runtime": 91}, "949": {"poster_path": "/zMyfPUelumio3tiDKPffaUpsQTD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 187436818, "overview": "Obsessive master thief Neil McCauley leads a top-notch crew on various daring heists throughout Los Angeles while determined detective Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.", "video": false, "id": 949, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Heat", "tagline": "A Los Angeles crime saga", "vote_count": 509, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0113277", "adult": false, "backdrop_path": "/7RRuRcGuWkZGuRyYugfXn0Fgrrr.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1995-12-15", "popularity": 1.18701569174099, "original_title": "Heat", "budget": 60000000, "cast": [{"name": "Al Pacino", "character": "Lt. Vincent Hanna", "id": 1158, "credit_id": "52fe4292c3a36847f80291f5", "cast_id": 25, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Neil McCauley", "id": 380, "credit_id": "52fe4292c3a36847f80291f9", "cast_id": 26, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Chris Shiherlis", "id": 5576, "credit_id": "52fe4292c3a36847f80291fd", "cast_id": 27, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Jon Voight", "character": "Nate", "id": 10127, "credit_id": "52fe4292c3a36847f8029201", "cast_id": 28, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 3}, {"name": "Tom Sizemore", "character": "Michael Cheritto", "id": 3197, "credit_id": "52fe4292c3a36847f8029205", "cast_id": 29, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 4}, {"name": "Diane Venora", "character": "Justine Hanna", "id": 6200, "credit_id": "52fe4292c3a36847f8029209", "cast_id": 30, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 5}, {"name": "Amy Brenneman", "character": "Eady", "id": 15851, "credit_id": "52fe4292c3a36847f802920d", "cast_id": 31, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 6}, {"name": "Ashley Judd", "character": "Charlene Shiherlis", "id": 15852, "credit_id": "52fe4292c3a36847f8029211", "cast_id": 32, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 7}, {"name": "Mykelti Williamson", "character": "Sergeant Drucker", "id": 34, "credit_id": "52fe4292c3a36847f8029215", "cast_id": 33, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 8}, {"name": "Wes Studi", "character": "Detective Casals", "id": 15853, "credit_id": "52fe4292c3a36847f8029219", "cast_id": 34, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 9}, {"name": "Ted Levine", "character": "Bosko", "id": 15854, "credit_id": "52fe4292c3a36847f802921d", "cast_id": 35, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 10}, {"name": "Dennis Haysbert", "character": "Donald Breedan", "id": 352, "credit_id": "52fe4292c3a36847f8029221", "cast_id": 36, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 11}, {"name": "William Fichtner", "character": "Roger Van Zant", "id": 886, "credit_id": "52fe4292c3a36847f8029225", "cast_id": 37, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 12}, {"name": "Natalie Portman", "character": "Lauren Gustafson", "id": 524, "credit_id": "52fe4292c3a36847f8029229", "cast_id": 38, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 13}, {"name": "Tom Noonan", "character": "Kelso", "id": 119232, "credit_id": "52fe4292c3a36847f802922d", "cast_id": 39, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 14}, {"name": "Tone-L\u014dc", "character": "Richard Torena", "id": 31004, "credit_id": "52fe4292c3a36847f8029237", "cast_id": 41, "profile_path": "/bKiyKnsDJFcaBdI0X23FHqkYrPv.jpg", "order": 15}, {"name": "Hank Azaria", "character": "Alan Marciano", "id": 5587, "credit_id": "52fe4292c3a36847f802923b", "cast_id": 42, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 16}, {"name": "Kevin Gage", "character": "Waingro", "id": 34839, "credit_id": "52fe4292c3a36847f802923f", "cast_id": 43, "profile_path": "/shMqCosEFquPy6qB8RfCCcDPq7M.jpg", "order": 17}, {"name": "Susan Traylor", "character": "Elaine Cheritto", "id": 4158, "credit_id": "52fe4292c3a36847f8029243", "cast_id": 44, "profile_path": "/A3ZpoAui1ure4Nx2b83wUMI8lvv.jpg", "order": 18}, {"name": "Kim Staunton", "character": "Lillian", "id": 17358, "credit_id": "52fe4292c3a36847f8029247", "cast_id": 45, "profile_path": "/9CJmJ5l7DZAtZvdbltalwoV2NfH.jpg", "order": 19}, {"name": "Danny Trejo", "character": "Trejo", "id": 11160, "credit_id": "52fe4292c3a36847f802924b", "cast_id": 46, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 20}, {"name": "Henry Rollins", "character": "Hugh Benny", "id": 9290, "credit_id": "52fe4292c3a36847f802924f", "cast_id": 47, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 21}, {"name": "Jerry Trimble", "character": "Schwartz", "id": 86602, "credit_id": "52fe4292c3a36847f8029253", "cast_id": 48, "profile_path": "/ez0PwSqQwd9WIGNybthklZZFNJ0.jpg", "order": 22}, {"name": "Martin Ferrero", "character": "Construction Clerk", "id": 4790, "credit_id": "52fe4292c3a36847f8029257", "cast_id": 49, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 23}, {"name": "Ricky Harris", "character": "Albert Torena", "id": 158452, "credit_id": "52fe4292c3a36847f802925b", "cast_id": 50, "profile_path": "/eJEzFSHTjGdUz1JDThdTR5C1Jrd.jpg", "order": 24}, {"name": "Begonya Plaza", "character": "Anna Trejo", "id": 181343, "credit_id": "52fe4292c3a36847f802925f", "cast_id": 51, "profile_path": "/2TtFPBtz0Bd3CXAc4W5K6zF66RY.jpg", "order": 25}, {"name": "Hazelle Goodman", "character": "Hooker's Mother", "id": 91756, "credit_id": "52fe4292c3a36847f8029263", "cast_id": 52, "profile_path": "/kTa2cn8cuJdxKJBqFnYHibIknI9.jpg", "order": 26}, {"name": "Ray Buktenica", "character": "Timmons", "id": 160970, "credit_id": "52fe4292c3a36847f8029267", "cast_id": 53, "profile_path": "/aMBLygqfsJv3QrBCvvZ7wMc3Ejq.jpg", "order": 27}, {"name": "Jeremy Piven", "character": "Dr. Bob", "id": 12799, "credit_id": "52fe4292c3a36847f802926b", "cast_id": 54, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 28}, {"name": "Xander Berkeley", "character": "Ralph", "id": 3982, "credit_id": "52fe4292c3a36847f802926f", "cast_id": 55, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 29}, {"name": "Rick Avery", "character": "Armoured Guard", "id": 81687, "credit_id": "52fe4292c3a36847f8029273", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Brad Baldridge", "character": "Children's Hospital Doctor", "id": 1090464, "credit_id": "52fe4292c3a36847f8029277", "cast_id": 57, "profile_path": null, "order": 31}, {"name": "Andrew Camuccio", "character": "Dominick", "id": 1090465, "credit_id": "52fe4292c3a36847f802927b", "cast_id": 58, "profile_path": null, "order": 32}, {"name": "Max Daniels", "character": "Shooter at Drive-in", "id": 175600, "credit_id": "52fe4292c3a36847f802927f", "cast_id": 59, "profile_path": null, "order": 33}, {"name": "Vince Deadrick Jr.", "character": "Driver at Drive-in", "id": 12879, "credit_id": "52fe4292c3a36847f8029283", "cast_id": 60, "profile_path": null, "order": 34}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f802916d", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 7.2, "runtime": 171}, "950": {"poster_path": "/isRuztu5Ch7FJdtSBLcG8QSOpEI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 660940780, "overview": "Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.", "video": false, "id": 950, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ice Age: The Meltdown", "tagline": "The Ice age is melting away.", "vote_count": 865, "homepage": "http://www.iceage2game.com/de/", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0438097", "adult": false, "backdrop_path": "/vPotRRx8kdDu7CkFovXovgnfiN4.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2006-03-23", "popularity": 1.439639902457, "original_title": "Ice Age: The Meltdown", "budget": 80000000, "cast": [{"name": "Ray Romano", "character": "Manny (voice)", "id": 15757, "credit_id": "52fe4292c3a36847f80292a5", "cast_id": 1, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Sid (voice)", "id": 5723, "credit_id": "52fe4292c3a36847f80292a9", "cast_id": 2, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Denis Leary", "character": "Diego (voice)", "id": 5724, "credit_id": "52fe4292c3a36847f80292ad", "cast_id": 3, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Ellie (voice)", "id": 15758, "credit_id": "52fe4292c3a36847f80292b1", "cast_id": 4, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Seann William Scott", "character": "Crash (voice)", "id": 57599, "credit_id": "52fe4292c3a36847f80292b5", "cast_id": 5, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 4}, {"name": "Josh Peck", "character": "Eddie (voice)", "id": 15760, "credit_id": "52fe4292c3a36847f80292b9", "cast_id": 6, "profile_path": "/mLQ9fKG7E1PLErgPWRMfIccwOTM.jpg", "order": 5}, {"name": "Jay Leno", "character": "Fast Tony (voice)", "id": 14991, "credit_id": "52fe4292c3a36847f80292bd", "cast_id": 7, "profile_path": "/5sh6KGewnyzNBrvXMsLVKJPVptx.jpg", "order": 6}, {"name": "Will Arnett", "character": "Lone Gunslinger Vulture (voice)", "id": 21200, "credit_id": "53aeba6d0e0a2659750046ad", "cast_id": 19, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 8}, {"name": "Chris Wedge", "character": "Scrat (voice)", "id": 5713, "credit_id": "53aeba8c0e0a26597d00460f", "cast_id": 20, "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "order": 9}, {"name": "Peter Ackerman", "character": "Dung Beetle Dad (voice)", "id": 5717, "credit_id": "53aebaa10e0a2659890046a3", "cast_id": 21, "profile_path": "/zlWcU7pKd9904zWe2207Xu3sBrn.jpg", "order": 10}, {"name": "Caitlin Rose Anderson", "character": "Glypto Boy Billy / Beaver Girl (voice)", "id": 1086503, "credit_id": "53aebab90e0a26597d004619", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Connor Anderson", "character": "Rhino Boy / Beaver Boy (voice)", "id": 1335105, "credit_id": "53aebacd0e0a2659890046aa", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Joseph Bologna", "character": "Mr. Start (voice)", "id": 46946, "credit_id": "53aebae20e0a265979004684", "cast_id": 24, "profile_path": "/f1OqZUD63SaIRmjXOtAcoRRehsI.jpg", "order": 13}, {"name": "Jack Crocicchia", "character": "Elk Boy (voice)", "id": 1335106, "credit_id": "53aebaf30e0a265986004514", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Peter DeSeve", "character": "Condor Chick (voice)", "id": 7967, "credit_id": "53aebb0c0e0a26598c0046aa", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f80292c9", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.3, "runtime": 91}, "951": {"poster_path": "/7NkSMYuyVamvCnM5mYD6FkD59Wu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201957688, "overview": "Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match \u2026 in more ways than one.", "video": false, "id": 951, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Kindergarten Cop", "tagline": "Go ahead, you tell him you didn't do your homework.", "vote_count": 126, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0099938", "adult": false, "backdrop_path": "/7wIYKxv1jCl9s5XmWVEWtY8PeBT.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1990-12-20", "popularity": 0.36004561490423, "original_title": "Kindergarten Cop", "budget": 15000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Detective John Kimble", "id": 1100, "credit_id": "52fe4292c3a36847f8029339", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Penelope Ann Miller", "character": "Joyce Palmieri / Rachel Crisp", "id": 14698, "credit_id": "52fe4292c3a36847f80293f7", "cast_id": 41, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 1}, {"name": "Pamela Reed", "character": "Detective Phoebe O'Hara", "id": 14699, "credit_id": "52fe4292c3a36847f802933d", "cast_id": 4, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 2}, {"name": "Linda Hunt", "character": "Miss Schlowski", "id": 12516, "credit_id": "52fe4292c3a36847f8029341", "cast_id": 5, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 3}, {"name": "Richard Tyson", "character": "Cullen Crisp, Sr.", "id": 14700, "credit_id": "52fe4292c3a36847f8029345", "cast_id": 6, "profile_path": "/pwgw79SpPJmn3406s72supF0EdS.jpg", "order": 4}, {"name": "Alix Koromzay", "character": "Cindy", "id": 14707, "credit_id": "52fe4292c3a36847f8029361", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Carroll Baker", "character": "Eleanor Crisp", "id": 14701, "credit_id": "52fe4292c3a36847f8029349", "cast_id": 7, "profile_path": "/flubg7SaCJZdZbuLvtWYv13cAaS.jpg", "order": 6}, {"name": "Cathy Moriarty", "character": "Sylvester's Mother", "id": 14702, "credit_id": "52fe4292c3a36847f802934d", "cast_id": 8, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 7}, {"name": "Joseph Cousins", "character": "Dominic Palmieri", "id": 14703, "credit_id": "52fe4292c3a36847f8029351", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Christian Cousins", "character": "Dominic Palmieri", "id": 73961, "credit_id": "54cc1c90c3a3687f8c0000df", "cast_id": 44, "profile_path": null, "order": 9}, {"name": "Park Overall", "character": "Samantha's Mother", "id": 14704, "credit_id": "52fe4292c3a36847f8029355", "cast_id": 10, "profile_path": "/eRbeKWWY53bTxSNfL3IyC0XfFpW.jpg", "order": 10}, {"name": "Richard Portnow", "character": "Captain Salazar", "id": 4255, "credit_id": "52fe4292c3a36847f8029359", "cast_id": 12, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 11}, {"name": "Tom Kurlander", "character": "Danny", "id": 14706, "credit_id": "52fe4292c3a36847f802935d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Betty Lou Henson", "character": "Keisha's Mother", "id": 14708, "credit_id": "52fe4292c3a36847f8029365", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Jayne Brook", "character": "Zach's Mother", "id": 11627, "credit_id": "52fe4292c3a36847f80293f3", "cast_id": 40, "profile_path": "/adrS4ZwaRgXpnJpV2U7uiFU9Cmd.jpg", "order": 14}, {"name": "Tom Dugan", "character": "Crisp's Lawyer", "id": 1144361, "credit_id": "52fe4292c3a36847f80293fb", "cast_id": 42, "profile_path": "/obQfb3EhWnbxEYK7S0bLZw6oMJ6.jpg", "order": 15}, {"name": "Catherine Reitman", "character": "3rd Grade Student", "id": 154826, "credit_id": "53037a11c3a3680a375c2d8b", "cast_id": 43, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 16}, {"name": "Miko Hughes", "character": "Joseph", "id": 8186, "credit_id": "54cc1dbcc3a3687f84000132", "cast_id": 45, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 17}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f802936b", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.9, "runtime": 111}, "254904": {"poster_path": "/lcg1bkriMVvc8m0jz5zk0yvzVTA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An ex- CIA operative is brought back in on a very personal mission and finds himself pitted against his former pupil in a deadly game involving high level CIA officials and the Russian president-elect.", "video": false, "id": 254904, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The November Man", "tagline": "A Spy is Never Out of the Game", "vote_count": 213, "homepage": "http://thenovemberman.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2402157", "adult": false, "backdrop_path": "/hSvpWAVXC781u5rOgI44799p2WL.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}], "release_date": "2014-08-27", "popularity": 3.42804948792402, "original_title": "The November Man", "budget": 0, "cast": [{"name": "Pierce Brosnan", "character": "Devereaux", "id": 517, "credit_id": "52fe4ed69251416c9113f81d", "cast_id": 4, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Luke Bracey", "character": "Mason", "id": 972356, "credit_id": "52fe4ed69251416c9113f821", "cast_id": 5, "profile_path": "/cfUv5lXfWVlbQeRaD8XZ0WDxqF9.jpg", "order": 1}, {"name": "Olga Kurylenko", "character": "Alice", "id": 18182, "credit_id": "52fe4ed69251416c9113f825", "cast_id": 6, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 2}, {"name": "Bill Smitrovich", "character": "Hanley", "id": 17200, "credit_id": "537d31200e0a2611cb000039", "cast_id": 10, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 3}, {"name": "Amila Terzimehic", "character": "Alexa", "id": 1357023, "credit_id": "53fc26ea0e0a267a75009e93", "cast_id": 24, "profile_path": "/vI5CjM0zLsEICoD7ir1q5EYvcww.jpg", "order": 4}, {"name": "Lazar Ristovski", "character": "Arkady Federov", "id": 70874, "credit_id": "537d31480e0a2611cb000041", "cast_id": 14, "profile_path": "/pANyfGd5U8eABBuZ6qoJSIWo6uc.jpg", "order": 5}, {"name": "Mediha Musliovic", "character": "Natalia Ulanova", "id": 1357024, "credit_id": "53fc26f70e0a267a69009e47", "cast_id": 25, "profile_path": "/pLbFf22WODxGsLplAK3AlK4gmIs.jpg", "order": 6}, {"name": "Eliza Taylor", "character": "Sarah", "id": 1213278, "credit_id": "537d30e80e0a2611cb00002d", "cast_id": 7, "profile_path": "/cmIohYx420e2VTlIyAGuNdv7si0.jpg", "order": 7}, {"name": "Caterina Scorsone", "character": "Celia", "id": 81684, "credit_id": "537d310c0e0a2611d100003c", "cast_id": 8, "profile_path": "/sR4fRd9fIEAnMR2ONWBxqpycdSx.jpg", "order": 8}, {"name": "Akie Kotabe", "character": "Meyers", "id": 1322309, "credit_id": "537d31510e0a2611c100004e", "cast_id": 15, "profile_path": "/kML3sC3PH4BolXQBYkpY44p6G4a.jpg", "order": 9}, {"name": "Will Patton", "character": "Perry Weinstein", "id": 883, "credit_id": "537d31160e0a2611d7000042", "cast_id": 9, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 10}, {"name": "Patrick Kennedy", "character": "Edgar Simpson", "id": 14432, "credit_id": "537d312b0e0a2611c1000047", "cast_id": 11, "profile_path": "/hWeYeOkoBBUlRLmmOGGwkZf22Lz.jpg", "order": 11}, {"name": "Dragan Marinkovi\u0107", "character": "Denisov", "id": 1050079, "credit_id": "53fc27060e0a267a78009a43", "cast_id": 26, "profile_path": "/5pvabT3awsenFlHK68iDHDvRcti.jpg", "order": 12}, {"name": "Ben Willens", "character": "Agent Jones", "id": 1357025, "credit_id": "53fc27100e0a267a69009e4e", "cast_id": 27, "profile_path": "/zvUKe34Z9KjgvyENs0TO6JN0PoT.jpg", "order": 13}, {"name": "Milo\u0161 Timotijevi\u0107", "character": "Fderov's Chief of Staff", "id": 938096, "credit_id": "537d31680e0a2611d400004d", "cast_id": 17, "profile_path": "/61W1hJQlBfGMpFgaElEGigXihRc.jpg", "order": 14}, {"name": "Dragan Dvojakovic", "character": "Ambassador", "id": 1410525, "credit_id": "54ae4483925141787900119c", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Tara Jevrosimovic", "character": "Lucy", "id": 1410529, "credit_id": "54ae44e1c3a368404f000e7d", "cast_id": 30, "profile_path": "/tiKPuHPwPqE8F7mxP44M2SSoy1R.jpg", "order": 16}, {"name": "Nina Mrdja", "character": "Mira Filipova (15 years)", "id": 1410530, "credit_id": "54ae4640c3a36842c60010bb", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Greg De Cuir", "character": "CIA Operator #1", "id": 1102409, "credit_id": "54ae473cc3a368666a00104a", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Steve Shapiro", "character": "CIA Operator #2", "id": 94467, "credit_id": "54ae4a14c3a3682f9d001326", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Ben Dimmock", "character": "CIA Operator #3", "id": 1410538, "credit_id": "54ae4adb92514114a1000e5e", "cast_id": 34, "profile_path": "/qIV9muwr9VeTSxde7CSXlTUNiIT.jpg", "order": 20}, {"name": "Justin Chapman", "character": "CIA Cleaner #1", "id": 1410997, "credit_id": "54af8c8a9251414afd0015ee", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Chad Z. King", "character": "CIA Cleaner #2", "id": 1411004, "credit_id": "54af8ec1c3a368399e003c60", "cast_id": 36, "profile_path": "/i3Ct2F2mDa2hjlU7cAOBFapM1cr.jpg", "order": 22}, {"name": "Marija Daki\u0107", "character": "Michelle (Barmaid)", "id": 1050208, "credit_id": "54af915f9251414aee001408", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Petar Bencina", "character": "Russian Thug at KGB Club", "id": 1411010, "credit_id": "54af91bdc3a3683fba003a35", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Milutin Milo\u0161evi\u0107", "character": "Serbian Hacker", "id": 88052, "credit_id": "54af93b5c3a3683fba003a75", "cast_id": 39, "profile_path": "/iiRpc2IlTnXEpw42snIvHd1UMhb.jpg", "order": 25}, {"name": "Nina Jankovi\u0107", "character": "Young Attractive Woman", "id": 226142, "credit_id": "54af9503c3a368226e001896", "cast_id": 40, "profile_path": "/vsj9FPC4FYZzDpAh5qcb4vteqdp.jpg", "order": 26}, {"name": "Jadranka Bugarski", "character": "Newscaster (O / S Ministry)", "id": 1411025, "credit_id": "54af955bc3a3682e4000152f", "cast_id": 41, "profile_path": null, "order": 27}, {"name": "Miodrag Stojanovic", "character": "Reporter #4 (O / S Ministry)", "id": 1411031, "credit_id": "54af9642c3a3682e4000154b", "cast_id": 42, "profile_path": null, "order": 28}, {"name": "Nina Lazarevic", "character": "Reporter #3 (O / S Ministry)", "id": 1411034, "credit_id": "54af96b29251414ae5001556", "cast_id": 43, "profile_path": null, "order": 29}, {"name": "Tijana Plemic", "character": "Reporter #2 (O / S Ministry)", "id": 1411037, "credit_id": "54af96fe9251414ae500155b", "cast_id": 44, "profile_path": null, "order": 30}, {"name": "Nebojsa Djordjevic", "character": "Reporter #1 (O / S Ministry)", "id": 1411050, "credit_id": "54af97f2c3a368399e003d7d", "cast_id": 45, "profile_path": null, "order": 31}, {"name": "Marko Markovic", "character": "Russian Security Guard", "id": 1411059, "credit_id": "54af99809251414a3d00145f", "cast_id": 46, "profile_path": null, "order": 32}, {"name": "Ilija Labalo", "character": "CIA Agent (scanner guy)", "id": 1411060, "credit_id": "54af9a359251414ae50015c1", "cast_id": 47, "profile_path": null, "order": 33}, {"name": "Mark Mottram", "character": "CIA Agent - Jake", "id": 1411061, "credit_id": "54af9ad8c3a3687744001f39", "cast_id": 48, "profile_path": null, "order": 34}, {"name": "Yulia Martynyuk", "character": "Station Ticket Clerk", "id": 1411062, "credit_id": "54af9b4ec3a3682e400015c1", "cast_id": 49, "profile_path": null, "order": 35}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4ed69251416c9113f80d", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 6.1, "runtime": 108}, "953": {"poster_path": "/yumzX3Fn7geEKEjuAGNcRjZETPE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 532680671, "overview": "Zoo animals leave the comforts of man-made habitats for exotic adventure in this animated family film. After escaping from the zoo, four friends -- a lion, a hippo, a zebra and a giraffe -- are sent back to Africa. When their ship capsizes, stranding them on Madagascar, an island populated by crazy critters, the pals must adapt to jungle life and their new roles as wild animals.", "video": false, "id": 953, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Madagascar", "tagline": "It's All Some Type Of Whacked Out Conspiracy.", "vote_count": 1442, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0351283", "adult": false, "backdrop_path": "/aGIEgcIqVtGRPULbc3CJnTk5BRv.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2005-05-26", "popularity": 1.80502386625882, "original_title": "Madagascar", "budget": 75000000, "cast": [{"name": "Ben Stiller", "character": "Alex", "id": 7399, "credit_id": "52fe4292c3a36847f8029415", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Chris Rock", "character": "Marty", "id": 2632, "credit_id": "52fe4292c3a36847f8029419", "cast_id": 2, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Melman", "id": 14409, "credit_id": "52fe4292c3a36847f802941d", "cast_id": 3, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Jada Pinkett Smith", "character": "Gloria", "id": 9575, "credit_id": "52fe4292c3a36847f8029421", "cast_id": 4, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 3}, {"name": "Sacha Baron Cohen", "character": "Julien", "id": 6730, "credit_id": "52fe4292c3a36847f8029425", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 4}, {"name": "Paco Le\u00f3n", "character": "como Alex", "id": 224870, "credit_id": "52fe4292c3a36847f8029435", "cast_id": 8, "profile_path": "/o3v5983Wi6UUsEts0da2pV42dA9.jpg", "order": 5}, {"name": "Cedric the Entertainer", "character": "Maurice", "id": 5726, "credit_id": "53af3b530e0a265989005130", "cast_id": 11, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 6}, {"name": "Andy Richter", "character": "Mort", "id": 28637, "credit_id": "53af3b670e0a26597d005116", "cast_id": 12, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 7}, {"name": "Tom McGrath", "character": "Skipper / Fossa / Panicky Man on Subway", "id": 18864, "credit_id": "53af3b800e0a26597d00511a", "cast_id": 13, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 8}, {"name": "Christopher Knights", "character": "Private", "id": 12097, "credit_id": "53af3b980e0a265975005125", "cast_id": 14, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 9}, {"name": "Chris Miller", "character": "Kowalski", "id": 12098, "credit_id": "53af3bb40e0a26598900513f", "cast_id": 15, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 10}, {"name": "Conrad Vernon", "character": "Mason", "id": 12080, "credit_id": "53af3bcf0e0a265986004faf", "cast_id": 16, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 11}, {"name": "Eric Darnell", "character": "Zoo Announcer / Lemur #1 / Fossa / Subway Car Announcer", "id": 18863, "credit_id": "53af3bee0e0a26597500512b", "cast_id": 17, "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "order": 12}, {"name": "David Cowgill", "character": "Police Horse", "id": 60232, "credit_id": "53af3c340e0a26598900514a", "cast_id": 18, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 13}, {"name": "Elisa Gabrielli", "character": "Old Lady", "id": 64445, "credit_id": "53af3c6a0e0a26597d00512c", "cast_id": 20, "profile_path": "/u2e1WxQ6ML5NlNcj4XLSEvYBahG.jpg", "order": 15}, {"name": "Stephen Apostolina", "character": "Police Officer (as Steve Apostolina)", "id": 1340665, "credit_id": "55351a7ac3a3682dc20023ab", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Devika Parikh", "character": "News Reporter", "id": 582209, "credit_id": "55351aea925141388b00179c", "cast_id": 24, "profile_path": "/tch3IyCHrmluh63CvY5h00960TO.jpg", "order": 17}, {"name": "David P. Smith", "character": "Spider / Lemur #2", "id": 1077844, "credit_id": "55351b56925141675e001ff3", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Cody Cameron", "character": "Willie", "id": 12095, "credit_id": "55351b8592514125dc003c5d", "cast_id": 26, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 19}, {"name": "Bob Saget", "character": "Zoo Animal", "id": 72450, "credit_id": "55351bbcc3a36848ca0067f7", "cast_id": 27, "profile_path": "/nWWoeqvwPWv21jnEbPoGFpM0s1n.jpg", "order": 20}, {"name": "Jan Josef Liefers", "character": "Alex", "id": 1852, "credit_id": "55351c029251417eb8001a0c", "cast_id": 28, "profile_path": "/9An5cSGFByHYYKAWHcqDyb9rJkE.jpg", "order": 21}, {"name": "Bastian Pastewka", "character": "Melman", "id": 16815, "credit_id": "55351c4e9251417eb8001a14", "cast_id": 29, "profile_path": "/m4MxiIeMyu8sQRhSfN4hIHrw7Ks.jpg", "order": 22}, {"name": "Jeffrey Katzenberg", "character": "Rico (uncredited)", "id": 12062, "credit_id": "55351c88c3a3682dc20023d5", "cast_id": 30, "profile_path": null, "order": 23}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f802942b", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f8029431", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}], "vote_average": 6.2, "runtime": 86}, "954": {"poster_path": "/1PVKS17pIBFsIhgFws2uagPDNLW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 457696359, "overview": "When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.", "video": false, "id": 954, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible", "tagline": "Expect the Impossible.", "vote_count": 1036, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}], "imdb_id": "tt0117060", "adult": false, "backdrop_path": "/7CiZuIPCLvhhMICT2PONuwr2BMG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "1996-05-21", "popularity": 1.40580641650526, "original_title": "Mission: Impossible", "budget": 80000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe4293c3a36847f8029509", "cast_id": 22, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jon Voight", "character": "Jim Phelps", "id": 10127, "credit_id": "52fe4293c3a36847f802950d", "cast_id": 23, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Emmanuelle B\u00e9art", "character": "Claire Phelps", "id": 4885, "credit_id": "52fe4293c3a36847f8029511", "cast_id": 24, "profile_path": "/dICNGDe2Sgz73Febl0TJZpEKO9f.jpg", "order": 2}, {"name": "Henry Czerny", "character": "Eugene Kittridge", "id": 15319, "credit_id": "52fe4293c3a36847f8029515", "cast_id": 25, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 3}, {"name": "Jean Reno", "character": "Franz Krieger", "id": 1003, "credit_id": "52fe4293c3a36847f8029519", "cast_id": 26, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe4293c3a36847f802951d", "cast_id": 27, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 5}, {"name": "Kristin Scott Thomas", "character": "Sarah Davies", "id": 5470, "credit_id": "52fe4293c3a36847f8029521", "cast_id": 28, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 6}, {"name": "Vanessa Redgrave", "character": "Max", "id": 13333, "credit_id": "52fe4293c3a36847f8029525", "cast_id": 29, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 7}, {"name": "Dale Dye", "character": "Frank Barnes", "id": 3211, "credit_id": "52fe4293c3a36847f8029529", "cast_id": 30, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 8}, {"name": "Marcel Iures", "character": "Alexander Golitsyn", "id": 15320, "credit_id": "52fe4293c3a36847f802952d", "cast_id": 31, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 9}, {"name": "Ion Caramitru", "character": "Zozimov", "id": 15321, "credit_id": "52fe4293c3a36847f8029531", "cast_id": 32, "profile_path": "/lHgFi4CUYavMKVW7xTbHj4CoMEn.jpg", "order": 10}, {"name": "Ingeborga Dapkunaite", "character": "Hannah Williams", "id": 14593, "credit_id": "52fe4293c3a36847f8029535", "cast_id": 33, "profile_path": "/hVqzjEBJiaYp9sTJA4IXNLJtLK2.jpg", "order": 11}, {"name": "Valentina Yakunina", "character": "Drunken Female IMF Agent", "id": 15322, "credit_id": "52fe4293c3a36847f8029539", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Marek Va\u0161ut", "character": "Drunken Male IMF Agent", "id": 10849, "credit_id": "52fe4293c3a36847f802953d", "cast_id": 35, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 13}, {"name": "Nathan Osgood", "character": "Kittridge Technician", "id": 15323, "credit_id": "52fe4293c3a36847f8029541", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Keith Campbell", "character": "Fireman (uncredited)", "id": 15318, "credit_id": "53b94ecdc3a3685eb70055d7", "cast_id": 41, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 15}, {"name": "Emilio Estevez", "character": "Jack Harmen", "id": 2880, "credit_id": "548621b0925141656f000168", "cast_id": 42, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4292c3a36847f8029493", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 6.3, "runtime": 110}, "955": {"poster_path": "/RXZPty2YYMPLQ6KHC47li2laRP.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 546388105, "overview": "With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.", "video": false, "id": 955, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible II", "tagline": "Expect the impossible again", "vote_count": 702, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120755", "adult": false, "backdrop_path": "/bDdVZNvxb670EMlZqeIy6RdyJ4V.jpg", "production_companies": [{"name": "Munich Film Partners & Company (MFP) MI2 Productions", "id": 51199}, {"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2000-05-23", "popularity": 0.931769214600103, "original_title": "Mission: Impossible II", "budget": 125000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe4293c3a36847f8029665", "cast_id": 31, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Dougray Scott", "character": "Sean Ambrose", "id": 15336, "credit_id": "52fe4293c3a36847f8029669", "cast_id": 32, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 1}, {"name": "Thandie Newton", "character": "Nyah Nordoff-Hall", "id": 9030, "credit_id": "52fe4293c3a36847f802966d", "cast_id": 33, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe4293c3a36847f8029671", "cast_id": 34, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Richard Roxburgh", "character": "Hugh Stamp", "id": 12206, "credit_id": "52fe4293c3a36847f8029675", "cast_id": 35, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 4}, {"name": "John Polson", "character": "Billy Baird", "id": 15337, "credit_id": "52fe4293c3a36847f8029679", "cast_id": 36, "profile_path": "/l5NGqc8aLYuw6RUpI0ko7Cdv41e.jpg", "order": 5}, {"name": "Brendan Gleeson", "character": "John C. McCloy", "id": 2039, "credit_id": "52fe4293c3a36847f802967d", "cast_id": 37, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 6}, {"name": "Rade \u0160erbed\u017eija", "character": "Dr. Nekhorvich", "id": 1118, "credit_id": "52fe4293c3a36847f8029681", "cast_id": 38, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 7}, {"name": "William Mapother", "character": "Wallis", "id": 15338, "credit_id": "52fe4293c3a36847f8029685", "cast_id": 39, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 8}, {"name": "Dominic Purcell", "character": "Ulrich", "id": 10862, "credit_id": "52fe4293c3a36847f8029689", "cast_id": 40, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 9}, {"name": "Mathew Wilkinson", "character": "Michael", "id": 15339, "credit_id": "52fe4293c3a36847f802968d", "cast_id": 41, "profile_path": "/8xB7nXqIh6qyiS6rSTu0d6SZSV4.jpg", "order": 10}, {"name": "Nicholas Bell", "character": "Accountant", "id": 15340, "credit_id": "52fe4293c3a36847f8029691", "cast_id": 42, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 11}, {"name": "Cristina Brogeras", "character": "Flamenco Dancer", "id": 15341, "credit_id": "52fe4293c3a36847f8029695", "cast_id": 43, "profile_path": null, "order": 12}, {"name": "Kee Chan", "character": "Chemist", "id": 15342, "credit_id": "52fe4293c3a36847f8029699", "cast_id": 44, "profile_path": "/daRXLJaABxXgHK65IKlsqvyrG12.jpg", "order": 13}, {"name": "Kim Fleming", "character": "Larrabee", "id": 15343, "credit_id": "52fe4293c3a36847f802969d", "cast_id": 45, "profile_path": "/xL8QA3ty9HVMrot2JFeSNY90SPb.jpg", "order": 14}, {"name": "Anthony Hopkins", "character": "Mission Commander Swanbeck", "id": 4173, "credit_id": "52fe4293c3a36847f80296a7", "cast_id": 47, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 15}, {"name": "Christian Manon", "character": "Dr. Gradsky", "id": 1451740, "credit_id": "5525aaadc3a3687e0e00250f", "cast_id": 48, "profile_path": null, "order": 16}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe4293c3a36847f80296a3", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.7, "runtime": 123}, "956": {"poster_path": "/5tMxKlzRSvA6HoPAuFRcEMoEZsY.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 395668139, "overview": "Retired from active duty to train new IMF agents, Ethan Hunt is called back into action to confront sadistic arms dealer Owen Davian. Hunt must try to protect his girlfriend while working with his new team to complete the mission.", "video": false, "id": 956, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible III", "tagline": "The Mission Begins 05:05:06.", "vote_count": 725, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0317919", "adult": false, "backdrop_path": "/kOELgNnVt6EGCjtDXx85YUw6p8X.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Paramount Pictures", "id": 4}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Studio Babelsberg", "id": 264}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "The Fourth Production Company Film Group", "id": 22102}], "release_date": "2006-05-04", "popularity": 1.96999017151525, "original_title": "Mission: Impossible III", "budget": 150000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe4293c3a36847f802977d", "cast_id": 23, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Owen Davian", "id": 1233, "credit_id": "52fe4293c3a36847f8029781", "cast_id": 24, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe4293c3a36847f8029785", "cast_id": 25, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 2}, {"name": "Billy Crudup", "character": "Musgrave", "id": 8289, "credit_id": "52fe4293c3a36847f8029789", "cast_id": 26, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 3}, {"name": "Jonathan Rhys Meyers", "character": "Declan", "id": 1244, "credit_id": "52fe4293c3a36847f802978d", "cast_id": 27, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 4}, {"name": "Michelle Monaghan", "character": "Julia", "id": 11705, "credit_id": "52fe4293c3a36847f8029791", "cast_id": 28, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 5}, {"name": "Keri Russell", "character": "Lindsey Farris", "id": 41292, "credit_id": "52fe4293c3a36847f8029795", "cast_id": 29, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 6}, {"name": "Maggie Q", "character": "Zhen", "id": 21045, "credit_id": "52fe4293c3a36847f8029799", "cast_id": 30, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 7}, {"name": "Simon Pegg", "character": "Benji", "id": 11108, "credit_id": "52fe4293c3a36847f802979d", "cast_id": 31, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 8}, {"name": "Aaron Paul", "character": "Rick", "id": 84497, "credit_id": "52fe4293c3a36847f80297a1", "cast_id": 32, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 9}, {"name": "Laurence Fishburne", "character": "Theodore Brassel", "id": 2975, "credit_id": "52fe4293c3a36847f80297b7", "cast_id": 36, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 10}, {"name": "Rose Rollins", "character": "Ellie", "id": 1219489, "credit_id": "52fe4293c3a36847f80297bb", "cast_id": 37, "profile_path": "/vEd9E5kVW17pwN4LFj3JG3ivAfw.jpg", "order": 11}, {"name": "Bahar Soomekh", "character": "Davian's Translator", "id": 2677, "credit_id": "52fe4293c3a36847f80297bf", "cast_id": 38, "profile_path": "/l3tlQiTmny4jjWidesht3nlt6sW.jpg", "order": 12}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe4293c3a36847f80296fb", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 6.1, "runtime": 126}, "957": {"poster_path": "/xWt9KAcToCRdJ6JH8JyZZlhkVgG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38119483, "overview": "When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of \"The Schwartz.\" Can he master it in time to save the day?", "video": false, "id": 957, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Spaceballs", "tagline": "May the schwartz be with you", "vote_count": 269, "homepage": "http://www.mgm.com/view/movie/1873/Spaceballs/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094012", "adult": false, "backdrop_path": "/mMblxwsvvJ9wu8CVXVVjX4MBuN2.jpg", "production_companies": [{"name": "Brooksfilms Ltd.", "id": 617}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1987-06-24", "popularity": 0.957526755494537, "original_title": "Spaceballs", "budget": 22700000, "cast": [{"name": "Mel Brooks", "character": "President Skroob/Yoghurt", "id": 14639, "credit_id": "52fe4293c3a36847f8029887", "cast_id": 24, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 0}, {"name": "Rick Moranis", "character": "Dark Helmet", "id": 8872, "credit_id": "52fe4293c3a36847f802988b", "cast_id": 26, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 1}, {"name": "Bill Pullman", "character": "Lone Starr", "id": 8984, "credit_id": "52fe4293c3a36847f802988f", "cast_id": 27, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 2}, {"name": "Daphne Zuniga", "character": "Princess Vespa", "id": 14668, "credit_id": "52fe4293c3a36847f8029893", "cast_id": 28, "profile_path": "/wwjs9c04v4phsLkMMCCVtlDjIP0.jpg", "order": 3}, {"name": "John Candy", "character": "Barfolemew 'Barf'", "id": 7180, "credit_id": "52fe4293c3a36847f8029897", "cast_id": 29, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 4}, {"name": "George Wyner", "character": "Colonel Sandurz", "id": 14669, "credit_id": "52fe4293c3a36847f802989b", "cast_id": 30, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 5}, {"name": "Joan Rivers", "character": "Dot Matrix (voice)", "id": 14670, "credit_id": "52fe4293c3a36847f802989f", "cast_id": 31, "profile_path": "/5BrrmJsKaDABJJWmAWKSzkaa1On.jpg", "order": 6}, {"name": "Dick Van Patten", "character": "King Roland", "id": 14671, "credit_id": "52fe4293c3a36847f80298a3", "cast_id": 32, "profile_path": "/gZumTJacsExMTwMwNCAQ54i2k2l.jpg", "order": 7}, {"name": "Michael Winslow", "character": "Radar Technician", "id": 14672, "credit_id": "52fe4293c3a36847f80298a7", "cast_id": 33, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 8}, {"name": "Lorene Yarnell Jansson", "character": "Dot Matrix", "id": 14673, "credit_id": "52fe4293c3a36847f80298ab", "cast_id": 34, "profile_path": "/uKPyEiHbdMUFjmZSb1FTBUvmDGV.jpg", "order": 9}, {"name": "John Hurt", "character": "Kane", "id": 5049, "credit_id": "52fe4293c3a36847f80298af", "cast_id": 35, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 10}, {"name": "Ed Gale", "character": "Dink #1", "id": 1471, "credit_id": "52fe4293c3a36847f80298b3", "cast_id": 36, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 11}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe4293c3a36847f802980b", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 6.5, "runtime": 96}, "82881": {"poster_path": "/xCpSU2tyeBkhVzTqXht8ClutMkn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The kingdom is in a festive mood as everyone gathers for the royal wedding of Rapunzel and Flynn. However, when Pascal and Maximus, as flower chameleon and ring bearer, respectively, lose the gold bands, a frenzied search and recovery mission gets underway. As the desperate duo tries to find the rings before anyone discovers that they\u2019re missing, they leave behind a trail of comical chaos that includes flying lanterns, a flock of doves, a wine barrel barricade and a very sticky finale. Will Maximus and Pascal save the day and make it to the church in time? And will they ever get Flynn\u2019s nose right?", "video": false, "id": 82881, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Tangled Ever After", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hz2V5ArAbox1dq0vu78ARGaTVLC.jpg", "poster_path": "/hp1djgq1YgewS9HzTczTUPDwOJQ.jpg", "id": 129777, "name": "Tangled Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2112281", "adult": false, "backdrop_path": "/2v0KYmFWysQSnrK4Bnwe8egrMMo.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2012-01-13", "popularity": 0.612485425049145, "original_title": "Tangled Ever After", "budget": 0, "cast": [{"name": "Mandy Moore", "character": "Rapunzel (voice)", "id": 16855, "credit_id": "52fe487a9251416c9108dd2f", "cast_id": 6, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Zachary Levi", "character": "Flynn Rider (voice)", "id": 69899, "credit_id": "52fe487a9251416c9108dd2b", "cast_id": 3, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 1}, {"name": "Alan Dale", "character": "Priest (voice)", "id": 52760, "credit_id": "550d8004925141469c005ad7", "cast_id": 21, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 2}, {"name": "Paul F. Tompkins", "character": "Short Thug (voice)", "id": 1219029, "credit_id": "550d801ec3a368487d005e70", "cast_id": 22, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 3}, {"name": "Kari Wahlgren", "character": "Queen (voice)", "id": 116315, "credit_id": "52fe487a9251416c9108dd33", "cast_id": 9, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 4}, {"name": "Mark Allan Stewart", "character": "Dove Caller (voice)", "id": 649103, "credit_id": "52fe487a9251416c9108dd3b", "cast_id": 11, "profile_path": "/jmn31dR3U7qoAQLBlcyCTg04eqU.jpg", "order": 5}, {"name": "Byron Howard", "character": "Lantern Wrangler / Chef (voice)", "id": 76595, "credit_id": "550d804292514146910059a1", "cast_id": 23, "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "order": 6}, {"name": "Nathan Greno", "character": "Maximus / Guard / Stabbington Brothers (voice)", "id": 121830, "credit_id": "550d805192514146910059ad", "cast_id": 24, "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "order": 7}, {"name": "Matt Nolan", "character": "Frying Pan Caller (voice)", "id": 159720, "credit_id": "52fe487a9251416c9108dd37", "cast_id": 10, "profile_path": "/9zUwjviDEOv8KCBHWA0x2RzmQTL.jpg", "order": 8}, {"name": "Robert Bagnell", "character": "Additional Voices", "id": 65715, "credit_id": "550d806292514133c3003975", "cast_id": 25, "profile_path": "/pUDVP9u5cGrpVkufCnG4V8Y49Mu.jpg", "order": 9}, {"name": "Erin Matthews", "character": "Additional Voices", "id": 1219571, "credit_id": "550d807092514135540036e1", "cast_id": 26, "profile_path": "/Albqf0VZEr26GsjiqJvYULw1zwn.jpg", "order": 10}], "directors": [{"name": "Nathan Greno", "department": "Directing", "job": "Director", "credit_id": "52fe487a9251416c9108dd21", "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "id": 121830}, {"name": "Byron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe487a9251416c9108dd27", "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "id": 76595}], "vote_average": 7.2, "runtime": 6}, "963": {"poster_path": "/95OOYSeegOX4XW8nAeFJSIdxfM4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Spade and Archer is the name of a San Francisco detective agency. That's for Sam Spade and Miles Archer. The two men are partners, but Sam doesn't like Miles much. A knockout, who goes by the name of Miss Wanderly, walks into their office; and by that night everything's changed. Miles is dead. And so is a man named Floyd Thursby. It seems Miss Wanderly is surrounded by dangerous men. There's Joel Cairo, who uses gardenia-scented calling cards. There's Kasper Gutman, with his enormous girth and feigned civility. Her only hope of protection comes from Sam, who is suspected by the police of one or the other murder. More murders are yet to come.", "video": false, "id": 963, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Maltese Falcon", "tagline": "A story as EXPLOSIVE as his BLAZING automatics!", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0033870", "adult": false, "backdrop_path": "/hQGUl6rlAfUFifCLb9bukpJH42P.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1941-11-18", "popularity": 0.499851456156789, "original_title": "The Maltese Falcon", "budget": 300000, "cast": [{"name": "Humphrey Bogart", "character": "Sam Spade", "id": 4110, "credit_id": "52fe4294c3a36847f8029a27", "cast_id": 13, "profile_path": "/pxJrZluJHhbWRo2QXAG99FvXUi7.jpg", "order": 0}, {"name": "Mary Astor", "character": "Brigid O'Shaughnessy", "id": 13992, "credit_id": "52fe4294c3a36847f8029a2f", "cast_id": 15, "profile_path": "/h6nd8EAMJANSYsuQmzyH04eanNC.jpg", "order": 1}, {"name": "Gladys George", "character": "Iva Archer", "id": 14450, "credit_id": "52fe4294c3a36847f8029a33", "cast_id": 16, "profile_path": "/8mjhWiDqESi3dTRtFGkC94h2E7g.jpg", "order": 2}, {"name": "Peter Lorre", "character": "Joel Cairo", "id": 2094, "credit_id": "52fe4294c3a36847f8029a2b", "cast_id": 14, "profile_path": "/yrQcTNmGWNVp871D9fbjNpN6LpV.jpg", "order": 3}, {"name": "Barton MacLane", "character": "Det. Lt. Dundy", "id": 14451, "credit_id": "52fe4294c3a36847f8029a37", "cast_id": 17, "profile_path": "/jwCdgDltePRQWELXZ8wTtC4Qr9c.jpg", "order": 4}, {"name": "Lee Patrick", "character": "Effie Perine", "id": 5740, "credit_id": "52fe4294c3a36847f8029a3b", "cast_id": 18, "profile_path": "/sRGpSavd3VNZpzywoQMeS1D1cxM.jpg", "order": 5}, {"name": "Sydney Greenstreet", "character": "Kasper Gutman", "id": 4114, "credit_id": "52fe4294c3a36847f8029a3f", "cast_id": 19, "profile_path": "/tXSc0cmUmsMqbR3A3xbevNfp3N7.jpg", "order": 6}, {"name": "Ward Bond", "character": "Det. Tom Polhaus", "id": 4303, "credit_id": "52fe4294c3a36847f8029a43", "cast_id": 20, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 7}, {"name": "Jerome Cowan", "character": "Miles Archer", "id": 14452, "credit_id": "52fe4294c3a36847f8029a47", "cast_id": 21, "profile_path": "/yf46DNcfERNESHxNG6cKFNBVk3U.jpg", "order": 8}, {"name": "Elisha Cook Jr.", "character": "Wilmer Cook", "id": 3339, "credit_id": "52fe4294c3a36847f8029a4b", "cast_id": 22, "profile_path": "/ntXqHlpeaXTM7WqIsGDlYtlG7hk.jpg", "order": 9}, {"name": "James Burke", "character": "Luke", "id": 14453, "credit_id": "52fe4294c3a36847f8029a4f", "cast_id": 23, "profile_path": "/s01DJdyVjmF0f6fXIGzsDHjPVGs.jpg", "order": 10}, {"name": "Murray Alper", "character": "Frank Richman", "id": 14454, "credit_id": "52fe4294c3a36847f8029a53", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "John Hamilton", "character": "District Attorney Bryan", "id": 14455, "credit_id": "52fe4294c3a36847f8029a57", "cast_id": 25, "profile_path": "/aXQjVQj8QF07kvu0M71zNLEPiaI.jpg", "order": 12}, {"name": "William Hopper", "character": "Reporter (uncredited)", "id": 2776, "credit_id": "532104a29251411f77001f21", "cast_id": 27, "profile_path": "/BL7uBK6sy6DjaGgHWu79KJ0Ftg.jpg", "order": 13}, {"name": "Walter Huston", "character": "Captain Jacoby (uncredited)", "id": 19020, "credit_id": "532104bc9251411f8c001e13", "cast_id": 28, "profile_path": "/uvch750W2f4rGalEpEwhaaln6SN.jpg", "order": 14}, {"name": "Emory Parnell", "character": "Ship's Mate (uncredited)", "id": 124875, "credit_id": "532104fa9251411f89001eaa", "cast_id": 29, "profile_path": "/1duv3EnZjZSz8jgtXGZS4MOArNK.jpg", "order": 15}], "directors": [{"name": "John Huston", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f80299e7", "profile_path": "/x5P9KPVj6i8XnrgeEEWiiYKCSdd.jpg", "id": 6593}], "vote_average": 7.7, "runtime": 100}, "966": {"poster_path": "/7w3JmmyL8GpBvW6BusQfQCSm2h0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Magnificent Seven is a western film from John Sturges and a remake of the Akira Kurosawa's film The Seven Samurai from 1954.", "video": false, "id": 966, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "The Magnificent Seven", "tagline": "They were seven - And they fought like seven hundred!", "vote_count": 97, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jwevUd9BsWY9QTJZL5bFjWPoyqZ.jpg", "poster_path": "/qI64OS0Mqloq3wm1x4TWxXEDnVQ.jpg", "id": 110021, "name": "The Magnificent Seven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054047", "adult": false, "backdrop_path": "/oRSocDAAADYnCkI4jiUeRnlCnwG.jpg", "production_companies": [{"name": "The Mirisch Corporation", "id": 219}], "release_date": "1960-10-23", "popularity": 0.71670767182666, "original_title": "The Magnificent Seven", "budget": 0, "cast": [{"name": "Yul Brynner", "character": "Chris Adams", "id": 14528, "credit_id": "52fe4294c3a36847f8029c3f", "cast_id": 15, "profile_path": "/6UerE2q3iPcr4Y1ZsZJEf1Aom2g.jpg", "order": 0}, {"name": "Eli Wallach", "character": "Calvera", "id": 3265, "credit_id": "52fe4294c3a36847f8029c43", "cast_id": 16, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 1}, {"name": "Steve McQueen", "character": "Vin", "id": 13565, "credit_id": "52fe4294c3a36847f8029c47", "cast_id": 17, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 2}, {"name": "Charles Bronson", "character": "Bernardo O'Reilly", "id": 4960, "credit_id": "52fe4294c3a36847f8029c4b", "cast_id": 18, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 3}, {"name": "Robert Vaughn", "character": "Lee", "id": 14060, "credit_id": "52fe4294c3a36847f8029c4f", "cast_id": 19, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 4}, {"name": "Brad Dexter", "character": "Harry Luck", "id": 14529, "credit_id": "52fe4294c3a36847f8029c53", "cast_id": 20, "profile_path": "/cY9KS4CfudOllMMB26jPpnii89w.jpg", "order": 5}, {"name": "James Coburn", "character": "Britt", "id": 5563, "credit_id": "52fe4294c3a36847f8029c57", "cast_id": 21, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 6}, {"name": "Horst Buchholz", "character": "Chico", "id": 5789, "credit_id": "52fe4294c3a36847f8029c6f", "cast_id": 27, "profile_path": "/bNyMxUU2aVaqDfoqRhnIjQJe3jo.jpg", "order": 7}, {"name": "Natividad Vac\u00edo", "character": "Tomas", "id": 14530, "credit_id": "52fe4294c3a36847f8029c5b", "cast_id": 22, "profile_path": "/aNrydVspldovt5KixcVNNhj0Ad0.jpg", "order": 8}, {"name": "Rico Alaniz", "character": "Sotero", "id": 14531, "credit_id": "52fe4294c3a36847f8029c5f", "cast_id": 23, "profile_path": "/vMfzcr6Ip1FCR32FNVrWoV6LpFT.jpg", "order": 9}, {"name": "Jorge Mart\u00ednez de Hoyos", "character": "Hilario", "id": 14532, "credit_id": "52fe4294c3a36847f8029c63", "cast_id": 24, "profile_path": "/eATu54ygQ8XCwB6YJHDhhRgFshW.jpg", "order": 10}, {"name": "Vladimir Sokoloff", "character": "Old man", "id": 14533, "credit_id": "52fe4294c3a36847f8029c67", "cast_id": 25, "profile_path": "/pbgNdX1vgSLIbB2phKiuOQlTGAi.jpg", "order": 11}, {"name": "Rosenda Monteros", "character": "Petra", "id": 14534, "credit_id": "52fe4294c3a36847f8029c6b", "cast_id": 26, "profile_path": "/zQOnJ5UABbl6PsmxwzuharI7ovn.jpg", "order": 12}], "directors": [{"name": "John Sturges", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f8029bed", "profile_path": "/addeAxOXQmqXAZ7FB6ztGQ9daWC.jpg", "id": 14520}], "vote_average": 6.8, "runtime": 128}, "967": {"poster_path": "/h5D65IPpYPmuBjIPWBTA557BQFS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60000000, "overview": "Spartacus is a 1960 American historical drama film directed by Stanley Kubrick and based on the novel of the same name by Howard Fast about the historical life of Spartacus and the Third Servile War. The film stars Kirk Douglas as the rebellious slave Spartacus who leads a violent revolt against the decadent Roman empire. The film was awarded four Oscars and stands today as one of the greatest classics of the Sword and Sandal genre.", "video": false, "id": 967, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Spartacus", "tagline": "More titanic than any story ever told!", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054331", "adult": false, "backdrop_path": "/z7tLZ3c17Ch6qGIhUuiXBGGwHv0.jpg", "production_companies": [{"name": "Bryna Productions", "id": 611}], "release_date": "1960-10-06", "popularity": 0.578880947355996, "original_title": "Spartacus", "budget": 12000000, "cast": [{"name": "Kirk Douglas", "character": "Spartacus", "id": 2090, "credit_id": "52fe4294c3a36847f8029d3f", "cast_id": 21, "profile_path": "/vIZgu07gJtS2j460jgBlI1IvkAO.jpg", "order": 0}, {"name": "Laurence Olivier", "character": "Marcus Licinius Crassus", "id": 3359, "credit_id": "52fe4294c3a36847f8029d43", "cast_id": 22, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 1}, {"name": "Jean Simmons", "character": "Varinia", "id": 14500, "credit_id": "52fe4294c3a36847f8029d47", "cast_id": 23, "profile_path": "/lVE40Hx4s2VI2nPxkNaF0hBjPw9.jpg", "order": 2}, {"name": "Charles Laughton", "character": "Sempronius Gracchus", "id": 10921, "credit_id": "52fe4294c3a36847f8029d4b", "cast_id": 24, "profile_path": "/ssg5AqfnTbtdQVRbmoYECrjRSR0.jpg", "order": 3}, {"name": "Peter Ustinov", "character": "Lentulus Batiatus", "id": 14501, "credit_id": "52fe4294c3a36847f8029d4f", "cast_id": 25, "profile_path": "/8Lv4g3ZPVSM1ckKk15OnryX8sL7.jpg", "order": 4}, {"name": "John Gavin", "character": "Julius Caesar", "id": 7304, "credit_id": "52fe4294c3a36847f8029d53", "cast_id": 26, "profile_path": "/sOYggS68lUhOpuXKbtz0oXOHV6x.jpg", "order": 5}, {"name": "Nina Foch", "character": "Helena Glabrus", "id": 13026, "credit_id": "52fe4294c3a36847f8029d57", "cast_id": 27, "profile_path": "/jd5qWtnZdEvfwuo57CpJVzazYc0.jpg", "order": 6}, {"name": "John Ireland", "character": "Crixus", "id": 14502, "credit_id": "52fe4294c3a36847f8029d5b", "cast_id": 28, "profile_path": "/87deUnSyOPNaoiQiBHjScqhu8CZ.jpg", "order": 7}, {"name": "Herbert Lom", "character": "Tigranes Levantus", "id": 14503, "credit_id": "52fe4294c3a36847f8029d5f", "cast_id": 29, "profile_path": "/uPQNrZvgfAJNUAAYjmDubMmKEZ5.jpg", "order": 8}, {"name": "John Dall", "character": "Marcus Publius Glabrus", "id": 14504, "credit_id": "52fe4294c3a36847f8029d63", "cast_id": 30, "profile_path": "/AjgD9lfLq8SzQkiSqoXop5Afh9D.jpg", "order": 9}, {"name": "Woody Strode", "character": "Draba", "id": 4963, "credit_id": "52fe4294c3a36847f8029d67", "cast_id": 31, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 10}, {"name": "Harold J. Stone", "character": "David", "id": 14505, "credit_id": "52fe4294c3a36847f8029d6b", "cast_id": 32, "profile_path": "/8htER9KtcZ6Ssm73Sq6Nd2QSYVT.jpg", "order": 11}, {"name": "Charles McGraw", "character": "Marcellus", "id": 8233, "credit_id": "52fe4294c3a36847f8029d6f", "cast_id": 33, "profile_path": "/m6jBxQ3ZnePMBtCEy3eTu168kg3.jpg", "order": 12}, {"name": "Joanna Barnes", "character": "Claudia Marius", "id": 14506, "credit_id": "52fe4294c3a36847f8029d73", "cast_id": 34, "profile_path": "/aXZhfXgvQe4IQ1p1TebcUMAK1ux.jpg", "order": 13}, {"name": "Peter Brocco", "character": "Ramon", "id": 7074, "credit_id": "52fe4294c3a36847f8029d77", "cast_id": 35, "profile_path": "/lOpG2Gi5EkytfuixtLoP0vWTyjK.jpg", "order": 14}, {"name": "Paul Lambert", "character": "Gannicus", "id": 14507, "credit_id": "52fe4294c3a36847f8029d7b", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Robert J. Wilke", "character": "Guard captain", "id": 2096, "credit_id": "52fe4294c3a36847f8029d7f", "cast_id": 37, "profile_path": "/3VL03wavl7fUGuVtayjft9eYAua.jpg", "order": 16}, {"name": "Nick Dennis", "character": "Dionysius", "id": 2757, "credit_id": "52fe4294c3a36847f8029d83", "cast_id": 38, "profile_path": "/1iSpJEBq8lIWTBKCvgig08KkPmO.jpg", "order": 17}, {"name": "John Hoyt", "character": "Caius", "id": 14508, "credit_id": "52fe4294c3a36847f8029d87", "cast_id": 39, "profile_path": "/ng0y8zpPNuAao58GGAbLdwrj8Fp.jpg", "order": 18}, {"name": "Frederick Worlock", "character": "Laelius", "id": 14509, "credit_id": "52fe4294c3a36847f8029d8b", "cast_id": 40, "profile_path": "/oCQAanAc665NeE5allgEMit3wiY.jpg", "order": 19}, {"name": "Tony Curtis", "character": "Antoninus", "id": 3150, "credit_id": "52fe4294c3a36847f8029d8f", "cast_id": 41, "profile_path": "/y2y6QFlLkbDzNbAaKKa8mSH3Lde.jpg", "order": 20}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f8029cc9", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.1, "runtime": 197}, "968": {"poster_path": "/qgWuZ2yNJrclU8EldQG4rLhwMoy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46665856, "overview": "A man robs a bank to pay for his lover's operation; it turns into a hostage situation and a media circus.", "video": false, "id": 968, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Dog Day Afternoon", "tagline": "The Most Bizarre Bank Siege Ever.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072890", "adult": false, "backdrop_path": "/oszUeeJfhnmKI17XZzlaZfH74Pc.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Artists Entertainment Complex", "id": 612}], "release_date": "1975-09-21", "popularity": 0.477331168189361, "original_title": "Dog Day Afternoon", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Sonny", "id": 1158, "credit_id": "52fe4295c3a36847f8029e29", "cast_id": 15, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "John Cazale", "character": "Sal", "id": 3096, "credit_id": "52fe4295c3a36847f8029e2d", "cast_id": 16, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 1}, {"name": "Charles Durning", "character": "Det. Sgt. Eugene Moretti", "id": 1466, "credit_id": "52fe4295c3a36847f8029e31", "cast_id": 17, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 2}, {"name": "Chris Sarandon", "character": "Leon", "id": 14541, "credit_id": "52fe4295c3a36847f8029e35", "cast_id": 18, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 3}, {"name": "James Broderick", "character": "Sheldon", "id": 14542, "credit_id": "52fe4295c3a36847f8029e39", "cast_id": 19, "profile_path": "/tSKtPBSD55kTQlOk2ci3nvEGZmM.jpg", "order": 4}, {"name": "William Bogert", "character": "TV Anchorman", "id": 14543, "credit_id": "52fe4295c3a36847f8029e3d", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Penelope Allen", "character": "Sylvia", "id": 14544, "credit_id": "52fe4295c3a36847f8029e41", "cast_id": 21, "profile_path": "/8ar2dtYVVgf7ibQEGSqFPOuqakI.jpg", "order": 6}, {"name": "Sully Boyar", "character": "Mulvaney", "id": 14545, "credit_id": "52fe4295c3a36847f8029e45", "cast_id": 22, "profile_path": "/joJktsmK4VLCw5ZnUMR64V9hZyG.jpg", "order": 7}, {"name": "Beulah Garrick", "character": "Margaret", "id": 14546, "credit_id": "52fe4295c3a36847f8029e49", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Carol Kane", "character": "Jenny", "id": 10556, "credit_id": "52fe4295c3a36847f8029e4d", "cast_id": 24, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 9}, {"name": "Sandra Kazan", "character": "Deborah", "id": 14547, "credit_id": "52fe4295c3a36847f8029e51", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Marcia Jean Kurtz", "character": "Miriam", "id": 14548, "credit_id": "52fe4295c3a36847f8029e55", "cast_id": 26, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 11}, {"name": "Amy Levitt", "character": "Maria", "id": 14549, "credit_id": "52fe4295c3a36847f8029e59", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "John Marriott", "character": "Howard", "id": 14550, "credit_id": "52fe4295c3a36847f8029e5d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Estelle Omens", "character": "Edna", "id": 14551, "credit_id": "52fe4295c3a36847f8029e61", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Gary Springer", "character": "Stevie", "id": 14552, "credit_id": "52fe4295c3a36847f8029e65", "cast_id": 30, "profile_path": "/ovYL4jKuiyRvCbMVrgO3iy5BB10.jpg", "order": 15}, {"name": "Carmine Foresta", "character": "Carmine", "id": 14553, "credit_id": "52fe4295c3a36847f8029e69", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Lance Henriksen", "character": "Murphy", "id": 2714, "credit_id": "52fe4295c3a36847f8029e6d", "cast_id": 32, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 17}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe4294c3a36847f8029dd7", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 7.2, "runtime": 125}, "975": {"poster_path": "/f3DEXseCs3WBtvCv9pVPCtoluuG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "During World War I, commanding officer General Broulard (Adolphe Menjou) orders his subordinate, General Mireau (George Macready), to attack a German trench position, offering a promotion as an incentive. Though the mission is foolhardy to the point of suicide, Mireau commands his own subordinate, Colonel Dax (Kirk Douglas), to plan the attack. When it ends in disaster, General Mireau demands the court-martial of three random soldiers in order to save face.", "video": false, "id": 975, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Paths of Glory", "tagline": "It explodes in the no-man's land no picture ever dared cross before!", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0050825", "adult": false, "backdrop_path": "/sC4fbX0mKYEs16riivryzMl6GwR.jpg", "production_companies": [{"name": "Bryna Productions", "id": 611}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1957-09-18", "popularity": 0.549424481940905, "original_title": "Paths of Glory", "budget": 0, "cast": [{"name": "Kirk Douglas", "character": "Col. Dax", "id": 2090, "credit_id": "52fe4295c3a36847f8029f15", "cast_id": 18, "profile_path": "/vIZgu07gJtS2j460jgBlI1IvkAO.jpg", "order": 0}, {"name": "Ralph Meeker", "character": "Cpl. Philippe Paris", "id": 14562, "credit_id": "52fe4295c3a36847f8029f19", "cast_id": 19, "profile_path": "/qJ6ELh0jYHaCB0lITnAOo7owylz.jpg", "order": 1}, {"name": "Adolphe Menjou", "character": "Gen. George Broulard", "id": 14563, "credit_id": "52fe4295c3a36847f8029f1d", "cast_id": 20, "profile_path": "/jAZRVhDGvEfRfJgGQCGk1GXMp1C.jpg", "order": 2}, {"name": "George Macready", "character": "Gen. Paul Mireau", "id": 14564, "credit_id": "52fe4295c3a36847f8029f21", "cast_id": 21, "profile_path": "/t1xXYLfj7KSn2YQ3cKJ4V5ZYoQV.jpg", "order": 3}, {"name": "Wayne Morris", "character": "Lt. Roget/Singing man", "id": 14565, "credit_id": "52fe4295c3a36847f8029f25", "cast_id": 22, "profile_path": "/hVs9Lzc9dApQtPgQuyRsV5smRDA.jpg", "order": 4}, {"name": "Richard Anderson", "character": "Maj. Saint-Auban", "id": 12312, "credit_id": "52fe4295c3a36847f8029f29", "cast_id": 23, "profile_path": "/lHI1T7yJfCv3cfD7SpAkH0OWDNx.jpg", "order": 5}, {"name": "Joe Turkel", "character": "Pvt. Pierre Arnaud", "id": 592, "credit_id": "52fe4295c3a36847f8029f2d", "cast_id": 24, "profile_path": "/8d16GA57SnVXP3WGB0fbkFCKily.jpg", "order": 6}, {"name": "Timothy Carey", "character": "Pvt. Maurice Ferol", "id": 2758, "credit_id": "52fe4295c3a36847f8029f31", "cast_id": 25, "profile_path": "/ymLUcHBDoZxnJ6sx7855vr5iHaU.jpg", "order": 7}, {"name": "Christiane Kubrick", "character": "German Singer", "id": 1019259, "credit_id": "52fe4295c3a36847f8029f35", "cast_id": 26, "profile_path": "/ZDMzhuyTaYW8es3GDTfTY9WAkE.jpg", "order": 8}, {"name": "Jerry Hausner", "character": "Proprietor of Cafe", "id": 117671, "credit_id": "52fe4295c3a36847f8029f39", "cast_id": 27, "profile_path": "/4BUSa5Li7wfqAH38OZLArm090M4.jpg", "order": 9}, {"name": "Peter Capell", "character": "Narrator of Opening Sequence", "id": 3476, "credit_id": "52fe4295c3a36847f8029f3d", "cast_id": 28, "profile_path": "/kwAOpbL1SeDxvQXkKLDkm8ZeTY0.jpg", "order": 10}, {"name": "Emile Meyer", "character": "Father Dupree", "id": 14579, "credit_id": "52fe4295c3a36847f8029f41", "cast_id": 29, "profile_path": "/3uZJOF28nCj0WKXAJEVt7yCl2Tj.jpg", "order": 11}, {"name": "Bert Freed", "character": "Sgt. Boulanger", "id": 31503, "credit_id": "52fe4295c3a36847f8029f45", "cast_id": 30, "profile_path": "/ijYWrQ4e2LLYp5ADO19iTG7TtOx.jpg", "order": 12}, {"name": "Kem Dibbs", "character": "Pvt. Lejeune", "id": 94031, "credit_id": "52fe4295c3a36847f8029f49", "cast_id": 31, "profile_path": "/yaC4y47x2L2ZryUB2AjncadMBvv.jpg", "order": 13}, {"name": "Fred Bell", "character": "Shell-Shocked Soldier", "id": 1077968, "credit_id": "52fe4295c3a36847f8029f4d", "cast_id": 32, "profile_path": "/AvQq9HsoP9ZDNkVd0Frz1DL9YHK.jpg", "order": 14}, {"name": "John Stein", "character": "Capt. Rousseau", "id": 1077970, "credit_id": "52fe4295c3a36847f8029f51", "cast_id": 33, "profile_path": "/xnA1i1PRcbeZeskDdLVZJ318hNc.jpg", "order": 15}, {"name": "Harold Benedict", "character": "Capt. Nichols", "id": 1077971, "credit_id": "52fe4295c3a36847f8029f55", "cast_id": 34, "profile_path": null, "order": 16}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe4295c3a36847f8029eb7", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.9, "runtime": 88}, "1669": {"poster_path": "/bqvlKYlWq2uibsuVzKTWseeccd2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200512643, "overview": "When a Soviet nuclear sub headed toward American waters drops off U.S. scanners, the Yanks scramble to take defensive steps. But CIA analyst Jack Ryan convinces the brass that the sub's commander has something other than a first strike in mind. A perilous cat-and-mouse game ensues.", "video": false, "id": 1669, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Hunt for Red October", "tagline": "Invisible. Silent. Stolen.", "vote_count": 374, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0099810", "adult": false, "backdrop_path": "/c31beJUzO3ZwRpxpyP8ADzbkt9V.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}, {"name": "Nina Saxon Film Design", "id": 1693}], "release_date": "1990-03-02", "popularity": 0.995958977234815, "original_title": "The Hunt for Red October", "budget": 30000000, "cast": [{"name": "Alec Baldwin", "character": "Jack Ryan", "id": 7447, "credit_id": "52fe430ac3a36847f803602b", "cast_id": 2, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 0}, {"name": "Sean Connery", "character": "Marko Ramius", "id": 738, "credit_id": "52fe430ac3a36847f8036027", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Commander Bart Mancuso", "id": 349, "credit_id": "52fe430ac3a36847f8036041", "cast_id": 6, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Sam Neill", "character": "Captain Vasily Borodin", "id": 4783, "credit_id": "52fe430ac3a36847f8036045", "cast_id": 7, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 3}, {"name": "James Earl Jones", "character": "Admiral James Greer", "id": 15152, "credit_id": "52fe430ac3a36847f8036049", "cast_id": 8, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 4}, {"name": "Joss Ackland", "character": "Ambassador Andrei Lysenko", "id": 14324, "credit_id": "52fe430ac3a36847f803604d", "cast_id": 9, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 5}, {"name": "Richard Jordan", "character": "Dr. Jeffrey Pelt", "id": 12518, "credit_id": "52fe430ac3a36847f8036051", "cast_id": 10, "profile_path": "/lsIKxCURO9l4zEnVLwbVG2o1fLQ.jpg", "order": 6}, {"name": "Stellan Skarsg\u00e5rd", "character": "Captain Viktor Tupolev", "id": 1640, "credit_id": "52fe430ac3a36847f8036055", "cast_id": 11, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 7}, {"name": "Courtney B. Vance", "character": "Sonarman 2nd Class Ronald Jones", "id": 24047, "credit_id": "52fe430ac3a36847f8036059", "cast_id": 12, "profile_path": "/x1kO6TTg3rnz0WAxYgmunsPaxvR.jpg", "order": 8}, {"name": "Peter Firth", "character": "Ivan Putin", "id": 22109, "credit_id": "52fe430ac3a36847f8036063", "cast_id": 14, "profile_path": "/2qFPG3fIwshfPGDwIoP5aKVKFQM.jpg", "order": 9}, {"name": "Tim Curry", "character": "Dr. Yevgeniy Petrov", "id": 13472, "credit_id": "52fe430ac3a36847f8036067", "cast_id": 15, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 10}, {"name": "Jeffrey Jones", "character": "Skip Tyler", "id": 4004, "credit_id": "52fe430ac3a36847f803606b", "cast_id": 16, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 11}, {"name": "Timothy Carhart", "character": "Bill Steiner", "id": 17396, "credit_id": "52fe430ac3a36847f803606f", "cast_id": 17, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 12}, {"name": "Larry Ferguson", "character": "Chief of the Boat", "id": 912, "credit_id": "52fe430ac3a36847f8036073", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Fred Thompson", "character": "Admiral Painter", "id": 17874, "credit_id": "52fe430ac3a36847f8036077", "cast_id": 19, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 14}, {"name": "Daniel Davis", "character": "Cpt. Davenport", "id": 177765, "credit_id": "5406fba70e0a261882000fcb", "cast_id": 29, "profile_path": "/f6mEupwpKQGlxk2mKwb0pz1UiFT.jpg", "order": 15}, {"name": "Ned Vaughn", "character": "Seaman Beaumont", "id": 51582, "credit_id": "5406fbba0e0a261890000f21", "cast_id": 30, "profile_path": "/dKFDibE1SrSxk70ZmLPZg6X5AEz.jpg", "order": 16}, {"name": "Anthony Peck", "character": "Lt. Commander Thompson", "id": 141747, "credit_id": "5406fbe20e0a261885000eea", "cast_id": 31, "profile_path": "/57e2de2WH5jFm6AJYNTSSjGymtS.jpg", "order": 17}, {"name": "Ronald Guttman", "character": "Lt. Melekhin", "id": 47085, "credit_id": "5406fc0b0e0a261889000f09", "cast_id": 32, "profile_path": "/mqUqJDVGojFkKQvaC96jFTBuEqD.jpg", "order": 18}, {"name": "Tomas Arana", "character": "Loginov", "id": 941, "credit_id": "5406fc1c0e0a261889000f0d", "cast_id": 33, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 19}, {"name": "Sven-Ole Thorsen", "character": "Russian COB", "id": 20761, "credit_id": "5406fc600e0a261896000f8f", "cast_id": 34, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 20}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe430ac3a36847f8036031", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.9, "runtime": 134}, "978": {"poster_path": "/cflSeFUVDCf73Tzh5sB204JbQ6j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131457682, "overview": "Austrian mountaineer Heinrich Harrer journeys to the Himalayas without his family to head an expedition in 1939. But when World War II breaks out, the arrogant Harrer falls into Allied forces' hands as a prisoner of war. He escapes with a fellow detainee and makes his way to Llaso, Tibet, where he meets the 14-year-old Dalai Lama, whose friendship ultimately transforms his outlook on life.", "video": false, "id": 978, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Seven Years in Tibet", "tagline": "At the end of the world his real journey began.", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120102", "adult": false, "backdrop_path": "/6HjYM1vgqWpFTr01tOBrskfvxcu.jpg", "production_companies": [{"name": "Mandalay Entertainment", "id": 1236}, {"name": "Vanguard Films", "id": 614}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1997-09-12", "popularity": 0.769236007322338, "original_title": "Seven Years in Tibet", "budget": 70000000, "cast": [{"name": "Brad Pitt", "character": "Heinrich Harrer", "id": 287, "credit_id": "52fe4295c3a36847f802a10d", "cast_id": 14, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Jamyang Jamtsho Wangchuk", "character": "Dalai Lama, 14 Years Old", "id": 14591, "credit_id": "52fe4295c3a36847f802a111", "cast_id": 15, "profile_path": "/fW1MmG9Q6q5NIvWEVf3S6CJJNgb.jpg", "order": 1}, {"name": "David Thewlis", "character": "Peter Aufschnaiter", "id": 11207, "credit_id": "52fe4295c3a36847f802a115", "cast_id": 16, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 2}, {"name": "BD Wong", "character": "Ngawang Jigme", "id": 14592, "credit_id": "52fe4295c3a36847f802a119", "cast_id": 17, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 3}, {"name": "Mako", "character": "Kungo Tsarong", "id": 10134, "credit_id": "52fe4295c3a36847f802a11d", "cast_id": 18, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 4}, {"name": "Ingeborga Dapkunaite", "character": "Ingrid Harrer", "id": 14593, "credit_id": "52fe4295c3a36847f802a121", "cast_id": 19, "profile_path": "/hVqzjEBJiaYp9sTJA4IXNLJtLK2.jpg", "order": 5}, {"name": "Lhakpa Tsamchoe", "character": "Pema Lhaki", "id": 14594, "credit_id": "52fe4295c3a36847f802a125", "cast_id": 20, "profile_path": "/z43d44Xxq8bToSGMOtWcsPhmFgG.jpg", "order": 6}, {"name": "Duncan Fraser", "character": "British Officer", "id": 14595, "credit_id": "52fe4295c3a36847f802a129", "cast_id": 21, "profile_path": "/65nwyXassO3PmeL8vvC7DKDXcSM.jpg", "order": 7}, {"name": "Danny Denzongpa", "character": "Regent", "id": 14596, "credit_id": "52fe4295c3a36847f802a12d", "cast_id": 22, "profile_path": "/9mfS2Tuf4C4VXOsTglXaCyHI4cj.jpg", "order": 8}, {"name": "Victor Wong", "character": "Chinese 'Amban'", "id": 11395, "credit_id": "52fe4295c3a36847f802a131", "cast_id": 23, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 9}], "directors": [{"name": "Jean-Jacques Annaud", "department": "Directing", "job": "Director", "credit_id": "52fe4295c3a36847f802a0c1", "profile_path": "/wWECpMbiIcKZF8VXsNfxJVeW2Rr.jpg", "id": 2352}], "vote_average": 6.7, "runtime": 136}, "979": {"poster_path": "/eEA5JRaqq2ehMvdi0vBF2UOfOYc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Events over the course of one traumatic night in Paris unfold in reverse-chronological order as the beautiful Alex is brutally raped and beaten by a stranger in the underpass. Her boyfriend and ex-lover take matters into their own hands by hiring two criminals to help them find the rapist so that they can exact revenge. A simultaneously beautiful and terrible examination of the destructive nature of cause and effect, and how time destroys everything.", "video": false, "id": 979, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Irreversible", "tagline": "Time destroys everything.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0290673", "adult": false, "backdrop_path": "/mNb8Ny0RR2Vyw4xXT2Y6GN9Lioz.jpg", "production_companies": [{"name": "120 Films", "id": 19233}, {"name": "Eskwad", "id": 616}, {"name": "Les Cin\u00e9mas de la Zone", "id": 1157}, {"name": "Nord-Ouest Productions", "id": 4176}, {"name": "StudioCanal", "id": 694}], "release_date": "2002-05-22", "popularity": 0.583126468071928, "original_title": "Irr\u00e9versible", "budget": 0, "cast": [{"name": "Monica Bellucci", "character": "Alex", "id": 28782, "credit_id": "52fe4295c3a36847f802a19f", "cast_id": 11, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Marcus", "id": 1925, "credit_id": "52fe4295c3a36847f802a1a3", "cast_id": 12, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Albert Dupontel", "character": "Pierre", "id": 14606, "credit_id": "52fe4295c3a36847f802a1a7", "cast_id": 13, "profile_path": "/bBqRJl8IQXxKuYTNhoYRER9JO34.jpg", "order": 2}, {"name": "Jo Prestia", "character": "Le Tenia", "id": 14610, "credit_id": "52fe4295c3a36847f802a1ab", "cast_id": 14, "profile_path": "/7ZF93XBMOF5Mr6F22YKGnzM4QMp.jpg", "order": 3}, {"name": "Philippe Nahon", "character": "Philippe", "id": 5444, "credit_id": "52fe4295c3a36847f802a1af", "cast_id": 15, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 4}, {"name": "St\u00e9phane Drouot", "character": "St\u00e9phane", "id": 14611, "credit_id": "52fe4295c3a36847f802a1b3", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Jean-Louis Costes", "character": "Fistman", "id": 14612, "credit_id": "52fe4295c3a36847f802a1b7", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Mourad Khima", "character": "Mourad", "id": 14613, "credit_id": "52fe4295c3a36847f802a1bb", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Michel Gondoin ", "character": "Mick", "id": 577431, "credit_id": "54b9344c9251411d77004599", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Hellal", "character": "Layde", "id": 1414268, "credit_id": "54b9345f9251411d7700459c", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Nato", "character": "Commissaire", "id": 1414269, "credit_id": "54b9348c9251411d64004550", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Fesche", "character": "Chauffeur Taxi", "id": 1414270, "credit_id": "54b934ab9251411d770045a8", "cast_id": 23, "profile_path": null, "order": 11}], "directors": [{"name": "Gaspar No\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4295c3a36847f802a165", "profile_path": "/zuzX3QLKI4FKsOB4QPseYkO73mY.jpg", "id": 14597}], "vote_average": 7.3, "runtime": 97}, "246741": {"poster_path": "/kJjXTVQ0yP6Ns5pd7YiyCYCdS3X.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}], "revenue": 0, "overview": "Follow the lives of Viago, Deacon, and Vladislav - three flatmates who are just trying to get by and overcome life's obstacles-like being immortal vampires who must feast on human blood. Hundreds of years old, the vampires are finding that beyond sunlight catastrophes, hitting the main artery, and not being able to get a sense of their wardrobe without a reflection-modern society has them struggling with the mundane like paying rent, keeping up with the chore wheel, trying to get into nightclubs, and overcoming flatmate conflicts.", "video": false, "id": 246741, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "What We Do in the Shadows", "tagline": "Some interviews with some vampires", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3416742", "adult": false, "backdrop_path": "/cQXlDYsxdSJg9quBIM8IgpphAon.jpg", "production_companies": [{"name": "Funny or Die", "id": 21213}, {"name": "Unison Films", "id": 2372}, {"name": "Defender Films", "id": 6510}], "release_date": "2014-06-19", "popularity": 2.1402838224718, "original_title": "What We Do in the Shadows", "budget": 0, "cast": [{"name": "Taika Waititi", "character": "Viago", "id": 55934, "credit_id": "52fe4f1ac3a36847f82bdb41", "cast_id": 5, "profile_path": "/qFqOHyuFo1H0RuxQxI4leTZDClY.jpg", "order": 0}, {"name": "Jemaine Clement", "character": "Vladislav", "id": 55936, "credit_id": "52fe4f1ac3a36847f82bdb45", "cast_id": 6, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 1}, {"name": "Jonathan Brugh", "character": "Deacon", "id": 586951, "credit_id": "52fe4f1ac3a36847f82bdb49", "cast_id": 7, "profile_path": "/5FmtVkkfaVOJeQywZMqvRrnpGpo.jpg", "order": 2}, {"name": "Cori Gonzalez-Macuer", "character": "Nick", "id": 1286794, "credit_id": "52fe4f1ac3a36847f82bdb4d", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Stuart Rutherford", "character": "Stu", "id": 1286796, "credit_id": "52fe4f1ac3a36847f82bdb51", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Jackie van Beek", "character": "Jackie", "id": 1286797, "credit_id": "52fe4f1ac3a36847f82bdb55", "cast_id": 10, "profile_path": "/AwtQmYJVS2ctHHkOnqd6FJhCadI.jpg", "order": 5}, {"name": "Rhys Darby", "character": "Anton", "id": 82666, "credit_id": "52fe4f1ac3a36847f82bdb59", "cast_id": 11, "profile_path": "/d8mSQJYmuOoT3hvC7FGgSVMzYlz.jpg", "order": 6}, {"name": "Frank Habicht", "character": "Phillip", "id": 568266, "credit_id": "52fe4f1ac3a36847f82bdb5d", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ian Harcourt", "character": "Zombie", "id": 54494, "credit_id": "52fe4f1ac3a36847f82bdb61", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Madeleine Sami", "character": "Morana", "id": 89847, "credit_id": "52fe4f1ac3a36847f82bdb65", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Duncan Sarkies", "character": "Declan", "id": 1161585, "credit_id": "52fe4f1ac3a36847f82bdb69", "cast_id": 15, "profile_path": null, "order": 10}], "directors": [{"name": "Jemaine Clement", "department": "Directing", "job": "Director", "credit_id": "52fe4f1ac3a36847f82bdb2b", "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "id": 55936}, {"name": "Taika Waititi", "department": "Directing", "job": "Director", "credit_id": "52fe4f1ac3a36847f82bdb31", "profile_path": "/qFqOHyuFo1H0RuxQxI4leTZDClY.jpg", "id": 55934}], "vote_average": 7.5, "runtime": 86}, "984": {"poster_path": "/qBhvRKN6ezdYzp8NT6tde6ffWoy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35976000, "overview": "When a madman dubbed the \"Scorpio Killer\" terrorizes San Francisco, hard-boiled cop Harry Callahan -- famous for his take-no-prisoners approach to law enforcement -- is tasked with hunting down the psychopath. Harry eventually collars Scorpio in the process of rescuing a kidnap victim, only to see him walk on technicalities. Now, the maverick detective is determined to nail the maniac himself.", "video": false, "id": 984, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Dirty Harry", "tagline": "Detective Harry Callahan. He doesn't break murder cases. He smashes them.", "vote_count": 138, "homepage": "", "belongs_to_collection": {"backdrop_path": "/nlpixhOhb3JmFqVXKjCwpYFpldf.jpg", "poster_path": "/vY8MSRkKL0ZBeFP0c0I2o11IYDZ.jpg", "id": 10456, "name": "Dirty Harry Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066999", "adult": false, "backdrop_path": "/yvpXQiMJlMQiW9ubWFWRZJWekls.jpg", "production_companies": [{"name": "Malpaso Company", "id": 15298}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1971-12-22", "popularity": 1.34672945791768, "original_title": "Dirty Harry", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Insp. Harry Callahan", "id": 190, "credit_id": "52fe4296c3a36847f802a53b", "cast_id": 14, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Andrew Robinson", "character": "Scorpio Killer", "id": 14782, "credit_id": "52fe4296c3a36847f802a53f", "cast_id": 15, "profile_path": "/bJnqfONR5wdtIciYQ0tBnRX4PnD.jpg", "order": 1}, {"name": "John Vernon", "character": "The Mayor", "id": 17580, "credit_id": "52fe4296c3a36847f802a543", "cast_id": 16, "profile_path": "/8jESb02RChcuBEh4yZrLHElNhWa.jpg", "order": 2}, {"name": "Reni Santoni", "character": "Insp. Chico Gonzalez", "id": 14784, "credit_id": "52fe4296c3a36847f802a547", "cast_id": 17, "profile_path": "/6dNgWQgTgT4u5jeux3gOX34Fjiu.jpg", "order": 3}, {"name": "Harry Guardino", "character": "Lt. Al Bressler", "id": 14785, "credit_id": "52fe4296c3a36847f802a54b", "cast_id": 18, "profile_path": "/qybV2OJGAge9VXSsFXPJDmFEPsA.jpg", "order": 4}, {"name": "John Mitchum", "character": "Insp. Frank DiGiorgio", "id": 14786, "credit_id": "52fe4296c3a36847f802a54f", "cast_id": 19, "profile_path": "/varG7DgJQjNwwCeUcwpZhCs40uo.jpg", "order": 5}, {"name": "Mae Mercer", "character": "Mrs. Russell", "id": 14787, "credit_id": "52fe4296c3a36847f802a553", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Lyn Edgington", "character": "Norma", "id": 14788, "credit_id": "52fe4296c3a36847f802a557", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Ruth Kobart", "character": "Bus Driver", "id": 14789, "credit_id": "52fe4296c3a36847f802a55b", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Woodrow Parfrey", "character": "Mr. Jaffe", "id": 13263, "credit_id": "52fe4296c3a36847f802a55f", "cast_id": 23, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 9}, {"name": "William Paterson", "character": "Judge Bannerman", "id": 14790, "credit_id": "52fe4296c3a36847f802a563", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "James Nolan", "character": "Liquor Store Owner", "id": 14791, "credit_id": "52fe4296c3a36847f802a567", "cast_id": 25, "profile_path": "/tmIKir155HdYKTlMlSLberv5ixc.jpg", "order": 11}, {"name": "Josef Sommer", "character": "Att. William T. Rothko", "id": 14792, "credit_id": "52fe4296c3a36847f802a56b", "cast_id": 26, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 12}, {"name": "Albert Popwell", "character": "Bank Robber (uncredited)", "id": 21925, "credit_id": "52fe4296c3a36847f802a56f", "cast_id": 28, "profile_path": "/ywlCVvQ2Z6UnnIoiCLcpPhGSsg9.jpg", "order": 13}], "directors": [{"name": "Don Siegel", "department": "Directing", "job": "Director", "credit_id": "52fe4296c3a36847f802a4ef", "profile_path": "/dptmMoVlEB9o8O8C8vf5CPILg6n.jpg", "id": 14773}], "vote_average": 7.1, "runtime": 102}, "985": {"poster_path": "/bWBTsftC74xGIEa415rKQ0Tcyht.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7000000, "overview": "Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.", "video": false, "id": 985, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Eraserhead", "tagline": "Where your nightmares end...", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074486", "adult": false, "backdrop_path": "/iCvB5O1edEV4y1WtNFloUkFzwrq.jpg", "production_companies": [{"name": "Libra Films", "id": 17877}, {"name": "American Film Institute (AFI)", "id": 12226}], "release_date": "1977-09-28", "popularity": 0.69064988573632, "original_title": "Eraserhead", "budget": 10000, "cast": [{"name": "Jack Nance", "character": "Henry Spencer", "id": 6718, "credit_id": "52fe4296c3a36847f802a5e1", "cast_id": 13, "profile_path": "/pb7sWzIyGdySpokyr80L7Iqzmx0.jpg", "order": 0}, {"name": "Charlotte Stewart", "character": "Mary X", "id": 14794, "credit_id": "52fe4296c3a36847f802a5e5", "cast_id": 14, "profile_path": "/4IUF48jRMcBR0ZjVc9ghDoo5c4x.jpg", "order": 1}, {"name": "Allen Joseph", "character": "Mr. X", "id": 14795, "credit_id": "52fe4296c3a36847f802a5e9", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Jeanne Bates", "character": "Mrs. X", "id": 14796, "credit_id": "52fe4296c3a36847f802a5ed", "cast_id": 16, "profile_path": "/lHrwjoC9K970j1uet252Ti3LBaD.jpg", "order": 3}, {"name": "Judith Roberts", "character": "Beautiful Girl Across the Hall", "id": 14797, "credit_id": "52fe4296c3a36847f802a5f1", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Laurel Near", "character": "Lady in the Radiator", "id": 14798, "credit_id": "52fe4296c3a36847f802a5f5", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "T. Max Graham", "character": "The Boss", "id": 14799, "credit_id": "52fe4296c3a36847f802a5f9", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Jennifer Chambers Lynch", "character": "Little Girl", "id": 14800, "credit_id": "52fe4296c3a36847f802a5fd", "cast_id": 20, "profile_path": "/hrZxoo4d1xInj2zIHAyPGb3hY5K.jpg", "order": 7}, {"name": "Hal Landon Jr.", "character": "Pencil Machine Operator", "id": 14801, "credit_id": "52fe4296c3a36847f802a601", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Jean Lange", "character": "Grandmother", "id": 14802, "credit_id": "52fe4296c3a36847f802a605", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4296c3a36847f802a5a1", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.2, "runtime": 89}, "9722": {"poster_path": "/auUAybijSJ72XuTaPgh0EhvyJ13.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63313159, "overview": "Thinking he can overshadow an unknown actress in the part, an egocentric actor unknowingly gets a witch cast in an upcoming television remake of the classic show \"Bewitched\".", "video": false, "id": 9722, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Bewitched", "tagline": "Be warned. Be ready.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "pt", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0374536", "adult": false, "backdrop_path": "/w71S3Q9Jmxkwloyf5xzOKbWGbkA.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2005-06-24", "popularity": 0.724384348167155, "original_title": "Bewitched", "budget": 80000000, "cast": [{"name": "Nicole Kidman", "character": "Isabel Bigelow", "id": 2227, "credit_id": "52fe4521c3a36847f80be42d", "cast_id": 1, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Jack Wyatt", "id": 23659, "credit_id": "52fe4521c3a36847f80be431", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Shirley MacLaine", "character": "Iris Smythson / Endora", "id": 4090, "credit_id": "52fe4521c3a36847f80be435", "cast_id": 3, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 2}, {"name": "Michael Caine", "character": "Nigel Bigelow", "id": 3895, "credit_id": "52fe4521c3a36847f80be439", "cast_id": 4, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Jason Schwartzman", "character": "Ritchie", "id": 17881, "credit_id": "52fe4521c3a36847f80be43d", "cast_id": 5, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 4}, {"name": "Kristin Chenoweth", "character": "Maria Kelly", "id": 52775, "credit_id": "52fe4521c3a36847f80be441", "cast_id": 6, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 5}, {"name": "Heather Burns", "character": "Nina", "id": 26716, "credit_id": "52fe4521c3a36847f80be445", "cast_id": 7, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 6}, {"name": "Jim Turner", "character": "Larry", "id": 58768, "credit_id": "52fe4521c3a36847f80be449", "cast_id": 8, "profile_path": "/mujwEKBe86I89VblEvK3zQbE81j.jpg", "order": 7}, {"name": "Stephen Colbert", "character": "Stu Robison", "id": 58769, "credit_id": "52fe4521c3a36847f80be44d", "cast_id": 9, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 8}, {"name": "David Alan Grier", "character": "Jim Fields", "id": 58563, "credit_id": "52fe4521c3a36847f80be451", "cast_id": 10, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 9}, {"name": "Michael Badalucco", "character": "Joey Props", "id": 1010, "credit_id": "52fe4521c3a36847f80be455", "cast_id": 11, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 10}, {"name": "Carole Shelley", "character": "Aunt Clara", "id": 58770, "credit_id": "52fe4521c3a36847f80be459", "cast_id": 12, "profile_path": "/p9XDqB8LOG09DOwGQ3EXYr78KMt.jpg", "order": 11}, {"name": "Steve Carell", "character": "Uncle Arthur", "id": 4495, "credit_id": "52fe4521c3a36847f80be45d", "cast_id": 13, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 12}, {"name": "Katie Finneran", "character": "Sheila Wyatt", "id": 58771, "credit_id": "52fe4521c3a36847f80be461", "cast_id": 14, "profile_path": "/5bFxhH09QG5RXjyaUXIFWN3kSnw.jpg", "order": 13}, {"name": "James Lipton", "character": "Himself", "id": 58772, "credit_id": "52fe4521c3a36847f80be465", "cast_id": 15, "profile_path": "/5Mrm4njIIrpcqXRG7VFZEffjBLw.jpg", "order": 14}, {"name": "Brittany Krall", "character": "Auditioning Actress", "id": 1292243, "credit_id": "52fe4522c3a36847f80be4b7", "cast_id": 29, "profile_path": "/i7t7ueAV1n0jnvkhCkRQbtIsiF1.jpg", "order": 15}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe4521c3a36847f80be46b", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 5.0, "runtime": 102}, "996": {"poster_path": "/4Y8gPNjgMrOBoq11dyvBOtReaFR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Unsuspecting Mr. Dietrichson becomes increasingly accident prone after his icily calculating wife encourages him to sign a double indemnity policy proposed by a smooth-talking insurance agent. Against a backdrop of distinctly California settings, the partners in crime plan the perfect murder to collect the insurance. Perfect until a claims manager gets a familiar feeling of foul play and pursues the matter relentlessly.", "video": false, "id": 996, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Double Indemnity", "tagline": "From the Moment they met it was Murder!", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0036775", "adult": false, "backdrop_path": "/uAaS8OjscvF6yQeSngt5DR64lGU.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1944-09-06", "popularity": 0.780143882309189, "original_title": "Double Indemnity", "budget": 927262, "cast": [{"name": "Fred MacMurray", "character": "Walter Neff", "id": 4091, "credit_id": "52fe4298c3a36847f802adc5", "cast_id": 13, "profile_path": "/3TQjxCbV4xaILVSd0biqfKXt50u.jpg", "order": 0}, {"name": "Barbara Stanwyck", "character": "Phyllis Dietrichson", "id": 14974, "credit_id": "52fe4298c3a36847f802adc9", "cast_id": 14, "profile_path": "/yY2CrbaTyKpmmuUeSu57Wsf2aHk.jpg", "order": 1}, {"name": "Edward G. Robinson", "character": "Barton Keyes", "id": 13566, "credit_id": "52fe4298c3a36847f802ade5", "cast_id": 21, "profile_path": "/af1aBRi4UccaxtmDPWEtlfy1vXE.jpg", "order": 2}, {"name": "Porter Hall", "character": "Mr. Jackson", "id": 14975, "credit_id": "52fe4298c3a36847f802adcd", "cast_id": 15, "profile_path": "/m3QXXxI1iMrD9eVwB2z8d3QlKrC.jpg", "order": 3}, {"name": "Richard Gaines", "character": "Edward S. Norton, Jr.", "id": 14976, "credit_id": "52fe4298c3a36847f802add1", "cast_id": 16, "profile_path": "/brbWt9ZeanMekA9wnZS952HYgOp.jpg", "order": 4}, {"name": "Jean Heather", "character": "Lola Dietrichson", "id": 14977, "credit_id": "52fe4298c3a36847f802add5", "cast_id": 17, "profile_path": "/ark3pzEWVbjC9kmxYGqltmcXTq6.jpg", "order": 5}, {"name": "Tom Powers", "character": "Mr. Dietrichson", "id": 14978, "credit_id": "52fe4298c3a36847f802add9", "cast_id": 18, "profile_path": "/afw9RQWkQuKzYUloR8UXJzfYvIy.jpg", "order": 6}, {"name": "Fortunio Bonanova", "character": "Sam Garlopis", "id": 14979, "credit_id": "52fe4298c3a36847f802addd", "cast_id": 19, "profile_path": "/3oTAUQDI95m13EmADN6HI9pws8v.jpg", "order": 7}, {"name": "John Philliber", "character": "Joe Peters", "id": 14980, "credit_id": "52fe4298c3a36847f802ade1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Harold Garrison", "character": "Redcap", "id": 1044677, "credit_id": "52fe4298c3a36847f802ade9", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Byron Barr", "character": "Nino Zachetti", "id": 109844, "credit_id": "549d32a7c3a3682f1e0055ba", "cast_id": 23, "profile_path": "/m9aNzRJqnTpWp404S95iCDVH8q9.jpg", "order": 10}, {"name": "John Philliber", "character": "", "id": 14980, "credit_id": "549d32b992514131230054de", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "James Adamson", "character": "Pullman Porter (uncredited)", "id": 130487, "credit_id": "549d32dcc3a3682f1e0055c1", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "John Berry", "character": "Bit Part (uncredited)", "id": 94169, "credit_id": "549d32ee92514131320054be", "cast_id": 26, "profile_path": "/1iGCs8RZ7riBnwduxeiVlN2AklQ.jpg", "order": 13}, {"name": "Raymond Chandler", "character": "Man Reading Book (uncredited)", "id": 12493, "credit_id": "549d3300925141312f005bdb", "cast_id": 27, "profile_path": "/7YEDJ0u0JVcA2XETAtLHDbme2rf.jpg", "order": 14}, {"name": "Edmund Cobb", "character": "Train Conductor (uncredited)", "id": 43836, "credit_id": "549d3311c3a3682f23005780", "cast_id": 28, "profile_path": "/ss20cqXhEqdtoXVesH7nwKr3o0e.jpg", "order": 15}, {"name": "Kernan Cripps", "character": "Conductor (uncredited)", "id": 1042201, "credit_id": "549d33259251415dc1004a03", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Betty Farrington", "character": "Nettie - Dietrichsons' Maid (uncredited)", "id": 1108832, "credit_id": "549d33379251415dc1004a08", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Bess Flowers", "character": "Norton's Secretary (uncredited)", "id": 121323, "credit_id": "549d334b925141312f005be2", "cast_id": 31, "profile_path": "/akbW8jJl8GSXFpixFaobMOqvNv4.jpg", "order": 18}, {"name": "Miriam Franklin", "character": "Keyes' Secretary (uncredited)", "id": 1404169, "credit_id": "549d3362925141312f005be5", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Eddie Hall", "character": "Man in Drug Store (uncredited)", "id": 120199, "credit_id": "549d3375c3a368764f0012d3", "cast_id": 33, "profile_path": "/3MzgRiUyIHUvpPPFDSTGPC9ozPV.jpg", "order": 20}, {"name": "Teala Loring", "character": "Pacific All-Risk Telephone Operator (uncredited)", "id": 103937, "credit_id": "549d3385c3a3682f1b0055a8", "cast_id": 34, "profile_path": "/n86sSPZReNImz3AO630mGouivVO.jpg", "order": 21}, {"name": "George Magrill", "character": "Man (uncredited)", "id": 616605, "credit_id": "549d341ec3a368764f0012ed", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Sam McDaniel", "character": "Charlie - Garage Attendant (uncredited)", "id": 213830, "credit_id": "549d3446925141312f005c03", "cast_id": 37, "profile_path": "/q1yRiwq7ylRxy9H70vR9vRDqkbs.jpg", "order": 24}, {"name": "Billy Mitchell", "character": "Pullman Porter (uncredited)", "id": 1404174, "credit_id": "549d34cf9251413129005917", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Clarence Muse", "character": "Man (uncredited)", "id": 87825, "credit_id": "549d34fc9251415dc1004a3a", "cast_id": 39, "profile_path": "/2iQPt7leYimyKNzWWAxUnHSVlYP.jpg", "order": 26}, {"name": "Constance Purdy", "character": "Fat Shopper in Market (uncredited)", "id": 1056412, "credit_id": "549d350cc3a3682f230057c5", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Dick Rush", "character": "Pullman Conductor (uncredited)", "id": 932310, "credit_id": "549d3535c3a3685542002133", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Floyd Shackelford", "character": "Pullman Porter (uncredited)", "id": 1076927, "credit_id": "549d354792514131320054f0", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Oscar Smith", "character": "Pullman Porter (uncredited)", "id": 1271016, "credit_id": "549d35589251415dc1004a43", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Douglas Spencer", "character": "Lou Schwartz (uncredited)", "id": 12356, "credit_id": "549d356dc3a3682f230057d5", "cast_id": 44, "profile_path": null, "order": 31}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe4298c3a36847f802ad7f", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.2, "runtime": 107}, "9772": {"poster_path": "/zgg8psC8jvNEx5RC4NJ4c9J0KtE.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 315156409, "overview": "Russian terrorists conspire to hijack the aircraft with the president and his family on board. The commander in chief finds himself facing an impossible predicament: give in to the terrorists and sacrifice his family, or risk everything to uphold his principles - and the integrity of the nation.", "video": false, "id": 9772, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Air Force One", "tagline": "The fate of a nation rests on the courage of one man.", "vote_count": 243, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118571", "adult": false, "backdrop_path": "/4fTzk3CzU0F89CtxswZxC844WvA.jpg", "production_companies": [{"name": "Buena Vista International", "id": 25646}], "release_date": "1997-07-25", "popularity": 0.366930385849573, "original_title": "Air Force One", "budget": 85000000, "cast": [{"name": "Harrison Ford", "character": "President James Marshall", "id": 3, "credit_id": "52fe4529c3a36847f80bfe91", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Ivan Korshunov", "id": 64, "credit_id": "52fe4529c3a36847f80bfe95", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Glenn Close", "character": "Vice President Kathryn Bennett", "id": 515, "credit_id": "52fe452ac3a36847f80bfe99", "cast_id": 3, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 2}, {"name": "Wendy Crewson", "character": "Grace Marshall", "id": 19957, "credit_id": "52fe452ac3a36847f80bfe9d", "cast_id": 4, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 3}, {"name": "William H. Macy", "character": "Major Caldwell", "id": 3905, "credit_id": "52fe452ac3a36847f80bfea1", "cast_id": 5, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 4}, {"name": "J\u00fcrgen Prochnow", "character": "General Ivan Radek", "id": 920, "credit_id": "52fe452ac3a36847f80bfea5", "cast_id": 6, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 5}, {"name": "Oleg Taktarov", "character": "Prison Guard #2", "id": 77351, "credit_id": "52fe452ac3a36847f80bfeeb", "cast_id": 19, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 6}, {"name": "Liesel Matthews", "character": "Alice Marshall", "id": 84093, "credit_id": "52fe452ac3a36847f80bfef5", "cast_id": 21, "profile_path": "/mTY5bXqMNTPAe3JYU1rQBru5w9o.jpg", "order": 7}, {"name": "Paul Guilfoyle", "character": "Chief of Staff Lloyd 'Shep' Shepherd", "id": 925, "credit_id": "52fe452ac3a36847f80bfef9", "cast_id": 22, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 8}, {"name": "Xander Berkeley", "character": "Secret Service Agent Gibbs", "id": 3982, "credit_id": "52fe452ac3a36847f80bfefd", "cast_id": 23, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 9}, {"name": "Dean Stockwell", "character": "Defense Secretary Walter Dean", "id": 923, "credit_id": "52fe452ac3a36847f80bff01", "cast_id": 24, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 10}, {"name": "Tom Everett", "character": "National Security Advisor Jack Doherty", "id": 140250, "credit_id": "52fe452ac3a36847f80bff05", "cast_id": 25, "profile_path": "/nxrCAB3xL79EdWLwBUMwXj7FtI3.jpg", "order": 11}, {"name": "Donna Bullock", "character": "Deputy Press Secretary Melanie Mitchel", "id": 65740, "credit_id": "52fe452ac3a36847f80bff09", "cast_id": 26, "profile_path": "/bz6ybejRPtrNw9Ul8eXcflgMy8K.jpg", "order": 12}, {"name": "Michael Ray Miller", "character": "Colonel Axelrod", "id": 155841, "credit_id": "52fe452ac3a36847f80bff0d", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Carl Weintraub", "character": "Lt. Colonel Ingraham", "id": 157140, "credit_id": "52fe452ac3a36847f80bff11", "cast_id": 28, "profile_path": "/fYsFbi57VL49hwCLg6CReiDsbDJ.jpg", "order": 14}, {"name": "Elester Latham", "character": "AFO Navigator", "id": 1080064, "credit_id": "52fe452ac3a36847f80bff15", "cast_id": 29, "profile_path": "/1IlxOuvptLb7pH2j0t1KLQukzdG.jpg", "order": 15}, {"name": "Elya Baskin", "character": "Andrei Kolchak", "id": 2368, "credit_id": "52fe452ac3a36847f80bff19", "cast_id": 30, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 16}, {"name": "Levan Uchaneishvili", "character": "Sergei Lenski", "id": 27037, "credit_id": "52fe452ac3a36847f80bff1d", "cast_id": 31, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 17}, {"name": "David Vadim", "character": "Igor Nevsky", "id": 37205, "credit_id": "52fe452ac3a36847f80bff21", "cast_id": 32, "profile_path": "/bvwt3dtEqCmZBPfxTCuDTCPPFEk.jpg", "order": 18}, {"name": "Andrew Divoff", "character": "Boris Bazylev", "id": 36218, "credit_id": "52fe452ac3a36847f80bff25", "cast_id": 33, "profile_path": "/3ana0vJs5uLDXb6dSHvp5naKmcl.jpg", "order": 19}, {"name": "Ilia Volok", "character": "Vladimir Krasin", "id": 109667, "credit_id": "52fe452ac3a36847f80bff29", "cast_id": 34, "profile_path": "/k5ACLMgPMrZjKbnOmHmaeBLx2Te.jpg", "order": 20}, {"name": "Chris Howell", "character": "Major Perkins", "id": 936505, "credit_id": "52fe452ac3a36847f80bff2d", "cast_id": 35, "profile_path": null, "order": 21}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe452ac3a36847f80bfeab", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 5.9, "runtime": 124}, "11090": {"poster_path": "/pY9JyFaLzTdqTui3xLTVXaElGwE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84772742, "overview": "When loser Marvin Mange is involved in a horrible car accident, he's brought back to life by a deranged scientist as half man and half animal. His newfound powers are awesome -- but their adverse side effects could take over his life. Now, Marvin must fight to control his crazy primal urges around his new squeeze, Rianna, and his rival, Sgt. Sisk, who both think he's one cool cat.", "video": false, "id": 11090, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Animal", "tagline": "He wasn't much of a man... Now he's not much of an animal!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0255798", "adult": false, "backdrop_path": "/wwrEPgM8FsVfupP39EexaFWyDPn.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Happy Madison", "id": 878}], "release_date": "2001-06-01", "popularity": 0.379006461701225, "original_title": "The Animal", "budget": 22000000, "cast": [{"name": "Rob Schneider", "character": "Marvin Mange", "id": 60949, "credit_id": "52fe43f59251416c750242bd", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "Colleen Haskell", "character": "Rianna", "id": 68000, "credit_id": "52fe43f59251416c750242c1", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "John C. McGinley", "character": "Sgt. Sisk", "id": 11885, "credit_id": "52fe43f59251416c750242c5", "cast_id": 3, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 2}, {"name": "Ed Asner", "character": "Chief Wilson", "id": 68812, "credit_id": "52fe43f59251416c750242c9", "cast_id": 4, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 3}, {"name": "Guy Torry", "character": "", "id": 828, "credit_id": "539e9971c3a368725e0010f8", "cast_id": 14, "profile_path": "/aNpthnwYd2oHN8KhYBUAhzViNzT.jpg", "order": 4}, {"name": "Adam Sandler", "character": "Townie", "id": 19292, "credit_id": "54eb24bb9251412eae0068f4", "cast_id": 15, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 5}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe43f59251416c750242d5", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 4.9, "runtime": 84}, "2899": {"poster_path": "/qWy5b64SoBXcMDdfgLyLZgIHSdv.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 111127553, "overview": "The Egyptian Queen Cleopatra bets against the Roman Emperor, Julius Caesar, that her people are still great, even if the times of the Pharaohs has long passed. She vows (against all logic) to build a new palace for Caesar within three months. Since all her architects are either busy otherwise or too conservative in style, this ambivalent honor falls to Edifis. He is to build the palace and be covered in gold or, if not, his fate is to be eaten by crocodiles. Edifis calls upon an old friend to help him out: The fabulous Druid Getafix from Gaul, who brews a fantastic potion that gives supernatural strength. In order to help and protect the old Druid, Asterix and Obelix accompany him on his journey to Egypt. When Julius Caesar gets wind of the project succeeding, he has the building site attacked by his troops in order to win the bet and not lose face. But just like the local pirates, he hasn't counted on Asterix and Obelix.", "video": false, "id": 2899, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Asterix & Obelix: Mission Cleopatra", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vm0i4KIscrTiUsri21z1SOIG4fo.jpg", "poster_path": "/sC6NY40I794YnSNxgDDCnX4B3Se.jpg", "id": 2396, "name": "Asterix and Obelix Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0250223", "adult": false, "backdrop_path": "/hHdnN6ZyNkNKkOpVbvNmooTNf8J.jpg", "production_companies": [{"name": "Canal+", "id": 5358}], "release_date": "2002-01-29", "popularity": 1.19816800266505, "original_title": "Ast\u00e9rix & Ob\u00e9lix Mission Cl\u00e9op\u00e2tre", "budget": 0, "cast": [{"name": "G\u00e9rard Depardieu", "character": "Ob\u00e9lix", "id": 16927, "credit_id": "52fe4373c3a36847f8055185", "cast_id": 3, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 0}, {"name": "Christian Clavier", "character": "Ast\u00e9rix", "id": 28781, "credit_id": "52fe4373c3a36847f8055189", "cast_id": 4, "profile_path": "/1VB7ls5ibtsklup67akj6bLbgp.jpg", "order": 1}, {"name": "Monica Bellucci", "character": "Cl\u00e9op\u00e2tre", "id": 28782, "credit_id": "52fe4373c3a36847f805518d", "cast_id": 5, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 2}, {"name": "Alain Chabat", "character": "Julius Ceasar", "id": 4275, "credit_id": "52fe4373c3a36847f8055191", "cast_id": 6, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 3}, {"name": "Jamel Debbouze", "character": "Num\u00e9robis", "id": 2408, "credit_id": "52fe4373c3a36847f805519b", "cast_id": 8, "profile_path": "/rnXlFlIAbCnQqQUyTdBCt7B0H5L.jpg", "order": 4}, {"name": "G\u00e9rard Darmon", "character": "Amonbofils", "id": 47337, "credit_id": "52fe4373c3a36847f805519f", "cast_id": 9, "profile_path": "/9pGuqyaVp9EJDu8xSsM3I8GnP7j.jpg", "order": 5}, {"name": "Claude Rich", "character": "Panoramix", "id": 24903, "credit_id": "52fe4373c3a36847f80551a3", "cast_id": 10, "profile_path": "/uNcSUfnkToKxmVUD0PhngbBm1KL.jpg", "order": 6}, {"name": "\u00c9douard Baer", "character": "Otis", "id": 41035, "credit_id": "52fe4373c3a36847f80551a7", "cast_id": 11, "profile_path": "/bevNDP9RQU1b8UdZPElEw4f9fc9.jpg", "order": 7}, {"name": "Isabelle Nanty", "character": "Itin\u00e9ris", "id": 2412, "credit_id": "52fe4373c3a36847f80551ab", "cast_id": 12, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 8}, {"name": "Jean Benguigui", "character": "Malococsis", "id": 35899, "credit_id": "52fe4373c3a36847f80551af", "cast_id": 13, "profile_path": "/p2XMWRNPJx1aUZbUUTCEvrB4r9T.jpg", "order": 9}, {"name": "Marina Fo\u00efs", "character": "Sucettalanis", "id": 76820, "credit_id": "52fe4373c3a36847f80551b3", "cast_id": 14, "profile_path": "/hkTVJ1gZZjHwUzNwT5pt2I3UNe.jpg", "order": 10}, {"name": "Claude Berri", "character": "le portraitiste de Cl\u00e9op\u00e2tre", "id": 20718, "credit_id": "52fe4373c3a36847f80551b7", "cast_id": 15, "profile_path": "/18kcgqW93Rosz7hQ1zlLWlbBOEi.jpg", "order": 11}, {"name": "Chantal Lauby", "character": "Cartapus", "id": 82119, "credit_id": "52fe4373c3a36847f80551bb", "cast_id": 16, "profile_path": "/jjAqj8DtfVD4F4jJOn2ZUEfp0Qm.jpg", "order": 12}, {"name": "Jean-Paul Rouve", "character": "Caius antivirus", "id": 16922, "credit_id": "52fe4373c3a36847f80551bf", "cast_id": 17, "profile_path": "/iHOZd4VO0dZ2H3ADCJhUk2BmkOd.jpg", "order": 13}, {"name": "Dieudonn\u00e9 M'bala M'bala", "character": "Caius C\u00e9plus", "id": 140457, "credit_id": "54fdb513c3a3681638004502", "cast_id": 34, "profile_path": "/qiqvH4YDT8NMcC4Z1TdAwavHkPc.jpg", "order": 14}, {"name": "Mouss Diouf", "character": "Baba, la vigie des pirates", "id": 146629, "credit_id": "52fe4373c3a36847f80551cd", "cast_id": 20, "profile_path": "/zbZkv7k1srpNEQEaUwsVZMiP1Op.jpg", "order": 16}, {"name": "Bernard Farcy", "character": "Barbe-Rouge le pirate", "id": 23984, "credit_id": "52fe4373c3a36847f80551d1", "cast_id": 21, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 17}, {"name": "Michel Cr\u00e9mad\u00e8s", "character": "Triple Patte", "id": 99303, "credit_id": "52fe4373c3a36847f80551d5", "cast_id": 22, "profile_path": "/8UcDWjb36UGyHyVjdxXeh9h9e92.jpg", "order": 18}, {"name": "\u00c9douard Montoute", "character": "Nexusis", "id": 5441, "credit_id": "52fe4373c3a36847f80551d9", "cast_id": 23, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 19}, {"name": "No\u00e9mie Lenoir", "character": "Chamandra", "id": 145633, "credit_id": "52fe4373c3a36847f80551dd", "cast_id": 24, "profile_path": "/xxksvdnhYW7M65ScvrDZsunEdFK.jpg", "order": 20}, {"name": "Fatou N'Diaye", "character": "Exlibris", "id": 73385, "credit_id": "52fe4373c3a36847f80551e1", "cast_id": 25, "profile_path": "/AdIwZ2ShFf1vmlVV5lB442emck9.jpg", "order": 21}, {"name": "Dominique Besnehard", "character": "Le go\u00fbteur", "id": 21680, "credit_id": "52fe4373c3a36847f80551e5", "cast_id": 26, "profile_path": "/xh3UJRvzFdFfliMIBYvetL5olYZ.jpg", "order": 22}, {"name": "Zinedine Soualem", "character": "Le carreleur", "id": 5445, "credit_id": "52fe4373c3a36847f80551e9", "cast_id": 27, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 23}, {"name": "Cyril Raffaelli", "character": "L\u00e9gionnaire for\u00eat gauloise", "id": 21946, "credit_id": "52fe4373c3a36847f80551ed", "cast_id": 28, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 24}, {"name": "Jo\u00ebl Cantona", "character": "Centurion for\u00eat gauloise", "id": 269059, "credit_id": "52fe4373c3a36847f80551f1", "cast_id": 29, "profile_path": "/rVhMEp9weqlEPkYwTMMfRGBjtiB.jpg", "order": 25}, {"name": "Louis Leterrier", "character": "Ouh\u00e9charlis", "id": 18865, "credit_id": "52fe4373c3a36847f80551f5", "cast_id": 30, "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "order": 26}, {"name": "Emma de Caunes", "character": "La secr\u00e9taire de C\u00e9sar", "id": 4286, "credit_id": "52fe4373c3a36847f80551f9", "cast_id": 31, "profile_path": "/xKHtjT3A8Y5tpmxDs7PddlMP6M1.jpg", "order": 27}, {"name": "Maurice Barth\u00e9l\u00e9my", "character": "L\u00e9gionnaire Couloirdebus", "id": 132542, "credit_id": "52fe4373c3a36847f80551fd", "cast_id": 32, "profile_path": "/72De6FiSHkB9cnn0CNNFJtl6Hw7.jpg", "order": 28}, {"name": "Victor Loukianenko", "character": "Brutus", "id": 1289017, "credit_id": "52fe4373c3a36847f8055201", "cast_id": 33, "profile_path": "/3KHs9hDtfzP3IJEQOoDRUBU5ccq.jpg", "order": 29}], "directors": [{"name": "Alain Chabat", "department": "Directing", "job": "Director", "credit_id": "52fe4373c3a36847f805517b", "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "id": 4275}], "vote_average": 7.2, "runtime": 108}, "9208": {"poster_path": "/avqUG5RYB93rwSUNL5r16Vtbc9g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.", "video": false, "id": 9208, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Broken Arrow", "tagline": "Prepare to Go Ballistic.", "vote_count": 118, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115759", "adult": false, "backdrop_path": "/zZBns22yGa7rprapb11ZtV9EKsp.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Mark Gordon Productions", "id": 11362}, {"name": "WCG Entertainment Productions", "id": 456}], "release_date": "1996-02-09", "popularity": 0.557761944236771, "original_title": "Broken Arrow", "budget": 0, "cast": [{"name": "John Travolta", "character": "Maj. Vic 'Deak' Deakins", "id": 8891, "credit_id": "52fe44dcc3a36847f80ae6e7", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Christian Slater", "character": "Capt. Riley Hale", "id": 2224, "credit_id": "52fe44dcc3a36847f80ae6eb", "cast_id": 2, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 1}, {"name": "Samantha Mathis", "character": "Terry Carmichael", "id": 20767, "credit_id": "52fe44dcc3a36847f80ae6ef", "cast_id": 3, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 2}, {"name": "Delroy Lindo", "character": "Colonel Max Wilkins", "id": 18792, "credit_id": "52fe44dcc3a36847f80ae6f3", "cast_id": 4, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 3}, {"name": "Bob Gunton", "character": "Pritchett", "id": 4029, "credit_id": "52fe44dcc3a36847f80ae751", "cast_id": 21, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 4}, {"name": "Frank Whaley", "character": "Giles Prentice", "id": 11805, "credit_id": "52fe44dcc3a36847f80ae755", "cast_id": 22, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 5}, {"name": "Howie Long", "character": "Kelly", "id": 126418, "credit_id": "52fe44dcc3a36847f80ae759", "cast_id": 23, "profile_path": "/sjwTca5rVsDywsvMlVuN0hyrATP.jpg", "order": 6}, {"name": "Vondie Curtis-Hall", "character": "Chief Sam Rhodes", "id": 6198, "credit_id": "52fe44dcc3a36847f80ae75d", "cast_id": 24, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 7}, {"name": "Jack Thompson", "character": "Chairman, Joint Chief of Staff", "id": 12536, "credit_id": "52fe44dcc3a36847f80ae761", "cast_id": 25, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 8}, {"name": "Vyto Ruginis", "character": "Johnson", "id": 61216, "credit_id": "52fe44dcc3a36847f80ae765", "cast_id": 26, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 9}, {"name": "Ousaun Elam", "character": "Lt. Thomas", "id": 4607, "credit_id": "52fe44dcc3a36847f80ae769", "cast_id": 27, "profile_path": "/wYr28o3cuqZ3iLCMWBMwjhrA05o.jpg", "order": 10}, {"name": "Shaun Toub", "character": "Max", "id": 17857, "credit_id": "52fe44dcc3a36847f80ae76d", "cast_id": 28, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 11}, {"name": "Casey Biggs", "character": "Novacek", "id": 62548, "credit_id": "52fe44dcc3a36847f80ae771", "cast_id": 29, "profile_path": "/iFi43Gv1pGeywgMCBenbPtyTxr7.jpg", "order": 12}, {"name": "Jeffrey J. Stephen", "character": "Shepherd", "id": 141582, "credit_id": "52fe44dcc3a36847f80ae775", "cast_id": 30, "profile_path": "/krBGyBelQSG7FOFS7WpKDQSA0eQ.jpg", "order": 13}, {"name": "Joey Box", "character": "Frakes", "id": 9558, "credit_id": "52fe44dcc3a36847f80ae779", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe44dcc3a36847f80ae747", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.4, "runtime": 108}, "1018": {"poster_path": "/fMC8JBWx2VjsJ53JopAcFjqmlYv.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20117339, "overview": "After a car wreck on the winding Mulholland Drive renders a woman amnesic, she and a perky Hollywood-hopeful search for clues and answers across Los Angeles in a twisting venture beyond dreams and reality.", "video": false, "id": 1018, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mulholland Drive", "tagline": "An actress longing to be a star. A woman searching for herself. Both worlds will collide...on Mulholland Drive", "vote_count": 293, "homepage": "http://www.mulhollanddrive.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0166924", "adult": false, "backdrop_path": "/ihkQywNs6Si24WssdmT1rNHuAYy.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Les Films Alain Sarde", "id": 635}], "release_date": "2001-10-12", "popularity": 0.755743205046399, "original_title": "Mulholland Drive", "budget": 15000000, "cast": [{"name": "Naomi Watts", "character": "Betty Elms", "id": 3489, "credit_id": "52fe42e4c3a36847f802aebb", "cast_id": 8, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Laura Harring", "character": "Rita", "id": 15007, "credit_id": "52fe42e4c3a36847f802aebf", "cast_id": 9, "profile_path": "/ng0u5d41FhJDS9mJ74nYnd7XNZP.jpg", "order": 1}, {"name": "Ann Miller", "character": "Catherine Lenoix", "id": 15008, "credit_id": "52fe42e5c3a36847f802aec3", "cast_id": 10, "profile_path": "/b2NSm6PsPXP9KyKts5ElUVOUoVe.jpg", "order": 2}, {"name": "Dan Hedaya", "character": "Vincenzo Castigliane", "id": 6486, "credit_id": "52fe42e5c3a36847f802aec7", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 3}, {"name": "Justin Theroux", "character": "Adam Kesher", "id": 15009, "credit_id": "52fe42e5c3a36847f802aecb", "cast_id": 12, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 4}, {"name": "Brent Briscoe", "character": "Detective Neal Domgaard", "id": 15011, "credit_id": "52fe42e5c3a36847f802aed7", "cast_id": 15, "profile_path": "/7ws22WEvxt6cvMDyijZOdf9AuiS.jpg", "order": 5}, {"name": "Robert Forster", "character": "Detective Harry McKnight", "id": 5694, "credit_id": "52fe42e5c3a36847f802aecf", "cast_id": 13, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 6}, {"name": "Katharine Towne", "character": "Cynthia Jenzen", "id": 15012, "credit_id": "52fe42e5c3a36847f802aedb", "cast_id": 16, "profile_path": "/33AK0lDtxIhh7125JC7daDWMSkC.jpg", "order": 7}, {"name": "Lee Grant", "character": "Louise Bonner", "id": 30123, "credit_id": "52fe42e5c3a36847f802af23", "cast_id": 33, "profile_path": "/uTlYhUFxQBhpYvNVDNtnWadnK7f.jpg", "order": 8}, {"name": "Scott Coffey", "character": "Wilkins", "id": 9306, "credit_id": "52fe42e5c3a36847f802aee3", "cast_id": 18, "profile_path": "/kRA20iJ4hBeHSUlYduRTXEhQyku.jpg", "order": 9}, {"name": "Billy Ray Cyrus", "character": "Gene", "id": 78887, "credit_id": "52fe42e5c3a36847f802aeff", "cast_id": 23, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 10}, {"name": "Chad Everett", "character": "Jimmy Katz", "id": 15013, "credit_id": "52fe42e5c3a36847f802aedf", "cast_id": 17, "profile_path": "/1FgrsrRFTnNmLkvjvcEPU7ReEuS.jpg", "order": 11}, {"name": "Rita Taggart", "character": "Linney James", "id": 140356, "credit_id": "52fe42e5c3a36847f802af03", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "James Karen", "character": "Wally Brown", "id": 14852, "credit_id": "52fe42e5c3a36847f802af07", "cast_id": 25, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 13}, {"name": "Lori Heuring", "character": "Lorraine Kesher", "id": 15010, "credit_id": "52fe42e5c3a36847f802aed3", "cast_id": 14, "profile_path": "/1AR1oUXL7oHfOwpWlZee709pmh4.jpg", "order": 14}, {"name": "Angelo Badalamenti", "character": "Luigi Castigliani", "id": 5628, "credit_id": "52fe42e5c3a36847f802af0b", "cast_id": 26, "profile_path": "/n5euRajRHN2xSSq4MnGMfHEHkBZ.jpg", "order": 15}, {"name": "Michael Des Barres", "character": "Billy Deznutz", "id": 65334, "credit_id": "52fe42e5c3a36847f802af0f", "cast_id": 27, "profile_path": "/kKXCivEKwYYVirhyIVsqxTlGi5.jpg", "order": 16}, {"name": "Marcus Graham", "character": "Vincent Darby", "id": 154605, "credit_id": "52fe42e5c3a36847f802af13", "cast_id": 28, "profile_path": "/8IZSP92UWNxEXQ6bk6EgN2qQs5b.jpg", "order": 17}, {"name": "Missy Crider", "character": "Waitress at Winkies (Diane / Betty) (as Melissa Crider)", "id": 53646, "credit_id": "52fe42e5c3a36847f802aff1", "cast_id": 84, "profile_path": null, "order": 18}, {"name": "Robert Katims", "character": "Ray Hott", "id": 79654, "credit_id": "52fe42e5c3a36847f802af17", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Jeanne Bates", "character": "Irene", "id": 14796, "credit_id": "52fe42e5c3a36847f802af1b", "cast_id": 31, "profile_path": "/lHrwjoC9K970j1uet252Ti3LBaD.jpg", "order": 20}, {"name": "Dan Birnbaum", "character": "Irene's Companion at Airport", "id": 1037878, "credit_id": "52fe42e5c3a36847f802af1f", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Randall Wulff", "character": "Limo Driver (as Scott Wulff)", "id": 1172386, "credit_id": "52fe42e5c3a36847f802af27", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Maya Bond", "character": "Ruth Elms", "id": 1172387, "credit_id": "52fe42e5c3a36847f802af2b", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Patrick Fischler", "character": "Dan", "id": 52801, "credit_id": "52fe42e5c3a36847f802af2f", "cast_id": 36, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 24}, {"name": "Michael Cooke", "character": "Herb", "id": 1172388, "credit_id": "52fe42e5c3a36847f802af33", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Bonnie Aarons", "character": "Bum", "id": 87287, "credit_id": "52fe42e5c3a36847f802af37", "cast_id": 38, "profile_path": "/9EbAXaOHxyOsIbW5JpP9ezO9t4i.jpg", "order": 26}, {"name": "Michael J. Anderson", "character": "Mr. Roque", "id": 123517, "credit_id": "52fe42e5c3a36847f802af3b", "cast_id": 39, "profile_path": "/3YhlfQLwReWY3xSjh5VJriOkiLA.jpg", "order": 27}, {"name": "Joseph Kearney", "character": "Roque's Manservant", "id": 1172389, "credit_id": "52fe42e5c3a36847f802af3f", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Enrique Buelna", "character": "Back of Head Man", "id": 1172390, "credit_id": "52fe42e5c3a36847f802af43", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Richard Mead", "character": "Hairy-Armed Man", "id": 1172391, "credit_id": "52fe42e5c3a36847f802af47", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Sean Everett", "character": "Cab Driver at LAX (as Sean E. Markland)", "id": 191201, "credit_id": "52fe42e5c3a36847f802af4b", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Daniel Rey", "character": "Valet Attendant", "id": 141808, "credit_id": "52fe42e5c3a36847f802af4f", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "David Schroeder", "character": "Robert Smith", "id": 194624, "credit_id": "52fe42e5c3a36847f802af53", "cast_id": 45, "profile_path": "/2fkDIFtMAUbVwKrPS8evyay4QHG.jpg", "order": 33}, {"name": "Tom Morris", "character": "Espresso Man", "id": 1172392, "credit_id": "52fe42e5c3a36847f802af57", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Melissa George", "character": "Camilla Rhodes", "id": 27755, "credit_id": "52fe42e5c3a36847f802af5b", "cast_id": 47, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 35}, {"name": "Mo Gallini", "character": "Castigliane Limo Driver (as Matt Gallini)", "id": 8180, "credit_id": "52fe42e5c3a36847f802af5f", "cast_id": 48, "profile_path": "/fkc5N30a7ZvZkCJEnnqh24uQwDN.jpg", "order": 36}, {"name": "Mark Pellegrino", "character": "Joe Messing", "id": 1236, "credit_id": "52fe42e5c3a36847f802af63", "cast_id": 49, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 37}, {"name": "Vincent Castellanos", "character": "Ed", "id": 177100, "credit_id": "52fe42e5c3a36847f802af67", "cast_id": 50, "profile_path": "/z0OHAcfUnICbAh9UqAYgfjh1IT5.jpg", "order": 38}, {"name": "Diane Nelson", "character": "Heavy-Set Woman", "id": 1172393, "credit_id": "52fe42e5c3a36847f802af6b", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Charles Croughwell", "character": "Vacuum Man (as Charlie Croughwell)", "id": 9654, "credit_id": "52fe42e5c3a36847f802af6f", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Rena Riffel", "character": "Laney", "id": 66877, "credit_id": "52fe42e5c3a36847f802af73", "cast_id": 53, "profile_path": "/xYcV9qV0GMMKDZqAYmlgWDYIz1Y.jpg", "order": 41}, {"name": "Tad Horino", "character": "Taka", "id": 70947, "credit_id": "52fe42e5c3a36847f802af77", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Tony Longo", "character": "Kenny", "id": 13644, "credit_id": "52fe42e5c3a36847f802af7b", "cast_id": 55, "profile_path": "/iIb28i2pBH8vhPUoZm34Z2MM8D6.jpg", "order": 43}, {"name": "Geno Silva", "character": "Cookie Park Hotel Manager / Club Silencio M.C.", "id": 54864, "credit_id": "52fe42e5c3a36847f802af7f", "cast_id": 56, "profile_path": "/K9Nban8CdJltJqn8GXgnZbgTLc.jpg", "order": 44}, {"name": "Monty Montgomery", "character": "Cowboy (as Lafayette Montgomery)", "id": 6589, "credit_id": "52fe42e5c3a36847f802af83", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Kate Forster", "character": "Martha Johnson", "id": 21803, "credit_id": "52fe42e5c3a36847f802af87", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Wayne Grace", "character": "Bob Brooker", "id": 52145, "credit_id": "52fe42e5c3a36847f802af8b", "cast_id": 59, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 47}, {"name": "Michele Hicks", "character": "Nicki Pelazza", "id": 163642, "credit_id": "52fe42e5c3a36847f802af8f", "cast_id": 60, "profile_path": "/zReeqY2DRzFklCEa2xtopG0OEig.jpg", "order": 48}, {"name": "Lisa K. Ferguson", "character": "Julie Chadwick (as Lisa Ferguson)", "id": 1172395, "credit_id": "52fe42e5c3a36847f802af93", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "William Ostrander", "character": "2nd Assistant Director", "id": 55929, "credit_id": "52fe42e5c3a36847f802af97", "cast_id": 62, "profile_path": null, "order": 50}, {"name": "Lisa Lackey", "character": "Carol", "id": 34274, "credit_id": "52fe42e5c3a36847f802af9b", "cast_id": 63, "profile_path": "/oLG9JLyWqo2dsuukyHka08zfZjT.jpg", "order": 51}, {"name": "Brian Beacock", "character": "Backup Singer #1", "id": 174012, "credit_id": "52fe42e5c3a36847f802af9f", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "Blake Lindsley", "character": "Backup Singer #2", "id": 41690, "credit_id": "52fe42e5c3a36847f802afa3", "cast_id": 65, "profile_path": "/jW9esvFejQSyjyZZMqUg4xcbsww.jpg", "order": 53}, {"name": "Adrien Curry", "character": "Backup Singer #3", "id": 1172396, "credit_id": "52fe42e5c3a36847f802afa7", "cast_id": 66, "profile_path": null, "order": 54}, {"name": "Tyrah M. Lindsey", "character": "Backup Singer #4", "id": 1172397, "credit_id": "52fe42e5c3a36847f802afab", "cast_id": 67, "profile_path": null, "order": 55}, {"name": "Michael D. Weatherred", "character": "Hank (as Michael Weatherred)", "id": 1172398, "credit_id": "52fe42e5c3a36847f802afaf", "cast_id": 68, "profile_path": null, "order": 56}, {"name": "Michael Fairman", "character": "Jason", "id": 84707, "credit_id": "52fe42e5c3a36847f802afb3", "cast_id": 69, "profile_path": "/7xdaQL4hxatCFWXottzdFsUKGJU.jpg", "order": 57}, {"name": "Johanna Stein", "character": "Woman in #12", "id": 961740, "credit_id": "52fe42e5c3a36847f802afb7", "cast_id": 70, "profile_path": null, "order": 58}, {"name": "Richard Green", "character": "Bondar", "id": 1172399, "credit_id": "52fe42e5c3a36847f802afbb", "cast_id": 71, "profile_path": null, "order": 59}, {"name": "Conte Candoli", "character": "Club Silencio Trumpet Player (as Conti Condoli)", "id": 1172400, "credit_id": "52fe42e5c3a36847f802afbf", "cast_id": 72, "profile_path": null, "order": 60}, {"name": "Cori Glazer", "character": "Blue-Haired Lady in balcony seat at Club Silencio", "id": 9320, "credit_id": "52fe42e5c3a36847f802afc3", "cast_id": 73, "profile_path": null, "order": 61}, {"name": "Rebekah Del Rio", "character": "Herself", "id": 230725, "credit_id": "52fe42e5c3a36847f802afc7", "cast_id": 74, "profile_path": null, "order": 62}, {"name": "Lyssie Powell", "character": "Blond in Bed (Corpse) in #17", "id": 1172401, "credit_id": "52fe42e5c3a36847f802afcb", "cast_id": 75, "profile_path": null, "order": 63}, {"name": "Kimberly Clever", "character": "Dancer", "id": 1172402, "credit_id": "52fe42e5c3a36847f802afcf", "cast_id": 76, "profile_path": null, "order": 64}, {"name": "Joshua Collazo", "character": "Dancer", "id": 1172403, "credit_id": "52fe42e5c3a36847f802afd3", "cast_id": 77, "profile_path": null, "order": 65}, {"name": "David Frutos", "character": "Dancer", "id": 1172404, "credit_id": "52fe42e5c3a36847f802afd7", "cast_id": 78, "profile_path": null, "order": 66}, {"name": "Peter Loggins", "character": "Dancer", "id": 1172405, "credit_id": "52fe42e5c3a36847f802afdb", "cast_id": 79, "profile_path": null, "order": 67}, {"name": "Theresa Salazar", "character": "Dancer", "id": 1172406, "credit_id": "52fe42e5c3a36847f802afdf", "cast_id": 80, "profile_path": null, "order": 68}, {"name": "Thea Samuels", "character": "Dancer", "id": 1172407, "credit_id": "52fe42e5c3a36847f802afe3", "cast_id": 81, "profile_path": null, "order": 69}, {"name": "Christian Thompson", "character": "Dancer", "id": 1172409, "credit_id": "52fe42e5c3a36847f802afe7", "cast_id": 82, "profile_path": null, "order": 70}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe42e4c3a36847f802ae9f", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.2, "runtime": 147}, "1023": {"poster_path": "/pakGgN2eNZ6Eayl7B3ulickInwD.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 0, "overview": "A neo-nazi sentenced to community service at a church clashes with the blindly devotional priest.", "video": false, "id": 1023, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Adam's Apples", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "da", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0418455", "adult": false, "backdrop_path": "/iljRuzHU7sWppNPTZwHQ1e8R5ss.jpg", "production_companies": [{"name": "M&M Productions", "id": 1789}], "release_date": "2005-04-15", "popularity": 0.683084581720441, "original_title": "Adams \u00e6bler", "budget": 0, "cast": [{"name": "Mads Mikkelsen", "character": "Ivan", "id": 1019, "credit_id": "52fe42e5c3a36847f802b05d", "cast_id": 7, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "Ulrich Thomsen", "character": "Adam", "id": 4455, "credit_id": "52fe42e5c3a36847f802b061", "cast_id": 8, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 1}, {"name": "Paprika Steen", "character": "Sarah", "id": 4458, "credit_id": "52fe42e5c3a36847f802b065", "cast_id": 9, "profile_path": "/7iz6g2gXDCVL9LFjqmVV8KwGvNP.jpg", "order": 2}, {"name": "Ole Thestrup", "character": "Dr. Kolberg", "id": 15085, "credit_id": "52fe42e5c3a36847f802b069", "cast_id": 10, "profile_path": "/qGhwUg9o56czRYXYYSpD8urSCpH.jpg", "order": 3}, {"name": "Nikolaj Lie Kaas", "character": "Holger", "id": 1018, "credit_id": "52fe42e5c3a36847f802b06d", "cast_id": 11, "profile_path": "/xO4yWra3xoK0rdzDN4OC8Jwh0FH.jpg", "order": 4}, {"name": "Nicolas Bro", "character": "Gunnar", "id": 15086, "credit_id": "52fe42e5c3a36847f802b071", "cast_id": 12, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 5}, {"name": "Ali Kazim", "character": "Khalid", "id": 15087, "credit_id": "52fe42e5c3a36847f802b075", "cast_id": 13, "profile_path": "/2KnMvZheRWxFDUyZVArAlo9mtBY.jpg", "order": 6}, {"name": "Gyrd L\u00f8fquist", "character": "Poul", "id": 15088, "credit_id": "52fe42e5c3a36847f802b079", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Lars Ranthe", "character": "Esben", "id": 588175, "credit_id": "52fe42e5c3a36847f802b07d", "cast_id": 15, "profile_path": "/qMbcmZDykjm0K1spNjzv5HDoL9f.jpg", "order": 8}, {"name": "Peter Reichhardt", "character": "Nalle", "id": 1115156, "credit_id": "54a171ac925141313200cc04", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Tomas Villum Jensen", "character": "Arne", "id": 3401, "credit_id": "54a171c8925141236b003fec", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Peter Lambert", "character": "J\u00f8rgen", "id": 1405772, "credit_id": "54a171f29251412127003e94", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Emil Kevin Olsen", "character": "Christoffer", "id": 1439235, "credit_id": "550321cd925141282f003eb6", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Tomas Villum Jensen", "character": "", "id": 3401, "credit_id": "550321fcc3a3685ba6004d6d", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Solvej Christensen", "character": "", "id": 1439236, "credit_id": "5503221dc3a3687b6900404f", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Rasmus Rise Michaelsen", "character": "", "id": 1439237, "credit_id": "5503222ac3a3685b9e004558", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Jacob-Ole Remming", "character": "", "id": 1439238, "credit_id": "55032235c3a3685b9b004706", "cast_id": 23, "profile_path": null, "order": 16}], "directors": [{"name": "Anders Thomas Jensen", "department": "Directing", "job": "Director", "credit_id": "52fe42e5c3a36847f802b03b", "profile_path": "/ntixpqEaEs67us2TO96GsRs7CXZ.jpg", "id": 1012}], "vote_average": 7.8, "runtime": 94}, "238603": {"poster_path": "/tWPWo3JgwM7uGX096mWXmWPl8k8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45300000, "overview": "After a construction project begins digging in their neighborhood, best friends Tuck, Munch and Alex inexplicably begin to receive strange, encoded messages on their cell phones. Convinced something bigger is going on, they go to their parents and the authorities. When everyone around them refuses to take the messages seriously, the three embark on a secret adventure to crack the code and follow it to its source. But taking matters into their own hands gets the trio in way over their heads when they discover a mysterious being from another world who desperately needs their help. The epic, suspenseful and exciting journey that follows will change all of their lives forever.", "video": false, "id": 238603, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Earth to Echo", "tagline": "No one will ever believe our story.", "vote_count": 100, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2183034", "adult": false, "backdrop_path": "/2yOn82xoLWGlrTLOtpiASQaa8tQ.jpg", "production_companies": [{"name": "Panay Films", "id": 10426}, {"name": "Walt Disney Studios Motion Pictures", "id": 3036}], "release_date": "2014-07-02", "popularity": 1.51017187596557, "original_title": "Earth to Echo", "budget": 13000000, "cast": [{"name": "Teo Halm", "character": "Alex", "id": 1273197, "credit_id": "52fe4e80c3a36847f8294827", "cast_id": 1, "profile_path": "/r0KL83OlIDgHMQctQHWSxt34oZ2.jpg", "order": 0}, {"name": "Astro", "character": "Tuck", "id": 544123, "credit_id": "52fe4e80c3a36847f829482b", "cast_id": 2, "profile_path": "/w544ooVz3Gcws163vkvLk3d2D3z.jpg", "order": 1}, {"name": "Resse Hartwig", "character": "Munch", "id": 1273198, "credit_id": "52fe4e80c3a36847f829482f", "cast_id": 3, "profile_path": "/kKaaHDqyUamg2uM9LORCJ3mb1Hy.jpg", "order": 2}, {"name": "Ella Wahlestedt", "character": "Emma", "id": 1273199, "credit_id": "52fe4e80c3a36847f8294833", "cast_id": 4, "profile_path": "/mGYzOy2cwVfDpHBhGtqbbmlWu1y.jpg", "order": 3}, {"name": "Jason Gray-Stanford", "character": "Dr. Lawrence Madsen", "id": 6166, "credit_id": "52fe4e80c3a36847f8294837", "cast_id": 5, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 4}, {"name": "Cassius Willis", "character": "Calvin", "id": 1225829, "credit_id": "52fe4e80c3a36847f829483b", "cast_id": 6, "profile_path": "/i8XUhBh7AyBisE7PImnzXTYMzRh.jpg", "order": 5}, {"name": "Drake Kemper", "character": "Mookie", "id": 963227, "credit_id": "52fe4e80c3a36847f829483f", "cast_id": 7, "profile_path": "/ftVNe5kvEKk27yAqqBXU6E2eKC.jpg", "order": 6}, {"name": "Algee Smith", "character": "Marcus Simms", "id": 1377458, "credit_id": "544bbc0f0e0a26747c006f0e", "cast_id": 12, "profile_path": "/Ar0tYhSPg7QqRVFFR1MMMPo2cLm.jpg", "order": 7}, {"name": "Sonya Leslie", "character": "Theresa Simms", "id": 1224154, "credit_id": "544bbc310e0a267486007101", "cast_id": 13, "profile_path": "/2UdaOzLGCWMV8i502Y0ktTUixjX.jpg", "order": 8}, {"name": "Kerry O'Malley", "character": "Janice Douglas", "id": 100567, "credit_id": "544bbc400e0a265f7a0006d8", "cast_id": 14, "profile_path": "/j42ByTSTXyRmcN3WJAUDOkwNJvQ.jpg", "order": 9}, {"name": "Virginia Louise Smith", "character": "Betty Barrett", "id": 1377459, "credit_id": "544bbc51c3a3686ac1000dcc", "cast_id": 15, "profile_path": "/7F85HKo0AJN8iwdVjSBRUzbbo1u.jpg", "order": 10}, {"name": "Peter MacKenzie", "character": "James Hastings", "id": 62597, "credit_id": "544bbc61c3a3680fb800723a", "cast_id": 16, "profile_path": "/mAnOLlLQDEtUvAqEjKPLiQSJ0w5.jpg", "order": 11}, {"name": "Valerie Wildman", "character": "Christine Hastings", "id": 47884, "credit_id": "544bbc72c3a3680fb4007562", "cast_id": 17, "profile_path": "/6VveQx5v1ELVNjnvPWZg0Bgzw29.jpg", "order": 12}, {"name": "Roger Hewlett", "character": "les ouvriers en b\u00e2timent", "id": 129013, "credit_id": "544f1994c3a3680245000f5f", "cast_id": 27, "profile_path": "/fVX5UUZPX8YV52V8ATuI6hAgbde.jpg", "order": 13}, {"name": "Mary Pat Gleason", "character": "Dusty, la dame au bar", "id": 62595, "credit_id": "544f1a1a0e0a26134c000f20", "cast_id": 28, "profile_path": "/crJCES2ttMVhuU2gFxrRg1jDWum.jpg", "order": 14}, {"name": "Marilyn Giacomazzi", "character": "les habitu\u00e9s du bar", "id": 1378610, "credit_id": "544f1a80c3a3680236000f73", "cast_id": 29, "profile_path": "/8ALuHY5HUiE6r6XqgVpWldRmUPC.jpg", "order": 15}, {"name": "Frank Lloyd", "character": "les habitu\u00e9s du bar", "id": 1378613, "credit_id": "544f1da20e0a2601d8000f5e", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Chris Wylde", "character": "un agent de s\u00e9curit\u00e9", "id": 1233909, "credit_id": "544f2276c3a368532b00110c", "cast_id": 31, "profile_path": "/k8GeKsnKyHxaYQRW9N3JOpp3Nvi.jpg", "order": 17}, {"name": "Brooke Dillman", "character": "une serveuse du restaurant", "id": 54718, "credit_id": "544f22bfc3a36802450010c1", "cast_id": 32, "profile_path": "/d75GJILbWQv8c96At9lflDWwGxY.jpg", "order": 18}, {"name": "Myk Watford", "character": "Blake Douglas", "id": 84955, "credit_id": "544f230c0e0a263a180010be", "cast_id": 33, "profile_path": "/7PMUVPtCvt2DJEvH5dhimM6qiZg.jpg", "order": 19}, {"name": "Tiffany Espensen", "character": "Charlie, les amis d'\u00e9cole", "id": 1237601, "credit_id": "544f26ea0e0a263a1800114b", "cast_id": 34, "profile_path": "/nxXUE2I3vsMNy8iha3PCrnO4wTt.jpg", "order": 20}, {"name": "Israel Broussard", "character": "Cameron, le gamin qui pousse Tuck", "id": 969140, "credit_id": "544f27bdc3a368023c001151", "cast_id": 35, "profile_path": "/ztE0nfwxNRYSh4EpDyhs9OrYFAT.jpg", "order": 21}, {"name": "Sara Arrington", "character": "une amie de la m\u00e8re de Munch", "id": 1378628, "credit_id": "544f29290e0a2639fe001300", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Arthur Darbinyan", "character": "le patron du magasin de d\u00e9p\u00f4t sur gages", "id": 188758, "credit_id": "544f29a30e0a2601d80010ea", "cast_id": 37, "profile_path": "/efj5VJqc2tlZ15aesmMXit3oner.jpg", "order": 23}, {"name": "Michael Lee Merrins", "character": "un chauffeur de camion", "id": 1378629, "credit_id": "544f2a1d0e0a263a0a00116c", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Sean Carroll", "character": "le podcast (voix)", "id": 1378631, "credit_id": "544f2a93c3a3680236001179", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Echo", "character": "Echo", "id": 1378632, "credit_id": "544f2b490e0a2639fe001336", "cast_id": 40, "profile_path": "/wNCMtjUBwOy2XlEKBno6vVNybN2.jpg", "order": 26}], "directors": [{"name": "Dave Green", "department": "Directing", "job": "Director", "credit_id": "52fe4e80c3a36847f829484b", "profile_path": null, "id": 1101410}], "vote_average": 5.9, "runtime": 89}, "214030": {"poster_path": "/zknfk3A2CWbqfh2y4QcqaTTtbXA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2681345, "overview": "Fioravante decides to become a professional Don Juan as a way of making money to help his cash-strapped friend, Murray. With Murray acting as his \"manager\", the duo quickly finds themselves caught up in the crosscurrents of love and money.", "video": false, "id": 214030, "genres": [{"id": 35, "name": "Comedy"}], "title": "Fading Gigolo", "tagline": "", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2258345", "adult": false, "backdrop_path": "/jxaYRyTOmPKiDu2NkfrtRX5bW0n.jpg", "production_companies": [], "release_date": "2013-09-07", "popularity": 0.656734337309333, "original_title": "Fading Gigolo", "budget": 0, "cast": [{"name": "John Turturro", "character": "Fioravante", "id": 1241, "credit_id": "52fe4dd1c3a368484e1ff833", "cast_id": 7, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 0}, {"name": "Woody Allen", "character": "Murray", "id": 1243, "credit_id": "52fe4dd1c3a368484e1ff82f", "cast_id": 6, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 1}, {"name": "Vanessa Paradis", "character": "Avigal", "id": 65007, "credit_id": "52fe4dd1c3a368484e1ff837", "cast_id": 8, "profile_path": "/zPwmGEC7nN43bRIb4eovuTWEE18.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Dovi", "id": 23626, "credit_id": "52fe4dd1c3a368484e1ff823", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "Sharon Stone", "character": "Dr. Parker", "id": 4430, "credit_id": "52fe4dd1c3a368484e1ff82b", "cast_id": 5, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 4}, {"name": "Sof\u00eda Vergara", "character": "Selima", "id": 63522, "credit_id": "52fe4dd1c3a368484e1ff827", "cast_id": 4, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 5}, {"name": "Bob Balaban", "character": "Sol", "id": 12438, "credit_id": "52fe4dd1c3a368484e1ff843", "cast_id": 11, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 6}, {"name": "Max Casella", "character": "Guy at Couner", "id": 7133, "credit_id": "52fe4dd1c3a368484e1ff83b", "cast_id": 9, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 7}, {"name": "Aida Turturro", "character": "Driver's Wife", "id": 106791, "credit_id": "52fe4dd1c3a368484e1ff83f", "cast_id": 10, "profile_path": "/efqEyVJwU2o4zmfvlbuxOxlbEXj.jpg", "order": 8}, {"name": "Eugenia Kuzmina", "character": "Lady on Street", "id": 1333845, "credit_id": "53a8e4d1c3a3687a340063ad", "cast_id": 12, "profile_path": "/5TpGe5oRdZ7pt9Rzrjjjt9THL9E.jpg", "order": 9}], "directors": [{"name": "John Turturro", "department": "Directing", "job": "Director", "credit_id": "52fe4dd1c3a368484e1ff819", "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "id": 1241}], "vote_average": 5.9, "runtime": 90}, "16558": {"poster_path": "/r1dmuBJbKudEULr9oI22VcoDLzK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60000000, "overview": "Two romantically engaged corporate spies (Owen and Roberts) team up to manipulate a corporate race to corner the market on a medical innovation that will reap huge profits and enable them to lead an extravagant lifestyle together.", "video": false, "id": 16558, "genres": [{"id": 53, "name": "Thriller"}], "title": "Duplicity", "tagline": "Outwit. Outspy. Outsmart. Outplay. Then get out.", "vote_count": 64, "homepage": "http://www.universalstudiosentertainment.com/duplicity/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1135487", "adult": false, "backdrop_path": "/udn0yGthFoMJnc3WKUb8BzmHKxd.jpg", "production_companies": [{"name": "Medienproduktion Poseidon Filmgesellschaft", "id": 27317}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Laura Bickford Productions", "id": 5163}], "release_date": "2009-03-19", "popularity": 0.409429404732699, "original_title": "Duplicity", "budget": 78146652, "cast": [{"name": "Clive Owen", "character": "Ray Koval", "id": 2296, "credit_id": "52fe46db9251416c75085cc9", "cast_id": 1, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Claire Stenwick", "id": 1204, "credit_id": "52fe46db9251416c75085ccd", "cast_id": 2, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Richard Garsik", "id": 13242, "credit_id": "52fe46db9251416c75085cd1", "cast_id": 3, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Howard Tully", "id": 207, "credit_id": "52fe46db9251416c75085ce1", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Lisa Roberts Gillan", "character": "Tully's Assistant", "id": 15109, "credit_id": "52fe46db9251416c75085cfd", "cast_id": 11, "profile_path": "/buXwQSX1Lo802E9CNlfdf8mHPJ8.jpg", "order": 4}, {"name": "Denis O'Hare", "character": "Duke Monahan", "id": 81681, "credit_id": "52fe46db9251416c75085d01", "cast_id": 12, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 5}, {"name": "Kathleen Chalfant", "character": "Pam Frailes", "id": 52003, "credit_id": "52fe46db9251416c75085d05", "cast_id": 13, "profile_path": "/sxsYCRctVv85Ebzgwm32Mx9UpDd.jpg", "order": 6}, {"name": "Carrie Preston", "character": "Barbara Bofferd", "id": 7465, "credit_id": "52fe46db9251416c75085d09", "cast_id": 14, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 7}, {"name": "Dan Daily", "character": "Garsik's Aide", "id": 1340884, "credit_id": "53c1ae67c3a3684ce900736a", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "David Shumbris", "character": "Turtleneck", "id": 34541, "credit_id": "53c1ae88c3a3684cec006fd7", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Rick Worthy", "character": "Dale Raimes", "id": 61545, "credit_id": "53c1ae9ec3a3684cef007386", "cast_id": 17, "profile_path": "/vaKDRpwvKj24AHNKmZX22v4OLwK.jpg", "order": 10}, {"name": "Oleg Shtefanko", "character": "Boris Fetyov", "id": 235858, "credit_id": "53c1aeb7c3a3684cf4006d3d", "cast_id": 18, "profile_path": "/5xGQdPiw66bpcgV9EDkKxxyyJin.jpg", "order": 11}, {"name": "Khan Baykal", "character": "Dinesh Patel", "id": 164388, "credit_id": "53c1aef1c3a3684cf9006f08", "cast_id": 19, "profile_path": "/kCMsNYuAeFDCNyCbgaYCzmvVCm5.jpg", "order": 12}, {"name": "Thomas McCarthy", "character": "Jeff Bauer", "id": 17867, "credit_id": "53c1af30c3a3684cdb0075d1", "cast_id": 20, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 13}, {"name": "Wayne Duvall", "character": "Ned Guston", "id": 1470, "credit_id": "53c1af4cc3a3684cdf006dc1", "cast_id": 21, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 14}, {"name": "Fabrizio Brienza", "character": "Hotel Manager", "id": 1340885, "credit_id": "53c1af62c3a3684cdb0075d6", "cast_id": 22, "profile_path": null, "order": 15}], "directors": [{"name": "Tony Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe46db9251416c75085cd7", "profile_path": "/9HOtDgcO6F4Fa4BaIjt0t3Vbxrj.jpg", "id": 19242}], "vote_average": 5.6, "runtime": 125}, "17431": {"poster_path": "/xbDTUt1O2Cy4WuM2QGVC9gnrJOf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 9760104, "overview": "With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. The long period of time alone however has resulted in him talking to himself for the most part, or to his plants. Direct communication with Earth is not possible due to a long-standing communication malfunction but he does get an occasional message from his wife Tess. When he has an accident however, he wakens to find that he is not alone. He also comes to realize that his world is not what he thought it was.", "video": false, "id": 17431, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Moon", "tagline": "The last place you'd ever expect to find yourself.", "vote_count": 550, "homepage": "http://www.sonyclassics.com/moon/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1182345", "adult": false, "backdrop_path": "/j8iM6B5HwZ8sojjM6kJbVniMKTh.jpg", "production_companies": [{"name": "Lunar Industries", "id": 3317}, {"name": "Liberty Films UK", "id": 3316}, {"name": "Xingu Films", "id": 3318}, {"name": "Limelight Fund", "id": 12018}], "release_date": "2009-07-17", "popularity": 1.22061566285262, "original_title": "Moon", "budget": 5000000, "cast": [{"name": "Sam Rockwell", "character": "Sam Bell", "id": 6807, "credit_id": "52fe47249251416c7508f285", "cast_id": 1, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Robot Gerty (Voice)", "id": 1979, "credit_id": "52fe47249251416c7508f2bb", "cast_id": 15, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Dominique McElligott", "character": "Tess Bell", "id": 115146, "credit_id": "52fe47249251416c7508f29b", "cast_id": 6, "profile_path": "/v7c8fYjnBOVRnE2X9FnRQBtvK3x.jpg", "order": 2}, {"name": "Rosie Shaw", "character": "Little Eve", "id": 115147, "credit_id": "52fe47249251416c7508f29f", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Adrienne Shaw", "character": "Nanny", "id": 115149, "credit_id": "52fe47249251416c7508f2a3", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Kaya Scodelario", "character": "Eve", "id": 115150, "credit_id": "52fe47249251416c7508f2a7", "cast_id": 9, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 5}, {"name": "Benedict Wong", "character": "Thompson", "id": 30082, "credit_id": "52fe47249251416c7508f2ab", "cast_id": 10, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 6}, {"name": "Matthew Berry", "character": "Overmeyers", "id": 57149, "credit_id": "52fe47249251416c7508f2af", "cast_id": 11, "profile_path": "/y1Lpa8sgwLf8epS4hQUL8TJ1fNQ.jpg", "order": 7}, {"name": "Malcolm Stewart", "character": "Technician", "id": 27110, "credit_id": "52fe47249251416c7508f2b3", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Robin Chalk", "character": "Sam Bell Clone", "id": 115151, "credit_id": "52fe47249251416c7508f2b7", "cast_id": 13, "profile_path": null, "order": 9}], "directors": [{"name": "Duncan Jones", "department": "Directing", "job": "Director", "credit_id": "52fe47249251416c7508f28b", "profile_path": "/ZXaHANdHg58LEQHP6mRcjy72W6.jpg", "id": 81850}], "vote_average": 7.5, "runtime": 97}, "1051": {"poster_path": "/s15eFbrfF6FSx8EG4Eocfn2Z85L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41158757, "overview": "A pair of NYC cops in the Narcotics Bureau stumble onto a drug smuggling job with a French connection.", "video": false, "id": 1051, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The French Connection", "tagline": "", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6Ppe0MdCMwlbl63x8G29ko4qtj9.jpg", "poster_path": "/zheN2WhCSS1M8rkjObQGr0dZdvZ.jpg", "id": 155474, "name": "The French Connection Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0067116", "adult": false, "backdrop_path": "/oQl0ahcEndQGHMRfq97THau9TT1.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "D'Antoni Productions", "id": 646}], "release_date": "1971-10-07", "popularity": 0.941639201270705, "original_title": "The French Connection", "budget": 1800000, "cast": [{"name": "Gene Hackman", "character": "Det. Jimmy \"Popeye\" Doyle", "id": 193, "credit_id": "52fe42e6c3a36847f802b3c3", "cast_id": 21, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Roy Scheider", "character": "Det. Buddy \"Cloudy\" Russo", "id": 6355, "credit_id": "52fe42e6c3a36847f802b39d", "cast_id": 12, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 1}, {"name": "Fernando Rey", "character": "Alain Charnier", "id": 14821, "credit_id": "52fe42e6c3a36847f802b3a1", "cast_id": 13, "profile_path": "/nDKrpncsQUHOmpD34INXLy2P2AN.jpg", "order": 2}, {"name": "Tony Lo Bianco", "character": "Salvatora \"Sal\" Boca", "id": 15183, "credit_id": "52fe42e6c3a36847f802b3a5", "cast_id": 14, "profile_path": "/juGwBRuoP25CN8fvVqTitbLsF3w.jpg", "order": 3}, {"name": "Marcel Bozzuffi", "character": "Pierre Nicoli", "id": 15184, "credit_id": "52fe42e6c3a36847f802b3a9", "cast_id": 15, "profile_path": "/vwlGmFLX4493fp6bFGrP89ejzf8.jpg", "order": 4}, {"name": "Fr\u00e9d\u00e9ric de Pasquale", "character": "Henri Devereaux", "id": 15185, "credit_id": "52fe42e6c3a36847f802b3ad", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Bill Hickman", "character": "Bill Mulderig", "id": 15186, "credit_id": "52fe42e6c3a36847f802b3b1", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Harold Gary", "character": "Joel Weinstock", "id": 15187, "credit_id": "52fe42e6c3a36847f802b3b5", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Arlene Farber", "character": "Angie Boca", "id": 15188, "credit_id": "52fe42e6c3a36847f802b3b9", "cast_id": 19, "profile_path": null, "order": 8}], "directors": [{"name": "William Friedkin", "department": "Directing", "job": "Director", "credit_id": "52fe42e6c3a36847f802b369", "profile_path": "/egUtSz4yBSvTTv7GJMk4MykWswt.jpg", "id": 15175}], "vote_average": 6.6, "runtime": 104}, "156700": {"poster_path": "/4HGYmH5mYcBBTIMHhbOBdT1Antl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Joe Toy, on the verge of adolescence, finds himself increasingly frustrated by his single father, Frank's attempts to manage his life. Declaring his freedom once and for all, he escapes to a clearing in the woods with his best friend, Patrick, and a strange kid named Biaggio. He announces that they are going to build a house there, free from responsibility and parents. Once their makeshift abode is finished, the three young men find themselves masters of their own destiny, alone in the woods.", "video": false, "id": 156700, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Kings of Summer", "tagline": "Why live when you can rule.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2179116", "adult": false, "backdrop_path": "/cN7dCe6ig4ZVbBbGqO5m4oZvink.jpg", "production_companies": [{"name": "Big Beach Films", "id": 12808}], "release_date": "2013-05-31", "popularity": 0.955139951050018, "original_title": "The Kings of Summer", "budget": 0, "cast": [{"name": "Nick Robinson", "character": "Joe Toy", "id": 1108907, "credit_id": "52fe4baa9251416c910e1dd5", "cast_id": 3, "profile_path": "/lpruCzyNpXzSmvCSBwQfOOG30Rx.jpg", "order": 0}, {"name": "Gabriel Basso", "character": "Patrick Keenan", "id": 222122, "credit_id": "52fe4baa9251416c910e1dd9", "cast_id": 4, "profile_path": "/rHD6iBvmAYOtyFaV0wXJMvYZrMU.jpg", "order": 1}, {"name": "Mois\u00e9s Arias", "character": "Biaggio", "id": 57412, "credit_id": "52fe4baa9251416c910e1ddd", "cast_id": 5, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 2}, {"name": "Alison Brie", "character": "Heather Toy", "id": 88029, "credit_id": "52fe4baa9251416c910e1de1", "cast_id": 6, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 3}, {"name": "Nick Offerman", "character": "Frank Toy", "id": 17039, "credit_id": "52fe4baa9251416c910e1de5", "cast_id": 7, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 4}, {"name": "Megan Mullally", "character": "Mrs. Keenan", "id": 52119, "credit_id": "52fe4baa9251416c910e1de9", "cast_id": 8, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 5}, {"name": "Mary Lynn Rajskub", "character": "Captain Davis", "id": 25884, "credit_id": "52fe4baa9251416c910e1ded", "cast_id": 9, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 6}, {"name": "Angela Trimbur", "character": "FacePaint", "id": 183073, "credit_id": "52fe4baa9251416c910e1df1", "cast_id": 10, "profile_path": "/iNIEOoiN96uvm5YirIGK2fi8qs5.jpg", "order": 7}, {"name": "Erin Moriarty", "character": "Kelly", "id": 990393, "credit_id": "52fe4baa9251416c910e1df5", "cast_id": 11, "profile_path": "/v0jDVSB0HugI3mRjkirOgLBawM7.jpg", "order": 8}, {"name": "Lili Reinhart", "character": "Vicki", "id": 1136940, "credit_id": "52fe4baa9251416c910e1df9", "cast_id": 12, "profile_path": "/iVBjHuzyP9YkbwnJHH5A0yVEURt.jpg", "order": 9}, {"name": "Marc Evan Jackson", "character": "Mr. Keenan", "id": 141956, "credit_id": "52fe4baa9251416c910e1dfd", "cast_id": 13, "profile_path": "/739YCwcRkcTnbyCHD0Qo526bTrG.jpg", "order": 10}, {"name": "Kumail Nanjiani", "character": "Delivery Guy", "id": 466505, "credit_id": "52fe4baa9251416c910e1e01", "cast_id": 14, "profile_path": "/x4nAztHY72SVciRfxEsbhIVTsIu.jpg", "order": 11}, {"name": "Hannibal Buress", "character": "Bus Driver", "id": 500427, "credit_id": "52fe4baa9251416c910e1e05", "cast_id": 15, "profile_path": "/diJUQc3FWB0ol1MCBZQJsMZpMoK.jpg", "order": 12}, {"name": "Nathan Keyes", "character": "Paul", "id": 134397, "credit_id": "52fe4baa9251416c910e1e09", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Austin Abrams", "character": "Aaron", "id": 148992, "credit_id": "52fe4baa9251416c910e1e0d", "cast_id": 17, "profile_path": "/8JrNQOokSRBzoQMzyVcoEh6IzQ9.jpg", "order": 14}, {"name": "Thomas Middleditch", "character": "Rookie Cop", "id": 111678, "credit_id": "54a1d2b69251411d53007ead", "cast_id": 25, "profile_path": "/eejkzd9gtYm7pMFiVdjsGBYde5H.jpg", "order": 15}], "directors": [{"name": "Jordan Vogt-Roberts", "department": "Directing", "job": "Director", "credit_id": "52fe4baa9251416c910e1dcb", "profile_path": null, "id": 236539}], "vote_average": 7.2, "runtime": 93}, "156711": {"poster_path": "/oyJBZ5DoOx5MVXUEe3YHJcs2FmQ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Obsessed with the BBC production of \"Pride and Prejudice\", a woman travels to a Jane Austen theme park in search for her perfect gentleman.", "video": false, "id": 156711, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Austenland", "tagline": "I love Mr. Darcy", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1985019", "adult": false, "backdrop_path": "/wNmu6FtkNOidVvwtMu6ytE9teFp.jpg", "production_companies": [{"name": "Fickle Fish Films", "id": 19374}, {"name": "Moxie Pictures", "id": 19375}], "release_date": "2013-08-16", "popularity": 0.283833571407405, "original_title": "Austenland", "budget": 4900000, "cast": [{"name": "Keri Russell", "character": "Jane Hayes", "id": 41292, "credit_id": "52fe4bab9251416c910e1f67", "cast_id": 3, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 0}, {"name": "J. J. Feild", "character": "Mr. Henry Nobley", "id": 30710, "credit_id": "52fe4bab9251416c910e1f6b", "cast_id": 4, "profile_path": "/pdDaMSsDqcyy2grU38pJC0s6XCs.jpg", "order": 1}, {"name": "Bret McKenzie", "character": "Martin", "id": 105584, "credit_id": "52fe4bab9251416c910e1f6f", "cast_id": 5, "profile_path": "/tEP4b5bTpSxJUHOYItg5xrZh43F.jpg", "order": 2}, {"name": "Jennifer Coolidge", "character": "Miss Elizabeth Charming", "id": 38334, "credit_id": "52fe4bab9251416c910e1f73", "cast_id": 6, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 3}, {"name": "James Callis", "character": "Colonel Andrews", "id": 9145, "credit_id": "52fe4bab9251416c910e1f7b", "cast_id": 8, "profile_path": "/eKYhq4PGfqE7F2xOjNyeyXHNhRU.jpg", "order": 4}, {"name": "Georgia King", "character": "Lady Amelia Heartwright", "id": 73462, "credit_id": "52fe4bab9251416c910e1f77", "cast_id": 7, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 5}, {"name": "Rupert Vansittart", "character": "Mr. Wattlesbrook", "id": 2479, "credit_id": "53dfaf86c3a3686c5d0028f3", "cast_id": 12, "profile_path": "/Adw0Z2bT8qU5H6S0swuUWrBKDDs.jpg", "order": 6}, {"name": "Ricky Whittle", "character": "Captain East", "id": 195675, "credit_id": "52fe4bab9251416c910e1f83", "cast_id": 10, "profile_path": "/nMOgDIfoLR8NMj41jtHadhFxxnN.jpg", "order": 7}, {"name": "Jane Seymour", "character": "Mrs. Wattlesbrook", "id": 10223, "credit_id": "52fe4bab9251416c910e1f7f", "cast_id": 9, "profile_path": "/tBWYbLSieHshqVhy1EXlv12mBjs.jpg", "order": 8}, {"name": "Ayda Field", "character": "Molly", "id": 1226263, "credit_id": "53dfaff5c3a3686c5a002709", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Ruben Crow", "character": "Chad", "id": 1349719, "credit_id": "53dfafffc3a3686c5d00290f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Demetri Goritsas", "character": "Jimmy", "id": 20471, "credit_id": "53dfb01dc3a3683b570005b7", "cast_id": 15, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 11}, {"name": "Parker Sawyers", "character": "Alexander", "id": 1349720, "credit_id": "53dfb02ec3a3683b570005ba", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Sarah Niles", "character": "Delilah", "id": 1349721, "credit_id": "53dfb03fc3a3686c5a00270f", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Annie Gould", "character": "Patience", "id": 1349722, "credit_id": "53dfb089c3a3683fc00005cc", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Tracy Higgins", "character": "Prudence", "id": 1349723, "credit_id": "53dfb09ac3a3686c60002668", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Goldy Greaves", "character": "Constance", "id": 1349724, "credit_id": "53dfb0a8c3a3686c60002671", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Bernadette Chapman", "character": "Portence", "id": 1262554, "credit_id": "53dfb0eec3a3683b570005ca", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Julie Newman", "character": "Temperance", "id": 1349725, "credit_id": "53dfb100c3a3686c4d0028f1", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Alison Carpenter", "character": "Plain Maid", "id": 1349726, "credit_id": "53dfb10ec3a3686c4d0028f6", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Brenda Storer", "character": "Plain Maid", "id": 1349727, "credit_id": "53dfb11ac3a3686c6000267c", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Caroline Bond", "character": "Plain Maid", "id": 1349728, "credit_id": "53dfb12dc3a3686c56002829", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Hema Bedre", "character": "Plain Maid", "id": 1349729, "credit_id": "53dfb143c3a3686c5d002926", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Joanna Abbot", "character": "Plain Maid", "id": 1349730, "credit_id": "53dfb14dc3a3686c56002830", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Sandra Morgan", "character": "Plain Maid", "id": 1349731, "credit_id": "53dfb156c3a3686c4d002900", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Suzanne Downes", "character": "Plain Maid", "id": 1349732, "credit_id": "53dfb15fc3a3686c60002682", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Richard Reid", "character": "Nigel", "id": 984422, "credit_id": "53dfb19fc3a3686c56002837", "cast_id": 30, "profile_path": "/3n8vYYFchIgqwrGbeMTJNGFxs2V.jpg", "order": 26}, {"name": "Austin Wilks", "character": "Harry", "id": 1349733, "credit_id": "53dfb1b2c3a3683b570005e4", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Alan Calton", "character": "Barnaby", "id": 1203293, "credit_id": "53dfb1dac3a3686c5a002721", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Tom Whitecross", "character": "Angus", "id": 1349734, "credit_id": "53dfb1ebc3a3686c6000268c", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Jadran Malkovich", "character": "Rupert", "id": 1349735, "credit_id": "53dfb209c3a3686c60002691", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Gideon Jensen", "character": "Roger", "id": 1349736, "credit_id": "53dfb217c3a3683b570005eb", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Andrew Samuels", "character": "Hot Servant", "id": 1349737, "credit_id": "53dfb238c3a3686c5600283c", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Dino Georgiades", "character": "Hot Servant", "id": 1349738, "credit_id": "53dfb243c3a3686c51002841", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Erica Elmer", "character": "Hot Servant", "id": 1349739, "credit_id": "53dfb24dc3a3686c56002843", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Fabian Bourgoin Heskia", "character": "Hot Servant", "id": 1349740, "credit_id": "53dfb26ac3a3686c5d00293d", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Gunalp Kocak", "character": "Hot Servant", "id": 1349741, "credit_id": "53dfb274c3a3683b570005f3", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Lee Craven", "character": "Hot Servant", "id": 1349742, "credit_id": "53dfb27cc3a3686c5d002943", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Mazlum Kortas", "character": "Hot Servant", "id": 1349743, "credit_id": "53dfb287c3a3683b570005fb", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Ryan Bohan", "character": "Hot Servant", "id": 1349744, "credit_id": "53dfb294c3a3686c51002848", "cast_id": 43, "profile_path": null, "order": 39}, {"name": "Samantha-Jane Hunt", "character": "Hot Servant", "id": 1349745, "credit_id": "53dfb29ec3a3686c4d00291d", "cast_id": 44, "profile_path": null, "order": 40}, {"name": "Yiannis Morgan", "character": "Hot Servant", "id": 1349746, "credit_id": "53dfb2a7c3a3683fc00005e9", "cast_id": 45, "profile_path": null, "order": 41}, {"name": "Jonathan Whittaker", "character": "Sideburn Guy", "id": 1349747, "credit_id": "53dfb2ddc3a3683fc00005ef", "cast_id": 46, "profile_path": null, "order": 42}], "directors": [{"name": "Jerusha Hess", "department": "Directing", "job": "Director", "credit_id": "52fe4bab9251416c910e1f5d", "profile_path": "/yS21FRsuK12aIZkOSqnDM2ko0SJ.jpg", "id": 57408}], "vote_average": 6.3, "runtime": 97}, "15196": {"poster_path": "/2usIK9vTJtC3xJGnxB6aafcjQ8x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14643997, "overview": "Clue finds six colorful dinner guests gathered at the mansion of their host, Mr. Boddy -- who turns up dead after his secret is exposed: He was blackmailing all of them. With the killer among them, the guests and Boddy's chatty butler must suss out the culprit before the body count rises.", "video": false, "id": 15196, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Clue", "tagline": "Seven Suspects, Six Weapons, Five Bodies and Three Endings.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088930", "adult": false, "backdrop_path": "/q1zYM7YsEIUeA6Yjxcb1zC3fM2.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1985-12-13", "popularity": 0.562879557530786, "original_title": "Clue", "budget": 15000000, "cast": [{"name": "Eileen Brennan", "character": "Mrs. Peacock", "id": 39015, "credit_id": "52fe46429251416c7507292d", "cast_id": 3, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 0}, {"name": "Tim Curry", "character": "Wadsworth", "id": 13472, "credit_id": "52fe46429251416c75072931", "cast_id": 4, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 1}, {"name": "Madeline Kahn", "character": "Mrs. White", "id": 29803, "credit_id": "52fe46429251416c75072935", "cast_id": 5, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 2}, {"name": "Christopher Lloyd", "character": "Professor Plum", "id": 1062, "credit_id": "52fe46429251416c75072929", "cast_id": 2, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 3}, {"name": "Michael McKean", "character": "Mr. Green", "id": 21731, "credit_id": "52fe46429251416c7507293d", "cast_id": 7, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 4}, {"name": "Martin Mull", "character": "Colonel Mustard", "id": 80742, "credit_id": "52fe46429251416c75072939", "cast_id": 6, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 5}, {"name": "Lesley Ann Warren", "character": "Miss Scarlet", "id": 21818, "credit_id": "52fe46429251416c75072925", "cast_id": 1, "profile_path": "/4I5VPyumsxYGKST9b0FL2harYRK.jpg", "order": 6}, {"name": "Colleen Camp", "character": "Yvette", "id": 13023, "credit_id": "52fe46429251416c75072941", "cast_id": 8, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 7}, {"name": "Lee Ving", "character": "Mr. Boddy", "id": 80745, "credit_id": "52fe46429251416c75072945", "cast_id": 9, "profile_path": "/tG4MKdOp1viff4rrCbH8WQEhIE3.jpg", "order": 8}, {"name": "Bill Henderson", "character": "The Cop", "id": 80746, "credit_id": "52fe46429251416c75072949", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Jane Wiedlin", "character": "The Singing Telegram Girl", "id": 35157, "credit_id": "52fe46429251416c7507294d", "cast_id": 11, "profile_path": "/jg6Auu4JhYDy9b0rAvW5HHlGo8L.jpg", "order": 10}, {"name": "Jeffrey Kramer", "character": "The Motorist", "id": 8609, "credit_id": "52fe46429251416c7507296f", "cast_id": 17, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 11}, {"name": "Kellye Nakahara", "character": "The Cook", "id": 158804, "credit_id": "52fe46439251416c75072973", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Will Nye", "character": "Cop #1", "id": 1216921, "credit_id": "52fe46439251416c750729b9", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Rick Goldman", "character": "Cop #2", "id": 1177744, "credit_id": "52fe46439251416c75072977", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Don Camp", "character": "Cop #3", "id": 551931, "credit_id": "52fe46439251416c7507297b", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Howard Hesseman", "character": "The Chief (uncredited)", "id": 35516, "credit_id": "52fe46439251416c7507297f", "cast_id": 22, "profile_path": "/q0glWtVUVnPoB3AoAMe8SqMRJ5e.jpg", "order": 16}], "directors": [{"name": "Jonathan Lynn", "department": "Directing", "job": "Director", "credit_id": "52fe46429251416c75072953", "profile_path": "/nvMGnGbGdXrRvGAjulNqhJWUB9c.jpg", "id": 21217}], "vote_average": 7.0, "runtime": 94}, "5491": {"poster_path": "/iKXAoormYwNDdnKUJpxHTBdvw05.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21400000, "overview": "In the year 3000, man is no match for the Psychlo's, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlo's are stripping Earth clean of its natural resources, using the broken remnants of humanity as slaves. What is left of the human race has descended into a near primitive state. After being captured, it is up to Tyler to save mankind.", "video": false, "id": 5491, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 10752, "name": "War"}], "title": "Battlefield Earth", "tagline": "Take Back The Planet", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0185183", "adult": false, "backdrop_path": "/vaLKZRGpTjzDFJuByJ6MCQe5e8T.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Morgan Creek Productions", "id": 10210}, {"name": "Franchise Pictures", "id": 1403}, {"name": "JTP Films", "id": 7406}, {"name": "Battlefield Productions", "id": 19718}], "release_date": "2000-05-10", "popularity": 0.493964585440995, "original_title": "Battlefield Earth", "budget": 44000000, "cast": [{"name": "John Travolta", "character": "Terl", "id": 8891, "credit_id": "52fe4409c3a36847f807e75d", "cast_id": 11, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Barry Pepper", "character": "Jonnie Goodboy Tyler", "id": 12834, "credit_id": "52fe4409c3a36847f807e761", "cast_id": 12, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Ker", "id": 2178, "credit_id": "52fe4409c3a36847f807e765", "cast_id": 13, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Kim Coates", "character": "Carlo", "id": 8335, "credit_id": "52fe4409c3a36847f807e769", "cast_id": 14, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 3}, {"name": "Sabine Karsenti", "character": "Chrissy", "id": 43611, "credit_id": "52fe4409c3a36847f807e76d", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Christian Tessier", "character": "Mickey", "id": 43612, "credit_id": "52fe4409c3a36847f807e771", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Sylvain Landry", "character": "Sammy", "id": 43613, "credit_id": "52fe4409c3a36847f807e775", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Michael Byrne", "character": "Parson Staffer", "id": 742, "credit_id": "52fe4409c3a36847f807e779", "cast_id": 18, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 7}, {"name": "Richard Tyson", "character": "Robert the Fox", "id": 14700, "credit_id": "52fe4409c3a36847f807e77d", "cast_id": 19, "profile_path": "/pwgw79SpPJmn3406s72supF0EdS.jpg", "order": 8}, {"name": "Christopher Freeman", "character": "Processing Clerk", "id": 1288583, "credit_id": "52fe4409c3a36847f807e781", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Shaun Austin-Olsen", "character": "Planetship", "id": 181010, "credit_id": "52fe4409c3a36847f807e785", "cast_id": 21, "profile_path": "/aunxQUbkpZjiEmSAncNtvInID33.jpg", "order": 10}, {"name": "Tim Post", "character": "Assistant Planetship / Psychlo Guard", "id": 7009, "credit_id": "52fe4409c3a36847f807e789", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Earl Pastko", "character": "Bartender", "id": 26093, "credit_id": "52fe4409c3a36847f807e78d", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Michel Perron", "character": "Rock", "id": 7014, "credit_id": "52fe4409c3a36847f807e791", "cast_id": 24, "profile_path": "/qHx0U6EattCgT6m46f9RXwRlTya.jpg", "order": 13}], "directors": [{"name": "Roger Christian", "department": "Directing", "job": "Director", "credit_id": "52fe4409c3a36847f807e723", "profile_path": null, "id": 5058}], "vote_average": 3.1, "runtime": 118}, "238636": {"poster_path": "/l1DRl40x2OWUoPP42v8fjKdS1Z3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108782847, "overview": "Sequel to The Purge. The New Founders of America invite you to celebrate your annual right to Purge. The Purge: Anarchy, the sequel to summer 2013's sleeper hit that opened to No. 1 at the box-office, sees the return of writer/director James DeMonaco to craft the next terrifying chapter of dutiful citizens preparing for their country's yearly 12 hours of anarchy.", "video": false, "id": 238636, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Purge: Anarchy", "tagline": "Welcome to America, where one night a year, all crime Is legal.", "vote_count": 439, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/e6THO6zwWxuI8QRQxDI2OcLW7BI.jpg", "id": 256322, "name": "The Purge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2975578", "adult": false, "backdrop_path": "/2ROsQqKfy7f1uqsF8bTC7Vg0ui2.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Universal Pictures", "id": 33}], "release_date": "2014-07-17", "popularity": 2.98868621992979, "original_title": "The Purge: Anarchy", "budget": 9000000, "cast": [{"name": "Frank Grillo", "character": "Leo", "id": 81685, "credit_id": "52fe4e81c3a36847f8294b17", "cast_id": 3, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 0}, {"name": "Carmen Ejogo", "character": "Eva Sanchez", "id": 37158, "credit_id": "52fe4e81c3a36847f8294b1f", "cast_id": 5, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 1}, {"name": "Zach Gilford", "character": "Shane", "id": 70303, "credit_id": "52fe4e81c3a36847f8294b23", "cast_id": 6, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 2}, {"name": "Kiele Sanchez", "character": "Liz", "id": 31168, "credit_id": "52fe4e81c3a36847f8294b27", "cast_id": 7, "profile_path": "/i0YEpWuk1zSvadwwa1r0rahDONt.jpg", "order": 3}, {"name": "Zo\u00eb Borde", "character": "Cali", "id": 1208406, "credit_id": "53ec5dd00e0a2605e3000e40", "cast_id": 17, "profile_path": "/m40sSN2l2tQtpKbhRbjm7sksNV9.jpg", "order": 4}, {"name": "Justina Machado", "character": "Tanya", "id": 95517, "credit_id": "53ec5e2e0e0a2605dd000e63", "cast_id": 18, "profile_path": "/rklLmYPB4fKFP3mKZw2C3oWNaQJ.jpg", "order": 5}, {"name": "John Beasley", "character": "Papa Rico", "id": 38571, "credit_id": "53ec5e430e0a2605e6000e7c", "cast_id": 19, "profile_path": "/mboK7DsL33Ulmoj6LwJIfJKV5tu.jpg", "order": 6}, {"name": "Jack Conley", "character": "Big Daddy", "id": 21675, "credit_id": "53ec5e570e0a2605e9000efe", "cast_id": 20, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 7}, {"name": "Noel Gugliemi", "character": "Diego", "id": 53252, "credit_id": "53ec5e6e0e0a2605e9000f02", "cast_id": 21, "profile_path": "/mI5urNyZJAzIGxelTjBkm624DkB.jpg", "order": 8}, {"name": "Castulo Guerra", "character": "Barney", "id": 3979, "credit_id": "53ec5ea00e0a2605e6000e84", "cast_id": 22, "profile_path": "/njap7gZlVKHMKFb0aMQB17kMUNh.jpg", "order": 9}, {"name": "Michael Kenneth Williams", "character": "Carmelo Johns", "id": 39390, "credit_id": "52fe4e81c3a36847f8294b1b", "cast_id": 4, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 10}, {"name": "Edwin Hodge", "character": "The Stranger", "id": 56679, "credit_id": "53ec5ed40e0a2605f1000eb4", "cast_id": 23, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 11}, {"name": "Keith Stanfield", "character": "Young Goul Face", "id": 1200864, "credit_id": "52fe4e81c3a36847f8294b2b", "cast_id": 8, "profile_path": "/iqn7EWoEjqdzcaOJQ1DOYt8mpiy.jpg", "order": 12}, {"name": "Roberta Valderrama", "character": "Lorraine", "id": 1237292, "credit_id": "53ac25ba0e0a267616001f71", "cast_id": 15, "profile_path": "/hicGQAkiqwmdI4hk2qOFAeqagGP.jpg", "order": 13}, {"name": "Nicholas Gonzalez", "character": "Carlos", "id": 61852, "credit_id": "53307df09251413a7e005b88", "cast_id": 9, "profile_path": "/vtlRkYUROLCkXCKrU56jYBXS1q5.jpg", "order": 14}, {"name": "Amy Paffrath", "character": "TV Newscaster #2", "id": 87437, "credit_id": "53307dfb9251413a6f005ebb", "cast_id": 10, "profile_path": "/69BSfarW9L1FfFcfX1sfrcFhFZt.jpg", "order": 15}, {"name": "Niko Nicotera", "character": "Roddy", "id": 1008750, "credit_id": "53307e029251413a7e005b8a", "cast_id": 11, "profile_path": "/v7lBlIhKFlG2JzhzT8lHLtnGl1i.jpg", "order": 16}, {"name": "Cortney Palm", "character": "Wealthy Guest", "id": 1116282, "credit_id": "53307e0f9251413a81005e64", "cast_id": 12, "profile_path": "/mIvZlUREjyCCxmKRd5onC1vxQ4f.jpg", "order": 17}, {"name": "Judith McConnell", "character": "Old Elegant Woman", "id": 51610, "credit_id": "53ac25a20e0a26760f001f19", "cast_id": 14, "profile_path": null, "order": 18}, {"name": "Chad Morgan", "character": "Janice", "id": 1224490, "credit_id": "53ac25d70e0a26761c001f18", "cast_id": 16, "profile_path": "/iEaBmrm8Z3HrPdEHqSsxvgbTvZ2.jpg", "order": 19}, {"name": "Bel Hernandez", "character": "Katherine", "id": 1352947, "credit_id": "53ec601e0e0a2605e9000f35", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Lily Knight", "character": "Mrs. Crawley", "id": 12539, "credit_id": "53ec602f0e0a2605f1000eda", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Jasper Cole", "character": "Homeless Man", "id": 945542, "credit_id": "53ec60430e0a2605f1000edf", "cast_id": 26, "profile_path": "/zsHc9mShZQsSG8XItQ6wiRAnWBi.jpg", "order": 22}, {"name": "Brandon Keener", "character": "Warren Grass", "id": 149829, "credit_id": "53ec60550e0a2605e0000ed5", "cast_id": 27, "profile_path": "/1FeIVSTtrUjMRC0aFpKU6Q4y7M9.jpg", "order": 23}, {"name": "Amy Price-Francis", "character": "Mrs. Grass", "id": 78861, "credit_id": "53ec60640e0a2605dd000e9c", "cast_id": 28, "profile_path": "/herJTbFWZzcbJ6z7Jgfe74PNCKi.jpg", "order": 24}, {"name": "Matt Lasky", "character": "Oscar", "id": 101088, "credit_id": "53ec60b40e0a2605da000f69", "cast_id": 31, "profile_path": "/yFJpwI2zeZiyHdzrdVaZueIe0Hc.jpg", "order": 27}, {"name": "Nicholas Gonzalez", "character": "Carlos", "id": 61852, "credit_id": "53ec60c60e0a2605e9000f4b", "cast_id": 32, "profile_path": "/vtlRkYUROLCkXCKrU56jYBXS1q5.jpg", "order": 28}, {"name": "Adrian Sparks", "character": "Suited Gent", "id": 155933, "credit_id": "53ec611e0e0a2605e9000f58", "cast_id": 33, "profile_path": null, "order": 29}], "directors": [{"name": "James DeMonaco", "department": "Directing", "job": "Director", "credit_id": "52fe4e81c3a36847f8294b13", "profile_path": null, "id": 53120}], "vote_average": 6.7, "runtime": 104}, "156717": {"poster_path": "/i8o8crwVAbQihTI835xrQA5nSuD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Carl Lucas / Frankenstein has won four of his races and needs to win one more to win his freedom. Before his final race, Lucas and his team, car and all, are transferred to another prison where they will compete in a Death Race in the desert. Also, at the same time, Ceaser runs into a marketer who wants to franchise the Death Race program.", "video": false, "id": 156717, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Death Race: Inferno", "tagline": "Welcome to the Inferno", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cGaVuq8ZjX1UPD9wPRlzx6lP9kK.jpg", "poster_path": "/uffHLg0ekFlErCp7OkpecXkWPng.jpg", "id": 86116, "name": "Death Race Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1988591", "adult": false, "backdrop_path": "/4voE3EHd2f98q6A9MeT8B7JuiB3.jpg", "production_companies": [{"name": "Moonlighting Films", "id": 9137}, {"name": "CC Capital Arts Entertainment SRL", "id": 17008}], "release_date": "2012-11-20", "popularity": 0.883285398171255, "original_title": "Death Race: Inferno", "budget": 6500000, "cast": [{"name": "Luke Goss", "character": "Carl 'Luke' Lucas / Frankenstein", "id": 10843, "credit_id": "52fe4bab9251416c910e200d", "cast_id": 3, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 0}, {"name": "Ving Rhames", "character": "Weyland", "id": 10182, "credit_id": "52fe4bab9251416c910e2009", "cast_id": 2, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 1}, {"name": "Danny Trejo", "character": "Goldberg", "id": 11160, "credit_id": "52fe4bab9251416c910e2005", "cast_id": 1, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 2}, {"name": "Tanit Phoenix", "character": "Katrina Banks", "id": 37769, "credit_id": "52fe4bab9251416c910e2017", "cast_id": 5, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 3}, {"name": "Dougray Scott", "character": "Niles York", "id": 15336, "credit_id": "52fe4bab9251416c910e201b", "cast_id": 6, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 4}, {"name": "Robin Shou", "character": "14K", "id": 57250, "credit_id": "52fe4bab9251416c910e201f", "cast_id": 7, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 5}, {"name": "Langley Kirkwood", "character": "Dr. Klein", "id": 37093, "credit_id": "52fe4bab9251416c910e2023", "cast_id": 8, "profile_path": "/tjX3GUBhLujP4s3KCM763V7bQge.jpg", "order": 6}, {"name": "Fred Koehler", "character": "Lists", "id": 76513, "credit_id": "52fe4bab9251416c910e2027", "cast_id": 9, "profile_path": "/f52RmqmKKbHS9JFb2sJ28dnyaUr.jpg", "order": 7}, {"name": "Tanya van Graan", "character": "Amber", "id": 1139816, "credit_id": "52fe4bab9251416c910e202b", "cast_id": 10, "profile_path": "/zirNh4FdTo4U3EpdKCjSZZLbw8v.jpg", "order": 8}, {"name": "Sean Cameron Michael", "character": "New Doctor", "id": 86320, "credit_id": "52fe4bab9251416c910e202f", "cast_id": 11, "profile_path": "/kd3QFLVrFYshek9p17QPTVnG1vb.jpg", "order": 9}, {"name": " Hlubi Mboya", "character": "Diabolos", "id": 1287647, "credit_id": "52fe4bab9251416c910e2039", "cast_id": 18, "profile_path": "/vDkfovbyAbljLhbKHPb80ykxJiw.jpg", "order": 10}, {"name": "Charlbi Dean Kriek", "character": "Calimity J", "id": 1187068, "credit_id": "54cc123d9251413e7800031a", "cast_id": 53, "profile_path": "/7Hkjpfq6Tdl7J3i6FaEnQq0zHds.jpg", "order": 11}, {"name": "Mark Elderkin", "character": "Sgt. Fury", "id": 939422, "credit_id": "54cc12609251413e750002b5", "cast_id": 54, "profile_path": "/in42emR0FgAEkA7EwtsedK8gxMg.jpg", "order": 12}, {"name": "Eugene Khumbanyiwa", "character": "Nero", "id": 1198931, "credit_id": "54cc1278c3a3687f92000003", "cast_id": 55, "profile_path": null, "order": 13}, {"name": "Jeremy Crutchley", "character": "Psycho", "id": 20304, "credit_id": "54cc12a5925141474b000002", "cast_id": 56, "profile_path": "/17aHojCYOmUyoyuPgLd4di0fdvm.jpg", "order": 14}, {"name": "Yrsa Daley-Ward", "character": "Salinas", "id": 1390163, "credit_id": "54cc12ddc3a3687f80000009", "cast_id": 57, "profile_path": null, "order": 15}], "directors": [{"name": "Roel Rein\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4bab9251416c910e2013", "profile_path": "/f4KlQ4lfZZwbuz6Wu5N6Gfbur6p.jpg", "id": 97555}], "vote_average": 5.6, "runtime": 105}, "82990": {"poster_path": "/fBUlONud4kLwDlkg5uZfi9NVEAX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It has been five years since the disappearance of Katie and Hunter, and a suburban family witness strange events in their neighborhood when a woman and a mysterious child move in.", "video": false, "id": 82990, "genres": [{"id": 27, "name": "Horror"}], "title": "Paranormal Activity 4", "tagline": "It's closer than you think", "vote_count": 161, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2109184", "adult": false, "backdrop_path": "/qDaIOqnC5pQyknm7SLnxlffklVy.jpg", "production_companies": [{"name": "Room 101", "id": 6302}, {"name": "Paramount Pictures", "id": 4}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}], "release_date": "2012-10-19", "popularity": 0.299606122363337, "original_title": "Paranormal Activity 4", "budget": 5000000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe48829251416c9108ef87", "cast_id": 7, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "Kathryn Newton", "character": "Alex", "id": 221192, "credit_id": "52fe48829251416c9108ef8b", "cast_id": 9, "profile_path": "/3GeXNWqXLrf7yut63ce3fU3oGmR.jpg", "order": 1}, {"name": "Matt Shively", "character": "Ben", "id": 455033, "credit_id": "52fe48829251416c9108ef8f", "cast_id": 10, "profile_path": "/azJfLNNBVcXYaBr80o8KLKHB5DF.jpg", "order": 2}, {"name": "Brady Allen", "character": "Robbie", "id": 1033547, "credit_id": "52fe48829251416c9108ef93", "cast_id": 11, "profile_path": null, "order": 3}, {"name": "Sprague Grayden", "character": "Kristi", "id": 118243, "credit_id": "52fe48829251416c9108ef97", "cast_id": 12, "profile_path": "/xgFJngEapZILERHqwkxu07LNZwN.jpg", "order": 4}, {"name": "Stephen Dunham", "character": "Doug", "id": 36803, "credit_id": "52fe48829251416c9108ef9b", "cast_id": 13, "profile_path": "/6xzvLVJLXKgT7oaGoB448WNml9G.jpg", "order": 5}, {"name": "Alexondra Lee", "character": "Holly", "id": 42377, "credit_id": "52fe48829251416c9108ef9f", "cast_id": 14, "profile_path": "/6GdI7gTt8p3wFVK29nwP64Gbaqw.jpg", "order": 6}, {"name": "Aiden Lovekamp", "character": "Wyatt", "id": 984724, "credit_id": "52fe48829251416c9108efa3", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Brian Boland", "character": "Daniel", "id": 87220, "credit_id": "52fe48829251416c9108efa7", "cast_id": 16, "profile_path": "/lZreGWhm68vzL6yCw5hz2WdlFCX.jpg", "order": 8}, {"name": "William Juan Prieto", "character": "Hunter", "id": 141382, "credit_id": "52fe48829251416c9108efab", "cast_id": 17, "profile_path": null, "order": 9}], "directors": [{"name": "Henry Joost", "department": "Directing", "job": "Director", "credit_id": "52fe48829251416c9108ef6b", "profile_path": "/wP5btUyPGGinHoa3GJmudZB8Pwt.jpg", "id": 142272}, {"name": "Ariel Schulman", "department": "Directing", "job": "Director", "credit_id": "52fe48829251416c9108ef71", "profile_path": "/jWQRMBFA4AajaA0DJ3CrLzZ2Vby.jpg", "id": 142276}], "vote_average": 5.4, "runtime": 95}, "82992": {"poster_path": "/kBXgGUt07sLpw6rhpiYwEyOwUDa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 788679850, "overview": "Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend, Letty.", "video": false, "id": 82992, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Fast & Furious 6", "tagline": "All roads lead to this", "vote_count": 3612, "homepage": "http://www.thefastandthefurious.com/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1905041", "adult": false, "backdrop_path": "/qjfE7SkPXpqFs8FX8rIaG6eO2aK.jpg", "production_companies": [{"name": "F & F VI Productions A.I.E", "id": 48499}, {"name": "Universal Pictures", "id": 33}, {"name": "Original Film", "id": 333}, {"name": "One Race Productions", "id": 1225}, {"name": "Dentsu", "id": 6452}, {"name": "Relativity Media", "id": 7295}, {"name": "Etalon film", "id": 9341}], "release_date": "2013-05-24", "popularity": 1.25571877204592, "original_title": "Fast & Furious 6", "budget": 160000000, "cast": [{"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe48829251416c9108f007", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe48829251416c9108f00b", "cast_id": 4, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Dwayne Johnson", "character": "Luke Hobbs", "id": 18918, "credit_id": "52fe48829251416c9108f00f", "cast_id": 5, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia", "id": 22123, "credit_id": "52fe48829251416c9108f013", "cast_id": 6, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "Luke Evans", "character": "Owen Shaw", "id": 114019, "credit_id": "52fe48829251416c9108f017", "cast_id": 8, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 4}, {"name": "Michelle Rodriguez", "character": "Letty", "id": 17647, "credit_id": "52fe48829251416c9108f01b", "cast_id": 9, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 5}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "52fe48829251416c9108f01f", "cast_id": 10, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 6}, {"name": "Gal Gadot", "character": "Gisele Harabo", "id": 90633, "credit_id": "52fe48829251416c9108f023", "cast_id": 13, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 7}, {"name": "Sung Kang", "character": "Han Lue", "id": 61697, "credit_id": "52fe48829251416c9108f027", "cast_id": 14, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 8}, {"name": "Ludacris", "character": "Tej Parker", "id": 8171, "credit_id": "52fe48839251416c9108f02b", "cast_id": 15, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 9}, {"name": "Kim Kold", "character": "Klaus", "id": 936415, "credit_id": "52fe48839251416c9108f02f", "cast_id": 16, "profile_path": "/pvbowINXuR5FSXxemujx2kWrx87.jpg", "order": 10}, {"name": "Thure Lindhardt", "character": "Firuz", "id": 20258, "credit_id": "52fe48839251416c9108f033", "cast_id": 17, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 11}, {"name": "Elsa Pataky", "character": "Elena", "id": 73269, "credit_id": "52fe48839251416c9108f037", "cast_id": 18, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 12}, {"name": "Johannes Taslim", "character": "Jah", "id": 592496, "credit_id": "52fe48839251416c9108f03b", "cast_id": 20, "profile_path": "/jTKPQryiRDTdlRot43FIDzARgi5.jpg", "order": 13}, {"name": "Shea Whigham", "character": "Stasiak", "id": 74242, "credit_id": "52fe48839251416c9108f03f", "cast_id": 21, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 14}, {"name": "John Ortiz", "character": "Braga", "id": 40543, "credit_id": "52fe48839251416c9108f043", "cast_id": 22, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 15}, {"name": "Gina Carano", "character": "Riley", "id": 78452, "credit_id": "52fe48839251416c9108f047", "cast_id": 23, "profile_path": "/jAYNPdJYu35eoRdI25fYa5jtsbR.jpg", "order": 16}, {"name": "Clara Paget", "character": "Vegh", "id": 1258227, "credit_id": "52fe48839251416c9108f0b1", "cast_id": 41, "profile_path": "/ompJQPDexjS0hfygwOnDz9ZfxcU.jpg", "order": 17}, {"name": "Jason Statham", "character": "Cameo Appearance", "id": 976, "credit_id": "54c80ceec3a36874ac004863", "cast_id": 42, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 18}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe48829251416c9108f003", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 6.6, "runtime": 130}, "179": {"poster_path": "/iQ3pa4t2B0oLBU2Ny6GRBabhV7e.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162944923, "overview": "A thriller about an interpreter who has overheard plans of an assassination at United Nations headquarters. An American Secret Service agent is sent to investigate as Silvia Broome, the interpreter, is in danger of being killed by the assassins.", "video": false, "id": 179, "genres": [{"id": 28, "name": "Action"}], "title": "The Interpreter", "tagline": "The truth needs no translation.", "vote_count": 73, "homepage": "http://www.theinterpretermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373926", "adult": false, "backdrop_path": "/uEkVmznbztmNHvxc0qlIX0TKArz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}, {"name": "Misher Films", "id": 11581}, {"name": "Mirage Entertainment", "id": 205}, {"name": "StudioCanal", "id": 694}, {"name": "Motion Picture JOTA Produktions", "id": 20194}], "release_date": "2005-04-15", "popularity": 1.01406759376517, "original_title": "The Interpreter", "budget": 80000000, "cast": [{"name": "Nicole Kidman", "character": "Silvia Broome", "id": 2227, "credit_id": "52fe4223c3a36847f8006e6d", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Sean Penn", "character": "Tobin Keller", "id": 2228, "credit_id": "52fe4223c3a36847f8006e71", "cast_id": 3, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Catherine Keener", "character": "Dot Woods", "id": 2229, "credit_id": "52fe4223c3a36847f8006e75", "cast_id": 4, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 2}, {"name": "Jesper Christensen", "character": "Nils Lud", "id": 2244, "credit_id": "52fe4223c3a36847f8006eaf", "cast_id": 14, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 3}, {"name": "Yvan Attal", "character": "Philippe", "id": 2245, "credit_id": "52fe4223c3a36847f8006eb3", "cast_id": 15, "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "order": 4}, {"name": "Earl Cameron", "character": "Dr. Zuwanie", "id": 2246, "credit_id": "52fe4223c3a36847f8006eb7", "cast_id": 16, "profile_path": "/4bDKeRU96RxpJ2Uv8x2yrjCmGks.jpg", "order": 5}, {"name": "George Harris", "character": "Kuman-Kuman", "id": 2247, "credit_id": "52fe4223c3a36847f8006ebb", "cast_id": 17, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 6}, {"name": "Michael Wright", "character": "Marcus", "id": 2248, "credit_id": "52fe4223c3a36847f8006ebf", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Clyde Kusatsu", "character": "Police Chief Lee Wu", "id": 2249, "credit_id": "52fe4223c3a36847f8006ec3", "cast_id": 19, "profile_path": "/nfOvoNP4Gwo8LZO2UFZUnLu5sIU.jpg", "order": 8}, {"name": "Eric Keenleyside", "character": "Rory Robb", "id": 2250, "credit_id": "52fe4223c3a36847f8006ec7", "cast_id": 20, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 9}, {"name": "Hugo Speer", "character": "Simon Broome", "id": 2251, "credit_id": "52fe4223c3a36847f8006ecb", "cast_id": 21, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 10}, {"name": "Maz Jobrani", "character": "Mo", "id": 2252, "credit_id": "52fe4223c3a36847f8006ecf", "cast_id": 22, "profile_path": "/6yvPvXHNYq1qOtCJUvok90zMivw.jpg", "order": 11}, {"name": "Yusuf Gatewood", "character": "Doug", "id": 2253, "credit_id": "52fe4223c3a36847f8006ed3", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Curtiss Cook", "character": "Ajene Xola", "id": 2254, "credit_id": "52fe4223c3a36847f8006ed7", "cast_id": 24, "profile_path": "/qX97rykGHn3wpxRkM8nSmE1Jfkj.jpg", "order": 13}, {"name": "Byron Utley", "character": "Jean Gamba", "id": 2255, "credit_id": "52fe4223c3a36847f8006edb", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Robert Clohessy", "character": "FBI Agent King", "id": 2256, "credit_id": "52fe4223c3a36847f8006edf", "cast_id": 26, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 15}, {"name": "Terry Serpico", "character": "FBI Agent Lewis", "id": 2257, "credit_id": "52fe4223c3a36847f8006ee3", "cast_id": 27, "profile_path": "/3znAbAv0sqBZMvwluRaRQQBeR2M.jpg", "order": 16}, {"name": "Vladimir Bibic", "character": "G.A. President", "id": 162500, "credit_id": "54019cd3c3a3684360003061", "cast_id": 32, "profile_path": "/pWdBAILTqB0tIen49IHQVOq3OIG.jpg", "order": 17}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe4223c3a36847f8006e69", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 6.3, "runtime": 128}, "9268": {"poster_path": "/bmOG5k07nrnS8T49NVPM1LnrOf1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 233200000, "overview": "U.S. Marshall John Kruger erases the identities of people enrolled in the Witness Protection Program. His current assignment is to protect Lee Cullen, who's uncovered evidence that the weapons manufacturer she works for has been selling to terrorist groups. When Kruger discovers that there's a corrupt agent within the program, he must guard his own life while trying to protect Lee's.", "video": false, "id": 9268, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Eraser", "tagline": "He will erase your past to protect your future.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116213", "adult": false, "backdrop_path": "/gxl0eDEu2IJkubxu6UL0UN7ieYb.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Kopelson Entertainment", "id": 824}], "release_date": "1996-06-10", "popularity": 0.563377151493871, "original_title": "Eraser", "budget": 100000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "U.S. Marshal John 'The Eraser' Kruger", "id": 1100, "credit_id": "52fe44dfc3a36847f80aef9b", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "James Caan", "character": "U.S. Marshal Robert Deguerin", "id": 3085, "credit_id": "52fe44dfc3a36847f80aef9f", "cast_id": 2, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 1}, {"name": "Vanessa Williams", "character": "Lee Cullen", "id": 27011, "credit_id": "52fe44dfc3a36847f80aefa3", "cast_id": 3, "profile_path": "/t5tyW5nSk5ikeU8cWPdg4ImsMuq.jpg", "order": 2}, {"name": "James Coburn", "character": "WitSec Chief Beller", "id": 5563, "credit_id": "52fe44dfc3a36847f80aefa7", "cast_id": 4, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 3}, {"name": "Robert Pastorelli", "character": "Johnny Casteleone", "id": 7866, "credit_id": "52fe44dfc3a36847f80aeff9", "cast_id": 18, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 4}, {"name": "James Cromwell", "character": "William Donohue", "id": 2505, "credit_id": "52fe44dfc3a36847f80aeffd", "cast_id": 19, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 5}, {"name": "Danny Nucci", "character": "WitSec Deputy Monroe", "id": 8540, "credit_id": "52fe44dfc3a36847f80af001", "cast_id": 20, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 6}, {"name": "Andy Romano", "character": "Undersecretary of Defense Daniel Harper", "id": 32289, "credit_id": "52fe44dfc3a36847f80af005", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Nick Chinlund", "character": "WitSec Agent Calderon", "id": 18461, "credit_id": "52fe44dfc3a36847f80af009", "cast_id": 22, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 8}, {"name": "Michael Papajohn", "character": "WitSec Agent Schiffer", "id": 20582, "credit_id": "52fe44dfc3a36847f80af00d", "cast_id": 23, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 9}, {"name": "Joe Viterelli", "character": "Tony Two-Toes", "id": 60023, "credit_id": "52fe44dfc3a36847f80af011", "cast_id": 24, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 10}, {"name": "Mark Rolston", "character": "J. Scar", "id": 6576, "credit_id": "52fe44dfc3a36847f80af015", "cast_id": 25, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 11}, {"name": "John Slattery", "character": "FBI Agent Corman", "id": 21134, "credit_id": "52fe44dfc3a36847f80af019", "cast_id": 26, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 12}, {"name": "Robert Miranda", "character": "Frediano", "id": 20625, "credit_id": "52fe44dfc3a36847f80af01d", "cast_id": 27, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 13}, {"name": "Roma Maffia", "character": "Claire Isaacs", "id": 21366, "credit_id": "52fe44dfc3a36847f80af021", "cast_id": 28, "profile_path": "/tfscWeBOGA9aysLbYoOduimpTOk.jpg", "order": 14}, {"name": "Olek Krupa", "character": "Sergei Ivanovich Petrofsky", "id": 53573, "credit_id": "54f44f7ec3a3681dd4001d2a", "cast_id": 91, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 15}, {"name": "Melora Walters", "character": "Darleen", "id": 4766, "credit_id": "54f44fa7925141799f001b97", "cast_id": 92, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 16}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe44dfc3a36847f80aefad", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 5.5, "runtime": 115}, "9270": {"poster_path": "/hyALqQpaTv0GGV4axqePihEmCY8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3919254, "overview": "A teenage loner pushes his way into the underworld of a high school crime ring to investigate the disappearance of his ex-girlfriend.", "video": false, "id": 9270, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Brick", "tagline": "A detective story.", "vote_count": 69, "homepage": "http://www.brickmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0393109", "adult": false, "backdrop_path": "/paHvFDm2uLTzVXpb59fsuJCz89b.jpg", "production_companies": [{"name": "Bergman Lustig productions", "id": 6971}], "release_date": "2005-01-30", "popularity": 0.448102935865019, "original_title": "Brick", "budget": 475000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Brendan", "id": 24045, "credit_id": "52fe44dfc3a36847f80af0cb", "cast_id": 1, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Emilie de Ravin", "character": "Emily", "id": 28660, "credit_id": "52fe44dfc3a36847f80af0cf", "cast_id": 2, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 1}, {"name": "Nora Zehetner", "character": "Laura", "id": 34070, "credit_id": "52fe44dfc3a36847f80af0d3", "cast_id": 4, "profile_path": "/qzP1MWNCugzf180ZDX8zdfBk3zk.jpg", "order": 3}, {"name": "Lukas Haas", "character": "The Pin", "id": 526, "credit_id": "52fe44dfc3a36847f80af0d7", "cast_id": 5, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 4}, {"name": "Richard Roundtree", "character": "Assistant V.P. Trueman", "id": 6487, "credit_id": "52fe44dfc3a36847f80af0db", "cast_id": 6, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 5}, {"name": "Meagan Good", "character": "Kara", "id": 22122, "credit_id": "52fe44dfc3a36847f80af0df", "cast_id": 7, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 6}, {"name": "Noah Fleiss", "character": "Tugger", "id": 57286, "credit_id": "52fe44dfc3a36847f80af0e3", "cast_id": 8, "profile_path": "/jWCEjHjDdAE1zYEInbraXCen9Mm.jpg", "order": 7}, {"name": "Brian J. White", "character": "Brad Bramish", "id": 31137, "credit_id": "52fe44dfc3a36847f80af0e7", "cast_id": 9, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 8}, {"name": "Noah Segan", "character": "Dode", "id": 48312, "credit_id": "52fe44dfc3a36847f80af12d", "cast_id": 21, "profile_path": "/hxRWVwtxvzz0NTaaZMQwtPz8CDE.jpg", "order": 9}, {"name": "Matt O'Leary", "character": "The Brain", "id": 71467, "credit_id": "52fe44dfc3a36847f80af131", "cast_id": 22, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 10}], "directors": [{"name": "Rian Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44dfc3a36847f80af0ed", "profile_path": "/pCdsaqBaG6SozL5HGwVRyIfjWtM.jpg", "id": 67367}], "vote_average": 6.8, "runtime": 110}, "58423": {"poster_path": "/8Z3eeQOTu8VSCfp4ZYjxuJsyaXl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 554987477, "overview": "Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend... The Boots.", "video": false, "id": 58423, "genres": [{"id": 16, "name": "Animation"}], "title": "Puss in Boots", "tagline": "Live for danger. Fight for justice. Pray for mercy.", "vote_count": 622, "homepage": "http://www.pussinbootsthemovie.com/", "belongs_to_collection": {"backdrop_path": "/feU1DWV5zMWxXUHJyAIk3dHRQ9c.jpg", "poster_path": "/anHwj9IupRoRZZ98WTBvHpTiE6A.jpg", "id": 94602, "name": "Puss in Boots Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0448694", "adult": false, "backdrop_path": "/iiufWukqR2QBfYIfP7OEdLHrYXB.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2011-10-28", "popularity": 1.48358429574081, "original_title": "Puss in Boots", "budget": 130000000, "cast": [{"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe4961c3a36847f81972e7", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Kitty Softpaws (voice)", "id": 3136, "credit_id": "52fe4961c3a36847f81972f1", "cast_id": 4, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Humpty Alexander Dumpty (voice)", "id": 58225, "credit_id": "52fe4961c3a36847f81972fd", "cast_id": 8, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Billy Bob Thornton", "character": "Jack (voice)", "id": 879, "credit_id": "52fe4961c3a36847f81972f5", "cast_id": 6, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 3}, {"name": "Amy Sedaris", "character": "Jill (voice)", "id": 12110, "credit_id": "52fe4961c3a36847f81972f9", "cast_id": 7, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 4}, {"name": "Constance Marie", "character": "Imelda (voice)", "id": 92326, "credit_id": "52fe4961c3a36847f8197301", "cast_id": 9, "profile_path": "/ddADLrENkKWbrc4wiqNiRqPwaEB.jpg", "order": 5}, {"name": "Guillermo del Toro", "character": "Moustache Man / Comandate (voice)", "id": 10828, "credit_id": "52fe4961c3a36847f8197305", "cast_id": 10, "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "order": 6}, {"name": "Mike Mitchell", "character": "Andy Beanstalk (voice)", "id": 64151, "credit_id": "52fe4961c3a36847f8197309", "cast_id": 11, "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "order": 7}, {"name": "Rich Dietl", "character": "Bounty Hunter (voice)", "id": 936666, "credit_id": "52fe4961c3a36847f819730d", "cast_id": 12, "profile_path": "/caMJRrUIYD4wHlbwu1NIqZZWGby.jpg", "order": 8}, {"name": "Ryan Crego", "character": "Luis (voice)", "id": 936667, "credit_id": "52fe4961c3a36847f8197311", "cast_id": 13, "profile_path": "/fvsxQxkA64LBzECtPE2HWyVkZVI.jpg", "order": 9}, {"name": "Tom Wheeler", "character": "Bartender / Hotel Owner / Mean Boy / Wagon Driver / Rodrigo (voice)", "id": 936668, "credit_id": "52fe4961c3a36847f8197315", "cast_id": 14, "profile_path": "/1un3JagSljzwsgdkDw8VLYmhnHy.jpg", "order": 10}, {"name": "Conrad Vernon", "character": "Raoul / Soldier (voice)", "id": 12080, "credit_id": "52fe4961c3a36847f8197319", "cast_id": 15, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 11}, {"name": "Tom McGrath", "character": "Bar Thief (voice)", "id": 18864, "credit_id": "52fe4961c3a36847f819731d", "cast_id": 16, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 12}, {"name": "Bob Joles", "character": "Guiseppe (voice)", "id": 179702, "credit_id": "52fe4961c3a36847f8197321", "cast_id": 17, "profile_path": "/1cbsuNkocUcvOw5D60KtsqjgLEG.jpg", "order": 13}, {"name": "Latifa Ouaou", "character": "Crazy Woman / Mean Girl / Milk Lady / Little Boy (voice)", "id": 936669, "credit_id": "52fe4961c3a36847f8197325", "cast_id": 18, "profile_path": "/gJ0ntOXcs0RRdMAM9b5Avo5REga.jpg", "order": 14}, {"name": "Robert Persichetti Jr.", "character": "Ohhh Cat (voice)", "id": 936670, "credit_id": "52fe4961c3a36847f8197329", "cast_id": 19, "profile_path": "/2yzTqAKRzGURbqbnQFQK27ATBCp.jpg", "order": 15}, {"name": "Chris Miller", "character": "Little Boy Blue / Friar Miller / Prison Guard / Manual / Rafael (voice)", "id": 12098, "credit_id": "52fe4961c3a36847f819732d", "cast_id": 20, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 16}, {"name": "Jessica Schulte", "character": "Estella Maria (voice)", "id": 936672, "credit_id": "52fe4961c3a36847f8197331", "cast_id": 21, "profile_path": "/apZtLC6mjAGEZLctvprrOhTw95W.jpg", "order": 17}, {"name": "Nina Barry", "character": "Ivana / Charo (voice)", "id": 936674, "credit_id": "52fe4961c3a36847f8197335", "cast_id": 22, "profile_path": "/6ekpUcsWySmTuN6U3ZVcEWxZKdU.jpg", "order": 18}], "directors": [{"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4961c3a36847f81972ed", "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "id": 12098}], "vote_average": 6.2, "runtime": 90}, "9273": {"poster_path": "/wRlGnJhEzcxBjvWtvbjhDSU1cIY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.", "video": false, "id": 9273, "genres": [{"id": 35, "name": "Comedy"}], "title": "Ace Ventura: When Nature Calls", "tagline": "Most people wouldn't last one minute in the real wild nature. Ace Ventura, not even a second.", "vote_count": 298, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aPoX8RAxA9J2XW44Ud0AozTUFop.jpg", "poster_path": "/guYqF6CvU48aGH5nTx160Bjg35F.jpg", "id": 3167, "name": "Ace Ventura Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112281", "adult": false, "backdrop_path": "/zM8D3dSzxISwLilMKzLuzaU3O9j.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1995-11-10", "popularity": 0.961223813876515, "original_title": "Ace Ventura: When Nature Calls", "budget": 0, "cast": [{"name": "Jim Carrey", "character": "Ace Ventura", "id": 206, "credit_id": "52fe44dfc3a36847f80af279", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Ian McNeice", "character": "Fulton Greenwall", "id": 3547, "credit_id": "52fe44dfc3a36847f80af27d", "cast_id": 2, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 1}, {"name": "Simon Callow", "character": "Vincent Cadby", "id": 4001, "credit_id": "52fe44dfc3a36847f80af281", "cast_id": 3, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 2}, {"name": "Maynard Eziashi", "character": "Ouda", "id": 57096, "credit_id": "52fe44dfc3a36847f80af285", "cast_id": 4, "profile_path": "/zSxucY5ua1EnrVoKJD97BuqJGvw.jpg", "order": 3}, {"name": "Bob Gunton", "character": "Burton Quinn", "id": 4029, "credit_id": "52fe44dfc3a36847f80af2c5", "cast_id": 15, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 4}, {"name": "Sophie Okonedo", "character": "The Wachati Princess", "id": 2598, "credit_id": "52fe44dfc3a36847f80af2c9", "cast_id": 16, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 5}, {"name": "Tommy Davidson", "character": "The Tiny Warrior", "id": 88059, "credit_id": "52fe44dfc3a36847f80af2cd", "cast_id": 17, "profile_path": "/yXCC9g25AwlCpSWPY1plqjcvQD5.jpg", "order": 6}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Hitu", "id": 31164, "credit_id": "52fe44dfc3a36847f80af2d1", "cast_id": 18, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 7}, {"name": "Danny D. Daniels", "character": "Wachootoo Witch Doctor", "id": 1080060, "credit_id": "52fe44dfc3a36847f80af2d5", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Sam Motoana Phillips", "character": "Wachootoo Chief", "id": 1080061, "credit_id": "52fe44dfc3a36847f80af2d9", "cast_id": 20, "profile_path": "/rJrBTHb3LHFrFo0uydYVhRxKl8c.jpg", "order": 9}, {"name": "Damon Standifer", "character": "Wachati Chief", "id": 172354, "credit_id": "52fe44dfc3a36847f80af2dd", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Andrew Steel", "character": "Mick Katie", "id": 158324, "credit_id": "52fe44dfc3a36847f80af2e1", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Bruce Spence", "character": "Gahjii", "id": 27752, "credit_id": "52fe44dfc3a36847f80af2e5", "cast_id": 23, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 12}, {"name": "Tom Grunke", "character": "Derrick McCane", "id": 171303, "credit_id": "52fe44dfc3a36847f80af2e9", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Arsenio 'Sonny' Trinidad", "character": "Ashram Monk", "id": 1080062, "credit_id": "52fe44dfc3a36847f80af2ed", "cast_id": 25, "profile_path": null, "order": 14}], "directors": [{"name": "Steve Oedekerk", "department": "Directing", "job": "Director", "credit_id": "52fe44dfc3a36847f80af28b", "profile_path": "/qUkJ4GbyAdloVjVxCUlxLT23wIe.jpg", "id": 4489}], "vote_average": 6.1, "runtime": 90}, "9276": {"poster_path": "/6L1SgKyzDy5x2oEskUyfMcdVed2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When some very creepy things start happening around school, the kids at Herrington High make a chilling discovery that confirms their worst suspicions: their teachers really are from another planet! As mind-controlling parasites rapidly begin spreading from the faculty to the students' bodies, it's ultimately up to the few who are left \u2013 an unlikely collection of loners, leaders, nerds and jocks \u2013 to save the world from alien domination.", "video": false, "id": 9276, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "The Faculty", "tagline": "Take me to your teacher.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133751", "adult": false, "backdrop_path": "/xuHuW4XhghQpVJSIna7JBb60bva.jpg", "production_companies": [{"name": "Los Hooligans Productions", "id": 11705}, {"name": "Dimension Films", "id": 7405}], "release_date": "1998-12-25", "popularity": 0.622154420936422, "original_title": "The Faculty", "budget": 15000000, "cast": [{"name": "Jordana Brewster", "character": "Delilah Profitt", "id": 22123, "credit_id": "52fe44e0c3a36847f80af45f", "cast_id": 1, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 0}, {"name": "Elijah Wood", "character": "Casey Connor", "id": 109, "credit_id": "52fe44e0c3a36847f80af47f", "cast_id": 9, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 1}, {"name": "Clea DuVall", "character": "Stokely 'Stokes' Mitchell", "id": 20387, "credit_id": "52fe44e0c3a36847f80af463", "cast_id": 2, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 2}, {"name": "Laura Harris", "character": "Marybeth Louise Hutchinson", "id": 25872, "credit_id": "52fe44e0c3a36847f80af467", "cast_id": 3, "profile_path": "/9uuhXyH7tmFiJnyesXetTE8b13j.jpg", "order": 3}, {"name": "Josh Hartnett", "character": "Zeke Tyler", "id": 2299, "credit_id": "52fe44e0c3a36847f80af46b", "cast_id": 4, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 4}, {"name": "Shawn Hatosy", "character": "Stan Rosado", "id": 52647, "credit_id": "52fe44e0c3a36847f80af46f", "cast_id": 5, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 5}, {"name": "Salma Hayek", "character": "Nurse Rosa Harper", "id": 3136, "credit_id": "52fe44e0c3a36847f80af473", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 6}, {"name": "Famke Janssen", "character": "Miss Elizabeth Burke", "id": 10696, "credit_id": "52fe44e0c3a36847f80af477", "cast_id": 7, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 7}, {"name": "Usher Raymond", "character": "Gabe Santora", "id": 57108, "credit_id": "52fe44e0c3a36847f80af47b", "cast_id": 8, "profile_path": "/s0frjwIXTy0AkgqhZEEPzW599TG.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Coach Joe Willis", "id": 418, "credit_id": "52fe44e0c3a36847f80af483", "cast_id": 10, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Piper Laurie", "character": "Mrs. Karen Olson", "id": 6721, "credit_id": "52fe44e0c3a36847f80af4c9", "cast_id": 22, "profile_path": "/eKjVK5MQ5RK9XuVLaCC2oYACmbK.jpg", "order": 10}, {"name": "Christopher McDonald", "character": "Mr. Frank Connor", "id": 4443, "credit_id": "52fe44e0c3a36847f80af4cd", "cast_id": 23, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 11}, {"name": "Bebe Neuwirth", "character": "Principal Valerie Drake", "id": 10739, "credit_id": "52fe44e0c3a36847f80af4d1", "cast_id": 24, "profile_path": "/xm58rpMRVDHS0IGttw1pTlqGwkN.jpg", "order": 12}, {"name": "Jon Stewart", "character": "Prof. Edward Furlong", "id": 12219, "credit_id": "52fe44e0c3a36847f80af4d5", "cast_id": 25, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 13}, {"name": "Daniel von Bargen", "character": "Mr. John Tate", "id": 1473, "credit_id": "52fe44e0c3a36847f80af4d9", "cast_id": 26, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 14}, {"name": "Jon Abrahams", "character": "F*** You Boy", "id": 17866, "credit_id": "52fe44e0c3a36847f80af4dd", "cast_id": 27, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 15}, {"name": "Summer Phoenix", "character": "F*** You Girl", "id": 34543, "credit_id": "52fe44e0c3a36847f80af4e1", "cast_id": 28, "profile_path": "/mKBiUY3QxsOK7tYD1j51p8MAUxK.jpg", "order": 16}, {"name": "Susan Willis", "character": "Mrs. Jessica Brummel", "id": 97267, "credit_id": "52fe44e0c3a36847f80af4e5", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Pete Janssen", "character": "Eddie 'Meat' McIvey", "id": 1091198, "credit_id": "52fe44e0c3a36847f80af4e9", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Tina Rodriguez", "character": "Tattoo Girl", "id": 122416, "credit_id": "52fe44e0c3a36847f80af4ed", "cast_id": 31, "profile_path": "/8DJfBQUsR4wKsTIQXQv84IeTlLH.jpg", "order": 19}, {"name": "Danny Masterson", "character": "F*** Up #1", "id": 18972, "credit_id": "52fe44e0c3a36847f80af4f1", "cast_id": 32, "profile_path": "/qml2xCFDj1cqCvcp9H0dIlrAMT6.jpg", "order": 20}, {"name": "Wiley Wiggins", "character": "F*** Up #2", "id": 56934, "credit_id": "52fe44e0c3a36847f80af4f5", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Harry Jay Knowles", "character": "Mr. Knowles", "id": 939534, "credit_id": "52fe44e0c3a36847f80af4f9", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Donna Casey", "character": "Tina", "id": 957577, "credit_id": "52fe44e0c3a36847f80af4fd", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Louis Black", "character": "Mr. Lewis", "id": 1091199, "credit_id": "52fe44e0c3a36847f80af501", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Eric Jungmann", "character": "Freshman #1", "id": 37005, "credit_id": "52fe44e0c3a36847f80af505", "cast_id": 37, "profile_path": "/7PPic9cyNaJbmPXpIEBJZ3JH9Sa.jpg", "order": 25}, {"name": "Chris Viteychuk", "character": "Freshman #2", "id": 1091200, "credit_id": "52fe44e0c3a36847f80af509", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Jim Johnston", "character": "P.E. Teacher", "id": 1091201, "credit_id": "52fe44e0c3a36847f80af50d", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Libby Villari", "character": "Casey's Mom", "id": 2857, "credit_id": "52fe44e0c3a36847f80af511", "cast_id": 40, "profile_path": "/dGSRIXHG4er86LBk4HAKK4TGWL0.jpg", "order": 28}, {"name": "Duane Martin", "character": "Officer #1", "id": 84077, "credit_id": "52fe44e0c3a36847f80af515", "cast_id": 41, "profile_path": "/nG7vPylNsS7k9RB0wFqu5bhUpXd.jpg", "order": 29}, {"name": "Katherine Willis", "character": "Officer #2", "id": 206675, "credit_id": "52fe44e0c3a36847f80af519", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Mike Lutz", "character": "Hornet Mascot", "id": 1038939, "credit_id": "52fe44e0c3a36847f80af51d", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Douglas Aarniokoski", "character": "Brun Coach", "id": 71901, "credit_id": "52fe44e0c3a36847f80af521", "cast_id": 44, "profile_path": "/dQ5FUVrjKNzXEADBCg3DDSWewhW.jpg", "order": 32}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44e0c3a36847f80af489", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.0, "runtime": 104}, "9277": {"poster_path": "/9UL58y2Lcbr8UpiXKiomYhKTuIs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159616327, "overview": "Set in the 1930's this intricate caper deals with an ambitious small-time crook and a veteran con man who seek revenge on a vicious crime lord who murdered one of their gang.", "video": false, "id": 9277, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Sting", "tagline": "...all it takes is a little Confidence.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 330605, "name": "The Sting Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070735", "adult": false, "backdrop_path": "/qdTTCAt35taHlFeeKZwBXLuJ5z7.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1973-12-25", "popularity": 0.724420355149071, "original_title": "The Sting", "budget": 5500000, "cast": [{"name": "Paul Newman", "character": "Henry Gondorff", "id": 3636, "credit_id": "52fe44e0c3a36847f80af567", "cast_id": 1, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "Robert Redford", "character": "Johnny Hooker", "id": 4135, "credit_id": "52fe44e0c3a36847f80af56b", "cast_id": 2, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Robert Shaw", "character": "Doyle Lonnegan", "id": 8606, "credit_id": "52fe44e0c3a36847f80af56f", "cast_id": 3, "profile_path": "/mLlgNTWRo3zGFzg4WHP9uzOH9Xn.jpg", "order": 2}, {"name": "Charles Durning", "character": "Lt. Wm. Snyder", "id": 1466, "credit_id": "52fe44e0c3a36847f80af573", "cast_id": 4, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 3}, {"name": "Ray Walston", "character": "J.J. Singleton", "id": 4093, "credit_id": "52fe44e0c3a36847f80af5b9", "cast_id": 16, "profile_path": "/KzlcoLq3s2I3ogQAdbE1eUcXsb.jpg", "order": 4}, {"name": "Eileen Brennan", "character": "Billie", "id": 39015, "credit_id": "52fe44e0c3a36847f80af5bd", "cast_id": 17, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 5}, {"name": "Harold Gould", "character": "Kid Twist", "id": 14833, "credit_id": "52fe44e0c3a36847f80af5c1", "cast_id": 18, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 6}, {"name": "John Heffernan", "character": "Eddie Niles", "id": 171056, "credit_id": "52fe44e0c3a36847f80af5c5", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Dana Elcar", "character": "F.B.I. Agent Polk", "id": 37712, "credit_id": "52fe44e0c3a36847f80af5c9", "cast_id": 20, "profile_path": "/8qDt9Rl10UCGnUtOZvlCwZiHTHI.jpg", "order": 8}, {"name": "Jack Kehoe", "character": "Erie Kid", "id": 1273, "credit_id": "52fe44e0c3a36847f80af5cd", "cast_id": 21, "profile_path": "/qz3IPPagmYvpbPw8cYOODlJUg97.jpg", "order": 9}, {"name": "Robert Earl Jones", "character": "Luther Coleman (as Robertearl Jones)", "id": 98927, "credit_id": "52fe44e0c3a36847f80af5d5", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "James Sloyan", "character": "Mottola (as James J. Sloyan)", "id": 157936, "credit_id": "52fe44e0c3a36847f80af5d9", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Charles Dierkop", "character": "Floyd - Bodyguard", "id": 15988, "credit_id": "52fe44e0c3a36847f80af5dd", "cast_id": 25, "profile_path": "/6gAnOws0RfFg9eKvxfPv4gvHMUm.jpg", "order": 13}, {"name": "Lee Paul", "character": "Bodyguard", "id": 110436, "credit_id": "52fe44e0c3a36847f80af5e1", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Sally Kirkland", "character": "Crystal", "id": 12134, "credit_id": "52fe44e0c3a36847f80af5e5", "cast_id": 27, "profile_path": "/9hDatSXreVqPtEylLXxMcCLNktL.jpg", "order": 15}, {"name": "Avon Long", "character": "Benny Garfield", "id": 1155210, "credit_id": "52fe44e0c3a36847f80af5e9", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Arch Johnson", "character": "Combs", "id": 83806, "credit_id": "52fe44e0c3a36847f80af5ed", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Ed Bakey", "character": "Granger", "id": 161360, "credit_id": "52fe44e0c3a36847f80af5f1", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Brad Sullivan", "character": "Cole", "id": 1274, "credit_id": "52fe44e0c3a36847f80af5f5", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "John Quade", "character": "Riley", "id": 152701, "credit_id": "52fe44e0c3a36847f80af5f9", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Dimitra Arliss", "character": "Loretta", "id": 1220923, "credit_id": "53c839f7c3a368625b004389", "cast_id": 33, "profile_path": null, "order": 21}], "directors": [{"name": "George Roy Hill", "department": "Directing", "job": "Director", "credit_id": "52fe44e0c3a36847f80af579", "profile_path": "/qUTS8j1sQNeqq1YOiW8ihz0gQNs.jpg", "id": 9577}], "vote_average": 7.7, "runtime": 129}, "9279": {"poster_path": "/aaVkNhUONnkSv5ijPjq7pEmmWyE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129, "overview": "Meet Howard Langston, a salesman for a mattress company is constantly busy at his job, and he also constantly disappoints his son, after he misses his son's karate exposition, his son tells Howard that he wants for Christmas is an action figure of his son's television hero, he tries hard to to make it up to him. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man, now Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.", "video": false, "id": 9279, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Jingle All the Way", "tagline": "Two Dads, One Toy, No Prisoners.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8lId3K1HKp39peVG1VwLfA6RFsK.jpg", "id": 307637, "name": "Jingle All The Way Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116705", "adult": false, "backdrop_path": "/9SNO9BglZJgGTMOB5K4NVgecgX1.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1996-11-15", "popularity": 0.517039297597786, "original_title": "Jingle All the Way", "budget": 60, "cast": [{"name": "Arnold Schwarzenegger", "character": "Howard Langston", "id": 1100, "credit_id": "52fe44e0c3a36847f80af709", "cast_id": 12, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Phil Hartman", "character": "Ted Maltin", "id": 14104, "credit_id": "52fe44e0c3a36847f80af70d", "cast_id": 13, "profile_path": "/rf62sAab9vOjm9x7ZA0VBWDkHvD.jpg", "order": 1}, {"name": "Sinbad", "character": "Myron Larabee", "id": 57119, "credit_id": "52fe44e0c3a36847f80af711", "cast_id": 14, "profile_path": "/lQ6VVIxpZuwgXJuBX87YwQkXUoq.jpg", "order": 2}, {"name": "Rita Wilson", "character": "Liz Langston", "id": 12931, "credit_id": "52fe44e0c3a36847f80af715", "cast_id": 15, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 3}, {"name": "Jake Lloyd", "character": "Jamie Langston", "id": 33196, "credit_id": "52fe44e0c3a36847f80af71f", "cast_id": 18, "profile_path": "/1MndIkdjjDypRDi3PpMzy3j0Lof.jpg", "order": 4}, {"name": "Martin Mull", "character": "D.J.", "id": 80742, "credit_id": "52fe44e1c3a36847f80af723", "cast_id": 19, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 5}, {"name": "Martin Mull", "character": "Mall Santa", "id": 80742, "credit_id": "52fe44e1c3a36847f80af727", "cast_id": 20, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 6}, {"name": "Laraine Newman", "character": "First Lady", "id": 35159, "credit_id": "52fe44e1c3a36847f80af72b", "cast_id": 21, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 7}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe44e0c3a36847f80af6cf", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.6, "runtime": 89}, "9281": {"poster_path": "/pQZa314NJP3ieMAj6CgPI1v7nUY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68706993, "overview": "A sheltered Amish child is the sole witness of a brutal murder in a restroom at a Philadelphia train station, and he must be protected. The assignment falls to a taciturn detective who goes undercover in a Pennsylvania Dutch community. On the farm, he slowly assimilates despite his urban grit and forges a romantic bond with the child's beautiful mother.", "video": false, "id": 9281, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Witness", "tagline": "A big city cop. A small country boy. They have nothing in common...but a murder.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090329", "adult": false, "backdrop_path": "/QHlIf8JgLDOMpEOeuraSKTTjkJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1985-02-08", "popularity": 0.728982345343878, "original_title": "Witness", "budget": 12000000, "cast": [{"name": "Harrison Ford", "character": "Det. Capt. John Book", "id": 3, "credit_id": "52fe44e1c3a36847f80af7fd", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Kelly McGillis", "character": "Rachel Lapp", "id": 11084, "credit_id": "52fe44e1c3a36847f80af801", "cast_id": 9, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 1}, {"name": "Josef Sommer", "character": "Chief Paul Schaeffer", "id": 14792, "credit_id": "52fe44e1c3a36847f80af805", "cast_id": 10, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 2}, {"name": "Lukas Haas", "character": "Samuel Lapp", "id": 526, "credit_id": "52fe44e1c3a36847f80af809", "cast_id": 11, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 3}, {"name": "Jan Rubes", "character": "Eli Lapp", "id": 37422, "credit_id": "52fe44e1c3a36847f80af80d", "cast_id": 12, "profile_path": "/7Vx83K4KiTNqCEOIcqwSSav79ky.jpg", "order": 4}, {"name": "Alexander Godunov", "character": "Daniel Hochleitner", "id": 7674, "credit_id": "52fe44e1c3a36847f80af811", "cast_id": 13, "profile_path": "/lZyg3u3i2OrJJMKGhHDglln5GUm.jpg", "order": 5}, {"name": "Danny Glover", "character": "McFee", "id": 2047, "credit_id": "52fe44e1c3a36847f80af815", "cast_id": 14, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 6}, {"name": "Brent Jennings", "character": "Carter", "id": 84685, "credit_id": "52fe44e1c3a36847f80af819", "cast_id": 15, "profile_path": "/wkKnquYyWGT5ciIfgJAdy7tAxXX.jpg", "order": 7}, {"name": "Patti LuPone", "character": "Elaine", "id": 5699, "credit_id": "52fe44e1c3a36847f80af81d", "cast_id": 16, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 8}, {"name": "Angus MacInnes", "character": "Fergie", "id": 58475, "credit_id": "52fe44e1c3a36847f80af821", "cast_id": 17, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 9}, {"name": "Frederick Rolf", "character": "Stoltzfus", "id": 162568, "credit_id": "52fe44e1c3a36847f80af825", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Viggo Mortensen", "character": "Moses Hochleitner", "id": 110, "credit_id": "52fe44e1c3a36847f80af829", "cast_id": 19, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 11}, {"name": "John Garson", "character": "Bishop Tchantz", "id": 554627, "credit_id": "52fe44e1c3a36847f80af82d", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Beverly May", "character": "Mrs. Yoder", "id": 87051, "credit_id": "52fe44e1c3a36847f80af831", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Ed Crowley", "character": "Sheriff", "id": 554628, "credit_id": "52fe44e1c3a36847f80af835", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Timothy Carhart", "character": "Zenovich", "id": 17396, "credit_id": "52fe44e1c3a36847f80af839", "cast_id": 23, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 15}, {"name": "Sylvia Kauders", "character": "Tourist Lady", "id": 122239, "credit_id": "52fe44e1c3a36847f80af83d", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Patti LuPone", "character": "Elaine", "id": 5699, "credit_id": "52fe44e1c3a36847f80af841", "cast_id": 25, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 17}, {"name": "Robert Earl Jones", "character": "Custodian", "id": 98927, "credit_id": "54c5e413c3a3684a1f002e15", "cast_id": 26, "profile_path": null, "order": 18}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80af7d5", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 6.9, "runtime": 113}, "9282": {"poster_path": "/meAf3bHu9tR6OdMSELjpmlBcbE1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tells the seemingly random yet vitally connected story of a set of incidents that all converge one evening at 11:14pm. The story follows the chain of events of five different characters and five different storylines that all converge to tell the story of murder and deceit.", "video": false, "id": 9282, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "11:14", "tagline": "Fate can change in seconds.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0331811", "adult": false, "backdrop_path": "/x3GfQHPtO2JndinKPd8OVzxYdlZ.jpg", "production_companies": [{"name": "Media 8 Entertainment", "id": 2226}, {"name": "MDP Worldwide", "id": 10828}, {"name": "Firm Films", "id": 1838}], "release_date": "2003-10-15", "popularity": 0.837136290061917, "original_title": "11:14", "budget": 6000000, "cast": [{"name": "Henry Thomas", "character": "Jack", "id": 9976, "credit_id": "52fe44e1c3a36847f80af8a9", "cast_id": 10, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 0}, {"name": "Blake Heron", "character": "Aaron", "id": 57127, "credit_id": "52fe44e1c3a36847f80af8ad", "cast_id": 11, "profile_path": "/dpbSkgTckGSYRXvbZV2MwFN38LI.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Norma", "id": 10767, "credit_id": "52fe44e1c3a36847f80af8b1", "cast_id": 12, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Hilary Swank", "character": "Buzzy", "id": 448, "credit_id": "52fe44e1c3a36847f80af8b5", "cast_id": 13, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 3}, {"name": "Clark Gregg", "character": "Officer Hannagan", "id": 9048, "credit_id": "52fe44e1c3a36847f80af8b9", "cast_id": 14, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 4}, {"name": "Shawn Hatosy", "character": "Duffy", "id": 52647, "credit_id": "52fe44e1c3a36847f80af8bd", "cast_id": 15, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 5}, {"name": "Stark Sands", "character": "Tim", "id": 33532, "credit_id": "52fe44e1c3a36847f80af8c1", "cast_id": 16, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 6}, {"name": "Colin Hanks", "character": "Mark", "id": 3492, "credit_id": "52fe44e1c3a36847f80af8c5", "cast_id": 17, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 7}, {"name": "Ben Foster", "character": "Eddie", "id": 11107, "credit_id": "52fe44e1c3a36847f80af8c9", "cast_id": 18, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 8}, {"name": "Patrick Swayze", "character": "Frank", "id": 723, "credit_id": "52fe44e1c3a36847f80af8cd", "cast_id": 19, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 9}, {"name": "Rachael Leigh Cook", "character": "Cheri", "id": 38581, "credit_id": "52fe44e1c3a36847f80af8d1", "cast_id": 20, "profile_path": "/xPcfVq2UMihLNmPvYhFXV0IXiwF.jpg", "order": 10}, {"name": "Jason Segel", "character": "Leon (Paramedic #1)", "id": 41088, "credit_id": "52fe44e1c3a36847f80af8d5", "cast_id": 21, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 11}, {"name": "Rick Gomez", "character": "Kevin (Paramedic #2)", "id": 123532, "credit_id": "52fe44e1c3a36847f80af8d9", "cast_id": 22, "profile_path": "/fqxDQWzG4OHZVqgnOqhS2HRSXPt.jpg", "order": 12}], "directors": [{"name": "Greg Marcks", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80af875", "profile_path": "/5R1x4u7hxoWt3KF4oXJ5L7CJfVM.jpg", "id": 57125}], "vote_average": 6.8, "runtime": 86}, "1091": {"poster_path": "/s5fH3GqFcHbi2F0NSBSh4KRNTc0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13782838, "overview": "Scientists in the Antarctic are confronted by a shape-shifting alien that assumes the appearance of the people that it kills.", "video": false, "id": 1091, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Thing", "tagline": "Man is The Warmest Place to Hide.", "vote_count": 396, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pJIVUUcpC3CvgiJlCz4XeEaE5dg.jpg", "poster_path": "/u4Vp4zBvhVg9JYVXQ7dpfYVs3BM.jpg", "id": 245713, "name": "The Thing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}], "imdb_id": "tt0084787", "adult": false, "backdrop_path": "/hnxieS9l0aWUTOHmNNj4cVoyj52.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Turman-Foster Company", "id": 662}], "release_date": "1982-06-25", "popularity": 1.48906089283241, "original_title": "The Thing", "budget": 10000000, "cast": [{"name": "Kurt Russell", "character": "R.J. MacReady", "id": 6856, "credit_id": "52fe42e7c3a36847f802ba37", "cast_id": 14, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Wilford Brimley", "character": "Dr. Blair", "id": 11065, "credit_id": "52fe42e7c3a36847f802ba3b", "cast_id": 15, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 1}, {"name": "T. K. Carter", "character": "Nauls", "id": 15411, "credit_id": "52fe42e7c3a36847f802ba3f", "cast_id": 16, "profile_path": "/dWW4ZaZkH2Pt2xsZPTjTXoZPyMl.jpg", "order": 2}, {"name": "David Clennon", "character": "Palmer", "id": 15412, "credit_id": "52fe42e7c3a36847f802ba43", "cast_id": 17, "profile_path": "/lt3jaAmhJhScJvXwDmE5JKOsTaf.jpg", "order": 3}, {"name": "Keith David", "character": "Childs", "id": 65827, "credit_id": "52fe42e7c3a36847f802ba47", "cast_id": 18, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 4}, {"name": "Richard Dysart", "character": "Dr. Copper", "id": 15413, "credit_id": "52fe42e7c3a36847f802ba4b", "cast_id": 19, "profile_path": "/rUCGqsBUOb1d7OsEVJo7BITfMIL.jpg", "order": 5}, {"name": "Charles Hallahan", "character": "Norris", "id": 15414, "credit_id": "52fe42e7c3a36847f802ba4f", "cast_id": 20, "profile_path": "/bXRE5dfHZZhovEbXgQCXDTw9ZHY.jpg", "order": 6}, {"name": "Peter Maloney", "character": "Bennings", "id": 15415, "credit_id": "52fe42e7c3a36847f802ba53", "cast_id": 21, "profile_path": "/cJcE9Oc4GYu0oeAqrrcP68vs3vf.jpg", "order": 7}, {"name": "Richard Masur", "character": "Clark", "id": 15416, "credit_id": "52fe42e7c3a36847f802ba57", "cast_id": 22, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 8}, {"name": "Donald Moffat", "character": "Garry", "id": 15417, "credit_id": "52fe42e7c3a36847f802ba5b", "cast_id": 23, "profile_path": "/s1z6xGV9M1sx1EQdQb1mpU58mqy.jpg", "order": 9}, {"name": "Joel Polis", "character": "Fuchs", "id": 15418, "credit_id": "52fe42e7c3a36847f802ba5f", "cast_id": 24, "profile_path": "/bwDOMBwBxL2cyXHBa4sLO00ifQg.jpg", "order": 10}, {"name": "Thomas G. Waites", "character": "Windows", "id": 15419, "credit_id": "52fe42e7c3a36847f802ba63", "cast_id": 25, "profile_path": "/siYdrSBj0ubxuCZm66lotNulg6M.jpg", "order": 11}, {"name": "Jed", "character": "the dog", "id": 131373, "credit_id": "52fe42e7c3a36847f802ba67", "cast_id": 26, "profile_path": null, "order": 12}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802b9eb", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 7.3, "runtime": 109}, "1092": {"poster_path": "/zffkZuDHU7NJIw9O54JIaR5XOxv.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 596349, "overview": "An American pulp writer arrives in post-WWII Vienna only to find that the friend who waited for him is killed under mysterious circumstances. The ensuing mystery entangles him in his friend's involvement in the black market, with the multinational police, and with his Czech girlfriend.", "video": false, "id": 1092, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Third Man", "tagline": "Hunted by men...Sought by WOMEN!", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0041959", "adult": false, "backdrop_path": "/lrIuSWdC1LfKJZUnBX6axJxzZGe.jpg", "production_companies": [{"name": "London Film Productions", "id": 659}, {"name": "British Lion Film Corporation", "id": 660}], "release_date": "1949-08-31", "popularity": 0.467722988308059, "original_title": "The Third Man", "budget": 0, "cast": [{"name": "Joseph Cotten", "character": "Holly Martins", "id": 7664, "credit_id": "52fe42e7c3a36847f802babd", "cast_id": 8, "profile_path": "/bTUTrTnzacCQV4F0rs1xH4QaETf.jpg", "order": 0}, {"name": "Alida Valli", "character": "Anna Schmidt", "id": 15385, "credit_id": "52fe42e7c3a36847f802bac1", "cast_id": 9, "profile_path": "/jrLlDz7G1oEw8mQri4T2jjDWXep.jpg", "order": 1}, {"name": "Orson Welles", "character": "Harry Lime", "id": 40, "credit_id": "52fe42e7c3a36847f802bac5", "cast_id": 10, "profile_path": "/pZz07JqawZP3eKUwpaAZq63vEmF.jpg", "order": 2}, {"name": "Trevor Howard", "character": "Major Calloway", "id": 12726, "credit_id": "52fe42e7c3a36847f802bac9", "cast_id": 11, "profile_path": "/drj1FPryhAimWCiufEnMLzUxpBQ.jpg", "order": 3}, {"name": "Bernard Lee", "character": "Sergeant Paine", "id": 9874, "credit_id": "52fe42e7c3a36847f802bacd", "cast_id": 12, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 4}, {"name": "Paul H\u00f6rbiger", "character": "Porter", "id": 14120, "credit_id": "52fe42e7c3a36847f802bad1", "cast_id": 13, "profile_path": "/bed1mDokkIA3RrxFzLW5lN7sE3K.jpg", "order": 5}, {"name": "Siegfried Breuer", "character": "Popescu", "id": 15386, "credit_id": "52fe42e7c3a36847f802bad5", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Wilfrid Hyde-White", "character": "Crabbin", "id": 15387, "credit_id": "52fe42e7c3a36847f802bad9", "cast_id": 15, "profile_path": "/kqMDVX6MR0wRAFWO85M0geJPFHV.jpg", "order": 7}, {"name": "Hedwig Bleibtreu", "character": "Anna's Landlady", "id": 15388, "credit_id": "52fe42e7c3a36847f802badd", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Annie Rosar", "character": "the porter's wife", "id": 11931, "credit_id": "52fe42e7c3a36847f802bae1", "cast_id": 17, "profile_path": "/xdCkf5Db3wGlFjedJ6AdvN7GxU6.jpg", "order": 9}, {"name": "Erich Ponto", "character": "Dr. Winkel", "id": 13376, "credit_id": "52fe42e7c3a36847f802bae5", "cast_id": 18, "profile_path": "/4oCLSs5TVmhHyLUUUkD7o4fZgA5.jpg", "order": 10}, {"name": "Ernst Deutsch", "character": "'Baron' Kurtz", "id": 29177, "credit_id": "52fe42e7c3a36847f802bae9", "cast_id": 19, "profile_path": null, "order": 11}], "directors": [{"name": "Carol Reed", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802ba95", "profile_path": "/rOg7tqIv14orhsQ3VngFrrdyqkf.jpg", "id": 15378}], "vote_average": 7.5, "runtime": 104}, "9285": {"poster_path": "/DCoZVnHVvtKTYwfM00dfVRbfUQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119754278, "overview": "Four friends take off on an 1800 mile road trip to retrieve an illicit tape mistakenly mailed to a girl friend.", "video": false, "id": 9285, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Road Trip", "tagline": "The greatest college tradition of all.", "vote_count": 152, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jGEnRLNK6fq7KMmw5rmApzfjVtw.jpg", "poster_path": "/7bXQaid9TkgGAPuoYFHzbr1alv9.jpg", "id": 96679, "name": "Road Trip Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0215129", "adult": false, "backdrop_path": "/6CvIM0Lp2gBppgoVoowqkyzhim7.jpg", "production_companies": [{"name": "The Montecito Picture Company", "id": 2364}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2000-05-19", "popularity": 0.552464637294531, "original_title": "Road Trip", "budget": 16000000, "cast": [{"name": "Breckin Meyer", "character": "Josh Parker", "id": 33654, "credit_id": "52fe44e1c3a36847f80afa23", "cast_id": 13, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 0}, {"name": "Seann William Scott", "character": "E.L.", "id": 57599, "credit_id": "52fe44e1c3a36847f80afa27", "cast_id": 14, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Amy Smart", "character": "Beth Wagner", "id": 20189, "credit_id": "52fe44e1c3a36847f80afa2b", "cast_id": 15, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 2}, {"name": "Paulo Costanzo", "character": "Rubin Carver", "id": 57133, "credit_id": "52fe44e1c3a36847f80afa2f", "cast_id": 16, "profile_path": "/7ALI5nYarzuLGjsQA3NuvTKvy9h.jpg", "order": 3}, {"name": "DJ Qualls", "character": "Kyle Edwards", "id": 132078, "credit_id": "52fe44e1c3a36847f80afa33", "cast_id": 17, "profile_path": "/foe0XuHIgVHsnrMBYlgYtsR3Z2V.jpg", "order": 4}, {"name": "Tom Green", "character": "Barry Manilow", "id": 36423, "credit_id": "52fe44e1c3a36847f80afa43", "cast_id": 20, "profile_path": "/bY7szfVBOedHUxkD3HHqa7MZ2ka.jpg", "order": 5}, {"name": "Rachel Blanchard", "character": "Tiffany Henderson", "id": 52478, "credit_id": "52fe44e1c3a36847f80afa47", "cast_id": 21, "profile_path": "/b8C355lKxrfwqHmCD3N22BjXMxz.jpg", "order": 6}, {"name": "Marla Sucharetza", "character": "Sperm Bank Nurse", "id": 21129, "credit_id": "52fe44e1c3a36847f80afa4b", "cast_id": 22, "profile_path": "/8aCV8dHLdjGUJjzVVAr4yYFnmzT.jpg", "order": 7}, {"name": "Anthony Rapp", "character": "Jacob", "id": 6165, "credit_id": "53696b23c3a3681238006726", "cast_id": 23, "profile_path": "/a9SBIDqSXkJaxJHqDaHXNkLhOUs.jpg", "order": 8}, {"name": "Andy Dick", "character": "Motel Clerk", "id": 43120, "credit_id": "53696b2dc3a36812120068cf", "cast_id": 24, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 9}, {"name": "Fred Ward", "character": "Earl Edwards", "id": 10430, "credit_id": "53696b37c3a3681241006cb0", "cast_id": 25, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 10}, {"name": "Ethan Suplee", "character": "Ed", "id": 824, "credit_id": "53696b40c3a3681220006a84", "cast_id": 26, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 11}, {"name": "Horatio Sanz", "character": "French Toast Guy", "id": 52117, "credit_id": "53696b4cc3a3681238006729", "cast_id": 27, "profile_path": "/rKaWVBB0PqyKuNwUfpOeRZ220oI.jpg", "order": 12}, {"name": "Rhoda Griffis", "character": "Tour Group Mom", "id": 51456, "credit_id": "53696b59c3a3681218006811", "cast_id": 28, "profile_path": "/zeogAlRpFrZJMfKXuwB7iCVVqJz.jpg", "order": 13}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80af9ef", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.7, "runtime": 93}, "115782": {"poster_path": "/ioI5pOOr5yWZAAZPEts5oSQwUrT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35931410, "overview": "The story of Steve Jobs' ascension from college dropout into one of the most revered creative entrepreneurs of the 20th century.", "video": false, "id": 115782, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Jobs", "tagline": "Some see what's possible, others change what's possible.", "vote_count": 466, "homepage": "http://thejobsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2357129", "adult": false, "backdrop_path": "/exb7qw4BPOwBr0qlxIsEKc3TCR.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Dillywood", "id": 12073}, {"name": "Five Star Institute", "id": 12074}, {"name": "Silver Reel", "id": 12075}], "release_date": "2013-08-16", "popularity": 1.63480593330103, "original_title": "Jobs", "budget": 12000000, "cast": [{"name": "Ashton Kutcher", "character": "Steve Jobs", "id": 18976, "credit_id": "52fe4b7ac3a36847f82059cb", "cast_id": 1, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Dermot Mulroney", "character": "Mike Markkula", "id": 20212, "credit_id": "52fe4b7ac3a36847f82059cf", "cast_id": 2, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 1}, {"name": "Amanda Crew", "character": "Julie", "id": 58370, "credit_id": "52fe4b7ac3a36847f82059eb", "cast_id": 8, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 2}, {"name": "James Woods", "character": "Jack Dudman", "id": 4512, "credit_id": "52fe4b7ac3a36847f82059d7", "cast_id": 4, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "Josh Gad", "character": "Steve Wozniak", "id": 54415, "credit_id": "52fe4b7ac3a36847f82059e7", "cast_id": 7, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 4}, {"name": "Matthew Modine", "character": "John Sculley", "id": 8654, "credit_id": "52fe4b7ac3a36847f82059d3", "cast_id": 3, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 5}, {"name": "Lukas Haas", "character": "Daniel Kottke", "id": 526, "credit_id": "52fe4b7bc3a36847f82059f3", "cast_id": 10, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 6}, {"name": "J.K. Simmons", "character": "Arthur Rock", "id": 18999, "credit_id": "52fe4b7bc3a36847f82059f7", "cast_id": 11, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 7}, {"name": "Ron Eldard", "character": "Rod Holt", "id": 12260, "credit_id": "52fe4b7bc3a36847f8205a03", "cast_id": 14, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 8}, {"name": "Elden Henson", "character": "Andy Hertzfeld", "id": 20220, "credit_id": "52fe4b7bc3a36847f8205a19", "cast_id": 22, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 9}, {"name": "Lesley Ann Warren", "character": "Clara Jobs", "id": 21818, "credit_id": "52fe4b7bc3a36847f82059fb", "cast_id": 12, "profile_path": "/4I5VPyumsxYGKST9b0FL2harYRK.jpg", "order": 10}, {"name": "Ahna O'Reilly", "character": "Chris-Ann Brennan", "id": 999605, "credit_id": "52fe4b7bc3a36847f82059ff", "cast_id": 13, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 11}, {"name": "David Denman", "character": "Al Alcorn", "id": 62562, "credit_id": "52fe4b7bc3a36847f8205a1d", "cast_id": 23, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 12}, {"name": "Kevin Dunn", "character": "Gil Amelio", "id": 14721, "credit_id": "52fe4b7ac3a36847f82059ef", "cast_id": 9, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 13}, {"name": "Nelson Franklin", "character": "Bill Atkinson", "id": 88928, "credit_id": "52fe4b7bc3a36847f8205a21", "cast_id": 24, "profile_path": "/lk2A1zZezjIrmiXD507Chr24SyJ.jpg", "order": 14}], "directors": [{"name": "Joshua Michael Stern", "department": "Directing", "job": "Director", "credit_id": "52fe4b7ac3a36847f82059dd", "profile_path": "/asACKiJSAZzhF7sDO1fFXlpyCG9.jpg", "id": 64139}], "vote_average": 6.1, "runtime": 128}, "9289": {"poster_path": "/q8NXuRN57k8ZDUU3wVOTvy685UG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The retelling of June 6, 1944, from the perspectives of the Germans, the US, Britain, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. \"For the Allies as well as the Germans, it will be the longest day\"", "video": false, "id": 9289, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Longest Day", "tagline": "This is the day that changed the world... When history held its breath.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056197", "adult": false, "backdrop_path": "/s5rP9nQ6fqvhkrpBEe4JrSRMmOf.jpg", "production_companies": [{"name": "Darryl F. Zanuck Productions", "id": 13630}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1962-09-25", "popularity": 0.781046230448817, "original_title": "The Longest Day", "budget": 10000000, "cast": [{"name": "John Wayne", "character": "Col. Benjamin Vandervoort", "id": 4165, "credit_id": "52fe44e2c3a36847f80afc55", "cast_id": 4, "profile_path": "/8I83wLVUil6tIe50yb82LdEggFR.jpg", "order": 0}, {"name": "Robert Mitchum", "character": "Brig. Gen. Norman Cota", "id": 10158, "credit_id": "52fe44e2c3a36847f80afc59", "cast_id": 5, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 1}, {"name": "Henry Fonda", "character": "Brig. Gen. Theodore Roosevelt jr.", "id": 4958, "credit_id": "52fe44e2c3a36847f80afc5d", "cast_id": 6, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 2}, {"name": "Sean Connery", "character": "Pvt. Flanagan", "id": 738, "credit_id": "52fe44e2c3a36847f80afc61", "cast_id": 7, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 3}, {"name": "Richard Burton", "character": "Flight Officer David Campbell", "id": 5341, "credit_id": "52fe44e2c3a36847f80afc89", "cast_id": 14, "profile_path": "/fRoBAQQP9sfnIYuqw546yFs3qKn.jpg", "order": 4}, {"name": "Red Buttons", "character": "Pvt. John Steele", "id": 7503, "credit_id": "52fe44e2c3a36847f80afc8d", "cast_id": 15, "profile_path": "/qftIHEdcpPgBnEe8P9OvMpIqiL3.jpg", "order": 5}, {"name": "Curd J\u00fcrgens", "character": "Maj. Gen. Gunther Blumentritt", "id": 10459, "credit_id": "52fe44e2c3a36847f80afc91", "cast_id": 16, "profile_path": "/psFeEFYhy1tUn9y4vLxF9eSKMK9.jpg", "order": 6}, {"name": "Gert Fr\u00f6be", "character": "Sgt. Kaffekanne", "id": 9908, "credit_id": "52fe44e2c3a36847f80afc95", "cast_id": 17, "profile_path": "/7sqA8qKg3N988PODnrhByiYOsEE.jpg", "order": 7}, {"name": "Bourvil", "character": "Le maire de Colleville", "id": 37131, "credit_id": "52fe44e2c3a36847f80afc9f", "cast_id": 19, "profile_path": "/9GVFzxUl828Cjs8in64pRCPmInv.jpg", "order": 8}, {"name": "Eddie Albert", "character": "Col. Thompson", "id": 11998, "credit_id": "52fe44e2c3a36847f80afca3", "cast_id": 20, "profile_path": "/1x9ovDtxBVNqBPEzSQ7qVU0ITgw.jpg", "order": 9}, {"name": "Paul Anka", "character": "U.S. Army Ranger", "id": 77260, "credit_id": "52fe44e2c3a36847f80afca7", "cast_id": 21, "profile_path": "/9Lu6nzIjiYPo7N3TX7QRovo7urJ.jpg", "order": 10}, {"name": "Arletty", "character": "Madame Barrault", "id": 25154, "credit_id": "52fe44e2c3a36847f80afcab", "cast_id": 22, "profile_path": "/zVjTgS65hQ0KYlyviMWY94vKhm8.jpg", "order": 11}, {"name": "Jean-Louis Barrault", "character": "Father Louis Roulland", "id": 25155, "credit_id": "52fe44e2c3a36847f80afcaf", "cast_id": 23, "profile_path": "/7kew2srWaW6zz6T1T6voEUYmI72.jpg", "order": 12}, {"name": "Richard Beymer", "character": "Pvt. Dutch Schultz", "id": 6679, "credit_id": "52fe44e2c3a36847f80afcb3", "cast_id": 24, "profile_path": "/9jOYQIu3jVAhMNMUKG50Q6TdEmv.jpg", "order": 13}, {"name": "Hans Christian Blech", "character": "Maj. Werner Pluskat", "id": 23694, "credit_id": "52fe44e2c3a36847f80afcb7", "cast_id": 25, "profile_path": "/plrW2sGmpPq6Uv6OEaDrokb1H5f.jpg", "order": 14}, {"name": "Wolfgang B\u00fcttner", "character": "Maj. Gen. Dr. Hans Speidel", "id": 32554, "credit_id": "52fe44e2c3a36847f80afcbb", "cast_id": 26, "profile_path": "/rTtIN7TrijR09t757Bzu3GhdX8A.jpg", "order": 15}, {"name": "Pauline Carton", "character": "Maid", "id": 543813, "credit_id": "52fe44e2c3a36847f80afcbf", "cast_id": 27, "profile_path": "/59YpqOppdLymi8UOupKm256LT0U.jpg", "order": 16}, {"name": "Ray Danton", "character": "Capt. Frank", "id": 33722, "credit_id": "52fe44e2c3a36847f80afcc3", "cast_id": 28, "profile_path": "/wPIIYwJMw6GcoM6CGtlqJtkOa1R.jpg", "order": 17}, {"name": "Irina Demick", "character": "Janine Boitard (as Irina Demich)", "id": 35586, "credit_id": "52fe44e2c3a36847f80afcc7", "cast_id": 29, "profile_path": "/cX68VgdLRjFEh4O4UO6VgadrTIC.jpg", "order": 18}, {"name": "Fred Dur", "character": "U.S. Army Ranger major", "id": 544753, "credit_id": "52fe44e2c3a36847f80afccb", "cast_id": 30, "profile_path": "/8T8QvBPqk0nNhq32QZ663h09gt5.jpg", "order": 19}, {"name": "Fabian", "character": "U.S. Army Ranger", "id": 39757, "credit_id": "52fe44e2c3a36847f80afccf", "cast_id": 31, "profile_path": "/2yC9VF8bpERMUIFZfCnH3oeJQLY.jpg", "order": 20}, {"name": "Mel Ferrer", "character": "Maj. Gen. Robert Haines", "id": 3754, "credit_id": "52fe44e2c3a36847f80afcd3", "cast_id": 32, "profile_path": "/9vYGnxKzPFWiyKbLnjQ9GvgaV2g.jpg", "order": 21}, {"name": "Steve Forrest", "character": "Capt. Harding", "id": 44998, "credit_id": "52fe44e2c3a36847f80afcd7", "cast_id": 33, "profile_path": "/4QhFcU5GgsyyHSjEEzDN7FCAUkD.jpg", "order": 22}, {"name": "Leo Genn", "character": "Brig. Gen. Edwin P. Parker Jr.", "id": 29655, "credit_id": "52fe44e2c3a36847f80afcdb", "cast_id": 34, "profile_path": "/eOAv0mHO140nh3KA78AJ7Agwx32.jpg", "order": 23}, {"name": "John Gregson", "character": "British Padre", "id": 90624, "credit_id": "52fe44e2c3a36847f80afcdf", "cast_id": 35, "profile_path": "/a4ZxtEL4XRSFMyllNxZAXop1cmx.jpg", "order": 24}, {"name": "Peter Lawford", "character": "Lord Lovat", "id": 4353, "credit_id": "52fe44e2c3a36847f80afce3", "cast_id": 36, "profile_path": "/93YIqKGUxyPSN3MNh2a7oXQZ1OC.jpg", "order": 25}, {"name": "Roddy McDowall", "character": "Pvt. Morris", "id": 7505, "credit_id": "52fe44e2c3a36847f80afce7", "cast_id": 37, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 26}, {"name": "Sal Mineo", "character": "Pvt. Martini", "id": 2770, "credit_id": "52fe44e2c3a36847f80afceb", "cast_id": 38, "profile_path": "/eqI5jNcsntOCtSjTUdacR72grlI.jpg", "order": 27}, {"name": "Edmond O'Brien", "character": "Gen. Raymond D. Barton", "id": 8254, "credit_id": "52fe44e2c3a36847f80afcef", "cast_id": 39, "profile_path": "/w3xvMmH5WfHZ5y7ldeIdX2oghVN.jpg", "order": 28}, {"name": "Robert Ryan", "character": "Brig. Gen. James M. Gavin", "id": 8253, "credit_id": "52fe44e2c3a36847f80afcf3", "cast_id": 40, "profile_path": "/xBAWG79UGCkchPPTbONycJiKW2g.jpg", "order": 29}, {"name": "Rod Steiger", "character": "Destroyer Commander", "id": 522, "credit_id": "52fe44e2c3a36847f80afcf7", "cast_id": 41, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 30}, {"name": "Tom Tryon", "character": "Lt. Wilson", "id": 30778, "credit_id": "52fe44e2c3a36847f80afcfb", "cast_id": 42, "profile_path": "/aWBrvnbtZfX5izRAP9aK0mR2VrP.jpg", "order": 31}, {"name": "Peter van Eyck", "character": "Lt. Col. Ocker (as Peter Van Eyck)", "id": 2567, "credit_id": "52fe44e2c3a36847f80afcff", "cast_id": 43, "profile_path": "/xXkWcMKcFSEiupgII0VMCt942Zz.jpg", "order": 32}, {"name": "Robert Wagner", "character": "U.S. Army Ranger", "id": 9208, "credit_id": "52fe44e2c3a36847f80afd03", "cast_id": 44, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 33}, {"name": "Stuart Whitman", "character": "Lt. Sheen", "id": 38761, "credit_id": "52fe44e2c3a36847f80afd07", "cast_id": 45, "profile_path": "/9v59bhYg3380R9ZqEHz4MA2SzLd.jpg", "order": 34}, {"name": "George Segal", "character": "U.S. Army Ranger", "id": 18364, "credit_id": "53ba79c3c3a3685ebd006da4", "cast_id": 52, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 35}, {"name": "Richard Todd", "character": "Maj. John Howard", "id": 20393, "credit_id": "53ba7a31c3a3685eba006de4", "cast_id": 53, "profile_path": "/asmQq1hLKEHiBQdQvvO4jXzfrNg.jpg", "order": 36}, {"name": "Jean Servais", "character": "RAdm. Janjard", "id": 14242, "credit_id": "53ba7a89c3a3685eb7006c5f", "cast_id": 54, "profile_path": "/tKzre5yY1u3nrhecp4QlgyyJ0uT.jpg", "order": 37}, {"name": "Wolfgang Preiss", "character": "Maj. Gen. Max Pemsel", "id": 14121, "credit_id": "53ba7b28c3a368072e004052", "cast_id": 55, "profile_path": "/vZotpPKrfDhjeU2CwxPlNnRCXCY.jpg", "order": 38}, {"name": "Leslie Phillips", "character": "RAF Officer Mac", "id": 10655, "credit_id": "53ba7ba6c3a3685eb7006c72", "cast_id": 56, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 39}, {"name": "Kenneth More", "character": "Capt. Colin Maud", "id": 67676, "credit_id": "53ba7bfbc3a368072e00405d", "cast_id": 57, "profile_path": "/1PLv8ezmZpSvvpTO1zFmjqaHdjY.jpg", "order": 40}, {"name": "Madeleine Renaud", "character": "Mother Superior", "id": 236906, "credit_id": "5460a2e60e0a263538000cba", "cast_id": 59, "profile_path": "/7syJARSdyeaVIIVgncT4sZvhkjX.jpg", "order": 41}, {"name": "Frank Finlay", "character": "Pvt. Coke (uncredited)", "id": 6637, "credit_id": "5460a3960e0a266177003b72", "cast_id": 60, "profile_path": "/esHCgg80H7gpUSClYclyHsksHij.jpg", "order": 42}, {"name": "Michael Hinz", "character": "Manfred Rommel (uncredited)", "id": 36028, "credit_id": "5460a40c0e0a266177003b8e", "cast_id": 61, "profile_path": "/xQwIL3NMSnO9vInw2BeAKkHUdqA.jpg", "order": 43}], "directors": [{"name": "Ken Annakin", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afc45", "profile_path": "/8oFZguwvvd1F3CETULi37Gq1ZtL.jpg", "id": 35318}, {"name": "Andrew Marton", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afc4b", "profile_path": null, "id": 57142}, {"name": "Bernhard Wicki", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afc9b", "profile_path": "/kWBdiWLhjdFDMV953W5xhFyHTxv.jpg", "id": 9894}], "vote_average": 6.9, "runtime": 178}, "9291": {"poster_path": "/ag6q9euZABqbHtbDhoRT9xEYltP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 190320568, "overview": "Pro quarter-back Paul Crewe (Sandler) and former college champion and coach Nate Scarboro (Reynolds) are doing in the same prison. Asked to put together a team of inmates to take on the guards, Crewe enlists the help of Scarboro to coach the inmates to victory in a football game 'fixed' to turn out quiet another way.", "video": false, "id": 9291, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Longest Yard", "tagline": "If you can't get out, get even.", "vote_count": 198, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398165", "adult": false, "backdrop_path": "/h0buWXMP9USXWvlodbuubDaMPGV.jpg", "production_companies": [{"name": "MTV Films", "id": 746}, {"name": "Paramount Pictures", "id": 4}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2005-05-19", "popularity": 0.730383465419022, "original_title": "The Longest Yard", "budget": 82000000, "cast": [{"name": "Adam Sandler", "character": "Paul Crewe", "id": 19292, "credit_id": "52fe44e2c3a36847f80afe25", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Chris Rock", "character": "Caretaker", "id": 2632, "credit_id": "52fe44e2c3a36847f80afe29", "cast_id": 2, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 1}, {"name": "Burt Reynolds", "character": "Coach Nate Scarborough", "id": 16475, "credit_id": "52fe44e2c3a36847f80afe2d", "cast_id": 3, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 2}, {"name": "Michael Irvin", "character": "Deacon Moss", "id": 69127, "credit_id": "52fe44e2c3a36847f80afe5b", "cast_id": 11, "profile_path": "/4RgPHUoMR0molaTAAN7MNGiwmbj.jpg", "order": 3}, {"name": "Nelly", "character": "Megget", "id": 69128, "credit_id": "52fe44e2c3a36847f80afe5f", "cast_id": 12, "profile_path": "/6RZIMUkqEDUszMIRzs5KzpxoNiV.jpg", "order": 4}, {"name": "Bill Goldberg", "character": "Battle", "id": 65236, "credit_id": "52fe44e2c3a36847f80afe63", "cast_id": 13, "profile_path": "/m0MTwieiGXtVdmWYO8IegQgnADB.jpg", "order": 5}, {"name": "Terry Crews", "character": "Cheeseburger Eddy", "id": 53256, "credit_id": "52fe44e2c3a36847f80afe67", "cast_id": 14, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 6}, {"name": "Bob Sapp", "character": "Switowski", "id": 60716, "credit_id": "52fe44e2c3a36847f80afe6b", "cast_id": 15, "profile_path": "/y11Km6dAfrBB4asSIvBewR8UocA.jpg", "order": 7}, {"name": "Nicholas Turturro", "character": "Brucie", "id": 32897, "credit_id": "52fe44e2c3a36847f80afe6f", "cast_id": 16, "profile_path": "/wEHGvoVgA7fEl93jmAYD3JRsX3b.jpg", "order": 8}, {"name": "Dalip Singh Rana", "character": "Turley", "id": 119154, "credit_id": "52fe44e2c3a36847f80afe73", "cast_id": 17, "profile_path": "/3czibTND6j2lVHlZ3JGKPMBslt.jpg", "order": 9}, {"name": "Lobo Sebastian", "character": "Torres", "id": 48071, "credit_id": "52fe44e2c3a36847f80afe77", "cast_id": 18, "profile_path": "/muw74umbo9s6KI22pxzc7RSNqi9.jpg", "order": 10}, {"name": "Steve Reevis", "character": "Baby Face Bob", "id": 4024, "credit_id": "52fe44e2c3a36847f80afe7b", "cast_id": 19, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 11}, {"name": "Tracy Morgan", "character": "Ms. Tucker", "id": 56903, "credit_id": "52fe44e2c3a36847f80afe7f", "cast_id": 20, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 12}, {"name": "William Fichtner", "character": "Captain Knauer", "id": 886, "credit_id": "52fe44e2c3a36847f80afe83", "cast_id": 21, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 13}, {"name": "Bill Romanowski", "character": "Guard Lambert", "id": 60954, "credit_id": "52fe44e2c3a36847f80afe87", "cast_id": 22, "profile_path": "/cXoVWp5m4eX1VedZqf3FbfKUOH4.jpg", "order": 14}, {"name": "Kevin Nash", "character": "Guard Engleheart", "id": 135352, "credit_id": "52fe44e2c3a36847f80afe8b", "cast_id": 23, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 15}, {"name": "Steve Austin", "character": "Guard Dunham", "id": 77120, "credit_id": "52fe44e2c3a36847f80afe8f", "cast_id": 24, "profile_path": "/brwLpcsqly66jchMWjrcrc93siI.jpg", "order": 16}, {"name": "Brian Bosworth", "character": "Guard Garner", "id": 87400, "credit_id": "52fe44e2c3a36847f80afe93", "cast_id": 25, "profile_path": "/1ehWbx2NieIiGz4iKQe5txEUeo8.jpg", "order": 17}, {"name": "Michael Papajohn", "character": "Guard Papajohn", "id": 20582, "credit_id": "52fe44e2c3a36847f80afe97", "cast_id": 26, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 18}, {"name": "Conrad Goode", "character": "Guard Webster", "id": 135353, "credit_id": "52fe44e2c3a36847f80afe9b", "cast_id": 27, "profile_path": "/fr9yZu07tHMRIXWH5h4HRkvBUcJ.jpg", "order": 19}, {"name": "Brandon Molale", "character": "Guard Malloy", "id": 63238, "credit_id": "52fe44e2c3a36847f80afe9f", "cast_id": 28, "profile_path": "/iOQFhKoCY6czA8OIudsHbOtJsC6.jpg", "order": 20}, {"name": "James Cromwell", "character": "Warden Hazen", "id": 2505, "credit_id": "52fe44e2c3a36847f80afea3", "cast_id": 29, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 21}, {"name": "Cloris Leachman", "character": "Lynette", "id": 9599, "credit_id": "52fe44e2c3a36847f80afea7", "cast_id": 30, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 22}, {"name": "Rob Schneider", "character": "Punky", "id": 60949, "credit_id": "52fe44e3c3a36847f80afeab", "cast_id": 31, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 23}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44e2c3a36847f80afe33", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.2, "runtime": 113}, "9292": {"poster_path": "/j9L6qA8HMgNrDzVyCukGeaCrRf6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17218080, "overview": "Eddie Hawkins, called Hudson Hawk has just been released from ten years of prison and is planning to spend the rest of his life honestly. But then the crazy Mayflower couple blackmail him to steal some of the works of Leonardo da Vinci. If he refuses, they threaten to kill his friend Tommy.", "video": false, "id": 9292, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Hudson Hawk", "tagline": "Danger is his middle name.", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0102070", "adult": false, "backdrop_path": "/nK3J2ZMLVGL6iKiK0sxEe71Zl9T.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1991-05-23", "popularity": 0.578739401502857, "original_title": "Hudson Hawk", "budget": 65000000, "cast": [{"name": "Bruce Willis", "character": "Eddie 'Hudson Hawk' Hawkins", "id": 62, "credit_id": "52fe44e3c3a36847f80afed9", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Danny Aiello", "character": "Tommy Five-Tone", "id": 1004, "credit_id": "52fe44e3c3a36847f80afedd", "cast_id": 2, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 1}, {"name": "Andie MacDowell", "character": "Anna Baragli", "id": 1533, "credit_id": "52fe44e3c3a36847f80afee1", "cast_id": 3, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 2}, {"name": "James Coburn", "character": "George Kaplan", "id": 5563, "credit_id": "52fe44e3c3a36847f80afee5", "cast_id": 4, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 3}, {"name": "Richard E. Grant", "character": "Darwin Mayflower", "id": 20766, "credit_id": "52fe44e3c3a36847f80aff31", "cast_id": 17, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 4}, {"name": "Sandra Bernhard", "character": "Minerva Mayflower", "id": 3664, "credit_id": "52fe44e3c3a36847f80aff35", "cast_id": 18, "profile_path": "/nYCnCtbbWjrMsmbanQLGhRM3FXh.jpg", "order": 5}, {"name": "David Caruso", "character": "Kit Kat", "id": 16560, "credit_id": "52fe44e3c3a36847f80aff39", "cast_id": 19, "profile_path": "/i251LGpMkOeOqRmqlCpKkNoGdni.jpg", "order": 6}, {"name": "Frank Stallone", "character": "Cesar Mario", "id": 39780, "credit_id": "52fe44e3c3a36847f80aff3d", "cast_id": 20, "profile_path": "/3TrGzXf58Yt4NdzOjWOvZLf6q0R.jpg", "order": 7}], "directors": [{"name": "Michael Lehmann", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80afeeb", "profile_path": "/rM0KmE5Fr9zAi5gzQv9bc78Q1GX.jpg", "id": 7145}], "vote_average": 6.0, "runtime": 100}, "9293": {"poster_path": "/niyDbG3HpGnLvLM3GT1xNL6i9Rp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three ex-girlfriends of a serial cheater set up their former lover to fall for the new girl in town so they can watch him get his heart broken.", "video": false, "id": 9293, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "John Tucker Must Die", "tagline": "Don't Get Mad, Get Even", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455967", "adult": false, "backdrop_path": "/jkUt8j9NJsbtnGcVvZ1dzOadY23.jpg", "production_companies": [{"name": "Major Studio Partners", "id": 445}, {"name": "John US Productions", "id": 7742}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Landscape Entertainment", "id": 7741}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2006-07-27", "popularity": 0.898436658075117, "original_title": "John Tucker Must Die", "budget": 0, "cast": [{"name": "Jesse Metcalfe", "character": "John Tucker", "id": 57171, "credit_id": "52fe44e3c3a36847f80aff67", "cast_id": 1, "profile_path": "/vhxW5SvFuMBVG3Vk7TrE8NoqICz.jpg", "order": 0}, {"name": "Brittany Snow", "character": "Kate", "id": 29221, "credit_id": "52fe44e3c3a36847f80aff6b", "cast_id": 2, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 1}, {"name": "Sophia Bush", "character": "Beth", "id": 54830, "credit_id": "52fe44e3c3a36847f80aff6f", "cast_id": 4, "profile_path": "/kpC7qYgC6R3qIbISc0vaaf9Nx4g.jpg", "order": 2}, {"name": "Arielle Kebbel", "character": "Carrie", "id": 20373, "credit_id": "52fe44e3c3a36847f80aff73", "cast_id": 5, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 3}, {"name": "Ashanti", "character": "Heather", "id": 57172, "credit_id": "52fe44e3c3a36847f80affad", "cast_id": 15, "profile_path": "/lN5YrFFhCmxvX22Ts9hmzTMYblY.jpg", "order": 4}, {"name": "Penn Badgley", "character": "Scott", "id": 110927, "credit_id": "52fe44e3c3a36847f80affb1", "cast_id": 16, "profile_path": "/key2cKLsZYLyV03b8NMdmvJjBe9.jpg", "order": 5}, {"name": "Jenny McCarthy", "character": "Lori", "id": 35597, "credit_id": "52fe44e3c3a36847f80affb5", "cast_id": 17, "profile_path": "/itsSilp7prfi3lKQMFn1p5J6hWI.jpg", "order": 6}, {"name": "Kevin McNulty", "character": "Basketball Coach", "id": 27111, "credit_id": "52fe44e3c3a36847f80affb9", "cast_id": 18, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 7}, {"name": "Taylor Kitsch", "character": "Justin", "id": 60900, "credit_id": "52fe44e3c3a36847f80affbd", "cast_id": 19, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 8}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80aff79", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.7, "runtime": 89}, "9294": {"poster_path": "/pa8IWMEYaYDDr5hEaZflOKW8gjc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104636382, "overview": "An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.", "video": false, "id": 9294, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Phenomenon", "tagline": "Some things in life just can't be explained.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117333", "adult": false, "backdrop_path": "/dhzAVfv8ZGxC7e0YeejsFsFOhIA.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1996-07-05", "popularity": 0.820482340279621, "original_title": "Phenomenon", "budget": 32000000, "cast": [{"name": "John Travolta", "character": "George Malley", "id": 8891, "credit_id": "52fe44e3c3a36847f80afff9", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Kyra Sedgwick", "character": "Lace Pennamin", "id": 26467, "credit_id": "52fe44e3c3a36847f80afffd", "cast_id": 3, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Nate Pope", "id": 2178, "credit_id": "52fe44e3c3a36847f80b0001", "cast_id": 4, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Doc Brunder", "id": 3087, "credit_id": "52fe44e3c3a36847f80b0005", "cast_id": 5, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "Jeffrey DeMunn", "character": "Prof. John Ringold", "id": 12645, "credit_id": "52fe44e3c3a36847f80b0039", "cast_id": 16, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 4}, {"name": "Richard Kiley", "character": "Dr. Wellin", "id": 26660, "credit_id": "52fe44e3c3a36847f80b003d", "cast_id": 17, "profile_path": "/jqyhpE74uT5F2H1Ey8LllbKpdAK.jpg", "order": 5}, {"name": "David Gallagher", "character": "Al Pennamin", "id": 59451, "credit_id": "52fe44e3c3a36847f80b0041", "cast_id": 18, "profile_path": "/hae6O5Piq42vqhMW54laujYdejD.jpg", "order": 6}, {"name": "Ashley Buccille", "character": "Glory Pennamin", "id": 106976, "credit_id": "52fe44e3c3a36847f80b0045", "cast_id": 19, "profile_path": "/nZEBfTk32jU8rBHmHn85X2roZsH.jpg", "order": 7}, {"name": "Tony Genaro", "character": "Tito", "id": 166606, "credit_id": "52fe44e3c3a36847f80b0049", "cast_id": 20, "profile_path": "/arYAS4M7YUmIlfx7uGVvB7R38OD.jpg", "order": 8}, {"name": "Sean O'Bryan", "character": "Banes", "id": 33836, "credit_id": "52fe44e3c3a36847f80b004d", "cast_id": 21, "profile_path": "/doVNkZLo1aqfRVfUymkjuTpyUYa.jpg", "order": 9}, {"name": "Michael Milhoan", "character": "Jimmy", "id": 154295, "credit_id": "52fe44e3c3a36847f80b0051", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Troy Evans", "character": "Roger", "id": 31006, "credit_id": "52fe44e3c3a36847f80b0055", "cast_id": 23, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 11}, {"name": "Bruce A. Young", "character": "FBI Agent Jack Hatch", "id": 4943, "credit_id": "52fe44e3c3a36847f80b0059", "cast_id": 24, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 12}, {"name": "Vyto Ruginis", "character": "Ted Rhome", "id": 61216, "credit_id": "52fe44e3c3a36847f80b005d", "cast_id": 25, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 13}, {"name": "Brent Spiner", "character": "Dr. Bob Niedorf", "id": 1213786, "credit_id": "52fe44e3c3a36847f80b0061", "cast_id": 26, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 14}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80afff5", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.1, "runtime": 123}, "1103": {"poster_path": "/tDM7KAAPlyqCsFEX6mQQ5B0mg2Y.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50000000, "overview": "In 1997, the island of Manhattan has been walled off and turned into a giant maximum security prison within which the country's worst criminals are left to form their own anarchic society. However, when the President of the United States crash lands on the island, the authorities turn to a former soldier and current convict, Snake Plissken, to rescue him.", "video": false, "id": 1103, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Escape from New York", "tagline": "1997. New York City is now a maximum security prison. Breaking out is impossible. Breaking in is insane.", "vote_count": 158, "homepage": "http://www.theofficialjohncarpenter.com/pages/themovies/ny/ny.html", "belongs_to_collection": {"backdrop_path": "/u3tHIjkTj8C2gHOTFmzZgEXOQxp.jpg", "poster_path": "/8Zih8QGPJNXUuws0fIZmjxjs2Su.jpg", "id": 115838, "name": "Escape From ... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082340", "adult": false, "backdrop_path": "/iSi3OJKSPNknaxSvjpOa6c38Xgn.jpg", "production_companies": [{"name": "AVCO Embassy Pictures", "id": 494}, {"name": "Goldcrest Films International", "id": 500}, {"name": "International Film Investors", "id": 502}, {"name": "City Film", "id": 664}], "release_date": "1981-06-24", "popularity": 1.03347011186369, "original_title": "Escape from New York", "budget": 6000000, "cast": [{"name": "Kurt Russell", "character": "Snake Plissken", "id": 6856, "credit_id": "52fe42e7c3a36847f802bc09", "cast_id": 11, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Lee Van Cleef", "character": "Police Commissioner Bob Hauk", "id": 4078, "credit_id": "52fe42e7c3a36847f802bc0d", "cast_id": 12, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 1}, {"name": "Ernest Borgnine", "character": "Cabbie", "id": 7502, "credit_id": "52fe42e7c3a36847f802bc11", "cast_id": 13, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 2}, {"name": "Donald Pleasence", "character": "President of the United States", "id": 9221, "credit_id": "52fe42e7c3a36847f802bc15", "cast_id": 14, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 3}, {"name": "Isaac Hayes", "character": "The Duke of New York", "id": 6542, "credit_id": "52fe42e7c3a36847f802bc19", "cast_id": 15, "profile_path": "/4igh7emwzt4xBLw1r05gCUHxwzD.jpg", "order": 4}, {"name": "Harry Dean Stanton", "character": "Harold 'Brain' Helman", "id": 5048, "credit_id": "52fe42e7c3a36847f802bc1d", "cast_id": 16, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 5}, {"name": "Adrienne Barbeau", "character": "Maggie", "id": 11782, "credit_id": "52fe42e7c3a36847f802bc21", "cast_id": 17, "profile_path": "/vKZpJlrGLK4qFTTnWFa6LMH2FMc.jpg", "order": 6}, {"name": "Tom Atkins", "character": "Rehme", "id": 11784, "credit_id": "52fe42e7c3a36847f802bc25", "cast_id": 18, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 7}, {"name": "Frank Doubleday", "character": "Romero", "id": 15449, "credit_id": "52fe42e7c3a36847f802bc29", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "John Strobel", "character": "Cronenberg", "id": 15450, "credit_id": "52fe42e7c3a36847f802bc2d", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Season Hubley", "character": "Girl in Chock Full O'Nuts", "id": 47456, "credit_id": "52fe42e7c3a36847f802bc49", "cast_id": 25, "profile_path": "/utFwpdBfrBujcB4y087ZkmGizQB.jpg", "order": 10}, {"name": "Charles Cyphers", "character": "Secretary of State", "id": 11786, "credit_id": "52fe42e7c3a36847f802bc4d", "cast_id": 26, "profile_path": "/pglMfoHMVEcziDlnl33DrZjRSM3.jpg", "order": 11}, {"name": "John Cothran, Jr.", "character": "Gypsy #1", "id": 9785, "credit_id": "52fe42e7c3a36847f802bc51", "cast_id": 27, "profile_path": "/bbm2ihEzSwu98YCEZSaYOfiGhEH.jpg", "order": 12}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802bc39", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.4, "runtime": 99}, "9296": {"poster_path": "/jU6Ay23RBpSsu82SP5eEhcQowE5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The career of a disillusioned producer, who is desperate for a hit, is endangered when his star walks off the film set. Forced to think fast, the producer decides to digitally create an actress \"Simone\" to sub for the star--the first totally believable synthetic actress.", "video": false, "id": 9296, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "S1m0ne", "tagline": "", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0258153", "adult": false, "backdrop_path": "/mpV46pUGLyQNkd2ouYJhuSn9xLu.jpg", "production_companies": [{"name": "Niccol Films", "id": 27465}, {"name": "New Line Cinema", "id": 12}], "release_date": "2002-08-23", "popularity": 0.222149492692084, "original_title": "S1m0ne", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Viktor Taransky", "id": 1158, "credit_id": "52fe44e3c3a36847f80b0127", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Rachel Roberts", "character": "Simone", "id": 35198, "credit_id": "52fe44e3c3a36847f80b012b", "cast_id": 2, "profile_path": "/70ICch4alwBoHAYygFzmIi6cwcE.jpg", "order": 1}, {"name": "Catherine Keener", "character": "Elaine Christian", "id": 2229, "credit_id": "52fe44e3c3a36847f80b012f", "cast_id": 3, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 2}, {"name": "Evan Rachel Wood", "character": "Lainey Christian Taransky", "id": 38940, "credit_id": "52fe44e3c3a36847f80b0133", "cast_id": 4, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 3}, {"name": "Jay Mohr", "character": "Hal Sinclair", "id": 12217, "credit_id": "52fe44e3c3a36847f80b0137", "cast_id": 5, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 4}, {"name": "Winona Ryder", "character": "Nicola Anders", "id": 1920, "credit_id": "52fe44e3c3a36847f80b013b", "cast_id": 6, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 5}, {"name": "Jason Schwartzman", "character": "Milton", "id": 17881, "credit_id": "52fe44e3c3a36847f80b013f", "cast_id": 7, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 6}, {"name": "Elias Koteas", "character": "Hank Alano", "id": 13550, "credit_id": "52fe44e3c3a36847f80b0143", "cast_id": 8, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 7}, {"name": "Rebecca Romijn", "character": "Faith", "id": 11008, "credit_id": "52fe44e3c3a36847f80b0147", "cast_id": 9, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 8}, {"name": "James Gleason", "character": "Reporter", "id": 1341053, "credit_id": "53c3b18e0e0a26157c00c14e", "cast_id": 19, "profile_path": "/6FlPgVSga2PSIMUgBEqcPnIWDCf.jpg", "order": 9}, {"name": "Christopher Neiman", "character": "Premiere Audience Member", "id": 1219502, "credit_id": "53c3b1d40e0a26158f00bec7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jolie Jenkins", "character": "Premiere Audience Member", "id": 51753, "credit_id": "53c3b20a0e0a26158900c62e", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Joel Heyman", "character": "Male", "id": 133357, "credit_id": "54807d3e9251416e7b002939", "cast_id": 40, "profile_path": "/kdXW8kNVLz5EV7vvymf2iFt9W3o.jpg", "order": 12}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80b014d", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 5.3, "runtime": 117}, "9297": {"poster_path": "/m0gpGljVAKAHM36BLX0RR4cxrNl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73661010, "overview": "Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.", "video": false, "id": 9297, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Monster House", "tagline": "The House is . . . ALIVE!", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0385880", "adult": false, "backdrop_path": "/xCPq0OXDs7LyFTzOCxanjkyr36l.jpg", "production_companies": [{"name": "ImageMovers", "id": 11395}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2006-08-23", "popularity": 0.708761399411459, "original_title": "Monster House", "budget": 75000000, "cast": [{"name": "Ryan Newman", "character": "Little Girl (voice)", "id": 57189, "credit_id": "52fe44e3c3a36847f80b01b1", "cast_id": 1, "profile_path": "/rJHEGn3vxmC6bjGws7HW9gGH80v.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Nebbercracker (voice)", "id": 884, "credit_id": "52fe44e3c3a36847f80b01b5", "cast_id": 2, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "Mitchel Musso", "character": "Douglas 'DJ' Hartner (voice)", "id": 51583, "credit_id": "52fe44e3c3a36847f80b01b9", "cast_id": 3, "profile_path": "/rMmElJ9TwAFfEAW3Q1ET7Ioi0Fp.jpg", "order": 2}, {"name": "Sam Lerner", "character": "Chowder (voice)", "id": 57191, "credit_id": "52fe44e3c3a36847f80b01bd", "cast_id": 4, "profile_path": "/oypr4XkHHdQphL6XeR78MXMHAL1.jpg", "order": 3}, {"name": "Spencer Locke", "character": "Jenny Bennett (voice)", "id": 57192, "credit_id": "52fe44e3c3a36847f80b01c1", "cast_id": 5, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 4}, {"name": "Catherine O'Hara", "character": "Mom (voice)", "id": 11514, "credit_id": "52fe44e3c3a36847f80b01e9", "cast_id": 12, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 5}, {"name": "Fred Willard", "character": "Dad (voice)", "id": 20753, "credit_id": "52fe44e3c3a36847f80b01ed", "cast_id": 13, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 6}, {"name": "Woody Schultz", "character": "Paramedic #1 (voice)", "id": 42288, "credit_id": "52fe44e3c3a36847f80b01f1", "cast_id": 14, "profile_path": "/AjzkMGiWGnG27W1JTDWDGYn8TP.jpg", "order": 7}, {"name": "Ian McConnel", "character": "Paramedic #2 (voice)", "id": 1077841, "credit_id": "52fe44e3c3a36847f80b01f5", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Maggie Gyllenhaal", "character": "Zee (voice)", "id": 1579, "credit_id": "52fe44e3c3a36847f80b01f9", "cast_id": 16, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 9}, {"name": "Jason Lee", "character": "Bones (voice)", "id": 11662, "credit_id": "52fe44e3c3a36847f80b01fd", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 10}, {"name": "Kevin James", "character": "Officer Landers (voice)", "id": 32895, "credit_id": "52fe44e3c3a36847f80b0201", "cast_id": 18, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 11}, {"name": "Nick Cannon", "character": "Officer Lister (voice)", "id": 36811, "credit_id": "52fe44e3c3a36847f80b0205", "cast_id": 19, "profile_path": "/meQ69JTifJ8nGrcvZUczWcoeryM.jpg", "order": 12}, {"name": "Jon Heder", "character": "Reginald 'Skull' Skulinski (voice)", "id": 53926, "credit_id": "52fe44e3c3a36847f80b0209", "cast_id": 20, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 13}, {"name": "Kathleen Turner", "character": "Constance (voice)", "id": 3391, "credit_id": "52fe44e3c3a36847f80b020d", "cast_id": 21, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 14}, {"name": "Erik Walker", "character": "Bully #1 (voice)", "id": 61403, "credit_id": "52fe44e3c3a36847f80b0211", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Matthew Fahey", "character": "Bully #2 (voice)", "id": 198812, "credit_id": "52fe44e3c3a36847f80b0215", "cast_id": 23, "profile_path": null, "order": 16}], "directors": [{"name": "Gil Kenan", "department": "Directing", "job": "Director", "credit_id": "52fe44e3c3a36847f80b01c7", "profile_path": "/ea6Bo4Ad1FTxeyIsGNxWSFCKuMj.jpg", "id": 57193}], "vote_average": 6.0, "runtime": 91}, "9298": {"poster_path": "/7uhKivL5sy9IL0aR8W4QeD9Et3M.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Ali G unwittingly becomes a pawn in the evil Chancellor's plot to overthrow the Prime Minister of Great Britain. However, instead of bringing the Prime Minister down, Ali is embraced by the nation as the voice of youth and 'realness', making the Prime Minister and his government more popular than ever.", "video": false, "id": 9298, "genres": [{"id": 35, "name": "Comedy"}], "title": "Ali G Indahouse", "tagline": "Me iz introducin a white paper.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0284837", "adult": false, "backdrop_path": "/2bt4g7ZMxuNvVT1PnGf0zRZR94I.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "WT2 Productions", "id": 10462}], "release_date": "2002-03-21", "popularity": 0.731614931015528, "original_title": "Ali G Indahouse", "budget": 0, "cast": [{"name": "Sacha Baron Cohen", "character": "Ali G / Borat", "id": 6730, "credit_id": "52fe44e3c3a36847f80b0241", "cast_id": 1, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Michael Gambon", "character": "Prime Minister", "id": 5658, "credit_id": "53c60ee70e0a267fe5001c09", "cast_id": 21, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 1}, {"name": "Charles Dance", "character": "Deputy Prime Minister David Carlton", "id": 4391, "credit_id": "53c60efc0e0a267ffe001b36", "cast_id": 22, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 2}, {"name": "Kellie Bright", "character": "Julie", "id": 80419, "credit_id": "53c60f0a0e0a267ff4001c38", "cast_id": 23, "profile_path": null, "order": 3}, {"name": "Martin Freeman", "character": "Richard \"Ricky C\" Cunningham", "id": 7060, "credit_id": "53c60f180e0a267ff7001a69", "cast_id": 24, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 4}, {"name": "Rhona Mitra", "character": "Kate Hedges", "id": 25702, "credit_id": "53c60f350e0a267fed001b68", "cast_id": 25, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 5}, {"name": "Barbara New", "character": "Nan", "id": 292249, "credit_id": "53c60f400e0a267fed001b6a", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Emilio Rivera", "character": "Rico", "id": 53257, "credit_id": "52fe44e3c3a36847f80b0245", "cast_id": 2, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 7}, {"name": "Gina La Piana", "character": "Hoochie 1", "id": 57197, "credit_id": "52fe44e3c3a36847f80b0249", "cast_id": 3, "profile_path": null, "order": 8}, {"name": "Dana de Celis", "character": "Hoochie 2", "id": 57198, "credit_id": "52fe44e3c3a36847f80b024d", "cast_id": 4, "profile_path": null, "order": 9}], "directors": [{"name": "Mark Mylod", "department": "Directing", "job": "Director", "credit_id": "52fe44e4c3a36847f80b0253", "profile_path": "/e8besvnWIcbvD8NLjcsi5jmxxOe.jpg", "id": 57199}], "vote_average": 6.3, "runtime": 85}, "9312": {"poster_path": "/bdXWixjWVA7Y03PvW74xufrROiJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122000000, "overview": "For nine generations an evil sorcerer has been victorious in hand-to-hand battle against his mortal enemies. If he wins a tenth Mortal Kombat tournament, desolation and evil will reign over the multiverse forever. To save Earth, three warriors must overcome seemingly insurmountable odds, their own inner demons, and superhuman foes in this action/adventure movie based on one of the most popular video games of all time.", "video": false, "id": 9312, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Mortal Kombat", "tagline": "Nothing In This World Has Prepared You For This.", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qD3efz57VGNywAN4lTvgz3FHnBb.jpg", "poster_path": "/quwcbufZZiTMUjuiGSLKBkWWaga.jpg", "id": 9818, "name": "Mortal Kombat Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113855", "adult": false, "backdrop_path": "/mOIvM0pQA7J9I0Caai0zTPxnE3f.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Threshold Entertainment", "id": 4174}], "release_date": "1995-08-18", "popularity": 0.612254177456663, "original_title": "Mortal Kombat", "budget": 18000000, "cast": [{"name": "Christopher Lambert", "character": "Lord Rayden", "id": 38559, "credit_id": "52fe44e5c3a36847f80b086f", "cast_id": 1, "profile_path": "/sIl2F9LDTjfnAVBxEG5CTtZGuJU.jpg", "order": 0}, {"name": "Robin Shou", "character": "Liu Kang", "id": 57250, "credit_id": "52fe44e5c3a36847f80b0873", "cast_id": 2, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 1}, {"name": "Linden Ashby", "character": "Johnny Cage", "id": 57251, "credit_id": "52fe44e5c3a36847f80b0877", "cast_id": 3, "profile_path": "/sKcRZFXk4o9Y2373s9oofm93NRU.jpg", "order": 2}, {"name": "Cary-Hiroyuki Tagawa", "character": "Shang Tsung", "id": 11398, "credit_id": "52fe44e5c3a36847f80b087b", "cast_id": 4, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 3}, {"name": "Bridgette Wilson", "character": "Sonya Blade", "id": 20751, "credit_id": "52fe44e5c3a36847f80b087f", "cast_id": 5, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 4}, {"name": "Talisa Soto", "character": "Princess Kitana", "id": 10680, "credit_id": "52fe44e5c3a36847f80b0883", "cast_id": 6, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 5}, {"name": "Trevor Goddard", "character": "Kano", "id": 57252, "credit_id": "52fe44e5c3a36847f80b0887", "cast_id": 7, "profile_path": "/5qctMNVCJeJ8RO6W03GGDeRNxJG.jpg", "order": 6}, {"name": "Chris Casamassa", "character": "Scorpion", "id": 57253, "credit_id": "52fe44e5c3a36847f80b088b", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Fran\u00e7ois Petit", "character": "Sub-Zero", "id": 57254, "credit_id": "52fe44e6c3a36847f80b088f", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Keith Cooke", "character": "Reptile", "id": 57255, "credit_id": "52fe44e6c3a36847f80b0893", "cast_id": 10, "profile_path": "/tHpVz33IXT1gOHpp6I4kvnPUkse.jpg", "order": 9}, {"name": "Ed Boon", "character": "Scorpion (Voice)", "id": 57256, "credit_id": "54dacd8ec3a368310200065b", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0899", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.7, "runtime": 101}, "9313": {"poster_path": "/mNbLk9qdBMnzBFWBrjy3Nuw9Ovi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe.", "video": false, "id": 9313, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "The Man in the Iron Mask", "tagline": "For the honor of a king. And the destiny of a country. All for one.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120744", "adult": false, "backdrop_path": "/reKm0xvh7FkuCfNL4eDRmTCn7q0.jpg", "production_companies": [{"name": "United Artists Corporation", "id": 8213}], "release_date": "1998-03-12", "popularity": 0.583966456573637, "original_title": "The Man in the Iron Mask", "budget": 0, "cast": [{"name": "Leonardo DiCaprio", "character": "King Louis XIV / Philippe", "id": 6193, "credit_id": "52fe44e6c3a36847f80b0935", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Aramis", "id": 16940, "credit_id": "52fe44e6c3a36847f80b0939", "cast_id": 2, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "G\u00e9rard Depardieu", "character": "Porthos", "id": 16927, "credit_id": "52fe44e6c3a36847f80b093d", "cast_id": 4, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 2}, {"name": "Gabriel Byrne", "character": "D'Artagnan", "id": 5168, "credit_id": "52fe44e6c3a36847f80b0941", "cast_id": 5, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 3}, {"name": "John Malkovich", "character": "Athos", "id": 6949, "credit_id": "52fe44e6c3a36847f80b0987", "cast_id": 18, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Anne Parillaud", "character": "Queen Mother Anne", "id": 57298, "credit_id": "52fe44e6c3a36847f80b098b", "cast_id": 19, "profile_path": "/vk3C8it70D5xESQz47821xhWkAU.jpg", "order": 5}, {"name": "Judith Godr\u00e8che", "character": "Christine", "id": 73937, "credit_id": "52fe44e6c3a36847f80b098f", "cast_id": 20, "profile_path": "/mbIrbBymdMVZIaNv0bDGUXKV7p7.jpg", "order": 6}, {"name": "Edward Atterton", "character": "Lt. Andre", "id": 38331, "credit_id": "52fe44e6c3a36847f80b0993", "cast_id": 21, "profile_path": "/z8hU2rgSYrhVuLdhQArlKPfrzCy.jpg", "order": 7}, {"name": "Peter Sarsgaard", "character": "Raoul", "id": 133, "credit_id": "52fe44e6c3a36847f80b0997", "cast_id": 22, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 8}, {"name": "Hugh Laurie", "character": "King's Advisor", "id": 41419, "credit_id": "52fe44e6c3a36847f80b099b", "cast_id": 23, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 9}, {"name": "David Lowe", "character": "King's Advisor", "id": 180906, "credit_id": "52fe44e6c3a36847f80b099f", "cast_id": 24, "profile_path": "/ljFTdKSae3dhdnijz1lyOitdNpz.jpg", "order": 10}, {"name": "Brigitte Boucher", "character": "Madame Rotund", "id": 553208, "credit_id": "52fe44e6c3a36847f80b09a3", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Matthew Jocelyn", "character": "Assassin", "id": 553209, "credit_id": "52fe44e6c3a36847f80b09a7", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Karine Belly", "character": "Wench", "id": 146490, "credit_id": "52fe44e6c3a36847f80b09ab", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Emmanuel Guttierez", "character": "King's Friend", "id": 553210, "credit_id": "52fe44e6c3a36847f80b09af", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Christian Erickson", "character": "Ballroom Guard", "id": 45849, "credit_id": "52fe44e6c3a36847f80b09b3", "cast_id": 29, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 15}, {"name": "Fran\u00e7ois Montagut", "character": "Blond Musketeer", "id": 105355, "credit_id": "52fe44e6c3a36847f80b09b7", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Andrew Wallace", "character": "Peasant Boy", "id": 553211, "credit_id": "52fe44e6c3a36847f80b09bb", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "C\u00e9cile Auclert", "character": "Serving Woman", "id": 553212, "credit_id": "52fe44e6c3a36847f80b09bf", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Sonia Backers", "character": "Serving Woman", "id": 553213, "credit_id": "52fe44e6c3a36847f80b09c3", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Vincent Nemeth", "character": "Customer", "id": 230078, "credit_id": "52fe44e6c3a36847f80b09c7", "cast_id": 34, "profile_path": "/e2uRhuzOopokatHFYFHap0r72af.jpg", "order": 20}, {"name": "Joe Sheridan", "character": "Fortress Keeper", "id": 12983, "credit_id": "52fe44e6c3a36847f80b09cb", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Olivier H\u00e9mon", "character": "Fortress Head Guard", "id": 133735, "credit_id": "52fe44e6c3a36847f80b09cf", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Michael Morris", "character": "Bastille Gate Guard", "id": 212390, "credit_id": "52fe44e6c3a36847f80b09d3", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Emmanuel Patron", "character": "Fortress Guard", "id": 553214, "credit_id": "52fe44e6c3a36847f80b09d7", "cast_id": 38, "profile_path": "/k9qQ7h8YGRHUZf2XRG45SafdQMS.jpg", "order": 24}, {"name": "Leonor Varela", "character": "Ballroom Beauty", "id": 10839, "credit_id": "52fe44e6c3a36847f80b09db", "cast_id": 39, "profile_path": "/rXn3ruoRRSplCyeNXs7z9BMxHAb.jpg", "order": 25}, {"name": "Michael Hofland", "character": "Ruffian", "id": 180969, "credit_id": "52fe44e6c3a36847f80b09df", "cast_id": 40, "profile_path": null, "order": 26}, {"name": "Laura Fraser", "character": "Bedroom Beauty", "id": 42279, "credit_id": "52fe44e6c3a36847f80b09e3", "cast_id": 41, "profile_path": "/umgqZQNAqE78jFfg1H1nPtaO41Y.jpg", "order": 27}, {"name": "Brigitte Auber", "character": "Queen Mother's Attendant", "id": 5183, "credit_id": "52fe44e6c3a36847f80b09e7", "cast_id": 42, "profile_path": "/yopJUGz9G5bbJKMRQnC6R27SXtc.jpg", "order": 28}, {"name": "Jean-Pol Brissart", "character": "Monk", "id": 553215, "credit_id": "52fe44e6c3a36847f80b09eb", "cast_id": 43, "profile_path": null, "order": 29}, {"name": "Fran\u00e7ois Guillaume", "character": "Ponceau (uncredited)", "id": 19375, "credit_id": "52fe44e6c3a36847f80b09ef", "cast_id": 44, "profile_path": null, "order": 30}], "directors": [{"name": "Randall Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0947", "profile_path": "/sHaZ1TAca9o8f4m8obTOt4p7tlg.jpg", "id": 2460}], "vote_average": 6.0, "runtime": 132}, "9314": {"poster_path": "/asqIqgy3lywRhrVv6WCdcofNWH1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "George Orwell's novel of a totalitarian future society in which a man whose daily work is rewriting history tries to rebel by falling in love.", "video": false, "id": 9314, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "1984", "tagline": "George Orwell's Terrifying Vision Comes To The Screen.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087803", "adult": false, "backdrop_path": "/7BT2nyL1UgvWnpMHCB6FxJUFzTR.jpg", "production_companies": [{"name": "Umbrella-Rosenblum Film Production", "id": 9998}], "release_date": "1984-10-10", "popularity": 0.749711044911128, "original_title": "Nineteen Eighty-Four", "budget": 0, "cast": [{"name": "John Hurt", "character": "Winston Smith", "id": 5049, "credit_id": "52fe44e6c3a36847f80b0a23", "cast_id": 1, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 0}, {"name": "Richard Burton", "character": "O'Brien", "id": 5341, "credit_id": "52fe44e6c3a36847f80b0a27", "cast_id": 2, "profile_path": "/fRoBAQQP9sfnIYuqw546yFs3qKn.jpg", "order": 1}, {"name": "Suzanna Hamilton", "character": "Julia", "id": 10652, "credit_id": "52fe44e6c3a36847f80b0a2b", "cast_id": 3, "profile_path": "/ei41XX9AYpFFTk36t0mD3KYs4bg.jpg", "order": 2}, {"name": "Cyril Cusack", "character": "Charrington", "id": 4973, "credit_id": "52fe44e6c3a36847f80b0a2f", "cast_id": 4, "profile_path": "/5d6OeKNqpRSMhwXd1FHV9KeX4WS.jpg", "order": 3}, {"name": "Gregor Fisher", "character": "Parsons", "id": 7053, "credit_id": "52fe44e6c3a36847f80b0a81", "cast_id": 18, "profile_path": "/reJh7YHXEfdvY6dVHyzXOP7eNhs.jpg", "order": 4}, {"name": "James Walker", "character": "Syme", "id": 208920, "credit_id": "52fe44e6c3a36847f80b0a85", "cast_id": 19, "profile_path": "/spCx7vRlcYpVDWGKhSM50kMNePt.jpg", "order": 5}, {"name": "Andrew Wilde", "character": "Tillotson", "id": 26861, "credit_id": "52fe44e6c3a36847f80b0a89", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "David Cann", "character": "Martin", "id": 193340, "credit_id": "52fe44e6c3a36847f80b0a8d", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Peter Frye", "character": "Rutherford", "id": 201587, "credit_id": "52fe44e6c3a36847f80b0a91", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Roger Lloyd-Pack", "character": "Waiter (as Roger Lloyd Pack)", "id": 81024, "credit_id": "52fe44e6c3a36847f80b0a95", "cast_id": 23, "profile_path": "/6hWATATAe2Tv7v2EKefdjfAaI7.jpg", "order": 9}, {"name": "David Trevena", "character": "Tillotson's Friend", "id": 1406994, "credit_id": "54a41c9692514118600051ec", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Anthony Benson", "character": "Jones", "id": 1406997, "credit_id": "54a41cbec3a368764f00ee34", "cast_id": 25, "profile_path": null, "order": 11}], "directors": [{"name": "Michael Radford", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0a35", "profile_path": "/bhKe3gIvinv8rBgyxdLsQbuZ6Gv.jpg", "id": 28898}], "vote_average": 6.8, "runtime": 113}, "9315": {"poster_path": "/pZetr5lKqN12sRLDvgW7UUxfYtj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 223387299, "overview": "A claustrophobic, Hitchcockian thriller. A bereaved woman and her daughter are flying home from Berlin to America. At 30,000 feet the child vanishes and nobody admits she was ever on that plane.", "video": false, "id": 9315, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Flightplan", "tagline": "If Someone Took Everything You Live For... How Far Would You Go To Get It Back?", "vote_count": 203, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0408790", "adult": false, "backdrop_path": "/qSewyN6JIqlmI3HMjKX8Lbfw8T8.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2005-09-23", "popularity": 0.531075059710865, "original_title": "Flightplan", "budget": 55000000, "cast": [{"name": "Jodie Foster", "character": "Kyle Pratt", "id": 1038, "credit_id": "52fe44e6c3a36847f80b0af9", "cast_id": 9, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Peter Sarsgaard", "character": "Carson", "id": 133, "credit_id": "52fe44e6c3a36847f80b0afd", "cast_id": 10, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 1}, {"name": "Sean Bean", "character": "Captain Rich", "id": 48, "credit_id": "52fe44e6c3a36847f80b0b01", "cast_id": 11, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 2}, {"name": "Kate Beahan", "character": "Stephanie", "id": 57278, "credit_id": "52fe44e6c3a36847f80b0b05", "cast_id": 12, "profile_path": "/tuaMd14ArMWImBjKf36RvVQCMYM.jpg", "order": 3}, {"name": "Michael Irby", "character": "Obaid", "id": 124304, "credit_id": "52fe44e6c3a36847f80b0b09", "cast_id": 13, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 4}, {"name": "Assaf Cohen", "character": "Ahmed", "id": 117824, "credit_id": "52fe44e6c3a36847f80b0b0d", "cast_id": 14, "profile_path": "/oomyDwiJ6LxMH6CCx8oyzDC6kZZ.jpg", "order": 5}, {"name": "Erika Christensen", "character": "Fiona", "id": 21711, "credit_id": "52fe44e6c3a36847f80b0b11", "cast_id": 15, "profile_path": "/v68rJrHWLcv49xDFScRK9TYEiFY.jpg", "order": 6}, {"name": "Shane Edelman", "character": "Mr. Loud", "id": 61854, "credit_id": "52fe44e6c3a36847f80b0b15", "cast_id": 16, "profile_path": "/dZlUEZMzoh4kXVvZE3lWdRxLSfI.jpg", "order": 7}, {"name": "Mary Gallagher", "character": "Mrs. Loud", "id": 154166, "credit_id": "52fe44e6c3a36847f80b0b19", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Haley Ramm", "character": "Brittany Loud", "id": 61555, "credit_id": "52fe44e6c3a36847f80b0b1d", "cast_id": 18, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 9}, {"name": "Forrest Landis", "character": "Rhett Loud", "id": 60393, "credit_id": "52fe44e6c3a36847f80b0b21", "cast_id": 19, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 10}, {"name": "Jana Kolesarova", "character": "Claudia", "id": 946328, "credit_id": "52fe44e6c3a36847f80b0b25", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Brent Sexton", "character": "Elias", "id": 159261, "credit_id": "52fe44e6c3a36847f80b0b29", "cast_id": 21, "profile_path": "/6eo32pAnTQkOnkuvDfCeR0CNwOK.jpg", "order": 12}, {"name": "Marlene Lawston", "character": "Julia", "id": 52019, "credit_id": "52fe44e6c3a36847f80b0b2d", "cast_id": 22, "profile_path": "/pYRmhahQG7dWiAc9EyhaPD92oTH.jpg", "order": 13}, {"name": "Judith Scott", "character": "Estella", "id": 44185, "credit_id": "52fe44e6c3a36847f80b0b31", "cast_id": 23, "profile_path": "/8PXHC5SMNyUuNNXgDc6m9yJuQcp.jpg", "order": 14}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0acb", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 6.0, "runtime": 98}, "1124": {"poster_path": "/gv4gXgHAm0nugWaYAHRAYQUurUM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109676311, "overview": "A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.", "video": false, "id": 1124, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Prestige", "tagline": "Are You Watching Closely?", "vote_count": 1392, "homepage": "http://wwws.warnerbros.de/theprestige/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0482571", "adult": false, "backdrop_path": "/c5o7FN2vzI7xlU6IF1y64mgcH9E.jpg", "production_companies": [{"name": "Syncopy", "id": 9996}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Warner Bros.", "id": 6194}, {"name": "Newmarket Productions", "id": 666}], "release_date": "2006-10-19", "popularity": 2.30354072287922, "original_title": "The Prestige", "budget": 40000000, "cast": [{"name": "Hugh Jackman", "character": "Robert Angier", "id": 6968, "credit_id": "52fe42e8c3a36847f802bf27", "cast_id": 11, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Christian Bale", "character": "Alfred Borden", "id": 3894, "credit_id": "52fe42e8c3a36847f802bf2b", "cast_id": 12, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 1}, {"name": "Michael Caine", "character": "Cutter", "id": 3895, "credit_id": "52fe42e8c3a36847f802bf2f", "cast_id": 13, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Olivia Wenscombe", "id": 1245, "credit_id": "52fe42e8c3a36847f802bf33", "cast_id": 14, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Andy Serkis", "character": "Alley", "id": 1333, "credit_id": "52fe42e8c3a36847f802bf37", "cast_id": 15, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 4}, {"name": "David Bowie", "character": "Nikola Tesla", "id": 7487, "credit_id": "52fe42e8c3a36847f802bf3b", "cast_id": 16, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 5}, {"name": "Piper Perabo", "character": "Julia McCullough", "id": 15555, "credit_id": "52fe42e8c3a36847f802bf3f", "cast_id": 17, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 6}, {"name": "Rebecca Hall", "character": "Sarah Borden", "id": 15556, "credit_id": "52fe42e8c3a36847f802bf43", "cast_id": 18, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 7}, {"name": "Daniel Davis", "character": "Judge", "id": 177765, "credit_id": "52fe42e8c3a36847f802bf47", "cast_id": 19, "profile_path": "/f6mEupwpKQGlxk2mKwb0pz1UiFT.jpg", "order": 8}, {"name": "Roger Rees", "character": "Owens", "id": 16407, "credit_id": "52fe42e8c3a36847f802bf4b", "cast_id": 20, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 9}, {"name": "Ricky Jay", "character": "Milton", "id": 10743, "credit_id": "55044ad39251412bfa000ec4", "cast_id": 21, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 10}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe42e8c3a36847f802beed", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.5, "runtime": 130}, "9319": {"poster_path": "/dozUmI5pKcTsNoSpD786zM0X0rm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59509925, "overview": "When the girl that detective Joe Hallenback is protecting gets murdered, the boyfriend of the murdered girl (ex-football player Jimmy Dix) attempts to investigate and solve the case. What they discover is that there is deep seated corruption going on between a crooked politician and the owner of a pro football team.", "video": false, "id": 9319, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "The Last Boy Scout", "tagline": "Everyone had counted them out. But they're about to get back in the game.", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102266", "adult": false, "backdrop_path": "/3BRLjwxF2rmVFedrQkjNdPcd8Uw.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Geffen Pictures", "id": 360}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1991-12-12", "popularity": 0.554648692652294, "original_title": "The Last Boy Scout", "budget": 29000000, "cast": [{"name": "Bruce Willis", "character": "Joe Hallenbeck", "id": 62, "credit_id": "52fe44e7c3a36847f80b0d73", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Damon Wayans", "character": "James Alexander 'Jimmy' Dix", "id": 22675, "credit_id": "52fe44e7c3a36847f80b0d77", "cast_id": 2, "profile_path": "/rQ1KV896Hm0jzLTOdksbHoXh67l.jpg", "order": 1}, {"name": "Chelsea Field", "character": "Sarah Hallenbeck", "id": 27008, "credit_id": "52fe44e7c3a36847f80b0d7b", "cast_id": 3, "profile_path": "/9NnerSpNB4Ro3f3iMRorv1uvYlA.jpg", "order": 2}, {"name": "Noble Willingham", "character": "Sheldon Marcone", "id": 31005, "credit_id": "52fe44e7c3a36847f80b0d7f", "cast_id": 4, "profile_path": "/stdQUjYtyjfuJRgA89DyzkZEyai.jpg", "order": 3}, {"name": "Halle Berry", "character": "Cory", "id": 4587, "credit_id": "52fe44e7c3a36847f80b0d83", "cast_id": 5, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 4}, {"name": "Danielle Harris", "character": "Darian Hallenbeck", "id": 21320, "credit_id": "52fe44e7c3a36847f80b0dc9", "cast_id": 18, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 5}, {"name": "Bruce McGill", "character": "Mike Matthews", "id": 14888, "credit_id": "52fe44e7c3a36847f80b0dcd", "cast_id": 19, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 6}, {"name": "Kim Coates", "character": "Chet", "id": 8335, "credit_id": "52fe44e7c3a36847f80b0dd1", "cast_id": 20, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 7}, {"name": "Taylor Negron", "character": "Milo", "id": 37043, "credit_id": "52fe44e7c3a36847f80b0dd5", "cast_id": 21, "profile_path": "/wk0bOBqw47cMntR7IJvlE9hE372.jpg", "order": 8}, {"name": "Badja Djola", "character": "Alley Thug", "id": 107009, "credit_id": "52fe44e7c3a36847f80b0dd9", "cast_id": 22, "profile_path": "/i5j8WpNKydvBs2Vu3cYJyXNBy3V.jpg", "order": 9}, {"name": "Chelcie Ross", "character": "Senator Baynard", "id": 10486, "credit_id": "52fe44e7c3a36847f80b0ddd", "cast_id": 23, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 10}, {"name": "Joe Santos", "character": "Bessalo", "id": 6774, "credit_id": "52fe44e7c3a36847f80b0de1", "cast_id": 24, "profile_path": "/7D7ddztwCyW1D0DIxNR0JDAWu0d.jpg", "order": 11}, {"name": "Clarence Felder", "character": "McCoskey", "id": 72408, "credit_id": "52fe44e7c3a36847f80b0de5", "cast_id": 25, "profile_path": "/hbioULG0wwkHlXcjXy89eZIPt2J.jpg", "order": 12}, {"name": "Tony Longo", "character": "Big Ray Walston", "id": 13644, "credit_id": "52fe44e7c3a36847f80b0de9", "cast_id": 26, "profile_path": "/iIb28i2pBH8vhPUoZm34Z2MM8D6.jpg", "order": 13}, {"name": "Frank Collison", "character": "Pablo", "id": 1479, "credit_id": "52fe44e7c3a36847f80b0ded", "cast_id": 27, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 14}, {"name": "Bill Medley", "character": "Himself", "id": 197061, "credit_id": "52fe44e7c3a36847f80b0df1", "cast_id": 28, "profile_path": "/gZix2FrZ9Dw4OvAh0Spu8IfRp6Z.jpg", "order": 15}, {"name": "Verne Lundquist", "character": "Himself", "id": 1024638, "credit_id": "52fe44e7c3a36847f80b0df5", "cast_id": 29, "profile_path": "/AkUVqg2rkExTneawEUSYFjYnv8O.jpg", "order": 16}, {"name": "Dick Butkus", "character": "Himself", "id": 94783, "credit_id": "52fe44e7c3a36847f80b0df9", "cast_id": 30, "profile_path": "/eF8Bg3YPzJw9DH1B3QlAJfdsZgH.jpg", "order": 17}, {"name": "Lynn Swann", "character": "Himself", "id": 162693, "credit_id": "52fe44e7c3a36847f80b0dfd", "cast_id": 31, "profile_path": "/hK8KMKumG0kCARGUBmN3P0UrBRN.jpg", "order": 18}, {"name": "Billy Blanks", "character": "Billy Cole", "id": 128191, "credit_id": "52fe44e7c3a36847f80b0e01", "cast_id": 32, "profile_path": "/hkbllU1QR9irZ2AmW0eLelKoZSS.jpg", "order": 19}, {"name": "Ken Kells", "character": "Head Coach", "id": 170134, "credit_id": "52fe44e7c3a36847f80b0e05", "cast_id": 33, "profile_path": "/n0hKRviE0p0I5UqJ5BVJ1gamM15.jpg", "order": 20}, {"name": "Morris Chestnut", "character": "Locker Room Kid", "id": 9779, "credit_id": "52fe44e7c3a36847f80b0e09", "cast_id": 34, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 21}, {"name": "Michael J. Fisher", "character": "Wounded Player", "id": 1077308, "credit_id": "52fe44e7c3a36847f80b0e0d", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Doug Simpson", "character": "Wounded Player", "id": 77746, "credit_id": "52fe44e7c3a36847f80b0e11", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Joe El Rady", "character": "Kid", "id": 1077309, "credit_id": "52fe44e7c3a36847f80b0e15", "cast_id": 37, "profile_path": null, "order": 24}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b0dbf", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.4, "runtime": 105}, "9320": {"poster_path": "/7cJGRajXMU2aYdTbElIl6FtzOl2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48522832, "overview": "British Ministry agent John Steed, under direction from \"Mother\", investigates a diabolical plot by arch-villain Sir August de Wynter to rule the world with his weather control machine. Steed investigates the beautiful Doctor Mrs. Emma Peel, the only suspect, but simultaneously falls for her and joins forces with her to combat Sir August.", "video": false, "id": 9320, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Avengers", "tagline": "Saving the World in Style.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118661", "adult": false, "backdrop_path": "/yq9rfPPFK4SfDvktlvQ0ifhYjwX.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Jerry Weintraub Productions", "id": 2596}], "release_date": "1998-08-13", "popularity": 0.589717290893855, "original_title": "The Avengers", "budget": 60000000, "cast": [{"name": "Ralph Fiennes", "character": "John Steed", "id": 5469, "credit_id": "52fe44e7c3a36847f80b0e6d", "cast_id": 1, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Uma Thurman", "character": "Emma Peel", "id": 139, "credit_id": "52fe44e7c3a36847f80b0e71", "cast_id": 2, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 1}, {"name": "Sean Connery", "character": "Sir August de Wynter", "id": 738, "credit_id": "52fe44e7c3a36847f80b0e75", "cast_id": 3, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 2}, {"name": "Patrick Macnee", "character": "Invisible Jones (voice)", "id": 10662, "credit_id": "52fe44e7c3a36847f80b0e79", "cast_id": 4, "profile_path": "/l5SmR6zmSkKO41vGpjggJYWYAT1.jpg", "order": 3}, {"name": "Jim Broadbent", "character": "Mother", "id": 388, "credit_id": "52fe44e7c3a36847f80b0ead", "cast_id": 13, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 4}, {"name": "Fiona Shaw", "character": "Father", "id": 10981, "credit_id": "52fe44e7c3a36847f80b0eb1", "cast_id": 14, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 5}, {"name": "Eddie Izzard", "character": "Bailey", "id": 1926, "credit_id": "52fe44e7c3a36847f80b0eb5", "cast_id": 15, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 6}, {"name": "Eileen Atkins", "character": "Alice", "id": 20300, "credit_id": "52fe44e7c3a36847f80b0eb9", "cast_id": 16, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 7}, {"name": "John Wood", "character": "Trubshaw", "id": 8937, "credit_id": "52fe44e7c3a36847f80b0ed5", "cast_id": 24, "profile_path": "/bWt4JT9eGxFtu3q0iCAKFtNv5XK.jpg", "order": 8}, {"name": "Carmen Ejogo", "character": "Brenda", "id": 37158, "credit_id": "52fe44e7c3a36847f80b0ebd", "cast_id": 18, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 9}, {"name": "Keeley Hawes", "character": "Tamara", "id": 22809, "credit_id": "52fe44e7c3a36847f80b0ec1", "cast_id": 19, "profile_path": "/l6gt960OMUsX72Ytv2AkogldjNn.jpg", "order": 10}, {"name": "Shaun Ryder", "character": "Donavan", "id": 141549, "credit_id": "52fe44e7c3a36847f80b0ec5", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Nicholas Woodeson", "character": "Dr. Darling", "id": 118617, "credit_id": "52fe44e7c3a36847f80b0ec9", "cast_id": 21, "profile_path": "/sRsmR64H54aYYm2nh7Ra9IssxeT.jpg", "order": 12}, {"name": "Michael Godley", "character": "Butler", "id": 141550, "credit_id": "52fe44e7c3a36847f80b0ecd", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Richard Lumsden", "character": "Boodle's Porter", "id": 141551, "credit_id": "52fe44e7c3a36847f80b0ed1", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Jeremiah S. Chechik", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b0e7f", "profile_path": "/avEcJTGsWFEzxpSOutwhkP3adQ8.jpg", "id": 34682}], "vote_average": 4.9, "runtime": 89}, "9322": {"poster_path": "/mjSe0ehEPaSRMFYF9qVFGpk9ubM.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 5000000, "overview": "A beautiful felon, sentenced to life in prison for the murder of a policeman, is given a second chance - as a secret political assassin controlled by the government.", "video": false, "id": 9322, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "La Femme Nikita", "tagline": "She murders. So she can live.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0100263", "adult": false, "backdrop_path": "/qaTAX69aDbEinfhklbuI76lPO5c.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Cecchi Gori Group Tiger Cinematografica", "id": 371}, {"name": "cechi gori group", "id": 6643}], "release_date": "1990-02-21", "popularity": 0.953611339802046, "original_title": "Nikita", "budget": 0, "cast": [{"name": "Anne Parillaud", "character": "Nikita", "id": 57298, "credit_id": "52fe44e7c3a36847f80b0f85", "cast_id": 1, "profile_path": "/vk3C8it70D5xESQz47821xhWkAU.jpg", "order": 0}, {"name": "Marc Duret", "character": "Rico", "id": 2170, "credit_id": "52fe44e7c3a36847f80b0f89", "cast_id": 2, "profile_path": "/yZu9GrdnBYT0nEwPNPKvbXN9DfE.jpg", "order": 1}, {"name": "Patrick Fontana", "character": "Coyotte", "id": 57299, "credit_id": "52fe44e7c3a36847f80b0f8d", "cast_id": 3, "profile_path": "/aziJvtOrnqeR5VBAzR6NZiEh1TD.jpg", "order": 2}, {"name": "Alain Lathi\u00e8re", "character": "Zap", "id": 57300, "credit_id": "52fe44e7c3a36847f80b0f91", "cast_id": 4, "profile_path": "/kOkWySUk0uZTrzTHiHIysGyTYzW.jpg", "order": 3}, {"name": "Jean Reno", "character": "Victor", "id": 1003, "credit_id": "52fe44e7c3a36847f80b0fd1", "cast_id": 15, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 4}, {"name": "Tch\u00e9ky Karyo", "character": "Bob", "id": 10698, "credit_id": "52fe44e7c3a36847f80b0fd5", "cast_id": 16, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 5}, {"name": "Jean-Hugues Anglade", "character": "Marco", "id": 7037, "credit_id": "52fe44e7c3a36847f80b0fd9", "cast_id": 17, "profile_path": "/iy8Tfcb3Zq1INu1kGm069wccRev.jpg", "order": 6}, {"name": "Jeanne Moreau", "character": "Armande", "id": 14812, "credit_id": "52fe44e7c3a36847f80b0fdd", "cast_id": 18, "profile_path": "/uHJnVwCzehEoz0mIlwN7xkymql8.jpg", "order": 7}, {"name": "Roland Blanche", "character": "Flic interrogatoire", "id": 24763, "credit_id": "52fe44e7c3a36847f80b0fe1", "cast_id": 20, "profile_path": "/ep8T7Ot6sQOCEMJpl9DrR28fv9x.jpg", "order": 8}, {"name": "Jacques Boudet", "character": "le pharmacien", "id": 72090, "credit_id": "52fe44e7c3a36847f80b0fe5", "cast_id": 21, "profile_path": "/fdTqMaB97xTAJf9jvieONBxvoWj.jpg", "order": 9}, {"name": "Jean Bouise", "character": "L'attach\u00e9 ambassade", "id": 2168, "credit_id": "52fe44e7c3a36847f80b0fe9", "cast_id": 22, "profile_path": "/rBFl7KVzK2tax2CUbLtJBFFcBzm.jpg", "order": 10}, {"name": "Philippe du Janerand", "character": "l'ambassadeur / Jules", "id": 550110, "credit_id": "52fe44e7c3a36847f80b0fed", "cast_id": 23, "profile_path": "/h6cm0cwVnaLu3i3KD2AOwxeinPf.jpg", "order": 11}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b0f97", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 7.1, "runtime": 115}, "9323": {"poster_path": "/vTXgUgB4KyntDSUezLljcm1Ol6N.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "In the year 2029, the barriers of our world have been broken down by the net and by cybernetics, but this brings new vulnerability to humans in the form of brain-hacking. When a highly-wanted hacker known as 'The Puppetmaster' begins involving them in politics, Section 9, a group of cybernetically enhanced cops, are called in to investigate and stop the Puppetmaster.", "video": false, "id": 9323, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Ghost in the Shell", "tagline": "It Found A Voice... Now It Needs A Body", "vote_count": 237, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xt0E8CHXzLxEoiPqrjZMRrM4Izi.jpg", "poster_path": "/oNi7xxwjEXBGaNJaB9ViJXEm0DF.jpg", "id": 23026, "name": "Ghost in the Shell Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113568", "adult": false, "backdrop_path": "/kcilD5Qavkk9qPYUshROqeqIJPp.jpg", "production_companies": [{"name": "Bandai Visual Company", "id": 528}, {"name": "Kodansha", "id": 6999}], "release_date": "1995-11-18", "popularity": 1.11803174158565, "original_title": "\u653b\u6bbb\u6a5f\u52d5\u968a", "budget": 0, "cast": [{"name": "Atsuko Tanaka", "character": "Major Motoko Kusanagi", "id": 34923, "credit_id": "52fe44e8c3a36847f80b1043", "cast_id": 10, "profile_path": "/tM2mIRVxO7TehX35cpSbDvgEByq.jpg", "order": 0}, {"name": "Iemasa Kayumi", "character": "Puppetmaster", "id": 625, "credit_id": "52fe44e8c3a36847f80b1047", "cast_id": 11, "profile_path": "/doji21RoWXS4gjWkBLyClNicHKW.jpg", "order": 1}, {"name": "Tamio \u00d4ki", "character": "Aramaki", "id": 12199, "credit_id": "535cd8390e0a264fdb004692", "cast_id": 20, "profile_path": "/yRoaWUblTlU98adYjFUNXr9THzv.jpg", "order": 3}, {"name": "Akio \u00d4tsuka", "character": "Bateau", "id": 40451, "credit_id": "533709da9251417d9e0010ce", "cast_id": 14, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 4}, {"name": "K\u00f4ichi Yamadera", "character": "Togusa", "id": 40328, "credit_id": "52fe44e8c3a36847f80b104b", "cast_id": 12, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 5}, {"name": "Mimi Woods", "character": "Major Motoko Kusanagi", "id": 1241849, "credit_id": "53370ab69251417dad00110f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Tom Wyner", "character": "Puppetmaster", "id": 110694, "credit_id": "53370ad79251417da700114f", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "William Knight", "character": "Aramaki", "id": 95571, "credit_id": "53370a7e9251417dad001108", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Richard Epcar", "character": "Bateau", "id": 26993, "credit_id": "53370a209251417dad0010fe", "cast_id": 15, "profile_path": "/jta8SgeUdQ4SmEhhP5UiXleEwgM.jpg", "order": 9}, {"name": "Christopher Joyce", "character": "Togusa", "id": 1305529, "credit_id": "53370a659251417da400114e", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Stephen Apostolina", "character": "Additional Voices", "id": 1340665, "credit_id": "549af5a39251413129001ea0", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Stephen Apostolina", "character": "Additional Voices", "id": 1340665, "credit_id": "549af5d0925141311f001d44", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "Mamoru Oshii", "department": "Directing", "job": "Director", "credit_id": "52fe44e7c3a36847f80b100f", "profile_path": "/2MXFEwxLu7gT9vvi5Otx4LQgsvZ.jpg", "id": 12180}], "vote_average": 7.6, "runtime": 83}, "9325": {"poster_path": "/klURaIfwdD4yX5C7s90tq3KtqB8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205843612, "overview": "The Jungle Book follows the ups and downs of the man-cub Mowgli as he makes his way back to the human village with wise panther Bagheera to escape ruthless tiger Shere Khan. Along the way, he meets unforgettable friends and foes including mad King Louie of the Apes, the hypnotic snake Kaa and the loveable, happy-go-lucky bear Baloo, who teaches Mowgli about true friendship.", "video": false, "id": 9325, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Jungle Book", "tagline": "The Jungle is JUMPIN'!", "vote_count": 411, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7F5dqdq8GXhqDpLNX43pODtaevW.jpg", "poster_path": "/3Z4vzPkmnyrLnfFyr5cEHUUT1HN.jpg", "id": 97459, "name": "The Jungle Book Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061852", "adult": false, "backdrop_path": "/c2rWPWDJU6tIEHB9mA0BEmXDkAS.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1967-10-18", "popularity": 1.91302585827176, "original_title": "The Jungle Book", "budget": 4000000, "cast": [{"name": "Phil Harris", "character": "Baloo (voice)", "id": 57329, "credit_id": "52fe44e8c3a36847f80b1087", "cast_id": 1, "profile_path": "/cNfUGziMuqXlrw5i3w1VqugwIt5.jpg", "order": 0}, {"name": "Sebastian Cabot", "character": "Bagheera (voice)", "id": 21877, "credit_id": "52fe44e8c3a36847f80b108b", "cast_id": 2, "profile_path": "/x4xosGUCYnuUQntxgbcZryWaKH6.jpg", "order": 1}, {"name": "Louis Prima", "character": "King Louie (voice)", "id": 57330, "credit_id": "52fe44e8c3a36847f80b108f", "cast_id": 3, "profile_path": "/waoPtdYv7F7aOvrgcVHMK1DnJb4.jpg", "order": 2}, {"name": "George Sanders", "character": "Shere Khan (voice)", "id": 3361, "credit_id": "52fe44e8c3a36847f80b1093", "cast_id": 4, "profile_path": "/6fvK8vUTgSMRvuw77PjjuIOMl6.jpg", "order": 3}, {"name": "Sterling Holloway", "character": "Kaa (voice)", "id": 34759, "credit_id": "52fe44e8c3a36847f80b1097", "cast_id": 5, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 4}, {"name": "J. Pat O'Malley", "character": "Colonel Hathi / Buzzie (voice)", "id": 22602, "credit_id": "52fe44e8c3a36847f80b109b", "cast_id": 6, "profile_path": "/if8jAnsuARxFUy3k7PhaFqzHd9N.jpg", "order": 5}, {"name": "Bruce Reitherman", "character": "Mowgli (voice)", "id": 57331, "credit_id": "52fe44e8c3a36847f80b109f", "cast_id": 7, "profile_path": "/o55cf2g8rawN5cd00AuS2qWFvX3.jpg", "order": 6}, {"name": "Verna Felton", "character": "Elephant (voice)", "id": 67290, "credit_id": "52fe44e8c3a36847f80b10c7", "cast_id": 19, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 7}, {"name": "Clint Howard", "character": "Elephant (voice)", "id": 15661, "credit_id": "52fe44e8c3a36847f80b10cb", "cast_id": 20, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 8}, {"name": "Chad Stuart", "character": "Vulture (voice)", "id": 193778, "credit_id": "52fe44e8c3a36847f80b10cf", "cast_id": 21, "profile_path": "/y5ZOQ75aDDxBfrwPj3NNwXeG3gb.jpg", "order": 9}, {"name": "Lord Tim Hudson", "character": "Vulture (voice)", "id": 951459, "credit_id": "52fe44e8c3a36847f80b10d3", "cast_id": 22, "profile_path": "/6gfzXSEqnKLg4cKZ9cA9VM27M9f.jpg", "order": 10}, {"name": "John Abbott", "character": "Wolf (voice)", "id": 24826, "credit_id": "52fe44e8c3a36847f80b10d7", "cast_id": 23, "profile_path": "/lNF9KUxNbriSVl24rUaswangRSs.jpg", "order": 11}, {"name": "Ben Wright", "character": "Wolf (voice)", "id": 71781, "credit_id": "52fe44e8c3a36847f80b10db", "cast_id": 24, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 12}, {"name": "Darleen Carr", "character": "The Girl (voice)", "id": 102860, "credit_id": "52fe44e8c3a36847f80b10df", "cast_id": 25, "profile_path": "/gTpAqx0G2gkpab7TpbgGpFcBUIJ.jpg", "order": 13}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b10c3", "profile_path": null, "id": 57314}], "vote_average": 6.7, "runtime": 78}, "9326": {"poster_path": "/3TqpkTYiltYsxYatdug6WDgdRKL.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86572238, "overview": "Though she can spin wild tales of passionate romance, novelist Joan Wilder has no life of her own. Then one day adventure comes her way in the form of a mysterious package. It turns out that the parcel is the ransom she'll need to free her abducted sister, so Joan flies to South America to hand it over. But she gets on the wrong bus and winds up hopelessly stranded in the jungle...", "video": false, "id": 9326, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Romancing the Stone", "tagline": "She's a girl from the big city. He's a reckless soldier of fortune. For a fabulous treasure, they share an adventure no one could imagine... or survive.", "vote_count": 134, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5jBCjoc1skU4KvRdLITP49fKFlD.jpg", "poster_path": "/ml0ikDZPzgRNOVBeytHLrDyuYiQ.jpg", "id": 89264, "name": "Romancing the Stone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt0088011", "adult": false, "backdrop_path": "/5MNAokmkK4NPtYJCPmQ2fgErW9n.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "El Corazon Producciones", "id": 2573}, {"name": "Nina Saxon Film Design", "id": 1693}], "release_date": "1984-03-30", "popularity": 0.587565597361882, "original_title": "Romancing the Stone", "budget": 10000000, "cast": [{"name": "Michael Douglas", "character": "Jack T. Colton", "id": 3392, "credit_id": "52fe44e8c3a36847f80b1165", "cast_id": 12, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Kathleen Turner", "character": "Joan Wilder", "id": 3391, "credit_id": "52fe44e8c3a36847f80b1169", "cast_id": 13, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Ralph", "id": 518, "credit_id": "52fe44e8c3a36847f80b116d", "cast_id": 14, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "Zack Norman", "character": "Ira", "id": 57312, "credit_id": "52fe44e8c3a36847f80b1171", "cast_id": 15, "profile_path": null, "order": 3}, {"name": "Alfonso Ar\u00e1u", "character": "Juan", "id": 22767, "credit_id": "52fe44e8c3a36847f80b1175", "cast_id": 16, "profile_path": "/Agw6LyoGlrfJaBvTOQYzdxwUWHh.jpg", "order": 4}, {"name": "Mary Ellen Trainor", "character": "Elaine", "id": 23967, "credit_id": "53c07d370e0a26157f007b1c", "cast_id": 17, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 5}, {"name": "Holland Taylor", "character": "Gloria", "id": 11318, "credit_id": "5424b64ac3a3680887004271", "cast_id": 18, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 6}, {"name": "Eve Smith", "character": "Mrs. Irwin", "id": 1178195, "credit_id": "5424b678c3a3681eca002e6d", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Joe Nesnow", "character": "Super", "id": 140586, "credit_id": "5424b6d70e0a26457600033f", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Joe Nesnow", "character": "Super", "id": 140586, "credit_id": "5424b6e0c3a3680883004614", "cast_id": 21, "profile_path": null, "order": 9}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b1125", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.3, "runtime": 106}, "9327": {"poster_path": "/9LZtLAuuVmNCN1DJrDG2eOPReXv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128769345, "overview": "Eddie Murphy stars as shy Dr. Sherman Klump, a kind, brilliant, 'calorifically challenged' genetic professor. When beautiful Carla Purty joins the university faculty, Sherman grows desperate to whittle his 400-pound frame down to size and win her heart. So, with one swig of his experimental fat-reducing serum, Sherman becomes 'Buddy Love', a fast-talking, pumped-up , plumped down Don Juan.", "video": false, "id": 9327, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "The Nutty Professor", "tagline": "Inside Sherman Klump, a party animal is about to break out.", "vote_count": 113, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mW1NQFOSCwwgk03SpcpwiQEL2Lo.jpg", "poster_path": "/a6zC38ID7EyAflo8tsPDP4IE0Mt.jpg", "id": 86028, "name": "The Nutty Professor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117218", "adult": false, "backdrop_path": "/iF4WbMmMWZi4bFGx5e7WRndfZOz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1996-06-26", "popularity": 0.889665538665426, "original_title": "The Nutty Professor", "budget": 54000000, "cast": [{"name": "Eddie Murphy", "character": "Sherman Klump | Buddy Love", "id": 776, "credit_id": "52fe44e8c3a36847f80b11b5", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Jada Pinkett Smith", "character": "Carla Purty", "id": 9575, "credit_id": "52fe44e8c3a36847f80b11b9", "cast_id": 3, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 1}, {"name": "James Coburn", "character": "Harlan Hartley", "id": 5563, "credit_id": "52fe44e8c3a36847f80b11bd", "cast_id": 4, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 2}, {"name": "Larry Miller", "character": "Dean Richmond", "id": 1211, "credit_id": "52fe44e8c3a36847f80b11c1", "cast_id": 5, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 3}, {"name": "Dave Chappelle", "character": "Reggie Warrington", "id": 4169, "credit_id": "52fe44e8c3a36847f80b11f5", "cast_id": 17, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 4}, {"name": "John Ales", "character": "Jason", "id": 64343, "credit_id": "52fe44e8c3a36847f80b11f9", "cast_id": 18, "profile_path": "/hmu0T2yZSITJX0Wxhja1X7YaV1n.jpg", "order": 5}, {"name": "Patricia Wilson", "character": "Dean's Secretary", "id": 182726, "credit_id": "52fe44e8c3a36847f80b11fd", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Jamal Mixon", "character": "Ernie Klump Jr.", "id": 59019, "credit_id": "52fe44e8c3a36847f80b1201", "cast_id": 20, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 7}, {"name": "Nichole McAuley", "character": "Fit Woman", "id": 1077909, "credit_id": "52fe44e8c3a36847f80b1205", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Hamilton von Watts", "character": "Health Instructor", "id": 154874, "credit_id": "52fe44e8c3a36847f80b1209", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Chao Li Chi", "character": "Asian Man", "id": 995587, "credit_id": "52fe44e8c3a36847f80b120d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Tony Carlin", "character": "Host", "id": 166838, "credit_id": "52fe44e8c3a36847f80b1211", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Quinn Duffy", "character": "Bartender", "id": 179954, "credit_id": "52fe44e8c3a36847f80b1215", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Montell Jordan", "character": "Himself", "id": 154214, "credit_id": "52fe44e8c3a36847f80b1219", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Doug Williams", "character": "Band Leader", "id": 193580, "credit_id": "52fe44e8c3a36847f80b121d", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "David Ramsey", "character": "Student", "id": 116774, "credit_id": "52fe44e8c3a36847f80b1221", "cast_id": 28, "profile_path": "/8ZbdY0yrA4GTg0g9LrrhzDHRRy.jpg", "order": 15}, {"name": "Chaz Lamar Shepherd", "character": "Student", "id": 154176, "credit_id": "52fe44e8c3a36847f80b1225", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Lisa Halpern", "character": "Sad Fat Firl", "id": 937565, "credit_id": "52fe44e8c3a36847f80b1229", "cast_id": 30, "profile_path": null, "order": 17}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b11c7", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 5.5, "runtime": 95}, "9331": {"poster_path": "/avRDucB3FLf1Xz5532hbOYd1giX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 207500000, "overview": "CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.", "video": false, "id": 9331, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Clear and Present Danger", "tagline": "The war of drugs would lead him to the war of power.", "vote_count": 107, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109444", "adult": false, "backdrop_path": "/hM4SlL49CPvltPkVVulyXHlfFjO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "1994-08-02", "popularity": 1.08775280497765, "original_title": "Clear and Present Danger", "budget": 45000000, "cast": [{"name": "Harrison Ford", "character": "Jack Ryan", "id": 3, "credit_id": "52fe44e8c3a36847f80b130f", "cast_id": 14, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Anne Archer", "character": "Cathy Ryan", "id": 10427, "credit_id": "52fe44e8c3a36847f80b12d1", "cast_id": 2, "profile_path": "/zemspOk1FECjvjRWrH6modUgHiL.jpg", "order": 1}, {"name": "Donald Moffat", "character": "President Bennett", "id": 15417, "credit_id": "52fe44e8c3a36847f80b130b", "cast_id": 13, "profile_path": "/s1z6xGV9M1sx1EQdQb1mpU58mqy.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "John Clark", "id": 5293, "credit_id": "52fe44e8c3a36847f80b12cd", "cast_id": 1, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "James Earl Jones", "character": "Admiral James Greer", "id": 15152, "credit_id": "52fe44e8c3a36847f80b1313", "cast_id": 15, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 4}, {"name": "Joaquim de Almeida", "character": "Col. Felix Cortez", "id": 22462, "credit_id": "52fe44e8c3a36847f80b1317", "cast_id": 16, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 5}, {"name": "Henry Czerny", "character": "Robert Ritter", "id": 15319, "credit_id": "52fe44e8c3a36847f80b131b", "cast_id": 17, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 6}, {"name": "Harris Yulin", "character": "James Cutter", "id": 1166, "credit_id": "52fe44e8c3a36847f80b131f", "cast_id": 18, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 7}, {"name": "Miguel Sandoval", "character": "Ernesto Escobedo", "id": 30488, "credit_id": "52fe44e8c3a36847f80b1327", "cast_id": 20, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 9}, {"name": "Benjamin Bratt", "character": "Captain Ramirez", "id": 4589, "credit_id": "52fe44e8c3a36847f80b132b", "cast_id": 21, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 10}, {"name": "Raymond Cruz", "character": "Domingo Chavez", "id": 58650, "credit_id": "52fe44e8c3a36847f80b132f", "cast_id": 22, "profile_path": "/4k0r3xJjgTac5GiJoHDDBVAFYcj.jpg", "order": 11}, {"name": "Dean Jones", "character": "Judge Moore", "id": 40393, "credit_id": "52fe44e8c3a36847f80b1333", "cast_id": 23, "profile_path": "/z2fbeGmyPVmV0aQiHNjjonAwz10.jpg", "order": 12}, {"name": "Thora Birch", "character": "Sally Ryan", "id": 2155, "credit_id": "52fe44e8c3a36847f80b1337", "cast_id": 24, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 13}, {"name": "Ann Magnuson", "character": "Moira Wolfson", "id": 37042, "credit_id": "52fe44e8c3a36847f80b133b", "cast_id": 25, "profile_path": "/ry9H1u1GFbwXiWWolYA63pjBctp.jpg", "order": 14}, {"name": "Hope Lange", "character": "Senator Mayo", "id": 3382, "credit_id": "52fe44e8c3a36847f80b133f", "cast_id": 26, "profile_path": "/4gJtYaS4iAPBgTYVNIMlspAzGSA.jpg", "order": 15}, {"name": "Tom Tammi", "character": "FBI Director Emile Jacobs", "id": 75201, "credit_id": "52fe44e8c3a36847f80b1343", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Ted Raimi", "character": "Satellite Analyst", "id": 11769, "credit_id": "52fe44e8c3a36847f80b1347", "cast_id": 28, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 17}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b1307", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.0, "runtime": 141}, "9333": {"poster_path": "/fkURS96D2ceuocZIBuyiIBGHilF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47267001, "overview": "John Smith is a mysterious stranger who is drawn into a vicious war between two Prohibition-era gangs. In a dangerous game, he switches allegiances from one to another, offering his services to the highest bidder. As the death toll mounts, Smith takes the law into his own hands in a deadly race to stay alive.", "video": false, "id": 9333, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Last Man Standing", "tagline": "In a town with no justice, there is only one law... Every man for himself.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116830", "adult": false, "backdrop_path": "/lD1ukTu3oEHMC4lFMt7Xfj0QaQ1.jpg", "production_companies": [{"name": "Metropolitan Filmexport", "id": 656}, {"name": "New Line Cinema", "id": 12}], "release_date": "1996-09-20", "popularity": 0.654133942480981, "original_title": "Last Man Standing", "budget": 67000000, "cast": [{"name": "Bruce Willis", "character": "John Smith", "id": 62, "credit_id": "52fe44e8c3a36847f80b138f", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Bruce Dern", "character": "Sheriff Ed Galt", "id": 6905, "credit_id": "52fe44e8c3a36847f80b1393", "cast_id": 2, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 1}, {"name": "William Sanderson", "character": "Joe Monday", "id": 590, "credit_id": "52fe44e8c3a36847f80b1397", "cast_id": 3, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Hickey", "id": 4690, "credit_id": "52fe44e8c3a36847f80b139b", "cast_id": 4, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "David Patrick Kelly", "character": "Doyle", "id": 1737, "credit_id": "52fe44e8c3a36847f80b13d5", "cast_id": 14, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 4}, {"name": "Karina Lombard", "character": "Felina", "id": 11068, "credit_id": "52fe44e8c3a36847f80b13d9", "cast_id": 15, "profile_path": "/8uS7dXBJCTQaHQGyTFc2EhB9mKD.jpg", "order": 5}, {"name": "Ned Eisenberg", "character": "Fredo Strozzi", "id": 137529, "credit_id": "52fe44e8c3a36847f80b13dd", "cast_id": 16, "profile_path": "/ohy0wy7JbQCD0qPqtLJ3NcxJ8C8.jpg", "order": 6}, {"name": "Alexandra Powers", "character": "Lucy Kolinski", "id": 131183, "credit_id": "52fe44e8c3a36847f80b13e1", "cast_id": 17, "profile_path": "/bcZFHTddjsAR73j0rlRetktvEIE.jpg", "order": 7}, {"name": "Michael Imperioli", "character": "Giorgio Carmonte", "id": 11486, "credit_id": "52fe44e8c3a36847f80b13e5", "cast_id": 18, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 8}, {"name": "Ken Jenkins", "character": "Captain Tom Pickett", "id": 38570, "credit_id": "52fe44e8c3a36847f80b13e9", "cast_id": 19, "profile_path": "/6w9OgC4nGUfYavC86a3FeeMgUJ4.jpg", "order": 9}, {"name": "R. D. Call", "character": "Jack McCool", "id": 49832, "credit_id": "52fe44e8c3a36847f80b13ed", "cast_id": 20, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 10}, {"name": "Ted Markland", "character": "Deputy Bob", "id": 136195, "credit_id": "52fe44e8c3a36847f80b13f1", "cast_id": 21, "profile_path": "/orBobhJSFxq1TgRM9qKv0lJwV9v.jpg", "order": 11}, {"name": "Leslie Mann", "character": "Wanda", "id": 41087, "credit_id": "52fe44e8c3a36847f80b13f5", "cast_id": 22, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 12}, {"name": "Patrick Kilpatrick", "character": "Finn", "id": 32286, "credit_id": "52fe44e8c3a36847f80b13f9", "cast_id": 23, "profile_path": "/wEu61ecaSkCN1mD4vXf5WlrUKTV.jpg", "order": 13}, {"name": "Luis Contreras", "character": "Comandante Ramirez", "id": 85870, "credit_id": "52fe44e8c3a36847f80b13fd", "cast_id": 24, "profile_path": "/1OZ6UwzgLEFWvHJXyOvZTYuYisq.jpg", "order": 14}, {"name": "Raynor Scheine", "character": "Gas Station Attendant", "id": 21082, "credit_id": "52fe44e8c3a36847f80b1401", "cast_id": 25, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 15}, {"name": "Tiny Ron Taylor", "character": "Jacko the Giant", "id": 98579, "credit_id": "52fe44e8c3a36847f80b1405", "cast_id": 26, "profile_path": "/wSA3KPLbETH9JwyJ8ZvCakb4n8h.jpg", "order": 16}, {"name": "John Paxton", "character": "The Undertaker", "id": 19326, "credit_id": "52fe44e8c3a36847f80b1409", "cast_id": 27, "profile_path": "/bizhhVVs4y8CfHzPfqPYNEvs2eZ.jpg", "order": 17}, {"name": "Michael Cavalieri", "character": "Berto", "id": 112150, "credit_id": "52fe44e8c3a36847f80b140d", "cast_id": 28, "profile_path": "/ckCQxGL1A3NsfwamGXkGOwLcz8d.jpg", "order": 18}, {"name": "Hannes Fritsch", "character": "Santo", "id": 1130949, "credit_id": "52fe44e8c3a36847f80b1411", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Michael Strasser", "character": "Docker", "id": 82687, "credit_id": "52fe44e8c3a36847f80b1415", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Matt O'Toole", "character": "Burke", "id": 79651, "credit_id": "52fe44e8c3a36847f80b1419", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Lin Shaye", "character": "The Madame", "id": 7401, "credit_id": "52fe44e8c3a36847f80b141d", "cast_id": 32, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 22}, {"name": "Larry Holt", "character": "Border Patrolman", "id": 195981, "credit_id": "52fe44e9c3a36847f80b1421", "cast_id": 33, "profile_path": null, "order": 23}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe44e8c3a36847f80b13a1", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 5.9, "runtime": 101}, "9334": {"poster_path": "/gJ8uUDGfZuFyvuJDhgXh44dYqGh.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164996077, "overview": "In ancient Egypt, peasant Mathayus is hired to exact revenge on the powerful Memnon and the sorceress Cassandra, who are ready to overtake Balthazar's village. Amid betrayals, thieves, abductions and more, Mathayus strives to bring justice to his complicated world.", "video": false, "id": 9334, "genres": [{"id": 12, "name": "Adventure"}], "title": "The Scorpion King", "tagline": "Warrior. Legend. King.", "vote_count": 211, "homepage": "http://www.the-scorpion-king.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/qFVW76HRCJFRtTha1vZO1tjYVQ1.jpg", "id": 116669, "name": "The Scorpion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0277296", "adult": false, "backdrop_path": "/sP386SaCMTCz9ixvHpZtra0df49.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alphaville Films", "id": 11462}, {"name": "Kalima Productions GmbH & Co. KG", "id": 7385}, {"name": "World Wrestling Entertainment (WWE)", "id": 7588}], "release_date": "2002-04-16", "popularity": 1.12014663318143, "original_title": "The Scorpion King", "budget": 60000000, "cast": [{"name": "Dwayne Johnson", "character": "Mathayus", "id": 18918, "credit_id": "52fe44e9c3a36847f80b14c5", "cast_id": 20, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Kelly Hu", "character": "Cassandra", "id": 11024, "credit_id": "52fe44e9c3a36847f80b1469", "cast_id": 4, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 1}, {"name": "Michael Clarke Duncan", "character": "Balthazar", "id": 61981, "credit_id": "52fe44e9c3a36847f80b1465", "cast_id": 3, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 2}, {"name": "Steven Brand", "character": "Memnon", "id": 57340, "credit_id": "52fe44e9c3a36847f80b1461", "cast_id": 2, "profile_path": "/kvXkEJykTVeq9NdBNiW3O4e4AAC.jpg", "order": 3}, {"name": "Bernard Hill", "character": "Philos", "id": 1369, "credit_id": "52fe44e9c3a36847f80b14c1", "cast_id": 19, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 4}, {"name": "Grant Heslov", "character": "Arpid", "id": 31511, "credit_id": "52fe44e9c3a36847f80b14c9", "cast_id": 21, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 5}, {"name": "Peter Facinelli", "character": "Takmet", "id": 56857, "credit_id": "52fe44e9c3a36847f80b14cd", "cast_id": 22, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 6}, {"name": "Ralf M\u00f6ller", "character": "Thorak", "id": 942, "credit_id": "52fe44e9c3a36847f80b14d1", "cast_id": 23, "profile_path": "/hkeBpMT7UAPTARD6fPsG10Ob5Cr.jpg", "order": 7}, {"name": "Branscombe Richmond", "character": "Jesup", "id": 106730, "credit_id": "52fe44e9c3a36847f80b14d5", "cast_id": 24, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 8}, {"name": "Roger Rees", "character": "King Pheron", "id": 16407, "credit_id": "52fe44e9c3a36847f80b14d9", "cast_id": 25, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 9}, {"name": "Sherri Howard", "character": "Queen Isis", "id": 1228834, "credit_id": "52fe44e9c3a36847f80b14dd", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Conrad Roberts", "character": "Chieftain", "id": 33688, "credit_id": "52fe44e9c3a36847f80b14e1", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Joseph Ruskin", "character": "Tribal Leader", "id": 15998, "credit_id": "52fe44e9c3a36847f80b14e5", "cast_id": 28, "profile_path": "/5D0Izyi1qHLhlRWLoXgimfN436.jpg", "order": 12}, {"name": "Esteban Cueto", "character": "Third Akkadian", "id": 60653, "credit_id": "52fe44e9c3a36847f80b14e9", "cast_id": 29, "profile_path": "/jJYm6K3g3lQvic2Sgjh9SPb4FDq.jpg", "order": 13}, {"name": "Nils Allen Stewart", "character": "Torturer", "id": 24968, "credit_id": "52fe44e9c3a36847f80b14ed", "cast_id": 30, "profile_path": null, "order": 14}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b146f", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 5.3, "runtime": 92}, "9335": {"poster_path": "/5qTQfPMJHbCSzVrSiFTkjvBTrt0.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85167639, "overview": "Professional driver Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policymaker and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.", "video": false, "id": 9335, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Transporter 2", "tagline": "The Best In The Business Is Back In The Game.", "vote_count": 354, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qDuTIGAEbxF3jP9zNILLAoxNLpU.jpg", "poster_path": "/5MWCU1Eqc2HB6zZKFrGrgdH4d4M.jpg", "id": 9518, "name": "The Transporter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0388482", "adult": false, "backdrop_path": "/oda7cPvPd1EOcJgWrtiMviybPrp.jpg", "production_companies": [{"name": "Canal Plus", "id": 104}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2005-08-02", "popularity": 1.25385871197087, "original_title": "Transporter 2", "budget": 32000000, "cast": [{"name": "Jason Statham", "character": "Frank Martin", "id": 976, "credit_id": "52fe44e9c3a36847f80b1521", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Amber Valletta", "character": "Audrey Billings", "id": 38425, "credit_id": "52fe44e9c3a36847f80b1525", "cast_id": 2, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 1}, {"name": "Kate Nauta", "character": "Lola", "id": 57346, "credit_id": "52fe44e9c3a36847f80b1529", "cast_id": 3, "profile_path": "/2fZTljbCJm2oxVp5Eq1dm623zid.jpg", "order": 2}, {"name": "Alessandro Gassman", "character": "Gianni Chellini", "id": 57345, "credit_id": "52fe44e9c3a36847f80b1575", "cast_id": 17, "profile_path": "/J5MU9aq4IY96EPwAUErjU6URqO.jpg", "order": 3}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Inspector Tarconi", "id": 7693, "credit_id": "52fe44e9c3a36847f80b157f", "cast_id": 19, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 4}, {"name": "Robert Small", "character": "Government Doctor", "id": 1116654, "credit_id": "52fe44e9c3a36847f80b1583", "cast_id": 20, "profile_path": "/uNFXBnlUH89HcG0FTDg70kCWH4q.jpg", "order": 5}, {"name": "Matthew Modine", "character": "Jefferson Billings", "id": 8654, "credit_id": "52fe44e9c3a36847f80b1587", "cast_id": 21, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 6}, {"name": "Jason Flemyng", "character": "Dimitri", "id": 973, "credit_id": "52fe44e9c3a36847f80b158b", "cast_id": 22, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 7}, {"name": "Keith David", "character": "Stappleton", "id": 65827, "credit_id": "52fe44e9c3a36847f80b158f", "cast_id": 23, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 8}, {"name": "Ron Madoff", "character": "Cop", "id": 1286269, "credit_id": "52fe44e9c3a36847f80b1593", "cast_id": 24, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 9}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b152f", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 6.2, "runtime": 87}, "9336": {"poster_path": "/J1UDZYfVaLJjoIfw0VDmpBZ2Sm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81198894, "overview": "New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney realises that he is enjoying being a police cadet and decides he wants to stay... while Harris decides he wants Mahoney out!", "video": false, "id": 9336, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy", "tagline": "What an Institution!", "vote_count": 112, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087928", "adult": false, "backdrop_path": "/qwEKkJMlywLOq624AUtFH6FxlHO.jpg", "production_companies": [{"name": "The Ladd Company", "id": 7965}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1984-03-22", "popularity": 0.793791282485395, "original_title": "Police Academy", "budget": 4500000, "cast": [{"name": "Steve Guttenberg", "character": "Cadet Carey Mahoney", "id": 26472, "credit_id": "52fe44e9c3a36847f80b15c9", "cast_id": 1, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Kim Cattrall", "character": "Cadet Karen Thompson", "id": 2109, "credit_id": "52fe44e9c3a36847f80b15cd", "cast_id": 2, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 1}, {"name": "G. W. Bailey", "character": "Lt. Thaddeus Harris", "id": 27237, "credit_id": "52fe44e9c3a36847f80b15d1", "cast_id": 3, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 2}, {"name": "Bubba Smith", "character": "Cadet Moses Hightower", "id": 57349, "credit_id": "52fe44e9c3a36847f80b15d5", "cast_id": 4, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 3}, {"name": "Donovan Scott", "character": "Cadet Leslie Barbara", "id": 57350, "credit_id": "52fe44e9c3a36847f80b15df", "cast_id": 6, "profile_path": "/8Gd1PcWF5Qapvzia8pxnsnQrdba.jpg", "order": 4}, {"name": "George Gaynes", "character": "Cmndt. Eric Lassard", "id": 57351, "credit_id": "52fe44e9c3a36847f80b15e3", "cast_id": 7, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 5}, {"name": "Andrew Rubin", "character": "Cadet George Mart\u00edn", "id": 57352, "credit_id": "52fe44e9c3a36847f80b15e7", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "David Graf", "character": "Cadet Eugene Tackleberry", "id": 57353, "credit_id": "52fe44e9c3a36847f80b15eb", "cast_id": 9, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 7}, {"name": "Leslie Easterbrook", "character": "Sgt. Debbie Callahan", "id": 22252, "credit_id": "52fe44e9c3a36847f80b15ef", "cast_id": 10, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 8}, {"name": "Michael Winslow", "character": "Cadet Larvelle Jones", "id": 14672, "credit_id": "52fe44e9c3a36847f80b15f3", "cast_id": 11, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 9}, {"name": "Debralee Scott", "character": "Mrs. Fackler", "id": 57354, "credit_id": "52fe44e9c3a36847f80b15f7", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Bruce Mahler", "character": "Cadet Douglas Fackler", "id": 57356, "credit_id": "52fe44e9c3a36847f80b15fb", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Ted Ross", "character": "Capt. Reed", "id": 57357, "credit_id": "52fe44e9c3a36847f80b15ff", "cast_id": 14, "profile_path": "/d9zdWKzAwNalU0BLwOM0aM2xlww.jpg", "order": 12}, {"name": "Scott Thomson", "character": "Cadet Chad Copeland", "id": 9997, "credit_id": "52fe44e9c3a36847f80b1603", "cast_id": 15, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 13}, {"name": "Brant von Hoffman", "character": "Cadet Kyle Blankes", "id": 57358, "credit_id": "52fe44e9c3a36847f80b1607", "cast_id": 16, "profile_path": "/hbHlNyKhCwAZ6We866OBN86Ibgv.jpg", "order": 14}, {"name": "Marion Ramsey", "character": "Laverne Hooks", "id": 186816, "credit_id": "53c0c2160e0a2615890081ca", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Roger Dunn", "character": "Booking Sergeant", "id": 1351508, "credit_id": "54ff7bfa9251413dab000575", "cast_id": 26, "profile_path": null, "order": 16}], "directors": [{"name": "Hugh Wilson", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b15db", "profile_path": "/bJv33aw4D67SbsKHv9Er0MqEEtT.jpg", "id": 28904}], "vote_average": 6.5, "runtime": 96}, "9339": {"poster_path": "/hsiJ9CsCEkUF63xwcbtaCwXuEF3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237681299, "overview": "A workaholic architect finds a universal remote that allows him to fast-forward and rewind to different parts of his life. Complications arise when the remote starts to overrule his choices.", "video": false, "id": 9339, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Click", "tagline": "What If You Had A Remote... That Controlled Your Universe?", "vote_count": 664, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0389860", "adult": false, "backdrop_path": "/cXR4a7WITJbzkVbWQJ3UVkoK2sd.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Revolution Studios", "id": 497}], "release_date": "2006-06-22", "popularity": 1.20433586194057, "original_title": "Click", "budget": 82500000, "cast": [{"name": "Adam Sandler", "character": "Michael Newman", "id": 19292, "credit_id": "52fe44e9c3a36847f80b16f9", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Donna Newman", "id": 3967, "credit_id": "52fe44e9c3a36847f80b16fd", "cast_id": 2, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Morty", "id": 4690, "credit_id": "52fe44e9c3a36847f80b1701", "cast_id": 3, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "David Hasselhoff", "character": "Ammer", "id": 28238, "credit_id": "52fe44e9c3a36847f80b1705", "cast_id": 4, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 3}, {"name": "Sean Astin", "character": "Bill", "id": 1328, "credit_id": "52fe44e9c3a36847f80b1709", "cast_id": 5, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 4}, {"name": "Katie Cassidy", "character": "Samantha Newman at 27 years old", "id": 55775, "credit_id": "52fe44e9c3a36847f80b175b", "cast_id": 19, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 5}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe44e9c3a36847f80b170f", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.0, "runtime": 107}, "9340": {"poster_path": "/bZUbpjwnarSHJK40W9sGpyedWhx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61389680, "overview": "A young teenager named Mikey Walsh finds an old treasure map in his father's attic. Hoping to save their homes from demolition, Mikey and his friends Data Wang, Chunk Cohen, and Mouth Devereaux run off on a big quest to find the secret stash of Pirate One-Eyed Willie.", "video": false, "id": 9340, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Goonies", "tagline": "The pirates map, The villainous crooks, The underground caverns, The booby traps, The skeletons, The monster, The lost treasure, and the magic that is... THE GOONIES.", "vote_count": 452, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0089218", "adult": false, "backdrop_path": "/5JFJjrWraRix9uHrDDcWR0NJBvf.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1985-06-06", "popularity": 0.704699614364947, "original_title": "The Goonies", "budget": 19000000, "cast": [{"name": "Sean Astin", "character": "Mikey Walsh", "id": 1328, "credit_id": "52fe44e9c3a36847f80b1797", "cast_id": 1, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Brand Walsh", "id": 16851, "credit_id": "52fe44e9c3a36847f80b179b", "cast_id": 2, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "Jeff Cohen", "character": "Lawrence 'Chunk' Cohen", "id": 57371, "credit_id": "52fe44e9c3a36847f80b179f", "cast_id": 3, "profile_path": "/cd45BDXkwLVODiG5Xyhq7hfMdBq.jpg", "order": 2}, {"name": "Corey Feldman", "character": "Clark 'Mouth' Devereaux", "id": 3034, "credit_id": "52fe44eac3a36847f80b17a3", "cast_id": 4, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 3}, {"name": "Robert Davi", "character": "Jake Fratelli", "id": 2055, "credit_id": "52fe44eac3a36847f80b17a7", "cast_id": 5, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 4}, {"name": "Kerri Green", "character": "Andy Carmichael", "id": 57372, "credit_id": "52fe44eac3a36847f80b17ab", "cast_id": 6, "profile_path": "/pktpAjKGdHfjBY7iavENfn2jxYC.jpg", "order": 5}, {"name": "Jonathan Ke Quan", "character": "Richard 'Data' Wang", "id": 690, "credit_id": "52fe44eac3a36847f80b17f1", "cast_id": 18, "profile_path": "/1cKtw6cBhWPHtjUBiY3si8odVIE.jpg", "order": 6}, {"name": "Joe Pantoliano", "character": "Francis Fratelli", "id": 532, "credit_id": "52fe44eac3a36847f80b17f5", "cast_id": 19, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 7}, {"name": "Anne Ramsey", "character": "Mama Fratelli", "id": 49944, "credit_id": "52fe44eac3a36847f80b17f9", "cast_id": 20, "profile_path": "/24AFp6szxbyExOewAGrQIVJzlmN.jpg", "order": 8}, {"name": "Martha Plimpton", "character": "Stephanie 'Stef' Steinbrenner", "id": 17495, "credit_id": "52fe44eac3a36847f80b17fd", "cast_id": 21, "profile_path": "/4AoCoaH6agenxberK7QenEQigUc.jpg", "order": 9}, {"name": "Steve Antin", "character": "Troy", "id": 42745, "credit_id": "52fe44eac3a36847f80b1801", "cast_id": 22, "profile_path": "/3GVyNtFWsPz2nCxSgCo6WN6H0UN.jpg", "order": 10}, {"name": "John Matuszak", "character": "Sloth", "id": 64120, "credit_id": "52fe44eac3a36847f80b1805", "cast_id": 23, "profile_path": "/AvOqytADHckPxMEFVddrD4FHTU3.jpg", "order": 11}, {"name": "Lupe Ontiveros", "character": "Rosalita", "id": 28779, "credit_id": "52fe44eac3a36847f80b1809", "cast_id": 24, "profile_path": "/7omMwfHNyQ6T2O8Trppbpj8ED2W.jpg", "order": 12}, {"name": "Mary Ellen Trainor", "character": "Mrs. Walsh", "id": 23967, "credit_id": "52fe44eac3a36847f80b180d", "cast_id": 25, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 13}, {"name": "Keith Walker", "character": "Mr. Walsh", "id": 445708, "credit_id": "52fe44eac3a36847f80b1811", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Curtis Hanson", "character": "Mr. Perkins", "id": 323, "credit_id": "52fe44eac3a36847f80b1815", "cast_id": 27, "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "order": 15}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe44eac3a36847f80b17b1", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 7.0, "runtime": 114}, "109418": {"poster_path": "/xVfzcl1fcTDA4T76enoHF80MR4n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 246984278, "overview": "The all-star comedy cast from Grown Ups returns (with some exciting new additions) for more summertime laughs. Lenny (Adam Sandler) has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises: the last day of school.", "video": false, "id": 109418, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grown Ups 2", "tagline": "Just because they're a little older doesn't mean they've grown up.", "vote_count": 483, "homepage": "http://www.sonypictures.com/movies/grownups2", "belongs_to_collection": {"backdrop_path": "/ahlmYgIHI6oye76bgoUtC01mcrC.jpg", "poster_path": "/8m9PIgdP6Nj18P3thsyI70qs76s.jpg", "id": 180546, "name": "Grown Ups Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2191701", "adult": false, "backdrop_path": "/fAKlRJqKjhXqx8QUdFSUSyPgEdH.jpg", "production_companies": [{"name": "Sony Pictures Entertainment (SPE)", "id": 7431}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2013-07-12", "popularity": 1.22844791268435, "original_title": "Grown Ups 2", "budget": 80000000, "cast": [{"name": "Adam Sandler", "character": "Lenny Feder", "id": 19292, "credit_id": "52fe4ab3c3a36847f81dd1fb", "cast_id": 5, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Kevin James", "character": "Eric Lamonsoff", "id": 32895, "credit_id": "52fe4ab3c3a36847f81dd20b", "cast_id": 10, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 1}, {"name": "Chris Rock", "character": "Kurt McKenzie", "id": 2632, "credit_id": "52fe4ab3c3a36847f81dd203", "cast_id": 8, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 2}, {"name": "David Spade", "character": "Marcus Higgins", "id": 60950, "credit_id": "52fe4ab3c3a36847f81dd213", "cast_id": 13, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Roxanne Chase-Feder", "id": 3136, "credit_id": "52fe4ab3c3a36847f81dd1ff", "cast_id": 7, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "Maya Rudolph", "character": "Deanne McKenzie", "id": 52792, "credit_id": "52fe4ab3c3a36847f81dd20f", "cast_id": 12, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 5}, {"name": "Maria Bello", "character": "Sally Lamonsoff", "id": 49, "credit_id": "52fe4ab3c3a36847f81dd223", "cast_id": 18, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 6}, {"name": "Alexys Nycole Sanchez", "character": "Becky Feder", "id": 1046149, "credit_id": "52fe4ab3c3a36847f81dd217", "cast_id": 15, "profile_path": "/eG4yunVKWzX5GCDRTbaX3RBybhU.jpg", "order": 8}, {"name": "Alex Poncio", "character": "Duffy", "id": 1046150, "credit_id": "52fe4ab3c3a36847f81dd21b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Steve Buscemi", "character": "Wiley", "id": 884, "credit_id": "52fe4ab3c3a36847f81dd21f", "cast_id": 17, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 10}, {"name": "Nick Swardson", "character": "Nick", "id": 32907, "credit_id": "52fe4ab4c3a36847f81dd269", "cast_id": 30, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 11}, {"name": "Colin Quinn", "character": "Dickie Bailey", "id": 1219901, "credit_id": "52fe4ab4c3a36847f81dd31f", "cast_id": 77, "profile_path": "/qKP3sURBluc5NG2g5LrKoVnY5iG.jpg", "order": 12}, {"name": "Tim Meadows", "character": "Malcom", "id": 51857, "credit_id": "52fe4ab4c3a36847f81dd26d", "cast_id": 33, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 13}, {"name": "Jon Lovitz", "character": "Squats Fitness Janitor", "id": 16165, "credit_id": "52fe4ab4c3a36847f81dd271", "cast_id": 34, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 14}, {"name": "Shaquille O'Neal", "character": "Officer Fluzoo", "id": 35806, "credit_id": "52fe4ab4c3a36847f81dd275", "cast_id": 35, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 15}, {"name": "Alexander Ludwig", "character": "Braden", "id": 23498, "credit_id": "52fe4ab4c3a36847f81dd279", "cast_id": 36, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 16}, {"name": "Georgia Engel", "character": "Mrs. Lamonsoff", "id": 52697, "credit_id": "52fe4ab4c3a36847f81dd27d", "cast_id": 37, "profile_path": "/7WfD6MAZtQgT6qIthTDvYzfYj0c.jpg", "order": 17}, {"name": "Peter Dante", "character": "Officer Dante", "id": 20819, "credit_id": "52fe4ab4c3a36847f81dd281", "cast_id": 38, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 18}, {"name": "Oliver Hudson", "character": "Kyle", "id": 62692, "credit_id": "52fe4ab4c3a36847f81dd285", "cast_id": 39, "profile_path": "/hdlPIJyKifjJUat5armDU3bRafM.jpg", "order": 19}, {"name": "Allen Covert", "character": "Hippie Teacher", "id": 20818, "credit_id": "52fe4ab4c3a36847f81dd289", "cast_id": 40, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 20}, {"name": "Steve Austin", "character": "Tommy Cavanugh", "id": 77120, "credit_id": "52fe4ab4c3a36847f81dd28d", "cast_id": 41, "profile_path": "/brwLpcsqly66jchMWjrcrc93siI.jpg", "order": 21}, {"name": "Milo Ventimiglia", "character": "Frat Boy Milo", "id": 16501, "credit_id": "52fe4ab4c3a36847f81dd291", "cast_id": 42, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 22}, {"name": "Jake Goldberg", "character": "Greg Feder", "id": 496591, "credit_id": "52fe4ab4c3a36847f81dd295", "cast_id": 43, "profile_path": "/uPA9EvuZlZuqL3bR0qSynHxs4MJ.jpg", "order": 23}, {"name": "Cameron Bryce", "character": "Keithie Feder", "id": 1271668, "credit_id": "52fe4ab4c3a36847f81dd299", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Ada-Nicole Sanger", "character": "Donna Lamonsoff", "id": 969510, "credit_id": "52fe4ab4c3a36847f81dd29d", "cast_id": 45, "profile_path": "/cIENaDZ7lNedXXDOKeoXqczlgPf.jpg", "order": 25}, {"name": "Frank Gingerich", "character": "Bean Lamonsoff", "id": 1271669, "credit_id": "52fe4ab4c3a36847f81dd2a1", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Morgan Gingerich", "character": "Bean Lamonsoff", "id": 1271670, "credit_id": "52fe4ab4c3a36847f81dd2a5", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Nadji Jeter", "character": "Andre McKenzie", "id": 587035, "credit_id": "52fe4ab4c3a36847f81dd2a9", "cast_id": 48, "profile_path": "/yRSNk2EYupa3Mu5KJXM3VIlkeTG.jpg", "order": 28}, {"name": "China Anne McClain", "character": "Charlotte Mackenzie", "id": 80613, "credit_id": "52fe4ab4c3a36847f81dd2ad", "cast_id": 49, "profile_path": "/xFF0qThpkpUaIh7frUuaYRAwyZq.jpg", "order": 29}, {"name": "Kaleo Elam", "character": "Ronnie Mackenzie", "id": 1271671, "credit_id": "52fe4ab4c3a36847f81dd2b1", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Cheri Oteri", "character": "Penny", "id": 60252, "credit_id": "52fe4ab4c3a36847f81dd2b5", "cast_id": 51, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 31}, {"name": "Ellen Cleghorne", "character": "Mary Fluzoo", "id": 1232807, "credit_id": "52fe4ab4c3a36847f81dd31b", "cast_id": 76, "profile_path": null, "order": 32}, {"name": "April Rose", "character": "Hot Dance Teacher", "id": 1271677, "credit_id": "52fe4ab4c3a36847f81dd2b9", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Dan Patrick", "character": "Gym Teacher", "id": 166029, "credit_id": "52fe4ab4c3a36847f81dd2bd", "cast_id": 54, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 34}, {"name": "Ebony Jo-Ann", "character": "Mama Ronzoni", "id": 142377, "credit_id": "52fe4ab4c3a36847f81dd2c1", "cast_id": 55, "profile_path": "/Ra17Zik0PfabOcHTayW4k8CwB9.jpg", "order": 35}, {"name": "Halston Sage", "character": "Nancy Arbuckle", "id": 934243, "credit_id": "52fe4ab4c3a36847f81dd2c5", "cast_id": 56, "profile_path": "/qS5j5apFwdFdNP4ECoNEU4nLEHm.jpg", "order": 36}, {"name": "Norm Crosby", "character": "Kmart Employee", "id": 88737, "credit_id": "52fe4ab4c3a36847f81dd2c9", "cast_id": 57, "profile_path": "/rWdg52StSxNlIsavgtH4ZrSOwdy.jpg", "order": 37}, {"name": "Melanie Hutsell", "character": "Kmart Mother", "id": 197133, "credit_id": "52fe4ab4c3a36847f81dd2cd", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Jonathan Loughran", "character": "Robideaux", "id": 58477, "credit_id": "52fe4ab4c3a36847f81dd2d1", "cast_id": 59, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 39}, {"name": "Jackie Sandler", "character": "Jackie Tardio", "id": 60959, "credit_id": "52fe4ab4c3a36847f81dd2d5", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Sadie Sandler", "character": "Sadie Tardio", "id": 1202534, "credit_id": "52fe4ab4c3a36847f81dd2d9", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Sunny Sandler", "character": "Sunny Tardio", "id": 1271681, "credit_id": "52fe4ab4c3a36847f81dd2dd", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Chris Berman", "character": "The Great Renaldo", "id": 145881, "credit_id": "52fe4ab4c3a36847f81dd2e1", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Michael Kay", "character": "Coach Romey", "id": 1143597, "credit_id": "52fe4ab4c3a36847f81dd2e5", "cast_id": 64, "profile_path": "/7R23x7b0hTocvolhBzPOro3hoJg.jpg", "order": 44}, {"name": "Richie Minervini", "character": "Principal Tardio", "id": 207005, "credit_id": "52fe4ab4c3a36847f81dd2e9", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Kevin Grady", "character": "Muzby", "id": 963297, "credit_id": "52fe4ab4c3a36847f81dd2ed", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Kamil McFadden", "character": "Bumpty", "id": 1271684, "credit_id": "52fe4ab4c3a36847f81dd2f1", "cast_id": 67, "profile_path": "/wtdSHSw6kUEyNfVPvNR8Wig2rXC.jpg", "order": 47}, {"name": "Andy Samberg", "character": "Male Cheerleader", "id": 62861, "credit_id": "52fe4ab4c3a36847f81dd2f5", "cast_id": 68, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 48}, {"name": "Jorma Taccone", "character": "Male Cheerleader", "id": 62863, "credit_id": "52fe4ab4c3a36847f81dd2f9", "cast_id": 69, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 49}, {"name": "Bobby Moynihan", "character": "Male Cheerleader", "id": 452205, "credit_id": "52fe4ab4c3a36847f81dd2fd", "cast_id": 70, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 50}, {"name": "Akiva Schaffer", "character": "Male Cheerleader", "id": 62854, "credit_id": "52fe4ab4c3a36847f81dd301", "cast_id": 71, "profile_path": "/AndF7ndhBbCgHTicoHjCKDxmoi5.jpg", "order": 51}, {"name": "Erin Heatherton", "character": "Ginger", "id": 1118911, "credit_id": "52fe4ab4c3a36847f81dd305", "cast_id": 72, "profile_path": "/kFUulqawFNnR3fhYplYHUC7MzkL.jpg", "order": 52}, {"name": "Taylor Lautner", "character": "Frat Boy Andy", "id": 84214, "credit_id": "52fe4ab4c3a36847f81dd323", "cast_id": 78, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 53}, {"name": "Patrick Schwarzenegger", "character": "Cooper", "id": 1053422, "credit_id": "52fe4ab4c3a36847f81dd327", "cast_id": 79, "profile_path": "/cUyMEVB8e2zD5UJIEW88Hb3Ejr0.jpg", "order": 54}, {"name": "Jared Sandler", "character": "Frat Boy", "id": 60961, "credit_id": "54ee54dd925141796e004976", "cast_id": 81, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 55}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe4ab3c3a36847f81dd1eb", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.1, "runtime": 100}, "9342": {"poster_path": "/eh59q4ksXDQc97s52FUUQOkE8Th.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 250288523, "overview": "It has been twenty years since Don Diego de la Vega fought Spanish oppression in Alta California as the legendary romantic hero Zorro. Having escaped from prison he transforms troubled bandit Alejandro into his successor, in order to foil the plans of the tyrannical Don Rafael Montero who robbed him of his freedom, his wife, and his precious daughter Elena all those years ago.", "video": false, "id": 9342, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}], "title": "The Mask of Zorro", "tagline": "No one has seen his face... but everyone ... knows this mark.", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AcDbnGiLyBUCW9J4EbYqEIuhokX.jpg", "poster_path": "/ziQDmVR3VE0hC0GDWgaQwz0H3Ff.jpg", "id": 1657, "name": "Zorro Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120746", "adult": false, "backdrop_path": "/734CjgMxoKZ0eTmE0R2WiMZQ5LL.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1998-07-16", "popularity": 1.02568330179795, "original_title": "The Mask of Zorro", "budget": 65000000, "cast": [{"name": "Antonio Banderas", "character": "Alejandro Murrieta / Zorro", "id": 3131, "credit_id": "52fe44eac3a36847f80b193d", "cast_id": 3, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Don Diego de la Vega / Zorro", "id": 4173, "credit_id": "52fe44eac3a36847f80b1941", "cast_id": 4, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Elena Montero / Elena Murrieta", "id": 1922, "credit_id": "52fe44eac3a36847f80b1939", "cast_id": 2, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "Stuart Wilson", "character": "Don Rafael Montero", "id": 14344, "credit_id": "52fe44eac3a36847f80b198d", "cast_id": 17, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 3}, {"name": "Diego Sieres", "character": "Young Joaqu\u00edn Murrieta", "id": 57374, "credit_id": "52fe44eac3a36847f80b1935", "cast_id": 1, "profile_path": null, "order": 4}, {"name": "Jos\u00e9 Mar\u00eda de Tavira", "character": "Young Alejandro Murrieta", "id": 80494, "credit_id": "52fe44eac3a36847f80b1991", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Emiliano Guerra", "character": "Boy Crying", "id": 1077815, "credit_id": "52fe44eac3a36847f80b1995", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Yolanda Orisaga", "character": "Woman Crying", "id": 956973, "credit_id": "52fe44eac3a36847f80b1999", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Paco Morayta", "character": "Undertaker", "id": 83841, "credit_id": "52fe44eac3a36847f80b199d", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "William Marquez", "character": "Fray Felipe", "id": 58637, "credit_id": "52fe44eac3a36847f80b19a1", "cast_id": 22, "profile_path": "/wg8dfUvpeLH7Pwrwsav6yWEUPH2.jpg", "order": 9}, {"name": "Tony Amendola", "character": "Don Luiz", "id": 34842, "credit_id": "52fe44eac3a36847f80b19a5", "cast_id": 23, "profile_path": "/wjft9mXp65SfSo2g3pnLxZUOEzG.jpg", "order": 10}, {"name": "Pedro Altamirano", "character": "Squad Leader", "id": 941030, "credit_id": "52fe44eac3a36847f80b19a9", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Luisa Huertas", "character": "Nanny", "id": 224508, "credit_id": "52fe44eac3a36847f80b19ad", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Mar\u00eda Fern\u00e1ndez Cruz", "character": "Baby Elena de la Vega", "id": 1077816, "credit_id": "52fe44eac3a36847f80b19b1", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Julieta Rosen", "character": "Esperanza de la Vega", "id": 974912, "credit_id": "52fe44eac3a36847f80b19b5", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Ra\u00fal Mart\u00ednez", "character": "Heavyset Lieutenant", "id": 1077818, "credit_id": "52fe44eac3a36847f80b19b9", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Victor Rivers", "character": "Joaqu\u00edn Murrieta", "id": 58648, "credit_id": "52fe44eac3a36847f80b19bd", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "L.Q. Jones", "character": "Three-Fingered Jack", "id": 8262, "credit_id": "52fe44eac3a36847f80b19c1", "cast_id": 31, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 17}, {"name": "Jos\u00e9 P\u00e9rez", "character": "Cpl. Armando Garcia", "id": 109145, "credit_id": "52fe44eac3a36847f80b19c5", "cast_id": 32, "profile_path": "/rON9BAauB6ErVzKKtAln1dE82VZ.jpg", "order": 18}, {"name": "Tony Cabral", "character": "Soldier Holding 'Wanted' Poster", "id": 1031693, "credit_id": "52fe44eac3a36847f80b19c9", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Tony Genaro", "character": "Watering Station Owner", "id": 166606, "credit_id": "52fe44eac3a36847f80b19cd", "cast_id": 34, "profile_path": "/arYAS4M7YUmIlfx7uGVvB7R38OD.jpg", "order": 20}, {"name": "Iv\u00e1n Rafael", "character": "Small Boy at Watering Station", "id": 1077819, "credit_id": "52fe44eac3a36847f80b19d1", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "David Villalpando", "character": "Stupid Soldier", "id": 146797, "credit_id": "52fe44eac3a36847f80b19d5", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Mar\u00eda Fern\u00e1ndez Cruz", "character": "Baby Elena de la Vega", "id": 1077816, "credit_id": "53278f51c3a3683175001255", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "M\u00f3nica Fern\u00e1ndez Cruz", "character": "Baby Elena de la Vega", "id": 1301749, "credit_id": "53278f68c3a36831630011e0", "cast_id": 44, "profile_path": null, "order": 24}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe44eac3a36847f80b1947", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 5.9, "runtime": 136}, "173185": {"poster_path": "/wPOrmnhlfiU3PTRdzmB8DkK2os3.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Alice Lantins is 38, ambitious and so committed to her work that she neglects her personal life. In short, she is the ideal candidate for the next editor of the magazine Rebelle, or would be were it not for the fact that she appears to be stuck in a rut. When Balthazar, a charming 20-year-old, crosses her path, her colleagues begin to see her in a whole new light...", "video": false, "id": 173185, "genres": [{"id": 35, "name": "Comedy"}], "title": "It Boy", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2186812", "adult": false, "backdrop_path": "/5ZQI8fN5iRFqmAIHkHbdS3trU7z.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "TF1", "id": 22123}, {"name": "Echo Films", "id": 7382}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}], "release_date": "2013-03-06", "popularity": 0.176836596596186, "original_title": "20 ans d'\u00e9cart", "budget": 0, "cast": [{"name": "Virginie Efira", "character": "Alice Lantins", "id": 118178, "credit_id": "52fe4d2dc3a36847f8252f1f", "cast_id": 2, "profile_path": "/tsEdSBnqwC4JqwXqjOTNRBmNfmF.jpg", "order": 0}, {"name": "Pierre Niney", "character": "Balthazar Apfel", "id": 145121, "credit_id": "52fe4d2dc3a36847f8252f23", "cast_id": 3, "profile_path": "/g84J44XjdrOsJ9zplB4ClAZpeaB.jpg", "order": 1}, {"name": "Gilles Cohen", "character": "Vincent Khan", "id": 17500, "credit_id": "52fe4d2dc3a36847f8252f27", "cast_id": 4, "profile_path": "/4Iq0KkYMGLXfAmyGXfhPPdRZrmC.jpg", "order": 2}, {"name": "Am\u00e9lie Glenn", "character": "Lise Duch\u00eane", "id": 1073338, "credit_id": "52fe4d2dc3a36847f8252f2b", "cast_id": 5, "profile_path": "/ggZ0UbU81VhcAUyK2t7dTHZVMr6.jpg", "order": 3}, {"name": "Charles Berling", "character": "Luc Apfel", "id": 48576, "credit_id": "52fe4d2dc3a36847f8252f2f", "cast_id": 6, "profile_path": "/5W9uDe33eFYFNOW5lqJVvlzHkzb.jpg", "order": 4}, {"name": "Micha\u00ebl Abiteboul", "character": "Simon Meyer", "id": 224150, "credit_id": "52fe4d2dc3a36847f8252f33", "cast_id": 7, "profile_path": "/h2whvb1GHmiF1FU9KD2DwSEjg7r.jpg", "order": 5}, {"name": "Camille Japy", "character": "Elisabeth Lantins", "id": 35893, "credit_id": "52fe4d2dc3a36847f8252f37", "cast_id": 8, "profile_path": "/xbR1gFPNIAF1Jq0zpYECYxcLYA4.jpg", "order": 6}, {"name": "Diana Stewart", "character": "Tracy Kimmel", "id": 1075112, "credit_id": "52fe4d2ec3a36847f8252f3b", "cast_id": 9, "profile_path": "/xB2EnRPDXhBsm3QgpfXIdlNiFjz.jpg", "order": 7}, {"name": "Camille P\u00e9licier", "character": "Pauline", "id": 1386238, "credit_id": "5469c1c9eaeb816b58002b98", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Jenna Azoulay", "character": "Zo\u00e9", "id": 1386240, "credit_id": "5469c1deeaeb816b46002bec", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Louis-Do de Lencquesaing", "character": "Julien", "id": 230401, "credit_id": "5469c1ef22136e68c7002c40", "cast_id": 18, "profile_path": "/guqKGL4uLouIa4fyCjrq4DmGufe.jpg", "order": 10}, {"name": "Camille Chalons", "character": "Fanny", "id": 1386241, "credit_id": "5469c1ffeaeb816b58002ba3", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Aude P\u00e9pin", "character": "Flora", "id": 1386242, "credit_id": "5469c21922136e68d8002a28", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Arthur Mazet", "character": "Guillaume", "id": 228718, "credit_id": "5469c23ceaeb816b55002e6b", "cast_id": 21, "profile_path": "/32HIGA41JAfCpGX8pvqxLVQouIR.jpg", "order": 13}, {"name": "Sophie-Marie Larrouy", "character": "Cl\u00e9mentine", "id": 1386244, "credit_id": "5469c25022136e68d5002bc1", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Marcella Sbraletta", "character": "Jennifer", "id": 1386246, "credit_id": "5469c267eaeb816b4b002c70", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "David Moreau", "department": "Directing", "job": "Director", "credit_id": "52fe4d2dc3a36847f8252f1b", "profile_path": null, "id": 56735}], "vote_average": 6.1, "runtime": 92}, "9346": {"poster_path": "/cABRMiqw0U7bZvBtryPzuBCsn3f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63500000, "overview": "Meet Joel Goodson, an industrious, college-bound 17-year-old and a responsible, trustworthy son. However, when his parents go away and leave him home alone in the wealthy Chicago suburbs with the Porsche at his disposal he quickly decides he has been good for too long and it is time to enjoy himself. After an unfortunate incident with the Porsche Joel must raise some cash, in a risky way.", "video": false, "id": 9346, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Risky Business", "tagline": "Time of your life, Huh Kid.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086200", "adult": false, "backdrop_path": "/o06wUbxSudBYDSJ8FGUNAdYvSHx.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Geffen Company", "id": 2956}], "release_date": "1983-08-05", "popularity": 0.469500258906764, "original_title": "Risky Business", "budget": 62000000, "cast": [{"name": "Tom Cruise", "character": "Joel Goodsen", "id": 500, "credit_id": "52fe44ebc3a36847f80b1c4b", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Rebecca De Mornay", "character": "Lana", "id": 28412, "credit_id": "52fe44ebc3a36847f80b1c4f", "cast_id": 2, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 1}, {"name": "Joe Pantoliano", "character": "Guido", "id": 532, "credit_id": "52fe44ebc3a36847f80b1c53", "cast_id": 3, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 2}, {"name": "Richard Masur", "character": "Rutherford", "id": 15416, "credit_id": "52fe44ebc3a36847f80b1c57", "cast_id": 4, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 3}, {"name": "Curtis Armstrong", "character": "Miles", "id": 87003, "credit_id": "52fe44ebc3a36847f80b1c79", "cast_id": 13, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 4}, {"name": "Bronson Pinchot", "character": "Barry", "id": 4689, "credit_id": "52fe44ebc3a36847f80b1c7d", "cast_id": 14, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 5}, {"name": "Shera Danese", "character": "Vicki", "id": 1220746, "credit_id": "533bb9f1c3a36844ed000dc7", "cast_id": 15, "profile_path": "/qKIE9ef0cd401qWfrr6Bws0o7qm.jpg", "order": 6}], "directors": [{"name": "Paul Brickman", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1c5d", "profile_path": null, "id": 57383}], "vote_average": 6.1, "runtime": 98}, "140420": {"poster_path": "/xBo8dd2zUbMvcypwScDN3mpN7IZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An urban office worker finds that paper airplanes are instrumental in meeting a girl in ways he never expected.", "video": false, "id": 140420, "genres": [{"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Paperman", "tagline": "", "vote_count": 151, "homepage": "http://www.disneyanimation.com/projects/shorts/paperman/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2388725", "adult": false, "backdrop_path": "/cqn1ynw78Wan37jzs1Ckm7va97G.jpg", "production_companies": [{"name": "Disney", "id": 6421}], "release_date": "2012-11-02", "popularity": 0.969738633616173, "original_title": "Paperman", "budget": 0, "cast": [{"name": "John Kahrs", "character": "George (voice)", "id": 8020, "credit_id": "52fe4a8f9251416c750e6249", "cast_id": 9, "profile_path": null, "order": 0}, {"name": "Kari Wahlgren", "character": "Meg (voice)", "id": 116315, "credit_id": "52fe4a8f9251416c750e6253", "cast_id": 11, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 1}, {"name": "Jeff Turley", "character": "Boss (voice)", "id": 1112515, "credit_id": "52fe4a8e9251416c750e6227", "cast_id": 2, "profile_path": null, "order": 2}], "directors": [{"name": "John Kahrs", "department": "Directing", "job": "Director", "credit_id": "52fe4a8e9251416c750e6223", "profile_path": null, "id": 8020}], "vote_average": 8.4, "runtime": 7}, "9349": {"poster_path": "/zWTLQb41SlEMqPgfQmcsybXyvtP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An American soldier who had been killed during the Vietnam War is revived 25 years later by the military as a semi-android, UniSols, a high-tech soldier of the future. After the failure of the initiative to erase all the soldier's memories, he begins to experience flashbacks that are forcing him to recall his past.", "video": false, "id": 9349, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Universal Soldier", "tagline": "The future has a bad attitude.", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/jAxRrLaMqr3LbvzjISeukJ1x0g4.jpg", "id": 10713, "name": "Universal Soldier Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105698", "adult": false, "backdrop_path": "/wSG78M31C4raIughPjAx1QCLmXZ.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "IndieProd Company Productions", "id": 959}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1992-07-10", "popularity": 0.351818946419377, "original_title": "Universal Soldier", "budget": 0, "cast": [{"name": "Jean-Claude Van Damme", "character": "Luc Devreux/GR44", "id": 15111, "credit_id": "52fe44ebc3a36847f80b1db1", "cast_id": 1, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Dolph Lundgren", "character": "Andrew Scott/GR13", "id": 16644, "credit_id": "52fe44ebc3a36847f80b1db5", "cast_id": 3, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 1}, {"name": "Ally Walker", "character": "Veronica Roberts", "id": 18316, "credit_id": "52fe44ebc3a36847f80b1db9", "cast_id": 5, "profile_path": "/5ktB75N0BEc3IXYBK2xflEYMPfA.jpg", "order": 2}, {"name": "Ed O'Ross", "character": "Colonel Perry", "id": 8658, "credit_id": "52fe44ebc3a36847f80b1dbd", "cast_id": 6, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 3}, {"name": "Ralf M\u00f6ller", "character": "GR76", "id": 942, "credit_id": "52fe44ebc3a36847f80b1dfd", "cast_id": 18, "profile_path": "/hkeBpMT7UAPTARD6fPsG10Ob5Cr.jpg", "order": 4}, {"name": "Jerry Orbach", "character": "Dr. Christopher Gregor", "id": 725, "credit_id": "52fe44ebc3a36847f80b1e01", "cast_id": 19, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 5}, {"name": "Leon Rippy", "character": "Woodward", "id": 15374, "credit_id": "52fe44ebc3a36847f80b1e05", "cast_id": 20, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 6}, {"name": "Tico Wells", "character": "Garth", "id": 103933, "credit_id": "52fe44ebc3a36847f80b1e09", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Robert Trebor", "character": "Motel Owner", "id": 114271, "credit_id": "52fe44ebc3a36847f80b1e0d", "cast_id": 22, "profile_path": "/kbdafrGTyRjrL6lB4jVtoNBSHjK.jpg", "order": 8}, {"name": "Tommy Lister", "character": "GR55", "id": 8396, "credit_id": "52fe44ebc3a36847f80b1e11", "cast_id": 23, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 9}, {"name": "Simon Rhee", "character": "GR61", "id": 158825, "credit_id": "52fe44ebc3a36847f80b1e15", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Rance Howard", "character": "John Devreux", "id": 22250, "credit_id": "54f5cfbb9251412bb6002487", "cast_id": 73, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 11}, {"name": "Lilyan Chauvin", "character": "Mrs. John Devreux", "id": 2072, "credit_id": "54f5cfd99251412bb3002601", "cast_id": 74, "profile_path": "/cL03vrPlSc4RwqydPnPvyCqZpAm.jpg", "order": 12}, {"name": "Thomas Rosales, Jr.", "character": "Wagner", "id": 43010, "credit_id": "54f5d011c3a36835000026b2", "cast_id": 75, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 13}, {"name": "Ned Bellamy", "character": "FBI Agent", "id": 2141, "credit_id": "54f5d0369251412bb6002491", "cast_id": 76, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 14}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1dc3", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.8, "runtime": 102}, "9350": {"poster_path": "/8XefYka77ypAnPJvaVlfUGBBs4a.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 255000000, "overview": "A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers.", "video": false, "id": 9350, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Cliffhanger", "tagline": "The height of adventure.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106582", "adult": false, "backdrop_path": "/t0LyzisNidtm0gjTGWTaQ5WAIGR.jpg", "production_companies": [{"name": "Cliffhanger Productions", "id": 45728}, {"name": "Carolco Pictures", "id": 14723}, {"name": "Canal+", "id": 5358}, {"name": "Pioneer", "id": 45729}, {"name": "RCS Video", "id": 23246}], "release_date": "1993-05-28", "popularity": 2.14083374149063, "original_title": "Cliffhanger", "budget": 65000000, "cast": [{"name": "Sylvester Stallone", "character": "Gabe Walker", "id": 16483, "credit_id": "52fe44ebc3a36847f80b1e55", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "John Lithgow", "character": "Eric Qualen", "id": 12074, "credit_id": "52fe44ebc3a36847f80b1e59", "cast_id": 2, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 1}, {"name": "Michael Rooker", "character": "Hal Tucker", "id": 12132, "credit_id": "52fe44ebc3a36847f80b1e5d", "cast_id": 3, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 2}, {"name": "Janine Turner", "character": "Jessie Deighan", "id": 51580, "credit_id": "52fe44ebc3a36847f80b1e61", "cast_id": 4, "profile_path": "/3VxHcxPzVqRYWIdj8hvp4mDpRbR.jpg", "order": 3}, {"name": "Rex Linn", "character": "Richard Travers", "id": 16937, "credit_id": "52fe44ecc3a36847f80b1ead", "cast_id": 17, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 4}, {"name": "Caroline Goodall", "character": "Kristel - Jet Pilot", "id": 6692, "credit_id": "52fe44ecc3a36847f80b1eb1", "cast_id": 18, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 5}, {"name": "Leon Robinson", "character": "Kynette", "id": 12974, "credit_id": "52fe44ecc3a36847f80b1eb5", "cast_id": 19, "profile_path": "/4i6e0y27mrdz8zBGNiryWV6EFOU.jpg", "order": 6}, {"name": "Craig Fairbrass", "character": "Delmar", "id": 51799, "credit_id": "52fe44ecc3a36847f80b1eb9", "cast_id": 20, "profile_path": "/1IZntbLumM3Ew5LbDaz7tJiISZw.jpg", "order": 7}, {"name": "Gregory Scott Cummins", "character": "Ryan", "id": 44178, "credit_id": "52fe44ecc3a36847f80b1ebd", "cast_id": 21, "profile_path": "/jXJlgaYDCPK8lEyA1mC8mD2hjpG.jpg", "order": 8}, {"name": "Denis Forest", "character": "Heldon", "id": 111078, "credit_id": "52fe44ecc3a36847f80b1ec1", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Michelle Joyner", "character": "Sarah", "id": 30369, "credit_id": "52fe44ecc3a36847f80b1ec5", "cast_id": 23, "profile_path": "/w0HcFkFrhIMBu0CDBNiN5HjZSPy.jpg", "order": 10}, {"name": "Max Perlich", "character": "Evan", "id": 7268, "credit_id": "52fe44ecc3a36847f80b1ec9", "cast_id": 24, "profile_path": "/aITtjR6iSepDooSvVjB1zY5ehYx.jpg", "order": 11}, {"name": "Paul Winfield", "character": "Walter Wright", "id": 1818, "credit_id": "52fe44ecc3a36847f80b1ecd", "cast_id": 25, "profile_path": "/6oc80tWtRg8pRAPXOhV3FQBvBR5.jpg", "order": 12}, {"name": "Ralph Waite", "character": "Frank", "id": 8853, "credit_id": "52fe44ecc3a36847f80b1ed1", "cast_id": 26, "profile_path": "/6djAThCrJarxjKC3AmBJpKsMBLK.jpg", "order": 13}, {"name": "Trey Brownell", "character": "Brett", "id": 948644, "credit_id": "52fe44ecc3a36847f80b1ed5", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1e7f", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.1, "runtime": 112}, "16577": {"poster_path": "/4kQczIhUFTnDWwG6HKsgCxLoi6.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44091067, "overview": "Set in futuristic Metro City, Astro Boy is about a young robot with incredible powers created by a brilliant scientist in the image of the son he has lost. Unable to fulfill the grieving man's expectations, our hero embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before he returns to save Metro City and reconcile with the father who had rejected him.", "video": false, "id": 16577, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Astro Boy", "tagline": "Have a blast.", "vote_count": 158, "homepage": "http://www.astroboy-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375568", "adult": false, "backdrop_path": "/koxKvzuShnLANUXWH1vkJEWigGB.jpg", "production_companies": [{"name": "Tezuka Production Company Ltd.", "id": 3196}, {"name": "Summit Entertainment", "id": 491}, {"name": "Imagi Animation Studios", "id": 3463}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2009-10-22", "popularity": 1.20950501260928, "original_title": "Astro Boy", "budget": 65000000, "cast": [{"name": "Nicolas Cage", "character": "Dr. Tenma (voice)", "id": 2963, "credit_id": "52fe46dd9251416c75086079", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Kristen Bell", "character": "Cora (voice)", "id": 40462, "credit_id": "52fe46dd9251416c7508607d", "cast_id": 2, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Bill Nighy", "character": "Dr. Elefun (voice)", "id": 2440, "credit_id": "52fe46dd9251416c75086081", "cast_id": 3, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 2}, {"name": "Donald Sutherland", "character": "General Stone (voice)", "id": 55636, "credit_id": "52fe46dd9251416c75086085", "cast_id": 4, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 3}, {"name": "Freddie Highmore", "character": "Astro Boy (voice)", "id": 1281, "credit_id": "52fe46dd9251416c75086089", "cast_id": 5, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 4}, {"name": "Eugene Levy", "character": "Orrin (voice)", "id": 26510, "credit_id": "52fe46dd9251416c7508608d", "cast_id": 6, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 5}, {"name": "Sterling Beaumon", "character": "Sludge (voice)", "id": 80641, "credit_id": "52fe46dd9251416c75086091", "cast_id": 7, "profile_path": "/s8uNrpLVeFyNAEGdgHIonCwVSRz.jpg", "order": 6}, {"name": "Nathan Lane", "character": "Ham Egg (voice)", "id": 78729, "credit_id": "52fe46dd9251416c75086095", "cast_id": 8, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Zog (voice)", "id": 2231, "credit_id": "52fe46dd9251416c750860ab", "cast_id": 12, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "Charlize Theron", "character": "Narrator", "id": 6885, "credit_id": "52fe46dd9251416c750860af", "cast_id": 13, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 9}, {"name": "David Alan Grier", "character": "Mr. Squirt / Math Cowboy / Boxer Robot", "id": 58563, "credit_id": "52fe46dd9251416c750860b3", "cast_id": 14, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 10}, {"name": "Alan Tudyk", "character": "Mr. Squeegee / Scrapheap Head / Stinger Two", "id": 21088, "credit_id": "52fe46dd9251416c750860b7", "cast_id": 15, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 11}, {"name": "Newell Alexander", "character": "General Heckler (voice)", "id": 84080, "credit_id": "52fe46dd9251416c750860bb", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Elle Fanning", "character": "Grace (voice)", "id": 18050, "credit_id": "52fe46dd9251416c750860bf", "cast_id": 17, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 13}, {"name": "Pilar Flynn", "character": "Cora's Mom (voice)", "id": 1397895, "credit_id": "55375073c3a36878fd001934", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe46dd9251416c7508609b", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}], "vote_average": 6.1, "runtime": 94}, "9352": {"poster_path": "/pes2HCVX60MNZZdUrKtgVNlv1ig.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20796847, "overview": "Scott Thomas is reluctant when his longtime cyber-buddy from Berlin, Mieke, suggests they meet face-to-face. But when he discovers his pen pal is a gorgeous young woman, Scott embarks with his friends on a trip across Europe. On their wild journey toward Berlin, the buddies meet zealous football hooligans, an overly affectionate Italian and travelogue maven Arthur Frommer.", "video": false, "id": 9352, "genres": [{"id": 35, "name": "Comedy"}], "title": "EuroTrip", "tagline": "No actual Europeans were harmed in the making of this film.", "vote_count": 176, "homepage": "http://www.eurotrip-themovie.com/official_index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0356150", "adult": false, "backdrop_path": "/9pR6mkJrWYCrewjWV1HgaXwL7pB.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Montecito Picture Company, The", "id": 4607}], "release_date": "2004-02-20", "popularity": 0.869177157693055, "original_title": "EuroTrip", "budget": 25000000, "cast": [{"name": "Scott Mechlowicz", "character": "Scott Thomas", "id": 41464, "credit_id": "52fe44ecc3a36847f80b1f1d", "cast_id": 1, "profile_path": "/guAGu4HVNIsDEHfRvkGtPM8ebfh.jpg", "order": 0}, {"name": "Jacob Pitts", "character": "Cooper Harris", "id": 54414, "credit_id": "52fe44ecc3a36847f80b1f21", "cast_id": 2, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 1}, {"name": "Kristin Kreuk", "character": "Fiona", "id": 55751, "credit_id": "52fe44ecc3a36847f80b1f25", "cast_id": 3, "profile_path": "/lR7MPyGFT3nvi79cld387Xdj5Lx.jpg", "order": 2}, {"name": "Cathy Meils", "character": "Mrs. Thomas", "id": 57402, "credit_id": "52fe44ecc3a36847f80b1f29", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Nial Iskhakov", "character": "Bert", "id": 57403, "credit_id": "52fe44ecc3a36847f80b1f2d", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Michelle Trachtenberg", "character": "Jenny", "id": 49961, "credit_id": "52fe44ecc3a36847f80b1f31", "cast_id": 6, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 5}, {"name": "Travis Wester", "character": "Jamie", "id": 57404, "credit_id": "52fe44ecc3a36847f80b1f35", "cast_id": 7, "profile_path": "/3pRPTZ7jhuMJzING7eouoFoqinQ.jpg", "order": 6}, {"name": "Matt Damon", "character": "Donny", "id": 1892, "credit_id": "52fe44ecc3a36847f80b1f39", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 7}, {"name": "Vinnie Jones", "character": "Mad Maynard", "id": 980, "credit_id": "52fe44ecc3a36847f80b1f91", "cast_id": 23, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 8}, {"name": "Diedrich Bader", "character": "Mugger", "id": 5727, "credit_id": "52fe44ecc3a36847f80b1f95", "cast_id": 24, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 9}, {"name": "Lucy Lawless", "character": "Madame Vandersexxx", "id": 20584, "credit_id": "52fe44ecc3a36847f80b1f99", "cast_id": 25, "profile_path": "/wTXMIKm3P0WMF9894Ubgky1mOXu.jpg", "order": 10}, {"name": "Molly Schade", "character": "Candy", "id": 221950, "credit_id": "52fe44ecc3a36847f80b1f9d", "cast_id": 26, "profile_path": "/knyBdQ1XSab4teQJHfu08r6NOs9.jpg", "order": 11}, {"name": "Jessica Boehrs", "character": "Mieke", "id": 946090, "credit_id": "52fe44ecc3a36847f80b1fa1", "cast_id": 27, "profile_path": "/nWZIo3cC6jvLoUpEvyrLGzFf9zL.jpg", "order": 12}, {"name": "Jana Pallaske", "character": "Anna", "id": 20259, "credit_id": "5419b1880e0a266ee30000d5", "cast_id": 28, "profile_path": "/mzeBCXN3vcU6gIc8p7otO85Cbo6.jpg", "order": 13}, {"name": "Dominic Raacke", "character": "Trucker", "id": 32822, "credit_id": "550ec398c3a368488600a294", "cast_id": 29, "profile_path": "/rHMHhPaIjjJHa0IL3KpukJ1vtcV.jpg", "order": 14}, {"name": "Walter Sittler", "character": "Miekes Vater", "id": 36908, "credit_id": "550ec3bb9251410701002a2a", "cast_id": 30, "profile_path": "/fMh2nTKm9IzrC60ZKES41rA0CBe.jpg", "order": 15}, {"name": "David Hasselhoff", "character": "S\u00e4nger", "id": 28238, "credit_id": "550ec3cfc3a3683f0a0027c5", "cast_id": 31, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 16}], "directors": [{"name": "Jeff Schaffer", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b1f3f", "profile_path": "/6xM76XPIpp7IhkR8dCfp8eLRRak.jpg", "id": 57405}], "vote_average": 6.4, "runtime": 93}, "9353": {"poster_path": "/lNue9evMBzqjWE4tJmUegkep8Qs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80197993, "overview": "Nacho Libre is loosely based on the story of Fray Tormenta (\"Friar Storm\"), aka Rev. Sergio Gutierrez Benitez, a real-life Mexican Catholic priest who had a 23-year career as a masked luchador. He competed in order to support the orphanage he directed. The producers are Jack Black, David Klawans, Julia Pistor, and Mike White.", "video": false, "id": 9353, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Nacho Libre", "tagline": "He's not lean. He's not mean. He's nacho average hero.", "vote_count": 95, "homepage": "http://www.nacholibre.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457510", "adult": false, "backdrop_path": "/cb73g9x8mUyxkW0G13wkGo4UoMG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Black & White Productions", "id": 2777}], "release_date": "2006-06-16", "popularity": 0.236340108659254, "original_title": "Nacho Libre", "budget": 32000000, "cast": [{"name": "Jack Black", "character": "Nacho", "id": 70851, "credit_id": "52fe44ecc3a36847f80b1fe7", "cast_id": 4, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Ana de la Reguera", "character": "Sister Encarnaci\u00f3n", "id": 57409, "credit_id": "52fe44ecc3a36847f80b1feb", "cast_id": 5, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 1}, {"name": "H\u00e9ctor Jim\u00e9nez", "character": "Esqueleto", "id": 57410, "credit_id": "52fe44ecc3a36847f80b1fef", "cast_id": 6, "profile_path": "/gdPEBAWjybV1eBp4qvFg2dj410j.jpg", "order": 2}, {"name": "Darius Rose", "character": "Chancho", "id": 57411, "credit_id": "52fe44ecc3a36847f80b1ff3", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Mois\u00e9s Arias", "character": "Juan Pablo", "id": 57412, "credit_id": "52fe44ecc3a36847f80b1ff7", "cast_id": 8, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 4}, {"name": "Carlos Maycotte", "character": "Segundo Nu\u00f1ez", "id": 57413, "credit_id": "52fe44ecc3a36847f80b1ffb", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Richard Montoya", "character": "Guillermo", "id": 57414, "credit_id": "52fe44ecc3a36847f80b1fff", "cast_id": 10, "profile_path": "/6aXusAwLuIEfUvhIlcfp7fPwZJM.jpg", "order": 6}, {"name": "C\u00e9sar Barr\u00f3n", "character": "Ramses", "id": 57415, "credit_id": "52fe44ecc3a36847f80b2003", "cast_id": 11, "profile_path": "/q1Ew2BhMp0ippxKmjYsycVJwdDr.jpg", "order": 7}, {"name": "Rafael Montalvo", "character": "Elderly Monk", "id": 57416, "credit_id": "52fe44ecc3a36847f80b2007", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Julio Sandoval", "character": "Snaggle Tooth Monk", "id": 57417, "credit_id": "52fe44ecc3a36847f80b200b", "cast_id": 13, "profile_path": null, "order": 9}], "directors": [{"name": "Jared Hess", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b1fd7", "profile_path": "/sQsIDQEpPl1ZAUcK6nqRSj4RSZ9.jpg", "id": 53925}], "vote_average": 5.6, "runtime": 92}, "9354": {"poster_path": "/f5eFxKYAd7hN1BxYzBg9qL1SDRe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222724172, "overview": "The scientist father of a teenage girl and boy accidentally shrinks his and two other neighborhood teens to the size of insects. Now the teens must fight diminutive dangers as the father searches for them.", "video": false, "id": 9354, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Honey, I Shrunk the Kids", "tagline": "The most astonishing, innovative, backyard adventure of all time!", "vote_count": 153, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sfT3NqSnjEDY1449qBgQRWOIcaq.jpg", "poster_path": "/xxIwqQARS0RZu5cIENahqZSRw2a.jpg", "id": 72119, "name": "Honey, I Shrunk the Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097523", "adult": false, "backdrop_path": "/5AhzhhWMD7VxjXjvr1Cx3BmPxyj.jpg", "production_companies": [{"name": "Buena Vista", "id": 32}], "release_date": "1989-06-22", "popularity": 0.493546475514099, "original_title": "Honey, I Shrunk the Kids", "budget": 32000000, "cast": [{"name": "Rick Moranis", "character": "Wayne Szalinski", "id": 8872, "credit_id": "52fe44ecc3a36847f80b207b", "cast_id": 1, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 0}, {"name": "Marcia Strassman", "character": "Diane Szalinski", "id": 57418, "credit_id": "52fe44ecc3a36847f80b207f", "cast_id": 2, "profile_path": "/7ZtYDqLLCiqUK4z18H1tKusBQnL.jpg", "order": 1}, {"name": "Matt Frewer", "character": "Russell Thompson Sr.", "id": 40009, "credit_id": "52fe44ecc3a36847f80b2083", "cast_id": 3, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 2}, {"name": "Kristine Sutherland", "character": "Mae Thompson", "id": 57419, "credit_id": "52fe44ecc3a36847f80b2087", "cast_id": 4, "profile_path": "/pQ4N2UPmgNQqlc290MII1OMel2l.jpg", "order": 3}, {"name": "Amy O'Neill", "character": "Amy Szalinski", "id": 57420, "credit_id": "52fe44ecc3a36847f80b208b", "cast_id": 5, "profile_path": "/1lPgxnVACh1PThnW60ivJl5hn7V.jpg", "order": 4}, {"name": "Robert Oliveri", "character": "Nick Szalinski", "id": 1908, "credit_id": "52fe44ecc3a36847f80b208f", "cast_id": 6, "profile_path": "/hakmz3osPPPI1zPXaQjXxkj2avn.jpg", "order": 5}, {"name": "Thomas Wilson Brown", "character": "Russell Thompson Jr.", "id": 57421, "credit_id": "52fe44ecc3a36847f80b2093", "cast_id": 7, "profile_path": "/rFSIqvXMrafOSKhXJDSbiDXarUC.jpg", "order": 6}, {"name": "Jared Rushton", "character": "Ronald Thompson", "id": 57422, "credit_id": "52fe44ecc3a36847f80b2097", "cast_id": 8, "profile_path": "/qbyP9UM7xHEFyrop3XKgb26V55q.jpg", "order": 7}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b20b5", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 5.9, "runtime": 93}, "9355": {"poster_path": "/hFqfWHd5p8uiAdrBRdAs1mopRRa.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 0, "overview": "Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.", "video": false, "id": 9355, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Mad Max Beyond Thunderdome", "tagline": "A lone warrior searching for his destiny...a tribe of lost children waiting for a hero...in a world battling to survive, they face a woman determined to rule.", "vote_count": 147, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rY4F8uRJN3IWsmtFrT7HO4WKUk0.jpg", "poster_path": "/uuvSvLb3ntGA9B0wx2JskVDSuWi.jpg", "id": 8945, "name": "Mad Max Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089530", "adult": false, "backdrop_path": "/r3MhvwPC8zFBAv8HL5WBtl3F8cn.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1985-08-06", "popularity": 2.5733699963742, "original_title": "Mad Max Beyond Thunderdome", "budget": 0, "cast": [{"name": "Mel Gibson", "character": "Mad Max Rockatansky", "id": 2461, "credit_id": "52fe44ecc3a36847f80b2133", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Tina Turner", "character": "Aunty Entity", "id": 1459, "credit_id": "52fe44ecc3a36847f80b2137", "cast_id": 2, "profile_path": "/yhA10YPoQwGWtvd4TUm4X6tkv1x.jpg", "order": 1}, {"name": "Bruce Spence", "character": "Jedediah the Pilot", "id": 27752, "credit_id": "52fe44ecc3a36847f80b213b", "cast_id": 3, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 2}, {"name": "Helen Buday", "character": "Savannah Nix", "id": 57424, "credit_id": "52fe44ecc3a36847f80b213f", "cast_id": 5, "profile_path": "/saALgdtjdNzD89RgF26n0PAmlyX.jpg", "order": 3}, {"name": "Angelo Rossitto", "character": "Master", "id": 97985, "credit_id": "52fe44ecc3a36847f80b2179", "cast_id": 17, "profile_path": "/VY3ygib44431zOtUBEwlnCWJeK.jpg", "order": 4}, {"name": "Adam Cockburn", "character": "Jedediah Jr.", "id": 1001970, "credit_id": "52fe44ecc3a36847f80b219b", "cast_id": 23, "profile_path": "/32ebTXNoGFvUUBbutF6hWAnvifS.jpg", "order": 5}, {"name": "Frank Thring", "character": "The Collector", "id": 10025, "credit_id": "53053fa79251413497069917", "cast_id": 34, "profile_path": "/3IGtuwC2BdyfYlPqwFw1Z2yI7TH.jpg", "order": 6}, {"name": "Paul Larsson", "character": "Blaster", "id": 952227, "credit_id": "52fe44ecc3a36847f80b21a3", "cast_id": 25, "profile_path": "/uC5ULVMAqwgfvbJwZn87VxymV0.jpg", "order": 7}, {"name": "Angry Anderson", "character": "Ironbar", "id": 220829, "credit_id": "52fe44ecc3a36847f80b21a7", "cast_id": 26, "profile_path": "/385d6pnfIdDMDB1H2xyJI6ZDTro.jpg", "order": 8}, {"name": "Robert Grubb", "character": "Pig Killer", "id": 127135, "credit_id": "52fe44ecc3a36847f80b21ab", "cast_id": 27, "profile_path": "/x4D58WbP5KUDHpRx8Y39is6QZHj.jpg", "order": 9}, {"name": "George Spartels", "character": "Blackfinger", "id": 938578, "credit_id": "52fe44ecc3a36847f80b21af", "cast_id": 28, "profile_path": "/2bUmt8QKcOJUJbhNj40iN0dRiZw.jpg", "order": 10}, {"name": "Edwin Hodgeman", "character": "Dr. Dealgood", "id": 79376, "credit_id": "52fe44ecc3a36847f80b21b3", "cast_id": 29, "profile_path": "/cubjtDar7Rmqvft7xEJWYKOIitw.jpg", "order": 11}, {"name": "Bob Hornery", "character": "Waterseller", "id": 187134, "credit_id": "52fe44ecc3a36847f80b21b7", "cast_id": 30, "profile_path": "/mH1PEPL51cq5hhP9ITL2M4PhNNQ.jpg", "order": 12}, {"name": "Andrew Oh", "character": "Ton Ton Tattoo", "id": 1125226, "credit_id": "52fe44ecc3a36847f80b21bb", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Ollie Hall", "character": "Aunty's Guard", "id": 138580, "credit_id": "52fe44ecc3a36847f80b21bf", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Lee Rice", "character": "Aunty's Guard", "id": 1125227, "credit_id": "52fe44ecc3a36847f80b21c3", "cast_id": 33, "profile_path": "/cimuUZEiSBwI3RGpYdknar4UQNZ.jpg", "order": 15}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b2163", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}, {"name": "George Ogilvie", "department": "Directing", "job": "Director", "credit_id": "52fe44ecc3a36847f80b2169", "profile_path": null, "id": 57433}], "vote_average": 5.8, "runtime": 107}, "1164": {"poster_path": "/fxneN0EQZwTfAfhTGUvUuIn6PLi.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135330182, "overview": "Tragedy strikes a married couple on vacation in the Moroccan desert, touching off an interlocking story involving four different families.", "video": false, "id": 1164, "genres": [{"id": 18, "name": "Drama"}], "title": "Babel", "tagline": "If You Want to be Understood...Listen", "vote_count": 265, "homepage": "http://www.babelthemovie.ru/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0449467", "adult": false, "backdrop_path": "/uHx9E9xqSgOBoRvL4shmMNu8Ojc.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Anonymous Content", "id": 10039}, {"name": "Zeta Film", "id": 11230}, {"name": "Central Films", "id": 11258}, {"name": "Media Rights Capital", "id": 2531}], "release_date": "2006-09-08", "popularity": 0.912655938376011, "original_title": "Babel", "budget": 25000000, "cast": [{"name": "Brad Pitt", "character": "Richard", "id": 287, "credit_id": "52fe42e9c3a36847f802c221", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Susan", "id": 112, "credit_id": "52fe42e9c3a36847f802c225", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Gael Garc\u00eda Bernal", "character": "Santiago", "id": 258, "credit_id": "52fe42e9c3a36847f802c29d", "cast_id": 36, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 2}, {"name": "Rinko Kikuchi", "character": "Cheiko", "id": 18054, "credit_id": "52fe42e9c3a36847f802c2a1", "cast_id": 40, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 3}, {"name": "Adriana Barraza", "character": "Amelia", "id": 270, "credit_id": "52fe42e9c3a36847f802c299", "cast_id": 33, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 4}, {"name": "Mohamed Akhzam", "character": "Anwar", "id": 17118, "credit_id": "52fe42e9c3a36847f802c27d", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Peter Wight", "character": "Tom", "id": 17476, "credit_id": "52fe42e9c3a36847f802c281", "cast_id": 18, "profile_path": "/cjERr21Oo197GJGhPC9HHHhxqdd.jpg", "order": 6}, {"name": "Harriet Walter", "character": "Lilly", "id": 17477, "credit_id": "52fe42e9c3a36847f802c285", "cast_id": 19, "profile_path": "/vfpIPsC27D1ONVres7j3DgWYzdN.jpg", "order": 7}, {"name": "Trevor Martin", "character": "Douglas", "id": 17478, "credit_id": "52fe42e9c3a36847f802c289", "cast_id": 20, "profile_path": "/zvz3ZEm0BNwPVQ1gMPh1bm00eQy.jpg", "order": 8}, {"name": "Matyelok Gibbs", "character": "Elyse", "id": 17479, "credit_id": "52fe42e9c3a36847f802c28d", "cast_id": 21, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 9}, {"name": "Claudine Acs", "character": "Jane", "id": 17481, "credit_id": "52fe42e9c3a36847f802c291", "cast_id": 23, "profile_path": "/9bFLw0HFWSJadjKBqq4LoEZIuma.jpg", "order": 10}, {"name": "Michael Maloney", "character": "James", "id": 17483, "credit_id": "52fe42e9c3a36847f802c295", "cast_id": 25, "profile_path": "/f0rV6ZXr8W6BkSCFeJo2KXdnD4A.jpg", "order": 11}, {"name": "Michael Pe\u00f1a", "character": "John - Border Patrol", "id": 454, "credit_id": "52fe42e9c3a36847f802c2cf", "cast_id": 56, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 12}, {"name": "Clifton Collins, Jr.", "character": "Officer at Border Crossing", "id": 5365, "credit_id": "52fe42e9c3a36847f802c2d3", "cast_id": 57, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 13}, {"name": "K\u014dji Yakusho", "character": "Yasujiro Wataya", "id": 18056, "credit_id": "52fe42e9c3a36847f802c2d7", "cast_id": 58, "profile_path": "/mG4niNLZbyKHEfCA7EJP8vsi7rV.jpg", "order": 14}, {"name": "M\u00f3nica del Carmen", "character": "Lucia", "id": 1376187, "credit_id": "54e4e9f5c3a3682b08000040", "cast_id": 59, "profile_path": null, "order": 15}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c22b", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 6.5, "runtime": 143}, "9357": {"poster_path": "/6ke85Kb6aX8RunZLwKpXCKYO9xv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52223306, "overview": "Sy \"the photo guy\" Parrish has lovingly developed photos for the Yorkin family since their son was a baby. But as the Yorkins' lives become fuller, Sy's only seems lonelier, until he eventually believes he's part of their family. When \"Uncle\" Sy's picture-perfect fantasy collides with an ugly dose of reality, what happens next \"has the spine-tingling elements of the best psychological thrillers!\"", "video": false, "id": 9357, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "One Hour Photo", "tagline": "The things that we fear the most have already happened to us...", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265459", "adult": false, "backdrop_path": "/hWoZ4fpl9sTA6CnoHRgvWRn4P9b.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Catch 23 Entertainment", "id": 7053}], "release_date": "2002-08-21", "popularity": 0.210675016254357, "original_title": "One Hour Photo", "budget": 12000000, "cast": [{"name": "Robin Williams", "character": "Seymour Parrish", "id": 2157, "credit_id": "52fe44edc3a36847f80b2241", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Connie Nielsen", "character": "Nina Yorkin", "id": 935, "credit_id": "52fe44edc3a36847f80b2245", "cast_id": 2, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 1}, {"name": "Michael Vartan", "character": "Will Yorkin", "id": 15424, "credit_id": "52fe44edc3a36847f80b2249", "cast_id": 3, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 2}, {"name": "Erin Daniels", "character": "Maya Burson", "id": 18662, "credit_id": "52fe44edc3a36847f80b227d", "cast_id": 13, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 3}, {"name": "Eriq La Salle", "character": "Det. James Van Der Zee", "id": 23628, "credit_id": "52fe44edc3a36847f80b2281", "cast_id": 14, "profile_path": "/iUjzxU9h9omJ9OTVkXreu6Q7YsK.jpg", "order": 4}, {"name": "Gary Cole", "character": "Bill Owens", "id": 21163, "credit_id": "52fe44edc3a36847f80b2285", "cast_id": 15, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 5}, {"name": "Paul Hansen Kim", "character": "Yoshi Araki", "id": 1068107, "credit_id": "52fe44edc3a36847f80b2289", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Dylan Smith", "character": "Jake Yorkin", "id": 1172661, "credit_id": "52fe44edc3a36847f80b228d", "cast_id": 17, "profile_path": "/z2PRKKGdq0P8tbFmW97KCI2yPgq.jpg", "order": 7}], "directors": [{"name": "Mark Romanek", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b2273", "profile_path": "/iQoFOhNmygHKRWJXfyLkHKgw5Zj.jpg", "id": 57446}], "vote_average": 6.2, "runtime": 96}, "9358": {"poster_path": "/2Tj8YJJuahzwUbdYDgydYX4Yj4Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90426405, "overview": "When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.", "video": false, "id": 9358, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Final Destination 2", "tagline": "Death is like a boomerang. it keeps coming back", "vote_count": 249, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0309593", "adult": false, "backdrop_path": "/9CgvUnfd5OzKlZkrxGGvCFQNQEV.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Zide-Perry Productions", "id": 3169}], "release_date": "2003-01-31", "popularity": 0.813186153216517, "original_title": "Final Destination 2", "budget": 26000000, "cast": [{"name": "Ali Larter", "character": "Clear Rivers", "id": 17303, "credit_id": "52fe44edc3a36847f80b22c9", "cast_id": 1, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 0}, {"name": "A.J. Cook", "character": "Kimberly Corman", "id": 17236, "credit_id": "52fe44edc3a36847f80b22cd", "cast_id": 2, "profile_path": "/6mSStsETn8o8bctan96koKYTRnd.jpg", "order": 1}, {"name": "Michael Landes", "character": "Officer Thomas Burke", "id": 57428, "credit_id": "52fe44edc3a36847f80b22d1", "cast_id": 3, "profile_path": "/rQ9ZfXR5w7cE1Pa4FSFAqmvfzLb.jpg", "order": 2}, {"name": "Tony Todd", "character": "William Bludworth", "id": 19384, "credit_id": "52fe44edc3a36847f80b22d5", "cast_id": 4, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 3}, {"name": "Keegan Connor Tracy", "character": "Kat", "id": 42710, "credit_id": "52fe44edc3a36847f80b2327", "cast_id": 18, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 4}, {"name": "Terrence 'T.C.' Carson", "character": "Eugene Dix", "id": 233191, "credit_id": "52fe44edc3a36847f80b232b", "cast_id": 19, "profile_path": "/eto2MDC4VXLGiPOXNqSdlWJ5yxL.jpg", "order": 5}, {"name": "Lynda Boyd", "character": "Nora Carpenter", "id": 20188, "credit_id": "52fe44edc3a36847f80b232f", "cast_id": 20, "profile_path": "/cZWUVqDrMpQbNOuZAnXuiprU994.jpg", "order": 6}, {"name": "James Kirk", "character": "Tim Carpenter", "id": 58374, "credit_id": "52fe44edc3a36847f80b2333", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "David Paetkau", "character": "Evan Lewis", "id": 33293, "credit_id": "52fe44edc3a36847f80b2337", "cast_id": 22, "profile_path": "/xOAjc34j0fZlKSb6I3cpTwHStar.jpg", "order": 8}, {"name": "Justina Machado", "character": "Isabella Hudson", "id": 95517, "credit_id": "52fe44edc3a36847f80b233b", "cast_id": 23, "profile_path": "/rklLmYPB4fKFP3mKZw2C3oWNaQJ.jpg", "order": 9}, {"name": "Sarah Carter", "character": "Shaina", "id": 56825, "credit_id": "52fe44edc3a36847f80b233f", "cast_id": 24, "profile_path": "/sLrzKbriBxBGP8VTJMiEwc9RMSl.jpg", "order": 10}, {"name": "Alejandro Rae", "character": "Dano (as Alex Rae)", "id": 90132, "credit_id": "52fe44edc3a36847f80b2343", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Shaun Sipos", "character": "Frankie", "id": 65772, "credit_id": "52fe44edc3a36847f80b2347", "cast_id": 26, "profile_path": "/zg0BVYdso2eaPuGu9zT6e2uKIIj.jpg", "order": 12}, {"name": "Andrew Airlie", "character": "Mr. Corman", "id": 41436, "credit_id": "52fe44edc3a36847f80b234b", "cast_id": 27, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 13}, {"name": "Noel Fisher", "character": "Brian Gibbons", "id": 80352, "credit_id": "53ee7fde0e0a267a9e0012a1", "cast_id": 30, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 14}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b22db", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 5.9, "runtime": 90}, "9359": {"poster_path": "/vBQjwzheZGwNpLQSdp671X0Nu6O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Maverick is a gambler who would rather con someone than fight them. He needs an additional three thousand dollars in order to enter a Winner Take All poker game that begins in a few days. He tries to win some, tries to collect a few debts, and recover a little loot for the reward. He joins forces with a woman gambler with a marvelous southern accent as the two both try and enter the game.", "video": false, "id": 9359, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Maverick", "tagline": "In their hands, a deck of cards was the only thing more dangerous than a gun.", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110478", "adult": false, "backdrop_path": "/v66qzYKRyVGN5Oa6GqlgdPw6ITb.jpg", "production_companies": [{"name": "Icon Entertainment International", "id": 4564}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1994-05-20", "popularity": 0.42166331474148, "original_title": "Maverick", "budget": 0, "cast": [{"name": "Mel Gibson", "character": "Bret Maverick", "id": 2461, "credit_id": "52fe44edc3a36847f80b23d9", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Annabelle Bransford", "id": 1038, "credit_id": "52fe44edc3a36847f80b23dd", "cast_id": 2, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "James Garner", "character": "Marshal Zane Cooper", "id": 16896, "credit_id": "52fe44edc3a36847f80b23e1", "cast_id": 3, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 2}, {"name": "Graham Greene", "character": "Joseph", "id": 6804, "credit_id": "52fe44edc3a36847f80b23e5", "cast_id": 4, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Angel", "id": 658, "credit_id": "52fe44edc3a36847f80b23e9", "cast_id": 5, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "James Coburn", "character": "Commodore Duvall", "id": 5563, "credit_id": "52fe44edc3a36847f80b23ed", "cast_id": 6, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 5}, {"name": "Dub Taylor", "character": "Room Clerk", "id": 6463, "credit_id": "52fe44edc3a36847f80b2427", "cast_id": 16, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 6}, {"name": "Geoffrey Lewis", "character": "Matthew Wicker / Eugene, Banker", "id": 18071, "credit_id": "52fe44edc3a36847f80b242b", "cast_id": 17, "profile_path": "/w6uRlwTKRpXELfVwKHC9yWEDqxy.jpg", "order": 7}, {"name": "Paul L. Smith", "character": "The Archduke", "id": 39782, "credit_id": "52fe44edc3a36847f80b242f", "cast_id": 18, "profile_path": "/1NZXecko55r4vchJkUAshliIctS.jpg", "order": 8}, {"name": "Dan Hedaya", "character": "Twitchy, Riverboat Poker Player", "id": 6486, "credit_id": "52fe44edc3a36847f80b2433", "cast_id": 19, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 9}, {"name": "Dennis Fimple", "character": "Stuttering", "id": 27742, "credit_id": "52fe44edc3a36847f80b2437", "cast_id": 20, "profile_path": "/iqufXf1lSczFfi8ZKfwD35jwpdF.jpg", "order": 10}, {"name": "Denver Pyle", "character": "Old Gambler on Riverboat", "id": 6462, "credit_id": "52fe44edc3a36847f80b243b", "cast_id": 21, "profile_path": "/cnO648FW7r1NQqHZsPkJBACfXal.jpg", "order": 11}, {"name": "Clint Black", "character": "Sweet-Faced Gambler", "id": 109577, "credit_id": "52fe44edc3a36847f80b243f", "cast_id": 22, "profile_path": "/irN7fFQccYC4vCv9unnVbW3qEVA.jpg", "order": 12}, {"name": "Max Perlich", "character": "Johnny Hardin", "id": 7268, "credit_id": "52fe44edc3a36847f80b2443", "cast_id": 23, "profile_path": "/aITtjR6iSepDooSvVjB1zY5ehYx.jpg", "order": 13}, {"name": "Art LaFleur", "character": "Poker Player (as Art La Fleur)", "id": 44792, "credit_id": "52fe44edc3a36847f80b2447", "cast_id": 24, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 14}, {"name": "Leo Gordon", "character": "Poker Player (as Leo V. Gordon)", "id": 95082, "credit_id": "52fe44edc3a36847f80b244b", "cast_id": 25, "profile_path": "/pd3Nbf2GqNW2800GB4IpTEHkSDf.jpg", "order": 15}, {"name": "Paul Tuerpe", "character": "Poker Player", "id": 159013, "credit_id": "52fe44edc3a36847f80b244f", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Jean De Baer", "character": "Mary Margret", "id": 78518, "credit_id": "52fe44edc3a36847f80b2453", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Paul Brinegar", "character": "Stage Driver", "id": 106611, "credit_id": "52fe44edc3a36847f80b2457", "cast_id": 28, "profile_path": "/8YOaYazXeGZLRNcYcson7vym4Tr.jpg", "order": 18}, {"name": "Hal Ketchum", "character": "Bank Robber", "id": 233499, "credit_id": "52fe44edc3a36847f80b245b", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Corey Feldman", "character": "Bank Robber", "id": 3034, "credit_id": "52fe44edc3a36847f80b245f", "cast_id": 30, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 20}, {"name": "John M. Woodward", "character": "Bank Robber (as John Woodward)", "id": 233500, "credit_id": "52fe44edc3a36847f80b2463", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Jesse Eric Carroll", "character": "Stable Boy", "id": 233501, "credit_id": "52fe44edc3a36847f80b2467", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Toshonnie Touchin", "character": "Stable Boy", "id": 233502, "credit_id": "52fe44edc3a36847f80b246b", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "John Meier", "character": "Unshaven Man", "id": 194654, "credit_id": "52fe44edc3a36847f80b246f", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Steven Chambers", "character": "Unshaven Man (as Steve Chambers)", "id": 139999, "credit_id": "52fe44edc3a36847f80b2473", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Doc Duhame", "character": "Unshaven Man", "id": 139993, "credit_id": "52fe44edc3a36847f80b2477", "cast_id": 36, "profile_path": "/cFzYXHfoT86jiJWgH43pV8y9iIq.jpg", "order": 26}, {"name": "Lauren Shuler Donner", "character": "Mrs. D., Bathhouse Maid (as Lauren Shuler-Donner)", "id": 7200, "credit_id": "52fe44edc3a36847f80b247f", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Courtney Barilla", "character": "Music Box Girl", "id": 115889, "credit_id": "52fe44edc3a36847f80b2483", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Kimberly Cullum", "character": "Music Box Girl", "id": 170214, "credit_id": "52fe44edc3a36847f80b2487", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Gary Richard Frank", "character": "Crooked Dealer", "id": 219262, "credit_id": "52fe44edc3a36847f80b248b", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Read Morgan", "character": "Dealer", "id": 99725, "credit_id": "52fe44edc3a36847f80b248f", "cast_id": 42, "profile_path": "/stXkSnEaGj9cSLIdiqlCWzasV0O.jpg", "order": 32}, {"name": "Steve Kahan", "character": "Dealer", "id": 14328, "credit_id": "52fe44edc3a36847f80b2493", "cast_id": 43, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 33}, {"name": "Stephen Liska", "character": "Dealer", "id": 58559, "credit_id": "52fe44edc3a36847f80b2497", "cast_id": 44, "profile_path": "/aMpEuoFVA5xd3Pbqs97SkFpJjhe.jpg", "order": 34}, {"name": "Robert Jones", "character": "Bank Employee", "id": 114745, "credit_id": "52fe44edc3a36847f80b249b", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "J. Mills Goodloe", "character": "Telegraph Operator (as John Mills Goodloe)", "id": 225499, "credit_id": "52fe44edc3a36847f80b249f", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Vilmos Zsigmond", "character": "Albert Bierstadt", "id": 12235, "credit_id": "52fe44edc3a36847f80b24a3", "cast_id": 47, "profile_path": "/zItpdF2B0mohQSFs40E7eUg3nkL.jpg", "order": 37}, {"name": "Waylon Jennings", "character": "Man with Concealed Guns", "id": 111270, "credit_id": "52fe44edc3a36847f80b24a7", "cast_id": 48, "profile_path": "/r4eEaGt4MlZLQgG9ld4K8BKacen.jpg", "order": 38}, {"name": "Kathy Mattea", "character": "Woman with Concealed Guns", "id": 180671, "credit_id": "52fe44edc3a36847f80b24ab", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Carlene Carter", "character": "Waitress", "id": 233503, "credit_id": "52fe44edc3a36847f80b24af", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Vince Gill", "character": "Spectator", "id": 181455, "credit_id": "52fe44edc3a36847f80b24b3", "cast_id": 51, "profile_path": "/rnzo0u6BTUhyKjG9BZII8uAM4sX.jpg", "order": 41}, {"name": "Janis Oliver Gill", "character": "Spectator (as Janice Gill)", "id": 233504, "credit_id": "52fe44edc3a36847f80b24b7", "cast_id": 52, "profile_path": null, "order": 42}, {"name": "William Smith", "character": "Riverboat Poker Player", "id": 98102, "credit_id": "52fe44edc3a36847f80b24bb", "cast_id": 53, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 43}, {"name": "Chuck Hart", "character": "Riverboat Poker Player", "id": 106337, "credit_id": "52fe44edc3a36847f80b24bf", "cast_id": 54, "profile_path": null, "order": 44}, {"name": "Doug McClure", "character": "Riverboat Poker Player", "id": 50967, "credit_id": "52fe44edc3a36847f80b24c3", "cast_id": 55, "profile_path": "/wxJYjpKer6vhDpMMTfxGggfdLC6.jpg", "order": 45}, {"name": "Henry Darrow", "character": "Riverboat Poker Player", "id": 44686, "credit_id": "52fe44edc3a36847f80b24c7", "cast_id": 56, "profile_path": "/2ilQFQafSbeuxpCDTLeeTmafbiO.jpg", "order": 46}, {"name": "Michael Paul Chan", "character": "Riverboat Poker Player", "id": 17355, "credit_id": "52fe44edc3a36847f80b24cb", "cast_id": 57, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 47}, {"name": "Richard Blum", "character": "Riverboat Poker Player", "id": 102569, "credit_id": "52fe44edc3a36847f80b24cf", "cast_id": 58, "profile_path": null, "order": 48}, {"name": "Bert Remsen", "character": "Riverboat Poker Player", "id": 30621, "credit_id": "52fe44edc3a36847f80b24d3", "cast_id": 59, "profile_path": "/kLddDLz6g3vBaTnmPD0yzPj04Bo.jpg", "order": 49}, {"name": "Robert Fuller", "character": "Riverboat Poker Player", "id": 38129, "credit_id": "52fe44edc3a36847f80b24d7", "cast_id": 60, "profile_path": "/wOUkvybLEYDVYJcaofIKS3Bioul.jpg", "order": 50}, {"name": "Donal Gibson", "character": "Riverboat Poker Player", "id": 110315, "credit_id": "52fe44edc3a36847f80b24db", "cast_id": 61, "profile_path": "/4MKTSwTpl1BaXD554MsrwK7uJqg.jpg", "order": 51}, {"name": "William Marshall", "character": "Riverboat Poker Player", "id": 16028, "credit_id": "52fe44edc3a36847f80b24df", "cast_id": 62, "profile_path": "/mNkUISsKxPebQ76HzDKJvCwZkl7.jpg", "order": 52}, {"name": "Bill Henderson", "character": "Riverboat Poker Player (as Bill Handerson)", "id": 80746, "credit_id": "52fe44edc3a36847f80b24e3", "cast_id": 63, "profile_path": null, "order": 53}, {"name": "Cal Bartlett", "character": "Riverboat Poker Player", "id": 45388, "credit_id": "52fe44edc3a36847f80b24e7", "cast_id": 64, "profile_path": "/o0ZLqM29kF8HfzZgZOc1cLvpX9h.jpg", "order": 54}, {"name": "Danny Glover", "character": "Bank Robber (uncredited)", "id": 2047, "credit_id": "52fe44edc3a36847f80b24eb", "cast_id": 65, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 55}, {"name": "Margot Kidder", "character": "Margret Mary (uncredited)", "id": 20011, "credit_id": "52fe44edc3a36847f80b24ef", "cast_id": 66, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 56}, {"name": "Reba McEntire", "character": "Spectator (uncredited)", "id": 21986, "credit_id": "52fe44edc3a36847f80b24f3", "cast_id": 67, "profile_path": "/rLjdJUI41eqWeDzjN0B8fUkLc6y.jpg", "order": 57}, {"name": "Bob Jennings", "character": "Bartender", "id": 113506, "credit_id": "52fe44edc3a36847f80b24f7", "cast_id": 68, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 58}, {"name": "Frank Orsatti", "character": "Unshaven Man", "id": 1219264, "credit_id": "54897d4cc3a3686f470015b7", "cast_id": 69, "profile_path": null, "order": 59}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b23f3", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.3, "runtime": 127}, "9360": {"poster_path": "/DcGgcAAdZnW5A9AV03JTFFjft5.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "PE", "name": "Peru"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136885767, "overview": "A \"National Geographic\" film crew is taken hostage by an insane hunter, who takes them along on his quest to capture the world's largest - and deadliest - snake.", "video": false, "id": 9360, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Anaconda", "tagline": "When You Can't Breathe You Can't Scream.", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/sENQAlXOhOb2QmfpFl2w34W9ODP.jpg", "id": 105995, "name": "Anaconda Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118615", "adult": false, "backdrop_path": "/1LV1sS4tBSMF4Q2vscMobGmKrSY.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1997-04-11", "popularity": 2.11404358855787, "original_title": "Anaconda", "budget": 45000000, "cast": [{"name": "Jennifer Lopez", "character": "Terri Flores", "id": 16866, "credit_id": "52fe44edc3a36847f80b2529", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Ice Cube", "character": "Danny Rich", "id": 9778, "credit_id": "52fe44edc3a36847f80b252d", "cast_id": 2, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 1}, {"name": "Jon Voight", "character": "Paul Sarone", "id": 10127, "credit_id": "52fe44edc3a36847f80b2531", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Eric Stoltz", "character": "Dr. Steven Cale", "id": 7036, "credit_id": "52fe44edc3a36847f80b2535", "cast_id": 4, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Gary Dixon", "id": 887, "credit_id": "52fe44edc3a36847f80b2539", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Jonathan Hyde", "character": "Warren Westridge", "id": 8537, "credit_id": "52fe44eec3a36847f80b2585", "cast_id": 20, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 5}, {"name": "Kari W\u00fchrer", "character": "Denise Kalberg", "id": 56152, "credit_id": "52fe44eec3a36847f80b2589", "cast_id": 21, "profile_path": "/2WmKU8E0lMmdBcC7F9iLLz7S2Qc.jpg", "order": 6}, {"name": "Vincent Castellanos", "character": "Mateo", "id": 177100, "credit_id": "52fe44eec3a36847f80b258d", "cast_id": 22, "profile_path": "/z0OHAcfUnICbAh9UqAYgfjh1IT5.jpg", "order": 7}, {"name": "Danny Trejo", "character": "Poacher", "id": 11160, "credit_id": "52fe44eec3a36847f80b2591", "cast_id": 23, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 8}, {"name": "Frank Welker", "character": "Anaconda (voice)", "id": 15831, "credit_id": "52fe44eec3a36847f80b2595", "cast_id": 24, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 9}], "directors": [{"name": "Luis Llosa", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b253f", "profile_path": null, "id": 26648}], "vote_average": 4.8, "runtime": 89}, "9361": {"poster_path": "/6FHoUoYrfmwXJsDIR0s8YvV1Ctj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75505856, "overview": "As the English and French soldiers battle for control of the North American colonies in the 18th century, the settlers and native Americans are forced to take sides. Cora and her sister Alice unwittingly walk into trouble but are saved by Hawkeye, an orphaned settler adopted by the last of the Mohicans.", "video": false, "id": 9361, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "The Last of the Mohicans", "tagline": "The first American hero.", "vote_count": 229, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0104691", "adult": false, "backdrop_path": "/fRkIu9XNb4Xi9k5ikAxGTiDrj1G.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-09-25", "popularity": 0.541167965467662, "original_title": "The Last of the Mohicans", "budget": 40000000, "cast": [{"name": "Daniel Day-Lewis", "character": "Hawkeye/Nathaniel Poe", "id": 11856, "credit_id": "52fe44eec3a36847f80b2613", "cast_id": 12, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 0}, {"name": "Madeleine Stowe", "character": "Cora Munro", "id": 289, "credit_id": "52fe44eec3a36847f80b2617", "cast_id": 13, "profile_path": "/jqd70MNVUs3nTbxn3B3G6UNV4Oc.jpg", "order": 1}, {"name": "Russell Means", "character": "Chingachgook", "id": 3203, "credit_id": "52fe44eec3a36847f80b261b", "cast_id": 14, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 2}, {"name": "Eric Schweig", "character": "Uncas", "id": 57448, "credit_id": "52fe44eec3a36847f80b261f", "cast_id": 15, "profile_path": "/zz4n9Bz32wAEwkO2KmBG3tDClo.jpg", "order": 3}, {"name": "Jodhi May", "character": "Alice Munro", "id": 57449, "credit_id": "52fe44eec3a36847f80b2623", "cast_id": 16, "profile_path": "/dJQrUVE4Pl9c5FPL0OVNB8DPY0Y.jpg", "order": 4}, {"name": "Steven Waddington", "character": "Major Heyward", "id": 27764, "credit_id": "52fe44eec3a36847f80b2627", "cast_id": 17, "profile_path": "/wFZoh6mW51RK0kHs64OPndEa19q.jpg", "order": 5}, {"name": "Wes Studi", "character": "Magua", "id": 15853, "credit_id": "52fe44eec3a36847f80b262b", "cast_id": 18, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 6}, {"name": "Maurice Roeves", "character": "Col. Edmund Munro", "id": 54, "credit_id": "52fe44eec3a36847f80b2635", "cast_id": 20, "profile_path": "/qXYjnIHClkey4QQxPG5D5JD7Y74.jpg", "order": 7}, {"name": "Patrice Ch\u00e9reau", "character": "Gen Montcalm", "id": 23724, "credit_id": "52fe44eec3a36847f80b2639", "cast_id": 21, "profile_path": "/xTAm1CHk1KY7kAYicNm3ztn8RZ3.jpg", "order": 8}, {"name": "Edward Blatchford", "character": "Jack Winthrop", "id": 1066171, "credit_id": "52fe44eec3a36847f80b263d", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Terry Kinney", "character": "John Cameron", "id": 11067, "credit_id": "52fe44eec3a36847f80b2641", "cast_id": 23, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 10}, {"name": "Tracey Ellis", "character": "Alexandra Cameron", "id": 134061, "credit_id": "52fe44eec3a36847f80b2645", "cast_id": 24, "profile_path": "/ctvSXygooaKmdSej12XeAimmsPk.jpg", "order": 11}, {"name": "Justin M. Rice", "character": "James Cameron", "id": 1066172, "credit_id": "52fe44eec3a36847f80b2649", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Dennis Banks", "character": "Ongewasgone", "id": 975164, "credit_id": "52fe44eec3a36847f80b264d", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Pete Postlethwaite", "character": "Capt. Beams", "id": 4935, "credit_id": "52fe44eec3a36847f80b2651", "cast_id": 27, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 14}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b25d3", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.8, "runtime": 112}, "9362": {"poster_path": "/uaTHEpgS3tMPK5XY3f17RIrM07v.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48572000, "overview": "Hick handymen Val McKee and Earl Bassett can barely eke out a living in the Nevada hamlet of Perfection, so they decide to leave town -- despite an admonition from a shapely seismology coed who's picking up odd readings on her equipment. Before long, Val and Earl discover what's responsible for those readings: 30-foot-long carnivorous worms with a proclivity for sucking their prey underground.", "video": false, "id": 9362, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Tremors", "tagline": "The monster movie that breaks new ground.", "vote_count": 196, "homepage": "", "belongs_to_collection": {"backdrop_path": "/87K8X2WixRlR3LxzeydW83N7nM0.jpg", "poster_path": "/1WkX3MBY3pqgfC4XuMMds8wrmbX.jpg", "id": 91799, "name": "Tremors Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100814", "adult": false, "backdrop_path": "/yUgmWnxcPYoonOQfrax5CfIYvDU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "No Frills Film Production", "id": 3851}], "release_date": "1990-01-19", "popularity": 0.462741288625004, "original_title": "Tremors", "budget": 11000000, "cast": [{"name": "Kevin Bacon", "character": "Valentine McKee", "id": 4724, "credit_id": "52fe44eec3a36847f80b2687", "cast_id": 1, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Fred Ward", "character": "Earl Bassett", "id": 10430, "credit_id": "52fe44eec3a36847f80b268b", "cast_id": 2, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 1}, {"name": "Finn Carter", "character": "Rhonda LeBeck", "id": 57453, "credit_id": "52fe44eec3a36847f80b268f", "cast_id": 3, "profile_path": "/tgZvPhGz2LcSWdBcjmEMy11c4xq.jpg", "order": 2}, {"name": "Michael Gross", "character": "Burt Gummer", "id": 67015, "credit_id": "52fe44eec3a36847f80b26c3", "cast_id": 15, "profile_path": "/nYCWEUdFbMo2JJo2Hd9KHNcP2GS.jpg", "order": 3}, {"name": "Reba McEntire", "character": "Heather Gummer", "id": 21986, "credit_id": "52fe44eec3a36847f80b26c7", "cast_id": 16, "profile_path": "/rLjdJUI41eqWeDzjN0B8fUkLc6y.jpg", "order": 4}, {"name": "Robert Jayne", "character": "Melvin Plug", "id": 52141, "credit_id": "52fe44eec3a36847f80b26cb", "cast_id": 17, "profile_path": "/qmg7jCWMbudaRpKMepAwOXlIkYV.jpg", "order": 5}, {"name": "Charlotte Stewart", "character": "Nancy Sterngood", "id": 14794, "credit_id": "52fe44eec3a36847f80b26cf", "cast_id": 18, "profile_path": "/4IUF48jRMcBR0ZjVc9ghDoo5c4x.jpg", "order": 6}, {"name": "Tony Genaro", "character": "Miguel", "id": 166606, "credit_id": "52fe44eec3a36847f80b26d3", "cast_id": 19, "profile_path": "/arYAS4M7YUmIlfx7uGVvB7R38OD.jpg", "order": 7}, {"name": "Ariana Richards", "character": "Mindy Sterngood", "id": 4788, "credit_id": "52fe44eec3a36847f80b26d7", "cast_id": 20, "profile_path": "/b4S0q3uSDIophwYcPlBABgJObSX.jpg", "order": 8}, {"name": "Richard Marcus", "character": "Nestor", "id": 70782, "credit_id": "52fe44eec3a36847f80b26db", "cast_id": 21, "profile_path": "/lJoVFFtlEzvxToT0SRBzdyWsuNo.jpg", "order": 9}, {"name": "Victor Wong", "character": "Walter Chang", "id": 11395, "credit_id": "52fe44eec3a36847f80b26df", "cast_id": 22, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 10}, {"name": "Sunshine Parker", "character": "Edgar", "id": 79744, "credit_id": "52fe44eec3a36847f80b26e3", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Michael Dan Wagner", "character": "Old Fred", "id": 1193342, "credit_id": "52fe44eec3a36847f80b26e7", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Conrad Bachmann", "character": "Dr. Jim", "id": 158052, "credit_id": "52fe44eec3a36847f80b26eb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Bibi Besch", "character": "Megan", "id": 1794, "credit_id": "52fe44eec3a36847f80b26ef", "cast_id": 26, "profile_path": "/3Np4qyewSj56jbYgqQnHcl7C7xT.jpg", "order": 14}], "directors": [{"name": "Ron Underwood", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b2695", "profile_path": "/6Que5sFtOzJ0q4D7vrFqG60sdzG.jpg", "id": 33485}], "vote_average": 6.4, "runtime": 96}, "9366": {"poster_path": "/sNrQIYc21wQ7shGH75oEMP2gIpq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41954997, "overview": "An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.", "video": false, "id": 9366, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Donnie Brasco", "tagline": "Donnie Brasco. Based on a True Story.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0119008", "adult": false, "backdrop_path": "/sjSyssW1PC5AmhU6RnztVxa1dxd.jpg", "production_companies": [{"name": "Phoenix Pictures", "id": 11317}, {"name": "Mark Johnson Productions", "id": 2604}, {"name": "Baltimore Pictures", "id": 11407}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1997-02-27", "popularity": 1.07571840199613, "original_title": "Donnie Brasco", "budget": 35000000, "cast": [{"name": "Johnny Depp", "character": "Donnie Brasco / Joseph D. 'Joe' Pistone", "id": 85, "credit_id": "52fe44eec3a36847f80b275d", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Al Pacino", "character": "Benjamin 'Lefty' Ruggiero", "id": 1158, "credit_id": "52fe44eec3a36847f80b27bf", "cast_id": 21, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Michael Madsen", "character": "Sonny Black", "id": 147, "credit_id": "52fe44eec3a36847f80b2761", "cast_id": 3, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 2}, {"name": "Bruno Kirby", "character": "Nicky", "id": 9257, "credit_id": "52fe44eec3a36847f80b2765", "cast_id": 4, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 3}, {"name": "James Russo", "character": "Paulie", "id": 785, "credit_id": "52fe44eec3a36847f80b2769", "cast_id": 5, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 4}, {"name": "Anne Heche", "character": "Maggie Pistone", "id": 8256, "credit_id": "52fe44eec3a36847f80b276d", "cast_id": 6, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 5}, {"name": "\u017deljko Ivanek", "character": "Tim Curley", "id": 6752, "credit_id": "52fe44eec3a36847f80b27c7", "cast_id": 23, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 6}, {"name": "Brian Tarantina", "character": "Bruno", "id": 4890, "credit_id": "537249120e0a2672eb002094", "cast_id": 24, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 7}, {"name": "Rocco Sisto", "character": "Richard 'Richie' Gazzo", "id": 65765, "credit_id": "537249220e0a2672e8002014", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Zach Grenier", "character": "Dr. Berger", "id": 7471, "credit_id": "5372492d0e0a2672eb002096", "cast_id": 26, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 9}, {"name": "Gerry Becker", "character": "Agent Dean Blandford FBI", "id": 19468, "credit_id": "5372493c0e0a2672e8002016", "cast_id": 27, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 10}, {"name": "Robert Miano", "character": "Sonny Red", "id": 62715, "credit_id": "5372494c0e0a2672f8001fa2", "cast_id": 28, "profile_path": "/jdooBgF7c24ehqBWPJHjC1f09f8.jpg", "order": 11}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b2773", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.9, "runtime": 127}, "9367": {"poster_path": "/4S47gyKZI5aLiawwc45e4gnPlPx.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2040920, "overview": "El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor...a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake El Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.", "video": false, "id": 9367, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "El Mariachi", "tagline": "He didn't come looking for trouble, but trouble came looking for him.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6p1OzuIKWnTDfDea7IpB9xra5J.jpg", "poster_path": "/4UMPWCj3MuHLCR2vVPPNCxU6RDV.jpg", "id": 9649, "name": "Mexico Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0104815", "adult": false, "backdrop_path": "/usAd06VQyzRObEy4zhhw7ViG76V.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1992-09-04", "popularity": 0.366116478671162, "original_title": "El Mariachi", "budget": 220000, "cast": [{"name": "Carlos Gallardo", "character": "El Mariachi", "id": 20498, "credit_id": "52fe44eec3a36847f80b27f9", "cast_id": 1, "profile_path": "/4ZT5vkGvOdmC8dLHciGN8emkkpj.jpg", "order": 0}, {"name": "Jaime de Hoyos", "character": "Bigot\u00f3n", "id": 57470, "credit_id": "52fe44eec3a36847f80b2801", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Peter Marquardt", "character": "Mauricio (Moco)", "id": 57471, "credit_id": "52fe44eec3a36847f80b2805", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Reinol Martinez", "character": "Azul", "id": 1192733, "credit_id": "52fe44eec3a36847f80b2851", "cast_id": 18, "profile_path": "/dJ6cz0KBlOyVLpaEHU2Z4eOOgXN.jpg", "order": 4}, {"name": "Ramiro Gomez", "character": "Cantinero", "id": 1192734, "credit_id": "52fe44eec3a36847f80b2855", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Consuelo G\u00f3mez", "character": "Domino", "id": 1293343, "credit_id": "5300df549251416ae738b1f4", "cast_id": 20, "profile_path": null, "order": 6}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a36847f80b280b", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.6, "runtime": 81}, "8388": {"poster_path": "/ehCzedovkiM8CnDeuSSHlRbdfxI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three unemployed actors accept an invitation to a Mexican village to replay their bandit fighter roles, unaware that it is the real thing.", "video": false, "id": 8388, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Three Amigos", "tagline": "They're Down On Their Luck And Up To Their Necks In Senoritas, Margaritas, Banditos And Bullets!", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092086", "adult": false, "backdrop_path": "/mWuHbFc7qVmVcpybx3ezhXLj5VO.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1986-12-12", "popularity": 0.980097147619745, "original_title": "Three Amigos", "budget": 0, "cast": [{"name": "Chevy Chase", "character": "Dusty Bottoms", "id": 54812, "credit_id": "52fe44a4c3a36847f80a1d0b", "cast_id": 1, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Steve Martin", "character": "Lucky Day", "id": 67773, "credit_id": "52fe44a4c3a36847f80a1d0f", "cast_id": 2, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 1}, {"name": "Martin Short", "character": "Ned Nederlander", "id": 519, "credit_id": "52fe44a4c3a36847f80a1d13", "cast_id": 3, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 2}, {"name": "Patrice Martinez", "character": "Carmen", "id": 54813, "credit_id": "52fe44a4c3a36847f80a1d17", "cast_id": 4, "profile_path": "/k5zb1ftmsClSUOMrgUiV1hgyukO.jpg", "order": 3}, {"name": "Philip Gordon", "character": "Rodrigo", "id": 54814, "credit_id": "52fe44a4c3a36847f80a1d1b", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Alfonso Ar\u00e1u", "character": "El Guapo", "id": 22767, "credit_id": "52fe44a4c3a36847f80a1d49", "cast_id": 13, "profile_path": "/Agw6LyoGlrfJaBvTOQYzdxwUWHh.jpg", "order": 5}, {"name": "Tony Plana", "character": "Jefe", "id": 41737, "credit_id": "52fe44a4c3a36847f80a1d4d", "cast_id": 14, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 6}, {"name": "Kai Wulff", "character": "German", "id": 42146, "credit_id": "52fe44a4c3a36847f80a1d51", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Jon Lovitz", "character": "Morty", "id": 16165, "credit_id": "52fe44a4c3a36847f80a1d55", "cast_id": 16, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 8}, {"name": "Joe Mantegna", "character": "Harry Flugleman", "id": 3266, "credit_id": "52fe44a4c3a36847f80a1d59", "cast_id": 17, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 9}, {"name": "Phil Hartman", "character": "Sam", "id": 14104, "credit_id": "52fe44a4c3a36847f80a1d5d", "cast_id": 18, "profile_path": "/rf62sAab9vOjm9x7ZA0VBWDkHvD.jpg", "order": 10}, {"name": "Norbert Weisser", "character": "German's Friend", "id": 6701, "credit_id": "52fe44a4c3a36847f80a1d61", "cast_id": 19, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 11}, {"name": "Brian Thompson", "character": "German's Other Friend", "id": 2719, "credit_id": "52fe44a4c3a36847f80a1d65", "cast_id": 20, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 12}, {"name": "Dyana Ortelli", "character": "Juanita", "id": 104382, "credit_id": "52fe44a4c3a36847f80a1d69", "cast_id": 21, "profile_path": "/fRNvwWADALgp6vRJY73HXovtS3p.jpg", "order": 13}, {"name": "Rebecca Ferratti", "character": "Hot Se\u00f1orita", "id": 928, "credit_id": "52fe44a4c3a36847f80a1d6d", "cast_id": 22, "profile_path": "/jkj9xVFHEftdPfuDTxqLF1WgoZr.jpg", "order": 14}, {"name": "Brinke Stevens", "character": "Silent Movie Actress", "id": 97621, "credit_id": "52fe44a4c3a36847f80a1d71", "cast_id": 23, "profile_path": "/htk0urihmeLULILQNvA1NsOfeKY.jpg", "order": 15}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe44a4c3a36847f80a1d21", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.3, "runtime": 102}, "72559": {"poster_path": "/swk1AHwPvIJv8NUFM1qpFuaT642.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 371876278, "overview": "Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.", "video": false, "id": 72559, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "G.I. Joe: Retaliation", "tagline": "", "vote_count": 2165, "homepage": "http://www.gijoemovie.com", "belongs_to_collection": {"backdrop_path": "/m3ip0ci0TnX0ATUxpweqElYCeq4.jpg", "poster_path": "/5LtZM6zLB2TDbdIaOC5uafjYZY1.jpg", "id": 135468, "name": "G.I. Joe (Live-Action Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1583421", "adult": false, "backdrop_path": "/b9OVFl48ZV2oTLzACSwBpNrCUhJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Skydance Productions", "id": 6277}, {"name": "Hasbro", "id": 2598}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Saints LA", "id": 19719}], "release_date": "2013-03-29", "popularity": 1.8790239854764, "original_title": "G.I. Joe: Retaliation", "budget": 130000000, "cast": [{"name": "Dwayne Johnson", "character": "Roadblock", "id": 18918, "credit_id": "52fe4873c3a368484e0f8c35", "cast_id": 3, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "D.J. Cotrona", "character": "Flint", "id": 51976, "credit_id": "52fe4873c3a368484e0f8c59", "cast_id": 13, "profile_path": "/5eQPcmvZRJuVKBrwER2nIpmn91X.jpg", "order": 1}, {"name": "Adrianne Palicki", "character": "Jaye", "id": 88995, "credit_id": "52fe4873c3a368484e0f8c39", "cast_id": 4, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 2}, {"name": "Bruce Willis", "character": "Joe Colton", "id": 62, "credit_id": "52fe4873c3a368484e0f8c2d", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 3}, {"name": "Ray Park", "character": "Snake Eyes", "id": 11007, "credit_id": "52fe4873c3a368484e0f8c41", "cast_id": 6, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "U.S. President", "id": 378, "credit_id": "52fe4873c3a368484e0f8c55", "cast_id": 12, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Lee Byung-hun", "character": "Storm Shadow", "id": 25002, "credit_id": "52fe4873c3a368484e0f8c69", "cast_id": 21, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 6}, {"name": "Elodie Yung", "character": "Jinx", "id": 78147, "credit_id": "52fe4873c3a368484e0f8c51", "cast_id": 11, "profile_path": "/pbhMOW06QNPujrHM2aNX2TS0eXH.jpg", "order": 7}, {"name": "Ray Stevenson", "character": "Firefly", "id": 56614, "credit_id": "52fe4873c3a368484e0f8c3d", "cast_id": 5, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 8}, {"name": "Channing Tatum", "character": "Duke", "id": 38673, "credit_id": "52fe4873c3a368484e0f8c31", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 9}, {"name": "RZA", "character": "Blind Master", "id": 150, "credit_id": "52fe4873c3a368484e0f8c5d", "cast_id": 14, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 10}, {"name": "Arnold Vosloo", "character": "Zartan", "id": 16743, "credit_id": "52fe4873c3a368484e0f8c49", "cast_id": 8, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 11}, {"name": "Luke Bracey", "character": "Cobra Commander", "id": 972356, "credit_id": "538ba7530e0a26670e002879", "cast_id": 54, "profile_path": "/cfUv5lXfWVlbQeRaD8XZ0WDxqF9.jpg", "order": 12}, {"name": "Joe Chrest", "character": "Chief of Staff", "id": 141762, "credit_id": "52fe4873c3a368484e0f8ce1", "cast_id": 44, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 13}, {"name": "DeRay Davis", "character": "Stoop", "id": 11827, "credit_id": "52fe4873c3a368484e0f8ced", "cast_id": 47, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 22}], "directors": [{"name": "Jon M. Chu", "department": "Directing", "job": "Director", "credit_id": "52fe4873c3a368484e0f8cd5", "profile_path": "/h80Zf0GR4jdmURx32hjvckJE8o5.jpg", "id": 54507}], "vote_average": 5.4, "runtime": 110}, "9373": {"poster_path": "/gRJ1r82SrOwOHQTOBPKFqnavPuQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 107071655, "overview": "After picking up a traumatized young hitchhiker, five friends find themselves stalked and hunted by a deformed chainsaw-wielding killer and his family of equally psychopathic killers.", "video": false, "id": 9373, "genres": [{"id": 27, "name": "Horror"}], "title": "The Texas Chainsaw Massacre", "tagline": "What you know about fear... doesn't even come close.", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0324216", "adult": false, "backdrop_path": "/kfu8cB87ldbQPDbWTfIg1INXd8G.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Focus Features", "id": 17301}, {"name": "Radar Pictures", "id": 14718}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Next Entertainment", "id": 1633}], "release_date": "2003-10-17", "popularity": 0.884414019510894, "original_title": "The Texas Chainsaw Massacre", "budget": 9500000, "cast": [{"name": "Jessica Biel", "character": "Erin", "id": 10860, "credit_id": "52fe44efc3a36847f80b2af7", "cast_id": 1, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 0}, {"name": "Jonathan Tucker", "character": "Morgan", "id": 17243, "credit_id": "52fe44efc3a36847f80b2afb", "cast_id": 2, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 1}, {"name": "Erica Leerhsen", "character": "Pepper", "id": 57514, "credit_id": "52fe44efc3a36847f80b2aff", "cast_id": 3, "profile_path": "/qI82zKaMmoSsWmjvbvWuNN0lWJy.jpg", "order": 2}, {"name": "Mike Vogel", "character": "Andy", "id": 6858, "credit_id": "52fe44efc3a36847f80b2b03", "cast_id": 4, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 3}, {"name": "Eric Balfour", "character": "Kemper", "id": 34489, "credit_id": "52fe44efc3a36847f80b2b07", "cast_id": 5, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 4}, {"name": "Andrew Bryniarski", "character": "Thomas Hewitt (Leatherface)", "id": 52366, "credit_id": "52fe44efc3a36847f80b2b0b", "cast_id": 6, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 5}, {"name": "R. Lee Ermey", "character": "Sheriff Hoyt", "id": 8655, "credit_id": "52fe44efc3a36847f80b2b5d", "cast_id": 21, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 6}, {"name": "David Dorfman", "character": "Jedidiah", "id": 26292, "credit_id": "53642c8cc3a36812180000a1", "cast_id": 23, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 7}, {"name": "Lauren German", "character": "Teenage Girl", "id": 37014, "credit_id": "53642ca0c3a3681241000104", "cast_id": 24, "profile_path": "/7TdS4sFvBzUDahM65VWVYXcFXH2.jpg", "order": 8}, {"name": "Terrence Evans", "character": "Monty Hewitt", "id": 132054, "credit_id": "53642cb0c3a36812200000b3", "cast_id": 25, "profile_path": "/jhEu0HyHPbFh3cbIoWGW95ubEK1.jpg", "order": 9}, {"name": "Marietta Marich", "character": "Luda Mae Hewitt", "id": 985344, "credit_id": "53e7454ac3a368399f0013ea", "cast_id": 32, "profile_path": "/qov07poVxBvkMYgYlPQF0RliWJn.jpg", "order": 10}, {"name": "Marietta Marich", "character": "Luda Mae Hewitt", "id": 985344, "credit_id": "53e7454ac3a36839a2001449", "cast_id": 33, "profile_path": "/qov07poVxBvkMYgYlPQF0RliWJn.jpg", "order": 11}], "directors": [{"name": "Marcus Nispel", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2b11", "profile_path": "/uil3LAeKq6vgRucr6CR2T4Iz0oC.jpg", "id": 29922}], "vote_average": 6.0, "runtime": 98}, "9374": {"poster_path": "/qNIkecw9i44ljTJaMfkdeyLc4vB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Madeline is married to Ernest, who was once arch-rival Helen's fiance. After recovering from a mental breakdown, Helen vows to kill Madeline and steal back Ernest. Unfortunately for everyone, the introduction of a magic potion causes things to be a great deal more complicated than a mere murder plot.", "video": false, "id": 9374, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Death Becomes Her", "tagline": "In one small bottle... The fountain of youth. The secret of eternal life. The power of an ancient potion. Sometimes it works... sometimes it doesn't.", "vote_count": 141, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104070", "adult": false, "backdrop_path": "/rbh1X7khOI8nv9nprC1OVwXl9ZJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1992-07-30", "popularity": 0.727503932500354, "original_title": "Death Becomes Her", "budget": 0, "cast": [{"name": "Meryl Streep", "character": "Madeline Ashton", "id": 5064, "credit_id": "52fe44efc3a36847f80b2b8d", "cast_id": 1, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Bruce Willis", "character": "Dr. Ernest Menville", "id": 62, "credit_id": "52fe44efc3a36847f80b2b91", "cast_id": 2, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 1}, {"name": "Goldie Hawn", "character": "Helen Sharp", "id": 18892, "credit_id": "52fe44efc3a36847f80b2b95", "cast_id": 3, "profile_path": "/dIwbk78Ult7xTyN4Z4B53bfN8Cx.jpg", "order": 2}, {"name": "Isabella Rossellini", "character": "Lisle von Rhoman", "id": 6588, "credit_id": "52fe44efc3a36847f80b2b99", "cast_id": 4, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 3}, {"name": "Ian Ogilvy", "character": "Chagall", "id": 51755, "credit_id": "52fe44efc3a36847f80b2bcd", "cast_id": 13, "profile_path": "/qfZ6jdQ5gsNs3CHEORdiN1UsWuk.jpg", "order": 4}, {"name": "Adam Storke", "character": "Dakota", "id": 68528, "credit_id": "52fe44efc3a36847f80b2bd1", "cast_id": 14, "profile_path": "/nOuKZKMkLQya8B9HYSxgGKsj7MM.jpg", "order": 5}, {"name": "Nancy Fish", "character": "Rose", "id": 42168, "credit_id": "52fe44efc3a36847f80b2bd5", "cast_id": 15, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 6}, {"name": "Alaina Reed Hall", "character": "Psychologist (as Alaina Reed Hall)", "id": 11871, "credit_id": "52fe44efc3a36847f80b2bd9", "cast_id": 16, "profile_path": "/gzz8PaJjPbP2j6x8ViZcyHq3C85.jpg", "order": 7}, {"name": "Michelle Johnson", "character": "Anna", "id": 17225, "credit_id": "52fe44efc3a36847f80b2bdd", "cast_id": 18, "profile_path": "/28bU4ZZkZvmmAVg8tiJqKbcdOsr.jpg", "order": 8}, {"name": "Sydney Pollack", "character": "Hospital Doctor", "id": 2226, "credit_id": "52fe44efc3a36847f80b2be1", "cast_id": 19, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 9}, {"name": "Ai Wan", "character": "Maid in Ancient Greece (uncredited)", "id": 1198786, "credit_id": "5372fe61c3a3681530000a06", "cast_id": 20, "profile_path": "/fKHWhRNkwDs2itR4ouL0xf4vN0M.jpg", "order": 10}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2b9f", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 5.9, "runtime": 104}, "9377": {"poster_path": "/kto49vDiSzooEdy4WQH2RtaC9oP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70136369, "overview": "High-schooler Ferris Bueller knows everyone -- and every trick to faking an illness. So with the entire school convinced he's at death's door, Bueller grabs his girlfriend and best friend and hits the streets of Chicago for a well-deserved day off. Fed-up principal Ed Rooney is determined to catch Bueller and put a premature end to his field trip. But it's tough to outfox Ferris.", "video": false, "id": 9377, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Ferris Bueller's Day Off", "tagline": "One man's struggle to take it easy.", "vote_count": 400, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091042", "adult": false, "backdrop_path": "/pNrMusE83e5Qg4uw1Idg3s7EsCK.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-06-11", "popularity": 0.972427070347246, "original_title": "Ferris Bueller's Day Off", "budget": 0, "cast": [{"name": "Matthew Broderick", "character": "Ferris Bueller", "id": 4756, "credit_id": "52fe44efc3a36847f80b2c77", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Alan Ruck", "character": "Cameron Frye", "id": 2394, "credit_id": "52fe44efc3a36847f80b2c7b", "cast_id": 2, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 1}, {"name": "Mia Sara", "character": "Sloane Peterson", "id": 29091, "credit_id": "52fe44efc3a36847f80b2c7f", "cast_id": 3, "profile_path": "/bMEDp048tU5RwHd1m5ZZMa1DgGy.jpg", "order": 2}, {"name": "Jeffrey Jones", "character": "Ed Rooney", "id": 4004, "credit_id": "52fe44efc3a36847f80b2c83", "cast_id": 4, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 3}, {"name": "Jennifer Grey", "character": "Jeanie Bueller", "id": 722, "credit_id": "52fe44efc3a36847f80b2c87", "cast_id": 5, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 4}, {"name": "Charlie Sheen", "character": "Boy in Police Station", "id": 6952, "credit_id": "52fe44efc3a36847f80b2c8b", "cast_id": 6, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 5}, {"name": "Cindy Pickett", "character": "Katie Bueller", "id": 74276, "credit_id": "52fe44efc3a36847f80b2ccb", "cast_id": 17, "profile_path": "/49keHJ0EW2YmoUH3kahq3ADkBFx.jpg", "order": 6}, {"name": "Lyman Ward", "character": "Tom Bueller", "id": 90198, "credit_id": "52fe44efc3a36847f80b2ccf", "cast_id": 18, "profile_path": "/lL1dAVbBcSU4O2wD4XZcsmOCcRZ.jpg", "order": 7}, {"name": "Edie McClurg", "character": "Grace", "id": 3202, "credit_id": "52fe44efc3a36847f80b2cd3", "cast_id": 19, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 8}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2c91", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 7.0, "runtime": 103}, "9378": {"poster_path": "/4jAwbCwUfscuw2nfeOPI2TjhWLw.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Arthur and his two children, Kathy and Bobby, inherit his Uncle Cyrus's estate: a glass house that serves as a prison to 12 ghosts. When the family, accompanied by Bobby's Nanny and an attorney, enter the house they find themselves trapped inside an evil machine \"designed by the devil and powered by the dead\" to open the Eye of Hell. Aided by Dennis, a ghost hunter, and his rival Kalina, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.", "video": false, "id": 9378, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Thir13en Ghosts", "tagline": "There are ghosts around us all the time. Most of them don't want to hurt us. But, there are exceptions...", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245674", "adult": false, "backdrop_path": "/bVZNGCXhQMPpCCDr6HaYjqMULck.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "13 Ghosts Productions Canada Inc.", "id": 23503}, {"name": "Dark Castle Entertainment", "id": 1786}], "release_date": "2001-10-26", "popularity": 0.606028842443158, "original_title": "Thir13en Ghosts", "budget": 0, "cast": [{"name": "Tony Shalhoub", "character": "Arthur Kriticos", "id": 4252, "credit_id": "52fe44efc3a36847f80b2cfd", "cast_id": 1, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 0}, {"name": "Embeth Davidtz", "character": "Kalina Oretzia", "id": 6368, "credit_id": "52fe44efc3a36847f80b2d01", "cast_id": 2, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Dennis Rafkin", "id": 26457, "credit_id": "52fe44efc3a36847f80b2d05", "cast_id": 3, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Shannon Elizabeth", "character": "Kathy Kriticos", "id": 21596, "credit_id": "52fe44efc3a36847f80b2d09", "cast_id": 4, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 3}, {"name": "Matthew Harrison", "character": "Damon", "id": 21360, "credit_id": "52fe44efc3a36847f80b2d5b", "cast_id": 19, "profile_path": "/2dUfVxMEM1ilto1YP78XaEVppKI.jpg", "order": 4}, {"name": "Alec Roberts", "character": "Robert 'Bobby' Kriticos", "id": 1003356, "credit_id": "537684e7c3a3685531000133", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "JR Bourne", "character": "Benjamin Moss", "id": 1311776, "credit_id": "537684fbc3a3685525000064", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Rah Digga", "character": "Maggie Bess", "id": 238825, "credit_id": "53768515c3a368553a000035", "cast_id": 22, "profile_path": "/68O1brDzEoc91pwoYGS80H5rVCI.jpg", "order": 7}, {"name": "F. Murray Abraham", "character": "Cyrus Kriticos", "id": 1164, "credit_id": "5376852bc3a368554200003d", "cast_id": 23, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 8}], "directors": [{"name": "Steve Beck", "department": "Directing", "job": "Director", "credit_id": "52fe44efc3a36847f80b2d0f", "profile_path": "/p050TsMfcaDeUv3DAcSaS8Tzdrs.jpg", "id": 57521}], "vote_average": 5.1, "runtime": 91}, "197796": {"poster_path": "/46NEkiNyBvK1RpH3kQ0xCKO8A1D.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Beauty and the Beast is the adaptation of a story by Madame de Villeneuve. Published anonymously in 1740 as La Jeune Am\u00e9ricaine et les contes marins, it paints a portrait of Belle, a joyful and touching young girl who falls in love with the Beast, a cursed creature in search of love and redemption. In 1760, a condensed children\u2019s version was published. It was from this version that Jean Cocteau and then Walt Disney drew their famous adaptations. Overshadowed, the original version by Madame de Villeneuve has never been adapted for the screen... until now!", "video": false, "id": 197796, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Beauty and the Beast", "tagline": "", "vote_count": 111, "homepage": "http://www.labelleetlabete-lefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2316801", "adult": false, "backdrop_path": "/4EZ2YaCkVD1nQNu8TDxl2H3dk2b.jpg", "production_companies": [{"name": "Path\u00e9 Distribution", "id": 3012}], "release_date": "2014-02-12", "popularity": 0.844355975726161, "original_title": "La Belle et la b\u00eate", "budget": 44, "cast": [{"name": "Vincent Cassel", "character": "La b\u00eate", "id": 1925, "credit_id": "52fe4d629251416c91114269", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "L\u00e9a Seydoux", "character": "La belle", "id": 121529, "credit_id": "52fe4d629251416c9111426d", "cast_id": 3, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 1}, {"name": "Andr\u00e9 Dussollier", "character": "Belle's father", "id": 18177, "credit_id": "52fe4d629251416c91114271", "cast_id": 4, "profile_path": "/rKZXoZJBUMKRbACbAGEat7wvAr7.jpg", "order": 2}, {"name": "Eduardo Noriega", "character": "Perducas", "id": 17093, "credit_id": "52fe4d629251416c91114275", "cast_id": 5, "profile_path": "/5B1D3MChVAZ5z7cypJbCbSGgDge.jpg", "order": 3}, {"name": "Myriam Charleins", "character": "Astrid", "id": 1282702, "credit_id": "52fe4d629251416c91114279", "cast_id": 6, "profile_path": "/ifdV5J1OrWzv88TK0qqUDTg3OE9.jpg", "order": 4}, {"name": "Audrey Lamy", "character": "Anne", "id": 130664, "credit_id": "52fe4d629251416c9111427d", "cast_id": 7, "profile_path": "/tbm4gXSCjSSzpndrzAXrwcLClE3.jpg", "order": 5}, {"name": "Sara Giraudeau", "character": "Clotilde", "id": 237881, "credit_id": "52fe4d629251416c91114281", "cast_id": 8, "profile_path": "/qPNzQQ5gllQVTxkr1VwmwzOzQ5F.jpg", "order": 6}, {"name": "Jonathan Demurger", "character": "Jean-Baptiste", "id": 142694, "credit_id": "52fe4d629251416c91114285", "cast_id": 9, "profile_path": "/c2KXZqpdQkCzT85H2A4DPbWbJ6D.jpg", "order": 7}, {"name": "Nicolas Gob", "character": "Maxime", "id": 125411, "credit_id": "553253cb9251411014000f71", "cast_id": 10, "profile_path": "/rpP4AL08TrLsSVgFoT11KXXQd2R.jpg", "order": 8}, {"name": "Louka Meliava", "character": "Tristan", "id": 1456035, "credit_id": "55325403c3a3682217002981", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Yvonne Catterfeld", "character": "La Princesse", "id": 45625, "credit_id": "5532541e92514140b5000cca", "cast_id": 12, "profile_path": "/abXA9TF14II30t4nofqhPhkp6Kk.jpg", "order": 10}, {"name": "Dejan Bucin", "character": "Louis", "id": 1365732, "credit_id": "5532543692514152950029b6", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Wolfgang Menardi", "character": "Thierry", "id": 1000967, "credit_id": "5532544e9251417ae3000890", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Mickey Hardt", "character": "Etienne", "id": 230950, "credit_id": "5532546bc3a3682223002958", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Arthur Doppler", "character": "Virgil", "id": 1456038, "credit_id": "5532548792514140b5000cd9", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Elisabeth Bogdan", "character": "Fanny", "id": 1456039, "credit_id": "55325499c3a368221d002ac1", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Marie Gruber", "character": "Ad\u00e8le", "id": 8205, "credit_id": "553254bf92514109210000e3", "cast_id": 18, "profile_path": "/9MDP9S9uaeIOrs8ni4fuYhUtmh9.jpg", "order": 16}, {"name": "Gotthard Lange", "character": "L'huissier", "id": 42445, "credit_id": "553254edc3a3682219002b45", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Max Volkert Martens", "character": "Le directeur Dumont", "id": 33121, "credit_id": "55325509c3a36822170029ac", "cast_id": 20, "profile_path": "/n1xpn9lGnHkDG2jMBABmjH6dWQh.jpg", "order": 18}, {"name": "Richard Sammel", "character": "Le tenancier", "id": 49487, "credit_id": "55325528c3a3682223002968", "cast_id": 21, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 19}, {"name": "Nora H\u00fctz", "character": "Serafina", "id": 1417572, "credit_id": "55325546c3a36848ca00175f", "cast_id": 22, "profile_path": null, "order": 20}], "directors": [{"name": "Christophe Gans", "department": "Directing", "job": "Director", "credit_id": "52fe4d629251416c91114265", "profile_path": "/8tFxHa7RT3MOBTs72j9pSwkG6MJ.jpg", "id": 8296}], "vote_average": 6.2, "runtime": 112}, "9381": {"poster_path": "/ipAZBhmBsJa6W8iKwtJL0u02bPb.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 72105690, "overview": "In Babylon A.D Vin Diesel stars as a veteran-turned-mercenary who is hired to deliver a package from the ravages of post-apocalyptic Eastern Europe to a destination in the teeming megalopolis of New York City. The \"package\" is a mysterious young woman with a secret.", "video": false, "id": 9381, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Babylon A.D.", "tagline": "Kill or be Killed.", "vote_count": 248, "homepage": "http://www.babylonadmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0364970", "adult": false, "backdrop_path": "/jnrvQO04kdoxYzxzIc7VM1meads.jpg", "production_companies": [{"name": "Babylon", "id": 11259}, {"name": "MNP Entreprise", "id": 20240}, {"name": "StudioCanal", "id": 694}, {"name": "Babylon Films Limited", "id": 11260}, {"name": "M6 Films", "id": 1115}, {"name": "M6", "id": 11261}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2008-08-29", "popularity": 0.843722138397523, "original_title": "Babylon A.D.", "budget": 70000000, "cast": [{"name": "Vin Diesel", "character": "Toorop", "id": 12835, "credit_id": "52fe44f0c3a36847f80b2e6f", "cast_id": 14, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Michelle Yeoh", "character": "Schwester Rebecca", "id": 1620, "credit_id": "52fe44f0c3a36847f80b2e73", "cast_id": 15, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 1}, {"name": "M\u00e9lanie Thierry", "character": "Aurora", "id": 59373, "credit_id": "52fe44f0c3a36847f80b2e77", "cast_id": 16, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 2}, {"name": "Lambert Wilson", "character": "Darquandier", "id": 2192, "credit_id": "52fe44f0c3a36847f80b2e7b", "cast_id": 17, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 3}, {"name": "Charlotte Rampling", "character": "Hohepriesterin", "id": 44079, "credit_id": "52fe44f0c3a36847f80b2e7f", "cast_id": 18, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 4}, {"name": "G\u00e9rard Depardieu", "character": "Gorsky", "id": 16927, "credit_id": "52fe44f0c3a36847f80b2e83", "cast_id": 19, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 5}, {"name": "Mark Strong", "character": "Finn", "id": 2983, "credit_id": "52fe44f0c3a36847f80b2e87", "cast_id": 20, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 6}, {"name": "J\u00e9r\u00f4me Le Banner", "character": "Killa", "id": 47825, "credit_id": "52fe44f0c3a36847f80b2e8b", "cast_id": 21, "profile_path": "/eKwzGpMOFOb3I3fNFwlbC6e3eMC.jpg", "order": 7}, {"name": "Joel Kirby", "character": "Dr. Newton", "id": 25677, "credit_id": "52fe44f0c3a36847f80b2e8f", "cast_id": 22, "profile_path": "/pDreMKCIgOx732oMoQMhJx1FFFm.jpg", "order": 8}, {"name": "Souleymane Dicko", "character": "Jamal", "id": 72270, "credit_id": "52fe44f0c3a36847f80b2e93", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "David Belle", "character": "Kid with Tattoos", "id": 62439, "credit_id": "52fe44f0c3a36847f80b2e97", "cast_id": 24, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 10}, {"name": "Radek Bruna", "character": "Karl", "id": 59374, "credit_id": "52fe44f0c3a36847f80b2e9b", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Jan Unger", "character": "Fight Promoter", "id": 25726, "credit_id": "539dab57c3a3683b2a003e20", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b2e23", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 5.4, "runtime": 101}, "9383": {"poster_path": "/ubc2Nf3fJirAUcxVLUismTSo4XD.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73209340, "overview": "Cocky researcher Sebastian Caine is working on a project to make living creatures invisible. He's so confident he's found the right formula that he tests it on himself and soon begins to vanish. The only problem is, no one can figure out how to make him visible again. This predicament begins to drive Caine mad, with terrifying results.", "video": false, "id": 9383, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Hollow Man", "tagline": "What would you do if you knew you couldn't be seen?", "vote_count": 132, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/lZqdkklAZcsQvTwAe3ybLWZgDkH.jpg", "id": 166376, "name": "Hollow Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0164052", "adult": false, "backdrop_path": "/xYqtO0XieH3BpMdQET2QuZFBQJ6.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Global Entertainment Productions GmbH & Company Medien KG", "id": 9269}], "release_date": "2000-08-04", "popularity": 0.965500937624791, "original_title": "Hollow Man", "budget": 90000000, "cast": [{"name": "Elisabeth Shue", "character": "Linda McKay", "id": 1951, "credit_id": "52fe44f0c3a36847f80b2f4b", "cast_id": 1, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 0}, {"name": "Kevin Bacon", "character": "Sebastian Caine", "id": 4724, "credit_id": "52fe44f0c3a36847f80b2f4f", "cast_id": 2, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Matthew Kensington", "id": 16851, "credit_id": "52fe44f0c3a36847f80b2f53", "cast_id": 3, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Kim Dickens", "character": "Sarah Kennedy", "id": 21165, "credit_id": "52fe44f0c3a36847f80b2f57", "cast_id": 4, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 3}, {"name": "Rhona Mitra", "character": "Sebastian's Neighbor", "id": 25702, "credit_id": "52fe44f0c3a36847f80b2f8b", "cast_id": 14, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 4}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b2f5d", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 5.6, "runtime": 112}, "9384": {"poster_path": "/plbKo5JoCijmqghCWrw2ef8WFhg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170268750, "overview": "Join uptight David Starsky and laid-back Ken \"Hutch\" Hutchinson as they're paired for the first time as undercover cops. The new partners must overcome their differences to solve an important case with help from street informant Huggy Bear and persuasive criminal Reese Feldman.", "video": false, "id": 9384, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Starsky & Hutch", "tagline": "They're the man.", "vote_count": 169, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0335438", "adult": false, "backdrop_path": "/yK7M20aBIg91flKB8A3L5KRrJaR.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-03-05", "popularity": 0.86026326349053, "original_title": "Starsky & Hutch", "budget": 60000000, "cast": [{"name": "Ben Stiller", "character": "David Starsky", "id": 7399, "credit_id": "52fe44f0c3a36847f80b2fcf", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Ken Hutchinson", "id": 887, "credit_id": "52fe44f0c3a36847f80b2fd3", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Snoop Dogg", "character": "Huggy Bear", "id": 19767, "credit_id": "52fe44f0c3a36847f80b2fd7", "cast_id": 3, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 2}, {"name": "Fred Williamson", "character": "Captain Doby", "id": 9811, "credit_id": "52fe44f0c3a36847f80b2fdb", "cast_id": 4, "profile_path": "/n6CAXv0dbKvCyBfMvppdUmeAwt2.jpg", "order": 3}, {"name": "Vince Vaughn", "character": "Reese Feldman", "id": 4937, "credit_id": "52fe44f0c3a36847f80b2fdf", "cast_id": 5, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 4}, {"name": "Juliette Lewis", "character": "Kitty", "id": 3196, "credit_id": "52fe44f0c3a36847f80b2fe3", "cast_id": 6, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 5}, {"name": "Jason Bateman", "character": "Kevin", "id": 23532, "credit_id": "52fe44f0c3a36847f80b2fe7", "cast_id": 7, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 6}, {"name": "Carmen Electra", "character": "Staci", "id": 28639, "credit_id": "52fe44f0c3a36847f80b2feb", "cast_id": 8, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 7}, {"name": "Will Ferrell", "character": "Big Earl", "id": 23659, "credit_id": "52fe44f0c3a36847f80b304f", "cast_id": 25, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 8}, {"name": "Amy Smart", "character": "Holly", "id": 20189, "credit_id": "52fe44f0c3a36847f80b3053", "cast_id": 26, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 9}, {"name": "Brande Roderick", "character": "Heather", "id": 65641, "credit_id": "52fe44f0c3a36847f80b3057", "cast_id": 27, "profile_path": "/bWG5efFQSggksScbLF9ydVFJoM.jpg", "order": 10}, {"name": "Molly Sims", "character": "Mrs. Feldman", "id": 60952, "credit_id": "52fe44f0c3a36847f80b305b", "cast_id": 28, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 11}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b2ff1", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.7, "runtime": 101}, "25769": {"poster_path": "/hXEZ25jYUHZSNKaZk0dbQQQje7U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Four friends fleeing a viral pandemic soon learn they are more dangerous than any virus.A deadly virus has spread across the globe. Contagion is everywhere, no one is safe and no one can be trusted. Four young attractive people race through the back roads of the American West to the pounding beat of a vacation soundtrack. Their aim is to retreat to secluded utopian beach in the Gulf of Mexico, where they could peacefully wait out the pandemic and survive the apocalyptic disease. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal the fate of each of them in an inexorable and horrifying voyage of hell through a western landscape populated by only the hideous dead or the twisted living.", "video": false, "id": 25769, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Carriers", "tagline": "The rules are simple. You break them, you die...", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0806203", "adult": false, "backdrop_path": "/yv2s856C1zOQqmsmZl5vIatHqeL.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Likely Story", "id": 1785}, {"name": "This Is That Productions", "id": 10059}, {"name": "Ivy Boy Productions", "id": 4482}], "release_date": "2009-09-04", "popularity": 0.173728302512404, "original_title": "Carriers", "budget": 0, "cast": [{"name": "Lou Taylor Pucci", "character": "Danny Green", "id": 17441, "credit_id": "52fe44ddc3a368484e03b37b", "cast_id": 1, "profile_path": "/bl2iZAdBRjq9I7LhZTmxfxKdNcQ.jpg", "order": 0}, {"name": "Chris Pine", "character": "Brian Green", "id": 62064, "credit_id": "52fe44ddc3a368484e03b37f", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 1}, {"name": "Piper Perabo", "character": "Bobby", "id": 15555, "credit_id": "52fe44ddc3a368484e03b383", "cast_id": 3, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 2}, {"name": "Emily VanCamp", "character": "Kate", "id": 84247, "credit_id": "52fe44ddc3a368484e03b387", "cast_id": 4, "profile_path": "/2nBBndedoyJvuDaUwZ1nNgip6Tn.jpg", "order": 3}, {"name": "Christopher Meloni", "character": "Frank Holloway", "id": 22227, "credit_id": "52fe44ddc3a368484e03b3d3", "cast_id": 19, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 4}, {"name": "Kiernan Shipka", "character": "Jodie Holloway", "id": 934289, "credit_id": "52fe44ddc3a368484e03b3d7", "cast_id": 20, "profile_path": "/k2nVQVHu3quZgQxkM0HGA1YuiVm.jpg", "order": 5}, {"name": "Ron McClary", "character": "Preacher", "id": 171994, "credit_id": "52fe44ddc3a368484e03b3db", "cast_id": 21, "profile_path": "/eFLECgrRQBHaGAzCYFson5KF77C.jpg", "order": 6}, {"name": "Mark Moses", "character": "Doctor", "id": 11889, "credit_id": "52fe44ddc3a368484e03b3df", "cast_id": 22, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 7}, {"name": "Josh Berry", "character": "Survivalist", "id": 108037, "credit_id": "52fe44ddc3a368484e03b3e3", "cast_id": 23, "profile_path": "/urXSysxyuVeE4OCKGInIhT9IqyR.jpg", "order": 8}, {"name": "Tim Janis", "character": "Survivalist", "id": 1015340, "credit_id": "52fe44ddc3a368484e03b3e7", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Dale Malley", "character": "Survivalist", "id": 210156, "credit_id": "52fe44ddc3a368484e03b3eb", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Dylan Kenin", "character": "Tom", "id": 85419, "credit_id": "52fe44ddc3a368484e03b3ef", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "LeAnne Lynch", "character": "Rose", "id": 1120616, "credit_id": "52fe44ddc3a368484e03b3f3", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "\u00c0lex Pastor", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a368484e03b38d", "profile_path": null, "id": 94220}, {"name": "David Pastor", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a368484e03b39f", "profile_path": null, "id": 94222}], "vote_average": 5.8, "runtime": 84}, "17578": {"poster_path": "/bDE10SyVAFEBrwI6qettdCHQjT.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 371940071, "overview": "Intrepid young reporter Tintin and his loyal dog Snowy are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery, Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy, with the help of salty, cantankerous Captain Haddock, and bumbling detectives Thompson & Thomson, travel half the world, one step ahead of their enemies as Tintin endeavors to find The Unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse.", "video": false, "id": 17578, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 9648, "name": "Mystery"}, {"id": 10751, "name": "Family"}], "title": "The Adventures of Tintin", "tagline": "This year, discover how far adventure will take you.", "vote_count": 909, "homepage": "http://www.us.movie.tintin.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/oKM5pYPGCCh11uBd8fMiKQVqOo8.jpg", "id": 240670, "name": "The Adventures of Tintin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0983193", "adult": false, "backdrop_path": "/m3xgF9JiTlfN1rO9hcvTd4PTIQy.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Columbia Pictures", "id": 5}, {"name": "WingNut Films", "id": 11}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Hemisphere Media Capital", "id": 9169}], "release_date": "2011-12-20", "popularity": 1.38170280394785, "original_title": "The Adventures of Tintin", "budget": 130000000, "cast": [{"name": "Daniel Craig", "character": "Sakharine / Red Rackham (voice)", "id": 8784, "credit_id": "52fe47349251416c75091437", "cast_id": 3, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Simon Pegg", "character": "Inspector Thompson (voice)", "id": 11108, "credit_id": "52fe47349251416c7509143b", "cast_id": 4, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Pilot (voice)", "id": 2130, "credit_id": "52fe47349251416c7509143f", "cast_id": 5, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Jamie Bell", "character": "Tintin (voice)", "id": 478, "credit_id": "52fe47349251416c75091443", "cast_id": 6, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 3}, {"name": "Andy Serkis", "character": "Captain Haddock / Sir Francis Haddock (voice)", "id": 1333, "credit_id": "52fe47349251416c75091447", "cast_id": 7, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 4}, {"name": "Nick Frost", "character": "Thomson (voice)", "id": 11109, "credit_id": "52fe47349251416c7509144b", "cast_id": 8, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 5}, {"name": "Mackenzie Crook", "character": "Ernie (voice)", "id": 1711, "credit_id": "52fe47349251416c7509144f", "cast_id": 9, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 6}, {"name": "Tony Curran", "character": "Lt. Delcourt (voice)", "id": 2220, "credit_id": "52fe47349251416c75091453", "cast_id": 10, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 7}, {"name": "Toby Jones", "character": "Silk (voice)", "id": 13014, "credit_id": "52fe47349251416c75091457", "cast_id": 11, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Daniel Mays", "character": "Allan (voice)", "id": 1670, "credit_id": "52fe47349251416c7509145b", "cast_id": 12, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 9}, {"name": "Sebastian Roch\u00e9", "character": "Pedro (voice)", "id": 23789, "credit_id": "52fe47349251416c75091471", "cast_id": 18, "profile_path": "/bOSLShSCLhZ4VtbgInX6SjhqlRb.jpg", "order": 10}, {"name": "Phillip Rhys", "character": "Co-Pilot (voice)", "id": 104802, "credit_id": "52fe47349251416c75091475", "cast_id": 19, "profile_path": "/nlTeQneOdNXmA351qJ69TN4NV2A.jpg", "order": 11}, {"name": "Mark Ivanir", "character": "Afgar Outpost Soldier (voice)", "id": 6696, "credit_id": "52fe47349251416c75091479", "cast_id": 20, "profile_path": "/fFfosXJqRNBMU3wg2WrO3bCnom7.jpg", "order": 12}, {"name": "Gad Elmaleh", "character": "Ben Salaad (voice)", "id": 51100, "credit_id": "52fe47349251416c7509147d", "cast_id": 21, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 13}, {"name": "Jacquie Barnbrook", "character": "Lady in the Phonebox / Old Lady", "id": 42291, "credit_id": "52fe47349251416c75091481", "cast_id": 22, "profile_path": "/5quzMDQwCHVdkoZmHuhjsgt2m6y.jpg", "order": 14}, {"name": "Joe Starr", "character": "Barnaby (voice)", "id": 1083807, "credit_id": "52fe47359251416c7509148b", "cast_id": 24, "profile_path": "/Hi4fJU42r5qS9A2LPumWWqfFHS.jpg", "order": 15}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe47349251416c7509142d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.5, "runtime": 107}, "9387": {"poster_path": "/xcOdfPQqIKl6B7neTtDWDL5uFHK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68851475, "overview": "A village is attacked by the evil ruler of the Snake Cult, Thulsa Doom and his evil warriors, when Thulsa Doom and his warriors kills his parents, a young boy named Conan is enslaved. Years later, Conan grows up and becomes a mighty warrior and is trained as a fighter. After years as a slave and as a gladiator, Conan is set free. Joined by an archer named Subotai, a beautiful thief whom he falls in love with named Valeria and a Chinese wizard, Conan sets out to rescue King Osric's daughter Yasmina, and get his revenge on Thulsa Doom.", "video": false, "id": 9387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Conan the Barbarian", "tagline": "Thief. Warrior. Gladiator. King.", "vote_count": 180, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aHgQZRJgOaZWOqnnO5dc2vWkHOu.jpg", "poster_path": "/vguM8mJmArTn9ePTm8fK0Ryt7EI.jpg", "id": 43055, "name": "Conan the Barbarian Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082198", "adult": false, "backdrop_path": "/o0UzslAUvHVp5Th1VK8YrNFJMT3.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "1982-05-14", "popularity": 0.55111162645479, "original_title": "Conan the Barbarian", "budget": 20000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Conan", "id": 1100, "credit_id": "52fe44f1c3a36847f80b3193", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "James Earl Jones", "character": "Thulsa Doom", "id": 15152, "credit_id": "52fe44f1c3a36847f80b3197", "cast_id": 2, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 1}, {"name": "Max von Sydow", "character": "King Osric", "id": 2201, "credit_id": "52fe44f1c3a36847f80b319b", "cast_id": 3, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 2}, {"name": "Sandahl Bergman", "character": "Valeria", "id": 45378, "credit_id": "52fe44f1c3a36847f80b319f", "cast_id": 4, "profile_path": "/autibegxGq7oVvR5DGfEQL3ARoE.jpg", "order": 3}, {"name": "Cassandra Gava", "character": "The Witch", "id": 98473, "credit_id": "52fe44f1c3a36847f80b31e5", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Ben Davidson", "character": "Rexor", "id": 100563, "credit_id": "52fe44f1c3a36847f80b31e9", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Gerry Lopez", "character": "Subotai", "id": 4330, "credit_id": "52fe44f1c3a36847f80b31ed", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Mako", "character": "The Wizard / Narrator", "id": 10134, "credit_id": "52fe44f1c3a36847f80b31f1", "cast_id": 19, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 7}, {"name": "Val\u00e9rie Quennessen", "character": "The Princess", "id": 100564, "credit_id": "52fe44f1c3a36847f80b31f5", "cast_id": 20, "profile_path": "/ffpRKrmQfD9XcMoOYpthtUZkU6q.jpg", "order": 8}, {"name": "William Smith", "character": "Conan's Father", "id": 98102, "credit_id": "52fe44f1c3a36847f80b31f9", "cast_id": 21, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 9}, {"name": "Luis Barboo", "character": "Red Hair", "id": 30963, "credit_id": "52fe44f1c3a36847f80b31fd", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Franco Columbu", "character": "Pictish Scout", "id": 35710, "credit_id": "52fe44f1c3a36847f80b3201", "cast_id": 23, "profile_path": "/Ajjtqewy65900sHWWkPMdhTZ2E4.jpg", "order": 11}, {"name": "Nadiuska", "character": "Conan's Mother", "id": 100565, "credit_id": "52fe44f1c3a36847f80b3205", "cast_id": 24, "profile_path": "/vVQCxN9C3mV6HNE94cRBxlmzhqB.jpg", "order": 12}, {"name": "Jack Taylor", "character": "Priest", "id": 8927, "credit_id": "52fe44f1c3a36847f80b3209", "cast_id": 25, "profile_path": "/3mxYZLn8mXTYtwMUn4HW6H1pHEK.jpg", "order": 13}, {"name": "Sven-Ole Thorsen", "character": "Thorgrim", "id": 20761, "credit_id": "52fe44f1c3a36847f80b320d", "cast_id": 26, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 14}, {"name": "Pilar Alc\u00f3n", "character": "Slave Girl", "id": 100566, "credit_id": "52fe44f1c3a36847f80b3211", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "John Milius", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b31a5", "profile_path": "/uBNb69DEc84IZxKD1bdo8Ex2j6j.jpg", "id": 8328}], "vote_average": 6.4, "runtime": 129}, "50348": {"poster_path": "/bTXtxFUyqQ6T9FRa3ajSdMtwnAj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85412898, "overview": "A lawyer conducts business from the back of his Lincoln town car while representing a high-profile client in Beverly Hills.", "video": false, "id": 50348, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Lincoln Lawyer", "tagline": "This Case is a Dangerous Game of Life and Death", "vote_count": 297, "homepage": "http://www.thelincolnlawyermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1189340", "adult": false, "backdrop_path": "/zxN5XhQKDT5GwlpZo7yKxDAJMyQ.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2011-03-18", "popularity": 1.01863677935718, "original_title": "The Lincoln Lawyer", "budget": 40000000, "cast": [{"name": "Matthew McConaughey", "character": "Mickey Haller", "id": 10297, "credit_id": "52fe47c4c3a36847f8147165", "cast_id": 2, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Marisa Tomei", "character": "Maggie McPherson", "id": 3141, "credit_id": "52fe47c4c3a36847f8147179", "cast_id": 10, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 1}, {"name": "Ryan Phillippe", "character": "Louis Roulet", "id": 11864, "credit_id": "52fe47c4c3a36847f8147169", "cast_id": 5, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 2}, {"name": "William H. Macy", "character": "Frank Levin", "id": 3905, "credit_id": "52fe47c4c3a36847f814717d", "cast_id": 11, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 3}, {"name": "Josh Lucas", "character": "Ted Minton", "id": 6164, "credit_id": "52fe47c4c3a36847f8147175", "cast_id": 9, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 4}, {"name": "John Leguizamo", "character": "Val Valenzuela", "id": 5723, "credit_id": "52fe47c4c3a36847f8147181", "cast_id": 12, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 4}, {"name": "Michael Pe\u00f1a", "character": "Jesus Martinez", "id": 454, "credit_id": "52fe47c4c3a36847f8147185", "cast_id": 13, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 6}, {"name": "Bob Gunton", "character": "Cecil Dobbs", "id": 4029, "credit_id": "52fe47c4c3a36847f8147189", "cast_id": 14, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 7}, {"name": "Frances Fisher", "character": "Mary Windsor", "id": 3713, "credit_id": "52fe47c4c3a36847f814718d", "cast_id": 15, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 8}, {"name": "Bryan Cranston", "character": "Detective Lankford", "id": 17419, "credit_id": "52fe47c4c3a36847f8147191", "cast_id": 16, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 9}, {"name": "Trace Adkins", "character": "Eddie Vogel", "id": 85477, "credit_id": "52fe47c4c3a36847f8147195", "cast_id": 17, "profile_path": "/5NWUf6smOiHH4MEev78shCTKQ1g.jpg", "order": 10}, {"name": "Laurence Mason", "character": "Earl", "id": 65141, "credit_id": "52fe47c4c3a36847f8147199", "cast_id": 18, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 10}, {"name": "Margarita Levieva", "character": "Reggie Campo", "id": 59237, "credit_id": "52fe47c4c3a36847f8147171", "cast_id": 8, "profile_path": "/5YDkouUZf4khoFfNoWps3PK5JQf.jpg", "order": 11}, {"name": "Michaela Conlin", "character": "Heidi Sobel", "id": 122237, "credit_id": "52fe47c4c3a36847f814716d", "cast_id": 7, "profile_path": "/1OdGRsdd2hJvJQx84WwJkkJ6qFe.jpg", "order": 13}, {"name": "Pell James", "character": "Lorna", "id": 4441, "credit_id": "52fe47c4c3a36847f814719d", "cast_id": 19, "profile_path": "/dUDHtnP8dmGI4pV0S2fjuFQ5XzS.jpg", "order": 14}, {"name": "Shea Whigham", "character": "DJ Corliss", "id": 74242, "credit_id": "52fe47c4c3a36847f81471a1", "cast_id": 20, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 15}, {"name": "Katherine Moennig", "character": "Gloria", "id": 122231, "credit_id": "52fe47c4c3a36847f81471a5", "cast_id": 21, "profile_path": "/rAXQOstsWgKqlVjYjeRx1R3AP7c.jpg", "order": 16}, {"name": "Michael Par\u00e9", "character": "Detective Kurlen", "id": 60650, "credit_id": "52fe47c4c3a36847f81471a9", "cast_id": 22, "profile_path": "/g1cVLWWAgl3J1nNFhg67qXs8GUT.jpg", "order": 17}], "directors": [{"name": "Brad Furman", "department": "Directing", "job": "Director", "credit_id": "52fe47c4c3a36847f8147161", "profile_path": "/o1NbAcrBHaX8Qsk2AV95TEY0iLR.jpg", "id": 144221}], "vote_average": 6.7, "runtime": 119}, "9390": {"poster_path": "/99YTEdKOKDRClsscOpJfdkbaTrQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 273552592, "overview": "Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.", "video": false, "id": 9390, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Jerry Maguire", "tagline": "Everybody loved him... Everybody disappeared.", "vote_count": 215, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116695", "adult": false, "backdrop_path": "/t2QU2UEOP4ftYnG00z53FaC32hs.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Gracie Films", "id": 18}], "release_date": "1996-12-06", "popularity": 0.766436146286402, "original_title": "Jerry Maguire", "budget": 50000000, "cast": [{"name": "Tom Cruise", "character": "Jerry Maguire", "id": 500, "credit_id": "52fe44f1c3a36847f80b33a9", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Cuba Gooding Jr.", "character": "Rod Tidwell", "id": 9777, "credit_id": "52fe44f1c3a36847f80b33ad", "cast_id": 2, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Dorothy Boyd", "id": 9137, "credit_id": "52fe44f1c3a36847f80b33b1", "cast_id": 3, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Kelly Preston", "character": "Avery Bishop", "id": 11164, "credit_id": "52fe44f1c3a36847f80b33b5", "cast_id": 4, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 3}, {"name": "Alison Armitage", "character": "Former Girlfriend", "id": 142955, "credit_id": "52fe44f1c3a36847f80b33ef", "cast_id": 14, "profile_path": "/9rUyIhzfYgmxWJlo4yJDXXGpxlw.jpg", "order": 4}, {"name": "Jonathan Lipnicki", "character": "Ray Boyd", "id": 67778, "credit_id": "52fe44f1c3a36847f80b33f3", "cast_id": 15, "profile_path": "/mHyAL6ByNXxMLzfykgLTmd4tvMr.jpg", "order": 5}, {"name": "Jerry O'Connell", "character": "Frank Cushman", "id": 3035, "credit_id": "52fe44f1c3a36847f80b33f7", "cast_id": 16, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 6}, {"name": "Jay Mohr", "character": "Bob Sugar", "id": 12217, "credit_id": "52fe44f1c3a36847f80b33fb", "cast_id": 17, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 7}, {"name": "Bonnie Hunt", "character": "Laurel Boyd", "id": 5149, "credit_id": "52fe44f1c3a36847f80b33ff", "cast_id": 18, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 8}, {"name": "Regina King", "character": "Marcee Tidwell", "id": 9788, "credit_id": "52fe44f1c3a36847f80b3403", "cast_id": 19, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 9}, {"name": "Todd Louiso", "character": "Chad the Nanny", "id": 3230, "credit_id": "52fe44f1c3a36847f80b3407", "cast_id": 20, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 10}, {"name": "Mark Pellington", "character": "Bill Dooler", "id": 11676, "credit_id": "52fe44f1c3a36847f80b340b", "cast_id": 21, "profile_path": "/7TR3DIbvsLKHrCkylSJgySGcs3Z.jpg", "order": 11}, {"name": "Jeremy Suarez", "character": "Tyson Tidwell", "id": 61959, "credit_id": "52fe44f1c3a36847f80b340f", "cast_id": 22, "profile_path": "/ktydBVBvNUlmfJj56aYwJ0O31JN.jpg", "order": 12}, {"name": "Jared Jussim", "character": "Dicky Fox", "id": 1076193, "credit_id": "52fe44f1c3a36847f80b3413", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Benjamin Kimball Smith", "character": "Keith Cushman", "id": 1076194, "credit_id": "52fe44f1c3a36847f80b3417", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Ingrid Beer", "character": "Anne-Louise", "id": 183716, "credit_id": "52fe44f1c3a36847f80b341b", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Donal Logue", "character": "Rick", "id": 10825, "credit_id": "546eebc9c3a3682fa4001298", "cast_id": 26, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 16}, {"name": "Drake Bell", "character": "Jesse Remo", "id": 3272, "credit_id": "546eebd992514112f300133b", "cast_id": 27, "profile_path": "/5GqFeFdNXRzb9DwlFSfBef8Pmb0.jpg", "order": 17}, {"name": "Eric Stoltz", "character": "Ethan Valhere", "id": 7036, "credit_id": "546eebe7c3a3682fa700121f", "cast_id": 28, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 18}, {"name": "Beau Bridges", "character": "Matt Cushman", "id": 2222, "credit_id": "546eebfd92514112e7001235", "cast_id": 29, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 19}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b33bb", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.3, "runtime": 139}, "9392": {"poster_path": "/ldzNyitGjBLjjOzLTaQyYDMVDF1.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "After a tragic accident, six friends reunite for a caving expedition. Their adventure soon goes horribly wrong when a collapse traps them deep underground and they find themselves pursued by bloodthirsty creatures. As their friendships deteriorate, they find themselves in a desperate struggle to survive the creatures and each other.", "video": false, "id": 9392, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}], "title": "The Descent", "tagline": "Scream your last breath.", "vote_count": 213, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/o6nAtQxqqANvRzpr4d1LqGvzlZ8.jpg", "id": 87258, "name": "The Descent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0435625", "adult": false, "backdrop_path": "/yiJonnQUW5luTsQy2KuUuOZqtjM.jpg", "production_companies": [{"name": "Path\u00e9", "id": 7981}, {"name": "Celador Films", "id": 3573}, {"name": "Northmen Productions", "id": 45785}], "release_date": "2005-07-08", "popularity": 1.15488783657451, "original_title": "The Descent", "budget": 0, "cast": [{"name": "Shauna Macdonald", "character": "Sarah", "id": 57574, "credit_id": "52fe44f1c3a36847f80b34a1", "cast_id": 1, "profile_path": "/9FInrBy6ngLURnncUCbWk3iLsJE.jpg", "order": 0}, {"name": "Natalie Mendoza", "character": "Juno", "id": 57575, "credit_id": "52fe44f1c3a36847f80b34a5", "cast_id": 2, "profile_path": "/4yeZSEKGvUiCcljsFub2SxFGGuz.jpg", "order": 1}, {"name": "Alex Reid", "character": "Beth", "id": 57576, "credit_id": "52fe44f1c3a36847f80b34a9", "cast_id": 3, "profile_path": "/94VHUmTOFYLmzNlEzcaTuGhNe7p.jpg", "order": 2}, {"name": "Saskia Mulder", "character": "Rebecca", "id": 57577, "credit_id": "52fe44f1c3a36847f80b34ad", "cast_id": 4, "profile_path": "/uvoxZyLCKFoGuHle4vfAzYIb3Uc.jpg", "order": 3}, {"name": "MyAnna Buring", "character": "Sam", "id": 57578, "credit_id": "52fe44f1c3a36847f80b34b1", "cast_id": 5, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 4}, {"name": "Nora-Jane Noone", "character": "Holly", "id": 53998, "credit_id": "52fe44f1c3a36847f80b34b5", "cast_id": 6, "profile_path": "/fhXObJ2HvASXvbfPHxAPzc9ueZc.jpg", "order": 5}, {"name": "Oliver Milburn", "character": "Paul", "id": 95023, "credit_id": "52fe44f1c3a36847f80b34e9", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Molly Kayll", "character": "Jessica", "id": 998202, "credit_id": "52fe44f1c3a36847f80b34ed", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Craig Conway", "character": "Crawler - Scar", "id": 94956, "credit_id": "52fe44f1c3a36847f80b34f1", "cast_id": 18, "profile_path": "/trFSWzoXNgWYFMicJSlBQhphGNp.jpg", "order": 8}, {"name": "Leslie Simpson", "character": "Crawler", "id": 944315, "credit_id": "52fe44f1c3a36847f80b34f5", "cast_id": 19, "profile_path": null, "order": 9}], "directors": [{"name": "Neil Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b34bb", "profile_path": "/Au5p9cFlj2XVoVIECQ40ruOp1Qz.jpg", "id": 57581}], "vote_average": 6.9, "runtime": 99}, "200": {"poster_path": "/sQdiBAMZ8mq9Eb9fQX1Z7HZHUVs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118000000, "overview": "When an alien race and factions within Starfleet attempt to take over a planet that has \"regenerative\" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.", "video": false, "id": 200, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: Insurrection", "tagline": "The battle for paradise has begun.", "vote_count": 135, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120844", "adult": false, "backdrop_path": "/yaattgmMQ9dLg6n8XPXAER8WI2C.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1998-12-10", "popularity": 0.640618460895062, "original_title": "Star Trek: Insurrection", "budget": 70000000, "cast": [{"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4226c3a36847f8007c27", "cast_id": 8, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Jonathan Frakes", "character": "Commander William T. Riker", "id": 2388, "credit_id": "52fe4226c3a36847f8007c2b", "cast_id": 9, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 1}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4226c3a36847f8007c8b", "cast_id": 30, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 2}, {"name": "LeVar Burton", "character": "Lt. Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4226c3a36847f8007c2f", "cast_id": 11, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 3}, {"name": "Gates McFadden", "character": "Doctor Beverly Crusher", "id": 2392, "credit_id": "52fe4226c3a36847f8007c33", "cast_id": 13, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 4}, {"name": "Marina Sirtis", "character": "Counselor Deanna Troi", "id": 2393, "credit_id": "52fe4226c3a36847f8007c37", "cast_id": 14, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 5}, {"name": "F. Murray Abraham", "character": "Ad'har Ru'afo", "id": 1164, "credit_id": "52fe4226c3a36847f8007c3b", "cast_id": 15, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 6}, {"name": "Anthony Zerbe", "character": "Vice-Adm. Dougherty", "id": 2516, "credit_id": "52fe4226c3a36847f8007c3f", "cast_id": 16, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 7}, {"name": "Donna Murphy", "character": "Anij", "id": 2517, "credit_id": "52fe4226c3a36847f8007c43", "cast_id": 17, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 8}, {"name": "Gregg Henry", "character": "Gallatin", "id": 2518, "credit_id": "52fe4226c3a36847f8007c47", "cast_id": 18, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 9}, {"name": "Michael Dorn", "character": "Lt. Commander Worf", "id": 2391, "credit_id": "52fe4226c3a36847f8007c87", "cast_id": 29, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 10}], "directors": [{"name": "Jonathan Frakes", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007bff", "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "id": 2388}], "vote_average": 6.3, "runtime": 103}, "9394": {"poster_path": "/5b38dfzKqUmTY2HRYrdKJ8vFWAR.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "The simple story has the pair coming to the rescue of peace-loving Mormons when land-hungry Major Harriman sends his bullies to harass them into giving up their fertile valley. Trinity and Bambino manage to save the Mormons and send the bad guys packing with slapstick humor instead of excessive violence, saving the day.", "video": false, "id": 9394, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "They Call Me Trinity", "tagline": "Look out! Here comes Trinity...", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6DNoTs6QscEGO5N6qNISWLwJBKO.jpg", "poster_path": "/wFsAGHW8eUG0kVbcEecgoM8H0t0.jpg", "id": 212525, "name": "Trinity Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0067355", "adult": false, "backdrop_path": "/iE2Y2s15xQcNTG3x7gU2gZVvZ9x.jpg", "production_companies": [{"name": "West Film", "id": 4241}], "release_date": "1970-12-22", "popularity": 0.833975569977417, "original_title": "Lo chiamavano Trinit\u00e0...", "budget": 0, "cast": [{"name": "Terence Hill", "character": "Trinity", "id": 15140, "credit_id": "52fe44f2c3a36847f80b359f", "cast_id": 1, "profile_path": "/ayNVIUCB3b0Hj88a5i9qH88Df11.jpg", "order": 0}, {"name": "Bud Spencer", "character": "Bambino", "id": 18841, "credit_id": "52fe44f2c3a36847f80b35a3", "cast_id": 2, "profile_path": "/9DbwXqkoMLBqZaQYEeSDX934mTG.jpg", "order": 1}, {"name": "Steffen Zacharias", "character": "Jonathan", "id": 132262, "credit_id": "534cd5ce0e0a2661b1000a25", "cast_id": 18, "profile_path": "/xP04arHkZvDaSC51IhcAgq9wINk.jpg", "order": 2}, {"name": "Dan Sturkie", "character": "Tobias", "id": 227037, "credit_id": "53550aaec3a3681da50056f0", "cast_id": 19, "profile_path": "/wXALwbkgtNWcxQNy4gLMMW1U5g3.jpg", "order": 3}, {"name": "Gisela Hahn", "character": "Sarah", "id": 32370, "credit_id": "53550abcc3a3681da50056f3", "cast_id": 20, "profile_path": "/cU2XmB2TLI0kNrHnphWZLd9C0Yo.jpg", "order": 4}, {"name": "Elena Pedemonte", "character": "Judith", "id": 57588, "credit_id": "52fe44f2c3a36847f80b35ab", "cast_id": 4, "profile_path": "/tS7nxZ0nQb1Qxs5iiOIwQJooxYQ.jpg", "order": 5}, {"name": "Farley Granger", "character": "Major Harriman", "id": 12497, "credit_id": "52fe44f2c3a36847f80b35a7", "cast_id": 3, "profile_path": "/uMawvHjbqcg2s1UnedJwD9Njzy5.jpg", "order": 6}, {"name": "Ezio Marano", "character": "Frank/Weasel", "id": 1076431, "credit_id": "53550ac4c3a3681d980057ca", "cast_id": 21, "profile_path": "/7eXyPWyc0Y4ulDHP4jF51UW1nxI.jpg", "order": 7}, {"name": "Luciano Rossi", "character": "Timmy", "id": 43240, "credit_id": "53550accc3a3681da50056f6", "cast_id": 22, "profile_path": "/dsyndJvqLtVVnWaVTyiJKmg5uCq.jpg", "order": 8}, {"name": "Michele Cimarosa", "character": "Mexican Prisoner", "id": 543680, "credit_id": "53f17ba30e0a2675a9004e8f", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Ugo Sasso", "character": "Sheriff", "id": 46546, "credit_id": "53550ad4c3a3681d93005867", "cast_id": 23, "profile_path": "/rr3KQt6w1Rr8ynuIQtrHr29WkpM.jpg", "order": 10}, {"name": "Remo Capitani", "character": "Mezcal", "id": 33811, "credit_id": "53550adcc3a3681d810059d8", "cast_id": 24, "profile_path": "/sCbWlri6iFItqrMXCy2DWGrAZJJ.jpg", "order": 11}, {"name": "Riccardo Pizzuti", "character": "Jeff", "id": 103617, "credit_id": "53550ae2c3a3681d980057cd", "cast_id": 25, "profile_path": "/i592A0oxM1N1RyuukB7kl7xZmFT.jpg", "order": 12}, {"name": "Paolo Magalotti", "character": "Bandit", "id": 237344, "credit_id": "53f0260bc3a3685ad900244c", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Thomas Rudy", "character": "Emiliano", "id": 147000, "credit_id": "53f18497c3a3685aff003d43", "cast_id": 31, "profile_path": "/5cy1LXr6tUb2ZZjVqo2ZGlZceGV.jpg", "order": 14}, {"name": "Antonio Monselesan", "character": "Wildcat Hendricks", "id": 1140498, "credit_id": "53f17e160e0a2675b2004f33", "cast_id": 30, "profile_path": "/9OZyCBPlZkNnZOU62iY29TtwTRo.jpg", "order": 15}, {"name": "Gaetano Imbr\u00f3", "character": "Blond Bounty Killer", "id": 1019931, "credit_id": "53f186230e0a2675b8004ff9", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Franco Marletta", "character": "", "id": 1055730, "credit_id": "53f187900e0a2675b2005189", "cast_id": 33, "profile_path": "/gAjSxYeRFgkkgF73UClpgIXgg8.jpg", "order": 17}, {"name": "Luigi Bonos", "character": "Ozgur", "id": 32675, "credit_id": "53550aeac3a3681d7b005a09", "cast_id": 26, "profile_path": null, "order": 18}], "directors": [{"name": "Enzo Barboni", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b35b1", "profile_path": null, "id": 56033}], "vote_average": 7.2, "runtime": 106}, "9396": {"poster_path": "/m8DRsyNMD1pzWIgOb7X6XN7R3y0.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Australian outback expert protects his New York love from gangsters who've followed her down under.", "video": false, "id": 9396, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Crocodile Dundee II", "tagline": "The world's favourite adventurer is back for more! much more!", "vote_count": 71, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pI2EqYQCzCRnrpiFHl8rrGp1qW9.jpg", "poster_path": "/byOilboEpWHFiQ7klAZ4LZ6NN0t.jpg", "id": 9332, "name": "Crocodile Dundee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092493", "adult": false, "backdrop_path": "/e4GKAesuV3GhCTvP4EeuSDJ2vPg.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-05-19", "popularity": 0.535066983691846, "original_title": "Crocodile Dundee II", "budget": 0, "cast": [{"name": "Paul Hogan", "character": "Michael J. 'Crocodile' Dundee", "id": 57147, "credit_id": "52fe44f2c3a36847f80b368b", "cast_id": 1, "profile_path": "/hNR9JKnEsEKgzKcSBcqtHCkDynQ.jpg", "order": 0}, {"name": "Linda Kozlowski", "character": "Sue Charlton", "id": 57166, "credit_id": "52fe44f2c3a36847f80b368f", "cast_id": 2, "profile_path": "/9qgl8JSTVOLtVVPshXclSGxiP57.jpg", "order": 1}, {"name": "John Meillon", "character": "Walter Reilly", "id": 42841, "credit_id": "52fe44f2c3a36847f80b3693", "cast_id": 3, "profile_path": "/dKsqaE8GZ2YjdFREpe17QVVnsGJ.jpg", "order": 2}, {"name": "Ernie Dingo", "character": "Charlie", "id": 57593, "credit_id": "52fe44f2c3a36847f80b3697", "cast_id": 4, "profile_path": "/1G11aiwavGIivegyLsh9QhKuSlH.jpg", "order": 3}, {"name": "Charles S. Dutton", "character": "Leroy Brown", "id": 17764, "credit_id": "54de23f4925141194b001bb6", "cast_id": 15, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Jose", "id": 40481, "credit_id": "54de2412925141195000197d", "cast_id": 16, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Stephen Root", "character": "DEA Agent", "id": 17401, "credit_id": "54de24559251411956001a2a", "cast_id": 17, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}, {"name": "Dennis Boutsikaris", "character": "Bob Tanner", "id": 118937, "credit_id": "54de2474925141194b001bce", "cast_id": 18, "profile_path": "/uq1dmNevTzOw62hbLhE6JMu7p1H.jpg", "order": 7}, {"name": "Tatyana Ali", "character": "Park Girl", "id": 4996, "credit_id": "54de24afc3a3684558001ab1", "cast_id": 19, "profile_path": "/7Mzcrk00fmLKS1VwQwouTHmwOXP.jpg", "order": 8}, {"name": "Colin Quinn", "character": "Onlooker at Mansion", "id": 1219901, "credit_id": "54de24d7c3a3684558001abb", "cast_id": 20, "profile_path": "/qKP3sURBluc5NG2g5LrKoVnY5iG.jpg", "order": 9}], "directors": [{"name": "John Cornell", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b369d", "profile_path": null, "id": 57594}], "vote_average": 5.9, "runtime": 110}, "9397": {"poster_path": "/l1jIlOD5f2wr1U4fdt1OEwj6sHe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98376292, "overview": "College professor Ira Kane is invited by geology teacher/girls' volleyball coach Harry Block to investigate a meteorite that has crashed through the surface rock into a network of underground caverns under the sleepy town of Glen Canyon, Arizona. They collect a sample and find that it consists extraterrestrial, single-celled, nitrogen-based organisms, which evolve rapidly.", "video": false, "id": 9397, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Evolution", "tagline": "Coming to wipe that silly smile off your planet.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251075", "adult": false, "backdrop_path": "/fhWAnKEq3FmEl5wjXCOPWesD1rQ.jpg", "production_companies": [{"name": "Montecito Picture Company, The", "id": 4607}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2001-06-07", "popularity": 0.648201313987922, "original_title": "Evolution", "budget": 80000000, "cast": [{"name": "David Duchovny", "character": "Dr. Ira Kane", "id": 12640, "credit_id": "52fe44f2c3a36847f80b370d", "cast_id": 1, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Dr. Allison Reed, CDC", "id": 1231, "credit_id": "52fe44f2c3a36847f80b3711", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Orlando Jones", "character": "Prof. Harry Phineas Block", "id": 18270, "credit_id": "52fe44f2c3a36847f80b3715", "cast_id": 3, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 2}, {"name": "Seann William Scott", "character": "Wayne Grey", "id": 57599, "credit_id": "52fe44f2c3a36847f80b3719", "cast_id": 4, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 3}, {"name": "Ted Levine", "character": "General Russell Woodman", "id": 15854, "credit_id": "52fe44f2c3a36847f80b371d", "cast_id": 5, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 4}, {"name": "Dan Aykroyd", "character": "Governor Lewis", "id": 707, "credit_id": "52fe44f2c3a36847f80b3721", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 5}, {"name": "Ty Burrell", "character": "Colonel Flemming", "id": 15232, "credit_id": "52fe44f2c3a36847f80b377f", "cast_id": 22, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 6}, {"name": "Andrew Bowen", "character": "Road Worker", "id": 94853, "credit_id": "52fe44f2c3a36847f80b3783", "cast_id": 23, "profile_path": "/pkSk4U3P9dkyxlmlg2csR6OxmX8.jpg", "order": 7}, {"name": "Sarah Silverman", "character": "Denise", "id": 7404, "credit_id": "52fe44f2c3a36847f80b3787", "cast_id": 24, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 8}, {"name": "Katharine Towne", "character": "Nadine", "id": 15012, "credit_id": "52fe44f2c3a36847f80b378b", "cast_id": 25, "profile_path": "/33AK0lDtxIhh7125JC7daDWMSkC.jpg", "order": 9}, {"name": "Stephanie Hodge", "character": "Jill Mason", "id": 1216510, "credit_id": "52fe44f2c3a36847f80b378f", "cast_id": 26, "profile_path": "/9l85xTB0PQH4dHP8U3lDuFTJlOg.jpg", "order": 10}, {"name": "Gregory Itzin", "character": "Cartwright", "id": 21142, "credit_id": "54f992d9c3a3683c55001243", "cast_id": 106, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 11}, {"name": "Michelle Wolff", "character": "Carla", "id": 179019, "credit_id": "54f992f7c3a3683c55001249", "cast_id": 107, "profile_path": "/M0K6tlOOpD7eK1VSEBx2BafpHD.jpg", "order": 12}, {"name": "Steven Gilborn", "character": "Judge Guilder", "id": 31032, "credit_id": "54f99377c3a36878d2001678", "cast_id": 108, "profile_path": null, "order": 13}, {"name": "Wayne Duvall", "character": "Dr. Paulson", "id": 1470, "credit_id": "54f9939d9251414392001527", "cast_id": 109, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 14}, {"name": "Kyle Gass", "character": "Officer Drake", "id": 22297, "credit_id": "54f993bd9251416fab0011ce", "cast_id": 110, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 15}, {"name": "Jerry Trainor", "character": "Tommy", "id": 111512, "credit_id": "54f993eac3a36878e1001710", "cast_id": 111, "profile_path": "/sPElk2oZDaH2RE5rtE0STFSBLKY.jpg", "order": 16}, {"name": "Jennifer Savidge", "character": "Clare", "id": 28165, "credit_id": "54f99402925141439f001488", "cast_id": 112, "profile_path": null, "order": 17}, {"name": "Wendy Braun", "character": "Nurse Tate", "id": 177164, "credit_id": "54f9941b925141439f00148b", "cast_id": 113, "profile_path": "/8wqSLpIqgtzU5ZoIEckWpd8KpEO.jpg", "order": 18}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b3727", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.3, "runtime": 101}, "9398": {"poster_path": "/zNBryDxDAScAgKat8X18K2Jtg6k.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60780981, "overview": "Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic \"he's so hot right now\" Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. Its a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories can Derek make the world safe.", "video": false, "id": 9398, "genres": [{"id": 35, "name": "Comedy"}], "title": "Zoolander", "tagline": "3% Body Fat. 1% Brain Activity.", "vote_count": 248, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0196229", "adult": false, "backdrop_path": "/hN5SsPEmD9oT5ajFXt5lWbl3RMb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Red Hour Productions", "id": 2932}, {"name": "Tenth Planet Productions", "id": 2933}], "release_date": "2001-09-27", "popularity": 0.806554335328155, "original_title": "Zoolander", "budget": 28000000, "cast": [{"name": "Ben Stiller", "character": "Derek Zoolander", "id": 7399, "credit_id": "52fe44f2c3a36847f80b3813", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Hansel", "id": 887, "credit_id": "52fe44f2c3a36847f80b3817", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Christine Taylor", "character": "Matilda Jeffries", "id": 15286, "credit_id": "52fe44f2c3a36847f80b381b", "cast_id": 3, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 2}, {"name": "Will Ferrell", "character": "Mugatu", "id": 23659, "credit_id": "52fe44f2c3a36847f80b381f", "cast_id": 4, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 3}, {"name": "Milla Jovovich", "character": "Katinka", "id": 63, "credit_id": "52fe44f2c3a36847f80b3823", "cast_id": 5, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 4}, {"name": "Jerry Stiller", "character": "Maury Ballstein", "id": 26042, "credit_id": "52fe44f2c3a36847f80b3827", "cast_id": 6, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 5}, {"name": "David Duchovny", "character": "J.P. Prewitt", "id": 12640, "credit_id": "52fe44f2c3a36847f80b382b", "cast_id": 7, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 6}, {"name": "Jon Voight", "character": "Larry Zoolander", "id": 10127, "credit_id": "52fe44f2c3a36847f80b382f", "cast_id": 8, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 7}, {"name": "Donald Trump", "character": "Himself", "id": 33663, "credit_id": "52fe44f2c3a36847f80b3833", "cast_id": 9, "profile_path": "/n775kiJGgMC82R7s4T2jQMPNqQh.jpg", "order": 8}, {"name": "Christian Slater", "character": "Himself", "id": 2224, "credit_id": "52fe44f2c3a36847f80b3837", "cast_id": 10, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 9}, {"name": "Tom Ford", "character": "Himself", "id": 77066, "credit_id": "52fe44f2c3a36847f80b38a7", "cast_id": 29, "profile_path": "/dNWHZ8xb6w7CSR4KW5n9aRPPeqk.jpg", "order": 10}, {"name": "Cuba Gooding Jr.", "character": "Himself", "id": 9777, "credit_id": "52fe44f2c3a36847f80b38ab", "cast_id": 30, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 11}, {"name": "Steve Kmetko", "character": "Himself", "id": 77067, "credit_id": "52fe44f2c3a36847f80b38af", "cast_id": 31, "profile_path": "/laWiYZQz9jsdpFy0xcJjl9Bt98W.jpg", "order": 12}, {"name": "Tommy Hilfiger", "character": "Himself", "id": 77068, "credit_id": "52fe44f2c3a36847f80b38b3", "cast_id": 32, "profile_path": "/sACghyt7NhURMXgnS1271iYzXzt.jpg", "order": 13}, {"name": "Natalie Portman", "character": "Herself", "id": 524, "credit_id": "52fe44f2c3a36847f80b38b7", "cast_id": 33, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 14}, {"name": "Lenny Kravitz", "character": "Himself", "id": 77069, "credit_id": "52fe44f2c3a36847f80b38bb", "cast_id": 34, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 15}, {"name": "Gwen Stefani", "character": "Herself", "id": 77070, "credit_id": "52fe44f2c3a36847f80b38bf", "cast_id": 35, "profile_path": "/3rXTUPjqPkSCGn5EgIinphBsXmm.jpg", "order": 16}, {"name": "Heidi Klum", "character": "Herself", "id": 10584, "credit_id": "52fe44f2c3a36847f80b38c3", "cast_id": 36, "profile_path": "/paqUEfaU9ERt0y0bLtD4vHa9oYl.jpg", "order": 17}, {"name": "Mark Ronson", "character": "Himself", "id": 77071, "credit_id": "52fe44f2c3a36847f80b38c7", "cast_id": 37, "profile_path": "/xGYuWeHJwGQfdrc8qPdChR8mel.jpg", "order": 18}, {"name": "Paris Hilton", "character": "Herself", "id": 38406, "credit_id": "52fe44f2c3a36847f80b38cb", "cast_id": 38, "profile_path": "/fFS3dURYg1NTCshT7XxnFDZ3CNI.jpg", "order": 19}, {"name": "David Bowie", "character": "Himself", "id": 7487, "credit_id": "52fe44f2c3a36847f80b38cf", "cast_id": 39, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 20}, {"name": "Tyson Beckford", "character": "Himself", "id": 77072, "credit_id": "52fe44f2c3a36847f80b38d3", "cast_id": 40, "profile_path": "/v1GenKXn7vE36vCLCqDWgaS7bEd.jpg", "order": 21}, {"name": "Fred Durst", "character": "Himself", "id": 29783, "credit_id": "52fe44f2c3a36847f80b38d7", "cast_id": 41, "profile_path": "/2PClxb15HTU3zjAFqakoTiTNteY.jpg", "order": 22}, {"name": "Lance Bass", "character": "Himself", "id": 77073, "credit_id": "52fe44f2c3a36847f80b38db", "cast_id": 42, "profile_path": "/swHCsJyM3bEZB3zaEHPNjmkrB4B.jpg", "order": 23}, {"name": "Lil' Kim", "character": "Herself", "id": 57553, "credit_id": "52fe44f2c3a36847f80b38df", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Garry Shandling", "character": "Himself", "id": 52865, "credit_id": "52fe44f2c3a36847f80b38e3", "cast_id": 44, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 25}, {"name": "Claudia Schiffer", "character": "Herself", "id": 33163, "credit_id": "52fe44f2c3a36847f80b38e7", "cast_id": 45, "profile_path": "/pIF64tY07cbYo3IlnFcPB3KJl5c.jpg", "order": 26}, {"name": "Veronica Webb", "character": "Herself", "id": 77074, "credit_id": "52fe44f2c3a36847f80b38eb", "cast_id": 46, "profile_path": "/11UIX8eM2XY4KZQ4eoiptsQpM4k.jpg", "order": 27}, {"name": "Lukas Haas", "character": "Himself", "id": 526, "credit_id": "52fe44f2c3a36847f80b38ef", "cast_id": 47, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 28}, {"name": "Justin Theroux", "character": "Evil DJ", "id": 15009, "credit_id": "52fe44f2c3a36847f80b38f3", "cast_id": 48, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 29}, {"name": "Andy Dick", "character": "Olga the Masseuse", "id": 43120, "credit_id": "52fe44f2c3a36847f80b38f7", "cast_id": 49, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 30}, {"name": "Jennifer Coolidge", "character": "American Designer", "id": 38334, "credit_id": "52fe44f2c3a36847f80b38fb", "cast_id": 50, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 31}, {"name": "Nora Dunn", "character": "British Designer", "id": 4496, "credit_id": "52fe44f2c3a36847f80b38ff", "cast_id": 51, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 32}, {"name": "James Marsden", "character": "John Wilkes Booth", "id": 11006, "credit_id": "52fe44f2c3a36847f80b3903", "cast_id": 52, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 33}, {"name": "Patton Oswalt", "character": "Monkey Photographer", "id": 10872, "credit_id": "52fe44f2c3a36847f80b3907", "cast_id": 53, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 34}, {"name": "Victoria Beckham", "character": "Herself", "id": 47983, "credit_id": "52fe44f2c3a36847f80b390b", "cast_id": 54, "profile_path": "/bMRDMbX5NsMW9VNpo19KXl865Vi.jpg", "order": 35}, {"name": "Sandra Bernhard", "character": "Herself", "id": 3664, "credit_id": "52fe44f2c3a36847f80b390f", "cast_id": 55, "profile_path": "/nYCnCtbbWjrMsmbanQLGhRM3FXh.jpg", "order": 36}, {"name": "Stephen Dorff", "character": "Himself", "id": 10822, "credit_id": "52fe44f2c3a36847f80b3913", "cast_id": 56, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 37}, {"name": "Winona Ryder", "character": "Herself", "id": 1920, "credit_id": "52fe44f2c3a36847f80b3917", "cast_id": 57, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 38}, {"name": "Vince Vaughn", "character": "Luke Zoolander", "id": 4937, "credit_id": "52fe44f2c3a36847f80b391b", "cast_id": 58, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 39}, {"name": "Billy Zane", "character": "Himself", "id": 1954, "credit_id": "52fe44f3c3a36847f80b391f", "cast_id": 59, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 40}, {"name": "Fabio", "character": "Himself", "id": 170874, "credit_id": "52fe44f3c3a36847f80b3923", "cast_id": 60, "profile_path": "/bonrI0fvve4BLf68SVLGLHFc5Xc.jpg", "order": 41}, {"name": "Alexander Skarsg\u00e5rd", "character": "Meekus", "id": 28846, "credit_id": "52fe44f3c3a36847f80b3927", "cast_id": 61, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 42}, {"name": "Judah Friedlander", "character": "Scrappy Zoolander", "id": 52860, "credit_id": "52fe44f3c3a36847f80b392b", "cast_id": 62, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 43}, {"name": "Nathan Lee Graham", "character": "Todd", "id": 203809, "credit_id": "52fe44f3c3a36847f80b392f", "cast_id": 63, "profile_path": null, "order": 44}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe44f2c3a36847f80b383d", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 6.0, "runtime": 89}, "201": {"poster_path": "/n4TpLWPi062AofIq4kwmaPNBSvA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67312826, "overview": "En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.", "video": false, "id": 201, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Trek: Nemesis", "tagline": "A generation's final journey... begins.", "vote_count": 164, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r7MMQenUURHhAVHFymtOb8AX4Bm.jpg", "poster_path": "/5HOcAfSfFxmpUouyLOo6Si9F7fo.jpg", "id": 115570, "name": "Star Trek: The Next Generation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253754", "adult": false, "backdrop_path": "/sIpnn6MpNyKfBaWEnED063pmH9Z.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2002-12-12", "popularity": 0.436038193031324, "original_title": "Star Trek: Nemesis", "budget": 60000000, "cast": [{"name": "Patrick Stewart", "character": "Captain Jean-Luc Picard", "id": 2387, "credit_id": "52fe4226c3a36847f8007cf1", "cast_id": 6, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Jonathan Frakes", "character": "Captain William T. Riker", "id": 2388, "credit_id": "52fe4226c3a36847f8007cf5", "cast_id": 7, "profile_path": "/51Z5EbZxtVPm6GiN0Wc9CLP4z3s.jpg", "order": 1}, {"name": "LeVar Burton", "character": "Lt. Commander Geordi La Forge", "id": 2390, "credit_id": "52fe4226c3a36847f8007cf9", "cast_id": 9, "profile_path": "/C3Jj0fNoPxZXDyDapm8lHyUh7o.jpg", "order": 2}, {"name": "Brent Spiner", "character": "Lt. Commander Data", "id": 1213786, "credit_id": "52fe4226c3a36847f8007d75", "cast_id": 35, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 3}, {"name": "Gates McFadden", "character": "Dr. Beverly Crusher", "id": 2392, "credit_id": "52fe4226c3a36847f8007cfd", "cast_id": 11, "profile_path": "/zPx8IwxNwgCZOhpGad5h0mrLV2q.jpg", "order": 4}, {"name": "Marina Sirtis", "character": "Counselor Deanna Troi-Riker", "id": 2393, "credit_id": "52fe4226c3a36847f8007d01", "cast_id": 12, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 5}, {"name": "Tom Hardy", "character": "Praetor Shinzon", "id": 2524, "credit_id": "52fe4226c3a36847f8007d05", "cast_id": 13, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 6}, {"name": "Ron Perlman", "character": "The Reman Viceroy", "id": 2372, "credit_id": "52fe4226c3a36847f8007d09", "cast_id": 14, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 7}, {"name": "Shannon Cochran", "character": "Senator Tal'aura", "id": 2525, "credit_id": "52fe4226c3a36847f8007d0d", "cast_id": 15, "profile_path": "/x74NDVVXVPxNH5018UyIOEwhLgd.jpg", "order": 8}, {"name": "Dina Meyer", "character": "Commander Donatra", "id": 2133, "credit_id": "52fe4226c3a36847f8007d11", "cast_id": 16, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 9}, {"name": "Michael Dorn", "character": "Lt. Commander Worf", "id": 2391, "credit_id": "52fe4226c3a36847f8007d5d", "cast_id": 29, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 10}, {"name": "Kate Mulgrew", "character": "Admiral Janeway", "id": 35317, "credit_id": "52fe4226c3a36847f8007d61", "cast_id": 30, "profile_path": "/nrIUmghA3qNm0vvc2vEwC5zhAYg.jpg", "order": 11}, {"name": "Wil Wheaton", "character": "Wesley Crusher", "id": 3033, "credit_id": "52fe4226c3a36847f8007d65", "cast_id": 31, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 12}, {"name": "Whoopi Goldberg", "character": "Guinan", "id": 2395, "credit_id": "52fe4226c3a36847f8007d69", "cast_id": 32, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 13}, {"name": "Stuart Baird", "character": "Scimitar Computer (voice)", "id": 2523, "credit_id": "52fe4226c3a36847f8007d6d", "cast_id": 33, "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "order": 14}, {"name": "Alan Dale", "character": "Praetor Hiren", "id": 52760, "credit_id": "52fe4226c3a36847f8007d71", "cast_id": 34, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 15}, {"name": "Bryan Singer", "character": "Kelly (uncredited)", "id": 9032, "credit_id": "5526c71592514172760047e7", "cast_id": 38, "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "order": 16}], "directors": [{"name": "Stuart Baird", "department": "Directing", "job": "Director", "credit_id": "52fe4226c3a36847f8007cd5", "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "id": 2523}], "vote_average": 6.3, "runtime": 117}, "1213": {"poster_path": "/lNVD3OADzRxaqbnN1ThdgB0Fuoe.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128798265, "overview": "Tom Ripley is a charismatic sociopath who makes his way in mid-'50s New York as a rest room attendant and pianist. His skill however is in impersonating other people, forging handwriting and running second-rate scams. Unhappy with his own life, he kills and takes on the persona of somebody else.", "video": false, "id": 1213, "genres": [{"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Talented Mr. Ripley", "tagline": "It's better to be a fake somebody than a real nobody.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134119", "adult": false, "backdrop_path": "/pOm4IfypKwWUKjM5G2SZ2HSrJyM.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1999-12-12", "popularity": 0.693285091458995, "original_title": "The Talented Mr. Ripley", "budget": 40000000, "cast": [{"name": "Matt Damon", "character": "Tom Ripley", "id": 1892, "credit_id": "52fe42e9c3a36847f802c45b", "cast_id": 24, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Marge Sherwood", "id": 12052, "credit_id": "52fe42e9c3a36847f802c45f", "cast_id": 25, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Jude Law", "character": "Dickie Greenleaf", "id": 9642, "credit_id": "52fe42e9c3a36847f802c463", "cast_id": 26, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Cate Blanchett", "character": "Meredith Logue", "id": 112, "credit_id": "52fe42e9c3a36847f802c467", "cast_id": 27, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 3}, {"name": "Philip Seymour Hoffman", "character": "Freddie Miles", "id": 1233, "credit_id": "52fe42e9c3a36847f802c46b", "cast_id": 28, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 4}, {"name": "Jack Davenport", "character": "Peter Smith-Kingsley", "id": 1709, "credit_id": "52fe42e9c3a36847f802c46f", "cast_id": 29, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 5}, {"name": "James Rebhorn", "character": "Herbert Greenleaf", "id": 8986, "credit_id": "52fe42e9c3a36847f802c473", "cast_id": 30, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 6}, {"name": "Sergio Rubini", "character": "Inspector Roverini", "id": 15915, "credit_id": "52fe42e9c3a36847f802c477", "cast_id": 31, "profile_path": "/htMUSOo5EskkZWijO5QCwpEnDxo.jpg", "order": 7}, {"name": "Philip Baker Hall", "character": "Alvin MacCarron", "id": 4492, "credit_id": "52fe42e9c3a36847f802c47b", "cast_id": 32, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 8}, {"name": "Celia Weston", "character": "Aunt Joan", "id": 1989, "credit_id": "52fe42e9c3a36847f802c47f", "cast_id": 33, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 9}, {"name": "Fiorello", "character": "Fausto", "id": 15916, "credit_id": "52fe42e9c3a36847f802c483", "cast_id": 34, "profile_path": "/ww5gS2ZtXw8Bsg2F7YLw1qGvtvR.jpg", "order": 10}, {"name": "Stefania Rocca", "character": "Silvana", "id": 15917, "credit_id": "52fe42e9c3a36847f802c487", "cast_id": 35, "profile_path": "/kYEKFNHvxcv5e6muT1N8dC5eaB6.jpg", "order": 11}, {"name": "Ivano Marescotti", "character": "Colonnello Verrecchia", "id": 15918, "credit_id": "52fe42e9c3a36847f802c48b", "cast_id": 36, "profile_path": "/iPO3IGgwBgroaYnKhp7v7O4PTLo.jpg", "order": 12}, {"name": "Anna Longhi", "character": "Signora Buffi", "id": 15919, "credit_id": "52fe42e9c3a36847f802c48f", "cast_id": 37, "profile_path": "/mQvOhK1UPBfRvw61AjLnVnVQeZG.jpg", "order": 13}, {"name": "Alessandro Fabrizi", "character": "Sergeant Baggio", "id": 15920, "credit_id": "52fe42e9c3a36847f802c493", "cast_id": 38, "profile_path": "/xIvfsVEl1MqO8Tv27kfYMc56MOc.jpg", "order": 14}, {"name": "Lisa Eichhorn", "character": "Emily Greenleaf", "id": 28950, "credit_id": "545909d70e0a26115e0020f0", "cast_id": 39, "profile_path": "/bXHlVhxhpBUztRTxLPbDH97kNy5.jpg", "order": 15}, {"name": "Gretchen Egolf", "character": "Fran", "id": 161847, "credit_id": "54590a71c3a368398f001ffc", "cast_id": 40, "profile_path": "/zuMZ36vJh5KutdXUIufXqqzLFGO.jpg", "order": 16}, {"name": "Jack Willis", "character": "Greenleaf Chaffeur", "id": 1381777, "credit_id": "54590dcdc3a3683993002130", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Frederick Alexander Bosche", "character": "Fran's Boyfriend", "id": 1381779, "credit_id": "545910700e0a261158002172", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Dario Bergesio", "character": "Police Officer", "id": 1381781, "credit_id": "545911370e0a2611650020bf", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Larry Kaplan", "character": "Uncle Ted", "id": 1381788, "credit_id": "54592d940e0a2611550023b5", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Claire Hardwick", "character": "Gucci Assistant", "id": 1312059, "credit_id": "54592f0c0e0a26115e002383", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Antonio Prester", "character": "American Express Clerk (as Nino Prester)", "id": 51637, "credit_id": "5459313f0e0a2611650022ec", "cast_id": 46, "profile_path": "/dcnnyERVw7ZQAiYH97zwBORqJc1.jpg", "order": 22}, {"name": "Lorenzo Mancuso", "character": "Bus Driver", "id": 1381791, "credit_id": "54593319c3a36839a40022cb", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "Onofrio Mancuso", "character": "Priest", "id": 1381792, "credit_id": "5459338d0e0a26115e0023ec", "cast_id": 48, "profile_path": null, "order": 24}, {"name": "Massimo Reale", "character": "Immigration Officer", "id": 1281192, "credit_id": "5459369dc3a36839ac00202c", "cast_id": 49, "profile_path": "/i8w3EBM3ULtwj7dRH3tzvDNNR3o.jpg", "order": 25}, {"name": "Emanuele Carucci Viterbi", "character": "American Express Clerk", "id": 1381796, "credit_id": "54593716c3a36839a70023f4", "cast_id": 50, "profile_path": "/cDyuu8n7sZQjXY7c3Q4RygFOi6o.jpg", "order": 26}, {"name": "Caterina Deregibus", "character": "Dahlia (as Caterina De Regibus)", "id": 1381806, "credit_id": "54593d7d0e0a261162002408", "cast_id": 51, "profile_path": "/5y2ngrYNIzhydXs1uEAxbsGmIZe.jpg", "order": 27}, {"name": "Silvana Bosi", "character": "Ermelinda", "id": 7556, "credit_id": "545940eac3a368398f0023a3", "cast_id": 52, "profile_path": "/ipEi2FrAUO3iUM3MGfQKL5g1Wjm.jpg", "order": 28}, {"name": "Gianfranco Barra", "character": "Desk Manager Aldo", "id": 69068, "credit_id": "5459425a0e0a26116f002317", "cast_id": 53, "profile_path": "/9XDkYhAg6puyNVOMZwngC85BTzj.jpg", "order": 29}, {"name": "Renato Scarpa", "character": "Tailor", "id": 14149, "credit_id": "54594394c3a36839a0002455", "cast_id": 54, "profile_path": "/4jANi4vGdTqFG7a5OjtbM9ikwOe.jpg", "order": 30}, {"name": "Deirdre Lovejoy", "character": "Fighting Neighbor", "id": 58966, "credit_id": "5459440e0e0a261158002528", "cast_id": 55, "profile_path": "/yH2bcRNh4g9ZTRigDgRhVJEF2gh.jpg", "order": 31}, {"name": "Brian Tarantina", "character": "Fighting Neighbor", "id": 4890, "credit_id": "54594457c3a36839ac00212e", "cast_id": 56, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 32}, {"name": "Guy Barker", "character": "Trumpet (Napoli Jazz Septet)", "id": 1381827, "credit_id": "5459489bc3a36839a7002587", "cast_id": 57, "profile_path": null, "order": 33}, {"name": "Bernardo Sassetti", "character": "Piano (Napoli Jazz Septet)", "id": 1076332, "credit_id": "545a7fc1c3a36825fd00088f", "cast_id": 58, "profile_path": "/lT83vz9E8TSShqgDEJiLBPee0Cu.jpg", "order": 34}, {"name": "Perico Sambeat", "character": "Alto Sax (Napoli Jazz Septet)", "id": 1382091, "credit_id": "545a82ce0e0a263f5d00085d", "cast_id": 59, "profile_path": "/yf1LgC5l82cWvWhWpJafzJcTex2.jpg", "order": 35}, {"name": "Gene Calderazzo", "character": "Drums (Napoli Jazz Septet) mer", "id": 1382094, "credit_id": "545a8459c3a3682606000944", "cast_id": 60, "profile_path": "/zzarOCT9ZVdyTmy8hrSV5VYAGvu.jpg", "order": 36}, {"name": "Joseph Lepore", "character": "Double Bass (Napoli Jazz Septet)", "id": 1382098, "credit_id": "545a8782c3a3682603000950", "cast_id": 61, "profile_path": "/ep0UccdchUsbYgrjhbnX5EsbUf4.jpg", "order": 37}, {"name": "Rosario Giuliuni", "character": "Tenor Sax (Napoli Jazz Septet)", "id": 1382122, "credit_id": "545a91c10e0a263f560009dd", "cast_id": 62, "profile_path": null, "order": 38}, {"name": "Eddy Palerno", "character": "Electric Guitar (Napoli Jazz Septet)", "id": 1382123, "credit_id": "545a94f2c3a36825f5000a6f", "cast_id": 63, "profile_path": null, "order": 39}, {"name": "Byron Wallen", "character": "Cornet (San Remo Jazz Sextet)", "id": 1382124, "credit_id": "545a96e6c3a36825f9000ac8", "cast_id": 64, "profile_path": "/pXn1Ic47SyviAXZ56HGybDy53l.jpg", "order": 40}, {"name": "Pete King", "character": "Alto Sax (San Remo Jazz Sextet)", "id": 1382131, "credit_id": "545a9a7dc3a3682609000b36", "cast_id": 65, "profile_path": null, "order": 41}, {"name": "Clark Tracey", "character": "Drums (San Remo Jazz Sextet)", "id": 1382139, "credit_id": "545a9d97c3a3684029000004", "cast_id": 66, "profile_path": "/hU5NdD0jb0ClX8SWdujxMHEweP7.jpg", "order": 42}, {"name": "Jean Toussaint", "character": "Tenor Sax (San Remo Jazz Sextet)", "id": 1261972, "credit_id": "545ac7ad0e0a261fa60009b8", "cast_id": 67, "profile_path": "/kbocrdWrD5YpTfEMxcG6fUsmi1Z.jpg", "order": 43}, {"name": "Geoff Gascoyne", "character": "Bass (San Remo Jazz Sextet)", "id": 1382158, "credit_id": "545acac1c3a36853620001a2", "cast_id": 68, "profile_path": "/505Unv9xBRHiVZIFPDTKSekFw9B.jpg", "order": 44}, {"name": "Carlo Negroni", "character": "Piano (San Remo Jazz Sextet)", "id": 1382159, "credit_id": "545acd990e0a261fa9000b0e", "cast_id": 69, "profile_path": "/9a9qB3ifCYmRz4JterbxPdupsTi.jpg", "order": 45}, {"name": "Beppe Fiorello", "character": "Silvana's Fianc\u00e9", "id": 132419, "credit_id": "545acea5c3a368536b000239", "cast_id": 70, "profile_path": "/arhFRjoYVZ7aKUqdhYFwv7tB85.jpg", "order": 46}, {"name": "Marco Quaglia", "character": "Silvana's Brother", "id": 996844, "credit_id": "545ad11fc3a368536b0002a5", "cast_id": 71, "profile_path": "/3p3Q6JMklYCGNZtljqXV6P4eBb5.jpg", "order": 47}, {"name": "Alessandra Vanzi", "character": "Silvana's Mother", "id": 1173638, "credit_id": "545ad1fa0e0a261fad000cbc", "cast_id": 72, "profile_path": null, "order": 48}, {"name": "Marco Rossi", "character": "Photographer", "id": 1382167, "credit_id": "545ad22f0e0a261fb6000c22", "cast_id": 73, "profile_path": null, "order": 49}, {"name": "Roberto Valentini", "character": "Onegin (Eugene Onegin Player)", "id": 1382216, "credit_id": "545b20c6c3a368535d000d9d", "cast_id": 74, "profile_path": null, "order": 50}, {"name": "Francesco Bovino", "character": "Lensky (Eugene Onegin Player)", "id": 1382217, "credit_id": "545b21440e0a261fa600159f", "cast_id": 75, "profile_path": null, "order": 51}, {"name": "Stefano Canettieri", "character": "Zaretsky (Eugene Onegin Player)", "id": 1382218, "credit_id": "545b21a1c3a368535d000db6", "cast_id": 76, "profile_path": null, "order": 52}, {"name": "Marco Foti", "character": "Guillot (Eugene Onegin Player)", "id": 1303456, "credit_id": "545b24e6c3a3685358000da7", "cast_id": 77, "profile_path": null, "order": 53}, {"name": "Ludovica Tinghi", "character": "Fausto's Fianc\u00e9e", "id": 1382220, "credit_id": "545b25d20e0a261fb60016d7", "cast_id": 78, "profile_path": "/qZQ5Eg9n6qUgHoik9ALYAgBmSBI.jpg", "order": 54}, {"name": "Nicola Pannelli", "character": "Dinelli's Cafe Waiter", "id": 1356807, "credit_id": "545b2c0bc3a3685365000d38", "cast_id": 79, "profile_path": "/9NJBAusEcNvzP8niJPIukEKWBs2.jpg", "order": 55}, {"name": "Paolo Calabresi", "character": "Customs Officer", "id": 27399, "credit_id": "545b2e34c3a3685353000e20", "cast_id": 80, "profile_path": "/lG619iazeUGzo8EtG47nkV0i8ni.jpg", "order": 56}, {"name": "Pietro Ragusa", "character": "Record Store Owner", "id": 141830, "credit_id": "545b3093c3a368535d000f65", "cast_id": 81, "profile_path": "/iC9eD0sSCy7wRKfzSHWj2B3On9J.jpg", "order": 57}, {"name": "Simone Empler", "character": "Boy Singer", "id": 1382225, "credit_id": "545b30dc0e0a26042c001090", "cast_id": 82, "profile_path": null, "order": 58}, {"name": "Gianluca Secci", "character": "Policeman", "id": 1382226, "credit_id": "545b330c0e0a261fb6001848", "cast_id": 83, "profile_path": "/b5AtdLInDItFZzT3MCrJoX0Y4dQ.jpg", "order": 59}, {"name": "Manuel Ruffini", "character": "Policeman", "id": 1382227, "credit_id": "545b34df0e0a261fad001915", "cast_id": 84, "profile_path": null, "order": 60}, {"name": "Pierpaolo Lovino", "character": "Policeman", "id": 137810, "credit_id": "545b375d0e0a26042c001135", "cast_id": 85, "profile_path": "/p1jY1zQ1pZctOT28RbkWQe7dmuu.jpg", "order": 61}, {"name": "Roberto Di Palma", "character": "San Remo Hotel Desk Clerk", "id": 1325936, "credit_id": "545b38490e0a261fa9001823", "cast_id": 86, "profile_path": null, "order": 62}], "directors": [{"name": "Anthony Minghella", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c3d3", "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "id": 2239}], "vote_average": 6.5, "runtime": 139}, "9408": {"poster_path": "/2Car4vWVDenBIMhfCjBvAHzameI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149044513, "overview": "Cody is a surfing penguin from Shiverpool who dreams of making it big and being like his idol Big Z. On his journey he discovers his talents are not all he thinks they are and he must learn to accept that their is more to surfing than fame and fortune. Surf's Up is a 2007 American computer-animated mockumentary film produced by Sony Pictures Animation and distributed by Columbia Pictures and ImageWorks Studios. It stars the voices of Shia LaBeouf, Jeff Bridges, Zooey Deschanel, Jon Heder among others.", "video": false, "id": 9408, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Surf's Up", "tagline": "In the coldest place on Earth, he's the hottest thing around.", "vote_count": 178, "homepage": "http://www.sonypictures.com/homevideo/surfsup/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0423294", "adult": false, "backdrop_path": "/v6cvZfSAiUjvFVCCiaPNaZLA7gk.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}], "release_date": "2007-06-08", "popularity": 0.912334843015976, "original_title": "Surf's Up", "budget": 85000000, "cast": [{"name": "Shia LaBeouf", "character": "Cody Maverick", "id": 10959, "credit_id": "52fe44f4c3a36847f80b3ddf", "cast_id": 1, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Jeff Bridges", "character": "Big Z / Geek", "id": 1229, "credit_id": "52fe44f4c3a36847f80b3de3", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Lani Aliikai", "id": 11664, "credit_id": "52fe44f4c3a36847f80b3de7", "cast_id": 3, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Jon Heder", "character": "Chicken Joe", "id": 53926, "credit_id": "52fe44f4c3a36847f80b3deb", "cast_id": 4, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 3}, {"name": "James Woods", "character": "Reggie Belafonte", "id": 4512, "credit_id": "52fe44f4c3a36847f80b3e1f", "cast_id": 13, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 4}, {"name": "Diedrich Bader", "character": "Tank 'The Shredder' Evans", "id": 5727, "credit_id": "52fe44f4c3a36847f80b3e23", "cast_id": 14, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 5}, {"name": "Mario Cantone", "character": "Mikey Abromowitz", "id": 57551, "credit_id": "52fe44f4c3a36847f80b3e27", "cast_id": 15, "profile_path": "/jvxuIpzAYSWSbkaZd201KsSztp5.jpg", "order": 6}, {"name": "Kelly Slater", "character": "Kelly", "id": 4334, "credit_id": "52fe44f4c3a36847f80b3e2b", "cast_id": 16, "profile_path": "/hzgs3mpat2FhvPzGhJBgV8BTlxY.jpg", "order": 7}, {"name": "Rob Machado", "character": "Rob", "id": 108333, "credit_id": "52fe44f4c3a36847f80b3e2f", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Sal Masekela", "character": "SPEN Announcer", "id": 963069, "credit_id": "52fe44f4c3a36847f80b3e33", "cast_id": 18, "profile_path": "/mILyk5E0tXR7fCgWATzc8BdkbPq.jpg", "order": 9}, {"name": "Ash Brannon", "character": "Filmmaker", "id": 12905, "credit_id": "52fe44f4c3a36847f80b3e37", "cast_id": 19, "profile_path": "/6ueWgPEEBHvS3De2BHYQnYjRTig.jpg", "order": 10}, {"name": "Chris Buck", "character": "Filmmaker", "id": 15774, "credit_id": "52fe44f4c3a36847f80b3e3b", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Brian Posehn", "character": "Glen Maverick", "id": 20405, "credit_id": "52fe44f4c3a36847f80b3e3f", "cast_id": 21, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 12}, {"name": "Dana Belben", "character": "Edna Maverick", "id": 68863, "credit_id": "52fe44f4c3a36847f80b3e43", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Reed Buck", "character": "Arnold", "id": 1114051, "credit_id": "52fe44f4c3a36847f80b3e47", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Ash Brannon", "department": "Directing", "job": "Director", "credit_id": "52fe44f4c3a36847f80b3df1", "profile_path": "/6ueWgPEEBHvS3De2BHYQnYjRTig.jpg", "id": 12905}, {"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "52fe44f4c3a36847f80b3df7", "profile_path": null, "id": 15774}], "vote_average": 5.7, "runtime": 85}, "25793": {"poster_path": "/xgBiMf79HiThuHNfLvCo7eC2SSD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62395661, "overview": "Set in Harlem in 1987, claireece \"Precious\" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret..she can't read.", "video": false, "id": 25793, "genres": [{"id": 18, "name": "Drama"}], "title": "Precious", "tagline": "Life is hard. Life is short. Life is painful. Life is rich. Life is....Precious.", "vote_count": 65, "homepage": "http://www.weareallprecious.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0929632", "adult": false, "backdrop_path": "/eFyvYSFFkH7qYH6ouGcIFaKmwJV.jpg", "production_companies": [{"name": "Smokewood Entertainment Group", "id": 4424}], "release_date": "2009-11-06", "popularity": 0.653060509240538, "original_title": "Precious", "budget": 10000000, "cast": [{"name": "Gabourey Sidibe", "character": "Precious", "id": 109560, "credit_id": "52fe44dec3a368484e03b7b5", "cast_id": 1, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 0}, {"name": "Mo'Nique", "character": "Mary", "id": 60561, "credit_id": "52fe44dec3a368484e03b7b9", "cast_id": 2, "profile_path": "/2oXH2sx32C3w7t7HmorpPNGCUgG.jpg", "order": 1}, {"name": "Paula Patton", "character": "Ms. Rain", "id": 52851, "credit_id": "52fe44dec3a368484e03b7c3", "cast_id": 4, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 2}, {"name": "Mariah Carey", "character": "Mrs. Weiss", "id": 66586, "credit_id": "52fe44dec3a368484e03b7c7", "cast_id": 5, "profile_path": "/qU9qrbTkLwsyFL9mb6RUHxKmpp.jpg", "order": 3}, {"name": "Lenny Kravitz", "character": "Nurse John", "id": 77069, "credit_id": "52fe44dec3a368484e03b7cb", "cast_id": 6, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 4}, {"name": "Sherri Shepherd", "character": "Cornrows", "id": 109561, "credit_id": "52fe44dec3a368484e03b7cf", "cast_id": 7, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 5}, {"name": "Stephanie Andujar", "character": "Rita", "id": 109562, "credit_id": "52fe44dec3a368484e03b7d3", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Chyna Layne", "character": "Rhonda", "id": 109563, "credit_id": "52fe44dec3a368484e03b7d7", "cast_id": 9, "profile_path": "/h3dObaOF5Kv5CtIGKefu8x5yxKc.jpg", "order": 7}, {"name": "Amina Robinson", "character": "Jermaine", "id": 109564, "credit_id": "52fe44dec3a368484e03b7db", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Xosha Roquemore", "character": "Joann", "id": 109565, "credit_id": "52fe44dec3a368484e03b7df", "cast_id": 11, "profile_path": "/q7Ddbdwd6haCMT06KYk2nQJYzMv.jpg", "order": 9}, {"name": "Angelic Zambrana", "character": "Consuelo", "id": 109566, "credit_id": "52fe44dec3a368484e03b7e3", "cast_id": 12, "profile_path": "/35HuhFuFjSa4NfGvMnQayg25o7Q.jpg", "order": 10}, {"name": "Aunt Dot", "character": "Tootsie", "id": 109567, "credit_id": "52fe44dec3a368484e03b7e7", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Nealla Gordon", "character": "Mrs. Lichtenstien", "id": 109568, "credit_id": "52fe44dec3a368484e03b7eb", "cast_id": 14, "profile_path": "/m1e1x5RBU0Ck9BnTj3gwPkLamXI.jpg", "order": 12}, {"name": "Grace Hightower", "character": "Social Worker", "id": 109569, "credit_id": "52fe44dec3a368484e03b7ef", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Barret Helms", "character": "Tom Cruise (as Barret Isaiah Mindell)", "id": 109570, "credit_id": "52fe44dec3a368484e03b7f3", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Kimberly Russell", "character": "Katherine", "id": 65397, "credit_id": "52fe44dec3a368484e03b7f7", "cast_id": 17, "profile_path": "/mT3IzgdwqZPRq8CIh2jpDtDDjNH.jpg", "order": 15}, {"name": "Bill Sage", "character": "Mr. Wicher", "id": 32029, "credit_id": "52fe44dec3a368484e03b7fb", "cast_id": 18, "profile_path": "/580okgFwmaKyT12s1lUfY8yV9dg.jpg", "order": 16}, {"name": "Susan Taylor", "character": "Fairy Godmother", "id": 109571, "credit_id": "52fe44dec3a368484e03b7ff", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Kendall Toombs", "character": "Abdul, New Born", "id": 109572, "credit_id": "52fe44dec3a368484e03b803", "cast_id": 20, "profile_path": null, "order": 18}, {"name": "Alexander Toombs", "character": "Abdul, New Born", "id": 109573, "credit_id": "52fe44dec3a368484e03b807", "cast_id": 21, "profile_path": null, "order": 19}, {"name": "Cory Davis", "character": "Abdul, 9 Months", "id": 109574, "credit_id": "52fe44dec3a368484e03b80b", "cast_id": 22, "profile_path": null, "order": 20}, {"name": "Rochelle McNaughton", "character": "AIDS Clerk", "id": 109575, "credit_id": "52fe44dec3a368484e03b80f", "cast_id": 23, "profile_path": null, "order": 21}], "directors": [{"name": "Lee Daniels", "department": "Directing", "job": "Director", "credit_id": "52fe44dec3a368484e03b7bf", "profile_path": "/xwsuwr435maV9wuo3iWXWVzEIMH.jpg", "id": 20019}], "vote_average": 7.0, "runtime": 110}, "9411": {"poster_path": "/v66GrbKcl1babq8BebUff0MI3m4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 981, "overview": "Homicide detective John Hobbes witnesses the execution of serial killer Edgar Reese. Soon after the execution the killings start again, and they are very similar to Reese's style.", "video": false, "id": 9411, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Fallen", "tagline": "Detective John Hobbes is searching for a criminal he's already met... already caught... and already killed", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119099", "adult": false, "backdrop_path": "/uFWC5LzkobhSNnutRoWlStSRXKe.jpg", "production_companies": [{"name": "Turner Pictures (I)", "id": 6189}, {"name": "Atlas Entertainment", "id": 507}], "release_date": "1998-01-16", "popularity": 0.72731676972072, "original_title": "Fallen", "budget": 500, "cast": [{"name": "Denzel Washington", "character": "John Hobbes", "id": 5292, "credit_id": "52fe44f4c3a36847f80b3f69", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "John Goodman", "character": "Jonesy", "id": 1230, "credit_id": "52fe44f4c3a36847f80b3f6d", "cast_id": 2, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Lt. Stanton", "id": 55636, "credit_id": "52fe44f4c3a36847f80b3f71", "cast_id": 3, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "Embeth Davidtz", "character": "Gretta Milano", "id": 6368, "credit_id": "52fe44f4c3a36847f80b3f8d", "cast_id": 8, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 3}, {"name": "James Gandolfini", "character": "Lou", "id": 4691, "credit_id": "53706b7e0e0a2647d801417b", "cast_id": 10, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Edgar Reese", "id": 13550, "credit_id": "53706b910e0a2647c40145c4", "cast_id": 11, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Gabriel Casseus", "character": "Art", "id": 18272, "credit_id": "53706b9e0e0a2647ce013b5d", "cast_id": 12, "profile_path": "/pAp9Rhl0X3kpNlk0ms0lDpQrPDF.jpg", "order": 6}, {"name": "Michael J. Pagan", "character": "Sam", "id": 59018, "credit_id": "53706bab0e0a2647d8014183", "cast_id": 13, "profile_path": "/ahRXzDcYUSwunOppktmfrU7XC8w.jpg", "order": 7}, {"name": "Robert Joy", "character": "Charles", "id": 19976, "credit_id": "53706bbb0e0a2647c8014803", "cast_id": 14, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 8}, {"name": "Frank Medrano", "character": "Charles' Killer", "id": 1216752, "credit_id": "53706bcd0e0a2647ce013b61", "cast_id": 15, "profile_path": null, "order": 9}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe44f4c3a36847f80b3f77", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 6.5, "runtime": 124}, "17609": {"poster_path": "/63CbwLpSJOYPmVhAYAt9ihvlvvf.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "PL", "name": "Poland"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "A grieving couple retreats to their cabin 'Eden' in the woods, hoping to repair their broken hearts and troubled marriage. But nature takes its course and things go from bad to worse.", "video": false, "id": 17609, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Antichrist", "tagline": "When nature turns evil, true terror awaits.", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0870984", "adult": false, "backdrop_path": "/tC9q69NLP4qLqPcloWYNkdWFkXa.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}, {"name": "Zentropa International K\u00f6ln", "id": 8289}, {"name": "Slot Machine", "id": 7777}, {"name": "Memfis Film", "id": 321}, {"name": "Trollh\u00e4ttan Film AB", "id": 320}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 315}, {"name": "Lucky Red", "id": 779}, {"name": "Zentropa International Poland", "id": 11236}, {"name": "Danmarks Radio (DR)", "id": 119}, {"name": "arte France Cin\u00e9ma", "id": 7755}, {"name": "ZDF/Arte", "id": 11237}, {"name": "ARTE", "id": 5766}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "CNC", "id": 6962}, {"name": "Canal+", "id": 5358}, {"name": "Det Danske Filminstitut", "id": 118}, {"name": "Deutsche Filmf\u00f6rderfonds (DFFF)", "id": 11238}, {"name": "Liberator Productions", "id": 11239}, {"name": "Nordisk Film- & TV-Fond", "id": 8555}, {"name": "Polski Instytut Sztuki Filmowej", "id": 11240}, {"name": "Svenska Filminstitutet (SFI)", "id": 7446}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}], "release_date": "2009-05-29", "popularity": 1.11645780826594, "original_title": "Antichrist", "budget": 11000000, "cast": [{"name": "Willem Dafoe", "character": "He", "id": 5293, "credit_id": "52fe47379251416c75091a5b", "cast_id": 1, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 0}, {"name": "Charlotte Gainsbourg", "character": "She", "id": 4273, "credit_id": "52fe47379251416c75091a5f", "cast_id": 2, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Storm Acheche Sahlstr\u00f8m", "character": "Nic", "id": 570509, "credit_id": "5379a3b50e0a261431006b04", "cast_id": 14, "profile_path": "/dGHGDtaXqiJsdAZ8yj6KNXBthXA.jpg", "order": 2}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe47379251416c75091a65", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.6, "runtime": 108}, "17610": {"poster_path": "/rrxNnCsUjajdvG9WGm4ePznCqn9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60236431, "overview": "When a couple of lazy hunter-gatherers are banished from their primitive village, they set off on an epic journey through the ancient world.", "video": false, "id": 17610, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Year One", "tagline": "Meet your ancestors", "vote_count": 155, "homepage": "http://www.yearone-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1045778", "adult": false, "backdrop_path": "/mv6mZHb2QBMVj40nNsBA9gRT3Fa.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}, {"name": "Ocean Pictures", "id": 7433}], "release_date": "2009-06-18", "popularity": 1.16272886714682, "original_title": "Year One", "budget": 60000000, "cast": [{"name": "Jack Black", "character": "Zed", "id": 70851, "credit_id": "52fe47379251416c75091ad3", "cast_id": 1, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Michael Cera", "character": "Oh", "id": 39995, "credit_id": "52fe47379251416c75091ad7", "cast_id": 2, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Princess Inanna", "id": 59315, "credit_id": "52fe47379251416c75091adb", "cast_id": 3, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Oliver Platt", "character": "High Priest", "id": 17485, "credit_id": "52fe47379251416c75091b21", "cast_id": 15, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 3}, {"name": "David Cross", "character": "Cain", "id": 212, "credit_id": "52fe47379251416c75091b25", "cast_id": 16, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Christopher Mintz-Plasse", "character": "Isaac", "id": 54691, "credit_id": "52fe47379251416c75091b29", "cast_id": 17, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 5}, {"name": "Vinnie Jones", "character": "Sargon", "id": 980, "credit_id": "52fe47379251416c75091b2d", "cast_id": 18, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 6}, {"name": "Hank Azaria", "character": "Abraham", "id": 5587, "credit_id": "52fe47379251416c75091b31", "cast_id": 19, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 7}, {"name": "Juno Temple", "character": "Eema", "id": 36594, "credit_id": "52fe47379251416c75091b35", "cast_id": 20, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 8}, {"name": "June Diane Raphael", "character": "Maya", "id": 83873, "credit_id": "52fe47379251416c75091b39", "cast_id": 21, "profile_path": "/ArhEeYtPoKmu9grgmmTLFMqXpdY.jpg", "order": 9}, {"name": "Xander Berkeley", "character": "King", "id": 3982, "credit_id": "52fe47379251416c75091b3d", "cast_id": 22, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 10}, {"name": "Gia Carides", "character": "Queen", "id": 14226, "credit_id": "52fe47379251416c75091b41", "cast_id": 23, "profile_path": "/hd4wkz74R00PDkMhCMuH2qqH2Yt.jpg", "order": 11}, {"name": "Kyle Gass", "character": "Zaftig the Eunuch", "id": 22297, "credit_id": "52fe47379251416c75091b45", "cast_id": 24, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 12}, {"name": "Paul Rudd", "character": "Abel", "id": 22226, "credit_id": "52fe47379251416c75091b49", "cast_id": 25, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 13}, {"name": "Eden Riegel", "character": "Lilith", "id": 217524, "credit_id": "52fe47379251416c75091b4d", "cast_id": 26, "profile_path": "/wMcRg3Y0x70U1vFoK0hBY7zS20E.jpg", "order": 14}, {"name": "Harold Ramis", "character": "Adam", "id": 1524, "credit_id": "530ce8a7925141141e001461", "cast_id": 27, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 15}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe47379251416c75091ae1", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 4.7, "runtime": 97}, "109431": {"poster_path": "/lOF4rI6SxgRsVLW8odsauqnhB9Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173965010, "overview": "When a mild-mannered businessman learns his identity has been stolen, he hits the road in an attempt to foil the thief -- a trip that puts him in the path of a deceptively harmless-looking woman.", "video": false, "id": 109431, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Identity Thief", "tagline": "Is this the face of a sucker?", "vote_count": 1042, "homepage": "http://www.identitythiefmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2024432", "adult": false, "backdrop_path": "/q9MgSS0QvapgerVJ2C0Y6F8jOwx.jpg", "production_companies": [{"name": "Stuber Productions", "id": 4403}, {"name": "Aggregate Films", "id": 37361}, {"name": "DumbDumb", "id": 37362}], "release_date": "2013-02-09", "popularity": 0.916224852708464, "original_title": "Identity Thief", "budget": 35000000, "cast": [{"name": "Jason Bateman", "character": "Sandy Patterson", "id": 23532, "credit_id": "52fe4ab5c3a36847f81dd83b", "cast_id": 12, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Melissa McCarthy", "character": "Diana", "id": 55536, "credit_id": "52fe4ab6c3a36847f81dd847", "cast_id": 15, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 1}, {"name": "Jon Favreau", "character": "Harold Cornish", "id": 15277, "credit_id": "52fe4ab5c3a36847f81dd83f", "cast_id": 13, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 2}, {"name": "Amanda Peet", "character": "Trish Patterson", "id": 2956, "credit_id": "52fe4ab6c3a36847f81dd863", "cast_id": 22, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 3}, {"name": "T.I.", "character": "Julian", "id": 76126, "credit_id": "52fe4ab6c3a36847f81dd853", "cast_id": 18, "profile_path": "/ycNO8wU6H75wDDfojMCTjoxtEmt.jpg", "order": 4}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Marisol", "id": 589162, "credit_id": "52fe4ab6c3a36847f81dd84f", "cast_id": 17, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 5}, {"name": "Morris Chestnut", "character": "Detective Reilly", "id": 9779, "credit_id": "52fe4ab6c3a36847f81dd857", "cast_id": 19, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 6}, {"name": "John Cho", "character": "Daniel Casey", "id": 68842, "credit_id": "52fe4ab6c3a36847f81dd84b", "cast_id": 16, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 7}, {"name": "Robert Patrick", "character": "Skiptracer", "id": 418, "credit_id": "52fe4ab6c3a36847f81dd85b", "cast_id": 20, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 8}, {"name": "Eric Stonestreet", "character": "Big Chuck", "id": 156962, "credit_id": "52fe4ab6c3a36847f81dd85f", "cast_id": 21, "profile_path": "/pphQCQ2rZMahePbXMiIkW0sEOM4.jpg", "order": 9}, {"name": "Jonathan Banks", "character": "Paul", "id": 783, "credit_id": "52fe4ab6c3a36847f81dd885", "cast_id": 28, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 10}, {"name": "Maggie Elizabeth Jones", "character": "Jessie Patterson", "id": 1046348, "credit_id": "52fe4ab5c3a36847f81dd843", "cast_id": 14, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 11}, {"name": "Ryan Gaul", "character": "Bartender", "id": 973223, "credit_id": "52fe4ab6c3a36847f81dd889", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Mary-Charles Jones", "character": "Franny Patterson", "id": 1046352, "credit_id": "52fe4ab6c3a36847f81dd88d", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Brett Baker", "character": "Alec", "id": 1096595, "credit_id": "52fe4ab6c3a36847f81dd891", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "Seth Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe4ab5c3a36847f81dd80d", "profile_path": "/gstUEbopSacaQTpxYjfSwz0gzLl.jpg", "id": 71600}], "vote_average": 5.6, "runtime": 111}, "42188": {"poster_path": "/i5sE6EINofvT7Xq0rpZz9jRbRMS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9455232, "overview": "As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.", "video": false, "id": 42188, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Never Let Me Go", "tagline": "The students have everything they need. Except time", "vote_count": 151, "homepage": "http://www.foxsearchlight.com/neverletmego/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1334260", "adult": false, "backdrop_path": "/91usy6D1cqS6xcj7t3gN6wfOBk3.jpg", "production_companies": [{"name": "DNA Films", "id": 284}, {"name": "Film4", "id": 9349}, {"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2010-09-15", "popularity": 0.651212243309355, "original_title": "Never Let Me Go", "budget": 15000000, "cast": [{"name": "Carey Mulligan", "character": "Kathy", "id": 36662, "credit_id": "52fe45f2c3a36847f80e3c41", "cast_id": 6, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 0}, {"name": "Andrew Garfield", "character": "Tommy", "id": 37625, "credit_id": "52fe45f2c3a36847f80e3c45", "cast_id": 7, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Ruth", "id": 116, "credit_id": "52fe45f2c3a36847f80e3c49", "cast_id": 8, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Domhnall Gleeson", "character": "Rodney", "id": 93210, "credit_id": "52fe45f2c3a36847f80e3c4d", "cast_id": 11, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 3}, {"name": "Andrea Riseborough", "character": "Chrissie", "id": 127558, "credit_id": "52fe45f2c3a36847f80e3c51", "cast_id": 12, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 4}, {"name": "Charlotte Rampling", "character": "Miss Emily", "id": 44079, "credit_id": "52fe45f2c3a36847f80e3c55", "cast_id": 13, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 5}, {"name": "Sally Hawkins", "character": "Miss Lucy", "id": 39658, "credit_id": "52fe45f2c3a36847f80e3c59", "cast_id": 14, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 6}, {"name": "Izzy Meikle-Small", "character": "Young Kathy", "id": 142388, "credit_id": "52fe45f3c3a36847f80e3c5d", "cast_id": 15, "profile_path": "/rEtcyAA8q3GObOL99EYCJUpAEvF.jpg", "order": 7}, {"name": "Charlie Rowe", "character": "Young Tommy", "id": 142389, "credit_id": "52fe45f3c3a36847f80e3c61", "cast_id": 16, "profile_path": "/5RrPNhLGlA9Yc3VmPqDNpFA5aCv.jpg", "order": 8}, {"name": "Ella Purnell", "character": "Young Ruth", "id": 989325, "credit_id": "52fe45f3c3a36847f80e3ca1", "cast_id": 28, "profile_path": "/3g0n8TEbQQpLT3ZEbSjlTO8lnK5.jpg", "order": 9}, {"name": "Lydia Wilson", "character": "Hannah", "id": 1095524, "credit_id": "532867e0c3a36831750027f9", "cast_id": 29, "profile_path": "/ndlya4VREXguyeZYLP7OB3HHjzu.jpg", "order": 10}], "directors": [{"name": "Mark Romanek", "department": "Directing", "job": "Director", "credit_id": "52fe45f2c3a36847f80e3c2b", "profile_path": "/iQoFOhNmygHKRWJXfyLkHKgw5Zj.jpg", "id": 57446}], "vote_average": 6.9, "runtime": 104}, "9421": {"poster_path": "/n57PfOOjoAzBBGJ87QJNkO40YzE.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 78599508, "overview": "Each week, Pierre and his friends organize what is called as \"un d\u00eener de cons\". Everyone brings the dumbest guy he could find as a guest. Pierre thinks his champ -Fran\u00e7ois Pignon- will steal the show.", "video": false, "id": 9421, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Dinner Game", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0119038", "adult": false, "backdrop_path": "/nAYoZgzOoKblXp9xbi8MoRxcHtp.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "EFVE", "id": 11037}, {"name": "TF1 Films Production", "id": 3823}, {"name": "TPS Cin\u00e9ma", "id": 884}], "release_date": "1998-04-15", "popularity": 0.525831375352941, "original_title": "Le D\u00eener de cons", "budget": 12500000, "cast": [{"name": "Thierry Lhermitte", "character": "Pierre Brochant", "id": 21177, "credit_id": "52fe44f5c3a36847f80b4319", "cast_id": 9, "profile_path": "/eudPlDQKVfowLzxw0PzrxKagvru.jpg", "order": 0}, {"name": "Jacques Villeret", "character": "Fran\u00e7ois Pignon", "id": 35323, "credit_id": "52fe44f5c3a36847f80b431d", "cast_id": 10, "profile_path": "/sUFW2BIZc4wUpfKWznbk8S9CKqN.jpg", "order": 1}, {"name": "Francis Huster", "character": "Juste Leblanc", "id": 26887, "credit_id": "52fe44f5c3a36847f80b4321", "cast_id": 11, "profile_path": "/fUD1vMpuxChUMKk6kcWo3ePd5q2.jpg", "order": 2}, {"name": "Daniel Pr\u00e9vost", "character": "Lucien Cheval", "id": 24832, "credit_id": "52fe44f5c3a36847f80b4325", "cast_id": 12, "profile_path": "/sOtamnTQsNi3TL4P1c6WutjZOst.jpg", "order": 3}, {"name": "Alexandra Vandernoot", "character": "Christine", "id": 53425, "credit_id": "52fe44f5c3a36847f80b4329", "cast_id": 13, "profile_path": "/yqAN3NyIRLHIuB7aOhxEmN37Ovx.jpg", "order": 4}, {"name": "Catherine Frot", "character": "Marl\u00e8ne Sasseur", "id": 20080, "credit_id": "52fe44f5c3a36847f80b432d", "cast_id": 14, "profile_path": "/18d10YaqZlGPzYjaUjMIiSMfs8E.jpg", "order": 5}, {"name": "Edgar Givry", "character": "Jean Cordier", "id": 53201, "credit_id": "52fe44f5c3a36847f80b4331", "cast_id": 15, "profile_path": "/cziKgVgRDOcKvI5dPhIY4AMcJ8Z.jpg", "order": 6}, {"name": "Christian Pereira", "character": "Dr Sorbier", "id": 145738, "credit_id": "52fe44f5c3a36847f80b4335", "cast_id": 16, "profile_path": "/VX3SUrKER5Gbl1mBvIfxAd90yb.jpg", "order": 7}, {"name": "Beno\u00eet Bellal", "character": "Host 1", "id": 1403436, "credit_id": "549aaa87c3a3682f21001769", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Jacques Bleu", "character": "Host 3", "id": 1403437, "credit_id": "549aaaac925141312600178d", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Philippe Brigaud", "character": "Tanner (boomerang thrower)", "id": 145197, "credit_id": "549aaad1925141312c0014e3", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Michel Caccia", "character": "Guest 1", "id": 146640, "credit_id": "549aaaed925141312f0018e3", "cast_id": 20, "profile_path": "/jkwB8gNP4nCO30YleMCi6izsjL2.jpg", "order": 11}], "directors": [{"name": "Francis Veber", "department": "Directing", "job": "Director", "credit_id": "52fe44f5c3a36847f80b42f7", "profile_path": "/hEeR4kyKecepNaEb4sdK0pAQKzf.jpg", "id": 38507}], "vote_average": 7.8, "runtime": 80}, "58574": {"poster_path": "/7OFqsVuS6DlVM10GUD72vCGpQm9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 334615000, "overview": "There is a new criminal mastermind at large--Professor Moriarty--and not only is he Holmes\u2019 intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.", "video": false, "id": 58574, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Sherlock Holmes: A Game of Shadows", "tagline": "The Game is Afoot.", "vote_count": 1724, "homepage": "http://sherlockholmes2.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": "/aeLom584FZdu6253WMaYEUCrTdu.jpg", "poster_path": "/bsUN9Ph1nUituteKWOhPQGguNXt.jpg", "id": 102322, "name": "Sherlock Holmes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1515091", "adult": false, "backdrop_path": "/3jmMRaO8WMjKsf1LWzo6Q6E5zMP.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "Wigram Productions", "id": 23202}, {"name": "Lin Pictures", "id": 2723}], "release_date": "2011-12-16", "popularity": 1.38641842808002, "original_title": "Sherlock Holmes: A Game of Shadows", "budget": 125000000, "cast": [{"name": "Robert Downey Jr.", "character": "Sherlock Holmes", "id": 3223, "credit_id": "52fe4969c3a36847f8198ba3", "cast_id": 1, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Jude Law", "character": "Dr. John Watson", "id": 9642, "credit_id": "52fe4969c3a36847f8198ba7", "cast_id": 2, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Jared Harris", "character": "Professor James Moriarty", "id": 15440, "credit_id": "53044f40c3a3683a810d73bb", "cast_id": 58, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 2}, {"name": "Noomi Rapace", "character": "Madam Simza Heron", "id": 87722, "credit_id": "52fe4969c3a36847f8198bab", "cast_id": 7, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 3}, {"name": "Kelly Reilly", "character": "Mary Morstan", "id": 17521, "credit_id": "52fe4969c3a36847f8198bcb", "cast_id": 13, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 4}, {"name": "Geraldine James", "character": "Mrs. Hudson", "id": 11855, "credit_id": "52fe4969c3a36847f8198bcf", "cast_id": 14, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 5}, {"name": "Eddie Marsan", "character": "Inspector Lestrade", "id": 1665, "credit_id": "52fe4969c3a36847f8198c75", "cast_id": 43, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 6}, {"name": "Stephen Fry", "character": "Mycroft Holmes", "id": 11275, "credit_id": "53045046c3a3683aab0bece4", "cast_id": 59, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 7}, {"name": "William Houston", "character": "Clarky", "id": 84865, "credit_id": "52fe4969c3a36847f8198c79", "cast_id": 44, "profile_path": "/cDRUNHUyHB29YKrTmzkQqBRCdla.jpg", "order": 8}, {"name": "Affif Ben Badra", "character": "Tamas", "id": 54807, "credit_id": "52fe4969c3a36847f8198c7d", "cast_id": 45, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 9}, {"name": "Paul Anderson", "character": "Colonel Sebastian Moran", "id": 220448, "credit_id": "52fe4969c3a36847f8198c81", "cast_id": 46, "profile_path": "/fHLtf1RvQ2i6ZudyL0WRwmEeTxv.jpg", "order": 10}, {"name": "Wolf Kahler", "character": "Doctor Hoffmanstahl", "id": 659, "credit_id": "52fe4969c3a36847f8198c85", "cast_id": 47, "profile_path": "/uqHI2PLeGFxdjlw0qIk1D17NjWb.jpg", "order": 11}, {"name": "Iain Mitchell", "character": "Auctioneer", "id": 71584, "credit_id": "52fe4969c3a36847f8198c89", "cast_id": 48, "profile_path": null, "order": 12}, {"name": "Jack Laskey", "character": "Carruthers", "id": 1053673, "credit_id": "52fe4969c3a36847f8198c8d", "cast_id": 49, "profile_path": null, "order": 13}, {"name": "Patricia Slater", "character": "Shush Club Maitre D'", "id": 1097455, "credit_id": "52fe4969c3a36847f8198c91", "cast_id": 50, "profile_path": null, "order": 14}, {"name": "Karima Adebibe", "character": "Shush Club Maitre D'", "id": 1086530, "credit_id": "52fe4969c3a36847f8198c95", "cast_id": 51, "profile_path": null, "order": 15}, {"name": "Richard Cunningham", "character": "Businessman", "id": 1097456, "credit_id": "52fe4969c3a36847f8198c99", "cast_id": 52, "profile_path": "/jGo9wrCxV81pgNVkzO2B1Wnuett.jpg", "order": 16}, {"name": "Marcus Shakesheff", "character": "Hashisheen", "id": 1075103, "credit_id": "52fe4969c3a36847f8198c9d", "cast_id": 53, "profile_path": null, "order": 17}, {"name": "Mark Sheals", "character": "Cock Fight Referee", "id": 1097457, "credit_id": "52fe4969c3a36847f8198ca1", "cast_id": 54, "profile_path": null, "order": 18}, {"name": "George Taylor", "character": "University Student", "id": 105510, "credit_id": "52fe4969c3a36847f8198ca5", "cast_id": 55, "profile_path": null, "order": 19}, {"name": "Rachel McAdams", "character": "Irene Adler", "id": 53714, "credit_id": "52fe4969c3a36847f8198caf", "cast_id": 57, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 20}, {"name": "Thierry Neuvic", "character": "Claude Ravache", "id": 83813, "credit_id": "5326ca25c3a3683dbf00412a", "cast_id": 60, "profile_path": "/vCHCg1rA5gKc2kxn1xcgsiHo5aa.jpg", "order": 21}, {"name": "Laurentiu Possa", "character": "Rene Heron", "id": 1280233, "credit_id": "5326cbc6c3a36824af003ae1", "cast_id": 61, "profile_path": "/aCarXz5DoC6ycy4Sn3RptzQeNGE.jpg", "order": 22}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe4969c3a36847f8198bb1", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.8, "runtime": 129}, "9426": {"poster_path": "/q49tjSe3O152t9QVwaradePGu7W.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40456565, "overview": "When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.", "video": false, "id": 9426, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "The Fly", "tagline": "Be afraid. Be very afraid.", "vote_count": 171, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6nU5cC8qaVO3hzSMDMJp4HCFwDA.jpg", "poster_path": "/r6mRcDV2MIbDQ79JpeGls5DnDfr.jpg", "id": 109609, "name": "The Fly Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091064", "adult": false, "backdrop_path": "/fAbDSD1wMTLbM5ANAUBFKeCJkxO.jpg", "production_companies": [{"name": "SLM Production Group", "id": 396}, {"name": "Brooksfilms", "id": 5612}], "release_date": "1986-08-15", "popularity": 0.906664408005697, "original_title": "The Fly", "budget": 15000000, "cast": [{"name": "Jeff Goldblum", "character": "Seth Brundle", "id": 4785, "credit_id": "52fe44f6c3a36847f80b454f", "cast_id": 1, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 0}, {"name": "Geena Davis", "character": "Veronica Quaife", "id": 16935, "credit_id": "52fe44f6c3a36847f80b4553", "cast_id": 2, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "John Getz", "character": "Stathis Borans", "id": 20211, "credit_id": "52fe44f6c3a36847f80b4557", "cast_id": 3, "profile_path": "/a0uOMxCiYqvcr3h49jopyKzKVfX.jpg", "order": 2}, {"name": "Joy Boushel", "character": "Tawny", "id": 57626, "credit_id": "52fe44f6c3a36847f80b4561", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Leslie Carlson", "character": "Dr. Brent Cheevers", "id": 12716, "credit_id": "52fe44f6c3a36847f80b4589", "cast_id": 12, "profile_path": "/nnYVdNB7MpXbBdq3xRzkD5fTzmW.jpg", "order": 4}, {"name": "George Chuvalo", "character": "Marky", "id": 105298, "credit_id": "52fe44f6c3a36847f80b458d", "cast_id": 13, "profile_path": "/9lTM1wUXaci9YpXILPUhH2i4iuu.jpg", "order": 5}, {"name": "Michael Copeman", "character": "2nd Man in Bar", "id": 180878, "credit_id": "52fe44f6c3a36847f80b4591", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "David Cronenberg", "character": "Gynecologist", "id": 224, "credit_id": "52fe44f6c3a36847f80b4595", "cast_id": 15, "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "order": 7}, {"name": "Carol Lazare", "character": "Nurse", "id": 1030612, "credit_id": "52fe44f6c3a36847f80b4599", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Shawn Hewitt", "character": "Clerk", "id": 1030869, "credit_id": "52fe44f6c3a36847f80b459d", "cast_id": 17, "profile_path": null, "order": 9}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b455d", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.6, "runtime": 96}, "9427": {"poster_path": "/mVDkJHxOxKK29u2Sf7oBy3DKSK2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 257850122, "overview": "Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.", "video": false, "id": 9427, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Full Monty", "tagline": "The year's most revealing comedy.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119164", "adult": false, "backdrop_path": "/mAaSPfGA4ixiKSXYydNpbwZswi6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "1997-08-29", "popularity": 0.949773250121893, "original_title": "The Full Monty", "budget": 3500000, "cast": [{"name": "Robert Carlyle", "character": "Gaz", "id": 18023, "credit_id": "52fe44f6c3a36847f80b45bd", "cast_id": 1, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 0}, {"name": "Mark Addy", "character": "Dave", "id": 13633, "credit_id": "52fe44f6c3a36847f80b45c1", "cast_id": 2, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 1}, {"name": "William Snape", "character": "Nathan", "id": 57628, "credit_id": "52fe44f6c3a36847f80b45c5", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Steve Huison", "character": "Lomper", "id": 57629, "credit_id": "52fe44f6c3a36847f80b45c9", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Tom Wilkinson", "character": "Gerald", "id": 207, "credit_id": "52fe44f6c3a36847f80b45cd", "cast_id": 5, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 4}, {"name": "Paul Barber", "character": "Horse", "id": 29698, "credit_id": "52fe44f6c3a36847f80b45d1", "cast_id": 6, "profile_path": "/nH4k8msd6Da7W2Z89JvQiqRLIqE.jpg", "order": 5}, {"name": "Hugo Speer", "character": "Guy", "id": 2251, "credit_id": "53b05d06c3a3682eea005308", "cast_id": 14, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 6}, {"name": "Lesley Sharp", "character": "Jean", "id": 80366, "credit_id": "53b05d1dc3a3682ee60051f2", "cast_id": 15, "profile_path": "/xaZY2lBXwS2Oa4a87qg1yxN6EgE.jpg", "order": 7}, {"name": "Emily Woof", "character": "Mandy", "id": 33679, "credit_id": "53b05d3bc3a3682ee60051f5", "cast_id": 16, "profile_path": "/6WfwdQl3ADG1ctLsVrjurUWclcP.jpg", "order": 8}, {"name": "Deirdre Costello", "character": "Linda", "id": 186025, "credit_id": "53b05d57c3a3682ee60051f9", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Paul Butterworth", "character": "Barry", "id": 1335635, "credit_id": "53b05d73c3a3682eee005193", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Dave Hill", "character": "Alan", "id": 20246, "credit_id": "53b05d91c3a3682ef100514d", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Bruce Jones", "character": "Reg", "id": 235361, "credit_id": "53fa0c750e0a267a6c0050ef", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Andrew Livingston", "character": "Terry", "id": 201013, "credit_id": "53b05e65c3a3682ee20054b8", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Vinny Dhillon", "character": "Sharon", "id": 1335636, "credit_id": "53b05e83c3a3682eee0051bc", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Kate Layden", "character": "Bee", "id": 1335637, "credit_id": "53b05e9dc3a3682eea00532b", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Joanna Swain", "character": "Sheryl", "id": 1335638, "credit_id": "53b05eb7c3a3682eea005331", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Diane Lane", "character": "Louise", "id": 2882, "credit_id": "53b05ee8c3a3682ee6005216", "cast_id": 25, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 17}, {"name": "Kate Rutter", "character": "Dole Clerk", "id": 229605, "credit_id": "53fa0d020e0a267a69005300", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "June Broughton", "character": "Lomper's Mum", "id": 1356539, "credit_id": "53fa0d370e0a267a78005009", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Glenn Cunningham", "character": "Police Inspector", "id": 1356540, "credit_id": "53fa0db90e0a267a69005319", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Chris Brailsford", "character": "Duty Sergeant", "id": 1356541, "credit_id": "53fa0de90e0a267a6f005303", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Steve Garti", "character": "Policeman", "id": 1198660, "credit_id": "53fa0eebc3a368734c0030dc", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Malcolm Pitt", "character": "Job Club Manager", "id": 1356542, "credit_id": "53fa0f66c3a368734f003021", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Dennis Blanch", "character": "Director", "id": 1217103, "credit_id": "53fa10fcc3a368735b003207", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Daryl Fishwick", "character": "Social Worker", "id": 1356544, "credit_id": "53fa11840e0a267a6f00536b", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "David Lonsdale", "character": "Repossession Man", "id": 1356546, "credit_id": "53fa11fb0e0a267a6f00538b", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Muriel Hunt", "character": "Horse's Mum", "id": 1356547, "credit_id": "53fa12320e0a267a7b005070", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Fiona Watts", "character": "Beryl", "id": 1356548, "credit_id": "53fa12910e0a267a75005340", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Theresa Maduemezia", "character": "Horse's Sister", "id": 1356549, "credit_id": "53fa13030e0a267a6c0051c0", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Fiona Nelson", "character": "Horse's Sister", "id": 1356550, "credit_id": "53fa1438c3a368734f003067", "cast_id": 39, "profile_path": null, "order": 30}], "directors": [{"name": "Peter Cattaneo", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b45d7", "profile_path": "/k96pAMgYi84Ddd6fcuHGZOO70v4.jpg", "id": 57630}], "vote_average": 7.0, "runtime": 91}, "9428": {"poster_path": "/5xw30y0pSaMtTcuZW5VaQPiR8qb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71441250, "overview": "An estranged family of former child prodigies reunites when their father announces he has a terminal illness.", "video": false, "id": 9428, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Royal Tenenbaums", "tagline": "Family isn\u2019t a word, it\u2019s a sentence.", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0265666", "adult": false, "backdrop_path": "/rk05hk4V0hmfHh4nl2KHjOaNKnq.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2001-10-05", "popularity": 0.953398200233963, "original_title": "The Royal Tenenbaums", "budget": 21000000, "cast": [{"name": "Gene Hackman", "character": "Royal Tenenbaum", "id": 193, "credit_id": "52fe44f6c3a36847f80b4633", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Anjelica Huston", "character": "Etheline Tenenbaum", "id": 5657, "credit_id": "52fe44f6c3a36847f80b4637", "cast_id": 3, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 1}, {"name": "Ben Stiller", "character": "Chas Tenenbaum", "id": 7399, "credit_id": "52fe44f6c3a36847f80b463b", "cast_id": 4, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 2}, {"name": "Gwyneth Paltrow", "character": "Margot Tenenbaum", "id": 12052, "credit_id": "52fe44f6c3a36847f80b463f", "cast_id": 5, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 3}, {"name": "Luke Wilson", "character": "Richie Tenenbaum", "id": 36422, "credit_id": "52fe44f6c3a36847f80b4643", "cast_id": 6, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 4}, {"name": "Owen Wilson", "character": "Eli Cash", "id": 887, "credit_id": "52fe44f6c3a36847f80b4647", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 5}, {"name": "Bill Murray", "character": "Raleigh St. Clair", "id": 1532, "credit_id": "52fe44f6c3a36847f80b464b", "cast_id": 8, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 6}, {"name": "Danny Glover", "character": "Henry Sherman", "id": 2047, "credit_id": "52fe44f6c3a36847f80b464f", "cast_id": 9, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 7}, {"name": "Alec Baldwin", "character": "Narrator (voice)", "id": 7447, "credit_id": "52fe44f6c3a36847f80b4653", "cast_id": 10, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 8}, {"name": "Seymour Cassel", "character": "Dusty", "id": 5950, "credit_id": "52fe44f6c3a36847f80b4693", "cast_id": 23, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 9}, {"name": "Kumar Pallana", "character": "Pagoda", "id": 8690, "credit_id": "52fe44f6c3a36847f80b4697", "cast_id": 24, "profile_path": "/emTPxZIt9j8d4FcKMSpX3eDq0tO.jpg", "order": 10}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b462f", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.2, "runtime": 110}, "9433": {"poster_path": "/xCbsU8JJgX8w9FxDKNPErA9elWC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them -- it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.", "video": false, "id": 9433, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Edge", "tagline": "They were fighting over a woman when the plane went down. Now, their only chance for survival is each other.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119051", "adult": false, "backdrop_path": "/wU05h6gUIjT55jPI5pHKgu3wjd1.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Art Linson Productions", "id": 8769}], "release_date": "1997-09-06", "popularity": 0.439336521319435, "original_title": "The Edge", "budget": 0, "cast": [{"name": "Alec Baldwin", "character": "Robert Green", "id": 7447, "credit_id": "52fe44f6c3a36847f80b48bf", "cast_id": 9, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Charles Morse", "id": 4173, "credit_id": "52fe44f6c3a36847f80b48c3", "cast_id": 10, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Elle Macpherson", "character": "Mickey Morse", "id": 5590, "credit_id": "52fe44f6c3a36847f80b48c7", "cast_id": 11, "profile_path": "/tSweboUrdsJo4nIRIJx2PEvkuVZ.jpg", "order": 2}, {"name": "Harold Perrineau", "character": "Stephen", "id": 6195, "credit_id": "52fe44f6c3a36847f80b48cb", "cast_id": 12, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 3}, {"name": "Bart the Bear", "character": "The Bear", "id": 24433, "credit_id": "53a8608bc3a3687a2e0058d2", "cast_id": 13, "profile_path": "/g7At5iMNrQZUvFYc5aIz5T9NF8b.jpg", "order": 4}, {"name": "L.Q. Jones", "character": "Styles", "id": 8262, "credit_id": "53a8609bc3a368707a004a69", "cast_id": 14, "profile_path": "/k5Q6Gd4twNxv9vfC08TirLyHqCz.jpg", "order": 5}, {"name": "Kathleen Wilhoite", "character": "Ginny", "id": 42335, "credit_id": "53a860aac3a3687a430058a5", "cast_id": 15, "profile_path": "/vVqaPBDr54BgryNaGb9IIyDQExD.jpg", "order": 6}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b4891", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 6.3, "runtime": 117}, "9434": {"poster_path": "/3qn4gjft8dl5syUDpmPvWqCPFAf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28084357, "overview": "Martin Blank is a freelance hitman who starts to develop a conscience, which causes him to muff a couple of routine assignments. On the advice of his secretary and his psychiatrist, he attends his 10th year High School reunion in Grosse Pointe, Michigan.", "video": false, "id": 9434, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Grosse Pointe Blank", "tagline": "Even a hit man deserves a second shot.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119229", "adult": false, "backdrop_path": "/xQnAaMY5WgqIY2h8zrr9rCGIKR1.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Roger Birnbaum Productions", "id": 961}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1997-04-11", "popularity": 0.282618988171516, "original_title": "Grosse Pointe Blank", "budget": 0, "cast": [{"name": "John Cusack", "character": "Martin Q. Blank", "id": 3036, "credit_id": "52fe44f6c3a36847f80b491f", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Minnie Driver", "character": "Debi Newberry", "id": 6613, "credit_id": "52fe44f7c3a36847f80b4923", "cast_id": 8, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Grocer", "id": 707, "credit_id": "52fe44f7c3a36847f80b4927", "cast_id": 9, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Marcella", "id": 3234, "credit_id": "52fe44f7c3a36847f80b492b", "cast_id": 10, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Dr. Oatman", "id": 1903, "credit_id": "52fe44f7c3a36847f80b4941", "cast_id": 15, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Hank Azaria", "character": "Steven Lardner", "id": 5587, "credit_id": "52fe44f7c3a36847f80b4945", "cast_id": 16, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 5}, {"name": "K. Todd Freeman", "character": "Kenneth McCullers", "id": 149534, "credit_id": "52fe44f7c3a36847f80b4949", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Jeremy Piven", "character": "Paul Spericki", "id": 12799, "credit_id": "52fe44f7c3a36847f80b494d", "cast_id": 18, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 7}, {"name": "Mitchell Ryan", "character": "Mr. Bart Newberry (as Mitchell Ryan)", "id": 14312, "credit_id": "52fe44f7c3a36847f80b4951", "cast_id": 19, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 8}, {"name": "David Barrett", "character": "Bicycle Messenger", "id": 74859, "credit_id": "52fe44f7c3a36847f80b495f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Michael Cudlitz", "character": "Bob Destepello", "id": 52415, "credit_id": "530450b6c3a3683a7a0b5d35", "cast_id": 23, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 11}, {"name": "Steve Pink", "character": "Terry Rostand", "id": 3227, "credit_id": "54ebf37e92514179610009f6", "cast_id": 24, "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "order": 12}], "directors": [{"name": "George Armitage", "department": "Directing", "job": "Director", "credit_id": "52fe44f6c3a36847f80b48fd", "profile_path": null, "id": 58294}], "vote_average": 7.0, "runtime": 107}, "9437": {"poster_path": "/m9CyzlwbXhfUPooRIAcBoE63Frg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60527873, "overview": "Forensic psychologist Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down \"Casanova,\" a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.", "video": false, "id": 9437, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Kiss the Girls", "tagline": "Smart Girls. Pretty Girls. Missing Girls.", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eyKpawn8yMq6kdv03wgKruMuSJX.jpg", "poster_path": "/64mlnEVoq1I0BZe4iDdAv89qO9Z.jpg", "id": 142680, "name": "Alex Cross Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0119468", "adult": false, "backdrop_path": "/nepqAk218e5Kk6rKAmtpNeCX8sb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rysher Entertainment", "id": 11661}], "release_date": "1997-10-03", "popularity": 0.464950607931342, "original_title": "Kiss the Girls", "budget": 27000000, "cast": [{"name": "Morgan Freeman", "character": "Alex Cross", "id": 192, "credit_id": "52fe44f7c3a36847f80b49cb", "cast_id": 8, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Ashley Judd", "character": "Kate McTiernan", "id": 15852, "credit_id": "52fe44f7c3a36847f80b49cf", "cast_id": 9, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Det. Nick Ruskin", "id": 2130, "credit_id": "52fe44f7c3a36847f80b49d3", "cast_id": 10, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Alex McArthur", "character": "Davey Sikes", "id": 58293, "credit_id": "52fe44f7c3a36847f80b49d7", "cast_id": 11, "profile_path": "/aYA5RdEffj4qPz8E647UByWyp5x.jpg", "order": 3}, {"name": "Tony Goldwyn", "character": "Dr. William 'Will' Rudolph", "id": 3417, "credit_id": "52fe44f7c3a36847f80b49db", "cast_id": 12, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 4}, {"name": "Jay O. Sanders", "character": "FBI Agent Kyle Craig", "id": 6067, "credit_id": "52fe44f7c3a36847f80b49df", "cast_id": 13, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 5}, {"name": "Bill Nunn", "character": "Det. John Sampson", "id": 5502, "credit_id": "52fe44f7c3a36847f80b49e3", "cast_id": 14, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 6}, {"name": "Brian Cox", "character": "Chief Hatfield, Durham P.D.", "id": 1248, "credit_id": "52fe44f7c3a36847f80b49e7", "cast_id": 15, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 7}, {"name": "Richard T. Jones", "character": "Seth Samuel", "id": 55755, "credit_id": "52fe44f7c3a36847f80b49eb", "cast_id": 16, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 8}, {"name": "Roma Maffia", "character": "Dr. Ruocco", "id": 21366, "credit_id": "52fe44f7c3a36847f80b49ef", "cast_id": 17, "profile_path": "/tfscWeBOGA9aysLbYoOduimpTOk.jpg", "order": 9}, {"name": "Jeremy Piven", "character": "Henry Castillo, LAPD", "id": 12799, "credit_id": "52fe44f7c3a36847f80b49f3", "cast_id": 18, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 10}, {"name": "Gina Ravera", "character": "Naomi Cross", "id": 77279, "credit_id": "52fe44f7c3a36847f80b49f7", "cast_id": 19, "profile_path": "/cJDWfNdmnBFSFFi1YKXCM4YVyY6.jpg", "order": 11}, {"name": "William Converse-Roberts", "character": "Dr. Wick Sachs", "id": 31712, "credit_id": "52fe44f7c3a36847f80b49fb", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Helen Martin", "character": "Nana Cross", "id": 111872, "credit_id": "52fe44f7c3a36847f80b49ff", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Tatyana Ali", "character": "Janell Cross", "id": 4996, "credit_id": "52fe44f7c3a36847f80b4a03", "cast_id": 22, "profile_path": "/7Mzcrk00fmLKS1VwQwouTHmwOXP.jpg", "order": 14}, {"name": "Mena Suvari", "character": "Coty Pierce", "id": 8211, "credit_id": "52fe44f7c3a36847f80b4a07", "cast_id": 23, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 15}, {"name": "Heidi Schanz", "character": "Megan Murphy", "id": 11321, "credit_id": "52fe44f7c3a36847f80b4a0b", "cast_id": 24, "profile_path": "/svkz78fByMnD4K5LbQx903ao5I0.jpg", "order": 16}, {"name": "Rick Warner", "character": "Sgt. Willard", "id": 163795, "credit_id": "52fe44f7c3a36847f80b4a0f", "cast_id": 25, "profile_path": null, "order": 17}], "directors": [{"name": "Gary Fleder", "department": "Directing", "job": "Director", "credit_id": "52fe44f7c3a36847f80b49a9", "profile_path": "/rRxdnJbRT8Ygg8KNpdoxULszClx.jpg", "id": 5501}], "vote_average": 5.9, "runtime": 115}, "1246": {"poster_path": "/usZMPGxyRsyOpX5nuqHFxH3qlMh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119201483, "overview": "When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder Mason Dixon retaliates by challenging the Itallian Stallion to a nationally televised, 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger and thirty years his junior.", "video": false, "id": 1246, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky Balboa", "tagline": "Never give up. And never stop believing.", "vote_count": 224, "homepage": "http://www.rocky.com/", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0479143", "adult": false, "backdrop_path": "/1hCngs2CrxCZaPTwvxT9le7lJbO.jpg", "production_companies": [{"name": "MGM", "id": 5899}], "release_date": "2006-12-20", "popularity": 1.24017160384055, "original_title": "Rocky Balboa", "budget": 24000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42e9c3a36847f802c61b", "cast_id": 24, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42e9c3a36847f802c61f", "cast_id": 25, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 1}, {"name": "Milo Ventimiglia", "character": "Rocky Jr.", "id": 16501, "credit_id": "52fe42e9c3a36847f802c623", "cast_id": 26, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 2}, {"name": "Geraldine Hughes", "character": "Marie", "id": 16502, "credit_id": "52fe42e9c3a36847f802c627", "cast_id": 27, "profile_path": "/c1RaGjdaoRdX6n5BidukIg26J1A.jpg", "order": 3}, {"name": "James Francis Kelly III", "character": "Steps", "id": 16503, "credit_id": "52fe42e9c3a36847f802c62b", "cast_id": 28, "profile_path": "/iZyTQ2UlwNXrqLqPeNHbofFXubP.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42e9c3a36847f802c62f", "cast_id": 29, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "A. J. Benza", "character": "L.C.", "id": 16505, "credit_id": "52fe42e9c3a36847f802c633", "cast_id": 30, "profile_path": "/5hVinC6C1ZyD7c8EmZFTiEaF7vH.jpg", "order": 6}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42e9c3a36847f802c637", "cast_id": 31, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 7}, {"name": "Henry G. Sanders", "character": "Martin", "id": 16506, "credit_id": "52fe42e9c3a36847f802c63b", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Antonio Tarver", "character": "Mason 'The Line' Dixon", "id": 16507, "credit_id": "52fe42e9c3a36847f802c63f", "cast_id": 33, "profile_path": "/kJEljjHwBvrjoxqcSVntXlejgl1.jpg", "order": 9}, {"name": "Pedro Lovell", "character": "Spider Rico", "id": 16508, "credit_id": "52fe42e9c3a36847f802c643", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Ana Gerena", "character": "Isabel", "id": 16509, "credit_id": "52fe42e9c3a36847f802c647", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Angela Boyd", "character": "Angie", "id": 16510, "credit_id": "52fe42e9c3a36847f802c64b", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Louis Giansante", "character": "Bar Thug", "id": 16511, "credit_id": "52fe42e9c3a36847f802c64f", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Maureen Schilling", "character": "Lucky's Bartender", "id": 16512, "credit_id": "52fe42e9c3a36847f802c653", "cast_id": 38, "profile_path": null, "order": 14}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c593", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.4, "runtime": 102}, "1573": {"poster_path": "/99xir5bAuMMkLriMw0nBrau8Gw7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 240031094, "overview": "John McClane is an off-duty cop gripped with a feeling of d\u00e9j\u00e0 vu when on a snowy Christmas Eve in the nation's capital, terrorists seize a major international airport, holding thousands of holiday travelers hostage. Renegade military commandos led by a murderous rogue officer plot to rescue a drug lord from justice and are prepared for every contingency except one: McClane's smart-mouthed heroics.", "video": false, "id": 1573, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Die Hard 2", "tagline": "Die Harder", "vote_count": 839, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0099423", "adult": false, "backdrop_path": "/z4bFbsYlECaflCCOTRf5qY0oVIw.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gordon Company", "id": 1073}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1990-07-03", "popularity": 1.56558472241771, "original_title": "Die Hard 2", "budget": 70000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe42ffc3a36847f8032a27", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Bonnie Bedelia", "character": "Holly McClane", "id": 7673, "credit_id": "52fe42ffc3a36847f8032a37", "cast_id": 4, "profile_path": "/u0DOzyTNZhtFgPHIFX5OITMb7wm.jpg", "order": 1}, {"name": "William Sadler", "character": "Colonel Stuart", "id": 6573, "credit_id": "52fe42ffc3a36847f8032a3b", "cast_id": 5, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 2}, {"name": "Franco Nero", "character": "Genera Ramon Esperanza", "id": 22383, "credit_id": "52fe42ffc3a36847f8032a3f", "cast_id": 6, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 3}, {"name": "Dennis Franz", "character": "Captain Carmine Lorenzo", "id": 11901, "credit_id": "52fe42ffc3a36847f8032a43", "cast_id": 7, "profile_path": "/oigU88Mm2YVPvyLr6cf2PehJMjW.jpg", "order": 4}, {"name": "John Amos", "character": "Major Grant", "id": 22384, "credit_id": "52fe42ffc3a36847f8032a47", "cast_id": 8, "profile_path": "/gHe1eOXONqm3AmMtghfVXbU5V2m.jpg", "order": 5}, {"name": "Reginald VelJohnson", "character": "Sgt. Al Powell", "id": 7672, "credit_id": "52fe42ffc3a36847f8032a4b", "cast_id": 9, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 6}, {"name": "William Atherton", "character": "Richard Thornburg", "id": 7676, "credit_id": "52fe42ffc3a36847f8032a61", "cast_id": 13, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 7}, {"name": "Art Evans", "character": "Leslie Barnes", "id": 56183, "credit_id": "52fe42ffc3a36847f8032a65", "cast_id": 14, "profile_path": "/oFxv6KQdXU30MY00ASwoMqbKVAg.jpg", "order": 8}, {"name": "Fred Thompson", "character": "Trudeau", "id": 17874, "credit_id": "52fe42ffc3a36847f8032a69", "cast_id": 15, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 9}, {"name": "Tom Bower", "character": "Marvin", "id": 19453, "credit_id": "52fe42ffc3a36847f8032a6d", "cast_id": 16, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 10}, {"name": "Sheila McCarthy", "character": "Samantha 'Sam' Coleman", "id": 29384, "credit_id": "52fe42ffc3a36847f8032a71", "cast_id": 17, "profile_path": "/gsxN7CCPUUTa1lU18JQnbjXs99R.jpg", "order": 11}, {"name": "Don Harvey", "character": "Garber", "id": 1280, "credit_id": "52fe42ffc3a36847f8032a75", "cast_id": 18, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 12}, {"name": "Tony Ganios", "character": "Baker", "id": 3010, "credit_id": "52fe42ffc3a36847f8032a79", "cast_id": 19, "profile_path": "/zTpWUjo86uwTevyOblEozt3ae7I.jpg", "order": 13}, {"name": "Peter Nelson", "character": "Thompson", "id": 122363, "credit_id": "52fe42ffc3a36847f8032a7d", "cast_id": 20, "profile_path": "/4KPM9vK9pu0IohcLm908NDyDAPz.jpg", "order": 14}, {"name": "Robert Patrick", "character": "O'Reilly", "id": 418, "credit_id": "52fe42ffc3a36847f8032a81", "cast_id": 21, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 15}, {"name": "Mick Cunningham", "character": "Sheldon (as Michael Cunningham)", "id": 589925, "credit_id": "52fe42ffc3a36847f8032a85", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "John Leguizamo", "character": "Burke", "id": 5723, "credit_id": "52fe42ffc3a36847f8032a89", "cast_id": 23, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 17}, {"name": "Tom Verica", "character": "Kahn", "id": 155423, "credit_id": "52fe42ffc3a36847f8032a8d", "cast_id": 24, "profile_path": "/eyOTcWS4vAbciBRbOoZcmkw2TRH.jpg", "order": 18}, {"name": "John Costelloe", "character": "Sgt. Oswald Cochrane", "id": 171747, "credit_id": "52fe42ffc3a36847f8032a91", "cast_id": 25, "profile_path": "/tTg6bPJPC9paNXD4wiYW8k3LTNd.jpg", "order": 19}, {"name": "Vondie Curtis-Hall", "character": "Miller (as Vondi Curtis Hall)", "id": 6198, "credit_id": "52fe42ffc3a36847f8032a95", "cast_id": 26, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 20}, {"name": "Mark Boone Junior", "character": "Shockley", "id": 534, "credit_id": "52fe42ffc3a36847f8032a99", "cast_id": 27, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 21}, {"name": "Ken Baldwin", "character": "Mulkey", "id": 1037879, "credit_id": "52fe42ffc3a36847f8032a9d", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Danny Weselis", "character": "Blue Light Team", "id": 157976, "credit_id": "52fe42ffc3a36847f8032aa1", "cast_id": 29, "profile_path": "/cUYfDiL5rRUDeTB7FYHmFdwNgzv.jpg", "order": 23}, {"name": "Gregg Kovan", "character": "Blue Light Team", "id": 1037880, "credit_id": "52fe42ffc3a36847f8032aa5", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Don McGovern", "character": "Lt.Sherman / Blue light Team (as Don Charles McGovern)", "id": 77487, "credit_id": "52fe42ffc3a36847f8032aa9", "cast_id": 31, "profile_path": "/3AO8R8MuFeYsT57QzXZJOX9zMQ6.jpg", "order": 25}, {"name": "Danial Donai", "character": "Blue Light Team", "id": 1037881, "credit_id": "52fe42ffc3a36847f8032aad", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Jeff Langton", "character": "Blue Light Team", "id": 149496, "credit_id": "52fe42ffc3a36847f8032ab1", "cast_id": 33, "profile_path": "/z7WLraZTnLWv6fKxzLlo5Aoe1pG.jpg", "order": 27}, {"name": "Bob 'Rocky' Cheli", "character": "Blue Light Team", "id": 1037882, "credit_id": "52fe42ffc3a36847f8032ab5", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Dale Jacoby", "character": "Blue Light Team", "id": 189162, "credit_id": "52fe42ffc3a36847f8032ab9", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Vincent Mazella Jr.", "character": "Blue Light Team (as Vincent Joseph Mazzella Jr.)", "id": 1037883, "credit_id": "52fe42ffc3a36847f8032abd", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Patrick O'Neal", "character": "Cpl. Telford", "id": 1016112, "credit_id": "52fe42ffc3a36847f8032ac1", "cast_id": 37, "profile_path": "/2NfEtgrPMRtfvEhckt5sunt1edx.jpg", "order": 31}, {"name": "Ben Lemon", "character": "Sergeant", "id": 174894, "credit_id": "52fe42ffc3a36847f8032ac5", "cast_id": 38, "profile_path": "/9NgQ8g38GJoZlGYY3JhIuTyHw5t.jpg", "order": 32}, {"name": "Jason Ross-Azikiwe", "character": "Second Sergeant", "id": 1037884, "credit_id": "52fe42ffc3a36847f8032ac9", "cast_id": 39, "profile_path": "/jksjUYqw5QeTuOwlfwoCTz1lXY3.jpg", "order": 33}, {"name": "Anthony Droz", "character": "Soldier", "id": 1037885, "credit_id": "52fe42ffc3a36847f8032acd", "cast_id": 40, "profile_path": null, "order": 34}, {"name": "Michael Francis Clarke", "character": "Pilot (Northeast Plane)", "id": 162778, "credit_id": "52fe42ffc3a36847f8032ad1", "cast_id": 41, "profile_path": "/jBh0jG8meLDjV6tB4ikp4IqPs44.jpg", "order": 35}, {"name": "Steve Pershing", "character": "Co-Pilot (Northeast Plane)", "id": 194645, "credit_id": "52fe42ffc3a36847f8032ad5", "cast_id": 42, "profile_path": "/4x4vqoWWd7PTU9Y53g5oFnL9NDy.jpg", "order": 36}, {"name": "Tom Everett", "character": "Navigator (Northeast Plane)", "id": 140250, "credit_id": "52fe42ffc3a36847f8032ad9", "cast_id": 43, "profile_path": "/nxrCAB3xL79EdWLwBUMwXj7FtI3.jpg", "order": 37}, {"name": "Sherry Bilsing", "character": "Stewardess - Northeast Plane", "id": 193707, "credit_id": "52fe42ffc3a36847f8032add", "cast_id": 44, "profile_path": "/yVMy3sw4wYfqJIlnqQFzxPKEKAs.jpg", "order": 38}, {"name": "Karla Tamburrelli", "character": "Stewardess (Northeast Plane)", "id": 33491, "credit_id": "52fe42ffc3a36847f8032ae1", "cast_id": 45, "profile_path": "/oJB0bnFcwHgh1ZnbWiszTWjw5Cz.jpg", "order": 39}, {"name": "Jeanne Bates", "character": "Older Woman (Northeast Plane)", "id": 14796, "credit_id": "52fe42ffc3a36847f8032ae5", "cast_id": 46, "profile_path": "/lHrwjoC9K970j1uet252Ti3LBaD.jpg", "order": 40}, {"name": "Colm Meaney", "character": "Pilot (Windsor Plane)", "id": 17782, "credit_id": "52fe42ffc3a36847f8032ae9", "cast_id": 47, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 41}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032a2d", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.3, "runtime": 124}, "34016": {"poster_path": "/jtoZLyid2QGjbkuMrQ4cMt8iRFd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49779728, "overview": "When he starts dating drop-dead gorgeous Molly, insecure airport security agent Kirk can't believe it. As his friends and family share their doubts about the relationship lasting, Kirk does everything he can to avoid losing Molly forever.", "video": false, "id": 34016, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "She's Out of My League", "tagline": "When she's this hot, You get one shot.", "vote_count": 144, "homepage": "http://www.getyourrating.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0815236", "adult": false, "backdrop_path": "/9Pu4kGTcq7c1bvufK13p5WaHe7K.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2010-03-11", "popularity": 0.540792629289767, "original_title": "She's Out of My League", "budget": 20000000, "cast": [{"name": "Alice Eve", "character": "Molly", "id": 59860, "credit_id": "52fe454b9251416c9102d6a9", "cast_id": 1, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 0}, {"name": "Jay Baruchel", "character": "Kirk Kettner", "id": 449, "credit_id": "52fe454b9251416c9102d6ad", "cast_id": 2, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 1}, {"name": "Mike Vogel", "character": "Jack", "id": 6858, "credit_id": "52fe454b9251416c9102d6b1", "cast_id": 3, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 2}, {"name": "Krysten Ritter", "character": "Patty", "id": 78080, "credit_id": "52fe454b9251416c9102d6b5", "cast_id": 4, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 3}, {"name": "Debra Jo Rupp", "character": "Mrs. Kettner", "id": 15453, "credit_id": "52fe454b9251416c9102d6b9", "cast_id": 5, "profile_path": "/iIhAnkHOeaj9KX8NctfZcfCNxZn.jpg", "order": 4}, {"name": "Lindsay Sloane", "character": "Marnie", "id": 41662, "credit_id": "52fe454b9251416c9102d6bd", "cast_id": 6, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 5}, {"name": "Kim Shaw", "character": "Katie (Molly\u2019s Sister)", "id": 111685, "credit_id": "52fe454b9251416c9102d6c1", "cast_id": 7, "profile_path": "/l849560Ag8pW8JAKdtJZYTHPTic.jpg", "order": 6}, {"name": "Geoff Stults", "character": "Cam", "id": 22128, "credit_id": "52fe454b9251416c9102d6c5", "cast_id": 8, "profile_path": "/bAJMiio9EiiXGQ2w9d3hEnxpejq.jpg", "order": 7}, {"name": "T.J. Miller", "character": "Stainer", "id": 51990, "credit_id": "52fe454b9251416c9102d6c9", "cast_id": 9, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 8}, {"name": "Nate Torrence", "character": "Devon", "id": 41565, "credit_id": "52fe454b9251416c9102d6d3", "cast_id": 13, "profile_path": "/nQoVDAd3MeMEW740Z0Ie9sPTnx5.jpg", "order": 9}, {"name": "Kyle Bornheimer", "character": "Dylan", "id": 1215836, "credit_id": "52fe454b9251416c9102d701", "cast_id": 21, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 10}, {"name": "Jasika Nicole", "character": "Wendy", "id": 1222945, "credit_id": "544265d2c3a3683e01001e22", "cast_id": 22, "profile_path": "/b7rQes7rrxX6tUDSc8PJ5G7yuhu.jpg", "order": 11}], "directors": [{"name": "Jim Field Smith", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c9102d6cf", "profile_path": "/mBMtA2f4SU2UyYkHrzAsNgQqSLr.jpg", "id": 111686}], "vote_average": 6.2, "runtime": 104}, "9441": {"poster_path": "/57TqKdh9rnXgxqiuF2U97HNaOh2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie\u2019s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.", "video": false, "id": 9441, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Stepmom", "tagline": "Be there for the joy. Be there for the tears. Be there for each other.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120686", "adult": false, "backdrop_path": "/baKtflA4sSEjjxS0BHubjv7oUhe.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Columbia Pictures", "id": 5}], "release_date": "1998-12-25", "popularity": 0.258182829724875, "original_title": "Stepmom", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Isabel Kelly", "id": 1204, "credit_id": "52fe44f7c3a36847f80b4bef", "cast_id": 9, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Jackie Harrison", "id": 4038, "credit_id": "52fe44f7c3a36847f80b4bf3", "cast_id": 10, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Ed Harris", "character": "Luke Harrison", "id": 228, "credit_id": "52fe44f7c3a36847f80b4bf7", "cast_id": 11, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Jena Malone", "character": "Anna Harrison", "id": 20089, "credit_id": "52fe44f7c3a36847f80b4bfb", "cast_id": 12, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 3}, {"name": "Liam Aiken", "character": "Ben Harrison", "id": 19977, "credit_id": "52fe44f7c3a36847f80b4bff", "cast_id": 13, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 4}, {"name": "Jason Maves", "character": "Brad Kovitsky", "id": 1047726, "credit_id": "52fe44f7c3a36847f80b4c03", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Naama Kates", "character": "Anna's Friend", "id": 235507, "credit_id": "552a8c4c92514132360024c9", "cast_id": 15, "profile_path": "/l722axptBuzkUn7xPHHeeWWeAQI.jpg", "order": 6}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe44f7c3a36847f80b4bc7", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.8, "runtime": 124}, "1250": {"poster_path": "/jnllnSq8u4d1oQPU7PsoAHD6bLU.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 228738393, "overview": "In order to save his dying father, young stunt cyclist Johnny Blaze sells his soul to Mephistopheles and sadly parts from the pure-hearted Roxanne Simpson, the love of his life. Years later, Johnny's path crosses again with Roxanne, now a gogetting reporter, and also with Mephistopheles, who offers to release Johnny's soul if Johnny becomes the fabled, fiery Ghost Rider.", "video": false, "id": 1250, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Rider", "tagline": "Long ago he made a deal to save someone he loved.", "vote_count": 525, "homepage": "http://www.sonypictures.com/movies/ghostrider/", "belongs_to_collection": {"backdrop_path": "/ee8zhn4VIXQh1J5t7efyybcvHLj.jpg", "poster_path": "/bZBasloaMhjxCwH6tV0eziNMqut.jpg", "id": 90306, "name": "Ghost Rider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0259324", "adult": false, "backdrop_path": "/9cs9RuOS3A5YEh6r4opVrIGbiJy.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Crystal Sky Pictures", "id": 20241}, {"name": "Relativity Media", "id": 7295}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "GH One", "id": 20475}, {"name": "Vengeance Productions Pty. Ltd.", "id": 20476}], "release_date": "2007-02-16", "popularity": 1.60095654550943, "original_title": "Ghost Rider", "budget": 110000000, "cast": [{"name": "Nicolas Cage", "character": "Johnny Blaze/Ghost Rider", "id": 2963, "credit_id": "52fe42eac3a36847f802c7f9", "cast_id": 11, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Roxanne Simpson", "id": 8170, "credit_id": "52fe42eac3a36847f802c7fd", "cast_id": 12, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Wes Bentley", "character": "Blackheart", "id": 8210, "credit_id": "52fe42eac3a36847f802c805", "cast_id": 14, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 2}, {"name": "Donal Logue", "character": "Mack", "id": 10825, "credit_id": "52fe42eac3a36847f802c801", "cast_id": 13, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Caretaker", "id": 16431, "credit_id": "52fe42eac3a36847f802c809", "cast_id": 15, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Peter Fonda", "character": "Mephistopheles", "id": 8949, "credit_id": "52fe42eac3a36847f802c81f", "cast_id": 19, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 5}, {"name": "Brett Cullen", "character": "Barton Blaze", "id": 16841, "credit_id": "52fe42eac3a36847f802c823", "cast_id": 20, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 6}, {"name": "Matt Long", "character": "Young Johnny Blaze", "id": 16839, "credit_id": "52fe42eac3a36847f802c827", "cast_id": 21, "profile_path": "/b3ittJNh8NfvwkgfcoiSimHD3Xq.jpg", "order": 7}, {"name": "Raquel Alessi", "character": "Young Roxanne Simpson", "id": 16840, "credit_id": "52fe42eac3a36847f802c82b", "cast_id": 22, "profile_path": "/vE3CjMBwmn43rtc2OOWDeM9qvJA.jpg", "order": 8}, {"name": "Tony Ghosthawk", "character": "Team Blaze", "id": 1297400, "credit_id": "53106190925141101f000c4f", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Hugh Sexton", "character": "Team Blaze", "id": 211670, "credit_id": "531061b9c3a3682a10001035", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Marcus Jones", "character": "Team Blaze", "id": 474842, "credit_id": "531061c6c3a368299b00104a", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Matt Norman", "character": "Team Blaze", "id": 1157635, "credit_id": "531061d3c3a36829e2000f4a", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Lawrence Cameron Steele", "character": "X Games Announcer", "id": 1297402, "credit_id": "531061e6c3a36829b8000fd4", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Eddie Baroo", "character": "Motorcycle Gang Member", "id": 217046, "credit_id": "53106204c3a36829a9000fa4", "cast_id": 28, "profile_path": "/2VA0cPaaqRCDLylXTQCPSLl73AF.jpg", "order": 14}, {"name": "Jessica Napier", "character": "Broken Spoke Waitress", "id": 91400, "credit_id": "53106218c3a368299b001053", "cast_id": 29, "profile_path": "/jatk1WtwphaUKdY6ldwHP2qkiMN.jpg", "order": 15}, {"name": "Laurence Breuls", "character": "Gressil", "id": 76067, "credit_id": "5310622cc3a36829b8000fdd", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Rebel Wilson", "character": "Goth Girl in Alley", "id": 221581, "credit_id": "5327820a9251411a1e000fd6", "cast_id": 31, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 17}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802c7d7", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.1, "runtime": 114}, "1251": {"poster_path": "/nWJJqOryTQOmVXvKUkLcEETUHgT.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68673228, "overview": "The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.", "video": false, "id": 1251, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Letters from Iwo Jima", "tagline": "The battle of Iwo Jima seen through the eyes of the Japanese soldiers.", "vote_count": 127, "homepage": "http://iwojimathemovie.warnerbros.com/lettersofiwojima/framework/framework.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/7wFTAiIVVucj2PLvMwLZXojEJsA.jpg", "id": 261382, "name": "Clint Eastwood's Iwo Jima"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0498380", "adult": false, "backdrop_path": "/ramtKRAgXSU2UJZrvVEgtVlOa8C.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Malpaso Productions", "id": 171}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2006-12-19", "popularity": 1.14282919165198, "original_title": "Letters from Iwo Jima", "budget": 19000000, "cast": [{"name": "Ken Watanabe", "character": "General Tadamichi Kuribayashi", "id": 3899, "credit_id": "52fe42eac3a36847f802c887", "cast_id": 7, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 0}, {"name": "Kazunari Ninomiya", "character": "Private Saigo", "id": 33515, "credit_id": "52fe42eac3a36847f802c88b", "cast_id": 8, "profile_path": "/40x2xRqcil8MpksK8xETqHp1XaX.jpg", "order": 1}, {"name": "Tsuyoshi Ihara", "character": "Colonel Baron Nishi", "id": 33516, "credit_id": "52fe42eac3a36847f802c88f", "cast_id": 9, "profile_path": "/5MLcKIGrfIDbxlc7u3XDrPOAj1M.jpg", "order": 2}, {"name": "Ry\u014d Kase", "character": "Private Shimizu", "id": 33517, "credit_id": "52fe42eac3a36847f802c893", "cast_id": 10, "profile_path": "/8Fnh4yzktTsFbJCLnWnGmInajG5.jpg", "order": 3}, {"name": "Nakamura Shid\u014d II", "character": "Lieutenant Ito", "id": 72202, "credit_id": "52fe42eac3a36847f802c8dd", "cast_id": 27, "profile_path": "/jsqasWEn1ls8XQKMxOQHr9IgPTD.jpg", "order": 4}, {"name": "Hiroshi Watanabe", "character": "Lieutenant Fujita", "id": 33519, "credit_id": "52fe42eac3a36847f802c897", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Eijiro Ozaki", "character": "Lieutenant Okubo", "id": 33520, "credit_id": "52fe42eac3a36847f802c89b", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Lucas Elliot Eberl", "character": "Sam", "id": 33521, "credit_id": "52fe42eac3a36847f802c89f", "cast_id": 14, "profile_path": "/nUfvIZqKpHhBqBSS0W1NUf99HeW.jpg", "order": 7}, {"name": "Yuki Matsuzaki", "character": "Private Nozaki", "id": 77955, "credit_id": "52fe42eac3a36847f802c8d9", "cast_id": 26, "profile_path": "/2wpDHE2XW805ql9LMgYxhbJto1h.jpg", "order": 8}, {"name": "Hiro Abe", "character": "Lt. Colonel Oiso", "id": 33522, "credit_id": "52fe42eac3a36847f802c8a3", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Sonny Saito", "character": "Medic Endo", "id": 33523, "credit_id": "52fe42eac3a36847f802c8a7", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Steve Santa Sekiyoshi", "character": "Kanda", "id": 33524, "credit_id": "52fe42eac3a36847f802c8ab", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Toshiya Agata", "character": "Captain Iwasaki", "id": 552266, "credit_id": "544a11880e0a2674830036c5", "cast_id": 63, "profile_path": null, "order": 12}, {"name": "Toshi Toda", "character": "Colonel Adachi", "id": 156963, "credit_id": "544a11c7c3a3680fb80038ea", "cast_id": 64, "profile_path": "/pFYqicvIVtrSSZQKnbSOXl1cw8K.jpg", "order": 13}, {"name": "Ken Kensei", "character": "Maj. General Hayashi", "id": 1237536, "credit_id": "544a11ed0e0a267480003894", "cast_id": 65, "profile_path": null, "order": 14}, {"name": "Ikuma Ando", "character": "Ozawa", "id": 1190728, "credit_id": "544a120d0e0a267479003601", "cast_id": 66, "profile_path": null, "order": 15}, {"name": "Akiko Shima", "character": "Lead Woman", "id": 239955, "credit_id": "544a122c0e0a26748c003735", "cast_id": 67, "profile_path": null, "order": 16}, {"name": "Masashi Nagadoi", "character": "Admiral Ichimaru", "id": 1172152, "credit_id": "544a124c0e0a26747900360b", "cast_id": 68, "profile_path": null, "order": 17}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802c865", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.7, "runtime": 141}, "9444": {"poster_path": "/dKJ6OOYlHGPARKidvP1kYJjXW29.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64900000, "overview": "This animated adventure retells the story of the lost daughter of Russia's last czar. The evil Rasputin places a curse on the Romanov family, and Anastasia and her grandmother, Empress Maria, get separated. After growing up in an orphanage, Anastasia encounters two Russian men seeking a reward offered by Empress Maria for the return of her granddaughter. The trio travels to Paris, where they find that the empress has grown skeptical of imposters.", "video": false, "id": 9444, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Anastasia", "tagline": "Discover the Adventure Behind the Greatest Mystery of Our Time.", "vote_count": 249, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0118617", "adult": false, "backdrop_path": "/eDA9rYqf3FwC1cR65jW5GGJLLjz.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Fox Animation Studios", "id": 11231}, {"name": "Fox Family Films", "id": 11232}, {"name": "The Big Gun Project", "id": 11233}, {"name": "Little Wolf Entertainment", "id": 11234}], "release_date": "1997-11-21", "popularity": 0.968994010589911, "original_title": "Anastasia", "budget": 53000000, "cast": [{"name": "Meg Ryan", "character": "Anastasia (voice)", "id": 5344, "credit_id": "52fe44f8c3a36847f80b4dff", "cast_id": 2, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 0}, {"name": "John Cusack", "character": "Dimitri (voice)", "id": 3036, "credit_id": "52fe44f8c3a36847f80b4dfb", "cast_id": 1, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 1}, {"name": "Christopher Lloyd", "character": "Rasputin (voice)", "id": 1062, "credit_id": "52fe44f8c3a36847f80b4e07", "cast_id": 4, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 2}, {"name": "Angela Lansbury", "character": "The Dowager Empress Marie (voice)", "id": 14730, "credit_id": "52fe44f8c3a36847f80b4e35", "cast_id": 14, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 3}, {"name": "Hank Azaria", "character": "Bartok (voice)", "id": 5587, "credit_id": "52fe44f8c3a36847f80b4e29", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Kelsey Grammer", "character": "Vladimir (voice)", "id": 7090, "credit_id": "52fe44f8c3a36847f80b4e03", "cast_id": 3, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 5}, {"name": "Bernadette Peters", "character": "Sophie (voice)", "id": 40389, "credit_id": "52fe44f8c3a36847f80b4e2d", "cast_id": 12, "profile_path": "/7rOC4uWAGQOmd99h0Eh7r9O2AvN.jpg", "order": 6}, {"name": "Kirsten Dunst", "character": "Young Anastasia (voice)", "id": 205, "credit_id": "52fe44f8c3a36847f80b4e31", "cast_id": 13, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 7}, {"name": "Andrea Martin", "character": "Phlegmenkoff / Old Woman (voice)", "id": 8263, "credit_id": "52fe44f8c3a36847f80b4e39", "cast_id": 15, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 8}, {"name": "Glenn Walker Harris Jr.", "character": "Young Dimitri (voice)", "id": 7089, "credit_id": "52fe44f8c3a36847f80b4e3d", "cast_id": 16, "profile_path": "/pvTQf4oKrqFmcXkYiwENKK65UM3.jpg", "order": 9}, {"name": "Lacey Chabert", "character": "Young Anastasia (singing voice)", "id": 22082, "credit_id": "54f79be9c3a3683a570033ab", "cast_id": 26, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 10}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe44f8c3a36847f80b4e0d", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}, {"name": "Gary Goldman", "department": "Directing", "job": "Director", "credit_id": "52fe44f8c3a36847f80b4e43", "profile_path": "/3GPDphDxHIlT3D8GiMCKsf3X4Rj.jpg", "id": 12881}], "vote_average": 6.7, "runtime": 94}, "9766": {"poster_path": "/zLMsFU6XoDPMxULYbBBmneJqKUr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38432823, "overview": "Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.", "video": false, "id": 9766, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Gridiron Gang", "tagline": "One goal. A second chance.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421206", "adult": false, "backdrop_path": "/tKSlpVGVTLRhC3qD5srVqWjm8dV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2006-09-15", "popularity": 0.575536183819701, "original_title": "Gridiron Gang", "budget": 30000000, "cast": [{"name": "Dwayne Johnson", "character": "Sean Porter", "id": 18918, "credit_id": "52fe4529c3a36847f80bfb49", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Xzibit", "character": "Malcolm Moore", "id": 336, "credit_id": "52fe4529c3a36847f80bfb4d", "cast_id": 2, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 1}, {"name": "L. Scott Caldwell", "character": "Bobbi Porter", "id": 29051, "credit_id": "52fe4529c3a36847f80bfb51", "cast_id": 3, "profile_path": "/p5W9yIDt269Tb4KMMKI8AeO4jJi.jpg", "order": 2}, {"name": "Leon Rippy", "character": "Paul Higa", "id": 15374, "credit_id": "52fe4529c3a36847f80bfb55", "cast_id": 4, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Ted Dexter", "id": 14721, "credit_id": "52fe4529c3a36847f80bfb59", "cast_id": 5, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Jade Yorker", "character": "Willie Weathers", "id": 59011, "credit_id": "52fe4529c3a36847f80bfb5d", "cast_id": 6, "profile_path": "/4r68bJfIHuPn2SbhaFigSV0zlQ.jpg", "order": 5}, {"name": "David V. Thomas", "character": "Kelvin Owens (as David Thomas)", "id": 59012, "credit_id": "52fe4529c3a36847f80bfb61", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Setu Taase", "character": "Junior Palaita", "id": 59013, "credit_id": "52fe4529c3a36847f80bfb65", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Mo McRae", "character": "Leon Hayes", "id": 59014, "credit_id": "52fe4529c3a36847f80bfb69", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "James Earl", "character": "Donald Madlock (as James Earl III)", "id": 59015, "credit_id": "52fe4529c3a36847f80bfb6d", "cast_id": 10, "profile_path": "/1AIAQvGZTaJDcn0aZzgdpg72NIS.jpg", "order": 9}, {"name": "Trever O'Brien", "character": "Kenny Bates", "id": 59016, "credit_id": "52fe4529c3a36847f80bfb71", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jurnee Smollett", "character": "Danyelle Rollins", "id": 59017, "credit_id": "52fe4529c3a36847f80bfb79", "cast_id": 13, "profile_path": "/wff4HS8WsDK1QwT4lR8oGU9RXwS.jpg", "order": 12}, {"name": "Michael J. Pagan", "character": "Roger Weathers", "id": 59018, "credit_id": "52fe4529c3a36847f80bfb7d", "cast_id": 14, "profile_path": "/ahRXzDcYUSwunOppktmfrU7XC8w.jpg", "order": 13}, {"name": "Jamal Mixon", "character": "Jamal Evans", "id": 59019, "credit_id": "52fe4529c3a36847f80bfb81", "cast_id": 15, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 14}, {"name": "Garrett M. Brown", "character": "Coach Finley", "id": 27492, "credit_id": "52fe4529c3a36847f80bfbcd", "cast_id": 28, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 15}, {"name": "Brandon Smith", "character": "Bug Wendal", "id": 427978, "credit_id": "539304eac3a3686434001462", "cast_id": 29, "profile_path": "/hJPSZh6xe4r9xGE30iLiPzroaKg.jpg", "order": 16}], "directors": [{"name": "Phil Joanou", "department": "Directing", "job": "Director", "credit_id": "52fe4529c3a36847f80bfb87", "profile_path": "/5snXDgDV7xU0uX6ZbXiAxSXHbmI.jpg", "id": 18500}], "vote_average": 6.1, "runtime": 125}, "1255": {"poster_path": "/74OkcSKTs4f8myeLaVdJ57lj2CG.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 88489643, "overview": "Gang-du is a dim-witted man working at his father's tiny snack bar near the Han River. One day, Gang-du's one and only daughter Hyun-seo comes back from school irritated. She is angry at her uncle, Nam-il, who visited her school as her guardian shamelessly drunk. Ignoring her father's excuses for Nam-il, Hyun-seo is soon engrossed in her aunt Nam-joo's archery tournament on TV. Meanwhile, outside of the snack bar, people are fascinated by an unidentified object hanging onto a bridge. In an instant, the object reveals itself as a terrifying creature turning the riverbank into a gruesome sea of blood\u00a1\u00a6 Amid the chaos, Hyun-seo is helplessly snatched up by the creature right before Gang-du's eyes. These unforeseen circumstances render the government powerless to act. But receiving a call of help from Hyun-seo, the once-ordinary citizen Gang-du and his family are thrust into a battle with the monster to rescue their beloved Hyun-seo.", "video": false, "id": 1255, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "The Host", "tagline": "Monsters are real.", "vote_count": 92, "homepage": "http://www.hostmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0468492", "adult": false, "backdrop_path": "/9diyJ180qJP4PHlHYPvwEMrrqI8.jpg", "production_companies": [{"name": "Cineclick Asia", "id": 685}, {"name": "Happinet Pictures", "id": 822}, {"name": "Cheongeoram", "id": 945}, {"name": "CJ Capital Investment", "id": 946}], "release_date": "2006-07-27", "popularity": 0.488682939068188, "original_title": "\uad34\ubb3c", "budget": 11000000, "cast": [{"name": "Song Kang-ho", "character": "Park Gang-du", "id": 20738, "credit_id": "52fe42eac3a36847f802ca31", "cast_id": 3, "profile_path": "/1JL0Shq6js9Ox2FEIW2vHqIISv9.jpg", "order": 0}, {"name": "Byeon Hie-bong ", "character": "Park Hie-bong", "id": 21686, "credit_id": "52fe42eac3a36847f802ca35", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Park Hae-Il", "character": "Park Nam-il", "id": 21687, "credit_id": "52fe42eac3a36847f802ca39", "cast_id": 5, "profile_path": "/bzgD29gCOE5ImtU9m2Vjbrv5LlC.jpg", "order": 2}, {"name": "DooNa Bae", "character": "Park Nam-joo", "id": 21688, "credit_id": "52fe42eac3a36847f802ca3d", "cast_id": 6, "profile_path": "/hE9dmpQOIdgt1GGVoZObPZmVSPh.jpg", "order": 3}, {"name": "Ko Ah-Sung", "character": "Park Hyun-seo", "id": 21689, "credit_id": "52fe42eac3a36847f802ca41", "cast_id": 7, "profile_path": "/ypLzFARDiB0S8eV8YWj0mi5vmJW.jpg", "order": 4}], "directors": [{"name": "Bong Joon-ho ", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802ca27", "profile_path": "/ksRcTlnSOLwNcI37LRRKpQwucWL.jpg", "id": 21684}], "vote_average": 6.7, "runtime": 119}, "1262": {"poster_path": "/AtjCCvfMq9kmjwjbVwTJ0mWG7zp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53653224, "overview": "Everybody knows that your life is a story. But what if a story was your life? Harold Crick is your average IRS agent: monotonous, boring, and repetitive. But one day this all changes when Harold begins to hear an author inside his head narrating his life. But when the narration reveals he is going to die, Harold must find the author and convince them to change the ending.", "video": false, "id": 1262, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Stranger Than Fiction", "tagline": "Harold Crick isn't ready to go. Period.", "vote_count": 188, "homepage": "http://www.sonypictures.com/homevideo/strangerthanfiction/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0420223", "adult": false, "backdrop_path": "/b2lFQMEeukJYqQuQB7CQN0CJnks.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Three Strange Angels", "id": 1973}], "release_date": "2006-09-09", "popularity": 0.481940222379949, "original_title": "Stranger Than Fiction", "budget": 30000000, "cast": [{"name": "Will Ferrell", "character": "Harold Crick", "id": 23659, "credit_id": "52fe42ebc3a36847f802cccb", "cast_id": 1, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Ana Pascal", "id": 1579, "credit_id": "52fe42ebc3a36847f802cceb", "cast_id": 9, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Professor Jules Hilbert", "id": 4483, "credit_id": "52fe42ebc3a36847f802ccfb", "cast_id": 12, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Penny Escher", "id": 15758, "credit_id": "52fe42ebc3a36847f802cccf", "cast_id": 2, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Ricky Adams", "character": "Junge", "id": 36090, "credit_id": "52fe42ebc3a36847f802ccd3", "cast_id": 3, "profile_path": null, "order": 4}, {"name": "Denise Hughes", "character": "Bus Fahrer", "id": 36092, "credit_id": "52fe42ebc3a36847f802ccdb", "cast_id": 5, "profile_path": null, "order": 5}, {"name": "Christian Stolte", "character": "Vater des Junge", "id": 36091, "credit_id": "52fe42ebc3a36847f802ccd7", "cast_id": 4, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 6}, {"name": "William Dick", "character": "IRS Co-Arbeiter", "id": 36095, "credit_id": "52fe42ebc3a36847f802cce7", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Tony Hale", "character": "Dave", "id": 25147, "credit_id": "52fe42ebc3a36847f802cce3", "cast_id": 7, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 8}, {"name": "Peggy Roeder", "character": "Polische Frau", "id": 36093, "credit_id": "52fe42ebc3a36847f802ccdf", "cast_id": 6, "profile_path": null, "order": 9}, {"name": "Emma Thompson", "character": "Karen Eiffel", "id": 7056, "credit_id": "52fe42ebc3a36847f802ccff", "cast_id": 13, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 10}, {"name": "Peter Grosz", "character": "IRS Co-Worker #5", "id": 1154221, "credit_id": "52fe42ebc3a36847f802cd03", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Tonray Ho", "character": "IRS Co-Worker #6", "id": 1154231, "credit_id": "52fe42ebc3a36847f802cd07", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Danny Rhodes", "character": "Bakery Employee #1", "id": 1154232, "credit_id": "52fe42ebc3a36847f802cd0b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Linara Washington", "character": "Bakery Employee #2", "id": 155520, "credit_id": "52fe42ebc3a36847f802cd0f", "cast_id": 17, "profile_path": "/zvHRQpZmEE8WiACP09GYkm2wyjS.jpg", "order": 14}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe42ebc3a36847f802ccf1", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.9, "runtime": 113}, "82695": {"poster_path": "/qEsrAHoxj746FRb7OLGYjrx1AI3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 440303623, "overview": "An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France, in which a paroled prisoner named Jean Valjean seeks redemption.", "video": false, "id": 82695, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Les Mis\u00e9rables", "tagline": "Fight. Dream. Hope. Love.", "vote_count": 785, "homepage": "http://www.lesmiserablesfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1707386", "adult": false, "backdrop_path": "/srWMIJYWQYPUgcE3Tqw17GeyEfB.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "CAMERON MACKINTOSH", "id": 7923}, {"name": "Relativity Media", "id": 7295}, {"name": "Universal Pictures", "id": 33}], "release_date": "2012-12-25", "popularity": 1.31290886141949, "original_title": "Les Mis\u00e9rables", "budget": 61000000, "cast": [{"name": "Hugh Jackman", "character": "Jean Valjean", "id": 6968, "credit_id": "52fe486c9251416c9108c095", "cast_id": 12, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Javert", "id": 934, "credit_id": "52fe486c9251416c9108c099", "cast_id": 13, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Anne Hathaway", "character": "Fantine", "id": 1813, "credit_id": "52fe486c9251416c9108c08d", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Cosette", "id": 71070, "credit_id": "52fe486c9251416c9108c0a9", "cast_id": 17, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Sacha Baron Cohen", "character": "Th\u00e9nardier", "id": 6730, "credit_id": "52fe486c9251416c9108c09d", "cast_id": 14, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Madame Th\u00e9nardier", "id": 1283, "credit_id": "52fe486c9251416c9108c091", "cast_id": 11, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Eddie Redmayne", "character": "Marius", "id": 37632, "credit_id": "52fe486c9251416c9108c0a1", "cast_id": 15, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 6}, {"name": "Aaron Tveit", "character": "Enjolras", "id": 143425, "credit_id": "52fe486c9251416c9108c0a5", "cast_id": 16, "profile_path": "/zIqsSUWJVyEWnC30p7BMhybXTK2.jpg", "order": 7}, {"name": "Samantha Barks", "character": "\u00c9ponine", "id": 145116, "credit_id": "52fe486c9251416c9108c0b1", "cast_id": 19, "profile_path": "/gLmsnrHIHP2yw7S3fhLgYvP3OvK.jpg", "order": 8}, {"name": "Daniel Huttlestone", "character": "Gavroche", "id": 1133684, "credit_id": "52fe486c9251416c9108c0b5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Cavin Cornwall", "character": "Convict 1", "id": 1278483, "credit_id": "52fe486c9251416c9108c0b9", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Josef Altin", "character": "Convict 2", "id": 43554, "credit_id": "52fe486c9251416c9108c0bd", "cast_id": 24, "profile_path": "/lnr6IQUAyXP0y1oj7sEZgmNpzpL.jpg", "order": 11}, {"name": "David Hawley", "character": "Convict 3", "id": 1278484, "credit_id": "52fe486c9251416c9108c0c1", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Adam Jones", "character": "Convict 4", "id": 1278485, "credit_id": "52fe486c9251416c9108c0c5", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "John Barr", "character": "Convict 5", "id": 1278486, "credit_id": "52fe486c9251416c9108c0c9", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Tony Rohr", "character": "Overseer", "id": 44930, "credit_id": "52fe486c9251416c9108c0cd", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Richard Dixon", "character": "Mairie Officer", "id": 1222025, "credit_id": "52fe486c9251416c9108c0d1", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Andy Beckwith", "character": "Innkeeper", "id": 1123, "credit_id": "52fe486c9251416c9108c0d5", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Colm Wilkinson", "character": "Bishop", "id": 117313, "credit_id": "52fe486c9251416c9108c0ad", "cast_id": 18, "profile_path": null, "order": 18}, {"name": "Stephen Bent", "character": "Jailer", "id": 1231198, "credit_id": "52fe486c9251416c9108c0d9", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Georgie Glen", "character": "Madame Baptistine", "id": 191752, "credit_id": "52fe486c9251416c9108c0dd", "cast_id": 32, "profile_path": "/r2CVV42Lrv2N1n9ElP70ccQWTvO.jpg", "order": 20}, {"name": "Heather Chasen", "character": "Madame Magloire", "id": 1184005, "credit_id": "52fe486c9251416c9108c0e1", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Paul Thornley", "character": "Constable 1", "id": 192922, "credit_id": "52fe486c9251416c9108c0e5", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Paul Howell", "character": "Constable 2", "id": 123501, "credit_id": "52fe486c9251416c9108c0e9", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Stephen Tate", "character": "Fauchelevent", "id": 1233034, "credit_id": "52fe486c9251416c9108c0ed", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Michael Jibson", "character": "Foreman", "id": 56098, "credit_id": "52fe486c9251416c9108c0f1", "cast_id": 37, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 25}, {"name": "Kate Fleetwood", "character": "Factory Woman 1", "id": 178630, "credit_id": "52fe486c9251416c9108c0f5", "cast_id": 38, "profile_path": "/z3nIZxpSzdq0R11uABD5gmvCuob.jpg", "order": 26}, {"name": "Hannah Waddingham", "character": "Factory Woman 2", "id": 1278487, "credit_id": "52fe486c9251416c9108c0f9", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Clare Foster", "character": "Factory Woman 3", "id": 1229438, "credit_id": "52fe486c9251416c9108c0fd", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Kirsty Hoiles", "character": "Factory Woman 4", "id": 1278488, "credit_id": "52fe486c9251416c9108c101", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jenna Boyd", "character": "Factory Woman 5", "id": 1278489, "credit_id": "52fe486c9251416c9108c105", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Alice Fearn", "character": "Factory Woman 6", "id": 1278490, "credit_id": "52fe486c9251416c9108c109", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Alison Tennant", "character": "Factory Woman 7", "id": 1278491, "credit_id": "52fe486c9251416c9108c10d", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Marilyn Cutts", "character": "Factory Woman 8", "id": 1278492, "credit_id": "52fe486c9251416c9108c111", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Cathy Breeze", "character": "Factory Woman 9", "id": 1278493, "credit_id": "52fe486c9251416c9108c115", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "John Albasiny", "character": "Factory Onlooker", "id": 132988, "credit_id": "52fe486c9251416c9108c119", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Bertie Carvel", "character": "Bamatabois", "id": 216425, "credit_id": "52fe486c9251416c9108c11d", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Tim Downie", "character": "Brevet", "id": 1010912, "credit_id": "52fe486c9251416c9108c121", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Andrew Havill", "character": "Cochepaille", "id": 176191, "credit_id": "52fe486c9251416c9108c125", "cast_id": 50, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 38}, {"name": "Dick Ward", "character": "Bamatabois' Valet", "id": 986101, "credit_id": "52fe486c9251416c9108c129", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Nicola Sloane", "character": "Hair Crone", "id": 1278494, "credit_id": "52fe486c9251416c9108c12d", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Daniel Evans", "character": "Pimp", "id": 1220071, "credit_id": "52fe486c9251416c9108c131", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "David Stoller", "character": "Sailor 1", "id": 1278495, "credit_id": "52fe486c9251416c9108c135", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Ross McCormack", "character": "Sailor 2", "id": 1091582, "credit_id": "52fe486c9251416c9108c139", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Jaygann Ayeh", "character": "Sailor 3", "id": 1278496, "credit_id": "52fe486c9251416c9108c13d", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Adrian Scarborough", "character": "Toothman", "id": 40311, "credit_id": "52fe486c9251416c9108c141", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Frances Ruffelle", "character": "Whore 1", "id": 132992, "credit_id": "52fe486c9251416c9108c145", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Lynne Wilmot", "character": "Whore 2", "id": 1278497, "credit_id": "52fe486c9251416c9108c149", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Charlotte Spencer", "character": "Whore 3", "id": 219763, "credit_id": "52fe486c9251416c9108c14d", "cast_id": 60, "profile_path": "/7qTFCCgmBrxnUoabz39Wmi2XZ9V.jpg", "order": 48}, {"name": "Julia Worsley", "character": "Head Whore", "id": 1278498, "credit_id": "52fe486c9251416c9108c151", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "Keith Dunphy", "character": "Client", "id": 1278499, "credit_id": "52fe486c9251416c9108c155", "cast_id": 62, "profile_path": null, "order": 50}, {"name": "Ashley Artus", "character": "Pawn Broker", "id": 17259, "credit_id": "52fe486c9251416c9108c159", "cast_id": 63, "profile_path": null, "order": 51}, {"name": "John Surman", "character": "Organ Grinder", "id": 32807, "credit_id": "52fe486c9251416c9108c15d", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "David Cann", "character": "Magistrate", "id": 193340, "credit_id": "52fe486c9251416c9108c161", "cast_id": 65, "profile_path": null, "order": 53}, {"name": "James Simmons", "character": "Champmathieu", "id": 138412, "credit_id": "52fe486c9251416c9108c165", "cast_id": 66, "profile_path": null, "order": 54}, {"name": "Polly Kemp", "character": "Nursing Sister", "id": 210169, "credit_id": "52fe486c9251416c9108c169", "cast_id": 67, "profile_path": null, "order": 55}, {"name": "Ian Pirie", "character": "Babet", "id": 95716, "credit_id": "52fe486c9251416c9108c16d", "cast_id": 68, "profile_path": "/wBQsI3PN3r0cDri8gt3z12kQgoY.jpg", "order": 56}, {"name": "Adam Pearce", "character": "Brujon", "id": 1278501, "credit_id": "52fe486c9251416c9108c171", "cast_id": 69, "profile_path": null, "order": 57}, {"name": "Julian Bleach", "character": "Claquesous", "id": 30086, "credit_id": "52fe486c9251416c9108c175", "cast_id": 70, "profile_path": null, "order": 58}, {"name": "Marc Pickering", "character": "Montparnasse", "id": 73528, "credit_id": "52fe486c9251416c9108c179", "cast_id": 71, "profile_path": "/3xOapB4eNc5QU1Oo0NcBDX8Jolh.jpg", "order": 59}, {"name": "Isabelle Allen", "character": "Young Cosette", "id": 1145979, "credit_id": "52fe486c9251416c9108c17d", "cast_id": 72, "profile_path": null, "order": 60}, {"name": "Natalya Wallace", "character": "Young \u00c9ponine", "id": 1145984, "credit_id": "52fe486c9251416c9108c181", "cast_id": 73, "profile_path": null, "order": 61}, {"name": "Phil Snowden", "character": "Customer 1", "id": 231700, "credit_id": "52fe486c9251416c9108c185", "cast_id": 74, "profile_path": null, "order": 62}, {"name": "Hadrian Delacey", "character": "Customer 2", "id": 1278503, "credit_id": "52fe486c9251416c9108c189", "cast_id": 75, "profile_path": null, "order": 63}, {"name": "Lottie Steer", "character": "Baby", "id": 1278504, "credit_id": "52fe486c9251416c9108c18d", "cast_id": 76, "profile_path": null, "order": 64}, {"name": "Sam Parks", "character": "Tall Customer", "id": 1232658, "credit_id": "52fe486c9251416c9108c191", "cast_id": 77, "profile_path": null, "order": 65}, {"name": "Mark Donovan", "character": "Portly Customer", "id": 211413, "credit_id": "52fe486c9251416c9108c195", "cast_id": 78, "profile_path": null, "order": 66}, {"name": "Lewis Kirk", "character": "Handsome Soldier 1", "id": 1278510, "credit_id": "52fe486d9251416c9108c199", "cast_id": 79, "profile_path": null, "order": 67}, {"name": "Leighton Rafferty", "character": "Handsome Soldier 2", "id": 1278511, "credit_id": "52fe486d9251416c9108c19d", "cast_id": 80, "profile_path": null, "order": 68}, {"name": "Peter Mair", "character": "Father Christmas 1", "id": 27655, "credit_id": "52fe486d9251416c9108c1a1", "cast_id": 81, "profile_path": null, "order": 69}, {"name": "Jack Chissick", "character": "Father Christmas 2", "id": 1220052, "credit_id": "52fe486d9251416c9108c1a5", "cast_id": 82, "profile_path": null, "order": 70}, {"name": "Dianne Pilkington", "character": "Inn Whore 1", "id": 1278512, "credit_id": "52fe486d9251416c9108c1a9", "cast_id": 83, "profile_path": null, "order": 71}, {"name": "Robyn North", "character": "Inn Whore 2", "id": 1278513, "credit_id": "52fe486d9251416c9108c1ad", "cast_id": 84, "profile_path": null, "order": 72}, {"name": "Norma Atallah", "character": "Mother Whore", "id": 138158, "credit_id": "52fe486d9251416c9108c1b1", "cast_id": 85, "profile_path": null, "order": 73}, {"name": "Patrick Godfrey", "character": "Gillenormand", "id": 3568, "credit_id": "52fe486d9251416c9108c1b5", "cast_id": 86, "profile_path": null, "order": 74}, {"name": "Mark Roper", "character": "Citizen", "id": 1278517, "credit_id": "52fe486d9251416c9108c1b9", "cast_id": 87, "profile_path": null, "order": 75}, {"name": "Paul Leonard", "character": "Citizen", "id": 1278518, "credit_id": "52fe486d9251416c9108c1bd", "cast_id": 88, "profile_path": null, "order": 76}, {"name": "Miles Roughley", "character": "Gavroche's Urchin", "id": 1278519, "credit_id": "52fe486d9251416c9108c1c1", "cast_id": 89, "profile_path": null, "order": 77}, {"name": "Cameron Strefford", "character": "Gavroche's Urchin", "id": 1278522, "credit_id": "52fe486d9251416c9108c1c5", "cast_id": 90, "profile_path": null, "order": 78}, {"name": "Alfie Davis", "character": "Gavroche's Urchin", "id": 1278523, "credit_id": "52fe486d9251416c9108c1c9", "cast_id": 91, "profile_path": null, "order": 79}, {"name": "Joseph West", "character": "Gavroche's Urchin", "id": 1278524, "credit_id": "52fe486d9251416c9108c1cd", "cast_id": 92, "profile_path": null, "order": 80}, {"name": "Joel Phillimore", "character": "Beggar 1", "id": 1278525, "credit_id": "52fe486d9251416c9108c1d1", "cast_id": 93, "profile_path": null, "order": 81}, {"name": "Jacqueline Dankworth", "character": "Beggar 2", "id": 990509, "credit_id": "52fe486d9251416c9108c1d5", "cast_id": 94, "profile_path": null, "order": 82}, {"name": "Amelia Jefford", "character": "Beggar 3", "id": 1278526, "credit_id": "52fe486d9251416c9108c1d9", "cast_id": 95, "profile_path": null, "order": 83}, {"name": "Chris Barnes", "character": "Beggar 4", "id": 1278527, "credit_id": "52fe486d9251416c9108c1dd", "cast_id": 96, "profile_path": null, "order": 84}, {"name": "Richard Cordery", "character": "Duc De Raguse", "id": 156356, "credit_id": "52fe486d9251416c9108c1e1", "cast_id": 97, "profile_path": null, "order": 85}, {"name": "Killian Donnelly", "character": "Combeferre", "id": 231673, "credit_id": "52fe486d9251416c9108c1e5", "cast_id": 98, "profile_path": null, "order": 86}, {"name": "Fra Fee", "character": "Courfeyrac", "id": 1278528, "credit_id": "52fe486d9251416c9108c1e9", "cast_id": 99, "profile_path": null, "order": 87}, {"name": "Gabriel Vick", "character": "Feuilly", "id": 1278529, "credit_id": "52fe486d9251416c9108c1ed", "cast_id": 100, "profile_path": null, "order": 88}, {"name": "George Blagden", "character": "Grantaire", "id": 1256160, "credit_id": "52fe486d9251416c9108c1f1", "cast_id": 101, "profile_path": "/yzdb0mV2POyK3Afq1Uoa4QxrHlU.jpg", "order": 89}, {"name": "Hugh Skinner", "character": "Joly", "id": 1206337, "credit_id": "52fe486d9251416c9108c1f5", "cast_id": 102, "profile_path": "/pgsfiggEcEn7sGatiqIExgAptpU.jpg", "order": 90}, {"name": "Stuart Neal", "character": "Lesgles", "id": 1278530, "credit_id": "52fe486d9251416c9108c1f9", "cast_id": 103, "profile_path": null, "order": 91}, {"name": "Alistair Brammer", "character": "Prouvaire", "id": 231666, "credit_id": "52fe486d9251416c9108c1fd", "cast_id": 104, "profile_path": "/lLVkjvRLsEDrm7yu2U8pH1ftkNT.jpg", "order": 92}, {"name": "Iwan Lewis", "character": "Bahorel", "id": 1278531, "credit_id": "52fe486d9251416c9108c201", "cast_id": 105, "profile_path": null, "order": 93}, {"name": "Katy Secombe", "character": "Madame Hucheloup", "id": 1278532, "credit_id": "52fe486d9251416c9108c205", "cast_id": 106, "profile_path": null, "order": 94}, {"name": "Hadley Fraser", "character": "Army Officer", "id": 231674, "credit_id": "52fe486d9251416c9108c209", "cast_id": 107, "profile_path": null, "order": 95}, {"name": "Linzi Hateley", "character": "Turning Woman 1", "id": 1028366, "credit_id": "52fe486d9251416c9108c20d", "cast_id": 108, "profile_path": null, "order": 96}, {"name": "Gemma Wardle", "character": "Turning Woman 2", "id": 195415, "credit_id": "52fe486d9251416c9108c211", "cast_id": 109, "profile_path": null, "order": 97}, {"name": "Gina Beck", "character": "Turning Woman 3", "id": 231664, "credit_id": "52fe486d9251416c9108c215", "cast_id": 110, "profile_path": "/fhkb2gkNFcS0z0QJ6wcdYP71x8w.jpg", "order": 98}, {"name": "Katie Hall", "character": "Turning Woman 4", "id": 231677, "credit_id": "52fe486d9251416c9108c219", "cast_id": 111, "profile_path": null, "order": 99}, {"name": "Lisa Hull", "character": "Turning Woman 5", "id": 1278535, "credit_id": "52fe486d9251416c9108c21d", "cast_id": 112, "profile_path": null, "order": 100}, {"name": "Andrea Deck", "character": "Turning Woman 6", "id": 1172316, "credit_id": "52fe486d9251416c9108c221", "cast_id": 113, "profile_path": "/8HCnRj6MJ686E9aciqKSlrcrlwi.jpg", "order": 101}, {"name": "Jessica Duncan", "character": "Turning Woman 7", "id": 1278536, "credit_id": "52fe486d9251416c9108c225", "cast_id": 114, "profile_path": null, "order": 102}, {"name": "Kerry Ingram", "character": "Turning Woman 8", "id": 1159508, "credit_id": "52fe486d9251416c9108c229", "cast_id": 115, "profile_path": null, "order": 103}, {"name": "John Warnaby", "character": "Majordomo", "id": 183180, "credit_id": "52fe486d9251416c9108c22d", "cast_id": 116, "profile_path": null, "order": 104}, {"name": "Mike Sarne", "character": "Father Mabeuf", "id": 1278132, "credit_id": "52fe486d9251416c9108c231", "cast_id": 117, "profile_path": null, "order": 105}, {"name": "Freya Parks", "character": "Caf\u00e9 Barmaid", "id": 970737, "credit_id": "52fe486d9251416c9108c235", "cast_id": 118, "profile_path": null, "order": 106}, {"name": "Richard Bremmer", "character": "Ensemble At The End of the Day", "id": 19903, "credit_id": "52fe486d9251416c9108c239", "cast_id": 119, "profile_path": "/eRLxQ7sTWqtI24OPo5wz3p95RI3.jpg", "order": 107}, {"name": "Alexander Brooks", "character": "Ensemble At The End of the Day", "id": 1182570, "credit_id": "52fe486d9251416c9108c23d", "cast_id": 120, "profile_path": null, "order": 108}, {"name": "Eleanor Bruce", "character": "Ensemble At The End of the Day", "id": 1278543, "credit_id": "52fe486d9251416c9108c241", "cast_id": 121, "profile_path": null, "order": 109}, {"name": "Emma Dukes", "character": "Ensemble At The End of the Day", "id": 1278544, "credit_id": "52fe486d9251416c9108c245", "cast_id": 122, "profile_path": null, "order": 110}, {"name": "Stephen Matthews", "character": "Ensemble At The End of the Day", "id": 160950, "credit_id": "52fe486d9251416c9108c249", "cast_id": 123, "profile_path": null, "order": 111}, {"name": "Peter Saracen", "character": "Ensemble At The End of the Day", "id": 1278545, "credit_id": "52fe486d9251416c9108c24d", "cast_id": 124, "profile_path": null, "order": 112}, {"name": "Sebastian Sykes", "character": "Ensemble At The End of the Day", "id": 1278546, "credit_id": "52fe486d9251416c9108c251", "cast_id": 125, "profile_path": null, "order": 113}, {"name": "Phil Zimmerman", "character": "Ensemble At The End of the Day", "id": 1278547, "credit_id": "52fe486d9251416c9108c255", "cast_id": 126, "profile_path": null, "order": 114}, {"name": "Bessie Carter", "character": "Ensemble Factory Women", "id": 1278548, "credit_id": "52fe486d9251416c9108c259", "cast_id": 127, "profile_path": null, "order": 115}, {"name": "Helen Cotterill", "character": "Ensemble Factory Women", "id": 244600, "credit_id": "52fe486d9251416c9108c25d", "cast_id": 128, "profile_path": null, "order": 116}, {"name": "Tricia Deighton", "character": "Ensemble Factory Women", "id": 1278549, "credit_id": "52fe486d9251416c9108c261", "cast_id": 129, "profile_path": null, "order": 117}, {"name": "Mandy Holliday", "character": "Ensemble Factory Women", "id": 1278550, "credit_id": "52fe486d9251416c9108c265", "cast_id": 130, "profile_path": null, "order": 118}, {"name": "Charlotte Hope", "character": "Ensemble Factory Women", "id": 1052255, "credit_id": "52fe486d9251416c9108c269", "cast_id": 131, "profile_path": "/3IouhqclzFgfzGm6LEVAnQKhRev.jpg", "order": 119}, {"name": "Jackie Marks", "character": "Ensemble Factory Women", "id": 1278551, "credit_id": "52fe486d9251416c9108c26d", "cast_id": 132, "profile_path": null, "order": 120}, {"name": "Sara Pelosi", "character": "Ensemble Factory Women", "id": 231693, "credit_id": "52fe486d9251416c9108c271", "cast_id": 133, "profile_path": null, "order": 121}, {"name": "Mary Roscoe", "character": "Ensemble Factory Women", "id": 105440, "credit_id": "52fe486d9251416c9108c275", "cast_id": 134, "profile_path": null, "order": 122}, {"name": "Amelia Scaramucci", "character": "Ensemble Factory Women", "id": 1278552, "credit_id": "52fe486d9251416c9108c279", "cast_id": 135, "profile_path": null, "order": 123}, {"name": "Caroline Sheen", "character": "Ensemble Factory Women", "id": 209984, "credit_id": "52fe486d9251416c9108c27d", "cast_id": 136, "profile_path": null, "order": 124}, {"name": "Rachael Archer", "character": "Ensemble Lovely Ladies", "id": 1278553, "credit_id": "52fe486d9251416c9108c281", "cast_id": 137, "profile_path": null, "order": 125}, {"name": "Lorna Brown", "character": "Ensemble Lovely Ladies", "id": 1278554, "credit_id": "52fe486d9251416c9108c285", "cast_id": 138, "profile_path": null, "order": 126}, {"name": "Antonia Clarke", "character": "Ensemble Lovely Ladies", "id": 1278555, "credit_id": "52fe486d9251416c9108c289", "cast_id": 139, "profile_path": "/pIEcwcJM4izHP4JFOkQcgniJzyK.jpg", "order": 127}, {"name": "Mary Cormack", "character": "Ensemble Lovely Ladies", "id": 1278556, "credit_id": "52fe486d9251416c9108c28d", "cast_id": 140, "profile_path": null, "order": 128}, {"name": "Sonya Cullingford", "character": "Ensemble Lovely Ladies", "id": 1278557, "credit_id": "52fe486d9251416c9108c291", "cast_id": 141, "profile_path": null, "order": 129}, {"name": "Holly Dale Spencer", "character": "Ensemble Lovely Ladies", "id": 1278558, "credit_id": "52fe486d9251416c9108c295", "cast_id": 142, "profile_path": null, "order": 130}, {"name": "Amy Griffiths", "character": "Ensemble Lovely Ladies", "id": 1278559, "credit_id": "52fe486d9251416c9108c299", "cast_id": 143, "profile_path": null, "order": 131}, {"name": "Fania Grigoriou", "character": "Ensemble Lovely Ladies", "id": 1278560, "credit_id": "52fe486d9251416c9108c29d", "cast_id": 144, "profile_path": null, "order": 132}, {"name": "Amanda Henderson", "character": "Ensemble Lovely Ladies", "id": 1278561, "credit_id": "52fe486d9251416c9108c2a1", "cast_id": 145, "profile_path": null, "order": 133}, {"name": "Alexia Khadime", "character": "Ensemble Lovely Ladies", "id": 1278562, "credit_id": "52fe486d9251416c9108c2a5", "cast_id": 146, "profile_path": null, "order": 134}, {"name": "Luisa Lazzaro", "character": "Ensemble Lovely Ladies", "id": 1278563, "credit_id": "52fe486e9251416c9108c2a9", "cast_id": 147, "profile_path": null, "order": 135}, {"name": "Gemma O'Duffy", "character": "Ensemble Lovely Ladies", "id": 1278564, "credit_id": "52fe486e9251416c9108c2ad", "cast_id": 148, "profile_path": null, "order": 136}, {"name": "Rosa O'Reilly", "character": "Ensemble Lovely Ladies", "id": 1278565, "credit_id": "52fe486e9251416c9108c2b1", "cast_id": 149, "profile_path": null, "order": 137}, {"name": "Amy Ellen Richardson", "character": "Ensemble Lovely Ladies", "id": 1278566, "credit_id": "52fe486e9251416c9108c2b5", "cast_id": 150, "profile_path": null, "order": 138}, {"name": "Olivia Rose-Aaron", "character": "Ensemble Lovely Ladies", "id": 1278567, "credit_id": "52fe486e9251416c9108c2b9", "cast_id": 151, "profile_path": null, "order": 139}, {"name": "Robyn Miranda Simpson", "character": "Ensemble Lovely Ladies", "id": 1278568, "credit_id": "52fe486e9251416c9108c2bd", "cast_id": 152, "profile_path": null, "order": 140}, {"name": "Rachel Stanley", "character": "Ensemble Lovely Ladies / Ensemble Wedding Dancers", "id": 1278569, "credit_id": "52fe486e9251416c9108c2c1", "cast_id": 153, "profile_path": null, "order": 141}, {"name": "Nancy Sullivan", "character": "Ensemble Lovely Ladies", "id": 1278573, "credit_id": "52fe486e9251416c9108c2c5", "cast_id": 154, "profile_path": null, "order": 142}, {"name": "Rebecca Sutherland", "character": "Ensemble Lovely Ladies", "id": 1278574, "credit_id": "52fe486e9251416c9108c2c9", "cast_id": 155, "profile_path": null, "order": 143}, {"name": "Tabitha Webb", "character": "Ensemble Lovely Ladies", "id": 1278575, "credit_id": "52fe486e9251416c9108c2cd", "cast_id": 156, "profile_path": null, "order": 144}, {"name": "Gerard Bentall", "character": "Ensemble Master of the House", "id": 1278576, "credit_id": "52fe486e9251416c9108c2d1", "cast_id": 157, "profile_path": null, "order": 145}, {"name": "Tony Bignell", "character": "Ensemble Master of the House", "id": 1278577, "credit_id": "52fe486e9251416c9108c2d5", "cast_id": 158, "profile_path": null, "order": 146}, {"name": "Michael Cahill", "character": "Ensemble Master of the House", "id": 1278578, "credit_id": "52fe486e9251416c9108c2d9", "cast_id": 159, "profile_path": null, "order": 147}, {"name": "Richard Colson", "character": "Ensemble Master of the House", "id": 1278579, "credit_id": "52fe486e9251416c9108c2dd", "cast_id": 160, "profile_path": null, "order": 148}, {"name": "Kerry Ellis", "character": "Ensemble Master of the House", "id": 223044, "credit_id": "52fe486e9251416c9108c2e1", "cast_id": 161, "profile_path": "/CgnjOF0kmgeRM3oBe0dnoB1hSm.jpg", "order": 149}, {"name": "Simon Fisher-Becker", "character": "Ensemble Master of the House", "id": 1261131, "credit_id": "52fe486e9251416c9108c2e5", "cast_id": 162, "profile_path": null, "order": 150}, {"name": "Sarah Flind", "character": "Ensemble Master of the House", "id": 195286, "credit_id": "52fe486e9251416c9108c2e9", "cast_id": 163, "profile_path": null, "order": 151}, {"name": "Kelly-Anne Gower", "character": "Ensemble Master of the House", "id": 1278580, "credit_id": "52fe486e9251416c9108c2ed", "cast_id": 164, "profile_path": null, "order": 152}, {"name": "James Greene", "character": "Ensemble Master of the House", "id": 1266585, "credit_id": "52fe486e9251416c9108c2f1", "cast_id": 165, "profile_path": "/mQNSBTK93AXGGd5f0mbQqPhgBtY.jpg", "order": 153}, {"name": "Nick Holder", "character": "Ensemble Master of the House", "id": 206726, "credit_id": "52fe486e9251416c9108c2f5", "cast_id": 166, "profile_path": null, "order": 154}, {"name": "Chris Howell", "character": "Ensemble Master of the House", "id": 1278581, "credit_id": "52fe486e9251416c9108c2f9", "cast_id": 167, "profile_path": null, "order": 155}, {"name": "Alison Jiear", "character": "Ensemble Master of the House", "id": 1028408, "credit_id": "52fe486e9251416c9108c2fd", "cast_id": 168, "profile_path": null, "order": 156}, {"name": "Terence Keely", "character": "Ensemble Master of the House", "id": 1278582, "credit_id": "52fe486e9251416c9108c301", "cast_id": 169, "profile_path": null, "order": 157}, {"name": "Martin Marquez", "character": "Ensemble Master of the House", "id": 87099, "credit_id": "52fe486e9251416c9108c305", "cast_id": 170, "profile_path": "/p7wmWHToMCet9m7GYWa4Q5CgsAi.jpg", "order": 158}, {"name": "Sally Mates", "character": "Ensemble Master of the House", "id": 192923, "credit_id": "52fe486e9251416c9108c309", "cast_id": 171, "profile_path": null, "order": 159}, {"name": "Jeff Nicholson", "character": "Ensemble Master of the House", "id": 985962, "credit_id": "52fe486e9251416c9108c30d", "cast_id": 172, "profile_path": null, "order": 160}, {"name": "Adam Searles", "character": "Ensemble Master of the House", "id": 117323, "credit_id": "52fe486e9251416c9108c311", "cast_id": 173, "profile_path": null, "order": 161}, {"name": "Simon Shorten", "character": "Ensemble Master of the House", "id": 1278583, "credit_id": "52fe486e9251416c9108c315", "cast_id": 174, "profile_path": null, "order": 162}, {"name": "Juliet Alderdice", "character": "Ensemble Paris Beggars", "id": 1278584, "credit_id": "52fe486e9251416c9108c319", "cast_id": 175, "profile_path": null, "order": 163}, {"name": "Sean Buckley", "character": "Ensemble Paris Beggars", "id": 202759, "credit_id": "52fe486e9251416c9108c31d", "cast_id": 176, "profile_path": null, "order": 164}, {"name": "Valerie Cutko", "character": "Ensemble Paris Beggars", "id": 1278585, "credit_id": "52fe486e9251416c9108c321", "cast_id": 177, "profile_path": null, "order": 165}, {"name": "Spike Grimsey", "character": "Ensemble Paris Beggars", "id": 1278586, "credit_id": "52fe486e9251416c9108c325", "cast_id": 178, "profile_path": null, "order": 166}, {"name": "Matt Harrop", "character": "Ensemble Paris Beggars", "id": 1278587, "credit_id": "52fe486e9251416c9108c329", "cast_id": 179, "profile_path": null, "order": 167}, {"name": "Georgina Jackson", "character": "Ensemble Paris Beggars", "id": 1278588, "credit_id": "52fe486e9251416c9108c32d", "cast_id": 180, "profile_path": null, "order": 168}, {"name": "Perry Millward", "character": "Ensemble Paris Beggars", "id": 1222373, "credit_id": "52fe486e9251416c9108c331", "cast_id": 181, "profile_path": null, "order": 169}, {"name": "Phil Philmar", "character": "Ensemble Paris Beggars", "id": 1278589, "credit_id": "52fe486e9251416c9108c335", "cast_id": 182, "profile_path": null, "order": 170}, {"name": "Joyce Springer", "character": "Ensemble Paris Beggars", "id": 1278590, "credit_id": "52fe486e9251416c9108c339", "cast_id": 183, "profile_path": null, "order": 171}, {"name": "Julie Stark", "character": "Ensemble Paris Beggars", "id": 1278591, "credit_id": "52fe486e9251416c9108c33d", "cast_id": 184, "profile_path": null, "order": 172}, {"name": "Dominic Applewhite", "character": "Ensemble Students", "id": 515313, "credit_id": "52fe486e9251416c9108c341", "cast_id": 185, "profile_path": null, "order": 173}, {"name": "Matthew Corner", "character": "Ensemble Students", "id": 1278593, "credit_id": "52fe486e9251416c9108c345", "cast_id": 186, "profile_path": null, "order": 174}, {"name": "Andy Coxon", "character": "Ensemble Students", "id": 1278594, "credit_id": "52fe486e9251416c9108c349", "cast_id": 187, "profile_path": null, "order": 175}, {"name": "Jonathan Dudley", "character": "Ensemble Students (as Jonathan D. Dudley)", "id": 1278595, "credit_id": "52fe486e9251416c9108c34d", "cast_id": 188, "profile_path": null, "order": 176}, {"name": "Rhidian Marc", "character": "Ensemble Students", "id": 231686, "credit_id": "52fe486e9251416c9108c351", "cast_id": 189, "profile_path": null, "order": 177}, {"name": "Chris Milford", "character": "Ensemble Students", "id": 1278596, "credit_id": "52fe486e9251416c9108c355", "cast_id": 190, "profile_path": null, "order": 178}, {"name": "Jamie Muscato", "character": "Ensemble Students", "id": 231688, "credit_id": "52fe486e9251416c9108c359", "cast_id": 191, "profile_path": null, "order": 179}, {"name": "Joseph Peters", "character": "Ensemble Students", "id": 1278597, "credit_id": "52fe486e9251416c9108c35d", "cast_id": 192, "profile_path": null, "order": 180}, {"name": "David Roberts", "character": "Ensemble Students", "id": 1151069, "credit_id": "52fe486e9251416c9108c361", "cast_id": 193, "profile_path": null, "order": 181}, {"name": "Stevee Davies", "character": "Ensemble Students (as Steevee Ross-Davies)", "id": 1278601, "credit_id": "52fe486e9251416c9108c365", "cast_id": 194, "profile_path": null, "order": 182}, {"name": "Jonny Purchase", "character": "Ensemble Students", "id": 1278602, "credit_id": "52fe486e9251416c9108c369", "cast_id": 195, "profile_path": null, "order": 183}, {"name": "Matt Seadon Young", "character": "Ensemble Students", "id": 1278604, "credit_id": "52fe486e9251416c9108c36d", "cast_id": 196, "profile_path": null, "order": 184}, {"name": "Jos Slovick", "character": "Ensemble Students", "id": 1278605, "credit_id": "52fe486e9251416c9108c371", "cast_id": 197, "profile_path": null, "order": 185}, {"name": "Samuel J. Weir", "character": "Ensemble Students", "id": 1278606, "credit_id": "52fe486e9251416c9108c375", "cast_id": 198, "profile_path": null, "order": 186}, {"name": "Sophie Huchinson", "character": "Ensemble Turning Women", "id": 1278607, "credit_id": "52fe486e9251416c9108c379", "cast_id": 199, "profile_path": null, "order": 187}, {"name": "Ella Hunt", "character": "Ensemble Turning Women", "id": 989411, "credit_id": "52fe486e9251416c9108c37d", "cast_id": 200, "profile_path": "/4FU0tXTIUce0Ka3FyYZNQrou8J1.jpg", "order": 188}, {"name": "Claire Machin", "character": "Ensemble Turning Women", "id": 1278608, "credit_id": "52fe486e9251416c9108c381", "cast_id": 201, "profile_path": null, "order": 189}, {"name": "Brenda Moore", "character": "Ensemble Turning Women", "id": 1278609, "credit_id": "52fe486e9251416c9108c385", "cast_id": 202, "profile_path": null, "order": 190}, {"name": "Mischa Purnell", "character": "Ensemble Turning Women", "id": 1278610, "credit_id": "52fe486e9251416c9108c389", "cast_id": 203, "profile_path": null, "order": 191}, {"name": "Annette Yeo", "character": "Ensemble Turning Women", "id": 1278611, "credit_id": "52fe486e9251416c9108c38d", "cast_id": 204, "profile_path": null, "order": 192}, {"name": "Josephine Darvill-Mills", "character": "Ensemble Wedding Dancers", "id": 1278612, "credit_id": "52fe486e9251416c9108c391", "cast_id": 205, "profile_path": null, "order": 193}, {"name": "Jennifer Essex", "character": "Ensemble Wedding Dancers", "id": 1278613, "credit_id": "52fe486e9251416c9108c395", "cast_id": 206, "profile_path": null, "order": 194}, {"name": "Vicky Evans", "character": "Ensemble Wedding Dancers", "id": 1278614, "credit_id": "52fe486e9251416c9108c399", "cast_id": 207, "profile_path": null, "order": 195}, {"name": "Edward Lewis French", "character": "Ensemble Wedding Dancers", "id": 1278615, "credit_id": "52fe486e9251416c9108c39d", "cast_id": 208, "profile_path": null, "order": 196}, {"name": "Nigel Garton", "character": "Ensemble Wedding Dancers", "id": 1278616, "credit_id": "52fe486e9251416c9108c3a1", "cast_id": 209, "profile_path": null, "order": 197}, {"name": "Lynn Jezzard", "character": "Ensemble Wedding Dancers", "id": 1278617, "credit_id": "52fe486e9251416c9108c3a5", "cast_id": 210, "profile_path": null, "order": 198}, {"name": "Nicholas Keegan", "character": "Ensemble Wedding Dancers", "id": 1278618, "credit_id": "52fe486e9251416c9108c3a9", "cast_id": 211, "profile_path": null, "order": 199}, {"name": "Steve Kirkham", "character": "Ensemble Wedding Dancers", "id": 1278619, "credit_id": "52fe486e9251416c9108c3ad", "cast_id": 212, "profile_path": null, "order": 200}, {"name": "Vanessa Lee Hicks", "character": "Ensemble Wedding Dancers (as Vanessa Leagh-Hicks)", "id": 231680, "credit_id": "52fe486e9251416c9108c3b1", "cast_id": 213, "profile_path": null, "order": 201}, {"name": "Ian Parsons", "character": "Ensemble Wedding Dancers", "id": 1278620, "credit_id": "52fe486e9251416c9108c3b5", "cast_id": 214, "profile_path": null, "order": 202}, {"name": "Gemma Payne", "character": "Ensemble Wedding Dancers", "id": 1278621, "credit_id": "52fe486e9251416c9108c3b9", "cast_id": 215, "profile_path": null, "order": 203}, {"name": "Clinten Pearce", "character": "Ensemble Wedding Dancers", "id": 1278622, "credit_id": "52fe486e9251416c9108c3bd", "cast_id": 216, "profile_path": null, "order": 204}, {"name": "Claire Piquemal", "character": "Ensemble Wedding Dancers", "id": 1278623, "credit_id": "52fe486e9251416c9108c3c1", "cast_id": 217, "profile_path": null, "order": 205}, {"name": "Aaron Sillis", "character": "Ensemble Wedding Dancers", "id": 1278624, "credit_id": "52fe486e9251416c9108c3c5", "cast_id": 218, "profile_path": null, "order": 206}, {"name": "Ian Waller", "character": "Ensemble Wedding Dancers", "id": 1278625, "credit_id": "52fe486e9251416c9108c3c9", "cast_id": 219, "profile_path": null, "order": 207}], "directors": [{"name": "Tom Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe486c9251416c9108c089", "profile_path": "/ddndxAviYVozIwOIByXAJvHWK7m.jpg", "id": 70500}], "vote_average": 6.9, "runtime": 157}, "1265": {"poster_path": "/vNUvGD1Pl5NjgiSrtVrEa52Ewju.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 137587063, "overview": "Jesse Aarons trained all summer to become the fastest runner in school, so he's very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences, including that she's rich, he's poor, and she's a city girl, he's a country boy, the two become fast friends. Together, they create Terabithia, a land of monsters, trolls, ogres, and giants and rule as king and queen. This friendship helps Jess cope with the tragedy that makes him realize what Leslie taught him.", "video": false, "id": 1265, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Bridge to Terabithia", "tagline": "Close your eyes, but keep your mind wide open.", "vote_count": 214, "homepage": "http://disney.go.com/disneyvideos/liveaction/bridgetoterabithia/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398808", "adult": false, "backdrop_path": "/t45osFg8w2Kh7BzgYl1iYgi8IxF.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walden Media", "id": 10221}], "release_date": "2007-02-16", "popularity": 1.13217223951942, "original_title": "Bridge to Terabithia", "budget": 60000000, "cast": [{"name": "Josh Hutcherson", "character": "Jess Aarons", "id": 27972, "credit_id": "52fe42ebc3a36847f802cea5", "cast_id": 4, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 0}, {"name": "AnnaSophia Robb", "character": "Leslie Burke", "id": 1285, "credit_id": "52fe42ebc3a36847f802cea9", "cast_id": 5, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Ms. Edmunds", "id": 11664, "credit_id": "52fe42ebc3a36847f802cead", "cast_id": 6, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Kate Butler", "character": "Mary Aarons", "id": 54478, "credit_id": "52fe42ebc3a36847f802ceb1", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Bailee Madison", "character": "May Belle Aarons", "id": 54479, "credit_id": "52fe42ebc3a36847f802ceb5", "cast_id": 8, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 4}, {"name": "Robert Patrick", "character": "Jack Aarons", "id": 418, "credit_id": "52fe42ebc3a36847f802ceb9", "cast_id": 9, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 5}, {"name": "Grace Brannigan", "character": "Joyce Aarons", "id": 54480, "credit_id": "52fe42ebc3a36847f802cebd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Emma Fenton", "character": "Ellie Aarons", "id": 54481, "credit_id": "52fe42ebc3a36847f802cec1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Lauren Clinton", "character": "Janice Avery", "id": 54482, "credit_id": "52fe42ebc3a36847f802cec5", "cast_id": 12, "profile_path": "/a57U4CjJlrLx9RCwkkSmkVG5ZQS.jpg", "order": 8}, {"name": "Isabelle Rose Kircher", "character": "Carla", "id": 54483, "credit_id": "52fe42ebc3a36847f802cec9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Patricia Aldersley", "character": "Grandma Burke", "id": 54484, "credit_id": "52fe42ebc3a36847f802cecd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Judy McIntosh", "character": "Judy Burke", "id": 5532, "credit_id": "52fe42ebc3a36847f802ced1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Latham Gaines", "character": "Bill Burke", "id": 54485, "credit_id": "52fe42ebc3a36847f802ced5", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Carly Owen", "character": "Madison", "id": 54486, "credit_id": "52fe42ebc3a36847f802ced9", "cast_id": 17, "profile_path": "/9heRSZRC7CEF19MBZ8hctYgxPo0.jpg", "order": 13}, {"name": "James Gaylyn", "character": "Principal Turner", "id": 54492, "credit_id": "52fe42ebc3a36847f802cf13", "cast_id": 27, "profile_path": "/ynZVceoV6AbAUy9tVICGXERt6KH.jpg", "order": 14}, {"name": "Jen Wolfe", "character": "Mrs. Myers", "id": 54493, "credit_id": "52fe42ebc3a36847f802cf17", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ian Harcourt", "character": "Bus Driver", "id": 54494, "credit_id": "52fe42ebc3a36847f802cf1b", "cast_id": 29, "profile_path": null, "order": 16}], "directors": [{"name": "G\u00e1bor Csup\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe42ebc3a36847f802ce95", "profile_path": "/ozSgKkukd6gfOAfof5O2ZMTO7Ql.jpg", "id": 36697}], "vote_average": 6.6, "runtime": 96}, "1266": {"poster_path": "/nFbZvElg1peBts1SYrfPkxUc3QG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65569869, "overview": "Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.", "video": false, "id": 1266, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Street Kings", "tagline": "Their city. Their rules. No prisoners.", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lKOSWtpAQZh7x8YuyYFDv0Y6LWo.jpg", "poster_path": "/3d05xAbV1DGBgXSilinY2mpfcxG.jpg", "id": 124881, "name": "Street Kings Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}], "imdb_id": "tt0421073", "adult": false, "backdrop_path": "/uShjJWuNxZztCBULKTmHoIcjie6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Regency Enterprises", "id": 508}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Emmett/Furla Films", "id": 10405}], "release_date": "2008-04-10", "popularity": 1.02598600736786, "original_title": "Street Kings", "budget": 20000000, "cast": [{"name": "Keanu Reeves", "character": "Detective Tom Ludlow", "id": 6384, "credit_id": "52fe42ebc3a36847f802cf67", "cast_id": 5, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Captain Jack Wander", "id": 2178, "credit_id": "52fe42ebc3a36847f802cf6b", "cast_id": 6, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Chris Evans", "character": "Detective Paul Diskant", "id": 16828, "credit_id": "52fe42ebc3a36847f802cf6f", "cast_id": 7, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Hugh Laurie", "character": "Captain James Biggs", "id": 41419, "credit_id": "52fe42ebc3a36847f802cf73", "cast_id": 8, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 3}, {"name": "Martha Higareda", "character": "Grace Garcia", "id": 55392, "credit_id": "52fe42ebc3a36847f802cf77", "cast_id": 9, "profile_path": "/nfXVspkCZmeH3jcyJZ7X6sqq4dG.jpg", "order": 4}, {"name": "Cedric the Entertainer", "character": "Scribble", "id": 5726, "credit_id": "52fe42ebc3a36847f802cf7b", "cast_id": 10, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 5}, {"name": "Naomie Harris", "character": "Linda Washington", "id": 2038, "credit_id": "52fe42ebc3a36847f802cf7f", "cast_id": 11, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 6}, {"name": "Common", "character": "Coates", "id": 4238, "credit_id": "52fe42ebc3a36847f802cf83", "cast_id": 12, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 7}, {"name": "Amaury Nolasco", "character": "Detective Cosmo Santos", "id": 17341, "credit_id": "52fe42ebc3a36847f802cf87", "cast_id": 13, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 8}, {"name": "Angela Sun", "character": "Julie Fukashima", "id": 55393, "credit_id": "52fe42ebc3a36847f802cf8b", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Cle Shaheed Sloan", "character": "Fremont", "id": 55394, "credit_id": "52fe42ebc3a36847f802cf8f", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jayceon Terrell Taylor", "character": "Grill", "id": 55395, "credit_id": "52fe42ecc3a36847f802cf93", "cast_id": 16, "profile_path": "/rTigqGDu9vbM1FRVgbV1pqh8PwF.jpg", "order": 11}, {"name": "Michael Monks", "character": "Michael Monks", "id": 53249, "credit_id": "52fe42ecc3a36847f802cf97", "cast_id": 17, "profile_path": "/oa6n4XlzpDmJeStA5a4xBY73rsD.jpg", "order": 12}, {"name": "Jay Mohr", "character": "Sgt. Mike Clady", "id": 12217, "credit_id": "54d6518d925141716000278c", "cast_id": 32, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 13}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe42ebc3a36847f802cf51", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 6.2, "runtime": 109}, "1267": {"poster_path": "/oe7w9SxGmpSW1dlz5QaVVKWBEVz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 169332978, "overview": "In this animated adventure, brilliant preteen inventor Lewis creates a memory scanner to retrieve his earliest recollections and find out why his mother gave him up for adoption. But when the villainous Bowler Hat Guy steals the machine, Lewis is ready to give up on his quest until the mysterious Wilbur Robinson shows up on the scene, whisking Lewis to the future to find the scanner and his mom.", "video": false, "id": 1267, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Meet the Robinsons", "tagline": "Think your family's weird?", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396555", "adult": false, "backdrop_path": "/jxWA2lDLidicmmDymnxlz53zAb9.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2007-03-28", "popularity": 1.39921546627451, "original_title": "Meet the Robinsons", "budget": 150000000, "cast": [{"name": "Tom Selleck", "character": "Cornelius Robinson (voice)", "id": 15112, "credit_id": "52fe42ecc3a36847f802d009", "cast_id": 4, "profile_path": "/au3wlNaGUSLZD46DJFGRuJ0CBVe.jpg", "order": 0}, {"name": "Laurie Metcalf", "character": "Lucille Krunklehorn (voice)", "id": 12133, "credit_id": "52fe42ecc3a36847f802d00d", "cast_id": 5, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 1}, {"name": "Angela Bassett", "character": "Mildred (voice)", "id": 9780, "credit_id": "52fe42ecc3a36847f802d011", "cast_id": 6, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 2}, {"name": "Nicole Sullivan", "character": "Franny (voice)", "id": 16845, "credit_id": "52fe42ecc3a36847f802d015", "cast_id": 7, "profile_path": "/yJe73CBLTXrqge9oIw7k4p2qb61.jpg", "order": 3}, {"name": "Harland Williams", "character": "Carl (voice)", "id": 16846, "credit_id": "52fe42ecc3a36847f802d019", "cast_id": 8, "profile_path": "/ncbsGnC41SsM7VpCOGBJGQ44dwF.jpg", "order": 4}, {"name": "Daniel Hansen", "character": "Lewis (voice)", "id": 155988, "credit_id": "52fe42ecc3a36847f802d01d", "cast_id": 9, "profile_path": "/5z0VSnh46qc7SjHggmq38UGNkA8.jpg", "order": 5}, {"name": "Jordan Fry", "character": "Lewis (voice)", "id": 1290, "credit_id": "52fe42ecc3a36847f802d021", "cast_id": 10, "profile_path": "/9mr4LKxtlSFLFTgQ0eFlD6yHtdI.jpg", "order": 6}, {"name": "Matthew Josten", "character": "Michael 'Goob' Yagoobian (voice)", "id": 61428, "credit_id": "52fe42ecc3a36847f802d025", "cast_id": 11, "profile_path": "/9o38BI6eKx5LGqR3jzqZj2i1sM8.jpg", "order": 7}, {"name": "John H. H. Ford", "character": "Mr. Harrington (voice)", "id": 1077827, "credit_id": "52fe42ecc3a36847f802d029", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Dara McGarry", "character": "Mrs. Harrington / Receptionist (voice)", "id": 1077828, "credit_id": "52fe42ecc3a36847f802d02d", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Tom Kenny", "character": "Mr. Willerstein (voice)", "id": 78798, "credit_id": "52fe42ecc3a36847f802d031", "cast_id": 14, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 10}, {"name": "Don Hall", "character": "Coach / Gaston (voice)", "id": 227439, "credit_id": "52fe42ecc3a36847f802d035", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Paul Butcher", "character": "Stanley (voice)", "id": 33706, "credit_id": "52fe42ecc3a36847f802d039", "cast_id": 16, "profile_path": "/qewV82iTmOX8bSiRzaqDjrJNS3b.jpg", "order": 12}, {"name": "Tracey Miller-Zarneke", "character": "Lizzy (voice)", "id": 963233, "credit_id": "52fe42ecc3a36847f802d03d", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Wesley Singerman", "character": "Wilbur (voice)", "id": 124665, "credit_id": "52fe42ecc3a36847f802d041", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Jessie Flower", "character": "Young Franny (voice)", "id": 61304, "credit_id": "52fe42ecc3a36847f802d045", "cast_id": 19, "profile_path": "/wjzL0uaBcLSYf9UxIxas6S4N3iU.jpg", "order": 15}, {"name": "Stephen J. Anderson", "character": "Bowler Hat Guy / Grandpa Bud / Tallulah (voice)", "id": 16842, "credit_id": "52fe42ecc3a36847f802d049", "cast_id": 20, "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "order": 16}, {"name": "Ethan Sandler", "character": "Doris / CEO / Spike / Dmitri / Laszlo / Fritz / Petunia (voice)", "id": 166654, "credit_id": "52fe42ecc3a36847f802d04d", "cast_id": 21, "profile_path": "/biCZAwndeR6QiBQ4etNeeI0XUVM.jpg", "order": 17}, {"name": "Nathan Greno", "character": "Lefty (voice)", "id": 121830, "credit_id": "52fe42ecc3a36847f802d051", "cast_id": 22, "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "order": 18}, {"name": "Kelly Hoover", "character": "Aunt Billie (voice)", "id": 1077829, "credit_id": "52fe42ecc3a36847f802d055", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Adam West", "character": "Uncle Art (voice)", "id": 26847, "credit_id": "52fe42ecc3a36847f802d059", "cast_id": 24, "profile_path": "/8pvRGXFF7lsIZrDS2yaV2dZaG72.jpg", "order": 20}, {"name": "Aurian Redson", "character": "Frankie (voice)", "id": 963235, "credit_id": "52fe42ecc3a36847f802d05d", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Joseph Mateo", "character": "T-Rex (voice)", "id": 1077830, "credit_id": "52fe42ecc3a36847f802d061", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Joe Whyte", "character": "Reporter (voice)", "id": 61425, "credit_id": "52fe42ecc3a36847f802d065", "cast_id": 27, "profile_path": "/nBWyiV2dbhMAebwXagfNWej5on4.jpg", "order": 23}], "directors": [{"name": "Stephen J. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802cff9", "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "id": 16842}], "vote_average": 6.6, "runtime": 95}, "1268": {"poster_path": "/5G3gOZemcwXf2nbUFB4VCc5gl2A.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 168120409, "overview": "Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two come back together. On the way he discovers France, bicycling, and true love, among other things", "video": false, "id": 1268, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Mr. Bean's Holiday", "tagline": "Disaster has a passport.", "vote_count": 151, "homepage": "http://movies.universal-pictures-international-germany.de/mrbeanmachtferien/", "belongs_to_collection": {"backdrop_path": "/aIXcqHz5VKRLXHPsNo0dFoK7YP5.jpg", "poster_path": "/61Jcc1Gwc2KE7sIJ1HPqqdt67ji.jpg", "id": 103372, "name": "Mr. Bean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453451", "adult": false, "backdrop_path": "/m4HoSKqgtjbwXkN4VvfueZCV9iN.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Tiger Aspect Productions", "id": 686}], "release_date": "2007-03-22", "popularity": 0.841836594665035, "original_title": "Mr. Bean's Holiday", "budget": 25000000, "cast": [{"name": "Rowan Atkinson", "character": "Mr. Bean", "id": 10730, "credit_id": "52fe42ecc3a36847f802d129", "cast_id": 22, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "Max Baldry", "character": "Stepan", "id": 16373, "credit_id": "52fe42ecc3a36847f802d131", "cast_id": 24, "profile_path": "/k8V3Sy7KgTtYWE0lxK1lhkE5wSX.jpg", "order": 1}, {"name": "Emma de Caunes", "character": "Sabine", "id": 4286, "credit_id": "52fe42ecc3a36847f802d157", "cast_id": 32, "profile_path": "/xKHtjT3A8Y5tpmxDs7PddlMP6M1.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Carson Clay", "id": 5293, "credit_id": "52fe42ecc3a36847f802d12d", "cast_id": 23, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Karel Roden", "character": "Emil", "id": 10841, "credit_id": "52fe42ecc3a36847f802d153", "cast_id": 31, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 4}, {"name": "Steve Pemberton", "character": "Vicar", "id": 28485, "credit_id": "5340b9bdc3a3681517000b90", "cast_id": 33, "profile_path": "/jToKs3u7DSCA0eZrKP0rcrjS8dR.jpg", "order": 5}, {"name": "Jean Rochefort", "character": "Ma\u00eetre d'h\u00f4tel", "id": 24421, "credit_id": "5340b9d6c3a3681527000c0d", "cast_id": 34, "profile_path": "/egQw0mikF0oVfZo3kqUXbr622RC.jpg", "order": 6}], "directors": [{"name": "Steve Bendelack", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d0ad", "profile_path": null, "id": 16356}], "vote_average": 6.2, "runtime": 90}, "9461": {"poster_path": "/6C006cxfwjWYkBW4fM3xCMyr7Yg.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000000, "overview": "A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.", "video": false, "id": 9461, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Enter the Dragon", "tagline": "Their deadly mission: to crack the forbidden island of Han!", "vote_count": 165, "homepage": "", "belongs_to_collection": {"backdrop_path": "/92A4HRYZqwHt38GiWvjA6WCTF50.jpg", "poster_path": "/zbnN1J0YMmSl619F60hGH59HT2v.jpg", "id": 336347, "name": "Bruce Lee Ultimate Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070034", "adult": false, "backdrop_path": "/wNm3hNJuOk117wEwuESKO8eCEAk.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Concord Productions Inc.", "id": 3526}, {"name": "Golden Harvest Company Ltd.", "id": 6379}, {"name": "Sequoia Productions", "id": 14665}], "release_date": "1973-08-17", "popularity": 0.558096073851182, "original_title": "Enter the Dragon", "budget": 850000, "cast": [{"name": "Bruce Lee", "character": "Lee", "id": 19429, "credit_id": "52fe44fac3a36847f80b56fd", "cast_id": 7, "profile_path": "/9LoptajgaKworu6Wk6jh0mg32M2.jpg", "order": 0}, {"name": "Jim Kelly", "character": "Williams", "id": 82832, "credit_id": "52fe44fac3a36847f80b5701", "cast_id": 8, "profile_path": "/ko3M5sVTr4Al7GZmOeLM1DIga0l.jpg", "order": 1}, {"name": "John Saxon", "character": "Roper", "id": 11163, "credit_id": "52fe44fac3a36847f80b5705", "cast_id": 9, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 2}, {"name": "Ahna Capri", "character": "Tania", "id": 161795, "credit_id": "52fe44fac3a36847f80b570d", "cast_id": 11, "profile_path": "/n2UUiP09CSR9mrF8oHVm8tzqZ4U.jpg", "order": 4}, {"name": "Shih Kien", "character": "Han (as Shih Kien)", "id": 65971, "credit_id": "52fe44fac3a36847f80b5711", "cast_id": 12, "profile_path": "/mziDNcIsxYQCv1FHytSOju7fLYJ.jpg", "order": 5}, {"name": "Robert Wall", "character": "Oharra (as Bob Wall)", "id": 131170, "credit_id": "52fe44fac3a36847f80b5715", "cast_id": 13, "profile_path": "/lsffFZ7zG2PkLMAOSv1PyYrYr0v.jpg", "order": 5}, {"name": "Angela Mao", "character": "Su Lin (Guest star) (as Angela Mao Ying)", "id": 115916, "credit_id": "52fe44fac3a36847f80b5719", "cast_id": 14, "profile_path": "/A0eFlPeene2RuwcL0kJV7uRHylp.jpg", "order": 6}, {"name": "Betty Chung", "character": "Mei Ling", "id": 230538, "credit_id": "52fe44fac3a36847f80b571d", "cast_id": 15, "profile_path": "/kTRmVsT5I02ZHTCCQU1mDFltRDz.jpg", "order": 7}, {"name": "Bolo Yeung", "character": "Bolo (as Yang Sze)", "id": 58123, "credit_id": "52fe44fac3a36847f80b5709", "cast_id": 10, "profile_path": "/kChDa118ic0VcUo9kPMX7KsLzxG.jpg", "order": 8}, {"name": "Geoffrey Weeks", "character": "Braithwaite", "id": 544964, "credit_id": "52fe44fac3a36847f80b5721", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Roy Chiao", "character": "Shaolin Abbott (Guest star)", "id": 695, "credit_id": "52fe44fac3a36847f80b5725", "cast_id": 17, "profile_path": "/6gBxdImc8eGHeDDEJGFiGrIwx6O.jpg", "order": 10}, {"name": "Sammo Hung", "character": "Shaolin Fighter", "id": 62410, "credit_id": "52fe44fac3a36847f80b572f", "cast_id": 19, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 11}, {"name": "Peter Chan Lung", "character": "Party guest", "id": 1173757, "credit_id": "5398484d0e0a266dc500c764", "cast_id": 26, "profile_path": "/w7SgLmFYgyQAJrAve16gqM4Wo1p.jpg", "order": 12}], "directors": [{"name": "Robert Clouse", "department": "Directing", "job": "Director", "credit_id": "52fe44fac3a36847f80b56e7", "profile_path": "/y4Wd9h5WeOGEEklhCcDYnEQOcKx.jpg", "id": 57727}], "vote_average": 7.0, "runtime": 99}, "9462": {"poster_path": "/bhPfkyXgWXNfYRzKFoFZyWeVuef.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 85000000, "overview": "Tang Lung arrives in Rome to help his cousins in the restaurant business. They are being pressured to sell their property to the syndicate, who will stop at nothing to get what they want. When Tang arrives he poses a new threat to the syndicate, and they are unable to defeat him. The syndicate boss hires the best Japanese and European martial artists to fight Tang, but he easily finishes them off.", "video": false, "id": 9462, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Way of the Dragon", "tagline": "The Colosseum . . the battleground of Bruce Lee and Chuck Norris.", "vote_count": 66, "homepage": "", "belongs_to_collection": {"backdrop_path": "/92A4HRYZqwHt38GiWvjA6WCTF50.jpg", "poster_path": "/zbnN1J0YMmSl619F60hGH59HT2v.jpg", "id": 336347, "name": "Bruce Lee Ultimate Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0068935", "adult": false, "backdrop_path": "/qCLaNDvgnpj3N1VkRacr3bjK9ZN.jpg", "production_companies": [{"name": "Golden Harvest Company", "id": 2521}, {"name": "Concord Productions Inc.", "id": 3526}], "release_date": "1972-12-29", "popularity": 0.657366604395797, "original_title": "Meng long guo jiang", "budget": 130000, "cast": [{"name": "Bruce Lee", "character": "Tang Lung (a.k.a. Dragon)", "id": 19429, "credit_id": "52fe44fac3a36847f80b578f", "cast_id": 2, "profile_path": "/9LoptajgaKworu6Wk6jh0mg32M2.jpg", "order": 0}, {"name": "Nora Miao", "character": "Chen Ching Hua", "id": 57723, "credit_id": "52fe44fac3a36847f80b5793", "cast_id": 3, "profile_path": "/yeTFQEgmknTLCtadovJpqRtp5Br.jpg", "order": 1}, {"name": "Chuck Norris", "character": "Colt", "id": 51576, "credit_id": "52fe44fac3a36847f80b5797", "cast_id": 4, "profile_path": "/v37EfVIoKV4ooy1KE5z8BxsT6wU.jpg", "order": 2}, {"name": "Ping-Ao Wei", "character": "Ho (as Paul Wei Ping-Ao)", "id": 143190, "credit_id": "52fe44fac3a36847f80b57b3", "cast_id": 10, "profile_path": "/7IRPwj6spCOWC8FTmliJ08WQDsE.jpg", "order": 3}, {"name": "Chung-Hsin Huang", "character": "'Uncle' Wang (as Wang Chung Hsin)", "id": 143191, "credit_id": "52fe44fac3a36847f80b57b7", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Robert Wall", "character": "Fred (Bob Fred)", "id": 131170, "credit_id": "52fe44fac3a36847f80b57bb", "cast_id": 12, "profile_path": "/lsffFZ7zG2PkLMAOSv1PyYrYr0v.jpg", "order": 5}, {"name": "Hwang In-Shik", "character": "Japanese Fighter", "id": 554622, "credit_id": "52fe44fac3a36847f80b57bf", "cast_id": 13, "profile_path": "/304F57Mt0Fh2aZu0Ytv4BiqhZJo.jpg", "order": 6}, {"name": "Tony Liu", "character": "Tony", "id": 237257, "credit_id": "52fe44fac3a36847f80b57c3", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Unicorn Chan", "character": "Jimmy", "id": 122530, "credit_id": "52fe44fac3a36847f80b57c7", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Malisa Longo", "character": "Italian Beauty", "id": 99536, "credit_id": "52fe44fac3a36847f80b57cb", "cast_id": 16, "profile_path": "/gPPa5pFNbC9Ty2BsA0BqYN66JI7.jpg", "order": 9}, {"name": "Fu Ching Chen", "character": "Waiter (as Tommy Chen)", "id": 554623, "credit_id": "52fe44fac3a36847f80b57cf", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Di Chin", "character": "Ah Quen", "id": 554624, "credit_id": "52fe44fac3a36847f80b57d3", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Wu Ngan", "character": "Waiter", "id": 554625, "credit_id": "52fe44fac3a36847f80b57d7", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Robert Chen", "character": "Robert", "id": 554626, "credit_id": "52fe44fac3a36847f80b57db", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Jon T. Benn", "character": "Boss", "id": 52906, "credit_id": "52fe44fac3a36847f80b57df", "cast_id": 21, "profile_path": "/uiJtuNo89wDbQlJgDuRRxXyd1uR.jpg", "order": 14}], "directors": [{"name": "Bruce Lee", "department": "Directing", "job": "Director", "credit_id": "52fe44fac3a36847f80b578b", "profile_path": "/9LoptajgaKworu6Wk6jh0mg32M2.jpg", "id": 19429}], "vote_average": 7.0, "runtime": 100}, "1271": {"poster_path": "/bYR8O1H1ZlME7Dm9ysfTYZnRDpw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 422610419, "overview": "Based on Frank Miller's graphic novel, \"300\" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.", "video": false, "id": 1271, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 10752, "name": "War"}], "title": "300", "tagline": "Spartans, prepare for glory!", "vote_count": 2384, "homepage": "http://300themovie.warnerbros.com", "belongs_to_collection": {"backdrop_path": "/ldKTZVlq8kXk34RwPSZaX2FXC24.jpg", "poster_path": "/nKQqh6kJvPdpOJD24enD3Bm1Hy5.jpg", "id": 125570, "name": "300 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416449", "adult": false, "backdrop_path": "/oHOTQkTYgDuoCYMaBEzuB9DqguX.jpg", "production_companies": [{"name": "Virtual Studios", "id": 449}, {"name": "Legendary Pictures", "id": 923}, {"name": "Hollywood Gang Productions", "id": 2994}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Warner Bros.", "id": 6194}, {"name": "Nimar Studios", "id": 7636}], "release_date": "2006-12-09", "popularity": 1.9125791663571, "original_title": "300", "budget": 65000000, "cast": [{"name": "Gerard Butler", "character": "King Leonidas", "id": 17276, "credit_id": "52fe42ecc3a36847f802d24f", "cast_id": 2, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Lena Headey", "character": "Queen Gorgo", "id": 17286, "credit_id": "52fe42ecc3a36847f802d271", "cast_id": 8, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 1}, {"name": "Dominic West", "character": "Theron", "id": 17287, "credit_id": "52fe42ecc3a36847f802d279", "cast_id": 10, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 2}, {"name": "David Wenham", "character": "Dilios", "id": 1371, "credit_id": "52fe42ecc3a36847f802d275", "cast_id": 9, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 3}, {"name": "Vincent Regan", "character": "Captain", "id": 9831, "credit_id": "52fe42ecc3a36847f802d281", "cast_id": 12, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 4}, {"name": "Michael Fassbender", "character": "Stelios", "id": 17288, "credit_id": "52fe42ecc3a36847f802d27d", "cast_id": 11, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 5}, {"name": "Tom Wisdom", "character": "Astinos", "id": 17292, "credit_id": "52fe42ecc3a36847f802d291", "cast_id": 16, "profile_path": "/3G9RdJHEfTcuBk5ArYSMOrnYYG9.jpg", "order": 6}, {"name": "Andrew Tiernan", "character": "Ephialtes", "id": 17290, "credit_id": "52fe42ecc3a36847f802d289", "cast_id": 14, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 7}, {"name": "Andrew Pleavin", "character": "Daxos", "id": 17291, "credit_id": "52fe42ecc3a36847f802d28d", "cast_id": 15, "profile_path": "/tiMLyqTDBx0TgfQKlLHObr9eGyG.jpg", "order": 8}, {"name": "Rodrigo Santoro", "character": "Xerxes", "id": 17289, "credit_id": "52fe42ecc3a36847f802d285", "cast_id": 13, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 9}, {"name": "Giovani Cimmino", "character": "Pleistarchos", "id": 17293, "credit_id": "52fe42ecc3a36847f802d295", "cast_id": 17, "profile_path": "/o6VeIXtqyBphZfI6ws2lq0N4Gw0.jpg", "order": 10}, {"name": "Tyler Neitzel", "character": "Leonidas at 15 yrs", "id": 17294, "credit_id": "52fe42ecc3a36847f802d299", "cast_id": 18, "profile_path": "/u4GmeknrwU9k2p3OWcf7aOKpTMm.jpg", "order": 11}, {"name": "Greg Kramer", "character": "Ephor #1", "id": 306574, "credit_id": "52fe42ecc3a36847f802d2c7", "cast_id": 26, "profile_path": "/oyqzMZ5cpsAEOGihB9aj3GXhJrj.jpg", "order": 12}, {"name": "Stephen McHattie", "character": "Loyalist", "id": 230, "credit_id": "52fe42ecc3a36847f802d2cb", "cast_id": 27, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 13}, {"name": "Alex Ivanovici", "character": "Ephor #2", "id": 96594, "credit_id": "52fe42ecc3a36847f802d2cf", "cast_id": 28, "profile_path": "/hCJlQXLMhT9gd6dkmOivS8IAOpw.jpg", "order": 14}, {"name": "Kelly Craig", "character": "Oracle Girl", "id": 1089919, "credit_id": "52fe42ecc3a36847f802d2d3", "cast_id": 29, "profile_path": "/hBcE3mwy1RNKXFc5ryXK1uNm44O.jpg", "order": 15}, {"name": "Eli Snyder", "character": "Leonidas at 7 / 8 yrs", "id": 963118, "credit_id": "52fe42ecc3a36847f802d2d7", "cast_id": 30, "profile_path": "/vM41JkLOM4i6UFy7XmaMwQxMfsT.jpg", "order": 16}, {"name": "Tim Connolly", "character": "Leonidas' Father", "id": 1089920, "credit_id": "52fe42ecc3a36847f802d2db", "cast_id": 31, "profile_path": "/vbOiWLjS6fpVkgx8b7Owsw8v8ml.jpg", "order": 17}, {"name": "Marie-Julie Rivest", "character": "Leonidas' Mother", "id": 181248, "credit_id": "52fe42ecc3a36847f802d2df", "cast_id": 32, "profile_path": "/aEQwHaDKjqbWYdySYSSoZ2CjmjL.jpg", "order": 18}, {"name": "Sebastian St. Germain", "character": "Fighting Boy (12 yrs old)", "id": 1089921, "credit_id": "52fe42ecc3a36847f802d2e3", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Peter Mensah", "character": "Messenger", "id": 68278, "credit_id": "52fe42ecc3a36847f802d2e7", "cast_id": 34, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 20}, {"name": "Arthur Holden", "character": "Partisan", "id": 115596, "credit_id": "52fe42ecc3a36847f802d2eb", "cast_id": 35, "profile_path": "/y0aCeMJKAzVJO3pydEiVCV2Ca4k.jpg", "order": 21}, {"name": "Michael Sinelnikoff", "character": "Elder councilman", "id": 29463, "credit_id": "52fe42ecc3a36847f802d2ef", "cast_id": 36, "profile_path": "/21gdKsg9LAnEYJLhvLdphYzADdm.jpg", "order": 22}, {"name": "John Dunn-Hill", "character": "Councilman", "id": 218899, "credit_id": "52fe42ecc3a36847f802d2f3", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Dennis St John", "character": "Spartan Baby Inspector", "id": 1089927, "credit_id": "52fe42ecc3a36847f802d2f7", "cast_id": 38, "profile_path": "/akdpQoRLy4cv0cDdnjpWrq5lvhb.jpg", "order": 24}, {"name": "Neil Napier", "character": "Spartan with Stick", "id": 105496, "credit_id": "52fe42ecc3a36847f802d2fb", "cast_id": 39, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 25}, {"name": "Dylan Smith", "character": "Sentry #1", "id": 47934, "credit_id": "52fe42ecc3a36847f802d2ff", "cast_id": 40, "profile_path": "/zTCKPmDxvbTLBaLwD7dw6tV7kPA.jpg", "order": 26}, {"name": "Maurizio Terrazzano", "character": "Sentry #2", "id": 125686, "credit_id": "52fe42ecc3a36847f802d303", "cast_id": 41, "profile_path": "/e3pnau5FZuLrDw5KSoBBCZzRSv9.jpg", "order": 27}, {"name": "Robert Paradis", "character": "Spartan General", "id": 1089928, "credit_id": "52fe42ecc3a36847f802d307", "cast_id": 42, "profile_path": null, "order": 28}, {"name": "Kwasi Songui", "character": "Persian", "id": 207881, "credit_id": "52fe42ecc3a36847f802d30b", "cast_id": 43, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 29}, {"name": "Alexandra Beaton", "character": "Burned Village Child", "id": 1089929, "credit_id": "52fe42ecc3a36847f802d30f", "cast_id": 44, "profile_path": "/4ieRK2izuJXdZXLktGKNIFuECOm.jpg", "order": 30}, {"name": "Fr\u00e9d\u00e9ric Smith", "character": "Statesman", "id": 1089930, "credit_id": "52fe42ecc3a36847f802d313", "cast_id": 45, "profile_path": null, "order": 31}, {"name": "Loucas Minchillo", "character": "Spartan Baby A", "id": 1330745, "credit_id": "539d2c290e0a261335002e78", "cast_id": 71, "profile_path": null, "order": 32}, {"name": "Nicholas Minchillo", "character": "Spartan Baby B", "id": 1330746, "credit_id": "539d2c780e0a261332002f08", "cast_id": 72, "profile_path": null, "order": 33}, {"name": "Tom Rack", "character": "Ephor #3", "id": 1330747, "credit_id": "539d2ce3c3a3683b50002400", "cast_id": 73, "profile_path": null, "order": 34}, {"name": "Tom Rack", "character": "Ephor #4", "id": 1233013, "credit_id": "539d2d40c3a3683b41002501", "cast_id": 74, "profile_path": null, "order": 35}, {"name": "David Francis", "character": "Ephor #5", "id": 119708, "credit_id": "539d2e640e0a26132f002fef", "cast_id": 75, "profile_path": null, "order": 36}, {"name": "James Bradford", "character": "Free Greek-Potter", "id": 29468, "credit_id": "539d2f22c3a3683b500024c8", "cast_id": 76, "profile_path": null, "order": 37}, {"name": "Andrew Shaver", "character": "Free Greek-Sculptor", "id": 90467, "credit_id": "539d2f9dc3a3683b370025aa", "cast_id": 77, "profile_path": null, "order": 38}, {"name": "Kent McQuaid", "character": "Free Greek-Blacksmith", "id": 131338, "credit_id": "539d31b7c3a3683b23002750", "cast_id": 78, "profile_path": null, "order": 39}, {"name": "Marcel Jeannin", "character": "Free Greek-Baker", "id": 143395, "credit_id": "539d31edc3a3683b2a0026de", "cast_id": 79, "profile_path": "/3c4e3hc0G70PN0ZiqsyxrXMGrV1.jpg", "order": 40}, {"name": "Jere Gillis", "character": "Spartan General #2", "id": 1330749, "credit_id": "539d3212c3a3683b5900264b", "cast_id": 80, "profile_path": null, "order": 41}, {"name": "Jeremy Thibodeau", "character": "Spartan Boy", "id": 1330750, "credit_id": "539d322bc3a3683b500025ce", "cast_id": 81, "profile_path": null, "order": 42}, {"name": "Tyrone Benskin", "character": "Persian Emissary", "id": 181247, "credit_id": "539d3246c3a3683b59002651", "cast_id": 82, "profile_path": "/uk337YxF0aJuwpcfYkf4Ez8rHTZ.jpg", "order": 43}, {"name": "Robert Maillet", "character": "Uber Immortal (Giant)", "id": 112692, "credit_id": "539d3290c3a3683b59002655", "cast_id": 83, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 44}, {"name": "Patrick Sabongui", "character": "Persian General", "id": 102742, "credit_id": "539d32bdc3a3683b59002658", "cast_id": 84, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 45}, {"name": "Leon Laderach", "character": "Executioner", "id": 1330751, "credit_id": "539d33d2c3a3683b370026bf", "cast_id": 85, "profile_path": null, "order": 46}, {"name": "Dave Lapommeray", "character": "Persian General Slaughtered", "id": 1330752, "credit_id": "539d340dc3a3683b410026f5", "cast_id": 86, "profile_path": null, "order": 47}, {"name": "Vervi Mauricio", "character": "Armless Concubine", "id": 1330753, "credit_id": "539d342ec3a3683b410026fc", "cast_id": 87, "profile_path": null, "order": 48}, {"name": "Charles Papasoff", "character": "Blacksmith", "id": 1330754, "credit_id": "539d34d90e0a261332003220", "cast_id": 88, "profile_path": null, "order": 49}, {"name": "Isabelle Champeau", "character": "Mother at Market", "id": 1330755, "credit_id": "539d35020e0a26133200322a", "cast_id": 89, "profile_path": null, "order": 50}, {"name": "Veronique-Natale Szalankiewicz", "character": "Daughter at Market (3 / 5 years old)", "id": 1330756, "credit_id": "539d36280e0a261339003179", "cast_id": 90, "profile_path": null, "order": 51}, {"name": "Ma\u00e9va Nadon", "character": "Girl at Market", "id": 1177458, "credit_id": "539d364e0e0a26132c00315a", "cast_id": 91, "profile_path": null, "order": 52}, {"name": "David Thibodeau", "character": "Boy #1 at Market", "id": 1330757, "credit_id": "539d36650e0a261328003105", "cast_id": 92, "profile_path": null, "order": 53}, {"name": "David Schaap", "character": "Potter", "id": 1177316, "credit_id": "539d36830e0a2613350031d3", "cast_id": 93, "profile_path": "/jrG56M9qkTBnT9p4zS5td9HjRBC.jpg", "order": 54}, {"name": "Jean Michel Par\u00e9", "character": "Other Council Guard", "id": 70786, "credit_id": "539d369f0e0a261332003266", "cast_id": 94, "profile_path": null, "order": 55}, {"name": "Stewart Myiow", "character": "Persian General", "id": 1330758, "credit_id": "539d36b60e0a261325003295", "cast_id": 95, "profile_path": null, "order": 56}, {"name": "Andreanne Ross", "character": "Concubine #1", "id": 1330759, "credit_id": "539d36f00e0a2613250032b4", "cast_id": 96, "profile_path": null, "order": 57}, {"name": "Sara Giacalone", "character": "Concubine #2", "id": 1330760, "credit_id": "539d3763c3a3683b59002824", "cast_id": 97, "profile_path": null, "order": 58}, {"name": "Ariadne Bourbonni\u00e8re", "character": "Kissing Concubine #1", "id": 1330762, "credit_id": "539d377ec3a3683b23002978", "cast_id": 98, "profile_path": null, "order": 59}, {"name": "Isabelle Fournel", "character": "Kissing Concubine #2", "id": 1330764, "credit_id": "539d379bc3a3683b500027f2", "cast_id": 99, "profile_path": null, "order": 60}, {"name": "Sandrine Merette-Attiow", "character": "Contortionist", "id": 1330766, "credit_id": "539d37c9c3a3683b480027e1", "cast_id": 100, "profile_path": null, "order": 61}, {"name": "Elisabeth Etienne", "character": "Dancer", "id": 1330767, "credit_id": "539d37e3c3a3683b4100291f", "cast_id": 101, "profile_path": null, "order": 62}, {"name": "Danielle Hubbard", "character": "Dancer", "id": 190088, "credit_id": "539d37f8c3a3683b310028a0", "cast_id": 102, "profile_path": null, "order": 63}, {"name": "Ruan Vibegaard", "character": "Dancer", "id": 1330768, "credit_id": "539d380bc3a3683b3700290f", "cast_id": 103, "profile_path": null, "order": 64}, {"name": "Genevieve Guilbault", "character": "Slave Girl", "id": 1330769, "credit_id": "539d3823c3a3683b230029cf", "cast_id": 104, "profile_path": null, "order": 65}, {"name": "Bonnie Mak", "character": "Slave Girl", "id": 1330770, "credit_id": "539d3837c3a3683b590028ae", "cast_id": 105, "profile_path": null, "order": 66}, {"name": "Am\u00e9lie Sorel", "character": "Slave Girl", "id": 84586, "credit_id": "539d38e2c3a3683b2a00299a", "cast_id": 106, "profile_path": null, "order": 67}, {"name": "Caroline Aspirot", "character": "Slave Girl", "id": 1330771, "credit_id": "539d390cc3a3683b5000288f", "cast_id": 107, "profile_path": null, "order": 68}, {"name": "Gina Gagnon", "character": "Slave Girl", "id": 1330772, "credit_id": "539d3923c3a3683b3700295e", "cast_id": 108, "profile_path": null, "order": 69}, {"name": "Tania Trudell", "character": "Slave Girl", "id": 1330773, "credit_id": "539d3937c3a3683b50002895", "cast_id": 109, "profile_path": null, "order": 70}, {"name": "St\u00e9phanie Aubry", "character": "Slave Girl", "id": 1297965, "credit_id": "539d3958c3a3683b2a0029a0", "cast_id": 110, "profile_path": null, "order": 71}, {"name": "Mercedes Leggett", "character": "Slave Girl", "id": 119250, "credit_id": "539d3971c3a3683b23002a2f", "cast_id": 111, "profile_path": "/6KwhorXj8YXkTlOZAX5vnANFZqT.jpg", "order": 72}, {"name": "Stephania Gambaroff", "character": "Slave Girl", "id": 1330774, "credit_id": "539d3985c3a3683b4100297d", "cast_id": 112, "profile_path": null, "order": 73}, {"name": "Chanelle Lamothe", "character": "Slave Girl", "id": 1330775, "credit_id": "539d3998c3a3683b37002968", "cast_id": 113, "profile_path": null, "order": 74}, {"name": "Sabrina-Jasmine Guilbault", "character": "Slave Girl", "id": 1330776, "credit_id": "539d39aec3a3683b310028f9", "cast_id": 114, "profile_path": null, "order": 75}, {"name": "Manny Cortez Tuazon", "character": "Transsexual (Asian) #1", "id": 1330777, "credit_id": "539d39c7c3a3683b48002858", "cast_id": 115, "profile_path": null, "order": 76}, {"name": "Atif Y. Siddiqi", "character": "Transsexual (Arabian) #3", "id": 1330778, "credit_id": "539d39ddc3a3683b4800285e", "cast_id": 116, "profile_path": null, "order": 77}, {"name": "Camille Rizkallah", "character": "Giant with Arrow", "id": 1330779, "credit_id": "539d39f4c3a3683b41002991", "cast_id": 117, "profile_path": null, "order": 78}, {"name": "Trudi Hanley", "character": "Long Neck Woman", "id": 1330780, "credit_id": "539d3a0fc3a3683b4800286d", "cast_id": 118, "profile_path": null, "order": 79}, {"name": "Neon Cobran", "character": "Litter Bearer / Slave", "id": 1330781, "credit_id": "539d3a22c3a3683b500028b1", "cast_id": 119, "profile_path": null, "order": 80}, {"name": "Gary A. Hecker", "character": "Ubermortal Vocals (voice)", "id": 1077782, "credit_id": "539d3a50c3a3683b3700297e", "cast_id": 120, "profile_path": null, "order": 81}, {"name": "Devin Delorme", "character": "Market boy #2", "id": 1330782, "credit_id": "539d3a65c3a3683b23002a55", "cast_id": 121, "profile_path": null, "order": 82}, {"name": "Deke Richards", "character": "Spartan Soldier (uncredited)", "id": 101218, "credit_id": "539d3a84c3a3683b5900290a", "cast_id": 122, "profile_path": null, "order": 83}, {"name": "Darren Shahlavi", "character": "Persian (uncredited)", "id": 60652, "credit_id": "539d3abac3a3683b31002951", "cast_id": 123, "profile_path": "/qnije3wcudlIbSjRrNr9A57tjO3.jpg", "order": 84}, {"name": "Marc Trottier", "character": "Spartan Warrior (uncredited)", "id": 101253, "credit_id": "539d3afdc3a3683b3100297d", "cast_id": 124, "profile_path": null, "order": 85}, {"name": "Duy Vo Van", "character": "Persian (uncredited)", "id": 1330783, "credit_id": "539d3b15c3a3683b370029f5", "cast_id": 125, "profile_path": null, "order": 86}, {"name": "Agnieshka Wnorowska", "character": "Market woman (uncredited)", "id": 1330784, "credit_id": "539d3b2cc3a3683b23002adb", "cast_id": 126, "profile_path": null, "order": 87}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d24b", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.9, "runtime": 117}, "132344": {"poster_path": "/oxRXxv6ssuhCr2EdXyBk3TDS8nq.jpg", "production_countries": [{"iso_3166_1": "GR", "name": "Greece"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11176469, "overview": "We meet Jesse and Celine nine years on in Greece. Almost two decades have passed since their first meeting on that train bound for Vienna.", "video": false, "id": 132344, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Before Midnight", "tagline": "", "vote_count": 172, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wtNugZq8ZzBYwPIh3VoNUJdkBWG.jpg", "poster_path": "/fYSKN1tV1gdiTMfzRpZpKspGAHp.jpg", "id": 123800, "name": "Before... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2209418", "adult": false, "backdrop_path": "/4H5qpejP9WKsdDTQ0nlNzFLCdzH.jpg", "production_companies": [], "release_date": "2013-06-14", "popularity": 0.886892510068761, "original_title": "Before Midnight", "budget": 3000000, "cast": [{"name": "Ethan Hawke", "character": "Jesse", "id": 569, "credit_id": "52fe4b91c3a368484e18f623", "cast_id": 5, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Julie Delpy", "character": "Celine", "id": 1146, "credit_id": "52fe4b91c3a368484e18f627", "cast_id": 6, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 1}, {"name": "Seamus Davey-Fitzpatrick", "character": "Hank", "id": 12042, "credit_id": "52fe4b91c3a368484e18f68b", "cast_id": 30, "profile_path": "/pPZZxLvU0c0oNIagFZqfBfHLQ8p.jpg", "order": 2}, {"name": "Jennifer Prior", "character": "Ella", "id": 1140264, "credit_id": "52fe4b91c3a368484e18f68f", "cast_id": 31, "profile_path": null, "order": 3}, {"name": "Charlotte Prior", "character": "Nina", "id": 1140265, "credit_id": "52fe4b91c3a368484e18f69f", "cast_id": 35, "profile_path": null, "order": 4}, {"name": "Xenia Kalogeropoulou", "character": "Natalia", "id": 1117999, "credit_id": "52fe4b91c3a368484e18f6a3", "cast_id": 36, "profile_path": null, "order": 5}, {"name": "Walter Lassally", "character": "Patrick", "id": 36967, "credit_id": "52fe4b91c3a368484e18f6a7", "cast_id": 37, "profile_path": null, "order": 6}, {"name": "Ariane Labed", "character": "Anna", "id": 235125, "credit_id": "52fe4b91c3a368484e18f6ab", "cast_id": 38, "profile_path": "/zXa5udQEScybAqG6yNvQ9txFgF4.jpg", "order": 7}, {"name": "Yiannis Papadopoulos", "character": "Achilleas", "id": 1275640, "credit_id": "52fe4b91c3a368484e18f693", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Athina Rachel Tsangari", "character": "Ariadni", "id": 236884, "credit_id": "52fe4b91c3a368484e18f697", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Panos Koronis", "character": "Stefanos", "id": 1275641, "credit_id": "52fe4b91c3a368484e18f69b", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Enrico Focardi", "character": "Child", "id": 1282892, "credit_id": "52fe4b91c3a368484e18f6af", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Manolis Goussias", "character": "Child", "id": 1282893, "credit_id": "52fe4b91c3a368484e18f6b3", "cast_id": 40, "profile_path": null, "order": 12}, {"name": "Anouk Servera", "character": "Child", "id": 1282894, "credit_id": "52fe4b91c3a368484e18f6b7", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Yota Argyropoulou", "character": "Hotel Clerk", "id": 1223384, "credit_id": "52fe4b91c3a368484e18f6bb", "cast_id": 42, "profile_path": null, "order": 14}, {"name": "Serafeim Radis", "character": "Hotel Clerk", "id": 1282895, "credit_id": "52fe4b91c3a368484e18f6bf", "cast_id": 43, "profile_path": null, "order": 15}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4b91c3a368484e18f61f", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.2, "runtime": 108}, "1273": {"poster_path": "/4hGzZ2DAjdu6IjHT7dGfiVatHEu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95608995, "overview": "The continued adventures of the four adolescent mutated turtles gifted in the art of the ninja, as they attempt to stop a mysterious evil that threatens to end the world", "video": false, "id": 1273, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "TMNT", "tagline": "Raising Shell In 2007", "vote_count": 111, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fgdycJqeFA20cBvCraNTC6jTPyd.jpg", "poster_path": "/2RM5r117Fp7RDnl152RishAI8WW.jpg", "id": 117537, "name": "Teenage Mutant Ninja Turtles Animated Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453556", "adult": false, "backdrop_path": "/jDzE7aMeuBXwVhAxb88GUtDyZPf.jpg", "production_companies": [{"name": "Imagi Animation Studios", "id": 3463}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Weinstein Company", "id": 308}, {"name": "Mirage Studios", "id": 30900}], "release_date": "2007-03-22", "popularity": 1.07832722123783, "original_title": "TMNT", "budget": 34000000, "cast": [{"name": "Chris Evans", "character": "Casey (voice)", "id": 16828, "credit_id": "52fe42ecc3a36847f802d401", "cast_id": 8, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "April O'Neil (voice)", "id": 11863, "credit_id": "52fe42ecc3a36847f802d405", "cast_id": 9, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Mako", "character": "Splinter (voice)", "id": 10134, "credit_id": "52fe42ecc3a36847f802d409", "cast_id": 10, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 2}, {"name": "Kevin Smith", "character": "Diner Cook (voice)", "id": 19303, "credit_id": "52fe42ecc3a36847f802d40d", "cast_id": 11, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 3}, {"name": "Patrick Stewart", "character": "Winters (voice)", "id": 2387, "credit_id": "52fe42ecc3a36847f802d411", "cast_id": 12, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 4}, {"name": "Zhang Ziyi", "character": "Karai (voice)", "id": 1339, "credit_id": "52fe42ecc3a36847f802d415", "cast_id": 13, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 5}, {"name": "Laurence Fishburne", "character": "Narrator (voice)", "id": 2975, "credit_id": "52fe42ecc3a36847f802d3fd", "cast_id": 7, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 6}, {"name": "Mitchell Whitfield", "character": "Donatello / Additional Voices (voice)", "id": 19505, "credit_id": "52fe42ecc3a36847f802d419", "cast_id": 14, "profile_path": "/xvLWnBsTbUmW9KcDkH7pvi5W6v0.jpg", "order": 7}, {"name": "James Arnold Taylor", "character": "Leonardo (voice)", "id": 19506, "credit_id": "52fe42ecc3a36847f802d41d", "cast_id": 15, "profile_path": "/rAtyfY0diWt078qQIg0IX9xxG9F.jpg", "order": 8}, {"name": "Mikey Kelley", "character": "Michelangelo (voice)", "id": 19507, "credit_id": "52fe42ecc3a36847f802d421", "cast_id": 16, "profile_path": "/tEAe1GRjqexSGM5GwakPmNeQrkt.jpg", "order": 9}, {"name": "Nolan North", "character": "Raphael / Nightwatcher (voice)", "id": 19508, "credit_id": "52fe42ecc3a36847f802d425", "cast_id": 17, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 10}, {"name": "John DiMaggio", "character": "Colonel Santino (voice)", "id": 294916, "credit_id": "53f98694c3a368734f002668", "cast_id": 21, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 11}, {"name": "Paula Mattioli", "character": "General Serpiente (voice)", "id": 1356270, "credit_id": "53f986a1c3a36873520026f2", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Kevin Michael Richardson", "character": "General Aguila / Additional Voices (voice)", "id": 24362, "credit_id": "53f986acc3a368734c002551", "cast_id": 23, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 13}, {"name": "Fred Tatasciore", "character": "General Gato / Additional Voices (voice)", "id": 60279, "credit_id": "53f986b8c3a368735b0026cc", "cast_id": 24, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 14}, {"name": "Dee Bradley Baker", "character": "Additional Voices (voice)", "id": 23680, "credit_id": "53f986c6c3a3687355002825", "cast_id": 25, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 15}, {"name": "Jim Cummings", "character": "Additional Voices (voice)", "id": 12077, "credit_id": "53f986d9c3a368735800268c", "cast_id": 26, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 16}, {"name": "Phil LaMarr", "character": "Additional Voices (voice)", "id": 31549, "credit_id": "53f986e6c3a368734c002553", "cast_id": 27, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 17}, {"name": "Tara Strong", "character": "Additional Voices (voice)", "id": 15762, "credit_id": "53f986f1c3a368736100269e", "cast_id": 28, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 18}, {"name": "Billy West", "character": "Additional Voices (voice)", "id": 23679, "credit_id": "53f986fdc3a368735e00268c", "cast_id": 29, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 19}], "directors": [{"name": "Kevin Munroe", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d3db", "profile_path": "/v0C5Zwsl3nOUWHOo9hMyvPKDnLp.jpg", "id": 19499}], "vote_average": 6.0, "runtime": 90}, "109439": {"poster_path": "/vaZhsG1ScyfViEgoFew7obFtFBx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362, "overview": "This time, there's no wedding. No bachelor party. What could go wrong, right? But when the Wolfpack hits the road, all bets are off.", "video": false, "id": 109439, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Hangover Part III", "tagline": "It all ends.", "vote_count": 1304, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uEtsf26a9RsRDy85MOIv1xAj44x.jpg", "poster_path": "/aMmNLuyXvdBih1R5RRHtdtNaS6N.jpg", "id": 86119, "name": "The Hangover Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1951261", "adult": false, "backdrop_path": "/xIrtFqXc62VGcWKHOsQfCq4j3x0.jpg", "production_companies": [{"name": "Green Hat Films", "id": 3527}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2013-05-23", "popularity": 2.24550807754762, "original_title": "The Hangover Part III", "budget": 103000000, "cast": [{"name": "Bradley Cooper", "character": "Phil", "id": 51329, "credit_id": "52fe4ab6c3a36847f81ddb37", "cast_id": 8, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Ed Helms", "character": "Stu", "id": 27105, "credit_id": "52fe4ab6c3a36847f81ddb3f", "cast_id": 10, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Alan", "id": 58225, "credit_id": "52fe4ab6c3a36847f81ddb3b", "cast_id": 9, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Doug", "id": 21180, "credit_id": "52fe4ab6c3a36847f81ddb4b", "cast_id": 14, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Ken Jeong", "character": "Mr. Chow", "id": 83586, "credit_id": "52fe4ab6c3a36847f81ddb43", "cast_id": 12, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 4}, {"name": "John Goodman", "character": "Marshall", "id": 1230, "credit_id": "52fe4ab6c3a36847f81ddb4f", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 5}, {"name": "Melissa McCarthy", "character": "Cassie", "id": 55536, "credit_id": "52fe4ab6c3a36847f81ddb53", "cast_id": 16, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Sid", "id": 4175, "credit_id": "52fe4ab6c3a36847f81ddb57", "cast_id": 17, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "Heather Graham", "character": "Jade", "id": 69122, "credit_id": "52fe4ab6c3a36847f81ddb47", "cast_id": 13, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 8}, {"name": "Mike Epps", "character": "Black Doug", "id": 51944, "credit_id": "52fe4ab6c3a36847f81ddb5b", "cast_id": 18, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 9}, {"name": "Sasha Barrese", "character": "Tracy", "id": 83585, "credit_id": "52fe4ab7c3a36847f81ddbdd", "cast_id": 40, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 10}, {"name": "Jamie Chung", "character": "Lauren", "id": 78324, "credit_id": "52fe4ab7c3a36847f81ddbe1", "cast_id": 41, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 11}, {"name": "Sondra Currie", "character": "Linda", "id": 153621, "credit_id": "52fe4ab7c3a36847f81ddbe5", "cast_id": 42, "profile_path": "/an6mZEO5SMAsOkgEOBg7jSN1jmu.jpg", "order": 12}, {"name": "Gillian Vigman", "character": "Stephanie", "id": 61182, "credit_id": "52fe4ab7c3a36847f81ddbe9", "cast_id": 43, "profile_path": "/2uwR6JalWrZWZq3NhL7CdDlDKhL.jpg", "order": 13}, {"name": "Oliver Cooper", "character": "Pharmacy Assistant", "id": 225694, "credit_id": "52fe4ab7c3a36847f81ddbed", "cast_id": 44, "profile_path": "/1eBIzPMwi7xgOAqGztXByHfqrHc.jpg", "order": 14}, {"name": "Mike Vallely", "character": "Nico", "id": 558036, "credit_id": "52fe4ab7c3a36847f81ddbf1", "cast_id": 45, "profile_path": "/hrty7GRM2pdwrNiMDJaBHk8XRU8.jpg", "order": 15}, {"name": "Grant Holmquist", "character": "Tyler", "id": 1208438, "credit_id": "52fe4ab7c3a36847f81ddbf5", "cast_id": 46, "profile_path": null, "order": 16}, {"name": "Oscar Torre", "character": "Officer Vasquez", "id": 145219, "credit_id": "52fe4ab7c3a36847f81ddbf9", "cast_id": 47, "profile_path": "/jxyF7XSUcvvBOmhtfrRNr5zBo8g.jpg", "order": 17}, {"name": "Billy Choi", "character": "Thai prison guard", "id": 1300910, "credit_id": "5322eba59251411f8900485b", "cast_id": 48, "profile_path": "/hvfV8oe6dXitxfNGdYpChNiRwlC.jpg", "order": 18}, {"name": "Jonny Coyne", "character": "Hector", "id": 1323612, "credit_id": "538062cfc3a3680598004cbe", "cast_id": 49, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 19}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe4ab6c3a36847f81ddb15", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.9, "runtime": 100}, "1278": {"poster_path": "/fG6mH8TPfAxneDPE2cxGi8lbajU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 15121165, "overview": "A young American studying in Paris in 1968 strikes up a friendship with a French brother and sister. Set against the background of the '68 Paris student riots.", "video": false, "id": 1278, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Dreamers", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0309987", "adult": false, "backdrop_path": "/a8xpxCnvqKyshdrDNFGs6oy4r8N.jpg", "production_companies": [{"name": "Peninsula Films", "id": 682}], "release_date": "2003-12-09", "popularity": 1.54669306738979, "original_title": "The Dreamers", "budget": 15000000, "cast": [{"name": "Michael Pitt", "character": "Matthew", "id": 10692, "credit_id": "52fe42edc3a36847f802d561", "cast_id": 1, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 0}, {"name": "Eva Green", "character": "Isabelle", "id": 10912, "credit_id": "52fe42edc3a36847f802d565", "cast_id": 2, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Louis Garrel", "character": "Theo", "id": 16269, "credit_id": "52fe42edc3a36847f802d569", "cast_id": 3, "profile_path": "/dnYwgHHvTD4YnvOkMSPMZWkdiaU.jpg", "order": 2}, {"name": "Anna Chancellor", "character": "Mother", "id": 10731, "credit_id": "52fe42edc3a36847f802d5e5", "cast_id": 24, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 3}, {"name": "Robin Renucci", "character": "Father", "id": 16349, "credit_id": "52fe42edc3a36847f802d5e9", "cast_id": 25, "profile_path": "/jo7bJajvTRhYEeThdlSeovoLTwj.jpg", "order": 4}, {"name": "Jean-Pierre Kalfon", "character": "Himself", "id": 16350, "credit_id": "52fe42edc3a36847f802d5ed", "cast_id": 26, "profile_path": "/70bQNgL8PAhTybJp6QfjsmGwvVR.jpg", "order": 5}, {"name": "Jean-Pierre L\u00e9aud", "character": "Himself", "id": 1653, "credit_id": "52fe42edc3a36847f802d5f1", "cast_id": 27, "profile_path": "/dzkPODapVe4CSubEqI9ytTCqnZ7.jpg", "order": 6}, {"name": "Florian Cadiou", "character": "Patrick", "id": 16351, "credit_id": "52fe42edc3a36847f802d5f5", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Pierre Hancisse", "character": "First Buff", "id": 16352, "credit_id": "52fe42edc3a36847f802d5f9", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Valentin Merlet", "character": "Second Buff", "id": 16353, "credit_id": "52fe42edc3a36847f802d5fd", "cast_id": 30, "profile_path": "/xaFLgExlZTqJkAJdgaw8hON7ny1.jpg", "order": 9}, {"name": "Lola Peploe", "character": "The Usherette", "id": 16354, "credit_id": "52fe42edc3a36847f802d601", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Ingy Fillion", "character": "Theo's Girlfriend", "id": 16355, "credit_id": "52fe42edc3a36847f802d605", "cast_id": 32, "profile_path": null, "order": 11}], "directors": [{"name": "Bernardo Bertolucci", "department": "Directing", "job": "Director", "credit_id": "52fe42edc3a36847f802d56f", "profile_path": "/syIk3h60I9ngaUZV9VRVeV4dKdx.jpg", "id": 4956}], "vote_average": 7.3, "runtime": 115}, "9471": {"poster_path": "/rfJrpT6oj4lLzi4Rqt0qzTfUdtr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 259175788, "overview": "The Angels are charged with finding a pair of missing rings that are encoded with the personal information of members of the Witness Protection Program. As informants are killed, the ladies target a rogue agent who might be responsible.", "video": false, "id": 9471, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Charlie's Angels: Full Throttle", "tagline": "This summer the Angels are back.", "vote_count": 272, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jfKqvbZqU3LcNcwj4N8Q1ZJ7fSv.jpg", "poster_path": "/jBKUntSuSUfxTXI8XWABpdWmWEt.jpg", "id": 86029, "name": "Charlie's Angels Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0305357", "adult": false, "backdrop_path": "/lR4CZaDloppplxvRjQZcTMV79qA.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Flower Films (II)", "id": 19813}, {"name": "Tall Trees Productions", "id": 10239}, {"name": "Wonderland Sound and Vision", "id": 4022}], "release_date": "2003-06-27", "popularity": 1.57600314124458, "original_title": "Charlie's Angels: Full Throttle", "budget": 120000000, "cast": [{"name": "Cameron Diaz", "character": "Natalie Cook", "id": 6941, "credit_id": "52fe44fbc3a36847f80b5bad", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Dylan Sanders", "id": 69597, "credit_id": "52fe44fbc3a36847f80b5bb1", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Lucy Liu", "character": "Alex Munday", "id": 140, "credit_id": "52fe44fbc3a36847f80b5bb5", "cast_id": 3, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 2}, {"name": "Bernie Mac", "character": "Jimmy Bosley", "id": 1897, "credit_id": "52fe44fbc3a36847f80b5bb9", "cast_id": 4, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 3}, {"name": "Robert Patrick", "character": "Ray Carter", "id": 418, "credit_id": "52fe44fbc3a36847f80b5bbd", "cast_id": 5, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 4}, {"name": "Demi Moore", "character": "Madison Lee", "id": 3416, "credit_id": "52fe44fbc3a36847f80b5bc1", "cast_id": 6, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 5}, {"name": "John Cleese", "character": "Mr. Munday", "id": 8930, "credit_id": "52fe44fbc3a36847f80b5bc5", "cast_id": 7, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Matt LeBlanc", "character": "Jason", "id": 14407, "credit_id": "52fe44fbc3a36847f80b5bc9", "cast_id": 8, "profile_path": "/35sPf8IBVl54vdmc9Tyv17otMnk.jpg", "order": 7}, {"name": "Luke Wilson", "character": "Pete", "id": 36422, "credit_id": "52fe44fbc3a36847f80b5bcd", "cast_id": 9, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 8}, {"name": "Shia LaBeouf", "character": "Max", "id": 10959, "credit_id": "52fe44fbc3a36847f80b5bd1", "cast_id": 10, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 9}, {"name": "Bruce Willis", "character": "William Rose Bailey", "id": 62, "credit_id": "52fe44fbc3a36847f80b5c1d", "cast_id": 24, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 10}, {"name": "Ashley Olsen", "character": "Future Ange", "id": 67848, "credit_id": "52fe44fbc3a36847f80b5c21", "cast_id": 25, "profile_path": "/gIZBBtO7IGV1wxgFNCzuo7ZakwO.jpg", "order": 11}, {"name": "Mary-Kate Olsen", "character": "Future Ange", "id": 67849, "credit_id": "52fe44fbc3a36847f80b5c25", "cast_id": 26, "profile_path": "/fxTJRxHrNyZVrWZWQZOTXJnGwDY.jpg", "order": 12}, {"name": "Pink", "character": "Coal Bowl Starter", "id": 77271, "credit_id": "52fe44fbc3a36847f80b5c29", "cast_id": 27, "profile_path": "/A4tOzacgaBltm522XYxLodG3ImX.jpg", "order": 13}, {"name": "Crispin Glover", "character": "Thin Man", "id": 1064, "credit_id": "52fe44fbc3a36847f80b5c2d", "cast_id": 28, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 14}, {"name": "Justin Theroux", "character": "Seamus O'Grady", "id": 15009, "credit_id": "52fe44fbc3a36847f80b5c31", "cast_id": 29, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 15}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe44fbc3a36847f80b5c19", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.4, "runtime": 106}, "9472": {"poster_path": "/sgTJCyuZSJJt9LatGHolpCpqg1m.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167722310, "overview": "When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.", "video": false, "id": 9472, "genres": [{"id": 35, "name": "Comedy"}], "title": "DodgeBall: A True Underdog Story", "tagline": "Grab Life By The Ball", "vote_count": 270, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0364725", "adult": false, "backdrop_path": "/xWqqIw2wXlKfcNS2GnNO1AGfmCw.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2004-06-18", "popularity": 0.955203477072046, "original_title": "DodgeBall: A True Underdog Story", "budget": 20000000, "cast": [{"name": "Vince Vaughn", "character": "Peter La Fleur", "id": 4937, "credit_id": "52fe44fbc3a36847f80b5c69", "cast_id": 1, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 0}, {"name": "Christine Taylor", "character": "Kate Veatch", "id": 15286, "credit_id": "52fe44fbc3a36847f80b5c6d", "cast_id": 2, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 1}, {"name": "Ben Stiller", "character": "White Goodman", "id": 7399, "credit_id": "52fe44fbc3a36847f80b5c71", "cast_id": 3, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 2}, {"name": "Rip Torn", "character": "Patches O'Houlihan", "id": 9626, "credit_id": "52fe44fbc3a36847f80b5c75", "cast_id": 4, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 3}, {"name": "Justin Long", "character": "Justin", "id": 15033, "credit_id": "52fe44fbc3a36847f80b5c79", "cast_id": 5, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Pepper Brooks", "id": 23532, "credit_id": "52fe44fbc3a36847f80b5cb9", "cast_id": 16, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Stephen Root", "character": "Gordon", "id": 17401, "credit_id": "52fe44fbc3a36847f80b5cbd", "cast_id": 17, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}, {"name": "Joel David Moore", "character": "Owen", "id": 59231, "credit_id": "52fe44fcc3a36847f80b5cdd", "cast_id": 26, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 7}, {"name": "Chris Williams", "character": "Dwight", "id": 70238, "credit_id": "52fe44fbc3a36847f80b5cc1", "cast_id": 19, "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "order": 8}, {"name": "Alan Tudyk", "character": "Steve the Pirate", "id": 21088, "credit_id": "52fe44fcc3a36847f80b5cc5", "cast_id": 20, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 9}, {"name": "Missi Pyle", "character": "Fran", "id": 1294, "credit_id": "52fe44fcc3a36847f80b5cc9", "cast_id": 21, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 10}, {"name": "Jamal Duff", "character": "Me'Shell Jones", "id": 74931, "credit_id": "52fe44fcc3a36847f80b5ccd", "cast_id": 22, "profile_path": "/nH7XAMTsoomzS3hrciKWTVOzOlR.jpg", "order": 11}, {"name": "Gary Cole", "character": "Cotton McKnight", "id": 21163, "credit_id": "52fe44fcc3a36847f80b5cd1", "cast_id": 23, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 12}, {"name": "Hank Azaria", "character": "Young Patches O'Houlihan", "id": 5587, "credit_id": "52fe44fcc3a36847f80b5cd5", "cast_id": 24, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 13}, {"name": "Al Kaplon", "character": "Tournament Referee", "id": 987739, "credit_id": "52fe44fcc3a36847f80b5cd9", "cast_id": 25, "profile_path": null, "order": 14}], "directors": [{"name": "Rawson Marshall Thurber", "department": "Directing", "job": "Director", "credit_id": "52fe44fbc3a36847f80b5c7f", "profile_path": "/uucsuvXxMFdeoKr4mtL2UV3UUvP.jpg", "id": 57633}], "vote_average": 6.2, "runtime": 92}, "9473": {"poster_path": "/5sW45h3RZOhC5MwOTZE9PY0Djmo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the four boys see an R-rated movie featuring Canadians Terrance and Philip, they are pronounced \"corrupted\", and their parents pressure the United States to wage war against Canada.", "video": false, "id": 9473, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "South Park: Bigger, Longer & Uncut", "tagline": "UH-OH.", "vote_count": 254, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0158983", "adult": false, "backdrop_path": "/hokjXL3skx6ppfxXMHJrhXQ32ag.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Comedy Central", "id": 1538}, {"name": "Paramount Animation", "id": 24955}], "release_date": "1999-06-30", "popularity": 0.91546864208439, "original_title": "South Park: Bigger, Longer & Uncut", "budget": 21000000, "cast": [{"name": "Trey Parker", "character": "Eric Cartman / Stan Marsh", "id": 34517, "credit_id": "52fe44fcc3a36847f80b5d09", "cast_id": 1, "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "order": 0}, {"name": "Matt Stone", "character": "Kyle Broflovski / Kenny McCormick", "id": 34518, "credit_id": "52fe44fcc3a36847f80b5d0d", "cast_id": 2, "profile_path": "/fENM2HlxKgMe81OTTgert1Q55pj.jpg", "order": 1}, {"name": "Mary Kay Bergman", "character": "Liane Cartman", "id": 30695, "credit_id": "52fe44fcc3a36847f80b5d11", "cast_id": 3, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 2}, {"name": "Isaac Hayes", "character": "Chef", "id": 6542, "credit_id": "52fe44fcc3a36847f80b5d15", "cast_id": 4, "profile_path": "/4igh7emwzt4xBLw1r05gCUHxwzD.jpg", "order": 3}, {"name": "George Clooney", "character": "Dr. Gouache", "id": 1461, "credit_id": "52fe44fcc3a36847f80b5d19", "cast_id": 5, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 4}, {"name": "Minnie Driver", "character": "Brooke Shields", "id": 6613, "credit_id": "52fe44fcc3a36847f80b5d1d", "cast_id": 7, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 5}, {"name": "Brent Spiner", "character": "Conan O'Brien", "id": 1213786, "credit_id": "52fe44fcc3a36847f80b5d69", "cast_id": 20, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 6}, {"name": "Jesse Brant Howell", "character": "Ike Broflovski", "id": 1445164, "credit_id": "5511b41c9251412a8800114c", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Anthony Cross-Thomas", "character": "Ike Broflovski (voice)", "id": 1450712, "credit_id": "5522f63e9251417096004208", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Franchesca Clifford", "character": "Ike Broflovski", "id": 1229781, "credit_id": "5522f65bc3a3684dda007081", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Anthony Cross-Thomas", "character": "Ike Broflovski", "id": 1450712, "credit_id": "5522f660c3a3684dd400727c", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Bruce Howell", "character": "Man in Theater", "id": 1229804, "credit_id": "5522f677c3a368333a0047dd", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Deb Adair", "character": "Woman in Theater", "id": 1395446, "credit_id": "5522f687c3a36828d10046c3", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Jennifer Howell", "character": "Bebe Stevens", "id": 1229787, "credit_id": "5522f69c9251417be2005bd7", "cast_id": 29, "profile_path": null, "order": 14}], "directors": [{"name": "Trey Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5d23", "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "id": 34517}], "vote_average": 7.0, "runtime": 81}, "9474": {"poster_path": "/A9nNgMS8oVh5QREvsAUodzhijYQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Jack Beauregard, one of the greatest gunman of the Old West, only wants to retire in peace and move to Europe. But a young gunfighter, known as \"Nobody\", who idolizes Beauregard, wants him to go out in glory. So he arranges for Jack to face the 150-man gang known as The Wild Bunch and earn his place in history.", "video": false, "id": 9474, "genres": [{"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "My Name Is Nobody", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xidsc25T8aMTRh79tyg1BKgC4o6.jpg", "poster_path": "/qSxCBqF4KrDHm5yU3QQBvO0S82V.jpg", "id": 161767, "name": "Nobody Collection"}, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0070215", "adult": false, "backdrop_path": "/khIbImstNPb0ABMONVMudksE7Yo.jpg", "production_companies": [{"name": "Rafran Cinematografica", "id": 218}, {"name": "Les Films Jacques Leitienne", "id": 1639}, {"name": "Alcinter", "id": 12726}, {"name": "Rialto Film Preben-Philipsen", "id": 3602}], "release_date": "1973-12-19", "popularity": 0.658821034715933, "original_title": "Il mio nome \u00e8 nessuno", "budget": 0, "cast": [{"name": "Terence Hill", "character": "Nobody", "id": 15140, "credit_id": "52fe44fcc3a36847f80b5da1", "cast_id": 1, "profile_path": "/ayNVIUCB3b0Hj88a5i9qH88Df11.jpg", "order": 0}, {"name": "Henry Fonda", "character": "Jack Beauregard", "id": 4958, "credit_id": "52fe44fcc3a36847f80b5da5", "cast_id": 2, "profile_path": "/sn3Fsm6l3xDAPHlO63ck2KOZ1BG.jpg", "order": 1}, {"name": "Jean Martin", "character": "Sullivan", "id": 39953, "credit_id": "52fe44fcc3a36847f80b5da9", "cast_id": 3, "profile_path": "/3sB4L0gSQvcTSONksUQI4qiqGyT.jpg", "order": 2}, {"name": "R. G. Armstrong", "character": "Honest John", "id": 1107, "credit_id": "52fe44fcc3a36847f80b5dad", "cast_id": 4, "profile_path": "/lRGoPhebBnPFzZQvcmnUokjGL7L.jpg", "order": 3}, {"name": "Karl Braun", "character": "Jim", "id": 108279, "credit_id": "52fe44fcc3a36847f80b5de7", "cast_id": 15, "profile_path": "/5kPDirqUOKwKCaW6Bf2O6Bfw3Vm.jpg", "order": 4}, {"name": "Leo Gordon", "character": "Red", "id": 95082, "credit_id": "52fe44fcc3a36847f80b5deb", "cast_id": 16, "profile_path": "/pd3Nbf2GqNW2800GB4IpTEHkSDf.jpg", "order": 5}, {"name": "Steve Kanaly", "character": "False barber", "id": 41280, "credit_id": "52fe44fcc3a36847f80b5def", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Geoffrey Lewis", "character": "Leader of the Wild Bunch", "id": 18071, "credit_id": "52fe44fcc3a36847f80b5df3", "cast_id": 18, "profile_path": "/w6uRlwTKRpXELfVwKHC9yWEDqxy.jpg", "order": 7}, {"name": "Neil Summers", "character": "Squirrel", "id": 389763, "credit_id": "52fe44fcc3a36847f80b5df7", "cast_id": 19, "profile_path": "/k2pExO7H0zZu6HrOnOlP1XzhIPl.jpg", "order": 8}, {"name": "Piero Lulli", "character": "Sheriff", "id": 45035, "credit_id": "52fe44fcc3a36847f80b5dfb", "cast_id": 20, "profile_path": "/kd84hadpbKoC3Qty7WKQEvgpN7j.jpg", "order": 9}, {"name": "Mario Brega", "character": "Pedro", "id": 16318, "credit_id": "52fe44fcc3a36847f80b5dff", "cast_id": 21, "profile_path": "/k07gKWh5tQZurRKaw7K6ph7k9ae.jpg", "order": 10}, {"name": "Marc Mazza", "character": "Don John (as Mark Mazza)", "id": 39461, "credit_id": "52fe44fcc3a36847f80b5e03", "cast_id": 22, "profile_path": "/H9NjxEGl1vCQbkhpjKWMX8lnT6.jpg", "order": 11}, {"name": "Benito Stefanelli", "character": "Porteley", "id": 4661, "credit_id": "52fe44fcc3a36847f80b5e07", "cast_id": 23, "profile_path": "/5c5ek7iXeJMdx1bEM2mw195zmPD.jpg", "order": 12}, {"name": "Alexander Allerson", "character": "Rex", "id": 18840, "credit_id": "52fe44fcc3a36847f80b5e0b", "cast_id": 24, "profile_path": "/eOlCATYhG7NQfPffpgFdln9UeMe.jpg", "order": 13}, {"name": "Rainer Peets", "character": "Big Gun (as Remus Peets)", "id": 558739, "credit_id": "52fe44fcc3a36847f80b5e0f", "cast_id": 25, "profile_path": "/eGUtz0aMc4KXqGeukGUY3lLA7VV.jpg", "order": 14}, {"name": "Maurice Kowalewski", "character": "New Orleans street photographer", "id": 1152827, "credit_id": "52fe44fcc3a36847f80b5e13", "cast_id": 26, "profile_path": "/aLtAGGPm8bemPlSIUwhMwdAo1B8.jpg", "order": 15}], "directors": [{"name": "Tonino Valerii", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5db3", "profile_path": null, "id": 57639}], "vote_average": 7.0, "runtime": 117}, "9475": {"poster_path": "/22m6tUzIYxXs5cjyl7KJJPULlMT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 134095253, "overview": "Charlie Simms (Chris O'Donnell) is a student at a private preparatory school who comes from a poor family. To earn the money for his flight home to Gresham, Oregon for Christmas, Charlie takes a job over Thanksgiving looking after retired U.S. Army officer Lieutenant Colonel Frank Slade (Al Pacino), a cantankerous middle-aged man who lives with his niece and her family.", "video": false, "id": 9475, "genres": [{"id": 18, "name": "Drama"}], "title": "Scent of a Woman", "tagline": "Col. Frank Slade has a very special plan for the weekend. It involves travel, women, good food, fine wine, the tango, chauffeured limousines and a loaded forty-five. And he's bringing Charlie along for the ride.", "vote_count": 246, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105323", "adult": false, "backdrop_path": "/xDw3Yz797LSBGSxSrzBFEsP3Px4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "City Light Films", "id": 136}], "release_date": "1992-12-23", "popularity": 0.89950466071649, "original_title": "Scent of a Woman", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Lieutenant Colonel Frank Slade", "id": 1158, "credit_id": "52fe44fcc3a36847f80b5e9b", "cast_id": 18, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Chris O'Donnell", "character": "Charlie Simms", "id": 5577, "credit_id": "52fe44fcc3a36847f80b5e43", "cast_id": 2, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 1}, {"name": "James Rebhorn", "character": "Mr. Trask", "id": 8986, "credit_id": "52fe44fcc3a36847f80b5e47", "cast_id": 3, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 2}, {"name": "Gabrielle Anwar", "character": "Donna", "id": 5503, "credit_id": "52fe44fcc3a36847f80b5e4b", "cast_id": 4, "profile_path": "/khnEDczzSy6UcbnqZ6Sb4lWxnkE.jpg", "order": 3}, {"name": "Philip Seymour Hoffman", "character": "George Willis, Jr.", "id": 1233, "credit_id": "52fe44fcc3a36847f80b5e4f", "cast_id": 5, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 4}, {"name": "Richard Venture", "character": "W.R. Slade", "id": 88748, "credit_id": "52fe44fcc3a36847f80b5e9f", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Bradley Whitford", "character": "Randy", "id": 11367, "credit_id": "52fe44fcc3a36847f80b5ea3", "cast_id": 20, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "June Squibb", "character": "Mrs. Hunsaker", "id": 35515, "credit_id": "52fe44fcc3a36847f80b5ea7", "cast_id": 21, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 7}, {"name": "Frances Conroy", "character": "Christine Downes", "id": 4432, "credit_id": "52fe44fcc3a36847f80b5eab", "cast_id": 22, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 8}], "directors": [{"name": "Martin Brest", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5e55", "profile_path": null, "id": 769}], "vote_average": 6.9, "runtime": 157}, "9476": {"poster_path": "/1ZUpkMivvlF0ZoyXQzHF4El3izv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117487473, "overview": "William Thatcher, a peasant, is sent to apprentice with a Knight named Hector as a young boy. Urged by his father to \"change his Stars\", he assumes Sir Hector's place in a tournament when Hector dies in the middle of it. He wins. With the other apprentices, he trains and assumes the title of Sir Ulrich von Lichtenstein.", "video": false, "id": 9476, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Knight's Tale", "tagline": "He Will Rock You", "vote_count": 244, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0183790", "adult": false, "backdrop_path": "/xVmpVd5C7RDXVXFBDGcnqQzmTBy.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2001-04-24", "popularity": 0.502056394067301, "original_title": "A Knight's Tale", "budget": 65000000, "cast": [{"name": "Heath Ledger", "character": "Sir William Thatcher / Sir Ulrich von Lichtenstein of Gelderland", "id": 1810, "credit_id": "52fe44fcc3a36847f80b5edb", "cast_id": 1, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Rufus Sewell", "character": "Count Adhemar of Anjou", "id": 17328, "credit_id": "52fe44fcc3a36847f80b5edf", "cast_id": 2, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 1}, {"name": "Shannyn Sossamon", "character": "Lady Jocelyn", "id": 27855, "credit_id": "52fe44fcc3a36847f80b5ee3", "cast_id": 3, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Geoffrey Chaucer", "id": 6162, "credit_id": "52fe44fcc3a36847f80b5ee7", "cast_id": 4, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Laura Fraser", "character": "Kate", "id": 42279, "credit_id": "52fe44fcc3a36847f80b5f3f", "cast_id": 19, "profile_path": "/umgqZQNAqE78jFfg1H1nPtaO41Y.jpg", "order": 4}, {"name": "Mark Addy", "character": "Roland", "id": 13633, "credit_id": "52fe44fcc3a36847f80b5f43", "cast_id": 20, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 5}, {"name": "Alan Tudyk", "character": "Wat", "id": 21088, "credit_id": "52fe44fcc3a36847f80b5f47", "cast_id": 21, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 6}, {"name": "James Purefoy", "character": "Edward, the Black Prince of Wales/Sir Thomas Colville", "id": 17648, "credit_id": "5317903ec3a3685c4a000189", "cast_id": 22, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 7}, {"name": "B\u00e9r\u00e9nice Bejo", "character": "Christiana", "id": 82923, "credit_id": "5457ca410e0a2648d6009ea1", "cast_id": 23, "profile_path": "/lczQWfdK8GrdcUKc6TkSD96Sr3r.jpg", "order": 8}], "directors": [{"name": "Brian Helgeland", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5eed", "profile_path": "/oJrbZ6efL7CalCeypRyusRbHzPF.jpg", "id": 4723}], "vote_average": 6.3, "runtime": 132}, "9477": {"poster_path": "/5midPf1b8pI5xlJsNn4eQLwPNtA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 203567857, "overview": "This 2004 version of the Arthurian legend is different from the traditional, as it is loosely based on the \"Sarmatian hypothesis\", formulated by C. Scott Littleton and Ann C. Thomas in 1978, which holds that the Arthurian legend has a historical nucleus in the Sarmatian heavy cavalry troops stationed in Britain, and that the Roman-British military commander Lucius Artorius Castus is the historical person behind the legend.", "video": false, "id": 9477, "genres": [{"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "King Arthur", "tagline": "Rule Your Fate.", "vote_count": 213, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cy", "name": "Cymraeg"}, {"iso_639_1": "gd", "name": ""}, {"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0349683", "adult": false, "backdrop_path": "/svRdvBAxZe8URdfHfYq16GOYSVJ.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Green Hills Productions", "id": 19098}, {"name": "World 2000 Entertainment", "id": 7692}], "release_date": "2004-07-07", "popularity": 0.615273261839092, "original_title": "King Arthur", "budget": 120000000, "cast": [{"name": "Clive Owen", "character": "Arthur", "id": 2296, "credit_id": "52fe44fcc3a36847f80b5f81", "cast_id": 1, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Ioan Gruffudd", "character": "Lancelot", "id": 65524, "credit_id": "52fe44fcc3a36847f80b5f85", "cast_id": 2, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 1}, {"name": "Keira Knightley", "character": "Guinevere", "id": 116, "credit_id": "52fe44fcc3a36847f80b5f91", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 2}, {"name": "Mads Mikkelsen", "character": "Tristan", "id": 1019, "credit_id": "52fe44fcc3a36847f80b5f89", "cast_id": 3, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 3}, {"name": "Joel Edgerton", "character": "Gawain", "id": 33192, "credit_id": "52fe44fcc3a36847f80b5f8d", "cast_id": 4, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 4}, {"name": "Hugh Dancy", "character": "Galahad", "id": 12791, "credit_id": "52fe44fcc3a36847f80b5f99", "cast_id": 7, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 5}, {"name": "Ray Winstone", "character": "Bors", "id": 5538, "credit_id": "52fe44fcc3a36847f80b5f9d", "cast_id": 8, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 6}, {"name": "Stephen Dillane", "character": "Merlin", "id": 8435, "credit_id": "52fe44fcc3a36847f80b5f95", "cast_id": 6, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 7}, {"name": "Ray Stevenson", "character": "Dagonet", "id": 56614, "credit_id": "52fe44fcc3a36847f80b5fa1", "cast_id": 9, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 8}, {"name": "Til Schweiger", "character": "Cynric", "id": 1844, "credit_id": "52fe44fcc3a36847f80b5fa5", "cast_id": 10, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 9}, {"name": "Stellan Skarsg\u00e5rd", "character": "Cerdic", "id": 1640, "credit_id": "52fe44fcc3a36847f80b5feb", "cast_id": 22, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 10}, {"name": "Sean Gilder", "character": "Jols", "id": 77292, "credit_id": "52fe44fcc3a36847f80b5fef", "cast_id": 23, "profile_path": "/3k9U78b90A93O5KtbSSb4QDOJ19.jpg", "order": 11}, {"name": "Ken Stott", "character": "Marius Honorius", "id": 25136, "credit_id": "52fe44fcc3a36847f80b5ffb", "cast_id": 26, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 14}, {"name": "Charlie Creed-Miles", "character": "Ganis", "id": 8397, "credit_id": "5404e479c3a368068c00706d", "cast_id": 30, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 15}, {"name": "David Murray", "character": "Merlin's Lieutenant", "id": 93211, "credit_id": "5404e491c3a3684366007304", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Ned Dennehy", "character": "Mental Monk", "id": 63362, "credit_id": "5404e4a4c3a3682d98005935", "cast_id": 32, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 17}, {"name": "Phelim Drew", "character": "Obnoxius Monk", "id": 559208, "credit_id": "5404e4bec3a3684372006ff7", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Des Braiden", "character": "Third Monk", "id": 946148, "credit_id": "5404e4d0c3a3684372006ff9", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Bosco Hogan", "character": "Bishop Decoy", "id": 33401, "credit_id": "5404e4e5c3a36816af002517", "cast_id": 35, "profile_path": "/Acjsa8CCIIQNTaoWyUj9fhTOt3o.jpg", "order": 20}, {"name": "David Wilmot", "character": "Woad Killed by Lancelot", "id": 73287, "credit_id": "5404e501c3a3682d9800593f", "cast_id": 36, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 21}, {"name": "Lochlainn O'Mearain", "character": "Roman Commander", "id": 195559, "credit_id": "5404e514c3a368068c007074", "cast_id": 37, "profile_path": null, "order": 22}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe44fcc3a36847f80b5fab", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.1, "runtime": 126}, "9479": {"poster_path": "/6oxkO1VgKCq74fNILKAg6t2dVEt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75634409, "overview": "Tired of scaring humans every October 31 with the same old bag of tricks, Jack Skellington, the spindly king of Halloween Town, kidnaps Santa Claus and plans to deliver shrunken heads and other ghoulish gifts to children on Christmas morning. But as Christmas approaches, Jack's rag-doll girlfriend, Sally, tries to foil his misguided plans.", "video": false, "id": 9479, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Nightmare Before Christmas", "tagline": "A ghoulish tale with wicked humour & stunning animation.", "vote_count": 557, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107688", "adult": false, "backdrop_path": "/mARBTSIfj6AfTPlZVqRONh9KfYz.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Tim Burton Productions", "id": 8601}, {"name": "Skellington Productions Inc.", "id": 8835}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1993-10-09", "popularity": 1.2242077992167, "original_title": "The Nightmare Before Christmas", "budget": 18000000, "cast": [{"name": "Danny Elfman", "character": "Jack Skellington (singing) / Barrel / Clown with the Tear away Face (voice)", "id": 531, "credit_id": "52fe44fdc3a36847f80b6073", "cast_id": 1, "profile_path": "/nBx84zlelMMlbVvkBQHyfF7eCov.jpg", "order": 0}, {"name": "Chris Sarandon", "character": "Jack Skellington (voice)", "id": 14541, "credit_id": "52fe44fdc3a36847f80b6077", "cast_id": 2, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Sally / Shock (voice)", "id": 11514, "credit_id": "52fe44fdc3a36847f80b607b", "cast_id": 3, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "William Hickey", "character": "Dr. Finkelstein (voice)", "id": 21282, "credit_id": "52fe44fdc3a36847f80b607f", "cast_id": 4, "profile_path": "/zr7UJxP5MdEksn6ZaxeHbwr6o5Z.jpg", "order": 3}, {"name": "Glenn Shadix", "character": "Mayor (voice)", "id": 13243, "credit_id": "52fe44fdc3a36847f80b60bf", "cast_id": 16, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 4}, {"name": "Paul Reubens", "character": "Lock (voice)", "id": 5129, "credit_id": "52fe44fdc3a36847f80b60c3", "cast_id": 17, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 5}], "directors": [{"name": "Henry Selick", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b60bb", "profile_path": "/kiTzGq0peOTsjQnzQI3ttwqqsOv.jpg", "id": 57646}], "vote_average": 7.2, "runtime": 76}, "9480": {"poster_path": "/dNVEqwgIdrwWQL3zXI5mQG60oM5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 179179718, "overview": "He dwells in a world of external night, but the blackness is filled with sounds and scents, tastes and textures that most cannot perceive. Although attorney Matt Murdock is blind, his other four senses function with superhuman sharpness. By day, Murdock represents the downtrodden. At night he is Daredevil, a masked vigilante stalking the dark streets of the city, a relentless avenger of justice.", "video": false, "id": 9480, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Daredevil", "tagline": "A Guardian Devil", "vote_count": 432, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt0287978", "adult": false, "backdrop_path": "/kUrLJlPCoRvCexYpEaXnMZ46eiT.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2003-02-14", "popularity": 1.40857291078136, "original_title": "Daredevil", "budget": 78000000, "cast": [{"name": "Ben Affleck", "character": "Matt Murdock / Daredevil", "id": 880, "credit_id": "52fe44fdc3a36847f80b60fb", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Elektra Natchios", "id": 9278, "credit_id": "52fe44fdc3a36847f80b60ff", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Colin Farrell", "character": "Bullseye", "id": 72466, "credit_id": "52fe44fdc3a36847f80b6103", "cast_id": 3, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 2}, {"name": "Michael Clarke Duncan", "character": "Wilson Fisk / The Kingpin", "id": 61981, "credit_id": "52fe44fdc3a36847f80b6107", "cast_id": 4, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 3}, {"name": "Ellen Pompeo", "character": "Karen Page", "id": 9280, "credit_id": "52fe44fdc3a36847f80b610b", "cast_id": 5, "profile_path": "/iX5HdQdWRPLf5Fx87QDNCdehmI9.jpg", "order": 4}, {"name": "Jon Favreau", "character": "Franklin 'Foggy' Nelson", "id": 15277, "credit_id": "52fe44fdc3a36847f80b610f", "cast_id": 6, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 5}, {"name": "Scott Terra", "character": "Young Matt", "id": 56153, "credit_id": "52fe44fdc3a36847f80b6113", "cast_id": 7, "profile_path": "/4mXaoogOk48PNVqcCjkXAL7zea8.jpg", "order": 6}, {"name": "Joe Pantoliano", "character": "Ben Urich", "id": 532, "credit_id": "52fe44fdc3a36847f80b6159", "cast_id": 19, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 7}, {"name": "Erick Avari", "character": "Nikolas Natchios", "id": 18917, "credit_id": "52fe44fdc3a36847f80b615d", "cast_id": 20, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 8}, {"name": "David Keith", "character": "Jack Murdock", "id": 18181, "credit_id": "52fe44fdc3a36847f80b6161", "cast_id": 21, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 9}, {"name": "Stan Lee", "character": "Old Man at Crossing", "id": 7624, "credit_id": "52fe44fdc3a36847f80b6177", "cast_id": 25, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 10}, {"name": "Leland Orser", "character": "Wesley Owen Welch", "id": 2221, "credit_id": "54bf86d99251416eae00802a", "cast_id": 125, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 11}, {"name": "Lennie Loftin", "character": "Nick Manolis", "id": 42200, "credit_id": "54bf87079251416e9b008a48", "cast_id": 126, "profile_path": "/n5k9l49SlCgEyfU6ggUl1QIrZe6.jpg", "order": 12}, {"name": "Derrick O'Connor", "character": "Father Everett", "id": 14325, "credit_id": "54bf8742c3a368389c008e66", "cast_id": 127, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 13}, {"name": "Paul Ben-Victor", "character": "Jose Quesada", "id": 85142, "credit_id": "54bf87639251416eae008031", "cast_id": 128, "profile_path": "/350FIsnn84w2RLAhNPRtzeaUqLO.jpg", "order": 14}, {"name": "Casey McCarthy", "character": "Angela Sutton", "id": 1416443, "credit_id": "54bf87b7c3a3686c6100e78e", "cast_id": 129, "profile_path": null, "order": 15}, {"name": "Josie DiVincenzo", "character": "Josie", "id": 1416444, "credit_id": "54bf87d2c3a368389c008e78", "cast_id": 130, "profile_path": null, "order": 16}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b6119", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.1, "runtime": 103}, "9481": {"poster_path": "/dCTuPRukbDs3mOSx9SD0PCMRd2g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 151493655, "overview": "Rookie cop Amelia Donaghy reluctantly teams with Lincoln Rhyme -- formerly the department's top homicide detective but now paralyzed as a result of a spinal injury -- to catch a grisly serial killer dubbed The Bone Collector. The murderer's special signature is to leave tantalizing clues based on the grim remains of his crimes.", "video": false, "id": 9481, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Bone Collector", "tagline": "Serial killer vs. forensic genius", "vote_count": 199, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145681", "adult": false, "backdrop_path": "/hLxwlRHk1vYvfyftlpOSsHBxL88.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Universal Pictures", "id": 33}], "release_date": "1999-11-05", "popularity": 1.47992470872722, "original_title": "The Bone Collector", "budget": 73000000, "cast": [{"name": "Denzel Washington", "character": "Lincoln Rhyme", "id": 5292, "credit_id": "52fe44fdc3a36847f80b61bb", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Amelia Donaghy", "id": 11701, "credit_id": "52fe44fdc3a36847f80b6235", "cast_id": 27, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Queen Latifah", "character": "Thelma", "id": 15758, "credit_id": "52fe44fdc3a36847f80b61bf", "cast_id": 3, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 2}, {"name": "Michael Rooker", "character": "Captain Howard Cheney", "id": 12132, "credit_id": "52fe44fdc3a36847f80b61c3", "cast_id": 4, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 3}, {"name": "Michael McGlone", "character": "Detective Kenny Solomon", "id": 69298, "credit_id": "52fe44fdc3a36847f80b6209", "cast_id": 16, "profile_path": "/uoA2xmyTf4bQLaD9B5WWJzWwbr3.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Eddie Ortiz (as Luis Guzman)", "id": 40481, "credit_id": "52fe44fdc3a36847f80b620d", "cast_id": 17, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Leland Orser", "character": "Richard Thompson", "id": 2221, "credit_id": "52fe44fdc3a36847f80b6211", "cast_id": 18, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 6}, {"name": "John Benjamin Hickey", "character": "Dr. Barry Lehman", "id": 21179, "credit_id": "52fe44fdc3a36847f80b6215", "cast_id": 19, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 7}, {"name": "Bobby Cannavale", "character": "Steve, Amelia's Boyfriend", "id": 21127, "credit_id": "52fe44fdc3a36847f80b6219", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 8}, {"name": "Ed O'Neill", "character": "Detective Paulie Sellitto", "id": 18977, "credit_id": "52fe44fdc3a36847f80b621d", "cast_id": 21, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 9}, {"name": "Richard Zeman", "character": "Lieutenant Carl Hanson", "id": 129419, "credit_id": "52fe44fdc3a36847f80b6221", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Olivia Birkelund", "character": "Lindsay Rubin", "id": 129420, "credit_id": "52fe44fdc3a36847f80b6225", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Gary Swanson", "character": "Alan Rubin", "id": 129421, "credit_id": "52fe44fdc3a36847f80b6229", "cast_id": 24, "profile_path": "/f0aPYfFmNSOuvS9zi6KgK1SfyEu.jpg", "order": 12}, {"name": "James Bulleit", "character": "Train Engineer (as Jim Bulleit)", "id": 63342, "credit_id": "52fe44fdc3a36847f80b622d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Frank Fontaine", "character": "Grandfather", "id": 60910, "credit_id": "52fe44fdc3a36847f80b6231", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Zena Grey", "character": "Granddaughter", "id": 62760, "credit_id": "53a59e52c3a3687a340014fe", "cast_id": 44, "profile_path": "/wzRRQ8vifE4OFQTS6Hh3S6ZXcT9.jpg", "order": 15}, {"name": "Desmond Campbell", "character": "Taxi Inspector", "id": 1219164, "credit_id": "53a59ed7c3a3687a34001505", "cast_id": 45, "profile_path": null, "order": 16}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b61c9", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.3, "runtime": 118}, "9482": {"poster_path": "/r17S4XlQ3Jq5U1KRovFUwU8P4aG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a dystopian future, Dredd, the most famous judge (a cop with instant field judiciary powers) is convicted for a crime he did not commit while his murderous counterpart escapes.", "video": false, "id": 9482, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "Judge Dredd", "tagline": "In the future, one man is the law.", "vote_count": 164, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113492", "adult": false, "backdrop_path": "/mSZADd1N0wWkkNJmwcpYAq93bke.jpg", "production_companies": [{"name": "Cinergi Pictures Entertainment", "id": 1504}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1995-06-30", "popularity": 0.682635451916811, "original_title": "Judge Dredd", "budget": 90000000, "cast": [{"name": "Sylvester Stallone", "character": "Judge Joseph Dredd", "id": 16483, "credit_id": "52fe44fdc3a36847f80b629f", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Diane Lane", "character": "Judge Hershey", "id": 2882, "credit_id": "52fe44fdc3a36847f80b62a3", "cast_id": 2, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 1}, {"name": "Armand Assante", "character": "Rico", "id": 23346, "credit_id": "52fe44fdc3a36847f80b62a7", "cast_id": 3, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 2}, {"name": "Rob Schneider", "character": "Herman 'Fergee' Ferguson", "id": 60949, "credit_id": "52fe44fdc3a36847f80b62ab", "cast_id": 4, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 3}, {"name": "J\u00fcrgen Prochnow", "character": "Judge Griffin", "id": 920, "credit_id": "52fe44fdc3a36847f80b62af", "cast_id": 5, "profile_path": "/aar3n9NEQdwWVvPOne3kLLXm75N.jpg", "order": 4}, {"name": "Max von Sydow", "character": "Chief Justice Fargo", "id": 2201, "credit_id": "52fe44fdc3a36847f80b62b3", "cast_id": 6, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 5}, {"name": "Christopher Adamson", "character": "Mean Machine", "id": 64102, "credit_id": "52fe44fdc3a36847f80b630b", "cast_id": 22, "profile_path": "/8yLz3515hR5RgjeH0kbGcjSYylO.jpg", "order": 6}, {"name": "Joanna Miles", "character": "Judge Evelyn McGruder", "id": 106765, "credit_id": "52fe44fdc3a36847f80b6333", "cast_id": 29, "profile_path": "/pLxo4VRibbJWjWkjuudGQPYWPSX.jpg", "order": 7}, {"name": "Joan Chen", "character": "Dr. Ilsa Hayden", "id": 6720, "credit_id": "52fe44fdc3a36847f80b6337", "cast_id": 30, "profile_path": "/ekWS5bAB0kv4RColHqYaUAoXz0I.jpg", "order": 8}, {"name": "Balthazar Getty", "character": "Cadet Nathan Olmeyer", "id": 9296, "credit_id": "52fe44fdc3a36847f80b633b", "cast_id": 31, "profile_path": "/qf8IFeFqYEkLJhTN63T63m1Nlbc.jpg", "order": 9}, {"name": "Maurice Roeves", "character": "Warden Miller", "id": 54, "credit_id": "52fe44fdc3a36847f80b633f", "cast_id": 32, "profile_path": "/qXYjnIHClkey4QQxPG5D5JD7Y74.jpg", "order": 10}, {"name": "Ian Dury", "character": "Geiger", "id": 113908, "credit_id": "52fe44fdc3a36847f80b6343", "cast_id": 33, "profile_path": "/au8MMm9IDpRw7IrBlxlVfpX8MYm.jpg", "order": 11}, {"name": "Ewen Bremner", "character": "Junior Angel", "id": 1125, "credit_id": "52fe44fdc3a36847f80b6347", "cast_id": 34, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 12}, {"name": "Peter Marinker", "character": "Judge Carlos Esposito", "id": 93477, "credit_id": "52fe44fdc3a36847f80b634b", "cast_id": 35, "profile_path": "/yY3zB4Jof1tfDcr4hJLqdHeEQZK.jpg", "order": 13}, {"name": "Martin McDougall", "character": "Twist", "id": 36901, "credit_id": "52fe44fdc3a36847f80b634f", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Danny Cannon", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b62b9", "profile_path": "/9E4Km6y1O0bK3dUSds3smzu20KI.jpg", "id": 33279}], "vote_average": 5.5, "runtime": 96}, "132363": {"poster_path": "/hUjEYTN5NuK8kYRQxngS7itpBQC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115922175, "overview": "A look at the life of Cecil Gaines who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.", "video": false, "id": 132363, "genres": [{"id": 18, "name": "Drama"}], "title": "The Butler", "tagline": "One quiet voice can ignite a revolution", "vote_count": 337, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1327773", "adult": false, "backdrop_path": "/zZggWJSG18wPIOrZOgV5LI12LMi.jpg", "production_companies": [{"name": "Follow Through Productions", "id": 18919}, {"name": "Salamander Pictures", "id": 18920}, {"name": "Laura Ziskin Productions", "id": 326}, {"name": "Lee Daniels Entertainment", "id": 695}, {"name": "Pam Williams Productions", "id": 18921}, {"name": "Windy Hill Pictures", "id": 18922}], "release_date": "2013-08-16", "popularity": 1.53721569269981, "original_title": "The Butler", "budget": 25000000, "cast": [{"name": "Forest Whitaker", "character": "Cecil Gaines", "id": 2178, "credit_id": "52fe4b93c3a368484e18facf", "cast_id": 17, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 0}, {"name": "David Banner", "character": "Earl Gaines", "id": 53258, "credit_id": "52fe4b93c3a368484e18faed", "cast_id": 24, "profile_path": "/v9KDy0PrFdkvYvDtHacpgnDwh73.jpg", "order": 1}, {"name": "Michael Rainey Jr.", "character": "Cecil Gaines (8)", "id": 548375, "credit_id": "52fe4b93c3a368484e18faf5", "cast_id": 26, "profile_path": "/q1h9IQpyxWWbexEMC2AlfBpFMu.jpg", "order": 2}, {"name": "LaJessie Smith", "character": "Abraham", "id": 1199000, "credit_id": "52fe4b93c3a368484e18fb01", "cast_id": 29, "profile_path": "/sDnc8lZIs0KZ7xL3yQayAt2k5Ag.jpg", "order": 3}, {"name": "Mariah Carey", "character": "Hattie Pearl", "id": 66586, "credit_id": "52fe4b93c3a368484e18fadf", "cast_id": 21, "profile_path": "/qU9qrbTkLwsyFL9mb6RUHxKmpp.jpg", "order": 4}, {"name": "Alex Pettyfer", "character": "Thomas Westfall", "id": 61363, "credit_id": "52fe4b93c3a368484e18faab", "cast_id": 8, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 5}, {"name": "Vanessa Redgrave", "character": "Annabeth Westfall", "id": 13333, "credit_id": "52fe4b93c3a368484e18faf1", "cast_id": 25, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 6}, {"name": "Ami Ameen", "character": "Cecil Gaines (15)", "id": 1198999, "credit_id": "52fe4b93c3a368484e18fafd", "cast_id": 28, "profile_path": "/scl6VhPUQwVBosyQq1b51Fnzuox.jpg", "order": 7}, {"name": "Clarence Williams III", "character": "Maynard", "id": 15864, "credit_id": "52fe4b93c3a368484e18fb25", "cast_id": 36, "profile_path": "/hDjTPLvUNDnoA6rHDX5JrftAWZa.jpg", "order": 8}, {"name": "John P. Fertitta", "character": "Mr. Jenkins", "id": 1190851, "credit_id": "52fe4b93c3a368484e18fb29", "cast_id": 37, "profile_path": "/ym9cir7KWJcdq8otWzaPC8bg10l.jpg", "order": 9}, {"name": "Jim Gleason", "character": "R.D. Warner", "id": 168942, "credit_id": "52fe4b93c3a368484e18fb2d", "cast_id": 38, "profile_path": "/yhn0wL58Dt0HGB5O2m9RoWXbK46.jpg", "order": 10}, {"name": "Oprah Winfrey", "character": "Gloria Gaines", "id": 13309, "credit_id": "52fe4b93c3a368484e18fae3", "cast_id": 22, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 11}, {"name": "John Cusack", "character": "Richard Nixon", "id": 3036, "credit_id": "52fe4b93c3a368484e18faaf", "cast_id": 9, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 12}, {"name": "Robin Williams", "character": "Dwight Eisenhower", "id": 2157, "credit_id": "52fe4b93c3a368484e18fab3", "cast_id": 10, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 13}, {"name": "James Marsden", "character": "John F. Kennedy", "id": 11006, "credit_id": "52fe4b93c3a368484e18fab7", "cast_id": 11, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 14}, {"name": "Alan Rickman", "character": "Ronald Reagan", "id": 4566, "credit_id": "52fe4b93c3a368484e18fabb", "cast_id": 12, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 15}, {"name": "Minka Kelly", "character": "Jackie Kennedy", "id": 96625, "credit_id": "52fe4b93c3a368484e18fabf", "cast_id": 13, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 16}, {"name": "Liev Schreiber", "character": "Lyndon B. Johnson", "id": 23626, "credit_id": "52fe4b93c3a368484e18fac3", "cast_id": 14, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 17}, {"name": "Jesse Williams", "character": "Rev. James Lawson", "id": 210695, "credit_id": "52fe4b93c3a368484e18fac7", "cast_id": 15, "profile_path": "/9nOsvWaXwKzHVeSbb7N6YzhAzty.jpg", "order": 18}, {"name": "Lenny Kravitz", "character": "James Holloway", "id": 77069, "credit_id": "52fe4b93c3a368484e18facb", "cast_id": 16, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 19}, {"name": "Cuba Gooding Jr.", "character": "Carter Wilson", "id": 9777, "credit_id": "52fe4b93c3a368484e18fad3", "cast_id": 18, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 20}, {"name": "Terrence Howard", "character": "Howard", "id": 18288, "credit_id": "52fe4b93c3a368484e18fad7", "cast_id": 19, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 21}, {"name": "Jane Fonda", "character": "Nancy Reagan", "id": 6352, "credit_id": "52fe4b93c3a368484e18fadb", "cast_id": 20, "profile_path": "/t4kIxZrAhxnMyQP8BZFmpPAot0z.jpg", "order": 22}, {"name": "David Oyelowo", "character": "Louis Gaines", "id": 35013, "credit_id": "52fe4b93c3a368484e18faf9", "cast_id": 27, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 23}, {"name": "Yaya DaCosta", "character": "Carol Hammie", "id": 60033, "credit_id": "52fe4b93c3a368484e18fb05", "cast_id": 30, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 24}, {"name": "Stephen Rider", "character": "Admiral Rochon", "id": 936403, "credit_id": "54a68a6b92514117dd0097e3", "cast_id": 103, "profile_path": "/oS4eTt8qKF9320mGceFgArbFO0v.jpg", "order": 25}, {"name": "Nealla Gordon", "character": "Senator Kassebaum", "id": 109568, "credit_id": "54a68a99925141236b00df1b", "cast_id": 104, "profile_path": "/m1e1x5RBU0Ck9BnTj3gwPkLamXI.jpg", "order": 26}, {"name": "Rusty Robertson", "character": "Senator Robertson", "id": 1407751, "credit_id": "54a68ab69251411d530113b8", "cast_id": 105, "profile_path": null, "order": 27}], "directors": [{"name": "Lee Daniels", "department": "Directing", "job": "Director", "credit_id": "52fe4b92c3a368484e18fa8f", "profile_path": "/xwsuwr435maV9wuo3iWXWVzEIMH.jpg", "id": 20019}], "vote_average": 7.2, "runtime": 132}, "9486": {"poster_path": "/oSsisFLSeRJJaTX5l13jMqDKpwH.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 160583018, "overview": "Rowan plays the eponymous lead character in a spoof spy thriller. During the course of the story we follow our hero as he attempts to single-handedly save the country from falling into the hands of a despot.", "video": false, "id": 9486, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Johnny English", "tagline": "He knows no fear, he knows no danger, he knows nothing.", "vote_count": 232, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pMHHhMKu2iQichL6Eym4ApCvIEB.jpg", "poster_path": "/4RwgzSS4qnqKpTpCtrKQo1cdQXD.jpg", "id": 86117, "name": "Johnny English Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0274166", "adult": false, "backdrop_path": "/wNEsGAHws1UATmZfnjNBRi2Ln5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}], "release_date": "2003-04-06", "popularity": 0.723725180223794, "original_title": "Johnny English", "budget": 40000000, "cast": [{"name": "Rowan Atkinson", "character": "Johnny English", "id": 10730, "credit_id": "52fe44fdc3a36847f80b6409", "cast_id": 1, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "John Malkovich", "character": "Pascal Sauvage, the Greedy Frenchman", "id": 6949, "credit_id": "52fe44fdc3a36847f80b641d", "cast_id": 6, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Natalie Imbruglia", "character": "Lorna Campbell", "id": 57669, "credit_id": "52fe44fdc3a36847f80b6419", "cast_id": 5, "profile_path": "/aeCjoPeYEGDpmOnhtwwgTPEtC4M.jpg", "order": 2}, {"name": "Tasha de Vasconcelos", "character": "Countess Alexandra - Exotic Woman", "id": 47931, "credit_id": "52fe44fdc3a36847f80b640d", "cast_id": 2, "profile_path": "/u9OuPzgWZatsWi0ocRmBCsSfthq.jpg", "order": 3}, {"name": "Ben Miller", "character": "Bough, English's Sidekick", "id": 18025, "credit_id": "52fe44fdc3a36847f80b6411", "cast_id": 3, "profile_path": "/tKZaENabPtnvDyeDWZvXkz8IBQ4.jpg", "order": 4}, {"name": "Greg Wise", "character": "Agent One", "id": 16700, "credit_id": "52fe44fdc3a36847f80b6415", "cast_id": 4, "profile_path": "/A4u37pRp9MakKBhiIblXSCJEk33.jpg", "order": 5}, {"name": "Douglas McFerran", "character": "Carlos Vendetta", "id": 61540, "credit_id": "52fe44fdc3a36847f80b6463", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Steve Nicolson", "character": "Dieter Klein", "id": 55578, "credit_id": "52fe44fdc3a36847f80b6467", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Terence Harvey", "character": "Official at Funeral", "id": 25656, "credit_id": "52fe44fdc3a36847f80b646b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Kevin McNally", "character": "Prime Minister", "id": 2449, "credit_id": "52fe44fdc3a36847f80b646f", "cast_id": 21, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 9}, {"name": "Tim Pigott-Smith", "character": "Pegasus, Head of MI7", "id": 11276, "credit_id": "52fe44fdc3a36847f80b6473", "cast_id": 22, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 10}, {"name": "Nina Young", "character": "Pegasus' Secretary", "id": 58778, "credit_id": "52fe44fec3a36847f80b6477", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Rowland Davies", "character": "Sir Anthony Chevenix", "id": 131767, "credit_id": "52fe44fec3a36847f80b647b", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Philippa Fordham", "character": "Snobby Woman", "id": 131768, "credit_id": "52fe44fec3a36847f80b647f", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Tim Berrington", "character": "Roger", "id": 30444, "credit_id": "52fe44fec3a36847f80b6483", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Simon Bernstein", "character": "Assailant", "id": 131769, "credit_id": "52fe44fec3a36847f80b6487", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "Peter Howitt", "department": "Directing", "job": "Director", "credit_id": "52fe44fdc3a36847f80b6423", "profile_path": "/cwgHjbx5LitEns32kmdmj1diREi.jpg", "id": 7791}], "vote_average": 6.1, "runtime": 88}, "9487": {"poster_path": "/1d1q0aMWPaVdosDKvP8FWVuLtCc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 363398565, "overview": "On behalf of \"oppressed bugs everywhere,\" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.", "video": false, "id": 9487, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "A Bug's Life", "tagline": "An epic presentation of miniature proportions.", "vote_count": 599, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120623", "adult": false, "backdrop_path": "/gOvW00ZMoEiyRwXVkHPfBictPAl.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-11-25", "popularity": 2.07245290530346, "original_title": "A Bug's Life", "budget": 120000000, "cast": [{"name": "Kevin Spacey", "character": "Hopper (voice)", "id": 1979, "credit_id": "52fe44fec3a36847f80b64d1", "cast_id": 1, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Julia Louis-Dreyfus", "character": "Atta (voice)", "id": 15886, "credit_id": "52fe44fec3a36847f80b64d5", "cast_id": 2, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 1}, {"name": "Hayden Panettiere", "character": "Dot (voice)", "id": 17265, "credit_id": "52fe44fec3a36847f80b64d9", "cast_id": 3, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 2}, {"name": "Phyllis Diller", "character": "Queen (voice)", "id": 89784, "credit_id": "52fe44fec3a36847f80b6513", "cast_id": 13, "profile_path": "/5HYkLNxdzMRDRlzBEMYtAbkRgtq.jpg", "order": 3}, {"name": "Bonnie Hunt", "character": "Rosie (voice)", "id": 5149, "credit_id": "52fe44fec3a36847f80b6517", "cast_id": 14, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 4}, {"name": "Joe Ranft", "character": "Heimlich (voice)", "id": 7911, "credit_id": "52fe44fec3a36847f80b651b", "cast_id": 15, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 5}, {"name": "Jonathan Harris", "character": "Manny (voice)", "id": 123037, "credit_id": "52fe44fec3a36847f80b651f", "cast_id": 17, "profile_path": "/6dNRoOtfNHxxdHb9XvKcng9dwqz.jpg", "order": 6}, {"name": "Madeline Kahn", "character": "Gypsy Moth (voice)", "id": 29803, "credit_id": "52fe44fec3a36847f80b6523", "cast_id": 18, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 7}, {"name": "Richard Kind", "character": "Molt (voice)", "id": 21125, "credit_id": "52fe44fec3a36847f80b6527", "cast_id": 19, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 8}, {"name": "Denis Leary", "character": "Francis (voice)", "id": 5724, "credit_id": "52fe44fec3a36847f80b652b", "cast_id": 21, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 9}, {"name": "Dave Foley", "character": "Flik (voice)", "id": 21290, "credit_id": "52fe44fec3a36847f80b652f", "cast_id": 22, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 10}, {"name": "David Hyde Pierce", "character": "Slim (voice)", "id": 11076, "credit_id": "52fe44fec3a36847f80b6533", "cast_id": 23, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 11}, {"name": "Michael McShane", "character": "Tuck / Roll (voice)", "id": 8316, "credit_id": "52fe44fec3a36847f80b6537", "cast_id": 24, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 12}, {"name": "John Ratzenberger", "character": "P.T. Flea (voice)", "id": 7907, "credit_id": "52fe44fec3a36847f80b653b", "cast_id": 25, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 13}, {"name": "Brad Garrett", "character": "Dim (voice)", "id": 18, "credit_id": "52fe44fec3a36847f80b653f", "cast_id": 26, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 14}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b64df", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}, {"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b6545", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}], "vote_average": 6.5, "runtime": 95}, "9488": {"poster_path": "/p0waDhvhpIj5T2v1OmL7DeLD5oq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Exploring the further adventures of Carmen and Juni Cortez, who have now joined the family spy business as Level 2 OSS agents. Their new mission is to save the world from a mad scientist living on a volcanic island populated by an imaginative menagerie of creatures. On this bizarre island, none of the Cortez's gadgets work and they must rely on their wits--and each other--to survive and save the day.", "video": false, "id": 9488, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids 2: The Island of Lost Dreams", "tagline": "Little Spies. Big Attitudes", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0287717", "adult": false, "backdrop_path": "/6W8qisDl2MDhGpX3qqEePhfrHSb.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2002-08-07", "popularity": 0.569216438328218, "original_title": "Spy Kids 2: The Island of Lost Dreams", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Gregorio Cortez", "id": 3131, "credit_id": "52fe44fec3a36847f80b6581", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Ingrid Cortez", "id": 17832, "credit_id": "52fe44fec3a36847f80b6585", "cast_id": 2, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 1}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe44fec3a36847f80b6589", "cast_id": 3, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe44fec3a36847f80b658d", "cast_id": 4, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Romero", "id": 884, "credit_id": "52fe44fec3a36847f80b6591", "cast_id": 5, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Mike Judge", "character": "Donnagon Giggles", "id": 17403, "credit_id": "52fe44fec3a36847f80b6595", "cast_id": 6, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 5}, {"name": "Danny Trejo", "character": "Machete Cortez", "id": 11160, "credit_id": "52fe44fec3a36847f80b6599", "cast_id": 7, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 6}, {"name": "Cheech Marin", "character": "Felix Gumm", "id": 11159, "credit_id": "52fe44fec3a36847f80b659d", "cast_id": 8, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 7}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b65a3", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 4.9, "runtime": 100}, "9489": {"poster_path": "/v5o3FlY2DwKSpmIMhcttTi6KQIc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115731542, "overview": "In this valentine to modern romance, book superstore magnate Joe Fox and independent book shop owner Kathleen Kelly fall in love in the anonymity of the Internet -- both blissfully unaware that he's trying to put her out of business.", "video": false, "id": 9489, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "You've Got Mail", "tagline": "Someone you pass on the street may already be the love of your life.", "vote_count": 260, "homepage": "http://youvegotmail.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0128853", "adult": false, "backdrop_path": "/xXhYQRNPcvtNvNwY5sXH7kQD5KU.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}], "release_date": "1998-12-17", "popularity": 0.903518172522609, "original_title": "You've Got Mail", "budget": 65000000, "cast": [{"name": "Tom Hanks", "character": "Joe Fox", "id": 31, "credit_id": "52fe44fec3a36847f80b660d", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Kathleen Kelly", "id": 5344, "credit_id": "52fe44fec3a36847f80b6611", "cast_id": 2, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Katie Sagona", "character": "Young Kathleen Kelly", "id": 57676, "credit_id": "52fe44fec3a36847f80b6615", "cast_id": 3, "profile_path": "/iZNaXH5tI4A1x5eBhAE6JDHaLIe.jpg", "order": 2}, {"name": "Greg Kinnear", "character": "Frank Navasky", "id": 17141, "credit_id": "52fe44fec3a36847f80b6619", "cast_id": 4, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 3}, {"name": "Parker Posey", "character": "Patricia Eden", "id": 7489, "credit_id": "52fe44fec3a36847f80b6665", "cast_id": 17, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 4}, {"name": "Jean Stapleton", "character": "Birdie Conrad", "id": 28933, "credit_id": "52fe44fec3a36847f80b6669", "cast_id": 18, "profile_path": "/yfmkSfHShvDPVyXBoJvi2QTBboH.jpg", "order": 5}, {"name": "Steve Zahn", "character": "George Pappas", "id": 18324, "credit_id": "52fe44fec3a36847f80b666d", "cast_id": 19, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 6}, {"name": "Heather Burns", "character": "Christina Plutzker", "id": 26716, "credit_id": "52fe44fec3a36847f80b6671", "cast_id": 20, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 7}, {"name": "Dabney Coleman", "character": "Nelson Fox", "id": 12850, "credit_id": "52fe44fec3a36847f80b6675", "cast_id": 21, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 8}, {"name": "Hallee Hirsh", "character": "Annabelle Fox", "id": 43894, "credit_id": "52fe44fec3a36847f80b6679", "cast_id": 22, "profile_path": "/9uthJuAA79JK2ZaYGc3TpSI1hGB.jpg", "order": 9}, {"name": "Dave Chappelle", "character": "Kevin Jackson", "id": 4169, "credit_id": "52fe44fec3a36847f80b667d", "cast_id": 23, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 10}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe44fec3a36847f80b661f", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 6.1, "runtime": 119}, "9493": {"poster_path": "/i0mKmkxhLQuYBR9JPjShMbse2k6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 216600000, "overview": "Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.", "video": false, "id": 9493, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Twins", "tagline": "Only their mother can tell them apart.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096320", "adult": false, "backdrop_path": "/mc2w5z2McILMrA370edVXfX1x7H.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1988-12-08", "popularity": 0.736577431817345, "original_title": "Twins", "budget": 15000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Julius Benedict", "id": 1100, "credit_id": "52fe44ffc3a36847f80b67f3", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Vincent Benedict", "id": 518, "credit_id": "52fe44ffc3a36847f80b67f7", "cast_id": 2, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Marnie Mason", "id": 11164, "credit_id": "52fe44ffc3a36847f80b67fb", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Chloe Webb", "character": "Linda Mason", "id": 43476, "credit_id": "52fe44ffc3a36847f80b67ff", "cast_id": 4, "profile_path": "/3IDfpWvtVQ2ebI2jHjd9N3jiAD5.jpg", "order": 3}, {"name": "David Caruso", "character": "Al Greco", "id": 16560, "credit_id": "52fe44ffc3a36847f80b6803", "cast_id": 5, "profile_path": "/i251LGpMkOeOqRmqlCpKkNoGdni.jpg", "order": 4}, {"name": "Bonnie Bartlett", "character": "Old Mary Ann Benedict", "id": 32479, "credit_id": "52fe44ffc3a36847f80b6913", "cast_id": 72, "profile_path": "/dQj3hKLMrz4lwzwqZ7tZG1Z1fIi.jpg", "order": 5}, {"name": "Trey Wilson", "character": "Beetroot McKinley", "id": 4039, "credit_id": "52fe44ffc3a36847f80b6843", "cast_id": 21, "profile_path": "/lT3Ia2j6BpNflu3duzK0bU2t83m.jpg", "order": 6}, {"name": "Marshall Bell", "character": "Webster", "id": 3041, "credit_id": "52fe44ffc3a36847f80b6847", "cast_id": 22, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 7}, {"name": "Hugh O'Brian", "character": "Granger", "id": 39753, "credit_id": "52fe44ffc3a36847f80b684b", "cast_id": 23, "profile_path": "/6yAMS9DqAXvHoC997ZFluT9oWyL.jpg", "order": 8}, {"name": "Nehemiah Persoff", "character": "Mitchell Traven", "id": 3160, "credit_id": "52fe44ffc3a36847f80b684f", "cast_id": 24, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 9}, {"name": "Maury Chaykin", "character": "Burt Klane", "id": 7868, "credit_id": "52fe44ffc3a36847f80b6853", "cast_id": 25, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 10}, {"name": "Tony Jay", "character": "Werner", "id": 65598, "credit_id": "52fe44ffc3a36847f80b6857", "cast_id": 26, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 11}, {"name": "Tom McCleister", "character": "Bob Klane (as Thom McCleister)", "id": 154727, "credit_id": "52fe44ffc3a36847f80b685b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "David Efron", "character": "Morris Klane", "id": 555081, "credit_id": "52fe44ffc3a36847f80b685f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Peter Dvorsky", "character": "Peter Garfield", "id": 12483, "credit_id": "52fe44ffc3a36847f80b6863", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Robert Harper", "character": "Gilbert Larsen", "id": 41739, "credit_id": "52fe44ffc3a36847f80b6867", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Rosemary Dunsmore", "character": "Miss Busby", "id": 44275, "credit_id": "52fe44ffc3a36847f80b686b", "cast_id": 31, "profile_path": "/qdEePC5X5yvnKXVv9lsOAp1EOGl.jpg", "order": 16}, {"name": "Lora Milligan", "character": "Stewardess", "id": 555082, "credit_id": "52fe44ffc3a36847f80b686f", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Richard deFaut", "character": "Custodian", "id": 102840, "credit_id": "52fe44ffc3a36847f80b6873", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Richard Portnow", "character": "Chop Shop Owner", "id": 4255, "credit_id": "52fe44ffc3a36847f80b6877", "cast_id": 34, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 19}, {"name": "S.A. Griffin", "character": "Hollywood Biker #1", "id": 91039, "credit_id": "52fe44ffc3a36847f80b687b", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Billy D. Lucas", "character": "Hollywood Biker #2", "id": 555083, "credit_id": "52fe44ffc3a36847f80b687f", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Lew Hopson", "character": "Cop", "id": 141051, "credit_id": "52fe44ffc3a36847f80b6883", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Frances Bay", "character": "Mother Superior", "id": 11794, "credit_id": "52fe44ffc3a36847f80b6887", "cast_id": 38, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 23}, {"name": "Marvin J. McIntyre", "character": "McKinley's Man", "id": 13003, "credit_id": "52fe44ffc3a36847f80b688b", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Cary-Hiroyuki Tagawa", "character": "Oriental Man", "id": 11398, "credit_id": "52fe44ffc3a36847f80b688f", "cast_id": 40, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 25}, {"name": "Wayne Grace", "character": "Cell Guard", "id": 52145, "credit_id": "52fe44ffc3a36847f80b6893", "cast_id": 41, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 26}, {"name": "Thomas Wagner", "character": "Visiting Room Guard", "id": 555084, "credit_id": "52fe44ffc3a36847f80b6897", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Jay Arlen Jones", "character": "Mover #1", "id": 20812, "credit_id": "52fe44ffc3a36847f80b689b", "cast_id": 43, "profile_path": null, "order": 28}, {"name": "Ty Granderson Jones", "character": "Mover #2", "id": 205150, "credit_id": "52fe44ffc3a36847f80b689f", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "Elizabeth Kaitan", "character": "Secretary", "id": 98078, "credit_id": "52fe44ffc3a36847f80b68a3", "cast_id": 45, "profile_path": "/ICQjM24eEGfTbzp181AFtTmkqm.jpg", "order": 30}, {"name": "Tom Platz", "character": "Granger Son #1", "id": 35715, "credit_id": "52fe44ffc3a36847f80b68a7", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Roger Callard", "character": "Granger Son #2", "id": 42083, "credit_id": "52fe44ffc3a36847f80b68ab", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Jason Reitman", "character": "Granger Grandson", "id": 52443, "credit_id": "52fe44ffc3a36847f80b68af", "cast_id": 48, "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "order": 33}, {"name": "Catherine Reitman", "character": "Granger Granddaughter", "id": 154826, "credit_id": "52fe44ffc3a36847f80b68b3", "cast_id": 49, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 34}, {"name": "Dendrie Taylor", "character": "Female Neighbor", "id": 81462, "credit_id": "52fe44ffc3a36847f80b68b7", "cast_id": 50, "profile_path": "/mGFSoz0U4wkGGrt8ZFeEXnLOYr6.jpg", "order": 35}, {"name": "Sven-Ole Thorsen", "character": "Sam Klane", "id": 20761, "credit_id": "52fe44ffc3a36847f80b68bb", "cast_id": 51, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 36}, {"name": "Gus Rethwisch", "character": "Dave Klane", "id": 13004, "credit_id": "52fe44ffc3a36847f80b68bf", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Linda Porter", "character": "Painter", "id": 116229, "credit_id": "52fe44ffc3a36847f80b68c3", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Bruce McBroom", "character": "Handsome Father", "id": 555085, "credit_id": "52fe44ffc3a36847f80b68c7", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Joe Medjuck", "character": "Photographer (as Joseph Medjuck)", "id": 57601, "credit_id": "52fe44ffc3a36847f80b68cb", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Frank Davis", "character": "Security Guard", "id": 555086, "credit_id": "52fe44ffc3a36847f80b68cf", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "John Michael Bolger", "character": "Security Guard", "id": 155961, "credit_id": "52fe44ffc3a36847f80b68d3", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Steve Reevis", "character": "Indian", "id": 4024, "credit_id": "52fe44ffc3a36847f80b68d7", "cast_id": 58, "profile_path": "/1jyaStTyO7omrKhRL3Hil3CWbks.jpg", "order": 43}, {"name": "Terry Bozzio", "character": "Drums", "id": 555088, "credit_id": "52fe44ffc3a36847f80b68db", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Tony Hymas", "character": "Keyboards", "id": 555089, "credit_id": "52fe44ffc3a36847f80b68df", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "Nicolette Larson", "character": "Singer", "id": 555090, "credit_id": "52fe44ffc3a36847f80b68e3", "cast_id": 62, "profile_path": null, "order": 46}, {"name": "Jill Avery", "character": "Bass Player", "id": 555091, "credit_id": "52fe44ffc3a36847f80b68e7", "cast_id": 63, "profile_path": null, "order": 47}, {"name": "Dustin Amy", "character": "Picture Taker #2", "id": 555092, "credit_id": "52fe44ffc3a36847f80b68eb", "cast_id": 64, "profile_path": null, "order": 48}, {"name": "Heather Graham", "character": "Young Mary Ann Benedict", "id": 69122, "credit_id": "52fe44ffc3a36847f80b68ef", "cast_id": 65, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 49}, {"name": "Raymond Storti", "character": "Bar Patron", "id": 555093, "credit_id": "52fe44ffc3a36847f80b68f3", "cast_id": 66, "profile_path": null, "order": 50}, {"name": "Jeff Beck", "character": "Lead Guitarist", "id": 107602, "credit_id": "52fe44ffc3a36847f80b690f", "cast_id": 71, "profile_path": "/bUEf25Vr3OnqhJr3Z4T6cClWVEU.jpg", "order": 51}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a36847f80b683f", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.0, "runtime": 107}, "9494": {"poster_path": "/zyq8wUKk3FVfgkYnI1IVgmypOtG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 296000000, "overview": "Mollie is a single working mother who's out to find the perfect father for her child. Her baby, Mikey, prefers James, a cab driver turned babysitter who has what it takes to make them both happy. But Mollie won't even consider James. It's going to take all the tricks a baby can think of to bring them together before it's too late", "video": false, "id": 9494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Look Who's Talking", "tagline": "He's hip, he's cool, and he's only 3 months old.", "vote_count": 96, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2jEwMXBICqARNmhFFFDu1IvmJCK.jpg", "poster_path": "/ez7hA34uLtOuGIwZvwhlpr53tXh.jpg", "id": 9521, "name": "Look Who's Talking Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097778", "adult": false, "backdrop_path": "/wPpx7kfV4jAjmkeGHmJVRf45XEI.jpg", "production_companies": [{"name": "Management Company Entertainment Group (MCEG)", "id": 8821}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1989-10-13", "popularity": 0.770136332478631, "original_title": "Look Who's Talking", "budget": 7500000, "cast": [{"name": "John Travolta", "character": "James Ubriacco", "id": 8891, "credit_id": "52fe44ffc3a36847f80b6931", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Kirstie Alley", "character": "Mollie", "id": 1796, "credit_id": "52fe44ffc3a36847f80b6935", "cast_id": 2, "profile_path": "/fQ1EOV3dazf05uhrEVqMN2S3T0U.jpg", "order": 1}, {"name": "Olympia Dukakis", "character": "Rosie", "id": 3019, "credit_id": "52fe44ffc3a36847f80b6939", "cast_id": 3, "profile_path": "/A6Lb6pUF1Rr755Oi2vQvxzf0eHH.jpg", "order": 2}, {"name": "George Segal", "character": "Albert", "id": 18364, "credit_id": "52fe44ffc3a36847f80b693d", "cast_id": 4, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 3}, {"name": "Bruce Willis", "character": "Mikey (voice)", "id": 62, "credit_id": "52fe44ffc3a36847f80b6941", "cast_id": 5, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 4}, {"name": "Abe Vigoda", "character": "Grandpa", "id": 3093, "credit_id": "52fe44ffc3a36847f80b6969", "cast_id": 12, "profile_path": "/pUgFgNhow9niMPfTvj3mOzwtfRk.jpg", "order": 5}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a36847f80b6947", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 5.7, "runtime": 93}, "9495": {"poster_path": "/ojrksUOPq4JStY3yW0dTBu9nw1L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144000000, "overview": "Exactly one year after young rock guitarist Eric Draven and his fianc\u00e9e are brutally killed by a ruthless gang of criminals, Draven -- watched over by a hypnotic crow -- returns from the grave to exact revenge.", "video": false, "id": 9495, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Crow", "tagline": "Real love is forever.", "vote_count": 261, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6sGKUZfV4g5d2LT4CsG89o0416W.jpg", "poster_path": "/kfU8OZptlBfR5DL9LNGL301Zmlz.jpg", "id": 9436, "name": "The Crow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109506", "adult": false, "backdrop_path": "/goHhLporbd6eMjJzTi3guLwSsQ3.jpg", "production_companies": [{"name": "Crowvision Inc.", "id": 4028}, {"name": "Entertainment Media Investment Corporation", "id": 4029}, {"name": "Jeff Most Productions", "id": 4030}, {"name": "Edward R. Pressman Film", "id": 6455}, {"name": "Miramax Films", "id": 14}], "release_date": "1994-05-11", "popularity": 0.744967006252569, "original_title": "The Crow", "budget": 15000000, "cast": [{"name": "Brandon Lee", "character": "Eric Draven", "id": 57700, "credit_id": "52fe44ffc3a36847f80b69b7", "cast_id": 1, "profile_path": "/rnsdKIpr7oXzGgy7jWm1NT5HZbS.jpg", "order": 0}, {"name": "Rochelle Davis", "character": "Sarah", "id": 57701, "credit_id": "52fe44ffc3a36847f80b69bb", "cast_id": 2, "profile_path": "/x1UkNLnAe2CDYcapHPo1pQP8zZ6.jpg", "order": 1}, {"name": "Ernie Hudson", "character": "Sergeant Albrecht", "id": 8874, "credit_id": "52fe44ffc3a36847f80b69bf", "cast_id": 3, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 2}, {"name": "Michael Wincott", "character": "Top Dollar", "id": 7486, "credit_id": "52fe44ffc3a36847f80b69c3", "cast_id": 4, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 3}, {"name": "Bai Ling", "character": "Myca", "id": 39126, "credit_id": "52fe44ffc3a36847f80b6a3d", "cast_id": 30, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 4}, {"name": "Sofia Shinas", "character": "Shelly Webster", "id": 42649, "credit_id": "52fe44ffc3a36847f80b6a15", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Anna Thomson", "character": "Darla", "id": 3711, "credit_id": "52fe44ffc3a36847f80b6a19", "cast_id": 20, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 6}, {"name": "David Patrick Kelly", "character": "T-Bird", "id": 1737, "credit_id": "52fe44ffc3a36847f80b6a1d", "cast_id": 21, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 7}, {"name": "Angel David", "character": "Shank", "id": 37207, "credit_id": "52fe44ffc3a36847f80b6a21", "cast_id": 22, "profile_path": "/mOYTIi8x5wBP198tcfkSGLiQ92h.jpg", "order": 8}, {"name": "Laurence Mason", "character": "Tin Tin", "id": 65141, "credit_id": "52fe44ffc3a36847f80b6a25", "cast_id": 23, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 9}, {"name": "Michael Massee", "character": "Funboy", "id": 9289, "credit_id": "52fe44ffc3a36847f80b6a29", "cast_id": 24, "profile_path": "/qbM7GWc86Lw5y6E6eCnokgVaHia.jpg", "order": 10}, {"name": "Tony Todd", "character": "Grange", "id": 19384, "credit_id": "52fe44ffc3a36847f80b6a2d", "cast_id": 25, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 11}, {"name": "Jon Polito", "character": "Gideon", "id": 4253, "credit_id": "52fe44ffc3a36847f80b6a31", "cast_id": 26, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 12}, {"name": "Bill Raymond", "character": "Mickey", "id": 7576, "credit_id": "52fe44ffc3a36847f80b6a35", "cast_id": 27, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 13}, {"name": "Marco Rodr\u00edguez", "character": "Torres", "id": 73132, "credit_id": "52fe44ffc3a36847f80b6a39", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a36847f80b6a11", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 7.0, "runtime": 102}, "50456": {"poster_path": "/2Jr4Rl4Hjiahgh09bjeH8tFhgKp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63782078, "overview": "A 16-year-old girl raised by her father to be the perfect assassin is dispatched on a mission across Europe. Tracked by a ruthless operatives, she faces startling revelations about her existence and questions about her humanity.", "video": false, "id": 50456, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Hanna", "tagline": "Adapt or die.", "vote_count": 344, "homepage": "http://hannathemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0993842", "adult": false, "backdrop_path": "/1jcwDtYfcjR5QdbY6iUxYBpXn8I.jpg", "production_companies": [{"name": "Focus Features", "id": 17301}, {"name": "Holleran Company", "id": 21439}, {"name": "Sechzehnte Babelsberg Film", "id": 23919}, {"name": "Neunte Babelsberg Film", "id": 14684}], "release_date": "2011-04-08", "popularity": 0.681291773816682, "original_title": "Hanna", "budget": 30000000, "cast": [{"name": "Saoirse Ronan", "character": "Hanna", "id": 36592, "credit_id": "52fe47c8c3a36847f8147e6d", "cast_id": 6, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Eric Bana", "character": "Erik Heller", "id": 8783, "credit_id": "52fe47c8c3a36847f8147e71", "cast_id": 7, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 1}, {"name": "Cate Blanchett", "character": "Marissa Wiegler", "id": 112, "credit_id": "52fe47c8c3a36847f8147e75", "cast_id": 8, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Isaacs", "id": 2441, "credit_id": "52fe47c8c3a36847f8147e79", "cast_id": 9, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Vicky Kreips", "character": "Johanna Zadeck", "id": 550548, "credit_id": "52fe47c8c3a36847f8147e89", "cast_id": 15, "profile_path": "/c5ULdp8FQq51Dk7upo5ef8Wo0DW.jpg", "order": 4}, {"name": "John MacMillan", "character": "Lewis", "id": 550549, "credit_id": "52fe47c8c3a36847f8147e8d", "cast_id": 16, "profile_path": "/rM8FYg3Px8b1PToq87FH6bOjUqp.jpg", "order": 5}, {"name": "Tim Beckmann", "character": "Walt", "id": 550550, "credit_id": "52fe47c8c3a36847f8147e91", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Paul Birchard", "character": "Bob", "id": 29617, "credit_id": "52fe47c8c3a36847f8147e95", "cast_id": 18, "profile_path": "/iDEyo8cSZAVy9HsmZMv9mPs5tx4.jpg", "order": 7}, {"name": "Christian Malcolm", "character": "Head of Ops", "id": 550551, "credit_id": "52fe47c8c3a36847f8147e99", "cast_id": 19, "profile_path": "/qFNVmoi4n4Qs6R16BSD2HYdEALw.jpg", "order": 8}, {"name": "Jamie Beamish", "character": "Burton", "id": 203575, "credit_id": "52fe47c8c3a36847f8147e9d", "cast_id": 20, "profile_path": "/4zL7EcA8CK9tvwApu39kqQ8Vu8I.jpg", "order": 9}, {"name": "Jessica Barden", "character": "Sophie", "id": 550552, "credit_id": "52fe47c8c3a36847f8147ea1", "cast_id": 21, "profile_path": "/1YjDemzN4ozUE5Fo79pdoaFlyxy.jpg", "order": 10}, {"name": "Olivia Williams", "character": "Rachel", "id": 11616, "credit_id": "52fe47c8c3a36847f8147ea5", "cast_id": 23, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 11}, {"name": "Jason Flemyng", "character": "Sebastian", "id": 973, "credit_id": "52fe47c8c3a36847f8147ea9", "cast_id": 24, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 12}, {"name": "Michelle Dockery", "character": "False Marissa", "id": 70904, "credit_id": "52fe47c8c3a36847f8147ead", "cast_id": 25, "profile_path": "/lbXBpE9jUITuDWzI9YPOR6Ej1eq.jpg", "order": 13}, {"name": "Sebastian H\u00fclk", "character": "Titch", "id": 550554, "credit_id": "52fe47c8c3a36847f8147eb1", "cast_id": 26, "profile_path": "/1lgRo298X6MZMzf2cWKuELXE74T.jpg", "order": 14}, {"name": "Joel Basman", "character": "Razor", "id": 223477, "credit_id": "52fe47c8c3a36847f8147eb5", "cast_id": 27, "profile_path": "/lU8EmVc3tSVC3TfxBm0u4XzuEgl.jpg", "order": 15}, {"name": "Martin Wuttke", "character": "Knepfler", "id": 49056, "credit_id": "52fe47c8c3a36847f8147eb9", "cast_id": 29, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 16}, {"name": "Aldo Maland", "character": "Miles", "id": 550553, "credit_id": "52fe47c8c3a36847f8147f05", "cast_id": 43, "profile_path": "/y8kWKeqEFozjllaFJ3OT5PvjBF6.jpg", "order": 17}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe47c8c3a36847f8147e69", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.4, "runtime": 111}, "304410": {"poster_path": "/ur6BmIy835Y62eb7AmUqHeRHo0a.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The whole B\u00e9lier family is deaf, except for sixteen year old Paula who is the important translator in her parents' day to day life especially when it comes to matters concerning the family farm. When her music teacher discovers she has a fantastic singing voice and she gets an opportunity to enter a big Radio France contest the whole family's future is set up for big changes.", "video": false, "id": 304410, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The B\u00e9lier Family", "tagline": "", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3547740", "adult": false, "backdrop_path": "/vOaY7zjo2rhrZivwOt3sxcDHbhu.jpg", "production_companies": [{"name": "Jerico", "id": 19491}], "release_date": "2014-12-17", "popularity": 3.22264323024724, "original_title": "La Famille B\u00e9lier", "budget": 0, "cast": [{"name": "Karin Viard", "character": "Gigi B\u00e9lier", "id": 13688, "credit_id": "546cc5d09251413053001a5c", "cast_id": 2, "profile_path": "/aPupVACLe1oKrJrxWfPAihJhxJj.jpg", "order": 1}, {"name": "Fran\u00e7ois Damiens", "character": "Rodolphe B\u00e9lier", "id": 24041, "credit_id": "546cc5d7c3a3680974001939", "cast_id": 3, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 2}, {"name": "Eric Elmosnino", "character": "M. Thomasson", "id": 24465, "credit_id": "546cc5e19251413056001b34", "cast_id": 4, "profile_path": "/a9Lh5oY7YfzCb1SJNvU1w5PTH1j.jpg", "order": 3}, {"name": "Louane Emera", "character": "Paula B\u00e9lier", "id": 1352046, "credit_id": "546cc5e9c3a368097400193c", "cast_id": 5, "profile_path": "/o9ZoVDkSwybtGvwHfXAFJVTOL0P.jpg", "order": 4}, {"name": "Roxane Duran", "character": "Mathilde", "id": 544666, "credit_id": "546cc5f0925141304c001c12", "cast_id": 6, "profile_path": "/qHB2yyVufR6sYUF4Je9lJOPyVTO.jpg", "order": 5}, {"name": "Ilian Bergala", "character": "Gabriel", "id": 1387016, "credit_id": "546cc5f8925141304c001c16", "cast_id": 7, "profile_path": "/bzW1cdoaMLacdFSKncPIpwgVtqs.jpg", "order": 6}, {"name": "Luca Gelberg", "character": "Quentin B\u00e9lier", "id": 1387017, "credit_id": "546cc5ff9251413053001a68", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Mar Sodupe", "character": "Mlle Dos Santos", "id": 22310, "credit_id": "546cc6089251413053001a6c", "cast_id": 9, "profile_path": "/emTYD7MniUYs7nLY73T02Kuoiqk.jpg", "order": 8}], "directors": [{"name": "Eric Lartigau", "department": "Directing", "job": "Director", "credit_id": "546cc58bc3a368097d001b24", "profile_path": "/7tMUb274bl7JqTzguhWnovKx4Pw.jpg", "id": 85340}], "vote_average": 7.9, "runtime": 100}, "17692": {"poster_path": "/jQa0nQvbjwDT79WFi7wt1rAtKRT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42245180, "overview": "This third film in the series follows a group of marine biologists attempting to capture a young great white shark that has wandered into Florida's Sea World Park. However, later it is discovered that the shark's 35-foot mother is also a guest at Sea World. What follows is the shark wreaking havoc on the visitors in the park.", "video": false, "id": 17692, "genres": [{"id": 27, "name": "Horror"}], "title": "Jaws 3-D", "tagline": "A deadly new attraction.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1e2QvI2u7Q4d2admK6Xw0AjLjVp.jpg", "poster_path": "/fgraZdDCvAtBr0MHczmL6raonHd.jpg", "id": 2366, "name": "The Jaws Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085750", "adult": false, "backdrop_path": "/e6xFzaEzjSF4OnJ4f65ovMJE3vu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alan Landsburg Productions", "id": 4904}], "release_date": "1983-07-22", "popularity": 0.522757479233797, "original_title": "Jaws 3-D", "budget": 0, "cast": [{"name": "Dennis Quaid", "character": "Michael 'Mike' Brody", "id": 6065, "credit_id": "52fe47409251416c75092e41", "cast_id": 1, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Bess Armstrong", "character": "Kathryn Morgan", "id": 29710, "credit_id": "52fe47419251416c75092e45", "cast_id": 2, "profile_path": "/fH9l0jd9uYFPlW8iHKFyQnL3ThW.jpg", "order": 1}, {"name": "Simon MacCorkindale", "character": "Philip FitzRoyce", "id": 24743, "credit_id": "52fe47419251416c75092e49", "cast_id": 3, "profile_path": "/pss165HPDGUf6BfPAqNzB0oOf75.jpg", "order": 2}, {"name": "Louis Gossett, Jr.", "character": "Calvin Bouchard", "id": 20959, "credit_id": "52fe47419251416c75092e4d", "cast_id": 4, "profile_path": "/sa2do592mIhtUmtSfO3VN4MuZcv.jpg", "order": 3}, {"name": "John Putch", "character": "Sean Brody", "id": 21475, "credit_id": "52fe47419251416c75092e51", "cast_id": 5, "profile_path": "/9JBDOLXqdJiAvUOU0fO5bWnk292.jpg", "order": 4}, {"name": "Lea Thompson", "character": "Kelly Ann Bukowski", "id": 1063, "credit_id": "52fe47419251416c75092e67", "cast_id": 9, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 5}, {"name": "P. H. Moriarty", "character": "Jack Tate", "id": 989, "credit_id": "5301412b9251412198105ccf", "cast_id": 10, "profile_path": "/hbe7K1D6RDGErosR7C8erdN3ODR.jpg", "order": 6}, {"name": "Dan Blasko", "character": "Dan", "id": 1296367, "credit_id": "530c4144c3a3685c12000bd1", "cast_id": 11, "profile_path": "/mrpd1ozNni2xPYUPzQVDg2vpGIS.jpg", "order": 7}, {"name": "Liz Morris", "character": "Liz", "id": 1296368, "credit_id": "530c416bc3a3685c0c000ba6", "cast_id": 12, "profile_path": "/siKuyIfNxqpmSM1AAKtlvRicVIb.jpg", "order": 8}, {"name": "Lisa Maurer", "character": "Ethel", "id": 1296369, "credit_id": "530c4191c3a3685c28000bff", "cast_id": 13, "profile_path": "/juKal28eHO3bMUAjs8UnkDq4j2k.jpg", "order": 9}, {"name": "Harry Grant", "character": "Shelby Overman", "id": 1296370, "credit_id": "530c41b9c3a3685c03000c50", "cast_id": 14, "profile_path": "/8aV0U4528qgK7yZHlLFL3Bj9Xpn.jpg", "order": 10}, {"name": "Andy Hansen", "character": "Silver Bullet", "id": 1296371, "credit_id": "530c41d5c3a3685c20000ba2", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "P.T. Horn", "character": "Tunnel Guide", "id": 1296372, "credit_id": "530c41f0c3a3685c1a000ba6", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "John Edson", "character": "Bob Woodbury (as John Edson Jr.)", "id": 194357, "credit_id": "530c423ac3a3685c12000be2", "cast_id": 17, "profile_path": "/prRGgqsYDssnEB8HCqwuWSU1T1B.jpg", "order": 13}, {"name": "Kaye Stevens", "character": "Mrs. Kallender", "id": 40394, "credit_id": "530c426ec3a3685c20000baf", "cast_id": 18, "profile_path": "/vutXV8Ln3aijnsF1l1Wwrogx0QF.jpg", "order": 14}, {"name": "Rich Valliere", "character": "Leonard Glass (as Archie Valliere)", "id": 1296373, "credit_id": "530c4298c3a3685c2f000bac", "cast_id": 19, "profile_path": "/qYmhdKc9FhOcw99k8PK2v5x3fb6.jpg", "order": 15}, {"name": "Alonzo Ward", "character": "Fred", "id": 1296374, "credit_id": "530c42c0c3a3685c2f000bb4", "cast_id": 20, "profile_path": "/9N9KEbkGHrkTEYVhsaRxCR7WPLa.jpg", "order": 16}, {"name": "Cathy Cervenka", "character": "Sherrie", "id": 1296375, "credit_id": "530c4303c3a3685c12000bf2", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Jane Horner", "character": "Suzie", "id": 1296376, "credit_id": "530c4327c3a3685c28000c18", "cast_id": 22, "profile_path": "/4lkzjmFOccsffD4EXAKpRnbUnyO.jpg", "order": 18}, {"name": "Kathy Jenkins", "character": "Sheila", "id": 1296377, "credit_id": "530c4340c3a3685c0c000bcc", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Steve Mellor", "character": "Announcer", "id": 171391, "credit_id": "530c435dc3a3685c12000bfa", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Ray Meunnich", "character": "Paramedic", "id": 1296378, "credit_id": "530c4375c3a3685c12000c00", "cast_id": 25, "profile_path": "/q9Sfvg6bCZFGLtdkfryNdKnBswn.jpg", "order": 21}, {"name": "Les Alford", "character": "Reporter", "id": 1296379, "credit_id": "530c4390c3a3685c12000c06", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Gary Anstaett", "character": "Reporter", "id": 1296380, "credit_id": "530c43a8c3a3685c2f000bc4", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Scott Christoffel", "character": "Workman", "id": 1296381, "credit_id": "530c43c7c3a3685c03000c6e", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Debbie Connoyer", "character": "Screaming Skier", "id": 1296382, "credit_id": "530c43e4c3a3685c03000c73", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Mary Davis Duncan", "character": "Reporter At Party", "id": 236986, "credit_id": "530c4406c3a3685c0c000bd5", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "John Floren", "character": "Workman", "id": 1296383, "credit_id": "530c443ac3a3685c1a000c3f", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "John Gaffey", "character": "Rick", "id": 1296384, "credit_id": "530c4456c3a3685c20000bd2", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Joe Gilbert", "character": "Mr. Brit", "id": 1077032, "credit_id": "530c4490c3a3685c20000bd8", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Will Knickerbocker", "character": "Man in Crowd", "id": 139360, "credit_id": "530c44dec3a3685c03000c85", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Jackie Kuntarich", "character": "Skier", "id": 1296385, "credit_id": "530c4517c3a3685c0c000be5", "cast_id": 35, "profile_path": "/hnuVvwYiuMWkYJbeezPSOTK8BfI.jpg", "order": 31}, {"name": "Edward Laurie", "character": "Tourist Dad", "id": 33952, "credit_id": "530c4553c3a3685c0c000bed", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Holly Lisker", "character": "Girl in Tunnel", "id": 1296386, "credit_id": "530c45b5c3a3685c2f000bdd", "cast_id": 45, "profile_path": null, "order": 41}, {"name": "M.J. Lloyd", "character": "Pirate Girl", "id": 1296387, "credit_id": "530c462bc3a3685bfb000c57", "cast_id": 46, "profile_path": null, "order": 42}, {"name": "Carl Mazzocone", "character": "Stand-off Player", "id": 364835, "credit_id": "530c4642c3a3685bee000c09", "cast_id": 47, "profile_path": "/i2A42btpJpx5wmYo6NirqE7yBRA.jpg", "order": 43}, {"name": "Ken Olson", "character": "Red", "id": 1296388, "credit_id": "530c4653c3a3685bee000c0e", "cast_id": 48, "profile_path": null, "order": 44}, {"name": "Ronnie Parks", "character": "Clyde", "id": 1296389, "credit_id": "530c4666c3a3685bf4000c1e", "cast_id": 49, "profile_path": null, "order": 45}, {"name": "Al Pipkin", "character": "Mr. Bluster", "id": 1296390, "credit_id": "530c467ec3a3685c20000bf6", "cast_id": 50, "profile_path": null, "order": 46}, {"name": "Barbara Quinn", "character": "Anxious Tunnel Person", "id": 93424, "credit_id": "530c4696c3a3685c1a000c6a", "cast_id": 51, "profile_path": "/ooOqyaqekHBVhxvVeJmCpelG7ej.jpg", "order": 47}, {"name": "Irene Schubert", "character": "Reporter", "id": 1296391, "credit_id": "530c46b0c3a3685bfb000c67", "cast_id": 52, "profile_path": null, "order": 48}, {"name": "August Schwartz", "character": "Ted", "id": 1296392, "credit_id": "530c46e5c3a3685c1a000c6f", "cast_id": 53, "profile_path": null, "order": 49}, {"name": "Sandy Scott", "character": "Concessionaire", "id": 1216331, "credit_id": "530c46fbc3a3685c20000bfd", "cast_id": 54, "profile_path": null, "order": 50}, {"name": "Tony Shepherd", "character": "Beer Belly on Beach", "id": 1296393, "credit_id": "530c475bc3a3685bf4000c32", "cast_id": 55, "profile_path": null, "order": 51}, {"name": "Dolores Starling", "character": "Charlene Tutt", "id": 1296394, "credit_id": "530c477bc3a3685c2f000c04", "cast_id": 56, "profile_path": "/q5yXHQgcnJjN8mVY06B4haS2jrh.jpg", "order": 52}, {"name": "Tamie Steinke", "character": "Candy", "id": 1296395, "credit_id": "530c479cc3a3685bf4000c39", "cast_id": 57, "profile_path": null, "order": 53}, {"name": "Daniel Stewart", "character": "Ed", "id": 187608, "credit_id": "530c47c2c3a3685bee000c22", "cast_id": 58, "profile_path": null, "order": 54}], "directors": [{"name": "Joe Alves", "department": "Directing", "job": "Director", "credit_id": "52fe47419251416c75092e57", "profile_path": null, "id": 8558}], "vote_average": 4.6, "runtime": 99}, "218": {"poster_path": "/q8ffBuxQlYOHrvPniLgCbmKK4Lv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78371200, "overview": "In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?", "video": false, "id": 218, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Terminator", "tagline": "Your future is in his hands.", "vote_count": 1530, "homepage": "http://www.mgm.com/#/our-titles/1970/The-Terminator/", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0088247", "adult": false, "backdrop_path": "/6yFoLNQgFdVbA8TZMdfgVpszOla.jpg", "production_companies": [{"name": "Hemdale Film Corporation", "id": 469}, {"name": "Pacific Western Production", "id": 7746}, {"name": "Euro Film Funding", "id": 7745}, {"name": "Cinema 84", "id": 4764}], "release_date": "1984-10-26", "popularity": 1.90411942138247, "original_title": "The Terminator", "budget": 6400000, "cast": [{"name": "Arnold Schwarzenegger", "character": "The Terminator", "id": 1100, "credit_id": "52fe4228c3a36847f8008581", "cast_id": 26, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Michael Biehn", "character": "Kyle Reese", "id": 2712, "credit_id": "52fe4228c3a36847f800851f", "cast_id": 6, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 1}, {"name": "Linda Hamilton", "character": "Sarah Connor", "id": 2713, "credit_id": "52fe4228c3a36847f8008523", "cast_id": 7, "profile_path": "/bxsVrRYOpAL0vI6X7nnEsyLvZ8H.jpg", "order": 2}, {"name": "Paul Winfield", "character": "Lieutenant Ed Traxler", "id": 1818, "credit_id": "52fe4228c3a36847f8008527", "cast_id": 8, "profile_path": "/6oc80tWtRg8pRAPXOhV3FQBvBR5.jpg", "order": 3}, {"name": "Lance Henriksen", "character": "Detective Vukovich", "id": 2714, "credit_id": "52fe4228c3a36847f800852b", "cast_id": 9, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 4}, {"name": "Bess Motta", "character": "Ginger Ventura", "id": 2715, "credit_id": "52fe4228c3a36847f800852f", "cast_id": 10, "profile_path": "/pHbJBDT0bYimybwMGPs6AnO59ZN.jpg", "order": 5}, {"name": "Earl Boen", "character": "Dr. Peter Silberman", "id": 2716, "credit_id": "52fe4228c3a36847f8008533", "cast_id": 11, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 6}, {"name": "Rick Rossovich", "character": "Matt Buchanan", "id": 2717, "credit_id": "52fe4228c3a36847f8008537", "cast_id": 12, "profile_path": "/f2bFBUT1WRImsKVkSq7A3yACFAa.jpg", "order": 7}, {"name": "Bill Paxton", "character": "Punk Leader", "id": 2053, "credit_id": "52fe4228c3a36847f800853b", "cast_id": 13, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 8}, {"name": "Brian Thompson", "character": "Punk", "id": 2719, "credit_id": "52fe4228c3a36847f800853f", "cast_id": 14, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 9}, {"name": "Franco Columbu", "character": "Future Terminator", "id": 35710, "credit_id": "52fe4228c3a36847f800856d", "cast_id": 22, "profile_path": "/Ajjtqewy65900sHWWkPMdhTZ2E4.jpg", "order": 10}, {"name": "Dick Miller", "character": "Pawnshop Clerk", "id": 102441, "credit_id": "52fe4228c3a36847f800857d", "cast_id": 25, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 11}, {"name": "Joe Farago", "character": "TV Anchorman", "id": 1378212, "credit_id": "544e246f0e0a26134b000f4f", "cast_id": 55, "profile_path": null, "order": 12}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4228c3a36847f8008515", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 6.9, "runtime": 108}, "9502": {"poster_path": "/nhOMC1WJKAcX1rB9tMfwGyHNhom.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 631744560, "overview": "When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the \"chosen one\" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.", "video": false, "id": 9502, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Kung Fu Panda", "tagline": "Prepare for awesomeness.", "vote_count": 1135, "homepage": "http://www.kungfupanda.com/", "belongs_to_collection": {"backdrop_path": "/uDosHOFFWtF5YteBRygHALFqLw2.jpg", "poster_path": "/2QT6PuYXY0T2Ry9rX0JKQYTrbwx.jpg", "id": 77816, "name": "Kung Fu Panda Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0441773", "adult": false, "backdrop_path": "/UJwhgwAxU42cm9XKncO9boFAEV.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2008-06-05", "popularity": 2.16449829267269, "original_title": "Kung Fu Panda", "budget": 130000000, "cast": [{"name": "Jack Black", "character": "Po (voice)", "id": 70851, "credit_id": "52fe4500c3a36847f80b6ca3", "cast_id": 3, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Shifu (voice)", "id": 4483, "credit_id": "52fe4500c3a36847f80b6cab", "cast_id": 5, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Angelina Jolie", "character": "Master Tigress (voice)", "id": 11701, "credit_id": "52fe4500c3a36847f80b6ca7", "cast_id": 4, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 2}, {"name": "Jackie Chan", "character": "Master Monkey (voice)", "id": 18897, "credit_id": "52fe4500c3a36847f80b6cb3", "cast_id": 7, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 3}, {"name": "Lucy Liu", "character": "Master Viper (voice)", "id": 140, "credit_id": "52fe4500c3a36847f80b6caf", "cast_id": 6, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 4}, {"name": "David Cross", "character": "Crane (voice)", "id": 212, "credit_id": "52fe4500c3a36847f80b6ce7", "cast_id": 17, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 5}, {"name": "Randall Duk Kim", "character": "Oogway (voice)", "id": 9462, "credit_id": "52fe4500c3a36847f80b6ceb", "cast_id": 18, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 6}, {"name": "James Hong", "character": "Mr. Ping (voice)", "id": 20904, "credit_id": "52fe4500c3a36847f80b6cef", "cast_id": 19, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 7}, {"name": "Dan Fogler", "character": "Zeng (voice)", "id": 58873, "credit_id": "52fe4500c3a36847f80b6cdb", "cast_id": 14, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 8}, {"name": "Ian McShane", "character": "Tai Lung (voice)", "id": 6972, "credit_id": "52fe4500c3a36847f80b6cdf", "cast_id": 15, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 9}, {"name": "Seth Rogen", "character": "Mantis (voice)", "id": 19274, "credit_id": "52fe4500c3a36847f80b6ce3", "cast_id": 16, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 10}, {"name": "Michael Clarke Duncan", "character": "Commander Vachir (voice)", "id": 61981, "credit_id": "52fe4500c3a36847f80b6cf3", "cast_id": 20, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 11}, {"name": "Wayne Knight", "character": "Gang Boss (voice)", "id": 4201, "credit_id": "551e125992514137480020dd", "cast_id": 21, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 12}, {"name": "Kyle Gass", "character": "KG Shaw (voice)", "id": 22297, "credit_id": "551e134d925141173f001905", "cast_id": 22, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 13}, {"name": "JR Reed", "character": "JR Shaw (voice)", "id": 938432, "credit_id": "551e1364c3a3682eaf001930", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Laura Kightlinger", "character": "Awed Ninja (voice)", "id": 61409, "credit_id": "551e137b925141374f001ccc", "cast_id": 24, "profile_path": "/vfBERhrH1yfyTS0tD9JJ3DkJ6JM.jpg", "order": 15}, {"name": "Tanya Haden", "character": "Smitten Bunny (voice)", "id": 1448983, "credit_id": "551e13a69251413756001e0d", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Stephen Kearin", "character": "Gong Pig / Grateful Bunny (voice)", "id": 1448984, "credit_id": "551e13cc9251413743002017", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Mark Osborne", "character": "Pig Patron (voice)", "id": 57741, "credit_id": "551e143992514114d7000b44", "cast_id": 27, "profile_path": "/uX4TukmZ2bqo164mtE1TEKnQSu1.jpg", "order": 18}, {"name": "John Stevenson", "character": "Rhino Guard (voice)", "id": 57742, "credit_id": "551e1494c3a3683a14001f5e", "cast_id": 29, "profile_path": "/fWrTUGH0BkT3zfdfB80JqFtsZ2I.jpg", "order": 19}, {"name": "Jeremy Shipp", "character": "Blind Gator (voice)", "id": 1448987, "credit_id": "551e14b1925141374f001cf9", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Melissa Cobb", "character": "Bunny Mom (voice)", "id": 1448989, "credit_id": "551e14df92514114d7000b66", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Kent Osborne", "character": "Pig Fan (voice)", "id": 45416, "credit_id": "552e2e15c3a3686be200248f", "cast_id": 38, "profile_path": "/iszbGHIPuEMa1YDIiJFST3pZfLy.jpg", "order": 22}, {"name": "Emily Burns", "character": "Bunny Fan 1 (voice)", "id": 1448990, "credit_id": "551e159d925141374800216e", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Stephanie Harvey", "character": "Bunny Fan 2 (voice)", "id": 1448991, "credit_id": "551e15b2c3a3682eaf001996", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Riley Osborne", "character": "Baby Tai Lung (voice)", "id": 1397911, "credit_id": "551e166dc3a3683a0d002093", "cast_id": 35, "profile_path": null, "order": 25}], "directors": [{"name": "Mark Osborne", "department": "Directing", "job": "Director", "credit_id": "52fe4500c3a36847f80b6c99", "profile_path": "/uX4TukmZ2bqo164mtE1TEKnQSu1.jpg", "id": 57741}, {"name": "John Stevenson", "department": "Directing", "job": "Director", "credit_id": "52fe4500c3a36847f80b6c9f", "profile_path": "/fWrTUGH0BkT3zfdfB80JqFtsZ2I.jpg", "id": 57742}], "vote_average": 6.6, "runtime": 90}, "9506": {"poster_path": "/wsrZrb2Ng3eO4TYmeBufwdKeC3a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135645823, "overview": "After a misunderstanding aboard an airplane that escalates out of control, the mild-mannered Dave Buznik is ordered by Judge Daniels to attend anger management sessions run by Doctor Buddy Rydell, which are filled with highly eccentric and volatile men and women. Buddy's unorthodox approach to therapy is confrontational and abrasive and Dave is bewildered by it. Then, after yet another mishap, Judge Daniels orders Dave to step up his therapy or wind up in jail. So, Buddy moves in with Dave to help him battle his inner demons. Buddy himself has no inner demons since he acts out at every opportunity and that includes making lewd comments about Dave's girlfriend Linda and goading Dave into confronting every slight, past or present, head-on. But Buddy finally goes too far and Dave must decide whether to crawl back into his shell or stand up for himself. Could it be that Buddy's confounding and contradictory treatment is just what the doctor ordered?", "video": false, "id": 9506, "genres": [{"id": 35, "name": "Comedy"}], "title": "Anger Management", "tagline": "Feel the Love.", "vote_count": 241, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0305224", "adult": false, "backdrop_path": "/oxngOdJwaKDOwwkQHDTF47GZV4Q.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2003-04-11", "popularity": 1.0662863460697, "original_title": "Anger Management", "budget": 75000000, "cast": [{"name": "Adam Sandler", "character": "Dave Buznik", "id": 19292, "credit_id": "52fe4501c3a36847f80b6e23", "cast_id": 13, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Jack Nicholson", "character": "Dr. Buddy Rydell", "id": 514, "credit_id": "52fe4501c3a36847f80b6e27", "cast_id": 14, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Linda", "id": 3141, "credit_id": "52fe4501c3a36847f80b6e2b", "cast_id": 15, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Luis Guzm\u00e1n", "character": "Lou", "id": 40481, "credit_id": "52fe4501c3a36847f80b6e2f", "cast_id": 16, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 3}, {"name": "Woody Harrelson", "character": "Galaxia / Security Guard Gary", "id": 57755, "credit_id": "52fe4501c3a36847f80b6e33", "cast_id": 17, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 4}, {"name": "John Turturro", "character": "Chuck", "id": 1241, "credit_id": "52fe4501c3a36847f80b6e37", "cast_id": 18, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 5}, {"name": "Kevin Nealon", "character": "Sam, Dave's Lawyer", "id": 58478, "credit_id": "52fe4501c3a36847f80b6e3b", "cast_id": 19, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 6}, {"name": "Allen Covert", "character": "Andrew", "id": 20818, "credit_id": "52fe4501c3a36847f80b6e3f", "cast_id": 20, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 7}, {"name": "Heather Graham", "character": "Kendra", "id": 69122, "credit_id": "52fe4501c3a36847f80b6e43", "cast_id": 21, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 8}, {"name": "Krista Allen", "character": "Stacy", "id": 21858, "credit_id": "52fe4501c3a36847f80b6e47", "cast_id": 22, "profile_path": "/aPNoOzxPicfSzPv2Qv7Ccex8WJL.jpg", "order": 9}, {"name": "Derek Jeter", "character": "Himself", "id": 147445, "credit_id": "52fe4501c3a36847f80b6e4b", "cast_id": 23, "profile_path": "/opqx8MSL4bsV3hGDzwlER5EzI1h.jpg", "order": 10}, {"name": "John C. Reilly", "character": "", "id": 4764, "credit_id": "52fe4501c3a36847f80b6e4f", "cast_id": 24, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 11}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe4501c3a36847f80b6ddd", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 5.9, "runtime": 106}, "107811": {"poster_path": "/wNN7MnoQn1nB1Kt8ybehJ1HCxJe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48065672, "overview": "Brilliant student Jeff Chang has the most important interview of his life tomorrow. But today is still his birthday, what starts off as a casual celebration with friends evolves into a night of debauchery that risks to derail his life plan.", "video": false, "id": 107811, "genres": [{"id": 35, "name": "Comedy"}], "title": "21 & Over", "tagline": "Finally.", "vote_count": 413, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1711425", "adult": false, "backdrop_path": "/f7tg3qxLNPSYiqyZypRMRY3yDg2.jpg", "production_companies": [{"name": "Mandeville Films", "id": 10227}, {"name": "Relativity Media", "id": 7295}], "release_date": "2013-03-01", "popularity": 1.07965079465958, "original_title": "21 & Over", "budget": 13000000, "cast": [{"name": "Miles Teller", "character": "Miller", "id": 996701, "credit_id": "52fe4a87c3a36847f81d3615", "cast_id": 4, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 0}, {"name": "Skylar Astin", "character": "Casey", "id": 73128, "credit_id": "52fe4a88c3a36847f81d363d", "cast_id": 13, "profile_path": "/Aj1gqLbzKvcxE61RAR3456RPQ0V.jpg", "order": 1}, {"name": "Justin Chon", "character": "Jeff Chang", "id": 65225, "credit_id": "52fe4a87c3a36847f81d361d", "cast_id": 6, "profile_path": "/4hTyiQgqp6MZgFeW7DosqX4ifUK.jpg", "order": 2}, {"name": "Sarah Mason", "character": "Nicole", "id": 131723, "credit_id": "52fe4a87c3a36847f81d3619", "cast_id": 5, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 3}, {"name": "Jonathan Keltz", "character": "Randy", "id": 95137, "credit_id": "53e0e005c3a3686c56003a97", "cast_id": 17, "profile_path": "/gU11hhT43Aj7NSNaGprBxYatqPp.jpg", "order": 4}, {"name": "Fran\u00e7ois Chau", "character": "Dr. Chang", "id": 60851, "credit_id": "52fe4a87c3a36847f81d3625", "cast_id": 8, "profile_path": "/r8EocoGAJVky0bQ6gyfxcabuTPz.jpg", "order": 5}, {"name": "Samantha Futerman", "character": "Sally Huang", "id": 19859, "credit_id": "52fe4a87c3a36847f81d362d", "cast_id": 10, "profile_path": "/9Wx5VKwW60g7WEREbufz7CYKamC.jpg", "order": 6}, {"name": "Daniel Booko", "character": "Julian", "id": 183066, "credit_id": "52fe4a87c3a36847f81d3629", "cast_id": 9, "profile_path": "/zVTpVwVl8idwr6rhQBDfZ1DFTkv.jpg", "order": 7}, {"name": "Danielle Hartnett", "character": "(voice)", "id": 1002409, "credit_id": "52fe4a88c3a36847f81d3641", "cast_id": 14, "profile_path": "/wvvMbV1tdVeE9pyiBPFBATbcTQj.jpg", "order": 8}, {"name": "Basil Harris", "character": "Campus Cop #2", "id": 176048, "credit_id": "52fe4a88c3a36847f81d3645", "cast_id": 15, "profile_path": "/syZPH3wa6JzLrvOiPlP0z72ZEW2.jpg", "order": 9}, {"name": "Josie Loren", "character": "Pledge Aguilar", "id": 146516, "credit_id": "52fe4a88c3a36847f81d3649", "cast_id": 16, "profile_path": "/5uNgiW4jcq0eINKg8P9LZHqLVv4.jpg", "order": 10}], "directors": [{"name": "Scott Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a36847f81d3605", "profile_path": "/neOJNZYO1DYNa2eEqJHBSUXBxqM.jpg", "id": 226089}, {"name": "Jon Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe4a87c3a36847f81d360b", "profile_path": null, "id": 52114}], "vote_average": 5.6, "runtime": 93}, "9509": {"poster_path": "/qAbRLPe8T7ehKzr1Tgo78T7ASrS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130293714, "overview": "Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.", "video": false, "id": 9509, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Man on Fire", "tagline": "Creasy's art is death, and he is about to paint his masterpiece.", "vote_count": 502, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0328107", "adult": false, "backdrop_path": "/kkR6zvcaolpnsMcgiCKrlcxIqVR.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Epsilon Motion Pictures", "id": 1171}], "release_date": "2004-04-23", "popularity": 1.47501940892867, "original_title": "Man on Fire", "budget": 70000000, "cast": [{"name": "Denzel Washington", "character": "Creasy", "id": 5292, "credit_id": "52fe4501c3a36847f80b6edb", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Dakota Fanning", "character": "Pita", "id": 501, "credit_id": "52fe4501c3a36847f80b6edf", "cast_id": 2, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 1}, {"name": "Marc Anthony", "character": "Samuel", "id": 47775, "credit_id": "52fe4501c3a36847f80b6ee3", "cast_id": 3, "profile_path": "/b6E5BCQkOXlxT1E4nHRyOpehuYU.jpg", "order": 2}, {"name": "Radha Mitchell", "character": "Lisa", "id": 8329, "credit_id": "52fe4501c3a36847f80b6ee7", "cast_id": 4, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 3}, {"name": "Christopher Walken", "character": "Rayburn", "id": 4690, "credit_id": "52fe4501c3a36847f80b6eeb", "cast_id": 5, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 4}, {"name": "Giancarlo Giannini", "character": "Manzano", "id": 3753, "credit_id": "52fe4501c3a36847f80b6f37", "cast_id": 18, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 5}, {"name": "Rachel Ticotin", "character": "Mariana", "id": 10768, "credit_id": "52fe4501c3a36847f80b6f3b", "cast_id": 19, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 6}, {"name": "Jes\u00fas Ochoa", "character": "Fuentes", "id": 69865, "credit_id": "52fe4501c3a36847f80b6f3f", "cast_id": 20, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 7}, {"name": "Mickey Rourke", "character": "Jordan", "id": 2295, "credit_id": "52fe4501c3a36847f80b6f43", "cast_id": 21, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 8}, {"name": "Angelina Pel\u00e1ez", "character": "Sister Anna", "id": 23877, "credit_id": "52fe4501c3a36847f80b6f47", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Gustavo S\u00e1nchez Parra", "character": "Daniel Sanchez", "id": 544146, "credit_id": "52fe4501c3a36847f80b6f4b", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4501c3a36847f80b6ef7", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 7.0, "runtime": 146}, "9513": {"poster_path": "/aagx3t2Xv7R26hcqzrayTT28Yww.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141702264, "overview": "Garfield is back and this time Garfield and his canine sidekick Odie follows their owner, Jon Arbuckle, to England, the U.K. may never recover, as Garfield is mistaken for a look-alike, regal cat who has inherited a castle.", "video": false, "id": 9513, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Garfield: A Tail of Two Kitties", "tagline": "The Ego has landed.", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bd1aICMrmcz94fjTibCpuQrQVJg.jpg", "poster_path": "/fPCiS9fijCf8zHaddw2QHL6SLgK.jpg", "id": 86115, "name": "Garfield Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455499", "adult": false, "backdrop_path": "/wF5fjrTvBjceOc0lKbUp9JKBOYy.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2006-06-15", "popularity": 0.516653039127517, "original_title": "Garfield: A Tail of Two Kitties", "budget": 0, "cast": [{"name": "Jennifer Love Hewitt", "character": "Liz", "id": 33259, "credit_id": "52fe4501c3a36847f80b7077", "cast_id": 3, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 0}, {"name": "Billy Connolly", "character": "Dargis", "id": 9188, "credit_id": "52fe4501c3a36847f80b707b", "cast_id": 4, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 1}, {"name": "Ian Abercrombie", "character": "Smithee", "id": 11764, "credit_id": "52fe4501c3a36847f80b707f", "cast_id": 5, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Jon Arbuckle", "id": 33654, "credit_id": "52fe4502c3a36847f80b70bf", "cast_id": 16, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Tim Curry", "character": "Prince (voice)", "id": 13472, "credit_id": "52fe4502c3a36847f80b70c3", "cast_id": 18, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 4}, {"name": "Bill Murray", "character": "Garfield (voice)", "id": 1532, "credit_id": "52fe4502c3a36847f80b70c7", "cast_id": 19, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 5}, {"name": "Roger Rees", "character": "Mr. Hobbs", "id": 16407, "credit_id": "52fe4502c3a36847f80b70cb", "cast_id": 20, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 6}, {"name": "Lucy Davis", "character": "Abby", "id": 11111, "credit_id": "52fe4502c3a36847f80b70cf", "cast_id": 21, "profile_path": "/60IfOPYBMaJwUt0M9UJ2QJCxH4S.jpg", "order": 7}, {"name": "Lena Cardwell", "character": "Teenage Tourist", "id": 151260, "credit_id": "52fe4502c3a36847f80b70d3", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Veronica Alicino", "character": "Veterinary Assistant", "id": 49916, "credit_id": "52fe4502c3a36847f80b70d7", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Jane Carr", "character": "Mrs. Whitney", "id": 42000, "credit_id": "52fe4502c3a36847f80b70db", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Oliver Muirhead", "character": "Mr. Greene", "id": 93035, "credit_id": "52fe4502c3a36847f80b70df", "cast_id": 25, "profile_path": "/vyWab6wD6r3yP56FA87hwInmdPZ.jpg", "order": 11}, {"name": "J. B. Blanc", "character": "Hotel Porter", "id": 136152, "credit_id": "52fe4502c3a36847f80b70e3", "cast_id": 26, "profile_path": "/6P15QAzQKhaaE60LMsyepnbdrjS.jpg", "order": 12}, {"name": "Vernee Watson-Johnson", "character": "Tourist #2", "id": 157085, "credit_id": "52fe4502c3a36847f80b70e7", "cast_id": 27, "profile_path": "/dRXXPoeAAbl1PhURCJfKCDoZiUn.jpg", "order": 13}, {"name": "Russell Milton", "character": "Bobby", "id": 956753, "credit_id": "52fe4502c3a36847f80b70eb", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Ben Falcone", "character": "American Tourist", "id": 170820, "credit_id": "52fe4502c3a36847f80b70ef", "cast_id": 29, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 15}, {"name": "Greg Ellis", "character": "Nigel", "id": 4031, "credit_id": "52fe4502c3a36847f80b70f3", "cast_id": 30, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 16}, {"name": "Bob Hoskins", "character": "Winston", "id": 382, "credit_id": "52fe4502c3a36847f80b70f7", "cast_id": 31, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 17}, {"name": "Sharon Osbourne", "character": "Christophe", "id": 133196, "credit_id": "52fe4502c3a36847f80b70fb", "cast_id": 32, "profile_path": "/tISENyjIYi2ueZjSlSZi9Q9lecm.jpg", "order": 18}, {"name": "S\u00e9bastien Cauet", "character": "Garfield (french voice)", "id": 1155949, "credit_id": "52fe4502c3a36847f80b70ff", "cast_id": 33, "profile_path": "/rJIycdGmHO4IuuKF7KQpLopESop.jpg", "order": 19}], "directors": [{"name": "Tim Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4502c3a36847f80b7085", "profile_path": "/jN6KyRKLoI1UgC1EnyAEYJ5uDYy.jpg", "id": 49903}], "vote_average": 5.2, "runtime": 78}, "1586": {"poster_path": "/f5t7Df50xjniLlE80ty2dYsZBqI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92913171, "overview": "Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.", "video": false, "id": 1586, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Secret Window", "tagline": "The most important part of a story is the ending.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363988", "adult": false, "backdrop_path": "/ojsY0XyCSsJvm0n7YTwumQcvBqT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Grand Slam Productions", "id": 23651}, {"name": "Pariah Entertainment Group", "id": 1271}], "release_date": "2004-03-11", "popularity": 0.628937547335468, "original_title": "Secret Window", "budget": 40000000, "cast": [{"name": "Johnny Depp", "character": "Mort Rainey", "id": 85, "credit_id": "52fe4301c3a36847f8033633", "cast_id": 1, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "John Turturro", "character": "John Shooter", "id": 1241, "credit_id": "52fe4301c3a36847f8033637", "cast_id": 2, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Maria Bello", "character": "Amy Rainey", "id": 49, "credit_id": "52fe4301c3a36847f803363b", "cast_id": 3, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 2}, {"name": "Timothy Hutton", "character": "Ted Milner", "id": 16327, "credit_id": "52fe4301c3a36847f803363f", "cast_id": 4, "profile_path": "/qSLWuXpkuuqAXzI3dQkYshXAv2O.jpg", "order": 3}, {"name": "Charles S. Dutton", "character": "Ken Karsch", "id": 17764, "credit_id": "52fe4301c3a36847f8033643", "cast_id": 5, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 4}, {"name": "Len Cariou", "character": "Sheriff Dave Newsome", "id": 41247, "credit_id": "537b40a4c3a3685e0d001616", "cast_id": 14, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 6}, {"name": "Joan Heney", "character": "Mrs. Garvey", "id": 59199, "credit_id": "537b40cac3a3685e1a0015c9", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "John Dunn-Hill", "character": "Tom Greenleaf (as John Dunn Hill)", "id": 218899, "credit_id": "537b40e4c3a3685e1a0015ce", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Vlasta Vr\u00e1na", "character": "Fire Chief Wickersham", "id": 58169, "credit_id": "537b40fec3a3685e41001870", "cast_id": 17, "profile_path": "/ug27TmlJNKvhJEa6xWGCpPz4o2q.jpg", "order": 9}, {"name": "Matt Holland", "character": "Detective Bradley", "id": 108302, "credit_id": "537b411ac3a3685e290017a6", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Gillian Ferrabee", "character": "Fran Evans", "id": 1233017, "credit_id": "537b4134c3a3685e290017aa", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Bronwen Mantel", "character": "Greta Bowie", "id": 141789, "credit_id": "537b41950e0a267fea0014d9", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Elizabeth Marleau", "character": "Juliet Stoker", "id": 206652, "credit_id": "537b43860e0a26012d0016bb", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Kyle Allatt", "character": "Busboy", "id": 1321651, "credit_id": "537b43980e0a267ffb001729", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Richard Jutras", "character": "Motel Manager", "id": 1225492, "credit_id": "537b43b40e0a267ff4001708", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033649", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 6.3, "runtime": 96}, "9522": {"poster_path": "/vlnDz1Y3IcBhPyQAqAVtNghx4Eq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 285176741, "overview": "John and his buddy Jeremy are emotional criminals who know how to use a woman's hopes and dreams for their own carnal gain. And their modus operandi? Crashing weddings. Normally, they meet guests who want to toast the romantic day with a random hook-up. But when John meets Claire, he discovers what true love -- and heartache -- feels like.", "video": false, "id": 9522, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Wedding Crashers", "tagline": "Life's a Party. Crash It.", "vote_count": 357, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396269", "adult": false, "backdrop_path": "/4V0hNC6SEbm836eg2BeaJvx1ZEO.jpg", "production_companies": [{"name": "Avery Pix", "id": 1565}, {"name": "New Line Cinema", "id": 12}, {"name": "Tapestry Films", "id": 870}], "release_date": "2005-07-14", "popularity": 1.38118835894262, "original_title": "Wedding Crashers", "budget": 40000000, "cast": [{"name": "Owen Wilson", "character": "John Beckwith", "id": 887, "credit_id": "52fe4503c3a36847f80b7507", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Vince Vaughn", "character": "Jeremy Grey", "id": 4937, "credit_id": "52fe4503c3a36847f80b750b", "cast_id": 2, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Secretary William Cleary", "id": 4690, "credit_id": "52fe4503c3a36847f80b750f", "cast_id": 3, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Rachel McAdams", "character": "Claire Cleary", "id": 53714, "credit_id": "52fe4503c3a36847f80b7513", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 3}, {"name": "Isla Fisher", "character": "Gloria Cleary", "id": 52848, "credit_id": "52fe4503c3a36847f80b7565", "cast_id": 18, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 4}, {"name": "Jane Seymour", "character": "Kathleen Cleary", "id": 10223, "credit_id": "52fe4503c3a36847f80b7569", "cast_id": 19, "profile_path": "/tBWYbLSieHshqVhy1EXlv12mBjs.jpg", "order": 5}, {"name": "Bradley Cooper", "character": "Zachary 'Sack' Lodge", "id": 51329, "credit_id": "52fe4503c3a36847f80b756d", "cast_id": 20, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 6}, {"name": "Henry Gibson", "character": "Father O'Neil", "id": 19439, "credit_id": "52fe4503c3a36847f80b7571", "cast_id": 21, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 7}, {"name": "Keir O'Donnell", "character": "Todd Cleary", "id": 39213, "credit_id": "52fe4503c3a36847f80b7575", "cast_id": 22, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 8}, {"name": "David Conrad", "character": "Trap", "id": 43479, "credit_id": "52fe4503c3a36847f80b7579", "cast_id": 23, "profile_path": "/l8gtpaQ6LuR8nvYbr3iq9ys7hQx.jpg", "order": 9}, {"name": "Ron Canada", "character": "Randolph", "id": 85170, "credit_id": "52fe4503c3a36847f80b757d", "cast_id": 24, "profile_path": "/wN1myF7qnxJCks6OuS3BXVlShSG.jpg", "order": 10}, {"name": "Ellen Dow", "character": "Grandma Mary Cleary", "id": 85171, "credit_id": "52fe4503c3a36847f80b7581", "cast_id": 25, "profile_path": "/suREaXoLKSBhJPsMXnD6P0EnGXf.jpg", "order": 11}, {"name": "Dwight Yoakam", "character": "Mr. Kroeger", "id": 20309, "credit_id": "52fe4503c3a36847f80b7585", "cast_id": 26, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 12}, {"name": "Rebecca De Mornay", "character": "Mrs. Kroeger", "id": 28412, "credit_id": "52fe4503c3a36847f80b7589", "cast_id": 27, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 13}, {"name": "Jennifer Alden", "character": "Christina Cleary", "id": 180327, "credit_id": "52fe4503c3a36847f80b758d", "cast_id": 28, "profile_path": "/6J4SJiv4HbcowULJiRS3GeOYX8V.jpg", "order": 14}, {"name": "Kathryn Joosten", "character": "Chazz's Mom", "id": 106935, "credit_id": "52fe4503c3a36847f80b7591", "cast_id": 29, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 15}, {"name": "Will Ferrell", "character": "Chazz Reinhold", "id": 23659, "credit_id": "52fe4503c3a36847f80b7595", "cast_id": 30, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 16}, {"name": "Diora Baird", "character": "Vivian", "id": 59263, "credit_id": "52fe4504c3a36847f80b7599", "cast_id": 31, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 17}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe4503c3a36847f80b7519", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 6.2, "runtime": 119}, "42297": {"poster_path": "/j7AwTMAauPuwO8mixpU6SSPuPeZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89519773, "overview": "The Burlesque Lounge has its best days behind it. Tess, a retired dancer and owner of the venue, struggles to keep the aging theater alive, facing all kinds of financial and artistic challenges. With the Lounge's troupe members becoming increasingly distracted by personal problems and a threat coming from a wealthy businessman's quest to buy the spot from Tess, the good fortune seems to have abandoned the club altogether. Meanwhile, the life of Ali, a small-town girl from Iowa, is about to change dramatically. Hired by Tess as a waitress at the Lounge, Ali escapes a hollow past and quickly falls in love with the art of burlesque. Backed by newfound friends amongst the theater's crew, she manages to fulfill her dreams of being on stage herself. Things take a dramatic turn though when Ali's big voice makes her become the main attraction of the revue", "video": false, "id": 42297, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Burlesque", "tagline": "It takes a legend... to make a star", "vote_count": 125, "homepage": "http://www.burlesquethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1126591", "adult": false, "backdrop_path": "/fNsWLoZUdOhRriHS5AHcbb4n3da.jpg", "production_companies": [{"name": "Bedford Falls Productions", "id": 348}], "release_date": "2010-11-23", "popularity": 0.358291361335644, "original_title": "Burlesque", "budget": 55000000, "cast": [{"name": "Cher", "character": "Tess", "id": 38225, "credit_id": "52fe45fac3a36847f80e5717", "cast_id": 1, "profile_path": "/nLi4qPXWEuhjc31bmbeINLVZ8zS.jpg", "order": 0}, {"name": "Christina Aguilera", "character": "Ali", "id": 53397, "credit_id": "52fe45fac3a36847f80e571b", "cast_id": 2, "profile_path": "/syaj20GgGkFaHtt0khpCZaJD5DJ.jpg", "order": 1}, {"name": "Eric Dane", "character": "Markus", "id": 58115, "credit_id": "52fe45fac3a36847f80e571f", "cast_id": 3, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 2}, {"name": "Cam Gigandet", "character": "Jack", "id": 55086, "credit_id": "52fe45fac3a36847f80e5723", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 3}, {"name": "Julianne Hough", "character": "Georgia", "id": 143240, "credit_id": "52fe45fac3a36847f80e5727", "cast_id": 5, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 4}, {"name": "Alan Cumming", "character": "Alexis", "id": 10697, "credit_id": "52fe45fac3a36847f80e572b", "cast_id": 6, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 5}, {"name": "Peter Gallagher", "character": "Vince", "id": 8212, "credit_id": "52fe45fac3a36847f80e572f", "cast_id": 7, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 6}, {"name": "Kristen Bell", "character": "Nikki", "id": 40462, "credit_id": "52fe45fac3a36847f80e5733", "cast_id": 8, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 7}, {"name": "Stanley Tucci", "character": "Sean", "id": 2283, "credit_id": "52fe45fac3a36847f80e5737", "cast_id": 9, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 8}, {"name": "Dianna Agron", "character": "Natalie", "id": 141687, "credit_id": "52fe45fac3a36847f80e573b", "cast_id": 10, "profile_path": "/fS4vAPA6ErhHCWRBY2PVIwvnajU.jpg", "order": 9}, {"name": "Glynn Turman", "character": "Harold Saint", "id": 114674, "credit_id": "52fe45fbc3a36847f80e5753", "cast_id": 18, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 10}, {"name": "David Walton", "character": "Mark DJ", "id": 83231, "credit_id": "52fe45fac3a36847f80e5743", "cast_id": 12, "profile_path": "/kwtK2P8W0PMmaY2yrFwGlDh55y5.jpg", "order": 11}, {"name": "Terrence Jenkins", "character": "Dave", "id": 143242, "credit_id": "52fe45fac3a36847f80e5747", "cast_id": 13, "profile_path": "/h9hYAsDHevmr3mHFpP8CbsX0BUA.jpg", "order": 12}, {"name": "Chelsea Traille", "character": "Coco", "id": 143243, "credit_id": "52fe45fac3a36847f80e574b", "cast_id": 14, "profile_path": "/sEOfjBzR0S0llzSfrnJm3v57Z8A.jpg", "order": 13}, {"name": "Tanee McCall", "character": "Scarlett", "id": 143244, "credit_id": "52fe45fbc3a36847f80e574f", "cast_id": 15, "profile_path": "/8oYyoUOGZZfQKyhCw6t47ZVROzG.jpg", "order": 14}], "directors": [{"name": "Steve Antin", "department": "Directing", "job": "Director", "credit_id": "52fe45fbc3a36847f80e5759", "profile_path": "/3GVyNtFWsPz2nCxSgCo6WN6H0UN.jpg", "id": 42745}], "vote_average": 6.3, "runtime": 119}, "9530": {"poster_path": "/wunuRnWuDKJQzsd1OnK55fpSzPQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87528173, "overview": "Climbing aboard their mammoth recreational vehicle for a cross-country road trip to the Colorado Rockies, the McNeive family -- led by dysfunctional patriarch Bob -- prepares for the adventure of a lifetime. But spending two weeks together in one seriously small space has a way of cramping their style.", "video": false, "id": 9530, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "RV", "tagline": "One Family. Eight Wheels. No brakes.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449089", "adult": false, "backdrop_path": "/masf7h6JxkH2q6RlqKccry3mPCn.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2006-04-28", "popularity": 0.60964594007419, "original_title": "RV", "budget": 50000000, "cast": [{"name": "Robin Williams", "character": "Bob Munro", "id": 2157, "credit_id": "52fe4505c3a36847f80b7965", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Cheryl Hines", "character": "Jamie Munro", "id": 57854, "credit_id": "52fe4505c3a36847f80b7969", "cast_id": 2, "profile_path": "/g6CJqdMVRENrMRiva5spTuJkWRd.jpg", "order": 1}, {"name": "Joanna 'JoJo' Levesque", "character": "Cassie Munro", "id": 57855, "credit_id": "52fe4505c3a36847f80b796d", "cast_id": 3, "profile_path": "/vKGPm1Y7H39mfIc2kSAUnCZRCMm.jpg", "order": 2}, {"name": "Josh Hutcherson", "character": "Carl Munro", "id": 27972, "credit_id": "52fe4505c3a36847f80b7971", "cast_id": 4, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 3}, {"name": "Jeff Daniels", "character": "Travis Gornicke", "id": 8447, "credit_id": "52fe4505c3a36847f80b7975", "cast_id": 5, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 4}, {"name": "Kristin Chenoweth", "character": "Mary Jo Gornicke", "id": 52775, "credit_id": "52fe4505c3a36847f80b79a3", "cast_id": 13, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 5}, {"name": "Hunter Parrish", "character": "Earl Gornicke", "id": 35236, "credit_id": "52fe4505c3a36847f80b79a7", "cast_id": 14, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 6}, {"name": "Chloe Sonnenfeld", "character": "Moon Gornicke", "id": 978698, "credit_id": "52fe4505c3a36847f80b79ab", "cast_id": 15, "profile_path": "/5NFFTnGC5thAJHgeHO4rRWRtJYL.jpg", "order": 7}, {"name": "Alex Ferris", "character": "Billy Gornicke", "id": 59243, "credit_id": "52fe4505c3a36847f80b79af", "cast_id": 16, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 8}, {"name": "Will Arnett", "character": "Todd Mallory", "id": 21200, "credit_id": "52fe4505c3a36847f80b79b3", "cast_id": 17, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 9}, {"name": "Tony Hale", "character": "Frank", "id": 25147, "credit_id": "52fe4505c3a36847f80b79b7", "cast_id": 18, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 10}, {"name": "Brian Howe", "character": "Marty", "id": 1990, "credit_id": "52fe4505c3a36847f80b79bb", "cast_id": 19, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 11}, {"name": "Richard Ian Cox", "character": "Laird", "id": 153783, "credit_id": "52fe4505c3a36847f80b79bf", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Erika-Shaye Gair", "character": "Cassie, age 5", "id": 962340, "credit_id": "52fe4505c3a36847f80b79c3", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Veronika Sztopa", "character": "Gretchen", "id": 978699, "credit_id": "52fe4505c3a36847f80b79c7", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Rob LaBelle", "character": "Larry Moiphine", "id": 42708, "credit_id": "52fe4505c3a36847f80b79cb", "cast_id": 23, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 15}, {"name": "Brian Markinson", "character": "Garry Moiphine", "id": 28004, "credit_id": "52fe4505c3a36847f80b79cf", "cast_id": 24, "profile_path": "/CL63sueT7SSBZQwoPH23FQEIR8.jpg", "order": 16}, {"name": "Kirsten Williamson", "character": "Tammy", "id": 169511, "credit_id": "52fe4505c3a36847f80b79d3", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Brendan Fletcher", "character": "Howie", "id": 32205, "credit_id": "52fe4505c3a36847f80b79d7", "cast_id": 26, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 18}, {"name": "Matthew Gray Gubler", "character": "Joe Joe", "id": 5661, "credit_id": "52fe4505c3a36847f80b79db", "cast_id": 27, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 19}, {"name": "Stephen E. Miller", "character": "Organ Stew Guy", "id": 75467, "credit_id": "52fe4505c3a36847f80b79df", "cast_id": 28, "profile_path": "/d06RqoXxwaR0E6ZvVkthxy6RIpw.jpg", "order": 20}, {"name": "Malcolm Scott", "character": "Kenny", "id": 52514, "credit_id": "52fe4505c3a36847f80b79e3", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Deborah DeMille", "character": "Dump Lady", "id": 52513, "credit_id": "52fe4505c3a36847f80b79e7", "cast_id": 30, "profile_path": null, "order": 22}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b797b", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 5.5, "runtime": 99}, "65759": {"poster_path": "/gY8lWCObaGvcDsmeM8QHBF4AZVk.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 150406466, "overview": "Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters The Mighty Sven, a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to brings together the penguin nations and their allies to set things right.", "video": false, "id": 65759, "genres": [{"id": 16, "name": "Animation"}, {"id": 10402, "name": "Music"}], "title": "Happy Feet Two", "tagline": "Every step counts.", "vote_count": 111, "homepage": "http://happyfeettwo.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": "/b9CLLxKsh63AHEkGE9nz9bupQqh.jpg", "poster_path": "/pYbF2FAi2MEVshl8jCDNTRNdTF0.jpg", "id": 92012, "name": "Happy Feet Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1402488", "adult": false, "backdrop_path": "/2ItHN3UMJyWmRdAoaXmdiffjiGR.jpg", "production_companies": [{"name": "Dr D Studios", "id": 28381}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Kennedy Miller Mitchell", "id": 28382}], "release_date": "2011-11-17", "popularity": 1.05712512830809, "original_title": "Happy Feet Two", "budget": 130000000, "cast": [{"name": "Elijah Wood", "character": "Mumble (voice)", "id": 109, "credit_id": "52fe4718c3a368484e0b4cf9", "cast_id": 1, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Robin Williams", "character": "Ramon / Lovelace (voice)", "id": 2157, "credit_id": "52fe4718c3a368484e0b4cfd", "cast_id": 4, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Pink", "character": "Gloria (voice)", "id": 77271, "credit_id": "52fe4718c3a368484e0b4d07", "cast_id": 6, "profile_path": "/A4tOzacgaBltm522XYxLodG3ImX.jpg", "order": 2}, {"name": "E.G. Daily", "character": "Erik (voice)", "id": 15274, "credit_id": "52fe4718c3a368484e0b4d0b", "cast_id": 7, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 3}, {"name": "Johnny A. Sanchez", "character": "Lombardo (voice)", "id": 59783, "credit_id": "52fe4718c3a368484e0b4d0f", "cast_id": 8, "profile_path": "/sZgx2rtzJucOh3z92NZVhkNbfTk.jpg", "order": 4}, {"name": "Lombardo Boyar", "character": "Raul (voice)", "id": 4992, "credit_id": "52fe4718c3a368484e0b4d13", "cast_id": 9, "profile_path": "/ygctSZGBRkmwARihr8F1Bb7PkIP.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Carmen (voice)", "id": 63522, "credit_id": "52fe4718c3a368484e0b4d17", "cast_id": 10, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Common", "character": "Seymour (voice)", "id": 4238, "credit_id": "52fe4718c3a368484e0b4d1b", "cast_id": 11, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 7}, {"name": "Hugo Weaving", "character": "Noah the Elder (voice)", "id": 1331, "credit_id": "52fe4718c3a368484e0b4d1f", "cast_id": 12, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 8}, {"name": "Brad Pitt", "character": "Will the Krill (voice)", "id": 287, "credit_id": "52fe4718c3a368484e0b4d23", "cast_id": 13, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 9}, {"name": "Matt Damon", "character": "Bill the Krill (voice)", "id": 1892, "credit_id": "52fe4718c3a368484e0b4d27", "cast_id": 14, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 10}, {"name": "Carlos Alazraqui", "character": "Nestor (voice)", "id": 59784, "credit_id": "551239d0c3a3680296002e7e", "cast_id": 26, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 11}, {"name": "Jeffrey Garcia", "character": "Rinaldo (voice) (as Jeff Garcia)", "id": 59782, "credit_id": "55123a1bc3a3680296002e88", "cast_id": 27, "profile_path": "/vxzRJbYNXUXUG8V8rcWlnj5PCKJ.jpg", "order": 12}, {"name": "Ava Acres", "character": "Erik (voice)", "id": 1340664, "credit_id": "55123bf5925141045c0009b2", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Benjamin Flores Jr.", "character": "Atticus (voice) (as Benjamin 'Lil P-Nut' Flores) (as Jr.)", "id": 1335308, "credit_id": "55123c2cc3a36861950009cf", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Meibh Campbell", "character": "Bo (voice)", "id": 1445416, "credit_id": "55123c47925141065c008cea", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Magda Szubanski", "character": "Miss Viola (voice)", "id": 45586, "credit_id": "55123c9ec3a36860b30009f9", "cast_id": 31, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 16}, {"name": "Hank Azaria", "character": "The Mighty Sven (voice)", "id": 5587, "credit_id": "55123d78925141045c0009dd", "cast_id": 32, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 17}, {"name": "Richard Carter", "character": "Bryan the Beachmaster (voice)", "id": 44838, "credit_id": "55123e68c3a36860b3000a2f", "cast_id": 33, "profile_path": "/8Qo8Gp5zwKM82MK0Gh6rF1ullrx.jpg", "order": 18}, {"name": "Lee Perry", "character": "Wayne the Challenger / Francesco / Eggbert / Leopard Seal (voice)", "id": 1445417, "credit_id": "55123f18925141045c000a1a", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Jai Sloper", "character": "Weaner Pup (voice)", "id": 1445418, "credit_id": "55123f31c3a3680296002f04", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Oscar Beard", "character": "Weaner Pup (voice)", "id": 1445419, "credit_id": "55123f4c92514148dd0015ce", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Anthony LaPaglia", "character": "The Alpha Skua (voice)", "id": 57829, "credit_id": "55123f84c3a36860b3000a46", "cast_id": 37, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 22}, {"name": "Danny Mann", "character": "Brokebeak (voice)", "id": 52699, "credit_id": "55123fa09251410701008ce9", "cast_id": 38, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 23}, {"name": "Gary Eck", "character": "Additional Voices (voice)", "id": 104428, "credit_id": "55124127c3a36860b3000a72", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Imogen Trowell", "character": "Additional Voices (voice)", "id": 1445423, "credit_id": "551241469251410445000a8a", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Jordan Prosser", "character": "Additional Voices (voice)", "id": 1197937, "credit_id": "55124173c3a3686195000a54", "cast_id": 41, "profile_path": null, "order": 26}, {"name": "David Arnott", "character": "Additional Voices (voice)", "id": 57910, "credit_id": "5512421bc3a36860b3000a97", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Robin Atkin Downes", "character": "Additional Voices (voice)", "id": 130081, "credit_id": "5512425292514104ab0009d8", "cast_id": 43, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 28}, {"name": "Sarah Aubrey", "character": "Additional Voices (voice)", "id": 1246964, "credit_id": "55124292c3a3686195000a8d", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "Veena Bidasha", "character": "Additional Voices (voice)", "id": 1445424, "credit_id": "551242b69251410445000ab3", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Denise Blasor", "character": "Adelie Chica (voice)", "id": 1026727, "credit_id": "5512433b92514103e90009e5", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Holland Broggie", "character": "Additional Voices (voice)", "id": 1445425, "credit_id": "551243689251415caa002d04", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Catherine Cavadini", "character": "Additional Voices (voice) (as Catherine Cavadini)", "id": 64948, "credit_id": "5512439ac3a3686195000aa4", "cast_id": 48, "profile_path": "/o2wULQltvbzCTCJitNeT72AjklR.jpg", "order": 33}, {"name": "Rob Coleman", "character": "Additional Voices (voice)", "id": 1445426, "credit_id": "551243cb9251415caa002d14", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Warren Coleman", "character": "Additional Voices (voice)", "id": 59767, "credit_id": "551244049251415caa002d1c", "cast_id": 50, "profile_path": null, "order": 35}, {"name": "Will Collyer", "character": "Additional Voices (voice)", "id": 105191, "credit_id": "5512443a9251410445000ad8", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "Karissa Corday", "character": "Additional Voices (voice)", "id": 1445427, "credit_id": "55124457c3a3686195000ab9", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Mason Vale Cotton", "character": "Additional Voices (voice)", "id": 212234, "credit_id": "55124491c3a36860b3000ac8", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Django Craig", "character": "Additional Voices (voice)", "id": 1445428, "credit_id": "551244afc3a3683f390091c9", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "John Demita", "character": "Additional Voices (voice)", "id": 56348, "credit_id": "551244e9c3a36801bb002eeb", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Liza de Weerd", "character": "Additional Voices (voice)", "id": 220001, "credit_id": "5512e56a92514104450017f2", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Dashel Eck", "character": "Additional Voices (voice)", "id": 1445639, "credit_id": "5512e58792514107010099a6", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Rosa Fernandez", "character": "Additional Voices (voice)", "id": 1445640, "credit_id": "5512e5bac3a36801bb003acc", "cast_id": 58, "profile_path": null, "order": 43}, {"name": "Charlie Finn", "character": "Additional Voices (voice)", "id": 111122, "credit_id": "5512e5ed92514104450017f9", "cast_id": 59, "profile_path": "/4oaJsmvpQKo42UugAXarmizsGPu.jpg", "order": 44}, {"name": "Aaron Fors", "character": "Additional Voices (voice)", "id": 53209, "credit_id": "5512e61c92514104ab00167a", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Pat Fraley", "character": "Additional Voices (voice)", "id": 34737, "credit_id": "5512e63e9251410462000187", "cast_id": 61, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 46}, {"name": "Nicolette Gani", "character": "Additional Voices (voice)", "id": 1445641, "credit_id": "5512e658c3a36861950016fe", "cast_id": 62, "profile_path": null, "order": 47}, {"name": "Lillian Groag", "character": "Additional Voices (voice)", "id": 1445642, "credit_id": "5512e676c3a3683f39009e4b", "cast_id": 63, "profile_path": null, "order": 48}, {"name": "Monica Guzman", "character": "Additional Voices (voice)", "id": 1445643, "credit_id": "5512e6ecc3a3683f39009e54", "cast_id": 64, "profile_path": null, "order": 49}, {"name": "Aaron Hendry", "character": "Additional Voices (voice)", "id": 61536, "credit_id": "551380d49251412be40006cb", "cast_id": 65, "profile_path": null, "order": 50}, {"name": "Nathan Kameya", "character": "Additional Voices (voice)", "id": 1445761, "credit_id": "551380fdc3a36841f3000739", "cast_id": 66, "profile_path": null, "order": 51}, {"name": "Daamen J. Krall", "character": "Additional Voices (voice) (as Daamen Krall)", "id": 96310, "credit_id": "55138128c3a3683f3900ae4b", "cast_id": 67, "profile_path": "/u0CORJ8e2vvw1dFARU4estHYS2I.jpg", "order": 52}, {"name": "Kal Mansoor", "character": "Additional Voices (voice)", "id": 1445763, "credit_id": "5513814e9251412be40006dc", "cast_id": 68, "profile_path": null, "order": 53}, {"name": "Ivo Nandi", "character": "Additional Voices (voice)", "id": 1346980, "credit_id": "5513819cc3a368407a000690", "cast_id": 69, "profile_path": "/fa3msIf4s4kjK4dRJi6ykP44Ek2.jpg", "order": 54}, {"name": "Roger Narayan", "character": "Bollywood Indian Penguin (voice)", "id": 1415835, "credit_id": "551381d5c3a36840a30006bb", "cast_id": 70, "profile_path": null, "order": 55}, {"name": "Jason Pace", "character": "Additional Voices (voice)", "id": 1231272, "credit_id": "55138215925141045c00299e", "cast_id": 71, "profile_path": null, "order": 56}, {"name": "Harry Pashley", "character": "Additional Voices (voice)", "id": 1445764, "credit_id": "55138256925141070100a909", "cast_id": 72, "profile_path": null, "order": 57}, {"name": "Max Pashley", "character": "Additional Voices (voice)", "id": 1445765, "credit_id": "55138277c3a3683f3900ae68", "cast_id": 73, "profile_path": null, "order": 58}, {"name": "Moira Quirk", "character": "Additional Voices (voice)", "id": 59057, "credit_id": "551382b19251412cec0006e6", "cast_id": 74, "profile_path": null, "order": 59}, {"name": "Michael Ralph", "character": "", "id": 138897, "credit_id": "551382f4c3a3683f3900ae77", "cast_id": 75, "profile_path": "/xGZQXknJRGGsgLhYct7lS6KkoA8.jpg", "order": 60}, {"name": "Noreen Reardon", "character": "Additional Voices (voice)", "id": 1182093, "credit_id": "5513834b9251410462001191", "cast_id": 76, "profile_path": null, "order": 61}, {"name": "Nancy Truman", "character": "Additional Voices (voice)", "id": 1441650, "credit_id": "5513843cc3a3684103000734", "cast_id": 77, "profile_path": "/6VUKUoyLB5U5Eti8w4Li4Zz6AwT.jpg", "order": 62}, {"name": "Nicole Vieira", "character": "Additional Voices (voice)", "id": 1445767, "credit_id": "55138501c3a368423900077e", "cast_id": 78, "profile_path": null, "order": 63}, {"name": "Ruth Zalduondo", "character": "Additional Voices (voice)", "id": 1445768, "credit_id": "55138526c3a368410300075b", "cast_id": 79, "profile_path": null, "order": 64}, {"name": "Septimus Caton", "character": "Guitarist", "id": 626531, "credit_id": "55138678c3a368423900079d", "cast_id": 80, "profile_path": null, "order": 65}, {"name": "Ivan Vunich", "character": "Beanie Man", "id": 1445771, "credit_id": "5513869b9251412c520006f7", "cast_id": 81, "profile_path": null, "order": 66}, {"name": "Arshad Aslam", "character": "Adelie Penguin (voice) (uncredited)", "id": 1445772, "credit_id": "551386c29251410445002a37", "cast_id": 82, "profile_path": null, "order": 67}, {"name": "H\u00e9l\u00e8ne Cardona", "character": "Ad\u00e9lie Penguin (voice) (uncredited)", "id": 5311, "credit_id": "5513870692514104620011fd", "cast_id": 83, "profile_path": "/9Am8lqQ5yUrGrlpYdOjp4p4iLwb.jpg", "order": 68}, {"name": "Justin Cotta", "character": "Scientist (voice) (uncredited)", "id": 1445773, "credit_id": "5513872ac3a3683f3900aeff", "cast_id": 84, "profile_path": null, "order": 69}, {"name": "Roberto Donati", "character": "Additional Voices (voice) (uncredited)", "id": 1445775, "credit_id": "551387e1c3a368619500270f", "cast_id": 85, "profile_path": null, "order": 70}, {"name": "Antony Ginandjar", "character": "Performance Capture Artist (uncredited)", "id": 1445776, "credit_id": "5513881cc3a3683f3900af29", "cast_id": 86, "profile_path": null, "order": 71}, {"name": "Ivy Mak", "character": "Scientist (voice) (uncredited)", "id": 1349388, "credit_id": "5513887ac3a3683f3900af39", "cast_id": 87, "profile_path": null, "order": 72}, {"name": "Sunil Malhotra", "character": "Indian Adelie Penguin (voice) (uncredited)", "id": 109014, "credit_id": "551389a4c3a36842390007fe", "cast_id": 88, "profile_path": null, "order": 73}, {"name": "Ajay Mehta", "character": "Indian Penguin (voice) (uncredited)", "id": 1218780, "credit_id": "551389e5c3a3686195002744", "cast_id": 89, "profile_path": null, "order": 74}, {"name": "Puja Mohindra", "character": "Bollywood Penguin (voice) (uncredited)", "id": 1225857, "credit_id": "55138a27925141045c002a82", "cast_id": 90, "profile_path": "/8qsJ3iBayZDmbSMbLObwOnoHf45.jpg", "order": 75}, {"name": "Carlos Moreno Jr.", "character": "Mexican Penguin (voice) (uncredited)", "id": 43965, "credit_id": "55138a65c3a36840a30007a3", "cast_id": 91, "profile_path": "/7edimrOaTjFiJfjsLfMRY5WvYLT.jpg", "order": 76}, {"name": "Eddie Tang", "character": "Chef (voice) (uncredited)", "id": 1445777, "credit_id": "55138a87c3a36841bd000886", "cast_id": 92, "profile_path": null, "order": 77}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4718c3a368484e0b4d03", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 5.9, "runtime": 100}, "9532": {"poster_path": "/dsQzDT39FLtNmOOYNjrCFsznn37.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53302314, "overview": "After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.", "video": false, "id": 9532, "genres": [{"id": 27, "name": "Horror"}], "title": "Final Destination", "tagline": "No accidents. No coincidences. No escapes. You can't cheat death.", "vote_count": 314, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0195714", "adult": false, "backdrop_path": "/b92g9XkggE7hNrdbOg3ecvGoMer.jpg", "production_companies": [{"name": "Hard Eight Pictures", "id": 48772}, {"name": "New Line Cinema", "id": 12}, {"name": "Zide-Perry Productions", "id": 3169}], "release_date": "2000-03-16", "popularity": 1.00169573588952, "original_title": "Final Destination", "budget": 23000000, "cast": [{"name": "Devon Sawa", "character": "Alex Chance Browning", "id": 50398, "credit_id": "52fe4505c3a36847f80b7a99", "cast_id": 1, "profile_path": "/mDMmS4G3cncEy1ngmop5deSan6X.jpg", "order": 0}, {"name": "Ali Larter", "character": "Clear Rivers", "id": 17303, "credit_id": "52fe4505c3a36847f80b7a9d", "cast_id": 2, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 1}, {"name": "Kerr Smith", "character": "Carter Horton", "id": 43442, "credit_id": "52fe4505c3a36847f80b7aa1", "cast_id": 3, "profile_path": "/8CVdfA5L27Nh2fPyLwax3Tn9Xkr.jpg", "order": 2}, {"name": "Tony Todd", "character": "William Bludworth", "id": 19384, "credit_id": "52fe4505c3a36847f80b7aa5", "cast_id": 4, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 3}, {"name": "Seann William Scott", "character": "Billy Hitchcock", "id": 57599, "credit_id": "52fe4505c3a36847f80b7aa9", "cast_id": 5, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 4}, {"name": "Kristen Cloke", "character": "Valerie Lewton", "id": 58392, "credit_id": "52fe4505c3a36847f80b7af5", "cast_id": 19, "profile_path": "/5gWv8zx4pjwSx3z1k9LUgzWRDA0.jpg", "order": 5}, {"name": "Chad Donella", "character": "Tod Waggner", "id": 86397, "credit_id": "53a69086c3a368707a0021df", "cast_id": 22, "profile_path": "/52JSV6Pka2KCcBVF4yRTGZ6CCDG.jpg", "order": 6}, {"name": "Amanda Detmer", "character": "Terry Chaney", "id": 19275, "credit_id": "53a690b4c3a3687a34002daa", "cast_id": 23, "profile_path": "/egJuJpoKVr9ZXsWYkBlGeqZZTEd.jpg", "order": 7}, {"name": "Brendan Fehr", "character": "George Waggner", "id": 72440, "credit_id": "53a690e2c3a368707a0021e7", "cast_id": 24, "profile_path": "/8tp3G4RMWNpxprEfyxvjhRFf6uq.jpg", "order": 8}, {"name": "Daniel Roebuck", "character": "Agent Weine", "id": 43774, "credit_id": "53a6911dc3a3687a2b002f2d", "cast_id": 25, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 9}, {"name": "Roger Guenveur Smith", "character": "Agent Schreck", "id": 40377, "credit_id": "53a6913dc3a3687a43002cba", "cast_id": 26, "profile_path": "/c6yUnUcbNxCUKAjucLlh6VHzmCd.jpg", "order": 10}, {"name": "Lisa Marie Caruk", "character": "Christa Marsh", "id": 81802, "credit_id": "53a69186c3a368707a0021f8", "cast_id": 27, "profile_path": "/9m4eiHcqNMXQnctPne9ZxLOftqa.jpg", "order": 11}, {"name": "Fred Keating", "character": "Howard Seigel", "id": 963962, "credit_id": "55031dcd925141282f003e80", "cast_id": 28, "profile_path": null, "order": 12}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b7aaf", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 6.2, "runtime": 98}, "9533": {"poster_path": "/sULs7GLEM2tqNBwE5ac5d6FRlBR.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92955420, "overview": "Former FBI agent Will Graham, who was once nearly killed by the savage Hannibal \"The Cannibal\" Lecter now has no choice but to face him again. It seems Lecter is the only one who can help Graham track down a new serial killer, Francis Dolarhyde -- but can he be trusted?", "video": false, "id": 9533, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Red Dragon", "tagline": "Before the Silence.", "vote_count": 362, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289765", "adult": false, "backdrop_path": "/mpTEeip03IoeLukOW5zp1eQ5FfG.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2002-09-29", "popularity": 0.369175018627074, "original_title": "Red Dragon", "budget": 78000000, "cast": [{"name": "Anthony Hopkins", "character": "Hannibal Lecter", "id": 4173, "credit_id": "52fe4505c3a36847f80b7b1d", "cast_id": 1, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Edward Norton", "character": "Will Graham", "id": 819, "credit_id": "52fe4505c3a36847f80b7b21", "cast_id": 2, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Francis Dolarhyde", "id": 5469, "credit_id": "52fe4505c3a36847f80b7b25", "cast_id": 3, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Harvey Keitel", "character": "Jack Crawford", "id": 1037, "credit_id": "52fe4505c3a36847f80b7b29", "cast_id": 4, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 3}, {"name": "Emily Watson", "character": "Reba McClane", "id": 1639, "credit_id": "52fe4505c3a36847f80b7b2d", "cast_id": 5, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Freddy Lounds", "id": 1233, "credit_id": "52fe4505c3a36847f80b7b31", "cast_id": 6, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Mary-Louise Parker", "character": "Molly Graham", "id": 18248, "credit_id": "52fe4505c3a36847f80b7b71", "cast_id": 19, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 6}, {"name": "Anthony Heald", "character": "Dr. Frederick Chilton", "id": 16293, "credit_id": "53d614d00e0a262844006de3", "cast_id": 20, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 7}, {"name": "Ken Leung", "character": "Lloyd Bowman", "id": 2131, "credit_id": "53d615ba0e0a26283e00706f", "cast_id": 21, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 8}, {"name": "Frankie Faison", "character": "Barney Matthews", "id": 13936, "credit_id": "53d615e60e0a26284d006a90", "cast_id": 22, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 9}, {"name": "Tyler Patrick Jones", "character": "Josh Graham", "id": 62821, "credit_id": "53d616060e0a26284a006e60", "cast_id": 23, "profile_path": "/deBdsmXr0VPBWuUhUfJcJT6jp5n.jpg", "order": 10}, {"name": "Frank Whaley", "character": "Ralph Mandy", "id": 11805, "credit_id": "5533e1ab9251415291005833", "cast_id": 24, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 11}, {"name": "Bill Duke", "character": "Police Chief", "id": 1103, "credit_id": "5533e26dc3a3682226005b78", "cast_id": 25, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 12}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b7b37", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.3, "runtime": 124}, "9535": {"poster_path": "/vmVE6jRbYegQSoxJYtVkwm0oZOY.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176885658, "overview": "Countless wiseguy films are spoofed in this film that centers on the neuroses and angst of a powerful Mafia racketeer who suffers from panic attacks. When Paul Vitti needs help dealing with his role in the \"family,\" unlucky shrink Dr. Ben Sobel is given just days to resolve Vitti's emotional crisis and turn him into a happy, well-adjusted gangster.", "video": false, "id": 9535, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Analyze This", "tagline": "New York's most powerful gangster is about to get in touch with his feelings. YOU try telling him his 50 minutes are up.", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zhVKNz29OvsXacU1YKCksBx8yIl.jpg", "poster_path": "/h8rayR5AKPzqYrQVSDjK3BkYZun.jpg", "id": 110127, "name": "Analyze Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0122933", "adult": false, "backdrop_path": "/tk3wxmUTtmajURRjgPolxep5Ajt.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Spring Creek Productions", "id": 705}, {"name": "Tribeca Productions", "id": 11391}, {"name": "Baltimore Pictures", "id": 11407}], "release_date": "1999-03-05", "popularity": 0.88294170944284, "original_title": "Analyze This", "budget": 80000000, "cast": [{"name": "Robert De Niro", "character": "Paul Vitti", "id": 380, "credit_id": "52fe4506c3a36847f80b7c33", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Dr. Ben Sobel", "id": 7904, "credit_id": "52fe4506c3a36847f80b7c37", "cast_id": 2, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Lisa Kudrow", "character": "Laura MacNamara Sobel", "id": 14406, "credit_id": "52fe4506c3a36847f80b7c3b", "cast_id": 3, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 2}, {"name": "Chazz Palminteri", "character": "Primo Sidone", "id": 9046, "credit_id": "52fe4506c3a36847f80b7c3f", "cast_id": 4, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 3}, {"name": "Joe Viterelli", "character": "Jelly", "id": 60023, "credit_id": "52fe4506c3a36847f80b7c97", "cast_id": 20, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 4}, {"name": "Molly Shannon", "character": "Caroline", "id": 28640, "credit_id": "52fe4506c3a36847f80b7c9b", "cast_id": 21, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 5}, {"name": "Kyle Sabihy", "character": "Michael Sobel", "id": 162149, "credit_id": "52fe4506c3a36847f80b7c9f", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Frank Pietrangolare", "character": "Tuna", "id": 17923, "credit_id": "52fe4506c3a36847f80b7ca3", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Ron Madoff", "character": "Extra Sea World Scene", "id": 1286269, "credit_id": "52fe4506c3a36847f80b7ca7", "cast_id": 24, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 8}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe4506c3a36847f80b7c45", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.7, "runtime": 103}, "1375": {"poster_path": "/mamE1mVcWyJuxdPuGTISaB6KrX0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119946358, "overview": "A lifetime of taking shots has ended Rocky's career, and a crooked accountant has left him broke. Inspired by the memory of his trainer, however, Rocky finds glory in training and takes on an up-and-coming boxer.", "video": false, "id": 1375, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky V", "tagline": "Go for it!", "vote_count": 150, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100507", "adult": false, "backdrop_path": "/dr5pdEDOdCvelCQqP32UZubiSgE.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1990-11-16", "popularity": 0.937392345665791, "original_title": "Rocky V", "budget": 42000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42f1c3a36847f802e9d9", "cast_id": 24, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42f1c3a36847f802e9dd", "cast_id": 25, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42f1c3a36847f802e9e1", "cast_id": 26, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Sage Stallone", "character": "Rocky Balboa Jr.", "id": 16660, "credit_id": "52fe42f1c3a36847f802e9e5", "cast_id": 27, "profile_path": "/fwC0O3sWbz8ruIpN3pQ6reViZ2G.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42f1c3a36847f802e9e9", "cast_id": 28, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Tommy Morrison", "character": "Tommy 'Machine' Gunn", "id": 16661, "credit_id": "52fe42f1c3a36847f802e9ed", "cast_id": 29, "profile_path": null, "order": 5}, {"name": "Richard Gant", "character": "George Washington Duke", "id": 16662, "credit_id": "52fe42f1c3a36847f802e9f1", "cast_id": 30, "profile_path": "/oYDHpuey2NMlGaGqMqZJVAoKoy5.jpg", "order": 6}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42f1c3a36847f802e9f5", "cast_id": 31, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 7}, {"name": "Jimmy Gambina", "character": "Jimmy", "id": 16526, "credit_id": "52fe42f1c3a36847f802e9f9", "cast_id": 32, "profile_path": "/8ygxVOL1P75gsI8BOlia5Hqorc5.jpg", "order": 8}, {"name": "Delia Sheppard", "character": "Karen", "id": 16663, "credit_id": "52fe42f1c3a36847f802e9fd", "cast_id": 33, "profile_path": "/jnekLWN0sAt5FHw8gvgMVIisUws.jpg", "order": 9}, {"name": "Mike Girard Sheehan", "character": "Merlin Sheets", "id": 16664, "credit_id": "52fe42f1c3a36847f802ea01", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Michael Williams", "character": "Union Cane", "id": 16665, "credit_id": "52fe42f1c3a36847f802ea05", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Kevin Connolly", "character": "Chickie", "id": 16666, "credit_id": "52fe42f1c3a36847f802ea09", "cast_id": 36, "profile_path": "/4bKLYeNGbIdFE5iEal9o8yjWQdz.jpg", "order": 12}, {"name": "Elisebeth Peters", "character": "Jewel", "id": 16667, "credit_id": "52fe42f1c3a36847f802ea0d", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Hayes Swope", "character": "Chickie's Pal", "id": 16668, "credit_id": "52fe42f1c3a36847f802ea11", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Nicky Blair", "character": "Fight Promoter", "id": 16669, "credit_id": "52fe42f1c3a36847f802ea15", "cast_id": 39, "profile_path": null, "order": 15}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe42f1c3a36847f802e951", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 5.6, "runtime": 104}, "9539": {"poster_path": "/fC2Uld8qZ6waCuo71oTKzJTscaN.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A young woman's quest for revenge against the people who kidnapped and tormented her as a child leads her and a friend, who is also a victim of child abuse, on a terrifying journey into a living hell of depravity.", "video": false, "id": 9539, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Martyrs", "tagline": "They did not finish to be alive...", "vote_count": 84, "homepage": "http://www.finelinefeatures.com/passion/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1029234", "adult": false, "backdrop_path": "/6ZGUYAhUvhJ54HrSPliTzoZ8evy.jpg", "production_companies": [{"name": "TCB Films", "id": 2578}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Canal Horizons", "id": 22029}], "release_date": "2008-09-03", "popularity": 0.605794141896817, "original_title": "Martyrs", "budget": 6500000, "cast": [{"name": "Myl\u00e8ne Jampano\u00ef", "character": "Lucie", "id": 20197, "credit_id": "52fe4506c3a36847f80b7ec9", "cast_id": 3, "profile_path": "/2pgiCfPyhlBlcZ4ZSwKnCxYYrLe.jpg", "order": 0}, {"name": "Morjana Alaoui", "character": "Anna", "id": 59612, "credit_id": "52fe4506c3a36847f80b7ecd", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Mike Chute", "character": "Bourreau", "id": 59613, "credit_id": "52fe4506c3a36847f80b7ed1", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Catherine B\u00e9gin", "character": "Mademoiselle", "id": 59614, "credit_id": "52fe4506c3a36847f80b7ed5", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Robert Toupin", "character": "Le P\u00e8re", "id": 59615, "credit_id": "52fe4506c3a36847f80b7ed9", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Patricia Tulasne", "character": "La M\u00e8re", "id": 59616, "credit_id": "52fe4506c3a36847f80b7edd", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Juliette Gosselin", "character": "Marie", "id": 59617, "credit_id": "52fe4506c3a36847f80b7ee1", "cast_id": 9, "profile_path": "/vxMKAtkOSQDDmIGla7kMvm90fyP.jpg", "order": 6}, {"name": "Anie Pascale", "character": "La Femme", "id": 59618, "credit_id": "52fe4506c3a36847f80b7ee5", "cast_id": 10, "profile_path": null, "order": 7}], "directors": [{"name": "Pascal Laugier", "department": "Directing", "job": "Director", "credit_id": "52fe4506c3a36847f80b7ec5", "profile_path": null, "id": 59611}], "vote_average": 7.6, "runtime": 99}, "10956": {"poster_path": "/8FKSjl4cEg4OEyWdCTjqAT8M6qv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27088000, "overview": "Joe Dirt is a janitor with a mullet hairdo, acid-washed jeans and a dream to find the parents that he lost at the Grand Canyon when he was a belligerent, trailer park-raised eight-year-old. Now, blasting Van Halen in his jacked-up economy car, the irrepressibly optimistic Joe hits the road alone in search of his folks.", "video": false, "id": 10956, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Joe Dirt", "tagline": "He Came. He Cleaned. He Conquered.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245686", "adult": false, "backdrop_path": "/uPjtNMZtiANjxE2hOkDhYy9TQ1C.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2001-04-10", "popularity": 0.714130871378478, "original_title": "Joe Dirt", "budget": 34000000, "cast": [{"name": "David Spade", "character": "Joe Dirt", "id": 60950, "credit_id": "52fe43d89251416c75020665", "cast_id": 1, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 0}, {"name": "Brittany Daniel", "character": "Brandy", "id": 35476, "credit_id": "52fe43d89251416c75020669", "cast_id": 2, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 1}, {"name": "Dennis Miller", "character": "Zander Kelly", "id": 18326, "credit_id": "52fe43d89251416c7502066d", "cast_id": 3, "profile_path": "/e1SGDAB2IArMV8oiTceRYD4DoGS.jpg", "order": 2}, {"name": "Adam Beach", "character": "Kicking Wing", "id": 33527, "credit_id": "52fe43d89251416c75020671", "cast_id": 4, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 3}, {"name": "Jaime Pressly", "character": "Jill", "id": 56824, "credit_id": "52fe43d89251416c75020693", "cast_id": 11, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 4}, {"name": "Fred Ward", "character": "Joe's Dad", "id": 10430, "credit_id": "52fe43d89251416c75020697", "cast_id": 12, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 5}, {"name": "Christopher Walken", "character": "Clem", "id": 4690, "credit_id": "52fe43d99251416c750206a7", "cast_id": 15, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 6}, {"name": "Kid Rock", "character": "Robby", "id": 165867, "credit_id": "52fe43d99251416c750206ab", "cast_id": 16, "profile_path": "/66lSMLqYormarTqPQ28NTJoaFG7.jpg", "order": 7}, {"name": "Erik Per Sullivan", "character": "Little Joe Dirt", "id": 17190, "credit_id": "52fe43d99251416c750206af", "cast_id": 17, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 8}, {"name": "Caroline Aaron", "character": "Joe's Mom", "id": 1910, "credit_id": "52fe43d99251416c750206b3", "cast_id": 18, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 9}, {"name": "Megan Taylor Harvey", "character": "Joe's Little Sister", "id": 124668, "credit_id": "52fe43d99251416c750206b7", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "John Farley", "character": "Security Guard", "id": 5621, "credit_id": "52fe43d99251416c750206bb", "cast_id": 20, "profile_path": "/r3iQTni80PjyKo3OcXlU0Zmpcve.jpg", "order": 11}, {"name": "Tyler Mane", "character": "Bondi", "id": 9832, "credit_id": "54b139059251417479001c4f", "cast_id": 21, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 12}, {"name": "Brian Thompson", "character": "Buffalo Bob", "id": 2719, "credit_id": "54b1392dc3a368094a001b5a", "cast_id": 22, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 13}, {"name": "Rosanna Arquette", "character": "Charlene the Gator Farmer", "id": 2165, "credit_id": "54b139629251417472001e37", "cast_id": 23, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 14}, {"name": "Joe Don Baker", "character": "Don, Brandy's Dad", "id": 10671, "credit_id": "54b13987925141746c001d0c", "cast_id": 24, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 15}, {"name": "Kevin Nealon", "character": "Greasy Mechanic", "id": 58478, "credit_id": "54b139a7c3a3684138001804", "cast_id": 25, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 16}], "directors": [{"name": "Dennie Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe43d89251416c7502069d", "profile_path": "/3ykd6ByuQ77EpPYVGWate1BBtVP.jpg", "id": 66960}], "vote_average": 5.9, "runtime": 91}, "9541": {"poster_path": "/d8Qf8wVQV3K4Nl3KBuVNHMBCxgw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36098382, "overview": "Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.", "video": false, "id": 9541, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Jersey Girl", "tagline": "He wanted it all...but he got more than he bargained for.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0300051", "adult": false, "backdrop_path": "/iYNKzyuABzBtO1ZEujNB37d7dED.jpg", "production_companies": [{"name": "Close Call Films", "id": 23022}, {"name": "Miramax Films", "id": 14}, {"name": "View Askew Productions", "id": 16934}, {"name": "Beverly Detroit", "id": 267}], "release_date": "2004-03-25", "popularity": 0.709922275501342, "original_title": "Jersey Girl", "budget": 35000000, "cast": [{"name": "Ben Affleck", "character": "Ollie Trinke", "id": 880, "credit_id": "52fe4506c3a36847f80b7fb3", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Raquel Castro", "character": "Gertie Trinke", "id": 57893, "credit_id": "52fe4506c3a36847f80b7fb7", "cast_id": 2, "profile_path": "/m7ZEOdJhZAkJkd0GzJ7HpUiMCUl.jpg", "order": 1}, {"name": "Liv Tyler", "character": "Maya", "id": 882, "credit_id": "52fe4507c3a36847f80b7fbb", "cast_id": 3, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 2}, {"name": "Jennifer Lopez", "character": "Gertrude Steiney", "id": 16866, "credit_id": "52fe4507c3a36847f80b7fbf", "cast_id": 4, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 3}, {"name": "George Carlin", "character": "Bart Trinke", "id": 15903, "credit_id": "52fe4507c3a36847f80b7fc3", "cast_id": 5, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 4}, {"name": "Jennifer Schwalbach Smith", "character": "Susan", "id": 23658, "credit_id": "52fe4507c3a36847f80b7fc7", "cast_id": 6, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 5}, {"name": "Will Smith", "character": "Himself", "id": 2888, "credit_id": "52fe4507c3a36847f80b8013", "cast_id": 20, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 6}, {"name": "Stephen Root", "character": "Greenie", "id": 17401, "credit_id": "52fe4507c3a36847f80b8017", "cast_id": 21, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 7}, {"name": "Mike Starr", "character": "Block", "id": 5170, "credit_id": "52fe4507c3a36847f80b801b", "cast_id": 22, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 8}, {"name": "Jason Biggs", "character": "Arthur Brickman", "id": 21593, "credit_id": "52fe4507c3a36847f80b801f", "cast_id": 23, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 9}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4507c3a36847f80b7fcd", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.7, "runtime": 102}, "107846": {"poster_path": "/1jHF5or25uCZr7O5c7CYm9eTrTw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122915111, "overview": "Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.", "video": false, "id": 107846, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Escape Plan", "tagline": "No one breaks out alone.", "vote_count": 587, "homepage": "http://escapeplanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}], "imdb_id": "tt1211956", "adult": false, "backdrop_path": "/trtIwINGPoexmfTlt9WpBnBImpH.jpg", "production_companies": [{"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Summit Entertainment", "id": 491}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Mark Canton Productions", "id": 11761}, {"name": "Envision Entertainment", "id": 31832}, {"name": "Boies / Schiller Film Group", "id": 36212}], "release_date": "2013-10-18", "popularity": 3.11435624000155, "original_title": "Escape Plan", "budget": 50000000, "cast": [{"name": "Sylvester Stallone", "character": "Ray Breslin", "id": 16483, "credit_id": "52fe4a88c3a36847f81d39e5", "cast_id": 7, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Arnold Schwarzenegger", "character": "Emil Rottmayer", "id": 1100, "credit_id": "52fe4a88c3a36847f81d39e9", "cast_id": 8, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 1}, {"name": "Jim Caviezel", "character": "Willard Hobbes", "id": 8767, "credit_id": "52fe4a89c3a36847f81d3a09", "cast_id": 18, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 2}, {"name": "Vinnie Jones", "character": "Drake", "id": 980, "credit_id": "52fe4a88c3a36847f81d39ed", "cast_id": 10, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 3}, {"name": "50 Cent", "character": "Hush", "id": 62644, "credit_id": "52fe4a88c3a36847f81d39f1", "cast_id": 11, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 4}, {"name": "Vincent D'Onofrio", "character": "Lester Clark", "id": 7132, "credit_id": "52fe4a89c3a36847f81d3a0d", "cast_id": 19, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 5}, {"name": "Matt Gerald", "character": "Roag", "id": 98215, "credit_id": "52fe4a88c3a36847f81d39f5", "cast_id": 13, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 6}, {"name": "Sam Neill", "character": "Dr. Kyrie", "id": 4783, "credit_id": "52fe4a89c3a36847f81d3a11", "cast_id": 20, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 7}, {"name": "Christian Stokes", "character": "Babcock", "id": 575674, "credit_id": "52fe4a88c3a36847f81d39f9", "cast_id": 14, "profile_path": "/3Mduql3DgOxlBp00acdQU34Jwoj.jpg", "order": 8}, {"name": "Lydia Hull", "character": "Receptionist", "id": 1042684, "credit_id": "52fe4a88c3a36847f81d39fd", "cast_id": 15, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 9}, {"name": "David Joseph Martinez", "character": "Captain Baradah", "id": 578736, "credit_id": "52fe4a89c3a36847f81d3a05", "cast_id": 17, "profile_path": "/7mimaVmBgjgsNbYcoFdZK3gGLCT.jpg", "order": 10}, {"name": "Caitriona Balfe", "character": "Jessica Miller", "id": 147056, "credit_id": "52fe4a89c3a36847f81d3a15", "cast_id": 21, "profile_path": "/nZJyyXOKB5JtEArihhzcedRkLQ7.jpg", "order": 11}, {"name": "Amy Ryan", "character": "Abigail Ross", "id": 39388, "credit_id": "52fe4a89c3a36847f81d3a19", "cast_id": 22, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 12}, {"name": "Faran Tahir", "character": "Javed", "id": 57452, "credit_id": "52fe4a89c3a36847f81d3a1d", "cast_id": 23, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 13}, {"name": "Steven Krueger", "character": "Gabriel", "id": 1181295, "credit_id": "52fe4a89c3a36847f81d3a25", "cast_id": 25, "profile_path": "/vTrqS2cmnoVAYt6wKCfvp00c6s8.jpg", "order": 14}, {"name": "Jaylen Moore", "character": "Console Guard", "id": 1181296, "credit_id": "52fe4a89c3a36847f81d3a29", "cast_id": 26, "profile_path": "/xpRNJYs1ogkSIUPIUo5XLNfRW3.jpg", "order": 15}, {"name": "James Rawlings", "character": "Babylon Guard", "id": 565508, "credit_id": "52fe4a89c3a36847f81d3a2d", "cast_id": 27, "profile_path": "/cxADb4TZ27Rsfww4lcd74iJMBwm.jpg", "order": 16}, {"name": "Alec Rayme", "character": "Pilot", "id": 1381389, "credit_id": "54f598d5c3a36834f7001bf2", "cast_id": 122, "profile_path": "/iYVNYYIJTtdPWFfAcujmhoZ3bs.jpg", "order": 17}, {"name": "Graham Beckel", "character": "Brims", "id": 6110, "credit_id": "54f59920c3a36834f1001b8e", "cast_id": 123, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 18}, {"name": "David Leitch", "character": "Second Lieutenant", "id": 40684, "credit_id": "54f5994c9251412ba7001acf", "cast_id": 124, "profile_path": "/eVSgvAIsP6mwuVbbhVb4HkVvmsu.jpg", "order": 19}, {"name": "Stephen Warren", "character": "Tourist", "id": 1042685, "credit_id": "52fe4a89c3a36847f81d3a01", "cast_id": 16, "profile_path": null, "order": 20}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4a88c3a36847f81d39c3", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 6.7, "runtime": 115}, "9543": {"poster_path": "/6Je39tJKPrZ7zNacBXnk17BTTYz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 335154643, "overview": "A rogue prince (Jake Gyllenhaal) reluctantly joins forces with a mysterious princess (Gemma Arterton) and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time\u2014a gift from the gods that can reverse time and allow its possessor to rule the world. Based on the action-adventure video game of the same name.", "video": false, "id": 9543, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Prince of Persia: The Sands of Time", "tagline": "Defy the Future", "vote_count": 936, "homepage": "http://disney.go.com/disneypictures/princeofpersia", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0473075", "adult": false, "backdrop_path": "/2JK9IllXGo7V2PZzLmclkB5Cf8k.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2010-05-27", "popularity": 1.27472993241213, "original_title": "Prince of Persia: The Sands of Time", "budget": 150000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Prince Dastan", "id": 131, "credit_id": "52fe4507c3a36847f80b80e5", "cast_id": 5, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Tamina", "id": 59620, "credit_id": "52fe4507c3a36847f80b80d7", "cast_id": 2, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Nizam", "id": 2282, "credit_id": "52fe4507c3a36847f80b80ed", "cast_id": 7, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Alfred Molina", "character": "Sheik Amar", "id": 658, "credit_id": "52fe4507c3a36847f80b80e1", "cast_id": 4, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 2}, {"name": "Steve Toussaint", "character": "Seso", "id": 55412, "credit_id": "52fe4507c3a36847f80b80e9", "cast_id": 6, "profile_path": "/s1eGjGbPBIgWogRLsqPE1D1Hhxw.jpg", "order": 3}, {"name": "Toby Kebbell", "character": "Garsiv", "id": 20286, "credit_id": "52fe4507c3a36847f80b80f1", "cast_id": 8, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 4}, {"name": "Richard Coyle", "character": "Tus", "id": 52890, "credit_id": "52fe4507c3a36847f80b80f5", "cast_id": 9, "profile_path": "/4EVfNa7ZO6zSFDviiRvIOyoU9Ro.jpg", "order": 5}, {"name": "Ronald Pickup", "character": "King Sharaman", "id": 32556, "credit_id": "52fe4507c3a36847f80b80f9", "cast_id": 10, "profile_path": "/a0Q0rSRe8yBPoAyWhNSX7pzIaYq.jpg", "order": 6}, {"name": "Reece Ritchie", "character": "Bis", "id": 54810, "credit_id": "530903f1925141111a002288", "cast_id": 26, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 7}, {"name": "G\u00edsli \u00d6rn Gar\u00f0arsson", "character": "Hassansin Leader", "id": 587354, "credit_id": "5309047e92514111140022c5", "cast_id": 27, "profile_path": "/2ANjdLHbKhrrWAwcm75pmYgr2VD.jpg", "order": 8}, {"name": "Claudio Pacifico", "character": "Hassansin Porcupine", "id": 15913, "credit_id": "530904a7925141111a00228a", "cast_id": 28, "profile_path": "/Odddp6eMNCt6QdvC8cOXWXXGlz.jpg", "order": 9}, {"name": "Thomas DuPont", "character": "Hassansin Whip Man", "id": 169691, "credit_id": "5309053c9251411108002323", "cast_id": 29, "profile_path": "/wQfLBeJwzJFHW3IBOTk7TfNTzAi.jpg", "order": 10}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe4507c3a36847f80b80d3", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.2, "runtime": 116}, "9549": {"poster_path": "/o2t9jnHHJL0j4P7GDuGmovc1lAH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21500000, "overview": "Tom Wolfe's book on the history of the U.S. Space program reads like a novel, and the film has that same fictional quality. It covers the breaking of the sound barrier by Chuck Yeager to the Mercury 7 astronauts, showing that no one had a clue how to run a space program or how to select people to be in it. Thrilling, funny, charming and electrifying all at once.", "video": false, "id": 9549, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Right Stuff", "tagline": "How the future began.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086197", "adult": false, "backdrop_path": "/yJ1ItKaKolReKVVIOvq9zlGwrV7.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "The Ladd Company", "id": 7965}], "release_date": "1983-10-21", "popularity": 0.372761114175224, "original_title": "The Right Stuff", "budget": 27000000, "cast": [{"name": "Fred Ward", "character": "Gus Grissom", "id": 10430, "credit_id": "52fe4508c3a36847f80b84dd", "cast_id": 5, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Gordon Cooper", "id": 6065, "credit_id": "52fe4508c3a36847f80b84d9", "cast_id": 4, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Ed Harris", "character": "John Glenn", "id": 228, "credit_id": "52fe4508c3a36847f80b84d5", "cast_id": 3, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Scott Glenn", "character": "Alan Shepard", "id": 349, "credit_id": "52fe4508c3a36847f80b84d1", "cast_id": 2, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 3}, {"name": "Sam Shepard", "character": "Chuck Yeager", "id": 9880, "credit_id": "52fe4508c3a36847f80b84cd", "cast_id": 1, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 4}, {"name": "Barbara Hershey", "character": "Glennis Yeager", "id": 10767, "credit_id": "52fe4508c3a36847f80b84e1", "cast_id": 6, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 5}, {"name": "Lance Henriksen", "character": "Wally Schirra", "id": 2714, "credit_id": "52fe4508c3a36847f80b8543", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 6}, {"name": "Veronica Cartwright", "character": "Betty Grissom", "id": 5047, "credit_id": "52fe4508c3a36847f80b8537", "cast_id": 21, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 7}, {"name": "Harry Shearer", "character": "NASA Recruiter", "id": 6008, "credit_id": "54c6afc692514167910001d0", "cast_id": 30, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 8}, {"name": "Jeff Goldblum", "character": "NASA Recruiter", "id": 4785, "credit_id": "54c6afd6c3a36874ac0001ad", "cast_id": 31, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 9}, {"name": "Kim Stanley", "character": "Pancho Barnes", "id": 31440, "credit_id": "52fe4508c3a36847f80b8533", "cast_id": 20, "profile_path": "/bCL1tymwXIShJF64C91J5h5wvEW.jpg", "order": 10}, {"name": "Pamela Reed", "character": "Trudy Cooper", "id": 14699, "credit_id": "52fe4508c3a36847f80b853b", "cast_id": 22, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 11}, {"name": "Scott Paulin", "character": "Deke Slayton", "id": 48810, "credit_id": "52fe4508c3a36847f80b853f", "cast_id": 23, "profile_path": "/hXCaNiAPOuV16eLEWfnPmNHBX2L.jpg", "order": 12}, {"name": "Charles Frank", "character": "Scott Carpenter", "id": 1213001, "credit_id": "52fe4508c3a36847f80b8553", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Donald Moffat", "character": "Lyndon B. Johnson", "id": 15417, "credit_id": "52fe4508c3a36847f80b8547", "cast_id": 26, "profile_path": "/s1z6xGV9M1sx1EQdQb1mpU58mqy.jpg", "order": 14}, {"name": "Levon Helm", "character": "Jack Ridley / Narrator", "id": 76136, "credit_id": "52fe4508c3a36847f80b854b", "cast_id": 27, "profile_path": "/zcTWB3viwehOjiEnQzhUinGFLTR.jpg", "order": 15}, {"name": "Mary Jo Deschanel", "character": "Annie Glenn", "id": 271352, "credit_id": "52fe4508c3a36847f80b854f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Scott Wilson", "character": "Scott Crossfield", "id": 6914, "credit_id": "54c6aff6925141679c0001ee", "cast_id": 32, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 17}, {"name": "Kathy Baker", "character": "Louise Shepard", "id": 1907, "credit_id": "54c6b017c3a36874ac0001bd", "cast_id": 33, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 18}], "directors": [{"name": "Philip Kaufman", "department": "Directing", "job": "Director", "credit_id": "52fe4508c3a36847f80b84f3", "profile_path": "/5hmDqd4AoGgDnAb18L6JcjtqlmK.jpg", "id": 648}], "vote_average": 7.4, "runtime": 193}, "9550": {"poster_path": "/wL1HUjrByfLO1kNqCm7uYAMIwAA.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.", "video": false, "id": 9550, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "House of Flying Daggers", "tagline": "", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0385004", "adult": false, "backdrop_path": "/x0jkRD2yXMxj2T2fW1kdG7rmGnx.jpg", "production_companies": [{"name": "Beijing New Picture Film Co. Ltd.", "id": 724}], "release_date": "2004-05-19", "popularity": 0.267658851411282, "original_title": "House of Flying Daggers", "budget": 0, "cast": [{"name": "Takeshi Kaneshiro", "character": "Jin", "id": 43661, "credit_id": "52fe4508c3a36847f80b8575", "cast_id": 1, "profile_path": "/4dkGDeidUiqZ2jnjB4I8zls3Big.jpg", "order": 0}, {"name": "Zhang Ziyi", "character": "Xiao Mei", "id": 1339, "credit_id": "52fe4508c3a36847f80b8579", "cast_id": 3, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 1}, {"name": "Dandan Song", "character": "Yee", "id": 57912, "credit_id": "52fe4508c3a36847f80b857d", "cast_id": 4, "profile_path": "/jANOJINWJLrgkhh6RnAMZrhXtZC.jpg", "order": 2}, {"name": "Andy Lau", "character": "Leo", "id": 25246, "credit_id": "52fe4508c3a36847f80b85bd", "cast_id": 16, "profile_path": "/ukyTNTiGM8vnHynIy9JBaI9XDaN.jpg", "order": 3}], "directors": [{"name": "Zhang Yimou", "department": "Directing", "job": "Director", "credit_id": "52fe4508c3a36847f80b85b9", "profile_path": "/rXancm9GMRLQlGc4dz6o5BFtnRy.jpg", "id": 607}], "vote_average": 6.7, "runtime": 119}, "1359": {"poster_path": "/qXsylPM4Lr5397R3eHrfqHhTUNc.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34266564, "overview": "A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.", "video": false, "id": 1359, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "American Psycho", "tagline": "I think my mask of sanity is about to slip.", "vote_count": 400, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/ko4O9lcRGYOZAF5Hh79Mfsgjpun.jpg", "id": 86105, "name": "American Psycho Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0144084", "adult": false, "backdrop_path": "/zf7L87ZS2cXjaRT5d3ibIUaJvoo.jpg", "production_companies": [{"name": "Lions Gate", "id": 6644}], "release_date": "2000-04-14", "popularity": 2.07116351743797, "original_title": "American Psycho", "budget": 7000000, "cast": [{"name": "Christian Bale", "character": "Patrick Bateman", "id": 3894, "credit_id": "52fe42eec3a36847f802daf9", "cast_id": 3, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Evelyn Williams", "id": 368, "credit_id": "52fe42eec3a36847f802dafd", "cast_id": 4, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Justin Theroux", "character": "Timothy Bryce", "id": 15009, "credit_id": "52fe42eec3a36847f802db01", "cast_id": 5, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 2}, {"name": "Josh Lucas", "character": "Craig McDermott", "id": 6164, "credit_id": "52fe42eec3a36847f802db05", "cast_id": 6, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 3}, {"name": "Bill Sage", "character": "David Van Patten", "id": 32029, "credit_id": "52fe42eec3a36847f802db09", "cast_id": 7, "profile_path": "/580okgFwmaKyT12s1lUfY8yV9dg.jpg", "order": 4}, {"name": "Chlo\u00eb Sevigny", "character": "Jean", "id": 2838, "credit_id": "52fe42eec3a36847f802db0d", "cast_id": 8, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 5}, {"name": "Samantha Mathis", "character": "Courtney Rawlinson", "id": 20767, "credit_id": "52fe42eec3a36847f802db11", "cast_id": 9, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 6}, {"name": "Matt Ross", "character": "Luis Carruthers", "id": 11154, "credit_id": "52fe42eec3a36847f802db15", "cast_id": 10, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 7}, {"name": "Jared Leto", "character": "Paul Allen", "id": 7499, "credit_id": "52fe42eec3a36847f802db19", "cast_id": 11, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 8}, {"name": "Willem Dafoe", "character": "Det. Donald Kimball", "id": 5293, "credit_id": "52fe42eec3a36847f802db1d", "cast_id": 12, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 9}, {"name": "Cara Seymour", "character": "Christie", "id": 2617, "credit_id": "52fe42eec3a36847f802db21", "cast_id": 13, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 10}, {"name": "Guinevere Turner", "character": "Elizabeth", "id": 32030, "credit_id": "52fe42eec3a36847f802db25", "cast_id": 14, "profile_path": "/nIve3PnpAc82U2MxhLPde7wVqqx.jpg", "order": 11}, {"name": "Stephen Bogaert", "character": "Harold Carnes", "id": 32031, "credit_id": "52fe42eec3a36847f802db29", "cast_id": 15, "profile_path": "/xEfkwQ4geFjNqN8djI78lkvqq8i.jpg", "order": 12}, {"name": "Monika Meier", "character": "Daisy", "id": 32032, "credit_id": "52fe42eec3a36847f802db2d", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Krista Sutton", "character": "Sabrina", "id": 32033, "credit_id": "52fe42eec3a36847f802db31", "cast_id": 17, "profile_path": "/udDkMIr8LKCr8EuXskTCqBKYvbK.jpg", "order": 14}], "directors": [{"name": "Mary Harron", "department": "Directing", "job": "Director", "credit_id": "52fe42eec3a36847f802daf5", "profile_path": "/qlWi0kufzB7lCq6Jz5zuNE3Kk1V.jpg", "id": 16378}], "vote_average": 6.9, "runtime": 102}, "1360": {"poster_path": "/1vT449vIaBG3nt1fe8RalNOSP7u.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56298474, "overview": "\"Frida\" chronicles the life Frida Kahlo shared unflinchingly and openly with Diego Rivera, as the young couple took the art world by storm. From her complex and enduring relationship with her mentor and husband to her illicit and controversial affair with Leon Trotsky, to her provocative and romantic entanglements with women, Frida Kahlo lived a bold and uncompromising life as a political, artistic, and sexual revolutionary", "video": false, "id": 1360, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Frida", "tagline": "Prepare to be seduced", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120679", "adult": false, "backdrop_path": "/iLpWNh7ur2sEJIX7NgbiJgdmdjJ.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Lions Gate Films", "id": 35}, {"name": "Ventanarosa Productions", "id": 689}, {"name": "Handprint Entertainment", "id": 690}], "release_date": "2002-08-29", "popularity": 0.457155755930494, "original_title": "Frida", "budget": 12000000, "cast": [{"name": "Salma Hayek", "character": "Frida Kahlo", "id": 3136, "credit_id": "52fe42eec3a36847f802dc39", "cast_id": 21, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 0}, {"name": "Alfred Molina", "character": "Diego Rivera", "id": 658, "credit_id": "52fe42eec3a36847f802dc3d", "cast_id": 22, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 1}, {"name": "M\u00eda Maestro", "character": "Cristina Kahlo", "id": 6859, "credit_id": "52fe42eec3a36847f802dc41", "cast_id": 23, "profile_path": "/UIf7kAHqAGRwJ9TZSkZ91A1scr.jpg", "order": 2}, {"name": "Patricia Reyes Sp\u00edndola", "character": "Matilde Kahlo", "id": 16406, "credit_id": "52fe42eec3a36847f802dc45", "cast_id": 24, "profile_path": "/vznHPfrlnY8wHjsLj78C5KWWTjS.jpg", "order": 3}, {"name": "Diego Luna", "character": "Alejandro", "id": 8688, "credit_id": "52fe42eec3a36847f802dc49", "cast_id": 25, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 4}, {"name": "Roger Rees", "character": "Guillermo Kahlo", "id": 16407, "credit_id": "52fe42eec3a36847f802dc4d", "cast_id": 26, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 5}, {"name": "Ashley Judd", "character": "Tina Modotti", "id": 15852, "credit_id": "52fe42eec3a36847f802dc51", "cast_id": 27, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 6}, {"name": "Antonio Banderas", "character": "David Alfaro Siqueiros", "id": 3131, "credit_id": "52fe42eec3a36847f802dc55", "cast_id": 28, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 7}, {"name": "Edward Norton", "character": "Nelson Rockefeller", "id": 819, "credit_id": "52fe42eec3a36847f802dc59", "cast_id": 29, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 8}, {"name": "Saffron Burrows", "character": "Gracie", "id": 9825, "credit_id": "52fe42eec3a36847f802dc5d", "cast_id": 30, "profile_path": "/9avh3TGQ2dgrwMBk38YLdmLXGr3.jpg", "order": 9}, {"name": "Geoffrey Rush", "character": "Leon Trotsky", "id": 118, "credit_id": "52fe42eec3a36847f802dc61", "cast_id": 31, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 10}, {"name": "Margarita Sanz", "character": "Natalia Trotsky", "id": 16408, "credit_id": "52fe42eec3a36847f802dc65", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Omar Rodr\u00edguez", "character": "Andr\u00e9 Breton", "id": 16409, "credit_id": "52fe42eec3a36847f802dc69", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Lila Downs", "character": "Tango Singer", "id": 991946, "credit_id": "532e5bbec3a3685fbb0031e7", "cast_id": 34, "profile_path": null, "order": 13}], "directors": [{"name": "Julie Taymor", "department": "Directing", "job": "Director", "credit_id": "52fe42eec3a36847f802dbc3", "profile_path": "/6PHmqn1Y4Y0jzSCCIVO0oYaR71Q.jpg", "id": 16391}], "vote_average": 7.1, "runtime": 123}, "24803": {"poster_path": "/wrbCJtGfneCx4YvyHHCPbjD5xcN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Julia Child and Julie Powell - both of whom wrote memoirs - find their lives intertwined. Though separated by time and space, both women are at loose ends... until they discover that with the right combination of passion, fearlessness and butter, anything is possible.", "video": false, "id": 24803, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Julie & Julia", "tagline": "Based on Two True Stories", "vote_count": 108, "homepage": "http://www.julieandjulia.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1135503", "adult": false, "backdrop_path": "/v5fC4udCQLOzZZRbI87QyQ8V2cd.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Easy There Tiger Productions", "id": 11804}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2009-08-07", "popularity": 0.248497864926825, "original_title": "Julie & Julia", "budget": 0, "cast": [{"name": "Meryl Streep", "character": "Julia Child", "id": 5064, "credit_id": "52fe44aac3a368484e02fed3", "cast_id": 1, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Amy Adams", "character": "Julie Powell", "id": 9273, "credit_id": "52fe44aac3a368484e02fed7", "cast_id": 2, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Chris Messina", "character": "Eric Powell", "id": 61659, "credit_id": "52fe44aac3a368484e02fee1", "cast_id": 4, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Paul Child", "id": 2283, "credit_id": "52fe44aac3a368484e02fee5", "cast_id": 5, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Linda Emond", "character": "Simone Beck", "id": 58643, "credit_id": "52fe44aac3a368484e02ff61", "cast_id": 26, "profile_path": "/tJJs1Mj1e7G03bEBoin6JcGLlW7.jpg", "order": 4}, {"name": "Helen Carey", "character": "Louisette Bertholle", "id": 17185, "credit_id": "52fe44aac3a368484e02ff65", "cast_id": 27, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 5}, {"name": "Mary Lynn Rajskub", "character": "Sarah", "id": 25884, "credit_id": "52fe44aac3a368484e02ff69", "cast_id": 28, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 6}, {"name": "Jane Lynch", "character": "Dorothy McWilliams", "id": 43775, "credit_id": "52fe44aac3a368484e02ff6d", "cast_id": 29, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 7}, {"name": "Joan Juliet Buck", "character": "Madame Brassart", "id": 1123818, "credit_id": "52fe44aac3a368484e02ff71", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Crystal Noelle", "character": "Ernestine", "id": 967452, "credit_id": "52fe44aac3a368484e02ff75", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "George Bartenieff", "character": "Chef Max Bugnard", "id": 171242, "credit_id": "52fe44aac3a368484e02ff79", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Vanessa Ferlito", "character": "Cassie", "id": 20491, "credit_id": "52fe44aac3a368484e02ff7d", "cast_id": 33, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 11}, {"name": "Casey Wilson", "character": "Regina", "id": 83872, "credit_id": "52fe44aac3a368484e02ff81", "cast_id": 34, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 12}, {"name": "Jillian Bach", "character": "Annabelle", "id": 61219, "credit_id": "52fe44aac3a368484e02ff85", "cast_id": 35, "profile_path": "/8P4y1ndyTCVltT20zB5kFkPO9OC.jpg", "order": 13}, {"name": "Andrew Garman", "character": "John O'Brien", "id": 206902, "credit_id": "52fe44aac3a368484e02ff89", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Nora Ephron", "department": "Directing", "job": "Director", "credit_id": "52fe44aac3a368484e02fedd", "profile_path": "/5ATtVUoKNmSluDThE1PvEM6HAyT.jpg", "id": 9248}], "vote_average": 6.3, "runtime": 123}, "9556": {"poster_path": "/2sV5iwra6GwvWKBK6UVjSrW11G5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48878502, "overview": "Dr. Peyton Westlake is on the verge of realizing a major breakthrough in synthetic skin when his laboratory is destroyed by gangsters. Having been burned beyond recognition and forever altered by an experimental medical procedure, Westlake becomes known as Darkman, assuming alternate identities in his quest for revenge and a new life with a former love.", "video": false, "id": 9556, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Darkman", "tagline": "They destroyed everything he had, everything he was. Now, crime has a new enemy and justice has a new face.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oVqe4GNZkbWPppmvIyxFmyZNPhx.jpg", "poster_path": "/mHrcic92RHbKHDi5Lxdhu5job6X.jpg", "id": 45154, "name": "Darkman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099365", "adult": false, "backdrop_path": "/cItqd45TymbFm4pDbludkEJYrrI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Renaissance Pictures", "id": 467}], "release_date": "1990-08-24", "popularity": 0.673607283354002, "original_title": "Darkman", "budget": 16000000, "cast": [{"name": "Liam Neeson", "character": "Peyton Westlake / Darkman", "id": 3896, "credit_id": "52fe4509c3a36847f80b889d", "cast_id": 1, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Julie Hastings", "id": 3910, "credit_id": "52fe4509c3a36847f80b88a1", "cast_id": 2, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Colin Friels", "character": "Louis Strack Jr.", "id": 27753, "credit_id": "52fe4509c3a36847f80b88a5", "cast_id": 3, "profile_path": "/tXKCpTwCs4TZYdQ6p5Kch7sRkkS.jpg", "order": 2}, {"name": "Larry Drake", "character": "Robert G. Durant", "id": 16476, "credit_id": "52fe4509c3a36847f80b88a9", "cast_id": 4, "profile_path": "/yRtzWEX4wdviO7bV5rH5z4AfGvv.jpg", "order": 3}, {"name": "Nelson Mashita", "character": "Yakitito", "id": 57959, "credit_id": "52fe4509c3a36847f80b88ad", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jessie Lawrence Ferguson", "character": "Eddie Black", "id": 9786, "credit_id": "52fe4509c3a36847f80b88fd", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Rafael H. Robledo", "character": "Rudy Guzman", "id": 95209, "credit_id": "52fe4509c3a36847f80b8901", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Dan Hicks", "character": "Skip", "id": 11750, "credit_id": "52fe4509c3a36847f80b8905", "cast_id": 21, "profile_path": "/p6UEdkL9oJGLRVkMgQtrKvJ3cCl.jpg", "order": 7}, {"name": "Ted Raimi", "character": "Rick", "id": 11769, "credit_id": "52fe4509c3a36847f80b8909", "cast_id": 22, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 8}, {"name": "Dan Bell", "character": "Smiley", "id": 182210, "credit_id": "52fe4509c3a36847f80b890d", "cast_id": 23, "profile_path": "/dZqTViqN7GrJMWXVIkHM7aYdXLX.jpg", "order": 9}, {"name": "Nicholas Worth", "character": "Pauly", "id": 100461, "credit_id": "52fe4509c3a36847f80b8911", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Aaron Lustig", "character": "Martin Katz", "id": 140237, "credit_id": "52fe4509c3a36847f80b8915", "cast_id": 25, "profile_path": "/3Ay4BadhJtyTWxhOwxvryHkE3dj.jpg", "order": 11}, {"name": "Arsenio 'Sonny' Trinidad", "character": "Hung Fat", "id": 1080062, "credit_id": "52fe4509c3a36847f80b8919", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "John Landis", "character": "Physician", "id": 4610, "credit_id": "52fe4509c3a36847f80b891d", "cast_id": 27, "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "order": 13}, {"name": "Bruce Campbell", "character": "Final Shemp", "id": 11357, "credit_id": "52fe4509c3a36847f80b88b1", "cast_id": 6, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 14}, {"name": "William Lustig", "character": "Dockworker", "id": 44765, "credit_id": "53dd93800e0a265a8a000d63", "cast_id": 33, "profile_path": "/9xmAzAD1As1NfBLeD2N5oiRoFp7.jpg", "order": 15}, {"name": "Scott Spiegel", "character": "Dockworker", "id": 11641, "credit_id": "53dd93930e0a265a96000df4", "cast_id": 34, "profile_path": null, "order": 16}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4509c3a36847f80b88b7", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.2, "runtime": 96}, "25941": {"poster_path": "/uucoqZN7KL3h60PlPyQSCqWKIhQ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "An elderly ex-serviceman and widower looks to avenge his best friend's murder by doling out his own form of justice.", "video": false, "id": 25941, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Harry Brown", "tagline": "Every man has a breaking point.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1289406", "adult": false, "backdrop_path": "/szj3uqOGDu8Uwvwo0Si42BCxI04.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "HanWay Films", "id": 2395}, {"name": "UK Film Council", "id": 2452}], "release_date": "2009-11-11", "popularity": 1.15885425578021, "original_title": "Harry Brown", "budget": 7300000, "cast": [{"name": "Michael Caine", "character": "Harry Brown", "id": 3895, "credit_id": "52fe44e5c3a368484e03d209", "cast_id": 1, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 0}, {"name": "Emily Mortimer", "character": "D.I. Alice Frampton", "id": 1246, "credit_id": "52fe44e5c3a368484e03d20d", "cast_id": 2, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 1}, {"name": "Iain Glen", "character": "S.I. Childs", "id": 20508, "credit_id": "52fe44e5c3a368484e03d211", "cast_id": 3, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 2}, {"name": "Lee Oakes", "character": "Dean Saunders", "id": 59075, "credit_id": "52fe44e5c3a368484e03d227", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Liam Cunningham", "character": "Sid Rourke", "id": 15498, "credit_id": "52fe44e5c3a368484e03d231", "cast_id": 10, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 4}, {"name": "Sean Harris", "character": "Stretch", "id": 16702, "credit_id": "52fe44e5c3a368484e03d235", "cast_id": 11, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 5}, {"name": "Charlie Creed-Miles", "character": "D.S. Terry Hicock", "id": 8397, "credit_id": "52fe44e5c3a368484e03d239", "cast_id": 12, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 6}, {"name": "David Bradley", "character": "Leonard Attwell", "id": 11180, "credit_id": "52fe44e6c3a368484e03d23d", "cast_id": 13, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 7}, {"name": "Ben Drew", "character": "Noel Winters", "id": 449889, "credit_id": "52fe44e6c3a368484e03d241", "cast_id": 14, "profile_path": "/i6KFOQwAUEEPJgcLl5N8Nonj2qo.jpg", "order": 8}, {"name": "Jack O'Connell", "character": "Marky", "id": 85065, "credit_id": "52fe44e6c3a368484e03d245", "cast_id": 15, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 9}, {"name": "Jamie Downey", "character": "Carl", "id": 1148519, "credit_id": "52fe44e6c3a368484e03d249", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Liz Daniels", "character": "Kath Brown", "id": 1148520, "credit_id": "52fe44e6c3a368484e03d24d", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Daniel Barber", "department": "Directing", "job": "Director", "credit_id": "52fe44e5c3a368484e03d217", "profile_path": null, "id": 94918}], "vote_average": 6.8, "runtime": 103}, "1366": {"poster_path": "/lmwGr6J5y6kngFNQuFV2y1yw4OB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117235147, "overview": "When world heavyweight boxing champ Apollo Creed wants to give an unknown fighter a shot at the title as a publicity stunt, his handlers pick palooka Rocky Balboa, an uneducated collector for a Philadelphia loan shark.", "video": false, "id": 1366, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky", "tagline": "His whole life was a million-to-one shot.", "vote_count": 463, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075148", "adult": false, "backdrop_path": "/2kkyt0FLROrXt41IgSdE7goCFNQ.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1976-11-21", "popularity": 1.43476318946101, "original_title": "Rocky", "budget": 1100000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42efc3a36847f802e019", "cast_id": 16, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrianna \"Adrian\" Pennino", "id": 3094, "credit_id": "52fe42efc3a36847f802e01d", "cast_id": 17, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42efc3a36847f802e021", "cast_id": 18, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42efc3a36847f802e025", "cast_id": 19, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42efc3a36847f802e029", "cast_id": 20, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Thayer David", "character": "Jergens", "id": 16524, "credit_id": "52fe42efc3a36847f802e02d", "cast_id": 21, "profile_path": "/6FJMDJHeRaQq0wvgmL0lAQ3GC2d.jpg", "order": 5}, {"name": "Joe Spinell", "character": "Gazzo", "id": 16525, "credit_id": "52fe42efc3a36847f802e031", "cast_id": 22, "profile_path": "/wzZZO8xXn9OgljCmrGGR4L6wBdg.jpg", "order": 6}, {"name": "Jimmy Gambina", "character": "Mike", "id": 16526, "credit_id": "52fe42efc3a36847f802e035", "cast_id": 23, "profile_path": "/8ygxVOL1P75gsI8BOlia5Hqorc5.jpg", "order": 7}, {"name": "Bill Baldwin", "character": "Fight Announcer", "id": 16527, "credit_id": "52fe42efc3a36847f802e039", "cast_id": 24, "profile_path": "/iO3gWXI34gESKYbdvTxMaTzUbJ9.jpg", "order": 8}, {"name": "Al Silvani", "character": "Cut Man", "id": 16528, "credit_id": "52fe42efc3a36847f802e03d", "cast_id": 25, "profile_path": "/tHjzbzaPTDPvkewRwmiXH0zQkdI.jpg", "order": 9}, {"name": "George Memmoli", "character": "Ice Rink Attendant", "id": 2563, "credit_id": "52fe42efc3a36847f802e041", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Jodi Letizia", "character": "Marie", "id": 16529, "credit_id": "52fe42efc3a36847f802e045", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Diana Lewis", "character": "TV Commentator 1", "id": 16530, "credit_id": "52fe42efc3a36847f802e049", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "George O'Hanlon", "character": "TV Commentator 2", "id": 16531, "credit_id": "52fe42efc3a36847f802e04d", "cast_id": 29, "profile_path": "/2hrNnR9yoCpbtVvJIqbY7xvV5CI.jpg", "order": 13}, {"name": "Larry Carroll", "character": "TV Interviewer", "id": 16532, "credit_id": "52fe42efc3a36847f802e051", "cast_id": 30, "profile_path": "/1cnHZFaslmoPXTK54bJMepQ795u.jpg", "order": 14}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42efc3a36847f802e055", "cast_id": 31, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 15}, {"name": "Lloyd Kaufman", "character": "Drunk", "id": 78021, "credit_id": "52fe42efc3a36847f802e059", "cast_id": 32, "profile_path": "/zTylEHdJL422WZ1vjEmEkDoWkk7.jpg", "order": 16}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802dfc1", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 7.0, "runtime": 119}, "1367": {"poster_path": "/nFtDSJ2ebN54jdWrrF391mJzMhL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200182160, "overview": "After Rocky goes the distance with champ Apollo Creed, both try to put the fight behind them and move on. Rocky settles down with Adrian but can't put his life together outside the ring, while Creed seeks a rematch to restore his reputation. Soon enough, the \"Master of Disaster\" and the \"Italian Stallion\" are set on a collision course for a climactic battle that is brutal and unforgettable.", "video": false, "id": 1367, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky II", "tagline": "Once he fought for a dream. Now he's fighting for love!", "vote_count": 224, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079817", "adult": false, "backdrop_path": "/ouurCv7Py7sKJmXbbvpHDOLWaHl.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1979-06-15", "popularity": 1.09175692132828, "original_title": "Rocky II", "budget": 7000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42efc3a36847f802e10b", "cast_id": 19, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42efc3a36847f802e10f", "cast_id": 20, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42efc3a36847f802e113", "cast_id": 21, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42efc3a36847f802e117", "cast_id": 22, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42efc3a36847f802e11b", "cast_id": 23, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42efc3a36847f802e11f", "cast_id": 24, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "Joe Spinell", "character": "Tony Gazzo", "id": 16525, "credit_id": "52fe42efc3a36847f802e123", "cast_id": 25, "profile_path": "/wzZZO8xXn9OgljCmrGGR4L6wBdg.jpg", "order": 6}, {"name": "Leonard Gaines", "character": "Agent", "id": 16540, "credit_id": "52fe42efc3a36847f802e127", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Sylvia Meals", "character": "Mary Anne Creed", "id": 16541, "credit_id": "52fe42efc3a36847f802e12b", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Frank McRae", "character": "Meat Foreman", "id": 1735, "credit_id": "52fe42efc3a36847f802e12f", "cast_id": 28, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 9}, {"name": "John Pleshette", "character": "Director", "id": 16542, "credit_id": "52fe42efc3a36847f802e133", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Stu Nahan", "character": "Announcer", "id": 16543, "credit_id": "52fe42efc3a36847f802e137", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Bill Baldwin", "character": "Commentator", "id": 16527, "credit_id": "52fe42efc3a36847f802e13b", "cast_id": 31, "profile_path": "/iO3gWXI34gESKYbdvTxMaTzUbJ9.jpg", "order": 12}, {"name": "Jerry Ziesmer", "character": "Salesman", "id": 8346, "credit_id": "52fe42efc3a36847f802e13f", "cast_id": 32, "profile_path": "/TCrODTVTktmyXk4PrD5fWvMJye.jpg", "order": 13}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802e0a1", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.6, "runtime": 119}, "1368": {"poster_path": "/v0sPtM5lGkLwtfDlWpn07nqJPyf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125212904, "overview": "When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, the Vietnam vet snaps, runs for the hills and rat-a-tat-tats his way into the action-movie hall of fame. Hounded by a relentless sheriff, Rambo employs heavy-handed guerilla tactics to shake the cops off his tail.", "video": false, "id": 1368, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "First Blood", "tagline": "This time he's fighting for his life.", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083944", "adult": false, "backdrop_path": "/5tc7kIF9MXLwSDyW61sj4jTvBxX.jpg", "production_companies": [{"name": "Carolco Pictures", "id": 14723}, {"name": "Orion Pictures", "id": 41}, {"name": "Roadshow Productions", "id": 7020}], "release_date": "1982-10-22", "popularity": 1.26143023906765, "original_title": "First Blood", "budget": 15000000, "cast": [{"name": "Sylvester Stallone", "character": "John J. Rambo", "id": 16483, "credit_id": "52fe42efc3a36847f802e1fb", "cast_id": 20, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Richard Crenna", "character": "Col. Samuel Trautman", "id": 16554, "credit_id": "52fe42efc3a36847f802e1ff", "cast_id": 21, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 1}, {"name": "Brian Dennehy", "character": "Hope Sheriff Will Teasle", "id": 6197, "credit_id": "52fe42efc3a36847f802e203", "cast_id": 22, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 2}, {"name": "Bill McKinney", "character": "State Police Capt. Dave Kern", "id": 16555, "credit_id": "52fe42efc3a36847f802e207", "cast_id": 23, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 3}, {"name": "Jack Starrett", "character": "Deputy Sgt. Arthur Galt", "id": 16556, "credit_id": "52fe42efc3a36847f802e20b", "cast_id": 24, "profile_path": null, "order": 4}, {"name": "Michael Talbott", "character": "Deputy Balford", "id": 16557, "credit_id": "52fe42efc3a36847f802e20f", "cast_id": 25, "profile_path": "/yOlbGF2VDQHZeESRo0gQq0BfU1B.jpg", "order": 5}, {"name": "Chris Mulkey", "character": "Deputy Ward", "id": 15824, "credit_id": "52fe42efc3a36847f802e213", "cast_id": 26, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 6}, {"name": "John McLiam", "character": "Orval the Dog Man", "id": 16558, "credit_id": "52fe42efc3a36847f802e217", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Alf Humphries", "character": "Deputy Lester", "id": 16559, "credit_id": "52fe42efc3a36847f802e21b", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "David Caruso", "character": "Deputy Mitch", "id": 16560, "credit_id": "52fe42efc3a36847f802e21f", "cast_id": 29, "profile_path": "/i251LGpMkOeOqRmqlCpKkNoGdni.jpg", "order": 9}, {"name": "David L. Crowley", "character": "Deputy Shingleton", "id": 16561, "credit_id": "52fe42efc3a36847f802e223", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Don MacKay", "character": "Preston", "id": 16562, "credit_id": "52fe42efc3a36847f802e227", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Charles A. Tamburro", "character": "Pilot", "id": 16563, "credit_id": "52fe42efc3a36847f802e22b", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "David Petersen", "character": "Trooper", "id": 16564, "credit_id": "52fe42efc3a36847f802e22f", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Craig Huston", "character": "Radio operator", "id": 16565, "credit_id": "52fe42efc3a36847f802e233", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "Ted Kotcheff", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802e18b", "profile_path": "/r4rMwZeClwJR2VCgvYsNjLOTXpB.jpg", "id": 16544}], "vote_average": 6.8, "runtime": 93}, "1369": {"poster_path": "/xYLmHi80zIlu3JDfJYfd1JY0Xl7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300400432, "overview": "Col. Troutman recruits ex-Green Beret John Rambo for a highly secret and dangerous mission. Teamed with freedom fighter Co Bao, Rambo goes deep into Vietnam to rescue POWs. Deserted by his own team, he's left in a hostile jungle to fight for his life, avenge the death of a woman and bring corrupt officials to justice.", "video": false, "id": 1369, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Rambo: First Blood Part II", "tagline": "What most people call hell, he calls home.", "vote_count": 224, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0089880", "adult": false, "backdrop_path": "/dy5ThWXUuEHH60liT8oVSDqkSGB.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1985-05-21", "popularity": 1.09210705984778, "original_title": "Rambo: First Blood Part II", "budget": 44000000, "cast": [{"name": "Sylvester Stallone", "character": "John J. Rambo", "id": 16483, "credit_id": "52fe42f0c3a36847f802e327", "cast_id": 27, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Richard Crenna", "character": "Col. Samuel Trautman", "id": 16554, "credit_id": "52fe42f0c3a36847f802e32b", "cast_id": 28, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 1}, {"name": "Charles Napier", "character": "Marshall Murdock", "id": 16119, "credit_id": "52fe42f0c3a36847f802e32f", "cast_id": 29, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 2}, {"name": "Steven Berkoff", "character": "Lt. Col. Podovsky", "id": 782, "credit_id": "52fe42f0c3a36847f802e333", "cast_id": 30, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 3}, {"name": "Julia Nickson", "character": "Co Bao", "id": 16578, "credit_id": "52fe42f0c3a36847f802e337", "cast_id": 31, "profile_path": "/zQzqbbfixENqr2NLp92EOtL7POQ.jpg", "order": 4}, {"name": "George Cheung", "character": "Capt Vinh", "id": 16580, "credit_id": "52fe42f0c3a36847f802e33b", "cast_id": 32, "profile_path": null, "order": 5}, {"name": "Andy Wood", "character": "Banks", "id": 16581, "credit_id": "52fe42f0c3a36847f802e33f", "cast_id": 33, "profile_path": null, "order": 6}, {"name": "William Ghent", "character": "Capt. Vinh", "id": 16582, "credit_id": "52fe42f0c3a36847f802e343", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "Voyo Goric", "character": "Sgt. Yushin", "id": 16583, "credit_id": "52fe42f0c3a36847f802e347", "cast_id": 35, "profile_path": null, "order": 8}, {"name": "Dana Lee", "character": "Gunboat captain", "id": 16584, "credit_id": "52fe42f0c3a36847f802e34b", "cast_id": 36, "profile_path": null, "order": 9}, {"name": "Baoan Coleman", "character": "Gunboat captain II", "id": 16585, "credit_id": "52fe42f0c3a36847f802e34f", "cast_id": 37, "profile_path": null, "order": 10}, {"name": "Steve Williams", "character": "Lifer", "id": 16586, "credit_id": "52fe42f0c3a36847f802e353", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Don Collins", "character": "POW #1", "id": 16587, "credit_id": "52fe42f0c3a36847f802e357", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Christopher Grant", "character": "POW #2", "id": 16588, "credit_id": "52fe42f0c3a36847f802e35b", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Martin Kove", "character": "Ericson", "id": 56117, "credit_id": "52fe42f0c3a36847f802e35f", "cast_id": 41, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 14}], "directors": [{"name": "George P. Cosmatos", "department": "Directing", "job": "Director", "credit_id": "52fe42efc3a36847f802e28d", "profile_path": "/6DIKPjnDvr7oHgTPHTXM5te45Qt.jpg", "id": 16566}], "vote_average": 6.2, "runtime": 96}, "1370": {"poster_path": "/cUJgu5U6MHj9GF1weNtIPvN3IoS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189015611, "overview": "Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.", "video": false, "id": 1370, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Rambo III", "tagline": "The first was for himself. The second for his country. This time it's to save his friend.", "vote_count": 175, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0095956", "adult": false, "backdrop_path": "/mx0x96S8ZCXXoSxFinMbyI1117f.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1988-05-24", "popularity": 0.587062386785914, "original_title": "Rambo III", "budget": 63000000, "cast": [{"name": "Sylvester Stallone", "character": "Rambo", "id": 16483, "credit_id": "52fe42f0c3a36847f802e43f", "cast_id": 25, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Richard Crenna", "character": "Trautman", "id": 16554, "credit_id": "52fe42f0c3a36847f802e443", "cast_id": 26, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 1}, {"name": "Kurtwood Smith", "character": "Griggs", "id": 2115, "credit_id": "52fe42f0c3a36847f802e447", "cast_id": 28, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 3}, {"name": "Spiros Foc\u00e1s", "character": "Masoud", "id": 6783, "credit_id": "52fe42f0c3a36847f802e44b", "cast_id": 29, "profile_path": null, "order": 4}, {"name": "Sasson Gabai", "character": "Mousa", "id": 16604, "credit_id": "52fe42f0c3a36847f802e44f", "cast_id": 30, "profile_path": "/mvx0HMzFsiz4V3JaeIMQpLSU85S.jpg", "order": 5}, {"name": "Doudi Shoua", "character": "Hamid", "id": 16605, "credit_id": "52fe42f0c3a36847f802e453", "cast_id": 31, "profile_path": null, "order": 6}, {"name": "Randy Raney", "character": "Kourov", "id": 16606, "credit_id": "52fe42f0c3a36847f802e457", "cast_id": 32, "profile_path": null, "order": 7}, {"name": "Marcus Gilbert", "character": "Tomask", "id": 11763, "credit_id": "52fe42f0c3a36847f802e45b", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Alon Aboutboul", "character": "Nissem", "id": 16607, "credit_id": "52fe42f0c3a36847f802e45f", "cast_id": 34, "profile_path": "/g2ER1Yk1jtwMkugOEkK8FdCGUTB.jpg", "order": 9}, {"name": "Mahmoud Assadollahi", "character": "Rahim", "id": 16608, "credit_id": "52fe42f0c3a36847f802e463", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Joseph Shiloach", "character": "Khalid", "id": 16609, "credit_id": "52fe42f0c3a36847f802e467", "cast_id": 36, "profile_path": "/wIlEVaa7Tcok9sv9r4zOuKvnSns.jpg", "order": 11}, {"name": "Harold Diamond", "character": "Stick Fighter", "id": 16610, "credit_id": "52fe42f0c3a36847f802e46b", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Matti Seri", "character": "Gun Dealer", "id": 16611, "credit_id": "52fe42f0c3a36847f802e46f", "cast_id": 38, "profile_path": null, "order": 13}, {"name": "Shaby Ben-Aroya", "character": "Uri", "id": 16612, "credit_id": "52fe42f0c3a36847f802e473", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Marc de Jonge", "character": "Zaysen", "id": 255923, "credit_id": "52fe42f0c3a36847f802e483", "cast_id": 42, "profile_path": "/fEGIBK1cl3jVqyA1ifqNjZN4lRw.jpg", "order": 15}], "directors": [{"name": "Peter MacDonald", "department": "Directing", "job": "Director", "credit_id": "52fe42f0c3a36847f802e3b7", "profile_path": "/dDWPhRbouxsTuwnUsmXvHnTDQOT.jpg", "id": 16589}], "vote_average": 5.8, "runtime": 102}, "9563": {"poster_path": "/werdqNEJ91gbeaEK7sInXXZdUMg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100230832, "overview": "A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the aging coach to reevaluate his game plans and life. A new co-owner/president adds to the pressure of winning. The new owner must prove her self in a male dominated world.", "video": false, "id": 9563, "genres": [{"id": 18, "name": "Drama"}], "title": "Any Given Sunday", "tagline": "Play or be Played.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146838", "adult": false, "backdrop_path": "/2xQVXJrANGTaaoOn9g2IDQmBhJB.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Ixtlan", "id": 4198}, {"name": "Donners' Company", "id": 431}], "release_date": "1999-12-16", "popularity": 0.736839170098629, "original_title": "Any Given Sunday", "budget": 55000000, "cast": [{"name": "Al Pacino", "character": "Tony D'Amato", "id": 1158, "credit_id": "52fe450ac3a36847f80b8d8b", "cast_id": 16, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Christina Pagniacci", "id": 6941, "credit_id": "52fe450ac3a36847f80b8d8f", "cast_id": 17, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Dennis Quaid", "character": "Jack 'Cap' Rooney", "id": 6065, "credit_id": "52fe450ac3a36847f80b8d93", "cast_id": 18, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 2}, {"name": "James Woods", "character": "Dr. Harvey Mandrake", "id": 4512, "credit_id": "52fe450ac3a36847f80b8d97", "cast_id": 19, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 3}, {"name": "Jamie Foxx", "character": "Willie Beamen", "id": 134, "credit_id": "52fe450ac3a36847f80b8d9b", "cast_id": 20, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 4}, {"name": "LL Cool J", "character": "Julian Washington", "id": 36424, "credit_id": "52fe450ac3a36847f80b8d9f", "cast_id": 21, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 5}, {"name": "Matthew Modine", "character": "Dr. Ollie Powers", "id": 8654, "credit_id": "52fe450ac3a36847f80b8da7", "cast_id": 23, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 6}, {"name": "Jim Brown", "character": "Montezuma Monroe", "id": 4774, "credit_id": "52fe450ac3a36847f80b8dab", "cast_id": 24, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 7}, {"name": "Lawrence Taylor", "character": "Luther 'Shark' Lavay", "id": 185731, "credit_id": "52fe450ac3a36847f80b8daf", "cast_id": 25, "profile_path": "/cb9W1czwoOy3tgu7U7O5N48veB4.jpg", "order": 8}, {"name": "Bill Bellamy", "character": "Jimmy Sanderson", "id": 77896, "credit_id": "52fe450ac3a36847f80b8db3", "cast_id": 26, "profile_path": "/mtxMagJC14yh6JYgOlur0cQ4W3C.jpg", "order": 9}, {"name": "Aaron Eckhart", "character": "Nick Crozier", "id": 6383, "credit_id": "52fe450ac3a36847f80b8dc3", "cast_id": 30, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 10}, {"name": "John C. McGinley", "character": "Jack Rose", "id": 11885, "credit_id": "54a6e1fe92514117dd00a1b8", "cast_id": 32, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 11}, {"name": "Andrew Bryniarski", "character": "Patrick 'Madman' Kelly", "id": 52366, "credit_id": "52fe450ac3a36847f80b8db7", "cast_id": 27, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 12}, {"name": "Lauren Holly", "character": "Cindy Rooney", "id": 34485, "credit_id": "52fe450ac3a36847f80b8dbb", "cast_id": 28, "profile_path": "/pwenSL3M9vkbIrIvcZEb6mLJNeX.jpg", "order": 13}, {"name": "Ann-Margret", "character": "Margaret Pagniacci", "id": 13567, "credit_id": "52fe450ac3a36847f80b8dbf", "cast_id": 29, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 14}, {"name": "Lela Rochon", "character": "Vanessa Struthers", "id": 51359, "credit_id": "52fe450ac3a36847f80b8da3", "cast_id": 22, "profile_path": "/A4ZwspjtK9RdZe62GLVfoUxDGRO.jpg", "order": 15}, {"name": "Ron Madoff", "character": "Assistant Coach", "id": 1286269, "credit_id": "52fe450ac3a36847f80b8dc7", "cast_id": 31, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 16}, {"name": "Elizabeth Berkley", "character": "Mandy Murphy", "id": 19189, "credit_id": "54a6e20e92514117dd00a1bb", "cast_id": 33, "profile_path": "/zR0jWqa9WVKL0BDLaWTrwjNztd2.jpg", "order": 17}, {"name": "Charlton Heston", "character": "Commissioner", "id": 10017, "credit_id": "54a6e21ac3a368642800820f", "cast_id": 34, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 18}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe450ac3a36847f80b8d33", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.8, "runtime": 150}, "1372": {"poster_path": "/wRamTzV6udKaMXrspxqOuo02zk0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170877916, "overview": "An ex-mercenary turned smuggler. A Mende fisherman. Amid the explosive civil war overtaking 1999 Sierra Leone, these men join for two desperate missions: recovering a rare pink diamond of immense value and rescuing the fisherman's son conscripted as a child soldier into the brutal rebel forces ripping a swath of torture and bloodshed countrywide.", "video": false, "id": 1372, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Blood Diamond", "tagline": "It Will Cost You Everything", "vote_count": 723, "homepage": "http://blooddiamondmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450259", "adult": false, "backdrop_path": "/46y6EvnDveRFwtztyHVS0y2DipU.jpg", "production_companies": [{"name": "Liberty Pictures", "id": 20938}, {"name": "Warner Bros.", "id": 6194}, {"name": "Virtual Studios", "id": 449}, {"name": "Spring Creek Productions", "id": 705}, {"name": "Bedford Falls Productions", "id": 348}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}, {"name": "Lonely Film Productions GmbH & Co. KG.", "id": 430}], "release_date": "2006-12-07", "popularity": 0.861400411509892, "original_title": "Blood Diamond", "budget": 100000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Danny Archer", "id": 6193, "credit_id": "52fe42f0c3a36847f802e687", "cast_id": 27, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Djimon Hounsou", "character": "Solomon Vandy", "id": 938, "credit_id": "52fe42f0c3a36847f802e68b", "cast_id": 28, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "Maddy Bowen", "id": 6161, "credit_id": "52fe42f0c3a36847f802e68f", "cast_id": 29, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Kagiso Kuypers", "character": "Dia Vandy", "id": 16742, "credit_id": "52fe42f0c3a36847f802e693", "cast_id": 30, "profile_path": "/yJcJSAJKxTE11WKqeSMeLcQnW55.jpg", "order": 3}, {"name": "Arnold Vosloo", "character": "Colonel Coetzee", "id": 16743, "credit_id": "52fe42f0c3a36847f802e697", "cast_id": 31, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 4}, {"name": "Antony Coleman", "character": "Cordell Brown", "id": 16744, "credit_id": "52fe42f0c3a36847f802e69b", "cast_id": 32, "profile_path": "/8kjQdHAa9IrEpfnrOHzQ0A5svmm.jpg", "order": 5}, {"name": "Benu Mabhena", "character": "Jassie Vandy", "id": 16746, "credit_id": "52fe42f0c3a36847f802e69f", "cast_id": 33, "profile_path": "/jEibAvJcrB6K0jNaiuy5Qqa3MvX.jpg", "order": 6}, {"name": "Anointing Lukola", "character": "N'Yanda Vandy", "id": 16749, "credit_id": "52fe42f0c3a36847f802e6a3", "cast_id": 34, "profile_path": null, "order": 7}, {"name": "David Harewood", "character": "Captain Poison", "id": 16752, "credit_id": "52fe42f0c3a36847f802e6a7", "cast_id": 35, "profile_path": "/1ldABESUDHQVbIb80irSD9NBRGE.jpg", "order": 8}, {"name": "Basil Wallace", "character": "Benjamin Kapanay", "id": 16754, "credit_id": "52fe42f0c3a36847f802e6ab", "cast_id": 36, "profile_path": "/7PI3AEAAVnnXIjFMQ7rHUDnIBOF.jpg", "order": 9}, {"name": "Jimi Mistry", "character": "Nabil", "id": 16756, "credit_id": "52fe42f0c3a36847f802e6af", "cast_id": 37, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 10}, {"name": "Michael Sheen", "character": "Simmons", "id": 3968, "credit_id": "52fe42f0c3a36847f802e6b3", "cast_id": 38, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 11}, {"name": "Marius Weyers", "character": "Van De Kaap", "id": 16758, "credit_id": "52fe42f0c3a36847f802e6b7", "cast_id": 39, "profile_path": "/xhUgoqJQOPzi2XoKVpVlJPcrcC3.jpg", "order": 12}, {"name": "Stephen Collins", "character": "Ambassador Walker", "id": 1756, "credit_id": "52fe42f0c3a36847f802e6bb", "cast_id": 40, "profile_path": "/eYUtj7K9pzgvARQlU8Fn4ybyGAj.jpg", "order": 13}, {"name": "Ntare Guma Mbaho Mwine ", "character": "M'Ed", "id": 16760, "credit_id": "52fe42f0c3a36847f802e6bf", "cast_id": 41, "profile_path": "/wKQhhukzIREY6jiLvEvmqD7wdFp.jpg", "order": 14}, {"name": "Ato Essandoh", "character": "Commander Rambo", "id": 5377, "credit_id": "52fe42f0c3a36847f802e6c3", "cast_id": 42, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 15}, {"name": "David S. Lee", "character": "Cockney Journalist", "id": 71078, "credit_id": "52fe42f0c3a36847f802e6f7", "cast_id": 51, "profile_path": "/jcQP0Uonk5cIiYjdmC2toGCpo6w.jpg", "order": 16}, {"name": "Percy Matsemela", "character": "Commander Zero", "id": 13103, "credit_id": "53a55e01c3a3687a2b000f38", "cast_id": 58, "profile_path": null, "order": 17}, {"name": "Klemens Becker", "character": "German Minister", "id": 1332515, "credit_id": "53a55e3ec3a3687a2b000f43", "cast_id": 59, "profile_path": null, "order": 18}, {"name": "Grant Swanby", "character": "UNCHR Official", "id": 67059, "credit_id": "53a55e75c3a3687a40000e0f", "cast_id": 60, "profile_path": null, "order": 19}, {"name": "Adetokumboh M'Cormack", "character": "R.U.F. Trainer", "id": 208096, "credit_id": "53a55edcc3a368707a0004f9", "cast_id": 61, "profile_path": "/eK4lnmoMDFdKsiSsBoetgOiPlXF.jpg", "order": 20}, {"name": "Tyrone Keogh", "character": "SA Page", "id": 1332516, "credit_id": "53a55f33c3a368707a000501", "cast_id": 62, "profile_path": null, "order": 21}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe42f0c3a36847f802e5ed", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 7.1, "runtime": 143}, "1374": {"poster_path": "/1aKKCOiFp4QQnEbRYb6jHHmEQk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300473716, "overview": "Rocky must come out of retirement to battle a gargantuan Soviet fighter named Drago, who brutally punished Rocky's friend and former rival, Apollo Creed. Seeking revenge in the name of his fallen comrade and his country, Rocky agrees to fight Drago in Moscow on Christmas, and the bout changes both fighters -- and the world.", "video": false, "id": 1374, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky IV", "tagline": "He's facing the ultimate challenge. And fighting for his life.", "vote_count": 257, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089927", "adult": false, "backdrop_path": "/uvbjTLZSxGehXWDo1ENyVuBrYie.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1985-11-21", "popularity": 1.33175635546579, "original_title": "Rocky IV", "budget": 31000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42f1c3a36847f802e8c3", "cast_id": 19, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrian", "id": 3094, "credit_id": "52fe42f1c3a36847f802e8c7", "cast_id": 20, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42f1c3a36847f802e8cb", "cast_id": 21, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42f1c3a36847f802e8cf", "cast_id": 22, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Brigitte Nielsen", "character": "Ludmilla Vobet Drago", "id": 921, "credit_id": "52fe42f1c3a36847f802e8d3", "cast_id": 23, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42f1c3a36847f802e8d7", "cast_id": 24, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "Michael Pataki", "character": "Nicoli Koloff", "id": 15993, "credit_id": "52fe42f1c3a36847f802e8db", "cast_id": 25, "profile_path": "/bwkT9HQr1HkGBToA1Mz4ej2F6Ra.jpg", "order": 6}, {"name": "Dolph Lundgren", "character": "Captain Ivan Drago", "id": 16644, "credit_id": "52fe42f1c3a36847f802e8df", "cast_id": 26, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 7}, {"name": "Stu Nahan", "character": "Commentator #1", "id": 16543, "credit_id": "52fe42f1c3a36847f802e8e3", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "R. J. Adams", "character": "Sports Announcer", "id": 16645, "credit_id": "52fe42f1c3a36847f802e8e7", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Al Bandiero", "character": "American Commentator #2", "id": 16646, "credit_id": "52fe42f1c3a36847f802e8eb", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Dominic Barto", "character": "Russian Government Official", "id": 16647, "credit_id": "52fe42f1c3a36847f802e8ef", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Danial Brown", "character": "Rocky Jr.'s Friend", "id": 16648, "credit_id": "52fe42f1c3a36847f802e8f3", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "James Brown", "character": "The Godfather of Soul", "id": 7172, "credit_id": "52fe42f1c3a36847f802e8f7", "cast_id": 32, "profile_path": "/opGiGzOwSRmhnUtWZcFjlyyK8Zx.jpg", "order": 13}, {"name": "Rose Mary Campos", "character": "Maid", "id": 16649, "credit_id": "52fe42f1c3a36847f802e8fb", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42f1c3a36847f802e859", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.6, "runtime": 91}, "9567": {"poster_path": "/qEe7aE4PgZCwnVoxKe7YsTm3Smh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85632458, "overview": "Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission to retrieve a Doctors Without Borders physician.", "video": false, "id": 9567, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Tears of the Sun", "tagline": "He was trained to follow orders. He became a hero by defying them.", "vote_count": 206, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0314353", "adult": false, "backdrop_path": "/xUXyhrsbOZqT3oSB6MulkqP5csV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Michael Lobell Productions", "id": 13473}], "release_date": "2003-03-07", "popularity": 0.840802013258647, "original_title": "Tears of the Sun", "budget": 70000000, "cast": [{"name": "Bruce Willis", "character": "Lieutenant A.K. Waters", "id": 62, "credit_id": "52fe450bc3a36847f80b9015", "cast_id": 9, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Monica Bellucci", "character": "Dr. Lena Fiore Kendricks", "id": 28782, "credit_id": "52fe450bc3a36847f80b9019", "cast_id": 10, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 1}, {"name": "Cole Hauser", "character": "James 'Red' Atkins", "id": 6614, "credit_id": "52fe450bc3a36847f80b901d", "cast_id": 11, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 2}, {"name": "Eamonn Walker", "character": "Ellis 'Zee' Pettigrew", "id": 19299, "credit_id": "52fe450bc3a36847f80b9021", "cast_id": 12, "profile_path": "/9vuNtg6IGlUNFOurojwkYThKnvd.jpg", "order": 3}, {"name": "Johnny Messner", "character": "Kelly Lake", "id": 21798, "credit_id": "52fe450bc3a36847f80b9037", "cast_id": 16, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 4}, {"name": "Nick Chinlund", "character": "Michael 'Slo' Slowenski", "id": 18461, "credit_id": "52fe450bc3a36847f80b903b", "cast_id": 17, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 5}, {"name": "Charles Ingram", "character": "Demetrius 'Silk' Owens", "id": 1053926, "credit_id": "52fe450bc3a36847f80b903f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Paul Francis", "character": "Danny 'Doc' Kelley", "id": 91607, "credit_id": "52fe450bc3a36847f80b9043", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Chad Smith", "character": "Jason 'Flea' Mabry", "id": 1053927, "credit_id": "52fe450bc3a36847f80b9047", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Tom Skerritt", "character": "Captain Bill Rhodes", "id": 4139, "credit_id": "52fe450bc3a36847f80b904b", "cast_id": 21, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 9}, {"name": "Malick Bowens", "character": "Colonel Idris Sadick", "id": 10649, "credit_id": "544e2cde0e0a26134b001054", "cast_id": 65, "profile_path": null, "order": 10}, {"name": "Awaovieyi Agie", "character": "Musa", "id": 1378251, "credit_id": "544e2cf60e0a2608c5004536", "cast_id": 66, "profile_path": null, "order": 11}, {"name": "Akosua Busia", "character": "Patience", "id": 13308, "credit_id": "544e2d130e0a2608cd004562", "cast_id": 67, "profile_path": "/wxelYaGa4xWcFhII3EebwX5pscZ.jpg", "order": 12}, {"name": "Ida Onyango", "character": "Lasana", "id": 1378252, "credit_id": "544e2d30c3a36872bc0047cc", "cast_id": 68, "profile_path": null, "order": 13}, {"name": "Benjamin Ochieng", "character": "Colonel Emanuel Okeze", "id": 1235875, "credit_id": "544e2d4d0e0a2608c5004549", "cast_id": 69, "profile_path": null, "order": 14}, {"name": "Kanayo Chiemelu", "character": "General Mustafa Yakubu", "id": 1444704, "credit_id": "551097d8c3a3683dd6005459", "cast_id": 72, "profile_path": null, "order": 15}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe450bc3a36847f80b8fe7", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.7, "runtime": 121}, "9571": {"poster_path": "/sYYhVAdCzReWYfj1ugFlWh3ldzw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7993039, "overview": "A look at some Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a \"no drugs\" pledge.", "video": false, "id": 9571, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Dazed and Confused", "tagline": "See it with a bud.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106677", "adult": false, "backdrop_path": "/lIQ8KxnqMpto5EeEI91MXeQNAJ8.jpg", "production_companies": [{"name": "Alphaville Productions", "id": 6556}, {"name": "Gramercy Pictures", "id": 37}], "release_date": "1993-09-24", "popularity": 0.750290088587728, "original_title": "Dazed and Confused", "budget": 6900000, "cast": [{"name": "Jason London", "character": "Randall 'Pink' Floyd", "id": 52474, "credit_id": "52fe450bc3a36847f80b921b", "cast_id": 1, "profile_path": "/z4eSvvH51WsZppswHVHcqFJJm6L.jpg", "order": 0}, {"name": "Rory Cochrane", "character": "Ron Slater", "id": 51792, "credit_id": "52fe450bc3a36847f80b921f", "cast_id": 2, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 1}, {"name": "Wiley Wiggins", "character": "Mitch Kramer", "id": 56934, "credit_id": "52fe450bc3a36847f80b9223", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Sasha Jenson", "character": "Don Dawson", "id": 58000, "credit_id": "52fe450bc3a36847f80b9227", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Michelle Burke", "character": "Jodie Kramer", "id": 58001, "credit_id": "52fe450bc3a36847f80b922b", "cast_id": 5, "profile_path": "/3yWWTYt6HJHueLPawrDdyoI2gYs.jpg", "order": 4}, {"name": "Adam Goldberg", "character": "Mike Newhouse", "id": 6163, "credit_id": "52fe450bc3a36847f80b922f", "cast_id": 6, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 5}, {"name": "Milla Jovovich", "character": "Michelle Burroughs", "id": 63, "credit_id": "52fe450bc3a36847f80b925d", "cast_id": 14, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 6}, {"name": "Matthew McConaughey", "character": "David Wooderson", "id": 10297, "credit_id": "52fe450bc3a36847f80b9261", "cast_id": 15, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 7}, {"name": "Ben Affleck", "character": "Fred O'Bannion", "id": 880, "credit_id": "52fe450bc3a36847f80b9265", "cast_id": 16, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 8}, {"name": "Joey Lauren Adams", "character": "Simone Kerr", "id": 16484, "credit_id": "52fe450bc3a36847f80b9269", "cast_id": 17, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 9}, {"name": "Parker Posey", "character": "Darla Marks", "id": 7489, "credit_id": "52fe450bc3a36847f80b926d", "cast_id": 18, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 10}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe450bc3a36847f80b9235", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.1, "runtime": 102}, "1381": {"poster_path": "/lGIJvQ8ZQazOHVAA0E34yIy7gxv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15304890, "overview": "Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.", "video": false, "id": 1381, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "The Fountain", "tagline": "Death is the road to awe", "vote_count": 154, "homepage": "http://thefountainmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414993", "adult": false, "backdrop_path": "/krgbGFHNXs9Xt4CYOhERo9hllfM.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Regency Enterprises", "id": 508}, {"name": "Protozoa Pictures", "id": 7503}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Muse Entertainment Enterprises", "id": 6438}], "release_date": "2006-11-22", "popularity": 0.851750776522572, "original_title": "The Fountain", "budget": 35000000, "cast": [{"name": "Hugh Jackman", "character": "Tom\u00e1s/Tom Creo/Tommy", "id": 6968, "credit_id": "52fe42f2c3a36847f802ed8f", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Queen Isabella/Izzi Creo", "id": 3293, "credit_id": "52fe42f2c3a36847f802ed93", "cast_id": 3, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Ellen Burstyn", "character": "Dr. Lillian Guzetti", "id": 9560, "credit_id": "52fe42f2c3a36847f802ed9d", "cast_id": 5, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 2}, {"name": "Mark Margolis", "character": "Father Avila", "id": 1173, "credit_id": "52fe42f2c3a36847f802edb3", "cast_id": 9, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 3}, {"name": "Stephen McHattie", "character": "Grand Inquisitor Silecio", "id": 230, "credit_id": "52fe42f2c3a36847f802edb7", "cast_id": 10, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 4}, {"name": "Fernando Hernandez", "character": "Lord of Xibalba", "id": 20194, "credit_id": "52fe42f2c3a36847f802edbb", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Sean Patrick Thomas", "character": "Antonio", "id": 11868, "credit_id": "52fe42f2c3a36847f802edbf", "cast_id": 12, "profile_path": "/8cXF4Ywgs70ZL1j2q5A2yOvd2AY.jpg", "order": 6}, {"name": "Donna Murphy", "character": "Betty", "id": 2517, "credit_id": "52fe42f2c3a36847f802edc3", "cast_id": 13, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 7}, {"name": "Ethan Suplee", "character": "Manny", "id": 824, "credit_id": "52fe42f2c3a36847f802edc7", "cast_id": 14, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 8}, {"name": "Richard McMillan", "character": "Henry", "id": 5924, "credit_id": "52fe42f2c3a36847f802edcb", "cast_id": 15, "profile_path": "/7IaSYFMcqTxpEUPM9UGZ2i6qIJg.jpg", "order": 9}, {"name": "Lorne Brass", "character": "Dr. Alan Lipper", "id": 20195, "credit_id": "52fe42f2c3a36847f802edcf", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Boyd Banks", "character": "Dominican Monk", "id": 20196, "credit_id": "52fe42f2c3a36847f802edd3", "cast_id": 17, "profile_path": "/mDsIaLKyGqyV1Nt0pV9joGkQNSP.jpg", "order": 11}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe42f2c3a36847f802ed8b", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 6.6, "runtime": 96}, "9574": {"poster_path": "/xrbkE6g2myJPLWxNy52yL2MJJHX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177977226, "overview": "Professor Phillip Brainard, an absent minded professor, works with his assistant Weebo, trying to create a substance that's a new source of energy and that will save Medfield College where his sweetheart Sara is the president. He has missed his wedding twice, and on the afternoon of his third wedding, Professor Brainard creates flubber, which allows objects to fly through the air.", "video": false, "id": 9574, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Flubber", "tagline": "Catch it if you can!", "vote_count": 165, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119137", "adult": false, "backdrop_path": "/jIm7vRTgkEq6WebPjbVCjXaMl3J.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Great Oaks Entertainment", "id": 2173}], "release_date": "1997-11-26", "popularity": 0.608192589524553, "original_title": "Flubber", "budget": 80000000, "cast": [{"name": "Robin Williams", "character": "Professor Philip Brainard", "id": 2157, "credit_id": "52fe450cc3a36847f80b93b5", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Dr. Sara Jean Reynolds", "id": 4726, "credit_id": "52fe450cc3a36847f80b93b9", "cast_id": 2, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "Christopher McDonald", "character": "Wilson Croft", "id": 4443, "credit_id": "52fe450cc3a36847f80b93bd", "cast_id": 3, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 2}, {"name": "Raymond J. Barry", "character": "Chester Hoenicker", "id": 10361, "credit_id": "52fe450cc3a36847f80b93c1", "cast_id": 4, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 3}, {"name": "Clancy Brown", "character": "Smith", "id": 6574, "credit_id": "52fe450cc3a36847f80b93c5", "cast_id": 5, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 4}, {"name": "Nancy Olson", "character": "Secretary at Ford Motor Company", "id": 8631, "credit_id": "52fe450cc3a36847f80b93c9", "cast_id": 6, "profile_path": "/8tuy84triOK0mS32KoyKSryhZtP.jpg", "order": 5}, {"name": "Ted Levine", "character": "Wesson", "id": 15854, "credit_id": "52fe450cc3a36847f80b9409", "cast_id": 17, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 6}, {"name": "Wil Wheaton", "character": "Bennett Hoenicker", "id": 3033, "credit_id": "52fe450cc3a36847f80b940d", "cast_id": 18, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 7}, {"name": "Edie McClurg", "character": "Martha George", "id": 3202, "credit_id": "52fe450cc3a36847f80b9411", "cast_id": 19, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 8}, {"name": "Jodi Benson", "character": "Weebo", "id": 63978, "credit_id": "52fe450cc3a36847f80b9415", "cast_id": 20, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 9}, {"name": "Leslie Stefanson", "character": "Sylvia", "id": 21474, "credit_id": "52fe450cc3a36847f80b9419", "cast_id": 21, "profile_path": "/4QRnRHRZAuhVTbYXbR4n5tn2Z1u.jpg", "order": 10}, {"name": "Malcolm Brownson", "character": "Father", "id": 201291, "credit_id": "52fe450cc3a36847f80b941d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Benjamin Brock", "character": "Window Boy", "id": 1075044, "credit_id": "52fe450cc3a36847f80b9421", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Dakin Matthews", "character": "Minister", "id": 43364, "credit_id": "52fe450cc3a36847f80b9425", "cast_id": 24, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 13}, {"name": "Zack Zeigler", "character": "Teenage Boy", "id": 1075045, "credit_id": "52fe450cc3a36847f80b9429", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Sam Lloyd", "character": "Coach Willy Barker", "id": 46920, "credit_id": "52fe450cc3a36847f80b942d", "cast_id": 26, "profile_path": "/xLSxSkq41HNGmK5cCeXqnki8CIz.jpg", "order": 15}], "directors": [{"name": "Les Mayfield", "department": "Directing", "job": "Director", "credit_id": "52fe450cc3a36847f80b93cf", "profile_path": "/qFl6z4jAfvb3bfMeGDMD4ch61tI.jpg", "id": 56911}], "vote_average": 5.0, "runtime": 93}, "9576": {"poster_path": "/9LFhJMHTjprVUjyJ666X5tNjTKZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177200000, "overview": "An unemployed actor with a reputation for being difficult disguises himself as a woman to get a role in a soap opera.", "video": false, "id": 9576, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Tootsie", "tagline": "What do you get when you cross a hopelessly straight starving actor with a dynamite red sequined dress? You get America's hottest new actress.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084805", "adult": false, "backdrop_path": "/auM5DWH5et9lql7vuYABdpDluR4.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Mirage Enterprises", "id": 932}, {"name": "Punch Productions", "id": 2154}, {"name": "Delphi Films", "id": 4267}], "release_date": "1982-12-16", "popularity": 0.59787939299488, "original_title": "Tootsie", "budget": 21000000, "cast": [{"name": "Dustin Hoffman", "character": "Michael Dorsey / Dorothy Michaels", "id": 4483, "credit_id": "52fe450cc3a36847f80b9477", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Jessica Lange", "character": "Julie Nichols", "id": 4431, "credit_id": "52fe450cc3a36847f80b947f", "cast_id": 3, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 2}, {"name": "Teri Garr", "character": "Sandy", "id": 8437, "credit_id": "52fe450cc3a36847f80b9483", "cast_id": 4, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 3}, {"name": "Dabney Coleman", "character": "Ron Carlisle", "id": 12850, "credit_id": "52fe450cc3a36847f80b9487", "cast_id": 5, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 4}, {"name": "Charles Durning", "character": "Les Nichols", "id": 1466, "credit_id": "52fe450cc3a36847f80b948b", "cast_id": 6, "profile_path": "/3gVvKQykDvMuiUcPEHnAkJrfLg3.jpg", "order": 5}, {"name": "Bill Murray", "character": "Jeff Slater", "id": 1532, "credit_id": "52fe450cc3a36847f80b948f", "cast_id": 7, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 6}, {"name": "Sydney Pollack", "character": "George Fields", "id": 2226, "credit_id": "52fe450cc3a36847f80b94cf", "cast_id": 19, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 7}, {"name": "George Gaynes", "character": "John Van Horn", "id": 57351, "credit_id": "52fe450cc3a36847f80b94d3", "cast_id": 20, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 8}, {"name": "Geena Davis", "character": "April", "id": 16935, "credit_id": "52fe450cc3a36847f80b94d7", "cast_id": 21, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 9}, {"name": "Doris Belack", "character": "Rita", "id": 24293, "credit_id": "52fe450cc3a36847f80b94db", "cast_id": 22, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 10}, {"name": "Ellen Foley", "character": "Jacqui", "id": 157459, "credit_id": "52fe450cc3a36847f80b94df", "cast_id": 23, "profile_path": "/zNdvRxJ0EQOK2Pd1QrbrFykb4xN.jpg", "order": 11}, {"name": "Peter Gatto", "character": "Rick", "id": 1178373, "credit_id": "52fe450cc3a36847f80b94e3", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Lynne Thigpen", "character": "Jo", "id": 71266, "credit_id": "52fe450cc3a36847f80b94e7", "cast_id": 25, "profile_path": "/hxyt6zQokF8LvWnsPPzIik8pJSG.jpg", "order": 13}, {"name": "Ronald L. Schwary", "character": "Phil Weintraub", "id": 4184, "credit_id": "52fe450cc3a36847f80b94eb", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Debra Mooney", "character": "Mrs. Mallory", "id": 69504, "credit_id": "52fe450cc3a36847f80b94ef", "cast_id": 27, "profile_path": "/6rnwJhFNy1pZL1n3NynIsyxlHrw.jpg", "order": 15}, {"name": "Amy Lawrence", "character": "Amy", "id": 1178374, "credit_id": "52fe450cc3a36847f80b94f3", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Kenny Sinclair", "character": "Boy", "id": 1178375, "credit_id": "52fe450cc3a36847f80b94f7", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Susan Merson", "character": "Page", "id": 1178376, "credit_id": "52fe450cc3a36847f80b94fb", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Michael Ryan", "character": "Middle-Aged Man", "id": 1178377, "credit_id": "52fe450cc3a36847f80b94ff", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Robert D. Wilson", "character": "Stage Hand", "id": 1178378, "credit_id": "52fe450cc3a36847f80b9503", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "James Carruthers", "character": "Middle-Aged Man", "id": 1178379, "credit_id": "52fe450cc3a36847f80b9507", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Estelle Getty", "character": "Middle-Aged Woman", "id": 59956, "credit_id": "52fe450cc3a36847f80b950b", "cast_id": 34, "profile_path": "/3dfiQNyCietGhFRcghO5owq9YRM.jpg", "order": 22}, {"name": "Christine Ebersole", "character": "Linda", "id": 4003, "credit_id": "52fe450cc3a36847f80b950f", "cast_id": 35, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 23}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe450cc3a36847f80b9495", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 7.1, "runtime": 116}, "1389": {"poster_path": "/qOEAVtTTl0KTqDSpcQYPf0tL3AX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77745568, "overview": "Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves \u2026 and all the wrong guys. Now they're willing to risk it all to find out if there's more between them than just the law. Variety hails Out of Sight as \"a sly, sexy, vastly entertaining film.\"", "video": false, "id": 1389, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "Out of Sight", "tagline": "Opposites attract.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120780", "adult": false, "backdrop_path": "/5haSVhHr0WljxhYXTtLixRXPtRC.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Jersey Films", "id": 216}], "release_date": "1998-06-26", "popularity": 0.826086859129196, "original_title": "Out of Sight", "budget": 48000000, "cast": [{"name": "George Clooney", "character": "Jack Foley", "id": 1461, "credit_id": "52fe42f2c3a36847f802ef2f", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Karen Sisco", "id": 16866, "credit_id": "52fe42f2c3a36847f802ef33", "cast_id": 2, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Michael Keaton", "character": "Ray Nicolette", "id": 2232, "credit_id": "52fe42f2c3a36847f802ef37", "cast_id": 3, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Hejira Henry", "id": 2231, "credit_id": "52fe42f2c3a36847f802ef3b", "cast_id": 4, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Dennis Farina", "character": "Marshall Sisco", "id": 1117, "credit_id": "52fe42f2c3a36847f802ef81", "cast_id": 16, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 4}, {"name": "Catherine Keener", "character": "Adele", "id": 2229, "credit_id": "52fe42f2c3a36847f802ef85", "cast_id": 17, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Ving Rhames", "character": "Buddy Bragg", "id": 10182, "credit_id": "52fe42f2c3a36847f802ef89", "cast_id": 18, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 6}, {"name": "Steve Zahn", "character": "Glenn Michaels", "id": 18324, "credit_id": "52fe42f2c3a36847f802ef8d", "cast_id": 19, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 7}, {"name": "Keith Loneker", "character": "White Boy Bob", "id": 54714, "credit_id": "52fe42f2c3a36847f802ef91", "cast_id": 20, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 8}, {"name": "Nancy Allen", "character": "Midge", "id": 44038, "credit_id": "52fe42f2c3a36847f802ef95", "cast_id": 21, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 9}, {"name": "Albert Brooks", "character": "Richard Ripley", "id": 13, "credit_id": "52fe42f2c3a36847f802ef99", "cast_id": 22, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 10}, {"name": "Don Cheadle", "character": "Maurice Miller", "id": 1896, "credit_id": "52fe42f2c3a36847f802ef9d", "cast_id": 23, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 11}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe42f2c3a36847f802ef41", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.5, "runtime": 123}, "255343": {"poster_path": "/4e1q2uZ4GB89n9iJa9lRx4mv37W.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "For Pablo Escobar (Benicio Del Toro), family is everything. When young surfer Nick (Josh Hutcherson) falls for Escobar's niece, he finds his life on the line when he's pulled into the dangerous world of the family business.", "video": false, "id": 255343, "genres": [{"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Escobar: Paradise Lost", "tagline": "Welcome to the family", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2515030", "adult": false, "backdrop_path": "/gbwOFHXSLi1DD3D7eI2vlZWIAyq.jpg", "production_companies": [{"name": "Nexus Factory", "id": 7561}, {"name": "Chapter 2", "id": 20339}, {"name": "Jaguar Films", "id": 10497}], "release_date": "2014-10-11", "popularity": 2.87424533562135, "original_title": "Escobar: Paradise Lost", "budget": 0, "cast": [{"name": "Benicio del Toro", "character": "Pablo Escobar", "id": 1121, "credit_id": "52fe4ee69251416c91141a83", "cast_id": 1, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Nick", "id": 27972, "credit_id": "52fe4ee69251416c91141a87", "cast_id": 2, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Brady Corbet", "character": "Dylan", "id": 55493, "credit_id": "52fe4ee69251416c91141a8b", "cast_id": 3, "profile_path": "/cnlvcYJP4UyeKdbCCuTKvFkjWSH.jpg", "order": 2}, {"name": "Claudia Traisac", "character": "Maria", "id": 1261473, "credit_id": "52fe4ee69251416c91141a8f", "cast_id": 4, "profile_path": "/eQkwufLVYERBBjklSQ4NvalLBB0.jpg", "order": 3}, {"name": "Carlos Bardem", "character": "", "id": 78882, "credit_id": "54d35f19c3a3686abf0034a2", "cast_id": 7, "profile_path": "/pCDBcmJo0vSQPEX3aobh1ub0acd.jpg", "order": 4}, {"name": "Ana Girardot", "character": "Anne", "id": 228714, "credit_id": "550b0eb5c3a3684877001cb0", "cast_id": 8, "profile_path": "/dGWDITbVQoNg3wbpNudxVuuHnyb.jpg", "order": 5}], "directors": [{"name": "Andrea Di Stefano", "department": "Directing", "job": "Director", "credit_id": "52fe4ee69251416c91141a95", "profile_path": "/nIB8fSk0yJN7PWGJZoNcyM0hJ7l.jpg", "id": 40541}], "vote_average": 6.5, "runtime": 120}, "50544": {"poster_path": "/tmVuyRSS9RYFs73YGbMnFous7DH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150483765, "overview": "While trying to avoid the clich\u00e9s of Hollywood romantic comedies, Dylan and Jamie soon discover however that adding the act of sex to their friendship does lead to complications.", "video": false, "id": 50544, "genres": [{"id": 35, "name": "Comedy"}], "title": "Friends with Benefits", "tagline": "Some friends come with a happy ending.", "vote_count": 619, "homepage": "http://www.fwb-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1632708", "adult": false, "backdrop_path": "/liq5ljqURqLiBUgMkNiR388ZuSH.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Screen Gems", "id": 3287}, {"name": "Olive Bridge Entertainment", "id": 7291}], "release_date": "2011-07-21", "popularity": 0.973281632343643, "original_title": "Friends with Benefits", "budget": 35000000, "cast": [{"name": "Justin Timberlake", "character": "Dylan Harper", "id": 12111, "credit_id": "52fe47cac3a36847f8148831", "cast_id": 2, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Jamie Rellis", "id": 18973, "credit_id": "52fe47cac3a36847f814882d", "cast_id": 1, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Patricia Clarkson", "character": "Lorna", "id": 1276, "credit_id": "52fe47cbc3a36847f8148857", "cast_id": 11, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Tommy Bollinger", "id": 57755, "credit_id": "52fe47cbc3a36847f814884f", "cast_id": 9, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Nolan Gould", "character": "Sammy - Sam the Magnificent", "id": 147710, "credit_id": "52fe47cac3a36847f8148835", "cast_id": 3, "profile_path": "/xyritJRCjFRZBBua866EanS80st.jpg", "order": 4}, {"name": "Shaun White", "character": "Himself", "id": 127963, "credit_id": "52fe47cbc3a36847f814884b", "cast_id": 8, "profile_path": "/7JqSN7O59LwxN0CIiq7dre6sUHd.jpg", "order": 5}, {"name": "Jenna Elfman", "character": "Annie Harper", "id": 40279, "credit_id": "52fe47cbc3a36847f8148853", "cast_id": 10, "profile_path": "/cTXzciaLL96Pa75HzEr1u1kbfeH.jpg", "order": 6}, {"name": "Bryan Greenberg", "character": "Parker", "id": 23821, "credit_id": "52fe47cbc3a36847f814885b", "cast_id": 12, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 7}, {"name": "Richard Jenkins", "character": "Mr. Harper", "id": 28633, "credit_id": "52fe47cbc3a36847f814885f", "cast_id": 13, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 8}, {"name": "Masi Oka", "character": "Darin Arturo Morena", "id": 17273, "credit_id": "52fe47cbc3a36847f814886f", "cast_id": 16, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 9}, {"name": "Andy Samberg", "character": "Quincy", "id": 62861, "credit_id": "52fe47cbc3a36847f8148873", "cast_id": 17, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 10}, {"name": "Emma Stone", "character": "Kayla", "id": 54693, "credit_id": "52fe47cbc3a36847f8148877", "cast_id": 18, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 11}, {"name": "Tiya Sircar", "character": "Hostess", "id": 109046, "credit_id": "52fe47cbc3a36847f814887b", "cast_id": 19, "profile_path": "/uqAiFL1P344fWa4cqfQhKWNoUyO.jpg", "order": 12}, {"name": "Catherine Reitman", "character": "Female Co-Worker", "id": 154826, "credit_id": "530375c6c3a3685ce732c9e1", "cast_id": 20, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 13}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe47cbc3a36847f814886b", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.2, "runtime": 109}, "50546": {"poster_path": "/4sJDqzBaqBprkEy0aLjIGl7TrHx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214918407, "overview": "In Just Go With It, a plastic surgeon, romancing a much younger schoolteacher, enlists his loyal assistant to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, the assistant's kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.", "video": false, "id": 50546, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Just Go With It", "tagline": "Sometimes a guy's best wingman... is a wingwoman", "vote_count": 475, "homepage": "http://www.justgowithit-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1564367", "adult": false, "backdrop_path": "/sXpF6Vfy4o8fNHP1GBWBC3IxdrJ.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2011-02-11", "popularity": 1.9822119805531, "original_title": "Just Go With It", "budget": 80000000, "cast": [{"name": "Jennifer Aniston", "character": "Katherine Murphy", "id": 4491, "credit_id": "52fe47cbc3a36847f81488ad", "cast_id": 1, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Adam Sandler", "character": "Danny Maccabee", "id": 19292, "credit_id": "52fe47cbc3a36847f81488b1", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Devlin Adams", "id": 2227, "credit_id": "52fe47cbc3a36847f81488b5", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "Bailee Madison", "character": "Maggie", "id": 54479, "credit_id": "52fe47cbc3a36847f81488b9", "cast_id": 4, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 3}, {"name": "Griffin Gluck", "character": "Michael / Bart", "id": 971299, "credit_id": "53961f9c0e0a266dc500744f", "cast_id": 22, "profile_path": "/rfVQBYJdHkFNwRCvp9UJa7zdxz7.jpg", "order": 4}, {"name": "Brooklyn Decker", "character": "Palmer", "id": 131520, "credit_id": "52fe47cbc3a36847f81488c1", "cast_id": 6, "profile_path": "/ll0ujxAqZUTcWSuA8NNsXoLppsG.jpg", "order": 6}, {"name": "Elena Satine", "character": "Christine", "id": 127907, "credit_id": "52fe47cbc3a36847f81488c5", "cast_id": 7, "profile_path": "/e9SC39zujFcz9v4Zmj4fEN2EY37.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Eddie", "id": 32907, "credit_id": "52fe47cbc3a36847f81488db", "cast_id": 11, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "Dan Patrick", "character": "Tanner Patrick", "id": 166029, "credit_id": "52fe47cbc3a36847f81488df", "cast_id": 12, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 9}, {"name": "Rachel Dratch", "character": "Kirsten Brant", "id": 32905, "credit_id": "52fe47cbc3a36847f81488e3", "cast_id": 13, "profile_path": "/pVHUp99e3MJU9K326KTeDECl3S3.jpg", "order": 10}, {"name": "Kevin Nealon", "character": "Adon", "id": 58478, "credit_id": "52fe47cbc3a36847f81488e7", "cast_id": 14, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 11}, {"name": "Minka Kelly", "character": "Joanna Damon", "id": 96625, "credit_id": "52fe47cbc3a36847f81488eb", "cast_id": 15, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 12}, {"name": "Dave Matthews", "character": "Ian Maxtone Jones", "id": 66070, "credit_id": "52fe47cbc3a36847f81488f3", "cast_id": 17, "profile_path": "/izo0HKZEdaJiZ1zW8bizpopMfmz.jpg", "order": 13}, {"name": "Allen Covert", "character": "Soul Patch", "id": 20818, "credit_id": "52fe47cbc3a36847f81488f7", "cast_id": 18, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 14}, {"name": "Jackie Sandler", "character": "Veruca", "id": 963260, "credit_id": "52fe47cbc3a36847f81488ff", "cast_id": 20, "profile_path": "/1hg6ibuKDUdvPAer2Tjb5hnrLly.jpg", "order": 16}, {"name": "Rakefet Abergel", "character": "Patricia", "id": 54717, "credit_id": "52fe47cbc3a36847f8148903", "cast_id": 21, "profile_path": "/yg3i1dWluH66d1pfMgfaEpJisiC.jpg", "order": 17}, {"name": "Rachel Specter", "character": "Lisa Hammond", "id": 88038, "credit_id": "552e602bc3a36804cd000a96", "cast_id": 23, "profile_path": "/haFXITGeMQbgzEtRUEpHugSwnoe.jpg", "order": 18}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe47cbc3a36847f81488cb", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.3, "runtime": 117}, "9587": {"poster_path": "/9E6UwPQMybyMx1kqatzk5PD6WCg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "With their father away as a chaplain in the Civil War, Jo, Meg, Beth and Amy grow up with their mother in somewhat reduced circumstances. They are a close family who inevitably have their squabbles and tragedies. But the bond holds even when, later, male friends start to become a part of the household.", "video": false, "id": 9587, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Little Women", "tagline": "The story that has lived in our hearts for generations, now comes to the screen for the holidays.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0110367", "adult": false, "backdrop_path": "/ojn7IYKmMt8HXRd6oLwY5pLGLVc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1994-12-21", "popularity": 0.787293070483081, "original_title": "Little Women", "budget": 18000000, "cast": [{"name": "Winona Ryder", "character": "Jo March", "id": 1920, "credit_id": "52fe450dc3a36847f80b9a15", "cast_id": 1, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 0}, {"name": "Gabriel Byrne", "character": "Friedrich Bhaer", "id": 5168, "credit_id": "52fe450dc3a36847f80b9a19", "cast_id": 2, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 1}, {"name": "Trini Alvarado", "character": "Meg March", "id": 17187, "credit_id": "52fe450dc3a36847f80b9a1d", "cast_id": 3, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 2}, {"name": "Samantha Mathis", "character": "Older Amy March", "id": 20767, "credit_id": "52fe450dc3a36847f80b9a21", "cast_id": 4, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 3}, {"name": "Kirsten Dunst", "character": "Younger Amy March", "id": 205, "credit_id": "52fe450dc3a36847f80b9a25", "cast_id": 5, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 4}, {"name": "Claire Danes", "character": "Beth March", "id": 6194, "credit_id": "52fe450dc3a36847f80b9a29", "cast_id": 6, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 5}, {"name": "Christian Bale", "character": "Laurie", "id": 3894, "credit_id": "52fe450dc3a36847f80b9a2d", "cast_id": 7, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 6}, {"name": "Eric Stoltz", "character": "John Brooke", "id": 7036, "credit_id": "52fe450dc3a36847f80b9a31", "cast_id": 8, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 7}, {"name": "Susan Sarandon", "character": "Mrs. Abigail \"Marmee\" March", "id": 4038, "credit_id": "52fe450dc3a36847f80b9a35", "cast_id": 9, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 8}, {"name": "John Neville", "character": "Mr. Laurence", "id": 12642, "credit_id": "52fe450dc3a36847f80b9a63", "cast_id": 17, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 9}], "directors": [{"name": "Gillian Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe450dc3a36847f80b9a3b", "profile_path": "/nAWFdZDlp7q6yWDWgM5PMkkmZcA.jpg", "id": 58094}], "vote_average": 6.7, "runtime": 115}, "1398": {"poster_path": "/ezt0Z9wIcPIxiks0J4dm8zJn575.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}], "revenue": 0, "overview": "Near a gray and unnamed city is the Zone, an alien place guarded by barbed wire and soldiers, and where the normal laws of physics are victim to frequent anomalies. A Stalker, one of only a handful who have the mental gifts (and who risk imprisonment) to lead people into the Zone is tasked with reaching the Room, said to be a place where one's secret hopes come true. His clients are a burned out popular writer, cynical, and questioning his talent; and a quiet scientist more concerned about his knapsack than the journey. In the deserted Zone, the approach to the Room must be indirect. As they draw near, the rules seem to change and the stalker faces a crisis. The film is loosely based on the novel \"Roadside Picnic\" by Boris and Arkady Strugatsky", "video": false, "id": 1398, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Stalker", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0079944", "adult": false, "backdrop_path": "/m7yrs7Sw5WpUNJdqDjEhkNJVpxt.jpg", "production_companies": [{"name": "Mosfilm", "id": 5120}], "release_date": "1979-08-01", "popularity": 0.725079991463466, "original_title": "\u0421\u0442\u0430\u043b\u043a\u0435\u0440", "budget": 0, "cast": [{"name": "Aleksandr Kaydanovskiy", "character": "Stalker", "id": 28078, "credit_id": "52fe42f3c3a36847f802f15f", "cast_id": 6, "profile_path": "/1Sh6H65KpCMzzwPYCwH3IVaStIZ.jpg", "order": 0}, {"name": "Anatoliy Solonitsyn", "character": "Ecrivain", "id": 8475, "credit_id": "52fe42f3c3a36847f802f17f", "cast_id": 16, "profile_path": "/mTz5gtiX2Y8B5TajEjQbnTTXlgP.jpg", "order": 1}, {"name": "Nikolay Grinko", "character": "Physicien", "id": 1190992, "credit_id": "52fe42f3c3a36847f802f187", "cast_id": 20, "profile_path": "/kSppXUS2WdGwVSNFZZpmXCdlKia.jpg", "order": 2}, {"name": "Alisa Freyndlikh", "character": "Femme du Stalker", "id": 28079, "credit_id": "52fe42f3c3a36847f802f17b", "cast_id": 15, "profile_path": "/otq1P1wYlKvtHkd8ONXgtOLswk3.jpg", "order": 3}, {"name": "Natasha Abramova", "character": "Martha, fille du Stalker", "id": 28080, "credit_id": "52fe42f3c3a36847f802f183", "cast_id": 18, "profile_path": null, "order": 4}], "directors": [{"name": "Andrei Tarkovsky", "department": "Directing", "job": "Director", "credit_id": "52fe42f3c3a36847f802f143", "profile_path": "/kHK6uZclCj8ZHOZRI9Hq8Q8YXOg.jpg", "id": 8452}], "vote_average": 7.9, "runtime": 163}, "9591": {"poster_path": "/luSHsQYyX0aukrHPL5joYOxcsO9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34585416, "overview": "A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.", "video": false, "id": 9591, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "That Thing You Do!", "tagline": "In every life there comes a time when that dream you dream becomes that thing you do.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117887", "adult": false, "backdrop_path": "/6uIGc25rahyKeG99h6JP7c1e6ai.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Clinica Estetico", "id": 1274}, {"name": "Clavius Base", "id": 38944}], "release_date": "1996-10-04", "popularity": 0.505991058659081, "original_title": "That Thing You Do!", "budget": 0, "cast": [{"name": "Tom Everett Scott", "character": "Guy Patterson", "id": 16857, "credit_id": "52fe450ec3a36847f80b9b93", "cast_id": 1, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 0}, {"name": "Johnathon Schaech", "character": "Jimmy Mattingly", "id": 51670, "credit_id": "52fe450ec3a36847f80b9b9b", "cast_id": 3, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 1}, {"name": "Tom Hanks", "character": "Mr. White", "id": 31, "credit_id": "52fe450ec3a36847f80b9ba3", "cast_id": 5, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 2}, {"name": "Steve Zahn", "character": "Lenny Haise", "id": 18324, "credit_id": "52fe450ec3a36847f80b9b9f", "cast_id": 4, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 3}, {"name": "Ethan Embry", "character": "T.B. Player", "id": 58019, "credit_id": "52fe450ec3a36847f80b9be1", "cast_id": 16, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 4}, {"name": "Liv Tyler", "character": "Faye Dolan", "id": 882, "credit_id": "52fe450ec3a36847f80b9b97", "cast_id": 2, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 5}, {"name": "Charlize Theron", "character": "Tina", "id": 6885, "credit_id": "52fe450ec3a36847f80b9ba7", "cast_id": 6, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Del Paxton", "id": 8854, "credit_id": "54b8bf43c3a3686c6f003914", "cast_id": 19, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Giovanni Ribisi", "character": "Chad", "id": 1771, "credit_id": "52fe450ec3a36847f80b9be5", "cast_id": 17, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 8}, {"name": "Obba Babatunde", "character": "Lamarr", "id": 52057, "credit_id": "54b8bf54c3a3686c68004183", "cast_id": 20, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 9}, {"name": "Alex Rocco", "character": "Sol Siler", "id": 20752, "credit_id": "54b8bf61c3a3686c6f003916", "cast_id": 21, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 10}, {"name": "Chris Isaak", "character": "Uncle Bob", "id": 6591, "credit_id": "54b8bf719251411d6a00405c", "cast_id": 22, "profile_path": "/zL7bz7RQM2iVe45CZyYhM8fAi1U.jpg", "order": 11}, {"name": "Holmes Osborne", "character": "Mr. Patterson", "id": 1578, "credit_id": "54b8c1159251411d6a004086", "cast_id": 23, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 12}, {"name": "Chris Ellis", "character": "Phil Horace", "id": 8191, "credit_id": "54b8cb2ec3a368145e000fa5", "cast_id": 24, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 13}, {"name": "Peter Scolari", "character": "Troy Chesterfield", "id": 42363, "credit_id": "54b8cb4bc3a3686c6b0046d4", "cast_id": 25, "profile_path": "/tLSgD0c7i2rpIS5kNfTysy6Sz0P.jpg", "order": 14}, {"name": "Rita Wilson", "character": "Margueritte", "id": 12931, "credit_id": "54b8cb58c3a3686c6100396e", "cast_id": 26, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 15}, {"name": "Kevin Pollak", "character": "Victor 'Boss Vic Koss' Kosslovich", "id": 7166, "credit_id": "54b8cb6d9251411d77003b63", "cast_id": 27, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 16}, {"name": "Robert Torti", "character": "Freddy Fredrickson", "id": 74933, "credit_id": "54b8cb8492514148f0000e22", "cast_id": 28, "profile_path": "/dPzxmVKTdMPhYiMjAbScn3peKFt.jpg", "order": 17}, {"name": "Holmes Osborne", "character": "Mr. Patterson", "id": 1578, "credit_id": "54b8cb98c3a3681411000e04", "cast_id": 29, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 18}, {"name": "Claudia Stedelin", "character": "Mrs. Patterson", "id": 67805, "credit_id": "54b8cba192514148f0000e24", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Dawn Maxey", "character": "Darlene Patterson", "id": 166935, "credit_id": "54b8cbabc3a3681411000e09", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Jonathan Demme", "character": "Major Motion Picture Director", "id": 16294, "credit_id": "54b8cbbb9251411d6a004166", "cast_id": 32, "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "order": 21}, {"name": "Paul Feig", "character": "KMPC DJ", "id": 116805, "credit_id": "54b8cbc9c3a3681445000dbb", "cast_id": 33, "profile_path": "/6CI4revRSc9qCy6kVlyGntHblcI.jpg", "order": 22}, {"name": "Bryan Cranston", "character": "Virgil \"Gus\" Grissom", "id": 17419, "credit_id": "54b8cbdc92514148f0000e2e", "cast_id": 34, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 23}, {"name": "Colin Hanks", "character": "Male Page", "id": 3492, "credit_id": "54b8cbe99251411d77003b77", "cast_id": 35, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 24}, {"name": "Kevin Pollak", "character": "Boss Vic Koss", "id": 7166, "credit_id": "54b9519092514148f0001bca", "cast_id": 36, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 25}], "directors": [{"name": "Tom Hanks", "department": "Directing", "job": "Director", "credit_id": "52fe450ec3a36847f80b9bad", "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "id": 31}], "vote_average": 6.6, "runtime": 108}, "9593": {"poster_path": "/yeLurMF2Xy3nex17hBbxft6zGR0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 137298489, "overview": "Danny is obsessed with a fictional movie character action hero Jack Slater. When a magical ticket transports him into Jack's latest adventure, Danny finds himself in a world where movie magic and reality collide. Now it's up to Danny to save the life of his hero and new friend.", "video": false, "id": 9593, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Last Action Hero", "tagline": "This isn't the movies anymore.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107362", "adult": false, "backdrop_path": "/A5C62A1MjE5a6ZrtmvHYK3vTKtG.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1993-06-17", "popularity": 1.13250661236172, "original_title": "Last Action Hero", "budget": 85000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Jack Slater", "id": 1100, "credit_id": "52fe450ec3a36847f80b9c83", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Austin O'Brien", "character": "Danny Madigan", "id": 58119, "credit_id": "52fe450ec3a36847f80b9c8b", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Charles Dance", "character": "Benedict", "id": 4391, "credit_id": "52fe450ec3a36847f80b9c9b", "cast_id": 7, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 2}, {"name": "F. Murray Abraham", "character": "John Practice", "id": 1164, "credit_id": "52fe450ec3a36847f80b9c87", "cast_id": 2, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 3}, {"name": "Art Carney", "character": "Frank", "id": 40176, "credit_id": "52fe450ec3a36847f80b9c8f", "cast_id": 4, "profile_path": "/aGD4B4XBXdM921tU5KeRFaN26KH.jpg", "order": 4}, {"name": "Anthony Quinn", "character": "Tony Vivaldi", "id": 5401, "credit_id": "52fe450ec3a36847f80b9c93", "cast_id": 5, "profile_path": "/9sKpm4KCoUbmMbR86fpqcgBCHrJ.jpg", "order": 5}, {"name": "Ian McKellen", "character": "Death", "id": 1327, "credit_id": "52fe450ec3a36847f80b9c97", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 6}, {"name": "Frank McRae", "character": "Lieutenant Dekker", "id": 1735, "credit_id": "52fe450ec3a36847f80b9cdb", "cast_id": 19, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 7}, {"name": "Mercedes Ruehl", "character": "Irene Madigan", "id": 2167, "credit_id": "52fe450ec3a36847f80b9cdf", "cast_id": 20, "profile_path": "/nPsSRaDQxiviOVY8ouqTBLGaui6.jpg", "order": 8}, {"name": "Tina Turner", "character": "The Mayor", "id": 1459, "credit_id": "52fe450ec3a36847f80b9ce3", "cast_id": 21, "profile_path": "/yhA10YPoQwGWtvd4TUm4X6tkv1x.jpg", "order": 9}, {"name": "Joan Plowright", "character": "Teacher", "id": 23709, "credit_id": "52fe450ec3a36847f80b9ce7", "cast_id": 22, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 10}, {"name": "Leeza Gibbons", "character": "Herself", "id": 44051, "credit_id": "52fe450ec3a36847f80b9ceb", "cast_id": 23, "profile_path": "/nZOYAQ2hbLk0gnwtfuvvwokp38o.jpg", "order": 11}, {"name": "Noah Emmerich", "character": "Rookie", "id": 11315, "credit_id": "52fe450ec3a36847f80b9cef", "cast_id": 24, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 12}, {"name": "Michael V. Gazzo", "character": "Torelli", "id": 3172, "credit_id": "52fe450ec3a36847f80b9cf3", "cast_id": 25, "profile_path": "/z50tLgbtVvIEI05uHO6udwOgwe3.jpg", "order": 13}, {"name": "Colleen Camp", "character": "Ratcliff", "id": 13023, "credit_id": "52fe450ec3a36847f80b9cf7", "cast_id": 26, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 14}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe450ec3a36847f80b9cd7", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 5.6, "runtime": 130}, "1402": {"poster_path": "/qTyZ6bRb36FjoDPszbWa6zVYzJZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 305070744, "overview": "Based on a true story about a man named Christopher Gardner, who has invested heavily in a device known as a \"Bone Density scanner\". However, the devices do not sell as they are just marginally better than the current technology at a much higher price. As Gardner tries to figure out how to sell them, his wife leaves him, he loses his house, his bank account, and credit cards. Forced to live out in the streets with his son, Gardner is now desperate to find a steady job; he takes on a job as a stockbroker, but before he can receive pay, he needs to go through 6 months of training, and to sell his devices.", "video": false, "id": 1402, "genres": [{"id": 18, "name": "Drama"}], "title": "The Pursuit of Happyness", "tagline": "Inspired by True Events", "vote_count": 687, "homepage": "http://www.sonypictures.com/homevideo/thepursuitofhappyness/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0454921", "adult": false, "backdrop_path": "/3HcQuppFrEf5ioUqpg373usgQqh.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2006-12-14", "popularity": 1.44937282908182, "original_title": "The Pursuit of Happyness", "budget": 55000000, "cast": [{"name": "Will Smith", "character": "Chris Gardner", "id": 2888, "credit_id": "52fe42f3c3a36847f802f1eb", "cast_id": 19, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Thandie Newton", "character": "Linda", "id": 9030, "credit_id": "52fe42f3c3a36847f802f1df", "cast_id": 11, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 1}, {"name": "Brian Howe", "character": "Jay Twistle", "id": 1990, "credit_id": "52fe42f3c3a36847f802f1e3", "cast_id": 13, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 2}, {"name": "James Karen", "character": "Martin Frohm", "id": 14852, "credit_id": "52fe42f3c3a36847f802f1e7", "cast_id": 14, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 3}, {"name": "Jaden Smith", "character": "Christopher", "id": 120724, "credit_id": "52fe42f3c3a36847f802f1ef", "cast_id": 20, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 4}], "directors": [{"name": "Gabriele Muccino", "department": "Directing", "job": "Director", "credit_id": "52fe42f3c3a36847f802f1ab", "profile_path": "/uU23lwEwz3TnHl0DvvyePpaGuEG.jpg", "id": 20646}], "vote_average": 7.2, "runtime": 117}, "9595": {"poster_path": "/7xTBjS7yfBk7xtTs8ckJKGp4HOl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181096164, "overview": "Charlie Sheen, Lloyd Bridges, Cary Elwes, Valeria Golino and Jon Cryer co-star in director Jim Abrahams' (Airplane, Naked Gun) truly hilarious spoof of Top Gun. Recruited to join a top-secret mission for the Air Force, a renegade pilot (Sheen) finds himself coping with an incompetent admiral (Bridges) and a carefully selected squadron of flyers who are either inept or half-blind.", "video": false, "id": 9595, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10752, "name": "War"}], "title": "Hot Shots!", "tagline": "The mother of all movies.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iGrRouADMV9MbidImsgRORaV3q.jpg", "poster_path": "/5uzldxeEVqvdaZhE4uCT9TTz9p1.jpg", "id": 52988, "name": "Hot Shots! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102059", "adult": false, "backdrop_path": "/cRwfgVEV02xVA07tMidSIazYRJ.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1991-07-31", "popularity": 0.899877447715797, "original_title": "Hot Shots!", "budget": 26000000, "cast": [{"name": "Charlie Sheen", "character": "Lt. Topper Harley / Rhett Butler / Superman", "id": 6952, "credit_id": "52fe450ec3a36847f80b9dd3", "cast_id": 1, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 0}, {"name": "Cary Elwes", "character": "Lt. Kent Gregory", "id": 2130, "credit_id": "52fe450ec3a36847f80b9dd7", "cast_id": 2, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 1}, {"name": "Valeria Golino", "character": "Ramada Thompson / Scarlett O'Hara / Lois Lane", "id": 3124, "credit_id": "52fe450ec3a36847f80b9ddb", "cast_id": 3, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 2}, {"name": "Lloyd Bridges", "character": "Adm. Thomas 'Tug' Benson", "id": 2177, "credit_id": "52fe450ec3a36847f80b9ddf", "cast_id": 4, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Lt. Cmdr. James Block", "id": 14721, "credit_id": "52fe450ec3a36847f80b9e37", "cast_id": 19, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Jon Cryer", "character": "Jim 'Wash Out' Pfaffenbach", "id": 69718, "credit_id": "52fe450ec3a36847f80b9e3b", "cast_id": 20, "profile_path": "/kXoEUv6pfXZGFuxVTTiuSVnac7B.jpg", "order": 5}, {"name": "William O'Leary", "character": "Pete 'Dead Meat' Thompson", "id": 4041, "credit_id": "52fe450ec3a36847f80b9e3f", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Kristy Swanson", "character": "Kowalski", "id": 56128, "credit_id": "52fe450ec3a36847f80b9e43", "cast_id": 22, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 7}, {"name": "Efrem Zimbalist, Jr.", "character": "Wilson", "id": 34981, "credit_id": "52fe450ec3a36847f80b9e47", "cast_id": 23, "profile_path": "/wF4GAxA1KFRi1HimzpGAoBhCoMG.jpg", "order": 8}, {"name": "Bill Irwin", "character": "Buzz Harley", "id": 58549, "credit_id": "52fe450ec3a36847f80b9e4b", "cast_id": 24, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 9}, {"name": "Heidi Swedberg", "character": "Mary Thompson", "id": 62551, "credit_id": "52fe450ec3a36847f80b9e4f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Bruce A. Young", "character": "'Red' Herring", "id": 4943, "credit_id": "52fe450ec3a36847f80b9e53", "cast_id": 26, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 11}, {"name": "Ryan Stiles", "character": "'Mailman' Farnham", "id": 162606, "credit_id": "52fe450ec3a36847f80b9e57", "cast_id": 27, "profile_path": "/eSrcWZW7wKdb1bXvYywo3vAGfiJ.jpg", "order": 12}, {"name": "Rino Thunder", "character": "Owatonna 'The Old One'", "id": 83364, "credit_id": "52fe450ec3a36847f80b9e5b", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Mark Arnott", "character": "Rosener", "id": 570554, "credit_id": "52fe450ec3a36847f80b9e5f", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Ryan Cutrona", "character": "Capt. Margolis", "id": 93345, "credit_id": "52fe450fc3a36847f80b9e63", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Bill Laimbeer", "character": "Himself", "id": 1312327, "credit_id": "536135d90e0a2649ad000062", "cast_id": 31, "profile_path": "/vmyMKvlmRmpVCTWhLTurdrZtiAt.jpg", "order": 16}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe450ec3a36847f80b9de5", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}], "vote_average": 6.2, "runtime": 84}, "9598": {"poster_path": "/gN6X3fwPya8pLffk9OEWV3DqBnE.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 254134910, "overview": "Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mom, Babe realizes that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs Babe learns that a pig can be anything that he wants to be.", "video": false, "id": 9598, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Babe", "tagline": "A little pig goes a long way.", "vote_count": 159, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cOYRzPx86msMyCJ1E0D4jiMvASp.jpg", "poster_path": "/k42J5jYjvw1DEGBQP63VYYvteY7.jpg", "id": 9435, "name": "Babe Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112431", "adult": false, "backdrop_path": "/1tivSvqnr8QegpI9X1fO6Wx87wW.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1995-08-03", "popularity": 1.03245069954845, "original_title": "Babe", "budget": 30000000, "cast": [{"name": "Christine Cavanaugh", "character": "Babe the Gallant Pig (voice)", "id": 58136, "credit_id": "52fe450fc3a36847f80b9fa9", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Miriam Margolyes", "character": "Fly the Female Sheepdog (voice)", "id": 6199, "credit_id": "52fe450fc3a36847f80b9fad", "cast_id": 2, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 1}, {"name": "Danny Mann", "character": "Ferdinand the Duck (voice)", "id": 52699, "credit_id": "52fe450fc3a36847f80b9fb1", "cast_id": 3, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Rex the Male Sheepdog (voice)", "id": 1331, "credit_id": "52fe450fc3a36847f80b9fb5", "cast_id": 4, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Miriam Flynn", "character": "Maa the Very Old Ewe (voice)", "id": 35109, "credit_id": "52fe450fc3a36847f80b9fb9", "cast_id": 5, "profile_path": "/6VKACA883vyve6uuviO4I6QpluL.jpg", "order": 4}, {"name": "James Cromwell", "character": "Farmer Arthur Hoggett", "id": 2505, "credit_id": "52fe450fc3a36847f80b9fbd", "cast_id": 6, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 5}, {"name": "Russi Taylor", "character": "Dutchess the Cat (voice)", "id": 6035, "credit_id": "52fe450fc3a36847f80b9fc1", "cast_id": 7, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 6}, {"name": "Evelyn Krape", "character": "Old Ewe (voice)", "id": 1080206, "credit_id": "52fe450fc3a36847f80ba007", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Michael Edward-Stevens", "character": "Horse (voice)", "id": 1080207, "credit_id": "52fe450fc3a36847f80ba00b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Charles Bartlett", "character": "Cow (voice)", "id": 1229258, "credit_id": "54e1d4f7c3a3684551007d0f", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Paul Livingston", "character": "Rooster (voice)", "id": 61351, "credit_id": "52fe450fc3a36847f80ba013", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Roscoe Lee Browne", "character": "Narrator (voice)", "id": 24368, "credit_id": "52fe450fc3a36847f80ba017", "cast_id": 23, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 11}, {"name": "Magda Szubanski", "character": "Esme Hoggett", "id": 45586, "credit_id": "52fe450fc3a36847f80ba01b", "cast_id": 24, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 12}, {"name": "Zoe Burton", "character": "The Hoggetts' daughter", "id": 1080208, "credit_id": "52fe450fc3a36847f80ba01f", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Paul Goddard", "character": "The Hoggetts' son-in-Law", "id": 9380, "credit_id": "52fe450fc3a36847f80ba023", "cast_id": 26, "profile_path": "/4OalonKRAdZhXreaDWig3bZkELo.jpg", "order": 14}, {"name": "Wade Hayward", "character": "The Hoggets' grandson", "id": 1080209, "credit_id": "52fe450fc3a36847f80ba027", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Brittany Byrnes", "character": "The Hoggetts' granddaughter", "id": 210276, "credit_id": "52fe450fc3a36847f80ba02b", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Mary Acres", "character": "Valda", "id": 75934, "credit_id": "52fe450fc3a36847f80ba02f", "cast_id": 29, "profile_path": null, "order": 17}], "directors": [{"name": "Chris Noonan", "department": "Directing", "job": "Director", "credit_id": "52fe450fc3a36847f80b9fc7", "profile_path": "/vzvXz1V9Vj1OYCVW5HIGAsXCOuv.jpg", "id": 58137}], "vote_average": 6.0, "runtime": 89}, "1407": {"poster_path": "/zVnIx9gR5pzv6UxSB6GOseeaA7M.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A swirling, impressionistic portrait of an artist who regretted nothing, writer-director Olivier Dahan's La Vie en Rose stars Marion Cotillard in a blazing performance as the legendary French icon Edith Piaf. From the mean streets of the Belleville district of Paris to the dazzling limelight of New York's most famous concert halls, Piaf's life was a constant battle to sing and survive, to live and love. Raised in her grandmother's brothel, Piaf was discovered in 1935 by nightclub owner Louis Leplee (Gerard Depardieu), who persuaded her to sing despite her extreme nervousness. Piaf became one of France's immortal icons, her voice one of the indelible signatures of the 20th Century.", "video": false, "id": 1407, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "La Vie en Rose", "tagline": "The Extraordinary Story of Edith Piaf", "vote_count": 55, "homepage": "http://www.tfmdistribution.com/lamome/lamome.htm", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0450188", "adult": false, "backdrop_path": "/ue507qDmtiULJNQjwNz9943LAS2.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}], "release_date": "2007-02-14", "popularity": 0.551334712356732, "original_title": "La M\u00f4me", "budget": 0, "cast": [{"name": "Marion Cotillard", "character": "Edith Piaf", "id": 8293, "credit_id": "52fe42f3c3a36847f802f4f5", "cast_id": 1, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 0}, {"name": "Sylvie Testud", "character": "M\u00f4mone", "id": 4529, "credit_id": "52fe42f3c3a36847f802f4f9", "cast_id": 2, "profile_path": "/u2fqcyDIKZk8plRHthpJtI7FdZd.jpg", "order": 1}, {"name": "Pascal Greggory", "character": "Louis Barrier", "id": 16923, "credit_id": "52fe42f3c3a36847f802f515", "cast_id": 8, "profile_path": "/r8tJl5SlAjQ3CL50CgoAHEw4eH5.jpg", "order": 2}, {"name": "Emmanuelle Seigner", "character": "Titine", "id": 8925, "credit_id": "52fe42f3c3a36847f802f511", "cast_id": 7, "profile_path": "/llh2iFcVslY8PEFAvuEKLI7y8U3.jpg", "order": 3}, {"name": "Jean-Paul Rouve", "character": "Louis Gassion", "id": 16922, "credit_id": "52fe42f3c3a36847f802f50d", "cast_id": 6, "profile_path": "/iHOZd4VO0dZ2H3ADCJhUk2BmkOd.jpg", "order": 4}, {"name": "G\u00e9rard Depardieu", "character": "Louis Lepl\u00e9e", "id": 16927, "credit_id": "52fe42f3c3a36847f802f521", "cast_id": 12, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 5}, {"name": "Clotilde Courau", "character": "Annetta Gassion", "id": 16921, "credit_id": "52fe42f3c3a36847f802f509", "cast_id": 5, "profile_path": "/htHGCsyHZ7zMyjmpSsiKmfdp21Z.jpg", "order": 6}, {"name": "Jean-Pierre Martins", "character": "Marcel Cerdan", "id": 82188, "credit_id": "52fe42f4c3a36847f802f559", "cast_id": 22, "profile_path": "/kd3OUkAk8wEopp4S4XdYZisNpAy.jpg", "order": 7}, {"name": "Catherine All\u00e9gret", "character": "Louise", "id": 16926, "credit_id": "52fe42f3c3a36847f802f51d", "cast_id": 11, "profile_path": "/kb6186eWhiozkAmF3O2UziwY0G9.jpg", "order": 8}, {"name": "Marc Barb\u00e9", "character": "Raymond Asso", "id": 135665, "credit_id": "52fe42f4c3a36847f802f555", "cast_id": 21, "profile_path": "/gsea1RzFBt6kQ7VqQYejifE5H3N.jpg", "order": 9}, {"name": "Caroline Sihol", "character": "Marlene Dietrich", "id": 16925, "credit_id": "52fe42f3c3a36847f802f519", "cast_id": 10, "profile_path": "/g7izhwjv2rtqgeg8ewAwVTbrQ32.jpg", "order": 10}, {"name": "Manon Chevallier", "character": "Edith - 5 years old", "id": 109519, "credit_id": "52fe42f4c3a36847f802f55d", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Pauline Burlet", "character": "Edith - 10 years old", "id": 1128970, "credit_id": "52fe42f4c3a36847f802f561", "cast_id": 24, "profile_path": "/7ymza1rMCLUx5yYNo9XcedZpDxv.jpg", "order": 12}, {"name": "Elisabeth Commelin", "character": "Danielle Bonel", "id": 5318, "credit_id": "52fe42f4c3a36847f802f565", "cast_id": 25, "profile_path": "/kJYHlilPKDctDRbDjetlm1kuxoQ.jpg", "order": 13}, {"name": "Andr\u00e9 Penvern", "character": "Jacques Canetti", "id": 35085, "credit_id": "52fe42f4c3a36847f802f569", "cast_id": 26, "profile_path": "/vUCf1PVzRZwyN35EilkCiiNHTBi.jpg", "order": 14}, {"name": "Marie-Armelle Deguy", "character": "Marguerite Monnot", "id": 1175822, "credit_id": "52fe42f4c3a36847f802f56d", "cast_id": 27, "profile_path": "/sr4ukvjaCpa61WbLdc9BI3a5eUz.jpg", "order": 15}, {"name": "Val\u00e9rie Moreau", "character": "Jeanne", "id": 64584, "credit_id": "52fe42f4c3a36847f802f571", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Marc Gannot", "character": "Marc Bonel", "id": 1175823, "credit_id": "52fe42f4c3a36847f802f575", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Jean-Paul Muel", "character": "Bruno Coquatrix", "id": 45447, "credit_id": "52fe42f4c3a36847f802f579", "cast_id": 30, "profile_path": "/gDc5jjzFY5OyQhX1KYKv8MGZijS.jpg", "order": 18}, {"name": "Nathalie Dorval", "character": "Mireille", "id": 1175824, "credit_id": "52fe42f4c3a36847f802f57d", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Caroline Raynaud", "character": "Ginou", "id": 230038, "credit_id": "52fe42f4c3a36847f802f581", "cast_id": 32, "profile_path": "/1r7bXlvUEqAsr7nJW2Qp2NJkOIV.jpg", "order": 20}, {"name": "Christophe Odent", "character": "Dr. Bernay", "id": 23505, "credit_id": "52fe42f4c3a36847f802f585", "cast_id": 33, "profile_path": "/9ryUaTaGmm967AOD4yxMFkzCTw5.jpg", "order": 21}, {"name": "Harry Hadden-Paton", "character": "Doug Davis", "id": 145133, "credit_id": "52fe42f4c3a36847f802f589", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Cylia Malki", "character": "Philipo", "id": 81120, "credit_id": "52fe42f4c3a36847f802f58d", "cast_id": 35, "profile_path": "/5y5xUaYbnck9ZvS9ZK77i1WAPIz.jpg", "order": 23}, {"name": "\u00c9dith Le Merdy", "character": "Simone Margantin", "id": 358432, "credit_id": "52fe42f4c3a36847f802f591", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Denis M\u00e9nochet", "character": "Journalist in Orly", "id": 81125, "credit_id": "52fe42f4c3a36847f802f595", "cast_id": 37, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 25}, {"name": "Josette M\u00e9nard", "character": "Mamy", "id": 1155937, "credit_id": "52fe42f4c3a36847f802f599", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Dominique Paturel", "character": "Lucien Roupp", "id": 36948, "credit_id": "52fe42f4c3a36847f802f59d", "cast_id": 39, "profile_path": "/mRUiFBTTwtuGRFVB5oNpXYiphy2.jpg", "order": 27}, {"name": "Nicholas Pritchard", "character": "Jameson", "id": 1175825, "credit_id": "52fe42f4c3a36847f802f5a1", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "William Armstrong", "character": "Clifford Fisher", "id": 29616, "credit_id": "52fe42f4c3a36847f802f5a5", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Aubert Fenoy", "character": "Michel Emer", "id": 1175830, "credit_id": "52fe42f4c3a36847f802f5a9", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Mario Hacquard", "character": "Charles Dumont", "id": 1175831, "credit_id": "52fe42f4c3a36847f802f5ad", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Agathe Bodin", "character": "Suzanne", "id": 1175832, "credit_id": "52fe42f4c3a36847f802f5b1", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Olivier Cruveiller", "character": "Inspecteur Guillaume", "id": 54281, "credit_id": "52fe42f4c3a36847f802f5b5", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Ashley Wanninger", "character": "Lepl\u00e9e's assistant", "id": 943199, "credit_id": "52fe42f4c3a36847f802f5b9", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Laurent Schilling", "character": "Claude", "id": 38881, "credit_id": "52fe42f4c3a36847f802f5bd", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Dominique Bettenfeld", "character": "Albert", "id": 28462, "credit_id": "52fe42f4c3a36847f802f5c1", "cast_id": 48, "profile_path": "/4LovjhsdwsUsHjFfIyOoWPYBB6T.jpg", "order": 36}, {"name": "Alban Casterman", "character": "Charles Aznavour", "id": 130559, "credit_id": "52fe42f4c3a36847f802f5c5", "cast_id": 49, "profile_path": "/uux4AyHt11C1ruAZakWcNGQghgZ.jpg", "order": 37}, {"name": "S\u00e9bastien Tavel", "character": "Interviewer", "id": 1175833, "credit_id": "52fe42f4c3a36847f802f5c9", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Nicole Dubois", "character": "Seamstress", "id": 1175834, "credit_id": "52fe42f4c3a36847f802f5cd", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Martin Janis", "character": "Jean Mermoz", "id": 1175835, "credit_id": "52fe42f4c3a36847f802f5d1", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Eric Franquelin", "character": "Etienne", "id": 1175836, "credit_id": "52fe42f4c3a36847f802f5d5", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Marc Chapiteau", "character": "Mitty Goldin", "id": 21579, "credit_id": "52fe42f4c3a36847f802f5d9", "cast_id": 54, "profile_path": "/y2MtTWdj3HOAeRec6Z2WsY6NvqV.jpg", "order": 42}, {"name": "Maureen Demidof", "character": "Marcelle", "id": 1175837, "credit_id": "52fe42f4c3a36847f802f5dd", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Pierre Peyrichout", "character": "Journalist", "id": 1172640, "credit_id": "52fe42f4c3a36847f802f5e1", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Liliane Cebrian", "character": "Palm reader", "id": 1175838, "credit_id": "52fe42f4c3a36847f802f5e5", "cast_id": 57, "profile_path": "/krRkL6ulAD735zWTnEJDxGF82Do.jpg", "order": 45}, {"name": "Paulina Nemcova", "character": "American journalist", "id": 128083, "credit_id": "52fe42f4c3a36847f802f5e9", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Jean-Jacques Desplanque", "character": "Tony Zale", "id": 1175839, "credit_id": "52fe42f4c3a36847f802f5ed", "cast_id": 59, "profile_path": null, "order": 47}, {"name": "Alain Figlarz", "character": "Boxing trainer", "id": 238393, "credit_id": "52fe42f4c3a36847f802f5f1", "cast_id": 60, "profile_path": "/u0cOZyBWRSxu0j3Ez9iKD5vUez.jpg", "order": 48}, {"name": "Nathalie Cox", "character": "Pin-up", "id": 17337, "credit_id": "52fe42f4c3a36847f802f615", "cast_id": 69, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 49}, {"name": "Pierre Derenne", "character": "P'tit Louis", "id": 585672, "credit_id": "52fe42f4c3a36847f802f5f5", "cast_id": 61, "profile_path": null, "order": 50}, {"name": "Emy L\u00e9vy", "character": "Brothel girl 1", "id": 1175840, "credit_id": "52fe42f4c3a36847f802f5f9", "cast_id": 62, "profile_path": "/ikd2tjjaxI67MYIFsEIhIH3cfZp.jpg", "order": 51}, {"name": "Olivier Raoux", "character": "Waiter", "id": 16933, "credit_id": "52fe42f4c3a36847f802f5fd", "cast_id": 63, "profile_path": null, "order": 52}, {"name": "Philippe Bricard", "character": "Man in Lannes", "id": 1175843, "credit_id": "52fe42f4c3a36847f802f601", "cast_id": 64, "profile_path": null, "order": 53}, {"name": "Pier Luigi Colombetti", "character": "Brasserie owner", "id": 1175844, "credit_id": "52fe42f4c3a36847f802f605", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "Rodolphe Saulnier", "character": "Barman", "id": 1175845, "credit_id": "52fe42f4c3a36847f802f609", "cast_id": 66, "profile_path": "/3ZByFMRBBgp8ygM1P0aJzRQ4bDA.jpg", "order": 55}, {"name": "Fabien Duval", "character": "Policeman", "id": 1175846, "credit_id": "52fe42f4c3a36847f802f60d", "cast_id": 67, "profile_path": null, "order": 56}, {"name": "Nicolas Simon", "character": "Journalist by the church", "id": 1175847, "credit_id": "52fe42f4c3a36847f802f611", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Jil Aigrot", "character": "Edith Piaf (singing voice)", "id": 1175848, "credit_id": "52fe42f4c3a36847f802f619", "cast_id": 70, "profile_path": null, "order": 58}], "directors": [{"name": "Olivier Dahan", "department": "Directing", "job": "Director", "credit_id": "52fe42f3c3a36847f802f4ff", "profile_path": "/uOkI6ibgTsoXZFggDAOnHpcBteP.jpg", "id": 16919}], "vote_average": 6.8, "runtime": 140}, "9600": {"poster_path": "/bse0uwxF6daKzDbxZki1SYRNZkI.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173959438, "overview": "When a street-smart FBI agent is sent to Georgia to protect a beautiful single mother and her son from an escaped convict, he is forced to impersonate a crass Southern granny known as Big Momma in order to remain incognito.", "video": false, "id": 9600, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Big Momma's House", "tagline": "This FBI agent is going undercover... and he's concealing more than a weapon.", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nFJauk5E72nZNZJU4TZFCdMycYE.jpg", "id": 44979, "name": "Big Momma's House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0208003", "adult": false, "backdrop_path": "/poVDjdyhuCcFWCkAhNvaqWsbVsT.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2000-05-31", "popularity": 1.19168288663871, "original_title": "Big Momma's House", "budget": 30000000, "cast": [{"name": "Martin Lawrence", "character": "Malcolm Turner", "id": 78029, "credit_id": "52fe450fc3a36847f80ba151", "cast_id": 14, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Nia Long", "character": "Sherry Pierce", "id": 9781, "credit_id": "52fe450fc3a36847f80ba155", "cast_id": 15, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "John", "id": 13242, "credit_id": "52fe450fc3a36847f80ba159", "cast_id": 16, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Jascha Washington", "character": "Trent Pierce", "id": 58147, "credit_id": "52fe450fc3a36847f80ba15d", "cast_id": 17, "profile_path": "/jqaE0iUXDuDPlM6WXQvniTMliUw.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Lester Vesco", "id": 18288, "credit_id": "52fe450fc3a36847f80ba16d", "cast_id": 20, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Octavia Spencer", "character": "Twila", "id": 6944, "credit_id": "52fe450fc3a36847f80ba171", "cast_id": 21, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 5}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe450fc3a36847f80ba117", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.8, "runtime": 98}, "9602": {"poster_path": "/7v1Sy0HC5KEM1DMM4Bpy5gVly1K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 288752301, "overview": "Prince Akeem, heir to the throne of Zamunda, leaves the tropical paradise kingdom in search of his queen. What better place than Queens, New York to find his bride? Joined by his loyal servant and friend, Semmi, Akeem attempts to blend in as an ordinary American and begin his search.", "video": false, "id": 9602, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Coming to America", "tagline": "The Four Funniest Men in America are Eddie Murphy.", "vote_count": 254, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094898", "adult": false, "backdrop_path": "/tlCnOu6PO7ILLnJMRw1NsrEWmyQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-06-28", "popularity": 0.800407341036081, "original_title": "Coming to America", "budget": 39000000, "cast": [{"name": "Eddie Murphy", "character": "Prince Akeem / Clarence / Randy Watson / Saul", "id": 776, "credit_id": "52fe450fc3a36847f80ba1c1", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Arsenio Hall", "character": "Semmi / Extremely Ugly Girl / Morris / Reverend Brown", "id": 44994, "credit_id": "52fe450fc3a36847f80ba1c5", "cast_id": 2, "profile_path": "/cXv78qwO04CG3MMdiaYLEHu47MU.jpg", "order": 1}, {"name": "James Earl Jones", "character": "King Jaffe Joffer", "id": 15152, "credit_id": "52fe450fc3a36847f80ba1c9", "cast_id": 3, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 2}, {"name": "John Amos", "character": "Cleo McDowell", "id": 22384, "credit_id": "52fe450fc3a36847f80ba1cd", "cast_id": 4, "profile_path": "/gHe1eOXONqm3AmMtghfVXbU5V2m.jpg", "order": 3}, {"name": "Shari Headley", "character": "Lisa McDowell", "id": 155783, "credit_id": "52fe450fc3a36847f80ba21f", "cast_id": 18, "profile_path": "/1MRLXPmdBf35manJbRJq3pE81V3.jpg", "order": 4}, {"name": "Frankie Faison", "character": "Landlord", "id": 13936, "credit_id": "52fe450fc3a36847f80ba223", "cast_id": 19, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 5}, {"name": "Louie Anderson", "character": "Maurice", "id": 44795, "credit_id": "52fe450fc3a36847f80ba227", "cast_id": 20, "profile_path": "/1I1kp4yhGcg8u6zJpH43RnVpKWy.jpg", "order": 6}, {"name": "Calvin Lockhart", "character": "Colonel Izzi", "id": 2067, "credit_id": "52fe450fc3a36847f80ba22b", "cast_id": 21, "profile_path": "/3yJrPwyFScLuBukMb5BMJ8lDk1m.jpg", "order": 7}, {"name": "Samuel L. Jackson", "character": "Robber", "id": 2231, "credit_id": "52fe4510c3a36847f80ba22f", "cast_id": 22, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 8}, {"name": "Eriq La Salle", "character": "Darryl Jenks", "id": 23628, "credit_id": "52fe4510c3a36847f80ba233", "cast_id": 23, "profile_path": "/iUjzxU9h9omJ9OTVkXreu6Q7YsK.jpg", "order": 9}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe450fc3a36847f80ba1d3", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.3, "runtime": 116}, "9603": {"poster_path": "/i8gEHh2sszB6YWLC0jl559sxAeN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Clueless follows the misadventures of meddlesome Beverly Hills high schooler Cher, who gets more than she bargained for when she gives a fashion-challenged student a makeover.", "video": false, "id": 9603, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Clueless", "tagline": "Sex. Clothes. Popularity. Is there a problem here?", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112697", "adult": false, "backdrop_path": "/wjV43TB4H6scRGBYs3QoYxp82rQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1995-07-19", "popularity": 0.753934423347416, "original_title": "Clueless", "budget": 0, "cast": [{"name": "Alicia Silverstone", "character": "Cher Horowitz", "id": 5588, "credit_id": "52fe4510c3a36847f80ba283", "cast_id": 8, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 0}, {"name": "Stacey Dash", "character": "Dionne", "id": 58150, "credit_id": "52fe4510c3a36847f80ba287", "cast_id": 9, "profile_path": "/nqdCmfn1esQrhdfLygF0y0yGjcA.jpg", "order": 1}, {"name": "Brittany Murphy", "character": "Tai", "id": 328, "credit_id": "52fe4510c3a36847f80ba28b", "cast_id": 10, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Josh", "id": 22226, "credit_id": "52fe4510c3a36847f80ba28f", "cast_id": 11, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Donald Faison", "character": "Murray", "id": 49002, "credit_id": "52fe4510c3a36847f80ba293", "cast_id": 12, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 4}, {"name": "Elisa Donovan", "character": "Amber", "id": 58151, "credit_id": "52fe4510c3a36847f80ba297", "cast_id": 13, "profile_path": "/2DtmmlkfqS4FvZdi34fA5gKqxSH.jpg", "order": 5}, {"name": "Breckin Meyer", "character": "Travis", "id": 33654, "credit_id": "52fe4510c3a36847f80ba2a1", "cast_id": 15, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 6}, {"name": "Jeremy Sisto", "character": "Elton", "id": 23958, "credit_id": "52fe4510c3a36847f80ba2a5", "cast_id": 16, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 7}, {"name": "Dan Hedaya", "character": "Mel Horowitz", "id": 6486, "credit_id": "52fe4510c3a36847f80ba2a9", "cast_id": 17, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 8}, {"name": "Wallace Shawn", "character": "Mr. Wendell Hall", "id": 12900, "credit_id": "52fe4510c3a36847f80ba2ad", "cast_id": 18, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 9}, {"name": "Twink Caplan", "character": "Miss Toby Geist", "id": 66160, "credit_id": "52fe4510c3a36847f80ba2b1", "cast_id": 19, "profile_path": "/a6iDJoy42QZP1DfL3ybHQeXT5DU.jpg", "order": 10}, {"name": "Justin Walker", "character": "Christian", "id": 30881, "credit_id": "52fe4510c3a36847f80ba2b5", "cast_id": 20, "profile_path": null, "order": 11}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba261", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 6.5, "runtime": 97}, "9604": {"poster_path": "/gcXZTkPpY7YpuzC9EpEBT3PAajz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34995000, "overview": "Arnold Schwarzenegger plays a Russian policeman sent after a Russian drug dealer who has escaped to the United States and is awaiting extradition in Chicago. Jim Belushi plays his temporary partner on the Chicago police. When the drug dealer escapes, the two police must overcome their differences in order to recapture him.", "video": false, "id": 9604, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Red Heat", "tagline": "Moscow's toughest detective. Chicago's craziest cop. There's only one thing worse than making them mad. Making them partners.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0095963", "adult": false, "backdrop_path": "/nnUqd9vSHmLcR8DlEu8vx9RDftZ.jpg", "production_companies": [{"name": "Carolco Entertainment", "id": 10320}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1988-06-14", "popularity": 0.935030775222858, "original_title": "Red Heat", "budget": 0, "cast": [{"name": "Arnold Schwarzenegger", "character": "Capt. Ivan Danko", "id": 1100, "credit_id": "52fe4510c3a36847f80ba331", "cast_id": 14, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "James Belushi", "character": "Det. Sgt. Art Ridzik", "id": 26485, "credit_id": "52fe4510c3a36847f80ba335", "cast_id": 15, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 1}, {"name": "Ed O'Ross", "character": "Viktor Rostavili", "id": 8658, "credit_id": "52fe4510c3a36847f80ba345", "cast_id": 19, "profile_path": "/jEMZrrxJ0DBQwyFF5tVl3WN4c8A.jpg", "order": 2}, {"name": "Peter Boyle", "character": "Cmdr. Lou Donnelly", "id": 1039, "credit_id": "52fe4510c3a36847f80ba339", "cast_id": 16, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 3}, {"name": "Laurence Fishburne", "character": "Lt. Charlie Stobbs", "id": 2975, "credit_id": "52fe4510c3a36847f80ba33d", "cast_id": 17, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 4}, {"name": "Gina Gershon", "character": "Catherine Manzetti", "id": 11150, "credit_id": "52fe4510c3a36847f80ba349", "cast_id": 20, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 5}, {"name": "Brent Jennings", "character": "Abdul Elijah", "id": 84685, "credit_id": "52fe4510c3a36847f80ba341", "cast_id": 18, "profile_path": "/wkKnquYyWGT5ciIfgJAdy7tAxXX.jpg", "order": 6}, {"name": "Brion James", "character": "Streak", "id": 591, "credit_id": "53d833cd0e0a261c75000d51", "cast_id": 21, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 7}, {"name": "Peter Jason", "character": "TV Announcer", "id": 6916, "credit_id": "53d833e60e0a261c7b000d56", "cast_id": 22, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 8}, {"name": "Pruitt Taylor Vince", "character": "Night Clerk", "id": 3201, "credit_id": "53d834050e0a261c84000d3e", "cast_id": 23, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 9}, {"name": "Kurt Fuller", "character": "Detective", "id": 29685, "credit_id": "53d83a7a0e0a261c87000d95", "cast_id": 24, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 10}, {"name": "Mike Hagerty", "character": "Pat Nunn", "id": 15105, "credit_id": "53d83b1e0e0a261c72000e49", "cast_id": 25, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 11}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba2e5", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 6.1, "runtime": 104}, "9607": {"poster_path": "/cUKVICyZqBDuxlCJEut5vk5zNUT.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20844907, "overview": "Mario and Luigi, plumbers from Brooklyn, find themselves in an alternate universe where evolved dinosaurs live in hi-tech squalor. They're the only hope to save our universe from invasion by the dino dictator, Koopa.", "video": false, "id": 9607, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Super Mario Bros.", "tagline": "This Ain't No Game.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108255", "adult": false, "backdrop_path": "/zZySRjSEulrcX3V0jD78mdVXB9t.jpg", "production_companies": [{"name": "Allied Filmmakers", "id": 1755}, {"name": "Cinergi Pictures Entertainment", "id": 1504}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Nintendo", "id": 12288}, {"name": "Walt Disney", "id": 5888}], "release_date": "1993-05-27", "popularity": 0.465743534459545, "original_title": "Super Mario bros.", "budget": 42000000, "cast": [{"name": "Bob Hoskins", "character": "Mario Mario", "id": 382, "credit_id": "52fe4510c3a36847f80ba52d", "cast_id": 11, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Luigi Mario", "id": 5723, "credit_id": "52fe4510c3a36847f80ba531", "cast_id": 12, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "King Koopa", "id": 2778, "credit_id": "52fe4510c3a36847f80ba535", "cast_id": 13, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Samantha Mathis", "character": "Princess Daisy", "id": 20767, "credit_id": "52fe4510c3a36847f80ba539", "cast_id": 14, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 3}], "directors": [{"name": "Annabel Jankel", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba4f3", "profile_path": "/t7mhYWKHHjG5gQUB7gq9oyE3Z5y.jpg", "id": 58164}, {"name": "Rocky Morton", "department": "Directing", "job": "Director", "credit_id": "52fe4510c3a36847f80ba4f9", "profile_path": "/neGDKDOkpWJ5mmEzn3YaEp1mmWn.jpg", "id": 58165}], "vote_average": 4.4, "runtime": 104}, "1417": {"poster_path": "/t0TDsqbCTgSi0AL7k4baZrOYYhi.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 83258226, "overview": "Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.", "video": false, "id": 1417, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10752, "name": "War"}], "title": "Pan's Labyrinth", "tagline": "What happens when make-believe believes it's real?", "vote_count": 789, "homepage": "http://www.panslabyrinth.com", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0457430", "adult": false, "backdrop_path": "/5zpVFIkIrtGyBjBFeMFuQ416LLc.jpg", "production_companies": [{"name": "Tequila Gang", "id": 11628}, {"name": "Estudios Picasso", "id": 2029}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Esperanto Filmoj", "id": 7470}, {"name": "Sententia Entertainment", "id": 12231}], "release_date": "2006-05-27", "popularity": 0.97007097333547, "original_title": "El laberinto del fauno", "budget": 19000000, "cast": [{"name": "Ivana Baquero", "character": "Ofelia", "id": 16970, "credit_id": "52fe42f5c3a36847f802fb53", "cast_id": 1, "profile_path": "/e1yKycDkXhiA3OUjeqWp2nlwvZx.jpg", "order": 0}, {"name": "Maribel Verd\u00fa", "character": "Mercedes", "id": 16971, "credit_id": "52fe42f5c3a36847f802fb57", "cast_id": 2, "profile_path": "/km7HP0yXLBZkPN9EFTbMJBCIsHs.jpg", "order": 1}, {"name": "Sergi L\u00f3pez", "character": "Capit\u00e1n Vidal", "id": 16972, "credit_id": "52fe42f5c3a36847f802fb5b", "cast_id": 3, "profile_path": "/dH5jWen7KE4N3QuNSpeGOVAdIOT.jpg", "order": 2}, {"name": "Doug Jones", "character": "Fauno / Pale Man", "id": 17005, "credit_id": "52fe42f5c3a36847f802fc01", "cast_id": 31, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 3}, {"name": "Ariadna Gil", "character": "Carmen", "id": 17006, "credit_id": "52fe42f5c3a36847f802fc05", "cast_id": 32, "profile_path": "/rCxr274gYjgtHMjXaEZxvXkaqig.jpg", "order": 4}, {"name": "\u00c1lex Angulo", "character": "Dr. Ferreiro", "id": 3813, "credit_id": "52fe42f5c3a36847f802fc09", "cast_id": 33, "profile_path": "/6wnu91irLrsgy5nF3IxRoH2qKfl.jpg", "order": 5}, {"name": "Roger Casamajor", "character": "Pedro", "id": 17007, "credit_id": "52fe42f5c3a36847f802fc0d", "cast_id": 34, "profile_path": "/72Sn6Ztaz9ieaQkkgdsJeiuuG0l.jpg", "order": 6}, {"name": "Manolo Solo", "character": "Garc\u00e9s", "id": 592709, "credit_id": "52fe42f5c3a36847f802fc11", "cast_id": 35, "profile_path": "/vIYNmEhVT2b1SP9TTrIdyZzkm1N.jpg", "order": 7}, {"name": "C\u00e9sar Vea", "character": "Serrano", "id": 25219, "credit_id": "52fe42f5c3a36847f802fc15", "cast_id": 36, "profile_path": "/9zISZnahPhtqmqv9yLI04S1uXFi.jpg", "order": 8}, {"name": "Ivan Massagu\u00e9", "character": "El Tarta", "id": 31422, "credit_id": "52fe42f5c3a36847f802fc19", "cast_id": 37, "profile_path": "/n8yubYemSiZq5PB0AebjCDmHnWr.jpg", "order": 9}, {"name": "Gonzalo Uriarte", "character": "Franc\u00e9s", "id": 116071, "credit_id": "52fe42f5c3a36847f802fc1d", "cast_id": 38, "profile_path": null, "order": 10}, {"name": "Eusebio L\u00e1zaro", "character": "Padre", "id": 106707, "credit_id": "52fe42f5c3a36847f802fc21", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Francisco Vidal", "character": "Sacerdote", "id": 1077942, "credit_id": "52fe42f5c3a36847f802fc25", "cast_id": 40, "profile_path": null, "order": 12}, {"name": "Juanjo Cucal\u00f3n", "character": "Alcalde", "id": 1077944, "credit_id": "52fe42f5c3a36847f802fc29", "cast_id": 41, "profile_path": "/cpyKgAbjBYw4E3R66rKHvaIxcX9.jpg", "order": 13}, {"name": "Lina Mira", "character": "Esposa del alcalde", "id": 1077945, "credit_id": "52fe42f5c3a36847f802fc2d", "cast_id": 42, "profile_path": null, "order": 14}, {"name": "Mario Zorrilla", "character": "Jefe de botiqu\u00edn", "id": 588132, "credit_id": "52fe42f5c3a36847f802fc31", "cast_id": 43, "profile_path": null, "order": 15}, {"name": "Sebasti\u00e1n Haro", "character": "Capit\u00e1n Guardia Civil", "id": 1077947, "credit_id": "52fe42f5c3a36847f802fc35", "cast_id": 44, "profile_path": null, "order": 16}, {"name": "Mila Espiga", "character": "Esposa del doctor", "id": 1077948, "credit_id": "52fe42f5c3a36847f802fc39", "cast_id": 45, "profile_path": null, "order": 17}, {"name": "Pepa Pedroche", "character": "Conchita", "id": 963251, "credit_id": "52fe42f5c3a36847f802fc3d", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Lal\u00e1 Gat\u00f3o", "character": "Jacinta", "id": 1077950, "credit_id": "52fe42f5c3a36847f802fc41", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Ana S\u00e1ez", "character": "Paz", "id": 1077952, "credit_id": "52fe42f5c3a36847f802fc45", "cast_id": 48, "profile_path": null, "order": 20}, {"name": "Chani Mart\u00edn", "character": "Trigo", "id": 560248, "credit_id": "52fe42f5c3a36847f802fc49", "cast_id": 49, "profile_path": null, "order": 21}, {"name": "Milo Taboada", "character": "Joven", "id": 1077953, "credit_id": "52fe42f5c3a36847f802fc4d", "cast_id": 50, "profile_path": null, "order": 22}, {"name": "Fernando Albizu", "character": "Maquinista", "id": 100905, "credit_id": "52fe42f5c3a36847f802fc51", "cast_id": 51, "profile_path": "/uJlQUHaLj7zLtAv0gMZa7SrYzMg.jpg", "order": 23}, {"name": "Pedro G. Marzo", "character": "Encargado", "id": 1077954, "credit_id": "52fe42f5c3a36847f802fc55", "cast_id": 52, "profile_path": null, "order": 24}, {"name": "Jos\u00e9 Luis Torrijo", "character": "Sargento Bayona", "id": 3653, "credit_id": "52fe42f5c3a36847f802fc59", "cast_id": 53, "profile_path": "/2VtdDBIXVEJFvVA7tR1ns9YK1EE.jpg", "order": 25}, {"name": "\u00cd\u00f1igo Garc\u00e9s", "character": "Joven Guerrillero", "id": 17096, "credit_id": "52fe42f5c3a36847f802fc5d", "cast_id": 54, "profile_path": null, "order": 26}, {"name": "Fernando Tielve", "character": "Joven Guerrillero 2", "id": 17095, "credit_id": "52fe42f5c3a36847f802fc61", "cast_id": 55, "profile_path": "/tAc6E2bpJLW6Ig4XB9NnOIXFYeq.jpg", "order": 27}, {"name": "Federico Luppi", "character": "Rey", "id": 17094, "credit_id": "52fe42f5c3a36847f802fc65", "cast_id": 56, "profile_path": "/aKQBkLnh0RZNPYqO80itGYuclLp.jpg", "order": 28}, {"name": "Chicho Campillo", "character": "Anciano", "id": 1077955, "credit_id": "52fe42f5c3a36847f802fc69", "cast_id": 57, "profile_path": null, "order": 29}, {"name": "Pablo Ad\u00e1n", "character": "Narrator / Fauno (voice)", "id": 1077956, "credit_id": "52fe42f5c3a36847f802fc6d", "cast_id": 58, "profile_path": null, "order": 30}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe42f5c3a36847f802fb61", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 7.4, "runtime": 118}, "9610": {"poster_path": "/qMNhwerC2kjj9tKR127hRh8K9WL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31042035, "overview": "Another evil threatens to conquer the world, as Conan journeys on a search to find a magic crystal before the sorcerer Toth Amon can use it. He is also required to rescue the Princess Jehnna for the treacherous Queen Taramis who plans to betray Conan and rule the world.", "video": false, "id": 9610, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Conan the Destroyer", "tagline": "The most powerful legend of all is back in a new adventure.", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aHgQZRJgOaZWOqnnO5dc2vWkHOu.jpg", "poster_path": "/vguM8mJmArTn9ePTm8fK0Ryt7EI.jpg", "id": 43055, "name": "Conan the Barbarian Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087078", "adult": false, "backdrop_path": "/8MWJJ8WI3UE0lnHfO98EuXE0owb.jpg", "production_companies": [{"name": "De Laurentiis Entertainment Group", "id": 499}, {"name": "Universal Pictures", "id": 33}], "release_date": "1984-06-29", "popularity": 0.983415807076359, "original_title": "Conan the Destroyer", "budget": 18000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Conan", "id": 1100, "credit_id": "52fe4511c3a36847f80ba66f", "cast_id": 8, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Grace Jones", "character": "Zula", "id": 10661, "credit_id": "52fe4511c3a36847f80ba673", "cast_id": 9, "profile_path": "/8MBh8TXQYoEGHbyf7XKRbXH7kTA.jpg", "order": 1}, {"name": "Wilt Chamberlain", "character": "Bombaata", "id": 58181, "credit_id": "52fe4511c3a36847f80ba677", "cast_id": 10, "profile_path": "/lRFWkKyTsQGdSYx8HNq7g8q7lCn.jpg", "order": 2}, {"name": "Tracey Walter", "character": "Malak", "id": 3801, "credit_id": "52fe4511c3a36847f80ba67b", "cast_id": 11, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 3}, {"name": "Mako", "character": "Akiro 'The Wizard'", "id": 10134, "credit_id": "52fe4511c3a36847f80ba67f", "cast_id": 12, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 4}, {"name": "Sarah Douglas", "character": "Queen Taramis", "id": 31364, "credit_id": "52fe4511c3a36847f80ba683", "cast_id": 13, "profile_path": "/als2MT3X28mDol3e5uEy25agNRM.jpg", "order": 5}, {"name": "Olivia d'Abo", "character": "Princess Jehnna (as Olivia D'Abo)", "id": 46423, "credit_id": "52fe4511c3a36847f80ba687", "cast_id": 14, "profile_path": "/ffeCJwgPXSrurcfFrjEyvCXsPUz.jpg", "order": 6}, {"name": "Pat Roach", "character": "Man Ape / Toth-Amon", "id": 10942, "credit_id": "52fe4511c3a36847f80ba68b", "cast_id": 15, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 7}, {"name": "Jeff Corey", "character": "Grand Vizier", "id": 9596, "credit_id": "52fe4511c3a36847f80ba68f", "cast_id": 16, "profile_path": "/jlc4DLs99u7f9HOoco3dv5DBAoJ.jpg", "order": 8}, {"name": "Sven-Ole Thorsen", "character": "Togra (as Sven Ole Thorsen)", "id": 20761, "credit_id": "52fe4511c3a36847f80ba693", "cast_id": 17, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 9}], "directors": [{"name": "Richard Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe4511c3a36847f80ba647", "profile_path": "/yofiXdiD2AaK2M4RgXQFeO8qQgD.jpg", "id": 2087}], "vote_average": 6.3, "runtime": 103}, "1422": {"poster_path": "/tGLO9zw5ZtCeyyEWgbYGgsFxC6i.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 289847354, "overview": "To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise in Martin Scorsese's multiple Oscar-winning crime thriller. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.", "video": false, "id": 1422, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Departed", "tagline": "Lies. Betrayal. Sacrifice. How far will you take it?", "vote_count": 1461, "homepage": "http://thedeparted.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0407887", "adult": false, "backdrop_path": "/8Od5zV7Q7zNOX0y9tyNgpTmoiGA.jpg", "production_companies": [{"name": "Plan B Entertainment", "id": 45778}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Media Asia Films", "id": 5552}, {"name": "Warner Bros.", "id": 6194}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}], "release_date": "2006-11-09", "popularity": 2.24730731202757, "original_title": "The Departed", "budget": 90000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Billy", "id": 6193, "credit_id": "52fe42f5c3a36847f802fecf", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Matt Damon", "character": "Colin", "id": 1892, "credit_id": "52fe42f5c3a36847f802ff1f", "cast_id": 25, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Jack Nicholson", "character": "Costello", "id": 514, "credit_id": "52fe42f5c3a36847f802fed9", "cast_id": 6, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 2}, {"name": "Mark Wahlberg", "character": "Dignam", "id": 13240, "credit_id": "52fe42f5c3a36847f802fedd", "cast_id": 7, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Cpt. Queenan", "id": 8349, "credit_id": "52fe42f5c3a36847f802ff23", "cast_id": 26, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "Ray Winstone", "character": "Mr. French", "id": 5538, "credit_id": "52fe42f5c3a36847f802fee7", "cast_id": 10, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 5}, {"name": "Vera Farmiga", "character": "Madolyn", "id": 21657, "credit_id": "52fe42f5c3a36847f802ff17", "cast_id": 23, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 6}, {"name": "Anthony Anderson", "character": "Brown", "id": 18471, "credit_id": "52fe42f5c3a36847f802feeb", "cast_id": 11, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 7}, {"name": "Alec Baldwin", "character": "Ellerby", "id": 7447, "credit_id": "52fe42f5c3a36847f802feef", "cast_id": 12, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 8}, {"name": "Kevin Corrigan", "character": "Cousin Sean", "id": 18472, "credit_id": "52fe42f5c3a36847f802fef3", "cast_id": 13, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 9}, {"name": "James Badge Dale", "character": "Barrigan", "id": 18473, "credit_id": "52fe42f5c3a36847f802fef7", "cast_id": 14, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 10}, {"name": "David O'Hara", "character": "Fitzy", "id": 2482, "credit_id": "52fe42f5c3a36847f802ff1b", "cast_id": 24, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 11}, {"name": "Robert Wahlberg", "character": "Lazio", "id": 4733, "credit_id": "52fe42f5c3a36847f802fefb", "cast_id": 16, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 12}, {"name": "Kristen Dalton", "character": "Gwen", "id": 18475, "credit_id": "52fe42f5c3a36847f802feff", "cast_id": 17, "profile_path": "/hJE14DbGUWXVQHUxdIClpEcUfFo.jpg", "order": 13}, {"name": "Thomas B. Duffy", "character": "Govenor", "id": 18476, "credit_id": "52fe42f5c3a36847f802ff03", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Dick Hughes", "character": "Uncle Edward", "id": 18477, "credit_id": "52fe42f5c3a36847f802ff07", "cast_id": 19, "profile_path": "/A59muVUvw3dejk3O34JXLLrR9Nk.jpg", "order": 15}, {"name": "Chance Kelly", "character": "Exam Instructor", "id": 17194, "credit_id": "52fe42f5c3a36847f802ff51", "cast_id": 34, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 16}, {"name": "Larry Mitchell", "character": "Younger Priest", "id": 1182724, "credit_id": "55055f01c3a3680581000f2c", "cast_id": 81, "profile_path": "/iTdRRujnU2H6axxxL4iaefI3mlw.jpg", "order": 17}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe42f5c3a36847f802fecb", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.5, "runtime": 151}, "9615": {"poster_path": "/7zcstia8qDvxLhAQD80uLAlCsL9.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 158468292, "overview": "In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing", "video": false, "id": 9615, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Fast and the Furious: Tokyo Drift", "tagline": "On the streets of Tokyo, speed needs no translation...", "vote_count": 592, "homepage": "http://www.thefastandthefurious3.com/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0463985", "adult": false, "backdrop_path": "/kOZbGxeGMJ4Y6bxv8eOadFt8QLF.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-06-03", "popularity": 2.21626167646495, "original_title": "The Fast and the Furious: Tokyo Drift", "budget": 85000000, "cast": [{"name": "Lucas Black", "character": "Sean Boswell", "id": 155, "credit_id": "52fe4511c3a36847f80ba9f3", "cast_id": 12, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 0}, {"name": "Shad Moss", "character": "Twinkie", "id": 58197, "credit_id": "52fe4511c3a36847f80ba9f7", "cast_id": 13, "profile_path": "/A1rHY9B5R9cIQshClcJxBYINg1m.jpg", "order": 1}, {"name": "Nathalie Kelley", "character": "Neela", "id": 116277, "credit_id": "52fe4511c3a36847f80ba9fb", "cast_id": 14, "profile_path": "/uXWUjkFD3ZSp9wF5rN74YhfFJOH.jpg", "order": 2}, {"name": "Brian Tee", "character": "D.K.", "id": 116278, "credit_id": "52fe4511c3a36847f80ba9ff", "cast_id": 15, "profile_path": "/rKo9U4Swi0t4IqUKOU0bhl5BuiZ.jpg", "order": 3}, {"name": "Sung Kang", "character": "Han", "id": 61697, "credit_id": "52fe4511c3a36847f80baa03", "cast_id": 16, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 4}, {"name": "Brian Goodman", "character": "Major Boswell", "id": 80978, "credit_id": "52fe4511c3a36847f80baa07", "cast_id": 17, "profile_path": "/864K4ai3ZNNggLdjgOZ9jQSWn7y.jpg", "order": 5}, {"name": "Sonny Chiba", "character": "Uncle Kamata", "id": 2537, "credit_id": "52fe4511c3a36847f80baa0b", "cast_id": 18, "profile_path": "/9VduIlJK3bujNX0Gv0WvZ2cFxrK.jpg", "order": 6}, {"name": "Leonardo Nam", "character": "Morimoto", "id": 24200, "credit_id": "52fe4511c3a36847f80baa0f", "cast_id": 19, "profile_path": "/AasHyXC1m9Mwn21gFbZgVeID5Gd.jpg", "order": 7}, {"name": "Jason Tobin", "character": "Earl", "id": 162367, "credit_id": "52fe4511c3a36847f80baa13", "cast_id": 20, "profile_path": "/th2wnUDIKwWMrxryp49b3Pssp7F.jpg", "order": 8}, {"name": "Keiko Kitagawa", "character": "Reiko", "id": 120923, "credit_id": "52fe4511c3a36847f80baa17", "cast_id": 21, "profile_path": "/vKvOy6JnNoOUNWzXwybnJYYpUjI.jpg", "order": 9}, {"name": "Alden Villaverde", "character": "Alden (as Alden Ray)", "id": 1000089, "credit_id": "52fe4511c3a36847f80baa1b", "cast_id": 22, "profile_path": "/4H6rpvCUP9Xqgx7kJfWsmsRfBRq.jpg", "order": 10}, {"name": "Koji Kataoka", "character": "Yakuza Pinkie", "id": 62766, "credit_id": "52fe4511c3a36847f80baa1f", "cast_id": 23, "profile_path": "/76SbfNpDX6ZPfOYOIobHEv4BJ5x.jpg", "order": 11}, {"name": "Kevin Ryan", "character": "Bully", "id": 201914, "credit_id": "52fe4511c3a36847f80baa23", "cast_id": 24, "profile_path": "/1oThx1R7LEXyA2tzGor2icVK834.jpg", "order": 12}, {"name": "Lynda Boyd", "character": "Ms. Boswell", "id": 20188, "credit_id": "52fe4511c3a36847f80baa27", "cast_id": 25, "profile_path": "/cZWUVqDrMpQbNOuZAnXuiprU994.jpg", "order": 13}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "544316b1c3a3683e01003444", "cast_id": 26, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 14}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe4511c3a36847f80ba9b3", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 6.1, "runtime": 104}, "9618": {"poster_path": "/3Yi0KIsiFBzPU2MM1vuXzn2x5aE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63408614, "overview": "Ray Tango and Gabriel Cash are narcotics detectives who, while both being extremely successful, can't stand each other. Crime Lord Yves Perret, furious at the loss of income that Tango and Cash have caused him, frames the two for murder. Caught with the murder weapon on the scene of the crime, the two have no alibi. Thrown into prison with most of the criminals they helped convict, it appears that they are going to have to trust each other if they are to clear their names and catch the evil Perret.", "video": false, "id": 9618, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Tango & Cash", "tagline": "Two of L.A.'s top rival cops are going to have to work together... Even if it kills them.", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098439", "adult": false, "backdrop_path": "/79ZSbFqkGcGipyjh5EbTtkmJLlA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1989-12-22", "popularity": 0.76914639445077, "original_title": "Tango & Cash", "budget": 55000000, "cast": [{"name": "Sylvester Stallone", "character": "Raymond 'Ray' Tango", "id": 16483, "credit_id": "52fe4512c3a36847f80bab5d", "cast_id": 8, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Gabriel 'Gabe' Cash", "id": 6856, "credit_id": "52fe4512c3a36847f80bab61", "cast_id": 9, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Teri Hatcher", "character": "Katherine 'Kiki' Tango", "id": 10742, "credit_id": "52fe4512c3a36847f80bab65", "cast_id": 10, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 2}, {"name": "Jack Palance", "character": "Yves Perret", "id": 3785, "credit_id": "52fe4512c3a36847f80bab69", "cast_id": 11, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 3}, {"name": "Brion James", "character": "Requin", "id": 591, "credit_id": "52fe4512c3a36847f80bab6d", "cast_id": 12, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 4}, {"name": "James Hong", "character": "Quan", "id": 20904, "credit_id": "52fe4512c3a36847f80bab71", "cast_id": 13, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 5}, {"name": "Robert Z'Dar", "character": "Face", "id": 80579, "credit_id": "52fe4512c3a36847f80bab75", "cast_id": 14, "profile_path": "/xJYVX9TIjwrj67WYwtzV67inYYF.jpg", "order": 6}, {"name": "Michael J. Pollard", "character": "Owen", "id": 6451, "credit_id": "52fe4512c3a36847f80bab79", "cast_id": 15, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 7}, {"name": "Philip Tan", "character": "Chinese Gunman", "id": 702, "credit_id": "52fe4512c3a36847f80bab7d", "cast_id": 16, "profile_path": "/dJP4kbCF2f8dg88BROfRukd67H1.jpg", "order": 8}, {"name": "Roy Brocksmith", "character": "Fed. Agent Davis", "id": 12888, "credit_id": "52fe4512c3a36847f80bab81", "cast_id": 17, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 9}, {"name": "Marc Alaimo", "character": "Lopez", "id": 160474, "credit_id": "52fe4512c3a36847f80bab85", "cast_id": 18, "profile_path": "/unSxEvj16onUK5FJQYmL1k25WLX.jpg", "order": 10}, {"name": "Lewis Arquette", "character": "Wyler", "id": 75465, "credit_id": "52fe4512c3a36847f80bab89", "cast_id": 19, "profile_path": "/uPlzI6d6zjJ8epskb5GepEtkNJF.jpg", "order": 11}, {"name": "Edward Bunker", "character": "Capt. Holmes (as Eddie Bunker)", "id": 6939, "credit_id": "52fe4512c3a36847f80bab8d", "cast_id": 20, "profile_path": "/kQNf8eN5qpWXAhNUrnUnWtBd3Eu.jpg", "order": 12}], "directors": [{"name": "Andrei Konchalovsky", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bab35", "profile_path": "/6RzqNCx3ZaFCrVN7cfpB0trhdEQ.jpg", "id": 58728}, {"name": "Albert Magnoli", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bab3b", "profile_path": "/cA8hbVAGaitbHbxNWvZiaXJXQHi.jpg", "id": 58729}], "vote_average": 6.1, "runtime": 104}, "1427": {"poster_path": "/zC9JHS6NlkJKPYFxOOqBl7fQCjT.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132180323, "overview": "Jean-Baptiste Grenouille, born in the stench of eighteenth century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. His work, however, takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.", "video": false, "id": 1427, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Perfume: The Story of a Murderer", "tagline": "Based on the best-selling novel", "vote_count": 313, "homepage": "http://www.parfum.film.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396171", "adult": false, "backdrop_path": "/crR71u5ptmoFW3sCFjAJnHGbYOk.jpg", "production_companies": [{"name": "Nouvelles \u00c9ditions de Films", "id": 751}, {"name": "Rising Star", "id": 1208}, {"name": "VIP Medienfonds 4", "id": 2116}, {"name": "CDavis-Films", "id": 2874}, {"name": "Ikiru Films", "id": 2875}], "release_date": "2006-10-18", "popularity": 0.828500251380433, "original_title": "Perfume: The Story of a Murderer", "budget": 50000000, "cast": [{"name": "Ben Whishaw", "character": "Jean-Baptiste Grenouille", "id": 17064, "credit_id": "52fe42f6c3a36847f8030117", "cast_id": 9, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 0}, {"name": "Simon Chandler", "character": "B\u00fcrgermeister von Grasse", "id": 16273, "credit_id": "52fe42f6c3a36847f803014b", "cast_id": 21, "profile_path": "/j30wLavbX35RxxtjvMvCNK8Exsw.jpg", "order": 1}, {"name": "David Calder", "character": "Bischof von Grasse", "id": 10779, "credit_id": "52fe42f6c3a36847f8030147", "cast_id": 20, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 2}, {"name": "Richard Felix", "character": "Magistrat", "id": 17079, "credit_id": "52fe42f6c3a36847f8030183", "cast_id": 35, "profile_path": null, "order": 3}, {"name": "Birgit Minichmayr", "character": "Grenouilles Mutter", "id": 8800, "credit_id": "52fe42f6c3a36847f8030173", "cast_id": 31, "profile_path": "/z2Jbpv9mgrioR9NcrraeavjIZXl.jpg", "order": 4}, {"name": "Sian Thomas", "character": "Madame Gaillard", "id": 17069, "credit_id": "52fe42f6c3a36847f8030153", "cast_id": 23, "profile_path": "/jI0TOejWhHQCkTwyMyDTmm74VmD.jpg", "order": 5}, {"name": "Michael Smiley", "character": "Aufseher", "id": 17078, "credit_id": "52fe42f6c3a36847f803017f", "cast_id": 34, "profile_path": "/muzJQpsKJ4srfVpyRa7qkrRYWSq.jpg", "order": 6}, {"name": "Alvaro Roque", "character": "Grenouille (5 Jahre)", "id": 17076, "credit_id": "52fe42f6c3a36847f8030177", "cast_id": 32, "profile_path": null, "order": 7}, {"name": "Franck Lefeuvre", "character": "Grenouille (12 Jahre)", "id": 17077, "credit_id": "52fe42f6c3a36847f803017b", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Sam Douglas", "character": "Grimal", "id": 17072, "credit_id": "52fe42f6c3a36847f8030163", "cast_id": 27, "profile_path": "/5ZcldKZ1PDmf2gzTL3LA671PNZL.jpg", "order": 9}, {"name": "Karoline Herfurth", "character": "Das Mirabellen-M\u00e4dchen", "id": 17067, "credit_id": "52fe42f6c3a36847f8030143", "cast_id": 19, "profile_path": "/8HVqhIaLQA3MOTO88Ncn6VOCzdp.jpg", "order": 10}, {"name": "Timothy Davies", "character": "Chenier", "id": 17071, "credit_id": "52fe42f6c3a36847f803015f", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Dustin Hoffman", "character": "Giuseppe Baldini", "id": 4483, "credit_id": "52fe42f6c3a36847f803011f", "cast_id": 12, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 12}, {"name": "Rachel Hurd-Wood", "character": "Laura", "id": 129050, "credit_id": "52fe42f6c3a36847f80301ed", "cast_id": 53, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 13}, {"name": "Alan Rickman", "character": "Richis", "id": 4566, "credit_id": "52fe42f6c3a36847f803011b", "cast_id": 11, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 14}, {"name": "Sara Forestier", "character": "Jeanne", "id": 17074, "credit_id": "52fe42f6c3a36847f803016b", "cast_id": 29, "profile_path": "/tzQklCMfzQYu3j7w8Q5TXp2EdeE.jpg", "order": 15}, {"name": "Corinna Harfouch", "character": "Madame Arnulfi", "id": 680, "credit_id": "52fe42f6c3a36847f8030157", "cast_id": 24, "profile_path": "/oEXqVyUnBLP1JxRVhpT6B3pIe37.jpg", "order": 16}, {"name": "Paul Berrondo", "character": "Dominique Drouot", "id": 17070, "credit_id": "52fe42f6c3a36847f803015b", "cast_id": 25, "profile_path": "/sDqq0jbs9QU0t82WeSiecQ31ssj.jpg", "order": 17}, {"name": "Joanna Griffiths", "character": "Marianne", "id": 17075, "credit_id": "52fe42f6c3a36847f803016f", "cast_id": 30, "profile_path": "/tRON81PYgDaoPt3S02e6j15U0ND.jpg", "order": 18}, {"name": "Jessica Schwarz", "character": "Natalie", "id": 17068, "credit_id": "52fe42f6c3a36847f803014f", "cast_id": 22, "profile_path": "/l4zJpkc9LMJGXPpcDEAcA1QWRq9.jpg", "order": 19}, {"name": "Harris Gordon", "character": "Marquis de Montesquieu", "id": 17073, "credit_id": "52fe42f6c3a36847f8030167", "cast_id": 28, "profile_path": "/3f092nXiIR1bpRBBwWTYNvb2ndC.jpg", "order": 20}, {"name": "Enric Arquimbau", "character": "Executioner", "id": 17066, "credit_id": "52fe42f6c3a36847f8030123", "cast_id": 13, "profile_path": "/niXxoz3K6K5Pfcmou6s9etbSdiF.jpg", "order": 21}, {"name": "John Hurt", "character": "Narrator (voice)", "id": 5049, "credit_id": "52fe42f6c3a36847f8030127", "cast_id": 14, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 22}], "directors": [{"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe42f6c3a36847f80300e9", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 7.0, "runtime": 147}, "1428": {"poster_path": "/j3Mz1jaM3MVr5K1Ijh5D2T93VF2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41825802, "overview": "Hitman \"El Mariachi\" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.", "video": false, "id": 1428, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Once Upon a Time in Mexico", "tagline": "The Time Has Come.", "vote_count": 161, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6p1OzuIKWnTDfDea7IpB9xra5J.jpg", "poster_path": "/4UMPWCj3MuHLCR2vVPPNCxU6RDV.jpg", "id": 9649, "name": "Mexico Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0285823", "adult": false, "backdrop_path": "/vQi6zDyPoX3bq9YHazcOojXkAKP.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2003-09-11", "popularity": 0.431049547327576, "original_title": "Once Upon a Time in Mexico", "budget": 29000000, "cast": [{"name": "Antonio Banderas", "character": "El Mariachi", "id": 3131, "credit_id": "52fe42f6c3a36847f8030213", "cast_id": 2, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Carolina", "id": 3136, "credit_id": "52fe42f6c3a36847f803020f", "cast_id": 1, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Sands", "id": 85, "credit_id": "52fe42f6c3a36847f8030217", "cast_id": 3, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Eva Mendes", "character": "Ajedrez", "id": 8170, "credit_id": "52fe42f6c3a36847f8030221", "cast_id": 5, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 3}, {"name": "Mickey Rourke", "character": "Billy", "id": 2295, "credit_id": "52fe42f6c3a36847f8030225", "cast_id": 6, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 4}, {"name": "Danny Trejo", "character": "Cucuy", "id": 11160, "credit_id": "52fe42f6c3a36847f8030229", "cast_id": 7, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 5}, {"name": "Enrique Iglesias", "character": "Lorenzo", "id": 20231, "credit_id": "52fe42f6c3a36847f803022d", "cast_id": 8, "profile_path": "/ajXHL0mFwuJUXdNTeyEX9d1NFlX.jpg", "order": 6}, {"name": "Cheech Marin", "character": "Belini", "id": 11159, "credit_id": "52fe42f6c3a36847f8030231", "cast_id": 9, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 7}, {"name": "Willem Dafoe", "character": "Barillo", "id": 5293, "credit_id": "52fe42f6c3a36847f8030247", "cast_id": 13, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 8}, {"name": "Marco Leonardi", "character": "Fideo", "id": 27643, "credit_id": "52fe42f6c3a36847f803024b", "cast_id": 14, "profile_path": "/vyBWitXBSfFJpJRff14GrIZimta.jpg", "order": 9}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe42f6c3a36847f803021d", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.0, "runtime": 102}, "1429": {"poster_path": "/fxQnUISjGYewZzpbbu7o5LfEPpJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13060843, "overview": "The filmed adaptation from the David Benioff's novel of the same name. Set in New York, a convicted drug dealer named Monty has one day left of freedom before he is sent to prison. Anger, blame, frustration, betrayal, guilt and loneliness are themes on this last day of friends, family, parties, saying goodbye, and setting things straight. A Spike Lee joint.", "video": false, "id": 1429, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "25th Hour", "tagline": "This life was so close to never happening.", "vote_count": 141, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307901", "adult": false, "backdrop_path": "/9chIFrNEp03mJTFQWFCcx6yeVtE.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "40 Acres & A Mule Filmworks", "id": 4319}], "release_date": "2002-12-16", "popularity": 0.483584163934132, "original_title": "25th Hour", "budget": 15000000, "cast": [{"name": "Edward Norton", "character": "Monty Brogan", "id": 819, "credit_id": "52fe42f6c3a36847f8030283", "cast_id": 1, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Jacob Elinsky", "id": 1233, "credit_id": "52fe42f6c3a36847f8030287", "cast_id": 3, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Barry Pepper", "character": "Frank Slaughtery", "id": 12834, "credit_id": "52fe42f6c3a36847f8030297", "cast_id": 6, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 2}, {"name": "Rosario Dawson", "character": "Naturelle Riviera", "id": 5916, "credit_id": "52fe42f6c3a36847f803029b", "cast_id": 7, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 3}, {"name": "Anna Paquin", "character": "Mary D'Annuzio", "id": 10690, "credit_id": "52fe42f6c3a36847f803029f", "cast_id": 8, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 4}, {"name": "Brian Cox", "character": "James Brogan", "id": 1248, "credit_id": "52fe42f6c3a36847f80302a3", "cast_id": 9, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 5}, {"name": "Tony Siragusa", "character": "Kostya Novotny", "id": 27036, "credit_id": "52fe42f6c3a36847f80302a7", "cast_id": 10, "profile_path": "/sQtXDLYlQPYlcVOM9VDjrJzoC5m.jpg", "order": 6}, {"name": "Levan Uchaneishvili", "character": "Uncle Nikolai", "id": 27037, "credit_id": "52fe42f6c3a36847f80302ab", "cast_id": 11, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 7}, {"name": "Misha Kuznetsov", "character": "Senka Valghobek", "id": 1255887, "credit_id": "53efe03ac3a3685ae2001801", "cast_id": 27, "profile_path": "/zmchQa0Y2K2xMgIDDr42aGhG50e.jpg", "order": 8}, {"name": "Isiah Whitlock, Jr.", "character": "Agent Flood", "id": 17490, "credit_id": "53efe078c3a3685ae7001955", "cast_id": 28, "profile_path": "/yLaKPYOvrea7dU0Xa86SY1WN7Gc.jpg", "order": 9}, {"name": "Michael Genet", "character": "Agent Cunningham", "id": 51865, "credit_id": "53efe09ac3a3685add0017dd", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Patrice O'Neal", "character": "Khari", "id": 543256, "credit_id": "53efe1000e0a2675af001f64", "cast_id": 30, "profile_path": "/jvck3EQU2foaaEz7CdlaP3RaCNM.jpg", "order": 11}, {"name": "Al Palagonia", "character": "Salvatore Dominick", "id": 122546, "credit_id": "53efe1290e0a2675bc001e46", "cast_id": 31, "profile_path": "/d8UrrQsxM9Bb7Vjk6RC6Ejjc5Ib.jpg", "order": 12}, {"name": "Aaron Stanford", "character": "Marcuse", "id": 11022, "credit_id": "52fe42f6c3a36847f8030301", "cast_id": 26, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 13}, {"name": "Dania Ramirez", "character": "Daphne", "id": 37046, "credit_id": "52fe42f6c3a36847f80302fd", "cast_id": 25, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 14}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe42f6c3a36847f80302f9", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 7.0, "runtime": 135}, "9626": {"poster_path": "/lvRlHJeMAYlUzSD8cebfIfNOhyl.jpg", "production_countries": [{"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6948633, "overview": "The tyrant Gedren seeks the total power in a world of barbarism. She raids the city Hablac and kills the keeper of a talisman that gives her great power. Red Sonja, sister of the keeper, sets out with her magic sword to overthrow Gedren.", "video": false, "id": 9626, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Red Sonja", "tagline": "A woman and a warrior that became a legend.", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aHgQZRJgOaZWOqnnO5dc2vWkHOu.jpg", "poster_path": "/vguM8mJmArTn9ePTm8fK0Ryt7EI.jpg", "id": 43055, "name": "Conan the Barbarian Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089893", "adult": false, "backdrop_path": "/kiFGR7UkelbpZGF64jkD6KgkoLR.jpg", "production_companies": [{"name": "MGM", "id": 5899}], "release_date": "1985-07-03", "popularity": 0.663316349202547, "original_title": "Red Sonja", "budget": 17900000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Kalidor", "id": 1100, "credit_id": "52fe4513c3a36847f80baf77", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Brigitte Nielsen", "character": "Red Sonja", "id": 921, "credit_id": "52fe4513c3a36847f80baf7b", "cast_id": 2, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 1}, {"name": "Sandahl Bergman", "character": "Queen Gedren", "id": 45378, "credit_id": "52fe4513c3a36847f80baf7f", "cast_id": 3, "profile_path": "/autibegxGq7oVvR5DGfEQL3ARoE.jpg", "order": 2}, {"name": "Paul L. Smith", "character": "Falkon", "id": 39782, "credit_id": "52fe4513c3a36847f80baf83", "cast_id": 4, "profile_path": "/1NZXecko55r4vchJkUAshliIctS.jpg", "order": 3}, {"name": "Ernie Reyes, Jr.", "character": "Prince Tarn", "id": 58210, "credit_id": "52fe4513c3a36847f80baf87", "cast_id": 5, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 4}], "directors": [{"name": "Richard Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe4513c3a36847f80baf8d", "profile_path": "/yofiXdiD2AaK2M4RgXQFeO8qQgD.jpg", "id": 2087}], "vote_average": 5.8, "runtime": 89}, "288158": {"poster_path": "/4YG59hNg5CniY7hSsVJTuBmKLq6.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "40 years after the first haunting at Eel Marsh House, a group of children evacuated from WWII London arrive, awakening the house's darkest inhabitant.", "video": false, "id": 288158, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Woman in Black 2: Angel of Death", "tagline": "She Never Left", "vote_count": 66, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/aWMxfo5LEWkL5o4xpQcLVsbcmNp.jpg", "id": 315560, "name": "The Woman in Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2339741", "adult": false, "backdrop_path": "/wXo71vDPUxRXFeNjHcthd57cpbt.jpg", "production_companies": [{"name": "Vertigo Entertainment", "id": 829}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Alliance Films", "id": 2514}, {"name": "Da Vinci Media Ventures", "id": 40107}, {"name": "Hammer Film Productions", "id": 1314}, {"name": "Talisman Productions", "id": 8989}], "release_date": "2014-12-30", "popularity": 1.42688818353079, "original_title": "The Woman in Black 2: Angel of Death", "budget": 0, "cast": [{"name": "Helen McCrory", "character": "Jean Hogg", "id": 15737, "credit_id": "543ec399c3a3684fe90000d7", "cast_id": 4, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 2}, {"name": "Jeremy Irvine", "character": "Harry Burnstow", "id": 225692, "credit_id": "543ec3bd0e0a2667450000e6", "cast_id": 5, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 3}, {"name": "Phoebe Fox", "character": "Eve Parkins", "id": 1320609, "credit_id": "543ec3c90e0a2667560000ef", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Ned Dennehy", "character": "Old Hermit Jacob", "id": 63362, "credit_id": "543ec3d3c3a3684fe20000af", "cast_id": 7, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 5}, {"name": "Adrian Rawlins", "character": "Dr. Rhodes", "id": 1643, "credit_id": "543ec3df0e0a2667420000c7", "cast_id": 8, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 6}, {"name": "Leanne Best", "character": "Woman In Black", "id": 1370630, "credit_id": "543ec3eac3a3684fe20000b2", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Oaklee Pendergast", "character": "Edward", "id": 1207881, "credit_id": "543ec636c3a3684fe9000111", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Leilah de Meza", "character": "Ruby", "id": 1374336, "credit_id": "543ec640c3a3684fda00012b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Amelia Pidgeon", "character": "Joyce", "id": 1148272, "credit_id": "543ec6490e0a266745000148", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Hayley Joanne Bacon", "character": "Woman at Station", "id": 1374337, "credit_id": "543ec655c3a3684fdf000129", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Jorge Leon Martinez", "character": "Londoner", "id": 1322312, "credit_id": "543ec65f0e0a26674500014d", "cast_id": 14, "profile_path": "/nWYveATaySCXosWAjcSS8VNPRe7.jpg", "order": 12}, {"name": "Richard Banks", "character": "Londoner", "id": 1049226, "credit_id": "543ec6690e0a26675900011b", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Leigh Dent", "character": "Train passenger", "id": 1374338, "credit_id": "543ec6730e0a266742000111", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Jude Wright", "character": "Tom", "id": 1255296, "credit_id": "543ec67e0e0a266742000116", "cast_id": 17, "profile_path": "/vh2IOu92eA9VnqHMultXItABsoa.jpg", "order": 15}, {"name": "Pip Pearce", "character": "James", "id": 1374339, "credit_id": "543ec69ec3a3684fdf000137", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Tom Harper", "department": "Directing", "job": "Director", "credit_id": "5412cf080e0a26731f0010ac", "profile_path": "/zXyuNKdDtcvwpVEm4hjXMETEK9P.jpg", "id": 212240}], "vote_average": 5.2, "runtime": 90}, "9631": {"poster_path": "/uA1zKgJVoO0ljbSbKXyek5YbLwv.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44547681, "overview": "The police try to arrest expert hostage negotiator Danny Roman, who insists he's being framed for his partner's murder in what he believes is an elaborate conspiracy. Thinking there's evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.", "video": false, "id": 9631, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Negotiator", "tagline": "He frees hostages for a living. Now he's taking hostages to survive.", "vote_count": 184, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120768", "adult": false, "backdrop_path": "/4K3RjWpWiHBHDMU5y9U2Mb37t7g.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1998-07-29", "popularity": 0.635698234876968, "original_title": "The Negotiator", "budget": 50000000, "cast": [{"name": "Samuel L. Jackson", "character": "Lt. Danny Roman", "id": 2231, "credit_id": "52fe4514c3a36847f80bb24d", "cast_id": 14, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Lt. Chris Sabian", "id": 1979, "credit_id": "52fe4514c3a36847f80bb251", "cast_id": 15, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "David Morse", "character": "Cdr. Adam Beck", "id": 52, "credit_id": "52fe4514c3a36847f80bb255", "cast_id": 16, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Ron Rifkin", "character": "Cdr. Grant Frost", "id": 12122, "credit_id": "52fe4514c3a36847f80bb259", "cast_id": 17, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 3}, {"name": "John Spencer", "character": "Chief Al Travis", "id": 34691, "credit_id": "52fe4514c3a36847f80bb25d", "cast_id": 18, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 4}, {"name": "J. T. Walsh", "character": "Insp. Terence Niebaum", "id": 22131, "credit_id": "52fe4514c3a36847f80bb261", "cast_id": 19, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 5}, {"name": "Siobhan Fallon", "character": "Maggie", "id": 6751, "credit_id": "52fe4514c3a36847f80bb265", "cast_id": 20, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 6}, {"name": "Paul Giamatti", "character": "Rudy", "id": 13242, "credit_id": "52fe4514c3a36847f80bb269", "cast_id": 21, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 7}, {"name": "Regina Taylor", "character": "Karen Roman", "id": 21848, "credit_id": "52fe4514c3a36847f80bb26d", "cast_id": 22, "profile_path": "/6adZhNlvCZjHpkolTYRUucoO9nH.jpg", "order": 8}, {"name": "Bruce Beatty", "character": "Markus", "id": 156532, "credit_id": "52fe4514c3a36847f80bb271", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Michael Cudlitz", "character": "Palermo", "id": 52415, "credit_id": "52fe4514c3a36847f80bb275", "cast_id": 24, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 10}, {"name": "Carlos G\u00f3mez", "character": "Eagle", "id": 115874, "credit_id": "52fe4514c3a36847f80bb279", "cast_id": 25, "profile_path": "/nBxwoMv1zrhNXyEjYXbcdmAdmF0.jpg", "order": 11}, {"name": "Tim Kelleher", "character": "Argento", "id": 72864, "credit_id": "52fe4514c3a36847f80bb27d", "cast_id": 26, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 12}, {"name": "Dean Norris", "character": "Scott", "id": 14329, "credit_id": "52fe4514c3a36847f80bb281", "cast_id": 27, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 13}, {"name": "Nestor Serrano", "character": "Hellman", "id": 14331, "credit_id": "52fe4514c3a36847f80bb285", "cast_id": 28, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 14}, {"name": "Doug Spinuzza", "character": "Tonray", "id": 35024, "credit_id": "52fe4514c3a36847f80bb289", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Leonard L. Thomas", "character": "Allen", "id": 15537, "credit_id": "52fe4514c3a36847f80bb28d", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Stephen Lee", "character": "Farley", "id": 91537, "credit_id": "52fe4514c3a36847f80bb291", "cast_id": 31, "profile_path": "/ntC48mP7UNmsp19YfvmVKRv5nX8.jpg", "order": 17}, {"name": "Lily Nicksay", "character": "Omar's Daughter", "id": 166896, "credit_id": "52fe4514c3a36847f80bb295", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Lauri Johnson", "character": "Chief's Wife", "id": 66499, "credit_id": "52fe4514c3a36847f80bb299", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Sabi Dorr", "character": "Bartender", "id": 136004, "credit_id": "52fe4514c3a36847f80bb29d", "cast_id": 34, "profile_path": null, "order": 20}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4514c3a36847f80bb225", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 6.6, "runtime": 140}, "1440": {"poster_path": "/ltrUzdRtn1I70wVFKDqmSNH34K3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.", "video": false, "id": 1440, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Little Children", "tagline": "", "vote_count": 51, "homepage": "http://www.littlechildrenmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404203", "adult": false, "backdrop_path": "/5T6zZtS0p1xzyAIUczMopJgZJzg.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Standard Film Company", "id": 716}, {"name": "Bona Fide Productions", "id": 2570}], "release_date": "2006-09-01", "popularity": 0.817910863455738, "original_title": "Little Children", "budget": 26000000, "cast": [{"name": "Kate Winslet", "character": "Sarah Pierce", "id": 204, "credit_id": "52fe42f7c3a36847f8030683", "cast_id": 7, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Patrick Wilson", "character": "Brad Adamson", "id": 17178, "credit_id": "52fe42f7c3a36847f8030687", "cast_id": 8, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "Kathy Adamson", "id": 6161, "credit_id": "52fe42f7c3a36847f803068b", "cast_id": 9, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Gregg Edelman", "character": "Richard Pierce", "id": 17179, "credit_id": "52fe42f7c3a36847f803068f", "cast_id": 10, "profile_path": "/aHbQl0K1c7rYtJVUHsLr4p0LtA6.jpg", "order": 3}, {"name": "Sadie Goldstein", "character": "Lucy Pierce", "id": 17180, "credit_id": "52fe42f7c3a36847f8030693", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Ty Simpkins", "character": "Aaron Adamson", "id": 17181, "credit_id": "52fe42f7c3a36847f8030697", "cast_id": 12, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 5}, {"name": "Noah Emmerich", "character": "Larry Hedges", "id": 11315, "credit_id": "52fe42f7c3a36847f803069b", "cast_id": 13, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 6}, {"name": "Jackie Earle Haley", "character": "Ronnie J. McGorvey", "id": 17183, "credit_id": "52fe42f7c3a36847f803069f", "cast_id": 14, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 7}, {"name": "Phyllis Somerville", "character": "May McGorvey", "id": 17184, "credit_id": "52fe42f7c3a36847f80306a3", "cast_id": 15, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 8}, {"name": "Helen Carey", "character": "Jean", "id": 17185, "credit_id": "52fe42f7c3a36847f80306a7", "cast_id": 16, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 9}, {"name": "Mary B. McCann", "character": "Mary Ann", "id": 17186, "credit_id": "52fe42f7c3a36847f80306ab", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Trini Alvarado", "character": "Theresa", "id": 17187, "credit_id": "52fe42f7c3a36847f80306af", "cast_id": 18, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 11}, {"name": "Marsha Dietlein", "character": "Cheryl", "id": 17188, "credit_id": "52fe42f7c3a36847f80306b3", "cast_id": 19, "profile_path": "/wdkUn4fPTg19FGF9n0TE69EiI6m.jpg", "order": 12}, {"name": "Sarah G. Buxton", "character": "Slutty Kay", "id": 17191, "credit_id": "52fe42f7c3a36847f80306b7", "cast_id": 21, "profile_path": "/osrm0dql0RhwX3LbgUSOT2M84yb.jpg", "order": 13}, {"name": "Chadwick Brown", "character": "Tony Correnti", "id": 17192, "credit_id": "52fe42f7c3a36847f80306bb", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Adam Mucci", "character": "Richie Murphy", "id": 17193, "credit_id": "52fe42f7c3a36847f80306bf", "cast_id": 23, "profile_path": "/rqullQ78nirOIOk5XhnfCbBHmwC.jpg", "order": 15}, {"name": "Chance Kelly", "character": "Pete Olafson", "id": 17194, "credit_id": "52fe42f7c3a36847f80306c3", "cast_id": 24, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 16}, {"name": "Walker Ryan", "character": "\"G\"", "id": 17195, "credit_id": "52fe42f7c3a36847f80306c7", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Erica Berg", "character": "Richard's Secretary", "id": 17196, "credit_id": "52fe42f7c3a36847f80306cb", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Catherine Wolf", "character": "Marjorie", "id": 17214, "credit_id": "52fe42f7c3a36847f80306cf", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Raymond J. Barry", "character": "Bullhorn Bob", "id": 10361, "credit_id": "52fe42f7c3a36847f803072d", "cast_id": 46, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 20}, {"name": "Jane Adams", "character": "Sheila", "id": 209, "credit_id": "52fe42f7c3a36847f8030731", "cast_id": 47, "profile_path": "/HbQfL01xmV1psnh0WvldIBzDg3.jpg", "order": 21}, {"name": "Chance Kelly", "character": "Pete Olaffson", "id": 17194, "credit_id": "52fe42f7c3a36847f8030747", "cast_id": 51, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 22}], "directors": [{"name": "Todd Field", "department": "Directing", "job": "Director", "credit_id": "52fe42f7c3a36847f80306f3", "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "id": 5010}], "vote_average": 6.7, "runtime": 136}, "1443": {"poster_path": "/r3ngI5C6tmnQeQ1cFKnVj8TJI4R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10409377, "overview": "A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.", "video": false, "id": 1443, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Virgin Suicides", "tagline": "Beautiful, mysterious, haunting, invariably fatal. Just like life.", "vote_count": 150, "homepage": "http://www.paramountvantage.com/virginsuicides/html_3/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0159097", "adult": false, "backdrop_path": "/a5FrfkLdI98DgOzI2QkZ2RfLWX0.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}], "release_date": "1999-04-21", "popularity": 0.681998043968422, "original_title": "The Virgin Suicides", "budget": 6000000, "cast": [{"name": "Kirsten Dunst", "character": "Lux Lisbon", "id": 205, "credit_id": "52fe42f8c3a36847f803091b", "cast_id": 16, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "James Woods", "character": "Mr. Lisbon", "id": 4512, "credit_id": "52fe42f8c3a36847f803091f", "cast_id": 17, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 1}, {"name": "Kathleen Turner", "character": "Mrs. Lisbon", "id": 3391, "credit_id": "52fe42f8c3a36847f8030923", "cast_id": 18, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 2}, {"name": "Josh Hartnett", "character": "Trip Fontaine", "id": 2299, "credit_id": "52fe42f8c3a36847f8030927", "cast_id": 19, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 3}, {"name": "A.J. Cook", "character": "Mary Lisbon", "id": 17236, "credit_id": "52fe42f8c3a36847f803092b", "cast_id": 20, "profile_path": "/6mSStsETn8o8bctan96koKYTRnd.jpg", "order": 4}, {"name": "Leslie Hayman", "character": "Therese Lisbon", "id": 17238, "credit_id": "52fe42f8c3a36847f803092f", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Chelse Swain", "character": "Bonnie Lisbon", "id": 17239, "credit_id": "52fe42f8c3a36847f8030933", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Anthony DeSimone", "character": "Chase Buell", "id": 17240, "credit_id": "52fe42f8c3a36847f8030937", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Scott Glenn", "character": "Father Moody", "id": 349, "credit_id": "52fe42f8c3a36847f803093b", "cast_id": 25, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 8}, {"name": "Danny DeVito", "character": "Dr. Horniker", "id": 518, "credit_id": "52fe42f8c3a36847f803093f", "cast_id": 26, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 9}, {"name": "Lee Kagan", "character": "David Barker", "id": 17241, "credit_id": "52fe42f8c3a36847f8030943", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Robert Schwartzman", "character": "Paul Baldino", "id": 17242, "credit_id": "52fe42f8c3a36847f8030947", "cast_id": 28, "profile_path": "/dBsIWM7nIvdUT8MuGzUVcCr8X8c.jpg", "order": 11}, {"name": "Jonathan Tucker", "character": "Tim Weiner", "id": 17243, "credit_id": "52fe42f8c3a36847f803094b", "cast_id": 29, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 12}, {"name": "Hayden Christensen", "character": "Joe Hill Conley", "id": 17244, "credit_id": "52fe42f8c3a36847f803094f", "cast_id": 30, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 13}, {"name": "Giovanni Ribisi", "character": "Narrator", "id": 1771, "credit_id": "52fe42f8c3a36847f8030953", "cast_id": 31, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 14}, {"name": "Hanna Hall", "character": "Cecilia Lisbon", "id": 204997, "credit_id": "52fe42f8c3a36847f8030957", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Joe Dinicol", "character": "Dominic Palazzolo", "id": 81098, "credit_id": "52fe42f8c3a36847f803095b", "cast_id": 33, "profile_path": "/cr7Zic8tvkWH2oqJ6a66OYYWbra.jpg", "order": 16}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe42f8c3a36847f80308c3", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 7.1, "runtime": 97}, "4958": {"poster_path": "/eNEsOEZFOstd1iXTtimbU8qsjDD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39459427, "overview": "World War I has left golfer Rannulph Junuh a poker-playing alcoholic, his perfect swing gone. Now, however, he needs to get it back to play in a tournament to save the financially ravaged golf course of a long-ago sweetheart. Help arrives in the form of mysterious caddy Bagger Vance.", "video": false, "id": 4958, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Legend of Bagger Vance", "tagline": "It Was Just A Moment Ago.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146984", "adult": false, "backdrop_path": "/noVASHnWl0pOUvukpACJASTvWHL.jpg", "production_companies": [{"name": "Wildwood Enterprises", "id": 316}, {"name": "Allied Filmmakers", "id": 1755}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "20th Century Fox", "id": 25}], "release_date": "2000-11-02", "popularity": 0.458540793869466, "original_title": "The Legend of Bagger Vance", "budget": 80000000, "cast": [{"name": "Bruce McGill", "character": "Walter Hagen", "id": 14888, "credit_id": "52fe43e7c3a36847f8077687", "cast_id": 5, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 0}, {"name": "Joel Gretsch", "character": "Bobby Jones", "id": 25376, "credit_id": "52fe43e7c3a36847f807768b", "cast_id": 6, "profile_path": "/5CeKN4wIQUAvF3mlRdeVAQ5ybSs.jpg", "order": 1}, {"name": "J. Michael Moncrief", "character": "Hardy Greaves", "id": 40253, "credit_id": "52fe43e7c3a36847f807768f", "cast_id": 7, "profile_path": null, "order": 2}, {"name": "Wilbur Fitzgerald", "character": "Roy", "id": 41019, "credit_id": "52fe43e7c3a36847f80776e1", "cast_id": 21, "profile_path": "/zkt1tKQpdmDcFtmoRSuZHIXQtDm.jpg", "order": 3}, {"name": "E. Roger Mitchell", "character": "Aaron", "id": 41020, "credit_id": "52fe43e7c3a36847f80776e5", "cast_id": 22, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 4}, {"name": "Carrie Preston", "character": "Idalyn Greaves", "id": 7465, "credit_id": "52fe43e7c3a36847f80776e9", "cast_id": 23, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 5}, {"name": "Will Smith", "character": "Bagger Vance", "id": 2888, "credit_id": "52fe43e7c3a36847f80776ed", "cast_id": 25, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 6}, {"name": "Charlize Theron", "character": "Adele Invergordon", "id": 6885, "credit_id": "52fe43e7c3a36847f80776f1", "cast_id": 26, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 7}, {"name": "Matt Damon", "character": "Rannulph Junuh", "id": 1892, "credit_id": "52fe43e7c3a36847f80776fb", "cast_id": 28, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 8}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a36847f80776f7", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.0, "runtime": 126}, "9637": {"poster_path": "/yn1dLaEcvUHIgxmAu6NY5ho6CnJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 275650703, "overview": "The Mystery Inc. gang have gone their separate ways and have been apart for two years, until they each receive an invitation to Spooky Island. Not knowing that the others have also been invited, they show up and discover an amusement park that affects young visitors in very strange ways.", "video": false, "id": 9637, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "Scooby-Doo", "tagline": "Get a Clue", "vote_count": 136, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vByvUnAp4eG5RzR1DFExi1lvx2C.jpg", "poster_path": "/YAuhbJKSG1R42QHJmbGsNQ80Fd.jpg", "id": 86860, "name": "Scooby-Doo (Live-action series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0267913", "adult": false, "backdrop_path": "/6iDZnSLYT4x6j1mkUDPoHN40x3F.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2002-06-13", "popularity": 0.988664063946208, "original_title": "Scooby-Doo", "budget": 84000000, "cast": [{"name": "Freddie Prinze Jr.", "character": "Fred Jones", "id": 33260, "credit_id": "52fe4514c3a36847f80bb547", "cast_id": 13, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "Daphne Blake", "id": 11863, "credit_id": "52fe4514c3a36847f80bb54b", "cast_id": 14, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Norville Rogers (\u201eShaggy\u201c)", "id": 26457, "credit_id": "52fe4514c3a36847f80bb54f", "cast_id": 15, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Linda Cardellini", "character": "Velma Dinkley", "id": 1817, "credit_id": "52fe4514c3a36847f80bb553", "cast_id": 16, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 3}, {"name": "Rowan Atkinson", "character": "Emile Mondavarious", "id": 10730, "credit_id": "52fe4514c3a36847f80bb557", "cast_id": 17, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 4}, {"name": "Neil Fanning", "character": "Scooby-Doo (voice)", "id": 58271, "credit_id": "52fe4514c3a36847f80bb55b", "cast_id": 18, "profile_path": "/wkVEPmAwycJMwPA9RjjeJusMuxo.jpg", "order": 5}, {"name": "Scott Innes", "character": "Scrappy-Doo (voice)", "id": 58272, "credit_id": "52fe4514c3a36847f80bb55f", "cast_id": 19, "profile_path": "/vhczzVvbcAEOILinNwiYBaCCw1b.jpg", "order": 6}, {"name": "Isla Fisher", "character": "Mary Jane", "id": 52848, "credit_id": "52fe4514c3a36847f80bb563", "cast_id": 20, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 7}, {"name": "Pamela Anderson", "character": "Herself", "id": 6736, "credit_id": "52fe4514c3a36847f80bb567", "cast_id": 21, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 8}, {"name": "Mark McGrath", "character": "Himself", "id": 35753, "credit_id": "52fe4514c3a36847f80bb56b", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe4514c3a36847f80bb52b", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.2, "runtime": 88}, "26022": {"poster_path": "/ipMQOfE4juN3FQh7uL1os1rwYRs.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rizwan Khan, a Muslim from the Borivali section of Mumbai, suffers from Asperger's syndrome, a form of high-functioning autism that complicates socialization. The adult Rizwan marries a Hindu single mother, Mandira, in San Francisco. After 9/11, Rizwan is detained by authorities at LAX who mistake his disability for suspicious behavior.", "video": false, "id": 26022, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "My Name Is Khan", "tagline": "", "vote_count": 57, "homepage": "http://www.mynameiskhanthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1188996", "adult": false, "backdrop_path": "/mHKG3hvbqevNcZCvWzoY9svUzc4.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Red Chillies Entertainment", "id": 2343}, {"name": "Foxstar", "id": 4450}], "release_date": "2010-02-12", "popularity": 0.253124240202387, "original_title": "My Name Is Khan", "budget": 22000000, "cast": [{"name": "Shahrukh Khan", "character": "Rizwan Khan", "id": 35742, "credit_id": "52fe44ebc3a368484e03e403", "cast_id": 14, "profile_path": "/5T5E8nVrxV9ytSRYyf0P2Uo31IC.jpg", "order": 0}, {"name": "Kajol", "character": "Mandira Khan", "id": 55061, "credit_id": "52fe44ebc3a368484e03e407", "cast_id": 15, "profile_path": "/8EvudQvU5Id8hbgH7IOM6NqgkWx.jpg", "order": 1}, {"name": "Jimmy Shergill", "character": "Rizwan's brother", "id": 35792, "credit_id": "52fe44ebc3a368484e03e40b", "cast_id": 16, "profile_path": "/lQDAT2RzgsZBGeL0qJYgVDBINAL.jpg", "order": 2}, {"name": "Zarina Wahab", "character": "Rizwan's mother", "id": 94567, "credit_id": "52fe44ebc3a368484e03e40f", "cast_id": 17, "profile_path": "/oljX4aX8LIxcvlzYhUaVQomtyiK.jpg", "order": 3}, {"name": "Tanay Chheda", "character": "Rizwan Khan (as a child)", "id": 52771, "credit_id": "52fe44ebc3a368484e03e413", "cast_id": 18, "profile_path": "/8wh6OIlyU2UpfBfjVTAIU4zFMiI.jpg", "order": 4}, {"name": "Sheetal Menon", "character": "Radha", "id": 94568, "credit_id": "52fe44ebc3a368484e03e417", "cast_id": 19, "profile_path": "/8Au12BMKXJ1d77WaBbfRFKKXNXT.jpg", "order": 5}, {"name": "Arif Zakaria", "character": "Faisal Rahman", "id": 53375, "credit_id": "52fe44ebc3a368484e03e41b", "cast_id": 20, "profile_path": "/wWa01WsvwLxqknpySC1V25k4CVB.jpg", "order": 6}, {"name": "Arjun Mathur", "character": "Raj", "id": 53105, "credit_id": "52fe44ebc3a368484e03e41f", "cast_id": 21, "profile_path": "/2miDsjwKdaWrsoDMKhZPGtzDRGw.jpg", "order": 7}, {"name": "Christopher B. Duncan", "character": "Barack Obama", "id": 94570, "credit_id": "52fe44ebc3a368484e03e423", "cast_id": 22, "profile_path": "/bzBCkB6sZeVJIHlUiG7sONAnFIv.jpg", "order": 8}], "directors": [{"name": "Karan Johar", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a368484e03e3c9", "profile_path": "/iSv9Mbjp6WqdL2euPNrJ1KGaIXL.jpg", "id": 35736}], "vote_average": 7.8, "runtime": 145}, "9641": {"poster_path": "/ftrEtXOMnYzF5k14tBJiS3MYby2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129181830, "overview": "Steve Martin and Bonnie Hunt return as heads of the Baker family who, while on vacation, find themselves in competition with a rival family of eight children, headed by Eugene Levy,", "video": false, "id": 9641, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cheaper by the Dozen 2", "tagline": "Same Big Family... Even Bigger Adventure.", "vote_count": 111, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5LCXYjHCy78SJqGhpAgabHmyf2s.jpg", "id": 114783, "name": "Cheaper by the Dozen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452598", "adult": false, "backdrop_path": "/nNvReK5QSyygLQDLcaxhrXa8eR0.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2005-12-21", "popularity": 0.798113098736785, "original_title": "Cheaper by the Dozen 2", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Tom Baker", "id": 67773, "credit_id": "52fe4515c3a36847f80bb6e3", "cast_id": 1, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Eugene Levy", "character": "Jimmy Murtaugh", "id": 26510, "credit_id": "52fe4515c3a36847f80bb6e7", "cast_id": 2, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 1}, {"name": "Bonnie Hunt", "character": "Kate Baker", "id": 5149, "credit_id": "52fe4515c3a36847f80bb6eb", "cast_id": 3, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 2}, {"name": "Tom Welling", "character": "Charlie Baker", "id": 11824, "credit_id": "52fe4515c3a36847f80bb6ef", "cast_id": 4, "profile_path": "/45hE6LdT31IyMKLtu8JPopByMEH.jpg", "order": 3}, {"name": "Jonathan Bennett", "character": "Bud McNulty", "id": 76996, "credit_id": "52fe4515c3a36847f80bb72f", "cast_id": 16, "profile_path": "/7IdoFyD20nGmfb1eh8AW71htRJM.jpg", "order": 4}, {"name": "Forrest Landis", "character": "Mark Baker", "id": 60393, "credit_id": "52fe4515c3a36847f80bb733", "cast_id": 17, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 5}, {"name": "Carmen Electra", "character": "Sarina Murtaugh", "id": 28639, "credit_id": "52fe4515c3a36847f80bb737", "cast_id": 18, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 6}, {"name": "Taylor Lautner", "character": "Eliot Murtaugh", "id": 84214, "credit_id": "52fe4515c3a36847f80bb73b", "cast_id": 19, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 7}, {"name": "Jacob Smith", "character": "Jake Baker", "id": 9829, "credit_id": "52fe4515c3a36847f80bb73f", "cast_id": 20, "profile_path": "/gWdoJZzinaMLniOFTGfWooZPo91.jpg", "order": 8}, {"name": "Kevin G. Schmidt", "character": "Henry Baker", "id": 85140, "credit_id": "52fe4515c3a36847f80bb743", "cast_id": 21, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 9}, {"name": "Brent Kinsman", "character": "Nigel Baker", "id": 148617, "credit_id": "52fe4515c3a36847f80bb747", "cast_id": 22, "profile_path": "/vMr6zID6ZJBJPY28uWvdu3vsqDS.jpg", "order": 10}, {"name": "Brent and Shane Kinsman", "character": "Kyle Baker", "id": 148618, "credit_id": "52fe4515c3a36847f80bb74b", "cast_id": 23, "profile_path": "/f69HcZsO5xnTi0JcuvP8RxyIYm6.jpg", "order": 11}, {"name": "Blake Woodruff", "character": "Mike Baker", "id": 142635, "credit_id": "52fe4515c3a36847f80bb74f", "cast_id": 24, "profile_path": "/oNsSKbH4rIGY8AnyCyChp4NRQ8C.jpg", "order": 12}, {"name": "Alexander Conti", "character": "Kenneth Murtaugh", "id": 133926, "credit_id": "52fe4515c3a36847f80bb753", "cast_id": 25, "profile_path": "/xa2sfSRapHrHmRyp5aHQ7258qtG.jpg", "order": 13}, {"name": "Matthew Knight", "character": "Theatre Kid", "id": 20377, "credit_id": "52fe4515c3a36847f80bb757", "cast_id": 26, "profile_path": "/704cnOP2UV3oTCRET3yex7WpNhJ.jpg", "order": 14}, {"name": "Hilary Duff", "character": "Lorraine Baker", "id": 5958, "credit_id": "52fe4515c3a36847f80bb75b", "cast_id": 27, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 15}, {"name": "Alyson Stoner", "character": "Sarah Baker", "id": 58965, "credit_id": "52fe4515c3a36847f80bb75f", "cast_id": 28, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 16}, {"name": "Morgan York", "character": "Kim Baker", "id": 148615, "credit_id": "52fe4515c3a36847f80bb763", "cast_id": 29, "profile_path": "/AhcT2J8Kk1mRpDhDdhszAeQslBg.jpg", "order": 17}, {"name": "Liliana Mumy", "character": "Jessica Baker", "id": 71861, "credit_id": "52fe4515c3a36847f80bb767", "cast_id": 30, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 18}, {"name": "Robbie Amell", "character": "Daniel Murtaugh", "id": 1223726, "credit_id": "52fe4515c3a36847f80bb76f", "cast_id": 33, "profile_path": "/At42ERb0b0tUQmcaQKStGLhbLqN.jpg", "order": 19}, {"name": "Adam Shankman", "character": "Clam Bake Chef", "id": 20739, "credit_id": "52fe4515c3a36847f80bb76b", "cast_id": 32, "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "order": 20}, {"name": "Piper Perabo", "character": "Nora Baker-McNulty", "id": 15555, "credit_id": "52fe4515c3a36847f80bb773", "cast_id": 34, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 21}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe4515c3a36847f80bb6f5", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.7, "runtime": 94}, "9799": {"poster_path": "/x4So4OkqnjfOSBCCNd5uosMmQiB.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 207283925, "overview": "Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.", "video": false, "id": 9799, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Fast and the Furious", "tagline": "Live life 1/4 mile at a time.", "vote_count": 1914, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0232500", "adult": false, "backdrop_path": "/lmIqH8Qsv3IvDg0PTFUuVr89eBT.jpg", "production_companies": [{"name": "Ardustry Entertainment", "id": 26281}, {"name": "Universal Pictures", "id": 33}, {"name": "Original Film", "id": 333}, {"name": "Mediastream Film GmbH & Co. Productions KG", "id": 26282}], "release_date": "2001-06-22", "popularity": 1.60710853958407, "original_title": "The Fast and the Furious", "budget": 38000000, "cast": [{"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe452fc3a36847f80c101b", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe452fc3a36847f80c101f", "cast_id": 2, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Letty", "id": 17647, "credit_id": "52fe452fc3a36847f80c1023", "cast_id": 3, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "52fe452fc3a36847f80c1027", "cast_id": 4, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "Rick Yune", "character": "Johnny Tran", "id": 10883, "credit_id": "52fe452fc3a36847f80c1073", "cast_id": 17, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 4}, {"name": "Chad Lindberg", "character": "Jesse", "id": 9186, "credit_id": "52fe452fc3a36847f80c1077", "cast_id": 18, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 5}, {"name": "Johnny Strong", "character": "Leon", "id": 12796, "credit_id": "52fe452fc3a36847f80c107b", "cast_id": 19, "profile_path": "/eJIgKkZKS99KRz1C1WgCq0wXsUh.jpg", "order": 6}, {"name": "Matt Schulze", "character": "Vince", "id": 31841, "credit_id": "52fe452fc3a36847f80c107f", "cast_id": 20, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 7}, {"name": "Ted Levine", "character": "Sgt. Tanner", "id": 15854, "credit_id": "52fe452fc3a36847f80c1083", "cast_id": 21, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 8}, {"name": "Ja Rule", "character": "Edwin", "id": 61658, "credit_id": "52fe452fc3a36847f80c1087", "cast_id": 22, "profile_path": "/rXvVP8d4NWBdHxcTu3GTUrybZlX.jpg", "order": 9}, {"name": "Vyto Ruginis", "character": "Harry", "id": 61216, "credit_id": "52fe452fc3a36847f80c108b", "cast_id": 23, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 10}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c102d", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 6.3, "runtime": 106}, "1452": {"poster_path": "/mAZ9zR7I7TjWvL4Yw3HkchsTeGM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 391081192, "overview": "Set 5 years after the end of Superman II, the film begins when Superman returns to discover his absence allowed Lex Luthor to walk free, and that those he was closest too felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever, as well as ridding himself of the Man Of Steel.", "video": false, "id": 1452, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman Returns", "tagline": "", "vote_count": 464, "homepage": "http://www.superman.com", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0348150", "adult": false, "backdrop_path": "/uAVdwu4vEx0TwuC4ewp9RqplKEV.jpg", "production_companies": [{"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DC Comics", "id": 429}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2006-06-28", "popularity": 1.28610034713297, "original_title": "Superman Returns", "budget": 270000000, "cast": [{"name": "Brandon Routh", "character": "Superman / Clark Kent", "id": 17271, "credit_id": "52fe42f8c3a36847f8030b65", "cast_id": 3, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Lex Luthor", "id": 1979, "credit_id": "52fe42f8c3a36847f8030b61", "cast_id": 1, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Kate Bosworth", "character": "Lois Lane", "id": 7517, "credit_id": "52fe42f8c3a36847f8030b69", "cast_id": 4, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 2}, {"name": "James Marsden", "character": "Richard White", "id": 11006, "credit_id": "52fe42f8c3a36847f8030b8b", "cast_id": 10, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 3}, {"name": "Parker Posey", "character": "Kitty Kowalski", "id": 7489, "credit_id": "52fe42f8c3a36847f8030b8f", "cast_id": 11, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 4}, {"name": "Frank Langella", "character": "Perry White", "id": 8924, "credit_id": "52fe42f8c3a36847f8030b93", "cast_id": 12, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 5}, {"name": "Sam Huntington", "character": "Jimmy Olsen", "id": 53492, "credit_id": "52fe42f8c3a36847f8030b97", "cast_id": 13, "profile_path": "/nq7pwic6Xe6XTRzOfXjMCuUqbjt.jpg", "order": 6}, {"name": "Eva Marie Saint", "character": "Martha Kent", "id": 2639, "credit_id": "52fe42f8c3a36847f8030b9b", "cast_id": 14, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 7}, {"name": "Marlon Brando", "character": "Jor-El", "id": 3084, "credit_id": "52fe42f8c3a36847f8030b9f", "cast_id": 15, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 8}, {"name": "Kal Penn", "character": "Stanford", "id": 53493, "credit_id": "52fe42f8c3a36847f8030ba3", "cast_id": 16, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 9}, {"name": "Tristan Lake Leabu", "character": "Jason White", "id": 53494, "credit_id": "52fe42f8c3a36847f8030ba7", "cast_id": 17, "profile_path": "/8qGNvU0JYISTcjNOA7WB6Y6Ez7C.jpg", "order": 10}, {"name": "David Fabrizio", "character": "Brutus", "id": 41318, "credit_id": "52fe42f8c3a36847f8030bab", "cast_id": 18, "profile_path": "/rcT4BPhZQDK0a2nIp9WlGn920eG.jpg", "order": 11}, {"name": "Ian Roberts", "character": "Riley", "id": 1224391, "credit_id": "52fe42f8c3a36847f8030bb5", "cast_id": 21, "profile_path": "/9tVVEmYyTNHC6p3Ten8j95Zklu5.jpg", "order": 12}, {"name": "Vincent Stone", "character": "Grant", "id": 1272955, "credit_id": "530d2dea92514114240017c6", "cast_id": 22, "profile_path": "/A3nBAQ8sRGfFj6JAo04z5KRc3rp.jpg", "order": 13}, {"name": "Jack Larson", "character": "Bo the Bartender", "id": 193763, "credit_id": "530d2e7c925141142e00176d", "cast_id": 24, "profile_path": "/11UOpxJnhX2JZ7dAjy7G735pUbo.jpg", "order": 15}, {"name": "Noel Neill", "character": "Gertrude Vanderworth", "id": 243805, "credit_id": "552e6249c3a36875010038d9", "cast_id": 25, "profile_path": "/zYp8iKSPrHIZb7bt76hxZqgSXm.jpg", "order": 16}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe42f8c3a36847f8030b6f", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 5.3, "runtime": 154}, "9645": {"poster_path": "/3zpmLxfZIusjsy9GEEk5zhxBqi6.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68349884, "overview": "After discovering a passenger ship missing since 1962 floating adrift on the Bering Sea, salvagers claim the vessel as their own. Once they begin towing the ghost ship towards harbor, a series of bizarre occurrences happen and the group becomes trapped inside the ship, which they soon learn is inhabited by a demonic creature.", "video": false, "id": 9645, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Ship", "tagline": "Sea Evil", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0288477", "adult": false, "backdrop_path": "/gc4MW8gPXFNbVJIZBpIsYlmQaxB.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Dark Castle Entertainment", "id": 1786}], "release_date": "2002-10-25", "popularity": 0.940740848058442, "original_title": "Ghost Ship", "budget": 35000000, "cast": [{"name": "Gabriel Byrne", "character": "Captain Sean Murphy", "id": 5168, "credit_id": "52fe4515c3a36847f80bb965", "cast_id": 12, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 0}, {"name": "Julianna Margulies", "character": "Maureen Epps", "id": 25654, "credit_id": "52fe4515c3a36847f80bb969", "cast_id": 13, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 1}, {"name": "Desmond Harrington", "character": "Jack Ferriman", "id": 6365, "credit_id": "52fe4515c3a36847f80bb96d", "cast_id": 14, "profile_path": "/Wyv2jiCnJXkVtrRwXOvy1aVemb.jpg", "order": 2}, {"name": "Ron Eldard", "character": "Dodge", "id": 12260, "credit_id": "52fe4515c3a36847f80bb971", "cast_id": 15, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 3}, {"name": "Isaiah Washington", "character": "Greer", "id": 21353, "credit_id": "52fe4515c3a36847f80bb975", "cast_id": 16, "profile_path": "/d6J3fo5ad2XeoQ53421eL7YcpoJ.jpg", "order": 4}, {"name": "Karl Urban", "character": "Munder", "id": 1372, "credit_id": "52fe4515c3a36847f80bb979", "cast_id": 17, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 5}, {"name": "Emily Browning", "character": "Katie Harwood", "id": 70456, "credit_id": "52fe4515c3a36847f80bb97d", "cast_id": 18, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 6}, {"name": "Francesca Rettondini", "character": "Francesca", "id": 1004151, "credit_id": "5300aa27c3a3683ff72a0935", "cast_id": 19, "profile_path": "/r1O58jmbDjTyelTn5JV8yaxQQwR.jpg", "order": 7}, {"name": "Bob Ruggiero", "character": "Captain (as Robert Ruggiero)", "id": 217030, "credit_id": "534d11560e0a2661b9000f31", "cast_id": 24, "profile_path": null, "order": 8}], "directors": [{"name": "Steve Beck", "department": "Directing", "job": "Director", "credit_id": "52fe4515c3a36847f80bb943", "profile_path": "/p050TsMfcaDeUv3DAcSaS8Tzdrs.jpg", "id": 57521}], "vote_average": 5.2, "runtime": 91}, "11165": {"poster_path": "/vBxZpSulJCNNH5VonyUjZHaDJek.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29548291, "overview": "In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. \"Tora! Tora! Tora!\", named after the code words use by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.", "video": false, "id": 11165, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Tora! Tora! Tora!", "tagline": "The incredible attack on Pearl Harbor.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066473", "adult": false, "backdrop_path": "/fztkRpVydDJKSo07oEdqOYTZF1q.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1970-09-23", "popularity": 0.356549834535902, "original_title": "Tora! Tora! Tora!", "budget": 25485000, "cast": [{"name": "Martin Balsam", "character": "Admiral Husband E. Kimmel", "id": 1936, "credit_id": "52fe44059251416c75026459", "cast_id": 1, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 0}, {"name": "S\u00f4 Yamamura", "character": "Vice-Admiral Isoroku Yamamoto", "id": 68411, "credit_id": "52fe44059251416c7502645d", "cast_id": 2, "profile_path": "/rdnPm1VDk0Q0EfTCFRU3N0YniK5.jpg", "order": 1}, {"name": "Joseph Cotten", "character": "Henry L. Stimson, U.S. Secretary of War", "id": 7664, "credit_id": "52fe44059251416c75026461", "cast_id": 3, "profile_path": "/bTUTrTnzacCQV4F0rs1xH4QaETf.jpg", "order": 2}, {"name": "Tatsuya Mihashi", "character": "Commander Minoru Genda", "id": 13251, "credit_id": "52fe44059251416c75026465", "cast_id": 4, "profile_path": "/n72g3neS8nAyz3cM9C8NAnO2bXM.jpg", "order": 3}, {"name": "E.G. Marshall", "character": "Lt. Colonel Rufus S. Bratton", "id": 5249, "credit_id": "52fe44059251416c750264c3", "cast_id": 20, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 4}, {"name": "James Whitmore", "character": "Vice Admiral William F. 'Bull' Halsey Jr.", "id": 6577, "credit_id": "52fe44059251416c750264c7", "cast_id": 21, "profile_path": "/r1xOgXFjqhn2fonn78rlXKPZGFw.jpg", "order": 5}, {"name": "Takahiro Tamura", "character": "Lt. Commander Mitsuo Fuchida", "id": 118989, "credit_id": "52fe44059251416c750264cb", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Jason Robards", "character": "Lt. General Walter C. Short", "id": 4765, "credit_id": "52fe44059251416c750264cf", "cast_id": 24, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 8}, {"name": "Wesley Addy", "character": "Lt. Commander Alwin D. Kramer", "id": 66712, "credit_id": "52fe44059251416c750264d3", "cast_id": 25, "profile_path": "/qc8DGqS0pZJon3cVgDl3jVzW4SU.jpg", "order": 9}, {"name": "Frank Aletter", "character": "Lt. Commander Francis J. Thomas - USS Nevada", "id": 123380, "credit_id": "52fe44059251416c750264d7", "cast_id": 27, "profile_path": "/wlUBPFVPbVyb7tMUN6DeLk1h6Wz.jpg", "order": 10}, {"name": "Koreya Senda", "character": "Prime Minister Prince Fumimaro Konoye", "id": 123381, "credit_id": "52fe44059251416c750264db", "cast_id": 28, "profile_path": "/iIOtsocIjkfHFqy3VGgEiN0kLi9.jpg", "order": 11}, {"name": "Leon Ames", "character": "Secretary of the Navy Frank Knox", "id": 13994, "credit_id": "52fe44069251416c750264df", "cast_id": 29, "profile_path": "/g9jmaTeVjRlrGEO1MefnoS3uVRK.jpg", "order": 12}, {"name": "Junya Usami", "character": "Admiral Zengo Yoshida", "id": 123382, "credit_id": "52fe44069251416c750264e3", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Richard Anderson", "character": "Captain John B. Earle", "id": 12312, "credit_id": "52fe44069251416c750264e7", "cast_id": 32, "profile_path": "/lHI1T7yJfCv3cfD7SpAkH0OWDNx.jpg", "order": 14}, {"name": "Kazuo Kitamura", "character": "Foreign Minister Yosuke Matsuoka", "id": 63707, "credit_id": "52fe44069251416c750264eb", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Susumu Fujita", "character": "Rear Admiral Tamon Yamaguchi", "id": 30907, "credit_id": "52fe44069251416c750264ef", "cast_id": 35, "profile_path": "/eVlXPPjlHAzFBKxgPKML1Uciahx.jpg", "order": 16}, {"name": "Edward Andrews", "character": "Admiral Harold R. Stark", "id": 29719, "credit_id": "52fe44069251416c750264f3", "cast_id": 36, "profile_path": "/8tbeVNxs6puN3GiyOmoq70IchLb.jpg", "order": 17}, {"name": "Bontar\u00f4 Miake", "character": "Admiral Koshiro Oikawa (as Bontaro Miyake)", "id": 123384, "credit_id": "52fe44069251416c750264f7", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Neville Brand", "character": "Lieutenant Harold Kaminsky", "id": 9112, "credit_id": "52fe44069251416c750264fb", "cast_id": 38, "profile_path": "/oqHFJx2CUOLuZU3l1acZWUDFlVN.jpg", "order": 19}, {"name": "Richard Erdman", "character": "Colonel Edward F. French", "id": 9110, "credit_id": "52fe44069251416c750264ff", "cast_id": 39, "profile_path": "/rhjiP9WV2tIsAPhwDpc6mPtX0Qs.jpg", "order": 20}, {"name": "Keith Andes", "character": "General George C. Marshall", "id": 15953, "credit_id": "52fe44069251416c75026503", "cast_id": 40, "profile_path": "/er8eS2jkZGzqPr26QWJPCKdwq9f.jpg", "order": 21}, {"name": "Eijir\u00f4 T\u00f4no", "character": "Vice Admiral Chuichi Nagumo (as Eijiro Tono)", "id": 106165, "credit_id": "52fe44069251416c75026507", "cast_id": 41, "profile_path": "/5wb61i8W4r9On3FkwUbaTkWqfdb.jpg", "order": 22}, {"name": "Sh\u00f4go Shimada", "character": "Japanese Ambassador Kichisaburo Nomura", "id": 150249, "credit_id": "52fe44069251416c7502650b", "cast_id": 42, "profile_path": null, "order": 23}], "directors": [{"name": "Richard Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe44059251416c7502646b", "profile_path": "/yofiXdiD2AaK2M4RgXQFeO8qQgD.jpg", "id": 2087}, {"name": "Kinji Fukasaku", "department": "Directing", "job": "Director", "credit_id": "52fe44059251416c75026471", "profile_path": null, "id": 31074}, {"name": "Toshio Masuda", "department": "Directing", "job": "Director", "credit_id": "52fe44059251416c75026477", "profile_path": null, "id": 68412}], "vote_average": 6.5, "runtime": 144}, "206408": {"poster_path": "/7O5ZeMQyBZVwDyCIg8F8B1u3nsn.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Xavier is a 40-year-old father of two who still finds life very complicated. When the mother of his children moves to New York, he can't bear them growing up far away from him and so he decides to move there as well.", "video": false, "id": 206408, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Chinese Puzzle", "tagline": "", "vote_count": 71, "homepage": "http://www.cassetetechinois-lefilm.fr/", "belongs_to_collection": {"backdrop_path": "/3ahNzWAv20FlJ0i2wrrgKPOjQCT.jpg", "poster_path": "/woD0gFHbZgwi9RpLL0uSQ56hnJA.jpg", "id": 239766, "name": "The Klapisch Trilogy"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt1937118", "adult": false, "backdrop_path": "/7oLuhKfl8B9YbEIPWPpMmgY6jFD.jpg", "production_companies": [{"name": "Ce Qui Me Meut", "id": 21513}, {"name": "Opposite Field Pictures", "id": 21514}, {"name": "Compagnie Cin\u00e9matographique", "id": 21515}, {"name": "La Panache Productions", "id": 21516}], "release_date": "2013-12-04", "popularity": 0.25846008508001, "original_title": "Casse-T\u00eate Chinois", "budget": 0, "cast": [{"name": "Romain Duris", "character": "Xavier Rousseau", "id": 17497, "credit_id": "52fe4d1cc3a368484e1d7a7d", "cast_id": 5, "profile_path": "/buU0mFOX7PvSr50F6H8SrN71W08.jpg", "order": 0}, {"name": "Audrey Tautou", "character": "Martine", "id": 2405, "credit_id": "52fe4d1cc3a368484e1d7a71", "cast_id": 2, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 1}, {"name": "C\u00e9cile De France", "character": "Isabelle", "id": 17522, "credit_id": "52fe4d1cc3a368484e1d7a79", "cast_id": 4, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 2}, {"name": "Kelly Reilly", "character": "Wendy", "id": 17521, "credit_id": "52fe4d1cc3a368484e1d7a6d", "cast_id": 1, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 3}, {"name": "Sandrine Holt", "character": "Ju", "id": 65345, "credit_id": "52fe4d1cc3a368484e1d7a75", "cast_id": 3, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 4}, {"name": "Flore Bonaventura", "character": "Isabelle, la babysitter", "id": 1115898, "credit_id": "5378cb97c3a3685542003c90", "cast_id": 8, "profile_path": "/8XkyssGCiRL1SEmQLz7zqici715.jpg", "order": 5}, {"name": "Jochen H\u00e4gele", "character": "les philosophes allemands", "id": 1321013, "credit_id": "5378cbbcc3a3685554004054", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Beno\u00eet Jacquot", "character": "le p\u00e8re de Xavier", "id": 229263, "credit_id": "5378cbe1c3a3685531004033", "cast_id": 10, "profile_path": "/aj0DBZ2S5bJmImTM0OTKSerEOZJ.jpg", "order": 7}, {"name": "Martine Demaret", "character": "la m\u00e8re de Xavier", "id": 17527, "credit_id": "5378cbf4c3a3685525003e73", "cast_id": 11, "profile_path": "/duOIXKudnTBE12Nb4W9VpATlHAk.jpg", "order": 8}, {"name": "Dominique Besnehard", "character": "l'\u00e9diteur", "id": 21680, "credit_id": "5378cc05c3a368551e003ed7", "cast_id": 12, "profile_path": "/xh3UJRvzFdFfliMIBYvetL5olYZ.jpg", "order": 9}, {"name": "Zinedine Soualem", "character": "M. Boubaker", "id": 5445, "credit_id": "5378cc1ac3a3685525003e76", "cast_id": 13, "profile_path": "/fSXaPheMM4e6BUxPMaXrjIi8k4N.jpg", "order": 10}, {"name": "Peter Hermann", "character": "John", "id": 50117, "credit_id": "5378cc29c3a368553a003ef8", "cast_id": 14, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 11}, {"name": "Jason Kravits", "character": "l'avocat new-yorkais de Xavier", "id": 19978, "credit_id": "5378cc3dc3a368553a003efa", "cast_id": 15, "profile_path": "/cVKEiEDx84xV2KiMKYZcNJLQDWX.jpg", "order": 12}, {"name": "Vanessa Guide", "character": "L'infirmi\u00e8re", "id": 932117, "credit_id": "5378cc4fc3a368552c003d7f", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Kyan Khojandi", "character": "Antoine Garceau", "id": 1321014, "credit_id": "5378cc72c3a3685525003e7d", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Li Jun Li", "character": "Nancy", "id": 1321015, "credit_id": "5378ccb7c3a368553a003f0a", "cast_id": 18, "profile_path": "/nyFzHkkY6dQwz5GiOnEYahx9ZGS.jpg", "order": 15}, {"name": "C\u00e9dric Klapisch", "character": "le photographe (cam\u00e9o)", "id": 17520, "credit_id": "5378cce2c3a3685525003e8f", "cast_id": 19, "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "order": 16}], "directors": [{"name": "C\u00e9dric Klapisch", "department": "Directing", "job": "Director", "credit_id": "52fe4d1cc3a368484e1d7a83", "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "id": 17520}], "vote_average": 6.3, "runtime": 117}, "116149": {"poster_path": "/hfjfjYsTBHgfogLWWiTm5OP7KpD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A young Peruvian bear with a passion for all things British travels to London in search of a home. Finding himself lost and alone at Paddington Station, he begins to realize that city life is not all he had imagined - until he meets the kindly Brown family, who read the label around his neck ('Please look after this bear. Thank you.') and offer him a temporary haven. It looks as though his luck has changed until this rarest of bears catches the eye of a museum taxidermist...", "video": false, "id": 116149, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Paddington", "tagline": "The Adventure Begins", "vote_count": 172, "homepage": "http://www.paddington.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1109624", "adult": false, "backdrop_path": "/zwMEMIo1j5TjP9oUG89aWCKDjYt.jpg", "production_companies": [{"name": "Heyday Films", "id": 7364}, {"name": "StudioCanal", "id": 694}, {"name": "Costa Rica Filming Locations", "id": 34139}, {"name": "DHX Media", "id": 7225}], "release_date": "2014-11-28", "popularity": 3.03653118024445, "original_title": "Paddington", "budget": 0, "cast": [{"name": "Nicole Kidman", "character": "Millicent", "id": 2227, "credit_id": "52fe4b85c3a36847f8207bfd", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Peter Capaldi", "character": "Mr. Curry", "id": 12982, "credit_id": "543e2550c3a3682500001afa", "cast_id": 18, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 1}, {"name": "Ben Whishaw", "character": "Paddington (voice)", "id": 17064, "credit_id": "543e2561c3a36825170019a3", "cast_id": 19, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 2}, {"name": "Michael Gambon", "character": "Uncle Pastuzo (voice)", "id": 5658, "credit_id": "543e2570c3a36825170019a6", "cast_id": 20, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 3}, {"name": "Imelda Staunton", "character": "Aunt Lucy (voice)", "id": 11356, "credit_id": "543e257bc3a368251300192a", "cast_id": 21, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 4}, {"name": "Sally Hawkins", "character": "Mrs. Mary Brown", "id": 39658, "credit_id": "52fe4b85c3a36847f8207bf5", "cast_id": 3, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 5}, {"name": "Julie Walters", "character": "Mrs. Bird", "id": 477, "credit_id": "52fe4b85c3a36847f8207c01", "cast_id": 6, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 6}, {"name": "Hugh Bonneville", "character": "Mr. Brown", "id": 19923, "credit_id": "52fe4b85c3a36847f8207bf9", "cast_id": 4, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 7}, {"name": "Jim Broadbent", "character": "Mr. Gruber", "id": 388, "credit_id": "52fe4b85c3a36847f8207c05", "cast_id": 7, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 8}, {"name": "Matt Lucas", "character": "Taxi Driver", "id": 26209, "credit_id": "543e25920e0a266f8b001950", "cast_id": 22, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 9}, {"name": "Matt King", "character": "Andre the Thief", "id": 23776, "credit_id": "543e259d0e0a266f8e001998", "cast_id": 23, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 10}, {"name": "Samuel Joslin", "character": "Jonathan Brown", "id": 1304662, "credit_id": "5331be02c3a3686a9d002016", "cast_id": 12, "profile_path": "/tJKi02sWEfNkPTQKIlQBBbHUyyg.jpg", "order": 11}, {"name": "Daniel Westwood", "character": "Servant", "id": 1371439, "credit_id": "543e25b8c3a36825040019ca", "cast_id": 26, "profile_path": "/yvblj5nqxW7QOTnDWEooKLyGfB3.jpg", "order": 13}, {"name": "Dominic Coleman", "character": "Policeman", "id": 1365437, "credit_id": "543e25c30e0a266f7a001ac0", "cast_id": 27, "profile_path": "/8rc1RuBPcpZvEFtZu2w82ny0Kv1.jpg", "order": 14}, {"name": "Simon Farnaby", "character": "Security Guard", "id": 114253, "credit_id": "54cc6fc6c3a3687f80000acc", "cast_id": 32, "profile_path": "/3u1ObLUvaTyEMmpWQnkRg5Trlng.jpg", "order": 15}, {"name": "Madeleine Harris", "character": "Judy Brown", "id": 1304661, "credit_id": "551cb567c3a3684a200015a4", "cast_id": 34, "profile_path": "/ojTiVLOXl9p63piioIfzqgh4Oy5.jpg", "order": 16}], "directors": [{"name": "Paul King", "department": "Directing", "job": "Director", "credit_id": "52fe4b85c3a36847f8207bed", "profile_path": null, "id": 101666}], "vote_average": 7.6, "runtime": 95}, "9654": {"poster_path": "/dmWki38vOAvesXMCxlMOV7hzF6K.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176070171, "overview": "After being betrayed and left for dead in Italy, Charlie Croker and his team plan an elaborate gold heist against their former ally.", "video": false, "id": 9654, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Italian Job", "tagline": "Get in. Get out. Get even.", "vote_count": 788, "homepage": "http://www.italianjobmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 43406, "name": "The Italian Job Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0317740", "adult": false, "backdrop_path": "/JyoJwSfcLvfLxCGHUQYlCxvU77.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Paramount Pictures", "id": 4}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2003-05-30", "popularity": 1.40775595391581, "original_title": "The Italian Job", "budget": 60000000, "cast": [{"name": "Mark Wahlberg", "character": "Charlie Croker", "id": 13240, "credit_id": "52fe4517c3a36847f80bbd3f", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Stella Bridger", "id": 6885, "credit_id": "52fe4517c3a36847f80bbd43", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Jason Statham", "character": "Handsome Rob", "id": 976, "credit_id": "52fe4517c3a36847f80bbd4b", "cast_id": 4, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Edward Norton", "character": "Steve", "id": 819, "credit_id": "52fe4517c3a36847f80bbd57", "cast_id": 7, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 3}, {"name": "Fausto Callegarini", "character": "Italian Guard", "id": 58347, "credit_id": "52fe4517c3a36847f80bbd5b", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Seth Green", "character": "Lyle", "id": 13922, "credit_id": "52fe4517c3a36847f80bbd4f", "cast_id": 5, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 5}, {"name": "Mos Def", "character": "Left Ear", "id": 4239, "credit_id": "52fe4517c3a36847f80bbd53", "cast_id": 6, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 6}, {"name": "Donald Sutherland", "character": "John Bridger", "id": 55636, "credit_id": "52fe4517c3a36847f80bbd47", "cast_id": 3, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 7}, {"name": "Stefano Petronelli", "character": "Garbageman", "id": 58348, "credit_id": "52fe4517c3a36847f80bbd5f", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Fabio Scarpa", "character": "Garbageman", "id": 58349, "credit_id": "52fe4517c3a36847f80bbd63", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Cristiano Bonora", "character": "Garbageman", "id": 58350, "credit_id": "52fe4517c3a36847f80bbd67", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Tiberio Greco", "character": "Garbageman", "id": 58351, "credit_id": "52fe4517c3a36847f80bbd6b", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Jimmy Shubert", "character": "First Detective", "id": 58352, "credit_id": "52fe4517c3a36847f80bbd6f", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Tammi Cubilette", "character": "Second Detective", "id": 58353, "credit_id": "52fe4517c3a36847f80bbd73", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Mary Portser", "character": "Stella's Receptionist", "id": 58354, "credit_id": "52fe4517c3a36847f80bbd77", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Boris Lee Krutonog", "character": "Yevhen (as Boris Krutonog)", "id": 237370, "credit_id": "52fe4517c3a36847f80bbdb7", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Franky G", "character": "Wrench", "id": 2682, "credit_id": "52fe4517c3a36847f80bbdbb", "cast_id": 32, "profile_path": "/2C6BTj03PQlbCIzb1zAv9gcMr5l.jpg", "order": 16}, {"name": "Olek Krupa", "character": "Mashkov", "id": 53573, "credit_id": "52fe4517c3a36847f80bbdbf", "cast_id": 33, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 17}, {"name": "Gawtti", "character": "Skinny Pete", "id": 237371, "credit_id": "52fe4517c3a36847f80bbdc3", "cast_id": 34, "profile_path": "/nJlg5yQNUsUYqK723XDRHJs6Hxc.jpg", "order": 18}, {"name": "Melanie Jayne", "character": "Skinny Pete's Girl", "id": 237372, "credit_id": "52fe4517c3a36847f80bbdc7", "cast_id": 35, "profile_path": "/xzmeWB4KIIRY9Gnk1WeJuJYi5IA.jpg", "order": 19}, {"name": "Gregory Scott Cummins", "character": "Ukranian", "id": 44178, "credit_id": "52fe4517c3a36847f80bbdcb", "cast_id": 36, "profile_path": "/jXJlgaYDCPK8lEyA1mC8mD2hjpG.jpg", "order": 20}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4517c3a36847f80bbd7d", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 6.5, "runtime": 111}, "9655": {"poster_path": "/o9f9IciYFTUilP20k4lrrJWPKsd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33889159, "overview": "When her brother decides to ditch for a couple weeks in London, Viola heads over to his elite boarding school, disguises herself as him, and proceeds to fall for one of her soccer teammates. Little does she realize she's not the only one with romantic troubles, as she, as he, gets in the middle of a series of intermingled love affairs.", "video": false, "id": 9655, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "She's the Man", "tagline": "If you wanna chase your dream, sometimes you gotta break the rules.", "vote_count": 146, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0454945", "adult": false, "backdrop_path": "/7ZXksQ9nVSOoPaV441v3n0Fft2b.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2006-03-17", "popularity": 1.11887413646237, "original_title": "She's the Man", "budget": 25000000, "cast": [{"name": "Amanda Bynes", "character": "Viola", "id": 29220, "credit_id": "52fe4517c3a36847f80bbe29", "cast_id": 1, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Duke", "id": 38673, "credit_id": "52fe4517c3a36847f80bbe2d", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Laura Ramsey", "character": "Olivia", "id": 51975, "credit_id": "52fe4517c3a36847f80bbe31", "cast_id": 3, "profile_path": "/4dRnDQ7FZu54ZtLXzWARGWvtStR.jpg", "order": 2}, {"name": "Vinnie Jones", "character": "Dinklage", "id": 980, "credit_id": "52fe4517c3a36847f80bbe35", "cast_id": 4, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 3}, {"name": "David Cross", "character": "Gold", "id": 212, "credit_id": "52fe4517c3a36847f80bbe39", "cast_id": 5, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Julie Hagerty", "character": "Daphne", "id": 14415, "credit_id": "52fe4517c3a36847f80bbe3d", "cast_id": 6, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 5}, {"name": "Robert Hoffman", "character": "Justin", "id": 58368, "credit_id": "52fe4517c3a36847f80bbe41", "cast_id": 7, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 6}, {"name": "Alexandra Breckenridge", "character": "Monique (as Alex Breckenridge)", "id": 58369, "credit_id": "52fe4517c3a36847f80bbe45", "cast_id": 8, "profile_path": "/iDOZg22I9QhVXZni8EpwjY7AqqR.jpg", "order": 7}, {"name": "Jonathan Sadowski", "character": "Paul", "id": 21047, "credit_id": "52fe4517c3a36847f80bbe49", "cast_id": 9, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 8}, {"name": "Amanda Crew", "character": "Kia", "id": 58370, "credit_id": "52fe4517c3a36847f80bbe4d", "cast_id": 10, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 9}, {"name": "Jessica Lucas", "character": "Yvonne", "id": 51989, "credit_id": "52fe4517c3a36847f80bbe51", "cast_id": 11, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 10}, {"name": "Brandon Jay McLaren", "character": "Toby", "id": 58371, "credit_id": "52fe4517c3a36847f80bbe55", "cast_id": 12, "profile_path": "/4E6tZJhsgkyI5VNrZCV91XP7o6o.jpg", "order": 11}, {"name": "Clifton MaCabe Murray", "character": "Andrew (as Clifton Murray)", "id": 58372, "credit_id": "52fe4517c3a36847f80bbe59", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "James Snyder", "character": "Malcolm", "id": 58373, "credit_id": "52fe4517c3a36847f80bbe5d", "cast_id": 14, "profile_path": "/oYb9DQ0NnFchC0ykKgrE5OnOzg5.jpg", "order": 13}, {"name": "James Kirk", "character": "Sebastian", "id": 58374, "credit_id": "52fe4517c3a36847f80bbe61", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe4517c3a36847f80bbe67", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 6.2, "runtime": 105}, "99770": {"poster_path": "/8IOjlMb93aj5H0UZxLNIQLWwpVl.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Asterix crosses the channel to help second-cousin Anticlimax face down Julius Caesar and invading Romans.", "video": false, "id": 99770, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Ast\u00e9rix and Ob\u00e9lix: God Save Britannia", "tagline": "", "vote_count": 71, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vm0i4KIscrTiUsri21z1SOIG4fo.jpg", "poster_path": "/sC6NY40I794YnSNxgDDCnX4B3Se.jpg", "id": 2396, "name": "Asterix and Obelix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1597522", "adult": false, "backdrop_path": "/cvbqQyF4KIWQUViD2UwDCFe4hvq.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "M6 Films", "id": 1115}, {"name": "Morena Films", "id": 10031}, {"name": "Film Kair\u00f2s", "id": 13168}, {"name": "Fidelite Films", "id": 13169}, {"name": "Cinetotal", "id": 13170}], "release_date": "2012-10-17", "popularity": 0.720609314175502, "original_title": "Ast\u00e9rix & Ob\u00e9lix - Au service de Sa Majest\u00e9", "budget": 61000000, "cast": [{"name": "G\u00e9rard Depardieu", "character": "Ob\u00e9lix", "id": 16927, "credit_id": "52fe4a409251416c750e2c45", "cast_id": 5, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 0}, {"name": "\u00c9douard Baer", "character": "Ast\u00e9rix", "id": 41035, "credit_id": "52fe4a409251416c750e2c49", "cast_id": 6, "profile_path": "/bevNDP9RQU1b8UdZPElEw4f9fc9.jpg", "order": 1}, {"name": "Fabrice Luchini", "character": "Jules C\u00e9sar", "id": 28255, "credit_id": "52fe4a409251416c750e2c4d", "cast_id": 7, "profile_path": "/wtdwJeLGUBkXSm0ElDlsGTDZcJD.jpg", "order": 2}, {"name": "Catherine Deneuve", "character": "Cordelia la reine d'Angleterre", "id": 50, "credit_id": "52fe4a409251416c750e2c51", "cast_id": 8, "profile_path": "/5xkwq8GelCwOIVtyZ15LVA0UJGJ.jpg", "order": 3}, {"name": "Guillaume Gallienne", "character": "Jolitorax", "id": 6554, "credit_id": "52fe4a409251416c750e2c55", "cast_id": 9, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 4}, {"name": "Vincent Lacoste", "character": "Goudurix", "id": 83797, "credit_id": "52fe4a409251416c750e2c59", "cast_id": 10, "profile_path": "/ciAbPfdOO5GOl4i6uP52ebvEWGh.jpg", "order": 5}, {"name": "Val\u00e9rie Lemercier", "character": "Miss Macintosh", "id": 62531, "credit_id": "52fe4a409251416c750e2c5d", "cast_id": 11, "profile_path": "/hPUIFiIfMaQvpNmPvAVDxOQuZBS.jpg", "order": 6}, {"name": "Charlotte Le Bon", "character": "Oph\u00e9lia", "id": 1021684, "credit_id": "52fe4a409251416c750e2c61", "cast_id": 12, "profile_path": "/vozgdySw0fnS3ue6AFcTsfHRbYq.jpg", "order": 7}, {"name": "Jean Rochefort", "character": "Lucius Fouinus", "id": 24421, "credit_id": "52fe4a409251416c750e2c65", "cast_id": 13, "profile_path": "/egQw0mikF0oVfZo3kqUXbr622RC.jpg", "order": 8}], "directors": [{"name": "Laurent Tirard", "department": "Directing", "job": "Director", "credit_id": "52fe4a409251416c750e2c2f", "profile_path": null, "id": 64575}], "vote_average": 5.1, "runtime": 110}, "9659": {"poster_path": "/mfmJ0BftkGV5uRkVEsTWM39LRIt.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 100000000, "overview": "In a dystopic future Australia, a vicious biker gang murder a cop's family and make his fight with them personal.", "video": false, "id": 9659, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Mad Max", "tagline": "The Maximum Force Of The Future", "vote_count": 233, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rY4F8uRJN3IWsmtFrT7HO4WKUk0.jpg", "poster_path": "/uuvSvLb3ntGA9B0wx2JskVDSuWi.jpg", "id": 8945, "name": "Mad Max Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079501", "adult": false, "backdrop_path": "/yaps1kzbHVxTpCmuMgWm8zaTdnN.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}, {"name": "Crossroads", "id": 11962}, {"name": "Mad Max Films", "id": 8831}], "release_date": "1979-04-12", "popularity": 2.86647866232518, "original_title": "Mad Max", "budget": 400000, "cast": [{"name": "Mel Gibson", "character": "Mad Max Rockatansky", "id": 2461, "credit_id": "52fe4517c3a36847f80bc023", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Joanne Samuel", "character": "Jessie Rockatansky", "id": 58401, "credit_id": "52fe4517c3a36847f80bc027", "cast_id": 2, "profile_path": "/i7ujQmXVYOixGoufrw8eHydyLL4.jpg", "order": 1}, {"name": "Hugh Keays-Byrne", "character": "Toecutter", "id": 26060, "credit_id": "52fe4517c3a36847f80bc02b", "cast_id": 3, "profile_path": "/oxqu3hO79odBxoVs36p8R3qKQ3A.jpg", "order": 2}, {"name": "Steve Bisley", "character": "Jim Goose, Main Force Patrol Officer", "id": 45211, "credit_id": "52fe4517c3a36847f80bc02f", "cast_id": 4, "profile_path": "/xvGH1V1zAmbyI2aYWoeHIbu0dsU.jpg", "order": 3}, {"name": "Tim Burns", "character": "Johnny the Boy", "id": 1125220, "credit_id": "52fe4517c3a36847f80bc07b", "cast_id": 17, "profile_path": "/gH1IL9VzeFlcdY1CelAgnorp0YP.jpg", "order": 4}, {"name": "Lisa Aldenhoven", "character": "Nurse", "id": 1125222, "credit_id": "52fe4517c3a36847f80bc083", "cast_id": 19, "profile_path": "/3M8TwPn1JnwKHO6iVxSqQJf5Jya.jpg", "order": 6}, {"name": "David Bracks", "character": "Mudguts", "id": 1125223, "credit_id": "52fe4517c3a36847f80bc087", "cast_id": 20, "profile_path": "/sSkpywdUXlK12HRO6oDDztdeCTO.jpg", "order": 7}, {"name": "Bertrand Cadart", "character": "Clunk", "id": 1125224, "credit_id": "52fe4517c3a36847f80bc08b", "cast_id": 21, "profile_path": "/eU23f4xbkuXtA6WXdkXTrKxwQXu.jpg", "order": 8}, {"name": "David Cameron", "character": "Underground Mechanic", "id": 172747, "credit_id": "52fe4517c3a36847f80bc08f", "cast_id": 22, "profile_path": "/kb5sIVxI8HgdD5E7EFCCOvdA2XY.jpg", "order": 9}, {"name": "Robina Chaffey", "character": "Singer", "id": 1125225, "credit_id": "52fe4517c3a36847f80bc093", "cast_id": 23, "profile_path": "/hdrS3dKCyRhnYHqXtkQxFgHeLzv.jpg", "order": 10}, {"name": "Roger Ward", "character": "Fifi", "id": 94809, "credit_id": "5303caba92514161a23b7563", "cast_id": 24, "profile_path": "/2VdXCuxx58iQdeRSAt0R49Ej5if.jpg", "order": 11}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4517c3a36847f80bc035", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 6.5, "runtime": 88}, "50620": {"poster_path": "/kJQPygYB8aNEevZZHRifyYrAdU9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 829000000, "overview": "After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.", "video": false, "id": 50620, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: Breaking Dawn - Part 2", "tagline": "The epic finale that will live forever", "vote_count": 918, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1673434", "adult": false, "backdrop_path": "/hK8gap1Y2zAvFHcKuqe6og15c4b.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-11-16", "popularity": 1.4469053968446, "original_title": "The Twilight Saga: Breaking Dawn - Part 2", "budget": 120000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe47cec3a36847f814961f", "cast_id": 63, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe47cfc3a36847f8149623", "cast_id": 64, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe47cfc3a36847f8149627", "cast_id": 65, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe47cfc3a36847f814962b", "cast_id": 66, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 3}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe47cfc3a36847f814962f", "cast_id": 67, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 4}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe47cfc3a36847f8149633", "cast_id": 68, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 5}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe47cfc3a36847f8149637", "cast_id": 69, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 6}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe47cfc3a36847f814963b", "cast_id": 70, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 7}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe47cfc3a36847f814963f", "cast_id": 71, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 8}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe47cfc3a36847f8149643", "cast_id": 72, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 9}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe47cfc3a36847f8149647", "cast_id": 73, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 10}, {"name": "Jamie Campbell Bower", "character": "Caius", "id": 83356, "credit_id": "52fe47cfc3a36847f814964b", "cast_id": 74, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 11}, {"name": "Maggie Grace", "character": "Irina Denali", "id": 11825, "credit_id": "52fe47cfc3a36847f814964f", "cast_id": 75, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 12}, {"name": "Mackenzie Foy", "character": "Renesmee", "id": 851784, "credit_id": "52fe47cfc3a36847f8149653", "cast_id": 76, "profile_path": "/sC3yotsYEmqoxuaO2xnnqGee4U.jpg", "order": 13}, {"name": "Michael Sheen", "character": "Aro", "id": 3968, "credit_id": "52fe47cfc3a36847f8149657", "cast_id": 77, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 14}, {"name": "Cameron Bright", "character": "Alec", "id": 52414, "credit_id": "52fe47cfc3a36847f814965b", "cast_id": 78, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 15}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe47cfc3a36847f814965f", "cast_id": 79, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 16}, {"name": "MyAnna Buring", "character": "Tanya Denali", "id": 57578, "credit_id": "52fe47cfc3a36847f8149663", "cast_id": 80, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 17}, {"name": "Christopher Heyerdahl", "character": "Marcus", "id": 32887, "credit_id": "52fe47cfc3a36847f8149667", "cast_id": 81, "profile_path": "/imu1EK0I8J5xesKxLweLqqhKq8q.jpg", "order": 18}, {"name": "Julia Jones", "character": "Leah", "id": 87310, "credit_id": "52fe47cfc3a36847f814966b", "cast_id": 82, "profile_path": "/jw08w0ySlHa5qmQWaNp2FLFeAEq.jpg", "order": 19}, {"name": "Booboo Stewart", "character": "Seth", "id": 121868, "credit_id": "52fe47cfc3a36847f814966f", "cast_id": 83, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 20}, {"name": "Andrea Powell", "character": "Sasha", "id": 106949, "credit_id": "54e66c139251416f58000278", "cast_id": 85, "profile_path": "/62rV4dGQTW7G4wZcSsD6AoVul5L.jpg", "order": 21}, {"name": "Bill Tangradi", "character": "Randall", "id": 1212192, "credit_id": "54e66f59c3a3685af10002b2", "cast_id": 86, "profile_path": "/A60IOdfVN8IEOee0KCJask1YVkY.jpg", "order": 22}, {"name": "Christian Camargo", "character": "Eleazar", "id": 122029, "credit_id": "54e677f39251416f520002fb", "cast_id": 87, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 23}, {"name": "Daniel Cudmore", "character": "Felix", "id": 84222, "credit_id": "54e67d799251416f580003eb", "cast_id": 88, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 24}, {"name": "Guri Weinberg", "character": "Stefan", "id": 183820, "credit_id": "54e6805d9251416f4b0004d9", "cast_id": 89, "profile_path": "/q06nuANaAQpY7QpcobUUiEbS4ik.jpg", "order": 25}], "directors": [{"name": "Bill Condon", "department": "Directing", "job": "Director", "credit_id": "52fe47cec3a36847f81495c1", "profile_path": "/lMNARbVEd2VKcEZCBQwy1fPWWVG.jpg", "id": 15557}], "vote_average": 6.0, "runtime": 115}, "83389": {"poster_path": "/mVlosCi4Kckj1iXACJdpSrA9alR.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "The story is set in 1963 in Yokohama. Kokuriko Manor sits on a hill overlooking the harbour. A 16 year-old girl, Umi, lives in that house. Every morning she raises a signal flag facing the sea. The flag means \u201cI pray for safe voyages\u201d. A 17 year-old boy, Shun, always sees this flag from the sea as he rides a tugboat to school. Gradually the pair are drawn to each other but they are faced with a sudden trial. Even so, they keep going without running from facing the hardships of reality.", "video": false, "id": 83389, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "From Up on Poppy Hill", "tagline": "", "vote_count": 73, "homepage": "http://kokurikozaka.jp/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1798188", "adult": false, "backdrop_path": "/xQmK4M4sxAYry1WX4yP2yjWiEh0.jpg", "production_companies": [{"name": "Gkids", "id": 32853}, {"name": "Toho Company", "id": 882}, {"name": "Dentsu", "id": 6452}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "The Walt Disney Company", "id": 10079}, {"name": "Studio Ghibli", "id": 10342}, {"name": "The Yomiuri Shimbun", "id": 11726}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "KDDI Corporation", "id": 11848}, {"name": "Lawson", "id": 11849}], "release_date": "2011-07-16", "popularity": 0.898070369543735, "original_title": "Kokuriko-zaka kara", "budget": 0, "cast": [{"name": "Teruyuki Kagawa", "character": "Tokumaru rijich\u00f4", "id": 46691, "credit_id": "52fe489c9251416c91092797", "cast_id": 2, "profile_path": "/pCOQFnFHPDCtSuYmMT3Q24Yf0SE.jpg", "order": 0}, {"name": "Masami Nagasawa", "character": "Umi Matsuzaki", "id": 95767, "credit_id": "52fe489c9251416c9109279b", "cast_id": 3, "profile_path": "/4vb5KILK1Dex4aJ6qU5rmnpvzW6.jpg", "order": 1}, {"name": "Junichi Okada", "character": "Shun Kazama", "id": 119241, "credit_id": "52fe489c9251416c9109279f", "cast_id": 4, "profile_path": "/bFTZOkLduDdWrFi6bwsTLwAq4XS.jpg", "order": 2}, {"name": "Keiko Takeshita", "character": "Hana Matsuzaki", "id": 548758, "credit_id": "52fe489c9251416c910927eb", "cast_id": 17, "profile_path": null, "order": 3}, {"name": "Yuriko Ishida", "character": "Miki Hokuto", "id": 20330, "credit_id": "52fe489c9251416c910927ef", "cast_id": 18, "profile_path": "/w2EcOwlQ9q8cfW9RQBA2RkAFtHr.jpg", "order": 4}, {"name": "Rumi Hiiragi", "character": "Sachiko Hirok\u00f4ji", "id": 19587, "credit_id": "52fe489c9251416c910927f3", "cast_id": 19, "profile_path": "/gAjyBxRsQKYeZMkYQ6cmEj5DmHD.jpg", "order": 5}, {"name": "Jun Fubuki", "character": "Ryoko Matsuzaki", "id": 119244, "credit_id": "52fe489c9251416c910927f7", "cast_id": 20, "profile_path": "/cLHCn4FSHocEyyf7c6f2CeEg1jb.jpg", "order": 6}, {"name": "Takashi Nait\u00f4", "character": "Yoshio Onodera", "id": 19590, "credit_id": "52fe489c9251416c910927fb", "cast_id": 21, "profile_path": "/ljbNlt6v9a7E9uvnph2qAJ6ba55.jpg", "order": 7}, {"name": "Shunsuke Kazama", "character": "Shir\u00f4 Mizunuma", "id": 1124535, "credit_id": "52fe489d9251416c910927ff", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Haruka Shiraishi", "character": "Sora Matsuzaki", "id": 1124536, "credit_id": "52fe489d9251416c91092807", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Tsubasa Kobayashi", "character": "Riku Matsuzaki", "id": 1124537, "credit_id": "52fe489d9251416c9109280b", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Aoi Teshima", "character": "Yuko", "id": 119242, "credit_id": "52fe489d9251416c9109280f", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Goro Miyazaki", "character": "World History Teacher", "id": 1414, "credit_id": "52fe489d9251416c91092813", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Nao \u014cmori", "character": "Akio Kazama", "id": 58604, "credit_id": "54b0aefbc3a368094e0013bf", "cast_id": 28, "profile_path": "/diWmt4sCQSMeBcZg2sQXqb1d7kd.jpg", "order": 14}], "directors": [{"name": "Goro Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe489c9251416c91092793", "profile_path": null, "id": 1414}], "vote_average": 7.5, "runtime": 91}, "9664": {"poster_path": "/ssGw9nxlwZK0C5kn4pBhWGYn0SY.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17800000, "overview": "The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.", "video": false, "id": 9664, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Flyboys", "tagline": "Inspired by a true story", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0454824", "adult": false, "backdrop_path": "/iaCb2WSKEF4fMnInKfNnaKM2sCd.jpg", "production_companies": [{"name": "Flyboys Films", "id": 6362}, {"name": "Electric Entertainment", "id": 3241}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Skydance Productions", "id": 6277}], "release_date": "2006-09-22", "popularity": 0.282766857207177, "original_title": "Flyboys", "budget": 60000000, "cast": [{"name": "James Franco", "character": "Blaine Rawlings", "id": 17051, "credit_id": "52fe4518c3a36847f80bc227", "cast_id": 1, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Scott Hazell", "character": "Cinema Usher", "id": 58427, "credit_id": "52fe4518c3a36847f80bc22b", "cast_id": 2, "profile_path": "/1NK5aGqQmkcXBQ1nUhSY3RjPCEP.jpg", "order": 1}, {"name": "Mac McDonald", "character": "Sheriff Detweiller", "id": 33403, "credit_id": "52fe4518c3a36847f80bc22f", "cast_id": 3, "profile_path": "/cRKziKEi6eucP7EjV4t24Gyf7Ck.jpg", "order": 2}, {"name": "Philip Winchester", "character": "William Jensen", "id": 58428, "credit_id": "52fe4518c3a36847f80bc233", "cast_id": 4, "profile_path": "/7R2wdpa7dCpaXX5LNKR1NmaHWEZ.jpg", "order": 3}, {"name": "Todd Boyce", "character": "Mr. Jensen", "id": 17354, "credit_id": "52fe4518c3a36847f80bc237", "cast_id": 5, "profile_path": "/3uT1rplcxrKBmhi9vFQpB4Q6Qop.jpg", "order": 4}, {"name": "Karen Ford", "character": "Mrs. Jensen", "id": 58429, "credit_id": "52fe4518c3a36847f80bc23b", "cast_id": 6, "profile_path": "/odkCHzgWMvavkBOFBn9P7wzDl6f.jpg", "order": 5}, {"name": "Ruth Bradley", "character": "Laura", "id": 58430, "credit_id": "52fe4518c3a36847f80bc23f", "cast_id": 7, "profile_path": "/xY7pjK7u6Nn2vIPwIRoE3bq9AeC.jpg", "order": 6}, {"name": "Abdul Salis", "character": "Eugene Skinner", "id": 58431, "credit_id": "52fe4518c3a36847f80bc243", "cast_id": 8, "profile_path": "/oSkRDyeCtQoXSM5Omsdc3xNY2Z3.jpg", "order": 7}, {"name": "Tim Pigott-Smith", "character": "Mr. Lowry", "id": 11276, "credit_id": "52fe4518c3a36847f80bc247", "cast_id": 9, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 8}, {"name": "Tyler Labine", "character": "Briggs Lowry", "id": 51383, "credit_id": "52fe4518c3a36847f80bc24b", "cast_id": 10, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 9}, {"name": "Gail Downey", "character": "Mrs. Lowry", "id": 58432, "credit_id": "52fe4518c3a36847f80bc24f", "cast_id": 11, "profile_path": "/kYEiZdUonPcaqBsgxOoC2cyvOxz.jpg", "order": 10}, {"name": "David Ellison", "character": "Eddie Beagle", "id": 58433, "credit_id": "52fe4518c3a36847f80bc253", "cast_id": 12, "profile_path": "/yDQZvMAUxUwsxLGXpswKh8pD3iC.jpg", "order": 11}, {"name": "Augustin Legrand", "character": "L.T. Giroux", "id": 35083, "credit_id": "52fe4518c3a36847f80bc257", "cast_id": 13, "profile_path": "/dA9vkLOqkJHLuT9iPgc4kKmGpoB.jpg", "order": 12}, {"name": "Keith McErlean", "character": "Vernon Toddman", "id": 58435, "credit_id": "52fe4518c3a36847f80bc25b", "cast_id": 14, "profile_path": "/a6gvSOY4kSKdcfSuFF7BGB04liE.jpg", "order": 13}, {"name": "Jean Reno", "character": "Capt. Thenault", "id": 1003, "credit_id": "52fe4518c3a36847f80bc2b3", "cast_id": 29, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 14}, {"name": "Jennifer Decker", "character": "Lucienne", "id": 56649, "credit_id": "52fe4518c3a36847f80bc2b7", "cast_id": 30, "profile_path": "/dZ6q5fClnAGgFmFB7YV2feRCnGt.jpg", "order": 15}], "directors": [{"name": "Tony Bill", "department": "Directing", "job": "Director", "credit_id": "52fe4518c3a36847f80bc261", "profile_path": "/qq82esVEICuIlW0BOTirLfK4Zmv.jpg", "id": 57138}], "vote_average": 6.0, "runtime": 140}, "9665": {"poster_path": "/6pDBbYmR9iqg3IF8lgyY9pWFiqT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26828365, "overview": "Robert Gould Shaw leads the US Civil War's first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.", "video": false, "id": 9665, "genres": [{"id": 10752, "name": "War"}], "title": "Glory", "tagline": "Their innocence. Their heritage. Their lives.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097441", "adult": false, "backdrop_path": "/1Ez8jxcOkkRn1lrmHeK4PZ9SZMi.jpg", "production_companies": [{"name": "Freddie Fields Productions", "id": 27349}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1989-12-15", "popularity": 1.01559911479881, "original_title": "Glory", "budget": 18000000, "cast": [{"name": "Matthew Broderick", "character": "Col. Robert Gould Shaw", "id": 4756, "credit_id": "52fe4518c3a36847f80bc2d3", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Pvt. Trip", "id": 5292, "credit_id": "52fe4518c3a36847f80bc2d7", "cast_id": 2, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Maj. Cabot Forbes", "id": 2130, "credit_id": "52fe4518c3a36847f80bc2db", "cast_id": 3, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "Sgt. Maj. John Rawlins", "id": 192, "credit_id": "52fe4518c3a36847f80bc2df", "cast_id": 4, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Jihmi Kennedy", "character": "Pvt. Jupiter Sharts", "id": 58426, "credit_id": "52fe4518c3a36847f80bc2e3", "cast_id": 5, "profile_path": "/9WMk7ArsJaxqCaLZF5CDuR37lUI.jpg", "order": 4}, {"name": "Andre Braugher", "character": "Cpl. Thomas Searles", "id": 6861, "credit_id": "53c249580e0a26157f00aeb6", "cast_id": 15, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 5}, {"name": "John Finn", "character": "Sgt. Maj. Mulcahy", "id": 9277, "credit_id": "53c249770e0a26157900aa64", "cast_id": 16, "profile_path": "/18k2kiasthWKgu4qUGF02fWsi7m.jpg", "order": 6}, {"name": "Donovan Leitch, Jr.", "character": "Capt. Charles Fessenden Morse", "id": 58141, "credit_id": "53c2498e0e0a26158900acff", "cast_id": 17, "profile_path": "/zOjh9mjzFmNi3oYJLrSZMDfg9LD.jpg", "order": 7}, {"name": "JD Cullum", "character": "Henry Sturgis Russell", "id": 1184011, "credit_id": "53c249a30e0a26157c00a92b", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Bob Gunton", "character": "Gen. Charles Garrison Harker", "id": 4029, "credit_id": "53c249ca0e0a26157c00a931", "cast_id": 20, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 10}, {"name": "Cliff De Young", "character": "Col. James M. Montgomery", "id": 1272612, "credit_id": "53c249dd0e0a26158500aa1c", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Christian Baskous", "character": "Edward L. Pierce", "id": 1340960, "credit_id": "53c249f00e0a26157600ae9e", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "RonReaco Lee", "character": "Mute Drummer Boy", "id": 84209, "credit_id": "53c24a020e0a26158f00a664", "cast_id": 23, "profile_path": "/2H3vS0LwkhpjxKngTW8pnpAa6OP.jpg", "order": 13}, {"name": "Jay O. Sanders", "character": "Gen. George Crockett Strong", "id": 6067, "credit_id": "53c24a130e0a26157f00aec3", "cast_id": 24, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 14}, {"name": "Alan North", "character": "Gov. John Albion Andrew", "id": 53584, "credit_id": "54ff80f09251413d96000592", "cast_id": 25, "profile_path": "/q79hT4OeYOYzH2WIfqS6VsCmKzg.jpg", "order": 15}, {"name": "Richard Riehle", "character": "Quartermaster", "id": 18262, "credit_id": "5538b7209251412d91004f44", "cast_id": 62, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 16}, {"name": "Peter Michael Goetz", "character": "Francis George Shaw", "id": 20906, "credit_id": "5538b747c3a3684c5b0025cf", "cast_id": 63, "profile_path": "/a2hLcCidETgwlVyQnYy4kXVKUcn.jpg", "order": 17}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe4518c3a36847f80bc2e9", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.9, "runtime": 122}, "91586": {"poster_path": "/qjzk0pig5c7aTLlvKzcegD9PXA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.", "video": false, "id": 91586, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Insidious: Chapter 2", "tagline": "It will take what you love most.", "vote_count": 283, "homepage": "http://www.insidiousch2.com/", "belongs_to_collection": {"backdrop_path": "/bA8UpUuAbET2RMQE96xT7eBPF4Q.jpg", "poster_path": "/fct5wsWu6niDIGRIC4aWEsN5Npa.jpg", "id": 228446, "name": "Insidious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2226417", "adult": false, "backdrop_path": "/59baGxEztxeXW1oFjs8EBgXxTXk.jpg", "production_companies": [{"name": "FilmDistrict", "id": 7263}, {"name": "Sony Pictures", "id": 34}], "release_date": "2013-09-13", "popularity": 1.39007724820276, "original_title": "Insidious: Chapter 2", "budget": 5000000, "cast": [{"name": "Patrick Wilson", "character": "Josh Lambert", "id": 17178, "credit_id": "52fe48dc9251416c750b5935", "cast_id": 3, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Renai Lambert", "id": 9827, "credit_id": "52fe48dc9251416c750b5931", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Ty Simpkins", "character": "Dalton Lambert", "id": 17181, "credit_id": "52fe48dc9251416c750b593d", "cast_id": 5, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 2}, {"name": "Lin Shaye", "character": "Elise Rainier", "id": 7401, "credit_id": "52fe48dc9251416c750b5939", "cast_id": 4, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 3}, {"name": "Barbara Hershey", "character": "Lorraine Lambert", "id": 10767, "credit_id": "52fe48dc9251416c750b5947", "cast_id": 7, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 4}, {"name": "Steve Coulter", "character": "Carl", "id": 80619, "credit_id": "52fe48dc9251416c750b594b", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Leigh Whannell", "character": "Specs", "id": 2128, "credit_id": "52fe48dc9251416c750b594f", "cast_id": 9, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 6}, {"name": "Angus Sampson", "character": "Tucker", "id": 59117, "credit_id": "52fe48dc9251416c750b5953", "cast_id": 10, "profile_path": "/jbUAdNqytgyuPPpEBvM4onQWt3Q.jpg", "order": 7}, {"name": "Andrew Astor", "character": "Foster Lambert", "id": 208524, "credit_id": "52fe48dc9251416c750b5957", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Hank Harris", "character": "Young Carl", "id": 58739, "credit_id": "52fe48dc9251416c750b595b", "cast_id": 12, "profile_path": "/yhMYapvXHZQYXVdeBjeo4jaRN48.jpg", "order": 9}, {"name": "Jocelin Donahue", "character": "Young Lorraine", "id": 78804, "credit_id": "52fe48dc9251416c750b595f", "cast_id": 13, "profile_path": "/4ZMizKgqB8aXhiEvrklHYRpmilW.jpg", "order": 10}, {"name": "Lindsay Seim", "character": "Young Elise Rainier", "id": 1153842, "credit_id": "52fe48dc9251416c750b5963", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Danielle Bisutti", "character": "Mother of Parker Crane", "id": 154839, "credit_id": "52fe48dc9251416c750b5967", "cast_id": 15, "profile_path": "/PmZmuwEYgqZmETwR8rwpe4gVXK.jpg", "order": 12}, {"name": "Tyler Griffin", "character": "Young Parker", "id": 1223444, "credit_id": "52fe48dc9251416c750b596b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Garrett Ryan", "character": "Young Josh", "id": 206505, "credit_id": "52fe48dc9251416c750b596f", "cast_id": 17, "profile_path": "/kjwH7BG5iTO5e6W6kyzgCUC6AUr.jpg", "order": 14}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe48dc9251416c750b592d", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.8, "runtime": 106}, "9667": {"poster_path": "/ts5hSSpgHEcPFpdfk6gmLLgx5k4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21126225, "overview": "A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.", "video": false, "id": 9667, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Jacket", "tagline": "Terror has a new name.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0366627", "adult": false, "backdrop_path": "/A5JvupvtIUDic9tZGyo9iSR1gNW.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Section Eight", "id": 129}, {"name": "Mandalay Pictures", "id": 551}, {"name": "VIP 3 Medienfonds", "id": 827}, {"name": "2929 Productions", "id": 846}, {"name": "Rising Star", "id": 1208}, {"name": "VIP 2 Medienfonds", "id": 3801}], "release_date": "2005-03-04", "popularity": 0.572983072623517, "original_title": "The Jacket", "budget": 29000000, "cast": [{"name": "Adrien Brody", "character": "Jack Starks", "id": 3490, "credit_id": "52fe4518c3a36847f80bc3a3", "cast_id": 4, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Jackie Price", "id": 116, "credit_id": "52fe4518c3a36847f80bc3a7", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Kris Kristofferson", "character": "Dr. Thomas Becker", "id": 10823, "credit_id": "52fe4518c3a36847f80bc3ab", "cast_id": 6, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 2}, {"name": "Jennifer Jason Leigh", "character": "Dr. Beth Lorenson", "id": 10431, "credit_id": "52fe4518c3a36847f80bc3af", "cast_id": 7, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 3}, {"name": "Kelly Lynch", "character": "Jean Price", "id": 6473, "credit_id": "52fe4518c3a36847f80bc3b3", "cast_id": 8, "profile_path": "/20OsGbyUux00wkeL7BFfYnaXwlo.jpg", "order": 4}, {"name": "Brad Renfro", "character": "The Stranger", "id": 51214, "credit_id": "52fe4518c3a36847f80bc3b7", "cast_id": 9, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 5}, {"name": "Daniel Craig", "character": "Rudy Mackenzie", "id": 8784, "credit_id": "52fe4518c3a36847f80bc3bb", "cast_id": 10, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 6}, {"name": "Angel Coulby", "character": "Intern #2", "id": 289370, "credit_id": "52fe4519c3a36847f80bc419", "cast_id": 27, "profile_path": "/qbF4xhP2IbxsiibTHJ2AtrzDPDB.jpg", "order": 7}, {"name": "Steven Mackintosh", "character": "Dr. Hopkins", "id": 978, "credit_id": "52fe4519c3a36847f80bc41d", "cast_id": 28, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 8}, {"name": "Brendan Coyle", "character": "Damon", "id": 74056, "credit_id": "52fe4519c3a36847f80bc421", "cast_id": 29, "profile_path": "/oJm8VYhuYk05rDU1XdDBXBqWka6.jpg", "order": 9}, {"name": "Mackenzie Phillips", "character": "Nurse Harding", "id": 12408, "credit_id": "52fe4519c3a36847f80bc425", "cast_id": 30, "profile_path": "/4FiO7ffdDFWOQuv4MC0NalGSBMD.jpg", "order": 10}, {"name": "Laura Marano", "character": "Young Jackie", "id": 54722, "credit_id": "52fe4519c3a36847f80bc429", "cast_id": 31, "profile_path": "/bP5xvXStD7JFScGZx959FLPmD9S.jpg", "order": 11}, {"name": "Jason Lewis", "character": "Officer Harrison", "id": 32224, "credit_id": "52fe4519c3a36847f80bc42d", "cast_id": 32, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 12}, {"name": "Richard Dillane", "character": "Captain Medley", "id": 176227, "credit_id": "52fe4519c3a36847f80bc431", "cast_id": 33, "profile_path": "/t40mFDjVQoOLLLzqSy41GNmpBSn.jpg", "order": 13}, {"name": "Jonah Lotan", "character": "Intern #1", "id": 181043, "credit_id": "52fe4519c3a36847f80bc435", "cast_id": 34, "profile_path": "/lmtNhavoWRd60aKHMFqsqvR7fCm.jpg", "order": 14}], "directors": [{"name": "John Maybury", "department": "Directing", "job": "Director", "credit_id": "52fe4518c3a36847f80bc393", "profile_path": null, "id": 40307}], "vote_average": 6.5, "runtime": 103}, "9671": {"poster_path": "/uQyFHP0BBQcOVAbfpmiTnj5rKDm.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 174803506, "overview": "When a New York reporter plucks crocodile hunter Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as na\u00efve Dundee negotiates the concrete jungle. Dundee proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.", "video": false, "id": 9671, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Crocodile Dundee", "tagline": "There's a little of him in all of us.", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pI2EqYQCzCRnrpiFHl8rrGp1qW9.jpg", "poster_path": "/byOilboEpWHFiQ7klAZ4LZ6NN0t.jpg", "id": 9332, "name": "Crocodile Dundee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090555", "adult": false, "backdrop_path": "/4yptKoORGkkywMz82b6No2AGvzh.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rimfire Films", "id": 15081}], "release_date": "1986-09-26", "popularity": 0.437314741997996, "original_title": "Crocodile Dundee", "budget": 5000000, "cast": [{"name": "Paul Hogan", "character": "Michael J. 'Crocodile' Dundee", "id": 57147, "credit_id": "52fe4519c3a36847f80bc4eb", "cast_id": 1, "profile_path": "/hNR9JKnEsEKgzKcSBcqtHCkDynQ.jpg", "order": 0}, {"name": "Linda Kozlowski", "character": "Sue Charlton", "id": 57166, "credit_id": "52fe4519c3a36847f80bc4ef", "cast_id": 2, "profile_path": "/9qgl8JSTVOLtVVPshXclSGxiP57.jpg", "order": 1}, {"name": "John Meillon", "character": "Walter Reilly", "id": 42841, "credit_id": "52fe4519c3a36847f80bc4f3", "cast_id": 3, "profile_path": "/dKsqaE8GZ2YjdFREpe17QVVnsGJ.jpg", "order": 2}, {"name": "David Gulpilil", "character": "Neville Bell", "id": 53023, "credit_id": "52fe4519c3a36847f80bc4f7", "cast_id": 4, "profile_path": "/pns5wVD4GNEPo0FwtZHrjGX6j5n.jpg", "order": 3}, {"name": "Michael Lombard", "character": "Sam Charlton", "id": 13938, "credit_id": "52fe4519c3a36847f80bc531", "cast_id": 14, "profile_path": "/3VeGqcvQzJF9Xrl6eXOCoDosS28.jpg", "order": 4}, {"name": "Ritchie Singer", "character": "Con", "id": 1040112, "credit_id": "52fe4519c3a36847f80bc535", "cast_id": 15, "profile_path": "/vLlS5rNEiEPOSuZaxAIex8Y53K6.jpg", "order": 5}, {"name": "Mark Blum", "character": "Richard Mason", "id": 14103, "credit_id": "52fe4519c3a36847f80bc539", "cast_id": 16, "profile_path": "/mXRMbyyUtZ0JBs8aagC5Gn3omnE.jpg", "order": 6}, {"name": "Reginald VelJohnson", "character": "Gus", "id": 7672, "credit_id": "52fe4519c3a36847f80bc53d", "cast_id": 17, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 7}, {"name": "Rik Colitti", "character": "Danny", "id": 164669, "credit_id": "52fe4519c3a36847f80bc541", "cast_id": 18, "profile_path": "/xlOPGilV7vOaT2wxmRyoasTSw5o.jpg", "order": 8}, {"name": "John Snyder", "character": "Pimp", "id": 152408, "credit_id": "52fe4519c3a36847f80bc545", "cast_id": 19, "profile_path": "/aZQoXztNm5C6Rz0ZjIdjV0vHKdO.jpg", "order": 9}], "directors": [{"name": "Peter Faiman", "department": "Directing", "job": "Director", "credit_id": "52fe4519c3a36847f80bc4fd", "profile_path": "/cgTTWI6wtPRETIfeENLdh3hqDUu.jpg", "id": 58453}], "vote_average": 6.4, "runtime": 97}, "9675": {"poster_path": "/xg9EXz9SPJMxnnIMC4f9r8m5izr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109502303, "overview": "Two middle-aged men embark on a spiritual journey through Californian wine country. One of them an unpublished novelist suffering from depression, the other only days away from walking down the aisle. Both meet two beautiful women on their trip and become romantically involved with them.", "video": false, "id": 9675, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sideways", "tagline": "In search of wine. In search of women. In search of themselves.", "vote_count": 128, "homepage": "http://www.foxsearchlight.com/sideways/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hy", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375063", "adult": false, "backdrop_path": "/ow0sx3Sk2BvbtpYMXwAQRNMdIMW.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Michael London Productions", "id": 1187}, {"name": "Sideways Productions Inc.", "id": 12157}], "release_date": "2004-10-22", "popularity": 0.419555589359559, "original_title": "Sideways", "budget": 16000000, "cast": [{"name": "Paul Giamatti", "character": "Miles", "id": 13242, "credit_id": "52fe4519c3a36847f80bc6f9", "cast_id": 1, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 0}, {"name": "Thomas Haden Church", "character": "Jack", "id": 19159, "credit_id": "52fe4519c3a36847f80bc6fd", "cast_id": 2, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 1}, {"name": "Virginia Madsen", "character": "Maya", "id": 12519, "credit_id": "52fe4519c3a36847f80bc701", "cast_id": 3, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 2}, {"name": "Sandra Oh", "character": "Stephanie", "id": 25540, "credit_id": "52fe4519c3a36847f80bc705", "cast_id": 4, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 3}, {"name": "Marylouise Burke", "character": "Miles's Mother", "id": 57823, "credit_id": "52fe4519c3a36847f80bc74b", "cast_id": 16, "profile_path": "/uB5NPE9iXjWsJ119h6ave0UytAm.jpg", "order": 4}, {"name": "Jessica Hecht", "character": "Victoria", "id": 14984, "credit_id": "52fe4519c3a36847f80bc74f", "cast_id": 17, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 5}, {"name": "Missy Doty", "character": "Cammi", "id": 162342, "credit_id": "52fe4519c3a36847f80bc753", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Alysia Reiner", "character": "Christine Erganian", "id": 109740, "credit_id": "52fe4519c3a36847f80bc757", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Shake Tukhmanyan", "character": "Mrs. Erganian", "id": 1127469, "credit_id": "52fe4519c3a36847f80bc75b", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Shaun Duke", "character": "Mike Erganian", "id": 177131, "credit_id": "52fe4519c3a36847f80bc75f", "cast_id": 22, "profile_path": "/4gkGAqQF6ZGvM9hcFZpXaWzKyzl.jpg", "order": 9}, {"name": "Robert Covarrubias", "character": "Miles's Building Manager", "id": 83781, "credit_id": "52fe4519c3a36847f80bc763", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Patrick Gallagher", "character": "Gary the Bartender", "id": 17837, "credit_id": "52fe4519c3a36847f80bc767", "cast_id": 24, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 11}, {"name": "Stephanie Faracy", "character": "Stephanie's Mother", "id": 14105, "credit_id": "52fe4519c3a36847f80bc76b", "cast_id": 25, "profile_path": "/tA4zlFK1ke8U15TxPMZeKdblB8P.jpg", "order": 12}, {"name": "Joe Marinelli", "character": "Frass Canyon Pourer", "id": 12545, "credit_id": "52fe4519c3a36847f80bc76f", "cast_id": 26, "profile_path": "/rgBVeTC6gvhPlQK6D3H0hcj41OH.jpg", "order": 13}, {"name": "M.C. Gainey", "character": "Cammi's Husband", "id": 22132, "credit_id": "52fe4519c3a36847f80bc773", "cast_id": 27, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 14}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe4519c3a36847f80bc70b", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 6.7, "runtime": 126}, "9676": {"poster_path": "/lrYfbCSEFdLfqTI9sZk17KNIUIF.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49111202, "overview": "Lee Blanchard (Aaron Eckhart) and Bucky Bleichert (Josh Hartnett) are former boxers-turned-cops in 1940's Los Angeles. When aspiring young actress Elizabeth Short (Mia Kirshner) turns up dead, Blanchard and Bleichert must grapple with corruption, narcissism, stag films, and family madness as they pursue the killer.", "video": false, "id": 9676, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Black Dahlia", "tagline": "Inspired by the most notorious unsolved murder in California history.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387877", "adult": false, "backdrop_path": "/uCZGYtg0f4uvxOXoHBE5Uvj6Qbn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Millennium Films", "id": 10254}, {"name": "Signature Pictures", "id": 2982}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG III", "id": 10885}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "Art Linson Productions", "id": 8769}, {"name": "Davis-Films", "id": 342}], "release_date": "2006-09-15", "popularity": 0.320907398527537, "original_title": "The Black Dahlia", "budget": 50000000, "cast": [{"name": "Josh Hartnett", "character": "Dwight 'Bucky' Bleichert", "id": 2299, "credit_id": "52fe4519c3a36847f80bc7b1", "cast_id": 1, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Kay Lake", "id": 1245, "credit_id": "52fe4519c3a36847f80bc7b5", "cast_id": 2, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "Lee Blanchard", "id": 6383, "credit_id": "52fe4519c3a36847f80bc7b9", "cast_id": 3, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Hilary Swank", "character": "Madeleine Linscott", "id": 448, "credit_id": "52fe4519c3a36847f80bc7bd", "cast_id": 4, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 3}, {"name": "Mia Kirshner", "character": "Elizabeth Short", "id": 18658, "credit_id": "52fe4519c3a36847f80bc7c1", "cast_id": 5, "profile_path": "/pgQw5mlHRwWKBwLMdMj2jqiwK5D.jpg", "order": 4}, {"name": "Mike Starr", "character": "Det. Russ Millard", "id": 5170, "credit_id": "52fe4519c3a36847f80bc7c5", "cast_id": 6, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 5}, {"name": "Fiona Shaw", "character": "Ramona Linscott", "id": 10981, "credit_id": "52fe4519c3a36847f80bc7c9", "cast_id": 7, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 6}, {"name": "Patrick Fischler", "character": "Deputy DA Ellis Loew", "id": 52801, "credit_id": "52fe4519c3a36847f80bc7cd", "cast_id": 8, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 7}, {"name": "James Otis", "character": "Dolph Bleichert", "id": 58473, "credit_id": "52fe4519c3a36847f80bc7d1", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "John Kavanagh", "character": "Emmett Linscott", "id": 20282, "credit_id": "52fe4519c3a36847f80bc7d5", "cast_id": 10, "profile_path": "/3ElWQEcnhi3lgYtbWPVV9EfExdw.jpg", "order": 9}, {"name": "Troy Evans", "character": "Chief Ted Green", "id": 31006, "credit_id": "52fe4519c3a36847f80bc7d9", "cast_id": 11, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 10}, {"name": "Anthony Russell", "character": "Morrie Friedman", "id": 58474, "credit_id": "52fe4519c3a36847f80bc7dd", "cast_id": 12, "profile_path": "/pEDgSXNYJpqkKFxjUywDYn7pKBE.jpg", "order": 11}, {"name": "Pepe Serna", "character": "Tomas Dos Santos", "id": 1169, "credit_id": "52fe4519c3a36847f80bc7e1", "cast_id": 13, "profile_path": "/geQdZHiHobopH86AKxCRVIn5kga.jpg", "order": 12}, {"name": "Angus MacInnes", "character": "Capt. John Tierney (as Angus MacInnis)", "id": 58475, "credit_id": "52fe4519c3a36847f80bc7e5", "cast_id": 14, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 13}, {"name": "Rachel Miner", "character": "Martha Linscott", "id": 54126, "credit_id": "52fe4519c3a36847f80bc7e9", "cast_id": 15, "profile_path": "/j5BnD83LvDyQwJNzU4EOzv8sluk.jpg", "order": 14}, {"name": "Jemima Rooper", "character": "Lorna Mertz", "id": 62932, "credit_id": "52fe451ac3a36847f80bc835", "cast_id": 30, "profile_path": "/2R1635Z7ezTXcbhEsCF39oteidZ.jpg", "order": 15}, {"name": "Gregg Henry", "character": "Pete Lukins", "id": 2518, "credit_id": "54178074c3a36819a400041b", "cast_id": 31, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 16}, {"name": "Rose McGowan", "character": "Sheryl Saddon", "id": 16850, "credit_id": "541780830e0a2637fd000419", "cast_id": 32, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 17}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4519c3a36847f80bc7ef", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 6.0, "runtime": 121}, "2978": {"poster_path": "/4nN0EYNbOWHJ9UO39maO5Kvcdfa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215394738, "overview": "Five years after they defeated Zuul, the Ghostbusters are out of business. When Dana begins to have ghost problems again, the boys come out of retirement to aid her and hopefully save New York City from a new paranormal threat.", "video": false, "id": 2978, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Ghostbusters II", "tagline": "We're back!", "vote_count": 237, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6Jnlhr2ac8OuDJEowsFLzZY3SXd.jpg", "poster_path": "/vy4CA3MMzyolwur7Xd9CQ0BvSMX.jpg", "id": 2980, "name": "Ghostbusters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097428", "adult": false, "backdrop_path": "/cLYUfMXctGLKMc4sLTP0Wvus4bn.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1989-06-15", "popularity": 1.02064407244852, "original_title": "Ghostbusters II", "budget": 37000000, "cast": [{"name": "Bill Murray", "character": "Dr. Peter Venkman", "id": 1532, "credit_id": "52fe4378c3a36847f8056a43", "cast_id": 5, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Dr. Raymond Stantz", "id": 707, "credit_id": "52fe4378c3a36847f8056a47", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Dana Barrett", "id": 10205, "credit_id": "52fe4378c3a36847f8056a4b", "cast_id": 7, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Harold Ramis", "character": "Dr. Egon Spengler", "id": 1524, "credit_id": "52fe4378c3a36847f8056a4f", "cast_id": 8, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 3}, {"name": "Rick Moranis", "character": "Louis Tully", "id": 8872, "credit_id": "52fe4378c3a36847f8056a77", "cast_id": 15, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 4}, {"name": "Ernie Hudson", "character": "Winston Zeddemore", "id": 8874, "credit_id": "52fe4378c3a36847f8056a7b", "cast_id": 16, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 5}, {"name": "Annie Potts", "character": "Janine Melnitz", "id": 8873, "credit_id": "52fe4378c3a36847f8056a7f", "cast_id": 17, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 6}, {"name": "Peter MacNicol", "character": "Dr. Janosz Poha", "id": 12688, "credit_id": "52fe4378c3a36847f8056a83", "cast_id": 18, "profile_path": "/ekL1Ko8DLp0ketkwRPr4DoDBfq4.jpg", "order": 7}, {"name": "Harris Yulin", "character": "Judge Wexler", "id": 1166, "credit_id": "52fe4378c3a36847f8056a87", "cast_id": 19, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 8}, {"name": "David Margulies", "character": "Mayor Lenny", "id": 8875, "credit_id": "52fe4378c3a36847f8056a8b", "cast_id": 20, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 9}, {"name": "Kurt Fuller", "character": "Jack Hardemeyer", "id": 29685, "credit_id": "52fe4378c3a36847f8056a8f", "cast_id": 21, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 10}, {"name": "Janet Margolin", "character": "The Prosecutor", "id": 10558, "credit_id": "52fe4378c3a36847f8056a93", "cast_id": 22, "profile_path": "/ugN7WTDQxJQvy5795n2GHn3NgfT.jpg", "order": 11}, {"name": "Wilhelm von Homburg", "character": "Vigo", "id": 27585, "credit_id": "52fe4378c3a36847f8056a97", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Mary Ellen Trainor", "character": "Brownstone Mother", "id": 23967, "credit_id": "52fe4378c3a36847f8056a9b", "cast_id": 24, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 13}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4378c3a36847f8056a2d", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.1, "runtime": 108}, "9678": {"poster_path": "/ijfKqbZoZQjer5Oiolxy7hn8L92.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the lord of darkness decides he will not cede his thrown to any of his three sons, the two most powerful of them escape to Earth to create a kingdom for themselves. This action closes the portal filtering sinful souls to Hell and causes Satan to wither away. He must send his most weak but beloved son, Little Nicky, to Earth to return his brothers to Hell.", "video": false, "id": 9678, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Little Nicky", "tagline": "He's Never Been To Earth. He's Never Even Slept Over Some Other Dude's House.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0185431", "adult": false, "backdrop_path": "/1I8jDOv9hefU0pS4q9ANgnIe9ri.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Avery Pix", "id": 1565}, {"name": "New Line Cinema", "id": 12}], "release_date": "2000-11-10", "popularity": 0.758216765398484, "original_title": "Little Nicky", "budget": 85000000, "cast": [{"name": "Adam Sandler", "character": "Nicky", "id": 19292, "credit_id": "52fe451ac3a36847f80bc8bf", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Valerie Veran", "id": 4687, "credit_id": "52fe451ac3a36847f80bc8c3", "cast_id": 2, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Dad", "id": 1037, "credit_id": "52fe451ac3a36847f80bc8c7", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Rhys Ifans", "character": "Adrian", "id": 7026, "credit_id": "52fe451ac3a36847f80bc8cb", "cast_id": 4, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 3}, {"name": "Tommy Lister", "character": "Cassius", "id": 8396, "credit_id": "52fe451ac3a36847f80bc8cf", "cast_id": 5, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 4}, {"name": "Rodney Dangerfield", "character": "Lucifer", "id": 3198, "credit_id": "52fe451ac3a36847f80bc8d3", "cast_id": 6, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 5}, {"name": "Allen Covert", "character": "Todd", "id": 20818, "credit_id": "52fe451ac3a36847f80bc8d7", "cast_id": 7, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 6}, {"name": "Peter Dante", "character": "Peter", "id": 20819, "credit_id": "52fe451ac3a36847f80bc8db", "cast_id": 8, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 7}, {"name": "Jonathan Loughran", "character": "John", "id": 58477, "credit_id": "52fe451ac3a36847f80bc8df", "cast_id": 9, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 8}, {"name": "Robert Smigel", "character": "Beefy", "id": 53684, "credit_id": "52fe451ac3a36847f80bc8e3", "cast_id": 10, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 9}, {"name": "Reese Witherspoon", "character": "Holly", "id": 368, "credit_id": "52fe451ac3a36847f80bc8e7", "cast_id": 11, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 10}, {"name": "Dana Carvey", "character": "Referee", "id": 56159, "credit_id": "52fe451ac3a36847f80bc8eb", "cast_id": 12, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 11}, {"name": "Jon Lovitz", "character": "Peeper", "id": 16165, "credit_id": "52fe451ac3a36847f80bc8ef", "cast_id": 13, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 12}, {"name": "Kevin Nealon", "character": "Gatekeeper", "id": 58478, "credit_id": "52fe451ac3a36847f80bc8f3", "cast_id": 14, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 13}, {"name": "Michael McKean", "character": "Chief of Police", "id": 21731, "credit_id": "52fe451ac3a36847f80bc8f7", "cast_id": 15, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 14}, {"name": "Ozzy Osbourne", "character": "Himself", "id": 12208, "credit_id": "52fe451ac3a36847f80bc92b", "cast_id": 24, "profile_path": "/9EkHsyIW3xjch0MJ6LtrvMmGhdL.jpg", "order": 15}, {"name": "Quentin Tarantino", "character": "Deacon", "id": 138, "credit_id": "52fe451ac3a36847f80bc92f", "cast_id": 25, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 16}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe451ac3a36847f80bc8fd", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.4, "runtime": 90}, "1487": {"poster_path": "/f4g4bd20ZQoPPlTZF8WBYy3vUSs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99318987, "overview": "In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before a demon - Hellboy - has already been conjured. Joining the Allied forces, Hellboy eventually grows to adulthood, serving the cause of good rather than evil.", "video": false, "id": 1487, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Hellboy", "tagline": "From the Dark Side to Our Side.", "vote_count": 546, "homepage": "http://www.sonypictures.com/homevideo/hellboy/", "belongs_to_collection": {"backdrop_path": "/i6WF7cYiogl8g5ryZDbZBw8RNVN.jpg", "poster_path": "/81B1OdGY7f3TVN06eKra25vHzYk.jpg", "id": 17235, "name": "Hellboy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0167190", "adult": false, "backdrop_path": "/13DIK3beAoroeJSdrcYm66s6hal.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Starlite Films", "id": 21497}], "release_date": "2004-04-02", "popularity": 0.863419772072, "original_title": "Hellboy", "budget": 66000000, "cast": [{"name": "Ron Perlman", "character": "Hellboy", "id": 2372, "credit_id": "52fe42f9c3a36847f8030ec5", "cast_id": 1, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 0}, {"name": "Selma Blair", "character": "Liz Sherman", "id": 11826, "credit_id": "52fe42f9c3a36847f8030ec9", "cast_id": 2, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 1}, {"name": "Rupert Evans", "character": "John Myers", "id": 17283, "credit_id": "52fe42f9c3a36847f8030ecd", "cast_id": 3, "profile_path": "/AuPOKHD18bE2jKXONvrMLGVQ744.jpg", "order": 2}, {"name": "John Hurt", "character": "Prof. Bruttenholm", "id": 5049, "credit_id": "52fe42f9c3a36847f8030ed7", "cast_id": 5, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Tom Manning", "id": 4175, "credit_id": "52fe42f9c3a36847f8030f05", "cast_id": 13, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Karel Roden", "character": "Grigori Rasputin", "id": 10841, "credit_id": "52fe42f9c3a36847f8030f09", "cast_id": 14, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 5}, {"name": "Brian Steele", "character": "Sammael", "id": 12359, "credit_id": "52fe42f9c3a36847f8030f0d", "cast_id": 15, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 6}, {"name": "Ladislav Beran", "character": "Karl Ruprecht Kroenen", "id": 66268, "credit_id": "52fe42f9c3a36847f8030f11", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Biddy Hodson", "character": "Ilsa Haupstein", "id": 66269, "credit_id": "52fe42f9c3a36847f8030f15", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Corey Johnson", "character": "Agent Clay", "id": 17199, "credit_id": "52fe42f9c3a36847f8030f19", "cast_id": 18, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 9}, {"name": "Brian Caspe", "character": "Agent Lime", "id": 25730, "credit_id": "52fe42f9c3a36847f8030f1d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "James Babson", "character": "Agent Moss", "id": 25659, "credit_id": "52fe42f9c3a36847f8030f21", "cast_id": 20, "profile_path": "/PsYYzL0CcFhCGyq2rpQq8uHF8n.jpg", "order": 11}, {"name": "Doug Jones", "character": "Abe Sapien", "id": 17005, "credit_id": "52fe42f9c3a36847f8030f25", "cast_id": 21, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 12}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe42f9c3a36847f8030ed3", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.2, "runtime": 122}, "107985": {"poster_path": "/7xZUJMqGBLvhPJqn23UM3yUC5k5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.", "video": false, "id": 107985, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "The World's End", "tagline": "Good food. Fine ales. Total Annihilation.", "vote_count": 552, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1213663", "adult": false, "backdrop_path": "/uTODVVo2EDocnrtvdlOvQw1bO2R.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Universal Pictures", "id": 33}, {"name": "Big Talk Productions", "id": 443}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-07-19", "popularity": 2.0174332913847, "original_title": "The World's End", "budget": 20000000, "cast": [{"name": "Simon Pegg", "character": "Gary King", "id": 11108, "credit_id": "52fe4a8dc3a36847f81d4951", "cast_id": 2, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Nick Frost", "character": "Andrew Knightley", "id": 11109, "credit_id": "52fe4a8dc3a36847f81d4955", "cast_id": 3, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 1}, {"name": "Martin Freeman", "character": "Oliver Chamberlain", "id": 7060, "credit_id": "52fe4a8dc3a36847f81d498f", "cast_id": 14, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 2}, {"name": "Eddie Marsan", "character": "Peter Page", "id": 1665, "credit_id": "52fe4a8dc3a36847f81d498b", "cast_id": 13, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Steven Prince", "id": 14887, "credit_id": "52fe4a8dc3a36847f81d495d", "cast_id": 5, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Rosamund Pike", "character": "Sam Chamberlain", "id": 10882, "credit_id": "52fe4a8dc3a36847f81d4959", "cast_id": 4, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 5}, {"name": "Pierce Brosnan", "character": "Guy Shepherd", "id": 517, "credit_id": "52fe4a8dc3a36847f81d49e1", "cast_id": 33, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 6}, {"name": "David Bradley", "character": "Basil", "id": 11180, "credit_id": "52fe4a8dc3a36847f81d4993", "cast_id": 15, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 7}, {"name": "Thomas Law", "character": "Young Gary", "id": 969561, "credit_id": "52fe4a8dc3a36847f81d499b", "cast_id": 17, "profile_path": "/jvAYxbaPPPHEgMEPhtuzEUDMkC2.jpg", "order": 8}, {"name": "Zachary Bailess", "character": "Young Andy", "id": 1200850, "credit_id": "52fe4a8dc3a36847f81d499f", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Jasper Levine", "character": "Young Steven", "id": 1200851, "credit_id": "52fe4a8dc3a36847f81d49a3", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "James Tarpey", "character": "Young Peter", "id": 1200852, "credit_id": "52fe4a8dc3a36847f81d49a7", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Luke Bromley", "character": "Young Oliver", "id": 206155, "credit_id": "52fe4a8dc3a36847f81d49ab", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Sophie Evans", "character": "Becky Salt", "id": 1200853, "credit_id": "52fe4a8dc3a36847f81d49af", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Samantha White", "character": "Erika Leekes", "id": 1200854, "credit_id": "52fe4a8dc3a36847f81d49b3", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Rose Reynolds", "character": "Tracy Benson", "id": 1200855, "credit_id": "52fe4a8dc3a36847f81d49b7", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Richard Hadfield", "character": "Young Shane", "id": 1200856, "credit_id": "52fe4a8dc3a36847f81d49bb", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Flora Slorach", "character": "Young Sam", "id": 1200857, "credit_id": "52fe4a8dc3a36847f81d49bf", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Francesca Reidie", "character": "Teenage Twins", "id": 1200858, "credit_id": "52fe4a8dc3a36847f81d49c3", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Charlotte Reidie", "character": "Teenage Twins", "id": 1200859, "credit_id": "52fe4a8dc3a36847f81d49c7", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Michael Smiley", "character": "Reverend Green", "id": 17078, "credit_id": "52fe4a8dc3a36847f81d49cb", "cast_id": 29, "profile_path": "/muzJQpsKJ4srfVpyRa7qkrRYWSq.jpg", "order": 20}, {"name": "Alex Austin", "character": "Pale Young Man", "id": 1278121, "credit_id": "52fe4a8dc3a36847f81d49e5", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Jonathan Aris", "character": "Group Leader", "id": 28477, "credit_id": "52fe4a8dc3a36847f81d49e9", "cast_id": 35, "profile_path": "/6RMuwGYfLLGq01LNGBydj9jpTWn.jpg", "order": 22}, {"name": "Jenny Bede", "character": "Fitness Instructor (26)", "id": 1278122, "credit_id": "52fe4a8dc3a36847f81d49ed", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Angie Wallis", "character": "Peter's Wife", "id": 1278123, "credit_id": "52fe4a8dc3a36847f81d49f1", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Paul Bentall", "character": "Peter's Dad", "id": 1278124, "credit_id": "52fe4a8dc3a36847f81d49f5", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Richard Graham", "character": "Head Builder", "id": 26863, "credit_id": "52fe4a8dc3a36847f81d49f9", "cast_id": 39, "profile_path": "/1pKHcTuENyDQV4ayCdC9DZ6FyE4.jpg", "order": 26}, {"name": "Alice Lowe", "character": "Young Lady", "id": 182327, "credit_id": "52fe4a8dc3a36847f81d49fd", "cast_id": 40, "profile_path": "/kpBWGfjNfGZ6aAStg7n6upGj9g3.jpg", "order": 27}, {"name": "Rafe Spall", "character": "Young Man", "id": 28847, "credit_id": "52fe4a8dc3a36847f81d4a01", "cast_id": 41, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 28}, {"name": "Leo Thompson", "character": "Felicity", "id": 1278125, "credit_id": "52fe4a8dc3a36847f81d4a05", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Steve Oram", "character": "Motorcycle Policeman", "id": 219367, "credit_id": "52fe4a8dc3a36847f81d4a09", "cast_id": 43, "profile_path": "/xHlaXXdSROQBIJOD69PCloDShjb.jpg", "order": 30}, {"name": "Julia Deakin", "character": "B & B Landlady", "id": 137471, "credit_id": "52fe4a8dc3a36847f81d4a0d", "cast_id": 44, "profile_path": "/7VdKwLiW7uyKHv7piBJZb3KJO76.jpg", "order": 31}, {"name": "Greg Townley", "character": "Greg", "id": 237162, "credit_id": "52fe4a8dc3a36847f81d4a11", "cast_id": 45, "profile_path": "/mHA3zhlMl1OfVNn1I20O1SJt4j.jpg", "order": 32}, {"name": "Sebastian Zaniesienko", "character": "Seb", "id": 1278127, "credit_id": "52fe4a8dc3a36847f81d4a15", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Luke Scott", "character": "Luke", "id": 1278128, "credit_id": "52fe4a8dc3a36847f81d4a19", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Tyler Dobbs", "character": "Tyler", "id": 1278129, "credit_id": "52fe4a8dc3a36847f81d4a1d", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Samuel Mak", "character": "Sam", "id": 1278130, "credit_id": "52fe4a8dc3a36847f81d4a21", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Teddy Kempner", "character": "Publican 1", "id": 951891, "credit_id": "52fe4a8dc3a36847f81d4a25", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Mark Kempner", "character": "Publican 2", "id": 206847, "credit_id": "52fe4a8dc3a36847f81d4a29", "cast_id": 51, "profile_path": null, "order": 38}, {"name": "Nick Holder", "character": "Publican 3", "id": 206726, "credit_id": "52fe4a8dc3a36847f81d4a2d", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Darren Boyd", "character": "Shane Hawkins", "id": 17123, "credit_id": "52fe4a8dc3a36847f81d4a31", "cast_id": 53, "profile_path": "/1UdRVGrbYF7CqQmKABTruiRu7Mx.jpg", "order": 40}, {"name": "Paul Kennington", "character": "Publican 5", "id": 1278131, "credit_id": "52fe4a8dc3a36847f81d4a35", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Mike Sarne", "character": "Publican 6", "id": 1278132, "credit_id": "52fe4a8dc3a36847f81d4a39", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Reece Shearsmith", "character": "Collaborator", "id": 34551, "credit_id": "52fe4a8dc3a36847f81d4a3d", "cast_id": 56, "profile_path": "/d6oib5uLUMLvw3ebTkQ5Ngc73FO.jpg", "order": 43}, {"name": "Nicholas Burns", "character": "Collaborator", "id": 110076, "credit_id": "52fe4a8dc3a36847f81d4a41", "cast_id": 57, "profile_path": "/30oqK87hjivdrX9AQXAK6COrHw3.jpg", "order": 44}, {"name": "Mark Heap", "character": "Publican 7", "id": 47712, "credit_id": "52fe4a8dc3a36847f81d4a45", "cast_id": 58, "profile_path": "/xingI5wsAsWLmc1EmvfwGfDu3u.jpg", "order": 45}, {"name": "Kelly Franklin", "character": "Kelly", "id": 1278134, "credit_id": "52fe4a8dc3a36847f81d4a49", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "Stacey Franklin", "character": "Stacey", "id": 1278135, "credit_id": "52fe4a8dc3a36847f81d4a4d", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "James Granstrom", "character": "Adrian Keane", "id": 1278136, "credit_id": "52fe4a8dc3a36847f81d4a51", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Gabe Cronnelly", "character": "Upstairs Beehive Man", "id": 1278137, "credit_id": "52fe4a8dc3a36847f81d4a55", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Patricia Franklin", "character": "Upstairs Beehive Lady", "id": 117550, "credit_id": "52fe4a8dc3a36847f81d4a59", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Bill Nighy", "character": "The Network (voice)", "id": 2440, "credit_id": "52fe4a8dc3a36847f81d4997", "cast_id": 16, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 51}, {"name": "Mark Donovan", "character": "Big Ugly Bastard", "id": 211413, "credit_id": "52fe4a8dc3a36847f81d4a5d", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "Ricky Champ", "character": "Big Ugly Bastard", "id": 40478, "credit_id": "52fe4a8dc3a36847f81d4a61", "cast_id": 65, "profile_path": null, "order": 53}, {"name": "Ken Bones", "character": "Publican 13", "id": 91662, "credit_id": "52fe4a8dc3a36847f81d4a65", "cast_id": 66, "profile_path": "/3T5Dibtk4LzPWfdDXTXzW81Xgut.jpg", "order": 54}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe4a8dc3a36847f81d494d", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 6.7, "runtime": 109}, "1491": {"poster_path": "/sRYw9oAiporMpq1GWcYHqmpdeAO.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86915017, "overview": "With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crowned prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.", "video": false, "id": 1491, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Illusionist", "tagline": "Nothing Is What It Seems.", "vote_count": 508, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443543", "adult": false, "backdrop_path": "/dJl5xLVNoIUOyeQdrrc2W9cl88m.jpg", "production_companies": [{"name": "Yari Film Group", "id": 2448}], "release_date": "2006-08-18", "popularity": 1.06404480577611, "original_title": "The Illusionist", "budget": 40000000, "cast": [{"name": "Edward Norton", "character": "Eisenheim", "id": 819, "credit_id": "52fe42f9c3a36847f803103b", "cast_id": 1, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Sophie", "id": 10860, "credit_id": "52fe42f9c3a36847f803103f", "cast_id": 2, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Inspector Uhl", "id": 13242, "credit_id": "52fe42f9c3a36847f8031043", "cast_id": 3, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Rufus Sewell", "character": "Crown Prince Leopold", "id": 17328, "credit_id": "52fe42f9c3a36847f8031047", "cast_id": 4, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "Josef Fischer (as Edward Marsan)", "id": 1665, "credit_id": "52fe42f9c3a36847f8031051", "cast_id": 7, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "Jake Wood", "character": "Jurka", "id": 162489, "credit_id": "52fe42f9c3a36847f8031079", "cast_id": 14, "profile_path": "/kEcRKeXOrp1hpSqex2rwZ1c89G1.jpg", "order": 5}, {"name": "Aaron Taylor-Johnson", "character": "Young Eisenheim", "id": 27428, "credit_id": "52fe42f9c3a36847f803107d", "cast_id": 15, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 6}, {"name": "Eleanor Tomlinson", "character": "Young Sophie", "id": 73357, "credit_id": "52fe42f9c3a36847f8031081", "cast_id": 16, "profile_path": "/1eDkLc1uz20At0UNGMaTgGaooBR.jpg", "order": 7}, {"name": "Karl Johnson", "character": "Doctor / Old Man", "id": 39186, "credit_id": "52fe42f9c3a36847f8031085", "cast_id": 17, "profile_path": "/yxxlHfExQJyWXRgq09X32ZtYv9b.jpg", "order": 8}, {"name": "Vincent Franklin", "character": "Loschek", "id": 43024, "credit_id": "52fe42f9c3a36847f8031089", "cast_id": 18, "profile_path": "/zLOnUc52qcD1ljiRTn98Ej2CCB2.jpg", "order": 9}, {"name": "Nicholas Blane", "character": "Herr Doebler", "id": 133031, "credit_id": "52fe42f9c3a36847f803108d", "cast_id": 19, "profile_path": "/dZ1Z9EPSGItJO4Zv2Eu0d4B9czf.jpg", "order": 10}, {"name": "Philip McGough", "character": "Dr. Hofzinser", "id": 147425, "credit_id": "52fe42f9c3a36847f8031091", "cast_id": 20, "profile_path": "/yE4V4kFxwU0Yl89gZdy4BftgGQv.jpg", "order": 11}, {"name": "Erich Redman", "character": "Count Rainer", "id": 1048648, "credit_id": "52fe42f9c3a36847f8031095", "cast_id": 21, "profile_path": "/b3WSKeKp8SugwS5Af36xdMme8D5.jpg", "order": 12}, {"name": "Michael Carter", "character": "Von Thurnburg", "id": 199055, "credit_id": "52fe42f9c3a36847f8031099", "cast_id": 22, "profile_path": "/rYVKZQ4uYLf7cpAGfdFzDcRNJXw.jpg", "order": 13}], "directors": [{"name": "Neil Burger", "department": "Directing", "job": "Director", "credit_id": "52fe42f9c3a36847f803104d", "profile_path": "/eUDHt2OWYnCwC8FOVIgU2uTPK3x.jpg", "id": 17329}], "vote_average": 6.9, "runtime": 110}, "1493": {"poster_path": "/7ujgPH708pOGvl2Y5IYvXeAGPC2.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 212000000, "overview": "Gracie Hart is a tough-as-nails FBI officer. When her office receives a letter from a terrorist going by the alias \"The Citizen\", they figure out that he's planning his next act at the Miss America beauty pageant. Because Hart is the only female officer at her office, she's chosen to go undercover as the contestant from New Jersey.", "video": false, "id": 1493, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Miss Congeniality", "tagline": "Never Mess With An Agent In A Dress.", "vote_count": 244, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7TIT28YbhAOeQGD2q2hJ9j83jI1.jpg", "poster_path": "/fyjlq7Xi7d3YPLj4MrDDdmOPlNF.jpg", "id": 93220, "name": "Miss Congeniality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0212346", "adult": false, "backdrop_path": "/p25mxAO1ArY8bgZX6Y7B2r3vo0k.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Castle Rock Entertainment", "id": 97}], "release_date": "2000-12-14", "popularity": 1.48208524934342, "original_title": "Miss Congeniality", "budget": 45000000, "cast": [{"name": "Sandra Bullock", "character": "Gracie Hart", "id": 18277, "credit_id": "52fe42fac3a36847f803117d", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Benjamin Bratt", "character": "Eric Matthews", "id": 4589, "credit_id": "52fe42fac3a36847f8031187", "cast_id": 3, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 1}, {"name": "Michael Caine", "character": "Victor Melling", "id": 3895, "credit_id": "52fe42fac3a36847f803118b", "cast_id": 4, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 2}, {"name": "Candice Bergen", "character": "Kathy Morningside", "id": 11850, "credit_id": "52fe42fac3a36847f80311a1", "cast_id": 8, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 3}, {"name": "William Shatner", "character": "Stan Fields", "id": 1748, "credit_id": "52fe42fac3a36847f80311a5", "cast_id": 9, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Ernie Hudson", "character": "Harry McDonald", "id": 8874, "credit_id": "52fe42fac3a36847f80311a9", "cast_id": 10, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 5}, {"name": "John DiResta", "character": "Agent Clonsky", "id": 141484, "credit_id": "52fe42fac3a36847f80311ad", "cast_id": 11, "profile_path": "/iqrCWnEdPctyq1420wK2O8Zj1Bd.jpg", "order": 6}, {"name": "Heather Burns", "character": "Cheryl Frasier, Miss Rhode Island", "id": 26716, "credit_id": "52fe42fac3a36847f80311b1", "cast_id": 12, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 7}, {"name": "Melissa De Sousa", "character": "Karen Krantz, Miss New York", "id": 75696, "credit_id": "52fe42fac3a36847f80311b5", "cast_id": 13, "profile_path": "/n0BJca49x90oN3IcceTCasBQz8b.jpg", "order": 8}, {"name": "Steve Monroe", "character": "Frank Tobin", "id": 131125, "credit_id": "52fe42fac3a36847f80311b9", "cast_id": 14, "profile_path": "/1DSgyYqbUk7wzHbvmLX6eGJYWz7.jpg", "order": 9}, {"name": "Deirdre Quinn", "character": "Mary Jo Wright, Miss Texas", "id": 34247, "credit_id": "52fe42fac3a36847f80311bd", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Wendy Raquel Robinson", "character": "Leslie Davis, Miss California", "id": 52116, "credit_id": "52fe42fac3a36847f80311c1", "cast_id": 16, "profile_path": "/qmPJNsHXmRjdw0opXpFUiyJU1uT.jpg", "order": 11}, {"name": "Asia De Marcos", "character": "Alana Krewson, Miss Hawaii", "id": 141485, "credit_id": "52fe42fac3a36847f80311c5", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Ken Thomas", "character": "Agent Harris", "id": 59456, "credit_id": "52fe42fac3a36847f80311c9", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Gabriel Folse", "character": "Agent Jerry Grant", "id": 141486, "credit_id": "52fe42fac3a36847f80311cd", "cast_id": 19, "profile_path": null, "order": 14}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031183", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 6.0, "runtime": 109}, "50646": {"poster_path": "/n97V1WcpoJ8gBA0pM48Om05o2fN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 142851197, "overview": "At fortysomething, straight-laced Cal Weaver (Steve Carell) is living the dream-good job, nice house, great kids and marriage to his high school sweetheart. But when Cal learns that his wife, Emily (Julianne Moore), has cheated on him and wants a divorce, his \"perfect\" life quickly unravels. Worse, in today's single world, Cal, who hasn't dated in decades, stands out as the epitome of un-smooth. Now spending his free evenings sulking alone at a local bar, the hapless Cal is taken on as wingman and prot\u00e9g\u00e9 to handsome, thirtysomething player Jacob Palmer (Ryan Gosling).", "video": false, "id": 50646, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Crazy, Stupid, Love.", "tagline": "This is stupid", "vote_count": 751, "homepage": "http://crazystupidlove.warnerbros.com/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1570728", "adult": false, "backdrop_path": "/JwsOH0qWCVigWGKJT8Lxs1BIN3.jpg", "production_companies": [{"name": "Carousel Productions (II)", "id": 7312}], "release_date": "2011-07-28", "popularity": 1.74331643309505, "original_title": "Crazy, Stupid, Love.", "budget": 50000000, "cast": [{"name": "Steve Carell", "character": "Cal", "id": 4495, "credit_id": "52fe47d0c3a36847f8149a0f", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Emily", "id": 1231, "credit_id": "52fe47d0c3a36847f8149a13", "cast_id": 4, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Ryan Gosling", "character": "Jacob", "id": 30614, "credit_id": "52fe47d0c3a36847f8149a17", "cast_id": 5, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 2}, {"name": "Emma Stone", "character": "Hannah", "id": 54693, "credit_id": "52fe47d0c3a36847f8149a1b", "cast_id": 6, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 3}, {"name": "Marisa Tomei", "character": "Kate", "id": 3141, "credit_id": "52fe47d0c3a36847f8149a1f", "cast_id": 7, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 4}, {"name": "Kevin Bacon", "character": "David Lindhagen", "id": 4724, "credit_id": "52fe47d0c3a36847f8149a23", "cast_id": 8, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Analeigh Tipton", "character": "Jessica Riley", "id": 124644, "credit_id": "52fe47d0c3a36847f8149a27", "cast_id": 12, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 6}, {"name": "Jonah Bobo", "character": "Robbie Weaver", "id": 51297, "credit_id": "52fe47d0c3a36847f8149a37", "cast_id": 19, "profile_path": "/ujDjz3FtyCA3h2vF0rouoqatGNR.jpg", "order": 7}, {"name": "Joey King", "character": "Molly", "id": 125025, "credit_id": "54d1e7c8c3a3683080002470", "cast_id": 20, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 8}, {"name": "Marisa Tomei", "character": "Kate", "id": 3141, "credit_id": "54d1e7e0c3a368306f002049", "cast_id": 21, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 9}, {"name": "Beth Littleford", "character": "Claire", "id": 79024, "credit_id": "54d1e7f2c3a3687388001fe6", "cast_id": 22, "profile_path": "/fENKh8l0qV6EPS6chqT6ijYwHJt.jpg", "order": 10}, {"name": "John Carroll Lynch", "character": "Bernie", "id": 3911, "credit_id": "54d1e8059251411b69002146", "cast_id": 23, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 11}, {"name": "Kevin Bacon", "character": "David Lindhagen", "id": 4724, "credit_id": "54d1e816925141579e001c84", "cast_id": 24, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 12}, {"name": "Liza Lapira", "character": "Liz", "id": 51998, "credit_id": "54d1e830c3a3687351001d3f", "cast_id": 25, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 13}, {"name": "Josh Groban", "character": "Richard", "id": 117470, "credit_id": "54d1e841c3a3683080002484", "cast_id": 26, "profile_path": "/jQr3NrVZ0hF8EAGSVkU1wIABonQ.jpg", "order": 14}, {"name": "Mekia Cox", "character": "Hip Hairdresser aka Tiffany", "id": 202952, "credit_id": "54d1e852c3a368306f002065", "cast_id": 27, "profile_path": "/mXRELWL75FqINS3V8KeRbOGmqsT.jpg", "order": 15}, {"name": "Julianna Guill", "character": "Madison", "id": 78430, "credit_id": "54d1e8619251411b6b0020db", "cast_id": 28, "profile_path": "/myHcPhxZcDk9yCL2F2yafQudMih.jpg", "order": 16}], "directors": [{"name": "Glenn Ficarra", "department": "Directing", "job": "Director", "credit_id": "52fe47d0c3a36847f8149a05", "profile_path": "/nYiriOot9jZihyuhH7utfTh7vtH.jpg", "id": 56411}, {"name": "John Requa", "department": "Directing", "job": "Director", "credit_id": "52fe47d0c3a36847f8149a0b", "profile_path": null, "id": 56412}], "vote_average": 6.8, "runtime": 118}, "1495": {"poster_path": "/d9GYuT9aMoDi4MPTKYe4M2PwUm4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "MA", "name": "Morocco"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 211643158, "overview": "After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.", "video": false, "id": 1495, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Kingdom of Heaven", "tagline": "Be without fear in the face of your enemies. Safeguard the helpless, and do no wrong", "vote_count": 330, "homepage": "http://www.kingdomofheavendvd.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0320661", "adult": false, "backdrop_path": "/dzMGckpN2xAQDLr2Ddr8CZ3WbYF.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Scott Free Productions", "id": 1645}, {"name": "BK", "id": 19478}, {"name": "KOH", "id": 19479}, {"name": "Reino del Cielo", "id": 19480}, {"name": "Babelsberg Film", "id": 19481}, {"name": "Inside Track 3", "id": 19482}, {"name": "Calle Cruzada", "id": 19483}, {"name": "Dune Films", "id": 19477}, {"name": "Kanzaman", "id": 4169}], "release_date": "2005-05-03", "popularity": 1.29620356547322, "original_title": "Kingdom of Heaven", "budget": 130000000, "cast": [{"name": "Orlando Bloom", "character": "Balian de Ibelin", "id": 114, "credit_id": "52fe42fac3a36847f80312d5", "cast_id": 2, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 0}, {"name": "Eva Green", "character": "Sibylla", "id": 10912, "credit_id": "52fe42fac3a36847f803134b", "cast_id": 25, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Jeremy Irons", "character": "Tiberias", "id": 16940, "credit_id": "52fe42fac3a36847f803134f", "cast_id": 26, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 2}, {"name": "Marton Csokas", "character": "Guy de Lusignan", "id": 20982, "credit_id": "52fe42fac3a36847f803135b", "cast_id": 29, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Reynald de Chatillon", "id": 2039, "credit_id": "52fe42fac3a36847f8031357", "cast_id": 28, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Liam Neeson", "character": "Godfrey de Ibelin", "id": 3896, "credit_id": "52fe42fac3a36847f8031363", "cast_id": 31, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 5}, {"name": "Edward Norton", "character": "King Baldwin", "id": 819, "credit_id": "52fe42fac3a36847f8031387", "cast_id": 40, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 6}, {"name": "Michael Sheen", "character": "Priest", "id": 3968, "credit_id": "52fe42fac3a36847f803135f", "cast_id": 30, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 7}, {"name": "Ghassan Massoud", "character": "Saladin", "id": 70577, "credit_id": "52fe42fac3a36847f8031367", "cast_id": 32, "profile_path": "/zJxirBFZ1Yn31qxAHCK6I34p8FQ.jpg", "order": 8}, {"name": "Velibor Topi\u0107", "character": "Almaric", "id": 34515, "credit_id": "52fe42fac3a36847f8031377", "cast_id": 36, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 9}, {"name": "Alexander Siddig", "character": "Nasir", "id": 2957, "credit_id": "52fe42fac3a36847f803136b", "cast_id": 33, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 10}, {"name": "Khaled Nabawy", "character": "Mullah", "id": 230023, "credit_id": "52fe42fac3a36847f803136f", "cast_id": 34, "profile_path": "/psLyPdGT876tdy4OIw8UwDc97LH.jpg", "order": 11}, {"name": "Kevin McKidd", "character": "English Sergeant", "id": 9013, "credit_id": "52fe42fac3a36847f8031373", "cast_id": 35, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 12}, {"name": "David Thewlis", "character": "Hospitaler", "id": 11207, "credit_id": "52fe42fac3a36847f8031353", "cast_id": 27, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 13}, {"name": "Martin Hancock", "character": "Gravedigger", "id": 28158, "credit_id": "52fe42fac3a36847f8031393", "cast_id": 43, "profile_path": "/dgM78QCzhwi7T8US2GxLytsngke.jpg", "order": 14}, {"name": "Nathalie Cox", "character": "Balian's Wife", "id": 17337, "credit_id": "52fe42fac3a36847f803138f", "cast_id": 42, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 15}, {"name": "Giannina Facio", "character": "Saladin's Sister", "id": 58787, "credit_id": "52fe42fac3a36847f80313a7", "cast_id": 48, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 16}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f80312db", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.3, "runtime": 144}, "1497": {"poster_path": "/eisrpNmBqyknW8WuZib8cGdhctc.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78, "overview": "The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.", "video": false, "id": 1497, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", "tagline": "Cowabunga, it's the new turtle movie.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1VW1ghi8URCo7Ixb7jLMgcS1vR3.jpg", "poster_path": "/9TLc09TqYi0Ct3zmUeHGwVxLHhq.jpg", "id": 1582, "name": "Teenage Mutant Ninja Turtles Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103060", "adult": false, "backdrop_path": "/kcBgrUeBjtDCEUcRfO9JfMtQ6BQ.jpg", "production_companies": [{"name": "Golden Harvest Company", "id": 2521}, {"name": "New Line Cinema", "id": 12}], "release_date": "1991-03-22", "popularity": 0.94314854675916, "original_title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", "budget": 25000000, "cast": [{"name": "Paige Turco", "character": "April O'Neil", "id": 74932, "credit_id": "52fe42fac3a36847f8031409", "cast_id": 2, "profile_path": "/lVRiduEjilaStMw7wCWKtWaUred.jpg", "order": 0}, {"name": "David Warner", "character": "Professor Jordon Perry", "id": 2076, "credit_id": "52fe42fac3a36847f8031455", "cast_id": 17, "profile_path": "/wgp2AlWKveLBOcs8YNuLeZiLsGL.jpg", "order": 1}, {"name": "Michelan Sisti", "character": "Michaelangelo / Soho Man", "id": 77152, "credit_id": "52fe42fac3a36847f803140d", "cast_id": 4, "profile_path": "/1viIojmhmzkuZTvKdbiq08aqVjb.jpg", "order": 2}, {"name": "Leif Tilden", "character": "Donatello / Foot #3", "id": 77153, "credit_id": "52fe42fac3a36847f8031459", "cast_id": 18, "profile_path": "/uaVvRO1eyVLEP73m62GXZQXMPX2.jpg", "order": 3}, {"name": "Kenn Scott", "character": "Raphael", "id": 105174, "credit_id": "52fe42fac3a36847f803145d", "cast_id": 19, "profile_path": "/bOnU2kkaMVlqfwhGOMJYS9KNLzu.jpg", "order": 4}, {"name": "Mark Caso", "character": "Leonardo / News Room Staff", "id": 78214, "credit_id": "52fe42fac3a36847f8031417", "cast_id": 6, "profile_path": "/8WOb0H1eXfgQtOV9jPFsFP2Rsmz.jpg", "order": 5}, {"name": "Kevin Clash", "character": "Splinter", "id": 77156, "credit_id": "52fe42fac3a36847f8031461", "cast_id": 20, "profile_path": "/luyancgvvKgwj6qD39lVEthhhYG.jpg", "order": 6}, {"name": "Ernie Reyes, Jr.", "character": "Keno", "id": 58210, "credit_id": "52fe42fac3a36847f803141b", "cast_id": 7, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 7}, {"name": "Fran\u00e7ois Chau", "character": "Shredder", "id": 60851, "credit_id": "52fe42fac3a36847f8031465", "cast_id": 21, "profile_path": "/r8EocoGAJVky0bQ6gyfxcabuTPz.jpg", "order": 8}, {"name": "Toshishiro Obata", "character": "Tatsu", "id": 953728, "credit_id": "53f98fd0c3a368734c0025fb", "cast_id": 22, "profile_path": "/fgHL5HDrxD4zelKQrzQdARy0WSL.jpg", "order": 9}, {"name": "Raymond Serra", "character": "Chief Sterns", "id": 191557, "credit_id": "53f98fdac3a3687358002740", "cast_id": 23, "profile_path": "/s8tJW3NIa7LeKyQi3JYo7KX8Fcs.jpg", "order": 10}, {"name": "Mark Ginther", "character": "Rahzar", "id": 149731, "credit_id": "53f99009c3a36873550028ce", "cast_id": 25, "profile_path": "/vFyyptcZKJ44O7vEyx9GkGRERE3.jpg", "order": 12}, {"name": "Kurt Bryant", "character": "Tokka", "id": 180830, "credit_id": "53f9903bc3a36873520027b2", "cast_id": 26, "profile_path": "/iV5cWqC72njCHOPCwMhStuXQBWY.jpg", "order": 13}, {"name": "Kevin Nash", "character": "Super Shredder", "id": 135352, "credit_id": "53f99045c3a368735e002754", "cast_id": 27, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 14}, {"name": "Joseph Amodei", "character": "Parlor Owner", "id": 1356291, "credit_id": "53f99050c3a368734f00273d", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Susie Essman", "character": "Soho Woman", "id": 56910, "credit_id": "53f99061c3a368734c002607", "cast_id": 29, "profile_path": "/m7e9tEevLcpp7pqddqUEhJEaWLm.jpg", "order": 16}, {"name": "Vanilla Ice", "character": "Himself", "id": 17338, "credit_id": "53f99071c3a368734f002744", "cast_id": 30, "profile_path": "/zAMN2U7PM75gTheQhlWAD6ttHzb.jpg", "order": 17}, {"name": "Robbie Rist", "character": "Michaelangelo (voice)", "id": 77157, "credit_id": "53f99082c3a3687361002777", "cast_id": 31, "profile_path": "/bFpVHAJNNKOPQ230ALYLepwm1yE.jpg", "order": 18}, {"name": "Brian Tochi", "character": "Leonardo (voice)", "id": 16060, "credit_id": "53f9908dc3a368735e00275f", "cast_id": 32, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 19}, {"name": "Laurie Faso", "character": "Raphael (voice)", "id": 1214184, "credit_id": "53f99098c3a368734c00260d", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Adam Carl", "character": "Donatello (voice)", "id": 179566, "credit_id": "53f990abc3a36873520027ba", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "David McCharen", "character": "Shredder (voice)", "id": 952996, "credit_id": "53f990b8c3a368735b002771", "cast_id": 35, "profile_path": "/EAWYGbRfp68FzDx5HtDWt4zlfN.jpg", "order": 22}, {"name": "Michael McConnohie", "character": "Tatsu (voice)", "id": 81381, "credit_id": "53f990c5c3a368735b002774", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Frank Welker", "character": "Rahzar / Tokka (voice)", "id": 15831, "credit_id": "53f990cfc3a368736100277f", "cast_id": 37, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 24}, {"name": "Michael Jai White", "character": "Audience Man", "id": 64856, "credit_id": "53f990e3c3a368735b002778", "cast_id": 38, "profile_path": "/5iJ5lnq2ttl0uP7MORd6dUHUrIf.jpg", "order": 25}, {"name": "Nick DeMarinis", "character": "Parlor Assistant", "id": 1456197, "credit_id": "5532cb019251417ae300165c", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Kelli Rabke", "character": "Teenage Girl", "id": 1229231, "credit_id": "5532cdb7c3a36848ca0024a6", "cast_id": 44, "profile_path": "/ybIPyM2foLyNCi0IMOhmkdaLWi9.jpg", "order": 27}, {"name": "Lee Spencer", "character": "Foot #1", "id": 154668, "credit_id": "5533bf86c3a3682223005241", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Gianpaolo Bonaca", "character": "Foot #2", "id": 1456484, "credit_id": "5533bfb1c3a368221f0051c8", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Mark Doerr", "character": "Freddy", "id": 85424, "credit_id": "5533c00592514152910054cc", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Tim Parati", "character": "Crew Member", "id": 65171, "credit_id": "5533c063c3a3682dc200006b", "cast_id": 48, "profile_path": "/qu3AMF9AXrAAXKI9MfdxZKW7mgm.jpg", "order": 31}, {"name": "John E. Brady", "character": "TGRI Assistant #1", "id": 1456485, "credit_id": "5533c0e1c3a3682219005a51", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Jon Thompson", "character": "TGRI Worker", "id": 1456486, "credit_id": "5533c15e9251415291005502", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Bill Luhrs", "character": "TGRI Assistant #2", "id": 163431, "credit_id": "5533c245c3a36822260057e8", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Michael Pressman", "character": "News Manager", "id": 59649, "credit_id": "5533c2e59251417ae3003440", "cast_id": 52, "profile_path": "/svlIYwFa9ATEQnM4QD3iz1G59vq.jpg", "order": 35}, {"name": "Rick Colella", "character": "Teenage Thug", "id": 1456493, "credit_id": "5533c37d925141529b0053cb", "cast_id": 53, "profile_path": null, "order": 36}, {"name": "Dewey Weber", "character": "Foot Recruiter", "id": 167676, "credit_id": "5533c3cdc3a368222300529e", "cast_id": 54, "profile_path": "/beGvYqnuTTSeyxCKW77r9dHYlLg.jpg", "order": 37}, {"name": "Sasha Pressman", "character": "Old Woman", "id": 1456495, "credit_id": "5533c429c3a368221f005256", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "David Pressman", "character": "Old Man", "id": 1456497, "credit_id": "5533c4cb92514140b5003718", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Shiek Mahmud-Bey", "character": "Audience Man", "id": 134529, "credit_id": "5533c5c0c3a3682226005852", "cast_id": 57, "profile_path": "/ahbnSbmcZlQLUi2LnzFqxM49FFe.jpg", "order": 40}, {"name": "Lisa Chess", "character": "Audience Woman", "id": 1335583, "credit_id": "5533c655c3a368523e001968", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Earthquake", "character": "Disc Jockey", "id": 1456501, "credit_id": "5533c70c925141529b00542d", "cast_id": 59, "profile_path": null, "order": 42}, {"name": "Mark Grinage", "character": "Dancer #1", "id": 1456505, "credit_id": "5533c7dc92514152910055bb", "cast_id": 60, "profile_path": null, "order": 43}, {"name": "John Henry Huffman IV", "character": "Dancer #2", "id": 1456507, "credit_id": "5533c82fc3a368221f0052e1", "cast_id": 61, "profile_path": null, "order": 44}, {"name": "Everett Fitzgerald", "character": "Dancer #3", "id": 1456508, "credit_id": "5533c8b692514152910055e8", "cast_id": 62, "profile_path": null, "order": 45}, {"name": "Gregory Salata", "character": "Promoter", "id": 1221149, "credit_id": "5533ca11c3a36852de0019a0", "cast_id": 63, "profile_path": null, "order": 46}, {"name": "Mak Wilson", "character": "Promoter's Aide", "id": 102757, "credit_id": "5533cb119251417ae300354f", "cast_id": 64, "profile_path": null, "order": 47}, {"name": "Raul S. Brewster", "character": "Foot Soldier", "id": 1456525, "credit_id": "5533cdd79251417ae3003591", "cast_id": 65, "profile_path": null, "order": 48}, {"name": "Keith Coulouris", "character": "Thug #1", "id": 19717, "credit_id": "5533ce38925141529100566c", "cast_id": 66, "profile_path": "/maEsRcZN6XHdurXyGO1WyhGktGF.jpg", "order": 49}, {"name": "Chris Cox", "character": "Foot Soldier", "id": 1456529, "credit_id": "5533cec2c3a36848ca004587", "cast_id": 67, "profile_path": null, "order": 50}, {"name": "Richard Divizio", "character": "Foot Soldier", "id": 1131169, "credit_id": "5533cf1fc3a368523e001a32", "cast_id": 68, "profile_path": null, "order": 51}, {"name": "Dale Frye", "character": "Foot Soldier", "id": 1456532, "credit_id": "5533cf9d92514125dc0019b0", "cast_id": 69, "profile_path": null, "order": 52}, {"name": "Danny E. Glover", "character": "Foot Soldier", "id": 1456533, "credit_id": "5533d03292514152910056a1", "cast_id": 70, "profile_path": null, "order": 53}, {"name": "Kent Ezzell", "character": "Foot Soldier", "id": 1456534, "credit_id": "5533d068c3a3682dc2000216", "cast_id": 71, "profile_path": null, "order": 54}, {"name": "Ronald W. Herndon Jr.", "character": "Foot Soldier", "id": 1456535, "credit_id": "5533d09992514152950057b7", "cast_id": 72, "profile_path": null, "order": 55}, {"name": "Johnny Holbrook", "character": "Foot Soldier", "id": 1456536, "credit_id": "5533d0cfc3a36822230053ee", "cast_id": 73, "profile_path": null, "order": 56}, {"name": "Charles R. Knowles", "character": "Foot Soldier", "id": 1456537, "credit_id": "5533d1069251416f88000882", "cast_id": 74, "profile_path": null, "order": 57}, {"name": "Kenny Morrison", "character": "Foot Soldier", "id": 112731, "credit_id": "5533d1c0c3a368523e001a74", "cast_id": 75, "profile_path": "/7XDsPAPh27PJvWubTSOORUCsT7Q.jpg", "order": 58}, {"name": "Charles Page", "character": "Foot Soldier", "id": 1456538, "credit_id": "5533d22a9251411014003c8f", "cast_id": 76, "profile_path": null, "order": 59}, {"name": "Daniel Pesina", "character": "Foot Soldier", "id": 99871, "credit_id": "5533d353c3a36848ca00460a", "cast_id": 77, "profile_path": null, "order": 60}, {"name": "Terry D. Rich", "character": "Foot Soldier", "id": 1456539, "credit_id": "5533d372c3a3682dc200025e", "cast_id": 78, "profile_path": null, "order": 61}, {"name": "Scott A. Surgenor", "character": "Foot Soldier", "id": 1456540, "credit_id": "5533d3a2925141529500580c", "cast_id": 79, "profile_path": null, "order": 62}, {"name": "Jeffrey P. Thompson", "character": "Foot Soldier", "id": 1456541, "credit_id": "5533d3d3c3a3682219005cae", "cast_id": 80, "profile_path": null, "order": 63}, {"name": "Michael G. Norris", "character": "Foot Soldier", "id": 1456543, "credit_id": "5533d40492514140b5003899", "cast_id": 81, "profile_path": null, "order": 64}, {"name": "Steven M. Simma", "character": "Foot Soldier", "id": 1456544, "credit_id": "5533d434c3a36852de001a9b", "cast_id": 82, "profile_path": null, "order": 65}, {"name": "Char He Downing", "character": "Foot Soldier", "id": 1456545, "credit_id": "5533d46ac3a36852de001aa2", "cast_id": 83, "profile_path": null, "order": 66}], "directors": [{"name": "Michael Pressman", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031413", "profile_path": "/svlIYwFa9ATEQnM4QD3iz1G59vq.jpg", "id": 59649}], "vote_average": 6.1, "runtime": 88}, "1498": {"poster_path": "/cok0SSxmD7fYeZj6l9XOr2mb0YL.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201965915, "overview": "A quartet of mutated humanoid turtles clash with an uprising criminal gang of ninjas", "video": false, "id": 1498, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Teenage Mutant Ninja Turtles", "tagline": "Heroes in a half shell!", "vote_count": 140, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1VW1ghi8URCo7Ixb7jLMgcS1vR3.jpg", "poster_path": "/9TLc09TqYi0Ct3zmUeHGwVxLHhq.jpg", "id": 1582, "name": "Teenage Mutant Ninja Turtles Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100758", "adult": false, "backdrop_path": "/v4jw4Vu87A3bDq0UoZPShteABIY.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Golden Harvest Company", "id": 2521}], "release_date": "1990-03-30", "popularity": 1.01739034767351, "original_title": "Teenage Mutant Ninja Turtles", "budget": 13500000, "cast": [{"name": "Judith Hoag", "character": "April O'Neal", "id": 45041, "credit_id": "52fe42fac3a36847f8031499", "cast_id": 1, "profile_path": "/mP2EqWWhy6iP2PCbbky78pj10VK.jpg", "order": 0}, {"name": "Elias Koteas", "character": "Casey Jones", "id": 13550, "credit_id": "52fe42fac3a36847f803149d", "cast_id": 2, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 1}, {"name": "Josh Pais", "character": "Raphael (voice) / Passenger In Cab", "id": 6181, "credit_id": "52fe42fac3a36847f80314a1", "cast_id": 3, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 2}, {"name": "David Forman", "character": "Leonardo / Gang Member", "id": 77154, "credit_id": "52fe42fac3a36847f80314ad", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Brian Tochi", "character": "Leonardo (Voice)", "id": 16060, "credit_id": "52fe42fac3a36847f80314bd", "cast_id": 10, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 4}, {"name": "Leif Tilden", "character": "Donatello / Foot Messenger", "id": 77153, "credit_id": "52fe42fac3a36847f80314a9", "cast_id": 5, "profile_path": "/uaVvRO1eyVLEP73m62GXZQXMPX2.jpg", "order": 5}, {"name": "Michelan Sisti", "character": "Michaelangelo / Pizza Man", "id": 77152, "credit_id": "52fe42fac3a36847f80314a5", "cast_id": 4, "profile_path": "/1viIojmhmzkuZTvKdbiq08aqVjb.jpg", "order": 6}, {"name": "Robbie Rist", "character": "Michaelangelo (Voice)", "id": 77157, "credit_id": "52fe42fac3a36847f80314b9", "cast_id": 9, "profile_path": "/bFpVHAJNNKOPQ230ALYLepwm1yE.jpg", "order": 7}, {"name": "Kevin Clash", "character": "Splinter (Voice)", "id": 77156, "credit_id": "52fe42fac3a36847f80314b5", "cast_id": 8, "profile_path": "/luyancgvvKgwj6qD39lVEthhhYG.jpg", "order": 8}, {"name": "James Saito", "character": "The Shredder / Oroko Saki", "id": 77155, "credit_id": "52fe42fac3a36847f80314b1", "cast_id": 7, "profile_path": "/qwiY0k1tHFSmOPMJiwRL2wSEYK0.jpg", "order": 9}, {"name": "David McCharen", "character": "The Shredder / Oroku Saki (voice)", "id": 952996, "credit_id": "53f98e10c3a36873550028a8", "cast_id": 27, "profile_path": "/EAWYGbRfp68FzDx5HtDWt4zlfN.jpg", "order": 10}, {"name": "Sam Rockwell", "character": "Head Thug", "id": 6807, "credit_id": "52fe42fac3a36847f80314d5", "cast_id": 17, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 11}, {"name": "Toshishiro Obata", "character": "Tatsu", "id": 953728, "credit_id": "52fe42fac3a36847f80314c9", "cast_id": 14, "profile_path": "/fgHL5HDrxD4zelKQrzQdARy0WSL.jpg", "order": 12}, {"name": "Michael McConnohie", "character": "Tatsu (voice)", "id": 81381, "credit_id": "53f98e3bc3a3687361002749", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Michael Turney", "character": "Danny Pennington", "id": 1356289, "credit_id": "53f98e4ac3a368735b00274e", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Corey Feldman", "character": "Donatello (Voice)", "id": 3034, "credit_id": "52fe42fac3a36847f80314c1", "cast_id": 11, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 15}, {"name": "Skeet Ulrich", "character": "Thug", "id": 22108, "credit_id": "52fe42fac3a36847f80314c5", "cast_id": 13, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 16}], "directors": [{"name": "Steve Barron", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f80314ff", "profile_path": "/3T5EQ8u1yfz3MIAYV1VQHGLVhSC.jpg", "id": 18308}], "vote_average": 6.7, "runtime": 93}, "9691": {"poster_path": "/xAx5MP7Dg4y85pyS7atX6eWk4Qd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30303072, "overview": "Robert Rath (Sylvester Stallone) is a seasoned hitman who just wants out of the business with no back talk...", "video": false, "id": 9691, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Assassins", "tagline": "In the shadows of life, In the business of death, One man found a reason to live...", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "nl", "name": "Nederlands"}], "imdb_id": "tt0112401", "adult": false, "backdrop_path": "/uDnwgH9sFgTST9M06Y1TkBpRTDF.jpg", "production_companies": [{"name": "Donner/Shuler-Donner Productions", "id": 23397}, {"name": "Evansgideon/Lazar", "id": 25061}, {"name": "Silver Pictures", "id": 1885}, {"name": "Canal+", "id": 5358}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1995-10-06", "popularity": 0.798661925644786, "original_title": "Assassins", "budget": 50000000, "cast": [{"name": "Sylvester Stallone", "character": "Robert Rath", "id": 16483, "credit_id": "52fe451cc3a36847f80bd107", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Antonio Banderas", "character": "Miguel Bain", "id": 3131, "credit_id": "52fe451cc3a36847f80bd10b", "cast_id": 2, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 1}, {"name": "Julianne Moore", "character": "Electra", "id": 1231, "credit_id": "52fe451cc3a36847f80bd10f", "cast_id": 3, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 2}, {"name": "Anatoli Davydov", "character": "Nicolai Tashlinkov", "id": 58556, "credit_id": "52fe451cc3a36847f80bd113", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Muse Watson", "character": "Ketcham", "id": 17348, "credit_id": "52fe451cc3a36847f80bd117", "cast_id": 5, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 4}, {"name": "Steve Kahan", "character": "Alan Branch (as Stephen Kahan)", "id": 14328, "credit_id": "52fe451cc3a36847f80bd11b", "cast_id": 6, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 5}, {"name": "Kelly Rowan", "character": "Jennifer, Electra's Neighbor", "id": 47757, "credit_id": "52fe451cc3a36847f80bd11f", "cast_id": 7, "profile_path": "/uxrGUfhLtqZXhy35r4RsHpZNz6Z.jpg", "order": 6}, {"name": "Reed Diamond", "character": "Bob", "id": 31508, "credit_id": "52fe451cc3a36847f80bd123", "cast_id": 8, "profile_path": "/mASm3pG5IzLMQlORD8v7vb8oEly.jpg", "order": 7}, {"name": "Kai Wulff", "character": "Remy", "id": 42146, "credit_id": "52fe451cc3a36847f80bd127", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Kerry Skalsky", "character": "Buyer with Remy", "id": 58557, "credit_id": "52fe451cc3a36847f80bd12b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "James Douglas Haskins", "character": "Buyer with Remy", "id": 58558, "credit_id": "52fe451cc3a36847f80bd12f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Stephen Liska", "character": "Cop", "id": 58559, "credit_id": "52fe451cc3a36847f80bd133", "cast_id": 12, "profile_path": "/aMpEuoFVA5xd3Pbqs97SkFpJjhe.jpg", "order": 11}, {"name": "John Harms", "character": "Cop", "id": 58560, "credit_id": "52fe451cc3a36847f80bd137", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Edward J. Rosen", "character": "Cemetery Caretaker", "id": 58561, "credit_id": "52fe451cc3a36847f80bd13b", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Christina Orchid", "character": "Dowager", "id": 58562, "credit_id": "52fe451cc3a36847f80bd13f", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe451cc3a36847f80bd145", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 5.8, "runtime": 132}, "9693": {"poster_path": "/bi8wiRcc3zaO9ITDOdl8v7JSpir.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69959751, "overview": "In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.", "video": false, "id": 9693, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Children of Men", "tagline": "The future's a thing of the past.", "vote_count": 464, "homepage": "http://www.universalstudiosentertainment.com/children-of-men/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0206634", "adult": false, "backdrop_path": "/c5jNuPA19oGiEmbh8iFeAi6aHMI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Strike Entertainment", "id": 655}, {"name": "Hit & Run Productions", "id": 11429}], "release_date": "2006-09-22", "popularity": 1.37486655549736, "original_title": "Children of Men", "budget": 76000000, "cast": [{"name": "Clive Owen", "character": "Theo Faron", "id": 2296, "credit_id": "52fe451cc3a36847f80bd2b5", "cast_id": 12, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Michael Caine", "character": "Jasper", "id": 3895, "credit_id": "52fe451cc3a36847f80bd307", "cast_id": 31, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Julianne Moore", "character": "Julian", "id": 1231, "credit_id": "52fe451cc3a36847f80bd30b", "cast_id": 32, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 2}, {"name": "Charlie Hunnam", "character": "Patric", "id": 56365, "credit_id": "52fe451cc3a36847f80bd313", "cast_id": 34, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 2}, {"name": "Chiwetel Ejiofor", "character": "Luke", "id": 5294, "credit_id": "52fe451cc3a36847f80bd317", "cast_id": 35, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 2}, {"name": "Clare-Hope Ashitey", "character": "Kee", "id": 64986, "credit_id": "52fe451cc3a36847f80bd30f", "cast_id": 33, "profile_path": "/KChrY0sg1Hc9oP34oX9usztus5.jpg", "order": 3}, {"name": "Danny Huston", "character": "Nigel", "id": 6413, "credit_id": "52fe451dc3a36847f80bd33f", "cast_id": 44, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "Peter Mullan", "character": "Syd", "id": 3064, "credit_id": "52fe451dc3a36847f80bd343", "cast_id": 45, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 7}, {"name": "Juan Gabriel Yacuzzi", "character": "Baby Diego", "id": 58575, "credit_id": "52fe451dc3a36847f80bd34d", "cast_id": 47, "profile_path": "/dwhmmNlZJf0K2wlLw4uipaP9IXx.jpg", "order": 8}, {"name": "Mishal Husain", "character": "Newsreader", "id": 58576, "credit_id": "52fe451dc3a36847f80bd351", "cast_id": 48, "profile_path": null, "order": 9}, {"name": "Rob Curling", "character": "Newsreader", "id": 58577, "credit_id": "52fe451dc3a36847f80bd355", "cast_id": 49, "profile_path": null, "order": 10}, {"name": "Maria McErlane", "character": "Shirley", "id": 58586, "credit_id": "52fe451dc3a36847f80bd359", "cast_id": 50, "profile_path": "/gVuT7x1gVGBRamYGfaWBAP6im9V.jpg", "order": 11}, {"name": "Michael Haughey", "character": "Mr. Griffiths", "id": 24718, "credit_id": "52fe451dc3a36847f80bd35d", "cast_id": 51, "profile_path": null, "order": 12}, {"name": "Paul Sharma", "character": "Ian", "id": 58587, "credit_id": "52fe451dc3a36847f80bd361", "cast_id": 52, "profile_path": "/7JtZRXtmaKdJ2aAPEP1eqmhl7Bt.jpg", "order": 13}, {"name": "Tehmina Sunny", "character": "Zara", "id": 587822, "credit_id": "52fe451dc3a36847f80bd365", "cast_id": 53, "profile_path": "/5z66omtLm5J0Wikz6dU6EafIFtq.jpg", "order": 14}, {"name": "Michael Klesic", "character": "Rado", "id": 188857, "credit_id": "52fe451dc3a36847f80bd369", "cast_id": 54, "profile_path": "/3dmD5B0DNYOCXMrFwcpr3hieoFp.jpg", "order": 15}, {"name": "Ilario Bisi-Pedro", "character": "Cigar Man", "id": 962011, "credit_id": "52fe451dc3a36847f80bd36d", "cast_id": 55, "profile_path": null, "order": 16}, {"name": "Caroline Lena Olsson", "character": "Caroline", "id": 1006160, "credit_id": "53aedc30c3a3682ed80038c1", "cast_id": 85, "profile_path": null, "order": 17}, {"name": "Dhaffer L'Abidine", "character": "Dhafer", "id": 129014, "credit_id": "53aedc8bc3a3682ef10038d7", "cast_id": 86, "profile_path": "/bVksgnm8Wj3RsqV4YgTP9LwME6A.jpg", "order": 18}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe451cc3a36847f80bd2bb", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 7.0, "runtime": 109}, "9697": {"poster_path": "/hzyMUZBN1UgSKGGkQdrRdQPNnfE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42285169, "overview": "Apartment building superintendent Cleveland Heep rescues what he thinks is a young woman from the pool he maintains. When he discovers that she is actually a character from a bedtime story who is trying to make the journey back to her home, he works with his tenants to protect his new friend from the creatures that are determined to keep her in our world.", "video": false, "id": 9697, "genres": [{"id": 53, "name": "Thriller"}], "title": "Lady in the Water", "tagline": "Time is running out for a happy ending.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452637", "adult": false, "backdrop_path": "/kGojOHeReLbR6m5PgTtYIqM26ph.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "Warner Bros.", "id": 6194}, {"name": "Blinding Edge Pictures", "id": 12236}], "release_date": "2006-07-21", "popularity": 0.509428655378975, "original_title": "Lady in the Water", "budget": 75000000, "cast": [{"name": "Paul Giamatti", "character": "Cleveland Heep", "id": 13242, "credit_id": "52fe451dc3a36847f80bd58f", "cast_id": 1, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 0}, {"name": "Jeffrey Wright", "character": "Mr. Dury", "id": 2954, "credit_id": "52fe451dc3a36847f80bd593", "cast_id": 3, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 1}, {"name": "Bob Balaban", "character": "Harry Farber", "id": 12438, "credit_id": "52fe451dc3a36847f80bd597", "cast_id": 4, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 2}, {"name": "Sarita Choudhury", "character": "Anna Ran", "id": 20275, "credit_id": "52fe451dc3a36847f80bd59b", "cast_id": 5, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 3}, {"name": "Cindy Cheung", "character": "Young-Soon Choi", "id": 58619, "credit_id": "52fe451dc3a36847f80bd59f", "cast_id": 6, "profile_path": "/7BMISfQFjHTBO1yFPYNISHpg0vG.jpg", "order": 4}, {"name": "M. Night Shyamalan", "character": "Vick Ran", "id": 11614, "credit_id": "52fe451dc3a36847f80bd5a3", "cast_id": 7, "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "order": 5}, {"name": "Freddy Rodr\u00edguez", "character": "Reggie", "id": 6862, "credit_id": "52fe451dc3a36847f80bd5a7", "cast_id": 8, "profile_path": "/iP6RXaUNTj953RoL8jK3iTV2441.jpg", "order": 6}, {"name": "Bill Irwin", "character": "Mr. Leeds", "id": 58549, "credit_id": "52fe451dc3a36847f80bd5ab", "cast_id": 9, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 7}, {"name": "Mary Beth Hurt", "character": "Mrs. Bell", "id": 54782, "credit_id": "52fe451dc3a36847f80bd5af", "cast_id": 10, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 8}, {"name": "Noah Gray-Cabey", "character": "Joey Dury", "id": 17302, "credit_id": "52fe451dc3a36847f80bd5b3", "cast_id": 11, "profile_path": "/YjgGNEvgKfayP9OAVhWOiWaAUa.jpg", "order": 9}, {"name": "Joseph D. Reitman", "character": "Long Haired Smoker", "id": 58620, "credit_id": "52fe451dc3a36847f80bd5b7", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Jared Harris", "character": "Goatee Smoker", "id": 15440, "credit_id": "52fe451dc3a36847f80bd5bb", "cast_id": 13, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 11}, {"name": "Grant Monohon", "character": "Emaciated Smoker", "id": 7463, "credit_id": "52fe451dc3a36847f80bd5bf", "cast_id": 14, "profile_path": "/6zGv9HQvuGjsqBB0qetoAd3RYVA.jpg", "order": 12}, {"name": "John Boyd", "character": "One-Eyebrow Smoker", "id": 58621, "credit_id": "52fe451dc3a36847f80bd5c3", "cast_id": 15, "profile_path": "/28TTucFQTEY2TU6GmKoTYP5oXTP.jpg", "order": 13}, {"name": "Bryce Dallas Howard", "character": "Story", "id": 18997, "credit_id": "52fe451dc3a36847f80bd5eb", "cast_id": 22, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 14}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe451dc3a36847f80bd5c9", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 5.4, "runtime": 110}, "251": {"poster_path": "/rtxy3cplRFPUvruZajpcoxOQ7bi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 505000000, "overview": "Gothamites Sam and Molly see their romance shattered when a street thug kills Sam during a mugging. But love endures beyond the grave when a spectral Sam learns that Molly is in danger and he must find a way to warn her before she suffers his fate.", "video": false, "id": 251, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Ghost", "tagline": "A love that will last forever.", "vote_count": 322, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099653", "adult": false, "backdrop_path": "/rgyMubnjg883VdJUKKwASijyAFc.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1990-07-12", "popularity": 0.526287602265523, "original_title": "Ghost", "budget": 22000000, "cast": [{"name": "Patrick Swayze", "character": "Sam Wheat", "id": 723, "credit_id": "52fe422dc3a36847f8009f2f", "cast_id": 2, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 0}, {"name": "Demi Moore", "character": "Molly Jensen", "id": 3416, "credit_id": "52fe422dc3a36847f8009f33", "cast_id": 3, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Tony Goldwyn", "character": "Carl Bruner", "id": 3417, "credit_id": "52fe422dc3a36847f8009f9f", "cast_id": 25, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 3}, {"name": "Whoopi Goldberg", "character": "Oda Mae Brown", "id": 2395, "credit_id": "52fe422dc3a36847f8009fa3", "cast_id": 26, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 4}, {"name": "Vincent Schiavelli", "character": "Subway Ghost", "id": 3418, "credit_id": "52fe422dc3a36847f8009f37", "cast_id": 4, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 5}, {"name": "Vivian Bonnell", "character": "Ortisha", "id": 3419, "credit_id": "52fe422dc3a36847f8009f3b", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Armelia McQueen", "character": "Oda Mae's Sister", "id": 3420, "credit_id": "52fe422dc3a36847f8009f3f", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Gail Boggs", "character": "Oda Mae's Sister", "id": 3422, "credit_id": "52fe422dc3a36847f8009f43", "cast_id": 7, "profile_path": null, "order": 8}, {"name": "Stephen Root", "character": "Police Sgt.", "id": 17401, "credit_id": "52fe422dc3a36847f8009f47", "cast_id": 8, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 9}, {"name": "Angelina Estrada", "character": "Rosa Santiago", "id": 3424, "credit_id": "52fe422dc3a36847f8009f4b", "cast_id": 9, "profile_path": null, "order": 9}, {"name": "Augie Blunt", "character": "Orlando", "id": 3425, "credit_id": "52fe422dc3a36847f8009f4f", "cast_id": 10, "profile_path": null, "order": 10}, {"name": "Rick Aviles", "character": "Willie Lopez", "id": 3432, "credit_id": "52fe422dc3a36847f8009f93", "cast_id": 22, "profile_path": "/p4do7d8TKPbdQ2IkF5vx8uHLh93.jpg", "order": 12}, {"name": "Phil Leeds", "character": "Emergency Room Ghost", "id": 3433, "credit_id": "52fe422dc3a36847f8009f97", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Alma Beltran", "character": "Woman Ghost", "id": 3434, "credit_id": "52fe422dc3a36847f8009f9b", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe422dc3a36847f8009f2b", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.5, "runtime": 127}, "58857": {"poster_path": "/7Vr1c98X9JaKW6K95Xm6KBqiqDg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}], "revenue": 17054213, "overview": "Cult director Takeshi Miike delivers a bravado period action film set at the end of Japan's feudal era in which a group of unemployed samurai are enlisted to bring down a sadistic lord and prevent him from ascending to the throne and plunging the country into a war-torn future.", "video": false, "id": 58857, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "13 Assassins", "tagline": "Take up your sword.", "vote_count": 83, "homepage": "http://www.13assassins.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1436045", "adult": false, "backdrop_path": "/3XNpANIIv8O49oTD31suUdhINHH.jpg", "production_companies": [{"name": "Toho Company", "id": 882}, {"name": "Sedic International", "id": 7912}], "release_date": "2010-09-09", "popularity": 0.592108950136495, "original_title": "J\u00fbsan-nin no shikaku", "budget": 6000000, "cast": [{"name": "K\u014dji Yakusho", "character": "Shinzaemon Shimada", "id": 18056, "credit_id": "52fe4976c3a36847f819b419", "cast_id": 2, "profile_path": "/mG4niNLZbyKHEfCA7EJP8vsi7rV.jpg", "order": 0}, {"name": "Takayuki Yamada", "character": "Shinrouko", "id": 74377, "credit_id": "52fe4976c3a36847f819b41d", "cast_id": 3, "profile_path": "/piORAl3VEo7U26ql0GiDStrJqWO.jpg", "order": 1}, {"name": "Y\u00fbsuke Iseya", "character": "Koyata", "id": 70209, "credit_id": "52fe4976c3a36847f819b421", "cast_id": 4, "profile_path": "/5GhcLQLicLe8xdJlnV7ic7Dtjr5.jpg", "order": 2}, {"name": "Gor\u00f4 Inagaki", "character": "Lord Naritsugu Matsudaira", "id": 228466, "credit_id": "52fe4976c3a36847f819b425", "cast_id": 5, "profile_path": "/e0XFhvME3jjxbCCQxyCRshznnFf.jpg", "order": 3}, {"name": "Kazue Fukiishi", "character": "Tsuya / Upashi", "id": 58601, "credit_id": "52fe4976c3a36847f819b429", "cast_id": 6, "profile_path": "/lI7rlsaDa7H4xSAtYQNckEV48ie.jpg", "order": 4}, {"name": "Hiroki Matsukata", "character": "Kuranaga", "id": 228560, "credit_id": "52fe4976c3a36847f819b42d", "cast_id": 7, "profile_path": "/sIrwOKmpNVOZWivWCwUwHZZAWEm.jpg", "order": 5}, {"name": "Tsuyoshi Ihara", "character": "", "id": 33516, "credit_id": "54be7398c3a3687c40006e6f", "cast_id": 12, "profile_path": "/5MLcKIGrfIDbxlc7u3XDrPOAj1M.jpg", "order": 6}, {"name": "Ikki Sawamura", "character": "", "id": 70124, "credit_id": "54be739fc3a3681da0004297", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Arata Furuta", "character": "", "id": 146785, "credit_id": "54be73a59251416e6000691d", "cast_id": 14, "profile_path": "/lghQZHrGVED17jCQxOiLnKzfCQQ.jpg", "order": 8}, {"name": "Sousuke Takaoka", "character": "", "id": 105405, "credit_id": "54be73af9251411d6a00de98", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Seiji Rokkaku", "character": "", "id": 1179321, "credit_id": "54be73ba9251416eae00647d", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Kazuki Namioka", "character": "", "id": 226738, "credit_id": "54be73c7c3a3681421009cba", "cast_id": 17, "profile_path": "/gncP6GrWoM94a6kfrXcb3gWcnsa.jpg", "order": 11}, {"name": "K\u00f4en Kond\u00f4", "character": "", "id": 107106, "credit_id": "54be73cec3a368389c006e97", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Yuma Ishigaki", "character": "", "id": 46365, "credit_id": "54be73d7c3a3686c6100cbd6", "cast_id": 19, "profile_path": "/viSZEbZcAp4NqsNIe1OnRKmHUrJ.jpg", "order": 13}, {"name": "Masataka Kubota", "character": "", "id": 1087773, "credit_id": "54be73e4c3a3681421009cc2", "cast_id": 20, "profile_path": "/2EuoN4R2DCFjQlQsHUjke058d3o.jpg", "order": 14}, {"name": "Masachika Ichimura", "character": "", "id": 9717, "credit_id": "54be73eec3a3686c6b00f7dc", "cast_id": 21, "profile_path": "/PewyrEczJmfsef4FB8zln50Hre.jpg", "order": 15}, {"name": "K\u00f4shir\u00f4 Matsumoto", "character": "", "id": 228527, "credit_id": "54be73ffc3a3687c40006e7c", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Masaaki Uchino", "character": "", "id": 999725, "credit_id": "54be740e9251416eae006485", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Ken Mitsuishi", "character": "", "id": 120351, "credit_id": "54be74149251411d7700d443", "cast_id": 24, "profile_path": "/qdUdKjaT2Ho20JoB5ChnfnReN8z.jpg", "order": 18}, {"name": "Ittoku Kishibe", "character": "", "id": 13281, "credit_id": "54be742292514148b000a7e2", "cast_id": 25, "profile_path": "/zisEtz9j0k1AjExiSsgxMdhOYMh.jpg", "order": 19}, {"name": "Mikijiro Hira", "character": "", "id": 118408, "credit_id": "54be742ac3a3681da00042b4", "cast_id": 26, "profile_path": "/sgyM0a3jqFVuNsEFBC8QleKQPN.jpg", "order": 20}, {"name": "Mitsuki Tanimura", "character": "", "id": 118577, "credit_id": "54be74349251411d6a00de9e", "cast_id": 27, "profile_path": "/44o4Coq0GficqAd4tsul39T903P.jpg", "order": 21}, {"name": "Takumi Saito", "character": "", "id": 115700, "credit_id": "54be743c9251416e60006935", "cast_id": 28, "profile_path": "/7fXgSjScY8HjyVajMZNi9vvIuOR.jpg", "order": 22}, {"name": "Shinnosuke Abe", "character": "", "id": 1039311, "credit_id": "54be745fc3a3681da00042b9", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Meguru Kat\u00f4", "character": "", "id": 150773, "credit_id": "54be7468c3a368389c006ea5", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Kazutoshi Yokoyama", "character": "", "id": 1095960, "credit_id": "54be7474c3a368389c006ea9", "cast_id": 31, "profile_path": "/hSrVYQeeWbZfv96CnkXNCq1DQ5q.jpg", "order": 25}], "directors": [{"name": "Takashi Miike", "department": "Directing", "job": "Director", "credit_id": "52fe4976c3a36847f819b415", "profile_path": "/hFpUsxCjrZNiyHAGsIPWlZl2uTI.jpg", "id": 17282}], "vote_average": 7.0, "runtime": 141}, "1687": {"poster_path": "/ctKDFrtD5WLnUPehQDDWt8lOkV6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12348905, "overview": "The world is shocked by the appearance of two talking chimpanzees, who arrived mysteriously in a U.S. spacecraft. They become the toast of society; but one man believes them to be a threat to the human race.", "video": false, "id": 1687, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Escape from the Planet of the Apes", "tagline": "Meet baby Milo who has Washington terrified.", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2BQc7pXBU7zWGWMJDQBDuV5X8ra.jpg", "poster_path": "/n9nUdnx1awdQeHC6FTiNohr2fiT.jpg", "id": 1709, "name": "Planet of the Apes (Original) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0067065", "adult": false, "backdrop_path": "/ky9wlRARSDYgHVWU39iXCappHLx.jpg", "production_companies": [{"name": "APJAC Productions", "id": 12943}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1971-05-20", "popularity": 0.569004477701496, "original_title": "Escape from the Planet of the Apes", "budget": 2500000, "cast": [{"name": "Roddy McDowall", "character": "Cornelius", "id": 7505, "credit_id": "52fe430cc3a36847f8036841", "cast_id": 1, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 0}, {"name": "Kim Hunter", "character": "Dr. Zira", "id": 10539, "credit_id": "52fe430cc3a36847f8036845", "cast_id": 2, "profile_path": "/nB44EysedphcIWftSqyyG2qBYk8.jpg", "order": 1}, {"name": "Bradford Dillman", "character": "Dr. Lewis Dixon", "id": 18647, "credit_id": "52fe430cc3a36847f8036849", "cast_id": 3, "profile_path": "/zmoOkQTh6c7VwQlEl86r73pYFFw.jpg", "order": 2}, {"name": "Natalie Trundy", "character": "Dr. Stephanie 'Stevie' Branton", "id": 18648, "credit_id": "52fe430cc3a36847f803684d", "cast_id": 4, "profile_path": "/50ljrtCFeFQRFURoSgf1hrgdCPw.jpg", "order": 3}, {"name": "Eric Braeden", "character": "Dr. Otto Hasslein", "id": 8544, "credit_id": "52fe430cc3a36847f8036851", "cast_id": 5, "profile_path": "/6dEqM2zylkopoZtr6quXW5i7W0V.jpg", "order": 4}, {"name": "William Windom", "character": "The President", "id": 8499, "credit_id": "52fe430cc3a36847f8036855", "cast_id": 6, "profile_path": "/nTqbMx3o9rk6Q5PfS3fwh5LEbGw.jpg", "order": 5}, {"name": "Sal Mineo", "character": "Dr. Milo", "id": 2770, "credit_id": "52fe430cc3a36847f8036859", "cast_id": 7, "profile_path": "/eqI5jNcsntOCtSjTUdacR72grlI.jpg", "order": 6}, {"name": "Albert Salmi", "character": "E-1", "id": 12692, "credit_id": "52fe430cc3a36847f803685d", "cast_id": 8, "profile_path": "/z7dpRaZTt3ETMx48cvMBgcQAN97.jpg", "order": 7}, {"name": "Jason Evers", "character": "E-2", "id": 16089, "credit_id": "52fe430cc3a36847f8036861", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "John Randolph", "character": "Committee Chairman", "id": 18649, "credit_id": "52fe430cc3a36847f8036865", "cast_id": 10, "profile_path": "/4mfEMVfzxPuRRcVBtcPyIXF5KoE.jpg", "order": 9}, {"name": "M. Emmet Walsh", "character": "Aide", "id": 588, "credit_id": "54a1fba19251414e28008db2", "cast_id": 30, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 10}, {"name": "Ricardo Montalban", "character": "Armando", "id": 1793, "credit_id": "54a202209251414e28008ed4", "cast_id": 31, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 11}], "directors": [{"name": "Don Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f803686b", "profile_path": "/eE5H6GSOgqCM5rWHMTDbMYMTXBb.jpg", "id": 9108}], "vote_average": 6.2, "runtime": 98}, "9714": {"poster_path": "/z6ugEdjGuY4qcX1ymdV2CTVSvKN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "9-year-old Alex Pruitt is home alone with the chicken pox. Turns out, due to a mix-up among nefarious spies, Alex was given a toy car concealing a top-secret microchip. Now Alex must fend off the spies as they try break into his house to get it back.", "video": false, "id": 9714, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Home Alone 3", "tagline": "Ready for more. Much more.", "vote_count": 131, "homepage": "http://www.ha3.com/", "belongs_to_collection": {"backdrop_path": "/ghu5A45jtbizDTwHb1iJWVTdmnF.jpg", "poster_path": "/zYPsleQJo1n1rBPlecJBRb3iwSO.jpg", "id": 9888, "name": "Home Alone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119303", "adult": false, "backdrop_path": "/gt8Pe0H2kdm99yuHYDs8goKbTkn.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1997-12-12", "popularity": 1.15475520232083, "original_title": "Home Alone 3", "budget": 32000000, "cast": [{"name": "Alex D. Linz", "character": "Alex Pruitt", "id": 15789, "credit_id": "52fe4520c3a36847f80bdfd3", "cast_id": 1, "profile_path": "/fkFBjpfC3Wm97SozMrIERc01uyt.jpg", "order": 0}, {"name": "Olek Krupa", "character": "Peter Beaupre", "id": 53573, "credit_id": "52fe4520c3a36847f80bdfd7", "cast_id": 2, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 1}, {"name": "Rya Kihlstedt", "character": "Alice Ribbons", "id": 58724, "credit_id": "52fe4520c3a36847f80bdfdb", "cast_id": 3, "profile_path": "/juIQskVzdLjXfyLgJMg7pitDR7M.jpg", "order": 2}, {"name": "Lenny Von Dohlen", "character": "Burton Jernigan", "id": 15799, "credit_id": "52fe4520c3a36847f80bdfdf", "cast_id": 4, "profile_path": "/7duYOdfUgAX7JL1zsXaKZEhuEVY.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Molly Pruitt", "id": 1245, "credit_id": "52fe4520c3a36847f80bdfe9", "cast_id": 8, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Seth Smith", "character": "Stan Pruitt", "id": 134712, "credit_id": "52fe4520c3a36847f80bdfff", "cast_id": 12, "profile_path": "/uHGa5v9V597j1UIDWAz29771U8P.jpg", "order": 5}, {"name": "Haviland Morris", "character": "Karen Pruitt", "id": 16181, "credit_id": "53f7f6bac3a36873610005d0", "cast_id": 13, "profile_path": "/4lFaYG2lyob69bFXBZJ1GdkZjwj.jpg", "order": 6}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe4520c3a36847f80bdfe5", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.3, "runtime": 102}, "1523": {"poster_path": "/nLVPcPrymafgVv64ZfaHp90KGKx.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48027970, "overview": "Nicholas Garrigan, a young doctor from Scotland, decides it is time for an adventure after he finishes his formal education. He decides to try his luck in Uganda. He arrives during the downfall of president Obote. General Idi Amin comes to power and asks him to become his personal doctor. When will Nicholas realize Amin is not the friend of the nation, but a brutal dictator?", "video": false, "id": 1523, "genres": [{"id": 18, "name": "Drama"}], "title": "The Last King of Scotland", "tagline": "Charming. Magnetic. Murderous.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0455590", "adult": false, "backdrop_path": "/p7WgP9egrM3hEogrhrLiHA8QD1r.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "DNA Films", "id": 284}, {"name": "Filmfour", "id": 6705}, {"name": "UK Film Council", "id": 2452}, {"name": "Scottish Screen", "id": 698}, {"name": "Cowboy Films", "id": 245}, {"name": "Slate Films", "id": 20369}, {"name": "Tatfilm", "id": 20370}], "release_date": "2006-10-18", "popularity": 0.596925712973838, "original_title": "The Last King of Scotland", "budget": 6000000, "cast": [{"name": "Forest Whitaker", "character": "Idi Amin", "id": 2178, "credit_id": "52fe42fac3a36847f8031577", "cast_id": 2, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 0}, {"name": "James McAvoy", "character": "Dr. Nicholas Garrigan", "id": 5530, "credit_id": "52fe42fac3a36847f803157b", "cast_id": 3, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Simon McBurney", "character": "British Diplomat", "id": 16358, "credit_id": "52fe42fac3a36847f803157f", "cast_id": 4, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 2}, {"name": "Gillian Anderson", "character": "Sarah Merrit", "id": 12214, "credit_id": "52fe42fac3a36847f80315f5", "cast_id": 24, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 3}, {"name": "Kerry Washington", "character": "Kay Amin", "id": 11703, "credit_id": "52fe42fbc3a36847f80315f9", "cast_id": 25, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 4}, {"name": "David Oyelowo", "character": "Dr. Thomas Junju", "id": 35013, "credit_id": "52fe42fbc3a36847f80315fd", "cast_id": 26, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 5}, {"name": "Abby Mukiibi Nkaaga", "character": "Masanga", "id": 35014, "credit_id": "52fe42fbc3a36847f8031601", "cast_id": 27, "profile_path": "/pzdNP1SchevZg49hSuy4bQzK0Ya.jpg", "order": 6}, {"name": "Adam Kotz", "character": "Dr. David Merrit", "id": 35015, "credit_id": "52fe42fbc3a36847f8031605", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Barbara Rafferty", "character": "Mrs. Garrigan", "id": 35018, "credit_id": "52fe42fbc3a36847f803160d", "cast_id": 31, "profile_path": "/udNUPk7YctlEaYNXNbEQ5kbdNYS.jpg", "order": 8}, {"name": "David Ashton", "character": "Dr. Garrigan - Senior", "id": 35017, "credit_id": "530b6fc09251411108004fb7", "cast_id": 37, "profile_path": "/ypmKMcnGHoAvKLRuJjDTBB6ZjWW.jpg", "order": 9}, {"name": "Sarah Nagayi", "character": "Tolu", "id": 1033153, "credit_id": "52fe42fbc3a36847f8031611", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Stephen Rwangyezi", "character": "Jonah Wasswa", "id": 962605, "credit_id": "530b6f3792514168dc00103c", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Sam Okelo", "character": "Bonny", "id": 984315, "credit_id": "530b6f649251411111005196", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Chris Wilson", "character": "Perkins", "id": 54654, "credit_id": "530b6f9392514168dc001042", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Dick Stockley", "character": "Times Journalist", "id": 1296173, "credit_id": "530b6fa59251411114004e8a", "cast_id": 36, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031573", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 7.2, "runtime": 121}, "9718": {"poster_path": "/hi8whfL7t6cL2LITLJjzJ7UWuZA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162966177, "overview": "Lifelong friends and national idols Ricky Bobby and Cal Naughton Jr. have earned their NASCAR stripes with their uncanny knack of finishing races in the first and second slots, respectively, and slinging catchphrases like \"Shake and bake!\" But when a rival French driver coasts onto the track to challenge their records, they'll have to floor it to retain their top-dog status.", "video": false, "id": 9718, "genres": [{"id": 35, "name": "Comedy"}], "title": "Talladega Nights: The Ballad of Ricky Bobby", "tagline": "The story of a man who could only count to #1", "vote_count": 109, "homepage": "http://www.sonypictures.com/homevideo/talladeganights/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0415306", "adult": false, "backdrop_path": "/glBFNYHKkOZpKBe7Io5mjUcGekV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2006-08-04", "popularity": 0.809316652738974, "original_title": "Talladega Nights: The Ballad of Ricky Bobby", "budget": 72500000, "cast": [{"name": "Will Ferrell", "character": "Ricky Bobby", "id": 23659, "credit_id": "52fe4521c3a36847f80be1a5", "cast_id": 8, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "John C. Reilly", "character": "Cal Naughton, Jr.", "id": 4764, "credit_id": "52fe4521c3a36847f80be1a9", "cast_id": 9, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 1}, {"name": "Gary Cole", "character": "Reese Bobby", "id": 21163, "credit_id": "52fe4521c3a36847f80be189", "cast_id": 1, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Austin Crim", "character": "10-Year-Old Cal", "id": 58736, "credit_id": "52fe4521c3a36847f80be19d", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jake Johnson", "character": "5-Year-Old Ricky", "id": 125168, "credit_id": "52fe4521c3a36847f80be21d", "cast_id": 31, "profile_path": null, "order": 5}, {"name": "Leslie Bibb", "character": "Carley Bobby", "id": 57451, "credit_id": "52fe4521c3a36847f80be219", "cast_id": 30, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 7}, {"name": "Amy Adams", "character": "Susan", "id": 9273, "credit_id": "52fe4521c3a36847f80be221", "cast_id": 32, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 7}, {"name": "Jane Lynch", "character": "Lucy Bobby", "id": 43775, "credit_id": "52fe4521c3a36847f80be18d", "cast_id": 2, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 8}, {"name": "David Koechner", "character": "Hershell", "id": 28638, "credit_id": "52fe4521c3a36847f80be1b1", "cast_id": 11, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 9}, {"name": "Adam McKay", "character": "Terry Cheveaux", "id": 55710, "credit_id": "52fe4521c3a36847f80be1ad", "cast_id": 10, "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "order": 11}, {"name": "Lorrie Bess Crumley", "character": "Schoolteacher", "id": 58734, "credit_id": "52fe4521c3a36847f80be195", "cast_id": 4, "profile_path": null, "order": 12}, {"name": "Jack McBrayer", "character": "Glenn", "id": 58737, "credit_id": "52fe4521c3a36847f80be1b9", "cast_id": 13, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 15}, {"name": "Michael Clarke Duncan", "character": "Lucius Washington", "id": 61981, "credit_id": "52fe4521c3a36847f80be1a1", "cast_id": 7, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 16}, {"name": "Ian Roberts", "character": "Kyle", "id": 13101, "credit_id": "52fe4521c3a36847f80be1b5", "cast_id": 12, "profile_path": "/yVLXoRloTMZGoZIoaFLcyPrp1yV.jpg", "order": 16}, {"name": "Jason Davis", "character": "Waffle House Manager", "id": 58733, "credit_id": "52fe4521c3a36847f80be191", "cast_id": 3, "profile_path": "/l1Vv7xhGGi9u2thzD4glDxzlm1L.jpg", "order": 17}, {"name": "John D. King", "character": "ESPN Reporter", "id": 58738, "credit_id": "52fe4521c3a36847f80be1bd", "cast_id": 14, "profile_path": null, "order": 17}, {"name": "Luke Bigham", "character": "10-Year-Old Ricky", "id": 58735, "credit_id": "52fe4521c3a36847f80be199", "cast_id": 5, "profile_path": null, "order": 18}, {"name": "Pat Hingle", "character": "Mr. Dennit, Sr.", "id": 3798, "credit_id": "52fe4521c3a36847f80be1c1", "cast_id": 15, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 18}, {"name": "Sacha Baron Cohen", "character": "Jean Girard", "id": 6730, "credit_id": "52fe4521c3a36847f80be225", "cast_id": 33, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 18}, {"name": "Andy Richter", "character": "Gregory", "id": 28637, "credit_id": "52fe4521c3a36847f80be229", "cast_id": 34, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 19}, {"name": "Mos Def", "character": "Mos Def", "id": 4239, "credit_id": "52fe4521c3a36847f80be22d", "cast_id": 35, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 20}, {"name": "Elvis Costello", "character": "Elvis Costello", "id": 47990, "credit_id": "52fe4521c3a36847f80be231", "cast_id": 36, "profile_path": "/iwSEIAAfvT7ZLvWgi9zqIyfs2BM.jpg", "order": 21}, {"name": "Ed Lauter", "character": "John Hanafin", "id": 21523, "credit_id": "52fe4521c3a36847f80be235", "cast_id": 37, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 22}, {"name": "Molly Shannon", "character": "Mrs. Dennit", "id": 28640, "credit_id": "53f589320e0a267f8d004570", "cast_id": 38, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 23}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe4521c3a36847f80be1c7", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.2, "runtime": 116}, "75258": {"poster_path": "/4oBoAsIGEw9z4R5XqhtuVmpznGk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "First appearing in J.M. Barrie's 1904 stage play and subsequent novel, Peter Pan or The Boy Who Wouldn't Grow Up, the fictional Tinker Bell, a fairy, is the central character in the \"Disney Fairies\" series of computer-animated television and films produced by DisneyToon Studios. The fourth installment of the series is Tinker Bell and the Mysterious Winter Woods. Each of the productions uses one of the four seasons as a subplot for the fairies' latest escapades, with \"winter\" closing out the \"year.\"", "video": false, "id": 75258, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Secret of the Wings", "tagline": "Two Worlds. One Magical Secret.", "vote_count": 82, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nTEOjP7JpFa9VZlawzqNBy4g5KY.jpg", "id": 315595, "name": "Tinker Bell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1217213", "adult": false, "backdrop_path": "/wMpL6qA67gTupcwXV8w6VIJzLxa.jpg", "production_companies": [{"name": "Prana Animation Studios", "id": 22135}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2012-10-23", "popularity": 1.48464326987156, "original_title": "Secret of the Wings", "budget": 0, "cast": [{"name": "Mae Whitman", "character": "Tinker Bell", "id": 52404, "credit_id": "52fe48f9c3a368484e1141f3", "cast_id": 3, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 0}, {"name": "Lucy Liu", "character": "Silvermist (voice)", "id": 140, "credit_id": "52fe48f9c3a368484e1141f7", "cast_id": 4, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Jesse McCartney", "character": "Terence", "id": 49915, "credit_id": "52fe48f9c3a368484e114201", "cast_id": 7, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 2}, {"name": "Lucy Hale", "character": "Periwinkle", "id": 205307, "credit_id": "52fe48f9c3a368484e114205", "cast_id": 8, "profile_path": "/osMiB2nzn0Dedtv0AkyOCDuNmqb.jpg", "order": 3}, {"name": "Anjelica Huston", "character": "Queen Clarion", "id": 5657, "credit_id": "52fe48f9c3a368484e114209", "cast_id": 9, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 4}, {"name": "Matt Lanter", "character": "Sled", "id": 34202, "credit_id": "52fe48f9c3a368484e11420d", "cast_id": 10, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 5}, {"name": "Megan Hilty", "character": "Rosetta", "id": 146748, "credit_id": "52fe48f9c3a368484e114211", "cast_id": 11, "profile_path": "/1mmJSmnMjL7RS93ndFBJnPsAXvf.jpg", "order": 6}, {"name": "Pamela Adlon", "character": "Vidia", "id": 21063, "credit_id": "52fe48f9c3a368484e114215", "cast_id": 12, "profile_path": "/8zunKeNg9XTpmDQjokeEi3K6hvG.jpg", "order": 7}, {"name": "Raven-Symon\u00e9", "character": "Iridessa", "id": 66896, "credit_id": "52fe48f9c3a368484e114219", "cast_id": 13, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 8}, {"name": "Angela Bartys", "character": "Fawn", "id": 93842, "credit_id": "52fe48f9c3a368484e114221", "cast_id": 15, "profile_path": "/iOt35bRDbdOOXVeW5b3ElfOowK7.jpg", "order": 10}, {"name": "Timothy Dalton", "character": "Lord Milori", "id": 10669, "credit_id": "5430f2e0c3a36811430011e7", "cast_id": 25, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 11}, {"name": "Jeff Bennett", "character": "Dewey / Clank", "id": 34982, "credit_id": "5430f30bc3a36831ac002914", "cast_id": 26, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 12}, {"name": "Debby Ryan", "character": "Spike", "id": 123846, "credit_id": "5430f3540e0a2658b2001229", "cast_id": 27, "profile_path": "/x4NZXxKM0B8fI84OvqeLN9W44gL.jpg", "order": 13}, {"name": "Grey DeLisle", "character": "Gliss", "id": 15761, "credit_id": "5430f372c3a3681091001206", "cast_id": 28, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 14}, {"name": "Rob Paulsen", "character": "Bobble", "id": 43125, "credit_id": "5430f38a0e0a265872001248", "cast_id": 29, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 15}, {"name": "Dee Bradley Baker", "character": "Additional Voices", "id": 23680, "credit_id": "5430f3a50e0a26464300294f", "cast_id": 30, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 16}], "directors": [{"name": "Roberts Gannaway", "department": "Directing", "job": "Director", "credit_id": "52fe48f9c3a368484e114227", "profile_path": "/VtgixrvPeTluyAB1po1hY3W6oA.jpg", "id": 210053}, {"name": "Peggy Holmes", "department": "Directing", "job": "Director", "credit_id": "52fe48f9c3a368484e11422d", "profile_path": null, "id": 80672}], "vote_average": 6.5, "runtime": 92}, "9725": {"poster_path": "/pm3Xco3FqxJ7qe6syRxZ8WONljQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Five years after the horrible bloodbath at Camp Crystal Lake, it seems Jason Voorhees and his demented mother are in the past. Paul opens up a new camp close to the infamous site, ignoring warnings to stay away, and a sexually-charged group of counselors follow -- including child psychologist major Ginny. But Jason has been hiding out all this time, and now he's ready for revenge.", "video": false, "id": 9725, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Friday the 13th Part 2", "tagline": "The body count continues...", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082418", "adult": false, "backdrop_path": "/fr7h9vSacOHqe7l1X3Kbj8a2See.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1981-05-01", "popularity": 0.856399184325751, "original_title": "Friday the 13th Part 2", "budget": 0, "cast": [{"name": "Amy Steel", "character": "Ginny Field", "id": 58710, "credit_id": "52fe4522c3a36847f80be573", "cast_id": 1, "profile_path": "/mO8bYH4O6LnYW9wOTWm9CKzGToU.jpg", "order": 0}, {"name": "John Furey", "character": "Paul Holt", "id": 55571, "credit_id": "52fe4522c3a36847f80be577", "cast_id": 2, "profile_path": "/dttETPmEg7mt39T9URx19IedPLD.jpg", "order": 1}, {"name": "Adrienne King", "character": "Alice Hardy", "id": 37470, "credit_id": "52fe4522c3a36847f80be57b", "cast_id": 3, "profile_path": "/xCS2BI8ulvypH1cNVtMGwwr50zt.jpg", "order": 2}, {"name": "Kirsten Baker", "character": "Terri", "id": 58711, "credit_id": "52fe4522c3a36847f80be57f", "cast_id": 4, "profile_path": "/4ERXWP4D7wRS90k4M0YMUtZcAYq.jpg", "order": 3}, {"name": "Betsy Palmer", "character": "Mrs. Pamela Voorhees", "id": 37469, "credit_id": "52fe4522c3a36847f80be5a7", "cast_id": 11, "profile_path": "/fobAvVbDO5InXgZT2AoVduefQKj.jpg", "order": 4}, {"name": "Lauren-Marie Taylor", "character": "Vickie", "id": 1048670, "credit_id": "52fe4522c3a36847f80be5ab", "cast_id": 12, "profile_path": "/36zBTF6UfIq9moVmPOh7dekmczh.jpg", "order": 5}, {"name": "Walt Gorney", "character": "Crazy Ralph", "id": 1014310, "credit_id": "52fe4522c3a36847f80be5af", "cast_id": 13, "profile_path": "/uUyk6drqyF7y76eSzX8QpfuTKUj.jpg", "order": 6}, {"name": "Stuart Charno", "character": "Ted", "id": 55931, "credit_id": "533863d49251417da7002f9c", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Marta Kober", "character": "Sandra", "id": 92758, "credit_id": "533863f59251417dad002f48", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Russell Todd", "character": "Scott", "id": 102436, "credit_id": "533864119251417daa002fff", "cast_id": 16, "profile_path": "/olSzNmPi4EuahT7SK2VZj7xde6C.jpg", "order": 9}, {"name": "Tom McBride", "character": "Mark", "id": 1036511, "credit_id": "5338642f9251417d9e00302b", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Bill Randolph", "character": "Jeff", "id": 1234924, "credit_id": "533864479251417da4002fd6", "cast_id": 18, "profile_path": null, "order": 11}], "directors": [{"name": "Steve Miner", "department": "Directing", "job": "Director", "credit_id": "52fe4522c3a36847f80be585", "profile_path": "/yk90jxBifKosxEyP8CITJk1BTtt.jpg", "id": 58712}], "vote_average": 6.8, "runtime": 87}, "9726": {"poster_path": "/xxVoHo9Z9CZzRdkzj1IxrWYTQWT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Max Skinner (Russell Crowe) is a highly successful investment expert with no time for life outside work. When his estranged uncle dies, Max inherits the vineyard in France where he grew up as a child, and his first intention is to sell the vineyard as quickly as possible. But after spending unexpected time at the Vineyard in France, he discovers a part of himself that he had lost and experiences romance and a blossoming new love affair with a beautiful French woman that changes his life forever.", "video": false, "id": 9726, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Good Year", "tagline": "An investment broker inherits a chateau and vineyard and discovers a new laid-back lifestyle.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0401445", "adult": false, "backdrop_path": "/qJx2FWavjwxS58EZMBEXn44YY31.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2006-09-09", "popularity": 0.459065882782304, "original_title": "A Good Year", "budget": 35000000, "cast": [{"name": "Russell Crowe", "character": "Max Skinner", "id": 934, "credit_id": "52fe4522c3a36847f80be64b", "cast_id": 3, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Marion Cotillard", "character": "Fanny Chenal", "id": 8293, "credit_id": "52fe4522c3a36847f80be68b", "cast_id": 20, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 1}, {"name": "Albert Finney", "character": "Uncle Henry Skinner", "id": 3926, "credit_id": "52fe4522c3a36847f80be647", "cast_id": 2, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Charlie Willis", "id": 2441, "credit_id": "52fe4522c3a36847f80be673", "cast_id": 14, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Abbie Cornish", "character": "Christie Roberts", "id": 37260, "credit_id": "52fe4522c3a36847f80be6a3", "cast_id": 26, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 4}, {"name": "Freddie Highmore", "character": "Young Max Skinner", "id": 1281, "credit_id": "52fe4522c3a36847f80be643", "cast_id": 1, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 5}, {"name": "Didier Bourdon", "character": "Francis Duflot", "id": 59031, "credit_id": "52fe4522c3a36847f80be67f", "cast_id": 17, "profile_path": "/47yBrtrRwIRH5yMOCcvvpEadZxl.jpg", "order": 6}, {"name": "Isabelle Candelier", "character": "Ludivine Duflot", "id": 59032, "credit_id": "52fe4522c3a36847f80be683", "cast_id": 18, "profile_path": "/Ve00yna9ftHbw75MsFZh0vQRNY.jpg", "order": 7}, {"name": "Archie Panjabi", "character": "Gemma", "id": 128645, "credit_id": "52fe4523c3a36847f80be765", "cast_id": 72, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 8}, {"name": "Rafe Spall", "character": "Kenny", "id": 28847, "credit_id": "52fe4522c3a36847f80be64f", "cast_id": 4, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 9}, {"name": "Richard Coyle", "character": "Amis", "id": 52890, "credit_id": "52fe4522c3a36847f80be653", "cast_id": 6, "profile_path": "/4EVfNa7ZO6zSFDviiRvIOyoU9Ro.jpg", "order": 10}, {"name": "Valeria Bruni Tedeschi", "character": "Nathalie Auzet", "id": 5077, "credit_id": "52fe4522c3a36847f80be69b", "cast_id": 24, "profile_path": "/n4WmQHkRwOIp1bpN3lbkJ9BK53z.jpg", "order": 11}, {"name": "Kenneth Cranham", "character": "Sir Nigel", "id": 26258, "credit_id": "52fe4522c3a36847f80be687", "cast_id": 19, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 12}, {"name": "Daniel Mays", "character": "Bert the Doorman", "id": 1670, "credit_id": "52fe4522c3a36847f80be663", "cast_id": 10, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 13}, {"name": "Giannina Facio", "character": "Maitre D'", "id": 58787, "credit_id": "52fe4522c3a36847f80be66f", "cast_id": 13, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 14}, {"name": "Ben Righton", "character": "Trader #1", "id": 58783, "credit_id": "52fe4522c3a36847f80be657", "cast_id": 7, "profile_path": null, "order": 15}, {"name": "Patrick Kennedy", "character": "Trader #2", "id": 14432, "credit_id": "52fe4522c3a36847f80be65b", "cast_id": 8, "profile_path": "/hWeYeOkoBBUlRLmmOGGwkZf22Lz.jpg", "order": 16}, {"name": "Ali Rhodes", "character": "20-Something Beauty", "id": 59029, "credit_id": "52fe4522c3a36847f80be65f", "cast_id": 9, "profile_path": null, "order": 17}, {"name": "Nila Aalia", "character": "Newscaster #1", "id": 58785, "credit_id": "52fe4522c3a36847f80be667", "cast_id": 11, "profile_path": null, "order": 18}, {"name": "Stephen Hudson", "character": "Newscaster #2", "id": 58786, "credit_id": "52fe4522c3a36847f80be66b", "cast_id": 12, "profile_path": null, "order": 19}, {"name": "Lionel Briand", "character": "Rental Car Employee", "id": 58788, "credit_id": "52fe4522c3a36847f80be677", "cast_id": 15, "profile_path": "/om09wZjPXinGmGo63M6xhgk0J8E.jpg", "order": 20}, {"name": "Maria Papas", "character": "Gemma's Friend", "id": 59030, "credit_id": "52fe4522c3a36847f80be67b", "cast_id": 16, "profile_path": null, "order": 21}, {"name": "Igor Panich", "character": "Russian Couple #1", "id": 59033, "credit_id": "52fe4522c3a36847f80be68f", "cast_id": 21, "profile_path": null, "order": 22}, {"name": "Oleg Sosnovikov", "character": "Russian Couple #2", "id": 59034, "credit_id": "52fe4522c3a36847f80be693", "cast_id": 22, "profile_path": null, "order": 23}, {"name": "Magali Woch", "character": "Secretary", "id": 59035, "credit_id": "52fe4522c3a36847f80be697", "cast_id": 23, "profile_path": "/ryIbSaCOTl3g8a6R8HIwHwECcGT.jpg", "order": 24}, {"name": "Jacques Herlin", "character": "Papa Duflot", "id": 6784, "credit_id": "52fe4522c3a36847f80be69f", "cast_id": 25, "profile_path": "/wwgVnt3jtrJFEgSxFQr91KzfsWc.jpg", "order": 25}, {"name": "Patrick Payet", "character": "English Couple #2", "id": 59037, "credit_id": "52fe4522c3a36847f80be6a7", "cast_id": 28, "profile_path": null, "order": 26}, {"name": "F\u00e9licit\u00e9 Du Jeu", "character": "Hostess", "id": 59038, "credit_id": "52fe4522c3a36847f80be6ab", "cast_id": 29, "profile_path": null, "order": 27}, {"name": "Mitchell Mullen", "character": "American Customer #1", "id": 59039, "credit_id": "52fe4522c3a36847f80be6af", "cast_id": 30, "profile_path": null, "order": 28}, {"name": "Judy Dickerson", "character": "American Customer #2", "id": 59040, "credit_id": "52fe4522c3a36847f80be6b3", "cast_id": 31, "profile_path": null, "order": 29}, {"name": "Gilles Gaston-Dreyfus", "character": "Oenologue", "id": 17897, "credit_id": "52fe4522c3a36847f80be6b7", "cast_id": 32, "profile_path": "/hcW1OEm2G1HN6e4E10tYU6fAi6s.jpg", "order": 30}, {"name": "Philippe M\u00e9ry", "character": "Chateau Buyer", "id": 59041, "credit_id": "52fe4522c3a36847f80be6bb", "cast_id": 33, "profile_path": null, "order": 31}, {"name": "Dominique Laurent", "character": "Chateau Buyer", "id": 59042, "credit_id": "52fe4522c3a36847f80be6bf", "cast_id": 34, "profile_path": null, "order": 32}, {"name": "Stewart Wright", "character": "Broker #1", "id": 59043, "credit_id": "52fe4522c3a36847f80be6c3", "cast_id": 35, "profile_path": null, "order": 33}, {"name": "Tom Stuart", "character": "Broker #2", "id": 59044, "credit_id": "52fe4522c3a36847f80be6c7", "cast_id": 36, "profile_path": null, "order": 34}, {"name": "Catherine Vinatier", "character": "Fanny's Mother", "id": 59045, "credit_id": "52fe4522c3a36847f80be6cb", "cast_id": 37, "profile_path": null, "order": 35}, {"name": "Marine Casto", "character": "Young Fanny", "id": 59046, "credit_id": "52fe4522c3a36847f80be6cf", "cast_id": 38, "profile_path": null, "order": 36}, {"name": "Gregg Chillin", "character": "Hip Hopper #1", "id": 59047, "credit_id": "52fe4522c3a36847f80be6d3", "cast_id": 39, "profile_path": "/ftYyVDzJt2IgeR8hFAo8achuYBW.jpg", "order": 37}, {"name": "Toney Tutini", "character": "Hip Hopper #2", "id": 59048, "credit_id": "52fe4522c3a36847f80be6d7", "cast_id": 40, "profile_path": null, "order": 38}, {"name": "Philippe Bergeron", "character": "", "id": 14741, "credit_id": "52fe4522c3a36847f80be6db", "cast_id": 41, "profile_path": "/ugHYNYMyn3zrKEtQJAnuEJrLiBr.jpg", "order": 39}, {"name": "Edita Brychta", "character": "", "id": 59049, "credit_id": "52fe4522c3a36847f80be6df", "cast_id": 42, "profile_path": "/8sJXRa5kS8mHjjrCaGysIj4sOrD.jpg", "order": 40}, {"name": "H\u00e9l\u00e8ne Cardona", "character": "", "id": 5311, "credit_id": "52fe4522c3a36847f80be6e3", "cast_id": 43, "profile_path": "/9Am8lqQ5yUrGrlpYdOjp4p4iLwb.jpg", "order": 41}, {"name": "Jean-Louis Darville", "character": "", "id": 59050, "credit_id": "52fe4522c3a36847f80be6e7", "cast_id": 44, "profile_path": null, "order": 42}, {"name": "Neil Dickson", "character": "", "id": 18906, "credit_id": "52fe4522c3a36847f80be6eb", "cast_id": 45, "profile_path": null, "order": 43}, {"name": "Jean Gilpin", "character": "", "id": 59051, "credit_id": "52fe4522c3a36847f80be6ef", "cast_id": 46, "profile_path": "/txLMRcg9CCbrDlZQi9mg4BhKb40.jpg", "order": 44}, {"name": "Nicholas Guest", "character": "", "id": 36821, "credit_id": "52fe4522c3a36847f80be6f3", "cast_id": 47, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 45}, {"name": "Patrick Hillan", "character": "", "id": 59052, "credit_id": "52fe4522c3a36847f80be6f7", "cast_id": 48, "profile_path": null, "order": 46}, {"name": "Frank Isles", "character": "", "id": 59053, "credit_id": "52fe4522c3a36847f80be6fb", "cast_id": 49, "profile_path": null, "order": 47}, {"name": "Peter Lavin", "character": "", "id": 59054, "credit_id": "52fe4522c3a36847f80be6ff", "cast_id": 50, "profile_path": null, "order": 48}, {"name": "Caitlin McKenna-Wilkinson", "character": "", "id": 59055, "credit_id": "52fe4523c3a36847f80be703", "cast_id": 51, "profile_path": null, "order": 49}, {"name": "Paula J. Newman", "character": "", "id": 59056, "credit_id": "52fe4523c3a36847f80be707", "cast_id": 52, "profile_path": "/u3HCFYLWPR2tnkNLmohldgxc2Sb.jpg", "order": 50}, {"name": "Moira Quirk", "character": "", "id": 59057, "credit_id": "52fe4523c3a36847f80be70b", "cast_id": 53, "profile_path": null, "order": 51}, {"name": "Valeria Milenka Repnau", "character": "", "id": 59058, "credit_id": "52fe4523c3a36847f80be70f", "cast_id": 54, "profile_path": null, "order": 52}, {"name": "Darren Richardson", "character": "", "id": 59059, "credit_id": "52fe4523c3a36847f80be713", "cast_id": 55, "profile_path": null, "order": 53}, {"name": "Jean-Michel Richaud", "character": "", "id": 59060, "credit_id": "52fe4523c3a36847f80be717", "cast_id": 56, "profile_path": "/hUBf7t28fATtiBIsGhMpepN6Iu5.jpg", "order": 54}, {"name": "Samantha Robson", "character": "", "id": 59061, "credit_id": "52fe4523c3a36847f80be71b", "cast_id": 57, "profile_path": null, "order": 55}, {"name": "Ian Ruskin", "character": "", "id": 59062, "credit_id": "52fe4523c3a36847f80be71f", "cast_id": 58, "profile_path": null, "order": 56}, {"name": "Linda Sans", "character": "", "id": 59063, "credit_id": "52fe4523c3a36847f80be723", "cast_id": 59, "profile_path": null, "order": 57}, {"name": "Bruno Stephane", "character": "", "id": 59064, "credit_id": "52fe4523c3a36847f80be727", "cast_id": 60, "profile_path": null, "order": 58}, {"name": "Karen Strassman", "character": "", "id": 59065, "credit_id": "52fe4523c3a36847f80be72b", "cast_id": 61, "profile_path": null, "order": 59}, {"name": "Jean-Paul Vignon", "character": "", "id": 59066, "credit_id": "52fe4523c3a36847f80be72f", "cast_id": 62, "profile_path": null, "order": 60}, {"name": "Craig Robert Young", "character": "", "id": 59067, "credit_id": "52fe4523c3a36847f80be733", "cast_id": 63, "profile_path": null, "order": 61}, {"name": "Catriona MacColl", "character": "English Couple #1", "id": 101330, "credit_id": "52fe4523c3a36847f80be761", "cast_id": 71, "profile_path": "/hmB3MmfJpNOQ4uOy6q5z7EU1JGp.jpg", "order": 62}, {"name": "Giannina Facio", "character": "Maitre D'", "id": 58787, "credit_id": "52fe4523c3a36847f80be769", "cast_id": 73, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 63}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4523c3a36847f80be745", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.4, "runtime": 118}, "1535": {"poster_path": "/hsb8hBeU3tkTX8SUYW6YYw6JPYD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 143049560, "overview": "Veteran spy Nathan Muir is on the verge of retiring from the CIA when he learns that his one-time prot\u00e9g\u00e9 and close friend, Tom Bishop, is a political prisoner sentenced to die in Beijing. Although their friendship has been marred by bad blood and resentment, Muir agrees to take on the most dangerous mission of his career and rescue Bishop.", "video": false, "id": 1535, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Spy Game", "tagline": "It's not how you play the game. It's how the game plays you.", "vote_count": 164, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0266987", "adult": false, "backdrop_path": "/1Q6thcZHsDiJ0iRMXZWf7IEtX2b.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Metropolitan Filmexport", "id": 656}, {"name": "Toho-Towa", "id": 657}, {"name": "Beacon Communications", "id": 919}, {"name": "Kalima Productions GmbH & Co. KG", "id": 7385}, {"name": "Red Wagon Productions", "id": 780}], "release_date": "2001-11-18", "popularity": 0.769686223264426, "original_title": "Spy Game", "budget": 92000000, "cast": [{"name": "Robert Redford", "character": "Nathan D. Muir", "id": 4135, "credit_id": "52fe42fbc3a36847f8031723", "cast_id": 2, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Tom Bishop", "id": 287, "credit_id": "52fe42fbc3a36847f8031727", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Catherine McCormack", "character": "Elizabeth Hadley", "id": 2462, "credit_id": "52fe42fbc3a36847f803172b", "cast_id": 4, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Charles Harker", "id": 8435, "credit_id": "52fe42fbc3a36847f803172f", "cast_id": 5, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Larry Bryggman", "character": "Troy Folger", "id": 17351, "credit_id": "52fe42fbc3a36847f8031733", "cast_id": 6, "profile_path": "/fc7XC4C0DayJ6g8ReydAWjwY3IX.jpg", "order": 4}, {"name": "Marianne Jean-Baptiste", "character": "Gladys Jennip", "id": 17352, "credit_id": "52fe42fbc3a36847f8031737", "cast_id": 7, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 5}, {"name": "Matthew Marsh", "character": "Dr. William Byars", "id": 17353, "credit_id": "52fe42fbc3a36847f803173b", "cast_id": 8, "profile_path": "/mFE7r9hfFHxl2U55S64vGdNGmaZ.jpg", "order": 6}, {"name": "Todd Boyce", "character": "Robert Aiken", "id": 17354, "credit_id": "52fe42fbc3a36847f803173f", "cast_id": 9, "profile_path": "/3uT1rplcxrKBmhi9vFQpB4Q6Qop.jpg", "order": 7}, {"name": "Michael Paul Chan", "character": "Vincent Vy Ngo", "id": 17355, "credit_id": "52fe42fbc3a36847f8031743", "cast_id": 10, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 8}, {"name": "Garrick Hagon", "character": "CIA Director Cy Wilson", "id": 17356, "credit_id": "52fe42fbc3a36847f8031747", "cast_id": 11, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 9}, {"name": "Andrew Grainger", "character": "Andrew Unger", "id": 17357, "credit_id": "52fe42fbc3a36847f803174b", "cast_id": 12, "profile_path": null, "order": 10}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f803171f", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.3, "runtime": 126}, "8780": {"poster_path": "/8YFiUegDjZPuNF1qdENDkcWfXPx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63833449, "overview": "A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.", "video": false, "id": 8780, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Baby Mama", "tagline": "Would you put your eggs...in this basket?", "vote_count": 53, "homepage": "http://www.babymamamovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0871426", "adult": false, "backdrop_path": "/5ZeIjrEbZvLPGB8PVgk3Vrm1aVF.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Universal Pictures", "id": 33}], "release_date": "2008-04-23", "popularity": 0.341568744484718, "original_title": "Baby Mama", "budget": 30000000, "cast": [{"name": "Tina Fey", "character": "Kate Holbrook", "id": 56323, "credit_id": "52fe44b9c3a36847f80a67fd", "cast_id": 4, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 0}, {"name": "Amy Poehler", "character": "Angie Ostrowiski", "id": 56322, "credit_id": "52fe44b9c3a36847f80a67f9", "cast_id": 3, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 1}, {"name": "Dax Shepard", "character": "Carl", "id": 51298, "credit_id": "52fe44b9c3a36847f80a680d", "cast_id": 8, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 2}, {"name": "Sigourney Weaver", "character": "Chaffee Bicknell", "id": 10205, "credit_id": "52fe44b9c3a36847f80a6801", "cast_id": 5, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 3}, {"name": "Greg Kinnear", "character": "Rob", "id": 17141, "credit_id": "52fe44b9c3a36847f80a6809", "cast_id": 7, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 4}, {"name": "Steve Martin", "character": "Barry", "id": 67773, "credit_id": "52fe44b9c3a36847f80a6805", "cast_id": 6, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 5}, {"name": "Romany Malco", "character": "Oscar", "id": 71530, "credit_id": "52fe44b9c3a36847f80a6811", "cast_id": 9, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 6}, {"name": "Maura Tierney", "character": "Caroline", "id": 16307, "credit_id": "52fe44b9c3a36847f80a683f", "cast_id": 17, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 7}, {"name": "Will Forte", "character": "Scott", "id": 62831, "credit_id": "52fe44b9c3a36847f80a6843", "cast_id": 18, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 8}, {"name": "Fred Armisen", "character": "Stroller Salesman", "id": 61110, "credit_id": "52fe44b9c3a36847f80a6847", "cast_id": 19, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 9}, {"name": "Stephen Mailer", "character": "Dan", "id": 170977, "credit_id": "52fe44b9c3a36847f80a684b", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Holland Taylor", "character": "Rose", "id": 11318, "credit_id": "52fe44b9c3a36847f80a684f", "cast_id": 21, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 11}, {"name": "James Rebhorn", "character": "Judge", "id": 8986, "credit_id": "52fe44b9c3a36847f80a6853", "cast_id": 22, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 12}, {"name": "Denis O'Hare", "character": "Dr. Manheim", "id": 81681, "credit_id": "52fe44b9c3a36847f80a6857", "cast_id": 23, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 13}, {"name": "Kevin Collins", "character": "Architect / Rick", "id": 590283, "credit_id": "52fe44b9c3a36847f80a685b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Jason Mantzoukas", "character": "Gay Couple", "id": 111683, "credit_id": "52fe44b9c3a36847f80a685f", "cast_id": 25, "profile_path": "/lBMDmGGuhLrg0Q4cZi2vDc2ucgF.jpg", "order": 15}, {"name": "Siobhan Fallon", "character": "Birthing Teacher", "id": 6751, "credit_id": "52fe44b9c3a36847f80a6863", "cast_id": 26, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 16}, {"name": "Alice Kremelberg", "character": "Rob's Daughter", "id": 1357037, "credit_id": "53fc3a830e0a267a78009c78", "cast_id": 27, "profile_path": "/i5eYcWhuOPuSAXtj0hue0WX9O3k.jpg", "order": 17}], "directors": [{"name": "Michael McCullers", "department": "Directing", "job": "Director", "credit_id": "52fe44b9c3a36847f80a67ef", "profile_path": null, "id": 14172}], "vote_average": 5.3, "runtime": 99}, "1537": {"poster_path": "/dCTVH1kl3aIkUmWpMT5STLAwsPs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94935764, "overview": "A rush-hour fender-bender on New York City's crowded FDR Drive, under most circumstances, wouldn't set off a chain reaction that could decimate two people's lives. But on this day, at this time, a minor collision will turn two complete strangers into vicious adversaries. Their means of destroying each other might be different, but their goals, ultimately, will be the same: Each will systematically try to dismantle the other's life in a reckless effort to reclaim something he has lost.", "video": false, "id": 1537, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Changing Lanes", "tagline": "An ambitious lawyer, a desperate father, they had no reason to meet, until today,", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264472", "adult": false, "backdrop_path": "/enr2mZM9DL7pPHDQGFdVy9IMG6Z.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2002-04-07", "popularity": 1.17440834700656, "original_title": "Changing Lanes", "budget": 45000000, "cast": [{"name": "Ben Affleck", "character": "Gavin Banek", "id": 880, "credit_id": "52fe42fbc3a36847f80317ad", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Doyle Gipson", "id": 2231, "credit_id": "52fe42fbc3a36847f80317b1", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Kim Staunton", "character": "Valerie Gipson", "id": 17358, "credit_id": "52fe42fbc3a36847f80317b5", "cast_id": 3, "profile_path": "/9CJmJ5l7DZAtZvdbltalwoV2NfH.jpg", "order": 2}, {"name": "Toni Collette", "character": "Michelle", "id": 3051, "credit_id": "52fe42fbc3a36847f80317b9", "cast_id": 4, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 3}, {"name": "Sydney Pollack", "character": "Stephen Delano", "id": 2226, "credit_id": "52fe42fbc3a36847f80317bd", "cast_id": 5, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 4}, {"name": "Matt Malloy", "character": "Ron Cabot", "id": 19208, "credit_id": "52fe42fbc3a36847f80317f1", "cast_id": 14, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 5}, {"name": "William Hurt", "character": "Doyle's Sponsor", "id": 227, "credit_id": "52fe42fbc3a36847f80317f5", "cast_id": 15, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 6}, {"name": "John Benjamin Hickey", "character": "Carlyle", "id": 21179, "credit_id": "52fe42fbc3a36847f80317f9", "cast_id": 16, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 7}, {"name": "Amanda Peet", "character": "Cynthia Delano Banek", "id": 2956, "credit_id": "551f75b1c3a36854cd000af1", "cast_id": 17, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 8}], "directors": [{"name": "Roger Michell", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f80317c3", "profile_path": "/zDjSgsAY44QJljrvzIZWnWauqlg.jpg", "id": 7017}], "vote_average": 5.4, "runtime": 89}, "1538": {"poster_path": "/mttymFexawuVYOlka8R3SVUeBn4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 217764291, "overview": "A cab driver finds himself the hostage of an engaging contract killer as he makes his rounds from hit to hit during one night in LA. He must find a way to save both himself and one last victim.", "video": false, "id": 1538, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Collateral", "tagline": "It started like any other night.", "vote_count": 383, "homepage": "http://movies.uip.de/collateral/home.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369339", "adult": false, "backdrop_path": "/whhU7492W0fcZE73r1HNhfyc5uV.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Parkes/MacDonald Productions", "id": 11084}, {"name": "Edge City", "id": 11463}], "release_date": "2004-08-05", "popularity": 1.2816254617863, "original_title": "Collateral", "budget": 65000000, "cast": [{"name": "Tom Cruise", "character": "Vincent", "id": 500, "credit_id": "52fe42fbc3a36847f8031857", "cast_id": 2, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "Max", "id": 134, "credit_id": "52fe42fbc3a36847f803185b", "cast_id": 3, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Jada Pinkett Smith", "character": "Annie", "id": 9575, "credit_id": "52fe42fbc3a36847f803185f", "cast_id": 4, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Fanning", "id": 103, "credit_id": "52fe42fbc3a36847f8031863", "cast_id": 5, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Pedrosa", "id": 14888, "credit_id": "52fe42fbc3a36847f8031867", "cast_id": 7, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Peter Berg", "character": "Richard Weidner", "id": 36602, "credit_id": "52fe42fbc3a36847f8031895", "cast_id": 16, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 5}, {"name": "Irma P. Hall", "character": "Ida", "id": 43853, "credit_id": "52fe42fbc3a36847f80318e1", "cast_id": 29, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 6}, {"name": "Barry Shabaka Henley", "character": "Daniel", "id": 8689, "credit_id": "52fe42fbc3a36847f80318e5", "cast_id": 30, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 7}, {"name": "Richard T. Jones", "character": "Traffic Cop #1", "id": 55755, "credit_id": "52fe42fbc3a36847f80318e9", "cast_id": 31, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 8}, {"name": "Klea Scott", "character": "Fed #1", "id": 155283, "credit_id": "52fe42fbc3a36847f80318ed", "cast_id": 32, "profile_path": "/18m05gdyZ6wYIhLspT2Rl6zF0N1.jpg", "order": 9}, {"name": "Bodhi Elfman", "character": "Young Professional Man", "id": 154883, "credit_id": "52fe42fbc3a36847f80318f1", "cast_id": 33, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 10}, {"name": "Debi Mazar", "character": "Young Professional Woman", "id": 5578, "credit_id": "52fe42fbc3a36847f80318f5", "cast_id": 34, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 11}, {"name": "Javier Bardem", "character": "Felix", "id": 3810, "credit_id": "52fe42fbc3a36847f80318f9", "cast_id": 35, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 12}, {"name": "Emilio Rivera", "character": "Paco", "id": 53257, "credit_id": "52fe42fbc3a36847f80318fd", "cast_id": 36, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 13}, {"name": "Jamie McBride", "character": "Traffic Cop #2", "id": 18053, "credit_id": "52fe42fbc3a36847f8031901", "cast_id": 37, "profile_path": "/AduUFJhXPzR6WvYV5RyBS56YdKB.jpg", "order": 14}, {"name": "Ken Waters", "character": "FBI Agent", "id": 1118729, "credit_id": "52fe42fbc3a36847f8031905", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Charlie E. Schmidt", "character": "FBI Agent", "id": 1118730, "credit_id": "52fe42fbc3a36847f8031909", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Michael Bentt", "character": "Fever Bouncer", "id": 90449, "credit_id": "52fe42fbc3a36847f803190d", "cast_id": 40, "profile_path": "/iH9VdJ1w3vszxBoAhd9dTYpcNEN.jpg", "order": 17}, {"name": "Thomas Rosales, Jr.", "character": "Ramone", "id": 43010, "credit_id": "52fe42fbc3a36847f8031911", "cast_id": 41, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 18}, {"name": "Jason Statham", "character": "Guy at the airport", "id": 976, "credit_id": "531e073cc3a3685c37008875", "cast_id": 44, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 19}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f8031853", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.5, "runtime": 120}, "9732": {"poster_path": "/d1Wj5wfzu4CWvKOIL1l42NBYnzE.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The circle of life continues for Simba, now fully grown and in his rightful place as the king of Pride Rock. Simba and Nala have given birth to a daughter, Kiara who's as rebellious as her father was. But Kiara drives her parents to distraction when she catches the eye of Kovu, the son of the evil lioness, Zira. Will Kovu steal Kiara's heart?", "video": false, "id": 9732, "genres": [{"id": 16, "name": "Animation"}], "title": "The Lion King 2: Simba's Pride", "tagline": "The Circle of Life Continues...", "vote_count": 263, "homepage": "", "belongs_to_collection": {"backdrop_path": "/A9IEaj9cPAwEgFnTmteB70oxgJY.jpg", "poster_path": "/y3n3SDoRDqgz3LLWuvcfi3ZiF84.jpg", "id": 94032, "name": "The Lion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120131", "adult": false, "backdrop_path": "/mOXpgCVPy43L3Sbq9keft6VSQ7O.jpg", "production_companies": [{"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-10-26", "popularity": 1.56018163545117, "original_title": "The Lion King 2: Simba's Pride", "budget": 0, "cast": [{"name": "Matthew Broderick", "character": "Simba (voice)", "id": 4756, "credit_id": "52fe4524c3a36847f80beaab", "cast_id": 1, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 0}, {"name": "Moira Kelly", "character": "Nala (voice)", "id": 20005, "credit_id": "52fe4524c3a36847f80beaaf", "cast_id": 2, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 1}, {"name": "Neve Campbell", "character": "Adult Kiara (voice)", "id": 9206, "credit_id": "52fe4524c3a36847f80beab3", "cast_id": 3, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 2}, {"name": "Liz Callaway", "character": "Adult Kiara (singing voice)", "id": 58828, "credit_id": "52fe4524c3a36847f80beab7", "cast_id": 4, "profile_path": "/pIZwTupFvJCppbYt26q4ydKIbnl.jpg", "order": 3}, {"name": "Andy Dick", "character": "Nuka (voice)", "id": 43120, "credit_id": "52fe4524c3a36847f80bead9", "cast_id": 13, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 4}, {"name": "Robert Guillaume", "character": "Rafiki (voice)", "id": 8294, "credit_id": "52fe4524c3a36847f80beadd", "cast_id": 14, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 5}, {"name": "James Earl Jones", "character": "Mufasa (voice)", "id": 15152, "credit_id": "52fe4524c3a36847f80beae1", "cast_id": 15, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 6}, {"name": "Nathan Lane", "character": "Timon (voice)", "id": 78729, "credit_id": "52fe4524c3a36847f80beae5", "cast_id": 16, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 7}, {"name": "Jason Marsden", "character": "Kovu (voice)", "id": 61983, "credit_id": "52fe4524c3a36847f80beae9", "cast_id": 17, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 8}, {"name": "Suzanne Pleshette", "character": "Zira (voice)", "id": 8231, "credit_id": "52fe4524c3a36847f80beaed", "cast_id": 18, "profile_path": "/9KdhSa4QpLQgD1cwXmjoz60bgHo.jpg", "order": 9}, {"name": "Ernie Sabella", "character": "Pumbaa (voice)", "id": 69415, "credit_id": "52fe4524c3a36847f80beaf1", "cast_id": 19, "profile_path": "/nwdAp8FacfZ1eRU7gNkOwWvDqnc.jpg", "order": 10}, {"name": "Lacey Chabert", "character": "Young Vitani (voice)", "id": 22082, "credit_id": "52fe4524c3a36847f80beaf5", "cast_id": 20, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 11}, {"name": "Cam Clarke", "character": "Simba (singing voice)", "id": 60272, "credit_id": "52fe4524c3a36847f80beaf9", "cast_id": 21, "profile_path": "/7ecYo1hD0zHPxdKHSzkvHuM95Yj.jpg", "order": 12}, {"name": "Jim Cummings", "character": "Scar (voice)", "id": 12077, "credit_id": "52fe4524c3a36847f80beafd", "cast_id": 22, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 13}, {"name": "Edward Hibbert", "character": "Zazu (voice)", "id": 84249, "credit_id": "52fe4524c3a36847f80beb01", "cast_id": 23, "profile_path": "/mpKpvpRM7EHgjaNNQ0PvEhBEqUu.jpg", "order": 14}, {"name": "Michelle Horn", "character": "Young Kiara (voice)", "id": 20847, "credit_id": "52fe4524c3a36847f80beb05", "cast_id": 24, "profile_path": "/eFOyaLVvUTcxFuANlhMdT8oqfAu.jpg", "order": 15}, {"name": "Meredith Scott Lynn", "character": "Adult Vitani (voice)", "id": 151384, "credit_id": "52fe4524c3a36847f80beb09", "cast_id": 25, "profile_path": "/dxd6wN3HoW8dqJsjkAmEtsZVuca.jpg", "order": 16}, {"name": "Ryan O'Donohue", "character": "Young Kovu (voice)", "id": 166406, "credit_id": "52fe4524c3a36847f80beb0d", "cast_id": 26, "profile_path": "/l1NV0rGZvHI7yGOeFbPeffoHtuP.jpg", "order": 17}, {"name": "Peter Renaday", "character": "Additional Voices (voice)", "id": 35132, "credit_id": "52fe4524c3a36847f80beb11", "cast_id": 27, "profile_path": "/wRkQcLnyv1k9eQtB5GczTgIaWj2.jpg", "order": 18}, {"name": "Vanessa Theme Ament", "character": "Additional Voices (voice)", "id": 91312, "credit_id": "52fe4524c3a36847f80beb15", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Robin Frizzell", "character": "Additional Voices (voice)", "id": 1077704, "credit_id": "52fe4524c3a36847f80beb19", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Lisa Long", "character": "Additional Voices (voice)", "id": 98533, "credit_id": "52fe4524c3a36847f80beb1d", "cast_id": 30, "profile_path": "/ylENDopRcyfMnPBQwnfxxfXJWL.jpg", "order": 21}, {"name": "Adrienne Hampton", "character": "Additional Voices (voice)", "id": 91837, "credit_id": "52fe4524c3a36847f80beb21", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Seth Isler", "character": "Additional Voices (voice)", "id": 162615, "credit_id": "52fe4524c3a36847f80beb25", "cast_id": 32, "profile_path": "/yqoESkbOUV1CIlnrSUO30hedWfK.jpg", "order": 23}, {"name": "Richard Sinclair", "character": "Additional Voices (voice)", "id": 1077705, "credit_id": "52fe4524c3a36847f80beb29", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Joel Moffett", "character": "Additional Voices (voice)", "id": 1077706, "credit_id": "52fe4524c3a36847f80beb2d", "cast_id": 34, "profile_path": "/4PDlF5X3qAcjzsWAIOYyI0JKx0p.jpg", "order": 25}], "directors": [{"name": "Darrell Rooney", "department": "Directing", "job": "Director", "credit_id": "52fe4524c3a36847f80beb33", "profile_path": null, "id": 58829}], "vote_average": 6.4, "runtime": 81}, "1541": {"poster_path": "/3cc9oJ3PJzdfI88FPxF6P0zq0Qb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45361000, "overview": "Whilst on a short weekend getaway, Louise shoots a man who had tried to rape Thelma. Due to the incriminating circumstances, they make a run for it and thus a cross country chase ensues for the two fugitives. Along the way, both women rediscover the strength of their friendship and surprising aspects of their personalities and self-strengths in the trying times.", "video": false, "id": 1541, "genres": [{"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Thelma & Louise", "tagline": "Somebody said get a life... so they did.", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103074", "adult": false, "backdrop_path": "/6ZFATL4B2yOqEOWViT9kkodU8Vy.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1991-05-24", "popularity": 0.327433895187887, "original_title": "Thelma & Louise", "budget": 16000000, "cast": [{"name": "Susan Sarandon", "character": "Louise Elizabeth Sawyer", "id": 4038, "credit_id": "52fe42fbc3a36847f8031a61", "cast_id": 1, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 0}, {"name": "Geena Davis", "character": "Thelma Yvonne Dickinson", "id": 16935, "credit_id": "52fe42fbc3a36847f8031a65", "cast_id": 2, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Investigator Hal Slocumb", "id": 1037, "credit_id": "52fe42fbc3a36847f8031a69", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Brad Pitt", "character": "J.D.", "id": 287, "credit_id": "52fe42fbc3a36847f8031a6d", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 3}, {"name": "Michael Madsen", "character": "Jimmy Lennox", "id": 147, "credit_id": "52fe42fbc3a36847f8031a71", "cast_id": 5, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Darryl Dickinson", "id": 4443, "credit_id": "52fe42fbc3a36847f8031a75", "cast_id": 6, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Max", "id": 537, "credit_id": "52fe42fbc3a36847f8031a79", "cast_id": 7, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Timothy Carhart", "character": "Harlan", "id": 17396, "credit_id": "52fe42fbc3a36847f8031a7d", "cast_id": 8, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 7}, {"name": "Lucinda Jenney", "character": "Lena, the Waitress", "id": 5148, "credit_id": "54a3a0999251414e2800c002", "cast_id": 22, "profile_path": "/ucvaRviBWE1IR4YPGA8VYVMSand.jpg", "order": 8}, {"name": "Jason Beghe", "character": "State Trooper", "id": 37203, "credit_id": "54a3a0ab9251411d5300ba65", "cast_id": 23, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 9}, {"name": "Sonny Carl Davis", "character": "Albert", "id": 63214, "credit_id": "54a3a0bbc3a3682f1e010e95", "cast_id": 24, "profile_path": "/bdpZH2zUh9WSRfxViA3oyvizNl0.jpg", "order": 10}, {"name": "Ken Swofford", "character": "Major", "id": 45308, "credit_id": "54a3a0c992514117dd003baf", "cast_id": 25, "profile_path": "/7l4GppNqzi2lvs2R1nbTfxwiKcW.jpg", "order": 11}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe42fbc3a36847f8031a83", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.0, "runtime": 130}, "1542": {"poster_path": "/iO9aZzrfmMvm3IqkFiQyuuUMLh2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12827813, "overview": "Peter is a drone for a software company well on his way to a nervous breakdown when a hypnosis mishap opens his eyes. He becomes so apathetic toward his job that he can't even muster up the energy to quit. His new no-work ethic is mistaken by a pair of corporate headhunters as \"middle-management potential,\" and he is promoted as his pals Michael and Samir are laid off. Frustrated in his attempts to be down-sized, Peter hatches a plot to embezzle the company.", "video": false, "id": 1542, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Office Space", "tagline": "Work sucks.", "vote_count": 350, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0151804", "adult": false, "backdrop_path": "/sjJyxlCsQRDfsanDUg8xiFT7xgS.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Cubicle Inc.", "id": 7458}], "release_date": "1999-02-19", "popularity": 0.59045492866932, "original_title": "Office Space", "budget": 10000000, "cast": [{"name": "Ron Livingston", "character": "Peter Gibbons", "id": 17402, "credit_id": "52fe42fcc3a36847f8031b1b", "cast_id": 3, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Joanna", "id": 4491, "credit_id": "52fe42fcc3a36847f8031b41", "cast_id": 10, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "David Herman", "character": "Michael Bolton", "id": 52794, "credit_id": "52fe42fcc3a36847f8031b3d", "cast_id": 9, "profile_path": "/6S0UlaChdcilaeYk5svTxOCtShC.jpg", "order": 2}, {"name": "Ajay Naidu", "character": "Samir Nagheenanajar", "id": 1982, "credit_id": "52fe42fcc3a36847f8031b45", "cast_id": 11, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 3}, {"name": "Diedrich Bader", "character": "Lawrence", "id": 5727, "credit_id": "52fe42fcc3a36847f8031b17", "cast_id": 2, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 4}, {"name": "Stephen Root", "character": "Milton Waddams", "id": 17401, "credit_id": "52fe42fcc3a36847f8031b13", "cast_id": 1, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 5}, {"name": "Gary Cole", "character": "Bill Lumbergh", "id": 21163, "credit_id": "52fe42fcc3a36847f8031b49", "cast_id": 12, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 6}, {"name": "Richard Riehle", "character": "Tom Smykowski", "id": 18262, "credit_id": "52fe42fcc3a36847f8031b4d", "cast_id": 13, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 7}, {"name": "Alexandra Wentworth", "character": "Anne", "id": 104998, "credit_id": "52fe42fcc3a36847f8031b65", "cast_id": 18, "profile_path": "/rhROnBBAcL9UFJ4YFMPReqMafrG.jpg", "order": 8}, {"name": "Joe Bays", "character": "Dom Portwood", "id": 105701, "credit_id": "52fe42fcc3a36847f8031b69", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "John C. McGinley", "character": "Bob Slydell", "id": 11885, "credit_id": "52fe42fcc3a36847f8031b51", "cast_id": 14, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 10}, {"name": "Paul Willson", "character": "Bob Porter", "id": 15099, "credit_id": "52fe42fcc3a36847f8031b55", "cast_id": 15, "profile_path": "/qLDv3SgQw5dfai2wsH03PeFolBS.jpg", "order": 11}, {"name": "Kinna McInroe", "character": "Nina", "id": 102309, "credit_id": "52fe42fcc3a36847f8031b6d", "cast_id": 20, "profile_path": "/8I8q0cQMm6hdJSZ8RBjFPJFVN3C.jpg", "order": 12}, {"name": "Todd Duffey", "character": "Brian", "id": 116428, "credit_id": "52fe42fcc3a36847f8031b71", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Greg Pitts", "character": "Drew", "id": 84816, "credit_id": "52fe42fcc3a36847f8031b75", "cast_id": 22, "profile_path": "/gl2maPRYG8s7WcAQRNel26Cswkc.jpg", "order": 14}, {"name": "Michael McShane", "character": "Dr. Swanson (as Micheal McShane)", "id": 8316, "credit_id": "52fe42fcc3a36847f8031b79", "cast_id": 23, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 15}, {"name": "Linda Wakeman", "character": "Laura Smykowski", "id": 1077910, "credit_id": "52fe42fcc3a36847f8031b7d", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Jennifer Jane Emerson", "character": "Female Temp", "id": 1077911, "credit_id": "52fe42fcc3a36847f8031b81", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Kyle Scott Jackson", "character": "Rob Newhouse", "id": 1077912, "credit_id": "52fe42fcc3a36847f8031b85", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Orlando Jones", "character": "Steve - Magazine Salesman", "id": 18270, "credit_id": "52fe42fcc3a36847f8031b89", "cast_id": 27, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 19}, {"name": "Barbara George-Reiss", "character": "Peggy - Lumbergh's Secretary", "id": 1077913, "credit_id": "52fe42fcc3a36847f8031b8d", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Tom Schuster", "character": "Construction Foreman", "id": 987426, "credit_id": "52fe42fcc3a36847f8031b91", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Rupert Reyes", "character": "Mexican Waiter (as Ruperto Reyes Jr.)", "id": 954426, "credit_id": "52fe42fcc3a36847f8031b95", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Jackie Belvin", "character": "Swanson's Patient #1", "id": 1053511, "credit_id": "52fe42fcc3a36847f8031b99", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Gabriel Folse", "character": "Swanson's Patient #2", "id": 141486, "credit_id": "52fe42fcc3a36847f8031b9d", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Jesse De Luna", "character": "Cop at Fire", "id": 977061, "credit_id": "52fe42fcc3a36847f8031ba1", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Mike Judge", "character": "Stan - Chotchkie's Manager (as William King)", "id": 17403, "credit_id": "52fe42fcc3a36847f8031ba5", "cast_id": 34, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 26}, {"name": "Justin Possenti", "character": "Spectator", "id": 1077914, "credit_id": "52fe42fcc3a36847f8031ba9", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Jack Betts", "character": "Judge", "id": 20581, "credit_id": "52fe42fcc3a36847f8031bad", "cast_id": 36, "profile_path": "/wX6KWBh4sH2L7sHDIsgDBv6ktXQ.jpg", "order": 28}], "directors": [{"name": "Mike Judge", "department": "Directing", "job": "Director", "credit_id": "52fe42fcc3a36847f8031b27", "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "id": 17403}], "vote_average": 7.2, "runtime": 89}, "17927": {"poster_path": "/bHhLZIg9VKsconJdnwIoUTqakEG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17231291, "overview": "2 Guys. 300 Girls. You Do the Math. The two most popular guys in high school decide to ditch football camp for cheerleader camp. For the girls and for the glory.", "video": false, "id": 17927, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Fired Up!", "tagline": "2 Guys. 300 Girls. You Do the Math.", "vote_count": 51, "homepage": "http://www.sonypictures.com/homevideo/firedup/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1083456", "adult": false, "backdrop_path": "/pDwbZBSDFW9rinajJdkiCyESe8W.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Moving Pictures, DPI", "id": 7947}], "release_date": "2009-02-20", "popularity": 0.321935485608524, "original_title": "Fired Up!", "budget": 20000000, "cast": [{"name": "Nicholas D'agosto", "character": "Shawn Colfax", "id": 37059, "credit_id": "52fe47549251416c7509576b", "cast_id": 2, "profile_path": "/4EgYTRYaAmCoV3qG1XJQKCXudz5.jpg", "order": 0}, {"name": "Eric Christian Olsen", "character": "Nick Brady", "id": 29020, "credit_id": "52fe47549251416c7509576f", "cast_id": 3, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 1}, {"name": "Sarah Roemer", "character": "Carly", "id": 20376, "credit_id": "52fe47549251416c75095773", "cast_id": 4, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 2}, {"name": "Molly Sims", "character": "Diora", "id": 60952, "credit_id": "52fe47549251416c75095777", "cast_id": 5, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 3}, {"name": "Danneel Ackles", "character": "Bianca", "id": 81164, "credit_id": "52fe47549251416c7509577b", "cast_id": 6, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 4}, {"name": "David Walton", "character": "Dr. Rick", "id": 83231, "credit_id": "52fe47549251416c7509577f", "cast_id": 7, "profile_path": "/kwtK2P8W0PMmaY2yrFwGlDh55y5.jpg", "order": 5}, {"name": "Kayla Ewell", "character": "Margot Jane Lindsworth-Calligan", "id": 109858, "credit_id": "52fe47549251416c75095789", "cast_id": 9, "profile_path": "/zSPaEJ0LiWqVVSZgU55fQd2mbbW.jpg", "order": 6}, {"name": "Adhir Kalyan", "character": "Brewster", "id": 440306, "credit_id": "52fe47549251416c7509578d", "cast_id": 10, "profile_path": "/aMrG4CWhYGjKPgEgmzKTG3w5JqA.jpg", "order": 7}, {"name": "AnnaLynne McCord", "character": "Gwyneth", "id": 82662, "credit_id": "52fe47549251416c75095791", "cast_id": 11, "profile_path": "/7K8yB1bYJt1171kdtLsT0Gq4cmY.jpg", "order": 8}, {"name": "Juliette Goglia", "character": "Poppy", "id": 118420, "credit_id": "52fe47549251416c75095795", "cast_id": 12, "profile_path": "/s0Lp6SmVUH0JNF5JUc0VWuJRYrz.jpg", "order": 9}, {"name": "Philip Baker Hall", "character": "Coach Byrnes", "id": 4492, "credit_id": "52fe47549251416c75095799", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 10}, {"name": "John Michael Higgins", "character": "Coach Keith", "id": 8265, "credit_id": "52fe47549251416c7509579d", "cast_id": 14, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 11}, {"name": "Smith Cho", "character": "Beth", "id": 129142, "credit_id": "52fe47549251416c750957a1", "cast_id": 15, "profile_path": "/8m17HBnVdpWaXALhYJsxj5r6yfS.jpg", "order": 12}, {"name": "Margo Harshman", "character": "Sylvia", "id": 79793, "credit_id": "52fe47549251416c750957a5", "cast_id": 16, "profile_path": "/xr3VmuwcoHyqhfoweV7f6PJipp4.jpg", "order": 13}, {"name": "Hayley Marie Norman", "character": "Angela", "id": 66623, "credit_id": "52fe47549251416c750957a9", "cast_id": 17, "profile_path": "/gXUwyT5CG6wfwI2gV6X193AaGOk.jpg", "order": 14}, {"name": "Jake Sandvig", "character": "Downey", "id": 71725, "credit_id": "52fe47549251416c750957ad", "cast_id": 18, "profile_path": "/hjQEYDL6GBgiMg5FDpMvi2KmqpF.jpg", "order": 15}, {"name": "Masi Oka", "character": "Eagle", "id": 17273, "credit_id": "52fe47549251416c750957b1", "cast_id": 19, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 16}, {"name": "Jill Latiano", "character": "Haley", "id": 180408, "credit_id": "52fe47549251416c750957b5", "cast_id": 20, "profile_path": "/g37gSAprjNV2NSNJHDdC2BbzEZn.jpg", "order": 17}, {"name": "Kate Miner", "character": "Jennifer", "id": 214695, "credit_id": "53183c46c3a3685c43000fd0", "cast_id": 21, "profile_path": "/gIBpjOfDlEEu0nikxc9OzjAEqJk.jpg", "order": 18}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe47549251416c75095767", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.5, "runtime": 90}, "9737": {"poster_path": "/nkRagoJbx9H3zVSEDyH5ldfgwyR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141407024, "overview": "Marcus Burnett is a hen-pecked family man. Mike Lowry is a foot-loose and fancy free ladies' man. Both are Miami policemen, and both have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.", "video": false, "id": 9737, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Bad Boys", "tagline": "Whatcha gonna do?", "vote_count": 664, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4DdFOVFwzbRJLqN4oynYLY0XVwL.jpg", "poster_path": "/tSVbihfvVTCbcm0zXKA7L8R6Y9v.jpg", "id": 14890, "name": "Bad Boys Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112442", "adult": false, "backdrop_path": "/eaCyvpISFA59etDKvcHn2VoN5kD.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}], "release_date": "1995-04-07", "popularity": 0.986310099834311, "original_title": "Bad Boys", "budget": 19000000, "cast": [{"name": "Will Smith", "character": "Detective Mike Lowrey", "id": 2888, "credit_id": "52fe4524c3a36847f80bed07", "cast_id": 47, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Detective Marcus Burnett", "id": 78029, "credit_id": "52fe4524c3a36847f80bec47", "cast_id": 1, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "T\u00e9a Leoni", "character": "Julie Mott", "id": 4939, "credit_id": "52fe4524c3a36847f80bec4b", "cast_id": 3, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 2}, {"name": "Tch\u00e9ky Karyo", "character": "Fouchet", "id": 10698, "credit_id": "52fe4524c3a36847f80bec4f", "cast_id": 4, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 3}, {"name": "Joe Pantoliano", "character": "Captain C. Howard", "id": 532, "credit_id": "52fe4524c3a36847f80bec95", "cast_id": 16, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 4}, {"name": "Marg Helgenberger", "character": "Captain Allison Sinclair", "id": 19838, "credit_id": "52fe4524c3a36847f80bec99", "cast_id": 17, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 5}, {"name": "Michael Imperioli", "character": "Jojo", "id": 11486, "credit_id": "52fe4524c3a36847f80bec9d", "cast_id": 18, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 6}, {"name": "Theresa Randle", "character": "Theresa Burnett", "id": 4604, "credit_id": "52fe4524c3a36847f80beca1", "cast_id": 19, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 7}, {"name": "Anna Thomson", "character": "Francine", "id": 3711, "credit_id": "52fe4524c3a36847f80beca5", "cast_id": 20, "profile_path": "/usbzbfCeAHz7xKMcEUPkVcZ9rHS.jpg", "order": 8}, {"name": "Nestor Serrano", "character": "Detective Sanchez", "id": 14331, "credit_id": "52fe4524c3a36847f80becad", "cast_id": 22, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 9}, {"name": "Kevin Corrigan", "character": "Elliot", "id": 18472, "credit_id": "52fe4524c3a36847f80beca9", "cast_id": 21, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 10}, {"name": "Julio Oscar Mechoso", "character": "Detective Ruiz", "id": 17413, "credit_id": "52fe4524c3a36847f80becb1", "cast_id": 23, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 11}, {"name": "Saverio Guerra", "character": "Chet", "id": 56691, "credit_id": "52fe4524c3a36847f80becb5", "cast_id": 24, "profile_path": "/30zqGjuEdlhkHDfQIIiMCMEMUpZ.jpg", "order": 12}, {"name": "Vic Manni", "character": "Ferguson", "id": 147782, "credit_id": "52fe4524c3a36847f80becb9", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Frank John Hughes", "character": "Casper", "id": 9275, "credit_id": "52fe4524c3a36847f80becbd", "cast_id": 26, "profile_path": "/djOW0Qyeym5wWGqqILWJ6LENikW.jpg", "order": 14}, {"name": "Mike Kirton", "character": "Andy", "id": 146406, "credit_id": "52fe4524c3a36847f80becc1", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Emmanuel Xuereb", "character": "Eddie Dominguez", "id": 137416, "credit_id": "52fe4524c3a36847f80becc5", "cast_id": 28, "profile_path": "/2aRlexep7TP9LJuEiPWmXeEkvto.jpg", "order": 16}, {"name": "Ralph Gonzalez", "character": "Kuni", "id": 147783, "credit_id": "52fe4524c3a36847f80becc9", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "John Salley", "character": "Fletcher", "id": 119869, "credit_id": "52fe4524c3a36847f80bed03", "cast_id": 46, "profile_path": "/sIrLQv2MLpSm9s7sXPbzRtVhYSi.jpg", "order": 18}, {"name": "Lisa Boyle", "character": "Girl Decoy", "id": 9313, "credit_id": "52fe4524c3a36847f80beccd", "cast_id": 30, "profile_path": "/r7YqIRBbeNIgVNK6xgmrmLDh4uW.jpg", "order": 19}, {"name": "Marc Macaulay", "character": "Noah Trafficante", "id": 6908, "credit_id": "52fe4524c3a36847f80becd1", "cast_id": 31, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 20}, {"name": "Karen Alexander", "character": "Maxie Logan", "id": 147786, "credit_id": "52fe4524c3a36847f80becdd", "cast_id": 35, "profile_path": "/79EivixZ9YewAgH7H8wUwn04f0u.jpg", "order": 21}, {"name": "Heather Davis", "character": "Lois Fields", "id": 147787, "credit_id": "52fe4524c3a36847f80bece1", "cast_id": 36, "profile_path": "/7YgZKuRHtfcOlb4AdOqKqufRIoZ.jpg", "order": 22}, {"name": "Buddy Bolton", "character": "Wally", "id": 147789, "credit_id": "52fe4524c3a36847f80bece9", "cast_id": 39, "profile_path": "/oagASMjqQKSHvzWTsxENo0IgdwY.jpg", "order": 23}, {"name": "Will Knickerbocker", "character": "Officer Bill O'Fee", "id": 139360, "credit_id": "52fe4524c3a36847f80beced", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Tiffany Samuels", "character": "Megan Burnett", "id": 147790, "credit_id": "52fe4524c3a36847f80becf1", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Cory Hodges", "character": "James Burnett", "id": 77079, "credit_id": "52fe4524c3a36847f80becf5", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Scott Cumberbatch", "character": "Quincy Burnett", "id": 147791, "credit_id": "52fe4524c3a36847f80becf9", "cast_id": 43, "profile_path": "/vPatqy4kwmHHKf5JL4fe4KTRSqK.jpg", "order": 27}, {"name": "Michael Taliferro", "character": "Car thief", "id": 87360, "credit_id": "52fe4524c3a36847f80becd9", "cast_id": 33, "profile_path": "/8W5mA1wm9pF1J6F7w1XaUojhlUm.jpg", "order": 28}, {"name": "Fawn Reed", "character": "Women at the box training", "id": 147788, "credit_id": "52fe4524c3a36847f80bece5", "cast_id": 37, "profile_path": "/6vX5VD5KziXP0i7xBTYF3oQK2QT.jpg", "order": 29}, {"name": "Joey Romano", "character": "Policeman", "id": 147784, "credit_id": "52fe4524c3a36847f80becd5", "cast_id": 32, "profile_path": null, "order": 30}, {"name": "Sam Ayers", "character": "Policeman", "id": 1217941, "credit_id": "52fe4524c3a36847f80bed3b", "cast_id": 56, "profile_path": "/cPQGYpXiUkrQ9NT0gLWAzbBaz2m.jpg", "order": 31}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4524c3a36847f80bec55", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 118}, "50698": {"poster_path": "/gIWvlqOsAM0E6TOHCMP19TmVVLC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A crew from a paranormal reality television show lock themselves in a haunted psychiatric hospital. They search for evidence of paranormal activity as they shoot what ends up becoming their final episode.", "video": false, "id": 50698, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Grave Encounters", "tagline": "They Were Searching For Proof. They Found it.", "vote_count": 82, "homepage": "http://www.grave-encounters.tv/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1vLfiFfyJp95vpPDUfH3kRMxn5G.jpg", "id": 135466, "name": "Grave Encounters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1703199", "adult": false, "backdrop_path": "/9krmo5DmLg5w6Z95siswq8ecuQq.jpg", "production_companies": [{"name": "Darclight", "id": 6448}, {"name": "Twin Engine Films", "id": 12881}], "release_date": "2011-09-09", "popularity": 0.455872474029276, "original_title": "Grave Encounters", "budget": 1000000, "cast": [{"name": "Sean Rogerson", "character": "Lance", "id": 169747, "credit_id": "52fe47d3c3a36847f814a2c9", "cast_id": 3, "profile_path": "/cHhmthGSHKx2rdRJ0xjfrQo3kB3.jpg", "order": 0}, {"name": "Juan Riedinger", "character": "Matt", "id": 85613, "credit_id": "52fe47d3c3a36847f814a2cd", "cast_id": 4, "profile_path": "/ddNGEfsafxUzoF92WFzNSB2n9p5.jpg", "order": 1}, {"name": "Ashleigh Gryzko", "character": "Sasha", "id": 239150, "credit_id": "52fe47d3c3a36847f814a2d1", "cast_id": 5, "profile_path": "/q9Z6Dwx0ZTci6Yt83ODrOsMQBIN.jpg", "order": 2}, {"name": "Mackenzie Gray", "character": "Houston Gray", "id": 37698, "credit_id": "52fe47d3c3a36847f814a2d5", "cast_id": 6, "profile_path": "/rYkz9NRfhVzgDbpXHRWqLkvjlgh.jpg", "order": 3}, {"name": "Arthur Corber", "character": "Dott. Friedkin", "id": 158412, "credit_id": "52fe47d3c3a36847f814a2d9", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Ben Wilkinson", "character": "Jerry", "id": 51940, "credit_id": "52fe47d3c3a36847f814a2dd", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Michele Cummins", "character": "Ghost", "id": 80359, "credit_id": "52fe47d3c3a36847f814a305", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Luis Javier", "character": "Gardener", "id": 205881, "credit_id": "52fe47d3c3a36847f814a309", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Shawn Macdonald", "character": "Morgan Turner", "id": 220787, "credit_id": "52fe47d3c3a36847f814a30d", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Merwin Mondesir", "character": "T.C. Gibson", "id": 74608, "credit_id": "52fe47d3c3a36847f814a311", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Bob Rathie", "character": "Kenny Sandivol", "id": 208253, "credit_id": "52fe47d3c3a36847f814a315", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Fred Keating", "character": "Gary Crawford", "id": 963962, "credit_id": "55018c82c3a3685b9b002a13", "cast_id": 24, "profile_path": null, "order": 11}], "directors": [{"name": "The Vicious Brothers", "department": "Directing", "job": "Director", "credit_id": "52fe47d3c3a36847f814a2e3", "profile_path": null, "id": 574338}], "vote_average": 6.2, "runtime": 92}, "1547": {"poster_path": "/evo7oiay9qDUzY510VhrB3YzyJs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32000000, "overview": "A mother and her two teenage sons move to a seemingly nice and quiet small coastal California town yet soon find out that it's overrun by bike gangs and vampires. A couple of teenage friends take it upon themselves to hunt down the vampires that they suspect of a few mysterious murders and restore peace and calm to their town.", "video": false, "id": 1547, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "The Lost Boys", "tagline": "Sleep all day. Party all night. Never grow old. Never die. It's fun to be a vampire.", "vote_count": 177, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qXpWa7kDopkOyEhuZtOLgIh4SW9.jpg", "poster_path": "/gS9HGARC0n21Uhs77JXircY84Ns.jpg", "id": 109076, "name": "The Lost Boys Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093437", "adult": false, "backdrop_path": "/ylLbLCVr8RF6PGXxiR2sCSjCmrf.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-07-31", "popularity": 0.473705924046623, "original_title": "The Lost Boys", "budget": 8500000, "cast": [{"name": "Jason Patric", "character": "Michael Emerson", "id": 12261, "credit_id": "52fe42fcc3a36847f8031d9b", "cast_id": 2, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 0}, {"name": "Corey Feldman", "character": "Edgar Frog", "id": 3034, "credit_id": "52fe42fcc3a36847f8031d9f", "cast_id": 3, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 1}, {"name": "Dianne Wiest", "character": "Lucy Emerson", "id": 1902, "credit_id": "52fe42fcc3a36847f8031daf", "cast_id": 9, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 2}, {"name": "Corey Haim", "character": "Sam Emerson", "id": 17444, "credit_id": "52fe42fcc3a36847f8031da3", "cast_id": 4, "profile_path": "/viodPG7i2x0cJHGVHRVs6C8pIrE.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "David", "id": 2628, "credit_id": "52fe42fcc3a36847f8031da7", "cast_id": 5, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "Jami Gertz", "character": "Star", "id": 9995, "credit_id": "52fe42fcc3a36847f8031dab", "cast_id": 8, "profile_path": "/gqmX3nFtx1pFfuXoR0QR608eWT2.jpg", "order": 5}, {"name": "Edward Herrmann", "character": "Max", "id": 52995, "credit_id": "52fe42fcc3a36847f8031db3", "cast_id": 10, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 6}, {"name": "Jamison Newlander", "character": "Alan Frog", "id": 134800, "credit_id": "52fe42fcc3a36847f8031db7", "cast_id": 11, "profile_path": "/ium4BAZvrcJdAfRqNOiIFc8A8cw.jpg", "order": 7}, {"name": "Billy Wirth", "character": "Dwayne", "id": 39112, "credit_id": "52fe42fcc3a36847f8031dbb", "cast_id": 12, "profile_path": "/mSwwHDM3083I7oOGQKzR7nE6Gax.jpg", "order": 8}, {"name": "Alex Winter", "character": "Marko", "id": 18355, "credit_id": "52fe42fcc3a36847f8031dbf", "cast_id": 13, "profile_path": "/yHtymrjOTwB82EnpPgQjIgAXdTN.jpg", "order": 9}, {"name": "Chance Michael Corbitt", "character": "Laddie", "id": 134801, "credit_id": "52fe42fcc3a36847f8031dc3", "cast_id": 14, "profile_path": "/rGODr97vGYCJGFs2cSvGxEbGim8.jpg", "order": 10}, {"name": "Barnard Hughes", "character": "Grandpa", "id": 2549, "credit_id": "52fe42fcc3a36847f8031dd3", "cast_id": 17, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 11}, {"name": "Brooke McCarter", "character": "Paul", "id": 114149, "credit_id": "52fe42fcc3a36847f8031dd7", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Alexander Bacan Chapman", "character": "Greg", "id": 1077770, "credit_id": "52fe42fcc3a36847f8031ddb", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Nori Morgan", "character": "Shelly", "id": 368784, "credit_id": "52fe42fcc3a36847f8031ddf", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Kelly Jo Minter", "character": "Maria", "id": 63046, "credit_id": "52fe42fcc3a36847f8031de3", "cast_id": 21, "profile_path": "/miyC0t5uCSUT07Gtuli7wZCeLFG.jpg", "order": 15}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe42fcc3a36847f8031d97", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.5, "runtime": 97}, "1548": {"poster_path": "/oDoEkXVw5iikwPy0bQ8u0m5E85i.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A quirky girl tries to figure out what to do now that she had graduated from high school, and forms a friendship with an eccentric 40-year-old record collector after playing a prank on him with her best friend.", "video": false, "id": 1548, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Ghost World", "tagline": "Accentuate the negative.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0162346", "adult": false, "backdrop_path": "/jR1fH03X1pazeoBwLTk2bID89Iy.jpg", "production_companies": [{"name": "Capitol Films", "id": 826}, {"name": "Granada Film Productions", "id": 247}, {"name": "Jersey Films", "id": 216}, {"name": "Mr. Mudd Production", "id": 2130}, {"name": "United Artists Pictures", "id": 16685}], "release_date": "2001-06-16", "popularity": 0.297606356172917, "original_title": "Ghost World", "budget": 0, "cast": [{"name": "Thora Birch", "character": "Enid", "id": 2155, "credit_id": "52fe42fcc3a36847f8031e25", "cast_id": 4, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Rebecca", "id": 1245, "credit_id": "52fe42fcc3a36847f8031e29", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Seymour", "id": 884, "credit_id": "52fe42fcc3a36847f8031e2d", "cast_id": 6, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Brad Renfro", "character": "Josh", "id": 51214, "credit_id": "52fe42fcc3a36847f8031e35", "cast_id": 8, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 4}, {"name": "Bob Balaban", "character": "Enid's Dad", "id": 12438, "credit_id": "52fe42fcc3a36847f8031e3d", "cast_id": 10, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 5}, {"name": "Teri Garr", "character": "Maxine", "id": 8437, "credit_id": "52fe42fcc3a36847f8031e5d", "cast_id": 18, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 6}, {"name": "Stacey Travis", "character": "Dana", "id": 31714, "credit_id": "52fe42fcc3a36847f8031e31", "cast_id": 7, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 7}, {"name": "David Cross", "character": "Gerrold, the Pushy Guy", "id": 212, "credit_id": "52fe42fcc3a36847f8031e59", "cast_id": 17, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 8}, {"name": "Pat Healy", "character": "John Ellis", "id": 60846, "credit_id": "52fe42fcc3a36847f8031e55", "cast_id": 16, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 9}, {"name": "Dave Sheridan", "character": "Doug", "id": 35701, "credit_id": "52fe42fcc3a36847f8031e45", "cast_id": 12, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 10}, {"name": "Tom McGowan", "character": "Joe", "id": 77338, "credit_id": "52fe42fcc3a36847f8031e49", "cast_id": 13, "profile_path": "/40M1HdJmCfhGykN0Wl23BB59duY.jpg", "order": 11}, {"name": "Charles C. Stevenson Jr.", "character": "Norman", "id": 141052, "credit_id": "52fe42fcc3a36847f8031e41", "cast_id": 11, "profile_path": null, "order": 12}, {"name": "Debra Azar", "character": "Melora", "id": 183745, "credit_id": "52fe42fcc3a36847f8031e4d", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Brian George", "character": "Sidewinder Boss", "id": 58511, "credit_id": "52fe42fcc3a36847f8031e51", "cast_id": 15, "profile_path": "/g0bVyXsHDhRhd5WuQwRQDv2TkG9.jpg", "order": 14}, {"name": "Illeana Douglas", "character": "Roberta Allsworth", "id": 7796, "credit_id": "53719de3c3a368436e0007cc", "cast_id": 19, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 15}], "directors": [{"name": "Terry Zwigoff", "department": "Directing", "job": "Director", "credit_id": "52fe42fcc3a36847f8031e15", "profile_path": null, "id": 17447}], "vote_average": 7.4, "runtime": 111}, "9741": {"poster_path": "/pvL37V88plePxFSszCbV3wRHiBm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94999143, "overview": "An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead -- and him unscathed. Is he truly unbreakable? The answer could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.", "video": false, "id": 9741, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Unbreakable", "tagline": "Some things are only revealed by accident.", "vote_count": 358, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0217869", "adult": false, "backdrop_path": "/4WQG7oGOjNQX9U89CpPO0hyLFxz.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Limited Edition Productions Inc.", "id": 3683}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Barry Mendel Productions", "id": 17032}], "release_date": "2000-11-13", "popularity": 1.27599237995361, "original_title": "Unbreakable", "budget": 75000000, "cast": [{"name": "Bruce Willis", "character": "David Dunn", "id": 62, "credit_id": "52fe4525c3a36847f80befd5", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Elijah Price", "id": 2231, "credit_id": "52fe4525c3a36847f80befd9", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Robin Wright", "character": "Audrey Dunn", "id": 32, "credit_id": "52fe4525c3a36847f80befdd", "cast_id": 3, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Spencer Treat Clark", "character": "Joseph Dunn", "id": 4012, "credit_id": "52fe4525c3a36847f80befe1", "cast_id": 4, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 3}, {"name": "John Patrick Amedori", "character": "Hostage Boy", "id": 43464, "credit_id": "52fe4525c3a36847f80bf015", "cast_id": 14, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 4}, {"name": "Chance Kelly", "character": "Orange Suit Man", "id": 17194, "credit_id": "52fe4525c3a36847f80bf03d", "cast_id": 21, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 5}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80befe7", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 6.5, "runtime": 106}, "1551": {"poster_path": "/3CoUzgCU8kR2UCXovrvfNAjvWkI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61308153, "overview": "Five medical students want to find out if there is life after death. They plan to stop one of their hearts for a few seconds, thus simulating death, and then bring the person back to life. A science fiction thriller from the early 1990's with a star studded cast.", "video": false, "id": 1551, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Flatliners", "tagline": "Some lines shouldn't be crossed.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099582", "adult": false, "backdrop_path": "/usLfxbW0hPIcx3Wd7dZE8gKX7Bp.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Stonebridge Entertainment", "id": 5738}], "release_date": "1990-08-09", "popularity": 0.714286110025878, "original_title": "Flatliners", "budget": 26000000, "cast": [{"name": "Kiefer Sutherland", "character": "Nelson", "id": 2628, "credit_id": "52fe42fcc3a36847f8031f71", "cast_id": 1, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Rachel Mannus", "id": 1204, "credit_id": "52fe42fcc3a36847f8031f75", "cast_id": 2, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "David Labraccio", "id": 4724, "credit_id": "52fe42fcc3a36847f8031f79", "cast_id": 3, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "William Baldwin", "character": "Joe Hurley", "id": 13021, "credit_id": "52fe42fdc3a36847f8031f7d", "cast_id": 4, "profile_path": "/wQjXdPYT524QJ0YqKrjPcZWfkHu.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Randy Steckle", "id": 17485, "credit_id": "52fe42fdc3a36847f8031f87", "cast_id": 6, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "Kimberly Scott", "character": "Winnie Hicks", "id": 1984, "credit_id": "52fe42fdc3a36847f8031f8b", "cast_id": 7, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 5}, {"name": "Joshua Rudoy", "character": "Billy Mahoney", "id": 56510, "credit_id": "52fe42fdc3a36847f8031f8f", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Benjamin Mouton", "character": "Rachel's Father", "id": 10488, "credit_id": "52fe42fdc3a36847f8031f93", "cast_id": 9, "profile_path": "/nzYS12c1c7GNnsnce1ysfOTgLyz.jpg", "order": 7}, {"name": "Aeryk Egan", "character": "Young Nelson", "id": 51215, "credit_id": "52fe42fdc3a36847f8031f97", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Kesha Reed", "character": "Young Winnie", "id": 1075041, "credit_id": "52fe42fdc3a36847f8031f9b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Hope Davis", "character": "Anne Coldren", "id": 15250, "credit_id": "52fe42fdc3a36847f8031f9f", "cast_id": 12, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 10}, {"name": "Jim Ortlieb", "character": "Uncle Dave", "id": 159394, "credit_id": "52fe42fdc3a36847f8031fa3", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "John Duda", "character": "Young David", "id": 949848, "credit_id": "52fe42fdc3a36847f8031fa7", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Megan Stewart", "character": "Playground Kid", "id": 1075042, "credit_id": "52fe42fdc3a36847f8031fab", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Tressa Thomas", "character": "Playground Kid", "id": 1075043, "credit_id": "52fe42fdc3a36847f8031faf", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Sanna Vraa", "character": "Bridget", "id": 1303226, "credit_id": "532d199bc3a3685fd30010fd", "cast_id": 19, "profile_path": null, "order": 15}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe42fdc3a36847f8031f83", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.5, "runtime": 115}, "1624": {"poster_path": "/qd8VcWKrE4cNfInl9Osb8o8h9KP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181000000, "overview": "Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.", "video": false, "id": 1624, "genres": [{"id": 35, "name": "Comedy"}], "title": "Liar Liar", "tagline": "Trust me.", "vote_count": 418, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119528", "adult": false, "backdrop_path": "/ssx6yy6bVelmV4TNF1Ckx0CQIUO.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1997-03-21", "popularity": 1.06166950180665, "original_title": "Liar Liar", "budget": 45000000, "cast": [{"name": "Jim Carrey", "character": "Fletcher Reede", "id": 206, "credit_id": "52fe4305c3a36847f8034923", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Maura Tierney", "character": "Audrey Reede", "id": 16307, "credit_id": "52fe4305c3a36847f8034927", "cast_id": 2, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 1}, {"name": "Justin Cooper", "character": "Max Reede", "id": 18190, "credit_id": "52fe4305c3a36847f803492b", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Cary Elwes", "character": "Jerry", "id": 2130, "credit_id": "52fe4305c3a36847f803492f", "cast_id": 4, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 3}, {"name": "Anne Haney", "character": "Greta", "id": 11718, "credit_id": "52fe4305c3a36847f8034933", "cast_id": 5, "profile_path": "/2kajFAcj6bYevLdh0gwUQ6inDJN.jpg", "order": 4}, {"name": "Jennifer Tilly", "character": "Samantha Cole", "id": 7906, "credit_id": "52fe4305c3a36847f8034937", "cast_id": 6, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 5}, {"name": "Amanda Donohoe", "character": "Miranda", "id": 18191, "credit_id": "52fe4305c3a36847f803493b", "cast_id": 7, "profile_path": "/m8W5Y0sjkN3q5jNZkfbs24eZ1I7.jpg", "order": 6}, {"name": "Jason Bernard", "character": "Judge Marshall Stevens", "id": 18192, "credit_id": "52fe4305c3a36847f803493f", "cast_id": 8, "profile_path": "/sbzBKAZ1KWIusoX9nX75sIyaAJI.jpg", "order": 7}, {"name": "Swoosie Kurtz", "character": "Dana Appleton", "id": 12967, "credit_id": "52fe4305c3a36847f8034943", "cast_id": 9, "profile_path": "/vMZajDmqbbfzSw6jxgAYIf3CrJm.jpg", "order": 8}, {"name": "Mitchell Ryan", "character": "Mr. Allan", "id": 14312, "credit_id": "52fe4305c3a36847f8034947", "cast_id": 10, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 9}, {"name": "Christopher Mayer", "character": "Kenneth Falk", "id": 18193, "credit_id": "52fe4305c3a36847f803494b", "cast_id": 11, "profile_path": null, "order": 10}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4305c3a36847f8034951", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 6.1, "runtime": 86}, "1555": {"poster_path": "/klgupoPi3vmmzFP3qTCvOcfXzsq.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A strait-laced French student moves into an apartment in Barcelona with a cast of six other characters from all over Europe. Together, they speak the international language of love and friendship.", "video": false, "id": 1555, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Spanish Apartment", "tagline": "", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ahNzWAv20FlJ0i2wrrgKPOjQCT.jpg", "poster_path": "/woD0gFHbZgwi9RpLL0uSQ56hnJA.jpg", "id": 239766, "name": "The Klapisch Trilogy"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0283900", "adult": false, "backdrop_path": "/uK831vMfGfvZIAmam29IozN0XDe.jpg", "production_companies": [{"name": "Mate Producciones S.A.", "id": 732}], "release_date": "2002-05-17", "popularity": 0.465362193457274, "original_title": "L'Auberge Espagnole", "budget": 0, "cast": [{"name": "Romain Duris", "character": "Xavier", "id": 17497, "credit_id": "52fe42fdc3a36847f8032179", "cast_id": 2, "profile_path": "/buU0mFOX7PvSr50F6H8SrN71W08.jpg", "order": 0}, {"name": "Audrey Tautou", "character": "Martine", "id": 2405, "credit_id": "52fe42fdc3a36847f803217d", "cast_id": 3, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 1}, {"name": "Kelly Reilly", "character": "Wendy", "id": 17521, "credit_id": "52fe42fdc3a36847f8032181", "cast_id": 4, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 2}, {"name": "C\u00e9cile De France", "character": "Isabelle", "id": 17522, "credit_id": "52fe42fdc3a36847f8032185", "cast_id": 5, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 3}, {"name": "Cristina Brondo", "character": "Soledad", "id": 17523, "credit_id": "52fe42fdc3a36847f8032189", "cast_id": 6, "profile_path": "/7TQWQ6ZKY7S0PMlx9N6Zz2dFY3B.jpg", "order": 4}, {"name": "Federico D'Anna", "character": "Alessandro", "id": 17524, "credit_id": "52fe42fdc3a36847f803218d", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Barnaby Metschurat", "character": "Tobias", "id": 17525, "credit_id": "52fe42fdc3a36847f8032191", "cast_id": 8, "profile_path": "/p48ZYBgBVvtnaBrbR4zV4bllWIM.jpg", "order": 6}, {"name": "Christian Pagh", "character": "Lars", "id": 17526, "credit_id": "52fe42fdc3a36847f8032195", "cast_id": 9, "profile_path": "/1ws4zGNNMdXAjTv2XptZrIXhPfD.jpg", "order": 7}, {"name": "Martine Demaret", "character": "La m\u00e8re de Xavier", "id": 17527, "credit_id": "52fe42fdc3a36847f8032199", "cast_id": 10, "profile_path": "/duOIXKudnTBE12Nb4W9VpATlHAk.jpg", "order": 8}, {"name": "Javier Coromina", "character": "Juan", "id": 17528, "credit_id": "52fe42fdc3a36847f803219d", "cast_id": 11, "profile_path": "/iKqJHlatnakTrlRQv3oxfNqhNsH.jpg", "order": 9}, {"name": "Jacno", "character": "Le p\u00e8re de Xavier", "id": 17529, "credit_id": "52fe42fdc3a36847f80321a1", "cast_id": 12, "profile_path": "/tVfI9hq4OcVv9WQzKo1f2zNbNgS.jpg", "order": 10}, {"name": "Judith Godr\u00e8che", "character": "Anne-Sophie", "id": 73937, "credit_id": "52fe42fdc3a36847f80321e1", "cast_id": 23, "profile_path": "/mbIrbBymdMVZIaNv0bDGUXKV7p7.jpg", "order": 11}, {"name": "Kevin Bishop", "character": "William", "id": 19996, "credit_id": "52fe42fdc3a36847f80321e5", "cast_id": 24, "profile_path": "/5bXi3SggfHgNWvm3EidSe9B1Td3.jpg", "order": 12}, {"name": "Xavier de Guillebon", "character": "Jean-Michel", "id": 400612, "credit_id": "53785ec30e0a2614160044e6", "cast_id": 25, "profile_path": "/8o5p6XIGaXZXAFdGBcJVlXhMKAv.jpg", "order": 13}, {"name": "Wladimir Yordanoff", "character": "Jean-Charles Perrin", "id": 64541, "credit_id": "53785ee40e0a261428004312", "cast_id": 26, "profile_path": "/aYhr9jIf6O4roWmOdUf4cFD5mbc.jpg", "order": 14}, {"name": "Irene Montal\u00e0", "character": "Neus", "id": 72673, "credit_id": "53785f1c0e0a2614220045d0", "cast_id": 27, "profile_path": "/e5ZELAdvIRcDoH7sGQ6eErNhlGE.jpg", "order": 15}, {"name": "Iddo Goldberg", "character": "Alistair", "id": 94958, "credit_id": "53785f470e0a26142800432d", "cast_id": 28, "profile_path": "/VXjK4ZcvDMLOpkE3egiKNzM9HN.jpg", "order": 16}, {"name": "Olivier Raynal", "character": "Bruce", "id": 1320851, "credit_id": "53785f8d0e0a26141600450a", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Paulina G\u00e1lvez", "character": "la professeur de flamenco", "id": 72674, "credit_id": "53785fc10e0a261416004512", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "C\u00e9dric Klapisch", "character": "un professeur d'universit\u00e9", "id": 17520, "credit_id": "53785fda0e0a26143100448a", "cast_id": 31, "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "order": 19}], "directors": [{"name": "C\u00e9dric Klapisch", "department": "Directing", "job": "Director", "credit_id": "52fe42fdc3a36847f8032175", "profile_path": "/bUujgUI3PZ9qK54uGzndVp4CNRc.jpg", "id": 17520}], "vote_average": 6.9, "runtime": 122}, "99861": {"poster_path": "/t90Y3G8UGQp0f0DrP60wRu9gfrH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth\u2019s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.", "video": false, "id": 99861, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Avengers: Age of Ultron", "tagline": "A New Age Has Come.", "vote_count": 113, "homepage": "http://marvel.com/movies/movie/193/avengers_age_of_ultron", "belongs_to_collection": {"backdrop_path": "/zuW6fOiusv4X9nnW3paHGfXcSll.jpg", "poster_path": "/qJawKUQcIBha507UahUlX0keOT7.jpg", "id": 86311, "name": "The Avengers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2395427", "adult": false, "backdrop_path": "/rFtsE7Lhlc2jRWF7SRAU0fvrveQ.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2015-05-01", "popularity": 25.3046862595066, "original_title": "Avengers: Age of Ultron", "budget": 250000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe4a449251416c750e3459", "cast_id": 9, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe4a449251416c750e3465", "cast_id": 12, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 1}, {"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe4a449251416c750e3455", "cast_id": 8, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Bruce Banner / The Hulk", "id": 103, "credit_id": "52fe4a449251416c750e3471", "cast_id": 15, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe4a449251416c750e345d", "cast_id": 10, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Clint Barton / Hawkeye", "id": 17604, "credit_id": "52fe4a449251416c750e3461", "cast_id": 11, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "James Spader", "character": "Ultron (voice)", "id": 13548, "credit_id": "52fe4a449251416c750e3485", "cast_id": 19, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 6}, {"name": "Elizabeth Olsen", "character": "Wanda Maximoff / Scarlet Witch", "id": 550843, "credit_id": "52fe4a449251416c750e3489", "cast_id": 20, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 7}, {"name": "Aaron Taylor-Johnson", "character": "Pietro Maximoff / Quicksilver", "id": 27428, "credit_id": "52fe4a449251416c750e348d", "cast_id": 21, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 8}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice) / The Vision", "id": 6162, "credit_id": "537d37670e0a2624c000005f", "cast_id": 24, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 9}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4a449251416c750e346d", "cast_id": 14, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 10}, {"name": "Cobie Smulders", "character": "Maria Hill", "id": 71189, "credit_id": "52fe4a449251416c750e3469", "cast_id": 13, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 11}, {"name": "Don Cheadle", "character": "Colonel James \"Rhodey\" Rhodes / War Machine", "id": 1896, "credit_id": "537d37710e0a2624c300005c", "cast_id": 25, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 12}, {"name": "Anthony Mackie", "character": "Sam Wilson / Falcon", "id": 53650, "credit_id": "552528c4925141718d001687", "cast_id": 56, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 13}, {"name": "Stellan Skarsg\u00e5rd", "character": "Erik Selvig", "id": 1640, "credit_id": "540679580e0a2637270005ff", "cast_id": 31, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 14}, {"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "537d37480e0a2624c700004e", "cast_id": 23, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 15}, {"name": "Thomas Kretschmann", "character": "Baron Wolfgang von Strucker", "id": 3491, "credit_id": "52fe4a449251416c750e3491", "cast_id": 22, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 16}, {"name": "Andy Serkis", "character": "Ulysses Klaw", "id": 1333, "credit_id": "5406794e0e0a26372a0005ba", "cast_id": 30, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 17}, {"name": "Idris Elba", "character": "Heimdall", "id": 17605, "credit_id": "54e7eae2c3a36836ed000d67", "cast_id": 40, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 19}, {"name": "Claudia Kim", "character": "Dr. Helen Cho", "id": 1401531, "credit_id": "54e7eb16c3a3684ea6000405", "cast_id": 41, "profile_path": "/um1pGqhglgtF5OcKmRhA90kS25A.jpg", "order": 20}, {"name": "Linda Cardellini", "character": "Laura Barton", "id": 1817, "credit_id": "552527519251415c7c00b9e7", "cast_id": 50, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 21}, {"name": "Julie Delpy", "character": "Madame B", "id": 1146, "credit_id": "55252762c3a3687df800138a", "cast_id": 51, "profile_path": "/4LfbFCLGHHkHVikRdgxbN6hbatl.jpg", "order": 22}, {"name": "Lou Ferrigno", "character": "Hulk (voice)", "id": 19137, "credit_id": "5406798a0e0a263724000607", "cast_id": 33, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 23}, {"name": "Josh Brolin", "character": "Thanos", "id": 16851, "credit_id": "552527ca92514172480016c9", "cast_id": 53, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 24}, {"name": "Henry Goodman", "character": "Dr. List", "id": 7030, "credit_id": "552527a4925141727600162e", "cast_id": 52, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 25}, {"name": "Nick W. Nicholson", "character": "Dr. Taryl Jenkins", "id": 1429470, "credit_id": "54e7ea64c3a36836e0000c45", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Dominique Provost-Chalkley", "character": "Zrinka", "id": 1196961, "credit_id": "54e7eb979251412eae000d16", "cast_id": 43, "profile_path": "/yTTh9yVyxwRBbjS24bUKwmaU2e8.jpg", "order": 27}, {"name": "Isaac Andrews", "character": "Costel", "id": 1264233, "credit_id": "552527fbc3a3687ded0013f2", "cast_id": 54, "profile_path": "/5R8RheJGkn7lY6qgiHvQ5YhRLpY.jpg", "order": 28}, {"name": "Dilyana Bouklieva", "character": "Sokovian Citizen", "id": 1394333, "credit_id": "54e7ebb8c3a36836ea000db6", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "Daniel Westwood", "character": "Asgardian God", "id": 1371439, "credit_id": "54e7eb40c3a36836d6000b2b", "cast_id": 42, "profile_path": "/yvblj5nqxW7QOTnDWEooKLyGfB3.jpg", "order": 30}, {"name": "Julian Bleach", "character": "Balett Instructor", "id": 30086, "credit_id": "55252820c3a3687df80013b1", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "Stan Lee", "character": "", "id": 7624, "credit_id": "5406795f0e0a263724000601", "cast_id": 32, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 32}, {"name": "Imogen Poynton", "character": "Lila Barton", "id": 1405571, "credit_id": "552529ccc3a3687ded001421", "cast_id": 57, "profile_path": null, "order": 33}, {"name": "Isabella Poynton", "character": "Lila Barton", "id": 1405570, "credit_id": "552529db9251417be200a647", "cast_id": 58, "profile_path": null, "order": 34}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe4a449251416c750e3439", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 8.4, "runtime": 142}, "9750": {"poster_path": "/ouNyskL3MjSr1SZe5rIfxmQ1E4M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41098065, "overview": "Randy Daytona was a child ping pong prodigy who lost his chance at Olympic gold when his father is murdered by the mysterious Feng over a gambling debt. 15yrs later he's down on his luck and scraping a living doing seedy back room shows in Vegas; when the FBI turn up and ask for his help to take down Feng... who just happens to love Ping Pong.", "video": false, "id": 9750, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Balls of Fury", "tagline": "A huge comedy with tiny balls.", "vote_count": 51, "homepage": "http://www.ballsoffury.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0424823", "adult": false, "backdrop_path": "/fsyvKv5KgPWFSeN0lJuYoI9InpJ.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2007-08-29", "popularity": 0.0975178164199761, "original_title": "Balls of Fury", "budget": 0, "cast": [{"name": "Dan Fogler", "character": "Randy Daytona", "id": 58873, "credit_id": "52fe4526c3a36847f80bf2e5", "cast_id": 13, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 0}, {"name": "Christopher Walken", "character": "Feng", "id": 4690, "credit_id": "52fe4526c3a36847f80bf2e9", "cast_id": 14, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 1}, {"name": "George Lopez", "character": "Agent Ernie Rodriquez", "id": 41798, "credit_id": "52fe4526c3a36847f80bf2ed", "cast_id": 15, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 2}, {"name": "Maggie Q", "character": "Maggie Wong", "id": 21045, "credit_id": "52fe4526c3a36847f80bf2f1", "cast_id": 16, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 3}, {"name": "James Hong", "character": "Master Wong", "id": 20904, "credit_id": "52fe4526c3a36847f80bf2f5", "cast_id": 17, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 4}, {"name": "Brett Delbuono", "character": "Randy Daytona, jung", "id": 64213, "credit_id": "52fe4526c3a36847f80bf2f9", "cast_id": 18, "profile_path": "/zcTEJky6IMqFufRfDVvsi71YUxr.jpg", "order": 5}, {"name": "Aisha Tyler", "character": "Mahogany", "id": 38674, "credit_id": "52fe4526c3a36847f80bf309", "cast_id": 21, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 6}, {"name": "Terry Crews", "character": "Freddy", "id": 53256, "credit_id": "52fe4526c3a36847f80bf30d", "cast_id": 22, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 7}, {"name": "Robert Patrick", "character": "Sgt. Pete Daytona", "id": 418, "credit_id": "52fe4526c3a36847f80bf311", "cast_id": 23, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 8}, {"name": "Diedrich Bader", "character": "Gary", "id": 5727, "credit_id": "52fe4526c3a36847f80bf315", "cast_id": 24, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 9}, {"name": "Thomas Lennon", "character": "Karl Wolfschtagg", "id": 539, "credit_id": "52fe4526c3a36847f80bf319", "cast_id": 25, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 10}, {"name": "Cary-Hiroyuki Tagawa", "character": "Mysterious Asian Man", "id": 11398, "credit_id": "52fe4526c3a36847f80bf31d", "cast_id": 26, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 11}, {"name": "Jason Scott Lee", "character": "Siu-Foo", "id": 58319, "credit_id": "52fe4526c3a36847f80bf321", "cast_id": 27, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 12}, {"name": "Toby Huss", "character": "Groundskeeper", "id": 18271, "credit_id": "52fe4526c3a36847f80bf325", "cast_id": 28, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 13}, {"name": "David Koechner", "character": "Rick The Birdmaster", "id": 28638, "credit_id": "52fe4526c3a36847f80bf329", "cast_id": 29, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 14}, {"name": "Patton Oswalt", "character": "Hammer", "id": 10872, "credit_id": "52fe4526c3a36847f80bf32d", "cast_id": 30, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 15}, {"name": "Masi Oka", "character": "Jeff - Bathroom Attendant", "id": 17273, "credit_id": "52fe4526c3a36847f80bf331", "cast_id": 31, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 16}, {"name": "Irina Voronina", "character": "Coach Schmidt", "id": 138970, "credit_id": "54ef9b02c3a3686d6600778e", "cast_id": 32, "profile_path": "/mCQ6fVaPGCN84GLBnuxHuYcc4bT.jpg", "order": 17}], "directors": [{"name": "Ben Garant", "department": "Directing", "job": "Director", "credit_id": "52fe4526c3a36847f80bf2ff", "profile_path": "/uLZaBXlp3fwRMtccGF2u1D732D.jpg", "id": 59413}], "vote_average": 4.9, "runtime": 90}, "140823": {"poster_path": "/mvs3reS18RP6IhjLwwLeVtkoeg0.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112544580, "overview": "Author P.L. Travers travels from London to Hollywood as Walt Disney Pictures adapts her novel Mary Poppins for the big screen.", "video": false, "id": 140823, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Saving Mr. Banks", "tagline": "Where her book ended, their story began.", "vote_count": 381, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2140373", "adult": false, "backdrop_path": "/fJQ5kjLx4UdK05MC323Vlzwr6S8.jpg", "production_companies": [{"name": "Hopscotch Features", "id": 21079}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Ruby Films", "id": 2054}, {"name": "Essential Media & Entertainment", "id": 6747}, {"name": "BBC Films", "id": 288}], "release_date": "2013-12-20", "popularity": 1.3733718623877, "original_title": "Saving Mr. Banks", "budget": 35000000, "cast": [{"name": "Emma Thompson", "character": "P.L. Travers", "id": 7056, "credit_id": "52fe4a9c9251416c750e817d", "cast_id": 13, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 0}, {"name": "Tom Hanks", "character": "Walt Disney", "id": 31, "credit_id": "52fe4a9c9251416c750e8175", "cast_id": 11, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Ralph", "id": 13242, "credit_id": "52fe4a9c9251416c750e8181", "cast_id": 14, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Colin Farrell", "character": "Travers Robert Goff", "id": 72466, "credit_id": "52fe4a9c9251416c750e8179", "cast_id": 12, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 3}, {"name": "Ruth Wilson", "character": "Margaret Goff", "id": 47720, "credit_id": "52fe4a9c9251416c750e8195", "cast_id": 19, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 4}, {"name": "Jason Schwartzman", "character": "Richard Sherman", "id": 17881, "credit_id": "52fe4a9c9251416c750e8185", "cast_id": 15, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 5}, {"name": "Bradley Whitford", "character": "Don DaGradi", "id": 11367, "credit_id": "52fe4a9c9251416c750e8189", "cast_id": 16, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "Annie Rose Buckley", "character": "Ginty", "id": 1278755, "credit_id": "52fe4a9c9251416c750e81a3", "cast_id": 24, "profile_path": "/nWEt6ZCPYCsg3QhD1WiNSmde1OO.jpg", "order": 7}, {"name": "B. J. Novak", "character": "Robert Sherman", "id": 107770, "credit_id": "52fe4a9c9251416c750e8199", "cast_id": 20, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 8}, {"name": "Kathy Baker", "character": "Tommie", "id": 1907, "credit_id": "52fe4a9c9251416c750e818d", "cast_id": 17, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 9}, {"name": "Lily Bigham", "character": "Biddy", "id": 1278758, "credit_id": "52fe4a9c9251416c750e81a7", "cast_id": 25, "profile_path": "/o1IlzwudhmTAqaloYbMJlgYNPr4.jpg", "order": 10}, {"name": "Kathy Baker", "character": "Tommie", "id": 1907, "credit_id": "53135193925141101f006034", "cast_id": 36, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 11}, {"name": "Melanie Paxson", "character": "Dolly", "id": 1212273, "credit_id": "52fe4a9c9251416c750e81ab", "cast_id": 26, "profile_path": "/xOlCqhan45InytlH3LZPqzF8TCn.jpg", "order": 12}, {"name": "Andy McPhee", "character": "Mr. Belhatchett", "id": 78962, "credit_id": "52fe4a9d9251416c750e81af", "cast_id": 27, "profile_path": "/x3MFZjfrrMKde4NtGW40nleLidu.jpg", "order": 13}, {"name": "Rachel Griffiths", "character": "Aunt Ellie", "id": 3052, "credit_id": "52fe4a9c9251416c750e8191", "cast_id": 18, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 14}, {"name": "Ronan Vibert", "character": "Diarmuid Russell", "id": 20523, "credit_id": "531351a7925141101f006036", "cast_id": 37, "profile_path": "/3mCxRbHuq1aJwrFqLwk3OSdqva9.jpg", "order": 15}], "directors": [{"name": "John Lee Hancock", "department": "Directing", "job": "Director", "credit_id": "52fe4a9c9251416c750e814d", "profile_path": "/1eCqzsuFp0xKGeTEErXyEifN82U.jpg", "id": 54040}], "vote_average": 7.5, "runtime": 125}, "82390": {"poster_path": "/96TQRyIg1qgcLNXgqVn9ss2mAuT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1353868, "overview": "A reporter returns to his Florida hometown to investigate a case involving a death row inmate.", "video": false, "id": 82390, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Paperboy", "tagline": "", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1496422", "adult": false, "backdrop_path": "/atMRLGuU69e2SVSY8A7EwhWz0ip.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Lee Daniels Entertainment", "id": 695}, {"name": "Nu Image Films", "id": 925}, {"name": "Benaroya Pictures", "id": 6692}], "release_date": "2012-10-05", "popularity": 0.323451589928494, "original_title": "The Paperboy", "budget": 12500000, "cast": [{"name": "Zac Efron", "character": "Jack Jansen", "id": 29222, "credit_id": "52fe484e9251416c91087a6b", "cast_id": 2, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Ward Jansen", "id": 10297, "credit_id": "52fe484e9251416c91087a6f", "cast_id": 3, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Charlotte Bless", "id": 2227, "credit_id": "52fe484e9251416c91087a73", "cast_id": 4, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "John Cusack", "character": "Hillary Van Wetter", "id": 3036, "credit_id": "52fe484e9251416c91087a77", "cast_id": 5, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 3}, {"name": "David Oyelowo", "character": "Yardley Acheman", "id": 35013, "credit_id": "52fe484e9251416c91087a89", "cast_id": 10, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 4}, {"name": "Macy Gray", "character": "Anita / Narrator", "id": 60560, "credit_id": "52fe484e9251416c91087a81", "cast_id": 8, "profile_path": "/ykjPgs6Djwuxo8hpH04EWBDzeOo.jpg", "order": 5}, {"name": "Scott Glenn", "character": "W.W. Jansen", "id": 349, "credit_id": "52fe484e9251416c91087a85", "cast_id": 9, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 6}, {"name": "Nealla Gordon", "character": "Ellen Guthrie", "id": 109568, "credit_id": "52fe484e9251416c91087a95", "cast_id": 13, "profile_path": "/m1e1x5RBU0Ck9BnTj3gwPkLamXI.jpg", "order": 7}, {"name": "Ned Bellamy", "character": "Tyree van Wetter", "id": 2141, "credit_id": "52fe484e9251416c91087a8d", "cast_id": 11, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 8}, {"name": "Gary Clarke", "character": "Weldon Pine", "id": 134000, "credit_id": "52fe484e9251416c91087a99", "cast_id": 14, "profile_path": "/hnNqvXPQfOFMev2MsByTJSf0ygl.jpg", "order": 9}, {"name": "Nikolette Noel", "character": "Nancy", "id": 934869, "credit_id": "52fe484e9251416c91087a91", "cast_id": 12, "profile_path": "/3HjH0jkOcKuIfFiYxPkaU6M73TR.jpg", "order": 10}], "directors": [{"name": "Lee Daniels", "department": "Directing", "job": "Director", "credit_id": "52fe484e9251416c91087a67", "profile_path": "/xwsuwr435maV9wuo3iWXWVzEIMH.jpg", "id": 20019}], "vote_average": 5.5, "runtime": 107}, "1562": {"poster_path": "/qcZslsw1sCRRMIe1EOjuai2JZMf.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 64238440, "overview": "In this chilling sequel to 28 Days Later, the inhabitants of the British Isles appear to have lost their battle against the onslaught of disease, as the deadly rage virus has killed every citizen there. Six months later, a group of Americans dare to set foot on the isles, convinced the danger has come and gone. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.", "video": false, "id": 1562, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "28 Weeks Later", "tagline": "When days turn to weeks... the horror returns.", "vote_count": 380, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLT5tHDNzb5LfytO2g7q6dF0QkC.jpg", "poster_path": "/52KVqdsEJTYzDpUvOMvP0Bbfq5E.jpg", "id": 1565, "name": "28 Days Later Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0463854", "adult": false, "backdrop_path": "/q4GEKbi4ZO2lhZJg0Zr6kYNKQgm.jpg", "production_companies": [{"name": "DNA Films", "id": 284}, {"name": "Figment Films", "id": 359}, {"name": "Sociedad General de Cine S.A.", "id": 785}, {"name": "UK Film Council", "id": 2452}, {"name": "Fox Atomic", "id": 2890}, {"name": "Koan Films", "id": 10890}], "release_date": "2007-04-26", "popularity": 1.17528182830187, "original_title": "28 Weeks Later", "budget": 15000000, "cast": [{"name": "Imogen Poots", "character": "Tammy", "id": 17606, "credit_id": "52fe42fec3a36847f8032565", "cast_id": 17, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 0}, {"name": "Robert Carlyle", "character": "Don", "id": 18023, "credit_id": "52fe42fec3a36847f8032583", "cast_id": 23, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Scarlet", "id": 9827, "credit_id": "52fe42fec3a36847f803254b", "cast_id": 11, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Jeremy Renner", "character": "Sergeant Doyle", "id": 17604, "credit_id": "52fe42fec3a36847f8032555", "cast_id": 13, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 3}, {"name": "Harold Perrineau", "character": "Flynn", "id": 6195, "credit_id": "52fe42fec3a36847f8032561", "cast_id": 16, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 4}, {"name": "Catherine McCormack", "character": "Alice", "id": 2462, "credit_id": "52fe42fec3a36847f803255d", "cast_id": 15, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 5}, {"name": "Idris Elba", "character": "General Stone", "id": 17605, "credit_id": "52fe42fec3a36847f8032559", "cast_id": 14, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 6}, {"name": "Mackintosh Muggleton", "character": "Andy", "id": 17607, "credit_id": "52fe42fec3a36847f8032569", "cast_id": 18, "profile_path": "/iQFNTcNVfgHE4CZ4UoLhpNQoNmB.jpg", "order": 7}, {"name": "Amanda Walker", "character": "Sally", "id": 108620, "credit_id": "52fe42fec3a36847f8032587", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Shahid Ahmed", "character": "Jacob", "id": 2972, "credit_id": "52fe42fec3a36847f803256d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Garfield Morgan", "character": "Geoff", "id": 170257, "credit_id": "52fe42fec3a36847f803258b", "cast_id": 25, "profile_path": "/hbCQsxjwJEjx7evHmIVX3No9WSM.jpg", "order": 10}, {"name": "Emily Beecham", "character": "Karen", "id": 130414, "credit_id": "52fe42fec3a36847f803258f", "cast_id": 26, "profile_path": "/kuIBDuMZg1XLilCSpnhIUQ28ZXt.jpg", "order": 11}, {"name": "Beans El-Balawi", "character": "Boy in Cottage (as Beans Balawi)", "id": 58913, "credit_id": "52fe42fec3a36847f8032593", "cast_id": 27, "profile_path": "/gKKgurTC5zBJDiNSUnSxTWLmT4N.jpg", "order": 12}, {"name": "Meghan Popiel", "character": "DLR Soldier", "id": 1102065, "credit_id": "52fe42fec3a36847f8032597", "cast_id": 28, "profile_path": "/3clr9teZrczPM3lTwHKXH14De21.jpg", "order": 13}, {"name": "Stewart Alexander", "character": "Military Officer", "id": 165359, "credit_id": "52fe42fec3a36847f803259b", "cast_id": 29, "profile_path": "/hCnwlefK3ws4zYacepkUH9r3xlp.jpg", "order": 14}, {"name": "Philip Bulcock", "character": "Senior Medical Officer", "id": 1128854, "credit_id": "52fe42fec3a36847f803259f", "cast_id": 30, "profile_path": "/1HTTFGHLopYndPS5aYucpG79wTO.jpg", "order": 15}, {"name": "Chris Ryman", "character": "Rooftop Sniper", "id": 1148103, "credit_id": "52fe42fec3a36847f80325a3", "cast_id": 31, "profile_path": "/qTXI6K6TrbJiUxOp9dbgd4mLKJg.jpg", "order": 16}, {"name": "Tristan Tait", "character": "Soldier", "id": 170230, "credit_id": "52fe42fec3a36847f80325a7", "cast_id": 32, "profile_path": "/8XDYVxAyJq81qysTzE5p0KCgSKY.jpg", "order": 17}, {"name": "William Meredith", "character": "Medical Officer", "id": 122344, "credit_id": "52fe42fec3a36847f80325ab", "cast_id": 33, "profile_path": "/5AFiiW7d8MBsnhJhjcVE2LmlqPg.jpg", "order": 18}, {"name": "Matt Reeves", "character": "Bunker Soldier", "id": 127714, "credit_id": "52fe42fec3a36847f80325af", "cast_id": 34, "profile_path": "/unQHNIlbd25vcOfdjdJxKrCaHkD.jpg", "order": 19}, {"name": "Thomas Garvey", "character": "Bunker Major", "id": 235277, "credit_id": "52fe42fec3a36847f80325b3", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Tom Bodell", "character": "Medical Centre Lobby Soldier", "id": 1207197, "credit_id": "52fe42fec3a36847f80325b7", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Andrew Byron", "character": "Carpark Soldier", "id": 1052209, "credit_id": "52fe42fec3a36847f80325bb", "cast_id": 37, "profile_path": "/fogednBetMw92mjwthLs0DVJu9g.jpg", "order": 22}, {"name": "Sarah Finigan", "character": "Carpark Civilian", "id": 933049, "credit_id": "52fe42fec3a36847f80325bf", "cast_id": 38, "profile_path": "/77UiRlRRT3792HxusFxuPMrkNaW.jpg", "order": 23}, {"name": "Roderic Culver", "character": "Carpark Civilian", "id": 40641, "credit_id": "52fe42fec3a36847f80325c3", "cast_id": 39, "profile_path": "/pN6V2Ga9N8qwyzcD7yrlIMhU3CH.jpg", "order": 24}, {"name": "Maeve Malley-Ryan", "character": "Carpark Civilian (as Maeve Ryan)", "id": 1207199, "credit_id": "52fe42fec3a36847f80325c7", "cast_id": 40, "profile_path": "/8idtel3Nk44EUrwZI1voUMQdmoO.jpg", "order": 25}, {"name": "Ed Coleman", "character": "Carpark Civilian", "id": 210908, "credit_id": "52fe42fec3a36847f80325cb", "cast_id": 41, "profile_path": "/gFRjKe4QfoilRuXTZFsRZ4Eo0Gb.jpg", "order": 26}, {"name": "Karen Meagher", "character": "Carpark Civilian", "id": 82414, "credit_id": "52fe42fec3a36847f80325cf", "cast_id": 42, "profile_path": "/iIhQNJCYVsOmiMmP40FDub1CSBW.jpg", "order": 27}, {"name": "Amanda Lawrence", "character": "Carpark Civilian", "id": 990064, "credit_id": "52fe42fec3a36847f80325d3", "cast_id": 43, "profile_path": "/xoiT2bprfCct2fAvHatLiPzFU2L.jpg", "order": 28}, {"name": "Simon Delaney", "character": "Carpark Civilian", "id": 194867, "credit_id": "52fe42fec3a36847f80325d7", "cast_id": 44, "profile_path": "/qGVh9BWQjKkpr2eBgj2xU8DP2dF.jpg", "order": 29}, {"name": "Drew Rhys-Williams", "character": "Carpark Civilian", "id": 1207200, "credit_id": "52fe42fec3a36847f80325db", "cast_id": 45, "profile_path": "/7GmTgiU4qrQTpJyL9a6hsvaSE7x.jpg", "order": 30}, {"name": "Raymond Waring", "character": "Sam", "id": 584994, "credit_id": "52fe42fec3a36847f80325df", "cast_id": 46, "profile_path": "/iI9pw8ukPkgLRF20YVonTO5VQp8.jpg", "order": 31}, {"name": "Kish Sharma", "character": "Depot Man", "id": 513945, "credit_id": "52fe42fec3a36847f80325e3", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Jane Thorne", "character": "Depot Woman", "id": 210950, "credit_id": "52fe42fec3a36847f80325e7", "cast_id": 48, "profile_path": "/eEBZjANlDsDPgIuPYRk2oPBVpgY.jpg", "order": 33}, {"name": "Dean Alexandrou", "character": "Infected Person (uncredited)", "id": 94384, "credit_id": "52fe42fec3a36847f80325eb", "cast_id": 49, "profile_path": "/kr1WMrKVCx9eGJm4thT19gtrpA6.jpg", "order": 34}, {"name": "Didier Dell Benjamin", "character": "Civilian (uncredited)", "id": 1207201, "credit_id": "52fe42fec3a36847f80325ef", "cast_id": 50, "profile_path": "/ckwkBkKsC2Wt2GOrILtDBDFLY8X.jpg", "order": 35}, {"name": "Gareth Clarke", "character": "Infected Person (uncredited)", "id": 1207202, "credit_id": "52fe42fec3a36847f80325f3", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "James Fiddy", "character": "Victim (uncredited)", "id": 1207203, "credit_id": "52fe42fec3a36847f80325f7", "cast_id": 52, "profile_path": "/8RYvhkfNCuWiZOeWrzl46QWTCSU.jpg", "order": 37}, {"name": "Tommy Gunn", "character": "Marine (uncredited)", "id": 1207204, "credit_id": "52fe42fec3a36847f80325fb", "cast_id": 53, "profile_path": "/yiBD0BrDZIsSN4m8f0d8Hl76Eo9.jpg", "order": 38}, {"name": "Daniel Jefferson", "character": "Civilian (uncredited)", "id": 1207205, "credit_id": "52fe42fec3a36847f80325ff", "cast_id": 54, "profile_path": "/g5yRCY0i5d035z1abC1FFptcsDT.jpg", "order": 39}, {"name": "Debbie Kurup", "character": "Infected Person (uncredited)", "id": 1207206, "credit_id": "52fe42fec3a36847f8032603", "cast_id": 55, "profile_path": "/orhBknLRtV7AGXVkEAlol0p7ncq.jpg", "order": 40}, {"name": "Selina Lo", "character": "Infected Person (uncredited)", "id": 115500, "credit_id": "52fe42fec3a36847f8032607", "cast_id": 56, "profile_path": "/wUP65sNUwWZhkzgX0e1BOAIQGwd.jpg", "order": 41}, {"name": "Jo\u00e3o Costa Menezes", "character": "Infected Person (uncredited)", "id": 1207207, "credit_id": "52fe42fec3a36847f803260b", "cast_id": 57, "profile_path": "/xDnd4tnHZAgdMgmt443E4nG7Ko0.jpg", "order": 42}, {"name": "Jane Osborn", "character": "Infected Person (uncredited)", "id": 1207208, "credit_id": "52fe42fec3a36847f803260f", "cast_id": 58, "profile_path": "/lFQrLmDGmEyuETWXZD8CDveA27e.jpg", "order": 43}, {"name": "Jude Poyer", "character": "Infected Person (uncredited)", "id": 65952, "credit_id": "52fe42fec3a36847f8032613", "cast_id": 59, "profile_path": "/quUa0O1fTgPH5aRRq3RNYL6pg8b.jpg", "order": 44}, {"name": "Joseph Ripley", "character": "Infected person (uncredited)", "id": 1207209, "credit_id": "52fe42fec3a36847f8032617", "cast_id": 60, "profile_path": null, "order": 45}], "directors": [{"name": "Juan Carlos Fresnadillo", "department": "Directing", "job": "Director", "credit_id": "52fe42fec3a36847f8032511", "profile_path": "/94EkO6a7AGD7RMR3xWXGmJCY8UW.jpg", "id": 17597}], "vote_average": 6.3, "runtime": 100}, "9757": {"poster_path": "/mbScfMvi5xropJmztEgLGwmeo6N.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95673607, "overview": "A mild-mannered guy who is engaged to a monstrous woman meets the woman of his dreams, and schemes to find a way to be with her.", "video": false, "id": 9757, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Norbit", "tagline": "Have You Ever Made A Really Big Mistake?", "vote_count": 77, "homepage": "http://www.meetnorbit.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477051", "adult": false, "backdrop_path": "/3ZlkfPqLJjuJYNvPFSnxfgtxTjW.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2007-02-08", "popularity": 1.00830336859349, "original_title": "Norbit", "budget": 60000000, "cast": [{"name": "Eddie Murphy", "character": "Norbit", "id": 776, "credit_id": "52fe4527c3a36847f80bf6df", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Thandie Newton", "character": "Kate Thomas", "id": 9030, "credit_id": "52fe4527c3a36847f80bf6e3", "cast_id": 2, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 1}, {"name": "Terry Crews", "character": "Big Jack Latimore", "id": 53256, "credit_id": "52fe4527c3a36847f80bf6e7", "cast_id": 3, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 2}, {"name": "Clifton Powell", "character": "Earl Latimore", "id": 58924, "credit_id": "52fe4527c3a36847f80bf6eb", "cast_id": 4, "profile_path": "/hBw76xJtCwKS2v5rZtzDBqvKLN6.jpg", "order": 3}, {"name": "Lester Speight", "character": "Blue Latimore (as Lester 'Rasta' Speight)", "id": 58925, "credit_id": "52fe4527c3a36847f80bf6ef", "cast_id": 5, "profile_path": "/c0hD4G1ppoHrKrDvygSa9bU2q2q.jpg", "order": 4}, {"name": "Cuba Gooding Jr.", "character": "Deion Hughes", "id": 9777, "credit_id": "52fe4527c3a36847f80bf6f3", "cast_id": 6, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 5}, {"name": "Katt Williams", "character": "Lord Have Mercy", "id": 58926, "credit_id": "52fe4527c3a36847f80bf6f7", "cast_id": 8, "profile_path": "/8f1nGRYIkA9fSBYtU8olUm07Wib.jpg", "order": 7}, {"name": "Floyd Levine", "character": "Abe the Tailor", "id": 58927, "credit_id": "52fe4527c3a36847f80bf6fb", "cast_id": 9, "profile_path": "/qP8m9hTm9DDIslygjManiBqktj8.jpg", "order": 8}, {"name": "Anthony Russell", "character": "Giovanni", "id": 58474, "credit_id": "52fe4527c3a36847f80bf6ff", "cast_id": 10, "profile_path": "/pEDgSXNYJpqkKFxjUywDYn7pKBE.jpg", "order": 9}, {"name": "Pat Crawford Brown", "character": "Mrs. Henderson", "id": 58928, "credit_id": "52fe4527c3a36847f80bf703", "cast_id": 11, "profile_path": "/1aZTnQDtH0rXwA7ox0mCUsJj9z0.jpg", "order": 10}, {"name": "Jeanette Miller", "character": "Mrs. Coleman", "id": 58929, "credit_id": "52fe4527c3a36847f80bf707", "cast_id": 12, "profile_path": "/mpWlUmcibBwYRGZSYn1jY8Ot5Ne.jpg", "order": 11}, {"name": "Michael Colyar", "character": "Morris the Barber", "id": 54430, "credit_id": "52fe4527c3a36847f80bf70b", "cast_id": 13, "profile_path": "/mPFHpTOxGyGuyTdxre202ZqSoLu.jpg", "order": 12}, {"name": "Marlon Wayans", "character": "Buster", "id": 9562, "credit_id": "52fe4527c3a36847f80bf70f", "cast_id": 14, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 13}, {"name": "Alexis Rhee", "character": "Mrs. Ling Ling Wong", "id": 58930, "credit_id": "52fe4527c3a36847f80bf713", "cast_id": 15, "profile_path": "/vu4RAoiD4eXXt0KRA882IwmZQAE.jpg", "order": 14}, {"name": "Eddie Griffin", "character": "Pope Sweet Jesus", "id": 62842, "credit_id": "52fe4527c3a36847f80bf747", "cast_id": 24, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 15}], "directors": [{"name": "Brian Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe4527c3a36847f80bf719", "profile_path": "/l7UfY9nBeus8bHHXvf3mUmtagQJ.jpg", "id": 53177}], "vote_average": 5.3, "runtime": 101}, "9759": {"poster_path": "/wguhhHAHoh2ECwjf5oHRH0P9ial.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56422687, "overview": "A young man receives an emergency phone call on his cell phone from an older woman. The catch? The woman claims to have been kidnapped; and the kidnappers have targeted her husband and child next.", "video": false, "id": 9759, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Cellular", "tagline": "If the signal dies so does she", "vote_count": 141, "homepage": "http://www.cellularthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337921", "adult": false, "backdrop_path": "/xRr4nXdNPjP8sXlNdUH7ckfrqMB.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2004-09-10", "popularity": 1.09324465528016, "original_title": "Cellular", "budget": 25000000, "cast": [{"name": "Chris Evans", "character": "Ryan", "id": 16828, "credit_id": "52fe4527c3a36847f80bf7d7", "cast_id": 20, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Kim Basinger", "character": "Jessica Martin", "id": 326, "credit_id": "52fe4527c3a36847f80bf78d", "cast_id": 3, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 1}, {"name": "Jason Statham", "character": "Ethan", "id": 976, "credit_id": "52fe4527c3a36847f80bf7d3", "cast_id": 19, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Jessica Biel", "character": "Chloe", "id": 10860, "credit_id": "52fe4527c3a36847f80bf795", "cast_id": 5, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 3}, {"name": "William H. Macy", "character": "Sgt. Bob Mooney", "id": 3905, "credit_id": "52fe4527c3a36847f80bf7db", "cast_id": 21, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 4}, {"name": "Will Beinbrink", "character": "Young Security Guard", "id": 58942, "credit_id": "52fe4527c3a36847f80bf791", "cast_id": 4, "profile_path": "/ppLJLsXKF8PsxuiVKx194M4GuNW.jpg", "order": 5}, {"name": "Valerie Cruz", "character": "Dana Bayback", "id": 43232, "credit_id": "52fe4527c3a36847f80bf7bd", "cast_id": 15, "profile_path": "/wZ2p4ET7c6wOcMhD2G2EAkDcE6H.jpg", "order": 6}, {"name": "Brenda Ballard", "character": "Irate Customer #1", "id": 58941, "credit_id": "52fe4527c3a36847f80bf789", "cast_id": 2, "profile_path": null, "order": 7}, {"name": "Caroline Aaron", "character": "Marilyn Mooney", "id": 1910, "credit_id": "52fe4527c3a36847f80bf785", "cast_id": 1, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 8}, {"name": "Chase Bloch", "character": "Timid Boy", "id": 58943, "credit_id": "52fe4527c3a36847f80bf799", "cast_id": 6, "profile_path": null, "order": 9}, {"name": "Chelsea Bloch", "character": "Surf Girl's Friend", "id": 58944, "credit_id": "52fe4527c3a36847f80bf79d", "cast_id": 7, "profile_path": null, "order": 10}, {"name": "Chantille Boudousque", "character": "Chloe's Chilly Friend", "id": 58945, "credit_id": "52fe4527c3a36847f80bf7a1", "cast_id": 8, "profile_path": null, "order": 11}, {"name": "Robin Brenner", "character": "Excitable Customer", "id": 58946, "credit_id": "52fe4527c3a36847f80bf7a5", "cast_id": 9, "profile_path": null, "order": 12}, {"name": "Richard Burgi", "character": "Craig Martin", "id": 25849, "credit_id": "52fe4527c3a36847f80bf7a9", "cast_id": 10, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 13}, {"name": "Paige Cannon", "character": "Girl at Concert", "id": 58947, "credit_id": "52fe4527c3a36847f80bf7ad", "cast_id": 11, "profile_path": null, "order": 14}, {"name": "Nikki Christian", "character": "Porsche Girl", "id": 58948, "credit_id": "52fe4527c3a36847f80bf7b1", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "John Churchill", "character": "Young Guard", "id": 58949, "credit_id": "52fe4527c3a36847f80bf7b5", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Greg Collins", "character": "Aging Security Guard", "id": 58950, "credit_id": "52fe4527c3a36847f80bf7b9", "cast_id": 14, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 17}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe4527c3a36847f80bf7c3", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 6.1, "runtime": 94}, "9760": {"poster_path": "/b4iOOIzR19TnqtUEetXBFxJ54YV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86865564, "overview": "When Edward, Peter, Lucy and Susan each follow their own path, they end up finding themselves at Willy's Chocolate factory. Walking through a wardrobe, they discover the world of Gnarnia, which is ruled by the White Bitch. Meeting up with characters such as Harry Potter and Captain Jack Swallows, the newly reunited family must team up with Aslo, a wise-but-horny lion to stop the white bitch's army", "video": false, "id": 9760, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Epic Movie", "tagline": "We know it's big. We measured it.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0799949", "adult": false, "backdrop_path": "/z2wrnvyIt0SXqrWJnysUFUYDFyx.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2007-01-26", "popularity": 0.586192476731354, "original_title": "Epic Movie", "budget": 20000000, "cast": [{"name": "Kal Penn", "character": "Edward", "id": 53493, "credit_id": "52fe4528c3a36847f80bf833", "cast_id": 1, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 0}, {"name": "Adam Campbell", "character": "Peter", "id": 58952, "credit_id": "52fe4528c3a36847f80bf837", "cast_id": 2, "profile_path": "/tOqtFuVOrb5b9SQRlRfknMPQEyx.jpg", "order": 1}, {"name": "Jennifer Coolidge", "character": "White Bitch", "id": 38334, "credit_id": "52fe4528c3a36847f80bf83b", "cast_id": 3, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 2}, {"name": "Jayma Mays", "character": "Lucy", "id": 34195, "credit_id": "52fe4528c3a36847f80bf83f", "cast_id": 4, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 3}, {"name": "Faune A. Chambers", "character": "Susan", "id": 58953, "credit_id": "52fe4528c3a36847f80bf843", "cast_id": 5, "profile_path": "/hJrfy8Cgd2Xm2hXvgXEOHmqvzZi.jpg", "order": 4}, {"name": "Crispin Glover", "character": "Willy", "id": 1064, "credit_id": "52fe4528c3a36847f80bf847", "cast_id": 6, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 5}, {"name": "Tony Cox", "character": "Bink", "id": 19754, "credit_id": "52fe4528c3a36847f80bf84b", "cast_id": 7, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 6}, {"name": "H\u00e9ctor Jim\u00e9nez", "character": "Mr. Tumnus", "id": 57410, "credit_id": "52fe4528c3a36847f80bf84f", "cast_id": 8, "profile_path": "/gdPEBAWjybV1eBp4qvFg2dj410j.jpg", "order": 7}, {"name": "Darrell Hammond", "character": "Captain Jack Swallows", "id": 58954, "credit_id": "52fe4528c3a36847f80bf853", "cast_id": 9, "profile_path": "/gxLHYyptnLLtak6E5eR7HqvMXRM.jpg", "order": 8}, {"name": "Carmen Electra", "character": "Mystique", "id": 28639, "credit_id": "52fe4528c3a36847f80bf857", "cast_id": 10, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 9}, {"name": "Fred Willard", "character": "Aslo", "id": 20753, "credit_id": "52fe4528c3a36847f80bf85b", "cast_id": 11, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 10}, {"name": "David Carradine", "character": "Museum Curator", "id": 141, "credit_id": "52fe4528c3a36847f80bf85f", "cast_id": 12, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 11}, {"name": "Kevin McDonald", "character": "Harry Potter", "id": 58955, "credit_id": "52fe4528c3a36847f80bf863", "cast_id": 13, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 12}, {"name": "George Alvarez", "character": "Ron", "id": 58956, "credit_id": "52fe4528c3a36847f80bf867", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Crista Flanagan", "character": "Hermoine", "id": 58957, "credit_id": "52fe4528c3a36847f80bf86b", "cast_id": 15, "profile_path": "/pLXGRqfV0nXNN1PdbfdleT8aQ5j.jpg", "order": 14}, {"name": "Jill Latiano", "character": "Singing Pirate Girl", "id": 180408, "credit_id": "52fe4528c3a36847f80bf887", "cast_id": 20, "profile_path": "/g37gSAprjNV2NSNJHDdC2BbzEZn.jpg", "order": 15}, {"name": "Irina Voronina", "character": "Jogging Girl", "id": 138970, "credit_id": "54ef9b7e9251417974006aa6", "cast_id": 21, "profile_path": "/mCQ6fVaPGCN84GLBnuxHuYcc4bT.jpg", "order": 16}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bf871", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bf877", "profile_path": null, "id": 35734}], "vote_average": 3.5, "runtime": 86}, "9762": {"poster_path": "/gyLww7ZlcwuzqvIwM1osR9Ioqtm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114194847, "overview": "Everyone deserves a chance to follow their dreams, but some people only get one shot. Tyler Gage is a rebel from the wrong side of Baltimore\u00b9s tracks and the only thing that stands between him and an unfulfilled life are his dreams of one day making it out of there. Nora is a privileged ballet dancer attending Baltimore\u00b9s ultra-elite Maryland School of the Arts", "video": false, "id": 9762, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up", "tagline": "Every Second Chance Begins With a First Step", "vote_count": 237, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462590", "adult": false, "backdrop_path": "/iNj9LMS5APEHKsFLJdd5geQ94HM.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2006-08-11", "popularity": 2.14238463621609, "original_title": "Step Up", "budget": 12000000, "cast": [{"name": "Channing Tatum", "character": "Tyler Gage", "id": 38673, "credit_id": "52fe4528c3a36847f80bf8fb", "cast_id": 1, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Jenna Dewan", "character": "Nora Clark", "id": 20381, "credit_id": "52fe4528c3a36847f80bf8ff", "cast_id": 2, "profile_path": "/j8BeJ5VL3jp7JWxgYlZPUscP6FC.jpg", "order": 1}, {"name": "Damaine Radcliff", "character": "Mac Carter", "id": 58959, "credit_id": "52fe4528c3a36847f80bf903", "cast_id": 3, "profile_path": "/jLi45CGvPZnCKC5yrXb8NKZmEcG.jpg", "order": 2}, {"name": "De'Shawn Washington", "character": "Skinny Carter", "id": 58960, "credit_id": "52fe4528c3a36847f80bf907", "cast_id": 4, "profile_path": "/mlh9jhbxZPBRbv6fFIuEWTFbZa0.jpg", "order": 3}, {"name": "Mario", "character": "Miles Darby", "id": 58961, "credit_id": "52fe4528c3a36847f80bf90b", "cast_id": 5, "profile_path": "/kIqeadP6fLwoCcrh6f3fKywojAQ.jpg", "order": 4}, {"name": "Drew Sidora", "character": "Lucy Avila", "id": 58962, "credit_id": "52fe4528c3a36847f80bf90f", "cast_id": 6, "profile_path": "/oJS188CTSKwXNGOV9MkxLg5iic0.jpg", "order": 5}, {"name": "Rachel Griffiths", "character": "Director Gordon", "id": 3052, "credit_id": "52fe4528c3a36847f80bf913", "cast_id": 7, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 6}, {"name": "Josh Henderson", "character": "Brett Dolan", "id": 58963, "credit_id": "52fe4528c3a36847f80bf917", "cast_id": 8, "profile_path": "/prBPehVw5l9Sa7ekryA9bXHExjR.jpg", "order": 7}, {"name": "Tim Lacatena", "character": "Andrew", "id": 58964, "credit_id": "52fe4528c3a36847f80bf91b", "cast_id": 9, "profile_path": "/yyswRcxsJOTPpELMx2kXappW2wb.jpg", "order": 8}, {"name": "Alyson Stoner", "character": "Camille", "id": 58965, "credit_id": "52fe4528c3a36847f80bf91f", "cast_id": 10, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 9}, {"name": "Heavy D", "character": "Omar", "id": 18795, "credit_id": "52fe4528c3a36847f80bf923", "cast_id": 11, "profile_path": "/8HDYOmyNHF3GkzcC6FSRjtYD4Sd.jpg", "order": 10}, {"name": "Deirdre Lovejoy", "character": "Nora's Mom / Katherine Clark", "id": 58966, "credit_id": "52fe4528c3a36847f80bf927", "cast_id": 12, "profile_path": "/yH2bcRNh4g9ZTRigDgRhVJEF2gh.jpg", "order": 11}, {"name": "Jane Beard", "character": "Lena Freeman", "id": 58967, "credit_id": "52fe4528c3a36847f80bf92b", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Richard Pelzman", "character": "Bill Freeman", "id": 58968, "credit_id": "52fe4528c3a36847f80bf92f", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Carlyncia S. Peck", "character": "Mac's Mother (as Carlyncia Peck)", "id": 58969, "credit_id": "52fe4528c3a36847f80bf933", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bf939", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 6.7, "runtime": 104}, "9763": {"poster_path": "/wMHXE4qkxBdaahCNhCK2wPJHRKD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27610873, "overview": "Like millions of kids around the world, Santiago harbors the dream of being a professional footballer...However, living in the Barrios section of Los Angeles, he thinks it is only that--a dream. Until one day an extraordinary turn of events has him trying out for Premiership club Newcastle United.", "video": false, "id": 9763, "genres": [{"id": 18, "name": "Drama"}], "title": "Goal!: The Dream Begins", "tagline": "Every Dream Has A Beginning", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/v3HCGVQJ5xmZ37oRKUpsEf4zKQq.jpg", "id": 110177, "name": "Goal! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0380389", "adult": false, "backdrop_path": "/d6M6G6pKIX97hp236KlrDh5uO7P.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Milkshake Films", "id": 17491}, {"name": "Hargitay & Hargitay Pictures in Motion", "id": 17492}], "release_date": "2005-06-06", "popularity": 1.03476385099663, "original_title": "Goal!: The Dream Begins", "budget": 30000000, "cast": [{"name": "Kuno Becker", "character": "Santiago Munez", "id": 58982, "credit_id": "52fe4528c3a36847f80bf9c7", "cast_id": 1, "profile_path": "/brVMiAlM8jGEm61233hIs4IP8Im.jpg", "order": 0}, {"name": "Alessandro Nivola", "character": "Gavin Harris", "id": 4941, "credit_id": "52fe4528c3a36847f80bf9cb", "cast_id": 2, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 1}, {"name": "Anna Friel", "character": "Roz Harmison", "id": 58016, "credit_id": "52fe4528c3a36847f80bf9cf", "cast_id": 3, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Glen Foy", "id": 8435, "credit_id": "52fe4528c3a36847f80bf9d3", "cast_id": 4, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Gary Lewis", "character": "Mal Braithwaite", "id": 480, "credit_id": "52fe4528c3a36847f80bf9d7", "cast_id": 5, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 4}, {"name": "Kieran O'Brien", "character": "Hughie McGowan", "id": 176, "credit_id": "52fe4528c3a36847f80bf9db", "cast_id": 6, "profile_path": "/fNJsy19jh5lUGWLkSKFGTtnEiOL.jpg", "order": 5}, {"name": "Sean Pertwee", "character": "Barry Rankin", "id": 28848, "credit_id": "52fe4528c3a36847f80bf9df", "cast_id": 7, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 6}, {"name": "Marcel Iures", "character": "Erik Dornhelm", "id": 15320, "credit_id": "52fe4528c3a36847f80bf9e3", "cast_id": 8, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 7}, {"name": "Tony Plana", "character": "Hernan Munez", "id": 41737, "credit_id": "52fe4528c3a36847f80bf9e7", "cast_id": 9, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 8}, {"name": "Miriam Colon", "character": "Mercedes", "id": 1163, "credit_id": "52fe4528c3a36847f80bf9eb", "cast_id": 10, "profile_path": "/vNKUyJKVIvAmXT6pv0vWrZXazlS.jpg", "order": 9}, {"name": "Kate Tomlinson", "character": "Val", "id": 58984, "credit_id": "52fe4528c3a36847f80bf9ef", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Emma Field-Rayner", "character": "Lorraine", "id": 11284, "credit_id": "52fe4528c3a36847f80bf9f3", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Zachary Johnson", "character": "Rory", "id": 58985, "credit_id": "52fe4528c3a36847f80bf9f7", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Frances Barber", "character": "Carol Harmison", "id": 47644, "credit_id": "52fe4528c3a36847f80bf9fb", "cast_id": 14, "profile_path": "/anRoKNTpiJhnMTzdcKPujsDowAQ.jpg", "order": 13}, {"name": "Kevin Knapman", "character": "Jamie Drew", "id": 58986, "credit_id": "52fe4528c3a36847f80bf9ff", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Stephen Graham", "character": "Des", "id": 1115, "credit_id": "546289810e0a267810000500", "cast_id": 35, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 15}], "directors": [{"name": "Danny Cannon", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a36847f80bfa05", "profile_path": "/9E4Km6y1O0bK3dUSds3smzu20KI.jpg", "id": 33279}], "vote_average": 6.7, "runtime": 118}, "1572": {"poster_path": "/q4ixsZm82c8GpwsQmjMuwVl5gM9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361212499, "overview": "New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new \"partner\" -- and his beloved city -- in a deadly game that demands their concentration.", "video": false, "id": 1572, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Die Hard: With a Vengeance", "tagline": "Think fast. Look alive. Die hard.", "vote_count": 935, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt0112864", "adult": false, "backdrop_path": "/wV4qDEkxIVbhTKNFJCXYVm1GxdW.jpg", "production_companies": [{"name": "Cinergi Pictures Entertainment", "id": 1504}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1995-05-15", "popularity": 2.70258006263679, "original_title": "Die Hard: With a Vengeance", "budget": 90000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe42ffc3a36847f803297b", "cast_id": 8, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Simon Peter Gruber", "id": 16940, "credit_id": "52fe42ffc3a36847f8032977", "cast_id": 7, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Zeus Carver", "id": 2231, "credit_id": "52fe42ffc3a36847f803297f", "cast_id": 9, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Graham Greene", "character": "Joe Lambert", "id": 6804, "credit_id": "52fe42ffc3a36847f803298f", "cast_id": 12, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 3}, {"name": "Colleen Camp", "character": "Connie Kowalski", "id": 13023, "credit_id": "52fe42ffc3a36847f8032993", "cast_id": 13, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 4}, {"name": "Larry Bryggman", "character": "Chief Cobb", "id": 17351, "credit_id": "52fe42ffc3a36847f8032997", "cast_id": 14, "profile_path": "/fc7XC4C0DayJ6g8ReydAWjwY3IX.jpg", "order": 5}, {"name": "Michael Cristofer", "character": "Jarvis", "id": 21136, "credit_id": "52fe42ffc3a36847f803299b", "cast_id": 15, "profile_path": "/7FbuXmO6dtQ9ZXoon3mth1j9PZV.jpg", "order": 6}, {"name": "Anthony Peck", "character": "Ricky Walsh", "id": 141747, "credit_id": "52fe42ffc3a36847f803299f", "cast_id": 16, "profile_path": "/57e2de2WH5jFm6AJYNTSSjGymtS.jpg", "order": 7}, {"name": "Nicholas Wyman", "character": "Targo", "id": 91421, "credit_id": "52fe42ffc3a36847f80329a3", "cast_id": 17, "profile_path": "/zmwoKCWJ64eLWihIcLdLbJPbWp1.jpg", "order": 8}, {"name": "Sam Phillips", "character": "Katya", "id": 45337, "credit_id": "52fe42ffc3a36847f80329a7", "cast_id": 18, "profile_path": "/8SlWODNQqLc2074BRSNuQTC3wnG.jpg", "order": 9}, {"name": "Kevin Chamberlin", "character": "Charles Weiss", "id": 34395, "credit_id": "52fe42ffc3a36847f80329ab", "cast_id": 19, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 10}, {"name": "Sharon Washington", "character": "Officer Jane", "id": 141748, "credit_id": "52fe42ffc3a36847f80329af", "cast_id": 20, "profile_path": "/xoZjdLHK0p6cPMewBFCQ3JxxIex.jpg", "order": 11}, {"name": "Stephen Pearlman", "character": "Dr. Schiller", "id": 6438, "credit_id": "52fe42ffc3a36847f80329b3", "cast_id": 21, "profile_path": "/a1LcI65LvyKKi5UmaAc2PPihsQm.jpg", "order": 12}, {"name": "Michael Alexander Jackson", "character": "Dexter", "id": 141749, "credit_id": "52fe42ffc3a36847f80329b7", "cast_id": 22, "profile_path": "/aKi2X09NR1h07eR39LcL8nOcu9p.jpg", "order": 13}, {"name": "Aldis Hodge", "character": "Raymond", "id": 83860, "credit_id": "52fe42ffc3a36847f80329bb", "cast_id": 23, "profile_path": "/lPYksVSaRdaHOhC4OzBEOw4uRbp.jpg", "order": 14}, {"name": "Mischa Hausserman", "character": "Mischa", "id": 19902, "credit_id": "52fe42ffc3a36847f80329bf", "cast_id": 24, "profile_path": "/4CJ8dgYS1QJWANpivJ8CI9aARog.jpg", "order": 15}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032955", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.6, "runtime": 131}, "50725": {"poster_path": "/oGQq6m7wxtxRy7vf0WE59A5Zau4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6923891, "overview": "A floundering MIT graduate sends out the '80s with a bang after being invited to an end-of-summer bash by his former high school crush.", "video": false, "id": 50725, "genres": [{"id": 35, "name": "Comedy"}], "title": "Take Me Home Tonight", "tagline": "Best. Night. Ever.", "vote_count": 59, "homepage": "http://www.iamrogue.com/takemehometonight/fullsite/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0810922", "adult": false, "backdrop_path": "/8eCiasauFjjYAOZ81cRwNZGlgnP.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Relativity Media", "id": 7295}, {"name": "Internationale Filmproduktion Blackbird Dritte", "id": 19855}], "release_date": "2011-03-04", "popularity": 0.424258528390488, "original_title": "Take Me Home Tonight", "budget": 19000000, "cast": [{"name": "Topher Grace", "character": "Matt Franklin", "id": 17052, "credit_id": "52fe47d4c3a36847f814a7e7", "cast_id": 1, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 0}, {"name": "Anna Faris", "character": "Wendy Franklin", "id": 1772, "credit_id": "52fe47d4c3a36847f814a7eb", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Barry Nathan", "id": 58873, "credit_id": "52fe47d4c3a36847f814a7ef", "cast_id": 3, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Teresa Palmer", "character": "Tori Frederking", "id": 20374, "credit_id": "52fe47d4c3a36847f814a7f7", "cast_id": 5, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 3}, {"name": "Michelle Trachtenberg", "character": "Kitchelle Storms", "id": 49961, "credit_id": "52fe47d4c3a36847f814a7f3", "cast_id": 4, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 4}, {"name": "Michael Biehn", "character": "Bill Franklin", "id": 2712, "credit_id": "52fe47d4c3a36847f814a7fb", "cast_id": 6, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 5}, {"name": "Chris Pratt", "character": "Kyle Masterson", "id": 73457, "credit_id": "52fe47d4c3a36847f814a7ff", "cast_id": 7, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 6}, {"name": "Jeanie Hackett", "character": "Libby Franklin", "id": 167081, "credit_id": "52fe47d4c3a36847f814a81b", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Lucy Punch", "character": "Shelly", "id": 66446, "credit_id": "52fe47d4c3a36847f814a81f", "cast_id": 14, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 8}, {"name": "Demetri Martin", "character": "Carlos", "id": 84075, "credit_id": "52fe47d4c3a36847f814a823", "cast_id": 15, "profile_path": "/puyGH5mGvsky1RU3rcXqB93xq9S.jpg", "order": 9}, {"name": "Michael Ian Black", "character": "Pete Bering", "id": 22224, "credit_id": "52fe47d4c3a36847f814a827", "cast_id": 16, "profile_path": "/aE2Bx6ABC8GWEDkCxzC8sFA7jni.jpg", "order": 10}, {"name": "Bob Odenkirk", "character": "Mike", "id": 59410, "credit_id": "52fe47d4c3a36847f814a82b", "cast_id": 17, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 11}, {"name": "Angie Everhart", "character": "Trish Anderson", "id": 58312, "credit_id": "52fe47d4c3a36847f814a82f", "cast_id": 18, "profile_path": "/n4coY7os9hPRRLAzcpr4clpLVh1.jpg", "order": 12}, {"name": "Jay Jablonski", "character": "Benji", "id": 63110, "credit_id": "52fe47d4c3a36847f814a833", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Edwin Hodge", "character": "Bryce", "id": 56679, "credit_id": "52fe47d4c3a36847f814a837", "cast_id": 20, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 14}, {"name": "Candace Kroslak", "character": "Ally", "id": 129228, "credit_id": "52fe47d4c3a36847f814a83b", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Nathalie Kelley", "character": "Beth", "id": 116277, "credit_id": "52fe47d4c3a36847f814a83f", "cast_id": 22, "profile_path": "/uXWUjkFD3ZSp9wF5rN74YhfFJOH.jpg", "order": 16}, {"name": "Wade Allain-Marcus", "character": "Broder", "id": 60488, "credit_id": "52fe47d4c3a36847f814a843", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Robert Hoffman", "character": "Tyler 'Dance Machine' Jones", "id": 58368, "credit_id": "52fe47d4c3a36847f814a847", "cast_id": 24, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 18}, {"name": "Ryan Bittle", "character": "Rick Herrington", "id": 149468, "credit_id": "52fe47d4c3a36847f814a84b", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Bruce Nelson", "character": "Officer Frank Johnson", "id": 18705, "credit_id": "52fe47d4c3a36847f814a84f", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Seth Gabel", "character": "Brent", "id": 38888, "credit_id": "52fe47d4c3a36847f814a853", "cast_id": 27, "profile_path": "/luxC39d38CENJY01TeHJb4M9CFk.jpg", "order": 21}, {"name": "James Sharpe", "character": "Steven", "id": 173833, "credit_id": "52fe47d4c3a36847f814a857", "cast_id": 28, "profile_path": null, "order": 22}], "directors": [{"name": "Michael Dowse", "department": "Directing", "job": "Director", "credit_id": "52fe47d4c3a36847f814a805", "profile_path": null, "id": 71280}], "vote_average": 6.9, "runtime": 97}, "1574": {"poster_path": "/18pCc2XZ5MO7wsywOYEbhoeuxNw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 306776732, "overview": "Murderesses Velma Kelly (a chanteuse and tease who killed her husband and sister after finding them in bed together) and Roxie Hart (who killed her boyfriend when she discovered he wasn't going to make her a star) find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.", "video": false, "id": 1574, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Chicago", "tagline": "If You Can't Be Famous, Be Infamous.", "vote_count": 173, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0299658", "adult": false, "backdrop_path": "/qXLXEvYSycdllvdKvmhFXLUcFhM.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Producers Circle", "id": 734}, {"name": "Storyline Entertainment", "id": 8797}], "release_date": "2002-12-26", "popularity": 0.753423343734778, "original_title": "Chicago", "budget": 45000000, "cast": [{"name": "Catherine Zeta-Jones", "character": "Velma Kelly", "id": 1922, "credit_id": "52fe42ffc3a36847f8032b7d", "cast_id": 12, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Roxie Hart", "id": 9137, "credit_id": "52fe42ffc3a36847f8032b81", "cast_id": 13, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Queen Latifah", "character": "Matron Mama Morton", "id": 15758, "credit_id": "52fe42ffc3a36847f8032b85", "cast_id": 14, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 2}, {"name": "Richard Gere", "character": "Billy Flynn", "id": 1205, "credit_id": "52fe42ffc3a36847f8032b89", "cast_id": 15, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 3}, {"name": "Christine Baranski", "character": "Mary Sunshine", "id": 11870, "credit_id": "52fe42ffc3a36847f8032b8d", "cast_id": 16, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 4}, {"name": "Taye Diggs", "character": "Bandleader", "id": 17637, "credit_id": "52fe42ffc3a36847f8032b91", "cast_id": 17, "profile_path": "/1g1demRAGhwdUpwi8PA0wgFe2IX.jpg", "order": 5}, {"name": "Cliff Saunders", "character": "Stage Manager", "id": 17638, "credit_id": "52fe42ffc3a36847f8032b95", "cast_id": 18, "profile_path": "/3c72UmrKyk05bXP07cY26j6R7Rr.jpg", "order": 6}, {"name": "Dominic West", "character": "Fred Casely", "id": 17287, "credit_id": "52fe42ffc3a36847f8032b99", "cast_id": 19, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 7}, {"name": "John C. Reilly", "character": "Amos Hart", "id": 4764, "credit_id": "52fe42ffc3a36847f8032b9d", "cast_id": 20, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 8}, {"name": "Colm Feore", "character": "Harrison", "id": 10132, "credit_id": "52fe42ffc3a36847f8032ba1", "cast_id": 21, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 9}, {"name": "Chita Rivera", "character": "Nickie", "id": 17639, "credit_id": "52fe42ffc3a36847f8032ba5", "cast_id": 22, "profile_path": "/hZQBSolEn1F77AgXmQQPP5kMtIC.jpg", "order": 10}, {"name": "Susan Misner", "character": "Liz", "id": 17640, "credit_id": "52fe42ffc3a36847f8032ba9", "cast_id": 23, "profile_path": "/ugyXBkbrlG97RufRzII4sPM7kU1.jpg", "order": 11}, {"name": "Denise Faye", "character": "Annie", "id": 17641, "credit_id": "52fe42ffc3a36847f8032bad", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Deidre Goodwin", "character": "June", "id": 17642, "credit_id": "52fe42ffc3a36847f8032bb1", "cast_id": 25, "profile_path": "/zXs9Khvfuy0mSoy3B0HfOHRybHn.jpg", "order": 13}, {"name": "M\u00fda", "character": "Mona", "id": 17643, "credit_id": "52fe42ffc3a36847f8032bb5", "cast_id": 26, "profile_path": "/4LYdeULTdahsXDGEHy4YkJiOQbx.jpg", "order": 14}, {"name": "Ekaterina Chtchelkanova", "character": "Hunyak", "id": 17644, "credit_id": "52fe42ffc3a36847f8032bb9", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Lucy Liu", "character": "Kitty Baxter", "id": 140, "credit_id": "52fe42ffc3a36847f8032bbd", "cast_id": 28, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 16}, {"name": "Jonathan Whittaker", "character": "Bailiff", "id": 17645, "credit_id": "52fe42ffc3a36847f8032bc1", "cast_id": 29, "profile_path": "/dST9iLc2THBL4onErxrAo9XY1AS.jpg", "order": 17}, {"name": "Sean McCann", "character": "Judge", "id": 17646, "credit_id": "52fe42ffc3a36847f8032bc5", "cast_id": 30, "profile_path": null, "order": 18}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032b3d", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.4, "runtime": 113}, "9767": {"poster_path": "/wjbKWg1Zcu70mNWo5SzqMkQlQQe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 204999686, "overview": "Cohabitating couple Gary and Brooke find their once-blissful romance on the rocks when petty spats about lemons and dirty dishes mushroom into an all-out battle for custody of their upscale Chicago condo. An escalating argument ensues as Gary and Brooke continue to live under the same roof, all while cooking up schemes to drive each other off the premises.", "video": false, "id": 9767, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Break-Up", "tagline": ". . . pick a side.", "vote_count": 163, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452594", "adult": false, "backdrop_path": "/ttdIBocxJOLaDHlibyp8tVfXnLH.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Wild West Picture Show Productions", "id": 2796}], "release_date": "2006-06-02", "popularity": 1.46464170503919, "original_title": "The Break-Up", "budget": 52000000, "cast": [{"name": "Vince Vaughn", "character": "Gary Grobowski", "id": 4937, "credit_id": "52fe4529c3a36847f80bfc15", "cast_id": 1, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Brooke Meyers", "id": 4491, "credit_id": "52fe4529c3a36847f80bfc19", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Joey Lauren Adams", "character": "Addie", "id": 16484, "credit_id": "52fe4529c3a36847f80bfc1d", "cast_id": 3, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 2}, {"name": "Cole Hauser", "character": "Lupus Grobowski", "id": 6614, "credit_id": "52fe4529c3a36847f80bfc21", "cast_id": 4, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 3}, {"name": "Jon Favreau", "character": "Johnny O", "id": 15277, "credit_id": "52fe4529c3a36847f80bfc25", "cast_id": 5, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Riggleman", "id": 23532, "credit_id": "52fe4529c3a36847f80bfc29", "cast_id": 6, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Judy Davis", "character": "Marilyn Dean", "id": 351, "credit_id": "52fe4529c3a36847f80bfc2d", "cast_id": 7, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 6}, {"name": "Justin Long", "character": "Christopher", "id": 15033, "credit_id": "52fe4529c3a36847f80bfc31", "cast_id": 8, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 7}, {"name": "Ivan Sergei", "character": "Carson Wigham", "id": 38583, "credit_id": "52fe4529c3a36847f80bfc35", "cast_id": 9, "profile_path": "/6YPtG7ewkufvF1UsJzvctkI55Tg.jpg", "order": 8}, {"name": "John Michael Higgins", "character": "Richard Meyers", "id": 8265, "credit_id": "52fe4529c3a36847f80bfc39", "cast_id": 10, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 9}, {"name": "Ann-Margret", "character": "Wendy Meyers", "id": 13567, "credit_id": "52fe4529c3a36847f80bfc3d", "cast_id": 11, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 10}, {"name": "Vernon Vaughn", "character": "Howard Meyers", "id": 59024, "credit_id": "52fe4529c3a36847f80bfc41", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Vincent D'Onofrio", "character": "Dennis Grobowski", "id": 7132, "credit_id": "52fe4529c3a36847f80bfc45", "cast_id": 13, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 12}, {"name": "Elaine Robinson", "character": "Carol Grobowski", "id": 59025, "credit_id": "52fe4529c3a36847f80bfc49", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Jane Alderman", "character": "Mrs. Grobowski", "id": 5630, "credit_id": "52fe4529c3a36847f80bfc4d", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Peyton Reed", "department": "Directing", "job": "Director", "credit_id": "52fe4529c3a36847f80bfc53", "profile_path": "/h9lEnyQ60EjKRT3ZAOcrqQVlwn3.jpg", "id": 59026}], "vote_average": 5.5, "runtime": 106}, "198184": {"poster_path": "/nIQOgiHnAF9fnvqnOO0etd0YIb9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundings\u2014some good, some bad\u2014and he will rely on his heart and soul to find his way in the world and become his own man. But there's one thing that makes Chappie different from any one else: he is a robot.", "video": false, "id": 198184, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Chappie", "tagline": "I am consciousness. I am alive. I am Chappie.", "vote_count": 174, "homepage": "http://www.chappie-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1823672", "adult": false, "backdrop_path": "/y5lG7TBpeOMG0jxAaTK0ghZSzBJ.jpg", "production_companies": [{"name": "Media Rights Capital", "id": 2531}], "release_date": "2015-03-06", "popularity": 6.06493105622147, "original_title": "Chappie", "budget": 0, "cast": [{"name": "Sharlto Copley", "character": "Chappie", "id": 82191, "credit_id": "52fe4d719251416c911164bf", "cast_id": 2, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Dev Patel", "character": "Deon", "id": 76788, "credit_id": "52fe4d719251416c911164c3", "cast_id": 3, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 1}, {"name": "Brandon Auret", "character": "Hippo", "id": 1029029, "credit_id": "52fe4d719251416c911164c7", "cast_id": 4, "profile_path": "/ne7Q7CodcxZnkE9oQiJhzkdcJ8D.jpg", "order": 2}, {"name": "Eugene Khumbanyiwa", "character": "King", "id": 1198931, "credit_id": "52fe4d719251416c911164cb", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Anri du Toit", "character": "Yolandi Visser", "id": 985040, "credit_id": "52fe4d719251416c911164cf", "cast_id": 6, "profile_path": "/swC0Er51OhSRx8GHhIhqjfhXw68.jpg", "order": 4}, {"name": "Watkin Tudor Jones", "character": "Ninja", "id": 985041, "credit_id": "52fe4d719251416c911164d3", "cast_id": 7, "profile_path": "/Q9tTc7O0tik9jwnoPP4U2zfUHl.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "", "id": 10205, "credit_id": "52fe4d719251416c911164d7", "cast_id": 8, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Hugh Jackman", "character": "Vincent", "id": 6968, "credit_id": "54721160c3a36833ad000ffb", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 7}, {"name": "Jose Pablo Cantillo", "character": "Yankie", "id": 20191, "credit_id": "547211a89251415cfc000133", "cast_id": 10, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 8}, {"name": "Kevin Otto", "character": "CNN Reporter", "id": 146751, "credit_id": "547211f69251413a5d001f7e", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Robert Hobbs", "character": "The Procurement Officer", "id": 82190, "credit_id": "5472121dc3a36805d8000872", "cast_id": 12, "profile_path": "/yN6gVehZi1Y5P5kDazI8FmB8Bb0.jpg", "order": 10}], "directors": [{"name": "Neill Blomkamp", "department": "Directing", "job": "Director", "credit_id": "52fe4d719251416c911164bb", "profile_path": "/wM1ACz7B2km2KGkxA1sg3QyHrtL.jpg", "id": 82194}], "vote_average": 7.0, "runtime": 120}, "198185": {"poster_path": "/rYOQL42cDdsbhfgaxeEW4SlszUp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a last-ditch effort to save his career, sports agent JB Bernstein (Jon Hamm) dreams up a wild game plan to find Major League Baseball\u2019s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. It\u2019s an incredible and touching journey that will change them all \u2014 especially JB, who learns valuable lessons about teamwork, commitment and family.", "video": false, "id": 198185, "genres": [{"id": 18, "name": "Drama"}], "title": "Million Dollar Arm", "tagline": "Sometimes to win, sometimes you have to change the game", "vote_count": 90, "homepage": "http://movies.disney.com/million-dollar-arm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1647668", "adult": false, "backdrop_path": "/x5ZwyoTfApcvw0mwToWlY2qUliY.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2014-05-09", "popularity": 1.04578890365489, "original_title": "Million Dollar Arm", "budget": 25000000, "cast": [{"name": "Jon Hamm", "character": "J. B. Bernstein", "id": 65717, "credit_id": "52fe4d719251416c911164f7", "cast_id": 2, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Tom House", "id": 2053, "credit_id": "52fe4d719251416c911164fb", "cast_id": 3, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Lake Bell", "character": "Brenda Paauwe", "id": 25703, "credit_id": "52fe4d719251416c911164ff", "cast_id": 4, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 2}, {"name": "Suraj Sharma", "character": "Rinku", "id": 933160, "credit_id": "52fe4d719251416c91116503", "cast_id": 5, "profile_path": "/88CEbHFIGIkDLD8lEejG5580kcO.jpg", "order": 3}, {"name": "Aasif Mandvi", "character": "Ash Vasudevan", "id": 20644, "credit_id": "52fe4d719251416c91116507", "cast_id": 6, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 4}, {"name": "Madhur Mittal", "character": "Dinesh", "id": 964549, "credit_id": "52fe4d719251416c9111650b", "cast_id": 7, "profile_path": "/glARNBtM9saSQ1AIpfs5ubDvnDg.jpg", "order": 5}, {"name": "Pitobash", "character": "Amit", "id": 225163, "credit_id": "52fe4d729251416c9111650f", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Alan Arkin", "character": "Ray Arkin", "id": 1903, "credit_id": "52fe4d729251416c91116513", "cast_id": 9, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 7}, {"name": "Bar Paly", "character": "Lisette", "id": 963117, "credit_id": "532c8882c3a3685fbb0000e3", "cast_id": 11, "profile_path": "/e3BkVd6wXrJvTlBfoosuGkAKSTp.jpg", "order": 8}, {"name": "Al Sapienza", "character": "Pete", "id": 154917, "credit_id": "532c888fc3a3685fd3000108", "cast_id": 12, "profile_path": "/acfzjSs4lbz5EdCWfZkB45Zxn8y.jpg", "order": 9}, {"name": "Tzi Ma", "character": "Chang", "id": 21629, "credit_id": "532c8898c3a3685fac000114", "cast_id": 13, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 10}, {"name": "Allyn Rachel", "character": "Theresa", "id": 1303090, "credit_id": "532c88a8c3a3685fbb0000e8", "cast_id": 14, "profile_path": "/tZd2ewnxeDcUDGiXNZHRBaAtGTx.jpg", "order": 11}], "directors": [{"name": "Craig Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe4d719251416c911164f3", "profile_path": null, "id": 50767}], "vote_average": 6.7, "runtime": 124}, "1578": {"poster_path": "/tKS38vUE3HBcLdKrwLUjjUctmgS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23000000, "overview": "An emotionally self-destructive boxer's journey through life, as the violence and temper that leads him to the top in the ring, destroys his life outside it.", "video": false, "id": 1578, "genres": [{"id": 18, "name": "Drama"}], "title": "Raging Bull", "tagline": "", "vote_count": 206, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0081398", "adult": false, "backdrop_path": "/9hkWw0LnWrDlcK1swe3lf2Yxiko.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1980-11-14", "popularity": 0.991884729632124, "original_title": "Raging Bull", "budget": 18000000, "cast": [{"name": "Robert De Niro", "character": "Jake La Motta", "id": 380, "credit_id": "52fe4300c3a36847f8032f07", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Joe Pesci", "character": "Joey La Motta", "id": 4517, "credit_id": "52fe4300c3a36847f8032f0b", "cast_id": 2, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 1}, {"name": "Cathy Moriarty", "character": "Vickie Thailer", "id": 14702, "credit_id": "52fe4300c3a36847f8032f0f", "cast_id": 3, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 2}, {"name": "Frank Vincent", "character": "Salvy Batts", "id": 7164, "credit_id": "52fe4300c3a36847f8032f13", "cast_id": 4, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 3}, {"name": "Nicholas Colasanto", "character": "Tommy Como", "id": 17651, "credit_id": "52fe4300c3a36847f8032f17", "cast_id": 5, "profile_path": "/i7gdG5j4jf13lSkvKI0JalJ9IyZ.jpg", "order": 4}, {"name": "Theresa Saldana", "character": "Lenore", "id": 17652, "credit_id": "52fe4300c3a36847f8032f1b", "cast_id": 6, "profile_path": "/o5Dd1XjhIZcaCZPzuW9cfcSAekf.jpg", "order": 5}, {"name": "Mario Gallo", "character": "Mario", "id": 17653, "credit_id": "52fe4300c3a36847f8032f1f", "cast_id": 7, "profile_path": null, "order": 6}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4300c3a36847f8032f25", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.5, "runtime": 129}, "1579": {"poster_path": "/5BTFXR96hcBzmJvd9FwNayV79Xu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120175290, "overview": "Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.", "video": false, "id": 1579, "genres": [{"id": 28, "name": "Action"}], "title": "Apocalypto", "tagline": "When the end comes, not everyone is ready to go", "vote_count": 339, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472043", "adult": false, "backdrop_path": "/pzGegiHEX39M7JHsdBjv1wj7Eno.jpg", "production_companies": [{"name": "Icon Entertainment International", "id": 4564}, {"name": "Icon Productions", "id": 152}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "2006-12-08", "popularity": 0.868052687145313, "original_title": "Apocalypto", "budget": 40000000, "cast": [{"name": "Rudy Youngblood", "character": "Jaguar Paw", "id": 17678, "credit_id": "52fe4300c3a36847f8033009", "cast_id": 15, "profile_path": "/jo3aA3aRhElCj4nfQwRybBMaS6m.jpg", "order": 0}, {"name": "Dalia Hern\u00e1ndez", "character": "Seven", "id": 17679, "credit_id": "52fe4300c3a36847f803300d", "cast_id": 16, "profile_path": null, "order": 1}, {"name": "Jonathan Brewer", "character": "Blunted", "id": 17680, "credit_id": "52fe4300c3a36847f8033011", "cast_id": 17, "profile_path": null, "order": 2}, {"name": "Morris Birdyellowhead", "character": "Flint Sky", "id": 17681, "credit_id": "52fe4300c3a36847f8033015", "cast_id": 18, "profile_path": null, "order": 3}, {"name": "Raoul Trujillo", "character": "Zero Wolf", "id": 17688, "credit_id": "52fe4300c3a36847f8033031", "cast_id": 25, "profile_path": "/vkrPv04OJRV9G6u6yydjJz2WKE0.jpg", "order": 4}, {"name": "Carlos Emilio B\u00e1ez", "character": "Turtles Run", "id": 17682, "credit_id": "52fe4300c3a36847f8033019", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Amilcar Ram\u00edrez", "character": "Curl Nose", "id": 17683, "credit_id": "52fe4300c3a36847f803301d", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Israel Contreras", "character": "Smoke Frog", "id": 17684, "credit_id": "52fe4300c3a36847f8033021", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Israel R\u00edos", "character": "Cocoa Leaf", "id": 17685, "credit_id": "52fe4300c3a36847f8033025", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Espiridion Acosta Cache", "character": "Old Story Teller", "id": 17686, "credit_id": "52fe4300c3a36847f8033029", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Mayra Serbulo", "character": "Young Woman", "id": 17687, "credit_id": "52fe4300c3a36847f803302d", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Gerardo Taracena", "character": "Middle Eye", "id": 17689, "credit_id": "52fe4300c3a36847f8033035", "cast_id": 26, "profile_path": "/mZhY59OxD5sy4uHkzG9EOwEkvDb.jpg", "order": 11}, {"name": "Rodolfo Palacios", "character": "Snake Ink", "id": 17690, "credit_id": "52fe4300c3a36847f8033039", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Iazua Larios", "character": "Sky Flower", "id": 42009, "credit_id": "52fe4300c3a36847f8033049", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Lorena Heranandez", "character": "Village Girl", "id": 42010, "credit_id": "52fe4300c3a36847f803304d", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Itandehui Gutierrez", "character": "Wife", "id": 42011, "credit_id": "52fe4300c3a36847f8033051", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Sayuri Gutierrez", "character": "Eldest Daughter", "id": 42012, "credit_id": "52fe4300c3a36847f8033055", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Hiram Soto", "character": "Fish Hunter", "id": 42013, "credit_id": "52fe4300c3a36847f8033059", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Jos\u00e9 Su\u00e1rez", "character": "First Temple Sacrifice", "id": 42014, "credit_id": "52fe4300c3a36847f803305d", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Ariel Galvan", "character": "Hanging Moss", "id": 42015, "credit_id": "52fe4300c3a36847f8033061", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Bernardo Ruiz", "character": "Drunkards Four", "id": 42016, "credit_id": "52fe4300c3a36847f8033065", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Ricardo Diaz Mendoza", "character": "Cut Rock", "id": 42017, "credit_id": "52fe4300c3a36847f8033069", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Richard Can", "character": "Ten Peccary", "id": 42018, "credit_id": "52fe4300c3a36847f803306d", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Carlos Ramos", "character": "Monkey Jaw", "id": 42019, "credit_id": "52fe4300c3a36847f8033071", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Ammel Rodrigo Mendoza", "character": "Buzzard Hook", "id": 42020, "credit_id": "52fe4300c3a36847f8033075", "cast_id": 43, "profile_path": null, "order": 25}, {"name": "Marco Antonio Argueta", "character": "Speaking Wind", "id": 42021, "credit_id": "52fe4300c3a36847f8033079", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Javier Escobar", "character": "Vicious Holcane", "id": 42022, "credit_id": "52fe4300c3a36847f803307d", "cast_id": 45, "profile_path": null, "order": 27}, {"name": "Fernando Hernandez", "character": "High Priest", "id": 20194, "credit_id": "52fe4300c3a36847f8033081", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Mar\u00eda Isabel D\u00edaz", "character": "Mother in Law", "id": 4364, "credit_id": "52fe4300c3a36847f80330d9", "cast_id": 66, "profile_path": "/1emMA2qcYTa8ysOUJ8j99C0kvSb.jpg", "order": 29}, {"name": "Maria Isidra Hoil", "character": "Oracle Girl", "id": 1331667, "credit_id": "53a17f04c3a3687ba60026bf", "cast_id": 73, "profile_path": null, "order": 30}, {"name": "Aquetzali Garc\u00eda", "character": "Oracle Girl", "id": 1331668, "credit_id": "53a17f17c3a3687b9e0027e1", "cast_id": 74, "profile_path": null, "order": 31}, {"name": "Abel Woolrich", "character": "Laughing Man", "id": 104391, "credit_id": "53a17f2dc3a3687bbc002606", "cast_id": 75, "profile_path": null, "order": 32}, {"name": "Antonio Monroi", "character": "Chilam", "id": 1060249, "credit_id": "53a17f42c3a3687ba60026cd", "cast_id": 76, "profile_path": null, "order": 33}, {"name": "Nicol\u00e1s Jasso", "character": "Man on Temple Top", "id": 1331669, "credit_id": "53a17f56c3a3687bab0027ad", "cast_id": 77, "profile_path": null, "order": 34}, {"name": "Ronaldo Eknal", "character": "Slave Auctioneer", "id": 1331670, "credit_id": "53a17f6ac3a3685b2c000f1a", "cast_id": 78, "profile_path": null, "order": 35}, {"name": "Miriam Tun", "character": "Woman Auctioneer", "id": 1331671, "credit_id": "53a17f94c3a3687b9e0027ec", "cast_id": 79, "profile_path": null, "order": 36}, {"name": "Rafael Velez", "character": "King", "id": 1331672, "credit_id": "53a17fa8c3a3687ba60026d5", "cast_id": 80, "profile_path": null, "order": 37}, {"name": "Diana Botello", "character": "Queen", "id": 1331673, "credit_id": "53a17fbac3a3687bb000286b", "cast_id": 81, "profile_path": null, "order": 38}, {"name": "Joaquin Rendon", "character": "Head Chac", "id": 1331674, "credit_id": "53a17fcec3a3687ba60026da", "cast_id": 82, "profile_path": null, "order": 39}], "directors": [{"name": "Mel Gibson", "department": "Directing", "job": "Director", "credit_id": "52fe4300c3a36847f8032fc9", "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "id": 2461}], "vote_average": 7.0, "runtime": 139}, "1580": {"poster_path": "/9UlEZpKqJPoaFu1OfHM3BohSRUo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two young men strangle their \"inferior\" classmate, hide his body in their apartment, and invite his friends and family to a dinner party as a means to challenge the \"perfection\" of their crime.", "video": false, "id": 1580, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Rope", "tagline": "", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0040746", "adult": false, "backdrop_path": "/2RWBzG3DYGYmgbsazg3Fls0X02l.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Transatlantic Pictures", "id": 1554}], "release_date": "1948-08-23", "popularity": 0.36401718538628, "original_title": "Rope", "budget": 1500000, "cast": [{"name": "James Stewart", "character": "Rupert Cadell", "id": 854, "credit_id": "52fe4300c3a36847f8033145", "cast_id": 1, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "John Dall", "character": "Brandon Shaw", "id": 14504, "credit_id": "52fe4300c3a36847f8033149", "cast_id": 2, "profile_path": "/AjgD9lfLq8SzQkiSqoXop5Afh9D.jpg", "order": 1}, {"name": "Farley Granger", "character": "Phillip Morgan", "id": 12497, "credit_id": "52fe4300c3a36847f803320f", "cast_id": 39, "profile_path": "/uMawvHjbqcg2s1UnedJwD9Njzy5.jpg", "order": 2}, {"name": "Constance Collier", "character": "Mrs. Atwater", "id": 17660, "credit_id": "52fe4300c3a36847f803314d", "cast_id": 3, "profile_path": "/y7BOdtNYhw8bLOXskoPqUv2Jvzr.jpg", "order": 3}, {"name": "Douglas Dick", "character": "Kenneth Lawrence", "id": 17661, "credit_id": "52fe4300c3a36847f8033151", "cast_id": 4, "profile_path": "/aqEFPUOgCbRukiF7VlaK7kYK1cU.jpg", "order": 4}, {"name": "Edith Evanson", "character": "Mrs. Wilson", "id": 17662, "credit_id": "52fe4300c3a36847f8033155", "cast_id": 5, "profile_path": "/nocf7KthPB0tKaip5KGJ5SilfAr.jpg", "order": 5}, {"name": "Dick Hogan", "character": "David Kentley", "id": 17663, "credit_id": "52fe4300c3a36847f8033159", "cast_id": 6, "profile_path": null, "order": 6}, {"name": "Joan Chandler", "character": "Janet Walker", "id": 17664, "credit_id": "52fe4300c3a36847f803315d", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Cedric Hardwicke", "character": "Mr. Kentley", "id": 99461, "credit_id": "52fe4300c3a36847f8033213", "cast_id": 40, "profile_path": "/xldbAfjrbY6ny9r13SUDGtSwoSb.jpg", "order": 8}], "directors": [{"name": "Alfred Hitchcock", "department": "Directing", "job": "Director", "credit_id": "52fe4300c3a36847f8033163", "profile_path": "/nA6zRjaVk1JjYvRpuihXJ2pirWk.jpg", "id": 2636}], "vote_average": 7.3, "runtime": 80}, "1581": {"poster_path": "/zMKqOIh26HcP4o9m0dRQS6VOR2m.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 194168700, "overview": "Two women, one (Cameron Diaz) from America and one (Kate Winslet) from Britain, swap homes at Christmastime after bad breakups with their boyfriends. Each woman finds romance with a local man (Jude Law, Jack Black) but realizes that the imminent return home may end the relationship.", "video": false, "id": 1581, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Holiday", "tagline": "It's Christmas Eve and we are going to go celebrate being young and being alive.", "vote_count": 266, "homepage": "http://www.sonypictures.com/movies/theholiday/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457939", "adult": false, "backdrop_path": "/hetZNdgWVZj0fu0IjtkWoKsjIsX.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Waverly Films", "id": 735}], "release_date": "2006-12-08", "popularity": 1.28885209277092, "original_title": "The Holiday", "budget": 85000000, "cast": [{"name": "Cameron Diaz", "character": "Amanda Woods", "id": 6941, "credit_id": "52fe4300c3a36847f8033251", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Iris Simpkins", "id": 204, "credit_id": "52fe4300c3a36847f8033255", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Jude Law", "character": "Graham", "id": 9642, "credit_id": "52fe4300c3a36847f8033259", "cast_id": 3, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Jack Black", "character": "Miles", "id": 70851, "credit_id": "52fe4300c3a36847f803325d", "cast_id": 4, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "Eli Wallach", "character": "Arthur Abbott", "id": 3265, "credit_id": "52fe4300c3a36847f8033261", "cast_id": 5, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 4}, {"name": "Edward Burns", "character": "Ethan", "id": 12833, "credit_id": "52fe4301c3a36847f8033265", "cast_id": 6, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 5}, {"name": "Rufus Sewell", "character": "Jasper", "id": 17328, "credit_id": "52fe4301c3a36847f8033269", "cast_id": 7, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 6}, {"name": "Miffy Englefield", "character": "Sophia", "id": 17691, "credit_id": "52fe4301c3a36847f803326d", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Emma Pritchard", "character": "Olivia", "id": 17692, "credit_id": "52fe4301c3a36847f8033271", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Sarah Parish", "character": "Hannah", "id": 17693, "credit_id": "52fe4301c3a36847f8033275", "cast_id": 10, "profile_path": "/mpvkccfyyjcnG5I6xkYrbCELHab.jpg", "order": 9}, {"name": "Shannyn Sossamon", "character": "Maggie", "id": 27855, "credit_id": "52fe4301c3a36847f8033279", "cast_id": 11, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 10}, {"name": "Bill Macy", "character": "Ernie", "id": 17695, "credit_id": "52fe4301c3a36847f803327d", "cast_id": 12, "profile_path": "/xCb1KjkmeolP2dmJnXfbd7lQTph.jpg", "order": 11}, {"name": "Shelley Berman", "character": "Norman", "id": 10403, "credit_id": "52fe4301c3a36847f8033281", "cast_id": 13, "profile_path": "/ka7bIOts2wVNqcdAvR8k24Z5d7h.jpg", "order": 12}, {"name": "Kathryn Hahn", "character": "Bristol", "id": 17696, "credit_id": "52fe4301c3a36847f8033285", "cast_id": 14, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 13}, {"name": "John Krasinski", "character": "Ben", "id": 17697, "credit_id": "52fe4301c3a36847f8033289", "cast_id": 15, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 14}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f803328f", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 6.5, "runtime": 136}, "1584": {"poster_path": "/cREN222Yw78zvSQ9bg17Y9QZS0c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131282949, "overview": "Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fourth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock 'n' roll. The school's hard-nosed principal is rightly suspicious of Finn's activities. But Finn's roommate remains in the dark about what he's doing.", "video": false, "id": 1584, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "School of Rock", "tagline": "He just landed the gig of his life: 5th grade.", "vote_count": 385, "homepage": "http://www.schoolofrockmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0332379", "adult": false, "backdrop_path": "/nLUO2kQyyvG1DlCnHuxHwapbCTX.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2003-10-03", "popularity": 0.804834292031404, "original_title": "School of Rock", "budget": 35000000, "cast": [{"name": "Jack Black", "character": "Dewey Finn", "id": 70851, "credit_id": "52fe4301c3a36847f8033437", "cast_id": 1, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Joan Cusack", "character": "Rosalie Mullins", "id": 3234, "credit_id": "52fe4301c3a36847f803343b", "cast_id": 2, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 1}, {"name": "Mike White", "character": "Ned Schneebly", "id": 17735, "credit_id": "52fe4301c3a36847f803343f", "cast_id": 3, "profile_path": "/luxVflXHHRlRYt8oqSxno04JGy6.jpg", "order": 2}, {"name": "Sarah Silverman", "character": "Patty Di Marco", "id": 7404, "credit_id": "52fe4301c3a36847f8033443", "cast_id": 4, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 3}, {"name": "Adam Pascal", "character": "Theo", "id": 17736, "credit_id": "52fe4301c3a36847f8033447", "cast_id": 5, "profile_path": "/r1fvs1Nmkqxib3g89ju4lqZGn4u.jpg", "order": 4}, {"name": "Lucas Papaelias", "character": "Neil", "id": 17737, "credit_id": "52fe4301c3a36847f803344b", "cast_id": 6, "profile_path": "/x7BemMD3vm4w6Wjxn3E8c9GJlEv.jpg", "order": 5}, {"name": "Chris Stack", "character": "Doug", "id": 17738, "credit_id": "52fe4301c3a36847f803344f", "cast_id": 7, "profile_path": "/AwsXuAmFHoo2Z2EuQow9lyv6Jtk.jpg", "order": 6}, {"name": "Joey Gaydos Jr.", "character": "Zack Mooneyham", "id": 17739, "credit_id": "52fe4301c3a36847f8033453", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Lucas Babin", "character": "Spider", "id": 17740, "credit_id": "52fe4301c3a36847f8033457", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Jordan-Claire Green", "character": "Michelle", "id": 17741, "credit_id": "52fe4301c3a36847f803345b", "cast_id": 10, "profile_path": "/32tJ0lZqp3MvoWOk86i21NFKtyV.jpg", "order": 9}, {"name": "Veronica Afflerbach", "character": "Eleni", "id": 17742, "credit_id": "52fe4301c3a36847f803345f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Miranda Cosgrove", "character": "Summer Hathaway", "id": 17743, "credit_id": "52fe4301c3a36847f8033463", "cast_id": 12, "profile_path": "/p2rQkLY4Wr4KnCd3S1LwfhE42zu.jpg", "order": 11}, {"name": "Kevin Alexander Clark", "character": "Freddy Jones", "id": 17744, "credit_id": "52fe4301c3a36847f8033467", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Robert Tsai", "character": "Lawrence", "id": 17745, "credit_id": "52fe4301c3a36847f803346b", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Maryam Hassan", "character": "Tomika", "id": 17746, "credit_id": "52fe4301c3a36847f803346f", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Angelo Massagli", "character": "Frankie", "id": 17747, "credit_id": "52fe4301c3a36847f8033473", "cast_id": 16, "profile_path": null, "order": 15}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033479", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 6.3, "runtime": 108}, "1585": {"poster_path": "/t0T609AGzxtr05zKrBOCE1al0Ii.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6600000, "overview": "George Bailey has spent his entire life giving of himself to the people of Bedford Falls. He has always longed to travel but never had the opportunity in order to prevent rich skinflint Mr. Potter from taking over the entire town. All that prevents him from doing so is George's modest building and loan company, which was founded by his generous father. But on Christmas Eve, George's Uncle Billy loses the business's $8,000 while intending to deposit it in the bank. Potter finds the misplaced money, hides it from Billy, and George's troubles begin.", "video": false, "id": 1585, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "It's a Wonderful Life", "tagline": "It's a wonderful laugh! It's a wonderful love!", "vote_count": 270, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0038650", "adult": false, "backdrop_path": "/2GGw0nXElPzVLubjIjhwzH5VNYJ.jpg", "production_companies": [{"name": "Liberty Films (II)", "id": 11770}], "release_date": "1946-12-30", "popularity": 0.964386170464063, "original_title": "It's a Wonderful Life", "budget": 3180000, "cast": [{"name": "James Stewart", "character": "George Bailey", "id": 854, "credit_id": "52fe4301c3a36847f8033523", "cast_id": 1, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 0}, {"name": "Donna Reed", "character": "Mary Hatch", "id": 17752, "credit_id": "52fe4301c3a36847f8033527", "cast_id": 2, "profile_path": "/jGSZJKut5cOHqiKnz6cC0AMol7v.jpg", "order": 1}, {"name": "Lionel Barrymore", "character": "Henry F. Potter", "id": 17753, "credit_id": "52fe4301c3a36847f803352b", "cast_id": 3, "profile_path": "/7LxpuH0TIYY9FhX2Gj2tfJnbBD2.jpg", "order": 2}, {"name": "Thomas Mitchell", "character": "Uncle Billy Bailey", "id": 3383, "credit_id": "52fe4301c3a36847f803353f", "cast_id": 10, "profile_path": "/b0WAgmbZjTX99prApnSMdiYOhRK.jpg", "order": 3}, {"name": "Henry Travers", "character": "Clarence Odbody", "id": 7666, "credit_id": "52fe4301c3a36847f803352f", "cast_id": 4, "profile_path": "/mmr6D7GhUawPyhAhKlKIdxVK7Un.jpg", "order": 4}, {"name": "Beulah Bondi", "character": "Ma Bailey", "id": 17755, "credit_id": "52fe4301c3a36847f8033537", "cast_id": 6, "profile_path": "/dduvRQRhbwdlbS12nljnHTkChIR.jpg", "order": 5}, {"name": "Frank Faylen", "character": "Ernie Bishop", "id": 17759, "credit_id": "52fe4301c3a36847f8033543", "cast_id": 11, "profile_path": "/rTeI8MEFLqdtGkIO5bc96DqO4pE.jpg", "order": 6}, {"name": "Ward Bond", "character": "Bert", "id": 4303, "credit_id": "52fe4301c3a36847f8033571", "cast_id": 20, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 7}, {"name": "Gloria Grahame", "character": "Violet Bick", "id": 77081, "credit_id": "52fe4301c3a36847f8033575", "cast_id": 21, "profile_path": "/bCfTGfMGNRQdfWrLPtBAPVTuBgP.jpg", "order": 8}, {"name": "H.B. Warner", "character": "Mr. Gower", "id": 33278, "credit_id": "52fe4301c3a36847f8033579", "cast_id": 22, "profile_path": "/7zWN39xKHnPTawwN9p5m4aX1ne5.jpg", "order": 9}, {"name": "Todd Karns", "character": "Harry Bailey", "id": 17754, "credit_id": "52fe4301c3a36847f8033533", "cast_id": 5, "profile_path": null, "order": 10}, {"name": "Samuel S. Hinds", "character": "Peter Bailey", "id": 17756, "credit_id": "52fe4301c3a36847f803353b", "cast_id": 7, "profile_path": "/vPlot960fIaZ10TEnr3phhacp7T.jpg", "order": 11}, {"name": "Mary Treen", "character": "Cousin Tilly", "id": 106584, "credit_id": "52fe4301c3a36847f80335a5", "cast_id": 30, "profile_path": "/RpmccR2BYTJBTJ0wC0H7wvOI8g.jpg", "order": 12}, {"name": "Frank Albertson", "character": "Sam Wainwright", "id": 78902, "credit_id": "52fe4301c3a36847f803357d", "cast_id": 23, "profile_path": "/9ncLyc3P4SL6aiMnxHyFv2bIYwz.jpg", "order": 13}, {"name": "Virginia Patton", "character": "Ruth Dakin Bailey", "id": 1033185, "credit_id": "52fe4301c3a36847f80335a9", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Charles Williams", "character": "Cousin Eustace", "id": 120544, "credit_id": "52fe4301c3a36847f80335ad", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Sarah Edwards", "character": "Mrs. Hatch", "id": 85957, "credit_id": "52fe4301c3a36847f80335b1", "cast_id": 33, "profile_path": "/rmSSO8YP31eEP9JYbmFRi7QsIon.jpg", "order": 16}, {"name": "William Edmunds", "character": "Giuseppe Martini", "id": 95967, "credit_id": "52fe4301c3a36847f80335b9", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Lillian Randolph", "character": "Annie", "id": 150633, "credit_id": "52fe4301c3a36847f80335bd", "cast_id": 40, "profile_path": "/mF7bedS0H2nNtQvWLBVKseqTUlJ.jpg", "order": 18}, {"name": "Argentina Brunetti", "character": "Mrs. Martini", "id": 113726, "credit_id": "52fe4301c3a36847f80335b5", "cast_id": 34, "profile_path": "/j20aALAavaDN5idoDo0CHSttHmY.jpg", "order": 19}, {"name": "Robert J. Anderson", "character": "Little George", "id": 117856, "credit_id": "52fe4301c3a36847f80335c1", "cast_id": 41, "profile_path": null, "order": 20}, {"name": "Ronnie Ralph", "character": "Little Sam", "id": 1033350, "credit_id": "52fe4301c3a36847f80335c5", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Jean Gale", "character": "Little Mary", "id": 1033287, "credit_id": "52fe4301c3a36847f80335c9", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Jeanine Ann Roose", "character": "Little Violet", "id": 1033351, "credit_id": "52fe4301c3a36847f80335cd", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Danny Mummert", "character": "Little Marty Hatch", "id": 34181, "credit_id": "52fe4301c3a36847f80335d1", "cast_id": 45, "profile_path": "/fgem04RIMJ4UKmHZ7DBc3PGZ2dW.jpg", "order": 24}, {"name": "Georgie Nokes", "character": "Little Harry Bailey", "id": 17758, "credit_id": "52fe4301c3a36847f80335d5", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Sheldon Leonard", "character": "Nick", "id": 41750, "credit_id": "52fe4301c3a36847f80335d9", "cast_id": 47, "profile_path": "/tkz20WzQYKQDDOYkbFTsFVKmLWD.jpg", "order": 26}, {"name": "Frank Hagney", "character": "Potter's Bodyguard", "id": 34168, "credit_id": "52fe4301c3a36847f80335dd", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Ray Walker", "character": "Joe - Luggage Shop", "id": 34423, "credit_id": "52fe4301c3a36847f80335e1", "cast_id": 49, "profile_path": "/8cOCfrJ5zbf1QvrJhPZFSuTDKXD.jpg", "order": 28}, {"name": "Charles Lane", "character": "Real Estate Salesman", "id": 29579, "credit_id": "52fe4301c3a36847f80335e5", "cast_id": 50, "profile_path": "/wu5fTupk5atyJlCsHhXPGcdf8Mg.jpg", "order": 29}, {"name": "Edward Keane", "character": "Tom - Bldg. & Loan", "id": 120708, "credit_id": "52fe4301c3a36847f80335e9", "cast_id": 51, "profile_path": "/dnEso5qtzGaw0lI2aUyKaR8ivWF.jpg", "order": 30}, {"name": "Carol Coombs", "character": "Bailey Child - Janie", "id": 1055407, "credit_id": "52fe4301c3a36847f80335ed", "cast_id": 52, "profile_path": null, "order": 31}, {"name": "Karolyn Grimes", "character": "Bailey Child - Zuzu", "id": 1033293, "credit_id": "52fe4301c3a36847f80335f1", "cast_id": 53, "profile_path": "/oIMqgx5fUw4CSAEeRsbAMDPGqV5.jpg", "order": 32}, {"name": "Larry Simms", "character": "Bailey Child - Pete", "id": 30223, "credit_id": "52fe4301c3a36847f80335f5", "cast_id": 54, "profile_path": "/ltsYi0u4vZiL2SOW5EjeK0YYRMh.jpg", "order": 33}, {"name": "Jimmy Hawkins", "character": "Bailey Child - Tommy", "id": 117674, "credit_id": "52fe4301c3a36847f80335f9", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Adriana Caselotti", "character": "Singer at Martini's (uncredited)", "id": 5460, "credit_id": "52fe4301c3a36847f80335fd", "cast_id": 56, "profile_path": "/spSFVZoDpFhkSeyEMTTJj8ZSNKs.jpg", "order": 35}, {"name": "Michael Chapin", "character": "Young George's Friend (uncredited)", "id": 126898, "credit_id": "52fe4301c3a36847f8033601", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Ellen Corby", "character": "Ms. Davis (uncredited)", "id": 5738, "credit_id": "52fe4301c3a36847f8033605", "cast_id": 58, "profile_path": "/sgVSpnL4dJ8d0Y273lonNM4GuHK.jpg", "order": 37}, {"name": "Milton Kibbee", "character": "Building & Loan Board Member (uncredited)", "id": 117036, "credit_id": "52fe4301c3a36847f8033609", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "J. Farrell MacDonald", "character": "Man Whose Grandfather Planted Tree (uncredited)", "id": 9091, "credit_id": "52fe4301c3a36847f803360d", "cast_id": 60, "profile_path": "/dPvj08q91zBKsyUApCnWOtbkvXK.jpg", "order": 39}, {"name": "Bert Moorhouse", "character": "Man with Sheriff (uncredited)", "id": 122984, "credit_id": "52fe4301c3a36847f8033611", "cast_id": 61, "profile_path": "/p0v0vNPZOnocEbD9tqQky6Gy0Cz.jpg", "order": 40}, {"name": "Carl Switzer", "character": "Freddie Othello (uncredited)", "id": 941239, "credit_id": "52fe4301c3a36847f8033615", "cast_id": 62, "profile_path": "/2HUMr4YzycNA40D2Xt8gpfG5KSn.jpg", "order": 41}], "directors": [{"name": "Frank Capra", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033549", "profile_path": "/hvPrtfKnJs9arck1zKGnG8uRkBC.jpg", "id": 2662}], "vote_average": 7.4, "runtime": 130}, "9778": {"poster_path": "/1ahgQx7gLqC3OfsjwMgrxMNDuUS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77516304, "overview": "Though strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter -- but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another first!", "video": false, "id": 9778, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Serendipity", "tagline": "Sometimes True Love Can Have More Than One Face.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240890", "adult": false, "backdrop_path": "/t3AuLeZl2r6FRy6xhSNaM8sXc12.jpg", "production_companies": [{"name": "Tapestry Films", "id": 870}, {"name": "Miramax Films", "id": 14}, {"name": "Simon Fields Productions", "id": 21518}], "release_date": "2001-10-05", "popularity": 0.357838381769867, "original_title": "Serendipity", "budget": 28000000, "cast": [{"name": "John Cusack", "character": "Jonathan Trager", "id": 3036, "credit_id": "52fe452bc3a36847f80c0395", "cast_id": 1, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Sara Thomas", "id": 3967, "credit_id": "52fe452bc3a36847f80c0399", "cast_id": 2, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Jeremy Piven", "character": "Dean Kansky", "id": 12799, "credit_id": "52fe452bc3a36847f80c03bd", "cast_id": 11, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 2}, {"name": "Bridget Moynahan", "character": "Halley Buchanan", "id": 18354, "credit_id": "52fe452bc3a36847f80c03c1", "cast_id": 12, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 3}, {"name": "Eugene Levy", "character": "Bloomingdale's Salesman", "id": 26510, "credit_id": "52fe452bc3a36847f80c0401", "cast_id": 24, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 4}, {"name": "Lilli Lavine", "character": "Bloomingdale's Stock Girl", "id": 59165, "credit_id": "52fe452bc3a36847f80c039d", "cast_id": 3, "profile_path": "/gFKYLHpWhnTNrQ2JCsTIc3wWzzi.jpg", "order": 5}, {"name": "Michael Guarino Jr.", "character": "Customer at Bloomingdale's", "id": 59166, "credit_id": "52fe452bc3a36847f80c03a1", "cast_id": 4, "profile_path": null, "order": 6}, {"name": "Abdul Alshawish", "character": "Customer at Bloomingdale's", "id": 59167, "credit_id": "52fe452bc3a36847f80c03a5", "cast_id": 5, "profile_path": null, "order": 7}, {"name": "Stephen Bruce", "character": "Host at Serendipity", "id": 59170, "credit_id": "52fe452bc3a36847f80c03b1", "cast_id": 8, "profile_path": null, "order": 8}, {"name": "David Sparrow", "character": "Josh's Dad", "id": 36816, "credit_id": "52fe452bc3a36847f80c03b5", "cast_id": 9, "profile_path": "/wpv5m3TePP3ju8lrugwUquPDaON.jpg", "order": 9}, {"name": "Ann Talman", "character": "Bloomingdale's Saleswoman #1", "id": 59168, "credit_id": "52fe452bc3a36847f80c03a9", "cast_id": 6, "profile_path": null, "order": 10}, {"name": "Crystal Bock", "character": "Bloomingdale's Saleswoman #2", "id": 59169, "credit_id": "52fe452bc3a36847f80c03ad", "cast_id": 7, "profile_path": null, "order": 11}, {"name": "Kate Blumberg", "character": "Courtney Kansky", "id": 59172, "credit_id": "52fe452bc3a36847f80c03c5", "cast_id": 13, "profile_path": "/wJmFMijdWQrQJciXLFn8QGOciHc.jpg", "order": 12}, {"name": "Gary Gerbrandt", "character": "Josh", "id": 59171, "credit_id": "52fe452bc3a36847f80c03b9", "cast_id": 10, "profile_path": null, "order": 13}, {"name": "Ron Payne", "character": "Louis Trager", "id": 59173, "credit_id": "52fe452bc3a36847f80c03c9", "cast_id": 14, "profile_path": null, "order": 14}, {"name": "Marcia Bennett", "character": "Mrs. Louis Trager", "id": 40385, "credit_id": "52fe452bc3a36847f80c03cd", "cast_id": 15, "profile_path": null, "order": 15}, {"name": "Molly Shannon", "character": "Eve", "id": 28640, "credit_id": "53f5888ec3a36833fd00301d", "cast_id": 25, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 16}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe452bc3a36847f80c03d9", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 6.5, "runtime": 90}, "1587": {"poster_path": "/xTRRw69N4vsccTY0TDB9FqZY5ld.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30000000, "overview": "Gilbert has to care for his brother Arnie and his obese mother, which gets in the way when love walks into his life.", "video": false, "id": 1587, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "What's Eating Gilbert Grape", "tagline": "A film about the love you find...In the last place you look.", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108550", "adult": false, "backdrop_path": "/9JvO9d5VgQ9Cy0bbAdBAyKK7pWd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1993-12-17", "popularity": 1.91514947884887, "original_title": "What's Eating Gilbert Grape", "budget": 11000000, "cast": [{"name": "Johnny Depp", "character": "Gilbert Grape", "id": 85, "credit_id": "52fe4301c3a36847f80336bf", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Leonardo DiCaprio", "character": "Arnie Grape", "id": 6193, "credit_id": "52fe4301c3a36847f803368d", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 1}, {"name": "Juliette Lewis", "character": "Becky", "id": 3196, "credit_id": "52fe4301c3a36847f8033691", "cast_id": 3, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 2}, {"name": "Darlene Cates", "character": "Bonnie Grape", "id": 17768, "credit_id": "52fe4301c3a36847f8033695", "cast_id": 4, "profile_path": "/sHAY186hiEIJ2fGsLFTjgq7VwbC.jpg", "order": 3}, {"name": "Mary Steenburgen", "character": "Betty Carver", "id": 2453, "credit_id": "52fe4301c3a36847f8033699", "cast_id": 5, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 4}, {"name": "Laura Harrington", "character": "Amy Grape", "id": 17769, "credit_id": "52fe4301c3a36847f803369d", "cast_id": 6, "profile_path": "/4Eo23MPjQl4hdNBFv4NOHF9WgnS.jpg", "order": 5}, {"name": "Mary Kate Schellhardt", "character": "Ellen Grape", "id": 8184, "credit_id": "52fe4301c3a36847f80336a1", "cast_id": 7, "profile_path": "/nN54NVsxm5M6yhdQlSECm2y5vxK.jpg", "order": 6}, {"name": "John C. Reilly", "character": "Tucker Van Dyke", "id": 4764, "credit_id": "52fe4301c3a36847f80336a5", "cast_id": 8, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 7}, {"name": "Kevin Tighe", "character": "Ken Carver", "id": 17770, "credit_id": "52fe4301c3a36847f80336a9", "cast_id": 9, "profile_path": "/5Q1Z89xsrnLdQWdHLuiaraS89vV.jpg", "order": 8}, {"name": "Crispin Glover", "character": "Bobby McBurney", "id": 1064, "credit_id": "52fe4301c3a36847f80336c3", "cast_id": 14, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 9}, {"name": "Robert B. Hedges", "character": "Ministre", "id": 1375991, "credit_id": "54453a4cc3a3683e0e007c7f", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "George Haynes", "character": "Dave", "id": 1375994, "credit_id": "54453ae70e0a266330007e64", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Cameron Finley", "character": "Doug Carver", "id": 215830, "credit_id": "54453e920e0a26633a007fba", "cast_id": 17, "profile_path": "/kveRt3GkfcNFGFbOwwwkjExpadP.jpg", "order": 12}, {"name": "Mona Lee Fultz", "character": "l'employ\u00e9e de la boulangerie", "id": 79008, "credit_id": "54453f9e0e0a266330007f21", "cast_id": 18, "profile_path": "/NDIFJvOcdb6v9SosCZApjTluMg.jpg", "order": 13}, {"name": "Penelope Branning", "character": "la grand-m\u00e8re de Becky", "id": 172680, "credit_id": "54454009c3a3683df2007f3b", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Kay Bower", "character": "la secr\u00e9taire de la Police", "id": 1376009, "credit_id": "54454061c3a3683e01007e04", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Tim Simek", "character": "le D\u00e9put\u00e9", "id": 1376012, "credit_id": "544541520e0a266330007f5c", "cast_id": 21, "profile_path": "/5Pnqz10tjB1io6u4FhPxdW6EwFb.jpg", "order": 16}, {"name": "Joe Stevens", "character": "le patron du Burger Barn", "id": 177905, "credit_id": "544544dec3a3683e01007e80", "cast_id": 22, "profile_path": "/kVH3JfyhXdVyBeLJkxjH1Dw6IWm.jpg", "order": 17}, {"name": "Tim Green", "character": "Mr. Lamson", "id": 1376033, "credit_id": "54454b0dc3a3684894001fce", "cast_id": 23, "profile_path": "/n3mhRGxuzFEjxBkrVGPFJpMlFdS.jpg", "order": 18}, {"name": "Susan Loughran", "character": "Mrs. Lamson", "id": 1376035, "credit_id": "54454ccc0e0a266330008067", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Brady Coleman", "character": "Sheriff Jerry Farrel", "id": 111002, "credit_id": "54454eb1c3a3684894002017", "cast_id": 25, "profile_path": "/lezl6XUlisuJiBr0ar48LsFthlv.jpg", "order": 20}, {"name": "Mark Jordan", "character": "Todd Carver", "id": 1376047, "credit_id": "544550080e0a26633a008190", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Nicholas Stojanovich", "character": "un gar\u00e7on", "id": 1089548, "credit_id": "544552470e0a26633a0081ec", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Daniel Gullahorn", "character": "un gar\u00e7on", "id": 1376059, "credit_id": "5445527bc3a3683df200811b", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Libby Villari", "character": "une serveuse", "id": 2857, "credit_id": "544553bec3a36819fb001fa7", "cast_id": 29, "profile_path": "/dGSRIXHG4er86LBk4HAKK4TGWL0.jpg", "order": 24}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f80336af", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 7.2, "runtime": 118}, "1588": {"poster_path": "/yg0O6eGgrumDZ1bht3pqMjNaWon.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90449929, "overview": "The Toro cheerleading squad from Rancho Carne High School in San Diego has got spirit, spunk, sass and a killer routine that's sure to land them the national championship trophy for the sixth year in a row. But for newly-elected team captain (Kirsten Dunst), the Toros' road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.", "video": false, "id": 1588, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bring It On", "tagline": "May the best moves win.", "vote_count": 264, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mZPimsc8yVPNwjcMT9BoQvfPsvO.jpg", "poster_path": "/shF7Ql8JNSDd4jisyRaehZqyyP5.jpg", "id": 16698, "name": "Bring It On Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0204946", "adult": false, "backdrop_path": "/63OmgMeYb2T7azonwtY1T0UpRGc.jpg", "production_companies": [{"name": "Beacon Communications", "id": 919}], "release_date": "2000-08-25", "popularity": 1.13536597016228, "original_title": "Bring It On", "budget": 28000000, "cast": [{"name": "Kirsten Dunst", "character": "Torrance Shipman", "id": 205, "credit_id": "52fe4301c3a36847f80336eb", "cast_id": 1, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Jesse Bradford", "character": "Cliff Pantone", "id": 17772, "credit_id": "52fe4301c3a36847f80336f3", "cast_id": 3, "profile_path": "/dOoAK7pcl1OtIcLUcs1LeFpJOJG.jpg", "order": 1}, {"name": "Huntley Ritter", "character": "Les", "id": 86969, "credit_id": "52fe4302c3a36847f8033717", "cast_id": 12, "profile_path": "/9iUDvFFLAc7nMjUxAGuUEBL0XwR.jpg", "order": 2}, {"name": "Eliza Dushku", "character": "Missy Pantone", "id": 13446, "credit_id": "52fe4301c3a36847f80336ef", "cast_id": 2, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 3}, {"name": "Gabrielle Union", "character": "Isis", "id": 17773, "credit_id": "52fe4301c3a36847f80336f7", "cast_id": 4, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 4}, {"name": "Clare Kramer", "character": "Courtney", "id": 17774, "credit_id": "52fe4301c3a36847f80336fb", "cast_id": 5, "profile_path": "/uy24uicG26Bu1Jk1qs0MEVouktj.jpg", "order": 5}, {"name": "Nicole Bilderback", "character": "Whitney", "id": 17775, "credit_id": "52fe4301c3a36847f80336ff", "cast_id": 6, "profile_path": "/zX98CB1FCasfLGKhQ9pmEm9yYvZ.jpg", "order": 6}, {"name": "Tsianina Joelson", "character": "Darcy", "id": 168014, "credit_id": "52fe4302c3a36847f8033709", "cast_id": 8, "profile_path": "/vXKULq7hYnxRJuyRXfvI6BXhFsu.jpg", "order": 7}, {"name": "Nathan West", "character": "Jan", "id": 55115, "credit_id": "52fe4302c3a36847f8033713", "cast_id": 11, "profile_path": "/9QOk05nkbrVsucNTZaPKwFJUilg.jpg", "order": 8}, {"name": "Shamari Fears", "character": "Lava", "id": 1155676, "credit_id": "52fe4302c3a36847f803371b", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Natina Reed", "character": "Jenelope", "id": 1155677, "credit_id": "52fe4302c3a36847f803371f", "cast_id": 14, "profile_path": "/ySI37dsCcvdaE3T3IGDt6UWL8Zm.jpg", "order": 10}, {"name": "Brandi Williams", "character": "Lafred", "id": 89975, "credit_id": "52fe4302c3a36847f8033723", "cast_id": 15, "profile_path": "/9Iw10M9nlb2AI8lbs7ql3NOBzek.jpg", "order": 11}, {"name": "Richard Hillman", "character": "Aaron", "id": 73700, "credit_id": "52fe4302c3a36847f8033727", "cast_id": 16, "profile_path": "/g1t2imQDUbksuoN59LNzWvVU9F0.jpg", "order": 12}, {"name": "Lindsay Sloane", "character": "Big Red", "id": 41662, "credit_id": "52fe4302c3a36847f803372b", "cast_id": 17, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 13}, {"name": "Rini Bell", "character": "Kasey", "id": 8696, "credit_id": "52fe4302c3a36847f803372f", "cast_id": 18, "profile_path": "/esSI9X2EoKEMDyp6ntjIkJDVYqk.jpg", "order": 14}], "directors": [{"name": "Peyton Reed", "department": "Directing", "job": "Director", "credit_id": "52fe4301c3a36847f8033705", "profile_path": "/h9lEnyQ60EjKRT3ZAOcrqQVlwn3.jpg", "id": 59026}], "vote_average": 5.6, "runtime": 98}, "1592": {"poster_path": "/jaDUxqDju6zqoADVKvZo2OunoRC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102616183, "overview": "An arrogant, high-powered attorney takes on the case of a poor altar boy found running away from the scene of the grisly murder of the bishop who has taken him in. The case gets a lot more complex when the accused reveals that there may or may not have been a 3rd person in the room. The intensity builds when a surprise twist alters everyone's perception of the crime and what happens next...", "video": false, "id": 1592, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Primal Fear", "tagline": "Sooner or later, a man who wears two faces forgets which one is real.", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0117381", "adult": false, "backdrop_path": "/j2VZ9Q1KJRGmtldrQHKzxoXWKz9.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1996-04-03", "popularity": 1.05735403661665, "original_title": "Primal Fear", "budget": 0, "cast": [{"name": "Richard Gere", "character": "Martin Vail", "id": 1205, "credit_id": "52fe4302c3a36847f8033977", "cast_id": 1, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Edward Norton", "character": "Aaron Stampler", "id": 819, "credit_id": "52fe4302c3a36847f80339cd", "cast_id": 20, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Laura Linney", "character": "Janet Venable", "id": 350, "credit_id": "52fe4302c3a36847f803397b", "cast_id": 3, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 2}, {"name": "John Mahoney", "character": "John Shaughnessy", "id": 4251, "credit_id": "52fe4302c3a36847f803397f", "cast_id": 4, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 3}, {"name": "Frances McDormand", "character": "Dr. Molly Arrington", "id": 3910, "credit_id": "52fe4302c3a36847f8033983", "cast_id": 5, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 4}, {"name": "Terry O'Quinn", "character": "Bud Yancy", "id": 12646, "credit_id": "52fe4302c3a36847f80339b1", "cast_id": 13, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 5}, {"name": "Andre Braugher", "character": "Tommy Goodman", "id": 6861, "credit_id": "52fe4302c3a36847f80339b5", "cast_id": 14, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 6}, {"name": "Steven Bauer", "character": "Joey Pinero", "id": 1159, "credit_id": "52fe4302c3a36847f80339b9", "cast_id": 15, "profile_path": "/2wbrq8xIKbIAQAgtxsftJT5XgVs.jpg", "order": 7}, {"name": "Joe Spano", "character": "Captain Abel Stenner", "id": 8192, "credit_id": "52fe4302c3a36847f80339bd", "cast_id": 16, "profile_path": "/ApY9rdhS1Qrvd0byprtlMxMAQ1q.jpg", "order": 8}, {"name": "Tony Plana", "character": "Martinez", "id": 41737, "credit_id": "52fe4302c3a36847f80339c1", "cast_id": 17, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 9}, {"name": "Alfre Woodard", "character": "Richterin Miriam Shoat", "id": 1981, "credit_id": "52fe4302c3a36847f80339c5", "cast_id": 18, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 10}, {"name": "Maura Tierney", "character": "Naomi Chance", "id": 16307, "credit_id": "52fe4302c3a36847f80339c9", "cast_id": 19, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 11}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe4302c3a36847f8033989", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 7.3, "runtime": 129}, "1593": {"poster_path": "/NUbCSwy2EQ9Z6psUjPqr3WdVI2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 574480841, "overview": "Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits. Larry tries desperately to keep the museum under control, but he's fighting a losing battle until President Teddy Roosevelt comes to the rescue.", "video": false, "id": 1593, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Night at the Museum", "tagline": "Where History Comes To Life", "vote_count": 680, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fOmqiIXfJmeANciOTCN6WkKbwK.jpg", "poster_path": "/q2nwE0Qi8U6tsU5HDmiWS2D3dSJ.jpg", "id": 85943, "name": "Night at the Museum Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt0477347", "adult": false, "backdrop_path": "/fDuTrT0qJUgEJjexaZOce4kmO0V.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "1492 Pictures", "id": 436}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2006-12-21", "popularity": 3.03048892328694, "original_title": "Night at the Museum", "budget": 110000000, "cast": [{"name": "Ben Stiller", "character": "Larry Daley", "id": 7399, "credit_id": "52fe4302c3a36847f8033a65", "cast_id": 17, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Jake Cherry", "character": "Nick Daley", "id": 17834, "credit_id": "52fe4302c3a36847f8033a79", "cast_id": 22, "profile_path": "/e7bPRIJq7Ub3CBJtlCykB3UmiAr.jpg", "order": 1}, {"name": "Carla Gugino", "character": "Rebecca", "id": 17832, "credit_id": "52fe4302c3a36847f8033a69", "cast_id": 18, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 2}, {"name": "Robin Williams", "character": "Theodore Roosevelt", "id": 2157, "credit_id": "52fe4302c3a36847f8033a81", "cast_id": 24, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 3}, {"name": "Dick Van Dyke", "character": "Cecil Fredericks", "id": 61303, "credit_id": "52fe4302c3a36847f8033a6d", "cast_id": 19, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 4}, {"name": "Mickey Rooney", "character": "Kaa", "id": 1937, "credit_id": "52fe4302c3a36847f8033a71", "cast_id": 20, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 5}, {"name": "Bill Cobbs", "character": "Reginald", "id": 8854, "credit_id": "52fe4302c3a36847f8033a75", "cast_id": 21, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 6}, {"name": "Ricky Gervais", "character": "Bambi", "id": 17835, "credit_id": "52fe4302c3a36847f8033a7d", "cast_id": 23, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 7}, {"name": "Kim Raver", "character": "Erica Daley", "id": 17836, "credit_id": "52fe4302c3a36847f8033a85", "cast_id": 25, "profile_path": "/qxnyB8F1nwVTidvUH2yzh2rsOWS.jpg", "order": 8}, {"name": "Patrick Gallagher", "character": "Attila der Hunne", "id": 17837, "credit_id": "52fe4302c3a36847f8033a89", "cast_id": 26, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 9}, {"name": "Rami Malek", "character": "Ahkmenrah", "id": 17838, "credit_id": "52fe4302c3a36847f8033a8d", "cast_id": 27, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 10}, {"name": "Pierfrancesco Favino", "character": "Christopher Columbus", "id": 17839, "credit_id": "52fe4302c3a36847f8033a91", "cast_id": 28, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 11}, {"name": "Charlie Murphy", "character": "Taxi Driver", "id": 17840, "credit_id": "52fe4302c3a36847f8033a95", "cast_id": 29, "profile_path": "/emMzTjrwhrPr1m8gepw1bvqJb6A.jpg", "order": 12}, {"name": "Steve Coogan", "character": "Octavius", "id": 4581, "credit_id": "52fe4302c3a36847f8033a99", "cast_id": 30, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 13}, {"name": "Mizuo Peck", "character": "Sacajawea", "id": 17841, "credit_id": "52fe4302c3a36847f8033a9d", "cast_id": 31, "profile_path": "/ohnloj1aKehzgbupxszmgdvdHS3.jpg", "order": 14}, {"name": "Owen Wilson", "character": "Jedediah Smith", "id": 887, "credit_id": "53b5b8800e0a2676bf0039b6", "cast_id": 34, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 15}, {"name": "Crystal the Monkey", "character": "Dexter", "id": 1428580, "credit_id": "550a857f9251414695000e7d", "cast_id": 35, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 16}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4302c3a36847f8033a13", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.0, "runtime": 108}, "17979": {"poster_path": "/m1cZT78mldTUyVMyedWLx7saRrL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 325233863, "overview": "Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.", "video": false, "id": 17979, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "A Christmas Carol", "tagline": "Season's Greedings", "vote_count": 247, "homepage": "http://disney.go.com/disneypictures/achristmascarol/?cmp=dcom_VAN_WDSHE_ACC_van_dcomcc__Extl", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1067106", "adult": false, "backdrop_path": "/vmGltnhcNGJAiVyNKllB0Ndcka1.jpg", "production_companies": [{"name": "ImageMovers", "id": 11395}, {"name": "Walt Disney", "id": 5888}], "release_date": "2009-11-06", "popularity": 0.690578555035557, "original_title": "A Christmas Carol", "budget": 200000000, "cast": [{"name": "Gary Oldman", "character": "Tiny Tim, Bob Cratchit, Marley", "id": 64, "credit_id": "52fe47589251416c7509600d", "cast_id": 9, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 0}, {"name": "Jim Carrey", "character": "Ebenezer Scrooge, Ghost of Christmas Past, Ghost of Christmas Present, Ghost of Christmas Yet To Come", "id": 206, "credit_id": "52fe47589251416c75096011", "cast_id": 10, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 1}, {"name": "Steve Valentine", "character": "Funerary Undertaker / Topper", "id": 78311, "credit_id": "52fe47589251416c75096021", "cast_id": 13, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Undertaker's Apprentice / Tattered Caroler / Beggar Boy / Peter Cratchit / Well-Dressed Caroler", "id": 57675, "credit_id": "52fe47589251416c75096025", "cast_id": 14, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Sage Ryan", "character": "Tattered Caroler", "id": 558926, "credit_id": "52fe47589251416c75096029", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Amber Gainey Meade", "character": "Tattered Caroler / Well-Dressed Caroler", "id": 1074139, "credit_id": "52fe47589251416c7509602d", "cast_id": 16, "profile_path": "/9p3RClYYtN4cwqd44V7HtOAA23B.jpg", "order": 5}, {"name": "Ryan Ochoa", "character": "Tattered Caroler / Beggar Boy / Young Cratchit Boy / Ignorance Boy / Young Boy with Sleigh", "id": 492081, "credit_id": "52fe47589251416c75096031", "cast_id": 17, "profile_path": "/mkWaVHOCScHYN26JXMHmamn9dkD.jpg", "order": 6}, {"name": "Bobbi Page", "character": "Tattered Caroler / Well-Dressed Caroler", "id": 1074140, "credit_id": "52fe47589251416c75096035", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ron Bottitta", "character": "Tattered Caroler / Well-Dressed Caroler", "id": 60602, "credit_id": "52fe47589251416c75096039", "cast_id": 19, "profile_path": "/9qqT4usrllY5XWONGbDYusnP7yL.jpg", "order": 8}, {"name": "Sammi Hanratty", "character": "Beggar Boy / Young Cratchit Girl / Want Girl", "id": 61831, "credit_id": "52fe47589251416c7509603d", "cast_id": 20, "profile_path": "/69NOUh0a2TKIbW8UhChNeO04UnD.jpg", "order": 9}, {"name": "Julian Holloway", "character": "Fat Cook / Portly Gentleman #2 / Business Man #3", "id": 79635, "credit_id": "52fe47589251416c75096041", "cast_id": 21, "profile_path": "/pUIJv2p67qpWGNsBnppoqO4KJMJ.jpg", "order": 10}, {"name": "Colin Firth", "character": "Fred", "id": 5472, "credit_id": "52fe47589251416c75096045", "cast_id": 22, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 11}, {"name": "Cary Elwes", "character": "Portly Gentleman #1 / Dick Wilkins / Mad Fiddler / Guest #2 / Business Man #1", "id": 2130, "credit_id": "52fe47589251416c75096049", "cast_id": 23, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 12}, {"name": "Robin Wright", "character": "Fan / Belle", "id": 32, "credit_id": "52fe47589251416c7509604d", "cast_id": 24, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 13}, {"name": "Bob Hoskins", "character": "Fezziwig / Old Joe", "id": 382, "credit_id": "52fe47589251416c75096051", "cast_id": 25, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 14}, {"name": "Lesley Manville", "character": "Mrs. Cratchit", "id": 72305, "credit_id": "52fe47589251416c75096055", "cast_id": 26, "profile_path": "/wyETH2tk6s15DXrQFZhx4KOwvNL.jpg", "order": 15}, {"name": "Molly C. Quinn", "character": "Belinda Cratchit", "id": 96349, "credit_id": "52fe47589251416c75096059", "cast_id": 27, "profile_path": "/8i908NzSx5K4LBxxh5qtzLe6U8e.jpg", "order": 16}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe47589251416c75096009", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.4, "runtime": 96}, "9788": {"poster_path": "/2GaDZYNy3GgraGfn54FWUSrxPiF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38505009, "overview": "A high school slacker who's rejected by every school he applies to opts to create his own institution of higher learning, the South Harmon Institute of Technology, on a rundown piece of property near his hometown.", "video": false, "id": 9788, "genres": [{"id": 35, "name": "Comedy"}], "title": "Accepted", "tagline": "When every college turned them down. . . they made one up.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384793", "adult": false, "backdrop_path": "/xW7aigkiyHcGYUeXaljmhw8qOnU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Shady Acres Entertainment", "id": 159}], "release_date": "2006-08-18", "popularity": 0.630324304165046, "original_title": "Accepted", "budget": 23000000, "cast": [{"name": "Justin Long", "character": "Bartleby Gaines", "id": 15033, "credit_id": "52fe452dc3a36847f80c0a0f", "cast_id": 1, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Sherman Schrader", "id": 21007, "credit_id": "52fe452dc3a36847f80c0a13", "cast_id": 2, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Adam Herschman", "character": "Glen", "id": 59256, "credit_id": "52fe452dc3a36847f80c0a17", "cast_id": 3, "profile_path": "/43EeGIeawm9ojk3dzMvo6Ob4TOA.jpg", "order": 2}, {"name": "Columbus Short", "character": "Hands", "id": 31132, "credit_id": "52fe452dc3a36847f80c0a1b", "cast_id": 4, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 3}, {"name": "Maria Thayer", "character": "Rory", "id": 59257, "credit_id": "52fe452dc3a36847f80c0a1f", "cast_id": 5, "profile_path": "/xrWP4eR5AvmmgiyDKFCu6CvnQQl.jpg", "order": 4}, {"name": "Lewis Black", "character": "Uncle Ben", "id": 59258, "credit_id": "52fe452dc3a36847f80c0a23", "cast_id": 6, "profile_path": "/rtlzszC0uPvHZtrXzwYNT9jYPsU.jpg", "order": 5}, {"name": "Blake Lively", "character": "Monica", "id": 59175, "credit_id": "52fe452dc3a36847f80c0a27", "cast_id": 7, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 6}, {"name": "Mark Derwin", "character": "Jack Gaines", "id": 59259, "credit_id": "52fe452dc3a36847f80c0a2b", "cast_id": 8, "profile_path": "/3faBKqhSgh6kiLWokcLYmE6HYLu.jpg", "order": 7}, {"name": "Ann Cusack", "character": "Diane Gaines", "id": 59260, "credit_id": "52fe452dc3a36847f80c0a2f", "cast_id": 9, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 8}, {"name": "Hannah Marks", "character": "Lizzie Gaines", "id": 59261, "credit_id": "52fe452dc3a36847f80c0a33", "cast_id": 10, "profile_path": "/xMahv8210mahplOr9OGPMVAQri7.jpg", "order": 9}, {"name": "Robin Lord Taylor", "character": "Abernathy", "id": 59262, "credit_id": "52fe452dc3a36847f80c0a37", "cast_id": 11, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 10}, {"name": "Diora Baird", "character": "Kiki", "id": 59263, "credit_id": "52fe452dc3a36847f80c0a3b", "cast_id": 12, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 11}, {"name": "Joe Hursley", "character": "Maurice / The Ringers", "id": 59264, "credit_id": "52fe452dc3a36847f80c0a3f", "cast_id": 13, "profile_path": "/euZBX3gW18tpEVaInzq06K4BjhK.jpg", "order": 12}, {"name": "Jeremy Howard", "character": "Freaky Student", "id": 15034, "credit_id": "52fe452dc3a36847f80c0a43", "cast_id": 14, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 13}, {"name": "Anthony Heald", "character": "Dean Van Horne", "id": 16293, "credit_id": "52fe452dc3a36847f80c0a47", "cast_id": 15, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 14}, {"name": "Ross Patterson", "character": "Mike McNaughton", "id": 77809, "credit_id": "52fe452dc3a36847f80c0a75", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Greg Sestero", "character": "Frat guy", "id": 81918, "credit_id": "52ffc7b59251416ae70c187c", "cast_id": 25, "profile_path": "/nAVfXdOL9n4PoYi0KDRj1rpGzFW.jpg", "order": 16}], "directors": [{"name": "Steve Pink", "department": "Directing", "job": "Director", "credit_id": "52fe452dc3a36847f80c0a5f", "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "id": 3227}], "vote_average": 6.0, "runtime": 93}, "1597": {"poster_path": "/omw5eaaPFgIo3IGJBbAF5xIiMLp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 330444045, "overview": "Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.", "video": false, "id": 1597, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Meet the Parents", "tagline": "First comes love. Then come the interrogation.", "vote_count": 448, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fgcgqjw37RThZCbVrfLLkJsqNNR.jpg", "poster_path": "/WFkinadVm4NRynRKuUcaLFNIDx.jpg", "id": 51509, "name": "Meet the Parents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0212338", "adult": false, "backdrop_path": "/iMBlLEjC74OQbQ60bubdF27P35K.jpg", "production_companies": [{"name": "Tribeca Productions", "id": 11391}, {"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Nancy Tenenbaum Films", "id": 41248}], "release_date": "2000-10-05", "popularity": 0.856816393234657, "original_title": "Meet the Parents", "budget": 55000000, "cast": [{"name": "Ben Stiller", "character": "Gaylord \"Greg\" Focker", "id": 7399, "credit_id": "52fe4303c3a36847f8033c7f", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Jack Byrnes", "id": 380, "credit_id": "52fe4303c3a36847f8033c83", "cast_id": 2, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Teri Polo", "character": "Pam Byrnes", "id": 10399, "credit_id": "52fe4303c3a36847f8033c87", "cast_id": 3, "profile_path": "/67k0q1YYVIeMd0wZalfqJ2FYLuu.jpg", "order": 2}, {"name": "Blythe Danner", "character": "Dina Byrnes", "id": 10401, "credit_id": "52fe4303c3a36847f8033c8b", "cast_id": 4, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Kevin Rawley", "id": 887, "credit_id": "52fe4303c3a36847f8033c8f", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Nicole DeHuff", "character": "Deborah Byrnes", "id": 17865, "credit_id": "52fe4303c3a36847f8033c93", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jon Abrahams", "character": "Denny Byrnes", "id": 17866, "credit_id": "52fe4303c3a36847f8033c97", "cast_id": 7, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 6}, {"name": "James Rebhorn", "character": "Dr. Larry Banks", "id": 8986, "credit_id": "52fe4303c3a36847f8033c9b", "cast_id": 8, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 7}, {"name": "Thomas McCarthy", "character": "Dr. Bob Banks", "id": 17867, "credit_id": "52fe4303c3a36847f8033c9f", "cast_id": 9, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 8}, {"name": "Phyllis George", "character": "Linda Banks", "id": 17868, "credit_id": "52fe4303c3a36847f8033ca3", "cast_id": 10, "profile_path": "/nU5AOJag5fSqTGxULkSAHz3uCdg.jpg", "order": 9}, {"name": "Kali Rocha", "character": "Atlantic American Flight Attendant", "id": 149665, "credit_id": "52fe4303c3a36847f8033cfb", "cast_id": 26, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 10}, {"name": "Bernie Sheredy", "character": "Norm the Interrogator", "id": 164083, "credit_id": "52fe4303c3a36847f8033cff", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Judah Friedlander", "character": "Pharmacy Clerk", "id": 52860, "credit_id": "52fe4303c3a36847f8033d03", "cast_id": 28, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 12}, {"name": "Peter Bartlett", "character": "Animal Shelter Worker", "id": 163711, "credit_id": "52fe4303c3a36847f8033d07", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "John Elsen", "character": "Chicago Airport Security", "id": 122243, "credit_id": "52fe4303c3a36847f8033d0b", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Mark Hammer", "character": "Greg's Hospital Patient", "id": 116056, "credit_id": "52fe4303c3a36847f8033d0f", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Amy Hohn", "character": "Ticket Agent", "id": 171334, "credit_id": "52fe4303c3a36847f8033d13", "cast_id": 32, "profile_path": "/zA3MqPmAYNIie7yUC2k1GJCJHHj.jpg", "order": 16}, {"name": "William Severs", "character": "Father O'Boyle", "id": 77025, "credit_id": "52fe4303c3a36847f8033d17", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "John Fiore", "character": "Kinky", "id": 935624, "credit_id": "52fe4303c3a36847f8033d1b", "cast_id": 34, "profile_path": null, "order": 18}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe4303c3a36847f8033ca9", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.5, "runtime": 108}, "1598": {"poster_path": "/4KvrvcqckdupXXO2YnANtyG7QLK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 182300000, "overview": "Sam Bowden is a small-town corporate attorney. Max Cady is a tattooed, cigar-smoking, bible-quoting, psychotic rapist. What do they have in common? Fourteen years, ago Sam was a public defender assigned to Max Cady's rape trial, and he made a serious error: he hid a document from his illiterate client that could have gotten him acquitted. Now, the cagey, bibliophile Cady has been released, and he intends to teach Sam Bowden and his family a thing or two about loss.", "video": false, "id": 1598, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Cape Fear", "tagline": "There is nothing in the dark that isn't there in the light. Except fear.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101540", "adult": false, "backdrop_path": "/oZhGYAc6LUM3OLYvQHNfIHfQiMm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Cappa Productions", "id": 691}, {"name": "Tribeca Productions", "id": 11391}], "release_date": "1991-11-15", "popularity": 0.987265408178192, "original_title": "Cape Fear", "budget": 35000000, "cast": [{"name": "Robert De Niro", "character": "Max Cady", "id": 380, "credit_id": "52fe4303c3a36847f8033d55", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Nick Nolte", "character": "Sam Bowden", "id": 1733, "credit_id": "52fe4303c3a36847f8033d59", "cast_id": 2, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 1}, {"name": "Jessica Lange", "character": "Leigh Bowden", "id": 4431, "credit_id": "52fe4303c3a36847f8033d5d", "cast_id": 3, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Danielle Bowden", "id": 3196, "credit_id": "52fe4303c3a36847f8033d61", "cast_id": 4, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Joe Don Baker", "character": "Claude Kersek", "id": 10671, "credit_id": "52fe4303c3a36847f8033d65", "cast_id": 5, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 4}, {"name": "Robert Mitchum", "character": "Lieutenant Elgart", "id": 10158, "credit_id": "52fe4303c3a36847f8033d69", "cast_id": 6, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 5}, {"name": "Gregory Peck", "character": "Lee Heller", "id": 8487, "credit_id": "52fe4303c3a36847f8033d6d", "cast_id": 7, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 6}, {"name": "Illeana Douglas", "character": "Lori Davis", "id": 7796, "credit_id": "52fe4303c3a36847f8033d71", "cast_id": 8, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 7}, {"name": "Fred Thompson", "character": "Tom Broadbent", "id": 17874, "credit_id": "52fe4303c3a36847f8033d75", "cast_id": 9, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 8}, {"name": "Zully Montero", "character": "Graciella", "id": 17875, "credit_id": "52fe4303c3a36847f8033d79", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Martin Balsam", "character": "Judge", "id": 1936, "credit_id": "530dae4a9251411421001fcd", "cast_id": 29, "profile_path": "/3lA1XlW9fsBCDYMMlgmvnHaWmOI.jpg", "order": 10}, {"name": "Craig Henne", "character": "Prisoner", "id": 1402410, "credit_id": "5497c9629251413f75005c4f", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4303c3a36847f8033d97", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.5, "runtime": 128}, "27573": {"poster_path": "/lAuOwnlWrBOOiWGpS3wqhfF4CRx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136, "overview": "Milo Boyd is a bounty hunter whose latest gig is rather satisfying, as he finds out that the bail-skipper he must chase down is his own ex-wife, Nicole -- but she has no intention of getting nabbed without a fight. Complicating matters, Nicole's wannabe-boyfriend, Stewart, joins the chase.", "video": false, "id": 27573, "genres": [{"id": 28, "name": "Action"}], "title": "The Bounty Hunter", "tagline": "It's a Job. It Isn't Personal. Well, Maybe a Little...", "vote_count": 262, "homepage": "http://www.thebountyhunter-movie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1038919", "adult": false, "backdrop_path": "/81VAeKlSKGjwWFVrAuJrw9bRrT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "Madhouse Entertainment", "id": 12199}], "release_date": "2010-03-19", "popularity": 1.33625689455913, "original_title": "The Bounty Hunter", "budget": 40000000, "cast": [{"name": "Gerard Butler", "character": "Milo Boyd", "id": 17276, "credit_id": "52fe4554c3a368484e053fb5", "cast_id": 1, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Nicole Hurley", "id": 4491, "credit_id": "52fe4554c3a368484e053fb9", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Gio Perez", "character": "Uncle Sam", "id": 114144, "credit_id": "52fe4554c3a368484e053fc3", "cast_id": 5, "profile_path": "/xE18CS5KtkMaQEyPzcEX800T2Xw.jpg", "order": 2}, {"name": "Siobhan Fallon", "character": "Teresa (as Siobhan Fallon Hogan)", "id": 6751, "credit_id": "52fe4554c3a368484e053fc7", "cast_id": 6, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 3}, {"name": "Joel Garland", "character": "Dwight (as Joel Marsh Garland)", "id": 88550, "credit_id": "52fe4554c3a368484e053fd1", "cast_id": 8, "profile_path": "/nknCvtyB0fOlISnPpCtE3ov8mfn.jpg", "order": 4}, {"name": "Jason Kolotouros", "character": "Gelman", "id": 1214054, "credit_id": "540e9e650e0a26419d0009e0", "cast_id": 32, "profile_path": "/3iNZZs8hPh2y0wy5p9ubLNypcwP.jpg", "order": 5}, {"name": "Matt Malloy", "character": "Gary", "id": 19208, "credit_id": "52fe4554c3a368484e053fd9", "cast_id": 10, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 6}, {"name": "Jason Sudeikis", "character": "Stewart", "id": 58224, "credit_id": "52fe4555c3a368484e053fdd", "cast_id": 11, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 7}, {"name": "Adam Rose", "character": "Jimmy", "id": 962997, "credit_id": "533570289251414457004211", "cast_id": 31, "profile_path": "/gsQivzGFepDlNJtN0PaBXPYPUoF.jpg", "order": 8}, {"name": "Christine Baranski", "character": "Kitty Hurley", "id": 11870, "credit_id": "52fe4555c3a368484e053fe5", "cast_id": 13, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 9}, {"name": "Dorian Missick", "character": "Bobby Jenkins", "id": 26718, "credit_id": "52fe4555c3a368484e053fe9", "cast_id": 14, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 10}, {"name": "David Costabile", "character": "Arthur", "id": 82167, "credit_id": "52fe4555c3a368484e053fed", "cast_id": 15, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 11}, {"name": "Lynda Gravatt", "character": "Judge", "id": 167582, "credit_id": "52fe4555c3a368484e053ff1", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Peter Greene", "character": "Earl Mahler", "id": 11803, "credit_id": "52fe4555c3a368484e053ff5", "cast_id": 17, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 13}, {"name": "Jeff Garlin", "character": "Sid", "id": 60074, "credit_id": "52fe4555c3a368484e053ff9", "cast_id": 18, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 14}, {"name": "Charlie Hewson", "character": "Rich Guy", "id": 133046, "credit_id": "52fe4555c3a368484e053ffd", "cast_id": 19, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 15}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe4554c3a368484e053fbf", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 5.4, "runtime": 110}, "9792": {"poster_path": "/zIJ0z0zwVjvURXMJeU3Oi9F1AKD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69570032, "overview": "A suburban American family is being stalked by a group of psychotic people who live in the desert, far away from civilization.", "video": false, "id": 9792, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Hills Have Eyes", "tagline": "The lucky ones die first.", "vote_count": 130, "homepage": "http://www.foxsearchlight.com/thehillshaveeyes/", "belongs_to_collection": {"backdrop_path": "/x9jSFZNLlRQGKwfqgwBfxdm2hrv.jpg", "poster_path": "/imLEjBJL8Ex53swnUngCXwmlSr5.jpg", "id": 8918, "name": "The Hills Have Eyes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0454841", "adult": false, "backdrop_path": "/53vdUXxtUogIupD3oln7ywZ2d02.jpg", "production_companies": [{"name": "Craven-Maddalena Films", "id": 1600}, {"name": "Dune Entertainment", "id": 444}, {"name": "Major Studio Partners", "id": 445}], "release_date": "2006-03-10", "popularity": 0.758436702378051, "original_title": "The Hills Have Eyes", "budget": 15000000, "cast": [{"name": "Aaron Stanford", "character": "Doug Bukowski", "id": 11022, "credit_id": "52fe452ec3a36847f80c0bc9", "cast_id": 1, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 0}, {"name": "Kathleen Quinlan", "character": "Ethel Carter", "id": 8183, "credit_id": "52fe452ec3a36847f80c0bcd", "cast_id": 2, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 1}, {"name": "Vinessa Shaw", "character": "Lynn Carter", "id": 5025, "credit_id": "52fe452ec3a36847f80c0bd1", "cast_id": 3, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 2}, {"name": "Emilie de Ravin", "character": "Brenda Carter", "id": 28660, "credit_id": "52fe452ec3a36847f80c0bd5", "cast_id": 4, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 3}, {"name": "Dan Byrd", "character": "Bobby Carter", "id": 59283, "credit_id": "52fe452ec3a36847f80c0bd9", "cast_id": 5, "profile_path": "/j68CP63mC20q25IFSJvvRP3TGlm.jpg", "order": 4}, {"name": "Tom Bower", "character": "Gas Station Attendant", "id": 19453, "credit_id": "52fe452ec3a36847f80c0bdd", "cast_id": 6, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 5}, {"name": "Billy Drago", "character": "Papa Jupiter", "id": 1275, "credit_id": "52fe452ec3a36847f80c0be1", "cast_id": 7, "profile_path": "/sAC4lsuhdueS3sBXjnlNsZbdYEq.jpg", "order": 6}, {"name": "Robert Joy", "character": "Lizard", "id": 19976, "credit_id": "52fe452ec3a36847f80c0be5", "cast_id": 8, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 7}, {"name": "Ted Levine", "character": "Big Bob Carter", "id": 15854, "credit_id": "52fe452ec3a36847f80c0be9", "cast_id": 9, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 8}, {"name": "Desmond Askew", "character": "Big Brain", "id": 59284, "credit_id": "52fe452ec3a36847f80c0bed", "cast_id": 10, "profile_path": "/duVUWh17XHY3HCVhAOkQSGBNb4R.jpg", "order": 9}, {"name": "Ezra Buzzington", "character": "Goggle", "id": 59285, "credit_id": "52fe452ec3a36847f80c0bf1", "cast_id": 11, "profile_path": "/dl0SIqpOqS05UpJHKuDQqZTwUvP.jpg", "order": 10}, {"name": "Michael Bailey Smith", "character": "Pluto", "id": 37008, "credit_id": "52fe452ec3a36847f80c0bf5", "cast_id": 12, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 11}, {"name": "Laura Ortiz", "character": "Ruby", "id": 59286, "credit_id": "52fe452ec3a36847f80c0bf9", "cast_id": 13, "profile_path": "/mwqLiRCwFQM3YBf3qX5AvWubS0c.jpg", "order": 12}, {"name": "Gregory Nicotero", "character": "Cyst", "id": 59287, "credit_id": "52fe452ec3a36847f80c0bfd", "cast_id": 14, "profile_path": "/jedpZq1cMzmixzznxzgRZAIzodY.jpg", "order": 13}, {"name": "Maisie Camilleri Preziosi", "character": "Baby Catherine", "id": 59288, "credit_id": "52fe452ec3a36847f80c0c01", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe452ec3a36847f80c0c07", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 5.9, "runtime": 107}, "9793": {"poster_path": "/7yKntBeRLuj95pRxnlnnRPqr1xd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.", "video": false, "id": 9793, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Hills Have Eyes 2", "tagline": "Help isn't coming.", "vote_count": 62, "homepage": "", "belongs_to_collection": {"backdrop_path": "/x9jSFZNLlRQGKwfqgwBfxdm2hrv.jpg", "poster_path": "/imLEjBJL8Ex53swnUngCXwmlSr5.jpg", "id": 8918, "name": "The Hills Have Eyes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800069", "adult": false, "backdrop_path": "/t3N4QkppS7MiCX6DT0HWwdpxOOV.jpg", "production_companies": [{"name": "Craven-Maddalena Films", "id": 1600}, {"name": "Dune Entertainment", "id": 444}, {"name": "Fox Atomic", "id": 2890}], "release_date": "2007-03-22", "popularity": 0.663413508806275, "original_title": "The Hills Have Eyes II", "budget": 15000000, "cast": [{"name": "Michael Bailey Smith", "character": "Papa Hades", "id": 37008, "credit_id": "52fe452ec3a36847f80c0c93", "cast_id": 2, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 0}, {"name": "Archie Kao", "character": "Han", "id": 59293, "credit_id": "52fe452ec3a36847f80c0c97", "cast_id": 3, "profile_path": "/jWWhcHQTJi1UGR6xP0ZtEA36GmL.jpg", "order": 1}, {"name": "Jay Acovone", "character": "Wilson", "id": 42547, "credit_id": "52fe452ec3a36847f80c0c9b", "cast_id": 4, "profile_path": "/7nTfBxzeO6jBzUSdukF2OWm5uBo.jpg", "order": 2}, {"name": "Jeff Kober", "character": "Redding", "id": 54865, "credit_id": "52fe452ec3a36847f80c0c9f", "cast_id": 5, "profile_path": "/eMp9ZsC77yddwW4SMiuZ7xOd0GS.jpg", "order": 3}, {"name": "Philip Pavel", "character": "Foster", "id": 20754, "credit_id": "52fe452ec3a36847f80c0ca3", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "David Reynolds", "character": "Hansel", "id": 11, "credit_id": "52fe452ec3a36847f80c0ca7", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Tyrell Kemlo", "character": "Stabber", "id": 59294, "credit_id": "52fe452ec3a36847f80c0cab", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Lee Thompson Young", "character": "Delmar", "id": 59295, "credit_id": "52fe452ec3a36847f80c0caf", "cast_id": 9, "profile_path": "/4WtanN5YDO9OjljR8Gy0ME2bQfS.jpg", "order": 7}, {"name": "Daniella Alonso", "character": "Missy", "id": 59296, "credit_id": "52fe452ec3a36847f80c0cb3", "cast_id": 10, "profile_path": "/9w2ziDtZq60jVC5dbAiZmkQEfYe.jpg", "order": 8}, {"name": "Eric Edelstein", "character": "Spitter", "id": 59297, "credit_id": "52fe452ec3a36847f80c0cb7", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jessica Stroup", "character": "Amber", "id": 55463, "credit_id": "52fe452ec3a36847f80c0cbb", "cast_id": 12, "profile_path": "/l1UABSlmGse4QWtHefxZSm82Axp.jpg", "order": 10}, {"name": "Joseph Beddelem", "character": "Insurgent", "id": 59298, "credit_id": "52fe452ec3a36847f80c0cbf", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "C\u00e9cile Breccia", "character": "Pregnant Woman", "id": 59292, "credit_id": "52fe452ec3a36847f80c0c8f", "cast_id": 1, "profile_path": null, "order": 12}, {"name": "Jacob Vargas", "character": "Crank", "id": 16429, "credit_id": "52fe452ec3a36847f80c0cc3", "cast_id": 14, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 13}, {"name": "Ben Crowley", "character": "Stump", "id": 59299, "credit_id": "52fe452ec3a36847f80c0cc7", "cast_id": 15, "profile_path": "/wWKyy7ohR3IsmQ8S55f2tQl1KVY.jpg", "order": 14}], "directors": [{"name": "Martin Weisz", "department": "Directing", "job": "Director", "credit_id": "52fe452ec3a36847f80c0ccd", "profile_path": "/eyYrCv28qCoTUdiQLGOwV2ufl8m.jpg", "id": 58260}], "vote_average": 5.5, "runtime": 89}, "9798": {"poster_path": "/2B0vLBo6gJbnzke4Enc77GCxKrz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 250649836, "overview": "Hotshot Washington lawyer Robert Dean becomes a victim of high-tech identity theft when a hacker slips an incriminating video into his pocket. Soon, a rogue National Security agent sets out to recover the tape -- and destroy Dean.", "video": false, "id": 9798, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Enemy of the State", "tagline": "It's not paranoia if they're really after you", "vote_count": 515, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120660", "adult": false, "backdrop_path": "/5zIxXANoUCVMFu9YFhHejmnSmhY.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "1998-11-15", "popularity": 0.63761027712186, "original_title": "Enemy of the State", "budget": 90000000, "cast": [{"name": "Will Smith", "character": "Robert Clayton Dean", "id": 2888, "credit_id": "52fe452fc3a36847f80c0f93", "cast_id": 16, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Edward Lyle", "id": 193, "credit_id": "52fe452fc3a36847f80c0f47", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Jon Voight", "character": "Reynolds", "id": 10127, "credit_id": "52fe452fc3a36847f80c0f4b", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Lisa Bonet", "character": "Rachel Banks", "id": 3232, "credit_id": "52fe452fc3a36847f80c0f4f", "cast_id": 4, "profile_path": "/wP9edkzvr5vIIVaocRf70vdRcdW.jpg", "order": 3}, {"name": "Regina King", "character": "Carla Dean", "id": 9788, "credit_id": "52fe452fc3a36847f80c0f97", "cast_id": 17, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 4}, {"name": "Gabriel Byrne", "character": "Brill", "id": 5168, "credit_id": "52fe452fc3a36847f80c0f53", "cast_id": 5, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 5}, {"name": "Grant Heslov", "character": "Lenny", "id": 31511, "credit_id": "52fe452fc3a36847f80c0f9b", "cast_id": 18, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 6}, {"name": "Stuart Wilson", "character": "Congressman Sam Albert", "id": 14344, "credit_id": "52fe452fc3a36847f80c0f9f", "cast_id": 19, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 7}, {"name": "Laura Cayouette", "character": "Christa Hawkins", "id": 565498, "credit_id": "52fe452fc3a36847f80c0fa3", "cast_id": 20, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 8}, {"name": "Loren Dean", "character": "Hicks", "id": 11628, "credit_id": "52fe452fc3a36847f80c0fa7", "cast_id": 21, "profile_path": "/wmRzRes0gXtlhcmkYDeLjxD1Xjq.jpg", "order": 9}, {"name": "Barry Pepper", "character": "David Pratt", "id": 12834, "credit_id": "52fe452fc3a36847f80c0fab", "cast_id": 22, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 10}, {"name": "Ian Hart", "character": "Bingham", "id": 10985, "credit_id": "52fe452fc3a36847f80c0faf", "cast_id": 23, "profile_path": "/35KSRxsFR20QGDhIrZn7G4Jkc2g.jpg", "order": 11}, {"name": "Jake Busey", "character": "Krug", "id": 28410, "credit_id": "52fe452fc3a36847f80c0fb3", "cast_id": 24, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 12}, {"name": "Scott Caan", "character": "Jones", "id": 1894, "credit_id": "52fe452fc3a36847f80c0fb7", "cast_id": 25, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 13}, {"name": "Jason Lee", "character": "Daniel Zavitz", "id": 11662, "credit_id": "52fe452fc3a36847f80c0fbb", "cast_id": 26, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 14}, {"name": "James Le Gros", "character": "Jerry Miller", "id": 6474, "credit_id": "52fe452fc3a36847f80c0fbf", "cast_id": 27, "profile_path": "/rqBjmSkcRGwtwpb2tTjGcqLtKyG.jpg", "order": 15}, {"name": "Dan Butler", "character": "Shaffer", "id": 76470, "credit_id": "52fe452fc3a36847f80c0fc3", "cast_id": 28, "profile_path": "/1JpxhswGPAkx3prXVZUpc7aM0uD.jpg", "order": 16}, {"name": "Jack Black", "character": "Fiedler", "id": 70851, "credit_id": "52fe452fc3a36847f80c0fc7", "cast_id": 29, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 17}, {"name": "Jamie Kennedy", "character": "Jamie", "id": 6213, "credit_id": "52fe452fc3a36847f80c0fcb", "cast_id": 30, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 18}, {"name": "Bodhi Elfman", "character": "Van", "id": 154883, "credit_id": "52fe452fc3a36847f80c0fcf", "cast_id": 31, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 19}, {"name": "Ivana Mili\u010devi\u0107", "character": "Ruby's Sales Clerk", "id": 29930, "credit_id": "52fe452fc3a36847f80c0fd3", "cast_id": 32, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 20}, {"name": "Seth Green", "character": "Selby", "id": 13922, "credit_id": "52fe452fc3a36847f80c0fd7", "cast_id": 33, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 21}, {"name": "Philip Baker Hall", "character": "Attorney Mark Silverberg", "id": 4492, "credit_id": "52fe452fc3a36847f80c0fdb", "cast_id": 34, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 22}, {"name": "Jason Robards", "character": "Congressman Phillip Hammersley", "id": 4765, "credit_id": "52fe452fc3a36847f80c0fdf", "cast_id": 35, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 23}, {"name": "Tom Sizemore", "character": "Boss Paulie Pintero", "id": 3197, "credit_id": "52fe452fc3a36847f80c0fe3", "cast_id": 36, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 24}, {"name": "Tom Quinn", "character": "Tunnel Technician", "id": 1115118, "credit_id": "52fe452fc3a36847f80c0fe7", "cast_id": 37, "profile_path": "/goJeBvmLYutE2LYCoxGKTPxjGgA.jpg", "order": 25}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c0f59", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.4, "runtime": 132}, "1607": {"poster_path": "/wlYIwDwk53R4h0uMnpK1NAhHqdg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17266971, "overview": "Robert De Niro made his directorial debut with this expanded adaptation of Chazz Palminteri's one-character play. DeNiro's role of Lorenzo Anello, an Italian-America bus driver, is secondary to the part of his son Calogero, played by young Francis Capra. The top dog in Calogero's Bronx neighborhood is flashy \"wiseguy\" Sonny (Chazz Palminteri). When the boy witnesses Sonny commit a murder, he honor", "video": false, "id": 1607, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "A Bronx Tale", "tagline": "One man lives in the neighborhood, another man owns it.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0106489", "adult": false, "backdrop_path": "/aRMZOhLj6IjnmDnRGjblXYMOPxR.jpg", "production_companies": [{"name": "Savoy Pictures", "id": 11308}, {"name": "HBO Films", "id": 7429}], "release_date": "1993-09-14", "popularity": 0.598772745670164, "original_title": "A Bronx Tale", "budget": 22000000, "cast": [{"name": "Robert De Niro", "character": "Lorenzo Anello", "id": 380, "credit_id": "52fe4303c3a36847f8033fdd", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Chazz Palminteri", "character": "Sonny LoSpecchio", "id": 9046, "credit_id": "52fe4303c3a36847f8033fe1", "cast_id": 2, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 1}, {"name": "Lillo Brancato", "character": "Calogero \"C\" Anello (Age 17)", "id": 17917, "credit_id": "52fe4303c3a36847f8033fe5", "cast_id": 3, "profile_path": "/3dwUQEQImGDUDn9Q4fxl06pW8pS.jpg", "order": 2}, {"name": "Francis Capra", "character": "Calogero \"C\" Anello (Age 9)", "id": 17918, "credit_id": "52fe4303c3a36847f8033fe9", "cast_id": 4, "profile_path": "/fmFbfu6OeimG24ShcEAybcsEDNz.jpg", "order": 3}, {"name": "Taral Hicks", "character": "Jane Williams", "id": 17919, "credit_id": "52fe4303c3a36847f8033fed", "cast_id": 5, "profile_path": "/vdznEX5toQVuXP13vW8azvFZ2t8.jpg", "order": 4}, {"name": "Kathrine Narducci", "character": "Rosina Anello", "id": 17920, "credit_id": "52fe4303c3a36847f8033ff1", "cast_id": 6, "profile_path": "/96Ni5pAILMiSAARvej9IKd5w8R8.jpg", "order": 5}, {"name": "Clem Caserta", "character": "Jimmy Whispers", "id": 17921, "credit_id": "52fe4303c3a36847f8033ff5", "cast_id": 7, "profile_path": "/sXh8zi1BVBe0q9Hza3GhNvdTJsv.jpg", "order": 6}, {"name": "Alfred Sauchelli Jr.", "character": "Bobby Bars", "id": 17922, "credit_id": "52fe4303c3a36847f8033ff9", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Frank Pietrangolare", "character": "Danny K.O.", "id": 17923, "credit_id": "52fe4303c3a36847f8033ffd", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Joe Pesci", "character": "Carmine", "id": 4517, "credit_id": "52fe4303c3a36847f8034001", "cast_id": 10, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 9}, {"name": "Robert D'Andrea", "character": "Tony Toupee", "id": 17924, "credit_id": "52fe4303c3a36847f8034005", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Eddie Montanaro", "character": "Eddie Mush", "id": 17925, "credit_id": "52fe4303c3a36847f8034009", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Fred Fischer", "character": "JoJo \"The Whale\"", "id": 17926, "credit_id": "52fe4303c3a36847f803400d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Dave Salerno", "character": "Frankie Coffeecake", "id": 17927, "credit_id": "52fe4303c3a36847f8034011", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Joe D'Onofrio", "character": "Slick (Age 17)", "id": 17928, "credit_id": "52fe4303c3a36847f8034015", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Luigi D'Angelo", "character": "Aldo (Age 17)", "id": 17929, "credit_id": "52fe4303c3a36847f8034019", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Louis Vanaria", "character": "Crazy Mario (Age 17)", "id": 17930, "credit_id": "52fe4303c3a36847f803401d", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Dominick Rocchio", "character": "Ralphie (Age 17)", "id": 17931, "credit_id": "52fe4303c3a36847f8034021", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Patrick Borriello", "character": "Slick (Age 9)", "id": 17932, "credit_id": "52fe4303c3a36847f8034025", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Paul Perri", "character": "Crazy Mario (Age 9)", "id": 1305246, "credit_id": "53353cdfc3a3680a1e003e55", "cast_id": 98, "profile_path": null, "order": 19}, {"name": "Mitch Kolpan", "character": "Detective Belsik", "id": 17934, "credit_id": "52fe4303c3a36847f803402d", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Phil Foglia", "character": "Detective Vella", "id": 17935, "credit_id": "52fe4303c3a36847f8034031", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Max Genovino", "character": "Louie Dumps", "id": 17936, "credit_id": "52fe4303c3a36847f8034035", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Ralph Napolitano", "character": "Gino", "id": 17937, "credit_id": "52fe4303c3a36847f8034039", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Steve Kendall", "character": "Red Beard", "id": 17938, "credit_id": "52fe4304c3a36847f803403d", "cast_id": 25, "profile_path": null, "order": 24}, {"name": "A.J. Ekoku", "character": "A.J.", "id": 17939, "credit_id": "52fe4304c3a36847f8034041", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Sobe Bailey", "character": "Willy", "id": 17940, "credit_id": "52fe4304c3a36847f8034045", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Domenick Lombardozzi", "character": "Nicky Zero", "id": 17941, "credit_id": "52fe4304c3a36847f8034049", "cast_id": 28, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 27}, {"name": "Gianna Ranaudo", "character": "Tina", "id": 17942, "credit_id": "52fe4304c3a36847f803404d", "cast_id": 29, "profile_path": null, "order": 28}, {"name": "Nicky Blair", "character": "Jerry", "id": 16669, "credit_id": "52fe4304c3a36847f8034051", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Nina Sonja Peterson", "character": "Rachel", "id": 17943, "credit_id": "52fe4304c3a36847f8034055", "cast_id": 31, "profile_path": null, "order": 30}], "directors": [{"name": "Robert De Niro", "department": "Directing", "job": "Director", "credit_id": "52fe4304c3a36847f803405b", "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "id": 380}], "vote_average": 7.2, "runtime": 121}, "9800": {"poster_path": "/uyUSC7oX0alcAG9q6vke8WHGKkY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77324422, "overview": "No one would take his case until one man was willing to take on the system. Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.", "video": false, "id": 9800, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Philadelphia", "tagline": "No one would take on his case... until one man was willing to take on the system.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107818", "adult": false, "backdrop_path": "/pabJLbq90hvDQuXJkabiwpvWKQt.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1993-12-22", "popularity": 0.693226477101514, "original_title": "Philadelphia", "budget": 26000000, "cast": [{"name": "Tom Hanks", "character": "Andrew Beckett", "id": 31, "credit_id": "52fe452fc3a36847f80c1111", "cast_id": 21, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Joe Mille", "id": 5292, "credit_id": "52fe452fc3a36847f80c110d", "cast_id": 20, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Jason Robards", "character": "Charles Wheeler", "id": 4765, "credit_id": "5370e39ac3a3687012000006", "cast_id": 34, "profile_path": "/ePX4AbeGYw55tmd6vdRvncW8uQL.jpg", "order": 2}, {"name": "Mary Steenburgen", "character": "Belinda Conine", "id": 2453, "credit_id": "5370e383c3a368700b000004", "cast_id": 33, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 3}, {"name": "Antonio Banderas", "character": "Miguel Alvarez", "id": 3131, "credit_id": "52fe452fc3a36847f80c1109", "cast_id": 19, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 4}, {"name": "Ron Vawter", "character": "Bob Seidman", "id": 32592, "credit_id": "52fe452fc3a36847f80c1129", "cast_id": 27, "profile_path": null, "order": 5}, {"name": "Robert Ridgely", "character": "Walter Kenton", "id": 25626, "credit_id": "5370ed0ec3a368702a0000b3", "cast_id": 38, "profile_path": "/sxvnvaZRpOhFqXk7yiN8iJE9Elw.jpg", "order": 6}, {"name": "Charles Napier", "character": "Judge Garnett", "id": 16119, "credit_id": "5370e3cec3a368701e000004", "cast_id": 36, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 7}, {"name": "Lisa Summerour", "character": "Lisa Miller", "id": 1318896, "credit_id": "5370ee580e0a266156000153", "cast_id": 39, "profile_path": null, "order": 8}, {"name": "Obba Babatunde", "character": "Jerome Green", "id": 52057, "credit_id": "5370ee9a0e0a26615c000138", "cast_id": 40, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 9}, {"name": "Andre B. Blake", "character": "Young Man in Pharmacy", "id": 552526, "credit_id": "5370eed20e0a266150000151", "cast_id": 41, "profile_path": null, "order": 10}, {"name": "Robert W. Castle", "character": "Bud Beckett", "id": 552527, "credit_id": "5370eef60e0a26615000015f", "cast_id": 42, "profile_path": null, "order": 11}, {"name": "Daniel Chapman", "character": "Clinic Storyteller", "id": 91428, "credit_id": "52fe452fc3a36847f80c1119", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Roger Corman", "character": "Mr. Laird", "id": 102429, "credit_id": "5370efb50e0a26616200016e", "cast_id": 43, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 13}, {"name": "Ann Dowd", "character": "Jill Beckett", "id": 43366, "credit_id": "5370efd00e0a26615f00016b", "cast_id": 44, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 14}, {"name": "David Drake", "character": "Bruno", "id": 1176208, "credit_id": "5370f0fbc3a36870050000c7", "cast_id": 45, "profile_path": null, "order": 15}, {"name": "Karen Finley", "character": "Dr. Gillman", "id": 568363, "credit_id": "52fe452fc3a36847f80c1115", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Charles Glenn", "character": "Kenneth Killcoyne", "id": 568366, "credit_id": "52fe452fc3a36847f80c1125", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Peter Jacobs", "character": "Peter / Mona Lisa", "id": 1318898, "credit_id": "5370f1c8c3a368702a0000ed", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Paul Lazar", "character": "Dr. Klenstein", "id": 138988, "credit_id": "5370f200c3a3687012000101", "cast_id": 47, "profile_path": "/8Aj1kAid7DQoLx76v7yn0pQdo90.jpg", "order": 19}, {"name": "John Bedford Lloyd", "character": "Matt Beckett", "id": 60118, "credit_id": "5370f218c3a3687012000104", "cast_id": 48, "profile_path": "/6tE1lFrmKiOVsHt3fUay62ttn3U.jpg", "order": 20}, {"name": "Roberta Maxwell", "character": "Judge Tate", "id": 10362, "credit_id": "52fe452fc3a36847f80c10c5", "cast_id": 3, "profile_path": "/tqkbI9bFmFPyOEeGGVyu8FPFyUu.jpg", "order": 21}, {"name": "Warren Miller", "character": "Mr. Finley", "id": 1066975, "credit_id": "5370f27cc3a368700b0000f7", "cast_id": 49, "profile_path": null, "order": 22}, {"name": "Harry Northup", "character": "Juror", "id": 127738, "credit_id": "5370f29ec3a36870330000e9", "cast_id": 50, "profile_path": null, "order": 23}, {"name": "Dan Olmstead", "character": "Randy Beckett", "id": 1318899, "credit_id": "5370f2b5c3a368701200010a", "cast_id": 51, "profile_path": null, "order": 24}, {"name": "Joey Perillo", "character": "Filko", "id": 1318900, "credit_id": "5370f30dc3a3686ffe0000f7", "cast_id": 52, "profile_path": null, "order": 25}, {"name": "Lauren Roselli", "character": "Iris", "id": 1281000, "credit_id": "5370f31cc3a368700b000107", "cast_id": 53, "profile_path": null, "order": 26}, {"name": "Anna Deavere Smith", "character": "Anthea Burton", "id": 63279, "credit_id": "52fe452fc3a36847f80c112d", "cast_id": 28, "profile_path": "/qxnkWqihNIu2FKL8UFxAfv9XfAW.jpg", "order": 28}, {"name": "Lisa Talerico", "character": "Shelby", "id": 568367, "credit_id": "52fe452fc3a36847f80c1135", "cast_id": 30, "profile_path": null, "order": 29}, {"name": "Daniel von Bargen", "character": "Jury Foreman", "id": 1473, "credit_id": "5370f373c3a3686ffe000102", "cast_id": 55, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 30}, {"name": "Tracey Walter", "character": "Librarian", "id": 3801, "credit_id": "5370e401c3a368700b000013", "cast_id": 37, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 31}, {"name": "Bradley Whitford", "character": "Jamey Collins", "id": 11367, "credit_id": "52fe452fc3a36847f80c1139", "cast_id": 31, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 32}, {"name": "Chandra Wilson", "character": "Chandra", "id": 171075, "credit_id": "5370f3cbc3a3687012000117", "cast_id": 56, "profile_path": "/3933k7jumQ3oHkJlV7NL9zh7xK1.jpg", "order": 33}, {"name": "Kathryn Witt", "character": "Melissa Benedict", "id": 79906, "credit_id": "5370f3fac3a368701900012e", "cast_id": 57, "profile_path": "/kBVhoLO2UQoB8rVRvnr6JFPUgvJ.jpg", "order": 34}, {"name": "Joanne Woodward", "character": "Sarah Beckett", "id": 109410, "credit_id": "5370e3b8c3a3687005000005", "cast_id": 35, "profile_path": "/wASr7wWAuDTmhc4Qob6eJguUkKY.jpg", "order": 35}, {"name": "Buzz Kilman", "character": "Crutches", "id": 59329, "credit_id": "52fe452fc3a36847f80c10c9", "cast_id": 4, "profile_path": "/pDwywHDHEwWlkxd3vkg6A7h6S9f.jpg", "order": 36}, {"name": "Mark Sorensen Jr.", "character": "Clinic Patient", "id": 568364, "credit_id": "52fe452fc3a36847f80c111d", "cast_id": 24, "profile_path": null, "order": 37}, {"name": "Jeffrey Williamson", "character": "Tyrone", "id": 568365, "credit_id": "52fe452fc3a36847f80c1121", "cast_id": 25, "profile_path": null, "order": 38}, {"name": "Stephanie Roth Haberle", "character": "Rachel Smilow", "id": 58539, "credit_id": "52fe452fc3a36847f80c1131", "cast_id": 29, "profile_path": null, "order": 39}, {"name": "Bill Rowe", "character": "Dr. Armbruster", "id": 1397318, "credit_id": "54887085c3a368414800167a", "cast_id": 58, "profile_path": null, "order": 40}], "directors": [{"name": "Jonathan Demme", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c10cf", "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "id": 16294}], "vote_average": 7.2, "runtime": 125}, "9801": {"poster_path": "/fs3nGIwSBk9H8EcuPtnj7qQrYj2.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40203020, "overview": "The story picks up four weeks after the first film, and already Bridget Jones is becoming uncomfortable in her relationship with Mark Darcy. Apart from discovering that he's a conservative voter, she has to deal with a new boss, strange contractor, and the worst vacation of her life.", "video": false, "id": 9801, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Bridget Jones: The Edge of Reason", "tagline": "Same Bridget. Brand new diary.", "vote_count": 149, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jiS4x140miaEH524CAFTvuxrcZ1.jpg", "poster_path": "/fB3BE3TL85Wh7dxNJf226IYQCp.jpg", "id": 8936, "name": "Bridget Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317198", "adult": false, "backdrop_path": "/4rZ6ScBaJ3X7RWGqSo56kD6JxaW.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Miramax Films", "id": 14}, {"name": "Working Title Films", "id": 10163}, {"name": "Atlantic Television", "id": 11357}, {"name": "Little Bird", "id": 11358}], "release_date": "2004-11-08", "popularity": 0.643364996300388, "original_title": "Bridget Jones: The Edge of Reason", "budget": 50000000, "cast": [{"name": "Ren\u00e9e Zellweger", "character": "Bridget Jones", "id": 9137, "credit_id": "52fe452fc3a36847f80c117b", "cast_id": 1, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 0}, {"name": "Colin Firth", "character": "Mark Darcy", "id": 5472, "credit_id": "52fe452fc3a36847f80c117f", "cast_id": 5, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Hugh Grant", "character": "Daniel Cleaver", "id": 3291, "credit_id": "52fe452fc3a36847f80c1183", "cast_id": 6, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 2}, {"name": "Jacinda Barrett", "character": "Rebecca", "id": 6857, "credit_id": "52fe4530c3a36847f80c11f3", "cast_id": 26, "profile_path": "/qM5BhDkFh18CASTRGp9UPj4PcYO.jpg", "order": 3}, {"name": "Gemma Jones", "character": "Bridget's Mum", "id": 9138, "credit_id": "52fe4530c3a36847f80c11f7", "cast_id": 27, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 4}, {"name": "Jim Broadbent", "character": "Bridget's Dad", "id": 388, "credit_id": "52fe4530c3a36847f80c11fb", "cast_id": 28, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 5}, {"name": "James Callis", "character": "Tom", "id": 9145, "credit_id": "52fe4530c3a36847f80c11ff", "cast_id": 29, "profile_path": "/eKYhq4PGfqE7F2xOjNyeyXHNhRU.jpg", "order": 6}, {"name": "Sally Phillips", "character": "Shazza", "id": 9144, "credit_id": "52fe4530c3a36847f80c1203", "cast_id": 30, "profile_path": "/cr0fXU9N69QOcBNZ98ih5A6QbTr.jpg", "order": 7}, {"name": "Shirley Henderson", "character": "Jude", "id": 1834, "credit_id": "52fe4530c3a36847f80c1207", "cast_id": 31, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 8}, {"name": "James Faulkner", "character": "Uncle Geoffrey", "id": 9140, "credit_id": "536a37260e0a2647d800a0a6", "cast_id": 33, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 10}, {"name": "Celia Imrie", "character": "Una Alconbury", "id": 9139, "credit_id": "536a374f0e0a2647cb00a168", "cast_id": 34, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 11}, {"name": "Dominic McHale", "character": "Bernard", "id": 1117371, "credit_id": "536a37630e0a2647db009e22", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Donald Douglas", "character": "Admiral Darcy", "id": 19331, "credit_id": "536a37940e0a2647d4009e2e", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Shirley Dixon", "character": "Mrs. Darcy", "id": 1317410, "credit_id": "536a37a50e0a2647cb00a172", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Neil Pearson", "character": "Richard Finch", "id": 174982, "credit_id": "536a37b80e0a2647d1009cc9", "cast_id": 38, "profile_path": "/i6KL2tVl5EHtt08LlwPIIh8dIhS.jpg", "order": 15}, {"name": "Rosalind Halstead", "character": "Receptionist", "id": 115681, "credit_id": "536a37d30e0a2647c400a1ef", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Luis Soto", "character": "Mexican Ambassador", "id": 59091, "credit_id": "536a37e50e0a2647d1009ccc", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Tom Brooke", "character": "Production Assistant", "id": 75066, "credit_id": "536a37f70e0a2647d4009e37", "cast_id": 41, "profile_path": "/9uUjIfjlQ3qxdR5z37YD2bEE97p.jpg", "order": 18}, {"name": "Alba Fleming Furlan", "character": "Girl in Rome", "id": 1317411, "credit_id": "536a380a0e0a2647cb00a187", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Beeban Kidron", "department": "Directing", "job": "Director", "credit_id": "52fe452fc3a36847f80c1189", "profile_path": null, "id": 20237}], "vote_average": 5.9, "runtime": 108}, "9802": {"poster_path": "/pAVaLJQBRM4JlZEGXvezwbxOd15.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 335062621, "overview": "A group of renegade marine commandos seizes a stockpile of chemical weapons and takes over Alcatraz, with 81 tourists as hostages. Their leader demands $100 million to be paid, as restitution to families of Marines who died in covert ops. Otherwise, he will launch 15 rockets carrying deadly VX gas into the San Francisco Bay area.", "video": false, "id": 9802, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Rock", "tagline": "Alcatraz. Only one man has ever broken out. Now five million lives depend on two men breaking in.", "vote_count": 585, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117500", "adult": false, "backdrop_path": "/8Tv9KJApHcwJzn6wR9LcW3r5a5w.jpg", "production_companies": [{"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1996-06-06", "popularity": 1.79430598621926, "original_title": "The Rock", "budget": 75000000, "cast": [{"name": "Sean Connery", "character": "John Patrick Mason", "id": 738, "credit_id": "52fe4530c3a36847f80c12b5", "cast_id": 20, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Nicolas Cage", "character": "Dr. Stanley Goodspeed", "id": 2963, "credit_id": "52fe4530c3a36847f80c1253", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 1}, {"name": "Ed Harris", "character": "Brigadier General Francis X. Hummel, USMC", "id": 228, "credit_id": "52fe4530c3a36847f80c1257", "cast_id": 3, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "John Spencer", "character": "FBI Director James Womack", "id": 34691, "credit_id": "52fe4530c3a36847f80c125b", "cast_id": 4, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 3}, {"name": "David Morse", "character": "Major Tom Baxter", "id": 52, "credit_id": "52fe4530c3a36847f80c125f", "cast_id": 5, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 4}, {"name": "William Forsythe", "character": "Special Agent Ernest Paxton", "id": 4520, "credit_id": "52fe4530c3a36847f80c1263", "cast_id": 6, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 5}, {"name": "Michael Biehn", "character": "Commander Charles Anderson", "id": 2712, "credit_id": "52fe4530c3a36847f80c12b9", "cast_id": 21, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 6}, {"name": "Vanessa Marcil", "character": "Carla Pestalozzi", "id": 169586, "credit_id": "52fe4530c3a36847f80c12bd", "cast_id": 22, "profile_path": "/1atIMDGsXGJs8I8ISXX6c9cqkWW.jpg", "order": 7}, {"name": "John C. McGinley", "character": "Marine Captain Hendrix", "id": 11885, "credit_id": "52fe4530c3a36847f80c12c1", "cast_id": 23, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 8}, {"name": "Bokeem Woodbine", "character": "Sergeant Crisp", "id": 71913, "credit_id": "52fe4530c3a36847f80c12c5", "cast_id": 24, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 9}, {"name": "Claire Forlani", "character": "Jade Angelou", "id": 4174, "credit_id": "52fe4530c3a36847f80c12c9", "cast_id": 25, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 10}, {"name": "Gregory Sporleder", "character": "Captain Frye", "id": 10000, "credit_id": "52fe4530c3a36847f80c12cd", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Tony Todd", "character": "Captain Darrow", "id": 19384, "credit_id": "52fe4530c3a36847f80c12d1", "cast_id": 27, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 12}, {"name": "Jim Maniaci", "character": "Private Scarpetti", "id": 156035, "credit_id": "52fe4530c3a36847f80c12d5", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Greg Collins", "character": "Private Gamble", "id": 58950, "credit_id": "52fe4530c3a36847f80c12d9", "cast_id": 29, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 14}, {"name": "Brendan Kelly", "character": "Private Cox", "id": 166893, "credit_id": "52fe4530c3a36847f80c12dd", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Steve Harris", "character": "Private McCoy", "id": 2202, "credit_id": "52fe4530c3a36847f80c12e1", "cast_id": 31, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 16}, {"name": "Danny Nucci", "character": "Lieutenant Shephard", "id": 8540, "credit_id": "52fe4530c3a36847f80c12e5", "cast_id": 32, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 17}, {"name": "Celeste Weaver", "character": "Stacy Richards", "id": 170696, "credit_id": "52fe4530c3a36847f80c12e9", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Todd Louiso", "character": "Marvin Isherwood", "id": 3230, "credit_id": "52fe4530c3a36847f80c12ed", "cast_id": 34, "profile_path": "/e4PTxmKUB0qGBusuNjqMvhjGELK.jpg", "order": 19}, {"name": "David Bowe", "character": "Dr. Ling", "id": 11659, "credit_id": "52fe4530c3a36847f80c12f1", "cast_id": 35, "profile_path": "/7LQANqwm1g9X9YmMwDHqdqJ9uK9.jpg", "order": 20}, {"name": "Raquel Krelle", "character": "Agent Margie Wood", "id": 106709, "credit_id": "52fe4530c3a36847f80c12f5", "cast_id": 36, "profile_path": null, "order": 21}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4530c3a36847f80c1269", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.8, "runtime": 136}, "9804": {"poster_path": "/yordVJcPLh3VNRL7bXzFIBEhXRr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 264218220, "overview": "In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship. But the trio soon becomes the target of a menacing pirate who covets the map to \"Dryland\" -- which is tattooed on Enola's back.", "video": false, "id": 9804, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Waterworld", "tagline": "Beyond the horizon lies the secret to a new beginning.", "vote_count": 277, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114898", "adult": false, "backdrop_path": "/3YafUwZBXU8irYkBcgPDQByPfMR.jpg", "production_companies": [{"name": "Gordon Company", "id": 1073}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Universal Pictures", "id": 33}, {"name": "Licht/Mueller Film Corporation", "id": 6092}], "release_date": "1995-07-28", "popularity": 0.757050625215674, "original_title": "Waterworld", "budget": 175000000, "cast": [{"name": "Kevin Costner", "character": "Mariner", "id": 1269, "credit_id": "52fe4530c3a36847f80c1425", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Chaim Girafi", "character": "Drifter", "id": 59350, "credit_id": "52fe4530c3a36847f80c1429", "cast_id": 2, "profile_path": "/hH8EoVgtxgqPWLJjneA4QCVD1HL.jpg", "order": 1}, {"name": "Rick Aviles", "character": "Gatesman", "id": 3432, "credit_id": "52fe4530c3a36847f80c142d", "cast_id": 3, "profile_path": "/p4do7d8TKPbdQ2IkF5vx8uHLh93.jpg", "order": 2}, {"name": "R. D. Call", "character": "Enforcer", "id": 49832, "credit_id": "52fe4530c3a36847f80c1495", "cast_id": 26, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 3}, {"name": "Zitto Kazann", "character": "Elder / Survivor", "id": 59352, "credit_id": "52fe4530c3a36847f80c1431", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jeanne Tripplehorn", "character": "Helen", "id": 10478, "credit_id": "52fe4530c3a36847f80c1435", "cast_id": 6, "profile_path": "/pZcw8RXsRSO9WXHOrQqentISWYv.jpg", "order": 5}, {"name": "Dennis Hopper", "character": "Deacon", "id": 2778, "credit_id": "52fe4530c3a36847f80c148d", "cast_id": 24, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 6}, {"name": "Jack Black", "character": "Pilot", "id": 70851, "credit_id": "52fe4530c3a36847f80c1491", "cast_id": 25, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 7}, {"name": "Zakes Mokae", "character": "Priam", "id": 47458, "credit_id": "52fe4530c3a36847f80c1499", "cast_id": 27, "profile_path": "/sxzqrmSm7Kd7eSHzos7UeiT0mke.jpg", "order": 8}, {"name": "Jack Kehler", "character": "Banker", "id": 1240, "credit_id": "53870319c3a3681aed002a17", "cast_id": 34, "profile_path": "/huxiFLWgthatgaEIT4u36muUJMg.jpg", "order": 9}, {"name": "Tina Majorino", "character": "Enola", "id": 53930, "credit_id": "5387034cc3a3681aea002767", "cast_id": 35, "profile_path": "/kGzCUaPddOm84cRlExLKOvZEoqP.jpg", "order": 10}, {"name": "Rita Zohar", "character": "Atoller", "id": 41741, "credit_id": "5387037bc3a3681aea00276b", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Gerard Murphy", "character": "Nord", "id": 151943, "credit_id": "547a4912925141298a002fed", "cast_id": 74, "profile_path": "/onkF4igAmOiiKl2wxXm8eSgLgFd.jpg", "order": 12}, {"name": "Michael Jeter", "character": "Old Gregor", "id": 2169, "credit_id": "547a4959c3a3685c42002e81", "cast_id": 75, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 13}], "directors": [{"name": "Kevin Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe4530c3a36847f80c143b", "profile_path": "/drxXtPvCxVtw0VLn1on073OrW9s.jpg", "id": 8300}, {"name": "Kevin Costner", "department": "Directing", "job": "Director", "credit_id": "52fe4530c3a36847f80c1441", "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "id": 1269}], "vote_average": 5.6, "runtime": 135}, "9806": {"poster_path": "/9k4sgKD79q0MDHSWIqNnHqOfOEV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 631442092, "overview": "Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.", "video": false, "id": 9806, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Incredibles", "tagline": "No gut, no glory", "vote_count": 1582, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/incredibles/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317705", "adult": false, "backdrop_path": "/iGknrkEyebPFmpQoLGy5L0utVxz.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2004-11-04", "popularity": 1.50585709192542, "original_title": "The Incredibles", "budget": 92000000, "cast": [{"name": "Craig T. Nelson", "character": "Bob Parr / Mr. Incredible (voice)", "id": 8977, "credit_id": "52fe4531c3a36847f80c1567", "cast_id": 1, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 0}, {"name": "Holly Hunter", "character": "Helen Parr / Elastigirl (voice)", "id": 18686, "credit_id": "52fe4531c3a36847f80c156b", "cast_id": 2, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Lucius Best / Frozone (voice)", "id": 2231, "credit_id": "52fe4531c3a36847f80c156f", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Jason Lee", "character": "Buddy Pine / Syndrome (voice)", "id": 11662, "credit_id": "52fe4531c3a36847f80c1573", "cast_id": 4, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 3}, {"name": "Dominique Louis", "character": "Bomb Voyage (voice)", "id": 7891, "credit_id": "52fe4531c3a36847f80c1577", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Teddy Newton", "character": "Newsreel Narrator (voice)", "id": 59357, "credit_id": "52fe4531c3a36847f80c157b", "cast_id": 6, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 5}, {"name": "Eli Fucile", "character": "Jack Jack Parr (voice)", "id": 59358, "credit_id": "52fe4531c3a36847f80c157f", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Maeve Andrews", "character": "Jack Jack Parr (voice)", "id": 59359, "credit_id": "52fe4531c3a36847f80c1583", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Spencer Fox", "character": "Dashiell 'Dash' Parr (voice)", "id": 59360, "credit_id": "52fe4531c3a36847f80c1587", "cast_id": 9, "profile_path": "/qqs9r1I7tCIZNJtqpfgy33H9vgr.jpg", "order": 8}, {"name": "Sarah Vowell", "character": "Violet Parr (voice)", "id": 59361, "credit_id": "52fe4531c3a36847f80c158b", "cast_id": 10, "profile_path": "/k9zkjShni0FFCPGxWzV959bFUVq.jpg", "order": 9}, {"name": "Elizabeth Pe\u00f1a", "character": "Mirage (voice)", "id": 7430, "credit_id": "53b98015c3a368072e002ade", "cast_id": 27, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 10}, {"name": "Brad Bird", "character": "Edna 'E' Mode (voice)", "id": 7087, "credit_id": "53b97fcf0e0a2676c4009db9", "cast_id": 26, "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "order": 11}, {"name": "Jean Sincere", "character": "Mrs. Hogenson (voice)", "id": 155917, "credit_id": "52fe4531c3a36847f80c15c5", "cast_id": 20, "profile_path": "/2ZfyL9QYGJTsM4ukzclnqcBgpXD.jpg", "order": 12}, {"name": "Wallace Shawn", "character": "Gilbert Huph (voice)", "id": 12900, "credit_id": "52fe4531c3a36847f80c15c9", "cast_id": 21, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 13}, {"name": "Lou Romano", "character": "Bernie Kropp (voice)", "id": 7962, "credit_id": "52fe4531c3a36847f80c15cd", "cast_id": 22, "profile_path": "/q5BXFPkFZA7RJh9Oj15WRQawMfk.jpg", "order": 14}, {"name": "Wayne Canney", "character": "Principal (voice)", "id": 1075147, "credit_id": "52fe4531c3a36847f80c15d1", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Michael Bird", "character": "Tony Rydinger (voice)", "id": 1075148, "credit_id": "52fe4531c3a36847f80c15d5", "cast_id": 24, "profile_path": "/7vE1uNNUi76GwwVlcnvJ6gAKIh0.jpg", "order": 16}, {"name": "John Ratzenberger", "character": "The Underminer (voice)", "id": 7907, "credit_id": "52fe4531c3a36847f80c15d9", "cast_id": 25, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 17}, {"name": "Kimberly Adair Clark", "character": "Honey (voice)", "id": 1338319, "credit_id": "53b98078c3a3685ec1005a6a", "cast_id": 28, "profile_path": "/aUpioS1Z0ZnATrkSRsNcfXzZnhP.jpg", "order": 18}, {"name": "Bud Luckey", "character": "Rick Dicker (voice)", "id": 7918, "credit_id": "53b980f7c3a3685eb1005c4a", "cast_id": 30, "profile_path": "/pcCh7G19FKMNijmPQg1PMH1btic.jpg", "order": 20}, {"name": "Pete Docter", "character": "Additional Voices (voice)", "id": 12890, "credit_id": "53b98510c3a3685ec1005ac0", "cast_id": 31, "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "order": 21}, {"name": "Andrew Stanton", "character": "Additional Voices (voice)", "id": 7, "credit_id": "53b9858c0e0a2676b8009b2c", "cast_id": 32, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 22}, {"name": "Bret 'Brook' Parker", "character": "Kari (voice)", "id": 7998, "credit_id": "5442bac20e0a266330002973", "cast_id": 33, "profile_path": "/776ZYJGQO4Wer1cDq9XXAZ0z4C1.jpg", "order": 23}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe4531c3a36847f80c1591", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 6.8, "runtime": 115}, "1620": {"poster_path": "/1U2FpMotSyaciATw5qfEsKdgpX4.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99965753, "overview": "The best-selling videogame, Hitman, roars to life with both barrels blazing in this hardcore action-thriller starring Timothy Olyphant. A genetically engineered assassin with deadly aim, known only as \"Agent 47\" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.", "video": false, "id": 1620, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hitman", "tagline": "Assassin 47", "vote_count": 341, "homepage": "http://www.hitmanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "sr", "name": "Srpski"}], "imdb_id": "tt0465494", "adult": false, "backdrop_path": "/6wBfey6EVR5qxYLB8pxoTVQYWkS.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Anka Film", "id": 867}, {"name": "Daybreak Productions", "id": 11746}, {"name": "Dune Entertainment", "id": 444}, {"name": "Prime Universe Productions", "id": 11747}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2007-11-21", "popularity": 0.84019159894405, "original_title": "Hitman", "budget": 24000000, "cast": [{"name": "Timothy Olyphant", "character": "Agent 47", "id": 18082, "credit_id": "52fe4305c3a36847f80346d3", "cast_id": 1, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 0}, {"name": "Dougray Scott", "character": "Mike Whittier", "id": 15336, "credit_id": "52fe4305c3a36847f803472b", "cast_id": 18, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 1}, {"name": "Olga Kurylenko", "character": "Nika Boronina", "id": 18182, "credit_id": "52fe4305c3a36847f803472f", "cast_id": 19, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 2}, {"name": "Robert Knepper", "character": "Yuri Marklov", "id": 17343, "credit_id": "52fe4305c3a36847f8034733", "cast_id": 20, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 3}, {"name": "Ulrich Thomsen", "character": "Mikhail Belicoff", "id": 4455, "credit_id": "52fe4305c3a36847f8034737", "cast_id": 21, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 4}, {"name": "Henry Ian Cusick", "character": "Udre Belicoff", "id": 31166, "credit_id": "52fe4305c3a36847f803473b", "cast_id": 22, "profile_path": "/wtpj2lUQE2BPyPmTJbhzn0vtdQ6.jpg", "order": 5}, {"name": "Michael Offei", "character": "Jenkins", "id": 18183, "credit_id": "52fe4305c3a36847f803473f", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Christian Erickson", "character": "General Kormarov", "id": 45849, "credit_id": "52fe4305c3a36847f8034743", "cast_id": 24, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 7}, {"name": "Eriq Ebouaney", "character": "Bwana Qvie", "id": 25078, "credit_id": "52fe4305c3a36847f8034747", "cast_id": 25, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 8}, {"name": "Joe Sheridan", "character": "Captain Gudnayev", "id": 12983, "credit_id": "52fe4305c3a36847f803474b", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "James Faulkner", "character": "Smith Jamison", "id": 9140, "credit_id": "52fe4305c3a36847f803474f", "cast_id": 27, "profile_path": "/hIXsvwjcSwwn9elGLOCOD51M7Nb.jpg", "order": 10}], "directors": [{"name": "Xavier Gens", "department": "Directing", "job": "Director", "credit_id": "52fe4305c3a36847f80346d9", "profile_path": "/nvGKZUazQO0TUR1CW0IUJiIJAT3.jpg", "id": 18184}], "vote_average": 6.0, "runtime": 89}, "1621": {"poster_path": "/6HS7QG5aR0tZ9JHORs7DMtyqCDr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90400000, "overview": "A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.", "video": false, "id": 1621, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Trading Places", "tagline": "Some very funny business.", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086465", "adult": false, "backdrop_path": "/pyYPPKCjIPlEjUpxIziXiTjT479.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1983-06-07", "popularity": 0.844562386553999, "original_title": "Trading Places", "budget": 40600000, "cast": [{"name": "Eddie Murphy", "character": "Billy Ray Valentine", "id": 776, "credit_id": "52fe4305c3a36847f8034799", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Dan Aykroyd", "character": "Louis Winthorpe III", "id": 707, "credit_id": "52fe4305c3a36847f803479d", "cast_id": 2, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 1}, {"name": "Jamie Lee Curtis", "character": "Ophelia", "id": 8944, "credit_id": "52fe4305c3a36847f80347a1", "cast_id": 3, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 2}, {"name": "Denholm Elliott", "character": "Coleman", "id": 656, "credit_id": "52fe4305c3a36847f80347a5", "cast_id": 4, "profile_path": "/lpDIKHwg1ttp03i3fKWcSuQ8MfY.jpg", "order": 3}, {"name": "Ralph Bellamy", "character": "Randolph Duke", "id": 1208, "credit_id": "52fe4305c3a36847f80347a9", "cast_id": 5, "profile_path": "/fjRvQxfzPw77TUMDaJHnPKirpG0.jpg", "order": 4}, {"name": "Don Ameche", "character": "Mortimer Duke", "id": 18156, "credit_id": "52fe4305c3a36847f80347ad", "cast_id": 6, "profile_path": "/nEALranFWJsZoAyNqgLX28kdM9n.jpg", "order": 5}, {"name": "Paul Gleason", "character": "Clarence Beeks", "id": 7675, "credit_id": "52fe4305c3a36847f80347b1", "cast_id": 7, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 6}, {"name": "Kristin Holby", "character": "Penelope Witherspoon", "id": 18160, "credit_id": "52fe4305c3a36847f80347b5", "cast_id": 8, "profile_path": "/8jbPTDoS5tNE27oan8BdlKBASeo.jpg", "order": 7}, {"name": "Frank Oz", "character": "Corrupt Cop", "id": 7908, "credit_id": "52fe4305c3a36847f8034819", "cast_id": 26, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 8}, {"name": "Robert Earl Jones", "character": "Attendant", "id": 98927, "credit_id": "54c5e2969251412489009544", "cast_id": 29, "profile_path": null, "order": 9}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe4305c3a36847f80347bb", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 6.9, "runtime": 116}, "83542": {"poster_path": "/k9gWDjfXM80iXQLuMvPlZgSFJgR.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "SG", "name": "Singapore"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130482868, "overview": "A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.", "video": false, "id": 83542, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Cloud Atlas", "tagline": "Everything is Connected", "vote_count": 1445, "homepage": "http://cloudatlas.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1371111", "adult": false, "backdrop_path": "/2ZA03KiD4jePTNBTJjGGFTNQPMA.jpg", "production_companies": [{"name": "Cloud Atlas Productions", "id": 11080}, {"name": "X-Filme Creative Pool", "id": 1972}, {"name": "Anarchos Productions", "id": 450}, {"name": "ARD Degeto Film", "id": 10947}, {"name": "Ascension Pictures", "id": 7829}, {"name": "Dreams of Dragon Picture", "id": 19621}, {"name": "Five Drops", "id": 11082}, {"name": "Media Asia Group", "id": 11083}], "release_date": "2012-10-26", "popularity": 1.6728442051566, "original_title": "Cloud Atlas", "budget": 102000000, "cast": [{"name": "Tom Hanks", "character": "Dr. Henry Goose / Hotel Manager / Isaac Sachs / Dermot Hoggins / Cavendish Look-a-Like Actor / Zachry", "id": 31, "credit_id": "52fe48a89251416c91094135", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Halle Berry", "character": "Native Woman / Jocasta Ayrs / Luisa Rey / Indian Party Guest / Ovid / Meronym", "id": 4587, "credit_id": "52fe48a89251416c91094139", "cast_id": 2, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 1}, {"name": "Jim Broadbent", "character": "Captain Molyneux / Vyvyan Ayrs / Timothy Cavendish / Korean Musician / Prescient 2", "id": 388, "credit_id": "52fe48a89251416c9109414d", "cast_id": 7, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Haskell Moore / Tadeusz Kesselring / Bill Smoke / Nurse Noakes / Boardman Mephi / Old Georgie", "id": 1331, "credit_id": "52fe48a89251416c9109413d", "cast_id": 3, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Jim Sturgess", "character": "Adam Ewing / Poor Hotel Guest / Megan's Dad / Highlander / Hae-Joo Chang / Adam / Zachry Brother-in-Law", "id": 38941, "credit_id": "52fe48a89251416c9109417d", "cast_id": 17, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 4}, {"name": "DooNa Bae", "character": "Tilda / Megan's Mom / Mexican Woman / Sonmi-451 / Sonmi-351 / Sonmi Prostitute", "id": 21688, "credit_id": "52fe48a89251416c91094161", "cast_id": 12, "profile_path": "/hE9dmpQOIdgt1GGVoZObPZmVSPh.jpg", "order": 5}, {"name": "Ben Whishaw", "character": "Cabin Boy / Robert Frobisher / Store Clerk / Georgette / Tribesman", "id": 17064, "credit_id": "52fe48a89251416c91094181", "cast_id": 18, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 6}, {"name": "Keith David", "character": "Kupaka / Joe Napier / An-kor Apis / Prescient", "id": 65827, "credit_id": "52fe48a89251416c91094159", "cast_id": 10, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "James D'Arcy", "character": "Young Rufus Sixsmith / Old Rufus Sixsmith / Nurse James / Archivist", "id": 19655, "credit_id": "52fe48a89251416c9109415d", "cast_id": 11, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 8}, {"name": "Zhou Xun", "character": "Talbot / Hotel Manager / Yoona-939 / Rose", "id": 71057, "credit_id": "52fe48a89251416c91094185", "cast_id": 19, "profile_path": "/hIOJS7EX6qBormh7Q6KNmtBlWlC.jpg", "order": 9}, {"name": "David Gyasi", "character": "Autua / Lester Rey / Duophsyte", "id": 55411, "credit_id": "52fe48a89251416c91094189", "cast_id": 20, "profile_path": "/6UgJLtCkGC2YHIK7FwAdGcFbT88.jpg", "order": 10}, {"name": "Susan Sarandon", "character": "Madame Horrox / Older Ursula / Yusouf Suleiman / Abbess", "id": 4038, "credit_id": "52fe48a89251416c91094151", "cast_id": 8, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 11}, {"name": "Hugh Grant", "character": "Rev. Giles Horrox / Hotel Heavy / Lloyd Hooks / Denholme Cavendish / Seer Rhee / Kona Chief", "id": 3291, "credit_id": "52fe48a89251416c91094155", "cast_id": 9, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 12}, {"name": "Robert Fyfe", "character": "Old Salty Dog / Mr. Meeks / Prescient 1", "id": 64160, "credit_id": "52fe48a89251416c9109418d", "cast_id": 21, "profile_path": "/mjPX6LtOGfZFztfAu6ZK9o0TfgP.jpg", "order": 13}, {"name": "Martin Wuttke", "character": "Mr. Boerhaave / Guard / Leary the Healer", "id": 49056, "credit_id": "52fe48a99251416c91094191", "cast_id": 22, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 14}, {"name": "Zhu Zhu", "character": "Megan Sixsmith / 12th Star Clone", "id": 1077356, "credit_id": "52fe48a99251416c91094195", "cast_id": 23, "profile_path": "/zJ1lYPLMC53rCZfkFurmmwp9hDC.jpg", "order": 15}, {"name": "Robin Morrissey", "character": "Young Cavendish", "id": 1118058, "credit_id": "53b279ddc3a3682edb0076b0", "cast_id": 98, "profile_path": null, "order": 16}, {"name": "Brody Nicholas Lee", "character": "Javier Gomez / Jonas / Zachry's Older Nephew", "id": 1336199, "credit_id": "53b27b630e0a2659800099de", "cast_id": 99, "profile_path": null, "order": 17}, {"name": "Amanda Walker", "character": "Veronica", "id": 108620, "credit_id": "53b27bbf0e0a265975009b01", "cast_id": 100, "profile_path": null, "order": 18}, {"name": "Raevan Lee Hanan", "character": "Little Girl with Orison at Papa Song's / Catkin / Zachry Relative", "id": 1323238, "credit_id": "53b27c010e0a265989009cc8", "cast_id": 101, "profile_path": null, "order": 19}, {"name": "G\u00f6tz Otto", "character": "Groundsman Withers", "id": 10744, "credit_id": "53b27c360e0a265989009ccc", "cast_id": 102, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 20}, {"name": "Mya-Lecia Naylor", "character": "Miro", "id": 972117, "credit_id": "53b27c6f0e0a265989009cd5", "cast_id": 103, "profile_path": null, "order": 21}, {"name": "Niall Greig Fulton", "character": "Haskell Moore's Dinner Guest / Mozza Hoggins", "id": 122648, "credit_id": "53b27d5e0e0a26598c009f64", "cast_id": 104, "profile_path": "/jVbIWnCYirZqprAh0RTW9SWE6XW.jpg", "order": 22}, {"name": "Louis Dempsey", "character": "Haskell Moore's Dinner Guest / Jarvis Hoggins", "id": 1084849, "credit_id": "53b27da80e0a2659860099e5", "cast_id": 105, "profile_path": null, "order": 23}, {"name": "Martin Docherty", "character": "Haskell Moore's Dinner Guest / Eddie Hoggins", "id": 1336202, "credit_id": "53b27dee0e0a265989009d06", "cast_id": 106, "profile_path": null, "order": 24}, {"name": "Alistair Petrie", "character": "Haskell Moore's Dinner Guest / Musician / Felix Finch / Lascivious Businessman", "id": 56100, "credit_id": "53b27e200e0a265989009d0b", "cast_id": 107, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 25}, {"name": "Sylvestra Le Touzel", "character": "Haskell Moore's Dinner Guest / Nurse Judd / Aide in Slaughtership", "id": 65448, "credit_id": "53b27e5b0e0a265975009b59", "cast_id": 108, "profile_path": "/1gRhJ0TFdhXe9N4igKSoAGlfDP5.jpg", "order": 26}], "directors": [{"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe48a89251416c91094143", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}, {"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe48a89251416c91094149", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}, {"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe48a99251416c9109423d", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 6.5, "runtime": 172}, "9816": {"poster_path": "/jnutEFGGdjJrLDxzJykI4ZviGe8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91038276, "overview": "A white midwestern girl moves to Chicago, where her new boyfriend is a black teen from the South Side with a rough, semi-criminal past.", "video": false, "id": 9816, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Save the Last Dance", "tagline": "The Only Person You Need To Be Is Yourself.", "vote_count": 80, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/jAByXoHn29RlCjIrOa3k1jl60DB.jpg", "id": 107469, "name": "Save The Last Dance Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0206275", "adult": false, "backdrop_path": "/6JYONYxVrPPOI3vErCLVP5aaiGQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2001-01-12", "popularity": 0.539664233966061, "original_title": "Save the Last Dance", "budget": 13000000, "cast": [{"name": "Julia Stiles", "character": "Sara Johnson", "id": 12041, "credit_id": "52fe4533c3a36847f80c1ccf", "cast_id": 18, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 0}, {"name": "Sean Patrick Thomas", "character": "Derek Reynolds", "id": 11868, "credit_id": "52fe4533c3a36847f80c1cdf", "cast_id": 21, "profile_path": "/8cXF4Ywgs70ZL1j2q5A2yOvd2AY.jpg", "order": 1}, {"name": "Kerry Washington", "character": "Chenille Reynolds", "id": 11703, "credit_id": "52fe4533c3a36847f80c1ce3", "cast_id": 22, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 2}, {"name": "Fredro Starr", "character": "Malakai", "id": 59568, "credit_id": "52fe4533c3a36847f80c1ce7", "cast_id": 23, "profile_path": "/cyyOSNEgpfkGX2cSSB32EhsenRq.jpg", "order": 3}, {"name": "Terry Kinney", "character": "Roy Johnson", "id": 11067, "credit_id": "52fe4533c3a36847f80c1ceb", "cast_id": 24, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 4}, {"name": "Bianca Lawson", "character": "Nikki", "id": 36068, "credit_id": "52fe4533c3a36847f80c1cef", "cast_id": 25, "profile_path": "/wc8Oezs3BRgQeUIDFlRrHA84lVL.jpg", "order": 5}, {"name": "Vince Green", "character": "Snookie", "id": 59569, "credit_id": "52fe4533c3a36847f80c1cf3", "cast_id": 26, "profile_path": "/1Mezf9VBp74Xmmuhe5TUyIQyNu.jpg", "order": 6}, {"name": "Garland Whitt", "character": "Kenny", "id": 59570, "credit_id": "52fe4533c3a36847f80c1cf7", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Elisabeth Oas", "character": "Diggy", "id": 59571, "credit_id": "52fe4533c3a36847f80c1cfb", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Artel Great", "character": "Arvel", "id": 59572, "credit_id": "52fe4533c3a36847f80c1cff", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Cory Stewart", "character": "Lip", "id": 59573, "credit_id": "52fe4533c3a36847f80c1d03", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Jennifer Anglin", "character": "Glynn", "id": 59574, "credit_id": "52fe4533c3a36847f80c1d07", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Dorothy Martin", "character": "Momma Dean", "id": 59575, "credit_id": "52fe4533c3a36847f80c1d0b", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Kim Tlusty", "character": "Lindsay Johnson", "id": 59576, "credit_id": "52fe4533c3a36847f80c1d0f", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Felicia Fields", "character": "Woman on Train", "id": 59577, "credit_id": "52fe4533c3a36847f80c1d13", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Ora Jones", "character": "Mrs. Gwynn", "id": 59578, "credit_id": "52fe4533c3a36847f80c1d17", "cast_id": 35, "profile_path": "/9v4DBgf50S5b73PDtX7cH4fUXtQ.jpg", "order": 15}, {"name": "Tab Baker", "character": "Mr. Campbell", "id": 59579, "credit_id": "52fe4533c3a36847f80c1d1b", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Kevin Reid", "character": "Wonk", "id": 59580, "credit_id": "52fe4533c3a36847f80c1d1f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Andrew Rothenberg", "character": "Stern Judge", "id": 59581, "credit_id": "52fe4533c3a36847f80c1d23", "cast_id": 38, "profile_path": "/daNiuZmplaVjWcUqukYcAfDDSrC.jpg", "order": 18}, {"name": "Mekdes Bruk", "character": "Lakisha", "id": 59582, "credit_id": "52fe4533c3a36847f80c1d27", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Jerod Howard", "character": "", "id": 97802, "credit_id": "52fe4533c3a36847f80c1d2b", "cast_id": 40, "profile_path": "/1YdvB62s4ghmVo5ZI79znrJKGSZ.jpg", "order": 20}], "directors": [{"name": "Thomas Carter", "department": "Directing", "job": "Director", "credit_id": "52fe4533c3a36847f80c1c6b", "profile_path": "/j51pRbB8nCYrziSnjmB2PS9SIVh.jpg", "id": 52038}], "vote_average": 6.4, "runtime": 112}, "9820": {"poster_path": "/7vR4e3ga3mdSEpYe8kMeUv3mgND.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Hallie Parker and Annie James are identical twins separated at a young age because of their parents' divorce. unknowingly to their parents, the girls are sent to the same summer camp where they meet, discover the truth about themselves, and then plot with each other to switch places. Hallie meets her mother, and Annie meets her father for the first time in years.", "video": false, "id": 9820, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Parent Trap", "tagline": "Twice the Fun, Double the Trouble.", "vote_count": 150, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120783", "adult": false, "backdrop_path": "/edoD5Yt1jCeUqfxJmW2Yi1lwpvc.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-07-29", "popularity": 1.16703190191859, "original_title": "The Parent Trap", "budget": 0, "cast": [{"name": "Lindsay Lohan", "character": "Hallie Parker / Annie James", "id": 49265, "credit_id": "52fe4534c3a36847f80c1e97", "cast_id": 1, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Nick Parker", "id": 6065, "credit_id": "52fe4534c3a36847f80c1e9b", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Natasha Richardson", "character": "Elizabeth James", "id": 20162, "credit_id": "52fe4534c3a36847f80c1e9f", "cast_id": 3, "profile_path": "/eHBBsS6JLSEoLBi61nYfTs5t55u.jpg", "order": 2}, {"name": "Elaine Hendrix", "character": "Meredith Blake", "id": 55422, "credit_id": "52fe4534c3a36847f80c1ea3", "cast_id": 4, "profile_path": "/kY8CIfHp3h3u9xHN8dyZecyFK13.jpg", "order": 3}, {"name": "Lisa Ann Walter", "character": "Chessy", "id": 4494, "credit_id": "52fe4534c3a36847f80c1edd", "cast_id": 14, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 4}, {"name": "Simon Kunz", "character": "Martin", "id": 10701, "credit_id": "52fe4534c3a36847f80c1ee1", "cast_id": 15, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 5}, {"name": "Polly Holliday", "character": "Marva Kulp, Sr.", "id": 11715, "credit_id": "52fe4534c3a36847f80c1ee5", "cast_id": 16, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 6}, {"name": "Kat Graham", "character": "Jackie", "id": 159962, "credit_id": "52fe4534c3a36847f80c1ee9", "cast_id": 17, "profile_path": "/jefXlCOQrVILFeA43RhmuW4Bpbi.jpg", "order": 7}, {"name": "Lisa Iverson", "character": "Bugler", "id": 1106822, "credit_id": "52fe4534c3a36847f80c1ef3", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Lisa Cloud", "character": "Camp Counselor", "id": 152796, "credit_id": "52fe4534c3a36847f80c1ef7", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe4534c3a36847f80c1ea9", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 6.5, "runtime": 127}, "1637": {"poster_path": "/bDLiyoxdK8mZHaeYVOxMZj7WGkb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 350448145, "overview": "Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that's still not the end.", "video": false, "id": 1637, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Speed", "tagline": "Get ready for rush hour", "vote_count": 416, "homepage": "", "belongs_to_collection": {"backdrop_path": "/75mSNcKIkfZSjXDgytC8UFe6vBl.jpg", "poster_path": "/nK6q8iJYl39vVq8vmwR78CUDQp0.jpg", "id": 43064, "name": "Speed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111257", "adult": false, "backdrop_path": "/pGVpDc6MgLRtOYdxsA5fhj1SZki.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1994-06-09", "popularity": 1.38540263214528, "original_title": "Speed", "budget": 30000000, "cast": [{"name": "Keanu Reeves", "character": "Jack Traven", "id": 6384, "credit_id": "52fe4307c3a36847f8034f55", "cast_id": 2, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Sandra Bullock", "character": "Annie Porter", "id": 18277, "credit_id": "52fe4307c3a36847f8034f51", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "Howard Payne", "id": 2778, "credit_id": "52fe4307c3a36847f8034f5f", "cast_id": 4, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Jeff Daniels", "character": "Harold 'Harry' Temple", "id": 8447, "credit_id": "52fe4307c3a36847f8034f63", "cast_id": 5, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 3}, {"name": "Joe Morton", "character": "Capt. McMahon", "id": 3977, "credit_id": "52fe4307c3a36847f8034f9d", "cast_id": 15, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 4}, {"name": "Glenn Plummer", "character": "Jaguar Owner", "id": 2683, "credit_id": "52fe4307c3a36847f8034fa1", "cast_id": 16, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 5}, {"name": "Hawthorne James", "character": "Sam", "id": 12056, "credit_id": "52fe4307c3a36847f8034fa5", "cast_id": 17, "profile_path": "/i7PiUf2mN7zs3V78NPlF79nCOZ4.jpg", "order": 6}, {"name": "Carlos Carrasco", "character": "Ortiz", "id": 33712, "credit_id": "52fe4307c3a36847f8034fa9", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Beth Grant", "character": "Helen", "id": 5151, "credit_id": "52fe4307c3a36847f8034fad", "cast_id": 19, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 8}, {"name": "Richard Lineback", "character": "Norwood", "id": 3205, "credit_id": "52fe4307c3a36847f8034fb1", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Alan Ruck", "character": "Stephens", "id": 2394, "credit_id": "52fe4307c3a36847f8034fb5", "cast_id": 21, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 10}, {"name": "Jordan Lund", "character": "Bagwell", "id": 33713, "credit_id": "52fe4307c3a36847f8034fb9", "cast_id": 22, "profile_path": null, "order": 11}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f8034f5b", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 6.4, "runtime": 116}, "1632": {"poster_path": "/wyCAwfxVMLCxAoYAPgDY6biP9Qr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34604000, "overview": "Two FBI agents investigating the murder of civil rights workers during the 60s seek to breach the conspiracy of silence in a small Southern town where segregation divides black and white. The younger agent trained in FBI school runs up against the small town ways of his former Sheriff partner.", "video": false, "id": 1632, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mississippi Burning", "tagline": "", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095647", "adult": false, "backdrop_path": "/x2P5izOD98Kbun4e6ky0Jcq9lkl.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Orion Pictures", "id": 41}], "release_date": "1988-12-08", "popularity": 0.623176297997791, "original_title": "Mississippi Burning", "budget": 15000000, "cast": [{"name": "Gene Hackman", "character": "Agent Rupert Anderson", "id": 193, "credit_id": "52fe4306c3a36847f8034c2d", "cast_id": 1, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Agent Alan Ward", "id": 5293, "credit_id": "52fe4306c3a36847f8034c31", "cast_id": 2, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Frances McDormand", "character": "Mrs. Pell", "id": 3910, "credit_id": "52fe4306c3a36847f8034c35", "cast_id": 3, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 2}, {"name": "Brad Dourif", "character": "Deputy Clinton Pell", "id": 1370, "credit_id": "52fe4306c3a36847f8034c39", "cast_id": 4, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 3}, {"name": "R. Lee Ermey", "character": "Mayor Tilman", "id": 8655, "credit_id": "52fe4306c3a36847f8034c3d", "cast_id": 5, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 4}, {"name": "Gailard Sartain", "character": "Sheriff Ray Stuckey", "id": 2886, "credit_id": "52fe4306c3a36847f8034c59", "cast_id": 10, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Clayton Townley", "id": 537, "credit_id": "52fe4306c3a36847f8034c5d", "cast_id": 11, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Michael Rooker", "character": "Frank Bailey", "id": 12132, "credit_id": "52fe4306c3a36847f8034c61", "cast_id": 12, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 7}, {"name": "Pruitt Taylor Vince", "character": "Lester Cowens", "id": 3201, "credit_id": "52fe4306c3a36847f8034c65", "cast_id": 13, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 8}, {"name": "Badja Djola", "character": "Agent Monk", "id": 107009, "credit_id": "52fe4306c3a36847f8034c69", "cast_id": 14, "profile_path": "/i5j8WpNKydvBs2Vu3cYJyXNBy3V.jpg", "order": 9}, {"name": "Kevin Dunn", "character": "Agent Bird", "id": 14721, "credit_id": "52fe4306c3a36847f8034c6d", "cast_id": 15, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 10}, {"name": "Frankie Faison", "character": "Eulogist", "id": 13936, "credit_id": "52fe4306c3a36847f8034c71", "cast_id": 16, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 11}, {"name": "Tom Mason", "character": "Judge", "id": 80874, "credit_id": "52fe4306c3a36847f8034c75", "cast_id": 17, "profile_path": "/lWPITFNNJOoJprOoatAgfVRV9pH.jpg", "order": 12}, {"name": "Geoffrey Nauffts", "character": "Goatee", "id": 212797, "credit_id": "52fe4306c3a36847f8034c79", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Rick Zieff", "character": "Passenger", "id": 149500, "credit_id": "52fe4306c3a36847f8034c7d", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Christopher White", "character": "Black Passenger", "id": 553360, "credit_id": "52fe4306c3a36847f8034c81", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Tobin Bell", "character": "Agent Stokes", "id": 2144, "credit_id": "52fe4306c3a36847f8034c85", "cast_id": 21, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 16}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034c43", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.3, "runtime": 128}, "1633": {"poster_path": "/sSylBczl0MOu59jKWsEWAKZUD6g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80100000, "overview": "Amidst her own personality crisis, southern housewife Evelyn Couch meets Ninny, an outgoing old woman who tells her the story of Idgie Threadgoode and Ruth Jamison, two young women who experienced hardships and love in Whistle Stop, Alabama in the 1920s.", "video": false, "id": 1633, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Fried Green Tomatoes", "tagline": "The secret of life? The secret's in the sauce.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101921", "adult": false, "backdrop_path": "/z4Ausah3ytq9kX6ScjAE0jFkPdz.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1991-12-27", "popularity": 0.787711918955436, "original_title": "Fried Green Tomatoes", "budget": 0, "cast": [{"name": "Kathy Bates", "character": "Evelyn Couch", "id": 8534, "credit_id": "52fe4306c3a36847f8034c9f", "cast_id": 1, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 0}, {"name": "Mary-Louise Parker", "character": "Ruth Jamison", "id": 18248, "credit_id": "52fe4306c3a36847f8034ca3", "cast_id": 3, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 2}, {"name": "Jessica Tandy", "character": "Ninny Threadgoode", "id": 5698, "credit_id": "52fe4306c3a36847f8034ca7", "cast_id": 4, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 3}, {"name": "Cicely Tyson", "character": "Sipsey", "id": 18249, "credit_id": "52fe4306c3a36847f8034cab", "cast_id": 5, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 4}, {"name": "Mary Stuart Masterson", "character": "Idgie Threadgoode", "id": 31140, "credit_id": "52fe4306c3a36847f8034cc1", "cast_id": 10, "profile_path": "/cUsInuGkiBVcKIRJMRsmD52Sxx5.jpg", "order": 5}, {"name": "Chris O'Donnell", "character": "Buddy Threadgoode", "id": 5577, "credit_id": "52fe4306c3a36847f8034ccb", "cast_id": 12, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 6}, {"name": "Stan Shaw", "character": "Big George", "id": 16936, "credit_id": "5305afc492514134881741bf", "cast_id": 13, "profile_path": "/2KUPUQQFmc8Zyzf16uaiYmVrNvX.jpg", "order": 7}, {"name": "Gailard Sartain", "character": "Ed Couch", "id": 2886, "credit_id": "5305afcc925141348514c9b9", "cast_id": 14, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 8}, {"name": "Timothy Scott", "character": "Smokey Lonesome", "id": 83411, "credit_id": "5305afde9251413494182dbf", "cast_id": 15, "profile_path": "/yB5RGTuVXGfFBnlduvgSA0kT68m.jpg", "order": 9}, {"name": "Gary Basaraba", "character": "Grady Kilgore", "id": 96228, "credit_id": "5305afe9925141349a15e1a6", "cast_id": 16, "profile_path": "/mF3JQEIAUDIfNfrNdiAuh2ohFow.jpg", "order": 10}, {"name": "Lois Smith", "character": "Mama Threadgoode", "id": 2207, "credit_id": "5305aff29251413488174498", "cast_id": 17, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 11}, {"name": "Jo Harvey Allen", "character": "Woman's Awareness Teacher", "id": 71561, "credit_id": "5305affd925141349a15e20e", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Fannie Flagg", "character": "Teacher", "id": 18251, "credit_id": "5305b00c92514134a215559b", "cast_id": 19, "profile_path": "/nelYB0M6WvF7uwArMwhYJZZkyjv.jpg", "order": 13}, {"name": "Suzi Bass", "character": "nurse", "id": 1448835, "credit_id": "551d8bd2925141374f0008db", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Tom Even", "character": "Judge", "id": 1448920, "credit_id": "551dc55a925141374f0010a2", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Afton Smith", "character": "Leona Threadgoode", "id": 1448921, "credit_id": "551dc617925141173f000c46", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "Jon Avnet", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034cb1", "profile_path": "/ckcE5lD7KNCh6iYHwCbfbs4r2y2.jpg", "id": 18250}], "vote_average": 7.1, "runtime": 130}, "1634": {"poster_path": "/5Os6y44EBABDl55oM6Fu3g1bCsU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 153698625, "overview": "When a boy learns that a beloved killer whale is to be killed by the aquarium owners, the boy risks everything to free the whale.", "video": false, "id": 1634, "genres": [{"id": 12, "name": "Adventure"}, {"id": 10751, "name": "Family"}], "title": "Free Willy", "tagline": "How far would you go for a friend?", "vote_count": 87, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o0dT5gJscrmt0etGcXEJgIDsjMN.jpg", "poster_path": "/3M2Q9ZDTyFBfi3ohz2gizFmnoL0.jpg", "id": 9328, "name": "Free Willy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106965", "adult": false, "backdrop_path": "/7CNgefk746czQzTVqSuf8yYQxOS.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Canal+", "id": 5358}, {"name": "Regency Enterprises", "id": 508}, {"name": "Alcor Films", "id": 644}, {"name": "Donner/Shuler-Donner Productions", "id": 23397}], "release_date": "1993-07-16", "popularity": 1.0054587038446, "original_title": "Free Willy", "budget": 20000000, "cast": [{"name": "Jason James Richter", "character": "Jesse", "id": 18259, "credit_id": "52fe4306c3a36847f8034d41", "cast_id": 11, "profile_path": "/sdFFQNefNEfiFiyIL8Sz6IweUkM.jpg", "order": 0}, {"name": "Lori Petty", "character": "Rae Lindley", "id": 15309, "credit_id": "52fe4306c3a36847f8034d45", "cast_id": 12, "profile_path": "/u2D3zteSlOj4zLp7jBcGqQVBsR1.jpg", "order": 1}, {"name": "August Schellenberg", "character": "Randolph Johnson", "id": 18260, "credit_id": "52fe4306c3a36847f8034d49", "cast_id": 13, "profile_path": "/iZ7dQ3JMdrWoUyh4vB8vOxhqoSI.jpg", "order": 2}, {"name": "Michael Madsen", "character": "Glen Greenwood", "id": 147, "credit_id": "52fe4306c3a36847f8034d4d", "cast_id": 14, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 3}, {"name": "Jayne Atkinson", "character": "Annie Greenwood", "id": 18261, "credit_id": "52fe4306c3a36847f8034d51", "cast_id": 15, "profile_path": "/Ae4wkn9x4JABoFWlNtdABYv2uol.jpg", "order": 4}, {"name": "Michael Ironside", "character": "Dial", "id": 11086, "credit_id": "52fe4306c3a36847f8034d55", "cast_id": 16, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 5}, {"name": "Richard Riehle", "character": "Wade", "id": 18262, "credit_id": "52fe4306c3a36847f8034d59", "cast_id": 17, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 6}, {"name": "Mykelti Williamson", "character": "Dwight Mercer", "id": 34, "credit_id": "52fe4306c3a36847f8034d63", "cast_id": 19, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 7}, {"name": "Michael Bacall", "character": "Perry", "id": 58744, "credit_id": "52fe4306c3a36847f8034d67", "cast_id": 20, "profile_path": "/vAqUOjmjY1ALiTRlYu7BI3yWmuK.jpg", "order": 8}, {"name": "Danielle Harris", "character": "Gwenie", "id": 21320, "credit_id": "52fe4306c3a36847f8034d6b", "cast_id": 21, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 9}, {"name": "Isaiah Malone", "character": "Vector", "id": 1075075, "credit_id": "52fe4306c3a36847f8034d6f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Betsy Toll", "character": "Passerby #1", "id": 1075076, "credit_id": "52fe4306c3a36847f8034d73", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Rob Sample", "character": "Passerby #2", "id": 1075077, "credit_id": "52fe4306c3a36847f8034d77", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Merrilyn Jones", "character": "Passerby #3", "id": 1075078, "credit_id": "52fe4306c3a36847f8034d7b", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Mickey Gaines", "character": "Waiter", "id": 1075079, "credit_id": "52fe4306c3a36847f8034d7f", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Simon Wincer", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034d07", "profile_path": "/wikOUmNuvWJHcOU8EHjFHXUhafQ.jpg", "id": 18254}], "vote_average": 5.4, "runtime": 112}, "1635": {"poster_path": "/erprD7GIkvZz2KM4Z35eyTJKZMI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162949164, "overview": "Lincoln Six-Echo is a resident of a seemingly Utopian but contained facility in the year 2019. Like all of the inhabitants of this carefully controlled environment, Lincoln hopes to be chosen to go to the \"The Island\" - reportedly the last uncontaminated spot on the planet. But Lincoln soon discovers that everything about his existence is a lie. He and all of the other inhabitants of the facility are actually human clones. Lincoln makes a daring escape with a beautiful fellow resident named Jordan Two-Delta. Relentlessly pursued by the forces of the sinister institute that once housed them, Lincoln and Jordan engage in a race for their lives to literally meet their makers.", "video": false, "id": 1635, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Island", "tagline": "Your time will come...", "vote_count": 500, "homepage": "http://www.theisland-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0399201", "adult": false, "backdrop_path": "/tIhBqptRne64WgPMVOpkXvTPl8c.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Warner Bros.", "id": 6194}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2005-07-21", "popularity": 0.873324739173529, "original_title": "The Island", "budget": 126000000, "cast": [{"name": "Ewan McGregor", "character": "Lincoln Six Echo", "id": 3061, "credit_id": "52fe4306c3a36847f8034dd7", "cast_id": 5, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Jordan Two Delta", "id": 1245, "credit_id": "52fe4306c3a36847f8034e27", "cast_id": 21, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Djimon Hounsou", "character": "Albert Laurent", "id": 938, "credit_id": "52fe4306c3a36847f8034ddb", "cast_id": 7, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 2}, {"name": "Sean Bean", "character": "Dr. Merrick", "id": 48, "credit_id": "52fe4306c3a36847f8034ddf", "cast_id": 8, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "James 'Mac' McCord", "id": 884, "credit_id": "52fe4306c3a36847f8034de3", "cast_id": 9, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Michael Clarke Duncan", "character": "Starkweather Two Delta", "id": 61981, "credit_id": "52fe4306c3a36847f8034de7", "cast_id": 10, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 5}, {"name": "Ethan Phillips", "character": "Jones Three Echo", "id": 29445, "credit_id": "52fe4306c3a36847f8034e2b", "cast_id": 22, "profile_path": "/clvz59hE09gV2a3FYNBsjUPvPgz.jpg", "order": 6}, {"name": "Brian Stepanek", "character": "Gandu Three Echo", "id": 146391, "credit_id": "52fe4306c3a36847f8034e2f", "cast_id": 23, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 7}, {"name": "Noa Tishby", "character": "Community Announcer", "id": 154968, "credit_id": "52fe4306c3a36847f8034e33", "cast_id": 24, "profile_path": "/yqVIJsBE7f60zLxN7ka9JdNy2SE.jpg", "order": 8}, {"name": "Siobhan Flynn", "character": "Lima One Alpha", "id": 154684, "credit_id": "52fe4306c3a36847f8034e37", "cast_id": 25, "profile_path": "/AtVes0zJzEKaFs2mOnk8BihtZmS.jpg", "order": 9}, {"name": "Troy Blendell", "character": "Laurent Team Member", "id": 154742, "credit_id": "52fe4306c3a36847f8034e3b", "cast_id": 26, "profile_path": "/16XijhmyffniTB7X7DhmKnekNP.jpg", "order": 10}, {"name": "Jamie McBride", "character": "Laurent Team Member", "id": 18053, "credit_id": "52fe4306c3a36847f8034e3f", "cast_id": 27, "profile_path": "/AduUFJhXPzR6WvYV5RyBS56YdKB.jpg", "order": 11}, {"name": "Kevin McCorkle", "character": "Laurent Team Member", "id": 91658, "credit_id": "52fe4306c3a36847f8034e43", "cast_id": 28, "profile_path": "/9AHkmDvct03YJN8Wes3rsowZMOK.jpg", "order": 12}, {"name": "Gary Nickens", "character": "Laurent Team Member", "id": 1286657, "credit_id": "52fe4306c3a36847f8034e47", "cast_id": 29, "profile_path": "/zFi87EEyy24d2NdZOoORWcwgeYi.jpg", "order": 13}, {"name": "Kathleen Rose Perkins", "character": "Laurent Team Member", "id": 149334, "credit_id": "52fe4306c3a36847f8034e4b", "cast_id": 30, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 14}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034dc1", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.4, "runtime": 136}, "1636": {"poster_path": "/wNCPhozZKIFXf9gjdckDHFAADbS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90383208, "overview": "Elliot Richardson, suicidal techno geek, is given seven wishes to turn his life around when he meets up with a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil must put her own little twist on each his fantasies.", "video": false, "id": 1636, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Bedazzled", "tagline": "Meet the Devil. She's giving Elliott seven wishes. But not a chance in Hell.", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0230030", "adult": false, "backdrop_path": "/wWXpqD4DpYu8YYJXbdhc1xGvkN0.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2000-10-19", "popularity": 1.46736857021151, "original_title": "Bedazzled", "budget": 48000000, "cast": [{"name": "Elizabeth Hurley", "character": "The Devil", "id": 13918, "credit_id": "52fe4306c3a36847f8034ea3", "cast_id": 5, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 0}, {"name": "Brendan Fraser", "character": "Elliot", "id": 18269, "credit_id": "52fe4306c3a36847f8034ea7", "cast_id": 6, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 1}, {"name": "Frances O'Connor", "character": "Alison", "id": 1518, "credit_id": "52fe4306c3a36847f8034eab", "cast_id": 7, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 2}, {"name": "Orlando Jones", "character": "Daniel/Dan/Danny, Esteban, Beach Jock, Lamar Garrett, Dr. Ngegitigegitibaba", "id": 18270, "credit_id": "52fe4306c3a36847f8034eaf", "cast_id": 8, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 3}, {"name": "Paul Adelstein", "character": "Bob/Roberto/Beach Jock", "id": 17342, "credit_id": "52fe4306c3a36847f8034eb3", "cast_id": 9, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 4}, {"name": "Toby Huss", "character": "Jerry/Alejandro/Beach Jock/Jerry Turner", "id": 18271, "credit_id": "52fe4306c3a36847f8034eb7", "cast_id": 10, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 5}, {"name": "Gabriel Casseus", "character": "Angel", "id": 18272, "credit_id": "52fe4306c3a36847f8034ebb", "cast_id": 11, "profile_path": "/pAp9Rhl0X3kpNlk0ms0lDpQrPDF.jpg", "order": 6}, {"name": "Miriam Shor", "character": "Carol/Penthouse Hostess", "id": 18273, "credit_id": "52fe4307c3a36847f8034ebf", "cast_id": 12, "profile_path": "/4UG6dUvA9QVigbrqQxRIP3veLGy.jpg", "order": 7}, {"name": "Brian Doyle-Murray", "character": "Priest", "id": 1535, "credit_id": "52fe4307c3a36847f8034f17", "cast_id": 27, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 8}, {"name": "Jeff Doucette", "character": "Desk Sergeant", "id": 35367, "credit_id": "52fe4307c3a36847f8034f1b", "cast_id": 28, "profile_path": "/eqeJstBl5iRibx7KxT4SMsmA2QK.jpg", "order": 9}, {"name": "Aaron Lustig", "character": "Synedyne Supervisor", "id": 140237, "credit_id": "52fe4307c3a36847f8034f1f", "cast_id": 29, "profile_path": "/3Ay4BadhJtyTWxhOwxvryHkE3dj.jpg", "order": 10}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe4306c3a36847f8034e8d", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 5.4, "runtime": 93}, "9829": {"poster_path": "/hmjqDkvdsiRU5DchivRAL2D82rC.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76286096, "overview": "A real time account of the events on United Flight 93, one of the planes hijacked on 9/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.", "video": false, "id": 9829, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "United 93", "tagline": "September 11, 2001. Four planes were hijacked. Three of them reached their target. This is the story of the fourth.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0475276", "adult": false, "backdrop_path": "/nhcWkiaZb6xoMIJc4IkyyeI6WNs.jpg", "production_companies": [{"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Working Title Films", "id": 10163}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}], "release_date": "2006-04-28", "popularity": 0.773207592668825, "original_title": "United 93", "budget": 15000000, "cast": [{"name": "J.J. Johnson", "character": "Captain Jason Dahl", "id": 6569, "credit_id": "52fe4536c3a36847f80c24f9", "cast_id": 25, "profile_path": null, "order": 0}, {"name": "Polly Adams", "character": "Deborah Welsh", "id": 47538, "credit_id": "52fe4536c3a36847f80c24fd", "cast_id": 26, "profile_path": "/gCOMppcfjT2o3efRNylXnUMFtLM.jpg", "order": 1}, {"name": "Trish Gates", "character": "Sandra Bradshaw", "id": 59688, "credit_id": "52fe4536c3a36847f80c250d", "cast_id": 29, "profile_path": "/yttAtDyga7U3t3OsICsJBcfjhQN.jpg", "order": 2}, {"name": "Nancy McDoniel", "character": "Lorraine G. Bay", "id": 59689, "credit_id": "52fe4536c3a36847f80c2511", "cast_id": 30, "profile_path": "/wJAolA8rdvBJyPGqGekLexbjNBF.jpg", "order": 3}, {"name": "Opal Alladin", "character": "CeeCee Lyles", "id": 59686, "credit_id": "52fe4536c3a36847f80c2515", "cast_id": 31, "profile_path": "/6Az60ac11hAaEbrglgtGsoedrSc.jpg", "order": 4}, {"name": "Gary Commock", "character": "First Officer LeRoy Homer", "id": 59685, "credit_id": "52fe4536c3a36847f80c251d", "cast_id": 33, "profile_path": null, "order": 5}, {"name": "Starla Benford", "character": "Wanda Anita Green", "id": 59687, "credit_id": "52fe4536c3a36847f80c2519", "cast_id": 32, "profile_path": null, "order": 6}, {"name": "Susan Blommaert", "character": "Jane Folger", "id": 1913, "credit_id": "52fe4536c3a36847f80c2521", "cast_id": 34, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 7}, {"name": "David Alan Basche", "character": "Todd Beamer", "id": 59690, "credit_id": "52fe4536c3a36847f80c2525", "cast_id": 35, "profile_path": "/vICP7XLQ1JEbf51WtcX1mnzB9x9.jpg", "order": 8}, {"name": "Richard Bekins", "character": "William Joseph Cashman", "id": 59691, "credit_id": "52fe4536c3a36847f80c2529", "cast_id": 36, "profile_path": "/zNn7lSWpuiWIUriG48GfO6OzSLS.jpg", "order": 9}, {"name": "Christian Clemenson", "character": "Thomas E. Burnett, Jr.", "id": 41517, "credit_id": "52fe4536c3a36847f80c252d", "cast_id": 37, "profile_path": "/kOBGt4dTtOSHoR2QzRTIOlGpO0V.jpg", "order": 10}, {"name": "Liza Col\u00f3n-Zayas", "character": "Waleska Martinez", "id": 59693, "credit_id": "52fe4536c3a36847f80c2531", "cast_id": 38, "profile_path": null, "order": 11}, {"name": "Ray Charleson", "character": "Joseph DeLuca", "id": 59692, "credit_id": "52fe4536c3a36847f80c2535", "cast_id": 39, "profile_path": null, "order": 12}, {"name": "Denny Dillon", "character": "Colleen Fraser", "id": 59695, "credit_id": "52fe4536c3a36847f80c2539", "cast_id": 40, "profile_path": "/rc67RDrAKtN0qWBkB2AzXAxztHr.jpg", "order": 13}, {"name": "Peter Hermann", "character": "Jeremy Glick", "id": 50117, "credit_id": "52fe4536c3a36847f80c253d", "cast_id": 41, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 14}, {"name": "Lorna Dallas", "character": "Linda Gronlund", "id": 59694, "credit_id": "52fe4536c3a36847f80c2541", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Kate Jennings Grant", "character": "Lauren Catuzzi Grandcolas", "id": 59697, "credit_id": "52fe4536c3a36847f80c2545", "cast_id": 43, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 16}, {"name": "Trieste Kelly Dunn", "character": "Deora Frances Bodley", "id": 59696, "credit_id": "52fe4536c3a36847f80c2549", "cast_id": 44, "profile_path": "/cS5GnzuM7Le5ihYSY8RxGvvxL7J.jpg", "order": 17}, {"name": "Tara Hugo", "character": "Kristin White Gould", "id": 59698, "credit_id": "52fe4536c3a36847f80c254d", "cast_id": 45, "profile_path": null, "order": 18}, {"name": "Marceline Hugot", "character": "Georgine Rose Corrigan", "id": 54124, "credit_id": "52fe4536c3a36847f80c2551", "cast_id": 46, "profile_path": "/7WxTQBruJR8IqKZ5ui6D4kPH1Yy.jpg", "order": 19}, {"name": "Khalid Abdalla", "character": "Ziad Jarrah", "id": 53480, "credit_id": "52fe4536c3a36847f80c255b", "cast_id": 48, "profile_path": "/hGeH9kjx7vRxeLi7yTz8zxPcRMF.jpg", "order": 20}, {"name": "Olivia Thirlby", "character": "Nicole Carol Miller", "id": 52442, "credit_id": "52fe4536c3a36847f80c2565", "cast_id": 50, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 21}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe4535c3a36847f80c2483", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 6.6, "runtime": 111}, "1639": {"poster_path": "/iHktqeAGoJpENiiuXfsXaHmhr7D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164508066, "overview": "Sandra Bullock and Jason Patric star as a young couple whose dream cruise turns to terror when a lunatic computer genius (Willem Dafoe) sets a new course for destruction.", "video": false, "id": 1639, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Speed 2: Cruise Control", "tagline": "As the stakes get higher, the ride gets even faster.", "vote_count": 114, "homepage": "", "belongs_to_collection": {"backdrop_path": "/75mSNcKIkfZSjXDgytC8UFe6vBl.jpg", "poster_path": "/nK6q8iJYl39vVq8vmwR78CUDQp0.jpg", "id": 43064, "name": "Speed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120179", "adult": false, "backdrop_path": "/uWsnvyQjD5QIbBzgDce20gYwCZG.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1997-06-12", "popularity": 0.536780927463135, "original_title": "Speed 2: Cruise Control", "budget": 160000000, "cast": [{"name": "Sandra Bullock", "character": "Annie Porter", "id": 18277, "credit_id": "52fe4307c3a36847f8034fd3", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Jason Patric", "character": "Alex Shaw", "id": 12261, "credit_id": "52fe4307c3a36847f8034fd7", "cast_id": 2, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "John Geiger", "id": 5293, "credit_id": "52fe4307c3a36847f8034fdb", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Temuera Morrison", "character": "Juliano", "id": 7242, "credit_id": "52fe4307c3a36847f8034fdf", "cast_id": 4, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 3}, {"name": "Christine Firkins", "character": "Drew", "id": 18279, "credit_id": "52fe4307c3a36847f8034fe3", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Mike Hagerty", "character": "Harvey", "id": 15105, "credit_id": "52fe4307c3a36847f8034fe7", "cast_id": 6, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 5}, {"name": "Colleen Camp", "character": "Debbie", "id": 13023, "credit_id": "52fe4307c3a36847f8034feb", "cast_id": 7, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 6}, {"name": "Brian McCardie", "character": "Merced", "id": 18280, "credit_id": "52fe4307c3a36847f8034fef", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Joe Morton", "character": "Lt. Herb 'Mac' McMahon", "id": 3977, "credit_id": "54efb5a4c3a3686d58006896", "cast_id": 11, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 8}, {"name": "Michael O'Hagan", "character": "Supertanker Captain", "id": 53490, "credit_id": "54efb5d1c3a36869e50044b9", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Glenn Plummer", "character": "Maurice", "id": 2683, "credit_id": "54efb5f6925141795f006ec4", "cast_id": 13, "profile_path": "/s0Dwke7OKL8Yhk2WalJm4ntP51A.jpg", "order": 10}, {"name": "Bo Svenson", "character": "Captain Pollard", "id": 30044, "credit_id": "54efb61d925141796e006b4f", "cast_id": 14, "profile_path": "/ow0pxYqX94ZmfKDCiMN2qzhtOe3.jpg", "order": 11}, {"name": "Kimmy Robertson", "character": "Liza (Cruise Director)", "id": 6727, "credit_id": "54efb64ec3a3682e9700004a", "cast_id": 15, "profile_path": "/84VDsSuF0F5HgLpP6OoqjGdVlrA.jpg", "order": 12}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f8034ff5", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 4.4, "runtime": 121}, "1640": {"poster_path": "/pG8LL4LYMCr5uikhx9rewrW8352.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98410061, "overview": "Los Angeles citizens with vastly separate lives collide in interweaving stories of race, loss and redemption.", "video": false, "id": 1640, "genres": [{"id": 18, "name": "Drama"}], "title": "Crash", "tagline": "You think you know who you are. You have no idea.", "vote_count": 378, "homepage": "http://www.crashfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0375679", "adult": false, "backdrop_path": "/lhkU86q5cszZkca9MVQLMvUAE6m.jpg", "production_companies": [{"name": "Yari Film Group", "id": 2448}, {"name": "Blackfriars Bridge Films", "id": 2087}, {"name": "Bob Yari Productions", "id": 12260}, {"name": "ApolloProScreen Filmproduktion", "id": 19528}, {"name": "Bull's Eye Entertainment", "id": 25432}, {"name": "DEJ Productions", "id": 25433}, {"name": "Harris Company", "id": 25434}], "release_date": "2004-09-10", "popularity": 0.670102419670227, "original_title": "Crash", "budget": 6500000, "cast": [{"name": "Sandra Bullock", "character": "Jean Cabot", "id": 18277, "credit_id": "52fe4307c3a36847f803503d", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Don Cheadle", "character": "Det. Graham Waters", "id": 1896, "credit_id": "52fe4307c3a36847f8035041", "cast_id": 4, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Officer John Ryan", "id": 2876, "credit_id": "52fe4307c3a36847f8035049", "cast_id": 8, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Daniel", "id": 454, "credit_id": "52fe4307c3a36847f8035045", "cast_id": 7, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Jennifer Esposito", "character": "Ria", "id": 18285, "credit_id": "52fe4307c3a36847f803504d", "cast_id": 10, "profile_path": "/faY5fwjsJ8da3wJWSE7kQ3MPhgz.jpg", "order": 4}, {"name": "Brendan Fraser", "character": "Rick Cabot", "id": 18269, "credit_id": "52fe4307c3a36847f8035051", "cast_id": 11, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 5}, {"name": "Nona Gaye", "character": "Karen", "id": 18286, "credit_id": "52fe4307c3a36847f8035055", "cast_id": 12, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 6}, {"name": "Terrence Howard", "character": "Cameron Thayer", "id": 18288, "credit_id": "52fe4307c3a36847f8035059", "cast_id": 14, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 7}, {"name": "Ludacris", "character": "Anthony", "id": 8171, "credit_id": "52fe4307c3a36847f803505d", "cast_id": 15, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 8}, {"name": "Thandie Newton", "character": "Christine Thayer", "id": 9030, "credit_id": "52fe4307c3a36847f8035061", "cast_id": 16, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 9}, {"name": "Ashlyn Sanchez", "character": "Lara", "id": 18290, "credit_id": "52fe4307c3a36847f8035065", "cast_id": 18, "profile_path": "/flE8FT2vKQDCHp1C3sTB17bZQEg.jpg", "order": 10}, {"name": "Marina Sirtis", "character": "Shereen", "id": 2393, "credit_id": "52fe4307c3a36847f8035069", "cast_id": 19, "profile_path": "/ueHzqv6uN6Mhf1DC3IjTPhNafYq.jpg", "order": 11}, {"name": "Larenz Tate", "character": "Peter Waters", "id": 18291, "credit_id": "52fe4307c3a36847f803506d", "cast_id": 20, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 12}, {"name": "Beverly Todd", "character": "Graham's Mother", "id": 18292, "credit_id": "52fe4307c3a36847f8035071", "cast_id": 21, "profile_path": "/zAorVHFs2eP3YQ91pNbDeMwfymi.jpg", "order": 13}, {"name": "Kathleen York", "character": "Officer Johnson", "id": 18293, "credit_id": "52fe4307c3a36847f8035075", "cast_id": 23, "profile_path": "/9tpL5j3Ba6yewjIwohTQxZtt1gM.jpg", "order": 14}, {"name": "Keith David", "character": "Lt. Dixon", "id": 65827, "credit_id": "52fe4307c3a36847f8035079", "cast_id": 29, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 15}, {"name": "William Fichtner", "character": "Flanagan", "id": 886, "credit_id": "52fe4307c3a36847f803507d", "cast_id": 32, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 16}, {"name": "Daniel Dae Kim", "character": "Park", "id": 18307, "credit_id": "52fe4307c3a36847f8035081", "cast_id": 36, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 17}, {"name": "Ryan Phillippe", "character": "Officer Tom Hansen", "id": 11864, "credit_id": "52fe4307c3a36847f8035085", "cast_id": 37, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 18}, {"name": "Karina Arroyave", "character": "Elizabeth", "id": 18282, "credit_id": "53a1c0940e0a266ff7000207", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Dato Bakhtadze", "character": "Lucien", "id": 18283, "credit_id": "53a1c0bc0e0a266fe60001ff", "cast_id": 44, "profile_path": "/icfjC4D6saHKCMXhoEUoK3mngzL.jpg", "order": 20}, {"name": "Art Chudabala", "character": "Ken Ho", "id": 18296, "credit_id": "53a1c0e60e0a266ffa000218", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Sean Cory", "character": "Motorcycle Cop", "id": 1331784, "credit_id": "53a1c1150e0a266ffe0001fe", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Tony Danza", "character": "Fred", "id": 18298, "credit_id": "53a1c1440e0a266fe6000210", "cast_id": 47, "profile_path": "/zuGqT0ZJQFm0GMUnEa32jYu75Fy.jpg", "order": 23}, {"name": "Loretta Devine", "character": "Shaniqua Johnson", "id": 18284, "credit_id": "53a1c1740e0a266ffa00022e", "cast_id": 48, "profile_path": "/zLQFwQTFtHkb8sbFdkPNamFI7jv.jpg", "order": 24}, {"name": "Ime Etuk", "character": "Georgie", "id": 18299, "credit_id": "53a1c1a60e0a266ff7000244", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Eddie J. Fernandez", "character": "Officer Gomez", "id": 18300, "credit_id": "53a1c1d20e0a266ff3000202", "cast_id": 50, "profile_path": null, "order": 26}, {"name": "William Fichtner", "character": "Flanagan", "id": 886, "credit_id": "53a1c1f80e0a266ffa000246", "cast_id": 51, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 27}, {"name": "Howard Fong", "character": "Store Owner", "id": 18303, "credit_id": "53a1c2160e0a266ffa00024f", "cast_id": 52, "profile_path": null, "order": 28}, {"name": "Billy Gallo", "character": "Officer Hill", "id": 18304, "credit_id": "53a1c23e0e0a266ffe000240", "cast_id": 53, "profile_path": null, "order": 29}, {"name": "Ken Garito", "character": "Bruce", "id": 18287, "credit_id": "53a1c2600e0a266ff3000212", "cast_id": 54, "profile_path": null, "order": 30}, {"name": "Octavio G\u00f3mez Berr\u00edos", "character": "Hispanic Passenger", "id": 130732, "credit_id": "53a1c2870e0a266fec000271", "cast_id": 55, "profile_path": null, "order": 31}, {"name": "James Haggis", "character": "Lara's Friend", "id": 1331790, "credit_id": "53a1c2a50e0a266ff300021d", "cast_id": 56, "profile_path": null, "order": 32}, {"name": "Sylva Kelegian", "character": "Nurse Hodges", "id": 61830, "credit_id": "53a1c2cd0e0a266ff3000224", "cast_id": 57, "profile_path": "/iY60KVSUGrItgKCMsJqarczgzqU.jpg", "order": 33}, {"name": "Jayden Lund", "character": "Security Guard", "id": 154932, "credit_id": "53a1c32e0e0a266ff3000229", "cast_id": 59, "profile_path": null, "order": 35}, {"name": "Jack McGee", "character": "Gun Store Owner", "id": 10489, "credit_id": "53a1c34f0e0a266ff700027f", "cast_id": 60, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 36}, {"name": "Amanda Moresco", "character": "First Assistant Director", "id": 1110185, "credit_id": "53a1c36a0e0a266fef000275", "cast_id": 61, "profile_path": null, "order": 37}, {"name": "Martin Norseman", "character": "Conklin", "id": 1331791, "credit_id": "53a1c39b0e0a266ff7000290", "cast_id": 62, "profile_path": null, "order": 38}, {"name": "Joe Ordaz", "character": "Hispanic Driver", "id": 1331792, "credit_id": "53a1c3b80e0a266fec000295", "cast_id": 63, "profile_path": null, "order": 39}, {"name": "Greg Joung Paik", "character": "Choi", "id": 191198, "credit_id": "53a1c3d60e0a266ffe000270", "cast_id": 64, "profile_path": "/n3jIHCx5LAbfAVZfOW4WMxjKKui.jpg", "order": 40}, {"name": "Yomi Perry", "character": "Maria", "id": 18289, "credit_id": "53a1c4000e0a266fe600026e", "cast_id": 65, "profile_path": null, "order": 41}, {"name": "Alexis Rhee", "character": "Kim Lee", "id": 58930, "credit_id": "53a1c43e0e0a266fec0002aa", "cast_id": 66, "profile_path": "/vu4RAoiD4eXXt0KRA882IwmZQAE.jpg", "order": 42}, {"name": "Molly Schaffer", "character": "Woman at Locksmith's", "id": 1331793, "credit_id": "53a1c4690e0a266fec0002b1", "cast_id": 67, "profile_path": null, "order": 43}, {"name": "Paul E. Short", "character": "Officer Stone", "id": 1331794, "credit_id": "53a1c4950e0a266ff3000266", "cast_id": 68, "profile_path": null, "order": 44}, {"name": "Bahar Soomekh", "character": "Dorri", "id": 2677, "credit_id": "53a1c4c00e0a266ffe00028e", "cast_id": 69, "profile_path": "/l3tlQiTmny4jjWidesht3nlt6sW.jpg", "order": 45}, {"name": "Allan Steele", "character": "Paramedic", "id": 1331795, "credit_id": "53a1c4dc0e0a266fe600028b", "cast_id": 70, "profile_path": null, "order": 46}, {"name": "Kate Super", "character": "Receptionist", "id": 1331796, "credit_id": "53a1c4f40e0a266fec0002c6", "cast_id": 71, "profile_path": null, "order": 47}, {"name": "Glenn Taranto", "character": "Country DJ (voice)", "id": 18305, "credit_id": "53a1c51e0e0a266ff70002ce", "cast_id": 72, "profile_path": "/kZfmHgAOYHprU9Iq30W7oTx9M7Y.jpg", "order": 48}, {"name": "Shaun Toub", "character": "Farhad", "id": 17857, "credit_id": "53a1c5490e0a266fe600029f", "cast_id": 73, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 49}, {"name": "Curt Clendenin", "character": "Carjack Witness (uncredited)", "id": 1263449, "credit_id": "53a1c5780e0a266fec0002df", "cast_id": 74, "profile_path": null, "order": 50}, {"name": "Alastair Douglas", "character": "Young Peter (uncredited)", "id": 1331797, "credit_id": "53a1c5950e0a266ff70002d8", "cast_id": 75, "profile_path": null, "order": 51}, {"name": "Nicholas George Stark", "character": "Jamal (uncredited)", "id": 1331798, "credit_id": "53a1c5b00e0a266ff300028d", "cast_id": 76, "profile_path": null, "order": 52}, {"name": "Bruce Kirby", "character": "Pop Ryan", "id": 3042, "credit_id": "55127c71c3a3686161000f3a", "cast_id": 77, "profile_path": null, "order": 53}], "directors": [{"name": "Paul Haggis", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f8035033", "profile_path": "/v2MadHJVrBAv0tEgs9H9PJ9y50z.jpg", "id": 455}], "vote_average": 7.0, "runtime": 112}, "9833": {"poster_path": "/oJc4DICMlyowwc45j0SQBmvGdTe.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51225796, "overview": "Deformed since birth, a bitter man known only as the Phantom lives in the sewers underneath the Paris Opera House. He falls in love with the obscure chorus singer Christine, and privately tutors her while terrorizing the rest of the opera house and demanding Christine be given lead roles. Things get worse when Christine meets back up with her childhood acquaintance Raoul and the two fall in love", "video": false, "id": 9833, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Phantom of the Opera", "tagline": "The classic musical comes to the big screen for the first time.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0293508", "adult": false, "backdrop_path": "/haD1lZ822cAi3DPiyGs4r5Y7vi6.jpg", "production_companies": [{"name": "Really Useful Films", "id": 38504}, {"name": "Odyssey Entertainment", "id": 3539}, {"name": "Warner Bros.", "id": 6194}, {"name": "Scion Films", "id": 7419}], "release_date": "2004-12-10", "popularity": 0.960714644287957, "original_title": "The Phantom of the Opera", "budget": 55000000, "cast": [{"name": "Gerard Butler", "character": "The Phantom", "id": 17276, "credit_id": "52fe4536c3a36847f80c27a9", "cast_id": 1, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Emmy Rossum", "character": "Christine Daa\u00e9", "id": 4730, "credit_id": "52fe4536c3a36847f80c27ad", "cast_id": 2, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 1}, {"name": "Patrick Wilson", "character": "Raoul, Vicomte de Chagny", "id": 17178, "credit_id": "52fe4536c3a36847f80c27b1", "cast_id": 3, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 2}, {"name": "Miranda Richardson", "character": "Madame Giry", "id": 8436, "credit_id": "52fe4537c3a36847f80c27b5", "cast_id": 4, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 3}, {"name": "Minnie Driver", "character": "Carlotta", "id": 6613, "credit_id": "52fe4537c3a36847f80c27cb", "cast_id": 10, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 4}, {"name": "Ciar\u00e1n Hinds", "character": "Firmin", "id": 8785, "credit_id": "52fe4537c3a36847f80c27cf", "cast_id": 11, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 5}, {"name": "Simon Callow", "character": "Andre", "id": 4001, "credit_id": "52fe4537c3a36847f80c27d3", "cast_id": 12, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 6}, {"name": "Victor McGuire", "character": "Piangi", "id": 4318, "credit_id": "52fe4537c3a36847f80c27d7", "cast_id": 13, "profile_path": "/czEQ0XdYIURxBfdiAdGXS6KAWea.jpg", "order": 7}, {"name": "Jennifer Ellison", "character": "Meg Giry", "id": 106049, "credit_id": "52fe4537c3a36847f80c27e1", "cast_id": 15, "profile_path": "/66LQrmv0L2MUkxqcToEM4moJQlp.jpg", "order": 8}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c27bb", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.9, "runtime": 143}, "1642": {"poster_path": "/gKDNaAFzT21cSVeKQop7d1uhoSp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110627965, "overview": "Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a CD-ROM game, she discovers a conspiracy that will turn her life upside down. Soon, her records have been erased, and she's been given a new identity and a police record. Her vacation is ruined as she struggles to determine why she's been deleted from society.", "video": false, "id": 1642, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Net", "tagline": "Her driver's license. Her credit cards. Her bank accounts. Her identity. DELETED.", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 328073, "name": "The Net Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0113957", "adult": false, "backdrop_path": "/uBqa8nPu3HUtfSHtWqo7VhYG0Uc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1995-07-28", "popularity": 1.01359357341186, "original_title": "The Net", "budget": 22000000, "cast": [{"name": "Sandra Bullock", "character": "Angela Bennett/Ruth Marx", "id": 18277, "credit_id": "52fe4307c3a36847f8035193", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Jeremy Northam", "character": "Jack Devlin", "id": 18325, "credit_id": "52fe4307c3a36847f8035197", "cast_id": 2, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 1}, {"name": "Dennis Miller", "character": "Dr. Alan Champion", "id": 18326, "credit_id": "52fe4307c3a36847f803519b", "cast_id": 3, "profile_path": "/e1SGDAB2IArMV8oiTceRYD4DoGS.jpg", "order": 2}, {"name": "Wendy Gazelle", "character": "Ruth Marx", "id": 18327, "credit_id": "52fe4307c3a36847f803519f", "cast_id": 4, "profile_path": "/yTyLJT229mZQv7toPymO0QfAfsv.jpg", "order": 3}, {"name": "Ken Howard", "character": "Michael Bergstrom", "id": 18328, "credit_id": "52fe4307c3a36847f80351a3", "cast_id": 5, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 4}, {"name": "Diane Baker", "character": "Mrs. Bennett", "id": 6930, "credit_id": "52fe4307c3a36847f80351a7", "cast_id": 6, "profile_path": "/pExT2sv2tCRBxNzGKKNf2cdYI2q.jpg", "order": 5}, {"name": "Ray McKinnon", "character": "Dale Hessman", "id": 1472, "credit_id": "52fe4307c3a36847f80351cf", "cast_id": 13, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 6}, {"name": "Daniel Schorr", "character": "WNN Anchor", "id": 553720, "credit_id": "52fe4307c3a36847f80351d3", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "L. Scott Caldwell", "character": "Public Defender", "id": 29051, "credit_id": "52fe4307c3a36847f80351d7", "cast_id": 15, "profile_path": "/p5W9yIDt269Tb4KMMKI8AeO4jJi.jpg", "order": 8}, {"name": "Robert Gossett", "character": "Ben Phillips", "id": 15251, "credit_id": "52fe4307c3a36847f80351db", "cast_id": 16, "profile_path": "/mm1wgwRa14pKtUcgr7gRlmnh9As.jpg", "order": 9}, {"name": "Kristina Krofft", "character": "Nurse #1", "id": 196493, "credit_id": "52fe4307c3a36847f80351df", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Juan Garc\u00eda", "character": "Resort Desk Clerk", "id": 1066358, "credit_id": "52fe4307c3a36847f80351e3", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Tony Perez", "character": "Mexican Doctor", "id": 78498, "credit_id": "52fe4307c3a36847f80351e7", "cast_id": 19, "profile_path": "/xuVOZ1a9WvhSNyr2t89gu8W2QHx.jpg", "order": 12}, {"name": "Gene Kirkwood", "character": "Stan Whiteman", "id": 44827, "credit_id": "52fe4307c3a36847f80351eb", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Christopher Darga", "character": "Cop", "id": 75923, "credit_id": "52fe4307c3a36847f80351ef", "cast_id": 21, "profile_path": "/idem44Fq6Iisw46eb9bllpYHdFc.jpg", "order": 14}, {"name": "Charles Winkler", "character": "Cop", "id": 16487, "credit_id": "52fe4307c3a36847f80351f3", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Julia Pearlstein", "character": "Nurse #2", "id": 156788, "credit_id": "52fe4307c3a36847f80351f7", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Rick Snyder", "character": "Russ Melbourne", "id": 182347, "credit_id": "52fe4307c3a36847f80351fb", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Gerald Berns ", "character": "Jeff Gregg", "id": 543390, "credit_id": "52fe4307c3a36847f80351ff", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Tannis Benedict", "character": "Elevator Woman", "id": 92110, "credit_id": "52fe4307c3a36847f8035203", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Vaughn Armstrong", "character": "Trooper", "id": 103804, "credit_id": "52fe4307c3a36847f8035207", "cast_id": 27, "profile_path": "/2QjkFW0gOEqhdieranOyAPblxjU.jpg", "order": 20}, {"name": "Wren T. Brown", "character": "Trooper", "id": 55965, "credit_id": "52fe4307c3a36847f803520b", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Lynn Blades", "character": "Remote Reporter", "id": 155973, "credit_id": "52fe4307c3a36847f803520f", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Israel Juarbe", "character": "Thief", "id": 157488, "credit_id": "52fe4307c3a36847f8035213", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Julia Vera", "character": "Mexican Nun", "id": 168881, "credit_id": "52fe4307c3a36847f8035217", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Lewis Dix Jr.", "character": "FedEx man", "id": 193126, "credit_id": "52fe4307c3a36847f803521b", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Lili Flanders", "character": "Embassy Worker", "id": 1077891, "credit_id": "52fe4307c3a36847f803521f", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Adam Winkler", "character": "Computer Nerd", "id": 1077892, "credit_id": "52fe4307c3a36847f8035223", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Brian E. Frankish", "character": "Shuttle Driver", "id": 1077893, "credit_id": "52fe4307c3a36847f8035227", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Wanda-Lee Evans", "character": "Desk Sergeant", "id": 1077894, "credit_id": "52fe4307c3a36847f803522b", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "David Winkler", "character": "Computer Technician", "id": 16488, "credit_id": "52fe4307c3a36847f803522f", "cast_id": 37, "profile_path": null, "order": 30}], "directors": [{"name": "Irwin Winkler", "department": "Directing", "job": "Director", "credit_id": "52fe4307c3a36847f80351ad", "profile_path": "/chJjLXD7PlFhuyeverNCgemIAAC.jpg", "id": 11472}], "vote_average": 5.8, "runtime": 114}, "83564": {"poster_path": "/py4pMp6QlKUjjzCk8icZ2GrYw3Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young boy comes of age in the most peculiar of circumstances. Tonight is the very first time his Papa and Grandpa are taking him to work. In an old wooden boat they row far out to sea, and with no land in sight, they stop and wait. A big surprise awaits the boy as he discovers his family's most unusual line of work. Should he follow the example of his Papa, or his Grandpa? Will he be able to find his own way in the midst of their conflicting opinions and timeworn traditions?", "video": false, "id": 83564, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "La luna", "tagline": "A young boy discovers his family's most unusual line of work.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1957945", "adult": false, "backdrop_path": "/p4lpdTn3nW8nZBzyAU5kbb7PPBr.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2011-06-22", "popularity": 0.409067656526438, "original_title": "La luna", "budget": 0, "cast": [{"name": "Krista Sheffler", "character": "Bambino (voice)", "id": 929800, "credit_id": "52fe48aa9251416c910944b9", "cast_id": 1000, "profile_path": null, "order": 0}, {"name": "Tony Fucile", "character": "Pap\u00e0 (voice)", "id": 1260745, "credit_id": "52fe48aa9251416c910944db", "cast_id": 1006, "profile_path": null, "order": 1}, {"name": "Phil Sheridan", "character": "Nonno (voice)", "id": 1291314, "credit_id": "52fe48aa9251416c910944df", "cast_id": 1007, "profile_path": null, "order": 2}], "directors": [{"name": "Enrico Casarosa", "department": "Directing", "job": "Director", "credit_id": "52fe48aa9251416c910944bf", "profile_path": null, "id": 930567}], "vote_average": 8.0, "runtime": 7}, "1645": {"poster_path": "/sCHK5jHhRcrXZvZDekZXvRkDOHc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152266007, "overview": "A young lawyer defends a black man accused of murdering two men who raped his 10-year-old daughter, sparking a rebirth of the KKK.", "video": false, "id": 1645, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Time to Kill", "tagline": "Experience a time you'll never forget.", "vote_count": 110, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117913", "adult": false, "backdrop_path": "/b1cfBhhorGYNPbMVT6C9cHwxRr8.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1996-07-24", "popularity": 0.920514538020964, "original_title": "A Time to Kill", "budget": 40000000, "cast": [{"name": "Matthew McConaughey", "character": "Jake Tyler Brigance", "id": 10297, "credit_id": "52fe4308c3a36847f80353c7", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Sandra Bullock", "character": "Ellen Roark", "id": 18277, "credit_id": "52fe4308c3a36847f80353cb", "cast_id": 2, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Carl Lee Hailey", "id": 2231, "credit_id": "52fe4308c3a36847f80353cf", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Kevin Spacey", "character": "D.A. Rufus Buckley", "id": 1979, "credit_id": "52fe4308c3a36847f80353d3", "cast_id": 4, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Harry Rex Vonner", "id": 17485, "credit_id": "52fe4308c3a36847f80353d7", "cast_id": 5, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "Charles S. Dutton", "character": "Sheriff Ozzie Walls", "id": 17764, "credit_id": "52fe4308c3a36847f80353e3", "cast_id": 8, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 5}, {"name": "Brenda Fricker", "character": "Ethel Twitty", "id": 18345, "credit_id": "52fe4308c3a36847f80353e7", "cast_id": 9, "profile_path": "/z2ARJBvxE1mCwQ6XARTKvvPQySu.jpg", "order": 6}, {"name": "Donald Sutherland", "character": "Lucien Wilbanks", "id": 55636, "credit_id": "52fe4308c3a36847f80353db", "cast_id": 6, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 7}, {"name": "Kiefer Sutherland", "character": "Freddie Lee Cobb", "id": 2628, "credit_id": "52fe4308c3a36847f80353df", "cast_id": 7, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 8}, {"name": "Patrick McGoohan", "character": "Judge Omar Noose", "id": 2463, "credit_id": "53b7bfec0e0a2676c7007301", "cast_id": 32, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 9}, {"name": "Ashley Judd", "character": "Carla Brigance", "id": 15852, "credit_id": "52fe4308c3a36847f80353eb", "cast_id": 10, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 10}, {"name": "Rae'Ven Larrymore Kelly", "character": "Tonya Hailey", "id": 18346, "credit_id": "52fe4308c3a36847f80353ef", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Tonea Stewart", "character": "Gwen Hailey", "id": 18347, "credit_id": "52fe4308c3a36847f80353f3", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "John Diehl", "character": "Tim Nunley", "id": 4942, "credit_id": "52fe4308c3a36847f8035433", "cast_id": 23, "profile_path": "/hDUvgqpIv753skoeRGjVw6gYp7A.jpg", "order": 13}, {"name": "Chris Cooper", "character": "Deputy Dwayne Powell Looney", "id": 2955, "credit_id": "52fe4308c3a36847f8035437", "cast_id": 24, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 14}, {"name": "Nicky Katt", "character": "Billy Ray Cobb", "id": 18070, "credit_id": "52fe4308c3a36847f803543b", "cast_id": 25, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 15}, {"name": "Doug Hutchison", "character": "James Louis 'Pete' Willard", "id": 6806, "credit_id": "52fe4308c3a36847f803543f", "cast_id": 26, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 16}, {"name": "Kurtwood Smith", "character": "Stump Sisson", "id": 2115, "credit_id": "52fe4308c3a36847f8035443", "cast_id": 27, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 17}, {"name": "Tim Parati", "character": "Winston", "id": 65171, "credit_id": "52fe4308c3a36847f8035447", "cast_id": 28, "profile_path": "/qu3AMF9AXrAAXKI9MfdxZKW7mgm.jpg", "order": 18}, {"name": "Beth Grant", "character": "Cora Mae Cobb", "id": 5151, "credit_id": "52fe4308c3a36847f803544b", "cast_id": 29, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 19}, {"name": "Anthony Heald", "character": "Dr. Wilbert Rodeheaver", "id": 16293, "credit_id": "52fe4308c3a36847f803544f", "cast_id": 30, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 20}, {"name": "M. Emmet Walsh", "character": "Dr. Willard Tyrell 'W.T.' Bass (the Defense Psychologist)", "id": 588, "credit_id": "53b68a57c3a3685ec1002379", "cast_id": 31, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 21}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f80353f9", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.8, "runtime": 149}, "1646": {"poster_path": "/qOHFT2VcqrKqvha6sm8ptfESTJP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41170784, "overview": "A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.", "video": false, "id": 1646, "genres": [{"id": 18, "name": "Drama"}], "title": "Freedom Writers", "tagline": "Their story. Their world. Their future.", "vote_count": 54, "homepage": "http://www.freedomwriters.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0463998", "adult": false, "backdrop_path": "/hilAvXZyFhSo5akvH0QXHOZQdgD.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "MTV Films", "id": 746}], "release_date": "2007-01-05", "popularity": 0.358088751054915, "original_title": "Freedom Writers", "budget": 21000000, "cast": [{"name": "Hilary Swank", "character": "Erin Gruwell", "id": 448, "credit_id": "52fe4308c3a36847f803548b", "cast_id": 1, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 0}, {"name": "Patrick Dempsey", "character": "Scott Casey", "id": 18352, "credit_id": "52fe4308c3a36847f80354b3", "cast_id": 8, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Steve", "id": 349, "credit_id": "52fe4308c3a36847f80354b7", "cast_id": 9, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Imelda Staunton", "character": "Margaret Campbell", "id": 11356, "credit_id": "52fe4308c3a36847f80354bb", "cast_id": 10, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 3}, {"name": "April Lee Hernandez", "character": "Eva", "id": 18353, "credit_id": "52fe4308c3a36847f80354bf", "cast_id": 11, "profile_path": "/sz6D2AbuqlnNfGeiLovSMpfIiYf.jpg", "order": 4}, {"name": "Kristin Herrera", "character": "Gloria", "id": 35229, "credit_id": "52fe4308c3a36847f80354c3", "cast_id": 12, "profile_path": "/ahIoPAQVA2i2JkbfPH1DxogrTvM.jpg", "order": 5}, {"name": "Deance Wyatt", "character": "Jamal", "id": 35230, "credit_id": "52fe4308c3a36847f80354c7", "cast_id": 13, "profile_path": "/70u02iCK9I7mimAIAJ4QVSyjJSD.jpg", "order": 6}, {"name": "Gabriel Chavarria", "character": "Tito", "id": 35231, "credit_id": "52fe4308c3a36847f80354cb", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "John Benjamin Hickey", "character": "Brian Gelford", "id": 21179, "credit_id": "52fe4308c3a36847f80354cf", "cast_id": 15, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 8}, {"name": "Robert Wisdom", "character": "Dr. Carl Cohn", "id": 21505, "credit_id": "52fe4308c3a36847f80354d3", "cast_id": 16, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 9}, {"name": "Pat Carroll", "character": "Miep Gies", "id": 35232, "credit_id": "52fe4308c3a36847f80354d7", "cast_id": 17, "profile_path": "/u3VKH6kvq3giRZ7UJTaec262HHW.jpg", "order": 10}, {"name": "Will Morales", "character": "Paco", "id": 35233, "credit_id": "52fe4308c3a36847f80354db", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Ricardo Molina", "character": "Eva's Father", "id": 25912, "credit_id": "52fe4308c3a36847f80354df", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Angela Alvarado", "character": "Eva\u2019s Mother", "id": 22621, "credit_id": "52fe4308c3a36847f80354e3", "cast_id": 20, "profile_path": "/JwOg5CN5c7axePqVy9rYZ2oB4k.jpg", "order": 13}, {"name": "Tim Halligan", "character": "Principal Banning", "id": 12218, "credit_id": "52fe4308c3a36847f80354e7", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Palma Lawrence Reed", "character": "Grant's Mother", "id": 35234, "credit_id": "52fe4308c3a36847f80354eb", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Giovonnie Samuels", "character": "Victoria", "id": 35235, "credit_id": "52fe4308c3a36847f80354ef", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Hunter Parrish", "character": "Ben", "id": 35236, "credit_id": "52fe4308c3a36847f80354f3", "cast_id": 24, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 17}, {"name": "Vanetta Smith", "character": "Brandy", "id": 35237, "credit_id": "52fe4308c3a36847f80354f7", "cast_id": 25, "profile_path": "/Aur7jpPUVGTt8Ljr6KMSzKoHXPq.jpg", "order": 18}, {"name": "Jaclyn Ngan", "character": "Sindy", "id": 35238, "credit_id": "52fe4308c3a36847f80354fb", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Sergio Montalvo", "character": "Alejandro", "id": 35239, "credit_id": "52fe4308c3a36847f80354ff", "cast_id": 27, "profile_path": null, "order": 20}], "directors": [{"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f8035491", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}], "vote_average": 7.6, "runtime": 123}, "1647": {"poster_path": "/hQuFWLIKUwWUWYhk6KHsBOKKeHc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101191884, "overview": "A brilliant young CIA trainee is asked by his mentor to help find a mole in the Agency.", "video": false, "id": 1647, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Recruit", "tagline": "Trust. Betrayal. Deception. In the C.I.A. nothing is what it seems.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0292506", "adult": false, "backdrop_path": "/5ejNONf0Yr1CnlcJxuMBPa61DQm.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2003-01-25", "popularity": 0.63175838417151, "original_title": "The Recruit", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Walter Burke", "id": 1158, "credit_id": "52fe4308c3a36847f803557d", "cast_id": 20, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Colin Farrell", "character": "James Douglas Clayton", "id": 72466, "credit_id": "52fe4308c3a36847f8035581", "cast_id": 21, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Bridget Moynahan", "character": "Layla Moore", "id": 18354, "credit_id": "52fe4308c3a36847f8035529", "cast_id": 3, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 2}, {"name": "Gabriel Macht", "character": "Zack", "id": 16856, "credit_id": "52fe4308c3a36847f803552d", "cast_id": 4, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 3}, {"name": "Kenneth Mitchell", "character": "Alan", "id": 28868, "credit_id": "52fe4308c3a36847f803556d", "cast_id": 16, "profile_path": "/felhTbRf6awaxhmj2u0kAlpOd4f.jpg", "order": 4}, {"name": "Mike Realba", "character": "Ronnie", "id": 28869, "credit_id": "52fe4308c3a36847f8035571", "cast_id": 17, "profile_path": "/9VSNPVauGKQlV1cXENaUI60OoZH.jpg", "order": 5}, {"name": "Karl Pruner", "character": "Dennis Slayne", "id": 28870, "credit_id": "52fe4308c3a36847f8035575", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Eugene Lipinski", "character": "Husky Man", "id": 28871, "credit_id": "52fe4308c3a36847f8035579", "cast_id": 19, "profile_path": "/rhpOJsibsqA4SG71GcH0LMfnygd.jpg", "order": 7}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f8035533", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.9, "runtime": 115}, "1648": {"poster_path": "/b2yKJ1STPklVSRtso2Tg4TPXK7u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40485039, "overview": "Bill and Ted have spent so much time forming their rock band, The Wyld Stallyns, that they're flunking history. When Ted's dad threatens to send him away to military school, Bill and Ted realize it could mean the most heinous end of The Stallyns! Luckily, a guide from the future, Rufus, has come to them with a most bodacious solution.", "video": false, "id": 1648, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Bill & Ted's Excellent Adventure", "tagline": "History is about to be rewritten by two guys who can't spell.", "vote_count": 98, "homepage": "http://www.billandted.org/", "belongs_to_collection": {"backdrop_path": "/m7KWyG7VwXoPbwr3DgeDqed8qU0.jpg", "poster_path": "/e8ytcWY0r32q3RdNJDnv5KRh9hC.jpg", "id": 91746, "name": "Bill & Ted's Most Excellent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096928", "adult": false, "backdrop_path": "/ca925HbhdgTdjEs3VGg3SX0k86a.jpg", "production_companies": [{"name": "Nelson Entertainment", "id": 365}, {"name": "De Laurentiis Entertainment Group (DEG)", "id": 484}, {"name": "Orion Pictures", "id": 41}], "release_date": "1989-02-17", "popularity": 0.702506803820089, "original_title": "Bill & Ted's Excellent Adventure", "budget": 10000000, "cast": [{"name": "Keanu Reeves", "character": "Ted Logan", "id": 6384, "credit_id": "52fe4308c3a36847f80355cb", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Alex Winter", "character": "Bill S. Preston", "id": 18355, "credit_id": "52fe4308c3a36847f80355cf", "cast_id": 2, "profile_path": "/yHtymrjOTwB82EnpPgQjIgAXdTN.jpg", "order": 1}, {"name": "George Carlin", "character": "Rufus", "id": 15903, "credit_id": "52fe4308c3a36847f80355d9", "cast_id": 4, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 2}, {"name": "Dan Shor", "character": "Billy the Kid", "id": 2550, "credit_id": "52fe4308c3a36847f80355dd", "cast_id": 5, "profile_path": "/3howkcUGMpjGL2uyON5AlUnFJG8.jpg", "order": 3}, {"name": "Hal Landon Jr.", "character": "Captain Logan", "id": 14801, "credit_id": "52fe4308c3a36847f80355e1", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Amy Stock-Poynton", "character": "Missy Preston", "id": 18386, "credit_id": "52fe4308c3a36847f803562d", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "Terry Camilleri", "character": "Napoleon", "id": 18359, "credit_id": "52fe4308c3a36847f80355e5", "cast_id": 7, "profile_path": "/t1lVlizt1gXlVsCNNZqXO29rMnz.jpg", "order": 6}, {"name": "Tony Steedman", "character": "Socrates", "id": 18360, "credit_id": "52fe4308c3a36847f80355e9", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Rod Loomis", "character": "Dr. Sigmund Freud", "id": 18361, "credit_id": "52fe4308c3a36847f80355ed", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Bernie Casey", "character": "Mr. Ryan", "id": 10939, "credit_id": "52fe4308c3a36847f8035637", "cast_id": 23, "profile_path": "/rvL40yyewKgTDVm7doR1ym09sUj.jpg", "order": 9}, {"name": "Al Leong", "character": "Genghis Khan", "id": 61704, "credit_id": "52fe4308c3a36847f803563b", "cast_id": 24, "profile_path": "/9f8m0g6BgdwfQfS6ewhDOrW4kzs.jpg", "order": 10}, {"name": "Jane Wiedlin", "character": "Joan of Arc", "id": 35157, "credit_id": "52fe4308c3a36847f803563f", "cast_id": 25, "profile_path": "/jg6Auu4JhYDy9b0rAvW5HHlGo8L.jpg", "order": 11}, {"name": "Robert V. Barron", "character": "Abraham Lincoln", "id": 157502, "credit_id": "52fe4308c3a36847f8035643", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Clifford David", "character": "Ludwig van Beethoven", "id": 28048, "credit_id": "52fe4308c3a36847f8035647", "cast_id": 27, "profile_path": "/nRj0mmoXqn2Q1U9x7rELesrzMOQ.jpg", "order": 13}, {"name": "J. Patrick McNamara", "character": "Mr. Preston", "id": 12439, "credit_id": "52fe4308c3a36847f803564b", "cast_id": 28, "profile_path": "/gs6xxzSGKj5Dt63sFW1J6hiGBTf.jpg", "order": 14}, {"name": "Frazier Bain", "character": "Deacon Logan", "id": 1080213, "credit_id": "52fe4308c3a36847f803564f", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Diane Franklin", "character": "Princess Joanna", "id": 80137, "credit_id": "52fe4308c3a36847f8035653", "cast_id": 30, "profile_path": "/gGSdDja3atwUdTNnuWjk3I5r2iy.jpg", "order": 16}, {"name": "Kimberley Kates", "character": "Princess Elizabeth", "id": 154499, "credit_id": "52fe4308c3a36847f8035657", "cast_id": 31, "profile_path": "/lg7voDMyDhUXn7IxP1RHkPc6Xie.jpg", "order": 17}, {"name": "William Robbins", "character": "Ox Robbins", "id": 1040620, "credit_id": "52fe4308c3a36847f803565b", "cast_id": 32, "profile_path": null, "order": 18}, {"name": "Steve Shepherd", "character": "Randolf Shepherd", "id": 148239, "credit_id": "52fe4308c3a36847f803565f", "cast_id": 33, "profile_path": null, "order": 19}, {"name": "Anne Machette", "character": "Buffy", "id": 1080214, "credit_id": "52fe4308c3a36847f8035663", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Traci Dawn Davis", "character": "Jody Davis", "id": 1080215, "credit_id": "52fe4308c3a36847f8035667", "cast_id": 35, "profile_path": null, "order": 21}], "directors": [{"name": "Stephen Herek", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f80355d5", "profile_path": "/v6eEBvBiOoMZwrbbU30u4ObmDWE.jpg", "id": 18356}], "vote_average": 6.4, "runtime": 90}, "1649": {"poster_path": "/8JrQsGEO6WyM1KBpUxLqLiKa8vW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Attention all righteous dudes and babes! Keanu Reeves and Alex Winter are back and better than ever with a most triumphant sequel to Bill And Ted's Excellent Adventure! Everything's excellent for everyone's favourite surf-speaking dudes. With their own apartment, a pair of bodacious princess babes and a spot on the upcoming battle of the bands, life couldn't be any better. But all that goes down the tubes when Bill and Ted's evil robot twins kill the San Dimas duo and then take over their lives.", "video": false, "id": 1649, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Bill & Ted's Bogus Journey", "tagline": "Once... they made history. Now... they are history.", "vote_count": 70, "homepage": "", "belongs_to_collection": {"backdrop_path": "/m7KWyG7VwXoPbwr3DgeDqed8qU0.jpg", "poster_path": "/e8ytcWY0r32q3RdNJDnv5KRh9hC.jpg", "id": 91746, "name": "Bill & Ted's Most Excellent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101452", "adult": false, "backdrop_path": "/yTZKBx66njeBNXFM1A26Rm49AWL.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Orion Pictures", "id": 41}, {"name": "Nelson Entertainment", "id": 365}], "release_date": "1991-07-19", "popularity": 0.524982505653299, "original_title": "Bill & Ted's Bogus Journey", "budget": 0, "cast": [{"name": "Keanu Reeves", "character": "Ted Logan", "id": 6384, "credit_id": "52fe4308c3a36847f80356c9", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Alex Winter", "character": "Bill S. Preston", "id": 18355, "credit_id": "52fe4308c3a36847f80356cd", "cast_id": 2, "profile_path": "/yHtymrjOTwB82EnpPgQjIgAXdTN.jpg", "order": 1}, {"name": "George Carlin", "character": "Rufus", "id": 15903, "credit_id": "52fe4308c3a36847f80356d7", "cast_id": 6, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 2}, {"name": "William Sadler", "character": "Grim Reaper", "id": 6573, "credit_id": "52fe4308c3a36847f8035723", "cast_id": 23, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 3}, {"name": "Joss Ackland", "character": "De Nomolos", "id": 14324, "credit_id": "52fe4308c3a36847f8035727", "cast_id": 24, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 4}, {"name": "Pam Grier", "character": "Ms. Wardroe", "id": 2230, "credit_id": "52fe4308c3a36847f803572b", "cast_id": 25, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 5}, {"name": "Amy Stock-Poynton", "character": "Missy", "id": 18386, "credit_id": "52fe4308c3a36847f803572f", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Jim Martin", "character": "Sir James Martin", "id": 549532, "credit_id": "52fe4308c3a36847f8035733", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Hal Landon Jr.", "character": "Captain Logan", "id": 14801, "credit_id": "52fe4308c3a36847f8035737", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Annette Azcuy", "character": "Elizabeth", "id": 192492, "credit_id": "52fe4308c3a36847f803573b", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Sarah Trigger", "character": "Joanna", "id": 5601, "credit_id": "52fe4308c3a36847f803573f", "cast_id": 30, "profile_path": "/eKmmWJ38vOkv3k0sNgUoRjWCwjd.jpg", "order": 10}, {"name": "Chelcie Ross", "character": "Colonel Oats", "id": 10486, "credit_id": "52fe4308c3a36847f8035743", "cast_id": 31, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 11}, {"name": "Taj Mahal", "character": "Gatekeeper", "id": 94511, "credit_id": "52fe4308c3a36847f8035747", "cast_id": 32, "profile_path": "/tEqFRK0vJFZsTgwMSLdUqnKKrRB.jpg", "order": 12}, {"name": "Robert Noble", "character": "Bach", "id": 125845, "credit_id": "52fe4308c3a36847f803574b", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Eleni Kelakos", "character": "Ria Paschelle", "id": 183972, "credit_id": "52fe4308c3a36847f803574f", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Roy Brocksmith", "character": "Deputy James", "id": 12888, "credit_id": "52fe4308c3a36847f8035753", "cast_id": 35, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 15}, {"name": "J. Patrick McNamara", "character": "Mr. Preston", "id": 12439, "credit_id": "52fe4308c3a36847f8035757", "cast_id": 36, "profile_path": "/gs6xxzSGKj5Dt63sFW1J6hiGBTf.jpg", "order": 16}, {"name": "Dana Stevens", "character": "1st Seance Member", "id": 11898, "credit_id": "52fe4308c3a36847f803575b", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Carol Rosenthal", "character": "3rd Seance Member", "id": 154022, "credit_id": "52fe4308c3a36847f803575f", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Chris Matheson", "character": "'Ugly' Seance Member", "id": 18382, "credit_id": "52fe4308c3a36847f8035763", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Brendan Ryan", "character": "Young Ted", "id": 963707, "credit_id": "52fe4308c3a36847f8035767", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "William Thorne", "character": "Young Bill", "id": 560020, "credit_id": "52fe4308c3a36847f803576b", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Ed Gale", "character": "Station", "id": 1471, "credit_id": "52fe4308c3a36847f803576f", "cast_id": 42, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 22}, {"name": "Arturo Gil", "character": "Station", "id": 81416, "credit_id": "52fe4308c3a36847f8035773", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Tom Allard", "character": "Big Station", "id": 157543, "credit_id": "52fe4308c3a36847f8035777", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Terry Finn", "character": "Heavenly Greeter", "id": 1078906, "credit_id": "52fe4308c3a36847f803577b", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "John Ehrin", "character": "Albert Einstein", "id": 1078907, "credit_id": "52fe4308c3a36847f803577f", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Don Forney", "character": "Benjamin Franklin", "id": 1078908, "credit_id": "52fe4308c3a36847f8035783", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Michael Chambers", "character": "Good Robot Bill (as Michael 'Shrimp' Chambers)", "id": 57392, "credit_id": "52fe4308c3a36847f8035787", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Bruno Falcon", "character": "Good Robot Ted (as Bruno 'Taco' Falcon)", "id": 1078909, "credit_id": "52fe4308c3a36847f803578b", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Ed Cambridge", "character": "George Washington Carver", "id": 152628, "credit_id": "52fe4308c3a36847f803578f", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Tad Horino", "character": "Confucius", "id": 70947, "credit_id": "52fe4308c3a36847f8035793", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "William Shatner", "character": "Captain James Tiberius Kirk (archive footage)", "id": 1748, "credit_id": "52fe4308c3a36847f8035797", "cast_id": 52, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 32}], "directors": [{"name": "Peter Hewitt", "department": "Directing", "job": "Director", "credit_id": "52fe4308c3a36847f80356d3", "profile_path": "/oTsxyjGU1C1KpvuFJg9yOuvHmbD.jpg", "id": 18357}], "vote_average": 5.8, "runtime": 93}, "8467": {"poster_path": "/st4P2TtPrAfNwu8HLXoPsPPii42.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 246200000, "overview": "Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some \"adventures\" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.", "video": false, "id": 8467, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dumb and Dumber", "tagline": "What the one doesn't have, the other is missing.", "vote_count": 383, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fdB86tl7SKIBWZzm0CbrYjOdE1K.jpg", "id": 96665, "name": "Dumb and Dumber Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109686", "adult": false, "backdrop_path": "/nJaVxQNC4pb6eYH5jv0UUokfH5X.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1994-12-16", "popularity": 1.32563861286776, "original_title": "Dumb and Dumber", "budget": 16000000, "cast": [{"name": "Jim Carrey", "character": "Lloyd Christmas", "id": 206, "credit_id": "52fe44acc3a36847f80a3749", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Jeff Daniels", "character": "Harry Dune", "id": 8447, "credit_id": "52fe44acc3a36847f80a374d", "cast_id": 2, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 1}, {"name": "Lauren Holly", "character": "Mary Swanson", "id": 34485, "credit_id": "52fe44acc3a36847f80a3751", "cast_id": 3, "profile_path": "/pwenSL3M9vkbIrIvcZEb6mLJNeX.jpg", "order": 2}, {"name": "Mike Starr", "character": "Joe Mentaliano", "id": 5170, "credit_id": "52fe44acc3a36847f80a37a3", "cast_id": 17, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 3}, {"name": "Karen Duffy", "character": "J.P. Shay", "id": 76131, "credit_id": "52fe44acc3a36847f80a37a7", "cast_id": 18, "profile_path": "/c3G9gFCbBf6zHRQTqUZjXYgZUh4.jpg", "order": 4}, {"name": "Charles Rocket", "character": "Nicholas Andre", "id": 7867, "credit_id": "52fe44acc3a36847f80a37ab", "cast_id": 19, "profile_path": "/9UJTYqaPaYNPuVTjGd0Cr4XVNqe.jpg", "order": 5}, {"name": "Victoria Rowell", "character": "Athletic Beauty", "id": 65020, "credit_id": "52fe44acc3a36847f80a37af", "cast_id": 20, "profile_path": "/rzZfb0cSiTGYXxVX0uPbHa6CLc3.jpg", "order": 6}, {"name": "Joe Baker", "character": "Barnard", "id": 181486, "credit_id": "52fe44acc3a36847f80a37b3", "cast_id": 21, "profile_path": "/9vWEEzpr2K8DR3uQqgK2QvAygty.jpg", "order": 7}, {"name": "Hank Brandt", "character": "Karl Swanson", "id": 153459, "credit_id": "52fe44acc3a36847f80a37b7", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Teri Garr", "character": "Helen Swanson", "id": 8437, "credit_id": "52fe44acc3a36847f80a37bb", "cast_id": 23, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 9}, {"name": "Brady Bluhm", "character": "Billy", "id": 77547, "credit_id": "52fe44acc3a36847f80a37bf", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Cam Neely", "character": "Sea Bass", "id": 184180, "credit_id": "52fe44acc3a36847f80a37c3", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Felton Perry", "character": "Detective Dale", "id": 44042, "credit_id": "52fe44acc3a36847f80a37c7", "cast_id": 26, "profile_path": "/ax2YtmbicXvsjayLtK5VUxQh8fC.jpg", "order": 12}, {"name": "Brad Lockerman", "character": "Bobby", "id": 1074689, "credit_id": "52fe44acc3a36847f80a37cb", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Rob Moran", "character": "Bartender", "id": 162924, "credit_id": "52fe44acc3a36847f80a37cf", "cast_id": 28, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 14}], "directors": [{"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a3757", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}, {"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a375d", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}], "vote_average": 6.6, "runtime": 107}, "1654": {"poster_path": "/2PKazVY2F2GhRfQyErq8QWiq0Au.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 45300000, "overview": "Classic World War II action drama about a group of 12 American military prisoners, who are ordered to infiltrate a well-guarded enemy ch\u00e2teau and kill the Nazi officers vacationing there. The soldiers, most of whom are facing death sentences for a variety of violent crimes, agree to the mission and the possible commuting of their sentences.", "video": false, "id": 1654, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 10752, "name": "War"}], "title": "The Dirty Dozen", "tagline": "Train them! Excite them! Arm them!...Then turn them loose on the Nazis!", "vote_count": 86, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/xCLD1Pul4d6iJJdFf3el7PfMpLc.jpg", "id": 124492, "name": "The Dirty Dozen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0061578", "adult": false, "backdrop_path": "/zY5LAPLgNpqDAz5MB0w4tWKSfLn.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "MKH Productions", "id": 950}, {"name": "Seven Arts Productions", "id": 516}], "release_date": "1967-06-15", "popularity": 0.518795422591186, "original_title": "The Dirty Dozen", "budget": 25000000, "cast": [{"name": "Lee Marvin", "character": "Maj. John Reisman", "id": 18391, "credit_id": "52fe4309c3a36847f8035993", "cast_id": 1, "profile_path": "/1UdUtkWNbgU0pTolZKRkwLBLSUt.jpg", "order": 0}, {"name": "Charles Bronson", "character": "Joseph Wladislaw", "id": 4960, "credit_id": "52fe4309c3a36847f8035997", "cast_id": 2, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 1}, {"name": "Jim Brown", "character": "Robert Jefferson", "id": 4774, "credit_id": "52fe4309c3a36847f80359ff", "cast_id": 22, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 2}, {"name": "John Cassavetes", "character": "Victor Franko", "id": 11147, "credit_id": "52fe4309c3a36847f80359ad", "cast_id": 7, "profile_path": "/pp71Xsx63aoXTMQgatnYtGRU2fi.jpg", "order": 3}, {"name": "Donald Sutherland", "character": "Vernon Pinkley", "id": 55636, "credit_id": "52fe4309c3a36847f80359a3", "cast_id": 5, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 4}, {"name": "Trini L\u00f3pez", "character": "Pedro Jiminez (as Trini Lopez)", "id": 108655, "credit_id": "52fe4309c3a36847f8035a21", "cast_id": 31, "profile_path": "/fkERf2SJlY8RMX1OEPpxdEI5cLe.jpg", "order": 5}, {"name": "Telly Savalas", "character": "Archer Maggott", "id": 10169, "credit_id": "52fe4309c3a36847f803599f", "cast_id": 4, "profile_path": "/5HtqvadMMZZ0Zg0Y70gyrduZ8lU.jpg", "order": 6}, {"name": "Clint Walker", "character": "Samson Posey", "id": 40207, "credit_id": "52fe4309c3a36847f8035a13", "cast_id": 28, "profile_path": "/z9EwnoNgmO9hwTHWtkuX3aBkwgv.jpg", "order": 7}, {"name": "Richard Jaeckel", "character": "Sergeant Bowren", "id": 58423, "credit_id": "52fe4309c3a36847f8035a03", "cast_id": 23, "profile_path": "/4pTd7yoDD46xbFcMuFHh8k448Um.jpg", "order": 8}, {"name": "George Kennedy", "character": "Major Max Armbruster", "id": 12950, "credit_id": "52fe4309c3a36847f8035a07", "cast_id": 24, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 9}, {"name": "Ernest Borgnine", "character": "Maj. Gen. Worden", "id": 7502, "credit_id": "52fe4309c3a36847f803599b", "cast_id": 3, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 10}, {"name": "Robert Ryan", "character": "Col. Everett Dasher Breed", "id": 8253, "credit_id": "52fe4309c3a36847f8035a0f", "cast_id": 27, "profile_path": "/xBAWG79UGCkchPPTbONycJiKW2g.jpg", "order": 11}, {"name": "Ralph Meeker", "character": "Captain Stuart Kinder", "id": 14562, "credit_id": "52fe4309c3a36847f8035a0b", "cast_id": 26, "profile_path": "/qJ6ELh0jYHaCB0lITnAOo7owylz.jpg", "order": 12}, {"name": "Robert Webber", "character": "General Denton", "id": 5255, "credit_id": "52fe4309c3a36847f8035a17", "cast_id": 29, "profile_path": "/mg6SHDi5bi9C7pUwH14ZXxTnR7M.jpg", "order": 13}], "directors": [{"name": "Robert Aldrich", "department": "Directing", "job": "Director", "credit_id": "52fe4309c3a36847f80359a9", "profile_path": "/n0hL9vMNQny4tCmKVtANgJJo5Ra.jpg", "id": 18392}], "vote_average": 7.3, "runtime": 150}, "1656": {"poster_path": "/rH3WJbSE3APS1l1hTXZZbz3NVP1.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 142400065, "overview": "In 1850, the people of California were voting to decide whether or not to join the United States. The Legend of Zorro is a 2005 sequel to 1998's The Mask of Zorro,", "video": false, "id": 1656, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "The Legend of Zorro", "tagline": "This Fall, adventure begins with a Z.", "vote_count": 288, "homepage": "http://www.sonypictures.com/homevideo/thelegendofzorro/index.html", "belongs_to_collection": {"backdrop_path": "/AcDbnGiLyBUCW9J4EbYqEIuhokX.jpg", "poster_path": "/ziQDmVR3VE0hC0GDWgaQwz0H3Ff.jpg", "id": 1657, "name": "Zorro Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386140", "adult": false, "backdrop_path": "/mXP2oP6feaovDp03Q2SbterHTfa.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2005-10-25", "popularity": 1.30009357494405, "original_title": "The Legend of Zorro", "budget": 75000000, "cast": [{"name": "Antonio Banderas", "character": "Zorro", "id": 3131, "credit_id": "52fe4309c3a36847f8035af3", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Elena", "id": 1922, "credit_id": "52fe4309c3a36847f8035af7", "cast_id": 2, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Adri\u00e1n Alonso Barona", "character": "Joaquin", "id": 18460, "credit_id": "52fe4309c3a36847f8035b6d", "cast_id": 22, "profile_path": "/yUAJGSBq95noBG5zFC0byg3tfkL.jpg", "order": 2}, {"name": "Julio Oscar Mechoso", "character": "Frey Felipe", "id": 17413, "credit_id": "52fe4309c3a36847f8035b71", "cast_id": 23, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 3}, {"name": "Nick Chinlund", "character": "Jacob McGivens", "id": 18461, "credit_id": "52fe4309c3a36847f8035b75", "cast_id": 24, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 4}, {"name": "Alexa Benedetti", "character": "Lupe", "id": 18462, "credit_id": "52fe4309c3a36847f8035b79", "cast_id": 25, "profile_path": null, "order": 5}, {"name": "Rufus Sewell", "character": "Armand", "id": 17328, "credit_id": "52fe4309c3a36847f8035b7d", "cast_id": 26, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 6}, {"name": "Ra\u00fal M\u00e9ndez", "character": "Ferroq", "id": 18463, "credit_id": "52fe4309c3a36847f8035b81", "cast_id": 27, "profile_path": "/3lOgYP4CMC7CQ1hRMaAErgeh0Ef.jpg", "order": 7}, {"name": "Brandon Wood", "character": "Ricardo", "id": 18464, "credit_id": "52fe4309c3a36847f8035b85", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Michael Emerson", "character": "Harrigan", "id": 2136, "credit_id": "52fe4309c3a36847f8035b89", "cast_id": 29, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 9}, {"name": "Pedro Armend\u00e1riz, Jr.", "character": "Governor Riley", "id": 7372, "credit_id": "52fe4309c3a36847f8035b8d", "cast_id": 30, "profile_path": "/vqg8f4FeCKUD7jTVM2gLpElNZuh.jpg", "order": 10}, {"name": "Mary Crosby", "character": "Governor's Wife", "id": 18465, "credit_id": "52fe4309c3a36847f8035b91", "cast_id": 31, "profile_path": "/481u1zGYUBUlv3dOb9xrv4DsJ8k.jpg", "order": 11}, {"name": "Giovanna Zacar\u00edas", "character": "Blanca", "id": 18466, "credit_id": "52fe4309c3a36847f8035b95", "cast_id": 32, "profile_path": "/MBMoFv0fmJ7gayFi0QC58cRt2t.jpg", "order": 12}, {"name": "Alberto Reyes", "character": "Brother Ignacio", "id": 18467, "credit_id": "52fe4309c3a36847f8035b99", "cast_id": 33, "profile_path": "/zloxYN1eExvEODZLD8aYlHedT8H.jpg", "order": 13}, {"name": "Gustavo Sanchez-Parra", "character": "Guillermo Cortez", "id": 18468, "credit_id": "52fe4309c3a36847f8035b9d", "cast_id": 34, "profile_path": "/rpIME7x7XILBhumf1VmKbxWrt6b.jpg", "order": 14}, {"name": "Carlos Cobos", "character": "Tabulador", "id": 18469, "credit_id": "52fe4309c3a36847f8035ba1", "cast_id": 35, "profile_path": "/8fcntiHU6g70osLnriRZ4pNFm4i.jpg", "order": 15}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe4309c3a36847f8035afd", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 5.8, "runtime": 129}, "181886": {"poster_path": "/v1Fdct0WZAsaqeSkvXRY6ozgBi3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Jake Gyllenhaal reteams with PRISONERS director Denis Villeneuve in this sexy and mind bending thriller. Adam Bell is a glum professor who has grown disinterested by his ordinary life. When Adam discovers a man who appears to be his double, the identical men meet and their lives become bizarrely and hauntingly intertwined. Gyllenhaal is transfixing playing both roles, journeying through a world both familiar and strange. The film\u2019s final and unnerving image will not be soon forgotten by audiences. In the end, only one man can survive.", "video": false, "id": 181886, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Enemy", "tagline": "You can't escape yourself", "vote_count": 228, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2316411", "adult": false, "backdrop_path": "/flo1t3tcwQ08b2J5DvlwDasE6Dp.jpg", "production_companies": [{"name": "Rhombus Media", "id": 164}, {"name": "Roxbury Pictures", "id": 21380}, {"name": "micro_scope", "id": 21381}, {"name": "Mecanismo Films", "id": 21382}], "release_date": "2013-09-08", "popularity": 1.12716162602387, "original_title": "Enemy", "budget": 0, "cast": [{"name": "Jake Gyllenhaal", "character": "Adam Bell/ Anthony St. Claire", "id": 131, "credit_id": "52fe4c739251416c7511acb1", "cast_id": 1, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "M\u00e9lanie Laurent", "character": "Mary", "id": 19119, "credit_id": "52fe4c739251416c7511acb5", "cast_id": 2, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 1}, {"name": "Sarah Gadon", "character": "Helen", "id": 190895, "credit_id": "52fe4c739251416c7511acb9", "cast_id": 3, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 2}, {"name": "Isabella Rossellini", "character": "Adam's Mother", "id": 6588, "credit_id": "52fe4c739251416c7511acbd", "cast_id": 4, "profile_path": "/vBLjRtWqlEGG86iJAZ4CSpc8tkO.jpg", "order": 3}, {"name": "Stephen R. Hart", "character": "Bouncer", "id": 224723, "credit_id": "52fe4c739251416c7511acf7", "cast_id": 15, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 4}, {"name": "Joshua Peace", "character": "Carl", "id": 5925, "credit_id": "52fe4c739251416c7511acfb", "cast_id": 16, "profile_path": "/C5xx4dU6NtB7vzoX9Ho6p7CgOb.jpg", "order": 5}, {"name": "Loretta Yu", "character": "Receptionist", "id": 961828, "credit_id": "5318b1fac3a3685c430019fe", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Tim Post", "character": "Anthony", "id": 7009, "credit_id": "5318b217c3a3685c51001933", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Darryl Dinn", "character": "Employee", "id": 1299079, "credit_id": "5318b228c3a3685c5d001975", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Kiran Friesen", "character": "Sad, Broken Woman", "id": 1299080, "credit_id": "5318b23ac3a3685c560019ec", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Alexis Uiga", "character": "Dark Lady", "id": 1299081, "credit_id": "5318b24ac3a3685c5d00197d", "cast_id": 21, "profile_path": null, "order": 10}], "directors": [{"name": "Denis Villeneuve", "department": "Directing", "job": "Director", "credit_id": "52fe4c739251416c7511acc3", "profile_path": "/f3bWCti2AYoAxRnFYIirQyf6A7j.jpg", "id": 137427}], "vote_average": 6.3, "runtime": 91}, "277": {"poster_path": "/rdkxl5iXdpVU188cL1LLG3sy6z4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95708457, "overview": "Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.", "video": false, "id": 277, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Underworld", "tagline": "An immortal battle for supremacy.", "vote_count": 1063, "homepage": "http://www.sonypictures.com/movies/underworld/site/main.html", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0320691", "adult": false, "backdrop_path": "/cPhRPAJWK8BuuJqqf6PztzvOlnZ.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Laurinfilm", "id": 7733}, {"name": "Subterranean Productions LLC", "id": 7734}, {"name": "Subterranean Productions UK Ltd.", "id": 7735}, {"name": "Underworld Produktions GmbH", "id": 7736}], "release_date": "2003-09-18", "popularity": 1.54770586313057, "original_title": "Underworld", "budget": 22000000, "cast": [{"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "52fe4231c3a36847f800b0c9", "cast_id": 21, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Scott Speedman", "character": "Michael Corvin", "id": 100, "credit_id": "52fe4231c3a36847f800b0cd", "cast_id": 22, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Michael Sheen", "character": "Lucian", "id": 3968, "credit_id": "52fe4231c3a36847f800b0d1", "cast_id": 23, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 2}, {"name": "Shane Brolly", "character": "Kraven", "id": 3969, "credit_id": "52fe4231c3a36847f800b0d5", "cast_id": 24, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Viktor", "id": 2440, "credit_id": "52fe4231c3a36847f800b0d9", "cast_id": 25, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Erwin Leder", "character": "Singe", "id": 3970, "credit_id": "52fe4231c3a36847f800b0dd", "cast_id": 26, "profile_path": "/26qbu74DyDmZM3unsU99wiPWw5i.jpg", "order": 5}, {"name": "Sophia Myles", "character": "Erika", "id": 3971, "credit_id": "52fe4231c3a36847f800b0e1", "cast_id": 27, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 6}, {"name": "Robbie Gee", "character": "Kahn", "id": 1119, "credit_id": "52fe4231c3a36847f800b0e5", "cast_id": 28, "profile_path": "/sNjG7yCwwF6gMChC6gNfNuPUbwE.jpg", "order": 7}, {"name": "Wentworth Miller", "character": "Dr. Lockwood", "id": 3972, "credit_id": "52fe4231c3a36847f800b0e9", "cast_id": 29, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 8}, {"name": "Kevin Grevioux", "character": "Raze", "id": 3952, "credit_id": "536f42420e0a2647d10119ed", "cast_id": 35, "profile_path": "/eP1P9jxMBiI1a6cQHlChNdDALKY.jpg", "order": 9}, {"name": "Zita G\u00f6r\u00f6g", "character": "Amelia", "id": 12358, "credit_id": "53e3c054c3a368484a0024ed", "cast_id": 40, "profile_path": "/eU6PsIYBWG4ywX5PoGwmXd7EvV5.jpg", "order": 10}, {"name": "Scott McElroy", "character": "Soren", "id": 12366, "credit_id": "53e3c087c3a368485c0023db", "cast_id": 41, "profile_path": "/8SfKaB26PSTmk8OMFdkIXrQdp52.jpg", "order": 11}, {"name": "Michael Todd Schneider", "character": "Trix", "id": 1035346, "credit_id": "53e3c1a4c3a368484a002504", "cast_id": 42, "profile_path": null, "order": 12}, {"name": "Richard Cetrone", "character": "Pierce", "id": 12371, "credit_id": "53e3c2470e0a262b86004b0b", "cast_id": 43, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 13}, {"name": "Mike Mukatis", "character": "Taylor", "id": 12372, "credit_id": "53e3c28c0e0a262b80004c0b", "cast_id": 44, "profile_path": "/mVqAXYseZRVcJvHxkUWl47AcLc8.jpg", "order": 14}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe4231c3a36847f800b059", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 6.4, "runtime": 121}, "8470": {"poster_path": "/4jX2XxZbpMy2rGSigoIaFAbhOez.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102244770, "overview": "John Q is a 2002 film by Nick Cassavetes; starring Denzel Washington as John Quincy Archibald, a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.", "video": false, "id": 8470, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "John Q", "tagline": "Give a father no options and you leave him no choice.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0251160", "adult": false, "backdrop_path": "/ivT2yCIvL4GskjJjvoyax8h23wq.jpg", "production_companies": [{"name": "Evolution Entertainment", "id": 23019}, {"name": "New Line Cinema", "id": 12}, {"name": "Burg/Koules Productions", "id": 17106}], "release_date": "2002-02-14", "popularity": 0.834146401241558, "original_title": "John Q", "budget": 36000000, "cast": [{"name": "Denzel Washington", "character": "John Quincy Archibald", "id": 5292, "credit_id": "52fe44acc3a36847f80a3a87", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Frank Grimes", "id": 3087, "credit_id": "52fe44acc3a36847f80a3a8b", "cast_id": 2, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Anne Heche", "character": "Rebecca Payne", "id": 8256, "credit_id": "52fe44acc3a36847f80a3a8f", "cast_id": 3, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 2}, {"name": "Kimberly Elise", "character": "Denise Archibald", "id": 55314, "credit_id": "52fe44adc3a36847f80a3ac9", "cast_id": 13, "profile_path": "/315K0qi3aFmcgGweUiLwhdrvcfU.jpg", "order": 3}, {"name": "Daniel E. Smith", "character": "Mike Archibald", "id": 55315, "credit_id": "52fe44adc3a36847f80a3acd", "cast_id": 14, "profile_path": "/rcdeu6cbC2VZx1yVVTv2h2fHyyt.jpg", "order": 4}, {"name": "Larissa Laskin", "character": "Dr. Ellen Klein", "id": 55316, "credit_id": "52fe44adc3a36847f80a3ad1", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "James Woods", "character": "Dr. Raymond Turner", "id": 4512, "credit_id": "52fe44adc3a36847f80a3ad5", "cast_id": 16, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 6}, {"name": "Ethan Suplee", "character": "Guard Max Conlin", "id": 824, "credit_id": "52fe44adc3a36847f80a3ad9", "cast_id": 17, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 7}, {"name": "Shawn Hatosy", "character": "Mitch Quigley", "id": 52647, "credit_id": "52fe44adc3a36847f80a3add", "cast_id": 18, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 8}, {"name": "Heather Wahlquist", "character": "Julie Bird", "id": 55317, "credit_id": "52fe44adc3a36847f80a3ae1", "cast_id": 19, "profile_path": "/232o4HJQu4M5cv6VNOxdvXV8itx.jpg", "order": 9}, {"name": "Ray Liotta", "character": "Chief Gus Monroe", "id": 11477, "credit_id": "52fe44adc3a36847f80a3ae5", "cast_id": 21, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 11}, {"name": "Eddie Griffin", "character": "Lester Matthews", "id": 62842, "credit_id": "52fe44adc3a36847f80a3ae9", "cast_id": 22, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 12}, {"name": "Dina Spybey-Waters", "character": "Debby Utley", "id": 56567, "credit_id": "52fe44adc3a36847f80a3aed", "cast_id": 23, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 13}, {"name": "Shera Danese", "character": "Wife of Heart Transplant Patient", "id": 1220746, "credit_id": "533bb72bc3a36844ed000d4a", "cast_id": 24, "profile_path": "/qKIE9ef0cd401qWfrr6Bws0o7qm.jpg", "order": 14}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe44acc3a36847f80a3a95", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 7.0, "runtime": 116}, "9836": {"poster_path": "/8RLEzftZK87S2usLsQoYtyNYzoV.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 384330479, "overview": "Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!", "video": false, "id": 9836, "genres": [{"id": 16, "name": "Animation"}, {"id": 10402, "name": "Music"}], "title": "Happy Feet", "tagline": "WARNING: May Cause Toe-Tapping.", "vote_count": 471, "homepage": "", "belongs_to_collection": {"backdrop_path": "/b9CLLxKsh63AHEkGE9nz9bupQqh.jpg", "poster_path": "/pYbF2FAi2MEVshl8jCDNTRNdTF0.jpg", "id": 92012, "name": "Happy Feet Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0366548", "adult": false, "backdrop_path": "/ip4qHgYa0ZJhO1e7cjnz0HAcgRX.jpg", "production_companies": [{"name": "Kingdom Feature Productions", "id": 2597}, {"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Kennedy Miller Productions", "id": 2537}, {"name": "Animal Logic", "id": 8089}], "release_date": "2006-11-16", "popularity": 1.2465347773617, "original_title": "Happy Feet", "budget": 100000000, "cast": [{"name": "Lombardo Boyar", "character": "Raul", "id": 4992, "credit_id": "52fe4537c3a36847f80c29ff", "cast_id": 28, "profile_path": "/ygctSZGBRkmwARihr8F1Bb7PkIP.jpg", "order": 0}, {"name": "Robin Williams", "character": "Ramon / Lovelace", "id": 2157, "credit_id": "52fe4537c3a36847f80c2a03", "cast_id": 29, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Johnny A. Sanchez", "character": "Lombardo", "id": 59783, "credit_id": "52fe4537c3a36847f80c2a07", "cast_id": 30, "profile_path": "/sZgx2rtzJucOh3z92NZVhkNbfTk.jpg", "order": 2}, {"name": "Carlos Alazraqui", "character": "Nestor", "id": 59784, "credit_id": "52fe4537c3a36847f80c2a0b", "cast_id": 31, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 3}, {"name": "Jeffrey Garcia", "character": "Rinaldo", "id": 59782, "credit_id": "52fe4537c3a36847f80c2a0f", "cast_id": 32, "profile_path": "/vxzRJbYNXUXUG8V8rcWlnj5PCKJ.jpg", "order": 4}, {"name": "Elijah Wood", "character": "Mumble", "id": 109, "credit_id": "52fe4537c3a36847f80c2a13", "cast_id": 33, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 5}, {"name": "Brittany Murphy", "character": "Gloria", "id": 328, "credit_id": "52fe4537c3a36847f80c2a17", "cast_id": 34, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 6}, {"name": "Hugh Jackman", "character": "Memphis", "id": 6968, "credit_id": "52fe4537c3a36847f80c2a1b", "cast_id": 35, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 7}, {"name": "Nicole Kidman", "character": "Norma Jean", "id": 2227, "credit_id": "52fe4537c3a36847f80c2a1f", "cast_id": 36, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 8}, {"name": "Hugo Weaving", "character": "Noah the Elder", "id": 1331, "credit_id": "52fe4537c3a36847f80c2a23", "cast_id": 37, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 9}, {"name": "E.G. Daily", "character": "Baby Mumble", "id": 15274, "credit_id": "52fe4537c3a36847f80c2a27", "cast_id": 38, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 10}, {"name": "Magda Szubanski", "character": "Miss Viola", "id": 45586, "credit_id": "52fe4537c3a36847f80c2a2b", "cast_id": 39, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 11}, {"name": "Miriam Margolyes", "character": "Mrs. Astrakhan", "id": 6199, "credit_id": "52fe4537c3a36847f80c2a2f", "cast_id": 40, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 12}, {"name": "Cesar Flores", "character": "Baby Seymour", "id": 53211, "credit_id": "52fe4537c3a36847f80c2a33", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Anthony LaPaglia", "character": "Boss Skua", "id": 57829, "credit_id": "52fe4537c3a36847f80c2a37", "cast_id": 42, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 14}, {"name": "Fat Joe", "character": "Seymour", "id": 59785, "credit_id": "52fe4537c3a36847f80c2a3b", "cast_id": 43, "profile_path": "/dKAyXMKReHmcf03B6Uol3QpZyOA.jpg", "order": 15}, {"name": "Alyssa Shafer", "character": "Baby Gloria", "id": 59786, "credit_id": "52fe4537c3a36847f80c2a3f", "cast_id": 44, "profile_path": null, "order": 16}, {"name": "Danny Mann", "character": "Dino / Zoo Penguin", "id": 52699, "credit_id": "52fe4537c3a36847f80c2a43", "cast_id": 45, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 17}, {"name": "Mark Klastorin", "character": "Vinnie", "id": 59787, "credit_id": "52fe4537c3a36847f80c2a47", "cast_id": 46, "profile_path": null, "order": 18}, {"name": "Michael Cornacchia", "character": "Frankie", "id": 59788, "credit_id": "52fe4537c3a36847f80c2a4b", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Chris Edgerly", "character": "", "id": 591764, "credit_id": "52fe4537c3a36847f80c2a67", "cast_id": 52, "profile_path": "/67G2MHc1Qs2ox2PDyQFxEhVSgYp.jpg", "order": 20}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c297d", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 5.7, "runtime": 108}, "1677": {"poster_path": "/9hJxDqu3LugA3lQhpEWuvgXJKil.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45916769, "overview": "Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered couping gospel and country together.", "video": false, "id": 1677, "genres": [{"id": 18, "name": "Drama"}], "title": "Ray", "tagline": "The extraordinary life story of Ray Charles. A man who fought harder and went farther than anyone thought possible.", "vote_count": 98, "homepage": "http://movies.uip.de/ray/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0350258", "adult": false, "backdrop_path": "/2JTylhhJLErHdEvj1zSXXmVIWih.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2004-10-11", "popularity": 0.677938803909963, "original_title": "Ray", "budget": 40000000, "cast": [{"name": "Jamie Foxx", "character": "Ray Charles", "id": 134, "credit_id": "52fe430bc3a36847f80363df", "cast_id": 1, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Kerry Washington", "character": "Della Bae Robinson", "id": 11703, "credit_id": "52fe430bc3a36847f80363e3", "cast_id": 2, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 1}, {"name": "Regina King", "character": "Margie Hendricks", "id": 9788, "credit_id": "52fe430bc3a36847f80363e7", "cast_id": 3, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 2}, {"name": "Harry Lennix", "character": "Joe Adams", "id": 9464, "credit_id": "52fe430bc3a36847f80363eb", "cast_id": 4, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 3}, {"name": "Clifton Powell", "character": "Jeff Brown", "id": 58924, "credit_id": "52fe430bc3a36847f80363fb", "cast_id": 7, "profile_path": "/hBw76xJtCwKS2v5rZtzDBqvKLN6.jpg", "order": 4}, {"name": "Bokeem Woodbine", "character": "Fathead Newman", "id": 71913, "credit_id": "52fe430bc3a36847f80363ff", "cast_id": 8, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 5}, {"name": "Sharon Warren", "character": "Aretha Robinson", "id": 1192675, "credit_id": "52fe430bc3a36847f8036407", "cast_id": 10, "profile_path": "/2YYhJAzB4i2Tes0eKbsdvOpiDpC.jpg", "order": 7}, {"name": "C.J. Sanders", "character": "Young Ray Robinson", "id": 1192676, "credit_id": "52fe430bc3a36847f803640b", "cast_id": 11, "profile_path": "/glJ5LqHBFmDqipIaGGjCJLTZmT9.jpg", "order": 8}, {"name": "Curtis Armstrong", "character": "Ahmet Ertegun", "id": 87003, "credit_id": "52fe430bc3a36847f803640f", "cast_id": 12, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 9}, {"name": "Richard Schiff", "character": "Jerry Wexler", "id": 31028, "credit_id": "52fe430bc3a36847f8036413", "cast_id": 13, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 10}, {"name": "Larenz Tate", "character": "Quincy Jones", "id": 18291, "credit_id": "52fe430bc3a36847f8036417", "cast_id": 14, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 11}, {"name": "Terrence Howard", "character": "Gossie McGee", "id": 18288, "credit_id": "52fe430bc3a36847f803641b", "cast_id": 15, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 12}, {"name": "David Krumholtz", "character": "Milt Shaw", "id": 38582, "credit_id": "52fe430bc3a36847f803641f", "cast_id": 16, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 13}, {"name": "Wendell Pierce", "character": "Wilbur Brassfield", "id": 17859, "credit_id": "52fe430bc3a36847f8036423", "cast_id": 17, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 14}, {"name": "Aunjanue Ellis", "character": "Mary Ann Fisher", "id": 53923, "credit_id": "530919589251411102002451", "cast_id": 18, "profile_path": "/tOfsln2Qt3P1jL7TuFiwEPcwFZB.jpg", "order": 15}, {"name": "Chris Thomas King", "character": "Lowell Fulson", "id": 1465, "credit_id": "53091b0492514111050026bd", "cast_id": 19, "profile_path": "/hUeI7GRVoOqpqOeEYObuGIYTuIi.jpg", "order": 16}, {"name": "Thomas Jefferson Byrd", "character": "Jimmy", "id": 98889, "credit_id": "53091dd292514111050026de", "cast_id": 20, "profile_path": "/vzFTalWATMQoQsDciuNUz3Wvv5X.jpg", "order": 17}, {"name": "Rick Gomez", "character": "Tom Dowd", "id": 123532, "credit_id": "53091ec2925141110e0026c7", "cast_id": 21, "profile_path": "/fqxDQWzG4OHZVqgnOqhS2HRSXPt.jpg", "order": 18}, {"name": "Denise Dowse", "character": "Marlene", "id": 23970, "credit_id": "53091eed9251411117002527", "cast_id": 22, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 19}, {"name": "Warwick Davis", "character": "Oberon", "id": 11184, "credit_id": "53091f38925141110e0026d7", "cast_id": 23, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 20}, {"name": "Patrick Bauchau", "character": "Dr. Hacker", "id": 5274, "credit_id": "53091f75925141785e000701", "cast_id": 24, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 21}, {"name": "Robert Wisdom", "character": "Jack Lauderdale", "id": 21505, "credit_id": "53091fcb925141111a002411", "cast_id": 25, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 22}, {"name": "Kurt Fuller", "character": "Sam Clark", "id": 29685, "credit_id": "530920269251411114002453", "cast_id": 26, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 23}], "directors": [{"name": "Taylor Hackford", "department": "Directing", "job": "Director", "credit_id": "52fe430bc3a36847f80363f1", "profile_path": "/heZfdghufTV3t3ayrWvIuiP1jvb.jpg", "id": 18596}], "vote_average": 7.0, "runtime": 152}, "9870": {"poster_path": "/rAXlZmQ3gg4mScySg1kvs0ZLdCb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105173115, "overview": "When Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful Rachel Jansen, Peter is shocked to see not only Aldous Snow in Hawaii, but also Sarah Marshall.", "video": false, "id": 9870, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Forgetting Sarah Marshall", "tagline": "You lose some, you get some.", "vote_count": 311, "homepage": "http://www.forgettingsarahmarshall.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0800039", "adult": false, "backdrop_path": "/m6gLGI5PorxfX1ZeicIQ3UgtvHP.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-04-17", "popularity": 1.2870388995186, "original_title": "Forgetting Sarah Marshall", "budget": 30000000, "cast": [{"name": "Jason Segel", "character": "Peter Bretter", "id": 41088, "credit_id": "52fe453bc3a36847f80c3471", "cast_id": 10, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 0}, {"name": "Kristen Bell", "character": "Sarah Marshall", "id": 40462, "credit_id": "52fe453bc3a36847f80c3475", "cast_id": 11, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Mila Kunis", "character": "Rachel Jansen", "id": 18973, "credit_id": "52fe453bc3a36847f80c3479", "cast_id": 12, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 2}, {"name": "Russell Brand", "character": "Aldous Snow", "id": 59919, "credit_id": "52fe453bc3a36847f80c347d", "cast_id": 13, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 3}, {"name": "Bill Hader", "character": "Brian", "id": 19278, "credit_id": "52fe453bc3a36847f80c3481", "cast_id": 14, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 4}, {"name": "Paul Rudd", "character": "Chuck", "id": 22226, "credit_id": "52fe453bc3a36847f80c348b", "cast_id": 16, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 5}, {"name": "Jack McBrayer", "character": "Darald", "id": 58737, "credit_id": "52fe453bc3a36847f80c348f", "cast_id": 17, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 6}, {"name": "Jonah Hill", "character": "Matthew the Waiter", "id": 21007, "credit_id": "52fe453bc3a36847f80c3493", "cast_id": 18, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 7}, {"name": "Carla Gallo", "character": "Gag Me Girl", "id": 54708, "credit_id": "52fe453bc3a36847f80c3497", "cast_id": 19, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 8}, {"name": "Kristen Wiig", "character": "Yoga Instructor", "id": 41091, "credit_id": "52fe453bc3a36847f80c349b", "cast_id": 20, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 9}, {"name": "William Baldwin", "character": "Detective Hunter Rush", "id": 13021, "credit_id": "52fe453bc3a36847f80c349f", "cast_id": 21, "profile_path": "/wQjXdPYT524QJ0YqKrjPcZWfkHu.jpg", "order": 10}, {"name": "Jason Bateman", "character": "Animal Instincts Detective", "id": 23532, "credit_id": "52fe453bc3a36847f80c34a3", "cast_id": 22, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 11}, {"name": "Maria Thayer", "character": "Wyoma", "id": 59257, "credit_id": "52fe453bc3a36847f80c34a7", "cast_id": 23, "profile_path": "/xrWP4eR5AvmmgiyDKFCu6CvnQQl.jpg", "order": 12}, {"name": "Teila Tuli", "character": "Kemo", "id": 81992, "credit_id": "52fe453bc3a36847f80c34ab", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Steve Landesberg", "character": "Dr. Rosenbaum", "id": 160546, "credit_id": "52fe453bc3a36847f80c34af", "cast_id": 25, "profile_path": "/7iUdJhYM4O1RMHRILBhcKFJ5Sjg.jpg", "order": 14}, {"name": "Branscombe Richmond", "character": "Keoki", "id": 106730, "credit_id": "52fe453bc3a36847f80c34b3", "cast_id": 26, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 15}, {"name": "Billy Bush", "character": "Billy Bush (Himself)", "id": 287341, "credit_id": "52fe453bc3a36847f80c34b7", "cast_id": 27, "profile_path": "/xBomzqbPgyG7SGySt77BKEZ3KMF.jpg", "order": 16}, {"name": "Carla Alapont", "character": "Spanish Sex Girl", "id": 1290175, "credit_id": "52fe453bc3a36847f80c34bb", "cast_id": 28, "profile_path": "/c9Ty0lTIrCtgzDtfmAbj5wTQ8LS.jpg", "order": 17}, {"name": "Ahna O'Reilly", "character": "Leslie", "id": 999605, "credit_id": "552a8db3c3a368565f0038c7", "cast_id": 29, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 18}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe453bc3a36847f80c3443", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 6.3, "runtime": 111}, "9837": {"poster_path": "/tJs9OUfS8WQXrRjoP1jOb8YYvNS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 218613188, "overview": "This is the extraordinary tale of two brothers named Moses and Ramses, one born of royal blood, and one an orphan with a secret past. Growing up the best of friends, they share a strong bond of free-spirited youth and good-natured rivalry. But the truth will ultimately set them at odds, as one becomes the ruler of the most powerful empire on earth, and the other the chosen leader of his people! Their final confrontation will forever change their lives and the world.", "video": false, "id": 9837, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Prince of Egypt", "tagline": "The Power Is Real.", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120794", "adult": false, "backdrop_path": "/1yB6o6L5DLteeraLhz5Q0buBm6i.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "1998-12-15", "popularity": 1.09143270713071, "original_title": "The Prince of Egypt", "budget": 70000000, "cast": [{"name": "Val Kilmer", "character": "Moses/God", "id": 5576, "credit_id": "52fe4537c3a36847f80c2ab7", "cast_id": 1, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Ramesses II", "id": 5469, "credit_id": "52fe4537c3a36847f80c2abb", "cast_id": 2, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Patrick Stewart", "character": "Pharaoh Seti I", "id": 2387, "credit_id": "52fe4537c3a36847f80c2abf", "cast_id": 3, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Zipporah", "id": 1160, "credit_id": "52fe4537c3a36847f80c2ac3", "cast_id": 4, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Sandra Bullock", "character": "Miriam", "id": 18277, "credit_id": "52fe4537c3a36847f80c2b03", "cast_id": 15, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 4}, {"name": "Jeff Goldblum", "character": "Aaron", "id": 4785, "credit_id": "52fe4537c3a36847f80c2b07", "cast_id": 16, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 5}, {"name": "Danny Glover", "character": "Jethro", "id": 2047, "credit_id": "52fe4537c3a36847f80c2b0b", "cast_id": 17, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 6}, {"name": "Helen Mirren", "character": "The Queen", "id": 15735, "credit_id": "52fe4537c3a36847f80c2b0f", "cast_id": 18, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 7}, {"name": "Steve Martin", "character": "Hotep", "id": 67773, "credit_id": "52fe4537c3a36847f80c2b13", "cast_id": 19, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 8}, {"name": "Martin Short", "character": "Huy", "id": 519, "credit_id": "52fe4537c3a36847f80c2b17", "cast_id": 20, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 9}, {"name": "James Avery", "character": "Additional Voices", "id": 51547, "credit_id": "52fe4537c3a36847f80c2b1b", "cast_id": 21, "profile_path": "/iDJcKHZ67yQv8nAeAUhM8PhQxzb.jpg", "order": 10}, {"name": "Amick Byram", "character": "Moses (singing voice)", "id": 169893, "credit_id": "52fe4537c3a36847f80c2b1f", "cast_id": 22, "profile_path": "/sEvKFlflzTZOQJRexuV3djccL5e.jpg", "order": 11}, {"name": "Aria Curzon", "character": "Additional Voices", "id": 91022, "credit_id": "52fe4537c3a36847f80c2b23", "cast_id": 23, "profile_path": "/ae2PTYLqCVdt5Qy0DjJaKe3Ahpc.jpg", "order": 12}, {"name": "Sally Dworsky", "character": "Miriam (singing voice)", "id": 1008838, "credit_id": "52fe4537c3a36847f80c2b27", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Ofra Haza", "character": "Yocheved", "id": 1008866, "credit_id": "52fe4537c3a36847f80c2b2b", "cast_id": 25, "profile_path": "/cRPnkmY9cFM8XP5W594fvqAeZI7.jpg", "order": 14}, {"name": "Brian Stokes Mitchell", "character": "Jethro (singing voice)", "id": 130231, "credit_id": "52fe4537c3a36847f80c2b2f", "cast_id": 26, "profile_path": "/sujUSIccsMwEu8jGCZkvsYhBl8n.jpg", "order": 15}, {"name": "Bobby Motown", "character": "Rameses Son", "id": 1080300, "credit_id": "52fe4537c3a36847f80c2b33", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Eden Riegel", "character": "Young Miriam", "id": 217524, "credit_id": "52fe4537c3a36847f80c2b37", "cast_id": 28, "profile_path": "/wMcRg3Y0x70U1vFoK0hBY7zS20E.jpg", "order": 17}, {"name": "Shira Roth", "character": "Hebrew Child (singing voice)", "id": 191335, "credit_id": "52fe4537c3a36847f80c2b3b", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Stephanie Sawyer", "character": "Additional Voices", "id": 56490, "credit_id": "52fe4537c3a36847f80c2b3f", "cast_id": 30, "profile_path": "/tEj8lLwPEMrLwrjONwyHKm7fgdI.jpg", "order": 19}, {"name": "Linda Shayne", "character": "The Queen (singing voice)", "id": 97753, "credit_id": "52fe4537c3a36847f80c2b43", "cast_id": 31, "profile_path": "/1AwVAyq8bJrEyH8IxKW7jIzkozi.jpg", "order": 20}, {"name": "Francesca Smith", "character": "Additional Voices", "id": 35093, "credit_id": "52fe4537c3a36847f80c2b47", "cast_id": 32, "profile_path": "/8iH6bCFd8FamHPcWvmbIqqQIEXH.jpg", "order": 21}], "directors": [{"name": "Brenda Chapman", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c2ac9", "profile_path": "/3wEdiMLQObBcBbtg131ZRQG2hfK.jpg", "id": 59803}, {"name": "Steve Hickner", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c2acf", "profile_path": "/3pI5lLmKJCeHJ6t0zZYhDjxfiEi.jpg", "id": 44113}, {"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4537c3a36847f80c2ad5", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 6.7, "runtime": 99}, "9874": {"poster_path": "/jnbvydGrfPeSlYnIQ2XI3z3IDmh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160000000, "overview": "A tough-on-crime street cop must protect the only surviving witness to a strange murderous cult with far reaching plans.", "video": false, "id": 9874, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Cobra", "tagline": "The strong arm of the law.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090859", "adult": false, "backdrop_path": "/tonRIZmCmjYNVaM6hRY4xlhEcIH.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Cannon Group", "id": 1444}, {"name": "Golan-Globus", "id": 1445}], "release_date": "1986-05-23", "popularity": 0.703743055901333, "original_title": "Cobra", "budget": 0, "cast": [{"name": "Sylvester Stallone", "character": "Lieutenant Marion 'Cobra' Cobretti", "id": 16483, "credit_id": "52fe453cc3a36847f80c367f", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Brigitte Nielsen", "character": "Ingrid", "id": 921, "credit_id": "52fe453cc3a36847f80c3683", "cast_id": 2, "profile_path": "/sCygCFKnKR3G3yROyfwOIxJf9eM.jpg", "order": 1}, {"name": "Reni Santoni", "character": "Sergeant Gonzales", "id": 14784, "credit_id": "52fe453cc3a36847f80c3687", "cast_id": 3, "profile_path": "/6dNgWQgTgT4u5jeux3gOX34Fjiu.jpg", "order": 2}, {"name": "Andrew Robinson", "character": "Detective Monte", "id": 14782, "credit_id": "52fe453cc3a36847f80c368b", "cast_id": 4, "profile_path": "/bJnqfONR5wdtIciYQ0tBnRX4PnD.jpg", "order": 3}, {"name": "Brian Thompson", "character": "Night Slasher", "id": 2719, "credit_id": "52fe453cc3a36847f80c368f", "cast_id": 5, "profile_path": "/bjBHdq7uPEzrjDk96nNlbDBNKo6.jpg", "order": 4}, {"name": "John Herzfeld", "character": "Cho", "id": 27846, "credit_id": "52fe453dc3a36847f80c36d5", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Lee Garlington", "character": "Nancy Stalk", "id": 23975, "credit_id": "52fe453dc3a36847f80c36d9", "cast_id": 18, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 6}, {"name": "Art LaFleur", "character": "Captain Sears (as Art La Fleur)", "id": 44792, "credit_id": "52fe453dc3a36847f80c36f9", "cast_id": 27, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 7}, {"name": "Marco Rodr\u00edguez", "character": "Supermarket Killer", "id": 73132, "credit_id": "52fe453dc3a36847f80c36dd", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ross St. Phillip", "character": "Security Guard", "id": 1118712, "credit_id": "52fe453dc3a36847f80c36e1", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Val Avery", "character": "Chief Halliwell", "id": 3014, "credit_id": "52fe453dc3a36847f80c36e5", "cast_id": 22, "profile_path": "/jIBEZ5xoM7I5PxG3pW62VeWwYih.jpg", "order": 10}, {"name": "David Rasche", "character": "Dan", "id": 33533, "credit_id": "52fe453dc3a36847f80c36e9", "cast_id": 23, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 11}, {"name": "John Hauk", "character": "Low Rider", "id": 1118713, "credit_id": "52fe453dc3a36847f80c36ed", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Nick Angotti", "character": "Prodski", "id": 154335, "credit_id": "52fe453dc3a36847f80c36f1", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Nina Axelrod", "character": "Waitress", "id": 1118714, "credit_id": "52fe453dc3a36847f80c36f5", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "George P. Cosmatos", "department": "Directing", "job": "Director", "credit_id": "52fe453cc3a36847f80c3695", "profile_path": "/6DIKPjnDvr7oHgTPHTXM5te45Qt.jpg", "id": 16566}], "vote_average": 5.7, "runtime": 87}, "1685": {"poster_path": "/pWXyweaAoFoprRHm9Ft33JakiQB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18999718, "overview": "Astronaut Brent is sent to rescue Taylor but crash lands on the Planet of the Apes, just like Taylor did in the original film. Taylor has disappeared into the Forbidden Zone so Brent and Nova try to follow and find him. He discovers a cult of humans that fear the Apes' latest military movements and finds himself in the middle. Tension mounts to a climactic battle between ape and man deep in the bowels of the planet.", "video": false, "id": 1685, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Beneath the Planet of the Apes", "tagline": "An army of civilized apes...A fortress of radiation-crazed super humans...Earth's final battle is about to begin - Beneath the atomic rubble of what was once the city of New York!", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2BQc7pXBU7zWGWMJDQBDuV5X8ra.jpg", "poster_path": "/n9nUdnx1awdQeHC6FTiNohr2fiT.jpg", "id": 1709, "name": "Planet of the Apes (Original) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065462", "adult": false, "backdrop_path": "/nCZGEteVNXNzL3dH5Q4T41yxAfI.jpg", "production_companies": [{"name": "APJAC Productions", "id": 12943}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1970-05-26", "popularity": 0.373538964008726, "original_title": "Beneath the Planet of the Apes", "budget": 3000000, "cast": [{"name": "James Franciscus", "character": "Brent", "id": 18643, "credit_id": "52fe430cc3a36847f8036787", "cast_id": 17, "profile_path": "/rXHGxnJK4QunvpnrOT5NhgEg824.jpg", "order": 0}, {"name": "Kim Hunter", "character": "Dr. Zira", "id": 10539, "credit_id": "52fe430cc3a36847f803678b", "cast_id": 18, "profile_path": "/nB44EysedphcIWftSqyyG2qBYk8.jpg", "order": 1}, {"name": "Maurice Evans", "character": "Dr. Zaius", "id": 12023, "credit_id": "52fe430cc3a36847f803678f", "cast_id": 19, "profile_path": "/tpb69FMfZVErJzpyipYQBGsIRp.jpg", "order": 2}, {"name": "Linda Harrison", "character": "Nova", "id": 13260, "credit_id": "52fe430cc3a36847f80367ab", "cast_id": 25, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 3}, {"name": "Paul Richards", "character": "Mendez", "id": 18645, "credit_id": "52fe430cc3a36847f8036797", "cast_id": 21, "profile_path": "/3KpOkgTmJTV0ciCpbv3qkoEPE5O.jpg", "order": 4}, {"name": "Charlton Heston", "character": "Taylor", "id": 10017, "credit_id": "52fe430cc3a36847f8036783", "cast_id": 16, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 5}, {"name": "David Watson", "character": "Cornelius", "id": 18644, "credit_id": "52fe430cc3a36847f8036793", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Thomas Gomez", "character": "Minister", "id": 18646, "credit_id": "52fe430cc3a36847f803679b", "cast_id": 22, "profile_path": "/7CNFFi9FG1Jc6ngmnZY3MGcK4zx.jpg", "order": 7}, {"name": "Victor Buono", "character": "Fat Man", "id": 24811, "credit_id": "549d98cdc3a3682f21005fdf", "cast_id": 27, "profile_path": "/dtD3eiFF4YIVJsxEKchtNvWOrKH.jpg", "order": 8}, {"name": "James Gregory", "character": "Ursus", "id": 14732, "credit_id": "549d98dec3a3682f1b005fd9", "cast_id": 28, "profile_path": "/xOpEhGx9Qupfdfo3KUaA0DHxbko.jpg", "order": 9}, {"name": "Jeff Corey", "character": "Caspay", "id": 9596, "credit_id": "549d98ebc3a3680b2700513f", "cast_id": 29, "profile_path": "/jlc4DLs99u7f9HOoco3dv5DBAoJ.jpg", "order": 10}, {"name": "Natalie Trundy", "character": "Albina", "id": 18648, "credit_id": "549d98fd9251413123005f68", "cast_id": 30, "profile_path": "/50ljrtCFeFQRFURoSgf1hrgdCPw.jpg", "order": 11}, {"name": "Don Pedro Colley", "character": "Ongaro", "id": 9222, "credit_id": "549d990dc3a3682f23006258", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Tod Andrews", "character": "Skipper", "id": 99890, "credit_id": "549d991dc3a3682f21005fe8", "cast_id": 32, "profile_path": "/noIGXslu61uT0NR4Wf1k6gvklbL.jpg", "order": 13}, {"name": "Gregory Sierra", "character": "Verger", "id": 18914, "credit_id": "549d9939c3a3680b27005145", "cast_id": 33, "profile_path": "/lbF2GRIs3juRAzfevwsUOq5PzFF.jpg", "order": 14}, {"name": "Eldon Burke", "character": "Gorilla Sgt.", "id": 1404408, "credit_id": "549d99489251414e28001962", "cast_id": 34, "profile_path": null, "order": 15}], "directors": [{"name": "Ted Post", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f803673d", "profile_path": "/knADACiRl8Bn45BXNb0RDy3BfVf.jpg", "id": 18635}], "vote_average": 6.4, "runtime": 95}, "206487": {"poster_path": "/kDdUtDsGMQ3OYwoBtEQyJIGPz4V.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 3000000, "overview": "Predestination chronicles the life of a Temporal Agent (Ethan Hawke) sent on an intricate series of time-travel journeys designed to prevent future killers from committing their crimes. Now, on his final assignment, the Agent must stop the one criminal that has eluded him throughout time and prevent a devastating attack in which thousands of lives will be lost.", "video": false, "id": 206487, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predestination", "tagline": "To save the future he must reshape the past.", "vote_count": 365, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2397535", "adult": false, "backdrop_path": "/s9DKwK5fXzaqFOzkZkidkOk4KR9.jpg", "production_companies": [{"name": "Screen Queensland", "id": 10950}, {"name": "Screen Australia", "id": 7584}, {"name": "Blacklab Entertainment", "id": 15392}, {"name": "Wolfhound Pictures", "id": 15393}], "release_date": "2014-08-28", "popularity": 3.05949862520321, "original_title": "Predestination", "budget": 5500000, "cast": [{"name": "Ethan Hawke", "character": "The Bartender", "id": 569, "credit_id": "52fe4d1fc3a368484e1d81c3", "cast_id": 10, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Sarah Snook", "character": "The Unmarried Mother", "id": 235416, "credit_id": "52fe4d1fc3a368484e1d81cb", "cast_id": 12, "profile_path": "/dvAVmiGlckhgqCfhAdTrcUudHOp.jpg", "order": 1}, {"name": "Noah Taylor", "character": "Mr. Robertson", "id": 1284, "credit_id": "52fe4d1fc3a368484e1d81c7", "cast_id": 11, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 2}, {"name": "Christopher Kirby", "character": "Agent Miles", "id": 75175, "credit_id": "52fe4d1fc3a368484e1d81cf", "cast_id": 13, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 3}, {"name": "Madeleine West", "character": "Mrs. Stapleton", "id": 213144, "credit_id": "52fe4d1fc3a368484e1d81d3", "cast_id": 14, "profile_path": "/u1VxEsvpoM24KKqGXPgL2E8h5XG.jpg", "order": 4}, {"name": "Jim Knobeloch", "character": "Dr. Belfort", "id": 199432, "credit_id": "52fe4d1fc3a368484e1d81d7", "cast_id": 15, "profile_path": "/ndiYsn4J7bBk5gJ3aVKkF3RFLkh.jpg", "order": 5}, {"name": "Freya Stafford", "character": "Alice", "id": 199313, "credit_id": "52fe4d1fc3a368484e1d81db", "cast_id": 16, "profile_path": "/oS4CqDNpVdiKEu0b3RhqDBRvawv.jpg", "order": 6}, {"name": "Elise Jansen", "character": "Nurse", "id": 1189135, "credit_id": "52fe4d1fc3a368484e1d81df", "cast_id": 17, "profile_path": "/ub9fdbtpW0SYAXRSTNVpbBVxn89.jpg", "order": 7}, {"name": "Tyler Coppin", "character": "Dr. Heinlein", "id": 152548, "credit_id": "52fe4d1fc3a368484e1d81e3", "cast_id": 18, "profile_path": "/pBHo8xcl4kllgUZ3WyvDzxmTJGB.jpg", "order": 8}, {"name": "Christopher Stollery", "character": "The Interviewer", "id": 126341, "credit_id": "52fe4d1fc3a368484e1d81e7", "cast_id": 19, "profile_path": "/a3h7DWac9sqGKsvlxYkBnS0ukyb.jpg", "order": 9}, {"name": "Christopher Sommers", "character": "Miller", "id": 1014586, "credit_id": "52fe4d1fc3a368484e1d81eb", "cast_id": 20, "profile_path": "/oppFEX1hbhxxqMYfHJoCxKltYEj.jpg", "order": 10}, {"name": "Kuni Hashimoto", "character": "Dr. Fujimoto", "id": 1004719, "credit_id": "54bf7b7dc3a368404600a0da", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Sara El-Yafi", "character": "Lab Technician", "id": 1416430, "credit_id": "54bf7c7d9251416eae007f1e", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Paul Moder", "character": "Boxing Commentator 1", "id": 108676, "credit_id": "54bf7e529251416e9b008946", "cast_id": 31, "profile_path": "/hcI1RffqwBglMHmV7J8IUyrgTXw.jpg", "order": 13}, {"name": "Grant Piro", "character": "Boxing Commentator 2 / News Report Announcer", "id": 66746, "credit_id": "54bf7fd6c3a368142100b7dc", "cast_id": 32, "profile_path": "/yk0nm8eU81yyEMrc1ZB6M2viHal.jpg", "order": 14}, {"name": "Christopher Bunworth", "character": "Jerry", "id": 77552, "credit_id": "54bfa22f92514148b000c8ae", "cast_id": 33, "profile_path": "/qWKYjTNtnLqOtVBAS63xr4Mrh2J.jpg", "order": 15}, {"name": "Jamie Gleeson", "character": "Dirty Hippy", "id": 1416504, "credit_id": "54bfa2789251416eae008312", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Christina Tan", "character": "Female Reporter", "id": 1416506, "credit_id": "54bfa329c3a3686c6100ea07", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Dennis Coard", "character": "Mayor Davidson", "id": 1023661, "credit_id": "54bfa4ff9251411d7700f3e9", "cast_id": 36, "profile_path": "/3PibhzdBpUNfDzIdO5gZx9t5W4N.jpg", "order": 18}, {"name": "Milla Simmonds", "character": "Baby Jane 1", "id": 1416510, "credit_id": "54bfa5289251413635009792", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Ruby Simmonds", "character": "Baby Jane 1", "id": 1416511, "credit_id": "54bfa55ac3a3687c4000916e", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Cate Wolfe", "character": "Beth", "id": 1325993, "credit_id": "54bfa696c3a3687c400091a6", "cast_id": 39, "profile_path": "/d6Iiz2xRND9UECIrFnze6pAcUv8.jpg", "order": 21}, {"name": "Ben Prendergast", "character": "Dr, Clarke", "id": 1416517, "credit_id": "54bfa754c3a3686c6100ea8c", "cast_id": 40, "profile_path": "/usfQT3HQT5dCYryDXh29pPiYc1G.jpg", "order": 22}, {"name": "Carmen Warrington", "character": "Grace", "id": 1416523, "credit_id": "54bfa8d6c3a3681da00064f8", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Sharon Kershaw", "character": "Abigail", "id": 1416526, "credit_id": "54bfaa809251416eae0083c6", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Charlie Alexander-Powell", "character": "Baby Jane 2", "id": 1416527, "credit_id": "54bfaabdc3a3686c6b011dbd", "cast_id": 43, "profile_path": null, "order": 25}, {"name": "Smith Alexander-Powell", "character": "Baby Jane 2", "id": 1416529, "credit_id": "54bfaaf09251416eae0083d4", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Olivia Sprague", "character": "Jane 5yo", "id": 1416532, "credit_id": "54bfab679251413635009825", "cast_id": 45, "profile_path": "/lV008RZiHOCFyebqjhhhmKwYhvs.jpg", "order": 27}, {"name": "Katie Avram", "character": "Ice Cream Daughter", "id": 1416534, "credit_id": "54bfad09c3a3687c40009240", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Melissa Avram", "character": "Ice Cream Mother", "id": 1416536, "credit_id": "54bfad5e92514148f000d125", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Giordano Gangl", "character": "Ice Cream Vendor", "id": 1416537, "credit_id": "54bfae4d92514148f000d139", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Tony Nikolakopoulos", "character": "Driver", "id": 75659, "credit_id": "54bfb068c3a368145e00dae8", "cast_id": 49, "profile_path": "/7l8C1jFVFRONZ023nPRcqGmTB62.jpg", "order": 31}, {"name": "Monique Heath", "character": "Jane 10yo", "id": 1416540, "credit_id": "54bfb0c3925141363500989e", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Sophie Cusworth", "character": "Older Fighting Girl", "id": 1416547, "credit_id": "54bfb5d8c3a368145e00db62", "cast_id": 51, "profile_path": null, "order": 33}, {"name": "Finegan Sampson", "character": "Fighting Boy", "id": 1416548, "credit_id": "54bfb6659251416eae0084c1", "cast_id": 52, "profile_path": null, "order": 34}, {"name": "David Rock", "character": "Orphanage Administrator 1", "id": 1416777, "credit_id": "54c0ba229251412432001101", "cast_id": 53, "profile_path": null, "order": 35}, {"name": "Richard Whybrow", "character": "Orphanage Administrator 2", "id": 1416778, "credit_id": "54c0ba77925141315a003676", "cast_id": 54, "profile_path": null, "order": 36}, {"name": "Felicity Steel", "character": "Mrs. Rosenblum", "id": 1416780, "credit_id": "54c0bcb6c3a3686c61010630", "cast_id": 55, "profile_path": null, "order": 37}, {"name": "Lucinda Armstrong Hall", "character": "Blonde Classmate", "id": 1416783, "credit_id": "54c0bdcf925141248900117a", "cast_id": 56, "profile_path": "/r7d6cm5ZY3tOXCoQH8K6GuAG00U.jpg", "order": 38}, {"name": "Lucinda Armstrong Hall", "character": "Blonde Classmate", "id": 1416784, "credit_id": "54c0bdeec3a368789b001252", "cast_id": 57, "profile_path": null, "order": 39}, {"name": "Maja Sarosiek", "character": "Space Corp Receptionist", "id": 1416785, "credit_id": "54c0bf0b92514124c80010b6", "cast_id": 58, "profile_path": null, "order": 40}, {"name": "Vanessa Crouch", "character": "Recruit 1", "id": 1416786, "credit_id": "54c0bf4cc3a36878fb001038", "cast_id": 59, "profile_path": null, "order": 41}, {"name": "Eliza D'Souza", "character": "Recruit 2", "id": 1416789, "credit_id": "54c0bfd092514124c80010c4", "cast_id": 60, "profile_path": null, "order": 42}, {"name": "Sophie Van Den Akker", "character": "Recruit 3", "id": 1416790, "credit_id": "54c0c20dc3a3687c4000b355", "cast_id": 61, "profile_path": "/l7vAGXgNJVU5W9MojQcc4vAv12y.jpg", "order": 43}, {"name": "Madeleine Dixon", "character": "Recruit 4", "id": 1416792, "credit_id": "54c0c30b9251416eae00a1d7", "cast_id": 62, "profile_path": null, "order": 44}, {"name": "Hayley Butcher", "character": "Recruit 5", "id": 1416794, "credit_id": "54c0c388c3a368792c001145", "cast_id": 63, "profile_path": "/4TO8WKAS2jwZaSQdqgfUiurtiAx.jpg", "order": 45}, {"name": "Rebecca Cullinan", "character": "Dumb Girl Recruit", "id": 1416859, "credit_id": "54c0e99c9251416e6000ae25", "cast_id": 64, "profile_path": null, "order": 46}, {"name": "Alicia Pavlis", "character": "Hooker Girl Recruit", "id": 1416861, "credit_id": "54c0ea6a92514124890015f5", "cast_id": 65, "profile_path": "/b2s5N5axpyWMZ6tgyjcYeFiQvGM.jpg", "order": 47}, {"name": "Ewa Bartecki", "character": "Lazy Girl Recruit", "id": 1416862, "credit_id": "54c0eb5692514124c8001494", "cast_id": 66, "profile_path": null, "order": 48}, {"name": "Arielle O'Neill", "character": "Nauseous Girl", "id": 1416868, "credit_id": "54c0ee24925141315a003b7e", "cast_id": 67, "profile_path": "/hU9S9NUD3MTwHME7xG2DPH8n6pO.jpg", "order": 49}, {"name": "Alexis Fernandez", "character": "Marcy", "id": 1366390, "credit_id": "54c0ef8f925141244600156f", "cast_id": 68, "profile_path": "/oHCWTNVVU82eLqvO4zDft7jQvfi.jpg", "order": 50}, {"name": "Kristie Jandric", "character": "Physical Fitness Trainer", "id": 1245746, "credit_id": "54c0f183c3a3686c61010a92", "cast_id": 69, "profile_path": "/o5xf7PaqdGkevPXttGKC0eTAKks.jpg", "order": 51}, {"name": "Marky Lee Campbell", "character": "Trainer's Assistant", "id": 1416897, "credit_id": "54c0f406c3a3686c61010ac7", "cast_id": 70, "profile_path": "/1VVU496R3nv77IzDOMGowNdZAsC.jpg", "order": 52}, {"name": "Rob Jenkins", "character": "Mr. Jones", "id": 56497, "credit_id": "54c0f747c3a3687c4000b920", "cast_id": 71, "profile_path": "/2REXmWTxi7hFyBVvIO6ijpKyQ2.jpg", "order": 53}, {"name": "Raj Sidhu", "character": "Dr. Baldwin", "id": 1416910, "credit_id": "54c0f7c9c3a368789b001836", "cast_id": 72, "profile_path": null, "order": 54}, {"name": "Annabelle Norman", "character": "Suburban Daughter", "id": 1416913, "credit_id": "54c0f83c925141315a003c66", "cast_id": 73, "profile_path": null, "order": 55}, {"name": "Scott Norman", "character": "Suburban Father", "id": 1416914, "credit_id": "54c0f8abc3a3687929001856", "cast_id": 74, "profile_path": null, "order": 56}, {"name": "Kristen Norman", "character": "Suburban Mother", "id": 1416915, "credit_id": "54c0f8df925141315a003c79", "cast_id": 75, "profile_path": null, "order": 57}, {"name": "Michael Norman", "character": "Suburban Son", "id": 1416916, "credit_id": "54c0f926c3a368792900186e", "cast_id": 76, "profile_path": null, "order": 58}, {"name": "Louise Talmadge", "character": "Mrs. Garner", "id": 1416917, "credit_id": "54c0f96692514124c80015e0", "cast_id": 77, "profile_path": null, "order": 59}, {"name": "Carolyn Shakespeare-Allen", "character": "Older Nurse", "id": 1416922, "credit_id": "54c0fc1c92514124890017a8", "cast_id": 78, "profile_path": null, "order": 60}, {"name": "Noel Herriman", "character": "Dr. Davis", "id": 1416923, "credit_id": "54c0fdd69251416eae00a730", "cast_id": 79, "profile_path": null, "order": 61}, {"name": "Ray Tiernan", "character": "Conner", "id": 1416924, "credit_id": "54c0ff019251416eae00a742", "cast_id": 80, "profile_path": null, "order": 62}], "directors": [{"name": "Michael Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe4d1fc3a368484e1d818f", "profile_path": "/3Y2ofBarFPKzAlpC6GeEXC2rv0A.jpg", "id": 56501}, {"name": "Peter Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe4d1fc3a368484e1d8195", "profile_path": null, "id": 56502}], "vote_average": 7.1, "runtime": 97}, "157336": {"poster_path": "/nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 621752480, "overview": "Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", "video": false, "id": 157336, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Interstellar", "tagline": "Mankind was born on Earth. It was never meant to die here.", "vote_count": 2025, "homepage": "http://www.interstellarmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0816692", "adult": false, "backdrop_path": "/xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Paramount Pictures", "id": 4}, {"name": "Legendary Pictures", "id": 923}, {"name": "Syncopy", "id": 9996}, {"name": "Lynda Obst Productions", "id": 13769}], "release_date": "2014-11-05", "popularity": 30.8576311034797, "original_title": "Interstellar", "budget": 165000000, "cast": [{"name": "Matthew McConaughey", "character": "Cooper", "id": 10297, "credit_id": "52fe4bbf9251416c910e47cb", "cast_id": 9, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Brand", "id": 1813, "credit_id": "52fe4bbf9251416c910e47cf", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Jessica Chastain", "character": "Murph", "id": 83002, "credit_id": "52fe4bbf9251416c910e47f1", "cast_id": 17, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 2}, {"name": "Michael Caine", "character": "Professor Brand", "id": 3895, "credit_id": "52fe4bbf9251416c910e47f5", "cast_id": 18, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Casey Affleck", "character": "Tom", "id": 1893, "credit_id": "52fe4bbf9251416c910e4805", "cast_id": 21, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 4}, {"name": "Ellen Burstyn", "character": "Old Murph", "id": 9560, "credit_id": "52fe4bbf9251416c910e4809", "cast_id": 22, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 5}, {"name": "Matt Damon", "character": "Dr. Mann", "id": 1892, "credit_id": "52fe4bbf9251416c910e482d", "cast_id": 31, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 6}, {"name": "John Lithgow", "character": "Donald", "id": 12074, "credit_id": "52fe4bbf9251416c910e4815", "cast_id": 25, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 7}, {"name": "Timoth\u00e9e Chalamet", "character": "Young Tom", "id": 1190668, "credit_id": "52fe4bbf9251416c910e480d", "cast_id": 23, "profile_path": "/modd4Fp0OCkEIgSTYcejZMxgPr1.jpg", "order": 8}, {"name": "Mackenzie Foy", "character": "Young Murph", "id": 851784, "credit_id": "52fe4bbf9251416c910e4811", "cast_id": 24, "profile_path": "/sC3yotsYEmqoxuaO2xnnqGee4U.jpg", "order": 9}, {"name": "Wes Bentley", "character": "Doyle", "id": 8210, "credit_id": "52fe4bbf9251416c910e4821", "cast_id": 28, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 10}, {"name": "Bill Irwin", "character": "TARS (voice)", "id": 58549, "credit_id": "52fe4bbf9251416c910e4819", "cast_id": 26, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 11}, {"name": "Topher Grace", "character": "Getty", "id": 17052, "credit_id": "52fe4bbf9251416c910e481d", "cast_id": 27, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 12}, {"name": "David Oyelowo", "character": "Principal", "id": 35013, "credit_id": "52fe4bbf9251416c910e4825", "cast_id": 29, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 13}, {"name": "David Gyasi", "character": "Romilly", "id": 55411, "credit_id": "52fe4bbf9251416c910e4829", "cast_id": 30, "profile_path": "/6UgJLtCkGC2YHIK7FwAdGcFbT88.jpg", "order": 14}, {"name": "William Devane", "character": "NASA Board Member", "id": 21416, "credit_id": "54259750c3a3680876005f94", "cast_id": 37, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 15}, {"name": "Josh Stewart", "character": "CASE (voice)", "id": 40039, "credit_id": "545db7ab0e0a261fb6005d65", "cast_id": 38, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 16}, {"name": "Collette Wolfe", "character": "Ms. Kelly", "id": 86624, "credit_id": "545db7d70e0a261fb6005d6f", "cast_id": 39, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 17}, {"name": "Leah Cairns", "character": "Lois", "id": 32202, "credit_id": "545db7f5c3a3686cbb000db6", "cast_id": 40, "profile_path": "/Asuotouxe6Se3stoMP7vrLE1EaD.jpg", "order": 18}, {"name": "Russ Fega", "character": "Crew Chief", "id": 535, "credit_id": "55191d18c3a3684b6b002414", "cast_id": 141, "profile_path": "/7JFQueMbXqGIz16wKBlok7WfNNz.jpg", "order": 19}, {"name": "Lena Georgas", "character": "Nurse Practitioner", "id": 171901, "credit_id": "55191d5b9251416f0000706f", "cast_id": 142, "profile_path": "/a16eFCpLMJ6n2RoOPej372XzWX.jpg", "order": 20}, {"name": "Jeff Hephner", "character": "Doctor", "id": 212689, "credit_id": "55191d8bc3a3682aa8000cb4", "cast_id": 143, "profile_path": "/bNnvbOCBS0LZAqdT1cW2UcrnRw2.jpg", "order": 21}, {"name": "Elyes Gabel", "character": "Administrator", "id": 78050, "credit_id": "55191db092514115000044c3", "cast_id": 144, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 22}, {"name": "Brooke Smith", "character": "Nurse", "id": 31649, "credit_id": "55191dd7c3a3684bd80022dc", "cast_id": 145, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 23}, {"name": "Liam Dickinson", "character": "Coop", "id": 1452481, "credit_id": "55287dde92514111d600086d", "cast_id": 146, "profile_path": null, "order": 24}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4bbf9251416c910e47c1", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 8.4, "runtime": 169}, "9882": {"poster_path": "/A1RE1zw37lfLLkFy7H3TYp239td.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40934175, "overview": "The secret US abduction of a suspected terrorist leads to a wave of terrorist attacks in New York that lead to the declaration of martial law.", "video": false, "id": 9882, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Siege", "tagline": "On November 6th our freedom is history", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0133952", "adult": false, "backdrop_path": "/3zQzN87U8pJgLDvVRZ6zj05jEYw.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Bedford Falls Company", "id": 3059}], "release_date": "1998-11-05", "popularity": 0.69963240412146, "original_title": "The Siege", "budget": 70000000, "cast": [{"name": "Denzel Washington", "character": "Anthony 'Hub' Hubbard", "id": 5292, "credit_id": "52fe4540c3a36847f80c3aff", "cast_id": 9, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Annette Bening", "character": "Elise Kraft / Sharon Bridger", "id": 516, "credit_id": "52fe4540c3a36847f80c3b03", "cast_id": 10, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Bruce Willis", "character": "Major-General William Devereaux", "id": 62, "credit_id": "52fe4540c3a36847f80c3b07", "cast_id": 11, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 2}, {"name": "Tony Shalhoub", "character": "Agent Frank Haddad", "id": 4252, "credit_id": "52fe4540c3a36847f80c3b0b", "cast_id": 12, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 3}, {"name": "Sami Bouajila", "character": "Samir Nazhde", "id": 20667, "credit_id": "52fe4540c3a36847f80c3b0f", "cast_id": 13, "profile_path": "/yhO2glkC0jqzPAWjJePHdMByRP3.jpg", "order": 4}, {"name": "Mark Valley", "character": "FBI Agent Mike Johanssen", "id": 136530, "credit_id": "52fe4540c3a36847f80c3b13", "cast_id": 14, "profile_path": "/bWCr7EhKM0aB19fONmeGcetMlQa.jpg", "order": 5}, {"name": "Jack Gwaltney", "character": "Fred Darius", "id": 159850, "credit_id": "52fe4540c3a36847f80c3b17", "cast_id": 15, "profile_path": "/umRHAAGWzE0jh88JWnC2w1UHL53.jpg", "order": 6}, {"name": "David Proval", "character": "Danny Sussman", "id": 2555, "credit_id": "52fe4540c3a36847f80c3b1b", "cast_id": 16, "profile_path": "/ujBzP61tYlwqWpB3oOxknl1XuEg.jpg", "order": 7}, {"name": "Lance Reddick", "character": "FBI Agent Floyd Rose", "id": 129101, "credit_id": "52fe4540c3a36847f80c3b1f", "cast_id": 17, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 8}, {"name": "Aasif Mandvi", "character": "Khalil Saleh", "id": 20644, "credit_id": "52fe4540c3a36847f80c3b23", "cast_id": 18, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 9}, {"name": "Wood Harris", "character": "Officer Henderson", "id": 65829, "credit_id": "52fe4540c3a36847f80c3b27", "cast_id": 19, "profile_path": "/u88haG6iG7zwV0PTk9tSG5obaeP.jpg", "order": 10}, {"name": "David Costabile", "character": "Fingerprint Expert", "id": 82167, "credit_id": "52fe4540c3a36847f80c3b2b", "cast_id": 20, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 11}, {"name": "Said Faraj", "character": "Sleeper terrorist", "id": 109670, "credit_id": "52fe4540c3a36847f80c3b2f", "cast_id": 21, "profile_path": "/kC26rThX0RbOHzddmSdhqVqnxrF.jpg", "order": 12}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe4540c3a36847f80c3ad1", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.1, "runtime": 116}, "1691": {"poster_path": "/1jDKYjo6pUR8K69oTFE8PMjefTt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35246833, "overview": "4 beautiful college students are tricked into entering a hostel where the 'hosts' like to torture, rape and murder. Following a geographical tour of Slovakia, three women are lured into a hostel by a handsome young man who sells them to the twisted masters, who tie them up and bring upon an unthinkable world of pain", "video": false, "id": 1691, "genres": [{"id": 27, "name": "Horror"}], "title": "Hostel: Part II", "tagline": "", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rXf4gEh8m3ZcK9KHkxT78Kscxee.jpg", "poster_path": "/2jLQFRlH8CC9cptcANY5cEtC1q8.jpg", "id": 86578, "name": "Hostel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0498353", "adult": false, "backdrop_path": "/lshpN0UfiHqan1G9HalSUQVTJdJ.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}, {"name": "Screen Gems", "id": 3287}, {"name": "Next Entertainment", "id": 1633}], "release_date": "2007-06-08", "popularity": 0.692374892067911, "original_title": "Hostel: Part II", "budget": 10200000, "cast": [{"name": "Lauren German", "character": "Beth", "id": 37014, "credit_id": "52fe430cc3a36847f8036b11", "cast_id": 13, "profile_path": "/7TdS4sFvBzUDahM65VWVYXcFXH2.jpg", "order": 0}, {"name": "Bijou Phillips", "character": "Whitney", "id": 11671, "credit_id": "52fe430cc3a36847f8036b19", "cast_id": 15, "profile_path": "/qsgjswOAcTeRQCfYqDJK2Ke4te8.jpg", "order": 1}, {"name": "Heather Matarazzo", "character": "Lorna", "id": 33656, "credit_id": "52fe430cc3a36847f8036b15", "cast_id": 14, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 2}, {"name": "Richard Burgi", "character": "Todd", "id": 25849, "credit_id": "52fe430cc3a36847f8036b1d", "cast_id": 16, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 3}, {"name": "Roger Bart", "character": "Stuart", "id": 45566, "credit_id": "52fe430dc3a36847f8036b45", "cast_id": 26, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 4}, {"name": "Vera Jordanova", "character": "Axelle", "id": 37015, "credit_id": "52fe430cc3a36847f8036b21", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Jay Hernandez", "character": "Paxton", "id": 19487, "credit_id": "52fe430cc3a36847f8036b25", "cast_id": 18, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 6}, {"name": "Jordan Ladd", "character": "Stephanie", "id": 20492, "credit_id": "52fe430dc3a36847f8036b29", "cast_id": 19, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 7}, {"name": "Stanislav Ianevski", "character": "Miroslav", "id": 11290, "credit_id": "52fe430dc3a36847f8036b2d", "cast_id": 20, "profile_path": "/rfsv03YZfB2cv2y26IzgdnuyuBl.jpg", "order": 8}, {"name": "Zuzana Geislerov\u00e1", "character": "Inya", "id": 37016, "credit_id": "52fe430dc3a36847f8036b31", "cast_id": 21, "profile_path": "/bk8janB6nETOz2ZTJ2onHrDFViH.jpg", "order": 9}, {"name": "Milan K\u0148a\u017eko", "character": "Sasha", "id": 37017, "credit_id": "52fe430dc3a36847f8036b35", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Petr Van\u010dura", "character": "Pavel", "id": 37018, "credit_id": "52fe430dc3a36847f8036b39", "cast_id": 23, "profile_path": "/7HZlywkn7UwnMPM2rrefVaUi8o1.jpg", "order": 11}, {"name": "Roman Janecka", "character": "Roman", "id": 37019, "credit_id": "52fe430dc3a36847f8036b3d", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Davide Dominici", "character": "Riccardo", "id": 37020, "credit_id": "52fe430dc3a36847f8036b41", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Edwige Fenech", "character": "Art Class Professor", "id": 44434, "credit_id": "52fe430dc3a36847f8036b49", "cast_id": 27, "profile_path": "/fz85mynMO5i2lyLhQsS2Cg9PCmS.jpg", "order": 14}, {"name": "Liliya Malkina", "character": "Make-Up Woman", "id": 45568, "credit_id": "52fe430dc3a36847f8036b4d", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Luc Merenda", "character": "Italian Detective", "id": 36913, "credit_id": "52fe430dc3a36847f8036b51", "cast_id": 29, "profile_path": "/uSM73n88qekWYfcReVv9CROsvH6.jpg", "order": 16}, {"name": "Susanna Bequer", "character": "Italian Translator", "id": 45570, "credit_id": "52fe430dc3a36847f8036b55", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Monika Malacova", "character": "Mrs. Barthory", "id": 45571, "credit_id": "52fe430dc3a36847f8036b59", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Ruggero Deodato", "character": "Cannibal", "id": 45572, "credit_id": "52fe430dc3a36847f8036b5d", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "Eli Roth", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f8036ad7", "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "id": 16847}], "vote_average": 5.8, "runtime": 93}, "9884": {"poster_path": "/o5TScwlDu3uPzbqZ5IYwlUtMP4O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78382433, "overview": "Firefighter Gordon Brewer is plunged into the complex and dangerous world of international terrorism after he loses his wife and child in a bombing credited to Claudio \"The Wolf\" Perrini.", "video": false, "id": 9884, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Collateral Damage", "tagline": "What would you do if you lost everything?", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0233469", "adult": false, "backdrop_path": "/84MR5ejizt57QpulfR4FXN8gA4h.jpg", "production_companies": [{"name": "David Foster Productions", "id": 496}, {"name": "Hacienda Productions", "id": 43717}, {"name": "Warner Bros.", "id": 6194}, {"name": "Bel Air Entertainment", "id": 788}], "release_date": "2002-02-08", "popularity": 0.798874523304468, "original_title": "Collateral Damage", "budget": 85000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Gordy Brewer", "id": 1100, "credit_id": "52fe4540c3a36847f80c3c0d", "cast_id": 14, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Francesca Neri", "character": "Selena Perrini", "id": 3809, "credit_id": "52fe4540c3a36847f80c3c11", "cast_id": 15, "profile_path": "/A6vL0QH8TjxjLBLAZW47XGBLNE8.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Peter Brandt", "id": 13550, "credit_id": "52fe4540c3a36847f80c3c15", "cast_id": 16, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Cliff Curtis", "character": "Claudio Perrini", "id": 7248, "credit_id": "52fe4540c3a36847f80c3c19", "cast_id": 17, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 3}, {"name": "John Turturro", "character": "Sean Amstrong", "id": 1241, "credit_id": "52fe4540c3a36847f80c3c1d", "cast_id": 18, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 4}, {"name": "John Leguizamo", "character": "Felix Ramirez", "id": 5723, "credit_id": "52fe4540c3a36847f80c3c21", "cast_id": 19, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 5}, {"name": "Harry Lennix", "character": "FBI Agent Dray", "id": 9464, "credit_id": "52fe4540c3a36847f80c3c25", "cast_id": 20, "profile_path": "/uwpRytLjzz1IvjNanYNlplPVal9.jpg", "order": 6}, {"name": "Lindsay Frost", "character": "Anne Brewer", "id": 26294, "credit_id": "52fe4540c3a36847f80c3c29", "cast_id": 21, "profile_path": "/2TOoIVvS74g05wgj9MzgzLMtJOU.jpg", "order": 7}, {"name": "Tyler Posey", "character": "Mauro", "id": 53280, "credit_id": "536557170e0a2647c8001b43", "cast_id": 25, "profile_path": "/mkh15TUgPCq8AyEm65dno1VPxu0.jpg", "order": 8}, {"name": "Michael Milhoan", "character": "Jack", "id": 154295, "credit_id": "54b296dd92514107e000325b", "cast_id": 97, "profile_path": null, "order": 9}, {"name": "Rick Worthy", "character": "Ronnie", "id": 61545, "credit_id": "54b296f892514107e0003263", "cast_id": 98, "profile_path": "/vaKDRpwvKj24AHNKmZX22v4OLwK.jpg", "order": 10}, {"name": "Madison Mason", "character": "Undersecretary Shrub", "id": 118756, "credit_id": "54b2972792514107e0003266", "cast_id": 99, "profile_path": "/t3FdfHpAVx7wYcZFWk1WmowsKBv.jpg", "order": 11}, {"name": "Miguel Sandoval", "character": "Joe Phipps", "id": 30488, "credit_id": "54b2974cc3a368210c001579", "cast_id": 100, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 12}, {"name": "Ethan Dampf", "character": "Matt Brewer", "id": 1233911, "credit_id": "54b2976b9251416fe10038b1", "cast_id": 101, "profile_path": null, "order": 13}, {"name": "Jorge Zepeda", "character": "Rocha", "id": 1190010, "credit_id": "54b2978cc3a368210c00157d", "cast_id": 102, "profile_path": null, "order": 14}, {"name": "Michael Cavanaugh", "character": "Chairman Paul Devereaux", "id": 101172, "credit_id": "54b297bd9251416fe10038ba", "cast_id": 103, "profile_path": "/9LiWhytapMAimpOasWcc9d78gMA.jpg", "order": 15}, {"name": "Nicholas Pryor", "character": "Senator Delich", "id": 13028, "credit_id": "54b297e192514107e0003278", "cast_id": 104, "profile_path": "/jqJVM5jEVq2Xqi8G5fO0iiEnd5O.jpg", "order": 16}, {"name": "J. Kenneth Campbell", "character": "Ed Coonts", "id": 97944, "credit_id": "54b2980692514114a2001cc9", "cast_id": 105, "profile_path": null, "order": 17}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe4540c3a36847f80c3bc1", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.2, "runtime": 108}, "9885": {"poster_path": "/eiQqXee0LwUvwHWp6QnZDoP1qdI.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 22500000, "overview": "Stranded backpackers in remote Australia fall prey to a murderous bushman who offers to fix their car, then takes them captive", "video": false, "id": 9885, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wolf Creek", "tagline": "The Thrill Is In The Hunt.", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/irwRpTRWFL2W0ofRswf2nfa7Vmg.jpg", "poster_path": "/1b5hJeNfzx8iYLlmVvW7oKnfyoy.jpg", "id": 268098, "name": "Wolf Creek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416315", "adult": false, "backdrop_path": "/mQbe5JOe4AZJewuIQkWzSWOKbEu.jpg", "production_companies": [{"name": "South Australian Film Corporation", "id": 2806}, {"name": "Australian Film Finance Corporation", "id": 1380}, {"name": "403 Productions", "id": 6016}, {"name": "True Crime Channel", "id": 6017}], "release_date": "2005-11-02", "popularity": 0.657501196218338, "original_title": "Wolf Creek", "budget": 1000000, "cast": [{"name": "John Jarratt", "character": "Mick Taylor", "id": 45210, "credit_id": "52fe4541c3a36847f80c3c83", "cast_id": 8, "profile_path": "/pG2OV7KBXbMzcirLuoLWN7Uoyfq.jpg", "order": 0}, {"name": "Cassandra Magrath", "character": "Liz Hunter", "id": 60003, "credit_id": "52fe4541c3a36847f80c3c87", "cast_id": 9, "profile_path": null, "order": 1}, {"name": "Kestie Morassi", "character": "Kristy Earl", "id": 60004, "credit_id": "52fe4541c3a36847f80c3c8b", "cast_id": 10, "profile_path": "/1gbSEg9Cb77QLczmgPtApTdtFz4.jpg", "order": 2}, {"name": "Nathan Phillips", "character": "Ben Mitchell", "id": 60005, "credit_id": "52fe4541c3a36847f80c3c8f", "cast_id": 11, "profile_path": "/mgR2JHtOp9sjvdj2me1p7wyJV4d.jpg", "order": 3}, {"name": "Andy McPhee", "character": "Bazza", "id": 78962, "credit_id": "52fe4541c3a36847f80c3c93", "cast_id": 12, "profile_path": "/x3MFZjfrrMKde4NtGW40nleLidu.jpg", "order": 4}, {"name": "Darren Humphreys", "character": "Detective", "id": 1326332, "credit_id": "538ae9da0e0a266712000f78", "cast_id": 17, "profile_path": null, "order": 5}], "directors": [{"name": "Greg Mclean", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3c5b", "profile_path": null, "id": 59998}], "vote_average": 5.8, "runtime": 99}, "9886": {"poster_path": "/zeRDXHsb0gJbZH6JMdEx3wu2bOD.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The year is 2021, and half of the Earth's population is suffering from the disease known as Nerve Attenuation Syndrome (NAS). Johnny, a mnemonic data courier, is hired to carry 320 gigabytes of crucial information to safety from the Pharmacom corporation. Pursued by Yakuza agents and a crazed cyborg, Johnny must deliver the data or die in twenty-four hours.", "video": false, "id": 9886, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Johnny Mnemonic", "tagline": "The hottest data on earth. In the coolest head in town.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113481", "adult": false, "backdrop_path": "/vNsGZPwf45rA3BrXEu8TVRwSqKF.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Alliance Communications Corporation", "id": 2480}], "release_date": "1995-05-26", "popularity": 0.609669705983361, "original_title": "Johnny Mnemonic", "budget": 26000000, "cast": [{"name": "Keanu Reeves", "character": "Johnny Mnemonic", "id": 6384, "credit_id": "52fe4541c3a36847f80c3d27", "cast_id": 10, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Dina Meyer", "character": "Jane", "id": 2133, "credit_id": "52fe4541c3a36847f80c3d2b", "cast_id": 11, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 1}, {"name": "Takeshi Kitano", "character": "Takahashi", "id": 3317, "credit_id": "52fe4541c3a36847f80c3d2f", "cast_id": 12, "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "order": 2}, {"name": "Ice-T", "character": "J-Bone", "id": 21411, "credit_id": "52fe4541c3a36847f80c3d33", "cast_id": 13, "profile_path": "/473ie6TLuINUDXtt3ZPbG8Zgf4y.jpg", "order": 3}, {"name": "Dolph Lundgren", "character": "Street Preacher", "id": 16644, "credit_id": "52fe4541c3a36847f80c3d3b", "cast_id": 15, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 5}, {"name": "Henry Rollins", "character": "Spider", "id": 9290, "credit_id": "52fe4541c3a36847f80c3d3f", "cast_id": 16, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 6}, {"name": "Barbara Sukowa", "character": "Anna Kalmann", "id": 23378, "credit_id": "52fe4541c3a36847f80c3d43", "cast_id": 17, "profile_path": "/iFSE2g4HZlbVSgG6FMaLLFJTGvV.jpg", "order": 7}, {"name": "Udo Kier", "character": "Ralfi", "id": 1646, "credit_id": "52fe4541c3a36847f80c3d47", "cast_id": 18, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 8}, {"name": "Tracy Tweed", "character": "Pretty", "id": 122159, "credit_id": "52fe4541c3a36847f80c3d4b", "cast_id": 19, "profile_path": "/hYLt3sze7RJAt3YT0t3aOU0zN8K.jpg", "order": 9}, {"name": "Falconer Abraham", "character": "Yomamma", "id": 180682, "credit_id": "52fe4541c3a36847f80c3d4f", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Don Francks", "character": "Hooky", "id": 87461, "credit_id": "52fe4541c3a36847f80c3d53", "cast_id": 21, "profile_path": "/7CP2Hze1CipeDPR171n0ySs3UlN.jpg", "order": 11}, {"name": "Diego Chambers", "character": "Henson", "id": 168614, "credit_id": "52fe4541c3a36847f80c3d57", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Sherry Miller", "character": "Takahashi's Secretary", "id": 43301, "credit_id": "52fe4541c3a36847f80c3d5b", "cast_id": 23, "profile_path": "/rOk4xZmPaHf0CyAoQT3QqIZMgYc.jpg", "order": 13}, {"name": "Arthur Eng", "character": "Viet", "id": 176006, "credit_id": "52fe4541c3a36847f80c3d5f", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Von Flores", "character": "Viet", "id": 64888, "credit_id": "52fe4541c3a36847f80c3d63", "cast_id": 25, "profile_path": "/iuAwdsaVmltuZKOrsDR9n9najuc.jpg", "order": 15}, {"name": "Victoria Tengelis", "character": "Pharmakom Receptionist", "id": 552452, "credit_id": "52fe4541c3a36847f80c3d67", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Warren Sulatycky", "character": "Yakuza Operator", "id": 185133, "credit_id": "52fe4541c3a36847f80c3d6b", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Celina Wu", "character": "Mikiyo", "id": 552453, "credit_id": "52fe4541c3a36847f80c3d6f", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Gene Mack", "character": "Laslo", "id": 174954, "credit_id": "52fe4541c3a36847f80c3d73", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Jamie Elman", "character": "Toad", "id": 95002, "credit_id": "52fe4541c3a36847f80c3d77", "cast_id": 30, "profile_path": "/1YOxX9IhLp8TeLnsAA2bimC70pz.jpg", "order": 20}, {"name": "Simon Sinn", "character": "Man in Hotel Lobby", "id": 185092, "credit_id": "52fe4541c3a36847f80c3d7b", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Caitlin Carmody", "character": "Twin in Hotel Lobby", "id": 552454, "credit_id": "52fe4541c3a36847f80c3d7f", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Erin Carmody", "character": "Twin in Hotel Lobby", "id": 552455, "credit_id": "52fe4541c3a36847f80c3d83", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Douglas O'Keeffe", "character": "Pharmakom Security Officer", "id": 182946, "credit_id": "52fe4541c3a36847f80c3d87", "cast_id": 34, "profile_path": "/xQAetTbYePBo4IPZGJrOon99tND.jpg", "order": 24}, {"name": "Marlow Vella", "character": "Lotek Kid", "id": 185109, "credit_id": "52fe4541c3a36847f80c3d8b", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Howard Szafer", "character": "Strike", "id": 552456, "credit_id": "52fe4541c3a36847f80c3d8f", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Paul Brogren", "character": "Stump", "id": 27560, "credit_id": "52fe4541c3a36847f80c3d93", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Arthi Sambasivan", "character": "Nurse", "id": 185125, "credit_id": "52fe4541c3a36847f80c3d97", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Michael A. Miranda", "character": "Stick (as Silvio Oliviero)", "id": 180917, "credit_id": "52fe4541c3a36847f80c3d9b", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Coyote Shivers", "character": "Buddy", "id": 552457, "credit_id": "52fe4541c3a36847f80c3d9f", "cast_id": 40, "profile_path": "/fpbbMbIoQ0VgUDBBUTwdpKZ5nqQ.jpg", "order": 30}, {"name": "Lynne Adams", "character": "Yakuza with Rocket Launcher", "id": 197795, "credit_id": "52fe4541c3a36847f80c3da3", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Michael Shearer", "character": "Yakuza Partner", "id": 552458, "credit_id": "52fe4541c3a36847f80c3da7", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Susan Tsagkaris", "character": "Opera Singer", "id": 552459, "credit_id": "52fe4541c3a36847f80c3dab", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Christopher Comrie", "character": "Beijing Riot Newscaster", "id": 552460, "credit_id": "52fe4541c3a36847f80c3daf", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Robin Crosby", "character": "Girl in Hotel Room", "id": 552461, "credit_id": "52fe4541c3a36847f80c3db3", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "Glenn Bang", "character": "Bandleader (uncredited)", "id": 181020, "credit_id": "52fe4541c3a36847f80c3db7", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Natalie Gray", "character": "Tall Chinese Man (uncredited)", "id": 552462, "credit_id": "52fe4541c3a36847f80c3dbb", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Denis Akiyama", "character": "Shinji", "id": 538687, "credit_id": "55391501c3a3685f9b002360", "cast_id": 50, "profile_path": null, "order": 38}], "directors": [{"name": "Robert Longo", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3cf9", "profile_path": "/erzaRdEKjBvhDjpBZ2LJr0Idmcm.jpg", "id": 59997}], "vote_average": 5.6, "runtime": 92}, "9889": {"poster_path": "/xhdJKfDp7TihFcO5CF6BFY1xImE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70836296, "overview": "A shallow man falls in love with a 300 pound woman because of her \"inner beauty\".", "video": false, "id": 9889, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Shallow Hal", "tagline": "Are You A Shallow Guy?", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0256380", "adult": false, "backdrop_path": "/k9fMBC1MMgrt4w6IVuB7kTX3yqz.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2001-11-01", "popularity": 0.789192961563577, "original_title": "Shallow Hal", "budget": 40000000, "cast": [{"name": "Gwyneth Paltrow", "character": "Rosemary Shanahan", "id": 12052, "credit_id": "52fe4541c3a36847f80c3e4d", "cast_id": 14, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 0}, {"name": "Jack Black", "character": "Hal Larson", "id": 70851, "credit_id": "52fe4541c3a36847f80c3e51", "cast_id": 15, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 1}, {"name": "Jason Alexander", "character": "Mauricio Wilson", "id": 1206, "credit_id": "52fe4541c3a36847f80c3e55", "cast_id": 16, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 2}, {"name": "Joe Viterelli", "character": "Steve Shanahan", "id": 60023, "credit_id": "52fe4541c3a36847f80c3e59", "cast_id": 17, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Reverend Larson", "id": 14888, "credit_id": "52fe4541c3a36847f80c3e5d", "cast_id": 18, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Tony Robbins", "character": "Tony Robbins", "id": 283444, "credit_id": "52fe4541c3a36847f80c3e61", "cast_id": 19, "profile_path": "/dmrAXl5ChtnhkbSoSF57XqFevYY.jpg", "order": 5}, {"name": "Susan Ward", "character": "Jill", "id": 65239, "credit_id": "52fe4541c3a36847f80c3e65", "cast_id": 20, "profile_path": "/sqYO5l0yvabe8REyqAsXcU0oRuO.jpg", "order": 6}, {"name": "Zen Gesner", "character": "Ralph", "id": 60672, "credit_id": "52fe4541c3a36847f80c3e69", "cast_id": 21, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 7}, {"name": "Brooke Burns", "character": "Katrina", "id": 78837, "credit_id": "52fe4541c3a36847f80c3e6d", "cast_id": 22, "profile_path": "/x68sRsVYCdinMfvITiETJWdH3Ap.jpg", "order": 8}, {"name": "Rob Moran", "character": "Second Tiffany", "id": 162924, "credit_id": "52fe4541c3a36847f80c3e71", "cast_id": 23, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 9}, {"name": "Kyle Gass", "character": "Artie", "id": 22297, "credit_id": "52fe4541c3a36847f80c3e75", "cast_id": 24, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 10}, {"name": "Nan Martin", "character": "Nurse Tanya Peeler", "id": 87039, "credit_id": "52fe4541c3a36847f80c3e79", "cast_id": 25, "profile_path": "/cN7wHsog96Vv3vihOplo4xYRxnH.jpg", "order": 11}, {"name": "Sasha Neulinger", "character": "Young Hal", "id": 203407, "credit_id": "52fe4541c3a36847f80c3e7d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Erinn Bartlett", "character": "Bella", "id": 60953, "credit_id": "52fe4541c3a36847f80c3e81", "cast_id": 27, "profile_path": "/k5T5kR6A8HZmowF3ZbkPF5QtgVg.jpg", "order": 13}, {"name": "Daniel Greene", "character": "Doctor", "id": 42199, "credit_id": "52fe4541c3a36847f80c3e85", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3e01", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3e07", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.4, "runtime": 114}, "9890": {"poster_path": "/zyRTua3RVN3eLaIoXkdiy4XfF4s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102000000, "overview": "What does it take to become a Stepford wife, a woman perfect beyond belief? Ask the Stepford husbands, who've created this high-tech terrifying little town, in a very modern comedy-thriller.", "video": false, "id": 9890, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Stepford Wives", "tagline": "The wives of Stepford have a secret.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327162", "adult": false, "backdrop_path": "/cYfjQSd4naVQwJ3OarKdpbIBzwA.jpg", "production_companies": [{"name": "De Line Pictures", "id": 2609}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2004-06-10", "popularity": 0.712178422844134, "original_title": "The Stepford Wives", "budget": 90000000, "cast": [{"name": "Nicole Kidman", "character": "Joanna Eberhart", "id": 2227, "credit_id": "52fe4542c3a36847f80c3f45", "cast_id": 19, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Walter Kresby", "id": 4756, "credit_id": "52fe4542c3a36847f80c3f49", "cast_id": 20, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "Bette Midler", "character": "Bobbie Markowitz", "id": 73931, "credit_id": "52fe4542c3a36847f80c3f4d", "cast_id": 21, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 2}, {"name": "Glenn Close", "character": "Claire Wellington", "id": 515, "credit_id": "52fe4542c3a36847f80c3f51", "cast_id": 22, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 3}, {"name": "Christopher Walken", "character": "Mike Wellington", "id": 4690, "credit_id": "52fe4542c3a36847f80c3f55", "cast_id": 23, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 4}, {"name": "Roger Bart", "character": "Roger Bannister", "id": 45566, "credit_id": "52fe4542c3a36847f80c3f59", "cast_id": 24, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 5}, {"name": "David Marshall Grant", "character": "Jerry Harmon", "id": 24535, "credit_id": "52fe4542c3a36847f80c3f5d", "cast_id": 25, "profile_path": "/tKe6LIoceX8738rIELToYMuefCH.jpg", "order": 6}, {"name": "Jon Lovitz", "character": "Dave Markowitz", "id": 16165, "credit_id": "52fe4542c3a36847f80c3f67", "cast_id": 27, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 7}, {"name": "Matt Malloy", "character": "Herb Sunderson", "id": 19208, "credit_id": "52fe4542c3a36847f80c3f6b", "cast_id": 28, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 8}, {"name": "Kate Shindle", "character": "Beth Peters", "id": 5351, "credit_id": "52fe4542c3a36847f80c3f6f", "cast_id": 29, "profile_path": "/o7vKewHIL7AuNHb53wZNEALFIT8.jpg", "order": 9}, {"name": "Fallon Brooking", "character": "Kimberly Kresby", "id": 60016, "credit_id": "52fe4542c3a36847f80c3f73", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Robert Stanton", "character": "Ted Van Sant", "id": 53963, "credit_id": "52fe4542c3a36847f80c3f77", "cast_id": 31, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 11}, {"name": "Faith Hill", "character": "Sarah Sunderson", "id": 60017, "credit_id": "52fe4542c3a36847f80c3f7b", "cast_id": 32, "profile_path": "/o3lQUtn6MSa6xjPkqRV7hQ03Ljy.jpg", "order": 12}, {"name": "Dylan Hartigan", "character": "Pete Kresby", "id": 60015, "credit_id": "52fe4542c3a36847f80c3f7f", "cast_id": 33, "profile_path": "/8Te5OtZD4Dq1ILvktsMhGnmetc7.jpg", "order": 13}, {"name": "Tom Riis Farrell", "character": "Stan Peters", "id": 60018, "credit_id": "52fe4542c3a36847f80c3f83", "cast_id": 34, "profile_path": "/7A3LpATFqv2FJYUTq59RQS4m0dP.jpg", "order": 14}, {"name": "Christopher Evan Welch", "character": "Ed Wainwright", "id": 60021, "credit_id": "52fe4542c3a36847f80c3f8b", "cast_id": 36, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 15}, {"name": "Lorri Bagley", "character": "Charmaine Van Sant", "id": 60019, "credit_id": "52fe4542c3a36847f80c3f87", "cast_id": 35, "profile_path": "/2tLdetmNFCt7PC969FlLXhzIU5A.jpg", "order": 16}, {"name": "Lisa Masters", "character": "Carol Wainwright", "id": 60020, "credit_id": "52fe4542c3a36847f80c3f8f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Jason Kravits", "character": "Vic Stevens", "id": 19978, "credit_id": "52fe4542c3a36847f80c3f93", "cast_id": 38, "profile_path": "/cVKEiEDx84xV2KiMKYZcNJLQDWX.jpg", "order": 18}, {"name": "Colleen Dunn", "character": "Marianne Stevens", "id": 60022, "credit_id": "52fe4542c3a36847f80c3f97", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe4541c3a36847f80c3edb", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 5.5, "runtime": 93}, "1700": {"poster_path": "/ff99EPAbI9qSEsCcSsK3UfqnYdy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Novelist Paul Sheldon crashes his car on a snowy Colorado road. He is found by Annie Wilkes, the \"number one fan\" of Paul's heroine Misery Chastaine. Annie is also somewhat unstable, and Paul finds himself crippled, drugged and at her mercy.", "video": false, "id": 1700, "genres": [{"id": 53, "name": "Thriller"}], "title": "Misery", "tagline": "Paul Sheldon used to write for a living. Now, he's writing to stay alive.", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100157", "adult": false, "backdrop_path": "/43HsIo5PPMIs42tmtNmqiuJVSNR.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Nelson Entertainment", "id": 365}], "release_date": "1990-11-29", "popularity": 0.89912559392569, "original_title": "Misery", "budget": 20000000, "cast": [{"name": "James Caan", "character": "Paul Sheldon", "id": 3085, "credit_id": "52fe430ec3a36847f8037015", "cast_id": 13, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 0}, {"name": "Kathy Bates", "character": "Annie Wilkes", "id": 8534, "credit_id": "52fe430ec3a36847f8037019", "cast_id": 14, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 1}, {"name": "Richard Farnsworth", "character": "Buster", "id": 5605, "credit_id": "52fe430ec3a36847f803701d", "cast_id": 15, "profile_path": "/7obpMM5f6zdDVHGe3SkvXMWOL0q.jpg", "order": 2}, {"name": "Frances Sternhagen", "character": "Virginia", "id": 36926, "credit_id": "52fe430ec3a36847f8037021", "cast_id": 16, "profile_path": "/uFPwqtJObVUyRymTZbgBDWlFxtw.jpg", "order": 3}, {"name": "Lauren Bacall", "character": "Marcia Sindell", "id": 7570, "credit_id": "52fe430ec3a36847f8037025", "cast_id": 17, "profile_path": "/kolRFeufmFpcdRJL6v44FHkqdbJ.jpg", "order": 4}, {"name": "Graham Jarvis", "character": "Libby", "id": 36927, "credit_id": "52fe430ec3a36847f8037029", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Rob Reiner", "character": "Helicopter Pilot", "id": 3026, "credit_id": "52fe430ec3a36847f803702d", "cast_id": 20, "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "order": 6}, {"name": "J. T. Walsh", "character": "State Trooper Sherman Douglas", "id": 22131, "credit_id": "52fe430ec3a36847f8037031", "cast_id": 21, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 7}, {"name": "Jerry Potter", "character": "Pete", "id": 137910, "credit_id": "52fe430ec3a36847f8037035", "cast_id": 22, "profile_path": null, "order": 8}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe430dc3a36847f8036fcf", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.2, "runtime": 107}, "1701": {"poster_path": "/yhaOQ7xXw0PLHLvg1w0M9zlPdg6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 224012234, "overview": "When the government puts all its rotten criminal eggs in one airborne basket, it's asking for trouble. Before you can say, \"Pass the barf bag,\" the crooks control the plane, led by creepy Cyrus \"The Virus\" Grissom. Watching his every move is the just-released Cameron Poe, who'd rather reunite with his family. The action climaxes with an incredible crash sequence in Las Vegas.", "video": false, "id": 1701, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Con Air", "tagline": "They were deadly on the ground; Now they have wings", "vote_count": 402, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118880", "adult": false, "backdrop_path": "/dgbORR9Jh0lXoPJPH02IFNc0F2b.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Kouf/Bigelow Productions", "id": 3589}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1997-06-01", "popularity": 1.13132485169507, "original_title": "Con Air", "budget": 75000000, "cast": [{"name": "Nicolas Cage", "character": "Cameron Poe", "id": 2963, "credit_id": "52fe430ec3a36847f8037065", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "John Cusack", "character": "Marshal Vince Larkin", "id": 3036, "credit_id": "52fe430ec3a36847f8037087", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 1}, {"name": "John Malkovich", "character": "Cyrus Grissom", "id": 6949, "credit_id": "52fe430ec3a36847f803708b", "cast_id": 8, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Nathan Jones", "id": 10182, "credit_id": "52fe430ec3a36847f803708f", "cast_id": 9, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Nick Chinlund", "character": "William Bedford", "id": 18461, "credit_id": "52fe430ec3a36847f8037093", "cast_id": 10, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 4}, {"name": "Steve Buscemi", "character": "Garland Greene", "id": 884, "credit_id": "52fe430ec3a36847f8037097", "cast_id": 11, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 5}, {"name": "Colm Meaney", "character": "Duncan Malloy", "id": 17782, "credit_id": "52fe430ec3a36847f803709b", "cast_id": 12, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 6}, {"name": "Rachel Ticotin", "character": "Sally Bishop", "id": 10768, "credit_id": "52fe430ec3a36847f803709f", "cast_id": 13, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 7}, {"name": "Dave Chappelle", "character": "Joe Parker", "id": 4169, "credit_id": "52fe430ec3a36847f80370a3", "cast_id": 14, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 8}, {"name": "Mykelti Williamson", "character": "Mike O'Dell", "id": 34, "credit_id": "52fe430ec3a36847f80370a7", "cast_id": 15, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Johnny Beca", "id": 11160, "credit_id": "52fe430ec3a36847f80370ab", "cast_id": 16, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "M.C. Gainey", "character": "Swamp Thing", "id": 22132, "credit_id": "52fe430ec3a36847f80370af", "cast_id": 18, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 11}, {"name": "Steve Eastin", "character": "Guard Falzon", "id": 9276, "credit_id": "52fe430ec3a36847f80370b3", "cast_id": 19, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 12}, {"name": "Renoly Santiago", "character": "Ramon Martinez", "id": 28863, "credit_id": "52fe430ec3a36847f80370b7", "cast_id": 20, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 13}, {"name": "Monica Potter", "character": "Tricia Poe", "id": 2140, "credit_id": "52fe430ec3a36847f80370bb", "cast_id": 21, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 14}, {"name": "Landry Allbright", "character": "Casey Poe", "id": 28864, "credit_id": "52fe430ec3a36847f80370bf", "cast_id": 22, "profile_path": null, "order": 15}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe430ec3a36847f803706b", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 6.4, "runtime": 115}, "157350": {"poster_path": "/yTtx2ciqk4XdN1oKhMMDy3f5ue3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 288747895, "overview": "DIVERGENT is a thrilling action-adventure film set in a world where people are divided into distinct factions based on human virtues. Tris Prior is warned she is Divergent and will never fit into any one group. When she discovers a conspiracy by a faction leader to destroy all Divergents, Tris must learn to trust in the mysterious Four and together they must find out what makes being Divergent so dangerous before it's too late. Based on the best-selling book series by Veronica Roth.", "video": false, "id": 157350, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Divergent", "tagline": "What makes you different makes you dangerous.", "vote_count": 1289, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uExS9jcaFBM1wJhkn1Q1P0MFpv6.jpg", "poster_path": "/2tVtmjJTwkieDf4c42SMzKEOyXF.jpg", "id": 283579, "name": "Divergent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1840309", "adult": false, "backdrop_path": "/g6WT9zxATzTy9NVu2xwbxDAxvjd.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Red Wagon Entertainment", "id": 14440}], "release_date": "2014-03-21", "popularity": 4.19135399051496, "original_title": "Divergent", "budget": 85000000, "cast": [{"name": "Shailene Woodley", "character": "Beatrice Prior / Tris", "id": 94185, "credit_id": "52fe4bc09251416c910e49cd", "cast_id": 3, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Miles Teller", "character": "Peter", "id": 996701, "credit_id": "52fe4bc09251416c910e49e5", "cast_id": 9, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 1}, {"name": "Theo James", "character": "Tobias \"Four\" Eaton", "id": 587020, "credit_id": "52fe4bc09251416c910e49dd", "cast_id": 7, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 2}, {"name": "Kate Winslet", "character": "Jeanine Matthews", "id": 204, "credit_id": "52fe4bc09251416c910e49ed", "cast_id": 11, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 3}, {"name": "Ray Stevenson", "character": "Marcus Eaton", "id": 56614, "credit_id": "52fe4bc09251416c910e49e1", "cast_id": 8, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 4}, {"name": "Maggie Q", "character": "Tori", "id": 21045, "credit_id": "52fe4bc09251416c910e49d1", "cast_id": 4, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 5}, {"name": "Zo\u00eb Kravitz", "character": "Christina", "id": 37153, "credit_id": "52fe4bc09251416c910e49d5", "cast_id": 5, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 6}, {"name": "Ansel Elgort", "character": "Caleb Prior", "id": 1159982, "credit_id": "52fe4bc09251416c910e49d9", "cast_id": 6, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 7}, {"name": "Jai Courtney", "character": "Eric", "id": 224181, "credit_id": "52fe4bc09251416c910e49e9", "cast_id": 10, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 8}, {"name": "Ashley Judd", "character": "Natalie Prior", "id": 15852, "credit_id": "52fe4bc09251416c910e49f1", "cast_id": 12, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 9}, {"name": "Tony Goldwyn", "character": "Andrew Prior", "id": 3417, "credit_id": "52fe4bc09251416c910e49f5", "cast_id": 13, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 10}, {"name": "Mekhi Phifer", "character": "Max", "id": 327, "credit_id": "52fe4bc09251416c910e49fd", "cast_id": 15, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 12}, {"name": "Ben Lloyd-Hughes", "character": "Will", "id": 1173230, "credit_id": "52fe4bc09251416c910e4a01", "cast_id": 16, "profile_path": "/mGCcNsBdIb4rngbWs7mK94YGuzA.jpg", "order": 13}, {"name": "Ole Christian Madsen", "character": "Al", "id": 56195, "credit_id": "52fe4bc09251416c910e4a05", "cast_id": 17, "profile_path": "/zn8j11Fi8aNwe4Gz5GrtyEC4wLW.jpg", "order": 14}, {"name": "Ben Lamb", "character": "Edward", "id": 1173231, "credit_id": "52fe4bc09251416c910e4a09", "cast_id": 18, "profile_path": "/fcEjCuQsclcL2puhrLZjM1V5Qy4.jpg", "order": 15}, {"name": "Brandon Cyrus", "character": "Dauntless", "id": 1329572, "credit_id": "53973549c3a3684e360026d1", "cast_id": 20, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 16}, {"name": "Amy Newbold", "character": "Molly", "id": 1352383, "credit_id": "53e9611ac3a3680eb9000176", "cast_id": 24, "profile_path": "/3tesQbqpwNDkDX8tY08cT1a1vv.jpg", "order": 17}], "directors": [{"name": "Neil Burger", "department": "Directing", "job": "Director", "credit_id": "52fe4bc09251416c910e49c3", "profile_path": "/eUDHt2OWYnCwC8FOVIgU2uTPK3x.jpg", "id": 17329}], "vote_average": 7.0, "runtime": 139}, "9896": {"poster_path": "/41C7mmlYiu0lWB9ARDN4kvKMOcJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85498534, "overview": "An all-star comedy cast brings laughs from start to finish when a casino tycoon gives six money crazed contestants the chance to win $2 million in a race from Las Vegas to New Mexico. Who will win this dash for the cash is anybody's guess, but one thing is for sure - it's going to be a hilarious ride.", "video": false, "id": 9896, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Rat Race", "tagline": "563 miles. 9 people. $2 million. 1001 problems!", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0250687", "adult": false, "backdrop_path": "/n1EbYtXBcqnnEfbr4tNT7ati2Mr.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2001-07-30", "popularity": 0.769092269384146, "original_title": "Rat Race", "budget": 48000000, "cast": [{"name": "Cuba Gooding Jr.", "character": "Owen Templeton", "id": 9777, "credit_id": "52fe4543c3a36847f80c43a7", "cast_id": 9, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 0}, {"name": "Seth Green", "character": "Duane Cody", "id": 13922, "credit_id": "52fe4543c3a36847f80c43ab", "cast_id": 10, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 1}, {"name": "Whoopi Goldberg", "character": "Vera Baker", "id": 2395, "credit_id": "52fe4543c3a36847f80c43af", "cast_id": 11, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Nick Schaffer", "id": 33654, "credit_id": "52fe4543c3a36847f80c43b3", "cast_id": 12, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Amy Smart", "character": "Tracy Faucet", "id": 20189, "credit_id": "52fe4543c3a36847f80c43b7", "cast_id": 13, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 4}, {"name": "John Cleese", "character": "Donald P. Sinclair", "id": 8930, "credit_id": "52fe4543c3a36847f80c43bb", "cast_id": 14, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Wayne Knight", "character": "Zack Mallozzi", "id": 4201, "credit_id": "52fe4543c3a36847f80c43bf", "cast_id": 15, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 6}, {"name": "Vince Vieluf", "character": "Blaine Cody", "id": 58381, "credit_id": "52fe4543c3a36847f80c43c7", "cast_id": 17, "profile_path": "/g4I0Turxzv90gTj35ksjGQ0NOon.jpg", "order": 7}, {"name": "Lanei Chapman", "character": "Merrill Jennings", "id": 206202, "credit_id": "52fe4543c3a36847f80c43cb", "cast_id": 18, "profile_path": "/iz6oHIaEtj5jsTOjP6lQaXamgJo.jpg", "order": 8}, {"name": "Jon Lovitz", "character": "Randy Pear", "id": 16165, "credit_id": "52fe4543c3a36847f80c43cf", "cast_id": 19, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 9}, {"name": "Kathy Najimy", "character": "Beverly Pear", "id": 11074, "credit_id": "52fe4543c3a36847f80c43d3", "cast_id": 20, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 10}, {"name": "Rowan Atkinson", "character": "Enrico Pollini", "id": 10730, "credit_id": "52fe4543c3a36847f80c43d7", "cast_id": 21, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 11}, {"name": "Dave Thomas", "character": "Harold Grisham", "id": 61961, "credit_id": "52fe4543c3a36847f80c43db", "cast_id": 22, "profile_path": "/qWQ330du0Uu1Q8wAq9hMoYmOJ5Q.jpg", "order": 12}, {"name": "Paul Rodr\u00edguez", "character": "Gus the Cabbie", "id": 55259, "credit_id": "52fe4543c3a36847f80c43df", "cast_id": 23, "profile_path": "/lbI7Ot0rg6jhqhDwYpGFGQIA9BC.jpg", "order": 13}, {"name": "Dean Cain", "character": "Shawn Kent", "id": 21721, "credit_id": "52fe4543c3a36847f80c43e3", "cast_id": 24, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 14}, {"name": "Brandy Ledford", "character": "Vicky", "id": 119759, "credit_id": "52fe4543c3a36847f80c43e7", "cast_id": 25, "profile_path": "/uv23pFSWtkHbKYm8gbJxBZalNjM.jpg", "order": 15}, {"name": "Silas Weir Mitchell", "character": "Lloyd", "id": 49815, "credit_id": "52fe4543c3a36847f80c43eb", "cast_id": 26, "profile_path": "/4fNFjEtuWEMV4d6QnLIyArx6wSr.jpg", "order": 16}, {"name": "Gloria Allred", "character": "Herself", "id": 174838, "credit_id": "52fe4543c3a36847f80c43c3", "cast_id": 16, "profile_path": "/5FW62aHjF09xJgEyM6CdMfQRD2Y.jpg", "order": 17}, {"name": "Kathy Bates", "character": "The Squirrel Lady", "id": 8534, "credit_id": "52fe4543c3a36847f80c43ef", "cast_id": 27, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 18}, {"name": "Colleen Camp", "character": "Rainbow House Nurse", "id": 13023, "credit_id": "52fe4543c3a36847f80c43f3", "cast_id": 28, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 19}], "directors": [{"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe4543c3a36847f80c4379", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.0, "runtime": 112}, "157353": {"poster_path": "/4eESVBvr7KEvPGUZVL5LDWsANda.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103000000, "overview": "Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.", "video": false, "id": 157353, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Transcendence", "tagline": "Yesterday, Dr. Will Caster was only human...", "vote_count": 784, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2209764", "adult": false, "backdrop_path": "/oZY3DOlEZbEZvRxWynWkFTe4UgE.jpg", "production_companies": [{"name": "DMG Entertainment", "id": 10289}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Syncopy", "id": 9996}, {"name": "Straight Up Films", "id": 13403}], "release_date": "2014-04-17", "popularity": 2.76856729010618, "original_title": "Transcendence", "budget": 100000000, "cast": [{"name": "Johnny Depp", "character": "Dr. Will Caster", "id": 85, "credit_id": "52fe4bc19251416c910e4adf", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Max Waters", "id": 6162, "credit_id": "52fe4bc19251416c910e4ae3", "cast_id": 3, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Rebecca Hall", "character": "Evelyn Caster", "id": 15556, "credit_id": "52fe4bc19251416c910e4b35", "cast_id": 20, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 2}, {"name": "Kate Mara", "character": "Bree", "id": 51072, "credit_id": "52fe4bc19251416c910e4b39", "cast_id": 21, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 3}, {"name": "Morgan Freeman", "character": "Joseph Tagger", "id": 192, "credit_id": "52fe4bc19251416c910e4b3d", "cast_id": 22, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 4}, {"name": "Cillian Murphy", "character": "Agent Donald Buchanan", "id": 2037, "credit_id": "52fe4bc19251416c910e4b47", "cast_id": 24, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 5}, {"name": "Cole Hauser", "character": "Colonel Stevens", "id": 6614, "credit_id": "52fe4bc19251416c910e4b4b", "cast_id": 25, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 6}, {"name": "Clifton Collins, Jr.", "character": "Martin", "id": 5365, "credit_id": "52fe4bc19251416c910e4b4f", "cast_id": 26, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 7}, {"name": "Falk Hentschel", "character": "Bob", "id": 118643, "credit_id": "532c7e989251413a6f00001c", "cast_id": 27, "profile_path": "/6NFuHgdtpJ6dY8wqZ8CV95N82Z7.jpg", "order": 8}, {"name": "Kristen Rakes", "character": "MIT Programmer", "id": 1144931, "credit_id": "532c7ea79251413a7800000f", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Cory Hardrict", "character": "Joel Edmund", "id": 74302, "credit_id": "53fc534fc3a36873610064ad", "cast_id": 81, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 10}, {"name": "Josh Stewart", "character": "Paul", "id": 40039, "credit_id": "53fc53b8c3a368735e0067b2", "cast_id": 82, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 11}, {"name": "Luce Rains", "character": "Roger", "id": 53969, "credit_id": "53fc53e0c3a368734c0063f9", "cast_id": 83, "profile_path": "/1vn8TGhhs1aDSzFHUC0wHp9X9P1.jpg", "order": 12}, {"name": "Fernando Chien", "character": "Heng", "id": 216782, "credit_id": "53fc53fac3a368734f00627b", "cast_id": 84, "profile_path": "/lnMvhgE5ZKBaWvGN6beUJUqeHxD.jpg", "order": 13}, {"name": "Steven Liu", "character": "Chiu", "id": 1357076, "credit_id": "53fc5429c3a368734f00627e", "cast_id": 85, "profile_path": null, "order": 14}, {"name": "Xander Berkeley", "character": "Dr. Thomas Casey", "id": 3982, "credit_id": "53fc5445c3a368734c006403", "cast_id": 86, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 15}, {"name": "Lukas Haas", "character": "James Thomas", "id": 526, "credit_id": "53fc5465c3a3687355006564", "cast_id": 87, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 16}, {"name": "Wallace Langham", "character": "Dr. Strauss", "id": 17421, "credit_id": "53fc5481c3a36873520064fe", "cast_id": 88, "profile_path": "/UODZ2FuyJixy8CCqv190KIlncR.jpg", "order": 17}], "directors": [{"name": "Wally Pfister", "department": "Directing", "job": "Director", "credit_id": "52fe4bc19251416c910e4adb", "profile_path": "/tyYtVatXW16EM7NYJZkxI3K2NQi.jpg", "id": 559}], "vote_average": 6.0, "runtime": 119}, "157354": {"poster_path": "/aAKEdeDYxsXgGK24mnSnXguqEDI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17385830, "overview": "The true story of Oscar, a 22-year-old Bay Area resident, who crosses paths with friends, enemies, family, and strangers on the last day of 2008.", "video": false, "id": 157354, "genres": [{"id": 18, "name": "Drama"}], "title": "Fruitvale Station", "tagline": "Every step brings you closer to the edge.", "vote_count": 105, "homepage": "http://www.fruitvalefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2334649", "adult": false, "backdrop_path": "/v8qyFyJUsvpNVOtizr2ZfQVfJ9C.jpg", "production_companies": [{"name": "Forest Whitaker's Significant Productions", "id": 14638}, {"name": "OG Project", "id": 14639}], "release_date": "2013-07-26", "popularity": 0.772378311770669, "original_title": "Fruitvale Station", "budget": 0, "cast": [{"name": "Michael B. Jordan", "character": "Oscar", "id": 135651, "credit_id": "52fe4bc19251416c910e4b85", "cast_id": 3, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 0}, {"name": "Octavia Spencer", "character": "Wanda", "id": 6944, "credit_id": "52fe4bc19251416c910e4b89", "cast_id": 4, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 1}, {"name": "Melonie Diaz", "character": "Sophina", "id": 53936, "credit_id": "52fe4bc19251416c910e4b8d", "cast_id": 5, "profile_path": "/wBhAieZSMyJVO9Z0Bm6FTfqVq11.jpg", "order": 2}, {"name": "Ahna O'Reilly", "character": "Katie", "id": 999605, "credit_id": "52fe4bc19251416c910e4b91", "cast_id": 6, "profile_path": "/81iawtqbKQgnPoBFiuXETQjUbVs.jpg", "order": 3}, {"name": "Kevin Durand", "character": "Officer Caruso", "id": 79072, "credit_id": "52fe4bc19251416c910e4b95", "cast_id": 7, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Chad Michael Murray", "character": "Officer Ingram", "id": 62747, "credit_id": "52fe4bc19251416c910e4b99", "cast_id": 8, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 5}, {"name": "Christina Elmore", "character": "Ashae", "id": 1295290, "credit_id": "53078f399251411102000183", "cast_id": 19, "profile_path": "/4Lkf5jonSBFZPDLvZRgvX9UjKvi.jpg", "order": 6}], "directors": [{"name": "Ryan Coogler", "department": "Directing", "job": "Director", "credit_id": "52fe4bc19251416c910e4b7b", "profile_path": null, "id": 1056121}], "vote_average": 7.5, "runtime": 85}, "9900": {"poster_path": "/9Z0Q9uIH4il75dfPVqFhVKljfY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6538177, "overview": "Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But he gets kicked out of his apartment and is forced to move in with his grandmother.", "video": false, "id": 9900, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grandma's Boy", "tagline": "A movie that proves you're never to old to come of age.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0456554", "adult": false, "backdrop_path": "/mQDsTjzdyxTfJSe1I4MGTG45JsL.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}], "release_date": "2006-01-06", "popularity": 0.507669074434705, "original_title": "Grandma's Boy", "budget": 0, "cast": [{"name": "Linda Cardellini", "character": "Samantha", "id": 1817, "credit_id": "52fe4544c3a36847f80c4757", "cast_id": 25, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 0}, {"name": "Allen Covert", "character": "Alex", "id": 20818, "credit_id": "52fe4544c3a36847f80c475b", "cast_id": 26, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 1}, {"name": "Peter Dante", "character": "Dante", "id": 20819, "credit_id": "52fe4544c3a36847f80c475f", "cast_id": 27, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 2}, {"name": "Shirley Knight", "character": "Bea", "id": 28778, "credit_id": "52fe4544c3a36847f80c4763", "cast_id": 28, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 3}, {"name": "Joel David Moore", "character": "J.P.", "id": 59231, "credit_id": "52fe4544c3a36847f80c4767", "cast_id": 29, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 4}, {"name": "Kevin Nealon", "character": "Mr. Cheezle", "id": 58478, "credit_id": "52fe4544c3a36847f80c476b", "cast_id": 30, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 5}, {"name": "Doris Roberts", "character": "Grandma Lilly", "id": 45863, "credit_id": "52fe4544c3a36847f80c476f", "cast_id": 31, "profile_path": "/4J9jniy4ZEd6NRTfkzq9prKoEIt.jpg", "order": 6}, {"name": "Shirley Jones", "character": "Grace", "id": 60158, "credit_id": "52fe4544c3a36847f80c4773", "cast_id": 32, "profile_path": "/jZbS3ej52FOUCBSJCQKQS0MtD87.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Jeff", "id": 32907, "credit_id": "52fe4544c3a36847f80c4777", "cast_id": 33, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "Jonah Hill", "character": "Barry", "id": 21007, "credit_id": "52fe4544c3a36847f80c477b", "cast_id": 34, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 9}, {"name": "Kelvin Yu", "character": "Kane", "id": 51997, "credit_id": "52fe4544c3a36847f80c477f", "cast_id": 35, "profile_path": "/tYLvMxo3EBXmAdYUzJp5ymTygS.jpg", "order": 10}, {"name": "Chuck Church", "character": "Dan", "id": 60159, "credit_id": "52fe4544c3a36847f80c4783", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Todd Holland", "character": "Mover #1", "id": 2225, "credit_id": "52fe4544c3a36847f80c4787", "cast_id": 37, "profile_path": "/rzMJq6ZYWtt2cV5Fu8rXifgXmrs.jpg", "order": 12}, {"name": "Scott Halberstadt", "character": "Bobby, Co-Worker #1", "id": 60160, "credit_id": "52fe4544c3a36847f80c478b", "cast_id": 38, "profile_path": "/cc6RACh1FtB363RmK1ek3GhkL9A.jpg", "order": 13}, {"name": "Shana Hiatt", "character": "Pamela Mills", "id": 60162, "credit_id": "52fe4544c3a36847f80c478f", "cast_id": 39, "profile_path": "/l5p0Kgo30DmJdimmUdmLxLimoUO.jpg", "order": 14}, {"name": "Heidi Hawking", "character": "Milk Maid", "id": 60161, "credit_id": "52fe4544c3a36847f80c4793", "cast_id": 40, "profile_path": "/dpC2EZUDCfGXz0fCPHKbrIfn8Tn.jpg", "order": 15}, {"name": "John Kirk", "character": "Businessman", "id": 60163, "credit_id": "52fe4544c3a36847f80c4797", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Joe Koons", "character": "Best Man", "id": 60165, "credit_id": "52fe4544c3a36847f80c479b", "cast_id": 42, "profile_path": "/2jibE2WwoNKkAev9PA7npRMSdhi.jpg", "order": 17}, {"name": "Bryan Ling", "character": "DJ", "id": 60166, "credit_id": "52fe4544c3a36847f80c479f", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Geno Kirkland", "character": "Party Guy", "id": 60164, "credit_id": "52fe4544c3a36847f80c47a3", "cast_id": 44, "profile_path": null, "order": 19}], "directors": [{"name": "Nicholaus Goossen", "department": "Directing", "job": "Director", "credit_id": "52fe4544c3a36847f80c46ed", "profile_path": null, "id": 60149}], "vote_average": 7.3, "runtime": 94}, "9902": {"poster_path": "/kyn0ZC8tvLWuKN85mhlG1lwB1WQ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15417771, "overview": "Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.", "video": false, "id": 9902, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wrong Turn", "tagline": "It's the last one you'll ever take.", "vote_count": 196, "homepage": "", "belongs_to_collection": {"backdrop_path": "/32IsLLCoj3mIkZbLfCKSXZVqd3k.jpg", "poster_path": "/dtfQY5ZxvdHNG4HqNDy0ifwk1q6.jpg", "id": 52985, "name": "Wrong Turn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0295700", "adult": false, "backdrop_path": "/sJUHCmbbpkRSA9dfGncCW44sHVg.jpg", "production_companies": [{"name": "Media Cooperation One", "id": 24212}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Newmarket Capital Group", "id": 506}, {"name": "Summit Entertainment", "id": 491}, {"name": "Regency Enterprises", "id": 508}, {"name": "Stan Winston Studio", "id": 24211}], "release_date": "2003-05-30", "popularity": 1.20767828288358, "original_title": "Wrong Turn", "budget": 12000000, "cast": [{"name": "Desmond Harrington", "character": "Chris Flynn", "id": 6365, "credit_id": "52fe4544c3a36847f80c487b", "cast_id": 10, "profile_path": "/Wyv2jiCnJXkVtrRwXOvy1aVemb.jpg", "order": 0}, {"name": "Eliza Dushku", "character": "Jessie Burlingame", "id": 13446, "credit_id": "52fe4544c3a36847f80c487f", "cast_id": 11, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 1}, {"name": "Emmanuelle Chriqui", "character": "Carly", "id": 59192, "credit_id": "52fe4544c3a36847f80c4883", "cast_id": 12, "profile_path": "/d2PyTKZyt5Ndk9am6PJ8u6jRdjH.jpg", "order": 2}, {"name": "Jeremy Sisto", "character": "Scott", "id": 23958, "credit_id": "52fe4544c3a36847f80c4887", "cast_id": 13, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 3}, {"name": "Kevin Zegers", "character": "Evan", "id": 7431, "credit_id": "52fe4544c3a36847f80c4891", "cast_id": 15, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 4}, {"name": "Lindy Booth", "character": "Francine", "id": 51936, "credit_id": "52fe4544c3a36847f80c4895", "cast_id": 16, "profile_path": "/bzquwgIrGxF8xfPCmSiNZ563VdH.jpg", "order": 5}, {"name": "Julian Richings", "character": "Three Finger", "id": 2320, "credit_id": "52fe4544c3a36847f80c4899", "cast_id": 17, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 6}], "directors": [{"name": "Rob Schmidt", "department": "Directing", "job": "Director", "credit_id": "52fe4544c3a36847f80c484d", "profile_path": null, "id": 60243}], "vote_average": 5.9, "runtime": 84}, "225565": {"poster_path": "/lvj2Nqr9RLA6ichyui5Th8oZq5s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three best friends find themselves where we've all been - at that confusing moment in every dating relationship when you have to decide \"So...where is this going?\"", "video": false, "id": 225565, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "That Awkward Moment", "tagline": "When You Realize Getting Some Means Wanting More", "vote_count": 260, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1800246", "adult": false, "backdrop_path": "/gFixDstO3o42mrmWYRFVW9kCEvv.jpg", "production_companies": [{"name": "Treehouse Pictures", "id": 14580}], "release_date": "2014-01-31", "popularity": 1.52540209949946, "original_title": "That Awkward Moment", "budget": 8000000, "cast": [{"name": "Zac Efron", "character": "Jason", "id": 29222, "credit_id": "52fe4e629251416c75154a95", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Miles Teller", "character": "Daniel", "id": 996701, "credit_id": "52fe4e629251416c75154a9d", "cast_id": 3, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 1}, {"name": "Michael B. Jordan", "character": "Mikey", "id": 135651, "credit_id": "52fe4e629251416c75154aa9", "cast_id": 6, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 2}, {"name": "Imogen Poots", "character": "Ellie", "id": 17606, "credit_id": "52fe4e629251416c75154a99", "cast_id": 2, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 3}, {"name": "Mackenzie Davis", "character": "Chelsea", "id": 1110405, "credit_id": "537e97c8c3a368059b001ec2", "cast_id": 18, "profile_path": "/csf5dxwk1IKeVA4xYgWsqp9sVCM.jpg", "order": 4}, {"name": "Jessica Lucas", "character": "Vera", "id": 51989, "credit_id": "52fe4e629251416c75154aa5", "cast_id": 5, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 5}, {"name": "Addison Timlin", "character": "Alana", "id": 56542, "credit_id": "52fe4e629251416c75154aa1", "cast_id": 4, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 6}, {"name": "Josh Pais", "character": "Fred", "id": 6181, "credit_id": "52fe4e629251416c75154ad3", "cast_id": 14, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 7}, {"name": "Evelina Turen", "character": "Sophie", "id": 1266054, "credit_id": "53f80ce7c3a368734f000818", "cast_id": 20, "profile_path": "/myOJDfPJuKz27qqKqzLDOHzHz1v.jpg", "order": 8}, {"name": "Tina Benko", "character": "Ellie's Mom", "id": 60120, "credit_id": "52fe4e629251416c75154add", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Joseph Adams", "character": "Ellie's Dad", "id": 158230, "credit_id": "52fe4e629251416c75154ae1", "cast_id": 17, "profile_path": "/6PeDKsCBCTU0j2Zu1vN9j9iPWcX.jpg", "order": 10}, {"name": "Eugenia Kuzmina", "character": "Girl at the Bar (uncredited)", "id": 1333845, "credit_id": "53a8e574c3a3687a2b006960", "cast_id": 19, "profile_path": "/5TpGe5oRdZ7pt9Rzrjjjt9THL9E.jpg", "order": 11}, {"name": "Emily Meade", "character": "Christy", "id": 71815, "credit_id": "52fe4e629251416c75154acb", "cast_id": 12, "profile_path": "/spevld4WoZYuY2hnjdysbKgxVNK.jpg", "order": 12}, {"name": "Alysia Reiner", "character": "Amanda", "id": 109740, "credit_id": "52fe4e629251416c75154acf", "cast_id": 13, "profile_path": null, "order": 13}, {"name": "Dan Bittner", "character": "Preppy Guy", "id": 1152008, "credit_id": "54c415d092514124ed0064b3", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Tom Gormican", "department": "Directing", "job": "Director", "credit_id": "52fe4e629251416c75154aaf", "profile_path": null, "id": 1211000}], "vote_average": 6.0, "runtime": 94}, "157360": {"poster_path": "/dNtDUD9OzMSDj5Z7ZyDoouLnioU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2963902, "overview": "An underachieving vocal coach is motivated by her father, the king of movie-trailer voice-overs, to pursue her aspirations of becoming a voice-over star. Amidst pride, sexism and family dysfunction, she sets out to change the voice of a generation.", "video": false, "id": 157360, "genres": [{"id": 35, "name": "Comedy"}], "title": "In a World...", "tagline": "Speak up and let your voice be heard.", "vote_count": 67, "homepage": "http://inaworldmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2294677", "adult": false, "backdrop_path": "/zSn3YztpT8tlScZOGSH7J6cnRFm.jpg", "production_companies": [{"name": "3311 Productions", "id": 19632}, {"name": "In A World", "id": 19633}, {"name": "Team G", "id": 19634}], "release_date": "2013-08-09", "popularity": 0.479375491026918, "original_title": "In a World...", "budget": 1000000, "cast": [{"name": "Lake Bell", "character": "Carol", "id": 25703, "credit_id": "52fe4bc29251416c910e4c29", "cast_id": 3, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 0}, {"name": "Rob Corddry", "character": "Moe", "id": 52997, "credit_id": "52fe4bc29251416c910e4c31", "cast_id": 5, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 1}, {"name": "Alexandra Holden", "character": "Jamie", "id": 69399, "credit_id": "52fe4bc29251416c910e4c41", "cast_id": 9, "profile_path": "/yJ6FuYwEts4NC1umABgpIG26jFg.jpg", "order": 2}, {"name": "Eva Longoria", "character": "Herself", "id": 52605, "credit_id": "52fe4bc29251416c910e4ca7", "cast_id": 29, "profile_path": "/AtG3fZHkLcoJGEZfbgDOaeY6Hcx.jpg", "order": 3}, {"name": "Ken Marino", "character": "Gustav", "id": 77089, "credit_id": "52fe4bc29251416c910e4c39", "cast_id": 7, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 4}, {"name": "Demetri Martin", "character": "Louis", "id": 84075, "credit_id": "52fe4bc29251416c910e4c2d", "cast_id": 4, "profile_path": "/puyGH5mGvsky1RU3rcXqB93xq9S.jpg", "order": 5}, {"name": "Fred Melamed", "character": "Sam", "id": 105303, "credit_id": "52fe4bc29251416c910e4c3d", "cast_id": 8, "profile_path": "/uU6e0X8A82tkG8PQFO1hH2PMz4W.jpg", "order": 6}, {"name": "Tig Notaro", "character": "Cher", "id": 220088, "credit_id": "52fe4bc29251416c910e4c57", "cast_id": 14, "profile_path": "/yDqr2bVV7Q5QCs3anKLuTbGWbKi.jpg", "order": 7}, {"name": "Nick Offerman", "character": "Heners", "id": 17039, "credit_id": "52fe4bc29251416c910e4c45", "cast_id": 10, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 8}, {"name": "Michaela Watkins", "character": "Dani", "id": 113224, "credit_id": "52fe4bc29251416c910e4c35", "cast_id": 6, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 9}, {"name": "Geena Davis", "character": "Katherine Huling", "id": 16935, "credit_id": "52fe4bc29251416c910e4c49", "cast_id": 11, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 10}, {"name": "Stephanie Allynne", "character": "Nancy", "id": 1003843, "credit_id": "52fe4bc29251416c910e4c4d", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Melissa Disney", "character": "Melinda Chisney", "id": 92525, "credit_id": "52fe4bc29251416c910e4ca3", "cast_id": 28, "profile_path": "/enMfC5icRP0THFmNZRxjF5YwH3D.jpg", "order": 12}, {"name": "Olya Milova", "character": "Mimi", "id": 1456180, "credit_id": "5532c7099251411014001bde", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Corsica Wilson", "character": "Stacy", "id": 1456181, "credit_id": "5532c729925141529b0035d0", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Yelena Protsenko", "character": "Alla", "id": 1456182, "credit_id": "5532c734c3a368222a003541", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Carly Chaikin", "character": "Excruciating", "id": 114601, "credit_id": "52fe4bc29251416c910e4cb3", "cast_id": 32, "profile_path": "/yNtb4RxjMWxKzPuUg1MIYrTJ9vf.jpg", "order": 16}, {"name": "Janicza Bravo", "character": "Snacks", "id": 1176379, "credit_id": "52fe4bc29251416c910e4cb7", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Jason O'Mara", "character": "Mr. Pouncer", "id": 183812, "credit_id": "52fe4bc29251416c910e4caf", "cast_id": 31, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 18}, {"name": "Talulah Riley", "character": "Pippa", "id": 66441, "credit_id": "52fe4bc29251416c910e4c65", "cast_id": 17, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 19}, {"name": "Erin Soto", "character": "Reality Girl #1", "id": 1340944, "credit_id": "5532c7a49251410921000d26", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Mara Lane", "character": "Reality Girl #2", "id": 48018, "credit_id": "5532c7c89251415295003732", "cast_id": 38, "profile_path": "/jCRmNsIlxnOcuy3R6LlXjvCkMF0.jpg", "order": 21}, {"name": "Erinn Westbrook", "character": "Reality Girl #3", "id": 1274517, "credit_id": "52fe4bc29251416c910e4c5b", "cast_id": 15, "profile_path": "/nsKB0Tn4YV3ec0ss8zETulNSece.jpg", "order": 22}, {"name": "Amy Vorpahl", "character": "Virgin America", "id": 1442828, "credit_id": "5532c7e7c3a36822190038f5", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Hidetoshi Imura", "character": "Asian Man", "id": 1075069, "credit_id": "5532c830c3a368221f003503", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Nancy Gomez", "character": "Bristle Brush Hair Model", "id": 1456183, "credit_id": "5532c842925141529b0035e7", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Jaime Aymerich", "character": "Carlos", "id": 1184093, "credit_id": "5532c863c3a368221d003798", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Marc Graue", "character": "Himself", "id": 1355793, "credit_id": "5532c8869251415295003747", "cast_id": 43, "profile_path": null, "order": 27}, {"name": "Kevin Rock", "character": "Ciatis", "id": 1308819, "credit_id": "5532c8c99251411014001c07", "cast_id": 44, "profile_path": "/md1gxFDcU3Rc8RIWuF8NWpguski.jpg", "order": 28}, {"name": "Joe Cipriano", "character": "Himself", "id": 1237345, "credit_id": "5532c8e89251416310002d7b", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Shobhit Agarwal", "character": "Sloppy Indian", "id": 1456184, "credit_id": "5532c8f7c3a368221900391b", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Don Luce", "character": "Reporter", "id": 1456185, "credit_id": "5532c902c3a368221d0037aa", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Andy Grosso", "character": "Bachelor", "id": 1456186, "credit_id": "5532c90f9251415291003664", "cast_id": 48, "profile_path": null, "order": 32}, {"name": "Mark Elliott", "character": "Himself", "id": 1456187, "credit_id": "5532c94ec3a368222a003570", "cast_id": 49, "profile_path": null, "order": 33}, {"name": "Christina Chang", "character": "Lizzie", "id": 1456188, "credit_id": "5532c9709251411014001c1a", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Paula Sala", "character": "Geico Customer", "id": 1456189, "credit_id": "5532c9b0c3a368222a003583", "cast_id": 51, "profile_path": null, "order": 35}, {"name": "Don LaFontaine", "character": "Himself (archive footage)", "id": 1224467, "credit_id": "5532c9dfc3a36822260038ba", "cast_id": 52, "profile_path": null, "order": 36}, {"name": "Elizabeth Gesas", "character": "Amazon Warrior + Mutant", "id": 1456190, "credit_id": "5532c9f2c3a368221d0037ca", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Carrie Martin", "character": "Amazon Warrior + Mutant", "id": 1456191, "credit_id": "5532ca03c3a368221f003528", "cast_id": 54, "profile_path": null, "order": 38}, {"name": "Nicole LaLiberte", "character": "Amazon Warrior + Mutant", "id": 227477, "credit_id": "5532ca1b9251417ae3001644", "cast_id": 55, "profile_path": "/6EFf3mnYP8YdA72fPWAWG6zMUcK.jpg", "order": 39}, {"name": "Jon Peacy", "character": "Amazon Warrior + Mutant", "id": 1456192, "credit_id": "5532ca24925141529b003620", "cast_id": 56, "profile_path": null, "order": 40}, {"name": "Scott Campbell", "character": "Amazon Warrior + Mutant", "id": 1456193, "credit_id": "5532ca399251416310002d9e", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Michael Burns", "character": "Amazon Warrior + Mutant", "id": 1456194, "credit_id": "5532ca4dc3a36822230035ea", "cast_id": 58, "profile_path": null, "order": 42}, {"name": "Brett Praise", "character": "Amazon Warrior + Mutant", "id": 1456195, "credit_id": "5532ca57c3a368221900394d", "cast_id": 59, "profile_path": null, "order": 43}, {"name": "Gareth Stehr", "character": "Amazon Warrior + Mutant", "id": 1456196, "credit_id": "5532ca60c3a368222a00359a", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Cameron Diaz", "character": "Amazon Leader (uncredited)", "id": 6941, "credit_id": "52fe4bc29251416c910e4c69", "cast_id": 18, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 45}, {"name": "Jeff Garlin", "character": "Himself (uncredited)", "id": 60074, "credit_id": "52fe4bc29251416c910e4cab", "cast_id": 30, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 46}], "directors": [{"name": "Lake Bell", "department": "Directing", "job": "Director", "credit_id": "52fe4bc29251416c910e4c1f", "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "id": 25703}], "vote_average": 6.5, "runtime": 93}, "9906": {"poster_path": "/tBUlwDCdvYC5aP7DzgcmDgrbfec.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55181129, "overview": "Fed up with being targeted by the neighborhood bully, 10-year-old Lucas Nickle vents his frustrations on the anthill in his front yard ... until the insects shrink him to the size of a bug with a magic elixir. Convicted of \"crimes against the colony,\" Lucas can only regain his freedom by living with the ants and learning their ways.", "video": false, "id": 9906, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Ant Bully", "tagline": "The battle for the lawn is on.", "vote_count": 108, "homepage": "http://www.theantbully.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0429589", "adult": false, "backdrop_path": "/eWjDANwpb6XkAWUxhga9yPc9r5B.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "DNA Films", "id": 284}, {"name": "Legendary Pictures", "id": 923}, {"name": "Playtone Production", "id": 2031}], "release_date": "2006-07-27", "popularity": 0.795158628699864, "original_title": "The Ant Bully", "budget": 50000000, "cast": [{"name": "Julia Roberts", "character": "Hova", "id": 1204, "credit_id": "52fe4545c3a36847f80c4c49", "cast_id": 21, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Queen", "id": 5064, "credit_id": "52fe4545c3a36847f80c4c4d", "cast_id": 22, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Nicolas Cage", "character": "Zoc", "id": 2963, "credit_id": "52fe4545c3a36847f80c4c51", "cast_id": 23, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Stan Beals", "id": 13242, "credit_id": "52fe4545c3a36847f80c4c55", "cast_id": 24, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Bruce Campbell", "character": "Fugax", "id": 11357, "credit_id": "52fe4545c3a36847f80c4c59", "cast_id": 25, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 4}, {"name": "Regina King", "character": "Kreela", "id": 9788, "credit_id": "52fe4545c3a36847f80c4c5d", "cast_id": 26, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 5}, {"name": "Lily Tomlin", "character": "Mommo", "id": 10437, "credit_id": "52fe4545c3a36847f80c4c61", "cast_id": 27, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 6}, {"name": "Larry Miller", "character": "Fred Nickle", "id": 1211, "credit_id": "52fe4545c3a36847f80c4c65", "cast_id": 28, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 7}, {"name": "Cheri Oteri", "character": "Doreen Nickle", "id": 60252, "credit_id": "52fe4545c3a36847f80c4c69", "cast_id": 29, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 8}, {"name": "Zach Tyler Eisen", "character": "Lucas Nickle", "id": 60251, "credit_id": "52fe4545c3a36847f80c4c6d", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Ricardo Montalban", "character": "Head of Council", "id": 1793, "credit_id": "52fe4545c3a36847f80c4c71", "cast_id": 31, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 10}, {"name": "Myles Jeffrey", "character": "Steve", "id": 11157, "credit_id": "52fe4545c3a36847f80c4c75", "cast_id": 32, "profile_path": "/snKwcKNBaIWKNv0dHzlB8h9q935.jpg", "order": 11}, {"name": "Creagen Dow", "character": "Mullet Boy", "id": 60254, "credit_id": "52fe4545c3a36847f80c4c79", "cast_id": 33, "profile_path": "/lG7rCnwpZhnsNfnnBn1LwQgJfMY.jpg", "order": 12}, {"name": "Frank Welker", "character": "Spindle / Frog / Caterpillar", "id": 15831, "credit_id": "52fe4545c3a36847f80c4c7d", "cast_id": 34, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 13}, {"name": "Mark DeCarlo", "character": "Fly", "id": 60258, "credit_id": "52fe4545c3a36847f80c4c81", "cast_id": 36, "profile_path": "/sKAUAv74kVLM4KMJ9H7PbSqRs29.jpg", "order": 15}, {"name": "Jake T. Austin", "character": "Nicky", "id": 60255, "credit_id": "52fe4545c3a36847f80c4c85", "cast_id": 37, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 16}, {"name": "Allison Mack", "character": "Tiffany Nickle", "id": 60253, "credit_id": "52fe4545c3a36847f80c4c89", "cast_id": 38, "profile_path": "/w2Qul66aJbF9Upe3Hpk5uUufbC.jpg", "order": 17}, {"name": "S. Scott Bullock", "character": "Glow Worm / Wasp Survivor", "id": 60257, "credit_id": "52fe4545c3a36847f80c4c8d", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Paul Greenberg", "character": "Sleeping Ant #1 / Head Lice #1 / Head Lice #2 / Head Lice #3 / Head Lice #4 / Brett", "id": 60259, "credit_id": "52fe4545c3a36847f80c4c91", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Rob Paulsen", "character": "Beetle", "id": 43125, "credit_id": "52fe4545c3a36847f80c4ca1", "cast_id": 43, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 20}], "directors": [{"name": "John A. Davis", "department": "Directing", "job": "Director", "credit_id": "52fe4545c3a36847f80c4bdf", "profile_path": null, "id": 60237}], "vote_average": 5.6, "runtime": 88}, "1715": {"poster_path": "/lgRNj2qa6EWPqJQmtejkGKBZkvm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Homer is an orphan who was never adopted, becoming the favorite of orphanage director Dr. Larch. Dr. Larch imparts his full medical knowledge on Homer, who becomes a skilled, albeit unlicensed, physician. But Homer yearns for a self-chosen life outside the orphanage. What will Homer learn about life and love in the cider house? What of the destiny that Dr. Larch has planned for him?", "video": false, "id": 1715, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Cider House Rules", "tagline": "A story about how far we must travel to find the place where we belong.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0124315", "adult": false, "backdrop_path": "/y2zeVqgDEUVg0oUTLKtBvWqPv79.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "FilmColony", "id": 1811}], "release_date": "1999-12-17", "popularity": 0.70219601889617, "original_title": "The Cider House Rules", "budget": 24000000, "cast": [{"name": "Tobey Maguire", "character": "Homer Wells", "id": 2219, "credit_id": "52fe430fc3a36847f80376cf", "cast_id": 30, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Candy Kendall", "id": 6885, "credit_id": "52fe430fc3a36847f80376d3", "cast_id": 31, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Delroy Lindo", "character": "Mr. Rose", "id": 18792, "credit_id": "52fe430fc3a36847f80376d7", "cast_id": 32, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Wally Worthington", "id": 22226, "credit_id": "52fe430fc3a36847f80376db", "cast_id": 33, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Michael Caine", "character": "Dr. Wilbur Larch", "id": 3895, "credit_id": "52fe430fc3a36847f80376df", "cast_id": 34, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 4}, {"name": "Jane Alexander", "character": "Nurse Edna", "id": 13724, "credit_id": "52fe430fc3a36847f80376e3", "cast_id": 35, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 5}, {"name": "Kathy Baker", "character": "Nurse Angela", "id": 1907, "credit_id": "52fe430fc3a36847f80376e7", "cast_id": 36, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 6}, {"name": "Erykah Badu", "character": "Rose Rose", "id": 4237, "credit_id": "52fe430fc3a36847f80376eb", "cast_id": 37, "profile_path": "/h2RakwuEAGCFaAkBZStap9xWanJ.jpg", "order": 7}, {"name": "Kieran Culkin", "character": "Buster", "id": 18793, "credit_id": "52fe430fc3a36847f80376ef", "cast_id": 38, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 8}, {"name": "Kate Nelligan", "character": "Olive Worthington", "id": 18794, "credit_id": "52fe430fc3a36847f80376f3", "cast_id": 39, "profile_path": "/qesy9idqrmSxzEhdCo0P7Y6HWJO.jpg", "order": 9}, {"name": "Heavy D", "character": "Peaches", "id": 18795, "credit_id": "52fe430fc3a36847f80376f7", "cast_id": 40, "profile_path": "/8HDYOmyNHF3GkzcC6FSRjtYD4Sd.jpg", "order": 10}, {"name": "J.K. Simmons", "character": "Ray Kendall", "id": 18999, "credit_id": "537acde9c3a3685e32000ddf", "cast_id": 41, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 11}, {"name": "Erik Per Sullivan", "character": "Fuzzy", "id": 17190, "credit_id": "537acdfbc3a3685e32000de1", "cast_id": 42, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 12}, {"name": "Paz de la Huerta", "character": "Mary Agnes", "id": 59882, "credit_id": "537ace12c3a3685e14000d6e", "cast_id": 43, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 13}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe430fc3a36847f8037623", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.7, "runtime": 126}, "9909": {"poster_path": "/y5Jee3QmYOlpqfaPPbfvtdVc5wj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180000000, "overview": "LouAnne Johnson is a Marine turned teacher who squares off against a classroom of impudent, inner-city teens, whose bullying tactics nearly drive her out the first day. But Johnson radically changes her lesson plan to include bribery and browbeating (despite objections from the school's prissy principal) in an effort to teach the class that learning is its own reward. Based on LouAnne Johnson's autobiography \"My Posse Don't Do Homework\".", "video": false, "id": 9909, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Dangerous Minds", "tagline": "She Broke the Rules... And Changed Their Lives.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112792", "adult": false, "backdrop_path": "/hf2j8n3vFIS0T4EXpQNkvUvBnQd.jpg", "production_companies": [{"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Via Rosa Productions", "id": 10103}], "release_date": "1995-08-11", "popularity": 0.229567883698896, "original_title": "Dangerous Minds", "budget": 0, "cast": [{"name": "Michelle Pfeiffer", "character": "Louanne Johnson", "id": 1160, "credit_id": "52fe4546c3a36847f80c4e73", "cast_id": 13, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 0}, {"name": "George Dzundza", "character": "Hal Griffith", "id": 10477, "credit_id": "52fe4546c3a36847f80c4e77", "cast_id": 14, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 1}, {"name": "Courtney B. Vance", "character": "George Grandey", "id": 24047, "credit_id": "52fe4546c3a36847f80c4e7b", "cast_id": 15, "profile_path": "/x1kO6TTg3rnz0WAxYgmunsPaxvR.jpg", "order": 2}, {"name": "Robin Bartlett", "character": "Carla Nichols", "id": 11902, "credit_id": "52fe4546c3a36847f80c4e7f", "cast_id": 16, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 3}, {"name": "John Neville", "character": "Waiter", "id": 12642, "credit_id": "52fe4546c3a36847f80c4e89", "cast_id": 18, "profile_path": "/jpV0OS7kDKtQO2NQ6B3vIOimt8D.jpg", "order": 4}, {"name": "Beatrice Winde", "character": "Mary Benton", "id": 168638, "credit_id": "52fe4546c3a36847f80c4e8d", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Lorraine Toussaint", "character": "Irene Roberts", "id": 81726, "credit_id": "52fe4546c3a36847f80c4e91", "cast_id": 20, "profile_path": "/tHvHTU5gV68sNig0kUBatXWuwt9.jpg", "order": 6}, {"name": "Renoly Santiago", "character": "Raul Sanchero", "id": 28863, "credit_id": "52fe4546c3a36847f80c4e95", "cast_id": 21, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 7}, {"name": "Wade Dominguez", "character": "Emilio Ramirez", "id": 975133, "credit_id": "52fe4546c3a36847f80c4e99", "cast_id": 22, "profile_path": "/kQlAdesVyIwd2Tg7PyHSZzsND8A.jpg", "order": 8}, {"name": "Bruklin Harris", "character": "Callie Roberts", "id": 188642, "credit_id": "52fe4546c3a36847f80c4e9d", "cast_id": 23, "profile_path": "/jbYhvYwDIMQK3tlZlY5eUN9bOAx.jpg", "order": 9}, {"name": "Mercello Thedford", "character": "Cornelius Bates", "id": 1074671, "credit_id": "52fe4546c3a36847f80c4ea1", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Roberto Alvarez", "character": "Gusmaro Rivera", "id": 156637, "credit_id": "52fe4546c3a36847f80c4ea5", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Richard Grant", "character": "Durrell Benton", "id": 190913, "credit_id": "52fe4546c3a36847f80c4ea9", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Marisela Gonzales", "character": "Angela", "id": 1074672, "credit_id": "52fe4546c3a36847f80c4ead", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Toni Nichelle Buzhardt", "character": "Nikki", "id": 1074673, "credit_id": "52fe4546c3a36847f80c4eb1", "cast_id": 28, "profile_path": null, "order": 14}], "directors": [{"name": "John N. Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4546c3a36847f80c4e33", "profile_path": null, "id": 60295}], "vote_average": 6.2, "runtime": 99}, "9913": {"poster_path": "/kP7s8PGey0E36JaFoFq2d3gRKNY.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47907715, "overview": "A hospice nurse working at a spooky New Orleans plantation home finds herself entangled in a mystery involving the house's dark past.", "video": false, "id": 9913, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Skeleton Key", "tagline": "Fearing Is Believing", "vote_count": 137, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397101", "adult": false, "backdrop_path": "/5jQBVgdf0FWdzfBnjD7QmLRFsEi.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}, {"name": "ShadowCatcher Entertainment", "id": 12269}, {"name": "Double Feature Films", "id": 215}, {"name": "Daniel Bobker Productions", "id": 12270}, {"name": "Brick Dust Productions LLC", "id": 12271}, {"name": "MFPV Film", "id": 69}], "release_date": "2005-07-29", "popularity": 0.334323144187302, "original_title": "The Skeleton Key", "budget": 40000000, "cast": [{"name": "Kate Hudson", "character": "Caroline Ellis", "id": 11661, "credit_id": "52fe4547c3a36847f80c53cb", "cast_id": 14, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Gena Rowlands", "character": "Violet Devereaux", "id": 4800, "credit_id": "52fe4547c3a36847f80c53cf", "cast_id": 15, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Luke Marshall", "id": 133, "credit_id": "52fe4547c3a36847f80c53d3", "cast_id": 16, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "John Hurt", "character": "Ben Devereaux", "id": 5049, "credit_id": "52fe4547c3a36847f80c53d7", "cast_id": 17, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Joy Bryant", "character": "Jill", "id": 52847, "credit_id": "52fe4547c3a36847f80c53db", "cast_id": 18, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 4}, {"name": "Marion Zinser", "character": "Bayou Woman", "id": 60388, "credit_id": "52fe4547c3a36847f80c53e5", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Maxine Barnett", "character": "Mama Cynthia", "id": 60386, "credit_id": "52fe4547c3a36847f80c53e9", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Fahnlohnee R. Harris", "character": "Hallie", "id": 60387, "credit_id": "52fe4547c3a36847f80c53f3", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Deneen Tyler", "character": "Desk Nurse", "id": 29933, "credit_id": "52fe4547c3a36847f80c53f7", "cast_id": 24, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 8}, {"name": "Ann Dalrymple", "character": "C.N.A.", "id": 60389, "credit_id": "52fe4547c3a36847f80c53fb", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Trula M. Marcus", "character": "Nurse Trula", "id": 60390, "credit_id": "52fe4547c3a36847f80c53ff", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Jen Apgar", "character": "Madeleine Thorpe", "id": 60394, "credit_id": "52fe4547c3a36847f80c5403", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Thomas Uskali", "character": "Robertson Thorpe", "id": 60391, "credit_id": "52fe4547c3a36847f80c5407", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Jamie Lee Redmon", "character": "Grace Thorpe", "id": 60395, "credit_id": "52fe4547c3a36847f80c540b", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Forrest Landis", "character": "Martin Thorpe", "id": 60393, "credit_id": "52fe4547c3a36847f80c540f", "cast_id": 30, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 14}, {"name": "Tonya Staten", "character": "Nurse Audrey", "id": 60392, "credit_id": "52fe4547c3a36847f80c5413", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Isaach De Bankol\u00e9", "character": "Creole Gas Station Owner", "id": 4812, "credit_id": "52fe4547c3a36847f80c5417", "cast_id": 32, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 16}, {"name": "Christa Thorne", "character": "Creole Mother", "id": 60398, "credit_id": "52fe4547c3a36847f80c541b", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Ronald McCall", "character": "Papa Justify", "id": 60396, "credit_id": "52fe4547c3a36847f80c541f", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Jeryl Prescott", "character": "Mama Cecile", "id": 60397, "credit_id": "52fe4547c3a36847f80c5423", "cast_id": 35, "profile_path": null, "order": 19}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe4547c3a36847f80c5385", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.6, "runtime": 104}, "157370": {"poster_path": "/5FfzFGAeljqPBq3sfGnrgXXvvpL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A murder in 1944 draws together the great poets of the beat generation: Allen Ginsberg, Jack Kerouac and William Burroughs.", "video": false, "id": 157370, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Kill Your Darlings", "tagline": "A true story of obsession and murder.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1311071", "adult": false, "backdrop_path": "/eZz81Fc4HhdXGNElr5Uhm8uqSRy.jpg", "production_companies": [{"name": "Killer Films", "id": 1422}], "release_date": "2013-10-16", "popularity": 0.846736057772558, "original_title": "Kill Your Darlings", "budget": 1030064, "cast": [{"name": "Daniel Radcliffe", "character": "Allen Ginsberg", "id": 10980, "credit_id": "52fe4bc29251416c910e4d09", "cast_id": 2, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Elizabeth Olsen", "character": "Edie Parker", "id": 550843, "credit_id": "52fe4bc29251416c910e4d0d", "cast_id": 3, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 1}, {"name": "Michael C. Hall", "character": "David Kammerer", "id": 53820, "credit_id": "52fe4bc29251416c910e4d11", "cast_id": 4, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 2}, {"name": "Ben Foster", "character": "William Burroughs", "id": 11107, "credit_id": "52fe4bc29251416c910e4d15", "cast_id": 5, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 3}, {"name": "Dane DeHaan", "character": "Lucien Carr", "id": 122889, "credit_id": "52fe4bc29251416c910e4d19", "cast_id": 6, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 4}, {"name": "Jack Huston", "character": "Jack Kerouac", "id": 54738, "credit_id": "52fe4bc29251416c910e4d1d", "cast_id": 7, "profile_path": "/fy9PKaLfxVMJ4Ycz8C7xdWrYvFi.jpg", "order": 5}, {"name": "Jennifer Jason Leigh", "character": "Naomi Ginsberg", "id": 10431, "credit_id": "52fe4bc29251416c910e4d21", "cast_id": 8, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 6}, {"name": "Kyra Sedgwick", "character": "Marian Carr", "id": 26467, "credit_id": "52fe4bc39251416c910e4d25", "cast_id": 9, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 7}, {"name": "David Cross", "character": "Louis Ginsberg", "id": 212, "credit_id": "52fe4bc39251416c910e4d29", "cast_id": 10, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 8}, {"name": "David Rasche", "character": "Dean", "id": 33533, "credit_id": "52fe4bc39251416c910e4d2d", "cast_id": 11, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 9}], "directors": [{"name": "John Krokidas", "department": "Directing", "job": "Director", "credit_id": "52fe4bc29251416c910e4d05", "profile_path": null, "id": 1138699}], "vote_average": 6.7, "runtime": 104}, "1724": {"poster_path": "/qTghl3lO8PhmIxkf8eN5WQQefHI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163712074, "overview": "Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.", "video": false, "id": 1724, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Incredible Hulk", "tagline": "You'll like him when he's angry.", "vote_count": 1120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800080", "adult": false, "backdrop_path": "/cOUnJk61xWbhosPMrMWZmvag1NS.jpg", "production_companies": [{"name": "MVL Incredible Productions", "id": 25121}, {"name": "Universal Pictures", "id": 33}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Marvel Studios", "id": 420}, {"name": "Valhalla Motion Pictures", "id": 11533}], "release_date": "2008-06-12", "popularity": 2.84348667554249, "original_title": "The Incredible Hulk", "budget": 150000000, "cast": [{"name": "Edward Norton", "character": "Bruce Banner", "id": 819, "credit_id": "52fe4311c3a36847f8037c65", "cast_id": 3, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Liv Tyler", "character": "Betty Ross", "id": 882, "credit_id": "52fe4311c3a36847f8037c99", "cast_id": 12, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 1}, {"name": "Tim Roth", "character": "Emil Blonsky", "id": 3129, "credit_id": "52fe4311c3a36847f8037c9d", "cast_id": 13, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 2}, {"name": "William Hurt", "character": "General \"Thunderbolt\" Ross", "id": 227, "credit_id": "52fe4311c3a36847f8037ca1", "cast_id": 14, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Tim Blake Nelson", "character": "Leonard", "id": 1462, "credit_id": "52fe4311c3a36847f8037ca5", "cast_id": 15, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 4}, {"name": "Ty Burrell", "character": "Dr. Samson", "id": 15232, "credit_id": "52fe4311c3a36847f8037cad", "cast_id": 17, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 5}, {"name": "Christina Cabot", "character": "Major Kathleen Sparr", "id": 68277, "credit_id": "52fe4311c3a36847f8037ca9", "cast_id": 16, "profile_path": "/7UBTv5lW6apPdVLnOqTTBMTJWwY.jpg", "order": 6}, {"name": "Peter Mensah", "character": "General Joe Greller", "id": 68278, "credit_id": "52fe4311c3a36847f8037cb1", "cast_id": 18, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 7}, {"name": "Lou Ferrigno", "character": "Voice of The Incredible Hulk / Security Guard", "id": 19137, "credit_id": "52fe4311c3a36847f8037ccd", "cast_id": 23, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 8}, {"name": "Paul Soles", "character": "Stanley", "id": 1215283, "credit_id": "52fe4311c3a36847f8037cf1", "cast_id": 34, "profile_path": "/2vDC8SwTcE59TZlRg1tSpNPxrxk.jpg", "order": 9}, {"name": "D\u00e9bora Nascimento", "character": "Martina", "id": 964764, "credit_id": "52fe4311c3a36847f8037cd1", "cast_id": 25, "profile_path": "/j4sQgNJNsugXnTWhvjnniKUqCuc.jpg", "order": 10}, {"name": "Greg Bryk", "character": "Commando", "id": 231, "credit_id": "52fe4311c3a36847f8037cd5", "cast_id": 26, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 11}, {"name": "Genelle Williams", "character": "Terrified Gal", "id": 80969, "credit_id": "5445eb9cc3a3683e0b009500", "cast_id": 87, "profile_path": "/kIes099gCcRGxusOeRLlyE9RoZF.jpg", "order": 12}, {"name": "Chris Owens", "character": "Commando", "id": 158459, "credit_id": "52fe4311c3a36847f8037cd9", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Al Vrkljan", "character": "Commando (as Alan Vrkljan)", "id": 1075146, "credit_id": "52fe4311c3a36847f8037cdd", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Adrian Hein", "character": "Commando", "id": 185853, "credit_id": "52fe4311c3a36847f8037ce1", "cast_id": 29, "profile_path": "/upCgRAOUyuUFcdfBFXGgICnRWky.jpg", "order": 15}, {"name": "John MacDonald", "character": "Commando", "id": 1366350, "credit_id": "541f52dec3a3687992000b32", "cast_id": 37, "profile_path": "/llxpHzOBBJ3T9JUgIx07NCaKjRs.jpg", "order": 16}, {"name": "Shaun McComb", "character": "Helicopter Soldier", "id": 1366351, "credit_id": "541f52f20e0a26179a0009db", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Simon Wong", "character": "Grad Student", "id": 1366353, "credit_id": "541f5326c3a368799c000903", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Pedro Salv\u00edn", "character": "Tough Guy Leader", "id": 185165, "credit_id": "541f5374c3a3687988000a60", "cast_id": 40, "profile_path": "/nlARMfccPSdkOleKmGT9jbyma13.jpg", "order": 19}, {"name": "Julio Cesar Torres Dantas", "character": "Tough Guy", "id": 1366354, "credit_id": "541f5385c3a3687992000b3e", "cast_id": 41, "profile_path": null, "order": 20}, {"name": "Raimundo Camargo Nascimento", "character": "Tough Guy", "id": 1366355, "credit_id": "541f5393c3a36879960009f3", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Nick Alachiotis", "character": "Tough Guy", "id": 15230, "credit_id": "541f53b8c3a36879a30008fa", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Jason Burke", "character": "Communications Officer", "id": 1366356, "credit_id": "541f53ea0e0a2617a20009c2", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Grant Nickalls", "character": "Helicopter Pilot", "id": 941286, "credit_id": "541f540ac3a36879960009f7", "cast_id": 45, "profile_path": null, "order": 24}, {"name": "Joris Jarsky", "character": "Soldier", "id": 76973, "credit_id": "541f5423c3a3687988000a6a", "cast_id": 46, "profile_path": "/mtzNrX8Z0WYbtot82o4gM3FDqYa.jpg", "order": 25}, {"name": "Arnold Pinnock", "character": "Soldier", "id": 87575, "credit_id": "541f543ac3a368798d0009df", "cast_id": 47, "profile_path": "/gwS8LNLcDeeOOcrpJM7C6s66lav.jpg", "order": 26}, {"name": "Tig Fong", "character": "Cop", "id": 8360, "credit_id": "541f5467c3a36879a3000907", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Jason Hunter", "character": "Cop", "id": 1366357, "credit_id": "541f54d0c3a36879a300090c", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Maxwell McCabe-Lokos", "character": "Cab Driver", "id": 53577, "credit_id": "541f54ebc3a368799c000920", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "David Collins", "character": "Medical Technician", "id": 1366358, "credit_id": "541f55490e0a2617a20009d8", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Chris Ratz", "character": "Young Guy", "id": 1366361, "credit_id": "541f5624c3a3687996000a1a", "cast_id": 56, "profile_path": null, "order": 31}, {"name": "John Carvalho", "character": "Plant Manager", "id": 1366359, "credit_id": "541f5561c3a3687996000a08", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Robin Wilcock", "character": "Sniper", "id": 1142866, "credit_id": "541f5584c3a3687992000b51", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Wayne Robson", "character": "Boat Captain", "id": 5897, "credit_id": "541f55a50e0a261794000a87", "cast_id": 54, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 34}, {"name": "Javier Lambert", "character": "Guatemalan Trucker", "id": 1366360, "credit_id": "541f560b0e0a2617910009e6", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Martin Starr", "character": "Computer Nerd", "id": 41089, "credit_id": "52fe4311c3a36847f8037ce9", "cast_id": 31, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 36}, {"name": "Todd Hofley", "character": "Apache Helicopter Pilot", "id": 1366362, "credit_id": "541f56320e0a2617a50009d8", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Joe La Loggia", "character": "Soldier", "id": 1366363, "credit_id": "541f563f0e0a2617a80009fc", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Tamsen McDonough", "character": "Colleague", "id": 1160260, "credit_id": "541f56e3c3a368798d000a08", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Michael Kenneth Williams", "character": "Harlem Bystander (as Michael Kenneth Williams)", "id": 39390, "credit_id": "52fe4311c3a36847f8037ced", "cast_id": 33, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 40}, {"name": "Roberto Bakker", "character": "Market Vendor", "id": 1366364, "credit_id": "541f571d0e0a2617a50009e5", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Ruru Sacha", "character": "Supply Driver", "id": 1366365, "credit_id": "541f57470e0a26179a000a1a", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "James Downing", "character": "Army Base Doctor", "id": 1181132, "credit_id": "541f576fc3a3687988000a9c", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Rickson Gracie", "character": "Aikido Instructor", "id": 115387, "credit_id": "541f578bc3a3687992000b6c", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Stephen Gartner", "character": "Ross's Soldier", "id": 1366366, "credit_id": "541f5798c3a3687996000a31", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Nicholas Rose", "character": "McGee", "id": 1234315, "credit_id": "541f57a20e0a261794000aa5", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "P.J. Kerr", "character": "Wilson", "id": 1366369, "credit_id": "541f57d4c3a368799c00094d", "cast_id": 68, "profile_path": null, "order": 47}, {"name": "Jee-Yun Lee", "character": "Reporter", "id": 201951, "credit_id": "541f58200e0a26179a000a32", "cast_id": 69, "profile_path": null, "order": 48}, {"name": "Desmond Campbell", "character": "Gunner", "id": 180996, "credit_id": "541f5860c3a368798d000a2a", "cast_id": 70, "profile_path": null, "order": 49}, {"name": "Deshaun Clarke", "character": "Little Boy", "id": 1366370, "credit_id": "541f5872c3a36879a300093b", "cast_id": 71, "profile_path": null, "order": 50}, {"name": "Tony Nappo", "character": "Brave Cop", "id": 76528, "credit_id": "541f588ac3a3687996000a44", "cast_id": 72, "profile_path": null, "order": 51}, {"name": "Aaron Berg", "character": "Soldier", "id": 54200, "credit_id": "541f5a70c3a3687988000ad6", "cast_id": 73, "profile_path": "/iGvsSJpPXrDxH6rvLIBNtCzDHwy.jpg", "order": 52}, {"name": "David Meunier", "character": "Soldier (as David Miller)", "id": 1224149, "credit_id": "52fe4311c3a36847f8037cf9", "cast_id": 36, "profile_path": "/bBCXP8UmTHjwqAJRO3Nk3UBftBt.jpg", "order": 53}, {"name": "Tre Smith", "character": "Soldier", "id": 38564, "credit_id": "541f5ab7c3a368798d000a58", "cast_id": 74, "profile_path": null, "order": 54}, {"name": "Moses Nyarko", "character": "Soldier", "id": 1366371, "credit_id": "541f5ae5c3a368798d000a5e", "cast_id": 75, "profile_path": null, "order": 55}, {"name": "Carlos A. Gonzalez", "character": "BOPE Officer", "id": 1366372, "credit_id": "541f5b1bc3a3687985000a9f", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "Yan Regis", "character": "Medic Soldier", "id": 1366374, "credit_id": "541f5b5ac3a368798d000a67", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Stephen Broussard", "character": "Handsome Soldier", "id": 1117748, "credit_id": "541f5b6ec3a3687985000aa9", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Robert Morse", "character": "Command Van Soldier", "id": 40173, "credit_id": "54a06541c3a36851ce001f88", "cast_id": 88, "profile_path": "/va3BC55HSkbKiuphzgYCF9Jaa1x.jpg", "order": 60}, {"name": "Matt Purdy", "character": "Ross's Aide", "id": 1366377, "credit_id": "541f5bc5c3a36879a0000aa7", "cast_id": 80, "profile_path": null, "order": 61}, {"name": "Lenka Matuska", "character": "Female Medical Assistant", "id": 1366378, "credit_id": "541f5bd6c3a3687996000a85", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Scott Magee", "character": "Humvee Driver", "id": 1366379, "credit_id": "541f5be4c3a368798d000a73", "cast_id": 82, "profile_path": null, "order": 63}, {"name": "Wes Berger", "character": "Sterns Lab Soldier", "id": 1366380, "credit_id": "541f5bf20e0a261794000af8", "cast_id": 83, "profile_path": null, "order": 64}, {"name": "Carla Nascimento", "character": "Large Woman", "id": 1366381, "credit_id": "541f5c02c3a3687996000a8a", "cast_id": 84, "profile_path": null, "order": 65}, {"name": "Krista Vendy", "character": "Female Bartender", "id": 1230333, "credit_id": "541f5c0e0e0a26179e000ac7", "cast_id": 85, "profile_path": null, "order": 66}, {"name": "Mila Stromboni", "character": "Hopscotch Girl", "id": 1366382, "credit_id": "541f5c1c0e0a2617a2000a43", "cast_id": 86, "profile_path": null, "order": 67}, {"name": "Robert Downey Jr.", "character": "Tony Stark (uncredited)", "id": 3223, "credit_id": "52fe4311c3a36847f8037ce5", "cast_id": 30, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 68}, {"name": "Stan Lee", "character": "Milwaukee Man Drinking From Bottle (uncredited)", "id": 7624, "credit_id": "52fe4311c3a36847f8037cf5", "cast_id": 35, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 69}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8037c5b", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 6.0, "runtime": 114}, "1725": {"poster_path": "/zRQhCSREdR9h4OzEVvwhdlZNZ6m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43656822, "overview": "In the slums of the upper West Side of Manhattan, New York, a gang of Polish-American teenagers called the Jets compete with a rival gang of recently immigrated Puerto Ricans, the Sharks, to \"own\" the neighborhood streets. Tensions are high between the gangs but two kids, one from each rival gang, fall in love leading to tragedy.", "video": false, "id": 1725, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "West Side Story", "tagline": "The screen achieves one of the great entertainments in the history of motion pictures", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0055614", "adult": false, "backdrop_path": "/wgjArGrch7ezI5hGjaB1oj2yb2C.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "20th Century Fox Home Entertainment", "id": 3635}], "release_date": "1961-10-18", "popularity": 0.882929756399375, "original_title": "West Side Story", "budget": 6000000, "cast": [{"name": "Natalie Wood", "character": "Maria", "id": 2769, "credit_id": "52fe4311c3a36847f8037d5b", "cast_id": 6, "profile_path": "/iAFtRflUEWSUObRZaqHPxx5CWSn.jpg", "order": 0}, {"name": "Richard Beymer", "character": "Tony", "id": 6679, "credit_id": "52fe4311c3a36847f8037d5f", "cast_id": 7, "profile_path": "/9jOYQIu3jVAhMNMUKG50Q6TdEmv.jpg", "order": 1}, {"name": "Russ Tamblyn", "character": "Riff", "id": 6725, "credit_id": "52fe4311c3a36847f8037d63", "cast_id": 8, "profile_path": "/gc0wmr0vyqYRhA7piZsqKVvy0uX.jpg", "order": 2}, {"name": "Rita Moreno", "character": "Anita", "id": 13299, "credit_id": "52fe4311c3a36847f8037d67", "cast_id": 9, "profile_path": "/A5IKvjUTdwexp4l5Bi6vaH8Hypc.jpg", "order": 3}, {"name": "George Chakiris", "character": "Bernardo", "id": 24880, "credit_id": "52fe4311c3a36847f8037d7b", "cast_id": 14, "profile_path": "/iFkpjp2g55L7qi0yoXrcWPWxLQ9.jpg", "order": 4}, {"name": "Simon Oakland", "character": "Lieutenant Schrank", "id": 14063, "credit_id": "52fe4311c3a36847f8037d6b", "cast_id": 10, "profile_path": "/frbQBmieMRcdAKupAIbJ0FsHuD2.jpg", "order": 5}, {"name": "Ned Glass", "character": "Doc", "id": 18870, "credit_id": "52fe4311c3a36847f8037d6f", "cast_id": 11, "profile_path": "/dwfC6rmH6JkaNxuYEgi2Yh55n4w.jpg", "order": 6}, {"name": "William Bramley", "character": "Officer Krupke", "id": 18871, "credit_id": "52fe4311c3a36847f8037d73", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Tucker Smith", "character": "Ice", "id": 18872, "credit_id": "52fe4311c3a36847f8037d77", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Susan Oakes", "character": "Anybodys", "id": 982293, "credit_id": "52fe4311c3a36847f8037d91", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Jose De Vega", "character": "Chino", "id": 975393, "credit_id": "52fe4311c3a36847f8037d95", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Gina Trikonis", "character": "Graziella", "id": 955862, "credit_id": "52fe4311c3a36847f8037d99", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Carole D'Andrea", "character": "Velma", "id": 1161036, "credit_id": "52fe4311c3a36847f8037d9d", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Eliot Feld", "character": "Baby John", "id": 1161038, "credit_id": "52fe4311c3a36847f8037da1", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Tony Mordente", "character": "Action", "id": 151333, "credit_id": "52fe4311c3a36847f8037da5", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "David Winters", "character": "A-Rab", "id": 29700, "credit_id": "52fe4311c3a36847f8037da9", "cast_id": 24, "profile_path": "/jWKkhjexv5FJSyvbBX3DlCvFKrh.jpg", "order": 15}, {"name": "Scooter Teague", "character": "Big Deal", "id": 1161040, "credit_id": "52fe4311c3a36847f8037dad", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Yvonne Othon", "character": "Consuelo", "id": 1161041, "credit_id": "52fe4311c3a36847f8037db1", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "John Astin", "character": "Glad Hand, the dance organizer", "id": 41230, "credit_id": "52fe4311c3a36847f8037db5", "cast_id": 27, "profile_path": "/thWruW63AhnJUiQu4hcqi600dNH.jpg", "order": 18}, {"name": "Penny Santon", "character": "Madam Lucia", "id": 80599, "credit_id": "52fe4311c3a36847f8037db9", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Suzie Kaye", "character": "Rosalia", "id": 1098447, "credit_id": "52fe4311c3a36847f8037dbd", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Anne Miya", "character": "Francisca", "id": 1161043, "credit_id": "52fe4311c3a36847f8037dc1", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Bert Michaels", "character": "Snowboy", "id": 1161044, "credit_id": "52fe4311c3a36847f8037dc5", "cast_id": 31, "profile_path": null, "order": 22}], "directors": [{"name": "Jerome Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8037d3f", "profile_path": "/1kx6asDWQvrwGhVUlPDdtrPmsC8.jpg", "id": 18868}, {"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8037d45", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 6.3, "runtime": 152}, "1726": {"poster_path": "/s2IG9qXfhJYxIttKyroYFBsHwzQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 585174222, "overview": "After escaping from kidnappers using makeshift power armor, an ultra rich inventor and weapons maker turns his creation into a force for good by using it to fight crime. But his skills are stretched to the limit when he must face the evil Iron Monger.", "video": false, "id": 1726, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Man", "tagline": "Heroes aren't born. They're built.", "vote_count": 4284, "homepage": "http://www.ironmanmovie.com/", "belongs_to_collection": {"backdrop_path": "/rI8zOWkRQJdlAyQ6WJOSlYK6JxZ.jpg", "poster_path": "/fbeJ7f0aD4A112Bc1tnpzyn82xO.jpg", "id": 131292, "name": "Iron Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0371746", "adult": false, "backdrop_path": "/ZQixhAZx6fH1VNafFXsqa1B8QI.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2008-05-02", "popularity": 3.16201974265365, "original_title": "Iron Man", "budget": 140000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe4311c3a36847f8037ee9", "cast_id": 19, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Terrence Howard", "character": "Lt. Col. James \"Rhodey\" Rhodes", "id": 18288, "credit_id": "52fe4311c3a36847f8037ecb", "cast_id": 12, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 1}, {"name": "Jeff Bridges", "character": "Obadiah Stane", "id": 1229, "credit_id": "52fe4311c3a36847f8037ec7", "cast_id": 11, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 2}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe4311c3a36847f8037ec3", "cast_id": 10, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 3}, {"name": "Leslie Bibb", "character": "Christine Everhart", "id": 57451, "credit_id": "52fe4311c3a36847f8037ee1", "cast_id": 17, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 4}, {"name": "Shaun Toub", "character": "Yinsen", "id": 17857, "credit_id": "52fe4311c3a36847f8037ebf", "cast_id": 9, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 5}, {"name": "Faran Tahir", "character": "Raza", "id": 57452, "credit_id": "52fe4311c3a36847f8037ee5", "cast_id": 18, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Agent Phil Coulson", "id": 9048, "credit_id": "52fe4311c3a36847f8037ef3", "cast_id": 21, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "Sayed Badreya", "character": "Abu Bakaar", "id": 173810, "credit_id": "52fe4311c3a36847f8037ef7", "cast_id": 23, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 8}, {"name": "Bill Smitrovich", "character": "General Gabriel", "id": 17200, "credit_id": "52fe4311c3a36847f8037f0f", "cast_id": 29, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 9}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe4311c3a36847f8037efb", "cast_id": 24, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 10}, {"name": "Jon Favreau", "character": "Hogan", "id": 15277, "credit_id": "52fe4311c3a36847f8037eff", "cast_id": 25, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 11}, {"name": "Peter Billingsley", "character": "William Ginter Riva", "id": 12708, "credit_id": "52fe4311c3a36847f8037f03", "cast_id": 26, "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "order": 12}, {"name": "Tim Guinee", "character": "Major Allen", "id": 40275, "credit_id": "52fe4311c3a36847f8037f07", "cast_id": 27, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 13}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4311c3a36847f8037f0b", "cast_id": 28, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 14}, {"name": "Will Lyman", "character": "Award Ceremony Narrator (voice)", "id": 163671, "credit_id": "52fe4311c3a36847f8037f37", "cast_id": 36, "profile_path": "/xYU1FSeQhXLyg6VskqRBofFyoU8.jpg", "order": 15}, {"name": "Tom Morello", "character": "Guard", "id": 78299, "credit_id": "52fe4311c3a36847f8037f3b", "cast_id": 37, "profile_path": "/7QQmzUqv8trWHBLKlDeeYYkZ4Gt.jpg", "order": 16}, {"name": "Marco Khan", "character": "Guard", "id": 54809, "credit_id": "52fe4311c3a36847f8037f3f", "cast_id": 38, "profile_path": "/7ICgwwtohryQmWyLPsaJvrnorDi.jpg", "order": 17}, {"name": "Daston Kalili", "character": "Guard", "id": 944830, "credit_id": "52fe4311c3a36847f8037f43", "cast_id": 39, "profile_path": "/jsgC2DQU3KhAh6mHMVSrv73H2xH.jpg", "order": 18}, {"name": "Ido Ezra", "character": "Guard", "id": 1209417, "credit_id": "52fe4311c3a36847f8037f47", "cast_id": 40, "profile_path": "/2neOIiktvBNt4GWu4v1PZrbtpGu.jpg", "order": 19}, {"name": "Kevin Foster", "character": "Jimmy", "id": 95698, "credit_id": "52fe4311c3a36847f8037f4b", "cast_id": 41, "profile_path": "/9YZigxSi9V4mdpzxvs6G1nVRPbC.jpg", "order": 20}, {"name": "Garret No\u00ebl", "character": "Pratt", "id": 1209418, "credit_id": "52fe4311c3a36847f8037f4f", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Eileen Weisinger", "character": "Ramirez", "id": 62037, "credit_id": "52fe4311c3a36847f8037f53", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Ahmed Ahmed", "character": "Ahmed", "id": 183439, "credit_id": "52fe4311c3a36847f8037f57", "cast_id": 44, "profile_path": "/iLJhN93hLhbOygSZhx1m1ToXHuI.jpg", "order": 23}, {"name": "Fahim Fazli", "character": "Omar", "id": 109669, "credit_id": "52fe4311c3a36847f8037f5b", "cast_id": 45, "profile_path": "/ybLWM4LBYrsqZ3h2qgn2zOUiIX0.jpg", "order": 24}, {"name": "Gerard Sanders", "character": "Howard Stark", "id": 104669, "credit_id": "52fe4311c3a36847f8037f5f", "cast_id": 46, "profile_path": null, "order": 25}, {"name": "Tim Rigby", "character": "Viper 1", "id": 1209419, "credit_id": "52fe4311c3a36847f8037f63", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Russell Richardson", "character": "Viper 2", "id": 195442, "credit_id": "52fe4311c3a36847f8037f67", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Nazanin Boniadi", "character": "Amira Ahmed", "id": 142213, "credit_id": "52fe4311c3a36847f8037f6b", "cast_id": 49, "profile_path": "/eo5kuNvxk1Ve9pjetcIb3tzIECV.jpg", "order": 28}, {"name": "Thomas Craig Plumer", "character": "Colonel Craig", "id": 1209702, "credit_id": "52fe4311c3a36847f8037f6f", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Robert Berkman", "character": "Dealer at Craps Table", "id": 1209703, "credit_id": "52fe4311c3a36847f8037f73", "cast_id": 51, "profile_path": null, "order": 30}, {"name": "Stacy Stas", "character": "Woman at Craps Table", "id": 183037, "credit_id": "52fe4311c3a36847f8037f77", "cast_id": 52, "profile_path": "/nXrk2qrZyD0fA2RY229h4EDyYlN.jpg", "order": 31}, {"name": "Lauren Scyphers", "character": "Woman at Craps Table", "id": 1209704, "credit_id": "52fe4311c3a36847f8037f7b", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Frank Nyi", "character": "Engineer", "id": 214951, "credit_id": "52fe4311c3a36847f8037f7f", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Marvin Jordan", "character": "Air Force Officer", "id": 205362, "credit_id": "52fe4311c3a36847f8037f83", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Jim Cramer", "character": "Jim Cramer", "id": 203468, "credit_id": "52fe4311c3a36847f8037f87", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Donna Evans", "character": "Woman In SUV", "id": 939869, "credit_id": "52fe4311c3a36847f8037f8b", "cast_id": 57, "profile_path": null, "order": 36}, {"name": "Reid Harper", "character": "Kid in SUV", "id": 1209705, "credit_id": "52fe4311c3a36847f8037f8f", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "Summer Kylie Remington", "character": "Kid in SUV", "id": 1209706, "credit_id": "52fe4311c3a36847f8037f93", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Ava Rose Williams", "character": "Kid in SUV", "id": 1209707, "credit_id": "52fe4311c3a36847f8037f97", "cast_id": 60, "profile_path": null, "order": 39}, {"name": "Vladimir Kubr", "character": "Kid in SUV", "id": 1209708, "credit_id": "52fe4311c3a36847f8037f9b", "cast_id": 61, "profile_path": null, "order": 40}, {"name": "Callie Croughwell", "character": "Kid in SUV", "id": 1209709, "credit_id": "52fe4311c3a36847f8037f9f", "cast_id": 62, "profile_path": null, "order": 41}, {"name": "Javan Tahir", "character": "Gulmira Kid", "id": 1209710, "credit_id": "52fe4311c3a36847f8037fa3", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Sahar Bibiyan", "character": "Gulmira Mom", "id": 206423, "credit_id": "52fe4311c3a36847f8037fa7", "cast_id": 64, "profile_path": null, "order": 43}, {"name": "Patrick O'Connell", "character": "Reporter", "id": 133121, "credit_id": "52fe4311c3a36847f8037fab", "cast_id": 65, "profile_path": null, "order": 44}, {"name": "Adam Harrington", "character": "Reporter", "id": 181895, "credit_id": "52fe4311c3a36847f8037faf", "cast_id": 66, "profile_path": "/xQHFfNqqvcUNxPmPTKHKkHIBY8d.jpg", "order": 45}, {"name": "Meera Simhan", "character": "Reporter", "id": 62843, "credit_id": "52fe4311c3a36847f8037fb3", "cast_id": 67, "profile_path": null, "order": 46}, {"name": "Ben Newmark", "character": "Reporter", "id": 204606, "credit_id": "52fe4311c3a36847f8037fb7", "cast_id": 68, "profile_path": null, "order": 47}, {"name": "Ricki Lander", "character": "Flight Attendant", "id": 210842, "credit_id": "52fe4311c3a36847f8037fbb", "cast_id": 69, "profile_path": "/9B9h9aK16tZpbdDIH1XJR62o5Ls.jpg", "order": 48}, {"name": "Jeannine Kaspar", "character": "Flight Attendant", "id": 205720, "credit_id": "52fe4311c3a36847f8037fbf", "cast_id": 70, "profile_path": null, "order": 49}, {"name": "Sarah Cahill", "character": "Flight Attendant", "id": 1005698, "credit_id": "52fe4311c3a36847f8037fc3", "cast_id": 71, "profile_path": null, "order": 50}, {"name": "Stan Lee", "character": "Stan Lee", "id": 7624, "credit_id": "52fe4311c3a36847f8037fc7", "cast_id": 72, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 51}, {"name": "Justin Rex", "character": "Air Force Lieutenant", "id": 1209711, "credit_id": "52fe4311c3a36847f8037fcb", "cast_id": 73, "profile_path": null, "order": 52}, {"name": "Zorianna Kit", "character": "Zorianna Kit", "id": 90721, "credit_id": "52fe4311c3a36847f8037fcf", "cast_id": 74, "profile_path": null, "order": 53}, {"name": "Lana Kinnear", "character": "Stan's Girl", "id": 169681, "credit_id": "52fe4311c3a36847f8037fd3", "cast_id": 75, "profile_path": null, "order": 54}, {"name": "Nicole Lindeblad", "character": "Stan's Girl", "id": 1209712, "credit_id": "52fe4311c3a36847f8037fd7", "cast_id": 76, "profile_path": null, "order": 55}, {"name": "Masha Lund", "character": "Stan's Girl", "id": 1209713, "credit_id": "52fe4311c3a36847f8037fdb", "cast_id": 77, "profile_path": null, "order": 56}, {"name": "Gabrielle Tuite", "character": "Stan's Girl", "id": 169642, "credit_id": "52fe4311c3a36847f8037fdf", "cast_id": 78, "profile_path": null, "order": 57}, {"name": "Tim Griffin", "character": "CAOC Analyst", "id": 27031, "credit_id": "52fe4311c3a36847f8037fe3", "cast_id": 79, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 58}, {"name": "Joshua Harto", "character": "CAOC Analyst", "id": 34544, "credit_id": "52fe4311c3a36847f8037fe7", "cast_id": 80, "profile_path": "/8jRaYHrZX6sZoUOOXZI1H6EQNQa.jpg", "order": 59}, {"name": "Micah A. Hauptman", "character": "CAOC Analyst", "id": 150669, "credit_id": "52fe4311c3a36847f8037feb", "cast_id": 81, "profile_path": null, "order": 60}, {"name": "James Bethea", "character": "CAOC Analyst", "id": 1209714, "credit_id": "52fe4311c3a36847f8037fef", "cast_id": 82, "profile_path": null, "order": 61}, {"name": "Jeffrey Ashkin", "character": "Photographer (uncredited)", "id": 1209715, "credit_id": "52fe4311c3a36847f8037ff3", "cast_id": 83, "profile_path": null, "order": 62}, {"name": "Russell Bobbitt", "character": "Georgio (uncredited)", "id": 1004624, "credit_id": "52fe4311c3a36847f8037ff7", "cast_id": 84, "profile_path": null, "order": 63}, {"name": "Vianessa Casta\u00f1os", "character": "Fireman's Wife (uncredited)", "id": 984619, "credit_id": "52fe4311c3a36847f8037ffb", "cast_id": 85, "profile_path": null, "order": 64}, {"name": "Mike Cochrane", "character": "Gulmira Villager (uncredited)", "id": 1209716, "credit_id": "52fe4311c3a36847f8037fff", "cast_id": 86, "profile_path": "/wvRPrMzmihH0IeX3tQ3eg3n34mL.jpg", "order": 65}, {"name": "Crystal Marie Denha", "character": "Dubai Beauty (uncredited)", "id": 1209717, "credit_id": "52fe4311c3a36847f8038003", "cast_id": 87, "profile_path": null, "order": 66}, {"name": "Mellany Gandara", "character": "Dubai Girl (uncredited)", "id": 970218, "credit_id": "52fe4311c3a36847f8038007", "cast_id": 88, "profile_path": null, "order": 67}, {"name": "Halla", "character": "House wife at Award Ceremony (uncredited)", "id": 1209718, "credit_id": "52fe4311c3a36847f803800b", "cast_id": 89, "profile_path": null, "order": 68}, {"name": "Rodrick Hersh", "character": "Insurgent (uncredited)", "id": 1202546, "credit_id": "52fe4311c3a36847f803800f", "cast_id": 90, "profile_path": null, "order": 69}, {"name": "Kristin J. Hooper", "character": "Reporter (uncredited)", "id": 1209719, "credit_id": "52fe4311c3a36847f8038013", "cast_id": 91, "profile_path": null, "order": 70}, {"name": "Chris Jalandoni", "character": "Dubai Waiter (uncredited)", "id": 1209720, "credit_id": "52fe4311c3a36847f8038017", "cast_id": 92, "profile_path": null, "order": 71}, {"name": "Steve Janousek", "character": "Party Guest (uncredited)", "id": 1209721, "credit_id": "52fe4311c3a36847f803801b", "cast_id": 93, "profile_path": null, "order": 72}, {"name": "Laura Liguori", "character": "Dancer in Ballroom (uncredited)", "id": 1209722, "credit_id": "52fe4311c3a36847f803801f", "cast_id": 94, "profile_path": null, "order": 73}, {"name": "Flavia Manes Rossi", "character": "Reporter (uncredited)", "id": 1089759, "credit_id": "52fe4311c3a36847f8038023", "cast_id": 95, "profile_path": null, "order": 74}, {"name": "Anthony Martins", "character": "Village Dad (uncredited)", "id": 1096679, "credit_id": "52fe4311c3a36847f8038027", "cast_id": 96, "profile_path": null, "order": 75}, {"name": "Robert McMurrer", "character": "Reporter (uncredited)", "id": 1209723, "credit_id": "52fe4311c3a36847f803802b", "cast_id": 97, "profile_path": null, "order": 76}, {"name": "James M. Myers", "character": "Airforce Officer (uncredited)", "id": 1209724, "credit_id": "52fe4311c3a36847f803802f", "cast_id": 98, "profile_path": null, "order": 77}, {"name": "America Olivo", "character": "Dubai Beauty #1 (uncredited)", "id": 78434, "credit_id": "52fe4311c3a36847f8038033", "cast_id": 99, "profile_path": "/jcKVwKxJEV2xRpkokNe0Om4GKHA.jpg", "order": 78}, {"name": "Sylvette Ortiz", "character": "Staff Sergeant (uncredited)", "id": 1209725, "credit_id": "52fe4311c3a36847f8038037", "cast_id": 100, "profile_path": null, "order": 79}, {"name": "Brett Padelford", "character": "Journalist (uncredited)", "id": 1209726, "credit_id": "52fe4311c3a36847f803803b", "cast_id": 101, "profile_path": null, "order": 80}, {"name": "Ajani Perkins", "character": "Voice (uncredited)", "id": 1209727, "credit_id": "52fe4311c3a36847f803803f", "cast_id": 102, "profile_path": null, "order": 81}, {"name": "Chris Reid", "character": "Reporter (uncredited)", "id": 1209728, "credit_id": "52fe4311c3a36847f8038043", "cast_id": 103, "profile_path": null, "order": 82}, {"name": "Toi Rose", "character": "News Cameraman (uncredited)", "id": 1209729, "credit_id": "52fe4311c3a36847f8038047", "cast_id": 104, "profile_path": null, "order": 83}, {"name": "Arne Starr", "character": "Dubai Tychoon in hat / Bus Passenger (uncredited)", "id": 1202554, "credit_id": "52fe4311c3a36847f803804b", "cast_id": 105, "profile_path": null, "order": 84}, {"name": "George F. Watson", "character": "Rooftop Fireman (uncredited)", "id": 1209730, "credit_id": "52fe4311c3a36847f803804f", "cast_id": 106, "profile_path": null, "order": 85}, {"name": "David Zyler", "character": "Whiplash One (voice) (uncredited)", "id": 1209731, "credit_id": "52fe4311c3a36847f8038053", "cast_id": 107, "profile_path": null, "order": 86}, {"name": "Nick W. Nicholson", "character": "Reporter (uncredited)", "id": 1429470, "credit_id": "54e7e9e1c3a36836e7000ca9", "cast_id": 109, "profile_path": null, "order": 87}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe4311c3a36847f8038059", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 7.1, "runtime": 126}, "9919": {"poster_path": "/aiB7u6xZ9RWeDTQ7c92J8AoiHj3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105807520, "overview": "An advice columnist, Andie Anderson (Kate Hudson), tries pushing the boundaries of what she can write about in her new piece about how to get a man to leave you in 10 days. Her editor, Lana (Bebe Neuwirth), loves it, and Andie goes off to find a man she can use for the experiment. Enter executive Ben Berry (Matthew McConaughey), who is so confident in his romantic prowess that he thinks he can make any woman fall in love with him in 10 days. When Andie and Ben meet, their plans backfire.", "video": false, "id": 9919, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "How to Lose a Guy in 10 Days", "tagline": "One of them is lying. So is the other.", "vote_count": 199, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251127", "adult": false, "backdrop_path": "/wD6XPtYP2RqaTo7Gpwt6tURU30D.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2003-02-07", "popularity": 1.12041430870219, "original_title": "How to Lose a Guy in 10 Days", "budget": 50000000, "cast": [{"name": "Kate Hudson", "character": "Andie Anderson", "id": 11661, "credit_id": "52fe4549c3a36847f80c59cb", "cast_id": 12, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Benjamin Barry", "id": 10297, "credit_id": "52fe4549c3a36847f80c59cf", "cast_id": 13, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Kathryn Hahn", "character": "Michelle Rubin", "id": 17696, "credit_id": "52fe4549c3a36847f80c59d3", "cast_id": 14, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 2}, {"name": "Annie Parisse", "character": "Jeannie Ashcroft", "id": 24291, "credit_id": "52fe4549c3a36847f80c59d7", "cast_id": 15, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 3}, {"name": "Adam Goldberg", "character": "Tony", "id": 6163, "credit_id": "52fe4549c3a36847f80c59db", "cast_id": 16, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 4}, {"name": "Thomas Lennon", "character": "Thayer", "id": 539, "credit_id": "52fe4549c3a36847f80c59e5", "cast_id": 18, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 5}, {"name": "Michael Michele", "character": "Judy Spears", "id": 39977, "credit_id": "52fe4549c3a36847f80c59e9", "cast_id": 19, "profile_path": "/syVfYJP8eXbTmcnZZArMFCBJecd.jpg", "order": 6}, {"name": "Shalom Harlow", "character": "Judy Green", "id": 92857, "credit_id": "52fe4549c3a36847f80c59ed", "cast_id": 20, "profile_path": "/vrXxkJBKAKiGg0tsUlUbdQK5WJv.jpg", "order": 7}, {"name": "Robert Klein", "character": "Phillip Warren", "id": 26715, "credit_id": "52fe4549c3a36847f80c59f1", "cast_id": 21, "profile_path": "/pDRrQXkFDomlFL9jnhBAjymLAGh.jpg", "order": 8}, {"name": "Bebe Neuwirth", "character": "Lana Jong", "id": 10739, "credit_id": "52fe4549c3a36847f80c59f5", "cast_id": 22, "profile_path": "/xm58rpMRVDHS0IGttw1pTlqGwkN.jpg", "order": 9}, {"name": "Samantha Quan", "character": "Lori", "id": 168846, "credit_id": "52fe4549c3a36847f80c59f9", "cast_id": 23, "profile_path": "/nw2pxVHJi9cApcGZBT9PniTEztI.jpg", "order": 10}, {"name": "Justin Peroff", "character": "Mike", "id": 186494, "credit_id": "52fe4549c3a36847f80c59fd", "cast_id": 24, "profile_path": "/rtHZ8BNFzoYS5QqJw2h689rlBNH.jpg", "order": 11}, {"name": "Celia Weston", "character": "Glenda", "id": 1989, "credit_id": "52fe4549c3a36847f80c5a01", "cast_id": 25, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 12}, {"name": "James Murtaugh", "character": "Jack", "id": 101781, "credit_id": "52fe4549c3a36847f80c5a05", "cast_id": 26, "profile_path": "/ljcmntlZigoxr3fR7MdbWc8H1qP.jpg", "order": 13}, {"name": "Archie MacGregor", "character": "Uncle Arnold", "id": 187971, "credit_id": "52fe4549c3a36847f80c5a09", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe4548c3a36847f80c5991", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 6.1, "runtime": 116}, "9920": {"poster_path": "/4JTRliHy3DVQ4gu11hQu8ydtoBk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31070211, "overview": "A beautiful hemophage infected with a virus that gives her superhuman powers has to protect a boy who is thought to be carrying antigens that would destroy all hemophages.", "video": false, "id": 9920, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Ultraviolet", "tagline": "The blood war is on.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0370032", "adult": false, "backdrop_path": "/jihMKGWilrgy0VWJyopstqFw3Ti.jpg", "production_companies": [{"name": "Ultravi Productions", "id": 8003}, {"name": "Screen Gems", "id": 3287}], "release_date": "2006-03-03", "popularity": 0.855438072605609, "original_title": "Ultraviolet", "budget": 30000000, "cast": [{"name": "Milla Jovovich", "character": "Violet", "id": 63, "credit_id": "52fe4549c3a36847f80c5ae3", "cast_id": 22, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Cameron Bright", "character": "Six", "id": 52414, "credit_id": "52fe4549c3a36847f80c5ae7", "cast_id": 23, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 1}, {"name": "Nick Chinlund", "character": "Daxus", "id": 18461, "credit_id": "52fe4549c3a36847f80c5aeb", "cast_id": 24, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 2}, {"name": "William Fichtner", "character": "Garth", "id": 886, "credit_id": "52fe4549c3a36847f80c5aef", "cast_id": 25, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 3}, {"name": "Ida Martin", "character": "Young Violet", "id": 60527, "credit_id": "52fe4549c3a36847f80c5aff", "cast_id": 28, "profile_path": null, "order": 4}, {"name": "Sebastien Andrieu", "character": "Nerva", "id": 60526, "credit_id": "52fe4549c3a36847f80c5b03", "cast_id": 29, "profile_path": null, "order": 5}, {"name": "Digger Mesch", "character": "Detective Endera", "id": 60530, "credit_id": "52fe4549c3a36847f80c5b07", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "David Collier", "character": "BF-1", "id": 60528, "credit_id": "52fe4549c3a36847f80c5b0b", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Ricardo Mamood-Vega", "character": "Violet's Husband", "id": 60533, "credit_id": "52fe4549c3a36847f80c5b0f", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Ryan Martin", "character": "Detective Breeder", "id": 60531, "credit_id": "52fe4549c3a36847f80c5b13", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Kieran O'Rorke", "character": "Detective Cross", "id": 60529, "credit_id": "52fe4549c3a36847f80c5b1b", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Steven Calcote", "character": "Young Daxus", "id": 60532, "credit_id": "52fe4549c3a36847f80c5b17", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Jennifer Caputo", "character": "Elizabeth P. Watkins", "id": 60537, "credit_id": "52fe4549c3a36847f80c5b1f", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Clay Cullen", "character": "Rebel Hemophage", "id": 60536, "credit_id": "52fe4549c3a36847f80c5b23", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Jack Murphy", "character": "Chief of Staff", "id": 60538, "credit_id": "52fe4549c3a36847f80c5b33", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Diego Swing", "character": "Daxus Aide 1", "id": 60539, "credit_id": "52fe4549c3a36847f80c5b27", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Mike Smith", "character": "Hospital Hemophage", "id": 60535, "credit_id": "52fe4549c3a36847f80c5b2b", "cast_id": 39, "profile_path": "/4Opk5Tr8mWzIhVPNb814s7cEHO5.jpg", "order": 16}, {"name": "Theodore Thomas", "character": "Daxus Aide 2", "id": 60540, "credit_id": "52fe4549c3a36847f80c5b2f", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Abraham Boyd", "character": "L.L.D.D. Guard", "id": 60541, "credit_id": "52fe4549c3a36847f80c5b37", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Matthew Sturgess", "character": "Medical Tech 1", "id": 60542, "credit_id": "52fe4549c3a36847f80c5b3b", "cast_id": 43, "profile_path": null, "order": 19}], "directors": [{"name": "Kurt Wimmer", "department": "Directing", "job": "Director", "credit_id": "52fe4549c3a36847f80c5a73", "profile_path": "/vO84pZBssHveIxxnh2d2sbNNCLY.jpg", "id": 13927}], "vote_average": 5.5, "runtime": 88}, "1729": {"poster_path": "/4jTVS5uij49cqzLKXjaQywIp7cV.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127906624, "overview": "An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King.", "video": false, "id": 1729, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Forbidden Kingdom", "tagline": "The battle for eternity is the fantasy of a lifetime.", "vote_count": 130, "homepage": "http://www.forbiddenkingdommovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0865556", "adult": false, "backdrop_path": "/owoPx8ldvh07NZBy5wG0UTY0Uuj.jpg", "production_companies": [{"name": "Casey Silver Productions", "id": 877}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "Huayi Brothers", "id": 3393}, {"name": "Relativity Media", "id": 7295}], "release_date": "2008-04-18", "popularity": 0.67469685806152, "original_title": "The Forbidden Kingdom", "budget": 55000000, "cast": [{"name": "Jackie Chan", "character": "Old Hop/ Lu Yan", "id": 18897, "credit_id": "52fe4312c3a36847f80381bd", "cast_id": 14, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Jet Li", "character": "The Silent Monk/ The Monkey King", "id": 1336, "credit_id": "52fe4312c3a36847f80381c1", "cast_id": 15, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 1}, {"name": "Michael Angarano", "character": "Jason Tripitikas", "id": 11665, "credit_id": "52fe4312c3a36847f80381a1", "cast_id": 3, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 2}, {"name": "Li Bingbing", "character": "Ni Chang", "id": 109432, "credit_id": "52fe4312c3a36847f80381b9", "cast_id": 13, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 3}, {"name": "Collin Chou", "character": "Jade Warlord", "id": 52908, "credit_id": "52fe4312c3a36847f80381a9", "cast_id": 7, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 4}, {"name": "Liu Yifei", "character": "Golden Sparrow", "id": 122503, "credit_id": "52fe4312c3a36847f80381a5", "cast_id": 6, "profile_path": "/pcpxXRPIFWUzXzeyvsJCRoiTf3U.jpg", "order": 5}, {"name": "Jack Posobiec", "character": "Southie", "id": 122515, "credit_id": "52fe4312c3a36847f80381b5", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Morgan Benoit", "character": "Lupo", "id": 122504, "credit_id": "52fe4312c3a36847f80381ad", "cast_id": 8, "profile_path": "/c2sIw1Fto3mkoPMUN2QYtbpK7ix.jpg", "order": 7}, {"name": "Juana Collignon", "character": "Southie Girl", "id": 122514, "credit_id": "52fe4312c3a36847f80381b1", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Thomas McDonell", "character": "Young Southie", "id": 234984, "credit_id": "52fe4312c3a36847f80381cb", "cast_id": 17, "profile_path": "/kiJxHWNycjiNPnFqzeKrdEEPpyr.jpg", "order": 9}, {"name": "Zhi Ma Gui", "character": "Old Woman", "id": 1075061, "credit_id": "52fe4312c3a36847f80381cf", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Shen Shou He", "character": "Farmer", "id": 1075063, "credit_id": "52fe4312c3a36847f80381d3", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Bin Jiang", "character": "Young Village Man", "id": 1075065, "credit_id": "52fe4312c3a36847f80381d7", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Shaohua Yang", "character": "Jade Soldier", "id": 1075067, "credit_id": "52fe4312c3a36847f80381db", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Yu Yuan Zeng", "character": "Inn Keeper", "id": 1075068, "credit_id": "52fe4312c3a36847f80381df", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe4312c3a36847f8038197", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 6.2, "runtime": 104}, "9922": {"poster_path": "/k7Bg8WaFeSMWwxCKX2BhGjNMTjA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17626234, "overview": "It is 2013. War has crippled the Earth. Technology has been erased. Our only hope is an unlikely hero. What begins as a con game becomes one man's quest to rebuild civilization by resuming postal service.", "video": false, "id": 9922, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "The Postman", "tagline": "The year is 2013. One man walked in off the horizon and hope came with him.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119925", "adult": false, "backdrop_path": "/k8o9WHDj529SfnPqrUzUaMUUQMV.jpg", "production_companies": [{"name": "Tig Productions", "id": 335}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1997-12-25", "popularity": 0.485808212006039, "original_title": "The Postman", "budget": 80000000, "cast": [{"name": "Kevin Costner", "character": "The Postman", "id": 1269, "credit_id": "52fe454ac3a36847f80c5d1f", "cast_id": 12, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Will Patton", "character": "General Bethlehem", "id": 883, "credit_id": "52fe454ac3a36847f80c5d23", "cast_id": 13, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 1}, {"name": "Olivia Williams", "character": "Abby", "id": 11616, "credit_id": "52fe454ac3a36847f80c5d2f", "cast_id": 16, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 2}, {"name": "Larenz Tate", "character": "Ford Lincoln Mercury", "id": 18291, "credit_id": "52fe454ac3a36847f80c5d27", "cast_id": 14, "profile_path": "/gXhYPw2NXIczzsRQKqX5zUfUCyv.jpg", "order": 3}, {"name": "Tom Petty", "character": "Bridge City Mayor", "id": 60642, "credit_id": "52fe454ac3a36847f80c5d2b", "cast_id": 15, "profile_path": "/aCK0M7nRk8kRF0WVOZ5b0OrWZt5.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Bandit 20", "id": 1771, "credit_id": "52fe454ac3a36847f80c5d33", "cast_id": 17, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "James Russo", "character": "Idaho", "id": 785, "credit_id": "52fe454ac3a36847f80c5d37", "cast_id": 18, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 6}, {"name": "Daniel von Bargen", "character": "Pineview Sheriff Briscoe", "id": 1473, "credit_id": "52fe454ac3a36847f80c5d3b", "cast_id": 19, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 7}, {"name": "Scott Bairstow", "character": "Luke", "id": 82519, "credit_id": "52fe454ac3a36847f80c5d3f", "cast_id": 20, "profile_path": "/kgwu669FNU6mVFvg2MnoYJFW4tJ.jpg", "order": 8}, {"name": "Roberta Maxwell", "character": "Irene March", "id": 10362, "credit_id": "52fe454ac3a36847f80c5d43", "cast_id": 21, "profile_path": "/tqkbI9bFmFPyOEeGGVyu8FPFyUu.jpg", "order": 9}, {"name": "Joe Santos", "character": "Colonel Getty", "id": 6774, "credit_id": "52fe454ac3a36847f80c5d47", "cast_id": 22, "profile_path": "/7D7ddztwCyW1D0DIxNR0JDAWu0d.jpg", "order": 10}, {"name": "Ron McLarty", "character": "Old George", "id": 167565, "credit_id": "52fe454ac3a36847f80c5d4b", "cast_id": 23, "profile_path": "/n5uRDc2hl8Y3Worq4e4U1jtBqwK.jpg", "order": 11}, {"name": "Peggy Lipton", "character": "Ellen March", "id": 152759, "credit_id": "52fe454ac3a36847f80c5d4f", "cast_id": 24, "profile_path": "/ufFeqwjB6GGdZCRnkZtNS2hDoz9.jpg", "order": 12}, {"name": "Brian Anthony Wilson", "character": "Woody", "id": 127070, "credit_id": "52fe454ac3a36847f80c5d53", "cast_id": 25, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 13}, {"name": "Todd Allen", "character": "Gibbs", "id": 21484, "credit_id": "52fe454ac3a36847f80c5d57", "cast_id": 26, "profile_path": "/vHGltCZ9ue4xjG6dKfpiNJ47g2g.jpg", "order": 14}, {"name": "Rex Linn", "character": "Mercer", "id": 16937, "credit_id": "52fe454ac3a36847f80c5d5b", "cast_id": 27, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 15}, {"name": "Shawn Hatosy", "character": "Billy", "id": 52647, "credit_id": "52fe454ac3a36847f80c5d5f", "cast_id": 28, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 16}, {"name": "Ryan Hurst", "character": "Eddie March", "id": 43858, "credit_id": "52fe454ac3a36847f80c5d63", "cast_id": 29, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 17}, {"name": "Charles Esten", "character": "Michael, Abby's Husband", "id": 157412, "credit_id": "52fe454ac3a36847f80c5d67", "cast_id": 30, "profile_path": "/wBIiivIZTBVtwe2hEqfiqnQxMRc.jpg", "order": 18}, {"name": "Annie Costner", "character": "Ponytail", "id": 1080276, "credit_id": "52fe454ac3a36847f80c5d6b", "cast_id": 31, "profile_path": "/vBP2LHJTU48DGKJVOnM0O5DIRhy.jpg", "order": 19}, {"name": "Ty O'Neal", "character": "Drew", "id": 184834, "credit_id": "52fe454ac3a36847f80c5d6f", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Mary Stuart Masterson", "character": "Hope, the Postman's daughter", "id": 31140, "credit_id": "52fe454ac3a36847f80c5d73", "cast_id": 33, "profile_path": "/cUsInuGkiBVcKIRJMRsmD52Sxx5.jpg", "order": 21}], "directors": [{"name": "Kevin Costner", "department": "Directing", "job": "Director", "credit_id": "52fe454ac3a36847f80c5cdf", "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "id": 1269}], "vote_average": 6.4, "runtime": 177}, "9923": {"poster_path": "/rH2m5kRQ7P4dYduVbUbRs5b30zf.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10169202, "overview": "A recounting of Domino Harvey's life story. The daughter of actor Laurence Harvey turned away from her career as a Ford model to become a bounty hunter.", "video": false, "id": 9923, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Domino", "tagline": "Heads You Live... Tails You Die.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421054", "adult": false, "backdrop_path": "/v5psFMCnYZfl3ITeyBWvKUqS4ko.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Davis-Films", "id": 342}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2005-09-22", "popularity": 0.696745705751615, "original_title": "Domino", "budget": 50000000, "cast": [{"name": "Keira Knightley", "character": "Domino Harvey", "id": 116, "credit_id": "52fe454ac3a36847f80c5e55", "cast_id": 24, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Mickey Rourke", "character": "Ed Mosbey", "id": 2295, "credit_id": "52fe454ac3a36847f80c5e59", "cast_id": 25, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 1}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Choco", "id": 25616, "credit_id": "52fe454ac3a36847f80c5e63", "cast_id": 27, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 2}, {"name": "Delroy Lindo", "character": "Claremont Williams", "id": 18792, "credit_id": "52fe454ac3a36847f80c5e67", "cast_id": 28, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 3}, {"name": "Mo'Nique", "character": "Lateesha Rodriguez", "id": 60561, "credit_id": "52fe454ac3a36847f80c5e6b", "cast_id": 29, "profile_path": "/2oXH2sx32C3w7t7HmorpPNGCUgG.jpg", "order": 4}, {"name": "Riz Abbasi", "character": "Alf", "id": 60581, "credit_id": "52fe454ac3a36847f80c5e6f", "cast_id": 30, "profile_path": "/7w6t4Wk8N1FYLNWSfBIsQGcBfWQ.jpg", "order": 5}, {"name": "Brian Austin Green", "character": "Himself", "id": 19148, "credit_id": "52fe454ac3a36847f80c5e73", "cast_id": 31, "profile_path": "/npblfpMicJnJteHscNXIXlhsQMh.jpg", "order": 6}, {"name": "Macy Gray", "character": "Lashandra Davis", "id": 60560, "credit_id": "52fe454ac3a36847f80c5e77", "cast_id": 32, "profile_path": "/ykjPgs6Djwuxo8hpH04EWBDzeOo.jpg", "order": 7}, {"name": "Shondrella Avery", "character": "Lashindra Davis", "id": 53928, "credit_id": "52fe454ac3a36847f80c5e7b", "cast_id": 33, "profile_path": "/tTRyVWKBCmZR0Eq3XQHMG682kUJ.jpg", "order": 8}, {"name": "Ian Ziering", "character": "Himself", "id": 19146, "credit_id": "52fe454ac3a36847f80c5e7f", "cast_id": 34, "profile_path": "/j4enDmt6JL3hmWlLuEbQW0xe40Z.jpg", "order": 9}, {"name": "Joe Nunez", "character": "Raul", "id": 54696, "credit_id": "52fe454ac3a36847f80c5e83", "cast_id": 35, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 10}, {"name": "Dabney Coleman", "character": "Drake Bishop", "id": 12850, "credit_id": "52fe454ac3a36847f80c5e87", "cast_id": 36, "profile_path": "/92D3w0JA9QBlbns9XKiH9YPagVs.jpg", "order": 11}, {"name": "Peter Jacobson", "character": "Burke Beckett", "id": 31514, "credit_id": "52fe454ac3a36847f80c5e8b", "cast_id": 37, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 12}, {"name": "Kel O'Neill", "character": "Francis", "id": 58509, "credit_id": "52fe454ac3a36847f80c5e8f", "cast_id": 38, "profile_path": "/2xAyjoVH1UlkPauIpxf92PNkHWc.jpg", "order": 13}, {"name": "Jacqueline Bisset", "character": "Sophie Wynn", "id": 14061, "credit_id": "52fe454ac3a36847f80c5e93", "cast_id": 39, "profile_path": "/9z1cG9fLoj0hEcYjrpb0rrNQaVh.jpg", "order": 14}, {"name": "Dale Dickey", "character": "Edna Fender", "id": 46814, "credit_id": "52fe454ac3a36847f80c5e97", "cast_id": 40, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 15}, {"name": "Lucy Liu", "character": "Taryn Miles", "id": 140, "credit_id": "52fe454ac3a36847f80c5e9b", "cast_id": 41, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 16}, {"name": "Lew Temple", "character": "Locus Fender", "id": 37027, "credit_id": "52fe454ac3a36847f80c5e9f", "cast_id": 42, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 17}, {"name": "Mena Suvari", "character": "Kimmie", "id": 8211, "credit_id": "52fe454ac3a36847f80c5ea3", "cast_id": 43, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 18}, {"name": "Christopher Walken", "character": "Mark Heiss", "id": 4690, "credit_id": "52fe454ac3a36847f80c5ea7", "cast_id": 44, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 19}, {"name": "Liza Lapira", "character": "Chinegro Woman", "id": 51998, "credit_id": "52fe454ac3a36847f80c5eab", "cast_id": 45, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 20}, {"name": "Tom Waits", "character": "The Wanderer", "id": 2887, "credit_id": "5404a119c3a3684372006b14", "cast_id": 46, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 21}, {"name": "Jerry Springer", "character": "Himself", "id": 94743, "credit_id": "5404a135c3a3682d9800538c", "cast_id": 47, "profile_path": "/up4YfxFYdhXaTiMSq4IDDBEHQo6.jpg", "order": 22}, {"name": "Tabitha Brownstone", "character": "Young Domino", "id": 1448566, "credit_id": "551cba4d9251416a33001622", "cast_id": 48, "profile_path": null, "order": 23}, {"name": "Domino Harvey", "character": "Girl Walking from Exploding Car", "id": 1448567, "credit_id": "551cba819251416a33001630", "cast_id": 49, "profile_path": null, "order": 24}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe454ac3a36847f80c5dd9", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.0, "runtime": 127}, "1734": {"poster_path": "/hioiYUZVIuYIhagDGhIAjyNEUu0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 433013274, "overview": "Rick and Evelyn O'Connell, along with their 8 year old son Alex, discover the key to the legendary Scorpion King's might, the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn't above kidnapping its new bearer, Alex, to gain control of Anubis' otherworldly army.", "video": false, "id": 1734, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Mummy Returns", "tagline": "The most powerful force on earth is about to be unleashed by the two people who should know better.", "vote_count": 843, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3nNvwRGWurR5O3a8k3U13hiqs6y.jpg", "poster_path": "/jKVaPlvPfsmekiOaFqCKuGwle5M.jpg", "id": 1733, "name": "The Mummy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0209163", "adult": false, "backdrop_path": "/bM8xMnxdsR0iJt3pdF4Ncus4KV8.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Alphaville Films", "id": 11462}, {"name": "Imhotep Productions", "id": 20242}], "release_date": "2001-04-28", "popularity": 1.49073207730603, "original_title": "The Mummy Returns", "budget": 98000000, "cast": [{"name": "Brendan Fraser", "character": "Richard O'Connell", "id": 18269, "credit_id": "52fe4312c3a36847f8038407", "cast_id": 3, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Evelyn Carnahan O'Connell/Princess Nefertiri", "id": 3293, "credit_id": "52fe4312c3a36847f803840b", "cast_id": 4, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "John Hannah", "character": "Jonathan Carnahan", "id": 10727, "credit_id": "52fe4312c3a36847f803840f", "cast_id": 5, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 2}, {"name": "Arnold Vosloo", "character": "High Priest Imhotep", "id": 16743, "credit_id": "52fe4312c3a36847f8038413", "cast_id": 6, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 3}, {"name": "Oded Fehr", "character": "Ardeth Bay", "id": 18041, "credit_id": "52fe4312c3a36847f8038417", "cast_id": 7, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 4}, {"name": "Dwayne Johnson", "character": "Mathayus the Scorpion King", "id": 18918, "credit_id": "52fe4312c3a36847f803841b", "cast_id": 8, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 5}, {"name": "Freddie Boath", "character": "Alexander O'Connell", "id": 18919, "credit_id": "52fe4312c3a36847f803841f", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Patricia Vel\u00e1squez", "character": "Meela Nais/Anck Su Namun", "id": 18920, "credit_id": "52fe4312c3a36847f8038423", "cast_id": 10, "profile_path": "/dRD0tYxrtxPZ11mJCN0O3nLd1Mx.jpg", "order": 7}, {"name": "Alun Armstrong", "character": "Baltus Hafez", "id": 2629, "credit_id": "52fe4312c3a36847f803844b", "cast_id": 17, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 8}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Lock-Nah", "id": 31164, "credit_id": "52fe4312c3a36847f803844f", "cast_id": 18, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 9}, {"name": "Shaun Parkes", "character": "Izzy Buttons", "id": 30316, "credit_id": "52fe4312c3a36847f8038453", "cast_id": 19, "profile_path": "/rVjjwaMbHmz1Cd0GW2Tn7hAmxbf.jpg", "order": 10}, {"name": "Bruce Byron", "character": "Red", "id": 25675, "credit_id": "52fe4312c3a36847f8038457", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Joe Dixon", "character": "Jacques", "id": 1010264, "credit_id": "52fe4312c3a36847f803845b", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Thomas Fisher", "character": "Spivey", "id": 208211, "credit_id": "52fe4312c3a36847f803845f", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Aharon Ipal\u00e9", "character": "Pharaoh Seti I", "id": 25808, "credit_id": "52fe4312c3a36847f8038463", "cast_id": 23, "profile_path": "/9Qb7EXmGOAntmK0hMocOvT57Txi.jpg", "order": 14}, {"name": "Quill Roberts", "character": "Shafek", "id": 178631, "credit_id": "52fe4312c3a36847f8038467", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Donna Air", "character": "Showgirl with Jonathan", "id": 120886, "credit_id": "52fe4312c3a36847f803846b", "cast_id": 25, "profile_path": "/x9SjwmJlvu1FJ7ZIDKcwACnQfXz.jpg", "order": 16}, {"name": "Trevor Lovell", "character": "Mountain of Flesh", "id": 1077874, "credit_id": "52fe4312c3a36847f803846f", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Tom Fisher", "character": "Spivey", "id": 27678, "credit_id": "536222b20e0a2649a900146a", "cast_id": 30, "profile_path": null, "order": 18}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4312c3a36847f80383fd", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 5.8, "runtime": 130}, "1735": {"poster_path": "/53hrZvxiV3HgG6pdhuMeErIc7Hg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 401128639, "overview": "The third installment in the Mummy franchise takes archaeologist Rick O'Connell to China, pitting him against an emperor from the 2,000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time, O'Connell enlists the help of his family -- including his wife and son -- to quash the so-called Dragon Emperor and his abuse of supernatural power.", "video": false, "id": 1735, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Mummy: Tomb of the Dragon Emperor", "tagline": "A New Evil Awakens.", "vote_count": 463, "homepage": "http://www.themummy.com/", "belongs_to_collection": {"backdrop_path": "/3nNvwRGWurR5O3a8k3U13hiqs6y.jpg", "poster_path": "/jKVaPlvPfsmekiOaFqCKuGwle5M.jpg", "id": 1733, "name": "The Mummy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "sa", "name": ""}], "imdb_id": "tt0859163", "adult": false, "backdrop_path": "/caB8JFUigSHdGsdxOxaK4vZtOiN.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Sommers Company, The", "id": 19643}, {"name": "Alphaville Films", "id": 11462}, {"name": "China Film Co-Production Corporation", "id": 2269}], "release_date": "2008-07-31", "popularity": 1.51901770772947, "original_title": "The Mummy: Tomb of the Dragon Emperor", "budget": 145000000, "cast": [{"name": "Brendan Fraser", "character": "Richard O'Connell", "id": 18269, "credit_id": "52fe4312c3a36847f80384a3", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Jet Li", "character": "Emperor Han", "id": 1336, "credit_id": "52fe4312c3a36847f80384a7", "cast_id": 2, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 1}, {"name": "John Hannah", "character": "Jonathan Carnahan", "id": 10727, "credit_id": "52fe4312c3a36847f80384c9", "cast_id": 8, "profile_path": "/8NUa2IAIcDTbfXHBl4LApBi5qnR.jpg", "order": 2}, {"name": "Maria Bello", "character": "Evelyn O\u2019Connell", "id": 49, "credit_id": "52fe4312c3a36847f80384df", "cast_id": 12, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "Luke Ford", "character": "Alex O'Connell", "id": 55900, "credit_id": "52fe4312c3a36847f80384e3", "cast_id": 13, "profile_path": "/n3gFLK0G4iUPm2ov909B3nUYt3X.jpg", "order": 4}, {"name": "Michelle Yeoh", "character": "Zi Juan", "id": 1620, "credit_id": "52fe4312c3a36847f80384e7", "cast_id": 14, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 5}, {"name": "Isabella Leong", "character": "Lin", "id": 72040, "credit_id": "52fe4312c3a36847f80384eb", "cast_id": 15, "profile_path": "/dqCFDSllyIZ5hBNNdfXxaGveMtS.jpg", "order": 6}, {"name": "Anthony Wong", "character": "General Yang", "id": 66717, "credit_id": "52fe4312c3a36847f80384ef", "cast_id": 16, "profile_path": "/pCwuQUam6Xy8AhFddQFKYa74xGQ.jpg", "order": 7}, {"name": "Russell Wong", "character": "Ming Guo", "id": 21354, "credit_id": "52fe4312c3a36847f80384f3", "cast_id": 17, "profile_path": "/ow2nODo1eKRchSLJMjEW7BUTXgy.jpg", "order": 8}, {"name": "Liam Cunningham", "character": "Maguire", "id": 15498, "credit_id": "52fe4312c3a36847f80384f7", "cast_id": 18, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 9}, {"name": "David Calder", "character": "Roger Wilson", "id": 10779, "credit_id": "52fe4312c3a36847f80384fb", "cast_id": 19, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 10}, {"name": "Jessey Meng", "character": "Choi", "id": 554085, "credit_id": "52fe4312c3a36847f80384ff", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Tian Liang", "character": "Li Zhou", "id": 1172006, "credit_id": "52fe4312c3a36847f8038503", "cast_id": 21, "profile_path": "/jSmqjHfaA3pMwsIB9A9jUzQiVan.jpg", "order": 12}, {"name": "Albert Kwan", "character": "Chu Wah", "id": 450628, "credit_id": "52fe4312c3a36847f8038507", "cast_id": 22, "profile_path": "/ap4BzI24tzjIkKzDl4UwYVaYNTg.jpg", "order": 13}, {"name": "Jacky Wu", "character": "Assassin (as Wu Jing)", "id": 1290457, "credit_id": "52fe4312c3a36847f803850b", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe4312c3a36847f80384ad", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.1, "runtime": 112}, "9928": {"poster_path": "/6R7XAaW12OQYMlcAlEhwM4lXE5x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 260696994, "overview": "Rodney Copperbottom is a young robot inventor who dreams of making the world a better place \u2026 until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams -- like those of his friends, including motor-mouthed Fender -- are in danger of becoming obsolete.", "video": false, "id": 9928, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Robots", "tagline": "You can shine no matter what you're made of.", "vote_count": 384, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0358082", "adult": false, "backdrop_path": "/ghuxj8NDaJ1tpxC6pCaFPz4LWZi.jpg", "production_companies": [{"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2005-03-21", "popularity": 1.57964626917628, "original_title": "Robots", "budget": 75000000, "cast": [{"name": "Robin Williams", "character": "Fender (voice)", "id": 2157, "credit_id": "52fe454bc3a36847f80c62fb", "cast_id": 13, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Rodney Copperbottom (voice)", "id": 3061, "credit_id": "52fe454bc3a36847f80c62ff", "cast_id": 14, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Halle Berry", "character": "Cappy (voice)", "id": 4587, "credit_id": "52fe454bc3a36847f80c6303", "cast_id": 15, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 2}, {"name": "Mel Brooks", "character": "Big Weld (voice)", "id": 14639, "credit_id": "52fe454bc3a36847f80c6307", "cast_id": 16, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 3}, {"name": "Paula Abdul", "character": "Watch", "id": 129193, "credit_id": "52fe454bc3a36847f80c630b", "cast_id": 17, "profile_path": "/puWylssW0yyORxchbsLJK4vkXs0.jpg", "order": 4}, {"name": "Amanda Bynes", "character": "Piper", "id": 29220, "credit_id": "52fe454bc3a36847f80c630f", "cast_id": 18, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 5}, {"name": "Drew Carey", "character": "Crank", "id": 83349, "credit_id": "52fe454bc3a36847f80c6313", "cast_id": 19, "profile_path": "/dYYm1QdYW7jmCqAkmpnhrmBc8RW.jpg", "order": 6}, {"name": "Jennifer Coolidge", "character": "Aunt Fanny", "id": 38334, "credit_id": "52fe454bc3a36847f80c6317", "cast_id": 20, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 7}, {"name": "Lucille Bliss", "character": "Pigeon Lady (voice)", "id": 148111, "credit_id": "52fe454bc3a36847f80c631b", "cast_id": 21, "profile_path": "/uBmRWAZ2ZU6Ett5ti7Zb4AMnQxF.jpg", "order": 8}, {"name": "Terry Bradshaw", "character": "Broken Arm Bot (voice)", "id": 51330, "credit_id": "52fe454bc3a36847f80c631f", "cast_id": 22, "profile_path": "/oMUyNy9hbeYacBrLVbY4LhW4KAw.jpg", "order": 9}, {"name": "Jim Broadbent", "character": "Madame Gasket (voice)", "id": 388, "credit_id": "52fe454bc3a36847f80c6323", "cast_id": 23, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 10}, {"name": "Paul Giamatti", "character": "Tim the Gate Guard (voice)", "id": 13242, "credit_id": "52fe454bc3a36847f80c6327", "cast_id": 24, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 11}, {"name": "Marshall Efron", "character": "Lamppost / Toilet Bot / Bass Drum / Microphone", "id": 9224, "credit_id": "52fe454bc3a36847f80c632b", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Damien Fahey", "character": "Stage Announcer (voice)", "id": 207676, "credit_id": "52fe454bc3a36847f80c632f", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Will Denton", "character": "Young Rodney (voice)", "id": 133814, "credit_id": "52fe454bc3a36847f80c6333", "cast_id": 27, "profile_path": "/gGcgPTd2YyywmTM8SPfMVbOL51m.jpg", "order": 14}], "directors": [{"name": "Chris Wedge", "department": "Directing", "job": "Director", "credit_id": "52fe454bc3a36847f80c62bb", "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "id": 5713}, {"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe454bc3a36847f80c62c1", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 5.8, "runtime": 91}, "157386": {"poster_path": "/2HDOuZbKAjPw7m617LAlpbLib7u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6851969, "overview": "A hard-partying high school senior's philosophy on life changes when he meets the not-so-typical \"nice girl.\"", "video": false, "id": 157386, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Spectacular Now", "tagline": "From the Writers of (500) Days of Summer", "vote_count": 230, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1714206", "adult": false, "backdrop_path": "/8zPQ57lSiuRmHjmkRGopGdG4QD5.jpg", "production_companies": [{"name": "21 Laps Entertainment", "id": 2575}, {"name": "Andrew Lauren Productions (ALP)", "id": 19194}], "release_date": "2013-08-02", "popularity": 1.12038143199089, "original_title": "The Spectacular Now", "budget": 2500000, "cast": [{"name": "Miles Teller", "character": "Sutter", "id": 996701, "credit_id": "52fe4bc49251416c910e4f9f", "cast_id": 5, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 0}, {"name": "Shailene Woodley", "character": "Aimee", "id": 94185, "credit_id": "52fe4bc49251416c910e4fa3", "cast_id": 6, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 1}, {"name": "Brie Larson", "character": "Cassidy", "id": 60073, "credit_id": "52fe4bc49251416c910e4fa7", "cast_id": 7, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 2}, {"name": "Masam Holden", "character": "Ricky", "id": 198855, "credit_id": "52fe4bc49251416c910e4fd1", "cast_id": 17, "profile_path": "/fCuceoMnHdXKeDgxvctunoGNE9P.jpg", "order": 3}, {"name": "Dayo Okeniyi", "character": "Marcus", "id": 1030512, "credit_id": "52fe4bc49251416c910e4fc9", "cast_id": 15, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 4}, {"name": "Kyle Chandler", "character": "Tommy", "id": 3497, "credit_id": "52fe4bc49251416c910e4fb3", "cast_id": 10, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 5}, {"name": "Jennifer Jason Leigh", "character": "Sara", "id": 10431, "credit_id": "52fe4bc49251416c910e4fab", "cast_id": 8, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 6}, {"name": "Nicci Faires", "character": "Tara", "id": 1178797, "credit_id": "52fe4bc49251416c910e4fd5", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ava London", "character": "Bethany", "id": 1343524, "credit_id": "53c9f76c0e0a264750000f3e", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Whitney Goin", "character": "Aimee's Mom", "id": 1343525, "credit_id": "53c9f7810e0a264742000f3e", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Andre Royo", "character": "Mr. Aster", "id": 74957, "credit_id": "5531b3da925141529b0010bc", "cast_id": 51, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 10}, {"name": "Bob Odenkirk", "character": "Dan", "id": 59410, "credit_id": "52fe4bc49251416c910e4fc1", "cast_id": 13, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 12}, {"name": "Mary Elizabeth Winstead", "character": "Holly", "id": 17628, "credit_id": "52fe4bc49251416c910e4faf", "cast_id": 9, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 13}, {"name": "Levi Miller", "character": "Erik Wolff", "id": 1343527, "credit_id": "53c9f80a0e0a264742000f61", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "E. Roger Mitchell", "character": "Doctor", "id": 41020, "credit_id": "52fe4bc49251416c910e4fcd", "cast_id": 16, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 15}, {"name": "Kaitlyn Dever", "character": "Kristal", "id": 481337, "credit_id": "52fe4bc49251416c910e4fb7", "cast_id": 11, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 16}, {"name": "Gary Weeks", "character": "Joe", "id": 168875, "credit_id": "52fe4bc49251416c910e4fd9", "cast_id": 19, "profile_path": "/wss0WJWiq8SyS69NW2DCwMdipgi.jpg", "order": 17}, {"name": "Logan Mack", "character": "Cody", "id": 1343528, "credit_id": "53c9f85b0e0a26473c000eeb", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Valerie Payton", "character": "Bus Driver", "id": 1343531, "credit_id": "53c9f89c0e0a264750000f7e", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Christopher Nathan Miller", "character": "Shane", "id": 1343532, "credit_id": "53c9f8b10e0a264750000f85", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Troy Willis", "character": "Bartender", "id": 1343536, "credit_id": "53c9f8e00e0a26473c000f0b", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Mike Hickman", "character": "Drunk Man", "id": 1343539, "credit_id": "53c9f90d0e0a264742000f99", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Whitney Christopher King", "character": "Roberta", "id": 1343541, "credit_id": "53c9f9350e0a26473c000f22", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "Wayne Dean", "character": "Customer", "id": 1343542, "credit_id": "53c9f9470e0a26473f000faf", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Doug Haley", "character": "Additional Voices (voice)", "id": 1005324, "credit_id": "545f13e8c3a3682c78000108", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Keith Silverstein", "character": "Additional Voices (voice)", "id": 1343544, "credit_id": "53c9f98b0e0a264742000fb3", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Alex D'Lerma", "character": "Additional Voices (voice)", "id": 1343546, "credit_id": "53c9f9a60e0a264748000f17", "cast_id": 45, "profile_path": null, "order": 27}, {"name": "Dina Sherman", "character": "Additional Voices (voice)", "id": 1343547, "credit_id": "53c9f9ae0e0a264745000f76", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Karen Strassman", "character": "Additional Voices (voice)", "id": 59065, "credit_id": "552285059251415c87005a8d", "cast_id": 50, "profile_path": null, "order": 29}], "directors": [{"name": "James Ponsoldt", "department": "Directing", "job": "Director", "credit_id": "52fe4bc49251416c910e4f89", "profile_path": null, "id": 930710}], "vote_average": 7.2, "runtime": 95}, "9932": {"poster_path": "/6G6DrXsaNYPciPB3sugHL9TIewN.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The mafia's Paul Vitti is back in prison and will need some serious counseling when he gets out. Naturally, he returns to his analyst Dr. Ben Sobel for help and finds that Sobel needs some serious help himself as he has inherited the family practice, as well as an excess stock of stress.", "video": false, "id": 9932, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Analyze That", "tagline": "Back in therapy", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zhVKNz29OvsXacU1YKCksBx8yIl.jpg", "poster_path": "/h8rayR5AKPzqYrQVSDjK3BkYZun.jpg", "id": 110127, "name": "Analyze Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289848", "adult": false, "backdrop_path": "/4HBhDTmAY2MkdvQm7WDyDIgNDNj.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "NPV Entertainment", "id": 172}, {"name": "Baltimore Spring Creek Pictures", "id": 14719}, {"name": "Tribeca Productions", "id": 11391}], "release_date": "2002-12-06", "popularity": 0.535608703258836, "original_title": "Analyze That", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Paul Vitti", "id": 380, "credit_id": "52fe454cc3a36847f80c64ff", "cast_id": 17, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Dr. Ben Sobel", "id": 7904, "credit_id": "52fe454cc3a36847f80c6503", "cast_id": 18, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Lisa Kudrow", "character": "Laura Sobel", "id": 14406, "credit_id": "52fe454cc3a36847f80c6507", "cast_id": 19, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 2}, {"name": "Joe Viterelli", "character": "Jelly", "id": 60023, "credit_id": "52fe454cc3a36847f80c650b", "cast_id": 20, "profile_path": "/3HhSpMcoWk4fucH6DSTU66x2D0g.jpg", "order": 3}, {"name": "Cathy Moriarty", "character": "Patti LoPresti", "id": 14702, "credit_id": "52fe454cc3a36847f80c650f", "cast_id": 21, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 4}, {"name": "Kyle Sabihy", "character": "Michael Sobel", "id": 162149, "credit_id": "52fe454cc3a36847f80c6513", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Frank Pietrangolare", "character": "Tuna", "id": 17923, "credit_id": "52fe454cc3a36847f80c6517", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Jerome Le Page", "character": "Convict", "id": 171375, "credit_id": "52fe454cc3a36847f80c651b", "cast_id": 24, "profile_path": null, "order": 7}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe454cc3a36847f80c64cb", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.0, "runtime": 96}, "18126": {"poster_path": "/cYCIdMIqCHHJoWeExVOxjfdDxa8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124013487, "overview": "When Miley Stewart (aka pop-star Hannah Montana) gets too caught up in the superstar celebrity lifestyle, her dad decides it's time for a total change of scenery. But sweet nibblets! Miley must trade in all the glitz and glamour of Hollywood for some ol' blue jeans on the family farm in Tennessee, and question if she can be both Miley Stewart and Hannah Montana. With a little help from her friends \u2013 and awesome guest stars Taylor Swift, Rascal Flatts and Vanessa Williams \u2013 will she figure out whether to choose Hannah or Miley?", "video": false, "id": 18126, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Hannah Montana: The Movie", "tagline": "She has the best of both worlds...now she has to choose just one.", "vote_count": 75, "homepage": "http://disney.go.com/disneypictures/hannahmontanamovie/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1114677", "adult": false, "backdrop_path": "/ezx3NkXNqf2KnJCP6Nfj1bfCFut.jpg", "production_companies": [{"name": "It's a Laugh Productions", "id": 3812}, {"name": "Millar Gough Ink", "id": 20356}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2009-04-10", "popularity": 0.972045126638673, "original_title": "Hannah Montana: The Movie", "budget": 35000000, "cast": [{"name": "Miley Cyrus", "character": "Miley Stewart/Hannah Montana", "id": 76594, "credit_id": "52fe47619251416c75097521", "cast_id": 2, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 0}, {"name": "Billy Ray Cyrus", "character": "Billy Ray Stewart", "id": 78887, "credit_id": "52fe47619251416c75097525", "cast_id": 3, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 1}, {"name": "Emily Osment", "character": "Lilly Truscott", "id": 82785, "credit_id": "52fe47619251416c7509752f", "cast_id": 5, "profile_path": "/7Uhb0bJp7v3sqnSBkxXjya8UeXO.jpg", "order": 2}, {"name": "Jason Earles", "character": "Jackson Rod Stewart", "id": 54594, "credit_id": "52fe47619251416c75097533", "cast_id": 6, "profile_path": "/lwHIA7z8LAyKx7B4eV9bWUBT7tk.jpg", "order": 3}, {"name": "Taylor Swift", "character": "Herself", "id": 212208, "credit_id": "52fe47619251416c75097537", "cast_id": 7, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 4}, {"name": "Lucas Till", "character": "Travis Brody", "id": 429, "credit_id": "52fe47619251416c7509753b", "cast_id": 8, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 5}, {"name": "Mitchel Musso", "character": "Oliver Oken", "id": 51583, "credit_id": "52fe47619251416c7509753f", "cast_id": 9, "profile_path": "/rMmElJ9TwAFfEAW3Q1ET7Ioi0Fp.jpg", "order": 6}, {"name": "Mois\u00e9s Arias", "character": "Rico", "id": 57412, "credit_id": "52fe47619251416c75097543", "cast_id": 10, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 7}, {"name": "Vanessa Williams", "character": "Vita", "id": 27011, "credit_id": "52fe47619251416c75097547", "cast_id": 11, "profile_path": "/t5tyW5nSk5ikeU8cWPdg4ImsMuq.jpg", "order": 8}, {"name": "Margo Martindale", "character": "Ruby", "id": 452, "credit_id": "52fe47619251416c7509754b", "cast_id": 12, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 9}, {"name": "Melora Hardin", "character": "Lorelai", "id": 404, "credit_id": "52fe47619251416c7509754f", "cast_id": 13, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 10}, {"name": "Brooke Shields", "character": "Miley's Mom", "id": 15110, "credit_id": "52fe47619251416c75097553", "cast_id": 14, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 11}, {"name": "Brandon Cyrus", "character": "Extra", "id": 1329572, "credit_id": "5397334dc3a3686415005e79", "cast_id": 15, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 12}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe47619251416c7509751d", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 6.0, "runtime": 102}, "83666": {"poster_path": "/ysTohGF7NY9Z6MYz9vLNYiyzh0r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64, "overview": "Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore \u2013 and the peaceful island community is turned upside down in more ways than anyone can handle.", "video": false, "id": 83666, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Moonrise Kingdom", "tagline": "A tormenting and surprising story of children and adults during the stormy days of the summer of 1965.", "vote_count": 419, "homepage": "http://www.moonrisekingdom.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748122", "adult": false, "backdrop_path": "/1mKI5UfeCetrB3HZbYt6VTn7K9m.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "American Empirical Pictures", "id": 23449}, {"name": "Moonrise", "id": 25626}], "release_date": "2012-05-25", "popularity": 0.961997643040054, "original_title": "Moonrise Kingdom", "budget": 16, "cast": [{"name": "Bruce Willis", "character": "Captain Sharp", "id": 62, "credit_id": "53062e8d925141349a297ef3", "cast_id": 25, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Edward Norton", "character": "Scout Master Ward", "id": 819, "credit_id": "53062eb292514134972a8e3d", "cast_id": 26, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Jared Gilman", "character": "Sam", "id": 929906, "credit_id": "53062f74925141348b2cb496", "cast_id": 32, "profile_path": "/udQlOjyaIfIJ4xDjcUrIkI8uRko.jpg", "order": 2}, {"name": "Kara Hayward", "character": "Suzy", "id": 929905, "credit_id": "53062f5292514134912b5d7d", "cast_id": 31, "profile_path": "/zTrPq9HY90EdllC7VspXzkqILHC.jpg", "order": 3}, {"name": "Bill Murray", "character": "Mr. Bishop", "id": 1532, "credit_id": "53062ee092514134a2277c9f", "cast_id": 27, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 4}, {"name": "Frances McDormand", "character": "Mrs. Bishop", "id": 3910, "credit_id": "53062eff925141349e27ef6e", "cast_id": 28, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 5}, {"name": "Bob Balaban", "character": "The Narrator", "id": 12438, "credit_id": "53062fad92514134912b6035", "cast_id": 34, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 6}, {"name": "Tilda Swinton", "character": "Social Services", "id": 3063, "credit_id": "53062f1b92514134972a9674", "cast_id": 29, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 7}, {"name": "Harvey Keitel", "character": "Commander Pierce", "id": 1037, "credit_id": "53062f91925141348e297f43", "cast_id": 33, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 8}, {"name": "Lucas Hedges", "character": "Redford", "id": 1105079, "credit_id": "53062fc692514134882bffc3", "cast_id": 35, "profile_path": "/pmsZ0DDOa0PAZ5uVHbcwMb3UryS.jpg", "order": 9}, {"name": "Jason Schwartzman", "character": "Cousin Ben", "id": 17881, "credit_id": "53062f34925141348b2cac82", "cast_id": 30, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 10}, {"name": "Charlie Kilgore", "character": "Lazy Eye", "id": 1105080, "credit_id": "53062fe8925141349a299de6", "cast_id": 36, "profile_path": "/6TSeIGoACszF59oT0ai5qg1ovYL.jpg", "order": 11}, {"name": "Chandler Frantz", "character": "Gadge", "id": 963684, "credit_id": "53062ffd9251413485271c12", "cast_id": 37, "profile_path": "/egYtayTgACb2IffMjQ1RtUPO8Qd.jpg", "order": 12}, {"name": "Gabriel Rush", "character": "Skotak", "id": 1142686, "credit_id": "5306301292514134972aaa69", "cast_id": 38, "profile_path": "/cUVwfWMapARIFYwiL75fndjpQMn.jpg", "order": 13}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe48b29251416c910954b3", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.4, "runtime": 94}, "9942": {"poster_path": "/oGC2fr1vzfee7eIcr7D94Bd04Qx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49797148, "overview": "When Rachel Phelps inherits the Cleveland Indians from her deceased husband, she's determined to move the team to a warmer climate -- but only a losing season will make that possible, which should be easy given the misfits she's hired. Rachel is sure her dream will come true, but she underestimates their will to succeed!", "video": false, "id": 9942, "genres": [{"id": 35, "name": "Comedy"}], "title": "Major League", "tagline": "A comedy with bats and balls.", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vNqeD5ECuhb7FdQiOPCjeI23YK2.jpg", "poster_path": "/2WVFH5glQThcWsjIAAmoJxhchHX.jpg", "id": 97771, "name": "Major League Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097815", "adult": false, "backdrop_path": "/rnp03J08gfYLEPfEHD2QNZdLE97.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mirage Enterprises", "id": 932}], "release_date": "1989-04-06", "popularity": 0.454890780071419, "original_title": "Major League", "budget": 11000000, "cast": [{"name": "Tom Berenger", "character": "Jake Taylor", "id": 13022, "credit_id": "52fe454cc3a36847f80c67a1", "cast_id": 9, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 0}, {"name": "Charlie Sheen", "character": "Rick 'Wild Thing' Vaughn", "id": 6952, "credit_id": "52fe454cc3a36847f80c67a5", "cast_id": 10, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 1}, {"name": "Corbin Bernsen", "character": "Roger Dorn", "id": 21246, "credit_id": "52fe454cc3a36847f80c67a9", "cast_id": 11, "profile_path": "/5E4ptQ88NCyeIYlS8NkMm9BzWQJ.jpg", "order": 2}, {"name": "Margaret Whitton", "character": "Rachel Phelps", "id": 60700, "credit_id": "52fe454cc3a36847f80c67ad", "cast_id": 12, "profile_path": "/a2Lm6B17pOL2GTMsOQ199tFlOx7.jpg", "order": 3}, {"name": "James Gammon", "character": "Lou Brown", "id": 16433, "credit_id": "52fe454cc3a36847f80c67b1", "cast_id": 13, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 4}, {"name": "Rene Russo", "character": "Lynn Wells", "id": 14343, "credit_id": "52fe454cc3a36847f80c67b5", "cast_id": 14, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 5}, {"name": "Wesley Snipes", "character": "Willie Mays Hayes", "id": 10814, "credit_id": "52fe454cc3a36847f80c67b9", "cast_id": 15, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 6}, {"name": "Dennis Haysbert", "character": "Pedro Cerrano", "id": 352, "credit_id": "52fe454cc3a36847f80c67bd", "cast_id": 16, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 7}, {"name": "Stacy Carroll", "character": "Suzanne Dorn", "id": 147485, "credit_id": "52fe454cc3a36847f80c67c1", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Bob Uecker", "character": "Harry Doyle", "id": 147486, "credit_id": "52fe454cc3a36847f80c67c5", "cast_id": 18, "profile_path": "/dZ5byuleZO2QisuyC6bX9KSOO1S.jpg", "order": 9}, {"name": "Chelcie Ross", "character": "Eddie Harris", "id": 10486, "credit_id": "52fe454cc3a36847f80c67c9", "cast_id": 19, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 10}, {"name": "Peter Vuckovich", "character": "Haywood", "id": 147487, "credit_id": "52fe454cc3a36847f80c67cd", "cast_id": 20, "profile_path": null, "order": 11}], "directors": [{"name": "David S. Ward", "department": "Directing", "job": "Director", "credit_id": "52fe454cc3a36847f80c6779", "profile_path": null, "id": 12920}], "vote_average": 6.2, "runtime": 107}, "222935": {"poster_path": "/sc6XLX6J714LDkVV3Ys3clgypQS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 305151265, "overview": "Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.", "video": false, "id": 222935, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Fault in Our Stars", "tagline": "One Sick Love Story", "vote_count": 916, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2582846", "adult": false, "backdrop_path": "/hZWp4W5aQvGm1WiiGFYIuBUOQ3K.jpg", "production_companies": [{"name": "Temple Hill Productions", "id": 722}, {"name": "20th Century Fox Film Corporation", "id": 22573}], "release_date": "2014-05-16", "popularity": 2.6484918876428, "original_title": "The Fault in Our Stars", "budget": 12000000, "cast": [{"name": "Shailene Woodley", "character": "Hazel Grace Lancaster", "id": 94185, "credit_id": "52fe4e019251416c7514841d", "cast_id": 1, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Ansel Elgort", "character": "Augustus Waters", "id": 1159982, "credit_id": "52fe4e019251416c75148421", "cast_id": 2, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 1}, {"name": "Nat Wolff", "character": "Isaac", "id": 232006, "credit_id": "52fe4e019251416c75148429", "cast_id": 4, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 2}, {"name": "Laura Dern", "character": "Mrs. Lancaster", "id": 4784, "credit_id": "52fe4e019251416c7514842d", "cast_id": 5, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Sam Trammell", "character": "Mr. Lancaster", "id": 131006, "credit_id": "52fe4e019251416c75148431", "cast_id": 6, "profile_path": "/pvf0cmYdw3Fi2F5HjP2QHgxRKoC.jpg", "order": 4}, {"name": "Willem Dafoe", "character": "Peter Van Houten", "id": 5293, "credit_id": "52fe4e019251416c75148425", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 5}, {"name": "Lotte Verbeek", "character": "Lidewij", "id": 133931, "credit_id": "54ee3f4b925141796e00477a", "cast_id": 23, "profile_path": "/A9Me02fk2G7Hq4ekf64WadQUyf0.jpg", "order": 6}, {"name": "Ana Dela Cruz", "character": "Dr. Maria", "id": 1431805, "credit_id": "54ee3f5ac3a3680b80004c9c", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Mike Birbiglia", "character": "Patrick", "id": 113373, "credit_id": "52fe4e019251416c7514847b", "cast_id": 20, "profile_path": "/gLwimMh2rG6hfFx8LUI7InyjoLA.jpg", "order": 8}, {"name": "Emily Peachey", "character": "Monica", "id": 1279375, "credit_id": "52fe4e019251416c75148477", "cast_id": 19, "profile_path": null, "order": 9}], "directors": [{"name": "Josh Boone", "department": "Directing", "job": "Director", "credit_id": "52fe4e019251416c75148473", "profile_path": "/w7a0LNrGto3RE2sJv2OfUMXY1Tk.jpg", "id": 1053420}], "vote_average": 8.1, "runtime": 125}, "9944": {"poster_path": "/kIvGL0pyXY3TzWHrUV0ytEJDgCX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two Supreme Court Justices have been killed. Now a college professor, who clerked for one of the two men, who's also having an affair with one of his students, is given a brief by her, that states who probably, wanted to see these two men dead. He then gives it to one of his friends, who works for the FBI...", "video": false, "id": 9944, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Pelican Brief", "tagline": "Two Supreme Court Justices have been assassinated. One lone law student has stumbled upon the truth. An investigative journalist wants her story. Everybody else wants her dead.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107798", "adult": false, "backdrop_path": "/ur2Hu19ehVhJvNVtVfMMxUMn7cF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "1993-12-16", "popularity": 0.278926930471809, "original_title": "The Pelican Brief", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Darby Shaw", "id": 1204, "credit_id": "52fe454dc3a36847f80c6891", "cast_id": 9, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Gray Grantham", "id": 5292, "credit_id": "52fe454dc3a36847f80c6895", "cast_id": 10, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Sam Shepard", "character": "Thomas Callahan", "id": 9880, "credit_id": "52fe454dc3a36847f80c6899", "cast_id": 11, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 2}, {"name": "William Atherton", "character": "Bob Gminski", "id": 7676, "credit_id": "52fe454dc3a36847f80c689d", "cast_id": 12, "profile_path": "/dtzWBSXsuZB2NeAfTiytTBOnUoB.jpg", "order": 3}, {"name": "John Lithgow", "character": "Smith Keen", "id": 12074, "credit_id": "52fe454dc3a36847f80c68a1", "cast_id": 13, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 4}, {"name": "Tom Quinn", "character": "Sara Ann Morgan's Father", "id": 1115118, "credit_id": "52fe454dc3a36847f80c68ab", "cast_id": 15, "profile_path": "/goJeBvmLYutE2LYCoxGKTPxjGgA.jpg", "order": 5}, {"name": "John Heard", "character": "Gavin Vereek", "id": 11512, "credit_id": "52fe454dc3a36847f80c68af", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 6}], "directors": [{"name": "Alan J. Pakula", "department": "Directing", "job": "Director", "credit_id": "52fe454cc3a36847f80c6863", "profile_path": "/vzvxrcoFirt0LJb0hG0ezP64mYr.jpg", "id": 6349}], "vote_average": 6.1, "runtime": 137}, "9945": {"poster_path": "/7tOgs3ZPLl9dl5ttLdeqWFtSf68.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.", "video": false, "id": 9945, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Vampires", "tagline": "From the Master of Evil. Comes a New Breed of Terror", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120877", "adult": false, "backdrop_path": "/xhig88hH9sWG9iwEMCmvxyfE5YR.jpg", "production_companies": [{"name": "Film Office", "id": 23893}, {"name": "JVC Entertainment Networks", "id": 4248}, {"name": "Largo Entertainment", "id": 1644}, {"name": "Spooky Tooth Productions", "id": 23894}, {"name": "Storm King Productions", "id": 23895}], "release_date": "1998-10-30", "popularity": 0.244478486366321, "original_title": "Vampires", "budget": 20000000, "cast": [{"name": "James Woods", "character": "Jack Crow", "id": 4512, "credit_id": "52fe454dc3a36847f80c68f7", "cast_id": 8, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 0}, {"name": "Daniel Baldwin", "character": "Montoya", "id": 24516, "credit_id": "52fe454dc3a36847f80c68fb", "cast_id": 9, "profile_path": "/vDLkhz6EliUtYumpJdFTquUvdfp.jpg", "order": 1}, {"name": "Sheryl Lee", "character": "Katrina", "id": 6726, "credit_id": "52fe454dc3a36847f80c68ff", "cast_id": 10, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 2}, {"name": "Thomas Ian Griffith", "character": "Jan Valek", "id": 60705, "credit_id": "52fe454dc3a36847f80c6903", "cast_id": 11, "profile_path": "/eBXSCzKTo9EuNHbKWQqrAhETaSm.jpg", "order": 3}, {"name": "Maximilian Schell", "character": "Kardinal Alba", "id": 12150, "credit_id": "52fe454dc3a36847f80c6907", "cast_id": 12, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 4}, {"name": "Tim Guinee", "character": "Father Adam Guiteau", "id": 40275, "credit_id": "53833098c3a3680598008882", "cast_id": 19, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 5}, {"name": "Mark Boone Junior", "character": "Catlin", "id": 534, "credit_id": "538330c0c3a368737d003990", "cast_id": 20, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 6}, {"name": "Gregory Sierra", "character": "Father Giovanni", "id": 18914, "credit_id": "538330dcc3a368059500881c", "cast_id": 21, "profile_path": "/lbF2GRIs3juRAzfevwsUOq5PzFF.jpg", "order": 7}, {"name": "Cary-Hiroyuki Tagawa", "character": "David Deyo", "id": 11398, "credit_id": "538330fcc3a36805a40082b8", "cast_id": 22, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 8}, {"name": "Thomas Rosales, Jr.", "character": "Ortega", "id": 43010, "credit_id": "53833124c3a368059b008642", "cast_id": 23, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 9}, {"name": "Clarke Coleman", "character": "Davis", "id": 1324478, "credit_id": "5383314bc3a368059e0088ae", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Mark Sivertsen", "character": "Highway Patrolman", "id": 156605, "credit_id": "5383316fc3a368059e0088b2", "cast_id": 25, "profile_path": null, "order": 11}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe454dc3a36847f80c68cf", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.1, "runtime": 108}, "9946": {"poster_path": "/bEIjH6GroeWaBkn6o7MVpMNbuyw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209300000, "overview": "On December 28th, 1999, the citizens of New York City are getting ready for the turn of the millennium. However, the Devil decides to crash the party by coming to the city, inhabiting a man's body, and searching for his chosen bride, a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist called Jericho Cane.", "video": false, "id": 9946, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "End of Days", "tagline": "Prepare for the end.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146675", "adult": false, "backdrop_path": "/qytbMNpC6R703nh0XEp3c4S39dl.jpg", "production_companies": [{"name": "Beacon Communications", "id": 919}], "release_date": "1999-11-23", "popularity": 0.638142524067616, "original_title": "End of Days", "budget": 83000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Jericho Cane", "id": 1100, "credit_id": "52fe454dc3a36847f80c6975", "cast_id": 12, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Gabriel Byrne", "character": "Satan", "id": 5168, "credit_id": "52fe454dc3a36847f80c6979", "cast_id": 13, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 1}, {"name": "Robin Tunney", "character": "Christine York", "id": 17346, "credit_id": "52fe454dc3a36847f80c697d", "cast_id": 14, "profile_path": "/oQGr5vfYbkarmJQmhGmSpIhSapL.jpg", "order": 2}, {"name": "Udo Kier", "character": "Head Priest", "id": 1646, "credit_id": "52fe454dc3a36847f80c6981", "cast_id": 15, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 3}, {"name": "Rod Steiger", "character": "Father Kovak", "id": 522, "credit_id": "52fe454dc3a36847f80c6985", "cast_id": 16, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 4}, {"name": "Kevin Pollak", "character": "Bobby Chicago", "id": 7166, "credit_id": "52fe454dc3a36847f80c6989", "cast_id": 17, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 5}, {"name": "C. C. H. Pounder", "character": "Detective Margie Francis", "id": 30485, "credit_id": "52fe454dc3a36847f80c698d", "cast_id": 18, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 6}, {"name": "Miriam Margolyes", "character": "Mabel", "id": 6199, "credit_id": "52fe454dc3a36847f80c6991", "cast_id": 19, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 7}, {"name": "Michael O'Hagan", "character": "Cardinal", "id": 53490, "credit_id": "54ef006f925141795f005ed2", "cast_id": 82, "profile_path": null, "order": 8}, {"name": "Mark Margolis", "character": "Pope", "id": 1173, "credit_id": "54ef009ac3a36869e50035d8", "cast_id": 83, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 9}, {"name": "Derrick O'Connor", "character": "Thomas Aquinas", "id": 14325, "credit_id": "54ef00e29251413ae800315d", "cast_id": 84, "profile_path": "/5V0v5o7vIORgUXxbMCqy5aXLf5f.jpg", "order": 10}], "directors": [{"name": "Peter Hyams", "department": "Directing", "job": "Director", "credit_id": "52fe454dc3a36847f80c6935", "profile_path": "/zbELGEBxySY0KqZv63DXeJdfMVU.jpg", "id": 37710}], "vote_average": 5.9, "runtime": 121}, "216015": {"poster_path": "/uUpm5xTqy6YEedx7nF03Ata2U5V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.", "video": false, "id": 216015, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Fifty Shades of Grey", "tagline": "Are you curious?", "vote_count": 473, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2322441", "adult": false, "backdrop_path": "/16tzigaFFnrovQsbOMy9340V787.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Trigger Street Productions", "id": 11801}, {"name": "Michael De Luca Productions", "id": 27551}], "release_date": "2015-02-13", "popularity": 14.2346908807011, "original_title": "Fifty Shades of Grey", "budget": 40000000, "cast": [{"name": "Dakota Johnson", "character": "Anastasia Steele", "id": 118545, "credit_id": "52fe4e10c3a368484e20c3bd", "cast_id": 5, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 0}, {"name": "Jamie Dornan", "character": "Christian Grey", "id": 1254583, "credit_id": "530bacd1c3a36875f30002b1", "cast_id": 15, "profile_path": "/11sPIeECW74loLh3tconPk842c2.jpg", "order": 1}, {"name": "Jennifer Ehle", "character": "Carla", "id": 49971, "credit_id": "52fe4e10c3a368484e20c3c1", "cast_id": 6, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 2}, {"name": "Eloise Mumford", "character": "Kate Kavanagh", "id": 222130, "credit_id": "52fe4e10c3a368484e20c3d1", "cast_id": 10, "profile_path": "/6yT9OjHcnG55iGjq7XFvd2qpYT2.jpg", "order": 3}, {"name": "Luke Grimes", "character": "Elliot Grey", "id": 56680, "credit_id": "52fe4e10c3a368484e20c3c9", "cast_id": 8, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 4}, {"name": "Victor Rasuk", "character": "Jose Rodriguez", "id": 59251, "credit_id": "52fe4e10c3a368484e20c3cd", "cast_id": 9, "profile_path": "/zrNF2SQpnsOQsFHTKVs69x1TjEW.jpg", "order": 5}, {"name": "Max Martini", "character": "Jason Taylor", "id": 94864, "credit_id": "52fe4e10c3a368484e20c3d5", "cast_id": 11, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 6}, {"name": "Rita Ora", "character": "Mia Grey", "id": 1089873, "credit_id": "52fe4e10c3a368484e20c3d9", "cast_id": 12, "profile_path": "/4olIRqYmdXf56ZDsjBCs3VMmJXi.jpg", "order": 7}, {"name": "Marcia Gay Harden", "character": "Dr. Grace Trevelyan Grey", "id": 4726, "credit_id": "52fe4e10c3a368484e20c3dd", "cast_id": 13, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 8}, {"name": "Callum Keith Rennie", "character": "Ray Steele", "id": 540, "credit_id": "52fe4e10c3a368484e20c3e1", "cast_id": 14, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 9}, {"name": "Andrew Airlie", "character": "Mr. Grey", "id": 41436, "credit_id": "54fb4da59251413aac00206d", "cast_id": 16, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 10}, {"name": "Dylan Neal", "character": "Bob", "id": 79149, "credit_id": "54fb4dbe9251417b70001b14", "cast_id": 17, "profile_path": "/uuJjxlqQHkJqrhajEQq6Gmy2dkr.jpg", "order": 11}, {"name": "Rachel Skarsten", "character": "Andrea", "id": 80018, "credit_id": "54fb4dddc3a368690e0018fb", "cast_id": 18, "profile_path": "/6eDPJFpVX58ADPnLixa2Nax736G.jpg", "order": 12}, {"name": "Emily Fonda", "character": "Martina", "id": 1411603, "credit_id": "54fb4dedc3a368696a001abb", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Anthony Konechny", "character": "Paul Clayton", "id": 1381295, "credit_id": "54fb57f3c3a368199e002263", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Sam Taylor-Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4e10c3a368484e20c3ad", "profile_path": "/dwX7Tgg5VSAsx5CfCy0eEj98sFn.jpg", "id": 1137903}], "vote_average": 5.8, "runtime": 125}, "9952": {"poster_path": "/oA5kv4EDuED2bgbklapdDCtDvIY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.", "video": false, "id": 9952, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Rescue Dawn", "tagline": "A true story of survival... declassified.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462504", "adult": false, "backdrop_path": "/bj1ZF5vj23N8pFIGlG2f7IPTtpf.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2006-09-09", "popularity": 0.462189704853853, "original_title": "Rescue Dawn", "budget": 0, "cast": [{"name": "Christian Bale", "character": "Dieter Dengler", "id": 3894, "credit_id": "52fe454fc3a36847f80c6fcb", "cast_id": 23, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Duane", "id": 18324, "credit_id": "52fe454fc3a36847f80c6ff5", "cast_id": 34, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Marshall Bell", "character": "Admiral", "id": 3041, "credit_id": "52fe454fc3a36847f80c6fc1", "cast_id": 21, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 2}, {"name": "Toby Huss", "character": "Spook", "id": 18271, "credit_id": "52fe454fc3a36847f80c6fd5", "cast_id": 26, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 4}, {"name": "Pat Healy", "character": "Norman", "id": 60846, "credit_id": "52fe454fc3a36847f80c6fd9", "cast_id": 27, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 5}, {"name": "Fran\u00e7ois Chau", "character": "Province Governor", "id": 60851, "credit_id": "52fe454fc3a36847f80c6fdd", "cast_id": 28, "profile_path": "/r8EocoGAJVky0bQ6gyfxcabuTPz.jpg", "order": 6}, {"name": "James Oliver", "character": "Jet Pilot", "id": 60848, "credit_id": "52fe454fc3a36847f80c6fe1", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "GQ", "character": "Farkas", "id": 60847, "credit_id": "52fe454fc3a36847f80c6fe5", "cast_id": 30, "profile_path": "/fOZ6PiRpwDSfGPuMOyFAK2oLtM.jpg", "order": 8}, {"name": "Saichia Wongwiroj", "character": "Pathet Lao Guard", "id": 60850, "credit_id": "52fe454fc3a36847f80c6fe9", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Brad Carr", "character": "U.S. Navy Pilot", "id": 60849, "credit_id": "52fe454fc3a36847f80c6fed", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Teerawat Mulvilai", "character": "Little Hitler", "id": 60852, "credit_id": "52fe454fc3a36847f80c6ff1", "cast_id": 33, "profile_path": "/kdZxcDW5x52OOSI4GydbGzI11pJ.jpg", "order": 11}, {"name": "Jeremy Davies", "character": "Gene", "id": 4654, "credit_id": "52fe454fc3a36847f80c6ff9", "cast_id": 35, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 12}, {"name": "Kriangsak Ming-olo", "character": "Jumbo", "id": 60856, "credit_id": "52fe454fc3a36847f80c6ffd", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Somkuan 'Kuan' Siroon", "character": "Nook the Rock", "id": 60854, "credit_id": "52fe454fc3a36847f80c7001", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Mr. Yuttana Muenwaja", "character": "Crazy Horse", "id": 60853, "credit_id": "52fe454fc3a36847f80c7005", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Chorn Solyda", "character": "Walkie Talkie", "id": 60855, "credit_id": "52fe454fc3a36847f80c7009", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Galen Yuen", "character": "Y.C.", "id": 60857, "credit_id": "52fe454fc3a36847f80c700d", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Abhijati 'Meuk' Jusakul", "character": "Phisit", "id": 60858, "credit_id": "52fe454fc3a36847f80c7011", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Lek Chaiyan Chunsuttiwat", "character": "Procet", "id": 60859, "credit_id": "52fe454fc3a36847f80c7015", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Zach Grenier", "character": "Squad Leader", "id": 7471, "credit_id": "52fe454fc3a36847f80c7019", "cast_id": 43, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 20}], "directors": [{"name": "Werner Herzog", "department": "Directing", "job": "Director", "credit_id": "52fe454ec3a36847f80c6f5d", "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "id": 6818}], "vote_average": 6.4, "runtime": 126}, "9954": {"poster_path": "/gxpTseXRrHCgL0Igm1CrKD5JQNg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37597471, "overview": "Four young men who belong to a supernatural legacy are forced to battle a fifth power long thought to have died out. Another great force they must contend with is the jealousy and suspicion that threatens to tear them apart.", "video": false, "id": 9954, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Covenant", "tagline": "Only the power of Hell can help them.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0475944", "adult": false, "backdrop_path": "/ctnHBZ6e25NsGVSWx7rF1OklR7D.jpg", "production_companies": [{"name": "Screen Gems, Inc.", "id": 127}], "release_date": "2006-09-08", "popularity": 0.533000684029453, "original_title": "The Covenant", "budget": 20000000, "cast": [{"name": "Steven Strait", "character": "Caleb Danvers", "id": 54815, "credit_id": "52fe454fc3a36847f80c7251", "cast_id": 23, "profile_path": "/yL9IKHHVaDupVstNLwWWDpdhW8k.jpg", "order": 0}, {"name": "Laura Ramsey", "character": "Sarah Wenham", "id": 51975, "credit_id": "52fe454fc3a36847f80c7255", "cast_id": 24, "profile_path": "/4dRnDQ7FZu54ZtLXzWARGWvtStR.jpg", "order": 1}, {"name": "Jessica Lucas", "character": "Kate Tunney", "id": 51989, "credit_id": "52fe454fc3a36847f80c7259", "cast_id": 25, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 2}, {"name": "Kyle Schmid", "character": "Aaron Abbot", "id": 232, "credit_id": "52fe454fc3a36847f80c725d", "cast_id": 26, "profile_path": "/d0BikewdLHSo6gjNMlBU7m7ePdG.jpg", "order": 3}, {"name": "Taylor Kitsch", "character": "Pogue Parry", "id": 60900, "credit_id": "52fe454fc3a36847f80c7261", "cast_id": 27, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 4}, {"name": "Chace Crawford", "character": "Tyler Simms", "id": 60899, "credit_id": "52fe454fc3a36847f80c7269", "cast_id": 29, "profile_path": "/ay3fAn4ya7BUfBcHkSGGw0dapUg.jpg", "order": 5}, {"name": "Sebastian Stan", "character": "Chase Collins", "id": 60898, "credit_id": "52fe454fc3a36847f80c7265", "cast_id": 28, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 6}, {"name": "Wendy Crewson", "character": "Evelyn Danvers", "id": 19957, "credit_id": "52fe454fc3a36847f80c726d", "cast_id": 30, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 7}, {"name": "Stephen McHattie", "character": "James Danvers", "id": 230, "credit_id": "52fe454fc3a36847f80c7271", "cast_id": 31, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 8}, {"name": "Kenneth Welsh", "character": "Provost Higgins", "id": 6074, "credit_id": "52fe454fc3a36847f80c7275", "cast_id": 32, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 9}, {"name": "Toby Hemingway", "character": "Reid Garwin", "id": 60901, "credit_id": "52fe4550c3a36847f80c7279", "cast_id": 33, "profile_path": "/b5ZlB5Ct7xRg4ypRjAA7mjFA1Jq.jpg", "order": 10}, {"name": "Basia Jasinski", "character": "Nicky's Bar Waitress", "id": 60903, "credit_id": "52fe4550c3a36847f80c727d", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Christian Baril", "character": "Dead Teenage Boy", "id": 60902, "credit_id": "52fe4550c3a36847f80c7281", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Larry Day", "character": "Patrolman Reeve", "id": 60907, "credit_id": "52fe4550c3a36847f80c7285", "cast_id": 36, "profile_path": "/kkYxACTQis5p1X5VPxLhsxFGprg.jpg", "order": 13}, {"name": "Steven Crowder", "character": "Party Kid", "id": 60905, "credit_id": "52fe4550c3a36847f80c7289", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Robert Crooks", "character": "Ryan Bael", "id": 60906, "credit_id": "52fe4550c3a36847f80c728d", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Rob Burns", "character": "Mr. Pennyworth", "id": 60904, "credit_id": "52fe4550c3a36847f80c7291", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Jonathan Deveau", "character": "Semi-Driver", "id": 60909, "credit_id": "52fe4550c3a36847f80c7295", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Vito DeFilippo", "character": "Mr. Hoffman", "id": 60908, "credit_id": "52fe4550c3a36847f80c7299", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Frank Fontaine", "character": "Gorman Twoberry", "id": 60910, "credit_id": "52fe4550c3a36847f80c729d", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe454fc3a36847f80c71d5", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 5.2, "runtime": 97}, "9955": {"poster_path": "/7vbtLFfN00BaczHjOaPWui4aqg1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together\u2014as a pairs team.", "video": false, "id": 9955, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Blades of Glory", "tagline": "Kick Some Ice.", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0445934", "adult": false, "backdrop_path": "/4CDaseAR78XCvKPwbKrGOjUjeO6.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}], "release_date": "2007-03-30", "popularity": 0.739714285257949, "original_title": "Blades of Glory", "budget": 53000000, "cast": [{"name": "Will Ferrell", "character": "Chazz Michael Michaels", "id": 23659, "credit_id": "52fe4550c3a36847f80c7387", "cast_id": 25, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Jon Heder", "character": "Jimmy MacElroy", "id": 53926, "credit_id": "52fe4550c3a36847f80c7391", "cast_id": 27, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 1}, {"name": "Will Arnett", "character": "Stranz Van Waldenberg", "id": 21200, "credit_id": "52fe4550c3a36847f80c7395", "cast_id": 28, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 2}, {"name": "Amy Poehler", "character": "Fairchild Van Waldenberg", "id": 56322, "credit_id": "52fe4550c3a36847f80c739d", "cast_id": 30, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 3}, {"name": "Jenna Fischer", "character": "Katie Van Waldenberg", "id": 51856, "credit_id": "52fe4550c3a36847f80c7399", "cast_id": 29, "profile_path": "/ceSnU3b5mWMCXQpeA3tTh0x7k0N.jpg", "order": 4}, {"name": "William Fichtner", "character": "Darren MacElroy", "id": 886, "credit_id": "52fe4550c3a36847f80c73a7", "cast_id": 33, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Coach", "id": 8977, "credit_id": "52fe4550c3a36847f80c73ab", "cast_id": 34, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Romany Malco", "character": "Jesse", "id": 71530, "credit_id": "52fe4550c3a36847f80c73b3", "cast_id": 36, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Hector", "id": 32907, "credit_id": "52fe4550c3a36847f80c73af", "cast_id": 35, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "Scott Hamilton", "character": "Sports Anchor", "id": 60939, "credit_id": "52fe4550c3a36847f80c73c7", "cast_id": 41, "profile_path": "/lsWso6I1K3SD9PxrpDqUAm2nOjt.jpg", "order": 9}, {"name": "Andy Richter", "character": "Mountie", "id": 28637, "credit_id": "52fe4550c3a36847f80c73b7", "cast_id": 37, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 10}, {"name": "Greg Lindsay", "character": "Mountie", "id": 60940, "credit_id": "52fe4550c3a36847f80c73c3", "cast_id": 40, "profile_path": "/udOX6K2ajXasSviz2ch0vySzzxH.jpg", "order": 11}, {"name": "Rob Corddry", "character": "Bryce", "id": 52997, "credit_id": "52fe4550c3a36847f80c73df", "cast_id": 49, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 12}, {"name": "Nick Jameson", "character": "PA Announcer", "id": 39214, "credit_id": "52fe4550c3a36847f80c73bb", "cast_id": 38, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 13}, {"name": "Tom Virtue", "character": "Floor Manager", "id": 38709, "credit_id": "52fe4550c3a36847f80c73bf", "cast_id": 39, "profile_path": "/nkvTJE1RR0T5Wo9YUENDU0lb3C1.jpg", "order": 14}, {"name": "Ben Wilson", "character": "Fox", "id": 60941, "credit_id": "52fe4550c3a36847f80c73d3", "cast_id": 46, "profile_path": "/aEoSC2MLB8X5I9v6hscth0th3Ex.jpg", "order": 15}, {"name": "William Daniels", "character": "Commissioner Ebbers", "id": 10775, "credit_id": "52fe4550c3a36847f80c73db", "cast_id": 48, "profile_path": "/4zIlfvoSPHVTWIpZ9JvZODD8vnn.jpg", "order": 16}, {"name": "Zachary Ferren", "character": "Young Jimmy", "id": 60943, "credit_id": "52fe4550c3a36847f80c73cf", "cast_id": 45, "profile_path": "/o00oiHBotxaw8a81Wb6N42VSymi.jpg", "order": 17}, {"name": "R\u00e9my Girard", "character": "Father St. Pierre", "id": 38526, "credit_id": "52fe4550c3a36847f80c73cb", "cast_id": 43, "profile_path": "/iOluYYBxiLzb5fS5F0Y8Xc5bQVo.jpg", "order": 18}, {"name": "Steven M. Gagnon", "character": "Rink Official World Games", "id": 60944, "credit_id": "52fe4550c3a36847f80c73d7", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Nancy Kerrigan", "character": "Attractive Official", "id": 166931, "credit_id": "53bdf67f0e0a261589002f7a", "cast_id": 50, "profile_path": "/rjwHXsOa1vLdgjFxGG9HJXAh3If.jpg", "order": 20}, {"name": "Luke Wilson", "character": "Sex Class Counselor", "id": 36422, "credit_id": "53bdf6b50e0a261579002d4f", "cast_id": 51, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 21}, {"name": "Brian Boitano", "character": "Federation Judge", "id": 1226851, "credit_id": "53bdf7060e0a26158f002cb3", "cast_id": 52, "profile_path": null, "order": 22}, {"name": "Dorothy Hamill", "character": "Federation Judge", "id": 1226887, "credit_id": "53bdf71f0e0a261585002dce", "cast_id": 53, "profile_path": null, "order": 23}, {"name": "Peggy Fleming", "character": "Federation Judge", "id": 1226343, "credit_id": "53bdf7350e0a261576002ed5", "cast_id": 54, "profile_path": null, "order": 24}, {"name": "Sasha Cohen", "character": "Sasha Cohen", "id": 204665, "credit_id": "53bdf7c10e0a26157f002fc2", "cast_id": 55, "profile_path": "/cslDcNDtkcs8IhUcIY4UbG6GopK.jpg", "order": 25}, {"name": "Jim Lampley", "character": "Co-Anchor", "id": 942254, "credit_id": "53bdf7f20e0a261589002fd7", "cast_id": 56, "profile_path": null, "order": 26}], "directors": [{"name": "Josh Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe4550c3a36847f80c7305", "profile_path": "/g316UVVZWfD4cXQpxYirnhgop7U.jpg", "id": 60922}, {"name": "Will Speck", "department": "Directing", "job": "Director", "credit_id": "52fe4550c3a36847f80c7311", "profile_path": "/mrTboVxXv4LnVuPoBdQvU1cMD4l.jpg", "id": 60923}], "vote_average": 5.4, "runtime": 93}, "59108": {"poster_path": "/ze2trl2NHuLOLimimvBkjJID3yG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they\u2019re sure is hidden in the penthouse.", "video": false, "id": 59108, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Tower Heist", "tagline": "Ordinary guys. An extraordinary robbery.", "vote_count": 317, "homepage": "http://www.towerheist.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0471042", "adult": false, "backdrop_path": "/18f11LguqJG2PhiNOUABDbTSJMT.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Image Entertainment", "id": 3086}, {"name": "Relativity Media", "id": 7295}, {"name": "Rat Entertainment", "id": 12007}], "release_date": "2011-11-04", "popularity": 0.898733097096566, "original_title": "Tower Heist", "budget": 75000000, "cast": [{"name": "Ben Stiller", "character": "Josh Kovacs", "id": 7399, "credit_id": "52fe4981c3a36847f819dbcf", "cast_id": 12, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Slide", "id": 776, "credit_id": "52fe4981c3a36847f819dbad", "cast_id": 2, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Casey Affleck", "character": "Charlie", "id": 1893, "credit_id": "52fe4981c3a36847f819dbb1", "cast_id": 3, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 2}, {"name": "Alan Alda", "character": "Arthur Shaw", "id": 21278, "credit_id": "52fe4981c3a36847f819dbb5", "cast_id": 4, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 3}, {"name": "Matthew Broderick", "character": "Mr. Fitzhugh", "id": 4756, "credit_id": "52fe4981c3a36847f819dbb9", "cast_id": 5, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 4}, {"name": "T\u00e9a Leoni", "character": "Special Agent Claire Denham", "id": 4939, "credit_id": "52fe4981c3a36847f819dbbd", "cast_id": 6, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 5}, {"name": "Judd Hirsch", "character": "Mr. Simon", "id": 6167, "credit_id": "52fe4981c3a36847f819dbc7", "cast_id": 10, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 6}, {"name": "Gabourey Sidibe", "character": "Odessa Montero", "id": 109560, "credit_id": "52fe4981c3a36847f819dbcb", "cast_id": 11, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 7}, {"name": "Stephen Henderson", "character": "Lester", "id": 196179, "credit_id": "52fe4981c3a36847f819dc2d", "cast_id": 28, "profile_path": "/g1LOudSbAQvYlWkAJ5kMY6wygZR.jpg", "order": 8}, {"name": "Michael Pe\u00f1a", "character": "Enrique Dev\u2019Reaux", "id": 454, "credit_id": "52fe4981c3a36847f819dc31", "cast_id": 29, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 9}, {"name": "Nina Arianda", "character": "Miss Iovenko", "id": 971329, "credit_id": "52fe4981c3a36847f819dc35", "cast_id": 30, "profile_path": "/9JFj7CPIkH9NCqtqT5SN3ECsBYh.jpg", "order": 10}, {"name": "Marcia Jean Kurtz", "character": "Rose", "id": 14548, "credit_id": "52fe4981c3a36847f819dc39", "cast_id": 31, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 11}, {"name": "Juan Carlos Hern\u00e1ndez", "character": "Manuel", "id": 116714, "credit_id": "52fe4981c3a36847f819dc3d", "cast_id": 32, "profile_path": "/crzCSBiSwdK7X9B0PJFA6NP0y3o.jpg", "order": 12}, {"name": "Harry O'Reilly", "character": "Special Agent Danszk", "id": 28101, "credit_id": "52fe4981c3a36847f819dc41", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Peter Van Wagner", "character": "Marty Klein, Esq.", "id": 159828, "credit_id": "52fe4981c3a36847f819dc45", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "\u017deljko Ivanek", "character": "Director Mazin", "id": 6752, "credit_id": "52fe4981c3a36847f819dc49", "cast_id": 35, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 15}, {"name": "Robert Downey Sr.", "character": "Judge Ramos", "id": 59874, "credit_id": "52fe4981c3a36847f819dc4d", "cast_id": 36, "profile_path": "/6ITEZoNCgMweY7Sf6DxV4T5mkwG.jpg", "order": 16}, {"name": "Clem Cheung", "character": "Kwan", "id": 4893, "credit_id": "52fe4981c3a36847f819dc51", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Annika Pergament", "character": "NASDAQ / News Reporter", "id": 1129795, "credit_id": "52fe4981c3a36847f819dc55", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Lynne Rossetto Kasper", "character": "Radio Host", "id": 1129796, "credit_id": "52fe4981c3a36847f819dc59", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4981c3a36847f819dbc3", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 5.8, "runtime": 104}, "9957": {"poster_path": "/zQy6T5qV0lvLkkKi5S9VIYykSQD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A trio of guys try and make up for missed opportunities in childhood by forming a three-player baseball team to compete against standard little league squads.", "video": false, "id": 9957, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Benchwarmers", "tagline": "Get off the bench and get into the game.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0437863", "adult": false, "backdrop_path": "/qmOjsNEFclQuld6s7Vfc1255dXK.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2006-04-07", "popularity": 0.457801557846734, "original_title": "The Benchwarmers", "budget": 0, "cast": [{"name": "Jon Heder", "character": "Clark", "id": 53926, "credit_id": "52fe4550c3a36847f80c75ad", "cast_id": 20, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 0}, {"name": "Rob Schneider", "character": "Gus", "id": 60949, "credit_id": "52fe4550c3a36847f80c75b1", "cast_id": 21, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 1}, {"name": "David Spade", "character": "Richie", "id": 60950, "credit_id": "52fe4550c3a36847f80c75b5", "cast_id": 22, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 2}, {"name": "Jon Lovitz", "character": "Mel", "id": 16165, "credit_id": "52fe4550c3a36847f80c75b9", "cast_id": 23, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 3}, {"name": "Tim Meadows", "character": "Wayne", "id": 51857, "credit_id": "52fe4550c3a36847f80c75bd", "cast_id": 24, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 4}, {"name": "Amaury Nolasco", "character": "Carlos", "id": 17341, "credit_id": "52fe4550c3a36847f80c75c1", "cast_id": 25, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 5}, {"name": "Nick Swardson", "character": "Howie", "id": 32907, "credit_id": "52fe4550c3a36847f80c75c5", "cast_id": 26, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 6}, {"name": "Molly Sims", "character": "Liz", "id": 60952, "credit_id": "52fe4550c3a36847f80c75c9", "cast_id": 27, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 7}, {"name": "Erinn Bartlett", "character": "Salad Girl / Sarah", "id": 60953, "credit_id": "52fe4550c3a36847f80c75cd", "cast_id": 28, "profile_path": "/k5T5kR6A8HZmowF3ZbkPF5QtgVg.jpg", "order": 8}, {"name": "Craig Kilborn", "character": "Jerry", "id": 60951, "credit_id": "52fe4550c3a36847f80c75d1", "cast_id": 29, "profile_path": "/mVlE2lpGaKAVCOCoFbKNMouPtsY.jpg", "order": 9}, {"name": "John Farley", "character": "Swimmer Boy", "id": 5621, "credit_id": "52fe4550c3a36847f80c75d5", "cast_id": 30, "profile_path": "/r3iQTni80PjyKo3OcXlU0Zmpcve.jpg", "order": 10}, {"name": "Bill Romanowski", "character": "Karl", "id": 60954, "credit_id": "52fe4550c3a36847f80c75d9", "cast_id": 31, "profile_path": "/cXoVWp5m4eX1VedZqf3FbfKUOH4.jpg", "order": 11}, {"name": "Matt Weinberg", "character": "Kyle", "id": 60956, "credit_id": "52fe4550c3a36847f80c75dd", "cast_id": 32, "profile_path": "/g0MVUMfhkyv5kcIsMOEX0LaHpQM.jpg", "order": 12}, {"name": "Reggie Jackson", "character": "Himself", "id": 60957, "credit_id": "52fe4550c3a36847f80c75e5", "cast_id": 34, "profile_path": "/yhUoaWPd6Yy2qPuVE4Esd7xhpjA.jpg", "order": 13}, {"name": "Sean Salisbury", "character": "Brad", "id": 60955, "credit_id": "52fe4550c3a36847f80c75e1", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Joe Gnoffo", "character": "Marcus Ellwood", "id": 60958, "credit_id": "52fe4550c3a36847f80c75ed", "cast_id": 36, "profile_path": "/rKU6r12H7fg6FMveG1jNIA6nmA.jpg", "order": 15}, {"name": "Jackie Sandler", "character": "Female Customer", "id": 60959, "credit_id": "52fe4550c3a36847f80c75e9", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Jared Sandler", "character": "Autograph Kid", "id": 60961, "credit_id": "52fe4550c3a36847f80c75f1", "cast_id": 37, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 17}, {"name": "Ray Nicholson", "character": "Kid Catcher #1 Game #2", "id": 60960, "credit_id": "52fe4550c3a36847f80c75f5", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Terry Crews", "character": "Poker Guy #1", "id": 53256, "credit_id": "52fe4550c3a36847f80c75f9", "cast_id": 39, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 19}, {"name": "Patrick Schwarzenegger", "character": "Jock Kid Game #3", "id": 1053422, "credit_id": "52fe4551c3a36847f80c7603", "cast_id": 41, "profile_path": "/cUyMEVB8e2zD5UJIEW88Hb3Ejr0.jpg", "order": 20}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe4550c3a36847f80c7543", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 5.4, "runtime": 80}, "83686": {"poster_path": "/iNDSm5wcdmtfKsMM7nE8XhJUBl7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13231461, "overview": "The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There's only one catch - he didn't write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man's work, and for placing ambition and success above life's most fundamental three words.", "video": false, "id": 83686, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Words", "tagline": "There's more than one way to take a life.", "vote_count": 101, "homepage": "http://www.thewordsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1840417", "adult": false, "backdrop_path": "/tH5oFO4L3NblqiOaOb70G9AbGtB.jpg", "production_companies": [{"name": "Waterfall Media", "id": 32168}, {"name": "Also Known As Pictures", "id": 12545}, {"name": "Benaroya Pictures", "id": 6692}, {"name": "Animus Films", "id": 4135}, {"name": "Serenade Films", "id": 3459}], "release_date": "2012-09-07", "popularity": 0.89156601430265, "original_title": "The Words", "budget": 6000000, "cast": [{"name": "Bradley Cooper", "character": "Rory Jansen", "id": 51329, "credit_id": "52fe48b49251416c91095939", "cast_id": 4, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Dora Jansen", "id": 8691, "credit_id": "52fe48b49251416c9109593d", "cast_id": 5, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Jeremy Irons", "character": "The Old Man", "id": 16940, "credit_id": "52fe48b49251416c91095941", "cast_id": 6, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 2}, {"name": "Dennis Quaid", "character": "Clay Hammond", "id": 6065, "credit_id": "52fe48b49251416c91095945", "cast_id": 7, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 3}, {"name": "Olivia Wilde", "character": "Danielle", "id": 59315, "credit_id": "52fe48b49251416c91095935", "cast_id": 3, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "Mr. Jansen", "id": 18999, "credit_id": "52fe48b49251416c91095951", "cast_id": 10, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "John Hannah", "character": "Richard Ford", "id": 10727, "credit_id": "52fe48b49251416c91095949", "cast_id": 8, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 6}, {"name": "\u017deljko Ivanek", "character": "Joseph Cutler", "id": 6752, "credit_id": "52fe48b49251416c91095959", "cast_id": 12, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 7}, {"name": "Ben Barnes", "character": "Young Man", "id": 25130, "credit_id": "52fe48b49251416c9109594d", "cast_id": 9, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 8}, {"name": "Michael McKean", "character": "Nelson Wylie", "id": 21731, "credit_id": "52fe48b49251416c91095955", "cast_id": 11, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 9}, {"name": "Nora Arnezeder", "character": "Celia", "id": 453272, "credit_id": "52fe48b49251416c9109595d", "cast_id": 13, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 10}, {"name": "Ron Rifkin", "character": "Timothy Epstein", "id": 12122, "credit_id": "52fe48b49251416c91095961", "cast_id": 14, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 11}, {"name": "Gianpaolo Venuta", "character": "Dave Farber", "id": 179274, "credit_id": "52fe48b49251416c91095965", "cast_id": 15, "profile_path": "/5SV7bEZzkmhiZkSCgcpQXgl2UTv.jpg", "order": 12}, {"name": "Liz Stauber", "character": "Camy Rosen", "id": 11668, "credit_id": "52fe48b49251416c91095969", "cast_id": 16, "profile_path": "/8gcxVuPPMIs5XHuDsRemQI3IZBT.jpg", "order": 13}, {"name": "Keeva Lynk", "character": "Cynthia", "id": 550520, "credit_id": "52fe48b49251416c9109596d", "cast_id": 17, "profile_path": "/bqDHsp5adiMe6FADuOPKpQUNCYL.jpg", "order": 14}], "directors": [{"name": "Brian Klugman", "department": "Directing", "job": "Director", "credit_id": "52fe48b49251416c9109592b", "profile_path": "/jlzEmXQGYOnoKC9ipLSEC5Ioz9E.jpg", "id": 51996}, {"name": "Lee Sternthal", "department": "Directing", "job": "Director", "credit_id": "52fe48b49251416c91095931", "profile_path": "/668FyfP28cGPkAt9AlEum81JQ2p.jpg", "id": 929917}], "vote_average": 6.2, "runtime": 96}, "198375": {"poster_path": "/oZSfJH1IwOPla2ZGVli6YIBxYxz.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Takao, who is training to become a shoemaker, skipped school and is sketching shoes in a Japanese-style garden. He meets a mysterious woman, Yukino, who is older than him. Then, without arranging the times, the two start to see each other again and again, but only on rainy days. They deepen their relationship and open up to each other. But the end of the rainy season soon approaches \u2026", "video": false, "id": 198375, "genres": [{"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}], "title": "The Garden of Words", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2591814", "adult": false, "backdrop_path": "/k63K2HWcTZtGDl8QsJqZaDIqpuE.jpg", "production_companies": [{"name": "CoMix Wave Films", "id": 10198}], "release_date": "2013-05-30", "popularity": 0.556892627857081, "original_title": "Kotonoha no Niwa", "budget": 0, "cast": [{"name": "Miyu Irino", "character": "Takao Akizuki", "id": 19588, "credit_id": "52fe4d7b9251416c91117a13", "cast_id": 2, "profile_path": "/ietPOr7aiarxikxZE3772c9aScq.jpg", "order": 0}, {"name": "Kana Hanazawa", "character": "Yukari Yukino", "id": 119143, "credit_id": "52fe4d7b9251416c91117a17", "cast_id": 3, "profile_path": "/dsBFQ5aq1XaimLf99jTaDrDonI.jpg", "order": 1}, {"name": "Fumi Hirano", "character": "Takao's mother", "id": 129960, "credit_id": "52fe4d7b9251416c91117a1b", "cast_id": 4, "profile_path": "/o90N9sVQMNZy6LV1nFsZJoQov50.jpg", "order": 2}, {"name": "Takeshi Maeda", "character": "Takao's older brother", "id": 1124542, "credit_id": "52fe4d7b9251416c91117a1f", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Megumi Han", "character": "Sat\u014d", "id": 1164931, "credit_id": "52fe4d7b9251416c91117a23", "cast_id": 6, "profile_path": "/eOj3rcaO2M60L3LqCwBtbbghRs7.jpg", "order": 4}], "directors": [{"name": "Makoto Shinkai", "department": "Directing", "job": "Director", "credit_id": "52fe4d7b9251416c91117a0f", "profile_path": "/gJw2kEydzdj4uaD1FEfuQ2scQzy.jpg", "id": 74091}], "vote_average": 7.4, "runtime": 46}, "1771": {"poster_path": "/sBZs1jSybBRBXDwcCR8IOyHLUMc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 365762652, "overview": "Predominantly set during World War II, Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull \u2013 Adolf Hitler's ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.", "video": false, "id": 1771, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Captain America: The First Avenger", "tagline": "When patriots become heroes", "vote_count": 3377, "homepage": "http://captainamerica.marvel.com/", "belongs_to_collection": {"backdrop_path": "/g8rel9GDznWJkt4rxMO2HIrNuEo.jpg", "poster_path": "/r14U0p13M99ccWhMg0wHprp8TQi.jpg", "id": 131295, "name": "Captain America Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458339", "adult": false, "backdrop_path": "/pmZtj1FKvQqISS6iQbkiLg5TAsr.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2011-07-22", "popularity": 5.84046918451947, "original_title": "Captain America: The First Avenger", "budget": 140000000, "cast": [{"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe4313c3a36847f8038851", "cast_id": 5, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Hugo Weaving", "character": "Johann Schmidt / Red Skull", "id": 1331, "credit_id": "52fe4313c3a36847f8038855", "cast_id": 6, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 1}, {"name": "Tommy Lee Jones", "character": "Col. Chester Phillips", "id": 2176, "credit_id": "52fe4313c3a36847f8038859", "cast_id": 7, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 2}, {"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "52fe4313c3a36847f80388ef", "cast_id": 46, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 3}, {"name": "Sebastian Stan", "character": "James Buchanan 'Bucky' Barnes", "id": 60898, "credit_id": "52fe4313c3a36847f8038869", "cast_id": 11, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 4}, {"name": "Dominic Cooper", "character": "Howard Stark", "id": 55470, "credit_id": "52fe4313c3a36847f8038861", "cast_id": 9, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 5}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4313c3a36847f803885d", "cast_id": 8, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Abraham Erskine", "id": 2283, "credit_id": "52fe4313c3a36847f8038865", "cast_id": 10, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Toby Jones", "character": "Dr. Arnim Zola", "id": 13014, "credit_id": "52fe4313c3a36847f80388fb", "cast_id": 49, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Natalie Dormer", "character": "Private Lorraine", "id": 58502, "credit_id": "52fe4313c3a36847f803886d", "cast_id": 12, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 9}, {"name": "Amanda Righetti", "character": "SHIELD Agent", "id": 74289, "credit_id": "52fe4313c3a36847f80388f3", "cast_id": 47, "profile_path": "/aCRof0Sfqrbz2vgoWqVZuPWfvD8.jpg", "order": 10}, {"name": "Richard Armitage", "character": "Heinz Kruger", "id": 30315, "credit_id": "52fe4313c3a36847f80388f7", "cast_id": 48, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 11}, {"name": "Bruno Ricci", "character": "Jacques Dernier", "id": 145161, "credit_id": "52fe4313c3a36847f80388ff", "cast_id": 50, "profile_path": "/3LJJpZBfvdom5pVpJ8IlhIrIS6D.jpg", "order": 12}, {"name": "Neal McDonough", "character": "Timothy 'Dum Dum' Dugan", "id": 2203, "credit_id": "52fe4313c3a36847f8038903", "cast_id": 51, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 13}, {"name": "Derek Luke", "character": "Gabe Jones", "id": 15543, "credit_id": "52fe4313c3a36847f8038907", "cast_id": 52, "profile_path": "/8aWVcw4JDB76dhKRvUQgDGxInvN.jpg", "order": 14}, {"name": "Kenneth Choi", "character": "Jim Morita", "id": 41561, "credit_id": "52fe4313c3a36847f803890b", "cast_id": 53, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 15}, {"name": "J. J. Feild", "character": "James Montgomery Falsworth", "id": 30710, "credit_id": "52fe4313c3a36847f803890f", "cast_id": 54, "profile_path": "/pdDaMSsDqcyy2grU38pJC0s6XCs.jpg", "order": 16}, {"name": "Stan Lee", "character": "General", "id": 7624, "credit_id": "52fe4313c3a36847f8038913", "cast_id": 55, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 17}, {"name": "Michael Brandon", "character": "Senator Brandt", "id": 131814, "credit_id": "54a810289251414d60001e82", "cast_id": 166, "profile_path": "/yQEbJPH2Wwj7Bkx7wxJNQAqGnJn.jpg", "order": 18}, {"name": "Martin Sherman", "character": "Brandt's Aide", "id": 1094667, "credit_id": "54a8105d9251414d67001c92", "cast_id": 167, "profile_path": "/v5KMIgKwiOyOIicCwzr7n7LK2Ez.jpg", "order": 19}, {"name": "William Hope", "character": "SHIELD Lieutenant", "id": 10207, "credit_id": "54a81098c3a3680c1e001d91", "cast_id": 168, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 20}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe4313c3a36847f803884d", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.3, "runtime": 124}, "34544": {"poster_path": "/eMwotYpkcE42lGlaoCpPFaolvst.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176394723, "overview": "A group of Iraq War veterans on the run from U.S. military forces while they try to clear their names after being framed for a crime they didn't commit. Along the way, Col. Hannibal Smith, Capt. H.M. \"Howling Mad\" Murdock , Sgt. Bosco \"B.A.\" Baracus and Lt. Templeton \"Faceman\" Peck help out various people they encounter", "video": false, "id": 34544, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The A-Team", "tagline": "There Is No Plan B", "vote_count": 703, "homepage": "http://www.ateam-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0429493", "adult": false, "backdrop_path": "/rRBpKgStVlFlK0Rl42tqxNqX5E.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Stephen J. Cannell Productions", "id": 5585}, {"name": "Top Cow Productions", "id": 2528}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Phoenix Film Partners", "id": 10908}], "release_date": "2010-06-11", "popularity": 1.16974470963767, "original_title": "The A-Team", "budget": 110000000, "cast": [{"name": "Liam Neeson", "character": "Col. John 'Hannibal' Smith", "id": 3896, "credit_id": "52fe456a9251416c91031895", "cast_id": 24, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Bradley Cooper", "character": "Lt. Templeton 'Faceman' Peck", "id": 51329, "credit_id": "52fe456a9251416c91031899", "cast_id": 25, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 1}, {"name": "Jessica Biel", "character": "Capt. Charisa Sosa", "id": 10860, "credit_id": "52fe456a9251416c9103189d", "cast_id": 26, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Capt. 'Howling Mad' Murdock", "id": 82191, "credit_id": "52fe456a9251416c910318a1", "cast_id": 27, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Patrick Wilson", "character": "Lynch", "id": 17178, "credit_id": "52fe456a9251416c910318a5", "cast_id": 28, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 4}, {"name": "Quinton Jackson", "character": "Sgt. Bosco 'B.A.' Baracus", "id": 78811, "credit_id": "52fe456a9251416c910318a9", "cast_id": 29, "profile_path": "/2yiIdhAcc3IaYGyMbCavI449mRu.jpg", "order": 5}, {"name": "Gerald McRaney", "character": "General Morrison", "id": 29512, "credit_id": "52fe456a9251416c910318b5", "cast_id": 32, "profile_path": "/jPS0hN9T3JFhfMLEJ36LEwedTAz.jpg", "order": 8}, {"name": "Brian Bloom", "character": "Pike", "id": 4753, "credit_id": "52fe456a9251416c910318b9", "cast_id": 33, "profile_path": "/5Pc6tCfeVZFkBMQACRA318jqwph.jpg", "order": 9}, {"name": "Omari Hardwick", "character": "Chop Shop J", "id": 41556, "credit_id": "52fe456a9251416c910318bd", "cast_id": 34, "profile_path": "/gW4eSrYlyFhuC4QrMD0whDxA9DS.jpg", "order": 10}, {"name": "Maury Sterling", "character": "Gammons", "id": 65726, "credit_id": "52fe456a9251416c910318c1", "cast_id": 35, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 11}, {"name": "Terry Chen", "character": "Ravech", "id": 11677, "credit_id": "52fe456a9251416c910318c5", "cast_id": 36, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "C. Ernst Harth", "character": "Gilbert", "id": 114894, "credit_id": "52fe456a9251416c910318c9", "cast_id": 37, "profile_path": "/rm7NAoXKaMeW4DmVvzbItjceo9X.jpg", "order": 13}, {"name": "Raj Lal", "character": "Private Silyman", "id": 114895, "credit_id": "52fe456a9251416c910318cd", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Neil Schell", "character": "Army Meddac Hospital XO", "id": 114896, "credit_id": "52fe456a9251416c910318d1", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Gardiner Millar", "character": "Officer", "id": 114897, "credit_id": "52fe456a9251416c910318d5", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Marc-Anthony Massiah", "character": "Tahoe Inmate", "id": 114898, "credit_id": "52fe456a9251416c910318d9", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Rafael Pellerin", "character": "Soccer Kid", "id": 114899, "credit_id": "52fe456a9251416c910318dd", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Yul Vazquez", "character": "General Javier Tuco", "id": 75604, "credit_id": "52fe456a9251416c910318e1", "cast_id": 43, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 19}, {"name": "Henry Czerny", "character": "Director McCready", "id": 15319, "credit_id": "538dfdabc3a3687146005427", "cast_id": 44, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 20}, {"name": "Jacob Blair", "character": "Agent Blair", "id": 208069, "credit_id": "538dfdd6c3a36871550050f3", "cast_id": 45, "profile_path": "/8QbiqwUFim60IBZ2p22WoEs2e1w.jpg", "order": 21}], "directors": [{"name": "Joe Carnahan", "department": "Directing", "job": "Director", "credit_id": "52fe456a9251416c9103180d", "profile_path": "/5YPrZ1JprLwtU4tn5DG0wqLjsAT.jpg", "id": 40223}], "vote_average": 6.2, "runtime": 117}, "296": {"poster_path": "/lz4xYdF1n09lyiCfZWtWT44SZiG.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 435000000, "overview": "It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor \u2026 just like he promised.", "video": false, "id": 296, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Terminator 3: Rise of the Machines", "tagline": "The Machines Will Rise.", "vote_count": 763, "homepage": "http://www.terminator-3.de/", "belongs_to_collection": {"backdrop_path": "/tP1SCFnlYTHSMqp1yuFDVTQeLUD.jpg", "poster_path": "/vxiKtcxAJxHhlg2H1X8y7zcM3k6.jpg", "id": 528, "name": "The Terminator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181852", "adult": false, "backdrop_path": "/tMhvihszpLbOjj7mJSTW7bgQbIc.jpg", "production_companies": [{"name": "Mostow/Lieberman Productions", "id": 23636}, {"name": "C-2 Pictures", "id": 7340}, {"name": "Intermedia Films", "id": 763}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}], "release_date": "2003-06-30", "popularity": 2.06032351575602, "original_title": "Terminator 3: Rise of the Machines", "budget": 200000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Terminator", "id": 1100, "credit_id": "52fe4233c3a36847f800bca9", "cast_id": 6, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Nick Stahl", "character": "John Connor", "id": 6408, "credit_id": "52fe4233c3a36847f800bcad", "cast_id": 7, "profile_path": "/2QYVx2D71lY2MfRbluC8PPyLMlH.jpg", "order": 1}, {"name": "Claire Danes", "character": "Kate Brewster", "id": 6194, "credit_id": "52fe4234c3a36847f800bcb1", "cast_id": 8, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 2}, {"name": "Kristanna Loken", "character": "T-X", "id": 7218, "credit_id": "52fe4234c3a36847f800bcb5", "cast_id": 9, "profile_path": "/rxeYONGXlnNYOn50KjjiwgLxiGX.jpg", "order": 3}, {"name": "David Andrews", "character": "Robert Brewster", "id": 7219, "credit_id": "52fe4234c3a36847f800bcb9", "cast_id": 10, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 4}, {"name": "Mark Famiglietti", "character": "Scott Petersen", "id": 7220, "credit_id": "52fe4234c3a36847f800bcbd", "cast_id": 11, "profile_path": "/7Ypq73G7xZzVHLzN8nDi76bEBSP.jpg", "order": 5}, {"name": "Earl Boen", "character": "Dr. Peter Silberman", "id": 2716, "credit_id": "52fe4234c3a36847f800bcc1", "cast_id": 12, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 6}, {"name": "Moira Harris", "character": "Betsy", "id": 7221, "credit_id": "52fe4234c3a36847f800bcc5", "cast_id": 13, "profile_path": "/nhtDA9vLKqg2KnEjw9UgOuz2tMO.jpg", "order": 7}, {"name": "Chopper Bernet", "character": "Chief Engineer", "id": 7222, "credit_id": "52fe4234c3a36847f800bcc9", "cast_id": 14, "profile_path": "/hu7LbfGGZlEyOfRC2X9ieaejkH9.jpg", "order": 8}, {"name": "Christopher Lawford", "character": "Brewser's Aide", "id": 7223, "credit_id": "52fe4234c3a36847f800bccd", "cast_id": 15, "profile_path": "/xxc1WjJAajXWJog51i2Uh7MvlIN.jpg", "order": 9}, {"name": "Alana Curry", "character": "Bill's Girlfriend", "id": 7226, "credit_id": "52fe4234c3a36847f800bcd1", "cast_id": 16, "profile_path": "/aVauHVaeq7etScIzH4dhkA8cxbc.jpg", "order": 10}, {"name": "Chris Hardwick", "character": "Scientest", "id": 27738, "credit_id": "54bcf7ebc3a3687c40004113", "cast_id": 47, "profile_path": "/4neHtCQpQgOwmUil43R3syamU4z.jpg", "order": 11}, {"name": "Chris Hardwick", "character": "Engineer", "id": 27738, "credit_id": "54bcf800c3a3686c6100a2cf", "cast_id": 48, "profile_path": "/4neHtCQpQgOwmUil43R3syamU4z.jpg", "order": 12}, {"name": "Robert Alonzo", "character": "Jose Barrera", "id": 1444239, "credit_id": "550f740ec3a3683f39003df0", "cast_id": 49, "profile_path": null, "order": 13}], "directors": [{"name": "Jonathan Mostow", "department": "Directing", "job": "Director", "credit_id": "52fe4233c3a36847f800bc99", "profile_path": "/hHJjES7xDqHhFhyPvqytwJ8yGk3.jpg", "id": 7213}], "vote_average": 5.8, "runtime": 109}, "18162": {"poster_path": "/avlfNn8w9F3Z6iKrGe8FnJpQr7j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68688831, "overview": "On his latest expedition, Dr. Rick Marshall is sucked into a space-time vortex alongside his research assistant and a redneck survivalist. In this alternate universe, the trio make friends with a primate named Chaka, their only ally in a world full of dinosaurs and other fantastic creatures.", "video": false, "id": 18162, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Land of the Lost", "tagline": "Right place. Wrong time.", "vote_count": 110, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457400", "adult": false, "backdrop_path": "/gC5oemo21VQ6BSI6dXgwj3pNRDx.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Sid & Marty Krofft Pictures", "id": 11916}, {"name": "Mosaic Media Group", "id": 748}], "release_date": "2009-06-05", "popularity": 0.541419620311666, "original_title": "Land of the Lost", "budget": 100000000, "cast": [{"name": "Will Ferrell", "character": "Dr. Rick Marshall", "id": 23659, "credit_id": "52fe47649251416c75097aff", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Anna Friel", "character": "Holly", "id": 58016, "credit_id": "52fe47649251416c75097b03", "cast_id": 3, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 1}, {"name": "Danny McBride", "character": "Will Stanton", "id": 62862, "credit_id": "52fe47649251416c75097b07", "cast_id": 4, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 2}, {"name": "Jorma Taccone", "character": "Chaka", "id": 62863, "credit_id": "52fe47649251416c75097b17", "cast_id": 7, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 3}, {"name": "Matt Lauer", "character": "Himself", "id": 141525, "credit_id": "52fe47649251416c75097b1b", "cast_id": 9, "profile_path": "/dKczJjrdzn1DH5XpRfDzFXECiZy.jpg", "order": 4}, {"name": "Bobb'e J. Thompson", "character": "Tar Pits Kid", "id": 75633, "credit_id": "52fe47649251416c75097b1f", "cast_id": 10, "profile_path": "/egf09lgTqjSmSCxGLTROpkb5ZGS.jpg", "order": 5}, {"name": "Sierra McCormick", "character": "Tar Pits Kid", "id": 141526, "credit_id": "52fe47649251416c75097b23", "cast_id": 11, "profile_path": "/goRijQ7jtbYU4c27wpUXm8xgk1s.jpg", "order": 6}, {"name": "Shannon Lemke", "character": "Tar Pits Kid", "id": 141527, "credit_id": "52fe47649251416c75097b27", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Stevie Wash Jr.", "character": "Tar Pits Kid", "id": 141528, "credit_id": "52fe47649251416c75097b2b", "cast_id": 13, "profile_path": "/vJUSTpI7yYmaReZJw8FGUA0nJ1n.jpg", "order": 8}, {"name": "Brian Huskey", "character": "Teacher", "id": 54728, "credit_id": "52fe47649251416c75097b2f", "cast_id": 14, "profile_path": "/krewoXz2qgDdIAB2PTGRuilX0K5.jpg", "order": 9}, {"name": "Kevin Buitrago", "character": "Teenager", "id": 141529, "credit_id": "52fe47649251416c75097b33", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Noah Crawford", "character": "Teenager", "id": 141530, "credit_id": "52fe47649251416c75097b37", "cast_id": 16, "profile_path": "/zg5cmZF3oylfNpvz4AYRVd6LrZO.jpg", "order": 11}, {"name": "Jon Kent Ethridge", "character": "Teenager", "id": 141531, "credit_id": "52fe47649251416c75097b3b", "cast_id": 17, "profile_path": "/iW5X8CvFNjNz28e3KQFPDq3RXbb.jpg", "order": 12}, {"name": "Logan Manus", "character": "Teenager", "id": 141532, "credit_id": "52fe47649251416c75097b3f", "cast_id": 18, "profile_path": "/vq4oR5nhNKZqiKgqZESnqN2RQXy.jpg", "order": 13}, {"name": "John Boylan", "character": "Enik", "id": 560159, "credit_id": "52fe47649251416c75097b43", "cast_id": 19, "profile_path": "/9tHYSNayUe6ddIKmdxrFP4uzcYW.jpg", "order": 14}, {"name": "Marti Matulis", "character": "Sleestak", "id": 1287088, "credit_id": "52fe47649251416c75097bbf", "cast_id": 40, "profile_path": "/r7I8OnQpK4QvI62cQcWYKMtW4Fe.jpg", "order": 15}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe47649251416c75097afb", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 5.5, "runtime": 102}, "141043": {"poster_path": "/vIa83hicQj1ZFDG2bWfZaoUoa2e.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Four lost souls \u2013 a disgraced TV presenter, a foul-mouthed teen, an isolated single mother and a solipsistic muso - decide to end their lives on the same night, New Year's Eve. When this disillusioned quartet of strangers meet unintentionally at the same suicide hotspot, a London high-rise with the well-earned nickname Topper's Tower, they mutually agree to call off their plans for six weeks, forming an unconventional, dysfunctional family, becoming media sensations as the Topper House Four and searching together for the reasons to keep on living.", "video": false, "id": 141043, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "A Long Way Down", "tagline": "Every friendship has its ups and downs.", "vote_count": 121, "homepage": "http://www.alongwaydownmovie.co.uk", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458413", "adult": false, "backdrop_path": "/nmlqFLYlRt1VgGS0rC5RDOWKe63.jpg", "production_companies": [{"name": "BBC Films", "id": 288}], "release_date": "2014-03-21", "popularity": 0.646569357343551, "original_title": "A Long Way Down", "budget": 0, "cast": [{"name": "Pierce Brosnan", "character": "Martin Sharp", "id": 517, "credit_id": "52fe4aa99251416c750e9b57", "cast_id": 2, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Penny", "id": 10882, "credit_id": "52fe4aa99251416c750e9b5b", "cast_id": 3, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Aaron Paul", "character": "J.J.", "id": 84497, "credit_id": "52fe4aa99251416c750e9b5f", "cast_id": 4, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 2}, {"name": "Imogen Poots", "character": "Jess Crichton", "id": 17606, "credit_id": "52fe4aa99251416c750e9b63", "cast_id": 5, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 3}, {"name": "Sam Neill", "character": "Chris", "id": 4783, "credit_id": "52fe4aa99251416c750e9b67", "cast_id": 6, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 4}, {"name": "Toni Collette", "character": "Maureen", "id": 3051, "credit_id": "52fe4aa99251416c750e9b6b", "cast_id": 7, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 5}, {"name": "Tuppence Middleton", "character": "Kathy", "id": 89822, "credit_id": "52fe4aa99251416c750e9b6f", "cast_id": 8, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 6}, {"name": "Joe Cole", "character": "Cas", "id": 1081875, "credit_id": "52fe4aa99251416c750e9b73", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Josef Altin", "character": "Matty", "id": 43554, "credit_id": "53bc1794c3a368663b00243a", "cast_id": 10, "profile_path": "/lnr6IQUAyXP0y1oj7sEZgmNpzpL.jpg", "order": 8}, {"name": "Priyanga Burford", "character": "Reporter", "id": 62968, "credit_id": "53bc17b0c3a368662e0022ea", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Zara White", "character": "Shanay", "id": 1339076, "credit_id": "53bc17bcc3a368663b00243e", "cast_id": 12, "profile_path": null, "order": 10}], "directors": [{"name": "Pascal Chaumeil", "department": "Directing", "job": "Director", "credit_id": "52fe4aa99251416c750e9b53", "profile_path": null, "id": 8392}], "vote_average": 6.4, "runtime": 96}, "8489": {"poster_path": "/gCGoMZXGdU7DY8xgKYle6dJGksT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87713825, "overview": "In 1964, a brash new pro boxer, fresh from his olympic gold medal victory, explodes on to the scene: Cassius Clay. Bold and outspoken, he cuts an entirely new image for African American's in sport with his proud public self confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.", "video": false, "id": 8489, "genres": [{"id": 18, "name": "Drama"}], "title": "Ali", "tagline": "Float like a butterfly and sting like a bee.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0248667", "adult": false, "backdrop_path": "/2IbajWDoPV6cjBjXhMpDvMsG4jZ.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2001-12-11", "popularity": 0.334045238457676, "original_title": "Ali", "budget": 107000000, "cast": [{"name": "Will Smith", "character": "Cassius Clay", "id": 2888, "credit_id": "52fe44adc3a36847f80a3d47", "cast_id": 33, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "Drew 'Bundini' Brown", "id": 134, "credit_id": "52fe44adc3a36847f80a3ca9", "cast_id": 2, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Jon Voight", "character": "Howard Cosell", "id": 10127, "credit_id": "52fe44adc3a36847f80a3cad", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Mario Van Peebles", "character": "Malcolm X", "id": 16214, "credit_id": "52fe44adc3a36847f80a3cb1", "cast_id": 4, "profile_path": "/sJTHYZC15G253Ux6TGEVXzbrahz.jpg", "order": 3}, {"name": "Ron Silver", "character": "Angelo Dundee", "id": 21399, "credit_id": "52fe44adc3a36847f80a3cb5", "cast_id": 5, "profile_path": "/kj5qwf0gprRGXOCHNmqFTbpC97H.jpg", "order": 4}, {"name": "Jeffrey Wright", "character": "Howard Bingham", "id": 2954, "credit_id": "52fe44adc3a36847f80a3cb9", "cast_id": 6, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 5}, {"name": "Mykelti Williamson", "character": "Don King", "id": 34, "credit_id": "52fe44adc3a36847f80a3cbd", "cast_id": 7, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 6}, {"name": "Jada Pinkett Smith", "character": "Sonji", "id": 9575, "credit_id": "52fe44adc3a36847f80a3cc1", "cast_id": 8, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 7}, {"name": "Nona Gaye", "character": "Belinda Ali", "id": 18286, "credit_id": "52fe44adc3a36847f80a3cc5", "cast_id": 9, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 8}, {"name": "Michael Michele", "character": "Veronica Porche", "id": 39977, "credit_id": "52fe44adc3a36847f80a3cc9", "cast_id": 10, "profile_path": "/syVfYJP8eXbTmcnZZArMFCBJecd.jpg", "order": 9}, {"name": "Joe Morton", "character": "Chauncey Eskridge", "id": 3977, "credit_id": "52fe44adc3a36847f80a3ccd", "cast_id": 11, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 10}, {"name": "Paul Rodr\u00edguez", "character": "Dr. Ferdie Pacheco", "id": 55259, "credit_id": "52fe44adc3a36847f80a3cd1", "cast_id": 12, "profile_path": "/lbI7Ot0rg6jhqhDwYpGFGQIA9BC.jpg", "order": 11}, {"name": "Bruce McGill", "character": "Bradley", "id": 14888, "credit_id": "52fe44adc3a36847f80a3cd5", "cast_id": 13, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 12}, {"name": "Barry Shabaka Henley", "character": "Herbert Muhammad", "id": 8689, "credit_id": "52fe44adc3a36847f80a3cd9", "cast_id": 14, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 13}, {"name": "Giancarlo Esposito", "character": "Cassius Clay, Sr.", "id": 4808, "credit_id": "52fe44adc3a36847f80a3cdd", "cast_id": 15, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 14}, {"name": "Ron Madoff", "character": "Cameraman", "id": 1286269, "credit_id": "52fe44adc3a36847f80a3d51", "cast_id": 35, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 15}, {"name": "Deborah Smith Ford", "character": "Dancer", "id": 1426261, "credit_id": "54dc5c339251416191003661", "cast_id": 36, "profile_path": null, "order": 16}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44adc3a36847f80a3ce3", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.9, "runtime": 157}, "9978": {"poster_path": "/zw7zVvRGzPIMMNoRjLfkRTSBxSL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Alex Rider thinks he is a normal school boy, until his uncle is killed. He discovers that his uncle was actually spy on a mission, when he was killed. Alex is recruited by Alan Blunt to continue the mission. He is sent to Cornwall to investigate a new computer system, which Darrius Sayle has created. He plans to give the new computer systems to every school in the country, but Mr. Blunt has other ideas and Alex must find out what it is.", "video": false, "id": 9978, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 10751, "name": "Family"}], "title": "Stormbreaker", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457495", "adult": false, "backdrop_path": "/6wb96E1jDOw6RiOZRnYHWKJIBSZ.jpg", "production_companies": [], "release_date": "2006-07-21", "popularity": 0.660236956400635, "original_title": "Stormbreaker", "budget": 0, "cast": [{"name": "Sarah Bolger", "character": "Sabina Pleasure", "id": 33397, "credit_id": "52fe4556c3a36847f80c8819", "cast_id": 23, "profile_path": "/qDpy6RQYxk42R4ZrIFK3eq13bC2.jpg", "order": 0}, {"name": "Robbie Coltrane", "character": "Prime Minister", "id": 1923, "credit_id": "52fe4556c3a36847f80c881d", "cast_id": 24, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 1}, {"name": "Stephen Fry", "character": "Smithers", "id": 11275, "credit_id": "52fe4556c3a36847f80c8821", "cast_id": 25, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 2}, {"name": "Damian Lewis", "character": "Yassen Gregorovich", "id": 20186, "credit_id": "52fe4556c3a36847f80c8825", "cast_id": 26, "profile_path": "/3cQpH6BvgK8C1TmcVYC9BPaICUB.jpg", "order": 3}, {"name": "Ewan McGregor", "character": "Ian Rider", "id": 3061, "credit_id": "52fe4556c3a36847f80c8829", "cast_id": 27, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 4}, {"name": "Bill Nighy", "character": "Alan Blunt", "id": 2440, "credit_id": "52fe4556c3a36847f80c882d", "cast_id": 28, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 5}, {"name": "Sophie Okonedo", "character": "Mrs. Jones", "id": 2598, "credit_id": "52fe4556c3a36847f80c8831", "cast_id": 29, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 6}, {"name": "Missi Pyle", "character": "Nadia Vole", "id": 1294, "credit_id": "52fe4556c3a36847f80c8835", "cast_id": 30, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 7}, {"name": "Mickey Rourke", "character": "Darrius Sayle", "id": 2295, "credit_id": "52fe4556c3a36847f80c8839", "cast_id": 31, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 8}, {"name": "Andy Serkis", "character": "Mr. Grin", "id": 1333, "credit_id": "52fe4556c3a36847f80c883d", "cast_id": 32, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 9}, {"name": "Alicia Silverstone", "character": "Jack Starbright", "id": 5588, "credit_id": "52fe4556c3a36847f80c8841", "cast_id": 33, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 10}, {"name": "Alex Pettyfer", "character": "Alex Rider", "id": 61363, "credit_id": "52fe4556c3a36847f80c8845", "cast_id": 34, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 11}, {"name": "Jimmy Carr", "character": "John Crawford", "id": 59077, "credit_id": "52fe4556c3a36847f80c8849", "cast_id": 35, "profile_path": "/6CAJbCwTBCaTGlvDzA8lo7nExGP.jpg", "order": 12}, {"name": "Ashley Walters", "character": "Wolf", "id": 61364, "credit_id": "52fe4556c3a36847f80c884d", "cast_id": 36, "profile_path": "/d2RSHNIL3TsdkNzjPtMDiLSdYEc.jpg", "order": 13}, {"name": "Richard Huw", "character": "Teacher", "id": 61366, "credit_id": "52fe4556c3a36847f80c8851", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Richard James", "character": "Vicar", "id": 61367, "credit_id": "52fe4556c3a36847f80c8855", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Alex Barrett", "character": "Gary", "id": 61365, "credit_id": "52fe4556c3a36847f80c8859", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Julian Bucknall", "character": "MI6 Man", "id": 61368, "credit_id": "52fe4556c3a36847f80c885d", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Morgan Walters", "character": "Harry", "id": 61370, "credit_id": "52fe4556c3a36847f80c8861", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Martin Herdman", "character": "Slater", "id": 61369, "credit_id": "52fe4556c3a36847f80c8865", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Geoffrey Sax", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a36847f80c87cd", "profile_path": "/jGOfYpxhMotpDiWfFDox02MH7hc.jpg", "id": 61357}], "vote_average": 4.5, "runtime": 93}, "1788": {"poster_path": "/3ohQOMqmSipX7bCKGkVcB7jpVXU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80035402, "overview": "Classic tale of teen rebellion and repression features a delightful combination of dance choreography and realistic and touching performances. When teenager Ren and his family move from big-city Chicago to a small town in the West, he's in for a real case of culture shock.", "video": false, "id": 1788, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Footloose", "tagline": "The music is on his side.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087277", "adult": false, "backdrop_path": "/ptEAh4Ok6PnXDkcX2kAue5A2sIG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "IndieProd Company Productions", "id": 959}], "release_date": "1984-02-17", "popularity": 0.73555214957277, "original_title": "Footloose", "budget": 8200000, "cast": [{"name": "Kevin Bacon", "character": "Ren McCormack", "id": 4724, "credit_id": "52fe4315c3a36847f8038fc3", "cast_id": 1, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "John Lithgow", "character": "Reverend Shaw Moore", "id": 12074, "credit_id": "52fe4315c3a36847f8038fc7", "cast_id": 2, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 1}, {"name": "Dianne Wiest", "character": "Vi Moore", "id": 1902, "credit_id": "52fe4315c3a36847f8038fd1", "cast_id": 4, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 2}, {"name": "Chris Penn", "character": "Willard Hewitt", "id": 2969, "credit_id": "52fe4315c3a36847f8038fd5", "cast_id": 5, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 3}, {"name": "Lori Singer", "character": "Ariel Moore", "id": 26456, "credit_id": "52fe4315c3a36847f8038fd9", "cast_id": 6, "profile_path": "/lWPT9LMHYOCsw14jCOvm2u0N8qi.jpg", "order": 4}, {"name": "Sarah Jessica Parker", "character": "Rusty", "id": 520, "credit_id": "52fe4315c3a36847f8038fdd", "cast_id": 7, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 5}], "directors": [{"name": "Herbert Ross", "department": "Directing", "job": "Director", "credit_id": "52fe4315c3a36847f8038fcd", "profile_path": "/7KUacSL1gmx9UkOsqutjeBVJCQ6.jpg", "id": 18378}], "vote_average": 5.7, "runtime": 107}, "9982": {"poster_path": "/iLMALbInUmbNn1tHmxJEWm5MyjP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 314432665, "overview": "When a tiny acorn bonks Chicken Little on the head, he causes widespread panic and gets on the bad side of the entire town. But when he's hit on the head by a real piece of sky, it's up to Chicken Little and his friends to save the world.", "video": false, "id": 9982, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Chicken Little", "tagline": "When it comes to saving the world, it helps to be a little chicken.", "vote_count": 229, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371606", "adult": false, "backdrop_path": "/cAVfRc269eWJA7BCNGfGeJ8R1ou.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2005-11-04", "popularity": 1.80397038326908, "original_title": "Chicken Little", "budget": 150000000, "cast": [{"name": "Zach Braff", "character": "Chicken Little (voice)", "id": 5367, "credit_id": "52fe4556c3a36847f80c8a65", "cast_id": 19, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 0}, {"name": "Garry Marshall", "character": "Buck Cluck (voice)", "id": 1201, "credit_id": "52fe4556c3a36847f80c8a69", "cast_id": 20, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 1}, {"name": "Don Knotts", "character": "Mayor Turkey Lurkey (voice)", "id": 27726, "credit_id": "52fe4556c3a36847f80c8a6d", "cast_id": 21, "profile_path": "/qMqpOuJj69ozHCViUZSiFvgggva.jpg", "order": 2}, {"name": "Patrick Stewart", "character": "Mr. Woolensworth (voice)", "id": 2387, "credit_id": "52fe4556c3a36847f80c8a83", "cast_id": 25, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 3}, {"name": "Amy Sedaris", "character": "Foxy Loxy (voice)", "id": 12110, "credit_id": "52fe4556c3a36847f80c8a87", "cast_id": 26, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 4}, {"name": "Steve Zahn", "character": "Runt of the Litter (voice)", "id": 18324, "credit_id": "52fe4556c3a36847f80c8a8b", "cast_id": 27, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 5}, {"name": "Joan Cusack", "character": "Abby Mallard (voice)", "id": 3234, "credit_id": "52fe4556c3a36847f80c8a8f", "cast_id": 28, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 6}, {"name": "Wallace Shawn", "character": "Principal Fetchit (voice)", "id": 12900, "credit_id": "52fe4556c3a36847f80c8a93", "cast_id": 29, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 7}, {"name": "Harry Shearer", "character": "Dog Announcer (voice)", "id": 6008, "credit_id": "52fe4556c3a36847f80c8a97", "cast_id": 30, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 8}, {"name": "Fred Willard", "character": "Melvin - Alien Dad (voice)", "id": 20753, "credit_id": "52fe4556c3a36847f80c8a9b", "cast_id": 31, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 9}, {"name": "Catherine O'Hara", "character": "Tina - Alien Mom (voice)", "id": 11514, "credit_id": "52fe4556c3a36847f80c8a9f", "cast_id": 32, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 10}, {"name": "Patrick Warburton", "character": "Alien Cop (voice)", "id": 9657, "credit_id": "52fe4556c3a36847f80c8aa3", "cast_id": 33, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 11}, {"name": "Adam West", "character": "Ace - Hollywood Chicken Little (voice)", "id": 26847, "credit_id": "52fe4556c3a36847f80c8aa7", "cast_id": 34, "profile_path": "/8pvRGXFF7lsIZrDS2yaV2dZaG72.jpg", "order": 12}, {"name": "Dan Molina", "character": "Fish Out of Water (voice)", "id": 40347, "credit_id": "52fe4556c3a36847f80c8aab", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Joe Whyte", "character": "Rodriguez / Acorn Mascot / Umpire (voice)", "id": 61425, "credit_id": "52fe4556c3a36847f80c8aaf", "cast_id": 36, "profile_path": "/nBWyiV2dbhMAebwXagfNWej5on4.jpg", "order": 14}, {"name": "Mark Walton", "character": "Goosey Loosey (voice)", "id": 61423, "credit_id": "52fe4556c3a36847f80c8ab7", "cast_id": 39, "profile_path": "/6TUKAdE6vBqbl0OreI6JYcuhXUK.jpg", "order": 15}, {"name": "Sean Elmore", "character": "Kirby - Alien Kid (voice)", "id": 61426, "credit_id": "52fe4556c3a36847f80c8ab3", "cast_id": 38, "profile_path": "/mPkW1m7uyNQukxAOvioy2t4FIEo.jpg", "order": 17}, {"name": "Matthew Josten", "character": "Kirby - Alien Kid (voice)", "id": 61428, "credit_id": "52fe4556c3a36847f80c8abb", "cast_id": 40, "profile_path": "/9o38BI6eKx5LGqR3jzqZj2i1sM8.jpg", "order": 18}, {"name": "Evan Dunn", "character": "Kirby - Alien Kid (voice)", "id": 61427, "credit_id": "52fe4556c3a36847f80c8abf", "cast_id": 41, "profile_path": "/ypI0AWv1quPmQC8epht6WvBcEvb.jpg", "order": 19}, {"name": "Mark Dindal", "character": "Morkubine Porcupine / Coach (voice)", "id": 61411, "credit_id": "52fe4556c3a36847f80c8ac3", "cast_id": 43, "profile_path": "/8wetJbZVXQrdfU4KaQBEvTSNkRA.jpg", "order": 20}, {"name": "Kelly Hoover", "character": "Mama Runt (voice)", "id": 1077829, "credit_id": "550e7415c3a3683f0a001a75", "cast_id": 55, "profile_path": null, "order": 21}, {"name": "Will Finn", "character": "Hollywood Fish (voice)", "id": 70287, "credit_id": "550e80eac3a3681db2008929", "cast_id": 56, "profile_path": null, "order": 22}, {"name": "Dara McGarry", "character": "Hollywood Abby (voice)", "id": 1077828, "credit_id": "550e8126c3a3681db200892e", "cast_id": 57, "profile_path": null, "order": 23}, {"name": "Mark Kennedy", "character": "Hollywood Runt (voice)", "id": 61414, "credit_id": "550e819fc3a3683eb8001ccb", "cast_id": 58, "profile_path": null, "order": 24}, {"name": "Brad Abrell", "character": "(voice)", "id": 1443795, "credit_id": "550e81bbc3a3681db2008946", "cast_id": 59, "profile_path": null, "order": 25}, {"name": "Tom Amundsen", "character": "(voice)", "id": 169417, "credit_id": "550e820cc3a3683f39001e6d", "cast_id": 60, "profile_path": null, "order": 26}, {"name": "Steve Bencich", "character": "(voice)", "id": 52694, "credit_id": "550e823a9251410701001eb8", "cast_id": 61, "profile_path": null, "order": 27}, {"name": "Greg Berg", "character": "(voice)", "id": 94038, "credit_id": "550e8282925141793a002d39", "cast_id": 62, "profile_path": "/3TwBirdnh0AmKRSMhdWzzgZ0zTH.jpg", "order": 28}, {"name": "Julianne Buescher", "character": "(voice)", "id": 135818, "credit_id": "550e82be925141065c001e60", "cast_id": 63, "profile_path": null, "order": 29}, {"name": "David Cowgill", "character": "(voice)", "id": 60232, "credit_id": "550e82fa925141065c001e72", "cast_id": 64, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 30}, {"name": "Terri Douglas", "character": "(voice)", "id": 186605, "credit_id": "550e833bc3a3683f39001e8e", "cast_id": 65, "profile_path": "/lECiABogAKm5Zl8Je6niNAoqz5N.jpg", "order": 31}, {"name": "Chris Edgerly", "character": "(voice)", "id": 591764, "credit_id": "550e837c9251410701001efa", "cast_id": 66, "profile_path": null, "order": 32}, {"name": "Amanda Fein", "character": "(voice)", "id": 1351208, "credit_id": "550e83bcc3a3683e7f001e50", "cast_id": 67, "profile_path": null, "order": 33}, {"name": "Caitlin Fein", "character": "(voice)", "id": 1443796, "credit_id": "550e83f79251410701001f13", "cast_id": 68, "profile_path": null, "order": 34}, {"name": "Pat Fraley", "character": "(voice) (as Patrick Fraley)", "id": 34737, "credit_id": "550e8436c3a3683f39001eaa", "cast_id": 69, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 35}, {"name": "Eddie Frierson", "character": "(voice)", "id": 146186, "credit_id": "550e849ec3a3683f39001eb8", "cast_id": 70, "profile_path": "/8VjU4NVGuTiUhzxQZVsULnRdNWp.jpg", "order": 36}, {"name": "Jackie Gonneau", "character": "(voice)", "id": 950773, "credit_id": "550e84d3c3a3683dd6001c64", "cast_id": 71, "profile_path": null, "order": 37}, {"name": "Archie Hahn", "character": "(voice)", "id": 93670, "credit_id": "550e8521c3a3683dd6001c73", "cast_id": 72, "profile_path": null, "order": 38}, {"name": "Jason Harris", "character": "(voice)", "id": 187636, "credit_id": "550e8639c3a3683f39001ef7", "cast_id": 73, "profile_path": null, "order": 39}, {"name": "Brittney Lee Harvey", "character": "(voice)", "id": 1443797, "credit_id": "550e865e92514146a00093f3", "cast_id": 74, "profile_path": null, "order": 40}, {"name": "Brian Herskowitz", "character": "(voice)", "id": 1218957, "credit_id": "550e86e0c3a36848860098a6", "cast_id": 75, "profile_path": null, "order": 41}, {"name": "Mandy Kaplan", "character": "(voice) (as Amanda Kaplan)", "id": 1443798, "credit_id": "550e873bc3a3683eb8001dcf", "cast_id": 76, "profile_path": null, "order": 42}, {"name": "Nathan Kress", "character": "(voice)", "id": 212913, "credit_id": "550e8774925141065c001f36", "cast_id": 77, "profile_path": "/4B9z58nrAaNXJi4uVkvWsztK7LF.jpg", "order": 43}, {"name": "Anne Lockhart", "character": "(voice)", "id": 41227, "credit_id": "550e87c6925141065c001f4a", "cast_id": 78, "profile_path": "/c2gcaCg9q9uBEyieeaxSWWlrhN1.jpg", "order": 44}, {"name": "Connor Matheus", "character": "(voice)", "id": 1213527, "credit_id": "550e881c9251414699009339", "cast_id": 79, "profile_path": null, "order": 45}, {"name": "Mona Marshall", "character": "(voice)", "id": 111466, "credit_id": "550e885dc3a3683eb8001e50", "cast_id": 80, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 46}, {"name": "Scott Menville", "character": "(voice)", "id": 113916, "credit_id": "550e88b69251410701002002", "cast_id": 81, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 47}, {"name": "Rene Mujica", "character": "(voice)", "id": 1443801, "credit_id": "550e88dcc3a3683f0a001e4b", "cast_id": 82, "profile_path": null, "order": 48}, {"name": "Jonathan Nichols", "character": "(voice)", "id": 1443802, "credit_id": "550e88fec3a3684886009949", "cast_id": 83, "profile_path": null, "order": 49}, {"name": "Paul Pape", "character": "(voice)", "id": 174563, "credit_id": "550e8937c3a3683eb8001e85", "cast_id": 84, "profile_path": null, "order": 50}, {"name": "Aaron Spann", "character": "(voice)", "id": 91785, "credit_id": "550e896fc3a3681db2008aca", "cast_id": 85, "profile_path": "/40aZRhkPjKsdJ2cBlzMTSe6K30y.jpg", "order": 51}, {"name": "Pepper Sweeney", "character": "(voice)", "id": 131365, "credit_id": "550e89b0c3a3683f0a001e88", "cast_id": 86, "profile_path": null, "order": 52}, {"name": "David Carmon", "character": "Runt - Dancer (uncredited)", "id": 1443806, "credit_id": "550e89d692514146a00094e4", "cast_id": 87, "profile_path": null, "order": 53}, {"name": "Scott Conrad", "character": "(uncredited)", "id": 1443807, "credit_id": "550e8a17925141793a002ee6", "cast_id": 88, "profile_path": null, "order": 54}, {"name": "Nancy Gassner-Clayton", "character": "Choir (uncredited)", "id": 1443808, "credit_id": "550e8a3992514146990093a6", "cast_id": 89, "profile_path": null, "order": 55}, {"name": "Ivan 'Flipz' Velez", "character": "Chicken Little (dance) (uncredited)", "id": 1046144, "credit_id": "550e8a6392514146a0009503", "cast_id": 90, "profile_path": "/adXcwdqNqC1gmYYxLda9ZIUjBmU.jpg", "order": 56}], "directors": [{"name": "Mark Dindal", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a36847f80c8a43", "profile_path": "/8wetJbZVXQrdfU4KaQBEvTSNkRA.jpg", "id": 61411}], "vote_average": 5.4, "runtime": 81}, "9986": {"poster_path": "/zmfPv26TJrMeE9ngSEpBG44uePa.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144, "overview": "Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.", "video": false, "id": 9986, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Charlotte's Web", "tagline": "Something unexpected, unbelievable, unforgettable.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0413895", "adult": false, "backdrop_path": "/vj3lwd1TSMY0y7TQbLBH9IF8Jtm.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Kerner Entertainment Company", "id": 7311}], "release_date": "2006-12-15", "popularity": 0.515046233171919, "original_title": "Charlotte's Web", "budget": 85000000, "cast": [{"name": "Julia Roberts", "character": "Charlotte the Spider (voice)", "id": 1204, "credit_id": "52fe4557c3a36847f80c8d13", "cast_id": 21, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Templeton the Rat (voice)", "id": 884, "credit_id": "52fe4557c3a36847f80c8d1d", "cast_id": 23, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "John Cleese", "character": "Samuel the Sheep (voice)", "id": 8930, "credit_id": "52fe4557c3a36847f80c8d27", "cast_id": 25, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 2}, {"name": "Oprah Winfrey", "character": "Gussy the Goose (voice)", "id": 13309, "credit_id": "52fe4557c3a36847f80c8d2b", "cast_id": 26, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 3}, {"name": "Cedric the Entertainer", "character": "Golly the Goose (voice)", "id": 5726, "credit_id": "52fe4557c3a36847f80c8d2f", "cast_id": 27, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 4}, {"name": "Reba McEntire", "character": "Betsy the Cow (voice)", "id": 21986, "credit_id": "52fe4557c3a36847f80c8d37", "cast_id": 29, "profile_path": "/rLjdJUI41eqWeDzjN0B8fUkLc6y.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Bitsy the Cow (voice)", "id": 8534, "credit_id": "52fe4557c3a36847f80c8d33", "cast_id": 28, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "Robert Redford", "character": "Ike the Horse (voice)", "id": 4135, "credit_id": "52fe4557c3a36847f80c8d3b", "cast_id": 30, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 7}, {"name": "Thomas Haden Church", "character": "Brooks the Crow (voice)", "id": 19159, "credit_id": "52fe4557c3a36847f80c8d3f", "cast_id": 31, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 8}, {"name": "Andr\u00e9 Benjamin", "character": "Elwyn the Crow (voice)", "id": 37934, "credit_id": "52fe4557c3a36847f80c8d43", "cast_id": 32, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 9}, {"name": "Dominic Scott Kay", "character": "Wilbur (voice)", "id": 61259, "credit_id": "52fe4557c3a36847f80c8d47", "cast_id": 33, "profile_path": "/hH2RPSXqJU9h8YJlnMLWh9q7Vsk.jpg", "order": 10}, {"name": "Sam Shepard", "character": "Narrator (voice)", "id": 9880, "credit_id": "52fe4557c3a36847f80c8d4b", "cast_id": 34, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 11}, {"name": "Abraham Benrubi", "character": "Uncle the Pig (voice)", "id": 21132, "credit_id": "52fe4557c3a36847f80c8d4f", "cast_id": 35, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 12}, {"name": "Dakota Fanning", "character": "Fern", "id": 501, "credit_id": "52fe4557c3a36847f80c8d53", "cast_id": 36, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 13}, {"name": "Kevin Anderson", "character": "Mr. Arable", "id": 51805, "credit_id": "52fe4557c3a36847f80c8d57", "cast_id": 37, "profile_path": "/roCItER7LbrJJvAV1Fku3jG9g8k.jpg", "order": 14}, {"name": "Essie Davis", "character": "Mrs. Arable", "id": 33449, "credit_id": "52fe4557c3a36847f80c8d5b", "cast_id": 38, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 15}, {"name": "Siobhan Fallon", "character": "Mrs. Zuckerman", "id": 6751, "credit_id": "52fe4557c3a36847f80c8d5f", "cast_id": 39, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 16}, {"name": "Louis Corbett", "character": "Avery", "id": 61487, "credit_id": "52fe4557c3a36847f80c8d63", "cast_id": 40, "profile_path": "/nQ9jciRkjzuWvbdyP36hfeWxsOj.jpg", "order": 17}, {"name": "Robyn Arthur", "character": "Teacher", "id": 61489, "credit_id": "52fe4557c3a36847f80c8d67", "cast_id": 41, "profile_path": "/zdXUNkOPJDjHrljAdouKCVIgzqT.jpg", "order": 18}, {"name": "Julian O'Donnell", "character": "Henry Fussy", "id": 61488, "credit_id": "52fe4557c3a36847f80c8d6b", "cast_id": 42, "profile_path": "/5cY0rWCA47b5t09LxgaSI7cRr4n.jpg", "order": 19}, {"name": "Gary Basaraba", "character": "Homer Zuckerman", "id": 96228, "credit_id": "52fe4557c3a36847f80c8d6f", "cast_id": 43, "profile_path": "/mF3JQEIAUDIfNfrNdiAuh2ohFow.jpg", "order": 20}, {"name": "Nate Mooney", "character": "Lurvy", "id": 74538, "credit_id": "52fe4557c3a36847f80c8d73", "cast_id": 44, "profile_path": "/g9GCabrHoMfNP7NfhS8Q0VkVJ2E.jpg", "order": 21}, {"name": "Nicholas Bell", "character": "Minister", "id": 15340, "credit_id": "52fe4557c3a36847f80c8d77", "cast_id": 45, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 22}, {"name": "Beau Bridges", "character": "Dr. Dorian", "id": 2222, "credit_id": "52fe4557c3a36847f80c8d7b", "cast_id": 46, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 23}, {"name": "Teague Rook", "character": "Well Dressed Man", "id": 217039, "credit_id": "52fe4557c3a36847f80c8d7f", "cast_id": 47, "profile_path": null, "order": 24}, {"name": "Julia Zemiro", "character": "Bystander", "id": 88419, "credit_id": "52fe4557c3a36847f80c8d83", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Denise Kirby", "character": "New Teacher", "id": 1204069, "credit_id": "52fe4557c3a36847f80c8d87", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "Robert Plazek", "character": "Ball Thrower", "id": 1204070, "credit_id": "52fe4557c3a36847f80c8d8b", "cast_id": 50, "profile_path": null, "order": 27}, {"name": "Joseph Lotesto", "character": "Young Boy", "id": 1204071, "credit_id": "52fe4557c3a36847f80c8d8f", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "Michael Roland", "character": "Mayor", "id": 1204072, "credit_id": "52fe4557c3a36847f80c8d93", "cast_id": 52, "profile_path": null, "order": 29}, {"name": "Don Bridges", "character": "Announcer", "id": 80270, "credit_id": "52fe4558c3a36847f80c8d97", "cast_id": 53, "profile_path": null, "order": 30}, {"name": "Ian Watkin", "character": "Fair Official", "id": 11335, "credit_id": "52fe4558c3a36847f80c8d9b", "cast_id": 54, "profile_path": null, "order": 31}, {"name": "Joel McCrary", "character": "Sheep Group (voice)", "id": 12223, "credit_id": "52fe4558c3a36847f80c8d9f", "cast_id": 55, "profile_path": null, "order": 32}, {"name": "Brian Stepanek", "character": "Sheep Group (voice)", "id": 146391, "credit_id": "52fe4558c3a36847f80c8da3", "cast_id": 56, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 33}, {"name": "Fred Tatasciore", "character": "Sheep Group (voice)", "id": 60279, "credit_id": "52fe4558c3a36847f80c8da7", "cast_id": 57, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 34}, {"name": "Bradley White", "character": "Sheep Group (voice)", "id": 168377, "credit_id": "52fe4558c3a36847f80c8dab", "cast_id": 58, "profile_path": null, "order": 35}, {"name": "Maia Kirkpatrick", "character": "Joy the Baby Spider (voice)", "id": 1204074, "credit_id": "52fe4558c3a36847f80c8daf", "cast_id": 59, "profile_path": null, "order": 36}, {"name": "Jennessa Rose", "character": "Aranea the Baby Spider (voice)", "id": 1075686, "credit_id": "52fe4558c3a36847f80c8db3", "cast_id": 60, "profile_path": "/31ihfzqUWhoSKorzOm7nukXr2Im.jpg", "order": 37}, {"name": "Briana Hodge", "character": "Nellie the Baby Spider (voice)", "id": 944685, "credit_id": "52fe4558c3a36847f80c8db7", "cast_id": 61, "profile_path": "/rL4Qvef0HViBbY2WVOWA12xDO5w.jpg", "order": 38}, {"name": "Dale Azzopardi", "character": "Photographer (uncredited)", "id": 1204075, "credit_id": "52fe4558c3a36847f80c8dbb", "cast_id": 62, "profile_path": null, "order": 39}, {"name": "Geoff Burgess", "character": "Photographer (uncredited)", "id": 1204076, "credit_id": "52fe4558c3a36847f80c8dbf", "cast_id": 63, "profile_path": null, "order": 40}, {"name": "Ella Scott Lynch", "character": "Girl at Fair (uncredited)", "id": 1194111, "credit_id": "52fe4558c3a36847f80c8dc3", "cast_id": 64, "profile_path": null, "order": 41}, {"name": "Greg Marian", "character": "Farmer (uncredited)", "id": 1204077, "credit_id": "52fe4558c3a36847f80c8dc7", "cast_id": 65, "profile_path": null, "order": 42}, {"name": "Stefano Mazzeo", "character": "Fair Member (uncredited)", "id": 1204078, "credit_id": "52fe4558c3a36847f80c8dcb", "cast_id": 66, "profile_path": null, "order": 43}, {"name": "Elizabeth Saunders", "character": "Girl at Fair (uncredited)", "id": 1008932, "credit_id": "52fe4558c3a36847f80c8dcf", "cast_id": 67, "profile_path": null, "order": 44}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe4557c3a36847f80c8ca3", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 5.7, "runtime": 97}, "9989": {"poster_path": "/uikaCsqNWBD7vwc3RSWZpxejm3c.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17833000, "overview": "A computer programmer's dream job at a hot Portland-based firm turns nightmarish when he discovers his boss has a secret and ruthless means of dispatching anti-trust problems.", "video": false, "id": 9989, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "AntiTrust", "tagline": "Truth can be dangerous...Trust can be deadly.", "vote_count": 50, "homepage": "http://www.antitrustthemovie.com/", "belongs_to_collection": {"backdrop_path": "/yxkdsov2rx6ysCPPUEi4xIrJC3Z.jpg", "poster_path": "/1tIKPSCcICJ1wPbJESqDomqaG9f.jpg", "id": 248131, "name": "Hackers - The Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0218817", "adult": false, "backdrop_path": "/cKXClElZ72rYHxm64lAFVdjiNAi.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 45725}, {"name": "Industry Entertainment", "id": 376}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Hyde Park Films", "id": 1172}], "release_date": "2001-01-12", "popularity": 0.261343767504343, "original_title": "AntiTrust", "budget": 30000000, "cast": [{"name": "Ryan Phillippe", "character": "Milo Hoffman", "id": 11864, "credit_id": "52fe4558c3a36847f80c90d1", "cast_id": 18, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 0}, {"name": "Rachael Leigh Cook", "character": "Lisa Calighan", "id": 38581, "credit_id": "52fe4558c3a36847f80c90d5", "cast_id": 19, "profile_path": "/xPcfVq2UMihLNmPvYhFXV0IXiwF.jpg", "order": 1}, {"name": "Tim Robbins", "character": "Gary Winston", "id": 504, "credit_id": "52fe4558c3a36847f80c90d9", "cast_id": 20, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 2}, {"name": "Claire Forlani", "character": "Alice Poulson", "id": 4174, "credit_id": "52fe4558c3a36847f80c90dd", "cast_id": 21, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 3}, {"name": "Richard Roundtree", "character": "Lyle Barton", "id": 6487, "credit_id": "52fe4558c3a36847f80c90ed", "cast_id": 24, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 4}, {"name": "Tygh Runyan", "character": "Larry Banks", "id": 55591, "credit_id": "52fe4558c3a36847f80c90f1", "cast_id": 25, "profile_path": "/vHlo0lwXAHGzCBEL6mrum39exdO.jpg", "order": 5}, {"name": "Ned Bellamy", "character": "Phil Grimes", "id": 2141, "credit_id": "52fe4558c3a36847f80c90f5", "cast_id": 26, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 6}, {"name": "Tyler Labine", "character": "Redmond Schmeichel", "id": 51383, "credit_id": "52fe4558c3a36847f80c90f9", "cast_id": 27, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 7}, {"name": "Yee Jee Tso", "character": "Teddy Chin", "id": 61541, "credit_id": "52fe4558c3a36847f80c90fd", "cast_id": 28, "profile_path": "/9oVMHObp5JoOxnycf8DzWm8JuK0.jpg", "order": 8}, {"name": "Nate Dushku", "character": "Brian Bissel", "id": 61542, "credit_id": "52fe4558c3a36847f80c9105", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Douglas McFerran", "character": "Bob Shrot", "id": 61540, "credit_id": "52fe4558c3a36847f80c9101", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Scott Bellis", "character": "Randy Sheringham", "id": 61543, "credit_id": "52fe4558c3a36847f80c9109", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Zahf Paroo", "character": "Desi", "id": 58902, "credit_id": "52fe4558c3a36847f80c910d", "cast_id": 32, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 12}, {"name": "Jonathon Young", "character": "Stinky", "id": 11832, "credit_id": "52fe4558c3a36847f80c9111", "cast_id": 33, "profile_path": "/6sO42m3qDKy0xCBlwo6A3Czpoil.jpg", "order": 13}, {"name": "Nathaniel DeVeaux", "character": "Lawyer", "id": 20221, "credit_id": "52fe4558c3a36847f80c9115", "cast_id": 34, "profile_path": "/oXBArAwYlxrX4w1hnh0HsdAFEcQ.jpg", "order": 14}, {"name": "Rick Worthy", "character": "Shrot's Assistant", "id": 61545, "credit_id": "52fe4558c3a36847f80c9119", "cast_id": 35, "profile_path": "/vaKDRpwvKj24AHNKmZX22v4OLwK.jpg", "order": 15}, {"name": "Ian Robison", "character": "Lawyer", "id": 61546, "credit_id": "52fe4558c3a36847f80c911d", "cast_id": 36, "profile_path": "/5eyTDnE31SxTGCFUsT55eRd3ZLw.jpg", "order": 16}, {"name": "David Lovgren", "character": "Danny Solskj\u00e6r", "id": 61544, "credit_id": "52fe4559c3a36847f80c9121", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Ed Beechner", "character": "Ken Cosgrove", "id": 61548, "credit_id": "52fe4559c3a36847f80c9125", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Linda Ko", "character": "Gary's Secretary", "id": 61547, "credit_id": "52fe4559c3a36847f80c9129", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Peter Howitt", "department": "Directing", "job": "Director", "credit_id": "52fe4558c3a36847f80c9079", "profile_path": "/cwgHjbx5LitEns32kmdmj1diREi.jpg", "id": 7791}], "vote_average": 5.5, "runtime": 108}, "9992": {"poster_path": "/n12XtNXZOYWr5DfYVvlC6jX42sJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 107944236, "overview": "Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur's grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.", "video": false, "id": 9992, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Arthur and the Invisibles", "tagline": "Adventure awaits in your own backyard.", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/e8Q363orc1wi02TSSoDDlil2qXh.jpg", "poster_path": "/lpKNbnUpP0h0cnVwC1LaE9YJB3U.jpg", "id": 85817, "name": "Arthur and the Invisibles Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0344854", "adult": false, "backdrop_path": "/3zpcmA6Lcv2K7kxGV5hQfegQd7Y.jpg", "production_companies": [{"name": "Avalanche Productions", "id": 2525}, {"name": "Canal+", "id": 5358}, {"name": "Sofica Europacorp", "id": 854}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2006-12-13", "popularity": 1.01461720149726, "original_title": "Arthur et les Minimoys", "budget": 86000000, "cast": [{"name": "Freddie Highmore", "character": "Arthur", "id": 1281, "credit_id": "52fe4559c3a36847f80c93bb", "cast_id": 20, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Mia Farrow", "character": "Granny", "id": 12021, "credit_id": "52fe4559c3a36847f80c93bf", "cast_id": 21, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 1}, {"name": "Ron Crawford", "character": "Archibald", "id": 61605, "credit_id": "52fe4559c3a36847f80c93c7", "cast_id": 24, "profile_path": "/3m1r7e8FmV4dk1X3xkXMOwJ6Bwf.jpg", "order": 2}, {"name": "Penny Balfour", "character": "Arthur's Mother", "id": 61604, "credit_id": "52fe4559c3a36847f80c93c3", "cast_id": 23, "profile_path": "/xKiucD8rGijAScFfFU5ryDT73TW.jpg", "order": 3}, {"name": "Saul Jephcott", "character": "Police Officer #1", "id": 61608, "credit_id": "52fe4559c3a36847f80c93cf", "cast_id": 26, "profile_path": "/drauKxTm1lhN1QZsu0AHOC1rWMf.jpg", "order": 4}, {"name": "Adam LeFevre", "character": "Davido", "id": 61607, "credit_id": "52fe4559c3a36847f80c93cb", "cast_id": 25, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 5}, {"name": "Lee Delong", "character": "Saleslady", "id": 61610, "credit_id": "52fe4559c3a36847f80c93db", "cast_id": 29, "profile_path": "/oGGmSHo458dsfoVtAUDEYvfDjiQ.jpg", "order": 6}, {"name": "Doug Rand", "character": "Arthur's Father", "id": 61609, "credit_id": "52fe4559c3a36847f80c93d7", "cast_id": 28, "profile_path": "/iWXA5jVkULBIPOn5znW9e4K0Ifr.jpg", "order": 7}, {"name": "Jean Bejote Njamba", "character": "Massai Chief", "id": 61606, "credit_id": "52fe4559c3a36847f80c93d3", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Christian Erickson", "character": "Antique Dealer", "id": 45849, "credit_id": "52fe4559c3a36847f80c93df", "cast_id": 30, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 9}, {"name": "Robert William Bradford", "character": "Baliff", "id": 61613, "credit_id": "52fe4559c3a36847f80c93e3", "cast_id": 31, "profile_path": "/hSGDxT2fHVl2E6gkNXM41SqX78p.jpg", "order": 10}, {"name": "Oxmo Puccino", "character": "Mover #2", "id": 61612, "credit_id": "52fe4559c3a36847f80c93eb", "cast_id": 33, "profile_path": "/gj6FnVxUnDlQFvOdUswocwFEdrO.jpg", "order": 11}, {"name": "Eric Balliet", "character": "Mover #1", "id": 61611, "credit_id": "52fe4559c3a36847f80c93e7", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Bienvenue Kindoki", "character": "Matassalai #1", "id": 61615, "credit_id": "52fe4559c3a36847f80c93ef", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Jerry Di Giacomo", "character": "Repairman", "id": 61614, "credit_id": "52fe4559c3a36847f80c93f3", "cast_id": 35, "profile_path": "/fyOXOzeJEIJgOVasc4iamlThEJb.jpg", "order": 14}, {"name": "Val\u00e9ry Koko Kingue", "character": "Matassalai #2", "id": 61616, "credit_id": "52fe4559c3a36847f80c93f7", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Aba Ko\u00efta", "character": "Matassalai #3", "id": 61622, "credit_id": "52fe4559c3a36847f80c93fb", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Mathar Licka Gueye", "character": "Matassalai #5", "id": 61618, "credit_id": "52fe4559c3a36847f80c93ff", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Tonio Descanvelle", "character": "Police Officer #2", "id": 61623, "credit_id": "52fe4559c3a36847f80c9403", "cast_id": 39, "profile_path": "/6osT2lZvotuNnk9VE9vXUhBPREE.jpg", "order": 18}, {"name": "Vincent Mendy", "character": "Matassalai #4", "id": 61621, "credit_id": "52fe4559c3a36847f80c9407", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Madonna", "character": "Princess Selenia", "id": 3125, "credit_id": "52fe4559c3a36847f80c940b", "cast_id": 41, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 20}, {"name": "Snoop Dogg", "character": "Max", "id": 19767, "credit_id": "52fe4559c3a36847f80c940f", "cast_id": 42, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 21}, {"name": "Barbara Kelsch", "character": "Arthur", "id": 54921, "credit_id": "52fe4559c3a36847f80c941f", "cast_id": 45, "profile_path": "/qbORf8qOsAQwKuZ9ldijKslDVuC.jpg", "order": 22}, {"name": "David Bowie", "character": "Maltazard", "id": 7487, "credit_id": "52fe4559c3a36847f80c9465", "cast_id": 57, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 23}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4559c3a36847f80c9381", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 5.8, "runtime": 94}, "9994": {"poster_path": "/7p2ekrptHyB2qPLwVkq7vvZL7mz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82424789, "overview": "In Victorian London, England, a little mouse girl's toymaker father is abducted by a peg-legged bat. She enlists the aid of Basil of Baker Street, the rodent world's answer to Sherlock Holmes. The case expands as Basil uncovers the crime's link to a plot against the Crown itself.", "video": false, "id": 9994, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Great Mouse Detective", "tagline": "London's crime-fighting ace on his most baffling case!", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091149", "adult": false, "backdrop_path": "/A0enTetqBfL3UqLPyg0MONLQDXN.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners", "id": 514}], "release_date": "1986-12-03", "popularity": 0.854561272574081, "original_title": "The Great Mouse Detective", "budget": 14000000, "cast": [{"name": "Barrie Ingham", "character": "Basil of Baker Street", "id": 39949, "credit_id": "52fe455ac3a36847f80c95b5", "cast_id": 1, "profile_path": "/c3c48JtBtAvC4vfdz3R83WqBKAF.jpg", "order": 0}, {"name": "Val Bettin", "character": "Dr. David Q. Dawson", "id": 61674, "credit_id": "52fe455ac3a36847f80c95b9", "cast_id": 2, "profile_path": "/dwdUalc3PdmC1zoAX7qHl6FMvrq.jpg", "order": 1}, {"name": "Vincent Price", "character": "Professor Ratigan", "id": 1905, "credit_id": "52fe455ac3a36847f80c95bd", "cast_id": 3, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 2}, {"name": "Susanne Pollatschek", "character": "Olivia Flaversham", "id": 61675, "credit_id": "52fe455ac3a36847f80c95c1", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Candy Candido", "character": "Fidget", "id": 61676, "credit_id": "52fe455ac3a36847f80c95c5", "cast_id": 5, "profile_path": "/5tjykiBmPIrnpPfHALfOqgEY7Nh.jpg", "order": 4}, {"name": "Diana Chesney", "character": "Mrs. Judson", "id": 164770, "credit_id": "52fe455ac3a36847f80c9647", "cast_id": 27, "profile_path": "/vSHHPtMj0HkU8c5icxnPqHmyzul.jpg", "order": 5}, {"name": "Eve Brenner", "character": "The Mouse Queen", "id": 157166, "credit_id": "52fe455ac3a36847f80c964b", "cast_id": 28, "profile_path": "/dfsXlBP7AssJVUb3Qks7KZMeofT.jpg", "order": 6}, {"name": "Alan Young", "character": "Hiram Flaversham", "id": 21874, "credit_id": "52fe455ac3a36847f80c964f", "cast_id": 29, "profile_path": "/w2BM8FJ051MgtNAEO5TLxuQqRhe.jpg", "order": 7}, {"name": "Basil Rathbone", "character": "Sherlock Holmes", "id": 8727, "credit_id": "52fe455ac3a36847f80c9653", "cast_id": 30, "profile_path": "/grjsDNr7wt6E57Bf2GDg0yaBsRo.jpg", "order": 8}, {"name": "Ellen Fitzhugh", "character": "Bar Maid", "id": 950289, "credit_id": "52fe455ac3a36847f80c965f", "cast_id": 33, "profile_path": "/28Zu6CRqy0OH18uYIyHG65gGhUj.jpg", "order": 11}, {"name": "Walker Edmiston", "character": "Citizen", "id": 1212769, "credit_id": "52fe455ac3a36847f80c9663", "cast_id": 34, "profile_path": "/rUkMMGWCAsdG6KqNnAPmCEQ903t.jpg", "order": 12}, {"name": "Wayne Allwine", "character": "Thug Guard", "id": 78076, "credit_id": "52fe455ac3a36847f80c9667", "cast_id": 35, "profile_path": "/9Xpy0TLwW1L3pCMMULOIZqgFIzt.jpg", "order": 13}, {"name": "Tony Anselmo", "character": "Thug Guard", "id": 34478, "credit_id": "52fe455ac3a36847f80c966b", "cast_id": 36, "profile_path": "/rDlzKZBdszBsNU8ubiMbcMi5Vzb.jpg", "order": 14}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95cb", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "Burny Mattinson", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95d1", "profile_path": null, "id": 61677}, {"name": "David Michener", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95d7", "profile_path": null, "id": 61678}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe455ac3a36847f80c95dd", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.7, "runtime": 74}, "1807": {"poster_path": "/AgSWtbb8zMtTyjHFP12QeRbQGD5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10012022, "overview": "Several ordinary high school students go through their daily routine as two others prepare for something more malevolent. The film chronicles the events surrounding a school shooting.", "video": false, "id": 1807, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Elephant", "tagline": "An ordinary high school day. Except that it's not.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0363589", "adult": false, "backdrop_path": "/wcvg2Zj3Y4NmP6ZTFsLeSWXWKjF.jpg", "production_companies": [{"name": "HBO Films", "id": 7429}, {"name": "Fearmakers Studios", "id": 7430}], "release_date": "2003-05-18", "popularity": 0.378190087239167, "original_title": "Elephant", "budget": 3000000, "cast": [{"name": "Alex Frost", "character": "Alex", "id": 19195, "credit_id": "52fe4316c3a36847f80393e3", "cast_id": 4, "profile_path": "/ip1ABnG49oeE5bOS78bAu8whdeI.jpg", "order": 0}, {"name": "Eric Deulen", "character": "Eric", "id": 19196, "credit_id": "52fe4316c3a36847f80393e7", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "John Robinson", "character": "John McFarland", "id": 19197, "credit_id": "52fe4316c3a36847f80393eb", "cast_id": 6, "profile_path": "/qg4baoVSBmL688HIv2Q7e6DTMT5.jpg", "order": 2}, {"name": "Elias McConnell", "character": "Elias", "id": 19198, "credit_id": "52fe4316c3a36847f80393ef", "cast_id": 7, "profile_path": "/8IEAprAbOp03JnkojHAeyzLo9RB.jpg", "order": 3}, {"name": "Jordan Taylor", "character": "Jordan", "id": 19199, "credit_id": "52fe4316c3a36847f80393f3", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Carrie Finklea", "character": "Carrie", "id": 19200, "credit_id": "52fe4316c3a36847f80393f7", "cast_id": 9, "profile_path": "/tGB2Oq4w7ynSEKmSLFxn5qeejYH.jpg", "order": 5}, {"name": "Nicole George", "character": "Nicole", "id": 19201, "credit_id": "52fe4316c3a36847f80393fb", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Brittany Mountain", "character": "Brittany", "id": 19202, "credit_id": "52fe4316c3a36847f80393ff", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Alicia Miles", "character": "Acadia", "id": 19203, "credit_id": "52fe4316c3a36847f8039403", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Kristen Hicks", "character": "Michelle", "id": 19204, "credit_id": "52fe4316c3a36847f8039407", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Bennie Dixon", "character": "Benny", "id": 19205, "credit_id": "52fe4316c3a36847f803940b", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Nathan Tyson", "character": "Nathan", "id": 19206, "credit_id": "52fe4316c3a36847f803940f", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Timothy Bottoms", "character": "Mr. McFarland", "id": 19207, "credit_id": "52fe4316c3a36847f8039413", "cast_id": 16, "profile_path": "/pTw7LySB4jJv9PfJfx3Hjj9GKQw.jpg", "order": 12}, {"name": "Matt Malloy", "character": "Mr. Luce", "id": 19208, "credit_id": "52fe4316c3a36847f8039417", "cast_id": 17, "profile_path": "/ian5yLWKo8Ttz8kEZIv9GLNCz2c.jpg", "order": 13}, {"name": "Chantelle Chriestenson Nelson", "character": "Noelle", "id": 19209, "credit_id": "52fe4316c3a36847f803941b", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Larry Laverty", "character": "Teacher #3", "id": 106142, "credit_id": "52fe4316c3a36847f803941f", "cast_id": 19, "profile_path": "/8pAAoZiYdHJzdJrd4zovpR2jzcB.jpg", "order": 15}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4316c3a36847f80393d3", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 7.0, "runtime": 81}, "10003": {"poster_path": "/uA24D8JCg21RDINMZ3vFaQYdIzW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118, "overview": "Ivan Tretiak, Russian Mafia boss who wants to create an oil crisis in Moscow and seize power as a result sends Simon Templar, great international criminal, to England to get a secret formula for cold fusion from U.S. scientist Emma Russell. Templar falls in love with Emma and they try to outwit Tretiak and his guerrillas, hiding from them in Moscow", "video": false, "id": 10003, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Saint", "tagline": "Never reveal your name. Never turn your back. Never surrender your heart.", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/3dliYexStkZy6NOAH533Y8oduOj.jpg", "id": 86224, "name": "The Saint Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0120053", "adult": false, "backdrop_path": "/lJnl8xIhplfzUBtlJLsWBwvXVBj.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rysher Entertainment", "id": 11661}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "1997-04-03", "popularity": 0.320777185629905, "original_title": "The Saint", "budget": 68, "cast": [{"name": "Val Kilmer", "character": "Simon Templar", "id": 5576, "credit_id": "52fe43039251416c750001c7", "cast_id": 13, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 0}, {"name": "Elisabeth Shue", "character": "Emma Russell", "id": 1951, "credit_id": "52fe43039251416c750001cb", "cast_id": 14, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 1}, {"name": "Rade \u0160erbed\u017eija", "character": "Ivan Tretiak", "id": 1118, "credit_id": "52fe43039251416c750001cf", "cast_id": 15, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 2}, {"name": "Valeri Nikolayev", "character": "Ilya Tretiak", "id": 8698, "credit_id": "52fe43039251416c750001d3", "cast_id": 16, "profile_path": "/tGqjecLgqTQk96mhLMYEnkgA0eI.jpg", "order": 3}, {"name": "Henry Goodman", "character": "Dr. Lev Botvin", "id": 7030, "credit_id": "52fe43039251416c750001d7", "cast_id": 17, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 4}, {"name": "Alun Armstrong", "character": "Inspector Teal", "id": 2629, "credit_id": "52fe43039251416c750001db", "cast_id": 18, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 5}, {"name": "Michael Byrne", "character": "Vereshagin, Tretiak's Aide", "id": 742, "credit_id": "52fe43039251416c750001df", "cast_id": 19, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 6}, {"name": "Yevgeni Lazarev", "character": "President Karpov", "id": 19301, "credit_id": "52fe43049251416c75000259", "cast_id": 47, "profile_path": "/hLtyGhAuEeJc8qPjQDZswIMpYDd.jpg", "order": 7}, {"name": "Irina Apeksimova", "character": "Frankie (as Irina Apeximova)", "id": 146399, "credit_id": "52fe43039251416c750001e3", "cast_id": 21, "profile_path": "/cgqrLaXTGXIGT2Akcz41VxmCnlg.jpg", "order": 8}, {"name": "Lev Prygunov", "character": "General Sklarov (as Lev Prigunov)", "id": 90356, "credit_id": "52fe43039251416c750001e7", "cast_id": 22, "profile_path": "/aSOqfO6ccYHOA9ecPeZwPfmN8Nf.jpg", "order": 9}, {"name": "Charlotte Cornwell", "character": "Inspector Rabineau", "id": 87416, "credit_id": "52fe43039251416c750001eb", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Emily Mortimer", "character": "Woman on Plane", "id": 1246, "credit_id": "52fe43039251416c750001ef", "cast_id": 24, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 11}, {"name": "Lucija \u0160erbed\u017eija", "character": "Russian Prostitute", "id": 955006, "credit_id": "52fe43039251416c750001f3", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Velibor Topi\u0107", "character": "Skinhead", "id": 34515, "credit_id": "52fe43039251416c750001f7", "cast_id": 26, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 13}, {"name": "Tommy Flanagan", "character": "Scarface", "id": 2478, "credit_id": "52fe43039251416c750001fb", "cast_id": 27, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 14}, {"name": "Egor Pazenko", "character": "Scratchface", "id": 1079977, "credit_id": "52fe43039251416c750001ff", "cast_id": 28, "profile_path": "/8Pq0QwZDa65ApzJjuveq8RdXSA6.jpg", "order": 15}, {"name": "Adam Smith", "character": "Young Simon Templar", "id": 207004, "credit_id": "52fe43039251416c75000203", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Pat Laffan", "character": "Catholic Priest", "id": 188468, "credit_id": "52fe43039251416c75000207", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Verity-Jane Dearsley", "character": "Agnes", "id": 1079978, "credit_id": "52fe43049251416c7500020b", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Michael Marquez", "character": "Boy in Orphanage", "id": 1079979, "credit_id": "52fe43049251416c7500020f", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Lorelei King", "character": "TV Reporter", "id": 7032, "credit_id": "52fe43049251416c75000213", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Alla Kazanskaya", "character": "Old Russian Lady", "id": 238702, "credit_id": "52fe43049251416c75000217", "cast_id": 34, "profile_path": "/nR8dQUmfKqffLWcgCeemRcLVWZM.jpg", "order": 21}, {"name": "Ronnie Letham", "character": "Old Russian Man", "id": 1079980, "credit_id": "52fe43049251416c7500021b", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Tusse Silberg", "character": "Prostitute's Mother", "id": 70883, "credit_id": "52fe43049251416c7500021f", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Peter Guinness", "character": "Frankie's Curator", "id": 27172, "credit_id": "52fe43049251416c75000223", "cast_id": 37, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 24}, {"name": "Stefan Gryff", "character": "President's Aide", "id": 79954, "credit_id": "52fe43049251416c75000227", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Malcolm Tierney", "character": "Russian Doctor", "id": 166258, "credit_id": "52fe43049251416c7500022b", "cast_id": 39, "profile_path": "/fe7Cz6sxTLt9qSQANRpAAaYcPlV.jpg", "order": 26}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe43039251416c75000187", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.1, "runtime": 116}, "26388": {"poster_path": "/mvDfLRgsyFtonhKfOFIfl4c9Jwl.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19152480, "overview": "Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it's a race against time to escape this claustrophobic death trap.", "video": false, "id": 26388, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Buried", "tagline": "170,000 sq miles of desert. 90 minutes of oxygen. No way out.", "vote_count": 196, "homepage": "http://www.experienceburied.com/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1462758", "adult": false, "backdrop_path": "/2sqJMg3CAZlVq7VQ2pTftjqecqi.jpg", "production_companies": [{"name": "Versus Entertainment", "id": 11564}, {"name": "The Safran Company", "id": 11565}, {"name": "Dark Trick Films", "id": 11566}, {"name": "Studio 37", "id": 2577}], "release_date": "2010-09-24", "popularity": 0.895437249721434, "original_title": "Buried", "budget": 1987650, "cast": [{"name": "Ryan Reynolds", "character": "Paul Conroy", "id": 10859, "credit_id": "52fe44ffc3a368484e042c5b", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Jos\u00e9 Luis Garc\u00eda P\u00e9rez", "character": "Jabir (voice)", "id": 43323, "credit_id": "52fe44ffc3a368484e042ce7", "cast_id": 31, "profile_path": "/4FQuXgtCvEkulGGcUQklKSBBGdD.jpg", "order": 1}, {"name": "Robert Paterson", "character": "Dan Brenner (voice)", "id": 559068, "credit_id": "52fe44ffc3a368484e042c6f", "cast_id": 7, "profile_path": "/mFKeiFHG5eD7QbnRSOGHalRCtXj.jpg", "order": 2}, {"name": "Stephen Tobolowsky", "character": "Alan Davenport (voice)", "id": 537, "credit_id": "52fe44ffc3a368484e042cbb", "cast_id": 20, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 3}, {"name": "Samantha Mathis", "character": "Linda Conroy (voice)", "id": 20767, "credit_id": "52fe44ffc3a368484e042c6b", "cast_id": 5, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 4}, {"name": "Ivana Mi\u00f1o", "character": "Pamela Lutti (voice)", "id": 1040499, "credit_id": "52fe44ffc3a368484e042cbf", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "Warner Loughlin", "character": "Maryanne Conroy / Donna Mitchell / Rebecca Browning (voice)", "id": 194641, "credit_id": "52fe44ffc3a368484e042cc3", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Erik Palladino", "character": "Special Agent Harris (voice)", "id": 43902, "credit_id": "52fe44ffc3a368484e042cc7", "cast_id": 23, "profile_path": "/8pa03e4XTU8UIOWABONZJZuokjg.jpg", "order": 7}, {"name": "Kali Rocha", "character": "911 Operator (voice)", "id": 149665, "credit_id": "52fe44ffc3a368484e042ccb", "cast_id": 24, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 8}, {"name": "Chris William Martin", "character": "State Department Rep. (voice)", "id": 152820, "credit_id": "52fe44ffc3a368484e042ccf", "cast_id": 25, "profile_path": "/tNgMeVpoM4RhEvxjaYtaxLvi1YJ.jpg", "order": 9}, {"name": "Cade Dundish", "character": "Shane Conroy (voice)", "id": 1062208, "credit_id": "52fe44ffc3a368484e042cd3", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Mary Birdsong", "character": "411 Female Operator (voice)", "id": 63232, "credit_id": "52fe44ffc3a368484e042cd7", "cast_id": 27, "profile_path": "/oBXCCLgt3q2KDVQ7Ge6BWANJHZz.jpg", "order": 11}, {"name": "Kirk Baily", "character": "411 Male Operator (voice)", "id": 1120589, "credit_id": "52fe44ffc3a368484e042cdb", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Anne Lockhart", "character": "CRT Operator (voice)", "id": 41227, "credit_id": "52fe44ffc3a368484e042cdf", "cast_id": 29, "profile_path": "/c2gcaCg9q9uBEyieeaxSWWlrhN1.jpg", "order": 13}, {"name": "Robert Clotworthy", "character": "CRT Spokesman (voice)", "id": 35172, "credit_id": "52fe44ffc3a368484e042ce3", "cast_id": 30, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 14}, {"name": "Michalla Petersen", "character": "Nursing Home Nurse (voice)", "id": 1208113, "credit_id": "52fe44ffc3a368484e042ceb", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Juan Hidalgo", "character": "Kidnapper (voice)", "id": 1208127, "credit_id": "52fe44ffc3a368484e042cef", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Abdelilah Ben Massou", "character": "Kidnapper (voice)", "id": 1208128, "credit_id": "52fe44ffc3a368484e042cf3", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Joe Guarneri", "character": "Additional Voice (voice)", "id": 1208129, "credit_id": "52fe44ffc3a368484e042cf7", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Heath Centazzo", "character": "Additional Voice (voice)", "id": 1145676, "credit_id": "52fe44ffc3a368484e042cfb", "cast_id": 36, "profile_path": null, "order": 19}], "directors": [{"name": "Rodrigo Cort\u00e9s", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a368484e042c61", "profile_path": "/iGeAsnt5Ni96dbQD7FnClc4UQDB.jpg", "id": 95320}], "vote_average": 6.4, "runtime": 94}, "1813": {"poster_path": "/eSivb4EyOAyEum70mOSHtAWiUe3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60984028, "overview": "A hotshot lawyer gets more than he bargained for when he learns his new boss is Lucifer himself.", "video": false, "id": 1813, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Devil's Advocate", "tagline": "Evil has its winning ways.", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118971", "adult": false, "backdrop_path": "/rSwZzP1YxxvGLPxpEewiw6ddePr.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Kopelson Entertainment", "id": 824}], "release_date": "1997-10-17", "popularity": 0.824095056544824, "original_title": "The Devil's Advocate", "budget": 57000000, "cast": [{"name": "Keanu Reeves", "character": "Kevin Lomax", "id": 6384, "credit_id": "52fe4317c3a36847f80396f3", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Al Pacino", "character": "John Milton", "id": 1158, "credit_id": "52fe4317c3a36847f80396f7", "cast_id": 2, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Mary Ann Lomax", "id": 6885, "credit_id": "52fe4317c3a36847f80396fb", "cast_id": 3, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Jeffrey Jones", "character": "Eddie Barzoon", "id": 4004, "credit_id": "52fe4317c3a36847f80396ff", "cast_id": 4, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 3}, {"name": "Judith Ivey", "character": "Alice Lomax", "id": 19239, "credit_id": "52fe4317c3a36847f8039703", "cast_id": 5, "profile_path": "/AbliRxEkGlefUossjUxvzHF2s3b.jpg", "order": 4}, {"name": "Connie Nielsen", "character": "Christabella Andreoli", "id": 935, "credit_id": "52fe4317c3a36847f803971f", "cast_id": 10, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Alexander Cullen", "id": 8977, "credit_id": "52fe4317c3a36847f8039723", "cast_id": 11, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Tamara Tunie", "character": "Mrs. Jackie Heath", "id": 42694, "credit_id": "52fe4317c3a36847f8039727", "cast_id": 12, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 7}, {"name": "Ruben Santiago-Hudson", "character": "Leamon Heath", "id": 31839, "credit_id": "52fe4317c3a36847f803972b", "cast_id": 13, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 8}, {"name": "Debra Monk", "character": "Pam Garrety", "id": 10386, "credit_id": "52fe4317c3a36847f803972f", "cast_id": 14, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 9}, {"name": "Vyto Ruginis", "character": "Mitch Weaver", "id": 61216, "credit_id": "52fe4317c3a36847f8039733", "cast_id": 15, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 10}, {"name": "Laura Harrington", "character": "Melissa Black", "id": 17769, "credit_id": "52fe4317c3a36847f8039737", "cast_id": 16, "profile_path": "/4Eo23MPjQl4hdNBFv4NOHF9WgnS.jpg", "order": 11}, {"name": "George Wyner", "character": "Meisel", "id": 14669, "credit_id": "52fe4317c3a36847f803973b", "cast_id": 18, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 12}, {"name": "Chris Bauer", "character": "Lloyd Gettys", "id": 4445, "credit_id": "52fe4317c3a36847f803973f", "cast_id": 19, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 13}, {"name": "Connie Embesi", "character": "Mrs. Bernice Gettys", "id": 1089390, "credit_id": "52fe4317c3a36847f8039743", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Jonathan Cavallary", "character": "Gettys' Son", "id": 1089391, "credit_id": "52fe4317c3a36847f8039747", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Heather Matarazzo", "character": "Barbara", "id": 33656, "credit_id": "52fe4317c3a36847f803974b", "cast_id": 22, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 16}, {"name": "Murphy Guyer", "character": "Barbara's Father", "id": 155547, "credit_id": "52fe4317c3a36847f803974f", "cast_id": 23, "profile_path": "/vOuj13cuNCpKTewqN0pBG36Il4l.jpg", "order": 17}, {"name": "Leo Burmester", "character": "Florida Prosecutor", "id": 30151, "credit_id": "52fe4317c3a36847f8039753", "cast_id": 24, "profile_path": "/8V3Ev6pKP8VBRIjDONJW5cgi5Zc.jpg", "order": 18}, {"name": "Bill Moor", "character": "Garson Deeds (Florida Judge)", "id": 260967, "credit_id": "52fe4317c3a36847f8039757", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Neal Jones", "character": "Larry (Florida Reporter)", "id": 4199, "credit_id": "52fe4317c3a36847f803975b", "cast_id": 26, "profile_path": "/c86o0FZyiksJW3p90wvhtmMVykL.jpg", "order": 20}, {"name": "Eddie Aldridge", "character": "Florida Bailiff", "id": 1089392, "credit_id": "52fe4317c3a36847f803975f", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Mark Deakins", "character": "Florida Lawyer", "id": 582202, "credit_id": "52fe4317c3a36847f8039763", "cast_id": 28, "profile_path": "/lZ5hygLyyk5xvZ448kpDN4yhWzZ.jpg", "order": 22}, {"name": "Rony Clanton", "character": "Junkie in Harlem", "id": 90444, "credit_id": "52fe4317c3a36847f8039767", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "George O. Gore II", "character": "Boy in Harlem", "id": 303197, "credit_id": "52fe4317c3a36847f803976b", "cast_id": 30, "profile_path": "/d5O3QoMwl5GcsfekAl3S3fxxamK.jpg", "order": 24}, {"name": "Alan Manson", "character": "Judge Sklar", "id": 79735, "credit_id": "52fe4317c3a36847f803976f", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Brian Poteat", "character": "Pie Face", "id": 1089393, "credit_id": "52fe4317c3a36847f8039773", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Daniel Oreskes", "character": "Arnold (Metro Assistant District Attorney)", "id": 164463, "credit_id": "52fe4317c3a36847f8039777", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Kim Chan", "character": "Chinese Man", "id": 8400, "credit_id": "52fe4317c3a36847f803977b", "cast_id": 34, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 28}, {"name": "Caprice Benedetti", "character": "Menage A Trois Woman", "id": 154698, "credit_id": "52fe4317c3a36847f803977f", "cast_id": 35, "profile_path": "/gvthmNGV5EbvXZoqCbLeEAtUbd7.jpg", "order": 29}, {"name": "Don King", "character": "Himself", "id": 65607, "credit_id": "52fe4317c3a36847f8039783", "cast_id": 36, "profile_path": "/sdkBSSPGMP3rtOUHKRxCIOQWdE3.jpg", "order": 30}, {"name": "Ray Garvey", "character": "Fight Fan", "id": 1089394, "credit_id": "52fe4317c3a36847f8039787", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Rocco Musacchia", "character": "Fight Fan", "id": 984489, "credit_id": "52fe4317c3a36847f803978b", "cast_id": 38, "profile_path": "/yGTl36uiyAZPxvxwXEjN0UNVmDA.jpg", "order": 32}, {"name": "Susan Kellermann", "character": "Joyce Rensaleer", "id": 27264, "credit_id": "52fe4317c3a36847f803978f", "cast_id": 39, "profile_path": "/1WTM0L9rpgv0Urgi7P0IoHaMlsX.jpg", "order": 33}, {"name": "James Saito", "character": "Takaori Osumi", "id": 77155, "credit_id": "52fe4317c3a36847f8039793", "cast_id": 40, "profile_path": "/qwiY0k1tHFSmOPMJiwRL2wSEYK0.jpg", "order": 34}, {"name": "Harsh Nayyar", "character": "Parvathi Resh", "id": 20807, "credit_id": "52fe4317c3a36847f8039797", "cast_id": 41, "profile_path": null, "order": 35}, {"name": "Mohammed Ghaffari", "character": "Bashir Toabal", "id": 233547, "credit_id": "52fe4317c3a36847f803979b", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "Nicki Cochrane", "character": "Multi-Lingual Party Guest", "id": 1089395, "credit_id": "52fe4317c3a36847f803979f", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Fenja Klaus", "character": "Female #1", "id": 1089396, "credit_id": "52fe4317c3a36847f80397a3", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Gino Lucci", "character": "Limo Driver", "id": 164419, "credit_id": "52fe4317c3a36847f80397a7", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Novella Nelson", "character": "Botanica Woman", "id": 55272, "credit_id": "52fe4317c3a36847f80397ab", "cast_id": 46, "profile_path": "/bAx0RY3x9ljh3Fwo8Xy4OlzIkVp.jpg", "order": 40}, {"name": "Vincent Laresca", "character": "Big Guy #1", "id": 1983, "credit_id": "52fe4317c3a36847f80397b7", "cast_id": 50, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 41}, {"name": "Benny Nieves", "character": "Big Guy #2", "id": 155540, "credit_id": "52fe4317c3a36847f80397af", "cast_id": 48, "profile_path": "/aafp0jHi58Bb8rD21In9Jy9YYxB.jpg", "order": 42}, {"name": "Franci Leary", "character": "Babs Coleman", "id": 1089398, "credit_id": "52fe4317c3a36847f80397b3", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Pamela Gray", "character": "Mrs. Diana Barzoon", "id": 1207046, "credit_id": "52fe4317c3a36847f80397bb", "cast_id": 51, "profile_path": null, "order": 44}], "directors": [{"name": "Taylor Hackford", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039709", "profile_path": "/heZfdghufTV3t3ayrWvIuiP1jvb.jpg", "id": 18596}], "vote_average": 6.9, "runtime": 144}, "26390": {"poster_path": "/aHqBZEgPhX6uwJ6e6s53fuJqWmQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29536299, "overview": "Brooklyn's Finest takes place within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects in the NYPD's sixty-fifth precinct. Three policemen struggle with the sometimes fine line between right and wrong.", "video": false, "id": 26390, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Brooklyn's Finest", "tagline": "This is War. This is Brooklyn.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1210042", "adult": false, "backdrop_path": "/iNuvbrHGNtrUwlm48u4KnQhhMKp.jpg", "production_companies": [{"name": "Thunder Road Productions", "id": 4654}, {"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Films", "id": 925}, {"name": "Langley Productions", "id": 2435}, {"name": "Fuqua Films", "id": 8151}], "release_date": "2009-01-16", "popularity": 0.333096592080786, "original_title": "Brooklyn's Finest", "budget": 17000000, "cast": [{"name": "Richard Gere", "character": "Eddie Dugan", "id": 1205, "credit_id": "52fe44ffc3a368484e042dab", "cast_id": 3, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Don Cheadle", "character": "Tango", "id": 1896, "credit_id": "52fe44ffc3a368484e042daf", "cast_id": 4, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 1}, {"name": "Ethan Hawke", "character": "Sal", "id": 569, "credit_id": "52fe44ffc3a368484e042db3", "cast_id": 5, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 2}, {"name": "Wesley Snipes", "character": "Caz", "id": 10814, "credit_id": "52fe44ffc3a368484e042db7", "cast_id": 6, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 3}, {"name": "Vincent D'Onofrio", "character": "Bobby 'Carlo' Powers", "id": 7132, "credit_id": "52fe44ffc3a368484e042dbb", "cast_id": 7, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 4}, {"name": "Ellen Barkin", "character": "Agent Smith", "id": 6913, "credit_id": "52fe44ffc3a368484e042dbf", "cast_id": 8, "profile_path": "/rjo0S9uJ9pIEZenvYVCEdqcR8Qu.jpg", "order": 5}, {"name": "Michael Kenneth Williams", "character": "Red", "id": 39390, "credit_id": "52fe44ffc3a368484e042dc3", "cast_id": 9, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 6}, {"name": "Shannon Kane", "character": "Chantel", "id": 145145, "credit_id": "52fe44ffc3a368484e042dc7", "cast_id": 10, "profile_path": "/6wrQoQvxDy8lTTfRveLPVBoYTJW.jpg", "order": 7}, {"name": "Br\u00edan F. O'Byrne", "character": "Ronny Rosario", "id": 31713, "credit_id": "52fe4500c3a368484e042e6b", "cast_id": 43, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 8}, {"name": "Will Patton", "character": "Lt. Bill Hobarts", "id": 883, "credit_id": "52fe44ffc3a368484e042e43", "cast_id": 32, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 9}, {"name": "Michael Kenneth Williams", "character": "Red", "id": 39390, "credit_id": "52fe4500c3a368484e042e6f", "cast_id": 44, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 10}, {"name": "Lili Taylor", "character": "Angela", "id": 3127, "credit_id": "52fe44ffc3a368484e042e47", "cast_id": 34, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 11}, {"name": "Wass Stevens", "character": "Det. Patrick Leary", "id": 19490, "credit_id": "52fe44ffc3a368484e042e4b", "cast_id": 35, "profile_path": "/p9nrtklmbqBlpbnHMru246LXW4J.jpg", "order": 12}, {"name": "Armando Riesco", "character": "Det. George Montress", "id": 19497, "credit_id": "52fe44ffc3a368484e042e4f", "cast_id": 36, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 13}, {"name": "Wade Allain-Marcus", "character": "C-Rayz", "id": 60488, "credit_id": "52fe44ffc3a368484e042e53", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Logan Marshall-Green", "character": "Melvin Panton", "id": 130253, "credit_id": "52fe44ffc3a368484e042e57", "cast_id": 38, "profile_path": "/bLVRAvM9WnTVQ42Nm4jVR0IpOIk.jpg", "order": 15}, {"name": "Jesse Williams", "character": "E. Quinlan", "id": 210695, "credit_id": "52fe44ffc3a368484e042e5b", "cast_id": 39, "profile_path": "/9nOsvWaXwKzHVeSbb7N6YzhAzty.jpg", "order": 16}, {"name": "Hassan Johnson", "character": "Beamer", "id": 91508, "credit_id": "52fe44ffc3a368484e042e5f", "cast_id": 40, "profile_path": "/1HqCWMiN5KkSMmkWCTmfzix4Gyx.jpg", "order": 17}, {"name": "Jas Anderson", "character": "K. Rock", "id": 1117437, "credit_id": "52fe44ffc3a368484e042e63", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "John D'Leo", "character": "Vinny", "id": 1056523, "credit_id": "52fe4500c3a368484e042e67", "cast_id": 42, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 19}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a368484e042da1", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.2, "runtime": 133}, "1817": {"poster_path": "/xIaUpPok8WFnr79EAvgtGsIaJzV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97837138, "overview": "A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding.", "video": false, "id": 1817, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Phone Booth", "tagline": "No options. No lies. No fear. No deals. Just keep talking.", "vote_count": 238, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0183649", "adult": false, "backdrop_path": "/14Jb0vOZKxbkyx5h0cQ8uj0sD3V.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2002-09-09", "popularity": 0.703670455262877, "original_title": "Phone Booth", "budget": 13000000, "cast": [{"name": "Colin Farrell", "character": "Stu Shepard", "id": 72466, "credit_id": "52fe4317c3a36847f803997b", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Kiefer Sutherland", "character": "Der Anrufer", "id": 2628, "credit_id": "52fe4317c3a36847f803997f", "cast_id": 2, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Captain Ed Ramey", "id": 2178, "credit_id": "52fe4317c3a36847f8039983", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Radha Mitchell", "character": "Kelly Shephard", "id": 8329, "credit_id": "52fe4317c3a36847f8039987", "cast_id": 4, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 3}, {"name": "Katie Holmes", "character": "Pamela McFadden", "id": 3897, "credit_id": "52fe4317c3a36847f803998b", "cast_id": 5, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 4}, {"name": "Paula Jai Parker", "character": "Felicia", "id": 45245, "credit_id": "52fe4317c3a36847f80399b3", "cast_id": 12, "profile_path": "/hCFVh90DDs7bhv6qEhepXeJvFtY.jpg", "order": 5}, {"name": "Domenick Lombardozzi", "character": "Wyatt", "id": 17941, "credit_id": "52fe4317c3a36847f80399b7", "cast_id": 13, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 6}, {"name": "James MacDonald", "character": "Negotiator", "id": 1188456, "credit_id": "52fe4317c3a36847f80399bb", "cast_id": 14, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 7}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039991", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.4, "runtime": 81}, "10010": {"poster_path": "/msZSTfilEF6hw47HTuf5AeXAO8R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An old female friend of Kenai needs his help on a quest, much to Koda's growing consternation.", "video": false, "id": 10010, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Brother Bear 2", "tagline": "", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8QuwV9WoZTs4Nnz6GMIISP2WblF.jpg", "poster_path": "/eWjO8diAZlCUWT9mXUJeQCVSICg.jpg", "id": 96472, "name": "Brother Bear Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465925", "adult": false, "backdrop_path": "/zhMiJmPuX2o2bbXWWZNUgVbw3OM.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2006-08-28", "popularity": 1.47706395887849, "original_title": "Brother Bear 2", "budget": 0, "cast": [{"name": "Mandy Moore", "character": "Nita", "id": 16855, "credit_id": "52fe43069251416c750008b3", "cast_id": 9, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Jeremy Suarez", "character": "Koda", "id": 61959, "credit_id": "52fe43069251416c750008b7", "cast_id": 10, "profile_path": "/ktydBVBvNUlmfJj56aYwJ0O31JN.jpg", "order": 1}, {"name": "Dave Thomas", "character": "Tuke", "id": 61961, "credit_id": "52fe43069251416c750008bb", "cast_id": 11, "profile_path": "/qWQ330du0Uu1Q8wAq9hMoYmOJ5Q.jpg", "order": 2}, {"name": "Rick Moranis", "character": "Rutt", "id": 8872, "credit_id": "52fe43069251416c750008c5", "cast_id": 14, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 3}, {"name": "Catherine O'Hara", "character": "Kata", "id": 11514, "credit_id": "52fe43069251416c750008c9", "cast_id": 15, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 4}, {"name": "Andrea Martin", "character": "Anda", "id": 8263, "credit_id": "52fe43069251416c750008cd", "cast_id": 16, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 5}, {"name": "Wanda Sykes", "character": "Innoko", "id": 27102, "credit_id": "52fe43069251416c750008d1", "cast_id": 17, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 6}, {"name": "Kathy Najimy", "character": "Aunt Taqqiq", "id": 11074, "credit_id": "52fe43069251416c750008d5", "cast_id": 18, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 7}, {"name": "Wendie Malick", "character": "Aunt Siqiniq", "id": 61980, "credit_id": "52fe43069251416c750008d9", "cast_id": 19, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 8}, {"name": "Jim Cummings", "character": "Bering / Chilkoot", "id": 12077, "credit_id": "52fe43069251416c750008dd", "cast_id": 20, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}, {"name": "Jeff Bennett", "character": "Atka", "id": 34982, "credit_id": "52fe43069251416c750008e1", "cast_id": 21, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 10}, {"name": "Jessie Flower", "character": "Young Nita", "id": 61304, "credit_id": "52fe43069251416c750008e5", "cast_id": 22, "profile_path": "/wjzL0uaBcLSYf9UxIxas6S4N3iU.jpg", "order": 11}, {"name": "Michael Clarke Duncan", "character": "Tug", "id": 61981, "credit_id": "52fe43069251416c750008e9", "cast_id": 23, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 12}, {"name": "Jack Weber", "character": "Young Kenai", "id": 61982, "credit_id": "52fe43069251416c750008ed", "cast_id": 24, "profile_path": "/ihB0zJhasgt0ffa8SZQuPd5afqS.jpg", "order": 13}, {"name": "Jason Marsden", "character": "Additional Voices", "id": 61983, "credit_id": "52fe43069251416c750008f1", "cast_id": 25, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 14}, {"name": "Krista Swan", "character": "Additional Voices", "id": 60740, "credit_id": "52fe43069251416c750008f5", "cast_id": 26, "profile_path": "/68PBwfhz9uhBJJdKqOSH73Gyh47.jpg", "order": 15}, {"name": "Tress MacNeille", "character": "Hoonah", "id": 34983, "credit_id": "52fe43069251416c750008f9", "cast_id": 27, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 16}, {"name": "Benjamin Bryan", "character": "Additional Voices", "id": 61984, "credit_id": "52fe43069251416c750008fd", "cast_id": 28, "profile_path": "/sYPZ6N40zPnJDYy9PxsNfUhJ1TK.jpg", "order": 17}, {"name": "Olivier Baroux", "character": "Muche", "id": 61985, "credit_id": "52fe43069251416c75000901", "cast_id": 29, "profile_path": "/l0FJjUavfybVl1W3ENVWitlyg9V.jpg", "order": 18}, {"name": "Patrick Dempsey", "character": "Kenai", "id": 18352, "credit_id": "52fe43069251416c75000905", "cast_id": 30, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 19}], "directors": [{"name": "Ben Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe43069251416c75000897", "profile_path": null, "id": 61970}], "vote_average": 6.2, "runtime": 75}, "139567": {"poster_path": "/2F0Y4l7uXIGfDMtfuq2k6b2744w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A fireman takes an unexpected course of action when a man whom he's been ordered to testify against, after being held up at a local convenience store, threatens him.", "video": false, "id": 139567, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fire with Fire", "tagline": "Revenge has its own set of rules.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1925431", "adult": false, "backdrop_path": "/cG9WcaappGSq8Yxd90rQ5Gwioyi.jpg", "production_companies": [{"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Industry Entertainment", "id": 376}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Mandalay Vision", "id": 6667}, {"name": "Paradox Entertainment", "id": 6819}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment", "id": 31832}], "release_date": "2012-08-31", "popularity": 0.845092321207316, "original_title": "Fire With Fire", "budget": 20000000, "cast": [{"name": "Bruce Willis", "character": "Mike Cella", "id": 62, "credit_id": "52fe4c67c3a368484e1b68f1", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Jeremy Coleman", "id": 19536, "credit_id": "52fe4c67c3a368484e1b68f5", "cast_id": 2, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Talia Durham", "id": 5916, "credit_id": "52fe4c67c3a368484e1b68f9", "cast_id": 3, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Neil Hagan", "id": 7132, "credit_id": "52fe4c67c3a368484e1b68fd", "cast_id": 4, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "50 Cent", "character": "Emilio", "id": 62644, "credit_id": "52fe4c67c3a368484e1b6901", "cast_id": 5, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 4}, {"name": "Richard Schiff", "character": "Harold Gethers", "id": 31028, "credit_id": "52fe4c67c3a368484e1b6905", "cast_id": 6, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 5}, {"name": "Vinnie Jones", "character": "Boyd", "id": 980, "credit_id": "52fe4c67c3a368484e1b6909", "cast_id": 7, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 6}, {"name": "James Lesure", "character": "Craig", "id": 155743, "credit_id": "52fe4c67c3a368484e1b690d", "cast_id": 8, "profile_path": "/nDpg0Muebx45YUDM7ROywgVVxeZ.jpg", "order": 7}, {"name": "Quinton Jackson", "character": "Wallace", "id": 586935, "credit_id": "52fe4c67c3a368484e1b6911", "cast_id": 9, "profile_path": "/nhzVZm9QBWQ98HPiCV7PvrCoqFR.jpg", "order": 8}, {"name": "Arie Verveen", "character": "Darren", "id": 91612, "credit_id": "52fe4c67c3a368484e1b6915", "cast_id": 10, "profile_path": "/yh3mOsRXENzK3JJljFlSgX7p6QL.jpg", "order": 9}, {"name": "Bonnie Somerville", "character": "Karen Westlake", "id": 66579, "credit_id": "52fe4c67c3a368484e1b6919", "cast_id": 11, "profile_path": "/a1tjNEX8Tm5WupP9vEdRnpW2s45.jpg", "order": 10}, {"name": "Nnamdi Asomugha", "character": "Sherrod", "id": 213058, "credit_id": "52fe4c67c3a368484e1b691d", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Kevin Dunn", "character": "Agent Mullens", "id": 14721, "credit_id": "52fe4c67c3a368484e1b6921", "cast_id": 13, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 12}, {"name": "Danny Epper", "character": "Sean", "id": 574380, "credit_id": "52fe4c67c3a368484e1b6925", "cast_id": 14, "profile_path": "/51tZpRQ7ECagFytqbdrGMcAW7T.jpg", "order": 13}, {"name": "Scott A. Martin", "character": "Kane", "id": 1055739, "credit_id": "550bffd092514146a0003417", "cast_id": 71, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 14}], "directors": [{"name": "David Barrett", "department": "Directing", "job": "Director", "credit_id": "52fe4c67c3a368484e1b6973", "profile_path": "/ghWOXqNnJIYKH1GDkym7YyUx882.jpg", "id": 9556}], "vote_average": 5.9, "runtime": 97}, "10014": {"poster_path": "/seEMZxo6bhHWbWPNcBQfsMAk39F.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29999213, "overview": "A new family moves into the house on Elm Street, and before long, the kids are again having nightmares about deceased child murderer Freddy Krueger. This time, Freddy attempts to possess a teenage boy to cause havoc in the real world, and can only be overcome if the boy's sweetheart can master her fear.", "video": false, "id": 10014, "genres": [{"id": 27, "name": "Horror"}], "title": "A Nightmare on Elm Street Part 2: Freddy's Revenge", "tagline": "Someone is coming back to Elm Street!", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089686", "adult": false, "backdrop_path": "/kErjd7tTO9NROwFcETyyLj4ZOGH.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Smart Egg Pictures", "id": 1531}], "release_date": "1985-11-01", "popularity": 0.750617798878697, "original_title": "A Nightmare on Elm Street Part 2: Freddy's Revenge", "budget": 3000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe43079251416c75000bab", "cast_id": 6, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Mark Patton", "character": "Jesse Walsh", "id": 62018, "credit_id": "52fe43079251416c75000b97", "cast_id": 1, "profile_path": "/dYJlmN0bvk0IRqDE8Nrxa4cam3A.jpg", "order": 1}, {"name": "Kim Myers", "character": "Lisa Webber", "id": 55958, "credit_id": "52fe43079251416c75000b9b", "cast_id": 2, "profile_path": "/y6G5XZg2YknJLZETlnNF196cKlJ.jpg", "order": 2}, {"name": "Robert Rusler", "character": "Ron Grady", "id": 52306, "credit_id": "52fe43079251416c75000b9f", "cast_id": 3, "profile_path": "/4LHRIK6ffdUax43WcSqdIZTMh2b.jpg", "order": 3}, {"name": "Clu Gulager", "character": "Ken Walsh", "id": 62019, "credit_id": "52fe43079251416c75000ba3", "cast_id": 4, "profile_path": "/bjmydNfO5v5LocgBGTmCcBSSe6A.jpg", "order": 4}, {"name": "Hope Lange", "character": "Cheryl Walsh", "id": 3382, "credit_id": "52fe43079251416c75000ba7", "cast_id": 5, "profile_path": "/4gJtYaS4iAPBgTYVNIMlspAzGSA.jpg", "order": 5}, {"name": "Marshall Bell", "character": "Coach Schneider", "id": 3041, "credit_id": "52fe43079251416c75000bf1", "cast_id": 19, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 6}, {"name": "Melinda O. Fee", "character": "Mrs. Webber", "id": 197303, "credit_id": "52fe43079251416c75000bf5", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tom McFadden", "character": "Mr. Webber", "id": 58494, "credit_id": "52fe43079251416c75000bf9", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Sydney Walsh", "character": "Kerry", "id": 156925, "credit_id": "52fe43079251416c75000bfd", "cast_id": 22, "profile_path": "/vHYKW1QgoL0wGP6YktK7jZnq0t.jpg", "order": 9}, {"name": "Edward Blackoff", "character": "Biology Teacher", "id": 52146, "credit_id": "52fe43079251416c75000c01", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Christie Clark", "character": "Angela Walsh", "id": 102716, "credit_id": "52fe43079251416c75000c05", "cast_id": 24, "profile_path": "/eHAaKQ4G0mH5ltUCUtZ5Qvr8HRQ.jpg", "order": 11}, {"name": "Lyman Ward", "character": "Mr. Grady", "id": 90198, "credit_id": "52fe43079251416c75000c09", "cast_id": 25, "profile_path": "/lL1dAVbBcSU4O2wD4XZcsmOCcRZ.jpg", "order": 12}, {"name": "Donna Bruce", "character": "Mrs. Grady", "id": 553731, "credit_id": "52fe43079251416c75000c0d", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Hart Sprager", "character": "Teacher", "id": 158696, "credit_id": "52fe43079251416c75000c11", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Allison Barron", "character": "Girl on Bus", "id": 92841, "credit_id": "52fe43079251416c75000c15", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "JoAnn Willette", "character": "Girl on Bus", "id": 158739, "credit_id": "52fe43089251416c75000c19", "cast_id": 29, "profile_path": "/42lp2GFnIqDeJajHmzXiIWt0MMT.jpg", "order": 16}, {"name": "Steve Eastin", "character": "Policeman", "id": 9276, "credit_id": "52fe43089251416c75000c1d", "cast_id": 30, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 17}, {"name": "Brian Wimmer", "character": "Do-Gooder", "id": 113785, "credit_id": "52fe43089251416c75000c21", "cast_id": 31, "profile_path": "/lQkOZGj8JJAmD9Zvpt3S9roxd3p.jpg", "order": 18}, {"name": "Robert Chaskin", "character": "Bar-B-Que Boy", "id": 553732, "credit_id": "52fe43089251416c75000c25", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Kerry Remsen", "character": "Girlfriend", "id": 101301, "credit_id": "52fe43089251416c75000c29", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Kimberly Lynn", "character": "Patty", "id": 553733, "credit_id": "52fe43089251416c75000c2d", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Steven Smith", "character": "Victim", "id": 160356, "credit_id": "52fe43089251416c75000c31", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Jonathan Hart", "character": "Spike", "id": 553734, "credit_id": "52fe43089251416c75000c35", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Tom Tangen", "character": "Victim (uncredited)", "id": 553735, "credit_id": "52fe43089251416c75000c39", "cast_id": 37, "profile_path": "/3IhcC4FmrgBtcCZpl85amgVaVRy.jpg", "order": 24}], "directors": [{"name": "Jack Sholder", "department": "Directing", "job": "Director", "credit_id": "52fe43079251416c75000bb1", "profile_path": "/9EOF314wM4MrBZE9MV7q0BMgcOy.jpg", "id": 62020}], "vote_average": 5.6, "runtime": 87}, "198277": {"poster_path": "/og7KVMqGTFaCNPmGVetxtR30Q0z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Gretta's celebrity boyfriend breaks up with her after a long-term relationship, leaving the singer to find success on her own. With the help of record producer, Dan and hip-hop celebrity, Trouble Gum, Gretta strives to fulfil her musical ambitions.", "video": false, "id": 198277, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Begin Again", "tagline": "You're only as strong as your next move.", "vote_count": 331, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1980929", "adult": false, "backdrop_path": "/1jJVDNz5gan9WYuspnKAHwks39e.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Sycamore Pictures", "id": 14319}, {"name": "Apatow Productions", "id": 10105}, {"name": "Likely Story", "id": 1785}], "release_date": "2014-06-27", "popularity": 2.41663663090419, "original_title": "Begin Again", "budget": 0, "cast": [{"name": "Mark Ruffalo", "character": "Dan", "id": 103, "credit_id": "52fe4d769251416c91116e79", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Gretta", "id": 116, "credit_id": "52fe4d769251416c91116e75", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Adam Levine", "character": "Dave", "id": 217371, "credit_id": "52fe4d769251416c91116e71", "cast_id": 1, "profile_path": "/oHNBWCQRBlcEHKuRpID9lRQNMej.jpg", "order": 2}, {"name": "Hailee Steinfeld", "character": "Violet", "id": 130640, "credit_id": "52fe4d769251416c91116e81", "cast_id": 5, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 3}, {"name": "Catherine Keener", "character": "Miriam", "id": 2229, "credit_id": "52fe4d769251416c91116e91", "cast_id": 8, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 4}, {"name": "James Corden", "character": "Steve", "id": 55466, "credit_id": "52fe4d769251416c91116e95", "cast_id": 9, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 5}, {"name": "Mos Def", "character": "Saul", "id": 4239, "credit_id": "52fe4d769251416c91116e99", "cast_id": 10, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 6}, {"name": "Aya Cash", "character": "Jenny", "id": 133451, "credit_id": "52fe4d769251416c91116e9d", "cast_id": 11, "profile_path": "/ihZqcurACgV6NDy95pkwQ29OawL.jpg", "order": 8}, {"name": "Maddie Corman", "character": "Phillis", "id": 121757, "credit_id": "52fe4d769251416c91116ea1", "cast_id": 12, "profile_path": "/358wSv3l3FPhNTcpcalQvRVXQB4.jpg", "order": 9}, {"name": "Karen Pittman", "character": "Business Woman", "id": 1398879, "credit_id": "54d4c7b392514173cf0088c3", "cast_id": 22, "profile_path": "/vuorMu0MlWLa3nyH2lI9MjoIDov.jpg", "order": 10}, {"name": "Paul Romero", "character": "Bartender", "id": 172053, "credit_id": "54d4cd69c3a3686ac8012d14", "cast_id": 23, "profile_path": "/cZVudMb95XcHgWjv4bv7fxYAMSA.jpg", "order": 11}, {"name": "Andrew Sellon", "character": "Christian Father", "id": 1423807, "credit_id": "54d4cec9c3a36871c100b090", "cast_id": 24, "profile_path": "/JC1VQmBN1WeelF2EI1cbCMlzTI.jpg", "order": 12}, {"name": "Ed Renninger", "character": "Barman", "id": 1423810, "credit_id": "54d4d000c3a368616e0131f2", "cast_id": 25, "profile_path": "/pHkyuwaSklPrzkAG5amFCdzq9Cp.jpg", "order": 13}, {"name": "Eric Burton", "character": "Singer Songwriter 2", "id": 1423812, "credit_id": "54d4d27b9251413fcd013f65", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Marco Assante", "character": "Marco", "id": 60635, "credit_id": "54d4d3e49251413fc1014255", "cast_id": 27, "profile_path": "/sLCbh6L0V7ybcci2ckyXcyqHnXA.jpg", "order": 15}, {"name": "Mary Catherine Garrison", "character": "Jill", "id": 171795, "credit_id": "54d4d5049251417a0400b101", "cast_id": 28, "profile_path": "/3JHGktZVwV7qwZzliQb0v11xclh.jpg", "order": 16}, {"name": "Jen Jacob", "character": "Dave Fangirl", "id": 1423823, "credit_id": "54d4d5f9c3a368746900a940", "cast_id": 29, "profile_path": "/xAXZBoibGgdRIKPvWz0RdK4gkLA.jpg", "order": 17}, {"name": "Rob Morrow", "character": "CEO", "id": 52602, "credit_id": "54d4d6c5c3a3686ac40136db", "cast_id": 30, "profile_path": "/pddqfHQ7AV5I2EUIzz32GFp5m5Q.jpg", "order": 18}, {"name": "Jennifer Li Jackson", "character": "Mim", "id": 1341800, "credit_id": "54d4d85e925141560a000025", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Ian Brodsky", "character": "Malcolm", "id": 1423829, "credit_id": "54d4d89a92514109ba013bba", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Shannon Maree Walsh", "character": "Rachel", "id": 1423837, "credit_id": "54d4da33c3a368746900a9d3", "cast_id": 33, "profile_path": "/ikcBqcvAUFHZ3neIqoXIJBsYq53.jpg", "order": 21}, {"name": "David Abeles", "character": "Glen", "id": 1423882, "credit_id": "54d4f549c3a3686abc013f47", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Ann McGowan", "character": "Ballet Teacher", "id": 1373351, "credit_id": "54d4f5d49251413fca01442c", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Ron Voz", "character": "Butler", "id": 1423884, "credit_id": "54d4f634c3a3686ac201319c", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Cee Lo Green", "character": "Troublegum", "id": 1216901, "credit_id": "54d4fbebc3a3685d5700991f", "cast_id": 37, "profile_path": "/uPsrwCsqiOYXSDcEHKyXgs8OGRJ.jpg", "order": 25}, {"name": "Kena Onyenjekwe", "character": "Troublegum Posse 1 - Rappa DD", "id": 1423901, "credit_id": "54d4fc4cc3a368616e01370b", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Harvey Morris", "character": "Troublegum Posse 2 - Phat Jimmy", "id": 1423906, "credit_id": "54d4fd309251413fca0144ee", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Terry Lewis", "character": "Troublegum Crew Member - Benson", "id": 54605, "credit_id": "54d5006492514109ba013f9e", "cast_id": 40, "profile_path": "/sEMLJpUjmT2tbtT0t1n2DDH0DzE.jpg", "order": 28}, {"name": "Colin Love", "character": "Singing Basketball Player", "id": 1423913, "credit_id": "54d5018ac3a3686ac201327b", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jimmy Palumbo", "character": "Guy Shouting from Window", "id": 157059, "credit_id": "54d502c5c3a368746900ad61", "cast_id": 42, "profile_path": "/lUC10q4XgIUBlVAacIXh2FDtizr.jpg", "order": 30}, {"name": "Simon Delaney", "character": "Lawyer", "id": 163545, "credit_id": "54d503fdc3a3685d570099d8", "cast_id": 43, "profile_path": "/x74QVhesWL0nM0EFIosl6awxcIu.jpg", "order": 31}, {"name": "Danielle Brisebois", "character": "Singer", "id": 1216966, "credit_id": "54d50587c3a368616e013800", "cast_id": 44, "profile_path": "/wPAl4rUyl3r8PkcBlr2iU6WZk5A.jpg", "order": 32}, {"name": "Keen Ruffalo", "character": "Keen", "id": 1424191, "credit_id": "54d6061ec3a3683b89001d4a", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Melissa Maria Gonzalez", "character": "Chris", "id": 1424193, "credit_id": "54d606ad92514171600020bd", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Nicholas Daniel Gonzalez", "character": "Zach", "id": 1424201, "credit_id": "54d607d0c3a368439a001dc6", "cast_id": 47, "profile_path": "/533v8XEFnBGwPuG5tLdfLpjSUwv.jpg", "order": 35}, {"name": "David Pendleton", "character": "Homeless Man", "id": 1375271, "credit_id": "54d60b50c3a3683b99001dd8", "cast_id": 48, "profile_path": "/cONIPh53zQnoOMOLOspZiOMqC1o.jpg", "order": 36}, {"name": "Madison Love", "character": "Singer Songwriter 1", "id": 1424207, "credit_id": "54d60ce49251415f75001c79", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Joanna Mauer", "character": "On Camera Musician", "id": 1424208, "credit_id": "54d60d459251416ba1001da7", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Erik Detusch", "character": "On Camera Musician", "id": 1424209, "credit_id": "54d60d73c3a3683b920022be", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Rich Mercurio", "character": "On Camera Musician", "id": 1424210, "credit_id": "54d60e42c3a3683b89001e2a", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Emilie Cardinaux", "character": "On Camera Musician", "id": 1424211, "credit_id": "54d60e909251416ba8001e3e", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Curtis Fowlkes", "character": "On Camera Musician", "id": 1424213, "credit_id": "54d6106a9251416b9f001fef", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Emily Yarbourgh", "character": "On Camera Musician", "id": 1424214, "credit_id": "54d6113d9251415f75001ce7", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Erin Benin", "character": "On Camera Musician", "id": 1424215, "credit_id": "54d61179925141758c001dd1", "cast_id": 56, "profile_path": null, "order": 44}, {"name": "Alexis Sykes", "character": "On Camera Musician", "id": 1424216, "credit_id": "54d611afc3a3683ba00023ac", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Julia Bruskin", "character": "On Camera Musician", "id": 1424217, "credit_id": "54d611dec3a3683b95001fad", "cast_id": 58, "profile_path": null, "order": 46}], "directors": [{"name": "John Carney", "department": "Directing", "job": "Director", "credit_id": "52fe4d769251416c91116e87", "profile_path": null, "id": 45117}], "vote_average": 7.3, "runtime": 104}, "1824": {"poster_path": "/ztMUIJV2nDN0tJ24aW7pjMvTxVV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196482882, "overview": "Henry is a player skilled at seducing women. But when this veterinarian meets Lucy, a girl with a quirky problem when it comes to total recall, he realizes it's possible to fall in love all over again\u2026and again, and again. That's because the delightful Lucy has no short-term memory, so Henry must woo her day after day until he finally sweeps her off her feet.", "video": false, "id": 1824, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "50 First Dates", "tagline": "Imagine having to win over the girl of your dreams... every friggin' day.", "vote_count": 617, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0343660", "adult": false, "backdrop_path": "/eabV1BbZgghMJSOmjZ1EQ987Zuh.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Anonymous Content", "id": 10039}, {"name": "Flower Films (II)", "id": 19813}], "release_date": "2004-02-12", "popularity": 2.13792584164645, "original_title": "50 First Dates", "budget": 75000000, "cast": [{"name": "Adam Sandler", "character": "Henry Roth", "id": 19292, "credit_id": "52fe4318c3a36847f8039b37", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Lucy Whitmore", "id": 69597, "credit_id": "52fe4318c3a36847f8039b3b", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Rob Schneider", "character": "Ula", "id": 60949, "credit_id": "52fe4318c3a36847f8039b3f", "cast_id": 3, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 2}, {"name": "Sean Astin", "character": "Doug Whitmore", "id": 1328, "credit_id": "52fe4318c3a36847f8039b43", "cast_id": 4, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 3}, {"name": "Lusia Strus", "character": "Alexa", "id": 19293, "credit_id": "52fe4318c3a36847f8039b47", "cast_id": 5, "profile_path": "/qbXs16CG5qIyEc2CSfigwZSxDte.jpg", "order": 4}, {"name": "Dan Aykroyd", "character": "Dr. Keats", "id": 707, "credit_id": "52fe4318c3a36847f8039b4b", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 5}, {"name": "Blake Clark", "character": "Marlin Whitmore", "id": 21485, "credit_id": "52fe4318c3a36847f8039b73", "cast_id": 13, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 6}, {"name": "Amy Hill", "character": "Sue", "id": 59401, "credit_id": "52fe4318c3a36847f8039b77", "cast_id": 14, "profile_path": "/uVJnyfKqN5Ex2ueoWhEIgMY6q6Q.jpg", "order": 7}, {"name": "Allen Covert", "character": "Ten Second Tom", "id": 20818, "credit_id": "52fe4318c3a36847f8039b7b", "cast_id": 15, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 8}, {"name": "Maya Rudolph", "character": "Stacy", "id": 52792, "credit_id": "52fe4318c3a36847f8039b7f", "cast_id": 16, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 9}, {"name": "Pomaika'i Brown", "character": "Nick", "id": 1080056, "credit_id": "52fe4318c3a36847f8039b83", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Joe Nakashima", "character": "Old Hawaiian Man", "id": 1080057, "credit_id": "52fe4318c3a36847f8039b87", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Jonathan Loughran", "character": "Jennifer", "id": 58477, "credit_id": "52fe4318c3a36847f8039b8b", "cast_id": 19, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 12}, {"name": "Peter Dante", "character": "Security Guard", "id": 20819, "credit_id": "52fe4318c3a36847f8039b8f", "cast_id": 20, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 13}, {"name": "Dom Magwili", "character": "Security Guard", "id": 116271, "credit_id": "52fe4318c3a36847f8039b93", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039b51", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.5, "runtime": 99}, "1825": {"poster_path": "/rnAxGFrFaHemdjjFDQDtjOzV8z5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16057580, "overview": "Sylvester Stallone stars as hard-luck big-rig trucker Lincoln Hawk and takes us under the glaring Las Vegas lights for all the boisterous action of the World Armwrestling Championship. Relying on wits and willpower, Hawk tries to rebuild his life by capturing the first-place prize money - and the love of the son he abandoned years earlier into the keeping of his his rich, ruthless father-in-law.", "video": false, "id": 1825, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Over the Top", "tagline": "Some fight for money... Some fight for glory... He's fighting for his son's love.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093692", "adult": false, "backdrop_path": "/30Ey6s4eAn8968g0rIMY8vLqxTo.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Cannon Group", "id": 1444}, {"name": "Golan-Globus", "id": 1445}], "release_date": "1987-02-13", "popularity": 0.555075973205159, "original_title": "Over the Top", "budget": 25000000, "cast": [{"name": "Sylvester Stallone", "character": "Lincoln Hawk", "id": 16483, "credit_id": "52fe4318c3a36847f8039bd1", "cast_id": 4, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Robert Loggia", "character": "Jason Cutler", "id": 1162, "credit_id": "52fe4318c3a36847f8039bff", "cast_id": 12, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 1}, {"name": "Rick Zumwalt", "character": "Bob Hurley", "id": 33011, "credit_id": "52fe4318c3a36847f8039c03", "cast_id": 13, "profile_path": "/iRfrVDXSGQDJITh7yQxGYgbmjEC.jpg", "order": 2}, {"name": "David Mendenhall", "character": "Michael Cutler/Michael Hawk", "id": 33012, "credit_id": "52fe4318c3a36847f8039c07", "cast_id": 14, "profile_path": "/eBrFbqMdoM9mdqlK0uuw4X7Gua6.jpg", "order": 3}, {"name": "Bruce Way", "character": "John Grizzly", "id": 33013, "credit_id": "52fe4318c3a36847f8039c0b", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Sam Scarber", "character": "Harry Bosco", "id": 33014, "credit_id": "52fe4318c3a36847f8039c0f", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Chris McCarty", "character": "Tim Salanger", "id": 33015, "credit_id": "52fe4318c3a36847f8039c13", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Terry Funk", "character": "Ruker", "id": 33016, "credit_id": "52fe4318c3a36847f8039c17", "cast_id": 18, "profile_path": "/1sv31PtOnQmCMKizK2rEfplv4jf.jpg", "order": 7}, {"name": "Allan Graf", "character": "Collins", "id": 33017, "credit_id": "52fe4318c3a36847f8039c1b", "cast_id": 19, "profile_path": "/kY2U92OoIr21UGGPHgDf8b4rIHZ.jpg", "order": 8}], "directors": [{"name": "Menahem Golan", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039bc1", "profile_path": "/2nHxQ9j1ExcESFnUpMwotbnWJIK.jpg", "id": 33008}], "vote_average": 5.9, "runtime": 93}, "203739": {"poster_path": "/xxjEjVN0YKLuPUK9dnK97ov4tSk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rose Hathaway is a Dhampir, half human/vampire, guardians of the Moroi, peaceful, mortal vampires living discretely within our world. Her legacy is to protect the Moroi from bloodthirsty, immortal Vampires, the Strigoi. This is her story.", "video": false, "id": 203739, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Vampire Academy", "tagline": "They Suck at School", "vote_count": 156, "homepage": "http://va-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1686821", "adult": false, "backdrop_path": "/xWjzZc437xnQmRxpUKWwESVqPCr.jpg", "production_companies": [{"name": "Angry Films", "id": 12087}, {"name": "Kintop Pictures", "id": 1490}, {"name": "Preger Entertainment", "id": 15682}], "release_date": "2014-02-07", "popularity": 0.799670697034165, "original_title": "Vampire Academy", "budget": 0, "cast": [{"name": "Zoey Deutch", "character": "Rose Hathaway", "id": 1059597, "credit_id": "52fe4ce5c3a368484e1cba61", "cast_id": 3, "profile_path": "/9R7EQhJ4phu4FWdLhCzEobfNnXf.jpg", "order": 0}, {"name": "Lucy Fry", "character": "Lissa Dragomir", "id": 1192759, "credit_id": "52fe4ce5c3a368484e1cba7d", "cast_id": 10, "profile_path": "/yKviaSDVMi8Sw0zpF8mFE9FrFMy.jpg", "order": 1}, {"name": "Danila Kozlovskiy", "character": "Dimitri Belikov", "id": 562730, "credit_id": "52fe4ce5c3a368484e1cba75", "cast_id": 8, "profile_path": "/5vKHEMaAQL7UAWDmvFNI8hq761b.jpg", "order": 2}, {"name": "Gabriel Byrne", "character": "Victor Dashkov", "id": 5168, "credit_id": "52fe4ce5c3a368484e1cba71", "cast_id": 7, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 3}, {"name": "Sarah Hyland", "character": "Natalie Dashkov", "id": 91351, "credit_id": "52fe4ce5c3a368484e1cba59", "cast_id": 1, "profile_path": "/x0Gz56NHgCAn080RZGRFkPi02S.jpg", "order": 4}, {"name": "Olga Kurylenko", "character": "Kirova", "id": 18182, "credit_id": "52fe4ce5c3a368484e1cba5d", "cast_id": 2, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 5}, {"name": "Joely Richardson", "character": "Queen Tatiana", "id": 20810, "credit_id": "52fe4ce5c3a368484e1cba65", "cast_id": 4, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 6}, {"name": "Claire Foy", "character": "Sonya Karp", "id": 120932, "credit_id": "52fe4ce5c3a368484e1cba69", "cast_id": 5, "profile_path": "/cE6R6hil91rzKg3yj71czNsuK8K.jpg", "order": 7}, {"name": "Cameron Monaghan", "character": "Mason Ashford", "id": 37089, "credit_id": "52fe4ce5c3a368484e1cba6d", "cast_id": 6, "profile_path": "/rmzBfqHRUnJjXCL6l7VH8FmVpZu.jpg", "order": 8}, {"name": "Sami Gayle", "character": "Mia Rinalidi", "id": 506085, "credit_id": "52fe4ce5c3a368484e1cba79", "cast_id": 9, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 9}, {"name": "Ashley Charles", "character": "Jesse Zeklos", "id": 1192760, "credit_id": "52fe4ce5c3a368484e1cba81", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Dominic Sherwood", "character": "Christian Ozera", "id": 1192761, "credit_id": "52fe4ce5c3a368484e1cba85", "cast_id": 12, "profile_path": null, "order": 11}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe4ce5c3a368484e1cba8b", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.7, "runtime": 104}, "10020": {"poster_path": "/vGyhh8XB1AnDhBc4ssxrrz6ihdX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 377350553, "overview": "Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.", "video": false, "id": 10020, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Beauty and the Beast", "tagline": "The most beautiful love story ever told.", "vote_count": 1000, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/beauty/?cmp=dcom_VAN_WDSHE_BEA_van_batb__Extl", "belongs_to_collection": {"backdrop_path": "/mWBTUCk4JKNjU3EiBvz3TEpNU11.jpg", "poster_path": "/mIzZxNAT1GIFaEoPYdJsUKC23Oj.jpg", "id": 153010, "name": "Beauty and the Beast Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101414", "adult": false, "backdrop_path": "/q8OEC91NiJOpghWI9hXtC27nFX0.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners IV", "id": 10282}], "release_date": "1991-11-12", "popularity": 3.00361256685994, "original_title": "Beauty and the Beast", "budget": 25000000, "cast": [{"name": "Paige O'Hara", "character": "Belle (voice)", "id": 62050, "credit_id": "52fe43099251416c75000faf", "cast_id": 10, "profile_path": "/98Ba48wIcnOci21yvkWfNiMmni0.jpg", "order": 0}, {"name": "Robby Benson", "character": "Beast (voice)", "id": 15048, "credit_id": "52fe43099251416c75000fb3", "cast_id": 11, "profile_path": "/wUqGufwQwXn3Y6rFdtZ80HqLDPm.jpg", "order": 1}, {"name": "Richard White", "character": "Gaston (voice)", "id": 108055, "credit_id": "52fe43099251416c75000fb7", "cast_id": 12, "profile_path": "/iiX9ytEkszJGOwcZ0qFVClfjzeJ.jpg", "order": 2}, {"name": "Jerry Orbach", "character": "Lumiere (voice)", "id": 725, "credit_id": "52fe43099251416c75000fbb", "cast_id": 13, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 3}, {"name": "David Ogden Stiers", "character": "Cogsworth / Narrator (voice)", "id": 28010, "credit_id": "52fe43099251416c75000fbf", "cast_id": 14, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 4}, {"name": "Angela Lansbury", "character": "Mrs. Potts (voice)", "id": 14730, "credit_id": "52fe43099251416c75000fc3", "cast_id": 15, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 5}, {"name": "Bradley Pierce", "character": "Chip (voice)", "id": 145151, "credit_id": "52fe43099251416c75000fc7", "cast_id": 16, "profile_path": "/rukciCbfBZWWvyJELZqxQWzSqnS.jpg", "order": 6}, {"name": "Rex Everhart", "character": "Maurice (voice)", "id": 170970, "credit_id": "52fe43099251416c75000fcb", "cast_id": 17, "profile_path": "/pW7GyLaz8QrGpVjnC5vvJVjxTqQ.jpg", "order": 7}, {"name": "Jesse Corti", "character": "Lefou (voice)", "id": 75599, "credit_id": "52fe43099251416c75000fcf", "cast_id": 18, "profile_path": "/eiZnJIqQ6JTzusiMF1GnhDjVWdw.jpg", "order": 8}, {"name": "Hal Smith", "character": "Philippe (voice)", "id": 1058259, "credit_id": "52fe43099251416c75000fd3", "cast_id": 19, "profile_path": "/uHJLtfYDSks8fvf6Jjn5Mi8Tnw1.jpg", "order": 9}, {"name": "Jo Anne Worley", "character": "Wardrobe (voice)", "id": 166994, "credit_id": "52fe43099251416c75000fd7", "cast_id": 20, "profile_path": "/9jSk7SOO4uRmJwGcIybEEfb7ORL.jpg", "order": 10}, {"name": "Mary Kay Bergman", "character": "Babette (voice)", "id": 30695, "credit_id": "52fe43099251416c75000fdb", "cast_id": 21, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 11}, {"name": "Brian Cummings", "character": "Stove (voice)", "id": 81842, "credit_id": "52fe43099251416c75000fdf", "cast_id": 22, "profile_path": "/wVos4sRGG1NvDqKDlbUWCD2dMMa.jpg", "order": 12}, {"name": "Alvin Epstein", "character": "Bookseller (voice)", "id": 170898, "credit_id": "52fe43099251416c75000fe3", "cast_id": 23, "profile_path": "/3JRnkuxqYgO7rc9sHUJTWgmxKAI.jpg", "order": 13}, {"name": "Tony Jay", "character": "Monsieur D'Arque (voice)", "id": 65598, "credit_id": "52fe43099251416c75000fe7", "cast_id": 24, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 14}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe43099251416c75000f7b", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}, {"name": "Kirk Wise", "department": "Directing", "job": "Director", "credit_id": "52fe43099251416c75000f81", "profile_path": "/aoh7wnHk3F1HdOUBLI5Yfwd8rnN.jpg", "id": 62048}], "vote_average": 7.0, "runtime": 84}, "1830": {"poster_path": "/nwPUI9WlYtDmE5VO6eEFCfrNXWl.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24127895, "overview": "Yuri Orlov is a globetrotting arms dealer. Through some of the deadliest war zones, Yuri struggles to stay one step ahead of a relentless Interpol agent, his business rivals, even some of his customers who include many of the world's most notorious dictators. Finally, Yuri must also face his own conscience.", "video": false, "id": 1830, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Lord of War", "tagline": "Where there's a will, there's a weapon", "vote_count": 424, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}], "imdb_id": "tt0399295", "adult": false, "backdrop_path": "/fjt8ZNuDH64GxgluSj52UMNkolY.jpg", "production_companies": [{"name": "Endgame Entertainment", "id": 1205}, {"name": "Entertainment Manufacturing Company", "id": 1206}, {"name": "Ascendant Pictures", "id": 1204}, {"name": "Saturn Films", "id": 831}, {"name": "Rising Star", "id": 1208}, {"name": "Copag V", "id": 21938}], "release_date": "2005-09-16", "popularity": 0.639319882967164, "original_title": "Lord of War", "budget": 42000000, "cast": [{"name": "Nicolas Cage", "character": "Yuri Orlov", "id": 2963, "credit_id": "52fe4318c3a36847f8039d57", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Bridget Moynahan", "character": "Ava Fontaine Orlov", "id": 18354, "credit_id": "52fe4318c3a36847f8039d5b", "cast_id": 2, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 1}, {"name": "Jared Leto", "character": "Vitaly Orlov", "id": 7499, "credit_id": "52fe4318c3a36847f8039d5f", "cast_id": 3, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 2}, {"name": "Ethan Hawke", "character": "Jack Valentine", "id": 569, "credit_id": "52fe4318c3a36847f8039d63", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 3}, {"name": "Eamonn Walker", "character": "Andre Baptiste Sr.", "id": 19299, "credit_id": "52fe4318c3a36847f8039d67", "cast_id": 5, "profile_path": "/9vuNtg6IGlUNFOurojwkYThKnvd.jpg", "order": 4}, {"name": "Ian Holm", "character": "Simeon Weisz", "id": 65, "credit_id": "52fe4318c3a36847f8039d6b", "cast_id": 6, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 5}, {"name": "Sammi Rotibi", "character": "Andre Baptiste Jr.", "id": 19300, "credit_id": "52fe4318c3a36847f8039d6f", "cast_id": 7, "profile_path": "/yjktr2trahEBQmuLsCRMzgoDFvh.jpg", "order": 6}, {"name": "Yevgeni Lazarev", "character": "General Dmitri Orlov", "id": 19301, "credit_id": "52fe4318c3a36847f8039d73", "cast_id": 8, "profile_path": "/hLtyGhAuEeJc8qPjQDZswIMpYDd.jpg", "order": 7}, {"name": "Tanit Phoenix", "character": "Candy", "id": 37769, "credit_id": "52fe4318c3a36847f8039dcb", "cast_id": 24, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 8}, {"name": "Shake Tukhmanyan", "character": "Irina Orlov", "id": 1127469, "credit_id": "5397123a0e0a266dce009536", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Jean-Pierre Nshanian", "character": "Anatoly Orlov", "id": 1329526, "credit_id": "5397124d0e0a266dc5009266", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Jared Burke", "character": "Ukrainian Mobster", "id": 1329527, "credit_id": "539712620e0a266dca0095df", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Eric Uys", "character": "Ukrainian Mobster", "id": 1329528, "credit_id": "539712770e0a266db4009666", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "David Shumbris", "character": "Ukrainian Mobster", "id": 34541, "credit_id": "5397128b0e0a266dbb009668", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Stewart Morgan", "character": "Ukrainian Mobster", "id": 1329531, "credit_id": "5397129b0e0a266dc2009384", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Jasper Lenz", "character": "Gregor", "id": 1329532, "credit_id": "539712b10e0a266dbb00966e", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Stephen Gregory", "character": "Eli Kurtzman", "id": 8019, "credit_id": "539712c70e0a266dbf009563", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Kobus Marx", "character": "Boris", "id": 1329534, "credit_id": "539712d50e0a266dbf009568", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Stephan De Abreu", "character": "Liev", "id": 1329536, "credit_id": "539712e80e0a266dbb009678", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Jeremy Crutchley", "character": "Arms Fair Salesman", "id": 20304, "credit_id": "539712f60e0a266dca0095f2", "cast_id": 37, "profile_path": "/17aHojCYOmUyoyuPgLd4di0fdvm.jpg", "order": 19}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039d79", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 6.8, "runtime": 122}, "1832": {"poster_path": "/zuJJAEvyiZiddzRx7JRGNDzjP07.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30651422, "overview": "The latest battle in the eternal war between Good and Evil has come to New Jersey in the late, late 20th Century. Angels, demons, apostles and prophets (of a sort) walk among the cynics and innocents of America and duke it out for the fate of humankind.", "video": false, "id": 1832, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Dogma", "tagline": "It can be Hell getting into Heaven", "vote_count": 238, "homepage": "http://www.dogma-movie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120655", "adult": false, "backdrop_path": "/hyVHeKqCDwZdvgeFvAFZD2pDcFy.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Lions Gate", "id": 6644}], "release_date": "1999-11-12", "popularity": 1.03298821543656, "original_title": "Dogma", "budget": 10000000, "cast": [{"name": "Ben Affleck", "character": "Bartleby", "id": 880, "credit_id": "52fe4318c3a36847f8039e93", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Matt Damon", "character": "Loki", "id": 1892, "credit_id": "52fe4318c3a36847f8039ef7", "cast_id": 25, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Linda Fiorentino", "character": "Bethany Sloane", "id": 9625, "credit_id": "52fe4318c3a36847f8039e97", "cast_id": 3, "profile_path": "/16aVa4evfjWiAnM6srkLhWYJlpZ.jpg", "order": 2}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe4318c3a36847f8039e9b", "cast_id": 4, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 3}, {"name": "Chris Rock", "character": "Rufus", "id": 2632, "credit_id": "52fe4318c3a36847f8039e9f", "cast_id": 5, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 4}, {"name": "Alan Rickman", "character": "Metatron", "id": 4566, "credit_id": "52fe4318c3a36847f8039ea3", "cast_id": 6, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 5}, {"name": "Jason Lee", "character": "Azrael", "id": 11662, "credit_id": "52fe4318c3a36847f8039ea7", "cast_id": 7, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 6}, {"name": "Salma Hayek", "character": "Serendipity", "id": 3136, "credit_id": "52fe4318c3a36847f8039eab", "cast_id": 8, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 7}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe4318c3a36847f8039eaf", "cast_id": 9, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 8}, {"name": "Alanis Morissette", "character": "God", "id": 131024, "credit_id": "52fe4318c3a36847f8039ed7", "cast_id": 17, "profile_path": "/oQJzaTPbP1ffOv7NCLlF8Gswqwt.jpg", "order": 9}, {"name": "Bud Cort", "character": "John Doe Jersey", "id": 4971, "credit_id": "52fe4318c3a36847f8039edb", "cast_id": 18, "profile_path": "/kI7N8eeX8TBWBGFQCZWfKZGbrZ6.jpg", "order": 10}, {"name": "George Carlin", "character": "Cardinal Ignatius Glick", "id": 15903, "credit_id": "52fe4318c3a36847f8039edf", "cast_id": 19, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 11}, {"name": "Brian O'Halloran", "character": "Grant Hicks", "id": 23629, "credit_id": "52fe4318c3a36847f8039ee3", "cast_id": 20, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 12}, {"name": "Janeane Garofalo", "character": "Liz", "id": 21197, "credit_id": "52fe4318c3a36847f8039ee7", "cast_id": 21, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 13}, {"name": "Walt Flanagan", "character": "Protestor #2", "id": 23633, "credit_id": "52fe4318c3a36847f8039eeb", "cast_id": 22, "profile_path": "/mu1THhSjnBbOxd9VxaVQQ3qvf2U.jpg", "order": 14}, {"name": "Scott Mosier", "character": "Smooching Seaman", "id": 20503, "credit_id": "52fe4318c3a36847f8039eef", "cast_id": 23, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 15}, {"name": "Dwight Ewell", "character": "Kane", "id": 20283, "credit_id": "52fe4318c3a36847f8039ef3", "cast_id": 24, "profile_path": null, "order": 16}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4318c3a36847f8039eb5", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.7, "runtime": 130}, "11228": {"poster_path": "/ubVmAxPbvjgY8w2MCoFKFkMXt1A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159212469, "overview": "When an explosion seals off a commuter tunnel, the survivors are faced with toxic fumes, fires and the impending collapse of the tunnel. Their only hope lies in the hands of Kit Latura (Stallone), a former Emergency Medical Services chief who is haunted by a tragic past. As the walls cave in and the tunnel fills up with water, Latura risks his own life to save others and prevent further disaster.", "video": false, "id": 11228, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Daylight", "tagline": "No air. No escape. No time.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116040", "adult": false, "backdrop_path": "/ne5tEv0x7bj8LvSCHhPv0qOhRk4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1996-12-06", "popularity": 0.718968202919476, "original_title": "Daylight", "budget": 80000000, "cast": [{"name": "Sylvester Stallone", "character": "Kit Latura", "id": 16483, "credit_id": "52fe44159251416c75028529", "cast_id": 9, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Amy Brenneman", "character": "Madelyne Thompson", "id": 15851, "credit_id": "52fe44159251416c7502852d", "cast_id": 10, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Roy Nord", "id": 110, "credit_id": "52fe44159251416c75028531", "cast_id": 11, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Dan Hedaya", "character": "Frank Kraft", "id": 6486, "credit_id": "52fe44159251416c75028535", "cast_id": 12, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 3}, {"name": "Jay O. Sanders", "character": "Steven Crighton", "id": 6067, "credit_id": "54975e389251417a810048ae", "cast_id": 16, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 4}, {"name": "Karen Young", "character": "Sarah Crighton", "id": 16215, "credit_id": "54975e46c3a3686ae3006df8", "cast_id": 17, "profile_path": "/pMZYr5eKpXB3PpXq2XRfIUsonHr.jpg", "order": 5}, {"name": "Danielle Harris", "character": "Ashley Crighton", "id": 21320, "credit_id": "53cbf6000e0a265dea002625", "cast_id": 15, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 6}, {"name": "Claire Bloom", "character": "Eleanor Trilling", "id": 29545, "credit_id": "54975e58c3a3686ae3006dfa", "cast_id": 18, "profile_path": "/4x0Cfh1g8apqOPio8AJx9oUV9mK.jpg", "order": 7}, {"name": "Colin Fox", "character": "Roger Trilling", "id": 137161, "credit_id": "54975e849251416e1e006569", "cast_id": 21, "profile_path": "/11YtrErPyJYGnGRWjMlJopV2tnT.jpg", "order": 8}, {"name": "Barry Newman", "character": "Norman Bassett", "id": 27860, "credit_id": "54975e669251417315001e85", "cast_id": 19, "profile_path": "/vAl1PUv9PDy5WMfBLXmhRUhcqVO.jpg", "order": 9}, {"name": "Stan Shaw", "character": "George Tyrell", "id": 16936, "credit_id": "54975e759251413f75005107", "cast_id": 20, "profile_path": "/2KUPUQQFmc8Zyzf16uaiYmVrNvX.jpg", "order": 10}, {"name": "Vanessa Bell Calloway", "character": "Grace Calloway", "id": 100653, "credit_id": "52fe44159251416c7502853d", "cast_id": 14, "profile_path": "/gEn2Iy2aCzNb3E0iZzNyAs2Buf3.jpg", "order": 11}, {"name": "Sage Stallone", "character": "Vincent", "id": 16660, "credit_id": "54975e9a9251417315001e91", "cast_id": 22, "profile_path": "/fwC0O3sWbz8ruIpN3pQ6reViZ2G.jpg", "order": 12}, {"name": "Renoly Santiago", "character": "Mikey", "id": 28863, "credit_id": "54975ea792514130fc0056cc", "cast_id": 23, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 13}, {"name": "Trina McGee-Davis", "character": "LaTonya", "id": 1213343, "credit_id": "54975ebf9251413f7500511e", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Marcello Thedford", "character": "Kadeem", "id": 59300, "credit_id": "54975ec99251416e1e006579", "cast_id": 25, "profile_path": "/r6AOyQWIi7Zi1WQUXjF8T2HafIR.jpg", "order": 15}, {"name": "Mark Rolston", "character": "Chief Dennis Wilson", "id": 6576, "credit_id": "54975ee8c3a3681153004bea", "cast_id": 26, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 16}, {"name": "Lee Oakes", "character": "Gem Thief #3", "id": 59075, "credit_id": "52fe44159251416c75028539", "cast_id": 13, "profile_path": null, "order": 17}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe44159251416c750284fb", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.7, "runtime": 115}, "13700": {"poster_path": "/1KFa2Mzzn2DMlC95eJwRYgRsHI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103951461, "overview": "The Little Piece of Heaven family farm is about to go under and outlaw cattle rustler Alameda Slim sets his sights on it. Three dairy cows -- tough Maggie, leader Mrs. Calloway, and na\u00efve Grace -- team up to save the farm. Along with ambitious stallion Buck, helpful rabbit Lucky Jack, and other helpful barnyard friends, the cows set out to capture Alameda Slim and collect the reward money.", "video": false, "id": 13700, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 37, "name": "Western"}, {"id": 10751, "name": "Family"}], "title": "Home on the Range", "tagline": "Bust a Moo.", "vote_count": 67, "homepage": "http://disney.go.com/disneyvideos/animatedfilms/homeontherange", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0299172", "adult": false, "backdrop_path": "/lMeGuxgmzUVTRfLHekt41iWexip.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2004-04-02", "popularity": 1.51387360894224, "original_title": "Home on the Range", "budget": 110000000, "cast": [{"name": "Randy Quaid", "character": "Alameda Slim", "id": 1811, "credit_id": "52fe458d9251416c7505a86b", "cast_id": 18, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Wesley", "id": 884, "credit_id": "52fe458d9251416c7505a82d", "cast_id": 4, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "Judi Dench", "character": "Mrs. Caloway", "id": 5309, "credit_id": "52fe458d9251416c7505a839", "cast_id": 7, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 2}, {"name": "Cuba Gooding Jr.", "character": "Buck", "id": 9777, "credit_id": "52fe458d9251416c7505a845", "cast_id": 11, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 3}, {"name": "G. W. Bailey", "character": "Rusty, the Dog", "id": 27237, "credit_id": "52fe458d9251416c7505a825", "cast_id": 2, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 4}, {"name": "Bobby Block", "character": "Piggy", "id": 12078, "credit_id": "52fe458d9251416c7505a829", "cast_id": 3, "profile_path": null, "order": 5}, {"name": "Carole Cook", "character": "Pearl Gesner", "id": 41730, "credit_id": "52fe458d9251416c7505a831", "cast_id": 5, "profile_path": "/nqOpt2uNlPgFsRx9FTJ0p1SIYFe.jpg", "order": 6}, {"name": "Charlie Dell", "character": "Ollie, the Pig", "id": 62846, "credit_id": "52fe458d9251416c7505a835", "cast_id": 6, "profile_path": "/z0JgZxazJAVlHxLYXWM8eUZlOk8.jpg", "order": 7}, {"name": "Charles Dennis", "character": "Rico", "id": 43800, "credit_id": "52fe458d9251416c7505a83d", "cast_id": 8, "profile_path": "/nbg2PzCmL08GdlV5BiNxmtunHok.jpg", "order": 8}, {"name": "Marshall Efron", "character": "Larry, the Duck", "id": 9224, "credit_id": "52fe458d9251416c7505a841", "cast_id": 9, "profile_path": null, "order": 9}, {"name": "Charles Haid", "character": "Lucky Jack", "id": 69791, "credit_id": "52fe458d9251416c7505a849", "cast_id": 12, "profile_path": "/Wna0bUskkYJAMFY5UiJMUbPG93.jpg", "order": 10}, {"name": "Jennifer Tilly", "character": "Grace", "id": 7906, "credit_id": "52fe458d9251416c7505a86f", "cast_id": 19, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 11}, {"name": "Joe Flaherty", "character": "Jeb, the Goat", "id": 59196, "credit_id": "52fe458e9251416c7505a873", "cast_id": 20, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 12}, {"name": "Roseanne Barr", "character": "Maggie", "id": 46393, "credit_id": "52fe458e9251416c7505a877", "cast_id": 21, "profile_path": "/p36LMNfQssOQb5vUyYJRBEhQsaR.jpg", "order": 13}], "directors": [{"name": "Will Finn", "department": "Directing", "job": "Director", "credit_id": "52fe458d9251416c7505a84f", "profile_path": null, "id": 70287}, {"name": "John Sanford", "department": "Directing", "job": "Director", "credit_id": "52fe458d9251416c7505a855", "profile_path": null, "id": 80671}], "vote_average": 5.6, "runtime": 76}, "10027": {"poster_path": "/hfyZgFOjZAk10YlsRl9krBMuQ9K.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50871113, "overview": "Raised as a slave, Danny is used to fighting for his survival. In fact, his \"master,\" Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.", "video": false, "id": 10027, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Unleashed", "tagline": "Serve No Master", "vote_count": 128, "homepage": "http://www.universalstudiosentertainment.com/unleashed/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0342258", "adult": false, "backdrop_path": "/4GpEAgs61X8olLUlawswTtp1vnA.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}], "release_date": "2005-09-01", "popularity": 0.664228841591174, "original_title": "Unleashed", "budget": 45000000, "cast": [{"name": "Jet Li", "character": "Danny", "id": 1336, "credit_id": "52fe430b9251416c75001557", "cast_id": 14, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Sam", "id": 192, "credit_id": "52fe430b9251416c75001561", "cast_id": 16, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Bob Hoskins", "character": "Bart", "id": 382, "credit_id": "52fe430b9251416c75001565", "cast_id": 17, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 2}, {"name": "Vincent Regan", "character": "Raffles", "id": 9831, "credit_id": "52fe430b9251416c75001569", "cast_id": 18, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 3}, {"name": "Dylan Brown", "character": "Lefty", "id": 8032, "credit_id": "52fe430b9251416c7500156d", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Tamer Hassan", "character": "Georgie", "id": 39660, "credit_id": "52fe430b9251416c75001571", "cast_id": 20, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 5}, {"name": "Phyllida Law", "character": "Distinguished Lady", "id": 17787, "credit_id": "52fe430b9251416c75001575", "cast_id": 21, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 6}, {"name": "Michael Jenn", "character": "Wyeth", "id": 62106, "credit_id": "52fe430b9251416c75001583", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Carole Ann Wilson", "character": "Maddy", "id": 62107, "credit_id": "52fe430b9251416c7500157f", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Kerry Condon", "character": "Victoria", "id": 62105, "credit_id": "52fe430b9251416c75001587", "cast_id": 26, "profile_path": "/i2wb0N7m1JkUJRcfBcVYmIpExAa.jpg", "order": 9}, {"name": "Mike Lambert", "character": "The Stranger", "id": 62108, "credit_id": "52fe430b9251416c7500158b", "cast_id": 27, "profile_path": "/p0faU9sHhe2n73HPTG5cmEkk5fo.jpg", "order": 10}, {"name": "Puthirith Chou", "character": "Teen Danny", "id": 62110, "credit_id": "52fe430b9251416c7500158f", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Jaclyn Tze Wey", "character": "Danny's Mother", "id": 62109, "credit_id": "52fe430b9251416c75001593", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Georgina Chapman", "character": "Floozy 1", "id": 41547, "credit_id": "52fe430b9251416c75001597", "cast_id": 30, "profile_path": "/nSdhtkVAJ2N0YWWviLS42mMktwC.jpg", "order": 13}, {"name": "Tony Theng", "character": "Little Danny", "id": 62111, "credit_id": "52fe430b9251416c7500159b", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Owen Lay", "character": "Baby Danny", "id": 62112, "credit_id": "52fe430b9251416c7500159f", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Andy Beckwith", "character": "Righty", "id": 1123, "credit_id": "52fe430b9251416c750015a3", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Franck Xie Cheng", "character": "Baby Danny", "id": 62113, "credit_id": "52fe430b9251416c750015a7", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Michael Webber", "character": "Boxing Boss", "id": 62115, "credit_id": "52fe430b9251416c750015ab", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Danielle Louise Harley", "character": "Floozy 2", "id": 62114, "credit_id": "52fe430b9251416c750015af", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Affif Ben Badra", "character": "Tough man", "id": 54807, "credit_id": "52fe430b9251416c750015b9", "cast_id": 38, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 20}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe430b9251416c7500151d", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 6.5, "runtime": 103}, "10028": {"poster_path": "/nC4W7JYMoqFxRBx2HR2MYDYq8Lr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62646763, "overview": "Honey Daniels (Jessica Alba) dreams of making a name for herself as a hip-hop choreographer. When she's not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she's hit the jackpot when she meets a hotshot director (David Moscow) who casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.", "video": false, "id": 10028, "genres": [{"id": 10402, "name": "Music"}], "title": "Honey", "tagline": "Her dream. Her terms", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8u2eChLz2ttOuaUPWHkH6XBUBC.jpg", "poster_path": "/eOEDDWsZmW2M9TKiQK9Nk5MjDe6.jpg", "id": 144689, "name": "Honey Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0322589", "adult": false, "backdrop_path": "/5EIo0RhsNbi7FkFkcf34nL2Z8Ch.jpg", "production_companies": [{"name": "NuAmerica Entertainment", "id": 41963}, {"name": "Universal Pictures", "id": 33}, {"name": "Marc Platt Productions", "id": 2527}], "release_date": "2003-11-24", "popularity": 0.749534419613765, "original_title": "Honey", "budget": 25000000, "cast": [{"name": "Jessica Alba", "character": "Honey Daniels", "id": 56731, "credit_id": "52fe430b9251416c75001657", "cast_id": 16, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Mekhi Phifer", "character": "Chaz", "id": 327, "credit_id": "52fe430b9251416c7500165b", "cast_id": 17, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 1}, {"name": "Joy Bryant", "character": "Gina", "id": 52847, "credit_id": "52fe430b9251416c75001665", "cast_id": 19, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 2}, {"name": "Lil Romeo", "character": "Benny", "id": 62122, "credit_id": "52fe430c9251416c75001669", "cast_id": 20, "profile_path": "/zjhdnMWW1vK2rQwXCLRihsJRBGB.jpg", "order": 3}, {"name": "David Moscow", "character": "Michael Ellis", "id": 62123, "credit_id": "52fe430c9251416c7500166d", "cast_id": 21, "profile_path": "/shlyKoI2kEAcgX0AE5qFEFSrLfv.jpg", "order": 4}, {"name": "Zachary Isaiah Williams", "character": "Raymond", "id": 62124, "credit_id": "52fe430c9251416c75001671", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Missy Elliott", "character": "Herself", "id": 62125, "credit_id": "52fe430c9251416c7500167b", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Anthony Sherwood", "character": "Mr. Daniels", "id": 62126, "credit_id": "52fe430c9251416c7500167f", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Lonette McKee", "character": "Mrs. Daniels", "id": 62127, "credit_id": "52fe430c9251416c75001683", "cast_id": 26, "profile_path": "/yBHA5X3AZKHOtex7chwo2mQQ5Vr.jpg", "order": 8}, {"name": "Maestro", "character": "B.B.", "id": 62128, "credit_id": "52fe430c9251416c75001687", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Judi Embden", "character": "Mrs. Strom", "id": 62129, "credit_id": "52fe430c9251416c7500168b", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Alison Sealy-Smith", "character": "Marisol", "id": 60042, "credit_id": "52fe430c9251416c75001693", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Scott Neil", "character": "Lenny", "id": 62131, "credit_id": "52fe430c9251416c75001697", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Sarah Francis", "character": "Letitia", "id": 62133, "credit_id": "52fe430c9251416c7500169b", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Jull Weber", "character": "Joey", "id": 62132, "credit_id": "52fe430c9251416c7500169f", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Kevin Duhaney", "character": "Otis", "id": 62134, "credit_id": "52fe430c9251416c750016a3", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Brandi Ward", "character": "Choreographer", "id": 62135, "credit_id": "52fe430c9251416c750016a7", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Fonzworth Bentley", "character": "Barber", "id": 62136, "credit_id": "52fe430c9251416c750016ab", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Tracy Dawson", "character": "Assistant Director", "id": 62137, "credit_id": "52fe430c9251416c750016af", "cast_id": 37, "profile_path": "/wBjuo2btfVYjUQIqP5l6wxkZ6VR.jpg", "order": 19}, {"name": "Laurieann Gibson", "character": "Katrina", "id": 557794, "credit_id": "549a02d4925141312900063e", "cast_id": 40, "profile_path": "/7n3twYIasf9gzHPZMuFzBdmrM1e.jpg", "order": 20}], "directors": [{"name": "Bille Woodruff", "department": "Directing", "job": "Director", "credit_id": "52fe430b9251416c75001617", "profile_path": "/oIVFAXUtuUU0QnTtmb7ONoBd6lb.jpg", "id": 62116}], "vote_average": 5.7, "runtime": 94}, "306": {"poster_path": "/tw9gAhqQcBFX0X0XfVbWqUsmzoU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119208989, "overview": "Detroit cop Axel Foley is back in sunny Southern California in the third installment of the comedic fish-out-of-water Beverly Hills Cop series. On the trail of two murderers, Axel again teams up with Los Angeles cop Billy Rosewood. Soon, they discover that an amusement park is being used as a front for a massive counterfeiting ring -- and it's run by the same gang that shot Billy's boss.", "video": false, "id": 306, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Beverly Hills Cop III", "tagline": "In for the ride of his life!", "vote_count": 125, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lhZQuT76B9YcxZIudXZMhhWCKcl.jpg", "poster_path": "/ty7zsl0xkVDUlibYkFUjRAYUkvE.jpg", "id": 85861, "name": "Beverly Hills Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109254", "adult": false, "backdrop_path": "/8zmlsQINxvU5ly3Qn3K1dtAAPGu.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Eddie Murphy Productions", "id": 30}], "release_date": "1994-05-24", "popularity": 0.737076951281153, "original_title": "Beverly Hills Cop III", "budget": 50000000, "cast": [{"name": "Eddie Murphy", "character": "Axel Foley", "id": 776, "credit_id": "52fe4235c3a36847f800c2e7", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Judge Reinhold", "character": "Billy Rosewood", "id": 777, "credit_id": "52fe4235c3a36847f800c2fb", "cast_id": 7, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 1}, {"name": "H\u00e9ctor Elizondo", "character": "Jon Flint", "id": 1210, "credit_id": "52fe4235c3a36847f800c2eb", "cast_id": 2, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 2}, {"name": "George Lucas", "character": "Disappointed Man", "id": 1, "credit_id": "52fe4235c3a36847f800c2f7", "cast_id": 5, "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "order": 3}, {"name": "Bronson Pinchot", "character": "Serge", "id": 4689, "credit_id": "52fe4235c3a36847f800c2ef", "cast_id": 3, "profile_path": "/hGaFZsohQbRIskmkLtNbwJNgLPN.jpg", "order": 4}, {"name": "Joe Dante", "character": "Jailer", "id": 4600, "credit_id": "52fe4235c3a36847f800c2f3", "cast_id": 4, "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "order": 5}, {"name": "Jon Tenney", "character": "Levine", "id": 4602, "credit_id": "52fe4235c3a36847f800c2ff", "cast_id": 8, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 6}, {"name": "Joey Travolta", "character": "Giolito", "id": 4603, "credit_id": "52fe4235c3a36847f800c303", "cast_id": 9, "profile_path": "/7wNm5XjMTbMM7EoetlXPfEw6T8x.jpg", "order": 7}, {"name": "Theresa Randle", "character": "Janice", "id": 4604, "credit_id": "52fe4235c3a36847f800c307", "cast_id": 10, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 8}, {"name": "Eugene Collier", "character": "Leppert", "id": 4605, "credit_id": "52fe4235c3a36847f800c30b", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jimmy Ortega", "character": "Rondell", "id": 4606, "credit_id": "52fe4235c3a36847f800c30f", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Ousaun Elam", "character": "Pederson", "id": 4607, "credit_id": "52fe4235c3a36847f800c313", "cast_id": 13, "profile_path": "/wYr28o3cuqZ3iLCMWBMwjhrA05o.jpg", "order": 11}, {"name": "Ray Lykins", "character": "Nixon", "id": 4608, "credit_id": "52fe4235c3a36847f800c317", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Tim Gilbert", "character": "McKee", "id": 4609, "credit_id": "52fe4235c3a36847f800c31b", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Gilbert R. Hill", "character": "Insp. Douglas Todd", "id": 787, "credit_id": "52fe4235c3a36847f800c361", "cast_id": 27, "profile_path": "/9kgwJTs4hT9oJuRiC4zj4zxwn68.jpg", "order": 14}, {"name": "Arthur Hiller", "character": "Bar Patron", "id": 133259, "credit_id": "52fe4235c3a36847f800c371", "cast_id": 30, "profile_path": "/irrSj7cAn2ByM7hhu2emkMdFOai.jpg", "order": 15}, {"name": "Timothy Carnhart", "character": "Ellis Dewald", "id": 1264849, "credit_id": "52fe4235c3a36847f800c375", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Timothy Carhart", "character": "Ellis Dewald", "id": 17396, "credit_id": "52fe4235c3a36847f800c379", "cast_id": 32, "profile_path": "/1UEUs6UJdxjSbGakZflWuN4TS7T.jpg", "order": 17}, {"name": "John Saxon", "character": "Orrin Sanderson", "id": 11163, "credit_id": "52fe4235c3a36847f800c37d", "cast_id": 33, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 18}, {"name": "Ray Harryhausen", "character": "Bar Patron", "id": 66758, "credit_id": "52fe4235c3a36847f800c381", "cast_id": 34, "profile_path": "/nxsvHuPnWQBFuGOq6Gs100kh74R.jpg", "order": 19}, {"name": "Peter Medak", "character": "Man at Corner", "id": 21377, "credit_id": "52fe4235c3a36847f800c385", "cast_id": 35, "profile_path": null, "order": 20}], "directors": [{"name": "John Landis", "department": "Directing", "job": "Director", "credit_id": "52fe4235c3a36847f800c321", "profile_path": "/pHqwE4XKehtONaRVyXAml0I3mSy.jpg", "id": 4610}], "vote_average": 5.8, "runtime": 104}, "10030": {"poster_path": "/kmVYfdfjL9RqzAJHJziX7boVZrL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53821887, "overview": "Cursed since childhood, dentist Charlie Kagan (Dane Cook) cannot find the right woman. Even worse, he learns that each of his ex-girlfriends finds true love with the man she meets after her relationship with him ends. Hearing of Charlie's reputation as a good-luck charm, women from all over line up for a quick tryst. But when Charlie meets the woman of his dreams (Jessica Alba), he must find a way to break the curse or risk losing her to the next man she meets.", "video": false, "id": 10030, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Good Luck Chuck", "tagline": "He has to break his curse before she breaks his heart.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452625", "adult": false, "backdrop_path": "/79nRnl5Qbkwfz0Wdw8dVwF4wZEC.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Karz Entertainment", "id": 4194}], "release_date": "2007-06-13", "popularity": 1.46333199818748, "original_title": "Good Luck Chuck", "budget": 25000000, "cast": [{"name": "Jessica Alba", "character": "Cam Wexler", "id": 56731, "credit_id": "52fe430c9251416c75001893", "cast_id": 42, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Dane Cook", "character": "Dr. Charlie Logan", "id": 31837, "credit_id": "52fe430c9251416c75001897", "cast_id": 43, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Dr. Stu Kaminsky", "id": 58873, "credit_id": "52fe430c9251416c7500189b", "cast_id": 44, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Lonny Ross", "character": "Joe", "id": 205300, "credit_id": "52fe430c9251416c7500189f", "cast_id": 45, "profile_path": "/qFUZ40vwlKMt330iewR8nmRILER.jpg", "order": 3}, {"name": "Ellia English", "character": "Reba", "id": 62171, "credit_id": "52fe430c9251416c750018a3", "cast_id": 46, "profile_path": "/iuT91E3ei6ECBWyTVNlL59aJ6sC.jpg", "order": 4}, {"name": "Chelan Simmons", "character": "Carol", "id": 27775, "credit_id": "52fe430c9251416c750018a7", "cast_id": 47, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 5}, {"name": "Chiara Zanni", "character": "Bride", "id": 33053, "credit_id": "52fe430c9251416c750018ab", "cast_id": 48, "profile_path": "/vN7xP1ICUctUflNdYv4QskbuALn.jpg", "order": 6}, {"name": "Carrie Fleming", "character": "Dirty Talker", "id": 58908, "credit_id": "52fe430c9251416c750018af", "cast_id": 49, "profile_path": "/chrDx14YRApEwzD05kdWSjpZSIE.jpg", "order": 7}], "directors": [{"name": "Mark Helfrich", "department": "Directing", "job": "Director", "credit_id": "52fe430c9251416c7500184d", "profile_path": null, "id": 1098}], "vote_average": 5.7, "runtime": 101}, "10032": {"poster_path": "/sGX7RUBhf9i8nI3cfGHISDnAna0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6086508, "overview": "Taj Mahal Badalandabad leaves Coolidge College behind for the halls of Camford University in England, where he looks to continue his education, and teach an uptight student how to make the most out of her academic career.", "video": false, "id": 10032, "genres": [{"id": 35, "name": "Comedy"}], "title": "Van Wilder 2: The Rise of Taj", "tagline": "The Legend is Growing.", "vote_count": 90, "homepage": "http://www.riseoftaj.com/", "belongs_to_collection": {"backdrop_path": "/fvkR1SE5i1qUVHM5vewIf9jozcu.jpg", "poster_path": "/phxBWdWHgtUpns0XU33JbBKMgsx.jpg", "id": 43220, "name": "National Lampoon\u2019s Van Wilder Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480271", "adult": false, "backdrop_path": "/jOkaQNu8LKEHGY3x804SEO3Gs6f.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2006-12-01", "popularity": 0.553539616119303, "original_title": "Van Wilder 2: The Rise of Taj", "budget": 0, "cast": [{"name": "Kal Penn", "character": "Taj", "id": 53493, "credit_id": "52fe430d9251416c75001aab", "cast_id": 30, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 0}, {"name": "Daniel Percival", "character": "Pip", "id": 62221, "credit_id": "52fe430d9251416c75001ac1", "cast_id": 34, "profile_path": "/tLIpxTrz4ASYge2dJcyvD8wgNTd.jpg", "order": 1}, {"name": "Lauren Cohan", "character": "Charlotte", "id": 62220, "credit_id": "52fe430d9251416c75001ac5", "cast_id": 35, "profile_path": "/5W4AV3ZXn38NlEMqPy9QPjwRRz8.jpg", "order": 2}, {"name": "Glen Barry", "character": "Seamus", "id": 62222, "credit_id": "52fe430d9251416c75001ac9", "cast_id": 36, "profile_path": null, "order": 3}, {"name": "Anthony Cozens", "character": "Gethin", "id": 62223, "credit_id": "52fe430d9251416c75001acd", "cast_id": 37, "profile_path": null, "order": 4}, {"name": "Steven Rathman", "character": "Simon", "id": 62224, "credit_id": "52fe430d9251416c75001ad1", "cast_id": 38, "profile_path": null, "order": 5}, {"name": "Amy Steel", "character": "Alexandra", "id": 58710, "credit_id": "52fe430d9251416c75001ad5", "cast_id": 39, "profile_path": "/mO8bYH4O6LnYW9wOTWm9CKzGToU.jpg", "order": 6}, {"name": "Jonathan Cecil", "character": "Provost Cunningham", "id": 47857, "credit_id": "52fe430d9251416c75001ad9", "cast_id": 40, "profile_path": "/x5O04sNEkhljiuewQL2mwW28Yg8.jpg", "order": 7}, {"name": "Holly Davidson", "character": "Sadie", "id": 62225, "credit_id": "52fe430d9251416c75001add", "cast_id": 41, "profile_path": "/xcCOx1iP8KLKHtQ5vkfZ9uvIDiL.jpg", "order": 8}, {"name": "Roger Hammond", "character": "Camford Dean", "id": 27660, "credit_id": "52fe430d9251416c75001ae1", "cast_id": 42, "profile_path": null, "order": 9}, {"name": "Kulvinder Ghir", "character": "Taj's Father", "id": 62229, "credit_id": "52fe430d9251416c75001ae9", "cast_id": 44, "profile_path": null, "order": 10}, {"name": "Beth Steel", "character": "Penelope", "id": 62227, "credit_id": "52fe430d9251416c75001ae5", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "William de Coverly", "character": "Roger", "id": 62226, "credit_id": "52fe430d9251416c75001aed", "cast_id": 45, "profile_path": null, "order": 12}, {"name": "Tom Davey", "character": "Percy", "id": 62228, "credit_id": "52fe430d9251416c75001af1", "cast_id": 46, "profile_path": null, "order": 13}, {"name": "Shobu Kapoor", "character": "Taj's Mother", "id": 62230, "credit_id": "52fe430d9251416c75001af5", "cast_id": 47, "profile_path": null, "order": 14}, {"name": "Trevor Baxter", "character": "Sir Wilfred Owen", "id": 62233, "credit_id": "52fe430d9251416c75001af9", "cast_id": 48, "profile_path": null, "order": 15}, {"name": "Christopher Robbie", "character": "Old Bearded Man", "id": 62234, "credit_id": "52fe430d9251416c75001b05", "cast_id": 51, "profile_path": null, "order": 16}, {"name": "Cornelia Pavlovici", "character": "Charlotte's Mother", "id": 62232, "credit_id": "52fe430d9251416c75001b01", "cast_id": 50, "profile_path": null, "order": 17}, {"name": "Rupert Frazer", "character": "Charlotte's Father", "id": 62231, "credit_id": "52fe430d9251416c75001afd", "cast_id": 49, "profile_path": null, "order": 18}, {"name": "Ashly Margaret Rae", "character": "Irish Woman", "id": 62235, "credit_id": "52fe430d9251416c75001b15", "cast_id": 54, "profile_path": null, "order": 19}], "directors": [{"name": "Mort Nathan", "department": "Directing", "job": "Director", "credit_id": "52fe430d9251416c75001a35", "profile_path": null, "id": 57962}], "vote_average": 5.3, "runtime": 97}, "10033": {"poster_path": "/cyih5NtdEXF0uSGWJFWgiIEQknb.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50817508, "overview": "While visiting his hometown during Christmas, a man comes face-to-face with his old high school crush whom he was best friends with -- a woman whose rejection of him turned him into a ferocious womanizer.", "video": false, "id": 10033, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Just Friends", "tagline": "He loves her. She loves him not.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433400", "adult": false, "backdrop_path": "/d9Qqu2gOnCyf5J6p2ybUyICNGXX.jpg", "production_companies": [{"name": "Cinezeta", "id": 5496}, {"name": "New Line Cinema", "id": 12}], "release_date": "2005-11-23", "popularity": 0.901795324606383, "original_title": "Just Friends", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Chris Brander", "id": 10859, "credit_id": "52fe430e9251416c75001bed", "cast_id": 21, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Amy Smart", "character": "Jamie Palamino", "id": 20189, "credit_id": "52fe430e9251416c75001bf7", "cast_id": 23, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Anna Faris", "character": "Samantha James", "id": 1772, "credit_id": "52fe430e9251416c75001c01", "cast_id": 25, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Chris Klein", "character": "Dusty Dinkleman", "id": 21594, "credit_id": "52fe430e9251416c75001c05", "cast_id": 26, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 3}, {"name": "Chris Marquette", "character": "Mike Brander", "id": 59238, "credit_id": "52fe430e9251416c75001c09", "cast_id": 27, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 4}, {"name": "Julie Hagerty", "character": "Carol Brander", "id": 14415, "credit_id": "52fe430e9251416c75001c13", "cast_id": 29, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 5}, {"name": "Giacomo Beltrami", "character": "Young Mike Brander", "id": 62244, "credit_id": "52fe430e9251416c75001c17", "cast_id": 30, "profile_path": null, "order": 6}, {"name": "Amy Matysio", "character": "Darla", "id": 62246, "credit_id": "52fe430e9251416c75001c1b", "cast_id": 31, "profile_path": "/au9d1bdeFkpjs9OEVl2vKrCmf6z.jpg", "order": 7}, {"name": "Fred Ewanuick", "character": "Clark", "id": 62245, "credit_id": "52fe430e9251416c75001c25", "cast_id": 33, "profile_path": "/gwKOB2XIRzWy6e1ClWSg1OBiuOA.jpg", "order": 8}, {"name": "Wendy Anderson", "character": "Mrs. Palamino", "id": 62247, "credit_id": "52fe430e9251416c75001c29", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Barry Flatman", "character": "Mr. Palamino", "id": 43429, "credit_id": "52fe430e9251416c75001c2d", "cast_id": 35, "profile_path": "/bRFwheAG7219yIbmVfrdqAMVhcI.jpg", "order": 10}, {"name": "Ty Olsson", "character": "Tim", "id": 42711, "credit_id": "52fe430e9251416c75001c31", "cast_id": 36, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 11}, {"name": "Devyn Burant", "character": "Brett", "id": 62248, "credit_id": "52fe430e9251416c75001c35", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Mike O'Brien", "character": "Hockey Dad", "id": 62250, "credit_id": "52fe430e9251416c75001c39", "cast_id": 38, "profile_path": "/p5eI0r5oSwumWjBTZRkyZvoqQs9.jpg", "order": 13}, {"name": "Jaden Ryan", "character": "Joey", "id": 62249, "credit_id": "52fe430e9251416c75001c3d", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Todd Lewis", "character": "Kyle", "id": 62252, "credit_id": "52fe430e9251416c75001c41", "cast_id": 40, "profile_path": null, "order": 15}, {"name": "Annie Brebner", "character": "Sarah", "id": 62251, "credit_id": "52fe430e9251416c75001c45", "cast_id": 41, "profile_path": null, "order": 16}, {"name": "Justin Kirby", "character": "Jock #1", "id": 62253, "credit_id": "52fe430e9251416c75001c49", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Jackie Mitchell", "character": "Jock #2", "id": 62254, "credit_id": "52fe430e9251416c75001c4d", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Stephen Root", "character": "KC", "id": 17401, "credit_id": "52fe430e9251416c75001c51", "cast_id": 44, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 19}], "directors": [{"name": "Roger Kumble", "department": "Directing", "job": "Director", "credit_id": "52fe430e9251416c75001bfd", "profile_path": "/uGKg8pacbWifsUK5IBvmPziHDKK.jpg", "id": 11873}], "vote_average": 5.9, "runtime": 96}, "1844": {"poster_path": "/6IKmjW52qeMXx8xXMdX6RRshmY0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87707396, "overview": "When retired thief Robert \"Mac\" MacDougal is implicated in the disappearance of a priceless painting, insurance investigator Virginia \"Gin\" Baker sets a trap to catch her suspect. But Gin is not exactly who she seems. Soon, she and Mac have joined forces to pull off -- quite literally -- the heist of the millennium.", "video": false, "id": 1844, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Entrapment", "tagline": "The trap is set.", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0137494", "adult": false, "backdrop_path": "/rTiBx0BgeBxEsocyVE3gF4eJrJw.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Taurus Films", "id": 897}, {"name": "Fountainbridge Films", "id": 414}, {"name": "Regency Enterprises", "id": 508}], "release_date": "1999-04-29", "popularity": 0.699513235333315, "original_title": "Entrapment", "budget": 66000000, "cast": [{"name": "Catherine Zeta-Jones", "character": "Virginia Baker", "id": 1922, "credit_id": "52fe431ac3a36847f803a4af", "cast_id": 1, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Sean Connery", "character": "Robert MacDougal", "id": 738, "credit_id": "52fe431ac3a36847f803a4b3", "cast_id": 2, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 1}, {"name": "Ving Rhames", "character": "Aaron Thibadeaux", "id": 10182, "credit_id": "52fe431ac3a36847f803a4d5", "cast_id": 8, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 2}, {"name": "Will Patton", "character": "Hector Cruz", "id": 883, "credit_id": "52fe431ac3a36847f803a4d9", "cast_id": 9, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 3}, {"name": "Maury Chaykin", "character": "Conrad Greene", "id": 7868, "credit_id": "52fe431ac3a36847f803a4dd", "cast_id": 10, "profile_path": "/jhJgkb5P0oAW7QtULjqD2kaN0ez.jpg", "order": 4}, {"name": "Kevin McNally", "character": "Haas", "id": 2449, "credit_id": "52fe431ac3a36847f803a4e1", "cast_id": 11, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 5}, {"name": "Terry O'Neill", "character": "Quinn", "id": 82410, "credit_id": "52fe431ac3a36847f803a4e5", "cast_id": 12, "profile_path": "/gJazxnZsm4sDavnP7gedgO7rtpw.jpg", "order": 6}, {"name": "Madhav Sharma", "character": "Security Chief", "id": 152281, "credit_id": "52fe431ac3a36847f803a4e9", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "David Yip", "character": "Chief of Police", "id": 696, "credit_id": "52fe431ac3a36847f803a4ed", "cast_id": 14, "profile_path": "/s2ApWZ620ZMe8nwvKM2y8TwjenE.jpg", "order": 8}, {"name": "Tim Potter", "character": "Millennium Man", "id": 79888, "credit_id": "52fe431ac3a36847f803a4f1", "cast_id": 15, "profile_path": "/n9FA6vPyAZFdgddoRJLr1aDQWFX.jpg", "order": 9}, {"name": "Aaron Swartz", "character": "Cruz's Man", "id": 185399, "credit_id": "52fe431ac3a36847f803a4f5", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "William Marsh", "character": "Computer Technician", "id": 183930, "credit_id": "52fe431ac3a36847f803a4f9", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Tony Xu", "character": "Banker", "id": 1089911, "credit_id": "52fe431ac3a36847f803a4fd", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Rolf Saxon", "character": "Director", "id": 151438, "credit_id": "52fe431ac3a36847f803a501", "cast_id": 20, "profile_path": "/vyi4D34Gj6FNINOF7abt1ZahFW4.jpg", "order": 13}, {"name": "Tom Clarke Hill", "character": "Operator", "id": 1089912, "credit_id": "52fe431ac3a36847f803a505", "cast_id": 21, "profile_path": "/Ojy1RMeqVH2o5N8v0682q8YMA8.jpg", "order": 14}, {"name": "David Howard", "character": "Technician", "id": 1089913, "credit_id": "52fe431ac3a36847f803a509", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Sai-Kit Yung", "character": "Doctor", "id": 62937, "credit_id": "52fe431ac3a36847f803a50d", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Ravin J. Ganatra", "character": "1st Security Guard", "id": 195599, "credit_id": "52fe431ac3a36847f803a511", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Rhydian Jai-Persad", "character": "2nd Security Guard", "id": 1089914, "credit_id": "52fe431ac3a36847f803a515", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Hari Dhillon", "character": "3rd Security Guard", "id": 202939, "credit_id": "52fe431ac3a36847f803a519", "cast_id": 26, "profile_path": "/mzlWa84jhQNjvgHAqtnMxl03yUK.jpg", "order": 19}, {"name": "Eric Meyers", "character": "Waverly Technician", "id": 933883, "credit_id": "52fe431ac3a36847f803a51d", "cast_id": 27, "profile_path": "/mDMzeDh9TMrfcxoEXZmvtWqgGZ3.jpg", "order": 20}], "directors": [{"name": "Jon Amiel", "department": "Directing", "job": "Director", "credit_id": "52fe431ac3a36847f803a4b9", "profile_path": "/hpKrOAFWUwiPflcSrkAFDcajy1b.jpg", "id": 15148}], "vote_average": 6.0, "runtime": 113}, "10040": {"poster_path": "/fMIm5xFB1VcW67b6VS8OMH89F1y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After her triumph at the Miss United States pageant, FBI agent Gracie Hart becomes an overnight sensation -- and the new \"face of the FBI.\" But it's time to spring into action again when the pageant's winner, Cheryl, and emcee, Stan, are abducted.", "video": false, "id": 10040, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Miss Congeniality 2: Armed and Fabulous", "tagline": "You might feel a little prick", "vote_count": 103, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7TIT28YbhAOeQGD2q2hJ9j83jI1.jpg", "poster_path": "/fyjlq7Xi7d3YPLj4MrDDdmOPlNF.jpg", "id": 93220, "name": "Miss Congeniality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0385307", "adult": false, "backdrop_path": "/6hP5pzQojs062MQiQ2nRNZmIPhv.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Fortis Films", "id": 4258}], "release_date": "2005-03-11", "popularity": 1.6314776590698, "original_title": "Miss Congeniality 2: Armed and Fabulous", "budget": 0, "cast": [{"name": "Sandra Bullock", "character": "Gracie Hart", "id": 18277, "credit_id": "52fe43109251416c750020f9", "cast_id": 12, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Regina King", "character": "Sam Fuller", "id": 9788, "credit_id": "52fe43109251416c750020fd", "cast_id": 13, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 1}, {"name": "Enrique Murciano", "character": "Jeff Foreman", "id": 12798, "credit_id": "52fe43109251416c75002101", "cast_id": 14, "profile_path": "/nC37xKp4UdGylXFSJv94eQNTtja.jpg", "order": 2}, {"name": "William Shatner", "character": "Stan Fields", "id": 1748, "credit_id": "52fe43109251416c75002105", "cast_id": 15, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 3}, {"name": "Eileen Brennan", "character": "Carol Fields", "id": 39015, "credit_id": "52fe43109251416c75002115", "cast_id": 18, "profile_path": "/4D5DqoORpVjDeZASwSvVpCa43nJ.jpg", "order": 4}, {"name": "Ernie Hudson", "character": "FBI Asst. Director Harry McDonald", "id": 8874, "credit_id": "52fe43109251416c75002119", "cast_id": 20, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 5}, {"name": "Elisabeth R\u00f6hm", "character": "Agent Janet McKaren", "id": 126932, "credit_id": "52fe43109251416c7500211d", "cast_id": 21, "profile_path": "/67qIdPzAY5XrK895EyUpJI2QF8N.jpg", "order": 6}, {"name": "Nick Offerman", "character": "Karl Steele", "id": 17039, "credit_id": "52fe43109251416c75002121", "cast_id": 22, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 7}, {"name": "Abraham Benrubi", "character": "Lou Steele", "id": 21132, "credit_id": "52fe43109251416c75002125", "cast_id": 23, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 8}, {"name": "Treat Williams", "character": "FBI Asst. Director Walter Collins", "id": 4515, "credit_id": "52fe43109251416c75002129", "cast_id": 24, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 9}, {"name": "Heather Burns", "character": "Cheryl Frasier", "id": 26716, "credit_id": "52fe43109251416c7500212d", "cast_id": 25, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 10}, {"name": "Diedrich Bader", "character": "Joel Meyers", "id": 5727, "credit_id": "52fe43109251416c75002131", "cast_id": 26, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 11}, {"name": "Octavia Spencer", "character": "Octavia", "id": 6944, "credit_id": "52fe43109251416c75002135", "cast_id": 27, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 12}, {"name": "Leslie Grossman", "character": "Pam", "id": 1212123, "credit_id": "52fe43109251416c75002139", "cast_id": 28, "profile_path": "/csgXB866zx0s6Cx45ew50Uh3wHv.jpg", "order": 13}], "directors": [{"name": "John Pasquin", "department": "Directing", "job": "Director", "credit_id": "52fe43109251416c750020c5", "profile_path": null, "id": 58072}], "vote_average": 5.3, "runtime": 115}, "1850": {"poster_path": "/i6jNmO6vynStAy23KUhOwetX6Bs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47434430, "overview": "A film about the life and career of the eccentric avant-garde comedian, Andy Kaufman.", "video": false, "id": 1850, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Man on the Moon", "tagline": "Hello, my name is Andy and this is my movie.", "vote_count": 117, "homepage": "http://www.universalpictures.com/manonthemoon/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0125664", "adult": false, "backdrop_path": "/iFwGjAClduDghlaNTFGwSNNLuGf.jpg", "production_companies": [{"name": "Mutual Film Company", "id": 762}], "release_date": "1999-12-22", "popularity": 0.323482540205087, "original_title": "Man on the Moon", "budget": 82000000, "cast": [{"name": "Jim Carrey", "character": "Andy Kaufman/Tony Clifton", "id": 206, "credit_id": "52fe431ac3a36847f803a85d", "cast_id": 17, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Courtney Love", "character": "Lynne Margulies", "id": 7621, "credit_id": "52fe431ac3a36847f803a87b", "cast_id": 24, "profile_path": "/6AUeDL2aDErq4Kx33uIAP2KyHHi.jpg", "order": 1}, {"name": "Bob Zmuda", "character": "Jack Burns", "id": 25336, "credit_id": "52fe431ac3a36847f803a883", "cast_id": 26, "profile_path": "/jXC1XpcwRxYdNna5cKNeCZkqaVg.jpg", "order": 2}, {"name": "Danny DeVito", "character": "George Shapiro", "id": 518, "credit_id": "52fe431ac3a36847f803a865", "cast_id": 19, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 3}, {"name": "Gerry Becker", "character": "Stanley Kaufman", "id": 19468, "credit_id": "52fe431ac3a36847f803a861", "cast_id": 18, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 4}, {"name": "Leslie Lyles", "character": "Janice Kaufman", "id": 19469, "credit_id": "52fe431ac3a36847f803a869", "cast_id": 20, "profile_path": "/uUsBo2oIA6QDY7LKqs6wEzZKU7C.jpg", "order": 5}, {"name": "Greyson Erik Pendry", "character": "Little Michael Kaufman", "id": 19470, "credit_id": "52fe431ac3a36847f803a86d", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "George Shapiro", "character": "Mr. Besserman", "id": 19471, "credit_id": "52fe431ac3a36847f803a871", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Vincent Schiavelli", "character": "Maynard Smith", "id": 3418, "credit_id": "52fe431ac3a36847f803a87f", "cast_id": 25, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 8}, {"name": "Paul Giamatti", "character": "Bob Zmuda", "id": 13242, "credit_id": "52fe431ac3a36847f803a887", "cast_id": 27, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 9}, {"name": "Christopher Lloyd", "character": "Christopher Lloyd - 'Taxi' Actor", "id": 1062, "credit_id": "52fe431ac3a36847f803a88b", "cast_id": 28, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 10}, {"name": "Jeff Conaway", "character": "Jeff Conaway - 'Taxi' Actor", "id": 8894, "credit_id": "5423b6f80e0a263b74002ecd", "cast_id": 30, "profile_path": "/seX29fe7LrCXvKaq7RPrKD23EIS.jpg", "order": 11}], "directors": [{"name": "Milo\u0161 Forman", "department": "Directing", "job": "Director", "credit_id": "52fe431ac3a36847f803a7ff", "profile_path": "/nKnsrK9h02F1QlMetkyr9R45VGM.jpg", "id": 3974}], "vote_average": 6.7, "runtime": 118}, "26428": {"poster_path": "/hZcl4TuZYTNWztIP8Zpvr6YLxiY.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 38422082, "overview": "A historical drama set in Roman Egypt, concerning philosopher Hypatia of Alexandria and her relationship with her slave Davus, who is torn between his love for her and the possibility of gaining his freedom by joining the rising tide of Christianity.", "video": false, "id": 26428, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Agora", "tagline": "Alexandria, Egypt. 391 A.D. The World Changed Forever.", "vote_count": 93, "homepage": "http://www.agoralapelicula.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1186830", "adult": false, "backdrop_path": "/vxsR4pjm8VNFrywz9TQLj3loxNB.jpg", "production_companies": [{"name": "Mod Producciones", "id": 5444}, {"name": "Himen\u00f3ptero", "id": 784}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "Government of Malta", "id": 19927}, {"name": "Nimar Studios", "id": 7636}], "release_date": "2009-05-17", "popularity": 0.814430941577973, "original_title": "Agora", "budget": 70000000, "cast": [{"name": "Rachel Weisz", "character": "Hypatia", "id": 3293, "credit_id": "52fe4501c3a368484e04337b", "cast_id": 1, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 0}, {"name": "Max Minghella", "character": "Davus", "id": 2978, "credit_id": "52fe4501c3a368484e04337f", "cast_id": 2, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 1}, {"name": "Oscar Isaac", "character": "Orestes", "id": 25072, "credit_id": "52fe4501c3a368484e043383", "cast_id": 3, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 2}, {"name": "Ashraf Barhom", "character": "Ammonius", "id": 766, "credit_id": "52fe4501c3a368484e0433a9", "cast_id": 13, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 3}, {"name": "Michael Lonsdale", "character": "Theon", "id": 2369, "credit_id": "52fe4501c3a368484e0433a1", "cast_id": 11, "profile_path": "/3C07s7mFBEFoV1ye7jDdoNWrN8b.jpg", "order": 4}, {"name": "Rupert Evans", "character": "Synesius", "id": 17283, "credit_id": "52fe4501c3a368484e043399", "cast_id": 7, "profile_path": "/AuPOKHD18bE2jKXONvrMLGVQ744.jpg", "order": 5}, {"name": "Homayoun Ershadi", "character": "Aspasius", "id": 117528, "credit_id": "544a1c1bc3a3680fc300335d", "cast_id": 80, "profile_path": "/iJ7Oukp3TVfoTYdqkoVXg8ZEleJ.jpg", "order": 6}, {"name": "Sami Samir", "character": "Cyril", "id": 124398, "credit_id": "52fe4501c3a368484e04339d", "cast_id": 10, "profile_path": "/zwVAmtQUMEMPoBIoIzPQ0fhULN.jpg", "order": 7}, {"name": "Richard Durden", "character": "Olympius", "id": 120833, "credit_id": "52fe4501c3a368484e0433b5", "cast_id": 16, "profile_path": "/jtsGAARS6sNDfHPGl4xrJdtSEb3.jpg", "order": 8}, {"name": "Omar Mostafa", "character": "Isidorus", "id": 369256, "credit_id": "52fe4501c3a368484e0433b1", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Manuel Cauchi", "character": "Theophilus", "id": 121546, "credit_id": "52fe4501c3a368484e0433c1", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Oshri Cohen", "character": "Medorus", "id": 77820, "credit_id": "52fe4501c3a368484e0433c5", "cast_id": 21, "profile_path": "/sERLbgSz08OPmz1hn4vK2Se9ciy.jpg", "order": 11}, {"name": "Clint Dyer", "character": "Hierax", "id": 109383, "credit_id": "52fe4501c3a368484e0433a5", "cast_id": 12, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 12}, {"name": "Yousef Sweid", "character": "Pierre", "id": 312548, "credit_id": "52fe4501c3a368484e0433b9", "cast_id": 17, "profile_path": "/sicjElxgtIASUW0y0v1LT9siWTN.jpg", "order": 13}, {"name": "Amber Rose Revah", "character": "Sidonia", "id": 574378, "credit_id": "52fe4501c3a368484e0433bd", "cast_id": 18, "profile_path": "/uWKJDbkZqttvc1os3UNanSmh5Aa.jpg", "order": 14}, {"name": "Charles Thake", "character": "Hesiquius", "id": 968928, "credit_id": "52fe4501c3a368484e0433c9", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Harry Borg", "character": "Prefect Evragius", "id": 968929, "credit_id": "52fe4501c3a368484e0433cd", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Sam Cox", "character": "Pagan Rival", "id": 195232, "credit_id": "52fe4501c3a368484e0433d1", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "George Harris", "character": "Heladius Dignitary", "id": 2247, "credit_id": "52fe4501c3a368484e0433d5", "cast_id": 25, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 18}, {"name": "Sylvester Morand", "character": "Dignitary", "id": 36664, "credit_id": "52fe4501c3a368484e0433d9", "cast_id": 26, "profile_path": "/yKtoG2NtNtWtRa5ZlgWKctUfbPg.jpg", "order": 19}, {"name": "Paul Barnes", "character": "Dignitary", "id": 548417, "credit_id": "52fe4501c3a368484e0433dd", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Jordan Kiziuk", "character": "Hypatia's Disciple", "id": 1069851, "credit_id": "52fe4501c3a368484e0433e1", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Francis Ghersci", "character": "Hypatia's disciple", "id": 1205982, "credit_id": "52fe4501c3a368484e0433e5", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Jonathan Grima", "character": "Hypatia's Disciple", "id": 1205983, "credit_id": "52fe4501c3a368484e0433e9", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Christopher Dingli", "character": "Student", "id": 84298, "credit_id": "52fe4501c3a368484e0433ed", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Stephen Buhagiar", "character": "Parabalano", "id": 1205987, "credit_id": "52fe4501c3a368484e0433f1", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Joseph Camilleri", "character": "Parabolano", "id": 1205988, "credit_id": "52fe4501c3a368484e0433f5", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Charles Sammut", "character": "Philosopher", "id": 1205989, "credit_id": "52fe4501c3a368484e0433f9", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Michael Sciortino", "character": "Philosopher", "id": 1205990, "credit_id": "52fe4501c3a368484e0433fd", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Joe Quattromani", "character": "Old Philosopher", "id": 1205991, "credit_id": "52fe4501c3a368484e043401", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "Alan Meadows", "character": "Rabbi", "id": 1205992, "credit_id": "52fe4501c3a368484e043405", "cast_id": 37, "profile_path": null, "order": 30}, {"name": "Peter Borg", "character": "Pagan Priest", "id": 1205994, "credit_id": "52fe4501c3a368484e043409", "cast_id": 38, "profile_path": null, "order": 31}, {"name": "Portelli Paul", "character": "Troublemaker", "id": 1205995, "credit_id": "52fe4501c3a368484e04340d", "cast_id": 39, "profile_path": null, "order": 32}, {"name": "Robert Ricards", "character": "Roman Officer", "id": 1205998, "credit_id": "52fe4501c3a368484e043411", "cast_id": 40, "profile_path": null, "order": 33}, {"name": "Alan Paris", "character": "Bodyguard", "id": 1206002, "credit_id": "52fe4501c3a368484e043415", "cast_id": 41, "profile_path": null, "order": 34}, {"name": "John Montanaro", "character": "Bodyguard", "id": 1206004, "credit_id": "52fe4501c3a368484e043419", "cast_id": 42, "profile_path": null, "order": 35}, {"name": "Malcolm Ellul", "character": "Bodyguard", "id": 1206006, "credit_id": "52fe4501c3a368484e04341d", "cast_id": 43, "profile_path": null, "order": 36}, {"name": "Ray Mangion", "character": "Crier via Canopica", "id": 1114427, "credit_id": "52fe4501c3a368484e043421", "cast_id": 44, "profile_path": null, "order": 37}, {"name": "Mary Rose Bonello", "character": "Old Jewish Woman", "id": 1206007, "credit_id": "52fe4501c3a368484e043425", "cast_id": 45, "profile_path": null, "order": 38}, {"name": "Clint Dyer", "character": "Parabolano", "id": 109383, "credit_id": "52fe4501c3a368484e043429", "cast_id": 46, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 39}, {"name": "Andre Agius", "character": "Child", "id": 1206008, "credit_id": "52fe4501c3a368484e04342d", "cast_id": 47, "profile_path": null, "order": 40}, {"name": "Frederick Testa", "character": "Christian", "id": 1206009, "credit_id": "52fe4501c3a368484e043431", "cast_id": 48, "profile_path": null, "order": 41}, {"name": "Sean Buhagiar", "character": "Christian student", "id": 1206010, "credit_id": "52fe4501c3a368484e043435", "cast_id": 49, "profile_path": null, "order": 42}, {"name": "Theresa Celia", "character": "Christian Woman", "id": 1206011, "credit_id": "52fe4501c3a368484e043439", "cast_id": 50, "profile_path": null, "order": 43}, {"name": "Frank Tanti", "character": "Deacon", "id": 1206012, "credit_id": "52fe4501c3a368484e04343d", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Anthony Ellul", "character": "Deacon", "id": 991203, "credit_id": "52fe4501c3a368484e043441", "cast_id": 52, "profile_path": null, "order": 45}, {"name": "Pierre Stafrace", "character": "Deacon", "id": 143973, "credit_id": "52fe4501c3a368484e043445", "cast_id": 53, "profile_path": null, "order": 46}, {"name": "Christopher Raikes", "character": "Frightened Hellenic Man", "id": 1206013, "credit_id": "52fe4501c3a368484e043449", "cast_id": 54, "profile_path": null, "order": 47}, {"name": "Clare Agius", "character": "Frightened Hellenic Woman", "id": 1206014, "credit_id": "52fe4501c3a368484e04344d", "cast_id": 55, "profile_path": null, "order": 48}, {"name": "Mario Camilleri", "character": "Alarmed Neighbour", "id": 1206015, "credit_id": "52fe4501c3a368484e043451", "cast_id": 56, "profile_path": null, "order": 49}, {"name": "Wesley Ellul", "character": "Guard", "id": 1206016, "credit_id": "52fe4501c3a368484e043455", "cast_id": 57, "profile_path": null, "order": 50}, {"name": "John Marinelli", "character": "Guard", "id": 1206017, "credit_id": "52fe4501c3a368484e043459", "cast_id": 58, "profile_path": null, "order": 51}, {"name": "Simon Cormi", "character": "Informer", "id": 1206018, "credit_id": "52fe4501c3a368484e04345d", "cast_id": 59, "profile_path": null, "order": 52}, {"name": "Peter Galea", "character": "Roman officer", "id": 1206019, "credit_id": "52fe4501c3a368484e043461", "cast_id": 60, "profile_path": null, "order": 53}, {"name": "Nikovich Sammut", "character": "Roman Officer", "id": 1206020, "credit_id": "52fe4501c3a368484e043465", "cast_id": 61, "profile_path": null, "order": 54}, {"name": "Ronnie Galea", "character": "Ship's Captain", "id": 1206021, "credit_id": "52fe4501c3a368484e043469", "cast_id": 62, "profile_path": null, "order": 55}, {"name": "David Ellul-Mercer", "character": "Slave", "id": 1206022, "credit_id": "52fe4502c3a368484e04346d", "cast_id": 63, "profile_path": null, "order": 56}, {"name": "Philip Mizzi", "character": "Surgeon", "id": 1206023, "credit_id": "52fe4502c3a368484e043471", "cast_id": 64, "profile_path": null, "order": 57}, {"name": "Alan Azzopardi", "character": "Suspicious Jew", "id": 1206024, "credit_id": "52fe4502c3a368484e043475", "cast_id": 65, "profile_path": null, "order": 58}, {"name": "Polly March", "character": "Woman with figs", "id": 1206025, "credit_id": "52fe4502c3a368484e043479", "cast_id": 66, "profile_path": null, "order": 59}, {"name": "Joe Pace", "character": "Stallkeeper", "id": 1206026, "credit_id": "52fe4502c3a368484e04347d", "cast_id": 67, "profile_path": null, "order": 60}, {"name": "John Suda", "character": "Customer", "id": 185321, "credit_id": "52fe4502c3a368484e043481", "cast_id": 68, "profile_path": null, "order": 61}, {"name": "Michael Tabone", "character": "Rabbi", "id": 1206027, "credit_id": "52fe4502c3a368484e043485", "cast_id": 69, "profile_path": null, "order": 62}, {"name": "Angele Galea", "character": "Charition", "id": 1206028, "credit_id": "52fe4502c3a368484e043489", "cast_id": 70, "profile_path": null, "order": 63}, {"name": "Malcolm Galea", "character": "Charition's Brother", "id": 121549, "credit_id": "52fe4502c3a368484e04348d", "cast_id": 71, "profile_path": null, "order": 64}, {"name": "Paul Celia", "character": "Indian King", "id": 1206029, "credit_id": "52fe4502c3a368484e043491", "cast_id": 72, "profile_path": null, "order": 65}, {"name": "Jean-Pierre Agius", "character": "Clown", "id": 1206030, "credit_id": "52fe4502c3a368484e043495", "cast_id": 73, "profile_path": null, "order": 66}, {"name": "Samuel Montague", "character": "Crier", "id": 1206031, "credit_id": "52fe4502c3a368484e043499", "cast_id": 74, "profile_path": null, "order": 67}, {"name": "Marieclaire Camilleri", "character": "Jewish Girl (uncredited)", "id": 1206032, "credit_id": "52fe4502c3a368484e04349d", "cast_id": 75, "profile_path": null, "order": 68}, {"name": "Edward Caruana Galizia", "character": "Student (uncredited)", "id": 1206033, "credit_id": "52fe4502c3a368484e0434a1", "cast_id": 76, "profile_path": null, "order": 69}, {"name": "Guilherme de Franco", "character": "Roman Officer (uncredited)", "id": 1206034, "credit_id": "52fe4502c3a368484e0434a5", "cast_id": 77, "profile_path": null, "order": 70}, {"name": "Juan Serrano", "character": "Dead Jew (uncredited)", "id": 1206035, "credit_id": "52fe4502c3a368484e0434a9", "cast_id": 78, "profile_path": null, "order": 71}, {"name": "Novica Todorovic", "character": "Parabalano Fighter (uncredited)", "id": 1206036, "credit_id": "52fe4502c3a368484e0434ad", "cast_id": 79, "profile_path": null, "order": 72}], "directors": [{"name": "Alejandro Amen\u00e1bar", "department": "Directing", "job": "Director", "credit_id": "52fe4501c3a368484e043389", "profile_path": "/uYDLRrpMM4Q7xf2LSCsMOVsy58Q.jpg", "id": 19840}], "vote_average": 6.7, "runtime": 127}, "10045": {"poster_path": "/AnXvj6g3MB5BLnKuQDNSyX4jvDc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 11208291, "overview": "Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.", "video": false, "id": 10045, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "District B13", "tagline": "Welcome to District B13. Welcome to the future", "vote_count": 143, "homepage": "http://www.banlieue13-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/6d8jbKsWVUKrKBHMcf9mvBkFCgv.jpg", "poster_path": "/j9ZhvTOa9gIQ48PsWfZuqwWNI7p.jpg", "id": 85946, "name": "The District 13 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0414852", "adult": false, "backdrop_path": "/jBXFaflksx1S5IYXgXc1sRBYj3V.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}], "release_date": "2004-11-09", "popularity": 0.670566499948552, "original_title": "Banlieue 13", "budget": 15000000, "cast": [{"name": "David Belle", "character": "Le\u00efto", "id": 62439, "credit_id": "52fe43119251416c75002405", "cast_id": 19, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 0}, {"name": "Tony D'Amario", "character": "K2", "id": 62441, "credit_id": "52fe43119251416c75002409", "cast_id": 20, "profile_path": "/oI4MpEpWONxgvUKnEI0Kvp3qigR.jpg", "order": 1}, {"name": "Bibi Naceri", "character": "Taha Bemamud", "id": 62442, "credit_id": "52fe43119251416c7500240d", "cast_id": 21, "profile_path": "/cbvHiJZ13tEvKUrW9biFcdwHsu9.jpg", "order": 2}, {"name": "Dany Verissimo-Petit", "character": "Lola", "id": 62443, "credit_id": "52fe43119251416c75002411", "cast_id": 23, "profile_path": "/l7eXaYqsVr8Nt4avd0GdXTxDHo9.jpg", "order": 4}, {"name": "Nicolas Woirion", "character": "Corsini", "id": 62445, "credit_id": "52fe43119251416c75002419", "cast_id": 25, "profile_path": "/3SN6yWLFzjV9y5Ie0FORI5Nyrih.jpg", "order": 5}, {"name": "Fran\u00e7ois Chattot", "character": "Kr\u00fcger", "id": 62444, "credit_id": "52fe43119251416c75002415", "cast_id": 24, "profile_path": "/c0RSg3XGPTW7Kf9vj7mObFv10Po.jpg", "order": 6}, {"name": "Patrick Olivier", "character": "Le colonel", "id": 62446, "credit_id": "52fe43119251416c7500241d", "cast_id": 26, "profile_path": "/hddKFQT65pMZojcwQX7yTkSheIp.jpg", "order": 7}, {"name": "Tarik Boucekhine", "character": "Yoyo", "id": 62449, "credit_id": "52fe43119251416c75002421", "cast_id": 27, "profile_path": "/5aFNa2p7Wyp3o5cYhjwt3DpEKFj.jpg", "order": 8}, {"name": "J\u00e9r\u00f4me Gadner", "character": "K2 boy 1", "id": 62448, "credit_id": "52fe43119251416c75002425", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Samir Guesmi", "character": "Jamel", "id": 62447, "credit_id": "52fe43119251416c75002429", "cast_id": 29, "profile_path": "/j0sc12uabqyFiPe2paz3XRof7Gw.jpg", "order": 10}, {"name": "Warren Zavatta", "character": "Para 3", "id": 62451, "credit_id": "52fe43119251416c7500242d", "cast_id": 30, "profile_path": "/1e5Nmrls6h469gRb95gzKxEstZE.jpg", "order": 11}, {"name": "Turan Bagci", "character": "Gorille entr\u00e9e Marronniers", "id": 62455, "credit_id": "52fe43119251416c75002431", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Gr\u00e9gory Jean", "character": "Para 2", "id": 62450, "credit_id": "52fe43119251416c75002435", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Dominique Dorol", "character": "Cerb\u00e8re Taha", "id": 62454, "credit_id": "52fe43119251416c75002439", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Azad", "character": "Tarik", "id": 62453, "credit_id": "52fe43119251416c7500243d", "cast_id": 34, "profile_path": "/1wy7QqQPkFZmRK9XuUXyq0CWiOF.jpg", "order": 15}, {"name": "Ludovic Berthillot", "character": "Le gros mercenaire", "id": 62452, "credit_id": "52fe43119251416c75002441", "cast_id": 35, "profile_path": "/cdJ7RyZfluO233x4jMgLcpOYmh6.jpg", "order": 16}, {"name": "Chamsi Charlesia", "character": "Garde 2", "id": 62456, "credit_id": "52fe43119251416c75002445", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Nicolas Wan Park", "character": "Le Chinois", "id": 62458, "credit_id": "52fe43119251416c75002449", "cast_id": 37, "profile_path": "/idzQyIly8UsDemrlGJTZsYX8icY.jpg", "order": 18}, {"name": "Gilles Gambino", "character": "Garde 1", "id": 62457, "credit_id": "52fe43119251416c7500244d", "cast_id": 38, "profile_path": "/bBsBwpZGcX3o6t4d92S87kXHt2Z.jpg", "order": 19}, {"name": "Cyril Raffaelli", "character": "Capt. Damien Tomaso", "id": 21946, "credit_id": "52fe43119251416c75002457", "cast_id": 40, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 20}], "directors": [{"name": "Pierre Morel", "department": "Directing", "job": "Director", "credit_id": "52fe43119251416c750023ad", "profile_path": "/yyhcEUYW4znC6JbNKZv2OJp1Cy0.jpg", "id": 35453}], "vote_average": 6.4, "runtime": 84}, "10047": {"poster_path": "/3XCzDTqh4X5YHxwys0IOpDyi7ly.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In 1429 a teenage girl from a remote French village stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. Following her mission to reclaim god's dimished kingdom - through her amazing victories until her violent and untimely death.", "video": false, "id": 10047, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Messenger: The Story of Joan of Arc", "tagline": "", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0151137", "adult": false, "backdrop_path": "/2lKD7nIeYkNkmKIOGTeAJRXkDqI.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "1999-10-27", "popularity": 1.14977585283111, "original_title": "Joan of Arc", "budget": 0, "cast": [{"name": "Milla Jovovich", "character": "Jeanne d\u2019Arc", "id": 63, "credit_id": "52fe43129251416c75002643", "cast_id": 9, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "The Conscience", "id": 4483, "credit_id": "52fe43129251416c75002647", "cast_id": 10, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Faye Dunaway", "character": "Yolande of Aragon", "id": 6450, "credit_id": "52fe43129251416c7500264b", "cast_id": 11, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 2}, {"name": "John Malkovich", "character": "Charles VII", "id": 6949, "credit_id": "52fe43129251416c7500264f", "cast_id": 12, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 3}, {"name": "Vincent Cassel", "character": "Gilles de Rais", "id": 1925, "credit_id": "52fe43129251416c75002653", "cast_id": 13, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 4}, {"name": "Tch\u00e9ky Karyo", "character": "Jean de Dunois", "id": 10698, "credit_id": "52fe43129251416c75002657", "cast_id": 14, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 5}, {"name": "Rab Affleck", "character": "Comrade", "id": 39678, "credit_id": "52fe43129251416c75002667", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "St\u00e9phane Algoud", "character": "Look Out", "id": 24564, "credit_id": "52fe43129251416c7500266b", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Edwin Apps", "character": "Bishop", "id": 214644, "credit_id": "52fe43129251416c7500266f", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "David Bailie", "character": "English Judge", "id": 1715, "credit_id": "52fe43129251416c75002673", "cast_id": 20, "profile_path": "/iUKR4K7ftO6xj6ExewkIBlL9tYw.jpg", "order": 9}, {"name": "Christian Barbier", "character": "Captain", "id": 44509, "credit_id": "52fe43129251416c7500267b", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Timothy Bateson", "character": "English Judge", "id": 3548, "credit_id": "52fe43129251416c7500267f", "cast_id": 23, "profile_path": "/dHSn6dpypXLmNCrCwOy3fJDbPsT.jpg", "order": 12}, {"name": "David Begg", "character": "Nobleman", "id": 1077832, "credit_id": "52fe43129251416c75002683", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Christian Bergner", "character": "Captain", "id": 1077833, "credit_id": "52fe43129251416c75002687", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Andrew Birkin", "character": "Talbot", "id": 2355, "credit_id": "52fe43129251416c7500268b", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Dominic Borrelli", "character": "English Judge", "id": 321853, "credit_id": "52fe43129251416c7500268f", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "John Boswall", "character": "Old Priest", "id": 140452, "credit_id": "52fe43129251416c75002693", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Matthew Bowyer", "character": "The Bludgeoned French Soldier", "id": 1077834, "credit_id": "52fe43129251416c75002697", "cast_id": 29, "profile_path": "/sEfjY9lBchn6kHYMa17aCzLyXHY.jpg", "order": 18}, {"name": "Paul Brooke", "character": "Domremy's Priest", "id": 9142, "credit_id": "52fe43129251416c7500269b", "cast_id": 30, "profile_path": "/eiIvFEhS7WABCiIi5UI0XS70ntD.jpg", "order": 19}, {"name": "Bruce Byron", "character": "Joan's Father", "id": 25675, "credit_id": "52fe43129251416c7500269f", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Charles Cork", "character": "Vaucouleurs' Priest", "id": 40651, "credit_id": "52fe43129251416c750026a3", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Patrice Cossoneau", "character": "Captain", "id": 1077835, "credit_id": "52fe43129251416c750026a7", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Tony D'Amario", "character": "Compiegne's Mayor", "id": 62441, "credit_id": "52fe43129251416c750026ab", "cast_id": 34, "profile_path": "/oI4MpEpWONxgvUKnEI0Kvp3qigR.jpg", "order": 23}, {"name": "Daniel Daujon", "character": "Church's Peer", "id": 1077836, "credit_id": "52fe43129251416c750026af", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Tonio Descanvelle", "character": "Xaintrailles", "id": 61623, "credit_id": "52fe43129251416c750026b3", "cast_id": 36, "profile_path": "/6osT2lZvotuNnk9VE9vXUhBPREE.jpg", "order": 25}, {"name": "Philippe du Janerand", "character": "Dijon", "id": 550110, "credit_id": "52fe43129251416c750026b7", "cast_id": 37, "profile_path": "/h6cm0cwVnaLu3i3KD2AOwxeinPf.jpg", "order": 26}, {"name": "Sissi Duparc", "character": "Mary of Anjou's Lady's Companion", "id": 549323, "credit_id": "52fe43129251416c750026bb", "cast_id": 38, "profile_path": "/uhxsNtWXtDyGGU2fFXYaOjHnnZ2.jpg", "order": 27}, {"name": "Barbara Elbourn", "character": "The Aunt", "id": 1077839, "credit_id": "52fe43129251416c750026bf", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Christian Erickson", "character": "La Tremoille", "id": 45849, "credit_id": "52fe43129251416c750026c3", "cast_id": 40, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 29}, {"name": "David Barber", "character": "English Judge", "id": 1229040, "credit_id": "54a53128c3a368764f011133", "cast_id": 45, "profile_path": null, "order": 30}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe43129251416c7500265d", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.3, "runtime": 148}, "18240": {"poster_path": "/xippClkb4VCE15uva13SAGf8Vsd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 317375031, "overview": "When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.", "video": false, "id": 18240, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Proposal", "tagline": "Here comes the bribe...", "vote_count": 447, "homepage": "http://www.myspace.com/proposalmovie", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1041829", "adult": false, "backdrop_path": "/iYQcFgHg4aWzozfVtqqrn6preRx.jpg", "production_companies": [{"name": "Kurtzman/Orci", "id": 12536}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Mandeville Films", "id": 10227}], "release_date": "2009-06-01", "popularity": 1.18869454761828, "original_title": "The Proposal", "budget": 40000000, "cast": [{"name": "Sandra Bullock", "character": "Margaret Tate", "id": 18277, "credit_id": "52fe476d9251416c75098e47", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Andrew Paxton", "id": 10859, "credit_id": "52fe476d9251416c75098e4b", "cast_id": 4, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Mary Steenburgen", "character": "Grace Paxton", "id": 2453, "credit_id": "52fe476d9251416c75098e4f", "cast_id": 5, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 2}, {"name": "Craig T. Nelson", "character": "Joe Paxton", "id": 8977, "credit_id": "52fe476d9251416c75098e53", "cast_id": 6, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 3}, {"name": "Betty White", "character": "Grandma Annie", "id": 71727, "credit_id": "52fe476d9251416c75098e57", "cast_id": 7, "profile_path": "/4cPsS3xppS2EKPwf6j4VJMzIBZ8.jpg", "order": 4}, {"name": "Denis O'Hare", "character": "Mr. Gilbertson", "id": 81681, "credit_id": "52fe476d9251416c75098e5b", "cast_id": 8, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 5}, {"name": "Malin Akerman", "character": "Gertrude", "id": 50463, "credit_id": "52fe476d9251416c75098e5f", "cast_id": 9, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 6}, {"name": "Oscar Nunez", "character": "Ramone", "id": 76094, "credit_id": "52fe476d9251416c75098e63", "cast_id": 10, "profile_path": "/nFyvVjgBTWYg3fyfAnoSKq2WmV5.jpg", "order": 7}, {"name": "Aasif Mandvi", "character": "Bob Spaulding", "id": 20644, "credit_id": "52fe476d9251416c75098e67", "cast_id": 11, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 8}, {"name": "Michael Nouri", "character": "Chairman Bergen", "id": 8699, "credit_id": "52fe476d9251416c75098e6b", "cast_id": 12, "profile_path": "/lAPEwuE9Cg6xSgcgO2M2pFJ3ul5.jpg", "order": 9}, {"name": "Michael Mosley", "character": "Chuck", "id": 72994, "credit_id": "52fe476d9251416c75098e6f", "cast_id": 13, "profile_path": "/jpcqnjuFnawfwxbNhccqKkLiToL.jpg", "order": 10}, {"name": "Dale Place", "character": "Jim McKittrick", "id": 84436, "credit_id": "52fe476d9251416c75098e73", "cast_id": 14, "profile_path": "/aPBGgkwjSyTSc8Xmx67Uuw20rqW.jpg", "order": 11}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe476d9251416c75098e3d", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 6.3, "runtime": 108}, "56288": {"poster_path": "/rjUCg7XamBEpxeRlt9IaQXKQEEw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Eight years after the third film, the OSS has become the world's top spy agency, while the Spy Kids department has since become defunct. A retired spy Marissa (Jessica Alba) is thrown back into the action along with her stepchildren when a maniacal Timekeeper (Jeremy Piven) attempts to take over the world. In order to save the world, Rebecca (Rowan Blanchard) and Cecil (Mason Cook) must team up with their hated stepmother. Carmen and Juni have since also grown up and will provide gadgets to them.", "video": false, "id": 56288, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids: All the Time in the World", "tagline": "", "vote_count": 51, "homepage": "http://spykidsmovie.net/", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1517489", "adult": false, "backdrop_path": "/aezGIrtl4Q8KaLltPum0hR4VRuB.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "SF Film", "id": 5674}], "release_date": "2011-08-18", "popularity": 1.31853810875389, "original_title": "Spy Kids: All the Time in the World", "budget": 40000000, "cast": [{"name": "Jessica Alba", "character": "Marissa Cortez Wilson", "id": 56731, "credit_id": "52fe48f7c3a36847f818289d", "cast_id": 3, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Mason Cook", "character": "Cecil Wilson", "id": 583040, "credit_id": "54056b5e0e0a264b090011ab", "cast_id": 14, "profile_path": "/19XPc3ggqJSsh5k7oYyncWGrxVz.jpg", "order": 1}, {"name": "Rowan Blanchard", "character": "Rebecca Wilson", "id": 1257205, "credit_id": "54056b4c0e0a2658d800be5b", "cast_id": 13, "profile_path": "/nwFbA1HchirxtQDALJ6hh8f5nu0.jpg", "order": 2}, {"name": "Joel McHale", "character": "Wilber Wilson", "id": 74949, "credit_id": "52fe48f7c3a36847f81828b5", "cast_id": 9, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 3}, {"name": "Jeremy Piven", "character": "Timekeeper", "id": 12799, "credit_id": "52fe48f7c3a36847f81828a5", "cast_id": 5, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 4}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe48f7c3a36847f81828a1", "cast_id": 4, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 5}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe48f7c3a36847f81828b1", "cast_id": 8, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 6}, {"name": "Ricky Gervais", "character": "Argonaut", "id": 17835, "credit_id": "54056b2d0e0a2649e50011d3", "cast_id": 12, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 7}, {"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe48f7c3a36847f81828a9", "cast_id": 6, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 8}, {"name": "Antonio Banderas", "character": "Gregorio Cortrez", "id": 3131, "credit_id": "52fe48f7c3a36847f81828ad", "cast_id": 7, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 9}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe48f7c3a36847f81828bb", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 5.2, "runtime": 89}, "1858": {"poster_path": "/bgSHbGEA1OM6qDs3Qba4VlSZsNG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 709709780, "overview": "Young teenager Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots, the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.", "video": false, "id": 1858, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers", "tagline": "Their war. Our world.", "vote_count": 1701, "homepage": "http://www.transformersmovie.com/", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0418279", "adult": false, "backdrop_path": "/ac0HwGJIU3GxjjGujlIjLJmAGPR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Hasbro", "id": 2598}, {"name": "SprocketHeads", "id": 20011}], "release_date": "2007-07-02", "popularity": 0.520307248379808, "original_title": "Transformers", "budget": 150000000, "cast": [{"name": "Shia LaBeouf", "character": "Sam 'Spike' Witwicky", "id": 10959, "credit_id": "52fe431bc3a36847f803abd1", "cast_id": 9, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Captain Lennox", "id": 19536, "credit_id": "52fe431bc3a36847f803abd5", "cast_id": 10, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Megan Fox", "character": "Mikaela Banes", "id": 19537, "credit_id": "52fe431bc3a36847f803abd9", "cast_id": 11, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 2}, {"name": "Rachael Taylor", "character": "Maggie Madsen", "id": 19538, "credit_id": "52fe431bc3a36847f803abdd", "cast_id": 12, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 3}, {"name": "Tyrese Gibson", "character": "USAF Master Sgt. Epps", "id": 8169, "credit_id": "52fe431bc3a36847f803abe1", "cast_id": 13, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 4}, {"name": "Jon Voight", "character": "John Keller", "id": 10127, "credit_id": "52fe431bc3a36847f803abe5", "cast_id": 14, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 5}, {"name": "John Turturro", "character": "Agent Simmons", "id": 1241, "credit_id": "52fe431bc3a36847f803abe9", "cast_id": 15, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 6}, {"name": "Anthony Anderson", "character": "Glen Whitman", "id": 18471, "credit_id": "52fe431bc3a36847f803abed", "cast_id": 16, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 7}, {"name": "Peter Cullen", "character": "Optimus Prime (voice)", "id": 19540, "credit_id": "52fe431bc3a36847f803abf1", "cast_id": 17, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 8}, {"name": "Mark Ryan", "character": "Transformers (voice)", "id": 19541, "credit_id": "52fe431bc3a36847f803abf5", "cast_id": 18, "profile_path": "/mBvV09ssRRE63gNaG3ZkqaZidPh.jpg", "order": 9}, {"name": "Hugo Weaving", "character": "Megatron (voice)", "id": 1331, "credit_id": "52fe431bc3a36847f803abf9", "cast_id": 19, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 10}, {"name": "Keith David", "character": "Barricade (voice)", "id": 65827, "credit_id": "52fe431bc3a36847f803abfd", "cast_id": 20, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 11}, {"name": "Kevin Dunn", "character": "Ron Witwicky", "id": 14721, "credit_id": "52fe431bc3a36847f803ac01", "cast_id": 21, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 12}, {"name": "Michael O'Neill", "character": "Tom Banacheck", "id": 21710, "credit_id": "52fe431bc3a36847f803ac05", "cast_id": 22, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 13}, {"name": "Julie White", "character": "Judy Witwicky", "id": 24305, "credit_id": "52fe431bc3a36847f803ac09", "cast_id": 23, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 14}, {"name": "Amaury Nolasco", "character": "ACWO Jorge \"Fig\" Figueroa", "id": 17341, "credit_id": "52fe431bc3a36847f803ac0d", "cast_id": 24, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 15}, {"name": "Bernie Mac", "character": "Bobby Bolivia", "id": 1897, "credit_id": "52fe431bc3a36847f803ac4d", "cast_id": 36, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 16}, {"name": "Colton Haynes", "character": "Cafe Kid", "id": 211800, "credit_id": "52fe431bc3a36847f803ac57", "cast_id": 38, "profile_path": "/c5s8Nbl9SbBILyc8wQINkFzJgro.jpg", "order": 17}, {"name": "Brian Stepanek", "character": "Sector Seven Agent", "id": 146391, "credit_id": "52fe431bc3a36847f803ac5b", "cast_id": 39, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 18}, {"name": "Frederic Doss", "character": "SOCCENT Op-Centre Tech", "id": 209680, "credit_id": "54e89ad19251412eae001ebf", "cast_id": 54, "profile_path": null, "order": 19}, {"name": "Michael Bay", "character": "Guy Flicked by Megatron (uncredited)", "id": 865, "credit_id": "551b909c9251414af9001dfd", "cast_id": 56, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 20}, {"name": "John Robinson", "character": "Miles", "id": 19197, "credit_id": "552a9decc3a36830d40008cd", "cast_id": 58, "profile_path": "/qg4baoVSBmL688HIv2Q7e6DTMT5.jpg", "order": 21}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe431bc3a36847f803aba3", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.6, "runtime": 144}, "10054": {"poster_path": "/10zMofjfvnKahF8wqZ4nNzVeNps.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Carmen and Juni think their parents are boring. Little do they know that in their day, Gregorio and Ingrid Cortez were the top secret agents from their respective countries. They gave up that life to raise their children. Now, the disappearances of several of their old colleagues forces the Cortez' return from retirement. What they didn't count on was Carmen and Juni joining the \"family business.\"", "video": false, "id": 10054, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids", "tagline": "Real spies...Only smaller", "vote_count": 183, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0227538", "adult": false, "backdrop_path": "/99g7q5X60VfUZ9XI6o0LW3N54k1.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2001-03-18", "popularity": 1.29228490529956, "original_title": "Spy Kids", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Gregorio Cortez", "id": 3131, "credit_id": "52fe43159251416c75002d65", "cast_id": 9, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Ingrid Cortez", "id": 17832, "credit_id": "52fe43159251416c75002d69", "cast_id": 10, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 1}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe43159251416c75002d6d", "cast_id": 11, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe43159251416c75002d71", "cast_id": 12, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Alan Cumming", "character": "Fegan Floop", "id": 10697, "credit_id": "52fe43159251416c75002d75", "cast_id": 13, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 4}, {"name": "Richard Linklater", "character": "Cool Spy", "id": 564, "credit_id": "52fe43159251416c75002d79", "cast_id": 14, "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "order": 5}, {"name": "Tony Shalhoub", "character": "Alexander Minion", "id": 4252, "credit_id": "52fe43169251416c75002da1", "cast_id": 21, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 6}, {"name": "Teri Hatcher", "character": "Ms. Gradenko", "id": 10742, "credit_id": "52fe43169251416c75002da5", "cast_id": 22, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 7}, {"name": "Cheech Marin", "character": "Felix Gumm", "id": 11159, "credit_id": "52fe43169251416c75002da9", "cast_id": 23, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Mr. Lisp", "id": 418, "credit_id": "52fe43169251416c75002dad", "cast_id": 24, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe43169251416c75002db1", "cast_id": 25, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Mike Judge", "character": "Donnagon / Donnamight", "id": 17403, "credit_id": "52fe43169251416c75002db5", "cast_id": 26, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 11}, {"name": "Guillermo Navarro", "character": "Pastor", "id": 3113, "credit_id": "52fe43169251416c75002db9", "cast_id": 27, "profile_path": "/AfZkxrEiLlqqHONhfJyVOLrHR8A.jpg", "order": 12}, {"name": "Johnny Reno", "character": "Agent Johnny", "id": 96007, "credit_id": "52fe43169251416c75002dbd", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Shannon Shea", "character": "FoOglie #1/Flower", "id": 1189737, "credit_id": "52fe43169251416c75002dc1", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "George Clooney", "character": "Devlin", "id": 1461, "credit_id": "55015cb6c3a3685ba6002b14", "cast_id": 30, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 15}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe43159251416c75002d37", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 5.2, "runtime": 88}, "1865": {"poster_path": "/jUkGuSC9Kt29rW3x6UiB9zyZr1M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1021683000, "overview": "Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.", "video": false, "id": 1865, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Pirates of the Caribbean: On Stranger Tides", "tagline": "Live Forever Or Die Trying.", "vote_count": 2096, "homepage": "http://disney.go.com/pirates/index-on-stranger-tides.html#/video/", "belongs_to_collection": {"backdrop_path": "/cnKAGbX1rDkAquF2V1wVkptHDJO.jpg", "poster_path": "/1yg63Kl4p872ia4gPQysIZkKhUT.jpg", "id": 295, "name": "Pirates of the Caribbean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1298650", "adult": false, "backdrop_path": "/ddPXVUAeCBFMbtTajh8bg4uyBvv.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2011-05-18", "popularity": 1.89500537925571, "original_title": "Pirates of the Caribbean: On Stranger Tides", "budget": 250000000, "cast": [{"name": "Johnny Depp", "character": "Captain Jack Sparrow", "id": 85, "credit_id": "52fe431cc3a36847f803af13", "cast_id": 15, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Ian McShane", "character": "Blackbeard", "id": 6972, "credit_id": "52fe431cc3a36847f803aed9", "cast_id": 2, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 1}, {"name": "Pen\u00e9lope Cruz", "character": "Angelica", "id": 955, "credit_id": "52fe431cc3a36847f803aef5", "cast_id": 7, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 2}, {"name": "Geoffrey Rush", "character": "Barbossa", "id": 118, "credit_id": "52fe431cc3a36847f803aef9", "cast_id": 8, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 3}, {"name": "Gemma Ward", "character": "Tamara", "id": 55901, "credit_id": "52fe431cc3a36847f803aefd", "cast_id": 9, "profile_path": "/vuuCX123OdszoKoppbhtu92xsTS.jpg", "order": 4}, {"name": "Richard Griffiths", "character": "King George II", "id": 10983, "credit_id": "52fe431cc3a36847f803af01", "cast_id": 10, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 5}, {"name": "Stephen Graham", "character": "Scrum", "id": 1115, "credit_id": "52fe431cc3a36847f803af05", "cast_id": 11, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 6}, {"name": "Kevin McNally", "character": "Gibbs", "id": 2449, "credit_id": "52fe431cc3a36847f803af09", "cast_id": 13, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 7}, {"name": "\u00d3scar Jaenada", "character": "Spaniard", "id": 59129, "credit_id": "52fe431cc3a36847f803af17", "cast_id": 16, "profile_path": "/naQmysDM8jhmwhVIrdjdVUTGHLQ.jpg", "order": 8}, {"name": "Roger Allam", "character": "Henry Pelham", "id": 11279, "credit_id": "52fe431cc3a36847f803af1b", "cast_id": 17, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 9}, {"name": "Keith Richards", "character": "Captain Teague", "id": 1430, "credit_id": "52fe431cc3a36847f803af25", "cast_id": 19, "profile_path": "/uGF4AHKqaTI8K98n1lzqtRfv4N2.jpg", "order": 10}, {"name": "Astrid Berg\u00e8s-Frisbey", "character": "Syrena", "id": 469759, "credit_id": "52fe431cc3a36847f803af29", "cast_id": 20, "profile_path": "/tyegg8trgGSRfWwnmbX69DG5rQ5.jpg", "order": 11}, {"name": "Sam Claflin", "character": "Philip", "id": 237455, "credit_id": "52fe431cc3a36847f803af2d", "cast_id": 21, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 12}, {"name": "Judi Dench", "character": "High Society Lady", "id": 5309, "credit_id": "52fe431cc3a36847f803af3d", "cast_id": 24, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 13}, {"name": "Damian O'Hare", "character": "Gillette", "id": 1712, "credit_id": "537a1e8dc3a3681cc100003f", "cast_id": 26, "profile_path": "/fKpaczsKihsuEPWInNENp1WVtwg.jpg", "order": 14}, {"name": "Richard Thomson", "character": "Derrick", "id": 1321379, "credit_id": "537a1f05c3a3681ce4000021", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Derek Mears", "character": "Master-at-Arms", "id": 51300, "credit_id": "537a1f85c3a3681ce400002d", "cast_id": 29, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 17}, {"name": "Anton Lesser", "character": "John Carteret", "id": 27397, "credit_id": "537a200bc3a3681cdf00005b", "cast_id": 30, "profile_path": "/tF6FIgBMgbSQng1ip01DC8h6rkH.jpg", "order": 18}, {"name": "Sebastian Armesto", "character": "King Ferdinand of the Spanish Empire", "id": 229634, "credit_id": "537a2041c3a3681cd5000063", "cast_id": 31, "profile_path": "/oNflfULqkire4ZPHIrWEdNdqjBU.jpg", "order": 19}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe431cc3a36847f803af0f", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.3, "runtime": 136}, "10060": {"poster_path": "/kmP2EA5O760ylJsQHybEI9CwPA1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46442528, "overview": "A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.", "video": false, "id": 10060, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Get Rich or Die Tryin'", "tagline": "If You Think You Know the Story...You Don't Know the Man.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430308", "adult": false, "backdrop_path": "/90rM3lEYz6S05XLV687IiArgAhx.jpg", "production_companies": [{"name": "MTV Films", "id": 746}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2005-11-09", "popularity": 0.753825037031556, "original_title": "Get Rich or Die Tryin'", "budget": 40000000, "cast": [{"name": "50 Cent", "character": "Marcus", "id": 62644, "credit_id": "52fe43179251416c75003083", "cast_id": 26, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 0}, {"name": "Joy Bryant", "character": "Charlene", "id": 52847, "credit_id": "52fe43179251416c7500308d", "cast_id": 28, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 1}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Majestic", "id": 31164, "credit_id": "52fe43179251416c75003091", "cast_id": 29, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 2}, {"name": "Omar Benson Miller", "character": "Keryl", "id": 334, "credit_id": "52fe43179251416c75003095", "cast_id": 30, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Bama", "id": 18288, "credit_id": "52fe43179251416c75003099", "cast_id": 31, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Viola Davis", "character": "Grandma", "id": 19492, "credit_id": "52fe43179251416c750030a1", "cast_id": 33, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}, {"name": "Ashley Walters", "character": "Antwan", "id": 61364, "credit_id": "52fe43179251416c7500309d", "cast_id": 32, "profile_path": "/d2RSHNIL3TsdkNzjPtMDiLSdYEc.jpg", "order": 6}, {"name": "Tory Kittles", "character": "Justice", "id": 62645, "credit_id": "52fe43179251416c750030a5", "cast_id": 34, "profile_path": "/jlR3xLuJug176VllNLgyZGvozhz.jpg", "order": 7}, {"name": "Marc John Jefferies", "character": "Young Marcus", "id": 62646, "credit_id": "52fe43179251416c750030a9", "cast_id": 35, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 8}, {"name": "Sullivan Walker", "character": "Grandpa", "id": 62647, "credit_id": "52fe43179251416c750030ad", "cast_id": 36, "profile_path": "/ixXteZlLb3rth7oVTQ2oGKeNOs1.jpg", "order": 9}, {"name": "Bill Duke", "character": "Levar", "id": 1103, "credit_id": "52fe43179251416c750030b1", "cast_id": 37, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 10}, {"name": "Mpho Koaho", "character": "Junebug", "id": 59713, "credit_id": "52fe43179251416c750030b5", "cast_id": 38, "profile_path": "/fjBdIbrrY9QHT1v3Lqt1Pe2oOUE.jpg", "order": 11}, {"name": "Serena Reeder", "character": "Katrina", "id": 62648, "credit_id": "52fe43179251416c750030b9", "cast_id": 39, "profile_path": "/1gJGeakckth4ZtDRihNJdthnkpw.jpg", "order": 12}, {"name": "Russell Hornsby", "character": "Odell", "id": 62649, "credit_id": "52fe43179251416c750030c1", "cast_id": 41, "profile_path": "/sLWQehUFWePO3jVSJLBCHfJYi1o.jpg", "order": 13}, {"name": "Vanessa Madden", "character": "Marcus' Relative", "id": 62652, "credit_id": "52fe43179251416c750030bd", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Joseph Pierre", "character": "Uncle Deuce", "id": 62650, "credit_id": "52fe43179251416c750030c9", "cast_id": 43, "profile_path": null, "order": 15}, {"name": "Ryan Allen", "character": "Uncle Ray", "id": 62651, "credit_id": "52fe43179251416c750030c5", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Brendan Jeffers", "character": "Marcus' Relative", "id": 62654, "credit_id": "52fe43179251416c750030cd", "cast_id": 44, "profile_path": null, "order": 17}, {"name": "Anastasia Hill", "character": "Marcus' Relative", "id": 62655, "credit_id": "52fe43179251416c750030d1", "cast_id": 45, "profile_path": null, "order": 18}, {"name": "Zainab Musa", "character": "Marcus' Relative", "id": 62653, "credit_id": "52fe43179251416c750030d5", "cast_id": 46, "profile_path": null, "order": 19}, {"name": "Lawrence Bayne", "character": "Security Guard", "id": 133921, "credit_id": "52fe43179251416c750030d9", "cast_id": 47, "profile_path": "/6hzZOxUA7rlN9XMN9BHdhBEfvKE.jpg", "order": 20}], "directors": [{"name": "Jim Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe43169251416c75002ff5", "profile_path": "/mfukw1JcUsXmUzt6IoaayMaescv.jpg", "id": 53334}], "vote_average": 6.7, "runtime": 117}, "10061": {"poster_path": "/oR8E10bBEivuw4D946QKjwGhGxm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42277365, "overview": "This time, a cataclysmic temblor hits Los Angeles, turning it into an island. The president views the quake as a sign from above, expels Los Angeles from the country and makes it a penal colony for those found guilty of moral crimes. When his daughter, part of a resistance movement, steals the control unit for a doomsday weapon, Snake again gets tapped to save the day.", "video": false, "id": 10061, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Escape from L.A.", "tagline": "Snake Is Back.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": "/u3tHIjkTj8C2gHOTFmzZgEXOQxp.jpg", "poster_path": "/8Zih8QGPJNXUuws0fIZmjxjs2Su.jpg", "id": 115838, "name": "Escape From ... Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116225", "adult": false, "backdrop_path": "/cXcPYkni9J8JsRfNVmepmyidMp9.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Rysher Entertainment", "id": 11661}], "release_date": "1996-08-09", "popularity": 0.795762937457861, "original_title": "Escape from L.A.", "budget": 50000000, "cast": [{"name": "Kurt Russell", "character": "Snake Plissken", "id": 6856, "credit_id": "52fe43179251416c7500313f", "cast_id": 12, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Stacy Keach", "character": "Malloy", "id": 825, "credit_id": "52fe43179251416c75003143", "cast_id": 13, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Eddie", "id": 884, "credit_id": "52fe43179251416c75003147", "cast_id": 14, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Peter Fonda", "character": "Pipeline", "id": 8949, "credit_id": "52fe43179251416c7500314b", "cast_id": 15, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 3}, {"name": "Pam Grier", "character": "Hershe Las Palamas", "id": 2230, "credit_id": "52fe43179251416c7500314f", "cast_id": 16, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 4}, {"name": "Breckin Meyer", "character": "Surfer", "id": 33654, "credit_id": "52fe43179251416c75003153", "cast_id": 17, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 5}, {"name": "Cliff Robertson", "character": "President", "id": 19153, "credit_id": "52fe43179251416c75003157", "cast_id": 18, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 6}, {"name": "Valeria Golino", "character": "Taslima", "id": 3124, "credit_id": "52fe43179251416c7500315b", "cast_id": 19, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 7}, {"name": "Bruce Campbell", "character": "Surgeon General of Beverly Hills", "id": 11357, "credit_id": "52fe43179251416c7500315f", "cast_id": 20, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 8}, {"name": "Georges Corraface", "character": "Cuervo Jones", "id": 35529, "credit_id": "52fe43179251416c75003163", "cast_id": 21, "profile_path": "/aZBnG9VA8bYlk79A70Ro2NKzxI3.jpg", "order": 9}, {"name": "Michelle Forbes", "character": "Brazen", "id": 41820, "credit_id": "52fe43179251416c75003167", "cast_id": 22, "profile_path": "/ji2HPs84VFMiALSP9VnBZEALfT1.jpg", "order": 10}, {"name": "A. J. Langer", "character": "Utopia", "id": 157904, "credit_id": "52fe43179251416c7500316b", "cast_id": 23, "profile_path": "/iA2AfnJZBDgZEcZrjryq7RwGjER.jpg", "order": 11}, {"name": "Leland Orser", "character": "Test Tube", "id": 2221, "credit_id": "52fe43179251416c7500316f", "cast_id": 24, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 12}, {"name": "Jeff Imada", "character": "Saigon Shadow", "id": 169628, "credit_id": "52fe43179251416c75003173", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Al Leong", "character": "Hershe Gang Member", "id": 61704, "credit_id": "52fe43179251416c75003177", "cast_id": 26, "profile_path": "/9f8m0g6BgdwfQfS6ewhDOrW4kzs.jpg", "order": 14}, {"name": "James Lew", "character": "Hershe Gang Member", "id": 94089, "credit_id": "52fe43179251416c7500317b", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe43179251416c7500311d", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 5.7, "runtime": 97}, "9869": {"poster_path": "/9cnA2FDTexrfTNowp37BQQ69yW0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 178000000, "overview": "When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets him and his family for revenge.", "video": false, "id": 9869, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Patriot Games", "tagline": "Not for honor. Not for country. For his wife and child.", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105112", "adult": false, "backdrop_path": "/VQ8unvKZ34jz5Maj6UBWY27iS9.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "1992-06-04", "popularity": 0.685986791098421, "original_title": "Patriot Games", "budget": 42000000, "cast": [{"name": "Harrison Ford", "character": "Jack Ryan", "id": 3, "credit_id": "52fe453bc3a36847f80c33b1", "cast_id": 11, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Anne Archer", "character": "Dr. Caroline \"Cathy\" Ryan", "id": 10427, "credit_id": "52fe453bc3a36847f80c33b5", "cast_id": 12, "profile_path": "/zemspOk1FECjvjRWrH6modUgHiL.jpg", "order": 1}, {"name": "Patrick Bergin", "character": "Kevin O'Donnell", "id": 29459, "credit_id": "52fe453bc3a36847f80c33b9", "cast_id": 13, "profile_path": "/wmwtMCZsFTlckrsCpuz0jtuWu35.jpg", "order": 2}, {"name": "Thora Birch", "character": "Sally Ryan", "id": 2155, "credit_id": "52fe453bc3a36847f80c33bd", "cast_id": 15, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 3}, {"name": "James Fox", "character": "Lord William Holmes", "id": 1292, "credit_id": "52fe453bc3a36847f80c33c1", "cast_id": 16, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 4}, {"name": "Samuel L. Jackson", "character": "Lt. Cmdr. Robby Jackson", "id": 2231, "credit_id": "52fe453bc3a36847f80c33c5", "cast_id": 17, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 5}, {"name": "Polly Walker", "character": "Annette", "id": 6416, "credit_id": "52fe453bc3a36847f80c33c9", "cast_id": 18, "profile_path": "/swfioO83iyf5aB2svD0tgIWlCSr.jpg", "order": 6}, {"name": "J.E. Freeman", "character": "Marty Cantor", "id": 5169, "credit_id": "52fe453bc3a36847f80c33cd", "cast_id": 19, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 7}, {"name": "James Earl Jones", "character": "Adm. James Greer", "id": 15152, "credit_id": "52fe453bc3a36847f80c33d1", "cast_id": 20, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 8}, {"name": "Sean Bean", "character": "Sean Miller", "id": 48, "credit_id": "52fe453bc3a36847f80c33d5", "cast_id": 21, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 9}, {"name": "Richard Harris", "character": "Paddy O'Neil", "id": 194, "credit_id": "52fe453bc3a36847f80c33d9", "cast_id": 22, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 10}, {"name": "Alex Norton", "character": "Dennis Cooley", "id": 2451, "credit_id": "52fe453bc3a36847f80c33dd", "cast_id": 23, "profile_path": "/yqmwlDs8CDxCJNa72lNxNwRKoSa.jpg", "order": 11}, {"name": "Hugh Fraser", "character": "Watkins", "id": 67028, "credit_id": "52fe453bc3a36847f80c33e1", "cast_id": 24, "profile_path": "/jRuVH8p9lWCjnggOAyUBpyJFE4Q.jpg", "order": 12}, {"name": "David Threlfall", "character": "Inspector Highland", "id": 59081, "credit_id": "52fe453bc3a36847f80c33e5", "cast_id": 25, "profile_path": "/qhjrbokMi1DYcrL4B8YuIr3IT5y.jpg", "order": 13}, {"name": "Alun Armstrong", "character": "Owens", "id": 2629, "credit_id": "52fe453bc3a36847f80c33e9", "cast_id": 26, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 14}, {"name": "Berlinda Tolbert", "character": "Sissy", "id": 56951, "credit_id": "52fe453bc3a36847f80c33ed", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Hugh Ross", "character": "Barrister Atkinson", "id": 79648, "credit_id": "52fe453bc3a36847f80c33f1", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Gerald Sim", "character": "Lord Justice", "id": 91663, "credit_id": "52fe453bc3a36847f80c33f5", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Pip Torrens", "character": "First Aide", "id": 36666, "credit_id": "52fe453bc3a36847f80c33f9", "cast_id": 30, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 18}, {"name": "Thomas Russell", "character": "Ashley", "id": 238272, "credit_id": "52fe453bc3a36847f80c33fd", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Jonathan Ryan", "character": "Jimmy Reardon", "id": 207555, "credit_id": "52fe453bc3a36847f80c3401", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Andrew Connolly", "character": "Charlie Dugan", "id": 112267, "credit_id": "52fe453bc3a36847f80c3405", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Keith Campbell", "character": "Ned Clark", "id": 15318, "credit_id": "53b94a080e0a26358800060d", "cast_id": 34, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 22}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe453bc3a36847f80c3377", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 5.9, "runtime": 117}, "10065": {"poster_path": "/t84QerE2iYrvqyDZHPr55veUlf5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A family is terrorized by demonic forces after moving into a home that was the site of a grisly mass-murder.", "video": false, "id": 10065, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Amityville Horror", "tagline": "What happened over the next 28 days has never been explained.", "vote_count": 119, "homepage": "http://www.amityvillehorrormovie.com", "belongs_to_collection": {"backdrop_path": "/py47wV07x4lTFbl90Ebg4vT6ulm.jpg", "poster_path": "/mCgrPiZQL8Z68JY6jsjVKA2YDLK.jpg", "id": 101950, "name": "The Amityville Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384806", "adult": false, "backdrop_path": "/zrLF8DtMgdiLfNbJU6VrhaN8Mpf.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Metro-Goldwyn-Mayer Pictures", "id": 6127}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Radar Pictures", "id": 14718}], "release_date": "2005-04-15", "popularity": 0.871215704622949, "original_title": "The Amityville Horror", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "George Lutz", "id": 10859, "credit_id": "52fe43199251416c750035e3", "cast_id": 25, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Melissa George", "character": "Kathy Lutz", "id": 27755, "credit_id": "52fe43199251416c750035e7", "cast_id": 26, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 1}, {"name": "Jesse James", "character": "Billy Lutz", "id": 10135, "credit_id": "52fe43199251416c750035eb", "cast_id": 27, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 2}, {"name": "Chlo\u00eb Grace Moretz", "character": "Chelsea Lutz", "id": 56734, "credit_id": "52fe43199251416c750035ef", "cast_id": 28, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 3}, {"name": "Jimmy Bennett", "character": "Michael Lutz", "id": 6860, "credit_id": "52fe43199251416c75003603", "cast_id": 32, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 4}, {"name": "Rachel Nichols", "character": "Lisa", "id": 50347, "credit_id": "52fe43199251416c750035f3", "cast_id": 29, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 5}, {"name": "Philip Baker Hall", "character": "Father Callaway", "id": 4492, "credit_id": "52fe43199251416c75003607", "cast_id": 33, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 6}, {"name": "Isabel Conner", "character": "Jodie Defeo", "id": 62728, "credit_id": "52fe43199251416c7500360f", "cast_id": 35, "profile_path": "/fxF7C1NbGiREC6LPCF5b8hv6vpY.jpg", "order": 7}, {"name": "Brendan Donaldson", "character": "Ronald Defeo", "id": 62729, "credit_id": "52fe43199251416c75003613", "cast_id": 36, "profile_path": "/uNR3mGH94fwUqPuQ4Zx8iXwuij4.jpg", "order": 8}, {"name": "David Gee", "character": "ER Doctor", "id": 62732, "credit_id": "52fe43199251416c75003617", "cast_id": 37, "profile_path": "/7xNGc3jWaIOgvKytVb8d6h6uUZp.jpg", "order": 9}, {"name": "Rich Komenich", "character": "Chief of Police", "id": 62731, "credit_id": "52fe43199251416c7500361b", "cast_id": 38, "profile_path": "/51pvjdwa9ar77xjMCS2vnFXoIjD.jpg", "order": 10}, {"name": "Annabel Armour", "character": "Realtor", "id": 62730, "credit_id": "52fe43199251416c7500361f", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Danny McCarthy", "character": "Officer Greguski", "id": 59145, "credit_id": "52fe43199251416c7500360b", "cast_id": 34, "profile_path": "/tP3Clrc63rfIDP5f9uDT2h3aCMs.jpg", "order": 12}, {"name": "Nancy Lollar", "character": "Librarian", "id": 62733, "credit_id": "52fe43199251416c75003623", "cast_id": 40, "profile_path": null, "order": 13}, {"name": "Jos\u00e9 Taitano", "character": "Stitch", "id": 62734, "credit_id": "52fe43199251416c75003627", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Lenore Thomas", "character": "Nurse Fuller", "id": 62737, "credit_id": "52fe43199251416c7500362b", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Jenny Strubin", "character": "Grocery Cashier", "id": 62736, "credit_id": "52fe43199251416c7500362f", "cast_id": 43, "profile_path": null, "order": 16}, {"name": "Dorian Kingi", "character": "Scary Leashed Indian", "id": 62735, "credit_id": "52fe43199251416c75003633", "cast_id": 44, "profile_path": null, "order": 17}], "directors": [{"name": "Andrew Douglas", "department": "Directing", "job": "Director", "credit_id": "52fe43199251416c75003597", "profile_path": null, "id": 62721}], "vote_average": 5.8, "runtime": 90}, "10066": {"poster_path": "/mlLHueKU7upuFHowQK80O96xp7O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68, "overview": "A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.", "video": false, "id": 10066, "genres": [{"id": 27, "name": "Horror"}], "title": "House of Wax", "tagline": "Prey. Slay. Display", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397065", "adult": false, "backdrop_path": "/9WRj8tXnfl3aSTv4ydEHTipxQ0e.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2005-05-06", "popularity": 1.03034369592418, "original_title": "House of Wax", "budget": 40000000, "cast": [{"name": "Elisha Cuthbert", "character": "Carly Jones", "id": 25837, "credit_id": "52fe43199251416c75003701", "cast_id": 22, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 0}, {"name": "Paris Hilton", "character": "Paige Edwards", "id": 38406, "credit_id": "52fe43199251416c75003705", "cast_id": 23, "profile_path": "/fFS3dURYg1NTCshT7XxnFDZ3CNI.jpg", "order": 1}, {"name": "Brian Van Holt", "character": "Bo / Vincent", "id": 12792, "credit_id": "52fe43199251416c75003709", "cast_id": 24, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 2}, {"name": "Jared Padalecki", "character": "Wade", "id": 49623, "credit_id": "52fe43199251416c75003713", "cast_id": 26, "profile_path": "/uQLe1lfEBul3locVlV8nXD6n8TI.jpg", "order": 3}, {"name": "Chad Michael Murray", "character": "Nick Jones", "id": 62747, "credit_id": "52fe43199251416c75003717", "cast_id": 27, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 4}, {"name": "Jon Abrahams", "character": "Dalton Chapman", "id": 17866, "credit_id": "52fe43199251416c7500371b", "cast_id": 28, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 5}, {"name": "Robert Ri'chard", "character": "Blake", "id": 52037, "credit_id": "52fe43199251416c7500371f", "cast_id": 29, "profile_path": "/rB75BONTtezBafFI4TzYzYYO8T3.jpg", "order": 6}, {"name": "Thomas Adamson", "character": "Young Bo", "id": 62749, "credit_id": "52fe43199251416c75003727", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Dragicia Debert", "character": "Trudy Sinclair", "id": 62748, "credit_id": "52fe43199251416c75003723", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Murray Smith", "character": "Dr. Victor Sinclair", "id": 62750, "credit_id": "52fe43199251416c7500372b", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Sam Harkess", "character": "Young Vincent", "id": 62751, "credit_id": "52fe43199251416c7500372f", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Damon Herriman", "character": "Roadkill Driver", "id": 62752, "credit_id": "52fe43199251416c75003733", "cast_id": 34, "profile_path": "/dbf7CnLNuMl1sCScOD7MllimLMV.jpg", "order": 11}, {"name": "Emma Lung", "character": "Jennifer", "id": 62754, "credit_id": "52fe43199251416c75003737", "cast_id": 35, "profile_path": "/f60E175MgyoOFluTyCPeJ3PyAMb.jpg", "order": 12}, {"name": "Andy Anderson", "character": "Sheriff", "id": 62753, "credit_id": "52fe43199251416c75003741", "cast_id": 37, "profile_path": "/oqMIHWHvKIFBTSYWPrQSvaeNJi9.jpg", "order": 13}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe43199251416c75003691", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 5.5, "runtime": 113}, "1878": {"poster_path": "/u9ffgobMADj6GCafeImbov566j9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10680275, "overview": "The hallucinogenic misadventures of sportswriter Raoul Duke and his Samoan lawyer, Dr. Gonzo, on a three-day romp from Los Angeles to Las Vegas. Motoring across the Mojave Desert on the way to Sin City, Duke and his purple haze passenger ingest a cornucopia of drugs ranging from acid to ether.", "video": false, "id": 1878, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Fear and Loathing in Las Vegas", "tagline": "Buy the ticket, take the ride.", "vote_count": 347, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120669", "adult": false, "backdrop_path": "/ujdkwg9sIlgBUSVF1NoiipFdUGv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1998-05-21", "popularity": 1.31439158999466, "original_title": "Fear and Loathing in Las Vegas", "budget": 18500000, "cast": [{"name": "Johnny Depp", "character": "Raoul Duke", "id": 85, "credit_id": "52fe431dc3a36847f803b487", "cast_id": 11, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Benicio del Toro", "character": "Dr. Gonzo / Oscar Z. Acosta", "id": 1121, "credit_id": "52fe431dc3a36847f803b4e7", "cast_id": 32, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 1}, {"name": "Tobey Maguire", "character": "Hitchhiker", "id": 2219, "credit_id": "52fe431dc3a36847f803b48b", "cast_id": 12, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 2}, {"name": "Christina Ricci", "character": "Lucy", "id": 6886, "credit_id": "52fe431dc3a36847f803b497", "cast_id": 15, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 3}, {"name": "Ellen Barkin", "character": "Waitress at North Star Cafe", "id": 6913, "credit_id": "52fe431dc3a36847f803b48f", "cast_id": 13, "profile_path": "/rjo0S9uJ9pIEZenvYVCEdqcR8Qu.jpg", "order": 4}, {"name": "Gary Busey", "character": "Highway Patrolman", "id": 2048, "credit_id": "52fe431dc3a36847f803b493", "cast_id": 14, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 5}, {"name": "Cameron Diaz", "character": "Blonde TV Reporter", "id": 6941, "credit_id": "52fe431dc3a36847f803b49f", "cast_id": 17, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 6}, {"name": "Mark Harmon", "character": "Magazine Reporter at Mint 400", "id": 19728, "credit_id": "52fe431dc3a36847f803b49b", "cast_id": 16, "profile_path": "/siHSN1px6pn3EQ3UUj1rOnfpHjI.jpg", "order": 7}, {"name": "Katherine Helmond", "character": "Desk Clerk at Mint Hotel", "id": 381, "credit_id": "52fe431dc3a36847f803b4a3", "cast_id": 18, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 8}, {"name": "Michael Jeter", "character": "Ron Bumquist", "id": 2169, "credit_id": "52fe431dc3a36847f803b4a7", "cast_id": 19, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 9}, {"name": "Penn Jillette", "character": "Carnie Talker", "id": 37221, "credit_id": "52fe431dc3a36847f803b4cf", "cast_id": 26, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 10}, {"name": "Craig Bierko", "character": "Lacerda", "id": 14886, "credit_id": "52fe431dc3a36847f803b4d3", "cast_id": 27, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 11}, {"name": "Lyle Lovett", "character": "Road Person", "id": 11059, "credit_id": "52fe431dc3a36847f803b4d7", "cast_id": 28, "profile_path": "/yDaJWyKH5MKZkAPVCb6vMC2lnlJ.jpg", "order": 12}, {"name": "Laraine Newman", "character": "Frog-Eyed Woman", "id": 35159, "credit_id": "52fe431dc3a36847f803b4db", "cast_id": 29, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 13}, {"name": "Harry Dean Stanton", "character": "Judge", "id": 5048, "credit_id": "52fe431dc3a36847f803b4df", "cast_id": 30, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 14}, {"name": "Tim Thomerson", "character": "Hoodlum", "id": 29712, "credit_id": "52fe431dc3a36847f803b4e3", "cast_id": 31, "profile_path": "/bh8TYtiz09sSen5seoVPdcsZ9SF.jpg", "order": 15}, {"name": "Flea", "character": "Hippie/Musician", "id": 1237, "credit_id": "52fe431dc3a36847f803b4f1", "cast_id": 34, "profile_path": "/3mvSPp8RpuuPJUuNwq9PyjFu2Ug.jpg", "order": 16}, {"name": "Christopher Meloni", "character": "Sven, Flamingo Hotel Clerk", "id": 22227, "credit_id": "52fe431dc3a36847f803b4f5", "cast_id": 35, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 17}, {"name": "Troy Evans", "character": "Police Chief", "id": 31006, "credit_id": "52fe431dc3a36847f803b4f9", "cast_id": 36, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 18}, {"name": "Debbie Reynolds", "character": "Herself (voice)", "id": 8857, "credit_id": "52fe431dc3a36847f803b4fd", "cast_id": 37, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 19}, {"name": "Jenette Goldstein", "character": "Alice the Maid", "id": 3981, "credit_id": "52fe431dc3a36847f803b501", "cast_id": 38, "profile_path": "/wCcO7cqHJVtnfRlvAJvo7jKd6Bq.jpg", "order": 20}, {"name": "Verne Troyer", "character": "Wee Waiter", "id": 10987, "credit_id": "52fe431dc3a36847f803b505", "cast_id": 39, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 21}, {"name": "Gregory Itzin", "character": "Mint Hotel Clerk", "id": 21142, "credit_id": "52fe431dc3a36847f803b509", "cast_id": 40, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 22}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b453", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 7.2, "runtime": 118}, "34647": {"poster_path": "/PayQwjnWFJLMbSllV2Gq1kkQs8.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "This psychedelic tour of life after death is seen entirely from the point of view of Oscar (Nathaniel Brown), a young American drug dealer and addict living in Tokyo with his prostitute sister, Linda (Paz de la Huerta). When Oscar is killed by police during a bust gone bad, his spirit journeys from the past -- where he sees his parents before their deaths -- to the present -- where he witnesses his own autopsy -- and then to the future, where he looks out for his sister from beyond the grave.", "video": false, "id": 34647, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Enter the Void", "tagline": "", "vote_count": 64, "homepage": "http://www.ifcfilms.com/films/enter-the-void", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1191111", "adult": false, "backdrop_path": "/AdAxR8ObgT8Cz0d5hp4UuZGibrW.jpg", "production_companies": [{"name": "BIM Distribuzione", "id": 225}, {"name": "Wild Bunch", "id": 856}], "release_date": "2009-05-05", "popularity": 0.406017995685585, "original_title": "Enter the Void", "budget": 13000000, "cast": [{"name": "Nathaniel Brown", "character": "Oscar", "id": 112741, "credit_id": "52fe45719251416c91032793", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Paz de la Huerta", "character": "Linda", "id": 59882, "credit_id": "52fe45719251416c91032797", "cast_id": 4, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 1}, {"name": "Cyril Roy", "character": "Alex", "id": 112745, "credit_id": "52fe45719251416c910327a7", "cast_id": 8, "profile_path": null, "order": 2}, {"name": "Masato Tanno", "character": "Mario", "id": 545627, "credit_id": "52fe45719251416c910327af", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Jesse Kuhn", "character": "Young Oscar", "id": 112743, "credit_id": "52fe45719251416c9103279f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Ed Spear", "character": "Bruno", "id": 112744, "credit_id": "52fe45719251416c910327a3", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Emily Alyn Lind", "character": "Young Linda", "id": 112742, "credit_id": "52fe45719251416c9103279b", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Olly Alexander", "character": "Victor", "id": 89823, "credit_id": "52fe45719251416c910327ab", "cast_id": 9, "profile_path": "/11MOco4DycbgPxRtYKa1Hwhe9oC.jpg", "order": 7}], "directors": [{"name": "Gaspar No\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe45719251416c91032789", "profile_path": "/zuzX3QLKI4FKsOB4QPseYkO73mY.jpg", "id": 14597}], "vote_average": 7.1, "runtime": 161}, "1880": {"poster_path": "/hVyeN1aFmqLsRK9VNElETYBDtnf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35, "overview": "It is the mid-1980s. From out of the sky, Soviet and Cuban troops begin landing on the football field of a Colorado high school. In seconds, the paratroops have attacked the school and sent a group of teenagers fleeing into the mountains. Armed only with hunting rifles, pistols and bows and arrows, the teens struggles to survive the bitter winter and Soviet KGB patrols hunting for them.", "video": false, "id": 1880, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Red Dawn", "tagline": "", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0087985", "adult": false, "backdrop_path": "/9obFHiluXvDaALGsrdJIOhh5HO9.jpg", "production_companies": [{"name": "Valkyrie Films", "id": 774}, {"name": "United Artists", "id": 60}], "release_date": "1984-08-10", "popularity": 0.326183693099396, "original_title": "Red Dawn", "budget": 0, "cast": [{"name": "Patrick Swayze", "character": "Jed", "id": 723, "credit_id": "52fe431dc3a36847f803b5af", "cast_id": 1, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 0}, {"name": "C. Thomas Howell", "character": "Robert", "id": 2878, "credit_id": "52fe431dc3a36847f803b5b3", "cast_id": 2, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Erica", "id": 1063, "credit_id": "52fe431dc3a36847f803b5b7", "cast_id": 3, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Darren Dalton", "character": "Daryl", "id": 2884, "credit_id": "52fe431dc3a36847f803b5bb", "cast_id": 4, "profile_path": "/ilvaY9lSWPWMPXxRmrDBTl3xbWm.jpg", "order": 3}, {"name": "Charlie Sheen", "character": "Matt", "id": 6952, "credit_id": "52fe431dc3a36847f803b5bf", "cast_id": 5, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 4}, {"name": "Jennifer Grey", "character": "Toni", "id": 722, "credit_id": "52fe431dc3a36847f803b5e7", "cast_id": 12, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 5}, {"name": "Brad Savage", "character": "Danny", "id": 19737, "credit_id": "52fe431dc3a36847f803b5eb", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Ben Johnson", "character": "Mr. Mason", "id": 8258, "credit_id": "52fe431dc3a36847f803b5fb", "cast_id": 16, "profile_path": "/39W793yr65FB1JqcctWQMmzYBAD.jpg", "order": 7}, {"name": "Harry Dean Stanton", "character": "Mr. Eckert", "id": 5048, "credit_id": "52fe431dc3a36847f803b5ff", "cast_id": 17, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 8}, {"name": "William Smith", "character": "Strelnikov", "id": 98102, "credit_id": "52fe431dc3a36847f803b603", "cast_id": 18, "profile_path": "/tWYurHQCqBdwgq7YAdaZ2AoRV0a.jpg", "order": 9}, {"name": "Powers Boothe", "character": "Lt. Col. Andrew 'Andy' Tanner", "id": 6280, "credit_id": "52fe431dc3a36847f803b607", "cast_id": 19, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 10}], "directors": [{"name": "John Milius", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b5d7", "profile_path": "/uBNb69DEc84IZxKD1bdo8Ex2j6j.jpg", "id": 8328}], "vote_average": 6.7, "runtime": 114}, "10074": {"poster_path": "/6LDKcAFFNJ3ra1a5LgPSiAbyJHC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13938332, "overview": "For Rod Kimball, performing stunts is a way of life, even though he is rather accident-prone. Poor Rod cannot even get any respect from his stepfather, Frank, who beats him up in weekly sparring matches. When Frank falls ill, Rod devises his most outrageous stunt yet to raise money for Frank's operation -- and then Rod will kick Frank's butt.", "video": false, "id": 10074, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Hot Rod", "tagline": "Smack destiny in the face.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0787475", "adult": false, "backdrop_path": "/jbhGokP7nrCoHwDsWxW5pbOBrjR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2007-08-03", "popularity": 0.584943133437151, "original_title": "Hot Rod", "budget": 0, "cast": [{"name": "Andy Samberg", "character": "Rod Kimble", "id": 62861, "credit_id": "52fe431d9251416c75003fe1", "cast_id": 22, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 0}, {"name": "Isla Fisher", "character": "Denise", "id": 52848, "credit_id": "52fe431d9251416c75003fe5", "cast_id": 23, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 1}, {"name": "Bill Hader", "character": "Dave", "id": 19278, "credit_id": "52fe431d9251416c75003fed", "cast_id": 25, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 2}, {"name": "Sissy Spacek", "character": "Marie Powell", "id": 5606, "credit_id": "52fe431d9251416c75003fe9", "cast_id": 24, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 3}, {"name": "Danny McBride", "character": "Rico", "id": 62862, "credit_id": "52fe431d9251416c75003ff1", "cast_id": 26, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 4}, {"name": "Jorma Taccone", "character": "Kevin Powell", "id": 62863, "credit_id": "52fe431d9251416c75003ff5", "cast_id": 27, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 5}, {"name": "Ian McShane", "character": "Frank Powell", "id": 6972, "credit_id": "52fe431d9251416c75003ff9", "cast_id": 28, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 6}, {"name": "Will Arnett", "character": "Jonathan", "id": 21200, "credit_id": "52fe431d9251416c75003ffd", "cast_id": 29, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 7}, {"name": "Chris Parnell", "character": "Barry Pasternack", "id": 51382, "credit_id": "52fe431d9251416c75004001", "cast_id": 30, "profile_path": "/dLdXHfbJ7TMe3qbtNzPpSLuaMos.jpg", "order": 8}, {"name": "Mark Acheson", "character": "Homeless Dude", "id": 32751, "credit_id": "52fe431d9251416c75004005", "cast_id": 31, "profile_path": "/8XWp2fiHiyYcgMeEgcttdpiJpRw.jpg", "order": 9}, {"name": "Ken Kirzinger", "character": "Trailer Guy", "id": 50094, "credit_id": "52fe431d9251416c75004009", "cast_id": 32, "profile_path": "/g90jZeSii6OmNOlNoxGFwCb2spJ.jpg", "order": 10}, {"name": "Alana Husband", "character": "Waitress", "id": 41434, "credit_id": "52fe431d9251416c7500400d", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Chester Tam", "character": "Richardson", "id": 62864, "credit_id": "52fe431d9251416c75004011", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Britt Irvin", "character": "Cathy", "id": 62866, "credit_id": "52fe431d9251416c75004015", "cast_id": 35, "profile_path": "/mgM6EMxHLlliratzLQC6dJOKTnd.jpg", "order": 13}, {"name": "Brittany Tiplady", "character": "Maggie", "id": 62865, "credit_id": "52fe431d9251416c75004019", "cast_id": 36, "profile_path": "/qfOvLcYe20JdmvZ2PY8M89z3Gzo.jpg", "order": 14}, {"name": "Andrew Moxham", "character": "Sullivan", "id": 62867, "credit_id": "52fe431d9251416c7500401d", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Alvin Sanders", "character": "Furious Boss", "id": 62869, "credit_id": "52fe431d9251416c75004021", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Terri O'Neill", "character": "Angry Mom", "id": 62868, "credit_id": "52fe431d9251416c75004025", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Paulo Ribeiro", "character": "EMT", "id": 62871, "credit_id": "52fe431d9251416c75004029", "cast_id": 40, "profile_path": null, "order": 18}, {"name": "Chris Eastman", "character": "EMT", "id": 62870, "credit_id": "52fe431d9251416c7500402d", "cast_id": 41, "profile_path": null, "order": 19}], "directors": [{"name": "Akiva Schaffer", "department": "Directing", "job": "Director", "credit_id": "52fe431d9251416c75003fa7", "profile_path": "/AndF7ndhBbCgHTicoHjCKDxmoi5.jpg", "id": 62854}], "vote_average": 5.9, "runtime": 88}, "1883": {"poster_path": "/jDQ2iBJuiimvYqk9orA2YaigBmW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48169908, "overview": "The biopic of the controversial and influential Black Nationalist leader.", "video": false, "id": 1883, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Malcolm X", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104797", "adult": false, "backdrop_path": "/zGP6Z763OkhtxcBemkm3HAWSNjF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "JVC Entertainment", "id": 182}], "release_date": "1992-11-18", "popularity": 0.879723779738991, "original_title": "Malcolm X", "budget": 34000000, "cast": [{"name": "Denzel Washington", "character": "Malcolm X", "id": 5292, "credit_id": "52fe431dc3a36847f803b6f1", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Angela Bassett", "character": "Dr. Betty Shabazz", "id": 9780, "credit_id": "52fe431dc3a36847f803b6f5", "cast_id": 2, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 1}, {"name": "Albert Hall", "character": "Baines", "id": 8354, "credit_id": "52fe431dc3a36847f803b6f9", "cast_id": 3, "profile_path": "/yHGN2pIdBcBk19sAu0EchOxfYMY.jpg", "order": 2}, {"name": "Al Freeman, Jr.", "character": "Elijah Muhammad", "id": 19739, "credit_id": "52fe431dc3a36847f803b6fd", "cast_id": 4, "profile_path": "/lDckTN0EKGEPzaWWKtvUd1CNkk7.jpg", "order": 3}, {"name": "Delroy Lindo", "character": "West Indian Archie", "id": 18792, "credit_id": "52fe431dc3a36847f803b701", "cast_id": 5, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 4}, {"name": "Spike Lee", "character": "Shorty", "id": 5281, "credit_id": "52fe431dc3a36847f803b705", "cast_id": 6, "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "order": 5}, {"name": "Theresa Randle", "character": "Laura", "id": 4604, "credit_id": "52fe431dc3a36847f803b709", "cast_id": 7, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 6}, {"name": "Kate Vernon", "character": "Sophia", "id": 19740, "credit_id": "52fe431dc3a36847f803b70d", "cast_id": 8, "profile_path": "/qQRoxwIVkRU0al9J2EUDBSD80kq.jpg", "order": 7}, {"name": "Peter Boyle", "character": "Captain Green", "id": 1039, "credit_id": "52fe431dc3a36847f803b74d", "cast_id": 19, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 8}, {"name": "Giancarlo Esposito", "character": "Thomas Hayer", "id": 4808, "credit_id": "52fe431dc3a36847f803b751", "cast_id": 20, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 9}, {"name": "Karen Allen", "character": "Miss Dunne", "id": 650, "credit_id": "52fe431dc3a36847f803b755", "cast_id": 21, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 10}, {"name": "Christopher Plummer", "character": "Chaplain Gill", "id": 290, "credit_id": "52fe431dc3a36847f803b759", "cast_id": 22, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 11}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b713", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 6.7, "runtime": 202}, "75612": {"poster_path": "/hmOzkHlkGvi8x24fYpFSnXvjklv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 286168572, "overview": "Jack Harper (Tom Cruise) is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack\u2019s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.", "video": false, "id": 75612, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Oblivion", "tagline": "Earth is a memory worth fighting for", "vote_count": 2677, "homepage": "http://www.oblivionmovie2013.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1483013", "adult": false, "backdrop_path": "/8TE77jL2e4zdERpv8hnBAHUmFRx.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Monolith Pictures (III)", "id": 19647}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Radical Studios", "id": 19648}], "release_date": "2013-04-18", "popularity": 2.90611047188882, "original_title": "Oblivion", "budget": 120000000, "cast": [{"name": "Tom Cruise", "character": "Jack", "id": 500, "credit_id": "52fe4909c3a368484e1175c3", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Beech", "id": 192, "credit_id": "52fe4909c3a368484e117651", "cast_id": 39, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Olga Kurylenko", "character": "Julia", "id": 18182, "credit_id": "52fe4909c3a368484e11762d", "cast_id": 28, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 2}, {"name": "Andrea Riseborough", "character": "Victoria", "id": 127558, "credit_id": "52fe4909c3a368484e117631", "cast_id": 29, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 3}, {"name": "Nikolaj Coster-Waldau", "character": "Sykes", "id": 12795, "credit_id": "52fe4909c3a368484e117635", "cast_id": 30, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 4}, {"name": "Melissa Leo", "character": "Sally", "id": 6832, "credit_id": "52fe4909c3a368484e117655", "cast_id": 41, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 5}, {"name": "Zo\u00eb Bell", "character": "Kara", "id": 20494, "credit_id": "52fe4909c3a368484e11768f", "cast_id": 58, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 6}, {"name": "Abigail Lowe", "character": "Julia's Child", "id": 1171690, "credit_id": "52fe4909c3a368484e117693", "cast_id": 59, "profile_path": null, "order": 7}, {"name": "Isabelle Lowe", "character": "Julia's Child", "id": 1171689, "credit_id": "52fe4909c3a368484e117697", "cast_id": 60, "profile_path": null, "order": 8}, {"name": "David Madison", "character": "Grow Hall Survivor", "id": 1198939, "credit_id": "52fe4909c3a368484e11769b", "cast_id": 61, "profile_path": "/iDdNORBzEC0fw37TMpO0uHYCaR7.jpg", "order": 9}, {"name": "John L. Armijo", "character": "NASA Ground Control", "id": 1158069, "credit_id": "53c993adc3a368778d00013e", "cast_id": 62, "profile_path": "/c52EjlXyT7khV9Nb1sqvs7QlYta.jpg", "order": 10}, {"name": "Fileena Bahris", "character": "Survivor", "id": 139188, "credit_id": "53c993c6c3a3687787000133", "cast_id": 63, "profile_path": "/vDi6OPHDtuMPW9G3xEd3zeEBnI6.jpg", "order": 11}, {"name": "Joanne Bahris", "character": "Tourist", "id": 139189, "credit_id": "53c994d3c3a368778a000168", "cast_id": 64, "profile_path": "/y0yFDqmgz44C5gPRMAqGH4JhwN0.jpg", "order": 12}, {"name": "Andrew Breland", "character": "Survivor", "id": 1343401, "credit_id": "53c9952ec3a368778d000159", "cast_id": 65, "profile_path": "/a4ue52wKtwUQhDZEqpFkcNfRycE.jpg", "order": 13}], "directors": [{"name": "Joseph Kosinski", "department": "Directing", "job": "Director", "credit_id": "52fe4909c3a368484e1175c9", "profile_path": "/q83mNUDP6eVjlY9D6LCjJcXPlsX.jpg", "id": 86270}], "vote_average": 6.2, "runtime": 126}, "1885": {"poster_path": "/5kKor5pZ3ov08CAstSyk7FGDKVN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90815558, "overview": "Hassled by the school bullies, Daniel LaRusso has his share of adolescent woes. Luckily, his apartment building houses a resident martial arts master: Kesuke Miyagi, who agrees to train Daniel ... and ends up teaching him much more than self-defense. Armed with newfound confidence, skill and wisdom, Daniel ultimately faces off against his tormentors in this hugely popular classic underdog tale.", "video": false, "id": 1885, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid", "tagline": "Only the 'Old One' could teach him the secrets of the masters.", "vote_count": 261, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sq4c328WCIFIVD7B9ZGFRwDbUTH.jpg", "poster_path": "/o6h2F0C5eZOy50Q76fNYzc9mvvw.jpg", "id": 8580, "name": "The Karate Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087538", "adult": false, "backdrop_path": "/lpJGmjxZ9ONC4efcnQdbyYyxFR5.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1984-06-22", "popularity": 0.654461559643568, "original_title": "The Karate Kid", "budget": 0, "cast": [{"name": "Ralph Macchio", "character": "Daniel LaRusso", "id": 2877, "credit_id": "52fe431dc3a36847f803b84d", "cast_id": 10, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 0}, {"name": "Pat Morita", "character": "Mr. Kesuke Miyagi", "id": 23915, "credit_id": "52fe431ec3a36847f803b851", "cast_id": 11, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 1}, {"name": "William Zabka", "character": "Johnny Lawrence", "id": 56124, "credit_id": "52fe431ec3a36847f803b86d", "cast_id": 18, "profile_path": "/kHcFbjmtF3CPK8uIDzKh5aj2bUv.jpg", "order": 2}, {"name": "Martin Kove", "character": "John Kreese", "id": 56117, "credit_id": "52fe431ec3a36847f803b869", "cast_id": 17, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 3}, {"name": "Chad McQueen", "character": "Dutch", "id": 23920, "credit_id": "52fe431ec3a36847f803b865", "cast_id": 16, "profile_path": "/bQxqP7npaJTSxhsNoaEllaYypwa.jpg", "order": 4}, {"name": "Randee Heller", "character": "Lucille LaRusso", "id": 23916, "credit_id": "52fe431ec3a36847f803b855", "cast_id": 12, "profile_path": "/birMI3xI4SiX8swADkjhZoAzTza.jpg", "order": 5}, {"name": "Elisabeth Shue", "character": "Ali Mills", "id": 1951, "credit_id": "52fe431ec3a36847f803b859", "cast_id": 13, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 6}, {"name": "Ron Thomas", "character": "Bobby", "id": 23918, "credit_id": "52fe431ec3a36847f803b85d", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Rob Garrison", "character": "Tommy", "id": 23919, "credit_id": "52fe431ec3a36847f803b861", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Scott Strader", "character": "Eddie", "id": 189512, "credit_id": "539a0d9a0e0a260bfe0006c3", "cast_id": 19, "profile_path": "/A3GzKeXTMdEnYtWSBM7PN0bbtLb.jpg", "order": 9}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe431dc3a36847f803b819", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 6.7, "runtime": 126}, "1887": {"poster_path": "/fMiJZQ3o1Q4WVje2aZFxO4wxb2w.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60474340, "overview": "The retelling of France's iconic but ill-fated queen, Marie Antoinette. From her betrothal and marriage to Louis XVI at 15 to her reign as queen at 19 and ultimately the fall of Versailles.", "video": false, "id": 1887, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Marie Antoinette", "tagline": "Rumor. Scandal. Fame. Revolution.", "vote_count": 111, "homepage": "http://www.sonypictures.com/homevideo/marieantoinette/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0422720", "adult": false, "backdrop_path": "/cKUFvH2PFYSW4698z5VG0sP08lw.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Pricel", "id": 6542}, {"name": "Tohokushinsha Film", "id": 12387}, {"name": "American Zoetrope", "id": 70}, {"name": "Commission du Film France", "id": 20637}, {"name": "Commission du Film \u00cele-de-France", "id": 20638}], "release_date": "2006-05-24", "popularity": 0.891641208312712, "original_title": "Marie Antoinette", "budget": 40000000, "cast": [{"name": "Kirsten Dunst", "character": "Marie Antoinette", "id": 205, "credit_id": "52fe431ec3a36847f803b92b", "cast_id": 19, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Jason Schwartzman", "character": "Louis XVI", "id": 17881, "credit_id": "52fe431ec3a36847f803b92f", "cast_id": 20, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 1}, {"name": "Judy Davis", "character": "Comtesse de Noailles", "id": 351, "credit_id": "52fe431ec3a36847f803b933", "cast_id": 21, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 2}, {"name": "Rip Torn", "character": "Louis XV", "id": 9626, "credit_id": "52fe431ec3a36847f803b937", "cast_id": 22, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 3}, {"name": "Asia Argento", "character": "Comtesse du Barry", "id": 18514, "credit_id": "52fe431ec3a36847f803b93b", "cast_id": 23, "profile_path": "/dCbZQbhfpJqPHYXGyMNf5LT5pBz.jpg", "order": 4}, {"name": "Rose Byrne", "character": "Duchesse de Polignac", "id": 9827, "credit_id": "52fe431ec3a36847f803b93f", "cast_id": 24, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 5}, {"name": "Mary Nighy", "character": "Princesse Lamballe", "id": 19774, "credit_id": "52fe431ec3a36847f803b943", "cast_id": 25, "profile_path": "/vUBhiWzuETlJjWKgGLldp8aEjcc.jpg", "order": 6}, {"name": "James Lance", "character": "L\u00e9onard", "id": 19775, "credit_id": "52fe431ec3a36847f803b947", "cast_id": 26, "profile_path": "/9xmBW177n0WfWjHa5AhV47zLuLD.jpg", "order": 7}, {"name": "Steve Coogan", "character": "Ambassador Mercy", "id": 4581, "credit_id": "52fe431ec3a36847f803b94b", "cast_id": 27, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 8}, {"name": "Jean-Christophe Bouvet", "character": "Duc de Choiseul", "id": 19776, "credit_id": "52fe431ec3a36847f803b94f", "cast_id": 28, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 9}, {"name": "Florrie Betts", "character": "Marie Therese - 6 years", "id": 19777, "credit_id": "52fe431ec3a36847f803b953", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Guillaume Gallienne", "character": "Vergennes", "id": 6554, "credit_id": "52fe431ec3a36847f803b957", "cast_id": 30, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 11}, {"name": "Marianne Faithfull", "character": "Maria Theresa", "id": 19995, "credit_id": "52fe431ec3a36847f803b95b", "cast_id": 31, "profile_path": "/sVWt2U1im7YZcCVlW6YF9RT5yZR.jpg", "order": 12}, {"name": "Aurore Cl\u00e9ment", "character": "Duchesse de Char", "id": 9893, "credit_id": "52fe431ec3a36847f803b95f", "cast_id": 32, "profile_path": "/i6p9msKzKG1P9I2QcCk3h3vuO5F.jpg", "order": 13}, {"name": "Alain Doutey", "character": "Chief Valet", "id": 35608, "credit_id": "52fe431ec3a36847f803b963", "cast_id": 33, "profile_path": "/kkuuCbxtmz22my8djZOw7CgwGXv.jpg", "order": 14}, {"name": "Shirley Henderson", "character": "Aunt Sophie", "id": 1834, "credit_id": "52fe431ec3a36847f803b973", "cast_id": 36, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 15}, {"name": "Molly Shannon", "character": "Aunt Victoire", "id": 28640, "credit_id": "52fe431ec3a36847f803b977", "cast_id": 37, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 16}, {"name": "Danny Huston", "character": "Emperor Joseph II", "id": 6413, "credit_id": "52fe431ec3a36847f803b97b", "cast_id": 38, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 17}, {"name": "Jamie Dornan", "character": "", "id": 1254583, "credit_id": "5443d92ac3a3683e0100510a", "cast_id": 39, "profile_path": "/11sPIeECW74loLh3tconPk842c2.jpg", "order": 18}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803b8c1", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 6.6, "runtime": 123}, "26466": {"poster_path": "/ykF5bw7xJtCIRZcrbnUisHjc4Pp.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The story revolves around the passengers of a yachting trip in the Atlantic Ocean who, when struck by mysterious weather conditions, jump to another ship only to experience greater havoc on the open seas.", "video": false, "id": 26466, "genres": [{"id": 27, "name": "Horror"}], "title": "Triangle", "tagline": "A Passage to Hell", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1187064", "adult": false, "backdrop_path": "/cL1R5nz7BUVU3d2shLDTaDcU0Ga.jpg", "production_companies": [{"name": "Triangle Film Corporation", "id": 1307}, {"name": "UK Film Council", "id": 2452}, {"name": "Icon Entertainment International", "id": 4564}, {"name": "Framestore", "id": 13502}, {"name": "Pacific Film and Television Commission", "id": 4024}, {"name": "Dan Films", "id": 1854}, {"name": "Pictures in Paradise", "id": 3207}], "release_date": "2009-10-16", "popularity": 0.348556549465537, "original_title": "Triangle", "budget": 12000000, "cast": [{"name": "Melissa George", "character": "Jess", "id": 27755, "credit_id": "52fe4504c3a368484e043c11", "cast_id": 7, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 0}, {"name": "Liam Hemsworth", "character": "Victor", "id": 96066, "credit_id": "52fe4504c3a368484e043c0d", "cast_id": 6, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 1}, {"name": "Emma Lung", "character": "Heather", "id": 62754, "credit_id": "52fe4504c3a368484e043c15", "cast_id": 8, "profile_path": "/f60E175MgyoOFluTyCPeJ3PyAMb.jpg", "order": 2}, {"name": "Rachael Carpani", "character": "Sally", "id": 77767, "credit_id": "52fe4504c3a368484e043c19", "cast_id": 9, "profile_path": "/imjkboHNPo1mKeqGvpbau1TZXxA.jpg", "order": 3}, {"name": "Michael Dorman", "character": "Greg", "id": 76068, "credit_id": "52fe4504c3a368484e043c1d", "cast_id": 10, "profile_path": "/4nx438tUqBtF7tQPAyMIGGxgSps.jpg", "order": 4}, {"name": "Joshua McIvor", "character": "Tommy", "id": 993846, "credit_id": "52fe4504c3a368484e043c27", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Henry Nixon", "character": "Downey", "id": 555945, "credit_id": "52fe4504c3a368484e043c2b", "cast_id": 14, "profile_path": "/ulSJ1TPhQa3807nkyreb1xy2h9E.jpg", "order": 6}], "directors": [{"name": "Christopher Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4504c3a368484e043bf7", "profile_path": null, "id": 41041}], "vote_average": 7.1, "runtime": 99}, "1891": {"poster_path": "/6u1fYtxG5eqjhtCPDx04pJphQRW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 538400000, "overview": "The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.", "video": false, "id": 1891, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode V - The Empire Strikes Back", "tagline": "The Adventure Continues...", "vote_count": 2229, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080684", "adult": false, "backdrop_path": "/AkE7LQs2hPMG5tpWYcum847Knre.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "1980-05-17", "popularity": 3.47978050415862, "original_title": "Star Wars: Episode V - The Empire Strikes Back", "budget": 18000000, "cast": [{"name": "Mark Hamill", "character": "Luke Skywalker", "id": 2, "credit_id": "52fe431ec3a36847f803bb6b", "cast_id": 7, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Han Solo", "id": 3, "credit_id": "52fe431ec3a36847f803bb6f", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Princess Leia", "id": 4, "credit_id": "52fe431ec3a36847f803bb73", "cast_id": 9, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "David Prowse", "character": "Darth Vader", "id": 24342, "credit_id": "52fe431ec3a36847f803bb77", "cast_id": 10, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 3}, {"name": "Billy Dee Williams", "character": "Lando Calrissian", "id": 3799, "credit_id": "52fe431ec3a36847f803bb7b", "cast_id": 11, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe431ec3a36847f803bb7f", "cast_id": 12, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "52fe431ec3a36847f803bb83", "cast_id": 13, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 6}, {"name": "James Earl Jones", "character": "Darth Vader (Voice)", "id": 15152, "credit_id": "52fe431ec3a36847f803bb8d", "cast_id": 15, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 7}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431ec3a36847f803bb91", "cast_id": 16, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 8}, {"name": "Frank Oz", "character": "Yoda (Voice)", "id": 7908, "credit_id": "52fe431ec3a36847f803bb95", "cast_id": 17, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 9}, {"name": "Alec Guinness", "character": "Ben 'Obi-wan' Kenobi", "id": 12248, "credit_id": "52fe431ec3a36847f803bb99", "cast_id": 18, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 10}, {"name": "Jeremy Bulloch", "character": "Boba Fett", "id": 33185, "credit_id": "52fe431ec3a36847f803bb9d", "cast_id": 19, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 11}, {"name": "John Hollis", "character": "Lando's aide", "id": 27165, "credit_id": "52fe431ec3a36847f803bba1", "cast_id": 20, "profile_path": "/ts7bAzI7hvePWVprMjzHyvpBwNB.jpg", "order": 12}, {"name": "Jack Purvis", "character": "Chief Ugnaught", "id": 132538, "credit_id": "52fe431ec3a36847f803bba5", "cast_id": 21, "profile_path": "/tuFTY1jhlEgZm3vM80KdAEvHwNI.jpg", "order": 13}, {"name": "Des Webb", "character": "Snow Creature", "id": 132539, "credit_id": "52fe431ec3a36847f803bba9", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Clive Revill", "character": "Emperor (voice)", "id": 20128, "credit_id": "52fe431ec3a36847f803bbad", "cast_id": 23, "profile_path": "/5o1d59FBQ9i8xtd1aWZClDdzZ3E.jpg", "order": 15}, {"name": "Julian Glover", "character": "Imperial Force General Veers", "id": 740, "credit_id": "52fe431ec3a36847f803bbb1", "cast_id": 24, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 16}, {"name": "Kenneth Colley", "character": "Imperial Force Admiral Piett", "id": 10734, "credit_id": "52fe431ec3a36847f803bbb5", "cast_id": 25, "profile_path": "/yNZF27tBauzUcg6Fw7M2xsRD8IC.jpg", "order": 17}, {"name": "John Ratzenberger", "character": "Rebel Force Major Derlin", "id": 7907, "credit_id": "52fe431ec3a36847f803bbbf", "cast_id": 28, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 18}, {"name": "Michael Sheard", "character": "Admiral Ozzel", "id": 70417, "credit_id": "54e6fe74c3a3681fec000bff", "cast_id": 31, "profile_path": "/a29SbacT0kV8WWuoAMp2FHI5Y7I.jpg", "order": 19}, {"name": "Michael Culver", "character": "Captain Needa", "id": 47520, "credit_id": "54e6ff64c3a3681fec000c1b", "cast_id": 32, "profile_path": "/njBI1pTMMMlon5LufetA1vHn819.jpg", "order": 20}, {"name": "John Dicks", "character": "Captain Lennox, Imperial Officer", "id": 1429986, "credit_id": "54e9886a925141117c002ec7", "cast_id": 33, "profile_path": "/89ivSwkSHcXIfZabh7PDp0LaZF7.jpg", "order": 21}, {"name": "Milton Johns", "character": "Bewil, an Imperial officer", "id": 24625, "credit_id": "54e98baac3a36836e000376d", "cast_id": 34, "profile_path": "/114XmLdlsWn9yY4ACX4U604Ueql.jpg", "order": 22}, {"name": "Mark Jones", "character": "Commander Nemet, an Imperial Officer", "id": 1229839, "credit_id": "54e98eb8c3a36836ea003893", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Oliver Maguire", "character": "Cabbel, an Imperial Officer", "id": 1221792, "credit_id": "54e99076c3a3684ea6002c94", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Robin Scobey", "character": "Lieutenant Venka, an Imperial Officer", "id": 1429987, "credit_id": "54e99169c3a36836ea0038d9", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Bruce Boa", "character": "General Carlist Rieekan, an Rebel Force", "id": 8664, "credit_id": "54e9930dc3a36836d9003564", "cast_id": 38, "profile_path": "/nPCLZTuTfOzSN5CvMnocX3hS92P.jpg", "order": 26}, {"name": "Christopher Malcolm", "character": "Rebel pilot Zev Senesca (Rogue 2)", "id": 47808, "credit_id": "54e9945d9251412eae0038c4", "cast_id": 39, "profile_path": "/9Ua0yZoI6dZQ5VDqfU096dAM1Un.jpg", "order": 27}, {"name": "Denis Lawson", "character": "Rebel Force Wedge (Rogue 3)", "id": 47698, "credit_id": "54e994e49251412ebd00379d", "cast_id": 40, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 28}, {"name": "Ian Liston", "character": "Wes Janson, a Rebel Force (Wedge's Gunner)", "id": 79957, "credit_id": "54e99c159251412eb10038c0", "cast_id": 43, "profile_path": "/k6jCo3N5kFJ7PBybJRRR4b0ngKV.jpg", "order": 31}, {"name": "John Morton", "character": "Dak Ralter, a Rebel Force", "id": 1430007, "credit_id": "54e99c24925141117c003066", "cast_id": 44, "profile_path": "/dizbXcyBZr1BKdjYlWpjy64FJcV.jpg", "order": 32}, {"name": "Richard Oldfield", "character": "Derek Klivian, a Rebel Force Hobbie (Rogue 4)", "id": 1181937, "credit_id": "54e99c2fc3a36836ed003b0b", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Jack McKenzie", "character": "Cal Alder, a Rebel Force Deck Lieutenant", "id": 1211845, "credit_id": "54e99f4fc3a36836dc00390c", "cast_id": 46, "profile_path": "/lyAWpv4xY7reSZoeBGoYSexGmhz.jpg", "order": 34}, {"name": "Jerry Harte", "character": "Rebel Force Head Controller", "id": 1270880, "credit_id": "54e9a042c3a36836d900369f", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Norman Chancer", "character": "Tamizander Rey, a Other Rebel Officer", "id": 116123, "credit_id": "54e9ae4c9251412eb4003837", "cast_id": 48, "profile_path": "/qLKyW9MHMT4TU00CyQt14pSsJzM.jpg", "order": 36}, {"name": "Norwich Duff", "character": "Jeroen Webb, a Other Rebel Officer", "id": 1430038, "credit_id": "54e9afb19251412eb4003852", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Ray Hassett", "character": "Tigran Jamiro, Other Rebel Officer", "id": 1250671, "credit_id": "54e9b13f9251412eb1003ace", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Brigitte Kahn", "character": "Toryn Farr, Other Rebel Officer", "id": 1430048, "credit_id": "54e9b1cac3a36836e0003aeb", "cast_id": 51, "profile_path": "/3GaAIdS0vkFGYQUnKL1c6Cg7HFg.jpg", "order": 39}, {"name": "Burnell Tucker", "character": "Wyron Serper, Other Rebel Officer", "id": 184980, "credit_id": "54e9b3bf925141117c0032e8", "cast_id": 52, "profile_path": "/kRMCT2aPlZO5Cl5404mRyHEQBt6.jpg", "order": 40}], "directors": [{"name": "Irvin Kershner", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803bb55", "profile_path": "/ttTefShgVMqX85QawaGpfE1RT3M.jpg", "id": 10930}], "vote_average": 7.8, "runtime": 124}, "1892": {"poster_path": "/jx5p0aHlbPXqe3AH9G15NvmWaqQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 572700000, "overview": "As Rebel leaders map their strategy for an all-out attack on the Emperor's newer, bigger Death Star. Han Solo remains frozen in the cavernous desert fortress of Jabba the Hutt, the most loathsome outlaw in the universe, who is also keeping Princess Leia as a slave girl. Now a master of the Force, Luke Skywalker rescues his friends, but he cannot become a true Jedi Knight until he wages his own crucial battle against Darth Vader, who has sworn to win Luke over to the dark side of the Force.", "video": false, "id": 1892, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode VI - Return of the Jedi", "tagline": "The Empire Falls...", "vote_count": 1821, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086190", "adult": false, "backdrop_path": "/bvJOpyHYWACDusvQvXxKEHFNjce.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "1983-05-25", "popularity": 3.00770561872384, "original_title": "Star Wars: Episode VI - Return of the Jedi", "budget": 32350000, "cast": [{"name": "Mark Hamill", "character": "Luke Skywalker", "id": 2, "credit_id": "52fe431ec3a36847f803bc13", "cast_id": 8, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Han Solo", "id": 3, "credit_id": "52fe431ec3a36847f803bc17", "cast_id": 9, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Carrie Fisher", "character": "Princess Leia", "id": 4, "credit_id": "52fe431ec3a36847f803bc1b", "cast_id": 10, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 2}, {"name": "Billy Dee Williams", "character": "Lando Calrissian", "id": 3799, "credit_id": "52fe431ec3a36847f803bc1f", "cast_id": 11, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 3}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe431ec3a36847f803bc23", "cast_id": 12, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 4}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "52fe431ec3a36847f803bc27", "cast_id": 13, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 5}, {"name": "James Earl Jones", "character": "Voice of Darth Vader (voice)", "id": 15152, "credit_id": "52fe431ec3a36847f803bc2b", "cast_id": 14, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 6}, {"name": "Frank Oz", "character": "Yoda (voice)", "id": 7908, "credit_id": "52fe431ec3a36847f803bc2f", "cast_id": 15, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 7}, {"name": "Ian McDiarmid", "character": "The Emperor", "id": 27762, "credit_id": "52fe431ec3a36847f803bc33", "cast_id": 16, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 8}, {"name": "Sebastian Shaw", "character": "Anakin Skywalker", "id": 28235, "credit_id": "52fe431ec3a36847f803bc37", "cast_id": 17, "profile_path": "/j6SFQiU0isXWNfMK6Cq4XQPdJDl.jpg", "order": 9}, {"name": "David Prowse", "character": "Darth Vader", "id": 24342, "credit_id": "52fe431ec3a36847f803bc3b", "cast_id": 20, "profile_path": "/a2RoHYMSiRqV6hXL6Z5CXtNyDkt.jpg", "order": 10}, {"name": "Alec Guinness", "character": "Ben 'Obi-Wan' Kenobi", "id": 12248, "credit_id": "52fe431ec3a36847f803bc3f", "cast_id": 21, "profile_path": "/nv3ppxgUQJytFGXZNde4f9ZlshB.jpg", "order": 11}, {"name": "Kenny Baker", "character": "R2-D2 / Paploo", "id": 130, "credit_id": "52fe431ec3a36847f803bc43", "cast_id": 22, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 12}, {"name": "Warwick Davis", "character": "Wicket", "id": 11184, "credit_id": "52fe431ec3a36847f803bc47", "cast_id": 23, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 13}, {"name": "Caroline Blakiston", "character": "Mon Mothma", "id": 37442, "credit_id": "52fe431ec3a36847f803bc57", "cast_id": 26, "profile_path": "/tbABMp1c3zgiJKOoRaIkw9XWQ2Y.jpg", "order": 14}, {"name": "Michael Pennington", "character": "Moff Jerjerrod", "id": 1230989, "credit_id": "54e9c09a92514111b80030b8", "cast_id": 28, "profile_path": "/jreFHCg8golvAEbcwzKtPoqg6YZ.jpg", "order": 15}, {"name": "Kenneth Colley", "character": "Admiral Piett", "id": 10734, "credit_id": "54e9c0e8c3a3684ea60030b6", "cast_id": 29, "profile_path": "/yNZF27tBauzUcg6Fw7M2xsRD8IC.jpg", "order": 16}, {"name": "Michael Carter", "character": "Bib Fortuna", "id": 199055, "credit_id": "54e9c2519251412eb1003c6a", "cast_id": 30, "profile_path": "/rYVKZQ4uYLf7cpAGfdFzDcRNJXw.jpg", "order": 17}, {"name": "Denis Lawson", "character": "Wedge", "id": 47698, "credit_id": "54e9c284c3a36836ea003dd3", "cast_id": 31, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 18}, {"name": "Tim Rose", "character": "Admiral Ackbar", "id": 114761, "credit_id": "54e9c457c3a36836ea003df9", "cast_id": 32, "profile_path": "/oIJel5ldcVQew5XpTG4lne5fvkA.jpg", "order": 19}, {"name": "Dermot Crowley", "character": "General Madine", "id": 17484, "credit_id": "54e9c57bc3a36836d6003757", "cast_id": 33, "profile_path": "/z2flyEd3eV8Ho8mXa8rXOHZw9Yg.jpg", "order": 20}, {"name": "Jeremy Bulloch", "character": "Boba Fett", "id": 33185, "credit_id": "54e9ef85c3a36836ed0043c2", "cast_id": 34, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 21}, {"name": "Femi Taylor", "character": "Oola", "id": 137295, "credit_id": "54e9f1219251412eb1004102", "cast_id": 35, "profile_path": "/565XzSM9ytiM62tUsY9lEsPMZSy.jpg", "order": 22}, {"name": "Annie Arbogast", "character": "Sy Snootles", "id": 1430215, "credit_id": "54e9f1769251412ebd0040c7", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Claire Davenport", "character": "Fat Dancer", "id": 1218876, "credit_id": "54e9f3c992514111b800358c", "cast_id": 37, "profile_path": "/AtPzM3Ot5jpO1CAHe92stDzebjI.jpg", "order": 24}, {"name": "Jack Purvis", "character": "Teebo", "id": 132538, "credit_id": "54e9f40ec3a36836d6003bc5", "cast_id": 38, "profile_path": "/tuFTY1jhlEgZm3vM80KdAEvHwNI.jpg", "order": 25}, {"name": "Mike Edmonds", "character": "Logray", "id": 1220451, "credit_id": "54e9f5eec3a36836e00041c3", "cast_id": 39, "profile_path": "/2sjtnY8P7OZF5L9smPK1grhZmCy.jpg", "order": 26}, {"name": "Jane Busby", "character": "Chief Chirpa", "id": 1430217, "credit_id": "54e9f6cc9251412eae00428a", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Malcolm Dixon", "character": "Ewok Warrior", "id": 995639, "credit_id": "54e9f8fbc3a36836e0004210", "cast_id": 41, "profile_path": "/9Z4ZDKXe6S6gH9S361mM8wJd9Ai.jpg", "order": 28}, {"name": "Mike Cottrell", "character": "Ewok Warrior", "id": 1430487, "credit_id": "54eafc329251412ebd006453", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Nicki Reade", "character": "Nicki", "id": 1430492, "credit_id": "54eafe14c3a36836ea00661a", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Adam Bareham", "character": "Jhoff, a traffic control officer on the Executor", "id": 1430494, "credit_id": "54eafec79251412eb40060b8", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Jonathan Oliver", "character": "Stardestroyer Controller #2", "id": 1430499, "credit_id": "54eb00499251416824003867", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Pip Miller", "character": "Stardestroyer Captain #1", "id": 110422, "credit_id": "54eb0296c3a36836ea006699", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Tom Mannion", "character": "Stardestroyer Captain #2", "id": 147482, "credit_id": "54eb11d5c3a36836ed006b59", "cast_id": 47, "profile_path": "/fjJPHD96Jsko9w1M3vwINRVYoi9.jpg", "order": 34}, {"name": "Margo Apostolos", "character": "Ewok Tokkat", "id": 1430525, "credit_id": "54eb1268c3a36836dc0069f6", "cast_id": 48, "profile_path": "/g40OAFZPuOrRBDDfdpmofaNEarD.jpg", "order": 35}, {"name": "Ray Armstrong", "character": "Ewok", "id": 1430526, "credit_id": "54eb139bc3a36836ed006b8b", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Eileen Baker", "character": "Ewok", "id": 1430527, "credit_id": "54eb1439c3a36836e7006c0c", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Michael Henbury Ballan", "character": "Ewok", "id": 1430528, "credit_id": "54eb1525c3a36836ea006832", "cast_id": 51, "profile_path": "/FGuHVLOjg2im8TdKAgq5QqUmpP.jpg", "order": 38}, {"name": "Bobby Bell", "character": "Ewok", "id": 81414, "credit_id": "54eb191ac3a36836dc006a91", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Patty Bell", "character": "Ewok", "id": 1430556, "credit_id": "54eb1974c3a36836e0006773", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Alan Bennett", "character": "Ewok", "id": 1430564, "credit_id": "54eb1afc9251412eb1006701", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Sarah Bennett", "character": "Ewok", "id": 1430565, "credit_id": "54eb1c82c3a36836ea0068e6", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Pamela Betts", "character": "Ewok", "id": 1430566, "credit_id": "54eb1d64c3a36810020010df", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Danny Blackner", "character": "Ewok", "id": 1430567, "credit_id": "54eb1de3c3a36810020010eb", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Linda Bowley", "character": "Ewok", "id": 1430568, "credit_id": "54eb1e4bc3a36836e7006d24", "cast_id": 58, "profile_path": null, "order": 45}, {"name": "Peter Burroughs", "character": "Ewok", "id": 1430569, "credit_id": "54eb1f0fc3a36836ea006931", "cast_id": 59, "profile_path": "/tsvjxgE4XdmuKTxQxF0s7ThQmkd.jpg", "order": 46}, {"name": "Debbie Lee Carrington", "character": "Romba an Ewok", "id": 19753, "credit_id": "54eb207fc3a36836e000680e", "cast_id": 60, "profile_path": "/xMynWwkjNbBJsiPdjs8aJ977oBq.jpg", "order": 47}, {"name": "Maureen Charlton", "character": "Ewok", "id": 1430576, "credit_id": "54eb20d4c3a36836dc006b6b", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Willie Coppen", "character": "Ewok", "id": 1430580, "credit_id": "54eb213e925141117c005f95", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Sadie Corre", "character": "Ewok", "id": 121478, "credit_id": "54eb22ca9251416824003b58", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Tony Cox", "character": "Ewok Wicket's younger brother Widdle", "id": 19754, "credit_id": "54eb2400c3a36836d9006559", "cast_id": 64, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 51}, {"name": "John Cumming", "character": "Ewok", "id": 1430588, "credit_id": "54eb2b6d9251416824003c13", "cast_id": 65, "profile_path": null, "order": 52}, {"name": "Jean D'Agostino", "character": "Ewok", "id": 1430590, "credit_id": "54eb2be092514111b8005ba0", "cast_id": 66, "profile_path": null, "order": 53}, {"name": "Luis De Jesus", "character": "Ewok", "id": 106406, "credit_id": "54eb2d909251416824003c4c", "cast_id": 67, "profile_path": null, "order": 54}, {"name": "Debbie Dixon", "character": "Ewok Wijunkee", "id": 1430594, "credit_id": "54eb2e06c3a36836d900661d", "cast_id": 68, "profile_path": "/yQAcft0HcCx6GzYjNktnyff7LHp.jpg", "order": 55}, {"name": "Margarita Fern\u00e1ndez", "character": "Ewok", "id": 19756, "credit_id": "54eb30749251412eb10068c8", "cast_id": 69, "profile_path": null, "order": 56}, {"name": "Phil Fondacaro", "character": "Ewok", "id": 12662, "credit_id": "54eb30f09251412ebd00698b", "cast_id": 70, "profile_path": "/3Ao8VPvlytIm3DWFffdSPxwxFdC.jpg", "order": 57}, {"name": "Sal Fondacaro", "character": "Ewok", "id": 1430595, "credit_id": "54eb316a92514111b8005c13", "cast_id": 71, "profile_path": null, "order": 58}, {"name": "Tony Friel", "character": "Ewok", "id": 1430596, "credit_id": "54eb333fc3a36836d60062a8", "cast_id": 72, "profile_path": null, "order": 59}, {"name": "Daniel Frishman", "character": "Ewok", "id": 19751, "credit_id": "54eb3570c3a36836d90066b8", "cast_id": 73, "profile_path": "/ly1pZwHpG74yXjAbjOFDgJqbVQS.jpg", "order": 60}, {"name": "John Ghavan", "character": "Ewok", "id": 1430610, "credit_id": "54eb49ca925141117c00634a", "cast_id": 74, "profile_path": null, "order": 61}, {"name": "Michael Gilden", "character": "Ewok", "id": 1224317, "credit_id": "54eb4b5f9251412ebd006bfe", "cast_id": 75, "profile_path": "/lIF4AHqkogLnCO3xGDVKDPuHKOh.jpg", "order": 62}, {"name": "Paul Grant", "character": "Ewok", "id": 1430611, "credit_id": "54eb4c0cc3a36836dc006f4c", "cast_id": 76, "profile_path": null, "order": 63}, {"name": "Lydia Green", "character": "Ewok", "id": 1430613, "credit_id": "54eb4c899251412ebd006c19", "cast_id": 77, "profile_path": null, "order": 64}, {"name": "Lars Green", "character": "Ewok", "id": 1430615, "credit_id": "54eb4cecc3a36810020014d0", "cast_id": 78, "profile_path": null, "order": 65}, {"name": "Pam Grizz", "character": "Ewok", "id": 1430857, "credit_id": "54ebb5bfc3a368676d00038a", "cast_id": 79, "profile_path": null, "order": 66}, {"name": "Andrew Herd", "character": "Ewok", "id": 1430858, "credit_id": "54ebb6639251417961000006", "cast_id": 80, "profile_path": null, "order": 67}, {"name": "J.J. Jackson", "character": "Ewok", "id": 1430859, "credit_id": "54ebb779c3a3686d56000017", "cast_id": 81, "profile_path": null, "order": 68}, {"name": "Richard Jones", "character": "Ewok", "id": 1430860, "credit_id": "54ebb8639251417965000030", "cast_id": 82, "profile_path": null, "order": 69}, {"name": "Trevor Jones", "character": "Ewok", "id": 1430915, "credit_id": "54ec25a9c3a3686d5e000ed1", "cast_id": 83, "profile_path": null, "order": 70}, {"name": "Glynn Jones", "character": "Ewok", "id": 1430916, "credit_id": "54ec2648c3a3686d58000f2a", "cast_id": 84, "profile_path": null, "order": 71}, {"name": "Karen Lay", "character": "Ewok", "id": 1430917, "credit_id": "54ec28709251417971000fad", "cast_id": 85, "profile_path": null, "order": 72}, {"name": "John Lummiss", "character": "Ewok", "id": 1430918, "credit_id": "54ec28d9925141796100100a", "cast_id": 86, "profile_path": null, "order": 73}, {"name": "Nancy MacLean", "character": "Ewok", "id": 1430919, "credit_id": "54ec2970c3a3686d58000f8d", "cast_id": 87, "profile_path": null, "order": 74}, {"name": "Peter Mandell", "character": "Ewok", "id": 362851, "credit_id": "54ec2a4fc3a3686d660011e0", "cast_id": 88, "profile_path": null, "order": 75}, {"name": "Carole Morris", "character": "Ewok", "id": 1430920, "credit_id": "54ec2ab69251417971000fe4", "cast_id": 89, "profile_path": null, "order": 76}, {"name": "Stacie Nichols", "character": "Ewok", "id": 1430921, "credit_id": "54ec2affc3a3686d6d0010f8", "cast_id": 90, "profile_path": null, "order": 77}, {"name": "Chris Nunn", "character": "Ewok", "id": 1430922, "credit_id": "54ec2ba3c3a3686d6400126d", "cast_id": 91, "profile_path": null, "order": 78}, {"name": "Barbara O'Laughlin", "character": "Ewok", "id": 1430923, "credit_id": "54ec2c05c3a3686d5600101b", "cast_id": 92, "profile_path": null, "order": 79}, {"name": "Brian Orenstein", "character": "Ewok", "id": 1430924, "credit_id": "54ec2c68c3a3686d6400128b", "cast_id": 93, "profile_path": null, "order": 80}, {"name": "Harrell Parker Jr.", "character": "Ewok", "id": 1430925, "credit_id": "54ec2cb1925141796e00108f", "cast_id": 94, "profile_path": null, "order": 81}, {"name": "John Pedrick", "character": "Ewok", "id": 1430926, "credit_id": "54ec2d13c3a3686d6400129f", "cast_id": 95, "profile_path": null, "order": 82}, {"name": "April Perkins", "character": "Ewok", "id": 1430950, "credit_id": "54ec33d1c3a3686d6d00120c", "cast_id": 96, "profile_path": null, "order": 83}, {"name": "Ronnie Phillips", "character": "Ewok", "id": 1430951, "credit_id": "54ec3433c3a3686d64001364", "cast_id": 97, "profile_path": null, "order": 84}, {"name": "Katie Purvis", "character": "Ewok", "id": 1430952, "credit_id": "54ec3593c3a3686d66001357", "cast_id": 98, "profile_path": "/2xCF8e5v7RwDaBYCpDAKVTFWFuf.jpg", "order": 85}, {"name": "Carol Read", "character": "Ewok", "id": 1430955, "credit_id": "54ec3648c3a3680be600103a", "cast_id": 99, "profile_path": null, "order": 86}, {"name": "Nicholas Read", "character": "Ewok", "id": 1430957, "credit_id": "54ec36dfc3a3680be600104f", "cast_id": 100, "profile_path": "/7j0jdzXtTMARV9AD9zpMKmAYXJk.jpg", "order": 87}, {"name": "Diana Reynolds", "character": "Ewok", "id": 1430958, "credit_id": "54ec389dc3a3686d660013c2", "cast_id": 101, "profile_path": null, "order": 88}, {"name": "Danielle Rodgers", "character": "Ewok Graak", "id": 1430961, "credit_id": "54ec3aa9c3a3680be600109d", "cast_id": 102, "profile_path": null, "order": 89}, {"name": "Chris Romano", "character": "Ewok", "id": 1370759, "credit_id": "54ec3c01c3a3686d6d001304", "cast_id": 103, "profile_path": null, "order": 90}, {"name": "Dean Shackelford", "character": "Ewok", "id": 1430964, "credit_id": "54ec3c3ac3a3680be60010cf", "cast_id": 104, "profile_path": null, "order": 91}, {"name": "Kiran Shah", "character": "Ewok", "id": 5531, "credit_id": "54ec3ce3c3a3686d64001485", "cast_id": 105, "profile_path": "/oQer3lBnxD8gKFHoz7o7eJMF6od.jpg", "order": 92}, {"name": "Felix Silla", "character": "Ewok", "id": 33853, "credit_id": "54ec3e0fc3a3680b80001297", "cast_id": 106, "profile_path": "/blKYI3w0lf124hvCaHiVcjhQpZ5.jpg", "order": 93}, {"name": "Linda Spriggs", "character": "Ewok", "id": 1430978, "credit_id": "54ec3e62c3a3686d5e001143", "cast_id": 107, "profile_path": null, "order": 94}, {"name": "Gerald Staddon", "character": "Ewok", "id": 1430979, "credit_id": "54ec3f34925141797100127a", "cast_id": 108, "profile_path": null, "order": 95}, {"name": "Josephine Staddon", "character": "Ewok", "id": 1430980, "credit_id": "54ec3fbb92514179710012a5", "cast_id": 109, "profile_path": null, "order": 96}, {"name": "Kevin Thompson", "character": "Ewok", "id": 53760, "credit_id": "54ec40ce9251417965001400", "cast_id": 110, "profile_path": "/pUKpoqEjQg7Isu0dJFBtootlWad.jpg", "order": 97}, {"name": "Kendra Wall", "character": "Ewok", "id": 1430983, "credit_id": "54ec4129c3a3686d660014ea", "cast_id": 111, "profile_path": null, "order": 98}, {"name": "Brian Wheeler", "character": "Ewok", "id": 224526, "credit_id": "54ec4214c3a3680be6001170", "cast_id": 112, "profile_path": null, "order": 99}, {"name": "Butch Wilhelm", "character": "Ewok", "id": 1430984, "credit_id": "54ec423b92514179680012dc", "cast_id": 113, "profile_path": null, "order": 100}, {"name": "Dalyn Chew", "character": "Jedi Rocks Dancer (special edition)", "id": 1430987, "credit_id": "54ec4316c3a3686d56001369", "cast_id": 114, "profile_path": "/weeQGjh3zA9uWmqoyixVAFXoVqg.jpg", "order": 101}, {"name": "Celia Fushille-Burke", "character": "Greeata Jendowanian a Jedi Rocks Dancer (special edition)", "id": 1430991, "credit_id": "54ec448fc3a3686d5600138c", "cast_id": 115, "profile_path": null, "order": 102}, {"name": "Mercedes Ngoh", "character": "Ryst\u00e1ll Sant a Jedi Rocks Dancer (special edition)", "id": 1430994, "credit_id": "54ec451b925141796100136a", "cast_id": 116, "profile_path": null, "order": 103}, {"name": "Jennifer Jaffe", "character": "Jedi Rocks Dancer (special edition)", "id": 1430996, "credit_id": "54ec460f925141796e001390", "cast_id": 117, "profile_path": null, "order": 104}], "directors": [{"name": "Richard Marquand", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803bbfd", "profile_path": "/wuO69rNp2mMG9unvRpZhbccoAh9.jpg", "id": 19800}], "vote_average": 7.6, "runtime": 135}, "1893": {"poster_path": "/n8V09dDc02KsSN6Q4hC2BX6hN8X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 924317558, "overview": "Stranded on the desert planet Tatooine after rescuing young Queen Amidala from the impending invasion of Naboo, Jedi apprentice Obi-Wan Kenobi and his Jedi Master discover nine-year-old Anakin Skywalker, a young slave unusually strong in the Force.", "video": false, "id": 1893, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode I - The Phantom Menace", "tagline": "Every generation has a legend. Every journey has a first step. Every saga has a beginning.", "vote_count": 1564, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120915", "adult": false, "backdrop_path": "/wdp4unWJWY9hGKN1tM56HeSt6PZ.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "1999-05-19", "popularity": 2.73363453002881, "original_title": "Star Wars: Episode I - The Phantom Menace", "budget": 115000000, "cast": [{"name": "Natalie Portman", "character": "Queen Amidala / Padm\u00e9", "id": 524, "credit_id": "52fe431ec3a36847f803bcb9", "cast_id": 6, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Obi Wan Kenobi", "id": 3061, "credit_id": "52fe431ec3a36847f803bcbd", "cast_id": 7, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Liam Neeson", "character": "Qui-Gon Jinn", "id": 3896, "credit_id": "52fe431ec3a36847f803bcc1", "cast_id": 8, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 2}, {"name": "Ian McDiarmid", "character": "Senator Palpatine", "id": 27762, "credit_id": "52fe431ec3a36847f803bcc5", "cast_id": 9, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 3}, {"name": "Anthony Daniels", "character": "C-3PO (voice)", "id": 6, "credit_id": "52fe431ec3a36847f803bcc9", "cast_id": 10, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 4}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431ec3a36847f803bccd", "cast_id": 11, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 5}, {"name": "Jake Lloyd", "character": "Anakin Skywalker", "id": 33196, "credit_id": "52fe431ec3a36847f803bcd1", "cast_id": 12, "profile_path": "/1MndIkdjjDypRDi3PpMzy3j0Lof.jpg", "order": 6}, {"name": "Pernilla August", "character": "Shmi Skywalker", "id": 33190, "credit_id": "52fe431ec3a36847f803bcd5", "cast_id": 13, "profile_path": "/zDMvEQCCUcjJeDWEstDBjoK8kA4.jpg", "order": 7}, {"name": "Frank Oz", "character": "Yoda (voice)", "id": 7908, "credit_id": "52fe431ec3a36847f803bcd9", "cast_id": 14, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 8}, {"name": "Oliver Ford Davies", "character": "Governor Sio Bibble", "id": 31923, "credit_id": "52fe431ec3a36847f803bcdd", "cast_id": 15, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 9}, {"name": "Ray Park", "character": "Darth Maul", "id": 11007, "credit_id": "52fe431ec3a36847f803bce1", "cast_id": 16, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 10}, {"name": "Hugh Quarshie", "character": "Capt. Panaka", "id": 31925, "credit_id": "52fe431ec3a36847f803bce5", "cast_id": 17, "profile_path": "/klpbBUBEwIuVHt2RWCNOxNvuprS.jpg", "order": 11}, {"name": "Ahmed Best", "character": "Jar Jar Binks (Voice)", "id": 33197, "credit_id": "52fe431ec3a36847f803bce9", "cast_id": 18, "profile_path": "/7yBAaveSHtYkzutJOKv18pq7pDI.jpg", "order": 12}, {"name": "Andrew Secombe", "character": "Watto (voice)", "id": 33198, "credit_id": "52fe431ec3a36847f803bced", "cast_id": 19, "profile_path": "/oKLhyJo4doxuPBpuGzLQ3WGGu9f.jpg", "order": 13}, {"name": "Steve Speirs", "character": "Capt. Tarpals", "id": 25441, "credit_id": "52fe431ec3a36847f803bcf1", "cast_id": 20, "profile_path": "/cCNJouXVxnXJv9j26PaEWJxIkOE.jpg", "order": 14}, {"name": "Samuel L. Jackson", "character": "Mace Windu", "id": 2231, "credit_id": "52fe431ec3a36847f803bcf5", "cast_id": 21, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 15}, {"name": "Keira Knightley", "character": "Sab\u00e9", "id": 116, "credit_id": "52fe431ec3a36847f803bcf9", "cast_id": 22, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 16}, {"name": "Sofia Coppola", "character": "Sach\u00e9", "id": 1769, "credit_id": "52fe431ec3a36847f803bcfd", "cast_id": 23, "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "order": 17}, {"name": "Warwick Davis", "character": "Wald / Pod race spectator / Mos Espa Citizen", "id": 11184, "credit_id": "52fe431ec3a36847f803bd2b", "cast_id": 31, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 18}, {"name": "Terence Stamp", "character": "Chacellor Valorum", "id": 28641, "credit_id": "54088d4ec3a36858330012b5", "cast_id": 34, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 19}, {"name": "Greg Proops", "character": "Fode (voice)", "id": 61965, "credit_id": "54d7b7cfc3a3683b8900636b", "cast_id": 35, "profile_path": "/vZCffFyddRuuMlHBUwgaUa9D9A4.jpg", "order": 20}, {"name": "Brian Blessed", "character": "Boss Nass (voice)", "id": 8318, "credit_id": "54e1a956c3a368454d0070b6", "cast_id": 36, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 21}, {"name": "Lewis Macleod", "character": "Sebulba (voice)", "id": 1074722, "credit_id": "54e1acbf9251411953006dad", "cast_id": 37, "profile_path": "/mv3TTVkxdDn11Gs2AWKvFzAuW7Y.jpg", "order": 22}, {"name": "Silas Carson", "character": "Nute Gunray / Ki-Adi-Mundi / Lott Dodd / Republic Cruiser Pilot", "id": 20806, "credit_id": "54e1afcdc3a3685756005437", "cast_id": 38, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 23}, {"name": "Jerome Blake", "character": "Mas Amenda / Orn Free Taa / Oppo Rancisis / Rune Haako / Horox Ryyder / Graxol Kelvynn / Mick Reckrap", "id": 589398, "credit_id": "54e1b19e925141109900124b", "cast_id": 39, "profile_path": "/tUJwV5OUV4P8zrlfkMtp1vU47Ot.jpg", "order": 24}, {"name": "Alan Ruscoe", "character": "Daultay Dofine / Plo Koon / Bib Fortuna", "id": 33186, "credit_id": "54e1b278c3a368454d007190", "cast_id": 40, "profile_path": "/xVVYK5Axi0R7PzUi1RnEB0mOPVv.jpg", "order": 25}, {"name": "Ralph Brown", "character": "Ric Oli\u00e9", "id": 53916, "credit_id": "54e1b321925141469f00510c", "cast_id": 41, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 26}, {"name": "Celia Imrie", "character": "Fighter Pilot Bravo 5", "id": 9139, "credit_id": "54e1b391c3a368087b0011a5", "cast_id": 42, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 27}, {"name": "Benedict Taylor", "character": "Fighter Pilot Bravo 2", "id": 37055, "credit_id": "54e1b57ac3a368454b0068b0", "cast_id": 43, "profile_path": "/tyZAHcq5IfK7rco9JptkRh4oNGS.jpg", "order": 28}, {"name": "Clarence Smith", "character": "Fighter Pilot Bravo 3", "id": 1198147, "credit_id": "54e1ba45c3a36855c7005332", "cast_id": 44, "profile_path": "/zKvjmgqf08T3Xz7uwTrEvxB7qqZ.jpg", "order": 29}, {"name": "Dominic West", "character": "Palace Guard", "id": 17287, "credit_id": "54e1bb3f925141195a006b3b", "cast_id": 45, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 30}, {"name": "Karol Cristina da Silva", "character": "Rab\u00e9", "id": 1427789, "credit_id": "54e1bc45c3a368454d0072c2", "cast_id": 46, "profile_path": "/2YpNv0In4HZHByd6vSPbMSoKDFL.jpg", "order": 31}, {"name": "Liz Wilson", "character": "Eirta\u00e9", "id": 1427790, "credit_id": "54e1bdcdc3a36857560055ac", "cast_id": 47, "profile_path": "/81HfRD7WWatGSyDfhwFg9gmZx6s.jpg", "order": 32}, {"name": "Candice Orwell", "character": "Yan\u00e9", "id": 1427792, "credit_id": "54e1bf60c3a368454d00731d", "cast_id": 48, "profile_path": "/8k6YGo9hqHbCseBV1D1JeCkT7F2.jpg", "order": 33}, {"name": "Bronagh Gallagher", "character": "Republic Cruiser Captain", "id": 33399, "credit_id": "54e1c0f9c3a368454d007350", "cast_id": 49, "profile_path": "/h44VuQ4yxA9ssITldXngDKSLoBQ.jpg", "order": 34}, {"name": "John Fensom", "character": "TC-14", "id": 1427795, "credit_id": "54e1c282c3a36855c700541f", "cast_id": 50, "profile_path": null, "order": 35}, {"name": "Scott Capurro", "character": "Beed (voice)", "id": 11719, "credit_id": "54e1c6b2c3a36857560056a8", "cast_id": 51, "profile_path": "/gBpjitYCEs0YapiNCDB2K8GyXMC.jpg", "order": 36}, {"name": "Margaret Towner", "character": "Jira", "id": 1427805, "credit_id": "54e1c714c3a368454d0073dc", "cast_id": 52, "profile_path": "/wNWY8JXwlGzNVcY7JdMKCjRZHj5.jpg", "order": 37}, {"name": "Dhruv Chanchani", "character": "Kitster", "id": 1427806, "credit_id": "54e1c9cf9251412c8e001193", "cast_id": 53, "profile_path": "/wHMU3yngBSH98EHgtPT0r4G6LcM.jpg", "order": 38}, {"name": "Oliver Walpole", "character": "Seek", "id": 1427809, "credit_id": "54e1cb28c3a3684551007c1f", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Katie Lucas", "character": "Amee", "id": 1235784, "credit_id": "54e1ce55c3a3684551007c6f", "cast_id": 55, "profile_path": "/bsnHZ1iGkc3i8RT0r3PkuGLR4u4.jpg", "order": 40}, {"name": "Megan Udall", "character": "Melee", "id": 1427810, "credit_id": "54e1cfb79251411950007103", "cast_id": 56, "profile_path": "/wvRCifIEh9CYMnASO8lZteCy2h2.jpg", "order": 41}, {"name": "Hassani Shapi", "character": "Eeth Koth", "id": 27175, "credit_id": "54e1d1d692514119560076dc", "cast_id": 57, "profile_path": "/tCvlauMnlxLektrbg4HXKpw1NtD.jpg", "order": 42}, {"name": "Gin Clarke", "character": "Adi Gallia", "id": 1427818, "credit_id": "54e1d320c3a368454d0074cb", "cast_id": 58, "profile_path": "/ooMF4KHxYZKyBG1qccPpT6IGZgL.jpg", "order": 43}, {"name": "Khan Bonfils", "character": "Saesee Tiin", "id": 986518, "credit_id": "54e1d583c3a368575600581d", "cast_id": 59, "profile_path": "/1MExWtw6hqcem369MO6byZmWcZl.jpg", "order": 44}, {"name": "Michelle Taylor", "character": "Yarael Poof", "id": 1404342, "credit_id": "54e1d805c3a36855c70055d1", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Michaela Cottrell", "character": "Even Piell", "id": 1427835, "credit_id": "54e1d84dc3a368087b001489", "cast_id": 61, "profile_path": null, "order": 46}, {"name": "Dipika O'Neill Joti", "character": "Depa Billaba", "id": 1427836, "credit_id": "54e1d8cac3a3684551007d7e", "cast_id": 62, "profile_path": null, "order": 47}, {"name": "Phil Eason", "character": "Yaddle", "id": 1427839, "credit_id": "54e1d9be92514119500071cf", "cast_id": 63, "profile_path": null, "order": 48}, {"name": "Mark Coulier", "character": "Aks Moe", "id": 1427843, "credit_id": "54e1daeec3a368087b0014cd", "cast_id": 64, "profile_path": "/hdH3eFYfY58CuaB0Yn7Rm6FHbrg.jpg", "order": 49}, {"name": "Lindsay Duncan", "character": "TC-14 (voice)", "id": 30083, "credit_id": "54e1dbeb9251411953007224", "cast_id": 65, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 50}, {"name": "Peter Serafinowicz", "character": "Darth Maul / Battle Droid Commander / Gungan Scout (voice)", "id": 11115, "credit_id": "54e1dc31c3a36845410083ec", "cast_id": 66, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 51}, {"name": "James Taylor", "character": "Rune Haako (voice)", "id": 1427852, "credit_id": "54e1df5b9251411099001694", "cast_id": 67, "profile_path": null, "order": 52}, {"name": "Chris Sanders", "character": "Daultay Dofine (voice)", "id": 1427858, "credit_id": "54e1e1b3c3a368454100845e", "cast_id": 68, "profile_path": null, "order": 53}, {"name": "Toby Longworth", "character": "Sen. Lott Dodd / Gragra (voice)", "id": 1220998, "credit_id": "54e1e3f4c3a368454b006c5b", "cast_id": 69, "profile_path": "/lryzAo6jEWibWVPCfNHPdjpHTC9.jpg", "order": 54}, {"name": "Marc Silk", "character": "Aks Moe (voice)", "id": 1329799, "credit_id": "54e1e5cdc3a3684095001117", "cast_id": 70, "profile_path": "/6F1jv4wykHy637aSTcqnEr0B7vN.jpg", "order": 55}, {"name": "Amanda Lucas", "character": "Tey How / Diva Funquita (voice) (as Tyger)", "id": 1427863, "credit_id": "54e1e6c59251411956007890", "cast_id": 71, "profile_path": "/orl2zrSpf4WQUd268DsP7EspUCo.jpg", "order": 56}, {"name": "Danny Wagner", "character": "Mawhonic", "id": 1444238, "credit_id": "550f7257c3a3681db200a7e9", "cast_id": 72, "profile_path": null, "order": 57}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe431ec3a36847f803bca9", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.2, "runtime": 136}, "1894": {"poster_path": "/2vcNFtrZXNwIcBgH5e2xXCmVR8t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 649398328, "overview": "Ten years after the events of the Battle of Naboo, the galaxy has undergone significant changes. Anakin Skywalker and Obi-Wan Kenobi are assigned to protect Padm\u00e9 from political separatists. As relationships form and powerful forces collide, these heroes face choices that will impact the destiny of the Republic.", "video": false, "id": 1894, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode II - Attack of the Clones", "tagline": "A Jedi Shall Not Know Anger. Nor Hatred. Nor Love.", "vote_count": 1382, "homepage": "", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0121765", "adult": false, "backdrop_path": "/560F7BPaxRy8BsOfVU6cW4ivM46.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "2002-05-16", "popularity": 2.69559210696562, "original_title": "Star Wars: Episode II - Attack of the Clones", "budget": 120000000, "cast": [{"name": "Ewan McGregor", "character": "Obi Wan Kenobi", "id": 3061, "credit_id": "52fe431fc3a36847f803bdad", "cast_id": 7, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Padm\u00e9 Amidala", "id": 524, "credit_id": "52fe431fc3a36847f803bdb7", "cast_id": 9, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Hayden Christensen", "character": "Anakin Skywalker", "id": 17244, "credit_id": "52fe431fc3a36847f803bdbb", "cast_id": 10, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 2}, {"name": "Christopher Lee", "character": "Count Dooku", "id": 113, "credit_id": "52fe431fc3a36847f803bdbf", "cast_id": 11, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 3}, {"name": "Ian McDiarmid", "character": "Chancellor Palpatine", "id": 27762, "credit_id": "52fe431fc3a36847f803bdc3", "cast_id": 12, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 4}, {"name": "Samuel L. Jackson", "character": "Mace Windu", "id": 2231, "credit_id": "52fe431fc3a36847f803bdc7", "cast_id": 13, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 5}, {"name": "Rose Byrne", "character": "Dorm\u00e9", "id": 9827, "credit_id": "52fe431fc3a36847f803bdcb", "cast_id": 14, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 6}, {"name": "Frank Oz", "character": "Yoda (Voice)", "id": 7908, "credit_id": "52fe431fc3a36847f803bdcf", "cast_id": 15, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 7}, {"name": "Anthony Daniels", "character": "C-3PO / Dannl Faytonni", "id": 6, "credit_id": "52fe431fc3a36847f803bdd3", "cast_id": 16, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 8}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431fc3a36847f803bdd7", "cast_id": 17, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 9}, {"name": "Matt Doran", "character": "Elan Sleazebaggano", "id": 9374, "credit_id": "52fe431fc3a36847f803bddb", "cast_id": 18, "profile_path": "/gLpWm3azLiXgDPRWo23AnG5WM7O.jpg", "order": 10}, {"name": "Alan Ruscoe", "character": "Gilramos Libkath", "id": 33186, "credit_id": "52fe431fc3a36847f803bddf", "cast_id": 19, "profile_path": "/xVVYK5Axi0R7PzUi1RnEB0mOPVv.jpg", "order": 11}, {"name": "Veronica Segura", "character": "Cord\u00e9", "id": 33187, "credit_id": "52fe431fc3a36847f803bde3", "cast_id": 20, "profile_path": "/4U8pdmprcEnvCjhKybo5XGkXWpe.jpg", "order": 12}, {"name": "Silas Carson", "character": "Ki-Adi-Mundi / Viceroy Nute Gunray", "id": 20806, "credit_id": "52fe431fc3a36847f803bde7", "cast_id": 21, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 13}, {"name": "Oliver Ford Davies", "character": "Govenor Sio Bibble", "id": 31923, "credit_id": "52fe431fc3a36847f803bdeb", "cast_id": 23, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 14}, {"name": "Ron Falk", "character": "Dexter Jettster (voice)", "id": 33188, "credit_id": "52fe431fc3a36847f803bdef", "cast_id": 24, "profile_path": "/xgJUl9PEcEFxXl1EXq8ZK29dLL5.jpg", "order": 15}, {"name": "Jay Laga'aia", "character": "Capt. Typho", "id": 33182, "credit_id": "52fe431fc3a36847f803bdf3", "cast_id": 25, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 16}, {"name": "Jimmy Smits", "character": "Senator Bail Organa", "id": 33181, "credit_id": "52fe431fc3a36847f803bdf7", "cast_id": 26, "profile_path": "/tZfr6EaIxzlT9MhY5T4C6cL3UjF.jpg", "order": 17}, {"name": "Daniel Logan", "character": "Boba Fett", "id": 33189, "credit_id": "52fe431fc3a36847f803bdfb", "cast_id": 27, "profile_path": "/oZ4tJ2qszpK8goamVxYCCMo2QTD.jpg", "order": 18}, {"name": "Temuera Morrison", "character": "Jango Fett", "id": 7242, "credit_id": "52fe431fc3a36847f803bdff", "cast_id": 28, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 19}, {"name": "Pernilla August", "character": "Shmi Skywalker", "id": 33190, "credit_id": "52fe431fc3a36847f803be03", "cast_id": 29, "profile_path": "/zDMvEQCCUcjJeDWEstDBjoK8kA4.jpg", "order": 20}, {"name": "Ayesha Dharker", "character": "Queen Jamillia", "id": 33191, "credit_id": "52fe431fc3a36847f803be07", "cast_id": 30, "profile_path": "/3ymSI0lIRizXB8oLb82aberQ7nc.jpg", "order": 21}, {"name": "Joel Edgerton", "character": "Owen Lars", "id": 33192, "credit_id": "52fe431fc3a36847f803be0b", "cast_id": 31, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 22}, {"name": "Jack Thompson", "character": "Cliegg Lars", "id": 12536, "credit_id": "52fe431fc3a36847f803be51", "cast_id": 43, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 23}, {"name": "Bonnie Piesse", "character": "Beru", "id": 131634, "credit_id": "52fe431fc3a36847f803be55", "cast_id": 44, "profile_path": "/xM4s2HYCmSunDpExLnllYCp8rjZ.jpg", "order": 24}, {"name": "Andrew Secombe", "character": "Watto (voice)", "id": 33198, "credit_id": "52fe431fc3a36847f803be59", "cast_id": 45, "profile_path": "/oKLhyJo4doxuPBpuGzLQ3WGGu9f.jpg", "order": 25}, {"name": "Leeanna Walsman", "character": "Zam Wesell", "id": 93114, "credit_id": "54e21b2f925141195a0080f9", "cast_id": 46, "profile_path": "/lio7YuWt8btr6CvdLy4e2rkbBJT.jpg", "order": 26}, {"name": "Ahmed Best", "character": "Jar Jar Binks / Achk Med-Beq (voice)", "id": 33197, "credit_id": "54e21b91c3a368087b001db0", "cast_id": 47, "profile_path": "/7yBAaveSHtYkzutJOKv18pq7pDI.jpg", "order": 27}, {"name": "Anthony Phelan", "character": "Lama Su (voice)", "id": 75742, "credit_id": "54e2290f9251411953007c46", "cast_id": 48, "profile_path": "/81fH305g9TTVvRj6xYO73bdS8X1.jpg", "order": 28}, {"name": "Rena Owen", "character": "Taun We (voice)", "id": 7241, "credit_id": "54e2297f92514110990021ca", "cast_id": 49, "profile_path": "/sgJpdxXO6ATawDqzFQak5HSqs9y.jpg", "order": 29}, {"name": "Alethea McGrath", "character": "Madame Jocasta Nu", "id": 79106, "credit_id": "54e22adec3a36845510088fc", "cast_id": 50, "profile_path": "/5AuTSkd7hdv5zCa6Kr1oVncEmwB.jpg", "order": 30}, {"name": "Susie Porter", "character": "Hermione Bagwa / WA-7", "id": 51671, "credit_id": "54e22c58c3a3684541008fdc", "cast_id": 51, "profile_path": "/1qBjH56g7YyhhGppkfHOvIpz7dP.jpg", "order": 31}, {"name": "Matt Sloan", "character": "Plo Koon", "id": 1427911, "credit_id": "54e23061c3a3684541009027", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "David Bowers", "character": "Mas Amedda", "id": 1167087, "credit_id": "54e23494c3a3684095001b33", "cast_id": 53, "profile_path": "/fu7caj9zHUMhYP2XbZdpCrPJepx.jpg", "order": 33}, {"name": "Steve John Shepherd", "character": "Naboo lieutenant", "id": 39679, "credit_id": "54e2365bc3a36845410090b6", "cast_id": 54, "profile_path": "/jMnHejQferJmu5huDTXaOoIGt2s.jpg", "order": 34}, {"name": "Bodie Taylor", "character": "Clone Trooper", "id": 1427935, "credit_id": "54e23ff5c3a36855c70062cf", "cast_id": 55, "profile_path": "/4zcLynlqnNG9pqBGeb6T8owPYj7.jpg", "order": 35}, {"name": "Matt Rowan", "character": "Senator Orn Free Taa", "id": 1427941, "credit_id": "54e24155c3a368454b007735", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Steven Boyle", "character": "Senator Ask Aak / Passel Argente", "id": 56504, "credit_id": "54e24268c3a3684551008ac9", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Zachariah Jensen", "character": "Kit Fisto", "id": 1427944, "credit_id": "54e242c6925141195a008442", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Alex Knoll", "character": "J.K. Burtola", "id": 1427945, "credit_id": "54e24339c3a3684541009193", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Phoebe Yiamkiati", "character": "Mari Amithest", "id": 1427946, "credit_id": "54e2439fc3a36845410091a3", "cast_id": 60, "profile_path": null, "order": 40}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe431fc3a36847f803bd8b", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.2, "runtime": 142}, "1895": {"poster_path": "/tgr5Pdy7ehZYBqBkN2K7Q02xgOb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 850000000, "overview": "Three years after the onset of the Clone Wars, the Jedi Knights have been leading the clone army into a galaxy-wide war against the Separatists. Only by embracing the Dark Side can Anakin Skywalker end the war and -- he believes -- save the woman he loves.", "video": false, "id": 1895, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Wars: Episode III - Revenge of the Sith", "tagline": "The saga is complete.", "vote_count": 1398, "homepage": "http://www.starwars.com/movies/episode-iii/", "belongs_to_collection": {"backdrop_path": "/d8duYyyC9J5T825Hg7grmaabfxQ.jpg", "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg", "id": 10, "name": "Star Wars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0121766", "adult": false, "backdrop_path": "/wUYTfFbfPiZC6Lcyt1nonr69ZmK.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "2005-05-19", "popularity": 2.68473458282093, "original_title": "Star Wars: Episode III - Revenge of the Sith", "budget": 113000000, "cast": [{"name": "Hayden Christensen", "character": "Anakin Skywalker", "id": 17244, "credit_id": "52fe431fc3a36847f803bed7", "cast_id": 12, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Obi-Wan Kenobi", "id": 3061, "credit_id": "52fe431fc3a36847f803bedb", "cast_id": 13, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Natalie Portman", "character": "Padm\u00e9 Amidala", "id": 524, "credit_id": "52fe431fc3a36847f803bedf", "cast_id": 14, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 2}, {"name": "Ian McDiarmid", "character": "Chancellor Palpatine", "id": 27762, "credit_id": "52fe431fc3a36847f803bee3", "cast_id": 15, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 3}, {"name": "Frank Oz", "character": "Yoda (Voice)", "id": 7908, "credit_id": "52fe431fc3a36847f803bee7", "cast_id": 16, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO", "id": 6, "credit_id": "52fe431fc3a36847f803beeb", "cast_id": 17, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Christopher Lee", "character": "Count Dooku", "id": 113, "credit_id": "52fe431fc3a36847f803beef", "cast_id": 18, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 6}, {"name": "Samuel L. Jackson", "character": "Mace Windu", "id": 2231, "credit_id": "52fe431fc3a36847f803bef3", "cast_id": 19, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 7}, {"name": "Jimmy Smits", "character": "Senator Bail Organa", "id": 33181, "credit_id": "52fe431fc3a36847f803bef7", "cast_id": 20, "profile_path": "/tZfr6EaIxzlT9MhY5T4C6cL3UjF.jpg", "order": 8}, {"name": "Jay Laga'aia", "character": "Captain Typho", "id": 33182, "credit_id": "52fe431fc3a36847f803befb", "cast_id": 21, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 9}, {"name": "Temuera Morrison", "character": "Commander Cody", "id": 7242, "credit_id": "52fe431fc3a36847f803beff", "cast_id": 22, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 10}, {"name": "Rohan Nichol", "character": "Captain Antilles", "id": 33184, "credit_id": "52fe431fc3a36847f803bf03", "cast_id": 24, "profile_path": "/nzvL3MRpADYWlH4ppyYgmCnM1kZ.jpg", "order": 11}, {"name": "Jeremy Bulloch", "character": "Captain Colton", "id": 33185, "credit_id": "52fe431fc3a36847f803bf07", "cast_id": 25, "profile_path": "/yRnHoDmmWKdoLdiscCFfRpzzqMa.jpg", "order": 12}, {"name": "Kenny Baker", "character": "R2-D2", "id": 130, "credit_id": "52fe431fc3a36847f803bf0b", "cast_id": 26, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 13}, {"name": "Silas Carson", "character": "Ki-Adi-Mundi / Nute Gunray", "id": 20806, "credit_id": "52fe431fc3a36847f803bf0f", "cast_id": 27, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 14}, {"name": "David Bowers", "character": "Mas Amedda", "id": 1167087, "credit_id": "52fe431fc3a36847f803bf13", "cast_id": 28, "profile_path": "/fu7caj9zHUMhYP2XbZdpCrPJepx.jpg", "order": 15}, {"name": "Keisha Castle-Hughes", "character": "Queen of Naboo", "id": 15293, "credit_id": "5408b08dc3a36812bf00012d", "cast_id": 34, "profile_path": "/i3hRf7FyBXnwNFK3phm3wRsS9N4.jpg", "order": 16}, {"name": "Wayne Pygram", "character": "Governor Tarkin", "id": 82434, "credit_id": "5408b0fdc3a36812d0000151", "cast_id": 35, "profile_path": "/mBy1Zs6PBwuVWoiHxc8ChhC0YD1.jpg", "order": 17}, {"name": "Peter Mayhew", "character": "Chewbacca", "id": 24343, "credit_id": "5408b34fc3a36812ba000186", "cast_id": 36, "profile_path": "/hAavH3DKfzia7b3CTFkHd8HLgCz.jpg", "order": 18}, {"name": "Bruce Spence", "character": "Tion Medon", "id": 27752, "credit_id": "54e345779251411953009419", "cast_id": 37, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 19}, {"name": "Oliver Ford Davies", "character": "Sio Bibble", "id": 31923, "credit_id": "54e346c19251411099003b08", "cast_id": 39, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 21}, {"name": "Ahmed Best", "character": "Jar Jar Binks", "id": 33197, "credit_id": "54e3472b925141469f0078bb", "cast_id": 40, "profile_path": "/7yBAaveSHtYkzutJOKv18pq7pDI.jpg", "order": 22}, {"name": "Amanda Lucas", "character": "Terr Taneel", "id": 1427863, "credit_id": "54e34d6ac3a368486f001312", "cast_id": 41, "profile_path": "/orl2zrSpf4WQUd268DsP7EspUCo.jpg", "order": 23}, {"name": "Matt Sloan", "character": "Plo Koon", "id": 1427911, "credit_id": "54e34db4c3a3684897001388", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Rebecca Jackson Mendoza", "character": "Queen of Alderaan", "id": 1428211, "credit_id": "54e34f4fc3a368489700139f", "cast_id": 43, "profile_path": "/7lR45zyqlWArPo5aGOkzDYhMRao.jpg", "order": 25}, {"name": "Joel Edgerton", "character": "Owen Lars", "id": 33192, "credit_id": "54e350f7c3a368486f00135f", "cast_id": 44, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 26}, {"name": "Bonnie Piesse", "character": "Beru Lars", "id": 131634, "credit_id": "54e351249251412c8e0035e7", "cast_id": 45, "profile_path": "/xM4s2HYCmSunDpExLnllYCp8rjZ.jpg", "order": 27}, {"name": "Jett Lucas", "character": "Zett Jukassa", "id": 1428219, "credit_id": "54e358efc3a368454b008c62", "cast_id": 46, "profile_path": "/vHM9Ta1ddrT22ejnnjqDev5ZKwa.jpg", "order": 28}, {"name": "Tux Akindoyeni", "character": "Agen Kolar", "id": 1428220, "credit_id": "54e35a799251411099003ca4", "cast_id": 47, "profile_path": "/ta8Gd1qxN56gsqzKTJ0aMz1enuS.jpg", "order": 29}, {"name": "Matt Rowan", "character": "Senator Orn Free Taa", "id": 1427941, "credit_id": "54e35b0b92514119530095ce", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Kenji Oates", "character": "Saesee Tiin", "id": 1428221, "credit_id": "54e35b8a9251411956009cf8", "cast_id": 49, "profile_path": null, "order": 31}, {"name": "Amy Allen", "character": "Aayla Secura", "id": 1428222, "credit_id": "54e35bd7925141469f007a6f", "cast_id": 50, "profile_path": "/tdo5t436U3brCu1UiXUIJVL1D8v.jpg", "order": 32}, {"name": "Bodie Taylor", "character": "Clone Trooper", "id": 1427935, "credit_id": "54e35d6e925141469f007a93", "cast_id": 51, "profile_path": "/4zcLynlqnNG9pqBGeb6T8owPYj7.jpg", "order": 33}, {"name": "Graeme Blundell", "character": "Ruwee Naberrie", "id": 85351, "credit_id": "54e35e849251411956009d3c", "cast_id": 52, "profile_path": "/gVV7qhA0bXBUa0XmVHUnOJH3u2k.jpg", "order": 34}, {"name": "Trisha Noble", "character": "Jobal Naberrie", "id": 117451, "credit_id": "54e35f56c3a368454100abd9", "cast_id": 53, "profile_path": "/zDlrzpJUyVqynhH5hzZK9v4urS8.jpg", "order": 35}, {"name": "Claudia Karvan", "character": "Sola Naberrie", "id": 79966, "credit_id": "54e35fb5c3a368454100abe3", "cast_id": 54, "profile_path": "/8o2xMWxL9SkkxXrJOGI8THZhS8Q.jpg", "order": 36}, {"name": "Keira Wingate", "character": "Ryoo Naberrie", "id": 1428223, "credit_id": "54e360349251412c8e0036ff", "cast_id": 55, "profile_path": "/mUUO263qCZReUVNIdHXtU6KwF15.jpg", "order": 37}, {"name": "Hayley Mooy", "character": "Pooja Naberrie", "id": 1428224, "credit_id": "54e361179251417add0013ba", "cast_id": 56, "profile_path": "/8D6LQUyIY7XDEBin3vzUBv0JaTf.jpg", "order": 38}, {"name": "Sandi Finlay", "character": "Sly Moore", "id": 1428225, "credit_id": "54e36173c3a3685756008621", "cast_id": 57, "profile_path": "/2kE92N7oNZ33XHlObZ1uY9npk7X.jpg", "order": 39}, {"name": "Katie Lucas", "character": "Chi Eekway", "id": 1235784, "credit_id": "54e36248925141195300964f", "cast_id": 58, "profile_path": "/bsnHZ1iGkc3i8RT0r3PkuGLR4u4.jpg", "order": 40}, {"name": "Genevieve O'Reilly", "character": "Mon Mothma", "id": 139654, "credit_id": "54e363729251412c8e003760", "cast_id": 59, "profile_path": "/8NrrFxrGng88GU7lxwOyK3PZv05.jpg", "order": 41}, {"name": "Warren Owens", "character": "Fang Zar", "id": 1322179, "credit_id": "54e365e49251411956009dbf", "cast_id": 60, "profile_path": null, "order": 42}, {"name": "Kee Chan", "character": "Mal\u00e9-Dee", "id": 15342, "credit_id": "54e3673ec3a368454d009987", "cast_id": 61, "profile_path": "/daRXLJaABxXgHK65IKlsqvyrG12.jpg", "order": 43}, {"name": "Rena Owen", "character": "Nee Alavar", "id": 7241, "credit_id": "54e367c5c3a368486f00152a", "cast_id": 62, "profile_path": "/sgJpdxXO6ATawDqzFQak5HSqs9y.jpg", "order": 44}, {"name": "Christopher Kirby", "character": "Giddean Danu", "id": 75175, "credit_id": "54e36836c3a368454d009997", "cast_id": 63, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 45}, {"name": "Matthew Wood", "character": "General Grievous (voice)", "id": 71536, "credit_id": "54e38255c3a368454b008eff", "cast_id": 64, "profile_path": "/oB9wVbEIg8fjY3ulDKjKsGn2A55.jpg", "order": 46}, {"name": "Kristy Wright", "character": "Mote\u00e9", "id": 1231126, "credit_id": "54e383ffc3a368486f0016b4", "cast_id": 65, "profile_path": "/auobXN4q0r07biMy9PS88vcdoks.jpg", "order": 47}, {"name": "Coinneach Alexander", "character": "Whie", "id": 1428265, "credit_id": "54e38486c3a36823d4000fb8", "cast_id": 66, "profile_path": "/wi6bJG4NhBnSLuYgUMzfZL0hh26.jpg", "order": 48}, {"name": "Mousy McCallum", "character": "Bene", "id": 1428270, "credit_id": "54e385a5925141454f007523", "cast_id": 67, "profile_path": "/fTz4FzUewJ7XfueJCSYCYM26STf.jpg", "order": 49}, {"name": "Michael Kingma", "character": "Wookiee", "id": 1428273, "credit_id": "54e38724925141469f007d23", "cast_id": 68, "profile_path": "/5CyOFwOokhvoBmLLL9ftlbCtbpt.jpg", "order": 50}, {"name": "Axel Dench", "character": "Wookiee", "id": 1428274, "credit_id": "54e388bec3a368486f00171d", "cast_id": 69, "profile_path": "/mTMElGQitW4llfRehJxFgOZHPPx.jpg", "order": 51}, {"name": "Steven Foy", "character": "Wookiee", "id": 1428276, "credit_id": "54e38970c3a368486f001735", "cast_id": 70, "profile_path": null, "order": 52}, {"name": "Julian Khazzouh", "character": "Wookiee", "id": 1428279, "credit_id": "54e389fe9251412c8e0039f6", "cast_id": 71, "profile_path": "/m4qAAtvEvR6QMo18Fp3cit0gCIl.jpg", "order": 53}, {"name": "James Rowland", "character": "Wookiee", "id": 1428284, "credit_id": "54e38b54925141454f0076d2", "cast_id": 72, "profile_path": null, "order": 54}, {"name": "David Stiff", "character": "Wookiee", "id": 1428287, "credit_id": "54e38c95c3a368454b008fac", "cast_id": 73, "profile_path": null, "order": 55}, {"name": "Robert Cope", "character": "Wookiee", "id": 1428293, "credit_id": "54e38de59251412c8e003a3a", "cast_id": 74, "profile_path": null, "order": 56}, {"name": "Aidan Barton", "character": "Luke Skywalker & Leia Organa", "id": 1445414, "credit_id": "5512360bc3a3681db200f1fb", "cast_id": 75, "profile_path": null, "order": 57}], "directors": [{"name": "George Lucas", "department": "Directing", "job": "Director", "credit_id": "52fe431fc3a36847f803be97", "profile_path": "/8qxin8urtFE0NqaZNFWOuV537bH.jpg", "id": 1}], "vote_average": 6.8, "runtime": 140}, "157547": {"poster_path": "/ic8C94ylSfcoLkXqPOKzL6DqPcH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44030246, "overview": "A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.", "video": false, "id": 157547, "genres": [{"id": 27, "name": "Horror"}], "title": "Oculus", "tagline": "You see what it wants you to see", "vote_count": 239, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2388715", "adult": false, "backdrop_path": "/fedByntH8KdlT8WCoLsH6xAVXmw.jpg", "production_companies": [{"name": "MICA Entertainment", "id": 24510}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "WWE Studios", "id": 10339}, {"name": "Relativity Media", "id": 7295}], "release_date": "2014-04-03", "popularity": 0.987598165052184, "original_title": "Oculus", "budget": 5000000, "cast": [{"name": "Katee Sackhoff", "character": "Marie Russell", "id": 51798, "credit_id": "52fe4bc89251416c910e586d", "cast_id": 2, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 0}, {"name": "Karen Gillan", "character": "Kaylie Russell", "id": 543261, "credit_id": "52fe4bc89251416c910e5871", "cast_id": 3, "profile_path": "/3ip17StrlDLs9CmYaEyVxRK94t.jpg", "order": 1}, {"name": "Brenton Thwaites", "character": "Tim Russell", "id": 1017347, "credit_id": "52fe4bc89251416c910e5875", "cast_id": 4, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 2}, {"name": "James Lafferty", "character": "Michael Dumont", "id": 98050, "credit_id": "52fe4bc89251416c910e587d", "cast_id": 6, "profile_path": "/gD8pKrlMxk7eqz7gCceL3U5F4KO.jpg", "order": 3}, {"name": "Rory Cochrane", "character": "Alan Russell", "id": 51792, "credit_id": "52fe4bc89251416c910e5881", "cast_id": 7, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 4}, {"name": "Kate Siegel", "character": "Marisol Chavez", "id": 932076, "credit_id": "53ee19df0e0a261935001f9d", "cast_id": 47, "profile_path": "/eSZbiRiRYN3VwTqZddNyFV1AzEv.jpg", "order": 5}, {"name": "Garrett Ryan", "character": "Young Tim", "id": 206505, "credit_id": "53d4a88e0e0a26284400377d", "cast_id": 45, "profile_path": "/kjwH7BG5iTO5e6W6kyzgCUC6AUr.jpg", "order": 6}, {"name": "Katie Parker", "character": "Phone Store Clerk", "id": 551462, "credit_id": "52fe4bc89251416c910e588d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Miguel Sandoval", "character": "Dr. Shawn Graham", "id": 30488, "credit_id": "52fe4bc89251416c910e5891", "cast_id": 11, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 8}, {"name": "Annalise Basso", "character": "Young Kaylie", "id": 1024722, "credit_id": "53e13e760e0a265a83007ca4", "cast_id": 46, "profile_path": "/e1wamWCv5frXtXMa32NkeRR5hny.jpg", "order": 9}], "directors": [{"name": "Mike Flanagan", "department": "Directing", "job": "Director", "credit_id": "52fe4bc89251416c910e5869", "profile_path": "/tKZNHwieLMbh03XPA8unuG8Tw3i.jpg", "id": 551463}], "vote_average": 6.1, "runtime": 104}, "51052": {"poster_path": "/crjzhg2T1sPL9yE7bFHkYp0OfXG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This Christmas movie highlights the technological advances of operations at the North Pole, revealing how Santa and his vast army of highly trained elves produce gifts and distribute them around the world in one night. However, every operation has a margin of error\u2026 When one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed \"acceptable\" to all but one, Arthur. Arthur Claus is Santa\u2019s misfit son who executes an unauthorized rookie mission to get the last present half way around the globe before dawn on Christmas morning.", "video": false, "id": 51052, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Arthur Christmas", "tagline": "Ever wonder how 2 Billion presents get delivered all in 1 night?", "vote_count": 102, "homepage": "http://www.arthurchristmas.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430607", "adult": false, "backdrop_path": "/5mfMJpkO0mxDViHEeebFrzesdwc.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Aardman Animations", "id": 297}], "release_date": "2011-11-10", "popularity": 1.00540387225657, "original_title": "Arthur Christmas", "budget": 0, "cast": [{"name": "Bill Nighy", "character": "Grandsanta (voice)", "id": 2440, "credit_id": "52fe47dfc3a36847f814ce29", "cast_id": 1, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "James McAvoy", "character": "Arthur (voice)", "id": 5530, "credit_id": "52fe47dfc3a36847f814ce2d", "cast_id": 2, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Jim Broadbent", "character": "Santa (voice)", "id": 388, "credit_id": "52fe47dfc3a36847f814ce31", "cast_id": 4, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 2}, {"name": "Hugh Laurie", "character": "Steve Claus (voice)", "id": 41419, "credit_id": "52fe47dfc3a36847f814ce41", "cast_id": 7, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 3}, {"name": "Ramona Marquez", "character": "Gwen (voice)", "id": 224878, "credit_id": "52fe47dfc3a36847f814ce45", "cast_id": 8, "profile_path": "/oLT0EWlrSVxkH6VMmGEnWUCC63M.jpg", "order": 4}, {"name": "Imelda Staunton", "character": "Mrs. Santa (voice)", "id": 11356, "credit_id": "52fe47dfc3a36847f814ce55", "cast_id": 11, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 5}, {"name": "Marc Wootton", "character": "Peter (voice)", "id": 92574, "credit_id": "52fe47dfc3a36847f814ce59", "cast_id": 13, "profile_path": "/vcQq2epz9CvIOOCaE9T5RW8spB5.jpg", "order": 6}, {"name": "Laura Linney", "character": "North Pole Computer (voice)", "id": 350, "credit_id": "52fe47dfc3a36847f814ce5d", "cast_id": 14, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 7}, {"name": "Eva Longoria", "character": "Chief De Silva (voice)", "id": 52605, "credit_id": "52fe47dfc3a36847f814ce61", "cast_id": 15, "profile_path": "/AtG3fZHkLcoJGEZfbgDOaeY6Hcx.jpg", "order": 8}, {"name": "Michael Palin", "character": "Ernie Clicker (voice)", "id": 383, "credit_id": "52fe47dfc3a36847f814ce65", "cast_id": 16, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 9}, {"name": "Robbie Coltrane", "character": "Lead Elf (voice)", "id": 1923, "credit_id": "52fe47dfc3a36847f814ce69", "cast_id": 17, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 10}, {"name": "Joan Cusack", "character": "Lead Elf (voice)", "id": 3234, "credit_id": "52fe47dfc3a36847f814ce6d", "cast_id": 18, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 11}, {"name": "Ashley Jensen", "character": "Bryony (voice)", "id": 55398, "credit_id": "52fe47dfc3a36847f814ce71", "cast_id": 19, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 12}, {"name": "Danny John-Jules", "character": "Elf (voice)", "id": 115787, "credit_id": "550c8ea192514133c3001f10", "cast_id": 22, "profile_path": "/d9yIjilG7BdiPYIsXyZBV0hCuyv.jpg", "order": 13}], "directors": [{"name": "Barry Cook", "department": "Directing", "job": "Director", "credit_id": "52fe47dfc3a36847f814ce37", "profile_path": "/j2SNU8S0RGxs9jWnm71GJRyOIc0.jpg", "id": 66191}, {"name": "Sarah Smith", "department": "Directing", "job": "Director", "credit_id": "52fe47dfc3a36847f814ce3d", "profile_path": null, "id": 208113}], "vote_average": 6.7, "runtime": 97}, "1903": {"poster_path": "/ujMy9P4VczTW9YSpAM31uqdOMpz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 203388341, "overview": "David Aames (Tom Cruise) has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia (Penelope Cruz), his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.", "video": false, "id": 1903, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Vanilla Sky", "tagline": "Forget everything you know, and open your eyes.", "vote_count": 259, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0259711", "adult": false, "backdrop_path": "/vf02KIcSx4Iq9J6R7n0qxNeL8Lm.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cruise-Wagner Productions", "id": 349}, {"name": "Vinyl Films", "id": 485}], "release_date": "2001-12-10", "popularity": 1.051511053776, "original_title": "Vanilla Sky", "budget": 75000000, "cast": [{"name": "Tom Cruise", "character": "David Aames", "id": 500, "credit_id": "52fe4320c3a36847f803c36d", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Sofia Serrano", "id": 955, "credit_id": "52fe4320c3a36847f803c371", "cast_id": 14, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Julie", "id": 6941, "credit_id": "52fe4320c3a36847f803c375", "cast_id": 15, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Kurt Russell", "character": "Dr. Curtis McCabe", "id": 6856, "credit_id": "52fe4320c3a36847f803c379", "cast_id": 16, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 3}, {"name": "Jason Lee", "character": "Brian", "id": 11662, "credit_id": "52fe4320c3a36847f803c37d", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Noah Taylor", "character": "Edmund Ventura", "id": 1284, "credit_id": "52fe4320c3a36847f803c381", "cast_id": 18, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 5}, {"name": "Timothy Spall", "character": "Thomas Tipp", "id": 9191, "credit_id": "52fe4320c3a36847f803c385", "cast_id": 19, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 6}, {"name": "Tilda Swinton", "character": "Rebecca Dearborn", "id": 3063, "credit_id": "52fe4320c3a36847f803c389", "cast_id": 20, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 7}, {"name": "Armand Schultz", "character": "Dr. Pomeranz", "id": 19851, "credit_id": "52fe4320c3a36847f803c38d", "cast_id": 21, "profile_path": "/oKcmZbjESiUybY7AgWeRvaBWCFu.jpg", "order": 8}, {"name": "Alicia Witt", "character": "Libby", "id": 3128, "credit_id": "52fe4320c3a36847f803c391", "cast_id": 22, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 9}, {"name": "Michael Shannon", "character": "Aaron", "id": 335, "credit_id": "52fe4320c3a36847f803c395", "cast_id": 23, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 10}, {"name": "Ivana Mili\u010devi\u0107", "character": "Emma", "id": 29930, "credit_id": "53ab0f30c3a3684bc80000ec", "cast_id": 24, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 11}, {"name": "Shalom Harlow", "character": "Colleen", "id": 92857, "credit_id": "53ab0f61c3a3684bc2000116", "cast_id": 25, "profile_path": "/vrXxkJBKAKiGg0tsUlUbdQK5WJv.jpg", "order": 12}, {"name": "Johnny Galecki", "character": "Peter Brown", "id": 16478, "credit_id": "53ab0f82c3a3684bc2000119", "cast_id": 26, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 13}], "directors": [{"name": "Cameron Crowe", "department": "Directing", "job": "Director", "credit_id": "52fe4320c3a36847f803c327", "profile_path": "/xBWkc3OCQ05T7odQfkOYRBAuWna.jpg", "id": 11649}], "vote_average": 6.2, "runtime": 136}, "1904": {"poster_path": "/e8FHAqAYpYQ7P3yHRIs4hwjvnSU.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 162242962, "overview": "Based on the internationally acclaimed novel by Arthur Golden, Memoirs of a Geisha is a sweeping romantic epic set in a mysterious and exotic world that still casts a potent spell today. The story begins in the years before WWII when a penniless Japanese child is torn from her family to work as a maid in a geisha house.", "video": false, "id": 1904, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Memoirs of a Geisha", "tagline": "My world is as forbidden as it is fragile; without its mysteries, it cannot survive.", "vote_count": 141, "homepage": "http://www.sonypictures.com/homevideo/memoirsofageisha/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0397535", "adult": false, "backdrop_path": "/mIE9sQ64BmB8LoJkuKXTXPS8IlO.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Red Wagon Productions", "id": 780}], "release_date": "2005-12-06", "popularity": 0.911124910951948, "original_title": "Memoirs of a Geisha", "budget": 85000000, "cast": [{"name": "Zhang Ziyi", "character": "Sayuri", "id": 1339, "credit_id": "52fe4320c3a36847f803c3f3", "cast_id": 4, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 0}, {"name": "Gong Li", "character": "Hatsumomo", "id": 643, "credit_id": "52fe4320c3a36847f803c3f7", "cast_id": 5, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 1}, {"name": "Youki Kudoh", "character": "Pumpkin", "id": 16145, "credit_id": "52fe4320c3a36847f803c3fb", "cast_id": 6, "profile_path": "/4QtenZ3cLevnIDY831Y0YRQDJax.jpg", "order": 2}, {"name": "Tsai Chin", "character": "Auntie", "id": 10075, "credit_id": "52fe4320c3a36847f803c3ff", "cast_id": 7, "profile_path": "/2icB7ENqRRXxqzirAH3PupzTyqQ.jpg", "order": 3}, {"name": "Suzuka Ohgo", "character": "Chiyo", "id": 19855, "credit_id": "52fe4320c3a36847f803c403", "cast_id": 8, "profile_path": "/cyzZgrDSPk0FoUSNVmdggOvZ12w.jpg", "order": 4}, {"name": "Ken Watanabe", "character": "The Chairman", "id": 3899, "credit_id": "52fe4320c3a36847f803c407", "cast_id": 9, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 5}, {"name": "Michelle Yeoh", "character": "Mameha", "id": 1620, "credit_id": "52fe4320c3a36847f803c40b", "cast_id": 10, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 6}, {"name": "Navia Nguyen", "character": "Izuko", "id": 19856, "credit_id": "52fe4320c3a36847f803c40f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "K\u014dji Yakusho", "character": "Nobu", "id": 18056, "credit_id": "52fe4320c3a36847f803c413", "cast_id": 12, "profile_path": "/mG4niNLZbyKHEfCA7EJP8vsi7rV.jpg", "order": 8}, {"name": "Kaori Momoi", "character": "Mother", "id": 19857, "credit_id": "52fe4320c3a36847f803c417", "cast_id": 13, "profile_path": "/aHPQaKWk1foxvieDZubUJE8olaO.jpg", "order": 9}, {"name": "Zoe Weizenbaum", "character": "Young Pumpkin", "id": 19858, "credit_id": "52fe4320c3a36847f803c41b", "cast_id": 14, "profile_path": "/8OtQTNFkchKOEjOaEhN8kWnIgWD.jpg", "order": 10}, {"name": "Cary-Hiroyuki Tagawa", "character": "The Baron", "id": 11398, "credit_id": "52fe4320c3a36847f803c41f", "cast_id": 15, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 11}, {"name": "Kenneth Tsang", "character": "The General", "id": 10885, "credit_id": "52fe4320c3a36847f803c423", "cast_id": 16, "profile_path": "/6oYTIjKlp8vsyxod7nPJ1R9V8Hf.jpg", "order": 12}, {"name": "Randall Duk Kim", "character": "Dr. Crab", "id": 9462, "credit_id": "52fe4320c3a36847f803c427", "cast_id": 17, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 13}, {"name": "Paul Adelstein", "character": "Lieutenant Hutchins", "id": 17342, "credit_id": "52fe4320c3a36847f803c42b", "cast_id": 18, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 14}, {"name": "Ted Levine", "character": "Colonel Derricks", "id": 15854, "credit_id": "52fe4320c3a36847f803c42f", "cast_id": 19, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 15}, {"name": "Samantha Futerman", "character": "Satsu", "id": 19859, "credit_id": "52fe4320c3a36847f803c433", "cast_id": 20, "profile_path": "/9Wx5VKwW60g7WEREbufz7CYKamC.jpg", "order": 16}, {"name": "Karl Yune", "character": "Koichi", "id": 19860, "credit_id": "52fe4320c3a36847f803c437", "cast_id": 21, "profile_path": "/qK315vPObCNdywdRN66971FtFez.jpg", "order": 17}, {"name": "Togo Igawa", "character": "Tanaka", "id": 9192, "credit_id": "52fe4320c3a36847f803c43b", "cast_id": 22, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 18}, {"name": "Elizabeth Sung", "character": "Sakamoto's Wife", "id": 19861, "credit_id": "52fe4320c3a36847f803c43f", "cast_id": 23, "profile_path": "/m8q9gRb9owm33pDuNlEeC59ck8W.jpg", "order": 19}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4320c3a36847f803c3e3", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.9, "runtime": 145}, "10098": {"poster_path": "/fhr4sGNA69XaoaqymNaUFHolIPI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2500000, "overview": "Considered one of Charlie Chaplin's best films, The Kid also made a star of little Jackie Coogan, who plays a boy cared for by The Tramp when he's abandoned by his mother, Edna. Later, Edna has a change of heart and aches to be reunited with her son. When she finds him and wrests him from The Tramp, it makes for what turns out be one of the most heart-wrenching scenes ever included in a comedy.", "video": false, "id": 10098, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Kid", "tagline": "6 reels of Joy.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0012349", "adult": false, "backdrop_path": "/6hEfCdZ2PMbu3XH8jVRKCdROlyD.jpg", "production_companies": [{"name": "Charles Chaplin Productions", "id": 1315}], "release_date": "1921-01-21", "popularity": 0.736963317722044, "original_title": "The Kid", "budget": 0, "cast": [{"name": "Charles Chaplin", "character": "A Tramp", "id": 13848, "credit_id": "52fe43269251416c7500562d", "cast_id": 10, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Jackie Coogan", "character": "The Kid", "id": 19426, "credit_id": "52fe43269251416c75005615", "cast_id": 4, "profile_path": "/AsRLmcdR5fqhxXlPlwH5TkMMJ2C.jpg", "order": 1}, {"name": "Edna Purviance", "character": "Mother", "id": 21301, "credit_id": "52fe43269251416c75005619", "cast_id": 5, "profile_path": "/lbu4Ji7ePiozKMfYlAazX6HkHUj.jpg", "order": 2}, {"name": "Albert Austin", "character": "Man in shelter", "id": 21306, "credit_id": "52fe43269251416c7500561d", "cast_id": 6, "profile_path": "/36dRfFUJTJ66D0odwVbRM0eAIfZ.jpg", "order": 3}, {"name": "Beulah Bains", "character": "Bride", "id": 63380, "credit_id": "52fe43269251416c75005631", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Carl Miller", "character": "The Man", "id": 63378, "credit_id": "52fe43269251416c75005635", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Henry Bergman", "character": "Night shelter keeper", "id": 14438, "credit_id": "52fe43269251416c75005639", "cast_id": 13, "profile_path": "/lXhkLU19RhgFD95zx84jjXhhyE.jpg", "order": 6}, {"name": "Kitty Bradbury", "character": "Bride's mother", "id": 10531, "credit_id": "52fe43269251416c7500563d", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Nellie Bly Baker", "character": "Slum nurse", "id": 63381, "credit_id": "52fe43269251416c75005641", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "F. Blinn", "character": "His assistant", "id": 63382, "credit_id": "52fe43269251416c75005645", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Frances Cochran", "character": "Extra in reception scene", "id": 63386, "credit_id": "52fe43269251416c75005649", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Frank Campeau", "character": "Welfare officer", "id": 63383, "credit_id": "52fe43269251416c7500564d", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Bliss Chevalier", "character": "Extra in wedding scene", "id": 63384, "credit_id": "52fe43269251416c75005651", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Elsie Codd", "character": "Extra in alley scene", "id": 63385, "credit_id": "52fe43269251416c75005655", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Jack Coogan Sr.", "character": "Pickpocket / Guest / Devil", "id": 63387, "credit_id": "52fe43269251416c75005659", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Estelle Cook", "character": "Extra in wedding scene", "id": 63388, "credit_id": "52fe43269251416c7500565d", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Dan Dillon", "character": "Bum", "id": 63390, "credit_id": "52fe43269251416c75005661", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Philip D'Oench", "character": "Extra in wedding scene", "id": 63391, "credit_id": "52fe43269251416c75005665", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Lillian Crane", "character": "Extra in wedding scene", "id": 63389, "credit_id": "52fe43269251416c75005669", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Robert Dunbar", "character": "Bridegroom", "id": 63392, "credit_id": "52fe43269251416c7500566d", "cast_id": 26, "profile_path": null, "order": 19}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe43269251416c75005605", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.9, "runtime": 68}, "13971": {"poster_path": "/vH2Z6JO2r6Q0aQaPDbIAYDOSG4H.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rebellious 16 year old Poppy from Mailibu is sent to an English boarding school. Realising her Father isn't coming back to rescue her she tries to get expelled.", "video": false, "id": 13971, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Wild Child", "tagline": "New Girl. New School. New Rules.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1024255", "adult": false, "backdrop_path": "/18W6hUmP9sVzDlzzlrsP4RaKJ7H.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2008-01-01", "popularity": 0.69684327401262, "original_title": "Wild Child", "budget": 0, "cast": [{"name": "Emma Roberts", "character": "Poppy", "id": 34847, "credit_id": "52fe45bd9251416c75060d9b", "cast_id": 2, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "Lexi Ainsworth", "character": "Molly", "id": 76226, "credit_id": "52fe45bd9251416c75060d9f", "cast_id": 3, "profile_path": "/sS4gKvUFuuUnJwZIDDCXj3gyotu.jpg", "order": 1}, {"name": "Shelby Young", "character": "Ruby", "id": 25113, "credit_id": "52fe45bd9251416c75060da3", "cast_id": 4, "profile_path": "/p5AgNnqgGC4FyZoQTIjwykwQxOy.jpg", "order": 2}, {"name": "Johnny Pacar", "character": "Roddy", "id": 76227, "credit_id": "52fe45bd9251416c75060da7", "cast_id": 5, "profile_path": "/ebTDDwnCqexS5YNYA0Mq3jBL8gT.jpg", "order": 3}, {"name": "Natasha Richardson", "character": "Mrs Kingsley", "id": 20162, "credit_id": "52fe45bd9251416c75060dab", "cast_id": 6, "profile_path": "/eHBBsS6JLSEoLBi61nYfTs5t55u.jpg", "order": 4}, {"name": "Georgia King", "character": "Harriet", "id": 73462, "credit_id": "52fe45bd9251416c75060daf", "cast_id": 7, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 5}, {"name": "Sophie Wu", "character": "Kiki", "id": 116883, "credit_id": "52fe45bd9251416c75060db3", "cast_id": 9, "profile_path": "/AtwCdj7Dk8qe3otYLAjARxlaD7.jpg", "order": 6}, {"name": "Juno Temple", "character": "Jennifer 'Drippy' Logan", "id": 36594, "credit_id": "52fe45bd9251416c75060db7", "cast_id": 10, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 7}, {"name": "Aidan Quinn", "character": "Gerry Moore", "id": 18992, "credit_id": "52fe45bd9251416c75060dfd", "cast_id": 22, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 8}, {"name": "Ruby Thomas", "character": "Jane", "id": 1017854, "credit_id": "52fe45bd9251416c75060e01", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Eleanor Turner-Moss", "character": "Charlotte", "id": 1130143, "credit_id": "52fe45bd9251416c75060e05", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Kimberley Nixon", "character": "Kate", "id": 124828, "credit_id": "52fe45bd9251416c75060e09", "cast_id": 25, "profile_path": "/frdqvlqCWK76ERBB9cMVeRCKcHv.jpg", "order": 11}, {"name": "Maisie Preston", "character": "'Wow' Girl", "id": 946844, "credit_id": "52fe45bd9251416c75060e0d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Linzey Cocker", "character": "Josie", "id": 123497, "credit_id": "52fe45bd9251416c75060e11", "cast_id": 27, "profile_path": "/xw2AsgVOjJ7JJzort7nDxKpr9rM.jpg", "order": 13}, {"name": "Shirley Henderson", "character": "Matron", "id": 1834, "credit_id": "52fe45bd9251416c75060e15", "cast_id": 28, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 14}, {"name": "Alex Pettyfer", "character": "Freddie", "id": 61363, "credit_id": "52fe45bd9251416c75060e19", "cast_id": 29, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 15}], "directors": [{"name": "Nick Moore", "department": "Directing", "job": "Director", "credit_id": "52fe45bd9251416c75060d97", "profile_path": null, "id": 3310}], "vote_average": 6.4, "runtime": 98}, "75638": {"poster_path": "/iiNGtxUhO2oDeCci7E6OF7OEASk.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.", "video": false, "id": 75638, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Red Lights", "tagline": "How much do you want to believe?", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748179", "adult": false, "backdrop_path": "/jk5al2dckPNLf22flMs2JZ6nru4.jpg", "production_companies": [{"name": "Nostromo Pictures", "id": 11068}, {"name": "Cindy Cowan Entertainment", "id": 22862}, {"name": "Antena 3 Films", "id": 6538}, {"name": "Televisi\u00f3 de Catalunya", "id": 5085}, {"name": "Instituto de la Cinematograf\u00eda y de las Artes Audiovisuales (ICAA)", "id": 9974}, {"name": "La Sexta", "id": 22863}, {"name": "Canal+ Espana", "id": 12625}], "release_date": "2012-07-12", "popularity": 0.611728864835055, "original_title": "Red Lights", "budget": 0, "cast": [{"name": "Sigourney Weaver", "character": "Margaret Matheson", "id": 10205, "credit_id": "52fe490ac3a368484e117a03", "cast_id": 3, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Simon Silver", "id": 380, "credit_id": "52fe490ac3a368484e1179f9", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Cillian Murphy", "character": "Tom Buckley", "id": 2037, "credit_id": "52fe490ac3a368484e117a07", "cast_id": 4, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 2}, {"name": "Elizabeth Olsen", "character": "Sally Owen", "id": 550843, "credit_id": "52fe490ac3a368484e117a0b", "cast_id": 5, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 3}, {"name": "Toby Jones", "character": "Paul Shackleton", "id": 13014, "credit_id": "52fe490ac3a368484e117a0f", "cast_id": 6, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 4}, {"name": "Joely Richardson", "character": "Monica Handsen", "id": 20810, "credit_id": "52fe490ac3a368484e117a13", "cast_id": 7, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 5}, {"name": "Karen David", "character": "Dana", "id": 79124, "credit_id": "532862739251411a05002468", "cast_id": 20, "profile_path": "/pBR1dQvCEBpRaaL6dF8L9FtfJE8.jpg", "order": 6}, {"name": "Craig Roberts", "character": "Ben", "id": 104561, "credit_id": "52fe490ac3a368484e117a1b", "cast_id": 9, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 7}, {"name": "Burn Gorman", "character": "Benedict Cohen", "id": 39659, "credit_id": "52fe490ac3a368484e117a1f", "cast_id": 10, "profile_path": "/qV6MEseSjTkz1SKw9RoNHaesdRr.jpg", "order": 8}, {"name": "Gina Bramhill", "character": "Judi Cale", "id": 990278, "credit_id": "52fe490ac3a368484e117a23", "cast_id": 11, "profile_path": "/q49XA11Yks5eqPXi8rmzs1X1IgG.jpg", "order": 9}, {"name": "Jan Cornet", "character": "David Matheson", "id": 440879, "credit_id": "52fe490ac3a368484e117a27", "cast_id": 12, "profile_path": "/mSvPtwX5nP9gkoXsXtTHripMU4G.jpg", "order": 10}, {"name": "Leonardo Sbaraglia", "character": "Palladino", "id": 19803, "credit_id": "52fe490ac3a368484e117a2b", "cast_id": 13, "profile_path": "/u3UxARVRPxOg1DqVbjq3Qe934ZJ.jpg", "order": 11}, {"name": "Garrick Hagon", "character": "Howard McColm", "id": 17356, "credit_id": "52fe490ac3a368484e117a2f", "cast_id": 14, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 12}, {"name": "Jesse Bostick", "character": "TV Boy", "id": 1026218, "credit_id": "52fe490ac3a368484e117a33", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Jeany Spark", "character": "Traci Northrop", "id": 495384, "credit_id": "52fe490ac3a368484e117a37", "cast_id": 16, "profile_path": "/9hx80tezCDEvpAzOhg97RZvKmUh.jpg", "order": 14}, {"name": "Eloise Webb", "character": "Susan Sidgwick", "id": 1394373, "credit_id": "550bd58a9251414699003070", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Rodrigo Cort\u00e9s", "department": "Directing", "job": "Director", "credit_id": "52fe490ac3a368484e1179ff", "profile_path": "/iGeAsnt5Ni96dbQD7FnClc4UQDB.jpg", "id": 95320}], "vote_average": 6.0, "runtime": 119}, "1911": {"poster_path": "/6isysxWoD204IWMMXhFU4f7Uhe6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61698899, "overview": "In AD 922, Arab courtier Ahmad Ibn Fadlan (Antonio Banderas) accompanies a party of Vikings to the barbaric North to combat a terror that slaughters Vikings and devours their flesh.", "video": false, "id": 1911, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The 13th Warrior", "tagline": "Prey for the living.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120657", "adult": false, "backdrop_path": "/cAWjH6Oz0fb10F75vRPbRIM2q6Z.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1999-08-27", "popularity": 0.999026560451981, "original_title": "The 13th Warrior", "budget": 160000000, "cast": [{"name": "Antonio Banderas", "character": "Ahmad Ibn Fadl\u0101n", "id": 3131, "credit_id": "52fe4321c3a36847f803c6d9", "cast_id": 4, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Vladimir Kulich", "character": "Buliwyf", "id": 19898, "credit_id": "52fe4321c3a36847f803c6e3", "cast_id": 6, "profile_path": "/A2g8P9LbEhi34s4I5my4Soo5Y30.jpg", "order": 1}, {"name": "Dennis Storh\u00f8i", "character": "Herger the Joyous", "id": 19899, "credit_id": "52fe4321c3a36847f803c6e7", "cast_id": 7, "profile_path": "/zc8O7O8l8wtX3EQmDV7jWOPjmHJ.jpg", "order": 2}, {"name": "Daniel Southern", "character": "Edgtho the Silent", "id": 19900, "credit_id": "52fe4321c3a36847f803c6eb", "cast_id": 8, "profile_path": "/4usRNd9ETuQxeJNvrOG5PZXOHS8.jpg", "order": 3}, {"name": "Clive Russell", "character": "Helfdane the Fat", "id": 19901, "credit_id": "52fe4321c3a36847f803c6ef", "cast_id": 9, "profile_path": "/3dkiAdWPMPiPRqwi5MVBFOSD9Xo.jpg", "order": 4}, {"name": "Mischa Hausserman", "character": "Rethel the Archer", "id": 19902, "credit_id": "52fe4321c3a36847f803c6f3", "cast_id": 10, "profile_path": "/4CJ8dgYS1QJWANpivJ8CI9aARog.jpg", "order": 5}, {"name": "Richard Bremmer", "character": "Skeld the Superstitious", "id": 19903, "credit_id": "52fe4321c3a36847f803c6f7", "cast_id": 11, "profile_path": "/eRLxQ7sTWqtI24OPo5wz3p95RI3.jpg", "order": 6}, {"name": "Diane Venora", "character": "Queen Weilew", "id": 6200, "credit_id": "52fe4321c3a36847f803c701", "cast_id": 13, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 7}, {"name": "Neil Maffin", "character": "Roneth", "id": 156000, "credit_id": "544e9eefc3a3686aa800058f", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "John DeSantis", "character": "Ragnar - Dour", "id": 43299, "credit_id": "544e9f0a0e0a267114000534", "cast_id": 15, "profile_path": "/vRAZhbcTbS56k5CpfO1NckaJf9N.jpg", "order": 9}, {"name": "Oliver Sveinall", "character": "Haltaf - Boy", "id": 1378404, "credit_id": "544e9f2fc3a368565d00060d", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Asbj\u00f8rn 'Bear' Riis", "character": "Halga - Wise", "id": 1378405, "credit_id": "544e9f4fc3a3686376000599", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Tony Curran", "character": "Weath - Musician", "id": 2220, "credit_id": "544e9f6d0e0a26421e00064b", "cast_id": 18, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 12}, {"name": "Albie Woodington", "character": "Hyglak - Quarrelsome", "id": 53353, "credit_id": "544e9f81c3a36855d1000251", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Omar Sharif", "character": "Melchisidek", "id": 5004, "credit_id": "544e9f970e0a263c710005b4", "cast_id": 20, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 14}, {"name": "Erick Avari", "character": "Caravan Leader", "id": 18917, "credit_id": "544e9faac3a368565d000619", "cast_id": 21, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 15}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe4321c3a36847f803c6df", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.3, "runtime": 102}, "8247": {"poster_path": "/mIz6FQabZrrzsOwYFpUpreijpvx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222231186, "overview": "A genetic anomaly allows a young man to teleport himself anywhere. He discovers this gift has existed for centuries and finds himself in a war that has been raging for thousands of years between \"Jumpers\" and those who have sworn to kill them.", "video": false, "id": 8247, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Jumper", "tagline": "anywhere is possible.", "vote_count": 565, "homepage": "http://www.jumperthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489099", "adult": false, "backdrop_path": "/3gZ2iiqCqwVg7sKm2KUspzxfelQ.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Hypnotic", "id": 7384}, {"name": "Dune Entertainment", "id": 444}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Jumper Productions", "id": 11805}], "release_date": "2008-02-10", "popularity": 0.793669791636738, "original_title": "Jumper", "budget": 85000000, "cast": [{"name": "Hayden Christensen", "character": "David Rice", "id": 17244, "credit_id": "52fe4498c3a36847f809f2f9", "cast_id": 29, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Roland", "id": 2231, "credit_id": "52fe4498c3a36847f809f26d", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Rachel Bilson", "character": "Millie Harris", "id": 52783, "credit_id": "52fe4498c3a36847f809f279", "cast_id": 6, "profile_path": "/tb5sDcY2QR72oyJthVEn4xaLJ7J.jpg", "order": 2}, {"name": "Jamie Bell", "character": "Griffin", "id": 478, "credit_id": "52fe4498c3a36847f809f275", "cast_id": 5, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 3}, {"name": "Diane Lane", "character": "Mary Rice", "id": 2882, "credit_id": "52fe4498c3a36847f809f271", "cast_id": 4, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 4}, {"name": "Michael Rooker", "character": "William Rice", "id": 12132, "credit_id": "52fe4498c3a36847f809f27d", "cast_id": 7, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 5}, {"name": "Max Thieriot", "character": "Young David", "id": 41883, "credit_id": "52fe4498c3a36847f809f281", "cast_id": 8, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 6}, {"name": "AnnaSophia Robb", "character": "Young Millie", "id": 1285, "credit_id": "52fe4498c3a36847f809f2e5", "cast_id": 25, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 7}, {"name": "Kristen Stewart", "character": "Sophie", "id": 37917, "credit_id": "52fe4498c3a36847f809f2e9", "cast_id": 26, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 8}, {"name": "Jesse James", "character": "Young Mark", "id": 10135, "credit_id": "52fe4498c3a36847f809f2fd", "cast_id": 30, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 9}, {"name": "Tom Hulce", "character": "Mr. Bowker", "id": 3999, "credit_id": "52fe4498c3a36847f809f301", "cast_id": 31, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 10}, {"name": "Teddy Dunn", "character": "Mark Kobold", "id": 115729, "credit_id": "52fe4498c3a36847f809f305", "cast_id": 32, "profile_path": "/Aps4GgLsUsijrzcHozPEQeggwGf.jpg", "order": 11}, {"name": "Barbara Garrick", "character": "Ellen", "id": 12932, "credit_id": "52fe4498c3a36847f809f309", "cast_id": 33, "profile_path": "/rGnwUug86oil1pZ9whjohbBBRqj.jpg", "order": 12}, {"name": "Massimiliano Pazzaglia", "character": "Italian Desk Cop", "id": 27427, "credit_id": "52fe4498c3a36847f809f30d", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Michael Winther", "character": "Day Bank Manager", "id": 1184028, "credit_id": "52fe4498c3a36847f809f33b", "cast_id": 43, "profile_path": "/mcQ2TfhyGOpfENiaRskdzbdS0fM.jpg", "order": 14}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a36847f809f269", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 5.8, "runtime": 88}, "10110": {"poster_path": "/mD5BkLNSPXS8GZDB0VRRrI7YV5V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of young English boy who lives with his parents in Shanghai during World War II. After the Pearl Harbor attack, the Japanese occupy the Shanghai International Settlement, and in the following chaos Jim becomes separated from his parents.", "video": false, "id": 10110, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Empire of the Sun", "tagline": "To survive in a world at war, he must find a strength greater than all the events that surround him.", "vote_count": 170, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0092965", "adult": false, "backdrop_path": "/uayKpWZjHngQXjop6amA4EPJC2R.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-12-08", "popularity": 0.982191189588627, "original_title": "Empire of the Sun", "budget": 38000000, "cast": [{"name": "Christian Bale", "character": "Jim 'Jamie' Graham", "id": 3894, "credit_id": "52fe43299251416c75005c7f", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "John Malkovich", "character": "Basie", "id": 6949, "credit_id": "52fe43299251416c75005c83", "cast_id": 2, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Miranda Richardson", "character": "Mrs. Victor", "id": 8436, "credit_id": "52fe43299251416c75005c87", "cast_id": 3, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 2}, {"name": "Nigel Havers", "character": "Dr. Rawlins", "id": 53517, "credit_id": "52fe43299251416c75005c8b", "cast_id": 4, "profile_path": "/yujuXwxZibgl7NMhk0uZ1FX7Nyf.jpg", "order": 3}, {"name": "Ben Stiller", "character": "Dainty", "id": 7399, "credit_id": "52fe43299251416c75005c8f", "cast_id": 5, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 4}, {"name": "Joe Pantoliano", "character": "Frank Demarest", "id": 532, "credit_id": "53616fb0c3a368395d000420", "cast_id": 18, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Leslie Phillips", "character": "Maxton", "id": 10655, "credit_id": "53616fc1c3a368397600041a", "cast_id": 19, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 6}, {"name": "Masat\u014d Ibu", "character": "Sgt. Nagata", "id": 93892, "credit_id": "53616fcfc3a368394e000425", "cast_id": 20, "profile_path": "/oVy1sMt7DVttkG5Gpxcv6ullVU9.jpg", "order": 7}, {"name": "Emily Richard", "character": "Mary Graham, Jim's mother", "id": 1239914, "credit_id": "536170a9c3a368396e000420", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Rupert Frazer", "character": "John Graham, Jim's father", "id": 62231, "credit_id": "536170d7c3a368394e00043a", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Peter Galea", "character": "Mr. Victor", "id": 1206019, "credit_id": "536170e5c3a368394700043d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Takatar\u00f4 Kataoka", "character": "Kamikaze Boy Pilot", "id": 1169235, "credit_id": "536170f7c3a36839650003ed", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "David Neidorf", "character": "Tiptree", "id": 4042, "credit_id": "53617109c3a3683947000440", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Ralph Seymour", "character": "Cohen", "id": 5147, "credit_id": "53617118c3a3683947000442", "cast_id": 26, "profile_path": "/7lu95loRqfN0TTWZGM1QfI5hX8W.jpg", "order": 13}, {"name": "Robert Stephens", "character": "Mr. Lockwood", "id": 41957, "credit_id": "5361712bc3a368395d000433", "cast_id": 27, "profile_path": "/q1GXvr08N9MzkTrMQjSXwDPrzRV.jpg", "order": 14}, {"name": "Zhai Nai She", "character": "Yang", "id": 1315503, "credit_id": "53617149c3a368394e000442", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Guts Ishimatsu", "character": "Sgt. Uchida", "id": 1315504, "credit_id": "5361717cc3a368397600043a", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Emma Piper", "character": "Amy Matthews", "id": 1315505, "credit_id": "5361718bc3a36839650003f5", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "James Walker", "character": "Mr. Radik", "id": 1315316, "credit_id": "5361725e0e0a2649bf0004c9", "cast_id": 31, "profile_path": null, "order": 18}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe43299251416c75005c95", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 7.0, "runtime": 153}, "10112": {"poster_path": "/jKEwHW5feriPFA0QGZsk3cjQ5T9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55675257, "overview": "When Madame Adelaide Bonfamille leaves her fortune to Duchess and her children -- Bonfamille's prize family of domesticated house cats -- the butler plots to steal the money and kidnaps the heirs, leaving them out on a country road. All seems lost until the wily Thomas O'Malley Cat and his jazz-playing alley cats come to the Aristocats's rescue.", "video": false, "id": 10112, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Aristocats", "tagline": "A tune-filled animated extravaganza.", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065421", "adult": false, "backdrop_path": "/wdAFkYTSxdzbQx35aZdfv4Nm9l.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1970-12-24", "popularity": 1.59041421044054, "original_title": "The Aristocats", "budget": 4000000, "cast": [{"name": "Phil Harris", "character": "O'Malley", "id": 57329, "credit_id": "52fe43299251416c75005e47", "cast_id": 1, "profile_path": "/cNfUGziMuqXlrw5i3w1VqugwIt5.jpg", "order": 0}, {"name": "Sterling Holloway", "character": "Roquefort", "id": 34759, "credit_id": "52fe43299251416c75005e4b", "cast_id": 3, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 1}, {"name": "Scatman Crothers", "character": "Scat Cat", "id": 7077, "credit_id": "52fe43299251416c75005e4f", "cast_id": 4, "profile_path": "/n3REW3TGbjLC8SbaZG7g48pm98n.jpg", "order": 2}, {"name": "Eva Gabor", "character": "Duchess", "id": 44714, "credit_id": "52fe432a9251416c75005e9b", "cast_id": 18, "profile_path": "/1TffwJuOCaQSHmiQoI3ShogsMTP.jpg", "order": 3}, {"name": "Paul Winchell", "character": "Chinese Cat", "id": 77548, "credit_id": "52fe432a9251416c75005ea5", "cast_id": 20, "profile_path": "/hAhbU0lCkYA0yCHZb6sVKWluY3Y.jpg", "order": 4}, {"name": "Lord Tim Hudson", "character": "English Cat", "id": 951459, "credit_id": "52fe432a9251416c75005ea9", "cast_id": 21, "profile_path": "/6gfzXSEqnKLg4cKZ9cA9VM27M9f.jpg", "order": 5}, {"name": "Vito Scotti", "character": "Italian Cat", "id": 82779, "credit_id": "52fe432a9251416c75005ead", "cast_id": 22, "profile_path": "/pN3aRdEF78xyCHsZrju56FO12wK.jpg", "order": 6}, {"name": "Thurl Ravenscroft", "character": "Russian Cat", "id": 150739, "credit_id": "52fe432a9251416c75005eb1", "cast_id": 23, "profile_path": "/6DSmCbrUeNP7lDJkhTkJ7I9hTeq.jpg", "order": 7}, {"name": "Dean Clark", "character": "Berlioz", "id": 949102, "credit_id": "52fe432a9251416c75005eb5", "cast_id": 24, "profile_path": "/uhJhqdZdUnF6RtBo5jIvnk8nofm.jpg", "order": 8}, {"name": "Liz English", "character": "Marie", "id": 950035, "credit_id": "52fe432a9251416c75005eb9", "cast_id": 25, "profile_path": "/F1MTpnjKKJkLWhcRTS7QTIaPNP.jpg", "order": 9}, {"name": "Gary Dubin", "character": "Toulouse", "id": 16202, "credit_id": "52fe432a9251416c75005ebd", "cast_id": 26, "profile_path": "/wEmM0j6H57x1YQy4WFu5p9Ibh4A.jpg", "order": 10}, {"name": "Nancy Kulp", "character": "Frou-Frou", "id": 30519, "credit_id": "52fe432a9251416c75005ec1", "cast_id": 27, "profile_path": "/b7paqBqgqbbGZs1hTsXC0sfBtSQ.jpg", "order": 11}, {"name": "Pat Buttram", "character": "Napoleon", "id": 21460, "credit_id": "52fe432a9251416c75005ec5", "cast_id": 28, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 12}, {"name": "George Lindsey", "character": "Lafayette", "id": 141693, "credit_id": "52fe432a9251416c75005ec9", "cast_id": 29, "profile_path": "/dvlW5KWKZuub9nqkwwePA5Tf1yX.jpg", "order": 13}, {"name": "Monica Evans", "character": "Abigail", "id": 143770, "credit_id": "52fe432a9251416c75005ecd", "cast_id": 30, "profile_path": "/hp8qc9ZB0U3hehc6mseyHVd8j0p.jpg", "order": 14}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe43299251416c75005e55", "profile_path": null, "id": 57314}], "vote_average": 6.5, "runtime": 78}, "1921": {"poster_path": "/o93LJC8y88MGBC3C7e71C45G5bx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.", "video": false, "id": 1921, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sweet November", "tagline": "She Just Needed A Month To Change His Life For Ever.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0230838", "adult": false, "backdrop_path": "/bOEoGixpghPwrHOsMnKq98rqLLq.jpg", "production_companies": [{"name": "Bel Air Entertainment", "id": 788}], "release_date": "2001-02-16", "popularity": 0.736560131086694, "original_title": "Sweet November", "budget": 40000000, "cast": [{"name": "Keanu Reeves", "character": "Nelson", "id": 6384, "credit_id": "52fe4322c3a36847f803cc3d", "cast_id": 15, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Sara", "id": 6885, "credit_id": "52fe4322c3a36847f803cc41", "cast_id": 16, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Jason Isaacs", "character": "Chaz", "id": 11355, "credit_id": "52fe4322c3a36847f803cc45", "cast_id": 17, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 2}, {"name": "Greg Germann", "character": "Vince", "id": 19974, "credit_id": "52fe4322c3a36847f803cc49", "cast_id": 18, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 3}, {"name": "Lauren Graham", "character": "Angelica", "id": 16858, "credit_id": "52fe4322c3a36847f803cc4d", "cast_id": 19, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 4}, {"name": "Michael Rosenbaum", "character": "Brandon", "id": 19975, "credit_id": "52fe4322c3a36847f803cc51", "cast_id": 20, "profile_path": "/kfitDCFN9JJxZF6IE0XzgdgDtXr.jpg", "order": 5}, {"name": "Frank Langella", "character": "Edgar Price", "id": 8924, "credit_id": "52fe4322c3a36847f803cc55", "cast_id": 21, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 6}, {"name": "Robert Joy", "character": "Raeford Dunne", "id": 19976, "credit_id": "52fe4322c3a36847f803cc59", "cast_id": 22, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 7}, {"name": "Liam Aiken", "character": "Abner", "id": 19977, "credit_id": "52fe4322c3a36847f803cc5d", "cast_id": 23, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 8}, {"name": "Jason Kravits", "character": "Manny", "id": 19978, "credit_id": "52fe4322c3a36847f803cc61", "cast_id": 24, "profile_path": "/cVKEiEDx84xV2KiMKYZcNJLQDWX.jpg", "order": 9}, {"name": "June Carryl", "character": "Beatrice", "id": 19979, "credit_id": "52fe4322c3a36847f803cc65", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Kelvin Han Yee", "character": "Burly Man", "id": 19980, "credit_id": "52fe4322c3a36847f803cc69", "cast_id": 26, "profile_path": "/qTLQx8LDGKSeGfDdFxidsMpFAGv.jpg", "order": 11}, {"name": "David Fine", "character": "Homeless Person", "id": 19981, "credit_id": "52fe4322c3a36847f803cc6d", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Diane Amos", "character": "Rachel, Coffee Shop Waitress", "id": 19982, "credit_id": "52fe4322c3a36847f803cc71", "cast_id": 28, "profile_path": null, "order": 13}], "directors": [{"name": "Pat O'Connor", "department": "Directing", "job": "Director", "credit_id": "52fe4322c3a36847f803cbeb", "profile_path": null, "id": 19969}], "vote_average": 6.6, "runtime": 119}, "1923": {"poster_path": "/lGdKDTZLXPFzij5Q3LJ8djbt2Ed.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4000000, "overview": "In the folksy town of Deerfield, Wash., FBI Agent Desmond (Chris Isaak) inexplicably disappears while hunting for the man who murdered a teen girl. The killer is never apprehended, and, after experiencing dark visions and supernatural encounters, Agent Dale Cooper (Kyle MacLachlan) chillingly predicts that the culprit will claim another life. Meanwhile, in the similarly cozy town of Twin Peaks, hedonistic beauty Lara Palmer (Sheryl Lee) hangs with lowlifes and seems destined for a grisly fate.", "video": false, "id": 1923, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Twin Peaks: Fire Walk with Me", "tagline": "Meet Laura Palmer... In a town where nothing is as it seems... And everyone has something to hide.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105665", "adult": false, "backdrop_path": "/5TWV9almHDBywbULDFdYMMdmEEw.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1992-05-01", "popularity": 1.14767216902549, "original_title": "Twin Peaks: Fire Walk with Me", "budget": 10000000, "cast": [{"name": "Sheryl Lee", "character": "Laura Palmer", "id": 6726, "credit_id": "52fe4322c3a36847f803cd81", "cast_id": 9, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 0}, {"name": "Ray Wise", "character": "Leland Palmer", "id": 6719, "credit_id": "52fe4322c3a36847f803cd95", "cast_id": 14, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 1}, {"name": "M\u00e4dchen Amick", "character": "Shelly Johnson", "id": 6714, "credit_id": "52fe4322c3a36847f803cd89", "cast_id": 11, "profile_path": "/y9qpjIzfm78aPHR8wxeTo20bDyV.jpg", "order": 2}, {"name": "Dana Ashbrook", "character": "Bobby Briggs", "id": 6715, "credit_id": "53da4f9ac3a3681ecd00174a", "cast_id": 27, "profile_path": "/qk2BsFN6ITljgG7wtGAcitbkFQC.jpg", "order": 3}, {"name": "Phoebe Augustine", "character": "Ronette Pulaski", "id": 15796, "credit_id": "52fe4322c3a36847f803cd8d", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "David Bowie", "character": "Phillip Jeffries", "id": 7487, "credit_id": "52fe4322c3a36847f803cd91", "cast_id": 13, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 5}, {"name": "Eric DaRe", "character": "Leo Johnson", "id": 9323, "credit_id": "53da506f0e0a2652e50023c4", "cast_id": 28, "profile_path": "/ifUTWQVVl9uYm0EweI1uy4fKPbP.jpg", "order": 6}, {"name": "Miguel Ferrer", "character": "Albert Rosenfeld", "id": 15860, "credit_id": "52fe4322c3a36847f803cdc5", "cast_id": 26, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 7}, {"name": "Moira Kelly", "character": "Donna Hayward", "id": 20005, "credit_id": "52fe4322c3a36847f803cd85", "cast_id": 10, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 8}, {"name": "Heather Graham", "character": "Annie Blackburn", "id": 69122, "credit_id": "52fe4322c3a36847f803cd99", "cast_id": 15, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 9}, {"name": "James Marshall", "character": "James Hurley", "id": 6717, "credit_id": "52fe4322c3a36847f803cd9d", "cast_id": 16, "profile_path": "/8ytq4mu3fLWlLU80QeGCBz4z0tW.jpg", "order": 10}, {"name": "David Lynch", "character": "Gordon Cole", "id": 5602, "credit_id": "52fe4322c3a36847f803cda1", "cast_id": 17, "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "order": 11}, {"name": "Kiefer Sutherland", "character": "Sam Stanley", "id": 2628, "credit_id": "52fe4322c3a36847f803cda5", "cast_id": 18, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 12}, {"name": "Kyle MacLachlan", "character": "Special Agent Dale Cooper", "id": 6677, "credit_id": "52fe4322c3a36847f803cdc1", "cast_id": 25, "profile_path": "/ykDb80YOPY2HLuRClLDpSYxUCPX.jpg", "order": 13}, {"name": "Lenny Von Dohlen", "character": "Harold Smith (as Lenny Von Dohlen)", "id": 15799, "credit_id": "52fe4322c3a36847f803cda9", "cast_id": 19, "profile_path": "/7duYOdfUgAX7JL1zsXaKZEhuEVY.jpg", "order": 14}, {"name": "Grace Zabriskie", "character": "Sarah Palmer", "id": 6465, "credit_id": "52fe4322c3a36847f803cdad", "cast_id": 20, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 15}, {"name": "Frances Bay", "character": "Mrs. Tremond (Chalfont)", "id": 11794, "credit_id": "52fe4322c3a36847f803cdb1", "cast_id": 21, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 16}, {"name": "Catherine E. Coulson", "character": "The Log Lady", "id": 123516, "credit_id": "52fe4322c3a36847f803cdb5", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Michael J. Anderson", "character": "Man From Another Place", "id": 123517, "credit_id": "52fe4322c3a36847f803cdb9", "cast_id": 23, "profile_path": "/3YhlfQLwReWY3xSjh5VJriOkiLA.jpg", "order": 18}, {"name": "Frank Silva", "character": "Bob", "id": 123518, "credit_id": "52fe4322c3a36847f803cdbd", "cast_id": 24, "profile_path": null, "order": 19}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4322c3a36847f803cd53", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 6.7, "runtime": 125}, "1924": {"poster_path": "/rLTdj7oB9oxsYwuweeglWRzRng7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300218018, "overview": "Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane \u2212 who's in love with Superman. Clark must summon his superhero alter ego when the nefarious Lex Luthor launches a plan to take over the world.", "video": false, "id": 1924, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman", "tagline": "You'll Believe a Man Can Fly!", "vote_count": 270, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0078346", "adult": false, "backdrop_path": "/nS0rEXPbkHI449SF6R4WUQvTVxE.jpg", "production_companies": [{"name": "Dovemead Films", "id": 51861}, {"name": "International Film Productions", "id": 2039}, {"name": "Film Export A.G.", "id": 51862}], "release_date": "1978-12-14", "popularity": 1.56581089010793, "original_title": "Superman", "budget": 55000000, "cast": [{"name": "Marlon Brando", "character": "Jor-El", "id": 3084, "credit_id": "52fe4322c3a36847f803ce03", "cast_id": 2, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Lex Luthor", "id": 193, "credit_id": "52fe4322c3a36847f803ce19", "cast_id": 8, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe4322c3a36847f803cdff", "cast_id": 1, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 2}, {"name": "Ned Beatty", "character": "Otis", "id": 13726, "credit_id": "52fe4322c3a36847f803ce21", "cast_id": 10, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 3}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe4322c3a36847f803ce25", "cast_id": 11, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 4}, {"name": "Glenn Ford", "character": "Jonathan Kent", "id": 3381, "credit_id": "52fe4322c3a36847f803ce29", "cast_id": 12, "profile_path": "/jEvXdJXH2JeN2hGviyHnKwVOWIf.jpg", "order": 5}, {"name": "Trevor Howard", "character": "1st Elder", "id": 12726, "credit_id": "52fe4322c3a36847f803ce2d", "cast_id": 13, "profile_path": "/drj1FPryhAimWCiufEnMLzUxpBQ.jpg", "order": 6}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe4322c3a36847f803ce1d", "cast_id": 9, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 7}, {"name": "Jack O'Halloran", "character": "Non", "id": 41224, "credit_id": "54ea672b9251412eb100543c", "cast_id": 41, "profile_path": null, "order": 8}, {"name": "Valerie Perrine", "character": "Eve Teschmacher", "id": 26483, "credit_id": "52fe4322c3a36847f803ce31", "cast_id": 15, "profile_path": "/1Er0uPPTmQ7perH3hZmozvbYDX.jpg", "order": 9}, {"name": "Maria Schell", "character": "Vond-Ah", "id": 40954, "credit_id": "52fe4322c3a36847f803ce35", "cast_id": 16, "profile_path": "/sicfakzbA93nxpsuwRbDAMGEjj9.jpg", "order": 10}, {"name": "Terence Stamp", "character": "General Zod", "id": 28641, "credit_id": "52fe4322c3a36847f803ce39", "cast_id": 17, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 11}, {"name": "Phyllis Thaxter", "character": "Martha Kent", "id": 85042, "credit_id": "52fe4322c3a36847f803ce3d", "cast_id": 18, "profile_path": "/iS0nG2doPQdObLWUOYqnvBRHa83.jpg", "order": 12}, {"name": "Susannah York", "character": "Lara", "id": 13326, "credit_id": "52fe4322c3a36847f803ce41", "cast_id": 19, "profile_path": "/uVWQdc4Oae7JlhewHYmxysOnORl.jpg", "order": 13}, {"name": "Sarah Douglas", "character": "Ursa", "id": 31364, "credit_id": "54ea67489251412eb80052fe", "cast_id": 42, "profile_path": "/als2MT3X28mDol3e5uEy25agNRM.jpg", "order": 14}, {"name": "Harry Andrews", "character": "2nd Elder", "id": 19463, "credit_id": "54ea675e925141117c004c5a", "cast_id": 43, "profile_path": "/1EJXH5DyJWDtHfX8MeqSrCrUlwD.jpg", "order": 15}, {"name": "Jeff East", "character": "Young Clark Kent", "id": 53088, "credit_id": "52fe4322c3a36847f803ce45", "cast_id": 20, "profile_path": "/36LSdYlmaqidx2TYZbaNTxPlcpm.jpg", "order": 16}, {"name": "Michael Ensign", "character": "Newscaster", "id": 1080265, "credit_id": "52fe4322c3a36847f803ce6d", "cast_id": 29, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 17}, {"name": "John Stuart", "character": "10th Elder", "id": 30709, "credit_id": "53285a1c9251411a1700213f", "cast_id": 32, "profile_path": "/zZzUldf0EqwbrNVHx9anw7YInHp.jpg", "order": 18}, {"name": "Noel Neill", "character": "Ella Lane (uncredited)", "id": 243805, "credit_id": "552e611992514103ce006f77", "cast_id": 44, "profile_path": "/zYp8iKSPrHIZb7bt76hxZqgSXm.jpg", "order": 19}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4322c3a36847f803ce09", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.7, "runtime": 143}, "1927": {"poster_path": "/ogCQV6mnLtCJuiiHtMB83jvSRfY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245360480, "overview": "Bruce Banner, a genetics researcher with a tragic past, suffers an accident that causes him to transform into a raging green monster when he gets angry", "video": false, "id": 1927, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Hulk", "tagline": "Unleash the hero within", "vote_count": 429, "homepage": "http://www.universalstudiosentertainment.com/hulk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0286716", "adult": false, "backdrop_path": "/vwqnLTtNZCAo41nNOuX0He6bwKs.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Marvel Entertainment, LLC", "id": 325}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "Good Machine", "id": 10565}], "release_date": "2003-06-20", "popularity": 0.961096562909356, "original_title": "Hulk", "budget": 137000000, "cast": [{"name": "Eric Bana", "character": "Bruce Banner", "id": 8783, "credit_id": "52fe4323c3a36847f803d073", "cast_id": 7, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Betty Ross", "id": 6161, "credit_id": "52fe4323c3a36847f803d077", "cast_id": 8, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Sam Elliott", "character": "Ross", "id": 16431, "credit_id": "52fe4323c3a36847f803d07b", "cast_id": 9, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 2}, {"name": "Josh Lucas", "character": "Talbot", "id": 6164, "credit_id": "52fe4323c3a36847f803d083", "cast_id": 11, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 3}, {"name": "Nick Nolte", "character": "Father", "id": 1733, "credit_id": "52fe4323c3a36847f803d07f", "cast_id": 10, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 4}, {"name": "Paul Kersey", "character": "Young David Banner", "id": 20048, "credit_id": "52fe4323c3a36847f803d08f", "cast_id": 14, "profile_path": "/5q5DcZArw1wcnqGGpupbooiCGb2.jpg", "order": 5}, {"name": "Cara Buono", "character": "Edith Banner", "id": 20047, "credit_id": "52fe4323c3a36847f803d08b", "cast_id": 13, "profile_path": "/bqweBHdazr7dQj5Ml1ylnCqqxUE.jpg", "order": 6}, {"name": "Stan Lee", "character": "Security Guard", "id": 7624, "credit_id": "52fe4323c3a36847f803d087", "cast_id": 12, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 7}, {"name": "Todd Tesen", "character": "Young Ross", "id": 155873, "credit_id": "52fe4323c3a36847f803d0a5", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Celia Weston", "character": "Mrs. Krensler", "id": 1989, "credit_id": "52fe4323c3a36847f803d0a9", "cast_id": 19, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 9}, {"name": "Mike Erwin", "character": "Teenage Bruce Banner", "id": 164618, "credit_id": "52fe4323c3a36847f803d0ad", "cast_id": 20, "profile_path": "/4Kbevae3JcKv0bPJzL6DxkPX2rP.jpg", "order": 10}, {"name": "Lou Ferrigno", "character": "Security Guard", "id": 19137, "credit_id": "52fe4323c3a36847f803d0b1", "cast_id": 21, "profile_path": "/ilrREpFP1eBQZBwRf8U33IRHmSj.jpg", "order": 11}, {"name": "Regi Davis", "character": "Security Guard", "id": 169615, "credit_id": "52fe4323c3a36847f803d0b5", "cast_id": 22, "profile_path": "/nnJEbzJiSd2IQF12jMS9vPBl1qX.jpg", "order": 12}, {"name": "Craig Damon", "character": "Security Guard", "id": 177018, "credit_id": "52fe4323c3a36847f803d0b9", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d069", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 5.2, "runtime": 138}, "75656": {"poster_path": "/hGsi9bPp4PEQANCUxswQDLymJag.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117698894, "overview": "An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.", "video": false, "id": 75656, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Now You See Me", "tagline": "4 amazing magicians. 3 impossible heists. 1 billion dollars. This is no illusion.", "vote_count": 1743, "homepage": "http://www.nowyouseememovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1670345", "adult": false, "backdrop_path": "/9wbXqcx6rHhoZ9Esp03C7amQzom.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "K/O Paper Products", "id": 7296}, {"name": "SOIXAN7E QUIN5E", "id": 23271}, {"name": "See Me Louisiana", "id": 23272}], "release_date": "2013-05-31", "popularity": 2.16368850714408, "original_title": "Now You See Me", "budget": 75000000, "cast": [{"name": "Jesse Eisenberg", "character": "J. Daniel Atlas", "id": 44735, "credit_id": "52fe490bc3a368484e117c75", "cast_id": 3, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Woody Harrelson", "character": "Merritt McKinney", "id": 57755, "credit_id": "52fe490bc3a368484e117c71", "cast_id": 2, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 1}, {"name": "Dave Franco", "character": "Jack Wilder", "id": 54697, "credit_id": "52fe490bc3a368484e117c93", "cast_id": 11, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 2}, {"name": "Isla Fisher", "character": "Henley Reeves", "id": 52848, "credit_id": "52fe490bc3a368484e117c81", "cast_id": 7, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 3}, {"name": "Mark Ruffalo", "character": "Dylan Rhodes", "id": 103, "credit_id": "52fe490bc3a368484e117c7d", "cast_id": 6, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 4}, {"name": "M\u00e9lanie Laurent", "character": "Alma Dray", "id": 19119, "credit_id": "52fe490bc3a368484e117c85", "cast_id": 8, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 5}, {"name": "Morgan Freeman", "character": "Thaddeus Bradley", "id": 192, "credit_id": "52fe490bc3a368484e117c79", "cast_id": 5, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 6}, {"name": "Michael Caine", "character": "Arthur Tressler", "id": 3895, "credit_id": "52fe490bc3a368484e117c89", "cast_id": 9, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 7}, {"name": "Michael Kelly", "character": "Agent Fuller", "id": 50217, "credit_id": "52fe490bc3a368484e117cb5", "cast_id": 17, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 8}, {"name": "Common", "character": "Evans", "id": 4238, "credit_id": "52fe490bc3a368484e117cb9", "cast_id": 18, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 9}, {"name": "David Warshofsky", "character": "Cowan", "id": 37204, "credit_id": "52fe490bc3a368484e117cbd", "cast_id": 19, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 10}, {"name": "Jos\u00e9 Garcia", "character": "Etienne Forcier", "id": 24895, "credit_id": "52fe490bc3a368484e117cc1", "cast_id": 20, "profile_path": "/9OlwiWiBgxCGd85HcxuljDXZn3U.jpg", "order": 11}, {"name": "Jessica Lindsey", "character": "Hermia", "id": 1178995, "credit_id": "52fe490bc3a368484e117cc5", "cast_id": 21, "profile_path": "/1HtWGanA2Duom5aWKA1P19Y5SOQ.jpg", "order": 12}, {"name": "Caitriona Balfe", "character": "Jasmine Trassler", "id": 147056, "credit_id": "52fe490bc3a368484e117cc9", "cast_id": 22, "profile_path": "/nZJyyXOKB5JtEArihhzcedRkLQ7.jpg", "order": 13}, {"name": "Stephanie Honor\u00e9", "character": "Atlas Groupie", "id": 94427, "credit_id": "52fe490bc3a368484e117ccd", "cast_id": 23, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 14}, {"name": "Elias Koteas", "character": "Lionel Shrike", "id": 13550, "credit_id": "52fe490bc3a368484e117d2b", "cast_id": 39, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 15}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe490bc3a368484e117c6d", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 7.2, "runtime": 115}, "26505": {"poster_path": "/m4PuHaEIT5teXSKu6Mdv7Gl9ORy.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Arthur answers a distress call from Princess Selenia, who is menaced by the nefarious Maltazard.", "video": false, "id": 26505, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Arthur and the Revenge of Maltazard", "tagline": "", "vote_count": 56, "homepage": "http://www.arthuretlesminimoys.com/arthur2/", "belongs_to_collection": {"backdrop_path": "/e8Q363orc1wi02TSSoDDlil2qXh.jpg", "poster_path": "/lpKNbnUpP0h0cnVwC1LaE9YJB3U.jpg", "id": 85817, "name": "Arthur and the Invisibles Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0940657", "adult": false, "backdrop_path": "/eO2SzacumPHe7MZNOXfbGGumFfd.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Apipoula\u00ef", "id": 1076}, {"name": "Avalanche Productions", "id": 2525}, {"name": "Canal+", "id": 5358}, {"name": "Sofica Europacorp", "id": 854}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2009-11-26", "popularity": 0.394993703014222, "original_title": "Arthur et la vengeance de Maltazard", "budget": 87000000, "cast": [{"name": "Selena Gomez", "character": "Selenia", "id": 77948, "credit_id": "52fe4507c3a368484e044545", "cast_id": 8, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Freddie Highmore", "character": "Arthur", "id": 1281, "credit_id": "52fe4507c3a368484e044549", "cast_id": 9, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 1}, {"name": "Fergie", "character": "Replay", "id": 20497, "credit_id": "52fe4507c3a368484e04454d", "cast_id": 10, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 2}, {"name": "Jimmy Fallon", "character": "Prince Betameche", "id": 11669, "credit_id": "52fe4507c3a368484e044551", "cast_id": 11, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 3}, {"name": "Mia Farrow", "character": "Granny", "id": 12021, "credit_id": "52fe4507c3a368484e044555", "cast_id": 12, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 4}, {"name": "Snoop Dogg", "character": "Max", "id": 19767, "credit_id": "52fe4507c3a368484e044559", "cast_id": 13, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 5}, {"name": "Logan Miller", "character": "Jake", "id": 116088, "credit_id": "52fe4507c3a368484e04455d", "cast_id": 14, "profile_path": "/4KGktClGusmqFr1b193Fair5rlK.jpg", "order": 6}, {"name": "Robert Stanton", "character": "Armand", "id": 53963, "credit_id": "52fe4507c3a368484e044561", "cast_id": 15, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 7}, {"name": "Omar Sy", "character": "Snow", "id": 78423, "credit_id": "52fe4507c3a368484e04458f", "cast_id": 23, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 8}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4507c3a368484e044523", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 5.3, "runtime": 93}, "10122": {"poster_path": "/69kD2bpkwSadpN30JB9vJrlz8HW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18564613, "overview": "In Flight of the Navigator, 12-year old David Freeman goes missing in 1978, only to reappear in 1986. In the eight years that have passed, he hasn't aged. It's no coincidence that at the time he comes back, a flying saucer is found. David feels inexplicably connected to the fantastic machine...", "video": false, "id": 10122, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Flight of the Navigator", "tagline": "Come along on the greatest adventure of the summer!", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091059", "adult": false, "backdrop_path": "/frQ7WuW595dispaIW66SYmzKasG.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Producers Sales Organization", "id": 1256}, {"name": "New Star Entertainment", "id": 1340}], "release_date": "1986-07-29", "popularity": 0.579927170390149, "original_title": "Flight of the Navigator", "budget": 0, "cast": [{"name": "Joey Cramer", "character": "David Scott Freeman", "id": 63871, "credit_id": "52fe432d9251416c75006739", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Paul Reubens", "character": "Max (voice) (as Paul Mall)", "id": 5129, "credit_id": "52fe432d9251416c7500673d", "cast_id": 2, "profile_path": "/3g77Qz12qjCpVGfBP2kOPx4rRai.jpg", "order": 1}, {"name": "Matt Adler", "character": "Jeff (16 years)", "id": 92623, "credit_id": "52fe432d9251416c7500679b", "cast_id": 19, "profile_path": "/hklcdXdKkvW15x4g1XrrdrDiLGX.jpg", "order": 2}, {"name": "Veronica Cartwright", "character": "Helen Freeman", "id": 5047, "credit_id": "52fe432d9251416c75006741", "cast_id": 3, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 3}, {"name": "Cliff DeYoung", "character": "Bill Freeman", "id": 44301, "credit_id": "52fe432d9251416c75006745", "cast_id": 4, "profile_path": "/ut5RFMqeVDxyTJ5YP2J9DbzEh4V.jpg", "order": 4}, {"name": "Sarah Jessica Parker", "character": "Carolyn McAdams", "id": 520, "credit_id": "52fe432d9251416c75006749", "cast_id": 5, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 5}, {"name": "Robert Small", "character": "Troy", "id": 1116654, "credit_id": "52fe432d9251416c7500679f", "cast_id": 20, "profile_path": "/uNFXBnlUH89HcG0FTDg70kCWH4q.jpg", "order": 6}], "directors": [{"name": "Randal Kleiser", "department": "Directing", "job": "Director", "credit_id": "52fe432d9251416c7500674f", "profile_path": "/lK8FzeNDwD9VmNvKPRGd3dFVzJy.jpg", "id": 8876}], "vote_average": 6.9, "runtime": 90}, "50839": {"poster_path": "/h4Cv588VpNpO9twXsdorhz6K8t1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5148397, "overview": "A thriller that revolves around the key people at a investment bank over a 24-hour period during the early stages of the financial crisis.", "video": false, "id": 50839, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Margin Call", "tagline": "Be first. Be smarter. Or cheat.", "vote_count": 137, "homepage": "http://www.margincallmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1615147", "adult": false, "backdrop_path": "/rPVPJga5BTKK1cpeaChJeUh5ZMK.jpg", "production_companies": [{"name": "Untitled Entertainment", "id": 46225}, {"name": "Before the Door Pictures", "id": 14861}, {"name": "Benaroya Pictures", "id": 6692}, {"name": "Washington Square Films", "id": 14862}], "release_date": "2011-09-28", "popularity": 0.67086372106163, "original_title": "Margin Call", "budget": 3395000, "cast": [{"name": "Kevin Spacey", "character": "Sam Rogers", "id": 1979, "credit_id": "52fe47d8c3a36847f814b741", "cast_id": 2, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Will Emerson", "id": 6162, "credit_id": "52fe47d8c3a36847f814b745", "cast_id": 3, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Jeremy Irons", "character": "John Tuld", "id": 16940, "credit_id": "52fe47d8c3a36847f814b749", "cast_id": 4, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 2}, {"name": "Zachary Quinto", "character": "Peter Sullivan", "id": 17306, "credit_id": "52fe47d8c3a36847f814b74d", "cast_id": 5, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 3}, {"name": "Ashley Williams", "character": "Heather Burke", "id": 122888, "credit_id": "52fe47d8c3a36847f814b751", "cast_id": 6, "profile_path": "/fq4hNuLVpsbrnzjPCtoFIcf3nXN.jpg", "order": 4}, {"name": "Demi Moore", "character": "Sarah Robertson", "id": 3416, "credit_id": "52fe47d8c3a36847f814b761", "cast_id": 9, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 5}, {"name": "Simon Baker", "character": "Jared Cohen", "id": 1284159, "credit_id": "52fe47d9c3a36847f814b801", "cast_id": 39, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 6}, {"name": "Penn Badgley", "character": "Seth Bregman", "id": 110927, "credit_id": "52fe47d8c3a36847f814b765", "cast_id": 11, "profile_path": "/key2cKLsZYLyV03b8NMdmvJjBe9.jpg", "order": 7}, {"name": "Mary McDonnell", "character": "Mary Rogers", "id": 1581, "credit_id": "52fe47d9c3a36847f814b7ed", "cast_id": 34, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 8}, {"name": "Stanley Tucci", "character": "Eric Dale", "id": 2283, "credit_id": "52fe47d9c3a36847f814b7f1", "cast_id": 35, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 9}, {"name": "Aasif Mandvi", "character": "Ramesh Shah", "id": 20644, "credit_id": "52fe47d9c3a36847f814b7f5", "cast_id": 36, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 10}, {"name": "Susan Blackwell", "character": "Lauren Bratberg", "id": 163664, "credit_id": "52fe47d9c3a36847f814b7f9", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Maria Dizzia", "character": "Executive Assistant", "id": 205797, "credit_id": "52fe47d9c3a36847f814b7fd", "cast_id": 38, "profile_path": "/ouZrbDHEIMg2nLxd7RA2EYmecvO.jpg", "order": 12}], "directors": [{"name": "J.C. Chandor ", "department": "Directing", "job": "Director", "credit_id": "52fe47d8c3a36847f814b757", "profile_path": "/mvNMQ2c23j6mVG0jqplWRneHLmU.jpg", "id": 556172}], "vote_average": 6.4, "runtime": 107}, "1933": {"poster_path": "/s1AgCknn4t2OUPZynuGsi4yNFfq.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209947037, "overview": "Grace is a religious woman who lives in an old house kept dark because her two children, Anne and Nicholas, have a rare sensitivity to light. When the family begins to suspect the house is haunted, Grace fights to protect her children at any cost in the face of strange events and disturbing visions.", "video": false, "id": 1933, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Others", "tagline": "Sooner or later she'll see them, then everything will be different.", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0230600", "adult": false, "backdrop_path": "/4mb6yCuf9Gl05FVzT25GpAFHVRj.jpg", "production_companies": [{"name": "Cruise/Wagner Productions", "id": 44}, {"name": "Las Producciones del Escorpi\u00f3n S.L.", "id": 18332}, {"name": "Sociedad General de Cine (SOGECINE) S.A.", "id": 11954}, {"name": "Dimension Films", "id": 7405}], "release_date": "2001-08-10", "popularity": 0.741613660539544, "original_title": "The Others", "budget": 17000000, "cast": [{"name": "Nicole Kidman", "character": "Grace Stewart", "id": 2227, "credit_id": "52fe4323c3a36847f803d343", "cast_id": 8, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Christopher Eccleston", "character": "Charles Stewart", "id": 2040, "credit_id": "52fe4323c3a36847f803d347", "cast_id": 10, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 1}, {"name": "Alakina Mann", "character": "Anne Stewart", "id": 20051, "credit_id": "52fe4323c3a36847f803d34b", "cast_id": 11, "profile_path": "/u6Zm6crP9femMxdBW0KUQpLELTJ.jpg", "order": 2}, {"name": "James Bentley", "character": "Nicholas Stewart", "id": 20052, "credit_id": "52fe4323c3a36847f803d34f", "cast_id": 12, "profile_path": "/aRJ5RbPTkuCarO7U6mBuQsX57fJ.jpg", "order": 3}, {"name": "Eric Sykes", "character": "Mr. Edmund Tuttle", "id": 20053, "credit_id": "52fe4323c3a36847f803d353", "cast_id": 13, "profile_path": "/yI7Z5BfaYmbFyPUR3idA5DCXOQY.jpg", "order": 4}, {"name": "Elaine Cassidy", "character": "Lydia", "id": 20054, "credit_id": "52fe4323c3a36847f803d357", "cast_id": 14, "profile_path": "/k6Nlte5S62h2A7sDSA2h91Uq23V.jpg", "order": 5}, {"name": "Ren\u00e9e Asherson", "character": "Old Lady", "id": 20055, "credit_id": "52fe4323c3a36847f803d35b", "cast_id": 15, "profile_path": "/syUX5Gu5TnMMHxDlgl6pqymuK5Y.jpg", "order": 6}, {"name": "Keith Allen", "character": "Mr. Marlish", "id": 20056, "credit_id": "52fe4323c3a36847f803d35f", "cast_id": 16, "profile_path": "/48DcW1C0dgKCWpbnl37Kg1fhvGO.jpg", "order": 7}, {"name": "Michelle Fairley", "character": "Mrs. Marlish", "id": 20057, "credit_id": "52fe4323c3a36847f803d363", "cast_id": 17, "profile_path": "/u7EDh4RuXnK5PykiNAT3oly6sf9.jpg", "order": 8}, {"name": "Alexander Vince", "character": "Victor Marlish", "id": 20058, "credit_id": "52fe4323c3a36847f803d367", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Gordon Reid", "character": "Assistant", "id": 20059, "credit_id": "52fe4323c3a36847f803d36b", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Ricardo L\u00f3pez", "character": "Second Assistant", "id": 20060, "credit_id": "52fe4323c3a36847f803d36f", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Fionnula Flanagan", "character": "Mrs. Bertha Mills", "id": 58068, "credit_id": "52fe4323c3a36847f803d373", "cast_id": 21, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 12}], "directors": [{"name": "Alejandro Amen\u00e1bar", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d321", "profile_path": "/uYDLRrpMM4Q7xf2LSCsMOVsy58Q.jpg", "id": 19840}], "vote_average": 6.9, "runtime": 101}, "1934": {"poster_path": "/sAN5jedynbs3pa3ww0UXQ1k0lRF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 289317794, "overview": "Young Shakespeare is forced to stage his latest comedy, \"Romeo and Ethel, the Pirate's Daughter,\" before it's even written. When a lovely noblewoman auditions for a role, they fall into forbidden love -- and his play finds a new life (and title). As their relationship progresses, Shakespeare's comedy soon transforms into tragedy.", "video": false, "id": 1934, "genres": [{"id": 36, "name": "History"}], "title": "Shakespeare in Love", "tagline": "Love is the only inspiration.", "vote_count": 168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138097", "adult": false, "backdrop_path": "/qvhpBNfb53wLnEbVnmC5GNGFRHO.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Miramax Films", "id": 14}, {"name": "Bedford Falls Productions", "id": 348}], "release_date": "1998-12-11", "popularity": 0.803394284145674, "original_title": "Shakespeare in Love", "budget": 25000000, "cast": [{"name": "Joseph Fiennes", "character": "Will Shakespeare", "id": 12763, "credit_id": "52fe4323c3a36847f803d455", "cast_id": 18, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Viola De Lesseps", "id": 12052, "credit_id": "52fe4323c3a36847f803d46d", "cast_id": 25, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Geoffrey Rush", "character": "Philip Henslowe", "id": 118, "credit_id": "52fe4323c3a36847f803d459", "cast_id": 19, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Hugh Fennyman", "id": 207, "credit_id": "52fe4323c3a36847f803d45d", "cast_id": 20, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Judi Dench", "character": "Queen Elizabeth", "id": 5309, "credit_id": "52fe4323c3a36847f803d461", "cast_id": 21, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Imelda Staunton", "character": "Nurse", "id": 11356, "credit_id": "52fe4323c3a36847f803d465", "cast_id": 22, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 5}, {"name": "Colin Firth", "character": "Lord Wessex", "id": 5472, "credit_id": "52fe4323c3a36847f803d469", "cast_id": 23, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 6}, {"name": "Ben Affleck", "character": "Ned Alleyn", "id": 880, "credit_id": "52fe4323c3a36847f803d475", "cast_id": 27, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 7}, {"name": "Simon Callow", "character": "Tilney", "id": 4001, "credit_id": "52fe4323c3a36847f803d471", "cast_id": 26, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 8}, {"name": "Steven Beard", "character": "Makepeace", "id": 20069, "credit_id": "52fe4323c3a36847f803d479", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Jim Carter", "character": "Ralph Bashford", "id": 20070, "credit_id": "52fe4323c3a36847f803d47d", "cast_id": 31, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 10}, {"name": "Rupert Everett", "character": "Christopher Marlowe", "id": 4757, "credit_id": "52fe4323c3a36847f803d481", "cast_id": 32, "profile_path": "/jGTaV5htTRo2T0aeM2eoHZcpLG4.jpg", "order": 11}, {"name": "Martin Clunes", "character": "Richard Burbage", "id": 22159, "credit_id": "52fe4323c3a36847f803d485", "cast_id": 33, "profile_path": "/ymns20R5QMrDQHbXi5MRdZl5P5L.jpg", "order": 12}, {"name": "Tim McMullan", "character": "Frees", "id": 15740, "credit_id": "52fe4323c3a36847f803d489", "cast_id": 34, "profile_path": "/8se9JhmD9LE6tiibkGiV51M8rdD.jpg", "order": 13}, {"name": "Joe Roberts", "character": "John Webster", "id": 1125580, "credit_id": "52fe4323c3a36847f803d48d", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "John Madden", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d3f1", "profile_path": "/8HPERxuUmp44PJcwbweQfICo149.jpg", "id": 18844}], "vote_average": 6.7, "runtime": 122}, "18320": {"poster_path": "/kNMUKWshK6qVA9fXGBRJaUSRNoz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26324963, "overview": "A dramatization of the turbulent first years of Queen Victoria's rule, and her enduring romance with Prince Albert.", "video": false, "id": 18320, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "The Young Victoria", "tagline": "Love rules all", "vote_count": 60, "homepage": "http://www.theyoungvictoriamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0962736", "adult": false, "backdrop_path": "/aJEystDjSReWXYuac5jDquT7UJ8.jpg", "production_companies": [{"name": "GK Films", "id": 3281}], "release_date": "2009-03-04", "popularity": 0.190094452862214, "original_title": "The Young Victoria", "budget": 45000000, "cast": [{"name": "Emily Blunt", "character": "Queen Victoria", "id": 5081, "credit_id": "53b52211c3a3685eb7000bc3", "cast_id": 27, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Jim Broadbent", "character": "King William", "id": 388, "credit_id": "52fe47739251416c75099dc7", "cast_id": 2, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 1}, {"name": "Mark Strong", "character": "Sir John Conroy", "id": 2983, "credit_id": "52fe47739251416c75099dcb", "cast_id": 3, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Lord Melbourne", "id": 6162, "credit_id": "52fe47739251416c75099dcf", "cast_id": 4, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Miranda Richardson", "character": "Duchess of Kent", "id": 8436, "credit_id": "52fe47749251416c75099dd3", "cast_id": 5, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 4}, {"name": "Rupert Friend", "character": "Prince Albert", "id": 36669, "credit_id": "52fe47749251416c75099dd7", "cast_id": 6, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 5}, {"name": "Jeanette Hain", "character": "Baroness Lehzen", "id": 49018, "credit_id": "52fe47749251416c75099e17", "cast_id": 17, "profile_path": "/icET9X1pV73INdR7YYZcYXJeCDU.jpg", "order": 6}], "directors": [{"name": "Jean-Marc Vall\u00e9e", "department": "Directing", "job": "Director", "credit_id": "52fe47749251416c75099ddd", "profile_path": "/zFb4XBBx3TYSeeTXYv6GkAKYYcK.jpg", "id": 69371}], "vote_average": 6.9, "runtime": 105}, "9880": {"poster_path": "/A3MEJcxjr0iOjTMsQSCNTc1B4E2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 165335153, "overview": "A socially awkward but very bright 15-year-old girl being raised by a single mom discovers that she is the princess of a small European country because of the recent death of her long-absent father, who, unknown to her, was the crown prince of Genovia. She must make a choice between continuing the life of a San Francisco teen or stepping up to the throne.", "video": false, "id": 9880, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Princess Diaries", "tagline": "She rocks. She rules. She reigns.", "vote_count": 185, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zSEtYD77pKRJlUPx34BJgUG9v1c.jpg", "poster_path": "/wt5AMbxPTS4Kfjx7Fgm149qPfZl.jpg", "id": 107674, "name": "The Princess Diaries Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0247638", "adult": false, "backdrop_path": "/ncERp0UvXuImUeJcf27kEANcf1r.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2001-08-03", "popularity": 1.58977474985114, "original_title": "The Princess Diaries", "budget": 37000000, "cast": [{"name": "Anne Hathaway", "character": "Amelia \"Mia\" Thermopolis", "id": 1813, "credit_id": "52fe4540c3a36847f80c3a09", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Julie Andrews", "character": "K\u00f6nigin Clarisse Renaldi", "id": 5823, "credit_id": "52fe4540c3a36847f80c3a19", "cast_id": 15, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 1}, {"name": "Heather Matarazzo", "character": "Lilly Moscovitz", "id": 33656, "credit_id": "52fe4540c3a36847f80c3a0d", "cast_id": 12, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 2}, {"name": "Robert Schwartzman", "character": "Michael Moscovitz", "id": 17242, "credit_id": "52fe4540c3a36847f80c3a11", "cast_id": 13, "profile_path": "/dBsIWM7nIvdUT8MuGzUVcCr8X8c.jpg", "order": 3}, {"name": "H\u00e9ctor Elizondo", "character": "Joe", "id": 1210, "credit_id": "52fe4540c3a36847f80c3a15", "cast_id": 14, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 4}, {"name": "Mandy Moore", "character": "Lana Thomas", "id": 16855, "credit_id": "52fe4540c3a36847f80c3a1d", "cast_id": 16, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 5}, {"name": "Caroline Goodall", "character": "Helen Thermopolis", "id": 6692, "credit_id": "52fe4540c3a36847f80c3a21", "cast_id": 17, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 6}, {"name": "Erik von Detten", "character": "Josh Bryant", "id": 12901, "credit_id": "52fe4540c3a36847f80c3a25", "cast_id": 18, "profile_path": "/cUsIO0mejQ3WLRH8Vgsaya5bPd0.jpg", "order": 7}, {"name": "Sandra Oh", "character": "Vice Principal Gupta", "id": 25540, "credit_id": "52fe4540c3a36847f80c3a29", "cast_id": 19, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 8}, {"name": "Patrick John Flueger", "character": "Jeremiah Hart", "id": 115730, "credit_id": "52fe4540c3a36847f80c3a2d", "cast_id": 20, "profile_path": "/xMGamAcbjj3m8dvl3do0yQNYXg7.jpg", "order": 9}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4540c3a36847f80c39d5", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.9, "runtime": 115}, "10131": {"poster_path": "/6KEBq1HUCKIZWekn35HwNj1VBJl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72500000, "overview": "Dream demon Freddy Krueger is resurrected from his apparent demise, and rapidly tracks down and kills the remainder of the Elm Street kids. However, Kristen, who can draw others into her dreams, wills her special ability to her friend Alice. Alice soon realizes that Freddy is taking advantage of that unknown power to pull a new group of children into his foul domain.", "video": false, "id": 10131, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street 4: The Dream Master", "tagline": "Terror beyond your wildest dreams.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095742", "adult": false, "backdrop_path": "/4180IbpeK3uYWEbKrk1PqNRtDIV.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1988-08-19", "popularity": 0.806925173246861, "original_title": "A Nightmare on Elm Street 4: The Dream Master", "budget": 7000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe432f9251416c75006cf7", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Tuesday Knight", "character": "Kristen Parker", "id": 63914, "credit_id": "52fe432f9251416c75006cfb", "cast_id": 2, "profile_path": "/vQNxbldn4g825XTJqqKqXMWF8xC.jpg", "order": 1}, {"name": "Ken Sagoes", "character": "Roland Kincaid", "id": 63915, "credit_id": "52fe432f9251416c75006cff", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Rodney Eastman", "character": "Joey Crusel", "id": 63916, "credit_id": "52fe432f9251416c75006d03", "cast_id": 4, "profile_path": "/mxA0J0Ky7XZsn4yXWj5koXTkYBq.jpg", "order": 3}, {"name": "Lisa Wilcox", "character": "Alice Johnson", "id": 63917, "credit_id": "52fe432f9251416c75006d07", "cast_id": 5, "profile_path": "/hqKyRn2vl3zYmFPyS0J1Y4OpHQ9.jpg", "order": 4}, {"name": "Andras Jones", "character": "Rick Johnson", "id": 63918, "credit_id": "52fe432f9251416c75006d0b", "cast_id": 6, "profile_path": "/phBnggJDOgrMOp22BzZPduZeL3v.jpg", "order": 5}, {"name": "Danny Hassel", "character": "Dan Jordan", "id": 104275, "credit_id": "52fe43309251416c75006d69", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Brooke Theiss", "character": "Debbie Stevens", "id": 104276, "credit_id": "52fe43309251416c75006d6d", "cast_id": 23, "profile_path": "/xO8OdGBNe94x6L9RqrCZKHfTKOq.jpg", "order": 7}, {"name": "Toy Newkirk", "character": "Sheila Kopecky", "id": 104277, "credit_id": "52fe43309251416c75006d71", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Nicholas Mele", "character": "Dennis Johnson", "id": 87112, "credit_id": "52fe43309251416c75006d75", "cast_id": 25, "profile_path": "/wI1YLddYXotk9JZiFr2aj3ShjoJ.jpg", "order": 9}, {"name": "Brooke Bundy", "character": "Elaine Parker", "id": 72157, "credit_id": "52fe43309251416c75006d79", "cast_id": 26, "profile_path": "/hbmv1jHZNNb7AmpdW8oaMIk3jXs.jpg", "order": 10}, {"name": "Hope Marie Carlton", "character": "Pin Up Girl", "id": 98944, "credit_id": "52fe43309251416c75006d7d", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Mickey Yablans", "character": "Buddy in Locker Room", "id": 15510, "credit_id": "52fe43309251416c75006d81", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Linnea Quigley", "character": "Soul from Freddy's Chest", "id": 97619, "credit_id": "52fe43309251416c75006d85", "cast_id": 29, "profile_path": "/nvOxpSqSQWwS5rUUMCGp30FcLCF.jpg", "order": 13}, {"name": "Duane Davis", "character": "Jock", "id": 62032, "credit_id": "52fe43309251416c75006d89", "cast_id": 30, "profile_path": "/t9tcFEEbffaD64VZdsc0qwnPnr9.jpg", "order": 14}, {"name": "Robert Shaye", "character": "Lecturer", "id": 13663, "credit_id": "52fe43309251416c75006d8d", "cast_id": 31, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 15}, {"name": "Jacquelyn Masche", "character": "Mrs. Crusel", "id": 553742, "credit_id": "52fe43309251416c75006d91", "cast_id": 32, "profile_path": "/yVNNMFxrtmaLt6oY9XE2gse7uLi.jpg", "order": 16}, {"name": "Richard Garrison", "character": "Doctor", "id": 164629, "credit_id": "52fe43309251416c75006d95", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "John Beckman", "character": "Coach", "id": 553743, "credit_id": "52fe43309251416c75006d99", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Kristen Clayton", "character": "Alice (Girl in Freddy's house)", "id": 552162, "credit_id": "52fe43309251416c75006d9d", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Jody Montana", "character": "Buddy in Diner", "id": 191521, "credit_id": "52fe43309251416c75006da1", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Cheryl Richardson", "character": "Girl", "id": 553744, "credit_id": "52fe43309251416c75006da5", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Joie Magidow", "character": "Physics Teacher", "id": 170020, "credit_id": "52fe43309251416c75006da9", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Joanna Lipari", "character": "Nurse", "id": 175806, "credit_id": "52fe43309251416c75006dad", "cast_id": 39, "profile_path": "/h1L7z7Tnqj7uZUtGu6OAzk4INEx.jpg", "order": 23}, {"name": "Wanda Bursey", "character": "Friend in Mourning", "id": 553745, "credit_id": "52fe43309251416c75006db1", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Kisha Brackel", "character": "Friend", "id": 553746, "credit_id": "52fe43309251416c75006db5", "cast_id": 41, "profile_path": null, "order": 25}, {"name": "Pat O'Neal", "character": "Student", "id": 170165, "credit_id": "52fe43309251416c75006db9", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Robert Shaye", "character": "Lecturer (as L.E. Moko)", "id": 13663, "credit_id": "52fe43309251416c75006dbd", "cast_id": 44, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 27}, {"name": "Renny Harlin", "character": "Student in Classroom (uncredited)", "id": 16938, "credit_id": "52fe43309251416c75006dc1", "cast_id": 45, "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "order": 28}, {"name": "Jeff Levine", "character": "Paramedic", "id": 553749, "credit_id": "52fe43309251416c75006dc5", "cast_id": 46, "profile_path": null, "order": 29}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe43309251416c75006d11", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.0, "runtime": 99}, "10136": {"poster_path": "/auDjIWIUob3yKfL78SthUl4Cy4z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 79817939, "overview": "A detective specializing in missing children is on a madcap mission to save a youth with mystical powers who's been abducted by an evil cult. He battles a band of super-nasties, scrambles through a booby-trapped chamber of horrors and traverses Tibet to obtain a sacred dagger.", "video": false, "id": 10136, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "The Golden Child", "tagline": "Eddie Murphy is the chosen one.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091129", "adult": false, "backdrop_path": "/on5JDJRFWBeZNh8JZCAlpiqXHQR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1986-12-12", "popularity": 0.633606423325123, "original_title": "The Golden Child", "budget": 25000000, "cast": [{"name": "Eddie Murphy", "character": "Chandler Jarrell", "id": 776, "credit_id": "52fe43319251416c75007111", "cast_id": 11, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Charles Dance", "character": "Sardo Numspa", "id": 4391, "credit_id": "52fe43319251416c75007115", "cast_id": 12, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 1}, {"name": "Charlotte Lewis", "character": "Kee Nang", "id": 42558, "credit_id": "52fe43319251416c75007119", "cast_id": 13, "profile_path": "/iONeOb1P7XF8dMCXv9GgN3IUCWe.jpg", "order": 2}, {"name": "Victor Wong", "character": "The Old Man", "id": 11395, "credit_id": "52fe43319251416c7500711d", "cast_id": 14, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 3}, {"name": "Peter Kwong", "character": "Tommy Tong", "id": 97695, "credit_id": "52fe43319251416c75007121", "cast_id": 15, "profile_path": "/7IWgFkoeWvESueJHphnd9Q8RqzZ.jpg", "order": 4}, {"name": "Jasmine Reate", "character": "The Golden Child", "id": 559312, "credit_id": "52fe43319251416c75007125", "cast_id": 16, "profile_path": "/qgI4agu15xBlnWkZEVpZhGFsV4Y.jpg", "order": 5}, {"name": "James Hong", "character": "Doctor Hong", "id": 20904, "credit_id": "52fe43319251416c75007129", "cast_id": 17, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 6}, {"name": "Randall 'Tex' Cobb", "character": "Til", "id": 5177, "credit_id": "52fe43319251416c7500712d", "cast_id": 18, "profile_path": "/wtRQp99LgNrJ8bF9XyAzbuoekMb.jpg", "order": 7}], "directors": [{"name": "Michael Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe43319251416c750070dd", "profile_path": "/62566NoTLMRVLdoE07RG1B55zxy.jpg", "id": 12964}], "vote_average": 5.8, "runtime": 94}, "10137": {"poster_path": "/539JU71suy9q4Wd5vvkKQLl5fTC.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300135367, "overview": "The adventures of a heroic and debonair stalwart mouse named Stuart Little with human qualities, who faces some comic misadventures while searching for his lost bird friend and living with a human family as their child.", "video": false, "id": 10137, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Stuart Little", "tagline": "The Little Family Just Got Bigger", "vote_count": 236, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r74LzQMN1EdvdCvbIqHA95TvEKt.jpg", "poster_path": "/tBWjHQBmEa91Pa3R96zGdosULom.jpg", "id": 99727, "name": "Stuart Little Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0164912", "adult": false, "backdrop_path": "/bfiybUiH5TEiuk1Znn2cYG4w0YD.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Franklin%2FWaterman Productions", "id": 5554}, {"name": "Global Medien KG", "id": 5555}], "release_date": "1999-12-17", "popularity": 1.21580025589026, "original_title": "Stuart Little", "budget": 133000000, "cast": [{"name": "Michael J. Fox", "character": "Stuart Little (voice)", "id": 521, "credit_id": "52fe43329251416c75007181", "cast_id": 10, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Geena Davis", "character": "Eleanor Little", "id": 16935, "credit_id": "52fe43329251416c75007185", "cast_id": 12, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Hugh Laurie", "character": "Mr. Fredrick Little", "id": 41419, "credit_id": "52fe43329251416c75007189", "cast_id": 13, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 2}, {"name": "Jonathan Lipnicki", "character": "George Little", "id": 67778, "credit_id": "54559bc40e0a2648cb005fe5", "cast_id": 14, "profile_path": "/mHyAL6ByNXxMLzfykgLTmd4tvMr.jpg", "order": 3}, {"name": "Nathan Lane", "character": "Snowbell (voice)", "id": 78729, "credit_id": "54559bd2c3a3682be900363d", "cast_id": 15, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 4}, {"name": "Jeffrey Jones", "character": "Crenshaw Little", "id": 4004, "credit_id": "54559c0c0e0a2648c200605a", "cast_id": 16, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 5}, {"name": "Connie Ray", "character": "Tina Little", "id": 35517, "credit_id": "54559c19c3a3681473005ccc", "cast_id": 17, "profile_path": "/yJriGT19J24uceLCxVLbE70pd9p.jpg", "order": 6}, {"name": "Allyce Beasley", "character": "Beatrice Little", "id": 94008, "credit_id": "54559c29c3a3683ea0000bb2", "cast_id": 18, "profile_path": "/xXweplMpNuijsILm35IC9h6pUFy.jpg", "order": 7}, {"name": "Brian Doyle-Murray", "character": "Edgar Little", "id": 1535, "credit_id": "54559c34c3a3682be9003650", "cast_id": 19, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 8}, {"name": "Estelle Getty", "character": "Estelle Little", "id": 59956, "credit_id": "54559c500e0a2648cf006143", "cast_id": 20, "profile_path": "/3dfiQNyCietGhFRcghO5owq9YRM.jpg", "order": 9}, {"name": "Harold Gould", "character": "Spencer Little", "id": 14833, "credit_id": "54559c5d0e0a2648cb005ffe", "cast_id": 21, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 10}, {"name": "Chazz Palminteri", "character": "Smokey (voice)", "id": 9046, "credit_id": "54559c6e0e0a2648d2006248", "cast_id": 22, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 11}, {"name": "Steve Zahn", "character": "Monty (voice)", "id": 18324, "credit_id": "54559c7a0e0a2648cb006003", "cast_id": 23, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 12}, {"name": "Bruno Kirby", "character": "Reginald Stout (voice)", "id": 9257, "credit_id": "54559c89c3a3682be9003663", "cast_id": 24, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 13}, {"name": "Jennifer Tilly", "character": "Camille Stout (voice)", "id": 7906, "credit_id": "54559c970e0a2648cf006151", "cast_id": 25, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 14}, {"name": "David Alan Grier", "character": "Red (voice)", "id": 58563, "credit_id": "54559cb00e0a2648c2006080", "cast_id": 26, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 15}, {"name": "Jim Doughan", "character": "Det. Phil Allen / Lucky (voice)", "id": 1219157, "credit_id": "54559cca0e0a2648d200625f", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Julia Sweeney", "character": "Mrs. Keeper", "id": 11806, "credit_id": "54559cd50e0a2648cf00615e", "cast_id": 28, "profile_path": "/hy7ZoNmr0h3AcrBkbnTLOXZnwRd.jpg", "order": 17}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe43319251416c7500714d", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 5.6, "runtime": 84}, "10138": {"poster_path": "/1LoT5WsN4Lc1aR7A18ciSA1LoMy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 623933331, "overview": "Now that his Super Hero secret has been revealed, Tony Stark's life is more intense than ever. Everyone wants in on the Iron Man technology, whether for power or profit... But for Ivan Vanko, it's revenge! Tony must once again suit up and face his most dangerous enemy yet, but not without a few new allies of his own.", "video": false, "id": 10138, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Man 2", "tagline": "It's not the armor that makes the hero, but the man inside.", "vote_count": 3502, "homepage": "http://www.ironmanmovie.com/", "belongs_to_collection": {"backdrop_path": "/rI8zOWkRQJdlAyQ6WJOSlYK6JxZ.jpg", "poster_path": "/fbeJ7f0aD4A112Bc1tnpzyn82xO.jpg", "id": 131292, "name": "Iron Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1228705", "adult": false, "backdrop_path": "/jxdSxqAFrdioKgXwgTs5Qfbazjq.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2010-05-07", "popularity": 4.59224350378575, "original_title": "Iron Man 2", "budget": 200000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe43329251416c75007341", "cast_id": 30, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe43329251416c75007307", "cast_id": 18, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Lt. Col. James \"Rhodey\" Rhodes / War Machine", "id": 1896, "credit_id": "52fe43329251416c7500730b", "cast_id": 19, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Scarlett Johansson", "character": "Natalie Rushman / Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe43329251416c750072bf", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 3}, {"name": "Mickey Rourke", "character": "Ivan Vanko", "id": 2295, "credit_id": "52fe43329251416c750072b5", "cast_id": 3, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 4}, {"name": "Sam Rockwell", "character": "Justin Hammer", "id": 6807, "credit_id": "52fe43329251416c750072c3", "cast_id": 6, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 5}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe43329251416c750072c7", "cast_id": 7, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Agent Coulson", "id": 9048, "credit_id": "52fe43329251416c7500734d", "cast_id": 33, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "John Slattery", "character": "Howard Stark", "id": 21134, "credit_id": "52fe43329251416c75007349", "cast_id": 32, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 8}, {"name": "Garry Shandling", "character": "Senator Stern", "id": 52865, "credit_id": "52fe43329251416c75007345", "cast_id": 31, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 9}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe43329251416c75007369", "cast_id": 39, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 10}, {"name": "Kate Mara", "character": "U.S. Marshal", "id": 51072, "credit_id": "52fe43329251416c7500731b", "cast_id": 23, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 11}, {"name": "Leslie Bibb", "character": "Christine Everhart", "id": 57451, "credit_id": "52fe43329251416c75007313", "cast_id": 21, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 12}, {"name": "Jon Favreau", "character": "Happy Hogan", "id": 15277, "credit_id": "52fe43329251416c7500730f", "cast_id": 20, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 13}, {"name": "Christiane Amanpour", "character": "Herself", "id": 73641, "credit_id": "52fe43329251416c7500736d", "cast_id": 40, "profile_path": "/zJGVUg4vDWmEpQFlLMWJjWwvCVe.jpg", "order": 14}, {"name": "Philippe Bergeron", "character": "Detective Lemieux", "id": 14741, "credit_id": "52fe43329251416c75007371", "cast_id": 41, "profile_path": "/ugHYNYMyn3zrKEtQJAnuEJrLiBr.jpg", "order": 15}, {"name": "James Bethea", "character": "Security Force #1", "id": 1209714, "credit_id": "52fe43329251416c75007375", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Michael Bruno", "character": "Security Force #2", "id": 216601, "credit_id": "52fe43329251416c75007379", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Kate Clark", "character": "Expo Fan", "id": 1265248, "credit_id": "52fe43329251416c7500737d", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Luminita Docan", "character": "Russian Newscaster", "id": 1265249, "credit_id": "52fe43329251416c75007381", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Fran\u00e7ois Duhamel", "character": "French Photographer", "id": 1177850, "credit_id": "52fe43329251416c75007385", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Larry Ellison", "character": "Himself", "id": 586090, "credit_id": "52fe43329251416c75007389", "cast_id": 47, "profile_path": null, "order": 21}, {"name": "Adam Goldstein", "character": "Himself (as Adam \"DJ AM\" Goldstein)", "id": 1228219, "credit_id": "52fe43329251416c7500738d", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "Tim Guinee", "character": "Major Allen", "id": 40275, "credit_id": "52fe43329251416c75007391", "cast_id": 49, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 23}, {"name": "Eric L. Haney", "character": "General Meade", "id": 1230885, "credit_id": "52fe43329251416c75007395", "cast_id": 50, "profile_path": null, "order": 24}, {"name": "Ali Khan", "character": "10 Rings Gangster", "id": 1265250, "credit_id": "52fe43329251416c75007399", "cast_id": 51, "profile_path": null, "order": 25}, {"name": "Evgeniy Lazarev", "character": "Anton Vanko (as Eugene Lazarev)", "id": 1079976, "credit_id": "52fe43329251416c7500739d", "cast_id": 52, "profile_path": null, "order": 26}, {"name": "Stan Lee", "character": "Himself", "id": 7624, "credit_id": "52fe43329251416c750073a1", "cast_id": 53, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 27}, {"name": "Isaiah Guyman Martin IV", "character": "AV Operator", "id": 1265251, "credit_id": "52fe43329251416c750073a5", "cast_id": 54, "profile_path": null, "order": 28}, {"name": "Helena Mattsson", "character": "Rebecca", "id": 113676, "credit_id": "52fe43329251416c7500731f", "cast_id": 24, "profile_path": "/jXksDiD2NATlan04QXqKusOx5XY.jpg", "order": 29}, {"name": "Keith Middlebrook", "character": "Expo Cop", "id": 118755, "credit_id": "52fe43329251416c750073a9", "cast_id": 55, "profile_path": "/5Qg9QNOdY1bCSAuZCC94DKd5PK9.jpg", "order": 30}, {"name": "Anya Monzikova", "character": "Rebeka", "id": 210292, "credit_id": "52fe43329251416c750073ad", "cast_id": 56, "profile_path": "/zZqz0fngbrKx5Hbdtcz1SqJCNLN.jpg", "order": 31}, {"name": "Margy Moore", "character": "Bambi Arbogast", "id": 1265252, "credit_id": "52fe43329251416c750073b1", "cast_id": 57, "profile_path": null, "order": 32}, {"name": "Olivia Munn", "character": "Chess Roberts", "id": 81364, "credit_id": "52fe43329251416c75007317", "cast_id": 22, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 33}, {"name": "Elon Musk", "character": "Himself", "id": 57563, "credit_id": "52fe43329251416c750073b5", "cast_id": 58, "profile_path": null, "order": 34}, {"name": "Bill O'Reilly", "character": "Himself", "id": 95777, "credit_id": "52fe43329251416c750073b9", "cast_id": 59, "profile_path": "/pX6ft9MEU683jTv4RlMZTnx3tsJ.jpg", "order": 35}, {"name": "Alejandro Patino", "character": "Strawberry Vendor", "id": 81957, "credit_id": "52fe43329251416c750073bd", "cast_id": 60, "profile_path": "/reJQA3dXoxunkOnWIIv0QtCm0BZ.jpg", "order": 36}, {"name": "Davin Ransom", "character": "Young Tony Stark", "id": 1265795, "credit_id": "52fe43329251416c750073c1", "cast_id": 61, "profile_path": null, "order": 37}, {"name": "Karim Saleh", "character": "Guard", "id": 997632, "credit_id": "52fe43329251416c750073c5", "cast_id": 62, "profile_path": null, "order": 38}, {"name": "Brian Schaeffer", "character": "Hammer Expo Tech", "id": 1265796, "credit_id": "52fe43329251416c750073c9", "cast_id": 63, "profile_path": null, "order": 39}, {"name": "Phillipe Simon", "character": "French Waiter", "id": 201883, "credit_id": "52fe43329251416c750073cd", "cast_id": 64, "profile_path": null, "order": 40}, {"name": "Jack White", "character": "Jack", "id": 1265797, "credit_id": "52fe43329251416c750073d1", "cast_id": 65, "profile_path": null, "order": 41}, {"name": "Melanie Brown", "character": "Ironette Dancer", "id": 1265798, "credit_id": "52fe43329251416c750073d5", "cast_id": 66, "profile_path": null, "order": 42}, {"name": "Krystal Ellsworth", "character": "Ironette Dancer", "id": 1003061, "credit_id": "52fe43329251416c750073d9", "cast_id": 67, "profile_path": null, "order": 43}, {"name": "Victoria Gracie", "character": "Ironette Dancer (as Victoria Parsons)", "id": 1265799, "credit_id": "52fe43329251416c750073dd", "cast_id": 68, "profile_path": null, "order": 44}, {"name": "Gina Cantrell", "character": "Ironette Dancer", "id": 1202543, "credit_id": "52fe43329251416c750073e1", "cast_id": 69, "profile_path": null, "order": 45}, {"name": "Renee Herlocker", "character": "Ironette Dancer", "id": 1265800, "credit_id": "52fe43329251416c750073e5", "cast_id": 70, "profile_path": null, "order": 46}, {"name": "Jill Ann Pineda-Arnold", "character": "Ironette Dancer", "id": 1265801, "credit_id": "52fe43329251416c750073e9", "cast_id": 71, "profile_path": null, "order": 47}, {"name": "Sandy Colton", "character": "Ironette Dancer (as Sandra Colton)", "id": 571240, "credit_id": "52fe43329251416c750073ed", "cast_id": 72, "profile_path": null, "order": 48}, {"name": "Annika Ihnat", "character": "Ironette Dancer", "id": 1265802, "credit_id": "52fe43329251416c750073f1", "cast_id": 73, "profile_path": null, "order": 49}, {"name": "Jenny Robinson", "character": "Ironette Dancer", "id": 108725, "credit_id": "52fe43329251416c750073f5", "cast_id": 74, "profile_path": null, "order": 50}, {"name": "Lindsay Dennis", "character": "Ironette Dancer", "id": 1265803, "credit_id": "52fe43329251416c750073f9", "cast_id": 75, "profile_path": null, "order": 51}, {"name": "Jennifer D. Johnson", "character": "Ironette Dancer", "id": 995348, "credit_id": "52fe43329251416c750073fd", "cast_id": 76, "profile_path": null, "order": 52}, {"name": "Lindsay Rosenberg", "character": "Ironette Dancer", "id": 1265804, "credit_id": "52fe43329251416c75007401", "cast_id": 77, "profile_path": null, "order": 53}, {"name": "Hannah Douglass", "character": "Ironette Dancer", "id": 1265805, "credit_id": "52fe43329251416c75007405", "cast_id": 78, "profile_path": null, "order": 54}, {"name": "Brooke Long", "character": "Ironette Dancer", "id": 1265806, "credit_id": "52fe43329251416c75007409", "cast_id": 79, "profile_path": null, "order": 55}, {"name": "Rachele Brooke Smith", "character": "Ironette Dancer", "id": 83274, "credit_id": "52fe43329251416c7500740d", "cast_id": 80, "profile_path": "/fe7Xk9MmNskEDmkAcR6JRCKvZ5K.jpg", "order": 56}, {"name": "Nadine Ellis", "character": "Ironette Dancer", "id": 168925, "credit_id": "52fe43329251416c75007411", "cast_id": 81, "profile_path": "/7HxzDtQgpcWbE8BoMmTRmqZ3rny.jpg", "order": 57}, {"name": "Kylette Zamora", "character": "Ironette Dancer", "id": 1265807, "credit_id": "52fe43329251416c75007415", "cast_id": 82, "profile_path": null, "order": 58}, {"name": "Ted Alderman", "character": "News Cameraman (uncredited)", "id": 98999, "credit_id": "52fe43329251416c75007419", "cast_id": 83, "profile_path": null, "order": 59}, {"name": "Donessa Alexander", "character": "Birthday Party Guest / Expo Guest (uncredited)", "id": 1265808, "credit_id": "52fe43329251416c7500741d", "cast_id": 84, "profile_path": null, "order": 60}, {"name": "Martin Andris", "character": "Expo Greeter (uncredited)", "id": 1265809, "credit_id": "52fe43329251416c75007421", "cast_id": 85, "profile_path": null, "order": 61}, {"name": "Cassity Atkins", "character": "Expo Patron (uncredited)", "id": 1265810, "credit_id": "52fe43339251416c75007425", "cast_id": 86, "profile_path": null, "order": 62}, {"name": "Gregory Baldi", "character": "Monaco Grand Prix Restaurant Guest (uncredited)", "id": 1265811, "credit_id": "52fe43339251416c75007429", "cast_id": 87, "profile_path": null, "order": 63}, {"name": "Elya Beer", "character": "Bartender (uncredited)", "id": 1265812, "credit_id": "52fe43339251416c7500742d", "cast_id": 88, "profile_path": null, "order": 64}, {"name": "Ayelet Ben-Shahar", "character": "Model (uncredited)", "id": 1265813, "credit_id": "52fe43339251416c75007431", "cast_id": 89, "profile_path": null, "order": 65}, {"name": "Jordan Bobbitt", "character": "Little Girl at EXPO Gala (uncredited)", "id": 1265814, "credit_id": "52fe43339251416c75007435", "cast_id": 90, "profile_path": null, "order": 66}, {"name": "Chris Borden", "character": "Dignitary / Expo Attendee (uncredited)", "id": 1265815, "credit_id": "52fe43339251416c75007439", "cast_id": 91, "profile_path": null, "order": 67}, {"name": "Pete Brown", "character": "Air Force Major (uncredited)", "id": 1078574, "credit_id": "52fe43339251416c7500743d", "cast_id": 92, "profile_path": null, "order": 68}, {"name": "Basilina Butler", "character": "Tony Stark Racing Fan (uncredited)", "id": 1265816, "credit_id": "52fe43339251416c75007441", "cast_id": 93, "profile_path": null, "order": 69}, {"name": "John Ceallach", "character": "Captain Anders (uncredited)", "id": 1236642, "credit_id": "52fe43339251416c75007445", "cast_id": 94, "profile_path": null, "order": 70}, {"name": "Katie Cleary", "character": "Beautiful Girl (uncredited)", "id": 1231548, "credit_id": "52fe43339251416c75007449", "cast_id": 95, "profile_path": null, "order": 71}, {"name": "Ajarae Coleman", "character": "Expo Guest (uncredited)", "id": 1265817, "credit_id": "52fe43339251416c7500744d", "cast_id": 96, "profile_path": "/3rA8WzZjfcjlyJiSJ2LM9aeTWRR.jpg", "order": 72}, {"name": "Rick L. Dean", "character": "Monte Carlo Race Fan (uncredited)", "id": 1265818, "credit_id": "52fe43339251416c75007451", "cast_id": 97, "profile_path": null, "order": 73}, {"name": "Timothy 'TJ' James Driscoll", "character": "French Prison Guard #2 (uncredited)", "id": 1265819, "credit_id": "52fe43339251416c75007455", "cast_id": 98, "profile_path": null, "order": 74}, {"name": "Jasmine Dustin", "character": "Watermelon Girl (uncredited)", "id": 1225936, "credit_id": "52fe43339251416c75007459", "cast_id": 99, "profile_path": null, "order": 75}, {"name": "Mark Casimir Dyniewicz", "character": "Justin Hammer Expo Attendee (uncredited)", "id": 97447, "credit_id": "52fe43339251416c7500745d", "cast_id": 100, "profile_path": null, "order": 76}, {"name": "Sam Felman", "character": "Stark Expo Attendee (uncredited)", "id": 1265820, "credit_id": "52fe43339251416c75007461", "cast_id": 101, "profile_path": null, "order": 77}, {"name": "Caitlin Gallo", "character": "I Love You girl (uncredited)", "id": 1265821, "credit_id": "52fe43339251416c75007465", "cast_id": 102, "profile_path": null, "order": 78}, {"name": "Shakira Vanise Gamble", "character": "Pepper's Party Guest (uncredited)", "id": 1265822, "credit_id": "52fe43339251416c75007469", "cast_id": 103, "profile_path": null, "order": 79}, {"name": "Paul Grace", "character": "French Prison Guard #1 (uncredited)", "id": 1265823, "credit_id": "52fe43339251416c7500746d", "cast_id": 104, "profile_path": null, "order": 80}, {"name": "James Granville", "character": "Expo Fan (uncredited)", "id": 1265824, "credit_id": "52fe43339251416c75007471", "cast_id": 105, "profile_path": null, "order": 81}, {"name": "Kathryn Henzler", "character": "Expo Attendee (uncredited)", "id": 1265825, "credit_id": "52fe43339251416c75007475", "cast_id": 106, "profile_path": null, "order": 82}, {"name": "Jennifer Lynne Johnson", "character": "Expo Attendee (uncredited)", "id": 1265826, "credit_id": "52fe43339251416c75007479", "cast_id": 107, "profile_path": null, "order": 83}, {"name": "Mark Kubr", "character": "Prisoner (uncredited)", "id": 193946, "credit_id": "52fe43339251416c7500747d", "cast_id": 108, "profile_path": null, "order": 84}, {"name": "Cameron Lee", "character": "Senate Page (uncredited)", "id": 1265827, "credit_id": "52fe43339251416c75007481", "cast_id": 109, "profile_path": null, "order": 85}, {"name": "Jee-Yun Lee", "character": "Reporter (archive footage) (uncredited)", "id": 201951, "credit_id": "52fe43339251416c75007485", "cast_id": 110, "profile_path": null, "order": 86}, {"name": "Waymond Lee", "character": "Expo Guest (uncredited)", "id": 1200895, "credit_id": "52fe43339251416c75007489", "cast_id": 111, "profile_path": null, "order": 87}, {"name": "Mathew Lorenceau", "character": "Prison Guard Chevalier (uncredited)", "id": 1200313, "credit_id": "52fe43339251416c7500748d", "cast_id": 112, "profile_path": null, "order": 88}, {"name": "Christopher Maleki", "character": "Reporter (uncredited)", "id": 101037, "credit_id": "52fe43339251416c75007491", "cast_id": 113, "profile_path": "/5ZAbMzPFBLcqX1XwILdTW7bL0KH.jpg", "order": 89}, {"name": "Richard Markman", "character": "Photographer at Senate hearing (uncredited)", "id": 1265828, "credit_id": "52fe43339251416c75007495", "cast_id": 114, "profile_path": null, "order": 90}, {"name": "Bryan McCoy", "character": "Expo Guest (uncredited)", "id": 1265829, "credit_id": "52fe43339251416c75007499", "cast_id": 115, "profile_path": null, "order": 91}, {"name": "Ed Moy", "character": "Awards Attendee (uncredited)", "id": 1186481, "credit_id": "52fe43339251416c7500749d", "cast_id": 116, "profile_path": null, "order": 92}, {"name": "Delka Nenkova", "character": "Russian Woman (uncredited)", "id": 1265830, "credit_id": "52fe43339251416c750074a1", "cast_id": 117, "profile_path": null, "order": 93}, {"name": "Tony Nevada", "character": "SWAT Sergeant Bellows (uncredited)", "id": 992389, "credit_id": "52fe43339251416c750074a5", "cast_id": 118, "profile_path": null, "order": 94}, {"name": "Allison Ochmanek", "character": "Watermelon Girl (uncredited)", "id": 1265831, "credit_id": "52fe43339251416c750074a9", "cast_id": 119, "profile_path": null, "order": 95}, {"name": "Nicolas Pajon", "character": "French Reporter (uncredited)", "id": 208056, "credit_id": "52fe43339251416c750074ad", "cast_id": 120, "profile_path": null, "order": 96}, {"name": "H.E. Victor J.W. Pekarcik III", "character": "White House Chief of Staff (uncredited)", "id": 1265832, "credit_id": "52fe43339251416c750074b1", "cast_id": 121, "profile_path": null, "order": 97}, {"name": "Erin Pickett", "character": "Expo Guest (uncredited)", "id": 1265833, "credit_id": "52fe43339251416c750074b5", "cast_id": 122, "profile_path": null, "order": 98}, {"name": "Olivia Presley", "character": "Expo VIP (uncredited)", "id": 223048, "credit_id": "52fe43339251416c750074b9", "cast_id": 123, "profile_path": null, "order": 99}, {"name": "Steven James Price", "character": "Senate Gallery Member (uncredited)", "id": 1197358, "credit_id": "52fe43339251416c750074bd", "cast_id": 124, "profile_path": null, "order": 100}, {"name": "Kiana Prudhont", "character": "Expo Kid (uncredited)", "id": 1265834, "credit_id": "52fe43339251416c750074c1", "cast_id": 125, "profile_path": null, "order": 101}, {"name": "Kristin Quick", "character": "VIP Expo Guest (uncredited)", "id": 1265835, "credit_id": "52fe43339251416c750074c5", "cast_id": 126, "profile_path": null, "order": 102}, {"name": "Tanner Alexander Redman", "character": "1960's Film Crew (uncredited)", "id": 1265836, "credit_id": "52fe43339251416c750074c9", "cast_id": 127, "profile_path": null, "order": 103}, {"name": "Tanoai Reed", "character": "Security Guard Fighting Happy Hogan (uncredited)", "id": 77824, "credit_id": "52fe43339251416c750074cd", "cast_id": 128, "profile_path": "/5CCVaidtpFOEcFUoQWQZjbEwwBd.jpg", "order": 104}, {"name": "Kelly Sarah", "character": "Stark Expo Attendee (uncredited)", "id": 1197040, "credit_id": "52fe43339251416c750074d1", "cast_id": 129, "profile_path": null, "order": 105}, {"name": "Torin Sixx", "character": "Pepper's Birthday Party Guest (uncredited)", "id": 1265837, "credit_id": "52fe43339251416c750074d5", "cast_id": 130, "profile_path": null, "order": 106}, {"name": "Peter Trenholm Smith", "character": "Senator (uncredited)", "id": 1265838, "credit_id": "52fe43339251416c750074d9", "cast_id": 131, "profile_path": null, "order": 107}, {"name": "Grace Stanley", "character": "Model (uncredited)", "id": 1265839, "credit_id": "52fe43339251416c750074dd", "cast_id": 132, "profile_path": null, "order": 108}, {"name": "Doug Swander", "character": "Party Guest (uncredited)", "id": 92189, "credit_id": "52fe43339251416c750074e1", "cast_id": 133, "profile_path": null, "order": 109}, {"name": "Michael A. Templeton", "character": "US Senator (uncredited)", "id": 1265840, "credit_id": "52fe43339251416c750074e5", "cast_id": 134, "profile_path": null, "order": 110}, {"name": "Rosa Tyabji", "character": "Background (uncredited)", "id": 1265841, "credit_id": "52fe43339251416c750074e9", "cast_id": 135, "profile_path": null, "order": 111}, {"name": "Peter Sebastian Wrobel", "character": "Tony Stark Usher (uncredited)", "id": 1122811, "credit_id": "52fe43339251416c750074ed", "cast_id": 136, "profile_path": null, "order": 112}, {"name": "Maria Zambrana", "character": "Expo Attendee (uncredited)", "id": 1205141, "credit_id": "52fe43339251416c750074f1", "cast_id": 137, "profile_path": null, "order": 113}, {"name": "Nick W. Nicholson", "character": "Stark Expo Attendee (uncredited)", "id": 1429470, "credit_id": "54e7e9fc9251412eb8000c7e", "cast_id": 147, "profile_path": null, "order": 114}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe43329251416c750072b1", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 6.6, "runtime": 124}, "10139": {"poster_path": "/sFYmJJSVXqfqPI79tx4UG4IR5Jb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54586584, "overview": "The story of California's first openly gay elected official, Harvey Milk, who became an outspoken agent for change, seeking equal rights and opportunities for all. His great love for the city and its people brought him backing from young and old, straight and gay, alike \u2013 at a time when prejudice and violence against gays was openly accepted as the norm.", "video": false, "id": 10139, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Milk", "tagline": "Never Blend In.", "vote_count": 134, "homepage": "http://focusfeatures.com/film/milk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1013753", "adult": false, "backdrop_path": "/i8NcYenVqMzB95pVz8YOPIqmGj8.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2008-11-26", "popularity": 0.627415527653266, "original_title": "Milk", "budget": 20000000, "cast": [{"name": "Sean Penn", "character": "Harvey Milk", "id": 2228, "credit_id": "52fe43339251416c75007555", "cast_id": 2, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Emile Hirsch", "character": "Cleve Jones", "id": 46593, "credit_id": "52fe43339251416c75007559", "cast_id": 3, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 1}, {"name": "James Franco", "character": "Scott Smith", "id": 17051, "credit_id": "52fe43339251416c7500755d", "cast_id": 4, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Josh Brolin", "character": "Dan White", "id": 16851, "credit_id": "52fe43339251416c75007561", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 3}, {"name": "Diego Luna", "character": "Jack Lira", "id": 8688, "credit_id": "52fe43339251416c75007565", "cast_id": 6, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 4}, {"name": "Alison Pill", "character": "Anne Kronenberg", "id": 17486, "credit_id": "52fe43339251416c75007581", "cast_id": 11, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 5}, {"name": "Victor Garber", "character": "Mayor Moscone", "id": 8536, "credit_id": "52fe43339251416c75007585", "cast_id": 12, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 6}, {"name": "Denis O'Hare", "character": "John Briggs", "id": 81681, "credit_id": "52fe43339251416c75007589", "cast_id": 13, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 7}, {"name": "Joseph Cross", "character": "Dick Pabich", "id": 33528, "credit_id": "52fe43339251416c7500758d", "cast_id": 14, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 8}, {"name": "Stephen Spinella", "character": "Rick Stokes", "id": 57093, "credit_id": "52fe43339251416c75007591", "cast_id": 15, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 9}, {"name": "Lucas Grabeel", "character": "Danny Nicoletta", "id": 67601, "credit_id": "52fe43339251416c75007595", "cast_id": 16, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 10}, {"name": "Boyd Holbrook", "character": "Denton Smith", "id": 467645, "credit_id": "52fe43339251416c75007599", "cast_id": 17, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 11}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe43339251416c75007551", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 7.0, "runtime": 128}, "1948": {"poster_path": "/6RnD3Zfh0tO0cD2vroWyH0F98Ej.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39242841, "overview": "Professional assassin Chev Chelios learns his rival has injected him with a poison that will kill him if his heart rate drops.", "video": false, "id": 1948, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Crank", "tagline": "There are a thousand ways to raise your adrenaline. Today, Chev Chelios will need every single one.", "vote_count": 396, "homepage": "http://www.crankfilm.com/", "belongs_to_collection": {"backdrop_path": "/nHq1qCXy4QKM1BaPG1PbWOcFEcg.jpg", "poster_path": "/wmUzRqcAi0KOW7sqnaAvEQtM8l.jpg", "id": 64751, "name": "Crank Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0479884", "adult": false, "backdrop_path": "/kSTvteM3ekuoeO7u7GJtZQkZuom.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Radical Media", "id": 11152}, {"name": "GreeneStreet Films", "id": 2152}], "release_date": "2006-08-31", "popularity": 1.84574957639095, "original_title": "Crank", "budget": 12000000, "cast": [{"name": "Jason Statham", "character": "Chev Chelios", "id": 976, "credit_id": "52fe4325c3a36847f803dc2b", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Amy Smart", "character": "Eve", "id": 20189, "credit_id": "52fe4325c3a36847f803dc2f", "cast_id": 2, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Efren Ramirez", "character": "Kaylo", "id": 20190, "credit_id": "52fe4325c3a36847f803dc33", "cast_id": 3, "profile_path": "/6VqjTlLm469PDyNbATyqyuSvIw0.jpg", "order": 2}, {"name": "Jose Pablo Cantillo", "character": "Ricky Verona", "id": 20191, "credit_id": "52fe4325c3a36847f803dc37", "cast_id": 4, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 3}, {"name": "Dwight Yoakam", "character": "Doc Miles", "id": 20309, "credit_id": "53014a5ac3a3680a2114a155", "cast_id": 21, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 4}, {"name": "Carlos Sanz", "character": "Carlito", "id": 171136, "credit_id": "53014a66c3a3680a091299a9", "cast_id": 22, "profile_path": "/hUJFwGcUDanE98afwKhaQggL1tC.jpg", "order": 5}, {"name": "Reno Wilson", "character": "Orlando", "id": 117187, "credit_id": "53014a72c3a3680a09129ad1", "cast_id": 23, "profile_path": "/xrxGdoGcF3p79NlWHEFvmj2eyx1.jpg", "order": 6}, {"name": "Edi Gathegi", "character": "Haitian Cab Driver", "id": 39391, "credit_id": "53014a7fc3a3680a2114a469", "cast_id": 24, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 7}, {"name": "Glenn Howerton", "character": "Doctor", "id": 77870, "credit_id": "53014a89c3a3680a2114a4a0", "cast_id": 25, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 8}, {"name": "Jay Xcala", "character": "Alex", "id": 962169, "credit_id": "534f86bbc3a3681cdd00088c", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Keone Young", "character": "Don Kim", "id": 91387, "credit_id": "534f86d4c3a3681cdd00088f", "cast_id": 27, "profile_path": "/bzJWn4q0Vt6l5zZ33Q0dtB77g4S.jpg", "order": 10}, {"name": "Valarie Rae Miller", "character": "Chocolate", "id": 1212687, "credit_id": "534f86e9c3a3681cc300085a", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Yousuf Azami", "character": "Arab Cab Driver", "id": 123102, "credit_id": "534f86f9c3a3681cae000824", "cast_id": 29, "profile_path": "/lEB2ryIlwygt5msLv4ICxPKBYxX.jpg", "order": 12}, {"name": "Laurent Schwaar", "character": "Man in Garage", "id": 1310647, "credit_id": "534f8707c3a3681cc3000861", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "David Brown", "character": "Sin City Brother", "id": 1260146, "credit_id": "534f8717c3a3681cb50008c7", "cast_id": 31, "profile_path": "/rS11US9Th9grQlTN0NdK7Q2VrI1.jpg", "order": 14}], "directors": [{"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dc3d", "profile_path": null, "id": 20192}, {"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dc43", "profile_path": null, "id": 20193}], "vote_average": 6.5, "runtime": 88}, "1949": {"poster_path": "/kIW7N2bKV42OWk1kkMeq5ewZQVh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84785914, "overview": "Based on the actual case files for one of the most intriguing unsolved crimes in America, \"Zodiac\" tells the story of a serial killer that terrified the San Francisco Bay Area, taunting police with his ciphers and letters. The case becomes an obsession for four men as their lives and careers are built and destroyed by the endless trail of clues.", "video": false, "id": 1949, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Zodiac", "tagline": "There's more than one way to lose your life to a killer", "vote_count": 394, "homepage": "http://www.zodiacmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443706", "adult": false, "backdrop_path": "/lXZgNXoMNbCCp0j03AC20LvdiHd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros.", "id": 6194}, {"name": "Phoenix Pictures", "id": 11317}], "release_date": "2007-03-01", "popularity": 1.55025590964691, "original_title": "Zodiac", "budget": 65000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Robert Graysmith", "id": 131, "credit_id": "52fe4325c3a36847f803dd0d", "cast_id": 13, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Paul Avery", "id": 3223, "credit_id": "52fe4325c3a36847f803dd43", "cast_id": 27, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Dave Toschi", "id": 103, "credit_id": "52fe4325c3a36847f803dd11", "cast_id": 14, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Anthony Edwards", "character": "Bill Armstrong", "id": 11085, "credit_id": "52fe4325c3a36847f803dd15", "cast_id": 16, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 3}, {"name": "Brian Cox", "character": "Melvin Belli", "id": 1248, "credit_id": "52fe4325c3a36847f803dd19", "cast_id": 17, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Jack Mulanax", "id": 13550, "credit_id": "52fe4325c3a36847f803dd1d", "cast_id": 18, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Chlo\u00eb Sevigny", "character": "Melanie", "id": 2838, "credit_id": "52fe4325c3a36847f803dd21", "cast_id": 19, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 6}, {"name": "John Carroll Lynch", "character": "Arthur Leigh Allen", "id": 3911, "credit_id": "52fe4325c3a36847f803dd25", "cast_id": 20, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 7}, {"name": "Ed Setrakian", "character": "Al Hyman", "id": 20210, "credit_id": "52fe4325c3a36847f803dd29", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "John Getz", "character": "Templeton Peck", "id": 20211, "credit_id": "52fe4325c3a36847f803dd2d", "cast_id": 22, "profile_path": "/a0uOMxCiYqvcr3h49jopyKzKVfX.jpg", "order": 9}, {"name": "John Terry", "character": "Charles Thieriot", "id": 8659, "credit_id": "52fe4325c3a36847f803dd31", "cast_id": 23, "profile_path": "/ziI8HiAeTLdud06edGUo2AXwdij.jpg", "order": 10}, {"name": "Candy Clark", "character": "Carol Fisher", "id": 12407, "credit_id": "52fe4325c3a36847f803dd35", "cast_id": 24, "profile_path": "/aQKkCUp3tXxw1Mspz8QOfCRCFy2.jpg", "order": 11}, {"name": "Dermot Mulroney", "character": "Captain Martin Lee", "id": 20212, "credit_id": "52fe4325c3a36847f803dd39", "cast_id": 25, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 12}, {"name": "Brett Rickaby", "character": "Detective Roy", "id": 12549, "credit_id": "52fe4325c3a36847f803dd47", "cast_id": 28, "profile_path": "/bsY5Tgy6PTPa4u81eaVIgTs5RwA.jpg", "order": 13}, {"name": "Clea DuVall", "character": "Linda del Buono", "id": 20387, "credit_id": "53b873cd0e0a2676c7008504", "cast_id": 30, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 14}, {"name": "Donal Logue", "character": "Captain Ken Narlow", "id": 10825, "credit_id": "54d6cbba9251416b93003b5d", "cast_id": 31, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 15}, {"name": "Charles Fleischer", "character": "Bob Vaughn", "id": 12826, "credit_id": "54d6cbf8c3a3683b89003b20", "cast_id": 32, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 16}, {"name": "Philip Baker Hall", "character": "Sherwood Morrill", "id": 4492, "credit_id": "54d6d86e92514153b5000a21", "cast_id": 33, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 17}, {"name": "Adam Goldberg", "character": "Duffy Jennings", "id": 6163, "credit_id": "54d6d8a59251413388001027", "cast_id": 34, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 18}, {"name": "Zach Grenier", "character": "Mel Nicolai", "id": 7471, "credit_id": "54d6dfa992514171600043fa", "cast_id": 35, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 19}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dd3f", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.9, "runtime": 157}, "10144": {"poster_path": "/ujlSe3lhp1OKmF2LNu6wRpWbdiU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 211343479, "overview": "This colorful adventure tells the story of an impetuous mermaid princess named Ariel who falls in love with the very human Prince Eric and puts everything on the line for the chance to be with him. Memorable songs and characters -- including the villainous sea witch Ursula.", "video": false, "id": 10144, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Little Mermaid", "tagline": "Somewhere under the sea and beyond your imagination is an adventure in fantasy.", "vote_count": 529, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3LVnessjKBjTEVLpVBJf5uh5Y9.jpg", "poster_path": "/y0EOuK02TasfRGSZBdv5U910QaV.jpg", "id": 33085, "name": "The Little Mermaid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0097757", "adult": false, "backdrop_path": "/gJBGcnhGhxoOpcqK29kZNq3UR6i.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1989-11-15", "popularity": 1.96691796813753, "original_title": "The Little Mermaid", "budget": 40000000, "cast": [{"name": "Rene Auberjonois", "character": "Louis (voice)", "id": 9807, "credit_id": "52fe43349251416c7500783f", "cast_id": 12, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 0}, {"name": "Christopher Daniel Barnes", "character": "Prince Eric (voice)", "id": 31468, "credit_id": "52fe43349251416c75007843", "cast_id": 13, "profile_path": "/mbnpGbndavEHgkmu9tgyqF22I0i.jpg", "order": 1}, {"name": "Jodi Benson", "character": "Ariel (voice)", "id": 63978, "credit_id": "52fe43359251416c75007847", "cast_id": 14, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 2}, {"name": "Pat Carroll", "character": "Ursula (voice)", "id": 35232, "credit_id": "52fe43359251416c7500784b", "cast_id": 15, "profile_path": "/u3VKH6kvq3giRZ7UJTaec262HHW.jpg", "order": 3}, {"name": "Paddi Edwards", "character": "Flotsam /Jetsam (voice)", "id": 157660, "credit_id": "52fe43359251416c7500784f", "cast_id": 16, "profile_path": "/l5hQV4JBI2irJFYNfNxdsvXKKQz.jpg", "order": 4}, {"name": "Buddy Hackett", "character": "Scuttle (voice)", "id": 67393, "credit_id": "52fe43359251416c75007853", "cast_id": 17, "profile_path": "/zYLAknEo17XgWU44DbT2FCvLQps.jpg", "order": 5}, {"name": "Jason Marin", "character": "Flounder (voice)", "id": 184030, "credit_id": "52fe43359251416c75007857", "cast_id": 18, "profile_path": "/vt8OeZi93AlWkVGZ3yazBqh4jWx.jpg", "order": 6}, {"name": "Kenneth Mars", "character": "King Triton (voice)", "id": 9601, "credit_id": "52fe43359251416c7500785b", "cast_id": 19, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 7}, {"name": "Edie McClurg", "character": "Carlotta (voice)", "id": 3202, "credit_id": "52fe43359251416c7500785f", "cast_id": 20, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 8}, {"name": "Will Ryan", "character": "Seahorse (voice)", "id": 40352, "credit_id": "52fe43359251416c75007863", "cast_id": 21, "profile_path": "/uY0oWjp7dxBEh03LpMBqApaswn.jpg", "order": 9}, {"name": "Ben Wright", "character": "Grimsby (voice)", "id": 71781, "credit_id": "52fe43359251416c75007867", "cast_id": 22, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 10}, {"name": "Samuel E. Wright", "character": "Sebastian (voice)", "id": 67392, "credit_id": "52fe43359251416c7500786b", "cast_id": 23, "profile_path": "/hOtuep1nRczthyxkJusb68rcuL1.jpg", "order": 11}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe43349251416c750077ff", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe43349251416c75007805", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.9, "runtime": 83}, "10145": {"poster_path": "/iFSotnLnRHZiLoxih9bnYybwBqH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117575636, "overview": "Nine-year-old Sam Paretta is dead, killed in a plane crash. Even though it's been fourteen months since the accident, his mother Telly (Julianne Moore) still grieves over the loss. Suddenly her husband (Anthony Edwards) swears they never had a child and her psychiatrist (Gary Sinise) insists she's delusional. But worst of all, there is absolutely no evidence to prove Sam ever existed.", "video": false, "id": 10145, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Forgotten", "tagline": "You'll Never Forget The Ones You Love", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356618", "adult": false, "backdrop_path": "/mz3d5x6MYyTtyABPGbOk3sd9Rg9.jpg", "production_companies": [{"name": "Visual Arts Entertainment", "id": 30833}, {"name": "Revolution Studios", "id": 497}, {"name": "Jinks/Cohen Company", "id": 2721}], "release_date": "2004-09-24", "popularity": 0.575555438471934, "original_title": "The Forgotten", "budget": 42000000, "cast": [{"name": "Julianne Moore", "character": "Telly Paretta", "id": 1231, "credit_id": "52fe43359251416c750078bd", "cast_id": 9, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Anthony Edwards", "character": "Jim Paretta", "id": 11085, "credit_id": "52fe43359251416c750078c1", "cast_id": 10, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 1}, {"name": "Jessica Hecht", "character": "Eliot", "id": 14984, "credit_id": "52fe43359251416c750078c5", "cast_id": 11, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 2}, {"name": "Christopher Kovaleski", "character": "Sam", "id": 63982, "credit_id": "52fe43359251416c750078c9", "cast_id": 12, "profile_path": "/iLWrnZG2mxgpihZFxksf1i3MqeL.jpg", "order": 3}, {"name": "Dominic West", "character": "Ash Correll", "id": 17287, "credit_id": "52fe43359251416c750078cd", "cast_id": 13, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 4}, {"name": "Tim Kang", "character": "Agent Alec Wong", "id": 52947, "credit_id": "52fe43359251416c750078d1", "cast_id": 14, "profile_path": "/1qKA4ODtnF6SiYuSfcC8x9dI7dD.jpg", "order": 5}, {"name": "Gary Sinise", "character": "Dr. Munce", "id": 33, "credit_id": "5303b7fe925141218f659834", "cast_id": 15, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 6}, {"name": "Lee Tergesen", "character": "Al Petalis", "id": 6906, "credit_id": "5323fee9c3a368572500774d", "cast_id": 16, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 7}, {"name": "Robert Wisdom", "character": "Carl Dayton", "id": 21505, "credit_id": "5516d5a39251416f0a000479", "cast_id": 75, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 8}, {"name": "Kathryn Faughnan", "character": "Lauren Correll", "id": 1446696, "credit_id": "5516d5fdc3a3686302000423", "cast_id": 76, "profile_path": null, "order": 9}, {"name": "Alfre Woodard", "character": "Det. Anne Pope", "id": 1981, "credit_id": "5516d625c3a36862f6000418", "cast_id": 77, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 10}, {"name": "Susan Misner", "character": "Agent Lisa Franks", "id": 17640, "credit_id": "5516d64cc3a36862f600041b", "cast_id": 78, "profile_path": "/ugyXBkbrlG97RufRzII4sPM7kU1.jpg", "order": 11}], "directors": [{"name": "Joseph Ruben", "department": "Directing", "job": "Director", "credit_id": "52fe43359251416c7500788f", "profile_path": null, "id": 52629}], "vote_average": 5.1, "runtime": 91}, "1954": {"poster_path": "/gXnNltCrm5feEEa3BytYy6jwF6v.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96060858, "overview": "A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.", "video": false, "id": 1954, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Butterfly Effect", "tagline": "Such minor changes, such huge consequences.", "vote_count": 526, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bj0jcRYfap4gcI2VsThUMYV2ZAG.jpg", "poster_path": "/2kzjiPuc8pOXreeDQWtskp8QtdU.jpg", "id": 52749, "name": "The Butterfly Effect Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0289879", "adult": false, "backdrop_path": "/gGd0EKH2hITKqzeIhBVs1Ng7prg.jpg", "production_companies": [{"name": "FilmEngine", "id": 816}, {"name": "Katalyst Films", "id": 817}, {"name": "BenderSpink", "id": 6363}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}, {"name": "New Line Cinema", "id": 12}], "release_date": "2004-01-23", "popularity": 1.38496276981475, "original_title": "The Butterfly Effect", "budget": 13000000, "cast": [{"name": "Ashton Kutcher", "character": "Evan Treborn", "id": 18976, "credit_id": "52fe4325c3a36847f803deb3", "cast_id": 21, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Amy Smart", "character": "Kayleigh Miller", "id": 20189, "credit_id": "52fe4325c3a36847f803de65", "cast_id": 5, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "William Lee Scott", "character": "Tommy Miller", "id": 10128, "credit_id": "52fe4325c3a36847f803de6d", "cast_id": 7, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 2}, {"name": "Elden Henson", "character": "Lenny Kagan", "id": 20220, "credit_id": "52fe4325c3a36847f803de69", "cast_id": 6, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 3}, {"name": "Melora Walters", "character": "Andrea Treborn", "id": 4766, "credit_id": "52fe4325c3a36847f803de61", "cast_id": 4, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 4}, {"name": "Eric Stoltz", "character": "George Miller", "id": 7036, "credit_id": "53a446db0e0a2667d900159e", "cast_id": 41, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 5}, {"name": "Logan Lerman", "character": "Evan Treborn age 7", "id": 33235, "credit_id": "52fe4325c3a36847f803debb", "cast_id": 23, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 6}, {"name": "Ethan Suplee", "character": "Thumper", "id": 824, "credit_id": "53a446fa0e0a2667c90015ae", "cast_id": 42, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 7}, {"name": "Nathaniel DeVeaux", "character": "Dr. Redfield", "id": 20221, "credit_id": "52fe4325c3a36847f803de71", "cast_id": 8, "profile_path": "/oXBArAwYlxrX4w1hnh0HsdAFEcQ.jpg", "order": 8}, {"name": "Kevin G. Schmidt", "character": "Lenny age 13", "id": 85140, "credit_id": "52fe4326c3a36847f803df0b", "cast_id": 37, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 9}, {"name": "Jesse James", "character": "Tommy age 13", "id": 10135, "credit_id": "52fe4326c3a36847f803df0f", "cast_id": 39, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 10}, {"name": "Callum Keith Rennie", "character": "Jason Treborn", "id": 540, "credit_id": "52fe4325c3a36847f803de75", "cast_id": 9, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 11}, {"name": "Irene Gorovaia", "character": "Kayleigh age 13", "id": 946171, "credit_id": "52fe4326c3a36847f803df07", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "John Patrick Amedori", "character": "Evan Treborn age 13", "id": 43464, "credit_id": "52fe4325c3a36847f803deaf", "cast_id": 20, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 13}, {"name": "Cameron Bright", "character": "Tommy age 7", "id": 52414, "credit_id": "53a448450e0a2667bf0015c7", "cast_id": 43, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 15}, {"name": "Lorena Gale", "character": "Mrs. Boswell", "id": 80348, "credit_id": "53a99483c3a368707a0060e1", "cast_id": 52, "profile_path": null, "order": 16}, {"name": "Kendall Cross", "character": "Mrs. Kagan", "id": 59185, "credit_id": "53a994ecc3a3687a43007003", "cast_id": 53, "profile_path": "/js2mIcx5lZu6P4D3z6hYZqNFPCx.jpg", "order": 17}, {"name": "John Tierney", "character": "Priest", "id": 1234935, "credit_id": "53a99523c3a3687a43007007", "cast_id": 54, "profile_path": null, "order": 18}, {"name": "Ted Friend", "character": "Anchor", "id": 80353, "credit_id": "53a99577c3a3687a40006f9e", "cast_id": 55, "profile_path": null, "order": 19}, {"name": "John B. Lowe", "character": "Professor Carter", "id": 33051, "credit_id": "53a995cfc3a368707a0060f1", "cast_id": 56, "profile_path": "/3ecOmKkovovWXtaMUWdA6t0nHf.jpg", "order": 20}, {"name": "Camille Sullivan", "character": "Cricket", "id": 112557, "credit_id": "53a99668c3a368749500641a", "cast_id": 58, "profile_path": "/fRM5JUhqWBfvhCB6RVvc9nsMe1F.jpg", "order": 22}, {"name": "Tara Wilson", "character": "Heidi", "id": 84270, "credit_id": "53a996a3c3a3687a34007010", "cast_id": 59, "profile_path": "/74qhhsyIziJHZsRefRiMaeI4VXw.jpg", "order": 23}, {"name": "Jesse Hutch", "character": "Spencer", "id": 169469, "credit_id": "53a99721c3a3687495006424", "cast_id": 60, "profile_path": "/4ES1tgoPAcOecGkq10gHkkBcFBS.jpg", "order": 24}], "directors": [{"name": "Eric Bress", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803de57", "profile_path": null, "id": 20218}, {"name": "J. Mackye Gruber", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803dec1", "profile_path": null, "id": 20219}], "vote_average": 7.0, "runtime": 113}, "1955": {"poster_path": "/3eQ28JtPB9SsmyVSsLFAQwQWEmW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26010864, "overview": "A Victorian surgeon rescues a heavily disfigured man being mistreated by his \"owner\" as a side-show freak. Behind his monstrous facade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.", "video": false, "id": 1955, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Elephant Man", "tagline": "I am not an animal! I am a human being! I...am...a man!", "vote_count": 137, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080678", "adult": false, "backdrop_path": "/rR479zn26lJp4vNxXKjfBVCHLAW.jpg", "production_companies": [{"name": "Brooksfilms", "id": 5612}], "release_date": "1980-10-09", "popularity": 0.601366871850565, "original_title": "The Elephant Man", "budget": 5000000, "cast": [{"name": "John Hurt", "character": "John Merrick", "id": 5049, "credit_id": "52fe4326c3a36847f803df93", "cast_id": 11, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Dr. Frederick Treves", "id": 4173, "credit_id": "52fe4326c3a36847f803df8f", "cast_id": 10, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Anne Bancroft", "character": "Mrs. Kendal", "id": 10774, "credit_id": "52fe4326c3a36847f803df97", "cast_id": 12, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 2}, {"name": "John Gielgud", "character": "Carr Gomm", "id": 11857, "credit_id": "52fe4326c3a36847f803df9b", "cast_id": 13, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 3}, {"name": "Wendy Hiller", "character": "Mothershead", "id": 13325, "credit_id": "52fe4326c3a36847f803df9f", "cast_id": 14, "profile_path": "/tJoIGdsqvjx01Cz3akTr7kaETa5.jpg", "order": 4}, {"name": "Freddie Jones", "character": "Bytes", "id": 12517, "credit_id": "52fe4326c3a36847f803dfa3", "cast_id": 15, "profile_path": "/mh2aJ6fuzsjsCG8bNyelPuqPHt3.jpg", "order": 5}, {"name": "Michael Elphick", "character": "Night Porter", "id": 1821, "credit_id": "52fe4326c3a36847f803dfa7", "cast_id": 16, "profile_path": "/sb8z3XPy9lKPMyYEgVC6RKMccE6.jpg", "order": 6}, {"name": "John Standing", "character": "Dr. Fox", "id": 11282, "credit_id": "52fe4326c3a36847f803dfab", "cast_id": 17, "profile_path": "/npS8a4mKgqpJJiNeRPn0Ftl7pxj.jpg", "order": 7}, {"name": "Phoebe Nicholls", "character": "Merrick's Mother", "id": 3930, "credit_id": "52fe4326c3a36847f803dfaf", "cast_id": 18, "profile_path": "/7DbtgVQOefeCD4DEcUvfMYfsMM2.jpg", "order": 8}, {"name": "Kenny Baker", "character": "Plumed Dwarf", "id": 130, "credit_id": "52fe4326c3a36847f803dfb3", "cast_id": 19, "profile_path": "/wnTrBdbJr23GWApnmARg0F7Gpja.jpg", "order": 9}, {"name": "Hannah Gordon", "character": "Mrs. Anne Treves", "id": 214495, "credit_id": "52fe4326c3a36847f803dfb7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Helen Ryan", "character": "Princess Alex", "id": 643171, "credit_id": "52fe4326c3a36847f803dfbb", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "John Standing", "character": "Fox", "id": 11282, "credit_id": "52fe4326c3a36847f803dfbf", "cast_id": 22, "profile_path": "/npS8a4mKgqpJJiNeRPn0Ftl7pxj.jpg", "order": 12}, {"name": "Dexter Fletcher", "character": "Bytes' Boy", "id": 974, "credit_id": "52fe4326c3a36847f803dfc3", "cast_id": 23, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 13}, {"name": "Lesley Dunlop", "character": "Nora", "id": 47864, "credit_id": "52fe4326c3a36847f803dfc7", "cast_id": 24, "profile_path": "/bG5zP46aHpjsEcbfGuzg1WiK452.jpg", "order": 14}, {"name": "Pat Gorman", "character": "Fairground Bobby", "id": 1230584, "credit_id": "54916f56925141473b0014df", "cast_id": 33, "profile_path": "/pH2aOd7KbJ2tnAPJglmnP2GeILe.jpg", "order": 15}, {"name": "Claire Davenport", "character": "Fat Lady", "id": 692664, "credit_id": "52fe4326c3a36847f803dfcf", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Orla Pederson", "character": "Skeleton Man", "id": 912036, "credit_id": "52fe4326c3a36847f803dfd3", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Patsy Smart", "character": "Patsy Smart", "id": 158278, "credit_id": "52fe4326c3a36847f803dfd7", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Kathleen Byron", "character": "Lady Waddington", "id": 99905, "credit_id": "52fe4326c3a36847f803dfdb", "cast_id": 30, "profile_path": "/pw90dr1OFji81G8D6N3EROQCY11.jpg", "order": 19}, {"name": "William Morgan Sheppard", "character": "Man In Pub", "id": 938390, "credit_id": "52fe4326c3a36847f803dfdf", "cast_id": 31, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 20}], "directors": [{"name": "David Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe4326c3a36847f803df5b", "profile_path": "/AdfItgtfNOjYmX1tCoM4G17EkRn.jpg", "id": 5602}], "vote_average": 7.9, "runtime": 124}, "1957": {"poster_path": "/la9F1MVu1nU4v61trp80dVcr5Ij.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51801187, "overview": "On the run from an abusive husband, a young mother begins to train herself to fight back.", "video": false, "id": 1957, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Enough", "tagline": "Self defense isn't murder.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0278435", "adult": false, "backdrop_path": "/cy5sGMWhOOz2ksfDgELhaPDnqgm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2002-05-24", "popularity": 0.208914482427276, "original_title": "Enough", "budget": 38000000, "cast": [{"name": "Jennifer Lopez", "character": "Slim Hiller", "id": 16866, "credit_id": "52fe4326c3a36847f803e0ab", "cast_id": 8, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Billy Campbell", "character": "Mitch Hiller", "id": 20215, "credit_id": "52fe4326c3a36847f803e0af", "cast_id": 9, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 1}, {"name": "Tessa Allen", "character": "Gracie Hiller", "id": 20216, "credit_id": "52fe4326c3a36847f803e0b3", "cast_id": 10, "profile_path": "/iKtfY6d1K1VJHeCG6exNKVtAtpr.jpg", "order": 2}, {"name": "Juliette Lewis", "character": "Ginny", "id": 3196, "credit_id": "52fe4326c3a36847f803e0b7", "cast_id": 11, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 3}, {"name": "Dan Futterman", "character": "Joe", "id": 5346, "credit_id": "52fe4326c3a36847f803e0bb", "cast_id": 12, "profile_path": "/lohvETRKnXTTsvjYCFvmPSylqJH.jpg", "order": 4}, {"name": "Noah Wyle", "character": "Robbie", "id": 13526, "credit_id": "52fe4326c3a36847f803e0bf", "cast_id": 13, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 5}, {"name": "Fred Ward", "character": "Jupiter", "id": 10430, "credit_id": "52fe4326c3a36847f803e0c3", "cast_id": 14, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Jim Toller", "id": 8854, "credit_id": "52fe4326c3a36847f803e0c7", "cast_id": 15, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Janet Carroll", "character": "Mrs. Hiller", "id": 20217, "credit_id": "52fe4326c3a36847f803e0cb", "cast_id": 16, "profile_path": "/drofVPf21d323QGnnXC0lTS2Npu.jpg", "order": 8}], "directors": [{"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe4326c3a36847f803e083", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.2, "runtime": 115}, "10152": {"poster_path": "/eizaKEnF108gQq89f1XsAyVxjq6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This wacky prequel to the 1994 blockbuster goes back to the lame-brained Harry and Lloyd's days as classmates at a Rhode Island high school, where the unprincipled principal puts the pair in remedial courses as part of a scheme to fleece the school.", "video": false, "id": 10152, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dumb and Dumberer: When Harry Met Lloyd", "tagline": "The evolution of dumb...", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fdB86tl7SKIBWZzm0CbrYjOdE1K.jpg", "id": 96665, "name": "Dumb and Dumber Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329028", "adult": false, "backdrop_path": "/dzGocMNPdWMfo52LcofnkfwrMaj.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2003-06-13", "popularity": 0.897050328517493, "original_title": "Dumb and Dumberer: When Harry Met Lloyd", "budget": 0, "cast": [{"name": "Mimi Rogers", "character": "Mrs. Dunne", "id": 13920, "credit_id": "52fe43369251416c75007c75", "cast_id": 12, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 0}, {"name": "Eric Christian Olsen", "character": "Lloyd Christmas", "id": 29020, "credit_id": "52fe43369251416c75007c79", "cast_id": 13, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 1}, {"name": "Luis Guzm\u00e1n", "character": "Ray", "id": 40481, "credit_id": "52fe43369251416c75007c7d", "cast_id": 14, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 2}, {"name": "Rachel Nichols", "character": "Jessica", "id": 50347, "credit_id": "52fe43369251416c75007c81", "cast_id": 15, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 3}, {"name": "Eugene Levy", "character": "", "id": 26510, "credit_id": "533d362cc3a36878ed002dcd", "cast_id": 16, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 4}], "directors": [{"name": "Troy Miller", "department": "Directing", "job": "Director", "credit_id": "52fe43369251416c75007c35", "profile_path": null, "id": 58868}], "vote_average": 4.7, "runtime": 85}, "10153": {"poster_path": "/jrjzPjKnpJq99GPePKf64k7Fzqh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The OSSA discovers a spacecraft thought to be at least 300 years old at the bottom of the ocean. Immediately following the discovery, they decide to send a team down to the depths of the ocean to study the space craft.They are the best of best, smart and logical, and the perfect choice to learn more about the spacecraft.", "video": false, "id": 10153, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Sphere", "tagline": "A thousand feet beneath the sea, the blackest holes are in the mind...", "vote_count": 105, "homepage": "http://www.warnerbros.com/movies/home-entertainment/sphere/7bdffe73-2a0e-4e7a-98e7-cee4d723e0b3.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120184", "adult": false, "backdrop_path": "/41c9Posihpr1acKmY1zfVle8yET.jpg", "production_companies": [{"name": "Baltimore Pictures", "id": 11407}, {"name": "Warner Bros.", "id": 6194}, {"name": "Punch Productions", "id": 2154}, {"name": "Constant c Productions", "id": 23370}], "release_date": "1998-02-13", "popularity": 0.909301315874561, "original_title": "Sphere", "budget": 75000000, "cast": [{"name": "Dustin Hoffman", "character": "Dr. Norman Goodman", "id": 4483, "credit_id": "52fe43369251416c75007ce3", "cast_id": 11, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Sharon Stone", "character": "Dr. Elizabeth 'Beth' Halperin", "id": 4430, "credit_id": "52fe43369251416c75007ce7", "cast_id": 12, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Dr. Harry Adams", "id": 2231, "credit_id": "52fe43369251416c75007ceb", "cast_id": 13, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Peter Coyote", "character": "Captain Harold C. Barnes", "id": 9979, "credit_id": "52fe43369251416c75007cef", "cast_id": 14, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 3}, {"name": "Liev Schreiber", "character": "Dr. Ted Fielding", "id": 23626, "credit_id": "52fe43369251416c75007cf3", "cast_id": 15, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 4}, {"name": "Queen Latifah", "character": "Alice 'Teeny' Fletcher", "id": 15758, "credit_id": "52fe43369251416c75007cf7", "cast_id": 16, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 5}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe43369251416c75007ca9", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 5.7, "runtime": 134}, "1965": {"poster_path": "/3qVJPM6tYilp3x3ckSBb3l4NyzE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128038368, "overview": "Millionaire industrialist Steven Taylor is a man who has everything but what he craves most: the love and fidelity of his wife. A hugely successful player in the New York financial world, he considers her to be his most treasured acquisition. But she needs more than simply the role of dazzling accessory.", "video": false, "id": 1965, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Perfect Murder", "tagline": "A powerful husband. An unfaithful wife. A jealous lover. All of them have a motive. Each of them has a plan.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0120787", "adult": false, "backdrop_path": "/hiPls8A0ExpRscZS15KpxzpXmnE.jpg", "production_companies": [{"name": "Kopelson Entertainment", "id": 824}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1998-06-04", "popularity": 0.501707427590412, "original_title": "A Perfect Murder", "budget": 0, "cast": [{"name": "Michael Douglas", "character": "Steven Taylor", "id": 3392, "credit_id": "52fe4326c3a36847f803e39d", "cast_id": 4, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Emily Taylor", "id": 12052, "credit_id": "52fe4326c3a36847f803e3a1", "cast_id": 5, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "David Shaw", "id": 110, "credit_id": "52fe4326c3a36847f803e3a5", "cast_id": 6, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "Michael P. Moran", "character": "Bobby Fain", "id": 1170, "credit_id": "52fe4326c3a36847f803e3a9", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Sarita Choudhury", "character": "Raquel Martinez", "id": 20275, "credit_id": "52fe4326c3a36847f803e3ad", "cast_id": 8, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 4}, {"name": "Constance Towers", "character": "Sandra Bradford", "id": 20276, "credit_id": "52fe4326c3a36847f803e3b1", "cast_id": 9, "profile_path": "/lcf2byO2E8vD7hcYLPtUjH49ktf.jpg", "order": 5}, {"name": "David Suchet", "character": "Mohamed Karaman", "id": 20277, "credit_id": "52fe4326c3a36847f803e3b5", "cast_id": 10, "profile_path": "/z0MuDGLfLLLKhwmbXCErxedHtQ9.jpg", "order": 6}, {"name": "Will Lyman", "character": "Jason Gates", "id": 163671, "credit_id": "54fdf81892514112c200028e", "cast_id": 19, "profile_path": "/xYU1FSeQhXLyg6VskqRBofFyoU8.jpg", "order": 7}, {"name": "Maeve McGuire", "character": "Ann Gates", "id": 1217963, "credit_id": "54fdf835c3a36878c90002a0", "cast_id": 20, "profile_path": null, "order": 8}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe4326c3a36847f803e38d", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.4, "runtime": 107}, "10158": {"poster_path": "/s3ShPeMAN3kn3xBZ0DJABIqtPH1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90753806, "overview": "Billy Hoyle (Woody Harrelson) and Sidney Deane (Wesley Snipes) are an unlikely pair of basketball hustlers. They team up to con their way across the courts of Los Angeles, playing a game that's fast dangerous - and funny.", "video": false, "id": 10158, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "White Men Can't Jump", "tagline": "It ain't easy being this good.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105812", "adult": false, "backdrop_path": "/etXWMus7PsHLsXxYY3tdK8XDJp4.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-03-26", "popularity": 0.972659881599964, "original_title": "White Men Can't Jump", "budget": 0, "cast": [{"name": "Wesley Snipes", "character": "Sidney Deane", "id": 10814, "credit_id": "52fe43389251416c7500801f", "cast_id": 8, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Woody Harrelson", "character": "Billy Hoyle", "id": 57755, "credit_id": "52fe43389251416c75008023", "cast_id": 9, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 1}, {"name": "Rosie Perez", "character": "Gloria Clement", "id": 4810, "credit_id": "52fe43389251416c75008027", "cast_id": 10, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 2}, {"name": "Tyra Ferrell", "character": "Rhonda Deane", "id": 9782, "credit_id": "52fe43389251416c7500802b", "cast_id": 11, "profile_path": "/ehrlTSktNfShujcY3SaZyJYg2On.jpg", "order": 3}], "directors": [{"name": "Ron Shelton", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c75007ff7", "profile_path": null, "id": 4037}], "vote_average": 6.3, "runtime": 115}, "10159": {"poster_path": "/jPkfNgTuVdj8hp2znt5MxIAz5W7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80916492, "overview": "When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.", "video": false, "id": 10159, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "The Rundown", "tagline": "Cut to the chase", "vote_count": 144, "homepage": "http://www.therundown.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327850", "adult": false, "backdrop_path": "/r8YcQqO88VDzdLeN4W7x4qq9xxk.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Universal Pictures", "id": 33}], "release_date": "2003-09-26", "popularity": 0.804662519164783, "original_title": "The Rundown", "budget": 85000000, "cast": [{"name": "Dwayne Johnson", "character": "Beck", "id": 18918, "credit_id": "52fe43389251416c75008093", "cast_id": 11, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Travis", "id": 57599, "credit_id": "52fe43389251416c75008097", "cast_id": 12, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Mariana", "id": 5916, "credit_id": "52fe43389251416c7500809b", "cast_id": 13, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Hatcher", "id": 4690, "credit_id": "52fe43389251416c7500809f", "cast_id": 14, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Ernie Reyes, Jr.", "character": "Manito", "id": 58210, "credit_id": "52fe43389251416c750080a3", "cast_id": 15, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 4}, {"name": "Stephen Bishop", "character": "Knappmiller", "id": 55205, "credit_id": "52fe43389251416c750080a7", "cast_id": 16, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 5}, {"name": "Ewen Bremner", "character": "Declan", "id": 1125, "credit_id": "52fe43389251416c750080b1", "cast_id": 18, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 6}, {"name": "Jon Gries", "character": "Harvey", "id": 9629, "credit_id": "52fe43389251416c750080b5", "cast_id": 19, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 7}, {"name": "William Lucking", "character": "Walker", "id": 131725, "credit_id": "533b3f809251413ba4000241", "cast_id": 20, "profile_path": "/pWDDkUPU83M11T95MrYYwWvB2BY.jpg", "order": 8}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c75008059", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 6.4, "runtime": 104}, "10160": {"poster_path": "/vnorsG2pKAVqIMYsDJbKoOr4CsX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22168359, "overview": "Alice, having survived the previous installment of the Nightmare series, finds the deadly dreams of Freddy Krueger starting once again. This time, the taunting murderer is striking through the sleeping mind of Alice's unborn child. His intention is to be \"born again\" into the real world. The only one who can stop Freddy is his dead mother, but can Alice free her spirit in time to save her own son?", "video": false, "id": 10160, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street 5: The Dream Child", "tagline": "Now Freddy\u2019s a daddy, he\u2019s killing for two.", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097981", "adult": false, "backdrop_path": "/qGaMw8SSkapz9ZBgpMQhUhDWNTU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1989-08-11", "popularity": 0.538345824503121, "original_title": "A Nightmare on Elm Street 5: The Dream Child", "budget": 8000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe43389251416c75008127", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Lisa Wilcox", "character": "Alice Johnson", "id": 63917, "credit_id": "52fe43389251416c7500812b", "cast_id": 2, "profile_path": "/hqKyRn2vl3zYmFPyS0J1Y4OpHQ9.jpg", "order": 1}, {"name": "Erika Anderson", "character": "Greta Gibson", "id": 42882, "credit_id": "52fe43389251416c7500812f", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Valorie Armstrong", "character": "Mrs. Jordan", "id": 64033, "credit_id": "52fe43389251416c75008133", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Michael Ashton", "character": "Gurney Orderly", "id": 64034, "credit_id": "52fe43389251416c75008137", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Kelly Jo Minter", "character": "Yvonne", "id": 63046, "credit_id": "52fe43389251416c7500817d", "cast_id": 17, "profile_path": "/miyC0t5uCSUT07Gtuli7wZCeLFG.jpg", "order": 5}, {"name": "Danny Hassel", "character": "Dan Jordan", "id": 104275, "credit_id": "52fe43389251416c75008181", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Nicholas Mele", "character": "Dennis Johnson", "id": 87112, "credit_id": "52fe43389251416c75008185", "cast_id": 19, "profile_path": "/wI1YLddYXotk9JZiFr2aj3ShjoJ.jpg", "order": 7}, {"name": "Joe Seely", "character": "Mark Gray", "id": 119475, "credit_id": "52fe43389251416c75008189", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Burr DeBenning", "character": "Mr. Jordan", "id": 19484, "credit_id": "52fe43389251416c7500818d", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Clarence Felder", "character": "Mr. Gray", "id": 72408, "credit_id": "52fe43389251416c75008191", "cast_id": 22, "profile_path": "/hbioULG0wwkHlXcjXy89eZIPt2J.jpg", "order": 10}, {"name": "Beatrice Boepple", "character": "Amanda Krueger", "id": 189664, "credit_id": "52fe43389251416c75008195", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Matt Borlenghi", "character": "Jock", "id": 84163, "credit_id": "52fe43389251416c75008199", "cast_id": 24, "profile_path": "/vmZFbUiP6BeRxaeycLkX4Zfed8V.jpg", "order": 12}, {"name": "Noble Craig", "character": "Merging Freddy", "id": 553750, "credit_id": "52fe43389251416c7500819d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "E.R. Davies", "character": "Delivery Doctor", "id": 75034, "credit_id": "52fe43389251416c750081a1", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Beth DePatie", "character": "Anne", "id": 72231, "credit_id": "52fe43389251416c750081a5", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Will Egan", "character": "Semi-Truck Driver", "id": 553752, "credit_id": "52fe43389251416c750081a9", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Stacey Elliott", "character": "Girl in Locker", "id": 553753, "credit_id": "52fe43389251416c750081ad", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Steven Grives", "character": "Dr. Moore", "id": 53591, "credit_id": "52fe43389251416c750081b1", "cast_id": 30, "profile_path": "/zXtQgnVEQ5HqzDLMVOjBKo6y8v5.jpg", "order": 18}, {"name": "Whit Hertford", "character": "Jacob", "id": 166298, "credit_id": "52fe43389251416c750081b5", "cast_id": 31, "profile_path": "/8jhUyJUXdXKh4RJPk2T9NMU5bWP.jpg", "order": 19}, {"name": "Jennifer Honneus", "character": "Asylum Girl", "id": 553754, "credit_id": "52fe43389251416c750081b9", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Jake Jacobs", "character": "Trendy Guest", "id": 193295, "credit_id": "52fe43389251416c750081bd", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Annie Lamaje", "character": "Elm Street Kid", "id": 553755, "credit_id": "52fe43389251416c750081c1", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Gerry Loew", "character": "Orderly #1", "id": 553756, "credit_id": "52fe43389251416c750081c5", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Kara Marie", "character": "Baby Jacob", "id": 553757, "credit_id": "52fe43389251416c750081c9", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Roxanne Mayweather", "character": "Delivery Nurse", "id": 197038, "credit_id": "52fe43389251416c750081cd", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Don Maxwell", "character": "Coach Ostrow", "id": 97955, "credit_id": "52fe43389251416c750081d1", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "John R. Murray", "character": "Customer", "id": 553758, "credit_id": "52fe43389251416c750081d5", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Marnette Patterson", "character": "Little Girl", "id": 71519, "credit_id": "52fe43389251416c750081d9", "cast_id": 40, "profile_path": "/tuVcwHuiWXF8KOqGD04y8BHuQuI.jpg", "order": 28}, {"name": "Cameron Perry", "character": "Guest", "id": 553759, "credit_id": "52fe43389251416c750081dd", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Marc Siegler", "character": "Thirty-Something", "id": 102338, "credit_id": "52fe43389251416c750081e1", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Michael Bailey Smith", "character": "Super Freddy", "id": 37008, "credit_id": "52fe43389251416c750081e5", "cast_id": 43, "profile_path": "/8viurb658U8a4ep5G1xdpUG8fxr.jpg", "order": 31}, {"name": "Pat Sturges", "character": "Racine Gibson", "id": 177966, "credit_id": "52fe43389251416c750081e9", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Cesar Anthony Torres", "character": "Cop", "id": 553760, "credit_id": "52fe43389251416c750081ed", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Peter Trencher", "character": "Trendy", "id": 156146, "credit_id": "52fe43389251416c750081f1", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Wally George", "character": "Himself", "id": 102934, "credit_id": "52fe43389251416c750081f5", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Ron Armstrong", "character": "Hot Seat Band Member", "id": 553761, "credit_id": "52fe43389251416c750081f9", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Ted Nugent", "character": "Hot Seat Band Member", "id": 170468, "credit_id": "52fe43389251416c750081fd", "cast_id": 49, "profile_path": "/dz23UpuAOmPTcszNOt3ZT7Yb72A.jpg", "order": 37}, {"name": "Rudy Sarzo", "character": "Hot Seat Band Member", "id": 167955, "credit_id": "52fe43399251416c75008201", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Jill Adler", "character": "Dinner Guest (uncredited)", "id": 553762, "credit_id": "52fe43399251416c75008209", "cast_id": 52, "profile_path": "/zzYzhbbtNLpLnGo1x5PU4w8Zd4Z.jpg", "order": 40}, {"name": "Victor A. Haddox", "character": "Asylum Inmate (uncredited)", "id": 553763, "credit_id": "52fe43399251416c7500820d", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "James Vallo", "character": "Paramedic (uncredited)", "id": 553764, "credit_id": "52fe43399251416c75008211", "cast_id": 54, "profile_path": "/tcHvFLIe8o8yQbuGzeKWKV533gn.jpg", "order": 42}, {"name": "Eric Singer", "character": "Hot Seat Band Member", "id": 1038546, "credit_id": "5334b503c3a3680a1e0025df", "cast_id": 55, "profile_path": "/sKXzPqpYRI4GsViyy5LRFOqmonr.jpg", "order": 43}], "directors": [{"name": "Stephen Hopkins", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c7500813d", "profile_path": "/zHwFIL63LbeSS83FMC8J6TAgDNL.jpg", "id": 2042}], "vote_average": 5.6, "runtime": 89}, "1969": {"poster_path": "/6WnSdouYhXDowg9NrKY2fSV5o1W.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10496317, "overview": "Set in the late 19th century. When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance\u2026and a few good heists.", "video": false, "id": 1969, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 37, "name": "Western"}], "title": "Bandidas", "tagline": "Being BAD never looked so GOOD!", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0416496", "adult": false, "backdrop_path": "/q0eS323TqNtxPqYpgtRa2X9G9xx.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "A.J.O.Z. Films", "id": 11473}, {"name": "Ultra Films", "id": 828}, {"name": "Canal+", "id": 5358}, {"name": "TPS Star", "id": 6586}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2006-01-18", "popularity": 0.255750139263501, "original_title": "Bandidas", "budget": 35000000, "cast": [{"name": "Pen\u00e9lope Cruz", "character": "Maria Alvarez", "id": 955, "credit_id": "52fe4327c3a36847f803e6eb", "cast_id": 4, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Sara Sandoval", "id": 3136, "credit_id": "52fe4327c3a36847f803e6ef", "cast_id": 5, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Dwight Yoakam", "character": "Tyler Jackson", "id": 20309, "credit_id": "52fe4327c3a36847f803e6f3", "cast_id": 6, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 2}, {"name": "Steve Zahn", "character": "Quentin", "id": 18324, "credit_id": "52fe4327c3a36847f803e6f7", "cast_id": 7, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 3}, {"name": "Denis Arndt", "character": "Ashe", "id": 10480, "credit_id": "52fe4327c3a36847f803e749", "cast_id": 21, "profile_path": "/yyEYxsqbXF69RgwbhckzxRvHehQ.jpg", "order": 4}, {"name": "Audra Blaser", "character": "Clarissa Ashe", "id": 207286, "credit_id": "52fe4327c3a36847f803e74d", "cast_id": 22, "profile_path": null, "order": 5}, {"name": "Sam Shepard", "character": "Bill Buck", "id": 9880, "credit_id": "52fe4327c3a36847f803e751", "cast_id": 23, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 6}, {"name": "Ismael 'East' Carlo", "character": "Don Diego", "id": 160375, "credit_id": "52fe4327c3a36847f803e755", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Gary Carlos Cervantes", "character": "Pedro", "id": 48136, "credit_id": "52fe4327c3a36847f803e779", "cast_id": 34, "profile_path": "/13kjmeYYdJzdeccnJEXo56KH7CO.jpg", "order": 8}, {"name": "Jos\u00e9 Mar\u00eda Negri", "character": "Padre Pablo", "id": 1120515, "credit_id": "52fe4327c3a36847f803e759", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Lenny Zundel", "character": "Bernardo", "id": 962981, "credit_id": "52fe4327c3a36847f803e75d", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "\u00c9dgar Vivar", "character": "Expl. Bank Manager", "id": 51906, "credit_id": "52fe4327c3a36847f803e761", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Ernesto G\u00f3mez Cruz", "character": "Brujo", "id": 7368, "credit_id": "52fe4327c3a36847f803e765", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Filiberto Estrella", "character": "Midget", "id": 1120516, "credit_id": "52fe4327c3a36847f803e769", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Yomo Tlazotlalli", "character": "Gordo", "id": 1120517, "credit_id": "52fe4327c3a36847f803e76d", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Humberto Elizondo", "character": "Governor", "id": 1095101, "credit_id": "52fe4327c3a36847f803e771", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Justo Mart\u00ednez", "character": "Cable Bank Manager", "id": 975424, "credit_id": "52fe4327c3a36847f803e775", "cast_id": 33, "profile_path": null, "order": 16}], "directors": [{"name": "Joachim R\u00f8nning", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e6e1", "profile_path": null, "id": 20307}, {"name": "Espen Sandberg", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e6e7", "profile_path": null, "id": 20308}], "vote_average": 5.7, "runtime": 93}, "1970": {"poster_path": "/nSiz1yAkbKAZUmPfDbcXewNnaAI.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 183474602, "overview": "Karen Davis is an American Nurse moves to Tokyo and encounter a supernatural spirit who is vengeful and often possesses its victims. A series of horrifying and mysterious deaths start to occur, with the spirit passing its curse onto each victim. Karen must now find away to break this spell, before she becomes its next victim.", "video": false, "id": 1970, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Grudge", "tagline": "It never forgives. It never forgets.", "vote_count": 140, "homepage": "", "belongs_to_collection": {"backdrop_path": "/u0fckWIveOOUM9BX0I5puGSR2Wi.jpg", "poster_path": "/dohOSIYDEK42stdfKo0pQfrve0h.jpg", "id": 1974, "name": "The Grudge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0391198", "adult": false, "backdrop_path": "/jsR45u3refVMf6dbvsAtIJ9W5A6.jpg", "production_companies": [{"name": "Colombia Pictures", "id": 4154}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Fellah Pictures", "id": 4710}], "release_date": "2004-10-22", "popularity": 0.805419117193508, "original_title": "The Grudge", "budget": 10000000, "cast": [{"name": "Sarah Michelle Gellar", "character": "Karen Davis", "id": 11863, "credit_id": "52fe4327c3a36847f803e7b1", "cast_id": 4, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 0}, {"name": "Jason Behr", "character": "Doug", "id": 20386, "credit_id": "52fe4327c3a36847f803e7b5", "cast_id": 5, "profile_path": "/9qJw8ah7kGj7WObzIq4KWIuEqHY.jpg", "order": 1}, {"name": "William Mapother", "character": "Matthew Williams", "id": 15338, "credit_id": "52fe4327c3a36847f803e7b9", "cast_id": 6, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 2}, {"name": "Clea DuVall", "character": "Jennifer Williams", "id": 20387, "credit_id": "52fe4327c3a36847f803e7bd", "cast_id": 7, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 3}, {"name": "KaDee Strickland", "character": "Susan Williams", "id": 20388, "credit_id": "52fe4327c3a36847f803e7c1", "cast_id": 8, "profile_path": "/9E0EFvaAY0vVubogVfFtXH1LAXe.jpg", "order": 4}, {"name": "Grace Zabriskie", "character": "Emma Williams", "id": 6465, "credit_id": "52fe4327c3a36847f803e7c5", "cast_id": 9, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 5}, {"name": "Bill Pullman", "character": "Peter Kirk", "id": 8984, "credit_id": "52fe4327c3a36847f803e7c9", "cast_id": 10, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 6}, {"name": "Rosa Blasi", "character": "Maria Kirk", "id": 20389, "credit_id": "52fe4327c3a36847f803e7cd", "cast_id": 11, "profile_path": "/oM0gtFmaaMSq4jLE9qkq7y4SAFv.jpg", "order": 7}, {"name": "Ted Raimi", "character": "Alex", "id": 11769, "credit_id": "52fe4327c3a36847f803e7d1", "cast_id": 12, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 8}, {"name": "Takako Fuji", "character": "Kayako Saeki", "id": 20329, "credit_id": "52fe4327c3a36847f803e7a7", "cast_id": 1, "profile_path": "/nLSke54TL1eIF9LfdNsJzfwmOWv.jpg", "order": 9}, {"name": "Ryo Ishibashi", "character": "Nakagawa", "id": 4994, "credit_id": "52fe4327c3a36847f803e7ed", "cast_id": 18, "profile_path": "/aPyICNQIlt0kUlIbXSQ21bK2mo2.jpg", "order": 10}, {"name": "Yoko Maki", "character": "Yoko", "id": 592147, "credit_id": "52fe4327c3a36847f803e7f1", "cast_id": 19, "profile_path": "/i7ftZi8zm8mZcydTW0qU5fMGTJQ.jpg", "order": 11}, {"name": "Yuya Ozeki", "character": "Toshio", "id": 552504, "credit_id": "52fe4327c3a36847f803e7f5", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Takashi Matsuyama", "character": "Takeo", "id": 216330, "credit_id": "52fe4327c3a36847f803e7f9", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Hiroshi Matsunaga", "character": "Igarashi", "id": 107110, "credit_id": "52fe4327c3a36847f803e7fd", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Takashi Shimizu", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e7ad", "profile_path": "/zY1UnpOyyzreAX2cj1qRcqMwIH3.jpg", "id": 20310}], "vote_average": 5.8, "runtime": 92}, "1975": {"poster_path": "/lPN7FyCuPDHwoupcuPT72cRE8lY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39143839, "overview": "In Tokyo, a young woman (Tamblyn) is exposed to the same mysterious curse that afflicted her sister (Gellar). The supernatural force, which fills a person with rage before spreading to its next victim, brings together a group of previously unrelated people who attempt to unlock its secret to save their lives.", "video": false, "id": 1975, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Grudge 2", "tagline": "What Was Once Trapped, Will Now Be Unleashed", "vote_count": 65, "homepage": "http://www.sonypictures.com/homevideo/thegrudge2/", "belongs_to_collection": {"backdrop_path": "/u0fckWIveOOUM9BX0I5puGSR2Wi.jpg", "poster_path": "/dohOSIYDEK42stdfKo0pQfrve0h.jpg", "id": 1974, "name": "The Grudge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433386", "adult": false, "backdrop_path": "/f5XdBzglTZEWV6aeGhTcGk1RP7B.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2006-10-13", "popularity": 0.38864396014291, "original_title": "The Grudge 2", "budget": 20000000, "cast": [{"name": "Sarah Michelle Gellar", "character": "Karen Davis", "id": 11863, "credit_id": "52fe4327c3a36847f803e83b", "cast_id": 1, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 0}, {"name": "Amber Tamblyn", "character": "Aubrey Davis", "id": 20354, "credit_id": "52fe4327c3a36847f803e83f", "cast_id": 2, "profile_path": "/4nwsbtFzoxzN2YF2HOW4P4vdit2.jpg", "order": 1}, {"name": "Edison Chen", "character": "Eason", "id": 20372, "credit_id": "52fe4327c3a36847f803e855", "cast_id": 6, "profile_path": "/MjNMCwLuknzhgKr2H99s6iaWpp.jpg", "order": 2}, {"name": "Arielle Kebbel", "character": "Allison", "id": 20373, "credit_id": "52fe4327c3a36847f803e859", "cast_id": 7, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 3}, {"name": "Jennifer Beals", "character": "Trish", "id": 3130, "credit_id": "52fe4327c3a36847f803e85d", "cast_id": 8, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 4}, {"name": "Teresa Palmer", "character": "Vanessa", "id": 20374, "credit_id": "52fe4327c3a36847f803e861", "cast_id": 9, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 5}, {"name": "Misako Uno", "character": "Miyuki", "id": 20375, "credit_id": "52fe4327c3a36847f803e865", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Sarah Roemer", "character": "Lacey", "id": 20376, "credit_id": "52fe4327c3a36847f803e869", "cast_id": 11, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 7}, {"name": "Matthew Knight", "character": "Jake", "id": 20377, "credit_id": "52fe4327c3a36847f803e86d", "cast_id": 12, "profile_path": "/704cnOP2UV3oTCRET3yex7WpNhJ.jpg", "order": 8}, {"name": "Takako Fuji", "character": "Kayako Saeki", "id": 20329, "credit_id": "52fe4327c3a36847f803e871", "cast_id": 13, "profile_path": "/nLSke54TL1eIF9LfdNsJzfwmOWv.jpg", "order": 9}, {"name": "Ohga Tanaka", "character": "Toshio Saeki", "id": 20378, "credit_id": "52fe4327c3a36847f803e875", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Joanna Cassidy", "character": "Mrs. Davis", "id": 593, "credit_id": "52fe4327c3a36847f803e879", "cast_id": 15, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 11}, {"name": "Christopher Cousins", "character": "Bill", "id": 20379, "credit_id": "52fe4327c3a36847f803e87d", "cast_id": 16, "profile_path": "/1HGQISEy6FBSse2QuTKj2yfVFrM.jpg", "order": 12}, {"name": "Paul Jarrett", "character": "John Fleming", "id": 20380, "credit_id": "52fe4327c3a36847f803e881", "cast_id": 17, "profile_path": "/o3N4gV1baZ6fzh8aaCPB6wmFVyO.jpg", "order": 13}, {"name": "Jenna Dewan", "character": "Sally", "id": 20381, "credit_id": "52fe4327c3a36847f803e885", "cast_id": 18, "profile_path": "/j8BeJ5VL3jp7JWxgYlZPUscP6FC.jpg", "order": 14}], "directors": [{"name": "Takashi Shimizu", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e845", "profile_path": "/zY1UnpOyyzreAX2cj1qRcqMwIH3.jpg", "id": 20310}], "vote_average": 5.6, "runtime": 102}, "18360": {"poster_path": "/qbU6AxmO69bBwu6Tw8HtcRoltAA.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 413106170, "overview": "Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.", "video": false, "id": 18360, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Night at the Museum: Battle of the Smithsonian", "tagline": "When the lights go off the battle is on.", "vote_count": 478, "homepage": "http://www.nightatthemuseummovie.com", "belongs_to_collection": {"backdrop_path": "/fOmqiIXfJmeANciOTCN6WkKbwK.jpg", "poster_path": "/q2nwE0Qi8U6tsU5HDmiWS2D3dSJ.jpg", "id": 85943, "name": "Night at the Museum Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1078912", "adult": false, "backdrop_path": "/bY2pwWJPsDNntzWgV2b7BXRyWwo.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "1492 Pictures", "id": 436}, {"name": "Dune Entertainment", "id": 444}, {"name": "Moving Picture Company (MPC)", "id": 20478}, {"name": "Museum Canada Productions", "id": 10224}], "release_date": "2009-05-21", "popularity": 2.24969830618224, "original_title": "Night at the Museum: Battle of the Smithsonian", "budget": 150000000, "cast": [{"name": "Ben Stiller", "character": "Larry Daley", "id": 7399, "credit_id": "52fe47759251416c7509a1b9", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Amy Adams", "character": "Amelia Earhart", "id": 9273, "credit_id": "52fe47759251416c7509a1bd", "cast_id": 2, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Jedediah Smith", "id": 887, "credit_id": "52fe47759251416c7509a1c1", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Kahmunrah / The Thinker / Abe Lincoln", "id": 5587, "credit_id": "52fe47759251416c7509a1c5", "cast_id": 4, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Robin Williams", "character": "Theodore Roosevelt", "id": 2157, "credit_id": "52fe47759251416c7509a1c9", "cast_id": 5, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 4}, {"name": "Christopher Guest", "character": "Ivan the Terrible", "id": 13524, "credit_id": "52fe47759251416c7509a1cd", "cast_id": 6, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Octavius", "id": 4581, "credit_id": "52fe47759251416c7509a1d1", "cast_id": 7, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Ricky Gervais", "character": "Dr. McPhee", "id": 17835, "credit_id": "52fe47759251416c7509a1d5", "cast_id": 8, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 7}, {"name": "Bill Hader", "character": "General George Armstrong Custer", "id": 19278, "credit_id": "52fe47759251416c7509a1d9", "cast_id": 9, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 8}, {"name": "Jon Bernthal", "character": "Al Capone", "id": 19498, "credit_id": "52fe47759251416c7509a1dd", "cast_id": 10, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 9}, {"name": "Kai James", "character": "Teenage Boy #3", "id": 1030313, "credit_id": "52fe47759251416c7509a205", "cast_id": 17, "profile_path": "/jn9w2NNjV4aB9xWXkvPf4e0dwn1.jpg", "order": 10}, {"name": "Mizuo Peck", "character": "Sacajawea", "id": 17841, "credit_id": "52fe47759251416c7509a209", "cast_id": 18, "profile_path": "/ohnloj1aKehzgbupxszmgdvdHS3.jpg", "order": 11}, {"name": "Rami Malek", "character": "Ahkmenrah", "id": 17838, "credit_id": "52fe47759251416c7509a20d", "cast_id": 19, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 12}, {"name": "Crystal the Monkey", "character": "Dexter", "id": 1428580, "credit_id": "550a86d6c3a3681db2000be4", "cast_id": 20, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 13}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe47759251416c7509a1e3", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.9, "runtime": 105}, "83899": {"poster_path": "/qhVj0F09RFtQdBrBMPhrdzivRcI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14347000, "overview": "When the Davison family comes under attack during their wedding anniversary getaway, the gang of mysterious killers soon learns that one of their victims harbors a secret talent for fighting back.", "video": false, "id": 83899, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "You're Next", "tagline": "Did You Remember To Lock Your Door?", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1853739", "adult": false, "backdrop_path": "/zzfGL8FggF2owX9ZQfhqvaANFlY.jpg", "production_companies": [{"name": "HanWay Films", "id": 2395}, {"name": "Snoot Entertainment", "id": 15159}], "release_date": "2011-09-10", "popularity": 0.954377250486095, "original_title": "You're Next", "budget": 0, "cast": [{"name": "Sharni Vinson", "character": "Erin", "id": 138010, "credit_id": "52fe48c99251416c910983c3", "cast_id": 3, "profile_path": "/u7TgXhZhSZwtRMuuPOIjkiAqxik.jpg", "order": 0}, {"name": "Nicholas Tucci", "character": "Felix", "id": 149966, "credit_id": "52fe48c99251416c91098415", "cast_id": 22, "profile_path": null, "order": 1}, {"name": "Wendy Glenn", "character": "Zee", "id": 168529, "credit_id": "52fe48c99251416c910983d3", "cast_id": 8, "profile_path": "/lwBPfXM73LuahEhoDH9Wx7sbdKe.jpg", "order": 2}, {"name": "AJ Bowen", "character": "Crispian", "id": 74133, "credit_id": "52fe48c99251416c910983db", "cast_id": 10, "profile_path": "/zsWWKKt0p69mRRgjXGysMpTSQQn.jpg", "order": 3}, {"name": "Joe Swanberg", "character": "Drake", "id": 40863, "credit_id": "52fe48c99251416c910983d7", "cast_id": 9, "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "order": 4}, {"name": "Margaret Laney", "character": "Kelly", "id": 558055, "credit_id": "544b47490e0a2674860060bb", "cast_id": 28, "profile_path": null, "order": 5}, {"name": "Amy Seimetz", "character": "Aimee", "id": 139150, "credit_id": "52fe48c99251416c910983cf", "cast_id": 7, "profile_path": "/zMJK3v7GvyYAgVVkStSFWTEHHHl.jpg", "order": 6}, {"name": "Ti West", "character": "Tariq", "id": 101542, "credit_id": "52fe48c99251416c910983c7", "cast_id": 4, "profile_path": "/vRxN4eGT6X5MMdjpExZ0YvjDeg9.jpg", "order": 7}, {"name": "Rob Moran", "character": "Paul Davison", "id": 162924, "credit_id": "52fe48c99251416c91098411", "cast_id": 21, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 8}, {"name": "Barbara Crampton", "character": "Aubrey", "id": 27995, "credit_id": "52fe48c99251416c910983cb", "cast_id": 6, "profile_path": "/5bQhuSrBSMyXP70SNOFim1Pf8Ta.jpg", "order": 9}, {"name": "L.C. Holt", "character": "Lamb Mask", "id": 1140572, "credit_id": "544b470bc3a36802db000f75", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Simon Barrett", "character": "Tiger Mask", "id": 83858, "credit_id": "52fe48c99251416c9109841f", "cast_id": 24, "profile_path": "/ucJy0Ia79AX6iLZr8A9NaBnVYaw.jpg", "order": 11}, {"name": "Lane Hughes", "character": "Fox Mask", "id": 98632, "credit_id": "52fe48c99251416c9109840d", "cast_id": 20, "profile_path": "/hKFtJDPxt7KAmuxZlsIU1XasE1f.jpg", "order": 12}, {"name": "Kate Lyn Sheil", "character": "Talia", "id": 582722, "credit_id": "52fe48c99251416c91098409", "cast_id": 19, "profile_path": "/mQYnmIY2gGOOKaCxoxKzUue1E9u.jpg", "order": 13}, {"name": "Larry Fessenden", "character": "Erik Harson", "id": 31268, "credit_id": "544b4651c3a36850a7000428", "cast_id": 26, "profile_path": "/ry1FD2hv1mop8QzPCVHzpDeCX1z.jpg", "order": 14}], "directors": [{"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe48c99251416c910983bf", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}], "vote_average": 6.6, "runtime": 95}, "1985": {"poster_path": "/r7QOXMcuIqZUeIVXVc4BCZrd9ni.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82466670, "overview": "Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.", "video": false, "id": 1985, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Constant Gardener", "tagline": "Love. At any cost.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "sw", "name": "Kiswahili"}], "imdb_id": "tt0387131", "adult": false, "backdrop_path": "/cQRFjaXsEfCTtd2h18xZv49REqP.jpg", "production_companies": [{"name": "Scion Films", "id": 7419}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "UK Film Council", "id": 2452}, {"name": "Focus Features", "id": 10146}, {"name": "Blue Sky Films", "id": 33680}, {"name": "Potboiler Productions", "id": 36615}], "release_date": "2005-08-31", "popularity": 0.558857156163366, "original_title": "The Constant Gardener", "budget": 25000000, "cast": [{"name": "Ralph Fiennes", "character": "Justin Quayle", "id": 5469, "credit_id": "52fe4328c3a36847f803ec67", "cast_id": 11, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Rachel Weisz", "character": "Tessa Quayle", "id": 3293, "credit_id": "52fe4328c3a36847f803ec6b", "cast_id": 12, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 1}, {"name": "Danny Huston", "character": "Sandy Woodrow", "id": 6413, "credit_id": "52fe4328c3a36847f803ec6f", "cast_id": 13, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Sir Bernard Pellegrin", "id": 2440, "credit_id": "52fe4328c3a36847f803ec73", "cast_id": 14, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Donald Sumpter", "character": "Tim Donohue", "id": 20425, "credit_id": "52fe4328c3a36847f803ec77", "cast_id": 15, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 4}, {"name": "Pete Postlethwaite", "character": "Dr. Lorbeer aka Dr. Brandt", "id": 4935, "credit_id": "52fe4328c3a36847f803ec7b", "cast_id": 16, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 5}, {"name": "Richard McCabe", "character": "Arthur \"Ham\" Hammond", "id": 7025, "credit_id": "52fe4328c3a36847f803ec7f", "cast_id": 17, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 6}, {"name": "Hubert Kound\u00e9", "character": "Dr. Arnold Bluhm", "id": 5418, "credit_id": "52fe4328c3a36847f803eccf", "cast_id": 33, "profile_path": "/rVgtZ1d6bbbaMFcGVujZEznqQNo.jpg", "order": 7}, {"name": "Daniele Harford", "character": "Miriam", "id": 20426, "credit_id": "52fe4328c3a36847f803ec83", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Bernard Otieno Oduor", "character": "Jomo", "id": 20427, "credit_id": "52fe4328c3a36847f803ec87", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Damaris Itenyo Agweyu", "character": "Jomo's Wife", "id": 20428, "credit_id": "52fe4328c3a36847f803ec8b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Keith Pearson", "character": "Porter Coleridge", "id": 20429, "credit_id": "52fe4328c3a36847f803ec8f", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "John Sibi-Okumu", "character": "Dr. Joshua Ngaba", "id": 986513, "credit_id": "52fe4328c3a36847f803ecd3", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Archie Panjabi", "character": "Ghita Pearson", "id": 128645, "credit_id": "52fe4328c3a36847f803ecd7", "cast_id": 35, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 13}, {"name": "Gerard McSorley", "character": "Sir Kenneth Curtiss", "id": 43131, "credit_id": "52fe4328c3a36847f803ecdb", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Juliet Aubrey", "character": "Gloria Woodrow", "id": 18066, "credit_id": "52fe4328c3a36847f803ecdf", "cast_id": 37, "profile_path": "/fnWHSvoWnKURqU3h2PwJUf3IQHi.jpg", "order": 15}, {"name": "Jacqueline Maribe", "character": "Wanza Kiluhu", "id": 1120086, "credit_id": "52fe4328c3a36847f803ece3", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Donald Apiyo", "character": "Kioko", "id": 1120087, "credit_id": "52fe4328c3a36847f803ece7", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Anneke Kim Sarnau", "character": "Birgit", "id": 19911, "credit_id": "53b96cdd0e0a2676c7009edd", "cast_id": 61, "profile_path": "/iIZyqFDNdTHJRGMr6KQEnXEPMqa.jpg", "order": 18}], "directors": [{"name": "Fernando Meirelles", "department": "Directing", "job": "Director", "credit_id": "52fe4328c3a36847f803ec2d", "profile_path": "/j77Z3f2m0e211ocFhPJu5ZiO12R.jpg", "id": 8557}], "vote_average": 6.6, "runtime": 129}, "331": {"poster_path": "/26L7XODsNlxX3VwkfuUnYOslbRF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368780809, "overview": "In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.", "video": false, "id": 331, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Jurassic Park III", "tagline": "This time, it's not just a walk in the park!", "vote_count": 805, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pJjIH9QN0OkHFV9eue6XfRVnPkr.jpg", "poster_path": "/aQR4VLVxfrTZedr5fml385PFRzI.jpg", "id": 328, "name": "Jurassic Park Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0163025", "adult": false, "backdrop_path": "/iqE0xCFCV8MX2xeYh1Tu7QTRE74.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2001-07-15", "popularity": 3.42184015915985, "original_title": "Jurassic Park III", "budget": 93000000, "cast": [{"name": "Sam Neill", "character": "Dr. Alan Grant", "id": 4783, "credit_id": "52fe4238c3a36847f800d44f", "cast_id": 1, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 0}, {"name": "William H. Macy", "character": "Paul Kirby", "id": 3905, "credit_id": "52fe4238c3a36847f800d453", "cast_id": 2, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 1}, {"name": "T\u00e9a Leoni", "character": "Amanda Kirby", "id": 4939, "credit_id": "52fe4238c3a36847f800d457", "cast_id": 3, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 2}, {"name": "Trevor Morgan", "character": "Erik Kirby", "id": 4940, "credit_id": "52fe4238c3a36847f800d45b", "cast_id": 4, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 3}, {"name": "Alessandro Nivola", "character": "Billy Brennan", "id": 4941, "credit_id": "52fe4238c3a36847f800d45f", "cast_id": 5, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 4}, {"name": "Michael Jeter", "character": "Mr. Udesky", "id": 2169, "credit_id": "52fe4238c3a36847f800d463", "cast_id": 6, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 5}, {"name": "John Diehl", "character": "Cooper", "id": 4942, "credit_id": "52fe4238c3a36847f800d467", "cast_id": 7, "profile_path": "/hDUvgqpIv753skoeRGjVw6gYp7A.jpg", "order": 6}, {"name": "Bruce A. Young", "character": "M.B. Nash", "id": 4943, "credit_id": "52fe4238c3a36847f800d46b", "cast_id": 8, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 7}, {"name": "Laura Dern", "character": "Dr. Ellie Sattler", "id": 4784, "credit_id": "52fe4238c3a36847f800d46f", "cast_id": 9, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 8}, {"name": "Taylor Nichols", "character": "Mark Degler", "id": 4944, "credit_id": "52fe4238c3a36847f800d473", "cast_id": 10, "profile_path": "/yls98pv22GPdHpUF8U4uZJydyef.jpg", "order": 9}, {"name": "Mark Harelik", "character": "Ben Hildebrand", "id": 88949, "credit_id": "52fe4238c3a36847f800d4ad", "cast_id": 24, "profile_path": "/iiWjqkiQc9StJjC0KTSjg5AZFSa.jpg", "order": 10}, {"name": "Julio Oscar Mechoso", "character": "Enrique Cardoso", "id": 17413, "credit_id": "52fe4238c3a36847f800d4b1", "cast_id": 25, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 11}, {"name": "Blake Michael Bryan", "character": "Charlie", "id": 1076559, "credit_id": "52fe4238c3a36847f800d4b5", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Sarah Danielle Madison", "character": "Cheryl Logan", "id": 1223986, "credit_id": "52fe4238c3a36847f800d4d5", "cast_id": 33, "profile_path": "/jiQvZnh1ydxa3tSBSN194b6FxFa.jpg", "order": 13}, {"name": "Linda Park", "character": "Hannah", "id": 105646, "credit_id": "52fe4238c3a36847f800d4b9", "cast_id": 28, "profile_path": "/9UhEiVqCElSXs24hJxpODI8WOTP.jpg", "order": 14}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe4238c3a36847f800d479", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 5.7, "runtime": 92}, "1989": {"poster_path": "/wfgeoQOoudvPesDax3S5FL6ePpt.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 21786738, "overview": "Elizabeth (Jones) has just been through a particularly nasty breakup, and now she's ready to leave her friends and memories behind as she chases her dreams across the country. In order to support herself on her journey, Elizabeth picks up a series of waitress jobs along the way. As Elizabeth crosses paths with a series of lost souls.", "video": false, "id": 1989, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "My Blueberry Nights", "tagline": "How do you say goodbye to someone you can't imagine living without?", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765120", "adult": false, "backdrop_path": "/q9GJF2ovNcvRmTibmbmCmfM5OZm.jpg", "production_companies": [{"name": "Lou Yi Inc.", "id": 839}], "release_date": "2007-05-16", "popularity": 0.736691583424206, "original_title": "My Blueberry Nights", "budget": 10000000, "cast": [{"name": "Norah Jones", "character": "Elizabeth", "id": 20472, "credit_id": "52fe4329c3a36847f803ef01", "cast_id": 3, "profile_path": "/2EcSIKQe3BsHY4zJkPKdvA8QpRH.jpg", "order": 0}, {"name": "Jude Law", "character": "Jeremy", "id": 9642, "credit_id": "52fe4329c3a36847f803ef05", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "David Strathairn", "character": "Arnie", "id": 11064, "credit_id": "52fe4329c3a36847f803ef3f", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Rachel Weisz", "character": "Sue Lynne", "id": 3293, "credit_id": "52fe4329c3a36847f803ef43", "cast_id": 15, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 3}, {"name": "Cat Power", "character": "Katya", "id": 53865, "credit_id": "52fe4329c3a36847f803ef6b", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Natalie Portman", "character": "Leslie", "id": 524, "credit_id": "52fe4329c3a36847f803ef6f", "cast_id": 23, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 5}, {"name": "Frankie Faison", "character": "Travis", "id": 13936, "credit_id": "52fe4329c3a36847f803ef73", "cast_id": 24, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 6}], "directors": [{"name": "Wong Kar-Wai", "department": "Directing", "job": "Director", "credit_id": "52fe4329c3a36847f803eef7", "profile_path": "/rGk5pKmYcWB3jVPCfZcTZxDrAUr.jpg", "id": 12453}], "vote_average": 6.3, "runtime": 111}, "1991": {"poster_path": "/nyQBcpxqS4im2akQlWG9Y1oeM2V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25037897, "overview": "Austin's hottest DJ, Jungle Julia, sets out into the night to unwind with her two friends Shanna and Arlene. Covertly tracking their moves is Stuntman Mike, a scarred rebel leering from behind the wheel of his muscle car, revving just feet away.", "video": false, "id": 1991, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Death Proof", "tagline": "A crash course in revenge", "vote_count": 324, "homepage": "http://www.deathproof.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1028528", "adult": false, "backdrop_path": "/6Rss31Ui3pvViTObhyuNRTwYsOt.jpg", "production_companies": [{"name": "Troublemaker Studios", "id": 10807}, {"name": "The Weinstein Company", "id": 308}, {"name": "Dimension Films", "id": 7405}, {"name": "Rodriguez International Pictures", "id": 45194}], "release_date": "2007-06-20", "popularity": 0.638657125121035, "original_title": "Death Proof", "budget": 25000000, "cast": [{"name": "Kurt Russell", "character": "Stuntman Mike", "id": 6856, "credit_id": "52fe4329c3a36847f803f0d3", "cast_id": 13, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Zo\u00eb Bell", "character": "Zoe", "id": 20494, "credit_id": "52fe4329c3a36847f803f0f3", "cast_id": 21, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Abernathy", "id": 5916, "credit_id": "52fe4329c3a36847f803f0df", "cast_id": 16, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Vanessa Ferlito", "character": "Arlene", "id": 20491, "credit_id": "52fe4329c3a36847f803f0d7", "cast_id": 14, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 3}, {"name": "Sydney Tamiia Poitier", "character": "Jungle Julia", "id": 20493, "credit_id": "52fe4329c3a36847f803f0e7", "cast_id": 18, "profile_path": "/gguogZGM4FPtGyKAxq6LQDP6Tse.jpg", "order": 4}, {"name": "Tracie Thoms", "character": "Kim", "id": 10580, "credit_id": "52fe4329c3a36847f803f0eb", "cast_id": 19, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 5}, {"name": "Rose McGowan", "character": "Pam", "id": 16850, "credit_id": "52fe4329c3a36847f803f0e3", "cast_id": 17, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 6}, {"name": "Jordan Ladd", "character": "Shanna", "id": 20492, "credit_id": "52fe4329c3a36847f803f0db", "cast_id": 15, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 7}, {"name": "Mary Elizabeth Winstead", "character": "Lee", "id": 17628, "credit_id": "52fe4329c3a36847f803f0ef", "cast_id": 20, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 8}, {"name": "Quentin Tarantino", "character": "Warren", "id": 138, "credit_id": "52fe4329c3a36847f803f111", "cast_id": 30, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 9}, {"name": "Eli Roth", "character": "Dov", "id": 16847, "credit_id": "52fe4329c3a36847f803f0fd", "cast_id": 25, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 10}, {"name": "Omar Doom", "character": "Nate", "id": 23286, "credit_id": "52fe4329c3a36847f803f109", "cast_id": 28, "profile_path": "/gLWD2wYyXpD8d7oZikqGIgNSEZu.jpg", "order": 11}, {"name": "Michael Parks", "character": "Earl McGraw", "id": 2536, "credit_id": "52fe4329c3a36847f803f101", "cast_id": 26, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 12}, {"name": "Marley Shelton", "character": "Dakota McGraw", "id": 6407, "credit_id": "52fe4329c3a36847f803f105", "cast_id": 27, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 13}, {"name": "Helen Kim", "character": "Peg", "id": 1052339, "credit_id": "52fe4329c3a36847f803f11b", "cast_id": 32, "profile_path": "/1FB3lGe4twIY7bwvipKsI59ruPM.jpg", "order": 14}, {"name": "Russ Meyer", "character": "Foto", "id": 4590, "credit_id": "52fe4329c3a36847f803f10d", "cast_id": 29, "profile_path": "/4w6izR5bsjPNTQufl69K7qodcIb.jpg", "order": 15}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe4329c3a36847f803f08d", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 6.7, "runtime": 113}, "1992": {"poster_path": "/7Yjzttt0VfPphSsUg8vFUO9WaEt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two doctors find their graveyard shift inundated with townspeople ravaged by sores. Among the wounded is Cherry, a dancer whose leg was ripped from her body. As the invalids quickly become enraged aggressors, Cherry and her ex-boyfriend Wray lead a team of accidental warriors into the night.", "video": false, "id": 1992, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Planet Terror", "tagline": "Humanity's last hope... Rests on a high power machine gun.", "vote_count": 257, "homepage": "http://www.planetterror.senator.de/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1077258", "adult": false, "backdrop_path": "/a2zIKDg5QGFc2vzdaPXT7uZKipe.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2007-04-06", "popularity": 0.623518761879438, "original_title": "Planet Terror", "budget": 0, "cast": [{"name": "Rose McGowan", "character": "Cherry Darling", "id": 16850, "credit_id": "52fe4329c3a36847f803f15b", "cast_id": 1, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 0}, {"name": "Naveen Andrews", "character": "Abby", "id": 5471, "credit_id": "52fe4329c3a36847f803f15f", "cast_id": 2, "profile_path": "/8Y6GvOC52mnLyiAg8Oz0IIuuW4m.jpg", "order": 1}, {"name": "Michael Biehn", "character": "Sheriff Hague", "id": 2712, "credit_id": "52fe4329c3a36847f803f163", "cast_id": 3, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 2}, {"name": "Jeff Fahey", "character": "J.T.", "id": 20495, "credit_id": "52fe4329c3a36847f803f167", "cast_id": 4, "profile_path": "/6l44xDPdJE4dQAEDN9eShnJOSo8.jpg", "order": 3}, {"name": "Josh Brolin", "character": "Dr. William Block", "id": 16851, "credit_id": "52fe4329c3a36847f803f16b", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 4}, {"name": "Marley Shelton", "character": "Dr. Dakota Block", "id": 6407, "credit_id": "52fe4329c3a36847f803f16f", "cast_id": 6, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 5}, {"name": "Jason Douglas", "character": "Lewis", "id": 20496, "credit_id": "52fe4329c3a36847f803f173", "cast_id": 7, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 6}, {"name": "Fergie", "character": "Tammy", "id": 20497, "credit_id": "52fe4329c3a36847f803f177", "cast_id": 8, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 7}, {"name": "Carlos Gallardo", "character": "Deputy Carlos", "id": 20498, "credit_id": "52fe4329c3a36847f803f17b", "cast_id": 9, "profile_path": "/4ZT5vkGvOdmC8dLHciGN8emkkpj.jpg", "order": 8}, {"name": "Julio Oscar Mechoso", "character": "Romey", "id": 17413, "credit_id": "52fe4329c3a36847f803f17f", "cast_id": 10, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 9}, {"name": "Michael Parks", "character": "Earl McGraw", "id": 2536, "credit_id": "52fe4329c3a36847f803f183", "cast_id": 11, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 10}, {"name": "Freddy Rodr\u00edguez", "character": "El Wray", "id": 6862, "credit_id": "52fe4329c3a36847f803f187", "cast_id": 12, "profile_path": "/iP6RXaUNTj953RoL8jK3iTV2441.jpg", "order": 11}, {"name": "Rebel Rodriguez", "character": "Tony Block", "id": 20499, "credit_id": "52fe4329c3a36847f803f18b", "cast_id": 13, "profile_path": "/nPYABQhepInnQH5ujXLQgDRpg9r.jpg", "order": 12}, {"name": "Quentin Tarantino", "character": "The Rapist", "id": 138, "credit_id": "52fe4329c3a36847f803f18f", "cast_id": 14, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 13}, {"name": "Bruce Willis", "character": "Lieutenant Muldoon", "id": 62, "credit_id": "52fe4329c3a36847f803f193", "cast_id": 15, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 14}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4329c3a36847f803f199", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.3, "runtime": 105}, "10185": {"poster_path": "/be9padYpkmKYj6xsc9CvO6C1LRO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The photographer Leon lives with his girlfriend and waitress Maya waiting for a chance to get in the photo business. When Maya contacts their friend Jurgis, he schedules a meeting for Leon with the successful owner of arts gallery Susan Hoff; she analyzes Leon's work and asks him to improve the quality of his photos. During the night, the upset Leon decides to wander on the streets taking pictures with his camera, and he follows three punks down to the subway station; when the gang attacks a young woman, Leon defends her and the guys move on. On the next morning, Leon discovers that the woman is missing. He goes to the police station, but Detective Lynn Hadley does not give much attention to him and discredits his statement. Leon becomes obsessed to find what happened with the stranger and he watches the subway station. When he sees the elegant butcher Mahogany in the train, Leon believes he might be a murderer and stalks him everywhere, in the beginning of his journey to the darkness.", "video": false, "id": 10185, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Midnight Meat Train", "tagline": "The most terrifying ride you'll ever take", "vote_count": 60, "homepage": "http://www.midnightmeattrainthemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0805570", "adult": false, "backdrop_path": "/vfErxYsTbjbq7M8oHB8v22WKU6D.jpg", "production_companies": [{"name": "GreeneStreet Films", "id": 2152}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Lions Gate Films", "id": 35}, {"name": "Midnight Picture Show", "id": 22056}], "release_date": "2008-08-07", "popularity": 0.500645791405885, "original_title": "The Midnight Meat Train", "budget": 15000000, "cast": [{"name": "Bradley Cooper", "character": "Leon Kaufman", "id": 51329, "credit_id": "52fe433d9251416c75008c8d", "cast_id": 2, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Vinnie Jones", "character": "Mahogany", "id": 980, "credit_id": "52fe433d9251416c75008c91", "cast_id": 3, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 1}, {"name": "Brooke Shields", "character": "Susan Hoff", "id": 15110, "credit_id": "52fe433d9251416c75008c95", "cast_id": 4, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 2}, {"name": "Leslie Bibb", "character": "Maya", "id": 57451, "credit_id": "52fe433d9251416c75008c99", "cast_id": 5, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 3}, {"name": "Roger Bart", "character": "Jurgis", "id": 45566, "credit_id": "52fe433d9251416c75008ccd", "cast_id": 14, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 4}, {"name": "Ted Raimi", "character": "Randle Cooper", "id": 11769, "credit_id": "53e896040e0a266f8d003fbf", "cast_id": 18, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 5}, {"name": "Peter Jacobson", "character": "Otto", "id": 31514, "credit_id": "53e8961d0e0a266f9a003e22", "cast_id": 19, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 6}, {"name": "Barbara Eve Harris", "character": "Detective Lynn Hadley", "id": 157146, "credit_id": "53e8964d0e0a266fa5003ee2", "cast_id": 20, "profile_path": "/dEiJziN5TPJU5LQjeN95tL3lrNk.jpg", "order": 7}, {"name": "Stephanie Mace", "character": "Leigh Cooper", "id": 1352093, "credit_id": "53e896960e0a266fa5003ee8", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Tony Curran", "character": "Driver", "id": 2220, "credit_id": "53e896b90e0a266f9100424f", "cast_id": 22, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 9}, {"name": "Quinton Jackson", "character": "Guardian Angel", "id": 586935, "credit_id": "53e897020e0a266fa5003ef2", "cast_id": 23, "profile_path": "/nhzVZm9QBWQ98HPiCV7PvrCoqFR.jpg", "order": 10}], "directors": [{"name": "Ry\u00fbhei Kitamura", "department": "Directing", "job": "Director", "credit_id": "52fe433d9251416c75008c89", "profile_path": "/wmRHPxLbDqSFVViTWCf7yJ50Mje.jpg", "id": 45996}], "vote_average": 6.1, "runtime": 98}, "239563": {"poster_path": "/w0hzr4eQBk1X4m63fb7sOSt9Bnn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.", "video": false, "id": 239563, "genres": [{"id": 35, "name": "Comedy"}], "title": "St. Vincent", "tagline": "Love Thy Neighbor", "vote_count": 188, "homepage": "http://stvincent-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2170593", "adult": false, "backdrop_path": "/cANfw6Yh10QC4F3mKcLZ4VoUzhA.jpg", "production_companies": [{"name": "Chernin Entertainment", "id": 7076}, {"name": "The Weinstein Company", "id": 308}, {"name": "Crescendo Productions", "id": 3314}, {"name": "Goldenlight Films", "id": 15855}], "release_date": "2014-10-31", "popularity": 3.92222853706898, "original_title": "St. Vincent", "budget": 0, "cast": [{"name": "Bill Murray", "character": "Vincent", "id": 1532, "credit_id": "52fe4e95c3a36847f829a859", "cast_id": 3, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Melissa McCarthy", "character": "Maggie", "id": 55536, "credit_id": "52fe4e95c3a36847f829a851", "cast_id": 1, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 1}, {"name": "Naomi Watts", "character": "Daka", "id": 3489, "credit_id": "52fe4e95c3a36847f829a855", "cast_id": 2, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 2}, {"name": "Chris O'Dowd", "character": "Brother Geraghty", "id": 40477, "credit_id": "52fe4e96c3a36847f829a85d", "cast_id": 4, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Zucko", "id": 18288, "credit_id": "52fe4e96c3a36847f829a861", "cast_id": 5, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Jaeden Lieberher", "character": "Oliver", "id": 1274508, "credit_id": "5464ce110e0a2629460020b1", "cast_id": 25, "profile_path": "/rCPRfOUdTBdDDAC12mqEv74d7M6.jpg", "order": 5}, {"name": "Kimberly Quinn", "character": "Nurse Ana", "id": 168994, "credit_id": "52fe4e96c3a36847f829a86d", "cast_id": 8, "profile_path": "/p9cDKFc4HBtabk60NkWBOnPvMPA.jpg", "order": 6}, {"name": "Lenny Venito", "character": "Coach Mitchell", "id": 37157, "credit_id": "53ea5e4b0e0a266022001b87", "cast_id": 20, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 7}, {"name": "Nate Corddry", "character": "Terry", "id": 127048, "credit_id": "52fe4e96c3a36847f829a865", "cast_id": 6, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 8}, {"name": "Dario Barosso", "character": "Ocinski", "id": 995205, "credit_id": "54678cbdeaeb8118b2000440", "cast_id": 26, "profile_path": "/wkV04IPLZMmQdQZDW9fzKiwja40.jpg", "order": 9}, {"name": "Donna Mitchell", "character": "Sandy", "id": 56694, "credit_id": "546eaf5d92514112f0000b00", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Ann Dowd", "character": "Shirley, Sunnyside Administrator", "id": 43366, "credit_id": "546eaf7192514112eb000b77", "cast_id": 28, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 11}, {"name": "Katharina Damm", "character": "Starlet", "id": 1274509, "credit_id": "52fe4e96c3a36847f829a881", "cast_id": 13, "profile_path": "/eBUOGjlqrWTkqOZNIsFXNePcrNX.jpg", "order": 13}, {"name": "Scott Adsit", "character": "David", "id": 66580, "credit_id": "52fe4e96c3a36847f829a869", "cast_id": 7, "profile_path": "/8VTCE0c8RSLYsgRqA8UDPRbBvYm.jpg", "order": 14}, {"name": "Alyssa Ruland", "character": "Student", "id": 1274507, "credit_id": "52fe4e96c3a36847f829a871", "cast_id": 9, "profile_path": null, "order": 15}, {"name": "Alexandra Fong", "character": "Rachele", "id": 58355, "credit_id": "52fe4e96c3a36847f829a879", "cast_id": 11, "profile_path": null, "order": 16}, {"name": "Greta Lee", "character": "Teller #23", "id": 1260481, "credit_id": "52fe4e96c3a36847f829a87d", "cast_id": 12, "profile_path": null, "order": 17}], "directors": [{"name": "Theodore Melfi", "department": "Directing", "job": "Director", "credit_id": "52fe4e96c3a36847f829a88f", "profile_path": null, "id": 1141683}], "vote_average": 7.4, "runtime": 102}, "1996": {"poster_path": "/pkSnQzjjQ3Z9B2CJVSZCfL0Ea3s.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156505388, "overview": "Intrepid British archaeologist Lara Croft has made perhaps the most important archaeological discovery in history: an orb that leads to the mythical Pandora's Box. Unfortunately, the orb falls into the hands of Jonathan Reiss, an evil scientist who deals in killer viruses and hopes to sell the secrets of the box as the ultimate weapon.", "video": false, "id": 1996, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Lara Croft Tomb Raider: The Cradle of Life", "tagline": "Adventuress Lara Croft goes on a quest to save the mythical Pandora's Box", "vote_count": 664, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AbU9pTDqOhm670DNillEB9Cb8H6.jpg", "poster_path": "/sgaP4WtVlKzz8FIcjbkevOycJiq.jpg", "id": 2467, "name": "Tomb Raider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0325703", "adult": false, "backdrop_path": "/dGGATPdyQaqs0SXmjEtdmbfGw42.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "British Broadcasting Corporation (BBC)", "id": 3324}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Eidos Interactive", "id": 19105}, {"name": "Toho-Towa", "id": 657}, {"name": "October Pictures", "id": 14362}], "release_date": "2003-07-21", "popularity": 1.17772090777437, "original_title": "Lara Croft Tomb Raider: The Cradle of Life", "budget": 95000000, "cast": [{"name": "Angelina Jolie", "character": "Lara Croft", "id": 11701, "credit_id": "52fe432ac3a36847f803f43f", "cast_id": 11, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Terry Sheridan", "id": 17276, "credit_id": "52fe432ac3a36847f803f443", "cast_id": 12, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Noah Taylor", "character": "Bryce", "id": 1284, "credit_id": "52fe432ac3a36847f803f447", "cast_id": 14, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Djimon Hounsou", "character": "Kosa", "id": 938, "credit_id": "52fe432ac3a36847f803f44b", "cast_id": 15, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 4}, {"name": "Til Schweiger", "character": "Sean", "id": 1844, "credit_id": "52fe432ac3a36847f803f44f", "cast_id": 16, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 5}, {"name": "Simon Yam", "character": "Chen Lo", "id": 20519, "credit_id": "52fe432ac3a36847f803f453", "cast_id": 17, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 6}, {"name": "Daniel Caltagirone", "character": "Nicholas Petraki", "id": 19875, "credit_id": "52fe432ac3a36847f803f457", "cast_id": 18, "profile_path": "/cnuEASgMkryLbTMZVNaGltibGFe.jpg", "order": 7}, {"name": "Fabiano Martell", "character": "Jimmy Petraki", "id": 20520, "credit_id": "52fe432ac3a36847f803f45b", "cast_id": 19, "profile_path": "/eHXuNPeFkywQgx9xJLvyzYB1csa.jpg", "order": 8}, {"name": "Robert Cavanah", "character": "MI6 Agent Stevens", "id": 20522, "credit_id": "52fe432ac3a36847f803f463", "cast_id": 21, "profile_path": "/gHuA2uTVZB8prxpzJozwGWli2kI.jpg", "order": 10}, {"name": "Ronan Vibert", "character": "MI6 Agent Calloway", "id": 20523, "credit_id": "52fe432ac3a36847f803f467", "cast_id": 22, "profile_path": "/3mCxRbHuq1aJwrFqLwk3OSdqva9.jpg", "order": 11}, {"name": "Chris Barrie", "character": "Hillary", "id": 20511, "credit_id": "52fe432ac3a36847f803f46b", "cast_id": 23, "profile_path": "/rN7P8WSCAEQ0hHWfaG1P7Em1spx.jpg", "order": 12}, {"name": "Jonny Coyne", "character": "Gus Petraki (as Jonathan Coyne)", "id": 1323612, "credit_id": "53806684c3a368737d000235", "cast_id": 26, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 13}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe432ac3a36847f803f405", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 5.5, "runtime": 117}, "10189": {"poster_path": "/scEvOPl6ZJctQVnRWHvq0pP0DkM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42431017, "overview": "A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.", "video": false, "id": 10189, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Pineapple Express", "tagline": "Put this in your pipe and smoke it.", "vote_count": 340, "homepage": "http://www.sonypictures.com/movies/pineappleexpress/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0910936", "adult": false, "backdrop_path": "/gsQMJV0UM6nDLOhNDTlON8Iezed.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-08-06", "popularity": 1.20268667208699, "original_title": "Pineapple Express", "budget": 27000000, "cast": [{"name": "Seth Rogen", "character": "Dale Denton", "id": 19274, "credit_id": "52fe433d9251416c75008e6f", "cast_id": 6, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "James Franco", "character": "Saul Silver", "id": 17051, "credit_id": "52fe433d9251416c75008e73", "cast_id": 7, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Danny McBride", "character": "Red", "id": 62862, "credit_id": "52fe433d9251416c75008e6b", "cast_id": 5, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 2}, {"name": "Kevin Corrigan", "character": "Budlofsky", "id": 18472, "credit_id": "52fe433e9251416c75008ec7", "cast_id": 25, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 3}, {"name": "Gary Cole", "character": "Ted", "id": 21163, "credit_id": "52fe433d9251416c75008e7b", "cast_id": 9, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Rosie Perez", "character": "Carol", "id": 4810, "credit_id": "52fe433d9251416c75008e77", "cast_id": 8, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 5}, {"name": "Amber Heard", "character": "Angie Anderson", "id": 55085, "credit_id": "52fe433d9251416c75008e7f", "cast_id": 10, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 6}, {"name": "Adam Crosby", "character": "Ack", "id": 64144, "credit_id": "52fe433d9251416c75008e67", "cast_id": 4, "profile_path": "/fdf9CZ3mVHIr5xIRPl642xBfI85.jpg", "order": 7}, {"name": "Dana Lee", "character": "Cheung", "id": 16584, "credit_id": "52fe433e9251416c75008e87", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Brian Scannell", "character": "Carrie Longwood", "id": 64143, "credit_id": "52fe433e9251416c75008e83", "cast_id": 11, "profile_path": "/cuWZ8wo23r5P2iXRhVjrjb27VNF.jpg", "order": 9}, {"name": "Craig Robinson", "character": "Matheson", "id": 64342, "credit_id": "52fe433e9251416c75008ecb", "cast_id": 26, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 10}, {"name": "Ed Begley Jr.", "character": "Robert", "id": 42157, "credit_id": "52fe433e9251416c75008ecf", "cast_id": 27, "profile_path": "/m264FJDCnB5H6qyU2sDKjs9tM86.jpg", "order": 11}, {"name": "Nora Dunn", "character": "Shannon", "id": 4496, "credit_id": "52fe433e9251416c75008ed3", "cast_id": 28, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 12}, {"name": "Joe Lo Truglio", "character": "Mr. Edwards", "id": 21131, "credit_id": "52fe433e9251416c75008ed7", "cast_id": 29, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 13}, {"name": "Arthur Napiontek", "character": "Clark", "id": 82179, "credit_id": "52fe433e9251416c75008edb", "cast_id": 30, "profile_path": "/lt7TYA7GmoVxbPKL55cExu0F1cI.jpg", "order": 14}, {"name": "Cleo King", "character": "Police Liaison Officer", "id": 7574, "credit_id": "52fe433e9251416c75008edf", "cast_id": 31, "profile_path": "/1hyMhXnT6VuC0XA9eBmsbx9QbbY.jpg", "order": 15}, {"name": "Bill Hader", "character": "Private Miller", "id": 19278, "credit_id": "52fe433e9251416c75008ee3", "cast_id": 32, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 16}, {"name": "James Remar", "character": "General Bratt", "id": 1736, "credit_id": "52fe433e9251416c75008ee7", "cast_id": 33, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 17}, {"name": "Ken Jeong", "character": "Ken", "id": 83586, "credit_id": "52fe433e9251416c75008eeb", "cast_id": 34, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 18}, {"name": "Bobby Lee", "character": "Bobby", "id": 198149, "credit_id": "52fe433e9251416c75008eef", "cast_id": 35, "profile_path": "/qyogEhctULt3EnrKxPG6ZS888RP.jpg", "order": 19}, {"name": "Connie Sawyer", "character": "Faye Belogus", "id": 116727, "credit_id": "52fe433e9251416c75008ef3", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "David McDivitt", "character": "Cop with Mole", "id": 201829, "credit_id": "52fe433e9251416c75008ef7", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Mae LaBorde", "character": "Mrs. Mendelson", "id": 63217, "credit_id": "52fe433e9251416c75008efb", "cast_id": 38, "profile_path": "/8AfENrZpycuHFTTMDB58jDZvNSq.jpg", "order": 22}, {"name": "John Robert Tramutola", "character": "Walt", "id": 204379, "credit_id": "52fe433e9251416c75008eff", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Andrew Heald", "character": "Blake", "id": 177909, "credit_id": "52fe433e9251416c75008f03", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Jeannetta Arnette", "character": "Sandra Danby", "id": 2842, "credit_id": "53d3c8fd0e0a262847001df6", "cast_id": 48, "profile_path": "/uVaqZLhpTh5OmJDFSv7wim63sV1.jpg", "order": 25}, {"name": "Jonathan Spencer", "character": "Scientist", "id": 208380, "credit_id": "52fe433e9251416c75008f29", "cast_id": 47, "profile_path": "/irLd1ZUiIwtBHxP4Jje4gMxeou1.jpg", "order": 26}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe433d9251416c75008e57", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 6.4, "runtime": 111}, "10191": {"poster_path": "/zMAm3WYmvD40FaWFsOmpicQFabz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 494878759, "overview": "As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast \u2013 which he names Toothless \u2013 much to the chagrin of his warrior father", "video": false, "id": 10191, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "How to Train Your Dragon", "tagline": "One adventure will change two worlds", "vote_count": 2019, "homepage": "http://www.howtotrainyourdragon.com/", "belongs_to_collection": {"backdrop_path": "/mvcfPkOvgDJG2lEAxTz0NKqoQLo.jpg", "poster_path": "/nJ7ud7XWnNCnGfRQUkUp2t17Sq3.jpg", "id": 89137, "name": "How to Train Your Dragon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0892769", "adult": false, "backdrop_path": "/nMulOcoR6HAahofkcuo4mtA0o9j.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Mad Hatter Entertainment", "id": 20154}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2010-03-05", "popularity": 3.51972017484826, "original_title": "How to Train Your Dragon", "budget": 165000000, "cast": [{"name": "Jay Baruchel", "character": "Hiccup", "id": 449, "credit_id": "52fe433e9251416c75009013", "cast_id": 3, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Stoick", "id": 17276, "credit_id": "52fe433e9251416c75009017", "cast_id": 4, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Craig Ferguson", "character": "Gobber", "id": 24264, "credit_id": "52fe433e9251416c7500901b", "cast_id": 5, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 2}, {"name": "America Ferrera", "character": "Astrid", "id": 59174, "credit_id": "52fe433e9251416c7500901f", "cast_id": 6, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 3}, {"name": "Jonah Hill", "character": "Snotlout", "id": 21007, "credit_id": "52fe433e9251416c75009023", "cast_id": 7, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 4}, {"name": "Christopher Mintz-Plasse", "character": "Fishlegs", "id": 54691, "credit_id": "52fe433e9251416c75009027", "cast_id": 8, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 5}, {"name": "T.J. Miller", "character": "Tuffnut", "id": 51990, "credit_id": "52fe433e9251416c75009079", "cast_id": 25, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 6}, {"name": "Kristen Wiig", "character": "Ruffnut", "id": 41091, "credit_id": "52fe433e9251416c7500907d", "cast_id": 26, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 7}, {"name": "Robin Atkin Downes", "character": "Ack", "id": 130081, "credit_id": "52fe433e9251416c75009081", "cast_id": 27, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 8}, {"name": "Philip McGrade", "character": "Starkard", "id": 138619, "credit_id": "52fe433e9251416c75009085", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Kieron Elliott", "character": "Hoark the Haggard", "id": 138620, "credit_id": "52fe433e9251416c75009089", "cast_id": 29, "profile_path": "/7dRvskBebg36l4FT6jxg2J5sevB.jpg", "order": 10}, {"name": "Ashley Jensen", "character": "Phlegma the Fierce", "id": 55398, "credit_id": "52fe433e9251416c7500908d", "cast_id": 30, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 11}, {"name": "David Tennant", "character": "Spitelout", "id": 20049, "credit_id": "52fe433f9251416c75009091", "cast_id": 31, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 12}], "directors": [{"name": "Dean DeBlois", "department": "Directing", "job": "Director", "credit_id": "52fe433e9251416c7500902d", "profile_path": "/vofzPcdNUzUD1xqaMUwMAJRgFiy.jpg", "id": 69797}, {"name": "Chris Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe433e9251416c75009033", "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "id": 66193}], "vote_average": 7.2, "runtime": 98}, "10192": {"poster_path": "/enqVwbUu6OX5LHq0fuk7sLT35zy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 752600867, "overview": "A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away\u2014where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met\u2014he sets out to restore his world and reclaim his true love.", "video": false, "id": 10192, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek Forever After", "tagline": "It ain't Ogre... Til it's Ogre", "vote_count": 673, "homepage": "http://www.shrekforeverafter.com/", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0892791", "adult": false, "backdrop_path": "/aD8iOuLlEiMfVlHTnAe15fZLo0S.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2010-05-16", "popularity": 1.59895995913267, "original_title": "Shrek Forever After", "budget": 165000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe433f9251416c750090c3", "cast_id": 2, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe433f9251416c750090c7", "cast_id": 3, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe433f9251416c750090cb", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe433f9251416c750090cf", "cast_id": 5, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 3}, {"name": "Julie Andrews", "character": "Queen (voice)", "id": 5823, "credit_id": "52fe433f9251416c750090d3", "cast_id": 6, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 4}, {"name": "Jon Hamm", "character": "Brogan (voice)", "id": 65717, "credit_id": "52fe433f9251416c750090d7", "cast_id": 7, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 5}, {"name": "John Cleese", "character": "King (voice)", "id": 8930, "credit_id": "52fe433f9251416c750090db", "cast_id": 8, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Craig Robinson", "character": "Cookie (voice)", "id": 64342, "credit_id": "52fe433f9251416c750090df", "cast_id": 9, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 7}, {"name": "Walt Dohrn", "character": "Rumpelstiltskin / Priest / Krekraw Ogre (voice)", "id": 118489, "credit_id": "52fe433f9251416c750090e3", "cast_id": 10, "profile_path": "/prfTPdP6tEScSTyZgD0S3APiSOU.jpg", "order": 8}, {"name": "Jane Lynch", "character": "Gretched (voice)", "id": 43775, "credit_id": "52fe433f9251416c750090e7", "cast_id": 11, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 9}, {"name": "Lake Bell", "character": "Patrol Witch / Wagon Witch #2 (voice)", "id": 25703, "credit_id": "52fe433f9251416c750090eb", "cast_id": 12, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 10}, {"name": "Kathy Griffin", "character": "Dancing Witch / Wagon Witch #1 (voice)", "id": 3138, "credit_id": "52fe433f9251416c750090ef", "cast_id": 13, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 11}, {"name": "Mary Kay Place", "character": "Guard Witch (voice)", "id": 5960, "credit_id": "52fe433f9251416c750090f3", "cast_id": 14, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 12}, {"name": "Kristen Schaal", "character": "Pumpkin Witch / Palace Witch (voice)", "id": 109869, "credit_id": "52fe433f9251416c750090f7", "cast_id": 15, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 13}, {"name": "Meredith Vieira", "character": "Broomsy Witch (voice)", "id": 118490, "credit_id": "52fe433f9251416c750090fb", "cast_id": 16, "profile_path": "/ydtUcTxplTDkNs5nbDhLS5OGjTL.jpg", "order": 14}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c750090bf", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.9, "runtime": 93}, "10193": {"poster_path": "/tOwAAVeL1p3ls9dhOBo45ElodU3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1063171911, "overview": "Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.", "video": false, "id": 10193, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story 3", "tagline": "No toy gets left behind.", "vote_count": 1892, "homepage": "http://disney.go.com/toystory/", "belongs_to_collection": {"backdrop_path": "/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg", "poster_path": "/bDSe7UCiShmiTz7kuOjMyP6mz7l.jpg", "id": 10194, "name": "Toy Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0435761", "adult": false, "backdrop_path": "/rpvDBeVazJyBV5SxtnQWIgL5SIb.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2010-06-17", "popularity": 2.49177755816754, "original_title": "Toy Story 3", "budget": 200000000, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "52fe433f9251416c7500915d", "cast_id": 6, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "52fe433f9251416c75009169", "cast_id": 9, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Lotso (voice)", "id": 13726, "credit_id": "52fe433f9251416c75009185", "cast_id": 17, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jessie the Yodeling Cowgirl (voice)", "id": 3234, "credit_id": "52fe433f9251416c75009165", "cast_id": 8, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Michael Keaton", "character": "Ken (voice)", "id": 2232, "credit_id": "52fe433f9251416c75009161", "cast_id": 7, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 4}, {"name": "Whoopi Goldberg", "character": "Stretch the Octopus (voice)", "id": 2395, "credit_id": "52fe433f9251416c7500916d", "cast_id": 10, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 5}, {"name": "Bonnie Hunt", "character": "Purple-haired doll (voice)", "id": 5149, "credit_id": "52fe433f9251416c75009171", "cast_id": 11, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 6}, {"name": "Wallace Shawn", "character": "Rex (voice)", "id": 12900, "credit_id": "52fe433f9251416c75009181", "cast_id": 16, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 7}, {"name": "John Ratzenberger", "character": "Hamm (voice)", "id": 7907, "credit_id": "52fe433f9251416c75009175", "cast_id": 13, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 8}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "52fe433f9251416c75009179", "cast_id": 14, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 9}, {"name": "Estelle Harris", "character": "Mrs. Potato Head (voice)", "id": 61964, "credit_id": "52fe433f9251416c7500917d", "cast_id": 15, "profile_path": "/equDBtZgBkO7e8QKpNokDz9EbY9.jpg", "order": 10}, {"name": "John Morris", "character": "Andy (voice)", "id": 1116442, "credit_id": "52fe433f9251416c75009189", "cast_id": 18, "profile_path": "/vYGyvK4LzeaUCoNSHtsuqJUY15M.jpg", "order": 11}, {"name": "Jodi Benson", "character": "Barbie (voice)", "id": 63978, "credit_id": "52fe433f9251416c7500918d", "cast_id": 19, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 12}, {"name": "Emily Hahn", "character": "Bonnie (voice)", "id": 1096415, "credit_id": "52fe433f9251416c75009191", "cast_id": 20, "profile_path": "/cjCwq4bzHuYMba1kDfEkKCeEOeb.jpg", "order": 13}, {"name": "Laurie Metcalf", "character": "Andy's Mom (voice)", "id": 12133, "credit_id": "52fe433f9251416c75009195", "cast_id": 21, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 14}, {"name": "Blake Clark", "character": "Slinky Dog (voice)", "id": 21485, "credit_id": "52fe433f9251416c75009199", "cast_id": 22, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 15}, {"name": "Teddy Newton", "character": "Chatter Telephone (voice)", "id": 59357, "credit_id": "52fe433f9251416c7500919d", "cast_id": 23, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 16}, {"name": "Kristen Schaal", "character": "Trixie (voice)", "id": 109869, "credit_id": "54bae356c3a3686c6f006840", "cast_id": 24, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 17}, {"name": "R. Lee Ermey", "character": "Sarge", "id": 8655, "credit_id": "552166b99251417be2002ef3", "cast_id": 25, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 18}], "directors": [{"name": "Lee Unkrich", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c75009141", "profile_path": "/plN9zGzLvp5tBPwsH1zfDu2IhD2.jpg", "id": 8}], "vote_average": 7.3, "runtime": 103}, "239571": {"poster_path": "/449Qq1XKgurG4IFTohtsEuBWJ8H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A pair of former high school sweethearts reunite after many years when they return to visit their small hometown.", "video": false, "id": 239571, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Best of Me", "tagline": "You never forget your first love.", "vote_count": 115, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1972779", "adult": false, "backdrop_path": "/s39ikTKcPr8KNL6PGNCpbq8UxwI.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}], "release_date": "2014-10-17", "popularity": 1.54133392752105, "original_title": "The Best of Me", "budget": 0, "cast": [{"name": "Michelle Monaghan", "character": "Amanda", "id": 11705, "credit_id": "52fe4e96c3a36847f829aaad", "cast_id": 1, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 0}, {"name": "James Marsden", "character": "Dawson", "id": 11006, "credit_id": "53c623d8c3a3686266001b8a", "cast_id": 7, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Liana Liberato", "character": "Young Amanda", "id": 60458, "credit_id": "540ee652c3a36871c400160d", "cast_id": 8, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 2}, {"name": "Luke Bracey", "character": "Younger Dawson", "id": 972356, "credit_id": "540ee659c3a36871b800162c", "cast_id": 9, "profile_path": "/cfUv5lXfWVlbQeRaD8XZ0WDxqF9.jpg", "order": 3}, {"name": "Gerald McRaney", "character": "Tuck", "id": 29512, "credit_id": "540ee66cc3a36871c10014f3", "cast_id": 10, "profile_path": "/jPS0hN9T3JFhfMLEJ36LEwedTAz.jpg", "order": 4}, {"name": "Caroline Goodall", "character": "Evelyn", "id": 6692, "credit_id": "548068079251416e740029fe", "cast_id": 11, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 5}, {"name": "Clarke Peters", "character": "Morgan Dupree", "id": 61011, "credit_id": "548068139251416e74002a01", "cast_id": 12, "profile_path": "/7a3OTcJlncY32LDvdTjLS6bTMxh.jpg", "order": 6}, {"name": "Sebastian Arcelus", "character": "Frank", "id": 103545, "credit_id": "5480681fc3a36829a7002805", "cast_id": 13, "profile_path": "/3K7Xbstrab2reOW4tcsGcDtMqap.jpg", "order": 7}, {"name": "Jon Tenney", "character": "Harvey Collier", "id": 4602, "credit_id": "5480682ec3a36817a5002635", "cast_id": 14, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 8}, {"name": "Sean Bridgers", "character": "Tommy Cole", "id": 144160, "credit_id": "54806858c3a36829ab0028ad", "cast_id": 15, "profile_path": "/vJfiyvwitCEn6SXA55GI7zbwGrw.jpg", "order": 9}, {"name": "Robert Mello", "character": "Ted Cole (as Robert William Mello)", "id": 1388694, "credit_id": "548068669251414d2100258c", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Hunter Burke", "character": "Abee", "id": 1374151, "credit_id": "54806875c3a36829ae0025a3", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Robby Rasmussen", "character": "Bobby / Aaron", "id": 1394279, "credit_id": "54806881c3a36829a700281a", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Caroline Hebert", "character": "Young April", "id": 1394280, "credit_id": "5480688cc3a36829ab0028bc", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Schuyler Fisk", "character": "April", "id": 70852, "credit_id": "548068a7c3a368299f001fdd", "cast_id": 21, "profile_path": "/ayjUYmT5XFPDoS4XEaAbvQchhpM.jpg", "order": 15}, {"name": "Douglas M. Griffin", "character": "Jack", "id": 60881, "credit_id": "548068b1c3a36829a300288d", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Bill Martin Williams", "character": "Uncle", "id": 1271773, "credit_id": "548068bc9251416e74002a27", "cast_id": 23, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 17}, {"name": "Jimmy Gonzales", "character": "Guard", "id": 1091423, "credit_id": "548068c99251416e7b00260b", "cast_id": 24, "profile_path": "/xHKgZYPiteLS9hCvM1mL11d6bRe.jpg", "order": 18}, {"name": "Mia Frost", "character": "Brandi", "id": 240571, "credit_id": "548068d59251416e810027d3", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Donna DuPlantier", "character": "Dr. Charbeaneau", "id": 230995, "credit_id": "548068f1c3a36829ae0025b0", "cast_id": 26, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 20}, {"name": "David Jensen", "character": "Dr. Pundt", "id": 60875, "credit_id": "54806900c3a36829ab0028d8", "cast_id": 27, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 21}, {"name": "Jim Gleason", "character": "Lawyer", "id": 168942, "credit_id": "5480690fc3a36829ae0025b6", "cast_id": 28, "profile_path": "/yhn0wL58Dt0HGB5O2m9RoWXbK46.jpg", "order": 22}, {"name": "Kesha Bullard", "character": "Leonie (as Kesha Bullard Lewis)", "id": 1292481, "credit_id": "5480691e9251416e74002a39", "cast_id": 29, "profile_path": "/eIORpRv2pazTxSXYu2ms02FwL2S.jpg", "order": 23}, {"name": "Julia Lashae", "character": "Clara", "id": 1394283, "credit_id": "548069289251414efa0028dc", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Jordan Smith", "character": "Rich Kid #1", "id": 1394285, "credit_id": "548069549251416e810027f0", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Laura Meyer", "character": "Receptionist #2", "id": 1394287, "credit_id": "54806973c3a368299f001ff3", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Bailey Winston", "character": "Amanda's Friend", "id": 1394288, "credit_id": "548069849251416e74002a56", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Matthew Metzger", "character": "Rich Kid #2", "id": 1394289, "credit_id": "548069919251416e7b00262a", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Thomas Ryan Smith", "character": "Rich Kid #3 (as Thomas Smith)", "id": 1394290, "credit_id": "5480699ec3a36829b2002fb7", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Brittany Buckner", "character": "Receptionist #1", "id": 1394292, "credit_id": "548069ab9251416e7b002632", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Keith Cieslinski", "character": "Priest", "id": 1394293, "credit_id": "548069b6c3a36829b5002fdf", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Brian Les Weinberger", "character": "Court Lawyer", "id": 1394294, "credit_id": "548069c29251416e74002a6a", "cast_id": 38, "profile_path": null, "order": 32}, {"name": "Virgil Brent Allen", "character": "Oil Rig Worker", "id": 1394295, "credit_id": "548069cec3a368299f002000", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Benji the Cat", "character": "Himself", "id": 1394297, "credit_id": "548069e49251414d210025d4", "cast_id": 40, "profile_path": null, "order": 34}, {"name": "Ian Nelson", "character": "Jared", "id": 1348957, "credit_id": "54de8de6c3a368537a001cd5", "cast_id": 41, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 35}], "directors": [{"name": "Michael Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe4e96c3a36847f829aab3", "profile_path": "/xrMI8tNQgHws3o3Ku5cdH3ayXZx.jpg", "id": 52405}], "vote_average": 7.4, "runtime": 117}, "10196": {"poster_path": "/5kO6hVZrtBZ98VfpgHvwivjXgMg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 318502923, "overview": "The story follows the adventures of Aang, a young successor to a long line of Avatars, who must put his childhood ways aside and stop the Fire Nation from enslaving the Water, Earth and Air nations.", "video": false, "id": 10196, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Last Airbender", "tagline": "Four nations, one destiny", "vote_count": 412, "homepage": "http://www.thelastairbendermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0938283", "adult": false, "backdrop_path": "/fuINagU2N0RxoQWenf00txtXfV5.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Industrial Light & Magic (ILM)", "id": 8805}], "release_date": "2010-06-30", "popularity": 1.68344346260562, "original_title": "The Last Airbender", "budget": 150000000, "cast": [{"name": "Noah Ringer", "character": "Aang", "id": 88816, "credit_id": "52fe433f9251416c750092a3", "cast_id": 2, "profile_path": "/rViKaQd4q8qCFmFRbrZY849ykST.jpg", "order": 0}, {"name": "Nicola Peltz", "character": "Katara", "id": 61186, "credit_id": "52fe433f9251416c750092af", "cast_id": 5, "profile_path": "/3NLYsEVZON71ceR01bb6gf13iRJ.jpg", "order": 1}, {"name": "Jackson Rathbone", "character": "Sokka", "id": 84215, "credit_id": "52fe433f9251416c750092ab", "cast_id": 4, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 2}, {"name": "Dev Patel", "character": "Zuko", "id": 76788, "credit_id": "52fe433f9251416c750092a7", "cast_id": 3, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 3}, {"name": "Shaun Toub", "character": "Uncle Iroh", "id": 17857, "credit_id": "52fe433f9251416c750092b3", "cast_id": 6, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 4}, {"name": "Aasif Mandvi", "character": "Commander Zhao", "id": 20644, "credit_id": "52fe433f9251416c750092b7", "cast_id": 7, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 5}, {"name": "Dee Bradley Baker", "character": "Appa / Momo", "id": 23680, "credit_id": "52fe433f9251416c750092bb", "cast_id": 8, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 6}, {"name": "Ben Cooke", "character": "Avatar Roku", "id": 11354, "credit_id": "52fe433f9251416c750092bf", "cast_id": 9, "profile_path": "/mdYAaW3tctXeEqYFl6pKYcgDKSx.jpg", "order": 7}, {"name": "Katharine Houghton", "character": "Gran Gran", "id": 19729, "credit_id": "52fe433f9251416c750092c3", "cast_id": 10, "profile_path": "/siCl5UOGhViJdbyyOImDyyJRG7J.jpg", "order": 8}, {"name": "Cliff Curtis", "character": "Fire Lord Ozai", "id": 7248, "credit_id": "536a1af70e0a2647ce00998c", "cast_id": 13, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 9}, {"name": "Seychelle Gabriel", "character": "Princess Yue", "id": 559643, "credit_id": "536a1b100e0a2647ce00998f", "cast_id": 14, "profile_path": "/u0j5IiaCllIzr4Kp8kcdbYGpBPt.jpg", "order": 10}, {"name": "Francis Guinan", "character": "Master Pakku", "id": 162754, "credit_id": "536a1b2c0e0a2647d100989b", "cast_id": 15, "profile_path": "/aInGPcXUo7GOefwXSJyN7MtELW9.jpg", "order": 11}, {"name": "Damon Gupton", "character": "Monk Gyatso", "id": 53454, "credit_id": "536a1b410e0a2647c4009e57", "cast_id": 16, "profile_path": "/1mZvC9YKcFciPIl5vUUP01F6Fjy.jpg", "order": 12}, {"name": "Summer Bishil", "character": "Azula", "id": 73336, "credit_id": "536a1b530e0a2647d8009be3", "cast_id": 17, "profile_path": "/nUwjaZLww2EgaS24igMRh7H4mqX.jpg", "order": 13}, {"name": "Randall Duk Kim", "character": "Old Man in Temple", "id": 9462, "credit_id": "536a1b660e0a2647db009b63", "cast_id": 18, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 14}, {"name": "John D'Alonzo", "character": "Zhao's Assistant", "id": 1317363, "credit_id": "536a1b780e0a2647c4009e60", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Keong Sim", "character": "Earthbending Father", "id": 164102, "credit_id": "536a1b880e0a2647db009b69", "cast_id": 20, "profile_path": "/umyWpw8M18I6WsBWuRXWUtw4b2d.jpg", "order": 16}, {"name": "Roberto Lombardi", "character": "Fire Nation Soldier", "id": 1209900, "credit_id": "53c963870e0a2664930027d5", "cast_id": 21, "profile_path": "/qgrG57sp91kCwPJsPvH15psg6UL.jpg", "order": 17}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c7500929f", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 4.9, "runtime": 103}, "2005": {"poster_path": "/7wQxLtybiUbtC6tsJh9htFEmqq3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231605150, "overview": "A Reno singer witnesses a mob murder and the cops stash her in a nunnery to protect her from the hitmen. The mother superior does not trust her, and takes steps to limit her influence on the other nuns. Eventually the singer rescues the failing choir and begins helping with community projects, which gets her an interview on TV.", "video": false, "id": 2005, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Sister Act", "tagline": "No booze! No sex! No drugs!... No way!", "vote_count": 128, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5zLMzYgpx2TNmISTk1MnRyRWY9M.jpg", "poster_path": "/m9xbNgB8MrrGOCvc4vjOtSWdqh9.jpg", "id": 103573, "name": "Sister Act Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105417", "adult": false, "backdrop_path": "/oaLqlJxt8TJSjsdfMpSkLexZ4l5.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1992-05-28", "popularity": 0.506570576506696, "original_title": "Sister Act", "budget": 0, "cast": [{"name": "Whoopi Goldberg", "character": "Deloris Van Cartier/Sister Mary Clarence", "id": 2395, "credit_id": "52fe432bc3a36847f803f985", "cast_id": 7, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 0}, {"name": "Maggie Smith", "character": "Mother Superior", "id": 10978, "credit_id": "52fe432bc3a36847f803f989", "cast_id": 8, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 1}, {"name": "Kathy Najimy", "character": "Sister Mary Patrick", "id": 11074, "credit_id": "52fe432bc3a36847f803f98d", "cast_id": 9, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 2}, {"name": "Wendy Makkena", "character": "Sister Mary Robert", "id": 20623, "credit_id": "52fe432bc3a36847f803f991", "cast_id": 10, "profile_path": "/9Nx0N6vQP3czBYSiRgAZbETqAiC.jpg", "order": 3}, {"name": "Mary Wickes", "character": "Sister Mary Lazarus", "id": 20624, "credit_id": "52fe432bc3a36847f803f995", "cast_id": 11, "profile_path": "/5j9h5zBcsElyv0dHImPieBuQ4eL.jpg", "order": 4}, {"name": "Harvey Keitel", "character": "Vince LaRocca", "id": 1037, "credit_id": "52fe432bc3a36847f803f999", "cast_id": 12, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 5}, {"name": "Bill Nunn", "character": "Lt. Eddie Souther", "id": 5502, "credit_id": "52fe432bc3a36847f803f99d", "cast_id": 13, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 6}, {"name": "Richard Portnow", "character": "Willy", "id": 4255, "credit_id": "52fe432bc3a36847f803f9a1", "cast_id": 14, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 7}, {"name": "Robert Miranda", "character": "Joey", "id": 20625, "credit_id": "52fe432bc3a36847f803f9a5", "cast_id": 15, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 8}, {"name": "Joseph Maher", "character": "Bishop O'Hara", "id": 20626, "credit_id": "52fe432bc3a36847f803f9a9", "cast_id": 16, "profile_path": "/hgq8vDtBsk0ovVxRJHkAyXzTVth.jpg", "order": 9}, {"name": "Jenifer Lewis", "character": "Michelle", "id": 15899, "credit_id": "52fe432bc3a36847f803f9ad", "cast_id": 17, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 10}, {"name": "Charlotte Crossley", "character": "Tina", "id": 20627, "credit_id": "52fe432bc3a36847f803f9b1", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Michael Durrell", "character": "Larry Merrick", "id": 20628, "credit_id": "52fe432bc3a36847f803f9b5", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Adrienne-Joi Johnson", "character": "Lewanda", "id": 88186, "credit_id": "54f10a42c3a36832480003d9", "cast_id": 20, "profile_path": "/ltieu9aznaBoj3hVuzDdUpXyvtX.jpg", "order": 13}], "directors": [{"name": "Emile Ardolino", "department": "Directing", "job": "Director", "credit_id": "52fe432bc3a36847f803f963", "profile_path": "/h4LqsmRshajyuggfxR3wj7aNqyi.jpg", "id": 716}], "vote_average": 6.0, "runtime": 100}, "10198": {"poster_path": "/bVRHirC6uIZL9VtRqYRxdedYnOG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104400899, "overview": "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 do face the same problem after she kisses him.", "video": false, "id": 10198, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Princess and the Frog", "tagline": "Every Love Story Begins With a Kiss...", "vote_count": 289, "homepage": "http://disney.go.com/disneypictures/princessandthefrog/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780521", "adult": false, "backdrop_path": "/wC5xdlg6WceCWUXQzS3pIwTfkEJ.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2009-12-10", "popularity": 1.77110305446217, "original_title": "The Princess and the Frog", "budget": 105000000, "cast": [{"name": "Anika Noni Rose", "character": "Tiana", "id": 15563, "credit_id": "52fe43409251416c7500936d", "cast_id": 3, "profile_path": "/86MzqmhiyoJmiE8U2W0HK504mEL.jpg", "order": 0}, {"name": "Bruno Campos", "character": "Prince Naveen", "id": 66252, "credit_id": "52fe43409251416c75009371", "cast_id": 4, "profile_path": "/kmBzZxo8astYT4qnu9ulWxV7dYy.jpg", "order": 1}, {"name": "Keith David", "character": "Dr. Facilier", "id": 65827, "credit_id": "52fe43409251416c75009375", "cast_id": 5, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 2}, {"name": "Michael-Leon Wooley", "character": "Louis", "id": 110884, "credit_id": "52fe43409251416c75009379", "cast_id": 6, "profile_path": "/iBuzx4O5wSVaost7pMMSJSNPmmN.jpg", "order": 3}, {"name": "Jennifer Cody", "character": "Charlotte", "id": 110885, "credit_id": "52fe43409251416c7500937d", "cast_id": 7, "profile_path": "/xelI1wWTKcBWfBx7vOUObYrMAYb.jpg", "order": 4}, {"name": "Jim Cummings", "character": "Ray", "id": 12077, "credit_id": "52fe43409251416c75009381", "cast_id": 8, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 5}, {"name": "Jenifer Lewis", "character": "Mama Odie", "id": 15899, "credit_id": "52fe43409251416c7500938b", "cast_id": 10, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 6}, {"name": "Oprah Winfrey", "character": "Eudora", "id": 13309, "credit_id": "52fe43409251416c7500938f", "cast_id": 11, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 7}, {"name": "Terrence Howard", "character": "James", "id": 18288, "credit_id": "52fe43409251416c75009393", "cast_id": 12, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 8}, {"name": "John Goodman", "character": "'Big Daddy' La Bouff", "id": 1230, "credit_id": "52fe43409251416c750093a3", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 9}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c75009363", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c75009369", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.3, "runtime": 97}, "10199": {"poster_path": "/8Nge4rXAQzU5w9U8OvnXuuJltL9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50877145, "overview": "The tale of three unlikely heroes - a misfit mouse who prefers reading books to eating them, an unhappy rat who schemes to leave the darkness of the dungeon, and a bumbling servant girl with cauliflower ears - whose fates are intertwined with that of the castle's princess.", "video": false, "id": 10199, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Tale of Despereaux", "tagline": "Small Mouse, Big Dreams", "vote_count": 79, "homepage": "http://www.thetaleofdespereauxmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0420238", "adult": false, "backdrop_path": "/otiDe4tbyTct7hvNXVW6PsGVojZ.jpg", "production_companies": [{"name": "Universal Pictures Corporation", "id": 42}], "release_date": "2008-12-19", "popularity": 1.0275715150433, "original_title": "The Tale of Despereaux", "budget": 60000000, "cast": [{"name": "Emma Watson", "character": "Princess Pea", "id": 10990, "credit_id": "52fe43409251416c750093cb", "cast_id": 4, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Despereaux", "id": 4756, "credit_id": "52fe43409251416c750093cf", "cast_id": 5, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Roscuro", "id": 4483, "credit_id": "52fe43409251416c750093d3", "cast_id": 6, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Sigourney Weaver", "character": "The Narrator", "id": 10205, "credit_id": "52fe43409251416c750093d7", "cast_id": 7, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 3}, {"name": "Tracey Ullman", "character": "Miggery Sow", "id": 30364, "credit_id": "5463b310c3a3681255002bd4", "cast_id": 9, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 4}, {"name": "Kevin Kline", "character": "Andre", "id": 8945, "credit_id": "5463b31f0e0a267803002b2c", "cast_id": 10, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 5}, {"name": "William H. Macy", "character": "Lester", "id": 3905, "credit_id": "5463b32c0e0a267806002bea", "cast_id": 11, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Boldo", "id": 2283, "credit_id": "5463b33ac3a3681252002aa4", "cast_id": 12, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Ciar\u00e1n Hinds", "character": "Botticelli", "id": 8785, "credit_id": "5463b34dc3a36812590029dc", "cast_id": 13, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 8}, {"name": "Robbie Coltrane", "character": "Gregory", "id": 1923, "credit_id": "5463b369c3a3681247002a7e", "cast_id": 14, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 9}, {"name": "Tony Hale", "character": "Furlough", "id": 25147, "credit_id": "5463b3850e0a267810002b93", "cast_id": 15, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 10}, {"name": "Frances Conroy", "character": "Antoinette", "id": 4432, "credit_id": "5463b3a20e0a26780d002b94", "cast_id": 16, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 11}, {"name": "Frank Langella", "character": "Mayor", "id": 8924, "credit_id": "5463b3afc3a3681255002be8", "cast_id": 17, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 12}, {"name": "Richard Jenkins", "character": "Principal", "id": 28633, "credit_id": "5463b3c40e0a26780a002c32", "cast_id": 18, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 13}, {"name": "Christopher Lloyd", "character": "Hovis", "id": 1062, "credit_id": "5463b3d50e0a26780d002b9c", "cast_id": 19, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 14}], "directors": [{"name": "Robert Stevenhagen", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750093bb", "profile_path": null, "id": 64152}, {"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750093c1", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}, {"name": "Sam Fell", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750093c7", "profile_path": "/29NFQubb9A5OrA9OyXhnX4eOfkv.jpg", "id": 58897}], "vote_average": 6.1, "runtime": 100}, "10200": {"poster_path": "/wBb2s60ANgpfOJDL2mLge4B3Ain.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230831978, "overview": "A representative of an alien race that went through drastic evolution to survive its own climate change, Klaatu comes to Earth to assess whether humanity can prevent the environmental damage they have inflicted on their own planet. When barred from speaking to the United Nations, he decides humankind shall be exterminated so the planet can survive.", "video": false, "id": 10200, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Day the Earth Stood Still", "tagline": "12.12.08 is the Day the Earth Stood Still", "vote_count": 320, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970416", "adult": false, "backdrop_path": "/bfRgom0djZB8z7qbtjM542j3xrT.jpg", "production_companies": [{"name": "3 Arts Entertainment", "id": 36390}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Earth Canada Productions", "id": 20374}, {"name": "Hammerhead Productions", "id": 20375}], "release_date": "2008-12-12", "popularity": 1.47949259295324, "original_title": "The Day the Earth Stood Still", "budget": 80000000, "cast": [{"name": "Keanu Reeves", "character": "Klaatu", "id": 6384, "credit_id": "52fe43409251416c7500942b", "cast_id": 4, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Helen Benson", "id": 6161, "credit_id": "52fe43409251416c7500942f", "cast_id": 5, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Mousa Kraish", "character": "Yusef", "id": 54712, "credit_id": "52fe43409251416c75009427", "cast_id": 3, "profile_path": "/bATns500G3T6he2yBeIVQSFRpiU.jpg", "order": 2}, {"name": "Shaine Jones", "character": "Soldier #3", "id": 64153, "credit_id": "52fe43409251416c75009433", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Jaden Smith", "character": "Jacob Benson", "id": 120724, "credit_id": "52fe43409251416c7500943d", "cast_id": 9, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 4}, {"name": "Jon Hamm", "character": "Michael Granier", "id": 65717, "credit_id": "52fe43409251416c75009441", "cast_id": 10, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 5}, {"name": "James Hong", "character": "Mr. Wu", "id": 20904, "credit_id": "52fe43409251416c75009445", "cast_id": 11, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 6}, {"name": "Kathy Bates", "character": "Regina Jackson", "id": 8534, "credit_id": "52fe43409251416c75009449", "cast_id": 12, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 7}, {"name": "John Cleese", "character": "Professor Barnhardt", "id": 8930, "credit_id": "52fe43409251416c7500944d", "cast_id": 13, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 8}, {"name": "Kyle Chandler", "character": "John Driscoll", "id": 3497, "credit_id": "52fe43409251416c75009451", "cast_id": 14, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 9}, {"name": "Robert Knepper", "character": "Colonel", "id": 17343, "credit_id": "52fe43409251416c75009455", "cast_id": 15, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 10}, {"name": "John Rothman", "character": "Dr. Myron", "id": 60205, "credit_id": "52fe43409251416c75009459", "cast_id": 16, "profile_path": "/bRSoDm75c5fKBbCrbrXwaPiAeST.jpg", "order": 11}, {"name": "Sunita Prasad", "character": "Rouhani", "id": 91337, "credit_id": "52fe43409251416c7500945d", "cast_id": 17, "profile_path": "/8oEp2JXrkWqcaQDMgurZ7mePp0a.jpg", "order": 12}, {"name": "Juan Riedinger", "character": "William Kwan", "id": 85613, "credit_id": "52fe43409251416c75009461", "cast_id": 18, "profile_path": "/ddNGEfsafxUzoF92WFzNSB2n9p5.jpg", "order": 13}, {"name": "Sam Gilroy", "character": "Tom", "id": 979103, "credit_id": "52fe43409251416c75009465", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Tanya Champoux", "character": "Isabel", "id": 206669, "credit_id": "52fe43409251416c75009469", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Rukiya Bernard", "character": "Student", "id": 83948, "credit_id": "52fe43409251416c7500946d", "cast_id": 21, "profile_path": null, "order": 16}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c7500941d", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 5.2, "runtime": 103}, "10201": {"poster_path": "/qd8QtH9Lx5tJUEimjAXR7sZUM3q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 225990978, "overview": "Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.", "video": false, "id": 10201, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Yes Man", "tagline": "One Word Can Change Everything.", "vote_count": 423, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "et", "name": "Eesti"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1068680", "adult": false, "backdrop_path": "/nA7a6uJkrkNEa77043GThE7BgPu.jpg", "production_companies": [{"name": "Warner Bros. Entertainment", "id": 17}, {"name": "The Zanuck Company", "id": 80}, {"name": "Heyday films", "id": 437}], "release_date": "2008-12-19", "popularity": 1.6998397968938, "original_title": "Yes Man", "budget": 70000000, "cast": [{"name": "Jim Carrey", "character": "Carl Allen", "id": 206, "credit_id": "52fe43409251416c750094c9", "cast_id": 2, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Renee Allison", "id": 11664, "credit_id": "52fe43409251416c750094cd", "cast_id": 3, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Rhys Darby", "character": "Norman", "id": 82666, "credit_id": "52fe43409251416c750094d9", "cast_id": 6, "profile_path": "/d8mSQJYmuOoT3hvC7FGgSVMzYlz.jpg", "order": 2}, {"name": "Sasha Alexander", "character": "Lucy", "id": 64154, "credit_id": "52fe43409251416c750094d1", "cast_id": 4, "profile_path": "/glTuArtuQbEbhor5MFvTdpF9IKQ.jpg", "order": 3}, {"name": "Fionnula Flanagan", "character": "Tillie", "id": 58068, "credit_id": "52fe43409251416c750094d5", "cast_id": 5, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Jumper", "id": 40481, "credit_id": "52fe43409251416c750094dd", "cast_id": 7, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Danny Masterson", "character": "Rooney", "id": 18972, "credit_id": "52fe43409251416c750094e1", "cast_id": 8, "profile_path": "/qml2xCFDj1cqCvcp9H0dIlrAMT6.jpg", "order": 6}, {"name": "Molly Sims", "character": "Stephanie", "id": 60952, "credit_id": "52fe43409251416c750094e5", "cast_id": 9, "profile_path": "/bFmRGBLoZOEi14CmIF3u1p3A4M8.jpg", "order": 7}, {"name": "Bradley Cooper", "character": "Peter", "id": 51329, "credit_id": "52fe43409251416c750094e9", "cast_id": 10, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 8}, {"name": "John Michael Higgins", "character": "Nick", "id": 8265, "credit_id": "52fe43409251416c750094ed", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 9}, {"name": "Stephanie Hodge", "character": "Ticket Lady", "id": 1216510, "credit_id": "52fe43409251416c75009509", "cast_id": 16, "profile_path": "/9l85xTB0PQH4dHP8U3lDuFTJlOg.jpg", "order": 10}, {"name": "Jackie Harris", "character": "Bystander", "id": 1226913, "credit_id": "532cd373c3a3685fcb00068e", "cast_id": 17, "profile_path": "/hWhnGL9punPhCIOJ22rH0C6o6lT.jpg", "order": 11}, {"name": "Terence Stamp", "character": "Terence", "id": 28641, "credit_id": "539fee100e0a26507d00144e", "cast_id": 18, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 12}], "directors": [{"name": "Peyton Reed", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750094c5", "profile_path": "/h9lEnyQ60EjKRT3ZAOcrqQVlwn3.jpg", "id": 59026}], "vote_average": 6.3, "runtime": 104}, "51162": {"poster_path": "/dI2oQoJJ1QxDd5D1UiHfLvkoLnp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14460000, "overview": "During an ordinary day in Hundred Acre Wood, Winnie the Pooh sets out to find some honey. Misinterpreting a note from Christopher Robin, Pooh convinces Tigger, Rabbit, Piglet, Owl, Kanga, Roo, and Eeyore that their young friend has been captured by a creature named \"Backson\" and they set out to save him.", "video": false, "id": 51162, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Winnie the Pooh", "tagline": "Oh Pooh.", "vote_count": 87, "homepage": "http://disney.go.com/pooh/home/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1449283", "adult": false, "backdrop_path": "/2kcYTjMfrIufPT2HfcTeOdcvOxr.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2011-07-14", "popularity": 0.994981846177534, "original_title": "Winnie the Pooh", "budget": 30000000, "cast": [{"name": "Jim Cummings", "character": "Winnie the Pooh (Voice)", "id": 12077, "credit_id": "52fe47e4c3a36847f814dd35", "cast_id": 1004, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 0}, {"name": "Travis Oates", "character": "Piglet", "id": 81082, "credit_id": "52fe47e4c3a36847f814dd39", "cast_id": 1005, "profile_path": "/tgnHpDAmF98U3UpoQvg1aLWFhwR.jpg", "order": 1}, {"name": "Jim Cummings", "character": "Tigger (Voice)", "id": 12077, "credit_id": "52fe47e4c3a36847f814dd3d", "cast_id": 1006, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 2}, {"name": "Bud Luckey", "character": "Eeyore (Voice)", "id": 7918, "credit_id": "52fe47e4c3a36847f814dd41", "cast_id": 1007, "profile_path": "/pcCh7G19FKMNijmPQg1PMH1btic.jpg", "order": 3}, {"name": "Craig Ferguson", "character": "Owl (Voice)", "id": 24264, "credit_id": "52fe47e4c3a36847f814dd45", "cast_id": 1008, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 4}, {"name": "Tom Kenny", "character": "Rabbit (Voice)", "id": 78798, "credit_id": "52fe47e4c3a36847f814dd49", "cast_id": 1009, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 5}, {"name": "Kirsten Anderson-Lopez", "character": "Kanga (Voice)", "id": 227444, "credit_id": "52fe47e4c3a36847f814dd4d", "cast_id": 1010, "profile_path": null, "order": 6}, {"name": "Wyatt Hall", "character": "Roo (Voice)", "id": 227445, "credit_id": "52fe47e4c3a36847f814dd51", "cast_id": 1011, "profile_path": null, "order": 7}, {"name": "Jack Bouleter", "character": "Christopher Robin (Voice)", "id": 227446, "credit_id": "52fe47e4c3a36847f814dd55", "cast_id": 1012, "profile_path": null, "order": 8}, {"name": "Huell Howser", "character": "Backson (Voice)", "id": 184176, "credit_id": "52fe47e4c3a36847f814dd59", "cast_id": 1013, "profile_path": null, "order": 9}, {"name": "John Cleese", "character": "Narrator", "id": 8930, "credit_id": "52fe47e4c3a36847f814dd5d", "cast_id": 1014, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 10}], "directors": [{"name": "Stephen Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe47e4c3a36847f814dd1f", "profile_path": "/u3b80Ih4OglwadcChiXyYOxYtaz.jpg", "id": 227438}, {"name": "Don Hall", "department": "Directing", "job": "Director", "credit_id": "52fe47e4c3a36847f814dd25", "profile_path": null, "id": 227439}], "vote_average": 6.7, "runtime": 63}, "2011": {"poster_path": "/dYvyF1RlNokAd1N7Nek0vDpYsV6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IR", "name": "Iran"}], "revenue": 0, "overview": "In 1970s Iran, Marjane 'Marji' Statrapi watches events through her young eyes and her idealistic family of a long dream being fulfilled of the hated Shah's defeat in the Iranian Revolution of 1979. However as Marji grows up, she witnesses first hand how the new Iran, now ruled by Islamic fundamentalists, has become a repressive tyranny on its own.", "video": false, "id": 2011, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "Persepolis", "tagline": "", "vote_count": 93, "homepage": "http://www.sonypictures.com/classics/persepolis/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "fa", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808417", "adult": false, "backdrop_path": "/fC6iX7PRXLKf6Wst8sYP0hNuyOi.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "France 3 Cin\u00e9ma", "id": 591}, {"name": "Sofica Europacorp", "id": 854}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2007-06-27", "popularity": 0.239322431401523, "original_title": "Persepolis", "budget": 7300000, "cast": [{"name": "Chiara Mastroianni", "character": "Marjane adulte et adolescente (voix)", "id": 20710, "credit_id": "52fe432cc3a36847f803fc5f", "cast_id": 7, "profile_path": "/ctBiQ3I0hQCT6sLVkmvI8Pc3XSt.jpg", "order": 0}, {"name": "Catherine Deneuve", "character": "M\u00e8re de Marjane (voix)", "id": 50, "credit_id": "52fe432cc3a36847f803fc57", "cast_id": 4, "profile_path": "/5xkwq8GelCwOIVtyZ15LVA0UJGJ.jpg", "order": 1}, {"name": "Danielle Darrieux", "character": "Grand-m\u00e8re de Marjane (voix)", "id": 236016, "credit_id": "52fe432cc3a36847f803fca9", "cast_id": 22, "profile_path": "/4o6Wjfx4ahEr1ldLLZ0aEF3OTkP.jpg", "order": 2}, {"name": "Simon Abkarian", "character": "P\u00e8re de Marjane (voix)", "id": 10917, "credit_id": "52fe432cc3a36847f803fc5b", "cast_id": 6, "profile_path": "/oR1F42rVMY8QsmjK0R8ST4RBBe0.jpg", "order": 3}, {"name": "Fran\u00e7ois Jerosme", "character": "Oncle Anouche (voix)", "id": 43780, "credit_id": "52fe432cc3a36847f803fc7f", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Gabrielle Lopes Benites", "character": "Marjane enfant (voix)", "id": 43779, "credit_id": "52fe432cc3a36847f803fc7b", "cast_id": 12, "profile_path": "/zUqyn3aQXTzeP1n8yd8Udt1twYA.jpg", "order": 5}, {"name": "Tilly Mandelbrot", "character": "Lali", "id": 585604, "credit_id": "53860b04c3a3681ada001624", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Paola Cortellesi", "character": "Marjane Satrapi (italian version voice)", "id": 133214, "credit_id": "52fe432cc3a36847f803fc95", "cast_id": 17, "profile_path": "/nTCZ4gHQ6CIujADUL3imcVCPLiM.jpg", "order": 7}, {"name": "Licia Maglietta", "character": "Tadji Satrapi, madre di Marjane (italian version voice)", "id": 7540, "credit_id": "52fe432cc3a36847f803fc99", "cast_id": 18, "profile_path": "/uHqtZ6DVdhNOfijBq35XEH642Yh.jpg", "order": 8}, {"name": "Sergio Castellitto", "character": "Ebi Satrapi, padre di Marjane (italian version voice)", "id": 2166, "credit_id": "52fe432cc3a36847f803fc9d", "cast_id": 19, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 9}, {"name": "Angelica Bolognesi", "character": "Marjane da piccola (italian version voice)", "id": 932401, "credit_id": "52fe432cc3a36847f803fca1", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Miranda Bonansea", "character": "La nonna di Marjane (italian version voice)", "id": 932402, "credit_id": "52fe432cc3a36847f803fca5", "cast_id": 21, "profile_path": null, "order": 11}], "directors": [{"name": "Vincent Paronnaud", "department": "Directing", "job": "Director", "credit_id": "52fe432cc3a36847f803fc47", "profile_path": null, "id": 20709}, {"name": "Marjane Satrapi", "department": "Directing", "job": "Director", "credit_id": "52fe432cc3a36847f803fc4d", "profile_path": "/zkUWH6rO4TC8Jb8IhSo2QyDN3Ty.jpg", "id": 20659}], "vote_average": 7.4, "runtime": 95}, "10204": {"poster_path": "/2glntoCztzLkfjajsJKNOSY0vpn.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72178895, "overview": "A bet pits a British inventor, a Chinese thief, and a French artist on a worldwide adventure that they can circle the globe in 80 days.", "video": false, "id": 10204, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Around the World in 80 Days", "tagline": "Let your imagination soar.", "vote_count": 148, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0327437", "adult": false, "backdrop_path": "/8MquMy25UgrHvphvsrQ3N7tz1VS.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walden Media", "id": 10221}], "release_date": "2004-06-16", "popularity": 1.31409126967217, "original_title": "Around the World in 80 Days", "budget": 110000000, "cast": [{"name": "Jackie Chan", "character": "Passepartout / Lau Xing", "id": 18897, "credit_id": "52fe43419251416c75009763", "cast_id": 12, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "C\u00e9cile De France", "character": "Monique Laroche", "id": 17522, "credit_id": "52fe43419251416c7500976f", "cast_id": 15, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 1}, {"name": "Robert Fyfe", "character": "Jean Michel", "id": 64160, "credit_id": "52fe43419251416c75009767", "cast_id": 13, "profile_path": "/mjPX6LtOGfZFztfAu6ZK9o0TfgP.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Lord Kelvin", "id": 388, "credit_id": "52fe43419251416c7500976b", "cast_id": 14, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Will Forte", "character": "Policeman", "id": 62831, "credit_id": "52fe43419251416c75009773", "cast_id": 16, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 4}, {"name": "Mark Addy", "character": "Steamer Captain", "id": 13633, "credit_id": "52fe43419251416c75009777", "cast_id": 17, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Phileas Fogg", "id": 4581, "credit_id": "52fe43419251416c7500977b", "cast_id": 18, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Kathy Bates", "character": "Queen Victoria", "id": 8534, "credit_id": "52fe43419251416c7500977f", "cast_id": 19, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 7}, {"name": "Daniel Wu", "character": "Bak Mei", "id": 64436, "credit_id": "52fe43419251416c75009783", "cast_id": 20, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 8}, {"name": "Arnold Schwarzenegger", "character": "Prince Hapi", "id": 1100, "credit_id": "52fe43419251416c75009787", "cast_id": 21, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 9}, {"name": "Maggie Q", "character": "Female Agent", "id": 21045, "credit_id": "52fe43419251416c7500978b", "cast_id": 22, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 10}, {"name": "Sammo Hung", "character": "Wong Fei Hung", "id": 62410, "credit_id": "52fe43419251416c7500978f", "cast_id": 23, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 11}, {"name": "Karen Mok", "character": "General Fang", "id": 57831, "credit_id": "52fe43419251416c75009793", "cast_id": 24, "profile_path": "/hfxRryhoRtT05ukFa7ooSM8pDhN.jpg", "order": 12}, {"name": "Richard Branson", "character": "Balloon Man", "id": 158079, "credit_id": "52fe43419251416c75009797", "cast_id": 25, "profile_path": "/7RF4iztNoZebQWp0uKvEXs0mvLa.jpg", "order": 13}, {"name": "John Cleese", "character": "Grizzled Sergeant", "id": 8930, "credit_id": "52fe43419251416c7500979b", "cast_id": 26, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 14}, {"name": "Natalie Denise Sperl", "character": "Stunning Woman", "id": 203194, "credit_id": "52fe43419251416c7500979f", "cast_id": 27, "profile_path": "/ygyKQ6oDLLSIzcW3fspnwJkH6dv.jpg", "order": 15}, {"name": "Ian McNeice", "character": "Colonel Kitchener", "id": 3547, "credit_id": "52fe43419251416c750097a3", "cast_id": 28, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 16}, {"name": "David Ryall", "character": "Lord Salisbury", "id": 27822, "credit_id": "52fe43419251416c750097a7", "cast_id": 29, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 17}, {"name": "Roger Hammond", "character": "Lord Rhodes", "id": 27660, "credit_id": "52fe43419251416c750097ab", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Adam Godley", "character": "Mr. Sutton", "id": 23429, "credit_id": "52fe43419251416c750097af", "cast_id": 31, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 19}, {"name": "Wolfram Teufel", "character": "Belgian Dignitary", "id": 955709, "credit_id": "52fe43419251416c750097b3", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Ewen Bremner", "character": "Inspector Fix", "id": 1125, "credit_id": "52fe43419251416c750097b7", "cast_id": 33, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 21}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe43419251416c75009723", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 5.7, "runtime": 120}, "2018": {"poster_path": "/fiBb7aDRdYc7VAw0iHP9Bl9jZdc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94728529, "overview": "Mary Fiore, San Francisco's premiere wedding planner is rescued from an accident by the man of her dreams, pediatrician Steve Edison, only to find he is the fianc\u00e9 of her latest client, wealthy Fran Donnolly. As Mary continues making the wedding arrangements, she and Steve are put into a string of uncomfortable situations that force them to face their mutual attraction.", "video": false, "id": 2018, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Wedding Planner", "tagline": "His big day is her big problem.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0209475", "adult": false, "backdrop_path": "/u0sfuvRTKILAU3yMjBdAht38lAg.jpg", "production_companies": [{"name": "Dee Gee Entertainment", "id": 869}, {"name": "Tapestry Films", "id": 870}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2001-01-26", "popularity": 1.28649583748966, "original_title": "The Wedding Planner", "budget": 35000000, "cast": [{"name": "Jennifer Lopez", "character": "Mary Fiore", "id": 16866, "credit_id": "52fe432dc3a36847f80400d7", "cast_id": 16, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Steve Edison", "id": 10297, "credit_id": "52fe432dc3a36847f80400db", "cast_id": 17, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Justin Chambers", "character": "Massimo", "id": 20746, "credit_id": "52fe432dc3a36847f80400df", "cast_id": 18, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 2}, {"name": "Joanna Gleason", "character": "Mrs. Donolly", "id": 20747, "credit_id": "52fe432dc3a36847f80400e3", "cast_id": 19, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 3}, {"name": "Lou Myers", "character": "Burt Weinberg", "id": 20748, "credit_id": "52fe432dc3a36847f80400e7", "cast_id": 20, "profile_path": null, "order": 4}, {"name": "Kathy Najimy", "character": "Geri", "id": 11074, "credit_id": "52fe432dc3a36847f80400eb", "cast_id": 21, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 5}, {"name": "Charles Kimbrough", "character": "Mr. Donolly", "id": 20749, "credit_id": "52fe432dc3a36847f80400ef", "cast_id": 22, "profile_path": "/zDQ8y4TZBYN7Q2No94AAyP94osZ.jpg", "order": 6}, {"name": "Judy Greer", "character": "Penny", "id": 20750, "credit_id": "52fe432dc3a36847f80400f3", "cast_id": 23, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 7}, {"name": "Bridgette Wilson", "character": "Fran Donolly", "id": 20751, "credit_id": "52fe432dc3a36847f80400f7", "cast_id": 24, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 8}, {"name": "Alex Rocco", "character": "Salvatore", "id": 20752, "credit_id": "52fe432dc3a36847f80400fb", "cast_id": 25, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 9}, {"name": "Kevin Pollak", "character": "Dr. John Dojny", "id": 7166, "credit_id": "52fe432dc3a36847f80400ff", "cast_id": 26, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 10}, {"name": "Fred Willard", "character": "Basil St. Mosely", "id": 20753, "credit_id": "52fe432dc3a36847f8040103", "cast_id": 27, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 11}, {"name": "Frances Bay", "character": "Dottie", "id": 11794, "credit_id": "52fe432dc3a36847f8040107", "cast_id": 28, "profile_path": "/1QrSN7nGkdsvPG5EAZHUu8Ap3RJ.jpg", "order": 12}, {"name": "Philip Pavel", "character": "Benton", "id": 20754, "credit_id": "52fe432dc3a36847f804010b", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Natalia Jaroszyk", "character": "Crying Bride", "id": 20755, "credit_id": "52fe432dc3a36847f804010f", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Fabiana Udenio", "character": "Anna Bosco", "id": 13923, "credit_id": "52fe432dc3a36847f8040113", "cast_id": 31, "profile_path": "/60hBZQm3FVtQ99qNmLDUT93z6S6.jpg", "order": 15}, {"name": "Susan Mosher", "character": "Frieda", "id": 20756, "credit_id": "52fe432dc3a36847f8040117", "cast_id": 32, "profile_path": null, "order": 16}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe432cc3a36847f804007f", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.5, "runtime": 103}, "2019": {"poster_path": "/ssI1PsqGM2PfE2rspEzpLkiDGZE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74189677, "overview": "Natasha Binder comes to New Orleans looking for her father, who has gone missing. In doing so, she meets a very hard man called Chance. He helps her find out that her father was killed by an organisation who sell the opportunity to hunt human prey. They are taking advantage of a police strike in New Orleans. Will the Muscles from Brussels win through?", "video": false, "id": 2019, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Hard Target", "tagline": "Don't hunt what you can't kill.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107076", "adult": false, "backdrop_path": "/pZlaL2bn45k87in98N3P57SsDiT.jpg", "production_companies": [{"name": "Alphaville Films", "id": 11462}, {"name": "Universal Pictures", "id": 33}, {"name": "Renaissance Pictures", "id": 467}], "release_date": "1993-08-20", "popularity": 0.325144678480161, "original_title": "Hard Target", "budget": 18000000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Chance Boudreaux", "id": 15111, "credit_id": "52fe432dc3a36847f8040187", "cast_id": 11, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Arnold Vosloo", "character": "Pik van Cleef", "id": 16743, "credit_id": "52fe432dc3a36847f804018b", "cast_id": 12, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 1}, {"name": "Lance Henriksen", "character": "Emil Fouchon", "id": 2714, "credit_id": "52fe432dc3a36847f804018f", "cast_id": 13, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 2}, {"name": "Yancy Butler", "character": "Natasha Binder", "id": 20759, "credit_id": "52fe432dc3a36847f8040193", "cast_id": 14, "profile_path": "/emcS8cLp5aEEMdJS4Am0TLiX6WA.jpg", "order": 3}, {"name": "Willie C. Carpenter", "character": "Elijah Roper", "id": 20760, "credit_id": "52fe432dc3a36847f8040197", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Eliott Keener", "character": "Randal Poe", "id": 9173, "credit_id": "52fe432dc3a36847f804019b", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Sven-Ole Thorsen", "character": "Stephan", "id": 20761, "credit_id": "52fe432dc3a36847f804019f", "cast_id": 17, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 6}, {"name": "Chuck Pfarrer", "character": "Douglas Binder", "id": 20757, "credit_id": "52fe432dc3a36847f80401a3", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Robert Apisa", "character": "Mr. Lopacki", "id": 20762, "credit_id": "52fe432dc3a36847f80401a7", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Douglas Forsythe Rye", "character": "Frick", "id": 20763, "credit_id": "52fe432dc3a36847f80401ab", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Mike Leinert", "character": "Frack", "id": 20764, "credit_id": "52fe432dc3a36847f80401af", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Lenore Banks", "character": "Marie", "id": 20765, "credit_id": "52fe432dc3a36847f80401b3", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Wilford Brimley", "character": "Uncle Douvee", "id": 11065, "credit_id": "52fe432dc3a36847f80401b7", "cast_id": 23, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 12}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f804014d", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.7, "runtime": 97}, "18405": {"poster_path": "/tpjP9MLDRq6aC1MTpFcJEOYOGtj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Last House on the Left follows a group of teenage girls heading into the city when they hook up with a gang of drug-addled ne'er-do-wells and are brutally murdered. The killers find their way to the home of one of their victim's parents, where both father and mother exact a horrible revenge.", "video": false, "id": 18405, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Last House on the Left", "tagline": "If someone hurt someone you love, how far would you go to get revenge?", "vote_count": 90, "homepage": "http://www.thelasthouseontheleft.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0844708", "adult": false, "backdrop_path": "/6s2sJ03lXNXMIsv5HjU2JeiuLaO.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Film Afrika", "id": 773}, {"name": "Sean S. Cunningham Films", "id": 17611}], "release_date": "2009-03-13", "popularity": 0.211673972573433, "original_title": "The Last House on the Left", "budget": 0, "cast": [{"name": "Tony Goldwyn", "character": "John Collingwood", "id": 3417, "credit_id": "52fe47799251416c7509a9f5", "cast_id": 9, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 0}, {"name": "Monica Potter", "character": "Emma Collingwood", "id": 2140, "credit_id": "52fe47799251416c7509a9eb", "cast_id": 7, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 1}, {"name": "Sara Paxton", "character": "Mari Collingwood", "id": 60072, "credit_id": "52fe47799251416c7509a9e7", "cast_id": 6, "profile_path": "/6tgy3NOeP2Cd1NiW9xHETQSbfvB.jpg", "order": 2}, {"name": "Martha MacIsaac", "character": "Paige", "id": 54692, "credit_id": "52fe47799251416c7509a9f9", "cast_id": 10, "profile_path": "/iohyyedpbE1sZcJjYU00f8DnLLJ.jpg", "order": 3}, {"name": "Spencer Treat Clark", "character": "Justin", "id": 4012, "credit_id": "53cc4b200e0a265df0002bd5", "cast_id": 21, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 4}, {"name": "Garret Dillahunt", "character": "Krug", "id": 39520, "credit_id": "52fe47799251416c7509a9d3", "cast_id": 1, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 5}, {"name": "Riki Lindhome", "character": "Sadie", "id": 453, "credit_id": "52fe47799251416c7509a9df", "cast_id": 4, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 6}, {"name": "Joshua Cox", "character": "Giles", "id": 78150, "credit_id": "52fe47799251416c7509a9db", "cast_id": 3, "profile_path": "/bk2zLyfI2Hm2bv6MtdTFMVzidXw.jpg", "order": 7}, {"name": "Michael Bowen", "character": "Morton", "id": 2234, "credit_id": "52fe47799251416c7509a9d7", "cast_id": 2, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 8}, {"name": "Aaron Paul", "character": "Francis", "id": 84497, "credit_id": "52fe47799251416c7509a9e3", "cast_id": 5, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 9}], "directors": [{"name": "Dennis Iliadis", "department": "Directing", "job": "Director", "credit_id": "52fe47799251416c7509a9f1", "profile_path": "/hYagrD5DSqvYXHIBhRwU1cjhPoJ.jpg", "id": 94108}], "vote_average": 6.2, "runtime": 110}, "2022": {"poster_path": "/3zFQcZbJzXv5VH3WgQxXbDNgONu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171269535, "overview": "When Longfellow Deeds, a small-town pizzeria owner and poet, inherits $40 billion from his deceased uncle, he quickly begins rolling in a different kind of dough. Moving to the big city, Deeds finds himself besieged by opportunists all gunning for their piece of the pie. Babe, a television tabloid reporter, poses as an innocent small-town girl to do an expos\u00e9 on Deeds.", "video": false, "id": 2022, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Mr. Deeds", "tagline": "Small town kid, big time right hook.", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0280590", "adult": false, "backdrop_path": "/bDPs32HRBalnN8HyYMH0xoG4VIW.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Happy Madison", "id": 878}, {"name": "Out of the Blue... Entertainment", "id": 879}], "release_date": "2002-06-28", "popularity": 0.802351153786876, "original_title": "Mr. Deeds", "budget": 50000000, "cast": [{"name": "Adam Sandler", "character": "Longfellow Deeds", "id": 19292, "credit_id": "52fe432dc3a36847f8040331", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Babe Bennett", "id": 1920, "credit_id": "52fe432dc3a36847f8040335", "cast_id": 2, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "John Turturro", "character": "Emilio Lopez", "id": 1241, "credit_id": "52fe432dc3a36847f8040339", "cast_id": 3, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 2}, {"name": "Allen Covert", "character": "Marty", "id": 20818, "credit_id": "52fe432dc3a36847f804033d", "cast_id": 4, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 3}, {"name": "Peter Gallagher", "character": "Chuck Cedar", "id": 8212, "credit_id": "52fe432dc3a36847f8040341", "cast_id": 5, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 4}, {"name": "Erick Avari", "character": "Cecil Anderson", "id": 18917, "credit_id": "52fe432dc3a36847f8040345", "cast_id": 6, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 5}, {"name": "Jared Harris", "character": "Mac McGrath", "id": 15440, "credit_id": "52fe432dc3a36847f8040349", "cast_id": 7, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 6}, {"name": "Steve Buscemi", "character": "Crazy Eyes", "id": 884, "credit_id": "52fe432dc3a36847f804034d", "cast_id": 8, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 7}, {"name": "Conchata Ferrell", "character": "Jan", "id": 1909, "credit_id": "52fe432dc3a36847f8040351", "cast_id": 9, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 8}, {"name": "Peter Dante", "character": "Murph", "id": 20819, "credit_id": "52fe432dc3a36847f8040355", "cast_id": 10, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 9}, {"name": "Harve Presnell", "character": "Preston Blake", "id": 3907, "credit_id": "52fe432dc3a36847f8040359", "cast_id": 11, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 10}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f804039b", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.9, "runtime": 96}, "116711": {"poster_path": "/fdXA81BOdZ3pEyBlY8UUvuJj136.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 268426634, "overview": "A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world -- and ours.", "video": false, "id": 116711, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Epic", "tagline": "Discover a world beyond your imagination", "vote_count": 551, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0848537", "adult": false, "backdrop_path": "/v6w2o3ji8aVLph6zNgR5yDGQfmS.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 26162}, {"name": "Twentieth Century Fox Animation", "id": 11749}], "release_date": "2013-05-24", "popularity": 1.28693760773075, "original_title": "Epic", "budget": 100000000, "cast": [{"name": "Josh Hutcherson", "character": "Nod (voice)", "id": 27972, "credit_id": "52fe4b9ac3a36847f820b875", "cast_id": 11, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 0}, {"name": "Amanda Seyfried", "character": "Mary Katherine (voice)", "id": 71070, "credit_id": "52fe4b9ac3a36847f820b879", "cast_id": 12, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 1}, {"name": "Colin Farrell", "character": "Ronin (voice)", "id": 72466, "credit_id": "52fe4b9ac3a36847f820b87d", "cast_id": 13, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 2}, {"name": "Jason Sudeikis", "character": "Bomba (voice)", "id": 58224, "credit_id": "52fe4b9ac3a36847f820b881", "cast_id": 14, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 3}, {"name": "Aziz Ansari", "character": "Mub (voice)", "id": 86626, "credit_id": "52fe4b9ac3a36847f820b885", "cast_id": 15, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 4}, {"name": "Beyonc\u00e9 Knowles", "character": "Queen Tara (voice)", "id": 14386, "credit_id": "52fe4b9ac3a36847f820b889", "cast_id": 16, "profile_path": "/mDDpeDtxuL9Af59rOB8DAjni50A.jpg", "order": 5}, {"name": "Judah Friedlander", "character": "Taxi Driver (voice)", "id": 52860, "credit_id": "52fe4b9ac3a36847f820b88d", "cast_id": 18, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 6}, {"name": "Steven Tyler", "character": "Nim Galuu (voice)", "id": 37935, "credit_id": "52fe4b9ac3a36847f820b891", "cast_id": 19, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 7}, {"name": "Pitbull", "character": "Bufo (voice)", "id": 1009740, "credit_id": "52fe4b9ac3a36847f820b895", "cast_id": 20, "profile_path": "/djoNyIxnlwlV8OxG4jNc9MtT7uH.jpg", "order": 8}, {"name": "Blake Anderson", "character": "Dagda (voice)", "id": 521564, "credit_id": "52fe4b9ac3a36847f820b899", "cast_id": 21, "profile_path": "/ve1wEqjY5dwwVaLzJjXTr9clBZ4.jpg", "order": 9}, {"name": "Christoph Waltz", "character": "Mandrake (voice)", "id": 27319, "credit_id": "52fe4b9ac3a36847f820b89d", "cast_id": 22, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 10}, {"name": "John DiMaggio", "character": "Pinecone Jinn (voice)", "id": 294916, "credit_id": "52fe4b9ac3a36847f820b8a1", "cast_id": 23, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 11}, {"name": "Allison Bills", "character": "Dandelion Jinn (voice)", "id": 1273228, "credit_id": "52fe4b9ac3a36847f820b8c9", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Todd Cummings", "character": "Fruit Fly (Old) (voice)", "id": 1273229, "credit_id": "52fe4b9ac3a36847f820b8cd", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Troy Evans", "character": "Thistle Jinn (voice)", "id": 31006, "credit_id": "52fe4b9ac3a36847f820b8d1", "cast_id": 32, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 14}, {"name": "Emma Kenney", "character": "Marigold Girl (voice)", "id": 1252801, "credit_id": "54c499c8c3a36878d00077fd", "cast_id": 33, "profile_path": "/mQyXSGLYru2Q5pbCOoEjovyVcN5.jpg", "order": 15}], "directors": [{"name": "Chris Wedge", "department": "Directing", "job": "Director", "credit_id": "52fe4b9ac3a36847f820b847", "profile_path": "/nilZ2PUXF5ELKftii18OLnAMMz0.jpg", "id": 5713}], "vote_average": 6.5, "runtime": 102}, "2024": {"poster_path": "/yQE8Ag9t1wQHjY58rPzJX8G1iIz.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215294342, "overview": "After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.", "video": false, "id": 2024, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Patriot", "tagline": "Some things are worth fighting for.", "vote_count": 340, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0187393", "adult": false, "backdrop_path": "/yQWiRYbsO0ceVm6EJ7TUaFXbYx1.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Mutual Film Company", "id": 762}, {"name": "Global Entertainment Productions GmbH & Company Medien KG", "id": 9269}], "release_date": "2000-03-16", "popularity": 1.57092083374662, "original_title": "The Patriot", "budget": 110000000, "cast": [{"name": "Mel Gibson", "character": "Benjamin Martin", "id": 2461, "credit_id": "52fe432dc3a36847f80404d7", "cast_id": 12, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Heath Ledger", "character": "Gabriel Martin", "id": 1810, "credit_id": "52fe432dc3a36847f80404db", "cast_id": 13, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 1}, {"name": "Joely Richardson", "character": "Charlotte Selton", "id": 20810, "credit_id": "52fe432dc3a36847f80404df", "cast_id": 14, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 2}, {"name": "Jason Isaacs", "character": "Col. William Tavington", "id": 11355, "credit_id": "52fe432dc3a36847f80404e3", "cast_id": 15, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 3}, {"name": "Tch\u00e9ky Karyo", "character": "Jean Villeneuve", "id": 10698, "credit_id": "52fe432dc3a36847f80404e7", "cast_id": 16, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 4}, {"name": "Chris Cooper", "character": "Col. Harry Burwell", "id": 2955, "credit_id": "52fe432dc3a36847f80404eb", "cast_id": 17, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 5}, {"name": "Lisa Brenner", "character": "Anne Howard", "id": 20811, "credit_id": "52fe432dc3a36847f80404ef", "cast_id": 18, "profile_path": "/hTW5X0IQroIyQ8N1Ydqzd2lEuz4.jpg", "order": 6}, {"name": "Tom Wilkinson", "character": "Gen. Cornwallis", "id": 207, "credit_id": "52fe432dc3a36847f80404f3", "cast_id": 19, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 7}, {"name": "Leon Rippy", "character": "John Billings", "id": 15374, "credit_id": "52fe432dc3a36847f80404f7", "cast_id": 20, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 8}, {"name": "Donal Logue", "character": "Dan Scott", "id": 10825, "credit_id": "52fe432dc3a36847f80404fb", "cast_id": 21, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 9}, {"name": "Adam Baldwin", "character": "Capt. Wilkins", "id": 2059, "credit_id": "52fe432dc3a36847f80404ff", "cast_id": 22, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 10}, {"name": "Jay Arlen Jones", "character": "Occam", "id": 20812, "credit_id": "52fe432dc3a36847f8040503", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Joey D. Vieira", "character": "Peter Howard", "id": 20813, "credit_id": "52fe432dc3a36847f8040507", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Gregory Smith", "character": "Thomas Martin", "id": 20814, "credit_id": "52fe432dc3a36847f804050b", "cast_id": 25, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 13}, {"name": "Skye McCole Bartusiak", "character": "Susan Martin", "id": 20815, "credit_id": "52fe432dc3a36847f804050f", "cast_id": 26, "profile_path": "/8CylPAKx5YfX3xryjmj4M5YTLZT.jpg", "order": 14}, {"name": "Trevor Morgan", "character": "Nathan Martin", "id": 4940, "credit_id": "52fe432dc3a36847f8040513", "cast_id": 27, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 15}, {"name": "Bryan Chafin", "character": "Samuel Martin", "id": 20816, "credit_id": "52fe432dc3a36847f8040517", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Peter Woodward", "character": "Charles O'Hara", "id": 20817, "credit_id": "52fe432dc3a36847f804051b", "cast_id": 29, "profile_path": "/fMybhOr9I4K6fC1Bg2i6jXLV0Dg.jpg", "order": 17}, {"name": "Logan Lerman", "character": "William Martin", "id": 33235, "credit_id": "52fe432dc3a36847f804051f", "cast_id": 30, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 18}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f8040497", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.6, "runtime": 165}, "124905": {"poster_path": "/szVwkB4H5yyOJBVuQ432b9boO0N.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 524976069, "overview": "Fifteen years after an 'incident' at a Japanese nuclear power plant, physicist Joe Brody joins forces with his soldier son Ford to discover for themselves what really happened. What they uncover is prelude to global-threatening devastation. An epic rebirth to Toho's iconic Godzilla, this spectacular adventure pits the world's most famous monster against malevolent creatures who, bolstered by humanity's scientific arrogance, threaten our very existence.", "video": false, "id": 124905, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Godzilla", "tagline": "A king's arrival is never silent.", "vote_count": 1185, "homepage": "http://www.godzillamovie.com/", "belongs_to_collection": {"backdrop_path": "/8k47vHM7YtLTH10ZOB5m07fPMMc.jpg", "poster_path": "/nncQXO299wkUWsjQUtpvRmSyFgP.jpg", "id": 221541, "name": "Godzilla Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "jv", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0831387", "adult": false, "backdrop_path": "/2WKcxQbTVkLUgoS5kPnHlecbj02.jpg", "production_companies": [{"name": "RatPac-Dune Entertainment", "id": 41624}, {"name": "Toho Company", "id": 882}, {"name": "Legendary Pictures", "id": 923}, {"name": "Warner Bros.", "id": 6194}, {"name": "Disruption Entertainment", "id": 10256}], "release_date": "2014-05-16", "popularity": 3.24985129485387, "original_title": "Godzilla", "budget": 160000000, "cast": [{"name": "Aaron Taylor-Johnson", "character": "Ford Brody", "id": 27428, "credit_id": "52fe4ab8c3a368484e163445", "cast_id": 23, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 0}, {"name": "CJ Adams", "character": "Young Ford", "id": 1107800, "credit_id": "53fa0824c3a368735e00325f", "cast_id": 39, "profile_path": "/czZGg0TvKY38w0cd7XXqvTIqXy0.jpg", "order": 1}, {"name": "Ken Watanabe", "character": "Dr. Ishiro Serizawa", "id": 3899, "credit_id": "52fe4ab8c3a368484e163413", "cast_id": 9, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 2}, {"name": "Bryan Cranston", "character": "Joe Brody", "id": 17419, "credit_id": "52fe4ab8c3a368484e16341d", "cast_id": 12, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 3}, {"name": "Elizabeth Olsen", "character": "Elle Brody", "id": 550843, "credit_id": "52fe4ab8c3a368484e163421", "cast_id": 13, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 4}, {"name": "Carson Bolde", "character": "Sam Brody", "id": 1356528, "credit_id": "53fa0891c3a3687352003194", "cast_id": 40, "profile_path": "/9pQXzYgErEFGmQVuwjHx2wbrLoY.jpg", "order": 5}, {"name": "Sally Hawkins", "character": "Vivienne Graham", "id": 39658, "credit_id": "52fe4ab8c3a368484e163429", "cast_id": 15, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 6}, {"name": "Juliette Binoche", "character": "Sandra Brody", "id": 1137, "credit_id": "52fe4ab8c3a368484e163425", "cast_id": 14, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 7}, {"name": "David Strathairn", "character": "Admiral William Stenz", "id": 11064, "credit_id": "52fe4ab8c3a368484e16342d", "cast_id": 16, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 8}, {"name": "Richard T. Jones", "character": "Captain Russell Hampton", "id": 55755, "credit_id": "53fa09e1c3a368735b003184", "cast_id": 41, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 9}, {"name": "Victor Rasuk", "character": "Tre Morales", "id": 59251, "credit_id": "52fe4ab8c3a368484e163431", "cast_id": 17, "profile_path": "/zrNF2SQpnsOQsFHTKVs69x1TjEW.jpg", "order": 10}, {"name": "Patrick Sabongui", "character": "Master Sargeant Marcus Waltz", "id": 102742, "credit_id": "52fe4ab8c3a368484e16343d", "cast_id": 21, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 11}, {"name": "Jared Keeso", "character": "Jump Master", "id": 205053, "credit_id": "53fa0a29c3a36873610030cc", "cast_id": 42, "profile_path": "/hRoPfKnk8adZUfQqmi1O109BrFp.jpg", "order": 12}, {"name": "Luc Roderique", "character": "Bomb Tracker", "id": 1356538, "credit_id": "53fa0a8ac3a368735b003195", "cast_id": 43, "profile_path": "/jxnwn6u8RFNo9U9lcBFm0UORypT.jpg", "order": 13}, {"name": "James Pizzinato", "character": "HALO Jumper", "id": 134609, "credit_id": "53fa0bab0e0a267a7b004f8f", "cast_id": 44, "profile_path": "/jFUcy9ilvrXoigFdpeXtXJSTjp4.jpg", "order": 14}, {"name": "Al Sapienza", "character": "Huddleston", "id": 154917, "credit_id": "52fe4ab8c3a368484e163439", "cast_id": 20, "profile_path": "/acfzjSs4lbz5EdCWfZkB45Zxn8y.jpg", "order": 15}, {"name": "Brian Markinson", "character": "Whelan", "id": 28004, "credit_id": "52fe4ab8c3a368484e163435", "cast_id": 19, "profile_path": "/CL63sueT7SSBZQwoPH23FQEIR8.jpg", "order": 16}, {"name": "Yuki Morita", "character": "Akio's Mother", "id": 1278772, "credit_id": "52fe4ab8c3a368484e163441", "cast_id": 22, "profile_path": "/jtdwAv4LvWURYTQ5LdGmSKppUPV.jpg", "order": 17}, {"name": "Chris Shields", "character": "Dispatch Officer", "id": 198615, "credit_id": "53aca5f60e0a2659800006ed", "cast_id": 26, "profile_path": "/cKxfPfZMqCingbrn6MK3OSUhUVF.jpg", "order": 18}, {"name": "Catherine Lough Haggquist", "character": "PO Martinez", "id": 77622, "credit_id": "544f6eaac3a368023300175d", "cast_id": 116, "profile_path": "/bXyoDG0aMwUtObFgLgBi7NkviDY.jpg", "order": 19}, {"name": "Eric Keenleyside", "character": "Boyd", "id": 2250, "credit_id": "544f6eda0e0a263a0a0017ca", "cast_id": 117, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 20}, {"name": "Ken Yamamura", "character": "Takashi", "id": 1155715, "credit_id": "544f6ef9c3a3680233001764", "cast_id": 118, "profile_path": "/jDMgbLU3lziydK9HMS5yvARSPCH.jpg", "order": 21}, {"name": "Hiro Kanagawa", "character": "Hayato", "id": 60719, "credit_id": "544f6f2fc3a3680236001806", "cast_id": 119, "profile_path": "/2vDjvbgOMUx39j2kMcjLvH8bxpu.jpg", "order": 22}, {"name": "James D. Dever", "character": "Captain Freeman", "id": 1205880, "credit_id": "544f6f65c3a368532b001845", "cast_id": 120, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 23}, {"name": "Ty Olsson", "character": "Jainway", "id": 42711, "credit_id": "544f6fc50e0a263a100018bc", "cast_id": 121, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 24}, {"name": "Kurt Max Runte", "character": "Crow's Nest Tech", "id": 60721, "credit_id": "544f6fecc3a3680233001771", "cast_id": 122, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 25}, {"name": "Jill Teed", "character": "Head Nurse", "id": 21214, "credit_id": "544f701bc3a368022a0019a2", "cast_id": 123, "profile_path": "/oiIvgxGTDfh3l8Sellhn9W7Ve4b.jpg", "order": 26}, {"name": "Anthony Konechny", "character": "Thach", "id": 1381295, "credit_id": "54fb595c9251417bb8001cf4", "cast_id": 124, "profile_path": null, "order": 27}], "directors": [{"name": "Gareth Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe4ab8c3a368484e1633eb", "profile_path": "/nUs4hkGgByttwgNYafKlDvGzUsi.jpg", "id": 129894}], "vote_average": 6.2, "runtime": 123}, "2026": {"poster_path": "/q9q1rzyacXLbKyCSRrBiPwapXbU.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77944725, "overview": "A police officer is wracked by guilt from a prior stint as a negotiator. When a mafia accountant is taken hostage on his beat, he must negotiate the standoff, even as his own family is held captive by the mob.", "video": false, "id": 2026, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Hostage", "tagline": "Every Second Counts", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0340163", "adult": false, "backdrop_path": "/k8JTzgjrPfhOGKJqTgBgc29wUel.jpg", "production_companies": [{"name": "Yari Film Group", "id": 2448}, {"name": "Miramax Films", "id": 14}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Stratus Film Co.", "id": 11027}, {"name": "Syndicate Films International", "id": 26947}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG II", "id": 26948}, {"name": "Hostage GmbH", "id": 26949}], "release_date": "2005-03-09", "popularity": 0.583203366824465, "original_title": "Hostage", "budget": 52000000, "cast": [{"name": "Bruce Willis", "character": "Jeff Talley", "id": 62, "credit_id": "52fe432ec3a36847f8040619", "cast_id": 12, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Kevin Pollak", "character": "Walter Smith", "id": 7166, "credit_id": "52fe432ec3a36847f804061d", "cast_id": 13, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 1}, {"name": "Jimmy Bennett", "character": "Tommy Smith", "id": 6860, "credit_id": "52fe432ec3a36847f8040621", "cast_id": 14, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 2}, {"name": "Michelle Horn", "character": "Jennifer Smith", "id": 20847, "credit_id": "52fe432ec3a36847f8040625", "cast_id": 15, "profile_path": "/eFOyaLVvUTcxFuANlhMdT8oqfAu.jpg", "order": 3}, {"name": "Ben Foster", "character": "Mars Krupcheck", "id": 11107, "credit_id": "52fe432ec3a36847f8040629", "cast_id": 16, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 4}, {"name": "Jonathan Tucker", "character": "Dennis Kelly", "id": 17243, "credit_id": "52fe432ec3a36847f804062d", "cast_id": 17, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 5}, {"name": "Marshall Allman", "character": "Kevin Kelly", "id": 17347, "credit_id": "52fe432ec3a36847f8040631", "cast_id": 18, "profile_path": "/fZmvykaxxEWAR38be5MJedCKNO0.jpg", "order": 6}, {"name": "Serena Scott Thomas", "character": "Jane Talley", "id": 10780, "credit_id": "52fe432ec3a36847f8040635", "cast_id": 19, "profile_path": "/dvTjb6V46wOo9JGgcViU54UoZNN.jpg", "order": 7}, {"name": "Rumer Willis", "character": "Amanda Talley", "id": 20848, "credit_id": "52fe432ec3a36847f8040639", "cast_id": 20, "profile_path": "/mj8reEFyNEmeYAO3hsmLUaDfNO0.jpg", "order": 8}, {"name": "Marjean Holden", "character": "Carol Flores", "id": 106728, "credit_id": "52fe432ec3a36847f8040643", "cast_id": 22, "profile_path": "/6oK37CIHfEeJrn2ZdefS0nx9WnW.jpg", "order": 9}, {"name": "Kathryn Joosten", "character": "Louise", "id": 106935, "credit_id": "52fe432ec3a36847f8040647", "cast_id": 23, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 10}, {"name": "Kim Coates", "character": "The Watchman", "id": 8335, "credit_id": "54f22a78c3a368324500251c", "cast_id": 28, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 11}, {"name": "Art La Fleur", "character": "Bill Jorgenson", "id": 1350538, "credit_id": "54f22aa9c3a3681b710001f5", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Glenn Morshower", "character": "Lt. Leifitz", "id": 12797, "credit_id": "54f22adfc3a3683245002523", "cast_id": 30, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 13}], "directors": [{"name": "Florent-Emilio Siri", "department": "Directing", "job": "Director", "credit_id": "52fe432ec3a36847f804064d", "profile_path": "/ub0u9aMCQwO43jpEFgxnkS6jpl6.jpg", "id": 1011158}], "vote_average": 5.9, "runtime": 113}, "10220": {"poster_path": "/j5IzmdWdO5CqgeoyJLZ1dO7w375.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22921898, "overview": "A young man is a reformed gambler who must return to playing big stakes poker to help a friend pay off loan sharks.", "video": false, "id": 10220, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Rounders", "tagline": "Trust everyone... But always cut the cards.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0128442", "adult": false, "backdrop_path": "/hzbeuT5WezSPdf8LYuLlg7KQVyk.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "1998-09-11", "popularity": 0.77526559495037, "original_title": "Rounders", "budget": 12000000, "cast": [{"name": "Matt Damon", "character": "Mike McDermott", "id": 1892, "credit_id": "52fe43449251416c75009f1b", "cast_id": 1, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "John Turturro", "character": "Joey Knish", "id": 1241, "credit_id": "52fe43449251416c75009f1f", "cast_id": 3, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Gretchen Mol", "character": "Jo", "id": 15370, "credit_id": "52fe43449251416c75009f23", "cast_id": 4, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 2}, {"name": "Edward Norton", "character": "Lester 'Worm' Murph", "id": 819, "credit_id": "52fe43449251416c75009f4b", "cast_id": 11, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 3}, {"name": "John Malkovich", "character": "Teddy KGB", "id": 6949, "credit_id": "52fe43459251416c75009f4f", "cast_id": 12, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Famke Janssen", "character": "Petra", "id": 10696, "credit_id": "52fe43459251416c75009f53", "cast_id": 13, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 5}, {"name": "Martin Landau", "character": "Abe Petrovsky", "id": 2641, "credit_id": "52fe43459251416c75009f57", "cast_id": 14, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 6}, {"name": "Mal Z. Lawrence", "character": "Irving", "id": 171476, "credit_id": "53013613c3a3680a030d9022", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Paul Cicero", "character": "Russian Thug", "id": 1392770, "credit_id": "547da3abc3a36841e1001fac", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Ray Iannicelli", "character": "Kenny", "id": 155549, "credit_id": "547da3bbc3a36841e1001fb3", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Merwin Goldsmith", "character": "Sy", "id": 130724, "credit_id": "547da569c3a3685af30046c3", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Sonny Zito", "character": "Tony", "id": 1392772, "credit_id": "547da578c3a3685b05005769", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Josh Mostel", "character": "Zagosh", "id": 33489, "credit_id": "547da5879251412d7c00561f", "cast_id": 20, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 12}, {"name": "Lenny Clarke", "character": "Savino", "id": 87131, "credit_id": "547da59dc3a3685afd005561", "cast_id": 21, "profile_path": "/7JdEGLygOzrvjiOEvg7R4T3t0xJ.jpg", "order": 13}, {"name": "Peter Yoshida", "character": "Henry Lin", "id": 162508, "credit_id": "547da5aac3a3685b05005772", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Jay Boryea", "character": "Russian Thug #2", "id": 1392773, "credit_id": "547da5b7c3a36841e1001feb", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Lenny Venito", "character": "Moogie", "id": 37157, "credit_id": "547da5c59251412d7c005626", "cast_id": 24, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 16}, {"name": "Richard Mawe", "character": "Professor Eisen", "id": 227986, "credit_id": "547da5dc9251412d7800518b", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Michael Lombardi", "character": "D.A. Shields", "id": 205575, "credit_id": "547da5ec9251412d7c005632", "cast_id": 26, "profile_path": "/wO1gEd2sMM59kiTkC3PBgbG2UnH.jpg", "order": 18}, {"name": "Tom Aldredge", "character": "Judge Marinacci", "id": 49835, "credit_id": "547da5fa9251412d7f005370", "cast_id": 27, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 19}, {"name": "Tom Aldredge", "character": "Judge Kaplan", "id": 49835, "credit_id": "547da61d9251412d75004c17", "cast_id": 28, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 20}, {"name": "E. Matthew Yavne", "character": "Professor Green (as Matthew Yavne)", "id": 1392774, "credit_id": "547da62a9251412d7800519b", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Erik LaRay Harvey", "character": "Roy (as Eric LaRay Harvey)", "id": 1392775, "credit_id": "547da6429251411f4e004094", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Dominic Marcus", "character": "Dowling", "id": 180435, "credit_id": "547da64f9251412d780051a4", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Brian Anthony Wilson", "character": "Derald", "id": 127070, "credit_id": "547da65bc3a3685aed005c43", "cast_id": 32, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 24}, {"name": "George Kmeck", "character": "Prison Guard", "id": 1392776, "credit_id": "547da6679251412d6d0052d2", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Joseph Parisi", "character": "Property Guard (as Joe Parisi)", "id": 1392777, "credit_id": "547da6759251412d75004c28", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Melina Kanakaredes", "character": "Barbara", "id": 25972, "credit_id": "547da6819251412d780051af", "cast_id": 35, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 27}, {"name": "Kohl Sudduth", "character": "Wagner", "id": 92276, "credit_id": "547da68dc3a3685afd005582", "cast_id": 36, "profile_path": "/7nXa00ky9T6jfQ8D5KrWTHIaDXC.jpg", "order": 28}, {"name": "Charlie Matthes", "character": "Birch", "id": 1392778, "credit_id": "547da699c3a3685b0500578f", "cast_id": 37, "profile_path": null, "order": 29}, {"name": "Hank Jacobs", "character": "Steiny", "id": 1392780, "credit_id": "547da6a5c3a3685af9004b42", "cast_id": 38, "profile_path": null, "order": 30}, {"name": "Chris Messina", "character": "Higgins", "id": 61659, "credit_id": "547da6b29251412d780051b9", "cast_id": 39, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 31}, {"name": "Famke Janssen", "character": "Petra", "id": 10696, "credit_id": "547da6bfc3a3685b00005a2e", "cast_id": 40, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 32}, {"name": "Michael Ryan Segal", "character": "Griggs", "id": 131007, "credit_id": "547da6cd9251412d7c005654", "cast_id": 41, "profile_path": null, "order": 33}, {"name": "Kerry O'Malley", "character": "Kelly", "id": 100567, "credit_id": "547da6d9c3a3685aed005c5c", "cast_id": 42, "profile_path": "/j42ByTSTXyRmcN3WJAUDOkwNJvQ.jpg", "order": 34}, {"name": "Slava Schoot", "character": "Roman", "id": 122268, "credit_id": "547da6e4c3a3685af0005b00", "cast_id": 43, "profile_path": null, "order": 35}, {"name": "Goran Vi\u0161nji\u0107", "character": "Maurice", "id": 5725, "credit_id": "547da6f09251412d70005b12", "cast_id": 44, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 36}, {"name": "Michael Rispoli", "character": "Grama", "id": 18313, "credit_id": "547da6fb9251412d7c00565d", "cast_id": 45, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 37}, {"name": "Michele Zanes", "character": "Taj Dealer", "id": 1392781, "credit_id": "547da709c3a3685b00005a40", "cast_id": 46, "profile_path": null, "order": 38}, {"name": "Allan Havey", "character": "Guberman", "id": 66657, "credit_id": "547da7149251412d75004c42", "cast_id": 47, "profile_path": "/1AFT5SRHKWUn71CRI6YmzDYchzu.jpg", "order": 39}, {"name": "Joey Vega", "character": "Freddy Face (as Joe Vega)", "id": 1392782, "credit_id": "547da7239251412d75004c45", "cast_id": 48, "profile_path": null, "order": 40}, {"name": "Neal Hemphill", "character": "Claude", "id": 1392783, "credit_id": "547da72fc3a3685af30046f8", "cast_id": 49, "profile_path": null, "order": 41}, {"name": "Vernon E. Jordan Jr.", "character": "Judge McKinnon", "id": 1392784, "credit_id": "547da73d92514123ef003757", "cast_id": 50, "profile_path": null, "order": 42}, {"name": "Johnny Chan", "character": "Johnny Chan (as Jon C. Chan)", "id": 1239073, "credit_id": "547da74a92514123ef00375b", "cast_id": 51, "profile_path": null, "order": 43}, {"name": "Lisa Gorlitsky", "character": "Sherry", "id": 1392785, "credit_id": "547da7589251412d7f0053a5", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "John Di Benedetto", "character": "LaRossa", "id": 60121, "credit_id": "547da764c3a3685af3004701", "cast_id": 53, "profile_path": null, "order": 45}, {"name": "Nicole Brier", "character": "Sunshine", "id": 1392786, "credit_id": "547da771c3a36841e1002020", "cast_id": 54, "profile_path": null, "order": 46}, {"name": "Billy Campbell", "character": "Eisenberg", "id": 20215, "credit_id": "547da7d59251412d780051e0", "cast_id": 55, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 47}, {"name": "Tony Hoty", "character": "Taki", "id": 1392787, "credit_id": "547da7e0c3a3685b00005a6d", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Mario Mendoza", "character": "Zizzo", "id": 177424, "credit_id": "547da7f29251412d70005b42", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "Joe Zaloom", "character": "Cronos", "id": 171688, "credit_id": "547da7fd9251412d780051e5", "cast_id": 58, "profile_path": null, "order": 50}, {"name": "Sal Richards", "character": "Johnny Gold", "id": 1237372, "credit_id": "547da80c9251412d70005b44", "cast_id": 59, "profile_path": null, "order": 51}, {"name": "Josh Pais", "character": "Weitz", "id": 6181, "credit_id": "547da817c3a3685af0005b28", "cast_id": 60, "profile_path": "/ogv2OWxCz4gB1h9GOJA8h8qzooO.jpg", "order": 52}, {"name": "John Gallagher Jr.", "character": "Bartender", "id": 17487, "credit_id": "547da82b9251411f4e0040e5", "cast_id": 61, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 53}, {"name": "Adam LeFevre", "character": "Sean Frye", "id": 61607, "credit_id": "547da838c3a3685aed005c9a", "cast_id": 62, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 54}, {"name": "P.J. Brown", "character": "Vitter", "id": 1186169, "credit_id": "547da8449251411f4e0040ee", "cast_id": 63, "profile_path": null, "order": 55}, {"name": "David Zayas", "character": "Osborne", "id": 22821, "credit_id": "547da8509251411f4e0040f1", "cast_id": 64, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 56}, {"name": "Michael Arkin", "character": "Bear", "id": 1392788, "credit_id": "547da85bc3a3685aed005ca3", "cast_id": 65, "profile_path": null, "order": 57}, {"name": "Murphy Guyer", "character": "Detweiler", "id": 155547, "credit_id": "547da867c3a3685af9004b79", "cast_id": 66, "profile_path": "/vOuj13cuNCpKTewqN0pBG36Il4l.jpg", "order": 58}, {"name": "Alan Davidson", "character": "Cabbie", "id": 154649, "credit_id": "547da872c3a3685afd0055de", "cast_id": 67, "profile_path": null, "order": 59}], "directors": [{"name": "John Dahl", "department": "Directing", "job": "Director", "credit_id": "52fe43449251416c75009f29", "profile_path": "/klMxcB64Tu0sWCn3YDTMcGWPArQ.jpg", "id": 21053}], "vote_average": 6.7, "runtime": 121}, "10222": {"poster_path": "/8kNEhA31mXwUOuFuBGaN0T5oQwU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "If your enemy refuses to be humbled... Destroy him. Accompanied by his brother Kurt (Van Damme), American kickboxing champion Eric Sloane (Dennis Alexio), arrives in Thailand to defeat the Eastern warriors at their own sport. His opponent: ruthless fighter and Thai champion, Tong Po. Tong not only defeats Eric, he paralyzes him for life. Crazed with anger, Kurt vows revenge.", "video": false, "id": 10222, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Kickboxer", "tagline": "An Ancient Sport Becomes A Deadly Game.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/289pgfTQnR0qaOxeRcUxZMOSahY.jpg", "id": 105322, "name": "Kickboxer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097659", "adult": false, "backdrop_path": "/zGE2sbV0l1m3nFHcszQ4kT8aOos.jpg", "production_companies": [{"name": "Kings Road Entertainment", "id": 4255}], "release_date": "1989-09-09", "popularity": 0.873831127601261, "original_title": "Kickboxer", "budget": 1500000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Kurt Sloane", "id": 15111, "credit_id": "52fe43459251416c75009fbf", "cast_id": 1, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Dennis Alexio", "character": "Eric Sloane", "id": 64655, "credit_id": "52fe43459251416c75009fc3", "cast_id": 2, "profile_path": "/1GDCN4jue2vDT5HKH1iKUJKyniP.jpg", "order": 1}, {"name": "Dennis Chan", "character": "Xian Chow", "id": 64662, "credit_id": "52fe43459251416c75009fc7", "cast_id": 3, "profile_path": "/qZiaEH1JJt8c0WUPJl9gqArGT2P.jpg", "order": 2}, {"name": "Michel Qissi", "character": "Tong Po", "id": 222508, "credit_id": "52fe43459251416c75009ff5", "cast_id": 15, "profile_path": null, "order": 3}, {"name": "Haskell V. Anderson III", "character": "Winston Taylor", "id": 169702, "credit_id": "52fe43459251416c75009ff9", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Rochelle Ashana", "character": "Mylee", "id": 190185, "credit_id": "52fe43459251416c75009ffd", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Ka Ting Lee", "character": "Freddy Li", "id": 1076565, "credit_id": "52fe43459251416c7500a001", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Richard Foo", "character": "Tao Liu", "id": 126051, "credit_id": "52fe43459251416c7500a005", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Ricky Liu", "character": "Big Thai Man", "id": 1076566, "credit_id": "52fe43459251416c7500a009", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ho Ying Sin", "character": "Huge Village Man #1", "id": 551872, "credit_id": "52fe43459251416c7500a00d", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Tony Chan", "character": "Huge Village Man #2", "id": 126732, "credit_id": "52fe43459251416c7500a011", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Brad Kerner", "character": "U.S. Announcer", "id": 1076567, "credit_id": "52fe43459251416c7500a015", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Dean Harrington", "character": "U.S. Announcer", "id": 43670, "credit_id": "52fe43459251416c7500a019", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Mark DiSalle", "character": "U.S. Reporter", "id": 64681, "credit_id": "52fe43459251416c7500a01d", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Richard Santoro", "character": "U.S. Reporter", "id": 1076568, "credit_id": "52fe43459251416c7500a021", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Mark DiSalle", "department": "Directing", "job": "Director", "credit_id": "52fe43459251416c75009fcd", "profile_path": null, "id": 64681}, {"name": "David Worth", "department": "Directing", "job": "Director", "credit_id": "52fe43459251416c75009fd3", "profile_path": "/eelvhT2xXPSrk1ANkFZFwUFHegc.jpg", "id": 22012}], "vote_average": 6.4, "runtime": 97}, "15357": {"poster_path": "/xcZf2259XwaM6gs9DrzcN0be22H.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 8786375, "overview": "Damien and Leito return to District 13 on a mission to bring peace to the troubled sector that is controlled by five different gang bosses, before the city's secret services take drastic measures to solve the problem.", "video": false, "id": 15357, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "District 13: Ultimatum", "tagline": "", "vote_count": 99, "homepage": "http://www.b13ultimatum-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/6d8jbKsWVUKrKBHMcf9mvBkFCgv.jpg", "poster_path": "/j9ZhvTOa9gIQ48PsWfZuqwWNI7p.jpg", "id": 85946, "name": "The District 13 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1247640", "adult": false, "backdrop_path": "/xBOHpSyGsz10A9nVJ6XW0L8Y3GV.jpg", "production_companies": [{"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Canal+", "id": 5358}, {"name": "TF1 International", "id": 7799}, {"name": "Sofica Europacorp", "id": 854}, {"name": "EuropaCorp", "id": 6896}, {"name": "CiBy 2000", "id": 7832}], "release_date": "2009-02-18", "popularity": 0.521300794286745, "original_title": "Banlieue 13 - Ultimatum", "budget": 15000000, "cast": [{"name": "Cyril Raffaelli", "character": "Damien", "id": 21946, "credit_id": "52fe464f9251416c75074589", "cast_id": 3, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 0}, {"name": "David Belle", "character": "Le\u00efto", "id": 62439, "credit_id": "52fe464f9251416c7507458d", "cast_id": 4, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 1}, {"name": "Philippe Torreton", "character": "Le Pr\u00e9sident de la R\u00e9publique", "id": 23669, "credit_id": "52fe464f9251416c75074591", "cast_id": 5, "profile_path": "/v4mPR49rRcnqeZzEaRkAV1O93lg.jpg", "order": 2}, {"name": "Daniel Duval", "character": "Walter Gassman", "id": 6018, "credit_id": "52fe464f9251416c75074595", "cast_id": 6, "profile_path": "/vGJSb10cnsF4e218IW43YkuiyYN.jpg", "order": 3}, {"name": "Elodie Yung", "character": "Tao", "id": 78147, "credit_id": "52fe464f9251416c75074599", "cast_id": 7, "profile_path": "/pbhMOW06QNPujrHM2aNX2TS0eXH.jpg", "order": 4}, {"name": "MC Jean Gab'1", "character": "Molko", "id": 571477, "credit_id": "52fe464f9251416c7507459d", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "James Deano", "character": "Karl le skin", "id": 968591, "credit_id": "52fe464f9251416c750745a1", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Laouni Mouhid", "character": "Ali-K", "id": 1092019, "credit_id": "52fe464f9251416c750745a5", "cast_id": 10, "profile_path": "/y0l0l7RC9Obka8yzrGBOiwh8ndp.jpg", "order": 7}, {"name": "Fabrice Feltzinger", "character": "Little Montana", "id": 968377, "credit_id": "52fe464f9251416c750745a9", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Pierre-Marie Mosconi", "character": "Roland", "id": 206991, "credit_id": "52fe46509251416c750745ad", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Johnny Amaro", "character": "Policier centre de contr\u00f4le", "id": 933179, "credit_id": "52fe46509251416c750745b1", "cast_id": 13, "profile_path": null, "order": 10}], "directors": [{"name": "Patrick Alessandrin", "department": "Directing", "job": "Director", "credit_id": "52fe464f9251416c75074585", "profile_path": null, "id": 78146}], "vote_average": 6.2, "runtime": 101}, "75761": {"poster_path": "/fV6dwR0Tx6sl6YORjjdR61FGpYR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It's a drug that promises an out-of-body experience with each hit. On the street they call it Soy Sauce, and users drift across time and dimensions. But some who come back are no longer human. Suddenly a silent otherworldly invasion is underway, and mankind needs a hero. What it gets instead is John and David, a pair of college dropouts who can barely hold down jobs. Can these two stop the oncoming horror in time to save humanity? No. No, they can't.", "video": false, "id": 75761, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "John Dies at the End", "tagline": "Just so you know...they're sorry for anything that's about to happen.", "vote_count": 69, "homepage": "http://johndiesattheend.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1783732", "adult": false, "backdrop_path": "/aliCayqJ0J6TaqcbYhof6gqJzxJ.jpg", "production_companies": [{"name": "Magnet Releasing", "id": 3595}], "release_date": "2012-01-23", "popularity": 0.252772295127851, "original_title": "John Dies at the End", "budget": 0, "cast": [{"name": "Chase Williamson", "character": "Dave", "id": 576222, "credit_id": "52fe4911c3a368484e118ef5", "cast_id": 1017, "profile_path": null, "order": 0}, {"name": "Rob Mayes", "character": "John", "id": 110909, "credit_id": "52fe4911c3a368484e118ef9", "cast_id": 1018, "profile_path": null, "order": 1}, {"name": "Paul Giamatti", "character": "Arnie Blondestone", "id": 13242, "credit_id": "52fe4911c3a368484e118efd", "cast_id": 1019, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Clancy Brown", "character": "Dr. Albert Marconi", "id": 6574, "credit_id": "52fe4911c3a368484e118f01", "cast_id": 1020, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 3}, {"name": "Glynn Turman", "character": "Detective Lawrence 'Morgan Freeman' Appleton", "id": 114674, "credit_id": "52fe4911c3a368484e118f05", "cast_id": 1021, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 4}, {"name": "Doug Jones", "character": "Roger North", "id": 17005, "credit_id": "52fe4911c3a368484e118f09", "cast_id": 1022, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 5}, {"name": "Daniel Roebuck", "character": "Largeman", "id": 43774, "credit_id": "52fe4911c3a368484e118f0d", "cast_id": 1023, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 6}, {"name": "Fabianne Therese", "character": "Amy", "id": 576223, "credit_id": "52fe4911c3a368484e118f11", "cast_id": 1024, "profile_path": "/3HLRTbikOyRPIZjaFw134ytxknx.jpg", "order": 7}, {"name": "Jimmy Wong", "character": "Fred Chu", "id": 447244, "credit_id": "52fe4911c3a368484e118f15", "cast_id": 1026, "profile_path": null, "order": 8}, {"name": "Tai Bennett", "character": "Robert Marley", "id": 291133, "credit_id": "52fe4912c3a368484e118f19", "cast_id": 1027, "profile_path": null, "order": 9}, {"name": "Allison Weissman", "character": "Shelly", "id": 514154, "credit_id": "52fe4912c3a368484e118f1d", "cast_id": 1028, "profile_path": null, "order": 10}, {"name": "Jonny Weston", "character": "Justin White", "id": 928575, "credit_id": "52fe4912c3a368484e118f2d", "cast_id": 1031, "profile_path": "/qv8lrHTf22WO92kdWcIu8ZMee0J.jpg", "order": 11}, {"name": "Angus Scrimm", "character": "Father Shellnut", "id": 79584, "credit_id": "52fe4912c3a368484e118f31", "cast_id": 1032, "profile_path": "/kxKfdjCQ8fU6Xf2uzAetWp2Hb3Z.jpg", "order": 12}], "directors": [{"name": "Don Coscarelli", "department": "Directing", "job": "Director", "credit_id": "52fe4912c3a368484e118f23", "profile_path": "/zuwHEQlrZ78P1PudZsPO2DfS6KA.jpg", "id": 58245}], "vote_average": 6.0, "runtime": 99}, "2034": {"poster_path": "/sDT2biSB7wzBJdXq9o3ldr7VfvY.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104876233, "overview": "On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.", "video": false, "id": 2034, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Training Day", "tagline": "The only thing more dangerous than the line being crossed, is the cop who will cross it.", "vote_count": 457, "homepage": "http://trainingday.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0139654", "adult": false, "backdrop_path": "/n7z6rdjO4n9sVa06dniOfxV3GGq.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2001-10-05", "popularity": 1.40003764589334, "original_title": "Training Day", "budget": 45000000, "cast": [{"name": "Denzel Washington", "character": "Alonzo Harris", "id": 5292, "credit_id": "52fe432ec3a36847f8040975", "cast_id": 5, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "Jake Hoyt", "id": 569, "credit_id": "52fe432ec3a36847f8040979", "cast_id": 6, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Scott Glenn", "character": "Roger", "id": 349, "credit_id": "52fe432ec3a36847f804097d", "cast_id": 7, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 2}, {"name": "Tom Berenger", "character": "Stan Gursky", "id": 13022, "credit_id": "52fe432ec3a36847f8040981", "cast_id": 8, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 3}, {"name": "Harris Yulin", "character": "Doug Rosselli", "id": 1166, "credit_id": "52fe432ec3a36847f8040985", "cast_id": 9, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 4}, {"name": "Cliff Curtis", "character": "Smiley", "id": 7248, "credit_id": "52fe432ec3a36847f8040989", "cast_id": 10, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 5}, {"name": "Snoop Dogg", "character": "Blue", "id": 19767, "credit_id": "52fe432ec3a36847f804098d", "cast_id": 11, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 6}, {"name": "Dr. Dre", "character": "Paul", "id": 2041, "credit_id": "52fe432ec3a36847f8040991", "cast_id": 12, "profile_path": "/lPcS1QAULXTZP53ogsYSW4bZAOe.jpg", "order": 7}, {"name": "Eva Mendes", "character": "Sara", "id": 8170, "credit_id": "52fe432ec3a36847f8040995", "cast_id": 13, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 8}, {"name": "Nick Chinlund", "character": "Tim", "id": 18461, "credit_id": "52fe432ec3a36847f8040999", "cast_id": 14, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 9}, {"name": "Jaime Osorio G\u00f3mez", "character": "Mark", "id": 5874, "credit_id": "52fe432ec3a36847f804099d", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Charlotte Ayanna", "character": "Lisa", "id": 6281, "credit_id": "52fe432ec3a36847f80409a1", "cast_id": 16, "profile_path": "/5bqzLVKlwdt1ePTHnYjZUaBpCC8.jpg", "order": 11}, {"name": "Kyjel N. Jolly", "character": "Alonzo's Son", "id": 1449364, "credit_id": "551f1aff9251415c820002b5", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe432ec3a36847f804095f", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 7.0, "runtime": 122}, "34803": {"poster_path": "/iicn7Nku5G4cwCfN5DfX8aiRDD9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Aaron's father's funeral is today at the family home, and everything goes wrong: the funeral home delivers the wrong body, his cousin accidentally drugs her fianc\u00e9, and Aaron's successful younger brother, Ryan, flies in from New York, broke but arrogant. To top it all off, a mysterious stranger wants a word with Aaron.", "video": false, "id": 34803, "genres": [{"id": 35, "name": "Comedy"}], "title": "Death at a Funeral", "tagline": "This is one sad family.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321509", "adult": false, "backdrop_path": "/eu9T3NiweIyMSY3i0bEUKtpYxTK.jpg", "production_companies": [{"name": "Parabolic Pictures", "id": 1012}, {"name": "Screen Gems", "id": 3287}], "release_date": "2010-04-15", "popularity": 0.522022860603619, "original_title": "Death at a Funeral", "budget": 21000000, "cast": [{"name": "Zoe Saldana", "character": "Elaine", "id": 8691, "credit_id": "52fe457e9251416c91034467", "cast_id": 1, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 0}, {"name": "James Marsden", "character": "Oscar", "id": 11006, "credit_id": "52fe457e9251416c9103446b", "cast_id": 2, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Martin Lawrence", "character": "Ryan", "id": 78029, "credit_id": "52fe457e9251416c9103446f", "cast_id": 4, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 2}, {"name": "Tracy Morgan", "character": "Norman", "id": 56903, "credit_id": "52fe457e9251416c91034473", "cast_id": 5, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 3}, {"name": "Chris Rock", "character": "Aaron", "id": 2632, "credit_id": "52fe457e9251416c91034477", "cast_id": 6, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 4}, {"name": "Danny Glover", "character": "Uncle Russell", "id": 2047, "credit_id": "52fe457e9251416c9103447b", "cast_id": 7, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 5}, {"name": "Columbus Short", "character": "Jeff", "id": 31132, "credit_id": "52fe457e9251416c9103447f", "cast_id": 8, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Frank", "id": 22970, "credit_id": "52fe457e9251416c91034483", "cast_id": 9, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Regina Hall", "character": "Michelle", "id": 35705, "credit_id": "52fe457e9251416c91034487", "cast_id": 10, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 8}, {"name": "Loretta Devine", "character": "Cynthia", "id": 18284, "credit_id": "52fe457e9251416c9103448b", "cast_id": 11, "profile_path": "/zLQFwQTFtHkb8sbFdkPNamFI7jv.jpg", "order": 9}, {"name": "Keith David", "character": "Reverend Davis", "id": 65827, "credit_id": "52fe457e9251416c9103449b", "cast_id": 17, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 10}, {"name": "Luke Wilson", "character": "Derek", "id": 36422, "credit_id": "52fe457e9251416c910344c3", "cast_id": 24, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 11}, {"name": "Regine Nehy", "character": "Martina", "id": 74571, "credit_id": "52fe457e9251416c910344c7", "cast_id": 25, "profile_path": "/kjYJoAKzVF4bCOCXbOuLIVaO3J1.jpg", "order": 12}, {"name": "Ron Glass", "character": "Duncan", "id": 74570, "credit_id": "52fe457e9251416c910344cb", "cast_id": 26, "profile_path": "/4OBVfJUbWo6vhnKkwGu6Qq3r3sf.jpg", "order": 13}, {"name": "Kevin Hart", "character": "Brian", "id": 55638, "credit_id": "52fe457e9251416c910344cf", "cast_id": 27, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 14}, {"name": "Columbus Short", "character": "Jeff", "id": 31132, "credit_id": "52fe457e9251416c910344d3", "cast_id": 28, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 15}], "directors": [{"name": "Neil LaBute", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c91034497", "profile_path": "/snHfcueBlYFinCdUoVmK9CHdZX0.jpg", "id": 58689}], "vote_average": 5.9, "runtime": 92}, "10228": {"poster_path": "/aalTziefHGUVLg44iyWS8B7ee5u.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163644662, "overview": "The adventure explodes into action with the debut of Mewtwo, a bio-engineered Pokemon created from the DNA of Mew, the rarest of all Pokemon. Determined to prove its superiority, Mewtwo lures Ash, Pikachu and others into a Pokemon match like none before. Mewtwo vs. Mew. Super-clones vs. Pokemon. It's the ultimate showdown ... with the very future of the world at stake!", "video": false, "id": 10228, "genres": [{"id": 16, "name": "Animation"}], "title": "Pok\u00e9mon Movie 1: The First Movie", "tagline": "The Pok\u00e9mon Match of All Time is Here.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xQM02GXLgC0HxMHOCUIxTsjzi1O.jpg", "poster_path": "/j5te0YNZAMXDBnsqTUDKIBEt8iu.jpg", "id": 34055, "name": "Pok\u00e9mon Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0190641", "adult": false, "backdrop_path": "/xZvVOnaM3b2te7rf7u4gRVDcamR.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Toho Company", "id": 882}], "release_date": "1998-07-18", "popularity": 0.542858301483602, "original_title": "\u30df\u30e5\u30a6\u30c4\u30fc\u306e\u9006\u8972", "budget": 30000000, "cast": [{"name": "Rica Matsumoto", "character": "Satoshi (\"Ash Ketchum\")", "id": 65424, "credit_id": "52fe43469251416c7500a1f7", "cast_id": 1, "profile_path": "/cjBOFOJTcg786u7w0NQVd7hicRf.jpg", "order": 0}, {"name": "Mayumi Iizuka", "character": "Kasumi (\"Misty\")", "id": 65426, "credit_id": "52fe43469251416c7500a1fb", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Y\u016bji Ueda", "character": "Takeshi (\"Brock\")", "id": 65427, "credit_id": "52fe43469251416c7500a1ff", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Ikue \u014ctani", "character": "Pikachu", "id": 73044, "credit_id": "52fe43469251416c7500a21b", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Satomi K\u014drogi", "character": "Togepi", "id": 1137464, "credit_id": "5452bccf0e0a265f280002a8", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Megumi Hayashibara", "character": "Musashi (''Jessie'')", "id": 40325, "credit_id": "5452be01c3a368092700029a", "cast_id": 24, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 5}, {"name": "Shin'ichir\u014d Miki", "character": "Kojir\u014d (''James'')", "id": 1379717, "credit_id": "5452be24c3a3680923000282", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Inuko Inuyama", "character": "Nyarth (''Miaouss'')", "id": 1238866, "credit_id": "5452befe0e0a265f2e000275", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Masachika Ichimura", "character": "Mewtwo", "id": 9717, "credit_id": "5452bf090e0a265f1e0002b0", "cast_id": 27, "profile_path": "/PewyrEczJmfsef4FB8zln50Hre.jpg", "order": 8}, {"name": "K\u014dichi Yamadera", "character": "Mew", "id": 1379718, "credit_id": "5452bf200e0a265f2e00027a", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "T\u014dru Furuya", "character": "Sorao (''Corey'')", "id": 40327, "credit_id": "5452bf44c3a368091a0002bd", "cast_id": 29, "profile_path": "/9fuENGDDd6C30IudobBV8uh2XaK.jpg", "order": 10}, {"name": "Aiko Sat\u014d", "character": "Sweet (''Neesha'')", "id": 1379719, "credit_id": "5452bf7d0e0a265f190002b5", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Wataru Takagi", "character": "Umio (''Fergus'')", "id": 1241595, "credit_id": "5452bfbcc3a368092e0002af", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Raymond Johnson", "character": "Raymond", "id": 79982, "credit_id": "5452bfec0e0a265f2e000290", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Ayako Shiraishi", "character": "Nurse Joy", "id": 1247765, "credit_id": "5452c0060e0a265f2e000294", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Chinami Nishimura", "character": "Junsar (''Officer Jenny'')", "id": 124480, "credit_id": "5452c036c3a3680931000262", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Sachiko Kobayashi", "character": "Voyager (''Miranda'')", "id": 1200212, "credit_id": "5452c059c3a368092b0002a0", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Y\u014dsuke Akimoto", "character": "Dr. Fuji", "id": 84509, "credit_id": "5452c07f0e0a265f160002e1", "cast_id": 36, "profile_path": "/kfXIFJCXEkVzpOC18x3puDNneTd.jpg", "order": 17}, {"name": "Hirotaka Suzuoki", "character": "Sakaki (''Giovanni'')", "id": 100124, "credit_id": "5452c09bc3a368092b0002a6", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Unsh\u014d Ishizuka", "character": "Narration", "id": 68916, "credit_id": "5452c0ac0e0a265f190002c4", "cast_id": 38, "profile_path": "/msFDooyGBJLzWESwvvnjht6AnbV.jpg", "order": 19}], "directors": [{"name": "Michael Haigney", "department": "Directing", "job": "Director", "credit_id": "52fe43469251416c7500a205", "profile_path": null, "id": 65428}, {"name": "Kunihiko Yuyama", "department": "Directing", "job": "Director", "credit_id": "52fe43469251416c7500a20b", "profile_path": null, "id": 65429}], "vote_average": 6.6, "runtime": 75}, "10229": {"poster_path": "/kso0otMalKy9qSEdrzYP7Bc3Rjg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41227069, "overview": "When the popular, restless Landon Carter is forced to participate in the school drama production he falls in love with Jamie Sullivan, the daughter of the town's minister. Jamie has a \"to-do\" list for her life and also a very big secret she must keep from Landon.", "video": false, "id": 10229, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "A Walk to Remember", "tagline": "She didn't belong. She was misunderstood. And she would change him forever.", "vote_count": 240, "homepage": "http://www2.warnerbros.com/walktoremember/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0281358", "adult": false, "backdrop_path": "/nKHwNmUGe002ayPlfwG9CVTIXC2.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Pandora Pictures", "id": 5329}], "release_date": "2002-01-25", "popularity": 1.12090128402982, "original_title": "A Walk to Remember", "budget": 11000000, "cast": [{"name": "Mandy Moore", "character": "Jamie Sullivan", "id": 16855, "credit_id": "52fe43469251416c7500a23f", "cast_id": 1, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Shane West", "character": "Landon Carter", "id": 81295, "credit_id": "52fe43469251416c7500a243", "cast_id": 2, "profile_path": "/1TiKpPiFwdUbs24yrNZLSzAjsnk.jpg", "order": 1}, {"name": "Peter Coyote", "character": "Reverend Sullivan", "id": 9979, "credit_id": "52fe43469251416c7500a26b", "cast_id": 9, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 2}, {"name": "Daryl Hannah", "character": "Cynthia Carter", "id": 589, "credit_id": "52fe43469251416c7500a26f", "cast_id": 10, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 3}, {"name": "Lauren German", "character": "Belinda", "id": 37014, "credit_id": "52fe43469251416c7500a279", "cast_id": 12, "profile_path": "/7TdS4sFvBzUDahM65VWVYXcFXH2.jpg", "order": 4}, {"name": "Clayne Crawford", "character": "Dean", "id": 59671, "credit_id": "52fe43469251416c7500a27d", "cast_id": 13, "profile_path": "/6JCfyUTPMxwcfZMauVRHBCu0EWh.jpg", "order": 5}, {"name": "Al Thompson", "character": "Eric", "id": 1275307, "credit_id": "52fe43469251416c7500a281", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Paz de la Huerta", "character": "Tracie", "id": 59882, "credit_id": "52fe43469251416c7500a285", "cast_id": 15, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 7}, {"name": "Matt Lutz", "character": "Clay Gephardt", "id": 1230911, "credit_id": "54aa6269c3a3684091000414", "cast_id": 16, "profile_path": "/s21ZFuuPxDdhzTT2OFlASDv7hnu.jpg", "order": 8}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe43469251416c7500a249", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 7.1, "runtime": 101}, "34806": {"poster_path": "/1Ig6ZQpLZfLsdvMLHD0inc2w0HB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77477008, "overview": "When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she's artificially inseminated, she meets Stan, who seems to be just who she's been searching for all her life. Now, Zoe has to figure out how to make her two life's dreams fit with each other.", "video": false, "id": 34806, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Back-Up Plan", "tagline": "Fall in love, get married, have a baby. Not necessarily in that order.", "vote_count": 121, "homepage": "http://www.theback-upplan.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1212436", "adult": false, "backdrop_path": "/4s7TicMuqg0HjFahZgidHCzsfbC.jpg", "production_companies": [{"name": "Escape Artists", "id": 1423}, {"name": "CBS Films", "id": 5490}], "release_date": "2010-04-23", "popularity": 0.511263567423999, "original_title": "The Back-Up Plan", "budget": 35000000, "cast": [{"name": "Jennifer Lopez", "character": "Zoe", "id": 16866, "credit_id": "52fe457e9251416c91034501", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Alex O'Loughlin", "character": "Stan", "id": 41297, "credit_id": "52fe457e9251416c91034505", "cast_id": 2, "profile_path": "/1ala6CFOow9svfbBsxyjh0jYXSl.jpg", "order": 1}, {"name": "Danneel Ackles", "character": "Olivia", "id": 81164, "credit_id": "52fe457e9251416c91034509", "cast_id": 3, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Clive", "id": 29020, "credit_id": "52fe457e9251416c9103450d", "cast_id": 4, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Anthony Anderson", "character": "Dad", "id": 18471, "credit_id": "52fe457e9251416c91034511", "cast_id": 5, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 4}, {"name": "Noureen DeWulf", "character": "Daphne", "id": 66524, "credit_id": "52fe457e9251416c91034515", "cast_id": 6, "profile_path": "/kamvMaDxCe2qdQvX5IWcyYp9np6.jpg", "order": 5}, {"name": "Jennifer Elise Cox", "character": "Babyland Salesgirl", "id": 112052, "credit_id": "52fe457e9251416c91034519", "cast_id": 7, "profile_path": "/rXBb4Ts5jUZTn6jA0Nw9EPUzNs2.jpg", "order": 6}, {"name": "Melissa McCarthy", "character": "Carol", "id": 55536, "credit_id": "52fe457e9251416c9103451d", "cast_id": 8, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 7}, {"name": "Tom Bosley", "character": "Arthur", "id": 41217, "credit_id": "52fe457e9251416c91034521", "cast_id": 9, "profile_path": "/9S95lnM10Qa3PGY86o7dvSFg0VL.jpg", "order": 8}, {"name": "Maribeth Monroe", "character": "Lori", "id": 207250, "credit_id": "52fe457e9251416c9103455d", "cast_id": 20, "profile_path": "/tXXFnOhRs405ZXjAPG3LecP772r.jpg", "order": 9}, {"name": "Linda Lavin", "character": "Nana", "id": 113223, "credit_id": "52fe457e9251416c91034525", "cast_id": 10, "profile_path": "/xb1w97ZCeCXQAnBr0A508AS3pyK.jpg", "order": 10}, {"name": "Michaela Watkins", "character": "Mona", "id": 113224, "credit_id": "52fe457e9251416c91034529", "cast_id": 11, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 11}], "directors": [{"name": "Alan Poul", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c9103452f", "profile_path": "/6wzLRoaq3D4HkE9TEdV3ssLO4Ne.jpg", "id": 113225}], "vote_average": 5.5, "runtime": 106}, "2043": {"poster_path": "/1ZjDmPKMUtout8hR77qmK1llgls.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105178561, "overview": "When a teacher kidnaps a girl from a prestigious school, homicide detective Alex Cross takes the case, teaming up with young security agent Jezzie Flannigan, in hopes of finding the girl and stopping the brutal psychopath. Every second counts as Alex and Jezzie attempt to track down the kidnapper before the spider claims another victim for its web.", "video": false, "id": 2043, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Along Came a Spider", "tagline": "The game is far from over.", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eyKpawn8yMq6kdv03wgKruMuSJX.jpg", "poster_path": "/64mlnEVoq1I0BZe4iDdAv89qO9Z.jpg", "id": 142680, "name": "Alex Cross Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0164334", "adult": false, "backdrop_path": "/tg0qbKJLBzzVwYfwde5UBOVfbFQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "AZL Productions KG", "id": 902}, {"name": "David Brown Productions", "id": 903}, {"name": "MFP Munich Film Partners", "id": 904}, {"name": "Phase 1 Productions", "id": 905}, {"name": "Revelations Entertainment", "id": 906}], "release_date": "2001-04-06", "popularity": 0.575815489217502, "original_title": "Along Came a Spider", "budget": 60000000, "cast": [{"name": "Morgan Freeman", "character": "Alex Cross", "id": 192, "credit_id": "52fe432fc3a36847f8040d35", "cast_id": 11, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Monica Potter", "character": "Jezzie Flannigan", "id": 2140, "credit_id": "52fe432fc3a36847f8040d39", "cast_id": 12, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 1}, {"name": "Michael Wincott", "character": "Garry Sone", "id": 7486, "credit_id": "52fe432fc3a36847f8040d3d", "cast_id": 13, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 2}, {"name": "Dylan Baker", "character": "Ollie McArthur", "id": 19152, "credit_id": "52fe432fc3a36847f8040d41", "cast_id": 14, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 3}, {"name": "Mika Boorem", "character": "Megan Rose", "id": 21027, "credit_id": "52fe432fc3a36847f8040d45", "cast_id": 15, "profile_path": "/amQuR9PGz0yt6IXNnwLOAEkfPcq.jpg", "order": 4}, {"name": "Anton Yelchin", "character": "Dimitri Storodubov", "id": 21028, "credit_id": "52fe432fc3a36847f8040d49", "cast_id": 16, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 5}, {"name": "Jay O. Sanders", "character": "Kyle Craig", "id": 6067, "credit_id": "52fe432fc3a36847f8040d4d", "cast_id": 17, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 6}, {"name": "Billy Burke", "character": "Ben Devine", "id": 21029, "credit_id": "52fe432fc3a36847f8040d51", "cast_id": 18, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 7}, {"name": "Michael Moriarty", "character": "Senator Hank Rose", "id": 21030, "credit_id": "52fe432fc3a36847f8040d55", "cast_id": 19, "profile_path": "/vWDVdQpYvCS0ez1z0zk5N9BffY9.jpg", "order": 8}, {"name": "Penelope Ann Miller", "character": "Elizabeth Rose", "id": 14698, "credit_id": "52fe432fc3a36847f8040d59", "cast_id": 20, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 9}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe432fc3a36847f8040d01", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 5.7, "runtime": 104}, "2044": {"poster_path": "/vbh2xjDVcdIMMva0uGeeExEQAv2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114830111, "overview": "A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late", "video": false, "id": 2044, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Lake House", "tagline": "How do you hold on to someone you've never met?", "vote_count": 184, "homepage": "http://wwws.warnerbros.de/thelakehouse/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0410297", "adult": false, "backdrop_path": "/1G0ElFizADtNo6JPaG1mSfdKXu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2006-06-16", "popularity": 0.716776939287464, "original_title": "The Lake House", "budget": 40000000, "cast": [{"name": "Keanu Reeves", "character": "Alex Wyler", "id": 6384, "credit_id": "52fe432fc3a36847f8040ddd", "cast_id": 14, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Sandra Bullock", "character": "Kate Forster", "id": 18277, "credit_id": "52fe432fc3a36847f8040de1", "cast_id": 15, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 1}, {"name": "Shohreh Aghdashloo", "character": "Anna Klyczynski", "id": 21041, "credit_id": "52fe432fc3a36847f8040de5", "cast_id": 16, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "Simon Wyler", "id": 290, "credit_id": "52fe432fc3a36847f8040de9", "cast_id": 17, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "Ebon Moss-Bachrach", "character": "Henry Wyler", "id": 21042, "credit_id": "52fe432fc3a36847f8040ded", "cast_id": 18, "profile_path": "/ur1xAkenuiahTeQ8cIo20hwAvnm.jpg", "order": 4}, {"name": "Willeke van Ammelrooy", "character": "Kate`s Mother", "id": 13506, "credit_id": "52fe432fc3a36847f8040df1", "cast_id": 19, "profile_path": "/l3q5vBixKV4LrJWaRdnXQ2Rc3PW.jpg", "order": 5}, {"name": "Dylan Walsh", "character": "Morgan", "id": 21043, "credit_id": "52fe432fc3a36847f8040df5", "cast_id": 20, "profile_path": "/jrQiBcQMkhgXAtJ7kpSJ15tq1GQ.jpg", "order": 6}, {"name": "Lynn Collins", "character": "Mona", "id": 21044, "credit_id": "52fe432fc3a36847f8040df9", "cast_id": 21, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 7}], "directors": [{"name": "Alejandro Agresti", "department": "Directing", "job": "Director", "credit_id": "52fe432fc3a36847f8040d91", "profile_path": null, "id": 21031}], "vote_average": 6.1, "runtime": 99}, "34813": {"poster_path": "/e67D7pMpWoo1ckY2QQaKYxhvVuy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23580000, "overview": "A tale of double cross and revenge, centered upon the members of an elite U.S. Special Forces unit sent into the Bolivian jungle on a search and destroy mission. The team-Clay, Jensen, Roque, Pooch and Cougar -find themselves the target of a lethal betrayal instigated from inside by a powerful enemy known only as Max. Presumed dead, the group makes plans to even the score when they're joined by the mysterious Aisha, a beautiful operative with her own agenda. Working together, they must remain deep undercover while tracking the heavily-guarded Max, a ruthless man bent on embroiling the world in a new high-tech global war.", "video": false, "id": 34813, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Losers", "tagline": "Anyone Else Would Be Dead By Now.", "vote_count": 151, "homepage": "http://www.the-losers.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480255", "adult": false, "backdrop_path": "/ukXHOtgta5Dt9eWSmNLHpB1wKi6.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2010-04-23", "popularity": 0.58025250880875, "original_title": "The Losers", "budget": 25000000, "cast": [{"name": "Zoe Saldana", "character": "Aisha", "id": 8691, "credit_id": "52fe457e9251416c910345d7", "cast_id": 1, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 0}, {"name": "Jason Patric", "character": "Max", "id": 12261, "credit_id": "52fe457e9251416c910345db", "cast_id": 2, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 1}, {"name": "Jeffrey Dean Morgan", "character": "Clay", "id": 47296, "credit_id": "52fe457e9251416c910345df", "cast_id": 3, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 2}, {"name": "Chris Evans", "character": "Jensen", "id": 16828, "credit_id": "52fe457e9251416c910345e3", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 3}, {"name": "Idris Elba", "character": "Roque", "id": 17605, "credit_id": "52fe457e9251416c910345e7", "cast_id": 5, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 4}, {"name": "Columbus Short", "character": "Pooch", "id": 31132, "credit_id": "52fe457e9251416c910345eb", "cast_id": 6, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 5}, {"name": "Holt McCallany", "character": "Wade", "id": 7497, "credit_id": "52fe457e9251416c910345ef", "cast_id": 7, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 6}, {"name": "\u00d3scar Jaenada", "character": "Cougar", "id": 59129, "credit_id": "52fe457e9251416c910345f3", "cast_id": 8, "profile_path": "/naQmysDM8jhmwhVIrdjdVUTGHLQ.jpg", "order": 7}, {"name": "Peter Macdissi", "character": "Vikram", "id": 64147, "credit_id": "52fe457e9251416c910345f7", "cast_id": 9, "profile_path": "/3Em1IEoO2gUQEAhjjuNEHIqvEp0.jpg", "order": 8}, {"name": "Peter Francis James", "character": "Fadhil", "id": 113230, "credit_id": "52fe457e9251416c910345fb", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Gunner Wright", "character": "Jet Pilot", "id": 113231, "credit_id": "52fe457e9251416c910345ff", "cast_id": 11, "profile_path": "/4GoIrUIbioXEgoDuctyzyzxmReP.jpg", "order": 10}], "directors": [{"name": "Sylvain White", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c91034605", "profile_path": "/gsXBBFhnaBKDgCdky7qTrn7Dx0M.jpg", "id": 31119}], "vote_average": 6.3, "runtime": 97}, "2048": {"poster_path": "/2mkFzf168xJrV6Leqq0bjqOlJCK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347234916, "overview": "In the year 2035, where robots are common and abide by the three laws of robotics, a techno-phobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.", "video": false, "id": 2048, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "I, Robot", "tagline": "Laws are made to be broken.", "vote_count": 1194, "homepage": "http://foxfilm.terra.com.br/filme.php?id_filme=485", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0343818", "adult": false, "backdrop_path": "/iNeKWgcTqUJhBToaosUXgca2nSY.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Mediastream Vierte Film GmbH & Co. Vermarktungs KG", "id": 19354}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Laurence Mark Productions", "id": 415}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "Canlaws Productions", "id": 19355}], "release_date": "2004-07-15", "popularity": 1.27522330826326, "original_title": "I, Robot", "budget": 120000000, "cast": [{"name": "Will Smith", "character": "Del Spooner", "id": 2888, "credit_id": "52fe4330c3a36847f8041063", "cast_id": 20, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Bridget Moynahan", "character": "Susan Calvin", "id": 18354, "credit_id": "52fe4330c3a36847f8041067", "cast_id": 21, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 1}, {"name": "Alan Tudyk", "character": "Sonny", "id": 21088, "credit_id": "52fe4330c3a36847f804104d", "cast_id": 10, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 2}, {"name": "James Cromwell", "character": "Dr. Alfred Lanning", "id": 2505, "credit_id": "52fe4330c3a36847f8041051", "cast_id": 11, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Bruce Greenwood", "character": "Lawrence Robertson", "id": 21089, "credit_id": "52fe4330c3a36847f8041055", "cast_id": 12, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 4}, {"name": "Shia LaBeouf", "character": "Farber", "id": 10959, "credit_id": "52fe4330c3a36847f804105f", "cast_id": 18, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 5}, {"name": "Chi McBride", "character": "Lt. John Bergin", "id": 8687, "credit_id": "52fe4330c3a36847f804106b", "cast_id": 22, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 6}, {"name": "Jerry Wasserman", "character": "Baldez", "id": 21091, "credit_id": "52fe4330c3a36847f804106f", "cast_id": 23, "profile_path": "/wNIZZXmI0LMnf2231auSExQz7FT.jpg", "order": 7}, {"name": "Peter Shinkoda", "character": "Chin", "id": 172994, "credit_id": "52fe4330c3a36847f8041073", "cast_id": 24, "profile_path": "/4Puo4QPIgclnNW9y8gBmr174g9E.jpg", "order": 8}, {"name": "Terry Chen", "character": "Chin", "id": 11677, "credit_id": "52fe4330c3a36847f8041077", "cast_id": 25, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 9}, {"name": "David Haysom", "character": "NS4 Robot and NS5 Robot", "id": 189001, "credit_id": "52fe4330c3a36847f804107b", "cast_id": 26, "profile_path": "/rcynXqV77Tt5DTc9dwFT0sxDYEn.jpg", "order": 10}, {"name": "Scott Heindl", "character": "NS4 Robot and NS5 Robot", "id": 10869, "credit_id": "52fe4330c3a36847f804107f", "cast_id": 27, "profile_path": "/bgYaBE4RcHM8IjW07djz2EhjrdF.jpg", "order": 11}, {"name": "Adrian Ricard", "character": "Granny", "id": 21090, "credit_id": "52fe4330c3a36847f8041083", "cast_id": 28, "profile_path": "/wmVCNkaNLHMqCYXHoWvf2i6R65i.jpg", "order": 12}, {"name": "Fiona Hogan", "character": "V.I.K.I.", "id": 21092, "credit_id": "52fe4330c3a36847f8041087", "cast_id": 29, "profile_path": "/7dte7kV2rzDAdTmV2MIm5mYH6DI.jpg", "order": 13}, {"name": "Sharon Wilkins", "character": "Asthmatic Woman", "id": 176695, "credit_id": "52fe4330c3a36847f804108b", "cast_id": 30, "profile_path": "/sDuWTO0LZpvfPagJPshQWqOmeOE.jpg", "order": 14}, {"name": "Craig March", "character": "Detective", "id": 61164, "credit_id": "52fe4330c3a36847f804108f", "cast_id": 31, "profile_path": "/w1C567OoZDQZltGTRmEYeqCgxoF.jpg", "order": 15}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe4330c3a36847f8041025", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 6.5, "runtime": 115}, "75780": {"poster_path": "/38bmEXmuJuInLs9dwfgOGCHmZ7l.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 218340595, "overview": "In an innocent heartland city, five are shot dead by an expert sniper. The police quickly identify and arrest the culprit, and build a slam-dunk case. But the accused man claims he's innocent and says \"Get Jack Reacher.\" Reacher himself sees the news report and turns up in the city. The defense is immensely relieved, but Reacher has come to bury the guy. Shocked at the accused's request, Reacher sets out to confirm for himself the absolute certainty of the man's guilt, but comes up with more than he bargained for.", "video": false, "id": 75780, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Jack Reacher", "tagline": "The Law Has Limits. He Does Not.", "vote_count": 1548, "homepage": "http://www.jackreachermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790724", "adult": false, "backdrop_path": "/ezXodpP429qK0Av89pVNlaXWJkQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "Skydance Productions", "id": 6277}, {"name": "TC Productions", "id": 21777}], "release_date": "2012-12-21", "popularity": 1.3868788963671, "original_title": "Jack Reacher", "budget": 60000000, "cast": [{"name": "Tom Cruise", "character": "Reacher", "id": 500, "credit_id": "52fe4912c3a368484e11918f", "cast_id": 1001, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Helen", "id": 10882, "credit_id": "52fe4912c3a368484e119193", "cast_id": 1002, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Richard Jenkins", "character": "Rodin", "id": 28633, "credit_id": "52fe4912c3a368484e1191cf", "cast_id": 1014, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 2}, {"name": "David Oyelowo", "character": "Emerson", "id": 35013, "credit_id": "52fe4912c3a368484e1191d3", "cast_id": 1015, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 3}, {"name": "Werner Herzog", "character": "The Zec", "id": 6818, "credit_id": "52fe4912c3a368484e1191cb", "cast_id": 1013, "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "order": 4}, {"name": "Jai Courtney", "character": "Charlie", "id": 224181, "credit_id": "52fe4912c3a368484e1191d7", "cast_id": 1016, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 5}, {"name": "Vladimir Sizov", "character": "Vlad", "id": 1132335, "credit_id": "52fe4913c3a368484e119247", "cast_id": 1044, "profile_path": "/ubFKPZLkKmked0IYxITaQAeEA7c.jpg", "order": 6}, {"name": "Joseph Sikora", "character": "Barr", "id": 82631, "credit_id": "52fe4913c3a368484e1191e3", "cast_id": 1019, "profile_path": "/rNGXbssgOE9clqMyqGSdeiKvBJD.jpg", "order": 7}, {"name": "Michael Raymond-James", "character": "Linsky", "id": 53259, "credit_id": "52fe4912c3a368484e1191db", "cast_id": 1017, "profile_path": "/35kiFPR1MhaoNbBJYg8wWi187TW.jpg", "order": 8}, {"name": "Alexia Fast", "character": "Sandy", "id": 203630, "credit_id": "52fe4913c3a368484e1191e7", "cast_id": 1021, "profile_path": "/rjCu0ywbStoEAhyKAcGHPSVZmX6.jpg", "order": 9}, {"name": "Josh Helman", "character": "Jeb", "id": 1056053, "credit_id": "52fe4913c3a368484e1191df", "cast_id": 1018, "profile_path": "/rmj2HHc1uNESTlHk50qnCHK11jD.jpg", "order": 10}, {"name": "Robert Duvall", "character": "Cash", "id": 3087, "credit_id": "52fe4912c3a368484e1191c7", "cast_id": 1012, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 11}, {"name": "James Martin Kelly", "character": "Rob Farrior", "id": 162849, "credit_id": "52fe4913c3a368484e119207", "cast_id": 1028, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 12}, {"name": "Dylan Kussman", "character": "Gary", "id": 2695, "credit_id": "52fe4913c3a368484e1191eb", "cast_id": 1022, "profile_path": "/1qxGjFfkYGiEpM6QriVo4gjTTWz.jpg", "order": 13}, {"name": "Denver Milord", "character": "Punk", "id": 1286869, "credit_id": "52fe4913c3a368484e11924b", "cast_id": 1045, "profile_path": "/4L9FQZZfSoV78UZEiVjn3pxzRL7.jpg", "order": 14}, {"name": "Susan Angelo", "character": "Oline Archer", "id": 157081, "credit_id": "52fe4913c3a368484e11924f", "cast_id": 1046, "profile_path": "/dkeJAzIJXTl2OxTRMnVTOLX0p7.jpg", "order": 15}, {"name": "Julia Yorks", "character": "Chrissie Farrior", "id": 155042, "credit_id": "52fe4913c3a368484e11920b", "cast_id": 1029, "profile_path": "/ixsRMf6pLIHSXNzKIbekBaicrfL.jpg", "order": 16}, {"name": "Nicole Forester", "character": "Nancy Holt", "id": 165293, "credit_id": "52fe4913c3a368484e11920f", "cast_id": 1030, "profile_path": "/xmzdRiCNXDFdBSkQesmyzYYFSBX.jpg", "order": 17}, {"name": "Delilah Picart", "character": "Rita Coronado", "id": 1286870, "credit_id": "52fe4913c3a368484e119253", "cast_id": 1047, "profile_path": "/upip3EQHl3Q3UjMxbipTehayNGG.jpg", "order": 18}, {"name": "Joe Coyle", "character": "Darren Sawyer", "id": 219679, "credit_id": "52fe4913c3a368484e119213", "cast_id": 1032, "profile_path": "/sMeAwArD9LMP1bsX6iNYybup5oE.jpg", "order": 19}, {"name": "Alicia Murton", "character": "Mrs. Sawyer", "id": 1272959, "credit_id": "52fe4913c3a368484e119217", "cast_id": 1033, "profile_path": "/jt6d9bAKkeAUog08eNmqBeJSP40.jpg", "order": 20}, {"name": "Peter Gannon", "character": "Mr. Archer", "id": 208762, "credit_id": "52fe4913c3a368484e11921b", "cast_id": 1034, "profile_path": "/1s22NSYqwuvKeCAnW30ZqZvI1u9.jpg", "order": 21}, {"name": "David Whalen", "character": "Mr. Holt", "id": 1124950, "credit_id": "52fe4913c3a368484e11921f", "cast_id": 1035, "profile_path": "/gtJNHMohbiHEYNIdVNd4I3aoUCx.jpg", "order": 22}, {"name": "Tristan Elma", "character": "Marcos Coronado", "id": 1272960, "credit_id": "52fe4913c3a368484e119223", "cast_id": 1036, "profile_path": null, "order": 23}, {"name": "Sophie Guest", "character": "Little Girl", "id": 1272961, "credit_id": "52fe4913c3a368484e119227", "cast_id": 1037, "profile_path": "/ovdkfCOO56ZC71WNSFrV9wcvbfj.jpg", "order": 24}, {"name": "Michael Minor", "character": "Eyewitness", "id": 1799, "credit_id": "52fe4913c3a368484e11922b", "cast_id": 1038, "profile_path": "/purZkN1I9xvNsrXXiFc4WywYpld.jpg", "order": 25}, {"name": "Scott A. Martin", "character": "Wesley", "id": 1055739, "credit_id": "52fe4913c3a368484e11922f", "cast_id": 1039, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 26}, {"name": "CJ Ramirez", "character": "Secretary", "id": 1272962, "credit_id": "52fe4913c3a368484e119233", "cast_id": 1040, "profile_path": "/1MhNzkmmGgCSkQVMw5Vl2Jb4zZ7.jpg", "order": 27}, {"name": "Teri Clark", "character": "Night Manager (as Teri Clark Linden)", "id": 928356, "credit_id": "52fe4913c3a368484e119237", "cast_id": 1041, "profile_path": "/18q4sinIObKCcDH0y7hqGJ0qfFT.jpg", "order": 28}, {"name": "Jarid Faubel", "character": "Man on Bus", "id": 1286871, "credit_id": "52fe4913c3a368484e119257", "cast_id": 1048, "profile_path": "/uW5LZapfDrKbfgA0RwWhmeMCgyv.jpg", "order": 29}, {"name": "Sara Lindsey", "character": "Woman on Bus", "id": 1098033, "credit_id": "52fe4913c3a368484e11925b", "cast_id": 1049, "profile_path": "/jdsEJyq9JbvSq6gerWcei4q7fIE.jpg", "order": 30}, {"name": "Jace Jeanes", "character": "Zec's Thug", "id": 131422, "credit_id": "52fe4913c3a368484e11925f", "cast_id": 1050, "profile_path": "/zTVsCVZiutde01QcuMa3ZlspIRZ.jpg", "order": 31}, {"name": "Andrei Runtso", "character": "Zec's Thug", "id": 1286873, "credit_id": "52fe4913c3a368484e119263", "cast_id": 1051, "profile_path": "/1Nn1YxLrSp5wxoNM370bZi12FXY.jpg", "order": 32}, {"name": "Efka Kvaraciejus", "character": "Zec's Thug", "id": 1272901, "credit_id": "52fe4913c3a368484e119267", "cast_id": 1052, "profile_path": "/oC1hEoxr0Rv8wAY7hlypCEN2YtW.jpg", "order": 33}, {"name": "Lee Child", "character": "Desk Sergeant", "id": 1056052, "credit_id": "52fe4913c3a368484e11926b", "cast_id": 1053, "profile_path": "/n4KwUgMkM7R92PoKBdt8VFqk42t.jpg", "order": 34}, {"name": "Tommy Lafitte", "character": "Man with Ballcap", "id": 1219514, "credit_id": "52fe4913c3a368484e11926f", "cast_id": 1054, "profile_path": "/6aMEXcJtuHoAkPy8Oub1xVYjo6V.jpg", "order": 35}, {"name": "Kristen Dalton", "character": "Mindy", "id": 18475, "credit_id": "52fe4913c3a368484e119273", "cast_id": 1055, "profile_path": "/hJE14DbGUWXVQHUxdIClpEcUfFo.jpg", "order": 36}, {"name": "Jordan Trovillion", "character": "Goodwill Cashier", "id": 558923, "credit_id": "52fe4913c3a368484e119277", "cast_id": 1056, "profile_path": "/qjmARKyWhlx0tPFH0ZTqC2agxtW.jpg", "order": 37}, {"name": "Annie Kitral", "character": "Pawn Shop Cashier", "id": 167110, "credit_id": "52fe4913c3a368484e11927b", "cast_id": 1057, "profile_path": "/esdBJamGHBan37Jh3eRETYNk9ay.jpg", "order": 38}, {"name": "Lissy Gulick", "character": "Diner Waitress", "id": 1286875, "credit_id": "52fe4913c3a368484e11927f", "cast_id": 1058, "profile_path": "/qTptwEDQ3kkDGVByYPcL6brI82b.jpg", "order": 39}, {"name": "Catherine Albers", "character": "Jeb's Mom", "id": 1286876, "credit_id": "52fe4913c3a368484e119283", "cast_id": 1059, "profile_path": "/ajyxszuKHFytJTQpGZNzGY6chDP.jpg", "order": 40}, {"name": "Larissa Emanuele", "character": "Sportsbar Waitress", "id": 1286877, "credit_id": "52fe4913c3a368484e119287", "cast_id": 1060, "profile_path": "/yKZChg2wsONJvpR7PCWV2V08vbo.jpg", "order": 41}, {"name": "Jason McCune", "character": "Construction Foreman", "id": 1023800, "credit_id": "52fe4913c3a368484e11928b", "cast_id": 1061, "profile_path": "/8E2y9FyL6FxghtzPRHE0qW9EJFM.jpg", "order": 42}, {"name": "Shane Callahan", "character": "SWAT Guy", "id": 27687, "credit_id": "52fe4913c3a368484e11928f", "cast_id": 1062, "profile_path": "/rYUkFvz1ZkR1xqWpAbIc7JTiUbw.jpg", "order": 43}, {"name": "Joshua Elijah Reese", "character": "SWAT Guy", "id": 1286878, "credit_id": "52fe4913c3a368484e119293", "cast_id": 1063, "profile_path": "/iJj4z2Z8ifqwyL2OHhyBebifwOR.jpg", "order": 44}, {"name": "Nathan Hollabaugh", "character": "Cop", "id": 1286879, "credit_id": "52fe4913c3a368484e119297", "cast_id": 1064, "profile_path": "/i9YztZeucG8ZvYa43YqbmzGq2XY.jpg", "order": 45}, {"name": "Christopher Stadulis", "character": "Cop", "id": 211964, "credit_id": "52fe4913c3a368484e11929b", "cast_id": 1065, "profile_path": "/wz6OJK4dAoEJcx1L9kMp3Py9bNV.jpg", "order": 46}], "directors": [{"name": "Christopher McQuarrie", "department": "Directing", "job": "Director", "credit_id": "52fe4913c3a368484e1191fd", "profile_path": "/8R89a58B7B3jmU3v4clIheaxD4k.jpg", "id": 9033}], "vote_average": 6.1, "runtime": 130}, "149509": {"poster_path": "/632JG1wY6pGVxZxF5NaO5piNeFe.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the aftermath of his girlfriend's mysterious death, a young man awakens to strange horns sprouting from his temples.", "video": false, "id": 149509, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Horns", "tagline": "He Will Bring Out The Devil In You", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1528071", "adult": false, "backdrop_path": "/kHG4oDfKXvGrpIgysDGqEKL6XfC.jpg", "production_companies": [{"name": "Mandalay Pictures", "id": 551}, {"name": "Red Granite Pictures", "id": 19177}], "release_date": "2013-09-06", "popularity": 1.56975995056737, "original_title": "Horns", "budget": 0, "cast": [{"name": "Daniel Radcliffe", "character": "Ig Perrish", "id": 10980, "credit_id": "52fe4bea9251416c75111e17", "cast_id": 1, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Juno Temple", "character": "Merrin Williams", "id": 36594, "credit_id": "52fe4bea9251416c75111e25", "cast_id": 4, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 1}, {"name": "Kelli Garner", "character": "Glenna", "id": 17442, "credit_id": "52fe4bea9251416c75111e29", "cast_id": 5, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 2}, {"name": "James Remar", "character": "Derrick Perrish", "id": 1736, "credit_id": "52fe4bea9251416c75111e2d", "cast_id": 6, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 3}, {"name": "Max Minghella", "character": "Lee Tourneau", "id": 2978, "credit_id": "52fe4bea9251416c75111e31", "cast_id": 7, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 4}, {"name": "Joe Anderson", "character": "Terry Parrish", "id": 29234, "credit_id": "52fe4bea9251416c75111e3d", "cast_id": 10, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 5}, {"name": "Sabrina Carpenter", "character": "Young Merrin", "id": 1152083, "credit_id": "52fe4bea9251416c75111e21", "cast_id": 3, "profile_path": "/nH7wrgsa0B2rG0omwrjCF3Av0Om.jpg", "order": 6}, {"name": "Laine MacNeil", "character": "Young Glenna", "id": 84468, "credit_id": "52fe4bea9251416c75111e35", "cast_id": 8, "profile_path": "/1CX7wfCXTttRUVwMnfWmHtl9kz1.jpg", "order": 7}, {"name": "Dylan Schmid", "character": "Lee at 13", "id": 973518, "credit_id": "52fe4bea9251416c75111e39", "cast_id": 9, "profile_path": "/qrO6kzqpAXCV8t2UI2V5N6701II.jpg", "order": 8}, {"name": "Kendra Anderson", "character": "Nurse Delilah", "id": 1175501, "credit_id": "54aab89e9251414d67006d5e", "cast_id": 13, "profile_path": "/l4PXRPVSZNqN0A1THJyNayBpyct.jpg", "order": 9}, {"name": "Kathleen Quinlan", "character": "Lydia Perrish", "id": 8183, "credit_id": "54ef06ef925141796e005cec", "cast_id": 14, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 10}, {"name": "Heather Graham", "character": "Veronica", "id": 69122, "credit_id": "54ef07619251417974005e79", "cast_id": 15, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 11}, {"name": "David Morse", "character": "Dale Williams", "id": 52, "credit_id": "54ef07d7c3a3686d58005b39", "cast_id": 16, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 12}, {"name": "Michael Adamthwaite", "character": "Eric Hannity", "id": 63566, "credit_id": "54ef0847c3a36869e50036a1", "cast_id": 17, "profile_path": "/cLHvXOFJgGPEN4ym0a2Ys4s3p85.jpg", "order": 13}, {"name": "Nels Lennarson", "character": "Wallace Sturtz", "id": 63564, "credit_id": "54ef098a9251413ae800323b", "cast_id": 18, "profile_path": "/fA6Qt7EdoVO4kLWyg4KneFSIPwl.jpg", "order": 14}, {"name": "Don Thompson", "character": "Al O'Hara", "id": 56749, "credit_id": "54ef1b6ec3a3686d58005cda", "cast_id": 19, "profile_path": "/gw4gG6uN4IItV0OeAWYFftmxvRn.jpg", "order": 15}, {"name": "Jay Brazeau", "character": "Father Mould", "id": 63791, "credit_id": "54ef1be99251413ae80033a9", "cast_id": 20, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 16}, {"name": "Alex Zahara", "character": "Dr. Renald", "id": 62919, "credit_id": "54ef22d0c3a3684aff001622", "cast_id": 21, "profile_path": "/7nL163KHo0LpGlzndjNfKVrwpkZ.jpg", "order": 17}, {"name": "Christine Willes", "character": "Receptionist", "id": 189719, "credit_id": "54f41ff1c3a3681de0001940", "cast_id": 53, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 18}, {"name": "Meredith McGeachie", "character": "Mary, young mother", "id": 196694, "credit_id": "54ef27539251417961005f5c", "cast_id": 23, "profile_path": "/qJPOZaDzRL6D4nIWoV1YmPgjDn1.jpg", "order": 19}, {"name": "Sarah Boey", "character": "Little Girl", "id": 1432087, "credit_id": "54ef28049251417965006118", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Panou", "character": "Golf Pro", "id": 1219446, "credit_id": "54ef292ac3a368402d0033a7", "cast_id": 25, "profile_path": "/2ZlQp0ZenSK9vNscU0Ye4hbi1U4.jpg", "order": 21}, {"name": "Reese Alexander", "character": "TV Reporter", "id": 141774, "credit_id": "54ef2a49c3a3686b9a003a83", "cast_id": 26, "profile_path": "/eFv7F7LDzkw2mQUfRh9C0FBGvph.jpg", "order": 22}, {"name": "Desiree Zurowski", "character": "Radio Reporter", "id": 59242, "credit_id": "54ef2c0cc3a368402d0033d1", "cast_id": 27, "profile_path": "/9UGai7oXtZQZdEjQpoCRlfmzjgz.jpg", "order": 23}, {"name": "Marilyn Norry", "character": "Protester", "id": 143307, "credit_id": "54ef2cfdc3a3686b9a003ac8", "cast_id": 28, "profile_path": "/hPOdJREJdMgDpCmO0r4vWN2kobs.jpg", "order": 24}, {"name": "Nancy Sivak", "character": "Mrs. Tourneau", "id": 1224877, "credit_id": "54ef2f6cc3a3684aff001762", "cast_id": 29, "profile_path": "/o48b3gOVQSMthmRMJksxuHAd93m.jpg", "order": 25}, {"name": "Cameron McDonald", "character": "E.R. Doctor", "id": 1432096, "credit_id": "54ef2fb5925141795f006340", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "John Stewart", "character": "Diner Manager", "id": 1432102, "credit_id": "54ef33acc3a368402d003479", "cast_id": 31, "profile_path": "/avL5BANvV3V98Vxi78qRbU5koD4.jpg", "order": 27}, {"name": "Dean Wray", "character": "Stan, the Barfly", "id": 117997, "credit_id": "54efcd0b9251410ebe000319", "cast_id": 32, "profile_path": "/1Bk0OKpzgvKlHsbrGnLaVybltiY.jpg", "order": 28}, {"name": "Graem Beddoes", "character": "Unemployed Barfly", "id": 1432440, "credit_id": "54efce42c3a36869e5004877", "cast_id": 33, "profile_path": "/pj827X3BG9LaArkIRCGMK68sl4a.jpg", "order": 29}, {"name": "Eric Pollins", "character": "Exhibitionist Barfly", "id": 1265674, "credit_id": "54f073049251417961008af8", "cast_id": 34, "profile_path": "/vpAxNdbHHCRw8DPqTohdkm3823.jpg", "order": 30}, {"name": "Pesi Daruwalla", "character": "Antique Store Owner", "id": 1432725, "credit_id": "54f09452c3a3686b9a006097", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Ryan Clare", "character": "Terry's Bass Player", "id": 1432726, "credit_id": "54f094d0c3a3686d58007fef", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Richard Mitchell", "character": "Terry's Jazz Quintet", "id": 1432727, "credit_id": "54f0950b9251417961008d90", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Kieron Rhys Lillo", "character": "Terry's Jazz Quintet", "id": 1432729, "credit_id": "54f095c0c3a3687be20019f4", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Tyson Sully", "character": "Terry's Jazz Quintet", "id": 1432730, "credit_id": "54f09635925141795f008782", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Mark Muskiw", "character": "Terry's Jazz Quintet", "id": 1432731, "credit_id": "54f09666c3a3686b9a0060c4", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Mitchell Kummen", "character": "Ig Perrish at 13", "id": 1432732, "credit_id": "54f096a6c3a3687be2001a07", "cast_id": 41, "profile_path": "/73KpS85Tojg4zRlKRFHZMJM4jU5.jpg", "order": 37}, {"name": "Jared Ager-Foster", "character": "Terry Perrish at 15", "id": 1432758, "credit_id": "54f09e58c3a3682e71001cef", "cast_id": 42, "profile_path": "/1PnhoeRn39Ju1i7r4l1CZudQx44.jpg", "order": 38}, {"name": "Erik McNamee", "character": "Eric Hannity at 15", "id": 1255070, "credit_id": "54f09fc0925141795f00889a", "cast_id": 43, "profile_path": "/5goGMSw2hytVBSggWY7DPhpA4mK.jpg", "order": 39}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe4bea9251416c75111e1d", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 6.4, "runtime": 120}, "198663": {"poster_path": "/coss7RgL0NH6g4fC2s5atvf3dFO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 166914185, "overview": "Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow \"runners\" for a shot at escape.", "video": false, "id": 198663, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Maze Runner", "tagline": "Run - Remember - Survive", "vote_count": 1217, "homepage": "http://themazerunnermovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/rvz3oQj4uz30wcdI1tvAD7dlq0X.jpg", "id": 295130, "name": "The Maze Runner Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1790864", "adult": false, "backdrop_path": "/yTbPPmLAn7DiiM0sPYfZduoAjB.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "20th Century Fox", "id": 25}, {"name": "Gotham Group", "id": 3672}, {"name": "Temple Hill Entertainment", "id": 12292}, {"name": "Dayday Films", "id": 8569}, {"name": "Ingenious Media", "id": 290}], "release_date": "2014-09-19", "popularity": 7.39835036100066, "original_title": "The Maze Runner", "budget": 34000000, "cast": [{"name": "Dylan O'Brien", "character": "Thomas", "id": 527393, "credit_id": "52fe4d859251416c9111909d", "cast_id": 3, "profile_path": "/6u7aDtMnAGaRjOGWgjMIrNNr0rp.jpg", "order": 0}, {"name": "Aml Ameen", "character": "Alby", "id": 78062, "credit_id": "5350129cc3a3681cbc00131a", "cast_id": 14, "profile_path": "/hEzY6Uk9bMhs9pV6Kp64gcBMUIE.jpg", "order": 1}, {"name": "Ki Hong Lee", "character": "Minho", "id": 1310760, "credit_id": "53501286c3a3681cc30012a9", "cast_id": 12, "profile_path": "/8QodPxf0yrBUzG0ZIVIPXJ4MgdA.jpg", "order": 2}, {"name": "Blake Cooper", "character": "Chuck", "id": 1389339, "credit_id": "5474ea4ac3a3686bf3000e60", "cast_id": 63, "profile_path": "/dPy339yRfqvhzi6k9RFxLW94YlB.jpg", "order": 3}, {"name": "Thomas Sangster", "character": "Newt", "id": 25663, "credit_id": "52fe4d859251416c911190a1", "cast_id": 4, "profile_path": "/x8floQ1YshVhPdwdTQDz9aJjuXE.jpg", "order": 4}, {"name": "Will Poulter", "character": "Gally", "id": 93491, "credit_id": "52fe4d859251416c91119099", "cast_id": 2, "profile_path": "/d3wR8o9y9jmTha426ms1m70h0HC.jpg", "order": 5}, {"name": "Dexter Darden", "character": "Fry Pan", "id": 1036196, "credit_id": "535012c7c3a3681cd40012d7", "cast_id": 18, "profile_path": "/m73vzIpVN3LJAzeANE1eJczqyda.jpg", "order": 6}, {"name": "Kaya Scodelario", "character": "Teresa", "id": 115150, "credit_id": "52fe4d859251416c911190a5", "cast_id": 5, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 7}, {"name": "Chris Sheffield", "character": "Ben", "id": 969045, "credit_id": "535012a4c3a3681ccc00138b", "cast_id": 15, "profile_path": "/nt9NuusCxlfNRaW37kolvWc5rU9.jpg", "order": 8}, {"name": "Joe Adler", "character": "Zart", "id": 970561, "credit_id": "535012afc3a3681ce50011ab", "cast_id": 16, "profile_path": "/pxtG8pdhLOrtEJwW9Teh5BYgohm.jpg", "order": 9}, {"name": "Alexander Flores", "character": "Winston", "id": 1340889, "credit_id": "548348a99251416e81008b6e", "cast_id": 69, "profile_path": "/h7xByuXKW2N9L72CuPj0hRc84UK.jpg", "order": 10}, {"name": "Jacob Latimore", "character": "Jeff", "id": 512316, "credit_id": "53501295c3a3681cae001253", "cast_id": 13, "profile_path": "/2v3nhyEuay3zIbDL5fc04ZdXjCm.jpg", "order": 11}, {"name": "Randall D. Cunningham", "character": "Clint", "id": 1395491, "credit_id": "548348f7c3a36817a50091cc", "cast_id": 70, "profile_path": "/gozEP0R51DyGYGINUUvyvGz96jd.jpg", "order": 12}, {"name": "Patricia Clarkson", "character": "Ava Paige", "id": 1276, "credit_id": "5350127ac3a3681cd40012bc", "cast_id": 11, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 13}, {"name": "Don McManus", "character": "Masked Man", "id": 79025, "credit_id": "535012bec3a3681cc30012b9", "cast_id": 17, "profile_path": "/8JOjJkZBQmhVb6n8yHw70LIgC7i.jpg", "order": 14}, {"name": "Michael Bow", "character": "Glader", "id": 1415403, "credit_id": "54bcc846c3a36840460054f8", "cast_id": 72, "profile_path": "/vpLSimr7UF4IRKDaqhUguUIVeKq.jpg", "order": 15}, {"name": "Jerry Clark", "character": "Glader", "id": 1415405, "credit_id": "54bccab29251416e9b0039d6", "cast_id": 73, "profile_path": "/kXI1d9UfK4dwhqCdu7ZpBBb5PaQ.jpg", "order": 16}, {"name": "Michael Deville", "character": "Glader", "id": 1415406, "credit_id": "54bccb229251411d7700a524", "cast_id": 74, "profile_path": null, "order": 17}, {"name": "Dylan Gaspard", "character": "Glader", "id": 1415408, "credit_id": "54bccb59c3a3684046005544", "cast_id": 75, "profile_path": null, "order": 18}, {"name": "Mark Gibson", "character": "Glader", "id": 1415410, "credit_id": "54bccbf0c3a3684046005564", "cast_id": 76, "profile_path": null, "order": 19}, {"name": "Cory Gooding", "character": "Glader", "id": 1415412, "credit_id": "54bccc3f9251413635004d30", "cast_id": 77, "profile_path": null, "order": 20}, {"name": "Cazi Greene", "character": "Glader", "id": 1415413, "credit_id": "54bccd2292514148b000778f", "cast_id": 78, "profile_path": "/jz7olKDnTdzPahtEKYPqY0S5Ah2.jpg", "order": 21}, {"name": "Dustin Guitreau", "character": "Glader", "id": 1415416, "credit_id": "54bccdf5c3a3686c6b00c278", "cast_id": 79, "profile_path": null, "order": 22}, {"name": "Tyler Harrison", "character": "Glader", "id": 1415417, "credit_id": "54bcce2a9251411d7700a59f", "cast_id": 80, "profile_path": null, "order": 23}, {"name": "Landon Hazel", "character": "Glader", "id": 1415418, "credit_id": "54bcce63c3a3686c6b00c291", "cast_id": 81, "profile_path": null, "order": 24}, {"name": "Gary Hood", "character": "Glader", "id": 1415421, "credit_id": "54bccf00c3a3681da00012eb", "cast_id": 82, "profile_path": "/rvtWgnU2r3LzCOiAOYDktbAk2j3.jpg", "order": 25}, {"name": "Nick Killebrew", "character": "Glader", "id": 1415423, "credit_id": "54bccf999251416e9b003a79", "cast_id": 83, "profile_path": "/wfd6LvpfNkBKNQPrCZaHd3Ikse7.jpg", "order": 26}, {"name": "John Langston", "character": "Glader", "id": 1415424, "credit_id": "54bcd054c3a368404600560b", "cast_id": 84, "profile_path": "/1h5fNG4qWNXjA74TDBY5D6RNiuh.jpg", "order": 27}, {"name": "Chad Martinez", "character": "Glader", "id": 1415426, "credit_id": "54bcd0e5c3a368389c003cb0", "cast_id": 85, "profile_path": null, "order": 28}, {"name": "Lester Millet", "character": "Glader", "id": 1415428, "credit_id": "54bcd1159251416e6000397e", "cast_id": 86, "profile_path": null, "order": 29}, {"name": "Sawyer Pierce", "character": "Glader", "id": 1415429, "credit_id": "54bcd15ec3a368389c003cc0", "cast_id": 87, "profile_path": null, "order": 30}, {"name": "Weston Rachal", "character": "Glader", "id": 1415431, "credit_id": "54bcd18e9251411d6a00ae1b", "cast_id": 88, "profile_path": null, "order": 31}, {"name": "Bryce Romero", "character": "Glader", "id": 1415436, "credit_id": "54bcd2009251416e6000399b", "cast_id": 89, "profile_path": "/leM5kfYAJ8hE7FG7KfyHbDXuwBt.jpg", "order": 32}, {"name": "Johnny Stockwell", "character": "Glader", "id": 1415437, "credit_id": "54bcd2419251416eae0036dd", "cast_id": 90, "profile_path": null, "order": 33}, {"name": "SanChavis Torns", "character": "Glader", "id": 1415442, "credit_id": "54bcd2849251416e9b003ae5", "cast_id": 91, "profile_path": null, "order": 34}, {"name": "Lane Westerhaus", "character": "Glader", "id": 1415443, "credit_id": "54bcd2ba9251416e600039d1", "cast_id": 92, "profile_path": null, "order": 35}, {"name": "Gentry Williams", "character": "Glader", "id": 1415446, "credit_id": "54bcd2e6c3a3686c61009f34", "cast_id": 93, "profile_path": null, "order": 36}], "directors": [{"name": "Wes Ball", "department": "Directing", "job": "Director", "credit_id": "52fe4d859251416c91119095", "profile_path": null, "id": 1179066}], "vote_average": 7.1, "runtime": 113}, "116745": {"poster_path": "/fthuzm8T4bowlPtP5M9cFOjv0Ld.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.", "video": false, "id": 116745, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Secret Life of Walter Mitty", "tagline": "Stop Dreaming, Start Living", "vote_count": 1013, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0359950", "adult": false, "backdrop_path": "/mrvlpJFAzKwZZkLm9VD7Rh2VECi.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "New Line Cinema", "id": 12}, {"name": "Samuel Goldwyn Films", "id": 9118}, {"name": "Red Hour Films", "id": 12178}, {"name": "TSG Entertainment", "id": 22213}], "release_date": "2013-12-25", "popularity": 1.98147056303458, "original_title": "The Secret Life of Walter Mitty", "budget": 90000000, "cast": [{"name": "Ben Stiller", "character": "Walter Mitty", "id": 7399, "credit_id": "52fe4b9dc3a36847f820c115", "cast_id": 11, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Kristen Wiig", "character": "Cheryl Melhoff", "id": 41091, "credit_id": "52fe4b9dc3a36847f820c119", "cast_id": 12, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 1}, {"name": "Patton Oswalt", "character": "Todd Maher", "id": 10872, "credit_id": "52fe4b9dc3a36847f820c11d", "cast_id": 13, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 2}, {"name": "Shirley MacLaine", "character": "Edna Mitty", "id": 4090, "credit_id": "52fe4b9dc3a36847f820c121", "cast_id": 14, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 3}, {"name": "Adam Scott", "character": "Ted Hendricks", "id": 36801, "credit_id": "52fe4b9dc3a36847f820c125", "cast_id": 15, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Odessa Mitty", "id": 17696, "credit_id": "52fe4b9dc3a36847f820c129", "cast_id": 16, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Sean Penn", "character": "Sean O'Connell", "id": 2228, "credit_id": "52fe4b9dc3a36847f820c12d", "cast_id": 17, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 6}, {"name": "Terence Bernie Hines", "character": "Gary Mannheim", "id": 28419, "credit_id": "52fe4b9dc3a36847f820c131", "cast_id": 18, "profile_path": "/uMC8ILPk0h2fN6ZM8N7kHq8Uxym.jpg", "order": 7}, {"name": "Gurdeep Singh", "character": "Cab Driver", "id": 185705, "credit_id": "52fe4b9dc3a36847f820c135", "cast_id": 19, "profile_path": "/dCrHZdnH1vxLuWdyatORaB9ggYc.jpg", "order": 8}, {"name": "Alex Anfanger", "character": "Ted's Toner Box Associate", "id": 961834, "credit_id": "52fe4b9dc3a36847f820c139", "cast_id": 20, "profile_path": "/fgYr1YJKpDBQBMESsdFDfrTC4xv.jpg", "order": 9}, {"name": "Gary Wilmes", "character": "Walter's Dad", "id": 78404, "credit_id": "52fe4b9dc3a36847f820c13d", "cast_id": 21, "profile_path": "/i4AGTHkO84bc0LCQA6EaN9FtIyj.jpg", "order": 10}, {"name": "Adrian Martinez", "character": "Hernando", "id": 94432, "credit_id": "53a48d76c3a3687a400000c4", "cast_id": 28, "profile_path": "/zDnnzak4BLb5dNc9taqLNprkRvw.jpg", "order": 11}, {"name": "Jon Daly", "character": "Tim Naughton", "id": 1406450, "credit_id": "54a2e309c3a36864280007d1", "cast_id": 29, "profile_path": "/prpAj1fEUXOF1ydKbuT0I4rzAxm.jpg", "order": 12}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe4b9dc3a36847f820c0e1", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 7.1, "runtime": 114}, "2059": {"poster_path": "/luMoc56LLMWUt60vUNNpwxrbTNt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347451894, "overview": "Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.", "video": false, "id": 2059, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "National Treasure", "tagline": "The greatest adventure history has ever revealed.", "vote_count": 638, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9QtM9ie1x8z0vl6IFFepmyoOLQN.jpg", "poster_path": "/z5EIRaI8XS0brelYwDFEVlxcpzM.jpg", "id": 52984, "name": "National Treasure Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0368891", "adult": false, "backdrop_path": "/a8MKD2z2UuptTaA26ueJVJk3GGb.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Junction Entertainment", "id": 19097}, {"name": "Saturn Films", "id": 831}, {"name": "Walt Disney", "id": 5888}], "release_date": "2004-11-08", "popularity": 1.53365134129941, "original_title": "National Treasure", "budget": 1000000, "cast": [{"name": "Nicolas Cage", "character": "Benjamin Franklin Gates", "id": 2963, "credit_id": "52fe4331c3a36847f804144b", "cast_id": 14, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Diane Kruger", "character": "Abigail Chase", "id": 9824, "credit_id": "52fe4331c3a36847f804144f", "cast_id": 15, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "Sean Bean", "character": "Ian Howe", "id": 48, "credit_id": "52fe4331c3a36847f8041453", "cast_id": 16, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 2}, {"name": "Jon Voight", "character": "Patrick Henry Gates", "id": 10127, "credit_id": "52fe4331c3a36847f8041467", "cast_id": 21, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 3}, {"name": "Harvey Keitel", "character": "Sadusky", "id": 1037, "credit_id": "52fe4331c3a36847f8041457", "cast_id": 17, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 4}, {"name": "Justin Bartha", "character": "Riley Poole", "id": 21180, "credit_id": "52fe4331c3a36847f8041463", "cast_id": 20, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 5}, {"name": "Christopher Plummer", "character": "John Adams Gates", "id": 290, "credit_id": "52fe4331c3a36847f804145b", "cast_id": 18, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 6}, {"name": "David Dayan Fisher", "character": "Shaw", "id": 21182, "credit_id": "52fe4331c3a36847f804145f", "cast_id": 19, "profile_path": "/micncVbNKBlyFFyRHG01azk6p6H.jpg", "order": 7}, {"name": "Jason Earles", "character": "Thomas Gates", "id": 54594, "credit_id": "52fe4331c3a36847f8041477", "cast_id": 24, "profile_path": "/lwHIA7z8LAyKx7B4eV9bWUBT7tk.jpg", "order": 8}, {"name": "Stewart Finlay-McLennan", "character": "Powell", "id": 60461, "credit_id": "52fe4331c3a36847f804147b", "cast_id": 25, "profile_path": "/8yHyhqFcS5cLzjLBX0QABdVhW0J.jpg", "order": 9}, {"name": "Oleg Taktarov", "character": "Shippen", "id": 77351, "credit_id": "52fe4331c3a36847f804147f", "cast_id": 26, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 10}, {"name": "Stephen A. Pope", "character": "Phil", "id": 176558, "credit_id": "52fe4331c3a36847f8041483", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Annie Parisse", "character": "Agent Dawes", "id": 24291, "credit_id": "52fe4331c3a36847f8041487", "cast_id": 28, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 12}, {"name": "Mark Pellegrino", "character": "Agent Johnson", "id": 1236, "credit_id": "52fe4331c3a36847f804148b", "cast_id": 29, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 13}, {"name": "Armando Riesco", "character": "Agent Hendricks", "id": 19497, "credit_id": "52fe4331c3a36847f804148f", "cast_id": 30, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 14}, {"name": "Erik King", "character": "Agent Colfax", "id": 154759, "credit_id": "52fe4331c3a36847f8041493", "cast_id": 31, "profile_path": "/svrv513FlrnRshuA5YSaCLIcix9.jpg", "order": 15}, {"name": "Sharon Wilkins", "character": "Butcher Lady", "id": 176695, "credit_id": "52fe4331c3a36847f8041497", "cast_id": 32, "profile_path": "/sDuWTO0LZpvfPagJPshQWqOmeOE.jpg", "order": 16}, {"name": "Alexandra Balahoutis", "character": "Clothing Store Clerk", "id": 948015, "credit_id": "52fe4331c3a36847f804149b", "cast_id": 33, "profile_path": "/lOWvqXdITKxdXBaCxMmona8xbwk.jpg", "order": 17}, {"name": "Dior Raye", "character": "Gift Store Clerk", "id": 989247, "credit_id": "52fe4331c3a36847f804149f", "cast_id": 34, "profile_path": "/5R3vW6OWzCm3Gu7hQDOd6YF16EH.jpg", "order": 18}, {"name": "Antony Alda", "character": "Guard Ferguson", "id": 159047, "credit_id": "52fe4331c3a36847f80414a3", "cast_id": 35, "profile_path": "/4uZQNXeuTPPoeBscPIUVhAc45gO.jpg", "order": 19}, {"name": "Terrence Currier", "character": "Charles Carroll", "id": 174241, "credit_id": "52fe4331c3a36847f80414ab", "cast_id": 37, "profile_path": "/e5IbBJ3I4BGFIiqG3MBADE8321n.jpg", "order": 20}, {"name": "John Travis (VII)", "character": "Guard Mike", "id": 581390, "credit_id": "52fe4331c3a36847f80414a7", "cast_id": 36, "profile_path": null, "order": 21}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4330c3a36847f804140b", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.3, "runtime": 131}, "2062": {"poster_path": "/wbG9OoWlkZ7QRyxfvpjdWUbfREX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 623722818, "overview": "In one of Paris' finest restaurants, Remy, a determined young rat, dreams of becoming a renowned French chef. Torn between his family's wishes and his true calling. Remy and his pal Linguini set in motion a hilarious chain of events that turns the City of Lights upside down.", "video": false, "id": 2062, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Ratatouille", "tagline": "He's dying to become a chef.", "vote_count": 1380, "homepage": "http://disney.go.com/disneypictures/ratatouille/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0382932", "adult": false, "backdrop_path": "/sFpGI08aeHIRKlLi9SxLyYrRyZ8.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Pixar Animation Studios", "id": 3}], "release_date": "2007-06-28", "popularity": 1.62463661182111, "original_title": "Ratatouille", "budget": 150000000, "cast": [{"name": "Patton Oswalt", "character": "Remy", "id": 10872, "credit_id": "52fe4331c3a36847f80415f5", "cast_id": 2, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 0}, {"name": "Lou Romano", "character": "Linguini", "id": 7962, "credit_id": "52fe4331c3a36847f80415f9", "cast_id": 3, "profile_path": "/q5BXFPkFZA7RJh9Oj15WRQawMfk.jpg", "order": 1}, {"name": "Janeane Garofalo", "character": "Colette", "id": 21197, "credit_id": "52fe4331c3a36847f80415fd", "cast_id": 4, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 2}, {"name": "Ian Holm", "character": "Skinner", "id": 65, "credit_id": "52fe4331c3a36847f8041601", "cast_id": 5, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 3}, {"name": "Peter Sohn", "character": "Emile", "id": 21198, "credit_id": "52fe4331c3a36847f8041605", "cast_id": 6, "profile_path": "/ouaPg2hdBBXfq8N7HPatvEq3P81.jpg", "order": 4}, {"name": "Brian Dennehy", "character": "Django", "id": 6197, "credit_id": "52fe4331c3a36847f8041609", "cast_id": 7, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 5}, {"name": "Brad Garrett", "character": "Auguste Gusteau", "id": 18, "credit_id": "52fe4331c3a36847f804160d", "cast_id": 8, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 6}, {"name": "Peter O'Toole", "character": "Anton Ego", "id": 11390, "credit_id": "52fe4331c3a36847f8041611", "cast_id": 9, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 7}, {"name": "John Ratzenberger", "character": "Mustafa", "id": 7907, "credit_id": "52fe4331c3a36847f8041615", "cast_id": 10, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 8}, {"name": "Jake Steinfeld", "character": "Git", "id": 21199, "credit_id": "52fe4331c3a36847f8041619", "cast_id": 11, "profile_path": "/oqxN4mZG7U2TFIAZMl3AWLY3rGb.jpg", "order": 9}, {"name": "Will Arnett", "character": "Horst", "id": 21200, "credit_id": "52fe4331c3a36847f804161d", "cast_id": 12, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 10}, {"name": "Julius Callahan", "character": "Lalo/Francois", "id": 32536, "credit_id": "52fe4331c3a36847f804165d", "cast_id": 23, "profile_path": "/kCbjdzPh9Fh6LCYFi1pSm2sXfYo.jpg", "order": 11}, {"name": "James Remar", "character": "Larousse", "id": 1736, "credit_id": "52fe4331c3a36847f8041661", "cast_id": 24, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 12}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f80415f1", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 7.0, "runtime": 111}, "2064": {"poster_path": "/9StV7DX4ZtRZGJs9VcVEPvxIKL6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 182057016, "overview": "A love story built on a misunderstanding. A transit worker pulls commuter Peter off the tracks after he's mugged. But while he's in a coma, his family mistakenly thinks she's Peter's fianc\u00e9e, and she doesn't correct them. Things get more complicated when she falls for his brother, who's not quite sure that she's who she claims to be.", "video": false, "id": 2064, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "While You Were Sleeping", "tagline": "A story about love at second sight.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114924", "adult": false, "backdrop_path": "/oVdrgR93wiZfc4wbOhFFIP9ev9y.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1995-04-21", "popularity": 0.736881651671693, "original_title": "While You Were Sleeping", "budget": 17000000, "cast": [{"name": "Sandra Bullock", "character": "Lucy Eleanor Moderatz", "id": 18277, "credit_id": "52fe4331c3a36847f80416b7", "cast_id": 9, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Bill Pullman", "character": "Jack Callaghan", "id": 8984, "credit_id": "52fe4331c3a36847f80416bb", "cast_id": 10, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Peter Gallagher", "character": "Peter Callaghan", "id": 8212, "credit_id": "52fe4331c3a36847f80416bf", "cast_id": 11, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 2}, {"name": "Peter Boyle", "character": "Ox Callaghan", "id": 1039, "credit_id": "52fe4331c3a36847f80416c3", "cast_id": 12, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 3}, {"name": "Jack Warden", "character": "Saul", "id": 5251, "credit_id": "52fe4331c3a36847f80416c7", "cast_id": 13, "profile_path": "/7Pfj27pVjkQIu5HS85MlGdsl7MQ.jpg", "order": 4}, {"name": "Glynis Johns", "character": "Elsie", "id": 5826, "credit_id": "52fe4331c3a36847f80416cb", "cast_id": 14, "profile_path": "/36ysTAkDW1234XmgWVPYB15XhIl.jpg", "order": 5}, {"name": "Micole Mercurio", "character": "Midge Callaghan", "id": 21202, "credit_id": "52fe4331c3a36847f80416cf", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Monica Keena", "character": "Mary Callaghan", "id": 18315, "credit_id": "52fe4331c3a36847f80416d3", "cast_id": 16, "profile_path": "/26ed24koWQ6cjJHCGIllR2CE8Rj.jpg", "order": 7}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f8041689", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.1, "runtime": 103}, "8688": {"poster_path": "/lCKdTf0Cy3R3kBuw2xmWmbxX6pZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103891409, "overview": "All bets are off when corrupt homicide cop Rick Santoro witnesses a murder during a boxing match. It's up to him and lifelong friend and naval intelligence agent Kevin Dunne to uncover the conspiracy behind the killing. At every turn, Santoro makes increasingly shocking discoveries that even he can't turn a blind eye to.", "video": false, "id": 8688, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Snake Eyes", "tagline": "Believe everything except your eyes.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120832", "adult": false, "backdrop_path": "/pK5G5br9ooo55zCgyjGDGs4p4Hl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DeBart", "id": 2519}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-08-07", "popularity": 0.308759082069292, "original_title": "Snake Eyes", "budget": 73000000, "cast": [{"name": "Nicolas Cage", "character": "Rick Santoro", "id": 2963, "credit_id": "52fe44b4c3a36847f80a551b", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Gary Sinise", "character": "Commander Kevin Dunne", "id": 33, "credit_id": "52fe44b4c3a36847f80a551f", "cast_id": 2, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 1}, {"name": "John Heard", "character": "Gilbert Powell", "id": 11512, "credit_id": "52fe44b4c3a36847f80a5523", "cast_id": 3, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 2}, {"name": "Carla Gugino", "character": "Julia Costello", "id": 17832, "credit_id": "52fe44b4c3a36847f80a5527", "cast_id": 4, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 3}, {"name": "Tamara Tunie", "character": "Anthea", "id": 42694, "credit_id": "52fe44b4c3a36847f80a554f", "cast_id": 12, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 4}, {"name": "Stan Shaw", "character": "Lincoln Tyler", "id": 16936, "credit_id": "52fe44b4c3a36847f80a5553", "cast_id": 13, "profile_path": "/2KUPUQQFmc8Zyzf16uaiYmVrNvX.jpg", "order": 5}, {"name": "Kevin Dunn", "character": "Lou Logan", "id": 14721, "credit_id": "52fe44b4c3a36847f80a5557", "cast_id": 14, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 6}, {"name": "Michael Rispoli", "character": "Jimmy George", "id": 18313, "credit_id": "52fe44b4c3a36847f80a555b", "cast_id": 15, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 7}, {"name": "Joel Fabiani", "character": "Charles Kirkland", "id": 118478, "credit_id": "52fe44b4c3a36847f80a555f", "cast_id": 16, "profile_path": "/jOqdOrgelg6313aOAr4aI0t4NQ1.jpg", "order": 8}, {"name": "Luis Guzm\u00e1n", "character": "Cyrus", "id": 40481, "credit_id": "52fe44b4c3a36847f80a5563", "cast_id": 17, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 9}, {"name": "David Anthony Higgins", "character": "Ned Campbell", "id": 78102, "credit_id": "52fe44b4c3a36847f80a5567", "cast_id": 18, "profile_path": "/oQvcJp7JciyEce28MBOZArznIue.jpg", "order": 10}, {"name": "Mike Starr", "character": "Walt McGahn", "id": 5170, "credit_id": "52fe44b4c3a36847f80a556b", "cast_id": 19, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 11}, {"name": "Chip Zien", "character": "Mickey Alter", "id": 90039, "credit_id": "52fe44b4c3a36847f80a556f", "cast_id": 20, "profile_path": "/wxHjA9yl28p49sN93bByO36ZBtZ.jpg", "order": 12}, {"name": "Michaella Bassey", "character": "Tyler's Party Girl #2", "id": 1206174, "credit_id": "52fe44b4c3a36847f80a5573", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Paul Joseph Bernardo", "character": "Casino Security #1", "id": 1206175, "credit_id": "52fe44b4c3a36847f80a5577", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Jernard Burks", "character": "Tyler's Bodyguard", "id": 55275, "credit_id": "52fe44b4c3a36847f80a557b", "cast_id": 23, "profile_path": "/uDxTWoUD79M7Hbmawp7ARexw0c1.jpg", "order": 15}, {"name": "Mark Camacho", "character": "C.J.", "id": 7013, "credit_id": "52fe44b4c3a36847f80a557f", "cast_id": 24, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe44b4c3a36847f80a552d", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 5.8, "runtime": 98}, "2067": {"poster_path": "/eco5chujn3Mt7HnuMTUIuobPMoX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60874615, "overview": "When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.", "video": false, "id": 2067, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Mission to Mars", "tagline": "Let There Be Life.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0183523", "adult": false, "backdrop_path": "/y97xS60jrTzOmDb2jwB0IP57qig.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "The Jacobson Company", "id": 3638}, {"name": "Red Horizon Productions", "id": 22103}], "release_date": "2000-03-10", "popularity": 0.572649117559597, "original_title": "Mission to Mars", "budget": 90000000, "cast": [{"name": "Gary Sinise", "character": "Jim McConnell", "id": 33, "credit_id": "52fe4331c3a36847f8041817", "cast_id": 23, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 0}, {"name": "Tim Robbins", "character": "Woodrow 'Woody' Blake", "id": 504, "credit_id": "52fe4331c3a36847f80417f3", "cast_id": 13, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Luke Graham", "id": 1896, "credit_id": "52fe4331c3a36847f80417f7", "cast_id": 14, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Connie Nielsen", "character": "Terri Fisher", "id": 935, "credit_id": "52fe4331c3a36847f80417fb", "cast_id": 15, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 3}, {"name": "Jerry O'Connell", "character": "Phil Ohlmyer", "id": 3035, "credit_id": "52fe4331c3a36847f804181b", "cast_id": 24, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 4}, {"name": "Peter Outerbridge", "character": "Sergei Kirov", "id": 12978, "credit_id": "52fe4331c3a36847f80417ff", "cast_id": 17, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 5}, {"name": "Kavan Smith", "character": "Nicholas Willis", "id": 21213, "credit_id": "52fe4331c3a36847f8041803", "cast_id": 18, "profile_path": "/41DoBsnM7UM3M4hS7oBkQceFwbv.jpg", "order": 6}, {"name": "Jill Teed", "character": "Reene Cote", "id": 21214, "credit_id": "52fe4331c3a36847f8041807", "cast_id": 19, "profile_path": "/oiIvgxGTDfh3l8Sellhn9W7Ve4b.jpg", "order": 7}, {"name": "Elise Neal", "character": "Debra Graham", "id": 21215, "credit_id": "52fe4331c3a36847f804180b", "cast_id": 20, "profile_path": "/6Z6LVIlaCVMWsRgOPFOA4NOXAQO.jpg", "order": 8}, {"name": "Kim Delaney", "character": "Maggie McConnell", "id": 21216, "credit_id": "52fe4331c3a36847f804180f", "cast_id": 21, "profile_path": "/9CTIlehx2Qsefgr2NIyqLISbMxr.jpg", "order": 9}, {"name": "Armin Mueller-Stahl", "character": "Ramier Beck", "id": 12647, "credit_id": "52fe4331c3a36847f8041813", "cast_id": 22, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 10}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f80417c5", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 5.9, "runtime": 114}, "2069": {"poster_path": "/rnXnZrKipVb8v4mS2Oo6Ga2O0fg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A mobster named Jimmy the Tulip agrees to cooperate with an FBI investigation in order to stay out of prison; he's relocated by the authorities to a life of suburban anonymity as part of a witness protection program. It's not long before a couple of his new neighbors figure out his true identity and come knocking to see if he'd be up for one more hit, suburban style.", "video": false, "id": 2069, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Whole Nine Yards", "tagline": "In the heart of suburbia, a hit man with heart has just moved in.", "vote_count": 168, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ttaiuuOHjYLTszcbADBZImqRK5H.jpg", "poster_path": "/m6tkyCcOm4wzklAvsT0jyaM5mgY.jpg", "id": 103577, "name": "The Whole Nine Yards Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0190138", "adult": false, "backdrop_path": "/1Qdk7B4hFLdQO8OTWDhcVAqcdTk.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Franchise Pictures", "id": 1403}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2000-02-18", "popularity": 0.878281914204314, "original_title": "The Whole Nine Yards", "budget": 0, "cast": [{"name": "Bruce Willis", "character": "Jimmy \"The Tulip\" Tudeski", "id": 62, "credit_id": "52fe4331c3a36847f80418c1", "cast_id": 10, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Matthew Perry", "character": "Nicholas \"Oz\" Oseransky", "id": 14408, "credit_id": "52fe4331c3a36847f80418c5", "cast_id": 11, "profile_path": "/hkszOdJc14ULRdsy7JnRAvlrbCY.jpg", "order": 1}, {"name": "Rosanna Arquette", "character": "Sophie Oseransky", "id": 2165, "credit_id": "52fe4331c3a36847f80418c9", "cast_id": 12, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 2}, {"name": "Michael Clarke Duncan", "character": "Franklin \"Frankie Figs\" Figueroa", "id": 61981, "credit_id": "52fe4331c3a36847f80418cd", "cast_id": 13, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 3}, {"name": "Kevin Pollak", "character": "Janni Pytor Gogolak", "id": 7166, "credit_id": "52fe4331c3a36847f80418d1", "cast_id": 15, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 4}, {"name": "Harland Williams", "character": "Special Agent Steve Hanson", "id": 16846, "credit_id": "52fe4331c3a36847f80418d5", "cast_id": 16, "profile_path": "/ncbsGnC41SsM7VpCOGBJGQ44dwF.jpg", "order": 5}, {"name": "Amanda Peet", "character": "Jill St. Claire", "id": 2956, "credit_id": "52fe4331c3a36847f80418d9", "cast_id": 17, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 6}, {"name": "Natasha Henstridge", "character": "Cynthia Tudeski", "id": 57395, "credit_id": "52fe4332c3a36847f80418dd", "cast_id": 18, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 7}], "directors": [{"name": "Jonathan Lynn", "department": "Directing", "job": "Director", "credit_id": "52fe4331c3a36847f804188d", "profile_path": "/nvMGnGbGdXrRvGAjulNqhJWUB9c.jpg", "id": 21217}], "vote_average": 6.2, "runtime": 98}, "2080": {"poster_path": "/vbaV7DalSF6Uy4qLyVK7uNdtmFy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 341131793, "overview": "After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.", "video": false, "id": 2080, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "X-Men Origins: Wolverine", "tagline": "Witness the Origin.", "vote_count": 1975, "homepage": "http://www.x-menorigins.com/", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0458525", "adult": false, "backdrop_path": "/mEuDxpLNBCarVgXRqDznHT7bdS8.jpg", "production_companies": [{"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Dune Entertainment", "id": 444}, {"name": "Donners' Company", "id": 431}, {"name": "Seed Productions", "id": 9076}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Big Screen Productions", "id": 10893}], "release_date": "2009-04-30", "popularity": 0.253862367520321, "original_title": "X-Men Origins: Wolverine", "budget": 150000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe4333c3a36847f8041ded", "cast_id": 3, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Taylor Kitsch", "character": "Remy LeBeau", "id": 60900, "credit_id": "52fe4333c3a36847f8041e1b", "cast_id": 13, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 1}, {"name": "Daniel Henney", "character": "Agent Zero", "id": 82093, "credit_id": "52fe4333c3a36847f8041e1f", "cast_id": 14, "profile_path": "/kR4h7S7ny30HaqJpe5rv88RrKYA.jpg", "order": 2}, {"name": "Ryan Reynolds", "character": "Wade Wilson / Deadpool", "id": 10859, "credit_id": "52fe4333c3a36847f8041e23", "cast_id": 15, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 3}, {"name": "Troye Sivan", "character": "James", "id": 1003248, "credit_id": "53f01f9dc3a3685af2002094", "cast_id": 26, "profile_path": "/tdzTuNH7dB2csMwVHY6DTxTa7lI.jpg", "order": 4}, {"name": "Liev Schreiber", "character": "Victor Creed", "id": 23626, "credit_id": "52fe4333c3a36847f8041e03", "cast_id": 7, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 5}, {"name": "Danny Huston", "character": "Stryker", "id": 6413, "credit_id": "52fe4333c3a36847f8041e07", "cast_id": 8, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "Will.i.am", "character": "John Wraith", "id": 82092, "credit_id": "52fe4333c3a36847f8041e0b", "cast_id": 9, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 7}, {"name": "Lynn Collins", "character": "Kayla Silverfox", "id": 21044, "credit_id": "52fe4333c3a36847f8041e0f", "cast_id": 10, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 8}, {"name": "Kevin Durand", "character": "Fred Dukes", "id": 79072, "credit_id": "52fe4333c3a36847f8041e13", "cast_id": 11, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 9}, {"name": "Dominic Monaghan", "character": "Bradley", "id": 1330, "credit_id": "52fe4333c3a36847f8041e17", "cast_id": 12, "profile_path": "/sXkqoK3v1nfCudXIcxKVwDc0imw.jpg", "order": 10}, {"name": "Tim Pocock", "character": "Scott Summers", "id": 82094, "credit_id": "52fe4333c3a36847f8041e2b", "cast_id": 17, "profile_path": "/5hQNHKvQqtkgwPIzZ9UdCVfAoj4.jpg", "order": 11}, {"name": "Julia Blake", "character": "Heather Hudson", "id": 77561, "credit_id": "53f01f49c3a3685ae7002081", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Max Cullen", "character": "Travis Hudson", "id": 38665, "credit_id": "53f01f66c3a3685ad90023d4", "cast_id": 25, "profile_path": "/ceHlZnHwEDyMZWNT5PhuJJVPZPZ.jpg", "order": 13}, {"name": "Michael James Olsen", "character": "Young Victor", "id": 1353634, "credit_id": "53f01faac3a3685af2002098", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Peter O'Brien", "character": "John Howlett", "id": 63295, "credit_id": "53f02035c3a3685ad90023f3", "cast_id": 29, "profile_path": "/ebW9eoPY57aR1CKp8G82Hl9PyL.jpg", "order": 15}, {"name": "Aaron Jeffrey", "character": "Thomas Logan", "id": 1353635, "credit_id": "53f01fc1c3a3685aed001fd1", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Alice Parkinson", "character": "Elizabeth Howlett", "id": 144286, "credit_id": "52fe4333c3a36847f8041e2f", "cast_id": 18, "profile_path": "/8dfn4pbCdvf1EYSJhMn4fTF2ZZZ.jpg", "order": 17}, {"name": "Philip A. Patterson", "character": "Firing Squad Leader (as Phil Patterson)", "id": 59792, "credit_id": "53f0208c0e0a2675b20027d9", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Anthony Gee", "character": "Carnival Guy", "id": 1200536, "credit_id": "53f021bc0e0a2675ac002667", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Adelaide Clemens", "character": "Carnival Girl", "id": 205474, "credit_id": "52fe4333c3a36847f8041e33", "cast_id": 19, "profile_path": "/mgOHGacftimR5qBXVzaQoMyVoTX.jpg", "order": 20}, {"name": "Karl Beattie", "character": "School Child", "id": 1353637, "credit_id": "53f022acc3a3685aed002007", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Tom O'Sullivan", "character": "Logging Supervisor", "id": 1244355, "credit_id": "53f022080e0a2675a90027ba", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Myles Pollard", "character": "Phelan", "id": 190856, "credit_id": "53f0221f0e0a2675a90027be", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Stephen Anderton", "character": "Marcuse", "id": 1353638, "credit_id": "53f022d3c3a3685aed002011", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Chris Sadrinna", "character": "Van Mier", "id": 94350, "credit_id": "53f022f1c3a3685ae70020c3", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Septimus Caton", "character": "Bartender", "id": 626531, "credit_id": "53f0230cc3a3685ad900241c", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Matthew Dale", "character": "Surgeon", "id": 1353639, "credit_id": "53f02332c3a3685af20020d8", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Nathin Butler", "character": "Male Nurse #1", "id": 55903, "credit_id": "53f02358c3a3685ae2001fb1", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Peter Barry", "character": "Male Nurse #2", "id": 1353640, "credit_id": "53f02366c3a3685aff0020e9", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "David Ritchie", "character": "Dr. Cornelius", "id": 1353641, "credit_id": "53f02375c3a3685ad9002429", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Asher Keddie", "character": "Dr. Carol Frost", "id": 125565, "credit_id": "52fe4333c3a36847f8041e37", "cast_id": 20, "profile_path": "/undrFT5aTqwXLFSM6AnU8dlYPsj.jpg", "order": 31}, {"name": "Socratis Otto", "character": "Lead Technician - Alkali Lake", "id": 75174, "credit_id": "53f02397c3a3685aff0020ed", "cast_id": 43, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 32}, {"name": "Stephen Leeder", "character": "General Munson", "id": 75720, "credit_id": "53f023eb0e0a2675bc0026ad", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "James D. Dever", "character": "Platoon Leader", "id": 1205880, "credit_id": "53f024150e0a2675a90027f3", "cast_id": 45, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 34}, {"name": "Martin Obuga", "character": "Muttering Man", "id": 1353642, "credit_id": "53f024210e0a2675b50026d6", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Rita Affua Connell", "character": "Nervous African Woman", "id": 1353643, "credit_id": "53f024310e0a2675ac0026a6", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "John Shrimpton", "character": "Stryker Aide", "id": 1353644, "credit_id": "53f0243d0e0a2675a90027fb", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Henry Browne", "character": "Curtis", "id": 1353646, "credit_id": "53f0244b0e0a2675b50026df", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Tahyna Tozzi", "character": "Kayla's Sister / Emma", "id": 92175, "credit_id": "52fe4333c3a36847f8041e3b", "cast_id": 21, "profile_path": "/5UIPwdpSF54dZHkwXYPzTOgYbuq.jpg", "order": 39}, {"name": "Daniel Negreanu", "character": "Poker Player", "id": 1239053, "credit_id": "53f0249a0e0a2675b200283f", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Alexandra Davies", "character": "Woman of the Night (as Alex Davies)", "id": 148428, "credit_id": "52fe4333c3a36847f8041e3f", "cast_id": 22, "profile_path": "/Ac9DWdVpEc8hMLKR53NOcssxXXm.jpg", "order": 41}, {"name": "Don Battee", "character": "Huge Doorman", "id": 1091387, "credit_id": "53f024b30e0a2675bc0026bf", "cast_id": 51, "profile_path": "/wldKStDYxScihvLnObITQV4GuUb.jpg", "order": 42}, {"name": "Evan Sturrock", "character": "Drunken Man in Alley", "id": 1353647, "credit_id": "53f024c10e0a2675b80027b4", "cast_id": 52, "profile_path": null, "order": 43}, {"name": "Rob Flanagan", "character": "Driver", "id": 1353649, "credit_id": "53f025730e0a2675a900281f", "cast_id": 53, "profile_path": null, "order": 44}, {"name": "Hakeem Kae-Kazim", "character": "African Businessman", "id": 2603, "credit_id": "53f025920e0a2675a9002826", "cast_id": 54, "profile_path": "/cYHDYQbnvju1g8XIAnvwRr0bWSB.jpg", "order": 45}, {"name": "Alison Araya", "character": "Teacher", "id": 79351, "credit_id": "52fe4333c3a36847f8041e43", "cast_id": 23, "profile_path": "/jfulWxtEmU5grAmR0iZwpKsMq88.jpg", "order": 46}, {"name": "Eric Breker", "character": "Special Forces Commander", "id": 91404, "credit_id": "53f025b50e0a2675b2002857", "cast_id": 55, "profile_path": "/ipjCpokW77mQ3tixLJERoohJPZm.jpg", "order": 47}, {"name": "Eileen Bui", "character": "Vietnamese Child", "id": 1353652, "credit_id": "53f025e20e0a2675ac0026cc", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Adrian Hughes", "character": "Hunter #1", "id": 1172763, "credit_id": "53f026060e0a2675bf002760", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "Bryon Chief-Moon", "character": "Hunter #2", "id": 1353653, "credit_id": "53f026120e0a2675bc0026eb", "cast_id": 58, "profile_path": null, "order": 50}, {"name": "Mike Dopud", "character": "Vietnam Army Officer", "id": 64674, "credit_id": "53f0262d0e0a2675b5002716", "cast_id": 59, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 51}, {"name": "Beatrice Ilg", "character": "Waitress", "id": 1353654, "credit_id": "53f026440e0a2675a9002833", "cast_id": 60, "profile_path": null, "order": 52}, {"name": "Kanako Takegishi", "character": "Waitress", "id": 1353656, "credit_id": "53f0264e0e0a2675af0027ee", "cast_id": 61, "profile_path": null, "order": 53}, {"name": "Panou", "character": "Tank Soldier", "id": 1219446, "credit_id": "53f026690e0a2675ac0026e4", "cast_id": 62, "profile_path": "/2ZlQp0ZenSK9vNscU0Ye4hbi1U4.jpg", "order": 54}, {"name": "Johnson Phan", "character": "Vietnamese Man", "id": 1353657, "credit_id": "53f026770e0a2675b500271e", "cast_id": 63, "profile_path": null, "order": 55}, {"name": "Elizabeth Thai", "character": "Vietnamese Woman", "id": 43297, "credit_id": "53f0268f0e0a2675b5002722", "cast_id": 64, "profile_path": null, "order": 56}, {"name": "Jade Tang", "character": "Mutant Twin #1", "id": 1353658, "credit_id": "53f0269b0e0a2675b80027e6", "cast_id": 65, "profile_path": null, "order": 57}, {"name": "Joelle Tang", "character": "Mutant Twin #2", "id": 1353659, "credit_id": "53f026a40e0a2675ac0026eb", "cast_id": 66, "profile_path": null, "order": 58}, {"name": "Scott Adkins", "character": "Weapon XI", "id": 78110, "credit_id": "52fe4333c3a36847f8041e27", "cast_id": 16, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 59}, {"name": "Warwick Young", "character": "Helicopter Pilot", "id": 213087, "credit_id": "53f026be0e0a2675af0027ff", "cast_id": 67, "profile_path": null, "order": 60}], "directors": [{"name": "Gavin Hood", "department": "Directing", "job": "Director", "credit_id": "52fe4333c3a36847f8041dff", "profile_path": "/1W4NlD5YpGHnXdD2HGeG9bWSqYV.jpg", "id": 13079}], "vote_average": 6.2, "runtime": 107}, "34480": {"poster_path": "/hdiPZ3vnM6fPvfvbGY6C3gfTFEn.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Distraught, confused, and half-wild with fear, Sarah Carter emerges alone from the Appalachian cave system where she encountered unspeakable terrors. Unable to plausibly explain to the authorities what happened - or why she's covered in her friends' blood - Sarah is forced back to the subterranean depths to help locate her five missing companions.", "video": false, "id": 34480, "genres": [{"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Descent: Part 2", "tagline": "Fear runs deeper", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/o6nAtQxqqANvRzpr4d1LqGvzlZ8.jpg", "id": 87258, "name": "The Descent Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1073105", "adult": false, "backdrop_path": "/m0YwLST0nm2oh4t1udfzfnp42Sw.jpg", "production_companies": [{"name": "Celador Films", "id": 3573}], "release_date": "2009-12-02", "popularity": 0.565220727634421, "original_title": "The Descent: Part 2", "budget": 0, "cast": [{"name": "Shauna Macdonald", "character": "Sarah Carter", "id": 57574, "credit_id": "52fe45679251416c910310c1", "cast_id": 1, "profile_path": "/9FInrBy6ngLURnncUCbWk3iLsJE.jpg", "order": 0}, {"name": "Natalie Mendoza", "character": "Juno Kaplan", "id": 57575, "credit_id": "52fe45679251416c910310c5", "cast_id": 2, "profile_path": "/4yeZSEKGvUiCcljsFub2SxFGGuz.jpg", "order": 1}, {"name": "Gavin O'Herlihy", "character": "Vaines", "id": 12660, "credit_id": "52fe45679251416c910310cd", "cast_id": 4, "profile_path": "/brFrEXHx5vaeWJmqhQJMEaZhUHl.jpg", "order": 2}, {"name": "Krysten Cummings", "character": "Ellen Rios", "id": 112893, "credit_id": "52fe45679251416c910310c9", "cast_id": 3, "profile_path": "/z8lAA5tg6AnmGm24y27SzDA8D7r.jpg", "order": 3}, {"name": "Josh Dallas", "character": "Greg", "id": 77880, "credit_id": "52fe45679251416c910310d1", "cast_id": 5, "profile_path": "/4DoeVyhq2DSIinBvb9AOj52OUrS.jpg", "order": 4}, {"name": "Anna Skellern", "character": "Cath", "id": 112894, "credit_id": "52fe45679251416c910310d5", "cast_id": 6, "profile_path": "/A1jx4awTisdd7UIXF53SvXWvHNX.jpg", "order": 5}, {"name": "Douglas Hodge", "character": "Dan", "id": 80149, "credit_id": "52fe45679251416c910310d9", "cast_id": 7, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 6}, {"name": "Michael J. Reynolds", "character": "Ed Oswald", "id": 86442, "credit_id": "52fe45679251416c910310dd", "cast_id": 12, "profile_path": "/3JA1yjTfSM35GNzWR2dZgubRZ8B.jpg", "order": 7}, {"name": "Jessika Williams", "character": "Susanne Small", "id": 512997, "credit_id": "52fe45679251416c910310e1", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Saskia Mulder", "character": "Rebecca", "id": 57577, "credit_id": "53a46276c3a3682a4e00128e", "cast_id": 27, "profile_path": "/uvoxZyLCKFoGuHle4vfAzYIb3Uc.jpg", "order": 9}, {"name": "MyAnna Buring", "character": "Sam", "id": 57578, "credit_id": "53a46392c3a3682a4b00142a", "cast_id": 29, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 11}, {"name": "Nora-Jane Noone", "character": "Holly", "id": 53998, "credit_id": "53a463acc3a3682a450013ae", "cast_id": 30, "profile_path": "/fhXObJ2HvASXvbfPHxAPzc9ueZc.jpg", "order": 12}], "directors": [{"name": "Jon Harris", "department": "Directing", "job": "Director", "credit_id": "52fe45679251416c910310ed", "profile_path": null, "id": 1114}], "vote_average": 6.2, "runtime": 94}, "2082": {"poster_path": "/YiqEqeu3fibeaCcEdTUf6q7hzO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After being committed for 17 years, Michael Myers, now a grown man and still very dangerous, escapes from the mental institution (where he was committed as a 10 year old) and he immediately returns to Haddonfield, where he wants to find his baby sister, Laurie. Anyone who crosses his path is in mortal danger", "video": false, "id": 2082, "genres": [{"id": 27, "name": "Horror"}], "title": "Halloween", "tagline": "Evil. Unmasked.", "vote_count": 104, "homepage": "http://www.halloweenmovies.com/", "belongs_to_collection": {"backdrop_path": "/tXXPOkcFLcDiJ4OU5SOU3JnhQrg.jpg", "poster_path": "/9FXXvpOSnOosyiYbhVuWpZubTzA.jpg", "id": 126209, "name": "Halloween Collection (Rob Zombie Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373883", "adult": false, "backdrop_path": "/ewk1RjLDX4zynDZFGcDLHWblAbH.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Nightfall Productions", "id": 21438}, {"name": "Spectacle Entertainment Group", "id": 10370}], "release_date": "2007-08-31", "popularity": 0.460234209832526, "original_title": "Halloween", "budget": 20000000, "cast": [{"name": "Malcolm McDowell", "character": "Dr. Loomis", "id": 56890, "credit_id": "52fe4333c3a36847f8041eab", "cast_id": 2, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 0}, {"name": "Brad Dourif", "character": "Sheriff Leigh Brackett", "id": 1370, "credit_id": "52fe4333c3a36847f8041eaf", "cast_id": 3, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 1}, {"name": "Daeg Faerch", "character": "Michael Myers (young)", "id": 21317, "credit_id": "52fe4333c3a36847f8041eb3", "cast_id": 4, "profile_path": "/9JxK3k0BuQN7LubeiHQ9GEAC2A5.jpg", "order": 2}, {"name": "Tyler Mane", "character": "Michael Myers", "id": 9832, "credit_id": "52fe4333c3a36847f8041eb7", "cast_id": 5, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 3}, {"name": "Scout Taylor-Compton", "character": "Laurie Strode", "id": 21318, "credit_id": "52fe4333c3a36847f8041ebb", "cast_id": 6, "profile_path": "/w0fiP2VOXkHJclbElyOEBuDyONI.jpg", "order": 4}, {"name": "Sheri Moon Zombie", "character": "Deborah Myers", "id": 21319, "credit_id": "52fe4333c3a36847f8041ebf", "cast_id": 7, "profile_path": "/ecPGCsrhqwR6clWmtqtlS6ZFdY3.jpg", "order": 5}, {"name": "William Forsythe", "character": "Ronnie White", "id": 4520, "credit_id": "52fe4333c3a36847f8041ec3", "cast_id": 8, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 6}, {"name": "Danielle Harris", "character": "Annie Brackett", "id": 21320, "credit_id": "52fe4333c3a36847f8041ec7", "cast_id": 9, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 7}, {"name": "Kristina Klebe", "character": "Lynda van der Klok", "id": 21321, "credit_id": "52fe4333c3a36847f8041ecb", "cast_id": 10, "profile_path": "/8vFonAbOtAjPAKdsh0ocn4Drq7.jpg", "order": 8}, {"name": "Udo Kier", "character": "Morgan Walker", "id": 1646, "credit_id": "52fe4333c3a36847f8041ecf", "cast_id": 11, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Ismael Cruz", "id": 11160, "credit_id": "52fe4333c3a36847f8041f09", "cast_id": 21, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Skyler Gisondo", "character": "Tommy Doyle", "id": 61263, "credit_id": "52fe4333c3a36847f8041f0d", "cast_id": 22, "profile_path": "/aA6PhyCQy32YZwOitQva10hjcq5.jpg", "order": 11}, {"name": "Tom Towles", "character": "Larry Redgrave", "id": 27736, "credit_id": "52fe4333c3a36847f8041f11", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Bill Moseley", "character": "Zach 'Z-Man' Garrett", "id": 27737, "credit_id": "52fe4333c3a36847f8041f15", "cast_id": 25, "profile_path": "/zZP7ijcocjYN6cNKwpPwmRDWsv1.jpg", "order": 13}, {"name": "Leslie Easterbrook", "character": "Patty Frost", "id": 22252, "credit_id": "52fe4333c3a36847f8041f19", "cast_id": 26, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 14}, {"name": "Richard Lynch", "character": "Principal Chambers", "id": 97878, "credit_id": "52fe4333c3a36847f8041f1d", "cast_id": 27, "profile_path": "/8e1KM2XCGh8X2Ekoc6AB9yvUaYS.jpg", "order": 15}, {"name": "Lew Temple", "character": "Noel Kluggs", "id": 37027, "credit_id": "52fe4333c3a36847f8041f21", "cast_id": 28, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 16}, {"name": "Pat Skipper", "character": "Mason Strode", "id": 6326, "credit_id": "52fe4333c3a36847f8041f25", "cast_id": 29, "profile_path": "/yz3OrX0JKWcNDLLc8TBoRUhWAcC.jpg", "order": 17}, {"name": "Ken Foree", "character": "Big Joe Grizzly", "id": 15070, "credit_id": "52fe4333c3a36847f8041f29", "cast_id": 30, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 18}, {"name": "Sybil Danning", "character": "Nurse Wynn", "id": 29541, "credit_id": "52fe4333c3a36847f8041f2d", "cast_id": 31, "profile_path": "/6WydVNd7JTYY0zbYtH2iwKGGo7k.jpg", "order": 19}, {"name": "Micky Dolenz", "character": "Derek Allen", "id": 82775, "credit_id": "52fe4333c3a36847f8041f31", "cast_id": 32, "profile_path": "/1BxIIDy4rocM35G6U3CpXD9Vm7N.jpg", "order": 20}, {"name": "Daniel Roebuck", "character": "Lou Martini", "id": 43774, "credit_id": "52fe4333c3a36847f8041f35", "cast_id": 33, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 21}, {"name": "Sid Haig", "character": "Chester Chesterfield", "id": 5695, "credit_id": "52fe4333c3a36847f8041f39", "cast_id": 34, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 22}, {"name": "Hanna Hall", "character": "Judith Myers", "id": 204997, "credit_id": "52fe4333c3a36847f8041f3d", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Dee Wallace", "character": "Cynthia Strode", "id": 62001, "credit_id": "52fe4333c3a36847f8041f41", "cast_id": 37, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 24}, {"name": "Steve Boyles", "character": "Stan Payne", "id": 1205487, "credit_id": "52fe4333c3a36847f8041f45", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Clint Howard", "character": "Doctor Koplenson", "id": 15661, "credit_id": "52fe4333c3a36847f8041f49", "cast_id": 39, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 26}, {"name": "Jenny Gregg Stewart", "character": "Lindsey Wallace", "id": 1205490, "credit_id": "52fe4333c3a36847f8041f4d", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Adam Weisman", "character": "Steve Haley", "id": 181719, "credit_id": "52fe4333c3a36847f8041f51", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Sydnie Pitzer", "character": "Baby Boo", "id": 1205493, "credit_id": "52fe4333c3a36847f8041f55", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Myla Pitzer", "character": "Baby Boo", "id": 1205494, "credit_id": "52fe4333c3a36847f8041f59", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Stella Altman", "character": "Baby Boo", "id": 1205495, "credit_id": "52fe4333c3a36847f8041f5d", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Max Van Ville", "character": "Paul", "id": 76008, "credit_id": "52fe4333c3a36847f8041f61", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Nick Mennell", "character": "Bob Simms", "id": 79189, "credit_id": "52fe4333c3a36847f8041f65", "cast_id": 46, "profile_path": "/5EOALTNvekSuJUWCF1SrRAMKHTE.jpg", "order": 33}, {"name": "Daryl Sabara", "character": "Wesley Rhoades", "id": 57675, "credit_id": "52fe4333c3a36847f8041f69", "cast_id": 47, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 34}, {"name": "Richmond Arquette", "character": "Deputy Charles", "id": 7472, "credit_id": "52fe4333c3a36847f8041f6d", "cast_id": 48, "profile_path": "/xW4bb2qsPYilO27ex4Xoy2Ik1Ai.jpg", "order": 35}], "directors": [{"name": "Rob Zombie", "department": "Directing", "job": "Director", "credit_id": "52fe4333c3a36847f8041ea7", "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "id": 16848}], "vote_average": 6.0, "runtime": 109}, "34851": {"poster_path": "/xtx2kOAySd2jUVU4eylCgkkIi5v.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126248813, "overview": "A mercenary named Royce reluctantly leads a motley crew of warriors who soon come to realize they've been captured and deposited on an alien planet by an unknown nemesis. With the exception of a peculiar physician, they are all cold-blooded killers, convicts, death squad members...hunters who have now become the hunted.", "video": false, "id": 34851, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Predators", "tagline": "Fear is Reborn", "vote_count": 351, "homepage": "http://www.predators-movie.com/", "belongs_to_collection": {"backdrop_path": "/e8ycFoI8vGoZSOY7KmxFzZA1dkE.jpg", "poster_path": "/6Z7lASptoiRVxiCFvZaFgH9qp7u.jpg", "id": 399, "name": "Predator Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1424381", "adult": false, "backdrop_path": "/sLn5HvFwLIL7Fof2Jj0JEeJSrGC.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Troublemaker Studios", "id": 10807}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2010-07-06", "popularity": 1.18879536721663, "original_title": "Predators", "budget": 40000000, "cast": [{"name": "Topher Grace", "character": "Edwin", "id": 17052, "credit_id": "52fe45819251416c91034a89", "cast_id": 5, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 0}, {"name": "Alice Braga", "character": "Isabelle", "id": 8602, "credit_id": "52fe45819251416c91034a8d", "cast_id": 6, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 1}, {"name": "Laurence Fishburne", "character": "Noland", "id": 2975, "credit_id": "52fe45819251416c91034a91", "cast_id": 7, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 2}, {"name": "Adrien Brody", "character": "Royce", "id": 3490, "credit_id": "52fe45819251416c91034a85", "cast_id": 4, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 3}, {"name": "Danny Trejo", "character": "Cuchillo", "id": 11160, "credit_id": "52fe45819251416c91034a95", "cast_id": 8, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 4}, {"name": "Walton Goggins", "character": "Stans", "id": 27740, "credit_id": "52fe45819251416c91034a99", "cast_id": 9, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 5}, {"name": "Oleg Taktarov", "character": "Nikolai", "id": 77351, "credit_id": "52fe45819251416c91034a9d", "cast_id": 11, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 6}, {"name": "Louis Ozawa Changchien", "character": "Hanzo", "id": 113308, "credit_id": "52fe45819251416c91034aa1", "cast_id": 12, "profile_path": "/2mQAXKYbqP7Lhhsdz3OBYB6IMCw.jpg", "order": 7}, {"name": "Carey Jones", "character": "Tracker Predator", "id": 1015924, "credit_id": "52fe45819251416c91034ae7", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Brian Steele", "character": "Berserker Predator / Falconer Predator", "id": 12359, "credit_id": "52fe45819251416c91034aeb", "cast_id": 25, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 9}, {"name": "Derek Mears", "character": "Classic Predator", "id": 51300, "credit_id": "52fe45819251416c91034aef", "cast_id": 26, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 10}, {"name": "Mahershalalhashbaz Ali", "character": "Mombasa", "id": 932967, "credit_id": "52fe45819251416c91034af9", "cast_id": 28, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 11}], "directors": [{"name": "Nimr\u00f3d Antal", "department": "Directing", "job": "Director", "credit_id": "52fe45819251416c91034a75", "profile_path": "/rI5DZmGXhZcNYaREK9vy2khqm1o.jpg", "id": 41671}], "vote_average": 6.0, "runtime": 107}, "10276": {"poster_path": "/xdm4tJedPT6UDcNGLgCt3YO7A06.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63710000, "overview": "Bob Wiley is a man who can hardly leave his house without his lips going numb from fear. Dr. Leo Marvin is the egotistical psychiatrist who has the misfortune of getting Bob pawned off on him by a fellow doctor. What Dr. Marvin thinks is just another aspect of his life that can be meticulously controlled turns out to be anything but.", "video": false, "id": 10276, "genres": [{"id": 35, "name": "Comedy"}], "title": "What About Bob?", "tagline": "Bob's a special kind of friend. The kind that drives you crazy!", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103241", "adult": false, "backdrop_path": "/bHYccWMUQIeuXXNAmTUgDgDdqie.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Touchwood Pacific Partners 1", "id": 8830}], "release_date": "1991-05-17", "popularity": 0.801878893026901, "original_title": "What About Bob?", "budget": 0, "cast": [{"name": "Bill Murray", "character": "Bob 'Bobby' Wiley", "id": 1532, "credit_id": "52fe43519251416c7500bcb5", "cast_id": 1, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Richard Dreyfuss", "character": "Dr. Leo Marvin", "id": 3037, "credit_id": "52fe43519251416c7500bcb9", "cast_id": 2, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 1}, {"name": "Julie Hagerty", "character": "Fay Marvin", "id": 14415, "credit_id": "52fe43519251416c7500bcbd", "cast_id": 3, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 2}, {"name": "Charlie Korsmo", "character": "Sigmund 'Siggy' Marvin", "id": 13389, "credit_id": "52fe43519251416c7500bcc1", "cast_id": 4, "profile_path": "/5TiMQj3AXDVL1wDVtQss2xUPzTC.jpg", "order": 3}, {"name": "Kathryn Erbe", "character": "Anna Marvin", "id": 49824, "credit_id": "52fe43519251416c7500bcc5", "cast_id": 5, "profile_path": "/g08nZHy3iksjhczFfT8VctUIJ73.jpg", "order": 4}, {"name": "Tom Aldredge", "character": "Mr. Guttman", "id": 49835, "credit_id": "52fe43519251416c7500bcc9", "cast_id": 6, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 5}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe43519251416c7500bccf", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.9, "runtime": 99}, "2085": {"poster_path": "/pJfYg8odBx1NOVFafOM1ahfvr4V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91036760, "overview": "Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang SIng and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead \u2026 or worse!", "video": false, "id": 2085, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Romeo Must Die", "tagline": "In the city ruled by criminals, two families have forgotten their fear. He will make them remember.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0165929", "adult": false, "backdrop_path": "/mYPkgYPf6o6cVdfZdoR7HMtseBj.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2000-06-08", "popularity": 0.899154371303489, "original_title": "Romeo Must Die", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Hang Sing", "id": 1336, "credit_id": "52fe4333c3a36847f8042141", "cast_id": 8, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Aaliyah", "character": "Trish O`Day", "id": 21352, "credit_id": "52fe4333c3a36847f8042145", "cast_id": 9, "profile_path": "/9AUA7yvMocrm9A5TtaHZ12hxQjT.jpg", "order": 1}, {"name": "Isaiah Washington", "character": "Mac", "id": 21353, "credit_id": "52fe4333c3a36847f8042149", "cast_id": 10, "profile_path": "/d6J3fo5ad2XeoQ53421eL7YcpoJ.jpg", "order": 2}, {"name": "Russell Wong", "character": "Kai", "id": 21354, "credit_id": "52fe4333c3a36847f804214d", "cast_id": 11, "profile_path": "/ow2nODo1eKRchSLJMjEW7BUTXgy.jpg", "order": 3}, {"name": "DMX", "character": "Silk", "id": 21355, "credit_id": "52fe4333c3a36847f8042151", "cast_id": 12, "profile_path": "/eoAfTjFs6SiXGBmdlfasb0J9fHw.jpg", "order": 4}, {"name": "Delroy Lindo", "character": "Isaak O`Day", "id": 18792, "credit_id": "52fe4333c3a36847f8042155", "cast_id": 13, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 5}, {"name": "D. B. Woodside", "character": "Colin O`Day", "id": 21356, "credit_id": "52fe4333c3a36847f8042159", "cast_id": 14, "profile_path": "/deDzc1UEZsOvamdhvBPNbwrBSrM.jpg", "order": 6}, {"name": "Jon Kit Lee", "character": "Po Sing", "id": 21358, "credit_id": "52fe4333c3a36847f804215d", "cast_id": 16, "profile_path": "/mbaz0eYZxaUVHS72fJsI1Y5b12b.jpg", "order": 8}, {"name": "Edoardo Ballerini", "character": "Vincent Roth", "id": 21359, "credit_id": "52fe4333c3a36847f8042161", "cast_id": 17, "profile_path": "/2Xkuux55UDZ3LSlOx9tIkQLrDdQ.jpg", "order": 9}, {"name": "Anthony Anderson", "character": "Maurice", "id": 18471, "credit_id": "52fe4333c3a36847f8042165", "cast_id": 18, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 10}, {"name": "Matthew Harrison", "character": "Dave", "id": 21360, "credit_id": "52fe4333c3a36847f8042169", "cast_id": 19, "profile_path": "/2dUfVxMEM1ilto1YP78XaEVppKI.jpg", "order": 11}, {"name": "Terry Chen", "character": "Kuang", "id": 11677, "credit_id": "52fe4333c3a36847f804216d", "cast_id": 20, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "Henry O", "character": "Ch`u Sing", "id": 39829, "credit_id": "52fe4333c3a36847f8042177", "cast_id": 22, "profile_path": "/cJ7rk3cmGOc0m1T90oPgZylntcs.jpg", "order": 13}], "directors": [{"name": "Andrzej Bartkowiak", "department": "Directing", "job": "Director", "credit_id": "52fe4333c3a36847f804211f", "profile_path": "/taaHl0nMtXgKTx8YbeQoJCuO5Ac.jpg", "id": 10765}], "vote_average": 6.2, "runtime": 115}, "59436": {"poster_path": "/xxSopLYATHXSepXcEaBh9Gazv6p.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70278363, "overview": "A romantic comedy about a family traveling to the French capital for business. The party includes a young engaged couple forced to confront the illusion that a life different from their own is better.", "video": false, "id": 59436, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Midnight in Paris", "tagline": "Written and directed by Woody Allen", "vote_count": 456, "homepage": "http://www.sonyclassics.com/midnightinparis", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1605783", "adult": false, "backdrop_path": "/mtTKXG925gRdYHVto6cxC9NdfBZ.jpg", "production_companies": [{"name": "Pontchartrain Productions", "id": 24785}, {"name": "Gravier Productions", "id": 1824}, {"name": "Mediapro", "id": 12010}, {"name": "Vers\u00e1til Cinema", "id": 8531}, {"name": "Televisi\u00f3 de Catalunya (TV3)", "id": 8530}], "release_date": "2011-05-11", "popularity": 1.26203895736239, "original_title": "Midnight in Paris", "budget": 30000000, "cast": [{"name": "Owen Wilson", "character": "Gil", "id": 887, "credit_id": "52fe4990c3a36847f81a0ba7", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Inez", "id": 53714, "credit_id": "52fe4990c3a36847f81a0bab", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Kurt Fuller", "character": "John", "id": 29685, "credit_id": "52fe4990c3a36847f81a0baf", "cast_id": 5, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 2}, {"name": "Mimi Kennedy", "character": "Helen", "id": 91495, "credit_id": "52fe4990c3a36847f81a0bbb", "cast_id": 8, "profile_path": "/2bg8ItAMtb18GCX7OEICxxjxVID.jpg", "order": 3}, {"name": "Michael Sheen", "character": "Paul", "id": 3968, "credit_id": "52fe4990c3a36847f81a0bb7", "cast_id": 7, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 4}, {"name": "Nina Arianda", "character": "Carol", "id": 971329, "credit_id": "52fe4990c3a36847f81a0bf9", "cast_id": 23, "profile_path": "/9JFj7CPIkH9NCqtqT5SN3ECsBYh.jpg", "order": 5}, {"name": "Carla Bruni", "character": "Museum Guide", "id": 937039, "credit_id": "52fe4990c3a36847f81a0bfd", "cast_id": 24, "profile_path": "/xrRvz1hXXT74vS2zdp3HRbS70GP.jpg", "order": 6}, {"name": "Maurice Sonnenberg", "character": "Man at Wine Tasting", "id": 28005, "credit_id": "52fe4990c3a36847f81a0c83", "cast_id": 53, "profile_path": "/vEoIXwvbHghKymwtaDQtuNQg4mk.jpg", "order": 7}, {"name": "Thierry Hancisse", "character": "1920's Partygoer", "id": 96376, "credit_id": "52fe4990c3a36847f81a0c35", "cast_id": 38, "profile_path": "/l6HTy5ymkwISo93bSyfWGFiQDzZ.jpg", "order": 8}, {"name": "Audrey Fleurot", "character": "1920's Partygoer", "id": 219708, "credit_id": "52fe4990c3a36847f81a0c3d", "cast_id": 40, "profile_path": "/cvCRChF1HzYviQsfZzFpeNzjYap.jpg", "order": 10}, {"name": "Marie-Sohna Conde", "character": "1920's Partygoer (as Marie-Sohna Cond\u00e9)", "id": 7284, "credit_id": "52fe4990c3a36847f81a0c41", "cast_id": 41, "profile_path": "/uFIa5WmWvU41T7urdTvYGg6JFHr.jpg", "order": 11}, {"name": "Yves Heck", "character": "Cole Porter", "id": 1151450, "credit_id": "52fe4990c3a36847f81a0bf5", "cast_id": 22, "profile_path": "/lyWiIpnReZv9erUlJq5kZc2kYXI.jpg", "order": 12}, {"name": "Alison Pill", "character": "Zelda Fitzgerald", "id": 17486, "credit_id": "52fe4990c3a36847f81a0bb3", "cast_id": 6, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 13}, {"name": "Tom Hiddleston", "character": "F. Scott Fitzgerald", "id": 91606, "credit_id": "52fe4990c3a36847f81a0bf1", "cast_id": 21, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 14}, {"name": "Sonia Rolland", "character": "Jos\u00e9phine Baker", "id": 585668, "credit_id": "52fe4990c3a36847f81a0bed", "cast_id": 20, "profile_path": "/AjHfJzjKtrmUGO8sgDQHow277De.jpg", "order": 15}, {"name": "Corey Stoll", "character": "Ernest Hemingway", "id": 74541, "credit_id": "52fe4990c3a36847f81a0bc3", "cast_id": 10, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 16}, {"name": "Daniel Lundh", "character": "Juan Belmonte", "id": 144957, "credit_id": "52fe4990c3a36847f81a0c31", "cast_id": 37, "profile_path": "/k5w8eIj08voHbJYCMWCDC07hrI7.jpg", "order": 17}, {"name": "Laurent Spielvogel", "character": "Antiques Dealer", "id": 115686, "credit_id": "52fe4990c3a36847f81a0c2d", "cast_id": 36, "profile_path": "/tMaZJH2bkINTTxYsY4B4Gmt9rlE.jpg", "order": 18}, {"name": "Th\u00e9r\u00e8se Bourou-Rubinsztein", "character": "Alice B. Toklas", "id": 1151451, "credit_id": "52fe4990c3a36847f81a0c01", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Kathy Bates", "character": "Gertrude Stein", "id": 8534, "credit_id": "52fe4990c3a36847f81a0bc7", "cast_id": 11, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 20}, {"name": "Marcial Di Fonzo Bo", "character": "Pablo Picasso", "id": 85016, "credit_id": "52fe4990c3a36847f81a0c05", "cast_id": 26, "profile_path": "/u5R8SQIhrHLnuerG4YE3Dlw8j08.jpg", "order": 21}, {"name": "Marion Cotillard", "character": "Adriana", "id": 8293, "credit_id": "52fe4990c3a36847f81a0bbf", "cast_id": 9, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 22}, {"name": "L\u00e9a Seydoux", "character": "Gabrielle", "id": 121529, "credit_id": "52fe4990c3a36847f81a0bd9", "cast_id": 15, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 23}, {"name": "Emmanuelle Uzan", "character": "Djuna Barnes", "id": 1151449, "credit_id": "52fe4990c3a36847f81a0bdd", "cast_id": 16, "profile_path": "/dDlPHExEjWeLtR8hxvQ0OSw7bz.jpg", "order": 24}, {"name": "Adrien Brody", "character": "Salvador Dal\u00ed", "id": 3490, "credit_id": "52fe4990c3a36847f81a0bcb", "cast_id": 12, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 25}, {"name": "Tom Cordier", "character": "Man Ray", "id": 1151452, "credit_id": "52fe4990c3a36847f81a0c09", "cast_id": 27, "profile_path": "/2ZjRx2TSwhq04zYxlR0hhU3nZDz.jpg", "order": 26}, {"name": "Adrien de Van", "character": "Luis Bu\u00f1uel", "id": 260836, "credit_id": "52fe4990c3a36847f81a0be9", "cast_id": 19, "profile_path": "/1luce7nNxUZZZL0GjdapTwuLk4M.jpg", "order": 27}, {"name": "Serge Bagdassarian", "character": "D\u00e9tective Duluc", "id": 1151455, "credit_id": "52fe4990c3a36847f81a0c25", "cast_id": 34, "profile_path": "/UXoVtUa4joxu1aRVMz3bmdCtte.jpg", "order": 28}, {"name": "Gad Elmaleh", "character": "Detective Tisserant", "id": 51100, "credit_id": "52fe4990c3a36847f81a0bd5", "cast_id": 14, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 29}, {"name": "David Lowe", "character": "T.S. Eliot", "id": 180906, "credit_id": "52fe4990c3a36847f81a0be5", "cast_id": 18, "profile_path": "/ljFTdKSae3dhdnijz1lyOitdNpz.jpg", "order": 30}, {"name": "Atmen Kelif", "character": "Hotel Doctor", "id": 234022, "credit_id": "52fe4990c3a36847f81a0c87", "cast_id": 54, "profile_path": "/w7XYquidRB8RmxoTnRo0ZqbSr26.jpg", "order": 31}, {"name": "Yves-Antoine Spoto", "character": "Henri Matisse", "id": 1151453, "credit_id": "52fe4990c3a36847f81a0c0d", "cast_id": 28, "profile_path": "/2s1ev4OMEtBB7gNRd6lTrxDycyc.jpg", "order": 32}, {"name": "Laurent Claret", "character": "Leo Stein", "id": 51105, "credit_id": "52fe4990c3a36847f81a0c11", "cast_id": 29, "profile_path": "/vrp7WpVVo4vlFDMx2u7PPHMtExe.jpg", "order": 33}, {"name": "Sava Lolov", "character": "Belle \u00c9poque Couple", "id": 32515, "credit_id": "52fe4990c3a36847f81a0c19", "cast_id": 31, "profile_path": "/xVQWPAX2vaowIC4dfcNZC9ZvNb4.jpg", "order": 34}, {"name": "Karine Vanasse", "character": "Belle \u00c9poque Couple", "id": 81418, "credit_id": "52fe4990c3a36847f81a0c1d", "cast_id": 32, "profile_path": "/qHlf3tUuamBdagrmpNMh7zDg5JO.jpg", "order": 35}, {"name": "Catherine Benguigui", "character": "Maxim's Hostess", "id": 220582, "credit_id": "52fe4990c3a36847f81a0c21", "cast_id": 33, "profile_path": "/fFtijqi9D3E77DjywvfTIWwaRvX.jpg", "order": 36}, {"name": "Vincent Menjou Cortes", "character": "Henri de Toulouse-Lautrec", "id": 1151456, "credit_id": "52fe4990c3a36847f81a0c29", "cast_id": 35, "profile_path": "/mxPw2JWWnykT4kezn4BjcbNimSq.jpg", "order": 37}, {"name": "Olivier Rabourdin", "character": "Paul Gauguin", "id": 49278, "credit_id": "52fe4990c3a36847f81a0be1", "cast_id": 17, "profile_path": "/6txdehoOPpGllEsU31WnBkvgRJa.jpg", "order": 38}, {"name": "Fran\u00e7ois Rostain", "character": "Edgar Degas", "id": 1151454, "credit_id": "52fe4990c3a36847f81a0c15", "cast_id": 30, "profile_path": "/jeJ8McTsfh9pgyaHQ0HGroJ1X8o.jpg", "order": 39}, {"name": "Marianne Basler", "character": "Versailles Royalty", "id": 15481, "credit_id": "52fe4990c3a36847f81a0c45", "cast_id": 42, "profile_path": "/7o0p5kukWtfkp4sxfKwVQaPI778.jpg", "order": 40}, {"name": "Michel Vuillermoz", "character": "Versailles Royalty", "id": 20082, "credit_id": "52fe4990c3a36847f81a0c49", "cast_id": 43, "profile_path": "/lLiG1CRAeTlakncRBweT78JGZ6Y.jpg", "order": 41}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe4990c3a36847f81a0b9d", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 7.1, "runtime": 94}, "1979": {"poster_path": "/fXpziQgnBnB4bLgjKhjTbLQumE5.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 289047763, "overview": "The Fantastic Four return to the big screen as a new and all powerful enemy threatens the Earth. The seemingly unstoppable 'Silver Surfer', but all is not what it seems and there are old and new enemies that pose a greater threat than the intrepid superheroes realize.", "video": false, "id": 1979, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Fantastic 4: Rise of the Silver Surfer", "tagline": "Discover the secret of the Surfer.", "vote_count": 943, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3JFe9AWoKuQWox7HO8HKgYRMOF7.jpg", "poster_path": "/prObnUSCHIBC8ZjkGo2KHgjkWOo.jpg", "id": 9744, "name": "Fantastic Four Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0486576", "adult": false, "backdrop_path": "/nq60mZOlrD4mZJg1T4hHUtWTIkN.jpg", "production_companies": [{"name": "Ingenious Film Partners", "id": 289}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "1492 Pictures", "id": 436}, {"name": "Dune Entertainment", "id": 444}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Bernd Eichinger Productions", "id": 10881}], "release_date": "2007-06-14", "popularity": 1.67831692178212, "original_title": "4: Rise of the Silver Surfer", "budget": 130000000, "cast": [{"name": "Ioan Gruffudd", "character": "Reed Richards / Mr. Fantastic", "id": 65524, "credit_id": "52fe4328c3a36847f803eacb", "cast_id": 7, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sue Richards / Invisible Woman", "id": 56731, "credit_id": "52fe4328c3a36847f803eacf", "cast_id": 8, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Chris Evans", "character": "Johnny Storm / Human Torch", "id": 16828, "credit_id": "52fe4328c3a36847f803ead3", "cast_id": 9, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Ben Grimm / The Thing", "id": 19654, "credit_id": "52fe4328c3a36847f803ead7", "cast_id": 10, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Doug Jones", "character": "Norrin Radd / Silver Surfer", "id": 17005, "credit_id": "52fe4328c3a36847f803eadb", "cast_id": 11, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 4}, {"name": "Laurence Fishburne", "character": "Silver Surfer (voice)", "id": 2975, "credit_id": "52fe4328c3a36847f803eadf", "cast_id": 12, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 5}, {"name": "Julian McMahon", "character": "Victor von Doom / Doctor Doom", "id": 20402, "credit_id": "52fe4328c3a36847f803eae3", "cast_id": 13, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 6}, {"name": "Kerry Washington", "character": "Alicia Masters", "id": 11703, "credit_id": "52fe4328c3a36847f803eae7", "cast_id": 14, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 7}, {"name": "Beau Garrett", "character": "Frankie Raye", "id": 20403, "credit_id": "52fe4328c3a36847f803eaeb", "cast_id": 15, "profile_path": "/eSnhComJ12wMk4PoMNpuoz7bTKO.jpg", "order": 8}, {"name": "Vanessa Lachey", "character": "Julie Angel", "id": 20404, "credit_id": "52fe4328c3a36847f803eaef", "cast_id": 16, "profile_path": "/pS4nxWDSwimJz1yobwhgtFQ1u0M.jpg", "order": 9}, {"name": "Andre Braugher", "character": "General Hager", "id": 6861, "credit_id": "52fe4328c3a36847f803eaf3", "cast_id": 17, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 10}, {"name": "Stan Lee", "character": "himself", "id": 7624, "credit_id": "52fe4328c3a36847f803eaf7", "cast_id": 18, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 11}, {"name": "Brian Posehn", "character": "Priest", "id": 20405, "credit_id": "52fe4328c3a36847f803eafb", "cast_id": 19, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 12}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4328c3a36847f803eb25", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 5.4, "runtime": 92}, "59440": {"poster_path": "/qzeShckQ34eJJFQ24dTx9QI8kcS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23, "overview": "An ex-Marine haunted by a tragic past, Tommy Riordan (Tom Hardy) returns to his hometown of Pittsburgh and enlists his father (Nick Nolte), a recovering alcoholic and his former coach, to train him for an MMA tournament awarding the biggest purse in the history of the sport. As Tommy blazes a violent path toward the title prize, his brother Brendan (Joel Edgerton), a former MMA fighter unable to make ends meet as a public school teacher, returns to the amateur ring to provide for his family. Even though years have passed, recriminations and past betrayals keep Brendan bitterly estranged from both Tommy and his father. But when Brendan's unlikely rise as an underdog sets him on a collision course with Tommy, the two brothers must finally confront the forces that tore them apart, all the while waging the most intense winner-take-all battle of their lives.", "video": false, "id": 59440, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Warrior", "tagline": "Fight for Family", "vote_count": 347, "homepage": "http://www.warriorfilm.com/index2.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1291584", "adult": false, "backdrop_path": "/t3Y0rPTraupA90fo8o5g64FiuCC.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Mimran Schur Pictures", "id": 6573}, {"name": "Solaris Film", "id": 1001}, {"name": "Filmtribe", "id": 12425}], "release_date": "2011-09-09", "popularity": 1.63877614773058, "original_title": "Warrior", "budget": 30000000, "cast": [{"name": "Tom Hardy", "character": "Tom Conlon", "id": 2524, "credit_id": "52fe4990c3a36847f81a0d8d", "cast_id": 3, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Jennifer Morrison", "character": "Tess Conlon", "id": 41421, "credit_id": "52fe4990c3a36847f81a0d91", "cast_id": 4, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Paddy Conlon", "id": 1733, "credit_id": "52fe4990c3a36847f81a0d95", "cast_id": 5, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Brendan Conlon", "id": 33192, "credit_id": "52fe4990c3a36847f81a0d99", "cast_id": 6, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Frank Grillo", "character": "Frank Campana", "id": 81685, "credit_id": "52fe4990c3a36847f81a0da3", "cast_id": 8, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 4}, {"name": "Kevin Dunn", "character": "Principal Zito", "id": 14721, "credit_id": "52fe4990c3a36847f81a0da7", "cast_id": 10, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 5}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Colt Boyd", "id": 1018947, "credit_id": "52fe4990c3a36847f81a0dab", "cast_id": 11, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 6}, {"name": "Bryan Callen", "character": "Himself", "id": 78320, "credit_id": "52fe4990c3a36847f81a0e2d", "cast_id": 33, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 7}, {"name": "Sam Sheridan", "character": "Himself", "id": 972459, "credit_id": "52fe4990c3a36847f81a0e31", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Jake McLaughlin", "character": "Mark Bradford", "id": 51683, "credit_id": "52fe4990c3a36847f81a0e35", "cast_id": 35, "profile_path": "/ocDxrwFDqbDmkpmgXpwpwdSzl7T.jpg", "order": 9}, {"name": "Vanessa Martinez", "character": "Pilar Fernandez", "id": 235782, "credit_id": "52fe4990c3a36847f81a0e39", "cast_id": 36, "profile_path": "/dCMompNhK7IwLtVs6dVAjOeOzxL.jpg", "order": 10}, {"name": "Denzel Whitaker", "character": "Stephon", "id": 77278, "credit_id": "52fe4991c3a36847f81a0e3d", "cast_id": 37, "profile_path": "/yN4ZZDDDJI2UoKVI1BlIWwd5mp8.jpg", "order": 11}, {"name": "Carlos Miranda", "character": "Tito", "id": 39007, "credit_id": "52fe4991c3a36847f81a0e41", "cast_id": 38, "profile_path": "/4AaU3V2VYU9SLZpt11Mv7BONbgG.jpg", "order": 12}, {"name": "Nick Lehane", "character": "Nash", "id": 1130135, "credit_id": "52fe4991c3a36847f81a0e45", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Laura Chinn", "character": "KC", "id": 225622, "credit_id": "52fe4991c3a36847f81a0e49", "cast_id": 40, "profile_path": null, "order": 14}], "directors": [{"name": "Gavin O'Connor", "department": "Directing", "job": "Director", "credit_id": "52fe4990c3a36847f81a0d83", "profile_path": "/ySCeCte0VOVT9jWft6TwBKGU9KM.jpg", "id": 77003}], "vote_average": 7.6, "runtime": 140}, "44040": {"poster_path": "/m54c0mMcsQfNcRk2As2qH8Y5DQG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33583175, "overview": "A group of people trapped in a elevator realize that the devil is among them.", "video": false, "id": 44040, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Devil", "tagline": "Bad Things Happen For A Reason", "vote_count": 209, "homepage": "http://www.thenightchronicles.com/devil/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}], "imdb_id": "tt1314655", "adult": false, "backdrop_path": "/3sbWB2s3AHmxUamnuwKKeYVFicx.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Night Chronicles", "id": 6006}, {"name": "Relativity Media", "id": 7295}], "release_date": "2010-09-17", "popularity": 0.44017997550948, "original_title": "Devil", "budget": 10000000, "cast": [{"name": "Chris Messina", "character": "Detective Bowden", "id": 61659, "credit_id": "52fe4673c3a36847f80ffbe9", "cast_id": 8, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 0}, {"name": "Jacob Vargas", "character": "Ramirez", "id": 16429, "credit_id": "52fe4673c3a36847f80ffbf5", "cast_id": 11, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 1}, {"name": "Bojana Novakovi\u0107", "character": "Young Woman", "id": 81682, "credit_id": "52fe4673c3a36847f80ffc25", "cast_id": 23, "profile_path": "/huxuKuGq26pHRE6nO0WJu3aS0hU.jpg", "order": 2}, {"name": "Logan Marshall-Green", "character": "Mechanic", "id": 130253, "credit_id": "52fe4673c3a36847f80ffc21", "cast_id": 22, "profile_path": "/bLVRAvM9WnTVQ42Nm4jVR0IpOIk.jpg", "order": 3}, {"name": "Bokeem Woodbine", "character": "Guard", "id": 71913, "credit_id": "52fe4673c3a36847f80ffbf1", "cast_id": 10, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 4}, {"name": "Matt Craven", "character": "Lustig", "id": 13525, "credit_id": "52fe4673c3a36847f80ffbf9", "cast_id": 12, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 6}, {"name": "Joshua Peace", "character": "Detective Markowitz", "id": 5925, "credit_id": "52fe4673c3a36847f80ffbfd", "cast_id": 13, "profile_path": "/C5xx4dU6NtB7vzoX9Ho6p7CgOb.jpg", "order": 7}, {"name": "Caroline Dhavernas", "character": "Elsa Nahai", "id": 31383, "credit_id": "52fe4673c3a36847f80ffc01", "cast_id": 14, "profile_path": "/nLj1IbeBb3aYPcfJKMuE0JHzhcy.jpg", "order": 8}, {"name": "Zoie Palmer", "character": "Cheryl", "id": 133252, "credit_id": "52fe4673c3a36847f80ffc09", "cast_id": 16, "profile_path": "/nmBoKoXnCII4ShanCzEWuHNnvNK.jpg", "order": 9}, {"name": "Vincent Laresca", "character": "Henry", "id": 1983, "credit_id": "52fe4673c3a36847f80ffc0d", "cast_id": 17, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 10}, {"name": "Jenny O'Hara", "character": "Old Woman", "id": 4734, "credit_id": "52fe4673c3a36847f80ffbed", "cast_id": 9, "profile_path": "/yyr6dyBOP1BQedXbQ3RDsvoLicb.jpg", "order": 11}, {"name": "Joe Cobden", "character": "Dwight", "id": 51389, "credit_id": "52fe4673c3a36847f80ffc05", "cast_id": 15, "profile_path": "/kTf7OtOY1qBPmEbc4Kky9uMN58K.jpg", "order": 12}, {"name": "Rudy Webb", "character": "Old Janitor", "id": 133253, "credit_id": "52fe4673c3a36847f80ffc11", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Craig Eldridge", "character": "Donnelly", "id": 133254, "credit_id": "52fe4673c3a36847f80ffc15", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Robert Lee", "character": "Chinese Man", "id": 133255, "credit_id": "52fe4673c3a36847f80ffc19", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Geoffrey Arend", "character": "Salesman", "id": 5375, "credit_id": "52fe4673c3a36847f80ffc1d", "cast_id": 21, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 15}], "directors": [{"name": "John Erick Dowdle", "department": "Directing", "job": "Director", "credit_id": "52fe4673c3a36847f80ffbdf", "profile_path": null, "id": 77147}], "vote_average": 5.7, "runtime": 80}, "100402": {"poster_path": "/pH4oeiZAh9a40tly4D0l6aAB3ms.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 714766572, "overview": "After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemy\u2014the Winter Soldier.", "video": false, "id": 100402, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Captain America: The Winter Soldier", "tagline": "In heroes we trust.", "vote_count": 1762, "homepage": "http://www.captainamericathewintersoldiermovie.com", "belongs_to_collection": {"backdrop_path": "/g8rel9GDznWJkt4rxMO2HIrNuEo.jpg", "poster_path": "/r14U0p13M99ccWhMg0wHprp8TQi.jpg", "id": 131295, "name": "Captain America Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1843866", "adult": false, "backdrop_path": "/4qfXT9BtxeFuamR4F49m2mpKQI1.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2014-04-04", "popularity": 7.04996504285238, "original_title": "Captain America: The Winter Soldier", "budget": 170000000, "cast": [{"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe49d8c3a36847f81a957d", "cast_id": 1, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe49d8c3a36847f81a959d", "cast_id": 8, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Sebastian Stan", "character": "James Buchanan 'Bucky' Barnes / The Winter Soldier", "id": 60898, "credit_id": "52fe49d8c3a36847f81a9585", "cast_id": 3, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe49d8c3a36847f81a9581", "cast_id": 2, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Robert Redford", "character": "Alexander Pierce", "id": 4135, "credit_id": "52fe49d8c3a36847f81a95bb", "cast_id": 15, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 4}, {"name": "Anthony Mackie", "character": "Sam Wilson / Falcon", "id": 53650, "credit_id": "52fe49d8c3a36847f81a9589", "cast_id": 4, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 5}, {"name": "Cobie Smulders", "character": "Maria Hill", "id": 71189, "credit_id": "52fe49d8c3a36847f81a95a1", "cast_id": 9, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 6}, {"name": "Frank Grillo", "character": "Brock Rumlow / Crossbones", "id": 81685, "credit_id": "52fe49d8c3a36847f81a9599", "cast_id": 7, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 7}, {"name": "Emily VanCamp", "character": "Sharon Carter", "id": 84247, "credit_id": "52fe49d8c3a36847f81a95a9", "cast_id": 11, "profile_path": "/2nBBndedoyJvuDaUwZ1nNgip6Tn.jpg", "order": 8}, {"name": "Toby Jones", "character": "Arnim Zola", "id": 13014, "credit_id": "52fe49d8c3a36847f81a95a5", "cast_id": 10, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 9}, {"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "52fe49d8c3a36847f81a95ad", "cast_id": 12, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 10}, {"name": "Georges St. Pierre", "character": "Batroc the Leaper", "id": 74750, "credit_id": "52fe49d8c3a36847f81a95b7", "cast_id": 14, "profile_path": "/fwY38OK6iTrAPZWV8ZTNJUYkUgI.jpg", "order": 11}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Agent Jasper Sitwell", "id": 1018947, "credit_id": "52fe49d8c3a36847f81a95cb", "cast_id": 18, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 12}, {"name": "Alan Dale", "character": "World Security Council member", "id": 52760, "credit_id": "52fe49d8c3a36847f81a95d5", "cast_id": 20, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 13}, {"name": "Stan Lee", "character": "Security Guard", "id": 7624, "credit_id": "52fe49d8c3a36847f81a95d9", "cast_id": 21, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 14}, {"name": "Jenny Agutter", "character": "Councilwoman Hawley", "id": 14464, "credit_id": "5346fe75c3a3682f0400198a", "cast_id": 22, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 15}, {"name": "Garry Shandling", "character": "Senator Stern", "id": 52865, "credit_id": "5346fe83c3a3682f19001941", "cast_id": 23, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 16}, {"name": "Danny Pudi", "character": "Com Tech #1", "id": 205179, "credit_id": "5346fea1c3a3682f26001a55", "cast_id": 24, "profile_path": "/tQePBWCu70VyqBWZNQBHFFV09E9.jpg", "order": 17}, {"name": "Chin Han", "character": "Councilman Yen", "id": 101015, "credit_id": "53d65bd0c3a3686b9a0058cd", "cast_id": 25, "profile_path": "/xvMCVDvrQ2WlAB2LmkG6HAzlYag.jpg", "order": 18}, {"name": "Bernard White", "character": "Councilman Singh", "id": 156739, "credit_id": "53f701980e0a267f7a007402", "cast_id": 55, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 19}, {"name": "Pat Healy", "character": "Scientist #1", "id": 60846, "credit_id": "5404197a0e0a2658db00962a", "cast_id": 56, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 20}, {"name": "Callan Mulvey", "character": "Jack Rollins", "id": 208296, "credit_id": "552a89bc925141323600248f", "cast_id": 63, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 21}, {"name": "Branka Kati\u0107", "character": "Renata", "id": 15268, "credit_id": "550c9b65c3a36848830043ba", "cast_id": 58, "profile_path": "/6dtxxJyeGL5kHpUEeshDfe3T4wB.jpg", "order": 22}, {"name": "Elizabeth Olsen", "character": "Wanda Maximoff / Scarlet Witch (uncredited)", "id": 550843, "credit_id": "552a8909c3a368596e0038c5", "cast_id": 59, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 23}, {"name": "Aaron Taylor-Johnson", "character": "Pietro Maximoff / Quicksilver (uncredited)", "id": 27428, "credit_id": "552a8922c3a3681f5c00447e", "cast_id": 60, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 24}, {"name": "Thomas Kretschmann", "character": "Baron Wolfgang von Strucker (uncredited)", "id": 3491, "credit_id": "552a894ac3a3681f5c004483", "cast_id": 61, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 25}, {"name": "Henry Goodman", "character": "Dr. List (uncredited)", "id": 7030, "credit_id": "552a896bc3a36859cf00425e", "cast_id": 62, "profile_path": "/6aubyjy4zS8CCGEbWuHp8QgMhJv.jpg", "order": 26}], "directors": [{"name": "Joe Russo", "department": "Directing", "job": "Director", "credit_id": "52fe49d8c3a36847f81a958f", "profile_path": "/5bMVczVDqLJFpfLQZhQ4hhwkSQD.jpg", "id": 19272}, {"name": "Anthony Russo", "department": "Directing", "job": "Director", "credit_id": "52fe49d8c3a36847f81a9595", "profile_path": "/mwokQ8u2RgeFRkDUtcNctTgd8bg.jpg", "id": 19271}], "vote_average": 7.7, "runtime": 136}, "222899": {"poster_path": "/scGmWVpSt0Yaanwuxe1IvA5lZRG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49002684, "overview": "A modern reimagining of the classic romantic comedy, this contemporary version closely follows new love for two couples as they journey from the bar to the bedroom and are eventually put to the test in the real world.", "video": false, "id": 222899, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "About Last Night", "tagline": "It's about compromise. It's about love. It's about a good wingman.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1826590", "adult": false, "backdrop_path": "/1wyFgywBCCSnniSOHLlIZijNcty.jpg", "production_companies": [{"name": "Screen Gems, Inc.", "id": 127}, {"name": "Olive Bridge Entertainment", "id": 7291}, {"name": "Rainforest Films", "id": 1309}], "release_date": "2014-02-14", "popularity": 0.926296382242476, "original_title": "About Last Night", "budget": 12500000, "cast": [{"name": "Kevin Hart", "character": "Bernie", "id": 55638, "credit_id": "52fe4e009251416c7514811f", "cast_id": 4, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 0}, {"name": "Michael Ealy", "character": "Danny", "id": 8177, "credit_id": "52fe4e009251416c75148123", "cast_id": 5, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 1}, {"name": "Regina Hall", "character": "Joan", "id": 35705, "credit_id": "52fe4e009251416c7514812b", "cast_id": 7, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 2}, {"name": "Joy Bryant", "character": "Debbie", "id": 52847, "credit_id": "52fe4e009251416c75148127", "cast_id": 6, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 3}, {"name": "Christopher McDonald", "character": "Casey McNeil", "id": 4443, "credit_id": "52fe4e009251416c7514813b", "cast_id": 13, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 4}, {"name": "Paula Patton", "character": "Alison", "id": 52851, "credit_id": "52fe4e009251416c7514811b", "cast_id": 3, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 5}, {"name": "Adam Rodr\u00edguez", "character": "Steven Thaler", "id": 49706, "credit_id": "52fe4e009251416c7514813f", "cast_id": 14, "profile_path": "/jMBghQKSROfpN2wZ5usK019DA2G.jpg", "order": 6}, {"name": "Jovanny Venegas", "character": "DJ", "id": 1277549, "credit_id": "52fe4e009251416c75148143", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Joe Lo Truglio", "character": "Ryan Keller", "id": 21131, "credit_id": "52fe4e009251416c7514814d", "cast_id": 17, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Terrell Owens", "character": "Himself", "id": 214729, "credit_id": "52fe4e009251416c75148151", "cast_id": 18, "profile_path": "/clai68fZEYFB3PtO1WbO7JjcpaE.jpg", "order": 9}, {"name": "Jessica Lu", "character": "Ad Executive", "id": 1254925, "credit_id": "531682b99251412ccd00054f", "cast_id": 19, "profile_path": "/c4fhDtv7PqTTmzKnXMiUnbyeUuQ.jpg", "order": 10}, {"name": "Selita Ebanks", "character": "Pretty Lady", "id": 139844, "credit_id": "54a49731c3a3682f21013122", "cast_id": 20, "profile_path": "/ibmXm0ZOesWCWZugAtrrmm8Elv1.jpg", "order": 11}], "directors": [{"name": "Steve Pink", "department": "Directing", "job": "Director", "credit_id": "52fe4e009251416c75148111", "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "id": 3227}], "vote_average": 6.1, "runtime": 100}, "2100": {"poster_path": "/tfbZvbK3mVNcgsYwC0Npj96GRux.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27642707, "overview": "A Court Martialed general rallies together 1200 inmates to rise against the system that put him away.", "video": false, "id": 2100, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Last Castle", "tagline": "A Castle Can Only Have One King", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0272020", "adult": false, "backdrop_path": "/kicduIe2pMRsLYZf3ZTn98uZyC7.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2001-10-19", "popularity": 0.591890040250744, "original_title": "The Last Castle", "budget": 72000000, "cast": [{"name": "Robert Redford", "character": "Lt. Gen. Eugene Irwin", "id": 4135, "credit_id": "52fe4335c3a36847f80429e9", "cast_id": 16, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "James Gandolfini", "character": "Col. Winter", "id": 4691, "credit_id": "52fe4335c3a36847f80429ed", "cast_id": 17, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Yates", "id": 103, "credit_id": "52fe4335c3a36847f80429f1", "cast_id": 18, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Steve Burton", "character": "Cap. Peretz", "id": 21530, "credit_id": "52fe4335c3a36847f80429f5", "cast_id": 19, "profile_path": "/9MBX4Ld0GCa9Ko4fXdtsAvFxM73.jpg", "order": 3}, {"name": "Delroy Lindo", "character": "Gen. Wheeler", "id": 18792, "credit_id": "52fe4335c3a36847f80429f9", "cast_id": 20, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 4}, {"name": "Paul Calderon", "character": "Dellwo", "id": 3137, "credit_id": "52fe4335c3a36847f80429fd", "cast_id": 21, "profile_path": "/uS3RyQ6QWr5P6bwHDJWc4UeTnvG.jpg", "order": 5}, {"name": "Samuel Ball", "character": "Duffy", "id": 21532, "credit_id": "52fe4335c3a36847f8042a01", "cast_id": 22, "profile_path": "/knII4e66jnaGEdVpVjFEJrFgSeU.jpg", "order": 6}, {"name": "Jeremy Childs", "character": "Cutbush", "id": 21533, "credit_id": "52fe4335c3a36847f8042a05", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "George W. Scott", "character": "Thumper", "id": 21535, "credit_id": "52fe4335c3a36847f8042a09", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Clifton Collins, Jr.", "character": "Cp. Ramov Aguilar", "id": 5365, "credit_id": "52fe4335c3a36847f8042a0d", "cast_id": 25, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 9}], "directors": [{"name": "Rod Lurie", "department": "Directing", "job": "Director", "credit_id": "52fe4335c3a36847f8042991", "profile_path": "/cMHBVZ7siplx5RlbW6OscBTwbId.jpg", "id": 21526}], "vote_average": 7.0, "runtime": 131}, "10294": {"poster_path": "/wZjZkzHdePRg0iaFAfVxLwXINhR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young married couple becomes stranded at an isolated motel and find hidden video cameras in their room. They realize that unless they escape, they'll be the next victims of a snuff film.", "video": false, "id": 10294, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Vacancy", "tagline": "Once you've checked in... The terror begins.", "vote_count": 75, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wDLo8s0HEd1ci5980gpk3GoD2DL.jpg", "id": 86112, "name": "Vacancy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452702", "adult": false, "backdrop_path": "/n2ayb7ko6OpKTqgsAmWROoDgB9b.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Hal Lieberman Company", "id": 23890}], "release_date": "2007-04-20", "popularity": 0.73333129804015, "original_title": "Vacancy", "budget": 19000000, "cast": [{"name": "Kate Beckinsale", "character": "Amy Fox", "id": 3967, "credit_id": "52fe43549251416c7500c2d3", "cast_id": 1, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Luke Wilson", "character": "David Fox", "id": 36422, "credit_id": "52fe43549251416c7500c2d7", "cast_id": 2, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Ethan Embry", "character": "Mechanic", "id": 58019, "credit_id": "52fe43549251416c7500c2db", "cast_id": 3, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 2}, {"name": "Scott G. Anderson", "character": "Killer", "id": 8549, "credit_id": "52fe43549251416c7500c2df", "cast_id": 4, "profile_path": "/7F1Tj6ORbCUtXCBnKJ0nCf0bOY2.jpg", "order": 3}, {"name": "Frank Whaley", "character": "Mason", "id": 11805, "credit_id": "52fe43549251416c7500c30d", "cast_id": 12, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 4}, {"name": "Mark Casella", "character": "Le routier", "id": 163838, "credit_id": "52fe43549251416c7500c311", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "David Doty", "character": "L'agent de Police", "id": 124086, "credit_id": "52fe43549251416c7500c315", "cast_id": 14, "profile_path": null, "order": 6}], "directors": [{"name": "Nimr\u00f3d Antal", "department": "Directing", "job": "Director", "credit_id": "52fe43549251416c7500c2e5", "profile_path": "/rI5DZmGXhZcNYaREK9vy2khqm1o.jpg", "id": 41671}], "vote_average": 5.8, "runtime": 80}, "2103": {"poster_path": "/rKM78gDXAwtH9f63VcR7KTMnXEB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30002758, "overview": "Upon arrival at the space station orbiting an ocean world called Solaris a psychologist discovers that the commander of an expedition to the planet has died mysteriously. Other strange events soon start happening as well, such as the appearance of old acquaintances of the crew, including some who are dead.", "video": false, "id": 2103, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Solaris", "tagline": "How far will you go for a second chance?", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307479", "adult": false, "backdrop_path": "/ulF7FPcs6Z4PiNkLf0RMn1FTpvE.jpg", "production_companies": [{"name": "Lightstorm Entertainment", "id": 574}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2002-11-27", "popularity": 0.503284566038284, "original_title": "Solaris", "budget": 47000000, "cast": [{"name": "George Clooney", "character": "Chris Kelvin", "id": 1461, "credit_id": "52fe4336c3a36847f8042b8d", "cast_id": 14, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Natascha McElhone", "character": "Rheya", "id": 11317, "credit_id": "52fe4336c3a36847f8042b91", "cast_id": 15, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 1}, {"name": "Viola Davis", "character": "Gordon", "id": 19492, "credit_id": "52fe4336c3a36847f8042b95", "cast_id": 16, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 2}, {"name": "Jeremy Davies", "character": "Snow", "id": 4654, "credit_id": "52fe4336c3a36847f8042b99", "cast_id": 17, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 3}, {"name": "Ulrich Tukur", "character": "Gibarian", "id": 8198, "credit_id": "52fe4336c3a36847f8042b9d", "cast_id": 18, "profile_path": "/assJYvivgfukHFWim6o9T3sUmu9.jpg", "order": 4}, {"name": "Michael Ensign", "character": "Friend", "id": 1080265, "credit_id": "52fe4336c3a36847f8042ba1", "cast_id": 20, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 5}, {"name": "John Cho", "character": "DBA Emissary", "id": 68842, "credit_id": "547f496892514166be000055", "cast_id": 26, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 6}, {"name": "Morgan Rusler", "character": "DBA Emissary", "id": 155295, "credit_id": "547f498092514166bc000057", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Shane Skelton", "character": "Gibarian's Son", "id": 1393682, "credit_id": "547f49dd92514166cb000057", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Donna Kimball", "character": "Mrs. Gibarian", "id": 1247688, "credit_id": "547f4a0cc3a368796100006d", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Elpidia Carrillo", "character": "Friend", "id": 1102, "credit_id": "547f4a1fc3a3687964000078", "cast_id": 30, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 10}, {"name": "Kent Faulcon", "character": "Patient", "id": 9634, "credit_id": "547f4a3592514166cb000065", "cast_id": 31, "profile_path": "/oOKr7nJJwpGNrPijma1MhhkDRPv.jpg", "order": 11}, {"name": "Lauren Cohn", "character": "Patient", "id": 41506, "credit_id": "547f4a48c3a368795e000073", "cast_id": 32, "profile_path": null, "order": 12}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042b4d", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.3, "runtime": 99}, "2105": {"poster_path": "/dxkSApFLkKkcEQgjCH2KPwTHvw4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 235483004, "overview": "At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to try to be the first to \"score.\" And of course, the senior prom is their last best chance. As the fateful date draws near, the boys wonder who among them will get lucky.", "video": false, "id": 2105, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "American Pie", "tagline": "There's nothing like your first piece.", "vote_count": 802, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0163651", "adult": false, "backdrop_path": "/jlU4FvYxUXaxyYM0worlD7wHdQj.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Newmarket Capital Group", "id": 506}], "release_date": "1999-07-09", "popularity": 2.2251440895484, "original_title": "American Pie", "budget": 11000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe4336c3a36847f8042cb7", "cast_id": 16, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Chris Klein", "character": "Chris 'Oz' Ostreicher", "id": 21594, "credit_id": "52fe4336c3a36847f8042cbb", "cast_id": 17, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 1}, {"name": "Thomas Ian Nicholas", "character": "Kevin Meyers", "id": 21403, "credit_id": "52fe4336c3a36847f8042cbf", "cast_id": 18, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 2}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty", "id": 21595, "credit_id": "52fe4336c3a36847f8042cc3", "cast_id": 19, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 3}, {"name": "Shannon Elizabeth", "character": "Nadia", "id": 21596, "credit_id": "52fe4336c3a36847f8042cc7", "cast_id": 20, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 4}, {"name": "Tara Reid", "character": "Victoria 'Vicky' Lathum", "id": 1234, "credit_id": "52fe4336c3a36847f8042ccb", "cast_id": 21, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 5}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe4336c3a36847f8042cdf", "cast_id": 27, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 6}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe4336c3a36847f8042ccf", "cast_id": 23, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 7}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe4336c3a36847f8042cd7", "cast_id": 25, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 8}, {"name": "Natasha Lyonne", "character": "Jessica", "id": 10871, "credit_id": "52fe4336c3a36847f8042ce3", "cast_id": 28, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 9}, {"name": "Mena Suvari", "character": "Heather", "id": 8211, "credit_id": "52fe4336c3a36847f8042cdb", "cast_id": 26, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 10}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "52fe4336c3a36847f8042cd3", "cast_id": 24, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 11}, {"name": "Chris Owen", "character": "Chuck Sherman", "id": 26999, "credit_id": "52fe4336c3a36847f8042ce7", "cast_id": 29, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 12}, {"name": "Eric Lively", "character": "Albert", "id": 53116, "credit_id": "53bc249a0e0a26196b003158", "cast_id": 31, "profile_path": "/wEl6qozyL6UrjsNcMmAG2T2r9n0.jpg", "order": 13}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "53bc24bb0e0a26196e003189", "cast_id": 32, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 14}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "53bc2b30c3a368661e00268c", "cast_id": 33, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 15}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc2b48c3a36866280025ce", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Eli Marienthal", "character": "Matt Stifler", "id": 116027, "credit_id": "53bc2b6ec3a368661e002691", "cast_id": 35, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 17}, {"name": "Casey Affleck", "character": "Tom Myers", "id": 1893, "credit_id": "53bc2bca0e0a26198400334f", "cast_id": 36, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 18}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042c6b", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}, {"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042c71", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}], "vote_average": 6.3, "runtime": 95}, "209247": {"poster_path": "/cKR7yXINpyt38PoJCzuodNocNiO.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 64065, "overview": "Crunch Calhoun, a third-rate motorcycle daredevil and part-time art thief, teams up with his snaky brother to steal one of the most valuable books in the world. But it's not just about the book for Crunch \u2014 he's keen to rewrite some chapters of his own past as well.", "video": false, "id": 209247, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Art of the Steal", "tagline": "It takes a great artist to pull off the perfect con", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2172985", "adult": false, "backdrop_path": "/4mErncWN6TrLujvTQlbkfW9HNzp.jpg", "production_companies": [{"name": "Sony Pictures", "id": 34}, {"name": "Darius Films", "id": 5486}, {"name": "Entertainment One", "id": 8147}], "release_date": "2013-10-01", "popularity": 1.11955024255449, "original_title": "The Art of the Steal", "budget": 0, "cast": [{"name": "Kurt Russell", "character": "Crunch Calhoun", "id": 6856, "credit_id": "52fe4d5fc3a368484e1e5979", "cast_id": 3, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Matt Dillon", "character": "Nicky Calhoun", "id": 2876, "credit_id": "52fe4d5fc3a368484e1e5981", "cast_id": 5, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 1}, {"name": "Jay Baruchel", "character": "Francie", "id": 449, "credit_id": "52fe4d5fc3a368484e1e597d", "cast_id": 4, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 2}, {"name": "Kenneth Welsh", "character": "'Uncle' Paddy MacCarthy", "id": 6074, "credit_id": "552d867392514107a0001aed", "cast_id": 23, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 3}, {"name": "Chris Diamantopoulos", "character": "Guy de Cornet", "id": 1217648, "credit_id": "52fe4d5fc3a368484e1e5991", "cast_id": 9, "profile_path": "/fd9RKydcraURoZnsy0EDzwVyP80.jpg", "order": 4}, {"name": "Katheryn Winnick", "character": "Lola", "id": 26723, "credit_id": "52fe4d5fc3a368484e1e5985", "cast_id": 6, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 5}, {"name": "Jason Jones", "character": "Interpol Agent Bick", "id": 185805, "credit_id": "531f500ec3a3685c3d009bf8", "cast_id": 10, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 6}, {"name": "Terence Stamp", "character": "Samuel Winter", "id": 28641, "credit_id": "52fe4d5fc3a368484e1e5989", "cast_id": 7, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 7}, {"name": "Devon Bostick", "character": "Ponch", "id": 90498, "credit_id": "52fe4d5fc3a368484e1e598d", "cast_id": 8, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 8}, {"name": "Karyn Dwyer", "character": "Ginger", "id": 104151, "credit_id": "531f5019c3a3685baa00265f", "cast_id": 11, "profile_path": "/tokDjZqdkM3k5ngsqjM6biuOIQO.jpg", "order": 9}, {"name": "Joe Pingue", "character": "Carmen", "id": 86237, "credit_id": "531f5025c3a3685baa002661", "cast_id": 12, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Stephen McHattie", "character": "Dirty Ernie", "id": 230, "credit_id": "531f5032c3a3685c56009d96", "cast_id": 13, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 11}, {"name": "Eugene Lipinski", "character": "Bartkowiak", "id": 28871, "credit_id": "552d0335c3a3687941001fd4", "cast_id": 22, "profile_path": "/rhpOJsibsqA4SG71GcH0LMfnygd.jpg", "order": 12}], "directors": [{"name": "Jonathan Sobol", "department": "Directing", "job": "Director", "credit_id": "52fe4d5fc3a368484e1e596f", "profile_path": null, "id": 1041418}], "vote_average": 6.2, "runtime": 90}, "2108": {"poster_path": "/4ZejrrCpfoypR5lHoT3pq6yVldW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45875171, "overview": "Five high school students, all different stereotypes, meet in detention, where they pour their hearts out to each other, and discover how they have a lot more in common than they thought.", "video": false, "id": 2108, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Breakfast Club", "tagline": "They only met once, but it changed their lives forever.", "vote_count": 376, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088847", "adult": false, "backdrop_path": "/tUSXZ37j0XpNtmOb5uwqogdcq7E.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "A&M Films", "id": 11043}, {"name": "Channel Productions", "id": 8812}], "release_date": "1985-02-15", "popularity": 2.49445934498517, "original_title": "The Breakfast Club", "budget": 1000000, "cast": [{"name": "Emilio Estevez", "character": "Andrew \"Andy\" Clark", "id": 2880, "credit_id": "52fe4336c3a36847f8042e55", "cast_id": 3, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 0}, {"name": "Anthony Michael Hall", "character": "Brian Ralph Johnson", "id": 1904, "credit_id": "52fe4336c3a36847f8042e59", "cast_id": 4, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 1}, {"name": "Judd Nelson", "character": "John Bender", "id": 21624, "credit_id": "52fe4336c3a36847f8042e4d", "cast_id": 1, "profile_path": "/6mwumgsKDEYy0F9GVdfw8TsNDHL.jpg", "order": 2}, {"name": "Molly Ringwald", "character": "Claire Standish", "id": 21625, "credit_id": "52fe4336c3a36847f8042e51", "cast_id": 2, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 3}, {"name": "Paul Gleason", "character": "Richard Vernon", "id": 7675, "credit_id": "52fe4336c3a36847f8042e5d", "cast_id": 5, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 4}, {"name": "Ally Sheedy", "character": "Allison Reynolds", "id": 12851, "credit_id": "52fe4336c3a36847f8042ea3", "cast_id": 17, "profile_path": "/xfNrfzgDwyvmczadJWw4fN70siS.jpg", "order": 5}, {"name": "John Kapelos", "character": "Carl", "id": 55554, "credit_id": "52fe4336c3a36847f8042ea7", "cast_id": 18, "profile_path": "/9bpUaLNbcmeT7OwgPh84bCFFP9c.jpg", "order": 6}, {"name": "Perry Crawford", "character": "Allison's Father", "id": 1073863, "credit_id": "52fe4336c3a36847f8042eab", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Mary Christian", "character": "Brian's Sister", "id": 1073864, "credit_id": "52fe4336c3a36847f8042eaf", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Ron Dean", "character": "Andy's Father", "id": 57597, "credit_id": "52fe4336c3a36847f8042eb3", "cast_id": 21, "profile_path": "/a910oOgeYR0IxutHf3GeyDNw3qY.jpg", "order": 9}, {"name": "Tim Gamble", "character": "Claire's Father", "id": 987357, "credit_id": "52fe4336c3a36847f8042eb7", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Fran Gargano", "character": "Allison's Mom", "id": 1073865, "credit_id": "52fe4336c3a36847f8042ebb", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Mercedes Hall", "character": "Brian's Mom", "id": 1073866, "credit_id": "52fe4336c3a36847f8042ebf", "cast_id": 24, "profile_path": null, "order": 12}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042e69", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 7.4, "runtime": 97}, "2109": {"poster_path": "/jdfxpW5LF36sHsHjyH8CMBEG4TF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244386864, "overview": "When Hong Kong Inspector Lee is summoned to Los Angeles to investigate a kidnapping, the FBI doesn't want any outside help and assigns cocky LAPD Detective James Carter to distract Lee from the case. Not content to watch the action from the sidelines, Lee and Carter form an unlikely partnership and investigate the case themselves.", "video": false, "id": 2109, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rush Hour", "tagline": "The Fastest Hands in the East Meet the Biggest Mouth in the West.", "vote_count": 355, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rUwky6VBdRb2R5yQme5hPtCdf1P.jpg", "poster_path": "/mPBCN49MF2SSR27EU3Al5ebMQM4.jpg", "id": 90863, "name": "Rush Hour Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120812", "adult": false, "backdrop_path": "/2Oeh3v9LGkfUWVWopXS842CGZvX.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1998-09-18", "popularity": 1.04700452745978, "original_title": "Rush Hour", "budget": 33000000, "cast": [{"name": "Jackie Chan", "character": "Chief Insp. Lee", "id": 18897, "credit_id": "52fe4336c3a36847f8042f25", "cast_id": 2, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Chris Tucker", "character": "Detec. James Carter", "id": 66, "credit_id": "52fe4336c3a36847f8042f2d", "cast_id": 4, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 1}, {"name": "Ken Leung", "character": "Sang", "id": 2131, "credit_id": "52fe4336c3a36847f8042f21", "cast_id": 1, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Thomas Griffin", "id": 207, "credit_id": "52fe4336c3a36847f8042f29", "cast_id": 3, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Tzi Ma", "character": "Consul Han", "id": 21629, "credit_id": "52fe4336c3a36847f8042f31", "cast_id": 5, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 4}, {"name": "Chris Penn", "character": "Clive Cod", "id": 2969, "credit_id": "52fe4336c3a36847f8042f35", "cast_id": 6, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 5}, {"name": "Robert Littman", "character": "First Caucasien", "id": 21630, "credit_id": "52fe4336c3a36847f8042f39", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Michael Chow", "character": "Diner Guest", "id": 21631, "credit_id": "52fe4336c3a36847f8042f3d", "cast_id": 8, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 7}, {"name": "Julia Hsu", "character": "Soo Yung", "id": 21632, "credit_id": "52fe4336c3a36847f8042f41", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Kai Lennox", "character": "Cop", "id": 21633, "credit_id": "52fe4336c3a36847f8042f45", "cast_id": 10, "profile_path": "/m0mkP40z9aIQ0fYZxXmphdhpWk8.jpg", "order": 9}, {"name": "Elizabeth Pe\u00f1a", "character": "Tania Johnson", "id": 7430, "credit_id": "52fe4336c3a36847f8042fb5", "cast_id": 30, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 10}, {"name": "Roger Fan", "character": "Soo Yung's Bodyguard", "id": 263229, "credit_id": "52fe4336c3a36847f8042fb9", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "George Cheung", "character": "Soo Yung's Driver", "id": 16580, "credit_id": "52fe4336c3a36847f8042fbd", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Larry Sullivan", "character": "Cop at Diner", "id": 117087, "credit_id": "52fe4336c3a36847f8042fc1", "cast_id": 33, "profile_path": "/9l268KsSd673KONSu634dtNYQwy.jpg", "order": 13}, {"name": "Rex Linn", "character": "Agent Dan Whitney", "id": 16937, "credit_id": "52fe4336c3a36847f8042fc5", "cast_id": 34, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 14}, {"name": "Lucy Lin", "character": "Exposition Official", "id": 167160, "credit_id": "52fe4336c3a36847f8042fc9", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Mark Rolston", "character": "Agent Warren Russ", "id": 6576, "credit_id": "52fe4336c3a36847f8042fcd", "cast_id": 36, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 16}, {"name": "Philip Baker Hall", "character": "Captain Diel", "id": 4492, "credit_id": "52fe4337c3a36847f8042fd1", "cast_id": 37, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 17}, {"name": "John Hawkes", "character": "Stucky", "id": 16861, "credit_id": "52fe4337c3a36847f8042fd5", "cast_id": 38, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 18}, {"name": "Ai Wan", "character": "Foo Chow Hostess", "id": 1198786, "credit_id": "537332a2c3a3681530000e2d", "cast_id": 39, "profile_path": "/fKHWhRNkwDs2itR4ouL0xf4vN0M.jpg", "order": 19}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4336c3a36847f8042f4b", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.7, "runtime": 98}, "2110": {"poster_path": "/wU9LGkxWv1zq5sB4e4RSQVSOWxX.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.", "video": false, "id": 2110, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Wasabi", "tagline": "For those who take their action raw.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0281364", "adult": false, "backdrop_path": "/nbKYCQcSAieG8zDYabFzCZWCp91.jpg", "production_companies": [{"name": "Canal Plus", "id": 104}, {"name": "TF1 Films Productions", "id": 356}, {"name": "Tobis", "id": 480}, {"name": "Destiny", "id": 963}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2001-10-31", "popularity": 0.393875940770992, "original_title": "Wasabi", "budget": 18, "cast": [{"name": "Jean Reno", "character": "Hubert Fiorentini", "id": 1003, "credit_id": "52fe4337c3a36847f804303b", "cast_id": 12, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Ryoko Hirosue", "character": "Yumi Yoshimido", "id": 21658, "credit_id": "52fe4337c3a36847f804303f", "cast_id": 13, "profile_path": "/zCpP0iet4lmNxtF0tgE1yHE4DTO.jpg", "order": 1}, {"name": "Michel Muller", "character": "Maurice \" Momo \"", "id": 21659, "credit_id": "52fe4337c3a36847f8043043", "cast_id": 14, "profile_path": "/nL3e4cEuJC0TpZm5RWfsrJHpPxo.jpg", "order": 2}, {"name": "Carole Bouquet", "character": "Sofia", "id": 10500, "credit_id": "52fe4337c3a36847f8043047", "cast_id": 15, "profile_path": "/7zhFzzEEGVT0DonbSyaXgzKjAGI.jpg", "order": 3}, {"name": "Yoshi O\u00efda", "character": "Takanawa", "id": 21663, "credit_id": "52fe4337c3a36847f804304b", "cast_id": 16, "profile_path": "/c7uQkdtLirDGTAHhMF77YG7I213.jpg", "order": 4}, {"name": "Christian Sinniger", "character": "Le Squale", "id": 21664, "credit_id": "52fe4337c3a36847f804304f", "cast_id": 17, "profile_path": "/gfIjB6MPRd2yq25BnTjyMEvYaEF.jpg", "order": 5}, {"name": "Alexandre Brik", "character": "Irene", "id": 21665, "credit_id": "52fe4337c3a36847f8043053", "cast_id": 18, "profile_path": "/ceRcQVbf0VeiGxkJtpI6n42hegg.jpg", "order": 6}, {"name": "Jean-Marc Montalto", "character": "Olivier", "id": 21666, "credit_id": "52fe4337c3a36847f8043057", "cast_id": 19, "profile_path": "/dUkKCW0kuKz0JJiRzGdgQ18IMm9.jpg", "order": 7}, {"name": "V\u00e9ronique Balme", "character": "Betty", "id": 21667, "credit_id": "52fe4337c3a36847f804305b", "cast_id": 20, "profile_path": "/8BzX78nSpZeoYhFatz54ggRufWv.jpg", "order": 8}, {"name": "Fabio Zenoni", "character": "Josy", "id": 21668, "credit_id": "52fe4337c3a36847f804305f", "cast_id": 21, "profile_path": "/yhoAnAg6M0MbQtUzQUjmPjmMj6D.jpg", "order": 9}, {"name": "Kiyohiko Shibukawa", "character": "", "id": 58611, "credit_id": "54a5751f92514135c80004a6", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f8043007", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 6.7, "runtime": 94}, "10303": {"poster_path": "/l1aw2VITfokYqoizjoF39OrrLow.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96773200, "overview": "Joan Wilder is thrust back into a world of murder, chases, foreign intrigue... and love. This time out she's duped by a duplicitous Arab dignitary who brings her to the Middle East, ostensibly to write a book about his life. Of course he's up to no good, and Joan is just another pawn in his wicked game. But Jack Colton and his sidekick Ralph show up to help our intrepid heroine save the day.", "video": false, "id": 10303, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Jewel of the Nile", "tagline": "When the going gets tough, the tough get going.", "vote_count": 68, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5jBCjoc1skU4KvRdLITP49fKFlD.jpg", "poster_path": "/ml0ikDZPzgRNOVBeytHLrDyuYiQ.jpg", "id": 89264, "name": "Romancing the Stone Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089370", "adult": false, "backdrop_path": "/ulv3akwg3mep2oGvSL7qZ9cxjp3.jpg", "production_companies": [{"name": "Stone Group Pictures", "id": 3470}, {"name": "SLM Production Group", "id": 396}, {"name": "20th Century Fox", "id": 25}], "release_date": "1985-12-04", "popularity": 0.99865285474415, "original_title": "The Jewel of the Nile", "budget": 25000000, "cast": [{"name": "Michael Douglas", "character": "Jack Colton", "id": 3392, "credit_id": "52fe43559251416c7500c621", "cast_id": 9, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Kathleen Turner", "character": "Joan Wilder", "id": 3391, "credit_id": "52fe43559251416c7500c625", "cast_id": 10, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Ralph", "id": 518, "credit_id": "52fe43559251416c7500c629", "cast_id": 11, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "Spiros Foc\u00e1s", "character": "Omar", "id": 6783, "credit_id": "52fe43559251416c7500c62d", "cast_id": 12, "profile_path": null, "order": 3}, {"name": "Avner Eisenberg", "character": "Jewel", "id": 943150, "credit_id": "52fe43559251416c7500c631", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Paul David Magid", "character": "Tarak", "id": 1076195, "credit_id": "52fe43559251416c7500c635", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Howard Jay Patterson", "character": "Barak", "id": 1076196, "credit_id": "52fe43559251416c7500c639", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Randall Edwin Nelson", "character": "Karak", "id": 1076197, "credit_id": "52fe43559251416c7500c63d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Samuel Ross Williams", "character": "Arak", "id": 1076198, "credit_id": "52fe43559251416c7500c641", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Timothy Daniel Furst", "character": "Sarak", "id": 1076199, "credit_id": "52fe43559251416c7500c645", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Hamid Fillali", "character": "Rachid", "id": 1076200, "credit_id": "52fe43559251416c7500c649", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Holland Taylor", "character": "Gloria", "id": 11318, "credit_id": "52fe43559251416c7500c64d", "cast_id": 20, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 11}, {"name": "Guy Cuevas", "character": "Le Vasseur", "id": 1076201, "credit_id": "52fe43559251416c7500c651", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Peter DePalma", "character": "Missionary", "id": 1076202, "credit_id": "52fe43559251416c7500c655", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Mark Daly Richards", "character": "Pirate", "id": 1076203, "credit_id": "52fe43559251416c7500c659", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Lewis Teague", "department": "Directing", "job": "Director", "credit_id": "52fe43559251416c7500c5f3", "profile_path": "/8S7HOgNIpqqa7CpkV5uMR4hMSvx.jpg", "id": 21819}], "vote_average": 6.3, "runtime": 106}, "2112": {"poster_path": "/qQ1uvRviTWpc1xrDjt8IOlb6rib.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161626121, "overview": "With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.", "video": false, "id": 2112, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Payback", "tagline": "No More Mr. Nice Guy.", "vote_count": 168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120784", "adult": false, "backdrop_path": "/n079v4kobeJGLDvib1sK0N271Do.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Icon Productions", "id": 152}], "release_date": "1999-02-04", "popularity": 0.561953611942579, "original_title": "Payback", "budget": 50000000, "cast": [{"name": "Mel Gibson", "character": "Porter", "id": 2461, "credit_id": "52fe4337c3a36847f8043131", "cast_id": 15, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Kris Kristofferson", "character": "Bronson", "id": 10823, "credit_id": "52fe4337c3a36847f8043135", "cast_id": 16, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 1}, {"name": "Gregg Henry", "character": "Val Resnick", "id": 2518, "credit_id": "52fe4337c3a36847f8043139", "cast_id": 17, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 2}, {"name": "Maria Bello", "character": "Rosie", "id": 49, "credit_id": "52fe4337c3a36847f804313d", "cast_id": 18, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "David Paymer", "character": "Arthur Stegman", "id": 19839, "credit_id": "52fe4337c3a36847f8043141", "cast_id": 19, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 4}, {"name": "Bill Duke", "character": "Det. Hicks", "id": 1103, "credit_id": "52fe4337c3a36847f8043145", "cast_id": 20, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 5}, {"name": "Deborah Kara Unger", "character": "Mrs. Lynn Porter", "id": 13549, "credit_id": "52fe4337c3a36847f8043149", "cast_id": 21, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 6}, {"name": "John Glover", "character": "Phil", "id": 5589, "credit_id": "52fe4337c3a36847f804314d", "cast_id": 22, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 7}, {"name": "William Devane", "character": "Carter", "id": 21416, "credit_id": "52fe4337c3a36847f8043151", "cast_id": 23, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 8}, {"name": "Lucy Liu", "character": "Pearl", "id": 140, "credit_id": "52fe4337c3a36847f8043155", "cast_id": 24, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 9}, {"name": "Jack Conley", "character": "Det. Leary", "id": 21675, "credit_id": "52fe4337c3a36847f8043159", "cast_id": 25, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 10}], "directors": [{"name": "Paul Abascal", "department": "Directing", "job": "Director", "credit_id": "53af11d90e0a265983004e53", "profile_path": null, "id": 1216735}, {"name": "Brian Helgeland", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f80430e5", "profile_path": "/oJrbZ6efL7CalCeypRyusRbHzPF.jpg", "id": 4723}], "vote_average": 6.4, "runtime": 100}, "9072": {"poster_path": "/xbwQDrCq8epP8Jx67IaBKBDDVfy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A wannabe dad mistakes a vertically challenged criminal on the lam as his newly adopted son.", "video": false, "id": 9072, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Little Man", "tagline": "Big things come in small packages", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430304", "adult": false, "backdrop_path": "/ga4ovMTK6nqCnvPDGGxzokeESpu.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2006-08-31", "popularity": 0.447200657649294, "original_title": "Little Man", "budget": 64000000, "cast": [{"name": "Marlon Wayans", "character": "Calvin", "id": 9562, "credit_id": "52fe44d8c3a36847f80ad7ad", "cast_id": 1, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 0}, {"name": "Shawn Wayans", "character": "Darryl", "id": 35690, "credit_id": "52fe44d8c3a36847f80ad7b1", "cast_id": 2, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 1}, {"name": "Kerry Washington", "character": "Vanessa", "id": 11703, "credit_id": "52fe44d8c3a36847f80ad7b5", "cast_id": 3, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 2}, {"name": "John Witherspoon", "character": "Pops", "id": 56902, "credit_id": "52fe44d8c3a36847f80ad7b9", "cast_id": 4, "profile_path": "/quHpadwIQIQQZdFDoYKoGFhPXnH.jpg", "order": 3}, {"name": "Tracy Morgan", "character": "Percy", "id": 56903, "credit_id": "52fe44d8c3a36847f80ad7bd", "cast_id": 5, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 4}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe44d8c3a36847f80ad7f3", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 5.7, "runtime": 98}, "2114": {"poster_path": "/sAvveSNjaV66MvYf6u8piFT5oyf.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85131830, "overview": "Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.", "video": false, "id": 2114, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Final Fantasy: The Spirits Within", "tagline": "Unleash a new reality", "vote_count": 123, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/x6HZaopJw26YnjBZjo06sWmPEPM.jpg", "id": 140760, "name": "Final Fantasy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0173840", "adult": false, "backdrop_path": "/4kEgfSDpz7kH6mMe75s5YHX5Ob8.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Square USA", "id": 4164}, {"name": "Chris Lee Productions", "id": 20033}], "release_date": "2001-07-02", "popularity": 0.607442416508757, "original_title": "Final Fantasy: The Spirits Within", "budget": 137000000, "cast": [{"name": "Donald Sutherland", "character": "Dr. Cid ( voice )", "id": 55636, "credit_id": "52fe4337c3a36847f80431e5", "cast_id": 16, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 0}, {"name": "Ming-Na Wen", "character": "Dr. Aki Ross ( voice )", "id": 21702, "credit_id": "52fe4337c3a36847f80431e9", "cast_id": 17, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Cap. Gray Edwards ( voice )", "id": 7447, "credit_id": "52fe4337c3a36847f80431ed", "cast_id": 18, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Sgt. Ryan Whitaker (voice)", "id": 10182, "credit_id": "52fe4337c3a36847f80431f1", "cast_id": 19, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Off. Neil Fleming ( Voice )", "id": 884, "credit_id": "52fe4337c3a36847f80431f5", "cast_id": 20, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Peri Gilpin", "character": "Off. Jane Proudfoot (voice)", "id": 21703, "credit_id": "52fe4337c3a36847f80431f9", "cast_id": 21, "profile_path": "/3CQtUiYmacTofZ75OaKEBUmvPeH.jpg", "order": 5}, {"name": "James Woods", "character": "General Hein (voice)", "id": 4512, "credit_id": "52fe4337c3a36847f80431fd", "cast_id": 22, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 6}, {"name": "Keith David", "character": "Council Member", "id": 65827, "credit_id": "550af4fb9251414689001c09", "cast_id": 53, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "Jean Simmons", "character": "Council Member (voice)", "id": 14500, "credit_id": "550af52bc3a3684872001b6c", "cast_id": 54, "profile_path": "/lVE40Hx4s2VI2nPxkNaF0hBjPw9.jpg", "order": 8}, {"name": "Keith David", "character": "Council Member (voice)", "id": 65827, "credit_id": "550af555c3a3684874001b35", "cast_id": 55, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 9}], "directors": [{"name": "Hironobu Sakaguchi", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f804318d", "profile_path": "/vvBIwKfRIxuojbdLP5R8rjU0MW2.jpg", "id": 21692}, {"name": "Motonori Sakakibara", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f8043193", "profile_path": "/7bStVvJFRCL17G2MTlCHoLHraKJ.jpg", "id": 21693}], "vote_average": 5.7, "runtime": 106}, "10307": {"poster_path": "/n60ugx0EbccAfBIQdvd6pCASXNl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A priest from the Vatican is sent in to investigate claims that a town in Brazil has a church where statues bleed from the eyes. Meanwhile, a young woman in the U.S. begins to show signs of stigmata.", "video": false, "id": 10307, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Stigmata", "tagline": "The messenger must be silenced.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0145531", "adult": false, "backdrop_path": "/iK4SuyfrddLWuDEeGPhFOqZy2VC.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "FGM Entertainment", "id": 2347}], "release_date": "1999-09-10", "popularity": 0.780450421945141, "original_title": "Stigmata", "budget": 0, "cast": [{"name": "Patricia Arquette", "character": "Frankie Paige", "id": 4687, "credit_id": "52fe43569251416c7500c81f", "cast_id": 10, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 0}, {"name": "Gabriel Byrne", "character": "Father Andrew Kiernan", "id": 5168, "credit_id": "52fe43569251416c7500c823", "cast_id": 11, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 1}, {"name": "Jonathan Pryce", "character": "Cardinal Daniel Houseman", "id": 378, "credit_id": "52fe43569251416c7500c827", "cast_id": 12, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 2}, {"name": "Nia Long", "character": "Donna Chadway", "id": 9781, "credit_id": "52fe43569251416c7500c82b", "cast_id": 13, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 3}, {"name": "Thomas Kopache", "character": "Father Durning", "id": 9284, "credit_id": "52fe43569251416c7500c82f", "cast_id": 14, "profile_path": "/x7ef1rpmCE6rjeuJq30rw0zSQE0.jpg", "order": 4}, {"name": "Rade \u0160erbed\u017eija", "character": "Marion Petrocelli", "id": 1118, "credit_id": "52fe43569251416c7500c833", "cast_id": 15, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 5}, {"name": "Enrico Colantoni", "character": "Father Dario", "id": 15029, "credit_id": "52fe43569251416c7500c837", "cast_id": 16, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 6}, {"name": "Dick Latessa", "character": "Father Gianni Delmonico", "id": 131879, "credit_id": "52fe43569251416c7500c83b", "cast_id": 17, "profile_path": "/qBJquzz6eH51JCbSFCGKt52yA0V.jpg", "order": 7}, {"name": "Portia de Rossi", "character": "Jennifer Kelliho", "id": 62010, "credit_id": "52fe43569251416c7500c83f", "cast_id": 18, "profile_path": "/sPf2YdfciJT2ov1i7xp0IqfMaKP.jpg", "order": 8}, {"name": "Patrick Muldoon", "character": "Steven", "id": 41687, "credit_id": "52fe43569251416c7500c843", "cast_id": 19, "profile_path": "/bQXk6dGI2zjRY2rvfwmpdHpyh9F.jpg", "order": 9}, {"name": "Ann Cusack", "character": "Dr. Reston", "id": 59260, "credit_id": "52fe43569251416c7500c847", "cast_id": 20, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 10}, {"name": "Shaun Toub", "character": "Doctor", "id": 17857, "credit_id": "52fe43569251416c7500c84b", "cast_id": 21, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 11}, {"name": "Tom Hodges", "character": "ER Nurse", "id": 112300, "credit_id": "52fe43569251416c7500c84f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Lydia Hazan", "character": "Attending Nurse", "id": 156517, "credit_id": "52fe43569251416c7500c853", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Shaun Duke", "character": "Dr. Eckworth (as Duke Moosekian)", "id": 177131, "credit_id": "52fe43569251416c7500c857", "cast_id": 24, "profile_path": "/4gkGAqQF6ZGvM9hcFZpXaWzKyzl.jpg", "order": 14}], "directors": [{"name": "Rupert Wainwright", "department": "Directing", "job": "Director", "credit_id": "52fe43569251416c7500c7eb", "profile_path": null, "id": 11809}], "vote_average": 5.9, "runtime": 103}, "2116": {"poster_path": "/3k3YJByOHT7z8DQa43yj6P5LFHI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55495563, "overview": "Matt Lee Whitlock, respected chief of police in small Banyan Key, Florida, must solve a vicious double homicide before he himself falls under suspicion. Matt Lee has to stay a few steps ahead of his own police force and everyone he's trusted in order to find out the truth.", "video": false, "id": 2116, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Out of Time", "tagline": "The Clock Is Ticking...", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0313443", "adult": false, "backdrop_path": "/AmzCMsWyWAsUCRSTXHPmm3cK8mm.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2003-10-03", "popularity": 0.599087171589435, "original_title": "Out of Time", "budget": 50000000, "cast": [{"name": "Denzel Washington", "character": "Matthias \" Lee \" Whitlock", "id": 5292, "credit_id": "52fe4337c3a36847f804330b", "cast_id": 13, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Alex Diaz Whitlock", "id": 8170, "credit_id": "52fe4337c3a36847f804330f", "cast_id": 14, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Sanaa Lathan", "character": "Ann Merai Harrison", "id": 5411, "credit_id": "52fe4337c3a36847f8043327", "cast_id": 20, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 2}, {"name": "John Billingsley", "character": "Chae", "id": 21722, "credit_id": "52fe4337c3a36847f8043317", "cast_id": 16, "profile_path": "/fHQ6ecMufxLwUAbN3dX3yxFAn5d.jpg", "order": 3}, {"name": "Dean Cain", "character": "Chris Harrison", "id": 21721, "credit_id": "52fe4337c3a36847f8043313", "cast_id": 15, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 4}, {"name": "Alex Carter", "character": "Cabot", "id": 21724, "credit_id": "52fe4337c3a36847f804331f", "cast_id": 18, "profile_path": "/sBt6dJhsdQih3fKBHH2TYkn8VFX.jpg", "order": 5}, {"name": "Antoni Corone", "character": "Deput Basle", "id": 20562, "credit_id": "52fe4337c3a36847f8043323", "cast_id": 19, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 6}, {"name": "Robert Baker", "character": "Tony Dalton", "id": 21723, "credit_id": "52fe4337c3a36847f804331b", "cast_id": 17, "profile_path": "/6nywOWGA7dJLzwDhHY4AzFRQ3b8.jpg", "order": 7}, {"name": "Ron Madoff", "character": "Detective (as Ronald J. Madoff)", "id": 1286269, "credit_id": "52fe4337c3a36847f8043343", "cast_id": 25, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 8}], "directors": [{"name": "Carl Franklin", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f80432d7", "profile_path": "/qNFOzZb4kFqkg6wiSfHtVvRzLLa.jpg", "id": 21712}], "vote_average": 6.3, "runtime": 105}, "18501": {"poster_path": "/ki0s06d4iUeDEdLfCcQQO2NY6Co.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40828540, "overview": "Mind-control technology has taken society by a storm, a multiplayer on-line game called \"Slayers\" allows players to control human prisoners in mass-scale. Simon (Lerman) controls Kable (Butler), the online champion of the game. Kable's ultimate challenge becomes regaining his identity and independence by defeating the game's mastermind (Hall).", "video": false, "id": 18501, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Gamer", "tagline": "In the near future, you don't live to play... you'll play to live.", "vote_count": 239, "homepage": "http://gamerthemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034032", "adult": false, "backdrop_path": "/gCVAvKhsD5BrGZhyj1sNnwsqCY5.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Lionsgate", "id": 1632}], "release_date": "2009-09-04", "popularity": 0.623621910559261, "original_title": "Gamer", "budget": 50000000, "cast": [{"name": "Gerard Butler", "character": "Kable", "id": 17276, "credit_id": "52fe47819251416c7509bdb7", "cast_id": 1, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Michael C. Hall", "character": "Ken Castle", "id": 53820, "credit_id": "52fe47819251416c7509bdd7", "cast_id": 9, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 1}, {"name": "Logan Lerman", "character": "Simon", "id": 33235, "credit_id": "52fe47819251416c7509bdbb", "cast_id": 2, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Amber Valletta", "character": "Angie", "id": 38425, "credit_id": "52fe47819251416c7509bde7", "cast_id": 13, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Terry Crews", "character": "Hackman", "id": 53256, "credit_id": "52fe47819251416c7509bdcb", "cast_id": 6, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 4}, {"name": "Kyra Sedgwick", "character": "Gina Parker Smith", "id": 26467, "credit_id": "52fe47819251416c7509bdd3", "cast_id": 8, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 5}, {"name": "Ludacris", "character": "Humanez Brother", "id": 8171, "credit_id": "52fe47819251416c7509bdc7", "cast_id": 5, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 6}, {"name": "Alison Lohman", "character": "Trace", "id": 8291, "credit_id": "52fe47819251416c7509bdcf", "cast_id": 7, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 7}, {"name": "Milo Ventimiglia", "character": "Rick Rape", "id": 16501, "credit_id": "52fe47819251416c7509bdbf", "cast_id": 3, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 8}, {"name": "Aaron Yoo", "character": "Humanez Dude", "id": 54247, "credit_id": "52fe47819251416c7509bdc3", "cast_id": 4, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 9}, {"name": "John Leguizamo", "character": "Freek", "id": 5723, "credit_id": "52fe47819251416c7509bddb", "cast_id": 10, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 10}, {"name": "Johnny Whitworth", "character": "Scotch", "id": 73589, "credit_id": "52fe47819251416c7509bddf", "cast_id": 11, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 11}, {"name": "Zo\u00eb Bell", "character": "Sandra", "id": 20494, "credit_id": "52fe47819251416c7509bde3", "cast_id": 12, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 12}, {"name": "Ashley Rickards", "character": "2Katchapredator", "id": 208225, "credit_id": "52fe47819251416c7509be03", "cast_id": 18, "profile_path": "/21s0lfhCx2hzjNzTFOwmkde665a.jpg", "order": 13}, {"name": "Brighid Fleming", "character": "Delia", "id": 965550, "credit_id": "52fe47819251416c7509be07", "cast_id": 19, "profile_path": "/7owoTpZMIxfcmfUAgWlQCGSodr.jpg", "order": 14}, {"name": "Maggie Lawson", "character": "Female News Host #1", "id": 51873, "credit_id": "52fe47819251416c7509be0b", "cast_id": 20, "profile_path": "/jpe1XChOxlzJ0dHRsQK5nBvduRQ.jpg", "order": 15}, {"name": "Nikita Ramsey", "character": "Kumdumpsta #1", "id": 558934, "credit_id": "52fe47819251416c7509be0f", "cast_id": 21, "profile_path": "/7KiVRILBHrO7TQrYckklHhixkuV.jpg", "order": 16}, {"name": "Jade Ramsey", "character": "Kumdumpsta #2", "id": 406191, "credit_id": "52fe47819251416c7509be13", "cast_id": 22, "profile_path": "/zk48eek1wv92cCybT7cFb4anHR4.jpg", "order": 17}, {"name": "Mimi Michaels", "character": "Stikkimuffin", "id": 78046, "credit_id": "52fe47819251416c7509be17", "cast_id": 23, "profile_path": "/vkhTeaepcYe361B87gWDZDjtEMJ.jpg", "order": 18}, {"name": "Sadie Alexandru", "character": "Society Victim", "id": 1270179, "credit_id": "52fe47819251416c7509be1b", "cast_id": 24, "profile_path": "/ckzjYUk5SmwJ9oYbgbq9fCRZQpz.jpg", "order": 19}], "directors": [{"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe47819251416c7509bded", "profile_path": null, "id": 20193}, {"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe47819251416c7509bdf3", "profile_path": null, "id": 20192}], "vote_average": 5.6, "runtime": 95}, "2118": {"poster_path": "/rIXzJCAvyd3Ci8ipylDQ5wUKqwh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126216940, "overview": "Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner in this lush tribute to tough film noir crime films. Based on the multi-layered James Ellroy novel.", "video": false, "id": 2118, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "L.A. Confidential", "tagline": "Everything is suspect... Everyone is for sale... And nothing is what it seems.", "vote_count": 363, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119488", "adult": false, "backdrop_path": "/orhLhvWPRYcW2isnqtNKE08sAPV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Regency Enterprises", "id": 508}, {"name": "Wolper Organization", "id": 2428}], "release_date": "1997-09-05", "popularity": 0.71220718537898, "original_title": "L.A. Confidential", "budget": 35000000, "cast": [{"name": "Kevin Spacey", "character": "Det. Sgt. Jack Vincennes", "id": 1979, "credit_id": "52fe4337c3a36847f804345d", "cast_id": 17, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Det. Lt. Edmund Jennings \" Ed \" Exley", "id": 529, "credit_id": "52fe4337c3a36847f8043461", "cast_id": 18, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Danny DeVito", "character": "Sid Hudgens", "id": 518, "credit_id": "52fe4337c3a36847f8043459", "cast_id": 16, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 2}, {"name": "James Cromwell", "character": "Cap. Dudley Liam Smith", "id": 2505, "credit_id": "52fe4337c3a36847f8043465", "cast_id": 19, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Kim Basinger", "character": "Lynn Bracken", "id": 326, "credit_id": "52fe4337c3a36847f8043469", "cast_id": 20, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 4}, {"name": "Russell Crowe", "character": "Bud White", "id": 934, "credit_id": "52fe4337c3a36847f804346d", "cast_id": 21, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 5}, {"name": "David Strathairn", "character": "Pierce Patchett", "id": 11064, "credit_id": "52fe4337c3a36847f8043471", "cast_id": 22, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 6}, {"name": "Ron Rifkin", "character": "D.A. Ellis Loew", "id": 12122, "credit_id": "52fe4337c3a36847f8043487", "cast_id": 26, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 7}, {"name": "Matt McCoy", "character": "'Badge of Honor' Star Brett Chase", "id": 42206, "credit_id": "52fe4337c3a36847f804348b", "cast_id": 27, "profile_path": "/hBbrWq1WolrEG9kSxEASywFz5OK.jpg", "order": 8}, {"name": "Paul Guilfoyle", "character": "Mickey Cohen", "id": 925, "credit_id": "52fe4337c3a36847f804348f", "cast_id": 28, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 9}, {"name": "Paolo Seganti", "character": "Johnny Stompanato", "id": 156294, "credit_id": "52fe4337c3a36847f8043493", "cast_id": 29, "profile_path": "/ueHr5H9a7Dn9ttw6QNAmQ29iwMk.jpg", "order": 10}, {"name": "Elisabeth Granli", "character": "Mickey Cohen's Mambo Partner", "id": 184250, "credit_id": "52fe4337c3a36847f8043497", "cast_id": 30, "profile_path": "/9hQcsYQR4Zo0bs7X34TfSTHBix3.jpg", "order": 11}, {"name": "Sandra Taylor", "character": "Mickey Cohen's Mambo Partner", "id": 32291, "credit_id": "52fe4337c3a36847f804349b", "cast_id": 31, "profile_path": "/2PO8r6s8IgfzWHc2ajfDgdp95JR.jpg", "order": 12}, {"name": "Steve Rankin", "character": "Officer Arresting Mickey Cohen", "id": 10137, "credit_id": "52fe4337c3a36847f804349f", "cast_id": 32, "profile_path": "/5qMs4c4I7tcmubYy0xqBU7BVwSm.jpg", "order": 13}, {"name": "Graham Beckel", "character": "Dick Stensland", "id": 6110, "credit_id": "52fe4337c3a36847f80434a3", "cast_id": 33, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 14}, {"name": "Simon Baker", "character": "Matt Reynolds", "id": 1284159, "credit_id": "52fe4337c3a36847f80434a7", "cast_id": 34, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 15}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f8043413", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}], "vote_average": 7.2, "runtime": 138}, "2119": {"poster_path": "/75Yg43XRrjflm3xIeCxQompV9Qi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157920733, "overview": "Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.", "video": false, "id": 2119, "genres": [{"id": 12, "name": "Adventure"}], "title": "Days of Thunder", "tagline": "You can't stop the thunder.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099371", "adult": false, "backdrop_path": "/bE2MZM5QAKbcwSzcmlxvRzHJ4tj.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}], "release_date": "1990-06-27", "popularity": 0.517922052781305, "original_title": "Days of Thunder", "budget": 60000000, "cast": [{"name": "Tom Cruise", "character": "Cole Trickle", "id": 500, "credit_id": "52fe4338c3a36847f8043555", "cast_id": 19, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Harry Hogge", "id": 3087, "credit_id": "52fe4338c3a36847f8043559", "cast_id": 20, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Dr. Claire Lewicki", "id": 2227, "credit_id": "52fe4338c3a36847f804355d", "cast_id": 21, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "Randy Quaid", "character": "Tim Dalander", "id": 1811, "credit_id": "52fe4338c3a36847f8043561", "cast_id": 22, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 3}, {"name": "Cary Elwes", "character": "Russ Weehler", "id": 2130, "credit_id": "52fe4338c3a36847f8043565", "cast_id": 23, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 4}, {"name": "Fred Thompson", "character": "Big John", "id": 17874, "credit_id": "52fe4338c3a36847f8043569", "cast_id": 25, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 6}, {"name": "John C. Reilly", "character": "Buck Bretherton", "id": 4764, "credit_id": "52fe4338c3a36847f804356d", "cast_id": 26, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 7}, {"name": "J.C. Quinn", "character": "Waddle", "id": 21757, "credit_id": "52fe4338c3a36847f8043571", "cast_id": 27, "profile_path": "/wNvCFv3EfT2og032UGcfWQ8hatV.jpg", "order": 8}, {"name": "Don Simpson", "character": "Aldo Bennedetti", "id": 771, "credit_id": "52fe4338c3a36847f8043575", "cast_id": 28, "profile_path": "/vYpPZLSh4ylzgP5KsEUnjt1UDRh.jpg", "order": 9}, {"name": "Michael Rooker", "character": "Rowdy Burns", "id": 12132, "credit_id": "52fe4338c3a36847f8043579", "cast_id": 29, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 10}, {"name": "Caroline Williams", "character": "Jennie Burns", "id": 86923, "credit_id": "52fe4338c3a36847f804357d", "cast_id": 30, "profile_path": "/iOwBSdPQ1adtucfm3eyLjmlCVbt.jpg", "order": 11}, {"name": "Margo Martindale", "character": "Racetrack timer", "id": 452, "credit_id": "52fe4338c3a36847f8043581", "cast_id": 31, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 12}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4337c3a36847f80434eb", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 5.8, "runtime": 107}, "10312": {"poster_path": "/2T0Mj8gkTXgciedz8W5nsnjCHig.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 202292902, "overview": "Meet Patch Adams, a doctor who doesn't look, act or think like any doctor you've met before. For Patch, humor is the best medicine, and he's willing to do just anything to make his patients laugh - even if it means risking his own career.", "video": false, "id": 10312, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Patch Adams", "tagline": "Laughter is contagious.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0129290", "adult": false, "backdrop_path": "/9CtyPVGETuWUlqnNswo7R98xGgU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Bungalow 78 Productions", "id": 369}, {"name": "Blue Wolf", "id": 10230}, {"name": "Farrell/Minoff", "id": 10231}], "release_date": "1998-12-25", "popularity": 0.860928000213037, "original_title": "Patch Adams", "budget": 50000000, "cast": [{"name": "Robin Williams", "character": "Hunter 'Patch' Adams", "id": 2157, "credit_id": "52fe43579251416c7500ca11", "cast_id": 11, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Mitch Roman", "id": 1233, "credit_id": "52fe43579251416c7500ca15", "cast_id": 12, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Dean Walcott", "id": 4029, "credit_id": "52fe43579251416c7500ca19", "cast_id": 13, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "Peter Coyote", "character": "Bill Davis", "id": 9979, "credit_id": "52fe43579251416c7500ca1d", "cast_id": 14, "profile_path": "/5zVvYZxE6T0OeL1iaFBBCzY3QOi.jpg", "order": 3}, {"name": "Michael Jeter", "character": "Rudy", "id": 2169, "credit_id": "52fe43579251416c7500ca21", "cast_id": 15, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 4}, {"name": "Monica Potter", "character": "Carin", "id": 2140, "credit_id": "52fe43579251416c7500ca25", "cast_id": 16, "profile_path": "/mWzTy9Ip5CYemu92jT1N3yUOW2g.jpg", "order": 5}, {"name": "Harve Presnell", "character": "Dean Anderson", "id": 3907, "credit_id": "52fe43579251416c7500ca29", "cast_id": 17, "profile_path": "/hH4HYzCa5BzWxOs76HQnDBOKe4c.jpg", "order": 6}, {"name": "Daniel London", "character": "Truman", "id": 95604, "credit_id": "52fe43579251416c7500ca2d", "cast_id": 18, "profile_path": "/yX7Nga9EYG1ejlRFRV5wbZBM60W.jpg", "order": 7}, {"name": "Josef Sommer", "character": "Dr. Eaton", "id": 14792, "credit_id": "52fe43579251416c7500ca31", "cast_id": 19, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 8}, {"name": "Irma P. Hall", "character": "Joletta", "id": 43853, "credit_id": "52fe43579251416c7500ca35", "cast_id": 20, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 9}, {"name": "Frances Lee McCain", "character": "Judy", "id": 1070, "credit_id": "52fe43579251416c7500ca39", "cast_id": 21, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 10}, {"name": "Daniella Kuhn", "character": "Adelane", "id": 198772, "credit_id": "52fe43579251416c7500ca3d", "cast_id": 22, "profile_path": "/kc7soeWGkiHcA3KtdGbyar44ugZ.jpg", "order": 11}, {"name": "James Greene", "character": "Bile", "id": 43544, "credit_id": "52fe43579251416c7500ca41", "cast_id": 23, "profile_path": "/kaNlGbXykxy7xyQY1sQzUDjXiUz.jpg", "order": 12}, {"name": "Harold Gould", "character": "Arthur Mendelson", "id": 14833, "credit_id": "52fe43579251416c7500ca45", "cast_id": 24, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 13}, {"name": "Bruce Bohne", "character": "Trevor Beene", "id": 155861, "credit_id": "52fe43579251416c7500ca49", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Harry Groener", "character": "Dr. Prack", "id": 35518, "credit_id": "52fe43579251416c7500ca4d", "cast_id": 26, "profile_path": "/y9Z0ZIbFDwe7V7PQEMeCyTld3zM.jpg", "order": 15}, {"name": "Barry Shabaka Henley", "character": "Emmet", "id": 8689, "credit_id": "52fe43579251416c7500ca51", "cast_id": 27, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 16}, {"name": "Steven Anthony Jones", "character": "Charlie", "id": 176386, "credit_id": "52fe43579251416c7500ca55", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Richard Kiley", "character": "Dr. Titan", "id": 26660, "credit_id": "52fe43579251416c7500ca59", "cast_id": 29, "profile_path": "/jqyhpE74uT5F2H1Ey8LllbKpdAK.jpg", "order": 18}, {"name": "Douglas Roberts", "character": "Larry", "id": 82585, "credit_id": "52fe43579251416c7500ca5d", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Ellen Dow", "character": "Aggie", "id": 85171, "credit_id": "52fe43579251416c7500ca61", "cast_id": 31, "profile_path": "/suREaXoLKSBhJPsMXnD6P0EnGXf.jpg", "order": 20}, {"name": "Alan Tudyk", "character": "Everton", "id": 21088, "credit_id": "52fe43579251416c7500ca65", "cast_id": 32, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 21}, {"name": "Ryan Hurst", "character": "Neil", "id": 43858, "credit_id": "52fe43579251416c7500ca69", "cast_id": 33, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 22}, {"name": "Peter Siteri", "character": "Chess Man", "id": 1077966, "credit_id": "52fe43579251416c7500ca6d", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Don West", "character": "Instructor", "id": 194571, "credit_id": "52fe43579251416c7500ca71", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Greg Sestero", "character": "Jaime (Monica Potter's brother)", "id": 81918, "credit_id": "52ffc7839251416ae10c30fb", "cast_id": 36, "profile_path": "/nAVfXdOL9n4PoYi0KDRj1rpGzFW.jpg", "order": 25}, {"name": "Jason Aaron Baca", "character": "Patch Pirate", "id": 1363928, "credit_id": "5415a3430e0a261c2e00210d", "cast_id": 37, "profile_path": "/uHoqZxmyVYocSDCk1tX5EkSr6Da.jpg", "order": 26}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500c9d7", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 7.1, "runtime": 115}, "10313": {"poster_path": "/ddkZVyIKO85CL4P2qTj6G6liAMg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68729358, "overview": "A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.", "video": false, "id": 10313, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10752, "name": "War"}], "title": "The Men Who Stare at Goats", "tagline": "No goats. No glory.", "vote_count": 216, "homepage": "http://www.themenwhostareatgoatsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1234548", "adult": false, "backdrop_path": "/rmg1iMCveruz7mQaY28gPvD0I23.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Smoke House", "id": 1782}], "release_date": "2009-11-05", "popularity": 1.50246232521188, "original_title": "The Men Who Stare at Goats", "budget": 24000000, "cast": [{"name": "George Clooney", "character": "Lyn Cassady", "id": 1461, "credit_id": "52fe43579251416c7500ca95", "cast_id": 3, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Bob Wilton", "id": 3061, "credit_id": "52fe43579251416c7500ca9f", "cast_id": 5, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Jeff Bridges", "character": "Bill Django", "id": 1229, "credit_id": "52fe43579251416c7500caa3", "cast_id": 6, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 2}, {"name": "Kevin Spacey", "character": "Larry Hooper", "id": 1979, "credit_id": "52fe43579251416c7500caa7", "cast_id": 7, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 3}, {"name": "Robert Patrick", "character": "Todd Nixon", "id": 418, "credit_id": "52fe43579251416c7500caab", "cast_id": 8, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 4}, {"name": "Stephen Lang", "character": "Brigadier General Dean Hopgood", "id": 32747, "credit_id": "52fe43579251416c7500caaf", "cast_id": 9, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 5}], "directors": [{"name": "Grant Heslov", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500ca8b", "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "id": 31511}], "vote_average": 5.8, "runtime": 93}, "2122": {"poster_path": "/pc2xIaRjmOxBiVqluPISzHRTKSr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"The Tulip\" Tudeski now spends his days compulsively cleaning his house and perfecting his culinary skills with his wife, Jill, a purported assassin who has yet to pull off a clean hit. Suddenly, an uninvited and unwelcome connection to their past unexpectedly shows up on Jimmy and Jill's doorstep: it's Oz, and he's begging them to help him rescue his wife Cynthia.", "video": false, "id": 2122, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Whole Ten Yards", "tagline": "They missed each other. This time, their aim is better.", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ttaiuuOHjYLTszcbADBZImqRK5H.jpg", "poster_path": "/m6tkyCcOm4wzklAvsT0jyaM5mgY.jpg", "id": 103577, "name": "The Whole Nine Yards Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0327247", "adult": false, "backdrop_path": "/A4iX2LXAhJwMtBER8T2ewgITXsK.jpg", "production_companies": [{"name": "Nine Yards Two Productions", "id": 51771}, {"name": "Nine Yards Productions", "id": 51772}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Franchise Pictures", "id": 1403}, {"name": "MHF Zweite Academy Film", "id": 8848}, {"name": "Eclipse Catering", "id": 23787}], "release_date": "2004-04-08", "popularity": 0.602456943965894, "original_title": "The Whole Ten Yards", "budget": 0, "cast": [{"name": "Bruce Willis", "character": "Jimmy", "id": 62, "credit_id": "52fe4338c3a36847f80436b1", "cast_id": 15, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Matthew Perry", "character": "Oz", "id": 14408, "credit_id": "52fe4338c3a36847f80436b5", "cast_id": 16, "profile_path": "/hkszOdJc14ULRdsy7JnRAvlrbCY.jpg", "order": 1}, {"name": "Amanda Peet", "character": "Jill", "id": 2956, "credit_id": "52fe4338c3a36847f80436b9", "cast_id": 17, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 2}, {"name": "Kevin Pollak", "character": "Lazlo", "id": 7166, "credit_id": "52fe4338c3a36847f80436bd", "cast_id": 18, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 3}, {"name": "Frank Collison", "character": "Strabo", "id": 1479, "credit_id": "52fe4338c3a36847f80436c1", "cast_id": 20, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 4}, {"name": "Johnny Messner", "character": "Zevo", "id": 21798, "credit_id": "52fe4338c3a36847f80436c5", "cast_id": 21, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 5}, {"name": "Natasha Henstridge", "character": "Cynthia", "id": 57395, "credit_id": "52fe4338c3a36847f80436c9", "cast_id": 23, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 6}, {"name": "Tasha Smith", "character": "Julie", "id": 74610, "credit_id": "52fe4338c3a36847f80436cd", "cast_id": 24, "profile_path": "/9WOYRySKNSnlDTiREXHEQbWHJTv.jpg", "order": 7}], "directors": [{"name": "Howard Deutch", "department": "Directing", "job": "Director", "credit_id": "52fe4338c3a36847f804365f", "profile_path": "/68Vae1HkU1NxQZ6KEmuxIpno7c9.jpg", "id": 26502}], "vote_average": 5.8, "runtime": 98}, "10315": {"poster_path": "/3lVrR9K9vd68vYy8tZum2fVn5BP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Fantastic Mr. Fox bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.", "video": false, "id": 10315, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Fantastic Mr. Fox", "tagline": "Dig the life fantastic!", "vote_count": 335, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0432283", "adult": false, "backdrop_path": "/uxQ1n8yLqRZgnrimiBXJ5rsaa.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2009-11-13", "popularity": 1.11050572485591, "original_title": "Fantastic Mr. Fox", "budget": 0, "cast": [{"name": "George Clooney", "character": "Mr. Fox (voice)", "id": 1461, "credit_id": "52fe43589251416c7500cb83", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Mrs. Fox (voice)", "id": 5064, "credit_id": "52fe43589251416c7500cb87", "cast_id": 5, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Jason Schwartzman", "character": "Ash (voice)", "id": 17881, "credit_id": "52fe43589251416c7500cb8b", "cast_id": 6, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 2}, {"name": "Bill Murray", "character": "Badger (voice)", "id": 1532, "credit_id": "52fe43589251416c7500cb8f", "cast_id": 7, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Wallace Wolodarsky", "character": "Kylie (voice) (as Wally Wolodarsky)", "id": 486, "credit_id": "52fe43589251416c7500cb93", "cast_id": 8, "profile_path": "/dvmEq92L4UwL20uO2BOQ8vnpPBP.jpg", "order": 4}, {"name": "Eric Chase Anderson", "character": "Kristofferson (voice) (as Eric Anderson)", "id": 1332415, "credit_id": "53a4cd6a0e0a261449000426", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Michael Gambon", "character": "Franklin Bean (voice)", "id": 5658, "credit_id": "52fe43589251416c7500cb97", "cast_id": 9, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Willem Dafoe", "character": "Rat (voice)", "id": 5293, "credit_id": "52fe43589251416c7500cb9b", "cast_id": 10, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 7}, {"name": "Owen Wilson", "character": "Coach Skip (voice)", "id": 887, "credit_id": "52fe43589251416c7500cb9f", "cast_id": 11, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 8}, {"name": "Jarvis Cocker", "character": "Petey (voice)", "id": 107170, "credit_id": "52fe43589251416c7500cba3", "cast_id": 12, "profile_path": "/smJVxtorc3yZHcKo2OQHXG3caQt.jpg", "order": 9}, {"name": "Wes Anderson", "character": "Weasel (voice)", "id": 5655, "credit_id": "52fe43589251416c7500cba7", "cast_id": 13, "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "order": 10}, {"name": "Karen Duffy", "character": "Linda Otter (voice)", "id": 76131, "credit_id": "52fe43589251416c7500cbab", "cast_id": 14, "profile_path": "/c3G9gFCbBf6zHRQTqUZjXYgZUh4.jpg", "order": 11}, {"name": "Robin Hurlstone", "character": "Walter Boggis (voice)", "id": 1332416, "credit_id": "53a4ce64c3a3687a43000477", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Hugo Guinness", "character": "Nathan Bunce (voice)", "id": 992097, "credit_id": "53a4cede0e0a26143c0004f0", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Helen McCrory", "character": "Mrs. Bean (voice)", "id": 15737, "credit_id": "52fe43589251416c7500cbaf", "cast_id": 15, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 14}, {"name": "Roman Coppola", "character": "Squirrel Contractor (voice)", "id": 38803, "credit_id": "52fe43589251416c7500cbb3", "cast_id": 16, "profile_path": "/enVWg7QHchGcWmWYRu0iohM6SFg.jpg", "order": 15}, {"name": "Juman Malouf", "character": "Agnes (voice)", "id": 1332418, "credit_id": "53a4cf3b0e0a261436000470", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Jeremy Dawson", "character": "Beaver's Son (voice)", "id": 1004835, "credit_id": "53a4cf7e0e0a2614450004ab", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Garth Jennings", "character": "Bean's Son (voice)", "id": 52842, "credit_id": "52fe43589251416c7500cbb7", "cast_id": 17, "profile_path": "/ahQh5uW5CXLe1LotxN4Y20aj5Gx.jpg", "order": 18}, {"name": "Brian Cox", "character": "Action 12 Reporter (voice)", "id": 1248, "credit_id": "52fe43589251416c7500cbbb", "cast_id": 18, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 19}, {"name": "Tristan Oliver", "character": "Explosives Man (voice)", "id": 53331, "credit_id": "53a4d031c3a3687a3a0003e4", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "James Hamilton", "character": "Mole (voice)", "id": 1332423, "credit_id": "53a4d061c3a3687a310004e3", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Steven M. Rales", "character": "Beaver (voice) (as Steven Rales)", "id": 1004836, "credit_id": "53a4d0c2c3a3687a310004f4", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Rob Hersov", "character": "Pilot (voice)", "id": 1332426, "credit_id": "53a4d0d5c3a3687a370004a0", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Jennifer Furches", "character": "Dr. Badger (voice)", "id": 1332428, "credit_id": "53a4d10ac3a3687a2e0004ae", "cast_id": 29, "profile_path": null, "order": 24}, {"name": "Allison Abbate", "character": "Rabbit's Ex-Girlfriend (voice)", "id": 34894, "credit_id": "5488de23c3a3686f5500032a", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Molly Cooper", "character": "Rabbit Girl (voice)", "id": 1332433, "credit_id": "53a4d160c3a3687a2b000506", "cast_id": 31, "profile_path": null, "order": 26}, {"name": "Adrien Brody", "character": "Field Mouse (voice)", "id": 3490, "credit_id": "52fe43589251416c7500cbbf", "cast_id": 19, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 27}, {"name": "Mario Batali", "character": "Rabbit (voice)", "id": 146747, "credit_id": "53a4d191c3a3687a370004b8", "cast_id": 32, "profile_path": "/ryTLhqtjQkT3LfZ4UYRoGqBpxpg.jpg", "order": 28}, {"name": "Martin Ballard", "character": "Fire Chief (voice)", "id": 1332434, "credit_id": "53a4d1a0c3a3687a4000046a", "cast_id": 33, "profile_path": null, "order": 29}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500cb73", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.3, "runtime": 87}, "67660": {"poster_path": "/4tK8k1YbF58nEMW76bnm76jWpnZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96000000, "overview": "Four friends conspire to turn the tables on their women when they discover the ladies have been using Steve Harvey's relationship advice against them.", "video": false, "id": 67660, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Think Like a Man", "tagline": "Let the mind games begin", "vote_count": 75, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hCRM2diNsHt60vopldseJJ6o1Rr.jpg", "id": 239430, "name": "Think Like a Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1621045", "adult": false, "backdrop_path": "/rjjeKcJ0gw3wu1aNqg1sEvBaABc.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Rainforest Films", "id": 1309}], "release_date": "2012-04-20", "popularity": 0.705849220569431, "original_title": "Think Like a Man", "budget": 12000000, "cast": [{"name": "Taraji P. Henson", "character": "Lauren", "id": 40036, "credit_id": "52fe4770c3a368484e0c7045", "cast_id": 4, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 0}, {"name": "Gabrielle Union", "character": "Kristen", "id": 17773, "credit_id": "52fe4770c3a368484e0c7049", "cast_id": 5, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 1}, {"name": "Michael Ealy", "character": "Dominic", "id": 8177, "credit_id": "52fe4770c3a368484e0c704d", "cast_id": 6, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 2}, {"name": "Kevin Hart", "character": "Cedric", "id": 55638, "credit_id": "52fe4770c3a368484e0c7051", "cast_id": 7, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 3}, {"name": "Chris Brown", "character": "Alex", "id": 31136, "credit_id": "52fe4770c3a368484e0c7055", "cast_id": 8, "profile_path": "/4k8sacCMG9jI2jo7x5XVSzq2Mnt.jpg", "order": 4}, {"name": "Arielle Kebbel", "character": "Gina", "id": 20373, "credit_id": "52fe4770c3a368484e0c7059", "cast_id": 9, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 5}, {"name": "Jerry Ferrara", "character": "Jeremy", "id": 98953, "credit_id": "52fe4770c3a368484e0c705d", "cast_id": 10, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 6}, {"name": "Meagan Good", "character": "Mya", "id": 22122, "credit_id": "52fe4770c3a368484e0c7061", "cast_id": 11, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 7}, {"name": "Regina Hall", "character": "Candace", "id": 35705, "credit_id": "52fe4770c3a368484e0c7065", "cast_id": 12, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 8}, {"name": "Terrence Jenkins", "character": "Michael", "id": 143242, "credit_id": "52fe4770c3a368484e0c7069", "cast_id": 13, "profile_path": "/h9hYAsDHevmr3mHFpP8CbsX0BUA.jpg", "order": 9}, {"name": "Jenifer Lewis", "character": "Loretta", "id": 15899, "credit_id": "52fe4770c3a368484e0c706d", "cast_id": 14, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 10}, {"name": "Romany Malco", "character": "Zeke", "id": 71530, "credit_id": "52fe4770c3a368484e0c7071", "cast_id": 15, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 11}, {"name": "Gary Owen", "character": "Bennett", "id": 214108, "credit_id": "52fe4770c3a368484e0c7075", "cast_id": 16, "profile_path": "/419tCojrRrEDhINC38wXuiUOTC4.jpg", "order": 12}, {"name": "La La Anthony", "character": "Sonia", "id": 1034453, "credit_id": "52fe4770c3a368484e0c7079", "cast_id": 17, "profile_path": "/aejPE9ZCj0SMWO9ovjYKk0Uuyff.jpg", "order": 13}, {"name": "Sherri Shepherd", "character": "Vicki", "id": 109561, "credit_id": "52fe4770c3a368484e0c707d", "cast_id": 20, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 14}, {"name": "Wendy Williams", "character": "Gail", "id": 540281, "credit_id": "52fe4770c3a368484e0c7081", "cast_id": 21, "profile_path": "/s7zL8AawUQhN95Bcnbw2n6M5NOc.jpg", "order": 15}, {"name": "Jessica Camacho", "character": "Melissa", "id": 1030995, "credit_id": "52fe4770c3a368484e0c70a9", "cast_id": 28, "profile_path": "/51pVkQBx30Pn0ScWXCtJSyVb75N.jpg", "order": 16}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4770c3a368484e0c70a5", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 6.6, "runtime": 122}, "10320": {"poster_path": "/fuCino2dZ5i7WwnzGxAUV1MrmRA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A female journalist (Naomi Watts) must prevent evil Samara from taking possession of her son's (David Dorfman) soul.", "video": false, "id": 10320, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Ring Two", "tagline": "The dead don't sleep.", "vote_count": 94, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/xk4Yrpz00gxitMLCLCUVOjvmkOq.jpg", "id": 14563, "name": "The Ring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377109", "adult": false, "backdrop_path": "/tidW5tNNP99fIxbG3slm5ZnjYEq.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "BenderSpink", "id": 6363}, {"name": "MacDonald/Parkes Productions", "id": 384}], "release_date": "2005-03-17", "popularity": 0.603405240620078, "original_title": "The Ring Two", "budget": 0, "cast": [{"name": "Naomi Watts", "character": "Rachel Keller", "id": 3489, "credit_id": "52fe43589251416c7500cdf7", "cast_id": 10, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Simon Baker", "character": "Max Rourke", "id": 1284159, "credit_id": "52fe43599251416c7500ce33", "cast_id": 27, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 1}, {"name": "Elizabeth Perkins", "character": "Dr. Emma Temple", "id": 20, "credit_id": "52fe43589251416c7500cdfb", "cast_id": 13, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 2}, {"name": "David Dorfman", "character": "Aidan Keller", "id": 26292, "credit_id": "52fe43589251416c7500cdff", "cast_id": 14, "profile_path": "/hfdEh049JW6uxjJqp9zqaNX4hFC.jpg", "order": 3}, {"name": "Gary Cole", "character": "Martin Savide", "id": 21163, "credit_id": "52fe43599251416c7500ce03", "cast_id": 15, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Sissy Spacek", "character": "Evelyn", "id": 5606, "credit_id": "52fe43599251416c7500ce07", "cast_id": 16, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 5}, {"name": "Ryan Merriman", "character": "Jake", "id": 57136, "credit_id": "52fe43599251416c7500ce0b", "cast_id": 17, "profile_path": "/sdo2IMtBRjiIJOLpmBrebAJaF89.jpg", "order": 6}, {"name": "Emily VanCamp", "character": "Emily", "id": 84247, "credit_id": "52fe43599251416c7500ce0f", "cast_id": 18, "profile_path": "/2nBBndedoyJvuDaUwZ1nNgip6Tn.jpg", "order": 7}, {"name": "Kelly Overton", "character": "Betsy", "id": 61829, "credit_id": "52fe43599251416c7500ce13", "cast_id": 19, "profile_path": "/z4ConG73glBC7RJPOUvClLlb0k5.jpg", "order": 8}, {"name": "James Lesure", "character": "Doctor", "id": 155743, "credit_id": "52fe43599251416c7500ce17", "cast_id": 20, "profile_path": "/nDpg0Muebx45YUDM7ROywgVVxeZ.jpg", "order": 9}, {"name": "Daveigh Chase", "character": "Samara (archive footage)", "id": 1580, "credit_id": "52fe43599251416c7500ce1b", "cast_id": 21, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 10}, {"name": "Kelly Stables", "character": "Evil Samara", "id": 107791, "credit_id": "52fe43599251416c7500ce1f", "cast_id": 22, "profile_path": "/vw7kfaITPSFNwQrDMrubNOt7uuZ.jpg", "order": 11}, {"name": "Cooper Thornton", "character": "Father of Emily", "id": 162828, "credit_id": "52fe43599251416c7500ce23", "cast_id": 23, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 12}, {"name": "Marilyn McIntyre", "character": "Mother of Emily", "id": 167098, "credit_id": "52fe43599251416c7500ce27", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Jesse Burch", "character": "Male Reporter", "id": 169672, "credit_id": "52fe43599251416c7500ce2b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Mary Elizabeth Winstead", "character": "Young Evelyn", "id": 17628, "credit_id": "52fe43599251416c7500ce2f", "cast_id": 26, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 15}], "directors": [{"name": "Hideo Nakata", "department": "Directing", "job": "Director", "credit_id": "52fe43589251416c7500cdc3", "profile_path": "/fQ3XJXTNpxzt6gMpMM0pJOyuibA.jpg", "id": 26875}], "vote_average": 5.6, "runtime": 110}, "10323": {"poster_path": "/75OBW467vx8ceJMSRK4NhOXk5Rc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41092328, "overview": "To win the right to marry his love, the beautiful princess Andromeda, and fulfil his destiny, Perseus must complete various tasks including taming Pegasus, capturing Medusa's head, and battling the Kraken monster.", "video": false, "id": 10323, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Clash of the Titans", "tagline": "You will feel the power. Live the adventure. Experience the fantastic.", "vote_count": 53, "homepage": "http://www.warnervideo.com/clashofthetitans1981/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082186", "adult": false, "backdrop_path": "/5xh0qSAIBnE4RlntpjlVUAWKObn.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Peerford Ltd.", "id": 8846}], "release_date": "1981-06-12", "popularity": 0.395131987358523, "original_title": "Clash of the Titans", "budget": 15000000, "cast": [{"name": "Laurence Olivier", "character": "Zeus", "id": 3359, "credit_id": "52fe43599251416c7500cf0f", "cast_id": 1, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 0}, {"name": "Claire Bloom", "character": "Hera", "id": 29545, "credit_id": "52fe43599251416c7500cf13", "cast_id": 2, "profile_path": "/4x0Cfh1g8apqOPio8AJx9oUV9mK.jpg", "order": 1}, {"name": "Maggie Smith", "character": "Thetis", "id": 10978, "credit_id": "52fe43599251416c7500cf17", "cast_id": 3, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 2}, {"name": "Jack Gwillim", "character": "Poseidon", "id": 13331, "credit_id": "52fe43599251416c7500cf1b", "cast_id": 4, "profile_path": "/6NOuBVu9fSWObuONEfuCtWfViBJ.jpg", "order": 3}, {"name": "Harry Hamlin", "character": "Perseus", "id": 64825, "credit_id": "52fe43599251416c7500cf2b", "cast_id": 7, "profile_path": "/1GyWuD8en3R7geCakmvzCRyvKod.jpg", "order": 4}, {"name": "Ursula Andress", "character": "Aphrodite", "id": 9871, "credit_id": "52fe43599251416c7500cf53", "cast_id": 14, "profile_path": "/omY7AbTTKODYR730aHtB9UNaGM0.jpg", "order": 5}, {"name": "Burgess Meredith", "character": "Ammon", "id": 16523, "credit_id": "52fe43599251416c7500cf57", "cast_id": 15, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 6}, {"name": "Susan Fleetwood", "character": "Athena", "id": 87415, "credit_id": "52fe43599251416c7500cf5b", "cast_id": 16, "profile_path": "/sOcuuRW1sr9DIxvTIpPb30JBKY5.jpg", "order": 7}, {"name": "Pat Roach", "character": "Hephaestus", "id": 10942, "credit_id": "52fe43599251416c7500cf5f", "cast_id": 17, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 8}, {"name": "Judi Bowker", "character": "Andromeda", "id": 26256, "credit_id": "52fe43599251416c7500cf63", "cast_id": 18, "profile_path": "/yo92o0WES6AGcPbQKMDbRmANV4G.jpg", "order": 9}, {"name": "Si\u00e2n Phillips", "character": "Cassiopeia", "id": 12522, "credit_id": "52fe43599251416c7500cf67", "cast_id": 19, "profile_path": "/dihKDaexR40FUl4GGaoDb2RBhVx.jpg", "order": 10}, {"name": "Flora Robson", "character": "A Stygian Witch", "id": 30126, "credit_id": "52fe43599251416c7500cf6b", "cast_id": 20, "profile_path": "/oNESDzVvnZbQx4aAEEVUXOKCS21.jpg", "order": 11}, {"name": "Anna Manahan", "character": "A Stygian Witch", "id": 975564, "credit_id": "52fe43599251416c7500cf6f", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Freda Jackson", "character": "A Stygian Witch", "id": 39002, "credit_id": "52fe43599251416c7500cf73", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Tim Pigott-Smith", "character": "Thallo", "id": 11276, "credit_id": "52fe43599251416c7500cf77", "cast_id": 23, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 14}, {"name": "Neil McCarthy", "character": "Calibos", "id": 2601, "credit_id": "52fe43599251416c7500cf7b", "cast_id": 24, "profile_path": "/sNQxZARN2qUtNzL28oyJnmuZWGe.jpg", "order": 15}, {"name": "Donald Houston", "character": "Acrisius", "id": 38358, "credit_id": "52fe43599251416c7500cf7f", "cast_id": 25, "profile_path": "/yyMettco7cwI341gCc6JLm0shRq.jpg", "order": 16}, {"name": "Vida Taylor", "character": "Danae", "id": 955663, "credit_id": "52fe43599251416c7500cf83", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Harry Jones", "character": "Huntsman", "id": 121112, "credit_id": "52fe43599251416c7500cf87", "cast_id": 27, "profile_path": null, "order": 18}], "directors": [{"name": "Desmond Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43599251416c7500cf21", "profile_path": null, "id": 64823}], "vote_average": 6.9, "runtime": 118}, "2133": {"poster_path": "/uARMPDyjiENKyUz7JRmQmLCH8L5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 325756637, "overview": "In October 1991, a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail. Magnificent foreshadowing and anticipation fill this true-life drama while minute details of the fishing boats, their gear and the weather are juxtaposed with the sea adventure.", "video": false, "id": 2133, "genres": [{"id": 18, "name": "Drama"}], "title": "The Perfect Storm", "tagline": "The storm is coming.", "vote_count": 145, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0177971", "adult": false, "backdrop_path": "/ht1Sgx744CIYeFgsZTdwwK70HyO.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Baltimore Spring Creek Productions", "id": 16061}, {"name": "Radiant Productions", "id": 18990}], "release_date": "2000-06-26", "popularity": 1.50515829265432, "original_title": "The Perfect Storm", "budget": 120000000, "cast": [{"name": "George Clooney", "character": "Capt. Billy Tyne", "id": 1461, "credit_id": "52fe4339c3a36847f8043acb", "cast_id": 16, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Bobby Shatford", "id": 13240, "credit_id": "52fe4339c3a36847f8043acf", "cast_id": 17, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Diane Lane", "character": "Christina \" Chris \" Cotter", "id": 2882, "credit_id": "52fe4339c3a36847f8043ad3", "cast_id": 18, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 2}, {"name": "John C. Reilly", "character": "Dale \" Murp \" Murphy", "id": 4764, "credit_id": "52fe4339c3a36847f8043ad7", "cast_id": 19, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 3}, {"name": "William Fichtner", "character": "David \" Sully \" Sullivan", "id": 886, "credit_id": "52fe4339c3a36847f8043adb", "cast_id": 20, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 4}, {"name": "Bob Gunton", "character": "Alexander McAnally III", "id": 4029, "credit_id": "52fe4339c3a36847f8043adf", "cast_id": 21, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 5}, {"name": "Karen Allen", "character": "Melissa Brown", "id": 650, "credit_id": "52fe4339c3a36847f8043ae3", "cast_id": 22, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 6}, {"name": "Allen Payne", "character": "Alfred Pierre", "id": 32486, "credit_id": "52fe4339c3a36847f8043ae7", "cast_id": 24, "profile_path": "/yKbFOE7R0PwyKVUDJyuChXUNB8r.jpg", "order": 7}, {"name": "Mary Elizabeth Mastrantonio", "character": "Linda Greenlaw", "id": 1161, "credit_id": "52fe4339c3a36847f8043aeb", "cast_id": 25, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 8}, {"name": "John Hawkes", "character": "Mike 'Bugsy' Moran", "id": 16861, "credit_id": "52fe4339c3a36847f8043aef", "cast_id": 26, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 9}, {"name": "Cherry Jones", "character": "Edie Bailey", "id": 1956, "credit_id": "52fe4339c3a36847f8043af3", "cast_id": 27, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 10}, {"name": "Christopher McDonald", "character": "Todd Gross", "id": 4443, "credit_id": "52fe4339c3a36847f8043af7", "cast_id": 28, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 11}, {"name": "Michael Ironside", "character": "Bob Brown", "id": 11086, "credit_id": "52fe4339c3a36847f8043afb", "cast_id": 29, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 12}, {"name": "Rusty Schwimmer", "character": "Irene 'Big Red' Johnson", "id": 34407, "credit_id": "52fe4339c3a36847f8043aff", "cast_id": 30, "profile_path": "/5syOxoKZboIDq5r5cQCfOpDyaoQ.jpg", "order": 13}, {"name": "Janet Wright", "character": "Ethel Shatford", "id": 106460, "credit_id": "52fe4339c3a36847f8043b03", "cast_id": 31, "profile_path": "/8MC9PGDb0lqKbpwwUfTzNxE8k9P.jpg", "order": 14}, {"name": "Dash Mihok", "character": "Sgt. Jeremy Mitchell", "id": 6066, "credit_id": "52fe4339c3a36847f8043b07", "cast_id": 32, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 15}, {"name": "Josh Hopkins", "character": "Capt. Darryl Ennis", "id": 31532, "credit_id": "52fe4339c3a36847f8043b0b", "cast_id": 33, "profile_path": "/4FF6p6G6SAUDJcfOx6GSFQrfTfq.jpg", "order": 16}, {"name": "Todd Kimsey", "character": "Lt. Rob Pettit", "id": 170805, "credit_id": "52fe4339c3a36847f8043b0f", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Chris Palermo", "character": "Flight Engineer Borgers", "id": 35546, "credit_id": "52fe4339c3a36847f8043b13", "cast_id": 35, "profile_path": "/tt6esR3LjJ3XOVknYzCTXdHtpii.jpg", "order": 18}, {"name": "Wiley M. Pickett", "character": "Sgt. Millard Jones", "id": 104191, "credit_id": "52fe4339c3a36847f8043b17", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Hayden Tank", "character": "Dale Murphy, Jr.", "id": 156927, "credit_id": "52fe4339c3a36847f8043b1b", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Merle Kennedy", "character": "Debra Murphy", "id": 105000, "credit_id": "52fe4339c3a36847f8043b1f", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Jennifer Sommerfeld", "character": "Alfred Pierre's Girlfriend", "id": 37624, "credit_id": "52fe4339c3a36847f8043b23", "cast_id": 39, "profile_path": "/wxLnDRYapdJIcUbWd7rFzSJdFzk.jpg", "order": 22}, {"name": "Joseph D. Reitman", "character": "Douglas Kosco", "id": 58620, "credit_id": "52fe4339c3a36847f8043b27", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Sandy Ward", "character": "Quentin - The Old Timer", "id": 102823, "credit_id": "52fe4339c3a36847f8043b2b", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Melissa Samuels", "character": "Pam - Todd Gross' Assistant", "id": 177621, "credit_id": "52fe4339c3a36847f8043b2f", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Steven Barr", "character": "Commander Brudnicki", "id": 26994, "credit_id": "52fe4339c3a36847f8043b33", "cast_id": 43, "profile_path": null, "order": 26}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe4339c3a36847f8043a73", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 6.0, "runtime": 130}, "10326": {"poster_path": "/AvkLZ5EqehwUlJD93ZeobesDmHB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128000000, "overview": "A 1939 test pilot asks his best friend to use him as a guinea pig for a cryogenics experiment. Daniel McCormick wants to be frozen for a year so that he doesn't have to watch his love lying in a coma. The next thing Daniel knows is that he's been awoken in 1992.", "video": false, "id": 10326, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Forever Young", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104291", "adult": false, "backdrop_path": "/5EYLPXzlU2phGotXqW1qAE9bGnh.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Icon Entertainment International", "id": 4564}], "release_date": "1992-12-16", "popularity": 0.431187129173771, "original_title": "Forever Young", "budget": 0, "cast": [{"name": "Mel Gibson", "character": "Capt. Daniel McCormick", "id": 2461, "credit_id": "52fe43599251416c7500d025", "cast_id": 7, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Claire Cooper", "id": 8944, "credit_id": "52fe43599251416c7500d029", "cast_id": 8, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Nat Cooper", "id": 109, "credit_id": "52fe43599251416c7500d02d", "cast_id": 9, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Isabel Glasser", "character": "Helen", "id": 64826, "credit_id": "52fe43599251416c7500d031", "cast_id": 10, "profile_path": "/fPSHD9NUMLges3NDex1NTsQgasC.jpg", "order": 3}, {"name": "George Wendt", "character": "Harry Finley", "id": 66606, "credit_id": "52fe43599251416c7500d03b", "cast_id": 12, "profile_path": "/lSdmC56kCl08Wr8wEE8ff2KXrhr.jpg", "order": 4}, {"name": "Joe Morton", "character": "Cameron", "id": 3977, "credit_id": "52fe43599251416c7500d03f", "cast_id": 13, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "Nicolas Surovy", "character": "John", "id": 82433, "credit_id": "52fe43599251416c7500d043", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "David Marshall Grant", "character": "Lt. Col. Wilcox USAF", "id": 24535, "credit_id": "52fe43599251416c7500d047", "cast_id": 15, "profile_path": "/tKe6LIoceX8738rIELToYMuefCH.jpg", "order": 7}, {"name": "Robert Hy Gorman", "character": "Felix", "id": 84598, "credit_id": "52fe43599251416c7500d04b", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Michael A. Goorjian", "character": "Steven", "id": 49424, "credit_id": "5516cab79251416f0a000114", "cast_id": 48, "profile_path": "/y8yhMiLlNDnaxGpDkhHaj18gtAS.jpg", "order": 9}, {"name": "Veronica Lauren", "character": "Alice", "id": 76031, "credit_id": "5516cada9251416f12000126", "cast_id": 49, "profile_path": null, "order": 10}, {"name": "Art LaFleur", "character": "Alice's Father", "id": 44792, "credit_id": "5516cb03c3a36862f900012b", "cast_id": 50, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 11}, {"name": "Eric Pierpoint", "character": "Fred", "id": 155996, "credit_id": "5516cb25c3a36862f9000131", "cast_id": 51, "profile_path": "/ve5RokAerAN3H5wgobvI5KIobdL.jpg", "order": 12}, {"name": "Walton Goggins", "character": "Gate MP", "id": 27740, "credit_id": "5516cb4c9251416f04000152", "cast_id": 52, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 13}, {"name": "Amanda Foreman", "character": "Debbie", "id": 13024, "credit_id": "5516cb6bc3a36862f3000151", "cast_id": 53, "profile_path": "/fitfsjRoC2i8YocBndcOFOuV7EU.jpg", "order": 14}, {"name": "Karla Tamburrelli", "character": "Blanche Finley", "id": 33491, "credit_id": "5516cb899251416efe000125", "cast_id": 54, "profile_path": "/oJB0bnFcwHgh1ZnbWiszTWjw5Cz.jpg", "order": 15}], "directors": [{"name": "Steve Miner", "department": "Directing", "job": "Director", "credit_id": "52fe43599251416c7500d037", "profile_path": "/yk90jxBifKosxEyP8CITJk1BTtt.jpg", "id": 58712}], "vote_average": 5.8, "runtime": 102}, "2135": {"poster_path": "/elWjfgdsKQbk5E02npdy5Q0Ziee.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123729176, "overview": "Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds humankind divided into two warring races.", "video": false, "id": 2135, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Time Machine", "tagline": "The greatest adventure THROUGH all time!", "vote_count": 157, "homepage": "http://timemachine.countingdown.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0268695", "adult": false, "backdrop_path": "/a1J0zF6k6RYK9Cfp7rllXwUmB4L.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Arnold Leibovit Entertainment", "id": 967}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2002-03-04", "popularity": 0.611837201014824, "original_title": "The Time Machine", "budget": 80000000, "cast": [{"name": "Guy Pearce", "character": "Alexander Hartdegen", "id": 529, "credit_id": "52fe4339c3a36847f8043c55", "cast_id": 17, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Samantha Mumba", "character": "Mara", "id": 97049, "credit_id": "52fe4339c3a36847f8043c71", "cast_id": 25, "profile_path": "/tYN2uZAe0OWHM10epuNk1O74IWh.jpg", "order": 1}, {"name": "Phyllida Law", "character": "Mrs. Watchett", "id": 17787, "credit_id": "52fe4339c3a36847f8043c59", "cast_id": 19, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 2}, {"name": "Laura Kirk", "character": "Flower Seller", "id": 21881, "credit_id": "52fe4339c3a36847f8043c5d", "cast_id": 20, "profile_path": "/s8isCe7huZp1PR5SuSy5e4y8yGb.jpg", "order": 3}, {"name": "Josh Stamberg", "character": "Motorist", "id": 21882, "credit_id": "52fe4339c3a36847f8043c61", "cast_id": 21, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 4}, {"name": "Sienna Guillory", "character": "Emma", "id": 7055, "credit_id": "52fe4339c3a36847f8043c65", "cast_id": 22, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 5}, {"name": "Max Baker", "character": "Roboter", "id": 10960, "credit_id": "52fe4339c3a36847f8043c69", "cast_id": 23, "profile_path": "/v0JLmmMcCG97Kz7xQ8qpj6tNAGj.jpg", "order": 6}, {"name": "Mark Addy", "character": "David Filby", "id": 13633, "credit_id": "52fe4339c3a36847f8043c6d", "cast_id": 24, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 7}, {"name": "Jeremy Irons", "character": "\u00dcber-Morlock", "id": 16940, "credit_id": "52fe4339c3a36847f8043c75", "cast_id": 26, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 8}], "directors": [{"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4339c3a36847f8043bf7", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 5.8, "runtime": 96}, "10328": {"poster_path": "/foIhEPQoqDctfwsHmmYwbNz5A2g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85313124, "overview": "A group of aliens return to earth to take back some cocoons of their people they left behind from an earlier trip. They kept the recovered cocoons in the swimming pool of a house they rented in a small Florida town. Their mission is hampered by a number of old people from an elderly home nearby, who have been secretly using the pool and discovering the unusual power of these cocoons.", "video": false, "id": 10328, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Cocoon", "tagline": "Beyond the innocence of youth, and the wisdom of age, lies the wonder of... Cocoon", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o32F4wuQJPBnP5FVkOGP9DxGYJI.jpg", "poster_path": "/gl5n88EJeVEMVv3rrGsDUUtibHf.jpg", "id": 86307, "name": "Cocoon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088933", "adult": false, "backdrop_path": "/k6UMKqeJ4v749zvQaz2UBDjTNv.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1985-06-21", "popularity": 0.564425457668256, "original_title": "Cocoon", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Jack Bonner", "id": 26472, "credit_id": "52fe435a9251416c7500d163", "cast_id": 14, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Tahnee Welch", "character": "Kitty", "id": 194670, "credit_id": "52fe435a9251416c7500d173", "cast_id": 18, "profile_path": "/2ukOU34TyotPuy8sYNMW4w1kOcX.jpg", "order": 1}, {"name": "Brian Dennehy", "character": "Walter", "id": 6197, "credit_id": "52fe435a9251416c7500d159", "cast_id": 12, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 2}, {"name": "Don Ameche", "character": "Arthur Selwyn", "id": 18156, "credit_id": "52fe435a9251416c7500d14d", "cast_id": 9, "profile_path": "/nEALranFWJsZoAyNqgLX28kdM9n.jpg", "order": 3}, {"name": "Wilford Brimley", "character": "Benjamin Luckett", "id": 11065, "credit_id": "52fe435a9251416c7500d151", "cast_id": 10, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 4}, {"name": "Hume Cronyn", "character": "Joseph Finley", "id": 7668, "credit_id": "52fe435a9251416c7500d155", "cast_id": 11, "profile_path": "/28X1o4MxUHq4pgyv5VrsdpNSdB4.jpg", "order": 5}, {"name": "Maureen Stapleton", "character": "Mary Luckett", "id": 21151, "credit_id": "52fe435a9251416c7500d167", "cast_id": 15, "profile_path": "/w0H1432eANSJBjk6SG6xOVWnfuW.jpg", "order": 6}, {"name": "Jack Gilford", "character": "Bernie Lefkowitz", "id": 64929, "credit_id": "52fe435a9251416c7500d16b", "cast_id": 16, "profile_path": "/fXrElDPanfn1Trb1kkyK0HEnw9q.jpg", "order": 7}, {"name": "Jessica Tandy", "character": "Alma Finley", "id": 5698, "credit_id": "52fe435a9251416c7500d16f", "cast_id": 17, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 8}, {"name": "Clint Howard", "character": "John Dexter", "id": 15661, "credit_id": "52fe435a9251416c7500d177", "cast_id": 19, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 9}, {"name": "Linda Harrison", "character": "Susan", "id": 13260, "credit_id": "52fe435a9251416c7500d17b", "cast_id": 20, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 10}, {"name": "Gwen Verdon", "character": "Bess McCarthy", "id": 54122, "credit_id": "52fe435a9251416c7500d17f", "cast_id": 21, "profile_path": "/wDs6NbixGiYxXsVZawrWKVGbPZV.jpg", "order": 11}, {"name": "Herta Ware", "character": "Rosie Lefkowitz", "id": 136482, "credit_id": "52fe435a9251416c7500d183", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Barret Oliver", "character": "David", "id": 29508, "credit_id": "52fe435a9251416c7500d187", "cast_id": 23, "profile_path": "/tRcMJl1gNu4KRjnZ7wpENLaJ46Q.jpg", "order": 13}, {"name": "Tyrone Power Jr.", "character": "Pillsbury", "id": 102392, "credit_id": "52fe435a9251416c7500d18b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Clint Howard", "character": "John Dexter", "id": 15661, "credit_id": "52fe435a9251416c7500d18f", "cast_id": 25, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 15}, {"name": "Charles Lampkin", "character": "Pops", "id": 140584, "credit_id": "52fe435a9251416c7500d193", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Mike Nomad", "character": "Doc", "id": 92821, "credit_id": "52fe435a9251416c7500d197", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Jorge Gil", "character": "Lou Pine", "id": 190194, "credit_id": "52fe435a9251416c7500d19b", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "James Ritz", "character": "DMV Clerk", "id": 129466, "credit_id": "52fe435a9251416c7500d19f", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Charles Rainsbury", "character": "Smiley", "id": 1205162, "credit_id": "52fe435a9251416c7500d1a3", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Wendy J. Cooke", "character": "Alien", "id": 1164530, "credit_id": "52fe435a9251416c7500d1a7", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Pamela Prescott", "character": "Alien", "id": 1205163, "credit_id": "52fe435a9251416c7500d1ab", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Dinah Sue Rowley", "character": "Alien", "id": 1205164, "credit_id": "52fe435a9251416c7500d1af", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Gabriella Sinclair", "character": "Alien", "id": 1205165, "credit_id": "52fe435a9251416c7500d1b3", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Cyndi Vicino", "character": "Bank Teller", "id": 1205166, "credit_id": "52fe435a9251416c7500d1b7", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Russ Wheeler", "character": "Doctor", "id": 201224, "credit_id": "52fe435a9251416c7500d1bb", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Harold Bergman", "character": "Reverend", "id": 56039, "credit_id": "52fe435a9251416c7500d1bf", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Ivy Thayer", "character": "Waitress", "id": 39924, "credit_id": "52fe435a9251416c7500d1c3", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Fred Broderson", "character": "Kirk", "id": 1205167, "credit_id": "52fe435a9251416c7500d1c7", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Mark Cheresnick", "character": "Salvatore", "id": 1205168, "credit_id": "52fe435a9251416c7500d1cb", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Bette Shoor", "character": "Realtor", "id": 1205169, "credit_id": "52fe435a9251416c7500d1cf", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Mark Simpson", "character": "Coast Guard First Class BM", "id": 972383, "credit_id": "52fe435a9251416c7500d1d3", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Robert Slacum Jr.", "character": "Coast Guard Second Class BM", "id": 1205170, "credit_id": "52fe435a9251416c7500d1d7", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Rance Howard", "character": "St. Petersburg Dectective", "id": 22250, "credit_id": "53832ad0c3a368737d0038ef", "cast_id": 58, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 34}, {"name": "Jean Speegle Howard", "character": "Woman", "id": 8188, "credit_id": "52fe435a9251416c7500d1df", "cast_id": 45, "profile_path": "/6GxAKydN0p77XI0ixTAJeWFPiRR.jpg", "order": 35}, {"name": "Charles Voelker", "character": "Leader, New Yorkers Dance Band", "id": 1205171, "credit_id": "52fe435a9251416c7500d1e3", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Irving Krone", "character": "Jasper", "id": 1205172, "credit_id": "52fe435a9251416c7500d1e7", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Clarence Thomas", "character": "Policeman", "id": 942263, "credit_id": "52fe435a9251416c7500d1eb", "cast_id": 48, "profile_path": null, "order": 38}, {"name": "Ted Science", "character": "Policeman", "id": 1205173, "credit_id": "52fe435a9251416c7500d1ef", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Jim Fitzpatrick", "character": "Dock Worker (uncredited)", "id": 1205174, "credit_id": "52fe435a9251416c7500d1f3", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Tracy Roberts", "character": "Bar Patron (uncredited)", "id": 93695, "credit_id": "52fe435a9251416c7500d1f7", "cast_id": 57, "profile_path": null, "order": 41}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe435a9251416c7500d15f", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.5, "runtime": 117}, "10330": {"poster_path": "/nFuJqQ1MRTlEJZQhZKDAxET4tJU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jamie Lee Curtis stars as Tess Coleman, mother of 15-year-old Anna (Lindsay Lohan), in this remake of the 1976 Jodie Foster comedy. Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fianc\u00e9 (Mark Harmon). When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.", "video": false, "id": 10330, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Freaky Friday", "tagline": "Mondays are manic. Wednesdays are wild. And Fridays are about to get a little freaky.", "vote_count": 169, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 262995, "name": "Freaky Friday"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0322330", "adult": false, "backdrop_path": "/w6TR7kTsKmlBYps2i5hzoukBLCn.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-08-03", "popularity": 0.984302364031311, "original_title": "Freaky Friday", "budget": 0, "cast": [{"name": "Jamie Lee Curtis", "character": "Tess Coleman", "id": 8944, "credit_id": "52fe435a9251416c7500d2d1", "cast_id": 7, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 0}, {"name": "Lindsay Lohan", "character": "Anna Coleman", "id": 49265, "credit_id": "52fe435a9251416c7500d2d5", "cast_id": 8, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 1}, {"name": "Mark Harmon", "character": "Ryan", "id": 19728, "credit_id": "52fe435b9251416c7500d2d9", "cast_id": 9, "profile_path": "/siHSN1px6pn3EQ3UUj1rOnfpHjI.jpg", "order": 2}, {"name": "Harold Gould", "character": "Grandpa", "id": 14833, "credit_id": "52fe435b9251416c7500d2dd", "cast_id": 10, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 3}, {"name": "Haley Hudson", "character": "Peg", "id": 159985, "credit_id": "52fe435b9251416c7500d2e1", "cast_id": 12, "profile_path": "/4He22Zr4W5w2oHUzqnAnxtNe1fa.jpg", "order": 4}, {"name": "Chad Michael Murray", "character": "Jake", "id": 62747, "credit_id": "52fe435b9251416c7500d2eb", "cast_id": 14, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 5}, {"name": "Dina Spybey-Waters", "character": "Dottie Robertson", "id": 56567, "credit_id": "52fe435b9251416c7500d2ef", "cast_id": 15, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 6}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe435b9251416c7500d2e7", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.8, "runtime": 97}, "10331": {"poster_path": "/hLRyP2V8oLQ4MKNcZ131jOXmfww.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of people try to survive an attack of bloodthirsty zombies while trapped in a rural Pennsylvania farmhouse. Although not the first zombie film, Night of the Living Dead is the progenitor of the contemporary \"zombie apocalypse\" horror film, and it greatly influenced the modern pop-culture zombie archetype.", "video": false, "id": 10331, "genres": [{"id": 27, "name": "Horror"}], "title": "Night of the Living Dead", "tagline": "If it doesn't scare you, you're already dead!", "vote_count": 164, "homepage": "", "belongs_to_collection": {"backdrop_path": "/inPPfnJ9Wzc9rg1MpkPm0P3D9rJ.jpg", "poster_path": "/mSJ20RTWWgtt3aTyn1iwNZ9fbYl.jpg", "id": 261590, "name": "Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0063350", "adult": false, "backdrop_path": "/yzUc4vR6bQGK9HhCOUqxIsRM3r4.jpg", "production_companies": [{"name": "Image Ten", "id": 14121}, {"name": "Laurel Group", "id": 638}, {"name": "Market Square Productions", "id": 14122}, {"name": "Off Color Films", "id": 3139}], "release_date": "1968-10-01", "popularity": 0.5486682508452, "original_title": "Night of the Living Dead", "budget": 0, "cast": [{"name": "Duane Jones", "character": "Ben", "id": 97912, "credit_id": "52fe435b9251416c7500d351", "cast_id": 10, "profile_path": "/9JykB5zs5MVwzBQQXfxjNUbOGsj.jpg", "order": 0}, {"name": "Judith O'Dea", "character": "Barbra", "id": 97913, "credit_id": "52fe435b9251416c7500d355", "cast_id": 11, "profile_path": "/wRaaASNqF47tQGUogNgpc55bHha.jpg", "order": 1}, {"name": "Karl Hardman", "character": "Harry Cooper", "id": 97914, "credit_id": "52fe435b9251416c7500d359", "cast_id": 12, "profile_path": "/3zzyB9NUwoQpjwtoDlpSzF2wxYU.jpg", "order": 2}, {"name": "Marilyn Eastman", "character": "Helen Cooper", "id": 97915, "credit_id": "52fe435b9251416c7500d35d", "cast_id": 13, "profile_path": "/3zzyB9NUwoQpjwtoDlpSzF2wxYU.jpg", "order": 3}, {"name": "Keith Wayne", "character": "Tom", "id": 97916, "credit_id": "52fe435b9251416c7500d361", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Judith Ridley", "character": "Judy", "id": 97917, "credit_id": "52fe435b9251416c7500d365", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Kyra Schon", "character": "Karen Cooper", "id": 97918, "credit_id": "52fe435b9251416c7500d369", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Charles Craig", "character": "Newscaster / Zombie", "id": 97919, "credit_id": "52fe435b9251416c7500d36d", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "S. William Hinzman", "character": "Cemetery Zombie", "id": 97920, "credit_id": "52fe435b9251416c7500d371", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Bill 'Chilly Billy' Cardille", "character": "Field Reporter", "id": 97921, "credit_id": "52fe435b9251416c7500d375", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "George A. Romero", "character": "Washington Reporter", "id": 14999, "credit_id": "52fe435b9251416c7500d379", "cast_id": 20, "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "order": 10}, {"name": "Russell Streiner", "character": "Johnny", "id": 64833, "credit_id": "52fe435b9251416c7500d37d", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "John A. Russo", "character": "Washington Military Reporter", "id": 64831, "credit_id": "52fe435b9251416c7500d381", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "George A. Romero", "department": "Directing", "job": "Director", "credit_id": "52fe435b9251416c7500d34d", "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "id": 14999}], "vote_average": 7.0, "runtime": 96}, "2140": {"poster_path": "/eOBwDUiDLmz1BX8PQL5U1tQloRB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64437847, "overview": "Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.", "video": false, "id": 2140, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Kiss of the Dragon", "tagline": "Kiss Fear Goodbye", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0271027", "adult": false, "backdrop_path": "/kZMZ3PqcKmtBifHjfoI8JnURHJj.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Current Entertainment", "id": 972}, {"name": "Immortal Entertainment", "id": 973}], "release_date": "2001-07-06", "popularity": 0.56086122110291, "original_title": "Kiss of the Dragon", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Liu Jian", "id": 1336, "credit_id": "52fe433ac3a36847f8043f37", "cast_id": 18, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Bridget Fonda", "character": "Jessica Kamen", "id": 2233, "credit_id": "52fe433ac3a36847f8043f3b", "cast_id": 19, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 1}, {"name": "Tch\u00e9ky Karyo", "character": "Insp. Richard", "id": 10698, "credit_id": "52fe433ac3a36847f8043f3f", "cast_id": 20, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 2}, {"name": "Max Ryan", "character": "Lupo", "id": 21942, "credit_id": "52fe433ac3a36847f8043f43", "cast_id": 21, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 3}, {"name": "Ric Young", "character": "Mister Big", "id": 11397, "credit_id": "52fe433ac3a36847f8043f53", "cast_id": 26, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 4}, {"name": "Burt Kwouk", "character": "Uncle Tai", "id": 21944, "credit_id": "52fe433ac3a36847f8043f47", "cast_id": 23, "profile_path": "/7s1Sul5L6NU2TEfgLarBqrde65v.jpg", "order": 5}, {"name": "Laurence Ashley", "character": "Aja", "id": 21945, "credit_id": "52fe433ac3a36847f8043f4b", "cast_id": 24, "profile_path": "/85DqATSlGBXmh9GJ11WbdValFnO.jpg", "order": 6}, {"name": "Cyril Raffaelli", "character": "Twin", "id": 21946, "credit_id": "52fe433ac3a36847f8043f4f", "cast_id": 25, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 7}], "directors": [{"name": "Chris Nahon", "department": "Directing", "job": "Director", "credit_id": "52fe433ac3a36847f8043ed3", "profile_path": "/5ei81yfFCVBPdDw8AntZPM1U0Jy.jpg", "id": 21931}], "vote_average": 6.5, "runtime": 98}, "2142": {"poster_path": "/th2UDVewgUAfIXFUaWGWWBxCM91.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44862187, "overview": "Freddy Heflin is the sheriff of a place everyone calls \u201cCop Land\u201d \u2014 a small and seemingly peaceful town populated by the big city police officers he\u2019s long admired. Yet something ugly is taking place behind the town\u2019s peaceful facade. And when Freddy uncovers a massive, deadly conspiracy among these local residents, he is forced to take action and make a dangerous choice between protecting his idols and upholding the law.", "video": false, "id": 2142, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Cop Land", "tagline": "No One Is Above The Law.", "vote_count": 69, "homepage": "http://www.miramax.com/movie/cop-land", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118887", "adult": false, "backdrop_path": "/ginZN2Kk7KHUGs15BSTN24sQwUp.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Across the River Productions", "id": 978}, {"name": "Woods Entertainment", "id": 979}], "release_date": "1997-08-05", "popularity": 0.598649545531204, "original_title": "Cop Land", "budget": 15000000, "cast": [{"name": "Sylvester Stallone", "character": "Sheriff Freddy Heflin", "id": 16483, "credit_id": "52fe433ac3a36847f804405f", "cast_id": 15, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Harvey Keitel", "character": "Ray Donlan", "id": 1037, "credit_id": "52fe433ac3a36847f8044063", "cast_id": 16, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Gary \" Figgsy \" Figgis", "id": 11477, "credit_id": "52fe433ac3a36847f8044067", "cast_id": 17, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Robert De Niro", "character": "Lt. Moe Tilden", "id": 380, "credit_id": "52fe433ac3a36847f804406b", "cast_id": 18, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 3}, {"name": "Peter Berg", "character": "Joey Randone", "id": 36602, "credit_id": "52fe433ac3a36847f8044085", "cast_id": 25, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 4}, {"name": "Janeane Garofalo", "character": "Deputy Cindy Betts", "id": 21197, "credit_id": "52fe433ac3a36847f804406f", "cast_id": 20, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 5}, {"name": "Robert Patrick", "character": "Jack Rucker", "id": 418, "credit_id": "52fe433ac3a36847f8044073", "cast_id": 21, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 5}, {"name": "Michael Rapaport", "character": "Murray \" Superboy \" Babitch", "id": 4688, "credit_id": "52fe433ac3a36847f8044077", "cast_id": 22, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 6}, {"name": "Annabella Sciorra", "character": "Liz Randone", "id": 18750, "credit_id": "52fe433ac3a36847f804407b", "cast_id": 23, "profile_path": "/hYnhZFxfac6Q009StxjcF06iJXz.jpg", "order": 7}, {"name": "Noah Emmerich", "character": "Deputy Bill Geisler", "id": 11315, "credit_id": "52fe433ac3a36847f8044095", "cast_id": 28, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 8}, {"name": "Cathy Moriarty", "character": "Rose Donlan", "id": 14702, "credit_id": "52fe433ac3a36847f8044099", "cast_id": 29, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 9}, {"name": "John Spencer", "character": "Leo Crasky", "id": 34691, "credit_id": "52fe433ac3a36847f804409d", "cast_id": 30, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 10}, {"name": "Frank Vincent", "character": "PDA President Lassaro", "id": 7164, "credit_id": "52fe433ac3a36847f80440a1", "cast_id": 31, "profile_path": "/j8BhmYAt9ZPKfiRvT0RbC0zwCOI.jpg", "order": 11}, {"name": "Malik Yoba", "character": "Detective Carson", "id": 12977, "credit_id": "52fe433ac3a36847f80440a5", "cast_id": 32, "profile_path": "/v0BfJRbZ6ECq3VQ1YZRi7ONQ4T4.jpg", "order": 12}, {"name": "Arthur J. Nascarella", "character": "Frank Lagonda", "id": 28033, "credit_id": "52fe433ac3a36847f80440a9", "cast_id": 33, "profile_path": "/3hWjDrHfNSS1BxJ5GeIDtxm5975.jpg", "order": 13}, {"name": "Edie Falco", "character": "Berta", "id": 36190, "credit_id": "53d058e0c3a368777a0082e1", "cast_id": 34, "profile_path": "/fq3v805DiJUE5oMp1VnR5AQQ3Vy.jpg", "order": 14}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe433ac3a36847f804401f", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.6, "runtime": 104}, "10336": {"poster_path": "/jMKsirHIMY5QYiwb04PGTrwTABA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87840042, "overview": "After being murdered by corrupt colleagues in a covert government agency, Al Simmons (Michael Jai White) makes a pact with the devil to be resurrected to see his beloved wife Wanda (Theresa Randle). In exchange for his return to Earth, Simmons agrees to lead Hell's Army in the destruction of mankind.", "video": false, "id": 10336, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Spawn", "tagline": "Born in darkness. Sworn to justice.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120177", "adult": false, "backdrop_path": "/9lQKvI6hCqblUn1XgVqZbN7kl6.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Pull Down Your Pants Pictures", "id": 3907}, {"name": "Todd McFarlane Entertainment", "id": 23364}], "release_date": "1997-07-31", "popularity": 0.370049379898313, "original_title": "Spawn", "budget": 40000000, "cast": [{"name": "Michael Jai White", "character": "Al Simmons", "id": 64856, "credit_id": "52fe435b9251416c7500d503", "cast_id": 9, "profile_path": "/5iJ5lnq2ttl0uP7MORd6dUHUrIf.jpg", "order": 0}, {"name": "Martin Sheen", "character": "Jason Wynn", "id": 8349, "credit_id": "52fe435b9251416c7500d507", "cast_id": 13, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Clown / Violator", "id": 5723, "credit_id": "52fe435b9251416c7500d511", "cast_id": 15, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Theresa Randle", "character": "Wanda Blake", "id": 4604, "credit_id": "52fe435b9251416c7500d515", "cast_id": 16, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 3}, {"name": "Nicol Williamson", "character": "Cogliostro", "id": 51812, "credit_id": "52fe435b9251416c7500d519", "cast_id": 17, "profile_path": "/kCvjXpYSCYH14mo0gtRmnV7DroV.jpg", "order": 4}, {"name": " D.B. Sweeney", "character": "Terry Fitzgerald", "id": 61962, "credit_id": "52fe435b9251416c7500d51d", "cast_id": 18, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 5}, {"name": "Melinda Clarke", "character": "Jessica Priest", "id": 89251, "credit_id": "52fe435b9251416c7500d521", "cast_id": 19, "profile_path": "/hwhM70KOncsxVoQVzvs5U24m6VF.jpg", "order": 6}, {"name": "Miko Hughes", "character": "Zack", "id": 8186, "credit_id": "52fe435b9251416c7500d525", "cast_id": 20, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 7}, {"name": "Sydni Beaudoin", "character": "Cyan", "id": 1072036, "credit_id": "52fe435b9251416c7500d529", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Frank Welker", "character": "The Devil Malebolgia", "id": 15831, "credit_id": "52fe435b9251416c7500d52d", "cast_id": 22, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 9}], "directors": [{"name": "Mark A.Z. Dipp\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe435b9251416c7500d50d", "profile_path": "/aXHVL2NmsCnMgwnacF2YBkOJ73x.jpg", "id": 87130}], "vote_average": 5.1, "runtime": 96}, "10340": {"poster_path": "/kpfbF0C0lSvvKE3JQVuAGufA6UT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93600000, "overview": "Lady, a golden cocker spaniel, meets up with a mongrel dog who calls himself the Tramp. He is obviously from the wrong side of town, but happenings at Lady's home make her decide to travel with him for a while.", "video": false, "id": 10340, "genres": [{"id": 16, "name": "Animation"}], "title": "Lady and the Tramp", "tagline": "She's from the leash and license set... he's footloose and collar free!", "vote_count": 271, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8YIec6FKfOHn9uw7MMH1200wbyK.jpg", "poster_path": "/fvk72hTShONXVDDSdoTEVm7DJh0.jpg", "id": 97460, "name": "Lady and the Tramp Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0048280", "adult": false, "backdrop_path": "/osSsQ4QWXS7Flu3y39QqP924Lud.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1955-06-16", "popularity": 1.531393968252, "original_title": "Lady and the Tramp", "budget": 0, "cast": [{"name": "Peggy Lee", "character": "Darling / Si / Am / Peg (voice)", "id": 64870, "credit_id": "52fe435d9251416c7500d77f", "cast_id": 12, "profile_path": "/dtil2nERiDJjmVtvE1oS6YL3Q9W.jpg", "order": 0}, {"name": "Barbara Luddy", "character": "Lady (voice)", "id": 64871, "credit_id": "52fe435d9251416c7500d783", "cast_id": 14, "profile_path": "/cK7NjpqJmjaFTT52vwAq9bYH2VA.jpg", "order": 1}, {"name": "Larry Roberts", "character": "Tramp (voice)", "id": 64872, "credit_id": "52fe435d9251416c7500d787", "cast_id": 15, "profile_path": "/qwVxQaSTgOmpOb6JfflhWor4nDu.jpg", "order": 2}, {"name": "Bill Thompson", "character": "Jock / Bull / Policeman at Zoo / Dachsie / Joe (voice)", "id": 67230, "credit_id": "52fe435d9251416c7500d791", "cast_id": 17, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 3}, {"name": "Bill Baucom", "character": "Trusty (voice)", "id": 1022053, "credit_id": "52fe435d9251416c7500d795", "cast_id": 18, "profile_path": "/dXIjn8ZsTNBBiiA0rQ0uWDqg2ey.jpg", "order": 4}, {"name": "Stan Freberg", "character": "Beaver (voice)", "id": 110654, "credit_id": "52fe435d9251416c7500d799", "cast_id": 19, "profile_path": "/cV3AZiwx7FMBjApPh2oJkrqFKVY.jpg", "order": 5}, {"name": "Verna Felton", "character": "Aunt Sarah (voice)", "id": 67290, "credit_id": "52fe435d9251416c7500d79d", "cast_id": 20, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 6}, {"name": "Alan Reed", "character": "Boris (voice)", "id": 1944, "credit_id": "52fe435d9251416c7500d7a1", "cast_id": 21, "profile_path": "/8s1O9NJNM8kZQCmlvfYdFUiyODt.jpg", "order": 7}, {"name": "George Givot", "character": "Tony (voice)", "id": 124506, "credit_id": "52fe435d9251416c7500d7a5", "cast_id": 22, "profile_path": "/gd5xgniY8Ex6pEghzD1rZf1wMrD.jpg", "order": 8}, {"name": "Dal McKennon", "character": "Toughy / Professor / Pedro (voice)", "id": 44676, "credit_id": "52fe435d9251416c7500d7a9", "cast_id": 23, "profile_path": "/uL8UjbVwrKXGpMJ22nITyTSbHjU.jpg", "order": 9}, {"name": "Lee Millar", "character": "Jim Dear / Dog Catcher (voice)", "id": 148170, "credit_id": "52fe435d9251416c7500d7ad", "cast_id": 24, "profile_path": "/aZncFY7lKKI9NfX8i6VupJc41ZI.jpg", "order": 10}, {"name": "The Mellomen", "character": "Dogs (voice)", "id": 573997, "credit_id": "52fe435d9251416c7500d7b1", "cast_id": 25, "profile_path": "/zfvBnWCAjiL5bpyjAjJkUtIhJYs.jpg", "order": 11}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe435c9251416c7500d74b", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe435c9251416c7500d751", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe435c9251416c7500d757", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}], "vote_average": 6.4, "runtime": 76}, "18533": {"poster_path": "/1NIvCUisS19jADD7Ktm391iXkab.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A young man who was sentenced to 7 years on prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.", "video": false, "id": 18533, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bronson", "tagline": "The Man. The Myth. The Celebrity.", "vote_count": 88, "homepage": "http://www.bronsonthemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1172570", "adult": false, "backdrop_path": "/pkcSa3xIi1rNrivl5MRwtRgbEYI.jpg", "production_companies": [{"name": "Vertigo Films", "id": 10393}, {"name": "Aramid Entertainment Fund", "id": 3272}, {"name": "Str8jacket Creations", "id": 11366}, {"name": "EM Media", "id": 1917}, {"name": "4DH Films", "id": 11367}, {"name": "Perfume Films", "id": 11368}], "release_date": "2008-10-09", "popularity": 0.311079593166163, "original_title": "Bronson", "budget": 0, "cast": [{"name": "Tom Hardy", "character": "Michael Peterson (Charles Bronson)", "id": 2524, "credit_id": "52fe47849251416c7509c3eb", "cast_id": 4, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Matt King", "character": "Paul Daniels", "id": 23776, "credit_id": "52fe47849251416c7509c3ef", "cast_id": 5, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 1}, {"name": "James Lance", "character": "Phil", "id": 19775, "credit_id": "52fe47849251416c7509c3f3", "cast_id": 6, "profile_path": "/9xmBW177n0WfWjHa5AhV47zLuLD.jpg", "order": 2}, {"name": "Kelly Adams", "character": "Irene", "id": 125718, "credit_id": "52fe47849251416c7509c3f7", "cast_id": 7, "profile_path": "/pCnidIiMkcx9CXPl1vsZ7jfaTWR.jpg", "order": 3}, {"name": "Katy Barker", "character": "Julie", "id": 1117431, "credit_id": "52fe47849251416c7509c45f", "cast_id": 25, "profile_path": "/46EE8CpmPNHLDFViUHmRKLY66LV.jpg", "order": 4}, {"name": "Amanda Burton", "character": "Charlie's Mum", "id": 190405, "credit_id": "52fe47849251416c7509c463", "cast_id": 26, "profile_path": "/i3BJ9AnU9djtKswXgze17tlc24z.jpg", "order": 5}, {"name": "Andrew Forbes", "character": "Charlie's Dad", "id": 476761, "credit_id": "52fe47849251416c7509c467", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Jon House", "character": "Webber", "id": 1117432, "credit_id": "52fe47849251416c7509c46b", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Juliet Oldfield", "character": "Alison", "id": 1105701, "credit_id": "52fe47849251416c7509c46f", "cast_id": 29, "profile_path": "/kcVBUHpCIyymZ8p2N2JcEiZDAMa.jpg", "order": 8}, {"name": "Mark Powley", "character": "Andy Love / Friendly Screw", "id": 106385, "credit_id": "52fe47849251416c7509c477", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Hugh Ross", "character": "Uncle Jack", "id": 79648, "credit_id": "52fe47849251416c7509c47b", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Andrew St. John", "character": "Workshop Supervisor", "id": 1117433, "credit_id": "52fe47849251416c7509c47f", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Joe Tucker", "character": "John White", "id": 143181, "credit_id": "52fe47849251416c7509c483", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Tracy Wiles", "character": "Jewellery Shop Assistant 1", "id": 1264495, "credit_id": "52fe47849251416c7509c487", "cast_id": 35, "profile_path": "/f7ewibLNfSFvL51LLlw01BzP4UG.jpg", "order": 14}, {"name": "Luing Andrews", "character": "Hysterical Screw", "id": 1117430, "credit_id": "52fe47849251416c7509c45b", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Jonathan Phillips", "character": "Prison Governor", "id": 8547, "credit_id": "54db0fdcc3a36812240010e8", "cast_id": 36, "profile_path": "/9d7aKSqfqXHWaETmTKifetsekDa.jpg", "order": 16}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe47849251416c7509c3db", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 6.8, "runtime": 92}, "10345": {"poster_path": "/rarsqkzeUH1Ab4FxkTjFqIB91fs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78247647, "overview": "The extravagant cop Michael Dooley needs some help to fight a drug dealer who has tried to kill him. A \"friend\" gives him a dog named Jerry Lee (Officer Lewis), who has been trained to smell drugs. With his help, Dooley sets out to put his enemy behind the bars, but Jerry Lee has a personality of his own and works only when he wants to. On the other hand, the dog is quite good at destroying Dooley's car, house and sex-life...", "video": false, "id": 10345, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "K-9", "tagline": "Meet the two toughest cops in town. One's just a little smarter than the other!", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mdG3H2w9Ktc2Ua6tJie3eUE8Zte.jpg", "poster_path": "/1kjDZilRkEVVJVpoh9iuEdVnb87.jpg", "id": 88735, "name": "K-9 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097637", "adult": false, "backdrop_path": "/ll9MpIdvt2DvHXolysp3cTiQegl.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1989-04-28", "popularity": 0.359633254334133, "original_title": "K-9", "budget": 18598420, "cast": [{"name": "James Belushi", "character": "Dooley", "id": 26485, "credit_id": "52fe435d9251416c7500d983", "cast_id": 9, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 0}, {"name": "Mel Harris", "character": "Tracy", "id": 25306, "credit_id": "52fe435d9251416c7500d987", "cast_id": 10, "profile_path": "/p0gcTWZfJrSDzUnGcdHOz6l8lzh.jpg", "order": 1}, {"name": "Kevin Tighe", "character": "Lyman", "id": 17770, "credit_id": "52fe435e9251416c7500d98b", "cast_id": 11, "profile_path": "/5Q1Z89xsrnLdQWdHLuiaraS89vV.jpg", "order": 2}, {"name": "Ed O'Neill", "character": "Brannigan", "id": 18977, "credit_id": "52fe435e9251416c7500d98f", "cast_id": 12, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 3}, {"name": "Rando", "character": "Jerry Lee", "id": 1116738, "credit_id": "52fe435e9251416c7500d99f", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Daniel Davis", "character": "Halstead", "id": 177765, "credit_id": "52fe435e9251416c7500d9a3", "cast_id": 17, "profile_path": "/f6mEupwpKQGlxk2mKwb0pz1UiFT.jpg", "order": 5}, {"name": "Cotter Smith", "character": "Gilliam", "id": 115858, "credit_id": "52fe435e9251416c7500d9a7", "cast_id": 18, "profile_path": "/4lMLsN7hLmtGPqOt626dnui64Cb.jpg", "order": 6}, {"name": "John Snyder", "character": "Freddie", "id": 152408, "credit_id": "52fe435e9251416c7500d9ab", "cast_id": 19, "profile_path": "/aZQoXztNm5C6Rz0ZjIdjV0vHKdO.jpg", "order": 7}, {"name": "Pruitt Taylor Vince", "character": "Benny the Mule", "id": 3201, "credit_id": "52fe435e9251416c7500d9af", "cast_id": 20, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 8}, {"name": "James Handy", "character": "Byers", "id": 51551, "credit_id": "52fe435e9251416c7500d9b3", "cast_id": 21, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 9}], "directors": [{"name": "Rod Daniel", "department": "Directing", "job": "Director", "credit_id": "52fe435d9251416c7500d955", "profile_path": null, "id": 64877}], "vote_average": 5.6, "runtime": 101}, "2157": {"poster_path": "/kkBDPkUnYwAkWbYY2bnyf5ANObA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136159423, "overview": "The prospects for continuing life on Earth in the year 2058 are grim. So the Robinsons are launched into space to colonize Alpha Prime, the only other inhabitable planet in the galaxy. But when a stowaway sabotages the mission, the Robinsons find themselves hurtling through uncharted space.", "video": false, "id": 2157, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Lost in Space", "tagline": "Danger, Will Robinson!", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120738", "adult": false, "backdrop_path": "/g3jly9UILhoVba6Dy5V7ifpuJYH.jpg", "production_companies": [{"name": "Saltire Entertainment", "id": 30253}, {"name": "New Line Cinema", "id": 12}, {"name": "Irwin Allen Productions", "id": 14024}, {"name": "Prelude Pictures", "id": 19902}], "release_date": "1998-04-03", "popularity": 0.463419225647169, "original_title": "Lost in Space", "budget": 80000000, "cast": [{"name": "Gary Oldman", "character": "Dr. Zachary Smith", "id": 64, "credit_id": "52fe433cc3a36847f8044937", "cast_id": 26, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 0}, {"name": "William Hurt", "character": "Prof. John Robinson", "id": 227, "credit_id": "52fe433bc3a36847f8044923", "cast_id": 20, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 1}, {"name": "Matt LeBlanc", "character": "Maj. Don West", "id": 14407, "credit_id": "52fe433cc3a36847f8044933", "cast_id": 25, "profile_path": "/35sPf8IBVl54vdmc9Tyv17otMnk.jpg", "order": 2}, {"name": "Mimi Rogers", "character": "Dr. Maureen Robinson", "id": 13920, "credit_id": "52fe433bc3a36847f8044927", "cast_id": 21, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 3}, {"name": "Heather Graham", "character": "Dr. Judy Robinson", "id": 69122, "credit_id": "52fe433bc3a36847f804492b", "cast_id": 22, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 4}, {"name": "Lacey Chabert", "character": "Penny Robinson", "id": 22082, "credit_id": "52fe433bc3a36847f804492f", "cast_id": 23, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 5}, {"name": "Jack Johnson", "character": "Will Robinson", "id": 135526, "credit_id": "52fe433cc3a36847f804493f", "cast_id": 28, "profile_path": "/3yI4yZkVbvwXSOUmg6YHCalcc2S.jpg", "order": 6}, {"name": "Jared Harris", "character": "Older Will Robinson", "id": 15440, "credit_id": "52fe433cc3a36847f804493b", "cast_id": 27, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 7}, {"name": "Mark Goddard", "character": "General", "id": 161433, "credit_id": "52fe433cc3a36847f8044949", "cast_id": 30, "profile_path": "/mJ8Ctib5EiS6p9aX7TDEJYLB7U0.jpg", "order": 8}, {"name": "Lennie James", "character": "Jeb Walker", "id": 1120, "credit_id": "52fe433cc3a36847f804494d", "cast_id": 31, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 9}, {"name": "Marta Kristen", "character": "Reporter #1", "id": 148605, "credit_id": "52fe433cc3a36847f8044951", "cast_id": 32, "profile_path": "/xornxHCCYTMkBRAW5Rvci6CeSEm.jpg", "order": 10}, {"name": "June Lockhart", "character": "Principal Cartwright", "id": 13997, "credit_id": "52fe433cc3a36847f8044955", "cast_id": 33, "profile_path": "/oVKYbTNxXso4j1qZEAv9H2UkD5d.jpg", "order": 11}, {"name": "Adam Sims", "character": "Lab Technician", "id": 1077780, "credit_id": "52fe433cc3a36847f8044959", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Angela Cartwright", "character": "Reporter #2", "id": 121640, "credit_id": "52fe433cc3a36847f804495d", "cast_id": 36, "profile_path": "/ngoU570GKnzVuq21RKdGDYq8itE.jpg", "order": 13}, {"name": "John Sharian", "character": "Noah Freeman", "id": 36900, "credit_id": "52fe433cc3a36847f8044961", "cast_id": 37, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 14}, {"name": "Abigail Canton", "character": "Annie Tech", "id": 1077781, "credit_id": "52fe433cc3a36847f8044965", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Richard Saperstein", "character": "Global Sedition attack pilot", "id": 65753, "credit_id": "52fe433cc3a36847f8044969", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Dick Tufeld", "character": "Rambler-Crane series Robot (voice)", "id": 165898, "credit_id": "52fe433cc3a36847f804496d", "cast_id": 40, "profile_path": "/bfcCxkfWAOC5UQ0PVT5jkAR1FbJ.jpg", "order": 17}, {"name": "Gary A. Hecker", "character": "Blarp (voice)", "id": 1077782, "credit_id": "52fe433cc3a36847f8044971", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Edward Fox", "character": "Businessman", "id": 9126, "credit_id": "52fe433cc3a36847f8044975", "cast_id": 42, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 19}], "directors": [{"name": "Stephen Hopkins", "department": "Directing", "job": "Director", "credit_id": "52fe433bc3a36847f80448b9", "profile_path": "/zHwFIL63LbeSS83FMC8J6TAgDNL.jpg", "id": 2042}], "vote_average": 5.1, "runtime": 130}, "26736": {"poster_path": "/k4mH6wGL1JBmsDjHSPGMxDAOSYa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Powerful magic cast by Alex spells trouble for the Russo's. The kids must go on an adventure to save their family and their existence.", "video": false, "id": 26736, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Wizards of Waverly Place: The Movie", "tagline": "Family vacations can be tricky.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1369845", "adult": false, "backdrop_path": "/czxiNLwdLLmt8GEgSVOUw7bxHIR.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2009-08-28", "popularity": 0.404912432693241, "original_title": "Wizards of Waverly Place: The Movie", "budget": 0, "cast": [{"name": "Selena Gomez", "character": "Alex Russo", "id": 77948, "credit_id": "52fe4516c3a368484e047b75", "cast_id": 4, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Jake T. Austin", "character": "Max Russo", "id": 60255, "credit_id": "52fe4516c3a368484e047b79", "cast_id": 5, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 1}, {"name": "David Henrie", "character": "Justin Russo", "id": 95136, "credit_id": "52fe4516c3a368484e047b7d", "cast_id": 6, "profile_path": "/yzD9H0890KvgsrSVY2dD1OU1gDS.jpg", "order": 2}, {"name": "Maria Canals-Barrera", "character": "", "id": 85759, "credit_id": "5443c22c0e0a26634d004ea7", "cast_id": 9, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 3}, {"name": "David DeLuise", "character": "", "id": 97600, "credit_id": "53d8bd8e0e0a261c81001ea0", "cast_id": 8, "profile_path": "/qbYy7xfsJB8QxNy3oB6tBUReNUe.jpg", "order": 4}], "directors": [{"name": "Lev L. Spiro", "department": "Directing", "job": "Director", "credit_id": "52fe4516c3a368484e047b65", "profile_path": null, "id": 107658}], "vote_average": 5.7, "runtime": 94}, "2164": {"poster_path": "/muA1cUuVaWTRoaqkMtQGSxRPqJS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196567262, "overview": "An interstellar teleportation device, found in Egypt, leads to a planet with humans resembling ancient Egyptians who worship the god Ra.", "video": false, "id": 2164, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Stargate", "tagline": "It will take you a million light years from home. But will it bring you back?", "vote_count": 290, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fwVVh9o0WZsZNstpX3O55ff7Hs8.jpg", "poster_path": "/5TTU7voIo3t0IYzZTPQQAbawy6Y.jpg", "id": 44215, "name": "Stargate SG-1 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt0111282", "adult": false, "backdrop_path": "/vgnrUb8KbV3S8gVUcq6rXng9cnz.jpg", "production_companies": [{"name": "Carolco Pictures", "id": 14723}, {"name": "Canal+", "id": 5358}, {"name": "Centropolis Film Productions", "id": 620}], "release_date": "1994-10-27", "popularity": 0.951246816772628, "original_title": "Stargate", "budget": 55000000, "cast": [{"name": "Kurt Russell", "character": "Colonel Jonathan O'Neil", "id": 6856, "credit_id": "52fe433cc3a36847f8044caf", "cast_id": 17, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "James Spader", "character": "Dr. Daniel Jackson", "id": 13548, "credit_id": "52fe433cc3a36847f8044cc7", "cast_id": 23, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 1}, {"name": "Alexis Cruz", "character": "Skaara", "id": 22138, "credit_id": "52fe433cc3a36847f8044cb3", "cast_id": 18, "profile_path": "/3vTlvOsUx5UfrOMhayQljM8AsVV.jpg", "order": 2}, {"name": "Viveca Lindfors", "character": "Catherine", "id": 22137, "credit_id": "52fe433cc3a36847f8044ccb", "cast_id": 24, "profile_path": "/r7F33o0rlbeQkxVGlRunhJ0gxjH.jpg", "order": 3}, {"name": "Mili Avital", "character": "Sha`uri", "id": 15441, "credit_id": "52fe433cc3a36847f8044cb7", "cast_id": 19, "profile_path": "/molppCadjV0Cy6YRmYmobGv3VyP.jpg", "order": 4}, {"name": "Leon Rippy", "character": "General West", "id": 15374, "credit_id": "52fe433cc3a36847f8044cbb", "cast_id": 20, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 5}, {"name": "John Diehl", "character": "Lt. Kawalsky", "id": 4942, "credit_id": "52fe433cc3a36847f8044cbf", "cast_id": 21, "profile_path": "/hDUvgqpIv753skoeRGjVw6gYp7A.jpg", "order": 6}, {"name": "Carlos Lauchu", "character": "Anubis", "id": 22139, "credit_id": "52fe433cc3a36847f8044cc3", "cast_id": 22, "profile_path": "/VcnqlKYcJ5PRoRT1Rluqg95HdG.jpg", "order": 7}, {"name": "Jaye Davidson", "character": "Ra", "id": 228173, "credit_id": "52fe433cc3a36847f8044ccf", "cast_id": 25, "profile_path": "/jn6LgWIsuRuFbnljXg7kTXI2UT.jpg", "order": 8}, {"name": "Djimon Hounsou", "character": "Horus", "id": 938, "credit_id": "52fe433cc3a36847f8044cd3", "cast_id": 26, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 9}, {"name": "Erick Avari", "character": "Kasuf", "id": 18917, "credit_id": "52fe433cc3a36847f8044cd7", "cast_id": 27, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 10}, {"name": "French Stewart", "character": "Lieutenant Ferretti", "id": 67711, "credit_id": "52fe433cc3a36847f8044cdb", "cast_id": 28, "profile_path": "/8IpVIyRvwRAeWjsGtM7eAcZlj4t.jpg", "order": 11}, {"name": "Derek Webster", "character": "Brown", "id": 157029, "credit_id": "52fe433cc3a36847f8044cdf", "cast_id": 29, "profile_path": "/vS6FyYyx2G41Zozn1bINybpmsKY.jpg", "order": 12}, {"name": "Gianin Loffler", "character": "Nabeh", "id": 1179059, "credit_id": "52fe433cc3a36847f8044ce3", "cast_id": 30, "profile_path": "/kVmL3C8J6Y36ikpN9gNEHMQvWmT.jpg", "order": 13}, {"name": "Christopher John Fields", "character": "Freeman", "id": 145531, "credit_id": "52fe433cc3a36847f8044ce7", "cast_id": 31, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 14}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe433cc3a36847f8044c51", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.6, "runtime": 121}, "10357": {"poster_path": "/feHAmHVEGhluDYxOruYG1WTv0nM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An earthquake shatters a peaceful Los Angeles morning and opens a fissure deep into the earth, causing lava to start bubbling up. As a volcano begins forming in the La Brea Tar Pits, the director of the city's emergency management service, Mike Roark, working with geologist Amy Barnes, must then use every resource in the city to try and stop the volcano from consuming Los Angeles.", "video": false, "id": 10357, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Volcano", "tagline": "The coast is toast", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120461", "adult": false, "backdrop_path": "/yYNfVE2GlIjFJRCIAgIsiaSUWnb.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1997-04-25", "popularity": 0.750634831054862, "original_title": "Volcano", "budget": 90000000, "cast": [{"name": "Tommy Lee Jones", "character": "Mike Roark", "id": 2176, "credit_id": "52fe435f9251416c7500de03", "cast_id": 10, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Anne Heche", "character": "Dr. Amy Barnes", "id": 8256, "credit_id": "52fe435f9251416c7500de07", "cast_id": 11, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 1}, {"name": "Gaby Hoffmann", "character": "Kelly Roark", "id": 12930, "credit_id": "52fe435f9251416c7500de0b", "cast_id": 12, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 2}, {"name": "Don Cheadle", "character": "Emmit Reese", "id": 1896, "credit_id": "52fe435f9251416c7500de0f", "cast_id": 13, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 3}, {"name": "Joshua Fardon", "character": "Medic", "id": 197872, "credit_id": "52fe435f9251416c7500de13", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Jacqueline Kim", "character": "Dr. Jaye Calder", "id": 56485, "credit_id": "52fe435f9251416c7500de17", "cast_id": 15, "profile_path": "/3xvzDHNIKnkdK5YU6raXdkjqWBJ.jpg", "order": 5}, {"name": "Keith David", "character": "Police Lieutenant Ed Fox", "id": 65827, "credit_id": "52fe43609251416c7500de1b", "cast_id": 16, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 6}, {"name": "John Corbett", "character": "Norman Calder", "id": 38405, "credit_id": "52fe43609251416c7500de1f", "cast_id": 17, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 7}, {"name": "Michael Rispoli", "character": "Gator Harris", "id": 18313, "credit_id": "52fe43609251416c7500de23", "cast_id": 18, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 8}, {"name": "John Carroll Lynch", "character": "Stan Olber", "id": 3911, "credit_id": "52fe43609251416c7500de27", "cast_id": 19, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 9}, {"name": "Marcello Thedford", "character": "Kevin", "id": 59300, "credit_id": "52fe43609251416c7500de2b", "cast_id": 20, "profile_path": "/r6AOyQWIi7Zi1WQUXjF8T2HafIR.jpg", "order": 10}, {"name": "Bert Kramer", "character": "L.A. Fire Chief", "id": 152339, "credit_id": "52fe43609251416c7500de2f", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bo Eason", "character": "Bud McVie", "id": 158012, "credit_id": "52fe43609251416c7500de33", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "James MacDonald", "character": "Terry Jasper", "id": 1188456, "credit_id": "52fe43609251416c7500de37", "cast_id": 23, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 13}, {"name": "Dayton Callie", "character": "Roger Lapher", "id": 87108, "credit_id": "52fe43609251416c7500de3b", "cast_id": 24, "profile_path": "/rcIfgRTAh6EHdxTcV8Qio3nx8Dh.jpg", "order": 14}, {"name": "Phil Nee", "character": "O.E.M. Staffer #5", "id": 1357100, "credit_id": "53fc68430e0a267a6c00a79d", "cast_id": 25, "profile_path": "/pZGJkVIw1RFmZuNiUzRQGupqMzW.jpg", "order": 15}], "directors": [{"name": "Mick Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe435f9251416c7500ddcf", "profile_path": "/vB2oia3vFL0kaq8re4VgWB1Huig.jpg", "id": 8843}], "vote_average": 4.9, "runtime": 104}, "10358": {"poster_path": "/zxwEJBhSSu5AuKTTd4ugWaCqmg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42105111, "overview": "Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.", "video": false, "id": 10358, "genres": [{"id": 35, "name": "Comedy"}], "title": "Zack and Miri Make a Porno", "tagline": "What would you do to get out of debt?", "vote_count": 199, "homepage": "http://www.zackandmiri.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1007028", "adult": false, "backdrop_path": "/kKoVVOd3HBDz9EVarFEGl6xU7r6.jpg", "production_companies": [{"name": "Blue Askew", "id": 2599}, {"name": "View Askew Productions", "id": 16934}], "release_date": "2008-09-18", "popularity": 0.976266930700764, "original_title": "Zack and Miri Make a Porno", "budget": 24000000, "cast": [{"name": "Seth Rogen", "character": "Zack", "id": 19274, "credit_id": "52fe43609251416c7500de77", "cast_id": 3, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Miri", "id": 9281, "credit_id": "52fe43609251416c7500de7b", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Jennifer Schwalbach Smith", "character": "Betsy", "id": 23658, "credit_id": "52fe43609251416c7500de7f", "cast_id": 5, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 2}, {"name": "Jason Mewes", "character": "Lester", "id": 19302, "credit_id": "52fe43609251416c7500de83", "cast_id": 6, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 3}, {"name": "Gerry Bednob", "character": "Mr. Surya", "id": 76525, "credit_id": "52fe43609251416c7500de87", "cast_id": 7, "profile_path": "/ueWmRIf5eMoRJJ70PmkmPiwFTI4.jpg", "order": 4}, {"name": "Traci Lords", "character": "Bubbles", "id": 10826, "credit_id": "52fe43609251416c7500de8b", "cast_id": 8, "profile_path": "/wvvedrFTml3kJZ3eSMMX3QvDacr.jpg", "order": 5}, {"name": "Brandon Routh", "character": "Bobby Long", "id": 17271, "credit_id": "52fe43609251416c7500de8f", "cast_id": 9, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 6}, {"name": "Justin Long", "character": "Brandon St. Randy", "id": 15033, "credit_id": "52fe43609251416c7500de93", "cast_id": 10, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 7}, {"name": "Jeff Anderson", "character": "Deacon", "id": 23630, "credit_id": "52fe43609251416c7500de97", "cast_id": 11, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 8}, {"name": "Craig Robinson", "character": "Delaney", "id": 64342, "credit_id": "52fe43609251416c7500de9b", "cast_id": 12, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 9}, {"name": "Tisha Campbell-Martin", "character": "Delaney's Wife", "id": 141823, "credit_id": "52fe43609251416c7500de9f", "cast_id": 13, "profile_path": "/8nfymZ8Ohi7P5mNGOMddRmm5pgF.jpg", "order": 10}, {"name": "Tom Savini", "character": "Jenkins", "id": 11161, "credit_id": "54b19b4ac3a3684012002323", "cast_id": 26, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 11}, {"name": "Kenny Hotz", "character": "Zack II", "id": 1229795, "credit_id": "54b19b60c3a3680940002951", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Katie Morgan", "character": "Stacey", "id": 140406, "credit_id": "55324b88c3a368221d002990", "cast_id": 28, "profile_path": "/fJU0qSk4C4ohHLeAg3dxqnvLFby.jpg", "order": 13}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe43609251416c7500de73", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.9, "runtime": 102}, "10360": {"poster_path": "/k0WJs6EVHYJ1etEq7V64KjLtmjP.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The story of Bobby Sands, the IRA member who led the 1981 hunger strike in which Republican prisoners tried to win political status. It dramatises events in the Maze prison in the six weeks prior to Sands\u2019 death.", "video": false, "id": 10360, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Hunger", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0986233", "adult": false, "backdrop_path": "/oHKoKiAoXw4zdOD8j6PyU2lvx7i.jpg", "production_companies": [{"name": "Blast! Films", "id": 2600}], "release_date": "2008-05-15", "popularity": 0.773656850000478, "original_title": "Hunger", "budget": 0, "cast": [{"name": "Michael Fassbender", "character": "Bobby Sands", "id": 17288, "credit_id": "52fe43609251416c7500df73", "cast_id": 6, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Stuart Graham", "character": "Ray Lohan", "id": 18993, "credit_id": "52fe43609251416c7500df5b", "cast_id": 1, "profile_path": "/nbmECI9jthzBuXwpaCXVXveY0NZ.jpg", "order": 1}, {"name": "Helena Bereen", "character": "Helena Bereen", "id": 64916, "credit_id": "52fe43609251416c7500df65", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Liam Cunningham", "character": "Priest", "id": 15498, "credit_id": "52fe43609251416c7500df69", "cast_id": 4, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 3}], "directors": [{"name": "Steve McQueen", "department": "Directing", "job": "Director", "credit_id": "52fe43609251416c7500df6f", "profile_path": "/6w2fWkuhYQuv18OQi8cmSIq8srN.jpg", "id": 72757}], "vote_average": 7.2, "runtime": 96}, "75900": {"poster_path": "/n3B3se46CWsRHx1EGbGZBLePaXq.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Sir Laurence Olivier is making a movie in London. Young Colin Clark, an eager film student, wants to be involved and he navigates himself a job on the set. When film star Marilyn Monroe arrives for the start of shooting, all of London is excited to see the blonde bombshell, while Olivier is struggling to meet her many demands and acting ineptness, and Colin is intrigued by her. Colin's intrigue is met when Marilyn invites him into her inner world where she struggles with her fame, her beauty and her desire to be a great actress.", "video": false, "id": 75900, "genres": [{"id": 18, "name": "Drama"}], "title": "My Week with Marilyn", "tagline": "Sometimes You Just Need to Get Away", "vote_count": 80, "homepage": "http://myweekwithmarilynmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1655420", "adult": false, "backdrop_path": "/ez5WJJ9VsFvOASh0nbm8L4lkdju.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "BBC Films", "id": 288}, {"name": "Lip Sync Post", "id": 10247}, {"name": "Trademark Films", "id": 22153}, {"name": "UK Film Council", "id": 2452}], "release_date": "2011-10-17", "popularity": 0.55093648702911, "original_title": "My Week with Marilyn", "budget": 6400000, "cast": [{"name": "Michelle Williams", "character": "Marilyn Monroe", "id": 1812, "credit_id": "52fe491ac3a368484e11a49b", "cast_id": 2, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 0}, {"name": "Eddie Redmayne", "character": "Colin Clark", "id": 37632, "credit_id": "52fe491ac3a368484e11a49f", "cast_id": 3, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 1}, {"name": "Kenneth Branagh", "character": "Sir Laurence Olivier", "id": 11181, "credit_id": "52fe491ac3a368484e11a4a3", "cast_id": 4, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 2}, {"name": "Julia Ormond", "character": "Vivien Leigh", "id": 15887, "credit_id": "52fe491ac3a368484e11a4a7", "cast_id": 5, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 3}, {"name": "Judi Dench", "character": "Sybil Thorndike", "id": 5309, "credit_id": "52fe491ac3a368484e11a4ab", "cast_id": 6, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Emma Watson", "character": "Lucy", "id": 10990, "credit_id": "52fe491ac3a368484e11a4b3", "cast_id": 8, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 5}, {"name": "Pip Torrens", "character": "Sir Kenneth Clark", "id": 36666, "credit_id": "52fe491ac3a368484e11a4af", "cast_id": 7, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 6}, {"name": "Dominic Cooper", "character": "Milton Greene", "id": 55470, "credit_id": "52fe491ac3a368484e11a4b7", "cast_id": 9, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 7}, {"name": "Geraldine Somerville", "character": "Lady Jane Clark", "id": 10988, "credit_id": "52fe491ac3a368484e11a4bb", "cast_id": 10, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 8}, {"name": "Michael Kitchen", "character": "Hugh Perceval", "id": 10648, "credit_id": "52fe491ac3a368484e11a4bf", "cast_id": 11, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 9}, {"name": "Miranda Raison", "character": "Vanessa", "id": 195525, "credit_id": "52fe491ac3a368484e11a4c3", "cast_id": 12, "profile_path": "/A3UbPTpbDkvM1L1UoPSvhpzJvn8.jpg", "order": 10}, {"name": "Simon Russell Beale", "character": "Cotes-Preedy", "id": 57461, "credit_id": "52fe491ac3a368484e11a4c7", "cast_id": 13, "profile_path": "/kHOLDJzCeHoAC2byUGUCfzMn0Sy.jpg", "order": 11}, {"name": "Toby Jones", "character": "Arthur Jacobs", "id": 13014, "credit_id": "52fe491ac3a368484e11a4cb", "cast_id": 14, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 12}, {"name": "Robert Portal", "character": "David Orton", "id": 121606, "credit_id": "52fe491ac3a368484e11a4cf", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Jim Carter", "character": "Barry", "id": 20070, "credit_id": "52fe491ac3a368484e11a4d3", "cast_id": 16, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 14}, {"name": "Philip Jackson", "character": "Roger Smith", "id": 25532, "credit_id": "52fe491ac3a368484e11a4d7", "cast_id": 17, "profile_path": "/5pVwSFvjEgOprlMn3s6O7bQM1qc.jpg", "order": 15}], "directors": [{"name": "Simon Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe491ac3a368484e11a497", "profile_path": "/qnURh5v5N5jnS9kPYWCo4rwwxWA.jpg", "id": 133502}], "vote_average": 6.8, "runtime": 99}, "2176": {"poster_path": "/pZNdq3a49iJibUIExhe3TXqHoDu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17951431, "overview": "After the sudden death of their parents in a car accident, 16-year-old Ruby Baker and her 11-year-old brother Rhett are sent to live in the posh Malibu house of Terry and Erin Glass, old friends of their parents. But Ruby soon learns that her new foster parents are not all they seem to be.", "video": false, "id": 2176, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Glass House", "tagline": "Be Careful Who You Trust", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0221218", "adult": false, "backdrop_path": "/udE7c7hLPY1Nb1eKTsFPNdpnzoq.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2001-09-14", "popularity": 0.0861998774913227, "original_title": "The Glass House", "budget": 22000000, "cast": [{"name": "Leelee Sobieski", "character": "Ruby Baker", "id": 22290, "credit_id": "52fe433dc3a36847f8045235", "cast_id": 1, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 0}, {"name": "Trevor Morgan", "character": "Rhett Baker", "id": 4940, "credit_id": "52fe433dc3a36847f8045239", "cast_id": 2, "profile_path": "/zoVYTwBw6FOTCG35Tvwd7Ky7m7W.jpg", "order": 1}, {"name": "Stellan Skarsg\u00e5rd", "character": "Terence Glass", "id": 1640, "credit_id": "52fe433dc3a36847f804523d", "cast_id": 3, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 2}, {"name": "Diane Lane", "character": "Erin Glass", "id": 2882, "credit_id": "52fe433dc3a36847f8045241", "cast_id": 4, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 3}, {"name": "Bruce Dern", "character": "Begleiter", "id": 6905, "credit_id": "52fe433dc3a36847f8045245", "cast_id": 5, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 4}, {"name": "Kathy Baker", "character": "Nancy Ryan", "id": 1907, "credit_id": "52fe433dc3a36847f804526d", "cast_id": 12, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 5}, {"name": "Chris Noth", "character": "Uncle Jack", "id": 38026, "credit_id": "52fe433dc3a36847f8045291", "cast_id": 23, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 6}, {"name": "Michael O'Keefe", "character": "Dave Baker", "id": 38085, "credit_id": "52fe433dc3a36847f804528d", "cast_id": 22, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 7}, {"name": "Vyto Ruginis", "character": "Don", "id": 61216, "credit_id": "52fe433dc3a36847f8045271", "cast_id": 15, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 8}, {"name": "Gavin O'Connor", "character": "Whitey", "id": 77003, "credit_id": "52fe433dc3a36847f8045275", "cast_id": 16, "profile_path": "/ySCeCte0VOVT9jWft6TwBKGU9KM.jpg", "order": 9}, {"name": "Carly Pope", "character": "Tasha", "id": 43903, "credit_id": "52fe433dc3a36847f8045279", "cast_id": 17, "profile_path": "/4KLHkJZKFtVdmMkHtCSD1Ridku4.jpg", "order": 10}, {"name": "China Shavers", "character": "E.B.", "id": 235848, "credit_id": "52fe433dc3a36847f804527d", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Agnes Bruckner", "character": "Zoe", "id": 51536, "credit_id": "52fe433dc3a36847f8045281", "cast_id": 19, "profile_path": "/jDrPSJne4BHWcCa3U8Y4uhoNUC6.jpg", "order": 12}, {"name": "Michael Paul Chan", "character": "Mr. Kim", "id": 17355, "credit_id": "52fe433dc3a36847f8045285", "cast_id": 20, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 13}, {"name": "Rachel Wilson", "character": "Hannah", "id": 87020, "credit_id": "52fe433dc3a36847f8045289", "cast_id": 21, "profile_path": "/x0gyK8XAl56rx6yHYoEGk9QdRRs.jpg", "order": 14}], "directors": [{"name": "Daniel Sackheim", "department": "Directing", "job": "Director", "credit_id": "52fe433dc3a36847f804524b", "profile_path": "/wSMRjEWrrYFUDd1KQCJvW2cAvh3.jpg", "id": 12632}], "vote_average": 5.1, "runtime": 106}, "157825": {"poster_path": "/1p4nQ1PHiA786dmMeW9ndIK7KCC.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kat Connors is 17 years old when her perfect homemaker mother, Eve, disappears. Having lived for so long in an emotionally repressed household, she barely registers her mother's absence and certainly doesn't blame her doormat of a father, Brock, for the loss. But as time passes, Kat begins to come to grips with how deeply Eve's disappearance has affected her. Returning home on a break from college, she finds herself confronted with the truth about her mother's departure, and her own denial about the events surrounding it...", "video": false, "id": 157825, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "White Bird in a Blizzard", "tagline": "I was 17 when my mother disappeared...", "vote_count": 63, "homepage": "http://www.magpictures.com/whitebirdinablizzard/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2238050", "adult": false, "backdrop_path": "/7X6Cn2YZnAioH3iIjBhhGq6Or70.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Wild Bunch", "id": 856}, {"name": "Desperate Pictures", "id": 1474}, {"name": "Orange Studios", "id": 15433}], "release_date": "2014-09-25", "popularity": 0.872872536286835, "original_title": "White Bird in a Blizzard", "budget": 0, "cast": [{"name": "Shailene Woodley", "character": "Kat Connor", "id": 94185, "credit_id": "52fe4bd39251416c910e6e5b", "cast_id": 1, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 0}, {"name": "Eva Green", "character": "Eve Connor", "id": 10912, "credit_id": "52fe4bd39251416c910e6e5f", "cast_id": 2, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Christopher Meloni", "character": "Brock Connor", "id": 22227, "credit_id": "52fe4bd39251416c910e6e63", "cast_id": 3, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 2}, {"name": "Shiloh Fernandez", "character": "Phil", "id": 79795, "credit_id": "52fe4bd39251416c910e6e67", "cast_id": 4, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 3}, {"name": "Gabourey Sidibe", "character": "Beth", "id": 109560, "credit_id": "52fe4bd39251416c910e6e6b", "cast_id": 5, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 4}, {"name": "Thomas Jane", "character": "Detective Scieziesciez", "id": 11155, "credit_id": "52fe4bd39251416c910e6e6f", "cast_id": 6, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 5}, {"name": "Angela Bassett", "character": "Dr. Thaler", "id": 9780, "credit_id": "52fe4bd39251416c910e6e91", "cast_id": 13, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 6}, {"name": "Dale Dickey", "character": "Mrs. Hillman", "id": 46814, "credit_id": "52fe4bd39251416c910e6e95", "cast_id": 14, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 7}, {"name": "Sheryl Lee", "character": "May", "id": 6726, "credit_id": "52fe4bd39251416c910e6e99", "cast_id": 15, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 8}, {"name": "Jacob Artist", "character": "", "id": 1074888, "credit_id": "52fe4bd39251416c910e6e9d", "cast_id": 16, "profile_path": "/novsAlYfcku1PCQiZRN7pOnzolA.jpg", "order": 9}, {"name": "Mark Indelicato", "character": "Mickey", "id": 1224971, "credit_id": "54270091c3a3680b28000407", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Ava Acres", "character": "Kat (age 8)", "id": 1340664, "credit_id": "542700b80e0a265566000400", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Tia Barr", "character": "Secretary", "id": 1368142, "credit_id": "542700d0c3a3680b1e0003e9", "cast_id": 19, "profile_path": null, "order": 12}], "directors": [{"name": "Gregg Araki", "department": "Directing", "job": "Director", "credit_id": "52fe4bd39251416c910e6e75", "profile_path": "/sL3WcqyhiIedJg6mSYz1lsKn0d4.jpg", "id": 19224}], "vote_average": 6.0, "runtime": 91}, "2179": {"poster_path": "/gQThU8AftVJEBug4ToHUbQ3Lg7M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13405595, "overview": "In Venice Beach, naive Midwesterner JB bonds with local slacker KG and they form the rock band Tenacious D. Setting out to become the world's greatest band is no easy feat, so they set out to steal what could be the answer to their prayers... a magical guitar pick housed in a rock-and-roll museum some 300 miles away.", "video": false, "id": 2179, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Tenacious D in The Pick of Destiny", "tagline": "An epic quest. A magical guitar pick. A chance to put the D in Destiny.", "vote_count": 89, "homepage": "http://www.tenaciousdmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365830", "adult": false, "backdrop_path": "/fDuTOIYY9Bg3VLc4kLkn9V8THlV.jpg", "production_companies": [{"name": "Red Hour Films", "id": 12178}], "release_date": "2006-11-22", "popularity": 0.776013769948894, "original_title": "Tenacious D in The Pick of Destiny", "budget": 22000000, "cast": [{"name": "Jack Black", "character": "Jack Black", "id": 70851, "credit_id": "52fe433ec3a36847f8045463", "cast_id": 1, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Kyle Gass", "character": "Kyle Gass", "id": 22297, "credit_id": "52fe433ec3a36847f8045467", "cast_id": 2, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 1}, {"name": "Ronnie James Dio", "character": "himself", "id": 22304, "credit_id": "52fe433ec3a36847f8045489", "cast_id": 9, "profile_path": "/AgjPqbD8ehPydyYNksRp0ZDIkiB.jpg", "order": 2}, {"name": "Tim Robbins", "character": "The Stranger", "id": 504, "credit_id": "52fe433ec3a36847f804548d", "cast_id": 10, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 3}, {"name": "Meat Loaf", "character": "Bud Black", "id": 7470, "credit_id": "52fe433ec3a36847f8045495", "cast_id": 12, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 4}, {"name": "Ben Stiller", "character": "Guitar Center Guy", "id": 7399, "credit_id": "52fe433ec3a36847f8045491", "cast_id": 11, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 5}, {"name": "Dave Grohl", "character": "Satan", "id": 533061, "credit_id": "52fe433ec3a36847f8045499", "cast_id": 13, "profile_path": "/ywJweFzFBeZXXJNmDnWT0xLrH37.jpg", "order": 6}, {"name": "JR Reed", "character": "Lee", "id": 938432, "credit_id": "52fe433ec3a36847f804549d", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Paul F. Tompkins", "character": "Open Mic Host", "id": 1219029, "credit_id": "53353bc4c3a3682a940044bb", "cast_id": 22, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 8}, {"name": "Troy Gentile", "character": "Lil' JB", "id": 55673, "credit_id": "52fe433ec3a36847f80454a5", "cast_id": 16, "profile_path": "/qX6Py6V8sGMC004CIjqitPssrM.jpg", "order": 9}, {"name": "Ned Bellamy", "character": "Security Guard", "id": 2141, "credit_id": "52fe433ec3a36847f80454a9", "cast_id": 17, "profile_path": "/aPAsdVFewZK3ldhvrL1ea2VUkUK.jpg", "order": 10}, {"name": "Fred Armisen", "character": "Security Guard", "id": 61110, "credit_id": "52fe433ec3a36847f80454ad", "cast_id": 18, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 11}, {"name": "Kirk Ward", "character": "Car Chase Cop / Gang Leader", "id": 154697, "credit_id": "52fe433ec3a36847f80454b1", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Amy Poehler", "character": "Truck Stop Waitress", "id": 56322, "credit_id": "52fe433ec3a36847f80454b5", "cast_id": 20, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 13}, {"name": "John C. Reilly", "character": "", "id": 4764, "credit_id": "52fe433ec3a36847f80454b9", "cast_id": 21, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 14}], "directors": [{"name": "Liam Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe433ec3a36847f804546d", "profile_path": "/fUpqzS8f73CHnqSwgZGrJljtCgs.jpg", "id": 22301}], "vote_average": 6.4, "runtime": 93}, "10376": {"poster_path": "/4qmMvfkFWEZ9SocG2CeA57WAutF.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "The story of a virtuoso piano player who lives his entire life aboard an ocean liner. Born and raised on the ship, 1900 (Tim Roth) learned about the outside world through interactions with passengers, never setting foot on land, even for the love of his life. Years later, the ship may be destroyed, and a former band member fears that 1900 may still be aboard, willing to go down with the ship.", "video": false, "id": 10376, "genres": [{"id": 14, "name": "Fantasy"}], "title": "The Legend of 1900", "tagline": "A beatiful story of a man who could do anything... except be ordinary.", "vote_count": 204, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120731", "adult": false, "backdrop_path": "/cqYMfKZSF8OylvQe88IGy0JX39J.jpg", "production_companies": [{"name": "Medusa Film", "id": 6246}, {"name": "Sciarl\u00f2", "id": 27597}], "release_date": "1998-10-28", "popularity": 0.475673844877521, "original_title": "La leggenda del pianista sull'oceano", "budget": 9000000, "cast": [{"name": "Tim Roth", "character": "Danny Boodmann T.D. Lemon Nineteen Hundred '1900'", "id": 3129, "credit_id": "52fe43629251416c7500e4dd", "cast_id": 1, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 0}, {"name": "Pruitt Taylor Vince", "character": "Max Tooney", "id": 3201, "credit_id": "52fe43629251416c7500e4e1", "cast_id": 2, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 1}, {"name": "M\u00e9lanie Thierry", "character": "das M\u00e4dchen", "id": 59373, "credit_id": "52fe43629251416c7500e4e5", "cast_id": 3, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 2}, {"name": "Bill Nunn", "character": "Danny Boodmann", "id": 5502, "credit_id": "52fe43629251416c7500e4e9", "cast_id": 4, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 3}, {"name": "Gabriele Lavia", "character": "Farmer", "id": 80503, "credit_id": "52fe43629251416c7500e4ff", "cast_id": 8, "profile_path": "/vBdzMW3adlYO41A0nhFmis8ixTA.jpg", "order": 4}, {"name": "Clarence Williams III", "character": "Jelly Roll Morton", "id": 15864, "credit_id": "54b19a5cc3a3684012002303", "cast_id": 9, "profile_path": "/hDjTPLvUNDnoA6rHDX5JrftAWZa.jpg", "order": 5}, {"name": "M\u00e9lanie Thierry", "character": "The Girl", "id": 59373, "credit_id": "54b19a6dc3a3680939002c2e", "cast_id": 10, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 6}, {"name": "Peter Vaughan", "character": "'Pops', the Shopkeeper", "id": 386, "credit_id": "54b19a7fc3a3680945002bac", "cast_id": 11, "profile_path": "/z9ZplbTA1ojYhgZ8kJUKKhsJ7Gs.jpg", "order": 7}, {"name": "Niall O'Brien", "character": "Harbor Master", "id": 104758, "credit_id": "54b19a8e92514107e00012d0", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Alberto Vazquez", "character": "Mexican Stoker", "id": 163808, "credit_id": "54b19aa092514107e00012d2", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Luca De Luigi", "character": "Neapolitan Stoker", "id": 558801, "credit_id": "54b19ab1c3a3684138002214", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Femi Elufowoju Jr.", "character": "Black Stoker", "id": 1411985, "credit_id": "54b19acac3a3680939002c33", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Nigel Fan", "character": "Chinese Stoker", "id": 1411986, "credit_id": "54b19addc3a368413800221b", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Roger Monk", "character": "Irish Stoker", "id": 126316, "credit_id": "54b19aeec3a3680940002948", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Leonid Zaslavski", "character": "Polish Stoker", "id": 1411987, "credit_id": "54b19afe92514107e00012df", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Bernard Padden", "character": "Boatswain", "id": 1356009, "credit_id": "54b19b0e925141746c002696", "cast_id": 19, "profile_path": null, "order": 15}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe43629251416c7500e4ef", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.7, "runtime": 170}, "10377": {"poster_path": "/zcd2U5BAP0rYOucfcj8nE4VVVKC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52929168, "overview": "Two carefree pals traveling through Alabama are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend , to try his first case, it's a real shock - for him and the Deep South!", "video": false, "id": 10377, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "My Cousin Vinny", "tagline": "Truth, Justice and the Gambini Way", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104952", "adult": false, "backdrop_path": "/AsQfq68MrMt5Itb8wTIzkLLGGoI.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1992-03-13", "popularity": 0.419521294556193, "original_title": "My Cousin Vinny", "budget": 11000000, "cast": [{"name": "Joe Pesci", "character": "Vincent 'Vinny' Gambini", "id": 4517, "credit_id": "52fe43639251416c7500e52b", "cast_id": 1, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 0}, {"name": "Ralph Macchio", "character": "William 'Billy' Gambini", "id": 2877, "credit_id": "52fe43639251416c7500e52f", "cast_id": 2, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Mona Lisa Vito", "id": 3141, "credit_id": "52fe43639251416c7500e533", "cast_id": 3, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Mitchell Whitfield", "character": "Stan Rothenstein", "id": 19505, "credit_id": "52fe43639251416c7500e537", "cast_id": 4, "profile_path": "/xvLWnBsTbUmW9KcDkH7pvi5W6v0.jpg", "order": 3}, {"name": "Fred Gwynne", "character": "Judge Chamberlain Haller", "id": 56266, "credit_id": "52fe43639251416c7500e53b", "cast_id": 5, "profile_path": "/xwDhOItVPzmBDfPqNMPHSSdXOMj.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Sheriff Farley", "id": 14888, "credit_id": "52fe43639251416c7500e56f", "cast_id": 14, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "Lane Smith", "character": "Jim Trotter III", "id": 65019, "credit_id": "52fe43639251416c7500e573", "cast_id": 15, "profile_path": "/js7GonfBVNHLYhaB0Xjtnm93DpH.jpg", "order": 6}, {"name": "Austin Pendleton", "character": "John Gibbons", "id": 6168, "credit_id": "52fe43639251416c7500e577", "cast_id": 16, "profile_path": "/pxcdhd4oAsnhvUg0BalmiiKJyXg.jpg", "order": 7}, {"name": "Raynor Scheine", "character": "Ernie Crane", "id": 21082, "credit_id": "52fe43639251416c7500e57b", "cast_id": 17, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 8}, {"name": "James Rebhorn", "character": "George Wilbur", "id": 8986, "credit_id": "52fe43639251416c7500e57f", "cast_id": 18, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 9}, {"name": "Chris Ellis", "character": "J.T.", "id": 8191, "credit_id": "52fe43639251416c7500e583", "cast_id": 19, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 10}], "directors": [{"name": "Jonathan Lynn", "department": "Directing", "job": "Director", "credit_id": "52fe43639251416c7500e541", "profile_path": "/nvMGnGbGdXrRvGAjulNqhJWUB9c.jpg", "id": 21217}], "vote_average": 7.2, "runtime": 120}, "157834": {"poster_path": "/4weMGX5UvFDYFvRp2uXuupm1PsU.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A computer hacker's goal to discover the reason for human existence continually finds his work interrupted thanks to the Management; this time, they send a teenager and lusty love interest to distract him.", "video": false, "id": 157834, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Zero Theorem", "tagline": "Nothing is Everything", "vote_count": 101, "homepage": "http://www.thezerotheorem-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2333804", "adult": false, "backdrop_path": "/chS1f9wbCRvlQajAsgZqw8wSahk.jpg", "production_companies": [{"name": "Picture Perfect Corporation", "id": 27993}, {"name": "Voltage Pictures", "id": 10255}, {"name": "Zanuck Independent", "id": 6716}, {"name": "Zephyr Films", "id": 16923}, {"name": "MediaPro Pictures", "id": 11819}, {"name": "Le Pacte", "id": 5125}, {"name": "Wild Side Films", "id": 27994}], "release_date": "2013-09-02", "popularity": 1.58052727792615, "original_title": "The Zero Theorem", "budget": 0, "cast": [{"name": "Christoph Waltz", "character": "Qohen Leth", "id": 27319, "credit_id": "52fe4bd49251416c910e6f6b", "cast_id": 3, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 0}, {"name": "David Thewlis", "character": "Joby", "id": 11207, "credit_id": "52fe4bd49251416c910e6f77", "cast_id": 6, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 1}, {"name": "M\u00e9lanie Thierry", "character": "Bainsley", "id": 59373, "credit_id": "52fe4bd49251416c910e6f81", "cast_id": 8, "profile_path": "/vWP1P4oAPfxntP8xaDbGXguf08J.jpg", "order": 2}, {"name": "Lucas Hedges", "character": "Bob", "id": 1105079, "credit_id": "52fe4bd49251416c910e6f85", "cast_id": 9, "profile_path": "/pmsZ0DDOa0PAZ5uVHbcwMb3UryS.jpg", "order": 3}, {"name": "Matt Damon", "character": "Management", "id": 1892, "credit_id": "52fe4bd49251416c910e6f67", "cast_id": 2, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 4}, {"name": "Ben Whishaw", "character": "Doctor 3", "id": 17064, "credit_id": "52fe4bd49251416c910e6f6f", "cast_id": 4, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 5}, {"name": "Tilda Swinton", "character": "Dr. Shrink-Rom", "id": 3063, "credit_id": "52fe4bd49251416c910e6f73", "cast_id": 5, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 6}, {"name": "Sanjeev Bhaskar", "character": "Doctor 1", "id": 145997, "credit_id": "53d612c70e0a26283e007035", "cast_id": 10, "profile_path": "/3cEenHNguFskMlsuhyyQj4UIDOK.jpg", "order": 7}, {"name": "Margarita Doyle", "character": "Mancom Computerised Lips", "id": 1346933, "credit_id": "53d613000e0a262838006e91", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Rupert Friend", "character": "TV Presenter", "id": 36669, "credit_id": "53d613180e0a262841006e26", "cast_id": 12, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 9}, {"name": "Peter Stormare", "character": "Doctor 2", "id": 53, "credit_id": "53d613380e0a262844006dc0", "cast_id": 13, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 10}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e6f63", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 6.0, "runtime": 107}, "157841": {"poster_path": "/fZVmbF1sL1MsZe3Bz1n4SXOl1zt.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A 12-year-old cartographer secretly leaves his family's ranch in Montana where he lives with his cowboy father and scientist mother and travels across the country on board a freight train to receive an award at the Smithsonian Institute.", "video": false, "id": 157841, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Young and Prodigious T.S. Spivet", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1981107", "adult": false, "backdrop_path": "/o86EvBA9SGAmvisXuQLLnfNKP1S.jpg", "production_companies": [{"name": "Epith\u00e8te Films", "id": 7286}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Tapioca Films", "id": 12000}], "release_date": "2013-10-16", "popularity": 0.933488831323124, "original_title": "The Young and Prodigious T.S. Spivet", "budget": 33000000, "cast": [{"name": "Kyle Catlett", "character": "T.S. Spivet", "id": 1043693, "credit_id": "52fe4bd49251416c910e6fff", "cast_id": 16, "profile_path": "/h963ot4DjREGEh1bXq2uA4psskd.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Dr. Clair", "id": 1283, "credit_id": "52fe4bd49251416c910e6fcb", "cast_id": 2, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Judy Davis", "character": "G.H. Jibsen", "id": 351, "credit_id": "52fe4bd49251416c910e6fd7", "cast_id": 5, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 2}, {"name": "Callum Keith Rennie", "character": "Father", "id": 540, "credit_id": "52fe4bd49251416c910e6fdb", "cast_id": 6, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 3}, {"name": "Niamh Wilson", "character": "Gracie", "id": 51042, "credit_id": "52fe4bd49251416c910e6fd3", "cast_id": 4, "profile_path": "/rFsDF73n6ipaF15OSSKnAXBtlSt.jpg", "order": 4}, {"name": "Jakob Davies", "character": "Layton", "id": 139618, "credit_id": "52fe4bd49251416c910e7003", "cast_id": 17, "profile_path": "/9401kh3am1lZijYUbPUnnYBrw3Z.jpg", "order": 5}, {"name": "Rick Mercer", "character": "Roy", "id": 1212661, "credit_id": "53bec0140e0a26157c0044c4", "cast_id": 28, "profile_path": null, "order": 6}, {"name": "Robert Maillet", "character": "Giant Hobo", "id": 112692, "credit_id": "52fe4bd49251416c910e6fcf", "cast_id": 3, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 7}, {"name": "Julian Richings", "character": "Ricky", "id": 2320, "credit_id": "52fe4bd49251416c910e6fdf", "cast_id": 7, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 8}, {"name": "Dominique Pinon", "character": "Two Clouds", "id": 2413, "credit_id": "52fe4bd49251416c910e6fe3", "cast_id": 8, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 9}, {"name": "Dawn Ford", "character": "Marge", "id": 1091868, "credit_id": "52fe4bd49251416c910e7037", "cast_id": 26, "profile_path": "/1aKWK9ksGeSUEwWCg3FnvNFEYBq.jpg", "order": 10}, {"name": "Lisa Bronwyn Moore", "character": "Judy", "id": 216778, "credit_id": "52fe4bd49251416c910e703b", "cast_id": 27, "profile_path": "/ggy0GUKPA6PQnszBBYbnFscqFcQ.jpg", "order": 11}, {"name": "Richard Jutras", "character": "Lecturer", "id": 1225492, "credit_id": "5453fa5dc3a36814840020a1", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "James Bradford", "character": "Smithsonian President", "id": 29468, "credit_id": "5453fa7bc3a3681473001f20", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Michel Perron", "character": "", "id": 7014, "credit_id": "5453fa890e0a2648cb00201e", "cast_id": 32, "profile_path": "/qHx0U6EattCgT6m46f9RXwRlTya.jpg", "order": 15}, {"name": "Susan Glover", "character": "", "id": 86488, "credit_id": "5453fa97c3a368147c001f1c", "cast_id": 33, "profile_path": "/7KQaRx8YpuEvVZ1mxtS32OFa83t.jpg", "order": 16}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e6fc7", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 6.8, "runtime": 105}, "10386": {"poster_path": "/ujvIxDj4sQknluvhcbJeqYVBV5p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23159305, "overview": "A giant metal machine falls to Earth and frightens the residents of a small town in Maine in 1958, until it befriends a nine-year-old boy named Hogarth and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.", "video": false, "id": 10386, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "The Iron Giant", "tagline": "It came from outer space!", "vote_count": 386, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0129167", "adult": false, "backdrop_path": "/11XLucJQvdgtchSfO0ZTbo966pp.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}], "release_date": "1999-08-06", "popularity": 1.22322261229611, "original_title": "The Iron Giant", "budget": 70000000, "cast": [{"name": "Jennifer Aniston", "character": "Annie Hughes (voice)", "id": 4491, "credit_id": "52fe43649251416c7500e86b", "cast_id": 1, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Harry Connick Jr.", "character": "Dean McCoppin (voice)", "id": 18688, "credit_id": "52fe43649251416c7500e86f", "cast_id": 2, "profile_path": "/zdIXPJyfpje8BGBjNQAe73CzSTx.jpg", "order": 1}, {"name": "Vin Diesel", "character": "The Iron Giant (voice)", "id": 12835, "credit_id": "52fe43649251416c7500e873", "cast_id": 3, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 2}, {"name": "Cloris Leachman", "character": "Mrs. Lynley Tensedge (voice)", "id": 9599, "credit_id": "52fe43649251416c7500e877", "cast_id": 4, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 3}, {"name": "James Gammon", "character": "Foreman Marv Loach / Floyd Turbeaux (voice)", "id": 16433, "credit_id": "52fe43649251416c7500e8ab", "cast_id": 15, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Kent Mansley (voice)", "id": 4443, "credit_id": "52fe43649251416c7500e8af", "cast_id": 16, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "John Mahoney", "character": "General Rogard (voice)", "id": 4251, "credit_id": "52fe43649251416c7500e8b3", "cast_id": 17, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 6}, {"name": "Eli Marienthal", "character": "Hogarth Hughes (voice)", "id": 116027, "credit_id": "52fe43649251416c7500e8b7", "cast_id": 18, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 7}, {"name": "M. Emmet Walsh", "character": "Earl Stutz (voice)", "id": 588, "credit_id": "52fe43649251416c7500e8bb", "cast_id": 19, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 8}, {"name": "Jack Angel", "character": "Additional Voices", "id": 19545, "credit_id": "52fe43649251416c7500e8bf", "cast_id": 20, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 9}, {"name": "Bob Bergen", "character": "Additional Voices", "id": 78317, "credit_id": "52fe43649251416c7500e8c3", "cast_id": 21, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 10}, {"name": "Mary Kay Bergman", "character": "Additional Voices", "id": 30695, "credit_id": "52fe43649251416c7500e8c7", "cast_id": 22, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 11}, {"name": "Michael Bird", "character": "Additional Voices", "id": 1075148, "credit_id": "52fe43649251416c7500e8cb", "cast_id": 23, "profile_path": "/7vE1uNNUi76GwwVlcnvJ6gAKIh0.jpg", "order": 12}, {"name": "Devon Cole Borisoff", "character": "Additional Voices", "id": 1075150, "credit_id": "52fe43649251416c7500e8cf", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Rodger Bumpass", "character": "Additional Voices", "id": 70615, "credit_id": "52fe43649251416c7500e8d3", "cast_id": 25, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 14}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe43649251416c7500e87d", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 7.2, "runtime": 86}, "2196": {"poster_path": "/zV4kwbDckeTMoIsbSt1lsTIZ2in.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 46, "overview": "Chaos ensues when a man tries to expose a dark secret regarding a recently deceased patriarch of a dysfunctional British family.", "video": false, "id": 2196, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Death at a Funeral", "tagline": "From director Frank Oz comes the story of a family that puts the F U in funeral.", "vote_count": 121, "homepage": "http://www.deathatafuneral-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0795368", "adult": false, "backdrop_path": "/ffXvlcmRhl0F9gyNdvTpFFa4ybt.jpg", "production_companies": [{"name": "Target Media Entertainment", "id": 1014}, {"name": "VIP 2 Medienfonds", "id": 3801}, {"name": "VIP 1 Medienfonds", "id": 10760}, {"name": "Parabolic Pictures", "id": 1012}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Stable Way Entertainment", "id": 1013}], "release_date": "2007-11-02", "popularity": 0.649206546364856, "original_title": "Death at a Funeral", "budget": 9000000, "cast": [{"name": "Matthew Macfadyen", "character": "Daniel", "id": 15576, "credit_id": "52fe4340c3a36847f8045d1d", "cast_id": 4, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 0}, {"name": "Keeley Hawes", "character": "Jane", "id": 22809, "credit_id": "52fe4340c3a36847f8045d21", "cast_id": 5, "profile_path": "/l6gt960OMUsX72Ytv2AkogldjNn.jpg", "order": 1}, {"name": "Andy Nyman", "character": "Howard", "id": 22810, "credit_id": "52fe4340c3a36847f8045d25", "cast_id": 6, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 2}, {"name": "Ewen Bremner", "character": "Justin", "id": 1125, "credit_id": "52fe4340c3a36847f8045d29", "cast_id": 7, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 3}, {"name": "Daisy Donovan", "character": "Martha", "id": 22811, "credit_id": "52fe4340c3a36847f8045d2d", "cast_id": 8, "profile_path": "/2mRIPWHALwGKuB8FtJ79gaJv3dd.jpg", "order": 4}, {"name": "Peter Vaughan", "character": "Alfie", "id": 386, "credit_id": "52fe4340c3a36847f8045d49", "cast_id": 13, "profile_path": "/z9ZplbTA1ojYhgZ8kJUKKhsJ7Gs.jpg", "order": 5}, {"name": "Jane Asher", "character": "Sandra", "id": 22969, "credit_id": "52fe4340c3a36847f8045d4d", "cast_id": 14, "profile_path": "/vL9Y4ArXO1Q4ctMYw6Q4JEeiiwm.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Peter", "id": 22970, "credit_id": "52fe4340c3a36847f8045d51", "cast_id": 15, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Peter Egan", "character": "Victor", "id": 16480, "credit_id": "52fe4340c3a36847f8045d55", "cast_id": 16, "profile_path": "/kmJJEd3MXSXzbRACya76avqSB8w.jpg", "order": 8}, {"name": "Rupert Graves", "character": "Robert", "id": 11278, "credit_id": "52fe4340c3a36847f8045d59", "cast_id": 17, "profile_path": "/wWMJKCYIaD9TKLKTKQL34jVrHjk.jpg", "order": 9}, {"name": "Kris Marshall", "character": "Troy", "id": 7058, "credit_id": "52fe4340c3a36847f8045d5d", "cast_id": 18, "profile_path": "/qFYjr7vVdSlsRD3bPlIfwft532m.jpg", "order": 10}, {"name": "Alan Tudyk", "character": "Simon", "id": 21088, "credit_id": "52fe4340c3a36847f8045d61", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 11}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe4340c3a36847f8045d0d", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.8, "runtime": 90}, "157845": {"poster_path": "/82Ig28QEEVEjAl3AGNfnLwwCi1n.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 2300000, "overview": "A decade after the collapse of the western world, Australia has become a lawless wasteland. As desperate outsiders pillage the country's precious mineral resources, taciturn Eric travels from town to town searching for signs of life.", "video": false, "id": 157845, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Rover", "tagline": "Fear the man with nothing left to lose.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2345737", "adult": false, "backdrop_path": "/yPWwmfwWJxalMXjzio3ufMhGyv6.jpg", "production_companies": [{"name": "Screen NSW", "id": 10951}, {"name": "Porchlight Films", "id": 6237}, {"name": "Screen Australia", "id": 7584}, {"name": "Blue-Tongue Films", "id": 32299}, {"name": "Lava Bear Films", "id": 32300}, {"name": "South Australian Film Corporation, The", "id": 33905}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2014-05-18", "popularity": 0.990814334878673, "original_title": "The Rover", "budget": 12250000, "cast": [{"name": "Robert Pattinson", "character": "Reynolds", "id": 11288, "credit_id": "52fe4bd49251416c910e7061", "cast_id": 1, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Eric", "id": 529, "credit_id": "52fe4bd49251416c910e7065", "cast_id": 2, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Scoot McNairy", "character": "Henry", "id": 59233, "credit_id": "52fe4bd49251416c910e707b", "cast_id": 6, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 2}, {"name": "Nash Edgerton", "character": "Town Soldier", "id": 75131, "credit_id": "52fe4bd49251416c910e707f", "cast_id": 7, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 3}, {"name": "Anthony Hayes", "character": "Sgt. Rickofferson", "id": 75711, "credit_id": "52fe4bd49251416c910e7083", "cast_id": 8, "profile_path": "/6Uros6khPptET5CgkmYkU0hJla7.jpg", "order": 4}, {"name": "Susan Prior", "character": "Dot", "id": 76069, "credit_id": "52fe4bd49251416c910e7087", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Gillian Jones", "character": "Grandma", "id": 75540, "credit_id": "52fe4bd49251416c910e708b", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Tawanda Manyimo", "character": "Caleb", "id": 1291958, "credit_id": "52fe4bd49251416c910e708f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Chan Kien", "character": "Karaoke", "id": 1410566, "credit_id": "54ae561e925141131f000f1b", "cast_id": 57, "profile_path": null, "order": 8}, {"name": "Tek Kong Lim", "character": "Karaoke", "id": 1410567, "credit_id": "54ae5637c3a368404f0011dc", "cast_id": 58, "profile_path": null, "order": 9}], "directors": [{"name": "David Mich\u00f4d", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e706b", "profile_path": "/2BD1vy3Q96l7jhXdA3t8KM8xkmP.jpg", "id": 114334}], "vote_average": 6.3, "runtime": 100}, "157847": {"poster_path": "/bvcLnoffCm67n7pZPVdJ6pluJsi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2365467, "overview": "The rough-hewn boss (Nicolas Cage) of a lumber crew courts trouble when he steps in to protect the youngest member (Tye Sheridan) of his team from an abusive father.", "video": false, "id": 157847, "genres": [{"id": 18, "name": "Drama"}], "title": "Joe", "tagline": "", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2382396", "adult": false, "backdrop_path": "/183Jzh007eOZRkrfIDAcpvhzKli.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}, {"name": "Dreambridge Films", "id": 14037}, {"name": "Rough House Pictures", "id": 20848}, {"name": "Muskat Filmed Properties", "id": 10989}], "release_date": "2013-08-30", "popularity": 1.04415488247014, "original_title": "Joe", "budget": 4000000, "cast": [{"name": "Nicolas Cage", "character": "Joe Ransom", "id": 2963, "credit_id": "52fe4bd49251416c910e70a9", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Tye Sheridan", "character": "Gary", "id": 1034681, "credit_id": "52fe4bd49251416c910e70b3", "cast_id": 3, "profile_path": "/tdplYVnd1bEWjv41B4gk8D1vLfO.jpg", "order": 1}, {"name": "Ronnie Gene Blevins", "character": "Willie", "id": 98804, "credit_id": "52fe4bd49251416c910e70b7", "cast_id": 4, "profile_path": "/oRQxtpbG1jeeUJjx1oKuLldHtol.jpg", "order": 2}, {"name": "Sue Rock", "character": "Merle", "id": 969635, "credit_id": "52fe4bd49251416c910e70bb", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Heather Kafka", "character": "Lacy", "id": 71565, "credit_id": "52fe4bd49251416c910e70bf", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Robert Johnson", "character": "Cop #1", "id": 1176993, "credit_id": "52fe4bd49251416c910e70c3", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Gary Poulter", "character": "Wade", "id": 1206062, "credit_id": "52fe4bd49251416c910e70d3", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Adriene Mishler", "character": "Connie", "id": 1049938, "credit_id": "532b39ca9251410836001b91", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Brenda Isaacs Booth", "character": "Mother Jones", "id": 229777, "credit_id": "532b39df9251410845001ac1", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Aaron Spivey-Sorrells", "character": "Sammy", "id": 205525, "credit_id": "532b39ea9251410845001ac3", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Dana Freitag", "character": "Sue", "id": 1302856, "credit_id": "532b39fd925141083f001b1c", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Anna Niemtschk", "character": "Dorothy", "id": 1372217, "credit_id": "5434f6530e0a26583400a9f9", "cast_id": 44, "profile_path": null, "order": 11}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e70af", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 6.6, "runtime": 118}, "231576": {"poster_path": "/8b54J6gCM27QodPBoBWAcC9JHnd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5483299, "overview": "Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he'd always dreamed he'd be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn't find.", "video": false, "id": 231576, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Wish I Was Here", "tagline": "Life is an occasion. Rise to it.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2870708", "adult": false, "backdrop_path": "/5ARi1zU692Bj7pAdXJUM0zGBRax.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Worldview Entertainment", "id": 9015}, {"name": "Double Feature Films", "id": 215}], "release_date": "2014-01-18", "popularity": 1.13483083055256, "original_title": "Wish I Was Here", "budget": 5500000, "cast": [{"name": "Zach Braff", "character": "Aidan Bloom", "id": 5367, "credit_id": "52fe4df1c3a36847f8275aa9", "cast_id": 1, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Sarah Bloom", "id": 11661, "credit_id": "52fe4df1c3a36847f8275ab5", "cast_id": 5, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Joey King", "character": "Grace", "id": 125025, "credit_id": "52fe4df1c3a36847f8275ab1", "cast_id": 4, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 2}, {"name": "Pierce Gagnon", "character": "Tucker", "id": 992427, "credit_id": "53c69649c3a3686266002224", "cast_id": 14, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 3}, {"name": "Donald Faison", "character": "Anthony", "id": 49002, "credit_id": "52fe4df1c3a36847f8275aad", "cast_id": 2, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 4}, {"name": "Mandy Patinkin", "character": "Saul Bloom", "id": 25503, "credit_id": "52fe4df1c3a36847f8275ab9", "cast_id": 6, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 5}, {"name": "Ashley Greene", "character": "Janine", "id": 45827, "credit_id": "52fe4df1c3a36847f8275abd", "cast_id": 7, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 6}, {"name": "Jim Parsons", "character": "Paul", "id": 5374, "credit_id": "52fe4df1c3a36847f8275ad3", "cast_id": 11, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 7}, {"name": "James Avery", "character": "Audition Actor #2", "id": 51547, "credit_id": "53c69607c3a3686266002213", "cast_id": 12, "profile_path": "/iDJcKHZ67yQv8nAeAUhM8PhQxzb.jpg", "order": 8}, {"name": "Alexander Chaplin", "character": "Rabbi Rosenberg", "id": 87951, "credit_id": "53c69628c3a36862470022f9", "cast_id": 13, "profile_path": "/yvKgSPgmmAprXMHl0HLlKvxeft6.jpg", "order": 9}, {"name": "Josh Gad", "character": "Noah", "id": 54415, "credit_id": "53c6969dc3a368624b002143", "cast_id": 15, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 10}, {"name": "Leslie David Baker", "character": "Audition Actor #1", "id": 1230842, "credit_id": "5488aae8c3a3684148001c87", "cast_id": 16, "profile_path": "/rciNlHMHmYNrjWMvXMgGSbQh529.jpg", "order": 11}, {"name": "Leslie David Baker", "character": "Audition Actor #2", "id": 1230842, "credit_id": "5488abf8c3a368415c001d5d", "cast_id": 17, "profile_path": "/rciNlHMHmYNrjWMvXMgGSbQh529.jpg", "order": 12}, {"name": "Ato Essandoh", "character": "Audition Actor #3", "id": 5377, "credit_id": "5488ad24c3a368415c001d97", "cast_id": 18, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 13}, {"name": "Mark Thudium", "character": "Terry", "id": 1397412, "credit_id": "5488af14c3a3684145001f40", "cast_id": 19, "profile_path": "/6jq6dVyqMJskhaDGd79YZiANOkv.jpg", "order": 14}, {"name": "Allan Rich", "character": "Rabbi Twersky", "id": 568531, "credit_id": "5488ba58c3a3684155001ea6", "cast_id": 20, "profile_path": "/Asmdc5LrKtjklKyWuEochYe3Rn2.jpg", "order": 15}, {"name": "Michael Weston", "character": "Jerry", "id": 51381, "credit_id": "5488bc5ac3a3682d010008bf", "cast_id": 21, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 16}, {"name": "Cody Sullivan", "character": "Jesse", "id": 1397448, "credit_id": "5488bd6fc3a36841510024ba", "cast_id": 22, "profile_path": "/y90n7Nm2PW6nJ8iy7l6mfPyHPTo.jpg", "order": 17}, {"name": "Bruce Nozick", "character": "Dr. Becker", "id": 59223, "credit_id": "5488bf5192514151fd0021d3", "cast_id": 23, "profile_path": "/z6NjMhldGtQu4g8htZHLjhkvNWj.jpg", "order": 18}, {"name": "Matt Winston", "character": "Alan", "id": 35521, "credit_id": "5488c31892514161d9000058", "cast_id": 24, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 19}, {"name": "Taylor Bagley", "character": "Janine's Friend", "id": 1397453, "credit_id": "5488c4bcc3a3686f4e000091", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "Jennifer Terry", "character": "Janine's Other Friend", "id": 1397454, "credit_id": "5488c4f9c3a3686f4a00008a", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Jackie Johnson", "character": "Female Supermarket Employee", "id": 1397455, "credit_id": "5488c54f92514161d30000a9", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Bob Clendenin", "character": "Defense Attorney", "id": 129661, "credit_id": "5488c6bdc3a3686f520000d8", "cast_id": 28, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 23}, {"name": "Silvia Curiel", "character": "Esperanza", "id": 945426, "credit_id": "5488c7da92514161d50000f8", "cast_id": 29, "profile_path": "/jPbaQ6ej6WnqkheUwhubnQA9fJk.jpg", "order": 24}, {"name": "Nichole Galicia", "character": "Juliet", "id": 1037108, "credit_id": "5488c8f1c3a3686f470000ed", "cast_id": 30, "profile_path": "/mVt9uits1dAhVNKRwJlOmbwwIeB.jpg", "order": 25}, {"name": "Charlie", "character": "Kugel", "id": 1397469, "credit_id": "5488c93392514161d5000128", "cast_id": 31, "profile_path": null, "order": 26}], "directors": [{"name": "Zach Braff", "department": "Directing", "job": "Director", "credit_id": "52fe4df1c3a36847f8275ac3", "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "id": 5367}], "vote_average": 7.0, "runtime": 120}, "157849": {"poster_path": "/iSMTe79efcxgI5jSFBAg6GjxEPs.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a half-Chechen, half-Russian, tortured half-to-death immigrant turns up in Hamburg's Islamic community, laying claim to his father's ill gotten fortune, both German and US security agencies take a close interest: as the clock ticks down and the stakes rise, the race is on to establish this most wanted man's true identity - oppressed victim or destruction-bent extremist?", "video": false, "id": 157849, "genres": [{"id": 53, "name": "Thriller"}], "title": "A Most Wanted Man", "tagline": "", "vote_count": 196, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1972571", "adult": false, "backdrop_path": "/4NSc5ZBMYuetFLpbktlcCOb7EM9.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Senator Film Produktion", "id": 191}, {"name": "Film4", "id": 9349}, {"name": "Demarest Films", "id": 13241}, {"name": "The Ink Factory", "id": 28275}, {"name": "Senator Film", "id": 36614}, {"name": "Potboiler Productions", "id": 36615}, {"name": "Amusement Park Films", "id": 36616}, {"name": "Deutscher Filmf\u00f6rderfonds (DFFF)", "id": 45198}, {"name": "Filmf\u00f6rderung Hamburg Schleswig-Holstein", "id": 45199}, {"name": "Medienboard Berlin-Brandenburg", "id": 45201}], "release_date": "2014-07-25", "popularity": 1.04714380108348, "original_title": "A Most Wanted Man", "budget": 0, "cast": [{"name": "Philip Seymour Hoffman", "character": "G\u00fcnther Bachmann", "id": 1233, "credit_id": "52fe4bd49251416c910e7109", "cast_id": 4, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Annabel Richter", "id": 53714, "credit_id": "52fe4bd49251416c910e7101", "cast_id": 2, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Robin Wright", "character": "Martha Sullivan", "id": 32, "credit_id": "52fe4bd49251416c910e710d", "cast_id": 5, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Daniel Br\u00fchl", "character": "Max", "id": 3872, "credit_id": "52fe4bd59251416c910e7111", "cast_id": 6, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 3}, {"name": "Willem Dafoe", "character": "Tommy Brue", "id": 5293, "credit_id": "52fe4bd49251416c910e7105", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 4}, {"name": "Grigoriy Dobrygin", "character": "Issa Karpov", "id": 107722, "credit_id": "52fe4bd59251416c910e7119", "cast_id": 8, "profile_path": "/lYjf1G9naB9vTzaZyMRseyB2LeM.jpg", "order": 5}, {"name": "Nina Hoss", "character": "Erna Frey", "id": 681, "credit_id": "52fe4bd59251416c910e7115", "cast_id": 7, "profile_path": "/5D6DH6PjSldIf3LkPGFSLAkMRIC.jpg", "order": 6}, {"name": "Martin Wuttke", "character": "The Admiral", "id": 49056, "credit_id": "52fe4bd59251416c910e7135", "cast_id": 13, "profile_path": "/khs787VvZOGI7b8iGQ9wqZNxIYJ.jpg", "order": 7}, {"name": "Kostja Ullmann", "character": "Rasheed", "id": 5202, "credit_id": "52fe4bd59251416c910e7139", "cast_id": 14, "profile_path": "/zGlasppmZ86jmBfWXEvI77eGgaF.jpg", "order": 8}, {"name": "Rainer Bock", "character": "Dieter Mohr", "id": 65054, "credit_id": "52fe4bd59251416c910e713d", "cast_id": 15, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 9}, {"name": "Vicky Krieps", "character": "Niki", "id": 1080195, "credit_id": "52fe4bd59251416c910e7141", "cast_id": 16, "profile_path": "/4vUB4fcPeSfOp31ZybLp94bRKXU.jpg", "order": 10}, {"name": "Homayoun Ershadi", "character": "Abdullah", "id": 117528, "credit_id": "544a1b230e0a2674830037d2", "cast_id": 17, "profile_path": "/iJ7Oukp3TVfoTYdqkoVXg8ZEleJ.jpg", "order": 11}, {"name": "Mehdi Dehbi", "character": "Jamal", "id": 146358, "credit_id": "54893616c3a3686f4e000d68", "cast_id": 18, "profile_path": "/4mwfsLYlDRvH4dKY5QMmbZYDoOZ.jpg", "order": 12}, {"name": "Neil Malik Abdullah", "character": "Abdullah's Bodyguard", "id": 559593, "credit_id": "548937ff92514161d9000cf7", "cast_id": 19, "profile_path": "/5Umjh0F7LPgBEsxG8PmEDuSmWdT.jpg", "order": 13}, {"name": "Franz Hartwig", "character": "Karl", "id": 1397634, "credit_id": "548945f0c3a3686f5b000e59", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Vedat Erincin", "character": "Storekeeper", "id": 1074378, "credit_id": "548949d1c3a3686f4e000f52", "cast_id": 21, "profile_path": "/mSfMOseGjFA7uSdysq841xwl2No.jpg", "order": 15}, {"name": "Derya Alabora", "character": "Leyla Oktay", "id": 133818, "credit_id": "54894aaac3a3686f55000ff1", "cast_id": 22, "profile_path": "/gdI0Q4x6zgHaD8SRTRXYAIVQhgf.jpg", "order": 16}, {"name": "Tamer Yigit", "character": "Melik Oktay", "id": 133819, "credit_id": "54894c2bc3a3686f5500101f", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Ren\u00e9 Lay", "character": "Sparring Partner", "id": 1397639, "credit_id": "54894ca092514161cc000f6c", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "Herbert Gr\u00f6nemeyer", "character": "Michael Axelrod", "id": 5228, "credit_id": "54895016c3a3686f52001016", "cast_id": 25, "profile_path": "/sd500lUOKffH6GjTgmO72eCfmmL.jpg", "order": 19}, {"name": "Georg Ebinal", "character": "Axelrod's Driver", "id": 1397642, "credit_id": "54895074c3a3686f4e001013", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Bernhard Sch\u00fctz", "character": "Otto Keller", "id": 44516, "credit_id": "54895276c3a3686f52001048", "cast_id": 27, "profile_path": "/gAUHJJMmoXiCvLdBZwPWgo8qBSL.jpg", "order": 21}, {"name": "Jessica Joffe", "character": "Lotta", "id": 1397649, "credit_id": "54895398c3a3686f4e001052", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Imke B\u00fcchel", "character": "Frau Elli", "id": 24064, "credit_id": "548954c292514161cc001028", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Ursina Lardi", "character": "Mitzi Brue", "id": 54948, "credit_id": "54895689c3a3686f5200109d", "cast_id": 30, "profile_path": "/qyFN0VlX0Ds1EV9wajiTrvb6nzX.jpg", "order": 24}, {"name": "Uwe Dag Berlin", "character": "Tattooed Man", "id": 36406, "credit_id": "5489574f92514161c700110a", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Corinna Kropiunig", "character": "Lonely Dancing Woman", "id": 1397653, "credit_id": "5489577692514161c900103f", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Max Volkert Martens", "character": "Otto Burgdorf", "id": 33121, "credit_id": "5489587192514161cc001077", "cast_id": 33, "profile_path": "/n1xpn9lGnHkDG2jMBABmjH6dWQh.jpg", "order": 27}], "directors": [{"name": "Anton Corbijn", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e70fd", "profile_path": "/ov4kjSJGwaYnlgPCENRVexTt4q2.jpg", "id": 45052}], "vote_average": 6.5, "runtime": 121}, "157851": {"poster_path": "/AvDuz23E36zy6IPVLNNpNrlWJsb.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Led by the loathsome yet funny and touching child-star Benjie, we witness the convoluted world of shallow, selfish celebrities and their minions, all of whom are about to be manipulated and destroyed by the young woman who literally represents the fruit of their twisted machinations, Agatha, Benjie\u2019s tormented, apparently psychotic sister.", "video": false, "id": 157851, "genres": [{"id": 18, "name": "Drama"}], "title": "Maps to the Stars", "tagline": "A Film By David Cronenberg", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2172584", "adult": false, "backdrop_path": "/i1DPN19CK8rTkwyMS9iy4D9iRAO.jpg", "production_companies": [{"name": "Prospero Pictures", "id": 2844}, {"name": "Sentient Entertainment", "id": 23514}, {"name": "SBS Productions", "id": 8997}, {"name": "Integral Film", "id": 1905}], "release_date": "2014-05-21", "popularity": 0.930775528307154, "original_title": "Maps to the Stars", "budget": 0, "cast": [{"name": "Julianne Moore", "character": "Havana Segrand", "id": 1231, "credit_id": "52fe4bd59251416c910e7169", "cast_id": 4, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Mia Wasikowska", "character": "Agatha Weiss", "id": 76070, "credit_id": "52fe4bd59251416c910e716d", "cast_id": 5, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 1}, {"name": "Evan Bird", "character": "Benjie Weiss", "id": 1366725, "credit_id": "542749cec3a3680b1b000aca", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "John Cusack", "character": "Dr. Stafford Weiss", "id": 3036, "credit_id": "52fe4bd59251416c910e7161", "cast_id": 2, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 3}, {"name": "Robert Pattinson", "character": "Jerome Fontana", "id": 11288, "credit_id": "52fe4bd59251416c910e7165", "cast_id": 3, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 4}, {"name": "Sarah Gadon", "character": "Clarice Taggart", "id": 190895, "credit_id": "52fe4bd59251416c910e7175", "cast_id": 7, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 5}, {"name": "Carrie Fisher", "character": "herself", "id": 4, "credit_id": "54274a87c3a3680b25000b2f", "cast_id": 16, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 6}, {"name": "Olivia Williams", "character": "Christina Weiss", "id": 11616, "credit_id": "52fe4bd59251416c910e7171", "cast_id": 6, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 7}, {"name": "Emilia McCarthy", "character": "Kayla", "id": 1361975, "credit_id": "54274a28c3a3680b21000a52", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Niamh Wilson", "character": "Sam", "id": 51042, "credit_id": "54274a0ec3a3680b25000b1d", "cast_id": 10, "profile_path": "/rFsDF73n6ipaF15OSSKnAXBtlSt.jpg", "order": 9}, {"name": "Amanda Brugel", "character": "Victoria", "id": 1232769, "credit_id": "54274a3b0e0a26555f000c4d", "cast_id": 12, "profile_path": "/h7gjTxkROWvaKgC0YeigrbjU4lf.jpg", "order": 10}, {"name": "Jayne Heitmeyer", "character": "Azita Wachtel", "id": 29460, "credit_id": "54274a4f0e0a265575000a61", "cast_id": 13, "profile_path": "/k7fVm55V9jneIJORYc8OLBFbbjS.jpg", "order": 11}, {"name": "Clara Pasieka", "character": "Gretchen", "id": 1170844, "credit_id": "54274a62c3a3680b31000a6e", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Jennifer Gibson", "character": "Starla Gent", "id": 184815, "credit_id": "54274a77c3a3680b370009ba", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Joe Pingue", "character": "Arnold", "id": 86237, "credit_id": "54274a97c3a3680b1e000a52", "cast_id": 17, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 14}, {"name": "Jonathan Watton", "character": "Sterl Carruth", "id": 130365, "credit_id": "54274aab0e0a26556c000b2f", "cast_id": 18, "profile_path": "/U4VNM0fSMZbbY9G0lsPyW7NnU9.jpg", "order": 15}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4bd59251416c910e715d", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 5.7, "runtime": 112}, "10398": {"poster_path": "/9Pl7lqUzU7lxQHYjcmTT6ZvbbDY.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177841558, "overview": "A woman framed for her husband's murder suspects he is still alive; as she has already been tried for the crime, she can't be re-prosecuted if she finds and kills him.", "video": false, "id": 10398, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Double Jeopardy", "tagline": "Murder isn't always a crime.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0150377", "adult": false, "backdrop_path": "/o7jtzBS4OQId8yHXzPoxGzXY6oE.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1999-09-24", "popularity": 0.570529178023413, "original_title": "Double Jeopardy", "budget": 70000000, "cast": [{"name": "Tommy Lee Jones", "character": "Travis Lehman", "id": 2176, "credit_id": "52fe43669251416c7500eec3", "cast_id": 1, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Ashley Judd", "character": "Elizabeth \"Libby\" Parsons", "id": 15852, "credit_id": "52fe43669251416c7500eec7", "cast_id": 2, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 1}, {"name": "Bruce Greenwood", "character": "Nicholas \"Nick\" Parsons / Jonathan Devereaux", "id": 21089, "credit_id": "52fe43669251416c7500eecb", "cast_id": 3, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 2}, {"name": "Annabeth Gish", "character": "Angela \"Angie\" Green", "id": 49425, "credit_id": "52fe43669251416c7500eecf", "cast_id": 4, "profile_path": "/tA2iInfNHuqWvAec0wtnrji0nGw.jpg", "order": 3}, {"name": "Benjamin Weir", "character": "Matty - Age 4", "id": 942021, "credit_id": "52fe43679251416c7500eefd", "cast_id": 12, "profile_path": "/qddAUZWZ6LZsLL4IlQ0FEMEOH3N.jpg", "order": 4}, {"name": "Jay Brazeau", "character": "Bobby", "id": 63791, "credit_id": "52fe43679251416c7500ef01", "cast_id": 13, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 5}, {"name": "John Maclaren", "character": "Rudy", "id": 21021, "credit_id": "52fe43679251416c7500ef05", "cast_id": 14, "profile_path": "/bLAjD9xwJgRHk1dmTIjDV4e8rqf.jpg", "order": 6}], "directors": [{"name": "Bruce Beresford", "department": "Directing", "job": "Director", "credit_id": "52fe43669251416c7500eed5", "profile_path": "/2BM92YfwzMpFkk5IlNZfZqPmODy.jpg", "id": 5696}], "vote_average": 5.8, "runtime": 105}, "2207": {"poster_path": "/wpKBLDjNRddmH6N32ni4bASogt8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65664721, "overview": "An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.", "video": false, "id": 2207, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "16 Blocks", "tagline": "For a New York cop and his witness, the distance between life and death just got very short.", "vote_count": 212, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450232", "adult": false, "backdrop_path": "/31SqCV9NfHvGJ8n7v60fV3oMobZ.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Millennium Films", "id": 10254}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG III", "id": 10885}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "16 Block Productions", "id": 10886}, {"name": "Donners' Company", "id": 431}], "release_date": "2006-02-28", "popularity": 0.965293676385315, "original_title": "16 Blocks", "budget": 55000000, "cast": [{"name": "Bruce Willis", "character": "Jack Mosley", "id": 62, "credit_id": "52fe4341c3a36847f804622b", "cast_id": 14, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Mos Def", "character": "Eddie Bunker", "id": 4239, "credit_id": "52fe4341c3a36847f804622f", "cast_id": 15, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 1}, {"name": "David Morse", "character": "Frank Nugent", "id": 52, "credit_id": "52fe4341c3a36847f8046233", "cast_id": 16, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 2}, {"name": "Jenna Stern", "character": "Diane Mosley", "id": 22820, "credit_id": "52fe4341c3a36847f8046237", "cast_id": 17, "profile_path": "/9cpTe2q0UR7tNJmJGnrYcveAxj.jpg", "order": 3}, {"name": "David Zayas", "character": "Robert Torres", "id": 22821, "credit_id": "52fe4341c3a36847f804623b", "cast_id": 18, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 4}, {"name": "Casey Sander", "character": "Captain Dan Gruber", "id": 42141, "credit_id": "52fe4341c3a36847f8046245", "cast_id": 20, "profile_path": "/aibkwqOKJK2Qf9pS7rHqsI0Xw5H.jpg", "order": 5}, {"name": "Cylk Cozart", "character": "Jimmy Mulvey", "id": 56040, "credit_id": "52fe4341c3a36847f8046249", "cast_id": 21, "profile_path": "/9jjnxj9Rhn5MRsTbkvitwUWIbG2.jpg", "order": 6}, {"name": "Robert Racki", "character": "Jerry Shue", "id": 538297, "credit_id": "52fe4341c3a36847f804624d", "cast_id": 22, "profile_path": "/xbRGlPrymqL6T2WYXoYeOwokx1v.jpg", "order": 7}, {"name": "Patrick Garrow", "character": "Touhey", "id": 190961, "credit_id": "52fe4341c3a36847f8046251", "cast_id": 23, "profile_path": "/4jcTiet490Nd6A3VvyAkt6oAWoi.jpg", "order": 8}, {"name": "Sasha Roiz", "character": "Kaller", "id": 6071, "credit_id": "52fe4341c3a36847f8046255", "cast_id": 24, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 9}, {"name": "Conrad Pla", "character": "Ortiz", "id": 21291, "credit_id": "52fe4341c3a36847f8046259", "cast_id": 25, "profile_path": "/zbuVbADIl0l02QxMLC6w0AAOyLs.jpg", "order": 10}, {"name": "Hechter Ubarry", "character": "Maldonado", "id": 243333, "credit_id": "52fe4341c3a36847f804625d", "cast_id": 26, "profile_path": "/pjvrOhOjyh0nzfiyNjObXgjCkBa.jpg", "order": 11}, {"name": "Richard Fitzpatrick", "character": "Deputy Commissioner Wagner", "id": 44103, "credit_id": "52fe4341c3a36847f8046261", "cast_id": 27, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 12}, {"name": "Peter McRobbie", "character": "Mike Sheehan", "id": 19489, "credit_id": "52fe4341c3a36847f8046265", "cast_id": 28, "profile_path": "/kx0PjY89aGd3WX1Bf1zSw3lKYvg.jpg", "order": 13}, {"name": "Michael F. Keenan", "character": "Fitzpatrick", "id": 574368, "credit_id": "52fe4341c3a36847f8046269", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Robert Clohessy", "character": "Cannova", "id": 2256, "credit_id": "52fe4341c3a36847f804626d", "cast_id": 30, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 15}, {"name": "Tig Fong", "character": "Briggs", "id": 190917, "credit_id": "52fe4341c3a36847f8046271", "cast_id": 31, "profile_path": "/6gRBRkmFqgX2Ek7ACmb1arpGmLv.jpg", "order": 16}, {"name": "David Sparrow", "character": "Holding Cell Officer", "id": 36816, "credit_id": "52fe4341c3a36847f8046275", "cast_id": 32, "profile_path": "/wpv5m3TePP3ju8lrugwUquPDaON.jpg", "order": 17}, {"name": "Beatriz Yuste", "character": "Subway Commuter", "id": 178076, "credit_id": "52fe4341c3a36847f8046279", "cast_id": 33, "profile_path": "/mMt2YKMSANAsnLQhk3St30TMIMH.jpg", "order": 18}, {"name": "Danny Lima", "character": "Russian", "id": 166436, "credit_id": "52fe4341c3a36847f804627d", "cast_id": 34, "profile_path": "/fC4zCMOTgUw7WiBD8b2pT4fjMQ9.jpg", "order": 19}, {"name": "Angela Seto", "character": "Chinese Wife", "id": 574369, "credit_id": "52fe4341c3a36847f8046281", "cast_id": 35, "profile_path": null, "order": 20}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4341c3a36847f80461e5", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.0, "runtime": 105}, "10400": {"poster_path": "/r4tTjItPX7ziaadHsvTtPK35Kw1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50668906, "overview": "The story of Rubin \"Hurricane\" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.", "video": false, "id": 10400, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hurricane", "tagline": "", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0174856", "adult": false, "backdrop_path": "/i8AGAKxZL5aXnDcXVOZK5JkkDhn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Azoff Entertainment", "id": 10619}, {"name": "Beacon Communications", "id": 919}], "release_date": "1999-09-17", "popularity": 1.04178702138651, "original_title": "The Hurricane", "budget": 38000000, "cast": [{"name": "Denzel Washington", "character": "Rubin \"Hurricane\" Carter", "id": 5292, "credit_id": "52fe43679251416c7500efa1", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Vicellous Reon Shannon", "character": "Lesra Martin", "id": 25868, "credit_id": "52fe43679251416c7500efa5", "cast_id": 2, "profile_path": "/paAiswc2A5u2jMi785nswXjjWdQ.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Lisa Peters", "id": 13549, "credit_id": "52fe43679251416c7500efa9", "cast_id": 3, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Sam Chaiton", "id": 23626, "credit_id": "52fe43679251416c7500efad", "cast_id": 4, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "John Hannah", "character": "Terry", "id": 10727, "credit_id": "53d8bd0f0e0a261c81001e8f", "cast_id": 15, "profile_path": "/jnHc3tC8mzLbVVJD6xWGUsEzC2r.jpg", "order": 4}, {"name": "Dan Hedaya", "character": "Della Pesca", "id": 6486, "credit_id": "547ee5b8c3a368395a000fdf", "cast_id": 16, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 5}, {"name": "Debbi Morgan", "character": "Mae Thelma", "id": 88161, "credit_id": "547ee5c7c3a3683961000ca5", "cast_id": 17, "profile_path": "/kNau0qkayNwApCQiAlX8v2H9KdW.jpg", "order": 6}, {"name": "Clancy Brown", "character": "Lt. Jimmy Williams", "id": 6574, "credit_id": "547ee5d392514124af000dfb", "cast_id": 18, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 7}, {"name": "David Paymer", "character": "Myron Bedlock", "id": 19839, "credit_id": "547ee5dec3a3683968000deb", "cast_id": 19, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 8}, {"name": "Harris Yulin", "character": "Leon Friedman", "id": 1166, "credit_id": "547ee5ed92514124b9000ee4", "cast_id": 20, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 9}, {"name": "Rod Steiger", "character": "Judge Sarokin", "id": 522, "credit_id": "547ee5f9c3a3683965000eb4", "cast_id": 21, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 10}, {"name": "Badja Djola", "character": "Mobutu", "id": 107009, "credit_id": "547ee606c3a368395c0010e6", "cast_id": 22, "profile_path": "/i5j8WpNKydvBs2Vu3cYJyXNBy3V.jpg", "order": 11}, {"name": "Vincent Pastore", "character": "Alfred Bello", "id": 47774, "credit_id": "547ee61cc3a368396f001069", "cast_id": 23, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 12}, {"name": "Al Waxman", "character": "Warden", "id": 36172, "credit_id": "547ee628c3a368396c000fc1", "cast_id": 24, "profile_path": "/8bZfhAZbKTHt2qi5B86Q4WNAGRo.jpg", "order": 13}, {"name": "David Lansbury", "character": "U.S. Court Prosecutor", "id": 80991, "credit_id": "547ee63692514124ad000e85", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Garland Whitt", "character": "John Artis", "id": 59570, "credit_id": "547ee64392514124af000e0d", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Chuck Cooper", "character": "Earl Martin", "id": 4892, "credit_id": "547ee650c3a368395c0010ef", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Brenda Denmark", "character": "Alma Martin (as Brenda Thomas Denmark)", "id": 171079, "credit_id": "547ee65fc3a368395a000ff6", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Marcia Bennett", "character": "Jean Wahl", "id": 40385, "credit_id": "547ee66dc3a368395e00104b", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Beatrice Winde", "character": "Louise Cockersham", "id": 168638, "credit_id": "547ee67ac3a368395c0010f7", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Mitchell Taylor Jr.", "character": "Young Rubin Carter", "id": 1393328, "credit_id": "547ee68692514124b9000ef8", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Bill Raymond", "character": "Paterson Judge", "id": 7576, "credit_id": "547ee693c3a368396f001081", "cast_id": 32, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 21}, {"name": "Merwin Goldsmith", "character": "Judge Larner", "id": 130724, "credit_id": "547ee69f92514124aa001037", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "John A. MacKay", "character": "Man at Falls", "id": 1393330, "credit_id": "547ee6ab92514124b9000f01", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Donnique Privott", "character": "Boy at the Falls", "id": 1393331, "credit_id": "547ee6bb92514124b6000fd4", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Moynan King", "character": "Tina Barbieri", "id": 941550, "credit_id": "547ee6c892514124ad000e98", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Gary DeWitt Marshall", "character": "Nite Spot Cabbie", "id": 944895, "credit_id": "547ee6d6c3a3683968000e05", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "John Christopher Jones", "character": "Reporter at Bar", "id": 51532, "credit_id": "547ee6e292514124ad000e9d", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Gwendolyn Mulamba", "character": "Nite Spot Woman", "id": 1393332, "credit_id": "547ee6ef92514124bb000f62", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Richard Davidson", "character": "Paterson Detective", "id": 209380, "credit_id": "547ee6fd92514124b3000ec0", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "George T. Odom", "character": "Big Ed (as George Odom)", "id": 1217610, "credit_id": "547ee70d92514124af000e29", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Tonye Patano", "character": "Woman at Prison", "id": 1214060, "credit_id": "547ee71892514124bb000f6c", "cast_id": 42, "profile_path": "/vmxQm19ncWnZDCIKsN74b13o6Rc.jpg", "order": 31}, {"name": "Fulvio Cecere", "character": "Paterson Policeman", "id": 65808, "credit_id": "547ee72492514124bb000f6e", "cast_id": 43, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 32}, {"name": "Phillip Jarrett", "character": "Soldier #1 in U.S.O. Club", "id": 23874, "credit_id": "547ee73192514124b9000f0f", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Rodney 'Bear' Jackson", "character": "Soldier #2 in U.S.O. Club (as Rodney M. Jackson)", "id": 5304, "credit_id": "547ee73fc3a3683961000cd4", "cast_id": 45, "profile_path": "/qi6H0wVTcWoaj0V6c0YfP9O17Pt.jpg", "order": 34}, {"name": "Judi Embden", "character": "Woman in U.S.O. Club", "id": 62129, "credit_id": "547ee74cc3a368395e00106e", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Terry Claybon", "character": "Emile Griffith", "id": 1393338, "credit_id": "547ee75992514124b3000ed9", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Ben Bray", "character": "Joey Giardello", "id": 59674, "credit_id": "547ee76692514124ad000eaf", "cast_id": 48, "profile_path": "/hBty1r73HUkvB30hFgrCxY2llcs.jpg", "order": 37}, {"name": "Michael Justus", "character": "Joey Cooper", "id": 1393339, "credit_id": "547ee77cc3a3683961000cdd", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Kenneth McGregor", "character": "Detective at Hospital", "id": 115856, "credit_id": "547ee7a4c3a368395a00102e", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Frank Proctor", "character": "Pittsburgh Ring Announcer", "id": 1393342, "credit_id": "547ee7bd92514124aa001056", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Peter Wylie", "character": "Pittsburgh Referee", "id": 1393343, "credit_id": "547ee7cb92514124b6000fff", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "David Gray", "character": "Pittsburgh TV Announcer", "id": 1218566, "credit_id": "547ee7d892514124aa00105f", "cast_id": 53, "profile_path": null, "order": 42}, {"name": "Joe Matheson", "character": "Philadelphia Ring Announcer", "id": 1393344, "credit_id": "547ee7e4c3a368395e001089", "cast_id": 54, "profile_path": null, "order": 43}, {"name": "Bill Lake", "character": "Philadelphia TV Announcer", "id": 166489, "credit_id": "547ee7f0c3a3683961000ceb", "cast_id": 55, "profile_path": null, "order": 44}, {"name": "Robin Ward", "character": "Reading, PA. TV Announcer", "id": 31581, "credit_id": "547ee80092514124b3000efe", "cast_id": 56, "profile_path": null, "order": 45}, {"name": "Harry Davis", "character": "Reading, PA. Referee", "id": 19787, "credit_id": "547ee80fc3a368395a001041", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Pippa Pearthree", "character": "Patty Valentine", "id": 169077, "credit_id": "547ee81a92514124b3000f02", "cast_id": 58, "profile_path": null, "order": 47}, {"name": "Jean Daigle", "character": "Detective", "id": 174952, "credit_id": "547ee827c3a3683968000e1f", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "Rob Evans", "character": "Detective at Lafayette Bar (as Robert Evans)", "id": 1393348, "credit_id": "547ee83d92514124af000e46", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Scott Gibson", "character": "Reporter at Banquet", "id": 63859, "credit_id": "547ee84ac3a3683968000e25", "cast_id": 61, "profile_path": "/7eyU1bC6wrXs9D1O67HlfufCpfN.jpg", "order": 50}, {"name": "Ann Holloway", "character": "Cashier", "id": 219407, "credit_id": "547ee857c3a368396f0010c3", "cast_id": 62, "profile_path": null, "order": 51}, {"name": "Bruce McFee", "character": "Prison Guard", "id": 82647, "credit_id": "547ee867c3a368395a00104c", "cast_id": 63, "profile_path": null, "order": 52}, {"name": "Conrad Bergschneider", "character": "Prison Guard", "id": 27586, "credit_id": "547ee87292514124b9000f42", "cast_id": 64, "profile_path": "/pQyFp7bBxyd8AjRoPugGTNeideN.jpg", "order": 53}, {"name": "Satori Shakoor", "character": "", "id": 1393349, "credit_id": "547ee87bc3a368395a001050", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "Zoran Radusinovic", "character": "", "id": 1393350, "credit_id": "547ee88392514124b6001019", "cast_id": 66, "profile_path": null, "order": 55}, {"name": "Stephen Lee Wright", "character": "", "id": 1393352, "credit_id": "547ee88ac3a3683961000cf9", "cast_id": 67, "profile_path": null, "order": 56}, {"name": "Michael Bodnar", "character": "", "id": 41658, "credit_id": "547ee89292514124af000e5b", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Carson Manning", "character": "", "id": 1239597, "credit_id": "547ee89bc3a3683961000cfe", "cast_id": 69, "profile_path": null, "order": 58}, {"name": "Debrah Ellen Waller", "character": "", "id": 1393353, "credit_id": "547ee8a392514124b600101f", "cast_id": 70, "profile_path": null, "order": 59}, {"name": "Richard Litt", "character": "", "id": 1393354, "credit_id": "547ee8ad92514124af000e66", "cast_id": 71, "profile_path": null, "order": 60}, {"name": "Adam Large", "character": "", "id": 1393355, "credit_id": "547ee8b4c3a368395c001158", "cast_id": 72, "profile_path": null, "order": 61}, {"name": "Peter Graham", "character": "Prisoner with Camera", "id": 1399075, "credit_id": "548da47a92514122f9004703", "cast_id": 91, "profile_path": null, "order": 62}, {"name": "Satori Shakoor", "character": "Prison Guard", "id": 1393349, "credit_id": "547ee8be92514124bb000fa0", "cast_id": 73, "profile_path": null, "order": 63}, {"name": "Zoran Radusinovic", "character": "Prison Guard", "id": 1393350, "credit_id": "547ee8c192514124bf000e93", "cast_id": 74, "profile_path": null, "order": 64}, {"name": "Stephen Lee Wright", "character": "Prison Guard", "id": 1393352, "credit_id": "547ee8c392514124b9000f49", "cast_id": 75, "profile_path": null, "order": 65}, {"name": "Michael Bodnar", "character": "Prison Guard", "id": 41658, "credit_id": "547ee8c692514124b3000f1e", "cast_id": 76, "profile_path": null, "order": 66}, {"name": "Carson Manning", "character": "Prison Guard", "id": 1239597, "credit_id": "547ee8c892514124b3000f20", "cast_id": 77, "profile_path": null, "order": 67}, {"name": "Debrah Ellen Waller", "character": "Prison Guard", "id": 1393353, "credit_id": "547ee8ca92514124ad000ee3", "cast_id": 78, "profile_path": null, "order": 68}, {"name": "Richard Litt", "character": "Prison Guard", "id": 1393354, "credit_id": "547ee8cdc3a368395a001063", "cast_id": 79, "profile_path": null, "order": 69}, {"name": "Adam Large", "character": "Prison Guard", "id": 1393355, "credit_id": "547ee8cf92514124aa00107c", "cast_id": 80, "profile_path": null, "order": 70}, {"name": "George Masswohl", "character": "Mechanic", "id": 1393357, "credit_id": "547ee8ee92514124b3000f27", "cast_id": 82, "profile_path": null, "order": 71}, {"name": "Lawrence Sacco", "character": "New Jersey Policeman", "id": 1393358, "credit_id": "547ee8f992514124ad000eec", "cast_id": 83, "profile_path": null, "order": 72}, {"name": "David Frisch", "character": "New Jersey Policeman", "id": 1393359, "credit_id": "547ee90492514124bf000e9f", "cast_id": 84, "profile_path": null, "order": 73}, {"name": "Ralph Brown", "character": "Federal Court Assistant Prosecutor", "id": 1393360, "credit_id": "547ee926c3a368395e0010b6", "cast_id": 85, "profile_path": null, "order": 74}, {"name": "Dyron Holmes", "character": "Reporter", "id": 1196490, "credit_id": "547ee93292514124aa001089", "cast_id": 86, "profile_path": null, "order": 75}, {"name": "Ryan Williams", "character": "Elstan Martin (as Ryann Williams)", "id": 1393361, "credit_id": "547ee953c3a3683965000f3c", "cast_id": 87, "profile_path": null, "order": 76}, {"name": "Bruce Vavrina", "character": "St. Joseph's Doctor", "id": 1393362, "credit_id": "547ee965c3a368396c00101f", "cast_id": 88, "profile_path": null, "order": 77}, {"name": "Brenda Braxton", "character": "Dancer with John Artis", "id": 1293297, "credit_id": "547ee97192514124b6001038", "cast_id": 89, "profile_path": null, "order": 78}, {"name": "Christopher Riordan", "character": "Jury Foreman", "id": 1240845, "credit_id": "547ee97e92514124b3000f41", "cast_id": 90, "profile_path": null, "order": 79}], "directors": [{"name": "Norman Jewison", "department": "Directing", "job": "Director", "credit_id": "52fe43679251416c7500efb3", "profile_path": "/yKm8CzUBaDagNFe9NLIcF3Dqhcv.jpg", "id": 13563}], "vote_average": 7.4, "runtime": 146}, "10402": {"poster_path": "/1AGR1KdIk1llaW983XsW5YsoPsI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65535067, "overview": "Deuce Bigalow is a fish tank cleaner until he gets a temporary job watching over a gigolo's house. But when Deuce accidentally wrecks the house, he is forced to compensate by becoming a gigolo himself! He takes on interesting clients (a tall Norwegian woman, a rotund eater in drag, a roommate who curses every five seconds, a nurse)...and together with a detective chasing Deuce down...", "video": false, "id": 10402, "genres": [{"id": 35, "name": "Comedy"}], "title": "Deuce Bigalow: Male Gigolo", "tagline": "He charges $10 but he\u2019s willing to negotiate.", "vote_count": 68, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/szTJbYJnm3OPwYxQKLuTtgsUsQ1.jpg", "id": 95664, "name": "Deuce Bigalow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0205000", "adult": false, "backdrop_path": "/x5a4GwJ7qLyjNQTTFGXEMtfXT95.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Quinta Communications", "id": 6370}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1999-12-10", "popularity": 0.824404259453595, "original_title": "Deuce Bigalow: Male Gigolo", "budget": 18000000, "cast": [{"name": "Rob Schneider", "character": "Deuce Bigalow", "id": 60949, "credit_id": "52fe43679251416c7500f08b", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "William Forsythe", "character": "Det. Chuck Fowler", "id": 4520, "credit_id": "52fe43679251416c7500f08f", "cast_id": 2, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 1}, {"name": "Eddie Griffin", "character": "Tiberius Jefferson \"T.J.\" Hicks", "id": 62842, "credit_id": "52fe43679251416c7500f093", "cast_id": 3, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 2}, {"name": "Arija Bareikis", "character": "Kate", "id": 33432, "credit_id": "52fe43679251416c7500f097", "cast_id": 4, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 3}, {"name": "Oded Fehr", "character": "Antoine Laconte", "id": 18041, "credit_id": "52fe43679251416c7500f0bf", "cast_id": 11, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 4}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe43679251416c7500f09d", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.8, "runtime": 88}, "9894": {"poster_path": "/mqb62jLrlrT6XS1rR8cprtEW2Z6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60240295, "overview": "When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up -- and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the \"friendship,\" Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behavior.", "video": false, "id": 9894, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Cable Guy", "tagline": "There's no such thing as free cable.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115798", "adult": false, "backdrop_path": "/9Z67nL04U2mMGQlpgcVNif9DqFz.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1996-06-10", "popularity": 0.524826099233123, "original_title": "The Cable Guy", "budget": 47000000, "cast": [{"name": "Jim Carrey", "character": "Cable Guy", "id": 206, "credit_id": "52fe4542c3a36847f80c41bd", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Matthew Broderick", "character": "Steven M. Kovacs", "id": 4756, "credit_id": "52fe4542c3a36847f80c41c1", "cast_id": 2, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Robin Harris", "id": 41087, "credit_id": "52fe4542c3a36847f80c41c5", "cast_id": 3, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Jack Black", "character": "Rick", "id": 70851, "credit_id": "52fe4542c3a36847f80c41c9", "cast_id": 4, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "George Segal", "character": "Steven's father", "id": 18364, "credit_id": "52fe4542c3a36847f80c41cd", "cast_id": 5, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 4}, {"name": "Diane Baker", "character": "Steven's Mother", "id": 6930, "credit_id": "52fe4542c3a36847f80c420d", "cast_id": 19, "profile_path": "/pExT2sv2tCRBxNzGKKNf2cdYI2q.jpg", "order": 5}, {"name": "Ben Stiller", "character": "Sam Sweet / Stan Sweet", "id": 7399, "credit_id": "52fe4542c3a36847f80c4211", "cast_id": 20, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 6}, {"name": "Eric Roberts", "character": "Eric Roberts", "id": 21315, "credit_id": "52fe4542c3a36847f80c4215", "cast_id": 21, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 7}, {"name": "Janeane Garofalo", "character": "Medieval Times Waitress", "id": 21197, "credit_id": "52fe4542c3a36847f80c4219", "cast_id": 22, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 8}, {"name": "Andy Dick", "character": "Medieval Times Host", "id": 43120, "credit_id": "52fe4542c3a36847f80c421d", "cast_id": 23, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 9}, {"name": "Harry O'Reilly", "character": "Steven's Boss", "id": 28101, "credit_id": "52fe4542c3a36847f80c4221", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "David Cross", "character": "Sales Manager", "id": 212, "credit_id": "52fe4542c3a36847f80c4225", "cast_id": 25, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 11}, {"name": "Amy Stiller", "character": "Steven's Secretary", "id": 26046, "credit_id": "52fe4542c3a36847f80c4229", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Owen Wilson", "character": "Robin's Date", "id": 887, "credit_id": "52fe4542c3a36847f80c422d", "cast_id": 27, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 13}, {"name": "Keith Gibbs", "character": "Basketball Player", "id": 134772, "credit_id": "52fe4542c3a36847f80c4231", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Kathy Griffin", "character": "Cable Boy's Mother", "id": 3138, "credit_id": "5305ccd7925141349718de90", "cast_id": 30, "profile_path": "/s77yQ2JLzn8tKtmeTvj74DfYeTf.jpg", "order": 15}, {"name": "Misa Koprova", "character": "Heather", "id": 198878, "credit_id": "5325584ec3a3684133002629", "cast_id": 31, "profile_path": "/AsKAZK6lscFlV8FOyTMct3N20mM.jpg", "order": 16}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe4542c3a36847f80c41d3", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 5.3, "runtime": 96}, "10428": {"poster_path": "/uu62T87qkLkapeuu7ArlnQ6tAap.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.", "video": false, "id": 10428, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hackers", "tagline": "There is no right or wrong, only fun and boring", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/yxkdsov2rx6ysCPPUEi4xIrJC3Z.jpg", "poster_path": "/1tIKPSCcICJ1wPbJESqDomqaG9f.jpg", "id": 248131, "name": "Hackers - The Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0113243", "adult": false, "backdrop_path": "/ar4ualmjUcyuNczshn16IOGmcKD.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1995-09-14", "popularity": 0.884754050670744, "original_title": "Hackers", "budget": 0, "cast": [{"name": "Jonny Lee Miller", "character": "Dade Murphy / 'Crash Override' / 'Zero Cool'", "id": 9012, "credit_id": "52fe436e9251416c750100d7", "cast_id": 16, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Kate Libby / 'Acid Burn'", "id": 11701, "credit_id": "52fe436e9251416c750100db", "cast_id": 17, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Jesse Bradford", "character": "Joey Pardella", "id": 17772, "credit_id": "52fe436e9251416c750100eb", "cast_id": 20, "profile_path": "/dOoAK7pcl1OtIcLUcs1LeFpJOJG.jpg", "order": 2}, {"name": "Matthew Lillard", "character": "Emmanuel Goldstein / 'Cereal Killer'", "id": 26457, "credit_id": "52fe436e9251416c750100ef", "cast_id": 21, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 3}, {"name": "Renoly Santiago", "character": "Ramon Sanchez / 'Phantom Phreak'", "id": 28863, "credit_id": "52fe436e9251416c750100f3", "cast_id": 22, "profile_path": "/pZb3RDVxDNJAOaBHwa078Z4FJiO.jpg", "order": 4}, {"name": "Fisher Stevens", "character": "Eugene Belford / 'The Plague' / Mr. Babbage", "id": 26473, "credit_id": "52fe436e9251416c750100f7", "cast_id": 23, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 5}, {"name": "Alberta Watson", "character": "Lauren Murphy", "id": 19958, "credit_id": "52fe436e9251416c750100fb", "cast_id": 24, "profile_path": "/iy3Qgqap1U1GRqNzjoX2mFwdqD3.jpg", "order": 6}, {"name": "Laurence Mason", "character": "Paul Cook / 'Lord Nikon'", "id": 65141, "credit_id": "52fe436e9251416c750100ff", "cast_id": 25, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 7}, {"name": "Lorraine Bracco", "character": "Margo", "id": 11478, "credit_id": "52fe436e9251416c75010103", "cast_id": 26, "profile_path": "/1neO0scj7QyrrWDp1JZRrN0tA8Y.jpg", "order": 8}, {"name": "Wendell Pierce", "character": "S.S. Agent Richard Gill", "id": 17859, "credit_id": "52fe436e9251416c75010107", "cast_id": 27, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 9}, {"name": "Michael Gaston", "character": "S.S. Agent Bob", "id": 33241, "credit_id": "52fe436e9251416c7501010b", "cast_id": 28, "profile_path": "/tAmpD16aVzWbs8evbCFaed9perN.jpg", "order": 10}, {"name": "Marc Anthony", "character": "S.S. Agent Ray", "id": 47775, "credit_id": "52fe436e9251416c7501010f", "cast_id": 29, "profile_path": "/b6E5BCQkOXlxT1E4nHRyOpehuYU.jpg", "order": 11}, {"name": "Penn Jillette", "character": "Hal", "id": 37221, "credit_id": "52fe436e9251416c75010113", "cast_id": 30, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 12}, {"name": "Peter Y. Kim", "character": "Blade", "id": 65143, "credit_id": "52fe436e9251416c75010117", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Darren Lee", "character": "Razor", "id": 65142, "credit_id": "52fe436e9251416c7501011b", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Liza Walker", "character": "Laura", "id": 65145, "credit_id": "52fe436e9251416c7501012b", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Bob Sessions", "character": "Duke Ellingson", "id": 65146, "credit_id": "52fe436e9251416c75010123", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Ethan Browne", "character": "Curtis", "id": 65144, "credit_id": "52fe436e9251416c7501011f", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Blake Willett", "character": "S.S. Agent, Seattle", "id": 65147, "credit_id": "52fe436e9251416c75010127", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Max Ligosh", "character": "Young Dade Murphy / 'Zero Cool'", "id": 65148, "credit_id": "52fe436e9251416c7501012f", "cast_id": 37, "profile_path": null, "order": 19}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe436e9251416c75010097", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.6, "runtime": 107}, "1738": {"poster_path": "/dPHxHzdL5P3LYnQgdyQjTfTQwoW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18211013, "overview": "A Las Vegas magician who can see into the future is pursued by FBI agents seeking to use his abilities to prevent a nuclear terrorist attack.", "video": false, "id": 1738, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Next", "tagline": "If you can see the future, you can save it.", "vote_count": 222, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0435705", "adult": false, "backdrop_path": "/kj2Qa6KsfkKSVl1QoHamTuQha6y.jpg", "production_companies": [{"name": "Virtual Studios", "id": 449}, {"name": "Revolution Studios", "id": 497}, {"name": "Saturn Films", "id": 831}, {"name": "Paramount Pictures", "id": 4}, {"name": "Broken Road Productions", "id": 8000}], "release_date": "2007-04-26", "popularity": 0.794425724653893, "original_title": "Next", "budget": 70000000, "cast": [{"name": "Nicolas Cage", "character": "Cris Johnson", "id": 2963, "credit_id": "52fe4313c3a36847f80385e9", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Callie Ferris", "id": 1231, "credit_id": "52fe4313c3a36847f80385ed", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Tory Kittles", "character": "Cavanaugh", "id": 62645, "credit_id": "52fe4313c3a36847f8038629", "cast_id": 15, "profile_path": "/jlR3xLuJug176VllNLgyZGvozhz.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Mr. Smith", "id": 3491, "credit_id": "52fe4313c3a36847f80385f1", "cast_id": 4, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Enzo Cilenti", "character": "Mr. Jones", "id": 91494, "credit_id": "52fe4313c3a36847f803862d", "cast_id": 16, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 3}, {"name": "Peter Falk", "character": "Irv", "id": 2314, "credit_id": "52fe4313c3a36847f80385f5", "cast_id": 6, "profile_path": "/mjgykviG6rY2WlF14aeDRsvVA6x.jpg", "order": 4}, {"name": "Jessica Biel", "character": "Liz", "id": 10860, "credit_id": "52fe4313c3a36847f8038631", "cast_id": 17, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 7}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe4313c3a36847f80385fb", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 6.0, "runtime": 96}, "11804": {"poster_path": "/jilH5XTvUdF8vCo4aCWscctGG7V.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56094360, "overview": "An architect's desire to speak with his wife from beyond the grave using EVP (Electronic Voice Phenomenon), becomes an obsession with supernatural repercussions.", "video": false, "id": 11804, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "White Noise", "tagline": "The line separating the living from the dead has been crossed.", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gvg1pvlr2A7cX4CzvVwar01qWVB.jpg", "poster_path": "/vvQYwRvYQ4Q5MIwr6OSReFC5RvI.jpg", "id": 102777, "name": "White Noise Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375210", "adult": false, "backdrop_path": "/4CRg1Pw8CNNPSKK8SK5QJvcNyf3.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Brightlight Pictures", "id": 1063}, {"name": "Endgame Entertainment", "id": 1205}, {"name": "Corus", "id": 11573}, {"name": "The Movie Network (TMN)", "id": 3388}, {"name": "Province of British Columbia Film Incentive BC", "id": 11567}, {"name": "Canadian Film or Video Production Tax Credit (CPTC)", "id": 8582}], "release_date": "2005-01-07", "popularity": 0.550967231347547, "original_title": "White Noise", "budget": 10000000, "cast": [{"name": "Michael Keaton", "character": "Jonathan Rivers", "id": 2232, "credit_id": "52fe44889251416c750382e3", "cast_id": 8, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Chandra West", "character": "Anna Rivers", "id": 54634, "credit_id": "52fe44889251416c750382e7", "cast_id": 9, "profile_path": "/a7C4SveYi0E9yxQR10StOaPJTbS.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Sarah Tate", "id": 13549, "credit_id": "52fe44889251416c750382eb", "cast_id": 10, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "Ian McNeice", "character": "Raymond Price", "id": 3547, "credit_id": "52fe44889251416c750382ef", "cast_id": 11, "profile_path": "/v217qBNPrwNBvcu9F3BVBPE0AwM.jpg", "order": 3}, {"name": "Keegan Connor Tracy", "character": "Mirabelle Keegan", "id": 42710, "credit_id": "52fe44889251416c750382f3", "cast_id": 12, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 4}, {"name": "Sarah Strange", "character": "Jane", "id": 83023, "credit_id": "5456799cc3a368607500088e", "cast_id": 19, "profile_path": "/hUoOu3LSStULUTDe8B0OFrFz6EY.jpg", "order": 5}, {"name": "Nicholas Elia", "character": "Mike Rivers", "id": 65202, "credit_id": "54567a310e0a2648d2007cf6", "cast_id": 20, "profile_path": "/rA8FxBDAN9w1aeHdf88LATCtTK1.jpg", "order": 6}, {"name": "Mike Dopud", "character": "Detective Smits", "id": 64674, "credit_id": "54567a590e0a2648d60077f4", "cast_id": 21, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 7}, {"name": "Marsha Regis", "character": "Police Woman", "id": 168455, "credit_id": "54567a7e0e0a2648d60077f7", "cast_id": 22, "profile_path": null, "order": 8}], "directors": [{"name": "Geoffrey Sax", "department": "Directing", "job": "Director", "credit_id": "52fe44889251416c750382bb", "profile_path": "/jGOfYpxhMotpDiWfFDox02MH7hc.jpg", "id": 61357}], "vote_average": 6.1, "runtime": 101}, "10431": {"poster_path": "/envBC1uSYRWVj2p3Im8XbPKZ4B5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40452643, "overview": "FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?", "video": false, "id": 10431, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "War", "tagline": "Vengeance is the ultimate weapon.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0499556", "adult": false, "backdrop_path": "/p7xkGTUYTzU5IateDstefi0MBVG.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Fierce Entertainment", "id": 12138}, {"name": "Current Entertainment", "id": 972}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}, {"name": "Rogue Films", "id": 23956}], "release_date": "2007-08-24", "popularity": 1.259072803419, "original_title": "War", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Rogue", "id": 1336, "credit_id": "52fe436f9251416c75010357", "cast_id": 19, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Jason Statham", "character": "Special Agent Jack Crawford", "id": 976, "credit_id": "52fe436f9251416c7501035b", "cast_id": 20, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "John Lone", "character": "Li Chang", "id": 11389, "credit_id": "52fe436f9251416c7501035f", "cast_id": 21, "profile_path": "/qlzum4vK8Snzp65jiUVpZGYPzFE.jpg", "order": 2}, {"name": "Devon Aoki", "character": "Kira Yanagawa", "id": 6278, "credit_id": "52fe436f9251416c75010363", "cast_id": 22, "profile_path": "/mytZpvb5lykocoOCDelFy8Eqezm.jpg", "order": 3}, {"name": "Luis Guzm\u00e1n", "character": "Benny", "id": 40481, "credit_id": "52fe436f9251416c75010367", "cast_id": 23, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 4}, {"name": "Saul Rubinek", "character": "Dr. Sherman", "id": 3712, "credit_id": "52fe436f9251416c75010371", "cast_id": 25, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 5}, {"name": "Ryo Ishibashi", "character": "Shiro Yanagawa", "id": 4994, "credit_id": "52fe436f9251416c75010375", "cast_id": 26, "profile_path": "/aPyICNQIlt0kUlIbXSQ21bK2mo2.jpg", "order": 6}, {"name": "Sung Kang", "character": "Special Agent Goi", "id": 61697, "credit_id": "52fe436f9251416c75010379", "cast_id": 27, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 7}, {"name": "Andrea Roth", "character": "Jenny Crawford", "id": 44151, "credit_id": "52fe436f9251416c7501037d", "cast_id": 28, "profile_path": "/7iTt4N1bT7UmNdFyADLKMi1TwDk.jpg", "order": 8}, {"name": "Kenneth Choi", "character": "Takada", "id": 41561, "credit_id": "52fe436f9251416c75010381", "cast_id": 29, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 9}, {"name": "Mathew St. Patrick", "character": "Special Agent Wick", "id": 65195, "credit_id": "52fe436f9251416c75010385", "cast_id": 30, "profile_path": "/oWMNfUCgYoHirLZ2aSQl9UpEsxN.jpg", "order": 10}, {"name": "Nadine Velazquez", "character": "Maria", "id": 65196, "credit_id": "52fe436f9251416c75010389", "cast_id": 31, "profile_path": "/7bd8Qtmz25PtMuVN8uSzTp8wemx.jpg", "order": 11}, {"name": "Terry Chen", "character": "Special Agent Tom Lone", "id": 11677, "credit_id": "52fe436f9251416c7501038d", "cast_id": 32, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 12}, {"name": "Mark Cheng", "character": "Wu Ti", "id": 65197, "credit_id": "52fe436f9251416c75010391", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Steph Song", "character": "Diane Lone", "id": 65200, "credit_id": "52fe436f9251416c75010395", "cast_id": 34, "profile_path": "/hK72NoQGP3lb518s4kfeqMLZyl6.jpg", "order": 14}, {"name": "Kennedy Montano", "character": "Ana Chang", "id": 65199, "credit_id": "52fe436f9251416c7501039d", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Kane Kosugi", "character": "Temple Garden Warrior", "id": 65198, "credit_id": "52fe436f9251416c75010399", "cast_id": 35, "profile_path": "/5px5s4CQI5RdO8sX0wbGJEBx6EW.jpg", "order": 16}, {"name": "Eric Keenleyside", "character": "Leevie", "id": 2250, "credit_id": "52fe436f9251416c750103a1", "cast_id": 37, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 17}, {"name": "Annika Foo", "character": "Amy Lone", "id": 65201, "credit_id": "52fe436f9251416c750103a5", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Nicholas Elia", "character": "Daniel Crawford", "id": 65202, "credit_id": "52fe436f9251416c750103a9", "cast_id": 39, "profile_path": "/rA8FxBDAN9w1aeHdf88LATCtTK1.jpg", "order": 19}], "directors": [{"name": "Philip G. Atwell", "department": "Directing", "job": "Director", "credit_id": "52fe436f9251416c7501032f", "profile_path": null, "id": 65190}], "vote_average": 6.1, "runtime": 103}, "49526": {"poster_path": "/yo4lOPF5SVNbUZVeBuAb6bvfkV2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.", "video": false, "id": 49526, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Premium Rush", "tagline": "Ride Like Hell", "vote_count": 329, "homepage": "http://www.premiumrush.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1547234", "adult": false, "backdrop_path": "/Yavh2wmlZKFcqT4VIr2i4OZ4lZ.jpg", "production_companies": [{"name": "Pariah Entertainment Group", "id": 1271}], "release_date": "2012-08-24", "popularity": 1.68953793272041, "original_title": "Premium Rush", "budget": 0, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Wilee", "id": 24045, "credit_id": "52fe479ac3a36847f813e911", "cast_id": 1, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Michael Shannon", "character": "Bobby Monday", "id": 335, "credit_id": "52fe479ac3a36847f813e919", "cast_id": 3, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 1}, {"name": "Dania Ramirez", "character": "Vanessa", "id": 37046, "credit_id": "52fe479ac3a36847f813e91d", "cast_id": 4, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 2}, {"name": "Jamie Chung", "character": "Mima", "id": 78324, "credit_id": "52fe479ac3a36847f813e915", "cast_id": 2, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 3}, {"name": "Wol\u00e9 Parks", "character": "Manny", "id": 1132104, "credit_id": "52fe479ac3a36847f813e943", "cast_id": 12, "profile_path": "/gy1SONtvcsuI2GVwxSf2IUF5AEh.jpg", "order": 4}, {"name": "Aasif Mandvi", "character": "Raj", "id": 20644, "credit_id": "52fe479ac3a36847f813e94b", "cast_id": 14, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 5}, {"name": "Christopher Place", "character": "Bike Cop", "id": 204339, "credit_id": "52fe479ac3a36847f813e95b", "cast_id": 18, "profile_path": "/nHSXl6Y8ZNyv7noxTrh1uXHp0tE.jpg", "order": 6}, {"name": "Tet Wada", "character": "Office Worker", "id": 1417527, "credit_id": "54c28325c3a3687c4000e26d", "cast_id": 19, "profile_path": "/gqbYiD2Lsw0srPRgueu2wgemOGT.jpg", "order": 7}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813e923", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 6.2, "runtime": 91}, "10439": {"poster_path": "/okCXNIX9QXNXbWM9NBnKlMpYVBd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39514713, "overview": "After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it us up to three kids and their newfound feline friend to put an end to the witches' reign of terror once and for all.", "video": false, "id": 10439, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Hocus Pocus", "tagline": "It's just a bunch of Hocus Pocus.", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107120", "adult": false, "backdrop_path": "/tFNHw6u2UQ3jW1xuciD0mQmcLZn.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1993-07-16", "popularity": 1.1453092798465, "original_title": "Hocus Pocus", "budget": 28000000, "cast": [{"name": "Bette Midler", "character": "Winifred 'Winnie' Sanderson", "id": 73931, "credit_id": "52fe43719251416c75010891", "cast_id": 1, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 0}, {"name": "Sarah Jessica Parker", "character": "Sarah Sanderson", "id": 520, "credit_id": "52fe43719251416c75010895", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 1}, {"name": "Kathy Najimy", "character": "Mary Sanderson", "id": 11074, "credit_id": "52fe43719251416c75010899", "cast_id": 3, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 2}, {"name": "Omri Katz", "character": "Max Dennison", "id": 65309, "credit_id": "52fe43719251416c7501089d", "cast_id": 4, "profile_path": "/3Bci7H4Lmz4pCSeilKj8kZsSN3O.jpg", "order": 3}, {"name": "Thora Birch", "character": "Dani", "id": 2155, "credit_id": "52fe43719251416c750108a1", "cast_id": 5, "profile_path": "/jxtp9prkQgFmj0ZRvi1kcnnqaWb.jpg", "order": 4}, {"name": "Vinessa Shaw", "character": "Allison", "id": 5025, "credit_id": "52fe43719251416c750108e1", "cast_id": 16, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 5}, {"name": "Jodie Rivera", "character": "Emily Binx (as Amanda Shepherd)", "id": 1106749, "credit_id": "52fe43719251416c750108e5", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Jason Marsden", "character": "Thackery Binx (voice)", "id": 61983, "credit_id": "5452fae2c3a368147300020d", "cast_id": 46, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 7}, {"name": "Larry Bagby", "character": "Ernie / 'Ice'", "id": 426, "credit_id": "52fe43719251416c750108e9", "cast_id": 18, "profile_path": "/zBXOdQkskwkYCK34RnVKTVaI8DR.jpg", "order": 8}, {"name": "Tobias Jelinek", "character": "Jay", "id": 951643, "credit_id": "52fe43719251416c750108ed", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Stephanie Faracy", "character": "Jenny Dennison", "id": 14105, "credit_id": "52fe43719251416c750108f1", "cast_id": 20, "profile_path": "/tA4zlFK1ke8U15TxPMZeKdblB8P.jpg", "order": 10}, {"name": "Charles Rocket", "character": "Dave Dennison", "id": 7867, "credit_id": "52fe43719251416c750108f5", "cast_id": 21, "profile_path": "/9UJTYqaPaYNPuVTjGd0Cr4XVNqe.jpg", "order": 11}, {"name": "Doug Jones", "character": "Billy Butcherson", "id": 17005, "credit_id": "52fe43719251416c750108f9", "cast_id": 22, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 12}, {"name": "Karyn Malchus", "character": "Headless Billy Butcherson", "id": 1210516, "credit_id": "52fe43719251416c75010949", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Sean Murray", "character": "Thackery", "id": 1230381, "credit_id": "52fe43719251416c75010955", "cast_id": 45, "profile_path": "/nRkJoWGHTDp45vbJ61yJdOwGH7u.jpg", "order": 14}, {"name": "Steve Voboril", "character": "Elijah", "id": 1210517, "credit_id": "52fe43719251416c7501094d", "cast_id": 42, "profile_path": null, "order": 15}, {"name": "Norbert Weisser", "character": "Thackery's Father", "id": 6701, "credit_id": "52fe43719251416c750108fd", "cast_id": 23, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 16}, {"name": "Kathleen Freeman", "character": "Miss Olin", "id": 7210, "credit_id": "52fe43719251416c7501090d", "cast_id": 26, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 17}, {"name": "D.A. Pauley", "character": "Fireman #1", "id": 4211, "credit_id": "52fe43719251416c75010911", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Ezra Sutton", "character": "Fireman #2", "id": 1210503, "credit_id": "52fe43719251416c75010915", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Don Yesso", "character": "Bus Driver", "id": 172734, "credit_id": "52fe43719251416c75010919", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Michael McGrady", "character": "Cop", "id": 157015, "credit_id": "52fe43719251416c75010951", "cast_id": 44, "profile_path": "/1BVROvpyydpWNTBvTvxK5akRVj5.jpg", "order": 21}, {"name": "Leigh Hamilton", "character": "Cop's Girlfriend", "id": 167379, "credit_id": "52fe43719251416c7501091d", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Devon Reeves", "character": "Little Girl 'Neat Broom'", "id": 156960, "credit_id": "52fe43719251416c75010921", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Joseph Malone", "character": "Singer", "id": 170211, "credit_id": "52fe43719251416c75010925", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Jordan Redmond", "character": "Little Angel", "id": 1210513, "credit_id": "52fe43719251416c75010929", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Frank Del Boccio", "character": "Lobster Man", "id": 1210514, "credit_id": "52fe43719251416c7501092d", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Jeff Neubauer", "character": "Boy in Class", "id": 1210515, "credit_id": "52fe43719251416c75010931", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Teda Bracci", "character": "Calamity Jane", "id": 89569, "credit_id": "52fe43719251416c75010935", "cast_id": 36, "profile_path": null, "order": 28}, {"name": "Peggy Holmes", "character": "Dancer", "id": 80672, "credit_id": "52fe43719251416c75010939", "cast_id": 37, "profile_path": null, "order": 29}, {"name": "Garry Marshall", "character": "Devil (Husband) (uncredited)", "id": 1201, "credit_id": "52fe43719251416c75010941", "cast_id": 39, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 31}, {"name": "Penny Marshall", "character": "The Master's Wife (uncredited)", "id": 14911, "credit_id": "52fe43719251416c75010945", "cast_id": 40, "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "order": 32}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe43719251416c750108a7", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 6.0, "runtime": 96}, "2251": {"poster_path": "/ztenZXLECkDXTXN6KEugPVvMTIl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119137784, "overview": "Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.", "video": false, "id": 2251, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Unfaithful", "tagline": "Where do you go when you've gone too far?", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0250797", "adult": false, "backdrop_path": "/mdP4XVSJ9lfCK8PJYYrttVmZ9Xz.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Intertainment", "id": 1029}, {"name": "20th Century Fox", "id": 25}], "release_date": "2002-05-10", "popularity": 0.629790579983337, "original_title": "Unfaithful", "budget": 50000000, "cast": [{"name": "Diane Lane", "character": "Connie Sumner", "id": 2882, "credit_id": "52fe4346c3a36847f8047927", "cast_id": 12, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 0}, {"name": "Richard Gere", "character": "Ed Sumner", "id": 1205, "credit_id": "52fe4346c3a36847f804792b", "cast_id": 13, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Olivier Martinez", "character": "Paul Martel", "id": 15533, "credit_id": "52fe4346c3a36847f804792f", "cast_id": 14, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 2}, {"name": "Erik Per Sullivan", "character": "Charlie Sumner", "id": 17190, "credit_id": "52fe4346c3a36847f8047933", "cast_id": 15, "profile_path": "/7CQPZk51iKpYUhzybPA10yUte2.jpg", "order": 3}, {"name": "Chad Lowe", "character": "Bill Stone", "id": 21549, "credit_id": "52fe4346c3a36847f8047937", "cast_id": 16, "profile_path": "/pskKim9BpycKRRIhxSEDQuwEwlA.jpg", "order": 4}, {"name": "Myra Lucretia Taylor", "character": "Gloria", "id": 20318, "credit_id": "52fe4346c3a36847f804793b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Michelle Monaghan", "character": "Lindsay", "id": 11705, "credit_id": "52fe4346c3a36847f804793f", "cast_id": 18, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 6}, {"name": "Kate Burton", "character": "Tracy", "id": 20879, "credit_id": "52fe4346c3a36847f8047943", "cast_id": 19, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 7}, {"name": "Margaret Colin", "character": "Sally", "id": 8985, "credit_id": "52fe4346c3a36847f8047947", "cast_id": 20, "profile_path": "/A9nBbgguaRqjssJyqTfoFIQgADV.jpg", "order": 8}], "directors": [{"name": "Adrian Lyne", "department": "Directing", "job": "Director", "credit_id": "52fe4345c3a36847f80478e7", "profile_path": null, "id": 7270}], "vote_average": 6.4, "runtime": 124}, "2252": {"poster_path": "/l6t3moPhlJ0hb2zev3GGJwxtgzc.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55112356, "overview": "A Russian teenager living in London who dies during childbirth leaves clues to a midwife in her journal that could tie her child to a rape involving a violent Russian mob family.", "video": false, "id": 2252, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Eastern Promises", "tagline": "Every sin leaves a mark.", "vote_count": 180, "homepage": "http://www.focusfeatures.com/easternpromises/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}], "imdb_id": "tt0765443", "adult": false, "backdrop_path": "/4momnziEMiFuOOFBrUHtO0VyjjX.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "BBC Films", "id": 288}, {"name": "Astral Media", "id": 2743}, {"name": "Corus Entertainment", "id": 11550}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Kudos Film and Television", "id": 20244}, {"name": "Serendipity Point Films", "id": 805}, {"name": "Scion Films", "id": 7419}, {"name": "Shine Pictures", "id": 16880}], "release_date": "2007-09-14", "popularity": 0.594274420674473, "original_title": "Eastern Promises", "budget": 51500000, "cast": [{"name": "Naomi Watts", "character": "Anna Khitrova", "id": 3489, "credit_id": "52fe4346c3a36847f80479a7", "cast_id": 8, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Viggo Mortensen", "character": "Nikolai Luzhin", "id": 110, "credit_id": "52fe4346c3a36847f80479a3", "cast_id": 7, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 1}, {"name": "Vincent Cassel", "character": "Kirill", "id": 1925, "credit_id": "52fe4346c3a36847f80479ab", "cast_id": 9, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 2}, {"name": "Armin Mueller-Stahl", "character": "Semyon", "id": 12647, "credit_id": "52fe4346c3a36847f804799f", "cast_id": 6, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 3}, {"name": "Sin\u00e9ad Cusack", "character": "Helen", "id": 11281, "credit_id": "52fe4346c3a36847f80479af", "cast_id": 10, "profile_path": "/r9eWOKN1WtE7RMDAwIhOpMRh3wL.jpg", "order": 4}, {"name": "Donald Sumpter", "character": "Yuri", "id": 20425, "credit_id": "52fe4346c3a36847f80479b3", "cast_id": 11, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 5}, {"name": "Jerzy Skolimowski", "character": "Stepan", "id": 43553, "credit_id": "52fe4346c3a36847f80479b7", "cast_id": 12, "profile_path": "/uQGDiNRAcTrOH9CNEWzTgJFkn7L.jpg", "order": 6}, {"name": "Josef Altin", "character": "Ekren", "id": 43554, "credit_id": "52fe4346c3a36847f80479bb", "cast_id": 13, "profile_path": "/lnr6IQUAyXP0y1oj7sEZgmNpzpL.jpg", "order": 7}, {"name": "Mina E. Mina", "character": "Azim", "id": 43555, "credit_id": "52fe4346c3a36847f80479bf", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Aleksander Mikic", "character": "Soyka", "id": 43556, "credit_id": "52fe4346c3a36847f80479c3", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Sarah-Jeanne Labrosse", "character": "Tatiana", "id": 79610, "credit_id": "52fe4346c3a36847f80479fd", "cast_id": 26, "profile_path": "/i3Df3vA4ZRJyn5aDpjsRcGVxQPm.jpg", "order": 10}, {"name": "Tatiana Maslany", "character": "Tatiana (voice)", "id": 61134, "credit_id": "52fe4346c3a36847f8047a01", "cast_id": 27, "profile_path": "/ab7IuPThWGtcAxxwn9po9Npk5xf.jpg", "order": 11}, {"name": "Tereza Srbov\u00e1", "character": "Kirilenko", "id": 1428513, "credit_id": "54e492cfc3a368454d00b34c", "cast_id": 63, "profile_path": null, "order": 12}, {"name": "Tamer Hassan", "character": "Chechen", "id": 39660, "credit_id": "54e492f4c3a3684897003220", "cast_id": 64, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 13}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4346c3a36847f8047983", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.9, "runtime": 100}, "2253": {"poster_path": "/ewxjB0ijJsGiXpyVgNP6BeCdKRK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 200276000, "overview": "Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the F\u00fchrer.", "video": false, "id": 2253, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Valkyrie", "tagline": "Many saw evil. They dared to stop it.", "vote_count": 354, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0985699", "adult": false, "backdrop_path": "/ptNcTh2bewqzcV2qVpjDgsh6pTs.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Achte Babelsberg Film", "id": 6100}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2008-12-25", "popularity": 1.46692492157734, "original_title": "Valkyrie", "budget": 75000000, "cast": [{"name": "Tom Cruise", "character": "Claus Schenk Graf von Stauffenberg", "id": 500, "credit_id": "52fe4346c3a36847f8047a79", "cast_id": 8, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Carice van Houten", "character": "Nina Schenk Gr\u00e4fin von Stauffenberg", "id": 23229, "credit_id": "52fe4346c3a36847f8047a7d", "cast_id": 9, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 1}, {"name": "Kenneth Branagh", "character": "Henning von Tresckow", "id": 11181, "credit_id": "52fe4346c3a36847f8047a81", "cast_id": 10, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 2}, {"name": "Eddie Izzard", "character": "Erich Fellgiebel", "id": 1926, "credit_id": "52fe4346c3a36847f8047a85", "cast_id": 11, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Friedrich Olbricht", "id": 2440, "credit_id": "52fe4346c3a36847f8047a89", "cast_id": 12, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "Friedrich Fromm", "id": 207, "credit_id": "52fe4346c3a36847f8047a8d", "cast_id": 13, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "David Bamber", "character": "Adolf Hitler", "id": 26657, "credit_id": "52fe4346c3a36847f8047a9d", "cast_id": 16, "profile_path": "/chjj2qhiN49sOy2PYu32DmnX6k0.jpg", "order": 6}, {"name": "Thomas Kretschmann", "character": "Otto Ernst Remer", "id": 3491, "credit_id": "52fe4346c3a36847f8047aa1", "cast_id": 17, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 7}, {"name": "David Schofield", "character": "Erwin von Witzleben", "id": 939, "credit_id": "52fe4346c3a36847f8047aa5", "cast_id": 18, "profile_path": "/6FdYsGTI85M5s5QDbFCogmQWsOR.jpg", "order": 8}, {"name": "Kevin McNally", "character": "Carl-Friedrich Goerdeler", "id": 2449, "credit_id": "52fe4346c3a36847f8047aa9", "cast_id": 19, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 9}, {"name": "Christian Berkel", "character": "Albrecht Ritter Mertz von Quirnheim", "id": 7803, "credit_id": "52fe4346c3a36847f8047aad", "cast_id": 20, "profile_path": "/lMVb8ENKAEUYUUnGnU2fayhxoJt.jpg", "order": 10}, {"name": "Gerhard Haase-Hindenberg", "character": "Hermann G\u00f6ring", "id": 39846, "credit_id": "52fe4346c3a36847f8047ab1", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Matthias Freihof", "character": "Heinrich Himmler", "id": 36746, "credit_id": "52fe4346c3a36847f8047ab5", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Halina Reijn", "character": "Margarethe Van Oven", "id": 39847, "credit_id": "52fe4346c3a36847f8047ab9", "cast_id": 23, "profile_path": "/wkXlorWKdVziK9h3g0Lizc8aO2J.jpg", "order": 13}, {"name": "Manfred-Anton Algrang", "character": "Albert Speer", "id": 39848, "credit_id": "52fe4346c3a36847f8047abd", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Werner Daehn", "character": "Ernst-John Von Freyend", "id": 39849, "credit_id": "52fe4346c3a36847f8047ac1", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Matthias Schweigh\u00f6fer", "character": "SS-Soldat im Erschie\u00dfungskommando", "id": 16808, "credit_id": "52fe4346c3a36847f8047ac5", "cast_id": 26, "profile_path": "/qp2AD7quBf4busgntuk0kd1Bsiq.jpg", "order": 16}, {"name": "Andy Gatjen", "character": "SS-Soldat", "id": 39850, "credit_id": "52fe4346c3a36847f8047ac9", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Christopher Karl Hemeyer", "character": "SS-Major", "id": 39851, "credit_id": "52fe4346c3a36847f8047acd", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Philipp von Schulthess", "character": "SS-Adjutant von Henning von Tresckow", "id": 39852, "credit_id": "52fe4346c3a36847f8047ad1", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Jamie Parker", "character": "Werner von Haeften", "id": 40633, "credit_id": "52fe4346c3a36847f8047ad5", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Terence Stamp", "character": "Ludwig Beck", "id": 28641, "credit_id": "52fe4346c3a36847f8047ad9", "cast_id": 31, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 21}, {"name": "Karl Alexander Seidel", "character": "Berthold Schenk Graf von Stauffenberg", "id": 41276, "credit_id": "52fe4346c3a36847f8047ae1", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Justus Kammerer", "character": "Heimeran Schenk Graf von Stauffenberg", "id": 41277, "credit_id": "52fe4346c3a36847f8047ae5", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Frank Christian Marx", "character": "Thomas Arnold", "id": 28586, "credit_id": "52fe4346c3a36847f8047ae9", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Florian Panzner", "character": "Leutnant Hans Wilhelm Hagen", "id": 40634, "credit_id": "5348e606c3a3684ba8000d79", "cast_id": 37, "profile_path": "/uFThrzolaV3zPRnHyEpmmB1djOx.jpg", "order": 26}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe4346c3a36847f8047a51", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 6.6, "runtime": 121}, "84174": {"poster_path": "/4lbsAlqCqXgocPdWuN6C95x2KC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11947954, "overview": "Regan is used to being first at everything. Imagine her horror and chagrin when she finds out the girl everyone called Pig Face in high school is going to tie the knot before she does! But Regan sucks it up and takes on bridesmaid duties along with her childhood pals: substance-abusing, promiscuous Gena and ditzy Katie. The single ladies are determined to put their bitterness aside and have an awesomely hedonistic bachelorette party. Armed with acerbic wit and seemingly endless supplies of coke and booze, the foul-mouthed femmes embark on one very long and emotional night filled with major wedding-dress panic, various bodily fluids, and cute ex-boyfriends.", "video": false, "id": 84174, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Bachelorette", "tagline": "Last fling, before the ring", "vote_count": 118, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1920849", "adult": false, "backdrop_path": "/hZ2TGfo6yAh3KUBLKj59CKH0NRd.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "BCDF Pictures", "id": 10290}], "release_date": "2012-09-06", "popularity": 0.45840500044259, "original_title": "Bachelorette", "budget": 3000000, "cast": [{"name": "Kirsten Dunst", "character": "Regan", "id": 205, "credit_id": "52fe48dd9251416c9109accf", "cast_id": 7, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Isla Fisher", "character": "Katie", "id": 52848, "credit_id": "52fe48dd9251416c9109acd3", "cast_id": 8, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 1}, {"name": "James Marsden", "character": "Trevor", "id": 11006, "credit_id": "52fe48dd9251416c9109acd7", "cast_id": 9, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 2}, {"name": "Lizzy Caplan", "character": "Gena", "id": 51988, "credit_id": "52fe48dd9251416c9109acdb", "cast_id": 10, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 3}, {"name": "Adam Scott", "character": "Clyde", "id": 36801, "credit_id": "52fe48dd9251416c9109acdf", "cast_id": 11, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Rebel Wilson", "character": "Becky", "id": 221581, "credit_id": "52fe48dd9251416c9109ace3", "cast_id": 12, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 5}, {"name": "Ella Rae Peck", "character": "Stefanie", "id": 83244, "credit_id": "52fe48dd9251416c9109ace7", "cast_id": 13, "profile_path": "/mKDSED8DS0mZQVj9LclrSlR4DFE.jpg", "order": 6}, {"name": "Hayes MacArthur", "character": "Dale", "id": 74930, "credit_id": "52fe48dd9251416c9109aceb", "cast_id": 14, "profile_path": "/semGIgbhjhtBR0PncRzRmdttSJz.jpg", "order": 7}, {"name": "Andrew Rannells", "character": "Manny", "id": 990369, "credit_id": "52fe48dd9251416c9109acef", "cast_id": 15, "profile_path": "/59jrwCCeVmKklDD0jmK3U7KwVi1.jpg", "order": 8}, {"name": "Ann Dowd", "character": "Victoria", "id": 43366, "credit_id": "52fe48dd9251416c9109acf3", "cast_id": 16, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 9}, {"name": "Horatio Sanz", "character": "Barely Attractive Guy", "id": 52117, "credit_id": "52fe48dd9251416c9109acf7", "cast_id": 17, "profile_path": "/rKaWVBB0PqyKuNwUfpOeRZ220oI.jpg", "order": 10}, {"name": "Kyle Bornheimer", "character": "Joe", "id": 1215836, "credit_id": "52fe48dd9251416c9109acfb", "cast_id": 18, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 11}, {"name": "Megan Neuringer", "character": "Singing Cousin 1", "id": 1242860, "credit_id": "5501aa3a925141275c002848", "cast_id": 19, "profile_path": "/a9Om0ltEdq261z5HgPOF3XBW6bo.jpg", "order": 12}], "directors": [{"name": "Leslye Headland", "department": "Directing", "job": "Director", "credit_id": "52fe48dd9251416c9109acc5", "profile_path": null, "id": 217587}], "vote_average": 5.1, "runtime": 91}, "84175": {"poster_path": "/uS6aDWRNHvr0ofjPkmvCkzy0x8d.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Hushpuppy, an intrepid six-year-old girl, lives with her father, Wink, in \u201cthe Bathtub,\u201d a southern Delta community at the edge of the world. Wink\u2019s tough love prepares her for the unraveling of the universe; for a time when he\u2019s no longer there to protect her. When Wink contracts a mysterious illness, nature flies out of whack\u2014temperatures rise, and the ice caps melt, unleashing an army of prehistoric creatures called aurochs. With the waters rising, the aurochs coming, and Wink\u2019s health fading, Hushpuppy goes in search of her lost mother.", "video": false, "id": 84175, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Beasts of the Southern Wild", "tagline": "I gotta take care of mine.", "vote_count": 132, "homepage": "http://www.welcometothebathtub.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2125435", "adult": false, "backdrop_path": "/vo420YVwVA9Lbm1gVItdtrkvGFT.jpg", "production_companies": [{"name": "Cinereach", "id": 12219}, {"name": "Court 13 Pictures", "id": 6714}, {"name": "Journeyman Pictures", "id": 2291}], "release_date": "2012-06-29", "popularity": 0.551977240034955, "original_title": "Beasts of the Southern Wild", "budget": 0, "cast": [{"name": "Quvenzhan\u00e9 Wallis", "character": "Hushpuppy", "id": 1055235, "credit_id": "52fe48dd9251416c9109ad55", "cast_id": 7, "profile_path": "/khaGuAENEdm1gnfszBJjyGuN0jl.jpg", "order": 0}, {"name": "Dwight Henry", "character": "Wink", "id": 1055236, "credit_id": "52fe48dd9251416c9109ad59", "cast_id": 8, "profile_path": "/fJZw6IV6j0qKuNRfhYmh1f3PhpT.jpg", "order": 1}, {"name": "Levy Easterly", "character": "Jean Battiste", "id": 1073500, "credit_id": "52fe48dd9251416c9109ad5d", "cast_id": 9, "profile_path": "/hlg5IK6sdVbyP7BCS7NS3HOzSPm.jpg", "order": 2}, {"name": "Gina Montana", "character": "Miss Bathsheeba", "id": 1073501, "credit_id": "52fe48dd9251416c9109ad61", "cast_id": 10, "profile_path": "/j5OEZDtDL9osjQGeOha9ZxDJNTv.jpg", "order": 3}, {"name": "Lowell Landes", "character": "Walrus", "id": 1118577, "credit_id": "52fe48dd9251416c9109ad71", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Pamela Harper", "character": "Little Jo", "id": 1118578, "credit_id": "52fe48dd9251416c9109ad75", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Amber Henry", "character": "LZA", "id": 1137369, "credit_id": "52fe48dd9251416c9109ad79", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Jonshel Alexander", "character": "Joy Strong", "id": 1137370, "credit_id": "52fe48dd9251416c9109ad7d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Nicholas Clark", "character": "Boy with Bell", "id": 1118579, "credit_id": "52fe48dd9251416c9109ad81", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Joseph Brown", "character": "Winston", "id": 1137371, "credit_id": "52fe48dd9251416c9109ad85", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Henry D. Coleman", "character": "Peter T", "id": 1137372, "credit_id": "52fe48dd9251416c9109ad89", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Kaliana Brower", "character": "T-Lou", "id": 1137373, "credit_id": "52fe48dd9251416c9109ad8d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Phillip Lawrence", "character": "Dr. Maloney", "id": 1137374, "credit_id": "52fe48dd9251416c9109ad91", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Hannah Holby", "character": "Open Arms Babysitter", "id": 1137375, "credit_id": "52fe48dd9251416c9109ad95", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Jimmy Lee Moore", "character": "Sgt. Major", "id": 1137376, "credit_id": "52fe48dd9251416c9109ad99", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Benh Zeitlin", "department": "Directing", "job": "Director", "credit_id": "52fe48dd9251416c9109ad3f", "profile_path": "/vyOv48kG3s03cwNhAWPv1Yp71D8.jpg", "id": 223516}], "vote_average": 6.7, "runtime": 93}, "75": {"poster_path": "/sM4VrptBRIFHmN7mLJZ2BaGKYNq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101371017, "overview": "'We come in peace' is not what those green men from Mars mean when they invade our planet, armed with irresistible weapons and a cruel sense of humor. This star studded cast must play victim to the alien\u2019s fun and games in this comedy homage to science fiction films of the '50s and '60s.", "video": false, "id": 75, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Mars Attacks!", "tagline": "Nice planet. We'll take it!", "vote_count": 266, "homepage": "http://marsattacks.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0116996", "adult": false, "backdrop_path": "/bAlizRLmB0yJubWCwtJyofBfY0f.jpg", "production_companies": [{"name": "Tim Burton Productions", "id": 8601}], "release_date": "1996-12-12", "popularity": 1.24848221493716, "original_title": "Mars Attacks!", "budget": 70000000, "cast": [{"name": "Jack Nicholson", "character": "President James Dale / Art Land", "id": 514, "credit_id": "52fe4214c3a36847f8002301", "cast_id": 6, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Glenn Close", "character": "First Lady Marsha Dale", "id": 515, "credit_id": "52fe4214c3a36847f8002305", "cast_id": 7, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 1}, {"name": "Annette Bening", "character": "Barbara Land", "id": 516, "credit_id": "52fe4214c3a36847f8002309", "cast_id": 8, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 2}, {"name": "Pierce Brosnan", "character": "Professor Donald Kessler", "id": 517, "credit_id": "52fe4214c3a36847f800230d", "cast_id": 9, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 3}, {"name": "Danny DeVito", "character": "Rude Gambler", "id": 518, "credit_id": "52fe4214c3a36847f8002311", "cast_id": 10, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 4}, {"name": "Martin Short", "character": "Press Secretary Jerry Ross", "id": 519, "credit_id": "52fe4214c3a36847f8002315", "cast_id": 11, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 5}, {"name": "Sarah Jessica Parker", "character": "Nathalie Lake", "id": 520, "credit_id": "52fe4214c3a36847f8002319", "cast_id": 12, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 6}, {"name": "Michael J. Fox", "character": "Jason Stone", "id": 521, "credit_id": "52fe4214c3a36847f800231d", "cast_id": 13, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 7}, {"name": "Rod Steiger", "character": "General Decker", "id": 522, "credit_id": "52fe4214c3a36847f8002321", "cast_id": 14, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 8}, {"name": "Tom Jones", "character": "Himself", "id": 523, "credit_id": "52fe4214c3a36847f8002325", "cast_id": 15, "profile_path": "/tGdzG0YIOmyjhfdTFLPrqDy1w1h.jpg", "order": 9}, {"name": "Natalie Portman", "character": "Taffy Dale", "id": 524, "credit_id": "52fe4214c3a36847f8002329", "cast_id": 16, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 10}, {"name": "Lukas Haas", "character": "Richie Norris", "id": 526, "credit_id": "52fe4214c3a36847f800232d", "cast_id": 17, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 11}, {"name": "Sylvia Sidney", "character": "Grandma Florence Norris", "id": 528, "credit_id": "52fe4214c3a36847f8002331", "cast_id": 18, "profile_path": "/A1btt1FKCXFSeLYsfC3i9JL08Op.jpg", "order": 12}, {"name": "Lisa Marie", "character": "Martian Girl", "id": 4452, "credit_id": "52fe4214c3a36847f8002377", "cast_id": 30, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 13}, {"name": "Jim Brown", "character": "Byron Williams", "id": 4774, "credit_id": "52fe4214c3a36847f800237b", "cast_id": 31, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 14}, {"name": "Pam Grier", "character": "Louise Williams", "id": 2230, "credit_id": "52fe4214c3a36847f800237f", "cast_id": 32, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4214c3a36847f80022eb", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 5.9, "runtime": 106}, "49529": {"poster_path": "/l9NSxNdaHnzsp391kZBgaWNIeaS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 284139100, "overview": "Civil War vet John Carter is transplanted to Mars, where he discovers a lush, wildly diverse planet whose main inhabitants are 12-foot tall green barbarians. Finding himself a prisoner of these creatures, he escapes, only to encounter Dejah Thoris, Princess of Helium, who is in desperate need of a savior.", "video": false, "id": 49529, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "John Carter", "tagline": "Lost in Our World. Found in Another.", "vote_count": 862, "homepage": "http://disney.go.com/johncarter/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0401729", "adult": false, "backdrop_path": "/qFrJlsJaKr0nIbyRQbb6bdTnkHZ.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2012-03-07", "popularity": 1.59533995654365, "original_title": "John Carter", "budget": 250000000, "cast": [{"name": "Taylor Kitsch", "character": "John Carter", "id": 60900, "credit_id": "52fe479ac3a36847f813ea75", "cast_id": 5, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 0}, {"name": "Mark Strong", "character": "Matai Shang", "id": 2983, "credit_id": "52fe479ac3a36847f813ea69", "cast_id": 2, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Tars Tarkas", "id": 5293, "credit_id": "52fe479ac3a36847f813ea6d", "cast_id": 3, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Ciar\u00e1n Hinds", "character": "Tardos Mors", "id": 8785, "credit_id": "52fe479ac3a36847f813ea71", "cast_id": 4, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 3}, {"name": "Samantha Morton", "character": "Sola", "id": 2206, "credit_id": "52fe479ac3a36847f813ea79", "cast_id": 7, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 4}, {"name": "Thomas Haden Church", "character": "Tal Hajus", "id": 19159, "credit_id": "52fe479ac3a36847f813ea7d", "cast_id": 8, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 5}, {"name": "Dominic West", "character": "Sab Than", "id": 17287, "credit_id": "52fe479ac3a36847f813ea81", "cast_id": 9, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 6}, {"name": "James Purefoy", "character": "Kantos Kan", "id": 17648, "credit_id": "52fe479ac3a36847f813ea85", "cast_id": 10, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 7}, {"name": "Bryan Cranston", "character": "Powell", "id": 17419, "credit_id": "52fe479ac3a36847f813ea89", "cast_id": 11, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 8}, {"name": "Polly Walker", "character": "Sarkoja", "id": 6416, "credit_id": "52fe479ac3a36847f813ea8d", "cast_id": 12, "profile_path": "/swfioO83iyf5aB2svD0tgIWlCSr.jpg", "order": 9}, {"name": "Daryl Sabara", "character": "Edgar Rice Burroughs", "id": 57675, "credit_id": "52fe479ac3a36847f813ea91", "cast_id": 13, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 10}, {"name": "Arkie Reece", "character": "Stayman #1 / Helm", "id": 89830, "credit_id": "52fe479ac3a36847f813ea95", "cast_id": 14, "profile_path": "/1g4cbjJtQOguoYIzEOp0gK8fQ1s.jpg", "order": 11}, {"name": "Davood Ghadami", "character": "Stayman #3", "id": 205278, "credit_id": "52fe479ac3a36847f813ea99", "cast_id": 15, "profile_path": "/p46W5hwCi2ucFsx0HiZVSthBQdI.jpg", "order": 12}, {"name": "Pippa Nixon", "character": "Lightmaster", "id": 218345, "credit_id": "52fe479ac3a36847f813ea9d", "cast_id": 16, "profile_path": "/iQEsVOcfRDbJfRqbemRSUEEeaB7.jpg", "order": 13}, {"name": "Lynn Collins", "character": "Dejah Thoris", "id": 21044, "credit_id": "52fe479ac3a36847f813eab3", "cast_id": 20, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 14}, {"name": "Christopher Goodman", "character": "Stockade Guard", "id": 62082, "credit_id": "54e5a58d925141529c000f89", "cast_id": 37, "profile_path": null, "order": 15}], "directors": [{"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813ea65", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}], "vote_average": 6.0, "runtime": 132}, "84184": {"poster_path": "/nYR7GrheXMfLg7OMgkhv2aHw2Fb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each other\u2019s sentences. They are forever linked in their friends\u2019 minds as the perfect couple \u2013 she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?", "video": false, "id": 84184, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Celeste & Jesse Forever", "tagline": "A Loved Story", "vote_count": 59, "homepage": "http://www.celesteandjesse.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1405365", "adult": false, "backdrop_path": "/GOEAttqxiLlFM2UNNaAjNvGkS1.jpg", "production_companies": [{"name": "Team Todd", "id": 598}], "release_date": "2012-08-03", "popularity": 0.568778444073825, "original_title": "Celeste & Jesse Forever", "budget": 0, "cast": [{"name": "Rashida Jones", "character": "Celeste", "id": 80591, "credit_id": "52fe48de9251416c9109b001", "cast_id": 1, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 0}, {"name": "Andy Samberg", "character": "Jesse", "id": 62861, "credit_id": "52fe48de9251416c9109b005", "cast_id": 2, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 1}, {"name": "Elijah Wood", "character": "Scott", "id": 109, "credit_id": "52fe48de9251416c9109b00f", "cast_id": 4, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 2}, {"name": "Emma Roberts", "character": "Riley", "id": 34847, "credit_id": "52fe48de9251416c9109b013", "cast_id": 5, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 3}, {"name": "Ari Graynor", "character": "Beth", "id": 71552, "credit_id": "52fe48df9251416c9109b017", "cast_id": 6, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 4}, {"name": "Eric Christian Olsen", "character": "Tucker", "id": 29020, "credit_id": "52fe48df9251416c9109b01b", "cast_id": 7, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 5}, {"name": "Janel Parrish", "character": "Savannah", "id": 93377, "credit_id": "52fe48df9251416c9109b01f", "cast_id": 8, "profile_path": "/eQBJWnvib4aEwf3Rx6E6Ev7fD0P.jpg", "order": 6}, {"name": "Chris Messina", "character": "Paul", "id": 61659, "credit_id": "52fe48df9251416c9109b035", "cast_id": 12, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 7}, {"name": "Sarah Haskins", "character": "Parent", "id": 1181324, "credit_id": "52fe48df9251416c9109b039", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Matthew Del Negro", "character": "Nick", "id": 85484, "credit_id": "52fe48df9251416c9109b03d", "cast_id": 14, "profile_path": "/cahAPp4zghvMRZPeJLFHo6Ri7UU.jpg", "order": 9}], "directors": [{"name": "Lee Toland Krieger", "department": "Directing", "job": "Director", "credit_id": "52fe48df9251416c9109b025", "profile_path": null, "id": 109745}], "vote_average": 6.3, "runtime": 91}, "2266": {"poster_path": "/5rsmOrGRqQmvTChQve87kIEJTNA.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 4857367, "overview": "Olivier Assayas, Gus Van Sant, Wes Craven and Alfonso Cuaron are among the 20 distinguished directors who contribute to this collection of 18 stories, each exploring a different aspect of Parisian life. The colourful characters in this drama include a pair of mimes, a husband trying to chose between his wife and his lover, and a married man who turns to a prostitute for advice.", "video": false, "id": 2266, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Paris, je t'aime", "tagline": "Stories of love from the heart of the city", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0401711", "adult": false, "backdrop_path": "/Alq0EOj1Ik7UJ6lueLxK5V2Oywy.jpg", "production_companies": [{"name": "Filmazure", "id": 1031}, {"name": "Pirol Stiftung", "id": 1032}, {"name": "Victoires International", "id": 1033}], "release_date": "2006-06-20", "popularity": 0.631680115921873, "original_title": "Paris, je t'aime", "budget": 13000000, "cast": [{"name": "Steve Buscemi", "character": "Touriste (Tuileries)", "id": 884, "credit_id": "52fe4347c3a36847f80482cd", "cast_id": 24, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 0}, {"name": "Axel Kiener", "character": "Axel (Tuileries)", "id": 22165, "credit_id": "52fe4347c3a36847f80482d1", "cast_id": 25, "profile_path": null, "order": 1}, {"name": "Julie Bataille", "character": "Julie (Tuileries)", "id": 21550, "credit_id": "52fe4347c3a36847f80482d5", "cast_id": 26, "profile_path": "/tET8k60OeRpTuoECHeJyZVe5hXj.jpg", "order": 2}, {"name": "Bruno Podalyd\u00e8s", "character": "L'automobiliste (Montmartre)", "id": 21769, "credit_id": "52fe4347c3a36847f80482d9", "cast_id": 27, "profile_path": "/1ENmeheKsHVUiOptPbU3CgoucLx.jpg", "order": 3}, {"name": "Florence Muller", "character": "Jeune Femme (Montmartre)", "id": 22163, "credit_id": "52fe4347c3a36847f80482dd", "cast_id": 28, "profile_path": null, "order": 4}, {"name": "Fanny Ardant", "character": "Fanny Forestier (Pigalle)", "id": 20234, "credit_id": "52fe4347c3a36847f80482e1", "cast_id": 29, "profile_path": "/ys1DzohNJqKIyefq4NzdYk5Z1vZ.jpg", "order": 5}, {"name": "Le\u00efla Bekhti", "character": "Zarka (Quais de Seine)", "id": 23383, "credit_id": "52fe4347c3a36847f80482e5", "cast_id": 30, "profile_path": "/whlTg4xpvMeeXszBGxDyQYsD0fk.jpg", "order": 6}, {"name": "Maggie Gyllenhaal", "character": "Liz (Quartier des Enfants Rouges)", "id": 1579, "credit_id": "52fe4347c3a36847f80482e9", "cast_id": 31, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 7}, {"name": "Juliette Binoche", "character": "Suzanne (Place des Victoires)", "id": 1137, "credit_id": "52fe4347c3a36847f80482ed", "cast_id": 32, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 8}, {"name": "Seydou Boro", "character": "Hassan (Place des F\u00eates)", "id": 23384, "credit_id": "52fe4347c3a36847f80482f1", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Javier C\u00e1mara", "character": "Le docteur (Bastille)", "id": 1610, "credit_id": "52fe4347c3a36847f80482f5", "cast_id": 34, "profile_path": "/pbS8PFYTSh2LqODPUuygKLmytVu.jpg", "order": 10}, {"name": "Sergio Castellitto", "character": "Le mari (Bastille)", "id": 2166, "credit_id": "52fe4347c3a36847f80482f9", "cast_id": 35, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 11}, {"name": "Martin Combes", "character": "Le gar\u00e7on (Place des Victoires)", "id": 23385, "credit_id": "52fe4347c3a36847f80482fd", "cast_id": 36, "profile_path": "/6tiMd0iKeSOKnZ1AsJ1NUMEg0OO.jpg", "order": 12}, {"name": "Willem Dafoe", "character": "Le cow-boy (Place des Victoires)", "id": 5293, "credit_id": "52fe4347c3a36847f8048301", "cast_id": 37, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 13}, {"name": "Cyril Descours", "character": "Fran\u00e7ois (Quais de Seine)", "id": 23386, "credit_id": "52fe4347c3a36847f8048305", "cast_id": 38, "profile_path": "/cQcpjz04ldYXp96zdKUazva7Ot1.jpg", "order": 14}, {"name": "Lionel Dray", "character": "Ken (Quartier des Enfants Rouges)", "id": 23387, "credit_id": "52fe4347c3a36847f8048309", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Marianne Faithfull", "character": "Marianne (Le Marais)", "id": 19995, "credit_id": "52fe4347c3a36847f804830d", "cast_id": 40, "profile_path": "/sVWt2U1im7YZcCVlW6YF9RT5yZR.jpg", "order": 16}, {"name": "Ben Gazzara", "character": "Ben (Quartier Latin)", "id": 856, "credit_id": "52fe4347c3a36847f8048311", "cast_id": 41, "profile_path": "/eHo1CphAAbwNMQESm3JrOKR5EW1.jpg", "order": 17}, {"name": "Hippolyte Girardot", "character": "Le p\u00e8re (Place des Victoires)", "id": 23388, "credit_id": "52fe4347c3a36847f8048315", "cast_id": 42, "profile_path": "/5MrRtrWxuaILbiZCYyP3y0bopop.jpg", "order": 18}, {"name": "Bob Hoskins", "character": "Bob (Pigalle)", "id": 382, "credit_id": "52fe4347c3a36847f8048319", "cast_id": 43, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 19}, {"name": "Olga Kurylenko", "character": "La vampire (Quartier de la Madeleine)", "id": 18182, "credit_id": "52fe4347c3a36847f804831d", "cast_id": 44, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 20}, {"name": "Sara Martins", "character": "Sara (Parc Monceau)", "id": 23390, "credit_id": "52fe4347c3a36847f8048321", "cast_id": 47, "profile_path": "/gXX5NfXheVoBRLibWMR2gnMrf2U.jpg", "order": 22}, {"name": "Elias McConnell", "character": "Elie (Le Marais)", "id": 19198, "credit_id": "52fe4347c3a36847f8048325", "cast_id": 48, "profile_path": "/8IEAprAbOp03JnkojHAeyzLo9RB.jpg", "order": 23}, {"name": "Yolande Moreau", "character": "La mime (Tour Eiffel)", "id": 2415, "credit_id": "52fe4347c3a36847f8048329", "cast_id": 49, "profile_path": "/9FTIYqBRisPqgT4HV30EjRg4hkb.jpg", "order": 24}, {"name": "Catalina Sandino Moreno", "character": "Ana (Loin du 16e)", "id": 5887, "credit_id": "52fe4347c3a36847f804832d", "cast_id": 50, "profile_path": "/6TsJDZOmhBxfTKFp6ldC68OW65n.jpg", "order": 25}, {"name": "Emily Mortimer", "character": "Frances (P\u00e8re-Lachaise)", "id": 1246, "credit_id": "52fe4347c3a36847f8048331", "cast_id": 51, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 26}, {"name": "Nick Nolte", "character": "Vincent (Parc Monceau)", "id": 1733, "credit_id": "52fe4347c3a36847f8048335", "cast_id": 52, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 27}, {"name": "Natalie Portman", "character": "Francine (Faubourg Saint-Denis)", "id": 524, "credit_id": "52fe4347c3a36847f8048339", "cast_id": 53, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 28}, {"name": "Paul Putner", "character": "Le mime (Tour Eiffel)", "id": 23391, "credit_id": "52fe4347c3a36847f804833d", "cast_id": 54, "profile_path": "/7cSJnqE8YlQyGNww4DFE6XFxfzG.jpg", "order": 29}, {"name": "Joana Preiss", "character": "Joana (Quartier des Enfants Rouges)", "id": 23392, "credit_id": "52fe4347c3a36847f8048341", "cast_id": 55, "profile_path": "/pWJsblNkBBcTP4iG5RZxuEBgDYc.jpg", "order": 30}, {"name": "Gena Rowlands", "character": "Gena (Quartier Latin)", "id": 4800, "credit_id": "52fe4347c3a36847f8048345", "cast_id": 56, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 31}, {"name": "Miranda Richardson", "character": "La femme au trench rouge (Bastille)", "id": 8436, "credit_id": "52fe4347c3a36847f8048349", "cast_id": 57, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 32}, {"name": "Ludivine Sagnier", "character": "Claire (Parc Monceau)", "id": 4390, "credit_id": "52fe4347c3a36847f804834d", "cast_id": 58, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 33}, {"name": "Barbet Schroeder", "character": "Monsieur Henny (Porte de Choisy)", "id": 23393, "credit_id": "52fe4347c3a36847f8048351", "cast_id": 59, "profile_path": "/zgsgO9eVfSi9BOXbjvjyVsWAE5J.jpg", "order": 34}, {"name": "Rufus Sewell", "character": "William (P\u00e8re-Lachaise)", "id": 17328, "credit_id": "52fe4347c3a36847f8048355", "cast_id": 60, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 35}, {"name": "Gaspard Ulliel", "character": "Gaspard (Le Marais)", "id": 16790, "credit_id": "52fe4347c3a36847f8048359", "cast_id": 61, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 36}, {"name": "Leonor Watling", "character": "La ma\u00eetresse (Bastille)", "id": 101, "credit_id": "52fe4347c3a36847f804835d", "cast_id": 62, "profile_path": "/6M9s0VigBmmVOBbkRTQz1K0LbN4.jpg", "order": 37}, {"name": "Elijah Wood", "character": "Le gar\u00e7on (Quartier de la Madeleine)", "id": 109, "credit_id": "52fe4347c3a36847f8048361", "cast_id": 63, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 38}, {"name": "Li Xin", "character": "Madame Li (Porte de Choisy)", "id": 23394, "credit_id": "52fe4347c3a36847f8048365", "cast_id": 64, "profile_path": null, "order": 39}, {"name": "Margo Martindale", "character": "Carol (14\u00e8me arrondissement)", "id": 452, "credit_id": "52fe4348c3a36847f8048447", "cast_id": 102, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 40}, {"name": "A\u00efssa Ma\u00efga", "character": "Sophie (Place des F\u00eates)", "id": 132429, "credit_id": "52fe4348c3a36847f80484c9", "cast_id": 124, "profile_path": "/crmb5vZhgDR6cBdyHc0hzmBg2tn.jpg", "order": 41}], "directors": [{"name": "Olivier Assayas", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804844d", "profile_path": "/bB5TzDaPHLbHxPdsYzQ1blNRcxS.jpg", "id": 21678}, {"name": "Fr\u00e9d\u00e9ric Auburtin", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048453", "profile_path": null, "id": 21126}, {"name": "Gurinder Chadha", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048459", "profile_path": "/AbUt77nmapBzaXMq9EvNNjK0ZMm.jpg", "id": 6220}, {"name": "Sylvain Chomet", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804845f", "profile_path": null, "id": 21768}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "54a0eddbc3a36851ce002eb3", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Isabel Coixet", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048471", "profile_path": null, "id": 90}, {"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048477", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}, {"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804847d", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}, {"name": "G\u00e9rard Depardieu", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048483", "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "id": 16927}, {"name": "Christopher Doyle", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048489", "profile_path": "/u7xRErdN6ya9qzOG8PVa2QshZFC.jpg", "id": 1357}, {"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804848f", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}, {"name": "Vincenzo Natali", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f8048495", "profile_path": "/4rdmLwBRQKs1gpjEfrTxabOUerv.jpg", "id": 5877}, {"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804849b", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}, {"name": "Walter Salles", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484a7", "profile_path": "/sqIg1ziNhNbxmAbwKY9BJ6iMUzP.jpg", "id": 8574}, {"name": "Oliver Schmitz", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484ad", "profile_path": null, "id": 21683}, {"name": "Nobuhiro Suwa", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484b3", "profile_path": "/1ILr9W6lm7WZrc0Bu59nfJeEvgP.jpg", "id": 21681}, {"name": "Daniela Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484b9", "profile_path": null, "id": 21771}, {"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484bf", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}, {"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80484c5", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "54a0ed9cc3a368764f0087e4", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.9, "runtime": 120}, "84188": {"poster_path": "/1kW3cUREVpmlVUiOmZmNUOYTtSi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 319285, "overview": "Becky and Sandra aren\u2019t the best of friends. Sandra is a middle-aged manager at a fast-food restaurant; Becky is a teenaged counter girl who really needs the job. One stressful day (too many customers and too little bacon), a police officer calls, accusing Becky of stealing money from a customer\u2019s purse, which she vehemently denies. Sandra, overwhelmed by her managerial responsibilities, complies with the officer\u2019s orders to detain Becky. This choice begins a nightmare that tragically blurs the lines between expedience and prudence, legality and reason.", "video": false, "id": 84188, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Compliance", "tagline": "Power. Manipulation. Obedience.", "vote_count": 53, "homepage": "http://www.magpictures.com/compliance/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1971352", "adult": false, "backdrop_path": "/yCD1tisM8dWg1axxZDcXsmdY6hx.jpg", "production_companies": [{"name": "Bad Cop Bad Cop Film Productions", "id": 12649}, {"name": "Dogfish Pictures", "id": 12650}, {"name": "Muskat Filmed Properties", "id": 10989}], "release_date": "2012-08-24", "popularity": 0.444350257240801, "original_title": "Compliance", "budget": 0, "cast": [{"name": "Ann Dowd", "character": "Sandra", "id": 43366, "credit_id": "52fe48df9251416c9109b0cf", "cast_id": 3, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 0}, {"name": "Dreama Walker", "character": "Becky", "id": 74303, "credit_id": "52fe48df9251416c9109b0d3", "cast_id": 4, "profile_path": "/s0d0pYG4ZECFGt87bBu4iEORh0K.jpg", "order": 1}, {"name": "Pat Healy", "character": "Officer Daniels", "id": 60846, "credit_id": "52fe48df9251416c9109b0d7", "cast_id": 5, "profile_path": "/dkynacoRxTO1bgv360KVXih5ncw.jpg", "order": 2}, {"name": "Philip Ettinger", "character": "Kevin", "id": 211991, "credit_id": "52fe48df9251416c9109b0db", "cast_id": 6, "profile_path": "/uRKNDo4N49I7tc9mGruT6gKApj4.jpg", "order": 3}, {"name": "James McCaffrey", "character": "Detective Neals", "id": 155173, "credit_id": "52fe48df9251416c9109b0df", "cast_id": 7, "profile_path": "/hE228gPvpr5OTWvm17X3guPJ6bF.jpg", "order": 4}, {"name": "Ashlie Atkinson", "character": "Marti", "id": 77264, "credit_id": "52fe48df9251416c9109b0e3", "cast_id": 8, "profile_path": "/h0ykP84QXTDLxfzizdQaFXZzzY8.jpg", "order": 5}, {"name": "Bill Camp", "character": "Van", "id": 121718, "credit_id": "52fe48df9251416c9109b0e7", "cast_id": 9, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 6}, {"name": "Nikiya Mathis", "character": "Connie", "id": 1137379, "credit_id": "52fe48df9251416c9109b0f1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Ralph Rodriguez", "character": "Julio", "id": 1104350, "credit_id": "52fe48df9251416c9109b0f5", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Stephen Payne", "character": "Harold", "id": 616517, "credit_id": "52fe48df9251416c9109b0f9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Amelia Fowler", "character": "Brie", "id": 1137380, "credit_id": "52fe48df9251416c9109b0fd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "John Merolla", "character": "Customer", "id": 1137381, "credit_id": "52fe48df9251416c9109b101", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Desmin Borges", "character": "Officer Morris", "id": 972079, "credit_id": "52fe48df9251416c9109b105", "cast_id": 16, "profile_path": "/kCvZU59nmeHx5NWr0xTHROAqvVm.jpg", "order": 12}, {"name": "Matt Skibiak", "character": "Robert Gilmour", "id": 1137382, "credit_id": "52fe48df9251416c9109b109", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Craig Zobel", "department": "Directing", "job": "Director", "credit_id": "52fe48df9251416c9109b0c5", "profile_path": null, "id": 79434}], "vote_average": 6.3, "runtime": 90}, "49530": {"poster_path": "/lnYuAr3QOPzvuEFlzpsRUq41IEy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173930596, "overview": "In the not-too-distant future the aging gene has been switched off. To avoid overpopulation, time has become the currency and the way people pay for luxuries and necessities. The rich can live forever, while the rest try to negotiate for their immortality. A poor young man who comes into a fortune of time, though too late to help his mother from dying. He ends up on the run from a corrupt police force known as 'time keepers'.", "video": false, "id": 49530, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "In Time", "tagline": "Time Is Power", "vote_count": 1108, "homepage": "http://www.intimemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1637688", "adult": false, "backdrop_path": "/cnGPiAd7D50YFcpt6HK7CwTUCew.jpg", "production_companies": [{"name": "Strike Entertainment", "id": 655}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2011-10-27", "popularity": 2.19067355336019, "original_title": "In Time", "budget": 40000000, "cast": [{"name": "Justin Timberlake", "character": "Will Salas", "id": 12111, "credit_id": "52fe479ac3a36847f813eb8b", "cast_id": 11, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 0}, {"name": "Amanda Seyfried", "character": "Sylvia Weis", "id": 71070, "credit_id": "52fe479ac3a36847f813eb7f", "cast_id": 8, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 1}, {"name": "Cillian Murphy", "character": "Timekeeper Raymond Leon", "id": 2037, "credit_id": "52fe479ac3a36847f813eb87", "cast_id": 10, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 2}, {"name": "Olivia Wilde", "character": "Rachel Salas", "id": 59315, "credit_id": "52fe479ac3a36847f813eb77", "cast_id": 6, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 3}, {"name": "Alex Pettyfer", "character": "Fortis", "id": 61363, "credit_id": "52fe479ac3a36847f813eb7b", "cast_id": 7, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 4}, {"name": "Johnny Galecki", "character": "Borel", "id": 16478, "credit_id": "52fe479ac3a36847f813eb83", "cast_id": 9, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 5}, {"name": "Matt Bomer", "character": "Henry Hamilton", "id": 66743, "credit_id": "52fe479ac3a36847f813eb8f", "cast_id": 12, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 6}, {"name": "Vincent Kartheiser", "character": "Philippe Weis", "id": 52646, "credit_id": "52fe479ac3a36847f813eb93", "cast_id": 15, "profile_path": "/zgSvuYVE59Ry9Q2qIXM7XAe8R03.jpg", "order": 7}, {"name": "Yaya DaCosta", "character": "Greta", "id": 60033, "credit_id": "52fe479ac3a36847f813eb97", "cast_id": 16, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 8}, {"name": "Toby Hemingway", "character": "Timekeeper Kors", "id": 60901, "credit_id": "52fe479ac3a36847f813eb9b", "cast_id": 17, "profile_path": "/b5ZlB5Ct7xRg4ypRjAA7mjFA1Jq.jpg", "order": 9}, {"name": "Bella Heathcote", "character": "Michele Weis", "id": 234982, "credit_id": "52fe479ac3a36847f813eba7", "cast_id": 20, "profile_path": "/iqk9bZnrkLhIQbHPyrGcMK0Bzni.jpg", "order": 12}, {"name": "Shyloh Oostwald", "character": "Maya", "id": 1011100, "credit_id": "52fe479ac3a36847f813ebb5", "cast_id": 24, "profile_path": "/Am2bhaE5GxyEo6Lw7xqcGY7h84U.jpg", "order": 14}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe479ac3a36847f813eb73", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 6.6, "runtime": 109}, "2270": {"poster_path": "/A9gXvPOnMu961E36x5p3RT4FQ5E.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IS", "name": "Iceland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135560026, "overview": "In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm. His journey takes him into a world beyond his wildest dreams and reveals his true identity.", "video": false, "id": 2270, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Stardust", "tagline": "The fairytale that won't behave", "vote_count": 346, "homepage": "http://www.stardustmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0486655", "adult": false, "backdrop_path": "/q9FPpi6AkccX3nfQoA22P5S1HFp.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Marv Films", "id": 5374}, {"name": "Vaughn Productions", "id": 23420}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2007-08-09", "popularity": 1.04858984008042, "original_title": "Stardust", "budget": 70000000, "cast": [{"name": "Charlie Cox", "character": "Tristan", "id": 23458, "credit_id": "52fe4349c3a36847f80488a5", "cast_id": 23, "profile_path": "/zxkaGPuJ7MfO7s1uOhVqBdYqW9z.jpg", "order": 0}, {"name": "Claire Danes", "character": "Yvaine", "id": 6194, "credit_id": "52fe4349c3a36847f80488a9", "cast_id": 24, "profile_path": "/mIwLwf04pjpLjV01FUrpPtqiocn.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Cap. Shakespeare", "id": 380, "credit_id": "52fe4349c3a36847f80488ad", "cast_id": 25, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Lamia", "id": 1160, "credit_id": "52fe4349c3a36847f80488b5", "cast_id": 27, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Sienna Miller", "character": "Victoria", "id": 23459, "credit_id": "52fe4349c3a36847f80488b1", "cast_id": 26, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 4}, {"name": "Jason Flemyng", "character": "Primus", "id": 973, "credit_id": "52fe4349c3a36847f80488b9", "cast_id": 28, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Ian McKellen", "character": "Narrator", "id": 1327, "credit_id": "52fe4349c3a36847f80488bd", "cast_id": 29, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 6}, {"name": "Mark Strong", "character": "Septimus", "id": 2983, "credit_id": "52fe4349c3a36847f80488d3", "cast_id": 35, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 7}, {"name": "Peter O'Toole", "character": "King of Stormhold", "id": 11390, "credit_id": "52fe4349c3a36847f80488d7", "cast_id": 36, "profile_path": "/fkrDOnu2rFpjIdvNO86MIb9aQjd.jpg", "order": 8}, {"name": "Henry Cavill", "character": "Humphrey", "id": 73968, "credit_id": "52fe4349c3a36847f80488e7", "cast_id": 39, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 9}, {"name": "Ben Barnes", "character": "Young Dunstan", "id": 25130, "credit_id": "52fe4349c3a36847f80488eb", "cast_id": 40, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 10}, {"name": "Olivia Grant", "character": "Girl Bernard", "id": 209630, "credit_id": "52fe4349c3a36847f80488ef", "cast_id": 41, "profile_path": "/mc8psLLszJ8Pm59Pc8aR4go0W6M.jpg", "order": 11}, {"name": "Adam Buxton", "character": "Quintus", "id": 155532, "credit_id": "52fe4349c3a36847f80488f3", "cast_id": 42, "profile_path": "/zL31NlBBKL1NTjR48h610by5Rld.jpg", "order": 12}, {"name": "Sarah Alexander", "character": "Empusa", "id": 84035, "credit_id": "52fe4349c3a36847f80488f7", "cast_id": 43, "profile_path": "/veVkPVejJ8OqMqGOh4XcXchKO3a.jpg", "order": 13}, {"name": "Kate Magowan", "character": "Una / Slave Girl", "id": 71282, "credit_id": "546fc77f92514112e70035f3", "cast_id": 46, "profile_path": "/hTZYJt7UhRfSVk17zYGdbH0EDwP.jpg", "order": 14}, {"name": "David Kelly", "character": "Wall Guardian", "id": 1282, "credit_id": "546fc7ddc3a3682fa7002f57", "cast_id": 47, "profile_path": "/jxPBAzbia65yJAsNxoyGQri5Bah.jpg", "order": 15}, {"name": "Nathaniel Parker", "character": "Billy (Goat)", "id": 27631, "credit_id": "546fc87a92514112e9002ef1", "cast_id": 49, "profile_path": "/w5SnRNxxY00lIDPB1SUh47nx46n.jpg", "order": 17}, {"name": "Mark Williams", "character": "Billy (Goat)", "id": 20999, "credit_id": "546fc8c29251417066000e3c", "cast_id": 50, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 18}, {"name": "Dexter Fletcher", "character": "Skinny Pirate", "id": 974, "credit_id": "546fc8e6c3a3682ad50004bf", "cast_id": 51, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 19}, {"name": "Ricky Gervais", "character": "Ferdy the Fence", "id": 17835, "credit_id": "546fc90692514112e700363b", "cast_id": 52, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 20}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f804882f", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.8, "runtime": 127}, "10466": {"poster_path": "/vzUfCSAXDIQemW6Kdk2RU2JtfiV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54999651, "overview": "After being evicted from their Manhattan apartment, a couple buy what looks like the home of their dreams - only to find themselves saddled with a bank-account-draining nightmare. Struggling to keep their relationship together as their rambling mansion falls to pieces around them, the two watch in hilarious horror as everything - including the kitchen sink, disppears into the Money Pit.", "video": false, "id": 10466, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Money Pit", "tagline": "For everyone who's ever been deeply in Love or deeply in debt.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091541", "adult": false, "backdrop_path": "/vgmU9aR1vGsCxl8Hr8D8970HIwe.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Universal Pictures", "id": 33}], "release_date": "1986-03-15", "popularity": 1.08992261956105, "original_title": "The Money Pit", "budget": 10000000, "cast": [{"name": "Tom Hanks", "character": "Walter Fielding, Jr.", "id": 31, "credit_id": "52fe43759251416c75011265", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Shelley Long", "character": "Anna Crowley Beissart", "id": 56881, "credit_id": "52fe43759251416c75011269", "cast_id": 2, "profile_path": "/AayPPPyPLi4rxNoU3NCZiq3h2yp.jpg", "order": 1}, {"name": "Alexander Godunov", "character": "Max Beissart", "id": 7674, "credit_id": "52fe43759251416c7501126d", "cast_id": 3, "profile_path": "/lZyg3u3i2OrJJMKGhHDglln5GUm.jpg", "order": 2}, {"name": "Maureen Stapleton", "character": "Estelle", "id": 21151, "credit_id": "52fe43759251416c75011271", "cast_id": 4, "profile_path": "/w0H1432eANSJBjk6SG6xOVWnfuW.jpg", "order": 3}, {"name": "Joe Mantegna", "character": "Art Shirk", "id": 3266, "credit_id": "52fe43759251416c75011275", "cast_id": 5, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 4}, {"name": "Leslie West", "character": "Lana", "id": 238615, "credit_id": "52fe43759251416c750112b5", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Philip Bosco", "character": "Curly", "id": 6541, "credit_id": "52fe43759251416c750112b9", "cast_id": 17, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 6}, {"name": "Josh Mostel", "character": "Jack Schnittman", "id": 33489, "credit_id": "52fe43759251416c750112bd", "cast_id": 18, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 7}, {"name": "Yakov Smirnoff", "character": "Shatov", "id": 159755, "credit_id": "52fe43759251416c750112c1", "cast_id": 19, "profile_path": "/aum8vNjkCQTpLhqxri6PMaBIisV.jpg", "order": 8}, {"name": "Carmine Caridi", "character": "Brad Shirk", "id": 133853, "credit_id": "52fe43759251416c750112c5", "cast_id": 20, "profile_path": "/1BQ7WLUtywjSWoH2G08VixhJXLG.jpg", "order": 9}, {"name": "Brian Backer", "character": "Ethan", "id": 118946, "credit_id": "52fe43759251416c750112c9", "cast_id": 21, "profile_path": "/fUs5ipPXE3jdTSkxoC75tMML1Fz.jpg", "order": 10}, {"name": "Billy Lombardo", "character": "Benny", "id": 1105814, "credit_id": "52fe43759251416c750112cd", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "John van Dreelen", "character": "Carlos", "id": 24554, "credit_id": "546620b0c3a3683b280001b6", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Douglass Watson", "character": "Walter Fielding, Sr.", "id": 124934, "credit_id": "52fe43759251416c750112d9", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Lucille Dobrin", "character": "Macumba Lady", "id": 1105816, "credit_id": "52fe43759251416c750112dd", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Mia Dillon", "character": "Marika", "id": 1218005, "credit_id": "5538c11f9251416518008dff", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Richard Benjamin", "department": "Directing", "job": "Director", "credit_id": "52fe43759251416c7501127b", "profile_path": "/9dPGoVKAwtgT8zTrWKqhJxY5jK7.jpg", "id": 24318}], "vote_average": 6.5, "runtime": 91}, "10468": {"poster_path": "/xONkXGxLfN23UbT9avSdB2Ify2p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After getting into a car accident while drunk on the day of her sister's wedding, Gwen Cummings is given a choice between prison or a rehab center. She chooses rehab, but is extremely resistant to taking part in any of the treatment programs they have to offer, refusing to admit that she has an alcohol addiction.", "video": false, "id": 10468, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "28 Days", "tagline": "The Life of the Party... before she got a life.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0191754", "adult": false, "backdrop_path": "/lI39mS9ANlahs2uZ13kI99jAE04.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2000-04-06", "popularity": 0.372114856213025, "original_title": "28 Days", "budget": 0, "cast": [{"name": "Sandra Bullock", "character": "Gwen Cummings", "id": 18277, "credit_id": "52fe43769251416c7501139f", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Viggo Mortensen", "character": "Eddie Boone", "id": 110, "credit_id": "52fe43769251416c750113a3", "cast_id": 4, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 1}, {"name": "Dominic West", "character": "Jasper", "id": 17287, "credit_id": "52fe43769251416c750113a7", "cast_id": 5, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 2}, {"name": "Elizabeth Perkins", "character": "Lily Cummings", "id": 20, "credit_id": "52fe43769251416c750113ab", "cast_id": 6, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 3}, {"name": "Alan Tudyk", "character": "Gerhardt", "id": 21088, "credit_id": "52fe43769251416c750113cd", "cast_id": 12, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 4}, {"name": "Steve Buscemi", "character": "Cornell", "id": 884, "credit_id": "52fe43769251416c750113d1", "cast_id": 13, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 5}, {"name": "Reni Santoni", "character": "Daniel", "id": 14784, "credit_id": "52fe43769251416c750113d5", "cast_id": 14, "profile_path": "/6dNgWQgTgT4u5jeux3gOX34Fjiu.jpg", "order": 6}, {"name": "Marianne Jean-Baptiste", "character": "Roshanda", "id": 17352, "credit_id": "52fe43769251416c750113d9", "cast_id": 15, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 7}, {"name": "Mike O'Malley", "character": "Oliver", "id": 87192, "credit_id": "52fe43769251416c750113dd", "cast_id": 16, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 8}, {"name": "Azura Skye", "character": "Andrea", "id": 31715, "credit_id": "52fe43769251416c750113e1", "cast_id": 17, "profile_path": "/9dyxe8DOX8eEGrCo6ieW4ZiPZWC.jpg", "order": 9}, {"name": "Diane Ladd", "character": "Bobbie Jean", "id": 6587, "credit_id": "52fe43769251416c750113e5", "cast_id": 18, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 10}, {"name": "Margo Martindale", "character": "Betty", "id": 452, "credit_id": "52fe43769251416c750113e9", "cast_id": 19, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 11}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe43769251416c75011395", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.5, "runtime": 103}, "2277": {"poster_path": "/pt57Kwkd2g2xdYFZKx3yCoz9Xim.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93700000, "overview": "In the not so distant future, androids are owned as household servants. Andrew, is an extraordinary robot who exhibits emotional and creative characteristics that were never expected of him. Over a period of 200 years he evolves far beyond his initial design.", "video": false, "id": 2277, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "Bicentennial Man", "tagline": "One robot's 200 year journey to become an ordinary man.", "vote_count": 174, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0182789", "adult": false, "backdrop_path": "/k3ccsowPEK40pWrTuvybSZDqPKN.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Laurence Mark Productions", "id": 415}, {"name": "Radiant Productions", "id": 18990}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1999-12-17", "popularity": 0.915408923985478, "original_title": "Bicentennial Man", "budget": 100000000, "cast": [{"name": "Robin Williams", "character": "Andrew Martin", "id": 2157, "credit_id": "52fe4349c3a36847f8048a25", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Sam Neill", "character": "Richard Martin", "id": 4783, "credit_id": "52fe4349c3a36847f8048a29", "cast_id": 2, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 1}, {"name": "Embeth Davidtz", "character": "Little Miss", "id": 6368, "credit_id": "52fe4349c3a36847f8048a2d", "cast_id": 3, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 2}, {"name": "Oliver Platt", "character": "Rupert Burns", "id": 17485, "credit_id": "52fe4349c3a36847f8048a31", "cast_id": 4, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 3}, {"name": "Kiersten Warren", "character": "Galatea", "id": 23504, "credit_id": "52fe4349c3a36847f8048a35", "cast_id": 5, "profile_path": "/nzbUkAYhC6x3Zwdmm93nusN5vg6.jpg", "order": 4}, {"name": "Wendy Crewson", "character": "'Ma'am' Martin", "id": 19957, "credit_id": "52fe4349c3a36847f8048a69", "cast_id": 14, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 5}, {"name": "Bradley Whitford", "character": "Lloyd Charney", "id": 11367, "credit_id": "52fe4349c3a36847f8048a6d", "cast_id": 15, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "Lindze Letherman", "character": "'Miss' Grace Martin - Age 9", "id": 90423, "credit_id": "52fe4349c3a36847f8048a75", "cast_id": 17, "profile_path": "/zFgbXVCZgHaO1kAsShaDBN17SVU.jpg", "order": 8}, {"name": "Angela Landis", "character": "'Miss' Grace Martin", "id": 156933, "credit_id": "52fe4349c3a36847f8048a79", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "John Michael Higgins", "character": "Bill Feingold - Martin's Lawyer", "id": 8265, "credit_id": "52fe4349c3a36847f8048a7d", "cast_id": 19, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 10}, {"name": "Igor Hiller", "character": "Lloyd Charney - Age 10", "id": 981910, "credit_id": "52fe4349c3a36847f8048a81", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Joe Bellan", "character": "Robot Delivery Man #1", "id": 548090, "credit_id": "52fe4349c3a36847f8048a85", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Brett Wagner", "character": "Robot Delivery Man #2", "id": 60081, "credit_id": "52fe4349c3a36847f8048a89", "cast_id": 22, "profile_path": "/p3ufSavK8iDa5BEKoZHyenhY2Lq.jpg", "order": 13}, {"name": "Stephen Root", "character": "Dennis Mansky - Head of NorthAm Robotics", "id": 17401, "credit_id": "52fe4349c3a36847f8048a8d", "cast_id": 23, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 14}, {"name": "Hallie Kate Eisenberg", "character": "Little Miss Amanda Martin - Age 7", "id": 15674, "credit_id": "547a34589251417bd7000cd8", "cast_id": 24, "profile_path": "/hKxnAGbWiiMzOiZKwrbJIul8DTH.jpg", "order": 15}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe4349c3a36847f8048a41", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.4, "runtime": 132}, "84199": {"poster_path": "/irXYBRweXT3VvSP7WAQ0LQrtZSf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Dave, a high school senior, spends most of his time pining away over a girl he can\u2019t have. Aubrey, a junior with artistic aspirations, has a hot boyfriend who doesn\u2019t quite understand her or seem to care. Although they go to different schools, Dave and Aubrey find themselves at the same party. When both head outside to get some air, they meet. A casual conversation sparks an instant connection, and, over the course of a weekend, things turn magical, romantic, complicated, and funny as Aubrey and Dave discover what it's like to fall in love for the first time.", "video": false, "id": 84199, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The First Time", "tagline": "Nervous is normal.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1763303", "adult": false, "backdrop_path": "/8REktwko3rCacAndRRwwPxFgj7i.jpg", "production_companies": [{"name": "Destination Films", "id": 769}, {"name": "Samuel Goldwyn Films", "id": 9118}], "release_date": "2012-10-19", "popularity": 0.640282306883863, "original_title": "The First Time", "budget": 0, "cast": [{"name": "Dylan O'Brien", "character": "Dave Hodgman", "id": 527393, "credit_id": "52fe48e09251416c9109b397", "cast_id": 2, "profile_path": "/6u7aDtMnAGaRjOGWgjMIrNNr0rp.jpg", "order": 0}, {"name": "Britt Robertson", "character": "Aubrey Miller", "id": 52018, "credit_id": "52fe48e09251416c9109b39b", "cast_id": 3, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 1}, {"name": "Craig Roberts", "character": "Simon Daldry", "id": 104561, "credit_id": "52fe48e09251416c9109b3c5", "cast_id": 13, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 2}, {"name": "James Frecheville", "character": "Ronny", "id": 968863, "credit_id": "52fe48e09251416c9109b3af", "cast_id": 8, "profile_path": "/fdm3sOJgXVgM1yo7a5GF53mVi7I.jpg", "order": 3}, {"name": "Victoria Justice", "character": "Jane Harmon", "id": 191228, "credit_id": "52fe48e09251416c9109b3b3", "cast_id": 9, "profile_path": "/5RgrN47P3R4q3rEkx6UYJORMYlq.jpg", "order": 4}, {"name": "Maggie Elizabeth Jones", "character": "Stella", "id": 1046348, "credit_id": "52fe48e09251416c9109b3b7", "cast_id": 10, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 5}, {"name": "Lamarcus Tinker", "character": "Big Corporation", "id": 970139, "credit_id": "52fe48e09251416c9109b3a3", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Joshua Malina", "character": "Aubrey's Dad", "id": 131642, "credit_id": "52fe48e09251416c9109b3ab", "cast_id": 7, "profile_path": "/me30212mRTU5zS1tI0CQ5jSidNT.jpg", "order": 7}, {"name": "Christine Taylor", "character": "Aubrey's Mom", "id": 15286, "credit_id": "52fe48e09251416c9109b39f", "cast_id": 4, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 8}, {"name": "Molly C. Quinn", "character": "Erica #1", "id": 96349, "credit_id": "52fe48e09251416c9109b3a7", "cast_id": 6, "profile_path": "/8i908NzSx5K4LBxxh5qtzLe6U8e.jpg", "order": 9}, {"name": "Matthew Fahey", "character": "Brendan Meltzer", "id": 198812, "credit_id": "52fe48e09251416c9109b3bb", "cast_id": 11, "profile_path": null, "order": 10}], "directors": [{"name": "Jon Kasdan", "department": "Directing", "job": "Director", "credit_id": "5476381d92514151af000a8e", "profile_path": "/7U1J4kSFfXjZPtX1WdCkIN7tws5.jpg", "id": 30368}], "vote_average": 7.1, "runtime": 95}, "2280": {"poster_path": "/cCglgzP9hXrqPqUMGNzISZrK338.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160000000, "overview": "When a boy wishes to be big at a magic wish machine, he wakes up the next morning and finds himself in an adult body literally overnight.", "video": false, "id": 2280, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Big", "tagline": "Have you ever had a really big secret?", "vote_count": 253, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094737", "adult": false, "backdrop_path": "/tVpkaXfP5xCS2Fd19JijUSDvpbg.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Gracie Films", "id": 18}], "release_date": "1988-06-03", "popularity": 0.796907894799606, "original_title": "Big", "budget": 18000000, "cast": [{"name": "Tom Hanks", "character": "Joshua \"Josh\" Baskin", "id": 31, "credit_id": "52fe4349c3a36847f8048ac3", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Elizabeth Perkins", "character": "Susan", "id": 20, "credit_id": "52fe4349c3a36847f8048ac7", "cast_id": 2, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 1}, {"name": "Robert Loggia", "character": "MacMillan", "id": 1162, "credit_id": "52fe4349c3a36847f8048acb", "cast_id": 3, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 2}, {"name": "John Heard", "character": "Paul", "id": 11512, "credit_id": "52fe4349c3a36847f8048acf", "cast_id": 4, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Jon Lovitz", "character": "Scotty Brennen", "id": 16165, "credit_id": "52fe4349c3a36847f8048ad3", "cast_id": 5, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 4}, {"name": "Mercedes Ruehl", "character": "Mrs. Baskin", "id": 2167, "credit_id": "52fe4349c3a36847f8048ad7", "cast_id": 6, "profile_path": "/nPsSRaDQxiviOVY8ouqTBLGaui6.jpg", "order": 5}, {"name": "Jared Rushton", "character": "Billy", "id": 57422, "credit_id": "52fe4349c3a36847f8048b11", "cast_id": 16, "profile_path": "/qbyP9UM7xHEFyrop3XKgb26V55q.jpg", "order": 6}, {"name": "David Moscow", "character": "Young Josh", "id": 62123, "credit_id": "52fe4349c3a36847f8048b15", "cast_id": 17, "profile_path": "/shlyKoI2kEAcgX0AE5qFEFSrLfv.jpg", "order": 7}, {"name": "Josh Clark", "character": "Mr. Baskin", "id": 143205, "credit_id": "52fe4349c3a36847f8048b19", "cast_id": 18, "profile_path": "/5MfUFuksjtkJVmWqiDmIfsKIWH.jpg", "order": 8}, {"name": "Kimberlee M. Davis", "character": "Cynthia Benson", "id": 1073814, "credit_id": "52fe4349c3a36847f8048b1d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Oliver Block", "character": "Freddie Benson", "id": 1073816, "credit_id": "52fe4349c3a36847f8048b21", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Erika Katz", "character": "Cynthia's Friend", "id": 80138, "credit_id": "52fe4349c3a36847f8048b25", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Allan Wasserman", "character": "Gym Teacher", "id": 123728, "credit_id": "52fe4349c3a36847f8048b29", "cast_id": 22, "profile_path": "/u6xfuaLDoLMkSWHPW5I2njOsWPI.jpg", "order": 12}, {"name": "Mark Ballou", "character": "Derek", "id": 166788, "credit_id": "52fe4349c3a36847f8048b2d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Gary Howard Klar", "character": "Ticket Taker", "id": 994134, "credit_id": "52fe4349c3a36847f8048b31", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Penny Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4349c3a36847f8048add", "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "id": 14911}], "vote_average": 6.6, "runtime": 104}, "4476": {"poster_path": "/uh0sJcx3SLtclJSuKAXl6Tt6AV0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160638883, "overview": "An epic tale of three brothers and their father living in the remote wilderness of 1900s USA and how their lives are affected by nature, history, war, and love.", "video": false, "id": 4476, "genres": [{"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Legends of the Fall", "tagline": "After the Fall from Innocence the Legend begins.", "vote_count": 180, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "kw", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110322", "adult": false, "backdrop_path": "/ftKZn79wtRqPdBJ95s5DGqbfhSy.jpg", "production_companies": [{"name": "Bedford Falls Productions", "id": 348}, {"name": "TriStar Pictures", "id": 559}, {"name": "Pangaea", "id": 1656}], "release_date": "1994-12-16", "popularity": 0.658561489549263, "original_title": "Legends of the Fall", "budget": 30000000, "cast": [{"name": "Brad Pitt", "character": "Tristan Ludlow", "id": 287, "credit_id": "52fe43c4c3a36847f806e20d", "cast_id": 17, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Col. William Ludlow", "id": 4173, "credit_id": "52fe43c4c3a36847f806e211", "cast_id": 18, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Aidan Quinn", "character": "Alfred Ludlow", "id": 18992, "credit_id": "52fe43c4c3a36847f806e215", "cast_id": 19, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 2}, {"name": "Julia Ormond", "character": "Susannah Fincannon Ludlow", "id": 15887, "credit_id": "52fe43c4c3a36847f806e219", "cast_id": 20, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 3}, {"name": "Henry Thomas", "character": "Samuel Ludlow", "id": 9976, "credit_id": "52fe43c4c3a36847f806e21d", "cast_id": 21, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 4}, {"name": "Karina Lombard", "character": "Isabel Two Decker Ludlow", "id": 11068, "credit_id": "52fe43c4c3a36847f806e221", "cast_id": 22, "profile_path": "/8uS7dXBJCTQaHQGyTFc2EhB9mKD.jpg", "order": 5}, {"name": "Gordon Tootoosis", "character": "One Stab", "id": 37430, "credit_id": "52fe43c4c3a36847f806e225", "cast_id": 23, "profile_path": "/l10aLDp4D8ZwWdmfRdlj6FedUYk.jpg", "order": 6}, {"name": "John Novak", "character": "James O'Banion", "id": 37431, "credit_id": "52fe43c4c3a36847f806e229", "cast_id": 24, "profile_path": "/4d7dFppd9XDURcPUY8e6UqtVPwY.jpg", "order": 7}, {"name": "Robert Wisden", "character": "John T. O'Banion", "id": 37432, "credit_id": "52fe43c4c3a36847f806e22d", "cast_id": 25, "profile_path": "/pytxV426R5R712DOGTtFb8J1a5g.jpg", "order": 8}, {"name": "David Kaye", "character": "Samuel Decker", "id": 1048574, "credit_id": "52fe43c4c3a36847f806e231", "cast_id": 26, "profile_path": "/gEJuuELGPXGOLw8qi4sgMn4ueUJ.jpg", "order": 9}, {"name": "Tantoo Cardinal", "character": "Pet", "id": 7863, "credit_id": "52fe43c4c3a36847f806e235", "cast_id": 27, "profile_path": "/2FEYWnf9jbc5VY5fEFiX91vx80k.jpg", "order": 10}, {"name": "Paul Desmond", "character": "Decker", "id": 174943, "credit_id": "52fe43c4c3a36847f806e239", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Christina Pickles", "character": "Isabel Ludlow", "id": 94978, "credit_id": "52fe43c4c3a36847f806e23d", "cast_id": 29, "profile_path": "/vhUkCPm78zsv9P1PfWzm4INE02d.jpg", "order": 12}, {"name": "Kenneth Welsh", "character": "Sheriff Tynert", "id": 6074, "credit_id": "52fe43c4c3a36847f806e241", "cast_id": 30, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 13}, {"name": "Bill Dow", "character": "Longley", "id": 118462, "credit_id": "52fe43c4c3a36847f806e245", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Sam Sarkar", "character": "Rodriguez", "id": 184106, "credit_id": "52fe43c4c3a36847f806e249", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Nigel Bennett", "character": "Asgaard", "id": 44208, "credit_id": "52fe43c4c3a36847f806e24d", "cast_id": 33, "profile_path": "/wx1zmmpMi9luYFGzikSBIvwyDdR.jpg", "order": 16}, {"name": "Keegan Macintosh", "character": "Boy Tristan", "id": 78105, "credit_id": "52fe43c4c3a36847f806e251", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Eric Johnson", "character": "Teen Tristan", "id": 33337, "credit_id": "52fe43c4c3a36847f806e255", "cast_id": 35, "profile_path": "/e9pkotPfskmBxIlDZG9Fyr1btPL.jpg", "order": 18}, {"name": "Randall Slavin", "character": "Teen Alfred", "id": 95825, "credit_id": "52fe43c4c3a36847f806e259", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Doug Hughes", "character": "Teen Samuel", "id": 1077328, "credit_id": "52fe43c4c3a36847f806e25d", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Sekwan Auger", "character": "Young Isabel Two", "id": 222556, "credit_id": "52fe43c4c3a36847f806e261", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Christine Harder", "character": "Isabel Three", "id": 1077329, "credit_id": "52fe43c4c3a36847f806e265", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "Charles Andre", "character": "Federal Officer", "id": 105791, "credit_id": "52fe43c4c3a36847f806e269", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Weston McMillan", "character": "Noel", "id": 1077330, "credit_id": "52fe43c4c3a36847f806e26d", "cast_id": 41, "profile_path": null, "order": 24}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806e1b5", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 7.1, "runtime": 133}, "10474": {"poster_path": "/8BkedYL5LdpkyHc7JtuohMr8a9N.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Film adaptation of street tough Jim Carroll's epistle about his kaleidoscopic free fall into the harrowing world of drug addiction.", "video": false, "id": 10474, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Basketball Diaries", "tagline": "The true story of the death of innocence and the birth of an artist.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112461", "adult": false, "backdrop_path": "/6rGA5l7Ykdge27x3wysSdOouVPk.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Island Pictures", "id": 3492}], "release_date": "1995-04-21", "popularity": 1.06484313746498, "original_title": "The Basketball Diaries", "budget": 0, "cast": [{"name": "Leonardo DiCaprio", "character": "Jim Carroll", "id": 6193, "credit_id": "52fe43779251416c750116ab", "cast_id": 9, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Lorraine Bracco", "character": "Jim's Mother", "id": 11478, "credit_id": "52fe43779251416c750116af", "cast_id": 10, "profile_path": "/1neO0scj7QyrrWDp1JZRrN0tA8Y.jpg", "order": 1}, {"name": "James Madio", "character": "Pedro", "id": 65395, "credit_id": "52fe43779251416c750116b3", "cast_id": 11, "profile_path": "/3s32FSsr95w6nGtoH5f9sPk1mPw.jpg", "order": 2}, {"name": "Mark Wahlberg", "character": "Mickey", "id": 13240, "credit_id": "52fe43779251416c750116b7", "cast_id": 12, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 3}, {"name": "Bruno Kirby", "character": "Swifty", "id": 9257, "credit_id": "52fe43779251416c750116d7", "cast_id": 21, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 4}, {"name": "Patrick McGaw", "character": "Neutron", "id": 186526, "credit_id": "52fe43779251416c750116bb", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Juliette Lewis", "character": "Diane Moody", "id": 3196, "credit_id": "52fe43779251416c750116bf", "cast_id": 15, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 6}, {"name": "Michael Imperioli", "character": "Bobby", "id": 11486, "credit_id": "52fe43779251416c750116c3", "cast_id": 16, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 7}, {"name": "Ernie Hudson", "character": "Reggie", "id": 8874, "credit_id": "52fe43779251416c750116c7", "cast_id": 17, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 8}, {"name": "Manny Alfaro", "character": "Manny", "id": 163985, "credit_id": "52fe43779251416c750116cb", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Cynthia Daniel", "character": "Winkie", "id": 185889, "credit_id": "52fe43779251416c750116cf", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Brittany Daniel", "character": "Blinkie", "id": 35476, "credit_id": "52fe43779251416c750116d3", "cast_id": 20, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 11}], "directors": [{"name": "Scott Kalvert", "department": "Directing", "job": "Director", "credit_id": "52fe43779251416c7501167d", "profile_path": null, "id": 65390}], "vote_average": 6.9, "runtime": 102}, "2284": {"poster_path": "/75m4IBZE6gUrltcDgTSBTFg68QT.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69474661, "overview": "Molly Mahoney is the awkward and insecure manager of Mr. Magorium's Wonder Emporium, the strangest, most fantastic, most wonderful toy store in the world. But when Mr. Magorium bequeaths the store to her, a dark and ominous change begins to take over the once remarkable Emporium.", "video": false, "id": 2284, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Mr. Magorium's Wonder Emporium", "tagline": "You have to believe it to see it.", "vote_count": 74, "homepage": "http://www.magorium.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457419", "adult": false, "backdrop_path": "/icq8EO55IEvDo7OGCQfFXZ8l3Sv.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Walden Media", "id": 10221}, {"name": "FilmColony", "id": 1811}], "release_date": "2007-11-14", "popularity": 0.722549277304365, "original_title": "Mr. Magorium's Wonder Emporium", "budget": 0, "cast": [{"name": "Dustin Hoffman", "character": "Mr. Edward Magorium", "id": 4483, "credit_id": "52fe4349c3a36847f8048c23", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Jason Bateman", "character": "Henry Weston", "id": 23532, "credit_id": "52fe4349c3a36847f8048c27", "cast_id": 2, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 1}, {"name": "Zach Mills", "character": "Eric Applebaum", "id": 23533, "credit_id": "52fe4349c3a36847f8048c2b", "cast_id": 3, "profile_path": "/xziEsJgAFjQeWN3Z1tJdQZmJ2LX.jpg", "order": 2}, {"name": "Jonathan Potts", "character": "Dr. Sage", "id": 23534, "credit_id": "52fe4349c3a36847f8048c2f", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Rebecca Northan", "character": "Ellie Applebaum", "id": 23535, "credit_id": "52fe4349c3a36847f8048c33", "cast_id": 5, "profile_path": "/idm46AJeOnOMyOfhz2nBWiAiIy5.jpg", "order": 4}, {"name": "David Rendall", "character": "Tim", "id": 23536, "credit_id": "52fe4349c3a36847f8048c37", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jade Cohen", "character": "Kangaroo Girl", "id": 23538, "credit_id": "52fe4349c3a36847f8048c3b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Natalie Portman", "character": "Molly Mahoney", "id": 524, "credit_id": "52fe4349c3a36847f8048cbd", "cast_id": 30, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 7}, {"name": "Marcia Bennett", "character": "Lora", "id": 40385, "credit_id": "52fe4349c3a36847f8048cc1", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Ted Ludzik", "character": "Bellini", "id": 40386, "credit_id": "52fe4349c3a36847f8048cc5", "cast_id": 32, "profile_path": "/fz7de231z4eWHkIA8vSqPSmB9US.jpg", "order": 9}, {"name": "Madalena Brancatella", "character": "Jessica", "id": 1077854, "credit_id": "52fe4349c3a36847f8048ccf", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Paula Boudreau", "character": "Brenda", "id": 204964, "credit_id": "52fe4349c3a36847f8048cd3", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Mike Realba", "character": "Dave Wolf", "id": 28869, "credit_id": "52fe4349c3a36847f8048cd7", "cast_id": 36, "profile_path": "/9VSNPVauGKQlV1cXENaUI60OoZH.jpg", "order": 12}, {"name": "Steve Whitmire", "character": "Kermit the Frog (voice)", "id": 64180, "credit_id": "52fe4349c3a36847f8048cdb", "cast_id": 37, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 13}, {"name": "Liam Powley-Webster", "character": "Andy", "id": 1077855, "credit_id": "52fe4349c3a36847f8048cdf", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Oliver Masuda", "character": "Jordan", "id": 1077856, "credit_id": "52fe4349c3a36847f8048ce3", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Samantha Harvey", "character": "Cassie", "id": 1077857, "credit_id": "52fe4349c3a36847f8048ce7", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Jesse Bostick", "character": "Derek", "id": 1026218, "credit_id": "52fe4349c3a36847f8048ceb", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Isaac Durnford", "character": "Jason", "id": 201732, "credit_id": "52fe4349c3a36847f8048cef", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Daniyah Ysrayl", "character": "Jimmy", "id": 1062878, "credit_id": "52fe4349c3a36847f8048cf3", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Dash Grundy", "character": "Ari", "id": 1077858, "credit_id": "52fe4349c3a36847f8048cf7", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Dylan Authors", "character": "Mark", "id": 1077859, "credit_id": "52fe4349c3a36847f8048cfb", "cast_id": 45, "profile_path": null, "order": 21}, {"name": "Aidan Koper", "character": "Brett", "id": 1077860, "credit_id": "52fe4349c3a36847f8048cff", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Lin Lin Feng", "character": "Angie", "id": 1077861, "credit_id": "52fe4349c3a36847f8048d03", "cast_id": 47, "profile_path": null, "order": 23}, {"name": "He Wen", "character": "Larry", "id": 1077862, "credit_id": "52fe4349c3a36847f8048d07", "cast_id": 48, "profile_path": null, "order": 24}, {"name": "Gan Zhen", "character": "David", "id": 1077863, "credit_id": "52fe4349c3a36847f8048d0b", "cast_id": 49, "profile_path": null, "order": 25}, {"name": "Quancetia Hamilton", "character": "Gia", "id": 184388, "credit_id": "52fe4349c3a36847f8048d0f", "cast_id": 50, "profile_path": null, "order": 26}, {"name": "Kiele Sanchez", "character": "Mrs. Goodman", "id": 31168, "credit_id": "52fe4349c3a36847f8048d13", "cast_id": 51, "profile_path": "/i0YEpWuk1zSvadwwa1r0rahDONt.jpg", "order": 27}, {"name": "David Collins", "character": "Tom", "id": 45119, "credit_id": "52fe4349c3a36847f8048d17", "cast_id": 52, "profile_path": null, "order": 28}], "directors": [{"name": "Zach Helm", "department": "Directing", "job": "Director", "credit_id": "52fe4349c3a36847f8048c41", "profile_path": "/qjXdGnMAoNIcsqBfqpa7hoB7gIx.jpg", "id": 23539}], "vote_average": 5.8, "runtime": 93}, "2288": {"poster_path": "/jZINusxU1VUKae1s6j39jeFrnJt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115505027, "overview": "Set in contemporary London, a story of passion, drama, love, and abandonment involving four strangers--their chance meetings, instant attractions and casual betrayals.", "video": false, "id": 2288, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Closer", "tagline": "If you believe in love at first sight, you never stop looking.", "vote_count": 176, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0376541", "adult": false, "backdrop_path": "/ocml2PiclZHpIy1MvT2mvGSJFpH.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2004-12-02", "popularity": 0.479045984044516, "original_title": "Closer", "budget": 27000000, "cast": [{"name": "Natalie Portman", "character": "Alice", "id": 524, "credit_id": "52fe434ac3a36847f8048f89", "cast_id": 8, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Jude Law", "character": "Dan", "id": 9642, "credit_id": "52fe434ac3a36847f8048f75", "cast_id": 3, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Julia Roberts", "character": "Anna", "id": 1204, "credit_id": "52fe434ac3a36847f8048f79", "cast_id": 4, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 2}, {"name": "Clive Owen", "character": "Larry", "id": 2296, "credit_id": "52fe434ac3a36847f8048f7d", "cast_id": 5, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 3}, {"name": "Colin Stinton", "character": "Customs Officer", "id": 23608, "credit_id": "52fe434ac3a36847f8048f85", "cast_id": 7, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 4}, {"name": "Nick Hobbs", "character": "Taxi Driver", "id": 23607, "credit_id": "52fe434ac3a36847f8048f81", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Steve Benham", "character": "Car driver (uncredited)", "id": 1220476, "credit_id": "5498152d9251416e2b0082a2", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Elizabeth Bower", "character": "Chatty Exhibition Guest (uncredited)", "id": 1232670, "credit_id": "5498154cc3a3686ae9008464", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Ray Donn", "character": "Customs Officer (uncredited)", "id": 1392726, "credit_id": "54981577c3a3680511001488", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Daniel Dresner", "character": "Coughing Man (uncredited)", "id": 1402622, "credit_id": "549815a392514130fc006996", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Rrenford Junior Fagan", "character": "Bus Passenger (uncredited)", "id": 1402625, "credit_id": "549815c29251416e2b0082af", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Antony Gabriel", "character": "Luke (uncredited)", "id": 1402629, "credit_id": "549815dec3a3686ae900847c", "cast_id": 25, "profile_path": null, "order": 11}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f8048f6b", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 6.7, "runtime": 104}, "2289": {"poster_path": "/9MYfag0sPAaJUq3Lc0rXxhQHLA5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173013509, "overview": "In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.", "video": false, "id": 2289, "genres": [{"id": 18, "name": "Drama"}], "title": "Cold Mountain", "tagline": "Find the strength. Find the courage. No matter what it takes... find the way home.", "vote_count": 135, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0159365", "adult": false, "backdrop_path": "/tLDljWDR3Rz3zrtxHGWlVQI8UCI.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Mirage Enterprises", "id": 932}, {"name": "Bona Fide Productions", "id": 2570}, {"name": "Castel Film Romania", "id": 1370}, {"name": "Cattleya", "id": 10102}], "release_date": "2003-12-24", "popularity": 0.665374994212847, "original_title": "Cold Mountain", "budget": 79000000, "cast": [{"name": "Jude Law", "character": "Inman", "id": 9642, "credit_id": "52fe434ac3a36847f8049027", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Ada Monroe", "id": 2227, "credit_id": "52fe434ac3a36847f804902b", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Ruby Thewes", "id": 9137, "credit_id": "52fe434ac3a36847f804902f", "cast_id": 6, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Eileen Atkins", "character": "Maddy", "id": 20300, "credit_id": "52fe434ac3a36847f8049033", "cast_id": 7, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Stobrod Thewes", "id": 2039, "credit_id": "52fe434ac3a36847f8049037", "cast_id": 8, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Philip Seymour Hoffman", "character": "Reverend Veasey", "id": 1233, "credit_id": "52fe434ac3a36847f804903b", "cast_id": 9, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 5}, {"name": "Natalie Portman", "character": "Sara", "id": 524, "credit_id": "52fe434ac3a36847f804903f", "cast_id": 10, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 6}, {"name": "Emily Deschanel", "character": "Mrs. Morgan", "id": 25933, "credit_id": "52fe434ac3a36847f8049055", "cast_id": 16, "profile_path": "/f5FjmOlXEcjLz4qxi5Rfbu3ZO4Y.jpg", "order": 7}, {"name": "Giovanni Ribisi", "character": "Junior", "id": 1771, "credit_id": "52fe434ac3a36847f8049059", "cast_id": 17, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 8}, {"name": "Donald Sutherland", "character": "Reverend Monroe", "id": 55636, "credit_id": "52fe434ac3a36847f804905d", "cast_id": 18, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 9}, {"name": "Ray Winstone", "character": "Teague", "id": 5538, "credit_id": "52fe434ac3a36847f8049061", "cast_id": 19, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 10}, {"name": "Kathy Baker", "character": "Sally Swanger", "id": 1907, "credit_id": "52fe434ac3a36847f8049065", "cast_id": 20, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 11}, {"name": "Charlie Hunnam", "character": "Bosie", "id": 56365, "credit_id": "52fe434ac3a36847f8049069", "cast_id": 21, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 12}, {"name": "Ethan Suplee", "character": "Pangle", "id": 824, "credit_id": "52fe434ac3a36847f8049097", "cast_id": 30, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 13}, {"name": "Jena Malone", "character": "Ferry Girl", "id": 20089, "credit_id": "52fe434ac3a36847f804909b", "cast_id": 31, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 14}, {"name": "Lucas Black", "character": "Oakley", "id": 155, "credit_id": "52fe434ac3a36847f804909f", "cast_id": 32, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 15}, {"name": "Taryn Manning", "character": "Shyla", "id": 343, "credit_id": "52fe434ac3a36847f80490a3", "cast_id": 33, "profile_path": "/vgLUb0mjZqJsDCnZZ3I9VKeyo9J.jpg", "order": 16}, {"name": "Tom Aldredge", "character": "Blind Man", "id": 49835, "credit_id": "52fe434ac3a36847f80490a7", "cast_id": 34, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 17}, {"name": "James Rebhorn", "character": "Doctor", "id": 8986, "credit_id": "52fe434ac3a36847f80490ab", "cast_id": 35, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 18}, {"name": "Cillian Murphy", "character": "Bardolph", "id": 2037, "credit_id": "52fe434ac3a36847f80490af", "cast_id": 36, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 19}, {"name": "Jack White", "character": "Georgia", "id": 13611, "credit_id": "52fe434ac3a36847f80490b3", "cast_id": 37, "profile_path": "/7VaPV6dQQvJND4xvxgaPc4AU3jL.jpg", "order": 20}, {"name": "William Boyer", "character": "Confederate Officer", "id": 1187550, "credit_id": "54b25d049251412ae7003341", "cast_id": 114, "profile_path": null, "order": 21}], "directors": [{"name": "Anthony Minghella", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f8049017", "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "id": 2239}], "vote_average": 6.3, "runtime": 154}, "2291": {"poster_path": "/2Byg7AV91LF7pfByz4ZMvnkZnH7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25965144, "overview": "A traumatized Vietnam war veteran finds out that his post-war life isn't what he believes it to be when he's attacked by horned creatures in the subway and his dead son comes to visit him...", "video": false, "id": 2291, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Jacob's Ladder", "tagline": "The most frightening thing about Jacob Singer's nightmare is that he isn't dreaming.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099871", "adult": false, "backdrop_path": "/xahHn2vJFHgqXUdFcG83rE7crFh.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Carolco Pictures", "id": 14723}], "release_date": "1990-11-02", "popularity": 0.275559472888777, "original_title": "Jacob's Ladder", "budget": 25000000, "cast": [{"name": "Tim Robbins", "character": "Jacob Singer", "id": 504, "credit_id": "52fe434ac3a36847f80491e3", "cast_id": 8, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 0}, {"name": "Elizabeth Pe\u00f1a", "character": "Jezebel", "id": 7430, "credit_id": "52fe434ac3a36847f80491e7", "cast_id": 9, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 1}, {"name": "Danny Aiello", "character": "Louis", "id": 1004, "credit_id": "52fe434ac3a36847f80491eb", "cast_id": 10, "profile_path": "/UvPalkz4ynJJrTcrbpfD05gVoO.jpg", "order": 2}, {"name": "Matt Craven", "character": "Michael", "id": 13525, "credit_id": "52fe434ac3a36847f80491ef", "cast_id": 11, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 3}, {"name": "Pruitt Taylor Vince", "character": "Paul", "id": 3201, "credit_id": "52fe434ac3a36847f80491f3", "cast_id": 12, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 4}, {"name": "Jason Alexander", "character": "Geary", "id": 1206, "credit_id": "52fe434ac3a36847f80491f7", "cast_id": 13, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 5}, {"name": "Patricia Kalember", "character": "Sarah", "id": 23627, "credit_id": "52fe434ac3a36847f80491fb", "cast_id": 14, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 6}, {"name": "Eriq La Salle", "character": "Frank", "id": 23628, "credit_id": "52fe434ac3a36847f80491ff", "cast_id": 15, "profile_path": "/iUjzxU9h9omJ9OTVkXreu6Q7YsK.jpg", "order": 7}, {"name": "Ving Rhames", "character": "George", "id": 10182, "credit_id": "52fe434ac3a36847f8049203", "cast_id": 16, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 8}, {"name": "Brian Tarantina", "character": "Doug", "id": 4890, "credit_id": "52fe434ac3a36847f8049207", "cast_id": 17, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 9}, {"name": "Brent Hinkley", "character": "Jerry", "id": 7134, "credit_id": "52fe434ac3a36847f8049211", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "S. Epatha Merkerson", "character": "Elsa", "id": 3978, "credit_id": "52fe434ac3a36847f8049215", "cast_id": 21, "profile_path": "/wuzhs2DR1ImE3Y8kuMoCXpFaHVK.jpg", "order": 11}, {"name": "Suzanne Shepherd", "character": "Hospital Receptionist", "id": 11484, "credit_id": "52fe434ac3a36847f8049219", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Doug Barron", "character": "Group Leader", "id": 85566, "credit_id": "52fe434ac3a36847f804921d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Anthony Alessandro", "character": "Rod", "id": 166890, "credit_id": "52fe434ac3a36847f8049221", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Macaulay Culkin", "character": "Gabe (uncredited)", "id": 11510, "credit_id": "52fe434ac3a36847f8049225", "cast_id": 25, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 15}], "directors": [{"name": "Adrian Lyne", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f80491bb", "profile_path": null, "id": 7270}], "vote_average": 6.9, "runtime": 113}, "2292": {"poster_path": "/dmNytzvQTjylI83qrgDoS1KQ0ev.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.", "video": false, "id": 2292, "genres": [{"id": 35, "name": "Comedy"}], "title": "Clerks", "tagline": "Just because they serve you doesn't mean they like you.", "vote_count": 168, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109445", "adult": false, "backdrop_path": "/a3sogs3NLDj3d2ITPd6TTBR0Eax.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Miramax Films", "id": 14}], "release_date": "1994-10-19", "popularity": 0.248323112616539, "original_title": "Clerks", "budget": 230000, "cast": [{"name": "Brian O'Halloran", "character": "Dante Hicks", "id": 23629, "credit_id": "52fe434bc3a36847f8049275", "cast_id": 7, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 0}, {"name": "Jeff Anderson", "character": "Randal Graves", "id": 23630, "credit_id": "52fe434bc3a36847f8049279", "cast_id": 8, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 1}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f804927d", "cast_id": 10, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 2}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f8049281", "cast_id": 11, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 3}, {"name": "Lisa Spoonhauer", "character": "Caitlin Bree", "id": 23632, "credit_id": "52fe434bc3a36847f8049285", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Marilyn Ghigliotti", "character": "Veronica Loughran", "id": 23631, "credit_id": "52fe434bc3a36847f80492a5", "cast_id": 20, "profile_path": "/3UmNH4sNfnBUDiu8PDzpcf3vxcH.jpg", "order": 5}, {"name": "Scott Mosier", "character": "Willam Black/Angry Hockey Playing Customer/Angry Mourner", "id": 20503, "credit_id": "52fe434bc3a36847f8049289", "cast_id": 13, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 6}, {"name": "Walt Flanagan", "character": "Woolen Cap Smoker/Egg Man/Offended Customer/Cat Admiring Bitter Customer", "id": 23633, "credit_id": "52fe434bc3a36847f804928d", "cast_id": 14, "profile_path": "/mu1THhSjnBbOxd9VxaVQQ3qvf2U.jpg", "order": 7}, {"name": "Scott Schiaffo", "character": "Chewlie's Rep", "id": 23634, "credit_id": "52fe434bc3a36847f8049291", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "David Klein", "character": "Hunting Cap Smoking Boy/Low I.Q. Video Customer/Hubcap Searching Customer/Angry Mourner/Angry Crowd at Door", "id": 21405, "credit_id": "52fe434bc3a36847f8049295", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Ed Hapstak", "character": "Sanford/Angry Mourner", "id": 23635, "credit_id": "52fe434bc3a36847f8049299", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Pattijean Csik", "character": "Coroner", "id": 23636, "credit_id": "52fe434bc3a36847f804929d", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "John Henry Westhead", "character": "Olaf Oleeson", "id": 23637, "credit_id": "52fe434bc3a36847f80492a1", "cast_id": 19, "profile_path": null, "order": 12}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434ac3a36847f8049253", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 7.3, "runtime": 92}, "2293": {"poster_path": "/dwWAr8T0q0KHv5rTu0eVaqpCJ2C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Both dumped by their girlfriends, two best friends seek refuge in the local mall.", "video": false, "id": 2293, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Mallrats", "tagline": "They're not there to shop. They're not there to work. They're just there.", "vote_count": 115, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113749", "adult": false, "backdrop_path": "/gDwBLX0rZL6whM6iRsPMzXXU9yt.jpg", "production_companies": [{"name": "Alphaville Films", "id": 11462}, {"name": "View Askew Productions", "id": 16934}, {"name": "Gramercy Pictures", "id": 37}], "release_date": "1995-10-20", "popularity": 0.595330349606988, "original_title": "Mallrats", "budget": 6000000, "cast": [{"name": "Jason Lee", "character": "Brodie Bruce", "id": 11662, "credit_id": "52fe434bc3a36847f8049311", "cast_id": 13, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 0}, {"name": "Jeremy London", "character": "T.S. Quint", "id": 23646, "credit_id": "52fe434bc3a36847f8049315", "cast_id": 14, "profile_path": "/uZgGh9GYQYAvaThDrVB4ZtiyquF.jpg", "order": 1}, {"name": "Shannen Doherty", "character": "Rene Mosier", "id": 19144, "credit_id": "52fe434bc3a36847f804930d", "cast_id": 12, "profile_path": "/1q3BKF6vnOFUOCRier8hfH9Nyxo.jpg", "order": 2}, {"name": "Claire Forlani", "character": "Brandi Svenning", "id": 4174, "credit_id": "52fe434bc3a36847f8049319", "cast_id": 15, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 3}, {"name": "Ben Affleck", "character": "Shannon Hamilton", "id": 880, "credit_id": "52fe434bc3a36847f804931d", "cast_id": 16, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 4}, {"name": "Joey Lauren Adams", "character": "Gwen Turner", "id": 16484, "credit_id": "52fe434bc3a36847f8049325", "cast_id": 18, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 5}, {"name": "Michael Rooker", "character": "Mr. Jared Svenning", "id": 12132, "credit_id": "52fe434bc3a36847f8049339", "cast_id": 23, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 6}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f804932d", "cast_id": 20, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 7}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f8049321", "cast_id": 17, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 8}, {"name": "Priscilla Barnes", "character": "Miss Ivannah", "id": 23648, "credit_id": "52fe434bc3a36847f8049335", "cast_id": 22, "profile_path": "/llDEiCLnmEm68b658dv29Bh2wtR.jpg", "order": 9}, {"name": "Ren\u00e9e Humphrey", "character": "Tricia Jones", "id": 23647, "credit_id": "52fe434bc3a36847f8049329", "cast_id": 19, "profile_path": "/q8Kf2vOuU80APe2cxDS0kSrp7BC.jpg", "order": 10}, {"name": "Ethan Suplee", "character": "Willam Black", "id": 824, "credit_id": "52fe434bc3a36847f8049331", "cast_id": 21, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 11}, {"name": "Stan Lee", "character": "Himself", "id": 7624, "credit_id": "52fe434bc3a36847f8049347", "cast_id": 26, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 12}, {"name": "Brian O'Halloran", "character": "Gil Hicks, Suitor #3", "id": 23629, "credit_id": "52fe434bc3a36847f8049343", "cast_id": 25, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 13}, {"name": "Sven-Ole Thorsen", "character": "LaFours", "id": 20761, "credit_id": "52fe434bc3a36847f8049357", "cast_id": 29, "profile_path": "/vNjv3gk22eqihzOqXm2vz5yP58V.jpg", "order": 14}, {"name": "Scott Mosier", "character": "Roddy", "id": 20503, "credit_id": "52fe434bc3a36847f804935b", "cast_id": 30, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 15}, {"name": "Walt Flanagan", "character": "Walt \"Fanboy\" Grover", "id": 23633, "credit_id": "52fe434bc3a36847f804935f", "cast_id": 31, "profile_path": "/mu1THhSjnBbOxd9VxaVQQ3qvf2U.jpg", "order": 16}, {"name": "Bryan Johnson", "character": "Steve-Dave Pulasti", "id": 572591, "credit_id": "52fe434bc3a36847f8049363", "cast_id": 32, "profile_path": null, "order": 17}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f804933f", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.8, "runtime": 94}, "2294": {"poster_path": "/8xI9g6su8aKwg3Nk5qUnS025NyA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33788161, "overview": "When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.", "video": false, "id": 2294, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jay and Silent Bob Strike Back", "tagline": "Hollywood had it coming", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt0261392", "adult": false, "backdrop_path": "/1Y3ThCgBgGy0woQTUgjGxQmEByS.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Dimension Films", "id": 7405}], "release_date": "2001-08-24", "popularity": 0.614224981547126, "original_title": "Jay and Silent Bob Strike Back", "budget": 22000000, "cast": [{"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f80493d9", "cast_id": 9, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 0}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f80493dd", "cast_id": 10, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 1}, {"name": "Ben Affleck", "character": "Holden McNeil/Himself", "id": 880, "credit_id": "52fe434bc3a36847f80493e1", "cast_id": 11, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 2}, {"name": "Jeff Anderson", "character": "Randal Graves", "id": 23630, "credit_id": "52fe434bc3a36847f80493e5", "cast_id": 12, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 3}, {"name": "Brian O'Halloran", "character": "Dante Hicks", "id": 23629, "credit_id": "52fe434bc3a36847f80493e9", "cast_id": 13, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 4}, {"name": "Shannon Elizabeth", "character": "Justice", "id": 21596, "credit_id": "52fe434bc3a36847f80493ed", "cast_id": 14, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 5}, {"name": "Eliza Dushku", "character": "Sissy", "id": 13446, "credit_id": "52fe434bc3a36847f80493f1", "cast_id": 15, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 6}, {"name": "Ali Larter", "character": "Chrissy", "id": 17303, "credit_id": "52fe434bc3a36847f80493f5", "cast_id": 16, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 7}, {"name": "Jennifer Schwalbach Smith", "character": "Missy", "id": 23658, "credit_id": "52fe434bc3a36847f80493f9", "cast_id": 17, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 8}, {"name": "Will Ferrell", "character": "Federal Wildlife Marshal Willenholly", "id": 23659, "credit_id": "52fe434bc3a36847f80493fd", "cast_id": 18, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 9}, {"name": "Jason Lee", "character": "Brodie Bruce/Banky Edwards", "id": 11662, "credit_id": "52fe434bc3a36847f8049401", "cast_id": 19, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 10}, {"name": "Judd Nelson", "character": "Sheriff", "id": 21624, "credit_id": "52fe434bc3a36847f8049405", "cast_id": 20, "profile_path": "/6mwumgsKDEYy0F9GVdfw8TsNDHL.jpg", "order": 11}, {"name": "George Carlin", "character": "Hitchhiker", "id": 15903, "credit_id": "52fe434bc3a36847f8049409", "cast_id": 21, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 12}, {"name": "Carrie Fisher", "character": "Nun", "id": 4, "credit_id": "52fe434bc3a36847f804940d", "cast_id": 22, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 13}, {"name": "Seann William Scott", "character": "Brent", "id": 57599, "credit_id": "52fe434bc3a36847f8049411", "cast_id": 23, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 14}, {"name": "Jon Stewart", "character": "Reg Hartner", "id": 12219, "credit_id": "52fe434bc3a36847f8049415", "cast_id": 24, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 15}, {"name": "Mark Hamill", "character": "Cock-Knocker", "id": 2, "credit_id": "52fe434bc3a36847f8049419", "cast_id": 25, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 16}, {"name": "Joey Lauren Adams", "character": "Alyssa Jones", "id": 16484, "credit_id": "52fe434bc3a36847f804941d", "cast_id": 26, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 17}, {"name": "Tracy Morgan", "character": "Pumpkin Escobar", "id": 56903, "credit_id": "52fe434bc3a36847f8049421", "cast_id": 27, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 18}, {"name": "Gus Van Sant", "character": "Himself", "id": 5216, "credit_id": "52fe434bc3a36847f8049425", "cast_id": 28, "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "order": 19}, {"name": "Shannen Doherty", "character": "Herself", "id": 19144, "credit_id": "52fe434bc3a36847f8049429", "cast_id": 29, "profile_path": "/1q3BKF6vnOFUOCRier8hfH9Nyxo.jpg", "order": 20}, {"name": "Wes Craven", "character": "Himself", "id": 5140, "credit_id": "52fe434bc3a36847f804942d", "cast_id": 30, "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "order": 21}, {"name": "Chris Rock", "character": "Chaka", "id": 2632, "credit_id": "52fe434bc3a36847f8049431", "cast_id": 31, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 22}, {"name": "Joe Quesada", "character": "Pizza Delivery Guy", "id": 1187909, "credit_id": "52fe434bc3a36847f8049435", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Matt Damon", "character": "Himself", "id": 1892, "credit_id": "53b7be1cc3a3685ec10039c1", "cast_id": 33, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 24}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f80493ab", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.3, "runtime": 104}, "2295": {"poster_path": "/luPEGTlN8egktVeomdf2nEap5SP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26888376, "overview": "A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.", "video": false, "id": 2295, "genres": [{"id": 35, "name": "Comedy"}], "title": "Clerks II", "tagline": "With No Power Comes No Responsibility", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0424345", "adult": false, "backdrop_path": "/dIF8r4OUVaRfy6O7mfIJjufEC9j.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2006-05-25", "popularity": 0.638707169394916, "original_title": "Clerks II", "budget": 5000000, "cast": [{"name": "Brian O'Halloran", "character": "Dante", "id": 23629, "credit_id": "52fe434bc3a36847f8049493", "cast_id": 9, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 0}, {"name": "Jeff Anderson", "character": "Randall", "id": 23630, "credit_id": "52fe434bc3a36847f8049497", "cast_id": 10, "profile_path": "/vjt5WhpJAx0jxvmiGc5PAOBzzb7.jpg", "order": 1}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe434bc3a36847f804949b", "cast_id": 11, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 2}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe434bc3a36847f804949f", "cast_id": 12, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 3}, {"name": "Jennifer Schwalbach Smith", "character": "Emma", "id": 23658, "credit_id": "52fe434bc3a36847f80494a3", "cast_id": 13, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 4}, {"name": "Ben Affleck", "character": "Gawking Guy", "id": 880, "credit_id": "52fe434bc3a36847f80494a7", "cast_id": 14, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 5}, {"name": "Trevor Fehrman", "character": "Elias", "id": 23740, "credit_id": "52fe434bc3a36847f80494ab", "cast_id": 15, "profile_path": "/eRTV4HgLad7InVpVeBKYekeCasv.jpg", "order": 6}, {"name": "Rosario Dawson", "character": "Becky", "id": 5916, "credit_id": "52fe434bc3a36847f80494af", "cast_id": 16, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 7}, {"name": "Scott Mosier", "character": "Concerned Father", "id": 20503, "credit_id": "52fe434bc3a36847f80494b3", "cast_id": 17, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 8}, {"name": "Jason Lee", "character": "Lance Dowds", "id": 11662, "credit_id": "52fe434bc3a36847f80494b7", "cast_id": 18, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 9}, {"name": "Ethan Suplee", "character": "Teen #2", "id": 824, "credit_id": "52fe434bc3a36847f80494bb", "cast_id": 19, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 10}, {"name": "Jake Richardson", "character": "Teen #1", "id": 177165, "credit_id": "52fe434bc3a36847f80494bf", "cast_id": 20, "profile_path": "/e3Aldv2LbCsf2oFMTb0Kej9X7Pu.jpg", "order": 11}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f8049465", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.8, "runtime": 97}, "10488": {"poster_path": "/aK9pn7ivx4P72E5yYZ69A4sChVc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100074624, "overview": "A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.", "video": false, "id": 10488, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Nim's Island", "tagline": "Your adventure starts here.", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iRh0E4dR2m7ZiJQ9u58r8jPV0WU.jpg", "poster_path": "/rRPq295zZflnjp9Y8uhJppJBayQ.jpg", "id": 232844, "name": "Nim's Island Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0410377", "adult": false, "backdrop_path": "/hVzII4DQU9X9TVhXwQoLgeweZV9.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}], "release_date": "2008-04-03", "popularity": 0.918762240081398, "original_title": "Nim's Island", "budget": 37000000, "cast": [{"name": "Abigail Breslin", "character": "Nim Rusoe", "id": 17140, "credit_id": "52fe43799251416c75011cad", "cast_id": 1, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Alexandra Rover", "id": 1038, "credit_id": "52fe43799251416c75011cb1", "cast_id": 2, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Gerard Butler", "character": "Jack Rusoe / Alex Rover", "id": 17276, "credit_id": "52fe43799251416c75011cb5", "cast_id": 3, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 2}, {"name": "Michael Carman", "character": "Captain", "id": 68321, "credit_id": "52fe43799251416c75011cd1", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Mark Brady", "character": "Purser", "id": 985532, "credit_id": "52fe43799251416c75011ced", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Anthony Simcoe", "character": "First Mate", "id": 26056, "credit_id": "52fe43799251416c75011cf1", "cast_id": 15, "profile_path": "/cD188ImayMqPNYqj960fjPF8D4J.jpg", "order": 5}, {"name": "Christopher James Baker", "character": "Ensign", "id": 59118, "credit_id": "52fe43799251416c75011cf5", "cast_id": 16, "profile_path": "/m5MnqQQtgDPUmoPX9Zi0AC7hwzz.jpg", "order": 6}, {"name": "Maddison Joyce", "character": "Edmund", "id": 1077896, "credit_id": "52fe43799251416c75011cf9", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Peter Callan", "character": "Edmund's Father", "id": 78567, "credit_id": "52fe43799251416c75011cfd", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Rhonda Doyle", "character": "Edmund's Mother", "id": 207938, "credit_id": "52fe43799251416c75011d01", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Russell Butler", "character": "Old Fisherman", "id": 1077897, "credit_id": "52fe43799251416c75011d05", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Colin Gibson", "character": "Cruise Director", "id": 939990, "credit_id": "52fe43799251416c75011d09", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bryan Probets", "character": "Australian Tourist #1", "id": 1014587, "credit_id": "52fe43799251416c75011d0d", "cast_id": 22, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 12}, {"name": "Andrew Nason", "character": "Australian Tourist #2", "id": 1077898, "credit_id": "52fe43799251416c75011d11", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Dorothy Thorsen", "character": "Blue-Haired Woman", "id": 1077899, "credit_id": "52fe43799251416c75011d15", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Penny Everingham", "character": "Older Woman Tourist", "id": 1077900, "credit_id": "52fe43799251416c75011d19", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Tony Bellette", "character": "Older Man Tourist", "id": 109545, "credit_id": "52fe43799251416c75011d1d", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Jeff Dornan", "character": "Taxi Driver", "id": 1077901, "credit_id": "52fe43799251416c75011d21", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Jay Laga'aia", "character": "Helicopter Pilot", "id": 33182, "credit_id": "52fe43799251416c75011d25", "cast_id": 28, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 18}], "directors": [{"name": "Jennifer Flackett", "department": "Directing", "job": "Director", "credit_id": "52fe43799251416c75011cbb", "profile_path": null, "id": 66218}, {"name": "Mark Levin", "department": "Directing", "job": "Director", "credit_id": "52fe43799251416c75011cc1", "profile_path": null, "id": 66219}], "vote_average": 5.5, "runtime": 96}, "76025": {"poster_path": "/9RWPh1e9bxTJu46ln0tI61hMmlO.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 17693675, "overview": "In New York City, Brandon's carefully cultivated private life -- which allows him to indulge his sexual addiction -- is disrupted when his sister Cissy arrives unannounced for an indefinite stay.", "video": false, "id": 76025, "genres": [{"id": 18, "name": "Drama"}], "title": "Shame", "tagline": "", "vote_count": 197, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1723811", "adult": false, "backdrop_path": "/8RMuOjf52e4BDDojLQxkcuMlS2k.jpg", "production_companies": [{"name": "See-Saw Films", "id": 7217}], "release_date": "2011-12-02", "popularity": 0.749888840561339, "original_title": "Shame", "budget": 6500000, "cast": [{"name": "Carey Mulligan", "character": "Sissy", "id": 36662, "credit_id": "52fe4923c3a368484e11c185", "cast_id": 1, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Brandon", "id": 17288, "credit_id": "52fe4923c3a368484e11c189", "cast_id": 2, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "James Badge Dale", "character": "David", "id": 18473, "credit_id": "52fe4923c3a368484e11c18d", "cast_id": 3, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 2}, {"name": "Hannah Ware", "character": "Samantha", "id": 577478, "credit_id": "52fe4923c3a368484e11c191", "cast_id": 4, "profile_path": "/4pMeRW68hxn9LiTDfEzfR2AuIhC.jpg", "order": 3}, {"name": "Nicole Beharie", "character": "Marianne", "id": 87243, "credit_id": "52fe4924c3a368484e11c1a7", "cast_id": 10, "profile_path": "/9HiTyj5xHy6uLnbYE1TngB2ausz.jpg", "order": 4}, {"name": "Alex Manette", "character": "Steven", "id": 172150, "credit_id": "52fe4924c3a368484e11c1ab", "cast_id": 11, "profile_path": "/hnIIHAlPyqFMGbJCy0nY5xw7DyX.jpg", "order": 5}, {"name": "Elizabeth Masucci", "character": "Elizabeth", "id": 1030329, "credit_id": "52fe4924c3a368484e11c1af", "cast_id": 12, "profile_path": "/uaqBGqXtAZdFLsSFNJoEI8N2Xhf.jpg", "order": 6}, {"name": "Marta Milans", "character": "cocktail waitress", "id": 1181306, "credit_id": "52fe4924c3a368484e11c1b3", "cast_id": 13, "profile_path": "/4UnnZvfWLoZTdjdPa8BvYXV4As.jpg", "order": 7}], "directors": [{"name": "Steve McQueen", "department": "Directing", "job": "Director", "credit_id": "52fe4924c3a368484e11c19d", "profile_path": "/6w2fWkuhYQuv18OQi8cmSIq8srN.jpg", "id": 72757}], "vote_average": 7.1, "runtime": 101}, "2300": {"poster_path": "/9T9ucCk6wO0crRBUIkBJMRAVcKp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230000000, "overview": "Michael Jordan agrees to help the Looney Tunes play a basketball game against alien slavers to determine their freedom.", "video": false, "id": 2300, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Space Jam", "tagline": "Get ready to jam.", "vote_count": 275, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117705", "adult": false, "backdrop_path": "/kBTdPNTAzagAY6UiwY957KCDGuu.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Bros. Entertainment", "id": 17}], "release_date": "1996-11-15", "popularity": 0.778260445788321, "original_title": "Space Jam", "budget": 80000000, "cast": [{"name": "Michael Jordan", "character": "Himself", "id": 23678, "credit_id": "52fe434bc3a36847f80496c9", "cast_id": 2, "profile_path": "/7y16frD57Ztzk2mY4JeI2pQQhan.jpg", "order": 0}, {"name": "Wayne Knight", "character": "Stan Podolak", "id": 4201, "credit_id": "52fe434bc3a36847f80496cd", "cast_id": 3, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 1}, {"name": "Billy West", "character": "Bugs Bunny/Elmer Fudd (voice)", "id": 23679, "credit_id": "52fe434bc3a36847f80496d1", "cast_id": 4, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 2}, {"name": "Dee Bradley Baker", "character": "Daffy Duck/Tazmanian Devil/Bull (voice)", "id": 23680, "credit_id": "52fe434bc3a36847f80496d5", "cast_id": 5, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 3}, {"name": "Theresa Randle", "character": "Juanita Jordan", "id": 4604, "credit_id": "52fe434bc3a36847f80496d9", "cast_id": 6, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 4}, {"name": "Danny DeVito", "character": "Mr. Swackhammer (voice)", "id": 518, "credit_id": "52fe434bc3a36847f80496dd", "cast_id": 7, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 5}, {"name": "Brandon Hammond", "character": "Michael Jordan (at 10)", "id": 23681, "credit_id": "52fe434bc3a36847f80496e1", "cast_id": 8, "profile_path": "/ooljlVi5IYf2w4Px3jqc8OQdjjS.jpg", "order": 6}, {"name": "Larry Bird", "character": "Himself", "id": 23682, "credit_id": "52fe434bc3a36847f80496e5", "cast_id": 9, "profile_path": "/1KRnQVsXS8mz4tHHWD1yPAQBXq2.jpg", "order": 7}, {"name": "Bill Murray", "character": "Himself", "id": 1532, "credit_id": "52fe434bc3a36847f80496e9", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 8}, {"name": "Charles Barkley", "character": "Himself", "id": 1211812, "credit_id": "5361746b0e0a2649bf0004e6", "cast_id": 37, "profile_path": "/mqHWhTtrja9vI8kfI6z7tCq5gB1.jpg", "order": 9}, {"name": "Patrick Ewing", "character": "Himself", "id": 1231141, "credit_id": "53614c6cc3a368397e0001d2", "cast_id": 19, "profile_path": "/aaXM8PuixEHNTLmvBQJLH8vV1SV.jpg", "order": 11}, {"name": "Tyrone Bogues", "character": "Himself", "id": 1232432, "credit_id": "53614e44c3a36839650001b4", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Larry Johnson", "character": "Himself", "id": 1225517, "credit_id": "53614eb1c3a36839650001bc", "cast_id": 21, "profile_path": "/gbfwZWitnSrcQwkAughr5Ji4iT5.jpg", "order": 13}, {"name": "Shawn Bradley", "character": "Himself", "id": 1234833, "credit_id": "5361565a0e0a2649b800027a", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Ahmad Rashad", "character": "Himself", "id": 1197748, "credit_id": "5361566c0e0a2649a6000277", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Del Harris", "character": "Himself", "id": 1251369, "credit_id": "536156930e0a2649b800027f", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Vlade Divac", "character": "Himself", "id": 193304, "credit_id": "536156a50e0a2649a90002a3", "cast_id": 25, "profile_path": "/ivflYHUbWXKyDe5B9su5HSidMA9.jpg", "order": 17}, {"name": "Cedric Ceballos", "character": "Himself", "id": 1230823, "credit_id": "536156d20e0a2649b8000282", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Jim Rome", "character": "Himself", "id": 1215304, "credit_id": "536156e10e0a2649ad000272", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Paul Westphal", "character": "Himself", "id": 1315402, "credit_id": "536156ee0e0a2649b8000285", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Danny Ainge", "character": "Himself", "id": 1315446, "credit_id": "536156fe0e0a2649ad000275", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Alonzo Mourning", "character": "Himself", "id": 180625, "credit_id": "5361571f0e0a2649b8000287", "cast_id": 30, "profile_path": "/ukR2lS5Z8avrJnN3Kua1ks3Habf.jpg", "order": 22}, {"name": "A.C. Green", "character": "Himself", "id": 1315447, "credit_id": "5361572a0e0a2649bf000295", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Charles Oakley", "character": "Himself", "id": 1315403, "credit_id": "536157540e0a2649bf00029b", "cast_id": 32, "profile_path": "/l35FQsV529lOhDFvMGk8aJ82AV9.jpg", "order": 24}, {"name": "Derek Harper", "character": "Himself", "id": 1315448, "credit_id": "536157680e0a2649a90002b5", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Jeff Malone", "character": "Himself", "id": 1315449, "credit_id": "536157780e0a2649a6000287", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Anthony Miller", "character": "Himself", "id": 1315450, "credit_id": "536157ba0e0a2649bb0002d3", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Sharone Wright", "character": "Himself", "id": 1315451, "credit_id": "536157cb0e0a2649bf0002a7", "cast_id": 36, "profile_path": null, "order": 28}], "directors": [{"name": "Joe Pytka", "department": "Directing", "job": "Director", "credit_id": "52fe434bc3a36847f80496c5", "profile_path": "/c46Ah1KxlfC4W8mHVrGDsJ7dMPJ.jpg", "id": 23677}], "vote_average": 6.3, "runtime": 88}, "10495": {"poster_path": "/2Z0EJl11kOSPMMvHqZ4r5Csh7Ph.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kreese, his life in tatters after his karate schools was defeated by Daniel and Mr Miyagi, visits Terry, a friend from Vietnam. Terry is a ruthless business man and a martial arts expert, and he vows to help Kresse take revenge on Daniel and Mr Miyagi.", "video": false, "id": 10495, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid, Part III", "tagline": "First it was teacher to student. Then it was father to son. Now, it's man to man.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sq4c328WCIFIVD7B9ZGFRwDbUTH.jpg", "poster_path": "/o6h2F0C5eZOy50Q76fNYzc9mvvw.jpg", "id": 8580, "name": "The Karate Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097647", "adult": false, "backdrop_path": "/dDNWXkbRLOgah7sVh1aedbjMRB5.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1989-06-29", "popularity": 0.374853305229742, "original_title": "The Karate Kid, Part III", "budget": 0, "cast": [{"name": "Ralph Macchio", "character": "Daniel LaRusso", "id": 2877, "credit_id": "52fe437b9251416c75012081", "cast_id": 1, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 0}, {"name": "Pat Morita", "character": "Mr. Keisuke Miyagi", "id": 23915, "credit_id": "52fe437b9251416c75012085", "cast_id": 2, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 1}, {"name": "Martin Kove", "character": "John Kreese", "id": 56117, "credit_id": "52fe437b9251416c75012089", "cast_id": 3, "profile_path": "/rQtB405GPPgWNL2EUL9mOx4FTb9.jpg", "order": 2}, {"name": "Thomas Ian Griffith", "character": "Terry Silver", "id": 60705, "credit_id": "52fe437b9251416c7501208d", "cast_id": 4, "profile_path": "/eBXSCzKTo9EuNHbKWQqrAhETaSm.jpg", "order": 3}, {"name": "Robyn Lively", "character": "Jessica Andrews", "id": 15905, "credit_id": "52fe437b9251416c750120b5", "cast_id": 11, "profile_path": "/gxXVCbEXPG0Emzx28rVk5eBpAYn.jpg", "order": 4}], "directors": [{"name": "John G. Avildsen", "department": "Directing", "job": "Director", "credit_id": "52fe437b9251416c75012099", "profile_path": "/siyDKiK6rHXoU94pnLaE6jFe5dk.jpg", "id": 16513}], "vote_average": 5.8, "runtime": 112}, "7211": {"poster_path": "/2HnyNUcQ9B5OJVJBIbidb0F9gT1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47642963, "overview": "Advice columnist Dan Burns (Carell) is an expert on relationships, but somehow struggles to succeed as a brother, a son and a single parent to three precocious daughters. Things get even more complicated when Dan finds out that the woman he falls in love with is actually his brother's new girlfriend.", "video": false, "id": 7211, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Dan in Real Life", "tagline": "Something's happening to Dan. It's confusing. It's awkward. It's family.", "vote_count": 74, "homepage": "http://daninreallife.movies.go.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480242", "adult": false, "backdrop_path": "/eOwGABfsp5rZG5HUMh2Ggbk9MM4.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Focus Features", "id": 10146}, {"name": "Jon Shestack Productions", "id": 10991}], "release_date": "2007-10-26", "popularity": 0.482260369830737, "original_title": "Dan in Real Life", "budget": 25000000, "cast": [{"name": "Steve Carell", "character": "Dan Burns", "id": 4495, "credit_id": "52fe4473c3a36847f8096ba5", "cast_id": 13, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Juliette Binoche", "character": "Marie", "id": 1137, "credit_id": "52fe4473c3a36847f8096ba9", "cast_id": 14, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 1}, {"name": "Dane Cook", "character": "Mitch", "id": 31837, "credit_id": "52fe4473c3a36847f8096bad", "cast_id": 15, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 2}, {"name": "Dianne Wiest", "character": "Nana", "id": 1902, "credit_id": "52fe4473c3a36847f8096bb1", "cast_id": 16, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 3}, {"name": "John Mahoney", "character": "Poppy", "id": 4251, "credit_id": "52fe4473c3a36847f8096bb5", "cast_id": 17, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 4}, {"name": "Emily Blunt", "character": "Ruthie Draper", "id": 5081, "credit_id": "52fe4473c3a36847f8096bb9", "cast_id": 18, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 5}, {"name": "Alison Pill", "character": "Jane", "id": 17486, "credit_id": "52fe4473c3a36847f8096bbd", "cast_id": 19, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 6}, {"name": "Britt Robertson", "character": "Cara", "id": 52018, "credit_id": "52fe4473c3a36847f8096bc1", "cast_id": 20, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 7}, {"name": "Marlene Lawston", "character": "Lilly", "id": 52019, "credit_id": "52fe4473c3a36847f8096bc5", "cast_id": 21, "profile_path": "/pYRmhahQG7dWiAc9EyhaPD92oTH.jpg", "order": 8}, {"name": "Norbert Leo Butz", "character": "Clay", "id": 52020, "credit_id": "52fe4473c3a36847f8096bc9", "cast_id": 22, "profile_path": "/yYonYgBHg9ocOWWNJnQaEtmMhrq.jpg", "order": 9}, {"name": "Amy Ryan", "character": "Eileen", "id": 39388, "credit_id": "52fe4473c3a36847f8096bcd", "cast_id": 23, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 10}, {"name": "Jessica Hecht", "character": "Amy", "id": 14984, "credit_id": "52fe4473c3a36847f8096bd1", "cast_id": 24, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 11}, {"name": "Frank Wood", "character": "Howard", "id": 52021, "credit_id": "52fe4473c3a36847f8096bd5", "cast_id": 25, "profile_path": "/7g06FytDzIpbRTw7ONlB2ofara5.jpg", "order": 12}, {"name": "CJ Adams", "character": "Elliot (as Cameron 'CJ' Adams)", "id": 1107800, "credit_id": "52fe4473c3a36847f8096bdf", "cast_id": 27, "profile_path": "/czZGg0TvKY38w0cd7XXqvTIqXy0.jpg", "order": 13}], "directors": [{"name": "Peter Hedges", "department": "Directing", "job": "Director", "credit_id": "52fe4473c3a36847f8096b65", "profile_path": "/sj2jd4t9nDYol6oNdupbQE2VVaC.jpg", "id": 3290}], "vote_average": 6.4, "runtime": 98}, "10501": {"poster_path": "/lQnNNjT4yW3i2rmQhGibiPBnc6e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50802661, "overview": "After a failed swindle, two con-men end up with a map to El Dorado, the fabled \"city of gold,\" and an unintended trip to the New World. Much to their surprise, the map does lead the pair to the mythical city, where the startled inhabitants promptly begin to worship them as gods. The only question is, do they take the worshipful natives for all they're worth, or is there a bit more to El Dorado than riches?", "video": false, "id": 10501, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Road to El Dorado", "tagline": "They came for the gold... they stayed for the adventure.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "eu", "name": "euskera"}, {"iso_639_1": "fi", "name": "suomi"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138749", "adult": false, "backdrop_path": "/j8XMblbxKceZqTWkvfR04QK3EHA.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2000-03-31", "popularity": 1.26330383574188, "original_title": "The Road to El Dorado", "budget": 95000000, "cast": [{"name": "Kenneth Branagh", "character": "Miguel", "id": 11181, "credit_id": "52fe437c9251416c750122cb", "cast_id": 1, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 0}, {"name": "Kevin Kline", "character": "Tulio", "id": 8945, "credit_id": "52fe437c9251416c750122cf", "cast_id": 2, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 1}, {"name": "Rosie Perez", "character": "Chel", "id": 4810, "credit_id": "52fe437c9251416c750122d3", "cast_id": 3, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 2}, {"name": "Armand Assante", "character": "Tzekel-Kan", "id": 23346, "credit_id": "52fe437c9251416c750122d7", "cast_id": 4, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 3}], "directors": [{"name": "Don Michael Paul", "department": "Directing", "job": "Director", "credit_id": "52fe437c9251416c750122dd", "profile_path": "/z8wOHvKYEAuR2s5q0JZRkt5Blu5.jpg", "id": 27005}, {"name": "Bibo Bergeron", "department": "Directing", "job": "Director", "credit_id": "52fe437c9251416c75012301", "profile_path": null, "id": 65629}], "vote_average": 6.6, "runtime": 89}, "2310": {"poster_path": "/j90lLkvlcPNL6VVoLGQ0yzPUfJV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 195735876, "overview": "An epic tale concerning a 6th-century Scandinavian warrior named Beowulf and his mission to slay the manlike ogre Grendel, a descendant of Cain.", "video": false, "id": 2310, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Beowulf", "tagline": "Evil breeds pain.", "vote_count": 245, "homepage": "http://www.beowulfmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0442933", "adult": false, "backdrop_path": "/lw9OluUfC72V3jmUCkq7TXfaPfv.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Shangri-La Entertainment", "id": 2265}, {"name": "ImageMovers", "id": 11395}], "release_date": "2007-11-05", "popularity": 0.743847209742831, "original_title": "Beowulf", "budget": 70000000, "cast": [{"name": "Ray Winstone", "character": "Beowulf / Golden Man / Dragon", "id": 5538, "credit_id": "52fe434cc3a36847f8049c75", "cast_id": 24, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Grendel's Mother", "id": 11701, "credit_id": "52fe434cc3a36847f8049c61", "cast_id": 19, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Anthony Hopkins", "character": "Hrothgar", "id": 4173, "credit_id": "52fe434cc3a36847f8049c65", "cast_id": 20, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 2}, {"name": "Robin Wright", "character": "Wealthow", "id": 32, "credit_id": "52fe434cc3a36847f8049c71", "cast_id": 23, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 3}, {"name": "John Malkovich", "character": "Unferth", "id": 6949, "credit_id": "52fe434cc3a36847f8049c79", "cast_id": 25, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "Wiglaf", "id": 2039, "credit_id": "52fe434cc3a36847f8049c69", "cast_id": 21, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "Crispin Glover", "character": "Grendel", "id": 1064, "credit_id": "52fe434cc3a36847f8049c6d", "cast_id": 22, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 6}, {"name": "Alison Lohman", "character": "Ursula", "id": 8291, "credit_id": "52fe434cc3a36847f8049c7d", "cast_id": 26, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 7}, {"name": "Greg Ellis", "character": "Garmund", "id": 4031, "credit_id": "52fe434cc3a36847f8049c81", "cast_id": 27, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 8}, {"name": "Sebastian Roch\u00e9", "character": "Wulfgar", "id": 23789, "credit_id": "52fe434cc3a36847f8049c85", "cast_id": 28, "profile_path": "/bOSLShSCLhZ4VtbgInX6SjhqlRb.jpg", "order": 9}, {"name": "Dominic Keating", "character": "Old Cain", "id": 23790, "credit_id": "52fe434cc3a36847f8049c89", "cast_id": 29, "profile_path": "/20lcxmytSdnm0skx63oYKdW3bFN.jpg", "order": 10}, {"name": "Charlotte Salt", "character": "Estrith", "id": 42216, "credit_id": "52fe434cc3a36847f8049c8d", "cast_id": 30, "profile_path": "/hPCsJwahhJ8elYzM1f41DMUXNKV.jpg", "order": 11}, {"name": "Rik Young", "character": "Eofor", "id": 42217, "credit_id": "52fe434cc3a36847f8049c91", "cast_id": 31, "profile_path": "/1m9t6jEdUV9O7jXxYXymYmdEoVk.jpg", "order": 12}, {"name": "Sonje Fortag", "character": "Gitte", "id": 42284, "credit_id": "52fe434dc3a36847f8049d2b", "cast_id": 60, "profile_path": "/7fNJeQK9nXt5EoxqaZkuni71S9d.jpg", "order": 13}, {"name": "Keith Kraft", "character": "Additional Adult Performer (uncredited)", "id": 1429705, "credit_id": "54e8a4c2c3a36836dc001f0c", "cast_id": 77, "profile_path": null, "order": 14}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe434cc3a36847f8049bfd", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 5.5, "runtime": 115}, "2312": {"poster_path": "/bV18YaqIQh0aeOWnfkOvD0iqfUJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man named Farmer sets out to rescue his kidnapped wife and avenge the death of his son -- two acts committed by the Krugs, a race of animal-warriors who are controlled by the evil Gallian.", "video": false, "id": 2312, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "In the Name of the King: A Dungeon Siege Tale", "tagline": "Rise and fight", "vote_count": 65, "homepage": "http://www.inthenameoftheking.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/gBVOsxHbidWHHCOmfhrR5ghkmYn.jpg", "id": 122922, "name": "In the Name of the King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0460780", "adult": false, "backdrop_path": "/u14b6vdFieOm9OXGa49c7n5gmQS.jpg", "production_companies": [{"name": "Boll Kino Beteiligungs GmbH & Co. KG", "id": 1062}, {"name": "Brightlight Pictures", "id": 1063}, {"name": "Herold Productions", "id": 1064}], "release_date": "2007-11-29", "popularity": 0.726612863107373, "original_title": "In the Name of the King: A Dungeon Siege Tale", "budget": 60000000, "cast": [{"name": "Jason Statham", "character": "Farmer", "id": 976, "credit_id": "52fe434dc3a36847f8049e1d", "cast_id": 13, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "John Rhys-Davies", "character": "Merick", "id": 655, "credit_id": "52fe434dc3a36847f8049e21", "cast_id": 14, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Gallian", "id": 11477, "credit_id": "52fe434dc3a36847f8049e25", "cast_id": 15, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Leelee Sobieski", "character": "Muriella", "id": 22290, "credit_id": "52fe434dc3a36847f8049e29", "cast_id": 17, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 3}, {"name": "Burt Reynolds", "character": "King Konreid", "id": 16475, "credit_id": "52fe434dc3a36847f8049e2d", "cast_id": 18, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 4}, {"name": "Ron Perlman", "character": "Norick", "id": 2372, "credit_id": "52fe434dc3a36847f8049e31", "cast_id": 19, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 5}, {"name": "Brian J. White", "character": "Tarish", "id": 31137, "credit_id": "52fe434dc3a36847f8049e35", "cast_id": 21, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 6}, {"name": "William Sanderson", "character": "Bastian", "id": 590, "credit_id": "52fe434dc3a36847f8049e39", "cast_id": 22, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 7}, {"name": "Kristanna Loken", "character": "Elora", "id": 7218, "credit_id": "52fe434dc3a36847f8049e7f", "cast_id": 35, "profile_path": "/rxeYONGXlnNYOn50KjjiwgLxiGX.jpg", "order": 8}, {"name": "Matthew Lillard", "character": "Duke Fallow", "id": 26457, "credit_id": "52fe434dc3a36847f8049e89", "cast_id": 37, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 9}, {"name": "Claire Forlani", "character": "Solana", "id": 4174, "credit_id": "52fe434dc3a36847f8049e8d", "cast_id": 38, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 10}, {"name": "Mike Dopud", "character": "General Backler", "id": 64674, "credit_id": "52fe434dc3a36847f8049e97", "cast_id": 40, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 11}, {"name": "Tania Saulnier", "character": "Talwyn", "id": 59244, "credit_id": "52fe434dc3a36847f8049e9b", "cast_id": 41, "profile_path": "/bEMuffxifJMZkcAmZ2J9NbHehJu.jpg", "order": 12}, {"name": "Gabrielle Rose", "character": "Delinda", "id": 58804, "credit_id": "52fe434dc3a36847f8049e9f", "cast_id": 42, "profile_path": "/wHJfGv13nIsph7Oam0Mf3boxDHK.jpg", "order": 13}, {"name": "Terence Kelly", "character": "Trumaine", "id": 27112, "credit_id": "52fe434dc3a36847f8049ea3", "cast_id": 43, "profile_path": null, "order": 14}, {"name": "Carrie Fleming", "character": "Crying Woman", "id": 58908, "credit_id": "52fe434dc3a36847f8049ead", "cast_id": 45, "profile_path": "/chrDx14YRApEwzD05kdWSjpZSIE.jpg", "order": 15}, {"name": "Eva Padberg", "character": "Handmaiden", "id": 998517, "credit_id": "5307869f925141111100013b", "cast_id": 46, "profile_path": "/uThpUVZQibPlrLtkSETUPD2iMd2.jpg", "order": 16}], "directors": [{"name": "Uwe Boll", "department": "Directing", "job": "Director", "credit_id": "52fe434dc3a36847f8049dd7", "profile_path": "/8i6o27RrRGRR5iAcLSOBt06fcM7.jpg", "id": 23799}], "vote_average": 4.1, "runtime": 127}, "2313": {"poster_path": "/dQxtI83slU5fAq6WZjEmIDAtYvM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A career driven professional from Manhattan is wooed by a young painter, who also happens to be the son of her psychoanalyst.", "video": false, "id": 2313, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Prime", "tagline": "A Therapeutic New Comedy", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387514", "adult": false, "backdrop_path": "/j6MfYUiDrtJ54f0FqD4xcHr8fZO.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Team Todd", "id": 598}, {"name": "Prime Film Productions LLC", "id": 1046}, {"name": "Younger Than You", "id": 1047}], "release_date": "2005-09-21", "popularity": 0.504277404580122, "original_title": "Prime", "budget": 0, "cast": [{"name": "Uma Thurman", "character": "Rafi Gardet", "id": 139, "credit_id": "52fe434dc3a36847f8049ed5", "cast_id": 1, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 0}, {"name": "Bryan Greenberg", "character": "David Bloomberg", "id": 23821, "credit_id": "52fe434dc3a36847f8049ed9", "cast_id": 2, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 1}, {"name": "Meryl Streep", "character": "Lisa Metzger", "id": 5064, "credit_id": "52fe434dc3a36847f8049edd", "cast_id": 3, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 2}, {"name": "Annie Parisse", "character": "Catherine", "id": 24291, "credit_id": "52fe434dc3a36847f8049ee1", "cast_id": 4, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 3}, {"name": "Zak Orth", "character": "Randall", "id": 6212, "credit_id": "52fe434dc3a36847f8049ee5", "cast_id": 5, "profile_path": "/rKupoahQ3pgeVVXS8EWd1WSnKEO.jpg", "order": 4}, {"name": "Jerry Adler", "character": "Sam", "id": 24292, "credit_id": "52fe434dc3a36847f8049ee9", "cast_id": 6, "profile_path": "/3oS2KYKYUxo40nNFv08asY9mNQA.jpg", "order": 5}, {"name": "Doris Belack", "character": "Blanch", "id": 24293, "credit_id": "52fe434dc3a36847f8049eed", "cast_id": 7, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 6}, {"name": "Jon Abrahams", "character": "Morris", "id": 17866, "credit_id": "52fe434dc3a36847f8049ef1", "cast_id": 8, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 7}, {"name": "Mini Anden", "character": "Sue", "id": 142953, "credit_id": "52fe434dc3a36847f8049f19", "cast_id": 15, "profile_path": "/m92JfMnAl6KC5d0ho3r1lFpABQJ.jpg", "order": 8}, {"name": "Ato Essandoh", "character": "Damien", "id": 5377, "credit_id": "52fe434dc3a36847f8049f1d", "cast_id": 16, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 9}, {"name": "Sebastian Sozzi", "character": "Friend #1", "id": 53066, "credit_id": "52fe434dc3a36847f8049f21", "cast_id": 17, "profile_path": "/6XiSiPEhZjatykjZnNusp2u5wKF.jpg", "order": 10}], "directors": [{"name": "Ben Younger", "department": "Directing", "job": "Director", "credit_id": "52fe434dc3a36847f8049ef7", "profile_path": "/7KzvNpsJT4qHV4owEMBvnMMfIdH.jpg", "id": 24294}], "vote_average": 5.6, "runtime": 102}, "2320": {"poster_path": "/wmgkFuEr8bHRAgs1HS5U46Rzo0I.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68000000, "overview": "Terrorists hijack a 747 inbound to Washington D.C., demanding the the release of their imprisoned leader. Intelligence expert David Grant (Kurt Russell) suspects another reason and he is soon the reluctant member of a special assault team that is assigned to intercept the plane and hijackers.", "video": false, "id": 2320, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Executive Decision", "tagline": "Fasten your seat belts", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116253", "adult": false, "backdrop_path": "/6WIG9ozIHNtHCkpgGl2edPjASel.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1996-03-15", "popularity": 0.582108756895521, "original_title": "Executive Decision", "budget": 55000000, "cast": [{"name": "Kurt Russell", "character": "Dr. David Grant", "id": 6856, "credit_id": "52fe434ec3a36847f804a20d", "cast_id": 2, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Steven Seagal", "character": "Lt. Colonel Austin Travis", "id": 23880, "credit_id": "52fe434ec3a36847f804a211", "cast_id": 3, "profile_path": "/f8OFR4h3ngyFesiudCygrNFdsCE.jpg", "order": 1}, {"name": "Halle Berry", "character": "Jean, Flight Attendant", "id": 4587, "credit_id": "52fe434ec3a36847f804a215", "cast_id": 4, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 2}, {"name": "John Leguizamo", "character": "Captain Rat", "id": 5723, "credit_id": "52fe434ec3a36847f804a261", "cast_id": 17, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 3}, {"name": "Joe Morton", "character": "Sergeant 'Cappy' Matheny", "id": 3977, "credit_id": "52fe434ec3a36847f804a265", "cast_id": 18, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 4}, {"name": "BD Wong", "character": "Sergeant Louie", "id": 14592, "credit_id": "52fe434ec3a36847f804a269", "cast_id": 19, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 5}, {"name": "Whip Hubley", "character": "Sergeant Baker", "id": 11089, "credit_id": "52fe434ec3a36847f804a26d", "cast_id": 21, "profile_path": "/bk8Z3dtqRB0N4hGodG5zY0yiu3a.jpg", "order": 6}, {"name": "Mary Ellen Trainor", "character": "Allison, Flight Attendant", "id": 23967, "credit_id": "52fe434ec3a36847f804a271", "cast_id": 22, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 7}, {"name": "Oliver Platt", "character": "Dennis Cahill", "id": 17485, "credit_id": "52fe434ec3a36847f804a275", "cast_id": 23, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 8}, {"name": "Len Cariou", "character": "Secretary of Defense Charles White", "id": 41247, "credit_id": "52fe434ec3a36847f804a279", "cast_id": 24, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 9}, {"name": "Andreas Katsulas", "character": "El Sayed Jaffa", "id": 43773, "credit_id": "52fe434ec3a36847f804a27d", "cast_id": 25, "profile_path": "/z1bbvx6O7VWGrtxCFugo5aCyqMS.jpg", "order": 10}, {"name": "Marla Maples", "character": "Nancy, Flight Attendant", "id": 153884, "credit_id": "52fe434ec3a36847f804a281", "cast_id": 26, "profile_path": "/7ST8hjZvX85QGRUuRAmkHiQL99y.jpg", "order": 11}, {"name": "J. T. Walsh", "character": "Senator Mavros", "id": 22131, "credit_id": "52fe434ec3a36847f804a285", "cast_id": 27, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 12}, {"name": "Ingo Neuhaus", "character": "Doc", "id": 149471, "credit_id": "52fe434ec3a36847f804a289", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "William James Jones", "character": "Catman", "id": 974432, "credit_id": "52fe434ec3a36847f804a28d", "cast_id": 29, "profile_path": null, "order": 14}], "directors": [{"name": "Stuart Baird", "department": "Directing", "job": "Director", "credit_id": "52fe434ec3a36847f804a21b", "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "id": 2523}], "vote_average": 5.1, "runtime": 133}, "2322": {"poster_path": "/pAGKtPF8nMiJq4lsINOYJWvMS2D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105232691, "overview": "When shadowy U.S. intelligence agents blackmail a reformed computer hacker and his eccentric team of security experts into stealing a code-breaking \"black box\" from a Soviet-funded genius, they uncover a bigger conspiracy. Now, he and his \"sneakers\" must save themselves and the world economy by retrieving the box back from their blackmailers.", "video": false, "id": 2322, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sneakers", "tagline": "We could tell you what it's about. But then, of course, we'd have to kill you.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105435", "adult": false, "backdrop_path": "/6PY7nlksGTxjhgJRCHm6De1hSXs.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1992-09-09", "popularity": 0.703406373624171, "original_title": "Sneakers", "budget": 0, "cast": [{"name": "Robert Redford", "character": "Martin 'Marty' Bishop", "id": 4135, "credit_id": "52fe434ec3a36847f804a435", "cast_id": 1, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Sidney Poitier", "character": "Donald Crease", "id": 16897, "credit_id": "52fe434ec3a36847f804a439", "cast_id": 2, "profile_path": "/9LV17m3H7nGCJTXg7pzhK857g6V.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Darren 'Mother' Roskow", "id": 707, "credit_id": "52fe434ec3a36847f804a43d", "cast_id": 3, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "David Strathairn", "character": "Irwin 'Whistler' Emery", "id": 11064, "credit_id": "52fe434ec3a36847f804a441", "cast_id": 4, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 3}, {"name": "River Phoenix", "character": "Carl Arbegast", "id": 741, "credit_id": "52fe434ec3a36847f804a445", "cast_id": 5, "profile_path": "/qfokbmRwRvmIVsLHScshxLPAB3C.jpg", "order": 4}, {"name": "Timothy Busfield", "character": "Dick Gordon", "id": 23881, "credit_id": "52fe434ec3a36847f804a449", "cast_id": 6, "profile_path": "/8sQr5B1h0wJ4kOcTgwWyCDfzzYq.jpg", "order": 5}, {"name": "Mary McDonnell", "character": "Liz", "id": 1581, "credit_id": "52fe434ec3a36847f804a44d", "cast_id": 7, "profile_path": "/4NcE9BcnLB3oWns51r9peH8GhN8.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Cosmo", "id": 2282, "credit_id": "52fe434ec3a36847f804a451", "cast_id": 8, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "James Earl Jones", "character": "NSA Agent Bernard Abbott", "id": 15152, "credit_id": "52fe434ec3a36847f804a455", "cast_id": 9, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 8}, {"name": "Donal Logue", "character": "Dr. Gunter Janek", "id": 10825, "credit_id": "52fe434ec3a36847f804a459", "cast_id": 10, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 9}, {"name": "Denise Dowse", "character": "Bank Teller", "id": 23970, "credit_id": "52fe434ec3a36847f804a499", "cast_id": 21, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 10}, {"name": "Eddie Jones", "character": "Buddy Wallace", "id": 8692, "credit_id": "52fe434ec3a36847f804a49d", "cast_id": 22, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 11}, {"name": "Time Winters", "character": "Homeless Man", "id": 85421, "credit_id": "52fe434ec3a36847f804a4a1", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Bodhi Elfman", "character": "Centurion S&L Night Guard", "id": 154883, "credit_id": "52fe434ec3a36847f804a4a5", "cast_id": 24, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 13}, {"name": "Stephen Tobolowsky", "character": "Werner Brandes", "id": 537, "credit_id": "53c8d3d50e0a26649c0016ec", "cast_id": 30, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 14}], "directors": [{"name": "Phil Alden Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe434ec3a36847f804a45f", "profile_path": "/aDkpgJkcHHnd3cCY1Umiouxbxw0.jpg", "id": 23968}], "vote_average": 6.7, "runtime": 126}, "2323": {"poster_path": "/ps5B8ZNSFvqLczD5e4Yh3whV66B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84431625, "overview": "Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.", "video": false, "id": 2323, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Field of Dreams", "tagline": "If you believe the impossible, the incredible can come true.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097351", "adult": false, "backdrop_path": "/zXXGo9SGPQLsmdewEYV6WvShLcM.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}], "release_date": "1989-04-21", "popularity": 0.379489202474586, "original_title": "Field of Dreams", "budget": 0, "cast": [{"name": "Kevin Costner", "character": "Ray Kinsella", "id": 1269, "credit_id": "52fe434ec3a36847f804a501", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "James Earl Jones", "character": "Terrence Mann", "id": 15152, "credit_id": "52fe434ec3a36847f804a505", "cast_id": 2, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 1}, {"name": "Amy Madigan", "character": "Annie Kinsella", "id": 23882, "credit_id": "52fe434ec3a36847f804a509", "cast_id": 3, "profile_path": "/pNdNJPKRdl3veCRH8fZv3H76ywJ.jpg", "order": 2}, {"name": "Timothy Busfield", "character": "Mark", "id": 23881, "credit_id": "52fe434ec3a36847f804a50d", "cast_id": 4, "profile_path": "/8sQr5B1h0wJ4kOcTgwWyCDfzzYq.jpg", "order": 3}, {"name": "Ray Liotta", "character": "\"Shoeless\" Joe Jackson", "id": 11477, "credit_id": "52fe434ec3a36847f804a511", "cast_id": 5, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 4}, {"name": "Burt Lancaster", "character": "Doc \"Moonlight\" Graham", "id": 13784, "credit_id": "52fe434ec3a36847f804a515", "cast_id": 6, "profile_path": "/p45iFmVBoBCVE1HS8Fg7iaF8cZS.jpg", "order": 5}, {"name": "Frank Whaley", "character": "Archie Graham", "id": 11805, "credit_id": "52fe434ec3a36847f804a567", "cast_id": 20, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 6}, {"name": "Dwier Brown", "character": "John Kinsella", "id": 23974, "credit_id": "52fe434ec3a36847f804a56b", "cast_id": 21, "profile_path": "/57WrIyOdUgcfs7R2JnSTqlp7Q2g.jpg", "order": 7}, {"name": "Lee Garlington", "character": "Beulah Gasnick", "id": 23975, "credit_id": "52fe434ec3a36847f804a56f", "cast_id": 22, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 8}, {"name": "Gaby Hoffmann", "character": "Karin Kinsella", "id": 12930, "credit_id": "52fe434ec3a36847f804a573", "cast_id": 23, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 9}, {"name": "Kelly Coffield Park", "character": "Dee, Mark's Wife", "id": 944116, "credit_id": "52fe434ec3a36847f804a577", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Michael Milhoan", "character": "Buck Weaver", "id": 154295, "credit_id": "52fe434ec3a36847f804a57b", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Art LaFleur", "character": "Chick Gandil", "id": 44792, "credit_id": "52fe434ec3a36847f804a57f", "cast_id": 26, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 12}, {"name": "Mike Nussbaum", "character": "Principal", "id": 9628, "credit_id": "52fe434ec3a36847f804a583", "cast_id": 27, "profile_path": "/gcsqhh40flXDPJ9s3U6clD9Jb59.jpg", "order": 13}, {"name": "Larry Brandenburg", "character": "PTA Heckler", "id": 92119, "credit_id": "52fe434ec3a36847f804a587", "cast_id": 28, "profile_path": "/3TGsmGFwJps4dmVncOZIO3p6ToO.jpg", "order": 14}], "directors": [{"name": "Phil Alden Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe434ec3a36847f804a51b", "profile_path": "/aDkpgJkcHHnd3cCY1Umiouxbxw0.jpg", "id": 23968}], "vote_average": 7.0, "runtime": 107}, "10521": {"poster_path": "/y5O46J9i98MkcExaPIeZaRImF4C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58715510, "overview": "Two best friends become rivals when their respective weddings are accidentally booked for the same day.", "video": false, "id": 10521, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bride Wars", "tagline": "May the best bride win", "vote_count": 198, "homepage": "http://www.bridewars.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0901476", "adult": false, "backdrop_path": "/wkXDBT7CsTSaiVbtduhZhMaQsHw.jpg", "production_companies": [{"name": "Sunrise Entertainment (II)", "id": 26670}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Biride Productions", "id": 26671}, {"name": "Dune Entertainment", "id": 444}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2009-01-09", "popularity": 1.28921955579402, "original_title": "Bride Wars", "budget": 30000000, "cast": [{"name": "Anne Hathaway", "character": "Emma", "id": 1813, "credit_id": "52fe437f9251416c75012b79", "cast_id": 2, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Liv", "id": 11661, "credit_id": "52fe437f9251416c75012b7d", "cast_id": 3, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Bryan Greenberg", "character": "Nate", "id": 23821, "credit_id": "52fe437f9251416c75012b93", "cast_id": 7, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 2}, {"name": "Chris Pratt", "character": "Fletcher", "id": 73457, "credit_id": "52fe437f9251416c75012b97", "cast_id": 8, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 3}, {"name": "Steve Howey", "character": "Daniel", "id": 81388, "credit_id": "52fe437f9251416c75012b9b", "cast_id": 9, "profile_path": "/ecy3WAyASPhmFnbUduknWFb0aMg.jpg", "order": 4}, {"name": "Candice Bergen", "character": "Marion St. Claire", "id": 11850, "credit_id": "52fe437f9251416c75012b9f", "cast_id": 10, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 5}, {"name": "Kristen Johnston", "character": "Deb", "id": 13635, "credit_id": "52fe437f9251416c75012ba3", "cast_id": 11, "profile_path": "/r0FSG3VDWDxu5sAlC6EoXjHvjdi.jpg", "order": 6}, {"name": "Michael Arden", "character": "Kevin", "id": 83874, "credit_id": "52fe437f9251416c75012ba7", "cast_id": 12, "profile_path": "/ldZi8TFKz5tA7TRtwMs4gjxbdaS.jpg", "order": 7}, {"name": "Victor Slezak", "character": "Colson", "id": 10379, "credit_id": "52fe437f9251416c75012bab", "cast_id": 13, "profile_path": "/m3Wi4uifukUJl2GA3QEOHctPESz.jpg", "order": 8}, {"name": "Kelly Coffield Park", "character": "Kathy", "id": 944116, "credit_id": "53b6baa0c3a3685ebd002712", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "John Pankow", "character": "John", "id": 59872, "credit_id": "53b6bab0c3a3685eb1002686", "cast_id": 15, "profile_path": "/ur2Lfv0X2I5URYc1SZyWYcngbd2.jpg", "order": 10}, {"name": "Zoe O'Grady", "character": "Young Liv", "id": 1337520, "credit_id": "53b6bac0c3a3685ec1002756", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Shannon Ferber", "character": "Young Emma", "id": 1337521, "credit_id": "53b6bacdc3a3685eb4002697", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "June Diane Raphael", "character": "Amanda", "id": 83873, "credit_id": "53b6badbc3a3685eb70026b6", "cast_id": 18, "profile_path": "/ArhEeYtPoKmu9grgmmTLFMqXpdY.jpg", "order": 13}, {"name": "Charles Bernard", "character": "Wedding DJ", "id": 1337522, "credit_id": "53b6bae7c3a3685eab0026b2", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Casey Wilson", "character": "Stacy", "id": 83872, "credit_id": "54a24dc392514117dd000e5a", "cast_id": 20, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 15}, {"name": "Paul Scheer", "character": "Ricky Coo", "id": 59843, "credit_id": "54a24e66c3a3684d8f000ee4", "cast_id": 21, "profile_path": "/A81J8vYUdhVGhXFac1XHy2xO5QD.jpg", "order": 16}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe437f9251416c75012b75", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 5.5, "runtime": 89}, "2330": {"poster_path": "/13vrEB6T3DuDz26rWAUfHZV0eSm.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In Marseilles (France), skilled pizza delivery boy Daniel who drives a scooter finally has his dreams come true. He gets a taxi license. Caught by the police for a huge speed infraction, he will help Emilien, a loser inspector who can't drive, on the track of German bank robbers, so he doesn't lose his license and his dream job.", "video": false, "id": 2330, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Taxi", "tagline": "", "vote_count": 171, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0152930", "adult": false, "backdrop_path": "/5EuvViTrHeR2ZPgkp95Ug0aWayQ.jpg", "production_companies": [{"name": "ARP S\u00e9lection", "id": 189}, {"name": "TF1 Films Productions", "id": 356}, {"name": "Canal+", "id": 5358}], "release_date": "1998-04-04", "popularity": 0.682658707252337, "original_title": "Taxi", "budget": 0, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804a759", "cast_id": 1, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804a75d", "cast_id": 2, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Lilly Bertineau", "id": 8293, "credit_id": "52fe434fc3a36847f804a761", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804a765", "cast_id": 4, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 3}, {"name": "Manuela Gourary", "character": "Camille Coutant-Kerbalec", "id": 23983, "credit_id": "52fe434fc3a36847f804a7a5", "cast_id": 16, "profile_path": "/66w2NBAdQIB8lxZ5WHE6ia5lYlK.jpg", "order": 4}, {"name": "Bernard Farcy", "character": "Commissaire Gibert", "id": 23984, "credit_id": "52fe434fc3a36847f804a7a9", "cast_id": 17, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 6}, {"name": "Dan Herzberg", "character": "Paulo", "id": 554591, "credit_id": "52fe434fc3a36847f804a7cf", "cast_id": 25, "profile_path": "/C0CNy7V5k5bU8cdjHk4borBbfH.jpg", "order": 11}, {"name": "S\u00e9bastien Thiery", "character": "Driving Instructor", "id": 554592, "credit_id": "52fe434fc3a36847f804a7d3", "cast_id": 26, "profile_path": "/ofMAtIE9TwVl4I1DooxRjc2Jmuf.jpg", "order": 12}, {"name": "Eric B\u00e9renger", "character": "Butcher", "id": 554593, "credit_id": "52fe434fc3a36847f804a7d7", "cast_id": 27, "profile_path": "/gfCrudPrfwJCvCccQRxwHFtdHEj.jpg", "order": 13}, {"name": "Richard Sammel", "character": "German Gangster #1", "id": 49487, "credit_id": "530e526592514114310028dc", "cast_id": 31, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 16}, {"name": "Dominique No\u00e9", "character": "Ministre", "id": 1445240, "credit_id": "5511c437c3a36801740022aa", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Gr\u00e9gory Knop", "character": "Kr\u00fcger", "id": 1445241, "credit_id": "5511c456c3a36801740022b1", "cast_id": 33, "profile_path": null, "order": 18}], "directors": [{"name": "G\u00e9rard Pir\u00e8s", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a771", "profile_path": "/n1bm4dG5Cf3ofErC318g5PyqsO7.jpg", "id": 23945}], "vote_average": 6.5, "runtime": 86}, "2332": {"poster_path": "/bsbllNS0oeKoxKJB0mAKnaeUjkE.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The Japanese ambassaor is visiting Marseilles to view the city police's anti-gang tactics. During the visit he is kidnapped by a group working for the Japanese yakuza. Young officer Emilien is determined to rescue the ambassador and officer Petra (his girlfriend), who was also kidnapped, and restore the honor of his department. Once again, speed demon taxi-driver Daniel is called to save the day.", "video": false, "id": 2332, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Taxi 2", "tagline": "", "vote_count": 97, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0183869", "adult": false, "backdrop_path": "/eD0pr8PZlCA3HjFN49KYlfAYwYq.jpg", "production_companies": [{"name": "ARP S\u00e9lection", "id": 189}, {"name": "TF1 Films Productions", "id": 356}], "release_date": "2000-03-24", "popularity": 0.749216485942332, "original_title": "Taxi 2", "budget": 0, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804a8b3", "cast_id": 1, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804a8b7", "cast_id": 2, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Lilly Bertineau", "id": 8293, "credit_id": "52fe434fc3a36847f804a8bb", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804a8bf", "cast_id": 4, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 3}, {"name": "Bernard Farcy", "character": "Commissaire Gibert", "id": 23984, "credit_id": "52fe434fc3a36847f804a8e7", "cast_id": 11, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 4}, {"name": "Jean-Christophe Bouvet", "character": "G\u00e9n\u00e9ral Edmond Bertineau", "id": 19776, "credit_id": "52fe434fc3a36847f804a8eb", "cast_id": 12, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 5}, {"name": "Fr\u00e9d\u00e9rique Tirmont", "character": "Mother", "id": 554595, "credit_id": "52fe434fc3a36847f804a8ef", "cast_id": 13, "profile_path": "/vsqA1dHLdGpMpb68BiK818SoqjK.jpg", "order": 6}, {"name": "Marc Faure", "character": "French Minister", "id": 554596, "credit_id": "52fe434fc3a36847f804a8f3", "cast_id": 14, "profile_path": "/spPJGtUNZBZFSUqqjaCVINWoIg.jpg", "order": 7}, {"name": "Haruhiko Hirata", "character": "Japanese Minister", "id": 554597, "credit_id": "52fe434fc3a36847f804a8f7", "cast_id": 15, "profile_path": "/xe1Kjrek1Z0fKcYAJriuuOY8pa.jpg", "order": 8}, {"name": "Tsuyu Shimizu", "character": "Yuli", "id": 146382, "credit_id": "52fe434fc3a36847f804a8fb", "cast_id": 16, "profile_path": "/axwiNH3wCgkC9uYNg2ynyMxH9yM.jpg", "order": 9}, {"name": "Ko Suzuki", "character": "Katano", "id": 554598, "credit_id": "52fe434fc3a36847f804a8ff", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Yoshi O\u00efda", "character": "Yuke Tsumoto", "id": 21663, "credit_id": "52fe434fc3a36847f804a903", "cast_id": 18, "profile_path": "/c7uQkdtLirDGTAHhMF77YG7I213.jpg", "order": 11}, {"name": "Kentaro", "character": "Yakuza", "id": 554599, "credit_id": "52fe434fc3a36847f804a907", "cast_id": 19, "profile_path": "/5GBHIczhjdmNe4jX0xKyiRNeAfN.jpg", "order": 12}, {"name": "\u00c9douard Montoute", "character": "Alain", "id": 5441, "credit_id": "52fe434fc3a36847f804a913", "cast_id": 22, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 15}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a8c5", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 6.2, "runtime": 88}, "59678": {"poster_path": "/n2qLb5UPj0sKUnlzkthp30wM0g2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 3964682, "overview": "A teen gang in South London defend their block from an alien invasion. Attack the Block is a 2011 British science fiction action film written and directed by Joe Cornish. The film stars Jodie Whittaker, John Boyega, Alex Esmail, Franz Drameh, Leeon Jones, Simon Howard. Set on a council estate in South London on Bonfire night, the film follows a street gang which have to defend themselves from hostile alien invaders. The film was released in the United Kingdom on 11 May 2011. Attack the Block is the directorial debut of Cornish.", "video": false, "id": 59678, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Attack the Block", "tagline": "Inner City vs. Outer Space", "vote_count": 149, "homepage": "http://attacktheblock.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1478964", "adult": false, "backdrop_path": "/bWvLioeu9DUv4aP5kWPHj8NMoNJ.jpg", "production_companies": [{"name": "Studio Canal", "id": 5870}, {"name": "Film4", "id": 9349}, {"name": "UK Film Council", "id": 2452}], "release_date": "2011-05-12", "popularity": 0.226788311143381, "original_title": "Attack the Block", "budget": 14350531, "cast": [{"name": "Nick Frost", "character": "Ron", "id": 11109, "credit_id": "52fe4997c3a36847f81a25cd", "cast_id": 3, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 0}, {"name": "Jodie Whittaker", "character": "Sam", "id": 66431, "credit_id": "52fe4997c3a36847f81a25d1", "cast_id": 4, "profile_path": "/1uCyLazOjo1mepIgagMQFTcfPOX.jpg", "order": 1}, {"name": "John Boyega", "character": "Moses", "id": 236695, "credit_id": "52fe4997c3a36847f81a25dd", "cast_id": 7, "profile_path": "/aPhWLzjqCRUvjBXHyGU2ptPBSa8.jpg", "order": 2}, {"name": "Luke Treadaway", "character": "Brewis", "id": 103351, "credit_id": "52fe4997c3a36847f81a25d5", "cast_id": 5, "profile_path": "/uSROaOirY0WIBhz9fuIcroK1gA2.jpg", "order": 3}, {"name": "Joey Ansah", "character": "Policeman 1", "id": 29406, "credit_id": "52fe4997c3a36847f81a25d9", "cast_id": 6, "profile_path": "/jHubXiYEiUhonrVzXUJfVTOJ2Jq.jpg", "order": 4}, {"name": "Flaminia Cinque", "character": "Italian Woman", "id": 176188, "credit_id": "52fe4997c3a36847f81a25e1", "cast_id": 8, "profile_path": "/hZ2Oj35tMmqHms1uRWk7T0SPmMx.jpg", "order": 5}, {"name": "Chris Wilson", "character": "Arresting Police Officer", "id": 127005, "credit_id": "52fe4997c3a36847f81a25e5", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Terry Notary", "character": "The Creature", "id": 236696, "credit_id": "52fe4997c3a36847f81a25e9", "cast_id": 10, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 7}, {"name": "Paige Meade", "character": "Dimples", "id": 236697, "credit_id": "52fe4997c3a36847f81a25ed", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Adam Leese", "character": "Policeman 2", "id": 82738, "credit_id": "52fe4997c3a36847f81a25f1", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Danielle Vitalis", "character": "Tia", "id": 236698, "credit_id": "52fe4997c3a36847f81a25f5", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Selom Awadzi", "character": "Tonks", "id": 1161609, "credit_id": "52fe4997c3a36847f81a2605", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Adam Buxton", "character": "Documentary Voice Over", "id": 155532, "credit_id": "52fe4997c3a36847f81a2609", "cast_id": 17, "profile_path": "/zL31NlBBKL1NTjR48h610by5Rld.jpg", "order": 12}, {"name": "Jumayn Hunter", "character": "", "id": 85067, "credit_id": "542f2b18c3a3680442000c3d", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Joe Cornish", "department": "Directing", "job": "Director", "credit_id": "52fe4997c3a36847f81a25c3", "profile_path": "/95xxFo1uBbVK0OANUEvDlRQFSD1.jpg", "id": 155531}], "vote_average": 6.2, "runtime": 88}, "10527": {"poster_path": "/9mohxwknsHcwFBSAAhoQXwFV5zn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 603900354, "overview": "Alex, Marty, Melman, Gloria, King Julien, Maurice, the penguins and the chimps are back and still marooned on Madagascar. In the face of this obstacle, the New Yorkers have hatched a plan so crazy it just might work. With military precision, the penguins have repaired an old crashed plane... sort of.", "video": false, "id": 10527, "genres": [{"id": 16, "name": "Animation"}], "title": "Madagascar: Escape 2 Africa", "tagline": "Still together. Still lost!", "vote_count": 673, "homepage": "http://www.madagascar-themovie.com", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0479952", "adult": false, "backdrop_path": "/anxiz37Z9FPKeuCsJcxViSWmPxg.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2008-11-06", "popularity": 1.82527460160649, "original_title": "Madagascar: Escape 2 Africa", "budget": 150000000, "cast": [{"name": "Ben Stiller", "character": "Alex (voice)", "id": 7399, "credit_id": "52fe43809251416c75012d4f", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Jada Pinkett Smith", "character": "Gloria (voice)", "id": 9575, "credit_id": "52fe43809251416c75012d53", "cast_id": 2, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Melman (voice)", "id": 14409, "credit_id": "52fe43809251416c75012d57", "cast_id": 3, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Chris Rock", "character": "Marty / Additional Zebras (voice)", "id": 2632, "credit_id": "52fe43809251416c75012d5b", "cast_id": 4, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 3}, {"name": "Cedric the Entertainer", "character": "Maurice (voice)", "id": 5726, "credit_id": "52fe43809251416c75012d71", "cast_id": 8, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 4}, {"name": "Andy Richter", "character": "Mort (voice)", "id": 28637, "credit_id": "52fe43809251416c75012d75", "cast_id": 9, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 5}, {"name": "Bernie Mac", "character": "Zuba (voice)", "id": 1897, "credit_id": "52fe43809251416c75012d79", "cast_id": 10, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 6}, {"name": "Alec Baldwin", "character": "Makunga (voice)", "id": 7447, "credit_id": "52fe43809251416c75012d7d", "cast_id": 11, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 7}, {"name": "Sacha Baron Cohen", "character": "Julien (voice)", "id": 6730, "credit_id": "52fe43809251416c75012d81", "cast_id": 12, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 8}, {"name": "Sherri Shepherd", "character": "Mom (voice)", "id": 109561, "credit_id": "52fe43809251416c75012d85", "cast_id": 13, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 9}, {"name": "Will.i.am", "character": "Moto Moto (voice)", "id": 82092, "credit_id": "52fe43809251416c75012d89", "cast_id": 14, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 10}, {"name": "Elisa Gabrielli", "character": "Nana (voice)", "id": 64445, "credit_id": "52fe43809251416c75012d8d", "cast_id": 15, "profile_path": "/u2e1WxQ6ML5NlNcj4XLSEvYBahG.jpg", "order": 11}, {"name": "Tom McGrath", "character": "Skipper / Lemur (voice)", "id": 18864, "credit_id": "52fe43809251416c75012d91", "cast_id": 16, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 12}, {"name": "Chris Miller", "character": "Kowalski (voice)", "id": 12098, "credit_id": "52fe43809251416c75012d95", "cast_id": 17, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 13}, {"name": "Christopher Knights", "character": "Private (voice)", "id": 12097, "credit_id": "52fe43809251416c75012d99", "cast_id": 18, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 14}, {"name": "Conrad Vernon", "character": "Mason (voice)", "id": 12080, "credit_id": "52fe43809251416c75012d9d", "cast_id": 19, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 15}, {"name": "Quinn Dempsey Stiller", "character": "Baby Alex (voice)", "id": 1077795, "credit_id": "52fe43809251416c75012da1", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Declan Swift", "character": "Baby Alex (voice)", "id": 1077796, "credit_id": "52fe43809251416c75012da5", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Fred Tatasciore", "character": "Teetsi / Poacher #1 / Elephant (voice)", "id": 60279, "credit_id": "52fe43809251416c75012da9", "cast_id": 22, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 18}, {"name": "Eric Darnell", "character": "Joe the Witch Doctor / Poacher #2 (voice)", "id": 18863, "credit_id": "52fe43809251416c75012dad", "cast_id": 23, "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "order": 19}, {"name": "Willow Smith", "character": "Baby Glorida (voice)", "id": 49920, "credit_id": "52fe43809251416c75012db1", "cast_id": 24, "profile_path": "/1wd5w9wYSwMBOvMSzGYrf2Ilk9H.jpg", "order": 20}, {"name": "Thomas Stanley", "character": "Baby Marty (voice)", "id": 205171, "credit_id": "52fe43809251416c75012db5", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Zachary Gordon", "character": "Baby Melman (voice)", "id": 89819, "credit_id": "52fe43809251416c75012db9", "cast_id": 26, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 22}, {"name": "Meredith Vieira", "character": "Newscaster (voice)", "id": 118490, "credit_id": "52fe43809251416c75012dbd", "cast_id": 27, "profile_path": "/ydtUcTxplTDkNs5nbDhLS5OGjTL.jpg", "order": 23}, {"name": "Lesley Stahl", "character": "Newscaster (voice)", "id": 197819, "credit_id": "52fe43809251416c75012dc1", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Al Roker", "character": "Newscaster (voice)", "id": 111875, "credit_id": "52fe43809251416c75012dc5", "cast_id": 29, "profile_path": "/gl113PsTnmLTAFCjNthTyXwZJyI.jpg", "order": 25}, {"name": "David Soren", "character": "Lemur (voice)", "id": 94075, "credit_id": "52fe43809251416c75012dc9", "cast_id": 30, "profile_path": "/gDxfltxyHeR0uhBAhYniT9zQEEw.jpg", "order": 26}, {"name": "Phil LaMarr", "character": "Guide (voice)", "id": 31549, "credit_id": "52fe43809251416c75012dcd", "cast_id": 31, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 27}, {"name": "Stephen Kearin", "character": "Stephen the Giraffe / Tourist with Video Camera / Rhino (voice)", "id": 1448984, "credit_id": "55390b7692514138a90029e9", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Dan O'Connor", "character": "Tourist with University Shirt / Cape Buffalo (voice)", "id": 1232325, "credit_id": "55390ba2925141651800979b", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Edie Mirman", "character": "Telephone Recording (voice)", "id": 1229809, "credit_id": "55390bc89251413f5a001fe5", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Fergie", "character": "Hippo Girlfriend (voice) (as Stacy Ferguson)", "id": 20497, "credit_id": "55390c2d92514138a90029f8", "cast_id": 35, "profile_path": "/uIY0slefJdJaotv2F453ZmjRtrg.jpg", "order": 31}, {"name": "Harland Williams", "character": "Additional Giraffe (voice)", "id": 16846, "credit_id": "55390cbbc3a3681be4005027", "cast_id": 36, "profile_path": "/ncbsGnC41SsM7VpCOGBJGQ44dwF.jpg", "order": 32}, {"name": "Danny Jacobs", "character": "Tourist with New York T-Shirt (voice)", "id": 62389, "credit_id": "55390d07c3a36815ac009a74", "cast_id": 37, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 33}, {"name": "Bridget Hoffman", "character": "Female Tourist (voice)", "id": 173428, "credit_id": "55390d47c3a36878fd005b23", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Terrence Hardy Jr.", "character": "Cub (voice) (as Terence Hardy)", "id": 61305, "credit_id": "55390f5e9251411256005d42", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Conner Rayburn", "character": "Little Giraffe (voice)", "id": 1224835, "credit_id": "55390fab9251412423000170", "cast_id": 40, "profile_path": "/8XWlZotOHDqyZirBrjwJAE0gbOs.jpg", "order": 36}, {"name": "Holly Dorff", "character": "Fish (voice)", "id": 64449, "credit_id": "55390fcfc3a3687845006b34", "cast_id": 41, "profile_path": "/90CsT8F67gH2uQIVppIBMXm7qvf.jpg", "order": 37}, {"name": "David P. Smith", "character": "Bobby the Dik Dik (voice) (as David Smith)", "id": 1077844, "credit_id": "55390ff29251416518009818", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Lynnanne Zager", "character": "Lioness (voice)", "id": 64451, "credit_id": "5539101c92514138a9002a67", "cast_id": 43, "profile_path": "/bfxb3RNWKKxCdurwYQz7t48dCZI.jpg", "order": 39}, {"name": "Jackie Gonneau", "character": "Additional Dik Dik (voice)", "id": 950773, "credit_id": "55391040c3a36815ac009ac2", "cast_id": 44, "profile_path": null, "order": 40}, {"name": "John Eric Bentley", "character": "Additional Dialogue (voice) (as John Bentley)", "id": 183507, "credit_id": "553910709251412d91005be3", "cast_id": 45, "profile_path": "/vtVFmQMvMuWbypTZRu9dmlmOi3k.jpg", "order": 41}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe43809251416c75012d61", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe43809251416c75012d67", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}], "vote_average": 6.1, "runtime": 89}, "10528": {"poster_path": "/22ngurXbLqab7Sko6aTSdwOCe5W.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 524028679, "overview": "Eccentric consulting detective Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.", "video": false, "id": 10528, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sherlock Holmes", "tagline": "Nothing escapes him.", "vote_count": 2683, "homepage": "http://sherlock-holmes-movie.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/aeLom584FZdu6253WMaYEUCrTdu.jpg", "poster_path": "/bsUN9Ph1nUituteKWOhPQGguNXt.jpg", "id": 102322, "name": "Sherlock Holmes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0988045", "adult": false, "backdrop_path": "/k8nSKp54r0j1uy9QwM9RaD3goah.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "Wigram Productions", "id": 23202}, {"name": "Internationale Filmproduktion Blackbird Dritte", "id": 19855}], "release_date": "2009-12-25", "popularity": 2.01144629862967, "original_title": "Sherlock Holmes", "budget": 90000000, "cast": [{"name": "Robert Downey Jr.", "character": "Sherlock Holmes", "id": 3223, "credit_id": "52fe43809251416c75012ef9", "cast_id": 30, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Jude Law", "character": "Dr. John Watson", "id": 9642, "credit_id": "52fe43809251416c75012e79", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Rachel McAdams", "character": "Irene Adler", "id": 53714, "credit_id": "52fe43809251416c75012e75", "cast_id": 3, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 2}, {"name": "Mark Strong", "character": "Lord Blackwood", "id": 2983, "credit_id": "52fe43809251416c75012e7d", "cast_id": 5, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "Inspector Lestrade", "id": 1665, "credit_id": "52fe43809251416c75012ee3", "cast_id": 25, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "Robert Maillet", "character": "Dredger", "id": 112692, "credit_id": "52fe43809251416c75012ee7", "cast_id": 26, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 5}, {"name": "Geraldine James", "character": "Mrs. Hudson", "id": 11855, "credit_id": "52fe43809251416c75012eeb", "cast_id": 27, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 6}, {"name": "Kelly Reilly", "character": "Mary", "id": 17521, "credit_id": "52fe43809251416c75012e81", "cast_id": 6, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 7}, {"name": "William Houston", "character": "Constable Clark", "id": 84865, "credit_id": "52fe43809251416c75012eef", "cast_id": 28, "profile_path": "/cDRUNHUyHB29YKrTmzkQqBRCdla.jpg", "order": 8}, {"name": "Hans Matheson", "character": "Lord Coward", "id": 37168, "credit_id": "52fe43819251416c75012f2b", "cast_id": 40, "profile_path": "/4MQAI6g3AabzUDm29UbadjjWteL.jpg", "order": 9}, {"name": "James Fox", "character": "Sir Thomas Rotheram", "id": 1292, "credit_id": "52fe43809251416c75012efd", "cast_id": 32, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 10}, {"name": "William Hope", "character": "Ambassador Standish", "id": 10207, "credit_id": "52fe43809251416c75012e85", "cast_id": 7, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 11}, {"name": "Clive Russell", "character": "Captain Tanner", "id": 19901, "credit_id": "52fe43819251416c75012f2f", "cast_id": 41, "profile_path": "/3dkiAdWPMPiPRqwi5MVBFOSD9Xo.jpg", "order": 12}, {"name": "Oran Gurel", "character": "Reordan", "id": 1270734, "credit_id": "52fe43819251416c75012f33", "cast_id": 42, "profile_path": null, "order": 13}, {"name": "David Garrick", "character": "McMurdo", "id": 1121204, "credit_id": "52fe43819251416c75012f37", "cast_id": 43, "profile_path": null, "order": 14}, {"name": "Kylie Hutchinson", "character": "Maid", "id": 1156243, "credit_id": "52fe43819251416c75012f3b", "cast_id": 44, "profile_path": null, "order": 15}, {"name": "Andrew Brooke", "character": "Guard Captain", "id": 202760, "credit_id": "52fe43819251416c75012f3f", "cast_id": 45, "profile_path": "/vXyNaZWVYGWQCXYmH7hVRaRAyVP.jpg", "order": 16}, {"name": "Tom Watt", "character": "Carriage Driver", "id": 1227670, "credit_id": "52fe43819251416c75012f43", "cast_id": 46, "profile_path": null, "order": 17}, {"name": "John Kearney", "character": "Carriage Driver", "id": 1270741, "credit_id": "52fe43819251416c75012f47", "cast_id": 47, "profile_path": null, "order": 18}, {"name": "Sebastian Abineri", "character": "Coach Driver", "id": 174524, "credit_id": "52fe43819251416c75012f4b", "cast_id": 48, "profile_path": null, "order": 19}, {"name": "Jonathan Gabriel Robbins", "character": "Guard", "id": 1270742, "credit_id": "52fe43819251416c75012f4f", "cast_id": 49, "profile_path": null, "order": 20}, {"name": "James A. Stephens", "character": "Captain Philips", "id": 1187835, "credit_id": "52fe43819251416c75012f53", "cast_id": 50, "profile_path": null, "order": 21}, {"name": "Terry Taplin", "character": "Groundskeeper", "id": 237767, "credit_id": "52fe43819251416c75012f57", "cast_id": 51, "profile_path": null, "order": 22}, {"name": "Bronagh Gallagher", "character": "Palm Reader", "id": 33399, "credit_id": "52fe43819251416c75012f5b", "cast_id": 52, "profile_path": "/h44VuQ4yxA9ssITldXngDKSLoBQ.jpg", "order": 23}, {"name": "Ed Tolputt", "character": "Anonymous Man", "id": 1270828, "credit_id": "52fe43819251416c75012f5f", "cast_id": 53, "profile_path": null, "order": 24}, {"name": "Joe Egan", "character": "Big Man", "id": 1000873, "credit_id": "52fe43819251416c75012f63", "cast_id": 54, "profile_path": null, "order": 25}, {"name": "Jefferson Hall", "character": "Young Guard", "id": 109322, "credit_id": "52fe43819251416c75012f67", "cast_id": 55, "profile_path": null, "order": 26}, {"name": "Miles Jupp", "character": "Waiter", "id": 221857, "credit_id": "52fe43819251416c75012f6b", "cast_id": 56, "profile_path": "/46I2b7aManVdNQ3XFy9IPRkCDS9.jpg", "order": 27}, {"name": "Marn Davies", "character": "Police Officer", "id": 1270829, "credit_id": "52fe43819251416c75012f6f", "cast_id": 57, "profile_path": null, "order": 28}, {"name": "Andrew Greenough", "character": "Prison Guard", "id": 59082, "credit_id": "52fe43819251416c75012f73", "cast_id": 58, "profile_path": null, "order": 29}, {"name": "Ned Dennehy", "character": "Man with Roses", "id": 63362, "credit_id": "52fe43819251416c75012f77", "cast_id": 59, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 30}, {"name": "Martin Ewens", "character": "Removable Man", "id": 1270830, "credit_id": "52fe43819251416c75012f7b", "cast_id": 60, "profile_path": null, "order": 31}, {"name": "Amanda Grace Johnson", "character": "Young Woman Sacrifice", "id": 1270831, "credit_id": "52fe43819251416c75012f7f", "cast_id": 61, "profile_path": null, "order": 32}, {"name": "James Greene", "character": "Governor", "id": 1266585, "credit_id": "52fe43819251416c75012f83", "cast_id": 62, "profile_path": "/mQNSBTK93AXGGd5f0mbQqPhgBtY.jpg", "order": 33}, {"name": "David Emmings", "character": "Grave Policeman", "id": 1270832, "credit_id": "52fe43819251416c75012f87", "cast_id": 63, "profile_path": null, "order": 34}, {"name": "Ben Cartwright", "character": "Grave Policeman", "id": 1255828, "credit_id": "52fe43819251416c75012f8b", "cast_id": 64, "profile_path": null, "order": 35}, {"name": "Chris Sunley", "character": "Grave Policeman", "id": 208451, "credit_id": "52fe43819251416c75012f8f", "cast_id": 65, "profile_path": null, "order": 36}, {"name": "Michael Jenn", "character": "Preacher", "id": 62106, "credit_id": "52fe43819251416c75012f93", "cast_id": 66, "profile_path": null, "order": 37}, {"name": "Timothy O'Hara", "character": "Porter / Smith", "id": 1270833, "credit_id": "52fe43819251416c75012f97", "cast_id": 67, "profile_path": null, "order": 38}, {"name": "Guy Williams", "character": "Golden Dawn Envoy", "id": 974063, "credit_id": "52fe43819251416c75012f9b", "cast_id": 68, "profile_path": null, "order": 39}, {"name": "Peter Miles", "character": "Thug", "id": 1230574, "credit_id": "52fe43819251416c75012f9f", "cast_id": 69, "profile_path": null, "order": 40}, {"name": "Jonathan Bridge", "character": "Man Carrying Tray of Fish in Market (uncredited)", "id": 1034905, "credit_id": "52fe43819251416c75012fa3", "cast_id": 70, "profile_path": null, "order": 41}, {"name": "Sam Creed", "character": "Thug (uncredited)", "id": 1030253, "credit_id": "52fe43819251416c75012fa7", "cast_id": 71, "profile_path": "/grHsE56RRIsmzXe3i7W7ORaV5rG.jpg", "order": 42}, {"name": "Radu Andrei Cucu", "character": "Frenzy Man (uncredited)", "id": 1270834, "credit_id": "52fe43819251416c75012fab", "cast_id": 72, "profile_path": null, "order": 43}, {"name": "James Currie", "character": "Prison Guard (uncredited)", "id": 1031711, "credit_id": "52fe43819251416c75012faf", "cast_id": 73, "profile_path": null, "order": 44}, {"name": "Jason Daly", "character": "Man with Dog (uncredited)", "id": 1270836, "credit_id": "52fe43819251416c75012fb3", "cast_id": 74, "profile_path": null, "order": 45}, {"name": "Paul J. Dove", "character": "Bishop (uncredited)", "id": 1270837, "credit_id": "52fe43819251416c75012fb7", "cast_id": 75, "profile_path": null, "order": 46}, {"name": "Neil Findlater", "character": "Photographer (uncredited)", "id": 1270838, "credit_id": "52fe43819251416c75012fbb", "cast_id": 76, "profile_path": null, "order": 47}, {"name": "Kas Graham", "character": "Dog Fighter (uncredited)", "id": 93715, "credit_id": "52fe43819251416c75012fbf", "cast_id": 77, "profile_path": null, "order": 48}, {"name": "Thomas Kadman", "character": "Pallbearer (uncredited)", "id": 1270839, "credit_id": "52fe43819251416c75012fc3", "cast_id": 78, "profile_path": null, "order": 49}, {"name": "Brendan McCoy", "character": "Fishmonger (uncredited)", "id": 1270840, "credit_id": "52fe43819251416c75012fc7", "cast_id": 79, "profile_path": null, "order": 50}, {"name": "Matthew Radway", "character": "Barman (uncredited)", "id": 1270841, "credit_id": "52fe43819251416c75012fcb", "cast_id": 80, "profile_path": null, "order": 51}, {"name": "Robert Stone", "character": "Prizefighter (uncredited)", "id": 1209051, "credit_id": "52fe43819251416c75012fcf", "cast_id": 81, "profile_path": null, "order": 52}, {"name": "John Warman", "character": "Policeman (uncredited)", "id": 1209055, "credit_id": "52fe43819251416c75012fd3", "cast_id": 82, "profile_path": null, "order": 53}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe43809251416c75012e71", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.8, "runtime": 128}, "10529": {"poster_path": "/fjRXOzuBEg0VGDM701ftBaVqWTr.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7033683, "overview": "During the reign of the Vikings, a man from another world crash-lands on Earth, bringing with him an alien predator. The man must fuse his advanced technology with the weaponry of the vikings to fight the monster.", "video": false, "id": 10529, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Outlander", "tagline": "It destroyed his world. He won't let it destroy ours.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0462465", "adult": false, "backdrop_path": "/rOmTlcLUmNbjpSM03MqPmVe35aC.jpg", "production_companies": [{"name": "Ascendant Pictures", "id": 1204}, {"name": "Rising Star", "id": 1208}, {"name": "VIP Medienfonds 4", "id": 2116}, {"name": "Virtual Films", "id": 2366}, {"name": "Outlander Productions", "id": 20571}], "release_date": "2008-04-24", "popularity": 0.808212990394027, "original_title": "Outlander", "budget": 50000000, "cast": [{"name": "Jim Caviezel", "character": "Kainan", "id": 8767, "credit_id": "52fe43819251416c75012ff1", "cast_id": 1, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 0}, {"name": "Sophia Myles", "character": "Freya", "id": 3971, "credit_id": "52fe43819251416c75012ffb", "cast_id": 3, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 1}, {"name": "Jack Huston", "character": "Wulfric", "id": 54738, "credit_id": "52fe43819251416c75012fff", "cast_id": 4, "profile_path": "/fy9PKaLfxVMJ4Ycz8C7xdWrYvFi.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Gunnar", "id": 2372, "credit_id": "52fe43819251416c75013003", "cast_id": 5, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "John Hurt", "character": "Rothgar", "id": 5049, "credit_id": "52fe43819251416c75013007", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Cliff Saunders", "character": "Boromir", "id": 17638, "credit_id": "52fe43819251416c75013017", "cast_id": 9, "profile_path": "/3c72UmrKyk05bXP07cY26j6R7Rr.jpg", "order": 5}, {"name": "Patrick Stevenson", "character": "Unferth", "id": 175203, "credit_id": "52fe43819251416c7501301b", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Aidan Devine", "character": "Einar", "id": 237, "credit_id": "52fe43819251416c7501301f", "cast_id": 11, "profile_path": "/8RyUP2FYu4xuEkpJZFFlf2204Si.jpg", "order": 7}, {"name": "Bailey Maughan", "character": "Erick", "id": 1059892, "credit_id": "52fe43819251416c75013023", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "John Nelles", "character": "Donal", "id": 123307, "credit_id": "5314f2c09251410ffc0079c7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "James Preston Rogers", "character": "Bjorn", "id": 1084758, "credit_id": "5314f2d79251411013007913", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Scott Owen", "character": "Aethril", "id": 944870, "credit_id": "5314f2f69251411042007ced", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Petra Prazak", "character": "Mara", "id": 1298377, "credit_id": "5314f30d925141102a007b52", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Owen Pattison", "character": "Galen, son of Kainen", "id": 1032340, "credit_id": "5314f327925141104d007cee", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Matt Cooke", "character": "Captain", "id": 44237, "credit_id": "5314f342925141104d007cf1", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Howard McCain", "department": "Directing", "job": "Director", "credit_id": "52fe43819251416c75012ff7", "profile_path": "/wd6Z0ACz1KuM1LC1JaxAU9qheNI.jpg", "id": 65525}], "vote_average": 6.5, "runtime": 115}, "10530": {"poster_path": "/cmK0GIn2TdcmuVlyAkK6maoHSmH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 346079773, "overview": "History comes gloriously to life in Disney's epic animated tale about love and adventure in the New World. Pocahontas is a Native American woman whose father has arranged for her to marry her village's best warrior. But a vision tells her change is coming, and soon she comes face to face with it in the form of Capt. John Smith.", "video": false, "id": 10530, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Pocahontas", "tagline": "An American legend comes to life.", "vote_count": 343, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qqeOxNmtAW7WXdbrmQftgluvve7.jpg", "poster_path": "/rf6COd7IMIdzEDXxjHu9VLbkdp2.jpg", "id": 136214, "name": "Pocahontas Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114148", "adult": false, "backdrop_path": "/vb9ypjVwBKnxQaCGEkduSdJv0Hx.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1995-06-14", "popularity": 1.26892038210478, "original_title": "Pocahontas", "budget": 55000000, "cast": [{"name": "Irene Bedard", "character": "Pocahontas (voice)", "id": 65529, "credit_id": "52fe43819251416c7501305b", "cast_id": 1, "profile_path": "/eUX06X7ZpioIO7rHRsaAyNzL646.jpg", "order": 0}, {"name": "Mel Gibson", "character": "John Smith (voice)", "id": 2461, "credit_id": "52fe43819251416c7501305f", "cast_id": 2, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "David Ogden Stiers", "character": "Governor Ratcliffe (voice)", "id": 28010, "credit_id": "52fe43819251416c75013063", "cast_id": 3, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 2}, {"name": "John Kassir", "character": "Meeko (voice)", "id": 31365, "credit_id": "52fe43819251416c75013067", "cast_id": 4, "profile_path": "/dC0Icg60BabhLJFwR0FbZzFazPq.jpg", "order": 3}, {"name": "Russell Means", "character": "Powhatan (voice)", "id": 3203, "credit_id": "52fe43819251416c7501306b", "cast_id": 5, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 4}, {"name": "Christian Bale", "character": "Thomas (voice)", "id": 3894, "credit_id": "52fe43819251416c7501306f", "cast_id": 6, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 5}, {"name": "Judy Kuhn", "character": "Pocahontas (singing voice)", "id": 110316, "credit_id": "52fe43819251416c750130a9", "cast_id": 16, "profile_path": "/lgdq078b2NZ8f9jeikfXJUhh86A.jpg", "order": 6}, {"name": "Linda Hunt", "character": "Grandmother Willow (voice)", "id": 12516, "credit_id": "52fe43819251416c750130ad", "cast_id": 17, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 7}, {"name": "Danny Mann", "character": "Percy (voice)", "id": 52699, "credit_id": "52fe43819251416c750130b1", "cast_id": 18, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 8}, {"name": "Billy Connolly", "character": "Ben (voice)", "id": 9188, "credit_id": "52fe43819251416c750130b5", "cast_id": 19, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 9}, {"name": "Joe Baker", "character": "Lon (voice)", "id": 181486, "credit_id": "52fe43819251416c750130b9", "cast_id": 20, "profile_path": "/9vWEEzpr2K8DR3uQqgK2QvAygty.jpg", "order": 10}, {"name": "Frank Welker", "character": "Flit (voice)", "id": 15831, "credit_id": "52fe43819251416c750130bd", "cast_id": 21, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 11}, {"name": "Michelle St. John", "character": "Nakoma (voice)", "id": 163070, "credit_id": "52fe43819251416c750130c1", "cast_id": 22, "profile_path": "/iXasoYctdAQ9geELcF25WI7b5Jw.jpg", "order": 12}, {"name": "James Apaumut Fall", "character": "Kocoum (voice)", "id": 950126, "credit_id": "52fe43819251416c750130c5", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Gordon Tootoosis", "character": "Kekata (voice)", "id": 37430, "credit_id": "52fe43819251416c750130c9", "cast_id": 24, "profile_path": "/l10aLDp4D8ZwWdmfRdlj6FedUYk.jpg", "order": 14}, {"name": "Jim Cummings", "character": "Powhatan / Kekata (singing voice)", "id": 12077, "credit_id": "52fe43819251416c750130cd", "cast_id": 25, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 15}], "directors": [{"name": "Mike Gabriel", "department": "Directing", "job": "Director", "credit_id": "52fe43819251416c75013075", "profile_path": null, "id": 65530}, {"name": "Eric Goldberg", "department": "Directing", "job": "Director", "credit_id": "52fe43819251416c7501307b", "profile_path": null, "id": 65531}], "vote_average": 6.4, "runtime": 81}, "9947": {"poster_path": "/dyvqAJs20UrqTJGOHtJ0tNbU54m.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56681566, "overview": "Elektra the warrior survives a near-death experience, becomes an assassin-for-hire, and tries to protect her two latest targets, a single father and his young daughter, from a group of supernatural assassins.", "video": false, "id": 9947, "genres": [{"id": 28, "name": "Action"}], "title": "Elektra", "tagline": "Looks can kill", "vote_count": 172, "homepage": "http://marvel.com/movies/daredevil.elektra", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0357277", "adult": false, "backdrop_path": "/xM54vMnWLytz1sgLkx4Fg2DKHMW.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Horseshoe Bay Productions", "id": 19552}, {"name": "Elektra Productions", "id": 19553}, {"name": "SAI Productions", "id": 19554}], "release_date": "2005-01-14", "popularity": 1.02667533511845, "original_title": "Elektra", "budget": 43000000, "cast": [{"name": "Jennifer Garner", "character": "Elektra", "id": 9278, "credit_id": "52fe454dc3a36847f80c6a77", "cast_id": 23, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 0}, {"name": "Goran Vi\u0161nji\u0107", "character": "Mark Miller", "id": 5725, "credit_id": "52fe454dc3a36847f80c6a7b", "cast_id": 24, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 1}, {"name": "Will Yun Lee", "character": "Kirigi", "id": 10884, "credit_id": "52fe454dc3a36847f80c6a7f", "cast_id": 25, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 2}, {"name": "Cary-Hiroyuki Tagawa", "character": "Roshi", "id": 11398, "credit_id": "52fe454dc3a36847f80c6a83", "cast_id": 26, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 3}, {"name": "Terence Stamp", "character": "Stick", "id": 28641, "credit_id": "52fe454dc3a36847f80c6a87", "cast_id": 27, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 4}, {"name": "Natassia Malthe", "character": "Typhoid", "id": 21430, "credit_id": "52fe454dc3a36847f80c6a8b", "cast_id": 28, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 5}, {"name": "Kirsten Prout", "character": "Abby Miller", "id": 60715, "credit_id": "52fe454dc3a36847f80c6a9b", "cast_id": 31, "profile_path": "/ohKIk8kA8TJoIfF2BNTPkgf4XEo.jpg", "order": 6}, {"name": "Colin Cunningham", "character": "McCabe", "id": 1218926, "credit_id": "52fe454dc3a36847f80c6adb", "cast_id": 47, "profile_path": "/3EW9uprWwgzJy2jIcN0QFzKbVFX.jpg", "order": 7}, {"name": "Edson T. Ribeiro", "character": "Kinkou", "id": 60718, "credit_id": "52fe454dc3a36847f80c6a9f", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Chris Ackerman", "character": "Tattoo", "id": 60717, "credit_id": "52fe454dc3a36847f80c6aa9", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Bob Sapp", "character": "Stone", "id": 60716, "credit_id": "52fe454dc3a36847f80c6aad", "cast_id": 36, "profile_path": "/y11Km6dAfrBB4asSIvBewR8UocA.jpg", "order": 10}, {"name": "Mark Houghton", "character": "Bauer", "id": 26782, "credit_id": "52fe454dc3a36847f80c6ab1", "cast_id": 37, "profile_path": "/cNXgbzlsbucTlj0w3PHhMDCLe0K.jpg", "order": 11}, {"name": "Hiro Kanagawa", "character": "Meizumi", "id": 60719, "credit_id": "52fe454dc3a36847f80c6ab5", "cast_id": 38, "profile_path": "/2vDjvbgOMUx39j2kMcjLvH8bxpu.jpg", "order": 12}, {"name": "Laura Ward", "character": "Young Elektra", "id": 60720, "credit_id": "52fe454dc3a36847f80c6ab9", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Ian Tracey", "character": "Pool Shark", "id": 25386, "credit_id": "52fe454dc3a36847f80c6abd", "cast_id": 40, "profile_path": "/p2JEHCudpbZNOeNo3lYpLPOCaCD.jpg", "order": 14}, {"name": "Aaron Au", "character": "Hand Ninja #2", "id": 60604, "credit_id": "52fe454dc3a36847f80c6ac1", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Kevan Ohtsji", "character": "Roshi Servant", "id": 60723, "credit_id": "52fe454dc3a36847f80c6ac5", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Kurt Max Runte", "character": "Nikolas Natchios", "id": 60721, "credit_id": "52fe454dc3a36847f80c6ac9", "cast_id": 43, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 17}, {"name": "Nathaniel Arcand", "character": "Hand Ninja #1", "id": 60722, "credit_id": "52fe454dc3a36847f80c6acd", "cast_id": 44, "profile_path": "/eh4mavNMo55nWRg8IZc3havwbZc.jpg", "order": 18}, {"name": "Jana Mitsoula", "character": "Young Elektra's Mother", "id": 60724, "credit_id": "52fe454dc3a36847f80c6ad1", "cast_id": 45, "profile_path": null, "order": 19}], "directors": [{"name": "Rob Bowman", "department": "Directing", "job": "Director", "credit_id": "52fe454dc3a36847f80c6a01", "profile_path": "/u9iJgOc7XOkStRXbAHZe2qJ2O8p.jpg", "id": 12523}], "vote_average": 5.0, "runtime": 97}, "10536": {"poster_path": "/zK3fpSmNvUS42sw3t9ojopu0Grl.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Charlie 's got a 'job' to do. Having just left prison he finds one his of friends has attempted a high risk job in Italy, right under the nose of the mafia. Charlie's friend doesn't get very far, so Charlie takes over the 'job'. Using three Mini Coopers, a couple of Jaguars and a bus, he hopes to bring Torino to a standstill, steal a fortune in gold and escape in the chaos.", "video": false, "id": 10536, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Italian Job", "tagline": "Introducing the plans for a new business venture: \"The Italian Job.\"", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0064505", "adult": false, "backdrop_path": "/kvcRUcDOE9ShpCn02IQZsKboTTA.jpg", "production_companies": [{"name": "Oakhurst Productions", "id": 8912}], "release_date": "1969-06-02", "popularity": 0.668963740555876, "original_title": "The Italian Job", "budget": 0, "cast": [{"name": "Michael Caine", "character": "Charlie Croker", "id": 3895, "credit_id": "52fe43829251416c75013383", "cast_id": 8, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 0}, {"name": "No\u00ebl Coward", "character": "Mr. Bridger", "id": 12718, "credit_id": "52fe43829251416c75013387", "cast_id": 9, "profile_path": "/nwEUYc2LZW7RIdVha8HK1zAusTe.jpg", "order": 1}, {"name": "Benny Hill", "character": "Professor Simon Peach", "id": 55879, "credit_id": "52fe43829251416c7501338b", "cast_id": 10, "profile_path": "/dfzklG9OHMEeWEeneaxG3cZRsjh.jpg", "order": 2}, {"name": "Margaret Blye", "character": "Lorna", "id": 65552, "credit_id": "52fe43829251416c7501338f", "cast_id": 11, "profile_path": "/hc23lp1JvAqQYKJvrdOJMlhvJ3S.jpg", "order": 3}, {"name": "Raf Vallone", "character": "Altabani", "id": 3268, "credit_id": "52fe43829251416c7501339f", "cast_id": 14, "profile_path": "/kmXprY5YSYc5ubCVzDjGTK0lntq.jpg", "order": 4}, {"name": "Tony Beckley", "character": "Freddie", "id": 14816, "credit_id": "52fe43829251416c750133a3", "cast_id": 15, "profile_path": "/A64IcyG8O9lBCMz7jiBLF2OXlaF.jpg", "order": 5}, {"name": "Rossano Brazzi", "character": "Beckerman", "id": 29327, "credit_id": "52fe43829251416c750133a7", "cast_id": 16, "profile_path": "/dUPvEX4qQMX9Cu4tknkLgN0eePV.jpg", "order": 6}, {"name": "Irene Handl", "character": "Miss Peach", "id": 79641, "credit_id": "52fe43829251416c750133ab", "cast_id": 17, "profile_path": "/ydgfpIXL3Abx8wf0qpJue9QztG1.jpg", "order": 7}, {"name": "John Le Mesurier", "character": "Governor", "id": 14264, "credit_id": "52fe43829251416c750133af", "cast_id": 18, "profile_path": "/42H9hrRtpFrQ7LFlBr8AnHfgDnr.jpg", "order": 8}, {"name": "Fred Emney", "character": "Birkinshaw", "id": 980345, "credit_id": "52fe43829251416c750133b3", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "John Clive", "character": "Garage Manager", "id": 117548, "credit_id": "52fe43829251416c750133b7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Graham Payn", "character": "Keats", "id": 1127186, "credit_id": "52fe43829251416c750133bb", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Michael Standing", "character": "Arthur", "id": 199884, "credit_id": "52fe43839251416c750133bf", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Stanley Caine", "character": "Coco", "id": 1127187, "credit_id": "52fe43839251416c750133c3", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Barry Cox", "character": "Chris", "id": 1127188, "credit_id": "52fe43839251416c750133c7", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Peter Collinson", "department": "Directing", "job": "Director", "credit_id": "52fe43829251416c75013367", "profile_path": null, "id": 39779}], "vote_average": 7.0, "runtime": 99}, "51497": {"poster_path": "/cA81CI8odKv5KHRUUzJbj83yN7c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 626137675, "overview": "Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.", "video": false, "id": 51497, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Fast Five", "tagline": "Get the Fifth Gear.", "vote_count": 747, "homepage": "http://www.watchvideoseries.com/movies/fast-five-2011-2/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt1596343", "adult": false, "backdrop_path": "/nL1Q0micYpF5nNkaI2ZNeLuOLGZ.jpg", "production_companies": [{"name": "Original Film", "id": 333}, {"name": "Universal Pictures", "id": 33}, {"name": "One Race Productions", "id": 1225}], "release_date": "2011-04-28", "popularity": 1.21575253896071, "original_title": "Fast Five", "budget": 125000000, "cast": [{"name": "Dwayne Johnson", "character": "Luke Hobbs", "id": 18918, "credit_id": "52fe47f6c3a36847f8151ab7", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe47f6c3a36847f8151abb", "cast_id": 2, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe47f6c3a36847f8151abf", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "52fe47f6c3a36847f8151ac3", "cast_id": 4, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "52fe47f6c3a36847f8151ac7", "cast_id": 5, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 4}, {"name": "Elsa Pataky", "character": "Elena Neves", "id": 73269, "credit_id": "52fe47f6c3a36847f8151acb", "cast_id": 6, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 5}, {"name": "Ludacris", "character": "Tej", "id": 8171, "credit_id": "52fe47f6c3a36847f8151acf", "cast_id": 7, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 6}, {"name": "Sung Kang", "character": "Han", "id": 61697, "credit_id": "52fe47f6c3a36847f8151ad3", "cast_id": 8, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 7}, {"name": "Gal Gadot", "character": "Gisele Harabo", "id": 90633, "credit_id": "52fe47f6c3a36847f8151ad7", "cast_id": 9, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 8}, {"name": "Matt Schulze", "character": "Vince", "id": 31841, "credit_id": "52fe47f6c3a36847f8151adb", "cast_id": 10, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 9}, {"name": "Joaquim de Almeida", "character": "Hernan Reyes", "id": 22462, "credit_id": "52fe47f6c3a36847f8151adf", "cast_id": 11, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 10}, {"name": "Tego Calderon", "character": "Tego Leo", "id": 96321, "credit_id": "52fe47f6c3a36847f8151b4f", "cast_id": 31, "profile_path": "/pz7i7LV35XRC5Si8liRoYWdrcr0.jpg", "order": 11}, {"name": "Don Omar", "character": "Rico Santos", "id": 90634, "credit_id": "52fe47f6c3a36847f8151b53", "cast_id": 32, "profile_path": "/f1INIG2TE9jXXp5A3gGJR9UkePK.jpg", "order": 12}, {"name": "Michael Irby", "character": "Zizi", "id": 124304, "credit_id": "52fe47f6c3a36847f8151b57", "cast_id": 33, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 13}, {"name": "Fernando Chien", "character": "Wilkes", "id": 216782, "credit_id": "52fe47f6c3a36847f8151b5b", "cast_id": 34, "profile_path": "/lnMvhgE5ZKBaWvGN6beUJUqeHxD.jpg", "order": 14}, {"name": "Alimi Ballard", "character": "Fusco", "id": 165284, "credit_id": "52fe47f6c3a36847f8151b5f", "cast_id": 35, "profile_path": "/zCYjN3Lkkx9GmhEoT9lUV6Dt2hR.jpg", "order": 15}, {"name": "Yorgo Constantine", "character": "Chato", "id": 21051, "credit_id": "52fe47f6c3a36847f8151b63", "cast_id": 36, "profile_path": "/e5kenJiOgpX9bvldQibR8ODpm4U.jpg", "order": 16}, {"name": "Geoff Meed", "character": "Macroy", "id": 86204, "credit_id": "52fe47f6c3a36847f8151b67", "cast_id": 37, "profile_path": "/rv3ClSULRuvxuQvvXpC6Ki8BAKD.jpg", "order": 17}, {"name": "Joseph Melendez", "character": "Chief of Police Alemeida", "id": 1014572, "credit_id": "52fe47f6c3a36847f8151b6b", "cast_id": 38, "profile_path": "/l0bsVQaWCpowRhqI2h0aO7aIaL6.jpg", "order": 18}, {"name": "Jeirmarie Osorio", "character": "Rosa", "id": 1093706, "credit_id": "52fe47f6c3a36847f8151b6f", "cast_id": 39, "profile_path": "/gxFfZDaVVyGbNfX6J3dm3TfRv4h.jpg", "order": 19}, {"name": "Mark Hicks", "character": "Capa", "id": 80242, "credit_id": "52fe47f6c3a36847f8151b73", "cast_id": 40, "profile_path": "/xPXK9kXnKh97eES0SSxx83QKTfw.jpg", "order": 20}, {"name": "Esteban Cueto", "character": "Berto", "id": 60653, "credit_id": "52fe47f6c3a36847f8151b77", "cast_id": 41, "profile_path": "/jJYm6K3g3lQvic2Sgjh9SPb4FDq.jpg", "order": 21}, {"name": "Corey Michael Eubanks", "character": "Lanzo", "id": 147207, "credit_id": "52fe47f6c3a36847f8151b7b", "cast_id": 42, "profile_path": "/kLm0RuB7J5SBnKL8oLoyIBMwL3f.jpg", "order": 22}, {"name": "Luis Da Silva Jr.", "character": "Diogo", "id": 37149, "credit_id": "52fe47f6c3a36847f8151b7f", "cast_id": 43, "profile_path": "/6VADPoVvQTFqiFhmHMJovneXX26.jpg", "order": 23}, {"name": "Luis Gonzaga", "character": "Cash House Door Guard", "id": 979307, "credit_id": "52fe47f6c3a36847f8151b83", "cast_id": 44, "profile_path": "/mQahpzXaMSO71D2AyCZVY8DVfPa.jpg", "order": 24}, {"name": "Carlos Sanchez", "character": "Evidence Technician", "id": 170653, "credit_id": "52fe47f6c3a36847f8151b87", "cast_id": 45, "profile_path": "/uMTRNudOKcpASr1WlIlgbS8FjP8.jpg", "order": 25}, {"name": "Benjamin Blankenship", "character": "Lead DEA Agent", "id": 1093707, "credit_id": "52fe47f6c3a36847f8151b8b", "cast_id": 46, "profile_path": "/xl0O9d7xS6XGSRqQl16StOxtkOR.jpg", "order": 26}, {"name": "Pedro Garc\u00eda", "character": "Conductor", "id": 1077794, "credit_id": "52fe47f6c3a36847f8151b8f", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Arturo Gaskins", "character": "Croupier", "id": 1093708, "credit_id": "52fe47f6c3a36847f8151b93", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Jay Jackson", "character": "Field Reporter", "id": 1093709, "credit_id": "52fe47f6c3a36847f8151b97", "cast_id": 49, "profile_path": "/xudGrbxeRjngwGZFubQ02kKQmNr.jpg", "order": 29}, {"name": "Arlene Santana", "character": "Field Reporter", "id": 986813, "credit_id": "52fe47f6c3a36847f8151b9b", "cast_id": 50, "profile_path": "/x96NJ31fHxtqhkbQzB83HCBJsC5.jpg", "order": 30}, {"name": "Kent Shocknek", "character": "News Anchor", "id": 79086, "credit_id": "52fe47f6c3a36847f8151b9f", "cast_id": 51, "profile_path": "/zmX6fNZ7zH18FokBGv5r1sfPmGw.jpg", "order": 31}, {"name": "Sharon Tay", "character": "News Anchor", "id": 156131, "credit_id": "52fe47f6c3a36847f8151ba3", "cast_id": 52, "profile_path": "/qJhvCSCXHD9Duvz5pP0sLQQl6n2.jpg", "order": 32}, {"name": "Andy Rosa Adler", "character": "News Anchor", "id": 1093710, "credit_id": "52fe47f6c3a36847f8151ba7", "cast_id": 53, "profile_path": "/dFW4zpOYAOfsVyguGvJAafyraSe.jpg", "order": 33}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe47f6c3a36847f8151ae5", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 7.1, "runtime": 130}, "10538": {"poster_path": "/u08JSmddkrqmx8ciFikhprWKqqB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44065653, "overview": "An infamous terrorist has evaded capture for a long time by being extremely clever and ruthless. Things get interesting when he hijacks a plane carrying famous security expert John Cutter, who isn't about to stand this sort of thing.", "video": false, "id": 10538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Passenger 57", "tagline": "He's an ex-cop with a bad mouth, a bad attitude, and a bad seat. For the terrorists on flight 163 . . . he's very bad news.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105104", "adult": false, "backdrop_path": "/w9ecomJahB1UlVkXWFgnFtRAgkc.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1992-11-05", "popularity": 0.629259439836711, "original_title": "Passenger 57", "budget": 15000000, "cast": [{"name": "Wesley Snipes", "character": "John Cutter", "id": 10814, "credit_id": "52fe43839251416c750134b3", "cast_id": 10, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Bruce Payne", "character": "Charles Rane", "id": 27422, "credit_id": "52fe43839251416c750134b7", "cast_id": 11, "profile_path": "/nUfoRt0YA3SXbTAPKjNGq5lYuOc.jpg", "order": 1}, {"name": "Tom Sizemore", "character": "Sly Delvecchio", "id": 3197, "credit_id": "52fe43839251416c750134bb", "cast_id": 12, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 2}, {"name": "Alex Datcher", "character": "Marti Slayton", "id": 46924, "credit_id": "52fe43839251416c750134bf", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Bruce Greenwood", "character": "Stuart Ramsey", "id": 21089, "credit_id": "52fe43839251416c750134c3", "cast_id": 14, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 4}, {"name": "Robert Hooks", "character": "Dwight Henderson", "id": 88094, "credit_id": "52fe43839251416c750134c7", "cast_id": 15, "profile_path": "/9VwM5d69z55UQTwvpJpHe8W3v4p.jpg", "order": 5}, {"name": "Elizabeth Hurley", "character": "Sabrina Ritchie", "id": 13918, "credit_id": "52fe43839251416c750134cb", "cast_id": 16, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 6}, {"name": "Michael Horse", "character": "Forget", "id": 175468, "credit_id": "52fe43839251416c750134cf", "cast_id": 17, "profile_path": "/yZEThGByfkWGYMK0bYBJkjsucNm.jpg", "order": 7}, {"name": "Marc Macaulay", "character": "Vincent", "id": 6908, "credit_id": "52fe43839251416c750134d3", "cast_id": 18, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 8}, {"name": "Ernie Lively", "character": "Chief Biggs", "id": 59184, "credit_id": "52fe43839251416c750134d7", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Duchess Tomasello", "character": "Mrs. Edwards", "id": 128123, "credit_id": "52fe43839251416c750134db", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "William Edward Roberts", "character": "Matthew", "id": 1161627, "credit_id": "52fe43839251416c750134df", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "James Short", "character": "Allen", "id": 191339, "credit_id": "52fe43839251416c750134e3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Joel Fogel", "character": "Dr. Bauman", "id": 1161630, "credit_id": "52fe43839251416c750134e7", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Jane McPherson", "character": "Nurse", "id": 1161631, "credit_id": "52fe43839251416c750134eb", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Hooks", "department": "Directing", "job": "Director", "credit_id": "52fe43839251416c7501347f", "profile_path": "/xqzV7byaH95GSvR86JjGzHceIY4.jpg", "id": 40230}], "vote_average": 5.6, "runtime": 84}, "10539": {"poster_path": "/fDfgO1jkPAIX9ZbXka9XcOfDWl3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28921264, "overview": "James' happy life at the English seaside is rudely ended when his parents are killed by a rhinoceros and he goes to live with his two horrid aunts. Daringly saving the life of a spider he comes into possession of magic boiled crocodile tongues, after which an enormous peach starts to grow in the garden.", "video": false, "id": 10539, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "James and the Giant Peach", "tagline": "Adventures this big don't grow on trees.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116683", "adult": false, "backdrop_path": "/xxxls5ndPmeFh5rnNjY2zm0kSlK.jpg", "production_companies": [{"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1996-04-12", "popularity": 1.13905167820635, "original_title": "James and the Giant Peach", "budget": 38000000, "cast": [{"name": "Paul Terry", "character": "James", "id": 65565, "credit_id": "52fe43839251416c75013529", "cast_id": 1, "profile_path": "/lWXLHabwAatsruet9UlPjYEbZMi.jpg", "order": 0}, {"name": "Joanna Lumley", "character": "Aunt Spiker", "id": 34901, "credit_id": "52fe43839251416c7501352d", "cast_id": 2, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 1}, {"name": "Miriam Margolyes", "character": "Aunt Sponge / Glowworm (voice)", "id": 6199, "credit_id": "52fe43839251416c75013531", "cast_id": 3, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Miss Spider (voice)", "id": 4038, "credit_id": "52fe43839251416c75013535", "cast_id": 4, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Richard Dreyfuss", "character": "Centipede (voice)", "id": 3037, "credit_id": "52fe43839251416c75013539", "cast_id": 5, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 4}, {"name": "Jane Leeves", "character": "Ladybug (voice)", "id": 52951, "credit_id": "52fe43839251416c7501358b", "cast_id": 20, "profile_path": "/wioqL9owN0Rap04qeGXchc7fi20.jpg", "order": 5}, {"name": "Pete Postlethwaite", "character": "Old Man", "id": 4935, "credit_id": "52fe43839251416c7501358f", "cast_id": 21, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 6}, {"name": "David Thewlis", "character": "Earthworm (voice)", "id": 11207, "credit_id": "52fe43839251416c75013593", "cast_id": 22, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 7}, {"name": "J. Stephen Coyle", "character": "Reporter #2", "id": 1011424, "credit_id": "52fe43839251416c75013597", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Steven Culp", "character": "James' Father", "id": 63544, "credit_id": "52fe43839251416c7501359b", "cast_id": 24, "profile_path": "/7ovUpn6k3JgM3OFDzz8C8vN3Bdh.jpg", "order": 9}, {"name": "Cirocco Dunlap", "character": "Girl with Telescope", "id": 1011436, "credit_id": "52fe43839251416c7501359f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Michael Girardin", "character": "Reporter #1", "id": 177175, "credit_id": "52fe43839251416c750135a3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Tony Haney", "character": "Reporter #3", "id": 215904, "credit_id": "52fe43839251416c750135a7", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Kathryn Howell", "character": "Woman in Bathrobe (as Kathrine Howell)", "id": 12555, "credit_id": "52fe43839251416c750135ab", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Simon Callow", "character": "Grasshopper (voice)", "id": 4001, "credit_id": "52fe43839251416c750135af", "cast_id": 29, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 14}], "directors": [{"name": "Henry Selick", "department": "Directing", "job": "Director", "credit_id": "52fe43839251416c7501353f", "profile_path": "/kiTzGq0peOTsjQnzQI3ttwqqsOv.jpg", "id": 57646}], "vote_average": 6.0, "runtime": 79}, "10545": {"poster_path": "/xS6f48xcKsRHYI4XZh2tBwLcgku.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100138851, "overview": "When Quasi defies the evil Frollo and ventures out to the Festival of Fools, the cruel crowd jeers him. Rescued by fellow outcast the gypsy Esmeralda, Quasi soon finds himself battling to save the people and the city he loves.", "video": false, "id": 10545, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Hunchback of Notre Dame", "tagline": "", "vote_count": 222, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oAq4tE4fTXfsWz35kyajoWNzHfo.jpg", "poster_path": "/vX0k6lP6tBi8XHdvNtOvsbNgyxM.jpg", "id": 97456, "name": "The Hunchback of Notre Dame Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116583", "adult": false, "backdrop_path": "/emX6VwN8C3Q1T9wCTDMa8r3mfQA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1996-06-21", "popularity": 1.44295709866167, "original_title": "The Hunchback of Notre Dame", "budget": 100000000, "cast": [{"name": "Tom Hulce", "character": "Quasimodo", "id": 3999, "credit_id": "52fe43859251416c750138ff", "cast_id": 1, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 0}, {"name": "Demi Moore", "character": "Esmeralda", "id": 3416, "credit_id": "52fe43859251416c75013903", "cast_id": 2, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Jason Alexander", "character": "Hugo", "id": 1206, "credit_id": "52fe43859251416c75013907", "cast_id": 3, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 2}, {"name": "Kevin Kline", "character": "Phoebus", "id": 8945, "credit_id": "52fe43859251416c7501390b", "cast_id": 4, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 3}, {"name": "Tony Jay", "character": "Frollo", "id": 65598, "credit_id": "52fe43859251416c7501390f", "cast_id": 5, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 4}, {"name": "Mary Kay Bergman", "character": "Quasimodo's Mother", "id": 30695, "credit_id": "52fe43859251416c75013955", "cast_id": 17, "profile_path": "/q6zJHuTvaZAf8nOasfHRVl02U9a.jpg", "order": 5}, {"name": "Corey Burton", "character": "Brutish Guard", "id": 35219, "credit_id": "52fe43859251416c75013959", "cast_id": 18, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 6}, {"name": "Bill Fagerbakke", "character": "Oafish Guard", "id": 34398, "credit_id": "52fe43859251416c7501395d", "cast_id": 19, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 7}, {"name": "Paul Kandel", "character": "Clopin", "id": 72250, "credit_id": "52fe43859251416c75013961", "cast_id": 20, "profile_path": "/3GlZndc7isMc6CDGpPb998XsafD.jpg", "order": 8}, {"name": "Charles Kimbrough", "character": "Victor", "id": 20749, "credit_id": "52fe43859251416c75013965", "cast_id": 21, "profile_path": "/zDQ8y4TZBYN7Q2No94AAyP94osZ.jpg", "order": 9}, {"name": "Heidi Mollenhauer", "character": "Esmeralda (singing voice)", "id": 1022161, "credit_id": "52fe43859251416c75013969", "cast_id": 22, "profile_path": "/ul5uck01Famoaw86764XMR8d4X8.jpg", "order": 10}, {"name": "Patrick Pinney", "character": "Guards / Gypsies", "id": 61968, "credit_id": "52fe43859251416c7501396d", "cast_id": 23, "profile_path": "/eU2rqG140FCPwzIjJTymVOd5RBY.jpg", "order": 11}, {"name": "Gary Trousdale", "character": "The Old Heretic", "id": 62047, "credit_id": "52fe43859251416c75013971", "cast_id": 24, "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "order": 12}, {"name": "Jim Cummings", "character": "Guards / Gypsies", "id": 12077, "credit_id": "52fe43859251416c75013975", "cast_id": 25, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 13}, {"name": "David Ogden Stiers", "character": "Archdeacon", "id": 28010, "credit_id": "52fe43859251416c75013979", "cast_id": 26, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 14}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe43859251416c75013915", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}, {"name": "Kirk Wise", "department": "Directing", "job": "Director", "credit_id": "52fe43859251416c7501391b", "profile_path": "/aoh7wnHk3F1HdOUBLI5Yfwd8rnN.jpg", "id": 62048}], "vote_average": 6.6, "runtime": 91}, "16991": {"poster_path": "/nqde2Ud03uLrekBZaCMXBa16Cm2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24007324, "overview": "Bi-polar mall security guard Ronnie Barnhardt is called into action to stop a flasher from turning shopper's paradise into his personal peep show. But when Barnhardt can't bring the culprit to justice, a surly police detective, is recruited to close the case.", "video": false, "id": 16991, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Observe and Report", "tagline": "Right now, the world needs a hero.", "vote_count": 54, "homepage": "http://observe-and-report.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1197628", "adult": false, "backdrop_path": "/abFNACvdD8Ml2Qa7ZhIILx2MG30.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2009-04-10", "popularity": 0.281532787596587, "original_title": "Observe and Report", "budget": 0, "cast": [{"name": "Seth Rogen", "character": "Ronnie Barnhardt", "id": 19274, "credit_id": "52fe46fb9251416c7508a1b3", "cast_id": 3, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Anna Faris", "character": "Brandi", "id": 1772, "credit_id": "52fe46fb9251416c7508a1b7", "cast_id": 4, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Michael Pe\u00f1a", "character": "Dennis", "id": 454, "credit_id": "52fe46fc9251416c7508a1bb", "cast_id": 5, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Detective Harrison", "id": 11477, "credit_id": "52fe46fc9251416c7508a1bf", "cast_id": 6, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Collette Wolfe", "character": "Nell", "id": 86624, "credit_id": "52fe46fc9251416c7508a1c3", "cast_id": 7, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 4}, {"name": "Danny McBride", "character": "Caucasian Crackhead", "id": 62862, "credit_id": "52fe46fc9251416c7508a1c7", "cast_id": 8, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 5}, {"name": "Aziz Ansari", "character": "Saddamn", "id": 86626, "credit_id": "52fe46fc9251416c7508a1cb", "cast_id": 9, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 6}, {"name": "Celia Weston", "character": "Mom", "id": 1989, "credit_id": "54ac43199251414d67009431", "cast_id": 10, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "Dan Bakkedahl", "character": "Mark", "id": 1183546, "credit_id": "54ac4580c3a368077b00784d", "cast_id": 11, "profile_path": "/oAZhhAPfh9maSN7airJZUaJXh60.jpg", "order": 8}, {"name": "Jesse Plemons", "character": "Charles", "id": 88124, "credit_id": "54ac45d792514155f2004481", "cast_id": 12, "profile_path": "/5EOD7UtSHYWR66BcDE2EnSvrQ1L.jpg", "order": 9}, {"name": "Eddie Rouse", "character": "Angry Store Owner", "id": 79419, "credit_id": "54ac7529c3a368235200493c", "cast_id": 19, "profile_path": "/9SQXQBYsnMaLtsXx3Baxye8JVon.jpg", "order": 10}, {"name": "John Yuan", "character": "John Yuen", "id": 1026789, "credit_id": "54ac462a92514163430015c4", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Matt Yuan", "character": "Matt Yuen", "id": 1104394, "credit_id": "54ac466592514157570043c3", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Randy Gambill", "character": "Flasher", "id": 963885, "credit_id": "54ac72fc925141575700479a", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Alston Brown", "character": "Bruce", "id": 1026790, "credit_id": "54ac7359c3a36822b7004ac4", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Cody Midthunder", "character": "D-Rock", "id": 1026791, "credit_id": "54ac73a692514157570047a4", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Debra-Jayne Brown", "character": "Female Reporter", "id": 1410029, "credit_id": "54ac73f0c3a36824c2004566", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Patton Oswalt", "character": "Toast A Bun Manager", "id": 10872, "credit_id": "54ac76599251416343001989", "cast_id": 20, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 17}, {"name": "Lauren Miller", "character": "Girl Employee", "id": 54716, "credit_id": "54ac76b992514157570047e6", "cast_id": 21, "profile_path": "/baHXpn6DK8ai7Pg7lsywD642uT2.jpg", "order": 18}, {"name": "Ben Best", "character": "Detective Nichols", "id": 54709, "credit_id": "54ad9a3e92514150a70002b4", "cast_id": 22, "profile_path": "/39Rn6j5zFapIadjoA5l5AbpE0pu.jpg", "order": 19}, {"name": "William Sterchi", "character": "Department Store Manager", "id": 202830, "credit_id": "54ad9a99c3a36824be0001e2", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Danny McBride", "character": "Caucasian Crackhead", "id": 62862, "credit_id": "54ad9cfd92514169e00002a1", "cast_id": 24, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 21}, {"name": "David House", "character": "Policeman", "id": 79211, "credit_id": "54ad9dcbc3a3682f9d000228", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Fran Martone", "character": "Psychologist", "id": 1054505, "credit_id": "54ada0c2c3a368201d000379", "cast_id": 26, "profile_path": "/kifmtJey3f3zAvH0Krw6yeXWoN7.jpg", "order": 23}, {"name": "Amy Baklini", "character": "Young Mother", "id": 1011304, "credit_id": "54ada46a925141508c000336", "cast_id": 27, "profile_path": "/oPJh1C4WxsCDGcNNHV95HP3C11J.jpg", "order": 24}], "directors": [{"name": "Jody Hill", "department": "Directing", "job": "Director", "credit_id": "52fe46fb9251416c7508a1a9", "profile_path": "/vVQbPkXeRBsZxA45tNa7sXyNGct.jpg", "id": 54710}], "vote_average": 5.8, "runtime": 86}, "158011": {"poster_path": "/ekKVxnKeHEQiBznaEnj0VmK28bc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51872378, "overview": "Jordan Turner (Halle Berry) is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But then teenager Casey Welson (Abigail Breslin) is abducted in the back of a man's car and calls 911. And Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save Casey, but to make sure the man is brought to justice.", "video": false, "id": 158011, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Call", "tagline": "There are 188 million 911 calls a year. This one made it personal.", "vote_count": 680, "homepage": "http://www.call-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1911644", "adult": false, "backdrop_path": "/dQq32z4XmYIiK406tZhMhfxmnr.jpg", "production_companies": [{"name": "Troika Pictures", "id": 15462}, {"name": "WWE Studios", "id": 10339}, {"name": "Emergency Films", "id": 15463}, {"name": "Apotheosis Media Group", "id": 15464}, {"name": "Amasia Entertainment", "id": 15465}, {"name": "TriStar Pictures", "id": 559}], "release_date": "2013-03-14", "popularity": 0.780812436302133, "original_title": "The Call", "budget": 13000000, "cast": [{"name": "Halle Berry", "character": "Jordan Turner", "id": 4587, "credit_id": "52fe4bd99251416c910e7871", "cast_id": 4, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 0}, {"name": "Abigail Breslin", "character": "Casey Welson", "id": 17140, "credit_id": "52fe4bd99251416c910e786d", "cast_id": 3, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 1}, {"name": "Morris Chestnut", "character": "Officer Phillips", "id": 9779, "credit_id": "52fe4bd99251416c910e7875", "cast_id": 5, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 2}, {"name": "Michael Imperioli", "character": "Alan Denado", "id": 11486, "credit_id": "52fe4bd99251416c910e7879", "cast_id": 6, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 3}, {"name": "Ella Rae Peck", "character": "Autumn", "id": 83244, "credit_id": "52fe4bd99251416c910e787d", "cast_id": 7, "profile_path": "/mKDSED8DS0mZQVj9LclrSlR4DFE.jpg", "order": 4}, {"name": "Roma Maffia", "character": "Maddy", "id": 21366, "credit_id": "52fe4bd99251416c910e7881", "cast_id": 8, "profile_path": "/tfscWeBOGA9aysLbYoOduimpTOk.jpg", "order": 5}, {"name": "Steven Williams", "character": "Terrance", "id": 51579, "credit_id": "52fe4bd99251416c910e7885", "cast_id": 9, "profile_path": "/jJCa0bKe9zBe31bbuDsiNtgoo5W.jpg", "order": 6}, {"name": "Michael Eklund", "character": "Michael Foster", "id": 67979, "credit_id": "52fe4bd99251416c910e7889", "cast_id": 10, "profile_path": "/rELfDk8X4yYFjjY7c6so3KqaBA6.jpg", "order": 7}, {"name": "Justina Machado", "character": "Michael Foster's Wife", "id": 95517, "credit_id": "52fe4bd99251416c910e788d", "cast_id": 11, "profile_path": "/rklLmYPB4fKFP3mKZw2C3oWNaQJ.jpg", "order": 8}, {"name": "Jos\u00e9 Z\u00fa\u00f1iga", "character": "Marco", "id": 10963, "credit_id": "52fe4bd99251416c910e7891", "cast_id": 12, "profile_path": "/8RqlMIr7hDRWkph3wqo9BFmbuDo.jpg", "order": 9}, {"name": "Tara Platt", "character": "Female Trainee", "id": 191252, "credit_id": "52fe4bd99251416c910e78b9", "cast_id": 19, "profile_path": "/mFa8gLfNhOp3NDiAKDdx1yQ5we4.jpg", "order": 10}], "directors": [{"name": "Brad Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4bd99251416c910e7863", "profile_path": "/5SAJd9sEFefkFoStAPXuKVHnMoX.jpg", "id": 37948}], "vote_average": 6.4, "runtime": 94}, "10559": {"poster_path": "/n0QAAZmIaPPIShVkk8eiKwfGV9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68106245, "overview": "When a rare phenomenon gives police officer John Sullivan the chance to speak to his father, 30 years in the past, he takes the opportunity to prevent his dad's tragic death. After his actions inadvertently give rise to a series of brutal murders he and his father must find a way to fix the consequences of altering time.", "video": false, "id": 10559, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Frequency", "tagline": "The future is listening.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0186151", "adult": false, "backdrop_path": "/5kqYX0wHIHmZtoEzh1PD4qA2tCE.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2000-04-28", "popularity": 0.833649967088661, "original_title": "Frequency", "budget": 31000000, "cast": [{"name": "Dennis Quaid", "character": "Frank Sullivan", "id": 6065, "credit_id": "52fe43879251416c75014029", "cast_id": 20, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Jim Caviezel", "character": "John Sullivan", "id": 8767, "credit_id": "52fe43879251416c7501402d", "cast_id": 21, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 1}, {"name": "Shawn Doyle", "character": "Jack Shepard", "id": 25878, "credit_id": "52fe43879251416c75014031", "cast_id": 22, "profile_path": "/3NGdSQFTpcv5Bbv5YmaLKDW60M4.jpg", "order": 2}, {"name": "Elizabeth Mitchell", "character": "Julia 'Jules' Sullivan", "id": 31167, "credit_id": "52fe43889251416c75014041", "cast_id": 25, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 3}, {"name": "Andre Braugher", "character": "Satch DeLeon", "id": 6861, "credit_id": "52fe43889251416c75014045", "cast_id": 26, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 4}, {"name": "Noah Emmerich", "character": "Gordo Hersch", "id": 11315, "credit_id": "52fe43889251416c75014049", "cast_id": 27, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 5}, {"name": "Michael Cera", "character": "Gordy Jr.", "id": 39995, "credit_id": "52fe43889251416c75014053", "cast_id": 29, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 6}, {"name": "Melissa Errico", "character": "Samantha Thomas", "id": 65756, "credit_id": "52fe43889251416c75014057", "cast_id": 30, "profile_path": "/alEwV5OsTuKzLRqQeuEiR8ZTpud.jpg", "order": 7}, {"name": "Peter MacNeill", "character": "Butch Foster", "id": 229, "credit_id": "52fe43889251416c7501405b", "cast_id": 31, "profile_path": "/wNBsE9FqylAdCwzRvZtkvZJCfVI.jpg", "order": 8}, {"name": "Daniel Henson", "character": "Johnny Sullivan", "id": 65757, "credit_id": "52fe43889251416c7501405f", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Jack McCormack", "character": "Commander Butch O'Connell", "id": 65759, "credit_id": "52fe43889251416c75014067", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Stephen Joffe", "character": "Gordo Hersch", "id": 65758, "credit_id": "52fe43889251416c75014063", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Nesbitt Blaisdell", "character": "Fred Shepard", "id": 21152, "credit_id": "52fe43889251416c7501406b", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Marin Hinkle", "character": "Sissy Clark", "id": 65760, "credit_id": "52fe43889251416c7501406f", "cast_id": 36, "profile_path": "/gqMABmd8yE6nhpdK900zqRDEjor.jpg", "order": 13}, {"name": "Richard Sali", "character": "Chuck Hayes", "id": 65761, "credit_id": "52fe43889251416c75014073", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Joan Heney", "character": "Laura Shepard", "id": 59199, "credit_id": "52fe43889251416c75014077", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Jordan Bridges", "character": "Graham 'Gib' Gibson", "id": 65762, "credit_id": "52fe43889251416c7501407b", "cast_id": 39, "profile_path": "/ooj3gLk1klzp4SD4Sg4NsHSpM2v.jpg", "order": 16}, {"name": "Jessica Meyer", "character": "Teenage Runaway", "id": 65763, "credit_id": "52fe43889251416c7501407f", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Kirsten Bishop", "character": "Carrie Reynolds", "id": 65764, "credit_id": "52fe43889251416c75014083", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Rocco Sisto", "character": "Daryl Simpson", "id": 65765, "credit_id": "52fe43889251416c75014087", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013fd7", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 6.8, "runtime": 118}, "395": {"poster_path": "/9xzRKUBIqLwhhOYtcE7P1BbWXP9.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171183863, "overview": "When scientists discover something in the Arctic that appears to be a buried Pyramid, they send a research team out to investigate. Little do they know that they are about to step into a hunting ground where Aliens are grown as sport for the Predator race. The films sees two of the largest comic and movie franchises collide in an all out war.", "video": false, "id": 395, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "AVP: Alien vs. Predator", "tagline": "Whoever wins... We lose", "vote_count": 394, "homepage": "http://www.avp-movie.com/", "belongs_to_collection": {"backdrop_path": "/c5ccDw4lcTUnYGdCxc2yEl8PjTk.jpg", "poster_path": "/zrApSsUX9i0qVntcCD0Pp55TdCy.jpg", "id": 115762, "name": "AVP Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0370263", "adult": false, "backdrop_path": "/1vRCFWKPydH82T1wsPMYkRjcZXY.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Stillking Films", "id": 11345}, {"name": "Brandywine Productions", "id": 19747}, {"name": "Lonlink Productions", "id": 19828}, {"name": "Kut Productions", "id": 19829}, {"name": "Zweite Babelsberg Film GmbH", "id": 19830}, {"name": "Inside Track Films", "id": 19834}, {"name": "Charenton Productions Limited", "id": 19835}], "release_date": "2004-08-13", "popularity": 1.50759960204486, "original_title": "AVP: Alien vs. Predator", "budget": 70000000, "cast": [{"name": "Sanaa Lathan", "character": "Alexa Woods", "id": 5411, "credit_id": "52fe423ec3a36847f800f085", "cast_id": 7, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 0}, {"name": "Raoul Bova", "character": "Sebastian de Rosa", "id": 5412, "credit_id": "52fe423ec3a36847f800f089", "cast_id": 8, "profile_path": "/t3EgxATMC90KozckK3QXWS5Yn7a.jpg", "order": 1}, {"name": "Ewen Bremner", "character": "Graeme Miller", "id": 1125, "credit_id": "52fe423ec3a36847f800f08d", "cast_id": 9, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 2}, {"name": "Colin Salmon", "character": "Maxwell Stafford", "id": 5414, "credit_id": "52fe423ec3a36847f800f091", "cast_id": 10, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 3}, {"name": "Tommy Flanagan", "character": "Mark Verheiden", "id": 2478, "credit_id": "52fe423ec3a36847f800f095", "cast_id": 11, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 4}, {"name": "Joseph Rye", "character": "Joe Connors", "id": 5415, "credit_id": "52fe423ec3a36847f800f099", "cast_id": 12, "profile_path": "/oPqpgbXaAKQkbVqh3eBlJ6Mu8QJ.jpg", "order": 5}, {"name": "Agathe de La Boulaye", "character": "Adele Rousseau", "id": 5416, "credit_id": "52fe423ec3a36847f800f09d", "cast_id": 13, "profile_path": "/qM8M1ZFp1kmn1IFTwPghxH2spYB.jpg", "order": 6}, {"name": "Carsten Norgaard", "character": "Rusten Quinn", "id": 5417, "credit_id": "52fe423ec3a36847f800f0a1", "cast_id": 14, "profile_path": "/aAbBoUqBS5d8vngGj6KsVzW0p64.jpg", "order": 7}, {"name": "Sam Troughton", "character": "Thomas Parks", "id": 5421, "credit_id": "52fe423ec3a36847f800f0a5", "cast_id": 15, "profile_path": "/yGSOUqTaeRwZ8A2Kh5Xy79NdXkM.jpg", "order": 8}, {"name": "Lance Henriksen", "character": "Charles Bishop Weyland", "id": 2714, "credit_id": "52fe423ec3a36847f800f0df", "cast_id": 25, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 9}, {"name": "Kieran Bew", "character": "Klaus", "id": 176199, "credit_id": "548d7109c3a36820be003577", "cast_id": 72, "profile_path": "/7M8zEhrRMEKwOij0rrUDV9t70FT.jpg", "order": 10}, {"name": "Adrian Bouchet", "character": "Sven", "id": 101923, "credit_id": "548d712b92514122fc003a82", "cast_id": 73, "profile_path": "/ad4W4W5bmKM6ablaCbXxSYilehd.jpg", "order": 11}, {"name": "Liz May Brice", "character": "Supervisor", "id": 68224, "credit_id": "548d714dc3a36820b8004285", "cast_id": 74, "profile_path": "/5cAhs4oR33lHJcjEIfDCnnOynX7.jpg", "order": 12}, {"name": "Tom Woodruff Jr.", "character": "Grid", "id": 109870, "credit_id": "548d716dc3a368153b0018f8", "cast_id": 75, "profile_path": null, "order": 13}, {"name": "Ian Whyte", "character": "Scar", "id": 946696, "credit_id": "548d7184c3a3684ea10038f1", "cast_id": 76, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 14}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe423ec3a36847f800f063", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.5, "runtime": 101}, "10567": {"poster_path": "/jZDp3C5howi40aCeqXDJliodXk9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 354248063, "overview": "An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.", "video": false, "id": 10567, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Dinosaur", "tagline": "You have never seen anything like this.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0130623", "adult": false, "backdrop_path": "/avv35YJ1Qd8OaGjON8Fbp3uqsHV.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2000-05-13", "popularity": 1.66648050190902, "original_title": "Dinosaur", "budget": 127500000, "cast": [{"name": " D.B. Sweeney", "character": "Aladar", "id": 61962, "credit_id": "52fe43899251416c75014325", "cast_id": 1, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 0}, {"name": "Alfre Woodard", "character": "Plio", "id": 1981, "credit_id": "52fe43899251416c75014329", "cast_id": 2, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 1}, {"name": "Ossie Davis", "character": "Yar", "id": 15531, "credit_id": "52fe43899251416c7501432d", "cast_id": 3, "profile_path": "/3NU3mq5ZiiX0D41DTB5fNsjFlDB.jpg", "order": 2}, {"name": "Max Casella", "character": "Zini", "id": 7133, "credit_id": "52fe43899251416c75014331", "cast_id": 4, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 3}, {"name": "Hayden Panettiere", "character": "Suri", "id": 17265, "credit_id": "52fe43899251416c75014377", "cast_id": 16, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 4}, {"name": "Samuel E. Wright", "character": "Kron", "id": 67392, "credit_id": "52fe43899251416c7501437b", "cast_id": 17, "profile_path": "/hOtuep1nRczthyxkJusb68rcuL1.jpg", "order": 5}, {"name": "Julianna Margulies", "character": "Neera", "id": 25654, "credit_id": "52fe43899251416c7501437f", "cast_id": 18, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 6}, {"name": "Peter Siragusa", "character": "Bruton", "id": 154693, "credit_id": "52fe43899251416c75014383", "cast_id": 19, "profile_path": "/ujsyxmkFL2Co1kJeNPPTVQrE9Dq.jpg", "order": 7}, {"name": "Joan Plowright", "character": "Baylene", "id": 23709, "credit_id": "52fe43899251416c75014387", "cast_id": 20, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 8}, {"name": "Della Reese", "character": "Eema", "id": 56950, "credit_id": "52fe43899251416c7501438b", "cast_id": 21, "profile_path": "/oTjpKi89cOCTIzejQ50CknDRnN5.jpg", "order": 9}], "directors": [{"name": "Ralph Zondag", "department": "Directing", "job": "Director", "credit_id": "52fe43899251416c75014337", "profile_path": "/qOB3JSCPedmXlAg5H6DkrP3l5J7.jpg", "id": 65855}, {"name": "Eric Leighton", "department": "Directing", "job": "Director", "credit_id": "52fe43899251416c7501433d", "profile_path": "/zTkxKEqz9No7MgN8wVXFBObfoYx.jpg", "id": 65856}], "vote_average": 6.2, "runtime": 82}, "67913": {"poster_path": "/iUHePguAaumQGvf3rlXHHAkAMoh.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 5358148, "overview": "An unorthodox Irish policeman with a confrontational personality is teamed up with an uptight FBI agent to investigate an international drug-smuggling ring.", "video": false, "id": 67913, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Guard", "tagline": "The FBI are about to discover that things work a little differently around here.", "vote_count": 87, "homepage": "http://www.sonyclassics.com/theguard", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1540133", "adult": false, "backdrop_path": "/uvmk0VM74sfJ6dgmEviqaxtZZ7n.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "Reprisal Films", "id": 7308}, {"name": "Aegis Film Fund", "id": 7309}, {"name": "Bord Scannan na hEireann / Irish Film Board", "id": 7310}], "release_date": "2011-07-07", "popularity": 0.463695361212681, "original_title": "The Guard", "budget": 6000000, "cast": [{"name": "Brendan Gleeson", "character": "Sergeant Gerry Boyle", "id": 2039, "credit_id": "52fe477dc3a368484e0c9ceb", "cast_id": 17, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 0}, {"name": "Don Cheadle", "character": "FBI agent Wendell Everett", "id": 1896, "credit_id": "52fe477dc3a368484e0c9cef", "cast_id": 18, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 1}, {"name": "Liam Cunningham", "character": "Francis Sheehy", "id": 15498, "credit_id": "52fe477dc3a368484e0c9cf3", "cast_id": 19, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 2}, {"name": "Mark Strong", "character": "Clive Cornell", "id": 2983, "credit_id": "52fe477dc3a368484e0c9cf7", "cast_id": 20, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 3}, {"name": "Katarina Cas", "character": "Gabriela McBride", "id": 549981, "credit_id": "52fe477dc3a368484e0c9cfb", "cast_id": 21, "profile_path": "/bgbjA8ZkmN3CGXo24Lgd5TInHDP.jpg", "order": 4}, {"name": "David Wilmot", "character": "Liam O'Leary", "id": 73287, "credit_id": "52fe477dc3a368484e0c9cff", "cast_id": 22, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 5}, {"name": "Rory Keenan", "character": "Garda Aidan McBride", "id": 1041731, "credit_id": "52fe477dc3a368484e0c9d03", "cast_id": 23, "profile_path": "/lWvTE3d8JQVQbPyIVadoy6OYbEk.jpg", "order": 6}, {"name": "Laurence Kinlan", "character": "Photographer", "id": 17019, "credit_id": "52fe477dc3a368484e0c9d07", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Dominique McElligott", "character": "Aoife O'Carroll", "id": 115146, "credit_id": "52fe477dc3a368484e0c9d0b", "cast_id": 25, "profile_path": "/v7c8fYjnBOVRnE2X9FnRQBtvK3x.jpg", "order": 8}, {"name": "Sarah Greene", "character": "Sinead Mulligan", "id": 1048644, "credit_id": "52fe477dc3a368484e0c9d0f", "cast_id": 26, "profile_path": "/8kzqNhc8kOUHZ61RJu0nIy7K4EZ.jpg", "order": 9}, {"name": "Fionnula Flanagan", "character": "Eileen Boyle", "id": 58068, "credit_id": "52fe477dc3a368484e0c9d13", "cast_id": 27, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 10}, {"name": "Gary Lydon", "character": "Garda Inspector Gerry Stanton", "id": 93209, "credit_id": "52fe477dc3a368484e0c9d17", "cast_id": 28, "profile_path": "/azTMUVMcNbJG3wdmBUIlzCHHEJw.jpg", "order": 11}], "directors": [{"name": "John Michael McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe477dc3a368484e0c9cdb", "profile_path": "/kYGIKwsaKLkXfWDJIm2ClHuvzby.jpg", "id": 65594}], "vote_average": 6.7, "runtime": 96}, "84306": {"poster_path": "/c9Q2to1Jpq8a0Zqto6Mqc1ujLYn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Newly single, 35, and uninspired by his job, Jesse Fisher worries that his best days are behind him. But no matter how much he buries his head in a book, life keeps pulling Jesse back. When his favorite college professor invites him to campus to speak at his retirement dinner, Jesse jumps at the chance. He is prepared for the nostalgia of the dining halls and dorm rooms, the parties and poetry seminars; what he doesn\u2019t see coming is Zibby \u2013 a beautiful, precocious, classical-music-loving sophomore. Zibby awakens scary, exciting, long-dormant feelings of possibility and connection that Jesse thought he had buried forever.", "video": false, "id": 84306, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Liberal Arts", "tagline": "", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1872818", "adult": false, "backdrop_path": "/z27PNUrpd8WYKSyacfbhUP1u6DR.jpg", "production_companies": [], "release_date": "2012-09-14", "popularity": 0.426668696670237, "original_title": "Liberal Arts", "budget": 0, "cast": [{"name": "Josh Radnor", "character": "Jesse", "id": 144009, "credit_id": "52fe48e99251416c9109c565", "cast_id": 2, "profile_path": "/NiPvX9YvxMNuUNqonYuF4EKLAV.jpg", "order": 0}, {"name": "Elizabeth Olsen", "character": "Zibby", "id": 550843, "credit_id": "52fe48e99251416c9109c569", "cast_id": 3, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 1}, {"name": "Richard Jenkins", "character": "Prof. Peter Hoberg", "id": 28633, "credit_id": "52fe48e99251416c9109c56d", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 2}, {"name": "Zac Efron", "character": "Nat", "id": 29222, "credit_id": "52fe48e99251416c9109c561", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 3}, {"name": "Allison Janney", "character": "Prof. Judith Fairfield", "id": 19, "credit_id": "52fe48e99251416c9109c571", "cast_id": 5, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 4}, {"name": "Elizabeth Reaser", "character": "Ana", "id": 53755, "credit_id": "52fe48e99251416c9109c575", "cast_id": 6, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 5}, {"name": "Kate Burton", "character": "Susan", "id": 20879, "credit_id": "52fe48e99251416c9109c579", "cast_id": 7, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 6}, {"name": "Kristen Bush", "character": "Leslie", "id": 205701, "credit_id": "52fe48e99251416c9109c589", "cast_id": 11, "profile_path": "/1OBUJ8QrQtHBym6AXYqC2w2G2mL.jpg", "order": 7}], "directors": [{"name": "Josh Radnor", "department": "Directing", "job": "Director", "credit_id": "52fe48e99251416c9109c57f", "profile_path": "/NiPvX9YvxMNuUNqonYuF4EKLAV.jpg", "id": 144009}], "vote_average": 6.1, "runtime": 97}, "26963": {"poster_path": "/hTmIGCqLKKUoEKJYOAJJau8mgne.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?", "video": false, "id": 26963, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Secret of Kells", "tagline": "Turn the darkness into light", "vote_count": 50, "homepage": "http://www.thesecretofkells.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0485601", "adult": false, "backdrop_path": "/i9KqqGDw6aOOxtQDdzP4xHmjyHT.jpg", "production_companies": [{"name": "G\u00e9b\u00e9ka Films", "id": 4621}], "release_date": "2009-02-09", "popularity": 0.60840924777655, "original_title": "The Secret of Kells", "budget": 0, "cast": [{"name": "Evan McGuire", "character": "Brendan", "id": 96669, "credit_id": "52fe4525c3a368484e04af97", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Brendan Gleeson", "character": "Abbot Cellach", "id": 2039, "credit_id": "52fe4525c3a368484e04af9b", "cast_id": 2, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 1}, {"name": "Liam Hourican", "character": "Brother Tang/Leonardo", "id": 96670, "credit_id": "52fe4525c3a368484e04af9f", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Mick Lally", "character": "Brother Aidan", "id": 96671, "credit_id": "52fe4525c3a368484e04afa3", "cast_id": 4, "profile_path": "/kEehdLmBQ56Byvr1yY7giUTM1Jd.jpg", "order": 3}, {"name": "Michael McGrath", "character": "Adult Brendan", "id": 96672, "credit_id": "52fe4525c3a368484e04afa7", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Christen Mooney", "character": "Aisling", "id": 96673, "credit_id": "52fe4525c3a368484e04afab", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Paul Tylak", "character": "Brother Assoua", "id": 96674, "credit_id": "52fe4525c3a368484e04afaf", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Paul Young", "character": "Brother Square", "id": 96675, "credit_id": "52fe4525c3a368484e04afb3", "cast_id": 8, "profile_path": null, "order": 7}], "directors": [{"name": "Tomm Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a368484e04afb9", "profile_path": "/mQsxkLXfPgUdtBZsUgfG1oDGucm.jpg", "id": 96676}, {"name": "Nora Twomey", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a368484e04afbf", "profile_path": null, "id": 96677}], "vote_average": 7.1, "runtime": 75}, "51540": {"poster_path": "/17rVRW7ond0PR2KJHY0xY00isTB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117, "overview": "For Nick (Jason Bateman), Kurt (Jason Sudeikis) and Dale (Charlie Day), the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses (Kevin Spacey, Colin Farrell, Jennifer Aniston) into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con (Jamie Foxx), the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers... permanently.", "video": false, "id": 51540, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Horrible Bosses", "tagline": "Ever wish your boss was dead?", "vote_count": 687, "homepage": "http://horriblebossesmovie.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zU3dVVBa3JW1nQVUsaFM0BeTnK.jpg", "id": 280588, "name": "Horrible Bosses Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1499658", "adult": false, "backdrop_path": "/1iVZJmeHW8MVMq7xlaHgLSv6qrc.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Rat Entertainment", "id": 12007}], "release_date": "2011-07-08", "popularity": 2.56791276967644, "original_title": "Horrible Bosses", "budget": 35000000, "cast": [{"name": "Jennifer Aniston", "character": "Dr. Julia Harris", "id": 4491, "credit_id": "52fe47f8c3a36847f8151faf", "cast_id": 1, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Jason Bateman", "character": "Nick Hendricks", "id": 23532, "credit_id": "52fe47f8c3a36847f8151fb3", "cast_id": 2, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 1}, {"name": "Charlie Day", "character": "Dale Arbus", "id": 95101, "credit_id": "52fe47f8c3a36847f8151fb7", "cast_id": 3, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 2}, {"name": "Jason Sudeikis", "character": "Kurt Buckman", "id": 58224, "credit_id": "52fe47f8c3a36847f8151fbb", "cast_id": 4, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 3}, {"name": "Colin Farrell", "character": "Bobby Pellitt", "id": 72466, "credit_id": "52fe47f8c3a36847f8151fbf", "cast_id": 5, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 4}, {"name": "Jamie Foxx", "character": "Motherfucker Jones", "id": 134, "credit_id": "52fe47f8c3a36847f8151fc3", "cast_id": 6, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 5}, {"name": "Donald Sutherland", "character": "Jack Pellit", "id": 55636, "credit_id": "52fe47f8c3a36847f8151fc7", "cast_id": 7, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 6}, {"name": "Lindsay Sloane", "character": "Stacey", "id": 41662, "credit_id": "52fe47f8c3a36847f8151fcb", "cast_id": 8, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 7}, {"name": "John Francis Daley", "character": "Carter", "id": 52935, "credit_id": "52fe47f8c3a36847f8151fcf", "cast_id": 9, "profile_path": "/xg5gaLLmB0d79ge91fUCnjBCjwk.jpg", "order": 8}, {"name": "Kevin Spacey", "character": "Dave Harken", "id": 1979, "credit_id": "52fe47f8c3a36847f8151fe5", "cast_id": 13, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 9}, {"name": "Julie Bowen", "character": "Rhonda Harken", "id": 31171, "credit_id": "52fe47f8c3a36847f8151fe9", "cast_id": 15, "profile_path": "/fbELrYxMYvUftgceh0KXnw2mQ8r.jpg", "order": 10}, {"name": "Meghan Markle", "character": "Jamie", "id": 1216701, "credit_id": "52fe47f8c3a36847f8151fed", "cast_id": 16, "profile_path": "/vCYRriV2w19TBoRWn65Bo8vKy0l.jpg", "order": 11}, {"name": "Steve Wiebe", "character": "Thomas, Head of Security", "id": 76112, "credit_id": "530c4d919251411444000891", "cast_id": 17, "profile_path": "/x6CduU4HKFZtBs3z78xwuQXck8S.jpg", "order": 12}, {"name": "Michael Albala", "character": "Mr. Anderton", "id": 133593, "credit_id": "530c4dc59251411428000906", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Jennifer Hasty", "character": "Kurt's Co-Worker", "id": 191897, "credit_id": "530c4de9925141142800090e", "cast_id": 19, "profile_path": "/p2MKBorcVylJoYl7XKNVd4EsB9s.jpg", "order": 14}, {"name": "Reginald Ballard", "character": "Kurt's Co-Worker", "id": 154096, "credit_id": "530c4e0192514114310008f5", "cast_id": 20, "profile_path": "/qXIp0OCsERavYTLQu8pbgIBRdQh.jpg", "order": 15}, {"name": "George Back", "character": "Kurt's Co-Worker", "id": 66523, "credit_id": "530c4e119251411444000896", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Barry Livingston", "character": "Kurt's Co-Worker", "id": 75344, "credit_id": "530c4e24925141142e000917", "cast_id": 22, "profile_path": "/mttrxc8jZnd2y0qAmdSKJpSUDNe.jpg", "order": 17}, {"name": "Donald Sutherland", "character": "Jack Pellit", "id": 55636, "credit_id": "530c4e5592514114310008f9", "cast_id": 23, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 18}, {"name": "Celia Finkelstein", "character": "Margie Emerman", "id": 968697, "credit_id": "530c4e66925141142100097e", "cast_id": 24, "profile_path": "/q6mBuK5KNkoQg07aLfuyebADzDT.jpg", "order": 19}], "directors": [{"name": "Seth Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe47f8c3a36847f8151fd5", "profile_path": "/gstUEbopSacaQTpxYjfSwz0gzLl.jpg", "id": 71600}], "vote_average": 6.4, "runtime": 98}, "10585": {"poster_path": "/2ghJjnv19CQTjTYd5zXsslyGCl2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44196684, "overview": "A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed with the soul of a serial killer.", "video": false, "id": 10585, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Child's Play", "tagline": "Chucky is one mean S.O.B.", "vote_count": 103, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094862", "adult": false, "backdrop_path": "/hWEaHxO6mcT9ifMFTVHzikLVpq9.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1988-11-08", "popularity": 0.767868166373217, "original_title": "Child's Play", "budget": 9000000, "cast": [{"name": "Catherine Hicks", "character": "Karen Barclay", "id": 2022, "credit_id": "52fe438c9251416c75014c07", "cast_id": 10, "profile_path": "/pAqwxZ5AgpgsExQC79fDVtFdvhe.jpg", "order": 0}, {"name": "Chris Sarandon", "character": "Mike Norris", "id": 14541, "credit_id": "52fe438c9251416c75014c0b", "cast_id": 11, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 1}, {"name": "Alex Vincent", "character": "Andy Barclay", "id": 65683, "credit_id": "52fe438c9251416c75014c0f", "cast_id": 12, "profile_path": "/jR4RmOgv77uVsxOWbTMy5LWZiBg.jpg", "order": 2}, {"name": "Brad Dourif", "character": "Charles Lee Ray/Chucky", "id": 1370, "credit_id": "52fe438c9251416c75014c13", "cast_id": 13, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 3}, {"name": "Dinah Manoff", "character": "Maggie Peterson", "id": 8900, "credit_id": "52fe438c9251416c75014c17", "cast_id": 14, "profile_path": "/kCULJZUXCTWUTolDb2C9saK2PMj.jpg", "order": 4}], "directors": [{"name": "Tom Holland", "department": "Directing", "job": "Director", "credit_id": "52fe438c9251416c75014bd3", "profile_path": null, "id": 64796}], "vote_average": 6.3, "runtime": 87}, "10587": {"poster_path": "/g7JVqQPOCKQLJDfxTaBpVM21DWY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28061343, "overview": "A new batch of recruits arrives at Police Academy, this time a group of civilian volunteers who have joined Commandant Lassard's new Citizens on Patrol program. Although the community relations project has strong governmental support, a disgusted Captain Harris is determined to see it fail.", "video": false, "id": 10587, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy 4: Citizens on Patrol", "tagline": "On land, on sea, or in the air, no place is safe from them!", "vote_count": 56, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093756", "adult": false, "backdrop_path": "/aHiWHHqO1a1WY02KQGwvECJ7hzH.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-04-02", "popularity": 0.810000682686953, "original_title": "Police Academy 4: Citizens on Patrol", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Sgt. Carey Mahoney", "id": 26472, "credit_id": "52fe438d9251416c75014cef", "cast_id": 7, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Bubba Smith", "character": "Sgt. Moses Hightowe", "id": 57349, "credit_id": "52fe438d9251416c75014cf3", "cast_id": 8, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 1}, {"name": "Michael Winslow", "character": "Sgt. Larvelle Jones", "id": 14672, "credit_id": "52fe438d9251416c75014cf7", "cast_id": 9, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 2}, {"name": "Sharon Stone", "character": "Claire Mattson", "id": 4430, "credit_id": "52fe438d9251416c75014cfb", "cast_id": 10, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 3}, {"name": "David Graf", "character": "Sgt. Eugene Tackleberry", "id": 57353, "credit_id": "52fe438d9251416c75014cff", "cast_id": 11, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 4}, {"name": "Bobcat Goldthwait", "character": "Cadet Zed", "id": 95024, "credit_id": "52fe438d9251416c75014d03", "cast_id": 12, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 5}, {"name": "G. W. Bailey", "character": "Captain Thaddeus Harris", "id": 27237, "credit_id": "52fe438d9251416c75014d07", "cast_id": 13, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 6}, {"name": "David Spade", "character": "Kyle", "id": 60950, "credit_id": "52fe438d9251416c75014d0b", "cast_id": 14, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 7}, {"name": "Steve Caballero", "character": "Skateboarder", "id": 110393, "credit_id": "52fe438d9251416c75014d0f", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Tony Hawk", "character": "Skateboarder", "id": 16832, "credit_id": "52fe438d9251416c75014d13", "cast_id": 16, "profile_path": "/hrGNPp2erLimOo2wyFWgXVpIqPN.jpg", "order": 9}, {"name": "Tab Thacker", "character": "Officer Thomas 'House' Conklin", "id": 1276381, "credit_id": "52fe438d9251416c75014d17", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Colleen Camp", "character": "Sgt. Kathleen Kirkland-Tackleberry", "id": 13023, "credit_id": "52fe438d9251416c75014d1b", "cast_id": 18, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 11}, {"name": "Tim Kazurinsky", "character": "Sweetchuck", "id": 95216, "credit_id": "53c0bd9a0e0a261576008318", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Marion Ramsey", "character": "Hooks", "id": 186816, "credit_id": "53c0bde20e0a261589008139", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Lance Kinsey", "character": "Proctor", "id": 141429, "credit_id": "53c0be0c0e0a261579007f7d", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "George Gaynes", "character": "Commandant Lassard", "id": 57351, "credit_id": "53c0be2b0e0a261579007f82", "cast_id": 22, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 15}, {"name": "Scott Thomson", "character": "Copeland", "id": 9997, "credit_id": "53c0be3f0e0a26157f008375", "cast_id": 23, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 16}, {"name": "Billie Bird", "character": "Mrs. Feldman", "id": 140778, "credit_id": "53c0be520e0a261576008334", "cast_id": 24, "profile_path": "/jJzRnD39UAvbU1ihaXMRcPZN9Xq.jpg", "order": 17}, {"name": "Leslie Easterbrook", "character": "Callahan", "id": 22252, "credit_id": "53c0be8f0e0a261579007f94", "cast_id": 25, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 18}, {"name": "Brian Tochi", "character": "Nogata", "id": 16060, "credit_id": "53c0bf880e0a26158f007d37", "cast_id": 26, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 19}, {"name": "Brian Backer", "character": "Arnie", "id": 118946, "credit_id": "53c1e307c3a3684cdf00724b", "cast_id": 27, "profile_path": "/fUs5ipPXE3jdTSkxoC75tMML1Fz.jpg", "order": 20}, {"name": "Jack Creley", "character": "Judge", "id": 12485, "credit_id": "550204bf9251413da80036d9", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Jim Drake", "department": "Directing", "job": "Director", "credit_id": "52fe438d9251416c75014ccd", "profile_path": null, "id": 65688}], "vote_average": 5.3, "runtime": 88}, "10588": {"poster_path": "/cyfCsdxGYIRlMd2z3dncOZWrgvk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Conrad and Sally Walden are home alone with their pet fish. It is raining outside, and there is nothing to do. Until The Cat in the Hat walks in the front door. He introduces them to their imagination, and at first it's all fun and games, until things get out of hand, and The Cat must go, go, go, before their parents get back.", "video": false, "id": 10588, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Dr. Seuss' The Cat in the Hat", "tagline": "Don't mess with the hat.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0312528", "adult": false, "backdrop_path": "/gcqChVuR9n43ktuA5Pi7klrsGKJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2003-11-21", "popularity": 0.482382737665738, "original_title": "The Cat in the Hat", "budget": 0, "cast": [{"name": "Mike Myers", "character": "The Cat", "id": 12073, "credit_id": "52fe438d9251416c75014d51", "cast_id": 1, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Quinn", "id": 7447, "credit_id": "52fe438d9251416c75014d55", "cast_id": 2, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Mom", "id": 11164, "credit_id": "52fe438d9251416c75014d59", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Dakota Fanning", "character": "Sally", "id": 501, "credit_id": "52fe438d9251416c75014d5d", "cast_id": 4, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 3}, {"name": "Spencer Breslin", "character": "Conrad", "id": 35654, "credit_id": "52fe438d9251416c75014d61", "cast_id": 5, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 4}, {"name": "Amy Hill", "character": "Mrs. Kwan", "id": 59401, "credit_id": "52fe438d9251416c75014d65", "cast_id": 6, "profile_path": "/uVJnyfKqN5Ex2ueoWhEIgMY6q6Q.jpg", "order": 5}, {"name": "Sean Hayes", "character": "Mr. Humberfloob / Voice of the Fish", "id": 52601, "credit_id": "52fe438d9251416c75014db7", "cast_id": 20, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 6}, {"name": "Danielle Chuchran", "character": "Thing One (as Danielle Ryan Chuchran)", "id": 135532, "credit_id": "52fe438d9251416c75014dbb", "cast_id": 21, "profile_path": "/1QRjXnG0uqrXo6zrDmvLc1XXoaR.jpg", "order": 7}, {"name": "Taylor Rice", "character": "Thing One", "id": 1056728, "credit_id": "52fe438d9251416c75014dbf", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Brittany Oaks", "character": "Thing Two", "id": 982705, "credit_id": "52fe438d9251416c75014dc3", "cast_id": 23, "profile_path": "/y2qMh6T6dqTQ1Icga2H6zLr61sr.jpg", "order": 9}, {"name": "Talia-Lynn Prairie", "character": "Thing Two (as Talia Prairie)", "id": 168388, "credit_id": "52fe438d9251416c75014dc7", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "Bo Welch", "department": "Directing", "job": "Director", "credit_id": "52fe438d9251416c75014d6b", "profile_path": null, "id": 5133}], "vote_average": 5.3, "runtime": 82}, "18781": {"poster_path": "/lSahgFbmbmCPdZ3X6cZynblkP6R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64895970, "overview": "When the Campbell family moves to upstate Connecticut, they soon learn that their charming Victorian home has a disturbing history: not only was the house a transformed funeral parlor where inconceivable acts occurred, but the owner's clairvoyant son Jonah served as a demonic messenger, providing a gateway for spiritual entities to crossover.", "video": false, "id": 18781, "genres": [{"id": 27, "name": "Horror"}], "title": "The Haunting in Connecticut", "tagline": "Some things cannot be explained.", "vote_count": 60, "homepage": "http://www.hauntinginconnecticut.com/", "belongs_to_collection": {"backdrop_path": "/1sWTV5QaoDnBTTSbElUfe5zBcu2.jpg", "poster_path": "/6uIGXwqIfdg0IQw3bvfS49VMKHh.jpg", "id": 169740, "name": "The Haunting in Connecticut Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0492044", "adult": false, "backdrop_path": "/na8T1ykPKAYmseM8gkSjuoHOZP.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Integrated Films & Management", "id": 21458}], "release_date": "2009-03-27", "popularity": 0.462595242138706, "original_title": "The Haunting in Connecticut", "budget": 0, "cast": [{"name": "Virginia Madsen", "character": "Sara Campbell", "id": 12519, "credit_id": "52fe479a9251416c7509f46d", "cast_id": 4, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 0}, {"name": "Kyle Gallner", "character": "Matt Campbell", "id": 59219, "credit_id": "52fe479a9251416c7509f471", "cast_id": 5, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Reverend Popescu", "id": 13550, "credit_id": "52fe479a9251416c7509f475", "cast_id": 6, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Amanda Crew", "character": "Wendy", "id": 58370, "credit_id": "52fe479a9251416c7509f479", "cast_id": 7, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 3}, {"name": "Martin Donovan", "character": "Peter Campbell", "id": 42993, "credit_id": "52fe479a9251416c7509f47d", "cast_id": 8, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 4}, {"name": "Sophi Knight", "character": "Mary Campbell", "id": 83568, "credit_id": "52fe479a9251416c7509f481", "cast_id": 9, "profile_path": "/xx5XJqvjGRhfzOhZFG5kKGVmaeo.jpg", "order": 5}, {"name": "Ty Wood", "character": "Billy Campbell", "id": 61166, "credit_id": "52fe479a9251416c7509f485", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Erik J. Berg", "character": "Jonah", "id": 83569, "credit_id": "52fe479a9251416c7509f489", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "John Bluethner", "character": "Ramsey Aickman", "id": 54235, "credit_id": "54073ed4c3a3686905000e98", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Peter Cornwell", "department": "Directing", "job": "Director", "credit_id": "52fe479a9251416c7509f45d", "profile_path": "/4MZYF47rLAMAjChyY2owptcIZtb.jpg", "id": 63303}], "vote_average": 6.4, "runtime": 92}, "10590": {"poster_path": "/kjG02l5Nqcgd3ZOb7aMBb9CIIIi.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114660784, "overview": "The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.", "video": false, "id": 10590, "genres": [{"id": 28, "name": "Action"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "We Were Soldiers", "tagline": "400 U.S paratroopers. 4000 Vietnamese soldiers. 12 000 miles away from home. 1 man led them into battle.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0277434", "adult": false, "backdrop_path": "/8ikyF16LecHlHkkMmuZJDV9GWa7.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Icon Productions", "id": 152}], "release_date": "2002-03-01", "popularity": 1.08502086129833, "original_title": "We Were Soldiers", "budget": 75000000, "cast": [{"name": "Mel Gibson", "character": "Lt. Col. Hal Moore", "id": 2461, "credit_id": "52fe438e9251416c75014f9d", "cast_id": 19, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Maj. Bruce 'Snake' Crandall", "id": 17141, "credit_id": "52fe438e9251416c75014fa1", "cast_id": 20, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Madeleine Stowe", "character": "Julie Moore", "id": 289, "credit_id": "52fe438e9251416c75014fa5", "cast_id": 21, "profile_path": "/jqd70MNVUs3nTbxn3B3G6UNV4Oc.jpg", "order": 2}, {"name": "Sam Elliott", "character": "Sgt. Maj. Basil Plumley", "id": 16431, "credit_id": "52fe438e9251416c75014fa9", "cast_id": 22, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 3}, {"name": "Chris Klein", "character": "2nd Lt. Jack Geoghegan", "id": 21594, "credit_id": "52fe438e9251416c75014fad", "cast_id": 23, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 4}, {"name": "Keri Russell", "character": "Barbara Geoghegan", "id": 41292, "credit_id": "52fe438e9251416c75014fb1", "cast_id": 24, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 5}, {"name": "Barry Pepper", "character": "Joe Galloway", "id": 12834, "credit_id": "52fe438e9251416c75014fb5", "cast_id": 25, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Capt. Tom Metsker", "id": 9048, "credit_id": "52fe438e9251416c75014fc5", "cast_id": 29, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "Marc Blucas", "character": "2nd Lt. Henry Herrick", "id": 46772, "credit_id": "52fe438e9251416c75014fc9", "cast_id": 30, "profile_path": "/5OdBu0DFKca1mxjeqNruz00DSRF.jpg", "order": 8}, {"name": "Jsu Garcia", "character": "Capt. Tony Nadal", "id": 13657, "credit_id": "52fe438e9251416c75014fcd", "cast_id": 31, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 9}, {"name": "Robert Bagnell", "character": "1st Lt. Charlie Hastings", "id": 65715, "credit_id": "52fe438e9251416c75014fd1", "cast_id": 34, "profile_path": "/pUDVP9u5cGrpVkufCnG4V8Y49Mu.jpg", "order": 12}, {"name": "Blake Heron", "character": "Sp4 Galen Bungum", "id": 57127, "credit_id": "52fe438e9251416c75014fd5", "cast_id": 35, "profile_path": "/dpbSkgTckGSYRXvbZV2MwFN38LI.jpg", "order": 13}, {"name": "Josh Daugherty", "character": "Sp4 Robert Ouellette", "id": 65716, "credit_id": "52fe438e9251416c75014fd9", "cast_id": 36, "profile_path": "/6o2nk5pA49ky3lOKfWGVM193cof.jpg", "order": 14}, {"name": "Jon Hamm", "character": "Capt. Matt Dillon", "id": 65717, "credit_id": "52fe438e9251416c75014fdd", "cast_id": 37, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 15}, {"name": "Dylan Walsh", "character": "Capt. Robert Edwards", "id": 21043, "credit_id": "52fe438e9251416c75014fe1", "cast_id": 38, "profile_path": "/jrQiBcQMkhgXAtJ7kpSJ15tq1GQ.jpg", "order": 16}, {"name": "Erik MacArthur", "character": "Sp4 Russell Adams", "id": 65719, "credit_id": "52fe438e9251416c75014fe5", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Mark McCracken", "character": "Capt. Ed 'Too Tall' Freeman", "id": 65720, "credit_id": "52fe438e9251416c75014fe9", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Desmond Harrington", "character": "Sp4 Bill Beck", "id": 6365, "credit_id": "52fe438e9251416c75014ff3", "cast_id": 43, "profile_path": "/Wyv2jiCnJXkVtrRwXOvy1aVemb.jpg", "order": 19}, {"name": "Duong Don", "character": "Lt. Col. Nguyen Huu An", "id": 35053, "credit_id": "52fe438e9251416c75014ff7", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Ryan Hurst", "character": "Sgt. Ernie Savage", "id": 43858, "credit_id": "52fe438e9251416c75014ffb", "cast_id": 45, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 21}], "directors": [{"name": "Randall Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe438e9251416c75014f45", "profile_path": "/sHaZ1TAca9o8f4m8obTOt4p7tlg.jpg", "id": 2460}], "vote_average": 6.7, "runtime": 138}, "10591": {"poster_path": "/qKr9OV9F05clqVyPCULwB3KKJzP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30411183, "overview": "Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.", "video": false, "id": 10591, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Girl Next Door", "tagline": "Matt never saw her coming... but all his friends had!", "vote_count": 262, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265208", "adult": false, "backdrop_path": "/4CTCZLCm2THhBuGjdF3UnKzxmYX.jpg", "production_companies": [{"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Daybreak", "id": 49241}], "release_date": "2004-03-04", "popularity": 0.861362642700975, "original_title": "The Girl Next Door", "budget": 25000000, "cast": [{"name": "Emile Hirsch", "character": "Matthew Kidman", "id": 46593, "credit_id": "52fe438e9251416c750150b7", "cast_id": 17, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Timothy Olyphant", "character": "Kelly", "id": 18082, "credit_id": "52fe438e9251416c750150c7", "cast_id": 21, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 1}, {"name": "Elisha Cuthbert", "character": "Danielle", "id": 25837, "credit_id": "52fe438e9251416c750150cb", "cast_id": 22, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 2}, {"name": "James Remar", "character": "Hugo Posh", "id": 1736, "credit_id": "52fe438e9251416c750150cf", "cast_id": 23, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 3}, {"name": "Chris Marquette", "character": "Eli", "id": 59238, "credit_id": "52fe438e9251416c750150d3", "cast_id": 24, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 4}, {"name": "Paul Dano", "character": "Klitz", "id": 17142, "credit_id": "52fe438e9251416c750150d7", "cast_id": 25, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 5}, {"name": "Timothy Bottoms", "character": "Mr. Kidman", "id": 19207, "credit_id": "52fe438e9251416c750150db", "cast_id": 26, "profile_path": "/pTw7LySB4jJv9PfJfx3Hjj9GKQw.jpg", "order": 6}, {"name": "Amanda Swisten", "character": "April", "id": 54587, "credit_id": "52fe438e9251416c750150df", "cast_id": 27, "profile_path": "/zRrt4ZhwAe6VtCog4DA4n28itjq.jpg", "order": 7}, {"name": "Brian Kolodziej", "character": "Derek", "id": 65738, "credit_id": "52fe438e9251416c750150e3", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Julie Osburn", "character": "Jeannie", "id": 65745, "credit_id": "52fe438e9251416c750150e7", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Ulysses Lee", "character": "Samnang", "id": 65742, "credit_id": "52fe438e9251416c750150ef", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Brandon Irons", "character": "Troy", "id": 65741, "credit_id": "52fe438e9251416c750150eb", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Donna Bullock", "character": "Mrs. Kidman", "id": 65740, "credit_id": "52fe438e9251416c750150f3", "cast_id": 32, "profile_path": "/bz6ybejRPtrNw9Ul8eXcflgMy8K.jpg", "order": 12}, {"name": "Sung-Hi Lee", "character": "Ferrari", "id": 65739, "credit_id": "52fe438e9251416c750150f7", "cast_id": 33, "profile_path": "/rDn5yxqahHDo0aSZ64TMiMAB95G.jpg", "order": 13}, {"name": "Jacob Young", "character": "Hunter", "id": 65743, "credit_id": "52fe438e9251416c750150fb", "cast_id": 34, "profile_path": "/lDPWD606D346VYGEHruAYx9YYks.jpg", "order": 14}, {"name": "Harris Laskawy", "character": "Dr. Salinger", "id": 65744, "credit_id": "52fe438e9251416c750150ff", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Laird Stuart", "character": "Mr. Ruether", "id": 65746, "credit_id": "52fe438e9251416c75015103", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Richard Fancy", "character": "Mr. Peterson", "id": 65748, "credit_id": "52fe438e9251416c75015107", "cast_id": 37, "profile_path": "/gqMB9kzTff3X42jhG8doZIftzTe.jpg", "order": 17}, {"name": "Catherine McGoohan", "character": "Mrs. Peterson", "id": 65749, "credit_id": "52fe438e9251416c7501510b", "cast_id": 38, "profile_path": "/oVFDGAuDNM5wMwBqggIfnePVZla.jpg", "order": 18}, {"name": "Dane Garretson", "character": "Ryan Wenger", "id": 65747, "credit_id": "52fe438e9251416c7501510f", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Olivia Wilde", "character": "Kellie", "id": 59315, "credit_id": "552d7f11c3a3686201000cd0", "cast_id": 42, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 20}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe438e9251416c75015077", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 6.1, "runtime": 108}, "10592": {"poster_path": "/pNfnaPlxUtlkmWuDK3i5zBT79LP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19076815, "overview": "Fourth-generation Army Col. William McNamara is imprisoned in a brutal German POW camp. Still, as the senior-ranking American officer, he commands his fellow inmates, keeping a sense of honor alive in a place where honor is easy to destroy, all under the dangerous eye of the Luftwafe vetran Col. Wilhelm Visser. Never giving up the fight to win the war, McNamara is silently planning, waiting for his moment to strike back at the enemy. A murder in the camp gives him the chance to set a risky plan in motion. With a court martial to keep Visser and the Germans distracted, McNamara orchestrates a cunning scheme to escape and destroy a nearby munitions plant, enlisting the unwitting help of young Lt. Tommy Hart. Together with his men, McNamara uses a hero's resolve to carry out his mission, ultimately forced to weigh the value of his life against the good of his country.", "video": false, "id": 10592, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Hart's War", "tagline": "Beyond Courage, Beyond Honor.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251114", "adult": false, "backdrop_path": "/p5ay5m2w40QZzmRmUO19oJ4QrTk.jpg", "production_companies": [{"name": "Cheyenne Enterprises", "id": 890}, {"name": "David Foster Productions", "id": 496}, {"name": "David Ladd Films", "id": 21447}, {"name": "MGM", "id": 5899}], "release_date": "2002-02-15", "popularity": 0.864713337323243, "original_title": "Hart's War", "budget": 60000000, "cast": [{"name": "Bruce Willis", "character": "Col. William A. McNamara", "id": 62, "credit_id": "52fe438f9251416c750151d7", "cast_id": 19, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Lt. Thomas W. Hart", "id": 72466, "credit_id": "52fe438f9251416c750151db", "cast_id": 20, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Terrence Howard", "character": "Lt. Lincoln A. Scott", "id": 18288, "credit_id": "52fe438f9251416c750151e5", "cast_id": 22, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 2}, {"name": "Marcel Iures", "character": "Col. Werner Visser", "id": 15320, "credit_id": "52fe438f9251416c750151e9", "cast_id": 23, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 3}, {"name": "Cole Hauser", "character": "Staff Sgt. Vic W. Bedford", "id": 6614, "credit_id": "52fe438f9251416c750151ed", "cast_id": 24, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 4}, {"name": "Linus Roache", "character": "Capt. Peter A. Ross", "id": 3900, "credit_id": "52fe438f9251416c750151f1", "cast_id": 25, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 5}, {"name": "Vicellous Reon Shannon", "character": "Lt. Lamar T. Archer", "id": 25868, "credit_id": "52fe438f9251416c750151f5", "cast_id": 26, "profile_path": "/paAiswc2A5u2jMi785nswXjjWdQ.jpg", "order": 6}, {"name": "Rory Cochrane", "character": "Sgt. Carl S. Webb", "id": 51792, "credit_id": "52fe438f9251416c750151f9", "cast_id": 27, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 7}, {"name": "Joe Spano", "character": "Col. J.M. Lange", "id": 8192, "credit_id": "52fe438f9251416c75015203", "cast_id": 29, "profile_path": "/ApY9rdhS1Qrvd0byprtlMxMAQ1q.jpg", "order": 8}, {"name": "Michael Weston", "character": "Pfc. W. Roy Potts", "id": 51381, "credit_id": "52fe438f9251416c75015207", "cast_id": 30, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 9}, {"name": "Adrian Grenier", "character": "Pvt. Daniel E. Abrams", "id": 5090, "credit_id": "52fe438f9251416c7501520f", "cast_id": 32, "profile_path": "/rZ0y8mxadSJexY2c3DDo6yzGHnr.jpg", "order": 10}, {"name": "Jonathan Brandis", "character": "Pvt. Lewis P. Wakely", "id": 27773, "credit_id": "52fe438f9251416c7501520b", "cast_id": 31, "profile_path": "/dWKS1zkrHt1mtaTuAjQNr6nNnlb.jpg", "order": 11}, {"name": "Maury Sterling", "character": "Pfc. Dennis A. Gerber", "id": 65726, "credit_id": "52fe438f9251416c75015213", "cast_id": 33, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 12}, {"name": "Sam Jaeger", "character": "Capt. R.G. Sisk", "id": 65727, "credit_id": "52fe438f9251416c75015217", "cast_id": 34, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 13}, {"name": "Scott Michael Campbell", "character": "Cpl. Joe S. Cromin", "id": 65728, "credit_id": "52fe438f9251416c7501521b", "cast_id": 35, "profile_path": "/kMHZLJUwa8QCaLsBEAdEj8UtMGL.jpg", "order": 14}, {"name": "Rick Ravanello", "character": "Maj. Joe Clary", "id": 65730, "credit_id": "52fe438f9251416c7501521f", "cast_id": 36, "profile_path": "/tQqdbPyol2awlcZhlouaYqtO6YB.jpg", "order": 15}, {"name": "Sebastian Tillinger", "character": "Pvt. Bert D. 'Moose' Codman", "id": 65729, "credit_id": "52fe438f9251416c75015227", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Brad Hunt", "character": "Pvt. G.H. 'Cookie' Bell", "id": 65732, "credit_id": "52fe438f9251416c75015223", "cast_id": 37, "profile_path": "/5VP0Rn0cKsktqrvo60olV3cpcCe.jpg", "order": 17}, {"name": "R\u00faaidhr\u00ed Conroy", "character": "Cpl. D.F. Lisko", "id": 65733, "credit_id": "52fe438f9251416c7501522b", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Sam Worthington", "character": "as Cpl. B.J. 'Depot' Guidry", "id": 65731, "credit_id": "52fe438f9251416c7501522f", "cast_id": 40, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 19}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe438e9251416c75015173", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 5.9, "runtime": 125}, "18785": {"poster_path": "/eshEkiG7NmU4ekA8CtpIdYiYufZ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 459270619, "overview": "When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug -- who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.", "video": false, "id": 18785, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Hangover", "tagline": "Some guys just can't handle Vegas.", "vote_count": 2500, "homepage": "http://hangoverpart2.warnerbros.com/dvd/", "belongs_to_collection": {"backdrop_path": "/uEtsf26a9RsRDy85MOIv1xAj44x.jpg", "poster_path": "/aMmNLuyXvdBih1R5RRHtdtNaS6N.jpg", "id": 86119, "name": "The Hangover Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1119646", "adult": false, "backdrop_path": "/39LohvXfll5dGCQIV9B9VJ16ImE.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Legendary Pictures", "id": 923}, {"name": "Green Hat Films", "id": 3527}, {"name": "IFP Westcoast Erste", "id": 12235}], "release_date": "2009-06-05", "popularity": 1.53509772666155, "original_title": "The Hangover", "budget": 35000000, "cast": [{"name": "Bradley Cooper", "character": "Phil Wenneck", "id": 51329, "credit_id": "52fe479a9251416c7509f5eb", "cast_id": 1, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Ed Helms", "character": "Stu Price", "id": 27105, "credit_id": "52fe479a9251416c7509f5ef", "cast_id": 2, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Alan Garner", "id": 58225, "credit_id": "52fe479a9251416c7509f5f3", "cast_id": 3, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Doug Billings", "id": 21180, "credit_id": "52fe479a9251416c7509f5f7", "cast_id": 4, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Heather Graham", "character": "Jade", "id": 69122, "credit_id": "52fe479a9251416c7509f5fb", "cast_id": 5, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 4}, {"name": "Sasha Barrese", "character": "Tracy Garner", "id": 83585, "credit_id": "52fe479a9251416c7509f5ff", "cast_id": 6, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 5}, {"name": "Jeffrey Tambor", "character": "Sid Garner", "id": 4175, "credit_id": "52fe479a9251416c7509f603", "cast_id": 7, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 6}, {"name": "Ken Jeong", "character": "Mr. Chow", "id": 83586, "credit_id": "52fe479a9251416c7509f60b", "cast_id": 9, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 7}, {"name": "Rachael Harris", "character": "Melissa", "id": 46074, "credit_id": "52fe479a9251416c7509f607", "cast_id": 8, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 8}, {"name": "Mike Tyson", "character": "Himself", "id": 80757, "credit_id": "52fe479a9251416c7509f60f", "cast_id": 10, "profile_path": "/dENp2l4nk5wv6F0AT1iQ3pf4Os1.jpg", "order": 9}, {"name": "Mike Epps", "character": "Black Doug", "id": 51944, "credit_id": "52fe479a9251416c7509f613", "cast_id": 11, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 10}, {"name": "Jernard Burks", "character": "Leonard", "id": 55275, "credit_id": "52fe479a9251416c7509f617", "cast_id": 12, "profile_path": "/uDxTWoUD79M7Hbmawp7ARexw0c1.jpg", "order": 11}, {"name": "Rob Riggle", "character": "Officer Franklin", "id": 71403, "credit_id": "52fe479a9251416c7509f61b", "cast_id": 13, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 12}, {"name": "Cleo King", "character": "Officer Garden", "id": 7574, "credit_id": "52fe479a9251416c7509f61f", "cast_id": 14, "profile_path": "/1hyMhXnT6VuC0XA9eBmsbx9QbbY.jpg", "order": 13}, {"name": "Bryan Callen", "character": "Eddie Palermo", "id": 78320, "credit_id": "52fe479a9251416c7509f623", "cast_id": 15, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 14}, {"name": "Matt Walsh", "character": "Dr. Valsh", "id": 59841, "credit_id": "52fe479a9251416c7509f699", "cast_id": 35, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 15}, {"name": "Ian Anthony Dale", "character": "Chow's #1", "id": 123813, "credit_id": "5451f4dc0e0a263a18006040", "cast_id": 106, "profile_path": "/8lF1E9MNYDXVPUy4YB3In4mi46N.jpg", "order": 16}, {"name": "Michael Li", "character": "Chow's #2", "id": 1265844, "credit_id": "52fe479a9251416c7509f6a1", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Sondra Currie", "character": "Linda", "id": 153621, "credit_id": "52fe479a9251416c7509f6a5", "cast_id": 38, "profile_path": "/an6mZEO5SMAsOkgEOBg7jSN1jmu.jpg", "order": 18}, {"name": "Gillian Vigman", "character": "Stephanie", "id": 61182, "credit_id": "52fe479a9251416c7509f6a9", "cast_id": 39, "profile_path": "/2uwR6JalWrZWZq3NhL7CdDlDKhL.jpg", "order": 19}, {"name": "Nathalie Fay", "character": "Lisa", "id": 142375, "credit_id": "52fe479a9251416c7509f6ad", "cast_id": 40, "profile_path": "/iPxcnlMUgfT2bKmVOX4ZtM3WH1u.jpg", "order": 20}, {"name": "Chuck Pacheco", "character": "Hotel Guest at Valet", "id": 52654, "credit_id": "52fe479a9251416c7509f6b1", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Jesse Erwin", "character": "Hotel Valet", "id": 98397, "credit_id": "52fe479a9251416c7509f6b5", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Dan Finnerty", "character": "Wedding Singer", "id": 151121, "credit_id": "52fe479a9251416c7509f6b9", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Keith Lyle", "character": "Casino Dealer", "id": 1265845, "credit_id": "52fe479a9251416c7509f6bd", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Brody Stevens", "character": "Officer Foltz", "id": 142373, "credit_id": "52fe479a9251416c7509f6c1", "cast_id": 45, "profile_path": "/dzypgW3rNwGImzyKeOlZg8Olhwi.jpg", "order": 25}, {"name": "Todd Phillips", "character": "Mr. Creepy", "id": 57130, "credit_id": "52fe479a9251416c7509f6c5", "cast_id": 46, "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "order": 26}, {"name": "Mike Vallely", "character": "Neeco", "id": 558036, "credit_id": "52fe479a9251416c7509f6c9", "cast_id": 47, "profile_path": "/hrty7GRM2pdwrNiMDJaBHk8XRU8.jpg", "order": 27}, {"name": "James Martin Kelly", "character": "Police Clerk", "id": 162849, "credit_id": "52fe479a9251416c7509f6cd", "cast_id": 48, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 28}, {"name": "Murray Gershenz", "character": "Felix", "id": 981814, "credit_id": "52fe479a9251416c7509f6d1", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Andrew Astor", "character": "Eli", "id": 208524, "credit_id": "52fe479a9251416c7509f6d5", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Casey Margolis", "character": "Budnick", "id": 54721, "credit_id": "52fe479a9251416c7509f6d9", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Ken Flaherty", "character": "Old Timer at Gas Station", "id": 1265846, "credit_id": "52fe479b9251416c7509f6dd", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Joe Alexander", "character": "Pit Boss", "id": 1265847, "credit_id": "52fe479b9251416c7509f6e1", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Constance Broge", "character": "Woman in Elevator", "id": 1265848, "credit_id": "52fe479b9251416c7509f6e5", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "Sue Pierce", "character": "Mini-Mart Cashier", "id": 1265849, "credit_id": "52fe479b9251416c7509f6e9", "cast_id": 55, "profile_path": null, "order": 35}, {"name": "Floyd Levine", "character": "Tailor", "id": 58927, "credit_id": "52fe479b9251416c7509f6ed", "cast_id": 56, "profile_path": "/qP8m9hTm9DDIslygjManiBqktj8.jpg", "order": 36}, {"name": "Robert A. Ringler", "character": "Minister", "id": 1265850, "credit_id": "52fe479b9251416c7509f6f1", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Britt Barrett", "character": "Bridesmaid", "id": 1265851, "credit_id": "52fe479b9251416c7509f6f5", "cast_id": 58, "profile_path": null, "order": 38}, {"name": "Chauntae Davies", "character": "Bridesmaid", "id": 62818, "credit_id": "52fe479b9251416c7509f6f9", "cast_id": 59, "profile_path": "/uMc7qhOQb9Z6KQCrYk9fcs9nkPB.jpg", "order": 39}, {"name": "Alisa Allapach", "character": "Bridesmaid", "id": 1265852, "credit_id": "52fe479b9251416c7509f6fd", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Nicholas Furu", "character": "Stun Gun Boy", "id": 1120016, "credit_id": "52fe479b9251416c7509f701", "cast_id": 61, "profile_path": null, "order": 41}, {"name": "Angelica Flameno", "character": "Stun Gun Girl", "id": 1265853, "credit_id": "52fe479b9251416c7509f705", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Lily Winn", "character": "Screaming Girl", "id": 1265854, "credit_id": "52fe479b9251416c7509f709", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Katerina Moutsatsou", "character": "Eddie's Assistant (as Katerina Moutsatsos)", "id": 1265855, "credit_id": "52fe479b9251416c7509f70d", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Faleolo Alailima", "character": "Tyson's Bodyguard", "id": 175174, "credit_id": "52fe479b9251416c7509f711", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Rio Ahn", "character": "Orderly (uncredited)", "id": 66650, "credit_id": "52fe479b9251416c7509f715", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "John Bailey", "character": "Ceasar's Palace Pimp (uncredited)", "id": 567226, "credit_id": "548dc72fc3a36820be003e18", "cast_id": 107, "profile_path": null, "order": 47}, {"name": "Bart Blackburn", "character": "Drunk Casino Patron (uncredited)", "id": 1265856, "credit_id": "52fe479b9251416c7509f71d", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Jordan Bobbitt", "character": "Flower Girl #1 (uncredited)", "id": 1265814, "credit_id": "52fe479b9251416c7509f721", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Guile Branco", "character": "Guest at Casino (uncredited)", "id": 1265857, "credit_id": "52fe479b9251416c7509f725", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Joey Brander", "character": "Student (uncredited)", "id": 208952, "credit_id": "52fe479b9251416c7509f729", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Michael Bravo", "character": "Convenience Store Patron (uncredited)", "id": 1265858, "credit_id": "52fe479b9251416c7509f72d", "cast_id": 72, "profile_path": null, "order": 52}, {"name": "Kaitlin Clark", "character": "Girl in Elevator (uncredited)", "id": 1265859, "credit_id": "52fe479b9251416c7509f731", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Natalie Cohen", "character": "Casino Patron #6 (uncredited)", "id": 221942, "credit_id": "52fe479b9251416c7509f735", "cast_id": 74, "profile_path": "/eNg0Zi8eeLJLrfYXMcdQxjDu4fU.jpg", "order": 54}, {"name": "Matthew Corbett Davis", "character": "Blackjack Player (uncredited)", "id": 1265860, "credit_id": "52fe479b9251416c7509f739", "cast_id": 75, "profile_path": null, "order": 55}, {"name": "Cody Deal", "character": "Roman Soldier at Caesar's Palace (uncredited)", "id": 240945, "credit_id": "52fe479b9251416c7509f73d", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "Lanette Fugit", "character": "High Roller (uncredited)", "id": 1017323, "credit_id": "52fe479b9251416c7509f741", "cast_id": 77, "profile_path": null, "order": 57}, {"name": "Charlene Geisler", "character": "Katie - Girl in the elevator (uncredited)", "id": 1265861, "credit_id": "52fe479b9251416c7509f745", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "David Hill", "character": "Parent Driving Jaguar (uncredited)", "id": 128971, "credit_id": "52fe479b9251416c7509f749", "cast_id": 79, "profile_path": null, "order": 59}, {"name": "Mitch Holleman", "character": "Max - Student (uncredited)", "id": 1214803, "credit_id": "52fe479b9251416c7509f74d", "cast_id": 80, "profile_path": null, "order": 60}, {"name": "Brian Irvin", "character": "VIP Hotel Guest (uncredited)", "id": 1265864, "credit_id": "52fe479b9251416c7509f751", "cast_id": 81, "profile_path": null, "order": 61}, {"name": "Ty Izquierdo", "character": "Bartender (uncredited)", "id": 1265865, "credit_id": "52fe479b9251416c7509f755", "cast_id": 82, "profile_path": null, "order": 62}, {"name": "Brittani Jenee'", "character": "Bachelorette (uncredited)", "id": 1265866, "credit_id": "52fe479b9251416c7509f759", "cast_id": 83, "profile_path": null, "order": 63}, {"name": "Carrie Keagan", "character": "Casino Guest (uncredited)", "id": 970104, "credit_id": "52fe479b9251416c7509f75d", "cast_id": 84, "profile_path": "/vLYbT8NYY0P3GvqCiSwLVSjqxGZ.jpg", "order": 64}, {"name": "Niko Koshet", "character": "Wedding Guest (uncredited)", "id": 1265867, "credit_id": "52fe479b9251416c7509f761", "cast_id": 85, "profile_path": null, "order": 65}, {"name": "Dov Markowich", "character": "Blackjack Player (uncredited)", "id": 1265868, "credit_id": "52fe479b9251416c7509f765", "cast_id": 86, "profile_path": null, "order": 66}, {"name": "Stephanie Mathis", "character": "Casino Guest (uncredited)", "id": 1265869, "credit_id": "52fe479b9251416c7509f769", "cast_id": 87, "profile_path": null, "order": 67}, {"name": "Anthony Mingilino", "character": "Precision Driver (uncredited)", "id": 1265870, "credit_id": "52fe479b9251416c7509f76d", "cast_id": 88, "profile_path": null, "order": 68}, {"name": "April Montgomery", "character": "Groom's Wedding Guest (uncredited)", "id": 1265871, "credit_id": "52fe479b9251416c7509f771", "cast_id": 89, "profile_path": null, "order": 69}, {"name": "Roy C. Peterson", "character": "Tri Card Player (uncredited)", "id": 1265872, "credit_id": "52fe479b9251416c7509f775", "cast_id": 90, "profile_path": null, "order": 70}, {"name": "Alex Pulido", "character": "Private School Student (uncredited)", "id": 1265873, "credit_id": "52fe479b9251416c7509f779", "cast_id": 91, "profile_path": null, "order": 71}, {"name": "Richard Reid", "character": "Vegas High Roller (uncredited)", "id": 984422, "credit_id": "52fe479b9251416c7509f77d", "cast_id": 92, "profile_path": "/3n8vYYFchIgqwrGbeMTJNGFxs2V.jpg", "order": 72}, {"name": "Joan Riegert", "character": "High Roller Wife (uncredited)", "id": 1265874, "credit_id": "52fe479b9251416c7509f781", "cast_id": 93, "profile_path": null, "order": 73}, {"name": "Rachael Riegert", "character": "Cocktail Waitress (uncredited)", "id": 1265875, "credit_id": "52fe479b9251416c7509f785", "cast_id": 94, "profile_path": null, "order": 74}, {"name": "Michael A. Rizza", "character": "Guy in the elevator (uncredited)", "id": 1265876, "credit_id": "52fe479b9251416c7509f789", "cast_id": 95, "profile_path": null, "order": 75}, {"name": "Heather Roop", "character": "Mom in Elevator (uncredited)", "id": 1172720, "credit_id": "52fe479b9251416c7509f78d", "cast_id": 96, "profile_path": null, "order": 76}, {"name": "Joe Satriani", "character": "Guitarist in Wedding Band (uncredited)", "id": 123476, "credit_id": "52fe479b9251416c7509f791", "cast_id": 97, "profile_path": "/1vPtOl0vj8Yt6woqcsuSUYqWL3.jpg", "order": 77}, {"name": "Fran Severini", "character": "Dancing Grandma (uncredited)", "id": 1265877, "credit_id": "52fe479b9251416c7509f795", "cast_id": 98, "profile_path": null, "order": 78}, {"name": "Jessica Simons", "character": "Casino Guest (uncredited)", "id": 139202, "credit_id": "52fe479b9251416c7509f799", "cast_id": 99, "profile_path": null, "order": 79}, {"name": "Tom Spano", "character": "Casino High Roller (uncredited)", "id": 1063037, "credit_id": "52fe479b9251416c7509f79d", "cast_id": 100, "profile_path": null, "order": 80}, {"name": "Scott 'Carrot Top' Thompson", "character": "Himself (uncredited)", "id": 96010, "credit_id": "52fe479b9251416c7509f7a1", "cast_id": 101, "profile_path": "/qjuUAVQF57M66iuX3GOGFaTlYjp.jpg", "order": 81}, {"name": "Jaira Valenti", "character": "Bartender Hostess (uncredited)", "id": 1265878, "credit_id": "52fe479b9251416c7509f7a5", "cast_id": 102, "profile_path": null, "order": 82}, {"name": "Ryan Van de Kamp Buchanan", "character": "Wedding Waiter (uncredited)", "id": 1265879, "credit_id": "52fe479b9251416c7509f7a9", "cast_id": 103, "profile_path": null, "order": 83}, {"name": "Yvonne Vera", "character": "Extra (uncredited)", "id": 1265880, "credit_id": "52fe479b9251416c7509f7ad", "cast_id": 104, "profile_path": null, "order": 84}, {"name": "Victor Yerrid", "character": "Tiger (uncredited)", "id": 1219668, "credit_id": "52fe479b9251416c7509f7b1", "cast_id": 105, "profile_path": null, "order": 85}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe479a9251416c7509f635", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 6.9, "runtime": 100}, "11323": {"poster_path": "/1Yi0js9ifoe3i5zYTRbbuvvSArH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35424826, "overview": "A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company\u2019s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.", "video": false, "id": 11323, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Informant!", "tagline": "Based on a tattle-tale.", "vote_count": 79, "homepage": "http://theinformantmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1130080", "adult": false, "backdrop_path": "/e7CVA0d35oWcEzOCmw5DFsmnOBp.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2009-09-18", "popularity": 0.663765638251769, "original_title": "The Informant!", "budget": 22000000, "cast": [{"name": "Matt Damon", "character": "Mark Whitacre", "id": 1892, "credit_id": "52fe44269251416c7502a82d", "cast_id": 2, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Melanie Lynskey", "character": "Ginger Whitacre", "id": 15091, "credit_id": "52fe44269251416c7502a831", "cast_id": 3, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 1}, {"name": "Scott Bakula", "character": "Brian Shepard", "id": 2154, "credit_id": "52fe44269251416c7502a835", "cast_id": 4, "profile_path": "/o0lOdRjvFe0DEjquR1miMnjUUzt.jpg", "order": 2}, {"name": "Patton Oswalt", "character": "Ed Herbst", "id": 10872, "credit_id": "52fe44269251416c7502a839", "cast_id": 5, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 3}, {"name": "Joel McHale", "character": "Robert Herndon", "id": 74949, "credit_id": "52fe44269251416c7502a85b", "cast_id": 11, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 4}, {"name": "Ann Dowd", "character": "Kate Medford", "id": 43366, "credit_id": "52fe44269251416c7502a85f", "cast_id": 12, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 5}, {"name": "Tom Papa", "character": "Mick Andreas", "id": 170364, "credit_id": "52fe44269251416c7502a863", "cast_id": 13, "profile_path": "/aWhxq4lUIY8iLVUqYPLhTi7Di4c.jpg", "order": 6}, {"name": "Eddie Jemison", "character": "Kirk Schmidt", "id": 1898, "credit_id": "52fe44269251416c7502a867", "cast_id": 14, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 7}, {"name": "Clancy Brown", "character": "Aubrey Daniel", "id": 6574, "credit_id": "52fe44269251416c7502a86b", "cast_id": 15, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 8}, {"name": "Tony Hale", "character": "James Epstein", "id": 25147, "credit_id": "52fe44269251416c7502a86f", "cast_id": 16, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 9}, {"name": "Dick Smothers", "character": "Judge Harold Baker", "id": 166789, "credit_id": "52fe44269251416c7502a873", "cast_id": 17, "profile_path": "/lwQKlZHqUjJw4JcoxSPeGAUraRV.jpg", "order": 10}, {"name": "Tom Smothers", "character": "Dwayne Andreas", "id": 160263, "credit_id": "52fe44269251416c7502a877", "cast_id": 18, "profile_path": "/ersRQadUTbJvEr1suAvTq4W2Z5L.jpg", "order": 11}, {"name": "Paul F. Tompkins", "character": "Anthony D'Angelo", "id": 1219029, "credit_id": "53353a7bc3a3682a9c004286", "cast_id": 19, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 12}, {"name": "Candy Clark", "character": "Mark Whitacre's Mother", "id": 12407, "credit_id": "54bf3cac9251416e9b008257", "cast_id": 20, "profile_path": "/aQKkCUp3tXxw1Mspz8QOfCRCFy2.jpg", "order": 13}, {"name": "Frank Welker", "character": "Mark Whitacre's Father", "id": 15831, "credit_id": "54bf3cc9c3a3687c40008572", "cast_id": 21, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 14}, {"name": "Andrew Daly", "character": "Marty Allison", "id": 95875, "credit_id": "54bf3d41c3a368142100b152", "cast_id": 22, "profile_path": "/1jUiCZOJOGE1LKBCaeMkrNceSj0.jpg", "order": 15}, {"name": "Thomas F. Wilson", "character": "Mark Cheviron", "id": 1065, "credit_id": "54bf3d8e92514148b000be29", "cast_id": 23, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 16}, {"name": "Rick Overton", "character": "Terry Wilson", "id": 1539, "credit_id": "54bf3db2c3a368145e00ce05", "cast_id": 24, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 17}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe44269251416c7502a829", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.0, "runtime": 108}, "10601": {"poster_path": "/kN9nWy36vyCJyMTRjQPgolxEr8l.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In stifling Edwardian London, Wendy Darling mesmerizes her brothers every night with bedtime tales of swordplay, swashbuckling and the fearsome Captain Hook. But the children become the heroes of an even greater story, when Peter Pan flies into their nursery one night and leads them over moonlit rooftops through a galaxy of stars and to the lush jungles of Neverland.", "video": false, "id": 10601, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Peter Pan", "tagline": "All children grow up except one.", "vote_count": 168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0316396", "adult": false, "backdrop_path": "/ouaMDEeYjwhksfzAWQHqmkuESi9.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Quinta Communications", "id": 6370}, {"name": "Universal Pictures", "id": 33}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2003-12-25", "popularity": 1.19801174143425, "original_title": "Peter Pan", "budget": 100000000, "cast": [{"name": "Jeremy Sumpter", "character": "Peter Pan", "id": 65838, "credit_id": "52fe43919251416c75015729", "cast_id": 1, "profile_path": "/erNaw0imhMzn3OqGcOQPQeQ4RtI.jpg", "order": 0}, {"name": "Jason Isaacs", "character": "Captain Hook, Mr Darling", "id": 11355, "credit_id": "52fe43919251416c7501572d", "cast_id": 2, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 1}, {"name": "Rachel Hurd-Wood", "character": "Wendy Darling", "id": 129050, "credit_id": "53626247c3a3683976001796", "cast_id": 23, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 2}, {"name": "Richard Briers", "character": "Smee", "id": 29859, "credit_id": "536262b70e0a2649b1001a7a", "cast_id": 24, "profile_path": "/gT5VvCAipkqxtCWfRRIaAVNezQh.jpg", "order": 3}, {"name": "Olivia Williams", "character": "Mrs. Darling", "id": 11616, "credit_id": "536263130e0a2649a6001b37", "cast_id": 25, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 4}, {"name": "Ludivine Sagnier", "character": "Tinker Bell", "id": 4390, "credit_id": "5362638b0e0a2620d3000184", "cast_id": 27, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 6}, {"name": "Harry Newell", "character": "John Darling", "id": 1315716, "credit_id": "536263cfc3a368394e0018d6", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Freddie Popplewell", "character": "Michael Darling", "id": 1315717, "credit_id": "536263fdc3a36839760017ae", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Lynn Redgrave", "character": "Aunt Millicent", "id": 29791, "credit_id": "536264440e0a2649b1001a9d", "cast_id": 30, "profile_path": "/jnXKuScyfE4zZ5AqBpmrVBMKeVz.jpg", "order": 9}], "directors": [{"name": "P.J. Hogan", "department": "Directing", "job": "Director", "credit_id": "52fe43919251416c7501578d", "profile_path": "/1ioLJjWkfihb4SllJIh8K9ilyBO.jpg", "id": 3045}], "vote_average": 6.6, "runtime": 113}, "10603": {"poster_path": "/wTvuMi6YlO6bVe2Ax5mEL1dbVYv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Baby George got into a plane crash in a jungle, stayed alive and was adopted by a wise ape. Ursula Stanhope, US noble woman is saved from death on safari by grown-up George, and he takes her to jungle to live with him. He slowly learns a rules of human relationships, while Ursula's lover Lyle is looking for her and the one who took her. After they are found, Ursula takes George to the USA.", "video": false, "id": 10603, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "George of the Jungle", "tagline": "Watch out!", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hUiYlza9hxgAhI203WuzB4HbhDv.jpg", "id": 126221, "name": "George of the Jungle Collection"}, "original_language": "pt", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0119190", "adult": false, "backdrop_path": "/4T2EpBzG4VyqDijObJFjWse8RaH.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1997-07-15", "popularity": 0.876677283675681, "original_title": "George of the Jungle", "budget": 55000000, "cast": [{"name": "Brendan Fraser", "character": "George of the Jungle", "id": 18269, "credit_id": "52fe43919251416c750157db", "cast_id": 5, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Ursula Stanhope", "id": 41087, "credit_id": "52fe43919251416c750157df", "cast_id": 6, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Thomas Haden Church", "character": "Lyle van de Groot", "id": 19159, "credit_id": "52fe43919251416c750157e3", "cast_id": 7, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 2}, {"name": "John Cleese", "character": "An Ape Named 'Ape' (voice)", "id": 8930, "credit_id": "52fe43919251416c750157e7", "cast_id": 8, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 3}, {"name": "Richard Roundtree", "character": "Kwame", "id": 6487, "credit_id": "52fe43919251416c75015815", "cast_id": 16, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 4}, {"name": "Abraham Benrubi", "character": "Thor", "id": 21132, "credit_id": "52fe43919251416c75015819", "cast_id": 17, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 5}, {"name": "Holland Taylor", "character": "Beatrice Stanhope", "id": 11318, "credit_id": "52fe43919251416c7501581d", "cast_id": 18, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 6}, {"name": "John Bennett Perry", "character": "Arthur Stanhope", "id": 20361, "credit_id": "52fe43919251416c75015821", "cast_id": 19, "profile_path": "/bzFhwuXsdZiOHRtBgz4XVELIFYO.jpg", "order": 7}, {"name": "Greg Cruttwell", "character": "Max", "id": 58090, "credit_id": "52fe43919251416c75015825", "cast_id": 20, "profile_path": "/44afCUYh5lG4zDhCPp1uV8Srxuu.jpg", "order": 8}], "directors": [{"name": "Sam Weisman", "department": "Directing", "job": "Director", "credit_id": "52fe43919251416c750157c5", "profile_path": "/xTUHl1nYyGoTqcEfAxuiFq82Xcr.jpg", "id": 54967}], "vote_average": 5.1, "runtime": 92}, "84332": {"poster_path": "/18jsp9dpGnpIluiCLwrFv75pIZR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4007792, "overview": "Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.", "video": false, "id": 84332, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Safety Not Guaranteed", "tagline": "What would you go back for?", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1862079", "adult": false, "backdrop_path": "/bfxgK56UAy45s0yKE0pv2szyg1K.jpg", "production_companies": [{"name": "Big Beach Films", "id": 12808}, {"name": "Duplass Brothers Productions", "id": 1974}], "release_date": "2012-06-08", "popularity": 0.381761197937891, "original_title": "Safety Not Guaranteed", "budget": 750000, "cast": [{"name": "Aubrey Plaza", "character": "Darius Britt", "id": 119592, "credit_id": "52fe48ec9251416c9109ccb1", "cast_id": 1004, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 0}, {"name": "Mark Duplass", "character": "Kenneth Calloway", "id": 45407, "credit_id": "52fe48ec9251416c9109ccb9", "cast_id": 1006, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 1}, {"name": "Jake M. Johnson", "character": "Jeff Schwensen", "id": 543505, "credit_id": "52fe48ec9251416c9109cccd", "cast_id": 1011, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 2}, {"name": "Karan Soni", "character": "Arnau", "id": 1109702, "credit_id": "52fe48ec9251416c9109ccc5", "cast_id": 1009, "profile_path": null, "order": 3}, {"name": "Jenica Bergere", "character": "Liz McHollis", "id": 113818, "credit_id": "52fe48ec9251416c9109ccc1", "cast_id": 1008, "profile_path": null, "order": 4}, {"name": "Kristen Bell", "character": "Belinda", "id": 40462, "credit_id": "52fe48ec9251416c9109ccc9", "cast_id": 1010, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 5}, {"name": "Jeff Garlin", "character": "Mr. Britt", "id": 60074, "credit_id": "52fe48ec9251416c9109ccbd", "cast_id": 1007, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 6}, {"name": "Mary Lynn Rajskub", "character": "Bridget Bay", "id": 25884, "credit_id": "52fe48ec9251416c9109ccb5", "cast_id": 1005, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 7}, {"name": "William Hall Jr.", "character": "Shannon", "id": 5702, "credit_id": "52fe48ec9251416c9109cd3d", "cast_id": 1030, "profile_path": null, "order": 8}, {"name": "Tony Doupe", "character": "Smith (as Tony Doup\u00e9)", "id": 79907, "credit_id": "52fe48ec9251416c9109cd41", "cast_id": 1031, "profile_path": null, "order": 9}, {"name": "Xola Malik", "character": "Jones", "id": 1173424, "credit_id": "52fe48ed9251416c9109cd45", "cast_id": 1032, "profile_path": null, "order": 10}, {"name": "Kimberly Durham", "character": "Linsey", "id": 1173425, "credit_id": "52fe48ed9251416c9109cd49", "cast_id": 1033, "profile_path": null, "order": 11}, {"name": "Grace Arends", "character": "Darcy", "id": 1173426, "credit_id": "52fe48ed9251416c9109cd4d", "cast_id": 1034, "profile_path": null, "order": 12}, {"name": "Scott Swan", "character": "Halloween", "id": 1173427, "credit_id": "52fe48ed9251416c9109cd51", "cast_id": 1035, "profile_path": null, "order": 13}, {"name": "Basil Harris", "character": "Restaurant Manager", "id": 176048, "credit_id": "52fe48ed9251416c9109cd55", "cast_id": 1036, "profile_path": "/syZPH3wa6JzLrvOiPlP0z72ZEW2.jpg", "order": 14}, {"name": "Tom Ricciardelli", "character": "Security Guard", "id": 1173428, "credit_id": "52fe48ed9251416c9109cd59", "cast_id": 1037, "profile_path": null, "order": 15}, {"name": "Lynn Shelton", "character": "Uptight Mom", "id": 90492, "credit_id": "52fe48ed9251416c9109cd5d", "cast_id": 1038, "profile_path": "/rKidRtakuSjXv13CjkYXcOeiKPq.jpg", "order": 16}, {"name": "Eli Borozan", "character": "Kid in Diner", "id": 1173429, "credit_id": "52fe48ed9251416c9109cd61", "cast_id": 1039, "profile_path": null, "order": 17}, {"name": "Alice Hung", "character": "Shift Manager", "id": 1173430, "credit_id": "52fe48ed9251416c9109cd65", "cast_id": 1040, "profile_path": null, "order": 18}], "directors": [{"name": "Colin Trevorrow", "department": "Directing", "job": "Director", "credit_id": "52fe48ec9251416c9109cca7", "profile_path": null, "id": 930707}], "vote_average": 6.7, "runtime": 85}, "149870": {"poster_path": "/3OTcCyf7QbGdVxsS8GLtaSsTZtP.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 134965832, "overview": "The Wind Rises is the 11th animated theatrical film directed by Hayao Miyazaki at Studio Ghibli. Based on Miyazaki\u2019s own manga and the 1937 short novel of the same name by Tatsuo Hori, this is the story of Jir\u014d Horikoshi, the aircraft engineer most remembered for his design work on the Mitsubishi A6M Reisen \u201cZero\u201d, Japan\u2019s famous World War II fighter aircraft. During the WWII years, the Miyazaki family business manufactured aircraft parts, including the windshields and rudders used on the Zero.", "video": false, "id": 149870, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Wind Rises", "tagline": "We must live.", "vote_count": 140, "homepage": "http://www.kazetachinu.jp", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2013293", "adult": false, "backdrop_path": "/cMrvn4Hl0A0NAL61BpDWQIsMsiN.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Studio Ghibli", "id": 10342}], "release_date": "2013-07-20", "popularity": 0.96082646030901, "original_title": "Kaze Tachinu", "budget": 30000000, "cast": [{"name": "Hideaki Anno", "character": "Jir\u00f4 Horikoshi (voice)", "id": 77921, "credit_id": "52fe4bf69251416c75113511", "cast_id": 7, "profile_path": "/sUOFgMAkhn0rROo1nFX4c38tJDQ.jpg", "order": 0}, {"name": "Jun Kunimura", "character": "Hattori (voice)", "id": 2541, "credit_id": "52fe4bf69251416c75113515", "cast_id": 8, "profile_path": "/8yzpo0wtCbo9xC5Y0xwtZsQ7hWU.jpg", "order": 1}, {"name": "Mirai Shida", "character": "Kayo Horikoshi (voice)", "id": 227611, "credit_id": "52fe4bf69251416c75113519", "cast_id": 9, "profile_path": "/pCS5YQSbXsLmxdPVoD8ngyAMkNl.jpg", "order": 2}, {"name": "Miori Takimoto", "character": "Naoko Satomi (voice)", "id": 227612, "credit_id": "52fe4bf69251416c7511351d", "cast_id": 10, "profile_path": "/lCLY0wEEle6XHONKYeoZVU2NZxj.jpg", "order": 3}, {"name": "Hidetoshi Nishijima", "character": "Honj\u00f4 (voice)", "id": 13250, "credit_id": "52fe4bf69251416c75113521", "cast_id": 11, "profile_path": "/e5F33DjoyFHyGHQnGibiO3VHKoy.jpg", "order": 4}, {"name": "Joseph Gordon-Levitt", "character": "Jir\u00f4 Horikoshi (voice: English version)", "id": 24045, "credit_id": "5534000e9251415291005b40", "cast_id": 69, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 5}, {"name": "John Krasinski", "character": "Honj\u00f4 (voice: English version)", "id": 17697, "credit_id": "5534003fc3a3682226005ed4", "cast_id": 70, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 6}, {"name": "Emily Blunt", "character": "Nahoko Satomi (voice: English version)", "id": 5081, "credit_id": "5534005b92514125dc001ebd", "cast_id": 71, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 7}, {"name": "Martin Short", "character": "Kurokawa (voice: English version)", "id": 519, "credit_id": "55340067c3a368222300588a", "cast_id": 72, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 8}, {"name": "Stanley Tucci", "character": "Caproni (voice: English version)", "id": 2283, "credit_id": "553400ab92514140b5003d1c", "cast_id": 73, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 9}, {"name": "Mandy Patinkin", "character": "Hattori (voice: English version)", "id": 25503, "credit_id": "553400b692514140b5003d1f", "cast_id": 74, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 10}, {"name": "Mae Whitman", "character": "Kayo Horikoshi / Kinu (voice: English version)", "id": 52404, "credit_id": "553400c39251416f88000cd3", "cast_id": 75, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 11}, {"name": "Werner Herzog", "character": "Castorp (voice: English version)", "id": 6818, "credit_id": "553400d0c3a3680bdc000440", "cast_id": 76, "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "order": 12}, {"name": "Jennifer Grey", "character": "Mrs. Kurokawa (voice: English version)", "id": 722, "credit_id": "553400e292514140b5003d27", "cast_id": 77, "profile_path": "/sVghvsFVIttc45q93FQXEYm610g.jpg", "order": 13}, {"name": "William H. Macy", "character": "Satomi (voice: English version)", "id": 3905, "credit_id": "553400eec3a3682dc20006f7", "cast_id": 78, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 14}, {"name": "Zach Callison", "character": "Young Jir\u00f4 (voice: English version)", "id": 225863, "credit_id": "55340119c3a36822190061c9", "cast_id": 79, "profile_path": null, "order": 15}, {"name": "Madeleine Rose Yen", "character": "Young Nahoko (voice: English version)", "id": 1251354, "credit_id": "55340125c3a368523e001ef6", "cast_id": 80, "profile_path": null, "order": 16}, {"name": "Eva Bella", "character": "Young Kayo (voice: English version)", "id": 1207488, "credit_id": "5534012f92514140b5003d2e", "cast_id": 81, "profile_path": "/lKDJgAVwWh8j8K0wk3r5V0axa9Y.jpg", "order": 17}, {"name": "Edie Mirman", "character": "Jir\u00f4's Mother (voice: English version)", "id": 1229809, "credit_id": "5534013bc3a36852de001f14", "cast_id": 82, "profile_path": null, "order": 18}, {"name": "Darren Criss", "character": "Katayama (voice: English version)", "id": 228721, "credit_id": "55340145c3a368523e001efd", "cast_id": 83, "profile_path": "/8Ia3ZJXonTxQEFQvbA1ASMFtjto.jpg", "order": 19}, {"name": "Elijah Wood", "character": "Sone (voice: English version)", "id": 109, "credit_id": "55340152925141675e0001fe", "cast_id": 84, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 20}, {"name": "Ronan Farrow", "character": "Mitsubishi Employee (voice: English version)", "id": 1456640, "credit_id": "5534018ac3a36822190061e3", "cast_id": 85, "profile_path": null, "order": 21}, {"name": "David Cowgill", "character": "Flight Engineer (voice: English version)", "id": 60232, "credit_id": "553401959251415291005b6d", "cast_id": 86, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 22}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe4bf59251416c75113507", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.5, "runtime": 126}, "149871": {"poster_path": "/qiJJQ797PwvUO2FsTh0Axn5srzj.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 24615571, "overview": "Found inside a shining stalk of bamboo by an old bamboo cutter and his wife, a tiny girl grows rapidly into an exquisite young lady. The mysterious young princess enthralls all who encounter her - but ultimately she must confront her fate, the punishment for her crime.", "video": false, "id": 149871, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Tale of the Princess Kaguya", "tagline": "A princess's crime and punishment", "vote_count": 58, "homepage": "http://www.kaguyahime-monogatari.jp/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2576852", "adult": false, "backdrop_path": "/uIhEU2VUVgez3tKyPmMG9pf1q0g.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Walt Disney Studios Home Entertainment", "id": 3202}, {"name": "Toho", "id": 5897}, {"name": "Dentsu", "id": 6452}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "KDDI Corporation", "id": 11848}, {"name": "Mitsubishi Shoji", "id": 20191}, {"name": "Gkids", "id": 32853}], "release_date": "2013-11-23", "popularity": 1.29009158404831, "original_title": "Kaguya Hime no Monogatari", "budget": 49300000, "cast": [{"name": "Aki Asakura", "character": "Princess Kaguya (voice)", "id": 1115687, "credit_id": "54444c640e0a2663360060b8", "cast_id": 5, "profile_path": "/jiyJJzRm6vQDbSMp288GL3mtua6.jpg", "order": 1}, {"name": "Kengo Kora", "character": "Sutemaru (voice)", "id": 120690, "credit_id": "54444d0ac3a3683df2005e55", "cast_id": 6, "profile_path": "/z7lrLbWz8qgdPA3x3wJcQuSFwwk.jpg", "order": 2}, {"name": "Nobuko Miyamoto", "character": "The Bamboo Cutter's Wife (voice)", "id": 70627, "credit_id": "54444d5a0e0a26634d005d20", "cast_id": 8, "profile_path": "/87cCQByNL6oQ6nYMJpthhKXIWo.jpg", "order": 4}, {"name": "Atsuko Takahata", "character": "Lady Sagami (voice)", "id": 90570, "credit_id": "54444d9bc3a3683e01005d6f", "cast_id": 9, "profile_path": "/oOm9afBtARBzKsQBnsRzpZF8gE6.jpg", "order": 5}, {"name": "Tomoko Tabata", "character": "Menowarawa (voice)", "id": 148286, "credit_id": "54444df70e0a2663330061c9", "cast_id": 10, "profile_path": "/fa4J2s9lXGI48yzB41Eqqx8lHYX.jpg", "order": 6}, {"name": "Hidetoshi Nishijima", "character": "The Minister of Culture (voice)", "id": 13250, "credit_id": "5444522ec3a3683df7005e33", "cast_id": 18, "profile_path": "/e5F33DjoyFHyGHQnGibiO3VHKoy.jpg", "order": 14}, {"name": "Chlo\u00eb Grace Moretz", "character": "Princess Kaguya (voice)", "id": 56734, "credit_id": "544452610e0a266336006192", "cast_id": 19, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 15}, {"name": "Darren Criss", "character": "Sutemaru (voice)", "id": 228721, "credit_id": "54445274c3a3683df2005f2a", "cast_id": 20, "profile_path": "/8Ia3ZJXonTxQEFQvbA1ASMFtjto.jpg", "order": 16}, {"name": "James Caan", "character": "The Bamboo Cutter (voice)", "id": 3085, "credit_id": "544452860e0a26633a006099", "cast_id": 21, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 17}, {"name": "Mary Steenburgen", "character": "The Bamboo Cutter's Wife (voice)", "id": 2453, "credit_id": "5444529f0e0a26632d005eb2", "cast_id": 22, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 18}, {"name": "Lucy Liu", "character": "Lady Sagami (voice)", "id": 140, "credit_id": "544452afc3a36848940001a6", "cast_id": 23, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 19}, {"name": "Hynden Walch", "character": "Menowarawa (voice)", "id": 113919, "credit_id": "544452d1c3a3683e05005df4", "cast_id": 24, "profile_path": "/gCHMyVwt2vlQt3AYPfoknVmklXI.jpg", "order": 20}, {"name": "George Segal", "character": "Inventory of Akita (voice)", "id": 18364, "credit_id": "544452f60e0a26634d005e02", "cast_id": 25, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 21}, {"name": "James Marsden", "character": "Prince Ishitsukuri (voice)", "id": 11006, "credit_id": "544453550e0a26633d006058", "cast_id": 26, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 22}, {"name": "Dean Cain", "character": "The Mikado (voice)", "id": 21721, "credit_id": "5444536b0e0a26633a0060d2", "cast_id": 27, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 23}, {"name": "Beau Bridges", "character": "Prince Kuramochi (voice)", "id": 2222, "credit_id": "5444538dc3a3683e0e005ea7", "cast_id": 28, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 24}, {"name": "Oliver Platt", "character": "The Minister of Finance (voice)", "id": 17485, "credit_id": "544453dcc3a36819fb0000a2", "cast_id": 30, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 26}, {"name": "Daniel Dae Kim", "character": "The Minister of the Military (voice)", "id": 18307, "credit_id": "544454040e0a26634d005e3d", "cast_id": 31, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 27}, {"name": "John Cho", "character": "The Minister of Culture (voice)", "id": 68842, "credit_id": "544454200e0a26632d005f02", "cast_id": 32, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 28}, {"name": "Takaya Kamikawa", "character": "", "id": 1248335, "credit_id": "54a1e15a925141190d0021fc", "cast_id": 41, "profile_path": null, "order": 29}], "directors": [{"name": "Isao Takahata", "department": "Directing", "job": "Director", "credit_id": "52fe4bf69251416c75113549", "profile_path": "/okibTp5aDbYfATefDQjxU5Owsoz.jpg", "id": 628}], "vote_average": 8.3, "runtime": 137}, "10610": {"poster_path": "/5JDLNIxaKd96vq43qY5KmiSkycR.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.", "video": false, "id": 10610, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Medallion", "tagline": "", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0288045", "adult": false, "backdrop_path": "/3xUXBdbHA0NBTs09mlfmWV5i05O.jpg", "production_companies": [{"name": "Screen Gems, Inc.", "id": 127}], "release_date": "2003-08-15", "popularity": 0.775953974928944, "original_title": "The Medallion", "budget": 41000000, "cast": [{"name": "Jackie Chan", "character": "Eddie Yang", "id": 18897, "credit_id": "52fe43939251416c75015b9d", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Lee Evans", "character": "Arthur Watson", "id": 7400, "credit_id": "52fe43939251416c75015ba1", "cast_id": 2, "profile_path": "/oMMGnjjU9bPxtaS4swZ4dxkifwX.jpg", "order": 1}, {"name": "Claire Forlani", "character": "Nicole James", "id": 4174, "credit_id": "52fe43939251416c75015ba5", "cast_id": 3, "profile_path": "/aneByKd0ZvfVPMROEq3NmSObGmB.jpg", "order": 2}, {"name": "Julian Sands", "character": "Snakehead", "id": 6104, "credit_id": "52fe43939251416c75015ba9", "cast_id": 4, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 3}, {"name": "John Rhys-Davies", "character": "Cmdr. Hammerstock-Smythe", "id": 655, "credit_id": "52fe43939251416c75015bad", "cast_id": 5, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 4}, {"name": "Carl Ng", "character": "Interpol officer in van", "id": 137146, "credit_id": "53053b8c925141348e06089e", "cast_id": 23, "profile_path": "/73qKbSPCjiCPWrTLdcjRxv9XOVT.jpg", "order": 5}], "directors": [{"name": "Gordon Chan", "department": "Directing", "job": "Director", "credit_id": "52fe43939251416c75015bfb", "profile_path": "/loFRCbxYk5Mt6of9jAXVEtaAyZJ.jpg", "id": 64901}], "vote_average": 5.7, "runtime": 88}, "84348": {"poster_path": "/yo49x6Jhr1ecCjy1ByFqwAbtARJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a group of misfits is hired by an unknown third party to burglarize a desolate house and acquire a rare VHS tape, they discover more found footage than they bargained for.", "video": false, "id": 84348, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "V/H/S", "tagline": "This collection is killer.", "vote_count": 114, "homepage": "http://www.magnetreleasing.com/vhs/", "belongs_to_collection": {"backdrop_path": "/wSdVm0uxEvYlwMxOAhipUUzey4w.jpg", "poster_path": "/esfk62fcqTWqB90dAHaVMbDWmbM.jpg", "id": 207621, "name": "V/H/S Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2105044", "adult": false, "backdrop_path": "/wSdVm0uxEvYlwMxOAhipUUzey4w.jpg", "production_companies": [{"name": "The Collective", "id": 15156}, {"name": "Bloody Disgusting", "id": 15157}, {"name": "8383 Productions", "id": 15158}], "release_date": "2012-10-05", "popularity": 0.460854790159405, "original_title": "V/H/S", "budget": 0, "cast": [{"name": "Calvin Reeder", "character": "Gary", "id": 928453, "credit_id": "52fe48ee9251416c9109d0eb", "cast_id": 1, "profile_path": "/7ObgJKGeseLITNYuyUcuLCpGDEz.jpg", "order": 0}, {"name": "Lane Hughes", "character": "Zak", "id": 98632, "credit_id": "52fe48ee9251416c9109d0ef", "cast_id": 2, "profile_path": "/hKFtJDPxt7KAmuxZlsIU1XasE1f.jpg", "order": 1}, {"name": "Adam Wingard", "character": "Rock", "id": 98631, "credit_id": "52fe48ee9251416c9109d13b", "cast_id": 16, "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "order": 2}, {"name": "Hannah Fierman", "character": "Lily", "id": 111692, "credit_id": "52fe48ee9251416c9109d13f", "cast_id": 17, "profile_path": "/jw6o8TaCoVpp5wX7wzvAi3HjunX.jpg", "order": 3}, {"name": "Mike Donlan", "character": "Shane", "id": 1039531, "credit_id": "52fe48ee9251416c9109d143", "cast_id": 18, "profile_path": null, "order": 4}, {"name": "Joe Sykes", "character": "Patrick", "id": 1039532, "credit_id": "52fe48ee9251416c9109d147", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Drew Sawyer", "character": "Clint", "id": 1039533, "credit_id": "52fe48ee9251416c9109d14b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Jas Sams", "character": "Lisa", "id": 1039534, "credit_id": "52fe48ee9251416c9109d14f", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Joe Swanberg", "character": "Sam", "id": 40863, "credit_id": "52fe48ee9251416c9109d153", "cast_id": 22, "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "order": 8}, {"name": "Sophia Takal", "character": "Stephanie", "id": 1031943, "credit_id": "52fe48ee9251416c9109d175", "cast_id": 28, "profile_path": "/3ypOZqKk9RZklpU1RQnKmwUlyLL.jpg", "order": 9}, {"name": "Kate Lyn Sheil", "character": "The Stalker", "id": 582722, "credit_id": "52fe48ef9251416c9109d179", "cast_id": 29, "profile_path": "/mQYnmIY2gGOOKaCxoxKzUue1E9u.jpg", "order": 10}, {"name": "Drew Moerlein", "character": "Joey Brenner", "id": 1090686, "credit_id": "52fe48ef9251416c9109d17d", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Jason Yachanin", "character": "Spider", "id": 81577, "credit_id": "52fe48ef9251416c9109d181", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Helen Rogers", "character": "Emily", "id": 1090687, "credit_id": "52fe48ef9251416c9109d185", "cast_id": 32, "profile_path": "/sm4uIAGTyaFSs5TF068848umsoy.jpg", "order": 13}, {"name": "Chad Villella", "character": "Chad", "id": 1039529, "credit_id": "52fe48ef9251416c9109d189", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Matt Bettinelli-Olpin", "character": "Matt", "id": 66681, "credit_id": "52fe48ef9251416c9109d18d", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Tyler Gillett", "character": "Tyler", "id": 1039527, "credit_id": "52fe48ef9251416c9109d191", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Paul Natonek", "character": "Paul", "id": 1090688, "credit_id": "52fe48ef9251416c9109d195", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Nicholas Tecosky", "character": "Bartender", "id": 1061519, "credit_id": "52fe48ef9251416c9109d199", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Nicole Erb", "character": "The Girl", "id": 1090689, "credit_id": "52fe48ef9251416c9109d19d", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "John Walcutt", "character": "Cult Leader", "id": 131833, "credit_id": "52fe48ef9251416c9109d1a1", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Bilal Mir", "character": "Cult Dude", "id": 1090690, "credit_id": "52fe48ef9251416c9109d1a5", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Damion Stephens", "character": "Cult Dude", "id": 1090691, "credit_id": "52fe48ef9251416c9109d1a9", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Koz McRae", "character": "Cult Dude", "id": 1090692, "credit_id": "52fe48ef9251416c9109d1ad", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Eric Curtis", "character": "Eric", "id": 1090693, "credit_id": "52fe48ef9251416c9109d1b1", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Nicole Boccumini", "character": "Niky", "id": 1090694, "credit_id": "52fe48ef9251416c9109d1b5", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Lisa Marie Thomas", "character": "Lisa's Friend", "id": 1090695, "credit_id": "52fe48ef9251416c9109d1b9", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Melinda Fleming", "character": "Melinda", "id": 1090696, "credit_id": "52fe48ef9251416c9109d1bd", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Rob Mosca", "character": "Bouncer", "id": 1090697, "credit_id": "52fe48ef9251416c9109d1c1", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Kentucker Audley", "character": "", "id": 107766, "credit_id": "52fe48ef9251416c9109d1cb", "cast_id": 49, "profile_path": "/oFeyT31aUrh9GHzsjLuvm713lyl.jpg", "order": 29}], "directors": [{"name": "Matt Bettinelli-Olpin", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d0f5", "profile_path": null, "id": 66681}, {"name": "David Bruckner", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d0fb", "profile_path": "/ogcp72B4ry8Rtbj8trpsplHBz7W.jpg", "id": 141962}, {"name": "Tyler Gillett", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d101", "profile_path": null, "id": 1039527}, {"name": "Justin Martinez", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d107", "profile_path": null, "id": 1039528}, {"name": "Glenn McQuaid", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d10d", "profile_path": null, "id": 88556}, {"name": "Joe Swanberg", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d113", "profile_path": "/nG4oDcuPaNmk8lnSyzQi9UDLRbl.jpg", "id": 40863}, {"name": "Chad Villella", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d119", "profile_path": null, "id": 1039529}, {"name": "Ti West", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d11f", "profile_path": "/vRxN4eGT6X5MMdjpExZ0YvjDeg9.jpg", "id": 101542}, {"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe48ee9251416c9109d125", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}], "vote_average": 5.8, "runtime": 116}, "10623": {"poster_path": "/6wIVys3Ixd0saAOPo2msQzgrSbC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56489558, "overview": "Gang leader Tony pulls off a major diamond heist with his crew, but cop-turned-criminal Ling knows who has the loot and responds by kidnapping Tony's daughter and holding her for ransom. Unfortunately, Tony's lost the diamonds as well. As he frantically searches for his daughter and the jewels, Tony pairs with a high-kicking government agent who once worked with Ling and seeks revenge on him.", "video": false, "id": 10623, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Cradle 2 the Grave", "tagline": "Mortal enemies make dangerous friends.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0306685", "adult": false, "backdrop_path": "/1SWYvFhQvAEI3CkbxQOg3VTqjlp.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}], "release_date": "2003-02-28", "popularity": 0.625968912346929, "original_title": "Cradle 2 the Grave", "budget": 25000000, "cast": [{"name": "Jet Li", "character": "Su", "id": 1336, "credit_id": "52fe43979251416c75016571", "cast_id": 9, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "DMX", "character": "Anthony Fait", "id": 21355, "credit_id": "52fe43979251416c75016575", "cast_id": 10, "profile_path": "/eoAfTjFs6SiXGBmdlfasb0J9fHw.jpg", "order": 1}, {"name": "Kelly Hu", "character": "Sona", "id": 11024, "credit_id": "52fe43979251416c75016579", "cast_id": 11, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 2}, {"name": "Anthony Anderson", "character": "Tommy", "id": 18471, "credit_id": "52fe43979251416c7501657d", "cast_id": 12, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 3}, {"name": "Tom Arnold", "character": "Archie", "id": 74036, "credit_id": "52fe43979251416c75016581", "cast_id": 13, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 4}, {"name": "Mark Dacascos", "character": "Yao Ling", "id": 18702, "credit_id": "52fe43979251416c75016585", "cast_id": 14, "profile_path": "/rg28gJ7hVgoKehCIzA7sf4dDuRN.jpg", "order": 5}, {"name": "Gabrielle Union", "character": "Daria", "id": 17773, "credit_id": "52fe43979251416c75016589", "cast_id": 15, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 6}, {"name": "Johnny Tri Nguyen", "character": "Ling's Hitman", "id": 127451, "credit_id": "52fe43979251416c7501658d", "cast_id": 16, "profile_path": "/oEw80HIGhs9ORBUMAhLab49bxFg.jpg", "order": 7}], "directors": [{"name": "Andrzej Bartkowiak", "department": "Directing", "job": "Director", "credit_id": "52fe43969251416c75016543", "profile_path": "/taaHl0nMtXgKTx8YbeQoJCuO5Ac.jpg", "id": 10765}], "vote_average": 6.3, "runtime": 101}, "10625": {"poster_path": "/lDlGPZS0UJYKxVlpyff3BMyPc2H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129042871, "overview": "Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.", "video": false, "id": 10625, "genres": [{"id": 35, "name": "Comedy"}], "title": "Mean Girls", "tagline": "Welcome to girl world.", "vote_count": 382, "homepage": "http://www.meangirls.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/9XoyvX5uWQRoiz9IodCgUoXLw2V.jpg", "id": 99606, "name": "Mean Girls Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377092", "adult": false, "backdrop_path": "/mysdd7fPyvhPdlOLgeruv4J2olB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-04-30", "popularity": 1.20633234892977, "original_title": "Mean Girls", "budget": 17000000, "cast": [{"name": "Lindsay Lohan", "character": "Cady Heron", "id": 49265, "credit_id": "52fe43979251416c7501664b", "cast_id": 9, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Regina George", "id": 53714, "credit_id": "52fe43979251416c7501664f", "cast_id": 10, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Lacey Chabert", "character": "Gretchen Wieners", "id": 22082, "credit_id": "52fe43979251416c7501665b", "cast_id": 13, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Karen Smith", "id": 71070, "credit_id": "52fe43979251416c7501665f", "cast_id": 14, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Tina Fey", "character": "Ms. Norbury", "id": 56323, "credit_id": "52fe43979251416c75016653", "cast_id": 11, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 4}, {"name": "Tim Meadows", "character": "Mr. Duvall", "id": 51857, "credit_id": "52fe43979251416c75016657", "cast_id": 12, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 5}, {"name": "Lizzy Caplan", "character": "Janis Ian", "id": 51988, "credit_id": "52fe43979251416c75016663", "cast_id": 15, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 6}, {"name": "Amy Poehler", "character": "Mrs. George", "id": 56322, "credit_id": "52fe43979251416c7501666d", "cast_id": 17, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 7}, {"name": "Daniel Franzese", "character": "Damian", "id": 32598, "credit_id": "52fe43979251416c75016671", "cast_id": 18, "profile_path": "/6KzFC4ypjbKcgoRKo4Bi1IWq1rK.jpg", "order": 8}, {"name": "Ana Gasteyer", "character": "Cady's mom", "id": 86267, "credit_id": "52fe43979251416c75016675", "cast_id": 19, "profile_path": "/8Gp1zad6m0QBpqP7wgIah1Ka1l3.jpg", "order": 9}, {"name": "Jonathan Bennett", "character": "Aaron Samuels", "id": 76996, "credit_id": "547fa0d9c3a36829b500028c", "cast_id": 20, "profile_path": "/7IdoFyD20nGmfb1eh8AW71htRJM.jpg", "order": 10}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe43979251416c7501661d", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 6.8, "runtime": 97}, "76163": {"poster_path": "/dJPnTe1qOcO7XqsJvESFph83m6m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 312573423, "overview": "Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.", "video": false, "id": 76163, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Expendables 2", "tagline": "Back for War.", "vote_count": 1656, "homepage": "http://theexpendables2film.com/", "belongs_to_collection": {"backdrop_path": "/lA7oDSt6LkyDqtbFGbyuG0afmTI.jpg", "poster_path": "/mpzHpaXjBc7bHAhwcerIznnq9qV.jpg", "id": 126125, "name": "The Expendables Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1764651", "adult": false, "backdrop_path": "/xCfHomVxzeAmbZlbiZbpp2igIsl.jpg", "production_companies": [{"name": "Nu Image Films", "id": 925}, {"name": "Millennium Films", "id": 10254}], "release_date": "2012-08-17", "popularity": 1.54951916239655, "original_title": "The Expendables 2", "budget": 100000000, "cast": [{"name": "Sylvester Stallone", "character": "Barney Ross", "id": 16483, "credit_id": "52fe4929c3a368484e11d755", "cast_id": 2, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Jason Statham", "character": "Lee Christmas", "id": 976, "credit_id": "52fe4929c3a368484e11d76d", "cast_id": 8, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Dolph Lundgren", "character": "Gunnar Jensen", "id": 16644, "credit_id": "52fe4929c3a368484e11d775", "cast_id": 10, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 2}, {"name": "Bruce Willis", "character": "Church", "id": 62, "credit_id": "52fe4929c3a368484e11d759", "cast_id": 3, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 3}, {"name": "Arnold Schwarzenegger", "character": "Trench", "id": 1100, "credit_id": "52fe4929c3a368484e11d75d", "cast_id": 4, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 4}, {"name": "Jean-Claude Van Damme", "character": "Vilain", "id": 15111, "credit_id": "52fe4929c3a368484e11d761", "cast_id": 5, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 5}, {"name": "Chuck Norris", "character": "Booker", "id": 51576, "credit_id": "52fe4929c3a368484e11d765", "cast_id": 6, "profile_path": "/v37EfVIoKV4ooy1KE5z8BxsT6wU.jpg", "order": 6}, {"name": "Scott Adkins", "character": "Hector", "id": 78110, "credit_id": "52fe4929c3a368484e11d769", "cast_id": 7, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 7}, {"name": "Liam Hemsworth", "character": "Billy", "id": 96066, "credit_id": "52fe4929c3a368484e11d771", "cast_id": 9, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 8}, {"name": "Jet Li", "character": "Yin Yang", "id": 1336, "credit_id": "52fe4929c3a368484e11d779", "cast_id": 11, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 9}, {"name": "Randy Couture", "character": "Toll Road", "id": 74748, "credit_id": "52fe4929c3a368484e11d77d", "cast_id": 12, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 10}, {"name": "Terry Crews", "character": "Hale Caesar", "id": 53256, "credit_id": "52fe4929c3a368484e11d781", "cast_id": 13, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 11}, {"name": "Charisma Carpenter", "character": "Lacy", "id": 126502, "credit_id": "52fe492ac3a368484e11d785", "cast_id": 14, "profile_path": "/y5PFIcVmgycJWzwp4VcaZIOqVY2.jpg", "order": 12}, {"name": "Nikolette Noel", "character": "Billy's Wife", "id": 934869, "credit_id": "52fe492ac3a368484e11d789", "cast_id": 15, "profile_path": "/3HjH0jkOcKuIfFiYxPkaU6M73TR.jpg", "order": 13}, {"name": "Nan Yu", "character": "Maggie", "id": 27084, "credit_id": "52fe492ac3a368484e11d78d", "cast_id": 16, "profile_path": "/xKWnjXyp5wb6HVbj5CbY7gywLTL.jpg", "order": 14}, {"name": "Amanda Ooms", "character": "Pilar", "id": 46128, "credit_id": "52fe492ac3a368484e11d791", "cast_id": 17, "profile_path": "/wRM8rypHbumz7RkUigR6ASdKpPc.jpg", "order": 15}, {"name": "George Zlatarev", "character": "Bojan", "id": 67246, "credit_id": "52fe492ac3a368484e11d795", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe4929c3a368484e11d751", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.9, "runtime": 103}, "18823": {"poster_path": "/n8W2Y72VzSi8Yz6IvYWwfoiMTS6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 232713139, "overview": "Born of a god but raised as a man, Perseus is helpless to save his family from Hades, vengeful god of the underworld. With nothing to lose, Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts, Perseus and his warriors will only survive if Perseus accepts his power as a god, defies fate and creates his own destiny.", "video": false, "id": 18823, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Clash of the Titans", "tagline": "Titans will clash.", "vote_count": 992, "homepage": "http://www.clash-of-the-titans.com/", "belongs_to_collection": {"backdrop_path": "/Awy2ye1yJ75ukpDP0qtOx0r7Eng.jpg", "poster_path": "/3TXIuCHr2m9oZcLJOc5qo9o5WsT.jpg", "id": 86780, "name": "Clash of the Titans Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800320", "adult": false, "backdrop_path": "/ma5Ps40txofscTtWpjs39swMnwZ.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "The Zanuck Company", "id": 80}, {"name": "Legendary Pictures", "id": 923}, {"name": "Thunder Road Pictures", "id": 3528}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2010-04-02", "popularity": 1.48708694239058, "original_title": "Clash of the Titans", "budget": 125000000, "cast": [{"name": "Sam Worthington", "character": "Perseus", "id": 65731, "credit_id": "52fe479e9251416c7509fe41", "cast_id": 1, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Hades", "id": 5469, "credit_id": "52fe479e9251416c7509fe45", "cast_id": 3, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Gemma Arterton", "character": "Io", "id": 59620, "credit_id": "52fe479e9251416c7509fe95", "cast_id": 17, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 2}, {"name": "Jason Flemyng", "character": "Calibos / Acrisius", "id": 973, "credit_id": "52fe479e9251416c7509fe91", "cast_id": 16, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 3}, {"name": "Alexa Davalos", "character": "Andromeda", "id": 28109, "credit_id": "52fe479e9251416c7509fe99", "cast_id": 18, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 4}, {"name": "Tine Stapelfeldt", "character": "Danae", "id": 114018, "credit_id": "52fe479e9251416c7509fe9d", "cast_id": 19, "profile_path": "/t9Q5Hwaeh8kbYapEGISrpZgVWks.jpg", "order": 5}, {"name": "Mads Mikkelsen", "character": "Draco", "id": 1019, "credit_id": "52fe479e9251416c7509fea1", "cast_id": 20, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 6}, {"name": "Luke Evans", "character": "Apollo", "id": 114019, "credit_id": "52fe479e9251416c7509fea5", "cast_id": 21, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 7}, {"name": "Izabella Miko", "character": "Athena", "id": 59592, "credit_id": "52fe479e9251416c7509fea9", "cast_id": 22, "profile_path": "/y17WPWE0tOFroVttwayzU3Q2Mxb.jpg", "order": 8}, {"name": "Liam Neeson", "character": "Zeus", "id": 3896, "credit_id": "52fe479e9251416c7509fead", "cast_id": 23, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 9}, {"name": "Agyness Deyn", "character": "Aphrodite", "id": 1060671, "credit_id": "52fe479e9251416c7509feb1", "cast_id": 24, "profile_path": "/7c3mQs3cfEhgrcYZBrIIGbJZ21V.jpg", "order": 10}, {"name": "Kaya Scodelario", "character": "Peshet", "id": 115150, "credit_id": "52fe479e9251416c7509feb5", "cast_id": 25, "profile_path": "/s3ujVl6I2jyr5tZjvNxvpKm3o7S.jpg", "order": 11}, {"name": "Nathalie Cox", "character": "Artemis", "id": 17337, "credit_id": "52fe479e9251416c7509feb9", "cast_id": 26, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 12}, {"name": "Pete Postlethwaite", "character": "Spyros", "id": 4935, "credit_id": "52fe479e9251416c7509fedb", "cast_id": 32, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 13}, {"name": "Polly Walker", "character": "Cassiopeia", "id": 6416, "credit_id": "52fe479e9251416c7509fedf", "cast_id": 33, "profile_path": "/swfioO83iyf5aB2svD0tgIWlCSr.jpg", "order": 14}, {"name": "Ashraf Barhom", "character": "Ozal", "id": 766, "credit_id": "52fe479e9251416c7509fee3", "cast_id": 34, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 15}, {"name": "Elizabeth McGovern", "character": "Marmara", "id": 4513, "credit_id": "52fe479e9251416c7509fee7", "cast_id": 35, "profile_path": "/oECBsmiZ8OWxm6iQCV5o0eViLRg.jpg", "order": 16}, {"name": "Nicholas Hoult", "character": "Eusebios", "id": 3292, "credit_id": "52fe479e9251416c7509feeb", "cast_id": 36, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 17}, {"name": "Liam Cunningham", "character": "Solon", "id": 15498, "credit_id": "52fe479f9251416c7509feef", "cast_id": 37, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 18}, {"name": "Hans Matheson", "character": "Ixas", "id": 37168, "credit_id": "52fe479f9251416c7509fef3", "cast_id": 38, "profile_path": "/4MQAI6g3AabzUDm29UbadjjWteL.jpg", "order": 19}, {"name": "Vincent Regan", "character": "Kepheus", "id": 9831, "credit_id": "52fe479f9251416c7509fef7", "cast_id": 39, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 20}, {"name": "Alexander Siddig", "character": "Hermes", "id": 2957, "credit_id": "52fe479f9251416c7509fefb", "cast_id": 40, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 21}, {"name": "Luke Treadaway", "character": "Prokopion", "id": 103351, "credit_id": "52fe479f9251416c7509feff", "cast_id": 41, "profile_path": "/uSROaOirY0WIBhz9fuIcroK1gA2.jpg", "order": 22}, {"name": "Mouloud Achour", "character": "Kucuk", "id": 78225, "credit_id": "52fe479f9251416c7509ff03", "cast_id": 42, "profile_path": "/oNsblO8sTFRuQ5pR8kgVYjEPovr.jpg", "order": 23}, {"name": "Ian Whyte", "character": "Sheikh Sulieman", "id": 946696, "credit_id": "52fe479f9251416c7509ff07", "cast_id": 43, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 24}, {"name": "Katherine Loeppky", "character": "Aged Cassiopeia", "id": 969143, "credit_id": "52fe479f9251416c7509ff0b", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Danny Huston", "character": "Poseidon", "id": 6413, "credit_id": "52fe479f9251416c7509ff0f", "cast_id": 45, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 26}, {"name": "Phil McKee", "character": "Harbourmaster", "id": 231272, "credit_id": "53b013d70e0a26598900624e", "cast_id": 85, "profile_path": null, "order": 27}, {"name": "Laura Kachergus", "character": "Citizen (Argos)", "id": 45840, "credit_id": "53b014190e0a265989006256", "cast_id": 86, "profile_path": null, "order": 28}, {"name": "David Kennedy", "character": "Kepheus' General", "id": 62498, "credit_id": "53b014500e0a26597d006305", "cast_id": 87, "profile_path": "/refiQ4V3hLc9xzBwCbemVrXXpNB.jpg", "order": 29}, {"name": "Nina Young", "character": "Hera", "id": 58778, "credit_id": "53b014860e0a265986006137", "cast_id": 88, "profile_path": null, "order": 30}, {"name": "Jane March", "character": "Hestia", "id": 21817, "credit_id": "53b014f80e0a2659830061e5", "cast_id": 89, "profile_path": "/H7RsKkIJbgxoY4t8ia6JSJB7bG.jpg", "order": 31}, {"name": "Natalia Vodianova", "character": "Medusa", "id": 1105030, "credit_id": "53b015c9c3a3682edb004eef", "cast_id": 90, "profile_path": "/bJR63E2QUSwQRvDzwDGojrcmeb1.jpg", "order": 32}, {"name": "Charlotte Comer", "character": "Demeter", "id": 181045, "credit_id": "53b015f7c3a3682ed8004d10", "cast_id": 91, "profile_path": null, "order": 33}, {"name": "Rory McCann", "character": "Bello", "id": 3075, "credit_id": "546eb798c3a3682fad000b9a", "cast_id": 92, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 34}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe479e9251416c7509fe4b", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}], "vote_average": 5.6, "runtime": 106}, "10634": {"poster_path": "/A66Lze4KZb1fgBkB2blv1a4XwDP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28215918, "overview": "Craig and Smokey are two guys in Los Angeles hanging out on their porch on a Friday afternoon, smoking and drinking, looking for something to do. Encounters with neighbors and other friends over the course of the day and night, and their ensuing antics, make up the rest of the movie.", "video": false, "id": 10634, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Friday", "tagline": "A lot can go down between thursday and saturday...", "vote_count": 152, "homepage": "http://www.newline.com/properties/friday.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dWh1Fohgx07AEd4vRUwgIj8BYxD.jpg", "id": 43563, "name": "Friday Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113118", "adult": false, "backdrop_path": "/isWyP4jWmcCHjUcanVwGBDwVSsA.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1995-04-26", "popularity": 0.831743840973857, "original_title": "Friday", "budget": 3500000, "cast": [{"name": "Ice Cube", "character": "Craig Jones", "id": 9778, "credit_id": "52fe43999251416c75016ac3", "cast_id": 1, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Chris Tucker", "character": "Smokey", "id": 66, "credit_id": "52fe43999251416c75016ac7", "cast_id": 2, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 1}, {"name": "Nia Long", "character": "Debbie", "id": 9781, "credit_id": "52fe43999251416c75016acb", "cast_id": 3, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 2}, {"name": "Tommy Lister", "character": "Deebo", "id": 8396, "credit_id": "52fe43999251416c75016acf", "cast_id": 4, "profile_path": "/UY4xouwBs8p9QmcXbnP8iy2uYp.jpg", "order": 3}, {"name": "John Witherspoon", "character": "Mr. Jones", "id": 56902, "credit_id": "52fe43999251416c75016af1", "cast_id": 10, "profile_path": "/quHpadwIQIQQZdFDoYKoGFhPXnH.jpg", "order": 4}, {"name": "Anna Maria Horsford", "character": "Mrs. Jones", "id": 54800, "credit_id": "52fe43999251416c75016af5", "cast_id": 11, "profile_path": "/l2WIo8fAWrksNIBO6tzhFkN23Cb.jpg", "order": 5}, {"name": "Regina King", "character": "Dana Jones", "id": 9788, "credit_id": "52fe43999251416c75016af9", "cast_id": 12, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 6}, {"name": "Paula Jai Parker", "character": "Joi", "id": 45245, "credit_id": "52fe43999251416c75016afd", "cast_id": 13, "profile_path": "/hCFVh90DDs7bhv6qEhepXeJvFtY.jpg", "order": 7}, {"name": "Faizon Love", "character": "Big Worm", "id": 62066, "credit_id": "52fe43999251416c75016b01", "cast_id": 14, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 8}, {"name": "DJ Pooh", "character": "Red", "id": 65134, "credit_id": "52fe43999251416c75016b05", "cast_id": 15, "profile_path": "/rdhmGM82GL5er2N2YmwRPVQxD9U.jpg", "order": 9}, {"name": "Tony Cox", "character": "Mr. Parker", "id": 19754, "credit_id": "52fe43999251416c75016b09", "cast_id": 16, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 10}, {"name": "Anthony Johnson", "character": "Ezal", "id": 83101, "credit_id": "52fe43999251416c75016b0d", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Bernie Mac", "character": "Pastor Clever", "id": 1897, "credit_id": "52fe43999251416c75016b11", "cast_id": 18, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 12}, {"name": "Meagan Good", "character": "Kid #2", "id": 22122, "credit_id": "52fe43999251416c75016b15", "cast_id": 19, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 13}, {"name": "Terri J. Vaughn", "character": "China", "id": 74613, "credit_id": "52fe43999251416c75016b19", "cast_id": 20, "profile_path": "/xCwMcIi9qBPzU0w7pu2c9OP1Igu.jpg", "order": 14}, {"name": "F. Gary Gray", "character": "Black Man at Store", "id": 37932, "credit_id": "52fe43999251416c75016b1d", "cast_id": 21, "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "order": 15}, {"name": "Reynaldo Rey", "character": "Red's Father", "id": 97781, "credit_id": "52fe43999251416c75016b21", "cast_id": 22, "profile_path": "/t6A6xsI7A1Kk9MeXkqkC2pdhnH4.jpg", "order": 16}, {"name": "Michael Clarke Duncan", "character": "Craps Player", "id": 61981, "credit_id": "52fe43999251416c75016b25", "cast_id": 23, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 17}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe43999251416c75016ad5", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 7.2, "runtime": 91}, "190859": {"poster_path": "/ooy5M7QXEWVpOTAZIRGMskBQbQ9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118990000, "overview": "A Navy SEAL recounts his military career, which includes more than 150 confirmed kills. U.S. Navy SEAL Chris Kyle (Bradley Cooper) takes his sole mission -- protect his comrades -- to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.", "video": false, "id": 190859, "genres": [{"id": 28, "name": "Action"}, {"id": 10752, "name": "War"}], "title": "American Sniper", "tagline": "The most lethal sniper in U.S. history.", "vote_count": 835, "homepage": "http://www.americansnipermovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2179136", "adult": false, "backdrop_path": "/oJNu8vS6Wf10Cv2996KO65jt4C0.jpg", "production_companies": [{"name": "22 & Indiana Productions", "id": 14318}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros.", "id": 6194}, {"name": "Mad Chance", "id": 1757}], "release_date": "2014-12-25", "popularity": 8.14335455265938, "original_title": "American Sniper", "budget": 58800000, "cast": [{"name": "Bradley Cooper", "character": "Chris Kyle", "id": 51329, "credit_id": "549e6afec3a368764f0039ca", "cast_id": 44, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Sienna Miller", "character": "Taya Renae Kyle", "id": 23459, "credit_id": "5430143a0e0a26464c0008ab", "cast_id": 11, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 1}, {"name": "Jake McDorman", "character": "Ryan Job", "id": 94791, "credit_id": "543014bbc3a36831a90008d3", "cast_id": 12, "profile_path": "/7DHDZrBne3diRwoWirg9djgKzTg.jpg", "order": 2}, {"name": "Luke Grimes", "character": "Marc Lee", "id": 56680, "credit_id": "543014ff0e0a2646490009a2", "cast_id": 13, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 3}, {"name": "Kyle Gallner", "character": "Winston", "id": 59219, "credit_id": "5430150cc3a36831ac000939", "cast_id": 14, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 4}, {"name": "Navid Negahban", "character": "Sheikh al-Obeidi", "id": 103330, "credit_id": "5430153f0e0a26463d000971", "cast_id": 15, "profile_path": "/qxp9X0SIA0FWts2qK60IcrmUhnF.jpg", "order": 5}, {"name": "Keir O'Donnell", "character": "Jeff Kyle", "id": 39213, "credit_id": "54301557c3a36831b800093b", "cast_id": 16, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 6}, {"name": "Max Charles", "character": "Colton Kyle", "id": 558928, "credit_id": "547dc587c3a3685af0005f09", "cast_id": 23, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 7}, {"name": "Brando Eaton", "character": "", "id": 208406, "credit_id": "547dc599c3a3685af3004a79", "cast_id": 24, "profile_path": "/2FGegT5jzhD94616bMZ7k5ExyXT.jpg", "order": 8}, {"name": "Brian Hallisay", "character": "Captain Gillespie", "id": 207396, "credit_id": "547dc5b692514123ef003b85", "cast_id": 25, "profile_path": "/oFPwpghpgIcqKV3Qb9YV8NMCKaq.jpg", "order": 9}, {"name": "Sam Jaeger", "character": "Captain Martens", "id": 65727, "credit_id": "547dc5c8c3a3685af0005f15", "cast_id": 26, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 10}, {"name": "E.R. Ruiz", "character": "Carjacker #2", "id": 1392837, "credit_id": "547dc5d79251412d7c005a86", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Eric Close", "character": "", "id": 119520, "credit_id": "547dc5de9251412d7f005798", "cast_id": 28, "profile_path": "/pMpkLILUIcWHNwTvDmrJ7AKM3Jd.jpg", "order": 12}, {"name": "Owain Yeoman", "character": "", "id": 61527, "credit_id": "547dc5ef9251412d7f00579a", "cast_id": 29, "profile_path": "/5ZyPXgyJF18zpOjwnvpWbSS8Bgr.jpg", "order": 13}, {"name": "Marnette Patterson", "character": "Sarah", "id": 71519, "credit_id": "547dc6019251412d75004fa9", "cast_id": 30, "profile_path": "/tuVcwHuiWXF8KOqGD04y8BHuQuI.jpg", "order": 14}, {"name": "Cory Hardrict", "character": "D", "id": 74302, "credit_id": "547dc61dc3a3685aed0060e9", "cast_id": 31, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 15}, {"name": "Chance Kelly", "character": "Col. Jones", "id": 17194, "credit_id": "547dc62dc3a3685afd005989", "cast_id": 32, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 16}, {"name": "Chance Kelly", "character": "Naval Recruiter", "id": 17194, "credit_id": "547dc6559251412d70005f54", "cast_id": 33, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 17}, {"name": "Leonard Roberts", "character": "Instructor Rolle", "id": 83859, "credit_id": "547dc666c3a3685af9004eb1", "cast_id": 34, "profile_path": "/stLgqI31p8ULs3lDZg57KWpYL68.jpg", "order": 18}, {"name": "Eric Ladin", "character": "Squirrel", "id": 188311, "credit_id": "547dc6719251412d780055ac", "cast_id": 35, "profile_path": "/jc6zPIMdG3cFaxcmlveKdJgnPzl.jpg", "order": 19}, {"name": "Emerson Brooks", "character": "Marine Sniper", "id": 1392838, "credit_id": "547dc67d9251412d75004fb7", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Evan Gamble", "character": "Jag Officer #1", "id": 963450, "credit_id": "547dc68c9251411f4e00446b", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Assaf Cohen", "character": "Terp #2", "id": 117824, "credit_id": "547dc69892514123ef003ba8", "cast_id": 38, "profile_path": "/oomyDwiJ6LxMH6CCx8oyzDC6kZZ.jpg", "order": 22}, {"name": "Tim Griffin", "character": "Colonel Gronski", "id": 27031, "credit_id": "547dc6a5c3a3685b00005f3a", "cast_id": 39, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 23}, {"name": "Sammy Sheik", "character": "Mustafa", "id": 1230897, "credit_id": "547dc6b1c3a36841e10023e9", "cast_id": 40, "profile_path": "/6v7kafnGC2c3lJyW6IRMsXrXjRB.jpg", "order": 24}, {"name": "Robert Clotworthy", "character": "Navy Doctor", "id": 35172, "credit_id": "547dc6c09251412d70005f62", "cast_id": 41, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 25}, {"name": "Reynaldo Gallegos", "character": "Tony", "id": 52946, "credit_id": "547dc6cd9251412d780055b9", "cast_id": 42, "profile_path": "/9Auh1zaVGGBTYSDwjBs5PRChju1.jpg", "order": 26}, {"name": "Zack Duhame", "character": "Contractor", "id": 186573, "credit_id": "547dc6e4c3a3685af9004ebc", "cast_id": 43, "profile_path": null, "order": 27}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4c6f9251416c910f4d57", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.6, "runtime": 134}, "10637": {"poster_path": "/iI12IRzif2VjTkQJRDQw3WyWKdS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136706683, "overview": "The year is 1971, and the people of Alexandria, VA. are none too pleased when African American Herman Boone is given the nod to head a newly integrated football team. As the season progresses, however, their contentious attitudes begin to change.", "video": false, "id": 10637, "genres": [{"id": 18, "name": "Drama"}], "title": "Remember the Titans", "tagline": "Before they could win, they had to become one.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0210945", "adult": false, "backdrop_path": "/wyTpmdwCOYA7NpuQIA1vjNlHBTh.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2000-09-28", "popularity": 0.751826458779369, "original_title": "Remember the Titans", "budget": 30000000, "cast": [{"name": "Denzel Washington", "character": "Herman Boone", "id": 5292, "credit_id": "52fe43999251416c75016bc7", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Will Patton", "character": "Bill Yoast", "id": 883, "credit_id": "52fe43999251416c75016bcb", "cast_id": 2, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 1}, {"name": "Ryan Hurst", "character": "Gerry Bertier", "id": 43858, "credit_id": "52fe43999251416c75016bcf", "cast_id": 3, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 2}, {"name": "Wood Harris", "character": "Julius Campbell", "id": 65829, "credit_id": "52fe43999251416c75016bd3", "cast_id": 4, "profile_path": "/u88haG6iG7zwV0PTk9tSG5obaeP.jpg", "order": 3}, {"name": "Hayden Panettiere", "character": "Sheryl Yoast", "id": 17265, "credit_id": "52fe43999251416c75016bfb", "cast_id": 11, "profile_path": "/14qZLXI0Py3nfSyiXTQVOEu65i3.jpg", "order": 4}, {"name": "Ryan Gosling", "character": "Alan Bosley", "id": 30614, "credit_id": "52fe43999251416c75016bff", "cast_id": 12, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 5}], "directors": [{"name": "Boaz Yakin", "department": "Directing", "job": "Director", "credit_id": "52fe43999251416c75016bd9", "profile_path": "/4NL3F6iwVlwdWvBKue5H8OpZrp2.jpg", "id": 52358}], "vote_average": 7.2, "runtime": 113}, "27022": {"poster_path": "/ZNSrRpdJ6FjMy4Iu6JpRTJ5Q87.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215283991, "overview": "Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can't do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant prot\u00e9g\u00e9. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.", "video": false, "id": 27022, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Sorcerer's Apprentice", "tagline": "It's The Coolest Job Ever.", "vote_count": 407, "homepage": "http://disney.go.com/disneypictures/sorcerersapprentice/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0963966", "adult": false, "backdrop_path": "/v0o9M1us65w1kDQp8Q6KnB5a11s.jpg", "production_companies": [{"name": "Junction Entertainment", "id": 19097}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Saturn Films", "id": 831}, {"name": "Broken Road Productions", "id": 8000}], "release_date": "2010-07-13", "popularity": 1.66380000378832, "original_title": "The Sorcerer's Apprentice", "budget": 150000000, "cast": [{"name": "Nicolas Cage", "character": "Balthazar Blake", "id": 2963, "credit_id": "52fe4528c3a368484e04b991", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Jay Baruchel", "character": "Dave Stutler", "id": 449, "credit_id": "52fe4528c3a368484e04b995", "cast_id": 5, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 1}, {"name": "Monica Bellucci", "character": "Veronica Gorloisen", "id": 28782, "credit_id": "52fe4528c3a368484e04b999", "cast_id": 6, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Maxim Horvath", "id": 658, "credit_id": "52fe4528c3a368484e04b99d", "cast_id": 7, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Teresa Palmer", "character": "Becky", "id": 20374, "credit_id": "52fe4528c3a368484e04b9a1", "cast_id": 9, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 4}, {"name": "Ethan Peck", "character": "Andre", "id": 119586, "credit_id": "52fe4528c3a368484e04b9a5", "cast_id": 10, "profile_path": "/wji1IaAZpGissuJRdGOx7SCcy7N.jpg", "order": 5}, {"name": "Alice Krige", "character": "Morgana le Fay", "id": 2506, "credit_id": "52fe4528c3a368484e04b9a9", "cast_id": 11, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 6}, {"name": "Peyton List", "character": "Young Becky", "id": 1254435, "credit_id": "52fe4528c3a368484e04b9c1", "cast_id": 18, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 7}, {"name": "Toby Kebbell", "character": "Drake Stone", "id": 20286, "credit_id": "52fe4528c3a368484e04b9ad", "cast_id": 13, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 8}, {"name": "Omar Benson Miller", "character": "Bennet", "id": 334, "credit_id": "52fe4528c3a368484e04b9b1", "cast_id": 14, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 9}, {"name": "Jake Cherry", "character": "Young Dave", "id": 17834, "credit_id": "52fe4528c3a368484e04b9b5", "cast_id": 15, "profile_path": "/e7bPRIJq7Ub3CBJtlCykB3UmiAr.jpg", "order": 10}, {"name": "James A. Stephens", "character": "Merlin", "id": 1187835, "credit_id": "52fe4528c3a368484e04b9b9", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Gregory Woo", "character": "Sun-Lok", "id": 1187836, "credit_id": "52fe4528c3a368484e04b9bd", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4528c3a368484e04b981", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 5.9, "runtime": 109}, "2454": {"poster_path": "/kSSyzqw9C4wUggicG4D81XmptR1.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "PL", "name": "Poland"}, {"iso_3166_1": "SI", "name": "Slovenia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 419651413, "overview": "One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.", "video": false, "id": 2454, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Chronicles of Narnia: Prince Caspian", "tagline": "Hope has a new face.", "vote_count": 425, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ojjzZUQlqKTsN1T7s5OAVZSjYMH.jpg", "poster_path": "/sh6Kn8VBfXotJ6qsvJkdfscxXKR.jpg", "id": 420, "name": "The Chronicles of Narnia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0499448", "adult": false, "backdrop_path": "/eiET76GO3xECOic1rL8VcTLuy3L.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "Ozumi Films", "id": 11440}, {"name": "Propeler", "id": 11441}, {"name": "Silverbell Films", "id": 11442}, {"name": "Stillking Films", "id": 11345}, {"name": "Walt Disney", "id": 5888}], "release_date": "2008-05-16", "popularity": 1.18684054230161, "original_title": "The Chronicles of Narnia: Prince Caspian", "budget": 225000000, "cast": [{"name": "Ben Barnes", "character": "Prince Caspian", "id": 25130, "credit_id": "52fe4358c3a36847f804d6ad", "cast_id": 1, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 0}, {"name": "Georgie Henley", "character": "Lucy Pevensie", "id": 5526, "credit_id": "52fe4358c3a36847f804d6b1", "cast_id": 2, "profile_path": "/u8zyLaHTqx4V8LyHnYL2vDsxbrC.jpg", "order": 1}, {"name": "Skandar Keynes", "character": "Edmund Pevensie", "id": 5527, "credit_id": "52fe4359c3a36847f804d757", "cast_id": 36, "profile_path": "/7Wc58Opf4EDjHDotwjK2XLTFLqU.jpg", "order": 2}, {"name": "William Moseley", "character": "Peter Pevensie", "id": 5528, "credit_id": "52fe4358c3a36847f804d6b5", "cast_id": 3, "profile_path": "/zBJ00uNw4nK0gFetNfnVmbGC5ly.jpg", "order": 3}, {"name": "Anna Popplewell", "character": "Susan Pevensie", "id": 5529, "credit_id": "52fe4358c3a36847f804d6b9", "cast_id": 4, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 4}, {"name": "Sergio Castellitto", "character": "King Miraz", "id": 2166, "credit_id": "52fe4358c3a36847f804d6bd", "cast_id": 5, "profile_path": "/vD37C5NfcW62U73iEhh3pEWSmM9.jpg", "order": 5}, {"name": "Alicia Borrachero", "character": "Queen Prunaprismia", "id": 25132, "credit_id": "52fe4358c3a36847f804d6c1", "cast_id": 6, "profile_path": "/wnxiLdliR9HWmarKFmGO8Gk0eu.jpg", "order": 6}, {"name": "Peter Dinklage", "character": "Trumpkin", "id": 22970, "credit_id": "52fe4358c3a36847f804d6c5", "cast_id": 7, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 7}, {"name": "Warwick Davis", "character": "Nikabrik", "id": 11184, "credit_id": "52fe4359c3a36847f804d6c9", "cast_id": 8, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 8}, {"name": "Vincent Grass", "character": "Doktor Cornelius", "id": 25133, "credit_id": "52fe4359c3a36847f804d6cd", "cast_id": 9, "profile_path": "/7XMoWw7jONg4xc7npyNfJGnKBZx.jpg", "order": 9}, {"name": "Pierfrancesco Favino", "character": "Lord Glozell", "id": 17839, "credit_id": "52fe4359c3a36847f804d6d1", "cast_id": 10, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 10}, {"name": "Dami\u00e1n Alc\u00e1zar", "character": "Lord Sopespian", "id": 7370, "credit_id": "52fe4359c3a36847f804d6d5", "cast_id": 11, "profile_path": "/kGdrBKHr01ZzX4fDwpSo4fNVst7.jpg", "order": 11}, {"name": "Sim\u00f3n Andreu", "character": "Lord Scythley", "id": 24496, "credit_id": "52fe4359c3a36847f804d6d9", "cast_id": 12, "profile_path": "/6G1JcihI3dS3Dpk4RowWqgVCKmP.jpg", "order": 12}, {"name": "Predrag Bjelac", "character": "Lord Donnon", "id": 12044, "credit_id": "52fe4359c3a36847f804d6dd", "cast_id": 13, "profile_path": "/lv74T1lR0UwubTaE6FaIRLP1tu2.jpg", "order": 13}, {"name": "Shane Rangi", "character": "Asterius", "id": 25134, "credit_id": "52fe4359c3a36847f804d6e1", "cast_id": 14, "profile_path": "/27LjnxN8dMQ3r2yRatAoht3iDhJ.jpg", "order": 14}, {"name": "Cornell John", "character": "Glenstorm", "id": 25135, "credit_id": "52fe4359c3a36847f804d6e5", "cast_id": 15, "profile_path": "/rl0EawwZcysnbKhoA4g99k8kLFf.jpg", "order": 15}, {"name": "Liam Neeson", "character": "Aslan", "id": 3896, "credit_id": "52fe4359c3a36847f804d6e9", "cast_id": 16, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 16}, {"name": "Ken Stott", "character": "Tr\u00fcffelj\u00e4ger", "id": 25136, "credit_id": "52fe4359c3a36847f804d6ed", "cast_id": 17, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 17}, {"name": "Tilda Swinton", "character": "White Witch", "id": 3063, "credit_id": "52fe4359c3a36847f804d75b", "cast_id": 37, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 18}, {"name": "Eddie Izzard", "character": "Reepicheep", "id": 1926, "credit_id": "52fe4359c3a36847f804d78f", "cast_id": 46, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 19}], "directors": [{"name": "Andrew Adamson", "department": "Directing", "job": "Director", "credit_id": "52fe4359c3a36847f804d6f3", "profile_path": "/8dqPHdlHR3N5mo0OtJWIXL9agBb.jpg", "id": 5524}], "vote_average": 6.0, "runtime": 150}, "10647": {"poster_path": "/l5diVKdxKMUkn4jOAxASbbGtSl1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55707411, "overview": "Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.", "video": false, "id": 10647, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Pay It Forward", "tagline": "When someone does you a big favor, don't pay it back... Pay It Forward", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0223897", "adult": false, "backdrop_path": "/oiqgXrlMEFm8mhoTPf3PKjr3iHu.jpg", "production_companies": [{"name": "Bel Air Entertainment", "id": 788}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2000-10-12", "popularity": 0.862778064681372, "original_title": "Pay It Forward", "budget": 40000000, "cast": [{"name": "Kevin Spacey", "character": "Eugene Simonet", "id": 1979, "credit_id": "52fe439b9251416c75016fad", "cast_id": 1, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Arlene McKinney", "id": 9994, "credit_id": "52fe439b9251416c75016fb1", "cast_id": 2, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "Haley Joel Osment", "character": "Trevor McKinney", "id": 9640, "credit_id": "52fe439b9251416c75016fb5", "cast_id": 3, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 2}, {"name": "Jay Mohr", "character": "Chris Chandler", "id": 12217, "credit_id": "52fe439b9251416c75016fb9", "cast_id": 4, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 3}, {"name": "Jim Caviezel", "character": "Jerry", "id": 8767, "credit_id": "533d21e4c3a36878ed002ba1", "cast_id": 11, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 4}, {"name": "Jon Bon Jovi", "character": "Ricky McKinney", "id": 32362, "credit_id": "5521d18bc3a36828d100224f", "cast_id": 12, "profile_path": "/gCVfbPMPaIEatCRwEwWhKKzo0AQ.jpg", "order": 5}, {"name": "Angie Dickinson", "character": "Grace", "id": 4301, "credit_id": "5521d19d9251415c8200420a", "cast_id": 13, "profile_path": "/3pnCoPtk3Fv5IJywId5hUjQ33yR.jpg", "order": 6}, {"name": "David Ramsey", "character": "Sidney Parker", "id": 116774, "credit_id": "5521d1be9251415c870042da", "cast_id": 14, "profile_path": "/8ZbdY0yrA4GTg0g9LrrhzDHRRy.jpg", "order": 7}, {"name": "Gary Werntz", "character": "Mr. Thorsen", "id": 1087649, "credit_id": "5521d1f89251415c870042e7", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Colleen Flynn", "character": "Woman on Bridge", "id": 81375, "credit_id": "5521d238c3a3684dda004640", "cast_id": 16, "profile_path": "/vowf6vmqj0PtItiHxL3GgBpHFvD.jpg", "order": 9}, {"name": "Marc Donato", "character": "Adam", "id": 112600, "credit_id": "5521d259c3a36828d1002279", "cast_id": 17, "profile_path": "/2u5zIQRq4ps3PLTm8EqsDYrjnp8.jpg", "order": 10}, {"name": "Kathleen Wilhoite", "character": "Bonnie", "id": 42335, "credit_id": "5521d2769251415c8400416b", "cast_id": 18, "profile_path": "/vVqaPBDr54BgryNaGb9IIyDQExD.jpg", "order": 11}, {"name": "Liza Snyder", "character": "Michelle", "id": 1229915, "credit_id": "5521d28b92514171cb001c78", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Jeannetta Arnette", "character": "Nurse", "id": 2842, "credit_id": "5521d2a5c3a3683453001ddf", "cast_id": 20, "profile_path": "/uVaqZLhpTh5OmJDFSv7wim63sV1.jpg", "order": 13}, {"name": "Hannah Leder", "character": "Thorsen's Daughter", "id": 1450290, "credit_id": "5521d2db9251415c8700431b", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe439b9251416c75016fbf", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 6.6, "runtime": 122}, "51608": {"poster_path": "/owZopv729tpgNvybqtZO9tSIynJ.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 43000000, "overview": "His only friend called him 'the man from nowhere'... Taesik, a former special agent becomes a loner after losing his wife in a miserable accident and lives a bitter life running a pawnshop. He only has a few customers and a friend named Somi, a little girl next door. As Taesik spends more and more time with Somi, he gets attached to her. Then Somi is kidnapped by a gang, and as Taesik tries to save Somi by becoming deeply associated with the gang his mysterious past is revealed...", "video": false, "id": 51608, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Man from Nowhere", "tagline": "Nothing to lose, nothing to compromise.", "vote_count": 78, "homepage": "http://www.mannowhere.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1527788", "adult": false, "backdrop_path": "/clAY7PPLpdMeOoJvR1aGYPCa3Fq.jpg", "production_companies": [{"name": "Cinema Service", "id": 868}, {"name": "Opus Pictures", "id": 7270}, {"name": "United Pictures", "id": 7271}], "release_date": "2010-08-04", "popularity": 0.485361230046653, "original_title": "\uc544\uc800\uc528", "budget": 0, "cast": [{"name": "Won Bin", "character": "Cha Tae-sik", "id": 70336, "credit_id": "52fe47fbc3a36847f8152999", "cast_id": 1002, "profile_path": "/hROkYFXEk7TNIPlwdttQQFFCBzE.jpg", "order": 0}, {"name": "Kim Sae-Ron", "character": "Jeong So-mi", "id": 144591, "credit_id": "52fe47fbc3a36847f815299d", "cast_id": 1003, "profile_path": "/sPKjboN02XhQryWyibNXwGJwe5a.jpg", "order": 1}, {"name": "Kim Tae-Hoon", "character": "Kim Chi-gon", "id": 552067, "credit_id": "52fe47fbc3a36847f81529d3", "cast_id": 1014, "profile_path": "/xeGeseFCjRonh0E832MXaXf6uOz.jpg", "order": 2}, {"name": "Kim Hee-Won", "character": "Man-seok", "id": 550683, "credit_id": "52fe47fbc3a36847f81529ab", "cast_id": 1006, "profile_path": "/9sVftalohbpO6GTxI6vTTW367dK.jpg", "order": 3}, {"name": "Kim Seong-Oh", "character": "Jong-seok", "id": 1102155, "credit_id": "52fe47fbc3a36847f81529cb", "cast_id": 1012, "profile_path": "/q1jmk4vVaIODkAEJ9UBsjP8t0ki.jpg", "order": 4}, {"name": "Lee Jong-Pil", "character": "Detective No", "id": 1075354, "credit_id": "53e66a66c3a368443300153a", "cast_id": 1017, "profile_path": "/3a6TosQKmdNkGbUXvgYiCxxpzUB.jpg", "order": 5}, {"name": "Thanayong Wongtrakul", "character": "Ramrowan", "id": 1041679, "credit_id": "52fe47fbc3a36847f81529c7", "cast_id": 1011, "profile_path": "/fzAf5NKAPnS3XenhKk6RAengN70.jpg", "order": 6}, {"name": "Kim Hyo-Seo", "character": "Hyo-jeong", "id": 144954, "credit_id": "52fe47fbc3a36847f81529a1", "cast_id": 1004, "profile_path": "/7jjuR0q4JaCF9cCxsWDhCEA1aEg.jpg", "order": 7}, {"name": "Song Young-Chang", "character": "Oh Myung-gyu", "id": 88298, "credit_id": "53e66b4fc3a3684439001592", "cast_id": 1018, "profile_path": "/dOnYp40NiTQGxPIlcu0Qivd5ZQF.jpg", "order": 8}, {"name": "Baek Su-Ryeon", "character": "Bookstore Lady", "id": 1190219, "credit_id": "53e66bb3c3a3684430001503", "cast_id": 1019, "profile_path": "/fJzoFYf9Y9N4XR8KY2Nwl2NRRoi.jpg", "order": 9}, {"name": "Nam Kyung-eub", "character": "Section Chief", "id": 1045484, "credit_id": "53e66c940e0a2628d5002242", "cast_id": 1020, "profile_path": null, "order": 10}, {"name": "Kwak Do-won", "character": "Detective Kim", "id": 1155298, "credit_id": "53e66d81c3a36844390015ba", "cast_id": 1021, "profile_path": "/dTpMVzntSFeK3WazegiCV9T1Uhl.jpg", "order": 11}, {"name": "Seok-hyeon Jo", "character": "Moon Dal-seo", "id": 1074064, "credit_id": "53e66ead0e0a2628c4002174", "cast_id": 1022, "profile_path": null, "order": 12}, {"name": "Hong So-Hee", "character": "Kim Yeon-soo", "id": 564861, "credit_id": "52fe47fbc3a36847f81529cf", "cast_id": 1013, "profile_path": "/wchNePkW9HFd1t7LBtnitLEQmJA.jpg", "order": 13}], "directors": [{"name": "Lee Jeong-Beom", "department": "Directing", "job": "Director", "credit_id": "5312abd1925141104200413c", "profile_path": "/3LceHDnVnW5qZvfaPNlMIdIvRqv.jpg", "id": 144590}], "vote_average": 7.6, "runtime": 119}, "190880": {"poster_path": "/A8qFJaPp9VuxyHaDBMchjFG3GqO.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "How to become a man when your mother and your closed circle have decided otherwise? This is the challenge Guillaume took up. The film recounts Guillaume's tragicomic battle from the young age of eight, as he adopts the role of a girl then of a homosexual... until, aged 30, he meets the woman who, after his mother, will become the other woman in his life. Beyond this story of a heterosexual coming-out, the film tells the tale of an actor who never stopped loving women, maybe even a little too much.", "video": false, "id": 190880, "genres": [{"id": 35, "name": "Comedy"}], "title": "Me, Myself and Mum", "tagline": "", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2315200", "adult": false, "backdrop_path": "/lL1aDCZQjdzZJx6YtexrLnXqdcy.jpg", "production_companies": [{"name": "LGM Productions", "id": 2490}, {"name": "Rectangle Productions", "id": 2700}, {"name": "Gaumont", "id": 9}, {"name": "France 3 Cinema", "id": 16804}, {"name": "Gaumont Distribution", "id": 13800}], "release_date": "2013-11-20", "popularity": 0.425829741207558, "original_title": "Les Gar\u00e7ons et Guillaume, \u00e0 Table !", "budget": 10735974, "cast": [{"name": "Guillaume Gallienne", "character": "Guillaume", "id": 6554, "credit_id": "52fe4c709251416c910f4f41", "cast_id": 6, "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "order": 0}, {"name": "Fran\u00e7oise Fabian", "character": "Babou", "id": 9765, "credit_id": "52fe4c709251416c910f4f45", "cast_id": 7, "profile_path": "/l8fJpeV3naLD53CEqxWD1shXI2a.jpg", "order": 1}, {"name": "Andr\u00e9 Marcon", "character": "Le P\u00e8re", "id": 55805, "credit_id": "52fe4c709251416c910f4f49", "cast_id": 8, "profile_path": "/dsuU4KIb8Av5rGk5T605S7utlpg.jpg", "order": 2}, {"name": "Diane Kruger", "character": "Ingeborg", "id": 9824, "credit_id": "52fe4c709251416c910f4f4d", "cast_id": 9, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 3}, {"name": "Nanou Garcia", "character": "Paqui", "id": 130448, "credit_id": "52fe4c709251416c910f4f51", "cast_id": 10, "profile_path": "/2kbvJzHwEuHNdLEX7aCEF2Xy9kf.jpg", "order": 4}, {"name": "G\u00f6tz Otto", "character": "Raymund", "id": 10744, "credit_id": "531621a4c3a36813bb000e1d", "cast_id": 12, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 5}, {"name": "Brigitte Catillon", "character": "Tante d'Am\u00e9rique", "id": 20081, "credit_id": "531621d2c3a36813a6000eb8", "cast_id": 13, "profile_path": "/5Lk7epqxqcd8TdxfexOc06kiTNn.jpg", "order": 6}, {"name": "Reda Kateb", "character": "Karim", "id": 89626, "credit_id": "53162202c3a36813a6000ebf", "cast_id": 14, "profile_path": "/zfrJui3N3UybfLJQOMC6SalcBlJ.jpg", "order": 7}, {"name": "Carole Brenner", "character": "Tante Polyglote", "id": 1148198, "credit_id": "53162238c3a36813a6000ec4", "cast_id": 15, "profile_path": "/8lkK4k042RwYcCD5j9LlvJEr16m.jpg", "order": 8}, {"name": "Charlie Anson", "character": "J\u00e9r\u00e9my", "id": 578939, "credit_id": "53162252c3a36813bb000e2c", "cast_id": 16, "profile_path": null, "order": 9}], "directors": [{"name": "Guillaume Gallienne", "department": "Directing", "job": "Director", "credit_id": "52fe4c709251416c910f4f57", "profile_path": "/hbS2YPPEmlxupfZxuacKjHdSXHZ.jpg", "id": 6554}], "vote_average": 6.9, "runtime": 85}, "51620": {"poster_path": "/5ARRXaWPgtIT9qKl8Db3MNuGvo3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "In the world's most dangerous prison, a new game is born: Death Race. The rules of this adrenaline-fueled blood sport are simple, drive or die. When repentant convict Carl Lucas discovers there's a price on his head, his only hope is to survive a twisted race against an army of hardened criminals and tricked-out cars.", "video": false, "id": 51620, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Death Race 2", "tagline": "10 killer drivers, 20,000 rounds of ammo. 1 survivor.", "vote_count": 104, "homepage": "http://deathrace2.craveonline.com/", "belongs_to_collection": {"backdrop_path": "/cGaVuq8ZjX1UPD9wPRlzx6lP9kK.jpg", "poster_path": "/uffHLg0ekFlErCp7OkpecXkWPng.jpg", "id": 86116, "name": "Death Race Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1500491", "adult": false, "backdrop_path": "/e1CMBwdeWytbSFSiEc9ax5ZSTzg.jpg", "production_companies": [{"name": "Moonlighting Films", "id": 9137}, {"name": "CC Capital Arts Entertainment SRL", "id": 17008}], "release_date": "2010-12-27", "popularity": 1.08874211072971, "original_title": "Death Race 2", "budget": 7000000, "cast": [{"name": "Luke Goss", "character": "Carl 'Luke' Lucas / Frankenstein", "id": 10843, "credit_id": "52fe47fbc3a36847f8152b95", "cast_id": 6, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 0}, {"name": "Sean Bean", "character": "Markus Kane", "id": 48, "credit_id": "52fe47fbc3a36847f8152b99", "cast_id": 7, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 1}, {"name": "Danny Trejo", "character": "Goldberg", "id": 11160, "credit_id": "52fe47fbc3a36847f8152b9d", "cast_id": 8, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Weyland", "id": 10182, "credit_id": "52fe47fbc3a36847f8152ba1", "cast_id": 9, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Tanit Phoenix", "character": "Katrina Banks", "id": 37769, "credit_id": "52fe47fbc3a36847f8152ba5", "cast_id": 11, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 4}, {"name": "Robin Shou", "character": "14K", "id": 57250, "credit_id": "52fe47fbc3a36847f8152ba9", "cast_id": 12, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 5}, {"name": "Fred Koehler", "character": "Lists", "id": 76513, "credit_id": "52fe47fbc3a36847f8152bad", "cast_id": 13, "profile_path": "/f52RmqmKKbHS9JFb2sJ28dnyaUr.jpg", "order": 6}, {"name": "Joe Vaz", "character": "Rocco", "id": 137463, "credit_id": "52fe47fbc3a36847f8152bb1", "cast_id": 14, "profile_path": "/wNW0XpdWxAe2pzVjbRagqdhBEHk.jpg", "order": 7}, {"name": "Sean Higgs", "character": "Hillbilly Con", "id": 68501, "credit_id": "52fe47fbc3a36847f8152bb5", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Lauren Cohan", "character": "September Jones", "id": 62220, "credit_id": "52fe47fbc3a36847f8152bbf", "cast_id": 17, "profile_path": "/5W4AV3ZXn38NlEMqPy9QPjwRRz8.jpg", "order": 9}, {"name": "Patrick Lyster", "character": "Warden Medford Parks", "id": 109653, "credit_id": "5328867cc3a3683d5d00018e", "cast_id": 22, "profile_path": "/175ns2a0dS1Q8Dg3S9xlZKSH7ge.jpg", "order": 10}, {"name": "Deobia Oparei", "character": "Big Bill", "id": 58758, "credit_id": "53288691c3a3683d5300018f", "cast_id": 23, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 11}, {"name": "Danny Keogh", "character": "Dr. Klein", "id": 137681, "credit_id": "532886e2c3a3683d53000195", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Henie Bosman", "character": "Xander Grady", "id": 1302090, "credit_id": "532886fb9251413d80000190", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Warrick Grier", "character": "Calin", "id": 107550, "credit_id": "532887079251413d730001f8", "cast_id": 26, "profile_path": "/t12KLQgyB9oC86IvfbLB5J2BlZE.jpg", "order": 14}], "directors": [{"name": "Roel Rein\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe47fbc3a36847f8152b7f", "profile_path": "/f4KlQ4lfZZwbuz6Wu5N6Gfbur6p.jpg", "id": 97555}], "vote_average": 5.7, "runtime": 96}, "10661": {"poster_path": "/3n9FYKLJVqwrZ7Wf96eoF2cAowU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201596308, "overview": "An Israeli counterterrorism soldier with a secretly fabulous ambition to become a Manhattan hairstylist. Zohan's desire runs so deep that he'll do anything -- including faking his own death and going head-to-head with an Arab cab driver -- to make his dreams come true.", "video": false, "id": 10661, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "You Don't Mess With the Zohan", "tagline": "Lather. Rinse. Save the world.", "vote_count": 299, "homepage": "http://www.youdontmesswiththezohan.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0960144", "adult": false, "backdrop_path": "/5WVCXiuJPMsRbRFRsH7khHszswF.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2008-06-04", "popularity": 1.01800865084606, "original_title": "You Don't Mess With the Zohan", "budget": 90000000, "cast": [{"name": "Adam Sandler", "character": "Zohan", "id": 19292, "credit_id": "52fe439e9251416c750176e1", "cast_id": 4, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "John Turturro", "character": "The Phantom", "id": 1241, "credit_id": "52fe439e9251416c750176e5", "cast_id": 5, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 1}, {"name": "Emmanuelle Chriqui", "character": "Dalia", "id": 59192, "credit_id": "52fe439e9251416c750176e9", "cast_id": 6, "profile_path": "/d2PyTKZyt5Ndk9am6PJ8u6jRdjH.jpg", "order": 2}, {"name": "Nick Swardson", "character": "Michael", "id": 32907, "credit_id": "52fe439e9251416c750176ed", "cast_id": 7, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 3}, {"name": "Lainie Kazan", "character": "Gail", "id": 53647, "credit_id": "52fe439e9251416c750176f1", "cast_id": 8, "profile_path": "/qI20obSkCyWbo13xh20rWeUuMXp.jpg", "order": 4}, {"name": "Daoud Heidami", "character": "Nasi", "id": 66069, "credit_id": "52fe439e9251416c750176f5", "cast_id": 9, "profile_path": "/83wsAMfFqXsBXOqP8yYj4BfRd9Y.jpg", "order": 5}, {"name": "Dave Matthews", "character": "James", "id": 66070, "credit_id": "52fe439e9251416c750176f9", "cast_id": 10, "profile_path": "/izo0HKZEdaJiZ1zW8bizpopMfmz.jpg", "order": 6}, {"name": "Charlotte Rae", "character": "Mrs. Greenhouse", "id": 66071, "credit_id": "52fe439e9251416c750176fd", "cast_id": 11, "profile_path": "/t6UyU97bkrGreYvLlUutomhTyIP.jpg", "order": 7}, {"name": "Michael Buffer", "character": "Walbridge", "id": 66072, "credit_id": "52fe439e9251416c75017701", "cast_id": 12, "profile_path": "/yOqMbIPkf6HtbVRBxu1o1RK7jZd.jpg", "order": 8}, {"name": "Rob Schneider", "character": "Salim", "id": 60949, "credit_id": "52fe439e9251416c75017705", "cast_id": 13, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 9}, {"name": "Ido Mosseri", "character": "Oori", "id": 66073, "credit_id": "52fe439e9251416c75017709", "cast_id": 14, "profile_path": "/rTtzDCYcSJA7asnbNVIUtqg9Hx7.jpg", "order": 10}, {"name": "Sayed Badreya", "character": "Hamdi", "id": 173810, "credit_id": "52fe439e9251416c75017737", "cast_id": 22, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 11}, {"name": "Kevin Nealon", "character": "Kevin", "id": 58478, "credit_id": "52fe439e9251416c7501773b", "cast_id": 23, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 12}, {"name": "Robert Smigel", "character": "Yosi", "id": 53684, "credit_id": "52fe439e9251416c7501773f", "cast_id": 24, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 13}, {"name": "Mariah Carey", "character": "Mariah Carey", "id": 66586, "credit_id": "5419bb67c3a3683f0900028e", "cast_id": 25, "profile_path": "/qU9qrbTkLwsyFL9mb6RUHxKmpp.jpg", "order": 14}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c750176d1", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 5.7, "runtime": 113}, "10663": {"poster_path": "/wZKa2NZgEKJ85NoO2cQ7xzj8eBn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185991646, "overview": "Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.", "video": false, "id": 10663, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Waterboy", "tagline": "You can mess with him. But don't mess with his water.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120484", "adult": false, "backdrop_path": "/kOsuuZAlBuy6i2nuQNnRhANsY0X.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-11-06", "popularity": 0.898391373605166, "original_title": "The Waterboy", "budget": 23000000, "cast": [{"name": "Adam Sandler", "character": "Bobby Boucher", "id": 19292, "credit_id": "52fe439e9251416c75017775", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Kathy Bates", "character": "Mama Boucher", "id": 8534, "credit_id": "52fe439e9251416c75017779", "cast_id": 2, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 1}, {"name": "Fairuza Balk", "character": "Vicki Vallencourt", "id": 826, "credit_id": "52fe439e9251416c7501777d", "cast_id": 3, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 2}, {"name": "Henry Winkler", "character": "Coach Klein", "id": 31903, "credit_id": "52fe439e9251416c75017781", "cast_id": 4, "profile_path": "/o3QkTZkDYMkKYJphYJkvMSx8eB3.jpg", "order": 3}, {"name": "Jerry Reed", "character": "Coach Red Beaulieu", "id": 67764, "credit_id": "52fe439e9251416c750177b5", "cast_id": 14, "profile_path": "/frRWrgo0V92TOQt3u2WrgldzFf4.jpg", "order": 4}, {"name": "Lawrence Gilliard Jr.", "character": "Derek Wallace", "id": 37947, "credit_id": "52fe439e9251416c750177b9", "cast_id": 15, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 5}, {"name": "Blake Clark", "character": "Farmer Fran", "id": 21485, "credit_id": "52fe439e9251416c750177bd", "cast_id": 16, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 6}, {"name": "Peter Dante", "character": "Gee Grenouille", "id": 20819, "credit_id": "52fe439e9251416c750177c1", "cast_id": 17, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 7}, {"name": "Jonathan Loughran", "character": "Lyle Robideaux", "id": 58477, "credit_id": "52fe439e9251416c750177c5", "cast_id": 18, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 8}, {"name": "Al Whiting", "character": "Casey Bugge", "id": 124016, "credit_id": "52fe439e9251416c750177c9", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Clint Howard", "character": "Paco", "id": 15661, "credit_id": "52fe439e9251416c750177cd", "cast_id": 20, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 10}, {"name": "Allen Covert", "character": "Walter", "id": 20818, "credit_id": "52fe439e9251416c750177d1", "cast_id": 21, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 11}, {"name": "Rob Schneider", "character": "Townie", "id": 60949, "credit_id": "52fe439e9251416c750177d5", "cast_id": 22, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 12}, {"name": "Lawrence Taylor", "character": "Himself", "id": 185731, "credit_id": "52fe439e9251416c750177df", "cast_id": 24, "profile_path": "/cb9W1czwoOy3tgu7U7O5N48veB4.jpg", "order": 13}, {"name": "Dan Patrick", "character": "Himself", "id": 166029, "credit_id": "52fe439e9251416c750177e3", "cast_id": 25, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 14}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c75017787", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.0, "runtime": 90}, "10664": {"poster_path": "/g2Dk8ud1KpXt2RWzvcgsuuPkPuJ.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 18469680, "overview": "The action continues from [REC], with the medical officer and a SWAT team outfitted with video cameras are sent into the sealed off apartment to control the situation.", "video": false, "id": 10664, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "[REC]\u00b2", "tagline": "Fear Revisited", "vote_count": 112, "homepage": "http://www.rec2themovie.com/", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1245112", "adult": false, "backdrop_path": "/hBfzloLznfN0FWLfheSEObyicqs.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2009-09-15", "popularity": 0.65103268615372, "original_title": "[REC]\u00b2", "budget": 5600000, "cast": [{"name": "Manuela Velasco", "character": "\u00c1ngela Vidal", "id": 34793, "credit_id": "52fe439e9251416c7501780f", "cast_id": 3, "profile_path": "/kQQrHFhTCazfWScBwTaSTtRFWUU.jpg", "order": 0}, {"name": "Ferran Terraza", "character": "Manu", "id": 54532, "credit_id": "52fe439e9251416c75017813", "cast_id": 7, "profile_path": "/7lvI2rC9emIAkEZeW5zYGr3RKnw.jpg", "order": 1}, {"name": "Claudia Silva", "character": "Jennifer", "id": 111091, "credit_id": "52fe439e9251416c7501781f", "cast_id": 10, "profile_path": "/jqFSfItsXSiXrqD3cI2Bt7WoRdH.jpg", "order": 2}, {"name": "Javier Botet", "character": "Ni\u00f1a Medeiros", "id": 111090, "credit_id": "52fe439e9251416c7501781b", "cast_id": 9, "profile_path": "/4u8ZkMMt5ipQgfpb81YudFW5rQG.jpg", "order": 3}, {"name": "Pablo Rosso", "character": "Rosso", "id": 54520, "credit_id": "52fe439e9251416c75017817", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Martha Carbonell", "character": "Sra. Izquierdo", "id": 54523, "credit_id": "52fe439e9251416c75017823", "cast_id": 11, "profile_path": "/vdNJsDSvNggyFRYFAJer6ZTzyph.jpg", "order": 5}, {"name": "Andrea Ros", "character": "Mire", "id": 19824, "credit_id": "52fe439e9251416c75017827", "cast_id": 12, "profile_path": "/lWjsKT28IbyKBHAaRYk3SwdRvqi.jpg", "order": 6}, {"name": "Alejandro Casaseca", "character": "Martos", "id": 111092, "credit_id": "52fe439e9251416c7501782b", "cast_id": 13, "profile_path": "/snilCy8gQmmJ9S8fUTOLcB2YU0c.jpg", "order": 7}], "directors": [{"name": "Jaume Balaguer\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c75017805", "profile_path": "/zH7TzIJgzrYKbUecPLoTEPP7qxX.jpg", "id": 54525}, {"name": "Paco Plaza", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c7501780b", "profile_path": "/kj5tBKhLcC8PcZHwGerEMZakXi5.jpg", "id": 54526}], "vote_average": 6.3, "runtime": 85}, "10665": {"poster_path": "/pZwTosOfiB9hGvXvPg9fpoOqKmp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52597610, "overview": "After returning from a wedding reception, a couple staying in an isolated vacation house receive a knock on the door in the mid-hours of the night. What ensues is a violent invasion by three strangers, their faces hidden behind masks. The couple find themselves in a violent struggle, in which they go beyond what either of them thought capable in order to survive.", "video": false, "id": 10665, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Strangers", "tagline": "Lock the door. Pretend you're safe.", "vote_count": 90, "homepage": "http://www.universalstudiosentertainment.com/the-strangers/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0482606", "adult": false, "backdrop_path": "/bYHJgWapJepVT9Jirr6ZK4J3q8K.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2008-05-29", "popularity": 0.522966521506959, "original_title": "The Strangers", "budget": 10000000, "cast": [{"name": "Liv Tyler", "character": "Kristen McKay", "id": 882, "credit_id": "52fe439e9251416c7501785d", "cast_id": 2, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 0}, {"name": "Scott Speedman", "character": "James Hoyt", "id": 100, "credit_id": "52fe439e9251416c75017861", "cast_id": 3, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Alex Fisher", "character": "Mormon Boy #1", "id": 448998, "credit_id": "52fe439e9251416c75017865", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Peter Clayton-Luce", "character": "Mormon Boy #2", "id": 448999, "credit_id": "52fe439e9251416c75017869", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Gemma Ward", "character": "Dollface", "id": 55901, "credit_id": "52fe439e9251416c7501786d", "cast_id": 6, "profile_path": "/vuuCX123OdszoKoppbhtu92xsTS.jpg", "order": 4}, {"name": "Kip Weeks", "character": "Man in the Mask", "id": 60509, "credit_id": "52fe439e9251416c75017871", "cast_id": 7, "profile_path": "/tMpnSTyEYH4m5DZtgTa5rhJA7Av.jpg", "order": 5}, {"name": "Laura Margolis", "character": "Pin-Up Girl", "id": 162813, "credit_id": "52fe439e9251416c75017875", "cast_id": 8, "profile_path": "/MPHO8VtZibtOvdoXa1p22dzhS8.jpg", "order": 6}, {"name": "Glenn Howerton", "character": "Mike", "id": 77870, "credit_id": "52fe439e9251416c75017879", "cast_id": 9, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 7}], "directors": [{"name": "Bryan Bertino", "department": "Directing", "job": "Director", "credit_id": "52fe439e9251416c75017859", "profile_path": null, "id": 66074}], "vote_average": 5.8, "runtime": 90}, "76203": {"poster_path": "/kb3X943WMIJYVg4SOAyK0pmWL5D.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 187, "overview": "In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon\u2019s chance meeting with a Canadian abolitionist will forever alter his life.", "video": false, "id": 76203, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "12 Years a Slave", "tagline": "The extraordinary true story of Solomon Northup", "vote_count": 888, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2024544", "adult": false, "backdrop_path": "/xnRPoFI7wzOYviw3PmoG94X2Lnc.jpg", "production_companies": [{"name": "New Regency Pictures", "id": 10104}, {"name": "Plan B Entertainment", "id": 81}, {"name": "River Road Entertainment", "id": 1246}, {"name": "Regency Enterprises", "id": 508}, {"name": "Film4", "id": 9349}], "release_date": "2013-10-30", "popularity": 2.92129178811078, "original_title": "12 Years a Slave", "budget": 20000000, "cast": [{"name": "Chiwetel Ejiofor", "character": "Solomon Northup", "id": 5294, "credit_id": "52fe492cc3a368484e11dfad", "cast_id": 6, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Edwin Epps", "id": 17288, "credit_id": "52fe492cc3a368484e11df9f", "cast_id": 2, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Benedict Cumberbatch", "character": "William Ford", "id": 71580, "credit_id": "52fe492cc3a368484e11dfb9", "cast_id": 9, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 2}, {"name": "Paul Dano", "character": "John Tibeats", "id": 17142, "credit_id": "52fe492cc3a368484e11dfb5", "cast_id": 8, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 3}, {"name": "Paul Giamatti", "character": "Theophilus Freeman", "id": 13242, "credit_id": "52fe492cc3a368484e11dfe5", "cast_id": 19, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 4}, {"name": "Scoot McNairy", "character": "Brown", "id": 59233, "credit_id": "52fe492cc3a368484e11dfc9", "cast_id": 13, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 5}, {"name": "Lupita Nyong'o", "character": "Patsey", "id": 1267329, "credit_id": "52fe492cc3a368484e11dff5", "cast_id": 25, "profile_path": "/y3p0OMzIuAmcNt700RayK5A0k6t.jpg", "order": 6}, {"name": "Adepero Oduye", "character": "Eliza", "id": 467633, "credit_id": "52fe492cc3a368484e11dfed", "cast_id": 22, "profile_path": "/kDomNljeEMWp1pxp3MaVka9Bhoy.jpg", "order": 7}, {"name": "Sarah Paulson", "character": "Mary Epps", "id": 34490, "credit_id": "52fe492cc3a368484e11dfc5", "cast_id": 12, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 8}, {"name": "Brad Pitt", "character": "Samuel Bass", "id": 287, "credit_id": "52fe492cc3a368484e11dfa3", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 9}, {"name": "Michael Kenneth Williams", "character": "Robert (as Michael Kenneth Williams)", "id": 39390, "credit_id": "52fe492cc3a368484e11dfb1", "cast_id": 7, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 10}, {"name": "Alfre Woodard", "character": "Mistress Shaw", "id": 1981, "credit_id": "52fe492cc3a368484e11dfe9", "cast_id": 21, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 11}, {"name": "Chris Chalk", "character": "Clemens", "id": 172096, "credit_id": "5319054192514177b10018f2", "cast_id": 46, "profile_path": "/jWWPDMD8i8EICQUco7NCt5mp0Ty.jpg", "order": 12}, {"name": "Taran Killam", "character": "Hamilton", "id": 1213573, "credit_id": "52fe492cc3a368484e11dff9", "cast_id": 26, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 13}, {"name": "Bill Camp", "character": "Radburn", "id": 121718, "credit_id": "531904bc92514177c20017cd", "cast_id": 45, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 14}, {"name": "Kelsey Scott", "character": "Anne Northup", "id": 218667, "credit_id": "5319013b92514177c200175c", "cast_id": 41, "profile_path": "/wU34oZdA0mtLwblB0GbcGJJ47WD.jpg", "order": 15}, {"name": "Bryan Batt", "character": "Judge Turner", "id": 180422, "credit_id": "52fe492cc3a368484e11dff1", "cast_id": 24, "profile_path": "/dDfpQZ00K1poeqgTINj2D4D6SrF.jpg", "order": 16}, {"name": "Quvenzhan\u00e9 Wallis", "character": "Margaret Northup", "id": 1055235, "credit_id": "52fe492cc3a368484e11e003", "cast_id": 28, "profile_path": "/khaGuAENEdm1gnfszBJjyGuN0jl.jpg", "order": 17}, {"name": "Garret Dillahunt", "character": "Armsby", "id": 39520, "credit_id": "52fe492cc3a368484e11dfbd", "cast_id": 10, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 18}, {"name": "Dwight Henry", "character": "Uncle Abram", "id": 1055236, "credit_id": "5314e286c3a3687e380009d8", "cast_id": 39, "profile_path": "/fJZw6IV6j0qKuNRfhYmh1f3PhpT.jpg", "order": 19}, {"name": "Dickie Gravois", "character": "Overseer", "id": 1344342, "credit_id": "53cc786a0e0a265dfa002fda", "cast_id": 51, "profile_path": null, "order": 20}, {"name": "Ashley Dyke", "character": "Anna", "id": 1031785, "credit_id": "5318fff892514177c2001744", "cast_id": 40, "profile_path": "/ujbE51Rcz6XaAi6Tt4SMrRaOIen.jpg", "order": 21}, {"name": "Cameron Zeigler", "character": "Alonzo Northup", "id": 1299189, "credit_id": "5319025f92514177bc001802", "cast_id": 42, "profile_path": "/2yTmUqf3cexsUXoEb1MVFocDCE7.jpg", "order": 22}, {"name": "Tony Bentley", "character": "Mr. Moon", "id": 120253, "credit_id": "5319030892514177bf0017f5", "cast_id": 43, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 23}, {"name": "Christopher Berry", "character": "Burch", "id": 1173099, "credit_id": "531903e092514177c200178a", "cast_id": 44, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 24}, {"name": "Mister Mackey Jr.", "character": "Randall", "id": 1344343, "credit_id": "53cc79720e0a265e01002f29", "cast_id": 52, "profile_path": null, "order": 25}, {"name": "Craig Tate", "character": "John", "id": 1299192, "credit_id": "5319056492514177ab00186a", "cast_id": 47, "profile_path": "/oM0sp2ObrSLnnFdnVXPrP2R9qn1.jpg", "order": 26}, {"name": "Storm Reid", "character": "Emily", "id": 1344344, "credit_id": "53cc79d00e0a265df300319b", "cast_id": 53, "profile_path": null, "order": 27}, {"name": "Tom Proctor", "character": "Biddee", "id": 95051, "credit_id": "53cc7a200e0a265dfa003004", "cast_id": 54, "profile_path": "/ueuCn76nV670Kt1UOVOPaki9Zu7.jpg", "order": 28}, {"name": "Marc Macaulay", "character": "Captain", "id": 6908, "credit_id": "53cc7a9e0e0a265dfc002fbb", "cast_id": 57, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 29}, {"name": "Vivian Fleming-Alvarez", "character": "Mulatto Woman", "id": 1344345, "credit_id": "53cc7a600e0a265e01002f48", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Douglas M. Griffin", "character": "Sailor", "id": 60881, "credit_id": "53cc7b290e0a265dea0031d0", "cast_id": 58, "profile_path": null, "order": 31}, {"name": "John McConnell", "character": "Jonus Ray", "id": 16459, "credit_id": "53cc7b8f0e0a265ded0031ab", "cast_id": 59, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 32}, {"name": "Marcus Lyle Brown", "character": "Jasper", "id": 16460, "credit_id": "53cc7bfb0e0a265de700317c", "cast_id": 60, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 33}, {"name": "Richard Holden", "character": "Fitzgerald", "id": 109765, "credit_id": "53cc7c200e0a265df30031cf", "cast_id": 61, "profile_path": null, "order": 34}, {"name": "Rob Steinberg", "character": "Parker", "id": 1002306, "credit_id": "53cc7ca50e0a265de7003197", "cast_id": 62, "profile_path": null, "order": 35}, {"name": "Anwan Glover", "character": "Cape", "id": 1224609, "credit_id": "53cc7cb50e0a265ded0031c6", "cast_id": 63, "profile_path": "/wASbPFJJicC61Oqd4DzeEqwi8dd.jpg", "order": 36}, {"name": "James C. Victor", "character": "Buyer (as J. C. Victor)", "id": 156955, "credit_id": "53cc7d150e0a265dfa003042", "cast_id": 64, "profile_path": null, "order": 37}, {"name": "Liza J. Bennett", "character": "Mistress Ford", "id": 1344349, "credit_id": "53cc7d6a0e0a265df30031e8", "cast_id": 65, "profile_path": "/y68dpoDsNow2VPPytN6eUBfIIYZ.jpg", "order": 38}, {"name": "Nicole Collins", "character": "Rachel", "id": 1344350, "credit_id": "53cc7d890e0a265dea00320a", "cast_id": 66, "profile_path": null, "order": 39}, {"name": "J.D. Evermore", "character": "Chapin (as JD Evermore)", "id": 129868, "credit_id": "53cc7dad0e0a265dfa003050", "cast_id": 67, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 40}, {"name": "Andy Dylan", "character": "Treach", "id": 1344352, "credit_id": "53cc7e32c3a3687771001eb8", "cast_id": 68, "profile_path": null, "order": 41}, {"name": "Deneen Tyler", "character": "Phebe (as Deneen D. Tyler)", "id": 29933, "credit_id": "53cc7e5dc3a3687771001ebd", "cast_id": 69, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 42}, {"name": "Mustafa Harris", "character": "Sam", "id": 1273239, "credit_id": "53cc7e7fc3a368776d001f8f", "cast_id": 70, "profile_path": "/e0moNlfMRCJkdzU3nfblnWxd2vC.jpg", "order": 43}, {"name": "Gregory Bright", "character": "Edward", "id": 1344357, "credit_id": "53cc7e8ec3a368776d001f94", "cast_id": 71, "profile_path": null, "order": 44}, {"name": "Austin Purnell", "character": "Bob", "id": 1344358, "credit_id": "53cc7e9cc3a3687771001ec6", "cast_id": 72, "profile_path": null, "order": 45}, {"name": "Thomas Francis Murphy", "character": "Patroller", "id": 1295668, "credit_id": "53cc7ea9c3a3687767002040", "cast_id": 73, "profile_path": null, "order": 46}, {"name": "Andre Shanks", "character": "Victim 1", "id": 1344359, "credit_id": "53cc7ef6c3a368776d001f9f", "cast_id": 74, "profile_path": null, "order": 47}, {"name": "Kelvin Harrison", "character": "Victim 2", "id": 1344361, "credit_id": "53cc7f17c3a3687771001ed6", "cast_id": 76, "profile_path": null, "order": 48}, {"name": "Scott M. Jefferson", "character": "Master Shaw", "id": 1344360, "credit_id": "53cc7f0cc3a3687771001ed1", "cast_id": 75, "profile_path": null, "order": 49}, {"name": "Isaiah Jackson", "character": "Zachary", "id": 1344362, "credit_id": "53cc7f8bc3a368776a001f3e", "cast_id": 77, "profile_path": null, "order": 50}, {"name": "Topsy Chapman", "character": "Slave Spiritual Singer 1", "id": 1344363, "credit_id": "53cc7f9fc3a368776a001f43", "cast_id": 78, "profile_path": null, "order": 51}, {"name": "Devin Maurice Evans", "character": "Slave Spiritual Singer 2", "id": 1344364, "credit_id": "53cc7faec3a368777a001dca", "cast_id": 79, "profile_path": null, "order": 52}, {"name": "Jay Huguley", "character": "Sheriff", "id": 1198191, "credit_id": "53cc7fd5c3a3687767002052", "cast_id": 80, "profile_path": "/kXZ77QBOZ6dwwZfYiVYRhoLfcdg.jpg", "order": 53}, {"name": "Devyn A. Tyler", "character": "Margaret Northup (adult)", "id": 1344365, "credit_id": "53cc7fecc3a3687771001ee9", "cast_id": 81, "profile_path": "/od8wqG8pc7s8JCyq7oz74WlQP4p.jpg", "order": 54}, {"name": "Willo Jean-Baptiste", "character": "Margaret's Husband", "id": 1344366, "credit_id": "53cc7fffc3a3687767002059", "cast_id": 82, "profile_path": null, "order": 55}, {"name": "Ruth Negga", "character": "Celeste (uncredited)", "id": 17018, "credit_id": "52fe492cc3a368484e11dfc1", "cast_id": 11, "profile_path": "/fIVB9H48rDgcV0hhnP7gYrv18zB.jpg", "order": 56}, {"name": "Jason Ament", "character": "Cooke (uncredited)", "id": 1438284, "credit_id": "550115949251413da1002219", "cast_id": 119, "profile_path": null, "order": 57}, {"name": "Jon Arthur", "character": "Steamboat Crew 1st Mate (uncredited)", "id": 1438286, "credit_id": "550116ac9251413da100222b", "cast_id": 120, "profile_path": null, "order": 58}, {"name": "Sean Paul Braud", "character": "Lynchman (uncredited)", "id": 148999, "credit_id": "5501182f9251413d9b0024a9", "cast_id": 121, "profile_path": null, "order": 59}, {"name": "Blake Burt", "character": "Upper Class Pedestrian (uncredited)", "id": 1438287, "credit_id": "550118679251413d9f00255c", "cast_id": 122, "profile_path": null, "order": 60}, {"name": "Carroll Burt", "character": "Lower Class Pedestrian (uncredited)", "id": 1438288, "credit_id": "5501188cc3a3687b69001d2e", "cast_id": 123, "profile_path": null, "order": 61}, {"name": "Joseph Randy Causin", "character": "Steamboat Crew (uncredited)", "id": 1426635, "credit_id": "550118dd9251413da500233d", "cast_id": 124, "profile_path": null, "order": 62}, {"name": "Edward J. Clare", "character": "Restaurant Patron (uncredited)", "id": 1292482, "credit_id": "55011913c3a36826b9000fa7", "cast_id": 125, "profile_path": "/83oSP3VgReqSZRvEubGiYjui7on.jpg", "order": 63}, {"name": "JJ Coker", "character": "Mr. Bartholomew (uncredited)", "id": 1438289, "credit_id": "550119389251413d9b0024ba", "cast_id": 126, "profile_path": null, "order": 64}, {"name": "Haylie Creppel", "character": "Child in the Park (uncredited)", "id": 1438290, "credit_id": "55011967c3a3685ba200294e", "cast_id": 127, "profile_path": null, "order": 65}, {"name": "Justin Edward Davis", "character": "Saratoga Park Pedestrian (uncredited)", "id": 1438302, "credit_id": "55011ca59251413da1002296", "cast_id": 128, "profile_path": null, "order": 66}, {"name": "Emily D. Haley", "character": "Tea Seller (uncredited)", "id": 1037370, "credit_id": "55011d449251414ea6000636", "cast_id": 129, "profile_path": null, "order": 67}, {"name": "Jim Johnson", "character": "Lower Class Pedestrian (uncredited)", "id": 1438303, "credit_id": "55011d90c3a3685ba60026ed", "cast_id": 130, "profile_path": null, "order": 68}, {"name": "Mark Joyce", "character": "Street Merchant (uncredited)", "id": 1438304, "credit_id": "55011dbe9251413da10022aa", "cast_id": 131, "profile_path": null, "order": 69}, {"name": "John C. Klein", "character": "Lumber Mill Customer (uncredited)", "id": 1438305, "credit_id": "55011de7c3a3685b9b002376", "cast_id": 132, "profile_path": null, "order": 70}, {"name": "Cynthia LeBlanc", "character": "Washington D.C. Pedestrian (uncredited)", "id": 1140085, "credit_id": "55011e2ec3a3685ba20029c1", "cast_id": 133, "profile_path": null, "order": 71}, {"name": "Elton LeBlanc", "character": "Hotel Dining Patron (uncredited)", "id": 1246772, "credit_id": "55011e779251413da80026c9", "cast_id": 134, "profile_path": "/iYdSkAu2keNfUKSw78PJJOExB8z.jpg", "order": 72}, {"name": "Gerard 'Jerry' Lewis", "character": "Slave Guard (uncredited)", "id": 1438307, "credit_id": "55011e9f9251413da5002395", "cast_id": 135, "profile_path": null, "order": 73}, {"name": "Kevonte Mcdonald", "character": "Slave (uncredited)", "id": 1438308, "credit_id": "55011ec79251413d9b00253f", "cast_id": 136, "profile_path": null, "order": 74}, {"name": "Ritchie Montgomery", "character": "Roadman (uncredited)", "id": 52885, "credit_id": "55011ef19251414ea6000655", "cast_id": 137, "profile_path": "/znNRxqrYkOskK3jlm3ftHyAzJDg.jpg", "order": 75}, {"name": "Myesha-Tiara", "character": "Edwin Epps's Slave (uncredited)", "id": 1438309, "credit_id": "55011f16c3a3685b9b002387", "cast_id": 138, "profile_path": null, "order": 76}, {"name": "Jason Owen", "character": "Safty (uncredited)", "id": 1438310, "credit_id": "55011f5ec3a3685b9e0023c6", "cast_id": 139, "profile_path": null, "order": 77}, {"name": "Shawn Parsons", "character": "Road Man (uncredited)", "id": 1070870, "credit_id": "5501205cc3a36826b9001037", "cast_id": 140, "profile_path": "/m75dCgDJ1kGgjrP52TJGp2y4HVY.jpg", "order": 78}, {"name": "Haley Powell", "character": "Slave Girl (uncredited)", "id": 1438311, "credit_id": "550120869251413d9b00255f", "cast_id": 141, "profile_path": null, "order": 79}, {"name": "Wayne P\u00e9re", "character": "Winslow (uncredited)", "id": 31528, "credit_id": "550120ecc3a3685ba20029f9", "cast_id": 142, "profile_path": null, "order": 80}, {"name": "Terrell Ransom Jr.", "character": "Slave Boy (uncredited)", "id": 1066609, "credit_id": "5501212e925141282f001d55", "cast_id": 143, "profile_path": null, "order": 81}, {"name": "Erin Rementer", "character": "Ballroom Dancer (uncredited)", "id": 1438314, "credit_id": "55012155c3a3685b96002632", "cast_id": 144, "profile_path": null, "order": 82}, {"name": "Andre Robinson", "character": "Slave Boy (uncredited)", "id": 1438315, "credit_id": "550121869251413d9b00257a", "cast_id": 145, "profile_path": null, "order": 83}, {"name": "Corrina Roshea", "character": "Slave Buyer (uncredited)", "id": 1438316, "credit_id": "550121ad9251413d9f002613", "cast_id": 146, "profile_path": null, "order": 84}, {"name": "Katherine Jeanie Russell", "character": "Upper Class Pedestrian (uncredited)", "id": 1438676, "credit_id": "5501da989251413d9f0032a1", "cast_id": 147, "profile_path": null, "order": 85}, {"name": "Jarett Shorts", "character": "Hornboy (uncredited)", "id": 1438677, "credit_id": "5501dabec3a3685ba60033a8", "cast_id": 148, "profile_path": null, "order": 86}, {"name": "Chaz Smith", "character": "Cigar Smoker (uncredited)", "id": 1438678, "credit_id": "5501dae5c3a3685ba60033b2", "cast_id": 149, "profile_path": null, "order": 87}, {"name": "Tyler Soerries", "character": "Boy Playing in Park (uncredited)", "id": 1438679, "credit_id": "5501db0fc3a3685ba60033ba", "cast_id": 150, "profile_path": null, "order": 88}, {"name": "Tre Tureaud", "character": "Saratoga Park Pedestrians (uncredited)", "id": 1438680, "credit_id": "5501db34c3a3685b9600328d", "cast_id": 151, "profile_path": null, "order": 89}, {"name": "Justin Christopher Vaughn", "character": "Ezra (uncredited)", "id": 1438681, "credit_id": "5501db5c9251413d9f0032ad", "cast_id": 152, "profile_path": null, "order": 90}, {"name": "Bob Walker", "character": "Abolitionist Landowner (uncredited)", "id": 1438682, "credit_id": "5501dc869251413da80033e6", "cast_id": 153, "profile_path": null, "order": 91}, {"name": "Caroline Grace Williamson", "character": "Ford Daughter (uncredited)", "id": 1438683, "credit_id": "5501dcad9251413da5002f92", "cast_id": 154, "profile_path": null, "order": 92}, {"name": "Timothy Wyant", "character": "Ford Lumber Buyer (uncredited)", "id": 1438684, "credit_id": "5501dcd7c3a3685b9e002ede", "cast_id": 155, "profile_path": null, "order": 93}], "directors": [{"name": "Steve McQueen", "department": "Directing", "job": "Director", "credit_id": "52fe492cc3a368484e11df9b", "profile_path": "/6w2fWkuhYQuv18OQi8cmSIq8srN.jpg", "id": 72757}], "vote_average": 8.0, "runtime": 134}, "10669": {"poster_path": "/ig4ciwj5bfiXlvZOdeCuewktJw6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46122355, "overview": "Intent on seeing the Cahulawassee River before it's turned into one huge lake, outdoor fanatic Lewis Medlock takes his friends on a river-rafting trip they'll never forget into the dangerous American back-country.", "video": false, "id": 10669, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Deliverance", "tagline": "This is the weekend they didn't play golf.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0068473", "adult": false, "backdrop_path": "/1iE3vVXx3Q7sFlJbNvNYsGHZEvO.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Elmer Enterprises", "id": 12282}], "release_date": "1972-07-30", "popularity": 0.643389890341031, "original_title": "Deliverance", "budget": 2000000, "cast": [{"name": "Jon Voight", "character": "Ed", "id": 10127, "credit_id": "52fe439f9251416c75017989", "cast_id": 13, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 0}, {"name": "Burt Reynolds", "character": "Lewis", "id": 16475, "credit_id": "52fe439f9251416c75017955", "cast_id": 2, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Bobby", "id": 13726, "credit_id": "52fe439f9251416c75017959", "cast_id": 3, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Ronny Cox", "character": "Drew", "id": 780, "credit_id": "52fe439f9251416c7501795d", "cast_id": 4, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 3}, {"name": "Ed Ramey", "character": "Alter Mann", "id": 66178, "credit_id": "52fe439f9251416c75017961", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Billy Redden", "character": "Lonnie", "id": 1152299, "credit_id": "52fe439f9251416c7501798d", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Seamon Glass", "character": "First Griner", "id": 153393, "credit_id": "52fe439f9251416c75017991", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Randall Deal", "character": "Second Griner", "id": 138884, "credit_id": "52fe439f9251416c75017995", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Bill McKinney", "character": "Mountain Man", "id": 16555, "credit_id": "52fe439f9251416c75017999", "cast_id": 17, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 8}], "directors": [{"name": "John Boorman", "department": "Directing", "job": "Director", "credit_id": "52fe439f9251416c75017967", "profile_path": "/8o9Z3rAFrn3JNBY5cUBKcqqCXYx.jpg", "id": 19665}], "vote_average": 7.6, "runtime": 109}, "92591": {"poster_path": "/yfYjg789qjxHCTTcyOqXtpoetQU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In this true story in the tiny, rural town of Carthage, TX, assistant funeral director Bernie Tiede was one of the town's most beloved residents. He taught Sunday school, sang in the church choir and was always willing to lend a helping hand. Everyone loved and appreciated Bernie, so it came as no surprise when he befriended Marjorie Nugent, an affluent widow who was as well known for her sour attitude as her fortune. Bernie frequently traveled with Marjorie and even managed her banking affairs. Marjorie quickly became fully dependent on Bernie and his generosity and Bernie struggled to meet her increasing demands. Bernie continued to handle her affairs, and the townspeople went months without seeing Marjorie. The people of Carthage were shocked when it was reported that Marjorie Nugent had been dead for some time, and Bernie Tiede was being charged with the murder.", "video": false, "id": 92591, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bernie", "tagline": "A story so unbelievable it must be true.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1704573", "adult": false, "backdrop_path": "/vtBvAKRWlvNCsdldduqBwy38oSB.jpg", "production_companies": [{"name": "Mandalay Vision", "id": 6667}, {"name": "Wind Dancer Productions", "id": 8116}, {"name": "Detour Filmproduction", "id": 11510}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Horsethief Pictures", "id": 6352}], "release_date": "2011-06-16", "popularity": 0.570769277857861, "original_title": "Bernie", "budget": 0, "cast": [{"name": "Jack Black", "character": "Bernie Tiede", "id": 70851, "credit_id": "52fe49039251416c750babe9", "cast_id": 13, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Shirley MacLaine", "character": "Marjorie Nugent", "id": 4090, "credit_id": "52fe49039251416c750babed", "cast_id": 14, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 1}, {"name": "Matthew McConaughey", "character": "Danny Buck Davidson", "id": 10297, "credit_id": "52fe49039251416c750babe5", "cast_id": 12, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 2}, {"name": "Tommy G. Kendrick", "character": "Larry Brumley", "id": 995329, "credit_id": "52fe49039251416c750babf1", "cast_id": 15, "profile_path": null, "order": 3}, {"name": "Gary Teague", "character": "Neighborhood Onlooker", "id": 131427, "credit_id": "52fe49039251416c750babf5", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Rick Dial", "character": "Don Leggett", "id": 308843, "credit_id": "52fe49039251416c750babf9", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Mona Lee Fultz", "character": "Cashier", "id": 79008, "credit_id": "52fe49039251416c750babfd", "cast_id": 18, "profile_path": "/NDIFJvOcdb6v9SosCZApjTluMg.jpg", "order": 6}, {"name": "Brady Coleman", "character": "Scrappy Holmes", "id": 111002, "credit_id": "52fe49039251416c750bac01", "cast_id": 19, "profile_path": "/lezl6XUlisuJiBr0ar48LsFthlv.jpg", "order": 7}, {"name": "Dale Dudley", "character": "Jerry", "id": 995330, "credit_id": "52fe49039251416c750bac05", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Grant James", "character": "Mr. Estes", "id": 116433, "credit_id": "52fe49039251416c750bac09", "cast_id": 21, "profile_path": "/sgOV6UORfBnba13gVlz38tnm7Wn.jpg", "order": 9}, {"name": "Veronica Orosco", "character": "Church Patron", "id": 1041561, "credit_id": "52fe49049251416c750bac37", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Christian Stokes", "character": "Truck Driver", "id": 575674, "credit_id": "52fe49049251416c750bac3b", "cast_id": 30, "profile_path": "/3Mduql3DgOxlBp00acdQU34Jwoj.jpg", "order": 11}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe49039251416c750baba5", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 6.5, "runtime": 100}, "10673": {"poster_path": "/iWDAsG7SYRnGsRBXf6sgfNvwkWM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.", "video": false, "id": 10673, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Wall Street", "tagline": "Every dream has a price.", "vote_count": 134, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dmGQDIrfvmr5rahYcVhpS2xx6oy.jpg", "id": 52783, "name": "Wall Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094291", "adult": false, "backdrop_path": "/za0qmvuPocJ6zz2GK1g9ETyDNt4.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1987-12-10", "popularity": 1.11255189787056, "original_title": "Wall Street", "budget": 15000000, "cast": [{"name": "Charlie Sheen", "character": "Bud Fox", "id": 6952, "credit_id": "52fe43a09251416c75017be3", "cast_id": 8, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 0}, {"name": "Michael Douglas", "character": "Gordon Gekko", "id": 3392, "credit_id": "52fe43a09251416c75017be7", "cast_id": 9, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 1}, {"name": "Martin Sheen", "character": "Carl Fox", "id": 8349, "credit_id": "52fe43a09251416c75017beb", "cast_id": 10, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 2}, {"name": "Daryl Hannah", "character": "Darien Taylor", "id": 589, "credit_id": "52fe43a09251416c75017bef", "cast_id": 11, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 3}, {"name": "John C. McGinley", "character": "Marvin", "id": 11885, "credit_id": "52fe43a09251416c75017c03", "cast_id": 16, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Lou Mannheim", "id": 11066, "credit_id": "52fe43a09251416c75017c07", "cast_id": 17, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Sean Young", "character": "Kate Gekko", "id": 586, "credit_id": "52fe43a09251416c75017c2f", "cast_id": 27, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 6}, {"name": "Terence Stamp", "character": "Sir Larry Wildman", "id": 28641, "credit_id": "52fe43a09251416c75017c2b", "cast_id": 26, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 7}, {"name": "James Spader", "character": "Roger Barnes", "id": 13548, "credit_id": "540d0ac9c3a36879ae004a55", "cast_id": 34, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 8}, {"name": "Chuck Pfeiffer", "character": "Chuckie (as Chuck Pfeifer)", "id": 118757, "credit_id": "52fe43a09251416c75017bff", "cast_id": 15, "profile_path": "/shBqO45qp7SscsWZGvJ1BclYpKL.jpg", "order": 9}, {"name": "Lauren Tom", "character": "Lady Broker", "id": 15100, "credit_id": "52fe43a09251416c75017bf3", "cast_id": 12, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 10}, {"name": "Tamara Tunie", "character": "Carolyn", "id": 42694, "credit_id": "52fe43a09251416c75017bf7", "cast_id": 13, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 11}, {"name": "Franklin Cover", "character": "Dan", "id": 166598, "credit_id": "52fe43a09251416c75017bfb", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "James Karen", "character": "Lynch", "id": 14852, "credit_id": "52fe43a09251416c75017c0b", "cast_id": 18, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 13}, {"name": "Saul Rubinek", "character": "Harry Salt", "id": 3712, "credit_id": "540d1418c3a36879ab004c60", "cast_id": 35, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 14}, {"name": "Leslie Lyles", "character": "Natalie", "id": 19469, "credit_id": "52fe43a09251416c75017c0f", "cast_id": 19, "profile_path": "/uUsBo2oIA6QDY7LKqs6wEzZKU7C.jpg", "order": 15}, {"name": "Faith Geer", "character": "Natalie's Assistant", "id": 569512, "credit_id": "52fe43a09251416c75017c13", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Frank Adonis", "character": "Charlie", "id": 4692, "credit_id": "52fe43a09251416c75017c17", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "John Capodice", "character": "Dominick", "id": 31007, "credit_id": "52fe43a09251416c75017c1b", "cast_id": 22, "profile_path": "/sQuJV9o2FSXr5UBo2MaiTLObXiY.jpg", "order": 18}, {"name": "Suzen Murakoshi", "character": "Girl in Bed", "id": 569513, "credit_id": "52fe43a09251416c75017c1f", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Dani Klein", "character": "Receptionist", "id": 171541, "credit_id": "52fe43a09251416c75017c23", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Fran\u00e7ois Giroday", "character": "Alex", "id": 86169, "credit_id": "52fe43a09251416c75017c27", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Paul Guilfoyle", "character": "Stone Livingston", "id": 925, "credit_id": "52fe43a09251416c75017c33", "cast_id": 28, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 22}, {"name": "Monique van Vooren", "character": "Woman at '21'", "id": 29916, "credit_id": "52fe43a09251416c75017c37", "cast_id": 29, "profile_path": "/5qHx9L7Zn9ZHOf2hv2FdOapLhSp.jpg", "order": 23}, {"name": "Sylvia Miles", "character": "Dolores the Realtor", "id": 19335, "credit_id": "52fe43a09251416c75017c3b", "cast_id": 30, "profile_path": "/osHOZQ4Mu9xyNDT79fgeSgJeLlH.jpg", "order": 24}, {"name": "Annie McEnroe", "character": "Muffie Livingston", "id": 34535, "credit_id": "52fe43a09251416c75017c3f", "cast_id": 31, "profile_path": "/yjaUtjmCnF0PrKmE7bpVNEUFRP0.jpg", "order": 25}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe43a09251416c75017bc7", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.7, "runtime": 126}, "10674": {"poster_path": "/ztD0iLfeyESQZV95GwPeSE3Uyqn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 304320254, "overview": "A tomboyish girl disguises herself as a young man so she can fight with the Imperial Chinese Army against the invading Huns. With help from wise-cracking dragon Mushu, Mulan just might save her country -- and win the heart of handsome Captain Li Shang.", "video": false, "id": 10674, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Mulan", "tagline": "This time, the princess saves the prince.", "vote_count": 467, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zruSw8cPMrB753gisLZcbHISS8x.jpg", "poster_path": "/1fjZKATXsAKvtO6uJqCiNL5u4mK.jpg", "id": 87236, "name": "Mulan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0120762", "adult": false, "backdrop_path": "/lfwwqgMWZn6Th56hHOue9syKO3l.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1998-06-18", "popularity": 1.66512617762069, "original_title": "Mulan", "budget": 90000000, "cast": [{"name": "Ming-Na Wen", "character": "Mulan (voice)", "id": 21702, "credit_id": "52fe43a09251416c75017cd5", "cast_id": 16, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 0}, {"name": "Lea Salonga", "character": "Mulan (singing voice)", "id": 15838, "credit_id": "52fe43a09251416c75017cb7", "cast_id": 8, "profile_path": "/2ox720dGoY45wSzRLT2XKeAseor.jpg", "order": 1}, {"name": "June Foray", "character": "Grandmother Fa (voice)", "id": 15098, "credit_id": "52fe43a09251416c75017ce5", "cast_id": 20, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 2}, {"name": "Soon-Tek Oh", "character": "Fa Zhou (voice)", "id": 10345, "credit_id": "52fe43a09251416c75017cf9", "cast_id": 25, "profile_path": "/6ZNOhKG5ZhqVhVb3qbdZSZ1np65.jpg", "order": 3}, {"name": "Freda Foh Shen", "character": "Fa Li (voice)", "id": 51754, "credit_id": "52fe43a09251416c75017ce1", "cast_id": 19, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 4}, {"name": "James Hong", "character": "Chi Fu (voice)", "id": 20904, "credit_id": "52fe43a09251416c75017ce9", "cast_id": 21, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 5}, {"name": "BD Wong", "character": "Shang (voice)", "id": 14592, "credit_id": "52fe43a09251416c75017cd1", "cast_id": 15, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 6}, {"name": "Donny Osmond", "character": "Shang (singing voice)", "id": 140567, "credit_id": "52fe43a09251416c75017cfd", "cast_id": 26, "profile_path": "/u82A7dinGiZVDrg5pajB61ntS5u.jpg", "order": 7}, {"name": "Pat Morita", "character": "The Emperor (voice)", "id": 23915, "credit_id": "52fe43a09251416c75017cf1", "cast_id": 23, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 8}, {"name": "Harvey Fierstein", "character": "Yao (voice)", "id": 7420, "credit_id": "52fe43a09251416c75017cdd", "cast_id": 18, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 9}, {"name": "Eddie Murphy", "character": "Mushu (voice)", "id": 776, "credit_id": "52fe43a09251416c75017cbb", "cast_id": 10, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 10}, {"name": "Marni Nixon", "character": "Grandmother Fa (singing voice)", "id": 187678, "credit_id": "52fe43a09251416c75017cf5", "cast_id": 24, "profile_path": "/hPWlkETSB5V7OQkixZic3QDxmwq.jpg", "order": 11}, {"name": "George Takei", "character": "First Ancestor (voice)", "id": 1752, "credit_id": "52fe43a09251416c75017d05", "cast_id": 28, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 12}, {"name": "Jerry Tondo", "character": "Chien-Po (voice)", "id": 71858, "credit_id": "52fe43a09251416c75017d09", "cast_id": 29, "profile_path": "/ui6AU4y7GrlDwNLgN46kRcKppf7.jpg", "order": 13}, {"name": "Gedde Watanabe", "character": "Ling (voice)", "id": 16183, "credit_id": "52fe43a09251416c75017d0d", "cast_id": 30, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 14}, {"name": "Miguel Ferrer", "character": "Shan-Yu (voice)", "id": 15860, "credit_id": "52fe43a09251416c75017cd9", "cast_id": 17, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 15}, {"name": "James Shigeta", "character": "General Li (voice)", "id": 4995, "credit_id": "52fe43a09251416c75017d01", "cast_id": 27, "profile_path": "/rBqmvcdbuMU7NCOxqmfjSxZfDsh.jpg", "order": 16}, {"name": "Frank Welker", "character": "Khan / Cri-Kee (voice)", "id": 15831, "credit_id": "52fe43a09251416c75017d11", "cast_id": 31, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 17}, {"name": "Miriam Margolyes", "character": "The Matchmaker (voice)", "id": 6199, "credit_id": "52fe43a09251416c75017ced", "cast_id": 22, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 18}, {"name": "Matthew Wilder", "character": "Ling (singing voice)", "id": 129889, "credit_id": "52fe43a09251416c75017d15", "cast_id": 32, "profile_path": "/2cxG4iZFmJifTY1sJzmaMyg3gEn.jpg", "order": 19}], "directors": [{"name": "Tony Bancroft", "department": "Directing", "job": "Director", "credit_id": "52fe43a09251416c75017c8f", "profile_path": null, "id": 66190}, {"name": "Barry Cook", "department": "Directing", "job": "Director", "credit_id": "52fe43a09251416c75017c95", "profile_path": "/j2SNU8S0RGxs9jWnm71GJRyOIc0.jpg", "id": 66191}], "vote_average": 6.9, "runtime": 88}, "2486": {"poster_path": "/xKv0dHXe4RORNDCGnFkIYWjv5tI.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 249288105, "overview": "In his homeland of Alagaesia, a farm boy happens upon a dragon's egg -- a discovery that leads him on a predestined journey where he realized he's the one person who can defend his home against an evil king.", "video": false, "id": 2486, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Eragon", "tagline": "When darkness falls, a hero will ride.", "vote_count": 237, "homepage": "http://www.eragonmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449010", "adult": false, "backdrop_path": "/pugQ0pfT7bz9MFf6EFh2P3fBjkp.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Major Studio Partners", "id": 445}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2006-12-13", "popularity": 0.727381612042469, "original_title": "Eragon", "budget": 100000000, "cast": [{"name": "Ed Speleers", "character": "Eragon", "id": 25438, "credit_id": "52fe435ac3a36847f804dd99", "cast_id": 1, "profile_path": "/7FIPZ8fZupVSp7yTpCWGLyWtYlS.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Brom", "id": 16940, "credit_id": "52fe435ac3a36847f804dd9d", "cast_id": 2, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "Sienna Guillory", "character": "Arya", "id": 7055, "credit_id": "52fe435ac3a36847f804dda1", "cast_id": 3, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 2}, {"name": "Robert Carlyle", "character": "Durza", "id": 18023, "credit_id": "52fe435ac3a36847f804dda5", "cast_id": 4, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 3}, {"name": "John Malkovich", "character": "Kung Galbatorix", "id": 6949, "credit_id": "52fe435ac3a36847f804dda9", "cast_id": 5, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Garrett Hedlund", "character": "Murtagh", "id": 9828, "credit_id": "52fe435ac3a36847f804ddad", "cast_id": 6, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 5}, {"name": "Alun Armstrong", "character": "Morbror Garrow", "id": 2629, "credit_id": "52fe435ac3a36847f804ddb1", "cast_id": 7, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 6}, {"name": "Gary Lewis", "character": "Kung Hrothgar", "id": 480, "credit_id": "52fe435ac3a36847f804ddb5", "cast_id": 9, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 8}, {"name": "Djimon Hounsou", "character": "Ajihad", "id": 938, "credit_id": "52fe435ac3a36847f804ddb9", "cast_id": 10, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 9}, {"name": "Rachel Weisz", "character": "Saphiras r\u00f6st", "id": 3293, "credit_id": "52fe435ac3a36847f804ddbd", "cast_id": 11, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 10}, {"name": "Richard Rifkin", "character": "Horst", "id": 25440, "credit_id": "52fe435ac3a36847f804ddc1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Steve Speirs", "character": "Sloan", "id": 25441, "credit_id": "52fe435ac3a36847f804ddc5", "cast_id": 13, "profile_path": "/cCNJouXVxnXJv9j26PaEWJxIkOE.jpg", "order": 12}, {"name": "Joss Stone", "character": "Angela", "id": 25442, "credit_id": "52fe435ac3a36847f804ddc9", "cast_id": 14, "profile_path": "/ttGQ7bi2ZEZnlYWdilVWd6VTqHN.jpg", "order": 13}, {"name": "Michael Mehlmann", "character": "Bybo # 1", "id": 25443, "credit_id": "52fe435ac3a36847f804ddcd", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Tam\u00e1s De\u00e1k", "character": "Bybo # 2", "id": 25444, "credit_id": "52fe435ac3a36847f804ddd1", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Matt Devere", "character": "Kapten", "id": 25445, "credit_id": "52fe435ac3a36847f804ddd5", "cast_id": 17, "profile_path": "/mtp0cfPOGZG2aLEw0N6RuJFYA6j.jpg", "order": 16}, {"name": "M\u00e1t\u00e9 Haumann", "character": "Soldat", "id": 25446, "credit_id": "52fe435ac3a36847f804ddd9", "cast_id": 18, "profile_path": "/hbEOBOxhXIdOZYgWUFsTws5fEYf.jpg", "order": 17}, {"name": "Andrea Fazekas", "character": "Horsts fru", "id": 25447, "credit_id": "52fe435ac3a36847f804dddd", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Caroline Chikezie", "character": "Nasuada", "id": 25448, "credit_id": "52fe435ac3a36847f804dde1", "cast_id": 20, "profile_path": "/qXHS3UhFx2dd6tSuBpPqfSbAy3.jpg", "order": 19}, {"name": "\u00c1gnes B\u00e1nfalvy", "character": "Fru hos Varden", "id": 25449, "credit_id": "52fe435ac3a36847f804dde5", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "P\u00e1l Makrai", "character": "Wache der Varden", "id": 25450, "credit_id": "52fe435ac3a36847f804dde9", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Spencer Wilding", "character": "Razac # 1", "id": 25451, "credit_id": "52fe435ac3a36847f804dded", "cast_id": 23, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 22}, {"name": "G\u00e1bor Hortob\u00e1gyi", "character": "Razac # 2", "id": 25452, "credit_id": "52fe435ac3a36847f804ddf1", "cast_id": 24, "profile_path": null, "order": 23}, {"name": "Christopher Egan", "character": "", "id": 1312315, "credit_id": "552265abc3a3684dd4005dfc", "cast_id": 49, "profile_path": "/bheD2SRyi1UtAC6VXBj2K9fNZ0C.jpg", "order": 24}], "directors": [{"name": "Stefen Fangmeier", "department": "Directing", "job": "Director", "credit_id": "52fe435ac3a36847f804ddf7", "profile_path": "/fv6ObyJnaielYg2YbgHFbszinYd.jpg", "id": 25453}], "vote_average": 4.7, "runtime": 104}, "10679": {"poster_path": "/cHbKiMtqJLHOJwgJHoKglir6rNi.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FI", "name": "Finland"}], "revenue": 2523739, "overview": "In the last moments of World War II, a secret Nazi space program evaded destruction by fleeing to the Dark Side of the Moon. During 70 years of utter secrecy, the Nazis construct a gigantic space fortress with a massive armada of flying saucers.", "video": false, "id": 10679, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Sky", "tagline": "We come in peace!", "vote_count": 198, "homepage": "http://www.ironsky.net/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 312977, "name": "Iron Sky Collection"}, "original_language": "fi", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1034314", "adult": false, "backdrop_path": "/mIOWtdsUg9VZXVMwVdO30TejAxn.jpg", "production_companies": [{"name": "Blind Spot Pictures Oy", "id": 7330}, {"name": "27 Films Production", "id": 9282}, {"name": "New Holland Pictures", "id": 10229}], "release_date": "2012-04-03", "popularity": 0.791817383832949, "original_title": "Iron Sky", "budget": 7500000, "cast": [{"name": "Julia Dietze", "character": "Renate Richter", "id": 6674, "credit_id": "52fe43a19251416c75017fab", "cast_id": 4, "profile_path": "/jbR4JueL03RoSX7JlEdCUrDL8k8.jpg", "order": 0}, {"name": "Christopher Kirby", "character": "James Washington", "id": 75175, "credit_id": "52fe43a19251416c75017faf", "cast_id": 5, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 1}, {"name": "G\u00f6tz Otto", "character": "Klaus Adler", "id": 10744, "credit_id": "52fe43a19251416c75017fb3", "cast_id": 7, "profile_path": "/xl82gVjp9s2gSwx0QA52uRsM6Jt.jpg", "order": 2}, {"name": "Udo Kier", "character": "Wolfgang Kortzfleisch", "id": 1646, "credit_id": "52fe43a19251416c75017fbb", "cast_id": 9, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 3}, {"name": "Stephanie Paul", "character": "Jenna Bush", "id": 936496, "credit_id": "52fe43a19251416c75017fbf", "cast_id": 10, "profile_path": "/lBoLBnYlzBtxdx1NsyiD76LnFym.jpg", "order": 4}, {"name": "Peta Sergeant", "character": "Vivian Wagner", "id": 1234188, "credit_id": "52fe43a19251416c75017fe5", "cast_id": 21, "profile_path": "/6bBsXTbMtmEMh4CuzR7tbctucqs.jpg", "order": 5}, {"name": "Tilo Pr\u00fcckner", "character": "Doctor Richter", "id": 13812, "credit_id": "52fe43a19251416c75017fb7", "cast_id": 8, "profile_path": "/b1CKloEXUcA1mXEgPcDHEHWiH63.jpg", "order": 6}, {"name": "Nick Dong-Sik", "character": "North Korean Representative", "id": 556728, "credit_id": "52fe43a19251416c75017fd7", "cast_id": 16, "profile_path": "/3KappMnbXLvMaR93xLtz3j9xHGg.jpg", "order": 7}, {"name": "Yuki Iwamoto", "character": "Japanese Representative", "id": 53174, "credit_id": "52fe43a19251416c75017fd3", "cast_id": 15, "profile_path": "/bUHh5Y6jvJdnMEIb8UmIh3V7hvz.jpg", "order": 8}, {"name": "Claus Wilcke", "character": "Russian Representative", "id": 36856, "credit_id": "52fe43a19251416c75017fe9", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Irshad Panjatan", "character": "Indian Representative", "id": 35540, "credit_id": "52fe43a19251416c75017fed", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Samir Fuchs", "character": "Middle East Representative", "id": 1094448, "credit_id": "52fe43a19251416c75017ff1", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Tom Ho\u00dfbach", "character": "Dieter", "id": 150804, "credit_id": "52fe43a19251416c75017fc3", "cast_id": 11, "profile_path": "/hl5P660scf9BPcY7aA0CpGi7EoK.jpg", "order": 12}, {"name": "Kym Jackson", "character": "Julia McLennan", "id": 999445, "credit_id": "52fe43a19251416c75017fc7", "cast_id": 12, "profile_path": "/mcqEkFJ4EmQJE58bZi1FswaX5ig.jpg", "order": 13}, {"name": "Jim Knobeloch", "character": "Nazi Weapons Officer", "id": 199432, "credit_id": "52fe43a19251416c75017fcb", "cast_id": 13, "profile_path": "/ndiYsn4J7bBk5gJ3aVKkF3RFLkh.jpg", "order": 14}, {"name": "Monika Gossmann", "character": "Designer", "id": 999446, "credit_id": "52fe43a19251416c75017fcf", "cast_id": 14, "profile_path": "/aMK4uDhftdNE8z6J4nc4Q9blqDv.jpg", "order": 15}, {"name": "Martin Grelis", "character": "2nd GWB Officer", "id": 999448, "credit_id": "52fe43a19251416c75017fdb", "cast_id": 19, "profile_path": "/dCQi5riuITw7xhDCob1cwmOWzUR.jpg", "order": 16}, {"name": "Andrew Buchanan", "character": "3rd GWB Officer", "id": 1325838, "credit_id": "53bb21f9c3a368662300038e", "cast_id": 39, "profile_path": "/nlaUZ1PqcmGpX2Cng8U7Z5GudX0.jpg", "order": 17}], "directors": [{"name": "Timo Vuorensola", "department": "Directing", "job": "Director", "credit_id": "52fe43a19251416c75017f9b", "profile_path": "/vOvgjfKURnz7HledfDyEY3JfQ9Z.jpg", "id": 66212}], "vote_average": 5.7, "runtime": 93}, "10681": {"poster_path": "/9cJETuLMc6R0bTWRA5i7ctY9bxk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 521311860, "overview": "WALL\u2022E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean up the mess, but has developed some rather interesting human-like qualities. When a ship arrives with a sleek new type of robot, WALL\u2022E thinks he's finally found a friend and stows away on the ship when it leaves.", "video": false, "id": 10681, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "WALL\u00b7E", "tagline": "An adventure beyond the ordinar-E.", "vote_count": 2607, "homepage": "http://disney.go.com/disneypictures/wall-e/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0910970", "adult": false, "backdrop_path": "/2nFyTvssbtJMLC6eyYwwZ88gALD.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2008-06-22", "popularity": 2.7597075537853, "original_title": "WALL\u00b7E", "budget": 180000000, "cast": [{"name": "Ben Burtt", "character": "WALL\u00b7E / M-O (voice)", "id": 670, "credit_id": "52fe43a29251416c75018111", "cast_id": 12, "profile_path": "/pYSkspLspSDVLZUQ43pByOebsCX.jpg", "order": 0}, {"name": "Elissa Knight", "character": "EVE (voice)", "id": 72754, "credit_id": "52fe43a29251416c75018115", "cast_id": 13, "profile_path": "/21JKhZc6bTAoHcwSjQhZcdhhx5d.jpg", "order": 1}, {"name": "Jeff Garlin", "character": "Captain (voice)", "id": 60074, "credit_id": "52fe43a29251416c75018119", "cast_id": 14, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 2}, {"name": "Fred Willard", "character": "Shelby Forthright, BnL CEO", "id": 20753, "credit_id": "52fe43a29251416c7501811d", "cast_id": 21, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 3}, {"name": "John Ratzenberger", "character": "", "id": 7907, "credit_id": "53c61bc6c3a3686251001af8", "cast_id": 22, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 4}, {"name": "Sigourney Weaver", "character": "Ship's Computer (voice)", "id": 10205, "credit_id": "546a2cedeaeb816b4b0038ab", "cast_id": 23, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 5}], "directors": [{"name": "Andrew Stanton", "department": "Directing", "job": "Director", "credit_id": "52fe43a29251416c750180d1", "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "id": 7}], "vote_average": 7.4, "runtime": 98}, "10684": {"poster_path": "/lPAzGRgc2afaGsYwFX7Iez8gzmq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A US Army officer had made a \"friendly fire\" mistake that was covered up and he was reassigned to a desk job. Later he was tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor posthumously. At first all seemed in order then he begins to notice inconsistencies between the testimonies of the witnesses....", "video": false, "id": 10684, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Courage Under Fire", "tagline": "A medal for honor. A search for justice. A battle for truth.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115956", "adult": false, "backdrop_path": "/oplJNCsJhBPGhANhHp9uTpwWpx.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1996-07-04", "popularity": 0.214147902270698, "original_title": "Courage Under Fire", "budget": 46000000, "cast": [{"name": "Denzel Washington", "character": "Lieutenant Colonel Nathaniel Serling", "id": 5292, "credit_id": "52fe43a29251416c7501819d", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Meg Ryan", "character": "Captain Karen Emma Walden", "id": 5344, "credit_id": "52fe43a29251416c750181a1", "cast_id": 2, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 1}, {"name": "Lou Diamond Phillips", "character": "Staff Sergeant John Monfriez", "id": 38560, "credit_id": "52fe43a29251416c750181a5", "cast_id": 3, "profile_path": "/afXcQRss7rZ6Ocx7PUQFbz7tPOm.jpg", "order": 2}, {"name": "Matt Damon", "character": "Ilario", "id": 1892, "credit_id": "52fe43a29251416c750181d1", "cast_id": 11, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 3}, {"name": "Michael Moriarty", "character": "Brigadier General Hershberg", "id": 21030, "credit_id": "52fe43a29251416c750181a9", "cast_id": 4, "profile_path": "/vWDVdQpYvCS0ez1z0zk5N9BffY9.jpg", "order": 4}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe43a29251416c750181af", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.1, "runtime": 117}, "2493": {"poster_path": "/gpxjoE0yvRwIhFEJgNArtKtaN7S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30857814, "overview": "In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.", "video": false, "id": 2493, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Princess Bride", "tagline": "It's as real as the feelings you feel.", "vote_count": 696, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093779", "adult": false, "backdrop_path": "/npIKgqpD8jbowpem9L3U4NUkEO3.jpg", "production_companies": [{"name": "The Princess Bride Ltd.", "id": 49243}, {"name": "Act III Communications", "id": 1153}, {"name": "Buttercup Films Ltd.", "id": 49244}], "release_date": "1987-09-18", "popularity": 1.04007846200596, "original_title": "The Princess Bride", "budget": 16000000, "cast": [{"name": "Cary Elwes", "character": "Westley", "id": 2130, "credit_id": "52fe435ac3a36847f804df59", "cast_id": 2, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 0}, {"name": "Robin Wright", "character": "Buttercup", "id": 32, "credit_id": "52fe435ac3a36847f804df5d", "cast_id": 3, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 1}, {"name": "Mandy Patinkin", "character": "Inigo Montoya", "id": 25503, "credit_id": "52fe435ac3a36847f804df69", "cast_id": 6, "profile_path": "/aiHwNtaKkUFd9kZ81wGhMANMKWC.jpg", "order": 2}, {"name": "Andr\u00e9 the Giant", "character": "Fezzik", "id": 25504, "credit_id": "52fe435ac3a36847f804df6d", "cast_id": 7, "profile_path": "/wVlQm9XEs9Nvvmf9vcXEFmXYae2.jpg", "order": 3}, {"name": "Chris Sarandon", "character": "Prince Humperdinck", "id": 14541, "credit_id": "52fe435ac3a36847f804df61", "cast_id": 4, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 4}, {"name": "Christopher Guest", "character": "Count Tyrone Rugen", "id": 13524, "credit_id": "52fe435ac3a36847f804df81", "cast_id": 12, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Vizzini", "id": 12900, "credit_id": "52fe435ac3a36847f804df65", "cast_id": 5, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "Peter Falk", "character": "Grandfather", "id": 2314, "credit_id": "52fe435ac3a36847f804df7d", "cast_id": 11, "profile_path": "/mjgykviG6rY2WlF14aeDRsvVA6x.jpg", "order": 7}, {"name": "Billy Crystal", "character": "Miracle Max", "id": 7904, "credit_id": "52fe435ac3a36847f804df71", "cast_id": 8, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 8}, {"name": "Fred Savage", "character": "Grandson", "id": 2223, "credit_id": "52fe435ac3a36847f804df79", "cast_id": 10, "profile_path": "/q6u7yhINrALOC9wD2tc6mifQ9sJ.jpg", "order": 9}, {"name": "Carol Kane", "character": "Valerie", "id": 10556, "credit_id": "52fe435ac3a36847f804df75", "cast_id": 9, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 10}, {"name": "Mel Smith", "character": "The Albino", "id": 141450, "credit_id": "52fe435ac3a36847f804df91", "cast_id": 17, "profile_path": "/WutScDw47AhIIErXEZtmI5KvGh.jpg", "order": 11}, {"name": "Peter Cook", "character": "The Impressive Clergyman", "id": 18266, "credit_id": "53dedab7c3a3686c5d001b38", "cast_id": 18, "profile_path": "/5l1lXeD3cCKQ58AXt5p040LNzpQ.jpg", "order": 12}, {"name": "Willoughby Gray", "character": "The King", "id": 10664, "credit_id": "54c2f8619251416185000351", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe435ac3a36847f804df55", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.5, "runtime": 98}, "124459": {"poster_path": "/5WpMIIEfRaJL2WrgQMImu4S79ME.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27437881, "overview": "After breaking up with his longtime stage partner, a famous but jaded Vegas magician fights for relevance when a new, \"hip\" street magician appears on the scene.", "video": false, "id": 124459, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Incredible Burt Wonderstone", "tagline": "Abracatastic!", "vote_count": 481, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790628", "adult": false, "backdrop_path": "/nl7fSIHSYYUSb1kTOUlWA5DLH7D.jpg", "production_companies": [{"name": "Benderspink", "id": 11175}, {"name": "Carousel Productions", "id": 11176}], "release_date": "2013-03-15", "popularity": 1.27589072358301, "original_title": "The Incredible Burt Wonderstone", "budget": 30000000, "cast": [{"name": "Steve Carell", "character": "Burt Wonderstone", "id": 4495, "credit_id": "52fe4aacc3a368484e161031", "cast_id": 5, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Jim Carrey", "character": "Steve Gray", "id": 206, "credit_id": "52fe4aacc3a368484e161035", "cast_id": 6, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Anton Marvelton", "id": 884, "credit_id": "52fe4aacc3a368484e161039", "cast_id": 7, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Olivia Wilde", "character": "Jane", "id": 59315, "credit_id": "52fe4aacc3a368484e16103d", "cast_id": 8, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 3}, {"name": "James Gandolfini", "character": "Doug Munny", "id": 4691, "credit_id": "52fe4aacc3a368484e161041", "cast_id": 9, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 4}, {"name": "Alan Arkin", "character": "Rance Holloway", "id": 1903, "credit_id": "52fe4aacc3a368484e161045", "cast_id": 10, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 5}, {"name": "Jay Mohr", "character": "Rick the Implausible", "id": 12217, "credit_id": "52fe4aacc3a368484e161049", "cast_id": 11, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 6}, {"name": "Gillian Jacobs", "character": "Miranda", "id": 94098, "credit_id": "52fe4aacc3a368484e16104d", "cast_id": 12, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 7}, {"name": "Brad Garrett", "character": "Dom", "id": 18, "credit_id": "5327b0ecc3a368315e0016f1", "cast_id": 13, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 8}, {"name": "David Copperfield", "character": "Himself", "id": 570335, "credit_id": "5327b145c3a3683152001684", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Michael Herbig", "character": "Lucius Belvedere", "id": 18072, "credit_id": "53362641c3a3680e9f00045e", "cast_id": 15, "profile_path": "/n4HuBxCVORNVdZaPQa2sanSFNMF.jpg", "order": 10}], "directors": [{"name": "Don Scardino", "department": "Directing", "job": "Director", "credit_id": "52fe4aacc3a368484e16101b", "profile_path": "/6rBKmyqtLd2elNYUk1lDqgbsOue.jpg", "id": 93419}], "vote_average": 5.2, "runtime": 100}, "2501": {"poster_path": "/bXQIL36VQdzJ69lcjQR1WQzJqQR.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214034224, "overview": "Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. Bourne realizes, though, that he has the combat and mental skills of a world-class spy, but who does he work for?", "video": false, "id": 2501, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Identity", "tagline": "He was the perfect weapon until he became the target.", "vote_count": 1734, "homepage": "http://www.universalstudiosentertainment.com/the-bourne-identity/", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0258463", "adult": false, "backdrop_path": "/vACyyzY1VZnHEl5AnzjLgDf6SRM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Hypnotic", "id": 7384}, {"name": "Kalima Productions GmbH & Co. KG", "id": 7385}, {"name": "Stillking Films", "id": 11345}], "release_date": "2002-06-06", "popularity": 1.62465429553229, "original_title": "The Bourne Identity", "budget": 60000000, "cast": [{"name": "Matt Damon", "character": "Jason Bourne", "id": 1892, "credit_id": "52fe435ac3a36847f804dffd", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Franka Potente", "character": "Marie Helena Kreutz", "id": 679, "credit_id": "52fe435ac3a36847f804e001", "cast_id": 9, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Alexander Conklin", "id": 2955, "credit_id": "52fe435ac3a36847f804e005", "cast_id": 10, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Clive Owen", "character": "The Professor", "id": 2296, "credit_id": "52fe435ac3a36847f804e009", "cast_id": 11, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 3}, {"name": "Brian Cox", "character": "Ward Abbott", "id": 1248, "credit_id": "52fe435ac3a36847f804e00d", "cast_id": 12, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Wombosi", "id": 31164, "credit_id": "52fe435ac3a36847f804e02f", "cast_id": 18, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 5}, {"name": "Julia Stiles", "character": "Nicolette", "id": 12041, "credit_id": "52fe435ac3a36847f804e033", "cast_id": 19, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 6}, {"name": "Gabriel Mann", "character": "Zorn", "id": 32458, "credit_id": "52fe435ac3a36847f804e067", "cast_id": 28, "profile_path": "/bv6zwRM5pKaETM3XdnLe7JFzVVI.jpg", "order": 7}, {"name": "Walton Goggins", "character": "Research Tech", "id": 27740, "credit_id": "52fe435ac3a36847f804e06b", "cast_id": 29, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 8}, {"name": "Josh Hamilton", "character": "Research Tech", "id": 52419, "credit_id": "52fe435ac3a36847f804e06f", "cast_id": 30, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 9}, {"name": "Orso Maria Guerrini", "character": "Giancarlo", "id": 27198, "credit_id": "52fe435ac3a36847f804e073", "cast_id": 31, "profile_path": "/9Gpe7JoCuCeKqiriAqDsrvOVBLi.jpg", "order": 10}, {"name": "Tim Dutton", "character": "Eamon", "id": 49965, "credit_id": "52fe435ac3a36847f804e077", "cast_id": 32, "profile_path": "/lYzAZgSn1dkZp7s9NXzO0ke9Nrn.jpg", "order": 11}, {"name": "Denis Braccini", "character": "Picot", "id": 271623, "credit_id": "52fe435ac3a36847f804e07b", "cast_id": 33, "profile_path": "/tsyErtX1vcOtuTnDG7lr3UlUDfN.jpg", "order": 12}, {"name": "Nicky Naude", "character": "Castel", "id": 370383, "credit_id": "52fe435ac3a36847f804e07f", "cast_id": 34, "profile_path": "/7o0JhUIHRd7R0A5yY6g0blNNQNf.jpg", "order": 13}, {"name": "David Selburg", "character": "Marshall", "id": 153938, "credit_id": "52fe435bc3a36847f804e083", "cast_id": 35, "profile_path": "/jJmRPiieI1eIgVRccEl4U8m04kU.jpg", "order": 14}, {"name": "Demetri Goritsas", "character": "Com Tech", "id": 20471, "credit_id": "52fe435bc3a36847f804e087", "cast_id": 36, "profile_path": "/3b3wImKHpQ6BvjoyuCJbU25GyoR.jpg", "order": 15}, {"name": "Russell Levy", "character": "Manheim", "id": 1117335, "credit_id": "52fe435bc3a36847f804e08b", "cast_id": 37, "profile_path": "/8hdmkcjEdwuzin4AZrz3luEt9i5.jpg", "order": 16}, {"name": "Anthony Green", "character": "Security Chief", "id": 153208, "credit_id": "52fe435bc3a36847f804e08f", "cast_id": 38, "profile_path": "/gVi3WW7Icv77cNGYibTKgz2q0eG.jpg", "order": 17}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe435ac3a36847f804dfe1", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 7.0, "runtime": 119}, "2502": {"poster_path": "/6a74OaZArLNNDHK9SdiLBUu2JYj.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176000000, "overview": "When a CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.", "video": false, "id": 2502, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Supremacy", "tagline": "They should have left him alone.", "vote_count": 1116, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0372183", "adult": false, "backdrop_path": "/86dbA7HYT5x2OVh4xzUIUiay7fm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Motion Picture THETA Produktionsgesellschaft", "id": 11346}, {"name": "The Kennedy/Marshall Company", "id": 862}, {"name": "Ludlum Entertainment", "id": 11347}, {"name": "Hypnotic", "id": 7384}], "release_date": "2004-07-23", "popularity": 1.27601612059888, "original_title": "The Bourne Supremacy", "budget": 75000000, "cast": [{"name": "Matt Damon", "character": "Jason Bourne", "id": 1892, "credit_id": "52fe435bc3a36847f804e0f3", "cast_id": 6, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Brian Cox", "character": "Ward Abbott", "id": 1248, "credit_id": "52fe435bc3a36847f804e0fb", "cast_id": 8, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 1}, {"name": "Julia Stiles", "character": "Nicky", "id": 12041, "credit_id": "52fe435bc3a36847f804e0ff", "cast_id": 9, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 2}, {"name": "Joan Allen", "character": "Pamela Landy", "id": 11148, "credit_id": "52fe435bc3a36847f804e103", "cast_id": 10, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 3}, {"name": "Karl Urban", "character": "Kirill", "id": 1372, "credit_id": "52fe435bc3a36847f804e107", "cast_id": 11, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 4}, {"name": "Franka Potente", "character": "Marie", "id": 679, "credit_id": "52fe435bc3a36847f804e0f7", "cast_id": 7, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 5}, {"name": "Marton Csokas", "character": "Jarda", "id": 20982, "credit_id": "52fe435bc3a36847f804e10b", "cast_id": 12, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 6}, {"name": "Karel Roden", "character": "Gretkov", "id": 10841, "credit_id": "52fe435bc3a36847f804e10f", "cast_id": 13, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 7}, {"name": "Tom Gallop", "character": "Tom Cronin", "id": 27030, "credit_id": "52fe435bc3a36847f804e11f", "cast_id": 16, "profile_path": "/t799Vz0ATVN24NmXpvFOPkrJLU9.jpg", "order": 8}, {"name": "Michelle Monaghan", "character": "Kim", "id": 11705, "credit_id": "52fe435bc3a36847f804e123", "cast_id": 17, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 9}, {"name": "Oksana Akinshina", "character": "Irena Neski", "id": 77667, "credit_id": "52fe435bc3a36847f804e127", "cast_id": 18, "profile_path": "/sgG7JJIGOfCWEaoWnXPE5oZ3VnX.jpg", "order": 10}, {"name": "Ethan Sandler", "character": "Kurt", "id": 166654, "credit_id": "52fe435bc3a36847f804e173", "cast_id": 31, "profile_path": "/biCZAwndeR6QiBQ4etNeeI0XUVM.jpg", "order": 11}, {"name": "Tomas Arana", "character": "Martin Marshall", "id": 941, "credit_id": "52fe435bc3a36847f804e177", "cast_id": 32, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 12}, {"name": "Tim Griffin", "character": "John Nevins", "id": 27031, "credit_id": "53a6b3cbc3a3687a40003015", "cast_id": 47, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 13}, {"name": "Maxim Kovalevski", "character": "Ivan", "id": 43456, "credit_id": "53a6b4f10e0a2614320037b3", "cast_id": 48, "profile_path": null, "order": 14}, {"name": "Jon Collin Barclay", "character": "Jarhead", "id": 1099879, "credit_id": "53a6b5130e0a261442003743", "cast_id": 49, "profile_path": null, "order": 15}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe435bc3a36847f804e0dd", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 7.0, "runtime": 108}, "2503": {"poster_path": "/fHho6JYYY0nRcETWSoeI19iZsNF.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227471070, "overview": "Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.", "video": false, "id": 2503, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Ultimatum", "tagline": "Remember everything. Forgive nothing.", "vote_count": 1318, "homepage": "http://www.universalstudiosentertainment.com/the-bourne-ultimatum/", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0440963", "adult": false, "backdrop_path": "/6WpDOqkZFmhNJ0rwuLJiZVKlZi1.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Motion Picture BETA Produktionsgesellschaft", "id": 11348}, {"name": "The Kennedy/Marshall Company", "id": 862}, {"name": "Ludlum Entertainment", "id": 11347}, {"name": "Bourne Again", "id": 11349}, {"name": "Angel Studios", "id": 11350}], "release_date": "2007-08-03", "popularity": 1.62646039264984, "original_title": "The Bourne Ultimatum", "budget": 70000000, "cast": [{"name": "Matt Damon", "character": "Jason Bourne", "id": 1892, "credit_id": "52fe435bc3a36847f804e231", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Julia Stiles", "character": "Nicky Parsons", "id": 12041, "credit_id": "52fe435bc3a36847f804e283", "cast_id": 24, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 1}, {"name": "David Strathairn", "character": "Noah Vosen", "id": 11064, "credit_id": "52fe435bc3a36847f804e287", "cast_id": 25, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Scott Glenn", "character": "Ezra Kramer", "id": 349, "credit_id": "52fe435bc3a36847f804e28b", "cast_id": 26, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 3}, {"name": "Paddy Considine", "character": "Simon Ross", "id": 14887, "credit_id": "52fe435bc3a36847f804e235", "cast_id": 9, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Paz", "id": 25616, "credit_id": "52fe435bc3a36847f804e239", "cast_id": 10, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 5}, {"name": "Albert Finney", "character": "Dr. Albert Hirsch", "id": 3926, "credit_id": "52fe435bc3a36847f804e28f", "cast_id": 27, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 6}, {"name": "Joan Allen", "character": "Pamela Landy", "id": 11148, "credit_id": "52fe435bc3a36847f804e293", "cast_id": 28, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 7}, {"name": "Tom Gallop", "character": "Tom Cronin", "id": 27030, "credit_id": "52fe435bc3a36847f804e297", "cast_id": 29, "profile_path": "/t799Vz0ATVN24NmXpvFOPkrJLU9.jpg", "order": 8}, {"name": "Corey Johnson", "character": "Conrad Wills", "id": 17199, "credit_id": "52fe435bc3a36847f804e23d", "cast_id": 11, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 9}, {"name": "Daniel Br\u00fchl", "character": "Martin Kreutz", "id": 3872, "credit_id": "52fe435bc3a36847f804e29b", "cast_id": 30, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 10}, {"name": "Joey Ansah", "character": "Desh Bouksani", "id": 29406, "credit_id": "52fe435bc3a36847f804e29f", "cast_id": 31, "profile_path": "/jHubXiYEiUhonrVzXUJfVTOJ2Jq.jpg", "order": 11}, {"name": "Colin Stinton", "character": "Neal Daniels", "id": 23608, "credit_id": "52fe435bc3a36847f804e2a3", "cast_id": 32, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 12}, {"name": "Dan Fredenburgh", "character": "Jimmy", "id": 175400, "credit_id": "52fe435bc3a36847f804e2cb", "cast_id": 39, "profile_path": "/9EiaeIZ4udfQ8E13L6ug4JX1lXX.jpg", "order": 13}, {"name": "Lucy Liemann", "character": "Lucy", "id": 204167, "credit_id": "52fe435bc3a36847f804e2cf", "cast_id": 40, "profile_path": "/odhYpqFaGWehGNN9BCf7V7fjobW.jpg", "order": 14}, {"name": "Bryan Reents", "character": "Technician", "id": 122296, "credit_id": "52fe435bc3a36847f804e2d3", "cast_id": 41, "profile_path": "/jG2djIJpg21105tC3syRUohtKIw.jpg", "order": 15}, {"name": "Arkie Reece", "character": "Technician", "id": 89830, "credit_id": "52fe435bc3a36847f804e2d7", "cast_id": 42, "profile_path": "/1g4cbjJtQOguoYIzEOp0gK8fQ1s.jpg", "order": 16}, {"name": "John Roberson", "character": "Technician", "id": 122293, "credit_id": "52fe435bc3a36847f804e2db", "cast_id": 43, "profile_path": "/hPL55RJv5VuNU2bFuAtwXnMQvU1.jpg", "order": 17}, {"name": "Russ Huards", "character": "Technician", "id": 1280230, "credit_id": "52fe435bc3a36847f804e2df", "cast_id": 44, "profile_path": "/eVVXikM0ZB41fLSOO5kpxz81m7m.jpg", "order": 18}, {"name": "Mark Bazeley", "character": "Betancourt", "id": 124686, "credit_id": "52fe435bc3a36847f804e2e3", "cast_id": 45, "profile_path": "/w94J1KnyfAol8A17aMKFZvm8UAe.jpg", "order": 19}, {"name": "Sinead O'Keefe", "character": "Chamberlain", "id": 1280231, "credit_id": "52fe435bc3a36847f804e2e7", "cast_id": 46, "profile_path": "/tRn6CW8ODg4MGFGnpDzrxpxaQwp.jpg", "order": 20}, {"name": "Chucky Venice", "character": "Agent Hammond", "id": 1280232, "credit_id": "52fe435bc3a36847f804e2eb", "cast_id": 47, "profile_path": "/rzwDO12JfJ0hfToj7rUfGgOj3gg.jpg", "order": 21}, {"name": "Scott Adkins", "character": "Agent Kiley", "id": 78110, "credit_id": "52fe435bc3a36847f804e2ef", "cast_id": 48, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 22}, {"name": "Branko Tomovic", "character": "Russian Policeman", "id": 944548, "credit_id": "52fe435bc3a36847f804e2f3", "cast_id": 49, "profile_path": "/hQBTvwJyOUAvNH50pZa1RJ3bvSp.jpg", "order": 23}, {"name": "Laurentiu Possa", "character": "Russian Policeman", "id": 1280233, "credit_id": "52fe435bc3a36847f804e2f7", "cast_id": 50, "profile_path": "/aCarXz5DoC6ycy4Sn3RptzQeNGE.jpg", "order": 24}, {"name": "Trevor St. John", "character": "Tactical Team Leader", "id": 199298, "credit_id": "52fe435bc3a36847f804e2fb", "cast_id": 51, "profile_path": "/nLzyfCCDK3TPPHjbMi7x7NMrGUP.jpg", "order": 25}, {"name": "Albert Jones", "character": "Tactical Team Agent", "id": 164382, "credit_id": "52fe435bc3a36847f804e2ff", "cast_id": 52, "profile_path": "/yE5Jmmjd7JIqh6RE7H6QI3ar9PZ.jpg", "order": 26}, {"name": "Jeffrey Lee Gibson", "character": "Vosen's Driver", "id": 1280234, "credit_id": "52fe435bc3a36847f804e303", "cast_id": 53, "profile_path": "/eKx2kXjvgSyDYZkw5DfOwcK57QI.jpg", "order": 27}, {"name": "Uriel Emil Pollack", "character": "Morgue Attendant (as Uriel Emil)", "id": 1084850, "credit_id": "52fe435bc3a36847f804e307", "cast_id": 54, "profile_path": "/kZALdOtkmvLcUsOF7cf5JugD1FX.jpg", "order": 28}, {"name": "Omar Hernandez", "character": "NYPD Officer", "id": 1280235, "credit_id": "52fe435bc3a36847f804e30b", "cast_id": 55, "profile_path": "/h0NaLPlG7xGMIXTuzsyg0patNTn.jpg", "order": 29}, {"name": "William H. Burns", "character": "NYPD Officer", "id": 164021, "credit_id": "52fe435bc3a36847f804e30f", "cast_id": 56, "profile_path": "/1JePKS9eyOny5Qwsmofvbs0MC4Q.jpg", "order": 30}, {"name": "Michael Wildman", "character": "CRI Agent", "id": 30085, "credit_id": "52fe435bc3a36847f804e313", "cast_id": 57, "profile_path": "/lMD5D5luP2n70SZJI97FYNxLFdi.jpg", "order": 31}, {"name": "Kai Martin", "character": "Hoody", "id": 1280236, "credit_id": "52fe435bc3a36847f804e317", "cast_id": 58, "profile_path": "/hcQ6NvdR1HnRjK5SIkZE58geHuU.jpg", "order": 32}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe435bc3a36847f804e215", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 7.1, "runtime": 115}, "146227": {"poster_path": "/5UJQhrdzxnxAumgyJMgVX9DguC6.jpg", "production_countries": [{"iso_3166_1": "BG", "name": "Bulgaria"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Former race car driver Brent Magna (Hawke) is pitted against the clock. Desperately trying to save the life of his kidnapped wife, Brent commandeers a custom Ford Shelby GT500 Super Snake, taking it and its unwitting owner (Gomez) on a high-speed race against time, at the command of the mysterious villain holding his wife hostage.", "video": false, "id": 146227, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Getaway", "tagline": "Get in. Get out. Getaway.", "vote_count": 85, "homepage": "http://www.getawaymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2167202", "adult": false, "backdrop_path": "/jUuyZJjjz1KQCrc3PUajrfjkZwe.jpg", "production_companies": [{"name": "After Dark Films", "id": 3608}], "release_date": "2013-08-29", "popularity": 0.638846085273186, "original_title": "Getaway", "budget": 18000000, "cast": [{"name": "Ethan Hawke", "character": "Brent Magna", "id": 569, "credit_id": "52fe4b789251416c75103de1", "cast_id": 1, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Selena Gomez", "character": "The Kid", "id": 77948, "credit_id": "52fe4b789251416c75103de5", "cast_id": 2, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 1}, {"name": "Jon Voight", "character": "The Voice", "id": 10127, "credit_id": "52fe4b789251416c75103de9", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 2}, {"name": "Paul Freeman", "character": "The Man (voice)", "id": 652, "credit_id": "52fe4b789251416c75103dff", "cast_id": 9, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 3}, {"name": "Bruce Payne", "character": "Distinguished man", "id": 27422, "credit_id": "52fe4b789251416c75103e03", "cast_id": 10, "profile_path": "/nUfoRt0YA3SXbTAPKjNGq5lYuOc.jpg", "order": 4}, {"name": "Rebecca Budig", "character": "Leanne", "id": 105173, "credit_id": "52fe4b789251416c75103e07", "cast_id": 11, "profile_path": "/7UazqKqWVGxD7WAp5ZI5FmjP9B2.jpg", "order": 5}, {"name": "Dimo Alexiev", "character": "Henchman #1", "id": 1000981, "credit_id": "52fe4b789251416c75103e0b", "cast_id": 13, "profile_path": "/ksG50JRNYK14VobFBSdTxGdqsQC.jpg", "order": 6}, {"name": "Velislav Pavlov", "character": "Henchman #2", "id": 105834, "credit_id": "52fe4b789251416c75103e0f", "cast_id": 14, "profile_path": "/fHX4kmpoGkdixhZNui28KwXpUUu.jpg", "order": 7}, {"name": "Dejan Angelov", "character": "Henchman #3", "id": 94699, "credit_id": "52fe4b789251416c75103e13", "cast_id": 15, "profile_path": "/zCszCjsbCe80H9ZZhQXXg9pE0ak.jpg", "order": 8}, {"name": "Peewee Piemonte", "character": "Thug", "id": 1270921, "credit_id": "52fe4b789251416c75103e17", "cast_id": 16, "profile_path": "/bHFNfoJ931JgoxEKv6bppaxDHWO.jpg", "order": 9}, {"name": "Ivaylo Geraskov", "character": "Detective", "id": 90112, "credit_id": "52fe4b789251416c75103e63", "cast_id": 29, "profile_path": "/8mAfsChTkqINGh5C8TDUrXdClN6.jpg", "order": 10}, {"name": "Esteban Cueto", "character": "Thug", "id": 60653, "credit_id": "52fe4b789251416c75103e67", "cast_id": 30, "profile_path": "/jJYm6K3g3lQvic2Sgjh9SPb4FDq.jpg", "order": 11}], "directors": [{"name": "Courtney Solomon", "department": "Directing", "job": "Director", "credit_id": "52fe4b789251416c75103def", "profile_path": "/hLZpb39CB97wwoLGfxgEDdyYq2s.jpg", "id": 61921}], "vote_average": 5.0, "runtime": 90}, "59859": {"poster_path": "/xEDiYvObe2enHa5utvbJlnbp0KJ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29000000, "overview": "After Kick-Ass\u2019 insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist \u2014 reborn as The Mother F%&*^r \u2014 only the blade-wielding Hit-Girl can prevent their annihilation.", "video": false, "id": 59859, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "Kick-Ass 2", "tagline": "You Can't Fight Your Destiny.", "vote_count": 784, "homepage": "", "belongs_to_collection": {"backdrop_path": "/kelR7BTeIP2ENVjmSz76lD3r5Ht.jpg", "poster_path": "/2DtPSyODKWXluIRV7PVru0SSzja.jpg", "id": 179892, "name": "Kick-Ass Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1650554", "adult": false, "backdrop_path": "/fGuoOLZeM4elFV8CBcPCLMc1fwj.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "Universal Pictures", "id": 33}], "release_date": "2013-08-16", "popularity": 1.56030975402809, "original_title": "Kick-Ass 2", "budget": 28000000, "cast": [{"name": "Aaron Taylor-Johnson", "character": "Dave Lizewski / Kick-Ass", "id": 27428, "credit_id": "52fe499dc3a36847f81a3a93", "cast_id": 35, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Mindy Macready / Hit-Girl", "id": 56734, "credit_id": "52fe499dc3a36847f81a3a59", "cast_id": 24, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Christopher Mintz-Plasse", "character": "Chris D'Amico / The Motherfucker", "id": 54691, "credit_id": "52fe499dc3a36847f81a3a17", "cast_id": 4, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 2}, {"name": "Clark Duke", "character": "Marty Eisenberg / Battle Guy", "id": 54729, "credit_id": "52fe499dc3a36847f81a3a1f", "cast_id": 7, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 3}, {"name": "Jim Carrey", "character": "Colonel Stars and Stripes", "id": 206, "credit_id": "52fe499dc3a36847f81a3a23", "cast_id": 8, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 4}, {"name": "Lindy Booth", "character": "Night Bitch", "id": 51936, "credit_id": "53ae107dc3a3682edf0022b1", "cast_id": 46, "profile_path": "/bzquwgIrGxF8xfPCmSiNZ563VdH.jpg", "order": 5}, {"name": "Donald Faison", "character": "Doctor Gravity", "id": 49002, "credit_id": "52fe499dc3a36847f81a3a27", "cast_id": 9, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 6}, {"name": "Steven Mackintosh", "character": "Tommy's Dad", "id": 978, "credit_id": "52fe499dc3a36847f81a3abb", "cast_id": 43, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 7}, {"name": "Monica Dolan", "character": "Tommy's Mum", "id": 229606, "credit_id": "52fe499dc3a36847f81a3abf", "cast_id": 44, "profile_path": "/rH2PyFU4ZpvNF1guqDXV5Qqrtwv.jpg", "order": 8}, {"name": "Morris Chestnut", "character": "Detective Marcus Williams", "id": 9779, "credit_id": "52fe499dc3a36847f81a3a43", "cast_id": 16, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 9}, {"name": "Claudia Lee", "character": "Brooke", "id": 984658, "credit_id": "52fe499dc3a36847f81a3a4b", "cast_id": 18, "profile_path": "/jaWNpr6wnwhKeLwxM4Czt0UBO8C.jpg", "order": 10}, {"name": "Amy Anzel", "character": "Mrs. Zane", "id": 1199002, "credit_id": "52fe499dc3a36847f81a3a97", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Augustus Prew", "character": "Todd/Ass Kicker", "id": 3309, "credit_id": "52fe499dc3a36847f81a3a55", "cast_id": 23, "profile_path": "/k3pRpdfeHZq0BGBAYqhXyKjDuic.jpg", "order": 12}, {"name": "Mary Kitchen", "character": "News Reporter", "id": 1272888, "credit_id": "52fe499dc3a36847f81a3ab3", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Garrett M. Brown", "character": "Mr.Lizewski", "id": 27492, "credit_id": "52fe499dc3a36847f81a3ac3", "cast_id": 45, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 14}, {"name": "Lyndsy Fonseca", "character": "Katie Deauxma", "id": 116882, "credit_id": "52fe499dc3a36847f81a3a1b", "cast_id": 5, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 15}, {"name": "Yancy Butler", "character": "Angie D'Amico", "id": 20759, "credit_id": "52fe499dc3a36847f81a3a47", "cast_id": 17, "profile_path": "/emcS8cLp5aEEMdJS4Am0TLiX6WA.jpg", "order": 16}, {"name": "John Leguizamo", "character": "Javier", "id": 5723, "credit_id": "52fe499dc3a36847f81a3a3b", "cast_id": 14, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 17}, {"name": "Robert Emms", "character": "Insect Man", "id": 589652, "credit_id": "52fe499dc3a36847f81a3a2b", "cast_id": 10, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 18}, {"name": "Ella Purnell", "character": "Dolce", "id": 989325, "credit_id": "54b22fe6c3a368210c000c9c", "cast_id": 47, "profile_path": "/3g0n8TEbQQpLT3ZEbSjlTO8lnK5.jpg", "order": 19}], "directors": [{"name": "Jeff Wadlow", "department": "Directing", "job": "Director", "credit_id": "52fe499dc3a36847f81a3a51", "profile_path": null, "id": 55075}], "vote_average": 6.4, "runtime": 103}, "264660": {"poster_path": "/iXWt1prw5xbpjf3hmOm8Fo3dFa.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 13700000, "overview": "Caleb, a 24 year old coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.", "video": false, "id": 264660, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Ex Machina", "tagline": "There is nothing more human than the will to survive", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0470752", "adult": false, "backdrop_path": "/9X3cDZb4GYGQeOnZHLwMcCFz2Ro.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "DNA Films", "id": 284}], "release_date": "2015-01-21", "popularity": 3.15463816255217, "original_title": "Ex Machina", "budget": 16400000, "cast": [{"name": "Domhnall Gleeson", "character": "Caleb", "id": 93210, "credit_id": "534c28bcc3a3682ddf00326a", "cast_id": 1, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 1}, {"name": "Oscar Isaac", "character": "Nathan", "id": 25072, "credit_id": "534c28c2c3a3682e07003423", "cast_id": 2, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "Ava", "id": 227454, "credit_id": "534c28cdc3a3682de40033f8", "cast_id": 3, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Corey Johnson", "character": "Jay", "id": 17199, "credit_id": "54ad02ec9251414d6700a8c4", "cast_id": 17, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 4}, {"name": "Sonoya Mizuno", "character": "Kyoko", "id": 1457238, "credit_id": "5535b5c6c3a368447c0004a9", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Claire Selby", "character": "Lily", "id": 1457239, "credit_id": "5535b5d4c3a3681785000a37", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Symara A. Templeman", "character": "Jasmine", "id": 1394342, "credit_id": "5535b5e292514152cf000ca4", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Gana Bayarsaikhan", "character": "Jade", "id": 1457240, "credit_id": "5535b5edc3a3681785000a3e", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Tiffany Pisani", "character": "Katya", "id": 1457241, "credit_id": "5535b5f992514152aa000d39", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Elina Alminas", "character": "Amber", "id": 1394348, "credit_id": "5535b605c3a368523e004fe1", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Alex Garland", "department": "Directing", "job": "Director", "credit_id": "534c28adc3a3682dd80033cc", "profile_path": null, "id": 2036}], "vote_average": 8.1, "runtime": 108}, "59861": {"poster_path": "/9IJgzuDEd1qHwmUiT38YYPYSYnt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36160375, "overview": "After losing his job, a middle-aged man reinvents himself by going back to college.", "video": false, "id": 59861, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Larry Crowne", "tagline": "Rediscover life and love", "vote_count": 102, "homepage": "http://www.larrycrowne.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1583420", "adult": false, "backdrop_path": "/w2iM7qOcQVjBH4WOwhej92DWGbK.jpg", "production_companies": [{"name": "Playtone Productions", "id": 4170}, {"name": "Universal Pictures", "id": 33}, {"name": "Vendome Pictures", "id": 7460}], "release_date": "2011-06-30", "popularity": 0.792046942841073, "original_title": "Larry Crowne", "budget": 30000000, "cast": [{"name": "Tom Hanks", "character": "Larry Crowne", "id": 31, "credit_id": "52fe499dc3a36847f81a3b1f", "cast_id": 3, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Mercedes Tainot", "id": 1204, "credit_id": "52fe499dc3a36847f81a3b23", "cast_id": 4, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Bryan Cranston", "character": "Dean Tainot", "id": 17419, "credit_id": "52fe499dc3a36847f81a3b27", "cast_id": 6, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 2}, {"name": "Cedric the Entertainer", "character": "Lamar", "id": 5726, "credit_id": "52fe499dc3a36847f81a3b2b", "cast_id": 7, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 3}, {"name": "Pam Grier", "character": "Frances", "id": 2230, "credit_id": "52fe499dc3a36847f81a3b2f", "cast_id": 8, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 4}, {"name": "Taraji P. Henson", "character": "B'Ella", "id": 40036, "credit_id": "52fe499dc3a36847f81a3b33", "cast_id": 9, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 5}, {"name": "George Takei", "character": "Dr. Matsutani", "id": 1752, "credit_id": "52fe499dc3a36847f81a3b37", "cast_id": 10, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 6}, {"name": "Nia Vardalos", "character": "Map Genie", "id": 54645, "credit_id": "52fe499dc3a36847f81a3b3b", "cast_id": 11, "profile_path": "/5gFPZcVc00uXhzslKOZ2DmWoTSH.jpg", "order": 7}, {"name": "Sarah Mahoney", "character": "Samantha", "id": 204588, "credit_id": "52fe499dc3a36847f81a3b3f", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Roxana Ortega", "character": "Alvarez", "id": 98292, "credit_id": "52fe499dc3a36847f81a3b43", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Rami Malek", "character": "", "id": 17838, "credit_id": "52fe499dc3a36847f81a3b53", "cast_id": 16, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 10}, {"name": "Wilmer Valderrama", "character": "", "id": 18975, "credit_id": "52fe499dc3a36847f81a3b57", "cast_id": 17, "profile_path": "/8hN3liZjFROTdGXuwituNSAg55F.jpg", "order": 11}, {"name": "Gugu Mbatha-Raw", "character": "Talia", "id": 1216606, "credit_id": "52fe499dc3a36847f81a3b5b", "cast_id": 18, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 12}], "directors": [{"name": "Tom Hanks", "department": "Directing", "job": "Director", "credit_id": "52fe499dc3a36847f81a3b15", "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "id": 31}], "vote_average": 5.8, "runtime": 98}, "10715": {"poster_path": "/ownVrxw7OYOo8vwk2g4q74Oe8Wa.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68514844, "overview": "Bugs Bunny and Daffy Duck are up to their feuding ways again. Tired of playing second fiddle to Bugs, Daffy has decided to leave the Studio for good. He is aided by Warner Bros.' humor impaired Vice President of Comedy, Kate Houghton, who releases him from his contract and instructs WB security guard/aspiring stunt man DJ Drake to capture and \"escort\" Daffy off the studio lot.", "video": false, "id": 10715, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Looney Tunes: Back In Action", "tagline": "Real life has never been so animated.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0318155", "adult": false, "backdrop_path": "/zbvGbnOniU53SucXxfqpWXOH05X.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2003-11-14", "popularity": 0.846819070462537, "original_title": "Looney Tunes: Back In Action", "budget": 80000000, "cast": [{"name": "Brendan Fraser", "character": "DJ Drake", "id": 18269, "credit_id": "52fe43a79251416c75018e2d", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Jenna Elfman", "character": "Kate", "id": 40279, "credit_id": "52fe43a79251416c75018e31", "cast_id": 2, "profile_path": "/cTXzciaLL96Pa75HzEr1u1kbfeH.jpg", "order": 1}, {"name": "Steve Martin", "character": "Mr. Chairman", "id": 67773, "credit_id": "52fe43a79251416c75018e35", "cast_id": 3, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 2}, {"name": "Timothy Dalton", "character": "Damien Drake", "id": 10669, "credit_id": "52fe43a79251416c75018e39", "cast_id": 4, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 3}, {"name": "Heather Locklear", "character": "Dusty Tails", "id": 58691, "credit_id": "52fe43a79251416c75018e3d", "cast_id": 5, "profile_path": "/djRAJGjg73Cao0x5m11XPHrjBll.jpg", "order": 4}, {"name": "Joan Cusack", "character": "Mother", "id": 3234, "credit_id": "52fe43a79251416c75018e41", "cast_id": 6, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 5}, {"name": "Marc Lawrence", "character": "Acme VP, Stating the Obvious", "id": 3140, "credit_id": "52fe43a79251416c75018e93", "cast_id": 20, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 6}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe43a79251416c75018e8f", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 5.6, "runtime": 90}, "10719": {"poster_path": "/2BCvh9w8YXP30Jst8PkMngEo619.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173398518, "overview": "When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic publisher.", "video": false, "id": 10719, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Elf", "tagline": "This holiday, discover your inner elf.", "vote_count": 243, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0319343", "adult": false, "backdrop_path": "/J9XLTBsutjnLnyGH1v4foLgtdG.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Guy Walks into a Bar Productions", "id": 2645}, {"name": "Gold/Miller Productions", "id": 1607}], "release_date": "2003-10-09", "popularity": 1.46991830352774, "original_title": "Elf", "budget": 32000000, "cast": [{"name": "Will Ferrell", "character": "Buddy", "id": 23659, "credit_id": "52fe43a89251416c7501900d", "cast_id": 1, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Jovie", "id": 11664, "credit_id": "52fe43a89251416c7501906b", "cast_id": 24, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Daniel Tay", "character": "Michael", "id": 27974, "credit_id": "52fe43a89251416c75019083", "cast_id": 30, "profile_path": "/bEf5utuWQgnSREDVxg9EhEWqCGe.jpg", "order": 2}, {"name": "James Caan", "character": "Walter", "id": 3085, "credit_id": "52fe43a89251416c75019011", "cast_id": 2, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 3}, {"name": "Bob Newhart", "character": "Papa Elf", "id": 64930, "credit_id": "52fe43a89251416c75019015", "cast_id": 3, "profile_path": "/uBEjNF7rOgrG3aKlfq6xY5aPmSg.jpg", "order": 4}, {"name": "Ed Asner", "character": "Santa", "id": 68812, "credit_id": "52fe43a89251416c75019019", "cast_id": 4, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 5}, {"name": "Amy Sedaris", "character": "Deb", "id": 12110, "credit_id": "52fe43a89251416c7501906f", "cast_id": 25, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 6}, {"name": "Andy Richter", "character": "Morris", "id": 28637, "credit_id": "52fe43a89251416c75019073", "cast_id": 26, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 7}, {"name": "Mary Steenburgen", "character": "Emily", "id": 2453, "credit_id": "52fe43a89251416c75019077", "cast_id": 27, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 8}, {"name": "Kyle Gass", "character": "Eugene", "id": 22297, "credit_id": "52fe43a89251416c7501907b", "cast_id": 28, "profile_path": "/638Fj6ewDxy9elmOKG78CMeEoLF.jpg", "order": 9}, {"name": "Artie Lange", "character": "Gimbel's Santa", "id": 20788, "credit_id": "52fe43a89251416c7501907f", "cast_id": 29, "profile_path": "/ifXG3HVuOgYhSTuvugGJCthfcN.jpg", "order": 10}, {"name": "Faizon Love", "character": "Gimbel's Manager", "id": 62066, "credit_id": "52fe43a89251416c75019087", "cast_id": 31, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 11}, {"name": "Peter Dinklage", "character": "Miles Finch", "id": 22970, "credit_id": "52fe43a89251416c7501908b", "cast_id": 32, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 12}, {"name": "Michael Lerner", "character": "Fulton", "id": 4250, "credit_id": "52fe43a89251416c7501908f", "cast_id": 33, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 13}, {"name": "Leon Redbone", "character": "Leon the Snowman", "id": 1051916, "credit_id": "52fe43a89251416c75019093", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Peter Billingsley", "character": "Maymay", "id": 12708, "credit_id": "52fe43a89251416c75019097", "cast_id": 35, "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "order": 15}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe43a89251416c7501901f", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 6.3, "runtime": 97}, "254375": {"poster_path": "/8EXGHKbT8EQRStYEYlNZUdCP414.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "A psychiatrist searches the globe to find the secret of happiness.", "video": false, "id": 254375, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Hector and the Search for Happiness", "tagline": "Sometimes to find yourself you need to get a little lost.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1626146", "adult": false, "backdrop_path": "/bT5eROQOUx4bfiFkgdgw5mgGyIV.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Egoli Tossell Film", "id": 44224}, {"name": "Film Afrika Worldwide", "id": 4792}, {"name": "Construction Film", "id": 44225}, {"name": "Erfttal Film", "id": 2221}, {"name": "Head Gear Films", "id": 5056}, {"name": "Metrol Technology", "id": 25954}, {"name": "Screen Siren Pictures", "id": 44226}], "release_date": "2014-09-19", "popularity": 1.26265794840908, "original_title": "Hector and the Search for Happiness", "budget": 0, "cast": [{"name": "Simon Pegg", "character": "Hector", "id": 11108, "credit_id": "52fe4eb69251416c9113b255", "cast_id": 1, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Clara", "id": 10882, "credit_id": "52fe4eb69251416c9113b259", "cast_id": 2, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Toni Collette", "character": "Agnes", "id": 3051, "credit_id": "52fe4eb69251416c9113b25d", "cast_id": 3, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Edward", "id": 1640, "credit_id": "52fe4eb69251416c9113b261", "cast_id": 4, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Christopher Plummer", "character": "Professor Coreman", "id": 290, "credit_id": "52fe4eb69251416c9113b265", "cast_id": 5, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 4}, {"name": "Jean Reno", "character": "Diego", "id": 1003, "credit_id": "52fe4eb69251416c9113b269", "cast_id": 6, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 5}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe4eb69251416c9113b26f", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 6.9, "runtime": 120}, "10734": {"poster_path": "/lBAxIEywz3KfzXimn9qHBArLHU8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43000000, "overview": "A dramatization of the one possibly successful escape from the notorious prison.", "video": false, "id": 10734, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Escape from Alcatraz", "tagline": "No one has ever escaped from Alcatraz... And no one ever will!", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079116", "adult": false, "backdrop_path": "/doJGjcWPpuGuDPJwCpCNnYUG9x4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Malpaso Productions", "id": 171}], "release_date": "1979-06-22", "popularity": 1.35735980752741, "original_title": "Escape from Alcatraz", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Frank Morris", "id": 190, "credit_id": "52fe43ac9251416c7501994f", "cast_id": 30, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Patrick McGoohan", "character": "Warden", "id": 2463, "credit_id": "52fe43ac9251416c75019957", "cast_id": 32, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 1}, {"name": "Fred Ward", "character": "John Anglin", "id": 10430, "credit_id": "52fe43ac9251416c75019953", "cast_id": 31, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 4}, {"name": "David Cryer", "character": "Wagner", "id": 66296, "credit_id": "52fe43ab9251416c75019927", "cast_id": 20, "profile_path": "/uBp5ZZBtZH1cnYMK2l6XBvRVh60.jpg", "order": 5}, {"name": "Blair Burrows", "character": "Fight Guard", "id": 66298, "credit_id": "52fe43ac9251416c7501992f", "cast_id": 22, "profile_path": null, "order": 6}, {"name": "Roberts Blossom", "character": "Doc", "id": 66288, "credit_id": "52fe43ab9251416c75019917", "cast_id": 14, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 7}, {"name": "Bob Balhatchet", "character": "Medical Technical Assistant", "id": 66299, "credit_id": "52fe43ac9251416c75019933", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Bruce M. Fischer", "character": "Wolf", "id": 66293, "credit_id": "52fe43ab9251416c7501991b", "cast_id": 17, "profile_path": "/mRMjsb3yQOj7VfQ6MGXgk46jUE9.jpg", "order": 11}, {"name": "Matthew Locricchio", "character": "Exam Guard", "id": 66300, "credit_id": "52fe43ac9251416c75019937", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Jason Ronard", "character": "Bobs", "id": 66304, "credit_id": "52fe43ac9251416c7501993b", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Ron Vernan", "character": "Stone", "id": 66305, "credit_id": "52fe43ac9251416c7501993f", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Ray K. Goman", "character": "Cellblock Captain", "id": 66302, "credit_id": "52fe43ac9251416c75019943", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Ed Vasgersian", "character": "Cranston", "id": 66303, "credit_id": "52fe43ac9251416c75019947", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Frank Ronzio", "character": "Litmus", "id": 66294, "credit_id": "52fe43ab9251416c7501991f", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Don Michaelian", "character": "Beck", "id": 66301, "credit_id": "52fe43ac9251416c7501994b", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Fred Stuthman", "character": "Johnson", "id": 66295, "credit_id": "52fe43ab9251416c75019923", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Madison Arnold", "character": "Zimmerman", "id": 66297, "credit_id": "52fe43ab9251416c7501992b", "cast_id": 21, "profile_path": null, "order": 19}, {"name": "Paul Benjamin", "character": "English", "id": 15534, "credit_id": "52fe43ac9251416c7501996d", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Larry Hankin", "character": "Charley Butts", "id": 11519, "credit_id": "52fe43ac9251416c7501997d", "cast_id": 39, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 21}, {"name": "Jack Thibeau", "character": "Clarence Anglin", "id": 14320, "credit_id": "52fe43ac9251416c7501998d", "cast_id": 42, "profile_path": "/ugO5Vb7ZXUz5VMpM9dZghJSt6ui.jpg", "order": 22}], "directors": [{"name": "Don Siegel", "department": "Directing", "job": "Director", "credit_id": "52fe43ab9251416c750198fb", "profile_path": "/dptmMoVlEB9o8O8C8vf5CPILg6n.jpg", "id": 14773}], "vote_average": 7.1, "runtime": 112}, "10735": {"poster_path": "/fz7hIWLvyEAzH0hjGNwWEoWyNQn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.", "video": false, "id": 10735, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "What a Girl Wants", "tagline": "Trying to fit in. Born to stand out.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0286788", "adult": false, "backdrop_path": "/8ELLcGJkQD1JrjJ6A5LS3Frn87q.jpg", "production_companies": [{"name": "DiNovi Pictures", "id": 813}, {"name": "Gaylord Films", "id": 5367}, {"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2003-03-27", "popularity": 1.02205974879816, "original_title": "What a Girl Wants", "budget": 0, "cast": [{"name": "Amanda Bynes", "character": "Daphne Reynolds", "id": 29220, "credit_id": "52fe43ac9251416c750199b5", "cast_id": 1, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 0}, {"name": "Colin Firth", "character": "Henry Dashwood", "id": 5472, "credit_id": "52fe43ac9251416c750199b9", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Libby Reynolds", "id": 11164, "credit_id": "52fe43ac9251416c750199bd", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Jonathan Pryce", "character": "Alistair Payne", "id": 378, "credit_id": "52fe43ac9251416c750199c1", "cast_id": 4, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 3}, {"name": "Oliver James", "character": "Ian Wallace", "id": 78730, "credit_id": "52fe43ac9251416c75019a0d", "cast_id": 17, "profile_path": "/lzKEBfE8tVTH9kr1ZPmIapFJ99i.jpg", "order": 4}], "directors": [{"name": "Dennie Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe43ac9251416c750199c7", "profile_path": "/3ykd6ByuQ77EpPYVGWate1BBtVP.jpg", "id": 66960}], "vote_average": 6.0, "runtime": 105}, "10747": {"poster_path": "/59ywz8rQmXn4bl60WOMJddPc7z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.", "video": false, "id": 10747, "genres": [{"id": 37, "name": "Western"}, {"id": 10752, "name": "War"}], "title": "The Outlaw Josey Wales", "tagline": "...an army of one.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0075029", "adult": false, "backdrop_path": "/vkE1ROrP1gA5c1L31XZ8JR9QRMJ.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Malpaso Company", "id": 15298}], "release_date": "1976-06-30", "popularity": 0.821835969155016, "original_title": "The Outlaw Josey Wales", "budget": 3700000, "cast": [{"name": "Clint Eastwood", "character": "Josey Wales", "id": 190, "credit_id": "52fe43ad9251416c75019df7", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Chief Dan George", "character": "Lone Watie", "id": 66670, "credit_id": "52fe43ad9251416c75019dfb", "cast_id": 2, "profile_path": "/qGPiWgk9gblAPiF2Az1g2nkZlLx.jpg", "order": 1}, {"name": "Sondra Locke", "character": "Laura Lee", "id": 66223, "credit_id": "52fe43ad9251416c75019dff", "cast_id": 3, "profile_path": "/vzuYg4TGd2YSJy4I6ZNaLUVxuuV.jpg", "order": 2}, {"name": "Bill McKinney", "character": "Terrill", "id": 16555, "credit_id": "52fe43ad9251416c75019e03", "cast_id": 4, "profile_path": "/41fWfebZMA3qxKJpALkagBA6gHT.jpg", "order": 3}, {"name": "John Vernon", "character": "Fletcher", "id": 17580, "credit_id": "52fe43ad9251416c75019e07", "cast_id": 5, "profile_path": "/8jESb02RChcuBEh4yZrLHElNhWa.jpg", "order": 4}, {"name": "Paula Trueman", "character": "Grandma Sarah", "id": 734, "credit_id": "54d7978cc3a3683b890061b7", "cast_id": 15, "profile_path": "/qXZAw0uswXslggmg5hJmeC0iAAL.jpg", "order": 5}, {"name": "Sam Bottoms", "character": "Jamie", "id": 8350, "credit_id": "54d797aa925141758c005dd4", "cast_id": 16, "profile_path": "/4J8AQtnLV8OFIyTl3p0YnxZoPsi.jpg", "order": 6}, {"name": "Geraldine Keams", "character": "Little Moonlight", "id": 1173474, "credit_id": "54d797d0c3a3683b8f00668e", "cast_id": 17, "profile_path": "/6UwlPREttyRXJNTyJNtWf7lvGU1.jpg", "order": 7}, {"name": "Woodrow Parfrey", "character": "Carpetbagger", "id": 13263, "credit_id": "54d797ebc3a368439a005e7d", "cast_id": 18, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 8}, {"name": "Joyce Jameson", "character": "Rose", "id": 40381, "credit_id": "54d7980d9251413388003421", "cast_id": 19, "profile_path": "/d2yiYVWs1pHJjbL8MRlQaTFjPwI.jpg", "order": 9}, {"name": "Sheb Wooley", "character": "Travis Cobb", "id": 4080, "credit_id": "54d798389251416b93005f5b", "cast_id": 20, "profile_path": "/wngAcuEA3AslnYxoJSonPcaLJ3f.jpg", "order": 10}, {"name": "Royal Dano", "character": "Ten Spot", "id": 19968, "credit_id": "54d799a4c3a3683ba0006d64", "cast_id": 21, "profile_path": "/nmq1TZwdznQrkWxEyMP2dAWFjxc.jpg", "order": 11}, {"name": "Matt Clark", "character": "Kelly (as Matt Clarke)", "id": 2454, "credit_id": "54d799bac3a3683b99005e00", "cast_id": 22, "profile_path": "/hDNQhAEns3nl9cgQJ4udgCdBABI.jpg", "order": 12}, {"name": "John Verros", "character": "Chato", "id": 117028, "credit_id": "54d799d39251416b9f0060cc", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Will Sampson", "character": "Ten Bears", "id": 68301, "credit_id": "54d799f1c3a3683ba0006d67", "cast_id": 24, "profile_path": "/qcufMVWjaK0jlcDkkUZ6Kawvj2l.jpg", "order": 14}, {"name": "Len Lesser", "character": "Abe", "id": 78087, "credit_id": "54d79a09c3a368439a005ea9", "cast_id": 25, "profile_path": "/h6mL9dHhYa4sHppv4GRJIkUTqwe.jpg", "order": 15}, {"name": "Doug McGrath", "character": "Lige", "id": 62033, "credit_id": "54d79a34c3a3683b890061ed", "cast_id": 26, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 16}, {"name": "John Russell", "character": "Bloody Bill Anderson", "id": 4304, "credit_id": "54d79a4ac3a3683b890061ef", "cast_id": 27, "profile_path": "/td1PYzG0wBy36tJx7HsnMcabwzp.jpg", "order": 17}, {"name": "Charles Tyner", "character": "Zukie Limmer", "id": 4974, "credit_id": "54d79a6e9251416b9f0060d3", "cast_id": 28, "profile_path": "/fnwUB0jM9XwBlH7hAwFQk1x4L2o.jpg", "order": 18}, {"name": "John Mitchum", "character": "Al", "id": 14786, "credit_id": "54d79b349251415f9c006055", "cast_id": 29, "profile_path": "/varG7DgJQjNwwCeUcwpZhCs40uo.jpg", "order": 19}, {"name": "Madeleine Taylor Holmes", "character": "Grannie Hawkins (as Madeline T. Holmes)", "id": 1424766, "credit_id": "54d79b7a9251415f9c00605a", "cast_id": 30, "profile_path": null, "order": 20}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe43ad9251416c75019e0d", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.2, "runtime": 135}, "76285": {"poster_path": "/cjNvhte8I318miZucl9MIFFyWQJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 174578751, "overview": "In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.", "video": false, "id": 76285, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Percy Jackson: Sea of Monsters", "tagline": "Where There Are Gods, There Are Monsters.", "vote_count": 514, "homepage": "http://www.percyjacksonthemovie.com/us/#!/home", "belongs_to_collection": {"backdrop_path": "/ae7DIULlFVTPp6mjgBLr4hzP59O.jpg", "poster_path": "/fimFFNm5LTSTaYcQEbjrFXT4rgo.jpg", "id": 179919, "name": "Percy Jackson Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1854564", "adult": false, "backdrop_path": "/im2ljgv5BEJsUlb4mVQEt4vYgr7.jpg", "production_companies": [{"name": "Dune Entertainment III", "id": 6332}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Sunswept Entertainment", "id": 5219}, {"name": "1492 Pictures", "id": 436}, {"name": "Dune Entertainment", "id": 444}, {"name": "TSG Entertainment", "id": 22213}], "release_date": "2013-08-07", "popularity": 1.16639297087517, "original_title": "Percy Jackson: Sea of Monsters", "budget": 90000000, "cast": [{"name": "Logan Lerman", "character": "Percy Jackson", "id": 33235, "credit_id": "52fe492fc3a368484e11eca5", "cast_id": 2, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 0}, {"name": "Alexandra Daddario", "character": "Annabeth", "id": 109513, "credit_id": "52fe4930c3a368484e11ed0f", "cast_id": 37, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 1}, {"name": "Douglas Smith", "character": "Tyson", "id": 60077, "credit_id": "52fe492fc3a368484e11ecb7", "cast_id": 13, "profile_path": "/6iIV8IebkXio2mgFB3Xw7XPntXX.jpg", "order": 2}, {"name": "Leven Rambin", "character": "Clarisse", "id": 207401, "credit_id": "52fe4930c3a368484e11ed13", "cast_id": 38, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 3}, {"name": "Brandon T. Jackson", "character": "Grover", "id": 53336, "credit_id": "52fe4930c3a368484e11ed17", "cast_id": 39, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 4}, {"name": "Jake Abel", "character": "Luke", "id": 105727, "credit_id": "52fe4930c3a368484e11ed1b", "cast_id": 40, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 5}, {"name": "Anthony Stewart Head", "character": "Chiron", "id": 34257, "credit_id": "52fe492fc3a368484e11ecbb", "cast_id": 15, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "Mr.D", "id": 2283, "credit_id": "52fe492fc3a368484e11ecbf", "cast_id": 17, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Nathan Fillion", "character": "Hermes", "id": 51797, "credit_id": "52fe492fc3a368484e11ecc3", "cast_id": 18, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 8}, {"name": "Derek Mears", "character": "Cyclops", "id": 51300, "credit_id": "52fe492fc3a368484e11eccd", "cast_id": 22, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 9}, {"name": "Robert Maillet", "character": "Polyphemus / Laistrygonian", "id": 112692, "credit_id": "52fe492fc3a368484e11ecaf", "cast_id": 10, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 10}, {"name": "Grey Damon", "character": "Chris Rodriguez", "id": 130769, "credit_id": "52fe492fc3a368484e11ecd1", "cast_id": 24, "profile_path": "/q3Dw5yaDiGTyET52YvYfi2Fa4Pv.jpg", "order": 11}, {"name": "Ron Perlman", "character": "Polyphemus (voice)", "id": 2372, "credit_id": "52fe4930c3a368484e11ecf3", "cast_id": 30, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 12}, {"name": "Connor Dunn", "character": "Tereus", "id": 1272881, "credit_id": "52fe4930c3a368484e11ecf7", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Paloma Kwiatkowski", "character": "Thalia", "id": 1257753, "credit_id": "52fe4930c3a368484e11ecfb", "cast_id": 32, "profile_path": "/4E783I5hvMiVBaYys7gF18hSSH.jpg", "order": 14}, {"name": "Alisha Newton", "character": "Young Annabeth", "id": 1272883, "credit_id": "52fe4930c3a368484e11ecff", "cast_id": 33, "profile_path": "/5NrA7cr1WxHspyx6BlZnDh23btK.jpg", "order": 15}, {"name": "Bjorn Yearwood", "character": "Young Grover", "id": 1272884, "credit_id": "52fe4930c3a368484e11ed03", "cast_id": 34, "profile_path": "/2HAFI1UjYEJtOjP6gkjPJLikLyG.jpg", "order": 16}, {"name": "Samuel Braun", "character": "Young Luke", "id": 1272885, "credit_id": "52fe4930c3a368484e11ed07", "cast_id": 35, "profile_path": "/kHYwVC5tXEXf4DHoJgDUgYxlr70.jpg", "order": 17}, {"name": "Katelyn Mager", "character": "Young Thalia", "id": 116416, "credit_id": "52fe4930c3a368484e11ed0b", "cast_id": 36, "profile_path": "/yreMxRMJFtxtVoKoDxt4Yfkkwpt.jpg", "order": 18}, {"name": "Yvette Nicole Brown", "character": "Gray Sister #2", "id": 111513, "credit_id": "52fe492fc3a368484e11ecb3", "cast_id": 12, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 19}, {"name": "Missi Pyle", "character": "Gray Sister #3", "id": 1294, "credit_id": "52fe4930c3a368484e11ed1f", "cast_id": 41, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 20}], "directors": [{"name": "Thor Freudenthal", "department": "Directing", "job": "Director", "credit_id": "52fe492fc3a368484e11eca1", "profile_path": null, "id": 109857}], "vote_average": 6.1, "runtime": 106}, "18947": {"poster_path": "/9yPSnwksl3vcTISI3Jn4zpVSMRA.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 36348784, "overview": "The Boat that Rocked is an ensemble comedy, where the romance is between the young people of the 60s, and pop music. It's about a band of DJs that captivate Britain, playing the music that defines a generation and standing up to a government that, incomprehensibly, prefers jazz.", "video": false, "id": 18947, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Boat That Rocked", "tagline": "On air. Off shore. Out of control.", "vote_count": 178, "homepage": "http://www.theboatthatrocked.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1131729", "adult": false, "backdrop_path": "/hzlvvttpWUMCVrux7n4TAGBMlQ5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Working Title Films", "id": 10163}, {"name": "Medienproduktion Prometheus Filmgesellschaft", "id": 12196}, {"name": "Portobello Studios", "id": 12197}, {"name": "Tightrope Pictures", "id": 12198}], "release_date": "2009-04-01", "popularity": 1.05110782937434, "original_title": "The Boat That Rocked", "budget": 50000000, "cast": [{"name": "Tom Sturridge", "character": "Carl", "id": 90451, "credit_id": "52fe47ad9251416c750a1d4f", "cast_id": 13, "profile_path": "/dJUgs1ypjB4Vfauq9hi64hg2oqn.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "The Count", "id": 1233, "credit_id": "52fe47ad9251416c750a1d27", "cast_id": 3, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Rhys Ifans", "character": "Gavin", "id": 7026, "credit_id": "52fe47ad9251416c750a1d2b", "cast_id": 4, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Quentin", "id": 2440, "credit_id": "52fe47ad9251416c750a1d2f", "cast_id": 5, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Emma Thompson", "character": "Charlotte", "id": 7056, "credit_id": "52fe47ad9251416c750a1d33", "cast_id": 6, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 4}, {"name": "Nick Frost", "character": "Dave", "id": 11109, "credit_id": "52fe47ad9251416c750a1d37", "cast_id": 7, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 5}, {"name": "Kenneth Branagh", "character": "Dormandy", "id": 11181, "credit_id": "52fe47ad9251416c750a1d3b", "cast_id": 8, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 6}, {"name": "January Jones", "character": "Eleonore", "id": 31717, "credit_id": "52fe47ad9251416c750a1d3f", "cast_id": 9, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 7}, {"name": "Gemma Arterton", "character": "Desiree", "id": 59620, "credit_id": "52fe47ad9251416c750a1d43", "cast_id": 10, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 8}, {"name": "Jack Davenport", "character": "Twatt", "id": 1709, "credit_id": "52fe47ad9251416c750a1d47", "cast_id": 11, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 9}, {"name": "Rhys Darby", "character": "Angus", "id": 82666, "credit_id": "52fe47ad9251416c750a1d4b", "cast_id": 12, "profile_path": "/d8mSQJYmuOoT3hvC7FGgSVMzYlz.jpg", "order": 10}, {"name": "Chris O'Dowd", "character": "Simon", "id": 40477, "credit_id": "52fe47ad9251416c750a1d53", "cast_id": 14, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 11}, {"name": "Katherine Parkinson", "character": "Felicity", "id": 74158, "credit_id": "52fe47ad9251416c750a1d57", "cast_id": 15, "profile_path": "/sdJIbvXYT7dmnd4FzYoaia4rYbo.jpg", "order": 12}, {"name": "Katie Lyons", "character": "Angus' Boat Girl", "id": 77266, "credit_id": "52fe47ad9251416c750a1d5b", "cast_id": 16, "profile_path": "/bjBlcNH0VWf9MKkY5zaqXrXY63n.jpg", "order": 13}, {"name": "Tom Wisdom", "character": "Mark", "id": 17292, "credit_id": "52fe47ae9251416c750a1dad", "cast_id": 30, "profile_path": "/3G9RdJHEfTcuBk5ArYSMOrnYYG9.jpg", "order": 14}, {"name": "Will Adamsdale", "character": "News John", "id": 979167, "credit_id": "52fe47ae9251416c750a1db1", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Tom Brooke", "character": "Thick Kevin", "id": 75066, "credit_id": "52fe47ae9251416c750a1db5", "cast_id": 32, "profile_path": "/9uUjIfjlQ3qxdR5z37YD2bEE97p.jpg", "order": 16}, {"name": "Ralph Brown", "character": "Bob", "id": 53916, "credit_id": "52fe47ae9251416c750a1db9", "cast_id": 33, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 17}, {"name": "Ike Hamilton", "character": "Harold", "id": 1135106, "credit_id": "52fe47ae9251416c750a1dbd", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Sinead Matthews", "character": "Miss C", "id": 36668, "credit_id": "52fe47ae9251416c750a1dc1", "cast_id": 35, "profile_path": "/r1RPRMPbkgu4WMyysXTs75LEMiW.jpg", "order": 19}, {"name": "Talulah Riley", "character": "Marianne", "id": 66441, "credit_id": "52fe47ae9251416c750a1dc5", "cast_id": 36, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 20}], "directors": [{"name": "Richard Curtis", "department": "Directing", "job": "Director", "credit_id": "52fe47ad9251416c750a1d1d", "profile_path": "/uLjkovqtUtM4SckCFtrevZKKJNM.jpg", "id": 7018}], "vote_average": 7.0, "runtime": 116}, "10756": {"poster_path": "/gEAvUQ4357Fghaqthi7X3wK9Y9U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 182290266, "overview": "Workaholic Jim Evers, his wife/business partner Sara Evers get a call one night from a mansion owner named Edward Gracey wants to sell his house. Once the Evers family arrive at the mansion a butler named ramsley takes them to dine with Master Gracey. Master Gracey takes one look at Sara and he thinks she's his lost lover. The evers family are trapped in the mansion. Then the magic begins.", "video": false, "id": 10756, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "The Haunted Mansion", "tagline": "Check your pulse at the door... if you have one.", "vote_count": 100, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338094", "adult": false, "backdrop_path": "/8QYPReam3nKcowSxHKuQ4kFv6Dq.jpg", "production_companies": [{"name": "Doom Buggy Productions", "id": 47122}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Gunn Films", "id": 3538}], "release_date": "2003-11-25", "popularity": 1.05978510607133, "original_title": "The Haunted Mansion", "budget": 90000000, "cast": [{"name": "Eddie Murphy", "character": "Jim Evers", "id": 776, "credit_id": "52fe43af9251416c7501a30b", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Terence Stamp", "character": "Ramsley", "id": 28641, "credit_id": "52fe43af9251416c7501a30f", "cast_id": 2, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 1}, {"name": "Nathaniel Parker", "character": "Master Gracey", "id": 27631, "credit_id": "52fe43af9251416c7501a313", "cast_id": 3, "profile_path": "/w5SnRNxxY00lIDPB1SUh47nx46n.jpg", "order": 2}, {"name": "Marsha Thomason", "character": "Sara Evers", "id": 36219, "credit_id": "52fe43af9251416c7501a317", "cast_id": 4, "profile_path": "/idSdwvSs3f6U8WjjccVhvrxOY7l.jpg", "order": 3}, {"name": "Jennifer Tilly", "character": "Madame Leota", "id": 7906, "credit_id": "52fe43af9251416c7501a31b", "cast_id": 5, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 4}, {"name": "Dina Spybey-Waters", "character": "Emma", "id": 56567, "credit_id": "52fe43b09251416c7501a355", "cast_id": 15, "profile_path": "/rA6gMWarWOpxUCFsfYFz4Gcok7o.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Ezra", "id": 12900, "credit_id": "5347f60fc3a3686704001481", "cast_id": 16, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "Marc John Jefferies", "character": "Megan", "id": 62646, "credit_id": "54e9ec759251412eb4003e13", "cast_id": 19, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 9}, {"name": "Jim Doughan", "character": "Mr. Coleman", "id": 1219157, "credit_id": "54e9ec9ac3a36836ed00436e", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Rachael Harris", "character": "Mrs. Coleman", "id": 46074, "credit_id": "54e9ecc2c3a36836ed00437d", "cast_id": 21, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 11}, {"name": "Steve Hytner", "character": "Mr. Silverman", "id": 56576, "credit_id": "54e9ecd792514111b80034d5", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Aree Davis", "character": "Megan", "id": 1430209, "credit_id": "54e9ed0f9251412eb8003f77", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Heather Juergensen", "character": "Mrs. Silverman", "id": 89500, "credit_id": "54e9ed2592514111b80034db", "cast_id": 24, "profile_path": "/1S48eauaUgZTSn7uM1Mnm7U2i92.jpg", "order": 14}, {"name": "Jeremy Howard", "character": "Hitchhiking Ghost", "id": 15034, "credit_id": "54e9ed39925141117c0038a7", "cast_id": 25, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 15}, {"name": "Deep Roy", "character": "Hitchhiking Ghost", "id": 1295, "credit_id": "54e9ed4a9251412eb8003f7f", "cast_id": 26, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 16}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe43b09251416c7501a321", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 5.0, "runtime": 99}, "2567": {"poster_path": "/1cT3LP4pzZEQ0DLrEL8jdpA8NKd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102000000, "overview": "Martin Scorsese\u2019s Oscar-winning biopic about the life of film-maker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate while simultaneously growing more unstable due to severe obsessive-compulsive disorder. After a scene from 1914, which may explain his later fear of dirt and disease, the film starts in 1927 during Hughes' filming of the World War I aviation film \"Hell's Angels\". He's 22 years old, has inherited the family's fortune and tool company, but wants to spend his time making film instead. However, he soon finds himself just as involved in the aviation industry, buying an airline and developing new planes.", "video": false, "id": 2567, "genres": [{"id": 18, "name": "Drama"}], "title": "The Aviator", "tagline": "Imagine a life without limits", "vote_count": 338, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338751", "adult": false, "backdrop_path": "/kCnwpd8kfOmxH3qra2xnaPuJQn7.jpg", "production_companies": [{"name": "Initial Entertainment Group (IEG)", "id": 7380}, {"name": "Miramax Films", "id": 14}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Appian Way", "id": 562}, {"name": "Forward Pass", "id": 675}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}], "release_date": "2004-12-25", "popularity": 1.63017630829929, "original_title": "The Aviator", "budget": 116000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Howard Hughes", "id": 6193, "credit_id": "52fe435dc3a36847f804ed4b", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Katharine Hepburn", "id": 112, "credit_id": "52fe435dc3a36847f804ed4f", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Kate Beckinsale", "character": "Ava Gardner", "id": 3967, "credit_id": "52fe435dc3a36847f804ed57", "cast_id": 4, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 2}, {"name": "John C. Reilly", "character": "Noah Dietrich", "id": 4764, "credit_id": "52fe435dc3a36847f804ed53", "cast_id": 3, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 3}, {"name": "Alec Baldwin", "character": "Juan Trippe", "id": 7447, "credit_id": "52fe435dc3a36847f804ed5b", "cast_id": 5, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 4}, {"name": "Alan Alda", "character": "Senator Ralph Owen Brewster", "id": 21278, "credit_id": "52fe435dc3a36847f804ed5f", "cast_id": 6, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 5}, {"name": "Ian Holm", "character": "Professor Fitz", "id": 65, "credit_id": "52fe435dc3a36847f804ed63", "cast_id": 7, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 6}, {"name": "Jude Law", "character": "Errol Flynn", "id": 9642, "credit_id": "52fe435dc3a36847f804ed67", "cast_id": 8, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 7}, {"name": "Kelli Garner", "character": "Faith Domergue", "id": 17442, "credit_id": "52fe435dc3a36847f804ed6b", "cast_id": 9, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 8}, {"name": "Danny Huston", "character": "Jack Frye", "id": 6413, "credit_id": "52fe435dc3a36847f804ed6f", "cast_id": 11, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 9}, {"name": "Brent Spiner", "character": "Robert Gross", "id": 1213786, "credit_id": "52fe435dc3a36847f804edbb", "cast_id": 24, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 10}, {"name": "Willem Dafoe", "character": "Roland Sweet", "id": 5293, "credit_id": "537034510e0a2647d401365c", "cast_id": 25, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 11}, {"name": "Gwen Stefani", "character": "Jean Harlow", "id": 77070, "credit_id": "539c53ffc3a36810da002304", "cast_id": 33, "profile_path": "/3rXTUPjqPkSCGn5EgIinphBsXmm.jpg", "order": 12}, {"name": "Adam Scott", "character": "Johnny Meyer", "id": 36801, "credit_id": "539c5441c3a36810da002313", "cast_id": 34, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 13}, {"name": "Matt Ross", "character": "Glenn Odekirk", "id": 11154, "credit_id": "539c549cc3a36810e3002169", "cast_id": 35, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 14}, {"name": "Frances Conroy", "character": "Mrs. Hepburn", "id": 4432, "credit_id": "539c54f2c3a36810ba002324", "cast_id": 36, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 15}, {"name": "Stanley DeSantis", "character": "Louis B. Mayer", "id": 4171, "credit_id": "539c5561c3a36810b5002149", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Keith Campbell", "character": "Marine", "id": 15318, "credit_id": "53b9570dc3a3685eba00560f", "cast_id": 38, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 17}, {"name": "Amy Sloan", "character": "Howard Hughes's Mother", "id": 99185, "credit_id": "5496b2329251416e2b006084", "cast_id": 98, "profile_path": "/xFIc1V7BLHX1C4YMZXnPnp9S6gc.jpg", "order": 18}, {"name": "Kevin O'Rourke", "character": "Spencer Tracy", "id": 1218282, "credit_id": "5496b288c3a3686ae100658b", "cast_id": 99, "profile_path": "/bhvhxxlkVpZqraqfVJIhjGaVIuw.jpg", "order": 19}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe435dc3a36847f804ed75", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.5, "runtime": 170}, "10761": {"poster_path": "/b7w9BOieXq3qzwtOoXRUCNWc1Hz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84601681, "overview": "Tom and Hannah have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her \"maid\" of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her.", "video": false, "id": 10761, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Made of Honor", "tagline": "He'll do anything to get the groom out of the picture.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0866439", "adult": false, "backdrop_path": "/xBJkWoxwWwrtK4CQUzIGhUA8SDm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Original Film", "id": 333}], "release_date": "2008-05-02", "popularity": 1.25532205005232, "original_title": "Made of Honor", "budget": 40000000, "cast": [{"name": "Patrick Dempsey", "character": "Thomas 'Tom' Bailey", "id": 18352, "credit_id": "52fe43b19251416c7501a7f5", "cast_id": 23, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Hannah", "id": 11705, "credit_id": "52fe43b19251416c7501a7f9", "cast_id": 24, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Kevin McKidd", "character": "Colin McMurray", "id": 9013, "credit_id": "52fe43b19251416c7501a7fd", "cast_id": 25, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 2}, {"name": "Chris Messina", "character": "Dennis", "id": 61659, "credit_id": "52fe43b19251416c7501a801", "cast_id": 26, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 3}, {"name": "Richmond Arquette", "character": "Gary", "id": 7472, "credit_id": "52fe43b19251416c7501a805", "cast_id": 27, "profile_path": "/xW4bb2qsPYilO27ex4Xoy2Ik1Ai.jpg", "order": 4}, {"name": "Busy Philipps", "character": "Melissa", "id": 60928, "credit_id": "52fe43b19251416c7501a809", "cast_id": 28, "profile_path": "/uerCtOFqXQlbKG7FvjMDStD961y.jpg", "order": 5}, {"name": "Kadeem Hardison", "character": "Felix", "id": 66554, "credit_id": "52fe43b19251416c7501a813", "cast_id": 31, "profile_path": "/b3HZkM9wyEhXC1bE89bG7XRFtme.jpg", "order": 6}, {"name": "Whitney Cummings", "character": "Stephanie", "id": 66555, "credit_id": "52fe43b19251416c7501a81d", "cast_id": 33, "profile_path": "/ahpNleas5qmtfUEkulea2WFFFgn.jpg", "order": 7}, {"name": "Kathleen Quinlan", "character": "Joan", "id": 8183, "credit_id": "52fe43b19251416c7501a821", "cast_id": 34, "profile_path": "/qxEXUFX8LP7jAgLvB51S1lWB2zn.jpg", "order": 8}, {"name": "Sydney Pollack", "character": "Thomas Bailey Sr.", "id": 2226, "credit_id": "52fe43b19251416c7501a825", "cast_id": 35, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 9}, {"name": "Emily Nelson", "character": "Hilary", "id": 66556, "credit_id": "52fe43b19251416c7501a829", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "James Sikking", "character": "Reverend Foote", "id": 65568, "credit_id": "52fe43b29251416c7501a82d", "cast_id": 37, "profile_path": "/iNUO38duu0gW91PIOQk3ffxaqXz.jpg", "order": 11}, {"name": "Kevin Sussman", "character": "Tiny Shorts Guy", "id": 60633, "credit_id": "52fe43b29251416c7501a831", "cast_id": 38, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 12}, {"name": "Beau Garrett", "character": "Gloria", "id": 20403, "credit_id": "52fe43b29251416c7501a835", "cast_id": 39, "profile_path": "/eSnhComJ12wMk4PoMNpuoz7bTKO.jpg", "order": 13}, {"name": "Selma Stern", "character": "Grandma Pearl", "id": 66557, "credit_id": "52fe43b29251416c7501a839", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Kelly Carlson", "character": "Christie - Wife #6", "id": 56447, "credit_id": "52fe43b29251416c7501a83d", "cast_id": 41, "profile_path": "/39pX3ORNowOUhfnb7HfgiQJ5H7K.jpg", "order": 15}, {"name": "Lilly McDowell", "character": "Lingerie Salesgirl", "id": 66559, "credit_id": "52fe43b29251416c7501a841", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Corinne Reilly", "character": "Restaurant Hostess", "id": 66561, "credit_id": "52fe43b29251416c7501a845", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Craig Susser", "character": "Christie's Lawyer", "id": 66560, "credit_id": "52fe43b29251416c7501a849", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Christine Barger", "character": "Psycho Blogger", "id": 66558, "credit_id": "52fe43b29251416c7501a84d", "cast_id": 45, "profile_path": null, "order": 19}, {"name": "Sarah Mason", "character": "Sexy Blonde", "id": 131723, "credit_id": "52fe43b29251416c7501a857", "cast_id": 47, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 20}], "directors": [{"name": "Paul Weiland", "department": "Directing", "job": "Director", "credit_id": "52fe43b19251416c7501a7df", "profile_path": "/eTTmELMGFXFybc3Gl65jk6G71gn.jpg", "id": 66548}], "vote_average": 5.7, "runtime": 101}, "162903": {"poster_path": "/uIMI7d9DXe8uc5KzXnMFdmmEnNC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8555008, "overview": "A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website's growth and influence led to an irreparable rift between the two friends.", "video": false, "id": 162903, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Fifth Estate", "tagline": "You can't expose the world's secrets without exposing yourself.", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1837703", "adult": false, "backdrop_path": "/vgtjJhY0vgMWdPEQOoXBVDnSCDl.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Participant Media", "id": 6735}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2013-10-18", "popularity": 0.863949097274085, "original_title": "The Fifth Estate", "budget": 28000000, "cast": [{"name": "Benedict Cumberbatch", "character": "Julian Assange", "id": 71580, "credit_id": "52fe4c60c3a36847f822b10b", "cast_id": 1, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 0}, {"name": "Dan Stevens", "character": "Ian Katz", "id": 221018, "credit_id": "52fe4c60c3a36847f822b10f", "cast_id": 2, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 1}, {"name": "Daniel Br\u00fchl", "character": "Daniel Domscheit-Berg", "id": 3872, "credit_id": "52fe4c60c3a36847f822b113", "cast_id": 3, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "Anke Domscheit", "id": 227454, "credit_id": "52fe4c60c3a36847f822b117", "cast_id": 4, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Carice van Houten", "character": "Birgitta Jonsdottir", "id": 23229, "credit_id": "52fe4c60c3a36847f822b11b", "cast_id": 5, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 4}, {"name": "Peter Capaldi", "character": "Alan Rusbridger", "id": 12982, "credit_id": "52fe4c60c3a36847f822b11f", "cast_id": 6, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 5}, {"name": "Jamie Blackley", "character": "Ziggy", "id": 221985, "credit_id": "52fe4c60c3a36847f822b123", "cast_id": 7, "profile_path": "/AiRZjxoqNHh4pR7ngfwhLBvGe3F.jpg", "order": 6}, {"name": "Stanley Tucci", "character": "James Boswell", "id": 2283, "credit_id": "52fe4c60c3a36847f822b139", "cast_id": 11, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 7}, {"name": "Laura Linney", "character": "Sarah Shaw", "id": 350, "credit_id": "52fe4c60c3a36847f822b13d", "cast_id": 12, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 8}, {"name": "David Thewlis", "character": "Nick Davies", "id": 11207, "credit_id": "52fe4c60c3a36847f822b141", "cast_id": 13, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 9}, {"name": "Moritz Bleibtreu", "character": "Marcus", "id": 677, "credit_id": "52fe4c60c3a36847f822b163", "cast_id": 20, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 10}, {"name": "Alexander Beyer", "character": "Marcel Rosenbach", "id": 4796, "credit_id": "52fe4c60c3a36847f822b167", "cast_id": 21, "profile_path": "/krl8hF4VBmbizQuddEoG6KvDW0o.jpg", "order": 11}], "directors": [{"name": "Bill Condon", "department": "Directing", "job": "Director", "credit_id": "52fe4c60c3a36847f822b129", "profile_path": "/lMNARbVEd2VKcEZCBQwy1fPWWVG.jpg", "id": 15557}], "vote_average": 5.5, "runtime": 128}, "10764": {"poster_path": "/gXksXNwEk3h8tvSdhbsRp5GGJAk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 586090727, "overview": "Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr. White, who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.", "video": false, "id": 10764, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Quantum of Solace", "tagline": "For love, for hate, for justice, for revenge.", "vote_count": 1392, "homepage": "http://www.mgm.com/view/movie/234/Quantum-of-Solace/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0830515", "adult": false, "backdrop_path": "/hfZVY8lMiE7HH1cDc2qzSFF6Kbt.jpg", "production_companies": [{"name": "B22", "id": 22790}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Columbia Pictures", "id": 5}, {"name": "Eon Productions", "id": 7576}], "release_date": "2008-10-30", "popularity": 1.79033458541768, "original_title": "Quantum of Solace", "budget": 200000000, "cast": [{"name": "Daniel Craig", "character": "James Bond", "id": 8784, "credit_id": "52fe43b29251416c7501aa5d", "cast_id": 1, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Olga Kurylenko", "character": "Camille", "id": 18182, "credit_id": "52fe43b29251416c7501aab5", "cast_id": 17, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 1}, {"name": "Mathieu Amalric", "character": "Dominic Greene", "id": 8789, "credit_id": "52fe43b29251416c7501aab9", "cast_id": 18, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 2}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe43b29251416c7501aabd", "cast_id": 19, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Giancarlo Giannini", "character": "Ren\u00e9 Mathis", "id": 3753, "credit_id": "52fe43b29251416c7501aac1", "cast_id": 20, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 4}, {"name": "Gemma Arterton", "character": "Strawberry Fields", "id": 59620, "credit_id": "52fe43b39251416c7501aac5", "cast_id": 21, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "Felix Leiter", "id": 2954, "credit_id": "52fe43b39251416c7501aac9", "cast_id": 22, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "David Harbour", "character": "Gregg Beam", "id": 35029, "credit_id": "52fe43b39251416c7501aacd", "cast_id": 23, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 7}, {"name": "Jesper Christensen", "character": "Mr. White", "id": 2244, "credit_id": "52fe43b39251416c7501aad1", "cast_id": 24, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 8}, {"name": "Anatole Taubman", "character": "Elvis", "id": 62892, "credit_id": "52fe43b39251416c7501aad5", "cast_id": 25, "profile_path": "/ykaA067K1LYyERSGTM98qzSw2Rl.jpg", "order": 9}, {"name": "Rory Kinnear", "character": "Tanner", "id": 139549, "credit_id": "52fe43b39251416c7501aadf", "cast_id": 27, "profile_path": "/wfBmg2FVEDQCCFnjiTC3lhg1THP.jpg", "order": 10}, {"name": "Tim Pigott-Smith", "character": "Foreign Secretary", "id": 11276, "credit_id": "52fe43b39251416c7501aae3", "cast_id": 28, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 11}, {"name": "Joaqu\u00edn Cosio", "character": "General Medrano", "id": 76857, "credit_id": "52fe43b39251416c7501ab2f", "cast_id": 51, "profile_path": "/nRdZ0BNi8JOG7cJ10OTZeVmDxTE.jpg", "order": 12}, {"name": "Glenn Foster", "character": "Henry Mitchell", "id": 574355, "credit_id": "52fe43b39251416c7501aae7", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Paul Ritter", "character": "Guy Haines", "id": 52888, "credit_id": "52fe43b39251416c7501aaeb", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Stana Katic", "character": "Corinne Veneau", "id": 34408, "credit_id": "52fe43b39251416c7501aaef", "cast_id": 35, "profile_path": "/5Uv6wssCvAZfSTaXbiEiySQquHC.jpg", "order": 15}, {"name": "Lucrezia Lante della Rovere", "character": "Gemma", "id": 136290, "credit_id": "52fe43b39251416c7501aaf3", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Neil Jackson", "character": "Monsieur Slate", "id": 20289, "credit_id": "52fe43b39251416c7501aaf7", "cast_id": 37, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 17}, {"name": "Oona Chaplin", "character": "la r\u00e9ceptionniste de l'h\u00f4tel", "id": 566331, "credit_id": "52fe43b39251416c7501aafb", "cast_id": 38, "profile_path": "/25hiavig6bfXJ8DjLjbtIkM6mO1.jpg", "order": 18}, {"name": "Laurence Richardson", "character": "l'officier de police", "id": 473460, "credit_id": "52fe43b39251416c7501aaff", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Rachel McDowall", "character": "Anna", "id": 127000, "credit_id": "52fe43b39251416c7501ab03", "cast_id": 40, "profile_path": "/7nU3c5o386U1EMGJoMbLNtTKcv0.jpg", "order": 20}, {"name": "Gustavo Nanez", "character": "Un membre de Quantum", "id": 574361, "credit_id": "52fe43b39251416c7501ab07", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Mark Wakeling", "character": "Un agent du MI6", "id": 205222, "credit_id": "52fe43b39251416c7501ab0b", "cast_id": 42, "profile_path": "/jzhe2GqIv36Ekz0RIDMtE0AEJi4.jpg", "order": 22}, {"name": "Sarah Hadland", "character": "La r\u00e9ceptionniste \u00e0 l'Ocean Sky", "id": 62961, "credit_id": "52fe43b39251416c7501ab0f", "cast_id": 43, "profile_path": "/ze81FuL9Clxq2RFp7Bkvrcsj4Br.jpg", "order": 23}, {"name": "David Decio", "character": "Un agent du MI6 (non cr\u00e9dit\u00e9)", "id": 193339, "credit_id": "52fe43b39251416c7501ab13", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Aaron King", "character": "Un agent du MI6 (non cr\u00e9dit\u00e9)", "id": 424182, "credit_id": "52fe43b39251416c7501ab17", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Alexandra Prusa", "character": "Un membre de Quantum", "id": 574364, "credit_id": "52fe43b39251416c7501ab1b", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Brandon Jovanovich", "character": "Mario Cavaradossi", "id": 574365, "credit_id": "52fe43b39251416c7501ab1f", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Alexandre Krawetz", "character": "Spoletta", "id": 574367, "credit_id": "52fe43b39251416c7501ab23", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Fernando Guill\u00e9n Cuervo", "character": "Police Liutennant", "id": 149307, "credit_id": "52fe43b39251416c7501ab27", "cast_id": 49, "profile_path": "/jl5RYE2byiE9ScZ8rsvbz31f5NZ.jpg", "order": 29}, {"name": "Jes\u00fas Ochoa", "character": "Lieutenant Orso", "id": 69865, "credit_id": "52fe43b39251416c7501ab2b", "cast_id": 50, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 30}, {"name": "Simon Kassianides", "character": "Yusef", "id": 1234388, "credit_id": "52fe43b39251416c7501ab33", "cast_id": 52, "profile_path": "/3psuuKWeKuXGSoKtwcEM3QNNUMT.jpg", "order": 31}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe43b39251416c7501aadb", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.0, "runtime": 106}, "1995": {"poster_path": "/m6aodY7SrvlTRiUFkxClaNAIQT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 274703340, "overview": "English aristocrat Lara Croft is skilled in hand-to-hand combat and in the middle of a battle with a secret society. The shapely archaeologist moonlights as a tomb raider to recover lost antiquities and meets her match in the evil Powell, who's in search of a powerful relic.", "video": false, "id": 1995, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Lara Croft: Tomb Raider", "tagline": "Born into Wealth. Groomed by the Elite. Trained for Combat.", "vote_count": 846, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AbU9pTDqOhm670DNillEB9Cb8H6.jpg", "poster_path": "/sgaP4WtVlKzz8FIcjbkevOycJiq.jpg", "id": 2467, "name": "Tomb Raider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0146316", "adult": false, "backdrop_path": "/e6nQFLsLP60Erv41JE4QrsEgJbI.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mutual Film Company", "id": 762}, {"name": "British Broadcasting Corporation (BBC)", "id": 3324}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Marubeni", "id": 4650}, {"name": "Eidos Interactive", "id": 19105}, {"name": "Toho-Towa", "id": 657}], "release_date": "2001-06-11", "popularity": 1.51626970070652, "original_title": "Lara Croft: Tomb Raider", "budget": 115000000, "cast": [{"name": "Angelina Jolie", "character": "Lara Croft", "id": 11701, "credit_id": "52fe432ac3a36847f803f391", "cast_id": 12, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Jon Voight", "character": "Lord Croft", "id": 10127, "credit_id": "52fe432ac3a36847f803f395", "cast_id": 13, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Iain Glen", "character": "Powell", "id": 20508, "credit_id": "52fe432ac3a36847f803f399", "cast_id": 14, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 2}, {"name": "Noah Taylor", "character": "Bryce", "id": 1284, "credit_id": "52fe432ac3a36847f803f39d", "cast_id": 15, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Daniel Craig", "character": "Alex", "id": 8784, "credit_id": "52fe432ac3a36847f803f3a1", "cast_id": 16, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 4}, {"name": "Richard Johnson", "character": "Distinguished Gentleman", "id": 20510, "credit_id": "52fe432ac3a36847f803f3a9", "cast_id": 18, "profile_path": "/miDA5sN3ijfED6M4oRZ0NTdBfBR.jpg", "order": 5}, {"name": "Chris Barrie", "character": "Hillary", "id": 20511, "credit_id": "52fe432ac3a36847f803f3ad", "cast_id": 19, "profile_path": "/rN7P8WSCAEQ0hHWfaG1P7Em1spx.jpg", "order": 6}, {"name": "Julian Rhind-Tutt", "character": "Mr. Pimms", "id": 7031, "credit_id": "52fe432ac3a36847f803f3b5", "cast_id": 21, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 7}, {"name": "Leslie Phillips", "character": "Wilson", "id": 10655, "credit_id": "52fe432ac3a36847f803f3b9", "cast_id": 22, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 8}, {"name": "Robert Phillips", "character": "Assault Team Leader", "id": 20509, "credit_id": "52fe432ac3a36847f803f3a5", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Rachel Appleton", "character": "Young Lara", "id": 20512, "credit_id": "52fe432ac3a36847f803f3b1", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Henry Wyndham", "character": "Boothby's Auctioneer", "id": 1371446, "credit_id": "5431b9700e0a2658b2002750", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "David Cheung", "character": "Head Laborer (as David Y. Cheung)", "id": 1371452, "credit_id": "5431bac0c3a368117b00289f", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "David Tse", "character": "Head Laborer (as David K. S. Tse)", "id": 1013950, "credit_id": "5431ba83c3a36831bb003e85", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Ayla Amiral", "character": "Little Cambodian Girl", "id": 1371450, "credit_id": "5431b9a00e0a2658340027f4", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Ozzie Yue", "character": "Aged Buddhist Monk", "id": 1227314, "credit_id": "5431b9f0c3a3681143002704", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Wai-Keat Lau", "character": "Young Buddhist Monk", "id": 1371453, "credit_id": "5431baf4c3a36831ac003e3e", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Stephanie Burns", "character": "Little Inuit Girl", "id": 1371454, "credit_id": "5431bb02c3a36831a6003e9d", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Carl Chase", "character": "Ancient High Priest", "id": 127166, "credit_id": "5431bb1dc3a36831a6003ea7", "cast_id": 36, "profile_path": "/3HLdJB6ZQNi3DK4Ix9FXZ0a67K8.jpg", "order": 18}, {"name": "Richenda Carey", "character": "Imperious Woman", "id": 90764, "credit_id": "5431bb39c3a368117b0028b2", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Sylvano Clarke", "character": "UPS Guy", "id": 1371455, "credit_id": "5431bb470e0a265834002842", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Anna Maria Everett", "character": "Maid", "id": 129840, "credit_id": "5431bb840e0a264643003e98", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Olegar Fedoro", "character": "Russian Commander", "id": 69471, "credit_id": "5481d3659251416e6c005ade", "cast_id": 41, "profile_path": null, "order": 23}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe432ac3a36847f803f351", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.6, "runtime": 100}, "117263": {"poster_path": "/a2r2mvky2D5QCyYLdu2c3A4LOmb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161025640, "overview": "When the White House (Secret Service Code: \"Olympus\") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.", "video": false, "id": 117263, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Olympus Has Fallen", "tagline": "When our flag falls our nation will rise.", "vote_count": 1816, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt2302755", "adult": false, "backdrop_path": "/lxbMXD12UCj7kMgfqjaZq5irGAu.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Films", "id": 925}], "release_date": "2013-03-22", "popularity": 1.671184372544, "original_title": "Olympus Has Fallen", "budget": 70000000, "cast": [{"name": "Gerard Butler", "character": "Mike Banning", "id": 17276, "credit_id": "52fe4bafc3a36847f820f645", "cast_id": 7, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "President Benjamin Asher", "id": 6383, "credit_id": "52fe4bafc3a36847f820f649", "cast_id": 8, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Angela Bassett", "character": "Lynne Jacobs", "id": 9780, "credit_id": "52fe4bafc3a36847f820f64d", "cast_id": 9, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "Speaker Trumbull", "id": 192, "credit_id": "52fe4bafc3a36847f820f669", "cast_id": 14, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Radha Mitchell", "character": "Leah", "id": 8329, "credit_id": "52fe4bafc3a36847f820f66d", "cast_id": 15, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 4}, {"name": "Rick Yune", "character": "Kang", "id": 10883, "credit_id": "52fe4bafc3a36847f820f671", "cast_id": 16, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 5}, {"name": "Dylan McDermott", "character": "Forbes", "id": 32597, "credit_id": "52fe4bafc3a36847f820f68d", "cast_id": 23, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 6}, {"name": "Finley Jacobsen", "character": "Connor", "id": 965819, "credit_id": "52fe4bafc3a36847f820f6c9", "cast_id": 35, "profile_path": "/4dEyL8uoHqf8lqDjPwW2QqRR25q.jpg", "order": 7}, {"name": "Tory Kittles", "character": "Jones", "id": 62645, "credit_id": "52fe4bafc3a36847f820f67d", "cast_id": 19, "profile_path": "/jlR3xLuJug176VllNLgyZGvozhz.jpg", "order": 8}, {"name": "Shanna Forrestall", "character": "Mary Jane", "id": 120251, "credit_id": "52fe4bafc3a36847f820f681", "cast_id": 20, "profile_path": "/3obLXjztke735vaes6XAdP0o1P8.jpg", "order": 9}, {"name": "Melissa Leo", "character": "Secretary of Defense Ruth McMillan", "id": 6832, "credit_id": "52fe4bafc3a36847f820f685", "cast_id": 21, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 10}, {"name": "Cole Hauser", "character": "Roma", "id": 6614, "credit_id": "52fe4bafc3a36847f820f689", "cast_id": 22, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 11}, {"name": "Phil Austin", "character": "Vice President Charlie Rodriguez", "id": 92058, "credit_id": "52fe4bafc3a36847f820f691", "cast_id": 24, "profile_path": "/gZfvR7jJCqYx64Y6QWdizQXsx3j.jpg", "order": 12}, {"name": "Robert Forster", "character": "General Edward Clegg", "id": 5694, "credit_id": "52fe4bafc3a36847f820f695", "cast_id": 25, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 13}, {"name": "Ashley Judd", "character": "Margaret Asher", "id": 15852, "credit_id": "52fe4bafc3a36847f820f6a1", "cast_id": 28, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 14}, {"name": "Han Soto", "character": "Dr. Guildes", "id": 1116011, "credit_id": "52fe4bafc3a36847f820f679", "cast_id": 18, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 15}, {"name": "Shane Land", "character": "Davis", "id": 1116009, "credit_id": "52fe4bafc3a36847f820f675", "cast_id": 17, "profile_path": "/afIMN6FiokAsFwodpFGsux9C5Ka.jpg", "order": 16}, {"name": "Sam Medina", "character": "Yu", "id": 1044954, "credit_id": "52fe4bafc3a36847f820f699", "cast_id": 26, "profile_path": "/5erle4K8m7QbK8ITKnY7F4PMMAp.jpg", "order": 17}, {"name": "Malana Lea", "character": "Lim", "id": 1024143, "credit_id": "52fe4bafc3a36847f820f69d", "cast_id": 27, "profile_path": "/k9h1UOg1HOhTI9vFrd5Fc50W802.jpg", "order": 18}, {"name": "Keong Sim", "character": "Lee Tae-Woo", "id": 164102, "credit_id": "52fe4bafc3a36847f820f6cd", "cast_id": 36, "profile_path": "/umyWpw8M18I6WsBWuRXWUtw4b2d.jpg", "order": 19}, {"name": "Arden Cho", "character": "Korean Sniper", "id": 144279, "credit_id": "52ff367e9251417cd913e1eb", "cast_id": 41, "profile_path": "/pqMreu71EYEo2QeLkZ2Q33KvnLl.jpg", "order": 20}, {"name": "Michael Dudikoff", "character": "Mr. Smith (uncredited)", "id": 21259, "credit_id": "53dbc1cac3a368432a0000c0", "cast_id": 42, "profile_path": "/oUsn5aUJ4f9V4a5mcucTVbQMRj1.jpg", "order": 21}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe4bafc3a36847f820f62f", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.1, "runtime": 120}, "43539": {"poster_path": "/odZECgJpQSUUK1tOMrkT7LWxSkI.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51148651, "overview": "A married couple's life is turned upside down when the wife is accused of a murder. Lara Brennan is arrested for murdering her boss with whom she had an argument. It seems she was seen leaving the scene of the crime and her fingerprints were on the murder weapon. Her husband, John would spend the next few years trying to get her released, but there's no evidence that negates the evidence against her. And when the strain of being separated from her family, especially her son, gets to her, John decides to break her out. So he does a lot of research to find a way.", "video": false, "id": 43539, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Next Three Days", "tagline": "What if you had 72 hours to save everything you live for?", "vote_count": 309, "homepage": "http://www.thenextthreedaysmovie.com/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1458175", "adult": false, "backdrop_path": "/cGB5Z26ooEFwYdf3fEMZ71RuHGU.jpg", "production_companies": [{"name": "Hwy61", "id": 6320}, {"name": "Lionsgate", "id": 1632}, {"name": "Fid\u00e9lit\u00e9 Films", "id": 2927}], "release_date": "2010-11-19", "popularity": 1.06215819664124, "original_title": "The Next Three Days", "budget": 30000000, "cast": [{"name": "Russell Crowe", "character": "John Brennan", "id": 934, "credit_id": "52fe464fc3a36847f80f819b", "cast_id": 20, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Brian Dennehy", "character": "George Brennan", "id": 6197, "credit_id": "52fe464fc3a36847f80f817b", "cast_id": 11, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 1}, {"name": "RZA", "character": "Mouss", "id": 150, "credit_id": "52fe464fc3a36847f80f817f", "cast_id": 12, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 2}, {"name": "Moran Atias", "character": "Erit", "id": 84261, "credit_id": "52fe464fc3a36847f80f8183", "cast_id": 13, "profile_path": "/3PBK2kfcqXI5POh9yGWX6Z5BXty.jpg", "order": 3}, {"name": "Jason Beghe", "character": "Detective Quinn", "id": 37203, "credit_id": "52fe464fc3a36847f80f8187", "cast_id": 14, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 4}, {"name": "Nazanin Boniadi", "character": "Elaine", "id": 142213, "credit_id": "52fe464fc3a36847f80f818b", "cast_id": 15, "profile_path": "/eo5kuNvxk1Ve9pjetcIb3tzIECV.jpg", "order": 5}, {"name": "Tyrone Giordano", "character": "Mike", "id": 142215, "credit_id": "52fe464fc3a36847f80f818f", "cast_id": 16, "profile_path": "/wQ7zXkauiSOI8TgULlrlCCPsBLD.jpg", "order": 6}, {"name": "Ty Simpkins", "character": "Luke", "id": 17181, "credit_id": "52fe464fc3a36847f80f8193", "cast_id": 17, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 7}, {"name": "Patrick Brennan", "character": "Security Gaurd", "id": 76022, "credit_id": "52fe464fc3a36847f80f8197", "cast_id": 18, "profile_path": "/2qmf0YHd1eipphiG1XCcfiKLPSY.jpg", "order": 8}, {"name": "Elizabeth Banks", "character": "Lara", "id": 9281, "credit_id": "52fe464fc3a36847f80f819f", "cast_id": 21, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 9}, {"name": "Olivia Wilde", "character": "Nicole", "id": 59315, "credit_id": "52fe464fc3a36847f80f81a3", "cast_id": 22, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 10}, {"name": "Liam Neeson", "character": "Damon", "id": 3896, "credit_id": "52fe464fc3a36847f80f81a7", "cast_id": 23, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 11}, {"name": "Jonathan Tucker", "character": "David", "id": 17243, "credit_id": "52fe464fc3a36847f80f81ab", "cast_id": 24, "profile_path": "/jvJpYDbwmUTACw7Yn7PKOP6CdlJ.jpg", "order": 12}, {"name": "Lennie James", "character": "Lieutenant Nabulsi", "id": 1120, "credit_id": "52fe464fc3a36847f80f81af", "cast_id": 25, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 13}, {"name": "Michael Buie", "character": "Mick Brennan", "id": 85812, "credit_id": "52fe464fc3a36847f80f81b3", "cast_id": 26, "profile_path": "/bbOL5cofgLQFm8SF7JW0D0d8lqz.jpg", "order": 14}, {"name": "Helen Carey", "character": "Grace Brennan", "id": 17185, "credit_id": "52fe464fc3a36847f80f81b7", "cast_id": 27, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 15}], "directors": [{"name": "Paul Haggis", "department": "Directing", "job": "Director", "credit_id": "52fe464fc3a36847f80f8165", "profile_path": "/v2MadHJVrBAv0tEgs9H9PJ9y50z.jpg", "id": 455}], "vote_average": 6.7, "runtime": 133}, "10774": {"poster_path": "/nFovf0eUlbdGRqjdxETFunUAtI0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23689877, "overview": "A TV network cynically exploits a deranged ex-TV anchor's ravings and revelations about the media for their own profit.", "video": false, "id": 10774, "genres": [{"id": 18, "name": "Drama"}], "title": "Network", "tagline": "Not since the dawn of time has America experienced a man like Howard Beale!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074958", "adult": false, "backdrop_path": "/cD3uUR1xEOB856YUlNxWYJwkuil.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "United Artists", "id": 60}], "release_date": "1976-11-14", "popularity": 0.797047746244591, "original_title": "Network", "budget": 3800000, "cast": [{"name": "Faye Dunaway", "character": "Diana Christensen", "id": 6450, "credit_id": "52fe43b49251416c7501aee3", "cast_id": 1, "profile_path": "/qXbFT4RBkxVW4DRBO9HhDos5Xpa.jpg", "order": 0}, {"name": "William Holden", "character": "Max Schumacher", "id": 8252, "credit_id": "52fe43b49251416c7501aee7", "cast_id": 2, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 1}, {"name": "Peter Finch", "character": "Howard Beale", "id": 29903, "credit_id": "52fe43b49251416c7501aeeb", "cast_id": 3, "profile_path": "/rfG6zneBXQJxFxez865nlSt5ExM.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Frank Hackett", "id": 3087, "credit_id": "52fe43b49251416c7501aeef", "cast_id": 4, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "Wesley Addy", "character": "Nelson Chaney", "id": 66712, "credit_id": "52fe43b49251416c7501aef3", "cast_id": 5, "profile_path": "/qc8DGqS0pZJon3cVgDl3jVzW4SU.jpg", "order": 4}, {"name": "Ned Beatty", "character": "Arthur Jensen", "id": 13726, "credit_id": "52fe43b49251416c7501aef7", "cast_id": 6, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 5}, {"name": "Arthur Burghardt", "character": "Great Ahmed Kahn", "id": 66713, "credit_id": "52fe43b49251416c7501aefb", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Conchata Ferrell", "character": "Barbara Schlesinger", "id": 1909, "credit_id": "52fe43b49251416c7501aeff", "cast_id": 8, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 7}, {"name": "Jerome Dempsey", "character": "Walter C. Amundsen", "id": 192660, "credit_id": "52fe43b49251416c7501af45", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Ed Crowley", "character": "Joe Donnelly", "id": 554628, "credit_id": "52fe43b49251416c7501af49", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Kathy Cronkite", "character": "Mary Ann Gifford", "id": 949374, "credit_id": "52fe43b49251416c7501af4d", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Beatrice Straight", "character": "Louise Schumacher", "id": 10083, "credit_id": "52fe43b49251416c7501af51", "cast_id": 24, "profile_path": "/e88n8bvcpLTz6Tz1VYhccFsov7r.jpg", "order": 11}, {"name": "Marlene Warfield", "character": "Laureen Hobbs", "id": 156603, "credit_id": "52fe43b49251416c7501af55", "cast_id": 25, "profile_path": "/yvcOO9xdkNEMQ0ZLJKvs7Fey8Mv.jpg", "order": 12}, {"name": "William Prince", "character": "Edward George Ruddy", "id": 46099, "credit_id": "52fe43b49251416c7501af59", "cast_id": 26, "profile_path": "/qVGGOidsbebFUep7tPVmCqnldUB.jpg", "order": 13}, {"name": "Darryl Hickman", "character": "Bill Herron", "id": 81481, "credit_id": "52fe43b49251416c7501af5d", "cast_id": 27, "profile_path": "/bRMxUW00nvYWJZf2X0k09i2tjyz.jpg", "order": 14}, {"name": "Ken Kercheval", "character": "Merrill Grant", "id": 41350, "credit_id": "52fe43b49251416c7501af61", "cast_id": 28, "profile_path": "/yCA5BNAXdt9nIplmzhaVwEO7BKB.jpg", "order": 15}, {"name": "Ted Sorel", "character": "Giannini", "id": 99036, "credit_id": "52fe43b49251416c7501af65", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Lane Smith", "character": "Robert McDonough", "id": 65019, "credit_id": "52fe43b49251416c7501af69", "cast_id": 30, "profile_path": "/js7GonfBVNHLYhaB0Xjtnm93DpH.jpg", "order": 17}, {"name": "Cindy Grover", "character": "Caroline Schumacher", "id": 1026534, "credit_id": "52fe43b49251416c7501af6d", "cast_id": 31, "profile_path": null, "order": 18}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe43b49251416c7501af1d", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 7.4, "runtime": 121}, "10775": {"poster_path": "/6v86wopD9NQf9Hj0e3jXKcL5zTG.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Chan Wing Yan, a young police officer, has been sent undercover as a mole in the local mafia. Lau Kin Ming, a young mafia member, infiltrates the police force. Years later, their older counterparts, Chen Wing Yan and Inspector Lau Kin Ming, respectively, race against time to expose the mole within their midst.", "video": false, "id": 10775, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Infernal Affairs", "tagline": "Loyalty. Honor. Betrayal.", "vote_count": 208, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ieW4mJg2C3HYBWSUM8lElbf9s6D.jpg", "poster_path": "/dE6QUGhmVYxqKNaWl23dfevArUL.jpg", "id": 58588, "name": "Infernal Affairs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0338564", "adult": false, "backdrop_path": "/u7OoqcZzOIL6VXD9JZ5EOSTLt6p.jpg", "production_companies": [{"name": "Media Asia Films", "id": 5552}], "release_date": "2002-12-12", "popularity": 1.01557060815773, "original_title": "\u7121\u9593\u9053", "budget": 0, "cast": [{"name": "Andy Lau", "character": "Inspector Lau Kin Ming", "id": 25246, "credit_id": "52fe43b59251416c7501aff5", "cast_id": 25, "profile_path": "/ukyTNTiGM8vnHynIy9JBaI9XDaN.jpg", "order": 0}, {"name": "Tony Leung Chiu-Wai", "character": "Chan Wing Yan", "id": 1337, "credit_id": "52fe43b59251416c7501afed", "cast_id": 23, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 1}, {"name": "Anthony Wong", "character": "Superintendent Wong Chi Shing", "id": 66717, "credit_id": "52fe43b49251416c7501afa3", "cast_id": 2, "profile_path": "/pCwuQUam6Xy8AhFddQFKYa74xGQ.jpg", "order": 2}, {"name": "Eric Tsang", "character": "Hon Sam", "id": 26724, "credit_id": "52fe43b49251416c7501afa7", "cast_id": 3, "profile_path": "/xJJZEKanRVgB7u5G3Fg7Xj9Fuoz.jpg", "order": 3}, {"name": "Kelly Chen", "character": "Dr. Lee Sum Yee", "id": 72730, "credit_id": "52fe43b59251416c7501afdd", "cast_id": 17, "profile_path": "/28xxkZIYFPGjo8uYKJvH0ZN4soC.jpg", "order": 4}, {"name": "Sammi Cheng", "character": "Mary", "id": 86318, "credit_id": "52fe43b59251416c7501aff1", "cast_id": 24, "profile_path": "/20LQ1NDgyKCU6u16SmRwpVPkgxb.jpg", "order": 5}, {"name": "Edison Chen", "character": "Lau Kin Ming (young)", "id": 20372, "credit_id": "52fe43b59251416c7501afd9", "cast_id": 16, "profile_path": "/MjNMCwLuknzhgKr2H99s6iaWpp.jpg", "order": 6}, {"name": "Shawn Yue", "character": "Chan Wing Yan (young)", "id": 78869, "credit_id": "52fe43b59251416c7501afd5", "cast_id": 15, "profile_path": "/vUqHw9944ZBN8MBuQ2QN6qDVNOd.jpg", "order": 7}, {"name": "Elva Hsiao", "character": "May", "id": 236115, "credit_id": "52fe43b59251416c7501afe1", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Chapman To", "character": "'Crazy' Tsui Wai Keung", "id": 118742, "credit_id": "52fe43b59251416c7501afe5", "cast_id": 20, "profile_path": "/mq5pyx9q9Lkzq2rHbHG98GypOf3.jpg", "order": 9}, {"name": "Dion Lam", "character": "Del Piero", "id": 236116, "credit_id": "52fe43b59251416c7501afe9", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Gordon Lam Ka-Tung", "character": "Inspector B", "id": 83820, "credit_id": "52fe43b59251416c7501afff", "cast_id": 27, "profile_path": "/oG1viIlfpK4MXaPQSqJwJSi5u1M.jpg", "order": 11}, {"name": "Wan Chi-keung", "character": "Officer Leung", "id": 1000109, "credit_id": "52fe43b59251416c7501b003", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Berg Ng Ting-Yip", "character": "Senior Inspector Cheung", "id": 1139045, "credit_id": "53e159cd0e0a266dea0000cb", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Tony Ho Wah-Chiu", "character": "", "id": 586484, "credit_id": "548743b6c3a368581b00011e", "cast_id": 31, "profile_path": "/3QO0ZJEsEg1U5LZQhzvx0m8Jpya.jpg", "order": 14}], "directors": [{"name": "Alan Mak", "department": "Directing", "job": "Director", "credit_id": "52fe43b49251416c7501afad", "profile_path": "/rfBFhpcCfRvDnqKYPdtXgiM7iOL.jpg", "id": 66718}, {"name": "Andrew Lau Wai-Keung", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501afb9", "profile_path": "/7jPFuUNPJp09XKPRBjudYy6TIRx.jpg", "id": 65994}], "vote_average": 7.6, "runtime": 101}, "10776": {"poster_path": "/kvCeLFleENrOSNpuJreUltm4cF3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Seymour Krelborn is a nerdy orphan working at Mushnik's, a flower shop in urban Skid Row. He harbors a crush on fellow co-worker Audrey Fulquard, and is berated by Mr. Mushnik daily. One day as Seymour is seeking a new mysterious plant, he finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.", "video": false, "id": 10776, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 10402, "name": "Music"}], "title": "Little Shop of Horrors", "tagline": "Don't feed the plants.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091419", "adult": false, "backdrop_path": "/kGOuFe4EJKBcgj4VPodYTFuDAFY.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Geffen Company, The", "id": 4354}], "release_date": "1986-12-19", "popularity": 0.878479836803738, "original_title": "Little Shop of Horrors", "budget": 0, "cast": [{"name": "Rick Moranis", "character": "Seymour Krelborn", "id": 8872, "credit_id": "52fe43b59251416c7501b051", "cast_id": 8, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 0}, {"name": "Ellen Greene", "character": "Audrey", "id": 13420, "credit_id": "52fe43b59251416c7501b055", "cast_id": 9, "profile_path": "/1EHwrl4PzPJzVbheXoqW6uzhMos.jpg", "order": 1}, {"name": "Vincent Gardenia", "character": "Mr. Mushnik", "id": 14830, "credit_id": "52fe43b59251416c7501b059", "cast_id": 10, "profile_path": "/g7iwqHaaIKh5lSTW39pXT0OOXVC.jpg", "order": 2}, {"name": "Steve Martin", "character": "Orin Scrivello, DDS", "id": 67773, "credit_id": "52fe43b59251416c7501b05d", "cast_id": 11, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 3}, {"name": "Tisha Campbell-Martin", "character": "Chiffon", "id": 141823, "credit_id": "52fe43b59251416c7501b061", "cast_id": 12, "profile_path": "/8nfymZ8Ohi7P5mNGOMddRmm5pgF.jpg", "order": 4}, {"name": "Levi Stubbs", "character": "Audrey II (Voice)", "id": 218028, "credit_id": "52fe43b59251416c7501b065", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "John Candy", "character": "Wink Wilkinson", "id": 7180, "credit_id": "52fe43b59251416c7501b069", "cast_id": 14, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 6}, {"name": "Bill Murray", "character": "Arthur Denton", "id": 1532, "credit_id": "52fe43b59251416c7501b06d", "cast_id": 15, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 7}, {"name": "Miriam Margolyes", "character": "Dental Nurse", "id": 6199, "credit_id": "530711f6c3a3685181000043", "cast_id": 16, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 8}, {"name": "James Belushi", "character": "Partick Martin", "id": 26485, "credit_id": "54091885c3a36812cd000992", "cast_id": 17, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 9}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b029", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.2, "runtime": 94}, "10778": {"poster_path": "/52sWHVCpMEba2mXT8OHg2WYlp2w.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A tale of passion, crime and punishment set in the summer of 1949. Ed Crane, a barber in a small California town, is dissatisfied with his life, but his wife Doris' infidelity presents him with a chance to change it.", "video": false, "id": 10778, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Man Who Wasn't There", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243133", "adult": false, "backdrop_path": "/lDhsA4edjDf5ZZHQFTrn5pgOpEN.jpg", "production_companies": [{"name": "The KL Line", "id": 4378}], "release_date": "2001-05-13", "popularity": 1.028736054009, "original_title": "The Man Who Wasn't There", "budget": 0, "cast": [{"name": "Billy Bob Thornton", "character": "Ed Crane", "id": 879, "credit_id": "52fe43b59251416c7501b0cf", "cast_id": 11, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Doris Crane", "id": 3910, "credit_id": "52fe43b59251416c7501b0d3", "cast_id": 12, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Michael Badalucco", "character": "Frank", "id": 1010, "credit_id": "52fe43b59251416c7501b0d7", "cast_id": 13, "profile_path": "/oK2pSu2FWyrwiPEch7Tux2GSMbK.jpg", "order": 2}, {"name": "James Gandolfini", "character": "Big Dave Brewster", "id": 4691, "credit_id": "52fe43b59251416c7501b0db", "cast_id": 14, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Birdy Abundas", "id": 1245, "credit_id": "52fe43b59251416c7501b0e5", "cast_id": 16, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Jon Polito", "character": "Creighton Tolliver", "id": 4253, "credit_id": "52fe43b59251416c7501b0e9", "cast_id": 17, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 5}, {"name": "Richard Jenkins", "character": "Walter Abundas", "id": 28633, "credit_id": "52fe43b59251416c7501b0ed", "cast_id": 18, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 6}, {"name": "Tony Shalhoub", "character": "Freddy Riedenschneider", "id": 4252, "credit_id": "52fe43b59251416c7501b0f1", "cast_id": 19, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 7}, {"name": "Gregg Binkley", "character": "The New Man", "id": 170185, "credit_id": "52fe43b59251416c7501b0f5", "cast_id": 20, "profile_path": "/gTmsOFfFqHDcEzeqh3ezcSuk7TB.jpg", "order": 8}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b09b", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b0a7", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.3, "runtime": 116}, "10779": {"poster_path": "/cS3QPtMsE1jsEWUww5WsPE275Jb.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16524115, "overview": "After a car accident in which his wife, Debra, was killed and he was injured, Frank Bannister develops psychic abilities allowing him to see, hear, and communicate with ghosts.", "video": false, "id": 10779, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "The Frighteners", "tagline": "No Rest for the Wicked.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116365", "adult": false, "backdrop_path": "/tUjjDjFRLIXS0298EnskwskTA23.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1996-07-18", "popularity": 0.846200293164372, "original_title": "The Frighteners", "budget": 30000000, "cast": [{"name": "Michael J. Fox", "character": "Frank Bannister", "id": 521, "credit_id": "52fe43b59251416c7501b163", "cast_id": 10, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Jeffrey Combs", "character": "Milton Dammers", "id": 27993, "credit_id": "52fe43b59251416c7501b167", "cast_id": 11, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 1}, {"name": "Jake Busey", "character": "Johnny Charles Bartlett", "id": 28410, "credit_id": "52fe43b59251416c7501b16b", "cast_id": 12, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 2}, {"name": "Chi McBride", "character": "Cyrus", "id": 8687, "credit_id": "52fe43b59251416c7501b16f", "cast_id": 13, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 3}, {"name": "Trini Alvarado", "character": "Dr. Lucy Lynskey", "id": 17187, "credit_id": "52fe43b59251416c7501b173", "cast_id": 14, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 4}, {"name": "Peter Dobson", "character": "Ray Lynskey", "id": 37822, "credit_id": "52fe43b59251416c7501b177", "cast_id": 15, "profile_path": "/3laM5gryWnG2tfjE2jt0UuPTFlp.jpg", "order": 5}, {"name": "John Astin", "character": "The Judge", "id": 41230, "credit_id": "52fe43b59251416c7501b17b", "cast_id": 16, "profile_path": "/thWruW63AhnJUiQu4hcqi600dNH.jpg", "order": 6}, {"name": "Jim Fyfe", "character": "Stuart", "id": 101776, "credit_id": "52fe43b59251416c7501b17f", "cast_id": 18, "profile_path": "/iLZ3CQRRebc0nqIPufgnuYliKjq.jpg", "order": 7}, {"name": "Troy Evans", "character": "Sheriff Walt Perry", "id": 31006, "credit_id": "52fe43b59251416c7501b183", "cast_id": 19, "profile_path": "/74r7ajwva1F0yd6moWljQFfqnnR.jpg", "order": 8}, {"name": "Julianna McCarthy", "character": "Old Lady Bradley", "id": 101777, "credit_id": "52fe43b59251416c7501b187", "cast_id": 20, "profile_path": "/tJJJJUjXRlTgLxVZViQ2MPPs5ai.jpg", "order": 9}, {"name": "R. Lee Ermey", "character": "Sgt. Hiles", "id": 8655, "credit_id": "52fe43b59251416c7501b18b", "cast_id": 21, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 10}, {"name": "Elizabeth Hawthorne", "character": "Magda Rees-Jones", "id": 5533, "credit_id": "52fe43b59251416c7501b18f", "cast_id": 22, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 11}, {"name": "Melanie Lynskey", "character": "Deputy", "id": 15091, "credit_id": "52fe43b59251416c7501b193", "cast_id": 23, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 12}, {"name": "Stuart Devenie", "character": "Museum Curator", "id": 81876, "credit_id": "52fe43b59251416c7501b197", "cast_id": 24, "profile_path": "/24ULaHp8antJCog28T59tJByJZ1.jpg", "order": 13}, {"name": "Leslie Wing", "character": "Mrs. Waterhouse", "id": 101778, "credit_id": "52fe43b59251416c7501b19b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Dee Wallace", "character": "Patricia Ann Bradley", "id": 62001, "credit_id": "52fe43b59251416c7501b19f", "cast_id": 26, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 15}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b12f", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.5, "runtime": 110}, "10780": {"poster_path": "/7OfQM3VRp6UljUjeZCOEMxi009z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26713187, "overview": "Heiress Joanna Stayton hires carpenter Dean Proffitt to build a closet on her yacht -- and refuses to pay him for the project when it's done. But after Joanna accidentally falls overboard and loses her memory, Dean sees an opportunity to get even.", "video": false, "id": 10780, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Overboard", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093693", "adult": false, "backdrop_path": "/kyu7WKqnwXCly03KPmo3OQY8Kjq.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Star Partners II Ltd.", "id": 206}], "release_date": "1987-12-16", "popularity": 0.658851909548755, "original_title": "Overboard", "budget": 1880006, "cast": [{"name": "Goldie Hawn", "character": "Joanna Stayton", "id": 18892, "credit_id": "52fe43b59251416c7501b1f5", "cast_id": 9, "profile_path": "/dIwbk78Ult7xTyN4Z4B53bfN8Cx.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Dean Proffitt", "id": 6856, "credit_id": "52fe43b59251416c7501b1f9", "cast_id": 10, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Edward Herrmann", "character": "Grant Stayton III", "id": 52995, "credit_id": "52fe43b59251416c7501b1fd", "cast_id": 11, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 2}, {"name": "Katherine Helmond", "character": "Edith Mintz", "id": 381, "credit_id": "52fe43b69251416c7501b201", "cast_id": 12, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 3}, {"name": "Mike Hagerty", "character": "Billy Pratt", "id": 15105, "credit_id": "52fe43b69251416c7501b205", "cast_id": 13, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 4}, {"name": "Roddy McDowall", "character": "Andrew", "id": 7505, "credit_id": "52fe43b69251416c7501b209", "cast_id": 14, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 5}, {"name": "Jared Rushton", "character": "Charlie Proffitt", "id": 57422, "credit_id": "52fe43b69251416c7501b20d", "cast_id": 15, "profile_path": "/qbyP9UM7xHEFyrop3XKgb26V55q.jpg", "order": 6}, {"name": "Jamie Wild", "character": "Greg Proffitt", "id": 1037633, "credit_id": "52fe43b69251416c7501b211", "cast_id": 16, "profile_path": null, "order": 7}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43b59251416c7501b1c7", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 6.8, "runtime": 106}, "43549": {"poster_path": "/kW6vfjG2HnXj3kaBMu2BRLkRlkq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "20 men are chosen to participate in the roles of guards and prisoners in a psychological study that ultimately spirals out of control.", "video": false, "id": 43549, "genres": [{"id": 18, "name": "Drama"}], "title": "The Experiment", "tagline": "They never imagined it would go this far.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0997152", "adult": false, "backdrop_path": "/tvKHINCvEhLjFlY8eSOtgB92iS.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Tax Credit Finance", "id": 3782}, {"name": "Inferno Entertainment", "id": 13648}, {"name": "Cinedigm", "id": 20659}, {"name": "Magnet Media Productions", "id": 22545}, {"name": "Magnet Media Group", "id": 22546}, {"name": "Adelstein-Parouse Productions", "id": 22548}, {"name": "Mercator Pictures", "id": 22549}, {"name": "Natural Selection", "id": 22550}, {"name": "Westeast Films", "id": 22551}], "release_date": "2010-07-15", "popularity": 0.584285756178896, "original_title": "The Experiment", "budget": 21800000, "cast": [{"name": "Forest Whitaker", "character": "Barris", "id": 2178, "credit_id": "52fe4650c3a36847f80f847f", "cast_id": 2, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Cam Gigandet", "character": "Chase", "id": 55086, "credit_id": "52fe4650c3a36847f80f8483", "cast_id": 3, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 2}, {"name": "Adrien Brody", "character": "Travis", "id": 3490, "credit_id": "52fe4650c3a36847f80f8499", "cast_id": 7, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 3}, {"name": "Maggie Grace", "character": "Kelly", "id": 11825, "credit_id": "52fe4650c3a36847f80f849d", "cast_id": 8, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 4}, {"name": "Clifton Collins, Jr.", "character": "Nix", "id": 5365, "credit_id": "52fe4650c3a36847f80f84a1", "cast_id": 9, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 5}, {"name": "Ethan Cohn", "character": "Benji", "id": 63280, "credit_id": "52fe4650c3a36847f80f84a5", "cast_id": 10, "profile_path": "/l95OAzSrCvol5kEdR1nfC2CMLMx.jpg", "order": 6}, {"name": "Fisher Stevens", "character": "Archaleta", "id": 26473, "credit_id": "535f9963c3a3683099006861", "cast_id": 13, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 9}, {"name": "Travis Fimmel", "character": "Helweg", "id": 77700, "credit_id": "535f9992c3a36830a00065be", "cast_id": 14, "profile_path": "/s2eX7lG0n35AtkenfZV0uoLSudv.jpg", "order": 10}, {"name": "David Banner", "character": "Bosch", "id": 53258, "credit_id": "535f99a5c3a3683084006898", "cast_id": 15, "profile_path": "/v9KDy0PrFdkvYvDtHacpgnDwh73.jpg", "order": 11}, {"name": "Jason Lewis", "character": "Oscar", "id": 32224, "credit_id": "535f99b5c3a3683099006866", "cast_id": 16, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 12}, {"name": "Damien Leake", "character": "Govenor", "id": 159948, "credit_id": "535f99d3c3a36830b9006965", "cast_id": 17, "profile_path": "/wjDB58ft8TnutP6lCegsPaGYIpH.jpg", "order": 13}, {"name": "Rod Maiorano", "character": "Rex", "id": 1314908, "credit_id": "535f99e7c3a36830a90066e7", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Rachel O'Meara", "character": "Female Administrator", "id": 203526, "credit_id": "535f99f8c3a3683091006677", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Jeanne Hopson", "character": "Gertrude", "id": 1314909, "credit_id": "535f9a07c3a36830a90066ee", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Jack Mishler", "character": "Henry", "id": 1314910, "credit_id": "535f9a1bc3a3682273002c19", "cast_id": 21, "profile_path": null, "order": 17}], "directors": [{"name": "Paul Scheuring", "department": "Directing", "job": "Director", "credit_id": "52fe4650c3a36847f80f8489", "profile_path": "/fW8lD3VXm9ikxWOxoS2YJ9MZKLS.jpg", "id": 54869}], "vote_average": 6.6, "runtime": 120}, "10782": {"poster_path": "/1h3miwR99Osy4zqh5LK8pSqt1Qf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A DEA agent investigates the disappearance of a legendary Army ranger drill sergeant and several of his cadets during a training exercise gone severely awry.", "video": false, "id": 10782, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Basic", "tagline": "Deception is their most deadly weapon.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264395", "adult": false, "backdrop_path": "/6DE62dhAbC0QLpwBOT6GKw79NgX.jpg", "production_companies": [{"name": "Intermedia Films", "id": 763}, {"name": "Krane Entertainment", "id": 25358}], "release_date": "2003-04-18", "popularity": 0.606437070402749, "original_title": "Basic", "budget": 0, "cast": [{"name": "John Travolta", "character": "Hardy", "id": 8891, "credit_id": "52fe43b69251416c7501b2cb", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Connie Nielsen", "character": "Osborne", "id": 935, "credit_id": "52fe43b69251416c7501b2cf", "cast_id": 2, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "West", "id": 2231, "credit_id": "52fe43b69251416c7501b2d3", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "Kendall", "id": 1771, "credit_id": "52fe43b69251416c7501b2fb", "cast_id": 10, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "Tim Daly", "character": "Styles", "id": 68122, "credit_id": "52fe43b69251416c7501b2ff", "cast_id": 11, "profile_path": "/eLBlqpzOv1F9oPcWSU76yiuXneU.jpg", "order": 4}, {"name": "Brian Van Holt", "character": "Dunbar", "id": 12792, "credit_id": "52fe43b69251416c7501b303", "cast_id": 12, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 5}, {"name": "Roselyn S\u00e1nchez", "character": "Nunez", "id": 41901, "credit_id": "52fe43b69251416c7501b307", "cast_id": 13, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 6}, {"name": "Cristi\u00e1n de la Fuente", "character": "Castro", "id": 66143, "credit_id": "52fe43b69251416c7501b30b", "cast_id": 14, "profile_path": "/M7XlkDidelmHjOaJ63uyUP5MKa.jpg", "order": 7}, {"name": "Taye Diggs", "character": "Pike", "id": 17637, "credit_id": "52fe43b69251416c7501b30f", "cast_id": 15, "profile_path": "/1g1demRAGhwdUpwi8PA0wgFe2IX.jpg", "order": 8}], "directors": [{"name": "John McTiernan", "department": "Directing", "job": "Director", "credit_id": "52fe43b69251416c7501b2d9", "profile_path": "/tknmquMIO2oAVUZ0vVX78ALHyaT.jpg", "id": 1090}], "vote_average": 6.0, "runtime": 98}, "109091": {"poster_path": "/uxp6rHVBzUqZCyTaUI8xzUP5sOf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71009334, "overview": "A rich and successful lawyer named Counselor is about to get married to his fianc\u00e9e but soon meets up with the middle-man known as Westray who tells him his drug trafficking plan has taken a horrible twist and now he must protect himself and his soon bride-to-be lover as the truth of the drug business uncovers and targets become chosen.", "video": false, "id": 109091, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Counselor", "tagline": "Sin Is A Choice.", "vote_count": 255, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2193215", "adult": false, "backdrop_path": "/62xHmGnxMi0wV40BS3iKnDru0nO.jpg", "production_companies": [{"name": "Translux", "id": 14384}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Chockstone Pictures", "id": 13649}, {"name": "TSG Entertainment", "id": 22213}, {"name": "Ingenious Media", "id": 290}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Kanzaman", "id": 4169}], "release_date": "2013-10-25", "popularity": 0.969423144650464, "original_title": "The Counselor", "budget": 25000000, "cast": [{"name": "Michael Fassbender", "character": "The Counselor", "id": 17288, "credit_id": "52fe4aaac3a36847f81db479", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Malkina", "id": 6941, "credit_id": "52fe4aaac3a36847f81db49b", "cast_id": 10, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Reiner", "id": 3810, "credit_id": "52fe4aaac3a36847f81db485", "cast_id": 6, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Laura", "id": 955, "credit_id": "52fe4aaac3a36847f81db481", "cast_id": 5, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "Brad Pitt", "character": "Westray", "id": 287, "credit_id": "52fe4aaac3a36847f81db47d", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 4}, {"name": "Dean Norris", "character": "Buyer", "id": 14329, "credit_id": "52fe4aaac3a36847f81db4b3", "cast_id": 19, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 5}, {"name": "Emma Rigby", "character": "Tony's Girl", "id": 1078568, "credit_id": "52fe4aaac3a36847f81db4af", "cast_id": 18, "profile_path": "/5pMA7z3BZP7YdWqphbPRqu2peWq.jpg", "order": 6}, {"name": "Rosie Perez", "character": "Ruth", "id": 4810, "credit_id": "52fe4aaac3a36847f81db4a3", "cast_id": 15, "profile_path": "/zz7D8Wnxw91bddp481fYxYKMeuO.jpg", "order": 7}, {"name": "Goran Vi\u0161nji\u0107", "character": "Banker", "id": 5725, "credit_id": "52fe4aaac3a36847f81db4a7", "cast_id": 16, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 8}, {"name": "Bruno Ganz", "character": "Diamond Dealer", "id": 2310, "credit_id": "52fe4aaac3a36847f81db4ab", "cast_id": 17, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 9}, {"name": "Toby Kebbell", "character": "Tony", "id": 20286, "credit_id": "52fe4aaac3a36847f81db4b7", "cast_id": 20, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 10}, {"name": "Barbara Durkin", "character": "Cafe Waitress", "id": 1218936, "credit_id": "52fe4aaac3a36847f81db4bb", "cast_id": 21, "profile_path": "/frnhWKFUJbOruYO5oP9OWyEyK7y.jpg", "order": 11}, {"name": "Donna Air", "character": "Chauffeur", "id": 120886, "credit_id": "52fe4aaac3a36847f81db4bf", "cast_id": 22, "profile_path": "/x9SjwmJlvu1FJ7ZIDKcwACnQfXz.jpg", "order": 12}, {"name": "Giannina Facio", "character": "Woman with Mobile Phone", "id": 58787, "credit_id": "52fe4aaac3a36847f81db4c3", "cast_id": 23, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 13}, {"name": "Richard Brake", "character": "Second Man", "id": 3901, "credit_id": "52fe4aaac3a36847f81db4c7", "cast_id": 24, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 14}, {"name": "Sam Spruell", "character": "Wireman", "id": 55585, "credit_id": "52fe4aaac3a36847f81db4cb", "cast_id": 25, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 15}, {"name": "Sam Spruell", "character": "Watching Girl", "id": 55585, "credit_id": "52fe4aaac3a36847f81db4cf", "cast_id": 26, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 16}, {"name": "Alex Hafner", "character": "Highway Patrolman", "id": 1114061, "credit_id": "52fe4aaac3a36847f81db4d3", "cast_id": 27, "profile_path": "/rxHWT1t1YCxpqe2CS8lMerTH4La.jpg", "order": 17}, {"name": "Richard Cabral", "character": "Young Biker", "id": 1105711, "credit_id": "52fe4aaac3a36847f81db4d7", "cast_id": 28, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 18}, {"name": "Dar Dash", "character": "Barman", "id": 575927, "credit_id": "52fe4aaac3a36847f81db4db", "cast_id": 29, "profile_path": "/7x3X7aOkfa3iog7MZydBA4jWvTi.jpg", "order": 19}, {"name": "Paris Jefferson", "character": "Waitress", "id": 185429, "credit_id": "52fe4aaac3a36847f81db4df", "cast_id": 30, "profile_path": "/3S2XuHA9RQ67gqc4RHlUJaDrIjD.jpg", "order": 20}, {"name": "Christopher Obi", "character": "Malkina's Bodyguard", "id": 1088913, "credit_id": "52fe4aaac3a36847f81db4e3", "cast_id": 31, "profile_path": "/9mkVa3qKba8S7UcyzUYZPkeRG37.jpg", "order": 21}, {"name": "Velibor Topi\u0107", "character": "Sedan Man", "id": 34515, "credit_id": "52fe4aaac3a36847f81db4e7", "cast_id": 32, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 22}, {"name": "Gerard Monaco", "character": "Hotel Waiter", "id": 110872, "credit_id": "52fe4aaac3a36847f81db4eb", "cast_id": 33, "profile_path": "/uAUEHu3o7ngTudz7wBec9e8sc4a.jpg", "order": 23}, {"name": "Fernando Cayo", "character": "Abogado", "id": 51902, "credit_id": "52fe4aaac3a36847f81db4ef", "cast_id": 34, "profile_path": "/oDbXZgeh03v6OzgeIcrk0YZ556L.jpg", "order": 24}, {"name": "Carlos Julio Molina", "character": "Workman", "id": 1177536, "credit_id": "52fe4aaac3a36847f81db4f7", "cast_id": 36, "profile_path": "/opcOTTnGVvSM1WKH5rkFs05nqnS.jpg", "order": 25}, {"name": "Natalie Dormer", "character": "Blonde", "id": 58502, "credit_id": "52fe4aaac3a36847f81db4ff", "cast_id": 38, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 26}, {"name": "Rub\u00e9n Blades", "character": "Jefe", "id": 2049, "credit_id": "52fe4aaac3a36847f81db4fb", "cast_id": 37, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 27}, {"name": "Julien Vialon", "character": "Ma\u00eetre D'", "id": 212093, "credit_id": "52fe4aaac3a36847f81db503", "cast_id": 39, "profile_path": "/eYajr9BYN3QHVv6PGwVqUSMfvSP.jpg", "order": 28}, {"name": "Goran Vi\u0161nji\u0107", "character": "Banker", "id": 5725, "credit_id": "52fe4aaac3a36847f81db507", "cast_id": 40, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 29}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4aaac3a36847f81db46f", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 5.0, "runtime": 117}, "10795": {"poster_path": "/9caHoo7Acpc4GMfgBdNZIC6kVCb.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A man receives a mysterious e-mail appearing to be from his wife, who was murdered years earlier. As he frantically tries to find out whether she's alive, he finds himself being implicated in her death.", "video": false, "id": 10795, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Tell No One", "tagline": "8 years ago Alex's wife was MURDERED. Today... she e-mailed him.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0362225", "adult": false, "backdrop_path": "/r4supNyXFTjqYp6Kldm1j0kFgAx.jpg", "production_companies": [{"name": "Les Productions du Tr\u00e9sor", "id": 2612}], "release_date": "2006-11-01", "popularity": 0.679566217340801, "original_title": "Ne le dis \u00e0 personne", "budget": 0, "cast": [{"name": "Fran\u00e7ois Cluzet", "character": "Docteur Alexandre Arnaud Beck", "id": 33161, "credit_id": "52fe43b89251416c7501b84d", "cast_id": 3, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 0}, {"name": "Marie-Jos\u00e9e Croze", "character": "Margot Beck", "id": 8791, "credit_id": "52fe43b89251416c7501b851", "cast_id": 4, "profile_path": "/geZ08Bzueh6qDEGGUR7jQgomLks.jpg", "order": 1}, {"name": "Kristin Scott Thomas", "character": "H\u00e9l\u00e8ne Perkins", "id": 5470, "credit_id": "52fe43b89251416c7501b855", "cast_id": 5, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 2}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Eric Levkowitch", "id": 7693, "credit_id": "52fe43b89251416c7501b859", "cast_id": 6, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 3}, {"name": "Andr\u00e9 Dussollier", "character": "Jacques Laurentin", "id": 18177, "credit_id": "52fe43b89251416c7501b85d", "cast_id": 7, "profile_path": "/rKZXoZJBUMKRbACbAGEat7wvAr7.jpg", "order": 4}, {"name": "Marina Hands", "character": "Anne Beck", "id": 32511, "credit_id": "52fe43b89251416c7501b861", "cast_id": 9, "profile_path": "/mscpyqeKZbLlBL6JyaMlJNVVjEG.jpg", "order": 6}, {"name": "Jean Rochefort", "character": "Gilbert Neuville", "id": 24421, "credit_id": "52fe43b89251416c7501b865", "cast_id": 10, "profile_path": "/egQw0mikF0oVfZo3kqUXbr622RC.jpg", "order": 7}, {"name": "Guillaume Canet", "character": "Philippe Neuville", "id": 19866, "credit_id": "52fe43b89251416c7501b869", "cast_id": 12, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 9}, {"name": "Olivier Marchal", "character": "Bernard Valenti", "id": 52342, "credit_id": "52fe43b89251416c7501b86d", "cast_id": 13, "profile_path": "/7ATecIMp8xaPFotelxbS9HvsmPp.jpg", "order": 10}, {"name": "Florence Thomassin", "character": "Charlotte Bertaud", "id": 66838, "credit_id": "52fe43b89251416c7501b871", "cast_id": 14, "profile_path": "/dTl02iZ9mgxbXOLElidgqr79ZDX.jpg", "order": 11}, {"name": "Philippe Lefebvre", "character": "Lieutenant Philippe Meynard", "id": 66839, "credit_id": "52fe43b89251416c7501b875", "cast_id": 15, "profile_path": "/3OgeaSSNSQCWliABQcQoq2NrwvC.jpg", "order": 12}, {"name": "Gilles Lellouche", "character": "Bruno", "id": 54291, "credit_id": "52fe43b89251416c7501b891", "cast_id": 20, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 13}, {"name": "Nathalie Baye", "character": "Ma\u00eetre Elysabeth Feldman", "id": 136761, "credit_id": "552c6633c3a3685bc1000601", "cast_id": 21, "profile_path": "/1Jgb6SsdVhQhoPykMWIKzfV5s5U.jpg", "order": 14}], "directors": [{"name": "Guillaume Canet", "department": "Directing", "job": "Director", "credit_id": "52fe43b89251416c7501b843", "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "id": 19866}], "vote_average": 7.5, "runtime": 131}, "2604": {"poster_path": "/iAUSzQNpxf9fX1EvhNbeguo6aVA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161001698, "overview": "The biography of Ron Kovic. Paralyzed in the Vietnam war, he becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for.", "video": false, "id": 2604, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Born on the Fourth of July", "tagline": "A story of innocence lost and courage found.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0096969", "adult": false, "backdrop_path": "/uuAGxNyckS2pBbx0jKKQ7j4dMEF.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Ixtlan", "id": 4198}], "release_date": "1989-12-20", "popularity": 1.35260262895744, "original_title": "Born on the Fourth of July", "budget": 14000000, "cast": [{"name": "Tom Cruise", "character": "Ron Kovic", "id": 500, "credit_id": "52fe435fc3a36847f804f4bf", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Raymond J. Barry", "character": "Mr. Kovic", "id": 10361, "credit_id": "52fe435fc3a36847f804f4c3", "cast_id": 2, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 1}, {"name": "Caroline Kava", "character": "Mrs. Kovic", "id": 26466, "credit_id": "52fe435fc3a36847f804f4c7", "cast_id": 3, "profile_path": "/eabqpRROV3ZfZJWNZb4vImOlXMZ.jpg", "order": 2}, {"name": "Holly Marie Combs", "character": "Jenny", "id": 26469, "credit_id": "52fe435fc3a36847f804f4e7", "cast_id": 11, "profile_path": "/6nBsYLxhHzzf7Q0PQzBjnGjz5kX.jpg", "order": 3}, {"name": "Kyra Sedgwick", "character": "Donna", "id": 26467, "credit_id": "52fe435fc3a36847f804f4cb", "cast_id": 4, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 4}, {"name": "Tom Berenger", "character": "Recruiting Gunnery Sgt. Hayes", "id": 13022, "credit_id": "52fe435fc3a36847f804f4cf", "cast_id": 5, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 5}, {"name": "Rob Camilletti", "character": "Tommy Finnelli", "id": 26468, "credit_id": "52fe435fc3a36847f804f4d3", "cast_id": 6, "profile_path": "/saI6oFTpyojo3T8JziAWoVpjhel.jpg", "order": 6}, {"name": "Stephen Baldwin", "character": "Billy Vorsovich", "id": 9045, "credit_id": "52fe435fc3a36847f804f4d7", "cast_id": 7, "profile_path": "/u1pITf1MUXVbCdiJaFxbHEda1oQ.jpg", "order": 7}, {"name": "Mark Moses", "character": "Arzt", "id": 11889, "credit_id": "52fe435fc3a36847f804f4db", "cast_id": 8, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 8}, {"name": "Vivica A. Fox", "character": "Hooker", "id": 2535, "credit_id": "52fe435fc3a36847f804f4df", "cast_id": 9, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 9}, {"name": "Lili Taylor", "character": "Jamie Wilson", "id": 3127, "credit_id": "52fe435fc3a36847f804f4e3", "cast_id": 10, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 10}, {"name": "Jerry Levine", "character": "Steve Boyer", "id": 26470, "credit_id": "52fe435fc3a36847f804f4eb", "cast_id": 12, "profile_path": "/6pNnyI19jquUa5dziLPZPsQn4WP.jpg", "order": 11}, {"name": "Frank Whaley", "character": "Timmy", "id": 11805, "credit_id": "52fe435fc3a36847f804f4ef", "cast_id": 13, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 12}, {"name": "Willem Dafoe", "character": "Charlie", "id": 5293, "credit_id": "52fe435fc3a36847f804f529", "cast_id": 23, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 13}, {"name": "Josh Evans", "character": "Tommy Kovic", "id": 1044946, "credit_id": "5347eb76c3a368672d00131b", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Bob Gunton", "character": "Doctor", "id": 4029, "credit_id": "54cef36e925141475d007063", "cast_id": 30, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 15}, {"name": "Cordelia Gonz\u00e1lez", "character": "Maria Elena", "id": 126096, "credit_id": "54cef394c3a3687f8c00727c", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Tony Frank", "character": "Mr. Wilson", "id": 1218890, "credit_id": "54cef3c3c3a3687f8400765c", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Jayne Haynes", "character": "Mrs. Wilson", "id": 181312, "credit_id": "54cef3d3c3a3687f84007661", "cast_id": 33, "profile_path": null, "order": 18}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe435fc3a36847f804f4f5", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.5, "runtime": 145}, "2605": {"poster_path": "/kiIoZ05pRYEepIs7apiwTmmKBJe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40697761, "overview": "After a lightning bolt zaps a robot named Number 5, the lovable machine starts to think he's human and escapes the lab. Hot on his trail is his designer, Newton, who hopes to get to Number 5 before the military does. In the meantime, a spunky animal lover mistakes the robot for an alien and takes him in, teaching her new guest about life on Earth.", "video": false, "id": 2605, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Short Circuit", "tagline": "Something wonderful has happened... No. 5 is alive!", "vote_count": 116, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o3C0qlKyg7Haot9ZVqtRtsrKwWc.jpg", "poster_path": "/AZFGrT6LotCm69uNgVnTkUYBGh.jpg", "id": 86347, "name": "Short Circuit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091949", "adult": false, "backdrop_path": "/yoOgUFzKst23wCcW4TdakAJ1lXd.jpg", "production_companies": [{"name": "PSO International", "id": 427}, {"name": "David Foster Productions", "id": 496}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1986-05-09", "popularity": 0.278870916294037, "original_title": "Short Circuit", "budget": 0, "cast": [{"name": "Ally Sheedy", "character": "Stephanie Speck", "id": 12851, "credit_id": "52fe435fc3a36847f804f575", "cast_id": 1, "profile_path": "/xfNrfzgDwyvmczadJWw4fN70siS.jpg", "order": 0}, {"name": "Steve Guttenberg", "character": "Newton Crosby", "id": 26472, "credit_id": "52fe435fc3a36847f804f579", "cast_id": 2, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 1}, {"name": "Fisher Stevens", "character": "Ben Jabituya", "id": 26473, "credit_id": "52fe435fc3a36847f804f57d", "cast_id": 3, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 2}, {"name": "Austin Pendleton", "character": "Howard Marner", "id": 6168, "credit_id": "52fe435fc3a36847f804f593", "cast_id": 7, "profile_path": "/5zCfkpsDFAilHv1nMFWiz5lx6ZH.jpg", "order": 3}, {"name": "G. W. Bailey", "character": "Skroeder", "id": 27237, "credit_id": "52fe435fc3a36847f804f5c1", "cast_id": 15, "profile_path": "/yp2I3QBErwztWTUID2VijALOA8c.jpg", "order": 4}, {"name": "Brian McNamara", "character": "Frank", "id": 27238, "credit_id": "52fe435fc3a36847f804f5c5", "cast_id": 16, "profile_path": "/eHBvnSkMrhNB57yU2nlQCfH8Kl8.jpg", "order": 5}, {"name": "Tim Blaney", "character": "Number 5", "id": 1036563, "credit_id": "52fe435fc3a36847f804f5c9", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Marvin J. McIntyre", "character": "Duke", "id": 13003, "credit_id": "52fe435fc3a36847f804f5cd", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "John Garber", "character": "Otis", "id": 950548, "credit_id": "52fe435fc3a36847f804f5d1", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Penny Santon", "character": "Mrs. Cepeda", "id": 80599, "credit_id": "52fe435fc3a36847f804f5d5", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "John Badham", "department": "Directing", "job": "Director", "credit_id": "52fe435fc3a36847f804f583", "profile_path": "/oAhHnnyoIY7qgg7aERbsOuqFdow.jpg", "id": 12840}], "vote_average": 6.3, "runtime": 98}, "2609": {"poster_path": "/t7Rrs11VNjWAi8loMLhRe94gesE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49230280, "overview": "A man must struggle to travel home for Thanksgiving, with an obnoxious slob of a shower ring salesman his only companion.", "video": false, "id": 2609, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Planes, Trains and Automobiles", "tagline": "What he really wanted was to spend Thanksgiving with his family. What he got was three days with the turkey.", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093748", "adult": false, "backdrop_path": "/w8wOF8n52L3npxj3cBYejoc2Zkj.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1987-11-26", "popularity": 0.647056321952319, "original_title": "Planes, Trains and Automobiles", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Neal Page", "id": 67773, "credit_id": "52fe435fc3a36847f804f679", "cast_id": 1, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "John Candy", "character": "Del Griffith", "id": 7180, "credit_id": "52fe435fc3a36847f804f67d", "cast_id": 2, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 1}, {"name": "Laila Robins", "character": "Susan Page", "id": 27260, "credit_id": "52fe435fc3a36847f804f6b1", "cast_id": 11, "profile_path": "/3Ku9V79Nr6o8xR4Aw1kpq9w2MC1.jpg", "order": 2}, {"name": "Michael McKean", "character": "State Trooper", "id": 21731, "credit_id": "52fe435fc3a36847f804f6b5", "cast_id": 12, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 3}, {"name": "Dylan Baker", "character": "Owen", "id": 19152, "credit_id": "52fe435fc3a36847f804f6b9", "cast_id": 13, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 4}, {"name": "Kevin Bacon", "character": "Taxi Racer", "id": 4724, "credit_id": "52fe435fc3a36847f804f6bd", "cast_id": 14, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Olivia Burnette", "character": "Marti Page", "id": 27261, "credit_id": "52fe435fc3a36847f804f6c1", "cast_id": 15, "profile_path": "/7K8Hqv59v96QqkDHh9vQo91h3Gx.jpg", "order": 6}, {"name": "Carol Bruce", "character": "Joy Page", "id": 27262, "credit_id": "52fe435fc3a36847f804f6c5", "cast_id": 16, "profile_path": "/rw8lliecsteL1D4D8hLzc41HJBA.jpg", "order": 7}, {"name": "Diana Douglas", "character": "Peg", "id": 27263, "credit_id": "52fe435fc3a36847f804f6c9", "cast_id": 17, "profile_path": "/ohPVMTqNOE4NvRF7amqFSYWnqRl.jpg", "order": 8}, {"name": "Martin Ferrero", "character": "Second Motel Clerk", "id": 4790, "credit_id": "52fe435fc3a36847f804f6cd", "cast_id": 18, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 9}, {"name": "Larry Hankin", "character": "Doobie", "id": 11519, "credit_id": "52fe435fc3a36847f804f6d1", "cast_id": 19, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 10}, {"name": "Richard Herd", "character": "Walt", "id": 13732, "credit_id": "52fe435fc3a36847f804f6d5", "cast_id": 20, "profile_path": "/1wsn9V7kkrvD2Qr3bD1vSH2OjpK.jpg", "order": 11}, {"name": "Susan Kellermann", "character": "Waitress", "id": 27264, "credit_id": "52fe435fc3a36847f804f6d9", "cast_id": 21, "profile_path": "/1WTM0L9rpgv0Urgi7P0IoHaMlsX.jpg", "order": 12}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe435fc3a36847f804f683", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.5, "runtime": 93}, "76338": {"poster_path": "/aROh4ZwLfv9tmtOAsrnkYTbpujA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 479765000, "overview": "Thor fights to restore order across the cosmos\u2026 but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.", "video": false, "id": 76338, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Thor: The Dark World", "tagline": "Delve into the darkness", "vote_count": 1504, "homepage": "http://marvel.com/thor", "belongs_to_collection": {"backdrop_path": "/FZhEgAes4PX86BJGJPXyZCXHrj.jpg", "poster_path": "/7vx64r9HS57yz2T53i31SdmqdEi.jpg", "id": 131296, "name": "Thor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1981115", "adult": false, "backdrop_path": "/3FweBee0xZoY77uO1bhUOlQorNH.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2013-11-08", "popularity": 4.09233212611027, "original_title": "Thor: The Dark World", "budget": 170000000, "cast": [{"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe4932c3a368484e11f66f", "cast_id": 2, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Jane Foster", "id": 524, "credit_id": "52fe4932c3a368484e11f673", "cast_id": 3, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Tom Hiddleston", "character": "Loki", "id": 91606, "credit_id": "52fe4932c3a368484e11f677", "cast_id": 4, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 2}, {"name": "Anthony Hopkins", "character": "Odin", "id": 4173, "credit_id": "52fe4933c3a368484e11f6a5", "cast_id": 17, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 3}, {"name": "Christopher Eccleston", "character": "Malekith", "id": 2040, "credit_id": "52fe4933c3a368484e11f691", "cast_id": 12, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 4}, {"name": "Jaimie Alexander", "character": "Sif", "id": 59817, "credit_id": "52fe4933c3a368484e11f685", "cast_id": 9, "profile_path": "/vPXy9FBK272nqrJDlQX9zU57vmj.jpg", "order": 5}, {"name": "Zachary Levi", "character": "Fandral", "id": 69899, "credit_id": "52fe4933c3a368484e11f68d", "cast_id": 11, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 6}, {"name": "Ray Stevenson", "character": "Volstagg", "id": 56614, "credit_id": "52fe4933c3a368484e11f713", "cast_id": 42, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 7}, {"name": "Tadanobu Asano", "character": "Hogun", "id": 13275, "credit_id": "52fe4933c3a368484e11f69d", "cast_id": 15, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 8}, {"name": "Idris Elba", "character": "Heimdall", "id": 17605, "credit_id": "52fe4933c3a368484e11f681", "cast_id": 7, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 9}, {"name": "Rene Russo", "character": "Frigga", "id": 14343, "credit_id": "52fe4933c3a368484e11f6a1", "cast_id": 16, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 10}, {"name": "Stellan Skarsg\u00e5rd", "character": "Dr. Erik Selvig", "id": 1640, "credit_id": "52fe4933c3a368484e11f689", "cast_id": 10, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 11}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Algrim / Kurse", "id": 31164, "credit_id": "52fe4933c3a368484e11f695", "cast_id": 13, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 12}, {"name": "Kat Dennings", "character": "Darcy Lewis", "id": 52852, "credit_id": "52fe4933c3a368484e11f699", "cast_id": 14, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 13}, {"name": "Alice Krige", "character": "Eir", "id": 2506, "credit_id": "52fe4933c3a368484e11f717", "cast_id": 43, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 14}, {"name": "Clive Russell", "character": "Tyr", "id": 19901, "credit_id": "52fe4933c3a368484e11f6a9", "cast_id": 18, "profile_path": "/3dkiAdWPMPiPRqwi5MVBFOSD9Xo.jpg", "order": 15}, {"name": "Stan Lee", "character": "Himself", "id": 7624, "credit_id": "52fe4933c3a368484e11f6ad", "cast_id": 19, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 16}, {"name": "Chris O'Dowd", "character": "Richard", "id": 40477, "credit_id": "52fe4933c3a368484e11f6db", "cast_id": 27, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 17}, {"name": "Tony Curran", "character": "Bor", "id": 2220, "credit_id": "52fe4933c3a368484e11f6df", "cast_id": 29, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 18}, {"name": "Talulah Riley", "character": "Nurse", "id": 66441, "credit_id": "52fe4933c3a368484e11f6e3", "cast_id": 30, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 19}, {"name": "Richard Brake", "character": "Einherjar Lieutenant", "id": 3901, "credit_id": "52fe4933c3a368484e11f6e7", "cast_id": 31, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 20}, {"name": "Richard Wharton", "character": "Asylum Patient", "id": 87115, "credit_id": "52fe4933c3a368484e11f6eb", "cast_id": 32, "profile_path": "/hklENMg9f6pAbTHafbbOZpUbZUN.jpg", "order": 21}, {"name": "Chris Evans", "character": "Captain America (uncredited)", "id": 16828, "credit_id": "52fe4933c3a368484e11f6ef", "cast_id": 33, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 22}, {"name": "Ophelia Lovibond", "character": "Carina (uncredited)", "id": 82639, "credit_id": "52fe4933c3a368484e11f6f3", "cast_id": 34, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 23}, {"name": "Benicio del Toro", "character": "Taneleer Tivan / The Collector (uncredited)", "id": 1121, "credit_id": "52fe4933c3a368484e11f6f7", "cast_id": 35, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 24}, {"name": "Jonathan Howard", "character": "Ian Boothby", "id": 1270111, "credit_id": "52fe4933c3a368484e11f71b", "cast_id": 44, "profile_path": "/tQHHmna3gp74flis6MxsnYXsbgm.jpg", "order": 25}], "directors": [{"name": "Alan Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe4932c3a368484e11f67d", "profile_path": "/elbdMfF9adhtJq5Sle5P3JFZgyI.jpg", "id": 47005}], "vote_average": 7.0, "runtime": 112}, "2614": {"poster_path": "/krRl7QKdIYsVUPYmOwElA1sqQE7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25893810, "overview": "A hapless store clerk must foil criminals to save the life of the man who, miniaturized in a secret experiment, was accidentally injected into him.", "video": false, "id": 2614, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Innerspace", "tagline": "This summer take a trip you'll never forget.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093260", "adult": false, "backdrop_path": "/u7qwHw01k9RxKv0zPdcJONlZXJu.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "The Guber-Peters Company", "id": 4357}], "release_date": "1987-06-30", "popularity": 0.878180368217018, "original_title": "Innerspace", "budget": 0, "cast": [{"name": "Martin Short", "character": "Jack Putter", "id": 519, "credit_id": "52fe4360c3a36847f804f901", "cast_id": 1, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Lt. Tuck Pendleton", "id": 6065, "credit_id": "52fe4360c3a36847f804f905", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Meg Ryan", "character": "Lydia Maxwell", "id": 5344, "credit_id": "52fe4360c3a36847f804f909", "cast_id": 3, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 2}, {"name": "Kevin McCarthy", "character": "Victor Eugene Scrimshaw", "id": 34597, "credit_id": "52fe4360c3a36847f804f955", "cast_id": 18, "profile_path": "/6789RKVg3Gc7ADIiod4wHXB5bWX.jpg", "order": 3}, {"name": "Fiona Lewis", "character": "Dr. Margaret Canker", "id": 26490, "credit_id": "52fe4360c3a36847f804f90d", "cast_id": 5, "profile_path": "/iGyGj6bVRqjAJpUs94Ye3V7cJvv.jpg", "order": 5}, {"name": "Vernon Wells", "character": "Mr. Igoe", "id": 26491, "credit_id": "52fe4360c3a36847f804f911", "cast_id": 6, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 6}, {"name": "Robert Picardo", "character": "The Cowboy", "id": 16180, "credit_id": "52fe4360c3a36847f804f915", "cast_id": 7, "profile_path": "/5L0WCl3TzjeWdP8TqXfQ1n9uaOn.jpg", "order": 7}, {"name": "Dick Miller", "character": "Cab Driver", "id": 102441, "credit_id": "52fe4360c3a36847f804f959", "cast_id": 19, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 8}, {"name": "Wendy Schaal", "character": "Wendy", "id": 37600, "credit_id": "547d93e99251412d7f0050a7", "cast_id": 20, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 9}, {"name": "Harold Sylvester", "character": "Pete Blanchard", "id": 27540, "credit_id": "547d93f7c3a3685b00005763", "cast_id": 21, "profile_path": "/d7caCyjDpaemQzO4DlVfF2uIKQ1.jpg", "order": 10}, {"name": "William Schallert", "character": "Dr. Greenbush", "id": 15992, "credit_id": "547d9407c3a3685aed00599a", "cast_id": 22, "profile_path": "/d171pyQqJT272px9knj9crpYcSf.jpg", "order": 11}, {"name": "Henry Gibson", "character": "Mr. Wormwood", "id": 19439, "credit_id": "547d9414c3a3685af90048d6", "cast_id": 23, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 12}, {"name": "John Hora", "character": "Ozzie Wexler", "id": 16156, "credit_id": "547d9421c3a3685b050054ec", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Mark L. Taylor", "character": "Dr. Niles", "id": 78003, "credit_id": "547d94309251412d7c0053a2", "cast_id": 25, "profile_path": "/uvqfJeuIQEHvbEDJWDZJcTBlzNy.jpg", "order": 14}, {"name": "Orson Bean", "character": "Lydia's Editor", "id": 863, "credit_id": "547d943dc3a3685af90048db", "cast_id": 26, "profile_path": "/vMG49W2jMiOn1wgAxCeSdtnUNjx.jpg", "order": 15}, {"name": "Kevin Hooks", "character": "Duane", "id": 40230, "credit_id": "547d944ac3a3685b050054f0", "cast_id": 27, "profile_path": "/xqzV7byaH95GSvR86JjGzHceIY4.jpg", "order": 16}, {"name": "Kathleen Freeman", "character": "Dream Lady", "id": 7210, "credit_id": "547d94569251412d7000583e", "cast_id": 28, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 17}, {"name": "Archie Hahn", "character": "Messenger", "id": 93670, "credit_id": "547d94639251412d7c0053ad", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Kenneth Tobey", "character": "Man in Restroom (as Ken Tobey)", "id": 103069, "credit_id": "547d94749251412d78004f18", "cast_id": 30, "profile_path": "/8oWlDuUkUjsmDv0TxRAq4PsfAnG.jpg", "order": 19}, {"name": "Joe Flaherty", "character": "Waiting Room Patient", "id": 59196, "credit_id": "547d94839251412d750049a3", "cast_id": 31, "profile_path": "/eQWzl4MazEkiaIsSuLIBBWB9zV9.jpg", "order": 20}, {"name": "Andrea Martin", "character": "Waiting Room Patient", "id": 8263, "credit_id": "547d9495c3a36841e1001d84", "cast_id": 32, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 21}, {"name": "Jason Laskay", "character": "Scrimshaw's Henchman", "id": 1392678, "credit_id": "547d94a59251412d78004f21", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Frank Miller", "character": "Scrimshaw's Henchman", "id": 1392680, "credit_id": "547d94cb9251411f4e003e58", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Christine Avila", "character": "Lab Technician", "id": 1377370, "credit_id": "547d94f4c3a3685af30044ca", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Alexandra Borrie", "character": "Lab Technician", "id": 1392683, "credit_id": "547d94fd9251412d7f0050e6", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "Jenny Gago", "character": "Lab Technician", "id": 129872, "credit_id": "547d950b9251411f4e003e61", "cast_id": 38, "profile_path": "/pflr8vyv1CF9024D8cnUCZpZfwb.jpg", "order": 27}, {"name": "Robert Gounley", "character": "Lab Technician", "id": 1392685, "credit_id": "547d9515c3a3685af30044cd", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Grainger Hines", "character": "Rusty", "id": 169839, "credit_id": "547d9520c3a3685af90048fe", "cast_id": 40, "profile_path": "/8eKbbE6CCtPS5NcIRQ7evoORr22.jpg", "order": 29}, {"name": "Mike Garibaldi", "character": "Cop", "id": 1392686, "credit_id": "547d952e9251412d750049c7", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Richard McGonagle", "character": "Cop", "id": 80416, "credit_id": "547d9539c3a3685b000057a3", "cast_id": 42, "profile_path": "/xY4y27xOSrzliCfR5ihqSt3NKOw.jpg", "order": 31}, {"name": "Terence McGovern", "character": "Travel Agent", "id": 162323, "credit_id": "547d95469251412d6d005042", "cast_id": 43, "profile_path": "/yO86kO0EFrBIOHJWTx6RkeH9DEE.jpg", "order": 32}, {"name": "Robert Neches", "character": "Lab Guard", "id": 162092, "credit_id": "547d95539251412d6d005046", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Rance Howard", "character": "Supermarket Customer", "id": 22250, "credit_id": "547d95659251411f4e003e78", "cast_id": 45, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 34}, {"name": "Chuck Jones", "character": "Supermarket Customer", "id": 100888, "credit_id": "547d956e9251412d78004f5f", "cast_id": 46, "profile_path": "/6JpwLPN4ugD5sw5Z0zjPQf6nhh8.jpg", "order": 35}, {"name": "Laura Waterbury", "character": "Supermarket Customer", "id": 182416, "credit_id": "547d957a9251412d750049d9", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Kurt Braunreiter", "character": "Lab Assault Henchman", "id": 1392687, "credit_id": "547d9588c3a3685b05005531", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Robert Gray", "character": "Lab Assault Henchman", "id": 1392690, "credit_id": "547d95bc9251412d750049e2", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Brewster Sears", "character": "Lab Assault Henchman", "id": 1392691, "credit_id": "547d95d59251412d7c0053ee", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Alan Blumenfeld", "character": "Man with Camera", "id": 22053, "credit_id": "547d95e1c3a3685af30044ea", "cast_id": 51, "profile_path": "/2ag56MvKkTuhGnUFgJza4hJZl8u.jpg", "order": 40}, {"name": "Jeffrey Boam", "character": "Lydia's Interviewee", "id": 737, "credit_id": "547d95ed9251412d70005894", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Sydne Squire", "character": "Stewardess", "id": 1392693, "credit_id": "547d95f9c3a3685aed0059dc", "cast_id": 53, "profile_path": null, "order": 42}, {"name": "Paul Barselou", "character": "Man on Plane", "id": 1392694, "credit_id": "547d96049251412d750049f2", "cast_id": 54, "profile_path": null, "order": 43}, {"name": "John Miranda", "character": "Man in Elevator", "id": 166387, "credit_id": "547d9610c3a3685b000057ca", "cast_id": 55, "profile_path": null, "order": 44}, {"name": "Jordan Benjamin", "character": "Little Kid in Mall", "id": 1392695, "credit_id": "547d9621c3a3685aed0059eb", "cast_id": 56, "profile_path": null, "order": 45}, {"name": "Roberto Ramirez", "character": "Chef", "id": 1392696, "credit_id": "547d9634c3a36841e1001dcc", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Virginia Boyle", "character": "Shopping Lady", "id": 1392697, "credit_id": "547d9644c3a3685b000057d5", "cast_id": 58, "profile_path": null, "order": 47}, {"name": "Herb Mitchell", "character": "Camera Store Clerk", "id": 81903, "credit_id": "547d96519251412d750049fc", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "Neil Ross", "character": "Pod Computer (voice)", "id": 64951, "credit_id": "547d96859251412d78004f81", "cast_id": 61, "profile_path": "/dgcStU8y6YccpzuLeG0U0bC5xvC.jpg", "order": 50}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe4360c3a36847f804f951", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.2, "runtime": 120}, "2616": {"poster_path": "/pfRn0CzYq5n49EDl8BV8Jjry6ZM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66758538, "overview": "As an idle, good-natured bachelor, Uncle Buck is the last person you would think of to watch the kids. However, during a family crisis, he is suddenly left in charge of his nephew and nieces. Unaccustomed to suburban life, fun-loving Uncle Buck soon charms his younger relatives Miles and Maizy with his hefty cooking and his new way of doing the laundry. His carefree style does not impress everyone though - especially his rebellious teenage niece, Tia, and his impatient girlfriend, Chanice. With a little bit of luck and a lot of love, Uncle Buck manages to surprise everyone in this heartwarming family comedy.", "video": false, "id": 2616, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Uncle Buck", "tagline": "He's crude. He's crass. He's family.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098554", "adult": false, "backdrop_path": "/hXijgyAgIgPREv6H7AZN8L2W0Oe.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1989-08-16", "popularity": 0.349613237516466, "original_title": "Uncle Buck", "budget": 0, "cast": [{"name": "John Candy", "character": "Buck Russell", "id": 7180, "credit_id": "52fe4360c3a36847f804f987", "cast_id": 1, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 0}, {"name": "Jean Louisa Kelly", "character": "Tia Russell", "id": 26495, "credit_id": "52fe4360c3a36847f804f993", "cast_id": 4, "profile_path": "/9oZl7GU9pfXMYEv4BrpnvosHBQu.jpg", "order": 1}, {"name": "Macaulay Culkin", "character": "Miles Russell", "id": 11510, "credit_id": "52fe4360c3a36847f804f98b", "cast_id": 2, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 2}, {"name": "Gaby Hoffmann", "character": "Mazy Russell", "id": 12930, "credit_id": "52fe4360c3a36847f804f997", "cast_id": 5, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 3}, {"name": "Amy Madigan", "character": "Chanice Kobolowski", "id": 23882, "credit_id": "52fe4360c3a36847f804f98f", "cast_id": 3, "profile_path": "/pNdNJPKRdl3veCRH8fZv3H76ywJ.jpg", "order": 4}, {"name": "Elaine Bromka", "character": "Cindy Russell", "id": 27491, "credit_id": "52fe4360c3a36847f804f9a7", "cast_id": 8, "profile_path": "/xpGz2zFVrzTxc1OIW9nOoHzL75i.jpg", "order": 5}, {"name": "Garrett M. Brown", "character": "Bob Russell", "id": 27492, "credit_id": "52fe4360c3a36847f804f9ab", "cast_id": 9, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 6}, {"name": "Laurie Metcalf", "character": "Marcie Dahlgren-Frost", "id": 12133, "credit_id": "52fe4360c3a36847f804f9af", "cast_id": 10, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 7}, {"name": "Jay Underwood", "character": "Bug", "id": 27493, "credit_id": "52fe4360c3a36847f804f9b3", "cast_id": 11, "profile_path": "/1nXq2fcoJCkRgrhsGCMqVzjJGpG.jpg", "order": 8}, {"name": "Brian Tarantina", "character": "E. Roger Coswell", "id": 4890, "credit_id": "5377f359c3a3685542002434", "cast_id": 21, "profile_path": "/3wJWb5xIxkwvSWVvdgEE92YIBaS.jpg", "order": 9}, {"name": "Mike Starr", "character": "Pooter-the-Clown", "id": 5170, "credit_id": "5377f375c3a3685525002544", "cast_id": 22, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 10}, {"name": "Suzanne Shepherd", "character": "Mrs. Hogarth", "id": 11484, "credit_id": "5377f391c3a368553a00257c", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "William Windom", "character": "Mr. Hatfield (voice)", "id": 8499, "credit_id": "5377f3b1c3a368553100268a", "cast_id": 24, "profile_path": "/nTqbMx3o9rk6Q5PfS3fwh5LEbGw.jpg", "order": 12}, {"name": "Dennis Cockrum", "character": "Pal", "id": 155825, "credit_id": "5377f41ec3a368553a002582", "cast_id": 25, "profile_path": "/3RGfs2kJ71XCho8VsDxpYlzlFur.jpg", "order": 13}, {"name": "Ryan Goldstein", "character": "School Child (uncredited)", "id": 1107987, "credit_id": "52fe4360c3a36847f804f9c9", "cast_id": 15, "profile_path": "/wqpzKnYuTGuj2KBhvTZRbtBtUgF.jpg", "order": 15}, {"name": "Anna Chlumsky", "character": "School Child", "id": 34612, "credit_id": "5377f53ac3a368551e00262d", "cast_id": 26, "profile_path": "/9wwtj8lfHKGna2L0CXBWllHIDUq.jpg", "order": 16}, {"name": "Patricia Arquette", "character": "Additional Voices (voice)", "id": 4687, "credit_id": "5377f55dc3a368554a002648", "cast_id": 27, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 17}, {"name": "Devon Odessa", "character": "Additional Voices (voice)", "id": 54456, "credit_id": "5377f580c3a368554a00264c", "cast_id": 28, "profile_path": "/gVwKvpPAdlgBTCHQIvK63Yf0C4y.jpg", "order": 18}, {"name": "Jack Blessing", "character": "Additional Voices (voice)", "id": 102336, "credit_id": "5377f5a1c3a3685525002568", "cast_id": 29, "profile_path": "/xadJ0CFul9YT84hRTZ3c0YmFASy.jpg", "order": 19}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4360c3a36847f804f99d", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.6, "runtime": 100}, "59961": {"poster_path": "/q83VacoG2hHLvORTPtvCXKsdBSN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 208076205, "overview": "Denzel Washington plays the most dangerous renegade from the CIA, who comes back onto the grid after a decade on the run. When the South African safe house he's remanded to is attacked by mercenaries, a rookie operative (Ryan Reynolds) escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.", "video": false, "id": 59961, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Safe House", "tagline": "No one is safe", "vote_count": 672, "homepage": "http://www.nooneissafe.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1599348", "adult": false, "backdrop_path": "/wX0mOAa91dTAT2WCGRvvpWUKAeD.jpg", "production_companies": [{"name": "Dentsu", "id": 6452}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Bluegrass Films", "id": 13778}], "release_date": "2012-02-10", "popularity": 1.30859848410431, "original_title": "Safe House", "budget": 85000000, "cast": [{"name": "Denzel Washington", "character": "Tobin Frost", "id": 5292, "credit_id": "52fe49a4c3a36847f81a4ed7", "cast_id": 3, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Ryan Reynolds", "character": "Matt Weston", "id": 10859, "credit_id": "52fe49a4c3a36847f81a4edb", "cast_id": 4, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Catherine Linklater", "id": 21657, "credit_id": "52fe49a4c3a36847f81a4edf", "cast_id": 5, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Joel Kinnaman", "character": "Keller", "id": 92404, "credit_id": "52fe49a4c3a36847f81a4ee3", "cast_id": 6, "profile_path": "/kn3AcrSxa0ApgQVcjQ8m6YsWVq.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "David Barlow", "id": 2039, "credit_id": "52fe49a4c3a36847f81a4ee7", "cast_id": 7, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Sam Shepard", "character": "Harlan Whitford", "id": 9880, "credit_id": "52fe49a4c3a36847f81a4eeb", "cast_id": 8, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 5}, {"name": "Nora Arnezeder", "character": "Ana Moreau", "id": 453272, "credit_id": "52fe49a4c3a36847f81a4eef", "cast_id": 10, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 6}, {"name": "Liam Cunningham", "character": "Alec Wade", "id": 15498, "credit_id": "52fe49a4c3a36847f81a4ef3", "cast_id": 12, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 7}, {"name": "Fares Fares", "character": "Vargas", "id": 57012, "credit_id": "52fe49a4c3a36847f81a4ef7", "cast_id": 13, "profile_path": "/1BE5IG3hcFXfMjBuJJyKs2JpPjI.jpg", "order": 8}, {"name": "Jenna Dover", "character": "CIA Analyst", "id": 936402, "credit_id": "52fe49a4c3a36847f81a4efb", "cast_id": 14, "profile_path": "/3sPpYR122yoFS83mdlQcBKSwAHb.jpg", "order": 9}, {"name": "Stephen Rider", "character": "CIA Analyst", "id": 936403, "credit_id": "52fe49a4c3a36847f81a4eff", "cast_id": 15, "profile_path": "/oS4eTt8qKF9320mGceFgArbFO0v.jpg", "order": 10}, {"name": "Daniel Fox", "character": "CIA Analyst", "id": 936404, "credit_id": "52fe49a4c3a36847f81a4f03", "cast_id": 16, "profile_path": "/kfBnrqHmNUmnKs9A6R21ok03PV7.jpg", "order": 11}, {"name": "Tracie Thoms", "character": "CIA Analyst", "id": 10580, "credit_id": "52fe49a4c3a36847f81a4f07", "cast_id": 17, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 12}, {"name": "Robert Patrick", "character": "Daniel Kiefe", "id": 418, "credit_id": "52fe49a4c3a36847f81a4f0b", "cast_id": 18, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 13}, {"name": "Rub\u00e9n Blades", "character": "Carlos Villar", "id": 2049, "credit_id": "52fe49a4c3a36847f81a4f0f", "cast_id": 19, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 14}, {"name": "Stephen Bishop", "character": "Marine Guard", "id": 55205, "credit_id": "52fe49a4c3a36847f81a4f13", "cast_id": 20, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 15}, {"name": "Tanit Phoenix", "character": "Hostess", "id": 37769, "credit_id": "52fe49a4c3a36847f81a4f83", "cast_id": 40, "profile_path": "/AdFpu2aVEvS9ZihuxM1EGjafFES.jpg", "order": 16}], "directors": [{"name": "Daniel Espinosa", "department": "Directing", "job": "Director", "credit_id": "52fe49a4c3a36847f81a4ecd", "profile_path": "/q7OXWizbUr6fdDAkEJiOynR4Zh1.jpg", "id": 125738}], "vote_average": 6.1, "runtime": 115}, "59962": {"poster_path": "/8eqEw3NGdqAfGtHyCTiuoMb4RrM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.", "video": false, "id": 59962, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "This Means War", "tagline": "It's SPY Against SPY", "vote_count": 598, "homepage": "http://www.thismeanswarmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1596350", "adult": false, "backdrop_path": "/aJh5rFH6jQRqvZyd0HR8BMiHhRn.jpg", "production_companies": [{"name": "Overbrook Films", "id": 907}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2012-02-17", "popularity": 0.953831210427114, "original_title": "This Means War", "budget": 65000000, "cast": [{"name": "Reese Witherspoon", "character": "Lauren", "id": 368, "credit_id": "52fe49a4c3a36847f81a4fb9", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Chris Pine", "character": "FDR Foster", "id": 62064, "credit_id": "52fe49a4c3a36847f81a4fbd", "cast_id": 4, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 1}, {"name": "Tom Hardy", "character": "Tuck", "id": 2524, "credit_id": "52fe49a4c3a36847f81a4fc9", "cast_id": 7, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 2}, {"name": "Laura Vandervoort", "character": "Britta", "id": 43286, "credit_id": "52fe49a4c3a36847f81a4fc1", "cast_id": 5, "profile_path": "/5IWtsAzhSISq1gGxFx9G3kONprX.jpg", "order": 3}, {"name": "Angela Bassett", "character": "Collins", "id": 9780, "credit_id": "52fe49a4c3a36847f81a4fc5", "cast_id": 6, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 4}, {"name": "Kasey Ryne Mazak", "character": "Ken", "id": 1048580, "credit_id": "52fe49a4c3a36847f81a4fd3", "cast_id": 9, "profile_path": "/lSpgCJ5bkTfz7en5uCXjEKZwYKW.jpg", "order": 5}, {"name": "Warren Christie", "character": "Steve", "id": 232525, "credit_id": "52fe49a4c3a36847f81a4fe9", "cast_id": 13, "profile_path": "/AhIoN1YIXpTxWAgf4lTyR30oU8Y.jpg", "order": 6}, {"name": "Natassia Malthe", "character": "Xenia", "id": 21430, "credit_id": "52fe49a4c3a36847f81a4fed", "cast_id": 14, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 7}, {"name": "Til Schweiger", "character": "Heinrich", "id": 1844, "credit_id": "52fe49a4c3a36847f81a4ff1", "cast_id": 15, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 8}, {"name": "Chelsea Handler", "character": "Trish", "id": 151254, "credit_id": "52fe49a4c3a36847f81a4ff5", "cast_id": 16, "profile_path": "/pACHYdiEy4NHtu4bJIgKqeRji85.jpg", "order": 9}, {"name": "John Paul Ruttan", "character": "Joe", "id": 1154244, "credit_id": "52fe49a4c3a36847f81a4ff9", "cast_id": 17, "profile_path": "/zt8R71Ec4WqHxLUNgVYfiJlXtbm.jpg", "order": 10}, {"name": "Abigail Spencer", "character": "Katie", "id": 123725, "credit_id": "52fe49a4c3a36847f81a4ffd", "cast_id": 18, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 11}, {"name": "Rosemary Harris", "character": "Nana Foster", "id": 18998, "credit_id": "52fe49a4c3a36847f81a5001", "cast_id": 19, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 12}, {"name": "George Touliatos", "character": "Grandpa Foster", "id": 59179, "credit_id": "52fe49a4c3a36847f81a5005", "cast_id": 20, "profile_path": "/5dhhJXgozmVffYlJiOweZIMPvSo.jpg", "order": 13}, {"name": "Clint Carleton", "character": "Jonas", "id": 84338, "credit_id": "52fe49a4c3a36847f81a5009", "cast_id": 21, "profile_path": "/9LlwEeJiVtQsvBTdB87M9fk7Nw0.jpg", "order": 14}, {"name": "Leela Savasta", "character": "Kelly", "id": 58399, "credit_id": "52fe49a4c3a36847f81a500d", "cast_id": 22, "profile_path": "/ynkdwkDXqnqYPkrwmsh5xDpuyWo.jpg", "order": 15}, {"name": "Paul Wu", "character": "Korean Leader", "id": 206861, "credit_id": "52fe49a4c3a36847f81a5011", "cast_id": 23, "profile_path": "/lWitc67iWGq4Jd3LjYV3vqD9uVq.jpg", "order": 16}, {"name": "Daren A. Herbert", "character": "Agent Bothwick", "id": 211907, "credit_id": "52fe49a4c3a36847f81a5015", "cast_id": 24, "profile_path": "/tzfTnJsCKwWJRHrjtboFMzJZIou.jpg", "order": 17}, {"name": "Kevin O'Grady", "character": "Agent Boyles", "id": 205560, "credit_id": "52fe49a4c3a36847f81a5019", "cast_id": 25, "profile_path": "/sv7mkS8La7wVlo2mO5KPla9IhCi.jpg", "order": 18}, {"name": "Jesse Reid", "character": "Agent Dickerman", "id": 228890, "credit_id": "52fe49a4c3a36847f81a501d", "cast_id": 26, "profile_path": "/wl5wKdhMBPJMdPS3xRa2vK8ah8i.jpg", "order": 19}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe49a4c3a36847f81a4fcf", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.8, "runtime": 97}, "2619": {"poster_path": "/nP4O0DUMvqlxvptcjOHdyzK0T2Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62599495, "overview": "A successful businessman falls in love with the girl of his dreams. There's one big complication though; he's fallen hook, line and sinker for a mermaid.", "video": false, "id": 2619, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Splash", "tagline": "Allen Bauer Thought He'd Never Find The Right Woman... He Was Only Half Wrong!", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9uSHQAAUYFt6WSL2sz9zgvnXnvk.jpg", "poster_path": "/tI0RB8ezHm7NMRuLfWIh4mWuGXY.jpg", "id": 248126, "name": "Splash Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0088161", "adult": false, "backdrop_path": "/mHZ9i2NWnVlds80l1xrUgzTIqWf.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1984-03-08", "popularity": 0.296377661581804, "original_title": "Splash", "budget": 8000000, "cast": [{"name": "Tom Hanks", "character": "Allen Bauer", "id": 31, "credit_id": "52fe4360c3a36847f804faaf", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Daryl Hannah", "character": "Madison", "id": 589, "credit_id": "52fe4360c3a36847f804fab3", "cast_id": 2, "profile_path": "/ekNHIbvMUa9MkLUmWMY9V3lmRqy.jpg", "order": 1}, {"name": "Eugene Levy", "character": "Walter Kornbluth", "id": 26510, "credit_id": "52fe4360c3a36847f804fab7", "cast_id": 3, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 2}, {"name": "John Candy", "character": "Freddie Bauer", "id": 7180, "credit_id": "52fe4360c3a36847f804facd", "cast_id": 7, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 3}, {"name": "Dody Goodman", "character": "Mrs. Stimler", "id": 8903, "credit_id": "52fe4360c3a36847f804fae9", "cast_id": 12, "profile_path": "/hLWhBWoSrBGhO9kUJiG8Q4Qy4EV.jpg", "order": 4}, {"name": "Shecky Greene", "character": "Mr. Buyrite", "id": 27514, "credit_id": "52fe4360c3a36847f804faed", "cast_id": 13, "profile_path": "/50sKFzbrmgY87HUIgLewvgMYF6n.jpg", "order": 5}, {"name": "Richard B. Shull", "character": "Dr. Ross", "id": 27515, "credit_id": "52fe4360c3a36847f804faf1", "cast_id": 14, "profile_path": "/eDosLV4XIsZoARHm77evMPACHUs.jpg", "order": 6}, {"name": "Bobby Di Cicco", "character": "Jerry", "id": 27516, "credit_id": "52fe4360c3a36847f804faf5", "cast_id": 15, "profile_path": "/qD8pDomLp2BQeXn3JIHQizDEPOb.jpg", "order": 7}, {"name": "Howard Morris", "character": "Dr. Zidell", "id": 27517, "credit_id": "52fe4360c3a36847f804faf9", "cast_id": 16, "profile_path": "/dYOSuyGJg5oOS31Ls8sNvvjogw2.jpg", "order": 8}, {"name": "Lowell Ganz", "character": "Stan", "id": 27518, "credit_id": "52fe4360c3a36847f804fafd", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Babaloo Mandel", "character": "Rudy", "id": 27519, "credit_id": "52fe4360c3a36847f804fb01", "cast_id": 18, "profile_path": null, "order": 10}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4360c3a36847f804fabd", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.4, "runtime": 111}, "59965": {"poster_path": "/cUT6NQP5LAJpmUoStGtXmvNt4zA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82087155, "overview": "A thriller centered on a young man who sets out to uncover the truth about his life after finding his baby photo on a missing persons website.", "video": false, "id": 59965, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Abduction", "tagline": "They stole his life. He's taking it back.", "vote_count": 301, "homepage": "http://www.abductionthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1600195", "adult": false, "backdrop_path": "/4h6c98SPvXCfmZ0Qn5TaCZisy2K.jpg", "production_companies": [{"name": "Tailor Made", "id": 24557}, {"name": "Lions Gate Films", "id": 35}, {"name": "Gotham Group", "id": 3672}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Quick Six Entertainment", "id": 24561}, {"name": "Mango Farms", "id": 24558}], "release_date": "2011-09-23", "popularity": 0.925122828940876, "original_title": "Abduction", "budget": 35000000, "cast": [{"name": "Taylor Lautner", "character": "Nathan", "id": 84214, "credit_id": "52fe49a5c3a36847f81a5137", "cast_id": 2, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 0}, {"name": "Lily Collins", "character": "Karen", "id": 112561, "credit_id": "52fe49a5c3a36847f81a513b", "cast_id": 3, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 1}, {"name": "Alfred Molina", "character": "Frank Burton", "id": 658, "credit_id": "52fe49a5c3a36847f81a513f", "cast_id": 4, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 2}, {"name": "Jason Isaacs", "character": "Kevin", "id": 11355, "credit_id": "52fe49a5c3a36847f81a5143", "cast_id": 5, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 3}, {"name": "Maria Bello", "character": "Mara", "id": 49, "credit_id": "52fe49a5c3a36847f81a5147", "cast_id": 6, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 4}, {"name": "Michael Nyqvist", "character": "Kozlow", "id": 6283, "credit_id": "52fe49a5c3a36847f81a514b", "cast_id": 7, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "Dr. Bennett", "id": 10205, "credit_id": "52fe49a5c3a36847f81a514f", "cast_id": 8, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Antonique Smith", "character": "Sandra Burns", "id": 171941, "credit_id": "52fe49a5c3a36847f81a5153", "cast_id": 9, "profile_path": "/rXnTrZbWtA2Mr1Teb9LB7berlha.jpg", "order": 7}, {"name": "Denzel Whitaker", "character": "Gilly", "id": 77278, "credit_id": "52fe49a5c3a36847f81a5157", "cast_id": 10, "profile_path": "/yN4ZZDDDJI2UoKVI1BlIWwd5mp8.jpg", "order": 8}, {"name": "Jake Andolina", "character": "CIA Man", "id": 132217, "credit_id": "54f191acc3a368324500145a", "cast_id": 58, "profile_path": null, "order": 9}, {"name": "Oriah Acima Andrews", "character": "Riah", "id": 1432979, "credit_id": "54f191c19251416b380013a5", "cast_id": 59, "profile_path": null, "order": 10}, {"name": "Ken Arnold", "character": "Thermal", "id": 572038, "credit_id": "54f191db9251416b2c0013b7", "cast_id": 60, "profile_path": "/19fy0tQQ70QpVG7XLOPKOsjnAIq.jpg", "order": 11}, {"name": "Steve Blass", "character": "Game Announcer", "id": 1432980, "credit_id": "54f191f3c3a3683248001738", "cast_id": 61, "profile_path": null, "order": 12}, {"name": "Derek Burnell", "character": "Hot Dog Vendor", "id": 1432981, "credit_id": "54f1920f9251416b350012ed", "cast_id": 62, "profile_path": null, "order": 13}, {"name": "Benjamin J. Cain Jr.", "character": "Driver", "id": 1430509, "credit_id": "54f192219251416b350012f3", "cast_id": 63, "profile_path": null, "order": 14}, {"name": "Holly Scott Cavanaugh", "character": "Mrs. Murphy", "id": 1432982, "credit_id": "54f19232c3a3683232001863", "cast_id": 64, "profile_path": null, "order": 15}, {"name": "Radick Cembrzynski", "character": "Kozlow's Tech", "id": 1432984, "credit_id": "54f19249c3a3683232001869", "cast_id": 65, "profile_path": null, "order": 16}, {"name": "Richard Cetrone", "character": "Gregory", "id": 12371, "credit_id": "54f1925b9251416b2f0014ac", "cast_id": 66, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 17}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe49a5c3a36847f81a5133", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 5.4, "runtime": 106}, "133694": {"poster_path": "/dzbv1mDRERrEvhUIJIRqvFB3IVL.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8138788, "overview": "A salesman for a natural gas company experiences life-changing events after arriving in a small town, where his corporation wants to tap into the available resources.", "video": false, "id": 133694, "genres": [{"id": 18, "name": "Drama"}], "title": "Promised Land", "tagline": "What's your price?", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2091473", "adult": false, "backdrop_path": "/a4TcSTendjjerZr3GuwVhwbppDp.jpg", "production_companies": [{"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Focus Features", "id": 10146}, {"name": "Media Farm", "id": 29311}, {"name": "Sunday Night", "id": 29312}, {"name": "Pearl Street Films", "id": 29313}, {"name": "Participant Media", "id": 6735}], "release_date": "2012-12-28", "popularity": 1.44259182010379, "original_title": "Promised Land", "budget": 15000000, "cast": [{"name": "Matt Damon", "character": "Steve Butler", "id": 1892, "credit_id": "52fe4bb8c3a368484e196937", "cast_id": 5, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "John Krasinski", "character": "Dustin Noble", "id": 17697, "credit_id": "52fe4bb8c3a368484e19693b", "cast_id": 6, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 1}, {"name": "Frances McDormand", "character": "Sue Thomason", "id": 3910, "credit_id": "52fe4bb8c3a368484e19693f", "cast_id": 7, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 2}, {"name": "Rosemarie DeWitt", "character": "Alice", "id": 14892, "credit_id": "52fe4bb8c3a368484e196943", "cast_id": 8, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 3}, {"name": "Lucas Black", "character": "Paul Geary", "id": 155, "credit_id": "52fe4bb8c3a368484e196947", "cast_id": 9, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Frank Yates", "id": 11066, "credit_id": "52fe4bb9c3a368484e19694b", "cast_id": 10, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Titus Welliver", "character": "Rob", "id": 39389, "credit_id": "52fe4bb9c3a368484e196999", "cast_id": 26, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 6}, {"name": "Tim Guinee", "character": "Drew", "id": 40275, "credit_id": "52fe4bb9c3a368484e19694f", "cast_id": 11, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 7}, {"name": "Scoot McNairy", "character": "Jeff Dennon", "id": 59233, "credit_id": "52fe4bb9c3a368484e196953", "cast_id": 12, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 8}, {"name": "Terry Kinney", "character": "David Stonehill", "id": 11067, "credit_id": "52fe4bb9c3a368484e196957", "cast_id": 13, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 9}, {"name": "Johnny Cicco", "character": "Donny", "id": 1083451, "credit_id": "52fe4bb9c3a368484e19695b", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sara Lindsey", "character": "Claire Allen", "id": 1098033, "credit_id": "52fe4bb9c3a368484e19695f", "cast_id": 15, "profile_path": "/jdsEJyq9JbvSq6gerWcei4q7fIE.jpg", "order": 11}, {"name": "Lennon Wynn", "character": "Lemonade Girl", "id": 1098034, "credit_id": "52fe4bb9c3a368484e196963", "cast_id": 16, "profile_path": "/vCQ9i5QfNb8JyNjRDPcT3xmacEP.jpg", "order": 12}, {"name": "Rosemary Howard", "character": "Spanish Teacher", "id": 130843, "credit_id": "52fe4bb9c3a368484e196967", "cast_id": 17, "profile_path": "/e85Daf6qGv9iCEfpoW2lHeWu1xw.jpg", "order": 13}, {"name": "John W. Iwanonkiw", "character": "Officer Breedlove", "id": 1098036, "credit_id": "52fe4bb9c3a368484e19696b", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Gus Van Sant", "department": "Directing", "job": "Director", "credit_id": "52fe4bb8c3a368484e196921", "profile_path": "/9VyGLQ5brcoyBFcvpXynTL6CtmT.jpg", "id": 5216}], "vote_average": 5.9, "runtime": 106}, "59967": {"poster_path": "/5jf80zzaD5JUPF2laZdH3J1gjxj.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47042000, "overview": "In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.", "video": false, "id": 59967, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Looper", "tagline": "Hunted By Your Future, Haunted By Your Past", "vote_count": 2578, "homepage": "http://loopermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1276104", "adult": false, "backdrop_path": "/cZkPJ0noQvcR3oCCZ4pwYZeWUYi.jpg", "production_companies": [{"name": "Ram Bergman Productions", "id": 11092}, {"name": "Endgame Entertainment", "id": 1205}, {"name": "DMG Entertainment", "id": 10289}, {"name": "FilmDistrict", "id": 7263}], "release_date": "2012-09-28", "popularity": 2.22573362848713, "original_title": "Looper", "budget": 30000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Joe", "id": 24045, "credit_id": "52fe49a5c3a36847f81a523f", "cast_id": 3, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Bruce Willis", "character": "Older Joe", "id": 62, "credit_id": "52fe49a5c3a36847f81a5243", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Sara", "id": 5081, "credit_id": "52fe49a5c3a36847f81a523b", "cast_id": 2, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "Paul Dano", "character": "Seth", "id": 17142, "credit_id": "52fe49a5c3a36847f81a524f", "cast_id": 7, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 3}, {"name": "Noah Segan", "character": "Kid Blue", "id": 48312, "credit_id": "52fe49a5c3a36847f81a52b7", "cast_id": 26, "profile_path": "/hxRWVwtxvzz0NTaaZMQwtPz8CDE.jpg", "order": 4}, {"name": "Piper Perabo", "character": "Suzie", "id": 15555, "credit_id": "52fe49a5c3a36847f81a5247", "cast_id": 5, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 5}, {"name": "Jeff Daniels", "character": "Abe", "id": 8447, "credit_id": "52fe49a5c3a36847f81a524b", "cast_id": 6, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 6}, {"name": "Pierce Gagnon", "character": "Cid", "id": 992427, "credit_id": "52fe49a5c3a36847f81a52bb", "cast_id": 27, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 7}, {"name": "Xu Qing", "character": "Old Joe's Wife (as Summer Qing)", "id": 78879, "credit_id": "52fe49a5c3a36847f81a52bf", "cast_id": 28, "profile_path": "/gRhCq9vBu8eLGKNWvmNbZ9xb1Z.jpg", "order": 8}, {"name": "Tracie Thoms", "character": "Beatrix", "id": 10580, "credit_id": "52fe49a5c3a36847f81a5253", "cast_id": 8, "profile_path": "/o52pNJgY0CsVOKj2abB3nIc5Dyy.jpg", "order": 9}, {"name": "Frank Brennan", "character": "Old Seth", "id": 565504, "credit_id": "52fe49a5c3a36847f81a52c3", "cast_id": 29, "profile_path": "/A1Z23UqiwBxX66iJTB4q9xjnG5P.jpg", "order": 10}, {"name": "Garret Dillahunt", "character": "Jesse", "id": 39520, "credit_id": "52fe49a5c3a36847f81a52c7", "cast_id": 30, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 11}, {"name": "Nick Gomez", "character": "Dale", "id": 84760, "credit_id": "52fe49a5c3a36847f81a52cb", "cast_id": 31, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 12}, {"name": "Marcus Hester", "character": "Zach", "id": 62076, "credit_id": "52fe49a5c3a36847f81a52cf", "cast_id": 32, "profile_path": "/mOlrvlDpYUzDJhG6yc2wiRCdH5X.jpg", "order": 13}, {"name": "Jon Eyez", "character": "Gat Man", "id": 231857, "credit_id": "52fe49a5c3a36847f81a52d3", "cast_id": 33, "profile_path": "/1v11aZ5TmwtORs10OcU4wzhX2NW.jpg", "order": 14}, {"name": "Kevin Stillwell", "character": "Gat Man", "id": 183099, "credit_id": "52fe49a5c3a36847f81a52dd", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Thirl Haston", "character": "Gat Man", "id": 1132300, "credit_id": "52fe49a5c3a36847f81a52e1", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "James Landry H\u00e9bert", "character": "Looper", "id": 1170659, "credit_id": "52fe49a5c3a36847f81a52e5", "cast_id": 37, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 17}, {"name": "Kenneth Brown Jr.", "character": "Looper", "id": 1088041, "credit_id": "52fe49a5c3a36847f81a52e9", "cast_id": 38, "profile_path": "/kGGEedmcWvH1EpjyqEimH9pEgYn.jpg", "order": 18}, {"name": "Cody Wood", "character": "Looper", "id": 1132301, "credit_id": "52fe49a5c3a36847f81a52ed", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Adam Boyer", "character": "Tye", "id": 111693, "credit_id": "52fe49a5c3a36847f81a52f1", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Kamden Beauchamp", "character": "Daniel", "id": 1271661, "credit_id": "52fe49a5c3a36847f81a52f5", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Sylvia Jefferies", "character": "Neighbor Girl", "id": 1104568, "credit_id": "52fe49a5c3a36847f81a52f9", "cast_id": 42, "profile_path": "/jtbJjvDrGAuBW3OGHSCGekuVo8J.jpg", "order": 22}, {"name": "Ian Patrick", "character": "Beggar Kid", "id": 1256260, "credit_id": "530f4297925141736c000b03", "cast_id": 43, "profile_path": "/53Dq8lug1bSWwlTRr7uzUzR5UpS.jpg", "order": 23}], "directors": [{"name": "Rian Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe49a5c3a36847f81a5237", "profile_path": "/pCdsaqBaG6SozL5HGwVRyIfjWtM.jpg", "id": 67367}], "vote_average": 6.4, "runtime": 118}, "59968": {"poster_path": "/yEKHFUkFP6bGfsy9aNRA6IscB6b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17273593, "overview": "Everybody has one. The sibling who is always just a little bit behind the curve when it comes to getting his life together. For sisters Liz (Emily Mortimer), Miranda (Elizabeth Banks) and Natalie (Zooey Deschanel), that person is their perennially upbeat brother Ned (Paul Rudd), an erstwhile organic farmer whose willingness to rely on the honesty of mankind is a less-than-optimum strategy for a tidy, trouble-free existence. Ned may be utterly lacking in common sense, but he is their brother and so, after his girlfriend dumps him and boots him off the farm, his sisters once again come to his rescue. As Liz, Miranda and Natalie each take a turn at housing Ned, their brother's unfailing commitment to honesty creates more than a few messes in their comfortable routines. But as each of their lives begins to unravel, Ned's family comes to realize that maybe, in believing and trusting the people around him, Ned isn't such an idiot after all.", "video": false, "id": 59968, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Our Idiot Brother", "tagline": "Everybody has one.", "vote_count": 107, "homepage": "http://www.ouridiotbrother.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1637706", "adult": false, "backdrop_path": "/lAmJ2RomLgS6wjpBWlT7WNjEiv6.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}], "release_date": "2011-08-26", "popularity": 0.655199103500401, "original_title": "Our Idiot Brother", "budget": 10000000, "cast": [{"name": "Paul Rudd", "character": "Ned", "id": 22226, "credit_id": "52fe49a5c3a36847f81a533d", "cast_id": 2, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Miranda", "id": 9281, "credit_id": "52fe49a5c3a36847f81a5341", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Natalie", "id": 11664, "credit_id": "52fe49a5c3a36847f81a5345", "cast_id": 4, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Emily Mortimer", "character": "Liz", "id": 1246, "credit_id": "52fe49a5c3a36847f81a5349", "cast_id": 5, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 3}, {"name": "Hugh Dancy", "character": "Christian", "id": 12791, "credit_id": "52fe49a5c3a36847f81a534d", "cast_id": 6, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 4}, {"name": "Steve Coogan", "character": "Dylan", "id": 4581, "credit_id": "52fe49a5c3a36847f81a5351", "cast_id": 7, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 5}, {"name": "Kathryn Hahn", "character": "Janet", "id": 17696, "credit_id": "52fe49a5c3a36847f81a5355", "cast_id": 8, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 6}, {"name": "Rashida Jones", "character": "Cindy", "id": 80591, "credit_id": "52fe49a5c3a36847f81a5359", "cast_id": 9, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 7}, {"name": "Bob Stephenson", "character": "Washburn", "id": 17449, "credit_id": "534c6a98c3a36813bb0000b6", "cast_id": 29, "profile_path": "/jHjchnxDsghomSglNryppVWdBGC.jpg", "order": 8}, {"name": "Adam Scott", "character": "Jeremy", "id": 36801, "credit_id": "534c6aa8c3a36813c90000d2", "cast_id": 30, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 9}, {"name": "Shirley Knight", "character": "Ilene", "id": 28778, "credit_id": "534c6acbc3a36813a20000be", "cast_id": 31, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 10}], "directors": [{"name": "Jesse Peretz", "department": "Directing", "job": "Director", "credit_id": "52fe49a5c3a36847f81a5339", "profile_path": "/1oLwXu3xXFzcaMv1hMRb8rrngbn.jpg", "id": 130816}], "vote_average": 5.6, "runtime": 90}, "27205": {"poster_path": "/tAXARVreJnWfoANIHASmgYk4SB0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 825500000, "overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.", "video": false, "id": 27205, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Inception", "tagline": "Your mind is the scene of the crime.", "vote_count": 6571, "homepage": "http://inceptionmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1375666", "adult": false, "backdrop_path": "/s2bT29y0ngXxxu2IA8AOzzXTRhd.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Syncopy", "id": 9996}], "release_date": "2010-07-16", "popularity": 4.50571625286968, "original_title": "Inception", "budget": 160000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Dom Cobb", "id": 6193, "credit_id": "52fe4534c3a368484e04de03", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Joseph Gordon-Levitt", "character": "Arthur", "id": 24045, "credit_id": "52fe4534c3a368484e04de0b", "cast_id": 3, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 1}, {"name": "Ellen Page", "character": "Ariadne", "id": 27578, "credit_id": "52fe4534c3a368484e04de13", "cast_id": 5, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 2}, {"name": "Tom Hardy", "character": "Eames", "id": 2524, "credit_id": "52fe4534c3a368484e04de1b", "cast_id": 7, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 3}, {"name": "Ken Watanabe", "character": "Saito", "id": 3899, "credit_id": "52fe4534c3a368484e04de07", "cast_id": 2, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 4}, {"name": "Cillian Murphy", "character": "Robert Fischer", "id": 2037, "credit_id": "52fe4534c3a368484e04de1f", "cast_id": 8, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Mal", "id": 8293, "credit_id": "52fe4534c3a368484e04de0f", "cast_id": 4, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Michael Caine", "character": "Miles", "id": 3895, "credit_id": "52fe4534c3a368484e04de17", "cast_id": 6, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 7}, {"name": "Dileep Rao", "character": "Yusuf", "id": 95697, "credit_id": "52fe4534c3a368484e04de4f", "cast_id": 19, "profile_path": "/f9xQkvWw5guOePcCxkso1i09w12.jpg", "order": 8}, {"name": "Tom Berenger", "character": "Browning", "id": 13022, "credit_id": "52fe4534c3a368484e04de23", "cast_id": 9, "profile_path": "/gueEBgqv1sWFemMXyI4TJ2peuMA.jpg", "order": 9}, {"name": "Pete Postlethwaite", "character": "Maurice Fischer", "id": 4935, "credit_id": "52fe4534c3a368484e04de59", "cast_id": 22, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 10}, {"name": "Lukas Haas", "character": "Nash", "id": 526, "credit_id": "52fe4534c3a368484e04de27", "cast_id": 10, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 11}, {"name": "Talulah Riley", "character": "Blonde", "id": 66441, "credit_id": "52fe4534c3a368484e04de99", "cast_id": 89, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 12}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4534c3a368484e04de4b", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.6, "runtime": 148}, "248390": {"poster_path": "/mvciZQYxQkHab2RmLaCLNmtLpGQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Leslie Konda young talented French footballer spotted in his teens by Didier , a small-scale agent who was able to take under his wing , has signed its first contract striker in a large Spanish club . At the same time, his growing reputation and its origins Botswanga , small, poor state of Central Africa, earned him an invitation by the President of the Republic in person Babimbi Bobo , a football enthusiast, freshly installed in power after a coup military state. Leslie therefore went for the first time in the country of his ancestors accompanied by Didier to be decorated by the President Bobo which quickly turns out, despite his great humanist discourse be a megalomaniac and paranoid dictator under the bad influence of his wife .dropoff window Hardly have they landed Bobo enters into a sordid deal with Didier put pressure on his player so that it plays for the national team : Crocodiles of Botswanga ...", "video": false, "id": 248390, "genres": [{"id": 35, "name": "Comedy"}], "title": "Le Crocodile du Botswanga", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2969776", "adult": false, "backdrop_path": "/5L4uKP7JjMcmUhgUwMVgsdWTxXQ.jpg", "production_companies": [{"name": "Mars Distribution", "id": 2908}, {"name": "M6 Films", "id": 1115}, {"name": "Mars Films", "id": 819}, {"name": "Legend Films", "id": 3794}], "release_date": "2014-02-19", "popularity": 0.239598843178424, "original_title": "Le Crocodile du Botswanga", "budget": 10916704, "cast": [{"name": "Fabrice Ebou\u00e9", "character": "Didier", "id": 544655, "credit_id": "52fe4f31c3a36847f82c4761", "cast_id": 1, "profile_path": "/wqqKuqmIGQYcvQANJwJm6nnq8Pd.jpg", "order": 0}, {"name": "Thomas Ngijol", "character": "Capitaine Bobo", "id": 147042, "credit_id": "52fe4f31c3a36847f82c4765", "cast_id": 2, "profile_path": "/kbNMgC4Iv4nGYd3FgGA4GQRpGdE.jpg", "order": 1}, {"name": "Franck de la Personne", "character": "Pierre", "id": 41528, "credit_id": "52fe4f31c3a36847f82c4769", "cast_id": 3, "profile_path": "/9vOlxvaGni3KvtvzYcZ88VCQg7C.jpg", "order": 2}, {"name": "Etienne Chicot", "character": "Taucard", "id": 150792, "credit_id": "52fe4f31c3a36847f82c476d", "cast_id": 4, "profile_path": "/pYbudifKWa0sYY5QkQc5YKLHfMf.jpg", "order": 3}, {"name": "Eriq Ebouaney", "character": "Lieutenant Yaya", "id": 25078, "credit_id": "52fe4f31c3a36847f82c4771", "cast_id": 5, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 4}, {"name": "Claudia Tagbo", "character": "Jacqueline", "id": 1192468, "credit_id": "52fe4f32c3a36847f82c4775", "cast_id": 6, "profile_path": "/zqbfQ64B7eNFZSzPtDfDWWq2RrF.jpg", "order": 5}], "directors": [{"name": "Fabrice Ebou\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4f32c3a36847f82c477b", "profile_path": "/wqqKuqmIGQYcvQANJwJm6nnq8Pd.jpg", "id": 544655}], "vote_average": 4.4, "runtime": 90}, "43593": {"poster_path": "/zghq2XWVP1Aa6OPCddOwzXec0Zo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24995888, "overview": "Each year the population of sleepy Lake Victoria, Arizona explodes from 5,000 to 50,000 residents for the annual Spring Break celebration. But then, an earthquake opens an underwater chasm, releasing an enormous swarm of ancient Piranha that have been dormant for thousands of years, now with a taste for human flesh. This year, there's something more to worry about than the usual hangovers and complaints from locals, a new type of terror is about to be cut loose on Lake Victoria.", "video": false, "id": 43593, "genres": [{"id": 27, "name": "Horror"}], "title": "Piranha 3D", "tagline": "Sea, sex and... blood.", "vote_count": 161, "homepage": "http://www.piranha-3d.com", "belongs_to_collection": {"backdrop_path": "/6FzU0eEVXOizfDEdJUlaCEt2t3m.jpg", "poster_path": "/gjFaylmB7ZMK7BsKzAcuu0UKc4j.jpg", "id": 104830, "name": "Piranha 3D Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0464154", "adult": false, "backdrop_path": "/pX7Cpy6mIejuk1dWxJ1LwvZcVmt.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Chako Film Company", "id": 7332}, {"name": "Dimension Films", "id": 7405}, {"name": "Intellectual Properties Worldwide", "id": 18524}, {"name": "Aja / Levasseur Productions", "id": 22596}], "release_date": "2010-08-20", "popularity": 1.20746962158064, "original_title": "Piranha 3D", "budget": 24000000, "cast": [{"name": "Elisabeth Shue", "character": "Julie Forester", "id": 1951, "credit_id": "52fe4652c3a36847f80f8b05", "cast_id": 23, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 0}, {"name": "Adam Scott", "character": "Novak Radzinsky", "id": 36801, "credit_id": "52fe4652c3a36847f80f8b09", "cast_id": 24, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 1}, {"name": "Jerry O'Connell", "character": "Derrick Jones", "id": 3035, "credit_id": "52fe4652c3a36847f80f8b0d", "cast_id": 25, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 2}, {"name": "Steven R. McQueen", "character": "Jake Forester", "id": 88699, "credit_id": "52fe4652c3a36847f80f8b15", "cast_id": 27, "profile_path": "/5a5l2rCeWoG2NuHfHXZDBJVwAZ2.jpg", "order": 3}, {"name": "Jessica Szohr", "character": "Kelly Driscoll", "id": 130782, "credit_id": "52fe4652c3a36847f80f8b19", "cast_id": 28, "profile_path": "/ijp9eZ0Toq2WfrHwThfLRmGugWD.jpg", "order": 4}, {"name": "Ving Rhames", "character": "Deputy Fallon", "id": 10182, "credit_id": "52fe4652c3a36847f80f8b11", "cast_id": 26, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 5}, {"name": "Dina Meyer", "character": "Paula Montellano", "id": 2133, "credit_id": "52fe4652c3a36847f80f8b1d", "cast_id": 29, "profile_path": "/a208ijs7X3u8lPzKWHeXSp3PiMd.jpg", "order": 6}, {"name": "Kelly Brook", "character": "Danni", "id": 38561, "credit_id": "52fe4652c3a36847f80f8b21", "cast_id": 30, "profile_path": "/e54Ib0yKgNqH2Zlwjr7NESbMyu9.jpg", "order": 7}, {"name": "Richard Dreyfuss", "character": "Matthew Boyd", "id": 3037, "credit_id": "52fe4652c3a36847f80f8b25", "cast_id": 31, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 8}, {"name": "Christopher Lloyd", "character": "Henry Goodman", "id": 1062, "credit_id": "52fe4652c3a36847f80f8b29", "cast_id": 32, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 9}, {"name": "Riley Steele", "character": "Crystal", "id": 76582, "credit_id": "5510778692514146a000ce2e", "cast_id": 49, "profile_path": "/3WZXVbYQsqCQrmQjGiAb6BokkrD.jpg", "order": 10}, {"name": "Cody Longo", "character": "Todd Dupree", "id": 87567, "credit_id": "53c0430ec3a3684cdb005c44", "cast_id": 47, "profile_path": "/lYHftZ1nckHGsUyBKDgsRUNb2v6.jpg", "order": 12}, {"name": "Ricardo Antonio Chavira", "character": "Sam", "id": 80967, "credit_id": "53c04337c3a3684cf40053a4", "cast_id": 48, "profile_path": "/4BxXzT10wfg9MSxUEJmwHgbSJFd.jpg", "order": 13}, {"name": "Paul Scheer", "character": "Andrew", "id": 59843, "credit_id": "52fe4652c3a36847f80f8b2d", "cast_id": 34, "profile_path": "/A81J8vYUdhVGhXFac1XHy2xO5QD.jpg", "order": 14}, {"name": "Eli Roth", "character": "Wet T-Shirt Host", "id": 16847, "credit_id": "52fe4652c3a36847f80f8b35", "cast_id": 36, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 15}, {"name": "Gianna Michaels", "character": "Parasailing Girl", "id": 125610, "credit_id": "5523568fc3a368333a005761", "cast_id": 51, "profile_path": "/mCriCcaW5tFzNIxEYfSa7ixGzU3.jpg", "order": 17}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe4652c3a36847f80f8afb", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 5.3, "runtime": 88}, "8271": {"poster_path": "/eyQ7vWEm2SClbAlNLTOhQhkSkFF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117573043, "overview": "Kale is a 17-year-old placed under house arrest after punching his teacher. He is confined to his house, and decides to use his free time spying on his neighbors. Things start to get weird when guests enter the Turner's house and don't come back out. Kale and his friends, Ronnie and Ashley, start to grow more and more interested in what is actually happening within the house of Robert Turner.", "video": false, "id": 8271, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Disturbia", "tagline": "The quieter the street, the darker the secrets....", "vote_count": 239, "homepage": "http://www.disturbia.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0486822", "adult": false, "backdrop_path": "/7MwVv7CXQ9hzLeGx2a4QWUEEC5J.jpg", "production_companies": [{"name": "Montecito Picture Company, The", "id": 4607}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Paramount Pictures", "id": 4}, {"name": "Cold Spring Pictures", "id": 2363}], "release_date": "2007-04-13", "popularity": 0.836599832595636, "original_title": "Disturbia", "budget": 20000000, "cast": [{"name": "Shia LaBeouf", "character": "Kale Brecht", "id": 10959, "credit_id": "52fe449ac3a36847f809f80b", "cast_id": 1, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Sarah Roemer", "character": "Ashley Carlson", "id": 20376, "credit_id": "52fe449ac3a36847f809f80f", "cast_id": 2, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 1}, {"name": "Carrie-Anne Moss", "character": "Julie Brecht", "id": 530, "credit_id": "52fe449ac3a36847f809f813", "cast_id": 3, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 2}, {"name": "David Morse", "character": "Robert Turner", "id": 52, "credit_id": "52fe449ac3a36847f809f817", "cast_id": 4, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 3}, {"name": "Aaron Yoo", "character": "Ronnie", "id": 54247, "credit_id": "52fe449ac3a36847f809f81b", "cast_id": 5, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 4}, {"name": "Jose Pablo Cantillo", "character": "Officer Gutierrez", "id": 20191, "credit_id": "52fe449ac3a36847f809f81f", "cast_id": 6, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 5}, {"name": "Matt Craven", "character": "Daniel Brecht", "id": 13525, "credit_id": "52fe449ac3a36847f809f823", "cast_id": 7, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 6}, {"name": "Viola Davis", "character": "Detective Parker", "id": 19492, "credit_id": "52fe449ac3a36847f809f86f", "cast_id": 21, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 7}, {"name": "Brandon Caruso", "character": "Greenwood Boy", "id": 1386253, "credit_id": "5469c89a22136e68cf002df6", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Luciano Rauso", "character": "Greenwood Boy", "id": 1386254, "credit_id": "5469c8a922136e68c7002d1e", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Daniel Caruso", "character": "Greenwood Boy", "id": 1386255, "credit_id": "5469c90d22136e68c90031f8", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Elyse Mirto", "character": "Mrs. Carlson", "id": 1074628, "credit_id": "5469c92122136e68c90031fd", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Kevin Quinn ", "character": "Mr. Carlson", "id": 582716, "credit_id": "5469c93522136e284f000c7c", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Suzanne Rico", "character": "News Anchor", "id": 1237614, "credit_id": "5469c94f22136e284f000c80", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Kent Shocknek", "character": "News Anchor", "id": 79086, "credit_id": "5469c96aeaeb816b43002e32", "cast_id": 28, "profile_path": "/zmX6fNZ7zH18FokBGv5r1sfPmGw.jpg", "order": 14}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809f829", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 6.4, "runtime": 105}, "2636": {"poster_path": "/flK0OtdFRvfbs5BixEqU327H8ZB.jpg", "production_countries": [{"iso_3166_1": "PE", "name": "Peru"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170000000, "overview": "May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert to kill her parent's killers. When Ned Trent, embittered ex-partner of Quick's is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.", "video": false, "id": 2636, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Specialist", "tagline": "The government taught him to kill. Now he's using his skills to help a woman seek revenge against the Miami underworld.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111255", "adult": false, "backdrop_path": "/dcHU8hCNqo5TEPLJSX4nFW2jDVY.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Iguana Producciones", "id": 11134}], "release_date": "1994-10-07", "popularity": 0.77892177290399, "original_title": "The Specialist", "budget": 45000000, "cast": [{"name": "Sylvester Stallone", "character": "Ray Quick", "id": 16483, "credit_id": "52fe4361c3a36847f804fd67", "cast_id": 8, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Sharon Stone", "character": "May Munro", "id": 4430, "credit_id": "52fe4361c3a36847f804fd6b", "cast_id": 9, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 1}, {"name": "James Woods", "character": "Ned Trent", "id": 4512, "credit_id": "52fe4361c3a36847f804fd6f", "cast_id": 10, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 2}, {"name": "Rod Steiger", "character": "Joe Leon", "id": 522, "credit_id": "52fe4361c3a36847f804fd73", "cast_id": 11, "profile_path": "/4tRu2X6WFMxZbAT3L0ay2nvW1O.jpg", "order": 3}, {"name": "Eric Roberts", "character": "Tomas Leon", "id": 21315, "credit_id": "52fe4361c3a36847f804fd77", "cast_id": 12, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 4}, {"name": "Mario Ernesto S\u00e1nchez", "character": "Charlie", "id": 26651, "credit_id": "52fe4361c3a36847f804fd7b", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Sergio Dor\u00e9 Jr.", "character": "Strongarm", "id": 26652, "credit_id": "52fe4361c3a36847f804fd7f", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Chase Randolph", "character": "Stan Munro", "id": 26653, "credit_id": "52fe4361c3a36847f804fd83", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Jeana Bell", "character": "Alice Munro", "id": 26654, "credit_id": "52fe4361c3a36847f804fd87", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Brittany Paige Bouck", "character": "Young May", "id": 26655, "credit_id": "52fe4361c3a36847f804fd8b", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Emilio Estefan", "character": "Pianoplayer", "id": 26656, "credit_id": "52fe4361c3a36847f804fd8f", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "LaGaylia Frazier", "character": "Singer #1", "id": 1176261, "credit_id": "52fe4361c3a36847f804fd99", "cast_id": 20, "profile_path": "/wPorrajfTZKar9AQArCEEMKLu0D.jpg", "order": 11}], "directors": [{"name": "Luis Llosa", "department": "Directing", "job": "Director", "credit_id": "52fe4361c3a36847f804fd3f", "profile_path": null, "id": 26648}], "vote_average": 5.7, "runtime": 110}, "3170": {"poster_path": "/laABfcpEKweQsaZwCWzmGNUpij9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 267447150, "overview": "The animated story of Bambi, a young deer hailed as the 'Prince of the Forest' at his birth. As Bambi grows, he makes friends with the other animals of the forest, learns the skills needed to survive, and even finds love. One day, however, the hunters come, and Bambi must learn to be as brave as his father if he is to lead the other deer to safety.", "video": false, "id": 3170, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Bambi", "tagline": "A great love story.", "vote_count": 335, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pdeV9HC6ECDvUfICMWeMHvWsCIa.jpg", "poster_path": "/b941y7oiWBXJZaoWemW4exlpDxf.jpg", "id": 87250, "name": "Bambi Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0034492", "adult": false, "backdrop_path": "/ig4XAkoBAGFo2PG1ANjVYeAN2FA.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1942-08-12", "popularity": 1.25584239172027, "original_title": "Bambi", "budget": 858000, "cast": [{"name": "Hardie Albright", "character": "Adolescent Bambi (voice)", "id": 31702, "credit_id": "52fe438cc3a36847f805ca7d", "cast_id": 6, "profile_path": "/4wTdULXac5ewxYHyyMBlcnNex8l.jpg", "order": 0}, {"name": "Stan Alexander", "character": "Young Flower", "id": 31703, "credit_id": "52fe438cc3a36847f805ca81", "cast_id": 7, "profile_path": null, "order": 1}, {"name": "Peter Behn", "character": "Young Thumper", "id": 31704, "credit_id": "52fe438cc3a36847f805ca85", "cast_id": 8, "profile_path": "/A1686KHpRYtffORkQzjCd3EHKQ3.jpg", "order": 2}, {"name": "Donnie Dunagan", "character": "Young Bambi (Voice)", "id": 30161, "credit_id": "52fe438cc3a36847f805ca89", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Sam Edwards", "character": "Adult Thumper (voice)", "id": 31705, "credit_id": "52fe438cc3a36847f805ca8d", "cast_id": 10, "profile_path": "/7k4ezTf3mnHy6PEtYzVfhmjJngH.jpg", "order": 4}, {"name": "Thelma Boardman", "character": "Mrs. Quail (voice)", "id": 31706, "credit_id": "52fe438cc3a36847f805ca91", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Tim Davis", "character": "Adult Thumper / Adolescent Flower", "id": 31707, "credit_id": "52fe438cc3a36847f805ca95", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Marion Darlington", "character": "Birds", "id": 5463, "credit_id": "52fe438cc3a36847f805ca99", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Ann Gillis", "character": "Adult Faline", "id": 107445, "credit_id": "52fe438cc3a36847f805ca9d", "cast_id": 15, "profile_path": "/pj9tiEfMxDe4vedKtmlGu5oMB9m.jpg", "order": 8}, {"name": "Otis Harlan", "character": "Mr. Mole", "id": 5465, "credit_id": "52fe438cc3a36847f805caa1", "cast_id": 16, "profile_path": "/dvoCiNNoupmtAh3qUfBX5zOOO1P.jpg", "order": 9}, {"name": "Eddie Holden", "character": "Chipmunk", "id": 227460, "credit_id": "52fe438cc3a36847f805caa5", "cast_id": 17, "profile_path": "/8ObfPqjXG4ieuvpCpcRul5w2rEB.jpg", "order": 10}], "directors": [{"name": "David Hand", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805ca67", "profile_path": "/4VzUnNNHSwGT0qH99Zgd0nhmmIU.jpg", "id": 5446}, {"name": "James Algar", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805caab", "profile_path": "/3dSa9LsutXEjnsEuZfuIWznQkkC.jpg", "id": 5690}, {"name": "Samuel Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cab1", "profile_path": null, "id": 5691}, {"name": "Graham Heid", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cab7", "profile_path": null, "id": 150003}, {"name": "William Roberts", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cabd", "profile_path": "/mkfgT5RdFbFOwJpigXWALq9hOvz.jpg", "id": 11427}, {"name": "Paul Satterfield", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cac3", "profile_path": null, "id": 11428}, {"name": "Norman Wright", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cac9", "profile_path": null, "id": 160942}], "vote_average": 6.4, "runtime": 70}, "10830": {"poster_path": "/vddUwPL3L8MBH4FrEDCAZM9T6sj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33459416, "overview": "See the world from a kid's-eye view with Matilda, a modern fairytale that mixes hilarious humour with the magical message of love. Matilda is a super-smart little girl who's woefully misunderstood by her parents, her brother, and an evil school principal. But with the help of a brave best friend and a wonderful teacher, Matilda discovers she doesn't have to get mad to get even.", "video": false, "id": 10830, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Matilda", "tagline": "A little magic goes a long way.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117008", "adult": false, "backdrop_path": "/r8nIuvtJBmFvvW07KmOGKKm6NQF.jpg", "production_companies": [{"name": "Jersey Films", "id": 216}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1996-07-28", "popularity": 0.843524389321088, "original_title": "Matilda", "budget": 36000000, "cast": [{"name": "Mara Wilson", "character": "Matilda Wormwood", "id": 11717, "credit_id": "52fe43be9251416c7501c641", "cast_id": 1, "profile_path": "/lVfLBgPMUFcRd0eSF09dDW34nKH.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Harry Wormwood", "id": 518, "credit_id": "52fe43be9251416c7501c645", "cast_id": 2, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Embeth Davidtz", "character": "Miss Jennifer \"Jenny\" Honey", "id": 6368, "credit_id": "52fe43be9251416c7501c64d", "cast_id": 4, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 2}, {"name": "Rhea Perlman", "character": "Zinnia Wormwood", "id": 24203, "credit_id": "52fe43be9251416c7501c649", "cast_id": 3, "profile_path": "/cq7Cf4z3BHD9o58ki7MgCioty8q.jpg", "order": 3}, {"name": "Pam Ferris", "character": "Agatha Trunchbull", "id": 11213, "credit_id": "52fe43be9251416c7501c687", "cast_id": 14, "profile_path": "/i9ou0K069ce8rL1OeWEZRukCBCk.jpg", "order": 4}, {"name": "Paul Reubens", "character": "FBI Agent Bob", "id": 5129, "credit_id": "52fe43be9251416c7501c68b", "cast_id": 15, "profile_path": "/3g77Qz12qjCpVGfBP2kOPx4rRai.jpg", "order": 5}, {"name": "Tracey Walter", "character": "FBI Agent Bill", "id": 3801, "credit_id": "52fe43be9251416c7501c68f", "cast_id": 16, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 6}, {"name": "Brian Levinson", "character": "Michael 'Mikey' Wormwood", "id": 109693, "credit_id": "52fe43be9251416c7501c693", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Kiami Davael", "character": "Lavender", "id": 109694, "credit_id": "52fe43be9251416c7501c697", "cast_id": 18, "profile_path": null, "order": 8}], "directors": [{"name": "Danny DeVito", "department": "Directing", "job": "Director", "credit_id": "52fe43be9251416c7501c653", "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "id": 518}], "vote_average": 6.6, "runtime": 98}, "256591": {"poster_path": "/a4bDdCh2fh9hpc6aK0ghKzUZ2dl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A veteran grifter takes a young, attractive woman under his wing, but things get complicated when they become romantically involved.", "video": false, "id": 256591, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Focus", "tagline": "Never Drop The Con.", "vote_count": 219, "homepage": "http://focusmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2381941", "adult": false, "backdrop_path": "/czjU8NpPVTx5NzEk0zxe433xN9R.jpg", "production_companies": [{"name": "Zaftig Films", "id": 47586}, {"name": "Kramer & Sigman Films", "id": 21914}], "release_date": "2015-02-27", "popularity": 3.95461590318098, "original_title": "Focus", "budget": 0, "cast": [{"name": "Will Smith", "character": "Nicky", "id": 2888, "credit_id": "530789e0925141111100018d", "cast_id": 4, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Margot Robbie", "character": "Jess Barrett", "id": 234352, "credit_id": "530789e9925141110b00017c", "cast_id": 5, "profile_path": "/cdc4z3uOFUoM7VNq7FqLUVDalwf.jpg", "order": 2}, {"name": "Rodrigo Santoro", "character": "G\u00e1rriga", "id": 17289, "credit_id": "530789f69251411114000147", "cast_id": 6, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 3}, {"name": "Robert Taylor", "character": "McEwen", "id": 39545, "credit_id": "53c63397c3a3686255001bad", "cast_id": 7, "profile_path": "/aqRJQj0KBPhGLDxfmOAXCUzCcSJ.jpg", "order": 4}, {"name": "Gerald McRaney", "character": "Ownes", "id": 29512, "credit_id": "53c633a0c3a3686251001c12", "cast_id": 8, "profile_path": "/jPS0hN9T3JFhfMLEJ36LEwedTAz.jpg", "order": 5}, {"name": "Adrian Martinez", "character": "Farhad", "id": 94432, "credit_id": "5505d3799251412c05002f7c", "cast_id": 19, "profile_path": "/zDnnzak4BLb5dNc9taqLNprkRvw.jpg", "order": 6}, {"name": "BD Wong", "character": "Liyuan", "id": 14592, "credit_id": "5505d3a7c3a368262e002f3e", "cast_id": 20, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 7}, {"name": "Brennan Brown", "character": "Horst", "id": 1218149, "credit_id": "5505d3c7c3a3682529002f73", "cast_id": 21, "profile_path": "/si4VTKGM6dFyZ6liBSDbjCkn3bf.jpg", "order": 8}, {"name": "Dotan Bonen", "character": "Gordon", "id": 1440537, "credit_id": "5505d408c3a3682529002f7b", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Griff Furst", "character": "Gareth", "id": 76021, "credit_id": "5505d42dc3a36862e5002eda", "cast_id": 23, "profile_path": "/rRAtuKLOq27DFZ0MWu6FCVbbhS8.jpg", "order": 10}, {"name": "Stephanie Honor\u00e9", "character": "Janice", "id": 94427, "credit_id": "5505d444c3a36862e100303f", "cast_id": 24, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 11}, {"name": "David Stanford", "character": "Drunken Stranger", "id": 1319345, "credit_id": "5505d46f92514179fb000974", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Dominic Fumusa", "character": "Jared", "id": 154784, "credit_id": "5505d484c3a3682529002f83", "cast_id": 26, "profile_path": "/79mhkiUnN4CbRun195Qm5oJZIDw.jpg", "order": 13}, {"name": "Steve Kim", "character": "Liyuan\u0092s Bodyguard", "id": 1440538, "credit_id": "5505d49bc3a3686b75000954", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Don Yesso", "character": "Card Player / Football Coach", "id": 172734, "credit_id": "5505d4c892514174b000306b", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "Glenn Ficarra", "department": "Directing", "job": "Director", "credit_id": "530789649251411111000187", "profile_path": "/nYiriOot9jZihyuhH7utfTh7vtH.jpg", "id": 56411}, {"name": "John Requa", "department": "Directing", "job": "Director", "credit_id": "53078973925141110b000177", "profile_path": null, "id": 56412}], "vote_average": 6.5, "runtime": 104}, "10833": {"poster_path": "/2yiDk4RnGL01HvMxXu96J4zmjle.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Max and Page are a mother and daughter con team. Max seduces wealthy men into marrying her, and then Page seduces them into infidelity so Max can rake them over the divorce court coals. And then it's on to the next victim", "video": false, "id": 10833, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Heartbreakers", "tagline": "They Will Love You For Richer. And Leave You For Poorer!", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0125022", "adult": false, "backdrop_path": "/55XMmw8oAuW4VPqDnrPN5w3gfTO.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2001-03-23", "popularity": 0.736120139650473, "original_title": "Heartbreakers", "budget": 35000000, "cast": [{"name": "Sigourney Weaver", "character": "Max Conners", "id": 10205, "credit_id": "52fe43be9251416c7501c777", "cast_id": 1, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Jennifer Love Hewitt", "character": "Page Conners", "id": 33259, "credit_id": "52fe43be9251416c7501c77b", "cast_id": 2, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Dean Cumanno", "id": 11477, "credit_id": "52fe43be9251416c7501c77f", "cast_id": 3, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Gene Hackman", "character": "William B. Tensy", "id": 193, "credit_id": "52fe43be9251416c7501c783", "cast_id": 4, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 3}, {"name": "Jason Lee", "character": "Jack Withrowe", "id": 11662, "credit_id": "52fe43be9251416c7501c787", "cast_id": 5, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Anne Bancroft", "character": "Gloria Vogal", "id": 10774, "credit_id": "52fe43be9251416c7501c78b", "cast_id": 6, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 5}, {"name": "Stacey Travis", "character": "Nurse Gale Grey", "id": 31714, "credit_id": "52fe43be9251416c7501c7cb", "cast_id": 17, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 6}, {"name": "Jeffrey Jones", "character": "Mr. Appel", "id": 4004, "credit_id": "52fe43be9251416c7501c7cf", "cast_id": 18, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 7}, {"name": "Nora Dunn", "character": "Miss Madress", "id": 4496, "credit_id": "52fe43bf9251416c7501c7d3", "cast_id": 19, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 8}, {"name": "Sarah Silverman", "character": "Linda", "id": 7404, "credit_id": "52fe43bf9251416c7501c7d7", "cast_id": 20, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 9}, {"name": "Zach Galifianakis", "character": "Bill", "id": 58225, "credit_id": "52fe43bf9251416c7501c7db", "cast_id": 21, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 10}, {"name": "Michael Hitchcock", "character": "Dr. Arnold Davis", "id": 75463, "credit_id": "52fe43bf9251416c7501c7df", "cast_id": 22, "profile_path": "/6OuyZXfWMJ82c96VHOOLU1xFPG0.jpg", "order": 11}, {"name": "Carrie Fisher", "character": "Ms. Surpin", "id": 4, "credit_id": "52fe43bf9251416c7501c7e3", "cast_id": 23, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 12}, {"name": "Kevin Nealon", "character": "Man at the Bar", "id": 58478, "credit_id": "52fe43bf9251416c7501c7e7", "cast_id": 24, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 13}], "directors": [{"name": "David Mirkin", "department": "Directing", "job": "Director", "credit_id": "52fe43be9251416c7501c791", "profile_path": null, "id": 58178}], "vote_average": 5.3, "runtime": 123}, "2642": {"poster_path": "/oDxJfvHz6dEVvbTGH2SmLu5HA7q.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93354918, "overview": "Millionaire real estate developer George Wade doesn't make a move without Lucy Kelson, his multitasking chief counsel and virtual right arm. But after a year of calling the shots, Lucy is giving her two weeks' notice. It seems Lucy's finally free of George and his 24-hour requests, which included everything from taking care of George's clothing to handling his divorce settlements. But George has other ideas.", "video": false, "id": 2642, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Two Weeks Notice", "tagline": "A comedy about love at last glance.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0313737", "adult": false, "backdrop_path": "/8qhRVRsllClfhomp6oddvTTwtnl.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2002-12-18", "popularity": 0.742419921523952, "original_title": "Two Weeks Notice", "budget": 60000000, "cast": [{"name": "Sandra Bullock", "character": "Lucy Kelson", "id": 18277, "credit_id": "52fe4362c3a36847f80502d9", "cast_id": 8, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Hugh Grant", "character": "George Wade", "id": 3291, "credit_id": "52fe4362c3a36847f80502dd", "cast_id": 9, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 1}, {"name": "Alicia Witt", "character": "June Carver", "id": 3128, "credit_id": "52fe4362c3a36847f80502e1", "cast_id": 10, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 2}, {"name": "Dana Ivey", "character": "Ruth Kelson", "id": 13314, "credit_id": "52fe4362c3a36847f80502e5", "cast_id": 11, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 3}, {"name": "Robert Klein", "character": "Larry Kelson", "id": 26715, "credit_id": "52fe4362c3a36847f80502e9", "cast_id": 12, "profile_path": "/pDRrQXkFDomlFL9jnhBAjymLAGh.jpg", "order": 4}, {"name": "Heather Burns", "character": "Meryl Brooks", "id": 26716, "credit_id": "52fe4362c3a36847f80502ed", "cast_id": 13, "profile_path": "/3mgMhHwoVCw3VHORRPi8fB6wQXH.jpg", "order": 5}, {"name": "David Haig", "character": "Howard Wade", "id": 26717, "credit_id": "52fe4362c3a36847f80502f1", "cast_id": 14, "profile_path": "/5XwGvOPP5wh85CrPMycbj4573el.jpg", "order": 6}, {"name": "Dorian Missick", "character": "Tony", "id": 26718, "credit_id": "52fe4362c3a36847f80502f5", "cast_id": 15, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 7}, {"name": "Veanne Cox", "character": "Melanie Corman", "id": 26719, "credit_id": "52fe4362c3a36847f80502f9", "cast_id": 16, "profile_path": "/7fxVktlpPBAEWImceQB9wTPb90H.jpg", "order": 8}, {"name": "Janine LaManna", "character": "Elaine Cominsky", "id": 26720, "credit_id": "52fe4362c3a36847f80502fd", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Iraida Polanco", "character": "Rosario", "id": 26721, "credit_id": "52fe4362c3a36847f8050301", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Charlotte Maier", "character": "Helen Wade", "id": 26722, "credit_id": "52fe4362c3a36847f8050305", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Katheryn Winnick", "character": "Tiffany", "id": 26723, "credit_id": "52fe4362c3a36847f8050309", "cast_id": 20, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 12}, {"name": "Tim Kang", "character": "Paul the Attorney", "id": 52947, "credit_id": "52fe4362c3a36847f805030d", "cast_id": 21, "profile_path": "/1qKA4ODtnF6SiYuSfcC8x9dI7dD.jpg", "order": 13}], "directors": [{"name": "Marc Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4362c3a36847f80502b1", "profile_path": "/6842GmjEw9svtkqA3XhXWWNY7px.jpg", "id": 18323}], "vote_average": 5.7, "runtime": 101}, "68179": {"poster_path": "/ql8q3VrEWQ7h0zdrUj0NF9IAm5i.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Astronaut Scorch Supernova finds himself caught in a trap when he responds to an SOS from a notoriously dangerous alien planet.", "video": false, "id": 68179, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Escape from Planet Earth", "tagline": "Earth's greatest secrets are about to break out!", "vote_count": 159, "homepage": "http://www.escapeearthmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765446", "adult": false, "backdrop_path": "/w0no28UKW3Z9CIv9kTiCoan6RWl.jpg", "production_companies": [{"name": "Mainframe Entertainment", "id": 5024}], "release_date": "2013-02-14", "popularity": 0.903356545603129, "original_title": "Escape from Planet Earth", "budget": 0, "cast": [{"name": "Brendan Fraser", "character": "Scorch Supernova (Voice)", "id": 18269, "credit_id": "52fe4788c3a368484e0cc2cb", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Rob Corddry", "character": "Gary Supernova (voice)", "id": 52997, "credit_id": "52fe4788c3a368484e0cc2f3", "cast_id": 10, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 1}, {"name": "Ricky Gervais", "character": "Mr Bing (Voice)", "id": 17835, "credit_id": "52fe4788c3a368484e0cc315", "cast_id": 17, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 2}, {"name": "Jessica Alba", "character": "Lena (Voice)", "id": 56731, "credit_id": "52fe4788c3a368484e0cc2e7", "cast_id": 6, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 3}, {"name": "Sarah Jessica Parker", "character": "Kira Supernova (Voice)", "id": 520, "credit_id": "52fe4788c3a368484e0cc2eb", "cast_id": 7, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 4}, {"name": "Kaitlin Olson", "character": "Gabby Babblebrook", "id": 95102, "credit_id": "52fe4788c3a368484e0cc2ef", "cast_id": 9, "profile_path": "/oRSDYUN7fXVWHp7FNq1P874i1Yf.jpg", "order": 5}, {"name": "Ashley Eckstein", "character": "Alien", "id": 41345, "credit_id": "52fe4788c3a368484e0cc2f7", "cast_id": 11, "profile_path": "/aEAQPWFv2mlH2Pp9TPJMfIDnIOJ.jpg", "order": 6}, {"name": "Gregg Binkley", "character": "Ralph", "id": 170185, "credit_id": "52fe4788c3a368484e0cc2fb", "cast_id": 12, "profile_path": "/gTmsOFfFqHDcEzeqh3ezcSuk7TB.jpg", "order": 7}, {"name": "Sof\u00eda Vergara", "character": "Gabby (Voice)", "id": 63522, "credit_id": "52fe4788c3a368484e0cc319", "cast_id": 18, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 9}, {"name": "Steve Zahn", "character": "Hawk (Voice)", "id": 18324, "credit_id": "52fe4788c3a368484e0cc31d", "cast_id": 19, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 10}, {"name": "Craig Robinson", "character": "Doc (Voice)", "id": 64342, "credit_id": "52fe4788c3a368484e0cc321", "cast_id": 20, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 11}, {"name": "Jane Lynch", "character": "Io (Voice)", "id": 43775, "credit_id": "52fe4788c3a368484e0cc325", "cast_id": 21, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 12}, {"name": "Jonathan Morgan Heit", "character": "Kip Supernova (voice)", "id": 576511, "credit_id": "52fe4788c3a368484e0cc329", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Chris Parnell", "character": "Hammer (voice)", "id": 51382, "credit_id": "52fe4788c3a368484e0cc32d", "cast_id": 23, "profile_path": "/dLdXHfbJ7TMe3qbtNzPpSLuaMos.jpg", "order": 14}, {"name": "William Shatner", "character": "General Shanker (voice)", "id": 1748, "credit_id": "52fe4788c3a368484e0cc331", "cast_id": 24, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 15}, {"name": "Bob Bergen", "character": "3D Movie Guy (voice)", "id": 78317, "credit_id": "52fe4788c3a368484e0cc335", "cast_id": 25, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 16}, {"name": "George Lopez", "character": "Thurman (voice)", "id": 41798, "credit_id": "52fe4788c3a368484e0cc339", "cast_id": 26, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 17}], "directors": [{"name": "Callan Brunker", "department": "Directing", "job": "Director", "credit_id": "52fe4788c3a368484e0cc301", "profile_path": null, "id": 1098477}], "vote_average": 5.9, "runtime": 89}, "297556": {"poster_path": "/3n0zmm2dPF0TQt2ikJ2tUjKr2FT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the events of Justice League: War, Ocean Master and Black Manta have declared a war against the surface in retaliation of the aftermath of Apokoliptian-tyrant Darkseid's planetary invasion. Queen Atlanna seeks out her other son, Ocean Master\u2019s half-brother Arthur Curry, a half-human with aquatic powers with no knowledge of his Atlantean heritage, to restore balance. Living with powers he doesn\u2019t understand and seeing the danger around him, Curry takes steps to embrace his destiny, joining the Justice League, and with his new teammates he battles to save Earth from total destruction.", "video": false, "id": 297556, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Justice League: Throne of Atlantis", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3878542", "adult": false, "backdrop_path": "/yIAxebMW8bvGJhZO8Q3TSi4zMDQ.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Feature Animation", "id": 20734}], "release_date": "2015-01-27", "popularity": 1.74678299013691, "original_title": "Justice League: Throne of Atlantis", "budget": 3500000, "cast": [{"name": "Sean Astin", "character": "Shazam", "id": 1328, "credit_id": "543e4d800e0a266f8e001e48", "cast_id": 4, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 1}, {"name": "Steve Blum", "character": "Computer", "id": 81379, "credit_id": "543e4d8dc3a3682500001fd3", "cast_id": 5, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 2}, {"name": "Rosario Dawson", "character": "Wonder Woman", "id": 5916, "credit_id": "543e4d9cc3a368250d001cdd", "cast_id": 6, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 3}, {"name": "Nathan Fillion", "character": "Green Lantern", "id": 51797, "credit_id": "543e4dabc3a3682517001e3a", "cast_id": 7, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 4}, {"name": "Christopher Gorham", "character": "The Flash", "id": 53761, "credit_id": "543e4dbb0e0a266f8e001e58", "cast_id": 8, "profile_path": "/1fAcWAtGeTluNjbGVGxaShQD090.jpg", "order": 5}, {"name": "Sirena Irwin", "character": "Queen Atlanna", "id": 48163, "credit_id": "543e4dcf0e0a266f84001f20", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Matt Lanter", "character": "Aquaman / Arthur Curry", "id": 34202, "credit_id": "543e4de5c3a368250a001ea0", "cast_id": 10, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 7}, {"name": "Sumalee Montano", "character": "Mera", "id": 66655, "credit_id": "543e4df0c3a3682513001e16", "cast_id": 11, "profile_path": "/c3eoetU8QCfdc6F0N0QjJtGYjqs.jpg", "order": 8}, {"name": "Jerry O'Connell", "character": "Superman", "id": 3035, "credit_id": "543e4dffc3a368250a001ea8", "cast_id": 12, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 9}, {"name": "Jason O'Mara", "character": "Batman", "id": 183812, "credit_id": "543e4e0b0e0a266f81001e64", "cast_id": 13, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 10}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "543e4d3b0e0a266f8b001df9", "profile_path": null, "id": 105643}, {"name": "Ethan Spaulding", "department": "Directing", "job": "Director", "credit_id": "543e4d520e0a266f7a001f5f", "profile_path": null, "id": 529806}], "vote_average": 6.5, "runtime": 72}, "2649": {"poster_path": "/reLfX4fIasqLXCdgZ7vnnYWYhe3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109423648, "overview": "In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a coldhearted loner, receives an unusual present from his younger brother, Conrad -- a gift certificate to play a unique kind of game. In nary a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.", "video": false, "id": 2649, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Game", "tagline": "What do you get for the man who has everything?", "vote_count": 448, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119174", "adult": false, "backdrop_path": "/3Eux3wcYYb79D2sr8aA6BEH9kVl.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Popaganda Films", "id": 10164}, {"name": "A&B Producoes", "id": 1519}], "release_date": "1997-09-12", "popularity": 1.73882635140805, "original_title": "The Game", "budget": 50000000, "cast": [{"name": "Michael Douglas", "character": "Nicholas Van Orton", "id": 3392, "credit_id": "52fe4362c3a36847f80506d3", "cast_id": 10, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Sean Penn", "character": "Conrad Van Orton", "id": 2228, "credit_id": "52fe4362c3a36847f80506d7", "cast_id": 11, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Christine", "id": 13549, "credit_id": "52fe4362c3a36847f80506db", "cast_id": 12, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "James Rebhorn", "character": "Jim Feingold", "id": 8986, "credit_id": "52fe4363c3a36847f80506df", "cast_id": 13, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 3}, {"name": "Peter Donat", "character": "Samuel Sutherland", "id": 14849, "credit_id": "52fe4363c3a36847f80506e3", "cast_id": 14, "profile_path": "/uHnhxFAfc9mStZG2lFFyFPeJFYV.jpg", "order": 4}, {"name": "Armin Mueller-Stahl", "character": "Anson Baer", "id": 12647, "credit_id": "52fe4363c3a36847f80506e7", "cast_id": 15, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 5}, {"name": "Carroll Baker", "character": "Ilsa", "id": 14701, "credit_id": "52fe4363c3a36847f80506eb", "cast_id": 16, "profile_path": "/flubg7SaCJZdZbuLvtWYv13cAaS.jpg", "order": 6}, {"name": "Anna Katarina", "character": "Elizabeth", "id": 27570, "credit_id": "52fe4363c3a36847f80506ef", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Charles Martinet", "character": "Nicholas' Father", "id": 176340, "credit_id": "52fe4363c3a36847f80506f9", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Scott Hunter McGuire", "character": "Young Nicholas", "id": 1075080, "credit_id": "52fe4363c3a36847f80506fd", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Florentine Mocanu", "character": "Nicholas' Mother", "id": 1075081, "credit_id": "52fe4363c3a36847f8050701", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Elizabeth Dennehy", "character": "Maria", "id": 154954, "credit_id": "52fe4363c3a36847f8050705", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Caroline Barclay", "character": "Maggie", "id": 178446, "credit_id": "52fe4363c3a36847f8050709", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Daniel Schorr", "character": "Himself", "id": 553720, "credit_id": "52fe4363c3a36847f805070d", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "John Aprea", "character": "Power Executive", "id": 104504, "credit_id": "52fe4363c3a36847f8050711", "cast_id": 25, "profile_path": "/rydYJR1h5wICOCxVHQuJRgfnjhe.jpg", "order": 14}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f80506f5", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.2, "runtime": 129}, "2652": {"poster_path": "/1xInhmQVOOVS7xFT5DthpIwUTDI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7022209, "overview": "A mature 14-year old girl meets a charming 32-year old photographer on the Internet. Suspecting that he is a pedophile, she goes to his home in an attempt to expose him.", "video": false, "id": 2652, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hard Candy", "tagline": "Strangers shouldn't talk to little girls.", "vote_count": 165, "homepage": "http://hardcandymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0424136", "adult": false, "backdrop_path": "/pQUxfw0ZVb5AK9PYyTzjYaEIs3m.jpg", "production_companies": [{"name": "Vulcan Productions Inc.", "id": 12355}], "release_date": "2005-01-21", "popularity": 0.752239085004001, "original_title": "Hard Candy", "budget": 950000, "cast": [{"name": "Patrick Wilson", "character": "Jeff Kohlver", "id": 17178, "credit_id": "52fe4363c3a36847f805078d", "cast_id": 11, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Ellen Page", "character": "Hayley Stark", "id": 27578, "credit_id": "52fe4363c3a36847f8050791", "cast_id": 12, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 1}, {"name": "Sandra Oh", "character": "Judy Tokuda", "id": 25540, "credit_id": "52fe4363c3a36847f8050795", "cast_id": 13, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 2}, {"name": "Odessa Rae", "character": "Janelle Rogers", "id": 27579, "credit_id": "52fe4363c3a36847f8050799", "cast_id": 14, "profile_path": "/yDTam4xkQWJH5qDUKtuoL26Xc8P.jpg", "order": 3}, {"name": "G.J. Echternkamp", "character": "Nighthawks Clerk", "id": 27580, "credit_id": "52fe4363c3a36847f805079d", "cast_id": 15, "profile_path": "/tIkzpE1pWI5lbeNc8eOHrzvsyyM.jpg", "order": 4}], "directors": [{"name": "David Slade", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050759", "profile_path": "/ksOn4mssJbmdBX1AvzZF4nCUAiQ.jpg", "id": 27571}], "vote_average": 6.7, "runtime": 103}, "70074": {"poster_path": "/in6KZhkj6UCpXhjVm00VzdisHyf.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19900000, "overview": "After watching their respective partners die, a cop and a hitman form an alliance in order to bring down their common enemy.", "video": false, "id": 70074, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Bullet to the Head", "tagline": "Revenge Never Gets Old.", "vote_count": 253, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1308729", "adult": false, "backdrop_path": "/ubCbg2zgJv7hLeA7JIhEE5iPyzg.jpg", "production_companies": [{"name": "Dark Castle Entertainment", "id": 1786}, {"name": "After Dark Films", "id": 3608}, {"name": "IM Global", "id": 7437}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Silver Reel", "id": 12075}, {"name": "EMJAG Productions", "id": 14654}, {"name": "Millar Gough Ink", "id": 20356}, {"name": "Headshot Films", "id": 25876}], "release_date": "2012-11-14", "popularity": 0.648161521196493, "original_title": "Bullet to the Head", "budget": 55000000, "cast": [{"name": "Sylvester Stallone", "character": "James Bonomo", "id": 16483, "credit_id": "52fe47e9c3a368484e0dffd7", "cast_id": 4, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Sung Kang", "character": "Taylor Kwon", "id": 61697, "credit_id": "531cbacac3a3685c37006ced", "cast_id": 42, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 1}, {"name": "Sarah Shahi", "character": "Lisa", "id": 164945, "credit_id": "52fe47e9c3a368484e0dffdb", "cast_id": 6, "profile_path": "/hTV326FBAlLmHOdPPiXVItCoivR.jpg", "order": 2}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Robert Nkomo Morel", "id": 31164, "credit_id": "52fe47e9c3a368484e0dfff1", "cast_id": 13, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 3}, {"name": "Jason Momoa", "character": "Keegan", "id": 117642, "credit_id": "52fe47e9c3a368484e0dffdf", "cast_id": 7, "profile_path": "/PSK6GmsVwdhqz9cd1lwzC6a7EA.jpg", "order": 4}, {"name": "Christian Slater", "character": "Marcus Baptiste", "id": 2224, "credit_id": "52fe47e9c3a368484e0dffe3", "cast_id": 8, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 5}, {"name": "Jon Seda", "character": "Louis Blanchard", "id": 288, "credit_id": "52fe47e9c3a368484e0dfff9", "cast_id": 15, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 6}, {"name": "Holt McCallany", "character": "Hank Greely", "id": 7497, "credit_id": "52fe47e9c3a368484e0dfff5", "cast_id": 14, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 7}, {"name": "Brian Van Holt", "character": "Ronnie Earl", "id": 12792, "credit_id": "52fe47e9c3a368484e0e0005", "cast_id": 18, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 8}, {"name": "Weronika Rosati", "character": "Lola", "id": 235492, "credit_id": "52fe47e9c3a368484e0dfffd", "cast_id": 16, "profile_path": "/zhjhBfASgzV7vEuvE2ldjyCc0hW.jpg", "order": 9}, {"name": "Dominique DuVernay", "character": "Waitress", "id": 550471, "credit_id": "52fe47e9c3a368484e0e0001", "cast_id": 17, "profile_path": "/h5VftC7nwV0UD1qcrSfLWFSm1ZE.jpg", "order": 10}, {"name": "Don Thai Theerathada", "character": "Kim", "id": 1083165, "credit_id": "52fe47e9c3a368484e0e0009", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Dana Gourrier ", "character": "Deputy Coroner", "id": 1133063, "credit_id": "53a9685d0e0a261439007897", "cast_id": 50, "profile_path": "/hj7pAGBEy9XzqT23kHxKrpJYT6W.jpg", "order": 13}, {"name": "Douglas M. Griffin", "character": "Baby Jack Lemoyne", "id": 60881, "credit_id": "53a968e30e0a2614390078a4", "cast_id": 51, "profile_path": null, "order": 14}, {"name": "Donna DuPlantier", "character": "Newscaster", "id": 230995, "credit_id": "53a9698b0e0a261442007836", "cast_id": 52, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 15}, {"name": "Andrea Frankle", "character": "Masseuse", "id": 946356, "credit_id": "53a969d20e0a26143c0076e6", "cast_id": 53, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 16}, {"name": "Teri Wyble", "character": "Belle", "id": 565501, "credit_id": "53a96a120e0a26144200783a", "cast_id": 54, "profile_path": "/4peyoUZx7wqQpLCII4Kcb5VmaaV.jpg", "order": 17}, {"name": "Lin Oeding", "character": "Lee", "id": 1031463, "credit_id": "53a96a4d0e0a26144900797a", "cast_id": 55, "profile_path": null, "order": 18}, {"name": "Marcus Lyle Brown", "character": "Detective Towne", "id": 16460, "credit_id": "5510b9e7c3a36801740003e6", "cast_id": 110, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 19}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe47e9c3a368484e0dffc7", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 5.1, "runtime": 92}, "2655": {"poster_path": "/A1mrfm8LEv7L28q50ld8QI5z9Iu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155464351, "overview": "When Claire Spencer starts hearing ghostly voices and seeing spooky images, she wonders if an otherworldly spirit is trying to contact her. All the while, her husband tries to reassure her by telling her it's all in her head. But as Claire investigates, she discovers that the man she loves might know more than he's letting on.", "video": false, "id": 2655, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "What Lies Beneath", "tagline": "He was the perfect husband until his one mistake followed them home.", "vote_count": 94, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0161081", "adult": false, "backdrop_path": "/hpZnP0w1XVAdOgWgfuglMCeMzSy.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "DreamWorks SKG", "id": 27}, {"name": "ImageMovers", "id": 11395}], "release_date": "2000-07-21", "popularity": 0.587150291604744, "original_title": "What Lies Beneath", "budget": 100000000, "cast": [{"name": "Harrison Ford", "character": "Dr. Norman Spencer", "id": 3, "credit_id": "52fe4363c3a36847f8050867", "cast_id": 2, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Claire Spencer", "id": 1160, "credit_id": "52fe4363c3a36847f805086b", "cast_id": 3, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Diana Scarwid", "character": "Jody", "id": 2958, "credit_id": "52fe4363c3a36847f805088d", "cast_id": 9, "profile_path": "/oljzUqUTrZcqEATP02ZvuNb7vZ.jpg", "order": 2}, {"name": "James Remar", "character": "Warren Feur", "id": 1736, "credit_id": "52fe4363c3a36847f8050891", "cast_id": 10, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 3}, {"name": "Miranda Otto", "character": "Mary Feur", "id": 502, "credit_id": "52fe4363c3a36847f8050895", "cast_id": 11, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 4}, {"name": "Ray Baker", "character": "Dr. Stan Powell", "id": 12889, "credit_id": "52fe4363c3a36847f8050899", "cast_id": 12, "profile_path": "/cDmi2buNK0WR5OdqAJDk6OcvC2N.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Elena", "id": 19957, "credit_id": "52fe4363c3a36847f805089d", "cast_id": 13, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}, {"name": "Amber Valletta", "character": "Madison Elizabeth Frank", "id": 38425, "credit_id": "52fe4363c3a36847f80508a1", "cast_id": 14, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 7}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050863", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.2, "runtime": 130}, "2657": {"poster_path": "/x8MtiTDDhmQBRKRw06d7o05Nss7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Geeky teenager David and his popular twin sister, Jennifer, get sucked into the black-and-white world of a 1950s TV sitcom called \"Pleasantville,\" and find a world where everything is peachy keen all the time. But when Jennifer's modern attitude disrupts Pleasantville's peaceful but boring routine, she literally brings color into its life.", "video": false, "id": 2657, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Pleasantville", "tagline": "Nothing is as simple as black and white.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120789", "adult": false, "backdrop_path": "/dCxDSrWH5rScn1RQn3NZZh6iY0r.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Larger Than Life Productions", "id": 1163}], "release_date": "1998-09-17", "popularity": 0.740588599005699, "original_title": "Pleasantville", "budget": 0, "cast": [{"name": "Tobey Maguire", "character": "David", "id": 2219, "credit_id": "52fe4363c3a36847f80508df", "cast_id": 2, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Jennifer", "id": 368, "credit_id": "52fe4363c3a36847f80508e3", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "William H. Macy", "character": "George Parker", "id": 3905, "credit_id": "52fe4363c3a36847f80508e7", "cast_id": 4, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 2}, {"name": "Joan Allen", "character": "Betty Parker", "id": 11148, "credit_id": "52fe4363c3a36847f8050921", "cast_id": 14, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 3}, {"name": "Jeff Daniels", "character": "Bill Johnson", "id": 8447, "credit_id": "52fe4363c3a36847f8050925", "cast_id": 15, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 4}, {"name": "Marley Shelton", "character": "Margaret Henderson", "id": 6407, "credit_id": "52fe4363c3a36847f8050929", "cast_id": 16, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 5}, {"name": "Jane Kaczmarek", "character": "David's Mother", "id": 27725, "credit_id": "52fe4363c3a36847f805092d", "cast_id": 17, "profile_path": "/1zgssbeKuvPrXfI92pWLHKtx2xB.jpg", "order": 6}, {"name": "J. T. Walsh", "character": "Big Bob", "id": 22131, "credit_id": "52fe4363c3a36847f8050931", "cast_id": 18, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 7}, {"name": "Don Knotts", "character": "TV Repairman", "id": 27726, "credit_id": "52fe4363c3a36847f8050935", "cast_id": 19, "profile_path": "/qMqpOuJj69ozHCViUZSiFvgggva.jpg", "order": 8}, {"name": "Giuseppe Andrews", "character": "Howard", "id": 4133, "credit_id": "52fe4363c3a36847f8050939", "cast_id": 20, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 9}, {"name": "Marissa Ribisi", "character": "Kimmy", "id": 27727, "credit_id": "52fe4363c3a36847f805093d", "cast_id": 22, "profile_path": "/cKbSKPlaPIFbp5v32rekgENjYi2.jpg", "order": 10}, {"name": "Paul Walker", "character": "Skip Martin", "id": 8167, "credit_id": "52fe4363c3a36847f8050953", "cast_id": 26, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 11}], "directors": [{"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f80508db", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}], "vote_average": 6.7, "runtime": 124}, "10851": {"poster_path": "/jEgXJhWPUYfVPu5arBrawpq598X.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Hotshot gambler Jake Green (Jason Statham) is long on bravado and seriously short of common sense. Rarely is he allowed in any casino because he's a bona fide winner and, in fact, has taken so much money over the years that he's the sole client of his accountant elder brother, Billy. Invited to a private game, Jake is in fear of losing his life.", "video": false, "id": 10851, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Revolver", "tagline": "Your mind will not accept a game this big", "vote_count": 101, "homepage": "http://www.sonypictures.com/movies/revolver/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365686", "adult": false, "backdrop_path": "/61Kpt3kubCNNY3xFdv20Jon3Axc.jpg", "production_companies": [{"name": "Revolver Pictures Co.", "id": 2899}, {"name": "Toff Guy Films", "id": 2900}, {"name": "EuropaCorp", "id": 6896}, {"name": "Isle of Man Film", "id": 2268}, {"name": "Canal+", "id": 5358}, {"name": "Destination Films", "id": 769}], "release_date": "2005-09-22", "popularity": 1.10979500585556, "original_title": "Revolver", "budget": 0, "cast": [{"name": "Jason Statham", "character": "Jake", "id": 976, "credit_id": "52fe43c39251416c7501d26d", "cast_id": 18, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Macha", "id": 11477, "credit_id": "52fe43c39251416c7501d289", "cast_id": 23, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Vincent Pastore", "character": "Zach", "id": 47774, "credit_id": "52fe43c39251416c7501d28d", "cast_id": 24, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 2}, {"name": "Andr\u00e9 Benjamin", "character": "Avi", "id": 37934, "credit_id": "52fe43c39251416c7501d291", "cast_id": 25, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 3}, {"name": "Mark Strong", "character": "Sorter", "id": 2983, "credit_id": "52fe43c39251416c7501d295", "cast_id": 26, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Terence Maynard", "character": "French Paul", "id": 67205, "credit_id": "52fe43c39251416c7501d299", "cast_id": 27, "profile_path": "/pFxcJnlfp1lAnDbgumYynzlkfQE.jpg", "order": 5}, {"name": "Francesca Annis", "character": "Lily Walker", "id": 12513, "credit_id": "52fe43c39251416c7501d29d", "cast_id": 28, "profile_path": "/gzk3kD4qWhOBUVF536JeMLmlVbo.jpg", "order": 6}, {"name": "Elana Binysh", "character": "Rachel", "id": 67208, "credit_id": "52fe43c39251416c7501d2a1", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "Shend", "character": "Teddy", "id": 67210, "credit_id": "52fe43c39251416c7501d2a9", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Andrew Howard", "character": "Billy", "id": 67206, "credit_id": "52fe43c39251416c7501d2a5", "cast_id": 30, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 9}, {"name": "Faruk Pruti", "character": "Ivan", "id": 67209, "credit_id": "52fe43c39251416c7501d2b1", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Anjela Lauren Smith", "character": "Doreen", "id": 67207, "credit_id": "52fe43c39251416c7501d2ad", "cast_id": 32, "profile_path": "/j3jGmacxOrsFjDLztQNBYlvqED3.jpg", "order": 11}, {"name": "Stephen Walters", "character": "Joe", "id": 39681, "credit_id": "52fe43c39251416c7501d2b5", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Ian Puleston-Davies", "character": "Eddie A", "id": 67213, "credit_id": "52fe43c39251416c7501d2b9", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Tom Wu", "character": "Lord John", "id": 67212, "credit_id": "52fe43c39251416c7501d2bd", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Bill Moody", "character": "Al", "id": 67211, "credit_id": "52fe43c39251416c7501d2c5", "cast_id": 39, "profile_path": "/nd9HJkjj8GJIT4FPIkHbmvd1tYh.jpg", "order": 16}, {"name": "Jimmy Flint", "character": "Eddie B", "id": 67214, "credit_id": "52fe43c39251416c7501d2c1", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Brian Hibbard", "character": "Eddie C", "id": 67215, "credit_id": "52fe43c39251416c7501d2c9", "cast_id": 40, "profile_path": "/ktjhdIq5b6P8HveT6kof3HoLnsA.jpg", "order": 18}, {"name": "Bruce Wang", "character": "Fat Dan", "id": 67216, "credit_id": "52fe43c39251416c7501d2cd", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "Vincent Riotta", "character": "Benny", "id": 26669, "credit_id": "52fe43c39251416c7501d2d1", "cast_id": 42, "profile_path": "/4xlR6xTLzzxv6yudPZOunAVmR9n.jpg", "order": 20}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe43c39251416c7501d227", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.0, "runtime": 115}, "7270": {"poster_path": "/vRjT0WdjQbbIpYSG5f520BAS2dn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65565672, "overview": "A phobic con artist and his protege are on the verge of pulling off a lucrative swindle when the con artist's teenage daughter arrives unexpectedly.", "video": false, "id": 7270, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Matchstick Men", "tagline": "Lie. Cheat. Steal. Rinse. Repeat.", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0325805", "adult": false, "backdrop_path": "/m6pNJykwJetbPmXBjifBv4K8WgP.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "ImageMovers", "id": 11395}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Rickshaw Productions", "id": 2201}, {"name": "LivePlanet", "id": 7161}, {"name": "HorsePower Entertainment", "id": 21002}], "release_date": "2003-09-01", "popularity": 0.393010627285521, "original_title": "Matchstick Men", "budget": 0, "cast": [{"name": "Nicolas Cage", "character": "Roy Waller", "id": 2963, "credit_id": "52fe4475c3a36847f8097541", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Sam Rockwell", "character": "Frank Mercer", "id": 6807, "credit_id": "52fe4475c3a36847f8097545", "cast_id": 2, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 1}, {"name": "Alison Lohman", "character": "Angela", "id": 8291, "credit_id": "52fe4475c3a36847f8097549", "cast_id": 3, "profile_path": "/x8KPiTYjzQalziiPsR9plq7xEMi.jpg", "order": 2}, {"name": "Bruce Altman", "character": "Dr. Klein", "id": 27545, "credit_id": "52fe4475c3a36847f809754d", "cast_id": 4, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Chuck Frechette", "id": 14888, "credit_id": "52fe4475c3a36847f8097557", "cast_id": 6, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Jenny O'Hara", "character": "Mrs. Schaffer", "id": 4734, "credit_id": "52fe4475c3a36847f809755b", "cast_id": 7, "profile_path": "/yyr6dyBOP1BQedXbQ3RDsvoLicb.jpg", "order": 5}, {"name": "Steve Eastin", "character": "Mr. Schaffer", "id": 9276, "credit_id": "52fe4475c3a36847f809755f", "cast_id": 8, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 6}, {"name": "Beth Grant", "character": "Laundry Lady", "id": 5151, "credit_id": "52fe4475c3a36847f8097563", "cast_id": 9, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Sheila Kelley", "character": "Kathy", "id": 68109, "credit_id": "52fe4475c3a36847f8097567", "cast_id": 10, "profile_path": "/chbHBKXxpEKTKWhY6aazEAZGKRb.jpg", "order": 8}, {"name": "Fran Kranz", "character": "Slacker Boyfriend", "id": 51533, "credit_id": "52fe4475c3a36847f809756b", "cast_id": 11, "profile_path": "/rcd82G7YYnJNhA9Vz0bMOmM4dAK.jpg", "order": 9}, {"name": "Tim Kelleher", "character": "Bishop", "id": 72864, "credit_id": "52fe4475c3a36847f809756f", "cast_id": 12, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 10}, {"name": "Nigel Gibbs", "character": "Holt", "id": 11915, "credit_id": "52fe4475c3a36847f8097573", "cast_id": 13, "profile_path": "/6AE4p72zOtpR9Q385eiwrPwGPaj.jpg", "order": 11}, {"name": "Bill Saito", "character": "Pharmacist #1", "id": 151479, "credit_id": "52fe4476c3a36847f8097577", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Tim Maculan", "character": "Pharmacist #2", "id": 155696, "credit_id": "52fe4476c3a36847f809757b", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Giannina Facio", "character": "Bank Teller", "id": 58787, "credit_id": "52fe4476c3a36847f8097585", "cast_id": 17, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 14}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a36847f8097553", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.0, "runtime": 116}, "2662": {"poster_path": "/8l9wpDtIXcVxZPp2IMtCj6I1iCx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16829545, "overview": "Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.", "video": false, "id": 2662, "genres": [{"id": 27, "name": "Horror"}], "title": "House of 1000 Corpses", "tagline": "You'll never get out alive.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/osLewbX6FJMy1iUcNHm6hoiNH0j.jpg", "poster_path": "/rNLKZ2sgHuLoxV63wEaWAwCrsLN.jpg", "id": 105625, "name": "House of 1000 Corpses Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0251736", "adult": false, "backdrop_path": "/bnXs5dibTbH8YdoFCgPUf52GASd.jpg", "production_companies": [{"name": "Spectacle Entertainment Group", "id": 10370}, {"name": "Universal Pictures", "id": 33}], "release_date": "2003-03-13", "popularity": 0.652291790638039, "original_title": "House of 1000 Corpses", "budget": 7000000, "cast": [{"name": "Sid Haig", "character": "Captain Spaulding", "id": 5695, "credit_id": "52fe4363c3a36847f8050a1b", "cast_id": 5, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 0}, {"name": "Bill Moseley", "character": "Otis B. Driftwood", "id": 27737, "credit_id": "52fe4363c3a36847f8050a1f", "cast_id": 6, "profile_path": "/zZP7ijcocjYN6cNKwpPwmRDWsv1.jpg", "order": 1}, {"name": "Sheri Moon Zombie", "character": "Baby Firefly", "id": 21319, "credit_id": "52fe4363c3a36847f8050a23", "cast_id": 7, "profile_path": "/ecPGCsrhqwR6clWmtqtlS6ZFdY3.jpg", "order": 2}, {"name": "Karen Black", "character": "Mother Firefly", "id": 8963, "credit_id": "52fe4363c3a36847f8050a27", "cast_id": 8, "profile_path": "/d2Zf3vIWOWovWKnPe13GSz2BTLY.jpg", "order": 3}, {"name": "Erin Daniels", "character": "Denise Willis", "id": 18662, "credit_id": "52fe4363c3a36847f8050a2f", "cast_id": 10, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 4}, {"name": "Chris Hardwick", "character": "Jerry Goldsmith", "id": 27738, "credit_id": "52fe4363c3a36847f8050a2b", "cast_id": 9, "profile_path": "/4neHtCQpQgOwmUil43R3syamU4z.jpg", "order": 5}, {"name": "Rainn Wilson", "character": "Bill Hudley", "id": 11678, "credit_id": "52fe4363c3a36847f8050a37", "cast_id": 12, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 6}, {"name": "Jennifer Jostyn", "character": "Mary Knowles", "id": 27739, "credit_id": "52fe4363c3a36847f8050a33", "cast_id": 11, "profile_path": "/ryxfr10cqSMdWQT8oWQG5OBgFQ2.jpg", "order": 7}, {"name": "Tom Towles", "character": "Lieutenant George Wydell", "id": 27736, "credit_id": "52fe4363c3a36847f8050a17", "cast_id": 4, "profile_path": null, "order": 8}, {"name": "Walton Goggins", "character": "Deputy Steve Naish", "id": 27740, "credit_id": "52fe4363c3a36847f8050a3b", "cast_id": 13, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 9}, {"name": "Matthew McGrory", "character": "Tiny Firefly", "id": 8295, "credit_id": "53d4095dc3a3686b88001b76", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Robert Allen Mukes", "character": "Rufus 'RJ' Firefly Jr.", "id": 27741, "credit_id": "52fe4363c3a36847f8050a3f", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Dennis Fimple", "character": "Grandpa Hugo Firefly", "id": 27742, "credit_id": "52fe4363c3a36847f8050a43", "cast_id": 15, "profile_path": "/iqufXf1lSczFfi8ZKfwD35jwpdF.jpg", "order": 12}, {"name": "Jake McKinnon", "character": "Rufus 'Earl' Firefly Sr.", "id": 555328, "credit_id": "53d4077e0e0a2628410025dc", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Harrison Young", "character": "Don Willis", "id": 51931, "credit_id": "53d407c70e0a26283b0025de", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Irwin Keyes", "character": "Ravelli", "id": 13592, "credit_id": "53d407ed0e0a26283e00279a", "cast_id": 28, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 15}, {"name": "Michael J. Pollard", "character": "Stucky", "id": 6451, "credit_id": "52fe4363c3a36847f8050a5d", "cast_id": 20, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 16}, {"name": "Chad Bannon", "character": "Killer Karl", "id": 44824, "credit_id": "52fe4363c3a36847f8050a59", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "William Bassett", "character": "Sheriff Frank Huston", "id": 83978, "credit_id": "52fe4363c3a36847f8050a65", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "David Reynolds", "character": "Richard 'Little Dick' Wick", "id": 44825, "credit_id": "52fe4363c3a36847f8050a61", "cast_id": 21, "profile_path": null, "order": 19}], "directors": [{"name": "Rob Zombie", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050a07", "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "id": 16848}], "vote_average": 5.7, "runtime": 89}, "2666": {"poster_path": "/yR7rapBFxBoBT0vkZQIXhLBr726.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14435076, "overview": "A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.", "video": false, "id": 2666, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Dark City", "tagline": "A world where the night never ends.", "vote_count": 197, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118929", "adult": false, "backdrop_path": "/rIWui0S2ugwTWlhna6CTS3RYW9q.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mystery Clock Cinema", "id": 908}], "release_date": "1998-02-27", "popularity": 1.14962628019977, "original_title": "Dark City", "budget": 27000000, "cast": [{"name": "Rufus Sewell", "character": "John Murdoch", "id": 17328, "credit_id": "52fe4363c3a36847f8050b6d", "cast_id": 12, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 0}, {"name": "William Hurt", "character": "Inspector Frank Bumstead", "id": 227, "credit_id": "52fe4363c3a36847f8050b71", "cast_id": 13, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 1}, {"name": "Kiefer Sutherland", "character": "Dr. Daniel P. Schreber", "id": 2628, "credit_id": "52fe4363c3a36847f8050b75", "cast_id": 14, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 2}, {"name": "Jennifer Connelly", "character": "Emma Murdoch", "id": 6161, "credit_id": "52fe4363c3a36847f8050b79", "cast_id": 15, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 3}, {"name": "Richard O'Brien", "character": "Mr. Hand", "id": 13474, "credit_id": "52fe4363c3a36847f8050b7d", "cast_id": 16, "profile_path": "/pCxCt82DQQLTgOryp6FPczmN3L9.jpg", "order": 4}, {"name": "Ian Richardson", "character": "Mr. Book", "id": 385, "credit_id": "52fe4363c3a36847f8050b81", "cast_id": 17, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 5}, {"name": "Bruce Spence", "character": "Mr. Wall", "id": 27752, "credit_id": "52fe4363c3a36847f8050b85", "cast_id": 18, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 6}, {"name": "Colin Friels", "character": "Det. Eddie Walenski", "id": 27753, "credit_id": "52fe4363c3a36847f8050b89", "cast_id": 19, "profile_path": "/tXKCpTwCs4TZYdQ6p5Kch7sRkkS.jpg", "order": 7}, {"name": "Mitchell Butel", "character": "Officer Husselbeck", "id": 27754, "credit_id": "52fe4363c3a36847f8050b8d", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Melissa George", "character": "May", "id": 27755, "credit_id": "52fe4363c3a36847f8050b91", "cast_id": 21, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 9}, {"name": "Frank Gallacher", "character": "Chief Inspector Stromboli", "id": 40046, "credit_id": "52fe4363c3a36847f8050bb3", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Ritchie Singer", "character": "Hotel Manager / Vendor", "id": 1040112, "credit_id": "52fe4363c3a36847f8050bb7", "cast_id": 28, "profile_path": "/vLlS5rNEiEPOSuZaxAIex8Y53K6.jpg", "order": 11}, {"name": "Justin Monjo", "character": "Taxi Driver", "id": 152463, "credit_id": "52fe4363c3a36847f8050bbb", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Nicholas Bell", "character": "Mr. Rain", "id": 15340, "credit_id": "52fe4363c3a36847f8050bbf", "cast_id": 30, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 13}, {"name": "Satya Gumbert", "character": "Mr. Sleep", "id": 1121516, "credit_id": "52fe4363c3a36847f8050bc3", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe4363c3a36847f8050b2d", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 7.1, "runtime": 100}, "2667": {"poster_path": "/tza7aJw3kpybgs4ztwaBsJ0jC8Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 248000000, "overview": "In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.", "video": false, "id": 2667, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "The Blair Witch Project", "tagline": "The scariest movie of all time is a true story.", "vote_count": 192, "homepage": "http://www.blairwitch.com/", "belongs_to_collection": {"backdrop_path": "/e5GwLq0zBer3SuSJZodcNROnT6Z.jpg", "poster_path": "/qDQuKJZYLHrs1Ej64tYYFooFxc1.jpg", "id": 64750, "name": "Blair Witch Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0185937", "adult": false, "backdrop_path": "/9HYKoCCQTQC8b769rSTQKM8b75A.jpg", "production_companies": [{"name": "Haxan Films", "id": 15160}, {"name": "Artisan Entertainment", "id": 2188}], "release_date": "1999-01-25", "popularity": 0.726971879969302, "original_title": "The Blair Witch Project", "budget": 25000, "cast": [{"name": "Heather Donahue", "character": "Heather Donahue", "id": 26851, "credit_id": "52fe4364c3a36847f8050c0b", "cast_id": 5, "profile_path": "/k9U6agK7Vfl5X2cOSIt9LQatyNA.jpg", "order": 0}, {"name": "Joshua Leonard", "character": "Joshua 'Josh' Leonard", "id": 26852, "credit_id": "52fe4364c3a36847f8050c0f", "cast_id": 6, "profile_path": "/61n2FqQ4k1VbN2hM66zvr8fc2Tp.jpg", "order": 1}, {"name": "Michael C. Williams", "character": "Michael 'Mike' Williams", "id": 26853, "credit_id": "52fe4364c3a36847f8050c13", "cast_id": 7, "profile_path": "/fMyq5fYpBBiry87DpHSDtp8a51D.jpg", "order": 2}, {"name": "Bob Griffith", "character": "Short Fisherman", "id": 81061, "credit_id": "52fe4364c3a36847f8050c2f", "cast_id": 12, "profile_path": null, "order": 3}, {"name": "Jim King", "character": "Interviewee", "id": 81062, "credit_id": "52fe4364c3a36847f8050c33", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Sandra S\u00e1nchez", "character": "Waitress (as Sandra Sanchez)", "id": 81063, "credit_id": "52fe4364c3a36847f8050c37", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Ed Swanson", "character": "Fisherman With Glasses", "id": 81064, "credit_id": "52fe4364c3a36847f8050c3b", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Patricia DeCou", "character": "Mary Brown", "id": 81065, "credit_id": "52fe4364c3a36847f8050c3f", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mark Mason", "character": "Man in Yellow Hat", "id": 81066, "credit_id": "52fe4364c3a36847f8050c43", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Jackie Hallex", "character": "Interviewee with Child", "id": 81067, "credit_id": "52fe4364c3a36847f8050c47", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "Daniel Myrick", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050c01", "profile_path": "/aLSbwsdEhiae9Vb4vmo6c1RVkb.jpg", "id": 26849}, {"name": "Eduardo S\u00e1nchez", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050c07", "profile_path": "/3ejhF82WeB3Au5z0a4ZbpXWd5QU.jpg", "id": 26850}], "vote_average": 6.1, "runtime": 81}, "2668": {"poster_path": "/yaX0WQstEi2akQXffoJUxyOsZkj.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 206071502, "overview": "New York detective Ichabod Crane is sent to Sleepy Hollow to investigate a series of mysterious deaths in which the victims are found beheaded. But the locals believe the culprit to be none other than the ghost of the legendary Headless Horseman.", "video": false, "id": 2668, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sleepy Hollow", "tagline": "Heads will roll.", "vote_count": 417, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0162661", "adult": false, "backdrop_path": "/d7yZz1SmFNLSbZGilW2wAd9gcBd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mandalay Pictures", "id": 551}, {"name": "American Zoetrope", "id": 70}, {"name": "Tim Burton Productions", "id": 8601}, {"name": "Karol Film Productions", "id": 23310}], "release_date": "1999-11-18", "popularity": 1.09871864914851, "original_title": "Sleepy Hollow", "budget": 65000000, "cast": [{"name": "Johnny Depp", "character": "Ichabod Crane", "id": 85, "credit_id": "52fe4364c3a36847f8050ca1", "cast_id": 1, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Ian McDiarmid", "character": "Dr. Lancaster", "id": 27762, "credit_id": "52fe4364c3a36847f8050cd5", "cast_id": 13, "profile_path": "/yQYNxIjSVYp2Hli7IHOq182NoIJ.jpg", "order": 1}, {"name": "Casper Van Dien", "character": "Brom Van Brunt", "id": 27763, "credit_id": "52fe4364c3a36847f8050cd9", "cast_id": 14, "profile_path": "/ktJIgsilxxQeOvA9I789veHnDnt.jpg", "order": 2}, {"name": "Michael Gough", "character": "Notar Hardenbrook", "id": 3796, "credit_id": "52fe4364c3a36847f8050cdd", "cast_id": 15, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 3}, {"name": "Christopher Walken", "character": "Hessian Horseman", "id": 4690, "credit_id": "52fe4364c3a36847f8050ce1", "cast_id": 16, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 4}, {"name": "Lisa Marie", "character": "Lady Crane", "id": 4452, "credit_id": "52fe4364c3a36847f8050ce5", "cast_id": 17, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 5}, {"name": "Steven Waddington", "character": "Kilian", "id": 27764, "credit_id": "52fe4364c3a36847f8050ce9", "cast_id": 18, "profile_path": "/wFZoh6mW51RK0kHs64OPndEa19q.jpg", "order": 6}, {"name": "Christopher Lee", "character": "Burgomaster", "id": 113, "credit_id": "52fe4364c3a36847f8050ced", "cast_id": 19, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 7}, {"name": "Miranda Richardson", "character": "Crone", "id": 8436, "credit_id": "52fe4364c3a36847f8050cf1", "cast_id": 20, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 8}, {"name": "Michael Gambon", "character": "Baltus Van Tassel", "id": 5658, "credit_id": "52fe4364c3a36847f8050cf5", "cast_id": 21, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 9}, {"name": "Jeffrey Jones", "character": "Reverend Steenwyck", "id": 4004, "credit_id": "52fe4364c3a36847f8050cf9", "cast_id": 22, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 10}, {"name": "Richard Griffiths", "character": "B\u00fcrgermeister Phillipse", "id": 10983, "credit_id": "52fe4364c3a36847f8050cfd", "cast_id": 23, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 11}, {"name": "Christina Ricci", "character": "Katrina Van Tassel", "id": 6886, "credit_id": "52fe4364c3a36847f8050d01", "cast_id": 24, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 12}, {"name": "Martin Landau", "character": "Peter Van Garrett", "id": 2641, "credit_id": "52fe4364c3a36847f8050d05", "cast_id": 25, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 13}, {"name": "Marc Pickering", "character": "Young Masbath", "id": 73528, "credit_id": "52fe4364c3a36847f8050d33", "cast_id": 34, "profile_path": "/3xOapB4eNc5QU1Oo0NcBDX8Jolh.jpg", "order": 14}, {"name": "Claire Skinner", "character": "Beth Killian", "id": 42641, "credit_id": "52fe4364c3a36847f8050d37", "cast_id": 35, "profile_path": "/eWQfFgp4w7dQAW7r0GxyesfrLcN.jpg", "order": 15}, {"name": "Alun Armstrong", "character": "High Constable", "id": 2629, "credit_id": "52fe4364c3a36847f8050d3b", "cast_id": 36, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 16}, {"name": "Jessica Oyelowo", "character": "Sarah", "id": 208507, "credit_id": "52fe4364c3a36847f8050d3f", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Mark Spalding", "character": "Jonathan Masbath", "id": 176228, "credit_id": "52fe4364c3a36847f8050d43", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Peter Guinness", "character": "Lord Crane", "id": 27172, "credit_id": "52fe4364c3a36847f8050d47", "cast_id": 39, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 19}, {"name": "Tony Maudsley", "character": "Van Ripper", "id": 79856, "credit_id": "52fe4364c3a36847f8050d4b", "cast_id": 40, "profile_path": "/7VjhAftH1YBVEm3GRznNiX0Q3Pu.jpg", "order": 20}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050ca7", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.7, "runtime": 105}, "2670": {"poster_path": "/paW0Tc8qNsddCuMJ9M1WnNgOvy1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A series of murders prompts Mike Hanlon to suspect that the supernatural menace that he and a group of friends battled as children has returned. He begins to call his friends to remind them of the oath they swore: if It returned again, they would come back to Derry to do battle again.", "video": false, "id": 2670, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Stephen King's It", "tagline": "From the King of terror, a chilling new dimension in horror.", "vote_count": 133, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099864", "adult": false, "backdrop_path": "/gQ23EIbgY1OWGzRond6BLOg6U9E.jpg", "production_companies": [{"name": "Lorimar Television", "id": 1193}], "release_date": "1990-11-18", "popularity": 0.502994276560237, "original_title": "Stephen King's It", "budget": 0, "cast": [{"name": "Tim Curry", "character": "Pennywise / Robert Gray", "id": 13472, "credit_id": "52fe4364c3a36847f8050ef9", "cast_id": 20, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 0}, {"name": "Annette O'Toole", "character": "Beverly Marsh Rogan", "id": 1734, "credit_id": "52fe4364c3a36847f8050ed9", "cast_id": 11, "profile_path": "/hFmg2LVQD0w0A9uDNu5na9pQamV.jpg", "order": 1}, {"name": "Harry Anderson", "character": "Richard Tozier", "id": 27769, "credit_id": "52fe4364c3a36847f8050ec5", "cast_id": 6, "profile_path": "/gTWCVCdyw2GNbBz6ppzoneoh8fy.jpg", "order": 2}, {"name": "Seth Green", "character": "Richard Tozier - Age 12", "id": 13922, "credit_id": "52fe4364c3a36847f8050ec9", "cast_id": 7, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 3}, {"name": "Dennis Christopher", "character": "Eddie Kaspbrak", "id": 27770, "credit_id": "52fe4364c3a36847f8050ecd", "cast_id": 8, "profile_path": "/sNFwlPHBAVn2fQIMVBTXMfx5E69.jpg", "order": 4}, {"name": "Adam Faraizl", "character": "Eddie Kaspbrak - Age 12", "id": 27768, "credit_id": "52fe4364c3a36847f8050ec1", "cast_id": 5, "profile_path": "/xZ6FvVFQUUHFRyJVR60PVDVePC1.jpg", "order": 5}, {"name": "Brandon Crane", "character": "Benjamin Hascom - Age 12", "id": 27774, "credit_id": "52fe4364c3a36847f8050eed", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Richard Thomas", "character": "William Denbrough", "id": 19576, "credit_id": "52fe4364c3a36847f8050ee5", "cast_id": 14, "profile_path": "/6ifcrt9f8rkdp2VP6wmvHhJ9Z9V.jpg", "order": 7}, {"name": "Olivia Hussey", "character": "Audra Phillips Denbrough", "id": 24695, "credit_id": "52fe4364c3a36847f8050ed1", "cast_id": 9, "profile_path": "/zYa1KWgDIZ841HVBH3Az4V17ytA.jpg", "order": 8}, {"name": "Richard Masur", "character": "Stanley Uris", "id": 15416, "credit_id": "52fe4364c3a36847f8050ed5", "cast_id": 10, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 9}, {"name": "Tim Reid", "character": "Michael Hanlon", "id": 27771, "credit_id": "52fe4364c3a36847f8050edd", "cast_id": 12, "profile_path": "/Aeo6asp9LjO8X0WHx7OJQbP83hR.jpg", "order": 10}, {"name": "John Ritter", "character": "Benjamin Hascom", "id": 27772, "credit_id": "52fe4364c3a36847f8050ee1", "cast_id": 13, "profile_path": "/oM4iv6O97gK7JFiNkdjEBeuN5Q4.jpg", "order": 11}, {"name": "Jonathan Brandis", "character": "William Denbrough - Age 12", "id": 27773, "credit_id": "52fe4364c3a36847f8050ee9", "cast_id": 16, "profile_path": "/dWKS1zkrHt1mtaTuAjQNr6nNnlb.jpg", "order": 12}, {"name": "Chelan Simmons", "character": "Laurie Ann Winterbarger", "id": 27775, "credit_id": "52fe4364c3a36847f8050ef1", "cast_id": 18, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 13}, {"name": "William B. Davis", "character": "Mr. Gedreau", "id": 12643, "credit_id": "52fe4364c3a36847f8050ef5", "cast_id": 19, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 14}], "directors": [{"name": "Tommy Lee Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8050eb1", "profile_path": null, "id": 11777}], "vote_average": 6.7, "runtime": 192}, "10865": {"poster_path": "/pJx5AMkZL5BzmkQbf6x7X7Oj9Hf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186053725, "overview": "The world's most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea.", "video": false, "id": 10865, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Atlantis: The Lost Empire", "tagline": "Atlantis is waiting...", "vote_count": 184, "homepage": "http://www.disney.com/atlantis", "belongs_to_collection": {"backdrop_path": "/vJOfi2m9yaQGu7LPRcBL44KDU7r.jpg", "poster_path": "/l9wffaf3zMw2fOYDnMrU479IeBv.jpg", "id": 100965, "name": "Atlantis Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0230011", "adult": false, "backdrop_path": "/6tDYT0R7uzVroxR7W2nppuTv2Ha.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Toon City", "id": 12203}], "release_date": "2001-06-15", "popularity": 1.74357087489534, "original_title": "Atlantis: The Lost Empire", "budget": 120000000, "cast": [{"name": "Michael J. Fox", "character": "Milo James Thatch", "id": 521, "credit_id": "52fe43c69251416c7501d9db", "cast_id": 1, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Corey Burton", "character": "Gaetan 'The Mole' Moliere", "id": 35219, "credit_id": "52fe43c69251416c7501d9df", "cast_id": 2, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 1}, {"name": "Claudia Christian", "character": "Helga Katrina Sinclair", "id": 52300, "credit_id": "52fe43c69251416c7501d9e3", "cast_id": 3, "profile_path": "/qETXhDBqmQaB1DJZGqlWQ1kYAJb.jpg", "order": 2}, {"name": "James Garner", "character": "Commander Lyle Tiberius Rourke", "id": 16896, "credit_id": "52fe43c69251416c7501d9e7", "cast_id": 4, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 3}, {"name": "John Mahoney", "character": "Preston B. Whitmore", "id": 4251, "credit_id": "52fe43c69251416c7501da09", "cast_id": 10, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 4}, {"name": "Phil Morris", "character": "Dr. Joshua Strongbear Sweet", "id": 56853, "credit_id": "52fe43c69251416c7501da0d", "cast_id": 11, "profile_path": "/e8FKG1DoVsUibW8cI4gvRluwPav.jpg", "order": 5}, {"name": "Leonard Nimoy", "character": "King Kashekim Nedakh", "id": 1749, "credit_id": "52fe43c69251416c7501da11", "cast_id": 12, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 6}, {"name": "Don Novello", "character": "Vincenzo 'Vinny' Santorini", "id": 161860, "credit_id": "52fe43c69251416c7501da15", "cast_id": 13, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 7}, {"name": "Jacqueline Obradors", "character": "Audrey Rocio Ramirez", "id": 49818, "credit_id": "52fe43c69251416c7501da19", "cast_id": 14, "profile_path": "/p7QydGjTdM6sya62gSvMNMEqMT4.jpg", "order": 8}, {"name": "Florence Stanley", "character": "Wilhelmina Bertha Packard", "id": 84323, "credit_id": "52fe43c69251416c7501da1d", "cast_id": 15, "profile_path": "/1roD2CmG6K1lBdVQXDwvzGFnZBv.jpg", "order": 9}, {"name": "David Ogden Stiers", "character": "Fenton Q. Harcourt", "id": 28010, "credit_id": "52fe43c69251416c7501da21", "cast_id": 16, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 10}, {"name": "Natalie Strom", "character": "Young Kida", "id": 182258, "credit_id": "52fe43c69251416c7501da25", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Cree Summer", "character": "Princess 'Kida' Kidagakash", "id": 34985, "credit_id": "52fe43c69251416c7501da29", "cast_id": 18, "profile_path": "/f2ezohBr8bBuLl85YTV2UNOa5j5.jpg", "order": 12}, {"name": "Jim Varney", "character": "Jebidiah Allardyce 'Cookie' Farnsworth", "id": 12899, "credit_id": "52fe43c69251416c7501da2d", "cast_id": 19, "profile_path": "/eIo2jVVXYgjDtaHoF19Ll9vtW7h.jpg", "order": 13}, {"name": "Jim Cummings", "character": "Additional Voices", "id": 12077, "credit_id": "52fe43c69251416c7501da31", "cast_id": 20, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 14}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe43c69251416c7501d9ed", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}, {"name": "Kirk Wise", "department": "Directing", "job": "Director", "credit_id": "52fe43c69251416c7501d9f9", "profile_path": "/aoh7wnHk3F1HdOUBLI5Yfwd8rnN.jpg", "id": 62048}], "vote_average": 6.3, "runtime": 95}, "10866": {"poster_path": "/q8y2T2LvJV0mvia1RA9pS1K33GR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21973182, "overview": "Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.", "video": false, "id": 10866, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Joy Ride", "tagline": "It was just a joke, just for fun.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/ln6CZn4pEBOea3757FaMukhgp25.jpg", "id": 166378, "name": "Joy Ride Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0206314", "adult": false, "backdrop_path": "/wr9KMaCGGquZQqmjN8mRqOR2FeM.jpg", "production_companies": [{"name": "Bad Robot", "id": 11461}, {"name": "Regency Enterprises", "id": 508}, {"name": "LivePlanet", "id": 7161}, {"name": "New Regency Productions", "id": 490}], "release_date": "2001-10-05", "popularity": 0.53961332522518, "original_title": "Joy Ride", "budget": 23000000, "cast": [{"name": "Steve Zahn", "character": "Fuller Thomas", "id": 18324, "credit_id": "52fe43c69251416c7501da8d", "cast_id": 1, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 0}, {"name": "Paul Walker", "character": "Lewis Thomas", "id": 8167, "credit_id": "52fe43c69251416c7501da91", "cast_id": 2, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 1}, {"name": "Leelee Sobieski", "character": "Venna", "id": 22290, "credit_id": "52fe43c69251416c7501da95", "cast_id": 3, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 2}, {"name": "Jessica Bowman", "character": "Charlotte", "id": 67538, "credit_id": "52fe43c69251416c7501da99", "cast_id": 4, "profile_path": "/bupDSHUwDCPLpL0eRytkLHb04Mz.jpg", "order": 3}, {"name": "Stuart Stone", "character": "Danny, Lewis' Roommate", "id": 156011, "credit_id": "52fe43c69251416c7501dabb", "cast_id": 13, "profile_path": "/xLAtmUL0GtXMnwCrendFcXSu1Eq.jpg", "order": 4}, {"name": "Basil Wallace", "character": "Car Salesman", "id": 16754, "credit_id": "52fe43c69251416c7501dabf", "cast_id": 14, "profile_path": "/7PI3AEAAVnnXIjFMQ7rHUDnIBOF.jpg", "order": 5}, {"name": "Brian Leckner", "character": "Officer Keeney", "id": 154838, "credit_id": "52fe43c69251416c7501dac3", "cast_id": 15, "profile_path": "/beXhkO2heP1HycpM0D8SE3BenBn.jpg", "order": 6}, {"name": "Mary Wickliffe", "character": "Salt Lake City Police Desk Clerk", "id": 154996, "credit_id": "52fe43c69251416c7501dac7", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "McKenzie Satterthwaite", "character": "Assistant Salt Lake City Police Desk Clerk", "id": 552465, "credit_id": "52fe43c69251416c7501dacb", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Dell Yount", "character": "Gas Station Mechanic", "id": 149526, "credit_id": "52fe43c69251416c7501dacf", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Kenneth White", "character": "Ronald Ellinghouse", "id": 12548, "credit_id": "52fe43c69251416c7501dad3", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Luis Cort\u00e9s", "character": "Night Manager", "id": 552466, "credit_id": "52fe43c69251416c7501dad7", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Michael McCleery", "character": "Officer Akins", "id": 552467, "credit_id": "52fe43c69251416c7501dadb", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Jim Beaver", "character": "Sheriff Ritter", "id": 29862, "credit_id": "52fe43c69251416c7501dadf", "cast_id": 22, "profile_path": "/eyHu6p58acumBmJhRDrueBa2o9X.jpg", "order": 13}, {"name": "Rachel Singer", "character": "Gas Station Manager", "id": 7473, "credit_id": "52fe43c69251416c7501dae3", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Satch Huizenga", "character": "Ice Truck Man", "id": 552468, "credit_id": "52fe43c69251416c7501dae7", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Terry Leonard", "character": "Bartender", "id": 19567, "credit_id": "52fe43c69251416c7501daeb", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Gwenda Deacon", "character": "Truck Stop Waitress", "id": 552469, "credit_id": "52fe43c69251416c7501daef", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Robert Winley", "character": "Truck Stop Manager", "id": 87404, "credit_id": "52fe43c69251416c7501daf3", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Ali Gage", "character": "Waitress", "id": 552470, "credit_id": "52fe43c69251416c7501daf7", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Jack Moore", "character": "Hotwire Consultant", "id": 117564, "credit_id": "52fe43c69251416c7501dafb", "cast_id": 30, "profile_path": "/5vplad1c1016jguS31AqqOGQ3p2.jpg", "order": 20}, {"name": "Hugh Dane", "character": "Man at Door", "id": 154195, "credit_id": "52fe43c69251416c7501daff", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Lee Stepp", "character": "Traveling Salesman", "id": 552471, "credit_id": "52fe43c69251416c7501db03", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Jay Hernandez", "character": "Marine", "id": 19487, "credit_id": "52fe43c69251416c7501db07", "cast_id": 33, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 23}, {"name": "Huey Redwine", "character": "Policeman #1", "id": 552472, "credit_id": "52fe43c69251416c7501db0b", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "John Maynard", "character": "Policeman #2", "id": 99231, "credit_id": "52fe43c69251416c7501db0f", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Peter Weireter", "character": "Policeman #3", "id": 552473, "credit_id": "52fe43c69251416c7501db13", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "James MacDonald", "character": "Local in Nebraska Bar", "id": 1188456, "credit_id": "52fe43c69251416c7501db17", "cast_id": 37, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 27}], "directors": [{"name": "John Dahl", "department": "Directing", "job": "Director", "credit_id": "52fe43c69251416c7501da9f", "profile_path": "/klMxcB64Tu0sWCn3YDTMcGWPArQ.jpg", "id": 21053}], "vote_average": 6.5, "runtime": 97}, "10867": {"poster_path": "/hW1D5Zn3rWJA7pynier0osbN0Gz.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "On the day in 1940 that Italy enters the war, two things happen to the 12-year-old Renato: he gets his first bike, and he gets his first look at Mal\u00e8na. She is a beautiful, silent outsider who's moved to this Sicilian town to be with her husband, Nico. He promptly goes off to war, leaving her to the lustful eyes of the men and the sharp tongues of the women. During the next few years, as Renato grows toward manhood, he watches Mal\u00e8na suffer and prove her mettle. He sees her loneliness, then grief when Nico is reported dead, the effects of slander on her relationship with her father, her poverty and search for work, and final humiliations. Will Renato learn courage from Mal\u00e8na and stand up for her?", "video": false, "id": 10867, "genres": [{"id": 18, "name": "Drama"}], "title": "Malena", "tagline": "She was too young to be a widow, and too beautiful to be alone. Every man wanted to have her. One boy risked everything to protect her", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0213847", "adult": false, "backdrop_path": "/1pKWd4LfusFfKZ2YchFLYcsANIE.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Medusa Produzione", "id": 1702}], "release_date": "2000-10-27", "popularity": 1.08710361811214, "original_title": "Mal\u00e8na", "budget": 0, "cast": [{"name": "Monica Bellucci", "character": "Malena Scordia", "id": 28782, "credit_id": "52fe43c69251416c7501dba3", "cast_id": 1, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 0}, {"name": "Giuseppe Sulfaro", "character": "Renato Amoroso", "id": 67612, "credit_id": "52fe43c69251416c7501dba7", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Luciano Federico", "character": "Renato's Father", "id": 67613, "credit_id": "52fe43c69251416c7501dbab", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Matilde Piana", "character": "Renato's Mother", "id": 67614, "credit_id": "52fe43c79251416c7501dbaf", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Pietro Notarianni", "character": "Professor Bonsignore", "id": 15134, "credit_id": "52fe43c79251416c7501dbd7", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Gaetano Aronica", "character": "Nino Scordia", "id": 147156, "credit_id": "52fe43c79251416c7501dbdb", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Gilberto Idonea", "character": "Avvocato Centorbi", "id": 120657, "credit_id": "52fe43c79251416c7501dbdf", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Angelo Pellegrino", "character": "Segretario politico", "id": 232886, "credit_id": "52fe43c79251416c7501dbe3", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Gabriella Di Luzio", "character": "Mantenuta del Barone", "id": 553177, "credit_id": "52fe43c79251416c7501dbe7", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Pippo Provvidenti", "character": "Dott. Cusimano", "id": 553178, "credit_id": "52fe43c79251416c7501dbeb", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Maria Terranova", "character": "Moglie Dott. Cusimano", "id": 553179, "credit_id": "52fe43c79251416c7501dbef", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Marcello Catalano", "character": "Lieutenant Cadel", "id": 553180, "credit_id": "52fe43c79251416c7501dbf3", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Elisa Morucci", "character": "Lupetta", "id": 553181, "credit_id": "52fe43c79251416c7501dbf7", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Domenico Gennaro", "character": "Farmacista", "id": 553182, "credit_id": "52fe43c79251416c7501dbfb", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Vitalba Andrea", "character": "Moglie farmacista", "id": 7545, "credit_id": "52fe43c79251416c7501dbff", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Giuseppe Pattavina", "character": "Pretore", "id": 553183, "credit_id": "52fe43c79251416c7501dc03", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Franco Catalano", "character": "Negoziante", "id": 553184, "credit_id": "52fe43c79251416c7501dc07", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Daniele Arena", "character": "Agostino", "id": 553185, "credit_id": "52fe43c79251416c7501dc0b", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Giovanni Litrico", "character": "Pin\u00e8", "id": 553186, "credit_id": "52fe43c79251416c7501dc0f", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Gianluca Guarrera", "character": "Nicola", "id": 553187, "credit_id": "52fe43c79251416c7501dc13", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Michel Daniel Bramanti", "character": "Sas\u00e0", "id": 553188, "credit_id": "52fe43c79251416c7501dc17", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Giuseppe Zizzo", "character": "Tanino", "id": 553189, "credit_id": "52fe43c79251416c7501dc1b", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Tot\u00f2 Borgese", "character": "Milite fascista", "id": 553190, "credit_id": "52fe43c79251416c7501dc1f", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Emanuele Gullotto", "character": "Negoziante dischi", "id": 553191, "credit_id": "52fe43c79251416c7501dc23", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Aurora Quattrocchi", "character": "Tenutaria bordello", "id": 20589, "credit_id": "52fe43c79251416c7501dc27", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Claudia Muzi", "character": "1a Prostituta", "id": 553192, "credit_id": "52fe43c79251416c7501dc2b", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Ornella Giusto", "character": "2a Prostituta", "id": 35107, "credit_id": "52fe43c79251416c7501dc2f", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Conchita Puglisi", "character": "3a Prostituta", "id": 553193, "credit_id": "52fe43c79251416c7501dc33", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Noemi Giarratana", "character": "Sorella Renato", "id": 553194, "credit_id": "52fe43c79251416c7501dc37", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Paola Pace", "character": "1a Donna linciaggio", "id": 553195, "credit_id": "52fe43c79251416c7501dc3b", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "Lucia Sardo", "character": "2a Donna linciaggio", "id": 129571, "credit_id": "52fe43c79251416c7501dc3f", "cast_id": 37, "profile_path": null, "order": 30}, {"name": "Alessandro Cremona", "character": "", "id": 1381616, "credit_id": "5517b4099251416f0a0031eb", "cast_id": 38, "profile_path": null, "order": 31}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe43c79251416c7501dbb5", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.3, "runtime": 109}, "51828": {"poster_path": "/xzOz17yC3K6SZWtWylXimcHUqpD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59389433, "overview": "A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.", "video": false, "id": 51828, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "One Day", "tagline": "Twenty years. Two people.", "vote_count": 244, "homepage": "http://www.focusfeatures.com/one_day", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1563738", "adult": false, "backdrop_path": "/e3rK3o87k8UjR6Sq2cKWks30Jfa.jpg", "production_companies": [{"name": "Film 4", "id": 2335}, {"name": "Color Force", "id": 5420}], "release_date": "2011-03-02", "popularity": 0.871774907907548, "original_title": "One Day", "budget": 15000000, "cast": [{"name": "Anne Hathaway", "character": "Emma", "id": 1813, "credit_id": "52fe4806c3a36847f815497b", "cast_id": 2, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Dexter", "id": 38941, "credit_id": "52fe4806c3a36847f815497f", "cast_id": 3, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Patricia Clarkson", "character": "Alison Mayhew", "id": 1276, "credit_id": "52fe4806c3a36847f8154983", "cast_id": 6, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 2}, {"name": "Romola Garai", "character": "Sylvie Cope", "id": 6979, "credit_id": "52fe4806c3a36847f8154987", "cast_id": 7, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 3}, {"name": "Heida Reed", "character": "Ingrid", "id": 1035194, "credit_id": "52fe4806c3a36847f8154991", "cast_id": 9, "profile_path": "/o1VSfC7KaFlK6yQUL3fY2xcM9AX.jpg", "order": 4}, {"name": "Tom Mison", "character": "Callum", "id": 75073, "credit_id": "54fe350cc3a36810a40002ed", "cast_id": 10, "profile_path": "/j7Hs9RStUNrwedqILRMcolI3QZz.jpg", "order": 5}, {"name": "Jodie Whittaker", "character": "Tilly", "id": 66431, "credit_id": "54fe351c9251417893000010", "cast_id": 11, "profile_path": "/1uCyLazOjo1mepIgagMQFTcfPOX.jpg", "order": 6}, {"name": "Rafe Spall", "character": "Ian", "id": 28847, "credit_id": "54fe352fc3a368155f00001a", "cast_id": 12, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 7}, {"name": "Jos\u00e9phine de La Baume", "character": "Marie", "id": 512079, "credit_id": "54fe35429251410e4b0002ec", "cast_id": 13, "profile_path": "/jVn9KIkjlMIve64eZSFPRk4uoVW.jpg", "order": 8}, {"name": "Ken Stott", "character": "Stephen", "id": 25136, "credit_id": "54fe3556c3a36810980002b2", "cast_id": 14, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 9}, {"name": "Amanda Fairbank-Hynes", "character": "Tara", "id": 235837, "credit_id": "54fe356c9251410e540002ca", "cast_id": 15, "profile_path": "/127xlkSaLK92NaYdStJQxWkqR1I.jpg", "order": 10}, {"name": "Georgia King", "character": "Suki", "id": 73462, "credit_id": "54fe357ec3a36810a4000306", "cast_id": 16, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 11}, {"name": "Matt Berry", "character": "Aaron", "id": 119904, "credit_id": "54fe3599c3a36810930002e4", "cast_id": 17, "profile_path": "/xlPqH1tKaBUZVTZpwH7E3EkqbUR.jpg", "order": 12}], "directors": [{"name": "Lone Scherfig", "department": "Directing", "job": "Director", "credit_id": "52fe4806c3a36847f8154977", "profile_path": "/zJDZjeBfJxVUslaOU2lI9zfsU3F.jpg", "id": 1176}], "vote_average": 6.8, "runtime": 107}, "18911": {"poster_path": "/vQ8MWxp81xcmaVsk76mwEVTzVt2.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "West Midlands based filmmaker Stephen Reynolds\u2019 latest 60 minute feature, Tomb Raider Ascension. Shot in 7 days with a budget of \u00a310,000, Stephen directs Anna Tyrie in his own spin on the Tomb Raider franchise, taking the story back to the beginning of Lara Croft\u2019s journey and showing her rise to become \u2018Tomb Raider\u2019", "video": false, "id": 18911, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Tomb Raider: Ascension", "tagline": "Everything has a beginning.", "vote_count": 214, "homepage": "http://www.tombraiderascension.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1629741", "adult": false, "backdrop_path": "/uCuKMiI7aVYhNQu7SuMhWae5z0i.jpg", "production_companies": [], "release_date": "2008-01-01", "popularity": 0.0122338785314616, "original_title": "Tomb Raider: Ascension", "budget": 20000, "cast": [{"name": "Anna Tyrie", "character": "Lara Croft", "id": 83855, "credit_id": "52fe47aa9251416c750a1547", "cast_id": 1, "profile_path": "/cPlRM7gtuNWpeiysLBMt1nd665w.jpg", "order": 0}, {"name": "Philip Goldacre", "character": "Lord Richard Croft, Lara's Father", "id": 108494, "credit_id": "52fe47aa9251416c750a1561", "cast_id": 10, "profile_path": "/8AwVcdhVpGl4I73U8Q4jPE437ZJ.jpg", "order": 1}, {"name": "Peter Wear", "character": "Lord Errol Croft, Lara's Uncle", "id": 108489, "credit_id": "52fe47aa9251416c750a1551", "cast_id": 5, "profile_path": "/czxF1RYbCygXLpgK73liU3hkKUv.jpg", "order": 2}, {"name": "Ava Hunt", "character": "Amelia Croft, Lara's Mother", "id": 108490, "credit_id": "52fe47aa9251416c750a1555", "cast_id": 6, "profile_path": "/gpCPtafDhYl53lzYiMH3EMT9b30.jpg", "order": 3}, {"name": "Hugh Hemmings", "character": "Winston, the Buttler", "id": 108491, "credit_id": "52fe47aa9251416c750a1559", "cast_id": 7, "profile_path": "/hq0yYJOtsA4MYYIIkLgsyszlqFN.jpg", "order": 4}, {"name": "Jamie Duncombe", "character": "Jax, Lara's personal trainer", "id": 108492, "credit_id": "52fe47aa9251416c750a155d", "cast_id": 8, "profile_path": "/fmXxP0v6OUhs2T231tJZqOUZXE.jpg", "order": 5}, {"name": "Gabriella Higginbottom", "character": "Young Lara", "id": 1280138, "credit_id": "52fe47aa9251416c750a1571", "cast_id": 13, "profile_path": "/cD17PrNRgsjad3Qje6f7qHeet0M.jpg", "order": 6}, {"name": "Ben Goodridge", "character": "Doctor Crowley", "id": 1280139, "credit_id": "52fe47aa9251416c750a1575", "cast_id": 14, "profile_path": "/zzvcpyn8IlSzErosKh0yfVUgjpZ.jpg", "order": 7}], "directors": [{"name": "Stephen Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe47aa9251416c750a1567", "profile_path": null, "id": 108486}], "vote_average": 5.3, "runtime": 60}, "106747": {"poster_path": "/ltblMRM8clWKsjC2qQITuRN40Yr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15008161, "overview": "Ex-Federale agent Machete is recruited by the President of the United States for a mission which would be impossible for any mortal man \u2013 he must take down a madman revolutionary and an eccentric billionaire arms dealer who has hatched a plan to spread war and anarchy across the planet.", "video": false, "id": 106747, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Machete Kills", "tagline": "Trained to kill. Left for dead. Back for more.", "vote_count": 199, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vURYjEnOd8if3juhZh6HRcTJs7T.jpg", "poster_path": "/7kN9MY7htPG0sI598VJK2pB6zEs.jpg", "id": 210006, "name": "Machete Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2002718", "adult": false, "backdrop_path": "/5bxyCKV3AHlzwmvtqXkcr7Li56s.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Overnight Films", "id": 10808}, {"name": "AR Films", "id": 11005}, {"name": "Aldamisa Entertainment", "id": 11006}, {"name": "Demarest Films", "id": 13241}, {"name": "1821 Pictures", "id": 14358}, {"name": "Quick Draw Productions", "id": 25608}], "release_date": "2013-10-11", "popularity": 1.16043095259467, "original_title": "Machete Kills", "budget": 12000000, "cast": [{"name": "Danny Trejo", "character": "Machete Cortez", "id": 11160, "credit_id": "52fe4a70c3a36847f81cde77", "cast_id": 11, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 0}, {"name": "Mel Gibson", "character": "Luther Voz", "id": 2461, "credit_id": "52fe4a70c3a36847f81cde6f", "cast_id": 9, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "Amber Heard", "character": "Miss San Antonio", "id": 55085, "credit_id": "52fe4a70c3a36847f81cde8f", "cast_id": 18, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 2}, {"name": "Michelle Rodriguez", "character": "Luz", "id": 17647, "credit_id": "52fe4a70c3a36847f81cde73", "cast_id": 10, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 3}, {"name": "Sof\u00eda Vergara", "character": "Desdemona", "id": 63522, "credit_id": "52fe4a70c3a36847f81cde7f", "cast_id": 13, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 4}, {"name": "Jessica Alba", "character": "Sartana", "id": 56731, "credit_id": "52fe4a70c3a36847f81cde6b", "cast_id": 8, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 5}, {"name": "Tom Savini", "character": "Osiris Amanpour", "id": 11161, "credit_id": "52fe4a70c3a36847f81cde7b", "cast_id": 12, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 6}, {"name": "Lady Gaga", "character": "La Camaleon", "id": 237405, "credit_id": "52fe4a70c3a36847f81cde83", "cast_id": 14, "profile_path": "/uPlzD1ARsApOsU20eeWradHpWjr.jpg", "order": 7}, {"name": "Vanessa Hudgens", "character": "Cereza", "id": 67599, "credit_id": "52fe4a70c3a36847f81cde87", "cast_id": 15, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 8}, {"name": "Cuba Gooding Jr.", "character": "El Camaleon", "id": 9777, "credit_id": "52fe4a70c3a36847f81cde8b", "cast_id": 17, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 9}, {"name": "Demi\u00e1n Bichir", "character": "Mendez", "id": 76961, "credit_id": "52fe4a70c3a36847f81cde93", "cast_id": 19, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 10}, {"name": "Charlie Sheen", "character": "Mr. President", "id": 6952, "credit_id": "52fe4a70c3a36847f81cde97", "cast_id": 20, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 11}, {"name": "Antonio Banderas", "character": "El Camaleon", "id": 3131, "credit_id": "52fe4a70c3a36847f81cde9b", "cast_id": 21, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 12}, {"name": "Walton Goggins", "character": "El Camaleon", "id": 27740, "credit_id": "52fe4a70c3a36847f81cde9f", "cast_id": 22, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 13}, {"name": "William Sadler", "character": "Sheriff Doakes", "id": 6573, "credit_id": "52fe4a70c3a36847f81cdea3", "cast_id": 23, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 14}, {"name": "Crystal Martinez", "character": "Wife of Mendez", "id": 1265929, "credit_id": "52fe4a70c3a36847f81cdedd", "cast_id": 33, "profile_path": "/mbmgK6gcIlsaW2gEvZtY94aHbMW.jpg", "order": 15}, {"name": "Alexa PenaVega", "character": "KillJoy", "id": 57674, "credit_id": "5408df460e0a263a1e000621", "cast_id": 37, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 16}, {"name": "Billy Blair", "character": "Billy", "id": 968889, "credit_id": "54466bb0c3a3683691002420", "cast_id": 38, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 17}, {"name": "Marko Zaror", "character": "", "id": 118370, "credit_id": "5522310bc3a368333a002a90", "cast_id": 39, "profile_path": "/gg4gcPVpGYs2fYduvau2g17uZKU.jpg", "order": 18}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4a70c3a36847f81cde43", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 5.4, "runtime": 107}, "26389": {"poster_path": "/41yioNp9apJ7xtYDaSxqBfm1p5T.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52615806, "overview": "While working at the American embassy in Paris, low-level intelligence agent James Reece gets involved in espionage when he's pulled into a terrorist plot by high-ranking but uncouth American operative Charlie Wax, who's trying to stop it.", "video": false, "id": 26389, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "From Paris with Love", "tagline": "Two agents. One city. No merci.", "vote_count": 265, "homepage": "http://www.frompariswithlovefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1179034", "adult": false, "backdrop_path": "/zQSdINGXiEelKf4qfzPZAdxxwyI.jpg", "production_companies": [{"name": "TPS Star", "id": 6586}, {"name": "JTP Films", "id": 7406}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Grive Productions", "id": 6877}, {"name": "M6 Films", "id": 1115}], "release_date": "2010-02-05", "popularity": 1.07520905773998, "original_title": "From Paris with Love", "budget": 52000000, "cast": [{"name": "John Travolta", "character": "FBI agent Charlie Wax", "id": 8891, "credit_id": "52fe44ffc3a368484e042d21", "cast_id": 3, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Jonathan Rhys Meyers", "character": "James Reece / Richard Stevens", "id": 1244, "credit_id": "52fe44ffc3a368484e042d25", "cast_id": 4, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 1}, {"name": "Kasia Smutniak", "character": "Caroline", "id": 120832, "credit_id": "52fe44ffc3a368484e042d29", "cast_id": 5, "profile_path": "/ldNnr3j2i3q8VTTXoBSAvt33lY2.jpg", "order": 2}, {"name": "Richard Durden", "character": "Ambassador Bennington", "id": 120833, "credit_id": "52fe44ffc3a368484e042d2d", "cast_id": 6, "profile_path": "/jtsGAARS6sNDfHPGl4xrJdtSEb3.jpg", "order": 3}, {"name": "Amber Rose Revah", "character": "Nichole", "id": 574378, "credit_id": "52fe44ffc3a368484e042d37", "cast_id": 8, "profile_path": "/uWKJDbkZqttvc1os3UNanSmh5Aa.jpg", "order": 4}, {"name": "Bing Yin", "character": "M. Wong", "id": 1019987, "credit_id": "52fe44ffc3a368484e042d3b", "cast_id": 9, "profile_path": "/3P9z2fjxKbNPX3PabrsKq3XYOWA.jpg", "order": 5}, {"name": "Eric Godon", "character": "Foreign Minister", "id": 145299, "credit_id": "52fe44ffc3a368484e042d3f", "cast_id": 10, "profile_path": "/iKWCAMxgHIWoJ1EJG4gWKEPYxbE.jpg", "order": 6}], "directors": [{"name": "Pierre Morel", "department": "Directing", "job": "Director", "credit_id": "52fe44ffc3a368484e042d17", "profile_path": "/yyhcEUYW4znC6JbNKZv2OJp1Cy0.jpg", "id": 35453}], "vote_average": 6.2, "runtime": 92}, "10882": {"poster_path": "/biXVl7xLv1sD9ucBEYzheuMYX8b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51000000, "overview": "A beautiful princess born in a faraway kingdom is destined by a terrible curse to prick her finger on the spindle of a spinning wheel and fall into a deep sleep that can only be awakened by true love's first kiss. Determined to protect her, her parents ask three fairies to raise her in hiding. But the evil Maleficent is just as determined to seal the princess's fate.", "video": false, "id": 10882, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Sleeping Beauty", "tagline": "Awaken to a World of Wonders!", "vote_count": 258, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0053285", "adult": false, "backdrop_path": "/q45ooDygidJB4pPjEE2xW3sHVUt.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1959-01-29", "popularity": 1.82131799842273, "original_title": "Sleeping Beauty", "budget": 6000000, "cast": [{"name": "Mary Costa", "character": "Princess Aurora", "id": 67287, "credit_id": "52fe43c99251416c7501e207", "cast_id": 1, "profile_path": "/wj3vPSTQb1bO9KQios9QqqYaqcv.jpg", "order": 0}, {"name": "Bill Shirley", "character": "Prince Phillip", "id": 67288, "credit_id": "52fe43c99251416c7501e20b", "cast_id": 2, "profile_path": "/4PSxq5rKm6sZUktIss0ndRPv15O.jpg", "order": 1}, {"name": "Eleanor Audley", "character": "Maleficent", "id": 67289, "credit_id": "52fe43c99251416c7501e20f", "cast_id": 3, "profile_path": "/eTU6naXyRKll0dLWxN8fp2Iiqdy.jpg", "order": 2}, {"name": "Verna Felton", "character": "Flora", "id": 67290, "credit_id": "52fe43c99251416c7501e213", "cast_id": 4, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 3}, {"name": "Barbara Luddy", "character": "Merryweather", "id": 64871, "credit_id": "52fe43c99251416c7501e241", "cast_id": 12, "profile_path": "/cK7NjpqJmjaFTT52vwAq9bYH2VA.jpg", "order": 4}, {"name": "Barbara Jo Allen", "character": "Fauna", "id": 103448, "credit_id": "52fe43c99251416c7501e245", "cast_id": 13, "profile_path": "/ajxHQNS0o0JjLH0MfY1Abqrqnnx.jpg", "order": 5}, {"name": "Taylor Holmes", "character": "Stefan", "id": 11172, "credit_id": "52fe43c99251416c7501e249", "cast_id": 14, "profile_path": "/dmdGm5SHP6gJDbbANZMHTrYM4Kn.jpg", "order": 6}, {"name": "Bill Thompson", "character": "Hubert", "id": 67230, "credit_id": "52fe43c99251416c7501e24d", "cast_id": 15, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 7}, {"name": "Rosa Crosby", "character": "Queen Leah", "id": 1445661, "credit_id": "551300d2c3a36861610017f2", "cast_id": 16, "profile_path": null, "order": 8}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe43c99251416c7501e219", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}], "vote_average": 6.5, "runtime": 75}, "8273": {"poster_path": "/lcLuBjI3Hr12mGFKJvdMeZdf3AN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231449203, "overview": "With high school a distant memory, Jim and Michelle are getting married -- and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle -- prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.", "video": false, "id": 8273, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "American Wedding", "tagline": "Forever hold your piece.", "vote_count": 303, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0328828", "adult": false, "backdrop_path": "/xNbvAMx3YGcBXX9dzUIMGsbV7CR.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "LivePlanet", "id": 7161}], "release_date": "2003-07-24", "popularity": 1.02440483777879, "original_title": "American Wedding", "budget": 55000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe449ac3a36847f809f973", "cast_id": 7, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty", "id": 21595, "credit_id": "52fe449ac3a36847f809f977", "cast_id": 8, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 1}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe449ac3a36847f809f97b", "cast_id": 9, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 2}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe449ac3a36847f809f97f", "cast_id": 10, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 3}, {"name": "Thomas Ian Nicholas", "character": "Kevin Myers", "id": 21403, "credit_id": "52fe449ac3a36847f809f983", "cast_id": 11, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 4}, {"name": "January Jones", "character": "Cadence Flaherty", "id": 31717, "credit_id": "52fe449ac3a36847f809f987", "cast_id": 12, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 5}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe449ac3a36847f809f98b", "cast_id": 13, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 6}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "52fe449ac3a36847f809f98f", "cast_id": 14, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 7}, {"name": "Deborah Rush", "character": "Mary Flaherty", "id": 44830, "credit_id": "52fe449ac3a36847f809f993", "cast_id": 15, "profile_path": "/68JfXOKiUsiZ9mQAt14RRNb28tS.jpg", "order": 8}, {"name": "Fred Willard", "character": "Harold Flaherty", "id": 20753, "credit_id": "52fe449ac3a36847f809f997", "cast_id": 16, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 9}, {"name": "Angela Paton", "character": "Grandma", "id": 1537, "credit_id": "52fe449ac3a36847f809f99b", "cast_id": 17, "profile_path": "/eJZpJyEuMT4mQ8d8tbU0addZ1kD.jpg", "order": 10}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "53bc2ffac3a368663b0025a9", "cast_id": 28, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 11}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc300dc3a368661e0026c4", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "53bc3053c3a368662800260b", "cast_id": 30, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 13}], "directors": [{"name": "Jesse Dylan", "department": "Directing", "job": "Director", "credit_id": "52fe449ac3a36847f809f951", "profile_path": "/An83VcuHDbyNxOoJMj7sOnXyyex.jpg", "id": 54584}], "vote_average": 5.9, "runtime": 103}, "2698": {"poster_path": "/mtIjd19s4eOSkUm9P9iDVY35TsQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32000000, "overview": "Buffalo newsman Evan Baxter is elected to Congress with the slogan, \"Change the world.\" He lucks into a huge house in a new Virginia suburb. His Capitol office is also fantastic, but there's a catch: he's tapped by the powerful Congressman Long to co-sponsor a bill to allow development in national parks. In steps God, who appears to a disbelieving Evan and gently commands him to build an ark", "video": false, "id": 2698, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Evan Almighty", "tagline": "A comedy of biblical proportions", "vote_count": 302, "homepage": "http://www.evanalmighty.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/8DWF5nzKeZvwC4Fi7iacobtMlbU.jpg", "id": 124949, "name": "Almighty Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0413099", "adult": false, "backdrop_path": "/cKVcHq9qdctpY8v9XMmqcwuG2Jn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Shady Acres Entertainment", "id": 159}, {"name": "Original Film", "id": 333}], "release_date": "2007-06-09", "popularity": 1.19816371696756, "original_title": "Evan Almighty", "budget": 140000000, "cast": [{"name": "Steve Carell", "character": "Evan Baxter", "id": 4495, "credit_id": "52fe4365c3a36847f8051479", "cast_id": 19, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Lauren Graham", "character": "Joan Baxter", "id": 16858, "credit_id": "52fe4365c3a36847f805147d", "cast_id": 20, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 1}, {"name": "John Goodman", "character": "Congressman Long", "id": 1230, "credit_id": "52fe4365c3a36847f8051481", "cast_id": 21, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Jimmy Bennett", "character": "Ryan Baxter", "id": 6860, "credit_id": "52fe4365c3a36847f8051485", "cast_id": 22, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 3}, {"name": "John Michael Higgins", "character": "Marty", "id": 8265, "credit_id": "52fe4365c3a36847f8051489", "cast_id": 23, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 4}, {"name": "Morgan Freeman", "character": "God", "id": 192, "credit_id": "52fe4365c3a36847f805148d", "cast_id": 24, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 5}, {"name": "Wanda Sykes", "character": "Rita", "id": 27102, "credit_id": "52fe4365c3a36847f8051491", "cast_id": 25, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 6}, {"name": "Graham Phillips", "character": "Jordan Baxter", "id": 27103, "credit_id": "52fe4365c3a36847f8051495", "cast_id": 26, "profile_path": "/lurz14Abqtyo1qBQJRDx34qDAye.jpg", "order": 7}, {"name": "Johnny Simmons", "character": "Dylan Baxter", "id": 27104, "credit_id": "52fe4365c3a36847f8051499", "cast_id": 27, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 8}, {"name": "Jonah Hill", "character": "Eugene", "id": 21007, "credit_id": "52fe4365c3a36847f805149d", "cast_id": 28, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 9}, {"name": "Ed Helms", "character": "Ed Carson", "id": 27105, "credit_id": "52fe4365c3a36847f80514a1", "cast_id": 29, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 10}, {"name": "Dean Norris", "character": "Officer Collins", "id": 14329, "credit_id": "52fe4365c3a36847f80514a5", "cast_id": 30, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 11}, {"name": "James Newman", "character": "Congressperson", "id": 151124, "credit_id": "52fe4365c3a36847f80514b5", "cast_id": 33, "profile_path": "/yIDXqkrb290f9xAd6yNU0g2QmYQ.jpg", "order": 12}, {"name": "Molly Shannon", "character": "Eve Adams", "id": 28640, "credit_id": "52fe4365c3a36847f80514bf", "cast_id": 35, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 13}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4365c3a36847f805141b", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 5.4, "runtime": 96}, "10895": {"poster_path": "/eAIJ1RRQRlaeUy2sdxKcRRNBMjC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84300000, "overview": "Lonely toymaker Geppetto has his wishes answered when the Blue Fairy arrives to bring his wooden puppet Pinocchio to life. Before becoming a real boy, however, Pinocchio must prove he's worthy as he sets off on an adventure with his whistling sidekick and conscience, Jiminy Cricket. From Stromboli's circus to Pleasure Island, Pinocchio is tested by many temptations, but slowly learns how to navigate right from wrong. With a few mishaps along the way, Geppetto's \"little woodenhead\" finally gets it right, proving that when you wish upon a star dreams really can come true!", "video": false, "id": 10895, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Pinocchio", "tagline": "For anyone who has ever wished upon a star.", "vote_count": 312, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0032910", "adult": false, "backdrop_path": "/n8v2ugyc3DPYiU68d0XqNKWNQIv.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}, {"name": "RKO Radio Pictures", "id": 6}], "release_date": "1940-02-07", "popularity": 1.44480139325982, "original_title": "Pinocchio", "budget": 2600000, "cast": [{"name": "Mel Blanc", "character": "Gideon", "id": 33923, "credit_id": "52fe43cb9251416c7501e6df", "cast_id": 37, "profile_path": "/v7E4ABdhvaF1W604vIUD5Xj1jnb.jpg", "order": 0}, {"name": "Don Brodie", "character": "Carnival Barkers", "id": 67369, "credit_id": "52fe43cb9251416c7501e6cf", "cast_id": 33, "profile_path": "/fmXrW1JF7DevZwT8bLsYTtaIzD2.jpg", "order": 1}, {"name": "Walter Catlett", "character": "John Worthington Foulfellow", "id": 13819, "credit_id": "52fe43cb9251416c7501e6e3", "cast_id": 38, "profile_path": "/qwTfz5uMIYjWGofyUdnAffx2C8h.jpg", "order": 2}, {"name": "Marion Darlington", "character": "Birds", "id": 5463, "credit_id": "544bff37c3a36872d800080f", "cast_id": 41, "profile_path": null, "order": 3}, {"name": "Frankie Darro", "character": "Lampwick", "id": 67370, "credit_id": "52fe43cb9251416c7501e6db", "cast_id": 36, "profile_path": "/mjRY07gpz3DTpQHa0uxtNkIvZX5.jpg", "order": 4}, {"name": "Cliff Edwards", "character": "Jiminy Cricket", "id": 30236, "credit_id": "52fe43cb9251416c7501e6c7", "cast_id": 31, "profile_path": "/kbWXXmugxdX3rOEa0hUlJWHZ9pA.jpg", "order": 5}, {"name": "Dickie Jones", "character": "Pinocchio", "id": 67371, "credit_id": "52fe43cb9251416c7501e6cb", "cast_id": 32, "profile_path": "/4dGe5gm0nDGwUN9u6hVx7iFlxaU.jpg", "order": 6}, {"name": "Charles Judels", "character": "Stromboli", "id": 96053, "credit_id": "544bff800e0a2608be00080a", "cast_id": 42, "profile_path": "/tJr3v1i6KEwEfZJTOM68RcleZxN.jpg", "order": 7}, {"name": "Clarence Nash", "character": "Figaro", "id": 78077, "credit_id": "544bff94c3a36872bc00083f", "cast_id": 43, "profile_path": "/bEtwgcLncIDovv9qplhTVffQB7e.jpg", "order": 8}, {"name": "Patricia Page", "character": "Marionettes", "id": 1377560, "credit_id": "544bffa60e0a2608cd0007bf", "cast_id": 44, "profile_path": null, "order": 9}, {"name": "Christian Rub", "character": "Geppetto", "id": 985275, "credit_id": "530ad7aa925141785e00261c", "cast_id": 40, "profile_path": "/pbXqN3qxPMiMZ8hS5hD39qKK1nH.jpg", "order": 10}, {"name": "Evelyn Venable", "character": "Blue Fairy", "id": 117073, "credit_id": "52fe43cb9251416c7501e6d7", "cast_id": 35, "profile_path": "/umByXgmx1VJrsAqhPWq3o7pey30.jpg", "order": 11}], "directors": [{"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe43cb9251416c7501e681", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}, {"name": "Ben Sharpsteen", "department": "Directing", "job": "Director", "credit_id": "52fe43cb9251416c7501e687", "profile_path": "/1dfzGLuG0n4IeR6ONjAFuhh8Kli.jpg", "id": 11426}], "vote_average": 6.4, "runtime": 88}, "10898": {"poster_path": "/bjqp9REebK6Iwu2dOBWEAs8J7nm.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set several years after the first film, Ariel and Prince Eric are happily married with a daughter, Melody. In order to protect Melody from the Sea Witch, Morgana, they have not told her about her mermaid heritage. Melody is curious and ventures into the sea, where she meets new friends. But will she become a pawn in Morgana's quest to take control of the ocean from King Triton?", "video": false, "id": 10898, "genres": [{"id": 16, "name": "Animation"}], "title": "The Little Mermaid II: Return to the Sea", "tagline": "Return to the sea September 19", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3LVnessjKBjTEVLpVBJf5uh5Y9.jpg", "poster_path": "/y0EOuK02TasfRGSZBdv5U910QaV.jpg", "id": 33085, "name": "The Little Mermaid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240684", "adult": false, "backdrop_path": "/rFxoz5577jcnsNDDvH4Hceo05Qw.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Television Animation", "id": 18978}, {"name": "Walt Disney Animation Canada", "id": 12402}, {"name": "Walt Disney Animation Australia", "id": 3476}], "release_date": "2000-08-30", "popularity": 0.128903967358434, "original_title": "The Little Mermaid II: Return to the Sea", "budget": 0, "cast": [{"name": "Jodi Benson", "character": "Ariel", "id": 63978, "credit_id": "52fe43cc9251416c7501e85d", "cast_id": 1, "profile_path": "/9tOpKgu6cBBL29LxEC21fOVVVPW.jpg", "order": 0}, {"name": "Samuel E. Wright", "character": "Sebastian", "id": 67392, "credit_id": "52fe43cc9251416c7501e861", "cast_id": 2, "profile_path": "/hOtuep1nRczthyxkJusb68rcuL1.jpg", "order": 1}, {"name": "Tara Strong", "character": "Melody", "id": 15762, "credit_id": "52fe43cc9251416c7501e865", "cast_id": 3, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 2}, {"name": "Pat Carroll", "character": "Morgana", "id": 35232, "credit_id": "52fe43cc9251416c7501e869", "cast_id": 4, "profile_path": "/u3VKH6kvq3giRZ7UJTaec262HHW.jpg", "order": 3}, {"name": "Buddy Hackett", "character": "Scuttle", "id": 67393, "credit_id": "52fe43cc9251416c7501e86d", "cast_id": 5, "profile_path": "/zYLAknEo17XgWU44DbT2FCvLQps.jpg", "order": 4}, {"name": "Kenneth Mars", "character": "King Triton", "id": 9601, "credit_id": "550d8cfac3a36848740065dd", "cast_id": 13, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 5}, {"name": "Max Casella", "character": "Tip", "id": 7133, "credit_id": "550d8d3192514133c3003b03", "cast_id": 14, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 6}, {"name": "Stephen Furst", "character": "Dash", "id": 52304, "credit_id": "550d8d449251414691005b12", "cast_id": 15, "profile_path": "/omZKqkF9PrOS4mNyFPpu5iZcdAL.jpg", "order": 7}, {"name": "Rob Paulsen", "character": "Prince Eric", "id": 43125, "credit_id": "550d8d5492514133c3003b09", "cast_id": 16, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 8}, {"name": "Clancy Brown", "character": "Undertow", "id": 6574, "credit_id": "550d8d84c3a36848720062bc", "cast_id": 17, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 9}, {"name": "Cam Clarke", "character": "Flounder", "id": 60272, "credit_id": "550d8d9c925141469c005c7b", "cast_id": 18, "profile_path": "/7ecYo1hD0zHPxdKHSzkvHuM95Yj.jpg", "order": 10}, {"name": "Rene Auberjonois", "character": "Chef Louis", "id": 9807, "credit_id": "550d8e20c3a36848720062c9", "cast_id": 19, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 11}, {"name": "Kay E. Kuter", "character": "Grimsby", "id": 61702, "credit_id": "550d8e30c3a3684886005f61", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Edie McClurg", "character": "Carlotta", "id": 3202, "credit_id": "550d8e44c3a3684883005e1a", "cast_id": 21, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 13}], "directors": [{"name": "Jim Kammerud", "department": "Directing", "job": "Director", "credit_id": "52fe43cc9251416c7501e873", "profile_path": null, "id": 60725}], "vote_average": 5.9, "runtime": 72}, "41411": {"poster_path": "/iHJtP74X9hie5LZDwmFW7wugX1H.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "HU", "name": "Hungary"}], "revenue": 0, "overview": "1942. Joseph is eleven. And this June morning, he must go to school, a yellow star sown on his chest. He receives the support of a goods dealer. The mockery of a baker. Between kindness and contempt, Jo, his Jewish friends, their families, learn of life in an occupied Paris, on the Butte Montmartre, where they've taken shelter. At least that's what they think, until that morning on July 16th 1942, when their fragile happiness is toppled over.", "video": false, "id": 41411, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Round Up", "tagline": "", "vote_count": 53, "homepage": "http://larafle.gaumont.fr/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt1382725", "adult": false, "backdrop_path": "/yw2QRHwsMSCH0gIUZirvxDOpHs7.jpg", "production_companies": [{"name": "Centre National de la Cin\u00e9matographie (CNC)", "id": 18367}, {"name": "Gaumont", "id": 9}, {"name": "TF1 Films Production", "id": 3823}, {"name": "France 3 Cinema", "id": 16804}, {"name": "EOS Entertainment", "id": 2278}, {"name": "Eurofilm St\u00fadi\u00f3", "id": 16016}, {"name": "L\u00e9gende Films", "id": 22997}, {"name": "L\u00e9gende des Si\u00e8cles", "id": 22998}, {"name": "SMTS", "id": 22999}, {"name": "KS2 Cin\u00e9ma", "id": 23000}, {"name": "Alva Films", "id": 23001}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "Filmf\u00f6rderungsanstalt (FFA)", "id": 4247}, {"name": "R\u00e9gion Ile-de-France", "id": 11246}], "release_date": "2010-03-10", "popularity": 0.199411727520293, "original_title": "La Rafle", "budget": 25000000, "cast": [{"name": "Jean Reno", "character": "Dr. David Sheinbaum", "id": 1003, "credit_id": "52fe45c7c3a36847f80d9ff1", "cast_id": 18, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "M\u00e9lanie Laurent", "character": "Annette Monod", "id": 19119, "credit_id": "52fe45c7c3a36847f80d9ff5", "cast_id": 19, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 1}, {"name": "Gad Elmaleh", "character": "Schmuel Weismann", "id": 51100, "credit_id": "52fe45c7c3a36847f80d9fc5", "cast_id": 7, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 2}, {"name": "Rapha\u00eblle Agogu\u00e9", "character": "Sura Weismann", "id": 126386, "credit_id": "52fe45c7c3a36847f80d9ff9", "cast_id": 20, "profile_path": "/pPIXtMP7DnpFDCmo9icLgDH8OaE.jpg", "order": 3}, {"name": "Sylvie Testud", "character": "Bella Zygler", "id": 4529, "credit_id": "52fe45c7c3a36847f80d9fed", "cast_id": 17, "profile_path": "/u2fqcyDIKZk8plRHthpJtI7FdZd.jpg", "order": 4}, {"name": "Hugo Leverdez", "character": "Jo Weismann", "id": 131603, "credit_id": "52fe45c7c3a36847f80d9fc9", "cast_id": 8, "profile_path": "/anPmaNt7xjEA7DLbP4Pgscs5RQd.jpg", "order": 5}, {"name": "Oliver Cywie", "character": "Simon Zygler (as Olivier Cywie)", "id": 131604, "credit_id": "52fe45c7c3a36847f80d9fcd", "cast_id": 9, "profile_path": "/gK7jzznvLQC0weMkIddnFLtNYyi.jpg", "order": 6}, {"name": "Mathieu Di Concerto", "character": "No\u00e9 Zygler", "id": 131605, "credit_id": "52fe45c7c3a36847f80d9fd1", "cast_id": 10, "profile_path": "/vXC9xIRPuI60wN2PzJezbhUICbk.jpg", "order": 7}, {"name": "Romain Di Concerto", "character": "No\u00e9 Zygler", "id": 131606, "credit_id": "52fe45c7c3a36847f80d9fd5", "cast_id": 11, "profile_path": "/vXC9xIRPuI60wN2PzJezbhUICbk.jpg", "order": 8}, {"name": "Rebecca Marder", "character": "Rachel Weismann", "id": 131607, "credit_id": "52fe45c7c3a36847f80d9fd9", "cast_id": 12, "profile_path": "/qQKKezR8OzA5t3XmNW3TZZSneLI.jpg", "order": 9}, {"name": "Anne Brochet", "character": "Dina Traube", "id": 70182, "credit_id": "52fe45c7c3a36847f80d9fdd", "cast_id": 13, "profile_path": "/oX6GbBRscemBnbG0TRR594VenRa.jpg", "order": 10}, {"name": "Isabelle G\u00e9linas", "character": "H\u00e9l\u00e8ne Timonier", "id": 78475, "credit_id": "52fe45c7c3a36847f80d9fe1", "cast_id": 14, "profile_path": "/wHWFvU6NHo830dKPSWYCgMpOQbv.jpg", "order": 11}, {"name": "Thierry Fr\u00e9mont", "character": "Capitaine Pierret", "id": 96413, "credit_id": "52fe45c7c3a36847f80d9fe5", "cast_id": 15, "profile_path": "/c9makGlIHhO0f37LrUqEaQNnWhm.jpg", "order": 12}, {"name": "Catherine All\u00e9gret", "character": "La concierge 'Tati'", "id": 16926, "credit_id": "52fe45c7c3a36847f80d9fe9", "cast_id": 16, "profile_path": "/kb6186eWhiozkAmF3O2UziwY0G9.jpg", "order": 13}, {"name": "Denis M\u00e9nochet", "character": "Corot", "id": 81125, "credit_id": "52fe45c7c3a36847f80da003", "cast_id": 23, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 14}, {"name": "Ad\u00e8le Exarchopoulos", "character": "Anna Traube", "id": 586757, "credit_id": "52fe45c7c3a36847f80da007", "cast_id": 24, "profile_path": "/tPXch7Cb8NLg1pQ2n2Rd8CqaCFd.jpg", "order": 15}, {"name": "Jean-Pierre Lorit", "character": "Docteur Jousse", "id": 1356, "credit_id": "52fe45c7c3a36847f80da00b", "cast_id": 25, "profile_path": "/5GeQllohEVRvLhYFuowJHCW9tAf.jpg", "order": 16}, {"name": "Jean-Michel Noirey", "character": "Pierre Laval", "id": 28787, "credit_id": "52fe45c7c3a36847f80da00f", "cast_id": 26, "profile_path": "/72CqtzfTcXC7vWGXo5R7FqAluZ1.jpg", "order": 17}, {"name": "Anne Beno\u00eet", "character": "Matthey Jouanis", "id": 7282, "credit_id": "52fe45c7c3a36847f80da013", "cast_id": 27, "profile_path": "/1AynsV5oeLrn3qhAHWp0pdcURm7.jpg", "order": 18}, {"name": "Fr\u00e9d\u00e9ric Moulin", "character": "Ren\u00e9 Bousquet", "id": 1156339, "credit_id": "52fe45c7c3a36847f80da017", "cast_id": 28, "profile_path": "/pi3hJ1Q6WfQiTXXQHZlAJSnDpNM.jpg", "order": 19}, {"name": "Roland Cop\u00e9", "character": "Mar\u00e9chal P\u00e9tain", "id": 1176091, "credit_id": "52fe45c7c3a36847f80da01b", "cast_id": 29, "profile_path": "/231xQeIdcnDpqQNiymB3A6zYIf0.jpg", "order": 20}, {"name": "Armelle", "character": "Directrice \u00e9cole infirmi\u00e8res", "id": 77736, "credit_id": "52fe45c7c3a36847f80da01f", "cast_id": 30, "profile_path": "/wM36ChCOpQ2jTwXGjcw7yKvtTW5.jpg", "order": 21}, {"name": "Caroline Raynaud", "character": "Paule P\u00e9tiveau", "id": 230038, "credit_id": "52fe45c7c3a36847f80da023", "cast_id": 31, "profile_path": "/1r7bXlvUEqAsr7nJW2Qp2NJkOIV.jpg", "order": 22}, {"name": "Swann Arlaud", "character": "Milicien PPP Weismann", "id": 145120, "credit_id": "52fe45c7c3a36847f80da027", "cast_id": 32, "profile_path": "/rNnt25NME2EXavLGVaDhe1trDFc.jpg", "order": 23}, {"name": "Christelle Cornil", "character": "Jacqueline", "id": 234492, "credit_id": "52fe45c7c3a36847f80da05b", "cast_id": 45, "profile_path": "/t6EEsgODAde3WQf0Gkz2H3SNm0T.jpg", "order": 24}, {"name": "Udo Schenk", "character": "Adolf Hitler", "id": 31643, "credit_id": "52fe45c7c3a36847f80da02b", "cast_id": 33, "profile_path": "/3hSjt1GAANVJzQVGrktDR9mx54H.jpg", "order": 25}, {"name": "Franziska Schubert", "character": "Eva Braun", "id": 1176092, "credit_id": "52fe45c7c3a36847f80da02f", "cast_id": 34, "profile_path": "/aNVAFv6yl1mKFdNqMUAtK1v6JGS.jpg", "order": 26}, {"name": "Thomas Darchinger", "character": "Heinrich Himmler", "id": 43455, "credit_id": "52fe45c7c3a36847f80da033", "cast_id": 35, "profile_path": "/7l1GLC7pucsn5gKzBzevQk8cNTi.jpg", "order": 27}, {"name": "Bernhard Sch\u00fctz", "character": "Karl Oberg", "id": 44516, "credit_id": "52fe45c7c3a36847f80da037", "cast_id": 36, "profile_path": "/gAUHJJMmoXiCvLdBZwPWgo8qBSL.jpg", "order": 28}, {"name": "Nadia Barentin", "character": "Grand-M\u00e8re Ida", "id": 229136, "credit_id": "52fe45c7c3a36847f80da05f", "cast_id": 46, "profile_path": "/b5IEpt0FI2WHfVvWk14kjhG2Hq2.jpg", "order": 29}, {"name": "Catherine Hosmalin", "character": "La boulang\u00e8re", "id": 54280, "credit_id": "52fe45c7c3a36847f80da063", "cast_id": 47, "profile_path": "/gJloGKI2oHatdShjwJdbtVne6zp.jpg", "order": 30}, {"name": "Marc Rioufol", "character": "Jean Leguay", "id": 19362, "credit_id": "52fe45c7c3a36847f80da067", "cast_id": 48, "profile_path": "/mI6pC01BsSYuSk7njjCLIfvKyua.jpg", "order": 31}, {"name": "Gr\u00e9gory Gatignol", "character": "Policier Weissmann", "id": 43999, "credit_id": "52fe45c7c3a36847f80da087", "cast_id": 56, "profile_path": "/rctSbXAxJX1keEN46XeriSaYAfL.jpg", "order": 32}, {"name": "Christian Erickson", "character": "MacLelland", "id": 45849, "credit_id": "52fe45c7c3a36847f80da09b", "cast_id": 61, "profile_path": "/luB2dgwmDa3fbntapB5Ps1qs7en.jpg", "order": 33}, {"name": "Charlotte Driesen", "character": "Charlotte Weismann", "id": 1176093, "credit_id": "52fe45c7c3a36847f80da03b", "cast_id": 37, "profile_path": "/hJH88O6nQqn8hSnvzoYYSh9ZMml.jpg", "order": 34}, {"name": "Sandra Moreno", "character": "Lucienne", "id": 1176094, "credit_id": "52fe45c7c3a36847f80da03f", "cast_id": 38, "profile_path": "/h7AMElrgQ8uoH79hWE8XJ35ZuGc.jpg", "order": 35}, {"name": "Maurice Vaudaux", "character": "L'abb\u00e9 Bernard", "id": 1176095, "credit_id": "52fe45c7c3a36847f80da043", "cast_id": 39, "profile_path": "/2ypXTchIHhmY46hAelCw1HTcF8v.jpg", "order": 36}, {"name": "Salom\u00e9 Sebbag", "character": "Louise Zygler", "id": 1176096, "credit_id": "52fe45c7c3a36847f80da047", "cast_id": 40, "profile_path": "/7ALgzsFZmf9rRoTO0ZY1aYmxgoe.jpg", "order": 37}, {"name": "Nastasia Juszczak", "character": "Ren\u00e9e Traube", "id": 1176097, "credit_id": "52fe45c7c3a36847f80da04b", "cast_id": 41, "profile_path": "/1Eap0PbTSpovA6pAvVbznINmFlg.jpg", "order": 38}, {"name": "Ariane Seguillon", "character": "Putain 1", "id": 143001, "credit_id": "52fe45c7c3a36847f80da04f", "cast_id": 42, "profile_path": "/tSUNXXzZE3RPDfmAsVahbybphG1.jpg", "order": 39}, {"name": "Mathilde Snodgrass", "character": "Putain 2", "id": 1176098, "credit_id": "52fe45c7c3a36847f80da053", "cast_id": 43, "profile_path": null, "order": 40}, {"name": "Samuel Diot", "character": "Raymond", "id": 1176099, "credit_id": "52fe45c7c3a36847f80da057", "cast_id": 44, "profile_path": null, "order": 41}, {"name": "Patrick Courtois", "character": "Emile Hennequin", "id": 1176100, "credit_id": "52fe45c7c3a36847f80da06b", "cast_id": 49, "profile_path": "/sXg7rzTOuL2oQ0gg0JYBnIkrdZ3.jpg", "order": 42}, {"name": "Rodolphe Saulnier", "character": "Gendarme dragueur", "id": 1175845, "credit_id": "52fe45c7c3a36847f80da06f", "cast_id": 50, "profile_path": "/3ZByFMRBBgp8ygM1P0aJzRQ4bDA.jpg", "order": 43}, {"name": "Nicolas Bridet", "character": "Gendarme Lemaire", "id": 931398, "credit_id": "52fe45c7c3a36847f80da073", "cast_id": 51, "profile_path": "/9MuMZwcsmnY7DlH9YbgBdqU5m7W.jpg", "order": 44}, {"name": "Djamel Mehnane", "character": "Lieutenant gendarme Vel d'Hiv", "id": 1176101, "credit_id": "52fe45c7c3a36847f80da077", "cast_id": 52, "profile_path": "/fwbkKd4rDjEOQqztzoQ2zT4OpER.jpg", "order": 45}, {"name": "Alban Aumard", "character": "Gaston Roques", "id": 1088197, "credit_id": "52fe45c7c3a36847f80da07b", "cast_id": 53, "profile_path": "/4Y41NxGrTNCN3ZqSptehr5zDLs4.jpg", "order": 46}, {"name": "Nicolas Merlin", "character": "Milicien fouille Beaune", "id": 1176102, "credit_id": "52fe45c7c3a36847f80da07f", "cast_id": 54, "profile_path": "/rQoxGvJcedvt3FNcf0CesOWTGSr.jpg", "order": 47}, {"name": "Christian Adam", "character": "Brocanteur russe", "id": 1176103, "credit_id": "52fe45c7c3a36847f80da083", "cast_id": 55, "profile_path": null, "order": 48}, {"name": "Frank Berjot", "character": "Milicien Traube 1 (as Franck Berjot)", "id": 1165766, "credit_id": "52fe45c7c3a36847f80da08b", "cast_id": 57, "profile_path": "/iN96FtmmiAKuxq9x6lIHCrvBpWu.jpg", "order": 49}, {"name": "Salvatore Ingoglia", "character": "L'Hirondelle 'Louise'", "id": 1176104, "credit_id": "52fe45c7c3a36847f80da08f", "cast_id": 58, "profile_path": "/deD7uxJDn2fsF7cr1llqImgKyE7.jpg", "order": 50}, {"name": "Philippe Beautier", "character": "Garde mobile quare", "id": 1176105, "credit_id": "52fe45c7c3a36847f80da093", "cast_id": 59, "profile_path": "/eSdjTo2d6goIRvDiZfoTHOsXXjX.jpg", "order": 51}, {"name": "Gaspard Meier-Chaurand", "character": "Lucien Timonier", "id": 543817, "credit_id": "52fe45c7c3a36847f80da097", "cast_id": 60, "profile_path": "/3NSsNpnfuaDaac9PHJmqyaFmXK8.jpg", "order": 52}, {"name": "Antoine Stip", "character": "Prof. Saul Traube", "id": 1176106, "credit_id": "52fe45c7c3a36847f80da09f", "cast_id": 62, "profile_path": "/lwur3xYeTeQS05ZWsPyKwzO4ipj.jpg", "order": 53}, {"name": "Aur\u00e9lien Ringelheim", "character": "Tailleur '9e Ordonnance'", "id": 1177059, "credit_id": "52fe45c7c3a36847f80da0d9", "cast_id": 72, "profile_path": "/wnvFo3RsBcrdk1SR6aDwPxNsHca.jpg", "order": 54}, {"name": "Samuel Jaudon", "character": "Le chanteur des rues", "id": 1177060, "credit_id": "52fe45c7c3a36847f80da0dd", "cast_id": 73, "profile_path": null, "order": 55}, {"name": "Sabine Pernette", "character": "Femme '9\u00e8me ordonnance'", "id": 1177061, "credit_id": "52fe45c7c3a36847f80da0e1", "cast_id": 74, "profile_path": "/dbcE5Wl6fOohe9pdjKXtcbwb0n0.jpg", "order": 56}, {"name": "J\u00e9r\u00e9mie Segard", "character": "Garde mobile Zygler", "id": 45160, "credit_id": "52fe45c7c3a36847f80da0e5", "cast_id": 75, "profile_path": "/cXXcEc6qikhQGGqoUHSW0oqXlHu.jpg", "order": 57}, {"name": "Jonathan Brecher", "character": "Adjudant-chef Guillem", "id": 1177062, "credit_id": "52fe45c7c3a36847f80da0e9", "cast_id": 76, "profile_path": "/eSq5lVH1M3ZrNSgPhBXGzdzzbZo.jpg", "order": 58}, {"name": "Francis Weismann", "character": "Adjudant-chef Desnoyers", "id": 1177063, "credit_id": "52fe45c7c3a36847f80da0ed", "cast_id": 77, "profile_path": null, "order": 59}, {"name": "Fran\u00e7ois Bureloup", "character": "L'Instituteur M. Joyeux", "id": 544669, "credit_id": "52fe45c7c3a36847f80da0f1", "cast_id": 78, "profile_path": "/nAt8wMTkbs1slq0pP18POw0x48z.jpg", "order": 60}, {"name": "Jonas Hamon", "character": "Petit gar\u00e7on qui tremble", "id": 1012109, "credit_id": "52fe45c7c3a36847f80da0f5", "cast_id": 79, "profile_path": "/r1OvPfBYShAiaVdXJFN2CKInG79.jpg", "order": 61}, {"name": "Catherine Toublanc", "character": "M\u00e8re 'gar\u00e7on qui tremble'", "id": 1177064, "credit_id": "52fe45c7c3a36847f80da0f9", "cast_id": 80, "profile_path": "/eQa3kHKxiQNCoHNrDi7oXfNOcy8.jpg", "order": 62}, {"name": "Gabrielle Bonacini", "character": "M\u00e8re \u00e9plor\u00e9e", "id": 1177065, "credit_id": "52fe45c7c3a36847f80da0fd", "cast_id": 81, "profile_path": "/obcPHO7EP4V1SKYXcYddPPTiWh6.jpg", "order": 63}, {"name": "Philippe Mangione", "character": "Ouvrier t\u00e9moin", "id": 1177066, "credit_id": "52fe45c7c3a36847f80da101", "cast_id": 82, "profile_path": "/tvhnZnzyFwHxusGPG7TFt3WSaxD.jpg", "order": 64}, {"name": "Michelle Figlarz", "character": "M\u00e8re s\u00e9paration (as Mich\u00e8le Guetta-Figlarz)", "id": 1177067, "credit_id": "52fe45c7c3a36847f80da105", "cast_id": 83, "profile_path": "/uqZfu9f8NJRjUJsOg6GXnnKhHEX.jpg", "order": 65}, {"name": "Johannes Oliver Hamm", "character": "Grad\u00e9 allemand caf\u00e9 (as Johannes Hamm)", "id": 1177068, "credit_id": "52fe45c7c3a36847f80da109", "cast_id": 84, "profile_path": "/f40mIdUVu6iRjzWV9GOvZMSO1xz.jpg", "order": 66}, {"name": "Jerome Henry", "character": "Garde mobile square 2", "id": 1177069, "credit_id": "52fe45c7c3a36847f80da10d", "cast_id": 85, "profile_path": "/jGsEdD50kQT92cybJUrYgeYdqib.jpg", "order": 67}, {"name": "Holger Daemgen", "character": "Helmut Knochen", "id": 1177070, "credit_id": "52fe45c7c3a36847f80da111", "cast_id": 86, "profile_path": "/ftFDBR1C7ddFh24pDKQOlbce2Ej.jpg", "order": 68}, {"name": "J\u00e1nos F\u00fczi", "character": "Jeune intello", "id": 1177071, "credit_id": "52fe45c7c3a36847f80da115", "cast_id": 87, "profile_path": null, "order": 69}, {"name": "Vir\u00e1g B\u00e1r\u00e1ny", "character": "Femme rou\u00e9e de coups", "id": 1177072, "credit_id": "52fe45c7c3a36847f80da119", "cast_id": 88, "profile_path": "/lzxW7V6galKUlPZp5haOtLpW7ng.jpg", "order": 70}, {"name": "Gabriella Gub\u00e1s", "character": "M\u00e8re de famille Vel d'Hiv (as Gabi Gubas)", "id": 930368, "credit_id": "52fe45c7c3a36847f80da11d", "cast_id": 89, "profile_path": "/ameuIJbJO1M29Zcj7eqsQbpPiNA.jpg", "order": 71}, {"name": "Peter Kollar", "character": "Joseph Kogan", "id": 1177073, "credit_id": "52fe45c7c3a36847f80da121", "cast_id": 90, "profile_path": null, "order": 72}, {"name": "Tam\u00e1s Lengyel", "character": "Rudolf Hess", "id": 1177074, "credit_id": "52fe45c7c3a36847f80da125", "cast_id": 91, "profile_path": "/s1clUipXMHeiGUnrpbFunnbZl9Q.jpg", "order": 73}, {"name": "Iv\u00e1n Feny\u0151", "character": "Grad\u00e9 allemand M\u00fcller", "id": 125444, "credit_id": "52fe45c7c3a36847f80da129", "cast_id": 92, "profile_path": "/pmAeJgYwFPNA2nZVejDZFikszgw.jpg", "order": 74}, {"name": "Hanna Becker", "character": "Hilde Speer", "id": 1177076, "credit_id": "52fe45c7c3a36847f80da12d", "cast_id": 93, "profile_path": null, "order": 75}, {"name": "Geoffry Thomas", "character": "Noble", "id": 1177078, "credit_id": "52fe45c7c3a36847f80da131", "cast_id": 94, "profile_path": null, "order": 76}, {"name": "Kata Varga", "character": "Agricultrice Lut\u00e9tia", "id": 1177081, "credit_id": "52fe45c8c3a36847f80da135", "cast_id": 95, "profile_path": null, "order": 77}, {"name": "R\u00f3bert Bolla", "character": "Agriculteur Lut\u00e9tia", "id": 1177084, "credit_id": "52fe45c8c3a36847f80da139", "cast_id": 96, "profile_path": null, "order": 78}, {"name": "Soma Z\u00e1mbori", "character": "Heinz Rothke", "id": 1177086, "credit_id": "52fe45c8c3a36847f80da13d", "cast_id": 97, "profile_path": "/sJTxlHaoQXxm08sMkS4kPfMNn5I.jpg", "order": 79}, {"name": "\u00c1d\u00e1m F\u00f6ldi", "character": "Th\u00e9o Dannecker (as Adam Foldi)", "id": 1177087, "credit_id": "52fe45c8c3a36847f80da141", "cast_id": 98, "profile_path": "/2uwEecsPlOCXV40ceHUnJCaEaqc.jpg", "order": 80}, {"name": "P\u00e9ter Barbinek", "character": "Docteur Morell", "id": 1177088, "credit_id": "52fe45c8c3a36847f80da145", "cast_id": 99, "profile_path": "/8MZLT4mNpoGXkiRfaPt4LHn3GIS.jpg", "order": 81}, {"name": "Adel Martin", "character": "Femme juive chic", "id": 1177089, "credit_id": "52fe45c8c3a36847f80da149", "cast_id": 100, "profile_path": null, "order": 82}, {"name": "Viktoria Molnar", "character": "Odile", "id": 1177090, "credit_id": "52fe45c8c3a36847f80da14d", "cast_id": 101, "profile_path": null, "order": 83}, {"name": "Szofia Sztepanov", "character": "Lisa", "id": 1177091, "credit_id": "52fe45c8c3a36847f80da151", "cast_id": 102, "profile_path": null, "order": 84}, {"name": "Lora Balogh", "character": "Gilberte", "id": 1177092, "credit_id": "52fe45c8c3a36847f80da155", "cast_id": 103, "profile_path": null, "order": 85}, {"name": "J\u00e9r\u00f4me Cusin", "character": "Dieter", "id": 1177093, "credit_id": "52fe45c8c3a36847f80da159", "cast_id": 104, "profile_path": "/5U8PwyB7Vpf3mIKgqTj91Ki7TgM.jpg", "order": 86}, {"name": "Jennifer Kerner", "character": "La m\u00e8re sur le toit", "id": 1177094, "credit_id": "52fe45c8c3a36847f80da15d", "cast_id": 105, "profile_path": "/2RSIGJP75XdfI0vcCsCESBJOARl.jpg", "order": 87}, {"name": "Gyula Mesterh\u00e1zy", "character": "Otto G\u00fcnsche", "id": 1177095, "credit_id": "52fe45c8c3a36847f80da161", "cast_id": 106, "profile_path": "/hUrzRSf7vwIb6Qee1CaCqQ4shFW.jpg", "order": 88}, {"name": "Tam\u00e1s G\u00e1bor", "character": "Pompier Fernand Baudvin", "id": 1177096, "credit_id": "52fe45c8c3a36847f80da165", "cast_id": 107, "profile_path": null, "order": 89}, {"name": "Tam\u00e1s Csaszar", "character": "Grad\u00e9 Beaune", "id": 1177097, "credit_id": "52fe45c8c3a36847f80da169", "cast_id": 108, "profile_path": null, "order": 90}, {"name": "Ilona Kassai", "character": "Femme \u00e2g\u00e9e Vel d'Hiv", "id": 933031, "credit_id": "52fe45c8c3a36847f80da16d", "cast_id": 109, "profile_path": "/7jSXaSoldlwA8TtN0LRUcPyc0xX.jpg", "order": 91}, {"name": "Zsuzsa Sz\u00e1ger", "character": "Femme orthodoxe Vel d'Hiv", "id": 1177098, "credit_id": "52fe45c8c3a36847f80da171", "cast_id": 110, "profile_path": "/ltrCs4yaPF1hhzB6lAAiZT2wbUh.jpg", "order": 92}, {"name": "Katalin Pap", "character": "Femme au b\u00e9b\u00e9 Vel d'Hiv", "id": 1177099, "credit_id": "52fe45c8c3a36847f80da175", "cast_id": 111, "profile_path": null, "order": 93}, {"name": "Csaba Jakab", "character": "P\u00e8re de famille Vel d'Hiv", "id": 1177100, "credit_id": "52fe45c8c3a36847f80da179", "cast_id": 112, "profile_path": "/uWAnF9vHzhuzADAw8pAEA30ZP6o.jpg", "order": 94}, {"name": "Vir\u00e1g Sallai", "character": "Concierge pr\u00e9fecture Loiret", "id": 1177101, "credit_id": "52fe45c8c3a36847f80da17d", "cast_id": 113, "profile_path": "/egSGzGal9q68I67tONQ0pTNFY3o.jpg", "order": 95}, {"name": "Zolt\u00e1n Horv\u00e1th", "character": "Gendarme Gatien", "id": 1177102, "credit_id": "52fe45c8c3a36847f80da181", "cast_id": 114, "profile_path": "/p9e0YgzSSGuovm6DriBSGc77Zml.jpg", "order": 96}, {"name": "Barnab\u00e1s Timon", "character": "Adolescent 1", "id": 1177103, "credit_id": "52fe45c8c3a36847f80da185", "cast_id": 115, "profile_path": "/wTZdT9A9qXiMCLXRKlayxzEfeuy.jpg", "order": 97}, {"name": "Aaron Boujenah", "character": "Adolescent 2", "id": 1177104, "credit_id": "52fe45c8c3a36847f80da189", "cast_id": 116, "profile_path": null, "order": 98}, {"name": "Lili Karolyi", "character": "Fille femme rou\u00e9e de coups", "id": 1177105, "credit_id": "52fe45c8c3a36847f80da18d", "cast_id": 117, "profile_path": null, "order": 99}, {"name": "Bea T\u00f6vispataki", "character": "Infirmi\u00e8re", "id": 1177106, "credit_id": "52fe45c8c3a36847f80da191", "cast_id": 118, "profile_path": "/zqph7YxgnCVORB4kY4kA2y8xEmE.jpg", "order": 100}], "directors": [{"name": "Roselyne Bosch", "department": "Directing", "job": "Director", "credit_id": "52fe45c7c3a36847f80d9fc1", "profile_path": null, "id": 21269}], "vote_average": 7.1, "runtime": 115}, "7278": {"poster_path": "/uDIaiQS98bViJR9TIlUuRPntEID.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40339721, "overview": "From the creators of Scary Movie and Date Movie comes this tongue-in-cheek parody of the sword-and-sandal epics, dubbed Meet the Spartans. The 20th Century Fox production was written and directed by the filmmaking team of Jason Friedberg and Aaron Seltzer. Sure, Leonidas may have nothing more than a cape and some leather underwear to protect him from the razor-sharp swords of his Persian enemies,", "video": false, "id": 7278, "genres": [{"id": 35, "name": "Comedy"}], "title": "Meet the Spartans", "tagline": "The Bigger the Hit, The Harder They Fall", "vote_count": 91, "homepage": "http://www.meetthespartans.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1073498", "adult": false, "backdrop_path": "/2vsk7Iq4wXqaWg6kNM280H8In5i.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2008-01-24", "popularity": 0.732063927237289, "original_title": "Meet the Spartans", "budget": 0, "cast": [{"name": "Sean Maguire", "character": "Leonidas", "id": 52262, "credit_id": "52fe4476c3a36847f8097861", "cast_id": 14, "profile_path": "/axVjykZUTmM4aFCsurslXAQZGjC.jpg", "order": 0}, {"name": "Carmen Electra", "character": "K\u00f6nigin Margo", "id": 28639, "credit_id": "52fe4476c3a36847f8097865", "cast_id": 15, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 1}, {"name": "Ken Davitian", "character": "Xerxes", "id": 6734, "credit_id": "52fe4476c3a36847f8097869", "cast_id": 16, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 2}, {"name": "Kevin Sorbo", "character": "Hauptmann", "id": 51965, "credit_id": "52fe4476c3a36847f809786d", "cast_id": 17, "profile_path": "/kPwVLsAMDZDsFVmXjg1zG5cLltT.jpg", "order": 3}, {"name": "Diedrich Bader", "character": "Traitoro", "id": 5727, "credit_id": "54b3de61c3a368210c0033f9", "cast_id": 18, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 4}, {"name": "Method Man", "character": "Persian", "id": 5384, "credit_id": "54b3de72c3a36820a7003064", "cast_id": 19, "profile_path": "/qzZv7AWVVKex2IOe65a1WaQuW0g.jpg", "order": 5}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe4476c3a36847f8097815", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4476c3a36847f8097827", "profile_path": null, "id": 35734}], "vote_average": 4.5, "runtime": 84}, "10009": {"poster_path": "/5qSEndgjSbshCK3OqxxRfREFCAP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 250, "overview": "When a young Inuit hunter needlessly kills a bear, he is magically changed into a bear himself as punishment with a talkative cub being his only guide to changing back.", "video": false, "id": 10009, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Brother Bear", "tagline": "The story of a boy who became a man by becoming a bear.", "vote_count": 220, "homepage": "", "belongs_to_collection": {"backdrop_path": "/8QuwV9WoZTs4Nnz6GMIISP2WblF.jpg", "poster_path": "/eWjO8diAZlCUWT9mXUJeQCVSICg.jpg", "id": 96472, "name": "Brother Bear Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "iu", "name": ""}, {"iso_639_1": "sr", "name": "Srpski"}, {"iso_639_1": "hr", "name": "Hrvatski"}], "imdb_id": "tt0328880", "adult": false, "backdrop_path": "/fAzT4AboZXP2Sj3zE2HcQ7qjMi.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-10-31", "popularity": 1.41718791251737, "original_title": "Brother Bear", "budget": 100000000, "cast": [{"name": "Joaquin Phoenix", "character": "Kenai (voice)", "id": 73421, "credit_id": "52fe43069251416c750007d3", "cast_id": 17, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Rick Moranis", "character": "Rutt (voice)", "id": 8872, "credit_id": "52fe43069251416c750007d7", "cast_id": 19, "profile_path": "/27dRb7OyRGzQP8D4tzyY6dEdmQY.jpg", "order": 1}, {"name": "Jeremy Suarez", "character": "Koda (voice)", "id": 61959, "credit_id": "52fe43069251416c750007e7", "cast_id": 22, "profile_path": "/ktydBVBvNUlmfJj56aYwJ0O31JN.jpg", "order": 2}, {"name": "Joan Copeland", "character": "Tanana (voice)", "id": 31504, "credit_id": "52fe43069251416c750007eb", "cast_id": 23, "profile_path": "/Ysia52uqzGx3wN0rwslRSp6E46.jpg", "order": 3}, {"name": "Michael Clarke Duncan", "character": "Tug (voice)", "id": 61981, "credit_id": "52fe43069251416c750007ef", "cast_id": 24, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 4}, {"name": "Harold Gould", "character": "Old Denahi (voice)", "id": 14833, "credit_id": "52fe43069251416c750007f3", "cast_id": 25, "profile_path": "/7AjlsZM9hxKahC9r29x93Cos74V.jpg", "order": 5}, {"name": "Jason Raize", "character": "Denahi (voice)", "id": 61960, "credit_id": "52fe43069251416c750007f7", "cast_id": 26, "profile_path": "/h8CtmQYtKGbWkD271nqezR1JvgE.jpg", "order": 6}, {"name": "Paul Christie", "character": "Ram #1 (voice)", "id": 54221, "credit_id": "52fe43069251416c750007fb", "cast_id": 27, "profile_path": "/zWUkbCu56DBGIYNI7Rh619HJiOL.jpg", "order": 7}, {"name": "Danny Mastrogiorgio", "character": "Ram #2 (voice)", "id": 61963, "credit_id": "52fe43069251416c750007ff", "cast_id": 28, "profile_path": "/bFh9cROuMeuyKGkkzN613427ZdB.jpg", "order": 8}, {"name": "Dave Thomas", "character": "Tuke (voice)", "id": 61961, "credit_id": "52fe43069251416c75000803", "cast_id": 29, "profile_path": "/qWQ330du0Uu1Q8wAq9hMoYmOJ5Q.jpg", "order": 9}, {"name": "Estelle Harris", "character": "Old Lady Bear (voice)", "id": 61964, "credit_id": "52fe43069251416c7500080b", "cast_id": 31, "profile_path": "/equDBtZgBkO7e8QKpNokDz9EbY9.jpg", "order": 10}, {"name": " D.B. Sweeney", "character": "Sitka (voice)", "id": 61962, "credit_id": "52fe43069251416c75000807", "cast_id": 30, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 11}, {"name": "Pauley Perrette", "character": "Female Lover Bear (voice)", "id": 11680, "credit_id": "52fe43069251416c7500080f", "cast_id": 32, "profile_path": "/dXpCSxJKgIVLmSXGlK64VOMq3zb.jpg", "order": 12}, {"name": "Bumper Robinson", "character": "Chipmunks (voice)", "id": 35111, "credit_id": "52fe43069251416c75000813", "cast_id": 33, "profile_path": "/upWJKbhdN19W8GEgNujTJavzeca.jpg", "order": 13}, {"name": "Brian Posehn", "character": "Additional Voice (voice)", "id": 20405, "credit_id": "52fe43069251416c75000817", "cast_id": 34, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 14}, {"name": "Greg Proops", "character": "Male Lover Bear (voice)", "id": 61965, "credit_id": "52fe43069251416c7500081b", "cast_id": 35, "profile_path": "/vZCffFyddRuuMlHBUwgaUa9D9A4.jpg", "order": 15}, {"name": "Angayuqaq Oscar Kawagley", "character": "Inuit Narrator (voice)", "id": 61967, "credit_id": "52fe43069251416c75000823", "cast_id": 37, "profile_path": "/2UCo2Hhs1XjDMRqyZuJCFh016F8.jpg", "order": 16}, {"name": "Philip Proctor", "character": "Additional Voice", "id": 61969, "credit_id": "52fe43069251416c7500081f", "cast_id": 36, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 17}, {"name": "Patrick Pinney", "character": "Additional Voice", "id": 61968, "credit_id": "52fe43069251416c75000827", "cast_id": 38, "profile_path": "/eU2rqG140FCPwzIjJTymVOd5RBY.jpg", "order": 18}, {"name": "Darko Cesar", "character": "Foreign Croatian Bear (voice)", "id": 61966, "credit_id": "52fe43069251416c7500082b", "cast_id": 39, "profile_path": "/cJ70Wvt2ZRqZ1pGER6Qfmc0rSlm.jpg", "order": 19}], "directors": [{"name": "Aaron Blaise", "department": "Directing", "job": "Director", "credit_id": "52fe43069251416c75000793", "profile_path": "/eZkkRhetqoTBRF1yGA8v2wht9KR.jpg", "id": 61952}, {"name": "Robert Walker", "department": "Directing", "job": "Director", "credit_id": "52fe43069251416c75000799", "profile_path": "/1NQnhRYxgr5lJmxtx2kyOY9UmlO.jpg", "id": 61949}], "vote_average": 6.4, "runtime": 85}, "11547": {"poster_path": "/pDFFHha2KwW6ZjvrZQtXaS6PIYV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of five college graduates rent a cabin in the woods and begin to fall victim to a horrifying flesh-eating virus, which attracts the unwanted attention of the homicidal locals.", "video": false, "id": 11547, "genres": [{"id": 27, "name": "Horror"}], "title": "Cabin Fever", "tagline": "Terror\u2026 in the flesh.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/j82lEJUxFlXC35Pi75P3sAbkTUq.jpg", "poster_path": "/u4SLX7S1SdBzaUzPpGWfRaEa1E1.jpg", "id": 201576, "name": "The Cabin Fever Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0303816", "adult": false, "backdrop_path": "/1v3EJG30IWmgdTVRQLvKqQBthKe.jpg", "production_companies": [{"name": "Tonic Films", "id": 2763}, {"name": "Down Home Entertainment", "id": 22953}, {"name": "Cabin Pictures", "id": 22954}, {"name": "Black Sky Entertainment", "id": 22955}, {"name": "Deer Path Films", "id": 22956}], "release_date": "2002-09-13", "popularity": 0.89553855859025, "original_title": "Cabin Fever", "budget": 1500000, "cast": [{"name": "Rider Strong", "character": "Paul", "id": 69807, "credit_id": "52fe44579251416c75031481", "cast_id": 12, "profile_path": "/n7ujEcNfCGkkLnNg8Ur5vXchrs6.jpg", "order": 0}, {"name": "Jordan Ladd", "character": "Karen", "id": 20492, "credit_id": "52fe44579251416c75031485", "cast_id": 13, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 1}, {"name": "James DeBello", "character": "Bert", "id": 35768, "credit_id": "52fe44579251416c75031489", "cast_id": 14, "profile_path": "/xhDScFpgfM9gfIyNQm8KOr0qEU5.jpg", "order": 2}, {"name": "Cerina Vincent", "character": "Marcy", "id": 52365, "credit_id": "52fe44579251416c7503148d", "cast_id": 15, "profile_path": "/AnGfLx2gE8ZnRJrQwlXAVcednMZ.jpg", "order": 3}, {"name": "Joey Kern", "character": "Jeff", "id": 84763, "credit_id": "52fe44579251416c750314af", "cast_id": 21, "profile_path": "/i0gXdhnoTGwAooTysudWrH5ZtPz.jpg", "order": 4}, {"name": "Arie Verveen", "character": "Henry", "id": 91612, "credit_id": "52fe44579251416c750314b3", "cast_id": 22, "profile_path": "/yh3mOsRXENzK3JJljFlSgX7p6QL.jpg", "order": 5}, {"name": "Giuseppe Andrews", "character": "Deputy Winston", "id": 4133, "credit_id": "53dcb2080e0a264816001e7d", "cast_id": 34, "profile_path": "/tWAjcA240TR9x4GqGKj2gL4p68B.jpg", "order": 6}, {"name": "Richard Fullerton", "character": "The Sheriff", "id": 159109, "credit_id": "53deb50e0e0a265a83002f3b", "cast_id": 35, "profile_path": null, "order": 7}, {"name": "Hal Courtney", "character": "Tommy", "id": 1348582, "credit_id": "53dcae74c3a368433b000fab", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Eli Roth", "character": "Justin / Grim", "id": 16847, "credit_id": "52fe44579251416c750314b7", "cast_id": 23, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 9}, {"name": "Robert Harris", "character": "Old Man Cadwell", "id": 951120, "credit_id": "53aa8c240e0a2646d80033cb", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Tim Parati", "character": "Andy", "id": 65171, "credit_id": "53aa8ca30e0a2646cc0015ff", "cast_id": 29, "profile_path": "/qu3AMF9AXrAAXKI9MfdxZKW7mgm.jpg", "order": 11}, {"name": "Matthew Helms", "character": "Dennis", "id": 1348583, "credit_id": "53dcae93c3a368432d000fd6", "cast_id": 31, "profile_path": null, "order": 12}], "directors": [{"name": "Eli Roth", "department": "Directing", "job": "Director", "credit_id": "52fe44579251416c75031441", "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "id": 16847}], "vote_average": 5.3, "runtime": 93}, "10911": {"poster_path": "/lTtu8Y1Lu4tJXLbAmWKZ5FXBZxu.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28900000, "overview": "A team of allied saboteurs are assigned an impossible mission: infiltrate an impregnable Nazi-held island and destroy the two enormous long-range field guns that prevent the rescue of 2,000 trapped British soldiers.", "video": false, "id": 10911, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "The Guns of Navarone", "tagline": "The Greatest High Adventure Ever Filmed!", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0054953", "adult": false, "backdrop_path": "/oSUAezCAa2dXbkJblUqJQwcKVKK.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1961-06-22", "popularity": 0.964139033592109, "original_title": "The Guns of Navarone", "budget": 6000000, "cast": [{"name": "Gregory Peck", "character": "Capt. Keith Mallory", "id": 8487, "credit_id": "52fe43cf9251416c7501f021", "cast_id": 1, "profile_path": "/yUS6VJs7r7WQQyzJz08MbBIqSSM.jpg", "order": 0}, {"name": "David Niven", "character": "Cpl. Miller", "id": 14261, "credit_id": "52fe43cf9251416c7501f025", "cast_id": 2, "profile_path": "/fLtUBsOLe2Ln84MjZ2HJQjSI8HE.jpg", "order": 1}, {"name": "Anthony Quinn", "character": "Col. Andrea Stavros", "id": 5401, "credit_id": "52fe43cf9251416c7501f029", "cast_id": 3, "profile_path": "/9sKpm4KCoUbmMbR86fpqcgBCHrJ.jpg", "order": 2}, {"name": "Stanley Baker", "character": "Pvt. 'Butcher' Brown", "id": 67449, "credit_id": "52fe43cf9251416c7501f02d", "cast_id": 4, "profile_path": "/uK2pnimWKxTV3nsdZTKiK0QQdS9.jpg", "order": 3}, {"name": "Anthony Quayle", "character": "Maj. Roy Franklin", "id": 14371, "credit_id": "52fe43cf9251416c7501f061", "cast_id": 13, "profile_path": "/cGxouSdw4SoGE5Soxlj6KnpZObE.jpg", "order": 4}, {"name": "James Darren", "character": "Pvt. Spyros Pappadimos", "id": 100318, "credit_id": "52fe43cf9251416c7501f065", "cast_id": 14, "profile_path": "/5zG5hPKxajSj5LGtXiLj938IpCG.jpg", "order": 5}, {"name": "Irene Papas", "character": "Maria Pappadimos", "id": 18847, "credit_id": "52fe43cf9251416c7501f069", "cast_id": 15, "profile_path": "/tJ0ErVqe8bmqz5vuU9iJLwiBGle.jpg", "order": 6}, {"name": "Gia Scala", "character": "Anna", "id": 91639, "credit_id": "52fe43cf9251416c7501f06d", "cast_id": 16, "profile_path": "/2zznYhC2xG6833AZQml2Jo1ClEB.jpg", "order": 7}, {"name": "James Robertson Justice", "character": "Commodore Jensen / Prologue Narrator", "id": 11130, "credit_id": "52fe43cf9251416c7501f071", "cast_id": 17, "profile_path": "/4HlWt2MBP1R34CdCsQGQFi4TUrg.jpg", "order": 8}, {"name": "Richard Harris", "character": "Squadron Leader Howard Barnsby RAAF", "id": 194, "credit_id": "52fe43cf9251416c7501f075", "cast_id": 18, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 9}, {"name": "Bryan Forbes", "character": "Cohn", "id": 31439, "credit_id": "52fe43cf9251416c7501f079", "cast_id": 19, "profile_path": "/2jVyi8jPtZ84FTmVt7Zc6DxvB09.jpg", "order": 10}, {"name": "Allan Cuthbertson", "character": "Maj. Baker", "id": 47860, "credit_id": "52fe43cf9251416c7501f07d", "cast_id": 20, "profile_path": "/v76kZbEXg5IHVZxc7Xff9EchukU.jpg", "order": 11}, {"name": "Michael Trubshawe", "character": "Weaver", "id": 107540, "credit_id": "52fe43cf9251416c7501f081", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Percy Herbert", "character": "Sgt. Grogan", "id": 33220, "credit_id": "52fe43cf9251416c7501f085", "cast_id": 22, "profile_path": "/5ZUj6cyhZ237SbeyF5fwAv2jvjD.jpg", "order": 13}, {"name": "George Mikell", "character": "SS Hauptman Sessler", "id": 137383, "credit_id": "52fe43cf9251416c7501f089", "cast_id": 23, "profile_path": "/ak4YIVTrl5KWuxbIW9n7tOjtxzp.jpg", "order": 14}], "directors": [{"name": "J. Lee Thompson", "department": "Directing", "job": "Director", "credit_id": "52fe43cf9251416c7501f033", "profile_path": "/mAJwhh1RABqN6P7pNxPE21nTOUF.jpg", "id": 18669}, {"name": "Alexander Mackendrick", "department": "Directing", "job": "Director", "credit_id": "52fe43cf9251416c7501f039", "profile_path": "/ydhfNeN3bHmiFNcGcMS6kATJHEB.jpg", "id": 14566}], "vote_average": 7.6, "runtime": 158}, "1819": {"poster_path": "/mtdjrysC3phP4ZtCjdTJsHfZtIU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 130431368, "overview": "After standing in as best man for his longtime friend Carl Petersen, Randy Dupree loses his job, becomes a barfly and attaches himself to the newlywed couple almost permanently -- as their houseguest. But the longer Dupree camps out on their couch, the closer he gets to Carl's bride, Molly, leaving the frustrated groom wondering when his pal will be moving out.", "video": false, "id": 1819, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "You, Me and Dupree", "tagline": "Two's company. Dupree's a crowd.", "vote_count": 103, "homepage": "http://www.youmeanddupree.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0463034", "adult": false, "backdrop_path": "/tJCyWjBGSkuzPH6fkYYi5ubBGC7.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-07-14", "popularity": 0.626986094718651, "original_title": "You, Me and Dupree", "budget": 54000000, "cast": [{"name": "Kate Hudson", "character": "Molly", "id": 11661, "credit_id": "52fe4317c3a36847f8039a87", "cast_id": 4, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Dupree", "id": 887, "credit_id": "52fe4317c3a36847f8039a8b", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Carl", "id": 2876, "credit_id": "52fe4317c3a36847f8039a8f", "cast_id": 6, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Michael Douglas", "character": "Mr. Thompson", "id": 3392, "credit_id": "52fe4317c3a36847f8039a93", "cast_id": 7, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 3}, {"name": "Seth Rogen", "character": "Neil", "id": 19274, "credit_id": "52fe4317c3a36847f8039a97", "cast_id": 8, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 4}, {"name": "Amanda Detmer", "character": "Annie", "id": 19275, "credit_id": "52fe4318c3a36847f8039a9b", "cast_id": 9, "profile_path": "/egJuJpoKVr9ZXsWYkBlGeqZZTEd.jpg", "order": 5}, {"name": "Ralph Ting", "character": "Toshi", "id": 19276, "credit_id": "52fe4318c3a36847f8039a9f", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Todd Stashwick", "character": "Tony", "id": 19277, "credit_id": "52fe4318c3a36847f8039aa3", "cast_id": 11, "profile_path": "/vTY2rqUPQnY3gZNRyoebOZPpsmr.jpg", "order": 7}, {"name": "Bill Hader", "character": "Mark", "id": 19278, "credit_id": "52fe4318c3a36847f8039aa7", "cast_id": 12, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 8}, {"name": "Lance Armstrong", "character": "Himself", "id": 19279, "credit_id": "52fe4318c3a36847f8039aab", "cast_id": 13, "profile_path": "/3kwzkBuq0PlDpm9bm6C0YdTq015.jpg", "order": 9}, {"name": "Suzanne Ford", "character": "Thompson's Secretary", "id": 19280, "credit_id": "52fe4318c3a36847f8039aaf", "cast_id": 14, "profile_path": "/3NBp6jtQxIaDsMnelRr7VIAE8R.jpg", "order": 10}, {"name": "Claudia Choi", "character": "Carl's Secretary", "id": 19281, "credit_id": "52fe4318c3a36847f8039ab3", "cast_id": 15, "profile_path": "/2PFjE0wjABq22NfzHt9Q32LV8Ib.jpg", "order": 11}], "directors": [{"name": "Anthony Russo", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039a77", "profile_path": "/mwokQ8u2RgeFRkDUtcNctTgd8bg.jpg", "id": 19271}, {"name": "Joe Russo", "department": "Directing", "job": "Director", "credit_id": "52fe4317c3a36847f8039a7d", "profile_path": "/5bMVczVDqLJFpfLQZhQ4hhwkSQD.jpg", "id": 19272}], "vote_average": 5.3, "runtime": 108}, "51876": {"poster_path": "/hGHmdbovLuPi1Vdr6JLp7LhqZ3s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161849455, "overview": "A paranoia-fuelled action thriller about an unsuccessful writer whose life is transformed by a top-secret \"smart drug\" that allows him to use 100% of his brain and become a perfect version of himself. His enhanced abilities soon attract shadowy forces that threaten his new life in this darkly comic and provocative film.", "video": false, "id": 51876, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Limitless", "tagline": "What if a pill could make you rich and powerful?", "vote_count": 1236, "homepage": "http://www.iamrogue.com/limitless/fullsite/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1219289", "adult": false, "backdrop_path": "/9ISArgiVBdNLASKmvflRDMOYYMj.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Virgin Produced", "id": 8852}, {"name": "Many Rivers Productions", "id": 8854}, {"name": "Boy of the Year", "id": 8855}, {"name": "Intermedia", "id": 8856}, {"name": "Rogue Pictures", "id": 134}], "release_date": "2011-03-08", "popularity": 1.17057997363083, "original_title": "Limitless", "budget": 27000000, "cast": [{"name": "Bradley Cooper", "character": "Eddie Morra", "id": 51329, "credit_id": "52fe4809c3a36847f81552c9", "cast_id": 2, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Carl Van Loon", "id": 380, "credit_id": "52fe4809c3a36847f81552cd", "cast_id": 3, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Abbie Cornish", "character": "Lindy", "id": 37260, "credit_id": "52fe4809c3a36847f81552d1", "cast_id": 4, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 2}, {"name": "Andrew Howard", "character": "Gennady", "id": 67206, "credit_id": "52fe4809c3a36847f81552d5", "cast_id": 5, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 3}, {"name": "Anna Friel", "character": "Melissa", "id": 58016, "credit_id": "52fe4809c3a36847f81552d9", "cast_id": 6, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 4}, {"name": "Johnny Whitworth", "character": "Vernon", "id": 73589, "credit_id": "52fe4809c3a36847f81552dd", "cast_id": 7, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 5}, {"name": "Robert John Burke", "character": "Pierce", "id": 31512, "credit_id": "52fe4809c3a36847f81552e1", "cast_id": 8, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 6}, {"name": "Darren Goldstein", "character": "Kevin Doyle", "id": 164242, "credit_id": "52fe4809c3a36847f81552e5", "cast_id": 9, "profile_path": "/cSY244Drv8JO0Kwgf0rMmo93dc9.jpg", "order": 7}, {"name": "Tomas Arana", "character": "Man in Tan Coat", "id": 941, "credit_id": "5304cdbc92514104cc1b6142", "cast_id": 34, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 8}, {"name": "Ned Eisenberg", "character": "Morris Brandt", "id": 137529, "credit_id": "5304cdd392514104bb1e9ab9", "cast_id": 35, "profile_path": "/ohy0wy7JbQCD0qPqtLJ3NcxJ8C8.jpg", "order": 9}, {"name": "T.V. Carpio", "character": "Valerie", "id": 38944, "credit_id": "5304cde092514104be1cc9aa", "cast_id": 36, "profile_path": "/a62I1Ke8gvNxSfajHhCe2PyVlvu.jpg", "order": 10}, {"name": "Richard Bekins", "character": "Hank Atwood", "id": 59691, "credit_id": "5304cdee92514104be1cce05", "cast_id": 37, "profile_path": "/zNn7lSWpuiWIUriG48GfO6OzSLS.jpg", "order": 11}, {"name": "Patricia Kalember", "character": "Mrs. Atwood", "id": 23627, "credit_id": "5304cdfc92514104b51b17d2", "cast_id": 38, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 12}, {"name": "Cindy Katz", "character": "Marla Sutton", "id": 161939, "credit_id": "5304ce0f92514104d51ecf5a", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Brian Anthony Wilson", "character": "Detective", "id": 127070, "credit_id": "5304ce2292514104cc1b8f40", "cast_id": 40, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 14}], "directors": [{"name": "Neil Burger", "department": "Directing", "job": "Director", "credit_id": "52fe4809c3a36847f81552c5", "profile_path": "/eUDHt2OWYnCwC8FOVIgU2uTPK3x.jpg", "id": 17329}], "vote_average": 6.8, "runtime": 105}, "10923": {"poster_path": "/bVw0GpAhBvnlZcySdmNvwmcHgjO.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58795814, "overview": "Recruited by the U.S. government to be a special agent, nerdy teenager Cody Banks must get closer to cute classmate Natalie in order to learn about an evil plan hatched by her father. But despite the agent persona, Cody struggles with teen angst.", "video": false, "id": 10923, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Agent Cody Banks", "tagline": "Save the world. Get the girl. Pass math.", "vote_count": 70, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gh0OZpG16E5LtTAkCRkr5j0v1Fh.jpg", "poster_path": "/bVw0GpAhBvnlZcySdmNvwmcHgjO.jpg", "id": 91427, "name": "Agent Cody Banks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0313911", "adult": false, "backdrop_path": "/7sW3r7gqpoalBTsEi6SbBdmEYP7.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2003-03-14", "popularity": 0.698561843258111, "original_title": "Agent Cody Banks", "budget": 28000000, "cast": [{"name": "Frankie Muniz", "character": "Cody Banks", "id": 51391, "credit_id": "52fe43d19251416c7501f677", "cast_id": 1, "profile_path": "/pjVw8EUl3zQR5dP4wRy5spSR9ws.jpg", "order": 0}, {"name": "Hilary Duff", "character": "Natalie Connors", "id": 5958, "credit_id": "52fe43d19251416c7501f67b", "cast_id": 2, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 1}, {"name": "Angie Harmon", "character": "Ronica Miles", "id": 52929, "credit_id": "52fe43d19251416c7501f67f", "cast_id": 3, "profile_path": "/oFsZQuVxgMm9yUl0dZe4ROznIex.jpg", "order": 2}, {"name": "Keith David", "character": "CIA Director", "id": 65827, "credit_id": "52fe43d19251416c7501f683", "cast_id": 4, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 3}, {"name": "Cynthia Stevenson", "character": "Mrs. Banks", "id": 65528, "credit_id": "52fe43d19251416c7501f687", "cast_id": 5, "profile_path": "/b59DN25UqjxOLHVBFLMtbiOwn0W.jpg", "order": 4}, {"name": "Noel Fisher", "character": "Fenster", "id": 80352, "credit_id": "53ee7f340e0a26191e002861", "cast_id": 27, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 5}, {"name": "Darrell Hammond", "character": "Earl", "id": 58954, "credit_id": "53ee7f5e0e0a267a7100121e", "cast_id": 28, "profile_path": "/gxLHYyptnLLtak6E5eR7HqvMXRM.jpg", "order": 6}, {"name": "Martin Donovan", "character": "Dr. Connors", "id": 42993, "credit_id": "5512d758c3a3681db200fedf", "cast_id": 29, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 7}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe43d19251416c7501f68d", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 4.8, "runtime": 102}, "10925": {"poster_path": "/1vydUitzC8W8W5oNevEArCltydJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14237000, "overview": "When a bumbling pair of employees at a medical supply warehouse accidentally release a deadly gas into the air, the vapors cause the dead to re-animate as they go on a rampage seeking their favorite food: brains!", "video": false, "id": 10925, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "The Return of the Living Dead", "tagline": "They're Back From The Grave and Ready To Party!", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sgOyuSHKowya0OJprukWUpXsZGq.jpg", "poster_path": "/tqIP7Hnwqpj9tsKkbALmVrwzvtl.jpg", "id": 101471, "name": "Return of the Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089907", "adult": false, "backdrop_path": "/j07uv5zbzHCj7uFg62wR72i58u7.jpg", "production_companies": [{"name": "Hemdale Film Corporation", "id": 469}, {"name": "Fox Films Ltd.", "id": 4763}, {"name": "Cinema 84", "id": 4764}], "release_date": "1985-08-16", "popularity": 0.52916925346436, "original_title": "The Return of the Living Dead", "budget": 4000000, "cast": [{"name": "Clu Gulager", "character": "Burt Wilson", "id": 62019, "credit_id": "52fe43d19251416c7501f73b", "cast_id": 1, "profile_path": "/bjmydNfO5v5LocgBGTmCcBSSe6A.jpg", "order": 0}, {"name": "James Karen", "character": "Frank", "id": 14852, "credit_id": "52fe43d19251416c7501f73f", "cast_id": 2, "profile_path": "/1w2g6IbGpDsEnze2QubIGFKlZQt.jpg", "order": 1}, {"name": "Don Calfa", "character": "Ernie Kaltenbrunner", "id": 41262, "credit_id": "52fe43d29251416c7501f743", "cast_id": 3, "profile_path": "/4jnB2f6ADtC7pIuvGCzuZUzQhAn.jpg", "order": 2}, {"name": "Thom Mathews", "character": "Freddy", "id": 64198, "credit_id": "52fe43d29251416c7501f747", "cast_id": 4, "profile_path": "/xRAZ4YVZbX34vJw1tKGWgkqOq0P.jpg", "order": 3}, {"name": "Linnea Quigley", "character": "Trash", "id": 97619, "credit_id": "52fe43d29251416c7501f781", "cast_id": 14, "profile_path": "/nvOxpSqSQWwS5rUUMCGp30FcLCF.jpg", "order": 4}, {"name": "Beverly Randolph", "character": "Tina", "id": 536499, "credit_id": "52fe43d29251416c7501f785", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "John Philbin", "character": "Chuck", "id": 103011, "credit_id": "52fe43d29251416c7501f789", "cast_id": 16, "profile_path": "/hVRZLok1DmiiUQ5lBXOYx04Ibk4.jpg", "order": 6}, {"name": "Jewel Shepard", "character": "Casey", "id": 106669, "credit_id": "52fe43d29251416c7501f78d", "cast_id": 17, "profile_path": "/fWYq5bvnmfytgYDbLD24a16p5SG.jpg", "order": 7}, {"name": "Miguel A. N\u00fa\u00f1ez, Jr.", "character": "Spider (as Miguel Nunez)", "id": 74354, "credit_id": "52fe43d29251416c7501f791", "cast_id": 18, "profile_path": "/7uju1sYJOoT78cHpxVk0Sspo3S7.jpg", "order": 8}, {"name": "Brian Peck", "character": "Scuz", "id": 93149, "credit_id": "52fe43d29251416c7501f795", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Mark Venturini", "character": "Suicide", "id": 179625, "credit_id": "52fe43d29251416c7501f799", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jonathan Terry", "character": "Colonel Glover", "id": 97953, "credit_id": "52fe43d29251416c7501f79d", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Cathleen Cordell", "character": "Colonel's Wife", "id": 153422, "credit_id": "52fe43d29251416c7501f7a1", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Drew Deighan", "character": "Paramedic #1", "id": 949636, "credit_id": "52fe43d29251416c7501f7a5", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "James Dalesandro", "character": "Paramedic #2", "id": 155907, "credit_id": "52fe43d29251416c7501f7a9", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Dan O'Bannon", "department": "Directing", "job": "Director", "credit_id": "52fe43d29251416c7501f753", "profile_path": "/slLZWXZ1lmdF763166ATRRI200n.jpg", "id": 5045}], "vote_average": 7.1, "runtime": 91}, "174772": {"poster_path": "/hXRqbBilaYTUg8t10pJawynDFFB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A crew of international astronauts are sent on a private mission to Jupiter's fourth moon.", "video": false, "id": 174772, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Europa Report", "tagline": "Fear. Sacrifice. Contact.", "vote_count": 180, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2051879", "adult": false, "backdrop_path": "/w7duQ0vVhhKmhq8VpJgVjbr3NeR.jpg", "production_companies": [{"name": "Wayfare Entertainment", "id": 5703}, {"name": "Misher Films", "id": 11581}, {"name": "Start Motion Pictures", "id": 19961}], "release_date": "2013-06-27", "popularity": 0.81649471005053, "original_title": "Europa Report", "budget": 125687, "cast": [{"name": "Sharlto Copley", "character": "James Corrigan", "id": 82191, "credit_id": "52fe4d51c3a36847f825a8f1", "cast_id": 1, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Daniel Wu", "character": "William Xu", "id": 64436, "credit_id": "52fe4d51c3a36847f825a8f5", "cast_id": 2, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 1}, {"name": "Michael Nyqvist", "character": "Andrei Blok", "id": 6283, "credit_id": "52fe4d51c3a36847f825a8f9", "cast_id": 3, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 2}, {"name": "Christian Camargo", "character": "Dr. Daniel Luxembourg", "id": 122029, "credit_id": "52fe4d51c3a36847f825a8fd", "cast_id": 4, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 3}, {"name": "Karolina Wydra", "character": "Dr. Katya Petrovna", "id": 210829, "credit_id": "52fe4d51c3a36847f825a901", "cast_id": 5, "profile_path": "/rh3Tczs80TxVZqVCCqidAbho8CW.jpg", "order": 4}, {"name": "Anamaria Marinca", "character": "Rosa Dasque", "id": 20699, "credit_id": "52fe4d51c3a36847f825a905", "cast_id": 6, "profile_path": "/ajLN2RMuYHgTEFAzs8x8vZH0Rlu.jpg", "order": 5}, {"name": "Embeth Davidtz", "character": "Dr. Samantha Unger", "id": 6368, "credit_id": "52fe4d51c3a36847f825a90f", "cast_id": 9, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 6}, {"name": "Dan Fogler", "character": "Dan Fogler", "id": 58873, "credit_id": "54f5c682c3a3683502002618", "cast_id": 58, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 7}, {"name": "Dan Fogler", "character": "Dr. Sokolov", "id": 58873, "credit_id": "54f5c691c3a36834fd0023bd", "cast_id": 59, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 8}, {"name": "Isiah Whitlock, Jr.", "character": "Dr. Pamuk", "id": 17490, "credit_id": "54f5c6b39251412ba20024b3", "cast_id": 60, "profile_path": "/yLaKPYOvrea7dU0Xa86SY1WN7Gc.jpg", "order": 9}], "directors": [{"name": "Sebasti\u00e1n Cordero", "department": "Directing", "job": "Director", "credit_id": "52fe4d51c3a36847f825a90b", "profile_path": null, "id": 86255}], "vote_average": 6.1, "runtime": 90}, "150202": {"poster_path": "/fmMxrwMW6MVxPHLgjY7NTP5olIY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sequel to the 2009 mezzo-mezzo supernatural horror purporting to be based on a true story in which a cancer-afflicted teen starts seeing things in the new Victorian house he and his family moved into.", "video": false, "id": 150202, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Haunting in Connecticut 2: Ghosts of Georgia", "tagline": "", "vote_count": 64, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1sWTV5QaoDnBTTSbElUfe5zBcu2.jpg", "poster_path": "/6uIGXwqIfdg0IQw3bvfS49VMKHh.jpg", "id": 169740, "name": "The Haunting in Connecticut Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1457765", "adult": false, "backdrop_path": "/gv4vhStXehlD3S6mxciqmuIK4kh.jpg", "production_companies": [{"name": "Gold Circle Films", "id": 12026}], "release_date": "2013-02-01", "popularity": 0.203805002784917, "original_title": "The Haunting in Connecticut 2: Ghosts of Georgia", "budget": 0, "cast": [{"name": "Chad Michael Murray", "character": "", "id": 62747, "credit_id": "52fe4adb9251416c910c80bb", "cast_id": 3, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 0}, {"name": "Katee Sackhoff", "character": "", "id": 51798, "credit_id": "52fe4adb9251416c910c80bf", "cast_id": 4, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 1}, {"name": "Abigail Spencer", "character": "", "id": 123725, "credit_id": "52fe4adb9251416c910c80c3", "cast_id": 5, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 2}, {"name": "Cicely Tyson", "character": "", "id": 18249, "credit_id": "52fe4adb9251416c910c80c7", "cast_id": 6, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 3}, {"name": "Emily Alyn Lind", "character": "", "id": 112742, "credit_id": "52fe4adb9251416c910c80cb", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Andrea Frankle", "character": "", "id": 946356, "credit_id": "52fe4adb9251416c910c80cf", "cast_id": 8, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 5}, {"name": "Lauren Pennington", "character": "", "id": 1137888, "credit_id": "52fe4adb9251416c910c80d3", "cast_id": 9, "profile_path": "/bnN4ihzU4ql7McXZpvIMnG2iMDP.jpg", "order": 6}], "directors": [{"name": "Tom Elkins", "department": "Directing", "job": "Director", "credit_id": "52fe4adb9251416c910c80b1", "profile_path": null, "id": 51795}], "vote_average": 5.7, "runtime": 101}, "248507": {"poster_path": "/b4fFxsZvCxH16raJwf7PRMGiy4E.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Roman Faubert is one man who, almost 40 years, has neither wife nor child. The business that photographer for online medical dictionary, does not help a sickly hypochondriac who guides his lifestyle for far too long and made him a neurotic coward.", "video": false, "id": 248507, "genres": [{"id": 35, "name": "Comedy"}], "title": "Superchondriac", "tagline": "", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3421514", "adult": false, "backdrop_path": "/anbyB6Aw4AaAFplCGfT4ODZ0lNZ.jpg", "production_companies": [{"name": "TF1 Films Productions", "id": 356}, {"name": "TF1", "id": 22123}, {"name": "Path\u00e9 Distribution", "id": 3012}, {"name": "Les Productions du Ch'timi", "id": 23441}, {"name": "Art\u00e9mis Productions", "id": 11773}, {"name": "Fortis Film Fund", "id": 23081}, {"name": "Casa Kafka Pictures", "id": 11924}, {"name": "Tax Shelter Film Funding", "id": 15893}, {"name": "La Wallonie", "id": 33956}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}], "release_date": "2014-02-26", "popularity": 0.438059228402338, "original_title": "Supercondriaque", "budget": 0, "cast": [{"name": "Dany Boon", "character": "Romain Faubert", "id": 37627, "credit_id": "52fe4f33c3a36847f82c5081", "cast_id": 2, "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "order": 0}, {"name": "Kad Merad", "character": "Dr Dimitri Zvenka", "id": 22306, "credit_id": "52fe4f33c3a36847f82c5085", "cast_id": 3, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 1}, {"name": "Alice Pol", "character": "Anna Zvenka", "id": 129168, "credit_id": "52fe4f33c3a36847f82c5089", "cast_id": 4, "profile_path": "/iIZXvCswvL0liBt6CsvteBnqKCq.jpg", "order": 2}, {"name": "Jean-Yves Berteloot", "character": "Anton Miroslav", "id": 34259, "credit_id": "52fe4f33c3a36847f82c508d", "cast_id": 5, "profile_path": "/fJzUeNDhSZmKSmjaIW5dHhTwdYS.jpg", "order": 3}, {"name": "Judith El Zein", "character": "Norah Zvenka", "id": 64590, "credit_id": "52fe4f33c3a36847f82c5091", "cast_id": 6, "profile_path": "/hNOoT8PHPll504DgweJMpE0oscu.jpg", "order": 4}, {"name": "Marthe Villalonga", "character": "la m\u00e8re de Dimitri", "id": 25181, "credit_id": "52fe4f33c3a36847f82c5095", "cast_id": 7, "profile_path": "/7dV8WmNp5dB18eMAF8Zch5A3cnT.jpg", "order": 5}, {"name": "Val\u00e9rie Bonneton", "character": "Isabelle", "id": 54324, "credit_id": "52fe4f34c3a36847f82c5099", "cast_id": 8, "profile_path": "/uqWDC3lrOjD87OI3Lfg3QEqENbL.jpg", "order": 6}, {"name": "Bruno Lochet", "character": "le flic de l'immigration", "id": 71377, "credit_id": "52fe4f34c3a36847f82c509d", "cast_id": 9, "profile_path": "/aYltrcpgwa9CxSD2wy1UfFp9u4q.jpg", "order": 7}, {"name": "J\u00e9r\u00f4me Commandeur", "character": "Guillaume Lempreur", "id": 54170, "credit_id": "542ed37e0e0a26259600035e", "cast_id": 10, "profile_path": "/oD7b6OOvypJxHDLScoNkEpxnRPA.jpg", "order": 8}, {"name": "Jonathan Cohen", "character": "Marc", "id": 129765, "credit_id": "542ed3880e0a26258f000336", "cast_id": 11, "profile_path": "/li3fqJckKNZWsBPWhEXxYzYJSVD.jpg", "order": 9}, {"name": "Warren Zavatta", "character": "Marc Harris", "id": 62451, "credit_id": "542ed3930e0a262596000365", "cast_id": 12, "profile_path": "/1e5Nmrls6h469gRb95gzKxEstZE.jpg", "order": 10}, {"name": "St\u00e9phane De Groodt", "character": "l'avocat de Romain", "id": 97085, "credit_id": "542ed3a00e0a26259900032f", "cast_id": 13, "profile_path": "/cCw50gGyGzGoTL0P7nETDoQuwDt.jpg", "order": 11}, {"name": "Etienne Chicot", "character": "un m\u00e9decin", "id": 150792, "credit_id": "542ed3ad0e0a262596000369", "cast_id": 14, "profile_path": "/pYbudifKWa0sYY5QkQc5YKLHfMf.jpg", "order": 12}, {"name": "Guy Lecluyse", "character": "le malade avec un chat dans la gorge", "id": 52348, "credit_id": "542ed3c1c3a3680436000353", "cast_id": 15, "profile_path": "/w7zCQreyVrMIpkerskuXbivGlYI.jpg", "order": 13}, {"name": "Gudule", "character": "une voisine", "id": 1370583, "credit_id": "542ed3cec3a36804320002f6", "cast_id": 16, "profile_path": null, "order": 14}], "directors": [{"name": "Dany Boon", "department": "Directing", "job": "Director", "credit_id": "52fe4f33c3a36847f82c507d", "profile_path": "/55rJizD7aNBSEEthilFpgPNq0Td.jpg", "id": 37627}], "vote_average": 5.7, "runtime": 107}, "9620": {"poster_path": "/fvp8I0d21MMbpd0Z8HMeGZXMKGU.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96269812, "overview": "Michael Jennings is a genius who's hired -- and paid handsomely -- by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he's incapable of breaching security. But at the end of a three-year job, he's told he isn't getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn't paid \u2026 and how he's gotten in hot water.", "video": false, "id": 9620, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Paycheck", "tagline": "Remember the future.", "vote_count": 155, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338337", "adult": false, "backdrop_path": "/pJB1yZ4nGiU8M2H8Wit5HEbUp5s.jpg", "production_companies": [{"name": "Province of British Columbia Film Incentive BC", "id": 11567}, {"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Lion Rock Productions", "id": 2812}, {"name": "Solomon/Hackett Productions", "id": 22536}], "release_date": "2003-12-25", "popularity": 0.963963345382497, "original_title": "Paycheck", "budget": 60000000, "cast": [{"name": "Ben Affleck", "character": "Michael Jennings", "id": 880, "credit_id": "52fe4512c3a36847f80bac6f", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "James Rethrick", "id": 6383, "credit_id": "52fe4512c3a36847f80bac73", "cast_id": 8, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Uma Thurman", "character": "Dr. Rachel Porte", "id": 139, "credit_id": "52fe4512c3a36847f80bac77", "cast_id": 9, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Shorty", "id": 13242, "credit_id": "52fe4512c3a36847f80bac7b", "cast_id": 10, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Colm Feore", "character": "Wolfe", "id": 10132, "credit_id": "52fe4512c3a36847f80bac8b", "cast_id": 13, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 4}, {"name": "Joe Morton", "character": "Agent Dodge", "id": 3977, "credit_id": "52fe4512c3a36847f80bac8f", "cast_id": 14, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "Michael C. Hall", "character": "Agent Klein", "id": 53820, "credit_id": "52fe4512c3a36847f80bac93", "cast_id": 15, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 6}, {"name": "Peter Friedman", "character": "Attorney General Brown", "id": 54246, "credit_id": "52fe4512c3a36847f80bac97", "cast_id": 16, "profile_path": "/1plom5G0I425wj8l8xXhnvaFcPs.jpg", "order": 7}, {"name": "Kathryn Morris", "character": "Rita Dunne", "id": 2208, "credit_id": "52fe4512c3a36847f80bac9b", "cast_id": 17, "profile_path": "/kacv3Og9yU1bp6RJGb4Asnhsavt.jpg", "order": 8}, {"name": "Ivana Mili\u010devi\u0107", "character": "Maya-Rachel", "id": 29930, "credit_id": "52fe4512c3a36847f80bac9f", "cast_id": 18, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 9}, {"name": "Christopher Kennedy", "character": "Stevens", "id": 172822, "credit_id": "5469b54e22136e68da0027e0", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Fulvio Cecere", "character": "Agent Fuman", "id": 65808, "credit_id": "5469b561eaeb816b4b002ad2", "cast_id": 24, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 11}, {"name": "John Cassini", "character": "Agent Mitchell", "id": 12055, "credit_id": "5469b572eaeb816b4f002a42", "cast_id": 25, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 12}, {"name": "Callum Keith Rennie", "character": "Jude - Guard", "id": 540, "credit_id": "5469b583eaeb816b4b002ad6", "cast_id": 26, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 13}, {"name": "Michelle Harrison", "character": "Jane", "id": 59240, "credit_id": "5469b59222136e68c9002f79", "cast_id": 27, "profile_path": "/oRsgaQcINUjFgPeffNJNOTnx9uB.jpg", "order": 14}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe4512c3a36847f80bac81", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 5.9, "runtime": 119}, "2752": {"poster_path": "/bIyZfvT4kwfR6pus69kpbQKIokJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When easy-on-the-eyes Matt Sullivan is dumped by his girlfriend, he swears off all sex for Lent, which lasts 40 days and 40 nights. But his abstinence is tested when he meets beautiful and sexy Erica Sutton. Feeling like he's doomed if he doesn't stick to his plan, he struggles to resist the girl of his dreams.", "video": false, "id": 2752, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "40 Days and 40 Nights", "tagline": "One Man Is About To Do The Unthinkable. No Sex. Whatsoever. For...", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243736", "adult": false, "backdrop_path": "/v8qppTQ6cK8rIInke51WDi1rRM9.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}], "release_date": "2002-03-01", "popularity": 0.339850283510249, "original_title": "40 Days and 40 Nights", "budget": 17000000, "cast": [{"name": "Josh Hartnett", "character": "Matt Sulivan", "id": 2299, "credit_id": "52fe436ac3a36847f8052687", "cast_id": 1, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Shannyn Sossamon", "character": "Erica Sutton", "id": 27855, "credit_id": "52fe436ac3a36847f805268b", "cast_id": 2, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 1}, {"name": "Adam Trese", "character": "John Sullivan", "id": 27858, "credit_id": "52fe436ac3a36847f805268f", "cast_id": 4, "profile_path": "/zV9wi8IWumLMNP7qm3lFV9jyae7.jpg", "order": 3}, {"name": "Emmanuelle Vaugier", "character": "Susie", "id": 2684, "credit_id": "52fe436ac3a36847f8052693", "cast_id": 5, "profile_path": "/k8bjOJmREhKUHeUj33Sihnk89V9.jpg", "order": 4}, {"name": "Barry Newman", "character": "Walter Sullivan", "id": 27860, "credit_id": "52fe436ac3a36847f8052697", "cast_id": 6, "profile_path": "/vAl1PUv9PDy5WMfBLXmhRUhcqVO.jpg", "order": 5}, {"name": "Mary Gross", "character": "Bev Sullivan", "id": 27862, "credit_id": "52fe436ac3a36847f805269b", "cast_id": 7, "profile_path": "/2gk7Ld7Ah3QveJCMJvUH0LQrO9u.jpg", "order": 6}, {"name": "Paulo Costanzo", "character": "Ryan", "id": 57133, "credit_id": "52fe436ac3a36847f80526e1", "cast_id": 19, "profile_path": "/7ALI5nYarzuLGjsQA3NuvTKvy9h.jpg", "order": 7}, {"name": "Keegan Connor Tracy", "character": "Mandy", "id": 42710, "credit_id": "52fe436ac3a36847f80526e5", "cast_id": 20, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 8}, {"name": "Maggie Gyllenhaal", "character": "Sam", "id": 1579, "credit_id": "52fe436ac3a36847f80526e9", "cast_id": 21, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 9}, {"name": "Michael C. Maronna", "character": "Bagel Boy", "id": 945734, "credit_id": "52fe436ac3a36847f80526ed", "cast_id": 22, "profile_path": null, "order": 10}], "directors": [{"name": "Michael Lehmann", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f80526a1", "profile_path": "/rM0KmE5Fr9zAi5gzQv9bc78Q1GX.jpg", "id": 7145}], "vote_average": 5.3, "runtime": 96}, "10016": {"poster_path": "/imbaEfMwIMKEtD4OTosktJ4VX1R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8709640, "overview": "Melanie Ballard (Natasha Henstridge) is a hard nosed police chief in the year 2025. She and a police snatch squad are sent to Mars to apprehend a dangerous criminal James Williams (Ice Cube). Mars has been occupied by humans for some time and they have set up mining facilities. The mining activities on Mars have unleashed the spirits of alien beings who gradually possess the bodies of the workers. It soon turns out that catching the dangerous fugitive takes a back seat as the alien spirits begin to rid their planet of the 'invaders'.", "video": false, "id": 10016, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Ghosts of Mars", "tagline": "Terror is the same on any planet.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0228333", "adult": false, "backdrop_path": "/rdrA8jUAUe6VVr2umZQzbpkDxEC.jpg", "production_companies": [{"name": "Animationwerks", "id": 51312}, {"name": "Screen Gems", "id": 3287}, {"name": "Storm King Productions", "id": 23895}], "release_date": "2001-08-24", "popularity": 0.995290764884802, "original_title": "Ghosts of Mars", "budget": 28000000, "cast": [{"name": "Natasha Henstridge", "character": "Lt. Melanie Ballard", "id": 57395, "credit_id": "52fe43089251416c75000d71", "cast_id": 10, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 0}, {"name": "Ice Cube", "character": "James 'Desolation' Williams", "id": 9778, "credit_id": "52fe43089251416c75000d75", "cast_id": 11, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 1}, {"name": "Jason Statham", "character": "Sgt. Jericho Butler", "id": 976, "credit_id": "52fe43089251416c75000d79", "cast_id": 12, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Clea DuVall", "character": "Bashira Kincaid", "id": 20387, "credit_id": "52fe43089251416c75000d7d", "cast_id": 13, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 3}, {"name": "Pam Grier", "character": "Commander Helena Braddock", "id": 2230, "credit_id": "52fe43089251416c75000d81", "cast_id": 14, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 4}, {"name": "Joanna Cassidy", "character": "Dr. Arlene Whitlock", "id": 593, "credit_id": "52fe43089251416c75000d85", "cast_id": 15, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 5}, {"name": "Richard Cetrone", "character": "Big Daddy Mars", "id": 12371, "credit_id": "52fe43089251416c75000d95", "cast_id": 18, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 6}, {"name": "Rosemary Forsyth", "character": "Inquisitor", "id": 49958, "credit_id": "52fe43089251416c75000dab", "cast_id": 22, "profile_path": "/tZx3Vs1ZTfwQuAnP6Ljs1AwnaU0.jpg", "order": 7}, {"name": "Lobo Sebastian", "character": "Dos", "id": 48071, "credit_id": "52fe43089251416c75000daf", "cast_id": 23, "profile_path": "/muw74umbo9s6KI22pxzc7RSNqi9.jpg", "order": 8}, {"name": "Rodney A. Grant", "character": "Tres", "id": 7853, "credit_id": "52fe43089251416c75000db3", "cast_id": 24, "profile_path": "/zJI1ES5cvy7xtEvRnRURbgW03Bf.jpg", "order": 9}, {"name": "Peter Jason", "character": "Engineer McSimms", "id": 6916, "credit_id": "52fe43089251416c75000db7", "cast_id": 25, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 10}, {"name": "Wanda De Jesus", "character": "Akooshay", "id": 57991, "credit_id": "52fe43089251416c75000dbb", "cast_id": 26, "profile_path": "/iaMj5a3Wogclzzjaa0vv2b8huVi.jpg", "order": 11}, {"name": "Liam Waite", "character": "Michael Descanso", "id": 62031, "credit_id": "52fe43089251416c75000dbf", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Duane Davis", "character": "Uno", "id": 62032, "credit_id": "52fe43089251416c75000dc3", "cast_id": 28, "profile_path": "/t9tcFEEbffaD64VZdsc0qwnPnr9.jpg", "order": 13}, {"name": "Doug McGrath", "character": "Benchley", "id": 62033, "credit_id": "52fe43089251416c75000dc7", "cast_id": 29, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 14}, {"name": "Rick Edelstein", "character": "Zimmerman", "id": 62034, "credit_id": "52fe43089251416c75000dcb", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Rex Linn", "character": "Yared", "id": 16937, "credit_id": "52fe43089251416c75000dcf", "cast_id": 31, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 16}, {"name": "Michael Krawic", "character": "Man in the Rover", "id": 62035, "credit_id": "52fe43089251416c75000dd3", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Robert Carradine", "character": "Rodale", "id": 62036, "credit_id": "52fe43089251416c75000dd7", "cast_id": 33, "profile_path": "/bHC0DdCEJ3frEWADFnTnftSmdgF.jpg", "order": 18}, {"name": "Eileen Weisinger", "character": "Woman Warrior", "id": 62037, "credit_id": "52fe43089251416c75000ddb", "cast_id": 34, "profile_path": null, "order": 19}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe43089251416c75000d3d", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 5.1, "runtime": 98}, "2755": {"poster_path": "/riJV5Bq0IXItG3ceywNWkw7il7K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105834556, "overview": "Warren Schmidt is a retired insurance salesman, who at age 66, has no particular plans other than to drive around in the motor home his wife insisted they buy. He's not altogether bitter, but not happy either, as everything his wife does annoys him, and he disapproves of the man his daughter is about to marry. When his wife suddenly dies, he sets out to postpone the imminent marriage of his daughter to a man he doesn't like, while coping with discoveries about his late wife and himself in the process.", "video": false, "id": 2755, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "About Schmidt", "tagline": "Schmidt Happens", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0257360", "adult": false, "backdrop_path": "/e24dN60wkwD6wt2i9FN2QOJWJV3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2002-12-13", "popularity": 0.423071766697407, "original_title": "About Schmidt", "budget": 30000000, "cast": [{"name": "Jack Nicholson", "character": "Warren R. Schmidt", "id": 514, "credit_id": "52fe436ac3a36847f8052821", "cast_id": 4, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Kathy Bates", "character": "Roberta Hertzel", "id": 8534, "credit_id": "52fe436ac3a36847f8052825", "cast_id": 5, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 1}, {"name": "Hope Davis", "character": "Jeannie Schmidt", "id": 15250, "credit_id": "52fe436ac3a36847f8052829", "cast_id": 6, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 2}, {"name": "Dermot Mulroney", "character": "Randall Hertzel", "id": 20212, "credit_id": "52fe436ac3a36847f8052869", "cast_id": 17, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 3}, {"name": "June Squibb", "character": "Helen Schmidt", "id": 35515, "credit_id": "52fe436ac3a36847f805286d", "cast_id": 18, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 4}, {"name": "Howard Hesseman", "character": "Larry Hertzel", "id": 35516, "credit_id": "52fe436ac3a36847f8052871", "cast_id": 19, "profile_path": "/q0glWtVUVnPoB3AoAMe8SqMRJ5e.jpg", "order": 5}, {"name": "Connie Ray", "character": "Vicki Rusk", "id": 35517, "credit_id": "52fe436ac3a36847f8052875", "cast_id": 20, "profile_path": "/yJriGT19J24uceLCxVLbE70pd9p.jpg", "order": 6}, {"name": "Harry Groener", "character": "John Rusk", "id": 35518, "credit_id": "52fe436ac3a36847f8052879", "cast_id": 21, "profile_path": "/y9Z0ZIbFDwe7V7PQEMeCyTld3zM.jpg", "order": 7}, {"name": "Mark Venhuizen", "character": "Duncan Hertzel", "id": 35519, "credit_id": "52fe436ac3a36847f805287d", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Cheryl Hamada", "character": "Saundra", "id": 35520, "credit_id": "52fe436ac3a36847f8052881", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Matt Winston", "character": "Gary Nordin", "id": 35521, "credit_id": "52fe436ac3a36847f8052885", "cast_id": 24, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 10}, {"name": "Len Cariou", "character": "Ray Nichols", "id": 41247, "credit_id": "54a11ae7c3a368554200989f", "cast_id": 25, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 11}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f8052811", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 6.6, "runtime": 125}, "10948": {"poster_path": "/99j3UwX7h2Bfe7btonaiSWoUvtQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29800000, "overview": "The fun and adventure begin when a lonely widow adopts an orphaned fox cub named Tod. The mischievous fox soon meets up with Copper, an adorable hound puppy. As the innocent pair grow up together in the forest, they become inseparable friends. But the day soon arrives when their friendship is put to the ultimate test!", "video": false, "id": 10948, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Fox and the Hound", "tagline": "Two friends that didn't know they were supposed to be enemies.", "vote_count": 212, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fEix7vMN09DUvt7nHh9qFwN9Op9.jpg", "poster_path": "/ph2KiQxp8xmgA5ENoBhETvJnYw9.jpg", "id": 100970, "name": "The Fox and the Hound Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082406", "adult": false, "backdrop_path": "/i6JYzuTiCDLF1gC3oufEalwJAQ9.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1981-07-10", "popularity": 1.10445961187644, "original_title": "The Fox and the Hound", "budget": 12000000, "cast": [{"name": "Mickey Rooney", "character": "Adult Tod (voice)", "id": 1937, "credit_id": "52fe43d79251416c7502031f", "cast_id": 1, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Adult Copper (voice)", "id": 6856, "credit_id": "52fe43d79251416c75020323", "cast_id": 2, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Pearl Bailey", "character": "Big Mama (voice)", "id": 20157, "credit_id": "52fe43d79251416c75020327", "cast_id": 3, "profile_path": "/100KJq10WmDno3xoZjDTiYUVCT1.jpg", "order": 2}, {"name": "Jack Albertson", "character": "Amos Slade (voice)", "id": 3461, "credit_id": "52fe43d79251416c7502032b", "cast_id": 4, "profile_path": "/k9oqFrLhgd6v1hGG8Jg2mluM1XL.jpg", "order": 3}, {"name": "Sandy Duncan", "character": "Vixey (voice)", "id": 88947, "credit_id": "52fe43d79251416c7502039b", "cast_id": 25, "profile_path": "/AuNmo9KppBRuHQpyAiSELrZ0R7A.jpg", "order": 4}, {"name": "Jeanette Nolan", "character": "Widow Tweed (voice)", "id": 7520, "credit_id": "52fe43d79251416c7502039f", "cast_id": 26, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 5}, {"name": "Pat Buttram", "character": "Chief (voice)", "id": 21460, "credit_id": "52fe43d79251416c750203a3", "cast_id": 27, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 6}, {"name": "John Fiedler", "character": "Porcupine (voice)", "id": 5247, "credit_id": "52fe43d79251416c750203a7", "cast_id": 28, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 7}, {"name": "John McIntire", "character": "Badger (voice)", "id": 53010, "credit_id": "52fe43d79251416c750203ab", "cast_id": 29, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 8}, {"name": "Richard Bakalyan", "character": "Dinky (voice)", "id": 12299, "credit_id": "52fe43d79251416c750203af", "cast_id": 30, "profile_path": "/flHUIu0hpigaZYXb7XfkEFmPc7j.jpg", "order": 9}, {"name": "Paul Winchell", "character": "Boomer (voice)", "id": 77548, "credit_id": "52fe43d79251416c750203b3", "cast_id": 31, "profile_path": "/hAhbU0lCkYA0yCHZb6sVKWluY3Y.jpg", "order": 10}, {"name": "Keith Coogan", "character": "Young Tod (voice)", "id": 56145, "credit_id": "52fe43d79251416c750203b7", "cast_id": 32, "profile_path": "/uAMrErJNb1IW78RkgpMq9id2ec8.jpg", "order": 11}, {"name": "Corey Feldman", "character": "Young Copper (voice)", "id": 3034, "credit_id": "52fe43d79251416c750203bb", "cast_id": 33, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 12}], "directors": [{"name": "Ted Berman", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c75020331", "profile_path": null, "id": 67604}, {"name": "Art Stevens", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c75020337", "profile_path": null, "id": 67607}, {"name": "Richard Rich", "department": "Directing", "job": "Director", "credit_id": "52fe43d79251416c75020397", "profile_path": null, "id": 107274}], "vote_average": 6.7, "runtime": 83}, "2757": {"poster_path": "/5trb1V5f3IsjpZx2GiuUylowl3W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32801173, "overview": "A love-lorn script writer grows increasingly desperate in his quest to adapt the book 'The Orchid Thief'.", "video": false, "id": 2757, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Adaptation.", "tagline": "Charlie Kaufman writes the way he lives... With Great Difficulty. His Twin Brother Donald Lives the way he writes... with foolish abandon. Susan writes about life... But can't live it. John's life is a book... Waiting to be adapted. One story... Four Lives... A million ways it can end.", "vote_count": 120, "homepage": "http://www.sonypictures.com/homevideo/adaptation/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0268126", "adult": false, "backdrop_path": "/nL9o28hfjYogauJUBmMzBXbp32T.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Beverly Detroit", "id": 267}, {"name": "Propaganda Films", "id": 278}, {"name": "Clinica Estetico", "id": 1274}, {"name": "Intermedia", "id": 8856}, {"name": "Good Machine", "id": 10565}], "release_date": "2002-12-06", "popularity": 0.336992697837255, "original_title": "Adaptation.", "budget": 19000000, "cast": [{"name": "Nicolas Cage", "character": "Charlie/Donald Kaufman", "id": 2963, "credit_id": "52fe436ac3a36847f8052987", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Susan Orlean", "id": 5064, "credit_id": "52fe436ac3a36847f805298b", "cast_id": 5, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Chris Cooper", "character": "John Laroche", "id": 2955, "credit_id": "52fe436ac3a36847f805298f", "cast_id": 6, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Tilda Swinton", "character": "Valerie Thomas", "id": 3063, "credit_id": "52fe436ac3a36847f80529d3", "cast_id": 18, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 3}, {"name": "Cara Seymour", "character": "Amelia Kavan", "id": 2617, "credit_id": "52fe436ac3a36847f80529cf", "cast_id": 17, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 4}, {"name": "Ron Livingston", "character": "Marty Bowen", "id": 17402, "credit_id": "52fe436ac3a36847f80529d7", "cast_id": 19, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 5}, {"name": "Brian Cox", "character": "Robert McKee", "id": 1248, "credit_id": "52fe436ac3a36847f80529db", "cast_id": 20, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 6}, {"name": "Maggie Gyllenhaal", "character": "Caroline Cunningham", "id": 1579, "credit_id": "52fe436ac3a36847f80529df", "cast_id": 21, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 7}, {"name": "Jay Tavare", "character": "Matthew Osceola", "id": 29861, "credit_id": "52fe436ac3a36847f80529e3", "cast_id": 22, "profile_path": "/v1ILbH1HGgaB5OvAL7aGhbHFZ3R.jpg", "order": 8}, {"name": "Jim Beaver", "character": "Ranger Tony", "id": 29862, "credit_id": "52fe436ac3a36847f80529e7", "cast_id": 23, "profile_path": "/eyHu6p58acumBmJhRDrueBa2o9X.jpg", "order": 9}, {"name": "Doug Jones", "character": "Augustus Margary", "id": 17005, "credit_id": "5497caf29251417315002a8b", "cast_id": 24, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 10}, {"name": "Gary Farmer", "character": "Buster Baxley", "id": 15439, "credit_id": "5497cb2a9251417315002a93", "cast_id": 25, "profile_path": "/iiIgfaFmsL1zqXozZtAqygXpYvy.jpg", "order": 11}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe436ac3a36847f8052977", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 7.1, "runtime": 114}, "10950": {"poster_path": "/gr0jLIUd5Os0RAFH9U5iZMpQ5cw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40270895, "overview": "Sam has the mental capacity of a 7-year-old. He has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations start to become a problem and the authorities take her away. Sam shames high-priced lawyer Rita into taking his case pro bono and in turn teaches her the value of love and family.", "video": false, "id": 10950, "genres": [{"id": 18, "name": "Drama"}], "title": "I Am Sam", "tagline": "love is all you need", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0277027", "adult": false, "backdrop_path": "/mTN2pjZKWteb6B7WOGtrMx8FEpu.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2001-12-28", "popularity": 0.369053433672555, "original_title": "I Am Sam", "budget": 22000000, "cast": [{"name": "Sean Penn", "character": "Sam Dawson", "id": 2228, "credit_id": "52fe43d89251416c7502044b", "cast_id": 1, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Rita Harrison Williams", "id": 1160, "credit_id": "52fe43d89251416c7502044f", "cast_id": 2, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Dakota Fanning", "character": "Lucy Diamond Dawson", "id": 501, "credit_id": "52fe43d89251416c75020453", "cast_id": 3, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 2}, {"name": "Dianne Wiest", "character": "Annie Cassell", "id": 1902, "credit_id": "52fe43d89251416c75020457", "cast_id": 4, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 3}, {"name": "Marin Hinkle", "character": "Patricia", "id": 65760, "credit_id": "52fe43d89251416c75020473", "cast_id": 9, "profile_path": "/gqMABmd8yE6nhpdK900zqRDEjor.jpg", "order": 4}, {"name": "Loretta Devine", "character": "Margaret Calgrove", "id": 18284, "credit_id": "54a42276c3a3682f1e011fc8", "cast_id": 10, "profile_path": "/zLQFwQTFtHkb8sbFdkPNamFI7jv.jpg", "order": 5}, {"name": "Richard Schiff", "character": "Mr. Turner", "id": 31028, "credit_id": "54a4228692514117dd004d12", "cast_id": 11, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 6}, {"name": "Laura Dern", "character": "Randy Carpenter", "id": 4784, "credit_id": "54a42294c3a3682f1e011fd0", "cast_id": 12, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 7}, {"name": "Brad Silverman", "character": "Brad", "id": 1235193, "credit_id": "54a422c392514118600052a8", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Joseph Rosenberg", "character": "Joe", "id": 1407026, "credit_id": "54a422d592514117dd004d20", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Stanley DeSantis", "character": "Robert", "id": 4171, "credit_id": "54a422f3c3a368642800330c", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Doug Hutchison", "character": "Ifty", "id": 6806, "credit_id": "54a42305c3a3682f21012560", "cast_id": 16, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 11}], "directors": [{"name": "Jessie Nelson", "department": "Directing", "job": "Director", "credit_id": "52fe43d89251416c7502045d", "profile_path": null, "id": 16853}], "vote_average": 7.1, "runtime": 132}, "76487": {"poster_path": "/xClxu7PoHWMpCHHaqd3ZRdwOCnr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Italy, a woman becomes involved in a series of unauthorized exorcisms during her mission to discover what happened to her mother, who allegedly murdered three people during her own exorcism.", "video": false, "id": 76487, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Devil Inside", "tagline": "No soul is safe.", "vote_count": 76, "homepage": "http://www.devilinsidemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1560985", "adult": false, "backdrop_path": "/jp4uQV79C1WzAaVjW5hRTu1iSxd.jpg", "production_companies": [{"name": "Room 101", "id": 6302}, {"name": "Prototype", "id": 24048}], "release_date": "2012-01-06", "popularity": 0.929723279755128, "original_title": "The Devil Inside", "budget": 0, "cast": [{"name": "Fernanda Andrade", "character": "Isabella Rossi", "id": 134365, "credit_id": "52fe493dc3a368484e1214df", "cast_id": 4, "profile_path": "/rTes0DuqdCQ3gpvlV4B2OJzcCOf.jpg", "order": 0}, {"name": "Simon Quarterman", "character": "Ben", "id": 141463, "credit_id": "52fe493dc3a368484e1214e3", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Evan Helmuth", "character": "David", "id": 114036, "credit_id": "52fe493dc3a368484e1214e7", "cast_id": 6, "profile_path": "/bQz4Lz8do2JwXQ1aQ8euYn0p8Ap.jpg", "order": 2}, {"name": "Ionut Grama", "character": "Michael", "id": 579061, "credit_id": "52fe493dc3a368484e1214eb", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Suzan Crowley", "character": "Maria Rossi", "id": 94348, "credit_id": "52fe493dc3a368484e1214fb", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Bonnie Morgan", "character": "Rosa", "id": 58517, "credit_id": "52fe493dc3a368484e1214ff", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Brian D. Johnson", "character": "Lieutenant Dreyfus", "id": 1179997, "credit_id": "52fe493dc3a368484e121503", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "John Prosky", "character": "Father Christopher Aimes", "id": 42724, "credit_id": "54d3419d92514109ba002679", "cast_id": 51, "profile_path": null, "order": 7}, {"name": "Claudiu Istodor", "character": "Doctor Antonio Costa", "id": 1328110, "credit_id": "54d341cdc3a3686abf002f61", "cast_id": 52, "profile_path": null, "order": 8}, {"name": "Claudiu Trandafir", "character": "Father Robert Gallo", "id": 31639, "credit_id": "54d341edc3a3686abf002f6f", "cast_id": 53, "profile_path": null, "order": 9}], "directors": [{"name": "William Brent Bell", "department": "Directing", "job": "Director", "credit_id": "52fe493dc3a368484e1214cf", "profile_path": null, "id": 62768}], "vote_average": 4.7, "runtime": 83}, "76492": {"poster_path": "/8DGGcTCl47s1tmzSLxUNLXDcJge.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 358375603, "overview": "Dracula, who operates a high-end resort away from the human world, goes into overprotective mode when a boy discovers the resort and falls for the count's teen-aged daughter.", "video": false, "id": 76492, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Hotel Transylvania", "tagline": "Where monsters go to get away from it all", "vote_count": 952, "homepage": "http://www.welcometohotelt.com", "belongs_to_collection": {"backdrop_path": "/arH2YrpG7EVMnA4JCtzAXt9wQQJ.jpg", "poster_path": "/5BdZEDsRLYpmlhYTUvWH56Quots.jpg", "id": 185103, "name": "Hotel Transylvania Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0837562", "adult": false, "backdrop_path": "/pQPRp30zd0BSaefterJnLmh4Rs9.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}], "release_date": "2012-09-27", "popularity": 2.66955368480374, "original_title": "Hotel Transylvania", "budget": 85000000, "cast": [{"name": "Adam Sandler", "character": "Dracula (voice)", "id": 19292, "credit_id": "52fe493ec3a368484e1216ab", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Steve Buscemi", "character": "Wayne (voice)", "id": 884, "credit_id": "52fe493ec3a368484e1216af", "cast_id": 3, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 1}, {"name": "David Spade", "character": "Griffin - The Invisible Man (voice)", "id": 60950, "credit_id": "52fe493ec3a368484e1216b3", "cast_id": 5, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 2}, {"name": "Kevin James", "character": "Frank / Frankenstein (voice)", "id": 32895, "credit_id": "52fe493ec3a368484e1216b7", "cast_id": 6, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 3}, {"name": "Selena Gomez", "character": "Mavis (voice)", "id": 77948, "credit_id": "52fe493ec3a368484e1216c1", "cast_id": 10, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 4}, {"name": "Andy Samberg", "character": "Jonathan (voice)", "id": 62861, "credit_id": "52fe493ec3a368484e1216c5", "cast_id": 11, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 5}, {"name": "Fran Drescher", "character": "Eunice (voice)", "id": 53122, "credit_id": "52fe493ec3a368484e1216c9", "cast_id": 12, "profile_path": "/vQxr8CRgyDkH3GTFLwacs9W9tF4.jpg", "order": 6}, {"name": "Molly Shannon", "character": "Wanda (voice)", "id": 28640, "credit_id": "52fe493ec3a368484e1216cd", "cast_id": 14, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 7}, {"name": "Cee Lo Green", "character": "Murray the Mummy (voice)", "id": 458843, "credit_id": "52fe493ec3a368484e1216d1", "cast_id": 15, "profile_path": "/zWFtm54BWktE9fp4GBAyZjmbQdN.jpg", "order": 8}, {"name": "Jon Lovitz", "character": "Quasimodo (voice)", "id": 16165, "credit_id": "52fe493ec3a368484e1216d5", "cast_id": 16, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 9}, {"name": "Rick Kavanian", "character": "Dracula (German voice)", "id": 37034, "credit_id": "5378cc550e0a26141f0054c1", "cast_id": 19, "profile_path": "/lLU5juQUAV7FXaBVO6yiYtjpYyp.jpg", "order": 10}, {"name": "Elyas M\u2019Barek", "character": "Jonathan (German voice)", "id": 25409, "credit_id": "5378cc930e0a261425005450", "cast_id": 20, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 11}, {"name": "Josefine Preu\u00df", "character": "Mavis (German voice)", "id": 25401, "credit_id": "5378ccae0e0a261419005109", "cast_id": 21, "profile_path": "/kvneY1YAGfq1uiQhjzzhihbsTsf.jpg", "order": 12}], "directors": [{"name": "Genndy Tartakovsky", "department": "Directing", "job": "Director", "credit_id": "52fe493ec3a368484e1216a7", "profile_path": null, "id": 185438}], "vote_average": 6.5, "runtime": 91}, "199373": {"poster_path": "/2bD6kKCqzsHdcDRxfpMJjSHQmey.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5496951, "overview": "An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.", "video": false, "id": 199373, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Frozen Ground", "tagline": "The hunter becomes the hunted", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2005374", "adult": false, "backdrop_path": "/ezrXYtsPg1hpSk0wXG8zUIIMqMA.jpg", "production_companies": [{"name": "Picture Perfect Corporation", "id": 27993}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Court Five", "id": 30023}, {"name": "Envision Entertainment", "id": 31832}, {"name": "Valentina Films", "id": 31833}, {"name": "K5 International", "id": 6715}, {"name": "Paradox Entertainment", "id": 6819}], "release_date": "2013-08-23", "popularity": 0.859644093407042, "original_title": "The Frozen Ground", "budget": 27220000, "cast": [{"name": "Nicolas Cage", "character": "Jack Halcombe", "id": 2963, "credit_id": "52fe4d9b9251416c9111bfa3", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Cindy Paulson", "id": 67599, "credit_id": "52fe4d9b9251416c9111bfa7", "cast_id": 2, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "John Cusack", "character": "Robert Hansen", "id": 3036, "credit_id": "52fe4d9b9251416c9111bfab", "cast_id": 3, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 2}, {"name": "Radha Mitchell", "character": "Allie Halcombe", "id": 8329, "credit_id": "52fe4d9b9251416c9111bfaf", "cast_id": 4, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 3}, {"name": "Jodi Lyn O'Keefe", "character": "Chelle Ringell", "id": 58006, "credit_id": "52fe4d9b9251416c9111bfc5", "cast_id": 8, "profile_path": "/w1Yx9bpt3ZqVwo33SEXVF5bkY6Z.jpg", "order": 4}, {"name": "Katherine LaNasa", "character": "Fran Hansen", "id": 169337, "credit_id": "52fe4d9b9251416c9111bfc9", "cast_id": 9, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 5}, {"name": "Dean Norris", "character": "Sgt. Lyle Haugsven", "id": 14329, "credit_id": "52fe4d9b9251416c9111bfcd", "cast_id": 10, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 6}, {"name": "50 Cent", "character": "Pimp Clate Johnson", "id": 62644, "credit_id": "52fe4d9b9251416c9111bfd1", "cast_id": 11, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 7}, {"name": "Gia Mantegna", "character": "Debbie Peters", "id": 137424, "credit_id": "52fe4d9b9251416c9111bfd5", "cast_id": 12, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 8}, {"name": "Kevin Dunn", "character": "Lt. Bob Jent", "id": 14721, "credit_id": "52fe4d9b9251416c9111bfd9", "cast_id": 13, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 9}, {"name": "Kurt Fuller", "character": "D.A. Pat Clives", "id": 29685, "credit_id": "52fe4d9b9251416c9111bfdd", "cast_id": 14, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 10}, {"name": "Matt Gerald", "character": "Ed Stauber", "id": 98215, "credit_id": "52fe4d9b9251416c9111bfe1", "cast_id": 15, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 11}, {"name": "Brad William Henke", "character": "Carl Galenski", "id": 15376, "credit_id": "52fe4d9b9251416c9111bfe5", "cast_id": 16, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 12}, {"name": "Michael McGrady", "character": "Vice Det. John Gentile", "id": 157015, "credit_id": "52fe4d9b9251416c9111bfe9", "cast_id": 17, "profile_path": "/1BVROvpyydpWNTBvTvxK5akRVj5.jpg", "order": 13}, {"name": "Ryan O'Nan", "character": "Gregg Baker", "id": 142192, "credit_id": "52fe4d9b9251416c9111bfed", "cast_id": 18, "profile_path": "/sXZOZiVoAm4kKR437AoLECfxBNi.jpg", "order": 14}], "directors": [{"name": "Scott Walker", "department": "Directing", "job": "Director", "credit_id": "52fe4d9b9251416c9111bfb5", "profile_path": null, "id": 1179590}], "vote_average": 6.3, "runtime": 105}, "76494": {"poster_path": "/4vD9uLJHfTOx9vRHdKEXgGvqYZU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 79700000, "overview": "Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who's expecting twins with his young trophy wife; a photographer's husband isn't sure about his wife's adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.", "video": false, "id": 76494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "What to Expect When You're Expecting", "tagline": "It's too late to pull out now.", "vote_count": 147, "homepage": "http://whattoexpectthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1586265", "adult": false, "backdrop_path": "/pQVTUyQUqTKB9nWw0OeJrRrQOp2.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "What to Expect Productions", "id": 19577}], "release_date": "2012-05-18", "popularity": 1.07860656668531, "original_title": "What to Expect When You're Expecting", "budget": 40000000, "cast": [{"name": "Cameron Diaz", "character": "Jules", "id": 6941, "credit_id": "52fe493ec3a368484e1217bd", "cast_id": 3, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Holly", "id": 16866, "credit_id": "52fe493ec3a368484e1217c5", "cast_id": 5, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Wendy", "id": 9281, "credit_id": "52fe493ec3a368484e1217c1", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Anna Kendrick", "character": "Rosie", "id": 84223, "credit_id": "52fe493ec3a368484e1217b9", "cast_id": 2, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 3}, {"name": "Brooklyn Decker", "character": "Skyler", "id": 131520, "credit_id": "52fe493ec3a368484e1217df", "cast_id": 10, "profile_path": "/ll0ujxAqZUTcWSuA8NNsXoLppsG.jpg", "order": 4}, {"name": "Matthew Morrison", "character": "Evan", "id": 155209, "credit_id": "52fe493ec3a368484e121803", "cast_id": 19, "profile_path": "/oB5gRfmJLQYHfm1zSgeyeewnZr5.jpg", "order": 5}, {"name": "Rodrigo Santoro", "character": "Alex", "id": 17289, "credit_id": "52fe493ec3a368484e121807", "cast_id": 20, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 6}, {"name": "Ben Falcone", "character": "Gary", "id": 170820, "credit_id": "52fe493ec3a368484e1217ff", "cast_id": 18, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 7}, {"name": "Dennis Quaid", "character": "Ramsey", "id": 6065, "credit_id": "52fe493ec3a368484e1217e3", "cast_id": 11, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 8}, {"name": "Chace Crawford", "character": "Marco", "id": 60899, "credit_id": "52fe493ec3a368484e1217db", "cast_id": 9, "profile_path": "/ay3fAn4ya7BUfBcHkSGGw0dapUg.jpg", "order": 9}, {"name": "Chris Rock", "character": "Vic", "id": 2632, "credit_id": "52fe493ec3a368484e1217e7", "cast_id": 12, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 10}, {"name": "Rob Huebel", "character": "Gabe", "id": 80595, "credit_id": "52fe493ec3a368484e1217eb", "cast_id": 13, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 11}, {"name": "Thomas Lennon", "character": "Craig", "id": 539, "credit_id": "52fe493ec3a368484e1217ef", "cast_id": 14, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 12}, {"name": "Amir Talai", "character": "Patel", "id": 203086, "credit_id": "52fe493ec3a368484e1217fb", "cast_id": 17, "profile_path": "/srxTWgHM68erYRK3Vr02MLyR7Se.jpg", "order": 13}, {"name": "Rebel Wilson", "character": "Janice", "id": 221581, "credit_id": "52fe493ec3a368484e1217f3", "cast_id": 15, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 14}, {"name": "Joe Manganiello", "character": "Davis", "id": 20580, "credit_id": "54589a50c3a36839a400160a", "cast_id": 23, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 15}, {"name": "Wendi McLendon-Covey", "character": "Kara", "id": 63234, "credit_id": "52fe493ec3a368484e1217f7", "cast_id": 16, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 16}, {"name": "Kim Fields", "character": "Social Worker", "id": 98628, "credit_id": "52fe493ec3a368484e12180b", "cast_id": 21, "profile_path": "/dAJYp4lrXouBaYUMDxcYV5KS3l.jpg", "order": 17}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Courtney", "id": 589162, "credit_id": "52fe493ec3a368484e12180f", "cast_id": 22, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 18}, {"name": "Megan Mullally", "character": "Herself", "id": 52119, "credit_id": "54589a8c0e0a26115e001686", "cast_id": 24, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 19}, {"name": "Cheryl Cole", "character": "Herself", "id": 216321, "credit_id": "54589aa2c3a368398f0015a5", "cast_id": 25, "profile_path": "/ao4AwbBkaxYcoD8nRREpwSAWr4h.jpg", "order": 20}, {"name": "Tyce Diorio", "character": "Himself", "id": 1212446, "credit_id": "54589aafc3a368399700170a", "cast_id": 26, "profile_path": "/cyUa0eUg8erPXXdnU2wZYSg72XB.jpg", "order": 21}, {"name": "Taboo", "character": "Himself", "id": 557830, "credit_id": "54589ac80e0a26116a00155c", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Dwyane Wade", "character": "Himself", "id": 968922, "credit_id": "54589ae30e0a26116a00155f", "cast_id": 28, "profile_path": "/yAoKI84J6mjSBzCzydBJONRU3Ui.jpg", "order": 23}, {"name": "Whitney Port", "character": "Herself", "id": 1224518, "credit_id": "54589af30e0a2611580016bd", "cast_id": 29, "profile_path": null, "order": 24}, {"name": "Taylor Kowalski", "character": "J. J.", "id": 928235, "credit_id": "54589b26c3a368398f0015b4", "cast_id": 30, "profile_path": null, "order": 25}], "directors": [{"name": "Kirk Jones", "department": "Directing", "job": "Director", "credit_id": "52fe493ec3a368484e1217b5", "profile_path": "/uvQskd4gGNN2J91kUnn1lGl2W3d.jpg", "id": 64045}], "vote_average": 5.7, "runtime": 110}, "167032": {"poster_path": "/qoFfZa6b9xsr1dJwdb6SCiw2KHs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the passing of her mother, a young woman in a wheelchair since birth, is forced to deal with her sister, brother-in-law, niece and their nanny as they say their goodbyes to mother. When people start turning up dead, Nica discovers the culprit might be a strange doll she received a few days earlier.", "video": false, "id": 167032, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Curse of Chucky", "tagline": "Fear has a new home", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2230358", "adult": false, "backdrop_path": "/e95CLG02scalwpHgR0BSCUXWeE3.jpg", "production_companies": [{"name": "Universal 1440 Entertainment", "id": 17009}], "release_date": "2013-10-04", "popularity": 0.912161741097232, "original_title": "Curse of Chucky", "budget": 0, "cast": [{"name": "Brad Dourif", "character": "Chucky (Voice)", "id": 1370, "credit_id": "52fe4ca8c3a36847f8238fd5", "cast_id": 3, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 0}, {"name": "Brennan Elliott", "character": "Ian", "id": 43458, "credit_id": "52fe4ca8c3a36847f8238fd9", "cast_id": 4, "profile_path": "/7Wilyo6uHlKK4IiD3HkzJriVEaZ.jpg", "order": 1}, {"name": "A Martinez", "character": "Father Frank", "id": 78398, "credit_id": "52fe4ca8c3a36847f8238fdd", "cast_id": 5, "profile_path": "/4ihGfQ2DouHGRGAb3M5Ihu5Nw8D.jpg", "order": 2}, {"name": "Danielle Bisutti", "character": "Barb", "id": 154839, "credit_id": "52fe4ca8c3a36847f8238fe1", "cast_id": 6, "profile_path": "/PmZmuwEYgqZmETwR8rwpe4gVXK.jpg", "order": 3}, {"name": "Fiona Dourif", "character": "Nica", "id": 204468, "credit_id": "52fe4ca8c3a36847f8238fe5", "cast_id": 7, "profile_path": "/bHf4d9fITrmrNBvXfs27fSnmPCt.jpg", "order": 4}, {"name": "Chantal Quesnel", "character": "Sarah", "id": 1105418, "credit_id": "52fe4ca8c3a36847f8238fe9", "cast_id": 8, "profile_path": "/yyQNaxi0ru3u3fATv9W8pTOAT29.jpg", "order": 5}, {"name": "Ali Tataryn", "character": "US X Girl", "id": 1116281, "credit_id": "52fe4ca8c3a36847f8238fed", "cast_id": 9, "profile_path": "/xRxzASuufQ35yTMaoksau1Ose6O.jpg", "order": 6}, {"name": "Maitland McConnell", "character": "Jill", "id": 85215, "credit_id": "52fe4ca8c3a36847f8238ff1", "cast_id": 10, "profile_path": "/xUlypbK7VPYO9ZbPX6Z6ZrJIYEA.jpg", "order": 7}, {"name": "Kally Berard", "character": "Young Barb", "id": 1071199, "credit_id": "52fe4ca8c3a36847f8238ff5", "cast_id": 11, "profile_path": "/3OM0hihqaVIudm1r4R8KPQWroTn.jpg", "order": 8}, {"name": "Kyle Nobess", "character": "Young Dad", "id": 1148696, "credit_id": "52fe4ca8c3a36847f8238ff9", "cast_id": 12, "profile_path": "/sQ0KnG65OZrFaTu5pXNFnRN5c4y.jpg", "order": 9}, {"name": "Will Woytowich", "character": "Lead Fireman", "id": 48313, "credit_id": "52fe4ca8c3a36847f8238ffd", "cast_id": 13, "profile_path": "/zpZisXnw0dNErO4EIH2oNjjGcRY.jpg", "order": 10}, {"name": "Adam Hurtig", "character": "Officer Stanton", "id": 1148697, "credit_id": "52fe4ca8c3a36847f8239001", "cast_id": 14, "profile_path": "/sbOsPViyNz1C2wBI3u0o4iN4RYF.jpg", "order": 11}, {"name": "Candace Smith", "character": "Postal Worker", "id": 386938, "credit_id": "52fe4ca8c3a36847f8239005", "cast_id": 15, "profile_path": "/pz5HzcA572jjpkBBwZ7JOX1ZOuH.jpg", "order": 12}, {"name": "Jennifer Tilly", "character": "Tiffany", "id": 7906, "credit_id": "52fe4ca8c3a36847f823900d", "cast_id": 17, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 14}, {"name": "Kevin Anderson", "character": "Judge", "id": 51805, "credit_id": "53b99542c3a3685eb4005999", "cast_id": 18, "profile_path": "/roCItER7LbrJJvAV1Fku3jG9g8k.jpg", "order": 15}], "directors": [{"name": "Don Mancini", "department": "Directing", "job": "Director", "credit_id": "52fe4ca8c3a36847f8238fcb", "profile_path": null, "id": 65677}], "vote_average": 5.5, "runtime": 97}, "2770": {"poster_path": "/q4LNgUnRfltxzp3gf1MAGiK5LhV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 287553595, "overview": "The whole gang are back and as close as ever. They decide to get even closer by spending the summer together at a beach house. They decide to hold the biggest party ever to be seen, even if the preparation doesn't always go to plan. Especially when Stifler, Finch and Jim become more close to each other than they ever want to be and when Jim mistakes super glue for lubricant...", "video": false, "id": 2770, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "American Pie 2", "tagline": "This Summer It's All About Sticking Together.", "vote_count": 373, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0252866", "adult": false, "backdrop_path": "/1C1d3Tpesm8Vn3BRqsQZt0LfZcG.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Liveplanet", "id": 2200}, {"name": "Zide-Perry Productions", "id": 3169}], "release_date": "2001-08-06", "popularity": 1.10689042184131, "original_title": "American Pie 2", "budget": 30000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe436cc3a36847f8053085", "cast_id": 1, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Thomas Ian Nicholas", "character": "Kevin Myers", "id": 21403, "credit_id": "52fe436cc3a36847f8053089", "cast_id": 2, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 1}, {"name": "Chris Klein", "character": "Chris 'Oz' Ostreicher", "id": 21594, "credit_id": "52fe436cc3a36847f805308d", "cast_id": 3, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 2}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe436cc3a36847f8053091", "cast_id": 4, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 3}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe436cc3a36847f8053095", "cast_id": 5, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 4}, {"name": "Shannon Elizabeth", "character": "Nadia", "id": 21596, "credit_id": "52fe436cc3a36847f8053099", "cast_id": 6, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 5}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty", "id": 21595, "credit_id": "52fe436cc3a36847f80530a9", "cast_id": 9, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 6}, {"name": "Natasha Lyonne", "character": "Jessica", "id": 10871, "credit_id": "52fe436cc3a36847f80530ad", "cast_id": 11, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 7}, {"name": "Tara Reid", "character": "Victoria 'Vicky' Lathum", "id": 1234, "credit_id": "52fe436cc3a36847f80530b1", "cast_id": 12, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 8}, {"name": "Mena Suvari", "character": "Heather", "id": 8211, "credit_id": "52fe436cc3a36847f80530b5", "cast_id": 13, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 9}, {"name": "Chris Owen", "character": "Chuck Sherman", "id": 26999, "credit_id": "52fe436cc3a36847f80530b9", "cast_id": 14, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 10}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe436cc3a36847f80530bd", "cast_id": 15, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 11}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "52fe436cc3a36847f80530c1", "cast_id": 16, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 12}, {"name": "Denise Faye", "character": "Danielle", "id": 17641, "credit_id": "52fe436cc3a36847f80530c5", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Lisa Arturo", "character": "Amber", "id": 55619, "credit_id": "52fe436cc3a36847f80530c9", "cast_id": 18, "profile_path": "/osZvDdZKMMoLsiVaq3igLwpNhQ5.jpg", "order": 14}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "53bc2a190e0a26197100323d", "cast_id": 23, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 15}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc2a2d0e0a26196b0031b1", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Eli Marienthal", "character": "Matt Stifler", "id": 116027, "credit_id": "53bc2a800e0a261978003304", "cast_id": 25, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 17}, {"name": "Casey Affleck", "character": "Tom Myers", "id": 1893, "credit_id": "53bc2a9d0e0a26197c00324e", "cast_id": 26, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 18}, {"name": "Tsianina Joelson", "character": "Amy", "id": 168014, "credit_id": "52fe436cc3a36847f80530d5", "cast_id": 21, "profile_path": "/vXKULq7hYnxRJuyRXfvI6BXhFsu.jpg", "order": 19}, {"name": "Lacey Beeman", "character": "Amy's Friend", "id": 168897, "credit_id": "52fe436cc3a36847f80530d1", "cast_id": 20, "profile_path": "/h8coFumNNoCK6wJ0XYXSeO6Q6C7.jpg", "order": 20}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "52fe436cc3a36847f80530cd", "cast_id": 19, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 21}], "directors": [{"name": "J.B. Rogers", "department": "Directing", "job": "Director", "credit_id": "52fe436cc3a36847f805309f", "profile_path": "/rL2r7j20Aq2JRWeDpTpk35YxUzb.jpg", "id": 7409}], "vote_average": 5.9, "runtime": 108}, "307663": {"poster_path": "/bBhYuiSxZClVlaz2kT73oT31fcp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Julian Michaels (Bruce Willis) has designed the ultimate resort: VICE, where anything goes and the customers can play out their wildest fantasies with artificial inhabitants who look, think and feel like humans. When an artificial (Ambyr Childers) becomes self-aware and escapes, she finds herself caught in the crossfire between Julian's mercenaries and a cop (Thomas Jane) who is hell-bent on shutting down Vice, and stopping the violence once and for all.", "video": false, "id": 307663, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Vice", "tagline": "Where the future is your past.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3480796", "adult": false, "backdrop_path": "/sXFad2FfZGyAoD97omqEs4q1VI7.jpg", "production_companies": [{"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "K5 International", "id": 6715}, {"name": "Aperture Entertainment", "id": 33832}], "release_date": "2015-01-16", "popularity": 4.40131723823802, "original_title": "Vice", "budget": 15000000, "cast": [{"name": "Ambyr Childers", "character": "Kelly", "id": 75330, "credit_id": "547ee63a92514124af000e0a", "cast_id": 2, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 0}, {"name": "Thomas Jane", "character": "Roy", "id": 11155, "credit_id": "547ee62492514124b3000e9d", "cast_id": 1, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 1}, {"name": "Bruce Willis", "character": "Julian", "id": 62, "credit_id": "547ee60ec3a368396c000fbd", "cast_id": 0, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 2}, {"name": "Bryan Greenberg", "character": "Evan", "id": 23821, "credit_id": "547ee6a892514124b3000eb1", "cast_id": 3, "profile_path": "/4BtHlLIWrhQy7ISd4rEBDomduxd.jpg", "order": 3}, {"name": "Johnathon Schaech", "character": "Chris", "id": 51670, "credit_id": "54d879a892514142410003b9", "cast_id": 7, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 4}, {"name": "Ryan O'Nan", "character": "Det. Matthews", "id": 142192, "credit_id": "54d879bbc3a3683b8f007b8b", "cast_id": 8, "profile_path": "/sXZOZiVoAm4kKR437AoLECfxBNi.jpg", "order": 5}, {"name": "Charlotte Kirk", "character": "Melissa", "id": 1352662, "credit_id": "54d879d89251413cd000036b", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Colin Egglesfield", "character": "Reiner", "id": 83225, "credit_id": "54d87a1bc3a3683b89007848", "cast_id": 10, "profile_path": "/ggHUyXwcrxFjSFKwSJOFvV1b0be.jpg", "order": 7}, {"name": "Tyler J. Olson", "character": "Steve", "id": 1388479, "credit_id": "54d87a449251413cd000038d", "cast_id": 11, "profile_path": "/LFjGtC3gg0XHBRyEZGk8DR5CTq.jpg", "order": 8}, {"name": "Don Harvey", "character": "Kasansky", "id": 1280, "credit_id": "54d87a589251416ba8006fa8", "cast_id": 12, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 9}, {"name": "Brett Granstaff", "character": "James", "id": 1438026, "credit_id": "55007595c3a3685b9b0017e5", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "David Gordon", "character": "Mitch", "id": 1177283, "credit_id": "550075d99251413da100170a", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Cameron Brexler", "character": "Keith", "id": 1438027, "credit_id": "550075edc3a36826b900054b", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jesse Pruett", "character": "Officer Pullman", "id": 139197, "credit_id": "550075fc9251413da5001737", "cast_id": 16, "profile_path": "/8VBlaffStPHz89oXnki14Gv2Yw6.jpg", "order": 13}, {"name": "Lydia Hull", "character": "Stacey", "id": 1042684, "credit_id": "55007630c3a3685b9b0017f0", "cast_id": 17, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 14}], "directors": [{"name": "Brian A Miller", "department": "Directing", "job": "Director", "credit_id": "547ee6edc3a368396f001093", "profile_path": null, "id": 1024823}], "vote_average": 3.9, "runtime": 96}, "10731": {"poster_path": "/bCWpxGGcP9DsCLwfNpnfcl1vLk8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.", "video": false, "id": 10731, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Client", "tagline": "A District Attorney Out For A Conviction. A New Lawyer Out Of Her League. A Young Boy Who Knew Too Much.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109446", "adult": false, "backdrop_path": "/cmJeM2aXBHWIsftfb7dz3ksjyDV.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1994-07-20", "popularity": 0.792898219259574, "original_title": "The Client", "budget": 45000000, "cast": [{"name": "Susan Sarandon", "character": "Regina \"Reggie\" Love", "id": 4038, "credit_id": "52fe43ab9251416c75019761", "cast_id": 11, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "'Reverend' Roy Foltrigg", "id": 2176, "credit_id": "52fe43ab9251416c75019765", "cast_id": 12, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Mary-Louise Parker", "character": "Dianne Sway", "id": 18248, "credit_id": "52fe43ab9251416c75019769", "cast_id": 13, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 2}, {"name": "Anthony LaPaglia", "character": "Barry 'The Blade' Muldano", "id": 57829, "credit_id": "52fe43ab9251416c7501976d", "cast_id": 14, "profile_path": "/yuvOy4wOHDgWgQaHMyJAS8qfqoZ.jpg", "order": 3}, {"name": "Bradley Whitford", "character": "Thomas Fink", "id": 11367, "credit_id": "52fe43ab9251416c75019777", "cast_id": 16, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 4}, {"name": "Will Patton", "character": "Sergeant Hardy", "id": 883, "credit_id": "52fe43ab9251416c7501977b", "cast_id": 17, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 5}, {"name": "Brad Renfro", "character": "Mark Sway", "id": 51214, "credit_id": "52fe43ab9251416c7501977f", "cast_id": 18, "profile_path": "/eUYQow1G3oz9r0JOQie8yKaeV4l.jpg", "order": 6}, {"name": "Anthony Edwards", "character": "Clint Von Hooser", "id": 11085, "credit_id": "52fe43ab9251416c75019783", "cast_id": 19, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 7}, {"name": "J. T. Walsh", "character": "Jason McThune", "id": 22131, "credit_id": "52fe43ab9251416c75019787", "cast_id": 20, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 8}, {"name": "Anthony Heald", "character": "Larry Trumann", "id": 16293, "credit_id": "52fe43ab9251416c7501978b", "cast_id": 21, "profile_path": "/nRXLwMuuv5nUbEz2sFLtEU4zUYg.jpg", "order": 9}, {"name": "Kim Coates", "character": "Paul Gronke", "id": 8335, "credit_id": "52fe43ab9251416c7501978f", "cast_id": 22, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 10}, {"name": "Kimberly Scott", "character": "Doreen", "id": 1984, "credit_id": "52fe43ab9251416c75019793", "cast_id": 23, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 11}, {"name": "David Speck", "character": "Ricky Sway", "id": 268179, "credit_id": "52fe43ab9251416c75019797", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "William H. Macy", "character": "Dr. Greenway", "id": 3905, "credit_id": "52fe43ab9251416c7501979b", "cast_id": 25, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 13}, {"name": "Rebecca Jernigan", "character": "Emergency Room Nurse", "id": 1158447, "credit_id": "52fe43ab9251416c7501979f", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe43ab9251416c7501972d", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.6, "runtime": 119}, "35552": {"poster_path": "/ldAmE8LsRGNXlI1lUEbPjbC83o9.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "An adventure set in the early part of the 20th century, focused on a popular novelist and her dealings with would-be suitors, the cops, monsters, and other distractions.", "video": false, "id": 35552, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "The Extraordinary Adventures of Ad\u00e8le Blanc-Sec", "tagline": "", "vote_count": 74, "homepage": "http://www.adeleblancsec-lefilm.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1179025", "adult": false, "backdrop_path": "/yZgIHV8MrJtNV1ay2PemdboqSnT.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}], "release_date": "2010-04-14", "popularity": 0.91723164365629, "original_title": "Les Aventures extraordinaires d'Ad\u00e8le Blanc-Sec", "budget": 35000000, "cast": [{"name": "Louise Bourgoin", "character": "Ad\u00e8le Blanc-Sec", "id": 78216, "credit_id": "52fe45a89251416c91039d91", "cast_id": 8, "profile_path": "/sTqanaZbDPV0GkZTy1lrUswpDuc.jpg", "order": 0}, {"name": "Mathieu Amalric", "character": "Dieuleveult", "id": 8789, "credit_id": "52fe45a89251416c91039d95", "cast_id": 9, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 1}, {"name": "Gilles Lellouche", "character": "Inspecteur Caponi", "id": 54291, "credit_id": "52fe45a89251416c91039d99", "cast_id": 10, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 2}, {"name": "Philippe Nahon", "character": "Professeur M\u00e9nard", "id": 5444, "credit_id": "52fe45a89251416c91039d9d", "cast_id": 11, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 3}, {"name": "Gr\u00e9gory Ragot", "character": "Assistant Bertrand", "id": 114365, "credit_id": "52fe45a89251416c91039da1", "cast_id": 12, "profile_path": "/312QP3rNWBKOIvXYI5d7qp5hYE.jpg", "order": 4}, {"name": "Jean-Paul Rouve", "character": "Justin de Saint-Hubert", "id": 16922, "credit_id": "52fe45a89251416c91039da5", "cast_id": 13, "profile_path": "/iHOZd4VO0dZ2H3ADCJhUk2BmkOd.jpg", "order": 5}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe45a89251416c91039d69", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.7, "runtime": 105}, "2787": {"poster_path": "/u6oDHb3z0uZNQHNdJwHJAW1jD4q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53187659, "overview": "After crash-landing on a seemingly lifeless planet, pilot Carolyn Fry and the remaining passengers -- including murderer Riddick and policeman William J. Johns -- encounter an army of creatures whose only weakness is light. As night approaches and the aliens emerge, the passengers must rely on Riddick's powerful night vision to lead them through the darkness.", "video": false, "id": 2787, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Pitch Black", "tagline": "Don't be afraid of the dark. Be afraid of what's in the dark", "vote_count": 810, "homepage": "http://www.pitchblack.com/", "belongs_to_collection": {"backdrop_path": "/xb5zyHecWA7UACdiNPXDA3m5HSY.jpg", "poster_path": "/4R2zrqk9KzgxU9UDH3yUUsENXR.jpg", "id": 2794, "name": "The Chronicles of Riddick Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134847", "adult": false, "backdrop_path": "/yc0cEEZ9OO6ydyYmCEfY90Q9jII.jpg", "production_companies": [{"name": "Interscope Communications", "id": 10201}], "release_date": "2000-02-18", "popularity": 0.905551213010835, "original_title": "Pitch Black", "budget": 23000000, "cast": [{"name": "Vin Diesel", "character": "Richard B. Riddick", "id": 12835, "credit_id": "52fe436dc3a36847f80535fd", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Carolyn Fry", "id": 8329, "credit_id": "52fe436dc3a36847f8053601", "cast_id": 2, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Cole Hauser", "character": "William J. Johns", "id": 6614, "credit_id": "52fe436dc3a36847f8053605", "cast_id": 3, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 2}, {"name": "Rhiana Griffith", "character": "Jack / Jackie", "id": 28098, "credit_id": "52fe436dc3a36847f8053609", "cast_id": 4, "profile_path": "/2aHeZDmtcqdN2cfAZDlhnEW7rQ3.jpg", "order": 3}, {"name": "Lewis Fitz-Gerald", "character": "Paris P. Ogilvie", "id": 28099, "credit_id": "52fe436dc3a36847f805360d", "cast_id": 5, "profile_path": "/o0XcTwIcOVY1HHiKouvpx363PXu.jpg", "order": 4}, {"name": "Claudia Black", "character": "Shazza", "id": 26054, "credit_id": "52fe436dc3a36847f8053611", "cast_id": 6, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 5}, {"name": "Simon Burke", "character": "Greg Owens", "id": 28100, "credit_id": "52fe436dc3a36847f8053615", "cast_id": 7, "profile_path": "/f0NpWdQevKUbndxBNngFnMHwcMY.jpg", "order": 6}, {"name": "Keith David", "character": "Abu \"Imam\" al-Walid", "id": 65827, "credit_id": "52fe436dc3a36847f8053619", "cast_id": 8, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "John Moore", "character": "John 'Zeke' Ezekiel", "id": 12028, "credit_id": "53fc98000e0a267a7800a81f", "cast_id": 21, "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "order": 8}, {"name": "Les Chantery", "character": "Suleiman", "id": 230602, "credit_id": "53fc98200e0a267a6c00acc0", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Sam Sari", "character": "Hassan", "id": 1357177, "credit_id": "53fc98390e0a267a6600aabc", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Firass Dirani", "character": "Ali", "id": 56450, "credit_id": "53fc98490e0a267a6f00ac8e", "cast_id": 25, "profile_path": "/dqIE2ckazhjMc5ETNCPgn8B4Mr9.jpg", "order": 12}, {"name": "Ric Anderson", "character": "Total Stranger", "id": 1357178, "credit_id": "53fc98670e0a267a7200aca5", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Vic Wilson", "character": "Captain Tom Mitchell", "id": 1357179, "credit_id": "53fc98770e0a267a6900acd2", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Angela Moore", "character": "Dead Crew Member", "id": 1357180, "credit_id": "53fc98840e0a267a7200acaa", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f805361f", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}, {"name": "Carolynne Cunningham", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f8053637", "profile_path": null, "id": 3506}], "vote_average": 6.6, "runtime": 109}, "2789": {"poster_path": "/tGNj5xxw5td0SBih1UmuqkHZ8ga.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115772733, "overview": "Five years after the events in sci-fi film Pitch Black, escaped convict Riddick finds himself caught in the middle of a galactic war waged by Lord Marshal, the leader of a sect called the Necromongers. Riddick is charged with stopping the Necromonger army, all while rescuing an old friend from a prison planet and evading capture by bounty hunters.", "video": false, "id": 2789, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Chronicles of Riddick", "tagline": "All the power in the universe can't change destiny.", "vote_count": 823, "homepage": "http://www.thechroniclesofriddick.com/", "belongs_to_collection": {"backdrop_path": "/xb5zyHecWA7UACdiNPXDA3m5HSY.jpg", "poster_path": "/4R2zrqk9KzgxU9UDH3yUUsENXR.jpg", "id": 2794, "name": "The Chronicles of Riddick Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0296572", "adult": false, "backdrop_path": "/AoLVfcYPziZZQbAFQuKoceHreXD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Radar Pictures Inc.", "id": 350}, {"name": "One Race Productions", "id": 1225}, {"name": "Primal Foe Productions", "id": 11443}], "release_date": "2004-06-11", "popularity": 0.786101078293155, "original_title": "The Chronicles of Riddick", "budget": 105000000, "cast": [{"name": "Vin Diesel", "character": "Richard B. Riddick", "id": 12835, "credit_id": "52fe436dc3a36847f805374d", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Christina Cox", "character": "Eve Logan", "id": 28110, "credit_id": "52fe436dc3a36847f8053765", "cast_id": 8, "profile_path": "/qkbxOma6tBghX6sYJW0avfYaimV.jpg", "order": 1}, {"name": "Colm Feore", "character": "Lord Marshal", "id": 10132, "credit_id": "52fe436dc3a36847f8053751", "cast_id": 2, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 2}, {"name": "Karl Urban", "character": "Vaako", "id": 1372, "credit_id": "52fe436dc3a36847f8053755", "cast_id": 3, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 3}, {"name": "Judi Dench", "character": "Aereon", "id": 5309, "credit_id": "52fe436dc3a36847f8053793", "cast_id": 16, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Alexa Davalos", "character": "Kyra", "id": 28109, "credit_id": "52fe436dc3a36847f8053759", "cast_id": 5, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 5}, {"name": "Nick Chinlund", "character": "Toombs", "id": 18461, "credit_id": "52fe436dc3a36847f805375d", "cast_id": 6, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 6}, {"name": "Keith David", "character": "Abu \"Imam\" al-Walid", "id": 65827, "credit_id": "52fe436dc3a36847f8053761", "cast_id": 7, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "Thandie Newton", "character": "Dame Vaako", "id": 9030, "credit_id": "52fe436dc3a36847f8053797", "cast_id": 17, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 8}, {"name": "Linus Roache", "character": "Purifier", "id": 3900, "credit_id": "52fe436dc3a36847f805379b", "cast_id": 18, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 9}, {"name": "Yorick van Wageningen", "character": "The Guv", "id": 31387, "credit_id": "52fe436dc3a36847f805379f", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Mark Gibbon", "character": "Irgun", "id": 118459, "credit_id": "52fe436dc3a36847f80537a3", "cast_id": 20, "profile_path": "/4zbhBlYulslr2SJ7SMcm3xPtLAU.jpg", "order": 11}, {"name": "Roger R. Cross", "character": "Toal", "id": 25877, "credit_id": "52fe436dc3a36847f80537a7", "cast_id": 21, "profile_path": "/kObbLStIBSrYJ8iFCp7LB9NMsh8.jpg", "order": 12}, {"name": "Terry Chen", "character": "Merc Pilot", "id": 11677, "credit_id": "52fe436dc3a36847f80537ab", "cast_id": 22, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 13}, {"name": "Nigel Vonas", "character": "Merc", "id": 172880, "credit_id": "52fe436dc3a36847f80537af", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Alexis Llewellyn", "character": "Ziza", "id": 169780, "credit_id": "54ae67a592514169e00018d1", "cast_id": 154, "profile_path": "/hAmPonbTxGoYFEwz7nNHt5ca0Lg.jpg", "order": 15}, {"name": "Charles Zuckermann", "character": "Scales", "id": 90726, "credit_id": "54ae67d7c3a3683fba0013b1", "cast_id": 155, "profile_path": null, "order": 16}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f805376b", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}], "vote_average": 6.3, "runtime": 119}, "10982": {"poster_path": "/cx7CmTKBa5sgZqLp6680CdMrZc1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51053787, "overview": "The recipes of candies of the goody shops have been stolen by the Goody Bandit, and many animals are out of business. While the police are chasing the criminal, there is a mess at Granny's house evolving Little Red Hiding Hood, The Wolf, The Woodsman and Granny, disturbing the peace in the forest and they are all arrested by the impatient Chief Grizzly.", "video": false, "id": 10982, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Hoodwinked!", "tagline": "Armed And Dangerously Dumb.", "vote_count": 128, "homepage": "http://www.hoodwinkedthemovie.com", "belongs_to_collection": {"backdrop_path": "/sIn465LgZqpxWnNjXSmpygpRnl3.jpg", "poster_path": "/srNJ36UACIY88HwPAM7ugBpeWOE.jpg", "id": 87255, "name": "Hoodwinked! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443536", "adult": false, "backdrop_path": "/4KWtkmddn9bu537mU2WRsmJuoBe.jpg", "production_companies": [{"name": "Blue Yonder Films", "id": 49126}, {"name": "The Weinstein Company", "id": 308}, {"name": "Kanbar Entertainment", "id": 7580}], "release_date": "2005-12-16", "popularity": 1.36874356855621, "original_title": "Hoodwinked!", "budget": 15000000, "cast": [{"name": "Anne Hathaway", "character": "Red (voice)", "id": 1813, "credit_id": "52fe43dc9251416c75020fa3", "cast_id": 1, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Glenn Close", "character": "Granny (voice)", "id": 515, "credit_id": "52fe43dc9251416c75020fa7", "cast_id": 2, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 1}, {"name": "James Belushi", "character": "The Woodsman (voice)", "id": 26485, "credit_id": "52fe43dc9251416c75020fab", "cast_id": 3, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 2}, {"name": "Patrick Warburton", "character": "The Wolf (voice)", "id": 9657, "credit_id": "52fe43dc9251416c75020faf", "cast_id": 4, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 3}, {"name": "Anthony Anderson", "character": "Detective Bill Stork (voice)", "id": 18471, "credit_id": "52fe43dc9251416c75021001", "cast_id": 20, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 4}, {"name": "David Ogden Stiers", "character": "Nicky Flippers (voice)", "id": 28010, "credit_id": "52fe43dc9251416c75021005", "cast_id": 21, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 5}, {"name": "Xzibit", "character": "Chief Grizzly (voice)", "id": 336, "credit_id": "52fe43dc9251416c75021009", "cast_id": 22, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 6}, {"name": "Chazz Palminteri", "character": "Woolworth (voice)", "id": 9046, "credit_id": "52fe43dc9251416c7502100d", "cast_id": 23, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 7}, {"name": "Andy Dick", "character": "Boingo (voice)", "id": 43120, "credit_id": "52fe43dc9251416c75021011", "cast_id": 24, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 8}, {"name": "Cory Edwards", "character": "Twitchy (voice)", "id": 61373, "credit_id": "52fe43dc9251416c75021015", "cast_id": 25, "profile_path": "/8tjra5RWTMHjYMRKP61P500TmG8.jpg", "order": 9}, {"name": "Benjy Gaither", "character": "Japeth the Goat (voice)", "id": 427964, "credit_id": "52fe43dc9251416c75021019", "cast_id": 26, "profile_path": "/174Q2QaK2HI94il04MegCSSnVi5.jpg", "order": 10}, {"name": "Ken Marino", "character": "Raccoon Jerry (voice)", "id": 77089, "credit_id": "52fe43dc9251416c7502101d", "cast_id": 27, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 11}, {"name": "Tom Kenny", "character": "Tommy (voice)", "id": 78798, "credit_id": "52fe43dc9251416c75021021", "cast_id": 28, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 12}, {"name": "Preston Stutzman", "character": "Timmy (voice)", "id": 61379, "credit_id": "52fe43dc9251416c75021025", "cast_id": 29, "profile_path": "/ylJAq8y7Ic445Gknns2snwXLj7K.jpg", "order": 13}, {"name": "Tony Leech", "character": "Glen (voice)", "id": 61372, "credit_id": "52fe43dc9251416c75021029", "cast_id": 30, "profile_path": "/hDywC1mqBpJgXWbUlOpx6w7XSSL.jpg", "order": 14}, {"name": "Kang Hye-jung", "character": "Red (Korean dubbing Voice)", "id": 1299317, "credit_id": "53c619fc0e0a267fe5001c88", "cast_id": 31, "profile_path": "/lF4wt0m522K79tgy18ykgDtmsAO.jpg", "order": 15}], "directors": [{"name": "Cory Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe43dc9251416c75020fb5", "profile_path": "/8tjra5RWTMHjYMRKP61P500TmG8.jpg", "id": 61373}, {"name": "Todd Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe43dc9251416c75020fbb", "profile_path": null, "id": 61371}, {"name": "Tony Leech", "department": "Directing", "job": "Director", "credit_id": "52fe43dc9251416c75020fc7", "profile_path": "/hDywC1mqBpJgXWbUlOpx6w7XSSL.jpg", "id": 61372}], "vote_average": 6.1, "runtime": 80}, "2791": {"poster_path": "/ewqSDOOyjyODmyuVuxHmKGYKZR9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After their narrow escape at the end of \"Pitch Black,\" Riddick, Jack and the Imam find themselves at the mercy of a madwoman who intends to entomb Riddick forever as part of a twisted art exhibit. With little but a shiv and Riddick's innate viciousness to aid them, Riddick and his allies must find a way to escape from their captor and her band of mercenaries.", "video": false, "id": 2791, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Chronicles of Riddick: Dark Fury", "tagline": "", "vote_count": 93, "homepage": "http://www.thechroniclesofriddick.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0407658", "adult": false, "backdrop_path": "/jrZbDux6c99QxpxHqnLS6W8Jffc.jpg", "production_companies": [{"name": "Universal Home Video", "id": 3487}, {"name": "Universal Pictures", "id": 33}], "release_date": "2004-06-15", "popularity": 0.0807029070205403, "original_title": "The Chronicles of Riddick: Dark Fury", "budget": 0, "cast": [{"name": "Vin Diesel", "character": "Richard B. Riddick (Voice)", "id": 12835, "credit_id": "52fe436dc3a36847f8053867", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Rhiana Griffith", "character": "Jack (Voice)", "id": 28098, "credit_id": "52fe436dc3a36847f805386b", "cast_id": 2, "profile_path": "/2aHeZDmtcqdN2cfAZDlhnEW7rQ3.jpg", "order": 1}, {"name": "Keith David", "character": "Abu al-Walid (Voice)", "id": 65827, "credit_id": "52fe436dc3a36847f805386f", "cast_id": 3, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 2}, {"name": "Nick Chinlund", "character": "Toombs (Voice)", "id": 18461, "credit_id": "52fe436dc3a36847f8053873", "cast_id": 4, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 3}, {"name": "Dwight Schultz", "character": "Skiff A.I. (Voice)", "id": 28248, "credit_id": "52fe436dc3a36847f8053877", "cast_id": 5, "profile_path": "/lvhnIeUHMUvjfxRS2xWeF6xbsJc.jpg", "order": 4}], "directors": [{"name": "Peter Chung", "department": "Directing", "job": "Director", "credit_id": "52fe436dc3a36847f805387d", "profile_path": "/oLqG2MqnrQgSG0jQzzUVMU8gyz5.jpg", "id": 28249}], "vote_average": 5.7, "runtime": 34}, "142061": {"poster_path": "/wPeorCnD9MRR2S9Dzh4OpIgNLiv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.", "video": false, "id": 142061, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}], "title": "Batman: The Dark Knight Returns, Part 2", "tagline": "Justice Returns... Vengeance Returns... Redemption Comes to Gotham", "vote_count": 156, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/9OMTLs9efR8UYLoAD7JhGbmEurm.jpg", "id": 248534, "name": "Batman: The Dark Knight Returns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2166834", "adult": false, "backdrop_path": "/wDWPuqhgZ0INvqHsyLa470xeabT.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Premiere", "id": 4811}, {"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2013-01-29", "popularity": 0.916914079605683, "original_title": "Batman: The Dark Knight Returns, Part 2", "budget": 3500000, "cast": [{"name": "Peter Weller", "character": "Batman / Bruce Wayne", "id": 27811, "credit_id": "52fe4acb9251416c750ee4f9", "cast_id": 3, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Ariel Winter", "character": "Robin / Carrie Kelley", "id": 42160, "credit_id": "52fe4acb9251416c750ee4fd", "cast_id": 4, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 1}, {"name": "David Selby", "character": "Commissioner Gordon", "id": 56930, "credit_id": "52fe4acb9251416c750ee501", "cast_id": 5, "profile_path": "/31FZf0TdcYm53S9R9q1KWNNxVaH.jpg", "order": 2}, {"name": "Michael Emerson", "character": "Joker", "id": 2136, "credit_id": "52fe4acb9251416c750ee505", "cast_id": 7, "profile_path": "/tIiidPaAZC6YDvy9Gc1kzrLmfok.jpg", "order": 3}, {"name": "Mark Valley", "character": "Clark Kent / Superman", "id": 136530, "credit_id": "52fe4acb9251416c750ee519", "cast_id": 12, "profile_path": "/bWCr7EhKM0aB19fONmeGcetMlQa.jpg", "order": 4}, {"name": "Grey DeLisle", "character": "Anchor Carla", "id": 15761, "credit_id": "52fe4acb9251416c750ee509", "cast_id": 8, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 5}, {"name": "Frank Welker", "character": "Mayor Stevenson", "id": 15831, "credit_id": "52fe4acb9251416c750ee50d", "cast_id": 9, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 6}, {"name": "Dee Bradley Baker", "character": "Don", "id": 23680, "credit_id": "52fe4acb9251416c750ee511", "cast_id": 10, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 7}, {"name": "Michael McKean", "character": "Dr. Bartholomew Wolper", "id": 21731, "credit_id": "52fe4acb9251416c750ee515", "cast_id": 11, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 8}, {"name": "James Patrick Stuart", "character": "Murray", "id": 105641, "credit_id": "52fe4acb9251416c750ee521", "cast_id": 14, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 9}, {"name": "Maria Canals-Barrera", "character": "Ellen Yindel", "id": 85759, "credit_id": "52fe4acb9251416c750ee529", "cast_id": 16, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 10}, {"name": "Gwendoline Yeo", "character": "Lola Chong", "id": 46774, "credit_id": "52fe4acb9251416c750ee531", "cast_id": 18, "profile_path": "/mTd2DqE4zDcfLDBcy6DdT6nZKyv.jpg", "order": 12}, {"name": "Danny Jacobs", "character": "Merkel", "id": 62389, "credit_id": "52fe4acb9251416c750ee535", "cast_id": 19, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 13}, {"name": "Townsend Coleman", "character": "Morrie", "id": 35035, "credit_id": "52fe4acb9251416c750ee539", "cast_id": 20, "profile_path": "/j7PvxQ7XuOQc1ggSRHWRP6CB8CU.jpg", "order": 14}, {"name": "Michael A. Jackson", "character": "Alfred Pennyworth", "id": 159572, "credit_id": "52fe4acb9251416c750ee565", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Bruce Timm", "character": "Hydrant Fireman (voice)", "id": 34934, "credit_id": "52fe4acb9251416c750ee54f", "cast_id": 25, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 16}, {"name": "Tress MacNeille", "character": "Selina Kyle / Bruno / Old Woman (voice)", "id": 34983, "credit_id": "52fe4acb9251416c750ee553", "cast_id": 26, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 17}, {"name": "Paget Brewster", "character": "Lana Lang (voice)", "id": 15423, "credit_id": "52fe4acb9251416c750ee557", "cast_id": 27, "profile_path": "/rnOb1bTjYVSj868mXNWJoQYq8Rn.jpg", "order": 18}, {"name": "Gary Anthony Williams", "character": "Anchor Bill (voice)", "id": 54043, "credit_id": "549bae68c3a3682f230030cd", "cast_id": 33, "profile_path": "/2aS1bHnkEnQErbnJl8ZzQQJSzBM.jpg", "order": 19}, {"name": "Conan O'Brien", "character": "David Endocrine", "id": 81200, "credit_id": "53b4fa950e0a2676d300196a", "cast_id": 31, "profile_path": "/qADVUyXUC8hVbVNQLpf4a6xGiA7.jpg", "order": 20}, {"name": "Robin Atkin Downes", "character": "Oliver Queen", "id": 130081, "credit_id": "54784bf2c3a3685e7e000634", "cast_id": 32, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 21}, {"name": "Yuri Lowenthal", "character": "", "id": 127387, "credit_id": "54e73228c3a3681fec000ffc", "cast_id": 34, "profile_path": "/d5vbYEkrPYAiVdTee8e4xCm7Fg1.jpg", "order": 22}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4acb9251416c750ee561", "profile_path": null, "id": 105643}], "vote_average": 7.8, "runtime": 78}, "2800": {"poster_path": "/6Hj5mFf1nv6gsYhGpz0xetPGYbg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88933562, "overview": "Jennifer Aniston portrays Sarah Huttinger, whose return home with her fiance convinces her that the sedate, proper, country-club lifestyle of her family isn't for her, and that maybe the Huttinger family isn't even hers. Join Sarah as she uncovers secrets that suggest the Huttingers are neither sedate nor proper. The story is rumor. The laughs are real!", "video": false, "id": 2800, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Rumor Has It...", "tagline": "Based on a true rumor.", "vote_count": 60, "homepage": "http://rumorhasitmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398375", "adult": false, "backdrop_path": "/dTenIZe8F2JlKCfFBs59qWeZ0t5.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2005-12-25", "popularity": 0.473493102019322, "original_title": "Rumor Has It...", "budget": 0, "cast": [{"name": "Jennifer Aniston", "character": "Sarah Huttinger", "id": 4491, "credit_id": "52fe436ec3a36847f8053ab1", "cast_id": 9, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Kevin Costner", "character": "Beau Burroughs", "id": 1269, "credit_id": "52fe436ec3a36847f8053ab5", "cast_id": 10, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 1}, {"name": "Shirley MacLaine", "character": "Katharine Richelieu", "id": 4090, "credit_id": "52fe436ec3a36847f8053ab9", "cast_id": 11, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 2}, {"name": "Mark Ruffalo", "character": "Jeff Daly", "id": 103, "credit_id": "52fe436ec3a36847f8053abd", "cast_id": 12, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Earl Huttinger", "id": 28633, "credit_id": "52fe436ec3a36847f8053ac1", "cast_id": 13, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Roger McManus", "id": 4443, "credit_id": "52fe436ec3a36847f8053ac5", "cast_id": 14, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "Mena Suvari", "character": "Annie Huttinger", "id": 8211, "credit_id": "52fe436ec3a36847f8053ac9", "cast_id": 15, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 6}, {"name": "Steve Sandvoss", "character": "Scott", "id": 28634, "credit_id": "52fe436ec3a36847f8053acd", "cast_id": 16, "profile_path": "/2GrHYFPuwEcSER7BPbHLcCFKkxs.jpg", "order": 7}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe436ec3a36847f8053a83", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 5.1, "runtime": 97}, "10024": {"poster_path": "/rViNhZ10YdEmuis2g5wkxcEUJsA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49200230, "overview": "Sara and Brian live an idyllic life with their young son and daughter. But their family is rocked by sudden, heartbreaking news that forces them to make a difficult and unorthodox choice in order to save their baby girl's life. The parents' desperate decision raises both ethical and moral questions and rips away at the foundation of their relationship. Their actions ultimately set off a court case that threatens to tear the family apart, while revealing surprising truths that challenge everyone's perceptions of love and loyalty and give new meaning to the definition of healing.", "video": false, "id": 10024, "genres": [{"id": 18, "name": "Drama"}], "title": "My Sister's Keeper", "tagline": "Based on the Best Selling Novel", "vote_count": 116, "homepage": "http://www.mysisterskeepermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hr", "name": "Hrvatski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1078588", "adult": false, "backdrop_path": "/jmIEKbkqPbZPSwT6AGBxCvnkRZI.jpg", "production_companies": [{"name": "Mark Johnson Productions", "id": 2604}, {"name": "Gran Via Productions", "id": 2605}, {"name": "Curmudgeon Films", "id": 12029}], "release_date": "2009-06-26", "popularity": 1.25726661018295, "original_title": "My Sister's Keeper", "budget": 30000000, "cast": [{"name": "Cameron Diaz", "character": "Sara Fitzgerald", "id": 6941, "credit_id": "52fe430a9251416c750011fd", "cast_id": 2, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Campbell Alexander", "id": 7447, "credit_id": "52fe430a9251416c75001201", "cast_id": 3, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Abigail Breslin", "character": "Andromeda Fitzgerald", "id": 17140, "credit_id": "52fe430a9251416c75001205", "cast_id": 4, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Judge De Salvo", "id": 3234, "credit_id": "52fe430a9251416c75001209", "cast_id": 5, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Emily Deschanel", "character": "Dr. Farquad", "id": 25933, "credit_id": "52fe430a9251416c7500120d", "cast_id": 6, "profile_path": "/f5FjmOlXEcjLz4qxi5Rfbu3ZO4Y.jpg", "order": 4}, {"name": "Heather Wahlquist", "character": "Aunt Kelly", "id": 55317, "credit_id": "52fe430a9251416c7500128f", "cast_id": 28, "profile_path": "/232o4HJQu4M5cv6VNOxdvXV8itx.jpg", "order": 5}, {"name": "Jason Patric", "character": "Brian Fitzgerald", "id": 12261, "credit_id": "52fe430a9251416c75001293", "cast_id": 29, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 6}, {"name": "Evan Ellingson", "character": "Jesse Fitzgerald", "id": 181074, "credit_id": "52fe430a9251416c75001297", "cast_id": 30, "profile_path": "/h7HcdRd6aGsAFKNFi4jmeBwW2vO.jpg", "order": 7}, {"name": "Nicole Marie Lenz", "character": "Gloria", "id": 1109920, "credit_id": "52fe430a9251416c7500129b", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Joan Cusack", "character": "Judge De Salvo", "id": 3234, "credit_id": "52fe430a9251416c7500129f", "cast_id": 32, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 9}, {"name": "Keith Kraft", "character": "Paramedic (uncredited)", "id": 1429705, "credit_id": "54e8a4fec3a36836ea00209f", "cast_id": 33, "profile_path": null, "order": 10}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe430a9251416c750011f9", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 7.1, "runtime": 109}, "10996": {"poster_path": "/48PioggzfUbpRHjyQom4q9nmWGS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Stuart, an adorable white mouse, still lives happily with his adoptive family, the Littles, on the east side of Manhattan's Central Park. More crazy mouse adventures are in store as Stuart, his human brother, George, and their mischievous cat, Snowbell, set out to rescue a friend.", "video": false, "id": 10996, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Stuart Little 2", "tagline": "A Little Goes A Long Way", "vote_count": 124, "homepage": "", "belongs_to_collection": {"backdrop_path": "/r74LzQMN1EdvdCvbIqHA95TvEKt.jpg", "poster_path": "/tBWjHQBmEa91Pa3R96zGdosULom.jpg", "id": 99727, "name": "Stuart Little Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0243585", "adult": false, "backdrop_path": "/p8Z1nsE1HXSQgh8thJVAlMSSSHz.jpg", "production_companies": [{"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2002-07-19", "popularity": 0.736312549182429, "original_title": "Stuart Little 2", "budget": 120000000, "cast": [{"name": "Michael J. Fox", "character": "Voice of Stuart Little", "id": 521, "credit_id": "52fe43df9251416c750215a9", "cast_id": 1, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "Geena Davis", "character": "Mrs. Eleanor Little", "id": 16935, "credit_id": "52fe43df9251416c750215ad", "cast_id": 2, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Hugh Laurie", "character": "Mr. Frederick Little", "id": 41419, "credit_id": "52fe43df9251416c750215b1", "cast_id": 3, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 2}, {"name": "Jonathan Lipnicki", "character": "George Little", "id": 67778, "credit_id": "52fe43df9251416c750215b5", "cast_id": 4, "profile_path": "/mHyAL6ByNXxMLzfykgLTmd4tvMr.jpg", "order": 3}, {"name": "Anna Hoelck", "character": "Martha Little", "id": 122552, "credit_id": "52fe43df9251416c750215dd", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Ashley Hoelck", "character": "Martha Little", "id": 122553, "credit_id": "52fe43df9251416c750215e1", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Nathan Lane", "character": "Snowbell (voice)", "id": 78729, "credit_id": "52fe43df9251416c750215e5", "cast_id": 13, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 6}, {"name": "Melanie Griffith", "character": "Margalo the Bird (voice)", "id": 29369, "credit_id": "52fe43df9251416c750215e9", "cast_id": 14, "profile_path": "/cb2IeaETE0oVV5JZc79Vi0dS6m2.jpg", "order": 7}, {"name": "James Woods", "character": "The Evil Falcon (voice)", "id": 4512, "credit_id": "52fe43df9251416c750215ed", "cast_id": 15, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 8}, {"name": "Steve Zahn", "character": "Monty the Alley-Cat (voice)", "id": 18324, "credit_id": "52fe43df9251416c750215f1", "cast_id": 16, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 9}, {"name": "Maria Bamford", "character": "Teacher", "id": 60278, "credit_id": "52fe43df9251416c750215f5", "cast_id": 18, "profile_path": "/kYrYlMNqWjl85zfoJlks90hWbLR.jpg", "order": 11}, {"name": "Kevin Olson", "character": "Irwin (as Kevin Johnson Olson)", "id": 120256, "credit_id": "52fe43df9251416c750215f9", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Rachael Harris", "character": "Additional Voices (voice)", "id": 46074, "credit_id": "52fe43df9251416c750215fd", "cast_id": 20, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 13}, {"name": "Marc John Jefferies", "character": "Will, George's Friend", "id": 62646, "credit_id": "52fe43df9251416c75021601", "cast_id": 21, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 14}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c750215bb", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 5.2, "runtime": 78}, "10999": {"poster_path": "/ypfLBI0xT9yyn38BFaRtp0Ny3uw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34896317, "overview": "Colonel Matrix has retired and is living with his 10-year-old daughter in the country. She is kidnapped to ensure that Matrix will kill the president of a Latin American country and make way for the return of a dictator. Matrix escapes off a plane flight and has until it lands to rescue his daughter.", "video": false, "id": 10999, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Commando", "tagline": "Somewhere... somehow... someone's going to pay", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088944", "adult": false, "backdrop_path": "/p8MHS8hyMmrZafKDMzIdESJb1rI.jpg", "production_companies": [{"name": "SLM Production Group", "id": 396}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1985-10-03", "popularity": 1.28929210152487, "original_title": "Commando", "budget": 10000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "John Matrix", "id": 1100, "credit_id": "52fe43df9251416c750216eb", "cast_id": 9, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Rae Dawn Chong", "character": "Cindy", "id": 13312, "credit_id": "52fe43df9251416c750216ef", "cast_id": 10, "profile_path": "/6mk5lSTIUav9T1M0VAdUP46FTSH.jpg", "order": 1}, {"name": "Dan Hedaya", "character": "Arius", "id": 6486, "credit_id": "52fe43df9251416c750216f3", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 2}, {"name": "Vernon Wells", "character": "Bennett", "id": 26491, "credit_id": "52fe43df9251416c750216f7", "cast_id": 12, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 3}, {"name": "David Patrick Kelly", "character": "Sully", "id": 1737, "credit_id": "52fe43df9251416c750216fb", "cast_id": 13, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 4}, {"name": "Bill Duke", "character": "Cooke", "id": 1103, "credit_id": "52fe43df9251416c750216ff", "cast_id": 14, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 5}, {"name": "Alyssa Milano", "character": "Jenny Matrix", "id": 24967, "credit_id": "52fe43df9251416c75021703", "cast_id": 15, "profile_path": "/s1aew8uoqK993VBU33LE5JwtOkO.jpg", "order": 6}, {"name": "Ava Cadell", "character": "Girl in Bed at Motel", "id": 1337282, "credit_id": "53b60184c3a3685eb70017bc", "cast_id": 17, "profile_path": "/47V3pzDMy2WovfFl6MtfMm97PRz.jpg", "order": 7}, {"name": "Drew Snyder", "character": "Lawson", "id": 52188, "credit_id": "53b6047dc3a3685ec100184c", "cast_id": 18, "profile_path": "/xW8V4eZaFRm0J2FCNNrcojN8yOg.jpg", "order": 8}, {"name": "Sharon Wyatt", "character": "Leslie", "id": 1229170, "credit_id": "53b607ffc3a3685eb400188e", "cast_id": 19, "profile_path": "/fcpQu4jg3IySBCpLPM6Zoz6c9fJ.jpg", "order": 9}, {"name": "Michael Delano", "character": "Forrestal", "id": 105089, "credit_id": "53b60a180e0a2676d3004454", "cast_id": 20, "profile_path": "/1YnOWZ3rxZX86LpIKf3BZ2K3fWj.jpg", "order": 10}, {"name": "Bob Minor", "character": "Jackson", "id": 156869, "credit_id": "53b60caf0e0a2676cf0043d5", "cast_id": 21, "profile_path": "/jwCeTNiNZcAQYohUksglnNYJezJ.jpg", "order": 11}, {"name": "Julie Hayek", "character": "Western Flight Attendant", "id": 1228048, "credit_id": "53b610ab0e0a2676cb00449e", "cast_id": 22, "profile_path": "/l7VvW9jSdGn14CrwpgpxGoPxAtX.jpg", "order": 12}, {"name": "Michael Adams", "character": "Harris", "id": 999672, "credit_id": "53bba940c3a368661e001e61", "cast_id": 46, "profile_path": null, "order": 13}, {"name": "Gary Carlos Cervantes", "character": "Diaz", "id": 48136, "credit_id": "53bbaa00c3a368661e001e6f", "cast_id": 47, "profile_path": "/13kjmeYYdJzdeccnJEXo56KH7CO.jpg", "order": 14}, {"name": "Walter Scott", "character": "Cates", "id": 16474, "credit_id": "53bbaa6ac3a368661a001e5e", "cast_id": 48, "profile_path": "/l8uXZW6xypNY7e4wd7a0HqzP6iA.jpg", "order": 15}, {"name": "Branscombe Richmond", "character": "Vega", "id": 106730, "credit_id": "53bbaaa8c3a3686628001eaa", "cast_id": 49, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 16}], "directors": [{"name": "Mark L. Lester", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c750216bd", "profile_path": null, "id": 67753}], "vote_average": 6.4, "runtime": 90}, "11000": {"poster_path": "/oXP90sp3sTXbmJCW6WX5BUhKthJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185260553, "overview": "A gay cabaret owner and his drag queen companion agree to put up a false straight front so that their son can introduce them to his fianc\u00e9's right-wing moralistic parents.", "video": false, "id": 11000, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Birdcage", "tagline": "Come as you are.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115685", "adult": false, "backdrop_path": "/hU7YAbnf49QLnvxs30aCgGgSb9T.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1996-03-08", "popularity": 0.490663358258419, "original_title": "The Birdcage", "budget": 0, "cast": [{"name": "Robin Williams", "character": "Armand Goldman", "id": 2157, "credit_id": "52fe43df9251416c7502174b", "cast_id": 6, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Sen. Kevin Keeley", "id": 193, "credit_id": "52fe43df9251416c7502174f", "cast_id": 7, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Nathan Lane", "character": "Albert Goldman", "id": 78729, "credit_id": "52fe43df9251416c75021753", "cast_id": 8, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 2}, {"name": "Dianne Wiest", "character": "Louise Keeley", "id": 1902, "credit_id": "52fe43df9251416c75021757", "cast_id": 9, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 3}, {"name": "Grant Heslov", "character": "National Enquirer Photographer", "id": 31511, "credit_id": "52fe43df9251416c7502175b", "cast_id": 10, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 4}, {"name": "Hank Azaria", "character": "Agador Spartacus", "id": 5587, "credit_id": "52fe43df9251416c7502175f", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 5}, {"name": "Dan Futterman", "character": "Val Goldman", "id": 5346, "credit_id": "52fe43df9251416c75021763", "cast_id": 12, "profile_path": "/lohvETRKnXTTsvjYCFvmPSylqJH.jpg", "order": 6}, {"name": "Calista Flockhart", "character": "Barbara Keeley", "id": 49148, "credit_id": "52fe43df9251416c75021767", "cast_id": 13, "profile_path": "/8QHgAF3p4GsGdh7bbt9b6Ni30Ap.jpg", "order": 7}, {"name": "Christine Baranski", "character": "Katherine Archer", "id": 11870, "credit_id": "52fe43df9251416c7502176b", "cast_id": 14, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 8}, {"name": "Tom McGowan", "character": "Harry Radman", "id": 77338, "credit_id": "52fe43df9251416c7502176f", "cast_id": 15, "profile_path": "/40M1HdJmCfhGykN0Wl23BB59duY.jpg", "order": 9}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c7502172f", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 6.6, "runtime": 117}, "11001": {"poster_path": "/czfw7EkBCK6SD1pBH0eheo1qPx9.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117758500, "overview": "Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as a LAPD detective", "video": false, "id": 11001, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Blue Streak", "tagline": "He's A Cop That's Not.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181316", "adult": false, "backdrop_path": "/lXZwfjhpTHcTDUdr87C2nZtTuUm.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-09-17", "popularity": 0.493583544003728, "original_title": "Blue Streak", "budget": 65000000, "cast": [{"name": "Martin Lawrence", "character": "Miles Logan", "id": 78029, "credit_id": "52fe43df9251416c750217d1", "cast_id": 10, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Luke Wilson", "character": "Carlson", "id": 36422, "credit_id": "52fe43df9251416c750217d5", "cast_id": 11, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 1}, {"name": "Dave Chappelle", "character": "Tulley", "id": 4169, "credit_id": "52fe43e09251416c750217dd", "cast_id": 13, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 2}, {"name": "Peter Greene", "character": "Deacon", "id": 11803, "credit_id": "52fe43df9251416c750217d9", "cast_id": 12, "profile_path": "/zCHUxWj7BZ3Uzmkbq9FPpOicniQ.jpg", "order": 3}, {"name": "Nicole Ari Parker", "character": "Mellisa Green", "id": 74615, "credit_id": "52fe43e09251416c750217e1", "cast_id": 14, "profile_path": "/vvEt8sXPKm9HxxDrHyg9aIxwvEM.jpg", "order": 4}, {"name": "William Forsythe", "character": "Detective Hardcastle", "id": 4520, "credit_id": "54b34de9c3a36820a7002453", "cast_id": 21, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 5}, {"name": "Graham Beckel", "character": "Rizzo", "id": 6110, "credit_id": "52fe43e09251416c750217e5", "cast_id": 15, "profile_path": "/hv1BySh6NFhR9dz1xtqdKn3gGCF.jpg", "order": 6}, {"name": "Robert Miranda", "character": "Glenfiddish", "id": 20625, "credit_id": "52fe43e09251416c750217e9", "cast_id": 16, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 7}, {"name": "Olek Krupa", "character": "Jean LaFleur", "id": 53573, "credit_id": "52fe43e09251416c750217ed", "cast_id": 17, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 8}, {"name": "Saverio Guerra", "character": "Benny", "id": 56691, "credit_id": "52fe43e09251416c750217f1", "cast_id": 18, "profile_path": "/30zqGjuEdlhkHDfQIIiMCMEMUpZ.jpg", "order": 9}, {"name": "Tamala Jones", "character": "Janiece", "id": 59154, "credit_id": "52fe43e09251416c750217f5", "cast_id": 19, "profile_path": "/gG0PHm94ArObvF8LqbuoaWP2ye5.jpg", "order": 10}, {"name": "John Hawkes", "character": "Eddie", "id": 16861, "credit_id": "54b34d699251412ffc00083f", "cast_id": 20, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 11}], "directors": [{"name": "Les Mayfield", "department": "Directing", "job": "Director", "credit_id": "52fe43df9251416c7502179d", "profile_path": "/qFl6z4jAfvb3bfMeGDMD4ch61tI.jpg", "id": 56911}], "vote_average": 6.0, "runtime": 93}, "11003": {"poster_path": "/t4M6RrwBQKTqbnG9vqG339G7FCC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123, "overview": "Robbie, a local rock star turned wedding singer, is dumped on the day of his wedding. Meanwhile, waitress Julia finally sets a wedding date with her fianc\u00e9e Glenn. When Julia and Robbie meet and hit it off, they find that things are more complicated than anybody thought.", "video": false, "id": 11003, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Wedding Singer", "tagline": "He's gonna party like it's 1985.", "vote_count": 160, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120888", "adult": false, "backdrop_path": "/sWGFvPVwfzMu8o259fA2j76m2uI.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Juno Pix", "id": 4286}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "1998-02-13", "popularity": 0.654147238585717, "original_title": "The Wedding Singer", "budget": 22000000, "cast": [{"name": "Adam Sandler", "character": "Robbie Hart", "id": 19292, "credit_id": "52fe43e09251416c750218a7", "cast_id": 8, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Julia Sullivan", "id": 69597, "credit_id": "52fe43e09251416c750218ab", "cast_id": 9, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Christine Taylor", "character": "Holly Sullivan", "id": 15286, "credit_id": "52fe43e09251416c750218af", "cast_id": 10, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 2}, {"name": "Allen Covert", "character": "Sammy", "id": 20818, "credit_id": "52fe43e09251416c750218b3", "cast_id": 11, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 3}, {"name": "Jon Lovitz", "character": "Jimmie Moore", "id": 16165, "credit_id": "52fe43e09251416c750218bd", "cast_id": 15, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 4}, {"name": "Ellen Dow", "character": "Rosie", "id": 85171, "credit_id": "52fe43e09251416c750218c7", "cast_id": 17, "profile_path": "/suREaXoLKSBhJPsMXnD6P0EnGXf.jpg", "order": 5}, {"name": "Angela Featherstone", "character": "Linda", "id": 15276, "credit_id": "52fe43e09251416c750218cb", "cast_id": 18, "profile_path": "/jC0jKdQL3M2M3WYVqojg8OcRdwJ.jpg", "order": 6}, {"name": "Billy Idol", "character": "Himself", "id": 80117, "credit_id": "52fe43e09251416c750218cf", "cast_id": 20, "profile_path": "/p7FpDfrUdcUsWUZcxdPM0ahhfBm.jpg", "order": 7}, {"name": "Alexis Arquette", "character": "George", "id": 19578, "credit_id": "52fe43e09251416c750218d3", "cast_id": 21, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 8}, {"name": "Christina Pickles", "character": "Angie Sullivan", "id": 94978, "credit_id": "52fe43e09251416c750218d7", "cast_id": 22, "profile_path": "/vhUkCPm78zsv9P1PfWzm4INE02d.jpg", "order": 9}, {"name": "Jodi Thelen", "character": "Kate", "id": 170306, "credit_id": "52fe43e09251416c750218db", "cast_id": 23, "profile_path": "/mO6aCVVhfkV5oBCbl1cRcVh89vr.jpg", "order": 10}, {"name": "Matthew Glave", "character": "Glenn Guglia", "id": 1219226, "credit_id": "52fe43e09251416c750218df", "cast_id": 24, "profile_path": "/vrJpneVBPIeH0DjnKVpLpgpxQRr.jpg", "order": 11}, {"name": "Steve Buscemi", "character": "David 'Dave' Veltri", "id": 884, "credit_id": "54133a70c3a3687d9e0003bd", "cast_id": 25, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 12}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe43e09251416c7502188b", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.3, "runtime": 95}, "11005": {"poster_path": "/6vkJhhd9h9QxMGHYQjVY1fY5XSI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52096475, "overview": "The victims of an encephalitis epidemic many years ago have been catatonic ever since, but now a new drug offers the prospect of reviving them.", "video": false, "id": 11005, "genres": [{"id": 18, "name": "Drama"}], "title": "Awakenings", "tagline": "There is no such thing as a simple miracle.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099077", "adult": false, "backdrop_path": "/qbHJsDJLyPfBLkHfdsNTWvSirv8.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1990-12-12", "popularity": 0.758464092468438, "original_title": "Awakenings", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Leonard Lowe", "id": 380, "credit_id": "52fe43e09251416c750219f9", "cast_id": 10, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Robin Williams", "character": "Dr. Malcolm Sayer", "id": 2157, "credit_id": "52fe43e09251416c750219fd", "cast_id": 11, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 1}, {"name": "Julie Kavner", "character": "Eleanor Costello", "id": 199, "credit_id": "52fe43e09251416c75021a01", "cast_id": 12, "profile_path": "/AuhOCpsQwr09nBvTtaqArggLNd7.jpg", "order": 2}, {"name": "Ruth Nelson", "character": "Mrs. Lowe", "id": 67761, "credit_id": "52fe43e09251416c75021a05", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "John Heard", "character": "Dr. Kaufman", "id": 11512, "credit_id": "52fe43e09251416c75021a0f", "cast_id": 15, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 4}, {"name": "Penelope Ann Miller", "character": "Paula", "id": 14698, "credit_id": "52fe43e09251416c75021a1b", "cast_id": 18, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 5}, {"name": "Alice Drummond", "character": "Lucy", "id": 17488, "credit_id": "52fe43e09251416c75021a1f", "cast_id": 19, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 6}, {"name": "Judith Malina", "character": "Rose", "id": 119864, "credit_id": "52fe43e09251416c75021a23", "cast_id": 20, "profile_path": "/kO8TlnKZvrW3NuIBZhucbeBxDDH.jpg", "order": 7}, {"name": "Barton Heyman", "character": "Bert", "id": 79732, "credit_id": "52fe43e09251416c75021a27", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "George Martin", "character": "Frank", "id": 2701, "credit_id": "52fe43e09251416c75021a2b", "cast_id": 22, "profile_path": "/lax77fIWSWrMYuS9zJi7VquNOeI.jpg", "order": 9}, {"name": "Anne Meara", "character": "Miriam", "id": 32394, "credit_id": "52fe43e09251416c75021a2f", "cast_id": 23, "profile_path": "/oNZszKpUZHfbT1mk2cD53uuZsnp.jpg", "order": 10}, {"name": "Richard Libertini", "character": "Sidney", "id": 20163, "credit_id": "52fe43e09251416c75021a33", "cast_id": 24, "profile_path": "/hWqF6BHojClGbQCfLU3fS2aYz2B.jpg", "order": 11}, {"name": "Laura Esterman", "character": "Lolly", "id": 171425, "credit_id": "52fe43e09251416c75021a37", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Dexter Gordon", "character": "Rolando", "id": 77135, "credit_id": "52fe43e09251416c75021a3b", "cast_id": 26, "profile_path": "/kHXBnU2XstegyqXlYYvPQKwMSH8.jpg", "order": 13}, {"name": "Jayne Haynes", "character": "Frances", "id": 181312, "credit_id": "52fe43e09251416c75021a3f", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Le Clanch\u00e9 du Rand", "character": "Magda", "id": 557850, "credit_id": "52fe43e09251416c75021a43", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Yusef Bulos", "character": "Joseph", "id": 142757, "credit_id": "52fe43e09251416c75021a47", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Steven Randazzo", "character": "Luis (as Steve Randazzo)", "id": 59281, "credit_id": "52fe43e09251416c75021a4b", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Gloria Harper", "character": "Dottie", "id": 1170964, "credit_id": "52fe43e09251416c75021a4f", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Gwyllum Evans", "character": "Desmond", "id": 196311, "credit_id": "52fe43e09251416c75021a53", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Mary Catherine Wright", "character": "Nurse Beth", "id": 163989, "credit_id": "52fe43e09251416c75021a57", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Mary Alice", "character": "Nurse Margaret", "id": 9572, "credit_id": "52fe43e09251416c75021a5b", "cast_id": 34, "profile_path": "/2h20nF8gvhqhgVDV6Lru55dKB44.jpg", "order": 21}, {"name": "Keith Diamond", "character": "Anthony", "id": 154629, "credit_id": "52fe43e09251416c75021a5f", "cast_id": 35, "profile_path": "/yCjWqiIccAoN8vuAm0tM3l5Qnyu.jpg", "order": 22}, {"name": "Steve Vinovich", "character": "Ray", "id": 88948, "credit_id": "52fe43e19251416c75021a63", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Tiger Haynes", "character": "Janitor", "id": 90186, "credit_id": "52fe43e19251416c75021a67", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "John Christopher Jones", "character": "Dr. Sullivan", "id": 51532, "credit_id": "52fe43e19251416c75021a6b", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Bradley Whitford", "character": "Dr. Tyler", "id": 11367, "credit_id": "52fe43e09251416c75021a13", "cast_id": 16, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 26}, {"name": "Max von Sydow", "character": "Dr. Peter Ingham", "id": 2201, "credit_id": "52fe43e19251416c75021a6f", "cast_id": 39, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 27}, {"name": "Harvey Miller", "character": "Hospital Director", "id": 29706, "credit_id": "52fe43e19251416c75021a73", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Tanya Berezin", "character": "Psychiatrist", "id": 163809, "credit_id": "52fe43e19251416c75021a77", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Peter Stormare", "character": "Neurochemist", "id": 53, "credit_id": "52fe43e19251416c75021a7b", "cast_id": 42, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 30}, {"name": "Shane Fistell", "character": "Man in Hall", "id": 1170965, "credit_id": "52fe43e19251416c75021a7f", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Waheedah Ahmad", "character": "Hysterical Woman", "id": 1170966, "credit_id": "52fe43e19251416c75021a83", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Charles Keating", "character": "Mr. Kean", "id": 13937, "credit_id": "52fe43e19251416c75021a87", "cast_id": 45, "profile_path": "/c2vPVQidD2pf77iiTwgDcIGGQaP.jpg", "order": 33}, {"name": "Christina Huertes", "character": "Christina", "id": 1170967, "credit_id": "52fe43e19251416c75021a8b", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Linda Burns", "character": "Fishsticks", "id": 1170968, "credit_id": "52fe43e19251416c75021a8f", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Judy Jacksina", "character": "Hospital Receptionist", "id": 171229, "credit_id": "52fe43e19251416c75021a93", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Gary Tacon", "character": "George, Security Guard", "id": 91835, "credit_id": "52fe43e19251416c75021a97", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Rico Elias", "character": "Orderly #1", "id": 1003901, "credit_id": "52fe43e19251416c75021a9b", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Mel Gorham", "character": "Nurse Sara", "id": 46394, "credit_id": "52fe43e19251416c75021a9f", "cast_id": 51, "profile_path": "/80hkRQgJPYiwJ8QqqCMiemkn8Ta.jpg", "order": 39}, {"name": "Chris Carolan", "character": "EEG Technician", "id": 1170969, "credit_id": "52fe43e19251416c75021aa3", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Debra Kovner-Zaks", "character": "Cafeteria Nurse", "id": 1170970, "credit_id": "52fe43e19251416c75021aa7", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Vin Diesel", "character": "Hospital Orderly (Uncredited)", "id": 12835, "credit_id": "52fe43e09251416c75021a17", "cast_id": 17, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 42}, {"name": "Laurence Fishburne", "character": "Orderly", "id": 2975, "credit_id": "52fe43e19251416c75021acf", "cast_id": 60, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 43}], "directors": [{"name": "Penny Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43e09251416c750219c5", "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "id": 14911}], "vote_average": 6.8, "runtime": 121}, "11007": {"poster_path": "/8vhbMWKJOcGJuX5bAtm8d7QqpAY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 190212113, "overview": "The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.", "video": false, "id": 11007, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Cheaper by the Dozen", "tagline": "Growing pains? They've got twelve of them!", "vote_count": 147, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5LCXYjHCy78SJqGhpAgabHmyf2s.jpg", "id": 114783, "name": "Cheaper by the Dozen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0349205", "adult": false, "backdrop_path": "/j5h1ATCyQ2WivqdANA1ACVeQr61.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2003-12-25", "popularity": 0.883204800953025, "original_title": "Cheaper by the Dozen", "budget": 40000000, "cast": [{"name": "Steve Martin", "character": "Tom Baker", "id": 67773, "credit_id": "52fe43e19251416c75021b95", "cast_id": 1, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Bonnie Hunt", "character": "Kate Baker", "id": 5149, "credit_id": "52fe43e19251416c75021b99", "cast_id": 2, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 1}, {"name": "Piper Perabo", "character": "Nora Baker", "id": 15555, "credit_id": "52fe43e19251416c75021b9d", "cast_id": 3, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 2}, {"name": "Tom Welling", "character": "Charlie Baker", "id": 11824, "credit_id": "52fe43e19251416c75021ba1", "cast_id": 4, "profile_path": "/45hE6LdT31IyMKLtu8JPopByMEH.jpg", "order": 3}, {"name": "Hilary Duff", "character": "Lorraine Baker", "id": 5958, "credit_id": "52fe43e19251416c75021ba5", "cast_id": 5, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 4}, {"name": "Kevin G. Schmidt", "character": "Henry Baker", "id": 85140, "credit_id": "52fe43e19251416c75021bf7", "cast_id": 19, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 5}, {"name": "Alyson Stoner", "character": "Sarah Baker", "id": 58965, "credit_id": "52fe43e19251416c75021bfb", "cast_id": 20, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 6}, {"name": "Jacob Smith", "character": "Jake Baker", "id": 9829, "credit_id": "52fe43e19251416c75021bff", "cast_id": 21, "profile_path": "/gWdoJZzinaMLniOFTGfWooZPo91.jpg", "order": 7}, {"name": "Liliana Mumy", "character": "Jessica Baker", "id": 71861, "credit_id": "52fe43e19251416c75021c03", "cast_id": 22, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 8}, {"name": "Morgan York", "character": "Kim Baker", "id": 148615, "credit_id": "52fe43e19251416c75021c07", "cast_id": 23, "profile_path": "/AhcT2J8Kk1mRpDhDdhszAeQslBg.jpg", "order": 9}, {"name": "Forrest Landis", "character": "Mark Baker", "id": 60393, "credit_id": "52fe43e19251416c75021c0b", "cast_id": 24, "profile_path": "/e7eytoDQv5vqLGI4aKvAPp8bGYa.jpg", "order": 10}, {"name": "Blake Woodruff", "character": "Mike Baker", "id": 142635, "credit_id": "52fe43e19251416c75021c0f", "cast_id": 25, "profile_path": "/oNsSKbH4rIGY8AnyCyChp4NRQ8C.jpg", "order": 11}, {"name": "Brent Kinsman", "character": "Nigel Baker", "id": 148617, "credit_id": "52fe43e19251416c75021c13", "cast_id": 26, "profile_path": "/vMr6zID6ZJBJPY28uWvdu3vsqDS.jpg", "order": 12}, {"name": "Brent and Shane Kinsman", "character": "Kyle Baker", "id": 148618, "credit_id": "52fe43e19251416c75021c17", "cast_id": 27, "profile_path": "/f69HcZsO5xnTi0JcuvP8RxyIYm6.jpg", "order": 13}, {"name": "Paula Marshall", "character": "Tina Shenk", "id": 59449, "credit_id": "52fe43e19251416c75021c1b", "cast_id": 28, "profile_path": "/gK8r5RwH8Guf4YxbhLGXeRZjot4.jpg", "order": 14}, {"name": "Ashton Kutcher", "character": "Hank (uncredited)", "id": 18976, "credit_id": "52fe43e19251416c75021c1f", "cast_id": 29, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 15}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe43e19251416c75021bab", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.7, "runtime": 98}, "76544": {"poster_path": "/42MutxsgeJS5pYLNWUGv8d6B9wa.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2054941, "overview": "In Beijing, a young martial artist's skill places him in position to experience opportunities and sacrifices.", "video": false, "id": 76544, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Man of Tai Chi", "tagline": "No Rules. No Mercy. Pure Fighting.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt2016940", "adult": false, "backdrop_path": "/fQsnOE6OpjV2wkCVBBoC47T4wUH.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Universal Pictures", "id": 33}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Company Films", "id": 22339}, {"name": "Dalian Wanda Group", "id": 22340}], "release_date": "2013-11-01", "popularity": 0.843359082339003, "original_title": "Man of Tai Chi", "budget": 25000000, "cast": [{"name": "Keanu Reeves", "character": "Donaka Mark", "id": 6384, "credit_id": "52fe4941c3a368484e122215", "cast_id": 2, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Tiger Hu Chen", "character": "Chen Lin-Hu", "id": 579330, "credit_id": "52fe4941c3a368484e122219", "cast_id": 3, "profile_path": "/49EWQmIg5fxJd1sEOiUODNvQzh5.jpg", "order": 1}, {"name": "Jeremy Marinas", "character": "MMA Fighter", "id": 1188571, "credit_id": "52fe4941c3a368484e122223", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Steven Dasz", "character": "Vip audience", "id": 590919, "credit_id": "52fe4941c3a368484e122227", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Karen Mok", "character": "Sun Jingshi", "id": 57831, "credit_id": "52fe4941c3a368484e12222b", "cast_id": 7, "profile_path": "/hfxRryhoRtT05ukFa7ooSM8pDhN.jpg", "order": 4}, {"name": "Michael Chan", "character": "Police Officer #1", "id": 200754, "credit_id": "52fe4941c3a368484e12222f", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Qing Ye", "character": "Qingsha", "id": 1210413, "credit_id": "52fe4941c3a368484e122233", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Yu Hai", "character": "Yang", "id": 1210414, "credit_id": "52fe4941c3a368484e122237", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Sam Lee", "character": "Tak Ming", "id": 74193, "credit_id": "52fe4941c3a368484e12223b", "cast_id": 11, "profile_path": "/peBEATyBMxLnbqdg9DLBZVyJXkY.jpg", "order": 8}, {"name": "Iko Uwais", "character": "Gilang Sanjaya", "id": 113732, "credit_id": "52fe4941c3a368484e12223f", "cast_id": 12, "profile_path": "/5unOYIpJUl35q5Q7dG1A6tJF2Jk.jpg", "order": 9}, {"name": "Silvio Simac", "character": "Uri Romanov", "id": 134414, "credit_id": "52fe4941c3a368484e122243", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Simon Yam", "character": "Wong", "id": 20519, "credit_id": "52fe4941c3a368484e122247", "cast_id": 14, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 11}], "directors": [{"name": "Keanu Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe4941c3a368484e122211", "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "id": 6384}], "vote_average": 5.9, "runtime": 105}, "11009": {"poster_path": "/uC0GIPI54UiqrIQsnq6C0qXSIwp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237113184, "overview": "Nineteen-year-old Tony Manero lives for Saturday nights at the local disco, where he's king of the dance floor. But outside of the club, things don't look so rosy. At home, he fights constantly with his father and has to compete with his family's starry-eyed view of his older brother, a priest. Then, he meets Stephanie at the disco and they agree to dance together in a competition. Stephanie resists Tony's attempts to romance her, as she aspires to greater things; she is moving across the river to Manhattan. Gradually, Tony also becomes disillusioned with the life he is leading and he and Stephanie decide to help one another to start afresh", "video": false, "id": 11009, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Saturday Night Fever", "tagline": "Catch it.", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/66JFemhPp5qh0pGYPkGqjocR0Fv.jpg", "id": 288280, "name": "Saturday Night Fever Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076666", "adult": false, "backdrop_path": "/gqTwlRkQ2FBCeeq6JxzCj4ctjHF.jpg", "production_companies": [{"name": "Robert Stigwood Organization (RSO)", "id": 3978}, {"name": "Paramount Pictures", "id": 4}], "release_date": "1977-12-16", "popularity": 0.978946869932291, "original_title": "Saturday Night Fever", "budget": 3500000, "cast": [{"name": "John Travolta", "character": "Tony Manero", "id": 8891, "credit_id": "52fe43e29251416c75021d25", "cast_id": 9, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Karen Lynn Gorney", "character": "Stephanie Mangano", "id": 67787, "credit_id": "52fe43e29251416c75021d29", "cast_id": 10, "profile_path": "/Z7KD1t1HhoSfbm8OS15Q2vTFBK.jpg", "order": 1}, {"name": "Barry Miller", "character": "Bobby C.", "id": 62014, "credit_id": "52fe43e29251416c75021d2d", "cast_id": 11, "profile_path": "/tYZZCu2YvgUPqtqUeAj4StZrhGO.jpg", "order": 2}, {"name": "Joseph Cali", "character": "Joey", "id": 67788, "credit_id": "52fe43e29251416c75021d31", "cast_id": 12, "profile_path": "/bPI8PiXfE04d5dmNkc9j1RU03b3.jpg", "order": 3}, {"name": "Paul Pape", "character": "Double J.", "id": 174563, "credit_id": "52fe43e29251416c75021d35", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Bruce Ornstein", "character": "Gus", "id": 171758, "credit_id": "52fe43e29251416c75021d39", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Julie Bovasso", "character": "Flo", "id": 20972, "credit_id": "52fe43e29251416c75021d3d", "cast_id": 16, "profile_path": "/hki5xcknSNW8KZGB3hoJWv1gLEL.jpg", "order": 6}, {"name": "Martin Shakar", "character": "Frank Jr.", "id": 119054, "credit_id": "52fe43e29251416c75021d41", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Sam Coppola", "character": "Dan Fusco (as Sam J. Coppola)", "id": 118132, "credit_id": "52fe43e29251416c75021d45", "cast_id": 18, "profile_path": "/nw61T8Yuua0OCabfdoWult2qbeQ.jpg", "order": 8}, {"name": "Nina Hansen", "character": "Grandmother", "id": 951077, "credit_id": "52fe43e29251416c75021d49", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Lisa Peluso", "character": "Linda", "id": 1191736, "credit_id": "52fe43e29251416c75021d4d", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Denny Dillon", "character": "Doreen", "id": 59695, "credit_id": "52fe43e29251416c75021d51", "cast_id": 21, "profile_path": "/rc67RDrAKtN0qWBkB2AzXAxztHr.jpg", "order": 11}, {"name": "Bert Michaels", "character": "Pete", "id": 1161044, "credit_id": "52fe43e29251416c75021d55", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Robert Costanzo", "character": "Paint Store Customer (as Robert Costanza)", "id": 33492, "credit_id": "52fe43e29251416c75021d59", "cast_id": 23, "profile_path": "/o8B9lwbDUUT7DwWKixoTUFMKlyf.jpg", "order": 13}, {"name": "Robert Weil", "character": "Becker", "id": 1191737, "credit_id": "52fe43e29251416c75021d5d", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Shelly Batt", "character": "Girl in Disco", "id": 1191738, "credit_id": "52fe43e29251416c75021d61", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Fran Drescher", "character": "Connie", "id": 53122, "credit_id": "52fe43e29251416c75021d65", "cast_id": 26, "profile_path": "/vQxr8CRgyDkH3GTFLwacs9W9tF4.jpg", "order": 16}, {"name": "Donna Pescow", "character": "Annette", "id": 1216751, "credit_id": "52fe43e29251416c75021d73", "cast_id": 29, "profile_path": "/2yJE8kzwFDO1pXaaQYzuzMgiWQV.jpg", "order": 18}, {"name": "Val Bisoglio", "character": "Frank Manero Sr.", "id": 107068, "credit_id": "540b0a5a0e0a262b46002591", "cast_id": 30, "profile_path": "/wxeAHpKODn5oYRu359jCRgmHGDL.jpg", "order": 19}], "directors": [{"name": "John Badham", "department": "Directing", "job": "Director", "credit_id": "52fe43e29251416c75021cf7", "profile_path": "/oAhHnnyoIY7qgg7aERbsOuqFdow.jpg", "id": 12840}], "vote_average": 6.5, "runtime": 118}, "11011": {"poster_path": "/hbNmaqJcjg4ChZ5vvfQpNzizoiR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Billionaire heir Richie Rich has it all, including Reggie Jackson as a batting coach and Claudia Schiffer as a personal trainer -- but no playmates. What's more, scoundrel Laurence Van Dough is scheming to take over the family empire. Uh-oh! Enter faithful butler Cadbury to save the day.", "video": false, "id": 11011, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Richie Rich", "tagline": "An adventure so big... even the world's richest kid can't afford to miss it!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 167985, "name": "Richie Rich Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0110989", "adult": false, "backdrop_path": "/dec4cvdWK4P7hKxiH2Pr0BcBCFW.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Warner Bros. Entertainment", "id": 17}], "release_date": "1994-12-21", "popularity": 0.419444227527316, "original_title": "Ri\u00a2hie Ri\u00a2h", "budget": 40000000, "cast": [{"name": "Macaulay Culkin", "character": "Richie Rich", "id": 11510, "credit_id": "52fe43e29251416c75021e35", "cast_id": 9, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 0}, {"name": "John Larroquette", "character": "Lawrence Van Dough", "id": 14101, "credit_id": "52fe43e29251416c75021e39", "cast_id": 10, "profile_path": "/ilQ3NBO3LDsfSIuVpoh1C9sz6eb.jpg", "order": 1}, {"name": "Edward Herrmann", "character": "Richard Rich", "id": 52995, "credit_id": "52fe43e29251416c75021e3d", "cast_id": 11, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 2}, {"name": "Christine Ebersole", "character": "Regina Rich", "id": 4003, "credit_id": "52fe43e29251416c75021e41", "cast_id": 12, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 3}, {"name": "Michael Maccarone", "character": "Tony", "id": 952664, "credit_id": "52fe43e29251416c75021e45", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Joel Robinson", "character": "Omar", "id": 218589, "credit_id": "52fe43e29251416c75021e49", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Jonathan Hilario", "character": "Pee Wee", "id": 974420, "credit_id": "52fe43e29251416c75021e4d", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Rory Culkin", "character": "Young Richie", "id": 28042, "credit_id": "52fe43e29251416c75021e51", "cast_id": 16, "profile_path": "/ceb0M0ikZj8kg5oXfGr5wi1MDc6.jpg", "order": 7}, {"name": "Jonathan Hyde", "character": "Herbert Cadbury", "id": 8537, "credit_id": "52fe43e29251416c75021e55", "cast_id": 17, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 8}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe43e29251416c75021e07", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 5.2, "runtime": 95}, "11013": {"poster_path": "/dZaTYgy6sc6Z8ylaKdXw8yq5sRv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9304609, "overview": "A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.", "video": false, "id": 11013, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Secretary", "tagline": "Assume the position.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0274812", "adult": false, "backdrop_path": "/gAAZt8QGa9o2xtU5Ag3ITQIgVXk.jpg", "production_companies": [{"name": "Slough Pond", "id": 4730}, {"name": "double A Films", "id": 4731}], "release_date": "2002-01-11", "popularity": 1.15600752950925, "original_title": "Secretary", "budget": 0, "cast": [{"name": "James Spader", "character": "E. Edward Grey", "id": 13548, "credit_id": "52fe43e39251416c75021f61", "cast_id": 9, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Lee Holloway", "id": 1579, "credit_id": "52fe43e39251416c75021f65", "cast_id": 10, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Jeremy Davies", "character": "Peter", "id": 4654, "credit_id": "52fe43e39251416c75021f69", "cast_id": 11, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 2}, {"name": "Lesley Ann Warren", "character": "Joan Holloway", "id": 21818, "credit_id": "52fe43e39251416c75021f6d", "cast_id": 12, "profile_path": "/4I5VPyumsxYGKST9b0FL2harYRK.jpg", "order": 3}, {"name": "Stephen McHattie", "character": "Burt Holloway", "id": 230, "credit_id": "53c0cc410e0a2615790081d4", "cast_id": 14, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 4}, {"name": "Amy Locane", "character": "Lee's Sister", "id": 21412, "credit_id": "53c0cc7b0e0a261576008584", "cast_id": 15, "profile_path": "/6F3aO7rTxHSXTW0Eax3EHSU9Eu2.jpg", "order": 5}, {"name": "Patrick Bauchau", "character": "Dr. Twardon", "id": 5274, "credit_id": "5490a8a69251411f6d00032d", "cast_id": 18, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 6}, {"name": "Jessica Tuck", "character": "Tricia O'Connor", "id": 156689, "credit_id": "5490a8d1c3a368740500030e", "cast_id": 19, "profile_path": "/smsznskzjz5c6SbjEFW6kENGhho.jpg", "order": 7}, {"name": "Oz Perkins", "character": "Jonathan", "id": 90609, "credit_id": "5490a905c3a36873f90003a7", "cast_id": 20, "profile_path": "/mFMTeyafafTqSgaWaRvGaLNgG7j.jpg", "order": 8}], "directors": [{"name": "Steven Shainberg", "department": "Directing", "job": "Director", "credit_id": "52fe43e39251416c75021f39", "profile_path": "/nkJrwamjmx5ZMQvEyTa5zWnRNId.jpg", "id": 67795}], "vote_average": 6.7, "runtime": 104}, "19585": {"poster_path": "/ecTQ40F6Ob4JW2qMRUf8ThxViyd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A team of trained secret agent animals, guinea pigs Darwin, Juarez, Blaster, mole Speckles, and fly Mooch takes on a mission for the US government to stop evil Leonard Saber, who plans to destroy the world with household appliances. But the government shuts them down and they are sentenced to a pet shop. Can they escape to defeat the villain and save the world?", "video": false, "id": 19585, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "G-Force", "tagline": "The world needs bigger heroes", "vote_count": 166, "homepage": "http://disney.go.com/disneypictures/gforce/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0436339", "adult": false, "backdrop_path": "/dnBiiPKJnIKb1e8BcDo3cicdjFG.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Whamaphram Productions", "id": 3639}], "release_date": "2009-07-21", "popularity": 0.991785077223304, "original_title": "G-Force", "budget": 0, "cast": [{"name": "Sam Rockwell", "character": "Darwin the Guinea Pig (voice)", "id": 6807, "credit_id": "52fe47e19251416c750a88f5", "cast_id": 1, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Juarez the Guinea Pig (voice)", "id": 955, "credit_id": "52fe47e19251416c750a88f9", "cast_id": 2, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Tracy Morgan", "character": "Blaster the Guinea Pig (voice)", "id": 56903, "credit_id": "52fe47e19251416c750a88fd", "cast_id": 3, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 2}, {"name": "Jon Favreau", "character": "Hurley the Guinea Pig (voice)", "id": 15277, "credit_id": "52fe47e19251416c750a8901", "cast_id": 4, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Bucky the Hamster (voice)", "id": 884, "credit_id": "52fe47e19251416c750a8905", "cast_id": 5, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Nicolas Cage", "character": "Speckles the Mole (voice)", "id": 2963, "credit_id": "52fe47e19251416c750a8909", "cast_id": 6, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 5}, {"name": "Edwin Louis", "character": "Mooch the Fly (voice)", "id": 84845, "credit_id": "52fe47e19251416c750a890d", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Jared Lavette", "character": "Jared the Skunk (voice)", "id": 84846, "credit_id": "52fe47e19251416c750a8911", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Micah Lavette", "character": "Micah the Fox (voice)", "id": 84847, "credit_id": "52fe47e19251416c750a8915", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Bill Nighy", "character": "Leonard Saber", "id": 2440, "credit_id": "52fe47e19251416c750a8919", "cast_id": 10, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 9}, {"name": "Will Arnett", "character": "Kip Killian", "id": 21200, "credit_id": "52fe47e19251416c750a891d", "cast_id": 11, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 10}, {"name": "Zach Galifianakis", "character": "Ben", "id": 58225, "credit_id": "52fe47e19251416c750a8921", "cast_id": 12, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 11}, {"name": "Kelli Garner", "character": "Marcie", "id": 17442, "credit_id": "52fe47e19251416c750a8925", "cast_id": 13, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 12}, {"name": "Niecy Nash", "character": "Rosalita", "id": 63231, "credit_id": "52fe47e19251416c750a8929", "cast_id": 14, "profile_path": "/uDgMY19qLLxJLGGr0JYzbi01JmW.jpg", "order": 13}, {"name": "Loudon Wainwright III", "character": "Grandpa Goodman", "id": 84848, "credit_id": "52fe47e19251416c750a892d", "cast_id": 15, "profile_path": "/dXknB49LSGxMcmhYGch7hcsYFY1.jpg", "order": 14}, {"name": "Tyler Patrick Jones", "character": "Connor", "id": 62821, "credit_id": "52fe47e19251416c750a8931", "cast_id": 16, "profile_path": "/deBdsmXr0VPBWuUhUfJcJT6jp5n.jpg", "order": 15}, {"name": "Piper Mackenzie Harris", "character": "Penny", "id": 84849, "credit_id": "52fe47e19251416c750a8935", "cast_id": 17, "profile_path": "/iTiubeqPER1X8x7Q76DjtL5tQ83.jpg", "order": 16}, {"name": "Chris Ellis", "character": "NSA Director", "id": 8191, "credit_id": "52fe47e19251416c750a8939", "cast_id": 18, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 17}, {"name": "Gabriel Casseus", "character": "Carter", "id": 18272, "credit_id": "52fe47e19251416c750a893d", "cast_id": 19, "profile_path": "/pAp9Rhl0X3kpNlk0ms0lDpQrPDF.jpg", "order": 18}, {"name": "Justin Mentell", "character": "Terrell", "id": 84850, "credit_id": "52fe47e19251416c750a8941", "cast_id": 20, "profile_path": "/kPQOd6S9kklkTdmPZfSQ56ZSmyD.jpg", "order": 19}], "directors": [{"name": "Hoyt Yeatman", "department": "Directing", "job": "Director", "credit_id": "52fe47e19251416c750a8947", "profile_path": null, "id": 84851}], "vote_average": 5.3, "runtime": 88}, "11017": {"poster_path": "/5mP8F0NYSVrwrlWRCSD4uywMNnX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26488734, "overview": "Billy Madison is the 27 year-old son of Bryan Madison, a very rich man who has made his living in the hotel industry. Billy stands to inherit his father's empire but only if he can make it through all 12 grades, 2 weeks per grade, to prove that he has what it takes to run the family business.", "video": false, "id": 11017, "genres": [{"id": 35, "name": "Comedy"}], "title": "Billy Madison", "tagline": "Billy is going back to school... Way back.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112508", "adult": false, "backdrop_path": "/m7p9XaukI9c3IGdX8w9NaKgOrin.jpg", "production_companies": [{"name": "Jack Giarraputo Productions", "id": 6365}], "release_date": "1995-02-10", "popularity": 0.784182827716718, "original_title": "Billy Madison", "budget": 10000000, "cast": [{"name": "Adam Sandler", "character": "Billy Madison", "id": 19292, "credit_id": "52fe43e49251416c750220f9", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Darren McGavin", "character": "Brian Madison", "id": 7333, "credit_id": "52fe43e49251416c750220fd", "cast_id": 2, "profile_path": "/issKaw0mcujeUZLiLkizs1KYG98.jpg", "order": 1}, {"name": "Bridgette Wilson", "character": "Veronica Vaughn", "id": 20751, "credit_id": "52fe43e49251416c75022101", "cast_id": 3, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 2}, {"name": "Bradley Whitford", "character": "Eric Gordon", "id": 11367, "credit_id": "52fe43e49251416c75022105", "cast_id": 4, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 3}, {"name": "Josh Mostel", "character": "Principal Max Anderson", "id": 33489, "credit_id": "52fe43e49251416c75022109", "cast_id": 5, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 4}, {"name": "Norm Macdonald", "character": "Frank", "id": 77075, "credit_id": "52fe43e49251416c75022143", "cast_id": 15, "profile_path": "/5jAVTWdeGGtSCZ37jT4uOyP2O0T.jpg", "order": 5}, {"name": "Mark Beltzman", "character": "Jack", "id": 188694, "credit_id": "52fe43e49251416c75022147", "cast_id": 16, "profile_path": "/re1ysFDhkw7E1OyGv1oLzwv6YZZ.jpg", "order": 6}, {"name": "Larry Hankin", "character": "Carl Alphonse", "id": 11519, "credit_id": "52fe43e49251416c7502214b", "cast_id": 17, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 7}, {"name": "Theresa Merritt", "character": "Juanita", "id": 77226, "credit_id": "52fe43e49251416c7502214f", "cast_id": 18, "profile_path": "/aTxceAux9NNaclxPJGOhMKvEruM.jpg", "order": 8}, {"name": "Dina Platias", "character": "Miss Lippy", "id": 954122, "credit_id": "52fe43e49251416c75022153", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Hrant Alianak", "character": "Pete", "id": 44155, "credit_id": "52fe43e49251416c75022157", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Vincent Marino", "character": "Cook", "id": 185154, "credit_id": "52fe43e49251416c7502215b", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Jack Mather", "character": "Ted 'Old Man' Clemens", "id": 151771, "credit_id": "52fe43e49251416c7502215f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Christopher Kelk", "character": "Rollo the Janitor", "id": 1073822, "credit_id": "52fe43e49251416c75022163", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Marc Donato", "character": "Nodding 1st Grader", "id": 112600, "credit_id": "52fe43e49251416c75022167", "cast_id": 24, "profile_path": "/2u5zIQRq4ps3PLTm8EqsDYrjnp8.jpg", "order": 14}, {"name": "Chris Farley", "character": "Bus Driver", "id": 58198, "credit_id": "52fe43e49251416c7502216b", "cast_id": 25, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 15}, {"name": "Steve Buscemi", "character": "", "id": 884, "credit_id": "5517955e9251416f00002cbe", "cast_id": 26, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 16}], "directors": [{"name": "Tamra Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43e49251416c7502210f", "profile_path": "/8N9WC5CJK0ADmfPJFN4NohFKRbP.jpg", "id": 57691}], "vote_average": 6.3, "runtime": 89}, "71469": {"poster_path": "/vRfn8Zxm4Xfssb7TFiSMDfpJEn.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story tells of a group of young people who fight to survive in Russia after an alien invasion.", "video": false, "id": 71469, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Darkest Hour", "tagline": "Survive The Holidays", "vote_count": 185, "homepage": "http://www.darkesthourmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1093357", "adult": false, "backdrop_path": "/j1XyMamFu0xrAZSA3vXBKbLDVeM.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Bazelevs Production", "id": 1038}, {"name": "The Jacobson Company", "id": 3638}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2011-12-25", "popularity": 0.376070929960302, "original_title": "The Darkest Hour", "budget": 44000000, "cast": [{"name": "Emile Hirsch", "character": "Sean", "id": 46593, "credit_id": "52fe4835c3a368484e0edf09", "cast_id": 1, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Rachael Taylor", "character": "Anne", "id": 19538, "credit_id": "52fe4835c3a368484e0edf0d", "cast_id": 2, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 1}, {"name": "Olivia Thirlby", "character": "Natalie", "id": 52442, "credit_id": "52fe4835c3a368484e0edf11", "cast_id": 3, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 2}, {"name": "Joel Kinnaman", "character": "Skyler", "id": 92404, "credit_id": "52fe4835c3a368484e0edf15", "cast_id": 4, "profile_path": "/kn3AcrSxa0ApgQVcjQ8m6YsWVq.jpg", "order": 3}, {"name": "Max Minghella", "character": "Ben", "id": 2978, "credit_id": "52fe4835c3a368484e0edf19", "cast_id": 5, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 4}, {"name": "Veronika Ozerova", "character": "Vika", "id": 1030490, "credit_id": "52fe4835c3a368484e0edf3b", "cast_id": 12, "profile_path": "/nSuAHtGh3u1wMS65QLYd0KnmLAu.jpg", "order": 5}, {"name": "Dato Bakhtadze", "character": "Sergei", "id": 18283, "credit_id": "52fe4835c3a368484e0edf3f", "cast_id": 13, "profile_path": "/icfjC4D6saHKCMXhoEUoK3mngzL.jpg", "order": 6}, {"name": "Yuriy Kutsenko", "character": "Matvei (as Gosha Kutsenko)", "id": 29839, "credit_id": "52fe4835c3a368484e0edf43", "cast_id": 14, "profile_path": "/zRM4ekQodkCFPvbk9GenbedywIi.jpg", "order": 7}, {"name": "Nikolay Efremov", "character": "Sasha", "id": 1030491, "credit_id": "52fe4835c3a368484e0edf47", "cast_id": 15, "profile_path": "/zCIHfiy7ngtneFZzVNmIhd6lRUA.jpg", "order": 8}, {"name": "Georgiy Gromov", "character": "Boris", "id": 1030492, "credit_id": "52fe4835c3a368484e0edf4b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Artur Smolyaninov", "character": "Yuri (as Arthur Smoljaninov)", "id": 101423, "credit_id": "52fe4835c3a368484e0edf4f", "cast_id": 17, "profile_path": "/oVfRnT94aUJwrk1a9qnVJmkHaMb.jpg", "order": 10}, {"name": "Anna Roudakova", "character": "Tess", "id": 1030493, "credit_id": "52fe4835c3a368484e0edf53", "cast_id": 18, "profile_path": "/iUdjsTZDXx0fwrqi2PByTqe4gzm.jpg", "order": 11}, {"name": "Pyotr Fyodorov", "character": "Anton Batkin (as Petr Fedorov)", "id": 80997, "credit_id": "52fe4835c3a368484e0edf57", "cast_id": 19, "profile_path": "/1fY9OPWAd1B2h9mrmHj6tLVSNqL.jpg", "order": 12}, {"name": "Ivan Gromov", "character": "Bartender No. 1", "id": 1030494, "credit_id": "52fe4835c3a368484e0edf5b", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Aleksandr Chernykh", "character": "Bartender No. 2 (as Alexsandr Chernyh)", "id": 237570, "credit_id": "52fe4835c3a368484e0edf5f", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Chris Gorak", "department": "Directing", "job": "Director", "credit_id": "52fe4835c3a368484e0edf1f", "profile_path": null, "id": 10855}], "vote_average": 4.7, "runtime": 89}, "2832": {"poster_path": "/7yjj5XveaKUAOA8nHxrpQAWPTkP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90259536, "overview": "Complete strangers stranded at a remote desert motel during a raging storm soon find themselves the target of a deranged murderer. As their numbers thin out, the travelers begin to turn on each other, as each tries to figure out who the killer is.", "video": false, "id": 2832, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Identity", "tagline": "The secret lies within.", "vote_count": 292, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0309698", "adult": false, "backdrop_path": "/arcpWGGnUkGkakOwZo7xfPsaz7h.jpg", "production_companies": [{"name": "Konrad Pictures", "id": 85}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2003-04-25", "popularity": 0.676629373849799, "original_title": "Identity", "budget": 30000000, "cast": [{"name": "John Cusack", "character": "Ed", "id": 3036, "credit_id": "52fe436fc3a36847f8054175", "cast_id": 7, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Rhodes", "id": 11477, "credit_id": "52fe436fc3a36847f8054179", "cast_id": 8, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Amanda Peet", "character": "Paris", "id": 2956, "credit_id": "52fe436fc3a36847f805417d", "cast_id": 9, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 2}, {"name": "John Hawkes", "character": "Larry", "id": 16861, "credit_id": "52fe436fc3a36847f8054181", "cast_id": 10, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Dr. Malick", "id": 658, "credit_id": "52fe436fc3a36847f8054185", "cast_id": 11, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "Clea DuVall", "character": "Ginny", "id": 20387, "credit_id": "52fe436fc3a36847f8054189", "cast_id": 12, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 5}, {"name": "John C. McGinley", "character": "George York", "id": 11885, "credit_id": "52fe436fc3a36847f805418d", "cast_id": 13, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 6}, {"name": "William Lee Scott", "character": "Lou", "id": 10128, "credit_id": "52fe436fc3a36847f8054191", "cast_id": 14, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 7}, {"name": "Jake Busey", "character": "Robert Maine", "id": 28410, "credit_id": "52fe436fc3a36847f8054195", "cast_id": 15, "profile_path": "/mGbWKlwTTyr62h6IwL66otOQV15.jpg", "order": 8}, {"name": "Rebecca De Mornay", "character": "Caroline Suzanne", "id": 28412, "credit_id": "52fe436fc3a36847f8054199", "cast_id": 17, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 10}, {"name": "Carmen Argenziano", "character": "Verteidiger", "id": 28413, "credit_id": "52fe436fc3a36847f805419d", "cast_id": 18, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 11}, {"name": "Marshall Bell", "character": "Staatsanwalt", "id": 3041, "credit_id": "52fe436fc3a36847f80541a1", "cast_id": 19, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 12}, {"name": "Leila Kenzle", "character": "Alice York", "id": 15044, "credit_id": "52fe436fc3a36847f80541a5", "cast_id": 20, "profile_path": "/8U9S4cYQTq0nbG01RDAIluEKZk4.jpg", "order": 13}, {"name": "Matt Letscher", "character": "Staatsanwaltsmitarbeiter", "id": 28414, "credit_id": "52fe436fc3a36847f80541a9", "cast_id": 21, "profile_path": "/4VwdiM9PUBxswxy7g7nGGeIC4o8.jpg", "order": 14}, {"name": "Bret Loehr", "character": "Timmy York", "id": 28415, "credit_id": "52fe436fc3a36847f80541ad", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Holmes Osborne", "character": "Richter Taylor", "id": 1578, "credit_id": "52fe436fc3a36847f80541b1", "cast_id": 23, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 16}, {"name": "Frederick Coffin", "character": "Detective Varole", "id": 28416, "credit_id": "52fe436fc3a36847f80541b5", "cast_id": 24, "profile_path": "/knyrsXPtKDU8F3Rp1ZGuGRHfxAe.jpg", "order": 17}, {"name": "Joe Hart", "character": "Bailiff Jenkins", "id": 28417, "credit_id": "52fe436fc3a36847f80541b9", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Michael Hirsch", "character": "Nackter Gesch\u00e4ftsmann", "id": 28418, "credit_id": "52fe436fc3a36847f80541bd", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Terence Bernie Hines", "character": "Bailiff", "id": 28419, "credit_id": "52fe436fc3a36847f80541c1", "cast_id": 27, "profile_path": "/uMC8ILPk0h2fN6ZM8N7kHq8Uxym.jpg", "order": 20}, {"name": "Stuart M. Besser", "character": "Gefrorene Leiche", "id": 28401, "credit_id": "52fe436fc3a36847f80541c5", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Pruitt Taylor Vince", "character": "Malcolm Rivers", "id": 3201, "credit_id": "52fe436fc3a36847f80541c9", "cast_id": 29, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 22}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe436fc3a36847f8054153", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 7.0, "runtime": 90}, "41154": {"poster_path": "/sIuneIyme2O3qYxEZTVNyJ0F0LC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 624026776, "overview": "Agents J (Will Smith) and K (Tommy Lee Jones) are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K (Josh Brolin) to save his partner, the agency, and the future of humankind.", "video": false, "id": 41154, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Men in Black 3", "tagline": "They are back... in time.", "vote_count": 2153, "homepage": "http://www.sonypictures.ca/english/movies/meninblack3/", "belongs_to_collection": {"backdrop_path": "/iGEoxfkFZXQcqAkDUDpnjqGCN6R.jpg", "poster_path": "/rWcgZaoJ0nxTFRn0H6w9bdtoDUI.jpg", "id": 86055, "name": "Men In Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1409024", "adult": false, "backdrop_path": "/7u3UyejCbhM3jXcZ86xzA9JJxge.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Hemisphere Media Capital", "id": 9169}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Media Magik Entertainment", "id": 5627}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2012-05-25", "popularity": 1.7883520936843, "original_title": "Men in Black 3", "budget": 225000000, "cast": [{"name": "Will Smith", "character": "Agent J", "id": 2888, "credit_id": "52fe45b7c3a36847f80d6875", "cast_id": 4, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Agent K", "id": 2176, "credit_id": "52fe45b7c3a36847f80d6879", "cast_id": 5, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Young Agent K", "id": 16851, "credit_id": "52fe45b7c3a36847f80d687d", "cast_id": 6, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Michael Stuhlbarg", "character": "Griffin", "id": 72873, "credit_id": "52fe45b7c3a36847f80d68a9", "cast_id": 15, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 3}, {"name": "Emma Thompson", "character": "Agent O", "id": 7056, "credit_id": "52fe45b7c3a36847f80d6893", "cast_id": 10, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 4}, {"name": "Jemaine Clement", "character": "Boris The Animal", "id": 55936, "credit_id": "52fe45b7c3a36847f80d6901", "cast_id": 31, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 5}, {"name": "Nicole Scherzinger", "character": "Boris's Girlfriend", "id": 151246, "credit_id": "52fe45b7c3a36847f80d6897", "cast_id": 11, "profile_path": "/vJksimGKKHXx6NlvqVIBfmo1XQA.jpg", "order": 6}, {"name": "Alice Eve", "character": "Young Agent O", "id": 59860, "credit_id": "52fe45b7c3a36847f80d68a1", "cast_id": 13, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 7}, {"name": "Bill Hader", "character": "Andy Warhol", "id": 19278, "credit_id": "52fe45b7c3a36847f80d68a5", "cast_id": 14, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 8}, {"name": "Michael Chernus", "character": "Jeffrey Price", "id": 87070, "credit_id": "52fe45b7c3a36847f80d6905", "cast_id": 33, "profile_path": "/z3H7if45AI2bpT98m5geAXdlrSV.jpg", "order": 9}, {"name": "David Rasche", "character": "Agent X", "id": 33533, "credit_id": "52fe45b7c3a36847f80d6909", "cast_id": 34, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 10}, {"name": "Keone Young", "character": "Mr. Wu", "id": 91387, "credit_id": "52fe45b7c3a36847f80d690d", "cast_id": 35, "profile_path": "/bzJWn4q0Vt6l5zZ33Q0dtB77g4S.jpg", "order": 11}, {"name": "Cayen Martin", "character": "Colonel's Son", "id": 1068400, "credit_id": "52fe45b7c3a36847f80d6911", "cast_id": 36, "profile_path": "/unS8e1UmhF3EMS3p79M5xgPHwfn.jpg", "order": 12}, {"name": "Mike Colter", "character": "Colonel", "id": 450, "credit_id": "52fe45b7c3a36847f80d6915", "cast_id": 37, "profile_path": "/eP0RelLOZrlMH2W3qFVx87VG9ij.jpg", "order": 13}, {"name": "Dan Bittner", "character": "MIB Tech #1 (uncredited)", "id": 1152008, "credit_id": "54c4157f92514124ed0064ab", "cast_id": 38, "profile_path": null, "order": 14}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe45b7c3a36847f80d6883", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.1, "runtime": 106}, "215830": {"poster_path": "/uO9pr6aMgHz8ofLrOAjHvhv7J3e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man awakes-- without memory -- in a pit full of bodies and must figure out if the people who rescued him are the killers, or if he is the murderer.", "video": false, "id": 215830, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Open Grave", "tagline": "The moment you wake up, the nightmare begins.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2071550", "adult": false, "backdrop_path": "/9aPAt8qyf3fMeQYRy743MarHrX4.jpg", "production_companies": [{"name": "Atlas Independent", "id": 18239}, {"name": "Speranza Films A/S", "id": 8703}, {"name": "852 Films", "id": 18892}], "release_date": "2013-08-13", "popularity": 0.440810919201106, "original_title": "Open Grave", "budget": 0, "cast": [{"name": "Sharlto Copley", "character": "John", "id": 82191, "credit_id": "52fe4e0ac3a368484e20aeb5", "cast_id": 5, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Joseph Morgan", "character": "Nathan", "id": 79505, "credit_id": "52fe4e0ac3a368484e20aeb1", "cast_id": 4, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 1}, {"name": "Thomas Kretschmann", "character": "Lukas", "id": 3491, "credit_id": "52fe4e0ac3a368484e20aeb9", "cast_id": 6, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 2}, {"name": "Erin Richards", "character": "Sharon", "id": 990300, "credit_id": "52fe4e0ac3a368484e20aebd", "cast_id": 7, "profile_path": "/3oIHsTEFUJd1jpnfOguM5s7hI6E.jpg", "order": 3}, {"name": "Josie Ho", "character": "Brown Eyes", "id": 78429, "credit_id": "52fe4e0ac3a368484e20aec1", "cast_id": 8, "profile_path": "/lbKcMciswqKaG6Sz6RylyoeGkoo.jpg", "order": 4}, {"name": "Max Wrottesley", "character": "Michael", "id": 1202683, "credit_id": "52fe4e0ac3a368484e20aec5", "cast_id": 9, "profile_path": "/fUU5LC93GA9kTZ8q37qP2wXvoQG.jpg", "order": 5}, {"name": "Kati Dombi", "character": "Moaner Woman", "id": 1282207, "credit_id": "52fe4e0ac3a368484e20aef9", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Eva Botos", "character": "Mother", "id": 1282208, "credit_id": "52fe4e0ac3a368484e20aefd", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Tofi Seffer", "character": "Boy", "id": 1282209, "credit_id": "52fe4e0ac3a368484e20af01", "cast_id": 20, "profile_path": null, "order": 8}], "directors": [{"name": "Gonzalo L\u00f3pez-Gallego", "department": "Directing", "job": "Director", "credit_id": "52fe4e0ac3a368484e20aea1", "profile_path": "/2C0IA635PgBHctQd60RJdROuJ1j.jpg", "id": 77123}], "vote_average": 5.9, "runtime": 102}, "8665": {"poster_path": "/sRLT9pkLnC9gjYnixxw99iLImzN.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35168966, "overview": "When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.", "video": false, "id": 8665, "genres": [{"id": 10752, "name": "War"}], "title": "K-19: The Widowmaker", "tagline": "Fate has found its hero.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0267626", "adult": false, "backdrop_path": "/tPhbQaiiFauAipdEuc9TQVgOmn6.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Intermedia Films", "id": 763}, {"name": "National Geographic Society", "id": 2471}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Palomar Pictures (II)", "id": 11371}, {"name": "First Light Production", "id": 20344}], "release_date": "2002-07-19", "popularity": 0.459599084659295, "original_title": "K-19: The Widowmaker", "budget": 100000000, "cast": [{"name": "Harrison Ford", "character": "Alexei Vostrikov", "id": 3, "credit_id": "52fe44b2c3a36847f80a4f6f", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Liam Neeson", "character": "Mikhail Polenin", "id": 3896, "credit_id": "52fe44b2c3a36847f80a4f73", "cast_id": 2, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Vadim Radtchinko", "id": 133, "credit_id": "52fe44b2c3a36847f80a4f77", "cast_id": 3, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Joss Ackland", "character": "Marshal Zelentsov", "id": 14324, "credit_id": "52fe44b2c3a36847f80a4f7b", "cast_id": 4, "profile_path": "/b1Ijg1F0RX8ZQG8jJ03VTjWpd8b.jpg", "order": 3}, {"name": "John Shrapnel", "character": "Admiral Bratyeev", "id": 940, "credit_id": "52fe44b2c3a36847f80a4f7f", "cast_id": 5, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 4}, {"name": "Donald Sumpter", "character": "Dr. Savran", "id": 20425, "credit_id": "52fe44b2c3a36847f80a4f83", "cast_id": 6, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 5}, {"name": "Tim Woodward", "character": "Partonov", "id": 27659, "credit_id": "52fe44b2c3a36847f80a4f87", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Steve Nicolson", "character": "Demichev", "id": 55578, "credit_id": "52fe44b2c3a36847f80a4f8b", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "George Anton", "character": "Konstantin", "id": 55581, "credit_id": "52fe44b2c3a36847f80a4f8f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "James Francis Ginty", "character": "Anatoly", "id": 55582, "credit_id": "52fe44b2c3a36847f80a4f93", "cast_id": 12, "profile_path": "/j7jfR3NmzzmmldoF4vqPTddr3ew.jpg", "order": 9}, {"name": "Lex Shrapnel", "character": "Kornilov", "id": 55583, "credit_id": "52fe44b2c3a36847f80a4f97", "cast_id": 13, "profile_path": "/z3CV8Attp3VwSEraDGMAadpnOWc.jpg", "order": 10}, {"name": "Ingvar Eggert Sigur\u00f0sson", "character": "Gorelov", "id": 55584, "credit_id": "52fe44b2c3a36847f80a4f9b", "cast_id": 14, "profile_path": "/yHSbMqfSO4yWjEWwePBMDi8o7jb.jpg", "order": 11}, {"name": "Sam Spruell", "character": "Dmitri", "id": 55585, "credit_id": "52fe44b2c3a36847f80a4f9f", "cast_id": 15, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 12}, {"name": "Sam Redford", "character": "Vasily", "id": 55586, "credit_id": "52fe44b2c3a36847f80a4fa3", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Peter Stebbings", "character": "Kuryshev", "id": 55587, "credit_id": "52fe44b2c3a36847f80a4fa7", "cast_id": 17, "profile_path": "/xIwQc40ilQVKAJM6GmvkMvPBIiw.jpg", "order": 14}, {"name": "Roman Podhora", "character": "Lapinsh", "id": 55588, "credit_id": "52fe44b2c3a36847f80a4fab", "cast_id": 18, "profile_path": "/bsLXnsfdwKkeQw7Q6vCFb5SD2Wv.jpg", "order": 15}, {"name": "Shaun Benson", "character": "Leonid", "id": 55589, "credit_id": "52fe44b2c3a36847f80a4faf", "cast_id": 19, "profile_path": "/9d6QEFzN90bg9ekqnWlJ0IGDIv8.jpg", "order": 16}, {"name": "Dmitry Chepovetsky", "character": "Sergei", "id": 29878, "credit_id": "52fe44b2c3a36847f80a4fb3", "cast_id": 21, "profile_path": "/pZjoP2skZvf0sFaF2GYRCMttp35.jpg", "order": 17}, {"name": "Christopher Redman", "character": "Kiklidze", "id": 32204, "credit_id": "52fe44b2c3a36847f80a4fb7", "cast_id": 22, "profile_path": "/oRUUfZV89SH3l040RZTRNis3IIS.jpg", "order": 18}, {"name": "Tygh Runyan", "character": "Maxim", "id": 55591, "credit_id": "52fe44b2c3a36847f80a4fbb", "cast_id": 23, "profile_path": "/vHlo0lwXAHGzCBEL6mrum39exdO.jpg", "order": 19}, {"name": "Peter Graham", "character": "Danya Yashin", "id": 1399074, "credit_id": "548da3d5c3a3684ea1003e4b", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Shawn Mathieson", "character": "Stepan", "id": 55593, "credit_id": "52fe44b2c3a36847f80a4fc3", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Jacob Pitts", "character": "Grigori", "id": 54414, "credit_id": "52fe44b2c3a36847f80a4fc7", "cast_id": 26, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 22}, {"name": "Christopher Routh", "character": "Oleg", "id": 55594, "credit_id": "52fe44b2c3a36847f80a4fcb", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Lubomir Mykytiuk", "character": "Dr. Gavril", "id": 55595, "credit_id": "52fe44b2c3a36847f80a4fcf", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Michael Gladis", "character": "Yevgeny Borzenkov", "id": 55596, "credit_id": "52fe44b2c3a36847f80a4fd3", "cast_id": 29, "profile_path": "/4hjSAZY4llqxpu1FAJcPWP3llgA.jpg", "order": 25}, {"name": "Christian Camargo", "character": "Pavel", "id": 122029, "credit_id": "52fe44b3c3a36847f80a5025", "cast_id": 43, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 26}, {"name": "Ravil Isyanov", "character": "Suslov", "id": 41742, "credit_id": "52fe44b3c3a36847f80a5029", "cast_id": 44, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 27}, {"name": "Kristen Holden-Ried", "character": "Anton", "id": 557840, "credit_id": "52fe44b3c3a36847f80a502d", "cast_id": 45, "profile_path": "/zhl2SZHzv4lx68BuGaqjvNZ7239.jpg", "order": 28}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe44b2c3a36847f80a4fd9", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 5.8, "runtime": 138}, "2841": {"poster_path": "/jtE7Xrj8KKnhGI3p2yCgwrtUCnd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In 1919, Mathilde was 19 years old. Two years earlier, her fianc\u00e9 Manech left for the front at the Somme. Like millions of others he was \"killed on the field of battle.\" It's written in black and white on the official notice. But Mathilde refuses to believe it. If Manech had died, she would know. She hangs on to her intuition as tightly as she would onto the last thread of hope linking her to her lover. A former sergeant tells her in vain that Manech died in the no man's land of a trench named Bingo Crepescule, in the company of four other men condemned to die for self-inflicted wounds. Her path ahead is full of obstacles but Mathilde is not frightened. Anything is possible to someone who is willing to challenge fate...", "video": false, "id": 2841, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "A Very Long Engagement", "tagline": "Never let go", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "co", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0344510", "adult": false, "backdrop_path": "/klrbSV0LTP5T6lZgLjQ2yvHnReS.jpg", "production_companies": [{"name": "Warner Bros. France", "id": 2913}, {"name": "2003 Productions", "id": 1232}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Tapioca Films", "id": 12000}], "release_date": "2004-10-26", "popularity": 0.63601639612124, "original_title": "Un long dimanche de fian\u00e7ailles", "budget": 47000000, "cast": [{"name": "Audrey Tautou", "character": "Mathilde", "id": 2405, "credit_id": "52fe4370c3a36847f80542c5", "cast_id": 8, "profile_path": "/zVBnztf1vAJg6COSEyrQaUUr2PS.jpg", "order": 0}, {"name": "Gaspard Ulliel", "character": "Manech", "id": 16790, "credit_id": "52fe4370c3a36847f80542c9", "cast_id": 9, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 1}, {"name": "Dominique Pinon", "character": "Sylvain", "id": 2413, "credit_id": "52fe4370c3a36847f80542cd", "cast_id": 10, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 2}, {"name": "Chantal Neuwirth", "character": "B\u00e9n\u00e9dicte", "id": 17901, "credit_id": "52fe4370c3a36847f80542d1", "cast_id": 11, "profile_path": "/vHPORFjUCqI74qpuJGaYMfzdkeZ.jpg", "order": 3}, {"name": "Andr\u00e9 Dussollier", "character": "Pierre-Marie Rouvi\u00e8res", "id": 18177, "credit_id": "52fe4370c3a36847f80542d5", "cast_id": 12, "profile_path": "/rKZXoZJBUMKRbACbAGEat7wvAr7.jpg", "order": 4}, {"name": "Ticky Holgado", "character": "Germain Pire", "id": 13689, "credit_id": "52fe4370c3a36847f80542d9", "cast_id": 13, "profile_path": "/2G0LmyNhNWlR55Zm5nlY6S79rPN.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Tina Lombardi", "id": 8293, "credit_id": "52fe4370c3a36847f80542dd", "cast_id": 14, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Dominique Bettenfeld", "character": "Ange Bassignano", "id": 28462, "credit_id": "52fe4370c3a36847f80542e1", "cast_id": 15, "profile_path": "/4LovjhsdwsUsHjFfIyOoWPYBB6T.jpg", "order": 7}, {"name": "Jodie Foster", "character": "Elodie Gordes", "id": 1038, "credit_id": "52fe4370c3a36847f80542e5", "cast_id": 16, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 8}, {"name": "Jean-Pierre Darroussin", "character": "Benjamin Gordes", "id": 28463, "credit_id": "52fe4370c3a36847f80542e9", "cast_id": 17, "profile_path": "/d3lWrOKPwy0qJGdqe5SZHZ83TU0.jpg", "order": 9}, {"name": "Denis Lavant", "character": "Six-Soux", "id": 27978, "credit_id": "52fe4370c3a36847f80542ed", "cast_id": 18, "profile_path": "/fcMuYJwZvWjk2wf9vButEWiNvNM.jpg", "order": 10}, {"name": "Rufus", "character": "Un Breton", "id": 2407, "credit_id": "52fe4370c3a36847f80542f1", "cast_id": 19, "profile_path": "/bbMPwEFZaALc3VqBPZ8od2rmRuv.jpg", "order": 11}, {"name": "J\u00e9r\u00f4me Kircher", "character": "Bastoche", "id": 28857, "credit_id": "52fe4370c3a36847f80542f5", "cast_id": 20, "profile_path": "/vBYHMIxRpI8oIiI1o0e2tFyFqjr.jpg", "order": 12}, {"name": "Denis Lavant", "character": "Six Sous", "id": 27978, "credit_id": "52fe4370c3a36847f80542f9", "cast_id": 21, "profile_path": "/fcMuYJwZvWjk2wf9vButEWiNvNM.jpg", "order": 13}, {"name": "Albert Dupontel", "character": "C\u00e9lestin Poux", "id": 14606, "credit_id": "52fe4370c3a36847f80542fd", "cast_id": 22, "profile_path": "/bBqRJl8IQXxKuYTNhoYRER9JO34.jpg", "order": 14}, {"name": "Elina L\u00f6wensohn", "character": "la soeur de G\u00fcnther", "id": 17257, "credit_id": "52fe4370c3a36847f8054301", "cast_id": 23, "profile_path": "/enJyuf5k0QTOiMEBFHf8dePZUTV.jpg", "order": 15}, {"name": "Jean-Claude Dreyfus", "character": "Commandant Lavrouye", "id": 13687, "credit_id": "52fe4370c3a36847f8054305", "cast_id": 24, "profile_path": "/jOM2R4IViRNOnbCpm1YiPavEyw0.jpg", "order": 16}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4370c3a36847f805429d", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 7.1, "runtime": 133}, "11036": {"poster_path": "/gMfstesBXKdsHToAUXVPHujUDfb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 115603229, "overview": "An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.", "video": false, "id": 11036, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Notebook", "tagline": "Behind every great love is a great story.", "vote_count": 860, "homepage": "http://www.newline.com/properties/notebookthe.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0332280", "adult": false, "backdrop_path": "/AprhfmDEwy14xyjaAlcwdLolLjq.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2004-06-25", "popularity": 1.30387618522892, "original_title": "The Notebook", "budget": 29000000, "cast": [{"name": "Rachel McAdams", "character": "Allie Hamilton", "id": 53714, "credit_id": "52fe43e89251416c75022ad9", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "Noah Calhoun", "id": 30614, "credit_id": "52fe43e89251416c75022add", "cast_id": 5, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Gena Rowlands", "character": "Allie Calhoun", "id": 4800, "credit_id": "52fe43e89251416c75022ae1", "cast_id": 6, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 2}, {"name": "James Garner", "character": "Duke", "id": 16896, "credit_id": "52fe43e89251416c75022ae5", "cast_id": 7, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 3}, {"name": "Sam Shepard", "character": "Frank Calhoun", "id": 9880, "credit_id": "52fe43e89251416c75022b01", "cast_id": 14, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 4}, {"name": "Joan Allen", "character": "Anne Hamilton", "id": 11148, "credit_id": "52fe43e89251416c75022b05", "cast_id": 15, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 5}, {"name": "James Marsden", "character": "Lon Hammond Jr.", "id": 11006, "credit_id": "52fe43e89251416c75022b0d", "cast_id": 17, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 6}, {"name": "David Thornton", "character": "John Hamilton", "id": 76526, "credit_id": "536269640e0a2649b1001b01", "cast_id": 22, "profile_path": "/jDcmAwRCUYd3QSVEVc9Xq2Yi9Xf.jpg", "order": 7}, {"name": "Kevin Connolly", "character": "Fin", "id": 16666, "credit_id": "536265ddc3a36839560017fd", "cast_id": 21, "profile_path": "/4bKLYeNGbIdFE5iEal9o8yjWQdz.jpg", "order": 8}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe43e89251416c75022ac9", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 7.2, "runtime": 123}, "51999": {"poster_path": "/6MfGnRmzvF0zCnKVKCZ8nOjULuz.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 908000, "overview": "Susan is a scientist searching for answers to important questions. So important that she has given up on other things, like love - until she meets Micheal. Susan and Michael find themselves embarking on a sensual adventure while the world around them seems to be falling apart. A life-affirming look at what it means to love and be loved in turbulent times.", "video": false, "id": 51999, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Perfect Sense", "tagline": "Without love there is nothing.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1439572", "adult": false, "backdrop_path": "/vZvxd57J6rkpnWthrTU2Eo02cMT.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Zentropa Entertainments", "id": 76}, {"name": "Scottish Screen", "id": 698}, {"name": "Danish Filminstitute", "id": 5474}, {"name": "Film i V\u00e4st", "id": 6417}], "release_date": "2011-01-24", "popularity": 0.375165093446422, "original_title": "Perfect Sense", "budget": 0, "cast": [{"name": "Ewan McGregor", "character": "Michael", "id": 3061, "credit_id": "52fe4811c3a36847f8156c1b", "cast_id": 7, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Eva Green", "character": "Susan", "id": 10912, "credit_id": "52fe4811c3a36847f8156c1f", "cast_id": 8, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Ewen Bremner", "character": "James", "id": 1125, "credit_id": "52fe4811c3a36847f8156c23", "cast_id": 9, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 2}, {"name": "Stephen Dillane", "character": "Samuel", "id": 8435, "credit_id": "52fe4811c3a36847f8156c27", "cast_id": 10, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 3}, {"name": "Denis Lawson", "character": "Detective", "id": 47698, "credit_id": "52fe4811c3a36847f8156c2b", "cast_id": 11, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 4}, {"name": "James Watson", "character": "Bus Driver", "id": 135056, "credit_id": "52fe4811c3a36847f8156c2f", "cast_id": 12, "profile_path": "/p1khTr6wrKb1n3hFm03POdR2swG.jpg", "order": 5}, {"name": "Richard Mack", "character": "Apprentice Chef", "id": 239568, "credit_id": "52fe4811c3a36847f8156c33", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Shabana Akhtar Bakhsh", "character": "Nurse", "id": 16904, "credit_id": "52fe4811c3a36847f8156c37", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Liz Strange", "character": "Pretty Girl", "id": 544188, "credit_id": "52fe4811c3a36847f8156c3b", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Caroline Paterson", "character": "Patient's Wife", "id": 544189, "credit_id": "52fe4811c3a36847f8156c3f", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Malcolm Shields", "character": "Patient", "id": 143419, "credit_id": "52fe4811c3a36847f8156c43", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Adam Smith", "character": "Virology Technician", "id": 207004, "credit_id": "52fe4811c3a36847f8156c47", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Connie Nielsen", "character": "Jenny", "id": 935, "credit_id": "52fe4811c3a36847f8156c4b", "cast_id": 19, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 12}, {"name": "Alastair Mackenzie", "character": "", "id": 39970, "credit_id": "52fe4811c3a36847f8156c4f", "cast_id": 20, "profile_path": "/jGgIabBwHh4Ixp2rHCJCkngZXfF.jpg", "order": 13}], "directors": [{"name": "David Mackenzie", "department": "Directing", "job": "Director", "credit_id": "52fe4811c3a36847f8156c11", "profile_path": "/oHZ2kkGICUnSbm73BQFK3Hau82f.jpg", "id": 3055}], "vote_average": 6.9, "runtime": 92}, "16859": {"poster_path": "/auOehwejihm5F1Bxr9XiZA0VFUH.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 18172849, "overview": "A young witch, on her mandatory year of independent life, finds fitting into a new community difficult while she supports herself by running an air courier service.", "video": false, "id": 16859, "genres": [{"id": 16, "name": "Animation"}], "title": "Kiki's Delivery Service", "tagline": "I was feeling blue, but I'm better now.", "vote_count": 205, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0097814", "adult": false, "backdrop_path": "/fSbiMnUXJ6rrSuf3MN7pFqUtws4.jpg", "production_companies": [{"name": "Tokuma Shoten", "id": 1779}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Nibariki", "id": 12516}], "release_date": "1989-07-29", "popularity": 1.11273680877772, "original_title": "\u9b54\u5973\u306e\u5b85\u6025\u4fbf", "budget": 0, "cast": [{"name": "Minami Takayama", "character": "Kiki / Ursula", "id": 68470, "credit_id": "52fe46f19251416c750889cb", "cast_id": 19, "profile_path": null, "order": 0}, {"name": "Rei Sakuma", "character": "Jiji", "id": 218144, "credit_id": "52fe46f19251416c750889cf", "cast_id": 20, "profile_path": null, "order": 1}, {"name": "Kappei Yamaguchi", "character": "Tombo", "id": 68472, "credit_id": "52fe46f19251416c750889d3", "cast_id": 21, "profile_path": "/8QpMGuviKgXS9Kx3IbAJeQclQY.jpg", "order": 2}, {"name": "Keiko Toda", "character": "Osono", "id": 57736, "credit_id": "52fe46f19251416c750889d7", "cast_id": 22, "profile_path": "/suGI9j1XVMsbUq6K8FbXTm5vIWN.jpg", "order": 3}, {"name": "Mieko Nobusawa", "character": "Kokiri, Kiki's mother", "id": 552598, "credit_id": "52fe46f19251416c750889db", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "K\u00f4ichi Miura", "character": "Okino, Kiki's Dad", "id": 552599, "credit_id": "52fe46f19251416c750889df", "cast_id": 24, "profile_path": null, "order": 5}, {"name": "Haruko Kato", "character": "R\u00f4-fujin (Madame)", "id": 40453, "credit_id": "52fe46f19251416c750889e3", "cast_id": 25, "profile_path": "/fpI47MewcRZn0Ro5LXRfrEptaWW.jpg", "order": 6}, {"name": "Hiroko Seki", "character": "Barsa", "id": 551769, "credit_id": "52fe46f19251416c750889e7", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Yuriko Fuchizaki", "character": "Ketto", "id": 1684, "credit_id": "52fe46f19251416c750889eb", "cast_id": 27, "profile_path": "/mFvqwyTM9ArTbWgOOCMGsDeEwG3.jpg", "order": 8}, {"name": "K\u00f4ichi Yamadera", "character": "Bakery worker, policeman", "id": 40328, "credit_id": "52fe46f19251416c750889ef", "cast_id": 28, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 9}, {"name": "Kikuko Inoue", "character": "Beautiful designer girl", "id": 101913, "credit_id": "52fe46f19251416c750889f3", "cast_id": 29, "profile_path": "/5L2IMLJIN7XynIn5tVr80dcaKNG.jpg", "order": 10}, {"name": "Y\u00fbko Kobayashi", "character": "Young sempai witch", "id": 552600, "credit_id": "52fe46f19251416c750889f7", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Mika Doi", "character": "Ketto's mother", "id": 76396, "credit_id": "52fe46f19251416c750889fb", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Takaya Hashi", "character": "Ketto's father", "id": 111373, "credit_id": "52fe46f19251416c750889ff", "cast_id": 32, "profile_path": "/fjESGfbh2CSJuuKl9zh6kE9vBZQ.jpg", "order": 16}, {"name": "Chika Sakamoto", "character": "Baby", "id": 55664, "credit_id": "52fe46f19251416c75088a03", "cast_id": 33, "profile_path": "/b84KZUb7zjrXP21aYLSJXcJoRTC.jpg", "order": 17}, {"name": "Toshiko Asai", "character": "", "id": 552601, "credit_id": "52fe46f19251416c75088a07", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Yoshiko Kamei", "character": "", "id": 121712, "credit_id": "52fe46f19251416c75088a0b", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Hiroko Maruyama", "character": "", "id": 552602, "credit_id": "52fe46f19251416c75088a0f", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Shinpachi Tsuji", "character": "", "id": 65438, "credit_id": "52fe46f19251416c75088a13", "cast_id": 37, "profile_path": "/wW5VJ3jIWn9S4OelGId5MaRzIdw.jpg", "order": 21}, {"name": "Y\u00fbko Maruyama", "character": "", "id": 552603, "credit_id": "52fe46f19251416c75088a17", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Masa Sait\u00f4", "character": "", "id": 552604, "credit_id": "52fe46f19251416c75088a1b", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Y\u00fbko Tsuga", "character": "", "id": 552605, "credit_id": "52fe46f19251416c75088a1f", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Akio Ohtsuka", "character": "", "id": 550623, "credit_id": "52fe46f19251416c75088a23", "cast_id": 41, "profile_path": "/lxew3RhQ7q8zMMuHTdRmSlXHFO8.jpg", "order": 25}, {"name": "Tomomichi Nishimura", "character": "", "id": 81859, "credit_id": "52fe46f19251416c75088a27", "cast_id": 42, "profile_path": "/kZXRpvXwI0F1qbKNff3dOG2BodA.jpg", "order": 26}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe46f09251416c75088967", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.2, "runtime": 103}, "11045": {"poster_path": "/7ACo6yQbtXjt5bP1EPhkShAizgc.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36609966, "overview": "A mouthy and feisty taxicab driver has hot tips for a green and inept cop set on solving a string of New York City bank robberies committed by a quartet of female Brazilian bank robbers.", "video": false, "id": 11045, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Taxi", "tagline": "Take a Ride on the Wild Side.", "vote_count": 60, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0316732", "adult": false, "backdrop_path": "/wPbv4JgnF6aKVLvD6NS4nDvTX6C.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2004-10-06", "popularity": 0.641596829424643, "original_title": "Taxi", "budget": 25000000, "cast": [{"name": "Queen Latifah", "character": "Isabelle 'Belle' Williams", "id": 15758, "credit_id": "52fe43ea9251416c75022e9b", "cast_id": 1, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 0}, {"name": "Jimmy Fallon", "character": "Andrew 'Andy' Washburn", "id": 11669, "credit_id": "52fe43ea9251416c75022e9f", "cast_id": 2, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 1}, {"name": "Gisele B\u00fcndchen", "character": "Vanessa", "id": 10583, "credit_id": "52fe43ea9251416c75022eab", "cast_id": 5, "profile_path": "/j3Lm6iGXPE57990A8DKW563BzYt.jpg", "order": 2}, {"name": "Henry Simmons", "character": "Jesse", "id": 67913, "credit_id": "52fe43ea9251416c75022ea3", "cast_id": 3, "profile_path": "/ajSaqDbQfi6eAFULhpCSezYplUF.jpg", "order": 3}, {"name": "Jennifer Esposito", "character": "Lt. Marta Robbins", "id": 18285, "credit_id": "52fe43ea9251416c75022ea7", "cast_id": 4, "profile_path": "/faY5fwjsJ8da3wJWSE7kQ3MPhgz.jpg", "order": 4}, {"name": "Ann-Margret", "character": "Mrs. Washburn", "id": 13567, "credit_id": "52fe43ea9251416c75022ef7", "cast_id": 18, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 5}, {"name": "Christian Kane", "character": "Agent Mullins", "id": 71198, "credit_id": "52fe43ea9251416c75022efb", "cast_id": 19, "profile_path": "/urL5yaMaEhm5HLOfkDOsZgX1I5f.jpg", "order": 6}, {"name": "Henry Simmons", "character": "Jesse", "id": 67913, "credit_id": "52fe43ea9251416c75022eff", "cast_id": 20, "profile_path": "/ajSaqDbQfi6eAFULhpCSezYplUF.jpg", "order": 7}, {"name": "Ana Cristina Oliveira", "character": "Redhead", "id": 73753, "credit_id": "52fe43ea9251416c75022f03", "cast_id": 21, "profile_path": "/nK8I9mOfA4wzOAaosP3jnjPL6tC.jpg", "order": 8}, {"name": "Patton Oswalt", "character": "Clerk at Inpound Office", "id": 10872, "credit_id": "52fe43ea9251416c75022f07", "cast_id": 22, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 9}, {"name": "John Krasinski", "character": "Messenger #3", "id": 17697, "credit_id": "52fe43ea9251416c75022f0b", "cast_id": 23, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 10}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe43ea9251416c75022eb1", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 5.0, "runtime": 97}, "11046": {"poster_path": "/70lTWYeTtQfQ9HVKE12ZS7r89jM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "World War II is raging, and an American general has been captured and is being held hostage in the Schloss Adler, a Bavarian castle that's nearly impossible to breach. It's up to a group of skilled Allied soldiers to liberate the general before it's too late.", "video": false, "id": 11046, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Where Eagles Dare", "tagline": "They dare to climb a terrifying new peak in suspense... all the way up to hell!", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0065207", "adult": false, "backdrop_path": "/aZBg3z7G2QkddfXRZ8H0MY2pgGT.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Jerry Gershwin Productions", "id": 14390}, {"name": "Elliott Kastner Productions", "id": 14391}, {"name": "Winkast Film Productions", "id": 13721}], "release_date": "1968-12-04", "popularity": 0.665622618625099, "original_title": "Where Eagles Dare", "budget": 0, "cast": [{"name": "Richard Burton", "character": "Maj. Jonathan Smith, MC", "id": 5341, "credit_id": "52fe43ea9251416c75022f3f", "cast_id": 1, "profile_path": "/fRoBAQQP9sfnIYuqw546yFs3qKn.jpg", "order": 0}, {"name": "Clint Eastwood", "character": "Lt. Morris Schaffer", "id": 190, "credit_id": "52fe43ea9251416c75022f43", "cast_id": 2, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 1}, {"name": "Mary Ure", "character": "Mary Elison", "id": 67916, "credit_id": "52fe43ea9251416c75022f47", "cast_id": 3, "profile_path": "/3RLNwYPjiV3RZXqOUixOfAki6o6.jpg", "order": 2}, {"name": "Patrick Wymark", "character": "Col. Wyatt Turner, DSO MC", "id": 67917, "credit_id": "52fe43ea9251416c75022f4b", "cast_id": 4, "profile_path": "/vrXTDBBGi4UdXFt8aEupKPTee9R.jpg", "order": 3}, {"name": "Michael Hordern", "character": "Adm. Rolland", "id": 39741, "credit_id": "52fe43ea9251416c75022f7f", "cast_id": 13, "profile_path": "/jvy4gJc9cS1MJPgHJXefRUYGUYJ.jpg", "order": 4}, {"name": "Donald Houston", "character": "Christiansen", "id": 38358, "credit_id": "52fe43ea9251416c75022f83", "cast_id": 14, "profile_path": "/yyMettco7cwI341gCc6JLm0shRq.jpg", "order": 5}, {"name": "Peter Barkworth", "character": "Berkeley", "id": 183207, "credit_id": "52fe43ea9251416c75022f87", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "William Squire", "character": "Thomas", "id": 16271, "credit_id": "52fe43ea9251416c75022f8b", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Robert Beatty", "character": "Gen. George Carnaby", "id": 251, "credit_id": "52fe43ea9251416c75022f8f", "cast_id": 17, "profile_path": "/nQrvFDN5pIo4y5qHRgsCJ3zpoQM.jpg", "order": 8}, {"name": "Brook Williams", "character": "Sgt. Harrod", "id": 102663, "credit_id": "52fe43eb9251416c75022f93", "cast_id": 18, "profile_path": "/6tkfggZ0AujmPo8QZ2DMOEb2hwr.jpg", "order": 9}, {"name": "Neil McCarthy", "character": "Sgt. Jock MacPherson", "id": 2601, "credit_id": "52fe43eb9251416c75022f97", "cast_id": 19, "profile_path": "/sNQxZARN2qUtNzL28oyJnmuZWGe.jpg", "order": 10}, {"name": "Vincent Ball", "character": "Carpenter", "id": 75395, "credit_id": "52fe43eb9251416c75022f9b", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Anton Diffring", "character": "Col. Kramer", "id": 97935, "credit_id": "52fe43eb9251416c75022f9f", "cast_id": 21, "profile_path": "/uxeoDzNhNrarOask3HjYpekrGl6.jpg", "order": 12}, {"name": "Ferdy Mayne", "character": "Rosemeyer", "id": 26557, "credit_id": "52fe43eb9251416c75022fa3", "cast_id": 22, "profile_path": "/cUfriRFlTJpP5XxITl5Y4KxTsfl.jpg", "order": 13}, {"name": "Derren Nesbitt", "character": "Von Hapen", "id": 74262, "credit_id": "52fe43eb9251416c75022fa7", "cast_id": 23, "profile_path": "/6R5B10NmU0NMJqwLITL20m18ku1.jpg", "order": 14}, {"name": "Victor Beaumont", "character": "Col. Weissner", "id": 119360, "credit_id": "5374f40a0e0a267c590043df", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Ingrid Pitt", "character": "Heidi", "id": 83739, "credit_id": "5374f4230e0a267c5f0042b0", "cast_id": 32, "profile_path": "/dlFxz3UkLq3EjV0WClzbcfEzYXu.jpg", "order": 16}, {"name": "Guy Deghy", "character": "Maj. Wilhelm Wilner (uncredited)", "id": 93946, "credit_id": "5479efe8c3a36803df000439", "cast_id": 41, "profile_path": null, "order": 17}], "directors": [{"name": "Brian G. Hutton", "department": "Directing", "job": "Director", "credit_id": "52fe43ea9251416c75022f51", "profile_path": "/cem8wlan7z6amIzoeKmAvC8yRZF.jpg", "id": 54451}], "vote_average": 7.0, "runtime": 155}, "95": {"poster_path": "/coINnuCzcw5FMHBty8hcudMOBnO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 553799566, "overview": "An asteroid the size of Texas is heading directly toward Earth at 22,000 mph. NASA's executive director, Dan Truman, has only one option - to send up a crew to destroy the asteroid. He enlists the help of Harry S. Stamper - the world's foremost deep core oil driller - and Stamper's roughneck team of drillers to land on the asteroid, drill into its surface, and drop a nuclear device.", "video": false, "id": 95, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Armageddon", "tagline": "Earth. It Was Fun While It Lasted.", "vote_count": 956, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0120591", "adult": false, "backdrop_path": "/ouNshZ43nE4tWdZo3QAFH8525Ps.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Valhalla Motion Pictures", "id": 11533}], "release_date": "1998-06-30", "popularity": 1.54251550105097, "original_title": "Armageddon", "budget": 140000000, "cast": [{"name": "Bruce Willis", "character": "Harry S. Stamper", "id": 62, "credit_id": "52fe4216c3a36847f800316b", "cast_id": 7, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Billy Bob Thornton", "character": "Dan Truman, NASA Administrator", "id": 879, "credit_id": "52fe4216c3a36847f800316f", "cast_id": 8, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 1}, {"name": "Ben Affleck", "character": "A.J. Frost", "id": 880, "credit_id": "52fe4216c3a36847f8003173", "cast_id": 9, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 2}, {"name": "Liv Tyler", "character": "Grace Stamper", "id": 882, "credit_id": "52fe4216c3a36847f8003177", "cast_id": 10, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 3}, {"name": "Will Patton", "character": "Charles 'Chick' Chapple", "id": 883, "credit_id": "52fe4216c3a36847f800317b", "cast_id": 11, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 4}, {"name": "Steve Buscemi", "character": "Rockhound", "id": 884, "credit_id": "52fe4216c3a36847f800317f", "cast_id": 12, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 5}, {"name": "William Fichtner", "character": "Colonel William Sharp, Shuttle Freedom Pilot", "id": 886, "credit_id": "52fe4216c3a36847f8003183", "cast_id": 13, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 6}, {"name": "Michael Clarke Duncan", "character": "Jayotis 'Bear' Kurleenbear", "id": 61981, "credit_id": "52fe4216c3a36847f8003187", "cast_id": 15, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 7}, {"name": "Peter Stormare", "character": "Lev Andropov, Russian Cosmonaut", "id": 53, "credit_id": "52fe4216c3a36847f800318b", "cast_id": 16, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 8}, {"name": "Owen Wilson", "character": "Oscar Choi", "id": 887, "credit_id": "52fe4216c3a36847f80031e3", "cast_id": 31, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 9}, {"name": "Ken Hudson Campbell", "character": "Max", "id": 236327, "credit_id": "52fe4216c3a36847f80031e7", "cast_id": 32, "profile_path": "/lN9e975UkER6sRu9tKpeL2XyU5D.jpg", "order": 10}, {"name": "Jessica Steen", "character": "Co-Pilot Jennifer Watts", "id": 42707, "credit_id": "52fe4216c3a36847f80031eb", "cast_id": 33, "profile_path": "/lZMvl7tJZPThfF7Lnui4wgEoOIf.jpg", "order": 11}, {"name": "Chris Ellis", "character": "Flight Director Clark", "id": 8191, "credit_id": "52fe4216c3a36847f80031ef", "cast_id": 34, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 12}, {"name": "Keith David", "character": "General Kimsey", "id": 65827, "credit_id": "52fe4216c3a36847f80031f3", "cast_id": 35, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 13}, {"name": "Jason Isaacs", "character": "Ronald Quincy", "id": 11355, "credit_id": "52fe4216c3a36847f80031f7", "cast_id": 36, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 14}, {"name": "Marshall R. Teague", "character": "Colonel Davis", "id": 63941, "credit_id": "539824c50e0a266db400c7ec", "cast_id": 42, "profile_path": "/qRDCvSWg76O071pggoGeru30SGk.jpg", "order": 15}, {"name": "J. Patrick McCormack", "character": "General Boffer", "id": 93958, "credit_id": "5398251d0e0a266db700c72e", "cast_id": 43, "profile_path": "/m7UeFeNJ6F2bABqi893zJXZLHkO.jpg", "order": 16}, {"name": "Ian Quinn", "character": "Astronaut Pete Shelby", "id": 1329760, "credit_id": "539825660e0a266dbf00c5f7", "cast_id": 44, "profile_path": "/emd0IL5L91NIUNwYS98K8DUXFKA.jpg", "order": 17}, {"name": "Charlton Heston", "character": "Narrator", "id": 10017, "credit_id": "53ead48cc3a36868a0000546", "cast_id": 45, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 18}, {"name": "Eddie Griffin", "character": "Bike Messenger", "id": 62842, "credit_id": "53ead4a1c3a3686891000576", "cast_id": 46, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 19}, {"name": "Grace Zabriskie", "character": "Dottie", "id": 6465, "credit_id": "5492a342c3a36860680006a2", "cast_id": 117, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 20}, {"name": "Stanley Anderson", "character": "President", "id": 15253, "credit_id": "5492a371925141090e0012ea", "cast_id": 118, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 21}, {"name": "James Harper", "character": "Admiral Kelso", "id": 167178, "credit_id": "5492a3f0925141090c001364", "cast_id": 119, "profile_path": null, "order": 22}, {"name": "Ellen Cleghorne", "character": "Helga the Nurse", "id": 1232807, "credit_id": "5492a41192514118f2001196", "cast_id": 120, "profile_path": null, "order": 23}, {"name": "Udo Kier", "character": "Psychologist", "id": 1646, "credit_id": "5492a428c3a3683cf800121f", "cast_id": 121, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 24}, {"name": "Michael Bay", "character": "NASA Scientist (uncredited)", "id": 865, "credit_id": "551b911a9251413f6f0010ea", "cast_id": 122, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 25}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4216c3a36847f8003149", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 151}, "76589": {"poster_path": "/4KIk5Odvkpwlf5y0QYqohTTlujw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An adaptation of Mark Waid's \"Tower of Babel\" story from the JLA comic. Vandal Savage steals confidential files Batman has compiled on the members of the Justice League, and learns all their weaknesses.", "video": false, "id": 76589, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 53, "name": "Thriller"}], "title": "Justice League: Doom", "tagline": "The end of justice.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2027128", "adult": false, "backdrop_path": "/dfgkhmFGmyynhcejN0Il36eBQc2.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2012-02-28", "popularity": 0.584568414715323, "original_title": "Justice League: Doom", "budget": 0, "cast": [{"name": "Nathan Fillion", "character": "Hal Jordan / Green Lantern", "id": 51797, "credit_id": "52fe4942c3a368484e1227a3", "cast_id": 1, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 0}, {"name": "Olivia d'Abo", "character": "Star Sapphire", "id": 46423, "credit_id": "52fe4942c3a368484e1227a7", "cast_id": 2, "profile_path": "/ffeCJwgPXSrurcfFrjEyvCXsPUz.jpg", "order": 1}, {"name": "Claudia Black", "character": "Cheetah", "id": 26054, "credit_id": "52fe4942c3a368484e1227ab", "cast_id": 3, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 2}, {"name": "Michael Rosenbaum", "character": "The Flash", "id": 19975, "credit_id": "52fe4942c3a368484e1227af", "cast_id": 4, "profile_path": "/kfitDCFN9JJxZF6IE0XzgdgDtXr.jpg", "order": 3}, {"name": "Tim Daly", "character": "Superman", "id": 68122, "credit_id": "52fe4942c3a368484e1227b3", "cast_id": 6, "profile_path": "/eLBlqpzOv1F9oPcWSU76yiuXneU.jpg", "order": 4}, {"name": "Kevin Conroy", "character": "Batman", "id": 34947, "credit_id": "52fe4942c3a368484e122805", "cast_id": 27, "profile_path": "/oWfPFRH65zNdeV46zSTXD0jVr8q.jpg", "order": 5}, {"name": "Phil Morris", "character": "Vandal Savage", "id": 56853, "credit_id": "52fe4942c3a368484e1227b7", "cast_id": 8, "profile_path": "/e8FKG1DoVsUibW8cI4gvRluwPav.jpg", "order": 6}, {"name": "Paul Blackthorne", "character": "Metallo / John Corben", "id": 43231, "credit_id": "52fe4942c3a368484e1227bb", "cast_id": 9, "profile_path": "/cr11VQutjQCjPK8sq1ec08c04yw.jpg", "order": 7}, {"name": "Carl Lumbly", "character": "Martian Manhunter", "id": 29382, "credit_id": "52fe4942c3a368484e1227bf", "cast_id": 10, "profile_path": "/2MMwOIeJGlVrk5JgF4ap47RNbjB.jpg", "order": 8}, {"name": "Carlos Alazraqui", "character": "Bane", "id": 59784, "credit_id": "52fe4942c3a368484e1227c3", "cast_id": 11, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 9}, {"name": "Bumper Robinson", "character": "Cyborg", "id": 35111, "credit_id": "52fe4942c3a368484e1227c7", "cast_id": 12, "profile_path": "/upWJKbhdN19W8GEgNujTJavzeca.jpg", "order": 10}, {"name": "Susan Eisenberg", "character": "Wonder Woman", "id": 112043, "credit_id": "52fe4942c3a368484e1227cb", "cast_id": 13, "profile_path": "/vXqVM8pUuXn0IqmRBFJOyM1VnQ8.jpg", "order": 11}, {"name": "David Kaufman", "character": "Jimmy Olsen", "id": 157536, "credit_id": "52fe4942c3a368484e1227cf", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Dee Bradley Baker", "character": "Officer in Charge / Newscaster", "id": 23680, "credit_id": "52fe4942c3a368484e1227e5", "cast_id": 19, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 13}, {"name": "Grey DeLisle", "character": "Lois Lane / Queen", "id": 15761, "credit_id": "52fe4942c3a368484e1227e9", "cast_id": 20, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 14}, {"name": "Robin Atkin Downes", "character": "Alfred Pennyworth / Jack", "id": 130081, "credit_id": "52fe4942c3a368484e1227ed", "cast_id": 21, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 15}, {"name": "Brian George", "character": "Mayor", "id": 58511, "credit_id": "52fe4942c3a368484e1227f1", "cast_id": 22, "profile_path": "/g0bVyXsHDhRhd5WuQwRQDv2TkG9.jpg", "order": 16}, {"name": "Juliet Landau", "character": "Ten", "id": 7137, "credit_id": "52fe4942c3a368484e1227f5", "cast_id": 23, "profile_path": "/78ohsJtUTo0ZLdSRfiTgYQQQSWI.jpg", "order": 17}, {"name": "Jim Meskimen", "character": "King", "id": 30697, "credit_id": "52fe4942c3a368484e1227f9", "cast_id": 24, "profile_path": "/fZ1Eu6Pb98LUn0wwTU7D32a6WGR.jpg", "order": 18}, {"name": "Andrea Romano", "character": "Bat Computer", "id": 34945, "credit_id": "52fe4942c3a368484e1227fd", "cast_id": 25, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 19}, {"name": "Bruce Timm", "character": "Ace", "id": 34934, "credit_id": "52fe4942c3a368484e122801", "cast_id": 26, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 20}, {"name": "Alexis Denisof", "character": "Mirror Master", "id": 1214673, "credit_id": "52fe4942c3a368484e122809", "cast_id": 28, "profile_path": "/hAcTJxSbSPHLfa59D8mnJOzxpmE.jpg", "order": 21}], "directors": [{"name": "Lauren Montgomery", "department": "Directing", "job": "Director", "credit_id": "52fe4942c3a368484e1227d5", "profile_path": null, "id": 74863}], "vote_average": 7.2, "runtime": 77}, "52015": {"poster_path": "/xohrZtjqSsP5hWK5J3dn8YyelKY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33245, "overview": "Martin was a normal teenage boy before the country collapsed in an empty pit of economic and political disaster. A vampire epidemic has swept across what is left of the nation's abandoned towns and cities, and it's up to Mister, a death dealing, rogue vampire hunter, to get Martin safely north to Canada, the continent's New Eden.", "video": false, "id": 52015, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Stake Land", "tagline": "The Most Dangerous Thing Is To Be Alive.", "vote_count": 52, "homepage": "http://www.stakelandthefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1464580", "adult": false, "backdrop_path": "/6lBB6bYjnQe0mPQTn1sJBkTux1l.jpg", "production_companies": [{"name": "Glass Eye Pix", "id": 1360}, {"name": "Belladonna Productions", "id": 2341}, {"name": "Off Hollywood Pictures", "id": 3768}], "release_date": "2010-09-30", "popularity": 0.678707016868434, "original_title": "Stake Land", "budget": 650000, "cast": [{"name": "Danielle Harris", "character": "Belle", "id": 21320, "credit_id": "52fe4812c3a36847f8156f4b", "cast_id": 2, "profile_path": "/fqjsueUkjDmkLcIcij69B8m1OdT.jpg", "order": 0}, {"name": "Kelly McGillis", "character": "Sister", "id": 11084, "credit_id": "52fe4812c3a36847f8156f4f", "cast_id": 3, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 1}, {"name": "Nick Damici", "character": "Mister", "id": 67580, "credit_id": "52fe4812c3a36847f8156f53", "cast_id": 4, "profile_path": "/vkZ2H5vLITyVyl4OkYe4r8cBMrS.jpg", "order": 2}, {"name": "Connor Paolo", "character": "Martin", "id": 4738, "credit_id": "52fe4812c3a36847f8156f57", "cast_id": 5, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 3}, {"name": "Gregory Jones", "character": "Martin's Father", "id": 1015892, "credit_id": "52fe4813c3a36847f8156fa9", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Traci Hovel", "character": "Martin's Mother", "id": 206352, "credit_id": "52fe4813c3a36847f8156fad", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Marianne Hagan", "character": "Doctor Foley", "id": 67838, "credit_id": "52fe4813c3a36847f8156fb1", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "James Godwin", "character": "Barn Vamp", "id": 939290, "credit_id": "52fe4813c3a36847f8156fb5", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Tim House", "character": "Sheriff", "id": 82851, "credit_id": "52fe4813c3a36847f8156fb9", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Michael Cerveris", "character": "Jebedia Loven", "id": 49827, "credit_id": "52fe4813c3a36847f8156fbd", "cast_id": 24, "profile_path": "/1cMSbaBloNvWYHLPRxeSHoHrj1U.jpg", "order": 9}, {"name": "Sean Nelson", "character": "Willie", "id": 75601, "credit_id": "52fe4813c3a36847f8156fc1", "cast_id": 25, "profile_path": "/8ylzaMgIfGxbaDrhe7uJmYBSFBB.jpg", "order": 10}, {"name": "Adam Scarimbolo", "character": "Kevin", "id": 53939, "credit_id": "52fe4813c3a36847f8156fc5", "cast_id": 26, "profile_path": "/bAQpz2DfwbXWdLEXXf7ZG6Q1cuA.jpg", "order": 11}, {"name": "Chance Kelly", "character": "Officer Harley", "id": 17194, "credit_id": "52fe4813c3a36847f8156fc9", "cast_id": 27, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 12}], "directors": [{"name": "Jim Mickle", "department": "Directing", "job": "Director", "credit_id": "52fe4812c3a36847f8156f47", "profile_path": null, "id": 87082}], "vote_average": 6.0, "runtime": 98}, "479": {"poster_path": "/bqlpFp96uWu2VDpsm4MVvLXdumh.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 107196498, "overview": "New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.", "video": false, "id": 479, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Shaft", "tagline": "Still the man, any questions?", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0162650", "adult": false, "backdrop_path": "/2p9NtyrnFZtGRyCGN5SBk1eARNK.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2000-06-15", "popularity": 0.995739421563572, "original_title": "Shaft", "budget": 46000000, "cast": [{"name": "Samuel L. Jackson", "character": "John Shaft", "id": 2231, "credit_id": "52fe4248c3a36847f801217b", "cast_id": 6, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Jeffrey Wright", "character": "Peoples Hernandez", "id": 2954, "credit_id": "52fe4248c3a36847f801217f", "cast_id": 8, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 1}, {"name": "Christian Bale", "character": "Walter Wade, Jr.", "id": 3894, "credit_id": "52fe4248c3a36847f8012183", "cast_id": 9, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 2}, {"name": "Busta Rhymes", "character": "Rasaan", "id": 6485, "credit_id": "52fe4248c3a36847f8012187", "cast_id": 10, "profile_path": "/1NqDmMk2jnrLjJUfb68gtMnSyF8.jpg", "order": 3}, {"name": "Dan Hedaya", "character": "Jack Roselli", "id": 6486, "credit_id": "52fe4248c3a36847f801218b", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 4}, {"name": "Toni Collette", "character": "Diane Palmieri", "id": 3051, "credit_id": "52fe4248c3a36847f801218f", "cast_id": 12, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 5}, {"name": "Richard Roundtree", "character": "(Uncle) John Shaft", "id": 6487, "credit_id": "52fe4248c3a36847f8012193", "cast_id": 13, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 6}, {"name": "Pat Hingle", "character": "Judge Dennis Bradford", "id": 3798, "credit_id": "52fe4248c3a36847f80121cd", "cast_id": 23, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 7}, {"name": "Philip Bosco", "character": "Walter Wade Senior", "id": 6541, "credit_id": "52fe4248c3a36847f80121d1", "cast_id": 24, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 8}, {"name": "Vanessa Williams", "character": "Carmen Vasquez", "id": 27011, "credit_id": "52fe4248c3a36847f80121db", "cast_id": 26, "profile_path": "/t5tyW5nSk5ikeU8cWPdg4ImsMuq.jpg", "order": 9}, {"name": "Lee Tergesen", "character": "Luger", "id": 6906, "credit_id": "5323fe7e92514115440001c1", "cast_id": 28, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 10}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe4248c3a36847f801215f", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 5.0, "runtime": 99}, "11072": {"poster_path": "/yccgwPNVaqtgS1d0U5jjM6Mnza8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119500000, "overview": "The Ultimate Western Spoof. A town where everyone seems to be named Johnson is in the way of the railroad. In order to grab their land, Hedley Lemar, a politically connected nasty person, sends in his henchmen to make the town unlivable. After the sheriff is killed, the town demands a new sheriff from the Governor. Hedley convinces him to send the town the first Black sheriff in the west.", "video": false, "id": 11072, "genres": [{"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Blazing Saddles", "tagline": "Never give a saga an even break!", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "yi", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071230", "adult": false, "backdrop_path": "/tzJmubvEPw2etDhzqpA6Wb3K2EZ.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Crossbow Productions", "id": 1296}], "release_date": "1974-02-07", "popularity": 0.63983360588985, "original_title": "Blazing Saddles", "budget": 2600000, "cast": [{"name": "Cleavon Little", "character": "Sheriff Bart", "id": 68091, "credit_id": "52fe43f19251416c75023ba9", "cast_id": 1, "profile_path": "/qZAzZAjD0vyjhE5ZTDXOq6wpg8l.jpg", "order": 0}, {"name": "Gene Wilder", "character": "Jim, aka \"The Waco Kid\"", "id": 3460, "credit_id": "52fe43f19251416c75023bad", "cast_id": 2, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 0}, {"name": "Mel Brooks", "character": "Gov. William J. Le Petomane / Indian Chief", "id": 14639, "credit_id": "52fe43f19251416c75023bb1", "cast_id": 3, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 0}, {"name": "Madeline Kahn", "character": "Lili Von Sht\u00fcpp, the Teutonic Titwillow", "id": 29803, "credit_id": "52fe43f19251416c75023bb5", "cast_id": 4, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 1}, {"name": "Slim Pickens", "character": "Taggart", "id": 14253, "credit_id": "52fe43f19251416c75023bd7", "cast_id": 13, "profile_path": "/xO2rvqSBgZRJKjkVrFy1xeygxLF.jpg", "order": 4}, {"name": "Harvey Korman", "character": "Hedley Lamarr", "id": 13640, "credit_id": "52fe43f19251416c75023bdb", "cast_id": 14, "profile_path": "/zXLYvJP3ReKPI6lJr2VuDGupL1j.jpg", "order": 5}, {"name": "Burton Gilliam", "character": "Lyle", "id": 133952, "credit_id": "52fe43f19251416c75023c03", "cast_id": 22, "profile_path": "/vy97LXXW4hRjwJa4h9IbTBwuGN5.jpg", "order": 6}, {"name": "Alex Karras", "character": "Mongo", "id": 73234, "credit_id": "52fe43f19251416c75023c07", "cast_id": 23, "profile_path": "/yD8ZW7yHzrRlJnSi2fqjkosTnCE.jpg", "order": 7}, {"name": "David Huddleston", "character": "Olson Johnson", "id": 1232, "credit_id": "52fe43f19251416c75023c0b", "cast_id": 24, "profile_path": "/6cXqGzHB0zJautJVPCtbEsCtsCQ.jpg", "order": 8}, {"name": "Liam Dunn", "character": "Rev. Johnson", "id": 152711, "credit_id": "52fe43f19251416c75023c0f", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "John Hillerman", "character": "Howard Johnson", "id": 12296, "credit_id": "52fe43f19251416c75023c13", "cast_id": 26, "profile_path": "/93n8VRJIlZivnNES3W1utuWfvkp.jpg", "order": 10}, {"name": "George Furth", "character": "Van Johnson", "id": 9597, "credit_id": "52fe43f19251416c75023c17", "cast_id": 27, "profile_path": "/sSku0t0IXJRj3GmHNWSIivYPCT3.jpg", "order": 11}, {"name": "Carol Arthur", "character": "Harriett Johnson", "id": 80626, "credit_id": "52fe43f19251416c75023c1f", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Richard Collier", "character": "Dr. Sam Johnson", "id": 151849, "credit_id": "52fe43f19251416c75023c23", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Charles McGregor", "character": "Charlie", "id": 981005, "credit_id": "52fe43f19251416c75023c27", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Don Megowan", "character": "Gum Chewer", "id": 31208, "credit_id": "52fe43f19251416c75023c2b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Dom DeLuise", "character": "Buddy Bizarre", "id": 6844, "credit_id": "52fe43f19251416c75023c2f", "cast_id": 34, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 17}, {"name": "Count Basie", "character": "Himself", "id": 240728, "credit_id": "52fe43f19251416c75023c33", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Karl Lukas", "character": "Cutthroat #1", "id": 153618, "credit_id": "52fe43f19251416c75023c37", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Robyn Hilton", "character": "Miss Stein", "id": 101461, "credit_id": "52fe43f19251416c75023c3b", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Jack Starrett", "character": "Gabby Johnson", "id": 16556, "credit_id": "541aef630e0a26013e001a60", "cast_id": 39, "profile_path": null, "order": 21}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe43f19251416c75023bbb", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 6.7, "runtime": 93}, "19265": {"poster_path": "/zW8SJChuvFKVtaZkE4rMH6aum4B.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Whatever Works explores the relationship between a crotchety misanthrope, Boris and a na\u00efve, impressionable young runaway from the south, Melody. When Melody's uptight parents arrive in New York to rescue her, they are quickly drawn into wildly unexpected romantic entanglements. Everyone discovers that finding love is just a combination of lucky chance and appreciating the value of \"whatever works.\"", "video": false, "id": 19265, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Whatever Works", "tagline": "A new comedy", "vote_count": 50, "homepage": "http://www.sonypictures.com/classics/whateverworks/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1178663", "adult": false, "backdrop_path": "/7KUfpN82cevnzh7F4rX5r12GZfE.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "Wild Bunch", "id": 856}, {"name": "Gravier Productions", "id": 1824}, {"name": "Perdido Productions", "id": 12966}], "release_date": "2009-06-19", "popularity": 0.503436284715012, "original_title": "Whatever Works", "budget": 15000000, "cast": [{"name": "Larry David", "character": "Boris Yellnikoff", "id": 16376, "credit_id": "52fe47ca9251416c750a596b", "cast_id": 5, "profile_path": "/nU0K1Z7HEFEkuLMQb1qDlZhDhij.jpg", "order": 0}, {"name": "Evan Rachel Wood", "character": "Melodie St. Ann Celestine", "id": 38940, "credit_id": "52fe47ca9251416c750a596f", "cast_id": 6, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 1}, {"name": "Adam Brooks", "character": "Boris' Friend #1", "id": 16328, "credit_id": "52fe47ca9251416c750a5973", "cast_id": 7, "profile_path": "/yUyhsz2KZ87ePFxyQGeW9FjoGZ6.jpg", "order": 2}, {"name": "Michael McKean", "character": "Joe - Boris' Friend #3", "id": 21731, "credit_id": "52fe47ca9251416c750a5977", "cast_id": 8, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 3}, {"name": "Lyle Kanouse", "character": "Boris' Friend #2", "id": 84421, "credit_id": "52fe47ca9251416c750a597b", "cast_id": 9, "profile_path": "/8haoaqa7rcsyFtpbKxT43xxXP2N.jpg", "order": 4}, {"name": "Carolyn McCormick", "character": "Jessica", "id": 84422, "credit_id": "52fe47ca9251416c750a597f", "cast_id": 10, "profile_path": "/21OGOTdd5TYkeS0gYTqaWEubf61.jpg", "order": 5}, {"name": "John Gallagher Jr.", "character": "Perry", "id": 17487, "credit_id": "52fe47ca9251416c750a5983", "cast_id": 11, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 6}, {"name": "Conleth Hill", "character": "Leo Brockman", "id": 84423, "credit_id": "52fe47ca9251416c750a5987", "cast_id": 12, "profile_path": "/nxSh1w1MTyAfQ1cCSie3HtjQot6.jpg", "order": 7}, {"name": "Nicole Patrick", "character": "Perry's Friend", "id": 84424, "credit_id": "52fe47ca9251416c750a598b", "cast_id": 13, "profile_path": "/aV4InXJFf7M2NYoczFBPLZZnWu0.jpg", "order": 8}, {"name": "Patricia Clarkson", "character": "Marietta", "id": 1276, "credit_id": "52fe47ca9251416c750a598f", "cast_id": 14, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 9}, {"name": "Henry Cavill", "character": "Randy James", "id": 73968, "credit_id": "52fe47ca9251416c750a5993", "cast_id": 15, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 10}, {"name": "Olek Krupa", "character": "Morgenstern", "id": 53573, "credit_id": "52fe47ca9251416c750a5997", "cast_id": 16, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 11}, {"name": "Ed Begley Jr.", "character": "John", "id": 42157, "credit_id": "52fe47cb9251416c750a599b", "cast_id": 17, "profile_path": "/m264FJDCnB5H6qyU2sDKjs9tM86.jpg", "order": 12}, {"name": "Christopher Evan Welch", "character": "Howard", "id": 60021, "credit_id": "52fe47cb9251416c750a599f", "cast_id": 18, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 13}, {"name": "Jessica Hecht", "character": "Helena", "id": 14984, "credit_id": "52fe47cb9251416c750a59a3", "cast_id": 19, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 14}, {"name": "Kristen Ruhlin", "character": "Melodie Club Friend #3", "id": 79999, "credit_id": "52fe47cb9251416c750a59a7", "cast_id": 20, "profile_path": "/tyZaLxTG16qHyvSfW3GRLkVyjxe.jpg", "order": 15}, {"name": "Yolonda Ross", "character": "Boy's Mother", "id": 36549, "credit_id": "52fe47cb9251416c750a59ab", "cast_id": 21, "profile_path": "/wVy8MPKJD6oM8JUEJdpsdbEWlrn.jpg", "order": 16}, {"name": "Samantha Bee", "character": "Chess Mother", "id": 1218277, "credit_id": "52fe47cb9251416c750a59af", "cast_id": 22, "profile_path": "/vamycSzxXCAFi6lXGERYUpmcPrk.jpg", "order": 17}, {"name": "Willa Cuthrell-Tuttleman", "character": "Chess Girl", "id": 1285414, "credit_id": "52fe47cb9251416c750a59b3", "cast_id": 23, "profile_path": "/A8M9hogEZoQF7kjvxP14SCmz4Ne.jpg", "order": 18}, {"name": "Julie Basem", "character": "Cafe Waitress", "id": 1285539, "credit_id": "52fe47cb9251416c750a59b7", "cast_id": 24, "profile_path": "/5pkCDwpQNenjhNODJkWKpiU9i5a.jpg", "order": 19}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe47ca9251416c750a5955", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.6, "runtime": 92}, "256835": {"poster_path": "/aGDVBwpxlA95mn7yTxwM8r0oTR0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "During a post-Christmas play date, the gang find themselves in uncharted territory when the coolest set of action figures ever turn out to be dangerously delusional. It's all up to Trixie, the triceratops, if the gang hopes to return to Bonnie's room in this Toy Story That Time Forgot.", "video": false, "id": 256835, "genres": [{"id": 16, "name": "Animation"}, {"id": 10770, "name": "TV Movie"}], "title": "Toy Story That Time Forgot", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3473654", "adult": false, "backdrop_path": "/lBIU50ihAcSJtxrayTv1CmyP7r0.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2014-12-02", "popularity": 1.11082648112818, "original_title": "Toy Story That Time Forgot", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "543d70930e0a266f8400032c", "cast_id": 0, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "543d70a40e0a266f8e0002c6", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jessie (voice)", "id": 3234, "credit_id": "543d70ba0e0a266f7d0002ff", "cast_id": 2, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "Kristen Schaal", "character": "Trixie (voice)", "id": 109869, "credit_id": "543d70d00e0a266f7d000303", "cast_id": 3, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 4}, {"name": "Wallace Shawn", "character": "Rex (voice)", "id": 12900, "credit_id": "543d70e1c3a368250d0002bc", "cast_id": 4, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 5}, {"name": "Timothy Dalton", "character": "Mr. Pricklepants (voice)", "id": 10669, "credit_id": "543d70f40e0a266f81000330", "cast_id": 5, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 6}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "543d7107c3a368251f000301", "cast_id": 6, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 7}, {"name": "Kevin McKidd", "character": "Reptillus Maximus (voice)", "id": 9013, "credit_id": "543d711ec3a3682513000324", "cast_id": 7, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 8}], "directors": [{"name": "Steve Purcell", "department": "Directing", "job": "Director", "credit_id": "543d7160c3a36825040002ff", "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "id": 137262}], "vote_average": 6.5, "runtime": 22}, "11078": {"poster_path": "/5YFPkMgy5NCzUSYl5Ep8p0vK9qB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36288951, "overview": "Two mismatched security guards are thrown together to bust a smuggling operation.", "video": false, "id": 11078, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "National Security", "tagline": "They only look like cops.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0271668", "adult": false, "backdrop_path": "/tnSB171AQf4hnAR1simsgROtF0h.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2003-01-17", "popularity": 0.370808429288049, "original_title": "National Security", "budget": 0, "cast": [{"name": "Martin Lawrence", "character": "Earl Montgomery", "id": 78029, "credit_id": "52fe43f29251416c75023e9f", "cast_id": 1, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Hank Rafferty", "id": 18324, "credit_id": "52fe43f29251416c75023ea3", "cast_id": 2, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Colm Feore", "character": "Detective Frank McDuff", "id": 10132, "credit_id": "52fe43f29251416c75023ea7", "cast_id": 3, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 2}, {"name": "Bill Duke", "character": "Lieutenant Washington", "id": 1103, "credit_id": "52fe43f29251416c75023eab", "cast_id": 4, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 3}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe43f29251416c75023eb1", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.0, "runtime": 88}, "11081": {"poster_path": "/2LE560KT69RLnxIU83wrTvClj8D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32682342, "overview": "Recruited to assist Montreal police in their desperate search for a serial killer who assumes the identities of his victims, FBI profiler Illeana Scott knows it's only a matter of time before the killer strikes again. Her most promising lead is a museum employee who might be the killer's only eyewitness.", "video": false, "id": 11081, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Taking Lives", "tagline": "He would kill to be you.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0364045", "adult": false, "backdrop_path": "/qcjTmSVyYqGMCVRH7FjXwMdan40.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Atmosphere Entertainment MM", "id": 2995}], "release_date": "2004-03-16", "popularity": 0.927488263975579, "original_title": "Taking Lives", "budget": 0, "cast": [{"name": "Angelina Jolie", "character": "Illeana Scott", "id": 11701, "credit_id": "52fe43f29251416c75023eed", "cast_id": 1, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "James Costa", "id": 569, "credit_id": "52fe43f29251416c75023ef1", "cast_id": 2, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Kiefer Sutherland", "character": "Christopher Hart", "id": 2628, "credit_id": "52fe43f39251416c75023ef5", "cast_id": 3, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 2}, {"name": "Gena Rowlands", "character": "Mrs. Rebecca Asher", "id": 4800, "credit_id": "52fe43f39251416c75023ef9", "cast_id": 4, "profile_path": "/vPsX71UdwG21lFdG6pxijJWxL91.jpg", "order": 3}, {"name": "Olivier Martinez", "character": "Paquette", "id": 15533, "credit_id": "52fe43f39251416c75023f27", "cast_id": 13, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 4}, {"name": "Tch\u00e9ky Karyo", "character": "Leclair", "id": 10698, "credit_id": "54ad5d079251414b4d00007f", "cast_id": 14, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 5}, {"name": "Jean-Hugues Anglade", "character": "Duval", "id": 7037, "credit_id": "54ad5d3e925141517b000047", "cast_id": 15, "profile_path": "/iy8Tfcb3Zq1INu1kGm069wccRev.jpg", "order": 6}, {"name": "Tch\u00e9ky Karyo", "character": "Leclair", "id": 10698, "credit_id": "54ad5d499251414b5700006f", "cast_id": 16, "profile_path": "/iQU5ViIGmkG1CP2ikII3JiQ2pn4.jpg", "order": 7}, {"name": "Paul Dano", "character": "Young Asher", "id": 17142, "credit_id": "54ad5d7bc3a3682fcc0000ac", "cast_id": 17, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 8}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe43f39251416c75023f23", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 5.8, "runtime": 103}, "2898": {"poster_path": "/q2645aW8vgg1g7RL5lil6K93yaA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 314178011, "overview": "New York City. Melvin Udall, a cranky, bigoted, obsessive-compulsive writer, finds his life turned upside down when neighboring gay artist Simon is hospitalized and his dog is entrusted to Melvin. In addition, Carol, the only waitress who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.", "video": false, "id": 2898, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "As Good as It Gets", "tagline": "A comedy from the heart that goes for the throat.", "vote_count": 232, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119822", "adult": false, "backdrop_path": "/f3Fkt6uwfOfk26O8rH4rfhHHkw7.jpg", "production_companies": [{"name": "Gracie Films", "id": 18}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1997-12-19", "popularity": 0.369098792959792, "original_title": "As Good as It Gets", "budget": 5000000, "cast": [{"name": "Jack Nicholson", "character": "Melvin Udall", "id": 514, "credit_id": "52fe4373c3a36847f80550e5", "cast_id": 1, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Carol Connelly", "id": 9994, "credit_id": "52fe4373c3a36847f80550e9", "cast_id": 2, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "Greg Kinnear", "character": "Simon Bishop", "id": 17141, "credit_id": "52fe4373c3a36847f80550ed", "cast_id": 3, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 2}, {"name": "Cuba Gooding Jr.", "character": "Frank Sachs", "id": 9777, "credit_id": "52fe4373c3a36847f80550f1", "cast_id": 4, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 3}, {"name": "Skeet Ulrich", "character": "Vincent Lopiano", "id": 22108, "credit_id": "52fe4373c3a36847f80550f5", "cast_id": 5, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 4}, {"name": "Shirley Knight", "character": "Beverly Connelly", "id": 28778, "credit_id": "52fe4373c3a36847f80550f9", "cast_id": 6, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 5}, {"name": "Yeardley Smith", "character": "Jackie Simpson", "id": 5586, "credit_id": "52fe4373c3a36847f80550fd", "cast_id": 7, "profile_path": "/g2LYM8XqkFiPsupUgky6PNuIenL.jpg", "order": 6}, {"name": "Lupe Ontiveros", "character": "Nora Manning", "id": 28779, "credit_id": "52fe4373c3a36847f8055101", "cast_id": 8, "profile_path": "/7omMwfHNyQ6T2O8Trppbpj8ED2W.jpg", "order": 7}, {"name": "Bibi Osterwald", "character": "Neighbor Woman", "id": 161439, "credit_id": "52fe4373c3a36847f805511d", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Ross Bleckner", "character": "Carl", "id": 1080069, "credit_id": "52fe4373c3a36847f8055121", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Bernadette Balagtas", "character": "Caterer", "id": 239061, "credit_id": "52fe4373c3a36847f8055125", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jaffe Cohen", "character": "Partygoer", "id": 1080070, "credit_id": "52fe4373c3a36847f8055129", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Laurie Kilpatrick", "character": "Partygoer", "id": 1080071, "credit_id": "52fe4373c3a36847f805512d", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Alice Vaughn", "character": "Partygoer", "id": 1080072, "credit_id": "52fe4373c3a36847f8055131", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Harold Ramis", "character": "Dr. Bettes", "id": 1524, "credit_id": "530ce9159251411431001485", "cast_id": 19, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 14}, {"name": "Harold Ramis", "character": "Dr. Bettes", "id": 1524, "credit_id": "530ce916925141141e00146a", "cast_id": 20, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 15}], "directors": [{"name": "James L. Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe4373c3a36847f8055107", "profile_path": "/9Hx9JbnQBChJhlfJTvmnYF8o8DK.jpg", "id": 3388}], "vote_average": 6.6, "runtime": 139}, "60243": {"poster_path": "/AvkYY1ALKmBkV8WDUFwUiBdxVG7.jpg", "production_countries": [{"iso_3166_1": "IR", "name": "Iran"}], "revenue": 0, "overview": "The movie is centered on a couple, Nader and Simin, and their 11-year-old daughter, Termeh. Nader and Simin are about to leave the country for good; however, Nader has a change of heart and decides to stay and look after his father who suffers from Alzheimer's disease. Simin is determined to get a divorce and leave the country with her daughter, but the court does not find in her favor. Simin goes to live with her mother and Termeh returns to live with her father with the hope that her mother will be back some day.", "video": false, "id": 60243, "genres": [{"id": 18, "name": "Drama"}], "title": "A Separation", "tagline": "Ugly truth, sweet lies.", "vote_count": 163, "homepage": "", "belongs_to_collection": null, "original_language": "fa", "status": "Released", "spoken_languages": [{"iso_639_1": "fa", "name": ""}], "imdb_id": "tt1832382", "adult": false, "backdrop_path": "/iz8eaAVK0HawY8yuoeqAs6Uk83u.jpg", "production_companies": [], "release_date": "2011-03-15", "popularity": 0.499108450738985, "original_title": "\u062c\u062f\u0627\u06cc\u06cc \u0646\u0627\u062f\u0631 \u0627\u0632 \u0633\u06cc\u0645\u06cc\u0646", "budget": 800000, "cast": [{"name": "Leila Hatami", "character": "Simin", "id": 240240, "credit_id": "52fe461dc3a368484e07f915", "cast_id": 3, "profile_path": "/ppI1Q4a7zAXTaAyPRSvPm0vhove.jpg", "order": 0}, {"name": "Kimia Hosseini", "character": "Somayyeh", "id": 240242, "credit_id": "52fe461dc3a368484e07f919", "cast_id": 6, "profile_path": "/kjf7nIYnwadt4vCkELQ4jNvJmLv.jpg", "order": 1}, {"name": "Merila Zarei", "character": "Miss Ghahraii", "id": 240243, "credit_id": "52fe461dc3a368484e07f91d", "cast_id": 7, "profile_path": "/k5i3Afiuohcn457Zta2UzvpRQFO.jpg", "order": 2}, {"name": "Peyman Moaadi", "character": "Nader", "id": 559566, "credit_id": "52fe461dc3a368484e07f921", "cast_id": 8, "profile_path": "/eLD0NU2F0rkbjcPWPtrOHvgmLv1.jpg", "order": 3}, {"name": "Sareh Bayat", "character": "Razieh", "id": 559567, "credit_id": "52fe461dc3a368484e07f925", "cast_id": 9, "profile_path": "/pR4MIPTumYnt9j00uVwFV76Wb0f.jpg", "order": 4}, {"name": "Shahab Hosseini", "character": "Hojjat", "id": 229933, "credit_id": "52fe461dc3a368484e07f929", "cast_id": 10, "profile_path": "/iX43seeXL6ksZaTYXxt1HPIUbzO.jpg", "order": 5}, {"name": "Ali-Asghar Shahbazi", "character": "Nader's Father", "id": 559568, "credit_id": "52fe461dc3a368484e07f92d", "cast_id": 11, "profile_path": "/eYI5wbqaQCa8dQY1MOfgm6e7HSZ.jpg", "order": 6}, {"name": "Shirin Yazdanbakhsh", "character": "Simin's Mother", "id": 559569, "credit_id": "52fe461dc3a368484e07f931", "cast_id": 12, "profile_path": "/dYDPPg73vAzFlTJ1fok5IXf11CK.jpg", "order": 7}, {"name": "Mohammad Sajadian", "character": "Soldier", "id": 1141703, "credit_id": "52fe461dc3a368484e07f971", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Armine Zeytounchian ", "character": "Mrs. Kalaani", "id": 1029121, "credit_id": "52fe461dc3a368484e07f975", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Asghar Farhadi", "department": "Directing", "job": "Director", "credit_id": "52fe461dc3a368484e07f911", "profile_path": "/kgcV55oG7Z0RHF0fvrWsAoiu8UA.jpg", "id": 229931}], "vote_average": 7.8, "runtime": 123}, "2900": {"poster_path": "/2zm3a3453aWN078Qd6nIQngbEkM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19598588, "overview": "A NASA astronaut and his wife's lives are propelled into utter dismay upon his return home from a space mission that lost contact with Earth for two minutes. What happened during those frightening 120 seconds in space will effect their marriage, sanity, and ultimately threaten their lives.", "video": false, "id": 2900, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Astronaut's Wife", "tagline": "How well do you know the one you love?", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138304", "adult": false, "backdrop_path": "/3z9eCqGkOgpyq55XnEgmuytAU3f.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mad Chance", "id": 1757}], "release_date": "1999-08-26", "popularity": 0.478440408112327, "original_title": "The Astronaut's Wife", "budget": 75000000, "cast": [{"name": "Johnny Depp", "character": "Commander Spencer Armacost", "id": 85, "credit_id": "52fe4373c3a36847f805527f", "cast_id": 16, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Jillian Armacost", "id": 6885, "credit_id": "52fe4373c3a36847f8055235", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Joe Morton", "character": "Sherman Reese", "id": 3977, "credit_id": "52fe4373c3a36847f8055239", "cast_id": 3, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 2}, {"name": "Clea DuVall", "character": "Nan", "id": 20387, "credit_id": "52fe4373c3a36847f8055245", "cast_id": 6, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 3}, {"name": "Nick Cassavetes", "character": "Captain Alex Streck", "id": 11151, "credit_id": "52fe4373c3a36847f805523d", "cast_id": 4, "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "order": 4}, {"name": "Donna Murphy", "character": "Natalie Streck", "id": 2517, "credit_id": "52fe4373c3a36847f8055241", "cast_id": 5, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 5}, {"name": "Gary Grubbs", "character": "NASA Director", "id": 68180, "credit_id": "52fe4373c3a36847f8055283", "cast_id": 17, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 6}, {"name": "Blair Brown", "character": "Shelly McLaren", "id": 7571, "credit_id": "52fe4373c3a36847f8055287", "cast_id": 18, "profile_path": "/zBMLu9wTu36i0RkQGSQ5adH6Lvu.jpg", "order": 7}, {"name": "Tom Noonan", "character": "Jackson McLaren", "id": 119232, "credit_id": "52fe4373c3a36847f805528b", "cast_id": 19, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 8}, {"name": "Tom O'Brien", "character": "Allen Dodge", "id": 1170309, "credit_id": "52fe4373c3a36847f80552a3", "cast_id": 25, "profile_path": "/m37cykfnDJPWfMcZFcfSiLbGmwO.jpg", "order": 9}, {"name": "Lucy Lin", "character": "Shelly Carter", "id": 167160, "credit_id": "52fe4373c3a36847f805528f", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Michael Crider", "character": "Pat Elliott", "id": 169588, "credit_id": "52fe4373c3a36847f8055293", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Samantha Eggar", "character": "Dr. Patraba", "id": 46780, "credit_id": "539ad3900e0a264508000937", "cast_id": 27, "profile_path": "/uPcE3Vra0l4E5f8GNKUjCX88w3c.jpg", "order": 12}, {"name": "Rondi Reed", "character": "Dr. Conlin", "id": 172664, "credit_id": "539ad3f50e0a264528000973", "cast_id": 28, "profile_path": "/1UqfI9ntQqy7i93TV96KNDHklAO.jpg", "order": 13}, {"name": "Conrad Bachmann", "character": "Reporter", "id": 158052, "credit_id": "539ad57ec3a3684b730006ef", "cast_id": 30, "profile_path": null, "order": 15}], "directors": [{"name": "Rand Ravich", "department": "Directing", "job": "Director", "credit_id": "52fe4373c3a36847f805524b", "profile_path": "/2NIQNh1o5Rmp1WStc5K1XbR6cKR.jpg", "id": 29524}], "vote_average": 5.8, "runtime": 109}, "207703": {"poster_path": "/pXN5zQHdqmvpUZDPkLooGD6PnAW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kingsman: The Secret Service tells the story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.", "video": false, "id": 207703, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Kingsman: The Secret Service", "tagline": "PUT THE KING, BACK IN KINGSMAN!", "vote_count": 488, "homepage": "http://www.kingsmanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2802144", "adult": false, "backdrop_path": "/3DFKIuDEHBWtBcP1bjzckjOFyfp.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "20th Century Fox Film Corporation", "id": 22573}], "release_date": "2014-02-13", "popularity": 3.56224146819503, "original_title": "Kingsman: The Secret Service", "budget": 0, "cast": [{"name": "Taron Egerton", "character": "Gary 'Eggsy' Unwin", "id": 1303037, "credit_id": "537d333b0e0a2611c8000092", "cast_id": 17, "profile_path": "/bVsLVoO3BGoHRLjWoM4Gjav2hNb.jpg", "order": 0}, {"name": "Colin Firth", "character": "Harry Hart", "id": 5472, "credit_id": "52fe4d3ac3a368484e1ddc97", "cast_id": 1, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Valentine", "id": 2231, "credit_id": "532c5f4192514160cb0000de", "cast_id": 6, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Michael Caine", "character": "Arthur", "id": 3895, "credit_id": "532c5f3792514160cb0000dc", "cast_id": 5, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Mark Strong", "character": "Merlin", "id": 2983, "credit_id": "537d32970e0a2611ce000070", "cast_id": 9, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Sofia Boutella", "character": "Gazelle", "id": 568657, "credit_id": "532c5f8e92514160c40000f5", "cast_id": 8, "profile_path": "/dnFE6lIyN7p0RcS664Xde6mbR7U.jpg", "order": 5}, {"name": "Sophie Cookson", "character": "Roxy", "id": 1282054, "credit_id": "540d4981c3a368799c0052cf", "cast_id": 31, "profile_path": null, "order": 7}, {"name": "Jack Davenport", "character": "Lancelot", "id": 1709, "credit_id": "537d32c10e0a2611d100006c", "cast_id": 10, "profile_path": "/1sugfnI8MQAbKgqP7ncyoM4ghhQ.jpg", "order": 8}, {"name": "Mark Hamill", "character": "James Arnold", "id": 2, "credit_id": "540d4968c3a36879a8004fc9", "cast_id": 30, "profile_path": "/klQrOckrIuUluOEp7g0osOfTgWI.jpg", "order": 9}, {"name": "Geoff Bell", "character": "Dean", "id": 6969, "credit_id": "540d498dc3a368799f0051ae", "cast_id": 32, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 10}, {"name": "Samantha Zoe Womack", "character": "Michelle", "id": 78952, "credit_id": "537d33320e0a2611c4000087", "cast_id": 16, "profile_path": "/meylSWBDezTf9sZ7DQv664imNp5.jpg", "order": 11}, {"name": "Tom Prior", "character": "Hugo", "id": 1361963, "credit_id": "540d49a2c3a368799f0051b6", "cast_id": 33, "profile_path": "/oHHV5txGjAXBTVIj7kkkqoy3hUC.jpg", "order": 12}, {"name": "Jaymes Butler", "character": "Dean's Gang member #2", "id": 74225, "credit_id": "540d49aec3a36879a2005531", "cast_id": 34, "profile_path": "/eKIytH97XBE8Oe87qGsmKTifHVF.jpg", "order": 13}, {"name": "Corey Johnson", "character": "Church Leader", "id": 17199, "credit_id": "537d32fb0e0a2611c4000080", "cast_id": 11, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 14}, {"name": "Neve Gachev", "character": "Reporter", "id": 1186597, "credit_id": "537d330e0e0a2611d7000088", "cast_id": 13, "profile_path": "/rMkCANQP59CaTG8t1FlehuhIepw.jpg", "order": 15}, {"name": "Hanna Alstr\u00f6m", "character": "Princess Tilde", "id": 931785, "credit_id": "54e38779c3a368486f001708", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Bj\u00f8rn Floberg", "character": "Swedish Prime Minister", "id": 67988, "credit_id": "54e387b192514119530098c7", "cast_id": 36, "profile_path": "/53XYly3kVMLlYbYgM5Rf84DVBuR.jpg", "order": 17}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe4d3ac3a368484e1ddca1", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 7.9, "runtime": 130}, "11096": {"poster_path": "/yG1RGIGCcq2AQvB8h4E3azCWMZR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122644820, "overview": "At their new home in upstate New York, newly widowed psychologist David Callaway tries desperately to help his traumatized daughter Emily deal with her mother's death. But before long, both David and Emily are being terrorized by someone - or something - named charlie: a \"friend\" who may or may not be imaginary but is definately the stuff nightmares are made of!", "video": false, "id": 11096, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Hide and Seek", "tagline": "Come out, come out, whatever you are.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0382077", "adult": false, "backdrop_path": "/fnTLBV3npamlk6ouMS6C9z4So9J.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2005-01-27", "popularity": 0.498670709858037, "original_title": "Hide and Seek", "budget": 25000000, "cast": [{"name": "Robert De Niro", "character": "David Callaway", "id": 380, "credit_id": "52fe43f69251416c75024589", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Dakota Fanning", "character": "Emily Callaway", "id": 501, "credit_id": "52fe43f69251416c7502458d", "cast_id": 2, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Katherine", "id": 10696, "credit_id": "52fe43f69251416c75024591", "cast_id": 3, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Elisabeth Shue", "character": "Elizabeth", "id": 1951, "credit_id": "52fe43f69251416c75024595", "cast_id": 4, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 3}, {"name": "Amy Irving", "character": "Alison Callaway", "id": 27563, "credit_id": "52fe43f69251416c75024599", "cast_id": 5, "profile_path": "/7bKYl70P5UmpaoNnlvZD82FLdR.jpg", "order": 4}, {"name": "Dylan Baker", "character": "Sheriff Hafferty", "id": 19152, "credit_id": "52fe43f69251416c750245cd", "cast_id": 14, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 5}, {"name": "Melissa Leo", "character": "Laura", "id": 6832, "credit_id": "52fe43f69251416c750245d1", "cast_id": 15, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 6}, {"name": "Robert John Burke", "character": "Steven", "id": 31512, "credit_id": "52fe43f69251416c750245d5", "cast_id": 16, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 7}], "directors": [{"name": "John Polson", "department": "Directing", "job": "Director", "credit_id": "52fe43f69251416c7502459f", "profile_path": "/l5NGqc8aLYuw6RUpI0ko7Cdv41e.jpg", "id": 15337}], "vote_average": 5.9, "runtime": 101}, "2907": {"poster_path": "/twmpuXRxbZSJV87VOi1pes1Kwk6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 191502426, "overview": "Uncle Fester has been missing for 25 years. An evil doctor finds out and introduces a fake Fester in an attempt to get the Adams Family's money. The youngest daughter has some doubts about the new uncle Fester, but the fake uncle adapts very well to the strange family. Can the doctor carry out her evil plans and take over the Adams Family's fortune?", "video": false, "id": 2907, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Addams Family", "tagline": "Weird Is Relative", "vote_count": 172, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gS5yZLrSJ6uNbsz17xoxf70X2Ws.jpg", "poster_path": "/iqAjYCir8x2fc8eeQ2k4qZqOMP1.jpg", "id": 11716, "name": "Addams Family Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101272", "adult": false, "backdrop_path": "/cf9WjvymdQMYyHHpp30ePvXrUZG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Orion Pictures", "id": 41}], "release_date": "1991-11-22", "popularity": 0.763148676791468, "original_title": "The Addams Family", "budget": 30000000, "cast": [{"name": "Anjelica Huston", "character": "Morticia Addams", "id": 5657, "credit_id": "52fe4374c3a36847f80554c3", "cast_id": 2, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 0}, {"name": "Ra\u00fal Juli\u00e1", "character": "Gomez Addams", "id": 27888, "credit_id": "52fe4374c3a36847f80554c7", "cast_id": 3, "profile_path": "/nr6Vm3KVdwzIADFThKQhG3uTRfJ.jpg", "order": 1}, {"name": "Christopher Lloyd", "character": "Uncle Fester", "id": 1062, "credit_id": "52fe4374c3a36847f80554cb", "cast_id": 4, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 2}, {"name": "Christina Ricci", "character": "Wednesday Addams", "id": 6886, "credit_id": "52fe4374c3a36847f80554cf", "cast_id": 5, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 3}, {"name": "Elizabeth Wilson", "character": "Abigail Craven/Dr. Greta Pinder-Schloss", "id": 10776, "credit_id": "52fe4374c3a36847f80554d3", "cast_id": 6, "profile_path": "/tXmYFqRiQjuiXgnzBpdzRexROAd.jpg", "order": 4}, {"name": "Dana Ivey", "character": "Margaret Alford/Margaret Addams", "id": 13314, "credit_id": "52fe4374c3a36847f80554d7", "cast_id": 7, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 5}, {"name": "Dan Hedaya", "character": "Tully Alford", "id": 6486, "credit_id": "52fe4374c3a36847f805550b", "cast_id": 16, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 6}, {"name": "Judith Malina", "character": "Grandma", "id": 119864, "credit_id": "52fe4374c3a36847f805550f", "cast_id": 17, "profile_path": "/kO8TlnKZvrW3NuIBZhucbeBxDDH.jpg", "order": 7}, {"name": "Carel Struycken", "character": "Lurch", "id": 9631, "credit_id": "52fe4374c3a36847f8055513", "cast_id": 18, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 8}, {"name": "Paul Benedict", "character": "Judge Womack", "id": 41243, "credit_id": "52fe4374c3a36847f8055517", "cast_id": 19, "profile_path": "/rpFv1bKzfAYvlND1aXSTOtKX8fD.jpg", "order": 9}, {"name": "Christopher Hart", "character": "Thing", "id": 50400, "credit_id": "52fe4374c3a36847f805551b", "cast_id": 20, "profile_path": "/4PahosMIjfwAji2rBd7izqzu9yB.jpg", "order": 10}, {"name": "Jimmy Workman", "character": "Pugsley Addams", "id": 119866, "credit_id": "52fe4374c3a36847f805551f", "cast_id": 21, "profile_path": "/si15LijCxnGCSbjle6zIiUC4LE9.jpg", "order": 11}, {"name": "John Franklin", "character": "Cousin Itt", "id": 66986, "credit_id": "52fe4374c3a36847f8055523", "cast_id": 22, "profile_path": "/3IZAPwKfnn4XwtXBBn4PHRisdRf.jpg", "order": 12}, {"name": "Tony Azito", "character": "Digit Addams", "id": 119867, "credit_id": "52fe4374c3a36847f8055527", "cast_id": 23, "profile_path": "/a1kWt2wLwYEXQRFoQPvKfIUJQL5.jpg", "order": 13}, {"name": "Douglas Brian Martin", "character": "Dexter Addams", "id": 119868, "credit_id": "52fe4374c3a36847f805552b", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Mercedes McNab", "character": "Girl Scout", "id": 123149, "credit_id": "54dd82a5925141027c00074c", "cast_id": 28, "profile_path": "/6lZx80GFjfkBbjeKEZoe1261uNs.jpg", "order": 15}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe4374c3a36847f80554bf", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.5, "runtime": 99}, "83770": {"poster_path": "/uORuwLgdDFkA4BuU9b9nuhTkuy.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8784318, "overview": "Dean and Sal are the portrait of the Beat Generation. Their search for \"It\" results in a fast paced, energetic roller coaster ride with highs and lows throughout the U.S.", "video": false, "id": 83770, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "On the Road", "tagline": "The best teacher is experience.", "vote_count": 84, "homepage": "http://www.ontheroad-themovie.com/?lang=en", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0337692", "adult": false, "backdrop_path": "/h5OB8Hj5EN6HTcqazIULYs6rQnW.jpg", "production_companies": [{"name": "SPAD Films", "id": 8372}, {"name": "MK2 Productions", "id": 9209}, {"name": "Film Four International", "id": 9210}, {"name": "Canal+", "id": 5358}, {"name": "MK2 Production", "id": 6274}, {"name": "American Zoetrope", "id": 70}, {"name": "Vanguard Films", "id": 614}], "release_date": "2012-05-22", "popularity": 0.884287393258082, "original_title": "On the Road", "budget": 25000000, "cast": [{"name": "Kristen Stewart", "character": "Marylou", "id": 37917, "credit_id": "52fe48be9251416c91096df9", "cast_id": 3, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Garrett Hedlund", "character": "Dean Moriarty", "id": 9828, "credit_id": "52fe48be9251416c91096df5", "cast_id": 2, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 1}, {"name": "Sam Riley", "character": "Sal Paradise", "id": 32987, "credit_id": "52fe48be9251416c91096df1", "cast_id": 1, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 2}, {"name": "Kirsten Dunst", "character": "Camille", "id": 205, "credit_id": "52fe48be9251416c91096dfd", "cast_id": 4, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 3}, {"name": "Tom Sturridge", "character": "Carlo Marx", "id": 90451, "credit_id": "52fe48be9251416c91096e01", "cast_id": 5, "profile_path": "/dJUgs1ypjB4Vfauq9hi64hg2oqn.jpg", "order": 4}, {"name": "Viggo Mortensen", "character": "Old Bull Lee", "id": 110, "credit_id": "52fe48be9251416c91096e05", "cast_id": 6, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 5}, {"name": "Amy Adams", "character": "Jane", "id": 9273, "credit_id": "52fe48be9251416c91096e09", "cast_id": 7, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 6}, {"name": "Alice Braga", "character": "Terry", "id": 8602, "credit_id": "52fe48be9251416c91096e0d", "cast_id": 8, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 7}, {"name": "Steve Buscemi", "character": "", "id": 884, "credit_id": "52fe48be9251416c91096e11", "cast_id": 9, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 8}, {"name": "Danny Morgan", "character": "Ed Dunkel", "id": 548120, "credit_id": "52fe48be9251416c91096e15", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Elisabeth Moss", "character": "Galatea Dunkel", "id": 32798, "credit_id": "52fe48be9251416c91096e1d", "cast_id": 12, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 10}, {"name": "Giovanna Zacar\u00edas", "character": "Puta Loca Roja", "id": 18466, "credit_id": "52fe48be9251416c91096e19", "cast_id": 11, "profile_path": "/MBMoFv0fmJ7gayFi0QC58cRt2t.jpg", "order": 11}, {"name": "Terrence Howard", "character": "Walter", "id": 18288, "credit_id": "52fe48be9251416c91096e33", "cast_id": 16, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 12}], "directors": [{"name": "Walter Salles", "department": "Directing", "job": "Director", "credit_id": "52fe48be9251416c91096e23", "profile_path": "/sqIg1ziNhNbxmAbwKY9BJ6iMUzP.jpg", "id": 8574}], "vote_average": 5.9, "runtime": 137}, "76640": {"poster_path": "/eOfpuaNcCcitHi3HOik7XFavRP4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts", "video": false, "id": 76640, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Last Stand", "tagline": "Not in his town. Not on his watch.", "vote_count": 697, "homepage": "http://www.thelaststandfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1549920", "adult": false, "backdrop_path": "/p4Xazn7f63Sqwslw8va7IqDQBki.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2013-01-12", "popularity": 1.06600656508951, "original_title": "The Last Stand", "budget": 30000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Sheriff Ray Owens", "id": 1100, "credit_id": "52fe4945c3a368484e123233", "cast_id": 2, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Agent John Bannister", "id": 2178, "credit_id": "52fe4945c3a368484e123237", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Rodrigo Santoro", "character": "Frank Martinez", "id": 17289, "credit_id": "52fe4945c3a368484e12323b", "cast_id": 4, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 2}, {"name": "Johnny Knoxville", "character": "Lewis Dinkum", "id": 9656, "credit_id": "52fe4945c3a368484e12323f", "cast_id": 5, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 3}, {"name": "Jaimie Alexander", "character": "Sarah Torrance", "id": 59817, "credit_id": "52fe4945c3a368484e123243", "cast_id": 6, "profile_path": "/vPXy9FBK272nqrJDlQX9zU57vmj.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Mike Figuerola", "id": 40481, "credit_id": "52fe4945c3a368484e123247", "cast_id": 7, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Peter Stormare", "character": "Burrell", "id": 53, "credit_id": "52fe4945c3a368484e12324b", "cast_id": 9, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 6}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Agent Ellen Richards", "id": 589162, "credit_id": "52fe4945c3a368484e123255", "cast_id": 11, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 7}, {"name": "Zach Gilford", "character": "Jerry Bailey", "id": 70303, "credit_id": "52fe4945c3a368484e123259", "cast_id": 12, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 8}, {"name": "John Patrick Amedori", "character": "Agent Mitchell", "id": 43464, "credit_id": "52fe4945c3a368484e12325d", "cast_id": 13, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 9}, {"name": "Daniel Henney", "character": "Phil Hayes", "id": 82093, "credit_id": "52fe4945c3a368484e123261", "cast_id": 14, "profile_path": "/kR4h7S7ny30HaqJpe5rv88RrKYA.jpg", "order": 10}, {"name": "Eduardo Noriega", "character": "Gabriel Cortez", "id": 17093, "credit_id": "52fe4945c3a368484e123289", "cast_id": 21, "profile_path": "/5B1D3MChVAZ5z7cypJbCbSGgDge.jpg", "order": 11}, {"name": "Christiana Leucas", "character": "Christie", "id": 1144930, "credit_id": "52fe4945c3a368484e12328d", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Harry Dean Stanton", "character": "Mr. Parson", "id": 5048, "credit_id": "52fe4945c3a368484e123291", "cast_id": 23, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 13}, {"name": "Kristen Rakes", "character": "Agent Devers", "id": 1144931, "credit_id": "52fe4945c3a368484e123295", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Diana R. Lupo", "character": "Magnet Girl", "id": 200465, "credit_id": "52fe4945c3a368484e123299", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Billy Blair", "character": "Man in Orange Suit", "id": 968889, "credit_id": "52fe4945c3a368484e12329d", "cast_id": 26, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 16}, {"name": "Titos Menchaca", "character": "Mayor", "id": 1033495, "credit_id": "52fe4945c3a368484e1232a1", "cast_id": 27, "profile_path": null, "order": 17}], "directors": [{"name": "Kim Jee-woon", "department": "Directing", "job": "Director", "credit_id": "52fe4945c3a368484e123251", "profile_path": "/tqZ0HprSHXrxGC4V7R4uA1BCLM4.jpg", "id": 543568}], "vote_average": 5.6, "runtime": 107}, "109410": {"poster_path": "/vlP18ooLmvYVNnqidbot0FupY05.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94380428, "overview": "\"42\" is the powerful story of Jackie Robinson, the legendary baseball player who broke Major League Baseball's color barrier when he joined the roster of the Brooklyn Dodgers. The film follows the innovative Dodger's general manager Branch Rickey, the MLB executive who first signed Robinson to the minors and then helped to bring him up to the show.", "video": false, "id": 109410, "genres": [{"id": 18, "name": "Drama"}], "title": "42", "tagline": "The True Story Of An American Legend", "vote_count": 524, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453562", "adult": false, "backdrop_path": "/d9PybHYHlthumdJSTCXN1cmRsjF.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2013-04-12", "popularity": 1.14893801793666, "original_title": "42", "budget": 40000000, "cast": [{"name": "Chadwick Boseman", "character": "Jackie Robinson", "id": 172069, "credit_id": "52fe4ab2c3a36847f81dcdfb", "cast_id": 19, "profile_path": "/xE2sR6skskfCmbVKkebbDXSURiT.jpg", "order": 0}, {"name": "T.R. Knight", "character": "Harold Parrott", "id": 164205, "credit_id": "52fe4ab2c3a36847f81dcde3", "cast_id": 13, "profile_path": "/aaeEWrTdZnLWrqdFdgnexMunBDx.jpg", "order": 1}, {"name": "Harrison Ford", "character": "Branch Rickey", "id": 3, "credit_id": "52fe4ab2c3a36847f81dcdd7", "cast_id": 9, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 2}, {"name": "Nicole Beharie", "character": "Rachel Isum", "id": 87243, "credit_id": "52fe4ab2c3a36847f81dcdf7", "cast_id": 18, "profile_path": "/9HiTyj5xHy6uLnbYE1TngB2ausz.jpg", "order": 3}, {"name": "Christopher Meloni", "character": "Leo Durocher", "id": 22227, "credit_id": "52fe4ab2c3a36847f81dcddb", "cast_id": 10, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 4}, {"name": "John C. McGinley", "character": "Red Barber", "id": 11885, "credit_id": "52fe4ab2c3a36847f81dcddf", "cast_id": 12, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 5}, {"name": "Ryan Merriman", "character": "Dixie Walker", "id": 57136, "credit_id": "52fe4ab2c3a36847f81dcde7", "cast_id": 14, "profile_path": "/sdo2IMtBRjiIJOLpmBrebAJaF89.jpg", "order": 6}, {"name": "Jud Tylor", "character": "Laraine Day", "id": 169476, "credit_id": "52fe4ab2c3a36847f81dcdeb", "cast_id": 15, "profile_path": "/xlaYPWHpEkZP1X5C1ZuFyds3yAk.jpg", "order": 7}, {"name": "Brett Cullen", "character": "Clay Hopper", "id": 16841, "credit_id": "52fe4ab2c3a36847f81dcdef", "cast_id": 16, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 8}, {"name": "Brad Beyer", "character": "Kirby Higbe", "id": 19227, "credit_id": "52fe4ab2c3a36847f81dcdf3", "cast_id": 17, "profile_path": "/1yrzFDWNOxM75obKSe1744oQf2h.jpg", "order": 9}, {"name": "Lucas Black", "character": "Pee Wee Reese", "id": 155, "credit_id": "52fe4ab2c3a36847f81dcdff", "cast_id": 20, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 10}, {"name": "Andre Holland", "character": "Wendell Smith", "id": 459980, "credit_id": "52fe4ab2c3a36847f81dce03", "cast_id": 21, "profile_path": "/nq6qk6P5idimcSJ0bpFqLQrb0Li.jpg", "order": 11}, {"name": "Alan Tudyk", "character": "Ben Chapman", "id": 21088, "credit_id": "52fe4ab2c3a36847f81dce07", "cast_id": 22, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 12}, {"name": "Hamish Linklater", "character": "Ralph Branca", "id": 184581, "credit_id": "52fe4ab2c3a36847f81dce0b", "cast_id": 23, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 13}, {"name": "James Pickens Jr.", "character": "Mr. Brock", "id": 25544, "credit_id": "52fe4ab2c3a36847f81dce0f", "cast_id": 24, "profile_path": "/wKuyPcNtK73AdWabMyIjbuPAS6G.jpg", "order": 14}, {"name": "Gino Anthony Pesi", "character": "Joe Garagiola", "id": 150664, "credit_id": "52fe4ab2c3a36847f81dce13", "cast_id": 25, "profile_path": "/4Ai4t02qQfC5XhvcL3u7Th7lW2o.jpg", "order": 15}, {"name": "Kelley Jakle", "character": "Alice", "id": 1107298, "credit_id": "52fe4ab2c3a36847f81dce17", "cast_id": 26, "profile_path": null, "order": 16}], "directors": [{"name": "Brian Helgeland", "department": "Directing", "job": "Director", "credit_id": "52fe4ab2c3a36847f81dcda9", "profile_path": "/oJrbZ6efL7CalCeypRyusRbHzPF.jpg", "id": 4723}], "vote_average": 6.7, "runtime": 128}, "109414": {"poster_path": "/1rMzHyOsk1b1ddcFJgMSB6kOASu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101470202, "overview": "While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.", "video": false, "id": 109414, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "This Is the End", "tagline": "Nothing ruins a party like the end of the world.", "vote_count": 975, "homepage": "http://www.thisistheend.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1245492", "adult": false, "backdrop_path": "/hkuPAYz0TstcAquVpibaDnADqQS.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mandate Pictures", "id": 771}, {"name": "Point Grey Pictures", "id": 16615}, {"name": "Sony Pictures Entertainment (SPE)", "id": 7431}], "release_date": "2013-06-12", "popularity": 2.70444670650157, "original_title": "This Is the End", "budget": 32000000, "cast": [{"name": "James Franco", "character": "James Franco", "id": 17051, "credit_id": "52fe4ab2c3a36847f81dcf33", "cast_id": 14, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Jonah Hill", "id": 21007, "credit_id": "52fe4ab2c3a36847f81dcf2f", "cast_id": 13, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Seth Rogen", "character": "Seth Rogen", "id": 19274, "credit_id": "52fe4ab2c3a36847f81dcf43", "cast_id": 18, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Jay Baruchel", "id": 449, "credit_id": "52fe4ab2c3a36847f81dcf47", "cast_id": 19, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Danny McBride", "character": "Danny McBride", "id": 62862, "credit_id": "52fe4ab2c3a36847f81dcf5b", "cast_id": 26, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 4}, {"name": "Craig Robinson", "character": "Craig Robinson", "id": 64342, "credit_id": "52fe4ab2c3a36847f81dcf5f", "cast_id": 28, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 5}, {"name": "Michael Cera", "character": "Michael Cera", "id": 39995, "credit_id": "52fe4ab2c3a36847f81dcf63", "cast_id": 29, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 6}, {"name": "Emma Watson", "character": "Emma Watson", "id": 10990, "credit_id": "52fe4ab2c3a36847f81dcf3b", "cast_id": 16, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 7}, {"name": "Mindy Kaling", "character": "Mindy Kaling", "id": 125167, "credit_id": "52fe4ab2c3a36847f81dcf57", "cast_id": 25, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 8}, {"name": "David Krumholtz", "character": "David Krumholtz", "id": 38582, "credit_id": "52fe4ab2c3a36847f81dcf4f", "cast_id": 22, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 9}, {"name": "Christopher Mintz-Plasse", "character": "Christopher Mintz-Plasse", "id": 54691, "credit_id": "52fe4ab2c3a36847f81dcf67", "cast_id": 30, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 10}, {"name": "Rihanna", "character": "Rihanna", "id": 131519, "credit_id": "52fe4ab2c3a36847f81dcf37", "cast_id": 15, "profile_path": "/ssguCAeEMq74FS2ICMJ3Q9Wy7Bf.jpg", "order": 11}, {"name": "Martin Starr", "character": "Martin Starr", "id": 41089, "credit_id": "52fe4ab2c3a36847f81dcf53", "cast_id": 24, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 12}, {"name": "Paul Rudd", "character": "Paul Rudd", "id": 22226, "credit_id": "52fe4ab2c3a36847f81dcf6b", "cast_id": 31, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 13}, {"name": "Channing Tatum", "character": "Channing Tatum", "id": 38673, "credit_id": "52fe4ab2c3a36847f81dcf6f", "cast_id": 33, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 14}, {"name": "Kevin Hart", "character": "Kevin Hart", "id": 55638, "credit_id": "52fe4ab2c3a36847f81dcfc1", "cast_id": 47, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 15}, {"name": "Aziz Ansari", "character": "Aziz Ansari", "id": 86626, "credit_id": "52fe4ab2c3a36847f81dcf4b", "cast_id": 21, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 16}, {"name": "Jason Segel", "character": "Jason Segel", "id": 41088, "credit_id": "52fe4ab2c3a36847f81dcf3f", "cast_id": 17, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 17}, {"name": "Nick Carter", "character": "", "id": 82602, "credit_id": "55221a0ec3a368345300260a", "cast_id": 50, "profile_path": "/EwGA9BeBp31GxS6ZzHnOIMFGVZ.jpg", "order": 18}, {"name": "Kevin Richardson", "character": "", "id": 154013, "credit_id": "55221a1fc3a3684dd4005186", "cast_id": 51, "profile_path": "/qwEW7VuGm1u5TK65dHSxdVyaQxc.jpg", "order": 19}, {"name": "A.J. McLean", "character": "", "id": 82603, "credit_id": "55221a26c3a36812ee003eef", "cast_id": 52, "profile_path": "/tn4fzkG0Ql5R7rxIuH9efE4gLYl.jpg", "order": 20}, {"name": "Howie Dorough", "character": "", "id": 82604, "credit_id": "55221a2e92514171cb002405", "cast_id": 53, "profile_path": "/9s8RdbOLuNZzVvT1l8JObo9ylIT.jpg", "order": 21}, {"name": "Brian Littrell", "character": "", "id": 82601, "credit_id": "55221a399251417be2003cf9", "cast_id": 54, "profile_path": "/kBq06Z5G4OurfYVqs3QuznEw6j5.jpg", "order": 22}], "directors": [{"name": "Seth Rogen", "department": "Directing", "job": "Director", "credit_id": "52fe4ab2c3a36847f81dcefb", "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "id": 19274}, {"name": "Evan Goldberg", "department": "Directing", "job": "Director", "credit_id": "52fe4ab2c3a36847f81dcf01", "profile_path": "/evgasY3JkcPEyQ1Jqz5BHCxb5oc.jpg", "id": 54734}], "vote_average": 6.3, "runtime": 107}, "11113": {"poster_path": "/AiyysCDn0l5SHO5dTGHsrKjPBN8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72000000, "overview": "A misogynistic and snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.", "video": false, "id": 11113, "genres": [{"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "My Fair Lady", "tagline": "The loverliest motion picture of them all!", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0058385", "adult": false, "backdrop_path": "/soKwqxI1j5rNkVfDeuarmTHetcH.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1964-10-21", "popularity": 1.0183957652015, "original_title": "My Fair Lady", "budget": 17000000, "cast": [{"name": "Audrey Hepburn", "character": "Eliza Doolittle", "id": 1932, "credit_id": "52fe43fb9251416c75024eab", "cast_id": 1, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 0}, {"name": "Rex Harrison", "character": "Professor Henry Higgins", "id": 35321, "credit_id": "52fe43fb9251416c75024eaf", "cast_id": 2, "profile_path": "/4kwLkcMGpOolb9eGx9v4RaD36Ng.jpg", "order": 1}, {"name": "Stanley Holloway", "character": "Alfred P. Doolittle", "id": 12727, "credit_id": "52fe43fb9251416c75024eb3", "cast_id": 3, "profile_path": "/gUjzJmb2xupsq0GATfNHUApSUm3.jpg", "order": 2}, {"name": "Wilfrid Hyde-White", "character": "Colonel Hugh Pickering", "id": 15387, "credit_id": "52fe43fb9251416c75024eb7", "cast_id": 4, "profile_path": "/kqMDVX6MR0wRAFWO85M0geJPFHV.jpg", "order": 3}, {"name": "Gladys Cooper", "character": "Mrs. Higgins", "id": 3366, "credit_id": "538e0730c3a368713f005282", "cast_id": 14, "profile_path": "/muj0IC75UJn841IME4LILMMFwtc.jpg", "order": 4}, {"name": "Jeremy Brett", "character": "Freddy Eynsford-Hill", "id": 140914, "credit_id": "538e073fc3a3687143005101", "cast_id": 15, "profile_path": "/xIxerBymUzzEkxNq0YlF0HdfRid.jpg", "order": 5}, {"name": "Theodore Bikel", "character": "Zoltan Karpathy", "id": 6609, "credit_id": "538e074cc3a368714e0053aa", "cast_id": 16, "profile_path": "/4HM8869sjfCNKVnOgADBAh4eWU3.jpg", "order": 6}, {"name": "Mona Washbourne", "character": "Mrs. Pearce", "id": 89895, "credit_id": "538e0757c3a36871550051ce", "cast_id": 17, "profile_path": "/dYMq56N0O2r1zHM2qJ1ir4FyyIb.jpg", "order": 7}, {"name": "Isobel Elsom", "character": "Mrs. Eynsford- Hill", "id": 95263, "credit_id": "538e0763c3a368713f00528b", "cast_id": 18, "profile_path": "/k7C1YSVRbTp33QebdDEfqMgGBiy.jpg", "order": 8}, {"name": "John Holland", "character": "Butler", "id": 126656, "credit_id": "538e076cc3a36871550051d2", "cast_id": 19, "profile_path": null, "order": 9}], "directors": [{"name": "George Cukor", "department": "Directing", "job": "Director", "credit_id": "52fe43fb9251416c75024ebd", "profile_path": "/t2RWv3nzCoqKWYiCGCjwiIHW4Sj.jpg", "id": 14674}], "vote_average": 7.3, "runtime": 170}, "35690": {"poster_path": "/90ICc0MXgDgTtWD3qfA1BfkA21t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A drama centered on a rebellious girl who is sent to a Southern beach town for the summer to stay with her father. Through their mutual love of music, the estranged duo learn to reconnect.", "video": false, "id": 35690, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Last Song", "tagline": "A story about family, first love, second chances and the moment in life that lead you back home.", "vote_count": 140, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1294226", "adult": false, "backdrop_path": "/vlsf3SDSNqMtnirDSX17lLGIh2d.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2010-03-31", "popularity": 0.974100605219012, "original_title": "The Last Song", "budget": 0, "cast": [{"name": "Miley Cyrus", "character": "Ronnie Miller", "id": 76594, "credit_id": "52fe45b09251416c9103af59", "cast_id": 5, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Steve Miller", "id": 17141, "credit_id": "52fe45b09251416c9103af5d", "cast_id": 6, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Bobby Coleman", "character": "Jonah Miller", "id": 41308, "credit_id": "52fe45b09251416c9103af61", "cast_id": 7, "profile_path": "/gayxsFfMHH8GW1EfzXtqcevLzve.jpg", "order": 2}, {"name": "Liam Hemsworth", "character": "Will Blakelee", "id": 96066, "credit_id": "52fe45b09251416c9103af65", "cast_id": 8, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 3}, {"name": "Hallock Beals", "character": "Scott", "id": 114599, "credit_id": "52fe45b09251416c9103af69", "cast_id": 9, "profile_path": "/cp8qmpaKnm6wHmWEgLqwJruIn3c.jpg", "order": 4}, {"name": "Kelly Preston", "character": "Kim", "id": 11164, "credit_id": "52fe45b09251416c9103af6d", "cast_id": 10, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 5}, {"name": "Nick Lashaway", "character": "Marcus", "id": 114600, "credit_id": "52fe45b09251416c9103af71", "cast_id": 11, "profile_path": "/85QB6H3EnmrGoIvDZ2V8FFwie2j.jpg", "order": 6}, {"name": "Carly Chaikin", "character": "Blaze", "id": 114601, "credit_id": "52fe45b09251416c9103af75", "cast_id": 12, "profile_path": "/yNtb4RxjMWxKzPuUg1MIYrTJ9vf.jpg", "order": 7}, {"name": "Kate Vernon", "character": "Susan Blakelee", "id": 19740, "credit_id": "52fe45b09251416c9103af79", "cast_id": 13, "profile_path": "/qQRoxwIVkRU0al9J2EUDBSD80kq.jpg", "order": 8}, {"name": "Melissa Ordway", "character": "Ashley", "id": 114602, "credit_id": "52fe45b09251416c9103af7d", "cast_id": 14, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 9}, {"name": "Nick Searcy", "character": "Tom Blakelee", "id": 12538, "credit_id": "52fe45b09251416c9103af81", "cast_id": 15, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 10}, {"name": "Adam Barnett", "character": "Teddy", "id": 114603, "credit_id": "52fe45b09251416c9103af85", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Brandon Cyrus", "character": "Volleyball Guy", "id": 1329572, "credit_id": "53973605c3a368642300602a", "cast_id": 17, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 12}], "directors": [{"name": "Julie Anne Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe45b09251416c9103af43", "profile_path": "/6NBh5K9k5OV3RoU458RajwLjqOi.jpg", "id": 114597}], "vote_average": 6.7, "runtime": 107}, "2924": {"poster_path": "/iApcM7uzI0oHk4cxHhg5BqZzShh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152368585, "overview": "They say a blast of flames can take a life ... and hide a secret. But now firemen brothers Brian and Stephen McCaffrey are battling each other over past slights while trying to stop an arsonist with a diabolical agenda from torching Chicago.", "video": false, "id": 2924, "genres": [{"id": 12, "name": "Adventure"}], "title": "Backdraft", "tagline": "Silently behind a door, it waits.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101393", "adult": false, "backdrop_path": "/iosYFI66bhoB5uC27qvIejrEvJu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Trilogy Entertainment Group", "id": 2231}, {"name": "Imagine Films Entertainment", "id": 11262}], "release_date": "1991-05-24", "popularity": 1.46245176687872, "original_title": "Backdraft", "budget": 75000000, "cast": [{"name": "Kurt Russell", "character": "Dennis McCaffrey", "id": 6856, "credit_id": "52fe4374c3a36847f8055921", "cast_id": 3, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Donald Rimgale", "id": 380, "credit_id": "52fe4375c3a36847f8055925", "cast_id": 4, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Ronald Bartel", "id": 55636, "credit_id": "52fe4375c3a36847f8055929", "cast_id": 5, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "William Baldwin", "character": "Brian McCaffrey", "id": 13021, "credit_id": "52fe4375c3a36847f805592d", "cast_id": 6, "profile_path": "/wQjXdPYT524QJ0YqKrjPcZWfkHu.jpg", "order": 3}, {"name": "Jennifer Jason Leigh", "character": "Jennifer Vaitkus", "id": 10431, "credit_id": "52fe4375c3a36847f8055931", "cast_id": 7, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 4}, {"name": "Scott Glenn", "character": "John 'Axe' Adcox", "id": 349, "credit_id": "52fe4375c3a36847f8055935", "cast_id": 8, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 5}, {"name": "Rebecca De Mornay", "character": "Helen McCaffrey", "id": 28412, "credit_id": "52fe4375c3a36847f8055939", "cast_id": 9, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 6}, {"name": "Jason Gedrick", "character": "Tim Kirzminski", "id": 48012, "credit_id": "52fe4375c3a36847f805593d", "cast_id": 10, "profile_path": "/jjmmSmluDOdXAZpAqsYUQcX7qOl.jpg", "order": 7}, {"name": "J. T. Walsh", "character": "Alderman Marty Swayzak", "id": 22131, "credit_id": "52fe4375c3a36847f8055941", "cast_id": 11, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 8}, {"name": "Anthony Mockus Sr.", "character": "Chief John Fitzgerald", "id": 83197, "credit_id": "52fe4375c3a36847f8055945", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Cedric Young", "character": "Grindle", "id": 156598, "credit_id": "52fe4375c3a36847f8055949", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Juan Ram\u00edrez", "character": "Ray Santos", "id": 148306, "credit_id": "52fe4375c3a36847f805594d", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Kevin Casey", "character": "Nightingale", "id": 987107, "credit_id": "52fe4375c3a36847f8055951", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jack McGee", "character": "Schmidt", "id": 10489, "credit_id": "52fe4375c3a36847f8055955", "cast_id": 16, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 13}, {"name": "Mark Wheeler", "character": "Pengelly", "id": 152718, "credit_id": "52fe4375c3a36847f8055959", "cast_id": 17, "profile_path": "/5Sx48iaEVE5G4OktUcZ1sJHePeE.jpg", "order": 14}, {"name": "Ryan Goldstein", "character": "Brian, Age 7", "id": 1107987, "credit_id": "52fe4375c3a36847f80559a5", "cast_id": 30, "profile_path": "/wqpzKnYuTGuj2KBhvTZRbtBtUgF.jpg", "order": 15}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe4374c3a36847f805591d", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.2, "runtime": 137}, "109421": {"poster_path": "/ttD69Yhh2BV1WVqr27NRbF8ubOW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32086041, "overview": "A woman turns to prescription medication as a way of handling her anxiety concerning her husband's upcoming release from prison.", "video": false, "id": 109421, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Side Effects", "tagline": "One pill can change your life.", "vote_count": 702, "homepage": "http://www.sideeffectsmayvary.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2053463", "adult": false, "backdrop_path": "/nG2QqzTAmfNsD33ltFIrhErJQh9.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Endgame Entertainment", "id": 1205}], "release_date": "2013-02-08", "popularity": 0.980201184373569, "original_title": "Side Effects", "budget": 30000000, "cast": [{"name": "Rooney Mara", "character": "Emily Taylor", "id": 108916, "credit_id": "52fe4ab4c3a36847f81dd449", "cast_id": 13, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 0}, {"name": "Jude Law", "character": "Jonathan Banks", "id": 9642, "credit_id": "52fe4ab4c3a36847f81dd44d", "cast_id": 14, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Channing Tatum", "character": "Martin Taylor", "id": 38673, "credit_id": "52fe4ab4c3a36847f81dd445", "cast_id": 12, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 2}, {"name": "Catherine Zeta-Jones", "character": "Dr. Victoria Siebert", "id": 1922, "credit_id": "52fe4ab4c3a36847f81dd451", "cast_id": 15, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 3}, {"name": "Vinessa Shaw", "character": "Dierdre Banks", "id": 5025, "credit_id": "52fe4ab4c3a36847f81dd455", "cast_id": 16, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 4}, {"name": "David Costabile", "character": "Carl Millbank", "id": 82167, "credit_id": "52fe4ab4c3a36847f81dd459", "cast_id": 17, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 5}, {"name": "Polly Draper", "character": "Eileen Spicer", "id": 114470, "credit_id": "52fe4ab4c3a36847f81dd45d", "cast_id": 18, "profile_path": "/1zViE8Kn2i6Idg2uOMJOnptRwnj.jpg", "order": 6}, {"name": "Andrea Bogart", "character": "Tracey Sutton", "id": 39171, "credit_id": "52fe4ab4c3a36847f81dd461", "cast_id": 19, "profile_path": "/1DLKPdD96Rb6lagQctq8eDjGqsb.jpg", "order": 7}, {"name": "Mamie Gummer", "character": "Kayla", "id": 47281, "credit_id": "52fe4ab4c3a36847f81dd465", "cast_id": 22, "profile_path": "/ptz8SYBGt8XJlH6m7pjqhQMr6D3.jpg", "order": 8}, {"name": "Ann Dowd", "character": "Martin's Mother", "id": 43366, "credit_id": "52fe4ab4c3a36847f81dd469", "cast_id": 23, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 9}, {"name": "Peter Friedman", "character": "Banks' Partner #1", "id": 54246, "credit_id": "52fe4ab4c3a36847f81dd46d", "cast_id": 24, "profile_path": "/1plom5G0I425wj8l8xXhnvaFcPs.jpg", "order": 10}, {"name": "Carmen Pelaez", "character": "Prison Desk Guard", "id": 103373, "credit_id": "52fe4ab4c3a36847f81dd47d", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Marin Ireland", "character": "Upset Visitor", "id": 164094, "credit_id": "52fe4ab4c3a36847f81dd481", "cast_id": 28, "profile_path": "/wtoGyUBq04qGjEEB9OHFBBOggVJ.jpg", "order": 12}, {"name": "James Martinez", "character": "Police Officer at the Hospital", "id": 104482, "credit_id": "52fe4ab4c3a36847f81dd485", "cast_id": 29, "profile_path": "/x9lfg8FS25BASd8woEkoM94HHvV.jpg", "order": 13}, {"name": "Vladimi Versailles", "character": "Augustin", "id": 1005939, "credit_id": "52fe4ab4c3a36847f81dd489", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Michelle Vergara Moore", "character": "Joan", "id": 1271790, "credit_id": "52fe4ab4c3a36847f81dd48d", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Victor Cruz", "character": "NYPD Officer Beahan", "id": 979216, "credit_id": "52fe4ab4c3a36847f81dd491", "cast_id": 32, "profile_path": "/aDn5Kxft6FcK9fxmgf7oxGSpHaJ.jpg", "order": 16}, {"name": "Mitchell Michaeliszyn", "character": "Ezra Banks", "id": 1271791, "credit_id": "52fe4ab4c3a36847f81dd495", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Michael Nathanson", "character": "Assistant District Attorney", "id": 995514, "credit_id": "52fe4ab4c3a36847f81dd499", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Timothy Klein", "character": "Transporting Officer Kevin", "id": 1045969, "credit_id": "52fe4ab4c3a36847f81dd49d", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Sheila Tapia", "character": "Emily's Attorney", "id": 1046157, "credit_id": "52fe4ab4c3a36847f81dd4a1", "cast_id": 36, "profile_path": null, "order": 20}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4ab4c3a36847f81dd405", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.1, "runtime": 106}, "109424": {"poster_path": "/AnMTMPTUzeWNbYxzp29WqYf1br1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95000000, "overview": "The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.", "video": false, "id": 109424, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Captain Phillips", "tagline": "Out here survival is everything.", "vote_count": 924, "homepage": "http://www.captainphillipsmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "so", "name": "Somali"}], "imdb_id": "tt1535109", "adult": false, "backdrop_path": "/w0RHju6nGeLhj1Ryb7mqf5xCbtG.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "Trigger Street Productions", "id": 11801}], "release_date": "2013-10-11", "popularity": 2.08116008711726, "original_title": "Captain Phillips", "budget": 55000000, "cast": [{"name": "Tom Hanks", "character": "Captain Richard Phillips", "id": 31, "credit_id": "52fe4ab5c3a36847f81dd51d", "cast_id": 10, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Andrea Phillips", "id": 2229, "credit_id": "52fe4ab5c3a36847f81dd521", "cast_id": 11, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "Max Martini", "character": "SEAL Commander", "id": 94864, "credit_id": "52fe4ab5c3a36847f81dd525", "cast_id": 12, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 2}, {"name": "Chris Mulkey", "character": "John Cronan", "id": 15824, "credit_id": "52fe4ab5c3a36847f81dd529", "cast_id": 13, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 3}, {"name": "Yul Vazquez", "character": "Captain Frank Castellano", "id": 75604, "credit_id": "52fe4ab5c3a36847f81dd52d", "cast_id": 14, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 4}, {"name": "Corey Johnson", "character": "Ken Quinn", "id": 17199, "credit_id": "52fe4ab5c3a36847f81dd531", "cast_id": 15, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 5}, {"name": "David Warshofsky", "character": "Mike Perry", "id": 37204, "credit_id": "52fe4ab5c3a36847f81dd535", "cast_id": 16, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 6}, {"name": "John Magaro", "character": "Dan Phillips", "id": 37154, "credit_id": "52fe4ab5c3a36847f81dd539", "cast_id": 17, "profile_path": "/v1SUpbMcu46dRBACoTnzkdfBgIn.jpg", "order": 7}, {"name": "Michael Chernus", "character": "Shane Murphy", "id": 87070, "credit_id": "52fe4ab5c3a36847f81dd53d", "cast_id": 18, "profile_path": "/z3H7if45AI2bpT98m5geAXdlrSV.jpg", "order": 8}, {"name": "Barkhad Abdi", "character": "Muse", "id": 1261694, "credit_id": "52fe4ab5c3a36847f81dd545", "cast_id": 20, "profile_path": "/bF7mXBHfGZWVi5OyfWAqLhfd8F0.jpg", "order": 9}, {"name": "Faysal Ahmed", "character": "Najee", "id": 1266858, "credit_id": "52fe4ab5c3a36847f81dd549", "cast_id": 21, "profile_path": "/hpziqMCwFZopAZ4me3S7l21BZ0f.jpg", "order": 10}, {"name": "Barkhad Abdirahman", "character": "Bilal", "id": 1266859, "credit_id": "52fe4ab5c3a36847f81dd54d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Mahat M. Ali", "character": "Elmi", "id": 1266862, "credit_id": "52fe4ab5c3a36847f81dd551", "cast_id": 23, "profile_path": "/A11hg1ZViMugGJFq8pmiTpc1Wbv.jpg", "order": 12}, {"name": "Angus MacInnes", "character": "Maersk Alabama Crew", "id": 58475, "credit_id": "52fe4ab5c3a36847f81dd541", "cast_id": 19, "profile_path": "/qftkol8hj7yBBP3KCxRWYkhRyLC.jpg", "order": 13}, {"name": "San Shella", "character": "Maersk Alabama Crew", "id": 203541, "credit_id": "53ac0ecf0e0a267616001d18", "cast_id": 41, "profile_path": null, "order": 14}, {"name": "Amr El-Bayoumi", "character": "Maersk Alabama Crew", "id": 1323776, "credit_id": "53ac0f060e0a267612001bed", "cast_id": 42, "profile_path": "/yRsJPhtk29pvA81GEzg0CfkRGde.jpg", "order": 15}, {"name": "Azeez Mohammed", "character": "Pirate Leader", "id": 1334464, "credit_id": "53ac0fd00e0a267625001e65", "cast_id": 43, "profile_path": null, "order": 16}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe4ab4c3a36847f81dd4ef", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 7.8, "runtime": 134}, "109428": {"poster_path": "/3m2YYPmPSIFtAEQyU6mto67SpG5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97542952, "overview": "Evil Dead, the fourth installment of the Evil Dead franchise, serving as both a reboot and as a loose continuation of the series, features Mia, a young woman struggling with sobriety, heads to a remote cabin with a group of friends where the discovery of a Book of the Dead unwittingly summon up dormant demons which possess the youngsters one by one.", "video": false, "id": 109428, "genres": [{"id": 27, "name": "Horror"}], "title": "Evil Dead", "tagline": "The most terrifying film you will ever experience.", "vote_count": 895, "homepage": "http://www.evildead-movie.com/", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1288558", "adult": false, "backdrop_path": "/6sIvoRBrX6YqCFquQ6sKMUQN9qX.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "FilmDistrict", "id": 7263}, {"name": "Ghost House Pictures", "id": 768}], "release_date": "2013-04-05", "popularity": 1.30381888459992, "original_title": "Evil Dead", "budget": 17000000, "cast": [{"name": "Jane Levy", "character": "Mia", "id": 530618, "credit_id": "52fe4ab5c3a36847f81dd661", "cast_id": 12, "profile_path": "/5mHf6oyQGcSi5YXA95Gi2em8Sha.jpg", "order": 0}, {"name": "Jessica Lucas", "character": "Olivia", "id": 51989, "credit_id": "52fe4ab5c3a36847f81dd665", "cast_id": 13, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 1}, {"name": "Shiloh Fernandez", "character": "David", "id": 79795, "credit_id": "52fe4ab5c3a36847f81dd669", "cast_id": 14, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 2}, {"name": "Lou Taylor Pucci", "character": "Eric", "id": 17441, "credit_id": "52fe4ab5c3a36847f81dd66d", "cast_id": 15, "profile_path": "/bl2iZAdBRjq9I7LhZTmxfxKdNcQ.jpg", "order": 3}, {"name": "Elizabeth Blackmore", "character": "Natalie", "id": 1046233, "credit_id": "52fe4ab5c3a36847f81dd671", "cast_id": 16, "profile_path": "/gCJqH1ATAUs6EjAe2A4m9NuSxHS.jpg", "order": 4}, {"name": "Rupert Degas", "character": "Demon (voice)", "id": 211412, "credit_id": "54f72d0b9251416ee400162d", "cast_id": 57, "profile_path": "/8ONoi0l5Np7AZzczk3ddnsVcXq9.jpg", "order": 5}, {"name": "Jim McLarty", "character": "Harold", "id": 196780, "credit_id": "54f72d2ac3a3683a6900214f", "cast_id": 58, "profile_path": null, "order": 6}], "directors": [{"name": "Fede Alvarez", "department": "Directing", "job": "Director", "credit_id": "52fe4ab5c3a36847f81dd639", "profile_path": "/dFlExxHuo6hl3GbNM8gisSsGp9P.jpg", "id": 932248}], "vote_average": 6.2, "runtime": 90}, "8681": {"poster_path": "/q2ufZ5zgbyvwSVR9J5wR6nEAEyy.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 226830568, "overview": "While vacationing with a friend in Paris, an American girl is kidnapped by a gang of human traffickers intent on selling her into forced prostitution. Working against the clock, her ex-spy father must pull out all the stops to save her. But with his best years possibly behind him, the job may be more than he can handle.", "video": false, "id": 8681, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Taken", "tagline": "They took his daughter. He'll take their lives.", "vote_count": 1893, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hO1R1TI429PjkOjby4dTPBrWFwn.jpg", "poster_path": "/4PNFiSaJWvWhkdOw0KF9Vf7v3gC.jpg", "id": 135483, "name": "Taken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "sq", "name": "shqip"}], "imdb_id": "tt0936501", "adult": false, "backdrop_path": "/lcqVBBirzzX520AyOK3k7kXBDJ6.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "EuropaCorp", "id": 6896}, {"name": "M6 Films", "id": 1115}, {"name": "Grive Productions", "id": 6877}, {"name": "Canal+", "id": 5358}, {"name": "TPS Star", "id": 6586}, {"name": "M6", "id": 11261}, {"name": "All Pictures Media", "id": 23614}], "release_date": "2008-09-25", "popularity": 3.06632550294664, "original_title": "Taken", "budget": 25000000, "cast": [{"name": "Liam Neeson", "character": "Bryan", "id": 3896, "credit_id": "52fe44b4c3a36847f80a546b", "cast_id": 1, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Famke Janssen", "character": "Lenore", "id": 10696, "credit_id": "52fe44b4c3a36847f80a546f", "cast_id": 2, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 1}, {"name": "Maggie Grace", "character": "Kim", "id": 11825, "credit_id": "52fe44b4c3a36847f80a54ab", "cast_id": 13, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 2}, {"name": "Katie Cassidy", "character": "Amanda", "id": 55775, "credit_id": "52fe44b4c3a36847f80a54a3", "cast_id": 11, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 3}, {"name": "Holly Valance", "character": "La chanteuse", "id": 55776, "credit_id": "52fe44b4c3a36847f80a54a7", "cast_id": 12, "profile_path": "/vxy32d9cFizzYY5Xi6MefOu3P10.jpg", "order": 4}, {"name": "Xander Berkeley", "character": "Stuart", "id": 3982, "credit_id": "52fe44b4c3a36847f80a54af", "cast_id": 14, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 5}, {"name": "Olivier Rabourdin", "character": "Jean-Claude", "id": 49278, "credit_id": "52fe44b4c3a36847f80a54b3", "cast_id": 16, "profile_path": "/6txdehoOPpGllEsU31WnBkvgRJa.jpg", "order": 6}, {"name": "Leland Orser", "character": "Sam", "id": 2221, "credit_id": "52fe44b4c3a36847f80a54b7", "cast_id": 17, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 7}, {"name": "Jon Gries", "character": "Casey", "id": 9629, "credit_id": "52fe44b4c3a36847f80a54bb", "cast_id": 18, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 8}, {"name": "Camille Japy", "character": "Isabelle", "id": 35893, "credit_id": "52fe44b4c3a36847f80a54bf", "cast_id": 19, "profile_path": "/xbR1gFPNIAF1Jq0zpYECYxcLYA4.jpg", "order": 9}, {"name": "David Warshofsky", "character": "Bernie", "id": 37204, "credit_id": "52fe44b4c3a36847f80a54c3", "cast_id": 20, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 10}, {"name": "Goran Kosti\u0107", "character": "Gregor", "id": 44736, "credit_id": "52fe44b4c3a36847f80a54c7", "cast_id": 21, "profile_path": "/3L0bBollvrXMH7BcuUKpcMue8Lo.jpg", "order": 11}, {"name": "Radivoje Bukvi\u0107", "character": "Anton", "id": 230400, "credit_id": "52fe44b4c3a36847f80a54cb", "cast_id": 22, "profile_path": "/aiTCplxQF67wOASBAdHGp7fhZ6U.jpg", "order": 12}, {"name": "Nicolas Giraud", "character": "Peter", "id": 143389, "credit_id": "52fe44b4c3a36847f80a54cf", "cast_id": 23, "profile_path": "/gTiPcKYypU2YWaMxrn2wRi8giCQ.jpg", "order": 13}, {"name": "G\u00e9rard Watkins", "character": "Saint-Clair", "id": 49947, "credit_id": "52fe44b4c3a36847f80a54d3", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Arben Bajraktaraj", "character": "Marko", "id": 234921, "credit_id": "52fe44b4c3a36847f80a54d7", "cast_id": 25, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 15}, {"name": "Jalil Naciri", "character": "Ali", "id": 562155, "credit_id": "52fe44b4c3a36847f80a54db", "cast_id": 26, "profile_path": "/4o1rYCIO9R13B9XbgFDw1Zh1m1P.jpg", "order": 16}, {"name": "Affif Ben Badra", "character": "", "id": 54807, "credit_id": "52fe44b4c3a36847f80a54df", "cast_id": 27, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 17}], "directors": [{"name": "Pierre Morel", "department": "Directing", "job": "Director", "credit_id": "52fe44b4c3a36847f80a5475", "profile_path": "/yyhcEUYW4znC6JbNKZv2OJp1Cy0.jpg", "id": 35453}], "vote_average": 7.0, "runtime": 93}, "11130": {"poster_path": "/eu79w5ekffqqzxxwBdaxVPiURwB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95149435, "overview": "Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Her best friend Lilly also joins her for the summer. Mia continues her 'princess lessons'- riding horses side-saddle, archery, and other royal. But her complicated life is turned upside down once again when she not only learns that she is to take the crown as queen earlier than expected...", "video": false, "id": 11130, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Princess Diaries 2: Royal Engagement", "tagline": "It can take a lifetime to find true love; she's got 30 days!", "vote_count": 125, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zSEtYD77pKRJlUPx34BJgUG9v1c.jpg", "poster_path": "/wt5AMbxPTS4Kfjx7Fgm149qPfZl.jpg", "id": 107674, "name": "The Princess Diaries Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368933", "adult": false, "backdrop_path": "/f0frE29Bds70oHdYwnfRoAWAUM7.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2004-08-06", "popularity": 1.24551867383638, "original_title": "The Princess Diaries 2: Royal Engagement", "budget": 40000000, "cast": [{"name": "Anne Hathaway", "character": "Mia Thermopolis", "id": 1813, "credit_id": "52fe43fe9251416c7502561f", "cast_id": 1, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Julie Andrews", "character": "Queen Clarisse Renaldi", "id": 5823, "credit_id": "52fe43fe9251416c75025623", "cast_id": 2, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 1}, {"name": "H\u00e9ctor Elizondo", "character": "Joe", "id": 1210, "credit_id": "52fe43fe9251416c75025627", "cast_id": 3, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 2}, {"name": "John Rhys-Davies", "character": "Viscount Mabrey", "id": 655, "credit_id": "52fe43fe9251416c7502562b", "cast_id": 4, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 3}, {"name": "Heather Matarazzo", "character": "Lilly Moscovitz", "id": 33656, "credit_id": "52fe43fe9251416c7502562f", "cast_id": 5, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 4}, {"name": "Chris Pine", "character": "Nicholas Devereaux", "id": 62064, "credit_id": "52fe43fe9251416c75025633", "cast_id": 6, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 5}, {"name": "Callum Blue", "character": "Andrew Jacoby", "id": 68287, "credit_id": "52fe43fe9251416c75025637", "cast_id": 7, "profile_path": "/jEeLPZg7GlNhdkAmtPQXLGqOMZF.jpg", "order": 6}, {"name": "Larry Miller", "character": "Paolo", "id": 1211, "credit_id": "52fe43fe9251416c75025671", "cast_id": 17, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 7}, {"name": "Raven-Symon\u00e9", "character": "Asana", "id": 66896, "credit_id": "52fe43fe9251416c75025675", "cast_id": 18, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 8}, {"name": "Kathleen Marshall", "character": "Charlotte Kutaway", "id": 303542, "credit_id": "52fe43fe9251416c75025679", "cast_id": 19, "profile_path": "/zaS1vOZ0HRIwPSibns1WJLeQrvw.jpg", "order": 9}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43fe9251416c7502563d", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.5, "runtime": 113}, "18239": {"poster_path": "/yR87vK2thajbGdxJDvaxJeUZJkn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 709710948, "overview": "Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.", "video": false, "id": 18239, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: New Moon", "tagline": "The Next Chapter Begins.", "vote_count": 650, "homepage": "http://www.twilightthemovie.com/", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt1259571", "adult": false, "backdrop_path": "/fOI3kFfMGBnNJJlnwYAXunpqzze.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2009-11-20", "popularity": 1.33493214519702, "original_title": "The Twilight Saga: New Moon", "budget": 50000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe476d9251416c75098db7", "cast_id": 54, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe476d9251416c75098dbb", "cast_id": 55, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe476d9251416c75098dbf", "cast_id": 56, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe476d9251416c75098ddb", "cast_id": 63, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 3}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe476d9251416c75098dc3", "cast_id": 57, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 4}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe476d9251416c75098dd7", "cast_id": 62, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 5}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe476d9251416c75098dc7", "cast_id": 58, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 6}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe476d9251416c75098dcb", "cast_id": 59, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 7}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe476d9251416c75098dcf", "cast_id": 60, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 8}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe476d9251416c75098dd3", "cast_id": 61, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 9}, {"name": "Edi Gathegi", "character": "Laurent", "id": 39391, "credit_id": "52fe476d9251416c75098ddf", "cast_id": 64, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 10}, {"name": "Rachelle Lefevre", "character": "Victoria", "id": 58168, "credit_id": "52fe476d9251416c75098de3", "cast_id": 65, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 11}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe476d9251416c75098de7", "cast_id": 66, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 12}, {"name": "Michael Welch", "character": "Mike Newton", "id": 56676, "credit_id": "52fe476d9251416c75098deb", "cast_id": 67, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 13}, {"name": "Christian Serratos", "character": "Angela Weber", "id": 84224, "credit_id": "52fe476d9251416c75098def", "cast_id": 68, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 14}, {"name": "Gil Birmingham", "character": "Billy Black", "id": 84225, "credit_id": "52fe476d9251416c75098df3", "cast_id": 69, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 15}, {"name": "Graham Greene", "character": "Harry Clearwater", "id": 6804, "credit_id": "52fe476d9251416c75098df7", "cast_id": 70, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 16}, {"name": "Michael Sheen", "character": "Aro", "id": 3968, "credit_id": "52fe476d9251416c75098dfb", "cast_id": 71, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 17}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe476d9251416c75098e0f", "cast_id": 76, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 18}, {"name": "Jamie Campbell Bower", "character": "Caius", "id": 83356, "credit_id": "52fe476d9251416c75098dff", "cast_id": 72, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 19}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe476d9251416c75098e03", "cast_id": 73, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 20}, {"name": "Christopher Heyerdahl", "character": "Marcus", "id": 32887, "credit_id": "52fe476d9251416c75098e07", "cast_id": 74, "profile_path": "/imu1EK0I8J5xesKxLweLqqhKq8q.jpg", "order": 21}, {"name": "Cameron Bright", "character": "Alec", "id": 52414, "credit_id": "52fe476d9251416c75098e0b", "cast_id": 75, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 22}], "directors": [{"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe476c9251416c75098d47", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}], "vote_average": 5.6, "runtime": 130}, "11135": {"poster_path": "/vweXLAZP6E55EaMeedndhBdXQGu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27931461, "overview": "A lawless poacher wants to capture a majestic and rare golden eagle, so he kidnaps the boy who knows where to find the bird. Not to worry -- the Rescue Aid Society's top agents, heroic mice Miss Bianca and Bernard, fly to Australia to save the day. Accompanying the fearless duo are bumbling albatross Wilbur and llocal field operative Jake the Kangaroo Rat.", "video": false, "id": 11135, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}], "title": "The Rescuers Down Under", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/27YQ0qV5AolUQ4eX5caP0VbNLdQ.jpg", "id": 57971, "name": "The Rescuers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100477", "adult": false, "backdrop_path": "/u7QsZ2ixSxXFpHIei7eURO4ksrp.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1990-11-16", "popularity": 0.873858712767155, "original_title": "The Rescuers Down Under", "budget": 37931000, "cast": [{"name": "Bob Newhart", "character": "Bernard (voice)", "id": 64930, "credit_id": "52fe44009251416c750258f9", "cast_id": 8, "profile_path": "/uBEjNF7rOgrG3aKlfq6xY5aPmSg.jpg", "order": 0}, {"name": "Eva Gabor", "character": "Miss Bianca (voice)", "id": 44714, "credit_id": "52fe44009251416c750258fd", "cast_id": 9, "profile_path": "/1TffwJuOCaQSHmiQoI3ShogsMTP.jpg", "order": 1}, {"name": "John Candy", "character": "Wilbur (voice)", "id": 7180, "credit_id": "52fe44009251416c75025901", "cast_id": 10, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 2}, {"name": "Tristan Rogers", "character": "Jake (voice)", "id": 94962, "credit_id": "52fe44009251416c75025905", "cast_id": 11, "profile_path": "/wDY049tRTGLTWdxcs1nBjT91aTU.jpg", "order": 3}, {"name": "Adam Ryen", "character": "Cody (voice)", "id": 122605, "credit_id": "52fe44009251416c75025909", "cast_id": 12, "profile_path": "/Nv8SY8qxfP5Jmtn0JSZqqEj7nD.jpg", "order": 4}, {"name": "George C. Scott", "character": "McLeach (voice)", "id": 862, "credit_id": "52fe44009251416c7502590d", "cast_id": 13, "profile_path": "/mWXDFKbEgb7ID845I1LNeaeoXT4.jpg", "order": 5}, {"name": "Wayne Robson", "character": "Frank (voice)", "id": 5897, "credit_id": "52fe44009251416c75025911", "cast_id": 14, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 6}, {"name": "Douglas Seale", "character": "Krebbs (voice)", "id": 15833, "credit_id": "52fe44009251416c75025915", "cast_id": 15, "profile_path": "/1Tbu7xnv3iwiLtKIJg1taQITbKC.jpg", "order": 7}, {"name": "Frank Welker", "character": "Joanna (voice)", "id": 15831, "credit_id": "52fe44009251416c75025919", "cast_id": 16, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 8}, {"name": "Bernard Fox", "character": "Chairman / Doctor (voice)", "id": 8545, "credit_id": "52fe44009251416c7502591d", "cast_id": 17, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 9}, {"name": "Peter Firth", "character": "Red (voice)", "id": 22109, "credit_id": "52fe44009251416c75025921", "cast_id": 18, "profile_path": "/2qFPG3fIwshfPGDwIoP5aKVKFQM.jpg", "order": 10}, {"name": "Ed Gilbert", "character": "Francois (voice)", "id": 35243, "credit_id": "52fe44009251416c75025925", "cast_id": 20, "profile_path": "/43ePekrTBudc90uDDMoRAqvNxGM.jpg", "order": 11}, {"name": "Carla Meyer", "character": "Faloo / Mother (voice)", "id": 122607, "credit_id": "52fe44009251416c75025929", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Russi Taylor", "character": "Nurse Mouse (voice)", "id": 6035, "credit_id": "52fe44009251416c7502592d", "cast_id": 22, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 13}, {"name": "Peter Greenwood", "character": "Radio Announcer / Airplane Captain (voice)", "id": 122608, "credit_id": "52fe44009251416c75025931", "cast_id": 23, "profile_path": "/abxggnXzy9TUXqGgzhhZOmnNkSy.jpg", "order": 14}, {"name": "Billy Barty", "character": "Baitmouse (voice)", "id": 12659, "credit_id": "52fe44009251416c75025953", "cast_id": 30, "profile_path": "/4tDse78ebbkwAh8mr7BLqY9QMp9.jpg", "order": 15}], "directors": [{"name": "Hendel Butoy", "department": "Directing", "job": "Director", "credit_id": "52fe44009251416c750258d1", "profile_path": null, "id": 74297}, {"name": "Mike Gabriel", "department": "Directing", "job": "Director", "credit_id": "52fe44009251416c750258d7", "profile_path": null, "id": 65530}], "vote_average": 6.3, "runtime": 77}, "11137": {"poster_path": "/gfPUb9giqUBqXwd4LlcnNs05Syp.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince \"Eddie\" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.", "video": false, "id": 11137, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Prince & Me", "tagline": "Finding your inner princess can be such a royal pain.", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/gw6Mu3cfjNEQ5IUeNpqs7z8CIOE.jpg", "id": 86334, "name": "The Prince & Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337697", "adult": false, "backdrop_path": "/6GxmYUfaDXMlSlFiCf5WoNSf0zm.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-03-28", "popularity": 0.370388293956513, "original_title": "The Prince & Me", "budget": 0, "cast": [{"name": "Julia Stiles", "character": "Paige Morgan", "id": 12041, "credit_id": "52fe44009251416c7502597d", "cast_id": 1, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 0}, {"name": "Luke Mably", "character": "Prince Edvard", "id": 68307, "credit_id": "52fe44009251416c75025981", "cast_id": 2, "profile_path": "/cBs0W1IB8qhn89xkubT6u1nJx8K.jpg", "order": 1}, {"name": "Ben Miller", "character": "Soren", "id": 18025, "credit_id": "52fe44009251416c75025985", "cast_id": 3, "profile_path": "/tKZaENabPtnvDyeDWZvXkz8IBQ4.jpg", "order": 2}, {"name": "Miranda Richardson", "character": "Queen Rosalind", "id": 8436, "credit_id": "52fe44009251416c75025989", "cast_id": 4, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 3}, {"name": "James Fox", "character": "King Haraald", "id": 1292, "credit_id": "52fe44009251416c7502598d", "cast_id": 5, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 4}], "directors": [{"name": "Martha Coolidge", "department": "Directing", "job": "Director", "credit_id": "52fe44009251416c75025993", "profile_path": "/6XDmHbCLMtzvVU8h5ZauG8CkSIl.jpg", "id": 63713}], "vote_average": 5.8, "runtime": 111}, "109443": {"poster_path": "/66HbvNKmfxYoOHAp1IVIYQsFoeA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173649015, "overview": "With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm.", "video": false, "id": 109443, "genres": [{"id": 35, "name": "Comedy"}], "title": "Anchorman 2: The Legend Continues", "tagline": "It's kind of a big deal", "vote_count": 321, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eUU6edsZcr7I0AO8rHcB3vQwcOH.jpg", "poster_path": "/xjnbrB93Vj5yGYwU0uuW8Tu2qoc.jpg", "id": 93791, "name": "Anchorman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1229340", "adult": false, "backdrop_path": "/mTMnfiWuvhbCdez9LAzbYy0vLSG.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Paramount Pictures", "id": 4}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2013-12-18", "popularity": 1.62332023010106, "original_title": "Anchorman 2: The Legend Continues", "budget": 50000000, "cast": [{"name": "Will Ferrell", "character": "Ron Burgundy", "id": 23659, "credit_id": "52fe4ab7c3a36847f81ddd4b", "cast_id": 5, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Steve Carell", "character": "Brick Tamland", "id": 4495, "credit_id": "52fe4ab7c3a36847f81ddd4f", "cast_id": 6, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Paul Rudd", "character": "Brian Fantana", "id": 22226, "credit_id": "52fe4ab7c3a36847f81ddd53", "cast_id": 7, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 2}, {"name": "Luke Wilson", "character": "Frank Vitchard", "id": 36422, "credit_id": "52fe4ab7c3a36847f81ddd57", "cast_id": 8, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 3}, {"name": "Christina Applegate", "character": "Veronica Corningstone", "id": 18979, "credit_id": "52fe4ab7c3a36847f81ddd5b", "cast_id": 9, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 4}, {"name": "David Koechner", "character": "Champ Kind", "id": 28638, "credit_id": "52fe4ab7c3a36847f81ddd5f", "cast_id": 10, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 5}, {"name": "James Marsden", "character": "Jack Lime", "id": 11006, "credit_id": "52fe4ab7c3a36847f81ddd63", "cast_id": 12, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 6}, {"name": "Kristen Wiig", "character": "Chani Lastnam\u00e9", "id": 41091, "credit_id": "52fe4ab7c3a36847f81ddd67", "cast_id": 13, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 7}, {"name": "Meagan Good", "character": "Linda Jackson", "id": 22122, "credit_id": "52fe4ab7c3a36847f81ddd6b", "cast_id": 14, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 8}, {"name": "Dylan Baker", "character": "Freddie Shapp", "id": 19152, "credit_id": "52fe4ab7c3a36847f81ddd6f", "cast_id": 15, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 9}, {"name": "Tina Fey", "character": "Entertainment Tonight Reporter", "id": 56323, "credit_id": "52fe4ab7c3a36847f81ddd73", "cast_id": 17, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 10}, {"name": "Kirsten Dunst", "character": "El Trousias Maiden of the Clouds", "id": 205, "credit_id": "52fe4ab7c3a36847f81ddd77", "cast_id": 19, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 11}, {"name": "Liam Neeson", "character": "History Channel Host", "id": 3896, "credit_id": "52fe4ab7c3a36847f81ddd7b", "cast_id": 21, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 12}, {"name": "Vince Vaughn", "character": "Wes Mantooth", "id": 4937, "credit_id": "52fe4ab7c3a36847f81ddd7f", "cast_id": 23, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 13}, {"name": "Marion Cotillard", "character": "CBS News Anchor", "id": 8293, "credit_id": "52fe4ab7c3a36847f81ddd83", "cast_id": 26, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 14}, {"name": "Harrison Ford", "character": "Mack Tannen", "id": 3, "credit_id": "535fd2de0e0a264fe1008072", "cast_id": 27, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 15}, {"name": "Will Smith", "character": "ESPN Reporter", "id": 2888, "credit_id": "535fd3060e0a264fd50081b4", "cast_id": 28, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 16}, {"name": "Sacha Baron Cohen", "character": "BBC News Anchor", "id": 6730, "credit_id": "535fd3220e0a264fdb007ed5", "cast_id": 29, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 17}, {"name": "Jim Carrey", "character": "CBC News Anchor", "id": 206, "credit_id": "535fd3450e0a264fd80081d7", "cast_id": 30, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 18}, {"name": "Amy Poehler", "character": "Entertainment Tonight Host", "id": 56322, "credit_id": "535fd399c3a36830a9006b51", "cast_id": 31, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 19}, {"name": "Kanye West", "character": "MTV Host", "id": 4720, "credit_id": "535fd3bac3a3683091006a13", "cast_id": 32, "profile_path": "/doy5fbV907464np9OfySoQySEAl.jpg", "order": 20}, {"name": "Fred Willard", "character": "Ed Harken", "id": 20753, "credit_id": "54f208659251416b350020aa", "cast_id": 35, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 21}, {"name": "John C. Reilly", "character": "ghost of General Thomas J. \"Stonewall\" Jackson", "id": 4764, "credit_id": "54f224459251416b4100261b", "cast_id": 36, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 22}, {"name": "Bill Kurtis", "character": "Narrator", "id": 204352, "credit_id": "54f226d09251416b41002646", "cast_id": 37, "profile_path": null, "order": 23}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe4ab7c3a36847f81ddd35", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.2, "runtime": 119}, "109445": {"poster_path": "/jIjdFXKUNtdf1bwqMrhearpyjMj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1274219009, "overview": "Young princess Anna of Arendelle dreams about finding true love at her sister Elsa\u2019s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.", "video": false, "id": 109445, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Frozen", "tagline": "Only the act of true love will thaw a frozen heart", "vote_count": 1667, "homepage": "http://movies.disney.com/frozen", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2294629", "adult": false, "backdrop_path": "/irHmdlkdJphmk4HPfyAQfklKMbY.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2013-11-27", "popularity": 4.40223653182942, "original_title": "Frozen", "budget": 150000000, "cast": [{"name": "Kristen Bell", "character": "Anna (voice)", "id": 40462, "credit_id": "52fe4ab7c3a36847f81dddcf", "cast_id": 5, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Idina Menzel", "character": "Elsa (voice)", "id": 19394, "credit_id": "52fe4ab7c3a36847f81dddd3", "cast_id": 6, "profile_path": "/h7xxQ7jVPBy5jjOsE89V3LSAkns.jpg", "order": 1}, {"name": "Jonathan Groff", "character": "Kristoff (voice)", "id": 221611, "credit_id": "52fe4ab7c3a36847f81dddd7", "cast_id": 7, "profile_path": "/iGQSz9GIWQ88jS9OZeF78wVwXtR.jpg", "order": 2}, {"name": "Josh Gad", "character": "Olaf (voice)", "id": 54415, "credit_id": "52fe4ab7c3a36847f81ddddb", "cast_id": 8, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 3}, {"name": "Santino Fontana", "character": "Hans (voice)", "id": 1188241, "credit_id": "52fe4ab7c3a36847f81dddf1", "cast_id": 13, "profile_path": "/eyMvIdw7ECpVlRy3QfV9GNp8rmZ.jpg", "order": 4}, {"name": "Alan Tudyk", "character": "Duke (voice)", "id": 21088, "credit_id": "52fe4ab7c3a36847f81ddde5", "cast_id": 10, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 5}, {"name": "Ciar\u00e1n Hinds", "character": "Pabbie / Grandpa (voice)", "id": 8785, "credit_id": "52fe4ab7c3a36847f81dde17", "cast_id": 21, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 6}, {"name": "Chris Williams", "character": "Oaken (voice)", "id": 70238, "credit_id": "52fe4ab7c3a36847f81dddf5", "cast_id": 14, "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "order": 7}, {"name": "Stephen J. Anderson", "character": "Kai (voice) (as Stephen John Anderson)", "id": 16842, "credit_id": "52fe4ab7c3a36847f81dde23", "cast_id": 24, "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "order": 8}, {"name": "Maia Wilson", "character": "Bulda (voice)", "id": 1297610, "credit_id": "5311d4ff9251410fe6002262", "cast_id": 26, "profile_path": "/cuHzXhPE61DtCtJZwixaSGuBYtO.jpg", "order": 9}, {"name": "Edie McClurg", "character": "Gerda (voice)", "id": 3202, "credit_id": "5311d3ec925141102a00227d", "cast_id": 25, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 10}, {"name": "Robert Pine", "character": "Bishop (voice)", "id": 74573, "credit_id": "52fe4ab7c3a36847f81dde1b", "cast_id": 22, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 11}, {"name": "Maurice LaMarche", "character": "King (voice)", "id": 34521, "credit_id": "52fe4ab7c3a36847f81dde1f", "cast_id": 23, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 12}, {"name": "Livvy Stubenrauch", "character": "Young Anna (voice)", "id": 1207489, "credit_id": "52fe4ab7c3a36847f81ddded", "cast_id": 12, "profile_path": "/wdpXRUthua2RB20ut32gT4HG4XA.jpg", "order": 13}, {"name": "Eva Bella", "character": "Young Elsa (voice)", "id": 1207488, "credit_id": "52fe4ab7c3a36847f81ddde9", "cast_id": 11, "profile_path": "/lKDJgAVwWh8j8K0wk3r5V0axa9Y.jpg", "order": 14}, {"name": "Spencer Ganus", "character": "Teen Elsa (voice)", "id": 1340660, "credit_id": "53c098900e0a261579007a7d", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "Jesse Corti", "character": "Spanish Dignitary (voice)", "id": 1340661, "credit_id": "53c09983c3a3684cef0060be", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Jeffrey Marcus", "character": "German Dignitary (voice)", "id": 1340662, "credit_id": "53c099a6c3a3687e59005846", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Tucker Gilmore", "character": "Irish Dignitary (voice)", "id": 1340663, "credit_id": "53c099f1c3a3684cf4005a47", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Ava Acres", "character": "Additional Voices (voice)", "id": 1340664, "credit_id": "53c09a14c3a3687e59005853", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Stephen Apostolina", "character": "Additional Voices (voice)", "id": 1340665, "credit_id": "53c09a54c3a3684cec005d68", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Krik Baily", "character": "Additional Voices (voice)", "id": 1340667, "credit_id": "53c09a75c3a3684cdf005b91", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Jenica Bergere", "character": "Additional Voices (voice)", "id": 1340668, "credit_id": "53c09a8c0e0a26158f007859", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Dave Boat", "character": "Additional Voices (voice)", "id": 87176, "credit_id": "53c09f170e0a26157f007f2e", "cast_id": 68, "profile_path": "/4ewxttZW0bhlta27oc5Tjrxel3p.jpg", "order": 24}, {"name": "Paul Briggs", "character": "Additional Voices (voice)", "id": 1340669, "credit_id": "53c09ac20e0a26157f007ea2", "cast_id": 41, "profile_path": "/vccGfQWvG6nBaMD080uDS4Vaj26.jpg", "order": 25}, {"name": "Tyree Brown", "character": "Additional Voices (voice)", "id": 1340670, "credit_id": "53c09ad60e0a261582007d72", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Woody Buck", "character": "Additional Voices (voice)", "id": 1340671, "credit_id": "53c09ae20e0a261585007a5a", "cast_id": 43, "profile_path": null, "order": 27}, {"name": "June Christopher", "character": "Additional Voices (voice)", "id": 1340672, "credit_id": "53c09af90e0a26158f00786f", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Lewis Cleale", "character": "Additional Voices (voice)", "id": 1340673, "credit_id": "53c09b180e0a261585007a68", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Wendy Cutler", "character": "Additional Voices (voice)", "id": 1340674, "credit_id": "53c09b220e0a261585007a6e", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Terri Douglas", "character": "Additional Voices (voice)", "id": 1340675, "credit_id": "53c09b3fc3a3684cf9005ca1", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Eddie Frierson", "character": "Additional Voices (voice)", "id": 1225791, "credit_id": "53c09b7cc3a3684cf9005ca7", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Jean Gilpin", "character": "Additional Voices (voice)", "id": 59051, "credit_id": "53c09f620e0a26157c007b3c", "cast_id": 69, "profile_path": "/txLMRcg9CCbrDlZQi9mg4BhKb40.jpg", "order": 33}, {"name": "Jackie Gonneau", "character": "Additional Voices (voice)", "id": 950773, "credit_id": "53c09b89c3a3684cf9005caa", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Nicholas Guest", "character": "Additional Voices (voice)", "id": 36821, "credit_id": "53c09b94c3a3687e59005888", "cast_id": 51, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 35}, {"name": "Bridget Hoffman", "character": "Additional Voices (voice)", "id": 173428, "credit_id": "53c09bc7c3a3684cf4005a7f", "cast_id": 53, "profile_path": null, "order": 36}, {"name": "Nick Jameson", "character": "Additional Voices (voice)", "id": 39214, "credit_id": "53c09c08c3a3687e59005893", "cast_id": 54, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 37}, {"name": "Daniel Kaz", "character": "Additional Voices (voice)", "id": 1340676, "credit_id": "53c09c11c3a3684ce9005e02", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "John Lavelle", "character": "Additional Voices (voice)", "id": 1340677, "credit_id": "53c09c4bc3a3684cdf005bc1", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Jennifer Lee", "character": "Additional Voices (voice)", "id": 1120694, "credit_id": "53c09d3bc3a3684cf4005aa6", "cast_id": 57, "profile_path": "/9BkQnsppXFWcNSRGo4GJ6QNq313.jpg", "order": 40}, {"name": "Patricia Lentz", "character": "Additional Voices (voice) (as Pat Lentz)", "id": 1207490, "credit_id": "53c09d55c3a3684cef00613c", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Annie Lopez", "character": "Additional Voices (voice)", "id": 1340678, "credit_id": "53c09d61c3a3684cf4005aaf", "cast_id": 59, "profile_path": null, "order": 42}, {"name": "Katie Lowes", "character": "Additional Voices (voice)", "id": 108253, "credit_id": "53c09da2c3a3684cdb00635c", "cast_id": 61, "profile_path": "/yn29ZcNXEyFewrrNtcCpyBfjXnR.jpg", "order": 43}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "53c09dbdc3a3684cec005dc9", "cast_id": 62, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 44}, {"name": "Dara McGarry", "character": "Additional Voices (voice)", "id": 1077828, "credit_id": "53c09df3c3a3684cf9005cf0", "cast_id": 63, "profile_path": null, "order": 45}, {"name": "Scott Menville", "character": "Additional Voices (voice)", "id": 113916, "credit_id": "53c0a1720e0a26158f00795b", "cast_id": 80, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 46}, {"name": "Adam Overett", "character": "Additional Voices (voice)", "id": 1340680, "credit_id": "53c09e040e0a261582007df0", "cast_id": 64, "profile_path": null, "order": 47}, {"name": "Paul Pape", "character": "Additional Voices (voice)", "id": 1340681, "credit_id": "53c09e1a0e0a26157f007f0e", "cast_id": 65, "profile_path": null, "order": 48}, {"name": "Courtney Peldon", "character": "Additional Voices (voice)", "id": 76461, "credit_id": "53c09e590e0a26157c007b1e", "cast_id": 66, "profile_path": "/wKNMmbkkHT3buStUNNcgyCAveyc.jpg", "order": 49}, {"name": "Jennifer Perry", "character": "Additional Voices (voice)", "id": 1340682, "credit_id": "53c09fcf0e0a26157c007b51", "cast_id": 70, "profile_path": null, "order": 50}, {"name": "Raymond S. Persi", "character": "Additional Voices (voice)", "id": 1340683, "credit_id": "53c09fe90e0a26157c007b5b", "cast_id": 71, "profile_path": null, "order": 51}, {"name": "Jean-Michel Richaud", "character": "Additional Voices (voice)", "id": 59060, "credit_id": "53c0a02c0e0a26157f007f5a", "cast_id": 74, "profile_path": "/hUBf7t28fATtiBIsGhMpepN6Iu5.jpg", "order": 52}, {"name": "Lynwood Robinson", "character": "Additional Voices (voice)", "id": 1296646, "credit_id": "53c0a00e0e0a261576007f3c", "cast_id": 73, "profile_path": null, "order": 53}, {"name": "Carter Sand", "character": "Additional Voices (voice)", "id": 1340684, "credit_id": "53c0a0880e0a26157f007f6e", "cast_id": 75, "profile_path": null, "order": 54}, {"name": "Jadon Sand", "character": "Additional Voices (voice)", "id": 1340685, "credit_id": "53c0a0920e0a261589007d84", "cast_id": 76, "profile_path": "/uM4knNZ0kZJMtJt669vRBb8TtSo.jpg", "order": 55}, {"name": "Katie Silverman", "character": "Additional Voices (voice)", "id": 1009221, "credit_id": "551424f1925141045c003723", "cast_id": 83, "profile_path": "/iWeuUdcvQtAmTuHClbPOb0nZh7U.jpg", "order": 56}, {"name": "Pepper Sweeney", "character": "Additional Voices (voice)", "id": 131365, "credit_id": "53c0a1bac3a3684cf9005d56", "cast_id": 81, "profile_path": null, "order": 58}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "53c0a0d70e0a26158f00793e", "cast_id": 79, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 59}, {"name": "Annaleigh Ashford", "character": "Additional Voices (voice)", "id": 120831, "credit_id": "551868ce9251412c1e003106", "cast_id": 84, "profile_path": "/qTJcLe7vNbYSNsmvO4ju0LMsHJ4.jpg", "order": 60}], "directors": [{"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "52fe4ab7c3a36847f81dddb9", "profile_path": null, "id": 15774}, {"name": "Jennifer Lee", "department": "Directing", "job": "Director", "credit_id": "52fe4ab7c3a36847f81dddfb", "profile_path": "/9BkQnsppXFWcNSRGo4GJ6QNq313.jpg", "id": 1120694}], "vote_average": 7.7, "runtime": 102}, "109451": {"poster_path": "/oZjluB568NJVtRrny4rpeApGuNi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 248384621, "overview": "After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.", "video": false, "id": 109451, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cloudy with a Chance of Meatballs 2", "tagline": "Something big was leftover.", "vote_count": 319, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eANL41F9Zp1xHMD6VnHnD3QS7ui.jpg", "poster_path": "/pRAzOs9cZN8LlhaCKo6LQ0bSfyi.jpg", "id": 177467, "name": "Cloudy with a Chance of Meatballs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1985966", "adult": false, "backdrop_path": "/3RaqDhBxvGUPCROtZUaWxjh3ynD.jpg", "production_companies": [{"name": "Sony", "id": 649}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2013-09-27", "popularity": 1.72016311993001, "original_title": "Cloudy with a Chance of Meatballs 2", "budget": 78000000, "cast": [{"name": "Neil Patrick Harris", "character": "Steve (voice)", "id": 41686, "credit_id": "52fe4ab8c3a36847f81ddf7b", "cast_id": 9, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Anna Faris", "character": "Sam Sparks (voice)", "id": 1772, "credit_id": "52fe4ab8c3a36847f81ddf7f", "cast_id": 10, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Terry Crews", "character": "Earl Devereaux (voice)", "id": 53256, "credit_id": "52fe4ab8c3a36847f81ddf83", "cast_id": 11, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 2}, {"name": "James Caan", "character": "Tim Lockwood (voice)", "id": 3085, "credit_id": "52fe4ab8c3a36847f81ddf87", "cast_id": 12, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 3}, {"name": "Andy Samberg", "character": "Baby Brent (voice)", "id": 62861, "credit_id": "52fe4ab8c3a36847f81ddf8b", "cast_id": 13, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 4}, {"name": "Kristen Schaal", "character": "Barb (voice)", "id": 109869, "credit_id": "52fe4ab8c3a36847f81ddf8f", "cast_id": 14, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 5}, {"name": "Bill Hader", "character": "Flint Lockwood (voice)", "id": 19278, "credit_id": "52fe4ab8c3a36847f81ddf93", "cast_id": 15, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 6}, {"name": "Benjamin Bratt", "character": "Manny (voice)", "id": 4589, "credit_id": "52fe4ab8c3a36847f81ddf97", "cast_id": 16, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 7}, {"name": "Will Forte", "character": "Chester V (voice)", "id": 62831, "credit_id": "52fe4ab8c3a36847f81ddf9b", "cast_id": 17, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 8}, {"name": "Melissa Sturm", "character": "Sentinel Louise (voice)", "id": 587697, "credit_id": "52fe4ab8c3a36847f81ddfa5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Khamani Griffin", "character": "Cal Devereaux (voice)", "id": 87056, "credit_id": "52fe4ab8c3a36847f81ddfa9", "cast_id": 20, "profile_path": "/6gpZY25Hc1B4MgBTrfgP1KxnAP5.jpg", "order": 10}, {"name": "Cody Cameron", "character": "Barry/ Dill Pickle (voice)", "id": 12095, "credit_id": "52fe4ab8c3a36847f81ddfad", "cast_id": 21, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 11}], "directors": [{"name": "Cody Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe4ab8c3a36847f81ddf4d", "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "id": 12095}, {"name": "Kris Pearn", "department": "Directing", "job": "Director", "credit_id": "52fe4ab8c3a36847f81ddf53", "profile_path": null, "id": 1046494}], "vote_average": 6.7, "runtime": 95}, "224141": {"poster_path": "/5h91odPFNlBuJbRBj5N4MEBfXDE.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A witch conspires to teach important lessons to various characters of popular children's stories including Little Red Riding Hood, Cinderella, Jack and the Beanstalk and Rapunzel.", "video": false, "id": 224141, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Into the Woods", "tagline": "Be careful what you wish for", "vote_count": 339, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2180411", "adult": false, "backdrop_path": "/lzJzB0QfkjpGCm9qUC4XpEIB6pm.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Lucamar Productions", "id": 17021}], "release_date": "2014-12-25", "popularity": 5.29933048785263, "original_title": "Into the Woods", "budget": 50000000, "cast": [{"name": "Anna Kendrick", "character": "Cinderella", "id": 84223, "credit_id": "52fe4e319251416c7514e625", "cast_id": 7, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "James Corden", "character": "The Baker", "id": 55466, "credit_id": "52fe4e319251416c7514e63d", "cast_id": 13, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 1}, {"name": "Chris Pine", "character": "Cinderella's Prince", "id": 62064, "credit_id": "52fe4e319251416c7514e629", "cast_id": 8, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 2}, {"name": "Johnny Depp", "character": "The Wolf", "id": 85, "credit_id": "52fe4e319251416c7514e62d", "cast_id": 9, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 3}, {"name": "Emily Blunt", "character": "The Baker's Wife", "id": 5081, "credit_id": "52fe4e319251416c7514e631", "cast_id": 10, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 4}, {"name": "Meryl Streep", "character": "The Witch", "id": 5064, "credit_id": "52fe4e319251416c7514e635", "cast_id": 11, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 5}, {"name": "Lucy Punch", "character": "Lucinda", "id": 66446, "credit_id": "52fe4e319251416c7514e639", "cast_id": 12, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 6}, {"name": "Christine Baranski", "character": "Cinderella's Stepmother", "id": 11870, "credit_id": "52fe4e319251416c7514e641", "cast_id": 14, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 7}, {"name": "Daniel Huttlestone", "character": "Jack", "id": 1133684, "credit_id": "52fe4e319251416c7514e645", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "MacKenzie Mauzy", "character": "Rapunzel", "id": 1218238, "credit_id": "52fe4e319251416c7514e669", "cast_id": 25, "profile_path": "/wKRz7tYo4COSpzfjNXGWV2cyttJ.jpg", "order": 9}, {"name": "Tammy Blanchard", "character": "Florinda", "id": 16859, "credit_id": "52fe4e319251416c7514e649", "cast_id": 17, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 10}, {"name": "Frances de la Tour", "character": "The Giant", "id": 47468, "credit_id": "52fe4e319251416c7514e64d", "cast_id": 18, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 11}, {"name": "Billy Magnussen", "character": "Rapunzel's Prince", "id": 141034, "credit_id": "52fe4e319251416c7514e651", "cast_id": 19, "profile_path": "/9iEugwAOkNLIzkwl2388OnCLHEw.jpg", "order": 12}, {"name": "Tracey Ullman", "character": "Jack's Mother", "id": 30364, "credit_id": "52fe4e319251416c7514e655", "cast_id": 20, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 13}, {"name": "Lilla Crawford", "character": "Red Riding Hood", "id": 1127625, "credit_id": "52fe4e319251416c7514e659", "cast_id": 21, "profile_path": "/oaYKtNEkk3tdUSB3cD9Tji4vlIW.jpg", "order": 14}, {"name": "Simon Russell Beale", "character": "The Baker's Father", "id": 57461, "credit_id": "52fe4e319251416c7514e65d", "cast_id": 22, "profile_path": "/kHOLDJzCeHoAC2byUGUCfzMn0Sy.jpg", "order": 15}, {"name": "Annette Crosbie", "character": "Grandmother", "id": 55688, "credit_id": "52fe4e319251416c7514e661", "cast_id": 23, "profile_path": "/hmqAtCeYPkUwnId930OV27dE0ZW.jpg", "order": 16}, {"name": "Richard Glover", "character": "The Steward", "id": 193020, "credit_id": "52fe4e319251416c7514e665", "cast_id": 24, "profile_path": null, "order": 17}], "directors": [{"name": "Rob Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4e319251416c7514e603", "profile_path": "/eK6o1eP4aZTnowGYc1NUnEdvCNJ.jpg", "id": 17633}], "vote_average": 6.1, "runtime": 125}, "2959": {"poster_path": "/9I8NiY5cfFmwgI8Y5NKQqsuDawS.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42749736, "overview": "Newly engaged, Ben and Sadie can't wait to start their life together and live happily ever after. However Sadie's family church's Reverend Frank won't bless their union until they pass his patented, \"foolproof\" marriage prep course consisting of outrageous classes, outlandish homework assignments and some outright invasion of privacy.", "video": false, "id": 2959, "genres": [{"id": 35, "name": "Comedy"}], "title": "License to Wed", "tagline": "First came love... then came Reverend Frank.", "vote_count": 51, "homepage": "http://licensetowedthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0762114", "adult": false, "backdrop_path": "/fm6bpJxls3QdxGchiZAVbDySmri.jpg", "production_companies": [{"name": "Underground", "id": 49326}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Robert Simonds Productions", "id": 3929}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Proposal Productions", "id": 49327}], "release_date": "2007-07-04", "popularity": 1.18462209240883, "original_title": "License to Wed", "budget": 25000000, "cast": [{"name": "Robin Williams", "character": "Reverend Frank", "id": 2157, "credit_id": "52fe4376c3a36847f8056039", "cast_id": 18, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Mandy Moore", "character": "Sadie Jones", "id": 16855, "credit_id": "52fe4376c3a36847f805603d", "cast_id": 19, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 1}, {"name": "John Krasinski", "character": "Ben Murphy", "id": 17697, "credit_id": "52fe4376c3a36847f8056041", "cast_id": 20, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Carlisle", "id": 29020, "credit_id": "52fe4376c3a36847f8056045", "cast_id": 21, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Christine Taylor", "character": "Lindsey Jones", "id": 15286, "credit_id": "52fe4376c3a36847f8056049", "cast_id": 22, "profile_path": "/4KiXAC9leR9nnTU1vxY8CMDelX6.jpg", "order": 4}, {"name": "Josh Flitter", "character": "Choir Boy", "id": 216, "credit_id": "52fe4376c3a36847f805604d", "cast_id": 23, "profile_path": "/6RCA8tDWBxIVk9N3IqUjJEAzYGv.jpg", "order": 5}, {"name": "DeRay Davis", "character": "Joel", "id": 11827, "credit_id": "52fe4376c3a36847f8056051", "cast_id": 24, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 6}, {"name": "Peter Strauss", "character": "Mr. Jones", "id": 21368, "credit_id": "52fe4376c3a36847f8056055", "cast_id": 25, "profile_path": "/gzgt88W2vUgwiYC7izlKXIcosWx.jpg", "order": 7}, {"name": "Grace Zabriskie", "character": "Grandma Jones", "id": 6465, "credit_id": "52fe4376c3a36847f8056059", "cast_id": 26, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 8}, {"name": "Roxanne Hart", "character": "Mrs. Jones", "id": 29021, "credit_id": "52fe4376c3a36847f805605d", "cast_id": 27, "profile_path": "/2Zale2M3jj2G2rwNSifzklYxluX.jpg", "order": 9}], "directors": [{"name": "Ken Kwapis", "department": "Directing", "job": "Director", "credit_id": "52fe4376c3a36847f8055fd5", "profile_path": "/oPjor2KnZcSXmtude62KT62yBsu.jpg", "id": 29009}], "vote_average": 5.1, "runtime": 91}, "60304": {"poster_path": "/yDIVWFJqFLIeS8E1R6GG9uwPMS3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 224803475, "overview": "After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past.", "video": false, "id": 60304, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Hansel & Gretel: Witch Hunters", "tagline": "Classic tale. New twist.", "vote_count": 1978, "homepage": "http://www.hanselandgretelmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1428538", "adult": false, "backdrop_path": "/4wieJ74tXkZDMiiwJ6yMr7LgSpR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "MTV Films", "id": 746}, {"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Deutsche Filmf\u00f6rderfonds (DFFF)", "id": 11238}], "release_date": "2013-01-25", "popularity": 2.14858075727224, "original_title": "Hansel & Gretel: Witch Hunters", "budget": 50000000, "cast": [{"name": "Jeremy Renner", "character": "Hansel", "id": 17604, "credit_id": "52fe461fc3a368484e07ff71", "cast_id": 3, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Gretel", "id": 59620, "credit_id": "52fe461fc3a368484e07ff6d", "cast_id": 2, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Muriel", "id": 10696, "credit_id": "52fe461fc3a368484e07ff75", "cast_id": 4, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Pihla Viitala", "character": "Mina", "id": 93564, "credit_id": "52fe461fc3a368484e07ffb5", "cast_id": 18, "profile_path": "/5FevFcJazUVQYAICo7GHDtz8rkI.jpg", "order": 3}, {"name": "Derek Mears", "character": "Edward", "id": 51300, "credit_id": "52fe461fc3a368484e07ffe5", "cast_id": 27, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Berringer", "id": 53, "credit_id": "52fe461fc3a368484e07ff79", "cast_id": 5, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Thomas Mann", "character": "Ben", "id": 1142720, "credit_id": "52fe461fc3a368484e07ffa9", "cast_id": 15, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 6}, {"name": "Ingrid Bols\u00f8 Berdal", "character": "Horned Witch", "id": 87879, "credit_id": "52fe461fc3a368484e07ffa1", "cast_id": 12, "profile_path": "/raEPYKXAe6NP0m3WUyJDh7PQUR3.jpg", "order": 7}, {"name": "Zo\u00eb Bell", "character": "Tall Witch", "id": 20494, "credit_id": "52fe461fc3a368484e07ffa5", "cast_id": 14, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 8}, {"name": "Joanna Kulig", "character": "Red Haired Witch", "id": 908548, "credit_id": "52fe461fc3a368484e07ffad", "cast_id": 16, "profile_path": "/cHEhGQ7XyxGeInAupSvESNJpUEv.jpg", "order": 9}, {"name": "Monique Ganderton", "character": "Candy Witch", "id": 102744, "credit_id": "52fe461fc3a368484e07ffb1", "cast_id": 17, "profile_path": "/8BNtDzQwv8CWW0jmtcwa2YiJqta.jpg", "order": 10}, {"name": "Stephanie Corneliussen", "character": "Desert Witch", "id": 1142724, "credit_id": "52fe461fc3a368484e07ffb9", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Christian Rubeck", "character": "Tracker Jonathan", "id": 47647, "credit_id": "52fe461fc3a368484e07ffbd", "cast_id": 20, "profile_path": "/6KHeIoaS3eIn2TVBEyatMdFwEWv.jpg", "order": 12}, {"name": "Thomas Scharff", "character": "Father", "id": 1173431, "credit_id": "52fe461fc3a368484e07ffe9", "cast_id": 28, "profile_path": "/3hW7OkiWq6a8HSKxO2tiUBxG53e.jpg", "order": 13}, {"name": "Kathrin K\u00fchnel", "character": "Adrianna", "id": 1192096, "credit_id": "52fe461fc3a368484e07ffed", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Cedric Eich", "character": "Young Hansel", "id": 147636, "credit_id": "52fe461fc3a368484e07fff1", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Alea Sophia Boudodimos", "character": "Young Gretel", "id": 1272984, "credit_id": "52fe461fc3a368484e07fff5", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Matthias Ziesing", "character": "Deputy", "id": 1272985, "credit_id": "52fe461fc3a368484e07fff9", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Sebastian H\u00fclk", "character": "Deputy", "id": 550554, "credit_id": "52fe461fc3a368484e07fffd", "cast_id": 33, "profile_path": "/1lgRo298X6MZMzf2cWKuELXE74T.jpg", "order": 18}, {"name": "Vegar Hoel", "character": "Gamekeeper", "id": 76920, "credit_id": "52fe461fc3a368484e080001", "cast_id": 34, "profile_path": "/ekteFS1uufBQuRQX5Xwi7s23Nci.jpg", "order": 19}, {"name": "Jeppe Beck Laursen", "character": "Tracker William", "id": 1287263, "credit_id": "52fe461fc3a368484e080009", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Stig Frode Henriksen", "character": "Mute Tracker", "id": 76919, "credit_id": "52fe461fc3a368484e080005", "cast_id": 36, "profile_path": "/9dmquAOhzmBSmIIIcaw8MiQMFoK.jpg", "order": 21}, {"name": "Rainer Bock", "character": "B\u00fcrgermeister Englemann", "id": 65054, "credit_id": "54143e1fc3a3687dc5001b92", "cast_id": 38, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 22}], "directors": [{"name": "Tommy Wirkola", "department": "Directing", "job": "Director", "credit_id": "52fe461fc3a368484e07ff69", "profile_path": "/vkpnQg4eX722Tz283OZOpzSyweK.jpg", "id": 76927}], "vote_average": 5.6, "runtime": 88}, "11153": {"poster_path": "/ySI88wO1IFyKGWpSKRTSPilE3t2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Griswold family are on a quest. A quest to a Walley World theme park for a family vacation, but things aren't going to go exactly as planned, especially when Clark Griswold is losing all thought towards a mysterious blonde in a red Ferrari.", "video": false, "id": 11153, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "National Lampoon's Vacation", "tagline": "Every summer Chevy Chase takes his family on a little trip. This year he went too far.", "vote_count": 87, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gwKsTIUgBRtTd4M2m5EKuTQrYaf.jpg", "poster_path": "/66PJIC2ahIZOCg7AkQFszllroCm.jpg", "id": 108693, "name": "National Lampoon's Vacation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085995", "adult": false, "backdrop_path": "/zcJxJVhvxNHJJ2J7Q7NhgO9nPUV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1983-07-28", "popularity": 0.784111033420931, "original_title": "National Lampoon's Vacation", "budget": 15000000, "cast": [{"name": "Chevy Chase", "character": "Clark Griswold", "id": 54812, "credit_id": "52fe44039251416c75025ef7", "cast_id": 1, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Beverly D'Angelo", "character": "Ellen Griswold", "id": 821, "credit_id": "52fe44039251416c75025efb", "cast_id": 2, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 1}, {"name": "Imogene Coca", "character": "Aunt Edna", "id": 70089, "credit_id": "52fe44039251416c75025eff", "cast_id": 3, "profile_path": "/y4EzofufjbbLg80noE4vEpTw1w2.jpg", "order": 2}, {"name": "Randy Quaid", "character": "Cousin Eddie", "id": 1811, "credit_id": "52fe44039251416c75025f03", "cast_id": 4, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 3}, {"name": "Anthony Michael Hall", "character": "Rusty Griswold", "id": 1904, "credit_id": "52fe44039251416c75025f2b", "cast_id": 12, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 4}, {"name": "Miriam Flynn", "character": "Cousin Catherine", "id": 35109, "credit_id": "52fe44039251416c75025f2f", "cast_id": 13, "profile_path": "/6VKACA883vyve6uuviO4I6QpluL.jpg", "order": 5}, {"name": "John Candy", "character": "Lasky, Guard at Walleyworld", "id": 7180, "credit_id": "52fe44039251416c75025f33", "cast_id": 14, "profile_path": "/mNC2yH2Q7wRoPk4o0aonIcIULfI.jpg", "order": 6}, {"name": "Dana Barron", "character": "Audrey Griswold", "id": 1217003, "credit_id": "52fe44039251416c75025f57", "cast_id": 24, "profile_path": "/pA96AvipoiQxNck5Kvxt3sQPkTZ.jpg", "order": 7}, {"name": "Eddie Bracken", "character": "Roy Walley", "id": 115457, "credit_id": "52fe44039251416c75025f37", "cast_id": 16, "profile_path": "/rBCEY264VgZXaWTB8IY64hgI1U0.jpg", "order": 8}, {"name": "Brian Doyle-Murray", "character": "Kamp Komfort Clerk", "id": 1535, "credit_id": "52fe44039251416c75025f3b", "cast_id": 17, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 9}, {"name": "James Keach", "character": "Motorcycle Cop", "id": 408, "credit_id": "52fe44039251416c75025f3f", "cast_id": 18, "profile_path": "/5k6C8JLApbI52sjaYAHHnIdsrnv.jpg", "order": 10}, {"name": "Eugene Levy", "character": "Car Salesman", "id": 26510, "credit_id": "52fe44039251416c75025f43", "cast_id": 19, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 11}, {"name": "Frank McRae", "character": "Grover", "id": 1735, "credit_id": "52fe44039251416c75025f47", "cast_id": 20, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 12}, {"name": "Christie Brinkley", "character": "The Girl in the Ferrari", "id": 942808, "credit_id": "52fe44039251416c75025f4b", "cast_id": 21, "profile_path": "/6Gc4V7ibpFqi2ZnFlMV3Dug7lJR.jpg", "order": 13}, {"name": "Jane Krakowski", "character": "Cousin Vicki", "id": 13636, "credit_id": "52fe44039251416c75025f4f", "cast_id": 22, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 14}, {"name": "John P. Navin, Jr.", "character": "Cousin Dale", "id": 92557, "credit_id": "52fe44039251416c75025f53", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe44039251416c75025f27", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.8, "runtime": 98}, "43923": {"poster_path": "/wADblWdHMk2SIaZRBazTGOTBf4w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6491240, "overview": "A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.", "video": false, "id": 43923, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "It's Kind of a Funny Story", "tagline": "Sometimes what's in your head isn't as crazy as you think.", "vote_count": 116, "homepage": "http://focusfeatures.com/its_kind_of_a_funny_story", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804497", "adult": false, "backdrop_path": "/u3kOcfdPhZXdYM1axAkU5sPYZS9.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2010-07-06", "popularity": 0.84724414506312, "original_title": "It's Kind of a Funny Story", "budget": 8000000, "cast": [{"name": "Keir Gilchrist", "character": "Craig", "id": 132712, "credit_id": "52fe466bc3a36847f80fdfcf", "cast_id": 11, "profile_path": "/3qD75fzIrNvTAgYQCVczZ0SBsxI.jpg", "order": 0}, {"name": "Emma Roberts", "character": "Noelle", "id": 34847, "credit_id": "52fe466bc3a36847f80fdfa5", "cast_id": 1, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Bobby", "id": 58225, "credit_id": "52fe466bc3a36847f80fdfa9", "cast_id": 2, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Lauren Graham", "character": "Lynn", "id": 16858, "credit_id": "52fe466bc3a36847f80fdfd3", "cast_id": 12, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 3}, {"name": "Zo\u00eb Kravitz", "character": "", "id": 37153, "credit_id": "52fe466bc3a36847f80fdfad", "cast_id": 4, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 4}, {"name": "Jeremy Davies", "character": "Smitty", "id": 4654, "credit_id": "52fe466bc3a36847f80fdfd7", "cast_id": 13, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 5}, {"name": "Thomas Mann", "character": "Aaron", "id": 1142720, "credit_id": "52fe466bc3a36847f80fdfdb", "cast_id": 14, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 6}], "directors": [{"name": "Anna Boden", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fdfb3", "profile_path": "/h5YMXdI42zb0uqn5UJHF4fT9AER.jpg", "id": 53069}, {"name": "Ryan Fleck", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fdfb9", "profile_path": null, "id": 53068}], "vote_average": 6.7, "runtime": 101}, "60308": {"poster_path": "/Onw1pBlHSgcTZ7Bomx1M2RfSk3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110206216, "overview": "The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.", "video": false, "id": 60308, "genres": [{"id": 18, "name": "Drama"}], "title": "Moneyball", "tagline": "What are you really worth?", "vote_count": 495, "homepage": "http://www.moneyball-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1210166", "adult": false, "backdrop_path": "/pxlaSPleGSNI8jJZYGhXH5LdI1B.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2011-09-22", "popularity": 1.08100687247013, "original_title": "Moneyball", "budget": 50000000, "cast": [{"name": "Brad Pitt", "character": "Billy Beane", "id": 287, "credit_id": "52fe461fc3a368484e0800bd", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Peter Brand", "id": 21007, "credit_id": "52fe461fc3a368484e0800c1", "cast_id": 3, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Robin Wright", "character": "Sharon", "id": 32, "credit_id": "52fe461fc3a368484e0800c5", "cast_id": 4, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 2}, {"name": "Philip Seymour Hoffman", "character": "Art Howe", "id": 1233, "credit_id": "52fe461fc3a368484e0800c9", "cast_id": 5, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 3}, {"name": "Chris Pratt", "character": "Scott Hatteberg", "id": 73457, "credit_id": "52fe461fc3a368484e0800cd", "cast_id": 6, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 4}, {"name": "Stephen Bishop", "character": "David Justice", "id": 55205, "credit_id": "52fe461fc3a368484e0800d1", "cast_id": 11, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 5}, {"name": "Brent Jennings", "character": "Ron Washington", "id": 84685, "credit_id": "52fe461fc3a368484e0800d5", "cast_id": 12, "profile_path": "/wkKnquYyWGT5ciIfgJAdy7tAxXX.jpg", "order": 6}, {"name": "Ken Medlock", "character": "Grady Fuson", "id": 181067, "credit_id": "52fe461fc3a368484e0800d9", "cast_id": 13, "profile_path": "/mHWHCbYkOwUPVHdAo7LvIMe1967.jpg", "order": 7}, {"name": "Tammy Blanchard", "character": "Elizabeth Hatteberg", "id": 16859, "credit_id": "52fe461fc3a368484e0800dd", "cast_id": 14, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 8}, {"name": "Jack McGee", "character": "John Poloni", "id": 10489, "credit_id": "52fe461fc3a368484e0800e1", "cast_id": 15, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 9}, {"name": "Vyto Ruginis", "character": "Pittaro", "id": 61216, "credit_id": "52fe461fc3a368484e0800e5", "cast_id": 16, "profile_path": "/dDZyaISuF9FVK18nTmsuDgOpyKl.jpg", "order": 10}, {"name": "Nick Searcy", "character": "Matt Keough", "id": 12538, "credit_id": "52fe461fc3a368484e0800e9", "cast_id": 17, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 11}, {"name": "Glenn Morshower", "character": "Ron Hopkins", "id": 12797, "credit_id": "52fe461fc3a368484e0800ed", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 12}, {"name": "Casey Bond", "character": "Chad Bradford", "id": 178466, "credit_id": "52fe461fc3a368484e0800f1", "cast_id": 19, "profile_path": "/mnSxjSETv8Kw2W1Gbj1ILJ5slUc.jpg", "order": 13}, {"name": "Nick Porrazzo", "character": "Jeremy Giambi", "id": 938701, "credit_id": "52fe461fc3a368484e0800f5", "cast_id": 20, "profile_path": "/1MtwyJikWbNyIgusFn7cssLCuIe.jpg", "order": 14}, {"name": "Chris McGarry", "character": "Ed Wade", "id": 120890, "credit_id": "52fe461fc3a368484e0800f9", "cast_id": 21, "profile_path": "/fGQtYAn6tGudVerMn8u6USdbnkX.jpg", "order": 15}, {"name": "Reed Diamond", "character": "Mark Shapiro", "id": 31508, "credit_id": "52fe461fc3a368484e080109", "cast_id": 24, "profile_path": "/mASm3pG5IzLMQlORD8v7vb8oEly.jpg", "order": 16}, {"name": "Kerris Dorsey", "character": "Casey Beane", "id": 220064, "credit_id": "52fe461fc3a368484e08010d", "cast_id": 25, "profile_path": "/v2Sy5s73M7QyGdpbTZSJH1YzYjr.jpg", "order": 17}, {"name": "Arliss Howard", "character": "John Henry", "id": 3229, "credit_id": "52fe461fc3a368484e080111", "cast_id": 26, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 18}, {"name": "Reed Thompson", "character": "Young Billy", "id": 1146390, "credit_id": "52fe461fc3a368484e080115", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "James Shanklin", "character": "Billy's Dad", "id": 170376, "credit_id": "52fe461fc3a368484e080119", "cast_id": 28, "profile_path": "/wkxQIGquwfH4SjcTFNHedge4kYx.jpg", "order": 20}, {"name": "Diane Behrens", "character": "Billy's Mom", "id": 167519, "credit_id": "52fe461fc3a368484e08011d", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Takayo Fischer", "character": "Suzanne", "id": 33500, "credit_id": "52fe461fc3a368484e080121", "cast_id": 30, "profile_path": "/gNIFc8rWnFzplkisEonefyxjmG1.jpg", "order": 22}, {"name": "Derrin Ebert", "character": "Mike Magnante", "id": 1146391, "credit_id": "52fe461fc3a368484e080125", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Miguel Mendoza", "character": "Ricardo Rincon", "id": 119710, "credit_id": "52fe461fc3a368484e080129", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Adrian Bellani", "character": "Carlos Pe\u00f1a", "id": 1146392, "credit_id": "52fe461fc3a368484e08012d", "cast_id": 33, "profile_path": null, "order": 25}], "directors": [{"name": "Bennett Miller", "department": "Directing", "job": "Director", "credit_id": "52fe461fc3a368484e0800b9", "profile_path": "/jlnO6Hg6jChoGWr6ScVBpLJBAiI.jpg", "id": 5345}], "vote_average": 6.8, "runtime": 133}, "207768": {"poster_path": "/qHCHcx5Kwl7bRPPbOK59yrzYAR9.jpg", "production_countries": [{"iso_3166_1": "BG", "name": "Bulgaria"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Naturally beautiful, Katie has just settled into New York where she, like many other young women, is trying to make it as a model. But what starts out as an innocent and simple photo shoot soon turns into something disturbingly unthinkable! Raped, tortured and kidnapped to a foreign country, Jessica is buried alive and left to die. Against all odds, she manages to escape. Severely injured, she will have to tap into the darkest places of the human psyche to not only survive, but to exact her revenge\u2026", "video": false, "id": 207768, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I Spit On Your Grave 2", "tagline": "", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pXSHMjNXeIaYVjYd285LLg6385m.jpg", "poster_path": "/twoKFP4fjfOReWw8U13P39cj8xG.jpg", "id": 219691, "name": "I Spit on Your Grave Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2537176", "adult": false, "backdrop_path": "/gGLCX1CaUlXUt7ucg0yHJPJ1HzN.jpg", "production_companies": [{"name": "Cinetel Films", "id": 10399}], "release_date": "2013-08-25", "popularity": 0.603648874877925, "original_title": "I Spit On Your Grave 2", "budget": 0, "cast": [{"name": "Jemma Dallender", "character": "Katie", "id": 1154842, "credit_id": "52fe4d3cc3a368484e1de287", "cast_id": 2, "profile_path": "/qNcoaDNjIFu7a3vqLWCg0lzRjpj.jpg", "order": 0}, {"name": "Joe Absolom", "character": "Ivan", "id": 97430, "credit_id": "52fe4d3cc3a368484e1de28b", "cast_id": 3, "profile_path": "/51n328Chn44jLh3jzI7EZAU2DjV.jpg", "order": 1}, {"name": "Yavor Baharov", "character": "Georgy", "id": 586060, "credit_id": "52fe4d3cc3a368484e1de28f", "cast_id": 4, "profile_path": "/8Rhhsgk98tDK83Dm7oqIt8Q10Ya.jpg", "order": 2}, {"name": "Aleksandar Aleksiev", "character": "Nicolay", "id": 1202317, "credit_id": "52fe4d3cc3a368484e1de293", "cast_id": 5, "profile_path": "/pxThnyg2FU5NVZ6DhP58GZ2XRWG.jpg", "order": 3}, {"name": "Mary Stockley", "character": "Ana", "id": 40672, "credit_id": "52fe4d3cc3a368484e1de297", "cast_id": 6, "profile_path": "/duzAifGRp5avCoefoDapemvBL3h.jpg", "order": 4}, {"name": "Michael Dixon", "character": "Jayson", "id": 73401, "credit_id": "52fe4d3cc3a368484e1de2a7", "cast_id": 9, "profile_path": "/HdUE9PAD1DBkS1gur72sVT10kR.jpg", "order": 5}, {"name": "Valentine Pelka", "character": "Father Dimov", "id": 52375, "credit_id": "52fe4d3cc3a368484e1de2ab", "cast_id": 10, "profile_path": "/478wMmYjjio8h2kaHkHsRJTqfYX.jpg", "order": 6}, {"name": "Peter Silverleaf", "character": "Valko", "id": 207274, "credit_id": "52fe4d3cc3a368484e1de2af", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "George Zlatarev", "character": "Kiril", "id": 67246, "credit_id": "52fe4d3cc3a368484e1de2b3", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Steven R. Monroe", "department": "Directing", "job": "Director", "credit_id": "52fe4d3cc3a368484e1de283", "profile_path": "/6CeSKA4OIbdPpkuX6SKYCH3RAnk.jpg", "id": 88039}], "vote_average": 6.3, "runtime": 106}, "43930": {"poster_path": "/qsMtWLQezzPFRJ2kfhZwCUaaoxr.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 13361614, "overview": "Based on the first of seven books by acclaimed Australian author, John Marsden, Tomorrow When The War Began is the story of seven teenagers who return from a week-long camping trip to find that Australia has been invaded by a foreign power. Banding together to fight guerrilla-style against the enemy, this is not a typical heroic war movie - it is a terrifying situation where they must sometimes use little more than a knife or a belt to murder a soldier in cold blood. It's a graphic tale of the violence, the blood, the fear, and the insanity of war. These kids are underdogs, they're not going to win the war, they're more likely to end up dead in a ditch than send the enemy retreating, but it's their land, their parents, and friends in prison camps. They give a damn and they'd rather die fighting than give up.", "video": false, "id": 43930, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Tomorrow, When the War Began", "tagline": "Where Were You When Everything Changed?", "vote_count": 59, "homepage": "http://www.twtwb.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1456941", "adult": false, "backdrop_path": "/vfVnXL31f38fEmRTLwuH6tMVZfe.jpg", "production_companies": [{"name": "Ambience Entertainment", "id": 3427}, {"name": "Omnilab Media", "id": 2729}], "release_date": "2010-08-08", "popularity": 0.552727000407288, "original_title": "Tomorrow, When the War Began", "budget": 27000000, "cast": [{"name": "Caitlin Stasey", "character": "Ellie Linton", "id": 145245, "credit_id": "52fe466bc3a36847f80fe0c5", "cast_id": 3, "profile_path": "/7eE8VYl2oej8jpNaWqsrAJxCXYM.jpg", "order": 0}, {"name": "Rachel Hurd-Wood", "character": "Corrie Mackenzie", "id": 129050, "credit_id": "52fe466bc3a36847f80fe0c9", "cast_id": 4, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 1}, {"name": "Phoebe Tonkin", "character": "Fiona Maxwell", "id": 145247, "credit_id": "52fe466bc3a36847f80fe0d5", "cast_id": 7, "profile_path": "/hKDrWcfp0e0rf13AP4uS28phuz.jpg", "order": 2}, {"name": "Deniz Akdeniz", "character": "Homer Yannos", "id": 145246, "credit_id": "52fe466bc3a36847f80fe0d1", "cast_id": 6, "profile_path": "/4ONfe9SHo6N3hkJyJ61qHJevJPJ.jpg", "order": 3}, {"name": "Lincoln Lewis", "character": "Kevin Holmes", "id": 94798, "credit_id": "52fe466bc3a36847f80fe0cd", "cast_id": 5, "profile_path": "/lvvMmWd4Xx4FBDO6uXuLdLVGbHv.jpg", "order": 4}, {"name": "Chris Pang", "character": "Lee Takkam", "id": 145248, "credit_id": "52fe466bc3a36847f80fe0d9", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Ashleigh Cummings", "character": "Robyn Mathers", "id": 1255846, "credit_id": "52fe466bc3a36847f80fe0dd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Andrew Ryan", "character": "Chris Lang", "id": 1090945, "credit_id": "52fe466bc3a36847f80fe0e1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Colin Friels", "character": "Dr. Clements", "id": 27753, "credit_id": "52fe466bc3a36847f80fe0e5", "cast_id": 12, "profile_path": "/tXKCpTwCs4TZYdQ6p5Kch7sRkkS.jpg", "order": 8}, {"name": "Don Halbert", "character": "Mr. Linton", "id": 192817, "credit_id": "52fe466bc3a36847f80fe0e9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Olivia Pigeot", "character": "Mrs. Linton", "id": 1236200, "credit_id": "52fe466bc3a36847f80fe0ed", "cast_id": 14, "profile_path": null, "order": 10}], "directors": [{"name": "Stuart Beattie", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fe0bb", "profile_path": null, "id": 1707}], "vote_average": 6.9, "runtime": 103}, "84892": {"poster_path": "/s9R55JZF8g0WEqZvf7YWh4FZVYl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33400000, "overview": "A coming-of-age story based on the best-selling novel by Stephen Chbosky, which follows 15-year-old freshman Charlie, an endearing and naive outsider who is taken under the wings of two seniors. A moving tale of love, loss, fear and hope - and the unforgettable friends that help us through life.", "video": false, "id": 84892, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Perks of Being a Wallflower", "tagline": "We are infinite.", "vote_count": 686, "homepage": "http://perks-of-being-a-wallflower.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt1659337", "adult": false, "backdrop_path": "/ncsbzGl0r3wRWFWQMREATaFoywm.jpg", "production_companies": [{"name": "Mr. Mudd Production", "id": 2130}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2012-09-20", "popularity": 1.31085068772659, "original_title": "The Perks of Being a Wallflower", "budget": 13000000, "cast": [{"name": "Logan Lerman", "character": "Charlie", "id": 33235, "credit_id": "52fe49169251416c910a23af", "cast_id": 6, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 0}, {"name": "Emma Watson", "character": "Sam", "id": 10990, "credit_id": "53173900c3a368136e0029f1", "cast_id": 12, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 1}, {"name": "Ezra Miller", "character": "Patrick", "id": 132157, "credit_id": "52fe49169251416c910a23bb", "cast_id": 9, "profile_path": "/swxGHWhm95cgQgwt7XNqAlnAUwF.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Bill", "id": 22226, "credit_id": "52fe49169251416c910a23b3", "cast_id": 7, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Nina Dobrev", "character": "Candace", "id": 19961, "credit_id": "52fe49169251416c910a23a7", "cast_id": 4, "profile_path": "/7YM2mqfrO9mrNJ6GwBNmSSiWNTR.jpg", "order": 4}, {"name": "Mae Whitman", "character": "Mary Elizabeth", "id": 52404, "credit_id": "52fe49169251416c910a23b7", "cast_id": 8, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 5}, {"name": "Erin Wilhelmi", "character": "Alice", "id": 1053419, "credit_id": "531739c992514158a0001c42", "cast_id": 16, "profile_path": "/81JQCHJyMJy55ypRBj2y6C1HrJF.jpg", "order": 6}, {"name": "Johnny Simmons", "character": "Brad", "id": 27104, "credit_id": "5317393b9251415861001b5d", "cast_id": 13, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 7}, {"name": "Joan Cusack", "character": "Dr. Burton", "id": 3234, "credit_id": "5317399f92514158a0001c3f", "cast_id": 15, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 8}, {"name": "Melanie Lynskey", "character": "Aunt Helen", "id": 15091, "credit_id": "52fe49169251416c910a23bf", "cast_id": 10, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 9}, {"name": "Kate Walsh", "character": "Mrs. Kelmeckis", "id": 61114, "credit_id": "531739709251412ccd001076", "cast_id": 14, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 10}, {"name": "Julia Garner", "character": "Susan", "id": 936970, "credit_id": "5381f182c3a368737d00224e", "cast_id": 17, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 11}, {"name": "Nicholas Braun", "character": "Derek", "id": 85139, "credit_id": "54984f1c9251417a810060e6", "cast_id": 18, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 12}], "directors": [{"name": "Stephen Chbosky", "department": "Directing", "job": "Director", "credit_id": "52fe49169251416c910a2397", "profile_path": "/yh3b133GGLUpHnutKVGkYbGJch0.jpg", "id": 19311}], "vote_average": 7.4, "runtime": 102}, "43933": {"poster_path": "/fMpauUPt2ldsiEoZxG1olPFksfZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 4188738, "overview": "Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain \"the creatures,\" while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.", "video": false, "id": 43933, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Monsters", "tagline": "After Six Years, They're No Longer Aliens. They're Residents", "vote_count": 132, "homepage": "http://www.monstersfilm.com/", "belongs_to_collection": {"backdrop_path": "/2k8KXYTcqxkKpq7lBZFMJ4zjBUF.jpg", "poster_path": "/64tYLixu5g9W3l4u9mTHnhbVYlz.jpg", "id": 306926, "name": "Monsters Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1470827", "adult": false, "backdrop_path": "/nfAeL5txnyRlxNwU9tIx9y9jxLP.jpg", "production_companies": [{"name": "Vertigo Entertainment", "id": 829}], "release_date": "2010-06-18", "popularity": 0.736852616898164, "original_title": "Monsters", "budget": 800000, "cast": [{"name": "Whitney Able", "character": "Samantha Wynden", "id": 56677, "credit_id": "52fe466bc3a36847f80fe1dd", "cast_id": 3, "profile_path": "/6y5KdwVTlB3o9ZGJ9iIoSCW850M.jpg", "order": 0}, {"name": "Scoot McNairy", "character": "Andrew Kaulder", "id": 59233, "credit_id": "52fe466bc3a36847f80fe1e1", "cast_id": 4, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 1}, {"name": "Kevon Kane", "character": "Josh Jones", "id": 141768, "credit_id": "52fe466bc3a36847f80fe1e5", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Fernando Lara", "character": "U.S. Soldier", "id": 556436, "credit_id": "52fe466bc3a36847f80fe1e9", "cast_id": 6, "profile_path": null, "order": 3}], "directors": [{"name": "Gareth Edwards", "department": "Directing", "job": "Director", "credit_id": "52fe466bc3a36847f80fe1d9", "profile_path": "/nUs4hkGgByttwgNYafKlDvGzUsi.jpg", "id": 129894}], "vote_average": 6.5, "runtime": 94}, "2976": {"poster_path": "/ndOpIx4BXpFCRRIxgMoGHxZxlE9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90450008, "overview": "Pleasantly plump teenager Tracy Turnblad and her best friend Penny Pingleton audition to be on The Corny Collins Show and Tracy wins. But when scheming Amber Von Tussle and her mother plot to destroy Tracy, it turns to chaos.", "video": false, "id": 2976, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Hairspray", "tagline": "When you follow your own beat, the world will follow you.", "vote_count": 149, "homepage": "http://www.hairspraymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427327", "adult": false, "backdrop_path": "/qOcVMGFaUrJ6npQXUujVXWVS96C.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2007-07-13", "popularity": 0.643465519208362, "original_title": "Hairspray", "budget": 50000000, "cast": [{"name": "John Travolta", "character": "Edna Turnblad", "id": 8891, "credit_id": "52fe4378c3a36847f80568ed", "cast_id": 18, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Velma Von Tussle", "id": 1160, "credit_id": "52fe4378c3a36847f80568f1", "cast_id": 19, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Wilbur Turnblad", "id": 4690, "credit_id": "52fe4378c3a36847f80568f5", "cast_id": 20, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Amanda Bynes", "character": "Penny Pingleton", "id": 29220, "credit_id": "52fe4378c3a36847f80568f9", "cast_id": 21, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 3}, {"name": "James Marsden", "character": "Corny Collins", "id": 11006, "credit_id": "52fe4378c3a36847f80568fd", "cast_id": 22, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 4}, {"name": "Queen Latifah", "character": "Motormouth Maybelle", "id": 15758, "credit_id": "52fe4378c3a36847f8056901", "cast_id": 23, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 5}, {"name": "Brittany Snow", "character": "Amber Von Tussle", "id": 29221, "credit_id": "52fe4378c3a36847f8056905", "cast_id": 24, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 6}, {"name": "Zac Efron", "character": "Link Larkin", "id": 29222, "credit_id": "52fe4378c3a36847f8056909", "cast_id": 25, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 7}, {"name": "Elijah Kelley", "character": "Seaweed", "id": 29223, "credit_id": "52fe4378c3a36847f805690d", "cast_id": 26, "profile_path": "/yxVGYJCvBsUpVziLtQ0QQwVO1qB.jpg", "order": 8}, {"name": "Allison Janney", "character": "Prudy Pringleton", "id": 19, "credit_id": "52fe4378c3a36847f8056911", "cast_id": 27, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 9}, {"name": "Nikki Blonsky", "character": "Tracy Turnblad", "id": 29224, "credit_id": "52fe4378c3a36847f8056915", "cast_id": 28, "profile_path": "/8k6vMdFsxfz194ZVGDbSGrKqWex.jpg", "order": 10}, {"name": "Taylor Parks", "character": "Little Inez", "id": 29225, "credit_id": "52fe4378c3a36847f8056919", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Jayne Eastwood", "character": "Miss Wimsey", "id": 4568, "credit_id": "52fe4378c3a36847f805691d", "cast_id": 30, "profile_path": "/fUYBG960fMkGDiNzcz7ERjB6BHe.jpg", "order": 12}, {"name": "Paul Dooley", "character": "Mr. Spritzer", "id": 15900, "credit_id": "52fe4378c3a36847f8056921", "cast_id": 31, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 13}, {"name": "Jerry Stiller", "character": "Mr. Pinky", "id": 26042, "credit_id": "52fe4378c3a36847f8056925", "cast_id": 32, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 14}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe4378c3a36847f805692b", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 6.2, "runtime": 117}, "2977": {"poster_path": "/iLNBdoaKzXNhZV4qbhJPkIEfLEg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.", "video": false, "id": 2977, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Becoming Jane", "tagline": "Her own life is her greatest inspiration.", "vote_count": 59, "homepage": "http://becomingjane-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416508", "adult": false, "backdrop_path": "/wf8GI3QtL4IM2645Fm7OqRqXCkH.jpg", "production_companies": [{"name": "Ecosse Films", "id": 1267}, {"name": "2 Entertain", "id": 2689}, {"name": "Bueprint Pictures", "id": 6342}], "release_date": "2007-03-02", "popularity": 0.580198544068316, "original_title": "Becoming Jane", "budget": 12000000, "cast": [{"name": "Anne Hathaway", "character": "Jane Austen", "id": 1813, "credit_id": "52fe4378c3a36847f805699f", "cast_id": 10, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "James McAvoy", "character": "Tom Lefroy", "id": 5530, "credit_id": "52fe4378c3a36847f80569a3", "cast_id": 11, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Julie Walters", "character": "Mrs. Austen", "id": 477, "credit_id": "52fe4378c3a36847f80569a7", "cast_id": 12, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 2}, {"name": "James Cromwell", "character": "Mr. Austen", "id": 2505, "credit_id": "52fe4378c3a36847f80569ab", "cast_id": 13, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Lady Gresham", "id": 10978, "credit_id": "52fe4378c3a36847f80569af", "cast_id": 14, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Joe Anderson", "character": "Henry Austen", "id": 29234, "credit_id": "52fe4378c3a36847f80569b3", "cast_id": 15, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 5}, {"name": "Lucy Cohu", "character": "Eliza de Feuillide", "id": 29235, "credit_id": "52fe4378c3a36847f80569b7", "cast_id": 16, "profile_path": "/fMIOyKGpremDJs5NJP44TutbyfO.jpg", "order": 6}, {"name": "Laurence Fox", "character": "Mr. Wisley", "id": 6366, "credit_id": "52fe4378c3a36847f80569bb", "cast_id": 17, "profile_path": "/1LuB3Xd7P0oJQzylGErxIeJFf44.jpg", "order": 7}, {"name": "Ian Richardson", "character": "Richter Langlois", "id": 385, "credit_id": "52fe4378c3a36847f80569bf", "cast_id": 18, "profile_path": "/pQYgIwPfdJAJViPJcc80n9BKSP4.jpg", "order": 8}, {"name": "Anna Maxwell Martin", "character": "Cassandra Austen", "id": 29236, "credit_id": "52fe4378c3a36847f80569c3", "cast_id": 19, "profile_path": "/gUJuwFUTNaj7U2mC3DBe8DaYuuX.jpg", "order": 9}, {"name": "Leo Bill", "character": "John Warren", "id": 29237, "credit_id": "52fe4378c3a36847f80569c7", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jessica Ashworth", "character": "Lucy Lefroy", "id": 29238, "credit_id": "52fe4378c3a36847f80569cb", "cast_id": 21, "profile_path": "/3NIKnL37sOGuWOGeZhzsz1q0BJo.jpg", "order": 11}, {"name": "Michael James Ford", "character": "Mr. Lefroy", "id": 29239, "credit_id": "52fe4378c3a36847f80569cf", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Tom Vaughan-Lawlor", "character": "Robert Fowle", "id": 29240, "credit_id": "52fe4378c3a36847f80569d3", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Chris McHallem", "character": "Mr. Curtis", "id": 33452, "credit_id": "52fe4378c3a36847f80569f5", "cast_id": 30, "profile_path": "/aUTRtF4KnyGTF0VmE63hA8kMZgn.jpg", "order": 14}], "directors": [{"name": "Julian Jarrold", "department": "Directing", "job": "Director", "credit_id": "52fe4378c3a36847f8056971", "profile_path": "/pyWwnd4dYjxSCynxmLkPO1JTzDV.jpg", "id": 29226}], "vote_average": 6.6, "runtime": 120}, "11170": {"poster_path": "/5QElczp80krYemPJwamBi9IZMd3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43545364, "overview": "When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.", "video": false, "id": 11170, "genres": [{"id": 18, "name": "Drama"}], "title": "We Are Marshall", "tagline": "From the ashes we rose.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758794", "adult": false, "backdrop_path": "/qZvPzSUI3qGlQtK1mVXt9Z6UCZA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2006-12-12", "popularity": 1.06952362339836, "original_title": "We Are Marshall", "budget": 65000000, "cast": [{"name": "Matthew McConaughey", "character": "Jack Lengyel", "id": 10297, "credit_id": "52fe44079251416c75026731", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Matthew Fox", "character": "Red Dawson", "id": 28657, "credit_id": "52fe44079251416c75026735", "cast_id": 2, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 1}, {"name": "Anthony Mackie", "character": "Nate Ruffin", "id": 53650, "credit_id": "52fe44079251416c75026739", "cast_id": 3, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 2}, {"name": "David Strathairn", "character": "President Dedmon", "id": 11064, "credit_id": "52fe44079251416c7502673d", "cast_id": 4, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 3}, {"name": "Ian McShane", "character": "Paul Griffen", "id": 6972, "credit_id": "52fe44079251416c75026741", "cast_id": 5, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 4}, {"name": "Kate Mara", "character": "Annie Cantrell", "id": 51072, "credit_id": "52fe44079251416c75026745", "cast_id": 6, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 5}, {"name": "January Jones", "character": "Carole Dawson", "id": 31717, "credit_id": "52fe44079251416c75026749", "cast_id": 7, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 6}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe44079251416c75026791", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 6.3, "runtime": 124}, "11172": {"poster_path": "/jhv9qSAuwGkzVj1pSnu3HQBb8Qe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145896422, "overview": "A washed up singer is given a couple days to compose a chart-topping hit for an aspiring teen sensation. Though he's never written a decent lyric in his life, he sparks with an offbeat younger woman with a flair for words.", "video": false, "id": 11172, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Music and Lyrics", "tagline": "Share the music with someone you love.", "vote_count": 171, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758766", "adult": false, "backdrop_path": "/t6FwromtGll1dOwVwRu8YcWQdZO.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Reserve Room", "id": 10222}, {"name": "Flower Films (II)", "id": 19813}], "release_date": "2007-02-09", "popularity": 0.354820005131745, "original_title": "Music and Lyrics", "budget": 40000000, "cast": [{"name": "Drew Barrymore", "character": "Sophie Fisher", "id": 69597, "credit_id": "52fe44079251416c75026869", "cast_id": 1, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Hugh Grant", "character": "Alex Fletcher", "id": 3291, "credit_id": "52fe44079251416c7502686d", "cast_id": 2, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 1}, {"name": "Scott Porter", "character": "Colin Thompson", "id": 53368, "credit_id": "52fe44079251416c75026871", "cast_id": 3, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 2}, {"name": "Brad Garrett", "character": "Chris Riley", "id": 18, "credit_id": "52fe44079251416c75026875", "cast_id": 4, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 3}, {"name": "Haley Bennett", "character": "Cora Corman", "id": 58754, "credit_id": "52fe44079251416c750268a9", "cast_id": 15, "profile_path": "/wYmPPXn61F1ecMwIFF8AGla8pKQ.jpg", "order": 4}, {"name": "Nick Bacon", "character": "Pop Bass Player", "id": 1077875, "credit_id": "52fe44079251416c750268b9", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Andrew Wyatt", "character": "Pop Guitar Player", "id": 1077876, "credit_id": "52fe44079251416c750268bd", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Dan McMillan", "character": "Pop Drummer", "id": 1077877, "credit_id": "52fe44079251416c750268c1", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tom Foligno", "character": "Has-Beens Promo Announcer (voice)", "id": 1077878, "credit_id": "52fe44079251416c750268c5", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Zak Orth", "character": "David Newbert", "id": 6212, "credit_id": "52fe44079251416c750268c9", "cast_id": 22, "profile_path": "/rKupoahQ3pgeVVXS8EWd1WSnKEO.jpg", "order": 9}, {"name": "Brooke Tansley", "character": "Janice Stern", "id": 207915, "credit_id": "52fe44079251416c750268cd", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Daniel Stewart Sherman", "character": "Willy", "id": 225629, "credit_id": "52fe44079251416c750268d1", "cast_id": 24, "profile_path": "/c8Y5O8oFlTq3c0SJhd80ALg82EC.jpg", "order": 11}, {"name": "Aasif Mandvi", "character": "Khan", "id": 20644, "credit_id": "52fe44079251416c750268d5", "cast_id": 25, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 12}, {"name": "Matthew Morrison", "character": "Ray", "id": 155209, "credit_id": "52fe44079251416c750268d9", "cast_id": 26, "profile_path": "/oB5gRfmJLQYHfm1zSgeyeewnZr5.jpg", "order": 13}, {"name": "Jason Antoon", "character": "Greg Antonsky", "id": 130749, "credit_id": "52fe44079251416c750268dd", "cast_id": 27, "profile_path": "/muhQKtaOAZ7d3kG1zZ8nNakuIuz.jpg", "order": 14}, {"name": "Jeremy Karson", "character": "Charlie", "id": 1024027, "credit_id": "52fe44089251416c750268e1", "cast_id": 28, "profile_path": "/tN9AzlOxFaHTdCTZnIVGM4jhOay.jpg", "order": 15}, {"name": "Emma Lesser", "character": "Lucy", "id": 163934, "credit_id": "52fe44089251416c750268e5", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Kristen Johnston", "character": "Rhonda", "id": 13635, "credit_id": "52fe44089251416c750268e9", "cast_id": 30, "profile_path": "/r0FSG3VDWDxu5sAlC6EoXjHvjdi.jpg", "order": 17}, {"name": "Adam Grupper", "character": "Gary", "id": 159826, "credit_id": "52fe44089251416c750268ed", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Charlotte Maier", "character": "Barbara", "id": 26722, "credit_id": "52fe44089251416c750268f1", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Toni Trucks", "character": "Tricia", "id": 105831, "credit_id": "52fe44089251416c750268f5", "cast_id": 33, "profile_path": "/pmXJ5l5udyotzZzeRbhLq62f4wa.jpg", "order": 20}, {"name": "Lanette Ware", "character": "Mia", "id": 164433, "credit_id": "52fe44089251416c750268f9", "cast_id": 34, "profile_path": "/1j0P8BSRoSfj3RBtMJMtGz6xJQh.jpg", "order": 21}, {"name": "Campbell Scott", "character": "Sloan Cates", "id": 55152, "credit_id": "52fe44089251416c750268fd", "cast_id": 35, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 22}, {"name": "Billy Griffith", "character": "Derek", "id": 163866, "credit_id": "52fe44089251416c75026901", "cast_id": 36, "profile_path": "/hNCw3Eb3Q06VY3YTDPTAx6M4P2I.jpg", "order": 23}, {"name": "Kathleen McNenny", "character": "Gloria", "id": 171673, "credit_id": "52fe44089251416c75026905", "cast_id": 37, "profile_path": "/rKL9p7vvxBYwCGfQuocAcWxp13h.jpg", "order": 24}, {"name": "Stevie Ray Dallimore", "character": "Maitre d'", "id": 155077, "credit_id": "52fe44089251416c75026909", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Spenser Leigh", "character": "Beth Riley", "id": 978719, "credit_id": "52fe44089251416c7502690d", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Lou Torres", "character": "Security Guard", "id": 163991, "credit_id": "52fe44089251416c75026911", "cast_id": 40, "profile_path": null, "order": 27}], "directors": [{"name": "Marc Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe44079251416c750268af", "profile_path": "/6842GmjEw9svtkqA3XhXWWNY7px.jpg", "id": 18323}], "vote_average": 6.0, "runtime": 96}, "43947": {"poster_path": "/7hA8FfUAwBJut4MSIhR6eCF8li7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 280581, "overview": "A remake of the 1979 controversial cult classic, I Spit on Your Grave retells the horrific tale of writer Jennifer Hills who takes a retreat from the city to a charming cabin in the woods to start on her next book. But Jennifer's presence in the small town attracts the attention of a few morally deprived locals led by Johnny, the town's service station owner, his two co-workers, Andy and Stanley, who along with their socially and mentally challenged friend Matthew, set out one night to teach this city girl a lesson.", "video": false, "id": 43947, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I Spit on Your Grave", "tagline": "It's Date Night", "vote_count": 113, "homepage": "", "belongs_to_collection": {"backdrop_path": "/pXSHMjNXeIaYVjYd285LLg6385m.jpg", "poster_path": "/twoKFP4fjfOReWw8U13P39cj8xG.jpg", "id": 219691, "name": "I Spit on Your Grave Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1242432", "adult": false, "backdrop_path": "/2xyzIvklnHNkJ69HdEQYLCI18SY.jpg", "production_companies": [{"name": "Anchor Bay Films", "id": 5860}, {"name": "Family of the Year Productions", "id": 21624}, {"name": "Cinetel Films", "id": 10399}], "release_date": "2010-06-17", "popularity": 0.899400310914206, "original_title": "I Spit on Your Grave", "budget": 2000000, "cast": [{"name": "Sarah Butler", "character": "Jennifer Hills", "id": 129928, "credit_id": "52fe466dc3a36847f80fe6cf", "cast_id": 2, "profile_path": "/9di1qZk4hLeDQk50miaA0VmIhTu.jpg", "order": 0}, {"name": "Daniel Franzese", "character": "Stanley", "id": 32598, "credit_id": "52fe466dc3a36847f80fe6d3", "cast_id": 3, "profile_path": "/6KzFC4ypjbKcgoRKo4Bi1IWq1rK.jpg", "order": 1}, {"name": "Chad Lindberg", "character": "Matthew", "id": 9186, "credit_id": "52fe466dc3a36847f80fe6d7", "cast_id": 4, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 2}, {"name": "Jeff Branson", "character": "John 'Johnny' Miller", "id": 90576, "credit_id": "52fe466dc3a36847f80fe6f9", "cast_id": 13, "profile_path": "/uQaSufoEnD1rPn8Sgf3i4mK8INz.jpg", "order": 3}, {"name": "Rodney Eastman", "character": "Andy", "id": 63916, "credit_id": "52fe466dc3a36847f80fe6fd", "cast_id": 14, "profile_path": "/mxA0J0Ky7XZsn4yXWj5koXTkYBq.jpg", "order": 4}, {"name": "Andrew Howard", "character": "Sheriff Storch", "id": 67206, "credit_id": "52fe466dc3a36847f80fe701", "cast_id": 15, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 5}, {"name": "Tracey Walter", "character": "Earl", "id": 3801, "credit_id": "53e89ce9c3a368398a003699", "cast_id": 23, "profile_path": "/kRFzCvB08MVF9T8pLT0V1GiXzXF.jpg", "order": 6}, {"name": "Mollie Milligan", "character": "Mrs. Storch", "id": 1352105, "credit_id": "53e89d18c3a3683995003604", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Saxon Sharbino", "character": "Chastity Storch", "id": 1079805, "credit_id": "53e89d46c3a36839990035d1", "cast_id": 25, "profile_path": "/eV1AWBvNJql4U5uFOCJZg4ZD8ob.jpg", "order": 8}], "directors": [{"name": "Steven R. Monroe", "department": "Directing", "job": "Director", "credit_id": "52fe466dc3a36847f80fe6cb", "profile_path": "/6CeSKA4OIbdPpkuX6SKYCH3RAnk.jpg", "id": 88039}], "vote_average": 6.5, "runtime": 108}, "43949": {"poster_path": "/y83lXCINtnoW2yTiQrSMhobkjyr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1755212, "overview": "Two eighth graders start to have feelings for each other despite being total opposites. Based on the novel \"Flipped\" by Wendelin Van Draanen.", "video": false, "id": 43949, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Flipped", "tagline": "You never forget your first love.", "vote_count": 87, "homepage": "http://flipped-movie.warnerbros.com/dvd/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0817177", "adult": false, "backdrop_path": "/29DDoPM1qV6DqLUfNAY9jRhd7sR.jpg", "production_companies": [{"name": "Biograf Jan Sv\u011br\u00e1k", "id": 6419}], "release_date": "2010-10-14", "popularity": 0.766298674462303, "original_title": "Flipped", "budget": 14000000, "cast": [{"name": "Madeline Carroll", "character": "Juli Baker", "id": 62564, "credit_id": "52fe466dc3a36847f80fe771", "cast_id": 2, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 0}, {"name": "Callan McAuliffe", "character": "Bryce Loski", "id": 236851, "credit_id": "52fe466dc3a36847f80fe795", "cast_id": 13, "profile_path": "/a4oVlU0LMJjwOjP5a1jHol1Nv5l.jpg", "order": 1}, {"name": "Anthony Edwards", "character": "Steven Loski", "id": 11085, "credit_id": "52fe466dc3a36847f80fe779", "cast_id": 5, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 3}, {"name": "Aidan Quinn", "character": "Richard Baker", "id": 18992, "credit_id": "52fe466dc3a36847f80fe785", "cast_id": 8, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 5}, {"name": "Rebecca De Mornay", "character": "Pasty Loski", "id": 28412, "credit_id": "52fe466dc3a36847f80fe775", "cast_id": 4, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 6}, {"name": "John Mahoney", "character": "Chet Duncan", "id": 4251, "credit_id": "52fe466dc3a36847f80fe77d", "cast_id": 6, "profile_path": "/jK2uDKxfysuYjNAgUxbwyhd4fKD.jpg", "order": 7}, {"name": "Penelope Ann Miller", "character": "Trina Baker", "id": 14698, "credit_id": "52fe466dc3a36847f80fe781", "cast_id": 7, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 7}, {"name": "Morgan Lily", "character": "Young Juli Baker", "id": 74227, "credit_id": "52fe466dc3a36847f80fe7a5", "cast_id": 18, "profile_path": "/iYa30gYkaxXLsGvUZ9WhieQw2xo.jpg", "order": 8}, {"name": "Kevin Weisman", "character": "Daniel Baker", "id": 149670, "credit_id": "52fe466dc3a36847f80fe7a9", "cast_id": 19, "profile_path": "/dISGU7Xf0O25wbRn2tGtg7XoJyp.jpg", "order": 9}, {"name": "Cody Horn", "character": "Lynetta", "id": 582816, "credit_id": "52fe466dc3a36847f80fe7ad", "cast_id": 20, "profile_path": "/3cBTrMdZF9Yj12IUAHb9a46qplS.jpg", "order": 10}, {"name": "Israel Broussard", "character": "Garrett", "id": 969140, "credit_id": "52fe466dc3a36847f80fe7b1", "cast_id": 21, "profile_path": "/ztE0nfwxNRYSh4EpDyhs9OrYFAT.jpg", "order": 11}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe466dc3a36847f80fe76d", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 7.2, "runtime": 90}, "11186": {"poster_path": "/rDJg9f89bEzSe3eXuAUIZXToAUZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35763605, "overview": "Chuckie's back as the doll possessed by the soul of a serial killer, butchering all who stand in his way of possessing the body of a boy.", "video": false, "id": 11186, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Child's Play 2", "tagline": "Look out Jack! Chucky's back!", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0099253", "adult": false, "backdrop_path": "/ri0SMQlUWCIBE5nRpLHRnFQYjyh.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1990-11-09", "popularity": 0.772648753010926, "original_title": "Child's Play 2", "budget": 13000000, "cast": [{"name": "Alex Vincent", "character": "Andy Barclay", "id": 65683, "credit_id": "52fe440b9251416c75026f6d", "cast_id": 1, "profile_path": "/jR4RmOgv77uVsxOWbTMy5LWZiBg.jpg", "order": 0}, {"name": "Jenny Agutter", "character": "Joanne Simpson", "id": 14464, "credit_id": "52fe440b9251416c75026f71", "cast_id": 2, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 1}, {"name": "Gerrit Graham", "character": "Phil Simpson", "id": 26283, "credit_id": "52fe440b9251416c75026f75", "cast_id": 3, "profile_path": "/uXcWDznKXAbquPEHLlKKm7EeyoF.jpg", "order": 2}, {"name": "Christine Elise", "character": "Kyle", "id": 39113, "credit_id": "52fe440b9251416c75026f79", "cast_id": 4, "profile_path": "/2xyE07usRwBL8g9vVWWuvAbAbrO.jpg", "order": 3}, {"name": "Brad Dourif", "character": "Chucky", "id": 1370, "credit_id": "52fe440b9251416c75026f7d", "cast_id": 5, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 4}, {"name": "Grace Zabriskie", "character": "Grace Poole", "id": 6465, "credit_id": "52fe440b9251416c75026f81", "cast_id": 6, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 5}, {"name": "Peter Haskell", "character": "Sullivan", "id": 152647, "credit_id": "52fe440b9251416c75026faf", "cast_id": 15, "profile_path": "/3RNGnjaZyxbt3kIgHrxekjw4G3c.jpg", "order": 6}, {"name": "Beth Grant", "character": "Miss Kettlewell", "id": 5151, "credit_id": "52fe440b9251416c75026fb3", "cast_id": 16, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Greg Germann", "character": "Mattson", "id": 19974, "credit_id": "52fe440b9251416c75026fb7", "cast_id": 17, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 8}, {"name": "Raymond Singer", "character": "Social Worker", "id": 66194, "credit_id": "52fe440b9251416c75026fbb", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "John Lafia", "department": "Directing", "job": "Director", "credit_id": "52fe440b9251416c75026f87", "profile_path": null, "id": 65678}], "vote_average": 5.9, "runtime": 84}, "101299": {"poster_path": "/tAhSyLxpaZJCr1oc2a3flvC2B7x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 847423452, "overview": "Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a \"Victor's Tour\" of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.", "video": false, "id": 101299, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Hunger Games: Catching Fire", "tagline": "Every revolution begins with a spark.", "vote_count": 1874, "homepage": "http://www.thehungergamesexplorer.com/us/epk/catching-fire/", "belongs_to_collection": {"backdrop_path": "/lWZB4VFSlU292oJ3ZAzAzPi9GU0.jpg", "poster_path": "/cEBNDEMGqvSvU0knEv9Wl3dk5kv.jpg", "id": 131635, "name": "The Hunger Games Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1951264", "adult": false, "backdrop_path": "/sRJjliXA7ZqHCr7HCK0ZB83xxjr.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Color Force", "id": 5420}], "release_date": "2013-11-22", "popularity": 2.77974926683829, "original_title": "The Hunger Games: Catching Fire", "budget": 130000000, "cast": [{"name": "Jennifer Lawrence", "character": "Katniss Everdeen", "id": 72129, "credit_id": "52fe49eec3a36847f81ae117", "cast_id": 4, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Peeta Mellark", "id": 27972, "credit_id": "52fe49eec3a36847f81ae11b", "cast_id": 5, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Sam Claflin", "character": "Finnick Odair", "id": 237455, "credit_id": "52fe49eec3a36847f81ae149", "cast_id": 15, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 2}, {"name": "Elizabeth Banks", "character": "Effie Trinket", "id": 9281, "credit_id": "52fe49eec3a36847f81ae14d", "cast_id": 16, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 3}, {"name": "Alan Ritchson", "character": "Gloss", "id": 64295, "credit_id": "52fe49eec3a36847f81ae151", "cast_id": 17, "profile_path": "/aCyp11i8yTFqa8vOAksarDkRfR7.jpg", "order": 4}, {"name": "Jena Malone", "character": "Johanna Mason", "id": 20089, "credit_id": "52fe49eec3a36847f81ae155", "cast_id": 18, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 5}, {"name": "Stanley Tucci", "character": "Caeser Flickerman", "id": 2283, "credit_id": "52fe49eec3a36847f81ae159", "cast_id": 19, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 6}, {"name": "Willow Shields", "character": "Primrose Everdeen", "id": 530025, "credit_id": "52fe49eec3a36847f81ae15d", "cast_id": 20, "profile_path": "/bKMAnqGbyVeiRBG3im1Y33Vtrgx.jpg", "order": 7}, {"name": "Woody Harrelson", "character": "Haymitch Abernathy", "id": 57755, "credit_id": "52fe49eec3a36847f81ae161", "cast_id": 21, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 8}, {"name": "Philip Seymour Hoffman", "character": "Plutarch Heavensbee", "id": 1233, "credit_id": "52fe49eec3a36847f81ae165", "cast_id": 22, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 9}, {"name": "Donald Sutherland", "character": "President Snow", "id": 55636, "credit_id": "52fe49eec3a36847f81ae169", "cast_id": 23, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 10}, {"name": "Jeffrey Wright", "character": "Beetee", "id": 2954, "credit_id": "54ef97be9251413ae8003cff", "cast_id": 43, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 11}, {"name": "Amanda Plummer", "character": "Wiress", "id": 99, "credit_id": "52fe49eec3a36847f81ae16d", "cast_id": 24, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 12}, {"name": "Meta Golding", "character": "Enobaria", "id": 165242, "credit_id": "52fe49eec3a36847f81ae171", "cast_id": 25, "profile_path": "/fvIy2cWlYs2PcuXjTLMt4QpOQnf.jpg", "order": 13}, {"name": "Lenny Kravitz", "character": "Cinna", "id": 77069, "credit_id": "52fe49eec3a36847f81ae175", "cast_id": 26, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 14}, {"name": "Lynn Cohen", "character": "Mags", "id": 8792, "credit_id": "52fe49eec3a36847f81ae179", "cast_id": 27, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 15}, {"name": "Toby Jones", "character": "Claudius Templesmith", "id": 13014, "credit_id": "52fe49eec3a36847f81ae17d", "cast_id": 28, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 16}, {"name": "Stephanie Leigh Schlund", "character": "Cashmere", "id": 1086221, "credit_id": "52fe49eec3a36847f81ae181", "cast_id": 29, "profile_path": "/x90FxHKLJRpGxKf06fFAcs0fUZe.jpg", "order": 17}, {"name": "Bruno Gunn", "character": "Brutus", "id": 1086222, "credit_id": "52fe49eec3a36847f81ae185", "cast_id": 30, "profile_path": "/gvjIPGaYREusDXwGIgK4H2aMFyM.jpg", "order": 18}, {"name": "Maria Howell", "character": "Seeder", "id": 80616, "credit_id": "52fe49eec3a36847f81ae189", "cast_id": 31, "profile_path": "/slp3efuuvxwTFA65zmFAHVo96K9.jpg", "order": 19}, {"name": "E. Roger Mitchell", "character": "Chaff", "id": 41020, "credit_id": "52fe49eec3a36847f81ae18d", "cast_id": 32, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 20}, {"name": "Patrick St. Esprit", "character": "Romulus Thread", "id": 117437, "credit_id": "52fe49eec3a36847f81ae191", "cast_id": 33, "profile_path": "/bcbLFQUGDcgrlbJz0blywlfGutL.jpg", "order": 21}, {"name": "Liam Hemsworth", "character": "Gale Hawthorne", "id": 96066, "credit_id": "52fe49eec3a36847f81ae19b", "cast_id": 35, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 22}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe49eec3a36847f81ae1a7", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 7.6, "runtime": 146}, "9647": {"poster_path": "/9gUQPVt0QZYKUBrGGtknfrsRQ1c.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60328000, "overview": "Frank Cross runs a US TV station which is planning a live adaptation of Dickens' Christmas Carol. Frank's childhood wasn't a particularly pleasant one, and so he doesn't really appreciate the Christmas spirit. With the help of the ghosts of Christmas past, present and future, Frank realizes he must change.", "video": false, "id": 9647, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Scrooged", "tagline": "The spirits will move you in odd and hysterical ways.", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096061", "adult": false, "backdrop_path": "/6xezVJoUp0cZUBQeIDpW6lFuhcd.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-11-22", "popularity": 0.553232201938376, "original_title": "Scrooged", "budget": 0, "cast": [{"name": "Bill Murray", "character": "Francis Xavier Cross", "id": 1532, "credit_id": "52fe4516c3a36847f80bba6f", "cast_id": 11, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 0}, {"name": "Karen Allen", "character": "Claire Phillips", "id": 650, "credit_id": "52fe4516c3a36847f80bba73", "cast_id": 12, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 1}, {"name": "John Glover", "character": "Bryce Cummings", "id": 5589, "credit_id": "52fe4516c3a36847f80bba77", "cast_id": 13, "profile_path": "/oxoOXlY9qJt9kQwxA9PNhnBTgX9.jpg", "order": 2}, {"name": "John Forsythe", "character": "Lew Hayward", "id": 24367, "credit_id": "52fe4516c3a36847f80bba7b", "cast_id": 14, "profile_path": "/5sEnkUlmynZtmV9mzpn896GmtX.jpg", "order": 3}, {"name": "Bobcat Goldthwait", "character": "Eliot Loudermilk", "id": 95024, "credit_id": "52fe4516c3a36847f80bba7f", "cast_id": 15, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 4}, {"name": "Jamie Farr", "character": "Jacob Marley", "id": 55432, "credit_id": "52fe4516c3a36847f80bba83", "cast_id": 16, "profile_path": "/rvM7jVzQru580RPg3kBXNmyZCnU.jpg", "order": 5}, {"name": "Brian Doyle-Murray", "character": "Earl Cross", "id": 1535, "credit_id": "52fe4516c3a36847f80bba87", "cast_id": 17, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 6}, {"name": "Carol Kane", "character": "Ghost of Christmas Present", "id": 10556, "credit_id": "52fe4516c3a36847f80bba8b", "cast_id": 18, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 7}, {"name": "Michael J. Pollard", "character": "Herman", "id": 6451, "credit_id": "52fe4516c3a36847f80bba8f", "cast_id": 19, "profile_path": "/b7czRP544Pyna7HbXcq2nGbi5Tn.jpg", "order": 8}, {"name": "Robert Goulet", "character": "Himself", "id": 128621, "credit_id": "52fe4516c3a36847f80bba93", "cast_id": 20, "profile_path": "/776KzwV8l62Wz4gGWnifTUtf8A2.jpg", "order": 9}, {"name": "Mary Ellen Trainor", "character": "Ted", "id": 23967, "credit_id": "52fe4516c3a36847f80bba97", "cast_id": 21, "profile_path": "/w5QWW4oyQWNX51hMcnaCUTPToYX.jpg", "order": 10}, {"name": "John Houseman", "character": "Himself", "id": 11783, "credit_id": "52fe4516c3a36847f80bba9b", "cast_id": 22, "profile_path": "/cfG4HXRJRnkJqzlfpjtc9T2L9Ls.jpg", "order": 11}, {"name": "Buddy Hackett", "character": "Scrooge", "id": 67393, "credit_id": "52fe4516c3a36847f80bba9f", "cast_id": 23, "profile_path": "/zYLAknEo17XgWU44DbT2FCvLQps.jpg", "order": 12}, {"name": "Robert Mitchum", "character": "Grace Cooley", "id": 10158, "credit_id": "52fe4516c3a36847f80bbaa7", "cast_id": 25, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 14}, {"name": "David Johansen", "character": "Ghost of Christmas Past", "id": 57116, "credit_id": "52fe4516c3a36847f80bbaab", "cast_id": 26, "profile_path": "/SbnUy4Iiag3WCvDdgAmYYwA0sn.jpg", "order": 15}, {"name": "Al 'Red Dog' Weber", "character": "Santa Clause", "id": 1445668, "credit_id": "5513036a92514104ab0018bd", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Robert Hammond", "character": "Ghost of Christmas Future", "id": 1445670, "credit_id": "55130445c3a3683f3900a0b1", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Nicholas Phillips", "character": "Calvin Cooley", "id": 1445671, "credit_id": "551304fe92514104ab0018df", "cast_id": 29, "profile_path": null, "order": 18}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe4516c3a36847f80bba47", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.4, "runtime": 101}, "76726": {"poster_path": "/6uaJhUNP1VXyRQS6cGyQD4RbZsj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145000000, "overview": "Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.", "video": false, "id": 76726, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Chronicle", "tagline": "What are you capable of?", "vote_count": 536, "homepage": "", "belongs_to_collection": null, "original_language": "it", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1706593", "adult": false, "backdrop_path": "/f54d3tpzdRW02IDIIVRuwiY2N3K.jpg", "production_companies": [{"name": "Adam Schroeder Productions", "id": 43394}, {"name": "Dune Entertainment", "id": 444}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2012-02-02", "popularity": 1.33305233501353, "original_title": "Chronicle", "budget": 15000000, "cast": [{"name": "Dane DeHaan", "character": "Andrew Detmer", "id": 122889, "credit_id": "52fe494ac3a368484e12407f", "cast_id": 2, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 0}, {"name": "Alex Russell", "character": "Matt Garetty", "id": 558466, "credit_id": "52fe494ac3a368484e124083", "cast_id": 4, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "John Olfman", "id": 1072642, "credit_id": "553758ea9251414ab90015a6", "cast_id": 82, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Michael Kelly", "character": "Richard Detmer", "id": 50217, "credit_id": "52fe494ac3a368484e124087", "cast_id": 5, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 3}, {"name": "Michael B. Jordan", "character": "Steve Montgomery", "id": 135651, "credit_id": "52fe494ac3a368484e12408b", "cast_id": 6, "profile_path": "/yXFfXyc2B5bVNCQQmlPnr9HpGXR.jpg", "order": 4}, {"name": "Anna Wood", "character": "Monica", "id": 213044, "credit_id": "52fe494ac3a368484e12408f", "cast_id": 7, "profile_path": "/hbIqlG4mv9ruNZigHCtecLA49gs.jpg", "order": 5}, {"name": "Ashley Hinshaw", "character": "Casey Letter", "id": 589098, "credit_id": "52fe494ac3a368484e124093", "cast_id": 8, "profile_path": "/7PgDm9aDweOtr6y0dmtemoR4nFW.jpg", "order": 6}, {"name": "Joe Vaz", "character": "Michael Ernesto", "id": 137463, "credit_id": "52fe494ac3a368484e124097", "cast_id": 9, "profile_path": "/wNW0XpdWxAe2pzVjbRagqdhBEHk.jpg", "order": 7}, {"name": "Luke Tyler", "character": "Sean", "id": 934796, "credit_id": "52fe494ac3a368484e12409b", "cast_id": 10, "profile_path": "/1dFufId1Q8qex5bz6RhVBARhuz0.jpg", "order": 8}, {"name": "Crystal-Donna Roberts", "character": "Samantha", "id": 231651, "credit_id": "54ad5627c3a3680c2100c0d8", "cast_id": 81, "profile_path": null, "order": 9}], "directors": [{"name": "Josh Trank", "department": "Directing", "job": "Director", "credit_id": "52fe494ac3a368484e1240a1", "profile_path": null, "id": 934803}], "vote_average": 6.2, "runtime": 84}, "43959": {"poster_path": "/t7twsxCK3vIkn4z0w4WwHuVZPNy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43000000, "overview": "Soul Surfer is the inspiring true story of teen surfer Bethany Hamilton. Bethany lost her left arm in a shark attack and courageously overcame all odds to become a champion again, through her sheer determination and unwavering faith.Bethany (AnnaSophia Robb) was born to surf. A natural talent who took to the waves at a young age, she was leading an idyllic life on Kauai, participating in national surf competitions with her best friend Alana (Lorraine Nicholson), when everything changed. On Halloween morning, a 14-foot tiger shark came out of nowhere and seemed to shatter all her dreams.Soul Surfer reveals Bethany's fight to recover from her ordeal and how she grappled with the question of her future. Strengthened by the love of her parents, Tom (Dennis Quaid) and Cheri (Helen Hunt), and supported by her youth group leader Sara (Carrie Underwood), Bethany refuses to give in or give up, and begins a bold return to the water.", "video": false, "id": 43959, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Soul Surfer", "tagline": "When you come back from a loss, beat the odds, and never say never, you find a champion.", "vote_count": 101, "homepage": "http://www.soulsurferthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1596346", "adult": false, "backdrop_path": "/kkRc3JndbQtbH6ZQeOvU4vztgKS.jpg", "production_companies": [{"name": "FilmDistrict", "id": 7263}, {"name": "Brookwell-McNamara Entertainment", "id": 3235}, {"name": "Affirm Films", "id": 10156}, {"name": "Mandalay Pictures", "id": 551}, {"name": "TriStar Pictures", "id": 559}], "release_date": "2011-04-08", "popularity": 0.58233843133009, "original_title": "Soul Surfer", "budget": 18000000, "cast": [{"name": "AnnaSophia Robb", "character": "Bethany Hamilton", "id": 1285, "credit_id": "52fe466dc3a36847f80fe91d", "cast_id": 3, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Tom Hamilton", "id": 6065, "credit_id": "52fe466dc3a36847f80fe919", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Helen Hunt", "character": "Cheri Hamilton", "id": 9994, "credit_id": "52fe466dc3a36847f80fe921", "cast_id": 4, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 2}, {"name": "Lorraine Nicholsan", "character": "Alana Blanchard", "id": 231312, "credit_id": "52fe466dc3a36847f80fe925", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Carrie Underwood", "character": "Sarah Hill", "id": 96091, "credit_id": "52fe466dc3a36847f80fe929", "cast_id": 6, "profile_path": "/bJf4NqWpOdXUHqOGISHC8qWnpLo.jpg", "order": 4}, {"name": "Kevin Sorbo", "character": "Holt Blanchard", "id": 51965, "credit_id": "52fe466dc3a36847f80fe92d", "cast_id": 7, "profile_path": "/kPwVLsAMDZDsFVmXjg1zG5cLltT.jpg", "order": 5}, {"name": "Jeremy Sumter", "character": "Byron", "id": 231313, "credit_id": "52fe466dc3a36847f80fe931", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Ross Thomas", "character": "Noah Hamilton", "id": 77448, "credit_id": "52fe466dc3a36847f80fe935", "cast_id": 9, "profile_path": "/g55grA2w6q9UJYreo3K5zuiAT38.jpg", "order": 7}, {"name": "Sonya Balmores Chung", "character": "Malina Birch", "id": 206833, "credit_id": "52fe466dc3a36847f80fe939", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Chris Brochu", "character": "Timmy Hamilton", "id": 146510, "credit_id": "52fe466dc3a36847f80fe93d", "cast_id": 11, "profile_path": "/sS8QCd4LhgxMde8Zr2OKXeQJ6Bz.jpg", "order": 9}], "directors": [{"name": "Sean McNamara", "department": "Directing", "job": "Director", "credit_id": "52fe466dc3a36847f80fe915", "profile_path": "/pKKDKqlqaIN1brq0RGYCEgKEn3P.jpg", "id": 129952}], "vote_average": 6.9, "runtime": 106}, "27576": {"poster_path": "/956xMjH4sPoqimqoLOP6AI19mjm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 293329073, "overview": "As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a defector accuses her of being a Russian spy. Salt goes on the run, using all her skills and years of experience as a covert operative to elude capture. Salt's efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: \"Who is Salt?\"", "video": false, "id": 27576, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Salt", "tagline": "Who is Salt?", "vote_count": 776, "homepage": "http://www.sonypictures.com/homevideo/salt/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0944835", "adult": false, "backdrop_path": "/vHLsgsvLtFWDlhBigKDRsYIC1p6.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2010-07-23", "popularity": 1.42294219247014, "original_title": "Salt", "budget": 110000000, "cast": [{"name": "Angelina Jolie", "character": "Evelyn Salt", "id": 11701, "credit_id": "52fe4555c3a368484e054141", "cast_id": 45, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Liev Schreiber", "character": "Winter", "id": 23626, "credit_id": "52fe4555c3a368484e05409f", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 1}, {"name": "Corey Stoll", "character": "Shnaider", "id": 74541, "credit_id": "52fe4555c3a368484e0540c3", "cast_id": 12, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 2}, {"name": "Chiwetel Ejiofor", "character": "Peabody", "id": 5294, "credit_id": "52fe4555c3a368484e0540a3", "cast_id": 4, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 3}, {"name": "Daniel Olbrychski", "character": "Russian Ex-Secret Agent", "id": 7107, "credit_id": "52fe4555c3a368484e0540bb", "cast_id": 10, "profile_path": "/nfqJ8xiVNyBQQhnYRkwJzl3iS7s.jpg", "order": 4}, {"name": "August Diehl", "character": "Mike Krause", "id": 6091, "credit_id": "52fe4555c3a368484e05412b", "cast_id": 38, "profile_path": "/A3MqiHyxUVrTHmuSh4nvzOLUeNx.jpg", "order": 5}, {"name": "Yara Shahidi", "character": "Cleo", "id": 118372, "credit_id": "52fe4555c3a368484e0540ab", "cast_id": 6, "profile_path": "/v3AVrFCOGVoehv4zeyqH26rydot.jpg", "order": 6}, {"name": "Gaius Charles", "character": "Todd Bottoms", "id": 118374, "credit_id": "52fe4555c3a368484e0540af", "cast_id": 7, "profile_path": "/vvzqcei1Ja4sy8pzwnTWO7IhsXQ.jpg", "order": 7}, {"name": "Victor Slezak", "character": "3-Star General", "id": 10379, "credit_id": "52fe4555c3a368484e0540b3", "cast_id": 8, "profile_path": "/m3Wi4uifukUJl2GA3QEOHctPESz.jpg", "order": 8}, {"name": "Cassidy Hinkle", "character": "Young Salt", "id": 118377, "credit_id": "52fe4555c3a368484e0540b7", "cast_id": 9, "profile_path": "/wB0o6gekywhHwvvX2o8tnL7BWWp.jpg", "order": 9}, {"name": "Zoe Lister-Jones", "character": "Zoe Kinnally", "id": 82885, "credit_id": "52fe4555c3a368484e0540a7", "cast_id": 5, "profile_path": "/n7iv3J9vsb05KTioPzhORZCKdRT.jpg", "order": 10}, {"name": "Nicole Signore", "character": "Precision Driver", "id": 118380, "credit_id": "52fe4555c3a368484e0540bf", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Mardi Jones", "character": "CIA / SWAT team", "id": 118403, "credit_id": "52fe4555c3a368484e054127", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Nick Poltoranin", "character": "Russian Thug #1", "id": 118389, "credit_id": "52fe4555c3a368484e0540eb", "cast_id": 22, "profile_path": "/lKAikbeJ5HaWKCJE1ushE89RoIG.jpg", "order": 13}, {"name": "Michelle Ray Smith", "character": "Lead Technician", "id": 118383, "credit_id": "52fe4555c3a368484e0540c7", "cast_id": 13, "profile_path": "/u3LYrrrJ8D3utStTzaUrDC3mvET.jpg", "order": 14}, {"name": "Kevin O'Donnell", "character": "Francis", "id": 118384, "credit_id": "52fe4555c3a368484e0540cb", "cast_id": 14, "profile_path": "/fwKwtaidyl4GU5BSylVcxfax5GS.jpg", "order": 15}, {"name": "Hunt Block", "character": "U.S. President", "id": 44826, "credit_id": "52fe4555c3a368484e0540cf", "cast_id": 15, "profile_path": "/n2OVzSreEqmdmkohl5VkskHRexh.jpg", "order": 16}, {"name": "James Schram", "character": "Corporal Davis - U.S. Military", "id": 118385, "credit_id": "52fe4555c3a368484e0540d3", "cast_id": 16, "profile_path": null, "order": 17}, {"name": "Frosty Lawson", "character": "CIA Agent", "id": 118395, "credit_id": "52fe4555c3a368484e054103", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Cecilia Foss", "character": "The Ritual Matchmaker", "id": 118386, "credit_id": "52fe4555c3a368484e0540d7", "cast_id": 17, "profile_path": "/mvdYcysfPmHX67h9vki2BWveNIa.jpg", "order": 19}, {"name": "Gary Wilmes", "character": "Paul Tracey", "id": 78404, "credit_id": "52fe4555c3a368484e0540db", "cast_id": 18, "profile_path": "/i4AGTHkO84bc0LCQA6EaN9FtIyj.jpg", "order": 20}, {"name": "Harry L. Seddon", "character": "Cop escorting Evelyn Salt from Bombing", "id": 118387, "credit_id": "52fe4555c3a368484e0540df", "cast_id": 19, "profile_path": null, "order": 21}, {"name": "Marion McCorry", "character": "CIA Director Medford", "id": 28046, "credit_id": "52fe4555c3a368484e0540e3", "cast_id": 20, "profile_path": "/kLyiSUWs9kmRG1UurMSAJNMg59E.jpg", "order": 22}, {"name": "Victoria Cartagena", "character": "Portico Checkpoint Agent", "id": 118388, "credit_id": "52fe4555c3a368484e0540e7", "cast_id": 21, "profile_path": "/uJ84HU2eEF4skZJ5e4eq9NSJDO1.jpg", "order": 23}, {"name": "Hristo Hristov", "character": "Russian Thug #3", "id": 118390, "credit_id": "52fe4555c3a368484e0540ef", "cast_id": 23, "profile_path": null, "order": 24}, {"name": "Zach Shaffer", "character": "Security Officer", "id": 118391, "credit_id": "52fe4555c3a368484e0540f3", "cast_id": 24, "profile_path": null, "order": 25}, {"name": "Jewel Elizabeth", "character": "Mourning Granddaughter", "id": 118392, "credit_id": "52fe4555c3a368484e0540f7", "cast_id": 25, "profile_path": null, "order": 26}, {"name": "James Cronin", "character": "Joe Oates", "id": 118393, "credit_id": "52fe4555c3a368484e0540fb", "cast_id": 26, "profile_path": "/mGsXs2033cIeEVo6y4NjFpOn52E.jpg", "order": 27}, {"name": "Philip Willingham", "character": "Camera man", "id": 118394, "credit_id": "52fe4555c3a368484e0540ff", "cast_id": 27, "profile_path": "/6qHAywpfvq92fd75QoTIWgPzEPM.jpg", "order": 28}, {"name": "Dionne Audain", "character": "Coms Agent / Radio Op", "id": 118397, "credit_id": "52fe4555c3a368484e05410b", "cast_id": 30, "profile_path": null, "order": 30}, {"name": "Angelo Lopez", "character": "202. SS Bunker Tech #3", "id": 118398, "credit_id": "52fe4555c3a368484e05410f", "cast_id": 31, "profile_path": "/twsMgWs01NTBNniA5yEOl3hQDhp.jpg", "order": 31}, {"name": "Ivo Velon", "character": "Basayev", "id": 83242, "credit_id": "52fe4555c3a368484e054113", "cast_id": 32, "profile_path": null, "order": 32}, {"name": "Xavier Rafael", "character": "Secret service agent", "id": 118399, "credit_id": "52fe4555c3a368484e054117", "cast_id": 33, "profile_path": null, "order": 33}, {"name": "William Henderson White", "character": "Russian Reporter", "id": 118400, "credit_id": "52fe4555c3a368484e05411b", "cast_id": 34, "profile_path": null, "order": 34}, {"name": "Ethan Ladd", "character": "7-year-old Schnaider", "id": 118401, "credit_id": "52fe4555c3a368484e05411f", "cast_id": 35, "profile_path": null, "order": 35}, {"name": "Tobias Campbell", "character": "12-year-old Schnaider", "id": 118402, "credit_id": "52fe4555c3a368484e054123", "cast_id": 36, "profile_path": null, "order": 36}, {"name": "James Nuciforo", "character": "Military Aide", "id": 1358758, "credit_id": "5417e5ee0e0a263801001fa8", "cast_id": 54, "profile_path": "/6MkEN05F7SK8MFgJIfBtDrv7fue.jpg", "order": 37}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe4555c3a368484e05409b", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.2, "runtime": 100}, "27578": {"poster_path": "/y2qJoYxOhzyidsA60Mqn29H38Lk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 274470394, "overview": "Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert, heavy weapons specialist, demolitionist, and a loose-cannon sniper. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.", "video": false, "id": 27578, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Expendables", "tagline": "Choose Your Weapon.", "vote_count": 1435, "homepage": "http://expendablesthemovie.com/", "belongs_to_collection": {"backdrop_path": "/lA7oDSt6LkyDqtbFGbyuG0afmTI.jpg", "poster_path": "/mpzHpaXjBc7bHAhwcerIznnq9qV.jpg", "id": 126125, "name": "The Expendables Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1320253", "adult": false, "backdrop_path": "/x5u73uBylbyCCnkzUGzt3uozqRp.jpg", "production_companies": [{"name": "Rogue Marble", "id": 696}, {"name": "Nu Image Films", "id": 925}, {"name": "Nimar Studios", "id": 7636}, {"name": "Millennium Films", "id": 10254}], "release_date": "2010-08-03", "popularity": 1.57904027463574, "original_title": "The Expendables", "budget": 80000000, "cast": [{"name": "Sylvester Stallone", "character": "Barney Ross", "id": 16483, "credit_id": "52fe4555c3a368484e0541b5", "cast_id": 4, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Jason Statham", "character": "Lee Christmas", "id": 976, "credit_id": "52fe4555c3a368484e0541b9", "cast_id": 5, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Dolph Lundgren", "character": "Gunnar Jensen", "id": 16644, "credit_id": "52fe4555c3a368484e0541bd", "cast_id": 7, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 2}, {"name": "Eric Roberts", "character": "Monroe", "id": 21315, "credit_id": "52fe4555c3a368484e0541c1", "cast_id": 8, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 3}, {"name": "Randy Couture", "character": "Toll Road", "id": 74748, "credit_id": "52fe4555c3a368484e0541c5", "cast_id": 9, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 4}, {"name": "Steve Austin", "character": "Dan Paine", "id": 77120, "credit_id": "52fe4555c3a368484e0541c9", "cast_id": 10, "profile_path": "/brwLpcsqly66jchMWjrcrc93siI.jpg", "order": 5}, {"name": "David Zayas", "character": "General Garza", "id": 22821, "credit_id": "52fe4555c3a368484e0541cd", "cast_id": 11, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 6}, {"name": "Giselle Iti\u00e9", "character": "Sandra", "id": 99414, "credit_id": "52fe4555c3a368484e0541d1", "cast_id": 12, "profile_path": "/c30T0eE4DVgrbLS6cFQa6X2kk5e.jpg", "order": 7}, {"name": "Terry Crews", "character": "Hale Caesar", "id": 53256, "credit_id": "52fe4555c3a368484e0541d5", "cast_id": 13, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 8}, {"name": "Mickey Rourke", "character": "Tool", "id": 2295, "credit_id": "52fe4555c3a368484e0541d9", "cast_id": 14, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 9}, {"name": "Bruce Willis", "character": "Mr. Church", "id": 62, "credit_id": "52fe4555c3a368484e0541dd", "cast_id": 15, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 10}, {"name": "Arnold Schwarzenegger", "character": "Trench", "id": 1100, "credit_id": "52fe4555c3a368484e0541e1", "cast_id": 16, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 11}, {"name": "Charisma Carpenter", "character": "Lacy", "id": 126502, "credit_id": "52fe4555c3a368484e0541e5", "cast_id": 17, "profile_path": "/y5PFIcVmgycJWzwp4VcaZIOqVY2.jpg", "order": 12}, {"name": "Amin Joseph", "character": "Pirate Leader", "id": 131772, "credit_id": "52fe4555c3a368484e0541e9", "cast_id": 19, "profile_path": "/skvXr7EjcsgVfwoZnmNNjIk4Jmr.jpg", "order": 14}, {"name": "Senyo Amoaku", "character": "Tall Pirate Leader", "id": 115840, "credit_id": "52fe4555c3a368484e0541ed", "cast_id": 20, "profile_path": "/bVmp0pJQoZSPQjOIMaXaRhEjlzf.jpg", "order": 15}, {"name": "Hank Amos", "character": "Paul", "id": 9437, "credit_id": "52fe4555c3a368484e0541f1", "cast_id": 21, "profile_path": "/uBYjSESkBQxoouoImf192XZ4dPl.jpg", "order": 16}, {"name": "Antonio Rodrigo Nogueira", "character": "Garza's Bodyguard #1 and #2", "id": 78815, "credit_id": "52fe4555c3a368484e0541f5", "cast_id": 22, "profile_path": "/kPcJvYXbrFpQ7nsFDXSI1Ex9rp3.jpg", "order": 17}, {"name": "Sassa Nacimento", "character": "Vilena Customs Agent", "id": 131773, "credit_id": "52fe4555c3a368484e0541f9", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "R.A. Rondell", "character": "Gunner's Goon", "id": 14771, "credit_id": "52fe4555c3a368484e0541fd", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Tze Yep", "character": "Gagged Hostage", "id": 131774, "credit_id": "52fe4555c3a368484e054201", "cast_id": 26, "profile_path": "/aV80ilLXK2o50hs7YnY1sX2hoM8.jpg", "order": 20}, {"name": "Gary Daniels", "character": "The Brit", "id": 68559, "credit_id": "52fe4555c3a368484e054205", "cast_id": 27, "profile_path": "/qLzJNzU1mjkywkDSwUZ3xmqGdcu.jpg", "order": 21}, {"name": "Jet Li", "character": "Yin Yang", "id": 1336, "credit_id": "52fe4555c3a368484e054209", "cast_id": 28, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 22}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe4555c3a368484e0541a5", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 5.9, "runtime": 103}, "27579": {"poster_path": "/fSjOt5mNKb1ht8oKu4mVICAwbAt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65464324, "overview": "Alone among assassins, Jack is a master craftsman. When a job in Sweden ends more harshly than expected for this American abroad, he vows to his contact Larry that his next assignment will be his last. Jack reports to the Italian countryside, where he holes up in a small town and relishes being away from death for a spell. The assignment, as specified by a Belgian woman, Mathilde, is in the offing as a weapon is constructed. Surprising himself, Jack seeks out the friendship of local priest Father Benedetto and pursues romance with local woman Clara. But by stepping out of the shadows, Jack may be tempting fate.", "video": false, "id": 27579, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The American", "tagline": "", "vote_count": 164, "homepage": "http://focusfeatures.com/film/the_american/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt1440728", "adult": false, "backdrop_path": "/rRrMFgcn0rsNjywDzjAT5TofVXl.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2010-09-01", "popularity": 0.496079424176239, "original_title": "The American", "budget": 20000000, "cast": [{"name": "George Clooney", "character": "Jack / Edward", "id": 1461, "credit_id": "52fe4555c3a368484e0542c5", "cast_id": 2, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Irina Bj\u00f6rklund", "character": "Ingrid", "id": 85386, "credit_id": "52fe4555c3a368484e054327", "cast_id": 21, "profile_path": "/kfPRkNXKhcD3ufp0XMrjkQONFoT.jpg", "order": 1}, {"name": "Lars Hjelm", "character": "Hunter #1", "id": 1280827, "credit_id": "52fe4555c3a368484e054333", "cast_id": 24, "profile_path": null, "order": 2}, {"name": "Bj\u00f6rn Granath", "character": "Hunter #2", "id": 55002, "credit_id": "52fe4555c3a368484e054337", "cast_id": 25, "profile_path": "/vnAD5t7vyCP7GPicOa2bB3WXJxD.jpg", "order": 3}, {"name": "Johan Leysen", "character": "Pavel", "id": 53904, "credit_id": "52fe4555c3a368484e054323", "cast_id": 20, "profile_path": "/cjLEEzFfEGoEEpHnNxjfso04Dd0.jpg", "order": 4}, {"name": "Paolo Bonacelli", "character": "Father Benedetto", "id": 4819, "credit_id": "52fe4555c3a368484e0542d1", "cast_id": 6, "profile_path": "/evLXJ9ufstKWN00SElhuSVe7FUD.jpg", "order": 5}, {"name": "Giorgio Gobbi", "character": "Man on Vespa", "id": 226029, "credit_id": "52fe4555c3a368484e05433b", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Silvana Bosi", "character": "Old Cheese Vendor", "id": 7556, "credit_id": "52fe4555c3a368484e05433f", "cast_id": 27, "profile_path": "/ipEi2FrAUO3iUM3MGfQKL5g1Wjm.jpg", "order": 7}, {"name": "Thekla Reuten", "character": "Mathilde", "id": 45749, "credit_id": "52fe4555c3a368484e0542c9", "cast_id": 3, "profile_path": "/n6qovt4SJ5hefsW1RHgpdbOPENL.jpg", "order": 8}, {"name": "Guido Palliggiano", "character": "Waiter (Market)", "id": 1223739, "credit_id": "52fe4555c3a368484e054343", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Samuli Vauramo", "character": "Young Swedish Man", "id": 147734, "credit_id": "52fe4555c3a368484e054347", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Antonio Rampino", "character": "Postmaster", "id": 1280828, "credit_id": "52fe4556c3a368484e05434b", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Violante Placido", "character": "Clara", "id": 44649, "credit_id": "52fe4555c3a368484e0542cd", "cast_id": 5, "profile_path": "/371gOs0Tdd8mUFet7PwzCP0s47I.jpg", "order": 12}, {"name": "Filippo Timi", "character": "Fabio", "id": 105868, "credit_id": "52fe4555c3a368484e05432b", "cast_id": 22, "profile_path": "/4ktWnWWHpf2oI5EvDa3DDf9gaAM.jpg", "order": 13}, {"name": "Ilaria Cramerotti", "character": "Hooker #2", "id": 1280829, "credit_id": "52fe4556c3a368484e05434f", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Angelica Novak", "character": "Hooker #3", "id": 1280830, "credit_id": "52fe4556c3a368484e054353", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Isabelle Adriani", "character": "Hooker #1", "id": 585365, "credit_id": "52fe4556c3a368484e054357", "cast_id": 33, "profile_path": "/kYnUgRoFCNZ1voOnuv5PDXR6TFZ.jpg", "order": 16}, {"name": "Raffaele Serao", "character": "Barman (Town Square Bar)", "id": 1280831, "credit_id": "52fe4556c3a368484e05435b", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Anna Foglietta", "character": "Anna", "id": 586953, "credit_id": "52fe4555c3a368484e05432f", "cast_id": 23, "profile_path": "/34KM6wHlpD2Y5Gs6kFVgmNOTNWs.jpg", "order": 18}, {"name": "Sandro Dori", "character": "Waiter (Locanda Grapelli)", "id": 1040332, "credit_id": "52fe4556c3a368484e05435f", "cast_id": 35, "profile_path": null, "order": 19}], "directors": [{"name": "Anton Corbijn", "department": "Directing", "job": "Director", "credit_id": "52fe4555c3a368484e0542c1", "profile_path": "/ov4kjSJGwaYnlgPCENRVexTt4q2.jpg", "id": 45052}], "vote_average": 5.5, "runtime": 105}, "27581": {"poster_path": "/b4mYjC8kKx32BnCNBQeDCA76WBd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152006678, "overview": "NYPD detectives Christopher Danson (Johnson) and P.K. Highsmith (Jackson) are the baddest and most beloved cops in New York City. They don't get tattoos, other men get tattoos of them. Two desks over and one back, sit detectives Allen Gamble (Ferrell) and Terry Hoitz (Wahlberg). You've seen them in the background of photos of Danson and Highsmith, out of focus and eyes closed. They're not heroes, they're \"the other guys.\" But every cop has his or her day and soon Gamble and Hoitz stumble into a seemingly innocuous case no other detective wants to touch that could turn into NYC's biggest crime. It's the opportunity of their lives, but do these guys have the right stuff?", "video": false, "id": 27581, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Other Guys", "tagline": "When the cops are busy... Our only hope is...", "vote_count": 477, "homepage": "http://www.theotherguys-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1386588", "adult": false, "backdrop_path": "/awMESdeGymmNYTMhWvjJE5AP61a.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2010-08-06", "popularity": 0.938639609006253, "original_title": "The Other Guys", "budget": 100000000, "cast": [{"name": "Will Ferrell", "character": "Detective Allen Gamble", "id": 23659, "credit_id": "52fe4556c3a368484e054395", "cast_id": 4, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Detective Terry Hoitz", "id": 13240, "credit_id": "52fe4556c3a368484e054399", "cast_id": 5, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Sheila Gamble", "id": 8170, "credit_id": "52fe4556c3a368484e05439d", "cast_id": 8, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "P.K. Highsmith", "id": 2231, "credit_id": "52fe4556c3a368484e0543a7", "cast_id": 11, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Dwayne Johnson", "character": "Christopher Danson", "id": 18918, "credit_id": "52fe4556c3a368484e0543ab", "cast_id": 12, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 4}, {"name": "Michael Keaton", "character": "Captain Gene Mauch", "id": 2232, "credit_id": "52fe4556c3a368484e0543af", "cast_id": 13, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 5}, {"name": "Brett Gelman", "character": "Hal", "id": 224197, "credit_id": "52fe4556c3a368484e0543b3", "cast_id": 14, "profile_path": "/ox8Tetm16FgBmwR3U2eYZGxRomN.jpg", "order": 6}, {"name": "Ray Stevenson", "character": "Roger Wesley", "id": 56614, "credit_id": "52fe4556c3a368484e0543b7", "cast_id": 15, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 7}, {"name": "Roy T. Anderson", "character": "Rasta", "id": 932748, "credit_id": "52fe4556c3a368484e0543bb", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Larnell Stovall", "character": "Rasta", "id": 84459, "credit_id": "52fe4556c3a368484e0543bf", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Steve Coogan", "character": "David Ershon", "id": 4581, "credit_id": "52fe4556c3a368484e0543c3", "cast_id": 18, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 10}, {"name": "Rob Riggle", "character": "Martin", "id": 71403, "credit_id": "52fe4556c3a368484e0543c7", "cast_id": 19, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 11}, {"name": "Damon Wayans Jr.", "character": "Fosse", "id": 87822, "credit_id": "52fe4556c3a368484e0543cb", "cast_id": 20, "profile_path": "/wOYJdq19v0rnUTY9vC0BZJowQiC.jpg", "order": 12}, {"name": "Bobby Cannavale", "character": "Jimmy", "id": 21127, "credit_id": "52fe4556c3a368484e0543cf", "cast_id": 21, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 13}, {"name": "Brooke Shields", "character": "Brooke Shields", "id": 15110, "credit_id": "52fe4556c3a368484e0543d3", "cast_id": 22, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 14}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a368484e05438b", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 5.9, "runtime": 107}, "27582": {"poster_path": "/7S5ImFBwi2BTxL5mQbWgfNbbbxa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51070807, "overview": "Arthur Bishop (Statham) is a 'mechanic' - an elite assassin with a strict code and unique talent for cleanly eliminating targets. It's a job that requires professional perfection and total detachment, and Bishop is the best in the business. But when he is ordered to take out his mentor and close friend Harry (Sutherland), Bishop is anything but detached.", "video": false, "id": 27582, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Mechanic", "tagline": "Someone has to fix the problems.", "vote_count": 365, "homepage": "http://www.themechanicmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zYSLOsUYlGAM5bN7LX3E8rICIVh.jpg", "id": 280504, "name": "The Mechanic Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472399", "adult": false, "backdrop_path": "/fLMv873bBAvrCtzeAbRVjb4Mi9Y.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "CBS Films", "id": 5490}, {"name": "Chartoff-Winkler Productions", "id": 12252}, {"name": "Scared Productions", "id": 22035}], "release_date": "2011-01-28", "popularity": 0.96919766541127, "original_title": "The Mechanic", "budget": 40000000, "cast": [{"name": "Jason Statham", "character": "Arthur Bishop", "id": 976, "credit_id": "52fe4556c3a368484e0543fb", "cast_id": 3, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Ben Foster", "character": "Steve Mckenna", "id": 11107, "credit_id": "52fe4556c3a368484e0543ff", "cast_id": 4, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Harry Mckenna", "id": 55636, "credit_id": "52fe4556c3a368484e054403", "cast_id": 5, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "Mini Anden", "character": "Sara", "id": 142953, "credit_id": "52fe4556c3a368484e054407", "cast_id": 6, "profile_path": "/m92JfMnAl6KC5d0ho3r1lFpABQJ.jpg", "order": 3}, {"name": "Tony Goldwyn", "character": "Dean Sanderson", "id": 3417, "credit_id": "52fe4556c3a368484e05440b", "cast_id": 7, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 4}, {"name": "Christa Campbell", "character": "Kelly", "id": 85178, "credit_id": "52fe4556c3a368484e05440f", "cast_id": 8, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 5}, {"name": "Katarzyna Wolejnio", "character": "Maria", "id": 90113, "credit_id": "52fe4556c3a368484e054413", "cast_id": 9, "profile_path": "/fvPALtfjqN7FbCdpbm4IbrhoADw.jpg", "order": 6}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe4556c3a368484e0543f1", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 6.3, "runtime": 93}, "11199": {"poster_path": "/auKcnTuYtB7v1t4yLC4y29ZwyTq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Restless and ready for adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.", "video": false, "id": 11199, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Wild Hogs", "tagline": "A lot can happen on the road to nowhere.", "vote_count": 159, "homepage": "http://video.movies.go.com/wildhogs/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0486946", "adult": false, "backdrop_path": "/pyllS8OfE5ld539TToT2qSC6iw7.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Wild Hogs Productions", "id": 6354}], "release_date": "2007-03-02", "popularity": 0.898332245333013, "original_title": "Wild Hogs", "budget": 0, "cast": [{"name": "Tim Allen", "character": "Doug Madsen", "id": 12898, "credit_id": "52fe440e9251416c7502766b", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "John Travolta", "character": "Woody Stevens", "id": 8891, "credit_id": "52fe440e9251416c7502766f", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Martin Lawrence", "character": "Bobby Davis", "id": 78029, "credit_id": "52fe440e9251416c75027673", "cast_id": 3, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 2}, {"name": "William H. Macy", "character": "Dudley Frank", "id": 3905, "credit_id": "52fe440e9251416c75027677", "cast_id": 4, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 3}, {"name": "Ray Liotta", "character": "Jack", "id": 11477, "credit_id": "52fe440e9251416c7502767b", "cast_id": 5, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 4}, {"name": "Marisa Tomei", "character": "Maggie", "id": 3141, "credit_id": "52fe440e9251416c7502767f", "cast_id": 6, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 5}, {"name": "John C. McGinley", "character": "Highway Patrolman", "id": 11885, "credit_id": "52fe440e9251416c750276c5", "cast_id": 18, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 6}, {"name": "M.C. Gainey", "character": "Murdock", "id": 22132, "credit_id": "53b46235c3a3682edb009714", "cast_id": 19, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 7}, {"name": "Jill Hennessy", "character": "Kelly Madsen", "id": 50877, "credit_id": "53b46241c3a3682edb009719", "cast_id": 20, "profile_path": "/maXA4XgLsHLFy2ww3UvI4jUK27z.jpg", "order": 8}, {"name": "Dominic Janes", "character": "Billy Madsen", "id": 1223903, "credit_id": "53b4624cc3a3682eea0097b0", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Tichina Arnold", "character": "Karen Davis", "id": 83600, "credit_id": "53b46258c3a3682edf00938c", "cast_id": 22, "profile_path": "/A9L6I9tzUg0FSl626JMtMuDodZc.jpg", "order": 10}], "directors": [{"name": "Walt Becker", "department": "Directing", "job": "Director", "credit_id": "52fe440e9251416c75027685", "profile_path": "/ioshEghgcfUsaDN2rYfEJDPBUqZ.jpg", "id": 68573}], "vote_average": 5.5, "runtime": 100}, "11202": {"poster_path": "/6pyN7udgYaGr6uNIP2MuLUcqmPh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89800000, "overview": "\"Patton\" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.", "video": false, "id": 11202, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Patton", "tagline": "The Rebel Warrior", "vote_count": 127, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066206", "adult": false, "backdrop_path": "/iCLuDtSSU0cFLH1oTM1828STIOB.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1970-01-25", "popularity": 0.798865275114198, "original_title": "Patton", "budget": 12000000, "cast": [{"name": "George C. Scott", "character": "Gen. George S. Patton Jr.", "id": 862, "credit_id": "52fe440e9251416c750277fd", "cast_id": 1, "profile_path": "/mWXDFKbEgb7ID845I1LNeaeoXT4.jpg", "order": 0}, {"name": "Karl Malden", "character": "Gen. Omar N. Bradley", "id": 9857, "credit_id": "52fe440e9251416c75027801", "cast_id": 2, "profile_path": "/ekqh6qVUFbYkIPFu2ZyTEcHi5gI.jpg", "order": 1}, {"name": "Stephen Young", "character": "Capt. Chester B. Hansen", "id": 40551, "credit_id": "52fe440e9251416c75027805", "cast_id": 3, "profile_path": "/c5GWhpWEnLCTJQLEQR1P5n81fsp.jpg", "order": 2}, {"name": "Michael Strong", "character": "Brig. Gen. Hobart Carver", "id": 15650, "credit_id": "52fe440e9251416c75027809", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Carey Loftin", "character": "General Bradley's driver", "id": 12431, "credit_id": "52fe440f9251416c75027873", "cast_id": 22, "profile_path": null, "order": 4}, {"name": "Albert Dumortier", "character": "Moroccan minister", "id": 1089965, "credit_id": "52fe440f9251416c75027877", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Frank Latimore", "character": "Lieutenant Colonel Henry Davenport", "id": 13733, "credit_id": "52fe440f9251416c7502787b", "cast_id": 24, "profile_path": "/dZiU5PnoSQIzgICKpKA6wft6xOU.jpg", "order": 6}, {"name": "Morgan Paull", "character": "Captain Richard N. Jenson", "id": 58495, "credit_id": "52fe440f9251416c7502787f", "cast_id": 25, "profile_path": "/k8EaOIcEWYrWknWyR4zfQbansPN.jpg", "order": 7}, {"name": "Karl Michael Vogler", "character": "Field Marshal Erwin Rommel", "id": 32021, "credit_id": "52fe440f9251416c75027883", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Bill Hickman", "character": "General Patton's driver", "id": 15186, "credit_id": "52fe440f9251416c75027887", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Pat Zurica", "character": "First Lieutenant Alexander Stiller", "id": 198025, "credit_id": "52fe440f9251416c7502788b", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "James Edwards", "character": "Sergeant William George Meeks", "id": 3342, "credit_id": "52fe440f9251416c7502788f", "cast_id": 29, "profile_path": "/zykEIcf2G92rh8Znhk5JPSamSiD.jpg", "order": 11}, {"name": "Lawrence Dobkin", "character": "Colonel Gaston Bell", "id": 15625, "credit_id": "52fe440f9251416c75027893", "cast_id": 30, "profile_path": "/mI7q9C7Z0tagylB9ew4C6mmKwFp.jpg", "order": 12}, {"name": "David Bauer", "character": "Lieutenant General Harry Buford", "id": 93949, "credit_id": "52fe440f9251416c75027897", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "John Barrie", "character": "Air Vice-Marshal Sir Arthur Coningham", "id": 558445, "credit_id": "52fe440f9251416c7502789b", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Richard M\u00fcnch", "character": "Colonel General Alfred Jodl", "id": 18964, "credit_id": "52fe440f9251416c7502789f", "cast_id": 33, "profile_path": "/r1ffCIqQZYy8uQIYhKb8BsbOKLp.jpg", "order": 15}, {"name": "Siegfried Rauch", "character": "Captain Oskar Steiger", "id": 35826, "credit_id": "52fe440f9251416c750278a3", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Michael Bates", "character": "Field Marshal Sir Bernard Law Montgomery", "id": 2267, "credit_id": "52fe440f9251416c750278a7", "cast_id": 35, "profile_path": "/ftE2KiyBW8inxUWhJqnv4iPhGik.jpg", "order": 17}, {"name": "Paul Stevens", "character": "Lieutenant Colonel Charles R. Codman", "id": 160494, "credit_id": "52fe440f9251416c750278ab", "cast_id": 36, "profile_path": null, "order": 18}, {"name": "Gerald Flood", "character": "Air Chief Marshal Sir Arthur Tedder", "id": 200911, "credit_id": "52fe440f9251416c750278af", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Jack Gwillim", "character": "General Sir Harold Alexander", "id": 13331, "credit_id": "52fe440f9251416c750278b3", "cast_id": 38, "profile_path": "/6NOuBVu9fSWObuONEfuCtWfViBJ.jpg", "order": 20}, {"name": "Edward Binns", "character": "Major General Walter Bedell Smith", "id": 2651, "credit_id": "52fe440f9251416c750278b7", "cast_id": 39, "profile_path": "/uTPEszrP1ZgDVo1nkRIYwAeYHnO.jpg", "order": 21}, {"name": "Peter Barkworth", "character": "Colonel John Welkin", "id": 183207, "credit_id": "52fe440f9251416c750278bb", "cast_id": 40, "profile_path": null, "order": 22}, {"name": "Lionel Murton", "character": "Third Army chaplain", "id": 141494, "credit_id": "52fe440f9251416c750278bf", "cast_id": 41, "profile_path": null, "order": 23}, {"name": "David Healy", "character": "clergyman", "id": 120676, "credit_id": "52fe440f9251416c750278c3", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Sandy McPeak", "character": "correspondent", "id": 106726, "credit_id": "52fe440f9251416c750278c7", "cast_id": 43, "profile_path": null, "order": 25}, {"name": "Douglas Wilmer", "character": "Major General Francis de Guingand", "id": 89065, "credit_id": "52fe440f9251416c750278cb", "cast_id": 44, "profile_path": "/3aUnwOD2fBGMBcaE9Hj4EqtxKWO.jpg", "order": 26}, {"name": "John Doucette", "character": "Major General Lucian K. Truscott", "id": 34130, "credit_id": "52fe440f9251416c750278cf", "cast_id": 45, "profile_path": "/2J6UfUe9nNkd6wjtIF5Yp3ilnZ8.jpg", "order": 27}, {"name": "Tim Considine", "character": "the soldier who gets slapped", "id": 163280, "credit_id": "52fe440f9251416c750278d3", "cast_id": 46, "profile_path": "/ubHluSs6vOkiOHdpXTVlNKQGLYG.jpg", "order": 28}, {"name": "Abraxas Aaran", "character": "Willy", "id": 1089966, "credit_id": "52fe440f9251416c750278d7", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Clint Ritchie", "character": "tank captain", "id": 87473, "credit_id": "52fe440f9251416c750278db", "cast_id": 48, "profile_path": "/8lEiJ3sHOznsp8cArd9IdxTBRBz.jpg", "order": 30}, {"name": "Alan MacNaughton", "character": "British briefing officer", "id": 1047752, "credit_id": "52fe440f9251416c750278df", "cast_id": 49, "profile_path": "/uN76tF9LMaWk7OtvhcFfAJrdCJa.jpg", "order": 31}, {"name": "Florencio Amarilla", "character": "soldier", "id": 1022040, "credit_id": "52fe440f9251416c750278e3", "cast_id": 50, "profile_path": null, "order": 32}, {"name": "Brandon Brady", "character": "Lieutenant Young", "id": 153085, "credit_id": "52fe440f9251416c750278e7", "cast_id": 51, "profile_path": null, "order": 33}, {"name": "Charles Dennis", "character": "soldier", "id": 43800, "credit_id": "52fe440f9251416c750278eb", "cast_id": 52, "profile_path": "/nbg2PzCmL08GdlV5BiNxmtunHok.jpg", "order": 34}, {"name": "Paul Frees", "character": "voice", "id": 16417, "credit_id": "52fe440f9251416c750278ef", "cast_id": 53, "profile_path": "/ey4xNbw7AfFW7brHnb3C9ADL34Q.jpg", "order": 35}, {"name": "Dolores Judson", "character": "Knustford Welcome Club Dignitary", "id": 1089967, "credit_id": "52fe440f9251416c750278f3", "cast_id": 54, "profile_path": null, "order": 36}, {"name": "Hellmut Lange", "character": "Major Dorian von Haarenwege", "id": 32526, "credit_id": "52fe440f9251416c750278f7", "cast_id": 55, "profile_path": null, "order": 37}, {"name": "Bruce Rhodewalt", "character": "cynical wounded soldier", "id": 1089968, "credit_id": "52fe440f9251416c750278fb", "cast_id": 56, "profile_path": null, "order": 38}, {"name": "Lowell Thomas", "character": "himself", "id": 589823, "credit_id": "52fe440f9251416c750278ff", "cast_id": 57, "profile_path": null, "order": 39}, {"name": "Harry Towb", "character": "G.I. cook", "id": 116645, "credit_id": "52fe440f9251416c75027903", "cast_id": 58, "profile_path": null, "order": 40}], "directors": [{"name": "Franklin J. Schaffner", "department": "Directing", "job": "Director", "credit_id": "52fe440e9251416c7502780f", "profile_path": "/dqrDUANz8sf0BXTBh0gr1heUr5U.jpg", "id": 13265}], "vote_average": 7.1, "runtime": 172}, "248774": {"poster_path": "/sEhkasIDghckmUGnhmxJ6RYc3T8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.", "video": false, "id": 248774, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Obvious Child", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2910274", "adult": false, "backdrop_path": "/cgrQ6Vp9tuNVtZAKwgEiTyhAqNt.jpg", "production_companies": [{"name": "Votiv Films", "id": 34455}, {"name": "Rooks Nest Entertainment", "id": 34456}, {"name": "Sundial Pictures", "id": 10479}], "release_date": "2014-06-06", "popularity": 0.418731068567954, "original_title": "Obvious Child", "budget": 0, "cast": [{"name": "Jenny Slate", "character": "Donna Stern", "id": 213001, "credit_id": "52fe4f38c3a36847f82c6577", "cast_id": 3, "profile_path": "/bKyUz4N566bXBEhj1TkFfMiNFyT.jpg", "order": 0}, {"name": "Jake Lacy", "character": "Max", "id": 1230856, "credit_id": "52fe4f38c3a36847f82c657b", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Gaby Hoffmann", "character": "Nellie", "id": 12930, "credit_id": "53b75aedc3a3685ec1003290", "cast_id": 13, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 2}, {"name": "Polly Draper", "character": "Nancy Stern", "id": 114470, "credit_id": "52fe4f38c3a36847f82c6583", "cast_id": 6, "profile_path": "/1zViE8Kn2i6Idg2uOMJOnptRwnj.jpg", "order": 3}, {"name": "Richard Kind", "character": "Jacob Stern", "id": 21125, "credit_id": "52fe4f38c3a36847f82c6587", "cast_id": 7, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 4}, {"name": "David Cross", "character": "Sam", "id": 212, "credit_id": "52fe4f38c3a36847f82c658b", "cast_id": 8, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 5}, {"name": "Gabe Liedman", "character": "Joey", "id": 1304330, "credit_id": "53307844c3a3685fbb006e25", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Cindy Cheung", "character": "Dr. Bernard", "id": 58619, "credit_id": "53307851c3a3685fd3006fcd", "cast_id": 10, "profile_path": "/7BMISfQFjHTBO1yFPYNISHpg0vG.jpg", "order": 7}, {"name": "Paul Briganti", "character": "Ryan", "id": 1304331, "credit_id": "53307861c3a3685fbb006e2b", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Stephen Singer", "character": "Gene", "id": 25214, "credit_id": "5330786ec3a3685fc3007045", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Gillian Robespierre", "department": "Directing", "job": "Director", "credit_id": "52fe4f38c3a36847f82c656d", "profile_path": null, "id": 1284099}], "vote_average": 6.7, "runtime": 83}, "109513": {"poster_path": "/plAguR4bce1vNI9e588geNQelsH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16377000, "overview": "Former getaway driver Charlie Bronson jeopardizes his Witness Protection Plan identity in order to help his girlfriend get to Los Angeles. The feds and Charlie's former gang chase them on the road.", "video": false, "id": 109513, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Hit and Run", "tagline": "A Comedy That Never Takes Its Foot Off The Gas", "vote_count": 105, "homepage": "http://www.hitandrunmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt2097307", "adult": false, "backdrop_path": "/wxx7fHnNl7IpN9oJTH07NzIapW3.jpg", "production_companies": [{"name": "Primate Pictures", "id": 10424}, {"name": "Kim and Jim Productions", "id": 10425}, {"name": "Panay Films", "id": 10426}, {"name": "Exclusive Media Group", "id": 11448}], "release_date": "2012-08-22", "popularity": 0.627797575412155, "original_title": "Hit and Run", "budget": 2000000, "cast": [{"name": "Kristen Bell", "character": "Annie Bean", "id": 40462, "credit_id": "52fe4abcc3a36847f81decdf", "cast_id": 11, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Dax Shepard", "character": "Charles Bronson/Yul Perrkins", "id": 51298, "credit_id": "52fe4abcc3a36847f81dece7", "cast_id": 13, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 1}, {"name": "Tom Arnold", "character": "Randy Anderson", "id": 74036, "credit_id": "52fe4abcc3a36847f81decfb", "cast_id": 18, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 2}, {"name": "Kristin Chenoweth", "character": "Debbie Kreeger", "id": 52775, "credit_id": "52fe4abcc3a36847f81dece3", "cast_id": 12, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 3}, {"name": "Michael Rosenbaum", "character": "Gil Rathbinn", "id": 19975, "credit_id": "52fe4abcc3a36847f81deceb", "cast_id": 14, "profile_path": "/kfitDCFN9JJxZF6IE0XzgdgDtXr.jpg", "order": 4}, {"name": "Jess Rowland", "character": "Terry Rathbinn", "id": 1177774, "credit_id": "52fe4abcc3a36847f81ded0d", "cast_id": 23, "profile_path": "/nRJaouK8hlZXvzN8xTjQgVHXsdD.jpg", "order": 5}, {"name": "Carly Hatter", "character": "Angella Roth", "id": 1289567, "credit_id": "52fe4abcc3a36847f81ded11", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "Bradley Cooper", "character": "Alex Dmitri", "id": 51329, "credit_id": "52fe4abcc3a36847f81decdb", "cast_id": 10, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 8}, {"name": "Joy Bryant", "character": "Neve Tatum", "id": 52847, "credit_id": "52fe4abcc3a36847f81decff", "cast_id": 19, "profile_path": "/yAGwmf3OAE2Cd7keUpVCACfhm5A.jpg", "order": 9}, {"name": "Kal Bennett", "character": "Cashier Mary Ann", "id": 1047653, "credit_id": "52fe4abcc3a36847f81ded19", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "John Duff", "character": "Body Builder Catalyst", "id": 159482, "credit_id": "52fe4abcc3a36847f81ded1d", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "David Koechner", "character": "Sanders", "id": 28638, "credit_id": "52fe4abcc3a36847f81decf3", "cast_id": 16, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 12}, {"name": "Ryan Hansen", "character": "Allen", "id": 78433, "credit_id": "52fe4abcc3a36847f81decf7", "cast_id": 17, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 13}, {"name": "Beau Bridges", "character": "Clint Perrkins", "id": 2222, "credit_id": "52fe4abcc3a36847f81decef", "cast_id": 15, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 14}, {"name": "Jason Bateman", "character": "Keith Yert", "id": 23532, "credit_id": "52fe4abcc3a36847f81ded09", "cast_id": 22, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 15}, {"name": "Sean Hayes", "character": "Sandy Osterman", "id": 52601, "credit_id": "52fe4abcc3a36847f81ded25", "cast_id": 29, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 17}], "directors": [{"name": "David Palmer", "department": "Directing", "job": "Director", "credit_id": "52fe4abcc3a36847f81deca7", "profile_path": null, "id": 140372}, {"name": "Dax Shepard", "department": "Directing", "job": "Director", "credit_id": "52fe4abcc3a36847f81decad", "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "id": 51298}], "vote_average": 5.7, "runtime": 100}, "3021": {"poster_path": "/4onX7UF2MPUgIpkUerLC3dpVfNZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94679598, "overview": "A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.", "video": false, "id": 3021, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "1408", "tagline": "The only demons in room 1408 are those within you.", "vote_count": 387, "homepage": "http://www.1408-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450385", "adult": false, "backdrop_path": "/om5m4YIDzHC5nEQkyLUUxIwcXZa.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2007-12-06", "popularity": 1.06656879285027, "original_title": "1408", "budget": 25000000, "cast": [{"name": "John Cusack", "character": "Mike Enslin", "id": 3036, "credit_id": "52fe437dc3a36847f8057f55", "cast_id": 19, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Gerald Olin", "id": 2231, "credit_id": "52fe437dc3a36847f8057f59", "cast_id": 20, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "Tommy Glinge", "id": 1072642, "credit_id": "553762e89251411256001e3c", "cast_id": 31, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Mary McCormack", "character": "Lilly Enslin", "id": 1980, "credit_id": "52fe437dc3a36847f8057f5d", "cast_id": 21, "profile_path": "/vMS1VGv0Cd2PMo2cuceNBPsd1GH.jpg", "order": 3}, {"name": "Jasmine Jessica Anthony", "character": "Katie", "id": 29612, "credit_id": "52fe437dc3a36847f8057f61", "cast_id": 22, "profile_path": "/obb2Jy4J6GoIEoTHqh9eYGy7JvK.jpg", "order": 4}, {"name": "Tony Shalhoub", "character": "Sam Farrell", "id": 4252, "credit_id": "52fe437dc3a36847f8057f65", "cast_id": 23, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 5}, {"name": "Alexandra Silber", "character": "junge Frau", "id": 29613, "credit_id": "52fe437dc3a36847f8057f69", "cast_id": 24, "profile_path": "/s6zKxJmFm4dkgm4bERVUdYjKy0e.jpg", "order": 6}, {"name": "Emily Harvey", "character": "Sekret\u00e4rin", "id": 29614, "credit_id": "52fe437dc3a36847f8057f6d", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Noah Lee Margetts", "character": "Noah", "id": 29615, "credit_id": "52fe437dc3a36847f8057f71", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "William Armstrong", "character": "Clay", "id": 29616, "credit_id": "52fe437dc3a36847f8057f75", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Paul Birchard", "character": "Mr. Innkeeper", "id": 29617, "credit_id": "52fe437dc3a36847f8057f79", "cast_id": 28, "profile_path": "/iDEyo8cSZAVy9HsmZMv9mPs5tx4.jpg", "order": 10}, {"name": "Margot Leicester", "character": "Mrs. Innkeeper", "id": 192933, "credit_id": "52fe437dc3a36847f8057f83", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe437dc3a36847f8057ef1", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 6.2, "runtime": 104}, "35791": {"poster_path": "/wEgqGu01JtIyxXhYrr4hsgds1uZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 268918090, "overview": "In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead - and Alice and her comrades are about to step into a deadly trap.", "video": false, "id": 35791, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Afterlife", "tagline": "She's back...And she's bringing a few of her friends.", "vote_count": 618, "homepage": "http://www.sonypictures.com/movies/residentevilafterlife/site/", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1220634", "adult": false, "backdrop_path": "/o3P90r3owOlD86e27aC801rk4QI.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Davis-Films", "id": 342}, {"name": "Impact Pictures", "id": 248}], "release_date": "2010-09-10", "popularity": 0.109325960358318, "original_title": "Resident Evil: Afterlife", "budget": 60000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe45b59251416c9103bae9", "cast_id": 11, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Wentworth Miller", "character": "Chris Redfield", "id": 3972, "credit_id": "52fe45b59251416c9103baed", "cast_id": 12, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 1}, {"name": "Ali Larter", "character": "Claire Redfield", "id": 17303, "credit_id": "52fe45b59251416c9103baf1", "cast_id": 13, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 2}, {"name": "Kim Coates", "character": "Bennett", "id": 8335, "credit_id": "52fe45b59251416c9103baf5", "cast_id": 14, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 3}, {"name": "Kacey Barnfield", "character": "Crystal", "id": 114760, "credit_id": "52fe45b59251416c9103baf9", "cast_id": 15, "profile_path": "/3BboSrXM1F3Mgr8dyvV7nYD0vb6.jpg", "order": 4}, {"name": "Shawn Roberts", "character": "Albert Wesker", "id": 81097, "credit_id": "52fe45b59251416c9103bafd", "cast_id": 16, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 5}, {"name": "Sergio Peris-Mencheta", "character": "Angel", "id": 78994, "credit_id": "52fe45b59251416c9103bb01", "cast_id": 18, "profile_path": "/gR5xjxcaXWI7N8i34HqHrB7JiIL.jpg", "order": 6}, {"name": "Boris Kodjoe", "character": "Luther West", "id": 80758, "credit_id": "52fe45b59251416c9103bb0b", "cast_id": 20, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 7}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "52fe45b59251416c9103bb0f", "cast_id": 21, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 8}, {"name": "Spencer Locke", "character": "K-Mart", "id": 57192, "credit_id": "52fe45b59251416c9103bb1d", "cast_id": 25, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 11}, {"name": "Norman Yeung", "character": "Kim Yong", "id": 970017, "credit_id": "534fab94c3a3681cc3000b7c", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Ray Olubowale", "character": "Axeman", "id": 969189, "credit_id": "534fababc3a3681ccc000bc6", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Christopher Kano", "character": "Sniper", "id": 1310668, "credit_id": "534fabbbc3a3681cdd000b24", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Tatsuya Goke", "character": "Sniper", "id": 1310669, "credit_id": "534fabc6c3a3681cc3000b87", "cast_id": 36, "profile_path": null, "order": 15}, {"name": "Fulvio Cecere", "character": "Wendell", "id": 65808, "credit_id": "5427aed2c3a3680b1b001a31", "cast_id": 40, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 16}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c9103babb", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.8, "runtime": 97}, "11216": {"poster_path": "/hYzCLju3W74nLhhRXfPkwDi1Tun.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 11990401, "overview": "A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.", "video": false, "id": 11216, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Cinema Paradiso", "tagline": "A celebration of youth, friendship, and the everlasting magic of the movies.", "vote_count": 237, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095765", "adult": false, "backdrop_path": "/tVi83ttAeyMJinYpy6xfgJSpzvP.jpg", "production_companies": [{"name": "Cristaldifilm S.r.l.", "id": 48}, {"name": "Les Films Ariane", "id": 7110}, {"name": "Rai Tre Radiotelevisione Italiana", "id": 10209}], "release_date": "1988-11-17", "popularity": 0.697602967109972, "original_title": "Nuovo cinema Paradiso", "budget": 0, "cast": [{"name": "Philippe Noiret", "character": "Alfredo", "id": 24366, "credit_id": "52fe44129251416c75027f25", "cast_id": 8, "profile_path": "/cxqfBaHzXOOMVcxHYfAewhG2Cjc.jpg", "order": 0}, {"name": "Jacques Perrin", "character": "Salvatore 'Toto' Di Vita - Adult", "id": 20030, "credit_id": "52fe44129251416c75027f29", "cast_id": 9, "profile_path": "/dC3hgCkcTvsrw6fKxxTegJDQRzp.jpg", "order": 1}, {"name": "Marco Leonardi", "character": "Salvatore 'Toto' Di Vita - Teenager", "id": 27643, "credit_id": "52fe44129251416c75027f2d", "cast_id": 10, "profile_path": "/vyBWitXBSfFJpJRff14GrIZimta.jpg", "order": 2}, {"name": "Salvatore Cascio", "character": "Salvatore 'Toto' Di Vita - Child", "id": 68635, "credit_id": "52fe44129251416c75027f31", "cast_id": 11, "profile_path": "/zZ6vZ8gTp1GjCKzxZTSwP55acHL.jpg", "order": 3}, {"name": "Agnese Nano", "character": "Elena Mendola", "id": 120152, "credit_id": "52fe44129251416c75027f35", "cast_id": 12, "profile_path": "/AoBa7v5dZeNduRyBfVoU5umyB1L.jpg", "order": 4}, {"name": "Antonella Attili", "character": "Maria Di Vita - Younger", "id": 70083, "credit_id": "52fe44129251416c75027f39", "cast_id": 13, "profile_path": "/cbnn6Nai1kVPQ1jamIp3BQByHxt.jpg", "order": 5}, {"name": "Enzo Cannavale", "character": "Spaccafico", "id": 52657, "credit_id": "52fe44129251416c75027f3d", "cast_id": 14, "profile_path": "/hkJ732FpjvADraxMI2UaHO5x8qe.jpg", "order": 6}, {"name": "Isa Danieli", "character": "Anna", "id": 1014911, "credit_id": "52fe44129251416c75027f41", "cast_id": 15, "profile_path": "/yM3HYSBkR1jUumd8v3TRlnAAJBP.jpg", "order": 7}, {"name": "Leo Gullotta", "character": "Usher", "id": 119992, "credit_id": "52fe44129251416c75027f45", "cast_id": 16, "profile_path": "/etsfULUJFtVXCRc8eSuO8BRKHLw.jpg", "order": 8}, {"name": "Pupella Maggio", "character": "Maria Di Vita - Older", "id": 25780, "credit_id": "52fe44129251416c75027f49", "cast_id": 17, "profile_path": "/PGM231rayPxOcQyg7g2NQtGlZd.jpg", "order": 9}, {"name": "Leopoldo Trieste", "character": "Father Adelfio", "id": 14151, "credit_id": "52fe44129251416c75027f4d", "cast_id": 18, "profile_path": "/yPdmZwmCW4cvmENFKMBj63NCFCq.jpg", "order": 10}, {"name": "Tano Cimarosa", "character": "Blacksmith", "id": 103627, "credit_id": "52fe44129251416c75027f51", "cast_id": 19, "profile_path": "/x4A4eKik5JxvHWjj9828MgpkzGM.jpg", "order": 11}, {"name": "Nicola Di Pinto", "character": "Village Idiot", "id": 39618, "credit_id": "52fe44129251416c75027f55", "cast_id": 20, "profile_path": "/fqix0TJ4Fd8Ab2O8ziqr0UuNAkY.jpg", "order": 12}, {"name": "Roberta Lena", "character": "Lia", "id": 1077256, "credit_id": "52fe44129251416c75027f59", "cast_id": 21, "profile_path": "/mc5BfH64zSJo5fgXp2s2oTVQRtL.jpg", "order": 13}, {"name": "Nino Terzo", "character": "Peppino's Father", "id": 134215, "credit_id": "52fe44129251416c75027f5d", "cast_id": 22, "profile_path": "/vDu5NDG0q4EIcgEAh4umXf8EEBT.jpg", "order": 14}, {"name": "Brigitte Fossey", "character": "Elena Mendola - Adult", "id": 1959, "credit_id": "52fe44139251416c75027f61", "cast_id": 23, "profile_path": "/i711oGYxYv82yV3sOSbhitS4MPP.jpg", "order": 15}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe44129251416c75027efd", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.6, "runtime": 124}, "76757": {"poster_path": "/jsqInq6iXrKkf9aDOVzpjViGeiG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96084036, "overview": "In a universe where human genetic material is the most precious commodity, an impoverished young Earth woman becomes the key to strategic maneuvers and internal strife within a powerful dynasty\u2026", "video": false, "id": 76757, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Jupiter Ascending", "tagline": "Expand your universe.", "vote_count": 344, "homepage": "http://www.jupiterascending.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1617661", "adult": false, "backdrop_path": "/4liSXBZZdURI0c1Id1zLJo6Z3Gu.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2015-02-27", "popularity": 36.5179255768799, "original_title": "Jupiter Ascending", "budget": 176000003, "cast": [{"name": "Mila Kunis", "character": "Jupiter Jones", "id": 18973, "credit_id": "52fe494bc3a368484e12446b", "cast_id": 6, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Caine", "id": 38673, "credit_id": "52fe494bc3a368484e124467", "cast_id": 5, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Sean Bean", "character": "Stinger", "id": 48, "credit_id": "52fe494bc3a368484e12447d", "cast_id": 11, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 2}, {"name": "Eddie Redmayne", "character": "Balem", "id": 37632, "credit_id": "52fe494bc3a368484e12446f", "cast_id": 8, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 3}, {"name": "Douglas Booth", "character": "Titus", "id": 230680, "credit_id": "52fe494bc3a368484e124481", "cast_id": 12, "profile_path": "/3YMp0bU20VKCzJj6xTEO2u34VRE.jpg", "order": 4}, {"name": "Tuppence Middleton", "character": "Kalique Abrasax", "id": 89822, "credit_id": "52fe494bc3a368484e124473", "cast_id": 9, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 5}, {"name": "Nikki Amuka-Bird", "character": "Diomika Tsing", "id": 109319, "credit_id": "548072ce9251416e78002977", "cast_id": 31, "profile_path": null, "order": 6}, {"name": "Christina Cole", "character": "Gemma Chatterjee", "id": 47625, "credit_id": "5480721cc3a36829a30029f5", "cast_id": 20, "profile_path": "/mZ0CeSVd6ylHVPjsn9ugQvhvLdw.jpg", "order": 7}, {"name": "Nicholas A. Newman", "character": "Nesh", "id": 1360221, "credit_id": "548074899251416e7b0027c9", "cast_id": 63, "profile_path": null, "order": 8}, {"name": "Ramon Tikaram", "character": "Phylo Percadium", "id": 178622, "credit_id": "5535ba6a9251414716001945", "cast_id": 72, "profile_path": "/lsR2X7T6FJcNIkY651zQ46D0nAw.jpg", "order": 9}, {"name": "Ariyon Bakare", "character": "Greeghan", "id": 1238461, "credit_id": "5480738cc3a36829b50031c8", "cast_id": 45, "profile_path": null, "order": 10}, {"name": "Maria Doyle Kennedy", "character": "Aleksa", "id": 33394, "credit_id": "548072009251416e7e002aab", "cast_id": 19, "profile_path": "/t7wdC2MGTXEmvJ2LL42j6u6EIcG.jpg", "order": 11}, {"name": "Frog Stone", "character": "Aunt Nino", "id": 1394352, "credit_id": "54807462c3a368299f002131", "cast_id": 60, "profile_path": null, "order": 12}, {"name": "David Ajala", "character": "Ibis", "id": 971049, "credit_id": "548072ac9251416e78002972", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "DooNa Bae", "character": "Razo", "id": 21688, "credit_id": "52fe494bc3a368484e12448d", "cast_id": 15, "profile_path": "/hE9dmpQOIdgt1GGVoZObPZmVSPh.jpg", "order": 14}, {"name": "Gugu Mbatha-Raw", "character": "Famulus", "id": 1216606, "credit_id": "548071c3c3a36829b200318c", "cast_id": 18, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 15}, {"name": "Terry Gilliam", "character": "Seal and Signet Minister", "id": 280, "credit_id": "52fe494bc3a368484e124489", "cast_id": 14, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 17}, {"name": "Vanessa Kirby", "character": "Katharine Dunlevy", "id": 556356, "credit_id": "52fe494bc3a368484e124491", "cast_id": 16, "profile_path": "/ndrtjCvIXEuHerMBOz8sLyxgIlc.jpg", "order": 18}, {"name": "James D'Arcy", "character": "Maximilian Jones", "id": 19655, "credit_id": "52fe494bc3a368484e124495", "cast_id": 17, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 19}, {"name": "Simon Dutton", "character": "Tskalikin", "id": 1223149, "credit_id": "5480722ec3a36817a50027de", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Spencer Wilding", "character": "Falque", "id": 25451, "credit_id": "5480723d9251416e6c0025f5", "cast_id": 22, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 21}, {"name": "Demi Kazanis", "character": "Abrasax Alien", "id": 1394330, "credit_id": "5480724e9251416e7800295f", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Kick Gurry", "character": "Vladie", "id": 93111, "credit_id": "5480725b9251416e74002bab", "cast_id": 24, "profile_path": "/8XzZ6hw2ctF55O4Ia6WaH2Fnx0Y.jpg", "order": 23}, {"name": "Tim Pigott-Smith", "character": "Malidictes", "id": 11276, "credit_id": "54807269c3a36829b20031ad", "cast_id": 25, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 24}, {"name": "Charlotte Beaumont", "character": "Kiza", "id": 1084851, "credit_id": "5480727f9251414efa002a7b", "cast_id": 26, "profile_path": "/980H4W6kk4WSsbdoCvAD8R0zCJr.jpg", "order": 25}, {"name": "Neil Fingleton", "character": "Sargon / Greegan", "id": 1394331, "credit_id": "5480728ec3a36829b20031b1", "cast_id": 27, "profile_path": null, "order": 26}, {"name": "Jeremy Swift", "character": "Vasilliy Bolodnikov", "id": 3555, "credit_id": "548072a19251414efa002a85", "cast_id": 28, "profile_path": null, "order": 27}, {"name": "Katherine Cunningham", "character": "Debutante", "id": 1369057, "credit_id": "548072dfc3a36829a3002a15", "cast_id": 32, "profile_path": "/coMfYN2IeWQfVSOUUInf0FthR7K.jpg", "order": 28}, {"name": "Luke Neal", "character": "Royal guard", "id": 1052603, "credit_id": "548072eec3a36829ab002a3e", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Dilyana Bouklieva", "character": "Test subject", "id": 1394333, "credit_id": "548072fdc3a36829ab002a43", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Edward Hogg", "character": "Chicanery Night", "id": 114252, "credit_id": "54807307c3a36829ae002723", "cast_id": 35, "profile_path": "/cZ9Iqj7l0vmpHcJBA26JYKgqVLP.jpg", "order": 31}, {"name": "Jozef Aoki", "character": "Commonwealth", "id": 1388891, "credit_id": "5480732c9251416e7b002798", "cast_id": 38, "profile_path": "/yROpOphdySQ4jNYh0RWvdx9ASJE.jpg", "order": 32}, {"name": "Tamela D'Amico", "character": "Plinth", "id": 1368433, "credit_id": "54807333c3a36829ae00272a", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Kara Lily Hayworth", "character": "Titus Handmaiden", "id": 1347128, "credit_id": "54807342c3a36829ab002a53", "cast_id": 40, "profile_path": "/taKspozJe98ClQzITulHV0lhFKv.jpg", "order": 34}, {"name": "Tim Connolly", "character": "Trigger", "id": 1089920, "credit_id": "54807350c3a36829a3002a22", "cast_id": 41, "profile_path": "/vbOiWLjS6fpVkgx8b7Owsw8v8ml.jpg", "order": 35}, {"name": "Alexandra Fraser", "character": "Peacock Hybrid", "id": 1394335, "credit_id": "5480735c9251416e7800298b", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "Charlotte Rickard", "character": "Synth", "id": 1394337, "credit_id": "5480736ac3a36829a70029c0", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Hazel D'Jan", "character": "Shiro Miku", "id": 1394339, "credit_id": "548073789251414efa002ab6", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Ekaterina Zalitko", "character": "Cyber Beauty", "id": 1394341, "credit_id": "548073999251416e74002be1", "cast_id": 46, "profile_path": null, "order": 39}, {"name": "Edd Osmond", "character": "Droid", "id": 1278780, "credit_id": "548073a59251416e74002be7", "cast_id": 47, "profile_path": null, "order": 40}, {"name": "Symara A. Templeman", "character": "Aegis Crew", "id": 1394342, "credit_id": "548073b29251416e7800299b", "cast_id": 48, "profile_path": null, "order": 41}, {"name": "Jon Norris", "character": "Servant", "id": 1394343, "credit_id": "548073c09251414efa002acb", "cast_id": 49, "profile_path": null, "order": 42}, {"name": "Eric Ian", "character": "Zoe", "id": 1394344, "credit_id": "548073e4c3a36829b50031db", "cast_id": 50, "profile_path": null, "order": 43}, {"name": "Sharon Coleman", "character": "Pedistrian", "id": 1394345, "credit_id": "548073f19251416e7b0027b1", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Georgia Winters", "character": "Handmaiden", "id": 1394346, "credit_id": "548073fec3a368299f00211a", "cast_id": 52, "profile_path": null, "order": 45}, {"name": "Mark Norris", "character": "Servant", "id": 1394347, "credit_id": "548074099251414d21002723", "cast_id": 53, "profile_path": null, "order": 46}, {"name": "Derek Blankenship", "character": "Shawn", "id": 1383511, "credit_id": "548074159251414d21002728", "cast_id": 54, "profile_path": null, "order": 47}, {"name": "Elina Alminas", "character": "Robot Servant", "id": 1394348, "credit_id": "548074229251416e780029b1", "cast_id": 55, "profile_path": null, "order": 48}, {"name": "Andy Ahrens", "character": "Dante Rothemere", "id": 1394350, "credit_id": "5480742ec3a36829ae002743", "cast_id": 56, "profile_path": null, "order": 49}, {"name": "Jermaine Tindell", "character": "Lime Orism", "id": 1394351, "credit_id": "5480743b9251414efa002adc", "cast_id": 57, "profile_path": null, "order": 50}, {"name": "Karen Anderson", "character": "Droid", "id": 1218685, "credit_id": "54807449c3a368299f002129", "cast_id": 58, "profile_path": null, "order": 51}, {"name": "Vander McLeod", "character": "Kalique Gene Tech", "id": 1379944, "credit_id": "548074569251414efa002ae2", "cast_id": 59, "profile_path": null, "order": 52}, {"name": "Thomas Gaitsch", "character": "Walker Dunlevy", "id": 1394354, "credit_id": "548074729251416e7b0027c5", "cast_id": 61, "profile_path": null, "order": 53}, {"name": "Oleg Nasobin", "character": "Zeno", "id": 1394355, "credit_id": "5480747f9251416e8100298d", "cast_id": 62, "profile_path": null, "order": 54}, {"name": "Sarah Campbell", "character": "Gynaecological Nurse", "id": 1109370, "credit_id": "54807498c3a36829b50031fc", "cast_id": 64, "profile_path": null, "order": 55}, {"name": "Olia Klein", "character": "Russian Refugee", "id": 1394356, "credit_id": "548074a89251416e74002c10", "cast_id": 65, "profile_path": null, "order": 56}, {"name": "Kenny Knight", "character": "Test subject", "id": 1394357, "credit_id": "548074b4c3a36829a70029f3", "cast_id": 66, "profile_path": null, "order": 57}, {"name": "Rimmel Daniel", "character": "Royal Guard", "id": 1394358, "credit_id": "54807502c3a36829a3002a4c", "cast_id": 67, "profile_path": null, "order": 58}, {"name": "Nathan Geist", "character": "Chicago Pedestrian (uncredited)", "id": 1394359, "credit_id": "5480750f9251416e74002c21", "cast_id": 68, "profile_path": null, "order": 59}, {"name": "Raiden Integra", "character": "Chicago Pedestrian (uncredited)", "id": 1298706, "credit_id": "5480751ac3a36829ae00275c", "cast_id": 69, "profile_path": "/jNS1cQU4LpQb1B5XCWok5YE1EMz.jpg", "order": 60}, {"name": "Ryan Browning Johnson", "character": "Chicago Pedestrian (uncredited)", "id": 1394360, "credit_id": "54807527c3a36829ae002762", "cast_id": 70, "profile_path": null, "order": 61}, {"name": "Clem So", "character": "Kalique Coder (uncredited)", "id": 1394361, "credit_id": "54807535c3a36829ae002769", "cast_id": 71, "profile_path": null, "order": 62}], "directors": [{"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe494bc3a368484e124451", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}, {"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe494bc3a368484e124457", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}], "vote_average": 5.6, "runtime": 124}, "11224": {"poster_path": "/8zkulWy8yzjYEd8wGZp80wadtdD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62141149, "overview": "When Cinderella's cruel stepmother prevents her from attending the Royal Ball, she gets some unexpected help from the lovable mice Gus and Jaq, and from her Fairy Godmother.", "video": false, "id": 11224, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Cinderella", "tagline": "The greatest love story ever told.", "vote_count": 378, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jKPAvcvAgoEbay3umTtMhAT9plp.jpg", "poster_path": "/hV605L6y9B6f8wHakjFH8wE2Wdj.jpg", "id": 55419, "name": "Cinderella Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0042332", "adult": false, "backdrop_path": "/xSN1cpugrzi8DjpVxtHeRRlbB6Q.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1950-03-04", "popularity": 2.44466498297895, "original_title": "Cinderella", "budget": 2900000, "cast": [{"name": "Ilene Woods", "character": "Cinderella (voice)", "id": 68652, "credit_id": "52fe44149251416c750282ff", "cast_id": 1, "profile_path": "/gUYHqg3166nXSFM1WBtzFboRhUC.jpg", "order": 0}, {"name": "Eleanor Audley", "character": "Lady Tremaine (voice)", "id": 67289, "credit_id": "52fe44149251416c75028303", "cast_id": 2, "profile_path": "/eTU6naXyRKll0dLWxN8fp2Iiqdy.jpg", "order": 1}, {"name": "Verna Felton", "character": "Fairy Godmother (voice)", "id": 67290, "credit_id": "52fe44149251416c75028307", "cast_id": 3, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 2}, {"name": "Rhoda Williams", "character": "Drizella (voice)", "id": 179371, "credit_id": "52fe44149251416c7502836b", "cast_id": 21, "profile_path": null, "order": 3}, {"name": "James MacDonald", "character": "Bruno / Gus / Jaques (voice)", "id": 137461, "credit_id": "52fe44149251416c7502836f", "cast_id": 22, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 4}, {"name": "Luis van Rooten", "character": "King / Grand Duke (voice)", "id": 85361, "credit_id": "52fe44149251416c75028373", "cast_id": 23, "profile_path": "/q3p3zhtnjsbB4iChG0lsNdBIzRq.jpg", "order": 5}, {"name": "Don Barclay", "character": "Doorman (voice)", "id": 30144, "credit_id": "52fe44149251416c75028377", "cast_id": 24, "profile_path": "/eg54HOmaOCtvERwSHPpQWqR8uJZ.jpg", "order": 6}, {"name": "Lucille Bliss", "character": "Anastasia (voice)", "id": 148111, "credit_id": "52fe44149251416c7502837b", "cast_id": 25, "profile_path": "/uBmRWAZ2ZU6Ett5ti7Zb4AMnQxF.jpg", "order": 7}, {"name": "Marion Darlington", "character": "Birds (voice)", "id": 5463, "credit_id": "52fe44149251416c7502837f", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Mike Douglas", "character": "Prince Charming (singing voice) (uncredited)", "id": 334719, "credit_id": "52fe44149251416c75028383", "cast_id": 27, "profile_path": "/tf0aOc2kRnFeDScZvM8Y5RYDkwH.jpg", "order": 9}, {"name": "June Foray", "character": "Lucifer (voice) (uncredited)", "id": 15098, "credit_id": "52fe44149251416c75028387", "cast_id": 28, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 10}, {"name": "Betty Lou Gerson", "character": "Narrator (voice) (uncredited)", "id": 71779, "credit_id": "52fe44149251416c7502838b", "cast_id": 29, "profile_path": "/sqapDTfgfIy6j0KHJTjzPaPzMJ8.jpg", "order": 11}, {"name": "Earl Keen", "character": "Bruno (voice) (uncredited)", "id": 1102204, "credit_id": "52fe44149251416c7502838f", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Clint McCauley", "character": "Mouse (voice) (uncredited)", "id": 1068186, "credit_id": "52fe44149251416c75028393", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Marni Nixon", "character": "Main Title Soloist (voice) (uncredited)", "id": 187678, "credit_id": "544cc7b2c3a36872c7001c0b", "cast_id": 40, "profile_path": "/hPWlkETSB5V7OQkixZic3QDxmwq.jpg", "order": 14}, {"name": "William Phipps", "character": "Prince Charming (voice) (uncredited)", "id": 99754, "credit_id": "52fe44149251416c7502839b", "cast_id": 33, "profile_path": "/qtysYKmvkkUgRDSfY5Mb3nO0MXn.jpg", "order": 15}, {"name": "Thurl Ravenscroft", "character": "Additional Voices (voice) (uncredited)", "id": 150739, "credit_id": "52fe44149251416c7502839f", "cast_id": 34, "profile_path": "/6DSmCbrUeNP7lDJkhTkJ7I9hTeq.jpg", "order": 16}, {"name": "Helen Seibert", "character": "Mouse (voice) (uncredited)", "id": 1269614, "credit_id": "52fe44149251416c750283a3", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Jeffrey Stone", "character": "Additional Voices (voice) (uncredited)", "id": 150521, "credit_id": "52fe44149251416c750283a7", "cast_id": 36, "profile_path": "/so5ok7UKtS7kFjFjQsytpHCnAFa.jpg", "order": 18}, {"name": "June Sullivan", "character": "Mouse (voice) (uncredited)", "id": 1269615, "credit_id": "52fe44159251416c750283ab", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Lucille Williams", "character": "Perla - a Mouse (voice) (uncredited)", "id": 1269616, "credit_id": "52fe44159251416c750283af", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "John Woodbury", "character": "Additional Voices (voice) (uncredited)", "id": 1269617, "credit_id": "52fe44159251416c750283b3", "cast_id": 39, "profile_path": null, "order": 21}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe44149251416c7502830d", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe44149251416c75028313", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe44149251416c75028319", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}], "vote_average": 6.4, "runtime": 74}, "265177": {"poster_path": "/qAaRYr9Pnr0TaMa19497U3l7w69.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 3500000, "overview": "A widowed single mother, raising her violent son alone, finds new hope when a mysterious neighbor inserts herself into their household.", "video": false, "id": 265177, "genres": [{"id": 18, "name": "Drama"}], "title": "Mommy", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3612616", "adult": false, "backdrop_path": "/e1JukFYKIahB9L0IrLJpa03IarG.jpg", "production_companies": [{"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Metafilms", "id": 13839}, {"name": "SODEC", "id": 13311}, {"name": "Super \u00c9cran", "id": 11578}], "release_date": "2014-09-19", "popularity": 2.43362331555727, "original_title": "Mommy", "budget": 4900000, "cast": [{"name": "Anne Dorval", "character": "Diane (Die) Despr\u00e9s", "id": 86612, "credit_id": "534fc9cd0e0a267ea1000e09", "cast_id": 2, "profile_path": "/4iU4Cjkgq2ekIDK0IlOcDNcEdnC.jpg", "order": 1}, {"name": "Antoine-Olivier Pilon", "character": "Steve O'Connor Despr\u00e9s", "id": 1310706, "credit_id": "534fca000e0a267eab000d52", "cast_id": 3, "profile_path": "/ysTepsTcZyXXVpLUhKoZgxELpiJ.jpg", "order": 2}, {"name": "Suzanne Cl\u00e9ment", "character": "Kyla", "id": 142689, "credit_id": "534fca140e0a267ea8000df0", "cast_id": 4, "profile_path": "/gIJRi7RLfALUgFbxsSVLnodwt8T.jpg", "order": 3}, {"name": "Patrick Huard", "character": "Paul", "id": 142995, "credit_id": "54084210c3a368581b000ea2", "cast_id": 5, "profile_path": "/nsUGZgUSYWQCR5RBQaOgrECyCFA.jpg", "order": 4}, {"name": "Alexandre Goyette", "character": "Patrick", "id": 123185, "credit_id": "550576e49251416cb70003ca", "cast_id": 6, "profile_path": "/nG6hOmNgrtaMmQ2egKaWLuvXP8c.jpg", "order": 5}, {"name": "Mich\u00e8le Lituac", "character": "Directrice du centre", "id": 1440314, "credit_id": "5505770592514174b000291c", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Viviane Pascal", "character": "Marthe", "id": 1440315, "credit_id": "55057715c3a3686b75000324", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Natalie Hamel-Roy", "character": "Natache", "id": 227059, "credit_id": "55057724c3a368262e002854", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Xavier Dolan", "department": "Directing", "job": "Director", "credit_id": "534fc9810e0a267eb6000d87", "profile_path": "/rXWs3ojOKvdRj95PP8dXY9yVqDe.jpg", "id": 143593}], "vote_average": 8.4, "runtime": 138}, "3034": {"poster_path": "/3desYoraj5zngFxvSwmh3Jmbeib.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86273333, "overview": "A young neurosurgeon (Gene Wilder) inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback called Igor, a pretty lab assistant named Inga and the old housekeeper, Frau Blucher. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind...", "video": false, "id": 3034, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Young Frankenstein", "tagline": "The scariest comedy of all time!", "vote_count": 231, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072431", "adult": false, "backdrop_path": "/xniibygKalBzJg2yCugPwZCJe31.jpg", "production_companies": [{"name": "Crossbow Productions", "id": 1296}, {"name": "Gruskoff/Venture Films", "id": 1297}, {"name": "Jouer Limited", "id": 1298}], "release_date": "1974-12-15", "popularity": 0.882882845797331, "original_title": "Young Frankenstein", "budget": 2800000, "cast": [{"name": "Gene Wilder", "character": "Dr. Frederick Frankenstein", "id": 3460, "credit_id": "52fe437fc3a36847f805875b", "cast_id": 17, "profile_path": "/7xQjm2yrqAVy4yPjGemWseo1Ovi.jpg", "order": 0}, {"name": "Marty Feldman", "character": "Igor", "id": 29802, "credit_id": "52fe437fc3a36847f805875f", "cast_id": 18, "profile_path": "/g9MR6KKP1sBeOKBof0Sp0ksauuy.jpg", "order": 1}, {"name": "Madeline Kahn", "character": "Elizabeth", "id": 29803, "credit_id": "52fe437fc3a36847f8058763", "cast_id": 19, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 2}, {"name": "Cloris Leachman", "character": "Frau Bl\u00fccher", "id": 9599, "credit_id": "52fe437fc3a36847f8058767", "cast_id": 20, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 3}, {"name": "Kenneth Mars", "character": "Insp. Hans Wilhelm Friedrich Kamp", "id": 9601, "credit_id": "52fe437fc3a36847f805876b", "cast_id": 21, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 4}, {"name": "Richard Haydn", "character": "Gerhard Falkstein", "id": 29283, "credit_id": "52fe437fc3a36847f805876f", "cast_id": 22, "profile_path": "/fEUsWCS5Pd2pnarasaPIV9ksEst.jpg", "order": 5}, {"name": "Peter Boyle", "character": "The Monster", "id": 1039, "credit_id": "52fe437fc3a36847f8058773", "cast_id": 23, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 6}, {"name": "Teri Garr", "character": "Inga", "id": 8437, "credit_id": "52fe437fc3a36847f8058777", "cast_id": 24, "profile_path": "/aiHKGJw8DMLAfau8CuciTQQ3BF4.jpg", "order": 7}, {"name": "Liam Dunn", "character": "Mr. Hilltop", "id": 152711, "credit_id": "52fe437fc3a36847f8058781", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Danny Goldman", "character": "Medical Student", "id": 111383, "credit_id": "52fe437fc3a36847f8058785", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Oscar Beregi Jr.", "character": "Sadistic Jailor (as Oscar Beregi)", "id": 213641, "credit_id": "52fe437fc3a36847f8058789", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Arthur Malet", "character": "Village Elder", "id": 13392, "credit_id": "52fe437fc3a36847f805878d", "cast_id": 29, "profile_path": "/6YEWBozoD2s33M1QHxcPVN69Jvu.jpg", "order": 11}, {"name": "Anne Beesley", "character": "Little Girl", "id": 1068894, "credit_id": "52fe437fc3a36847f8058791", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Monte Landis", "character": "Gravedigger", "id": 44823, "credit_id": "52fe437fc3a36847f8058795", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Rusty Blitz", "character": "Gravedigger", "id": 1068895, "credit_id": "52fe437fc3a36847f8058799", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "John Madison", "character": "Villager", "id": 1068896, "credit_id": "52fe437fc3a36847f805879d", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "John Dennis", "character": "Orderly in Frankenstein's Class", "id": 134613, "credit_id": "52fe437fc3a36847f80587a1", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Gene Hackman", "character": "Blindman", "id": 193, "credit_id": "52fe437fc3a36847f80587a5", "cast_id": 35, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 17}, {"name": "Berry Kroeger", "character": "First Village Elder (uncredited)", "id": 85988, "credit_id": "52fe437fc3a36847f80587a9", "cast_id": 36, "profile_path": "/dIP8Ah1uGvbZjItzkjWJf82Y7qz.jpg", "order": 18}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe437ec3a36847f8058703", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 7.3, "runtime": 106}, "3036": {"poster_path": "/1TDzKNhsFy4JCE8PscFPX10fBvf.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112000000, "overview": "Based on Mary Shelley's novel, \"Frankenstein\" tells the story of Victor Frankenstein, a promising young doctor who, devastated by the death of his mother during childbirth, becomes obsessed with bringing the dead back to life. His experiments lead to the creation of a monster, which Frankenstein has put together with the remains of corpses. It's not long before Frankenstein regrets his actions.", "video": false, "id": 3036, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Frankenstein", "tagline": "Be Warned. It's Alive", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109836", "adult": false, "backdrop_path": "/eUhGqCRzPDb6bw01Mb9aHBXVjnM.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "TriStar Pictures", "id": 559}], "release_date": "1994-11-04", "popularity": 0.615505825424932, "original_title": "Frankenstein", "budget": 45000000, "cast": [{"name": "Robert De Niro", "character": "The Creature", "id": 380, "credit_id": "52fe437fc3a36847f80588e3", "cast_id": 16, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Kenneth Branagh", "character": "Victor Frankenstein", "id": 11181, "credit_id": "52fe437fc3a36847f80588e7", "cast_id": 17, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 1}, {"name": "Tom Hulce", "character": "Henry Clerval", "id": 3999, "credit_id": "52fe437fc3a36847f80588eb", "cast_id": 18, "profile_path": "/t4m5xqxovPP1GUXZ9MivPa7XloN.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Elizabeth", "id": 1283, "credit_id": "52fe437fc3a36847f80588ef", "cast_id": 19, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Aidan Quinn", "character": "Cap. Robert Walton", "id": 18992, "credit_id": "52fe437fc3a36847f80588f3", "cast_id": 20, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 4}, {"name": "Ian Holm", "character": "Baron Frankenstein", "id": 65, "credit_id": "52fe437fc3a36847f80588f7", "cast_id": 21, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 5}, {"name": "Richard Briers", "character": "Gro\u00dfvater", "id": 29859, "credit_id": "52fe437fc3a36847f80588fb", "cast_id": 22, "profile_path": "/gT5VvCAipkqxtCWfRRIaAVNezQh.jpg", "order": 6}, {"name": "John Cleese", "character": "Prof. Waldman", "id": 8930, "credit_id": "52fe437fc3a36847f80588ff", "cast_id": 23, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 7}, {"name": "Robert Hardy", "character": "Prof. Krempe", "id": 23076, "credit_id": "52fe437fc3a36847f8058903", "cast_id": 24, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 8}, {"name": "Cherie Lunghi", "character": "Caroline Beaufort Frankenstein", "id": 20768, "credit_id": "52fe437fc3a36847f8058907", "cast_id": 25, "profile_path": "/1veFTb3GYMxcw6B65ff2y2xBsMM.jpg", "order": 9}, {"name": "Celia Imrie", "character": "Mrs. Moritz", "id": 9139, "credit_id": "52fe437fc3a36847f805890b", "cast_id": 26, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 10}, {"name": "Trevyn McDowell", "character": "Justine", "id": 29860, "credit_id": "52fe437fc3a36847f805890f", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Jimmy Yuill", "character": "Greigori", "id": 151797, "credit_id": "542d9e9ac3a36859e20003fc", "cast_id": 29, "profile_path": "/zeuinVj4XOYzWSty96mM3SaD1mB.jpg", "order": 12}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe437fc3a36847f8058915", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 6.0, "runtime": 123}, "11232": {"poster_path": "/cpydhxnOQra4knQpcvGugwCqgpI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.", "video": false, "id": 11232, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Kate & Leopold", "tagline": "If they lived in the same century they'd be perfect for each other.", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0035423", "adult": false, "backdrop_path": "/peukS1zqbrHl4WuKb4LAGBarSb8.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2001-12-25", "popularity": 0.561561149143469, "original_title": "Kate & Leopold", "budget": 0, "cast": [{"name": "Meg Ryan", "character": "Kate McKay", "id": 5344, "credit_id": "52fe44169251416c750286e7", "cast_id": 8, "profile_path": "/t8fvS92DMCPJY58To5YEiPwCsBA.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "Leopold", "id": 6968, "credit_id": "52fe44169251416c750286eb", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Liev Schreiber", "character": "Stuart Besser", "id": 23626, "credit_id": "52fe44169251416c750286ef", "cast_id": 10, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Charlie McKay", "id": 33654, "credit_id": "52fe44169251416c750286f3", "cast_id": 11, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Natasha Lyonne", "character": "Darci", "id": 10871, "credit_id": "52fe44169251416c750286f7", "cast_id": 12, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 4}, {"name": "Bradley Whitford", "character": "J.J. Camden", "id": 11367, "credit_id": "52fe44169251416c750286fb", "cast_id": 13, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 5}, {"name": "Paxton Whitehead", "character": "Uncle Millard", "id": 129996, "credit_id": "52fe44169251416c750286ff", "cast_id": 14, "profile_path": "/kqj2BMIx8BZiHNW4Ilay889QFiv.jpg", "order": 6}, {"name": "Spalding Gray", "character": "Dr. Geisler", "id": 8978, "credit_id": "52fe44169251416c75028703", "cast_id": 15, "profile_path": "/q3kkmr5ars0K56OQq49MqZ9Orgo.jpg", "order": 7}, {"name": "Josh Stamberg", "character": "Colleague Bob", "id": 21882, "credit_id": "52fe44169251416c75028707", "cast_id": 16, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 8}, {"name": "Matthew Sussman", "character": "Ad Executive Phil", "id": 159869, "credit_id": "52fe44169251416c7502870b", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Charlotte Ayanna", "character": "Patrice", "id": 6281, "credit_id": "52fe44169251416c7502870f", "cast_id": 18, "profile_path": "/5bqzLVKlwdt1ePTHnYjZUaBpCC8.jpg", "order": 10}, {"name": "Philip Bosco", "character": "Otis", "id": 6541, "credit_id": "52fe44169251416c75028713", "cast_id": 19, "profile_path": "/8B8EQk868fQF8fGZ1w33XDV5Z1S.jpg", "order": 11}, {"name": "Andrew Jack", "character": "Roebling", "id": 240629, "credit_id": "52fe44169251416c75028717", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Stan Tracy", "character": "Photographer", "id": 205583, "credit_id": "52fe44169251416c7502871b", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Kristen Schaal", "character": "Miss Tree", "id": 109869, "credit_id": "52fe44169251416c7502871f", "cast_id": 22, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 14}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe44169251416c750286bf", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 5.8, "runtime": 118}, "11238": {"poster_path": "/hTDQAA9ww2lGYOvLzENWYCYuyON.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "At long last, Aladdin is about to marry the Princess Jasmine. Despite the presence and encouragement of his friends Genie, Carpet, and Abu, he is fearful and anxious. He is most worried as to what kind of father he will be, having never known his own. But when the 40 Thieves disrupt the wedding trying to steal a magical oracular talisman, Aladdin is drawn into a dangerous quest to stop the thieves.", "video": false, "id": 11238, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Aladdin and the King of Thieves", "tagline": "", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/acIVr0B6wWxvtEzoIOzWWgY6bs2.jpg", "poster_path": "/9jAbtLbAbebtuF5q1gZIPUCuegd.jpg", "id": 86027, "name": "Aladdin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115491", "adult": false, "backdrop_path": "/wxdHHQ0MtOEa9qtdHfROC2xvUT9.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}], "release_date": "1996-08-13", "popularity": 1.05819378945112, "original_title": "Aladdin and the King of Thieves", "budget": 0, "cast": [{"name": "Robin Williams", "character": "Genie", "id": 2157, "credit_id": "5516af98c3a368348900131d", "cast_id": 23, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Scott Weinger", "character": "Aladdin (voice)", "id": 15827, "credit_id": "52fe44179251416c7502895f", "cast_id": 2, "profile_path": "/rlZpPoORiJzStzIuAyrPOlLhnaL.jpg", "order": 1}, {"name": "Linda Larkin", "character": "Princess Jasmine (voice)", "id": 15829, "credit_id": "52fe44179251416c75028963", "cast_id": 3, "profile_path": "/7dFMvof0vdGHVvtfpAewjzGOZhf.jpg", "order": 2}, {"name": "John Rhys-Davies", "character": "The King of Thieves / Cassim (voice)", "id": 655, "credit_id": "52fe44179251416c75028967", "cast_id": 4, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 3}, {"name": "Gilbert Gottfried", "character": "Iago the Parrot (voice)", "id": 15832, "credit_id": "52fe44179251416c7502896b", "cast_id": 5, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 4}, {"name": "Jerry Orbach", "character": "Sa'luk (voice)", "id": 725, "credit_id": "52fe44189251416c750289ab", "cast_id": 16, "profile_path": "/fL9xNdyyPpJrqzSVyJpefRVWcx1.jpg", "order": 5}, {"name": "Val Bettin", "character": "Sultan of Agrabah (voice)", "id": 61674, "credit_id": "52fe44189251416c750289af", "cast_id": 17, "profile_path": "/dwdUalc3PdmC1zoAX7qHl6FMvrq.jpg", "order": 6}, {"name": "Frank Welker", "character": "Abu the Monkey (voice)", "id": 15831, "credit_id": "52fe44189251416c750289b3", "cast_id": 18, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 7}, {"name": "Jim Cummings", "character": "Razoul (voice)", "id": 12077, "credit_id": "52fe44189251416c750289b7", "cast_id": 19, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 8}, {"name": "C. C. H. Pounder", "character": "The Magic Oracle (voice)", "id": 30485, "credit_id": "52fe44189251416c750289bb", "cast_id": 20, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 9}, {"name": "Liz Callaway", "character": "Princess Jasmine (singing voice)", "id": 58828, "credit_id": "52fe44189251416c750289bf", "cast_id": 21, "profile_path": "/pIZwTupFvJCppbYt26q4ydKIbnl.jpg", "order": 10}, {"name": "Brad Kane", "character": "Aladdin (singing voice)", "id": 228428, "credit_id": "52fe44189251416c750289c3", "cast_id": 22, "profile_path": "/g4UmBOKZfYYD5VtyuAO4t4LpCcP.jpg", "order": 11}], "directors": [{"name": "Tad Stones", "department": "Directing", "job": "Director", "credit_id": "52fe44179251416c75028971", "profile_path": null, "id": 56852}], "vote_average": 6.1, "runtime": 80}, "3049": {"poster_path": "/nZirljb8XYbKTWsRQTplDGhx39Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man . . . or beast!", "video": false, "id": 3049, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "Ace Ventura: Pet Detective", "tagline": "He's the best there is! (Actually, he's the only one there is.)", "vote_count": 578, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aPoX8RAxA9J2XW44Ud0AozTUFop.jpg", "poster_path": "/guYqF6CvU48aGH5nTx160Bjg35F.jpg", "id": 3167, "name": "Ace Ventura Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0109040", "adult": false, "backdrop_path": "/1gTzKQ55FnVm0TNrii4L4bf0oDV.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1994-02-04", "popularity": 1.45367694865685, "original_title": "Ace Ventura: Pet Detective", "budget": 12000000, "cast": [{"name": "Jim Carrey", "character": "Ace Ventura", "id": 206, "credit_id": "52fe4380c3a36847f8058c7f", "cast_id": 3, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Sean Young", "character": "Lt. Lois Einhorn/Ray Finkel", "id": 586, "credit_id": "52fe4380c3a36847f8058ca5", "cast_id": 10, "profile_path": "/4zgkRFQruIlaJ4JakNZLoKJ70fH.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Melissa Robinson", "id": 14405, "credit_id": "52fe4380c3a36847f8058c83", "cast_id": 4, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Tone-L\u014dc", "character": "Emilio", "id": 31004, "credit_id": "52fe4380c3a36847f8058ca9", "cast_id": 11, "profile_path": "/bKiyKnsDJFcaBdI0X23FHqkYrPv.jpg", "order": 3}, {"name": "Dan Marino", "character": "Himself", "id": 1223629, "credit_id": "53de6c230e0a265a990024e7", "cast_id": 23, "profile_path": null, "order": 15}], "directors": [{"name": "Tom Shadyac", "department": "Directing", "job": "Director", "credit_id": "52fe4380c3a36847f8058c75", "profile_path": "/8CtwYIVmCSDQ9F1SXFpifKW0N3v.jpg", "id": 4499}], "vote_average": 6.2, "runtime": 86}, "3050": {"poster_path": "/ebomUCgc1QhtuxWiEHnmJlesv2g.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 294456605, "overview": "A successful physician and devoted family man, John Dolittle (Eddie Murphy) seems to have the world by the tail, until a long suppressed talent he possessed as a child, the ability to communicate with animals is suddenly reawakened with a vengeance! Now every creature within squawking distance wants the good doctor's advice, unleashing an outrageous chain of events that turns his world upside down!", "video": false, "id": 3050, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Doctor Dolittle", "tagline": "He doesn't just talk to the animals!", "vote_count": 123, "homepage": "", "belongs_to_collection": {"backdrop_path": "/dtz0ju3dikZaiSJ9HmVoMs9imT8.jpg", "poster_path": "/lbETpGm7Fw6LmB0H1LlGwHFwPPw.jpg", "id": 3169, "name": "Dr. Dolittle Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118998", "adult": false, "backdrop_path": "/g97xTt18p0WWnj6wxLGC0vBKFwQ.jpg", "production_companies": [{"name": "Joseph M. Singer Entertainment", "id": 1301}], "release_date": "1998-06-22", "popularity": 0.847789927635866, "original_title": "Doctor Dolittle", "budget": 71000000, "cast": [{"name": "Eddie Murphy", "character": "Dr. John Dolittle", "id": 776, "credit_id": "52fe4380c3a36847f8058d01", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Ossie Davis", "character": "Archer Dolittle", "id": 15531, "credit_id": "52fe4380c3a36847f8058d47", "cast_id": 13, "profile_path": "/3NU3mq5ZiiX0D41DTB5fNsjFlDB.jpg", "order": 1}, {"name": "Oliver Platt", "character": "Dr. Mark Weller", "id": 17485, "credit_id": "52fe4380c3a36847f8058d4b", "cast_id": 14, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 2}, {"name": "Peter Boyle", "character": "Calloway", "id": 1039, "credit_id": "52fe4380c3a36847f8058d4f", "cast_id": 15, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 3}, {"name": "Richard Schiff", "character": "Dr. Gene Reiss", "id": 31028, "credit_id": "52fe4380c3a36847f8058d53", "cast_id": 16, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 4}, {"name": "Kristen Wilson", "character": "Lisa Dolittle", "id": 31029, "credit_id": "52fe4380c3a36847f8058d57", "cast_id": 17, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 5}, {"name": "Kyla Pratt", "character": "Maya Dolittle", "id": 31031, "credit_id": "52fe4380c3a36847f8058d5b", "cast_id": 18, "profile_path": "/4BGV47PlqqgCcVb7zSveNOFtqjc.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Dr. Fish", "id": 4175, "credit_id": "52fe4380c3a36847f8058d5f", "cast_id": 19, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "Steven Gilborn", "character": "Dr. Sam Litvack", "id": 31032, "credit_id": "52fe4380c3a36847f8058d63", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Raven-Symon\u00e9", "character": "Charisse Dolittle", "id": 66896, "credit_id": "52fe4380c3a36847f8058d67", "cast_id": 21, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 9}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4380c3a36847f8058d07", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.4, "runtime": 85}, "265195": {"poster_path": "/idBELLgvTJ7ZiZ88B1EuVaXYlpO.jpg", "production_countries": [{"iso_3166_1": "AR", "name": "Argentina"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "A story about love deception, the return of the past, a tragedy, or even the violence contained in an everyday detail, appear themselves to push them towards the abyss, into the undeniable pleasure of losing control.", "video": false, "id": 265195, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Wild Tales", "tagline": "", "vote_count": 117, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt3011894", "adult": false, "backdrop_path": "/v8k6ZKOIs2aFhGajSPuGej9OJDh.jpg", "production_companies": [{"name": "El Deseo S.A.", "id": 11736}, {"name": "Kramer & Sigman Films", "id": 21914}, {"name": "Televisi\u00f3n Federal (Telefe)", "id": 21915}, {"name": "INCAA", "id": 8205}], "release_date": "2014-08-21", "popularity": 1.94835733167305, "original_title": "Relatos salvajes", "budget": 0, "cast": [{"name": "Ricardo Dar\u00edn", "character": "Simon Fisher", "id": 69310, "credit_id": "534fe33a0e0a267eb6000f5f", "cast_id": 0, "profile_path": "/1TQ9iE2d7r91ohbHi93KLw3QULU.jpg", "order": 1}, {"name": "Leonardo Sbaraglia", "character": "Diego", "id": 19803, "credit_id": "534fe3460e0a267eb2000ef9", "cast_id": 1, "profile_path": "/u3UxARVRPxOg1DqVbjq3Qe934ZJ.jpg", "order": 2}, {"name": "Dar\u00edo Grandinetti", "character": "Salgado", "id": 3618, "credit_id": "534fe3550e0a267ea4001030", "cast_id": 2, "profile_path": "/UQN0TZJyEsxP06yAlS1OuAZEoL.jpg", "order": 3}, {"name": "Erica Rivas", "character": "Romina", "id": 141455, "credit_id": "534fe3610e0a267eab000ee3", "cast_id": 3, "profile_path": null, "order": 4}, {"name": "Erica Rivas", "character": "Moza", "id": 141455, "credit_id": "534fe3d40e0a267ea8000fca", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Nancy Dupl\u00e1a", "character": "Victoria", "id": 114811, "credit_id": "534fe3e00e0a267eb9000fde", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Mar\u00eda Onetto ", "character": "Helena", "id": 1051297, "credit_id": "534fe3ec0e0a267ea8000fd3", "cast_id": 6, "profile_path": null, "order": 7}, {"name": "Mar\u00eda Onetto ", "character": "Mauricio", "id": 1051297, "credit_id": "534fe3f90e0a267eb6000f6f", "cast_id": 7, "profile_path": null, "order": 8}, {"name": "Rita Cortese", "character": "Cocinera", "id": 99113, "credit_id": "534fe4020e0a267eb2000f0e", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Rita Cortese", "character": "Abogado", "id": 99113, "credit_id": "534fe40a0e0a267ea8000fd8", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Julieta Zylberberg", "character": "Moza", "id": 145025, "credit_id": "55243db5c3a36847c800367d", "cast_id": 33, "profile_path": null, "order": 11}], "directors": [{"name": "Dami\u00e1n Szifr\u00f3n", "department": "Directing", "job": "Director", "credit_id": "54463243c3a368369100184c", "profile_path": null, "id": 591600}], "vote_average": 7.9, "runtime": 125}, "11247": {"poster_path": "/lzIjehNqNCFOuCRT9xJ2FYf1WPS.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70067909, "overview": "Sam Montgomery is a tomboyish, unpopular girl at school. She has been text messaging a somebody named Nomad for a few months and he asks her to meet him at the Halloween dance at 11:00 in the middle of the dance floor. The only problem is, she must get back to the diner, ran by her wicked Stepmom Fiona by 12 sharp because she is not supposed to be there. Before Nomad can found out who she is, she must leave with her best friend, Carter driving her back to the diner. After that night, everything in Sam's life goes wacko!", "video": false, "id": 11247, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "A Cinderella Story", "tagline": "Once upon a time... can happen any time.", "vote_count": 117, "homepage": "http://www2.warnerbros.com/acinderellastory/index.html", "belongs_to_collection": {"backdrop_path": "/c9RAmtGUgoa7ljS6MHLqZPBEyTx.jpg", "poster_path": "/34X6jwkjrvrtZiH6kNBhEaN2NcF.jpg", "id": 178799, "name": "A Cinderella Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0356470", "adult": false, "backdrop_path": "/rUAlqyUDN2KHpAHdF2NPEWOilPa.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-07-10", "popularity": 0.857849253583638, "original_title": "A Cinderella Story", "budget": 19000000, "cast": [{"name": "Hilary Duff", "character": "Sam Montgomery", "id": 5958, "credit_id": "52fe44199251416c75028d25", "cast_id": 1, "profile_path": "/dT0EEPMt2LQdr0xXBa5qGHYObEW.jpg", "order": 0}, {"name": "Jennifer Coolidge", "character": "Fiona", "id": 38334, "credit_id": "52fe44199251416c75028d29", "cast_id": 2, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 1}, {"name": "Chad Michael Murray", "character": "Austin Ames", "id": 62747, "credit_id": "52fe44199251416c75028d2d", "cast_id": 3, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 2}, {"name": "Dan Byrd", "character": "Carter Farrell", "id": 59283, "credit_id": "52fe44199251416c75028d31", "cast_id": 4, "profile_path": "/j68CP63mC20q25IFSJvvRP3TGlm.jpg", "order": 3}, {"name": "Regina King", "character": "Rhonda", "id": 9788, "credit_id": "52fe44199251416c75028d35", "cast_id": 5, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 4}, {"name": "Julie Gonzalo", "character": "Shelby Cummings", "id": 68769, "credit_id": "52fe44199251416c75028d39", "cast_id": 6, "profile_path": "/9V9qPwOVAeEcExbGkxomgWWBs1w.jpg", "order": 5}], "directors": [{"name": "Mark Rosman", "department": "Directing", "job": "Director", "credit_id": "52fe44199251416c75028d3f", "profile_path": "/vOyUS7Z64KVV3VJZu2Li4r0j2Cg.jpg", "id": 68770}], "vote_average": 6.0, "runtime": 95}, "11249": {"poster_path": "/vOykTC4dMzEHt2fyOxVRWFnl2pl.jpg", "production_countries": [{"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24829644, "overview": "The killer doll is back! The all-new film is the fifth in the popular series of Chucky (\"Child's Play\") horror comedies. Making his directorial debut is the franchise creator and writer of all five films, Don Mancini. The film introduces Glen (voiced by \"The Lord of the Rings\" star Billy Boyd), the orphan doll offspring of the irrepressible devilish-doll-come-to-life Chucky (again voiced by series", "video": false, "id": 11249, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Seed of Chucky", "tagline": "Fear The Second Coming", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387575", "adult": false, "backdrop_path": "/dKEXsWwRWCtKIGdZUzZLesz2HK6.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}], "release_date": "2004-11-11", "popularity": 0.86651450585203, "original_title": "Seed of Chucky", "budget": 12000000, "cast": [{"name": "Brad Dourif", "character": "Chucky", "id": 1370, "credit_id": "52fe441a9251416c75028e13", "cast_id": 1, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 0}, {"name": "Jennifer Tilly", "character": "Tiffany", "id": 7906, "credit_id": "52fe441a9251416c75028e17", "cast_id": 2, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 1}, {"name": "Billy Boyd", "character": "Glen", "id": 1329, "credit_id": "52fe441a9251416c75028e1b", "cast_id": 3, "profile_path": "/vNhUoHhBqyjDVuc0nxJHanTKA2E.jpg", "order": 2}, {"name": "Redman", "character": "sich", "id": 54799, "credit_id": "52fe441a9251416c75028e1f", "cast_id": 4, "profile_path": "/2a9i6FjwJQWZzfU1Nw7FOvy5EqG.jpg", "order": 3}, {"name": "Hannah Spearritt", "character": "Joan", "id": 35865, "credit_id": "52fe441a9251416c75028e23", "cast_id": 5, "profile_path": "/xJlws5XMI3jzncqgJ46jgCwbOCm.jpg", "order": 4}, {"name": "John Waters", "character": "Pete Peters", "id": 10367, "credit_id": "52fe441a9251416c75028e27", "cast_id": 6, "profile_path": "/3qDSp0LlJ1Q2y802OyJcHVARsbZ.jpg", "order": 5}], "directors": [{"name": "Don Mancini", "department": "Directing", "job": "Director", "credit_id": "52fe441a9251416c75028e2d", "profile_path": null, "id": 65677}], "vote_average": 5.1, "runtime": 87}, "11253": {"poster_path": "/aCnLkOI81kW1nmU7VZAP647SoKI.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160388063, "overview": "In this continuation to the adventure of the demon superhero, an evil elf breaks an ancient pact between humans and creatures, as he declares war against humanity. He is on a mission to release The Golden Army, a deadly group of fighting machines that can destroy the human race. As Hell on Earth is ready to erupt, Hellboy and his crew set out to defeat the evil prince.", "video": false, "id": 11253, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Hellboy II: The Golden Army", "tagline": "Saving the world is a hell of a job.", "vote_count": 429, "homepage": "", "belongs_to_collection": {"backdrop_path": "/i6WF7cYiogl8g5ryZDbZBw8RNVN.jpg", "poster_path": "/81B1OdGY7f3TVN06eKra25vHzYk.jpg", "id": 17235, "name": "Hellboy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411477", "adult": false, "backdrop_path": "/df21ZOrmNzHU63jiLm1NYwSOegE.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Internationale Filmproduktion Eagle", "id": 21498}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Relativity Media", "id": 7295}, {"name": "Lawrence Gordon Productions", "id": 840}], "release_date": "2008-07-11", "popularity": 0.876502175050303, "original_title": "Hellboy II: The Golden Army", "budget": 85000000, "cast": [{"name": "Ron Perlman", "character": "Hellboy", "id": 2372, "credit_id": "52fe441b9251416c75028f73", "cast_id": 3, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 0}, {"name": "Selma Blair", "character": "Liz Sherman", "id": 11826, "credit_id": "52fe441b9251416c75028f77", "cast_id": 4, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 1}, {"name": "Jeffrey Tambor", "character": "Tom Manning", "id": 4175, "credit_id": "52fe441b9251416c75028f7b", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 2}, {"name": "Doug Jones", "character": "Abe Sapien", "id": 17005, "credit_id": "52fe441b9251416c75028f7f", "cast_id": 6, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 3}, {"name": "John Hurt", "character": "Trevor Bruttenholm", "id": 5049, "credit_id": "52fe441b9251416c75028f83", "cast_id": 7, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Luke Goss", "character": "Prince Nuada", "id": 10843, "credit_id": "52fe441b9251416c75028f87", "cast_id": 8, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 5}, {"name": "John Alexander", "character": "Johann Krauss / Bethmoora Goblin", "id": 443770, "credit_id": "52fe441b9251416c75028f91", "cast_id": 10, "profile_path": "/5tcxoXCC4hh12OowR1kITzkrCmC.jpg", "order": 6}, {"name": "James Dodd", "character": "Johann Krauss", "id": 1050937, "credit_id": "52fe441b9251416c75028f95", "cast_id": 11, "profile_path": "/29JxbaBmOFoDgXAG2VjqZyj1Krz.jpg", "order": 7}, {"name": "Seth MacFarlane", "character": "Johann (voice)", "id": 52139, "credit_id": "52fe441b9251416c75028f99", "cast_id": 12, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 8}, {"name": "Anna Walton", "character": "Princess Nuala", "id": 221553, "credit_id": "52fe441b9251416c75028f9d", "cast_id": 13, "profile_path": "/tGhVmFNpG5Z5EUAHnPzeAc8uPuJ.jpg", "order": 9}, {"name": "Brian Steele", "character": "Wink / Cronie / Spice Shop Troll / Cathedral Head / Fragglewump", "id": 12359, "credit_id": "52fe441b9251416c75028fa1", "cast_id": 14, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 10}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe441b9251416c75028f69", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.3, "runtime": 120}, "265208": {"poster_path": "/cZMjg5fWkhJ1D7MouzZuiB16Hdk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a Las Vegas bodyguard with lethal skills and a gambling problem gets in trouble with the mob, he has one last play\u2026 and it's all or nothing.", "video": false, "id": 265208, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Wild Card", "tagline": "It's a card\u2026 and it's wild. Now watch the movie.", "vote_count": 140, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2231253", "adult": false, "backdrop_path": "/tm5DQMU1jCSHCAjSyC6MzGGbWw7.jpg", "production_companies": [{"name": "Sierra / Affinity", "id": 24049}, {"name": "Lionsgate", "id": 1632}, {"name": "SJ Heat Productions", "id": 45980}], "release_date": "2015-01-30", "popularity": 6.15744914092498, "original_title": "Wild Card", "budget": 30000000, "cast": [{"name": "Jason Statham", "character": "Nick Wild", "id": 976, "credit_id": "534febb30e0a267eaf00109a", "cast_id": 0, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Michael Angarano", "character": "Cyrus Kinnick", "id": 11665, "credit_id": "5396113d0e0a266dce00755c", "cast_id": 10, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 1}, {"name": "Dominik Garc\u00eda-Lorido", "character": "Holly", "id": 58635, "credit_id": "54cdd813c3a3681c9c001d80", "cast_id": 14, "profile_path": "/zQJDrk8GTVZFYMFlwQuE9Dmnvb8.jpg", "order": 2}, {"name": "Hope Davis", "character": "Cassandra", "id": 15250, "credit_id": "54cdd844925141475b004487", "cast_id": 15, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 3}, {"name": "Milo Ventimiglia", "character": "Danny DeMarco", "id": 16501, "credit_id": "539611160e0a266dc2007413", "cast_id": 8, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 4}, {"name": "Max Casella", "character": "Osgood", "id": 7133, "credit_id": "539611830e0a266dca0074f9", "cast_id": 13, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 5}, {"name": "Stanley Tucci", "character": "Baby", "id": 2283, "credit_id": "539610fe0e0a266db4007604", "cast_id": 7, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 6}, {"name": "Jason Alexander", "character": "Pinky", "id": 1206, "credit_id": "5396116e0e0a266dbf00762a", "cast_id": 12, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 7}, {"name": "Sof\u00eda Vergara", "character": "D.D.", "id": 63522, "credit_id": "539610d80e0a266dbb0076c4", "cast_id": 5, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 8}, {"name": "Anne Heche", "character": "Roxy", "id": 8256, "credit_id": "539611280e0a266dc500732b", "cast_id": 9, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 9}, {"name": "Fran\u00e7ois Vincentelli", "character": "Benny", "id": 225479, "credit_id": "55318293925141529b0009e9", "cast_id": 16, "profile_path": "/a5E9Afd5hhBEJTwmrslihKcyWU0.jpg", "order": 10}, {"name": "Chris Browning", "character": "Tiel", "id": 76543, "credit_id": "553182fcc3a3682219000a37", "cast_id": 17, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 11}, {"name": "Matthew Willig", "character": "Kinlaw", "id": 92617, "credit_id": "5396115a0e0a266dbf007627", "cast_id": 11, "profile_path": "/5ZW9nqkmFnWTIkr4ALNCiHdPt9S.jpg", "order": 12}, {"name": "Davenia McFadden", "character": "Millicent", "id": 75620, "credit_id": "553183569251415289000955", "cast_id": 18, "profile_path": "/uX5egRwfOly93uuJeSahVIxfLFV.jpg", "order": 13}, {"name": "Michael Papajohn", "character": "Pit Boss", "id": 20582, "credit_id": "5531837d925141528f0009d2", "cast_id": 19, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 14}, {"name": "Jean Claude Leuyer", "character": "Julian Reeves", "id": 52904, "credit_id": "553183c6c3a3682219000a57", "cast_id": 20, "profile_path": "/qwWruzfs5vC4V5FCyNIEGJvupKm.jpg", "order": 15}, {"name": "Greice Santo", "character": "Cocktail Waitress", "id": 1450383, "credit_id": "553183edc3a3682226000ad2", "cast_id": 21, "profile_path": "/x7SIECWrGFPVzqRPjsNJpNjZkWd.jpg", "order": 16}, {"name": "Freddie Poole", "character": "Frank", "id": 1386325, "credit_id": "55318500925141528f0009f7", "cast_id": 22, "profile_path": "/ynLllVrf9oS61EYEycYR489s3Fu.jpg", "order": 17}, {"name": "Nick Epper", "character": "Tony", "id": 1455749, "credit_id": "553185c8925141529e000a36", "cast_id": 23, "profile_path": "/16cVCwAYJMM7k4LTu64vJDTELEk.jpg", "order": 18}, {"name": "Lara Grice", "character": "First Doctor", "id": 94428, "credit_id": "55318709c3a3682223000d0f", "cast_id": 24, "profile_path": "/5bVR1UvnPyLgCcJqGHCnRCeLKPI.jpg", "order": 19}, {"name": "D'Arcy Allen", "character": "HotShot Dealer", "id": 570706, "credit_id": "553187b8c3a3682219000ad1", "cast_id": 25, "profile_path": "/sYUlDdzLJflvSJ2WAVmTpRz79dO.jpg", "order": 20}, {"name": "Shanna Forrestall", "character": "Marie", "id": 120251, "credit_id": "55318806c3a3682223000d2d", "cast_id": 26, "profile_path": "/3obLXjztke735vaes6XAdP0o1P8.jpg", "order": 21}, {"name": "Lee Perkins", "character": "Mean Dealer", "id": 98175, "credit_id": "5531882a925141528c000a44", "cast_id": 27, "profile_path": "/6Zy5TrYeol8di9HUJVneFc1mHwt.jpg", "order": 22}, {"name": "Angela Kerecz", "character": "Sexy Santa Annie", "id": 1285499, "credit_id": "539610ef0e0a266dbf00761c", "cast_id": 6, "profile_path": "/pTsh8auk8614t2rghDD4waA6l7A.jpg", "order": 23}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "534febd40e0a267eab000f92", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.2, "runtime": 92}, "14164": {"poster_path": "/yERkcVylXAcTCi8f0qrba4rmWwg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The young warrior Son Goku sets out on a quest, racing against time and the vengeful King Piccolo, to collect a set of seven magical orbs that will grant their wielder unlimited power.", "video": false, "id": 14164, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dragonball Evolution", "tagline": "The legend comes to life.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt1098327", "adult": false, "backdrop_path": "/whfRBkEMlY3wdRsMNv9hDz5afJu.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2009-04-01", "popularity": 0.365108811461441, "original_title": "Dragonball Evolution", "budget": 100000000, "cast": [{"name": "Justin Chatwin", "character": "Goku", "id": 503, "credit_id": "52fe45d29251416c75063aff", "cast_id": 1, "profile_path": "/rG5aYePsnpDf3H5NS6iH0F63WIy.jpg", "order": 0}, {"name": "Joon Park", "character": "Yamcha", "id": 78323, "credit_id": "52fe45d29251416c75063b15", "cast_id": 5, "profile_path": "/bEBDDiHMdPk2cXtMVb3sDBU52ND.jpg", "order": 1}, {"name": "Jamie Chung", "character": "Chi Chi", "id": 78324, "credit_id": "52fe45d29251416c75063b19", "cast_id": 6, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 2}, {"name": "Emmy Rossum", "character": "Bulma", "id": 4730, "credit_id": "52fe45d29251416c75063b1d", "cast_id": 7, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 3}, {"name": "James Marsters", "character": "Lord Piccolo", "id": 47297, "credit_id": "52fe45d39251416c75063b21", "cast_id": 8, "profile_path": "/asmCNHg9nUC2Yv1d7LMQrQ5Adul.jpg", "order": 4}, {"name": "Randall Duk Kim", "character": "Grandpa Gohan", "id": 9462, "credit_id": "52fe45d39251416c75063b25", "cast_id": 9, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 5}, {"name": "Ernie Hudson", "character": "Master Mutaito", "id": 8874, "credit_id": "52fe45d39251416c75063b29", "cast_id": 10, "profile_path": "/wrMGBA4eNTUj2ympGsxaqcRpHBS.jpg", "order": 6}, {"name": "Texas Battle", "character": "Carey Fuller", "id": 53185, "credit_id": "52fe45d39251416c75063b2d", "cast_id": 11, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 7}, {"name": "Shavon Kirksey", "character": "Emi", "id": 78325, "credit_id": "52fe45d39251416c75063b31", "cast_id": 12, "profile_path": "/AhFWsZegizadYuoJ62CUfJiFwPI.jpg", "order": 8}, {"name": "Eriko Tamura", "character": "Mai", "id": 37492, "credit_id": "52fe45d39251416c75063b35", "cast_id": 13, "profile_path": "/xlrEm5myJZmYjiJUohIa9QiRaLD.jpg", "order": 9}, {"name": "Luis Arrieta", "character": "Weaver", "id": 78326, "credit_id": "52fe45d39251416c75063b39", "cast_id": 14, "profile_path": "/s7dcaUvhvv6p55Ag1aBP5vVL8vE.jpg", "order": 10}, {"name": "Richard Blake", "character": "Agundas", "id": 78327, "credit_id": "52fe45d39251416c75063b3d", "cast_id": 15, "profile_path": "/cRnVHYiiouJb6jgDnUiLX6xvIiI.jpg", "order": 11}, {"name": "Julian Sedgwick", "character": "Mr. Kingery", "id": 78328, "credit_id": "52fe45d39251416c75063b41", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Chow Yun-Fat", "character": "Master Roshi", "id": 1619, "credit_id": "52fe45d39251416c75063b45", "cast_id": 17, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 13}, {"name": "Megumi Seki", "character": "Seki", "id": 147880, "credit_id": "52fe45d39251416c75063b49", "cast_id": 18, "profile_path": "/t8e85snpMy2FKNH3O4HT33ghCdk.jpg", "order": 14}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe45d29251416c75063b05", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 3.5, "runtime": 85}, "11259": {"poster_path": "/yNdfm55jkgFk1IeAqxSEPFDPR5x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 137783840, "overview": "A young man (Cruise) leaves Ireland with his landlord's daughter (Kidman) after some trouble with her father, and they dream of owning land at the big giveaway in Oklahoma ca. 1893. When they get to the new land, they find jobs and begin saving money. The man becomes a local barehands boxer, and rides in glory until he is beaten, then his employers steal all the couple's money and they must fight off starvation in the winter, and try to keep their dream of owning land alive. Meanwhile, the woman's parents find out where she has gone and have come to America to find her and take her back.", "video": false, "id": 11259, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}, {"id": 10749, "name": "Romance"}], "title": "Far and Away", "tagline": "What they needed was a country big enough for their dreams.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104231", "adult": false, "backdrop_path": "/lYTimGLaSjxZPiyoJjg3fHeCj5D.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}], "release_date": "1992-05-22", "popularity": 1.0796961487264, "original_title": "Far and Away", "budget": 60000000, "cast": [{"name": "Tom Cruise", "character": "Joseph Donnelly", "id": 500, "credit_id": "52fe441c9251416c7502916d", "cast_id": 10, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Shannon Christie", "id": 2227, "credit_id": "52fe441c9251416c75029171", "cast_id": 11, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Thomas Gibson", "character": "Stephen Chase", "id": 13638, "credit_id": "52fe441c9251416c75029175", "cast_id": 12, "profile_path": "/xi0vxwCqAxTSUPiBH3O00kyVoWq.jpg", "order": 2}, {"name": "Robert Prosky", "character": "Daniel Christie", "id": 10360, "credit_id": "52fe441c9251416c75029179", "cast_id": 13, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 3}, {"name": "Barbara Babcock", "character": "Nora Christie", "id": 15746, "credit_id": "52fe441c9251416c7502917d", "cast_id": 14, "profile_path": "/gKQge0krT6yuh4zTOOWQlsTfRBf.jpg", "order": 4}, {"name": "Cyril Cusack", "character": "Danty Duff", "id": 4973, "credit_id": "52fe441c9251416c75029181", "cast_id": 15, "profile_path": "/5d6OeKNqpRSMhwXd1FHV9KeX4WS.jpg", "order": 5}, {"name": "Eileen Pollock", "character": "Molly Kay", "id": 163619, "credit_id": "52fe441c9251416c75029185", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Colm Meaney", "character": "Kelly", "id": 17782, "credit_id": "52fe441c9251416c75029189", "cast_id": 17, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 7}, {"name": "Douglas Gillison", "character": "Dermody", "id": 938160, "credit_id": "52fe441c9251416c7502918d", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Michelle Johnson", "character": "Grace", "id": 17225, "credit_id": "52fe441c9251416c75029191", "cast_id": 20, "profile_path": "/28bU4ZZkZvmmAVg8tiJqKbcdOsr.jpg", "order": 9}, {"name": "Wayne Grace", "character": "Bourke", "id": 52145, "credit_id": "52fe441c9251416c75029195", "cast_id": 21, "profile_path": "/cLpzZ67EY36fChyzW83pjynoAfp.jpg", "order": 10}, {"name": "Niall T\u00f3ib\u00edn", "character": "Joe", "id": 140230, "credit_id": "52fe441c9251416c75029199", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Barry McGovern", "character": "McGuire", "id": 26094, "credit_id": "52fe441c9251416c7502919d", "cast_id": 23, "profile_path": "/mRZu7DJYxextwlIltLXx2ED4jG6.jpg", "order": 12}, {"name": "Gary Lee Davis", "character": "Gordon", "id": 32656, "credit_id": "52fe441c9251416c750291a1", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Jared Harris", "character": "Paddy", "id": 15440, "credit_id": "52fe441c9251416c750291a5", "cast_id": 25, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 14}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe441b9251416c75029139", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 5.9, "runtime": 140}, "11260": {"poster_path": "/qOnhIXHq12airS0iLMFpYoo9CZa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11, "overview": "A crew of miniature aliens operate a spaceship that has a human form. While trying to save their planet, the aliens encounter a new problem, as their ship becomes smitten with an Earth woman.", "video": false, "id": 11260, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Meet Dave", "tagline": "There's a Whole Other World Going on Inside of Him.", "vote_count": 73, "homepage": "http://www.meetdavemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765476", "adult": false, "backdrop_path": "/dvzGZAJOYDVqSjTJTst6x6Wu7Fi.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Guy Walks into a Bar Productions", "id": 2645}, {"name": "Deep River Productions", "id": 2646}], "release_date": "2008-07-08", "popularity": 0.452781858174432, "original_title": "Meet Dave", "budget": 60, "cast": [{"name": "Eddie Murphy", "character": "Dave Ming Chang / Kapit\u00e4n", "id": 776, "credit_id": "52fe441c9251416c75029229", "cast_id": 14, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Gina Morrison", "id": 9281, "credit_id": "52fe441c9251416c7502922d", "cast_id": 15, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Gabrielle Union", "character": "Nr.3- Kulturoffizierin", "id": 17773, "credit_id": "52fe441c9251416c75029231", "cast_id": 16, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 2}, {"name": "Scott Caan", "character": "Dooley", "id": 1894, "credit_id": "52fe441c9251416c75029235", "cast_id": 17, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 3}, {"name": "Ed Helms", "character": "Nr.2- Stellvertreter des Kapit\u00e4ns", "id": 27105, "credit_id": "52fe441c9251416c75029239", "cast_id": 18, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 4}, {"name": "Kevin Hart", "character": "Nr. 17", "id": 55638, "credit_id": "52fe441c9251416c7502923d", "cast_id": 19, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 5}, {"name": "Pat Kilbane", "character": "Nr.4- Sicherheitsoffizier", "id": 68836, "credit_id": "52fe441c9251416c75029241", "cast_id": 21, "profile_path": "/4GUyFuVlpedrN2iucZmfEXuoGu9.jpg", "order": 6}, {"name": "Judah Friedlander", "character": "Ingenieur", "id": 52860, "credit_id": "52fe441c9251416c75029245", "cast_id": 22, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 7}, {"name": "Marc Blucas", "character": "Mark", "id": 46772, "credit_id": "52fe441c9251416c75029249", "cast_id": 23, "profile_path": "/5OdBu0DFKca1mxjeqNruz00DSRF.jpg", "order": 8}, {"name": "Jim Turner", "character": "Doktor", "id": 58768, "credit_id": "52fe441c9251416c7502924d", "cast_id": 24, "profile_path": "/mujwEKBe86I89VblEvK3zQbE81j.jpg", "order": 9}, {"name": "Austyn Myers", "character": "Josh Morrison", "id": 68837, "credit_id": "52fe441c9251416c75029251", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Mario Loya", "character": "Old Navy Customer", "id": 91274, "credit_id": "52fe441c9251416c75029255", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Mike O'Malley", "character": "Knox", "id": 87192, "credit_id": "52fe441c9251416c75029259", "cast_id": 27, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 12}, {"name": "Allisyn Ashley Arm", "character": "Nerdy Girl", "id": 154997, "credit_id": "52fe441c9251416c75029263", "cast_id": 29, "profile_path": "/rotyaTzDwEooYsy0HnP7wI6XMpF.jpg", "order": 13}], "directors": [{"name": "Brian Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe441c9251416c750291e3", "profile_path": "/l7UfY9nBeus8bHHXvf3mUmtagQJ.jpg", "id": 53177}], "vote_average": 5.3, "runtime": 90}, "19458": {"poster_path": "/lhmzN3E8kJxrqaRGr1THaFSyubT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Princess Rosalinda is about to become queen of her country of Costa Luna, the country is invaded by an evil dictator. She is put into the Princess Protection Program, a secret organization funded by royal families that looks after endangered princesses. Rosalinda is taken under the wing of Mason Verica, an agent in the PPP from rural Louisiana. While there, she meets his daughter,", "video": false, "id": 19458, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Princess Protection Program", "tagline": "Royality meets reality.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1196339", "adult": false, "backdrop_path": "/eFKjp8nqrOGCA616WkKW0G1agGx.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2009-06-18", "popularity": 0.380546122566904, "original_title": "Princess Protection Program", "budget": 0, "cast": [{"name": "Selena Gomez", "character": "Carter Mason", "id": 77948, "credit_id": "52fe47d99251416c750a7753", "cast_id": 1, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Demi Lovato", "character": "Rosalinda / Rosie Gonzales", "id": 85138, "credit_id": "52fe47d99251416c750a7757", "cast_id": 2, "profile_path": "/bfAQFvBe2M3FifZVfFnb3joqDnO.jpg", "order": 1}, {"name": "Jamie Chung", "character": "Chelsea Barnes", "id": 78324, "credit_id": "52fe47d99251416c750a775b", "cast_id": 3, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 2}, {"name": "Nicholas Braun", "character": "Ed", "id": 85139, "credit_id": "52fe47d99251416c750a775f", "cast_id": 4, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 3}, {"name": "Kevin G. Schmidt", "character": "Bull", "id": 85140, "credit_id": "52fe47d99251416c750a7763", "cast_id": 5, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 4}], "directors": [{"name": "Allison Liddi-Brown", "department": "Directing", "job": "Director", "credit_id": "52fe47d99251416c750a7769", "profile_path": "/zv2JC6RpBZMr2YHfPWllgbyLWMm.jpg", "id": 1213560}], "vote_average": 6.1, "runtime": 89}, "60420": {"poster_path": "/2fZBxMPmUdvDW7XKj9yD6RBpkRF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1076000, "overview": "A British college student falls for an American student, only to be separated from him when she's banned from the U.S. after overstaying her visa.", "video": false, "id": 60420, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Like Crazy", "tagline": "I Want You. I Need You. I Love You. I Miss You.", "vote_count": 92, "homepage": "http://www.likecrazy.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758692", "adult": false, "backdrop_path": "/llyyZzIlmReLc2Gd5CiGbercbjk.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Andrea Sperling Productions", "id": 2313}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "Super Crispy Entertainment", "id": 13369}, {"name": "Ascension Productions", "id": 21892}], "release_date": "2011-10-28", "popularity": 0.269380911330428, "original_title": "Like Crazy", "budget": 250000, "cast": [{"name": "Anton Yelchin", "character": "Jacob", "id": 21028, "credit_id": "52fe4623c3a368484e080d75", "cast_id": 1, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Felicity Jones", "character": "Anna", "id": 72855, "credit_id": "52fe4623c3a368484e080d79", "cast_id": 2, "profile_path": "/gU3lCDCdiY1uAVGFFyTcSQ3M7E8.jpg", "order": 1}, {"name": "Jennifer Lawrence", "character": "Sam", "id": 72129, "credit_id": "52fe4623c3a368484e080d7d", "cast_id": 3, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 2}, {"name": "Charlie Bewley", "character": "Simon", "id": 84221, "credit_id": "52fe4623c3a368484e080d81", "cast_id": 4, "profile_path": "/3uiZaU1NwEPNmiAZT2vJM7EeXvb.jpg", "order": 3}, {"name": "Alex Kingston", "character": "Jackie", "id": 83701, "credit_id": "52fe4623c3a368484e080d85", "cast_id": 5, "profile_path": "/xhTlKeijcYEudc70FXt2ZcBBtpU.jpg", "order": 4}, {"name": "Oliver Muirhead", "character": "Bernard", "id": 93035, "credit_id": "52fe4623c3a368484e080d89", "cast_id": 6, "profile_path": "/vyWab6wD6r3yP56FA87hwInmdPZ.jpg", "order": 5}, {"name": "Finola Hughes", "character": "Liz", "id": 66881, "credit_id": "52fe4623c3a368484e080d8d", "cast_id": 7, "profile_path": "/yOiawt1x8XAYYblM0WVdiGuqjiI.jpg", "order": 6}, {"name": "Chris Messina", "character": "Mike Appletree", "id": 61659, "credit_id": "52fe4623c3a368484e080d91", "cast_id": 8, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 7}, {"name": "Ben York Jones", "character": "Ross", "id": 132963, "credit_id": "52fe4623c3a368484e080d95", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Edy Ganem", "character": "Isabelle", "id": 1293753, "credit_id": "5302248dc3a3680a1132f31f", "cast_id": 15, "profile_path": "/qAXuUs5vDbColJKpMj5ZiiwH7g6.jpg", "order": 9}], "directors": [{"name": "Drake Doremus", "department": "Directing", "job": "Director", "credit_id": "52fe4623c3a368484e080d9b", "profile_path": "/6giCKXwwLyJAb1AShikj82TexCd.jpg", "id": 132964}], "vote_average": 6.7, "runtime": 90}, "175112": {"poster_path": "/tgninaaS0wn1qV3M57jX0Cfeils.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20300000, "overview": "When a misunderstood dust-keeper fairy named Zarina steals Pixie Hollow's all-important Blue Pixie Dust and flies away to join forces with the pirates of Skull Rock, Tinker Bell and her fairy friends must embark on the adventure of a lifetime to return it to its rightful place.", "video": false, "id": 175112, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Pirate Fairy", "tagline": "", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nTEOjP7JpFa9VZlawzqNBy4g5KY.jpg", "id": 315595, "name": "Tinker Bell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2483260", "adult": false, "backdrop_path": "/1DfcGAQ4EVIZFnveo1IzHFtgFTS.jpg", "production_companies": [{"name": "Prana Studios", "id": 18713}, {"name": "Prana Animation Studios", "id": 22135}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2014-04-01", "popularity": 2.10577424452301, "original_title": "The Pirate Fairy", "budget": 0, "cast": [{"name": "Mae Whitman", "character": "Tinker Bell (voice)", "id": 52404, "credit_id": "52fe4d58c3a36847f825bfe9", "cast_id": 1, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 0}, {"name": "Tom Hiddleston", "character": "Captain Hook (voice)", "id": 91606, "credit_id": "52fe4d58c3a36847f825bfed", "cast_id": 2, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 1}, {"name": "Christina Hendricks", "character": "Zarina (voice)", "id": 110014, "credit_id": "52fe4d58c3a36847f825bff1", "cast_id": 4, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 2}, {"name": "Pamela Adlon", "character": "Vidia (voice)", "id": 21063, "credit_id": "530b998e92514158ca000068", "cast_id": 6, "profile_path": "/8zunKeNg9XTpmDQjokeEi3K6hvG.jpg", "order": 3}, {"name": "Angela Bartys", "character": "Fawn (voice)", "id": 93842, "credit_id": "5431315e0e0a2658b200194e", "cast_id": 21, "profile_path": "/iOt35bRDbdOOXVeW5b3ElfOowK7.jpg", "order": 4}, {"name": "Jeff Bennett", "character": "Dewey (voice)", "id": 34982, "credit_id": "530b99a892514158c7000054", "cast_id": 8, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 5}, {"name": "Jim Cummings", "character": "Oppenheimer (voice)", "id": 12077, "credit_id": "530b99b192514158c7000056", "cast_id": 9, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 6}, {"name": "Grey DeLisle", "character": "Gliss (voice)", "id": 15761, "credit_id": "530b99be92514158d800004c", "cast_id": 10, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 7}, {"name": "Lucy Hale", "character": "Periwinkle (voice)", "id": 205307, "credit_id": "530b99cb92514158c7000059", "cast_id": 11, "profile_path": "/osMiB2nzn0Dedtv0AkyOCDuNmqb.jpg", "order": 8}, {"name": "Megan Hilty", "character": "Rosetta (voice)", "id": 146748, "credit_id": "530b99d792514158c4000066", "cast_id": 12, "profile_path": "/1mmJSmnMjL7RS93ndFBJnPsAXvf.jpg", "order": 9}, {"name": "Lucy Liu", "character": "Silvermist (voice)", "id": 140, "credit_id": "5430f5f70e0a2658b200127b", "cast_id": 15, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 10}, {"name": "Raven-Symon\u00e9", "character": "Iridessa (voice)", "id": 66896, "credit_id": "5430f616c3a368114300123a", "cast_id": 16, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 11}, {"name": "Carlos Ponce", "character": "Bonito (voice)", "id": 62067, "credit_id": "5430f68ec3a368114300124b", "cast_id": 17, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 12}, {"name": "Mick Wingert", "character": "Starboard (voice)", "id": 971877, "credit_id": "5430f6afc3a368114300124f", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Kevin Michael Richardson", "character": "Yang (voice)", "id": 24362, "credit_id": "5430f6cac3a36831a6002a11", "cast_id": 19, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 14}, {"name": "Rob Paulsen", "character": "Bobble (voice)", "id": 43125, "credit_id": "5430f6f10e0a2658720012b8", "cast_id": 20, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 15}], "directors": [{"name": "Peggy Holmes", "department": "Directing", "job": "Director", "credit_id": "52fe4d58c3a36847f825bff7", "profile_path": null, "id": 80672}], "vote_average": 6.7, "runtime": 78}, "3082": {"poster_path": "/rHkLAGAo8j3MOYOVupwn4fafVBt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8500000, "overview": "The Tramp struggles to live in modern industrial society with the help of a young homeless woman.", "video": false, "id": 3082, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Modern Times", "tagline": "He stands alone as the greatest entertainer of modern times! No one on earth can make you laugh as heartily or touch your heart as deeply...the whole world laughs, cries and thrills to his priceless genius!", "vote_count": 247, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0027977", "adult": false, "backdrop_path": "/s58uDwuyVMqgsbmnfyrbpfF147.jpg", "production_companies": [{"name": "Charles Chaplin Productions", "id": 1315}], "release_date": "1936-02-05", "popularity": 0.813740957159585, "original_title": "Modern Times", "budget": 1500000, "cast": [{"name": "Charles Chaplin", "character": "A factory worker", "id": 13848, "credit_id": "52fe4383c3a36847f8059ee9", "cast_id": 8, "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "order": 0}, {"name": "Paulette Goddard", "character": "A gamin", "id": 14027, "credit_id": "52fe4383c3a36847f8059eed", "cast_id": 9, "profile_path": "/jxAbHtod2vVi2kUj0gp3sCzUYRe.jpg", "order": 1}, {"name": "Henry Bergman", "character": "Cafe proprietor", "id": 14438, "credit_id": "52fe4383c3a36847f8059ef1", "cast_id": 10, "profile_path": "/lXhkLU19RhgFD95zx84jjXhhyE.jpg", "order": 2}, {"name": "Tiny Sandford", "character": "Big Bill", "id": 30194, "credit_id": "52fe4383c3a36847f8059ef5", "cast_id": 11, "profile_path": "/4Tw4KnA3S8dhl9tIs2v9aa0Va1c.jpg", "order": 3}, {"name": "Chester Conklin", "character": "Mechanic", "id": 30195, "credit_id": "52fe4383c3a36847f8059ef9", "cast_id": 12, "profile_path": "/s9P3OhaUEMcs84P0oSfUewTMRjC.jpg", "order": 4}, {"name": "Hank Mann", "character": "Burglar", "id": 13856, "credit_id": "52fe4383c3a36847f8059efd", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Stanley Blystone", "character": "Gamin's father", "id": 30196, "credit_id": "52fe4383c3a36847f8059f01", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Al Ernest Garcia", "character": "President of the Electro Steel Corp.", "id": 13855, "credit_id": "52fe4383c3a36847f8059f05", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Richard Alexander", "character": "Cellmate", "id": 30197, "credit_id": "52fe4383c3a36847f8059f09", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Cecil Reynolds", "character": "Minister", "id": 30198, "credit_id": "52fe4383c3a36847f8059f0d", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Mira McKinney", "character": "Minister's wife", "id": 30199, "credit_id": "52fe4383c3a36847f8059f11", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Murdock MacQuarrie", "character": "J. Widdecombe Billows", "id": 30200, "credit_id": "52fe4383c3a36847f8059f15", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Wilfred Lucas", "character": "Juvenile officer", "id": 30201, "credit_id": "52fe4383c3a36847f8059f19", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Edward LeSaint", "character": "Sheriff Couler", "id": 30202, "credit_id": "52fe4383c3a36847f8059f1d", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Fred Malatesta", "character": "Head waiter", "id": 30203, "credit_id": "52fe4383c3a36847f8059f21", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Sammy Stein", "character": "Turbine operator", "id": 30204, "credit_id": "52fe4383c3a36847f8059f25", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Juana Sutton", "character": "Woman with buttoned bosom", "id": 30205, "credit_id": "52fe4383c3a36847f8059f29", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Ted Oliver", "character": "Billows' assistant", "id": 30206, "credit_id": "52fe4383c3a36847f8059f2d", "cast_id": 25, "profile_path": null, "order": 17}], "directors": [{"name": "Charles Chaplin", "department": "Directing", "job": "Director", "credit_id": "52fe4383c3a36847f8059ec1", "profile_path": "/bVb2oQLRef7oixkSvqj7KGelM9Q.jpg", "id": 13848}], "vote_average": 7.9, "runtime": 87}, "44048": {"poster_path": "/b2uI9tSssC4D7vCgdES6IZJXuCs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167805466, "overview": "A runaway train, transporting deadly, toxic chemicals, is barreling down on Stanton, Pennsylvania, and only two men can stop it: a veteran engineer and a young conductor. Thousands of lives hang in the balance as these ordinary heroes attempt to chase down one million tons of hurtling steel and prevent an epic disaster.", "video": false, "id": 44048, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Unstoppable", "tagline": "1,000,000 Tons. 100,000 Lives. 100 Minutes.", "vote_count": 335, "homepage": "http://www.unstoppablemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477080", "adult": false, "backdrop_path": "/pddDWflAgEUex06MOjfRmAl9ZWq.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Prospect Park", "id": 19776}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Firm Films", "id": 1838}, {"name": "Millbrook Farm Productions", "id": 19777}], "release_date": "2010-11-12", "popularity": 1.20040746688071, "original_title": "Unstoppable", "budget": 100000000, "cast": [{"name": "Denzel Washington", "character": "Frank Barnes", "id": 5292, "credit_id": "52fe4674c3a36847f80ffef3", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Chris Pine", "character": "Will Gordon", "id": 62064, "credit_id": "52fe4674c3a36847f80ffef7", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Connie Hooper", "id": 5916, "credit_id": "52fe4674c3a36847f80ffefb", "cast_id": 3, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Jessy Schram", "character": "Darcy Gordon", "id": 26974, "credit_id": "52fe4674c3a36847f80ffeff", "cast_id": 4, "profile_path": "/xIU2h01K7fL46RdjZ1mqY9Hvtxm.jpg", "order": 3}, {"name": "Elizabeth Mathis", "character": "Nicole Barnes", "id": 130108, "credit_id": "52fe4674c3a36847f80fff03", "cast_id": 5, "profile_path": "/uOI0gbMG6D6j5IDM6h2kxYcsqn0.jpg", "order": 3}, {"name": "Ethan Suplee", "character": "Dewey", "id": 824, "credit_id": "52fe4674c3a36847f80fff0d", "cast_id": 9, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 4}, {"name": "Kevin Dunn", "character": "Oscar Galvin", "id": 14721, "credit_id": "52fe4674c3a36847f80fff11", "cast_id": 10, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 5}, {"name": "Kevin Corrigan", "character": "Scott Werner", "id": 18472, "credit_id": "52fe4674c3a36847f80fff15", "cast_id": 11, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 6}, {"name": "Kevin Chapman", "character": "Bunny", "id": 4728, "credit_id": "52fe4674c3a36847f80fff19", "cast_id": 12, "profile_path": "/7uhnHTZ8W4FsSTtbBSCuyeGGqlK.jpg", "order": 7}, {"name": "Lew Temple", "character": "Ned Oldham", "id": 37027, "credit_id": "52fe4674c3a36847f80fff1d", "cast_id": 13, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 8}, {"name": "T.J. Miller", "character": "Gilleece", "id": 51990, "credit_id": "52fe4674c3a36847f80fff21", "cast_id": 14, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 9}, {"name": "David Warshofsky", "character": "Judd Stewart", "id": 37204, "credit_id": "52fe4674c3a36847f80fff25", "cast_id": 16, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 11}, {"name": "Andy Umberger", "character": "Janeway", "id": 142204, "credit_id": "52fe4674c3a36847f80fff29", "cast_id": 17, "profile_path": "/nDuiFTa0qzfaD1KFmoq97Ae10N9.jpg", "order": 12}, {"name": "Meagan Tandy", "character": "Maya Barnes", "id": 142205, "credit_id": "52fe4674c3a36847f80fff2d", "cast_id": 18, "profile_path": "/ucSUkzvLFRWIbPdpDgMlTogdFhZ.jpg", "order": 13}, {"name": "Dylan Bruce", "character": "Michael Colson (as Dylan L. Bruce)", "id": 142206, "credit_id": "52fe4674c3a36847f80fff31", "cast_id": 19, "profile_path": "/mbzxOy15D2RjGxhlYIwtgfms849.jpg", "order": 14}, {"name": "Chase Ellison", "character": "Teenage Witness", "id": 64148, "credit_id": "52fe4674c3a36847f80fff77", "cast_id": 31, "profile_path": "/zNDpEo3p5zJPxwFlbRJfVtLSeCj.jpg", "order": 15}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a36847f80fff09", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.2, "runtime": 98}, "11281": {"poster_path": "/xABk00mhTfhbmadgaWGvG2ydsvT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25533818, "overview": "After failing to kill stubborn survivor Laurie and taking a bullet or six from former psychiatrist Dr. Sam Loomis, Michael Myers has followed Laurie to the Haddonfield Memorial Hospital, where she's been admitted for Myers' attempt on her life. The institution proves to be particularly suited to serial killers, however, as Myers cuts, stabs and slashes his way through hospital staff to reach his favorite victim.", "video": false, "id": 11281, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Halloween II", "tagline": "The nightmare isn't over!", "vote_count": 54, "homepage": "http://www.halloweenmovies.com/", "belongs_to_collection": {"backdrop_path": "/mmxf1sOe2T1sma0tH0TgTdcit1p.jpg", "poster_path": "/2uqHV6YcD9jEL2WuJYjXiiuRDqd.jpg", "id": 91361, "name": "Halloween Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082495", "adult": false, "backdrop_path": "/7pUKrrLS59rU8tXlj7VBhENqflv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1981-10-30", "popularity": 0.471496640802333, "original_title": "Halloween II", "budget": 2500000, "cast": [{"name": "Jamie Lee Curtis", "character": "Laurie Strode", "id": 8944, "credit_id": "52fe441c9251416c75029347", "cast_id": 1, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 0}, {"name": "Donald Pleasence", "character": "Dr. Sam Loomis", "id": 9221, "credit_id": "52fe441c9251416c7502934b", "cast_id": 2, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 1}, {"name": "Charles Cyphers", "character": "Sheriff Leigh Brackett", "id": 11786, "credit_id": "52fe441c9251416c7502934f", "cast_id": 3, "profile_path": "/pglMfoHMVEcziDlnl33DrZjRSM3.jpg", "order": 2}, {"name": "Jeffrey Kramer", "character": "Graham", "id": 8609, "credit_id": "52fe441c9251416c75029353", "cast_id": 4, "profile_path": "/8iolA9KzJA6oHHuMMFUhPnHBV1b.jpg", "order": 3}, {"name": "Lance Guest", "character": "Jimmy Lloyd", "id": 16213, "credit_id": "52fe441c9251416c75029357", "cast_id": 5, "profile_path": "/7bzggMGfzqYNMiObpAJ8IU8LZ7Q.jpg", "order": 4}, {"name": "Pamela Susan Shoop", "character": "Karen", "id": 151423, "credit_id": "52fe441d9251416c750293a9", "cast_id": 19, "profile_path": "/iK2vsvbv9mMJpD4ZDpWGv2PzWft.jpg", "order": 5}, {"name": "Hunter von Leer", "character": "Deputy Gary Hunt", "id": 119855, "credit_id": "52fe441d9251416c750293ad", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Dick Warlock", "character": "The Shape / Patrolman #3", "id": 14663, "credit_id": "52fe441d9251416c750293b1", "cast_id": 21, "profile_path": "/n0TfOxlMYfqxclyRAN4kj2dajkk.jpg", "order": 7}, {"name": "Leo Rossi", "character": "Budd", "id": 67524, "credit_id": "52fe441d9251416c750293b5", "cast_id": 22, "profile_path": "/giRD3mgdg6KG1Nwua5FVkvqPKFQ.jpg", "order": 8}, {"name": "Gloria Gifford", "character": "Mrs. Alves", "id": 92587, "credit_id": "52fe441d9251416c750293b9", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Tawny Moyer", "character": "Jill", "id": 162733, "credit_id": "52fe441d9251416c750293bd", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Ana Alicia", "character": "Janet", "id": 109622, "credit_id": "52fe441d9251416c750293c1", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Ford Rainey", "character": "Dr. Mixter", "id": 83812, "credit_id": "52fe441d9251416c750293c5", "cast_id": 26, "profile_path": "/ySS8F1QyR4qh9ROJcGuYCWXJA2s.jpg", "order": 12}, {"name": "Cliff Emmich", "character": "Mr. Garrett", "id": 101755, "credit_id": "52fe441d9251416c750293c9", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Nancy Stephens", "character": "Marion", "id": 15508, "credit_id": "52fe441d9251416c750293cd", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Nancy Kyes", "character": "Annie Brackett", "id": 11787, "credit_id": "52fe441d9251416c750293d1", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Anne Bruner", "character": "Alice", "id": 178224, "credit_id": "52fe441d9251416c750293d5", "cast_id": 30, "profile_path": null, "order": 16}], "directors": [{"name": "Rick Rosenthal", "department": "Directing", "job": "Director", "credit_id": "52fe441c9251416c7502935d", "profile_path": null, "id": 33341}], "vote_average": 6.8, "runtime": 92}, "11282": {"poster_path": "/wmLW4WTxXTTzD3nruLVWTl3m55b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23936908, "overview": "Sometimes, it takes a strange night to put everything else into focus. And that's exactly what happens to Harold and his roommate, Kumar, when they set out to get the best stoner fix money can buy: White Castle hamburgers. Both guys are at a crossroads, about to make major decisions that will affect the course of their lives. Yet they arrive at wisdom by accident as they drive around New Jersey in search of fast food.", "video": false, "id": 11282, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Harold & Kumar Go to White Castle", "tagline": "Fast Food. High Times.", "vote_count": 245, "homepage": "", "belongs_to_collection": {"backdrop_path": "/b70mFgsSn2hl3CvC0nRx0SHUEX0.jpg", "poster_path": "/9OBP4MQBAXnBZ1uXLZykIWRGnBb.jpg", "id": 30663, "name": "Harold & Kumar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt0366551", "adult": false, "backdrop_path": "/nCP8WeXDgFf2WQmnFaDjTWTo59L.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2004-05-30", "popularity": 0.62171021897455, "original_title": "Harold & Kumar Go to White Castle", "budget": 9000000, "cast": [{"name": "John Cho", "character": "Harold Lee", "id": 68842, "credit_id": "52fe441d9251416c7502940b", "cast_id": 1, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 0}, {"name": "Kal Penn", "character": "Kumar Patel", "id": 53493, "credit_id": "52fe441d9251416c7502940f", "cast_id": 2, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 1}, {"name": "Paula Garc\u00e9s", "character": "Maria", "id": 21124, "credit_id": "52fe441d9251416c75029413", "cast_id": 3, "profile_path": "/bc1NhQCaUsoJFCi6vIGxiljQl86.jpg", "order": 2}, {"name": "Neil Patrick Harris", "character": "Neil Patrick Harris", "id": 41686, "credit_id": "52fe441d9251416c75029417", "cast_id": 4, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 3}, {"name": "David Krumholtz", "character": "Goldstein", "id": 38582, "credit_id": "52fe441d9251416c7502941b", "cast_id": 5, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 4}, {"name": "Malin Akerman", "character": "Liane", "id": 50463, "credit_id": "52fe441d9251416c75029473", "cast_id": 21, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 5}, {"name": "Brooke D'Orsay", "character": "Clarissa", "id": 42297, "credit_id": "52fe441d9251416c75029477", "cast_id": 22, "profile_path": "/EOVVzdsInYY7HFjUmvWIRyL8bS.jpg", "order": 6}, {"name": "Steve Braun", "character": "Cole", "id": 10867, "credit_id": "52fe441d9251416c7502947b", "cast_id": 23, "profile_path": "/wtLIbojDvKr0bGuTKng5DqO6w36.jpg", "order": 7}, {"name": "Fred Willard", "character": "Dr. Willoughby", "id": 20753, "credit_id": "52fe441d9251416c7502947f", "cast_id": 24, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 8}, {"name": "Robert Tinkler", "character": "J.D.", "id": 118814, "credit_id": "52fe441d9251416c75029483", "cast_id": 25, "profile_path": null, "order": 9}], "directors": [{"name": "Danny Leiner", "department": "Directing", "job": "Director", "credit_id": "52fe441d9251416c75029421", "profile_path": "/baaonHW8JdQXyuQJODB0UvQfTAi.jpg", "id": 56591}], "vote_average": 6.2, "runtime": 88}, "11283": {"poster_path": "/2DyvZv9hExVjZtL7861gWrxcrR6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122489822, "overview": "Emma Thompson stars as a governess who uses magic to rein in the behavior of seven ne'er-do-well children in her charge.", "video": false, "id": 11283, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Nanny McPhee", "tagline": "You'll Learn To Love Her. Warts And All.", "vote_count": 130, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zxj5yar9KeGiCfZu57GfalPsBbL.jpg", "poster_path": "/iM75l6CCjaMOLUAIyAEfv6ISyQJ.jpg", "id": 35792, "name": "Nanny McPhee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0396752", "adult": false, "backdrop_path": "/6KMnX8fWgMOVkPK1UjYyzao2nPD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}], "release_date": "2005-10-21", "popularity": 0.602882713521174, "original_title": "Nanny McPhee", "budget": 25000000, "cast": [{"name": "Emma Thompson", "character": "Nanny McPhee", "id": 7056, "credit_id": "52fe441d9251416c750294bb", "cast_id": 1, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 0}, {"name": "Colin Firth", "character": "Mr. Brown", "id": 5472, "credit_id": "52fe441d9251416c750294bf", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Kelly Macdonald", "character": "Evangeline", "id": 9015, "credit_id": "52fe441d9251416c750294c3", "cast_id": 3, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 2}, {"name": "Thomas Sangster", "character": "Simon", "id": 25663, "credit_id": "52fe441d9251416c750294c7", "cast_id": 4, "profile_path": "/x8floQ1YshVhPdwdTQDz9aJjuXE.jpg", "order": 3}, {"name": "Eliza Bennett", "character": "Tora", "id": 23775, "credit_id": "52fe441d9251416c750294cb", "cast_id": 5, "profile_path": "/fdJ729tbU48xUNVqG4k27NrPYMg.jpg", "order": 4}, {"name": "Rapha\u00ebl Coleman", "character": "Eric", "id": 89827, "credit_id": "52fe441d9251416c75029517", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Samuel Honywood", "character": "Sebastian", "id": 150544, "credit_id": "52fe441d9251416c7502951b", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Angela Lansbury", "character": "Aunt Adelaide", "id": 14730, "credit_id": "52fe441d9251416c7502951f", "cast_id": 20, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 7}, {"name": "Celia Imrie", "character": "Mrs. Quickly", "id": 9139, "credit_id": "52fe441d9251416c75029523", "cast_id": 21, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 8}, {"name": "Imelda Staunton", "character": "Mrs. Blatherwick", "id": 11356, "credit_id": "52fe441d9251416c75029527", "cast_id": 22, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 9}, {"name": "Elizabeth Berrington", "character": "Letita", "id": 42998, "credit_id": "52fe441d9251416c7502952b", "cast_id": 23, "profile_path": "/kMipntnzem6NBzy0pCTBjc7eKxd.jpg", "order": 10}, {"name": "Derek Jacobi", "character": "Mr. Wheen", "id": 937, "credit_id": "52fe441d9251416c7502952f", "cast_id": 24, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 11}, {"name": "Phyllida Law", "character": "Mrs. Partridge (voice)", "id": 17787, "credit_id": "52fe441d9251416c75029533", "cast_id": 25, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 12}], "directors": [{"name": "Kirk Jones", "department": "Directing", "job": "Director", "credit_id": "52fe441d9251416c750294d1", "profile_path": "/uvQskd4gGNN2J91kUnn1lGl2W3d.jpg", "id": 64045}], "vote_average": 6.1, "runtime": 97}, "11284": {"poster_path": "/m4IFNmheHcjbLsVWbUq9TIpWL5S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34872033, "overview": "Just when you thought it was safe to sleep, Freddy Krueger returns in this sixth installment of the Nightmare on Elm Street films, as psychologist Maggie Burroughs, tormented by recurring nightmares, meets a patient with the same horrific dreams. Their quest for answers leads to a certain house on Elm Street -- where the nightmares become reality.", "video": false, "id": 11284, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Freddy's Dead: The Final Nightmare", "tagline": "They saved the best for last.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101917", "adult": false, "backdrop_path": "/atDDJBJ9eUeXbySh6wFbUBIQlQ1.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1991-09-05", "popularity": 0.882860848894649, "original_title": "Freddy's Dead: The Final Nightmare", "budget": 11000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe441d9251416c7502958b", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Lisa Zane", "character": "Maggie Burroughs", "id": 68848, "credit_id": "52fe441d9251416c7502958f", "cast_id": 2, "profile_path": "/rOYsHyqk5Jr4lKwQFnPbnBFVEGZ.jpg", "order": 1}, {"name": "Shon Greenblatt", "character": "John Doe", "id": 68849, "credit_id": "52fe441d9251416c75029593", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Lezlie Deane", "character": "Tracy", "id": 68850, "credit_id": "52fe441d9251416c75029597", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Ricky Dean Logan", "character": "Carlos", "id": 68851, "credit_id": "52fe441d9251416c7502959b", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Breckin Meyer", "character": "Spencer", "id": 33654, "credit_id": "52fe441d9251416c750295d5", "cast_id": 15, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 5}, {"name": "Yaphet Kotto", "character": "Doc", "id": 5050, "credit_id": "52fe441d9251416c750295d9", "cast_id": 16, "profile_path": "/eesKCL1EONaxxCDTTC3teuMyhrd.jpg", "order": 6}, {"name": "Tom Arnold", "character": "Childless Man", "id": 74036, "credit_id": "52fe441e9251416c750295dd", "cast_id": 17, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 7}, {"name": "Roseanne Barr", "character": "Childless Woman", "id": 46393, "credit_id": "5305c75f92514134a217df61", "cast_id": 42, "profile_path": "/p36LMNfQssOQb5vUyYJRBEhQsaR.jpg", "order": 8}, {"name": "Elinor Donahue", "character": "Orphanage Woman", "id": 1209, "credit_id": "52fe441e9251416c750295e5", "cast_id": 19, "profile_path": "/mEsZ2YLvmni9S1dUS1pTeQYhdf3.jpg", "order": 9}, {"name": "Johnny Depp", "character": "Guy on TV (as Oprah Noodlemantra)", "id": 85, "credit_id": "52fe441e9251416c750295e9", "cast_id": 20, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 10}, {"name": "Cassandra Rachel Friel", "character": "Little Maggie / Katherine Krueger", "id": 553765, "credit_id": "52fe441e9251416c750295ed", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "David Dunard", "character": "Kelly", "id": 105708, "credit_id": "52fe441e9251416c750295f1", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Marilyn Rockafellow", "character": "Mrs. Burroughs", "id": 171005, "credit_id": "52fe441e9251416c750295f5", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Virginia Peters", "character": "Woman in Plane", "id": 165659, "credit_id": "52fe441e9251416c750295f9", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Stella Hall", "character": "Stewardess", "id": 551937, "credit_id": "52fe441e9251416c750295fd", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Lindsey Fields", "character": "Loretta Krueger", "id": 166609, "credit_id": "52fe441e9251416c75029601", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Angelina Estrada", "character": "Carlos' Mother", "id": 3424, "credit_id": "52fe441e9251416c75029605", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Peter Spellos", "character": "Tracy's Father", "id": 9659, "credit_id": "52fe441e9251416c75029609", "cast_id": 28, "profile_path": "/sj2YF20Rqe8uvS1QQajCV5bdaky.jpg", "order": 18}, {"name": "Tobe Sexton", "character": "Teen Freddy", "id": 42530, "credit_id": "52fe441e9251416c7502960d", "cast_id": 29, "profile_path": "/eFbUkbcf8Da4rQTpK6wbOlWsToA.jpg", "order": 19}, {"name": "Chason Schirmer", "character": "Young Freddy", "id": 553766, "credit_id": "52fe441e9251416c75029611", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Michael McNab", "character": "Spencer's Father", "id": 152286, "credit_id": "52fe441e9251416c75029615", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Matthew Faison", "character": "Springwood Teacher", "id": 98555, "credit_id": "52fe441e9251416c75029619", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Vic Watterson", "character": "Officer #1", "id": 553767, "credit_id": "52fe441e9251416c7502961d", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Carlease Burke", "character": "Officer #2", "id": 149486, "credit_id": "52fe441e9251416c75029621", "cast_id": 34, "profile_path": "/vqYAwiodYB8a02iLqM2iYLqPQvR.jpg", "order": 24}, {"name": "Robert Shaye", "character": "Ticket Seller (as L.E. Moko)", "id": 13663, "credit_id": "52fe441e9251416c75029625", "cast_id": 35, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 25}, {"name": "Warren Barrington", "character": "Cop in Shelter", "id": 170132, "credit_id": "52fe441e9251416c75029629", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Mel Scott-Thomas", "character": "Security Guard", "id": 553768, "credit_id": "52fe441e9251416c7502962d", "cast_id": 37, "profile_path": "/n4M13BUQKq98CNqaJys5Y0AsQKj.jpg", "order": 27}, {"name": "Jonathan Mazer", "character": "Angry Boy", "id": 553769, "credit_id": "52fe441e9251416c75029631", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Frank Catalano", "character": "Various (uncredited)", "id": 553770, "credit_id": "52fe441e9251416c75029635", "cast_id": 39, "profile_path": "/vUfSqcD87ZmnrQd6Fn1HCBxby1J.jpg", "order": 29}, {"name": "Alice Cooper", "character": "Freddy's Father (uncredited)", "id": 35824, "credit_id": "52fe441e9251416c75029639", "cast_id": 40, "profile_path": "/Aj964wqD6ItA2rwSBKlgl0kzuGf.jpg", "order": 30}, {"name": "Joshua Weisel", "character": "Freddy (uncredited)", "id": 553771, "credit_id": "52fe441e9251416c7502963d", "cast_id": 41, "profile_path": null, "order": 31}], "directors": [{"name": "Rachel Talalay", "department": "Directing", "job": "Director", "credit_id": "52fe441d9251416c750295a1", "profile_path": null, "id": 56891}], "vote_average": 5.5, "runtime": 89}, "11287": {"poster_path": "/lchzTUKbC8fXkHhUJata0n1H6RL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 107458785, "overview": "Small-town sisters Dottie and Kit join an all-female baseball league formed after World War II brings pro baseball to a standstill. When their team hits the road with its drunken coach, the siblings find troubles and triumphs on and off the field.", "video": false, "id": 11287, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "A League of Their Own", "tagline": "To achieve the incredible, you have to attempt the impossible.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0104694", "adult": false, "backdrop_path": "/y7KGSKgLRRrEm8InmItPF266UYV.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Parkway Productions", "id": 1350}], "release_date": "1992-07-01", "popularity": 0.341746404993555, "original_title": "A League of Their Own", "budget": 40000000, "cast": [{"name": "Tom Hanks", "character": "Jimmy Dugan", "id": 31, "credit_id": "52fe441e9251416c750297e3", "cast_id": 9, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Geena Davis", "character": "Dottie Hinson", "id": 16935, "credit_id": "52fe441e9251416c750297e7", "cast_id": 10, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 1}, {"name": "Madonna", "character": "Mae Mordabito", "id": 3125, "credit_id": "52fe441e9251416c750297eb", "cast_id": 11, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 2}, {"name": "Lori Petty", "character": "Kit Keller", "id": 15309, "credit_id": "52fe441e9251416c750297ef", "cast_id": 12, "profile_path": "/u2D3zteSlOj4zLp7jBcGqQVBsR1.jpg", "order": 3}, {"name": "Jon Lovitz", "character": "Ernie Capadino", "id": 16165, "credit_id": "52fe441e9251416c750297f3", "cast_id": 13, "profile_path": "/C18Sj9Tug4e3PraU6npOmoVgEq.jpg", "order": 4}, {"name": "David Strathairn", "character": "Ira Lowenstein", "id": 11064, "credit_id": "52fe441e9251416c750297f7", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 5}, {"name": "Garry Marshall", "character": "Walter Harvey", "id": 1201, "credit_id": "52fe441e9251416c750297fb", "cast_id": 15, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 6}, {"name": "Bill Pullman", "character": "Bob Hinson", "id": 8984, "credit_id": "52fe441e9251416c750297ff", "cast_id": 16, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 7}, {"name": "Megan Cavanagh", "character": "Marla Hooch - 2nd Base", "id": 53570, "credit_id": "52fe441e9251416c75029803", "cast_id": 17, "profile_path": "/xZML4JXgD7Yd0f19hXhq7bXLXfC.jpg", "order": 8}, {"name": "Rosie O'Donnell", "character": "Doris Murphy - 3rd Base", "id": 12929, "credit_id": "52fe441e9251416c75029807", "cast_id": 18, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 9}, {"name": "Tracy Reiner", "character": "Betty 'Betty Spaghetti' Horn - Left Field", "id": 8189, "credit_id": "52fe441f9251416c7502980b", "cast_id": 19, "profile_path": "/fsmETZI9aoKZD1CvYlcaTsstuZ9.jpg", "order": 10}, {"name": "Bitty Schram", "character": "Evelyn Gardner - Right Field", "id": 138240, "credit_id": "52fe441f9251416c7502980f", "cast_id": 20, "profile_path": "/fcUmGsYdoK31CGxIyk1D4clnBK0.jpg", "order": 11}, {"name": "Don S. Davis", "character": "Charlie Collins, Racine Coach", "id": 15863, "credit_id": "52fe441f9251416c75029813", "cast_id": 21, "profile_path": "/w93ia4AoKKyRhgX2gzcW9IFJ3Xv.jpg", "order": 12}, {"name": "Ren\u00e9e Coleman", "character": "Alice Gaspers - Left Field / Center Field", "id": 138241, "credit_id": "52fe441f9251416c75029817", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Ann Cusack", "character": "Shirley Baker - Left Field", "id": 59260, "credit_id": "52fe441f9251416c7502981b", "cast_id": 23, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 14}, {"name": "Eddie Jones", "character": "Dave Hooch", "id": 8692, "credit_id": "52fe441f9251416c7502981f", "cast_id": 24, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 15}, {"name": "Freddie Simpson", "character": "Ellen Sue Gotlander", "id": 1077313, "credit_id": "52fe441f9251416c75029823", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Anne Ramsay", "character": "Helen Haley", "id": 25023, "credit_id": "52fe441f9251416c75029827", "cast_id": 26, "profile_path": "/wmATITkd0jQ2XHex1bQKDxtdpAP.jpg", "order": 17}, {"name": "Robin Knight", "character": "'Beans' Babbitt", "id": 1077314, "credit_id": "52fe441f9251416c7502982b", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Patti Pelton", "character": "Marbleann Wilkenson", "id": 156025, "credit_id": "52fe441f9251416c7502982f", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Kelli Simpkins", "character": "Beverly Dixon", "id": 163825, "credit_id": "52fe441f9251416c75029833", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Neezer Tarleton", "character": "Neezer Dalton", "id": 1077315, "credit_id": "52fe441f9251416c75029837", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "T\u00e9a Leoni", "character": "Racine 1st Base", "id": 4939, "credit_id": "52fe441f9251416c7502983b", "cast_id": 31, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 22}], "directors": [{"name": "Penny Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe441e9251416c750297b5", "profile_path": "/uNL3L08uZWuRJF542IAUR0VNXfz.jpg", "id": 14911}], "vote_average": 6.3, "runtime": 128}, "64689": {"poster_path": "/3WPa43edrQeLRFgXdiLiWnWV34a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14938570, "overview": "Jackie Cogan is an enforcer hired to restore order after three dumb guys rob a Mob protected card game, causing the local criminal economy to collapse.", "video": false, "id": 64689, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Killing Them Softly", "tagline": "In America you're on your own.", "vote_count": 292, "homepage": "http://killingthemsoftlymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1764234", "adult": false, "backdrop_path": "/jikIWGfMFq8YxYziXVFyqBI7e3o.jpg", "production_companies": [{"name": "Plan B Entertainment", "id": 81}, {"name": "Chockstone Pictures", "id": 13649}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Annapurna Pictures", "id": 13184}, {"name": "Inferno Entertainment", "id": 13648}], "release_date": "2012-11-30", "popularity": 0.898771224082838, "original_title": "Killing Them Softly", "budget": 28000000, "cast": [{"name": "Brad Pitt", "character": "Jackie Cogan", "id": 287, "credit_id": "52fe46e4c3a368484e0a9a51", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Scoot McNairy", "character": "Frankie", "id": 59233, "credit_id": "52fe46e4c3a368484e0a9a69", "cast_id": 7, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Mickey", "id": 4691, "credit_id": "52fe46e4c3a368484e0a9a59", "cast_id": 3, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Markie Trattman", "id": 11477, "credit_id": "52fe46e4c3a368484e0a9a55", "cast_id": 2, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Ben Mendelsohn", "character": "Russell", "id": 77335, "credit_id": "52fe46e4c3a368484e0a9a6d", "cast_id": 8, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 4}, {"name": "Richard Jenkins", "character": "Driver", "id": 28633, "credit_id": "52fe46e4c3a368484e0a9a75", "cast_id": 10, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 5}, {"name": "Vincent Curatola", "character": "Johnny Amato", "id": 171719, "credit_id": "52fe46e4c3a368484e0a9a71", "cast_id": 9, "profile_path": "/pFC7RYclvs1YDcuYhOrkAPOMdb7.jpg", "order": 6}, {"name": "Sam Shepard", "character": "Dillon", "id": 9880, "credit_id": "52fe46e4c3a368484e0a9a7d", "cast_id": 12, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 7}, {"name": "Slaine (George Carroll)", "character": "Kenny Gill", "id": 133067, "credit_id": "52fe46e4c3a368484e0a9aef", "cast_id": 32, "profile_path": "/wq0FQBzfiFfEXfjaGm3FE43IuTJ.jpg", "order": 8}, {"name": "Max Casella", "character": "Barry Caprio", "id": 7133, "credit_id": "52fe46e4c3a368484e0a9a79", "cast_id": 11, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 9}, {"name": "Trevor Long", "character": "Steve Caprio", "id": 1163266, "credit_id": "52fe46e4c3a368484e0a9ae7", "cast_id": 30, "profile_path": "/9klUYrviefNEzNcHTUVIKi1kUrb.jpg", "order": 10}, {"name": "Linara Washington", "character": "Hooker", "id": 155520, "credit_id": "52fe46e4c3a368484e0a9aeb", "cast_id": 31, "profile_path": "/zvHRQpZmEE8WiACP09GYkm2wyjS.jpg", "order": 11}], "directors": [{"name": "Andrew Dominik", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9a5f", "profile_path": "/r80gQB1iYTMSjnxQZYqSbvE66tq.jpg", "id": 37618}], "vote_average": 5.7, "runtime": 104}, "3114": {"poster_path": "/4cL3P7XPRH7Ihbc8jzVYbrk1Jlh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.", "video": false, "id": 3114, "genres": [{"id": 37, "name": "Western"}], "title": "The Searchers", "tagline": "He had to find her... he had to find her...", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0049730", "adult": false, "backdrop_path": "/iob9MPYquOckNbhhjFUazRDlgGG.jpg", "production_companies": [{"name": "C.V. Whitney Pictures", "id": 1322}], "release_date": "1956-03-13", "popularity": 0.510945785945736, "original_title": "The Searchers", "budget": 3750000, "cast": [{"name": "John Wayne", "character": "Ethan Edwards", "id": 4165, "credit_id": "52fe4388c3a36847f805b3f3", "cast_id": 10, "profile_path": "/8I83wLVUil6tIe50yb82LdEggFR.jpg", "order": 0}, {"name": "Jeffrey Hunter", "character": "Martin Pawley", "id": 30551, "credit_id": "52fe4388c3a36847f805b3f7", "cast_id": 11, "profile_path": "/vytx9GGm87e5jGt763oPeHsMXAA.jpg", "order": 1}, {"name": "Vera Miles", "character": "Laurie Jorgensen", "id": 7303, "credit_id": "52fe4388c3a36847f805b3fb", "cast_id": 12, "profile_path": "/qWP9L969DOSFgBhRV2Ik2ve8Z4r.jpg", "order": 2}, {"name": "Natalie Wood", "character": "Debbie Edwards (older)", "id": 2769, "credit_id": "52fe4388c3a36847f805b403", "cast_id": 14, "profile_path": "/iAFtRflUEWSUObRZaqHPxx5CWSn.jpg", "order": 3}, {"name": "Ward Bond", "character": "Rev. Capt. Samuel Johnston Clayton", "id": 4303, "credit_id": "52fe4388c3a36847f805b3ff", "cast_id": 13, "profile_path": "/y7WrIGuVPHlMaakPHRYNldxvZRf.jpg", "order": 4}, {"name": "John Qualen", "character": "Lars Jorgensen", "id": 4119, "credit_id": "52fe4388c3a36847f805b407", "cast_id": 15, "profile_path": "/nbXFHZo4TUpNnFGnADXfPwQIvEn.jpg", "order": 5}, {"name": "Olive Carey", "character": "Mrs. Jorgensen", "id": 30552, "credit_id": "52fe4388c3a36847f805b40b", "cast_id": 16, "profile_path": "/sEdBHXtghCgHUFT1pMQyhVKk6T0.jpg", "order": 6}, {"name": "Henry Brandon", "character": "Chief Cicatrice (Scar)", "id": 30553, "credit_id": "52fe4388c3a36847f805b40f", "cast_id": 17, "profile_path": "/xjkd8VhfGkYidjMiqJ4tjihLHsH.jpg", "order": 7}, {"name": "Ken Curtis", "character": "Charlie McCorry", "id": 30554, "credit_id": "52fe4388c3a36847f805b413", "cast_id": 18, "profile_path": "/rY1vWoI4hANlZ9wBT7RL4lMqqCB.jpg", "order": 8}, {"name": "Harry Carey, Jr.", "character": "Brad Jorgensen", "id": 4316, "credit_id": "52fe4388c3a36847f805b417", "cast_id": 19, "profile_path": "/7Via2uVuYnnz8gJ5qx0zXqIKTkz.jpg", "order": 9}, {"name": "Antonio Moreno", "character": "Emilio Gabriel Fernandez y Figueroa", "id": 30555, "credit_id": "52fe4388c3a36847f805b41b", "cast_id": 20, "profile_path": "/a19BasFcDM1lWAXKM27XMfHnyET.jpg", "order": 10}, {"name": "Hank Worden", "character": "Mose Harper", "id": 30299, "credit_id": "52fe4388c3a36847f805b41f", "cast_id": 21, "profile_path": "/n2vqVwUdNBjzWXRN3HIiMENxMBt.jpg", "order": 11}, {"name": "Beulah Archuletta", "character": "Wild Goose Flying in the Night Sky (Look)", "id": 30556, "credit_id": "52fe4388c3a36847f805b423", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Walter Coy", "character": "Aaron Edwards", "id": 30557, "credit_id": "52fe4388c3a36847f805b427", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Dorothy Jordan", "character": "Martha Edwards", "id": 30558, "credit_id": "52fe4388c3a36847f805b42b", "cast_id": 24, "profile_path": "/AwmgQVCqSlVyLkHSImvKpaKHEnf.jpg", "order": 14}, {"name": "Pippa Scott", "character": "Lucy Edwards", "id": 30559, "credit_id": "52fe4388c3a36847f805b42f", "cast_id": 25, "profile_path": "/aNghY1DDH7QppS4tTB8oAu7NJZC.jpg", "order": 15}, {"name": "Patrick Wayne", "character": "Lt. Greenhill", "id": 30560, "credit_id": "52fe4388c3a36847f805b433", "cast_id": 26, "profile_path": "/plZJV39nkOfo9kGEzmkvZKz19rU.jpg", "order": 16}, {"name": "Lana Wood", "character": "Debbie Edwards (younger)", "id": 10191, "credit_id": "52fe4388c3a36847f805b437", "cast_id": 27, "profile_path": "/8ENomc6bZLSADOFDxJaiyR0s8fJ.jpg", "order": 17}], "directors": [{"name": "John Ford", "department": "Directing", "job": "Director", "credit_id": "52fe4388c3a36847f805b3bf", "profile_path": "/nwkPz2ytSBiv1zFhrcg4kYJIK3d.jpg", "id": 8500}], "vote_average": 8.0, "runtime": 119}, "3116": {"poster_path": "/jEeyGsyoiRPwwxDkR1WWNT8eoyN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44785053, "overview": "A naive male prostitute and his sickly friend struggle to survive on the streets of New York City.", "video": false, "id": 3116, "genres": [{"id": 18, "name": "Drama"}], "title": "Midnight Cowboy", "tagline": "Whatever you hear about Midnight Cowboy is true.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064665", "adult": false, "backdrop_path": "/6bkR6eMCafikq0Nvi665MwsUddk.jpg", "production_companies": [{"name": "Florin Productions", "id": 1323}, {"name": "Jerome Hellman Productions", "id": 1324}], "release_date": "1969-05-25", "popularity": 1.13666500840352, "original_title": "Midnight Cowboy", "budget": 3600000, "cast": [{"name": "Dustin Hoffman", "character": "'Ratso' Rizzo", "id": 4483, "credit_id": "52fe4388c3a36847f805b511", "cast_id": 10, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Jon Voight", "character": "Joe Buck", "id": 10127, "credit_id": "52fe4388c3a36847f805b515", "cast_id": 11, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Sylvia Miles", "character": "Cass", "id": 19335, "credit_id": "52fe4388c3a36847f805b519", "cast_id": 12, "profile_path": "/osHOZQ4Mu9xyNDT79fgeSgJeLlH.jpg", "order": 2}, {"name": "John McGiver", "character": "Mr. O'Daniel", "id": 1943, "credit_id": "52fe4388c3a36847f805b51d", "cast_id": 13, "profile_path": "/4SPN4He1egZ60aIMNuh7tArx21x.jpg", "order": 3}, {"name": "Brenda Vaccaro", "character": "Shirley", "id": 30585, "credit_id": "52fe4388c3a36847f805b521", "cast_id": 14, "profile_path": "/fHVkcW5lLi915Y2JszN1lWB907a.jpg", "order": 4}, {"name": "Barnard Hughes", "character": "Towny", "id": 2549, "credit_id": "52fe4388c3a36847f805b525", "cast_id": 15, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 5}, {"name": "Ruth White", "character": "Sally Buck - Texas", "id": 8493, "credit_id": "52fe4388c3a36847f805b529", "cast_id": 16, "profile_path": "/fpz3aVtyHw3luNQxoRkYBlOOqIa.jpg", "order": 6}, {"name": "Jennifer Salt", "character": "Annie - Texas", "id": 41258, "credit_id": "52fe4388c3a36847f805b52d", "cast_id": 17, "profile_path": "/2Qyc9aLHRmeEFF69XiYpIxUI0bp.jpg", "order": 7}, {"name": "Gilman Rankin", "character": "Woodsy Niles - Texas (as Gil Rankin)", "id": 109957, "credit_id": "52fe4388c3a36847f805b531", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "T. Tom Marlow", "character": "Little Joe - Texas", "id": 1075091, "credit_id": "52fe4388c3a36847f805b535", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "George Eppersen", "character": "Ralph - Texas", "id": 1075092, "credit_id": "52fe4388c3a36847f805b539", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Georgann Johnson", "character": "Rich Lady - New York", "id": 14109, "credit_id": "52fe4388c3a36847f805b53d", "cast_id": 21, "profile_path": "/KFAp2rl3xtvdhqfcUbEHQeUM7o.jpg", "order": 11}, {"name": "Bob Balaban", "character": "The Young Student - New York", "id": 12438, "credit_id": "52fe4388c3a36847f805b541", "cast_id": 22, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 12}], "directors": [{"name": "John Schlesinger", "department": "Directing", "job": "Director", "credit_id": "52fe4388c3a36847f805b4dd", "profile_path": "/vFCJ4RxvHysxeiwcFsiSGg7Tgre.jpg", "id": 19304}], "vote_average": 7.2, "runtime": 113}, "34653": {"poster_path": "/k3nMMJzsT5xougUAyJ9G0oIVOjf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Adapted from a 1964 novel of the same name, the film follows a day in the life of George Falconer (Colin Firth), a British college professor reeling with the recent and sudden loss of his longtime parter. This traumatic event makes George challenge his own will to live as he seeks the console of close friend Charley (Juliane Moore) who is struggling with her own questions about life.", "video": false, "id": 34653, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Single Man", "tagline": "", "vote_count": 91, "homepage": "http://www.asingleman-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1315981", "adult": false, "backdrop_path": "/76l4nbcPbClrAtM3xypKy34TXLF.jpg", "production_companies": [{"name": "Fade to Black Productions", "id": 9351}, {"name": "Depth of Field", "id": 1473}, {"name": "Artina Films", "id": 2394}], "release_date": "2009-10-19", "popularity": 0.994982732248117, "original_title": "A Single Man", "budget": 7000000, "cast": [{"name": "Colin Firth", "character": "George", "id": 5472, "credit_id": "52fe45729251416c910329cf", "cast_id": 4, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Charley", "id": 1231, "credit_id": "52fe45729251416c910329d3", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Nicholas Hoult", "character": "Kenny", "id": 3292, "credit_id": "52fe45729251416c910329d7", "cast_id": 6, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 2}, {"name": "Matthew Goode", "character": "Jim", "id": 1247, "credit_id": "52fe45729251416c910329db", "cast_id": 7, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 3}, {"name": "Paulette Lamori", "character": "Alva", "id": 142380, "credit_id": "52fe45729251416c910329df", "cast_id": 8, "profile_path": "/jEN7bHjkaZ3gdkSak60wuXzchld.jpg", "order": 4}, {"name": "Ryan Simpkins", "character": "Jennifer Strunk", "id": 35027, "credit_id": "52fe45729251416c910329e3", "cast_id": 9, "profile_path": "/lTOB3hz1xPvgMKe3QhRAxvz2O6U.jpg", "order": 5}, {"name": "Ginnifer Goodwin", "character": "Mrs. Strunk", "id": 417, "credit_id": "52fe45729251416c910329e7", "cast_id": 10, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 6}, {"name": "Teddy Sears", "character": "Mr. Strunk", "id": 63540, "credit_id": "52fe45729251416c910329eb", "cast_id": 11, "profile_path": "/57umEw6wGHQzwQCZURWkKmcYIhd.jpg", "order": 7}, {"name": "Paul Butler", "character": "Christopher Strunk", "id": 162526, "credit_id": "52fe45729251416c91032a01", "cast_id": 17, "profile_path": "/hikZp4WHMaILaD0CDnWCfy4w03g.jpg", "order": 8}, {"name": "Aaron Sanders", "character": "Tom Strunk", "id": 142381, "credit_id": "52fe45729251416c910329ef", "cast_id": 13, "profile_path": "/hFoXiBCghlTKqBzC8gvGIVBGSHr.jpg", "order": 9}, {"name": "Keri Lynn Pratt", "character": "Blonde Secretary", "id": 77803, "credit_id": "52fe45729251416c910329f3", "cast_id": 14, "profile_path": "/qLrUKUM4GEzCuq5VTUFQNaJOB3Z.jpg", "order": 10}, {"name": "Elisabeth Harnois", "character": "Young Woman", "id": 78197, "credit_id": "52fe45729251416c910329fd", "cast_id": 16, "profile_path": "/bBVitNtkzupyXn8HKtLTduPclje.jpg", "order": 11}, {"name": "Lee Pace", "character": "Grant", "id": 72095, "credit_id": "52fe45729251416c91032a05", "cast_id": 18, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 12}, {"name": "Jon Kortajarena", "character": "Carlos", "id": 1316023, "credit_id": "536394c6c3a3681586002170", "cast_id": 20, "profile_path": null, "order": 13}], "directors": [{"name": "Tom Ford", "department": "Directing", "job": "Director", "credit_id": "52fe45729251416c910329bf", "profile_path": "/yyOaH6eVlraIqQFoNq5zYtswOmK.jpg", "id": 120615}], "vote_average": 7.2, "runtime": 101}, "11319": {"poster_path": "/46W2yCZgfhpeV1OOLeOCczoosXD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71215869, "overview": "What can two little mice possibly do to save an orphan girl who's fallen into evil hands? With a little cooperation and faith in oneself, anything is possible! As members of the mouse-run International Rescue Aid Society, Bernard and Miss Bianca respond to orphan Penny's call for help. The two mice search for clues with the help of an old cat named Rufus.", "video": false, "id": 11319, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Rescuers", "tagline": "Two tiny agents vs. the world's wickedest woman in a dazzling animated adventure!", "vote_count": 121, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/27YQ0qV5AolUQ4eX5caP0VbNLdQ.jpg", "id": 57971, "name": "The Rescuers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076618", "adult": false, "backdrop_path": "/bHRboVSfqYzILQSm4o7lPG031HT.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1977-06-22", "popularity": 1.44852952359893, "original_title": "The Rescuers", "budget": 1200000, "cast": [{"name": "Bob Newhart", "character": "Bernard (voice)", "id": 64930, "credit_id": "52fe44259251416c7502a5c9", "cast_id": 18, "profile_path": "/uBEjNF7rOgrG3aKlfq6xY5aPmSg.jpg", "order": 0}, {"name": "Eva Gabor", "character": "Miss Bianca (voice)", "id": 44714, "credit_id": "52fe44259251416c7502a5cd", "cast_id": 19, "profile_path": "/1TffwJuOCaQSHmiQoI3ShogsMTP.jpg", "order": 1}, {"name": "Geraldine Page", "character": "Madame Medusa (voice)", "id": 41283, "credit_id": "52fe44259251416c7502a5d1", "cast_id": 20, "profile_path": "/zyGpaCsHZUJRUyFUJNlTQ6dBs6F.jpg", "order": 2}, {"name": "Joe Flynn", "character": "Mr. Snoops (voice)", "id": 23586, "credit_id": "52fe44259251416c7502a5d5", "cast_id": 21, "profile_path": "/jUZjkepueZTzW6X4PaaMwPxD95.jpg", "order": 3}, {"name": "Jeanette Nolan", "character": "Ellie Mae (voice)", "id": 7520, "credit_id": "52fe44259251416c7502a5e5", "cast_id": 24, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 4}, {"name": "Pat Buttram", "character": "Luke (voice)", "id": 21460, "credit_id": "52fe44259251416c7502a5e9", "cast_id": 25, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 5}, {"name": "Jim Jordan", "character": "Orville (voice)", "id": 145529, "credit_id": "52fe44259251416c7502a5ed", "cast_id": 26, "profile_path": "/wUNY8o64iWH4T91kiLxZZlvsVQD.jpg", "order": 6}, {"name": "John McIntire", "character": "Rufus (voice)", "id": 53010, "credit_id": "52fe44259251416c7502a5f1", "cast_id": 27, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 7}, {"name": "Michelle Stacy", "character": "Penny (voice)", "id": 166120, "credit_id": "52fe44259251416c7502a5f5", "cast_id": 28, "profile_path": "/lQflyVFPkKgl8OS1uZmcUYypLku.jpg", "order": 8}, {"name": "Bernard Fox", "character": "The Chairman (voice)", "id": 8545, "credit_id": "52fe44259251416c7502a5f9", "cast_id": 29, "profile_path": "/1orZRZyhlkPBXVpfKSdtqzR9yZ9.jpg", "order": 9}, {"name": "Larry Clemmons", "character": "Gramps (voice)", "id": 57332, "credit_id": "52fe44259251416c7502a5fd", "cast_id": 30, "profile_path": "/A8SsomYXhY8yMju5N0pPj5xzcYK.jpg", "order": 10}, {"name": "James MacDonald", "character": "Evinrude (voice)", "id": 137461, "credit_id": "52fe44259251416c7502a601", "cast_id": 31, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 11}, {"name": "George Lindsey", "character": "Rabbit (voice)", "id": 141693, "credit_id": "52fe44259251416c7502a605", "cast_id": 32, "profile_path": "/dvlW5KWKZuub9nqkwwePA5Tf1yX.jpg", "order": 12}, {"name": "Bill McMillian", "character": "TV Announcer (voice)", "id": 1016690, "credit_id": "52fe44259251416c7502a609", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Dub Taylor", "character": "Digger (voice)", "id": 6463, "credit_id": "52fe44259251416c7502a60d", "cast_id": 34, "profile_path": "/5wKqmn9L1tJOdZDhHY9d9jqYfo.jpg", "order": 14}], "directors": [{"name": "John Lounsbery", "department": "Directing", "job": "Director", "credit_id": "52fe44249251416c7502a56b", "profile_path": null, "id": 69003}, {"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44249251416c7502a571", "profile_path": null, "id": 57314}, {"name": "Art Stevens", "department": "Directing", "job": "Director", "credit_id": "52fe44249251416c7502a577", "profile_path": null, "id": 67607}], "vote_average": 6.5, "runtime": 78}, "11321": {"poster_path": "/mX8SsTw2uApc02W8SBIKeprcWr1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 168167691, "overview": "An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.", "video": false, "id": 11321, "genres": [{"id": 18, "name": "Drama"}], "title": "Seven Pounds", "tagline": "Seven names. Seven strangers. One secret.", "vote_count": 430, "homepage": "http://www.sonypictures.com/movies/sevenpounds/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0814314", "adult": false, "backdrop_path": "/ymzaJLm2EIYbG9n7snVfCnHAPQk.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Escape Artists", "id": 1423}], "release_date": "2008-12-18", "popularity": 0.793687837702097, "original_title": "Seven Pounds", "budget": 55000000, "cast": [{"name": "Will Smith", "character": "Ben", "id": 2888, "credit_id": "52fe44259251416c7502a685", "cast_id": 14, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Rosario Dawson", "character": "Emily", "id": 5916, "credit_id": "52fe44259251416c7502a64b", "cast_id": 3, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 1}, {"name": "Sarah Jane Morris", "character": "Susan", "id": 70304, "credit_id": "52fe44259251416c7502a64f", "cast_id": 4, "profile_path": "/ykk7CjHP7iXcX0XBWrtEYVG9Nc4.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Ezra Turner", "id": 57755, "credit_id": "52fe44259251416c7502a67d", "cast_id": 12, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Michael Ealy", "character": "Ben's Brother", "id": 8177, "credit_id": "52fe44259251416c7502a681", "cast_id": 13, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 4}, {"name": "Connor Cruise", "character": "Young Ben", "id": 235547, "credit_id": "52fe44259251416c7502a689", "cast_id": 15, "profile_path": "/wQUTaFEcO67FxHZ6OHS91sBC6Q2.jpg", "order": 5}, {"name": "Barry Pepper", "character": "Dan", "id": 12834, "credit_id": "52fe44259251416c7502a68d", "cast_id": 16, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 6}, {"name": "Elpidia Carrillo", "character": "Connie", "id": 1102, "credit_id": "52fe44259251416c7502a691", "cast_id": 17, "profile_path": "/7sXdZ8uFmI2wYQPogTfkGcDPCkp.jpg", "order": 7}, {"name": "Robinne Lee", "character": "Sarah", "id": 55258, "credit_id": "52fe44259251416c7502a695", "cast_id": 18, "profile_path": "/dkt0s7GjQ2fEJGHYVd1T2pTqBET.jpg", "order": 8}, {"name": "Joe Nunez", "character": "Larry", "id": 54696, "credit_id": "52fe44259251416c7502a699", "cast_id": 19, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 9}, {"name": "Bill Smitrovich", "character": "George Ristuccia", "id": 17200, "credit_id": "52fe44259251416c7502a69d", "cast_id": 20, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 10}, {"name": "Tim Kelleher", "character": "Stewart Goodman", "id": 72864, "credit_id": "52fe44259251416c7502a6a1", "cast_id": 21, "profile_path": "/y1sYHWkXNeW09Iy2BUed4SveKl7.jpg", "order": 11}, {"name": "Gina Hecht", "character": "Dr. Briar", "id": 156818, "credit_id": "52fe44259251416c7502a6a5", "cast_id": 22, "profile_path": "/heybFsT6FKB7CdZ8Uj6cxt52EwY.jpg", "order": 12}, {"name": "Andy Milder", "character": "George's Doctor", "id": 1043304, "credit_id": "52fe44259251416c7502a6a9", "cast_id": 23, "profile_path": "/pUxbi636gXl6CaeGvKrPr3j22Ea.jpg", "order": 13}, {"name": "Judyann Elder", "character": "Holly", "id": 77033, "credit_id": "52fe44259251416c7502a6ad", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Madison Pettis", "character": "Connie's Daughter", "id": 74929, "credit_id": "52fe44259251416c7502a6b1", "cast_id": 25, "profile_path": "/lEYkyecOFfRTCftwG75aVZZVfhw.jpg", "order": 15}, {"name": "Octavia Spencer", "character": "Kate the Home Health Care Nurse", "id": 6944, "credit_id": "52fe44259251416c7502a6b5", "cast_id": 26, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 16}], "directors": [{"name": "Gabriele Muccino", "department": "Directing", "job": "Director", "credit_id": "52fe44259251416c7502a647", "profile_path": "/uU23lwEwz3TnHl0DvvyePpaGuEG.jpg", "id": 20646}], "vote_average": 7.3, "runtime": 123}, "11322": {"poster_path": "/54oAkM0syutE3hkoYD5mFqRGdfD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214104620, "overview": "In the shadow of the Great Depression, criminal minds are thriving -- notorious men such as John Dillinger, \"Baby Face\" Nelson and \"Pretty Boy\" Floyd -- and it's up to J. Edgar Hoover and the FBI to bring them down in this gritty crime drama.", "video": false, "id": 11322, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Public Enemies", "tagline": "America's Most Wanted.", "vote_count": 432, "homepage": "http://www.publicenemies.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1152836", "adult": false, "backdrop_path": "/if8Mr1HJyS9sEtI8VMa01udmLuM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Forward Pass", "id": 675}, {"name": "Misher Films", "id": 11581}, {"name": "Tribeca Productions", "id": 11391}, {"name": "Appian Way", "id": 562}, {"name": "Dentsu", "id": 6452}], "release_date": "2009-07-01", "popularity": 1.44235867292833, "original_title": "Public Enemies", "budget": 80000000, "cast": [{"name": "Christian Bale", "character": "Melvin Purvis", "id": 3894, "credit_id": "52fe44259251416c7502a719", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Johnny Depp", "character": "John Dillinger", "id": 85, "credit_id": "52fe44259251416c7502a71d", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 1}, {"name": "Giovanni Ribisi", "character": "Alvin Karpis", "id": 1771, "credit_id": "52fe44259251416c7502a721", "cast_id": 3, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 2}, {"name": "Billy Crudup", "character": "J. Edgar Hoover", "id": 8289, "credit_id": "52fe44259251416c7502a725", "cast_id": 4, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 3}, {"name": "Emilie de Ravin", "character": "Anna Patzke", "id": 28660, "credit_id": "52fe44259251416c7502a729", "cast_id": 5, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 4}, {"name": "Channing Tatum", "character": "Pretty Boy Floyd", "id": 38673, "credit_id": "52fe44259251416c7502a72d", "cast_id": 6, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 5}, {"name": "Marion Cotillard", "character": "Billie Frechette", "id": 8293, "credit_id": "52fe44259251416c7502a74f", "cast_id": 12, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 6}, {"name": "Leelee Sobieski", "character": "Polly Hamilton", "id": 22290, "credit_id": "52fe44259251416c7502a753", "cast_id": 13, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 7}, {"name": "Domenick Lombardozzi", "character": "Gilbert Catena", "id": 17941, "credit_id": "52fe44259251416c7502a757", "cast_id": 14, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 8}, {"name": "Stephen Lang", "character": "Charles Winstead", "id": 32747, "credit_id": "52fe44259251416c7502a75b", "cast_id": 15, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 9}, {"name": "Carey Mulligan", "character": "Carol Slayman", "id": 36662, "credit_id": "52fe44259251416c7502a7b9", "cast_id": 32, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 10}, {"name": "James Russo", "character": "Walter Dietrich", "id": 785, "credit_id": "52fe44259251416c7502a7bd", "cast_id": 33, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 11}, {"name": "David Wenham", "character": "Harry 'Pete' Pierpont", "id": 1371, "credit_id": "52fe44259251416c7502a7c1", "cast_id": 34, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 12}, {"name": "Christian Stolte", "character": "Charles Makley", "id": 36091, "credit_id": "52fe44259251416c7502a7c5", "cast_id": 35, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 13}, {"name": "Jason Clarke", "character": "'Red' Hamilton", "id": 76512, "credit_id": "52fe44259251416c7502a7c9", "cast_id": 36, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 14}, {"name": "John Judd", "character": "Turnkey", "id": 156701, "credit_id": "52fe44269251416c7502a7cd", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Stephen Dorff", "character": "Homer Van Meter", "id": 10822, "credit_id": "52fe44269251416c7502a7d1", "cast_id": 38, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 16}, {"name": "Michael Vieau", "character": "Ed Shouse", "id": 1052875, "credit_id": "52fe44269251416c7502a7d5", "cast_id": 39, "profile_path": "/AkeYIbEkVjIwWLCbxYkxcOf3FvI.jpg", "order": 17}, {"name": "John Kishline", "character": "Guard Dainard", "id": 1052876, "credit_id": "52fe44269251416c7502a7d9", "cast_id": 40, "profile_path": null, "order": 18}, {"name": "Wesley Walker", "character": "Jim Leslie", "id": 83402, "credit_id": "52fe44269251416c7502a7dd", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "John Scherp", "character": "Earl Adams", "id": 1052877, "credit_id": "52fe44269251416c7502a7e1", "cast_id": 42, "profile_path": null, "order": 20}, {"name": "Elena Kenney", "character": "Viola Norris", "id": 1052878, "credit_id": "52fe44269251416c7502a7e5", "cast_id": 43, "profile_path": null, "order": 21}, {"name": "William Nero Jr.", "character": "Toddler on Farm", "id": 1052879, "credit_id": "52fe44269251416c7502a7e9", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Don Frye", "character": "Clarence Hurt", "id": 82042, "credit_id": "52fe44269251416c7502a7f3", "cast_id": 46, "profile_path": "/tdPVsqfph4xWccgviz2ZYU5VYk5.jpg", "order": 23}, {"name": "Branka Kati\u0107", "character": "Anna Sage", "id": 15268, "credit_id": "52fe44269251416c7502a7f7", "cast_id": 47, "profile_path": "/6dtxxJyeGL5kHpUEeshDfe3T4wB.jpg", "order": 24}, {"name": "Stephen Graham", "character": "Baby Face Nelson", "id": 1115, "credit_id": "52fe44269251416c7502a7fb", "cast_id": 48, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 25}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44259251416c7502a733", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.4, "runtime": 140}, "3131": {"poster_path": "/ytKo2tLvKUd9Kbs0poXSQh6ft7d.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 193772504, "overview": "1863. America was born in the streets. In this movie, we see Amsterdam Vallon returning to the Five Points of America to seek vengeance against the psychotic gangland kingpin Bill the Butcher who murdered his father years ago. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.", "video": false, "id": 3131, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Gangs of New York", "tagline": "America Was Born In The Streets.", "vote_count": 382, "homepage": "http://video.movies.go.com/gangsofnewyork/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ga", "name": "Gaeilge"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0217505", "adult": false, "backdrop_path": "/5JadVEOVqxydiUOvz6BYlTMkDQP.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}, {"name": "Alberto Grimaldi Productions", "id": 7381}], "release_date": "2002-12-19", "popularity": 1.35480644028649, "original_title": "Gangs of New York", "budget": 97000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Amsterdam Vallon", "id": 6193, "credit_id": "52fe4389c3a36847f805bbc1", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Daniel Day-Lewis", "character": "Bill 'The Butcher' Cutting", "id": 11856, "credit_id": "52fe4389c3a36847f805bbc5", "cast_id": 3, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Jenny Everdeane", "id": 6941, "credit_id": "52fe4389c3a36847f805bbc9", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Liam Neeson", "character": "Priest Vallon", "id": 3896, "credit_id": "52fe4389c3a36847f805bc09", "cast_id": 15, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Monk McGinn", "id": 2039, "credit_id": "52fe4389c3a36847f805bc0d", "cast_id": 16, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "John C. Reilly", "character": "Happy Jack", "id": 4764, "credit_id": "52fe4389c3a36847f805bc11", "cast_id": 17, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "William Tweed", "id": 388, "credit_id": "52fe4389c3a36847f805bc15", "cast_id": 18, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Roger Ashton-Griffiths", "character": "P.T. Barnum", "id": 20243, "credit_id": "52fe4389c3a36847f805bc19", "cast_id": 19, "profile_path": "/3lvWs4Kz0aATpcSY7PyPhkKgH6W.jpg", "order": 7}, {"name": "David Hemmings", "character": "Mr. Schermerhorn", "id": 15196, "credit_id": "52fe4389c3a36847f805bc1d", "cast_id": 21, "profile_path": "/k2M6UrbkWYF8FewmKQm3TWu6KMX.jpg", "order": 8}, {"name": "Lawrence Gilliard Jr.", "character": "Jimmy Spoils", "id": 37947, "credit_id": "52fe4389c3a36847f805bc81", "cast_id": 40, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 9}, {"name": "Michael Byrne", "character": "Horace Greeley", "id": 742, "credit_id": "52fe4389c3a36847f805bc8b", "cast_id": 43, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 10}, {"name": "Gary Lewis", "character": "McGloin", "id": 480, "credit_id": "52fe4389c3a36847f805bc93", "cast_id": 45, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 11}, {"name": "Henry Thomas", "character": "Johnny Sirocco", "id": 9976, "credit_id": "52fe4389c3a36847f805bc8f", "cast_id": 44, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 12}, {"name": "Barbara Bouchet", "character": "Mrs. Schermerhorn", "id": 16021, "credit_id": "5461db7e0e0a2609b60011bc", "cast_id": 47, "profile_path": "/5S6SyduMT1bQKupKWkRdZVc47W0.jpg", "order": 13}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe4389c3a36847f805bbbd", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.8, "runtime": 167}, "11324": {"poster_path": "/aZqKsvpJDFy2UzUMsdskNFbfkOd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 294804195, "overview": "World War II soldier-turned-U.S. marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by his own troubling visions and by Dr. Cawley.", "video": false, "id": 11324, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Shutter Island", "tagline": "Someone is missing.", "vote_count": 1935, "homepage": "http://www.shutterisland.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1130884", "adult": false, "backdrop_path": "/fmLWuAfDPaUa3Vi5nO1YUUyZaX6.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Sikelia Productions", "id": 23243}, {"name": "Appian Way", "id": 562}], "release_date": "2010-02-18", "popularity": 2.80804808336516, "original_title": "Shutter Island", "budget": 80000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Teddy Daniels", "id": 6193, "credit_id": "52fe44269251416c7502a8ab", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Mark Ruffalo", "character": "Chuck Aule", "id": 103, "credit_id": "52fe44269251416c7502a8af", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Dr. John Cawley", "id": 2282, "credit_id": "52fe44269251416c7502a8b3", "cast_id": 4, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 2}, {"name": "Emily Mortimer", "character": "Rachel Solando", "id": 1246, "credit_id": "52fe44269251416c7502a8b7", "cast_id": 5, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 3}, {"name": "Michelle Williams", "character": "Dolores Chanal", "id": 1812, "credit_id": "52fe44269251416c7502a8bb", "cast_id": 6, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 4}, {"name": "Max von Sydow", "character": "Dr. Jeremiah Naehring", "id": 2201, "credit_id": "52fe44269251416c7502a8bf", "cast_id": 7, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 5}, {"name": "Jackie Earle Haley", "character": "George Noyce", "id": 17183, "credit_id": "52fe44269251416c7502a8c3", "cast_id": 8, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 6}, {"name": "Patricia Clarkson", "character": "Rachel 2", "id": 1276, "credit_id": "52fe44269251416c7502a8d3", "cast_id": 12, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 7}, {"name": "Ted Levine", "character": "Warden", "id": 15854, "credit_id": "52fe44269251416c7502a8d7", "cast_id": 13, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 8}, {"name": "John Carroll Lynch", "character": "Deputy Warden McPherson", "id": 3911, "credit_id": "52fe44269251416c7502a8db", "cast_id": 14, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 9}, {"name": "Elias Koteas", "character": "Laeddis", "id": 13550, "credit_id": "52fe44269251416c7502a8df", "cast_id": 15, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 10}, {"name": "Robin Bartlett", "character": "Bridget Kearns", "id": 11902, "credit_id": "52fe44269251416c7502a8e3", "cast_id": 16, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 11}, {"name": "Christopher Denham", "character": "Christian", "id": 61510, "credit_id": "52fe44269251416c7502a8e7", "cast_id": 17, "profile_path": "/oPnHnLW51n9qFtCxh4phejRm6xe.jpg", "order": 12}, {"name": "Spencer Treat Clark", "character": "Timothy", "id": 4012, "credit_id": "52fe44269251416c7502a8eb", "cast_id": 18, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 13}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe44269251416c7502a8a7", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 7.2, "runtime": 138}, "207933": {"poster_path": "/6PXtqaYOpLTpxfKtwvAK3xCQfXZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A Harvard Medical School graduate takes a position at a mental institution and soon becomes obsessed with a female mental patient, but he has no idea of a recent and horrifying staffing change.", "video": false, "id": 207933, "genres": [{"id": 53, "name": "Thriller"}], "title": "Stonehearst Asylum", "tagline": "No one is what they seem.", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1772264", "adult": false, "backdrop_path": "/4NYzyugV9AoTq0e0SJ1cRHfn4BL.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}, {"name": "Sobini Films", "id": 13923}], "release_date": "2014-10-24", "popularity": 3.14822797987093, "original_title": "Stonehearst Asylum", "budget": 0, "cast": [{"name": "Kate Beckinsale", "character": "Eliza Graves", "id": 3967, "credit_id": "540b11aac3a368799f001657", "cast_id": 3, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Edward Newgate", "id": 38941, "credit_id": "540b11f4c3a36879a2001705", "cast_id": 7, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Silas Lamb", "id": 2282, "credit_id": "540b11c1c3a36879ae00156f", "cast_id": 4, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 2}, {"name": "Michael Caine", "character": "Dr. Salt", "id": 3895, "credit_id": "540b11d1c3a368799c001660", "cast_id": 5, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "The Alienist", "id": 2039, "credit_id": "540b11e4c3a36879b20014fe", "cast_id": 6, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "David Thewlis", "character": "Mickey Finn", "id": 11207, "credit_id": "540b1207c3a36879a5001564", "cast_id": 8, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 5}, {"name": "Jason Flemyng", "character": "Swanwick", "id": 973, "credit_id": "544de2070e0a2608d4003cc7", "cast_id": 9, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 6}, {"name": "Sin\u00e9ad Cusack", "character": "Mrs. Pike", "id": 11281, "credit_id": "544de2160e0a2608d4003cc9", "cast_id": 10, "profile_path": "/r9eWOKN1WtE7RMDAwIhOpMRh3wL.jpg", "order": 7}, {"name": "Sophie Kennedy Clark", "character": "Millie", "id": 1151957, "credit_id": "544de227c3a36872b4003dbd", "cast_id": 11, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 8}, {"name": "Guillaume Delaunay", "character": "Arthur Timbs", "id": 1125601, "credit_id": "544de2470e0a2608d0003da5", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Edmund Kingsley", "character": "Charles Graves", "id": 1080628, "credit_id": "544de2690e0a2608d4003ccf", "cast_id": 13, "profile_path": "/VLKvYY892zR4lw25OKSdZZhe5b.jpg", "order": 10}, {"name": "Christopher Fulford", "character": "Paxton", "id": 6970, "credit_id": "544de287c3a36872e0003fc4", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Ekaterina Stoyanova", "character": "Curios Follower", "id": 1378096, "credit_id": "544de2b40e0a2608cd003d1d", "cast_id": 15, "profile_path": null, "order": 12}], "directors": [{"name": "Brad Anderson", "department": "Directing", "job": "Director", "credit_id": "540b10fc0e0a262b46002651", "profile_path": "/5SAJd9sEFefkFoStAPXuKVHnMoX.jpg", "id": 37948}], "vote_average": 6.6, "runtime": 112}, "11327": {"poster_path": "/afgAGwV1WXjMoooUzaSnw7XAvhj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Billy Hayes is caught attempting to smuggle drugs out of Turkey. The Turkish courts decide to make an example of him, sentencing him to more than 30 years in prison. Hayes has two opportunities for release: the appeals made by his lawyer, his family, and the American government, or the \"Midnight Express\".", "video": false, "id": 11327, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Midnight Express", "tagline": "Walk into the incredible true experience of Billy Hayes, and bring all the courage you can!", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "mt", "name": "Malti"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0077928", "adult": false, "backdrop_path": "/g468LAK5y5EfEtsjqYz4ulVXKkM.jpg", "production_companies": [{"name": "Columbia Films S.A.", "id": 6386}], "release_date": "1978-10-06", "popularity": 0.763865020528728, "original_title": "Midnight Express", "budget": 2300000, "cast": [{"name": "Brad Davis", "character": "Billy Hayes", "id": 69010, "credit_id": "52fe44279251416c7502aa0d", "cast_id": 11, "profile_path": "/xutVl1hr1wtBSneWo7aW5BWULu8.jpg", "order": 0}, {"name": "Irene Miracle", "character": "Susan", "id": 69011, "credit_id": "52fe44279251416c7502aa11", "cast_id": 12, "profile_path": "/3EImLyVuzaRGV0tEytXAbwNVMBT.jpg", "order": 1}, {"name": "Bo Hopkins", "character": "Tex", "id": 12410, "credit_id": "52fe44279251416c7502aa15", "cast_id": 13, "profile_path": "/tfned4hs0rrq7L5PPuS5GnlHFc6.jpg", "order": 2}, {"name": "Randy Quaid", "character": "Jimmy Booth", "id": 1811, "credit_id": "52fe44279251416c7502aa19", "cast_id": 14, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 3}, {"name": "John Hurt", "character": "Max", "id": 5049, "credit_id": "52fe44279251416c7502aa1d", "cast_id": 15, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Michael Ensign", "character": "Stanley Daniels", "id": 1080265, "credit_id": "52fe44279251416c7502aa2d", "cast_id": 18, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 5}, {"name": "Paul L. Smith", "character": "Hamidou", "id": 39782, "credit_id": "52fe44279251416c7502aa31", "cast_id": 19, "profile_path": "/1NZXecko55r4vchJkUAshliIctS.jpg", "order": 6}, {"name": "Norbert Weisser", "character": "Erich", "id": 6701, "credit_id": "52fe44279251416c7502aa35", "cast_id": 20, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 7}, {"name": "Mike Kellin", "character": "Mr. Hayes", "id": 50762, "credit_id": "52fe44279251416c7502aa39", "cast_id": 21, "profile_path": "/28LFcecwpDIMVIJUdzqko87popk.jpg", "order": 8}, {"name": "Frano Diogene", "character": "Yesil", "id": 1282662, "credit_id": "52fe44279251416c7502aa3d", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Michael Ensign", "character": "Stanley Daniels", "id": 1080265, "credit_id": "52fe44279251416c7502aa41", "cast_id": 23, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}, {"name": "Paolo Bonacelli", "character": "Rifki", "id": 4819, "credit_id": "54baee5fc3a3681421003bc0", "cast_id": 24, "profile_path": "/evLXJ9ufstKWN00SElhuSVe7FUD.jpg", "order": 11}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44279251416c7502a9d3", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.5, "runtime": 121}, "11329": {"poster_path": "/dWq7p5HmfZAphAMikFARr1cJ6IN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80154140, "overview": "A juror on the inside and a woman on the outside manipulate a court trial involving a major gun manufacturer.", "video": false, "id": 11329, "genres": [{"id": 18, "name": "Drama"}], "title": "Runaway Jury", "tagline": "Trials are too important to be decided by juries.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt0313542", "adult": false, "backdrop_path": "/mSFzYuqATKYAXIVgk6nPqyk59J7.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2003-10-09", "popularity": 0.702250412689117, "original_title": "Runaway Jury", "budget": 60000000, "cast": [{"name": "John Cusack", "character": "Nicholas Easter", "id": 3036, "credit_id": "52fe44279251416c7502ab2f", "cast_id": 13, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Rankin Fitch", "id": 193, "credit_id": "52fe44279251416c7502ab33", "cast_id": 14, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Dustin Hoffman", "character": "Wendell Rohr", "id": 4483, "credit_id": "52fe44279251416c7502ab37", "cast_id": 15, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 2}, {"name": "Rachel Weisz", "character": "Marlee", "id": 3293, "credit_id": "52fe44279251416c7502ab3b", "cast_id": 16, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Judge Harkin", "id": 14888, "credit_id": "52fe44279251416c7502ab3f", "cast_id": 17, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Bruce Davison", "character": "Durwood Cable", "id": 52374, "credit_id": "52fe44279251416c7502ab43", "cast_id": 18, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 5}, {"name": "Jeremy Piven", "character": "Lawrence Green", "id": 12799, "credit_id": "52fe44279251416c7502ab47", "cast_id": 19, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 6}, {"name": "Nick Searcy", "character": "Doyle", "id": 12538, "credit_id": "53660c9b0e0a2647d1002dc8", "cast_id": 20, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 7}, {"name": "Stanley Anderson", "character": "Henry Jankle", "id": 15253, "credit_id": "53660cc60e0a2647db002e02", "cast_id": 21, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 8}, {"name": "Nestor Serrano", "character": "Janovich", "id": 14331, "credit_id": "53660d280e0a2647d4002d23", "cast_id": 23, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 10}, {"name": "Cliff Curtis", "character": "Frank Herrera", "id": 7248, "credit_id": "53660d530e0a2647c4002f5b", "cast_id": 24, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 11}, {"name": "Leland Orser", "character": "Lamb", "id": 2221, "credit_id": "53660da80e0a2647d8002f10", "cast_id": 25, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 12}, {"name": "Jennifer Beals", "character": "Vanessa Lembeck", "id": 3130, "credit_id": "53660dcd0e0a2647c8002f77", "cast_id": 26, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 13}, {"name": "Joanna Going", "character": "Celeste Wood", "id": 59662, "credit_id": "53a4a6e20e0a26144500020e", "cast_id": 27, "profile_path": "/8wPmJGGj4HEUfaYzYjoL1AzOSlf.jpg", "order": 14}], "directors": [{"name": "Gary Fleder", "department": "Directing", "job": "Director", "credit_id": "52fe44279251416c7502aae9", "profile_path": "/rRxdnJbRT8Ygg8KNpdoxULszClx.jpg", "id": 5501}], "vote_average": 6.7, "runtime": 127}, "11336": {"poster_path": "/nfGUupEUffOkNyuQBN7Pp5hhqTU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee's home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.", "video": false, "id": 11336, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Dead Zone", "tagline": "In his mind, he has the power to see the future. In his hands, he has the power to change it.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085407", "adult": false, "backdrop_path": "/7LRuImFC4NKxutT3yvdqxinEXjo.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lorimar Film Entertainment", "id": 1176}, {"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "1983-10-21", "popularity": 0.160437098300941, "original_title": "The Dead Zone", "budget": 10000000, "cast": [{"name": "Christopher Walken", "character": "Johnny Smith", "id": 4690, "credit_id": "52fe44299251416c7502ae31", "cast_id": 1, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 0}, {"name": "Brooke Adams", "character": "Sarah Bracknell", "id": 69054, "credit_id": "52fe44299251416c7502ae35", "cast_id": 2, "profile_path": "/l0SXHIA1T6aX61YJTLz5HntjmFg.jpg", "order": 1}, {"name": "Tom Skerritt", "character": "Sheriff George Bannerman", "id": 4139, "credit_id": "52fe44299251416c7502ae39", "cast_id": 3, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 2}, {"name": "Martin Sheen", "character": "Greg Stillson", "id": 8349, "credit_id": "52fe44299251416c7502ae3d", "cast_id": 4, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 3}, {"name": "Herbert Lom", "character": "Dr. Sam Weizak", "id": 14503, "credit_id": "52fe44299251416c7502ae71", "cast_id": 14, "profile_path": "/uPQNrZvgfAJNUAAYjmDubMmKEZ5.jpg", "order": 4}, {"name": "Anthony Zerbe", "character": "Roger Stuart", "id": 2516, "credit_id": "52fe44299251416c7502ae75", "cast_id": 15, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 5}, {"name": "Colleen Dewhurst", "character": "Henrietta Dodd", "id": 10559, "credit_id": "52fe44299251416c7502ae79", "cast_id": 16, "profile_path": "/2dALCygtziRLWRZx0CH0IFLJGAn.jpg", "order": 6}, {"name": "Nicholas Campbell", "character": "Frank Dodd", "id": 14902, "credit_id": "52fe44299251416c7502ae7d", "cast_id": 17, "profile_path": "/iaHrV64dbBAHek0CmoMGQ2fq5Md.jpg", "order": 7}, {"name": "William B. Davis", "character": "Ambulance Driver", "id": 12643, "credit_id": "52fe44299251416c7502ae81", "cast_id": 18, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 8}, {"name": "Ram\u00f3n Est\u00e9vez", "character": "Teenage Boy with Camera", "id": 104489, "credit_id": "52fe44299251416c7502ae85", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Sean Sullivan", "character": "Herb Smith", "id": 252, "credit_id": "52fe44299251416c7502ae89", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Jackie Burroughs", "character": "Vera Smith", "id": 61185, "credit_id": "52fe44299251416c7502ae8d", "cast_id": 21, "profile_path": "/6Fo0MPMTiDng8rS9d7PG6X7avFX.jpg", "order": 11}, {"name": "G\u00e9za Kov\u00e1cs", "character": "Sonny Elliman", "id": 1081827, "credit_id": "52fe44299251416c7502ae91", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Roberta Weiss", "character": "Alma Frechette", "id": 243939, "credit_id": "52fe44299251416c7502ae95", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Peter Dvorsky", "character": "Dardis", "id": 12483, "credit_id": "52fe44299251416c7502ae99", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Barry Flatman", "character": "Walt", "id": 43429, "credit_id": "52fe44299251416c7502ae9d", "cast_id": 25, "profile_path": "/bRFwheAG7219yIbmVfrdqAMVhcI.jpg", "order": 15}, {"name": "Cindy Hinds", "character": "Natalie", "id": 103864, "credit_id": "52fe44299251416c7502aea1", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "David Rigby", "character": "Truck Driver", "id": 982406, "credit_id": "52fe44299251416c7502aea9", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Helene Udy", "character": "Weizak's Mother", "id": 133800, "credit_id": "543ffbd50e0a26027300014a", "cast_id": 29, "profile_path": "/A44EUYsJnqw8xwdfwp8yequmKc8.jpg", "order": 19}, {"name": "Roger Dunn", "character": "Reporters", "id": 1351508, "credit_id": "54ff7bcec3a3685ba6000643", "cast_id": 38, "profile_path": null, "order": 20}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe44299251416c7502ae43", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.5, "runtime": 103}, "44115": {"poster_path": "/c6Nu7UjhGCQtV16WXabqOQfikK6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35692920, "overview": "127 Hours is the true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah. Over the next five days Ralston examines his life and survives the elements to finally discover he has the courage and the wherewithal to extricate himself by any means necessary, scale a 65 foot wall and hike over eight miles before he is finally rescued. Throughout his journey, Ralston recalls friends, lovers, family, and the two hikers he met before his accident. Will they be the last two people he ever had the chance to meet?", "video": false, "id": 44115, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "127 Hours", "tagline": "There is no force more powerful than the will to live.", "vote_count": 751, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1542344", "adult": false, "backdrop_path": "/eHUoB8NbvrvKp7KQMNgvc7yLpzM.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Path\u00e9", "id": 7981}, {"name": "Everest Entertainment", "id": 10892}, {"name": "Cloud Eight Films", "id": 6708}, {"name": "Decibel Films", "id": 8286}, {"name": "Darlow Smithson Productions", "id": 2015}, {"name": "Dune Entertainment", "id": 444}, {"name": "Big Screen Productions", "id": 10893}], "release_date": "2010-11-05", "popularity": 1.46121318384635, "original_title": "127 Hours", "budget": 18000000, "cast": [{"name": "James Franco", "character": "Aron Ralston", "id": 17051, "credit_id": "52fe4677c3a36847f8100abf", "cast_id": 2, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Kate Mara", "character": "Christie", "id": 51072, "credit_id": "52fe4677c3a36847f8100ac3", "cast_id": 8, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 1}, {"name": "Amber Tamblyn", "character": "Megan", "id": 20354, "credit_id": "52fe4677c3a36847f8100ac7", "cast_id": 9, "profile_path": "/4nwsbtFzoxzN2YF2HOW4P4vdit2.jpg", "order": 2}, {"name": "Sean Bott", "character": "Aaron's Friend", "id": 142182, "credit_id": "52fe4677c3a36847f8100acb", "cast_id": 10, "profile_path": "/bR2mxZXLOcKKEiaMO1vNnU4ZN9c.jpg", "order": 3}, {"name": "Koleman Stinger", "character": "Aaron Age 5", "id": 142183, "credit_id": "52fe4677c3a36847f8100acf", "cast_id": 11, "profile_path": "/iHN1K8TNN8v0FA10sIK03UlAaX1.jpg", "order": 4}, {"name": "Treat Williams", "character": "Aaron's Dad", "id": 4515, "credit_id": "52fe4677c3a36847f8100ad3", "cast_id": 12, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 5}, {"name": "Kate Burton", "character": "Aaron's Mom", "id": 20879, "credit_id": "52fe4677c3a36847f8100ad7", "cast_id": 14, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 6}, {"name": "Bailee Michelle Johnson", "character": "Sonja Age 10", "id": 142184, "credit_id": "52fe4677c3a36847f8100adb", "cast_id": 15, "profile_path": "/bB98FpXpnoZsmG0W8o4NBKZQnqx.jpg", "order": 7}, {"name": "Rebecca C. Olson", "character": "Monique Meijer", "id": 142185, "credit_id": "52fe4677c3a36847f8100adf", "cast_id": 16, "profile_path": "/jELR1nx5w0dFaFkq33MeMl4Zaxq.jpg", "order": 8}, {"name": "Parker Hadley", "character": "Aaron age 15", "id": 60467, "credit_id": "52fe4677c3a36847f8100ae3", "cast_id": 17, "profile_path": "/4XbL4cLG590TuAj4XfiXCi4TcHs.jpg", "order": 9}, {"name": "Fenton Quinn", "character": "Blue John", "id": 63484, "credit_id": "52fe4677c3a36847f8100ae7", "cast_id": 19, "profile_path": "/qncZNh1lbKYqxXNLQGTohRf7I1z.jpg", "order": 10}, {"name": "Lizzy Caplan", "character": "Sonja Ralston", "id": 51988, "credit_id": "52fe4677c3a36847f8100aeb", "cast_id": 20, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 11}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Rana", "id": 11291, "credit_id": "52fe4677c3a36847f8100b01", "cast_id": 24, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 12}, {"name": "John Lawrence", "character": "Brian", "id": 1178035, "credit_id": "52fe4677c3a36847f8100b65", "cast_id": 42, "profile_path": "/oWRpCkQqQID9qssui93sqhTxmgz.jpg", "order": 13}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4677c3a36847f8100abb", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.8, "runtime": 94}, "8834": {"poster_path": "/pJi8zosVnrIyfZDDsLmrNvX84QG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136982834, "overview": "A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.", "video": false, "id": 8834, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Conspiracy Theory", "tagline": "What if your most paranoid nightmares had just come true?", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118883", "adult": false, "backdrop_path": "/qvShPytEWjFFdcpA6c7LN0wetaV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}, {"name": "Donner/Shuler-Donner Productions", "id": 23397}], "release_date": "1997-08-07", "popularity": 1.03146679354918, "original_title": "Conspiracy Theory", "budget": 75000000, "cast": [{"name": "Mel Gibson", "character": "Jerry Fletcher", "id": 2461, "credit_id": "52fe44bbc3a36847f80a6f75", "cast_id": 9, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Alice Sutton", "id": 1204, "credit_id": "52fe44bbc3a36847f80a6f79", "cast_id": 10, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Patrick Stewart", "character": "Dr. Jonas", "id": 2387, "credit_id": "52fe44bbc3a36847f80a6f7d", "cast_id": 11, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 2}, {"name": "Cylk Cozart", "character": "Agent Lowry", "id": 56040, "credit_id": "52fe44bbc3a36847f80a6f81", "cast_id": 12, "profile_path": "/9jjnxj9Rhn5MRsTbkvitwUWIbG2.jpg", "order": 3}, {"name": "Steve Kahan", "character": "Mr. Wilson", "id": 14328, "credit_id": "52fe44bbc3a36847f80a6f85", "cast_id": 13, "profile_path": "/wWwQXPezxuxbKsFGXkC4AzJSIos.jpg", "order": 4}, {"name": "Terry Alexander", "character": "Flip", "id": 54854, "credit_id": "52fe44bbc3a36847f80a6f89", "cast_id": 14, "profile_path": "/uao9PqvUYOiJPoGbMxL0DmKqna4.jpg", "order": 5}, {"name": "Alex McArthur", "character": "Cynic", "id": 58293, "credit_id": "52fe44bbc3a36847f80a6f8d", "cast_id": 15, "profile_path": "/aYA5RdEffj4qPz8E647UByWyp5x.jpg", "order": 6}, {"name": "Rod McLachlan", "character": "Justice Guard", "id": 155560, "credit_id": "52fe44bbc3a36847f80a6f91", "cast_id": 16, "profile_path": "/rwsfhaAKON4I5KxugffiYlXlyjA.jpg", "order": 7}, {"name": "Michael Potts", "character": "Justice Guard", "id": 167566, "credit_id": "52fe44bbc3a36847f80a6f95", "cast_id": 17, "profile_path": "/9aZNXxYHvBSuavENRHu0UQVXJW9.jpg", "order": 8}, {"name": "Jim Sterling", "character": "Justice Guard", "id": 164002, "credit_id": "52fe44bbc3a36847f80a6f99", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Rich Hebert", "character": "Public Works Man", "id": 177247, "credit_id": "52fe44bbc3a36847f80a6f9d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Brian J. Williams", "character": "Clarke", "id": 203950, "credit_id": "52fe44bbc3a36847f80a6fa1", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "G.A. Aguilar", "character": "Piper", "id": 1074163, "credit_id": "52fe44bbc3a36847f80a6fa5", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Cece Neber Labao", "character": "Henry Finch's Secretary", "id": 1074164, "credit_id": "52fe44bbc3a36847f80a6fa9", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Saxon Trainor", "character": "Alice's Secretary", "id": 42721, "credit_id": "52fe44bbc3a36847f80a6fad", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Richard Donner", "department": "Directing", "job": "Director", "credit_id": "52fe44bbc3a36847f80a6f47", "profile_path": "/hsOQU2mFuAfGrvBMDLPgrWemO5T.jpg", "id": 7187}], "vote_average": 6.2, "runtime": 135}, "11355": {"poster_path": "/1F9EAhEQxa0I5Pa5Z10hWIBFS3r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84565230, "overview": "Josie Geller, a baby-faced junior copywriter at the Chicago Sun-Times, must pose as a student at her former high school to research contemporary teenage culture. With the help of her brother, Rob, Josie infiltrates the inner circle of the most popular clique on campus. But she hits a major snag in her investigation -- not to mention her own failed love life -- when she falls for her dreamy English teacher, Sam Coulson.", "video": false, "id": 11355, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Never Been Kissed", "tagline": "A Comedy With Class.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0151738", "adult": false, "backdrop_path": "/zffzhr30v7nCHRcyfnVr8PmNLbM.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Bushwood Pictures", "id": 21241}, {"name": "Flower Films (II)", "id": 19813}, {"name": "Never Been Kissed Productions", "id": 21242}], "release_date": "1999-04-09", "popularity": 0.600429377271696, "original_title": "Never Been Kissed", "budget": 25000000, "cast": [{"name": "Drew Barrymore", "character": "Josie Geller", "id": 69597, "credit_id": "52fe442f9251416c7502bbd3", "cast_id": 10, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "David Arquette", "character": "Rob Geller", "id": 15234, "credit_id": "52fe442f9251416c7502bbd7", "cast_id": 11, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 1}, {"name": "Michael Vartan", "character": "Sam Coulson", "id": 15424, "credit_id": "52fe442f9251416c7502bbdb", "cast_id": 12, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 2}, {"name": "Molly Shannon", "character": "Anita", "id": 28640, "credit_id": "52fe442f9251416c7502bbdf", "cast_id": 13, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 3}, {"name": "Jenny Bicks", "character": "Miss Haskell", "id": 66962, "credit_id": "52fe442f9251416c7502bbe3", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Jessica Alba", "character": "Kirsten", "id": 56731, "credit_id": "52fe442f9251416c7502bbe7", "cast_id": 15, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 5}, {"name": "John C. Reilly", "character": "Gus", "id": 4764, "credit_id": "52fe442f9251416c7502bbeb", "cast_id": 16, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 6}, {"name": "James Franco", "character": "Jason", "id": 17051, "credit_id": "52fe442f9251416c7502bbef", "cast_id": 17, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 7}, {"name": "Octavia Spencer", "character": "Cynthia", "id": 6944, "credit_id": "52fe442f9251416c7502bbf3", "cast_id": 18, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 8}, {"name": "Garry Marshall", "character": "Rigfort", "id": 1201, "credit_id": "53342311c3a3682a8e001eb0", "cast_id": 19, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 9}, {"name": "Sean Whalen", "character": "Merkin", "id": 9996, "credit_id": "53342328c3a3682aac001e4b", "cast_id": 20, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 10}, {"name": "Cress Williams", "character": "George", "id": 157847, "credit_id": "5334233ac3a3680a1e0018dd", "cast_id": 21, "profile_path": "/wgdfCdEtiw4T9XhsLp4XNhQKClB.jpg", "order": 11}, {"name": "Sarah DeVincentis", "character": "Rhoda", "id": 79649, "credit_id": "53342350c3a3682a8e001eb3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Allen Covert", "character": "Roger in Op-Ed", "id": 20818, "credit_id": "53342362c3a3682a87001fa1", "cast_id": 23, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 13}, {"name": "Rock Reiser", "character": "Dutton", "id": 149770, "credit_id": "53342372c3a3682abb001e7e", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "David Doty", "character": "Hairplug Bruns", "id": 124086, "credit_id": "53342380c3a3680a1e0018e1", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Derek Morgan", "character": "Armcast Henson", "id": 944953, "credit_id": "53342391c3a3682abb001e83", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Kathleen Marshall", "character": "Sun-Times Worker", "id": 303542, "credit_id": "533423a2c3a3682ab5001e86", "cast_id": 27, "profile_path": "/zaS1vOZ0HRIwPSibns1WJLeQrvw.jpg", "order": 17}, {"name": "Leelee Sobieski", "character": "Aldys", "id": 22290, "credit_id": "5508da389251413066001eb9", "cast_id": 28, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 18}, {"name": "Marley Shelton", "character": "Kristin", "id": 6407, "credit_id": "5508da589251413c71000b42", "cast_id": 29, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 19}, {"name": "Jordan Ladd", "character": "Gibby", "id": 20492, "credit_id": "5508da8492514110da00248b", "cast_id": 30, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 20}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe442f9251416c7502bb9f", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.6, "runtime": 107}, "109491": {"poster_path": "/77bAKEVH0FMb7J7SDZ3Xr52raEk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60052138, "overview": "Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena's 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.", "video": false, "id": 109491, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Beautiful Creatures", "tagline": "Dark secrets will come to light.", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1559547", "adult": false, "backdrop_path": "/nNLXwveZGi4Dk90Ogw47B4jQVyG.jpg", "production_companies": [{"name": "Warner Bros. Entertainment", "id": 17}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Belle Pictures", "id": 32184}], "release_date": "2013-02-15", "popularity": 1.11482509506592, "original_title": "Beautiful Creatures", "budget": 60000000, "cast": [{"name": "Emmy Rossum", "character": "Ridley Duchaness", "id": 4730, "credit_id": "52fe4abbc3a36847f81de8c3", "cast_id": 5, "profile_path": "/lolKZGyxsNcS51I2zPMBkg3OEH2.jpg", "order": 0}, {"name": "Jeremy Irons", "character": "Macon Ravenwood", "id": 16940, "credit_id": "52fe4abbc3a36847f81de8c7", "cast_id": 6, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 1}, {"name": "Emma Thompson", "character": "Mrs. Lincoln", "id": 7056, "credit_id": "52fe4abbc3a36847f81de8cb", "cast_id": 7, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 2}, {"name": "Viola Davis", "character": "Amma", "id": 19492, "credit_id": "52fe4abbc3a36847f81de8cf", "cast_id": 8, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 3}, {"name": "Kyle Gallner", "character": "Larkin Ravenwood", "id": 59219, "credit_id": "52fe4abbc3a36847f81de8d3", "cast_id": 9, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 4}, {"name": "Alice Englert", "character": "Lena Duchannes", "id": 587823, "credit_id": "52fe4abbc3a36847f81de8d7", "cast_id": 10, "profile_path": "/xfUWs2eRLrjsq9zStFBsq0G3k7s.jpg", "order": 5}, {"name": "Thomas Mann", "character": "Link", "id": 1142720, "credit_id": "52fe4abbc3a36847f81de8db", "cast_id": 11, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 6}, {"name": "Alden Ehrenreich", "character": "Ethan Wate", "id": 71375, "credit_id": "52fe4abbc3a36847f81de8df", "cast_id": 12, "profile_path": "/zJr5mpATjAxiJ1BRucMABJdys82.jpg", "order": 7}, {"name": "Margo Martindale", "character": "Aunt Del", "id": 452, "credit_id": "52fe4abbc3a36847f81de8e3", "cast_id": 13, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 8}, {"name": "Zoey Deutch", "character": "Emily Asher", "id": 1059597, "credit_id": "52fe4abbc3a36847f81de8e7", "cast_id": 14, "profile_path": "/9R7EQhJ4phu4FWdLhCzEobfNnXf.jpg", "order": 9}, {"name": "Rachel Brosnahan", "character": "Genevieve Duchannes", "id": 993774, "credit_id": "52fe4abbc3a36847f81de8eb", "cast_id": 15, "profile_path": "/ySfFf8MMfj2Unw0wBl1u2CMDVYV.jpg", "order": 10}], "directors": [{"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4abbc3a36847f81de8ad", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}], "vote_average": 5.6, "runtime": 124}, "11358": {"poster_path": "/mgYJjfWiuL2jPbypv1ICnd9JSCs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46123824, "overview": "A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.", "video": false, "id": 11358, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Walking Tall", "tagline": "One man will stand up for what's right.", "vote_count": 107, "homepage": "http://www.mgm.com/view/Movie/2113/Walking-Tall/home.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wdk59P3cjnx8w78o1K5pos0yUgN.jpg", "id": 299748, "name": "Walking Tall Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0351977", "adult": false, "backdrop_path": "/9a3lNFkZbOoQwSRhEDAOfzasi3o.jpg", "production_companies": [{"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Mandeville Films", "id": 10227}, {"name": "Burke/Samples/Foster Productions", "id": 23938}, {"name": "WWE Studios", "id": 10339}, {"name": "Cub Eight Productions", "id": 23940}], "release_date": "2004-04-02", "popularity": 0.941378880536355, "original_title": "Walking Tall", "budget": 56000000, "cast": [{"name": "Dwayne Johnson", "character": "Chris Vaughn", "id": 18918, "credit_id": "52fe44309251416c7502bd67", "cast_id": 15, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Johnny Knoxville", "character": "Ray Templeton", "id": 9656, "credit_id": "52fe44309251416c7502bd6b", "cast_id": 16, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 1}, {"name": "Neal McDonough", "character": "Jay Hamilton", "id": 2203, "credit_id": "52fe44309251416c7502bd6f", "cast_id": 17, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 2}, {"name": "Kristen Wilson", "character": "Michelle Vaughn", "id": 31029, "credit_id": "52fe44309251416c7502bd73", "cast_id": 18, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 3}, {"name": "Cobie Smulders", "character": "Exotic Beauty", "id": 71189, "credit_id": "52fe44309251416c7502bd7d", "cast_id": 20, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 4}, {"name": "Michael Bowen", "character": "Sheriff Stan Watkins", "id": 2234, "credit_id": "52fe44309251416c7502bd81", "cast_id": 21, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 5}, {"name": "Ashley Scott", "character": "Deni", "id": 71128, "credit_id": "52fe44309251416c7502bd85", "cast_id": 22, "profile_path": "/pHQXzpZbb1T5HobppWZtIMbjyIC.jpg", "order": 6}, {"name": "John Beasley", "character": "Chris Vaughn Sr.", "id": 38571, "credit_id": "52fe44309251416c7502bd89", "cast_id": 23, "profile_path": "/mboK7DsL33Ulmoj6LwJIfJKV5tu.jpg", "order": 7}, {"name": "Barbara Tarbuck", "character": "Connie Vaughn", "id": 31391, "credit_id": "52fe44309251416c7502bd8d", "cast_id": 24, "profile_path": "/i7at1EiZ8DLQB8AVi3NwZ7Yv5BC.jpg", "order": 8}, {"name": "Kristen Wilson", "character": "Michelle Vaughn", "id": 31029, "credit_id": "52fe44309251416c7502bd91", "cast_id": 25, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 9}, {"name": "Khleo Thomas", "character": "Pete Vaughn", "id": 54495, "credit_id": "52fe44309251416c7502bd95", "cast_id": 26, "profile_path": "/3SXGiCUQfrGNPJABrTaDuzo1Ibe.jpg", "order": 10}, {"name": "Kevin Durand", "character": "Booth", "id": 79072, "credit_id": "53e7cc820e0a266f97002475", "cast_id": 35, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 11}], "directors": [{"name": "Kevin Bray", "department": "Directing", "job": "Director", "credit_id": "52fe442f9251416c7502bd1b", "profile_path": "/npkd2oUXtUvNPTfN4YDIMsXKznm.jpg", "id": 34453}], "vote_average": 6.3, "runtime": 86}, "14181": {"poster_path": "/ciRwkOEfDjZxa5chxB5Nnw1lxsF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28780255, "overview": "A college dropout gets a job as a broker for a suburban investment firm, which puts him on the fast track to success, but the job might not be as legitimate as it sounds.", "video": false, "id": 14181, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Boiler Room", "tagline": "Welcome to the new American dream.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0181984", "adult": false, "backdrop_path": "/8uXj6bhduUMCcAm4OalDMHOUkt3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2000-02-18", "popularity": 0.41178920772729, "original_title": "Boiler Room", "budget": 26000000, "cast": [{"name": "Giovanni Ribisi", "character": "Seth Davis", "id": 1771, "credit_id": "52fe45d59251416c7506402b", "cast_id": 1, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 0}, {"name": "Vin Diesel", "character": "Chris Varick", "id": 12835, "credit_id": "52fe45d59251416c7506402f", "cast_id": 2, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 1}, {"name": "Nia Long", "character": "Abbie Halpert", "id": 9781, "credit_id": "52fe45d59251416c75064033", "cast_id": 3, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 2}, {"name": "Tom Everett Scott", "character": "Michael Brantley", "id": 16857, "credit_id": "52fe45d59251416c75064037", "cast_id": 4, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 3}, {"name": "Ben Affleck", "character": "Jim Young", "id": 880, "credit_id": "52fe45d59251416c7506403b", "cast_id": 5, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 4}, {"name": "Nicky Katt", "character": "Greg Weinstein", "id": 18070, "credit_id": "52fe45d59251416c75064045", "cast_id": 7, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 5}, {"name": "Scott Caan", "character": "Richie O'Flaherty", "id": 1894, "credit_id": "52fe45d59251416c75064049", "cast_id": 8, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "Ron Rifkin", "character": "Judge Marty Davis", "id": 12122, "credit_id": "52fe45d59251416c7506404d", "cast_id": 9, "profile_path": "/3jnFU7DmoiGNixvC3loBQopzO9l.jpg", "order": 7}, {"name": "Jamie Kennedy", "character": "Adam", "id": 6213, "credit_id": "52fe45d59251416c75064051", "cast_id": 10, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 8}, {"name": "Kirk Acevedo", "character": "Broker", "id": 55861, "credit_id": "52fe45d59251416c75064055", "cast_id": 11, "profile_path": "/9CTkCXyKQrHTFZWFN3JtDM2mF0U.jpg", "order": 9}, {"name": "Siobhan Fallon", "character": "Michelle", "id": 6751, "credit_id": "52fe45d59251416c7506405f", "cast_id": 13, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 10}], "directors": [{"name": "Ben Younger", "department": "Directing", "job": "Director", "credit_id": "52fe45d59251416c75064041", "profile_path": "/7KzvNpsJT4qHV4owEMBvnMMfIdH.jpg", "id": 24294}], "vote_average": 6.3, "runtime": 118}, "11360": {"poster_path": "/r5IqhwZ61OuKlsyDwvXWyWQZK30.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1600000, "overview": "Dumbo is a baby elephant born with oversized ears and a supreme lack of confidence. But thanks to his even more diminutive buddy -- Timothy the Mouse -- the pint-sized pachyderm learns to surmount all obstacles.", "video": false, "id": 11360, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Dumbo", "tagline": "The One...The Only...The FABULOUS...", "vote_count": 257, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0033563", "adult": false, "backdrop_path": "/sa5vHfu5n4NFqZbVf2hzqGr6bim.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1941-10-23", "popularity": 1.42058233895123, "original_title": "Dumbo", "budget": 812000, "cast": [{"name": "Sterling Holloway", "character": "Mr. Stork (voice)", "id": 34759, "credit_id": "52fe44309251416c7502be55", "cast_id": 10, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 1}, {"name": "Herman Bing", "character": "The Ringmaster (voice)", "id": 9084, "credit_id": "52fe44309251416c7502be59", "cast_id": 11, "profile_path": "/1cb3BsqWkFUoz5dBFEtbhaSKAa7.jpg", "order": 2}, {"name": "John McLeish", "character": "Narrator (voice)", "id": 69136, "credit_id": "52fe44309251416c7502be5d", "cast_id": 12, "profile_path": "/7tNWyT3FFY1tigZC1kdgKlH9nTY.jpg", "order": 3}, {"name": "Edward Brophy", "character": "Timothy Q. Mouse (voice)", "id": 32437, "credit_id": "52fe44309251416c7502be61", "cast_id": 13, "profile_path": "/7VZfkNrqLAm4XqHoySAogIRVuDD.jpg", "order": 4}, {"name": "James Baskett", "character": "Crow (voice)", "id": 535025, "credit_id": "52fe44309251416c7502be65", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Billy Bletcher", "character": "Clown (voice)", "id": 31771, "credit_id": "52fe44309251416c7502be69", "cast_id": 15, "profile_path": "/oSVlEOCgrHdYl7OifMxDffIUhHC.jpg", "order": 6}, {"name": "Jim Carmichael", "character": "Crow (voice)", "id": 222315, "credit_id": "52fe44309251416c7502be6d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Hall Johnson Choir", "character": "Choral Sounds", "id": 1046804, "credit_id": "52fe44309251416c7502be71", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Cliff Edwards", "character": "Jim Crow (voice)", "id": 30236, "credit_id": "52fe44309251416c7502be75", "cast_id": 18, "profile_path": "/kbWXXmugxdX3rOEa0hUlJWHZ9pA.jpg", "order": 9}, {"name": "Verna Felton", "character": "The Elephant Matriarch / Mrs. Jumbo (voice)", "id": 67290, "credit_id": "52fe44309251416c7502be79", "cast_id": 19, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 10}, {"name": "Noreen Gammill", "character": "Catty the Elephant (voice)", "id": 193820, "credit_id": "52fe44309251416c7502be7d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Eddie Holden", "character": "Clown (voice)", "id": 227460, "credit_id": "52fe44309251416c7502be81", "cast_id": 21, "profile_path": "/8ObfPqjXG4ieuvpCpcRul5w2rEB.jpg", "order": 12}, {"name": "Malcolm Hutton", "character": "Skinny (voice)", "id": 951504, "credit_id": "52fe44309251416c7502be85", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "The King's Men", "character": "Choral Effects", "id": 142531, "credit_id": "52fe44309251416c7502be89", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Harold Manley", "character": "Boy (voice)", "id": 1097241, "credit_id": "52fe44309251416c7502be8d", "cast_id": 24, "profile_path": null, "order": 15}], "directors": [{"name": "Ben Sharpsteen", "department": "Directing", "job": "Director", "credit_id": "52fe44309251416c7502be27", "profile_path": "/1dfzGLuG0n4IeR6ONjAFuhh8Kli.jpg", "id": 11426}], "vote_average": 6.2, "runtime": 64}, "44129": {"poster_path": "/xP1FWgiUT1v1GGCwd94hXLaHyg8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4882577, "overview": "Bobby Walker is living the proverbial American dream: great job, beautiful family, shiny Porsche in the garage. When corporate downsizing leaves him and co-workers Phil Woodward and Gene McClary jobless, the three men are forced to re-define their lives as men, husbands and fathers.", "video": false, "id": 44129, "genres": [{"id": 18, "name": "Drama"}], "title": "The Company Men", "tagline": "In America, we give our lives to our jobs. It's time to take them back.", "vote_count": 69, "homepage": "http://www.companymenmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1172991", "adult": false, "backdrop_path": "/7U5ORIO4QUL56EFnt0mV6C1SCze.jpg", "production_companies": [{"name": "Battle Mountain Films", "id": 7288}, {"name": "Spring Creek Productions", "id": 705}], "release_date": "2010-10-21", "popularity": 0.821315545462664, "original_title": "The Company Men", "budget": 15000000, "cast": [{"name": "Ben Affleck", "character": "Bobby Walker", "id": 880, "credit_id": "52fe4678c3a36847f8100dd3", "cast_id": 2, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Gene McClary", "id": 2176, "credit_id": "52fe4678c3a36847f8100ddf", "cast_id": 5, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Phil Woodward", "id": 2955, "credit_id": "52fe4678c3a36847f8100de3", "cast_id": 6, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Kevin Costner", "character": "Jack Dolan", "id": 1269, "credit_id": "52fe4678c3a36847f8100dd7", "cast_id": 3, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 3}, {"name": "Maria Bello", "character": "Sally Wilcox", "id": 49, "credit_id": "52fe4678c3a36847f8100ddb", "cast_id": 4, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 4}, {"name": "Rosemarie DeWitt", "character": "Maggie Walker", "id": 14892, "credit_id": "52fe4678c3a36847f8100e23", "cast_id": 26, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 5}, {"name": "Craig T. Nelson", "character": "Conal Doherty", "id": 8977, "credit_id": "52fe4678c3a36847f8100de7", "cast_id": 7, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 6}, {"name": "Eamonn Walker", "character": "Danny", "id": 19299, "credit_id": "549d1886c3a368764f000fb2", "cast_id": 28, "profile_path": "/9vuNtg6IGlUNFOurojwkYThKnvd.jpg", "order": 7}, {"name": "Tom Kemp", "character": "Conal Doherty", "id": 58333, "credit_id": "52fe4678c3a36847f8100deb", "cast_id": 14, "profile_path": "/iQ3etbD6KycVsVK3VSCatpTBeZr.jpg", "order": 8}, {"name": "Nancy Villone", "character": "Diane Lindstrom", "id": 141451, "credit_id": "52fe4678c3a36847f8100def", "cast_id": 15, "profile_path": "/vNhZW5op8tXnaoiGkCGESS7dzQI.jpg", "order": 9}, {"name": "Patricia Kalember", "character": "Cynthia McClary", "id": 23627, "credit_id": "52fe4678c3a36847f8100e27", "cast_id": 27, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 10}], "directors": [{"name": "John Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4678c3a36847f8100e1f", "profile_path": "/rpVdPsbj7QLJ0VRRDmhPcYoF6m0.jpg", "id": 47333}], "vote_average": 6.5, "runtime": 104}, "11362": {"poster_path": "/u1tLUDAMjOutrnSCyDhiiyZs50L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75395048, "overview": "Edmond Dant\u00e9s's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dant\u00e9s escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.", "video": false, "id": 11362, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Count of Monte Cristo", "tagline": "Prepare for adventure. Count on revenge.", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245844", "adult": false, "backdrop_path": "/79RWu5NGhRMJqgrnSgQiOb5nNkK.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "World 2000 Entertainment", "id": 7692}, {"name": "Count of Monte Cristo Ltd.", "id": 7693}], "release_date": "2002-01-23", "popularity": 0.543515304545366, "original_title": "The Count of Monte Cristo", "budget": 0, "cast": [{"name": "Jim Caviezel", "character": "Edmond Dantes", "id": 8767, "credit_id": "52fe44319251416c7502bf6b", "cast_id": 17, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Fernand Mondego", "id": 529, "credit_id": "52fe44309251416c7502bf23", "cast_id": 2, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Richard Harris", "character": "Abb\u00e9 Faria", "id": 194, "credit_id": "52fe44309251416c7502bf27", "cast_id": 3, "profile_path": "/64jkJJtL5sins6nwGKOERduLSEA.jpg", "order": 2}, {"name": "James Frain", "character": "J.F. Villefort", "id": 22063, "credit_id": "52fe44309251416c7502bf2b", "cast_id": 4, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 3}, {"name": "Dagmara Domi\u0144czyk", "character": "Merced\u00e8s Iguanada", "id": 52776, "credit_id": "52fe44309251416c7502bf53", "cast_id": 11, "profile_path": "/wQ15ftdMUkwt281XZYBhyHAci0z.jpg", "order": 4}, {"name": "Michael Wincott", "character": "Armand Dorleac", "id": 7486, "credit_id": "52fe44319251416c7502bf57", "cast_id": 12, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 5}, {"name": "Luis Guzm\u00e1n", "character": "Jacopo", "id": 40481, "credit_id": "52fe44319251416c7502bf5b", "cast_id": 13, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 6}, {"name": "Christopher Adamson", "character": "Maurice", "id": 64102, "credit_id": "52fe44319251416c7502bf5f", "cast_id": 14, "profile_path": "/8yLz3515hR5RgjeH0kbGcjSYylO.jpg", "order": 7}, {"name": "J. B. Blanc", "character": "Luigi Vampa", "id": 136152, "credit_id": "52fe44319251416c7502bf63", "cast_id": 15, "profile_path": "/6P15QAzQKhaaE60LMsyepnbdrjS.jpg", "order": 8}, {"name": "Henry Cavill", "character": "Albert Mondego", "id": 73968, "credit_id": "52fe44319251416c7502bf67", "cast_id": 16, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 9}], "directors": [{"name": "Kevin Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe44309251416c7502bf31", "profile_path": "/drxXtPvCxVtw0VLn1on073OrW9s.jpg", "id": 8300}], "vote_average": 7.0, "runtime": 131}, "3172": {"poster_path": "/3wTzOr0CekiBJZL7ZiNE2y2H16N.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67631903, "overview": "Two bank robbers fall in love with the girl they've kidnapped.", "video": false, "id": 3172, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "Bandits", "tagline": "Two's Company, Three's A Crime.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0219965", "adult": false, "backdrop_path": "/k86wUuUvPVZvM3zwxEhImpfyLq0.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Parkway Productions", "id": 1350}], "release_date": "2001-10-12", "popularity": 0.528632466849428, "original_title": "Bandits", "budget": 75000000, "cast": [{"name": "Bruce Willis", "character": "Joshep Blake", "id": 62, "credit_id": "52fe438cc3a36847f805cb53", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Billy Bob Thornton", "character": "Terry Lee Collins", "id": 879, "credit_id": "52fe438cc3a36847f805cb57", "cast_id": 2, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 1}, {"name": "Cate Blanchett", "character": "Kate Wheeler", "id": 112, "credit_id": "52fe438cc3a36847f805cb5b", "cast_id": 3, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 2}, {"name": "Troy Garity", "character": "Harvey Pollard", "id": 31711, "credit_id": "52fe438cc3a36847f805cbb3", "cast_id": 18, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 3}, {"name": "William Converse-Roberts", "character": "Charles Wheeler", "id": 31712, "credit_id": "52fe438cc3a36847f805cbb7", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Br\u00edan F. O'Byrne", "character": "Darill Miller", "id": 31713, "credit_id": "52fe438cc3a36847f805cbbb", "cast_id": 20, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 5}, {"name": "Stacey Travis", "character": "Cloe Miller", "id": 31714, "credit_id": "52fe438cc3a36847f805cbbf", "cast_id": 21, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 6}, {"name": "Azura Skye", "character": "Cheri", "id": 31715, "credit_id": "52fe438cc3a36847f805cbc3", "cast_id": 22, "profile_path": "/9dyxe8DOX8eEGrCo6ieW4ZiPZWC.jpg", "order": 7}, {"name": "Peggy Miley", "character": "Mildred Kronenberg", "id": 31716, "credit_id": "52fe438cc3a36847f805cbc7", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "January Jones", "character": "Claire/Pink Boots", "id": 31717, "credit_id": "52fe438cc3a36847f805cbcb", "cast_id": 24, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 9}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe438cc3a36847f805cb61", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 6.2, "runtime": 123}, "3175": {"poster_path": "/htHCOsF4oUdMWfLh2PKEDFMn8Oc.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20000000, "overview": "In the Eighteenth Century, in a small village in Ireland, Redmond Barry is a young farm boy in love with his cousin Nora Brady. When Nora engages to the British Captain John Quin, Barry challenges him for a duel of pistols. He wins and escapes to Dublin, but is robbed on the road. Without any other alternative, Barry joins the British Army to fight in the Seven Years War.", "video": false, "id": 3175, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Barry Lyndon", "tagline": "At long last Redmond Barry became a gentleman -- and that was his tragedy.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072684", "adult": false, "backdrop_path": "/o7oWKUhuwJhjFcxLwKqebk3HLq7.jpg", "production_companies": [{"name": "Hawk Films", "id": 88}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Peregrine", "id": 11272}], "release_date": "1975-12-18", "popularity": 0.77487379829765, "original_title": "Barry Lyndon", "budget": 11000000, "cast": [{"name": "Ryan O'Neal", "character": "Barry Lyndon", "id": 31070, "credit_id": "52fe438dc3a36847f805ccd1", "cast_id": 9, "profile_path": "/fTqIq5voXV1hQd3Ol4VtnUWy7j2.jpg", "order": 0}, {"name": "Marisa Berenson", "character": "Lady Lyndon", "id": 31071, "credit_id": "52fe438dc3a36847f805ccd5", "cast_id": 10, "profile_path": "/gUXUngbaDX2AfugAjKuInMQe2rj.jpg", "order": 1}, {"name": "Hardy Kr\u00fcger", "character": "Capt. Potzdorf", "id": 37777, "credit_id": "52fe438dc3a36847f805cd0d", "cast_id": 26, "profile_path": "/yZd3hiAk3ZR3LdsPXdwtjNk05hR.jpg", "order": 2}, {"name": "Diana K\u00f6rner", "character": "Lischen", "id": 22703, "credit_id": "52fe438dc3a36847f805ccd9", "cast_id": 13, "profile_path": "/lLw8souihs7d5ozOVHKwCWHyHZS.jpg", "order": 3}, {"name": "Frank Middlemass", "character": "Sir Charles Reginald Lyndon", "id": 31718, "credit_id": "52fe438dc3a36847f805ccdd", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Arthur O'Sullivan", "character": "Captain Feeny", "id": 31719, "credit_id": "52fe438dc3a36847f805cce1", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Godfrey Quigley", "character": "Capt. Grogan", "id": 2279, "credit_id": "52fe438dc3a36847f805cce5", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Patrick Magee", "character": "The Chevalier de Balibari", "id": 2264, "credit_id": "52fe438dc3a36847f805cce9", "cast_id": 17, "profile_path": "/97RYoo5XQj0R8rr5Fvua9HlB55E.jpg", "order": 7}, {"name": "Steven Berkoff", "character": "Lord Ludd", "id": 782, "credit_id": "52fe438dc3a36847f805cced", "cast_id": 18, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 8}, {"name": "Gay Hamilton", "character": "Nora Brady", "id": 31720, "credit_id": "52fe438dc3a36847f805ccf1", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Marie Kean", "character": "Belle, Barry's mother", "id": 31721, "credit_id": "52fe438dc3a36847f805ccf5", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Murray Melvin", "character": "Rev. Samuel Runt", "id": 31722, "credit_id": "52fe438dc3a36847f805ccf9", "cast_id": 21, "profile_path": "/qaCr8aNv6rHoWfonVjsAii5lNiM.jpg", "order": 11}, {"name": "Andr\u00e9 Morell", "character": "Lord Gustavos Adolphus Wendover", "id": 10029, "credit_id": "52fe438dc3a36847f805ccfd", "cast_id": 22, "profile_path": "/slGvSoLbXaR1g23Rxj9N2WyKNWi.jpg", "order": 12}, {"name": "Leonard Rossiter", "character": "Capt. John Quin", "id": 249, "credit_id": "52fe438dc3a36847f805cd01", "cast_id": 23, "profile_path": "/a9AKQbnY69kRwwBgkL3wqfJgQru.jpg", "order": 13}, {"name": "Leon Vitali", "character": "Lord Bullingdon", "id": 5020, "credit_id": "52fe438dc3a36847f805cd05", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Billy Boyle", "character": "Seamus Feeny", "id": 31723, "credit_id": "52fe438dc3a36847f805cd09", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Stanley Kubrick", "department": "Directing", "job": "Director", "credit_id": "52fe438dc3a36847f805cca3", "profile_path": "/6Yzjg7HFhu2dQmEjWAAMLSDBfUq.jpg", "id": 240}], "vote_average": 7.2, "runtime": 184}, "3176": {"poster_path": "/4J5hW5wwT20hYSEPfxvfxNLjHcg.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "In the future, the Japanese government captures a class of ninth-grade students and forces them to kill each other under the revolutionary \"Battle Royale\" act.", "video": false, "id": 3176, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Battle Royale", "tagline": "Could you kill your best friend?", "vote_count": 230, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gKpdj5aKtxrAoAbJJ3EtBZHcsyP.jpg", "poster_path": "/rKlCCB5PXnrZmL0KkmpfhWcx0kB.jpg", "id": 16302, "name": "Battle Royale Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0266308", "adult": false, "backdrop_path": "/zIunndG2AYbZ7CIAwNb6SOkOb7A.jpg", "production_companies": [{"name": "AM Associates", "id": 11538}, {"name": "Kobi Co.", "id": 11539}, {"name": "Nippon Shuppan Hanbai (Nippan) K.K.", "id": 3032}, {"name": "MF Pictures", "id": 11540}, {"name": "WoWow", "id": 5073}, {"name": "GAGA", "id": 3656}], "release_date": "2000-12-16", "popularity": 0.970189593044205, "original_title": "\u30d0\u30c8\u30eb\u30fb\u30ed\u30ef\u30a4\u30a2\u30eb", "budget": 4500000, "cast": [{"name": "Takeshi Kitano", "character": "Kitano", "id": 3317, "credit_id": "52fe438dc3a36847f805cd91", "cast_id": 9, "profile_path": "/6mrQkOKdicqR7a6QBW6asc953er.jpg", "order": 0}, {"name": "Tatsuya Fujiwara", "character": "Shuya Nanahara (Boy #15)", "id": 31078, "credit_id": "52fe438dc3a36847f805cd95", "cast_id": 10, "profile_path": "/xPFYGeg1tE4e21AnQGuwbbHNXgB.jpg", "order": 1}, {"name": "Aki Maeda", "character": "Noriko Nakagawa (Girl #15)", "id": 31079, "credit_id": "52fe438dc3a36847f805cd99", "cast_id": 11, "profile_path": "/wpRkVndISU2bjhOyM61cT6OTDs9.jpg", "order": 2}, {"name": "Taro Yamamoto", "character": "Shogo Kawada (Boy #5)", "id": 31080, "credit_id": "52fe438dc3a36847f805cd9d", "cast_id": 12, "profile_path": "/kZI8zf8imvjzk9KHwgfMHqHNU0R.jpg", "order": 3}, {"name": "Masanobu Ando", "character": "Kazuo Kiriyama (Boy #6)", "id": 74862, "credit_id": "52fe438dc3a36847f805cdd9", "cast_id": 27, "profile_path": "/nrOOXnq0fpGIBp2ld1FmMj3T4BI.jpg", "order": 4}, {"name": "Kou Shibasaki", "character": "Mitsuko Souma (Girl #11)", "id": 58593, "credit_id": "52fe438dc3a36847f805cdc1", "cast_id": 21, "profile_path": "/5TWIdBWk1fQeitEjKD10VtaqKfT.jpg", "order": 5}, {"name": "Takashi Tsukamoto", "character": "Shinji Mimura (Boy #19)", "id": 121796, "credit_id": "52fe438dc3a36847f805cda5", "cast_id": 14, "profile_path": "/h8AL47RXoqrjwGn8u1mUW7w010R.jpg", "order": 6}, {"name": "Sousuke Takaoka", "character": "Hiroki Sugimura (Boy #11)", "id": 105405, "credit_id": "540630f6c3a36816af003e6b", "cast_id": 37, "profile_path": null, "order": 8}, {"name": "Chiaki Kuriyama", "character": "Takako Chigusa (Girl #13)", "id": 2538, "credit_id": "52fe438dc3a36847f805cda1", "cast_id": 13, "profile_path": "/ccaYcabNnxA4MPItZdKAMdqEqTk.jpg", "order": 9}, {"name": "Eri Ishikawa", "character": "Yukie Utsumi (Girl #2)", "id": 1006726, "credit_id": "52fe438dc3a36847f805cdb9", "cast_id": 19, "profile_path": "/gjPcD4ycrTh0pDCCkiNSVNg8Uda.jpg", "order": 10}, {"name": "Yukihiro Kotani", "character": "Y\u00f4shitoki Kuninobu (Boy #7)", "id": 1006725, "credit_id": "52fe438dc3a36847f805cdb5", "cast_id": 18, "profile_path": "/pZyFuxrx5irtyxFV4fdYONPzaIE.jpg", "order": 11}, {"name": "Sayaka Kamiya", "character": "Satomi Noda (Girl #17)", "id": 1006727, "credit_id": "52fe438dc3a36847f805cdbd", "cast_id": 20, "profile_path": "/e1tFSH0Xpjm85ulJOD2h95fGtxA.jpg", "order": 12}, {"name": "Aki Inoue", "character": "Fumiyo Fujiy\u00f4shi (Girl #18)", "id": 1083282, "credit_id": "52fe438dc3a36847f805cdc5", "cast_id": 22, "profile_path": "/ttRponp9heWuBR9uvzZ9HsORCZy.jpg", "order": 13}, {"name": "Takayo Mimura", "character": "Kayoko Kot\u00f4hiki (Girl #8)", "id": 97565, "credit_id": "52fe438dc3a36847f805cdc9", "cast_id": 23, "profile_path": "/Gw9koGm0EItuyvTPMnpIJKN4xt.jpg", "order": 14}, {"name": "Yutaka Shimada", "character": "Y\u00fbtaka Seto (Boy #12)", "id": 1083285, "credit_id": "52fe438dc3a36847f805cdcd", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Ren Matsuzawa", "character": "Keita \u00cejima (Boy #2)", "id": 1083287, "credit_id": "52fe438dc3a36847f805cdd1", "cast_id": 25, "profile_path": "/ApUUk3lr2LraehSvrnnKmurwiGS.jpg", "order": 16}, {"name": "Hirohito Honda", "character": "Kazushi N\u00eeda (Boy #16)", "id": 1083288, "credit_id": "52fe438dc3a36847f805cdd5", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Y\u016bko Miyamura", "character": "Training Video Girl", "id": 83768, "credit_id": "52fe438dc3a36847f805cddd", "cast_id": 28, "profile_path": "/aXRz2l0YzDtiuJSTkKJPaeKdLNN.jpg", "order": 18}, {"name": "Kazutoshi Yokoyama", "character": "Basketball referee", "id": 1095960, "credit_id": "52fe438dc3a36847f805cde1", "cast_id": 29, "profile_path": "/hSrVYQeeWbZfv96CnkXNCq1DQ5q.jpg", "order": 19}, {"name": "Minami", "character": "Keiko", "id": 1104911, "credit_id": "52fe438dc3a36847f805cdfd", "cast_id": 34, "profile_path": "/c2kUMHqk03lrxKGO8PioCBdUjZ5.jpg", "order": 20}, {"name": "Jir\u00f4 Nitta", "character": "Ky\u00f4ichi Motobuchi (Boy #20)", "id": 1089195, "credit_id": "53e7f9d1c3a368398a0023a2", "cast_id": 36, "profile_path": null, "order": 21}], "directors": [{"name": "Kinji Fukasaku", "department": "Directing", "job": "Director", "credit_id": "52fe438dc3a36847f805cd6f", "profile_path": null, "id": 31074}], "vote_average": 7.1, "runtime": 114}, "1494": {"poster_path": "/nujK5GAM7Gd37A3kYuBTFZ7a39y.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "During China's Tang dynasty the emperor has taken the princess of a neighboring province as wife. She has borne him two sons and raised his eldest. Now his control over his dominion is complete, including the royal family itself.", "video": false, "id": 1494, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Curse of the Golden Flower", "tagline": "Unspeakable secrets are hidden within the Forbidden City.", "vote_count": 60, "homepage": "http://ent.sina.com.cn/hjj/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0473444", "adult": false, "backdrop_path": "/bXo7ydNJxww2q4KSgobqUfhEofz.jpg", "production_companies": [{"name": "Beijing New Picture Film Co. Ltd.", "id": 724}], "release_date": "2006-12-21", "popularity": 0.450612109451545, "original_title": "Man cheng jin dai huang jin jia", "budget": 45, "cast": [{"name": "Chow Yun-Fat", "character": "Cesarz Ping", "id": 1619, "credit_id": "52fe42fac3a36847f8031249", "cast_id": 15, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 0}, {"name": "Gong Li", "character": "Cesarzowa Phoenix", "id": 643, "credit_id": "52fe42fac3a36847f803124d", "cast_id": 16, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 1}, {"name": "Jay Chou", "character": "Ksi\u0105\u017c\u0119 Jai/Drugi syn", "id": 17380, "credit_id": "52fe42fac3a36847f8031251", "cast_id": 17, "profile_path": "/g2fvgW2IVgLHt988eYoAl0REILQ.jpg", "order": 2}, {"name": "Liu Ye", "character": "Ksi\u0105\u017c\u0119 Wan/Pierwszy Syn", "id": 20654, "credit_id": "52fe42fac3a36847f8031267", "cast_id": 24, "profile_path": "/mHJPqzjeO5I2wKKnGytoJMbqKQG.jpg", "order": 3}, {"name": "Qin Jun-Jie", "character": "Ksi\u0105\u017c\u0119 Yu/Trzeci syn", "id": 17385, "credit_id": "52fe42fac3a36847f803125d", "cast_id": 22, "profile_path": "/rpEr6w3tFwlfgduCiYdYpHDwifG.jpg", "order": 4}, {"name": "Li Man", "character": "Jiang Chan/C\u00f3rka medyka", "id": 17384, "credit_id": "52fe42fac3a36847f8031259", "cast_id": 21, "profile_path": "/hngpwkoX4XJdhJp71bCqHbX6zLX.jpg", "order": 5}, {"name": "Ni Da-Hong", "character": "Cesarski medyk Jiang", "id": 17382, "credit_id": "52fe42fac3a36847f8031255", "cast_id": 19, "profile_path": "/2mRc3oSiQ6VxlJgN08HmKcuDAa9.jpg", "order": 6}, {"name": "Chen Jin", "character": "Pani Jiang/\u017bona medyka", "id": 557424, "credit_id": "52fe42fac3a36847f8031277", "cast_id": 27, "profile_path": "/nWMCTLyqFbIjr4dVydx7bW8g19a.jpg", "order": 7}], "directors": [{"name": "Zhang Yimou", "department": "Directing", "job": "Director", "credit_id": "52fe42fac3a36847f8031273", "profile_path": "/rXancm9GMRLQlGc4dz6o5BFtnRy.jpg", "id": 607}], "vote_average": 6.3, "runtime": 114}, "11371": {"poster_path": "/8d9HG9An0WOPNQywo99QyEptLHz.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71069884, "overview": "An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.", "video": false, "id": 11371, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Score", "tagline": "There are no partners in crime", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0227445", "adult": false, "backdrop_path": "/cQ7y4GAwmDZAHev8IwOzA6Utr3z.jpg", "production_companies": [{"name": "Mandalay Pictures", "id": 551}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2001-07-13", "popularity": 0.597319500531464, "original_title": "The Score", "budget": 68000000, "cast": [{"name": "Robert De Niro", "character": "Nick Wells", "id": 380, "credit_id": "52fe44339251416c7502c3c7", "cast_id": 10, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Edward Norton", "character": "Jack Teller", "id": 819, "credit_id": "52fe44339251416c7502c3d3", "cast_id": 14, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 1}, {"name": "Marlon Brando", "character": "Max", "id": 3084, "credit_id": "52fe44339251416c7502c3cb", "cast_id": 12, "profile_path": "/e2u2Vyy66j2rUL8fyjjHWlYtWLH.jpg", "order": 2}, {"name": "Angela Bassett", "character": "Diane", "id": 9780, "credit_id": "52fe44339251416c7502c3cf", "cast_id": 13, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 3}, {"name": "Paul Soles", "character": "Danny", "id": 1215283, "credit_id": "52fe44339251416c7502c3d7", "cast_id": 15, "profile_path": "/2vDC8SwTcE59TZlRg1tSpNPxrxk.jpg", "order": 4}, {"name": "Jamie Harrold", "character": "Steven", "id": 86919, "credit_id": "530a3f5f925141110e003dd9", "cast_id": 18, "profile_path": "/psJL3yck7Dd0EzlKnmXmJcCG6Ee.jpg", "order": 5}, {"name": "Serge Houde", "character": "Laurent", "id": 41746, "credit_id": "54862fc7c3a3682612000286", "cast_id": 20, "profile_path": "/txotfOoZhyo7DXaga0vmHkMS5aD.jpg", "order": 6}, {"name": "Jean-Rene Ouellet", "character": "Andr\u00e9", "id": 1058750, "credit_id": "530a3f059251411108003abe", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Mark Camacho", "character": "Sapperstein's Cousin", "id": 7013, "credit_id": "530a3faa9251411114003a16", "cast_id": 19, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 8}], "directors": [{"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe44329251416c7502c393", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 6.7, "runtime": 124}, "68718": {"poster_path": "/5WJnxuw41sddupf8cwOxYftuvJG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 425368238, "overview": "With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.", "video": false, "id": 68718, "genres": [{"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Django Unchained", "tagline": "Life, liberty and the pursuit of vengeance.", "vote_count": 5101, "homepage": "http://unchainedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1853728", "adult": false, "backdrop_path": "/kFwUy1Nu9tM4ywZAGXHoetBY2pk.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2012-12-25", "popularity": 4.145669064052, "original_title": "Django Unchained", "budget": 100000000, "cast": [{"name": "Jamie Foxx", "character": "Django", "id": 134, "credit_id": "52fe479fc3a368484e0d12e3", "cast_id": 6, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Christoph Waltz", "character": "Dr. King Schultz", "id": 27319, "credit_id": "52fe479fc3a368484e0d12df", "cast_id": 5, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 1}, {"name": "Leonardo DiCaprio", "character": "Calvin Candie", "id": 6193, "credit_id": "52fe479fc3a368484e0d12db", "cast_id": 3, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 2}, {"name": "Kerry Washington", "character": "Broomhilda von Shaft", "id": 11703, "credit_id": "52fe479fc3a368484e0d12ef", "cast_id": 13, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 3}, {"name": "Samuel L. Jackson", "character": "Stephen", "id": 2231, "credit_id": "52fe479fc3a368484e0d12eb", "cast_id": 12, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 4}, {"name": "Walton Goggins", "character": "Billy Crash", "id": 27740, "credit_id": "52fe479fc3a368484e0d135f", "cast_id": 45, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 5}, {"name": "Dennis Christopher", "character": "Leonide Moguy", "id": 27770, "credit_id": "52fe479fc3a368484e0d1315", "cast_id": 27, "profile_path": "/sNFwlPHBAVn2fQIMVBTXMfx5E69.jpg", "order": 6}, {"name": "James Remar", "character": "Ace Speck", "id": 1736, "credit_id": "52fe479fc3a368484e0d1305", "cast_id": 18, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 7}, {"name": "Don Johnson", "character": "Spencer Gordon Bennet", "id": 25129, "credit_id": "52fe479fc3a368484e0d1309", "cast_id": 19, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 8}, {"name": "Michael Parks", "character": "The LeQuint Dickey Mining Co. Employee", "id": 2536, "credit_id": "52fe479fc3a368484e0d134d", "cast_id": 41, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 9}, {"name": "M.C. Gainey", "character": "Big John Brittle", "id": 22132, "credit_id": "52fe479fc3a368484e0d1311", "cast_id": 22, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 10}, {"name": "Laura Cayouette", "character": "Lara Lee Candie-Fitzwilly", "id": 565498, "credit_id": "52fe479fc3a368484e0d1325", "cast_id": 31, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 11}, {"name": "David Steen", "character": "Mr. Stonesipher", "id": 1067187, "credit_id": "52fe479fc3a368484e0d1319", "cast_id": 28, "profile_path": "/kgdUlAb34rXiSamG5It02YDmDnU.jpg", "order": 12}, {"name": "Dana Gourrier ", "character": "Cora", "id": 1133063, "credit_id": "52fe479fc3a368484e0d131d", "cast_id": 29, "profile_path": "/hj7pAGBEy9XzqT23kHxKrpJYT6W.jpg", "order": 13}, {"name": "Nichole Galicia", "character": "Sheba", "id": 1037108, "credit_id": "52fe479fc3a368484e0d1321", "cast_id": 30, "profile_path": "/mVt9uits1dAhVNKRwJlOmbwwIeB.jpg", "order": 14}, {"name": "Ato Essandoh", "character": "D'Artagnan", "id": 5377, "credit_id": "52fe479fc3a368484e0d1329", "cast_id": 32, "profile_path": "/boyZ5MkcayaIYoC8s8zh1KEArz7.jpg", "order": 15}, {"name": "Sammi Rotibi", "character": "Rodney", "id": 19300, "credit_id": "52fe479fc3a368484e0d132d", "cast_id": 33, "profile_path": "/yjktr2trahEBQmuLsCRMzgoDFvh.jpg", "order": 16}, {"name": "Escalante Lundy", "character": "Big Fred", "id": 1129647, "credit_id": "52fe479fc3a368484e0d13bd", "cast_id": 62, "profile_path": "/yfIXDhC4JeyfTFdtH2od3WyACnQ.jpg", "order": 18}, {"name": "Miriam F. Glover", "character": "Betina", "id": 1291798, "credit_id": "52fe479fc3a368484e0d13c1", "cast_id": 63, "profile_path": "/yl1LH4l7Ccs8zOdEgdAL4wd69vQ.jpg", "order": 19}, {"name": "Franco Nero", "character": "Amerigo Vessepi", "id": 22383, "credit_id": "52fe479fc3a368484e0d1331", "cast_id": 34, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 20}, {"name": "James Russo", "character": "Dicky Speck", "id": 785, "credit_id": "52fe479fc3a368484e0d130d", "cast_id": 21, "profile_path": "/tV4X0uEuqu6XYml3yEs9rsG9EzW.jpg", "order": 21}, {"name": "Tom Wopat", "character": "U.S. Marshall Gill Tatum", "id": 114293, "credit_id": "52fe479fc3a368484e0d1335", "cast_id": 35, "profile_path": "/dGToGnJAKsrPZuC1ulnkvzBiTot.jpg", "order": 22}, {"name": "Don Stroud", "character": "Sheriff Bill Sharp", "id": 69494, "credit_id": "52fe479fc3a368484e0d1339", "cast_id": 36, "profile_path": "/xXzHqpByk7c29kx6SOcnQkxwqlo.jpg", "order": 23}, {"name": "Russ Tamblyn", "character": "Son of a Gunfighter", "id": 6725, "credit_id": "52fe479fc3a368484e0d133d", "cast_id": 37, "profile_path": "/gc0wmr0vyqYRhA7piZsqKVvy0uX.jpg", "order": 24}, {"name": "Jonah Hill", "character": "Bag Head #2", "id": 21007, "credit_id": "52fe479fc3a368484e0d1349", "cast_id": 40, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 29}, {"name": "Zo\u00eb Bell", "character": "Tracker", "id": 20494, "credit_id": "52fe479fc3a368484e0d13d5", "cast_id": 68, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 31}, {"name": "Michael Bowen", "character": "Tracker", "id": 2234, "credit_id": "52fe479fc3a368484e0d13d9", "cast_id": 69, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 32}, {"name": "James Parks", "character": "Tracker", "id": 87312, "credit_id": "52fe479fc3a368484e0d13e9", "cast_id": 73, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 36}, {"name": "Quentin Tarantino", "character": "The LeQuint Dickey Mining Co. Employee", "id": 138, "credit_id": "52fe479fc3a368484e0d1355", "cast_id": 43, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 39}, {"name": "John Jarratt", "character": "Le Quint Dickie Mining Company Employee", "id": 45210, "credit_id": "538c1f280e0a266712003842", "cast_id": 74, "profile_path": "/pG2OV7KBXbMzcirLuoLWN7Uoyfq.jpg", "order": 40}], "directors": [{"name": "Quentin Tarantino", "department": "Directing", "job": "Director", "credit_id": "52fe479fc3a368484e0d12d1", "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "id": 138}], "vote_average": 7.4, "runtime": 165}, "68721": {"poster_path": "/1Ilv6ryHUv6rt9zIsbSEJUmmbEi.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1215439994, "overview": "The brash-but-brilliant industrialist Tony Stark faces an enemy whose reach knows no bounds. When Stark finds his personal world destroyed at his enemy\u2019s hands, he embarks on a harrowing quest to find those responsible. This journey, at every turn, will test his mettle. With his back against the wall, Stark is left to survive by his own devices, relying on his ingenuity and instincts to protect those closest to him. As he fights his way back, Stark discovers the answer to the question that has secretly haunted him: does the man make the suit or does the suit make the man?", "video": false, "id": 68721, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Iron Man 3", "tagline": "Unleash the power behind the armor.", "vote_count": 5304, "homepage": "http://marvel.com/ironman3", "belongs_to_collection": {"backdrop_path": "/rI8zOWkRQJdlAyQ6WJOSlYK6JxZ.jpg", "poster_path": "/fbeJ7f0aD4A112Bc1tnpzyn82xO.jpg", "id": 131292, "name": "Iron Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1300854", "adult": false, "backdrop_path": "/n9X2DKItL3V0yq1q1jrk8z5UAki.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2013-05-03", "popularity": 3.73014541115945, "original_title": "Iron Man 3", "budget": 200000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe47a0c3a368484e0d15ff", "cast_id": 40, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe479fc3a368484e0d157b", "cast_id": 6, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Guy Pearce", "character": "Aldrich Killian", "id": 529, "credit_id": "52fe47a0c3a368484e0d15eb", "cast_id": 35, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 2}, {"name": "Don Cheadle", "character": "Col. James \"Rhodey\" Rhodes / Iron Patriot", "id": 1896, "credit_id": "52fe479fc3a368484e0d157f", "cast_id": 8, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 3}, {"name": "Ben Kingsley", "character": "Trevor Slattery", "id": 2282, "credit_id": "52fe479fc3a368484e0d1583", "cast_id": 9, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 4}, {"name": "Rebecca Hall", "character": "Maya Hansen", "id": 15556, "credit_id": "52fe479fc3a368484e0d158b", "cast_id": 13, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Happy Hogan", "id": 15277, "credit_id": "52fe479fc3a368484e0d158f", "cast_id": 14, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe479fc3a368484e0d1587", "cast_id": 12, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 7}, {"name": "William Sadler", "character": "President Ellis", "id": 6573, "credit_id": "52fe479fc3a368484e0d1593", "cast_id": 15, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 8}, {"name": "James Badge Dale", "character": "Savin", "id": 18473, "credit_id": "52fe47a0c3a368484e0d1597", "cast_id": 16, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 9}, {"name": "Yvonne Zima", "character": "Miss Elkridge", "id": 37252, "credit_id": "52fe47a0c3a368484e0d159b", "cast_id": 17, "profile_path": "/1F810ZLGGFw5NJxaCb3dmiC1IyK.jpg", "order": 10}, {"name": "Ashley Hamilton", "character": "Jack Taggert", "id": 992507, "credit_id": "52fe47a0c3a368484e0d159f", "cast_id": 18, "profile_path": "/7k2SH5xKV5pq7ntJDxNz4T9hItT.jpg", "order": 11}, {"name": "Spencer Garrett", "character": "Rose Hills Sherrif", "id": 49275, "credit_id": "52fe47a0c3a368484e0d15a3", "cast_id": 19, "profile_path": "/ifHCwS6Shlqp1H6N2YVVBo5PAbw.jpg", "order": 12}, {"name": "Bridger Zadina", "character": "Richie", "id": 445918, "credit_id": "52fe47a0c3a368484e0d15a7", "cast_id": 20, "profile_path": "/tboCwZFTgogpbY2PQI7FcjoLdNK.jpg", "order": 13}, {"name": "Chris Gethard", "character": "Juan", "id": 169265, "credit_id": "52fe47a0c3a368484e0d15ab", "cast_id": 21, "profile_path": "/3xIiXWjUTmmsD3A9c4KZklXbBrq.jpg", "order": 14}, {"name": "Roy McCrerey", "character": "Military Advisor", "id": 51464, "credit_id": "52fe47a0c3a368484e0d15af", "cast_id": 22, "profile_path": "/tsLn8BBb9BaflBbT1HakZ8ZwIKJ.jpg", "order": 15}, {"name": "Jonathan Jackson", "character": "Hollywood Type", "id": 23495, "credit_id": "52fe47a0c3a368484e0d15b3", "cast_id": 23, "profile_path": "/duZP6q1JQ1Is797xsZplydvgsRL.jpg", "order": 16}, {"name": "Stephanie Szostak", "character": "Ellen Brandt", "id": 121953, "credit_id": "52fe47a0c3a368484e0d15e7", "cast_id": 34, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 17}, {"name": "Noah Visconti", "character": "Neptune's Net Boy", "id": 1171688, "credit_id": "52fe47a0c3a368484e0d15ef", "cast_id": 36, "profile_path": "/1peWm6jFbi6HQgHibZtTi59z6eL.jpg", "order": 18}, {"name": "Ty Simpkins", "character": "Harley Keener", "id": 17181, "credit_id": "52fe47a0c3a368484e0d15f3", "cast_id": 37, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 19}, {"name": "Jenna Ortega", "character": "Vice President's Daughter", "id": 974169, "credit_id": "52fe47a0c3a368484e0d15f7", "cast_id": 38, "profile_path": "/tmjPdfhrteYChDVtMqgN84GkigD.jpg", "order": 20}, {"name": "Bronte D'Esposito", "character": "Neptune's Net Girl", "id": 1171861, "credit_id": "52fe47a0c3a368484e0d15fb", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Miguel Ferrer", "character": "Vice President Rodriguez", "id": 15860, "credit_id": "52fe47a0c3a368484e0d1603", "cast_id": 41, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 22}, {"name": "Stan Lee", "character": "Pageant Judge", "id": 7624, "credit_id": "52fe47a0c3a368484e0d165b", "cast_id": 56, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 23}, {"name": "Mark Ruffalo", "character": "Bruce Banner (uncredited)", "id": 103, "credit_id": "54b2606dc3a368094e004441", "cast_id": 59, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 24}, {"name": "Nick W. Nicholson", "character": "White House Reporter (uncredited)", "id": 1429470, "credit_id": "54e7e98ac3a3684ea60003de", "cast_id": 60, "profile_path": null, "order": 25}, {"name": "Shaun Toub", "character": "Yinsen", "id": 17857, "credit_id": "552a8f12925141265f001afa", "cast_id": 61, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 26}], "directors": [{"name": "Shane Black", "department": "Directing", "job": "Director", "credit_id": "52fe479fc3a368484e0d1577", "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "id": 1108}], "vote_average": 6.8, "runtime": 130}, "68722": {"poster_path": "/7IgXHrfZdGZ6HEMlLGbBsIhIwrg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28258060, "overview": "An agitated Naval veteran arrives home from war unsettled and uncertain of his future - until he is tantalized by The Cause and its charismatic leader.", "video": false, "id": 68722, "genres": [{"id": 18, "name": "Drama"}], "title": "The Master", "tagline": "Every Man Needs a Sub Dig Guide", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1560747", "adult": false, "backdrop_path": "/pF996qNhWgdpHT6qIY4fExQnqun.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "The Weinstein Company", "id": 308}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "2012-09-07", "popularity": 0.602514867601573, "original_title": "The Master", "budget": 32000000, "cast": [{"name": "Joaquin Phoenix", "character": "Freddie Quell", "id": 73421, "credit_id": "52fe47a0c3a368484e0d16ad", "cast_id": 4, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Lancaster Dodd", "id": 1233, "credit_id": "52fe47a0c3a368484e0d16b1", "cast_id": 5, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Amy Adams", "character": "Peggy Dodd", "id": 9273, "credit_id": "52fe47a0c3a368484e0d16a9", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 2}, {"name": "Laura Dern", "character": "Helen", "id": 4784, "credit_id": "52fe47a0c3a368484e0d16b5", "cast_id": 6, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Jesse Plemons", "character": "Val Dodd", "id": 88124, "credit_id": "52fe47a0c3a368484e0d16b9", "cast_id": 7, "profile_path": "/5EOD7UtSHYWR66BcDE2EnSvrQ1L.jpg", "order": 4}, {"name": "Ambyr Childers", "character": "Elizabeth Dodd", "id": 75330, "credit_id": "52fe47a0c3a368484e0d16ff", "cast_id": 20, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 5}, {"name": "Rami Malek", "character": "Clark", "id": 17838, "credit_id": "52fe47a0c3a368484e0d16bd", "cast_id": 8, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 6}, {"name": "Madisen Beaty", "character": "Doris Solstad", "id": 219666, "credit_id": "52fe47a0c3a368484e0d1703", "cast_id": 21, "profile_path": "/sCiab3TILScQqTo477arWbdImkk.jpg", "order": 7}, {"name": "Kevin J. O'Connor", "character": "Bill White", "id": 18916, "credit_id": "52fe47a0c3a368484e0d16c1", "cast_id": 9, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 8}, {"name": "Patty McCormack", "character": "Mildred Drummond", "id": 125026, "credit_id": "52fe47a0c3a368484e0d16c5", "cast_id": 10, "profile_path": "/xUNk8RjLVDTvtA4mAPX8aWBRMlR.jpg", "order": 9}, {"name": "Lena Endre", "character": "Mrs. Solstad", "id": 79196, "credit_id": "52fe47a0c3a368484e0d1707", "cast_id": 22, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 10}, {"name": "Barbara Brownell", "character": "Margaret O'Brien", "id": 157583, "credit_id": "52fe47a0c3a368484e0d170b", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Amy Ferguson", "character": "Martha the Salesgirl", "id": 230060, "credit_id": "52fe47a0c3a368484e0d170f", "cast_id": 24, "profile_path": "/3d3WDkIYiRSkwpgkmAHB2jaDonW.jpg", "order": 12}, {"name": "Jennifer Neala Page", "character": "Winn Manchester", "id": 1149893, "credit_id": "52fe47a0c3a368484e0d1713", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Christopher Evan Welch", "character": "John More", "id": 60021, "credit_id": "52fe47a0c3a368484e0d1717", "cast_id": 26, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 14}, {"name": "Mike Howard", "character": "Rorschach Doctor", "id": 1149894, "credit_id": "52fe47a0c3a368484e0d171b", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Bruce Goodchild", "character": "V.A. Doctor / Interview", "id": 1149895, "credit_id": "52fe47a0c3a368484e0d171f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Frank Bettag", "character": "Frank", "id": 1149896, "credit_id": "52fe47a0c3a368484e0d1723", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Mimi Cozzens", "character": "Chi Chi Crawford", "id": 158664, "credit_id": "52fe47a0c3a368484e0d1727", "cast_id": 30, "profile_path": null, "order": 18}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe47a0c3a368484e0d169f", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 6.7, "runtime": 137}, "68724": {"poster_path": "/tHkjoAxmhp3Eau1h0Ir7maKMwUz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 286140700, "overview": "In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes (Jodie Foster), a hard line government of\ufb01cial, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesn\u2019t stop the people of Earth from trying to get in, by any means they can. When unlucky Max (Matt Damon) is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.", "video": false, "id": 68724, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Elysium", "tagline": "He can save us all.", "vote_count": 1402, "homepage": "http://www.itsbetterupthere.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1535108", "adult": false, "backdrop_path": "/vSbjlX9y8S2hKNURHEO4GsoIOay.jpg", "production_companies": [{"name": "Genre Films", "id": 28788}, {"name": "TriStar Pictures", "id": 559}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Sony Pictures Entertainment (SPE)", "id": 7431}, {"name": "QED International", "id": 11029}, {"name": "Alpha Core", "id": 18209}, {"name": "Simon Kinberg Productions", "id": 31076}], "release_date": "2013-08-09", "popularity": 2.48871225812203, "original_title": "Elysium", "budget": 115000000, "cast": [{"name": "Matt Damon", "character": "Max", "id": 1892, "credit_id": "52fe47a0c3a368484e0d1775", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Delacourt", "id": 1038, "credit_id": "52fe47a0c3a368484e0d1779", "cast_id": 4, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "Murto", "id": 1072642, "credit_id": "55375d5c9251415704002e17", "cast_id": 143, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Kruger", "id": 82191, "credit_id": "52fe47a0c3a368484e0d17ad", "cast_id": 18, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Alice Braga", "character": "Frey", "id": 8602, "credit_id": "52fe47a0c3a368484e0d1781", "cast_id": 6, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 4}, {"name": "Diego Luna", "character": "Julio", "id": 8688, "credit_id": "52fe47a0c3a368484e0d1789", "cast_id": 8, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 5}, {"name": "Wagner Moura", "character": "Spider", "id": 52583, "credit_id": "52fe47a0c3a368484e0d1785", "cast_id": 7, "profile_path": "/bESNWiGHjMhMGoqBMVtbpJBazKx.jpg", "order": 6}, {"name": "William Fichtner", "character": "John Carlyle", "id": 886, "credit_id": "52fe47a0c3a368484e0d177d", "cast_id": 5, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 7}, {"name": "Faran Tahir", "character": "President Patel", "id": 57452, "credit_id": "52fe47a0c3a368484e0d179d", "cast_id": 14, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 8}, {"name": "Jose Pablo Cantillo", "character": "Sandro", "id": 20191, "credit_id": "52fe47a0c3a368484e0d17a1", "cast_id": 15, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 9}, {"name": "Maxwell Perry Cotton", "character": "Young Max", "id": 206928, "credit_id": "52fe47a0c3a368484e0d17a9", "cast_id": 17, "profile_path": "/nhVxraRhGDmWHgEU0I0gBjpp8pI.jpg", "order": 10}, {"name": "Brandon Auret", "character": "Drake", "id": 1029029, "credit_id": "52fe47a0c3a368484e0d17b1", "cast_id": 19, "profile_path": "/ne7Q7CodcxZnkE9oQiJhzkdcJ8D.jpg", "order": 11}, {"name": "Josh Blacker", "character": "Crowe", "id": 204420, "credit_id": "52fe47a0c3a368484e0d17f1", "cast_id": 30, "profile_path": "/yfSQdXChDb4DmHyikHLldazF55V.jpg", "order": 12}, {"name": "Emma Tremblay", "character": "Matilda", "id": 1272862, "credit_id": "52fe47a0c3a368484e0d17f5", "cast_id": 31, "profile_path": "/p6sRtFi1cNmR2qOXWX6buzDTFIr.jpg", "order": 13}, {"name": "Adrian Holmes", "character": "Manuel", "id": 33348, "credit_id": "52fe47a0c3a368484e0d17f9", "cast_id": 32, "profile_path": "/jGvsYbrvsok5QAYEJ9V8VHvDy9I.jpg", "order": 14}, {"name": "Jared Keeso", "character": "Rico", "id": 205053, "credit_id": "52fe47a0c3a368484e0d17fd", "cast_id": 33, "profile_path": "/hRoPfKnk8adZUfQqmi1O109BrFp.jpg", "order": 15}, {"name": "Talisa Soto", "character": "(uncredited)", "id": 10680, "credit_id": "52fe47a0c3a368484e0d178d", "cast_id": 10, "profile_path": "/3VWf8501ubov43OfPJEGMZH8LJ5.jpg", "order": 16}, {"name": "Michael Shanks", "character": "CCB Agent", "id": 26086, "credit_id": "52fe47a0c3a368484e0d1791", "cast_id": 11, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 17}, {"name": "Carly Pope", "character": "CCB Agent", "id": 43903, "credit_id": "52fe47a0c3a368484e0d1795", "cast_id": 12, "profile_path": "/4KLHkJZKFtVdmMkHtCSD1Ridku4.jpg", "order": 18}, {"name": "Ona Grauer", "character": "CCB Agent", "id": 67978, "credit_id": "52fe47a0c3a368484e0d1799", "cast_id": 13, "profile_path": "/dGP6WGaBnEiPhOrOirrPRcxCd2S.jpg", "order": 19}, {"name": "Terry Chen", "character": "Technician", "id": 11677, "credit_id": "52fe47a0c3a368484e0d17a5", "cast_id": 16, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 20}, {"name": "Chris Shields", "character": "Dr. Faizel", "id": 198615, "credit_id": "53aca5370e0a26597d00076e", "cast_id": 37, "profile_path": "/cKxfPfZMqCingbrn6MK3OSUhUVF.jpg", "order": 21}], "directors": [{"name": "Neill Blomkamp", "department": "Directing", "job": "Director", "credit_id": "52fe47a0c3a368484e0d1771", "profile_path": "/wM1ACz7B2km2KGkxA1sg3QyHrtL.jpg", "id": 82194}], "vote_average": 6.6, "runtime": 109}, "11381": {"poster_path": "/6HyFhz2RutIuOAeVOtAXN4cDHbO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32648673, "overview": "Party animal Tommy Callahan is a few cans short of a six-pack. But when the family business starts tanking, it's up to Tommy and number-cruncher Richard Hayden to save the day.", "video": false, "id": 11381, "genres": [{"id": 35, "name": "Comedy"}], "title": "Tommy Boy", "tagline": "If at first you don't succeed, lower your standards.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114694", "adult": false, "backdrop_path": "/ua22k2wSZ34ft2FzDYtBnF23V4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1995-03-31", "popularity": 0.591316487769741, "original_title": "Tommy Boy", "budget": 0, "cast": [{"name": "Chris Farley", "character": "Thomas 'Tommy' Callahan III", "id": 58198, "credit_id": "52fe44359251416c7502c86b", "cast_id": 1, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 0}, {"name": "David Spade", "character": "Richard Hayden", "id": 60950, "credit_id": "52fe44359251416c7502c86f", "cast_id": 2, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 1}, {"name": "Brian Dennehy", "character": "Thomas 'Big Tom' Callahan", "id": 6197, "credit_id": "52fe44359251416c7502c873", "cast_id": 3, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 2}, {"name": "Bo Derek", "character": "Beverly Barish, aka Beverly Burns", "id": 37995, "credit_id": "52fe44359251416c7502c877", "cast_id": 4, "profile_path": "/7WI05Puq8rxZKjXK7nMp82LoNNY.jpg", "order": 3}, {"name": "Julie Warner", "character": "Michelle", "id": 63681, "credit_id": "52fe44359251416c7502c89f", "cast_id": 11, "profile_path": "/bWoFkg4mQ3cQTW0hUxy8EqGVbwD.jpg", "order": 4}, {"name": "Dan Aykroyd", "character": "Zalinsky", "id": 707, "credit_id": "52fe44359251416c7502c8a3", "cast_id": 12, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 5}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44359251416c7502c87d", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 7.4, "runtime": 97}, "68726": {"poster_path": "/sCJEwEShZvruTpQ2a4yiX3Q9EyZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 407602906, "overview": "When legions of monstrous creatures, known as Kaiju, started rising from the sea, a war began that would take millions of lives and consume humanity's resources for years on end. To combat the giant Kaiju, a special type of weapon was devised: massive robots, called Jaegers, which are controlled simultaneously by two pilots whose minds are locked in a neural bridge. But even the Jaegers are proving nearly defenseless in the face of the relentless Kaiju. On the verge of defeat, the forces defending mankind have no choice but to turn to two unlikely heroes\u2014a washed-up former pilot (Charlie Hunnam) and an untested trainee (Rinko Kikuchi)\u2014who are teamed to drive a legendary but seemingly obsolete Jaeger from the past. Together, they stand as mankind's last hope against the mounting apocalypse.", "video": false, "id": 68726, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Pacific Rim", "tagline": "To Fight Monsters, We Created Monsters", "vote_count": 2295, "homepage": "http://www.pacificrimmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1663662", "adult": false, "backdrop_path": "/iB0RsWVoOXzicPi2Yy5xmTYMbho.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Disney Double Dare You (DDY)", "id": 19750}, {"name": "Indochina Productions", "id": 19751}], "release_date": "2013-07-12", "popularity": 2.38356229204832, "original_title": "Pacific Rim", "budget": 180000000, "cast": [{"name": "Idris Elba", "character": "Stacker Pentecost", "id": 17605, "credit_id": "52fe47a0c3a368484e0d1845", "cast_id": 2, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 0}, {"name": "Charlie Hunnam", "character": "Raleigh Becket", "id": 56365, "credit_id": "52fe47a0c3a368484e0d1849", "cast_id": 3, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 1}, {"name": "Charlie Day", "character": "Dr. Newton Geiszler", "id": 95101, "credit_id": "52fe47a0c3a368484e0d184d", "cast_id": 4, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Hannibal Chau", "id": 2372, "credit_id": "52fe47a0c3a368484e0d1857", "cast_id": 6, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Burn Gorman", "character": "Gottlieb", "id": 39659, "credit_id": "52fe47a0c3a368484e0d185b", "cast_id": 7, "profile_path": "/qV6MEseSjTkz1SKw9RoNHaesdRr.jpg", "order": 4}, {"name": "Rinko Kikuchi", "character": "Mako Mori", "id": 18054, "credit_id": "52fe47a0c3a368484e0d185f", "cast_id": 8, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 5}, {"name": "Max Martini", "character": "Herc Hansen", "id": 94864, "credit_id": "52fe47a0c3a368484e0d1863", "cast_id": 9, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 6}, {"name": "Robert Maillet", "character": "Aleksis Kaidanovsky", "id": 112692, "credit_id": "52fe47a0c3a368484e0d1867", "cast_id": 10, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 7}, {"name": "Robert Kazinsky", "character": "Chuck Hansen", "id": 1038379, "credit_id": "52fe47a0c3a368484e0d186b", "cast_id": 11, "profile_path": "/h54Qs5LK19NT2ZA2ysRzjjnuODH.jpg", "order": 8}, {"name": "Larry Joe Campbell", "character": "Tommy T", "id": 118590, "credit_id": "52fe47a0c3a368484e0d186f", "cast_id": 12, "profile_path": "/91kXO2XCIv8B9bP3720QIrTJNfs.jpg", "order": 9}, {"name": "Brad William Henke", "character": "Miles", "id": 15376, "credit_id": "52fe47a0c3a368484e0d1873", "cast_id": 13, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 10}, {"name": "Clifton Collins, Jr.", "character": "Ops Tendo Choi", "id": 5365, "credit_id": "52fe47a0c3a368484e0d1877", "cast_id": 14, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 11}, {"name": "Diego Klattenhoff", "character": "Yancy Becket", "id": 142193, "credit_id": "52fe47a0c3a368484e0d187b", "cast_id": 15, "profile_path": "/qGAmMLw289Q64Hyh7XFiDAFkmgP.jpg", "order": 12}, {"name": "Santiago Segura", "character": "Wizened Man", "id": 10847, "credit_id": "52fe47a0c3a368484e0d187f", "cast_id": 16, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 13}, {"name": "Jane Watson", "character": "Raleigh and Yancy's Mom", "id": 1428550, "credit_id": "54e49936c3a368486f003000", "cast_id": 38, "profile_path": null, "order": 14}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe47a0c3a368484e0d1841", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.7, "runtime": 131}, "68727": {"poster_path": "/jdVPz8ecjBRnboXQx4jmK7f5bLu.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 24000000, "overview": "A fine art auctioneer mixed up with a gang, joins forces with a hypnotherapist to recover a lost painting. As boundaries between desire, reality and hypnotic suggestion begin to blur, the stakes rise faster than anyone could have anticipated.", "video": false, "id": 68727, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Trance", "tagline": "Don't be a hero.", "vote_count": 440, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1924429", "adult": false, "backdrop_path": "/bsa7cusK4Uw7wX7szy8ilXiJavN.jpg", "production_companies": [{"name": "Path\u00e9", "id": 7981}, {"name": "Cloud Eight Films", "id": 6708}, {"name": "Decibel Films", "id": 8286}, {"name": "Film4", "id": 9349}], "release_date": "2013-03-27", "popularity": 1.48628780561764, "original_title": "Trance", "budget": 20000000, "cast": [{"name": "James McAvoy", "character": "Simon", "id": 5530, "credit_id": "52fe47a1c3a368484e0d18f7", "cast_id": 1, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Franck", "id": 1925, "credit_id": "52fe47a1c3a368484e0d1905", "cast_id": 6, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "Romero Wile", "id": 1072642, "credit_id": "5537624c9251412d91001b35", "cast_id": 35, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "Rosario Dawson", "character": "Elizabeth", "id": 5916, "credit_id": "52fe47a1c3a368484e0d1901", "cast_id": 5, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 3}, {"name": "Matt Cross", "character": "Dominic", "id": 219737, "credit_id": "52fe47a1c3a368484e0d1921", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Danny Sapani", "character": "Nate", "id": 165424, "credit_id": "52fe47a1c3a368484e0d190d", "cast_id": 8, "profile_path": "/4VeGdZjOEMCdO6AHbYiLI7FdT39.jpg", "order": 5}, {"name": "Tuppence Middleton", "character": "Young Woman", "id": 89822, "credit_id": "52fe47a1c3a368484e0d1909", "cast_id": 7, "profile_path": "/mV0FhuO38taTGiChvV9rhqLH8PQ.jpg", "order": 6}, {"name": "Lee Nicholas Harris", "character": "Paramedic", "id": 578690, "credit_id": "52fe47a1c3a368484e0d1911", "cast_id": 9, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 7}, {"name": "Sam Creed", "character": "Dj", "id": 1030253, "credit_id": "52fe47a1c3a368484e0d1915", "cast_id": 10, "profile_path": "/grHsE56RRIsmzXe3i7W7ORaV5rG.jpg", "order": 8}, {"name": "Hamza Jeetooa", "character": "MRI Technician", "id": 1030254, "credit_id": "52fe47a1c3a368484e0d1919", "cast_id": 11, "profile_path": "/kaUrFwbi1Y8l2kyh3MYO7QSuI24.jpg", "order": 9}, {"name": "Ben Cura", "character": "New Client", "id": 1030255, "credit_id": "52fe47a1c3a368484e0d191d", "cast_id": 12, "profile_path": "/mbECXHN3JDVOYyUISyxnjFjIekk.jpg", "order": 10}, {"name": "Kelvin Wise", "character": "Fireman", "id": 937218, "credit_id": "52fe47a1c3a368484e0d1925", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Simon Kunz", "character": "Surgeon", "id": 10701, "credit_id": "52fe47a1c3a368484e0d1929", "cast_id": 17, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 12}, {"name": "Wahab Sheikh", "character": "Riz", "id": 1182596, "credit_id": "52fe47a1c3a368484e0d1975", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Mark Poltimore", "character": "Francis Lemaitre", "id": 1272656, "credit_id": "52fe47a1c3a368484e0d1979", "cast_id": 31, "profile_path": null, "order": 14}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe47a1c3a368484e0d18fd", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.4, "runtime": 101}, "68728": {"poster_path": "/7qzLIcYR7ev7iXngY8NKHBZHwwT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 491868548, "overview": "Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.", "video": false, "id": 68728, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Oz: The Great and Powerful", "tagline": "In Oz, nothing is what it seems", "vote_count": 2331, "homepage": "http://www.ozthegreatandpowerfulmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1623205", "adult": false, "backdrop_path": "/4jv4TsBccZt60ltlPYmL8vaG8cu.jpg", "production_companies": [{"name": "Miller Roth Films", "id": 5829}, {"name": "Walt Disney", "id": 5888}], "release_date": "2013-03-08", "popularity": 1.38468355538671, "original_title": "Oz: The Great and Powerful", "budget": 200000000, "cast": [{"name": "James Franco", "character": "Oz", "id": 17051, "credit_id": "52fe47a1c3a368484e0d19e5", "cast_id": 6, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Theodora", "id": 18973, "credit_id": "52fe47a1c3a368484e0d19e1", "cast_id": 5, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Evanora", "id": 3293, "credit_id": "52fe47a1c3a368484e0d19dd", "cast_id": 4, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Michelle Williams", "character": "Annie / Glinda", "id": 1812, "credit_id": "52fe47a1c3a368484e0d19e9", "cast_id": 7, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 3}, {"name": "Zach Braff", "character": "Frank / Finley", "id": 5367, "credit_id": "52fe47a1c3a368484e0d19ed", "cast_id": 8, "profile_path": "/92orTaDC4b6siqCgfR8068uVNCp.jpg", "order": 4}, {"name": "Bill Cobbs", "character": "Master Tinker", "id": 8854, "credit_id": "52fe47a1c3a368484e0d19f1", "cast_id": 9, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 5}, {"name": "Joey King", "character": "Girl in Wheelchair / China Girl", "id": 125025, "credit_id": "52fe47a1c3a368484e0d19f5", "cast_id": 10, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 6}, {"name": "Tony Cox", "character": "Knuck", "id": 19754, "credit_id": "52fe47a1c3a368484e0d19f9", "cast_id": 11, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 7}, {"name": "Stephen R. Hart", "character": "Winkie General", "id": 224723, "credit_id": "52fe47a1c3a368484e0d19fd", "cast_id": 12, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 8}, {"name": "Abigail Spencer", "character": "May", "id": 123725, "credit_id": "52fe47a1c3a368484e0d1a01", "cast_id": 13, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 9}, {"name": "Bruce Campbell", "character": "Winkie Gate Keeper", "id": 11357, "credit_id": "52fe47a1c3a368484e0d1a05", "cast_id": 14, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 10}, {"name": "Ted Raimi", "character": "Skeptic in Audience", "id": 11769, "credit_id": "52fe47a1c3a368484e0d1a09", "cast_id": 15, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 11}, {"name": "Toni Wynne", "character": "Strong Man's Wife", "id": 99932, "credit_id": "52fe47a1c3a368484e0d1a0d", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Rob Crites", "character": "Firebreather", "id": 1157664, "credit_id": "52fe47a1c3a368484e0d1a11", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Martin Klebba", "character": "Munchkin Rebel", "id": 4030, "credit_id": "52fe47a1c3a368484e0d1a15", "cast_id": 18, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 14}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe47a1c3a368484e0d19cd", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 5.6, "runtime": 130}, "109689": {"poster_path": "/pwlqkymWu0I4E6Xqk9WGA9E73n7.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Sequel to \"Three Steps Above Heaven\". The sexy Gin (Clara Lago) is the new love of Hache (Mario Casas), but this can not forget his former girlfriend (Maria Valverde), so the love triangle is inevitable.", "video": false, "id": 109689, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "I Want You", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/v0j8pUKeYvlzyQeRVp1bhX0tomm.jpg", "poster_path": null, "id": 141649, "name": "Three Steps Above Heaven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1797504", "adult": false, "backdrop_path": "/7B3I7S9a4bLonbYw6XVcoDzW8RT.jpg", "production_companies": [{"name": "Zeta Audiovisual", "id": 9967}], "release_date": "2012-06-22", "popularity": 0.817809332011558, "original_title": "Tengo ganas de ti", "budget": 0, "cast": [{"name": "Mario Casas", "character": "Hache", "id": 82700, "credit_id": "52fe4ac1c3a36847f81dffa5", "cast_id": 2, "profile_path": "/p2C58kRezc0goIWDMYCn194C78a.jpg", "order": 0}, {"name": "Mar\u00eda Valverde", "character": "Babi", "id": 77122, "credit_id": "52fe4ac1c3a36847f81dffa9", "cast_id": 3, "profile_path": "/43htKmIzJGfRUJ95a0d7ZVLQFnR.jpg", "order": 1}, {"name": "\u00c1lvaro Cervantes", "character": "Pollo", "id": 224874, "credit_id": "52fe4ac1c3a36847f81dffad", "cast_id": 4, "profile_path": "/uEyDrAtn2sX3xhZ0NdTg7F649AE.jpg", "order": 2}, {"name": "Clara Lago", "character": "Gin", "id": 224731, "credit_id": "52fe4ac1c3a36847f81dffb1", "cast_id": 5, "profile_path": "/eO3vaBbQRVKYagr26VINxlisiSS.jpg", "order": 3}, {"name": "Diego Mart\u00edn", "character": "Alejandro", "id": 126771, "credit_id": "52fe4ac1c3a36847f81dffc1", "cast_id": 8, "profile_path": "/4WKXdMHCmjgEleKBFccr7KWW3Du.jpg", "order": 4}, {"name": "Cristina Plazas", "character": "Rafaella", "id": 234620, "credit_id": "550d7bbbc3a3684872006096", "cast_id": 9, "profile_path": "/4PgjV2Sw53oRHDhRZsHD4ah8RvI.jpg", "order": 5}, {"name": "Marcel Borr\u00e0s", "character": "Chico", "id": 574223, "credit_id": "550d7bce9251414695005aaa", "cast_id": 10, "profile_path": "/kjG3OydpYP3OBJR7NXHPAaLKMIq.jpg", "order": 6}, {"name": "Carles Francino", "character": "Vidal", "id": 1294750, "credit_id": "550d7bf09251414699005805", "cast_id": 11, "profile_path": "/hh8LYpgmcy1Qm1sIU13gpbuDGhl.jpg", "order": 7}, {"name": "Nerea Camacho", "character": "Daniela", "id": 82455, "credit_id": "550dbcc492514146910060fc", "cast_id": 12, "profile_path": "/cLtaC2j8VswIe7UxybuZpQFGbL.jpg", "order": 8}, {"name": "Antonio Vel\u00e1zquez", "character": "Serpiente", "id": 1073185, "credit_id": "550dc06cc3a36848830064fd", "cast_id": 13, "profile_path": "/111uQyajSp9KGstpzAyVZpzUWlg.jpg", "order": 9}, {"name": "Marina Salas", "character": "Katina", "id": 234619, "credit_id": "550dd5b29251414691006955", "cast_id": 14, "profile_path": "/3LGs4MiL9RzD6BKsr7teioJ2dqK.jpg", "order": 10}], "directors": [{"name": "Fernando Gonz\u00e1lez Molina", "department": "Directing", "job": "Director", "credit_id": "52fe4ac1c3a36847f81dffa1", "profile_path": null, "id": 82724}], "vote_average": 7.3, "runtime": 75}, "68734": {"poster_path": "/oai3xLBQHpIh18VJdRCcL7D0Yg0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 232324128, "overview": "As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.", "video": false, "id": 68734, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Argo", "tagline": "The movie was fake. The mission was real.", "vote_count": 1739, "homepage": "http://argothemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fa", "name": ""}], "imdb_id": "tt1024648", "adult": false, "backdrop_path": "/6Fy20wTtylup7EMUzCb5nuqjrU2.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "GK Films", "id": 3281}, {"name": "Smokehouse Pictures", "id": 22695}], "release_date": "2012-10-12", "popularity": 1.69489900192312, "original_title": "Argo", "budget": 44500000, "cast": [{"name": "Ben Affleck", "character": "Tony Mendez", "id": 880, "credit_id": "52fe47a1c3a368484e0d1b65", "cast_id": 3, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Bryan Cranston", "character": "Jack O'Donnell", "id": 17419, "credit_id": "52fe47a1c3a368484e0d1b69", "cast_id": 4, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 1}, {"name": "Alan Arkin", "character": "Lester Siegel", "id": 1903, "credit_id": "52fe47a1c3a368484e0d1b71", "cast_id": 6, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "John Goodman", "character": "John Chambers", "id": 1230, "credit_id": "52fe47a1c3a368484e0d1b6d", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Victor Garber", "character": "Ken Taylor", "id": 8536, "credit_id": "52fe47a1c3a368484e0d1b81", "cast_id": 10, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 4}, {"name": "Tate Donovan", "character": "Bob Anders", "id": 15455, "credit_id": "52fe47a1c3a368484e0d1b85", "cast_id": 11, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 5}, {"name": "Clea DuVall", "character": "Cora Lijek", "id": 20387, "credit_id": "52fe47a1c3a368484e0d1b7d", "cast_id": 9, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 6}, {"name": "Scoot McNairy", "character": "Joe Stafford", "id": 59233, "credit_id": "52fe47a1c3a368484e0d1bad", "cast_id": 19, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 7}, {"name": "Rory Cochrane", "character": "Lee Schatz", "id": 51792, "credit_id": "52fe47a1c3a368484e0d1bb1", "cast_id": 20, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 8}, {"name": "Christopher Denham", "character": "Mark Lijek", "id": 61510, "credit_id": "52fe47a1c3a368484e0d1b91", "cast_id": 14, "profile_path": "/oPnHnLW51n9qFtCxh4phejRm6xe.jpg", "order": 9}, {"name": "Kerry Bish\u00e9", "character": "Kathy Stafford", "id": 58356, "credit_id": "52fe47a1c3a368484e0d1bb5", "cast_id": 21, "profile_path": "/vgyxPcX86ASm1fn3S64TEVQ47Uv.jpg", "order": 10}, {"name": "Kyle Chandler", "character": "Hamilton Jordan", "id": 3497, "credit_id": "52fe47a1c3a368484e0d1b79", "cast_id": 8, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 11}, {"name": "Chris Messina", "character": "Malinov", "id": 61659, "credit_id": "52fe47a1c3a368484e0d1bb9", "cast_id": 22, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 12}, {"name": "\u017deljko Ivanek", "character": "Robert Pender", "id": 6752, "credit_id": "52fe47a1c3a368484e0d1bbd", "cast_id": 23, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 13}, {"name": "Titus Welliver", "character": "Bates", "id": 39389, "credit_id": "52fe47a1c3a368484e0d1bc1", "cast_id": 24, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 14}, {"name": "Richard Kind", "character": "Max Klein", "id": 21125, "credit_id": "52fe47a1c3a368484e0d1b89", "cast_id": 12, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 15}, {"name": "Mark Rhino Smith", "character": "Evil Villain", "id": 1106258, "credit_id": "52fe47a1c3a368484e0d1b8d", "cast_id": 13, "profile_path": "/6jhkdSwjFQKfbzQCKX9wLQ40PPQ.jpg", "order": 16}, {"name": "Taylor Schilling", "character": "Christine Mendez", "id": 221809, "credit_id": "52fe47a1c3a368484e0d1b75", "cast_id": 7, "profile_path": "/eTC6YEW9kx508bIEzgxFKDE64X6.jpg", "order": 17}, {"name": "Keith Szarabajka", "character": "Adam Engell", "id": 87957, "credit_id": "52fe47a1c3a368484e0d1bdd", "cast_id": 29, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 18}, {"name": "Bob Gunton", "character": "Cyrus Vance", "id": 4029, "credit_id": "52fe47a1c3a368484e0d1be1", "cast_id": 30, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 19}, {"name": "Page Leong", "character": "Pat Taylor", "id": 156729, "credit_id": "52fe47a1c3a368484e0d1be5", "cast_id": 31, "profile_path": "/2RsStgOBJliUSUrqTaJwio974gV.jpg", "order": 20}, {"name": "Omid Abtahi", "character": "Reza Borhani", "id": 167862, "credit_id": "52fe47a1c3a368484e0d1be9", "cast_id": 32, "profile_path": "/fk1qZBpQls4G6jV7PzYr5TELAhk.jpg", "order": 21}, {"name": "Sheila Vand", "character": "Sahar", "id": 220573, "credit_id": "52fe47a1c3a368484e0d1bed", "cast_id": 33, "profile_path": "/vkQkGIAzTxjR5GFexxmoziJbYMM.jpg", "order": 22}, {"name": "Karina Logue", "character": "Elizabeth Ann Swift", "id": 62567, "credit_id": "52fe47a1c3a368484e0d1bf1", "cast_id": 34, "profile_path": "/wMzRD3X1tMJ8TNl9JgItDyl4nIq.jpg", "order": 23}, {"name": "Ryan Ahern", "character": "Sgt. Sickmann", "id": 970534, "credit_id": "52fe47a1c3a368484e0d1bf5", "cast_id": 35, "profile_path": "/2tBMelAO96HXjgqgEa2KXMFeSCY.jpg", "order": 24}, {"name": "Bill Tangradi", "character": "Alan B. Golacinski", "id": 1212192, "credit_id": "52fe47a1c3a368484e0d1bf9", "cast_id": 36, "profile_path": "/A60IOdfVN8IEOee0KCJask1YVkY.jpg", "order": 25}, {"name": "Jamie McShane", "character": "William J. Daugherty", "id": 79079, "credit_id": "52fe47a1c3a368484e0d1bfd", "cast_id": 37, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 26}, {"name": "Roberto Garcia", "character": "Sgt. William Gallegos", "id": 1272989, "credit_id": "52fe47a1c3a368484e0d1c01", "cast_id": 39, "profile_path": "/sJkrACnWpzSASRhD8fnKg9UYI6h.jpg", "order": 27}, {"name": "Christopher Stanley", "character": "Thomas L. Ahern", "id": 1222215, "credit_id": "52fe47a1c3a368484e0d1c05", "cast_id": 40, "profile_path": "/rSUWxdpMjqTIqqw4Sq8B40sENQI.jpg", "order": 28}, {"name": "Jon Woodward Kirby", "character": "Fred Kupke", "id": 1272990, "credit_id": "52fe47a1c3a368484e0d1c09", "cast_id": 41, "profile_path": "/nrj0EWxYWpTvCqf69FuBlEdKjL3.jpg", "order": 29}, {"name": "Victor McCay", "character": "Malick", "id": 155030, "credit_id": "52fe47a1c3a368484e0d1c0d", "cast_id": 42, "profile_path": "/cq6AxzkHCyNuxWoOKqiMc1HOB2u.jpg", "order": 30}, {"name": "Matt Nolan", "character": "Peter Genco", "id": 159720, "credit_id": "52fe47a1c3a368484e0d1c11", "cast_id": 43, "profile_path": "/9zUwjviDEOv8KCBHWA0x2RzmQTL.jpg", "order": 31}, {"name": "J.R. Cacia", "character": "Brice", "id": 207736, "credit_id": "52fe47a1c3a368484e0d1c15", "cast_id": 44, "profile_path": "/fUW0yaM0PyJyvRJhMuU7gnSsIwc.jpg", "order": 32}, {"name": "Bill Kalmenson", "character": "Hal Saunders", "id": 157119, "credit_id": "52fe47a1c3a368484e0d1c19", "cast_id": 45, "profile_path": "/cAw26JQoADDq4iSzo4NyYbrXtyg.jpg", "order": 33}, {"name": "Rob Brownstein", "character": "Landon Butler", "id": 62146, "credit_id": "52fe47a1c3a368484e0d1c1d", "cast_id": 46, "profile_path": "/a50wlUl3tBUKeSQwKDagwCFCzs1.jpg", "order": 34}, {"name": "David Sullivan", "character": "Jon Titterton", "id": 76625, "credit_id": "52fe47a1c3a368484e0d1c21", "cast_id": 47, "profile_path": "/t62pMFeVdn81HY9ephGux6deaYw.jpg", "order": 35}, {"name": "John Boyd", "character": "Lamont", "id": 58621, "credit_id": "52fe47a1c3a368484e0d1c25", "cast_id": 48, "profile_path": "/28TTucFQTEY2TU6GmKoTYP5oXTP.jpg", "order": 36}, {"name": "Yuriy Sardarov", "character": "Rossi", "id": 150672, "credit_id": "52fe47a1c3a368484e0d1c29", "cast_id": 49, "profile_path": "/kM5kbXtXEPfD76EbulrAGiAuF1u.jpg", "order": 37}, {"name": "Nikka Far", "character": "Tehran Mary", "id": 1272991, "credit_id": "52fe47a1c3a368484e0d1c2d", "cast_id": 50, "profile_path": "/fJk7RHLawTlKfU3EJ8EVkkVf3c0.jpg", "order": 38}, {"name": "Aidan Sussman", "character": "Ian Mendez", "id": 998350, "credit_id": "52fe47a1c3a368484e0d1c31", "cast_id": 51, "profile_path": "/9Ub9oqDWDQi5JImLCBWLopviMpt.jpg", "order": 39}, {"name": "Barry Livingston", "character": "David Marmor", "id": 75344, "credit_id": "52fe47a1c3a368484e0d1c35", "cast_id": 52, "profile_path": "/mttrxc8jZnd2y0qAmdSKJpSUDNe.jpg", "order": 40}, {"name": "Ali Saam", "character": "Ali Khalkhali", "id": 1272992, "credit_id": "52fe47a1c3a368484e0d1c39", "cast_id": 53, "profile_path": "/2j2GfqYvhEYSOSKRfANEVU7cpMP.jpg", "order": 41}, {"name": "Araz Vahid Ebrahim Nia", "character": "Moradi", "id": 1272993, "credit_id": "52fe47a1c3a368484e0d1c3d", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Scott Anthony Leet", "character": "The Minotaur", "id": 108699, "credit_id": "52fe47a1c3a368484e0d1c41", "cast_id": 55, "profile_path": "/exPGryvTCMBPk2WYBXqLWeLTT5J.jpg", "order": 43}, {"name": "Michael Parks", "character": "Jack Kirby", "id": 2536, "credit_id": "52fe47a1c3a368484e0d1c45", "cast_id": 56, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 44}, {"name": "Mehrdad Sarlak", "character": "Immigration Officer", "id": 1288785, "credit_id": "52fe47a1c3a368484e0d1c7f", "cast_id": 66, "profile_path": "/80Ebq49cl1ipz3WM9u9uT968tS5.jpg", "order": 45}, {"name": "Ray Haratian", "character": "Immigration Officer", "id": 965673, "credit_id": "52fe47a1c3a368484e0d1c83", "cast_id": 67, "profile_path": "/adVe7rnpnGj0P8mphL8ziG6Ld6Z.jpg", "order": 46}, {"name": "Matthew Glave", "character": "Col. Charles W. Scott", "id": 1219226, "credit_id": "52fe47a1c3a368484e0d1c87", "cast_id": 68, "profile_path": "/vrJpneVBPIeH0DjnKVpLpgpxQRr.jpg", "order": 47}, {"name": "Nancy Stelle", "character": "Swissair Flight Attendant", "id": 1115997, "credit_id": "53022af192514121a13046a0", "cast_id": 69, "profile_path": "/31yKCmHc7ArQhDDxGMIbQXVkmyH.jpg", "order": 48}], "directors": [{"name": "Ben Affleck", "department": "Directing", "job": "Director", "credit_id": "52fe47a1c3a368484e0d1b5b", "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "id": 880}], "vote_average": 6.8, "runtime": 120}, "68737": {"poster_path": "/A3SBRfCSgKNcW2IkbaaOgugLwRt.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108123265, "overview": "John Gregory, who is a seventh son of a seventh son and also the local spook, has protected he country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer's son named Thomas Ward. Will he survive the training to become the spook that so many others couldn't?", "video": false, "id": 68737, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Seventh Son", "tagline": "When darkness falls, the son will rise. When the son falls, the dark knight will rise.", "vote_count": 144, "homepage": "http://www.seventhsonmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1121096", "adult": false, "backdrop_path": "/iSGPkXh5lnOgK3ihNfxvLM9bmej.jpg", "production_companies": [{"name": "Thunder Road Pictures", "id": 3528}, {"name": "Legendary Pictures", "id": 923}, {"name": "Moving Picture Company (MPC)", "id": 20478}, {"name": "Outlaw Sinema", "id": 13444}, {"name": "Pendle Mountain Productions", "id": 40112}], "release_date": "2015-02-06", "popularity": 22.9493764652645, "original_title": "Seventh Son", "budget": 95000000, "cast": [{"name": "Jeff Bridges", "character": "Master Gregory", "id": 1229, "credit_id": "52fe47a2c3a368484e0d1d41", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Mother Malkin", "id": 1231, "credit_id": "52fe47a2c3a368484e0d1d45", "cast_id": 3, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Ben Barnes", "character": "Tom Ward", "id": 25130, "credit_id": "52fe47a2c3a368484e0d1d49", "cast_id": 4, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "Alice", "id": 227454, "credit_id": "52fe47a2c3a368484e0d1d4d", "cast_id": 5, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Kit Harington", "character": "Billy Bradley", "id": 239019, "credit_id": "53da2ce9c3a3681eee0013f8", "cast_id": 10, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 4}, {"name": "Djimon Hounsou", "character": "Radu", "id": 938, "credit_id": "547dd4aec3a3685af3004c70", "cast_id": 11, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 5}, {"name": "Olivia Williams", "character": "Mam Ward", "id": 11616, "credit_id": "547dd4b69251412d780057a9", "cast_id": 12, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 6}, {"name": "Antje Traue", "character": "Bony Lizzie", "id": 43202, "credit_id": "547dd4d9c3a3685b05005daf", "cast_id": 13, "profile_path": "/xWbtFJyN8ynIpdKNCB0KpsKldM7.jpg", "order": 7}, {"name": "Jason Scott Lee", "character": "Urag", "id": 58319, "credit_id": "547dd4e59251412d7c005cae", "cast_id": 14, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 8}, {"name": "David Cubitt", "character": "Rogue Knight", "id": 155282, "credit_id": "547dd4f192514123ef003de4", "cast_id": 15, "profile_path": "/ibAM06dGc04FL9XD0Y03k05O2sC.jpg", "order": 9}, {"name": "Eric Keenleyside", "character": "Old Guard", "id": 2250, "credit_id": "547dd4fc9251412d780057ad", "cast_id": 16, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 10}, {"name": "Thai-Hoa Le", "character": "Fisherman", "id": 1300745, "credit_id": "547dd50ac3a3685aed006312", "cast_id": 17, "profile_path": "/nQlNNcG18Ddy7ludyi3E8MwbNmF.jpg", "order": 11}, {"name": "Carmel Amit", "character": "Member of Mob", "id": 1392937, "credit_id": "547dd51692514123ef003dee", "cast_id": 18, "profile_path": "/8uTwuzwq8Ny7I0yG5bYqV4MZmCw.jpg", "order": 12}, {"name": "Gerard Plunkett", "character": "Prelate", "id": 27124, "credit_id": "547dd5229251412d780057b2", "cast_id": 19, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 13}, {"name": "Jim Shield", "character": "Leader Soldier", "id": 1328755, "credit_id": "547dd5329251412d780057b5", "cast_id": 20, "profile_path": "/wIumEHhYR8ZLKysrtG4TLVxC4hR.jpg", "order": 14}, {"name": "Timothy Webber", "character": "Malcom Ward", "id": 53720, "credit_id": "547dd541c3a3685b05005dbc", "cast_id": 21, "profile_path": "/aUB7F6LlfbWaExVRVARAfrUrcpS.jpg", "order": 15}, {"name": "Julian Black Antelope", "character": "Tomb Robber", "id": 1061054, "credit_id": "547dd54ec3a3685aed00631f", "cast_id": 22, "profile_path": "/pYtm0h1Y5FNMW2s5CqBlzVawzol.jpg", "order": 16}, {"name": "Luc Roderique", "character": "Strix", "id": 1356538, "credit_id": "547dd5ad9251412d6d005916", "cast_id": 23, "profile_path": "/jxnwn6u8RFNo9U9lcBFm0UORypT.jpg", "order": 17}, {"name": "Sean Carey", "character": "Soldier", "id": 583052, "credit_id": "547dd5c592514123ef003e0a", "cast_id": 24, "profile_path": "/cHPQ2J1ksbo2RJO6eg74EAssR0E.jpg", "order": 18}, {"name": "Fraser Aitcheson", "character": "Grave Robber", "id": 1366510, "credit_id": "547dd5d4c3a3685af90050ae", "cast_id": 25, "profile_path": "/o9kl9aGxbW8D8Kx4YKn1Pebfdlv.jpg", "order": 19}, {"name": "Zahf Paroo", "character": "Virahadra", "id": 58902, "credit_id": "547dd6f49251412d7f005a0d", "cast_id": 26, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 20}, {"name": "Loyd Catlett", "character": "Grave-robber", "id": 2277, "credit_id": "547dd7009251412d700061b9", "cast_id": 27, "profile_path": "/kdoZBvpFfVnsIsEhT76HF5Aj2zS.jpg", "order": 21}, {"name": "Primo Allon", "character": "Simon Ward", "id": 1366661, "credit_id": "547dd70ec3a3685af90050d6", "cast_id": 28, "profile_path": "/tsMc3e9Mqm0BcqWfX5pCMRDHbze.jpg", "order": 22}, {"name": "Lilah Fitzgerald", "character": "Cate Ward", "id": 584543, "credit_id": "547dd7199251412d700061bf", "cast_id": 29, "profile_path": "/tR5ZCcwhSlJLtFcx8ExbNYIR4LW.jpg", "order": 23}, {"name": "Faustino Di Bauda", "character": "Innkeeper", "id": 1368501, "credit_id": "547dd7249251412d6d005940", "cast_id": 30, "profile_path": "/fi2seiryBvvYPvk4etv2TkgrCod.jpg", "order": 24}, {"name": "Taya Clyne", "character": "Little Girl", "id": 1392949, "credit_id": "547dd733c3a3685b05005e0c", "cast_id": 31, "profile_path": "/qOkwhJTWoxZ3rVnm7KfdJebiT4Y.jpg", "order": 25}, {"name": "Billy Wickman", "character": "Young Guard", "id": 1392950, "credit_id": "547dd73f9251411f4e004697", "cast_id": 32, "profile_path": "/iEcjrowtU4xExVvk1cBGBsdOO5E.jpg", "order": 26}, {"name": "Duffy", "character": "Stray Dog", "id": 219303, "credit_id": "547dd7619251412d7c005cff", "cast_id": 34, "profile_path": "/deNVIYnej2osauRN1h0RyXz7WqY.jpg", "order": 28}, {"name": "Marcel Bridges", "character": "Jack Ward", "id": 1392952, "credit_id": "547dd76c9251412d7c005d03", "cast_id": 35, "profile_path": "/qccK707gaeEtp9G8K55Myz2UtVk.jpg", "order": 29}, {"name": "Yaroslav Poverlo", "character": "Head Counselor", "id": 1392953, "credit_id": "547dd7779251412d700061d1", "cast_id": 36, "profile_path": "/sG6h94BHWoJOGK5PqF1jSt0aZJl.jpg", "order": 30}, {"name": "Isabelle Landry", "character": "Priest's Wife", "id": 1392954, "credit_id": "547dd7889251412d7c005d08", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Jason Asuncion", "character": "Mongolian", "id": 1259945, "credit_id": "547dd795c3a3685aed006374", "cast_id": 38, "profile_path": "/nNK2UihM5M23nUpekR7IjNsMxjK.jpg", "order": 32}, {"name": "Joanne Bentley", "character": "Noblewoman", "id": 1392956, "credit_id": "547dd7a3c3a3685af0006190", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Anthony Welch", "character": "Soldier", "id": 1392957, "credit_id": "547dd7ae9251412d6d005956", "cast_id": 40, "profile_path": "/xOqwU1rkdNiNYk5l6f0fz3RwIuI.jpg", "order": 34}, {"name": "Brenda McDonald", "character": "Timeless Hag", "id": 61168, "credit_id": "553b2c219251413f5a005344", "cast_id": 55, "profile_path": "/wlRF7hHwPe3RV3TxdeLcDR1t0pS.jpg", "order": 35}], "directors": [{"name": "Sergey Bodrov", "department": "Directing", "job": "Director", "credit_id": "52fe47a2c3a368484e0d1d3d", "profile_path": "/2SWZcHMt9c02OrTqV1lXMAhx0tg.jpg", "id": 130938}], "vote_average": 5.6, "runtime": 102}, "11395": {"poster_path": "/nlO5GZTBlpv88TRf1IhtvRjgTsP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144833357, "overview": "Scott Calvin is an ordinary man, who accidentally causes Santa Claus to fall from his roof on Christmas Eve and is knocked unconscious. When he and his young son finish Santa's trip and deliveries, they go to the North Pole, where Scott learns he must become the new Santa and convince those he loves that he is indeed, Father Christmas.", "video": false, "id": 11395, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Santa Clause", "tagline": "What if your dad was Santa Claus?", "vote_count": 110, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1h8iA6i2DpPhsHC65nUB2voVnm5.jpg", "id": 53159, "name": "The Santa Clause Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0111070", "adult": false, "backdrop_path": "/ajcpbJWZTsg4fEMMuZLxoZSduJZ.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Hollywood Pictures", "id": 915}], "release_date": "1994-11-10", "popularity": 0.448241038366939, "original_title": "The Santa Clause", "budget": 22000000, "cast": [{"name": "Tim Allen", "character": "Santa Claus / Scott Calvin", "id": 12898, "credit_id": "52fe44379251416c7502ce9b", "cast_id": 10, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Wendy Crewson", "character": "Laura Calvin Miller", "id": 19957, "credit_id": "52fe44379251416c7502ce9f", "cast_id": 11, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 1}, {"name": "Judge Reinhold", "character": "Dr. Neil Miller", "id": 777, "credit_id": "52fe44379251416c7502cea3", "cast_id": 12, "profile_path": "/oN7TsF0yFJhsoKe9KzxXEOhheci.jpg", "order": 2}, {"name": "Eric Lloyd", "character": "Charlie Calvin", "id": 27564, "credit_id": "52fe44379251416c7502cea7", "cast_id": 13, "profile_path": "/qemoEBG9JeAerb3RsXUOa2peZxQ.jpg", "order": 3}, {"name": "David Krumholtz", "character": "Bernard the Elf", "id": 38582, "credit_id": "52fe44379251416c7502ceab", "cast_id": 14, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 4}, {"name": "Paige Tamada", "character": "Judy the Elf", "id": 141801, "credit_id": "52fe44379251416c7502ceaf", "cast_id": 15, "profile_path": null, "order": 5}], "directors": [{"name": "John Pasquin", "department": "Directing", "job": "Director", "credit_id": "52fe44379251416c7502ce6d", "profile_path": null, "id": 58072}], "vote_average": 6.4, "runtime": 97}, "10708": {"poster_path": "/fApwJRtMEML829MMlAAA5w1dGhu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164433867, "overview": "Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center.", "video": false, "id": 10708, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Daddy Day Care", "tagline": "Who's your daddy?", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/x6sXJspIoqj3CWqSfv8IYxukKP9.jpg", "id": 228887, "name": "Daddy Day Camp Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317303", "adult": false, "backdrop_path": "/ovAxqg6WTlfi6QbPAJOiyHwNABM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2003-05-03", "popularity": 0.644998617942266, "original_title": "Daddy Day Care", "budget": 60000000, "cast": [{"name": "Eddie Murphy", "character": "Charlie Hinton", "id": 776, "credit_id": "52fe43a69251416c75018b77", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Jeff Garlin", "character": "Phil", "id": 60074, "credit_id": "52fe43a69251416c75018b7b", "cast_id": 2, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 1}, {"name": "Steve Zahn", "character": "Marvin", "id": 18324, "credit_id": "52fe43a69251416c75018b7f", "cast_id": 3, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 2}, {"name": "Regina King", "character": "Kim Hinton", "id": 9788, "credit_id": "52fe43a69251416c75018b83", "cast_id": 4, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 3}, {"name": "Kevin Nealon", "character": "Bruce", "id": 58478, "credit_id": "52fe43a69251416c75018b87", "cast_id": 5, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 4}, {"name": "Siobhan Fallon", "character": "Peggy", "id": 6751, "credit_id": "52fe43a69251416c75018bcd", "cast_id": 17, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 5}, {"name": "Lacey Chabert", "character": "Jenny", "id": 22082, "credit_id": "52fe43a69251416c75018bd1", "cast_id": 18, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 6}, {"name": "Jonathan Katz", "character": "Dan Kubitz", "id": 96072, "credit_id": "52fe43a69251416c75018bd5", "cast_id": 19, "profile_path": "/yidiAN21zVUhWuUGGg1waFLzi2q.jpg", "order": 7}, {"name": "Lisa Edelstein", "character": "Crispin's Mom", "id": 41420, "credit_id": "52fe43a69251416c75018bd9", "cast_id": 20, "profile_path": "/pKwsvcm1Etgue4zZyBiNEh1Ngc3.jpg", "order": 8}, {"name": "Laura Kightlinger", "character": "Sheila", "id": 61409, "credit_id": "52fe43a69251416c75018bdd", "cast_id": 21, "profile_path": "/vfBERhrH1yfyTS0tD9JJ3DkJ6JM.jpg", "order": 9}, {"name": "Leila Arcieri", "character": "Kelli", "id": 65240, "credit_id": "52fe43a69251416c75018be1", "cast_id": 22, "profile_path": "/mTg8yjkDHO6qoNxISuORh5gSfpF.jpg", "order": 10}, {"name": "Anjelica Huston", "character": "Mrs. Gwyneth Harridan", "id": 5657, "credit_id": "52fe43a69251416c75018be5", "cast_id": 23, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 11}, {"name": "Khamani Griffin", "character": "Ben Hinton", "id": 87056, "credit_id": "52fe43a69251416c75018be9", "cast_id": 24, "profile_path": "/6gpZY25Hc1B4MgBTrfgP1KxnAP5.jpg", "order": 12}, {"name": "Max Burkholder", "character": "Max", "id": 81083, "credit_id": "52fe43a69251416c75018bed", "cast_id": 25, "profile_path": "/8tM61XfapNvBnXum2WcBKlmDDeE.jpg", "order": 13}, {"name": "Arthur Young", "character": "Nicky", "id": 62563, "credit_id": "52fe43a69251416c75018bf1", "cast_id": 26, "profile_path": "/wskriBM2JwztaR7mnFbWEWB86ly.jpg", "order": 14}, {"name": "Cheap Trick", "character": "Cheap Trick", "id": 1038347, "credit_id": "52fe43a69251416c75018bf5", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Damani Roberts", "character": "German Speaking Boy", "id": 74616, "credit_id": "52fe43a69251416c75018bf9", "cast_id": 28, "profile_path": "/rMdDbBNIvF6aDHtykKyHGN8M5ht.jpg", "order": 16}], "directors": [{"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe43a69251416c75018b8d", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}], "vote_average": 5.7, "runtime": 92}, "11397": {"poster_path": "/lGOp9D7FMrMwPqGKGMXdHxCaQhh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66468332, "overview": "On a bet, a gridiron hero at John Hughes High School sets out to turn a bespectacled plain Jane into a beautiful and popular prom queen in this outrageous send-up of the teen movie genre.", "video": false, "id": 11397, "genres": [{"id": 35, "name": "Comedy"}], "title": "Not Another Teen Movie", "tagline": "They served you Breakfast. They gave you Pie. Now we\u2019re gonna stuff your face.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0277371", "adult": false, "backdrop_path": "/3hjBNPpCIBmU6ILnofzK6oOqMUT.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Original Film", "id": 333}, {"name": "Neal H. Moritz Productions", "id": 2882}], "release_date": "2001-12-07", "popularity": 1.02150481139291, "original_title": "Not Another Teen Movie", "budget": 16000000, "cast": [{"name": "Chyler Leigh", "character": "Janey Briggs", "id": 69210, "credit_id": "52fe44389251416c7502cf79", "cast_id": 11, "profile_path": "/nVE6gMC5x6NhM9ALt0N3FPwt5c9.jpg", "order": 0}, {"name": "Chris Evans", "character": "Jake Wyler", "id": 16828, "credit_id": "52fe44389251416c7502cf7d", "cast_id": 12, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 1}, {"name": "Jaime Pressly", "character": "Priscilla", "id": 56824, "credit_id": "52fe44389251416c7502cf81", "cast_id": 13, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Austin", "id": 29020, "credit_id": "52fe44389251416c7502cf85", "cast_id": 14, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Mia Kirshner", "character": "Catherine Wyler", "id": 18658, "credit_id": "52fe44389251416c7502cf89", "cast_id": 15, "profile_path": "/pgQw5mlHRwWKBwLMdMj2jqiwK5D.jpg", "order": 4}, {"name": "Lacey Chabert", "character": "Amanda Becker", "id": 22082, "credit_id": "52fe44389251416c7502cf8d", "cast_id": 16, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 5}, {"name": "Cerina Vincent", "character": "Areola", "id": 52365, "credit_id": "52fe44389251416c7502cf91", "cast_id": 17, "profile_path": "/AnGfLx2gE8ZnRJrQwlXAVcednMZ.jpg", "order": 6}, {"name": "Molly Ringwald", "character": "Flight Attendant", "id": 21625, "credit_id": "52fe44389251416c7502cf95", "cast_id": 18, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 7}, {"name": "Samaire Armstrong", "character": "Kara Fratelli", "id": 19664, "credit_id": "52fe44389251416c7502cf99", "cast_id": 19, "profile_path": "/n1EvtBt47rE7VgiBNipnV589YYw.jpg", "order": 8}, {"name": "Michael Ensign", "character": "Father O'Flannagan", "id": 1080265, "credit_id": "52fe44389251416c7502cf9d", "cast_id": 20, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 9}, {"name": "Kyle Cease", "character": "Slow Clapper", "id": 40981, "credit_id": "52fe44389251416c7502cfa1", "cast_id": 21, "profile_path": "/fcVmEbnYzgkFLqrUsBIitXzWJlz.jpg", "order": 10}, {"name": "Desi Lydic", "character": "Cutie", "id": 90719, "credit_id": "530c5ad1925141141e000a15", "cast_id": 22, "profile_path": "/hefkrpjs4TtM7ogAFJnRiHkZiLw.jpg", "order": 11}, {"name": "Jackie Harris", "character": "Preston's Mother", "id": 1226913, "credit_id": "532cd319c3a3685fcb00067b", "cast_id": 23, "profile_path": "/hWhnGL9punPhCIOJ22rH0C6o6lT.jpg", "order": 12}, {"name": "Mr. T", "character": "", "id": 16619, "credit_id": "5534ea4bc3a36848ca006202", "cast_id": 24, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 13}], "directors": [{"name": "Joel Gallen", "department": "Directing", "job": "Director", "credit_id": "52fe44389251416c7502cf3f", "profile_path": null, "id": 57604}], "vote_average": 5.6, "runtime": 89}, "11400": {"poster_path": "/3PcQkXbfyJuJHQxXABLBQbt0R2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30536013, "overview": "A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.", "video": false, "id": 11400, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "The New World", "tagline": "Once discovered, it was changed forever.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402399", "adult": false, "backdrop_path": "/eJw95HMmQdOb3uGUpOeJwLLui5J.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Sunflower Productions", "id": 22253}, {"name": "Sarah Green Film", "id": 22254}, {"name": "First Foot Films", "id": 22110}, {"name": "The Virginia Company LLC", "id": 22255}], "release_date": "2005-12-25", "popularity": 0.797158554640492, "original_title": "The New World", "budget": 30000000, "cast": [{"name": "Colin Farrell", "character": "Captain Smith", "id": 72466, "credit_id": "52fe44389251416c7502d097", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Q'orianka Kilcher", "character": "Pocahontas", "id": 69225, "credit_id": "52fe44389251416c7502d09b", "cast_id": 2, "profile_path": "/6mhkgMuwtDfQCNFYttURrjeZELk.jpg", "order": 1}, {"name": "Christopher Plummer", "character": "Captain Newport", "id": 290, "credit_id": "52fe44389251416c7502d09f", "cast_id": 3, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 2}, {"name": "Christian Bale", "character": "John Rolfe", "id": 3894, "credit_id": "52fe44389251416c7502d0a3", "cast_id": 4, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 3}, {"name": "August Schellenberg", "character": "Powhatan", "id": 18260, "credit_id": "52fe44389251416c7502d0a7", "cast_id": 5, "profile_path": "/iZ7dQ3JMdrWoUyh4vB8vOxhqoSI.jpg", "order": 4}, {"name": "Wes Studi", "character": "Opechancanough", "id": 15853, "credit_id": "52fe44389251416c7502d0ab", "cast_id": 6, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 5}, {"name": "David Thewlis", "character": "Wingfield", "id": 11207, "credit_id": "53356e249251410985001b72", "cast_id": 25, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 6}, {"name": "Yorick van Wageningen", "character": "Captain Argall", "id": 31387, "credit_id": "53356e6b925141445d00433b", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Ben Mendelsohn", "character": "Ben", "id": 77335, "credit_id": "52fe44389251416c7502d103", "cast_id": 21, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 8}, {"name": "Noah Taylor", "character": "Selway", "id": 1284, "credit_id": "53356e8492514144600042bd", "cast_id": 27, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 9}, {"name": "Jason Aaron Baca", "character": "Parker", "id": 1363928, "credit_id": "54159f42c3a3684cf7002055", "cast_id": 31, "profile_path": "/uHoqZxmyVYocSDCk1tX5EkSr6Da.jpg", "order": 10}, {"name": "Eddie Marsan", "character": "Eddie", "id": 1665, "credit_id": "541907afc3a3686da1000119", "cast_id": 32, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 11}], "directors": [{"name": "Terrence Malick", "department": "Directing", "job": "Director", "credit_id": "52fe44389251416c7502d0b1", "profile_path": "/4w0C0RaJ3qS6YZ7Ons6VZcEdfl7.jpg", "id": 30715}], "vote_average": 5.8, "runtime": 135}, "1900": {"poster_path": "/9qPLd5hdXIlrAyknVWK38eZyUMo.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 207515725, "overview": "An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.", "video": false, "id": 1900, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Traffic", "tagline": "No one gets away clean", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181865", "adult": false, "backdrop_path": "/1edydp18PYIaihYLfG52e3v9jwQ.jpg", "production_companies": [{"name": "Bedford Falls Productions", "id": 348}, {"name": "USA Films", "id": 987}, {"name": "Initial Entertainment Group (IEG)", "id": 7380}], "release_date": "2000-12-27", "popularity": 0.895397746299143, "original_title": "Traffic", "budget": 48000000, "cast": [{"name": "Michael Douglas", "character": "Robert Wakefield", "id": 3392, "credit_id": "52fe431fc3a36847f803c159", "cast_id": 15, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Benicio del Toro", "character": "Javier Rodriguez", "id": 1121, "credit_id": "52fe431fc3a36847f803c15d", "cast_id": 16, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 1}, {"name": "Jacob Vargas", "character": "Manolo Sanchez", "id": 16429, "credit_id": "52fe431fc3a36847f803c161", "cast_id": 17, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 2}, {"name": "Tom\u00e1s Mili\u00e1n", "character": "Gen. Arturo Salazar", "id": 21708, "credit_id": "52fe431fc3a36847f803c165", "cast_id": 18, "profile_path": "/wylTdKie6zK1dgT5e3sZk4a1tD1.jpg", "order": 3}, {"name": "Russell G. Jones", "character": "Mark", "id": 21709, "credit_id": "52fe431fc3a36847f803c169", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Michael O'Neill", "character": "Lawery Rodman", "id": 21710, "credit_id": "52fe431fc3a36847f803c16d", "cast_id": 20, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 5}, {"name": "Catherine Zeta-Jones", "character": "Helena Ayala", "id": 1922, "credit_id": "52fe431fc3a36847f803c171", "cast_id": 21, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 6}, {"name": "Dennis Quaid", "character": "Arnie Metzger", "id": 6065, "credit_id": "52fe431fc3a36847f803c175", "cast_id": 22, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 7}, {"name": "Erika Christensen", "character": "Caroline Wakefield", "id": 21711, "credit_id": "52fe431fc3a36847f803c179", "cast_id": 23, "profile_path": "/v68rJrHWLcv49xDFScRK9TYEiFY.jpg", "order": 8}, {"name": "Don Cheadle", "character": "Montel Gordon", "id": 1896, "credit_id": "52fe431fc3a36847f803c17d", "cast_id": 24, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 9}, {"name": "Stacey Travis", "character": "Helena's Friend", "id": 31714, "credit_id": "52fe431fc3a36847f803c187", "cast_id": 26, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 10}, {"name": "Benjamin Bratt", "character": "Juan Obreg\u00f3n", "id": 4589, "credit_id": "52fe431fc3a36847f803c18b", "cast_id": 27, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 11}, {"name": "Miguel Ferrer", "character": "Eduardo Ruiz", "id": 15860, "credit_id": "52fe431fc3a36847f803c18f", "cast_id": 28, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 12}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe431fc3a36847f803c107", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.5, "runtime": 148}, "11411": {"poster_path": "/t5nNiUawamwhdWM4hHOkbj1k2km.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19300000, "overview": "With global superpowers engaged in an increasingly hostile arms race, Superman leads a crusade to rid the world of nuclear weapons. But Lex Luthor, recently sprung from jail, is declaring war on the Man of Steel and his quest to save the planet. Using a strand of Superman's hair, Luthor synthesizes a powerful ally known as Nuclear Man and ignites an epic battle spanning Earth and space.", "video": false, "id": 11411, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Superman IV: The Quest for Peace", "tagline": "Nuclear Power. In the best hands, it is dangerous. In the hands of Lex Luthor, it is pure evil. This is Superman's greatest battle. And it is for all of us.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0094074", "adult": false, "backdrop_path": "/vYrwtGFzNdRSfr2JveAfadjegym.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Cannon Films", "id": 4110}, {"name": "Golan-Globus Productions", "id": 13549}, {"name": "London-Cannon Films", "id": 6231}], "release_date": "1987-07-24", "popularity": 1.12118724303845, "original_title": "Superman IV: The Quest for Peace", "budget": 17000000, "cast": [{"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe443a9251416c7502d521", "cast_id": 19, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 0}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe443a9251416c7502d525", "cast_id": 20, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 1}, {"name": "Gene Hackman", "character": "Lex Luthor", "id": 193, "credit_id": "52fe443a9251416c7502d529", "cast_id": 21, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 2}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe443a9251416c7502d52d", "cast_id": 22, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 3}, {"name": "Marc McClure", "character": "Jimmy Olsen", "id": 1067, "credit_id": "52fe443a9251416c7502d531", "cast_id": 23, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 4}, {"name": "Jon Cryer", "character": "Lenny", "id": 69718, "credit_id": "52fe443a9251416c7502d541", "cast_id": 28, "profile_path": "/kXoEUv6pfXZGFuxVTTiuSVnac7B.jpg", "order": 5}, {"name": "Sam Wanamaker", "character": "David Warfield", "id": 21520, "credit_id": "52fe443a9251416c7502d535", "cast_id": 25, "profile_path": "/aE8H0qNiON4ZN1r7KDBgPuDSA73.jpg", "order": 6}, {"name": "Mariel Hemingway", "character": "Lacy Warfield", "id": 10447, "credit_id": "52fe443a9251416c7502d539", "cast_id": 26, "profile_path": "/lNlfYgxGwVSLC4tPJXyos02IRQC.jpg", "order": 7}, {"name": "Mark Pillow", "character": "Nuclear Man", "id": 1062160, "credit_id": "52fe443a9251416c7502d53d", "cast_id": 27, "profile_path": "/1wLBofOfETb7XTT16nbwZCHfQb7.jpg", "order": 8}, {"name": "Damian McLawhorn", "character": "Jeremy", "id": 1458949, "credit_id": "553b94dbc3a368784500a7de", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "William Hootkins", "character": "Harry Howler", "id": 663, "credit_id": "553b94e7c3a36820ec001bc6", "cast_id": 31, "profile_path": "/lGPSg64fsqbWS5PUFKsUKLNOqsx.jpg", "order": 10}, {"name": "Jim Broadbent", "character": "Jean Pierre Dubois", "id": 388, "credit_id": "553b94f992514112560099fe", "cast_id": 32, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 11}, {"name": "Stanley Lebor", "character": "General Romoff", "id": 27823, "credit_id": "553b9515c3a3683e55003827", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Don Fellows", "character": "Levon Hornsby", "id": 662, "credit_id": "553b9527c3a3683c4800219a", "cast_id": 34, "profile_path": "/sQgCr3xz2LVomGMKCvb7rLD9dMX.jpg", "order": 13}, {"name": "Robert Beatty", "character": "U.S. President", "id": 251, "credit_id": "553b9537c3a3682034001614", "cast_id": 35, "profile_path": "/nQrvFDN5pIo4y5qHRgsCJ3zpoQM.jpg", "order": 14}, {"name": "Bradley Lavelle", "character": "Tall Marshall", "id": 25530, "credit_id": "553b95489251416874003557", "cast_id": 36, "profile_path": "/o6TyiPASzAAVLmJB9CgT2DceZ0v.jpg", "order": 15}, {"name": "Mac McDonald", "character": "Marshall #2", "id": 33403, "credit_id": "550c90ebc3a368487200451f", "cast_id": 29, "profile_path": "/cRKziKEi6eucP7EjV4t24Gyf7Ck.jpg", "order": 16}], "directors": [{"name": "Sidney J. Furie", "department": "Directing", "job": "Director", "credit_id": "52fe443a9251416c7502d4f3", "profile_path": "/mGzfybmbXz06h5aUxW3frPtvaLH.jpg", "id": 64508}], "vote_average": 4.3, "runtime": 90}, "11412": {"poster_path": "/ibiC3QkZuzBY9EduUY4nnprOAk5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Samantha Caine, suburban homemaker, is the ideal mom to her 8 year old daughter Caitlin. She lives in Honesdale, PA, has a job teaching school and makes the best Rice Krispie treats in town. But when she receives a bump on her head, she begins to remember small parts of her previous life as a lethal, top-secret agent", "video": false, "id": 11412, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Long Kiss Goodnight", "tagline": "What's forgotten is not always gone.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116908", "adult": false, "backdrop_path": "/clje68pDYWklP50zKg7mgxa73nZ.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1996-10-11", "popularity": 0.638700042083294, "original_title": "The Long Kiss Goodnight", "budget": 65000000, "cast": [{"name": "Geena Davis", "character": "Samantha Caine / Charly Baltimore", "id": 16935, "credit_id": "52fe443b9251416c7502d5ad", "cast_id": 10, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 0}, {"name": "Samuel L. Jackson", "character": "Mitch Henessey", "id": 2231, "credit_id": "52fe443b9251416c7502d5b1", "cast_id": 12, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 1}, {"name": "Yvonne Zima", "character": "Caitlin Caine", "id": 37252, "credit_id": "52fe443b9251416c7502d5b5", "cast_id": 13, "profile_path": "/1F810ZLGGFw5NJxaCb3dmiC1IyK.jpg", "order": 2}, {"name": "Craig Bierko", "character": "Timothy", "id": 14886, "credit_id": "52fe443b9251416c7502d5b9", "cast_id": 14, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 3}, {"name": "Tom Amandes", "character": "Hal", "id": 126471, "credit_id": "52fe443b9251416c7502d5bd", "cast_id": 15, "profile_path": "/xqYpos6TEoWYSqTktn7WsoHrrOa.jpg", "order": 4}, {"name": "Brian Cox", "character": "Dr. Nathan Waldman", "id": 1248, "credit_id": "52fe443b9251416c7502d5c1", "cast_id": 16, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 5}, {"name": "Patrick Malahide", "character": "Leland Perkins", "id": 8979, "credit_id": "52fe443b9251416c7502d5c5", "cast_id": 17, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 6}, {"name": "David Morse", "character": "Luke / Daedalus", "id": 52, "credit_id": "52fe443b9251416c7502d5c9", "cast_id": 18, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 7}, {"name": "Joseph McKenna", "character": "One-Eyed Jack", "id": 141458, "credit_id": "52fe443b9251416c7502d5cd", "cast_id": 19, "profile_path": "/4jDyI8L28ldmzc6RXZuucB8b95Y.jpg", "order": 8}, {"name": "Melina Kanakaredes", "character": "Trin", "id": 25972, "credit_id": "52fe443b9251416c7502d5d1", "cast_id": 20, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 9}, {"name": "Dan Warry-Smith", "character": "Raymond", "id": 141459, "credit_id": "52fe443b9251416c7502d5d5", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Kristen Bone", "character": "Girl #1", "id": 141460, "credit_id": "52fe443b9251416c7502d5d9", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Jennifer Pisana", "character": "Girl #2", "id": 141461, "credit_id": "52fe443b9251416c7502d5dd", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Rex Linn", "character": "Man in Bed", "id": 16937, "credit_id": "52fe443b9251416c7502d5e1", "cast_id": 24, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 13}, {"name": "Alan North", "character": "Earl", "id": 53584, "credit_id": "52fe443b9251416c7502d5e5", "cast_id": 25, "profile_path": "/q79hT4OeYOYzH2WIfqS6VsCmKzg.jpg", "order": 14}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe443a9251416c7502d579", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 6.3, "runtime": 120}, "182127": {"poster_path": "/hMyFo7nFcAQHCJf5s52poqeAMRe.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 37884, "overview": "In postwar Hong Kong, legendary Wing Chun grandmaster Ip Man is reluctantly called into action once more, when what begin as simple challenges from rival kung fu styles soon draw him into the dark and dangerous underworld of the Triads. Now, to defend life and honor, he has no choice but to fight one last time...", "video": false, "id": 182127, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Ip Man: The Final Fight", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt2495118", "adult": false, "backdrop_path": "/h7NSEaQbVC5dI8pQBuPtVP78deQ.jpg", "production_companies": [{"name": "Emperor Motion Pictures", "id": 2726}], "release_date": "2013-03-22", "popularity": 0.288618906084499, "original_title": "Yip Man: The Final Fight", "budget": 0, "cast": [{"name": "Anthony Wong", "character": "Ip Man", "id": 66717, "credit_id": "52fe4c7b9251416c7511bc45", "cast_id": 1, "profile_path": "/pCwuQUam6Xy8AhFddQFKYa74xGQ.jpg", "order": 0}, {"name": "Anita Yuen", "character": "Cheung Wing-Sing", "id": 64895, "credit_id": "52fe4c7b9251416c7511bc61", "cast_id": 9, "profile_path": "/8kp8FxH33GWtF4WxdhHhAL58SIA.jpg", "order": 1}, {"name": "Gillian Chung", "character": "Chan Sei-Mui", "id": 64433, "credit_id": "52fe4c7b9251416c7511bc49", "cast_id": 2, "profile_path": "/fPAbe8YKKZHPU88ltALNSqIHmgp.jpg", "order": 2}, {"name": "Jordan Chan Siu-Chun", "character": "Tang Sing", "id": 132739, "credit_id": "52fe4c7b9251416c7511bc71", "cast_id": 12, "profile_path": "/zmqfnUGOlnHywYaqoORcdd4wJb3.jpg", "order": 3}, {"name": "Eric Tsang", "character": "Ng Chung", "id": 26724, "credit_id": "52fe4c7b9251416c7511bc4d", "cast_id": 4, "profile_path": "/xJJZEKanRVgB7u5G3Fg7Xj9Fuoz.jpg", "order": 4}, {"name": "Jiang Lu-Xia", "character": "Lee King", "id": 112985, "credit_id": "52fe4c7b9251416c7511bc59", "cast_id": 7, "profile_path": "/njD8jYUKzkDvnmp9RO3opOCZInH.jpg", "order": 5}, {"name": "Timmy Hung", "character": "Leung Sheung", "id": 986480, "credit_id": "52fe4c7b9251416c7511bc55", "cast_id": 6, "profile_path": "/5h8d7TwgcaWnI1Qj7QeXLQjTRsQ.jpg", "order": 6}, {"name": "Zhou Chu-Chu", "character": "Jenny", "id": 142643, "credit_id": "52fe4c7b9251416c7511bc51", "cast_id": 5, "profile_path": "/uoh50MuDBx5BPfigzEyVNWVEWoK.jpg", "order": 7}, {"name": "Xiong Xin-Xin", "character": "Local Dragon", "id": 131732, "credit_id": "52fe4c7b9251416c7511bc5d", "cast_id": 8, "profile_path": "/2JK3glxoTsplb7NmB5QwpgE5ibn.jpg", "order": 8}, {"name": "Marvel Chow", "character": "Wang Dong", "id": 1439516, "credit_id": "55037ebc9251412b8d000072", "cast_id": 22, "profile_path": "/ilvoiSvNujXBlSzgYoUPODtuPXQ.jpg", "order": 9}, {"name": "Yip Chun", "character": "Stall owner with phone", "id": 1439708, "credit_id": "5503fc569251412c05000981", "cast_id": 23, "profile_path": "/t1ItZP4QEJB0Xxs0Orax4S9eVp5.jpg", "order": 10}, {"name": "Liu Kai-chi", "character": "Lee Yiu-wah", "id": 116423, "credit_id": "550534749251412c510024d2", "cast_id": 24, "profile_path": "/iukn7krLa63xMPg4iCwUreeanE.jpg", "order": 11}, {"name": "Wong Cho-lam", "character": "Blind Chan", "id": 126807, "credit_id": "55053d59c3a368252900241a", "cast_id": 25, "profile_path": "/sehshjLdbMsU8WrsZt64pSCe5L6.jpg", "order": 12}, {"name": "Jonathan Wong", "character": "Ni Tang", "id": 1440176, "credit_id": "55053fb492514174b60022e1", "cast_id": 26, "profile_path": "/v6Kzqd3mwpxb11um312y2TN58rs.jpg", "order": 13}, {"name": "Leo Au-Yeung", "character": "Fat Choi", "id": 1440183, "credit_id": "550542aec3a36825290024d1", "cast_id": 27, "profile_path": "/2S6Rq3t50bzoaGiSmBzR3ghH9Xe.jpg", "order": 14}, {"name": "Aki Chan", "character": "Worker", "id": 1440200, "credit_id": "550549399251411db40008ea", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Rose Chan Ka-Wun", "character": "", "id": 1174766, "credit_id": "55054d149251416cb7000113", "cast_id": 29, "profile_path": "/zgJDaOrlojOD9WgcdfCuCfihq2m.jpg", "order": 16}, {"name": "Cho Kwai Chee", "character": "Queen Mary Hospital Doctor", "id": 1440222, "credit_id": "55054ebac3a36862e10026dd", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Kevin Cheng Ga-Wing", "character": "young Ip Man", "id": 1140044, "credit_id": "55056e4992514174b0002885", "cast_id": 31, "profile_path": "/iK1HSYqVFObSjHP6Lo9QuZ3RGGz.jpg", "order": 18}, {"name": "Queenie Chu", "character": "So Fei", "id": 127433, "credit_id": "550571d59251416cb700035e", "cast_id": 32, "profile_path": "/b5MMR9X6dqnTkaSsAJ57cMNSVnR.jpg", "order": 19}, {"name": "Hark-On Fung", "character": "Chess Onlooker", "id": 239015, "credit_id": "5505767a92514153ba000f23", "cast_id": 33, "profile_path": "/h3lxACwwox7qoPEtKHxBNPiNYvq.jpg", "order": 20}, {"name": "Ash Gordey", "character": "Superintendent of Police", "id": 1440316, "credit_id": "55057763c3a36862dd002993", "cast_id": 34, "profile_path": "/lQAKvSP7X52fcCK5UKEgTPSw4Dk.jpg", "order": 21}, {"name": "Junlica", "character": "Worker", "id": 1440319, "credit_id": "55057920c3a36862e9002c8a", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Lam Chi Kit", "character": "Dentist", "id": 1440321, "credit_id": "550579ca92514174b600269f", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Yiu Kin Kong", "character": "Disciple of Pak Hok Pai", "id": 1440327, "credit_id": "55057b0cc3a36862e9002ccf", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "May Law Koon-Lan", "character": "Lee Yiu-wah's wife", "id": 1334856, "credit_id": "55057f6ac3a36862dd002a00", "cast_id": 38, "profile_path": "/tAPvF8WuowPCwfcmCNwGjuEyxfT.jpg", "order": 25}, {"name": "Ken Lo", "character": "Wei Batian", "id": 70690, "credit_id": "5505820292514179fb00039c", "cast_id": 39, "profile_path": "/3cxY30w6S6hraBUpCtY7S8PQhDq.jpg", "order": 26}, {"name": "Joe Luk", "character": "Luk Fu", "id": 1440436, "credit_id": "55059bbbc3a3682529002ba6", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Au Tsui Yea Maggie", "character": "Queen Mary Hospital Nurse", "id": 1440445, "credit_id": "55059c9e9251416cb70006b7", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Mang Hoi", "character": "Chess Onlooker", "id": 83556, "credit_id": "5505a026c3a36805810014a9", "cast_id": 42, "profile_path": "/c4QVmvGxkxrAkpCiTIEASBqqUky.jpg", "order": 29}, {"name": "Mulhall", "character": "Disciple", "id": 1440450, "credit_id": "5505a059c3a368262e002b2e", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Donny Ng", "character": "Ng Chan", "id": 1440451, "credit_id": "5505a116c3a3682529002c01", "cast_id": 44, "profile_path": "/xDuflnZJ595tBMB0r6IZclCPml7.jpg", "order": 31}, {"name": "Wang Qinxi", "character": "Daughter of Lee Yiu-wah", "id": 1440453, "credit_id": "5505a1959251416cb7000739", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Sebastian", "character": "Disciple", "id": 1440455, "credit_id": "5505a3cfc3a36862e1002cb6", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Kasey Tang", "character": "Worker", "id": 1440457, "credit_id": "5505a43192514153ba0012dc", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Chalie Wong", "character": "Worker", "id": 1440458, "credit_id": "5505a5579251416cb700078f", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Donny Wu", "character": "Wu Zan", "id": 1440459, "credit_id": "5505a5fcc3a36862dd002cc1", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Jia Hui Wu", "character": "Loan-shark", "id": 1440461, "credit_id": "5505a856c3a36862dd002cf5", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Xiao Lung Ding", "character": "Monkey", "id": 63581, "credit_id": "5505adc792514153ba00137f", "cast_id": 51, "profile_path": "/dFozMpN60Wr1j1HqwGvVwqj8lNB.jpg", "order": 38}, {"name": "Liang Xinwen", "character": "Daughter of Lee Yiu-wah", "id": 1440482, "credit_id": "5505af319251412c05002cea", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Xu Huang-Li", "character": "Yiu-Wah's second daughter", "id": 1440495, "credit_id": "5505b0ef9251412c05002d10", "cast_id": 53, "profile_path": "/vguyQoWvjWG19XN81R0DP7ftBdK.jpg", "order": 40}, {"name": "Lu Yang-Yang", "character": "Lee Yiu-Wah's daughter", "id": 1440505, "credit_id": "5505bcd792514174b6002b2b", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Chen Yan-Xi", "character": "Lee Yiu-Wah's son", "id": 1440506, "credit_id": "5505be34c3a3682529002db6", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Junjie Zhang", "character": "Disciple of Ip Man", "id": 1440511, "credit_id": "5505c15592514153ba0014e4", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Songwen Zhang", "character": "Yip Chun", "id": 1086250, "credit_id": "5505c6f392514174b6002bf4", "cast_id": 57, "profile_path": "/9opc3TNn0hjp7t7czKeN6RK3GvK.jpg", "order": 44}, {"name": "Lv Ziying", "character": "Son of Chan Sei Mai", "id": 1440522, "credit_id": "5505c8e892514174b6002c10", "cast_id": 58, "profile_path": null, "order": 45}], "directors": [{"name": "Herman Yau", "department": "Directing", "job": "Director", "credit_id": "52fe4c7b9251416c7511bc67", "profile_path": "/ahrznxNTlzUwO4wg10dijD8MF4I.jpg", "id": 92831}], "vote_average": 6.2, "runtime": 100}, "150689": {"poster_path": "/o1F2aloaOUufHHOsV0laA9aw9N0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.", "video": false, "id": 150689, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Cinderella", "tagline": "Midnight is just the beginning.", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1661199", "adult": false, "backdrop_path": "/xjjO3JIdneMBTsS282JffiPqfHW.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2015-03-13", "popularity": 5.3186219924769, "original_title": "Cinderella", "budget": 0, "cast": [{"name": "Lily James", "character": "Cinderella", "id": 1016168, "credit_id": "538e1d650e0a2632c9000123", "cast_id": 12, "profile_path": "/oBeTe9bKFkyDbuhGbEdp06LRR1K.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Lady Tremaine", "id": 112, "credit_id": "52fe4aea9251416c910c9e15", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Richard Madden", "character": "Prince \"Kit\" Charming", "id": 512991, "credit_id": "52fe4aea9251416c910c9e35", "cast_id": 8, "profile_path": "/fBEQiAvjmP6nYv1MyoVtQAf2OPX.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Fairy Godmother", "id": 1283, "credit_id": "52fe4aea9251416c910c9e31", "cast_id": 7, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Holliday Grainger", "character": "Anastasia", "id": 302165, "credit_id": "52fe4aea9251416c910c9e39", "cast_id": 9, "profile_path": "/1DvpsjoDK2mTT4J7MzyHOqbIkXf.jpg", "order": 4}, {"name": "Sophie McShera", "character": "Drizella", "id": 1186087, "credit_id": "52fe4aea9251416c910c9e3d", "cast_id": 10, "profile_path": "/gws3xvELfZg3cgPPUDzeYiALV4W.jpg", "order": 5}, {"name": "Hayley Atwell", "character": "Cinderella's Mother", "id": 39459, "credit_id": "538e1d710e0a2632cc000104", "cast_id": 13, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 6}, {"name": "Stellan Skarsg\u00e5rd", "character": "Grand Duke", "id": 1640, "credit_id": "538e1d7c0e0a2632bd000138", "cast_id": 14, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 7}, {"name": "Nonso Anozie", "character": "Captain", "id": 43547, "credit_id": "538e1d860e0a2632c9000125", "cast_id": 15, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 8}, {"name": "Derek Jacobi", "character": "The King", "id": 937, "credit_id": "538e1d960e0a2632c6000130", "cast_id": 16, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 9}, {"name": "Ben Chaplin", "character": "Cinderella's Father", "id": 21343, "credit_id": "54808099c3a36817a5002a06", "cast_id": 18, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 10}, {"name": "Laurie Calvert", "character": "Chief Guard Cassius", "id": 1267123, "credit_id": "548080b99251416e6c002836", "cast_id": 20, "profile_path": "/vxMKhtLG7bCkHhlar7tJiM6OPs6.jpg", "order": 11}, {"name": "Leila Wong", "character": "Princess Mei Mei", "id": 1312524, "credit_id": "548080c5c3a36829ae00290e", "cast_id": 21, "profile_path": "/fbFl7hbj7UYLrrbdKB2VddiLf8e.jpg", "order": 12}, {"name": "Rob Brydon", "character": "Master Phineus", "id": 47632, "credit_id": "550bd3c8c3a3684886003230", "cast_id": 83, "profile_path": "/cNXgoMllciglCr4QT8mdwvBjBN6.jpg", "order": 13}, {"name": "Eloise Webb", "character": "Cinderella (10 years)", "id": 1394373, "credit_id": "550bd47e925141469c003150", "cast_id": 84, "profile_path": null, "order": 14}, {"name": "Gareth Mason", "character": "Goose Coachman", "id": 1394387, "credit_id": "551e3b82c3a3682eaf001e29", "cast_id": 85, "profile_path": null, "order": 15}, {"name": "Nari Blair-Mangat", "character": "Prince's Retinue Member", "id": 229320, "credit_id": "551e3bda925141173f001e0f", "cast_id": 86, "profile_path": null, "order": 16}, {"name": "Richard McCabe", "character": "Baron", "id": 7025, "credit_id": "551e3beac3a3683a250022ac", "cast_id": 87, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 17}, {"name": "Adetomiwa Edun", "character": "Trooper", "id": 1019865, "credit_id": "551e3c03c3a3683a0d0025b3", "cast_id": 88, "profile_path": "/naNSt7oEPDHSyGoeEVwv1I43FbI.jpg", "order": 18}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe4aea9251416c910c9e2d", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 7.3, "runtime": 112}, "11430": {"poster_path": "/vDfaIoXTaQLUD5HVAv2hLIFKAcq.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Timon the meerkat and Pumbaa the warthog are best pals and the unsung heroes of the African savanna. This prequel to the smash Disney animated adventure takes you back -- way back -- before Simba's adventure began. You'll find out all about Timon and Pumbaa and tag along as they search for the perfect home and attempt to raise a rambunctious lion cub.", "video": false, "id": 11430, "genres": [{"id": 16, "name": "Animation"}], "title": "The Lion King 1\u00bd", "tagline": "You Don't Know The \u00bd Of It!", "vote_count": 168, "homepage": "", "belongs_to_collection": {"backdrop_path": "/A9IEaj9cPAwEgFnTmteB70oxgJY.jpg", "poster_path": "/y3n3SDoRDqgz3LLWuvcfi3ZiF84.jpg", "id": 94032, "name": "The Lion King Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0318403", "adult": false, "backdrop_path": "/pql1l2FPU5e4nPxoY2TbYaPwjLj.jpg", "production_companies": [{"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "Walt Disney Television Animation", "id": 3475}], "release_date": "2004-02-09", "popularity": 1.48434543395983, "original_title": "The Lion King 1\u00bd", "budget": 0, "cast": [{"name": "Nathan Lane", "character": "Timon", "id": 78729, "credit_id": "52fe443e9251416c7502de8f", "cast_id": 1, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 0}, {"name": "Ernie Sabella", "character": "Pumbaa", "id": 69415, "credit_id": "52fe443e9251416c7502de93", "cast_id": 2, "profile_path": "/nwdAp8FacfZ1eRU7gNkOwWvDqnc.jpg", "order": 1}, {"name": "Julie Kavner", "character": "Mom", "id": 199, "credit_id": "52fe443e9251416c7502de97", "cast_id": 3, "profile_path": "/AuhOCpsQwr09nBvTtaqArggLNd7.jpg", "order": 2}, {"name": "Jerry Stiller", "character": "Uncle Max", "id": 26042, "credit_id": "52fe443e9251416c7502de9b", "cast_id": 4, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 3}, {"name": "Matthew Broderick", "character": "Simba", "id": 4756, "credit_id": "52fe443e9251416c7502de9f", "cast_id": 5, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 4}, {"name": "Robert Guillaume", "character": "Rafiki (voice)", "id": 8294, "credit_id": "52fe443f9251416c7502dedf", "cast_id": 16, "profile_path": "/raHFGWp1Nuh0jaJFaJHuIn5Yb8X.jpg", "order": 5}, {"name": "Moira Kelly", "character": "Nala (voice)", "id": 20005, "credit_id": "52fe443f9251416c7502dee3", "cast_id": 17, "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg", "order": 6}, {"name": "Whoopi Goldberg", "character": "Shenzi (voice)", "id": 2395, "credit_id": "52fe443f9251416c7502dee7", "cast_id": 18, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 7}, {"name": "Cheech Marin", "character": "Banzai (voice)", "id": 11159, "credit_id": "52fe443f9251416c7502deeb", "cast_id": 19, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 8}, {"name": "Jim Cummings", "character": "Ed (voice)", "id": 12077, "credit_id": "52fe443f9251416c7502deef", "cast_id": 20, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}, {"name": "Edward Hibbert", "character": "Zazu (voice)", "id": 84249, "credit_id": "52fe443f9251416c7502def3", "cast_id": 21, "profile_path": "/mpKpvpRM7EHgjaNNQ0PvEhBEqUu.jpg", "order": 10}, {"name": "Jason Rudofsky", "character": "Flinchy (voice)", "id": 177756, "credit_id": "52fe443f9251416c7502def7", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Matt Weinberg", "character": "Young Simba (voice)", "id": 60956, "credit_id": "52fe443f9251416c7502defb", "cast_id": 23, "profile_path": "/g0MVUMfhkyv5kcIsMOEX0LaHpQM.jpg", "order": 12}, {"name": "Corey Burton", "character": "Grumpy (voice)", "id": 35219, "credit_id": "54425a66c3a3683e08001c95", "cast_id": 27, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 13}, {"name": "Jeff Bennett", "character": "Additional Voices", "id": 34982, "credit_id": "5402d5ba0e0a2658de006ee8", "cast_id": 26, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 14}], "directors": [{"name": "Bradley Raymond", "department": "Directing", "job": "Director", "credit_id": "52fe443e9251416c7502dea5", "profile_path": "/eFJSeWaJrduYGwRNtvQXNMKONA7.jpg", "id": 69416}], "vote_average": 6.1, "runtime": 77}, "38843": {"poster_path": "/13LKcXe0gSmxNiVLMKdoeNmV9jX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When free-spirited grade-schooler Ramona Quimby's wild imagination leads her into another adventure, she plunges in with her trademark energy \u2026 and penchant for mishaps, much to the consternation of her parents and big sister Beezus.", "video": false, "id": 38843, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Ramona and Beezus", "tagline": "A Little Sister Goes A Long Way.", "vote_count": 55, "homepage": "http://www.ramonaandbeezus.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0493949", "adult": false, "backdrop_path": "/hvDaWWm1fMECcCSvfFUtB8u7NNv.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2010-07-23", "popularity": 1.11252832772911, "original_title": "Ramona and Beezus", "budget": 0, "cast": [{"name": "Selena Gomez", "character": "Beezus Quimby", "id": 77948, "credit_id": "52fe46e59251416c91063671", "cast_id": 16, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Joey King", "character": "Ramona Quimby", "id": 125025, "credit_id": "52fe46e59251416c9106362b", "cast_id": 1, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 1}, {"name": "John Corbett", "character": "Robert Quimby", "id": 38405, "credit_id": "52fe46e59251416c9106362f", "cast_id": 3, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 2}, {"name": "Bridget Moynahan", "character": "Dorothy Quimby", "id": 18354, "credit_id": "52fe46e59251416c91063633", "cast_id": 4, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 3}, {"name": "Ginnifer Goodwin", "character": "Aunt Bea", "id": 417, "credit_id": "52fe46e59251416c91063637", "cast_id": 5, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 4}], "directors": [{"name": "Elizabeth Allen", "department": "Directing", "job": "Director", "credit_id": "52fe46e59251416c91063655", "profile_path": "/8Njf10gbKo1IMan4KgK2669xJ5K.jpg", "id": 78896}], "vote_average": 6.3, "runtime": 103}, "11439": {"poster_path": "/p4HtT6IHPAVg8usYdyv8gZN8Qbm.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60222298, "overview": "A writer stumbles upon a long-hidden secret when he agrees to help former British Prime Minister Adam Lang complete his memoirs on a remote island after the politician's assistant drowns in a mysterious accident. In director Roman Polanski's tense drama, the author realizes that his discovery threatens some very powerful people who will do anything to ensure that certain episodes from Lang's past remain buried.", "video": false, "id": 11439, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Ghost Writer", "tagline": "Read between the lies.", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1139328", "adult": false, "backdrop_path": "/rgi3ykaqwcC8s4FiQ8QEhdvk662.jpg", "production_companies": [{"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "R.P. Productions", "id": 355}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Runteam Ltd.", "id": 265}], "release_date": "2010-02-12", "popularity": 1.54696436514185, "original_title": "The Ghost Writer", "budget": 45000000, "cast": [{"name": "Ewan McGregor", "character": "The Ghost", "id": 3061, "credit_id": "52fe443f9251416c7502e01b", "cast_id": 4, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Pierce Brosnan", "character": "Adam Lang", "id": 517, "credit_id": "52fe443f9251416c7502e05f", "cast_id": 24, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 1}, {"name": "Jon Bernthal", "character": "Rick", "id": 19498, "credit_id": "52fe443f9251416c7502e033", "cast_id": 10, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 2}, {"name": "Kim Cattrall", "character": "Amelia", "id": 2109, "credit_id": "52fe443f9251416c7502e01f", "cast_id": 5, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 3}, {"name": "Tom Wilkinson", "character": "Paul Emmett", "id": 207, "credit_id": "52fe443f9251416c7502e023", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 4}, {"name": "Olivia Williams", "character": "Ruth Lang", "id": 11616, "credit_id": "52fe443f9251416c7502e02b", "cast_id": 8, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 5}, {"name": "Timothy Hutton", "character": "Sidney Kroll", "id": 16327, "credit_id": "52fe443f9251416c7502e027", "cast_id": 7, "profile_path": "/qSLWuXpkuuqAXzI3dQkYshXAv2O.jpg", "order": 6}, {"name": "James Belushi", "character": "John Maddox", "id": 26485, "credit_id": "52fe443f9251416c7502e02f", "cast_id": 9, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 7}, {"name": "Nyasha Hatendi", "character": "Josh", "id": 84070, "credit_id": "52fe443f9251416c7502e047", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Tim Preece", "character": "Roy", "id": 113360, "credit_id": "52fe443f9251416c7502e053", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Michael S. Ruscheinsky", "character": "The Island Reporter", "id": 84071, "credit_id": "52fe443f9251416c7502e04b", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Eben Young", "character": "FBI Agent #1", "id": 84073, "credit_id": "52fe443f9251416c7502e04f", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Jaymes Butler", "character": "FBI Officer", "id": 74225, "credit_id": "52fe443f9251416c7502e037", "cast_id": 11, "profile_path": "/eKIytH97XBE8Oe87qGsmKTifHVF.jpg", "order": 12}, {"name": "Robert Seeliger", "character": "CNN Newscaster #1", "id": 5755, "credit_id": "52fe443f9251416c7502e05b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Anna Botting", "character": "SKY TV newsreader", "id": 113361, "credit_id": "52fe443f9251416c7502e057", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Marianne Graffam", "character": "Lucy", "id": 84067, "credit_id": "52fe443f9251416c7502e03b", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "Daphne Alexander", "character": "Connie", "id": 84068, "credit_id": "52fe443f9251416c7502e03f", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Angelique Fernandez", "character": "War Crime Prosecutor", "id": 84069, "credit_id": "52fe443f9251416c7502e043", "cast_id": 14, "profile_path": null, "order": 17}, {"name": "Milton Welsh", "character": "Taxi Driver", "id": 902, "credit_id": "52fe443f9251416c7502e063", "cast_id": 25, "profile_path": "/n3BYt4bbPey6UwMGRyhlRCaaFkB.jpg", "order": 18}, {"name": "Alister Mazzotti", "character": "Protection Officer #1", "id": 16716, "credit_id": "52fe443f9251416c7502e073", "cast_id": 28, "profile_path": "/9OOhGXLSyuCZHrhDvo3uP1K914t.jpg", "order": 19}, {"name": "Eli Wallach", "character": "Old man", "id": 3265, "credit_id": "52fe443f9251416c7502e07b", "cast_id": 30, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 20}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe443f9251416c7502e011", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 6.4, "runtime": 128}, "1907": {"poster_path": "/s8iK2hsNO6Glw9a8LVfdnYItQ1B.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144056873, "overview": "British director Danny Boyle, known for the cult movie Trainspotting, makes a movie out of the bestseller and debut novel The Beach by Alex Garland.", "video": false, "id": 1907, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Beach", "tagline": "Somewhere on this planet it must exist.", "vote_count": 230, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hr", "name": "Hrvatski"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt0163978", "adult": false, "backdrop_path": "/c9KMiGDMJGw0tuc0KJsLKDFf5ot.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Figment Films", "id": 359}], "release_date": "2000-02-11", "popularity": 1.00956443730343, "original_title": "The Beach", "budget": 40000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Richard", "id": 6193, "credit_id": "52fe4320c3a36847f803c4fb", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Guillaume Canet", "character": "\u00c9tienne", "id": 19866, "credit_id": "52fe4320c3a36847f803c4ff", "cast_id": 3, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Sal", "id": 3063, "credit_id": "52fe4320c3a36847f803c503", "cast_id": 4, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Virginie Ledoyen", "character": "Fran\u00e7oise", "id": 19163, "credit_id": "52fe4320c3a36847f803c50f", "cast_id": 7, "profile_path": "/lwGZemynQGiGeCQDPc2Tb7kmXOn.jpg", "order": 3}, {"name": "Staffan Kihlbom", "character": "Christo", "id": 19867, "credit_id": "52fe4320c3a36847f803c507", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Paterson Joseph", "character": "Keaty", "id": 19868, "credit_id": "52fe4320c3a36847f803c50b", "cast_id": 6, "profile_path": "/8UipvAExpG59oYeQ8LZ5xJD4VSq.jpg", "order": 5}, {"name": "Peter Youngblood Hills", "character": "Zeph", "id": 19869, "credit_id": "52fe4320c3a36847f803c513", "cast_id": 8, "profile_path": "/gpuAUjccfnOu96Uk1crvZ5Rfk0j.jpg", "order": 6}, {"name": "Robert Carlyle", "character": "Daffy", "id": 18023, "credit_id": "52fe4320c3a36847f803c517", "cast_id": 9, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 7}, {"name": "Jerry Swindall", "character": "Sammy", "id": 19870, "credit_id": "52fe4320c3a36847f803c51b", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Lars Arentz-Hansen", "character": "Bugs", "id": 19871, "credit_id": "52fe4320c3a36847f803c51f", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jukka Hiltunen", "character": "Karl", "id": 2063, "credit_id": "52fe4320c3a36847f803c559", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Magnus Lindgren", "character": "Sten", "id": 19873, "credit_id": "52fe4320c3a36847f803c55d", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Daniel York", "character": "Hustler", "id": 19874, "credit_id": "52fe4320c3a36847f803c561", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Daniel Caltagirone", "character": "Unhygienix", "id": 19875, "credit_id": "52fe4320c3a36847f803c565", "cast_id": 24, "profile_path": "/cnuEASgMkryLbTMZVNaGltibGFe.jpg", "order": 13}, {"name": "Zelda Tinska", "character": "Sonja", "id": 19876, "credit_id": "52fe4320c3a36847f803c569", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Sian Martin", "character": "", "id": 1328285, "credit_id": "53b17e000e0a2659800082c3", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe4320c3a36847f803c4f7", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.3, "runtime": 119}, "44214": {"poster_path": "/9aipydFnWTBSyFBxM46rVor7FZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 327803731, "overview": "A ballet dancer wins the lead in \"Swan Lake\" and is perfect for the role of the delicate White Swan - Princess Odette - but slowly loses her mind as she becomes more and more like Odile, the Black Swan.", "video": false, "id": 44214, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Black Swan", "tagline": "In the era of personal branding, the scariest possibility is that someone might be better at being you than you are.", "vote_count": 1283, "homepage": "http://www.foxsearchlight.com/blackswan/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0947798", "adult": false, "backdrop_path": "/t8jFs6cOl1YVSfXXZivWtEb14tF.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "2010-12-02", "popularity": 1.41550056387642, "original_title": "Black Swan", "budget": 13000000, "cast": [{"name": "Natalie Portman", "character": "Nina", "id": 524, "credit_id": "52fe467ec3a36847f810219b", "cast_id": 21, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Thomas Leroy", "id": 1925, "credit_id": "52fe467ec3a36847f8102159", "cast_id": 5, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Erica", "id": 10767, "credit_id": "52fe467ec3a36847f8102165", "cast_id": 9, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Mila Kunis", "character": "Lilly", "id": 18973, "credit_id": "52fe467ec3a36847f8102151", "cast_id": 3, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 3}, {"name": "Winona Ryder", "character": "Beth MacIntyre", "id": 1920, "credit_id": "52fe467ec3a36847f8102155", "cast_id": 4, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 4}, {"name": "Chris Gartin", "character": "Handsome scott", "id": 68108, "credit_id": "52fe467ec3a36847f8102171", "cast_id": 12, "profile_path": "/uhFnE7Nj1UnqmVGeZ75QKohGFXz.jpg", "order": 5}, {"name": "Ksenia Solo", "character": "Veronica", "id": 140407, "credit_id": "52fe467ec3a36847f810215d", "cast_id": 6, "profile_path": "/f8YWCgu4Aj5tKULti8VV5jZcRSG.jpg", "order": 6}, {"name": "Toby Hemingway", "character": "Tom", "id": 60901, "credit_id": "52fe467ec3a36847f8102161", "cast_id": 8, "profile_path": "/b5ZlB5Ct7xRg4ypRjAA7mjFA1Jq.jpg", "order": 7}, {"name": "Janet Montgomery", "character": "Madeline", "id": 90755, "credit_id": "52fe467ec3a36847f8102169", "cast_id": 10, "profile_path": "/wSmjDCMwM2WSrWkeVULkBfoTYEA.jpg", "order": 8}, {"name": "Kristina Anapau", "character": "Galina", "id": 43443, "credit_id": "52fe467ec3a36847f810216d", "cast_id": 11, "profile_path": "/n3qMKBBnINi63AL9U1AIIutOLzv.jpg", "order": 9}, {"name": "Marcia Jean Kurtz", "character": "Costume Mistress", "id": 14548, "credit_id": "52fe467ec3a36847f8102175", "cast_id": 13, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 10}, {"name": "Deborah Offner", "character": "Susie", "id": 11872, "credit_id": "52fe467ec3a36847f8102179", "cast_id": 14, "profile_path": "/ywOLdDO1sXMc5ygatNxeHgg4SQo.jpg", "order": 11}, {"name": "Adriene Couvillion", "character": "Violinist", "id": 140408, "credit_id": "52fe467ec3a36847f810217d", "cast_id": 15, "profile_path": "/fbMPXElvLtOavZLjiBAYQ7XeMql.jpg", "order": 12}, {"name": "Shaun O'Hagan", "character": "Stage Manager", "id": 140409, "credit_id": "52fe467ec3a36847f8102181", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Sebastian Stan", "character": "Andrew", "id": 60898, "credit_id": "52fe467ec3a36847f8102191", "cast_id": 19, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 14}, {"name": "Benjamin Millepied", "character": "David", "id": 970088, "credit_id": "52fe467ec3a36847f810219f", "cast_id": 22, "profile_path": "/ZdGuSF6xBYZBIQq6SewGYgtHXs.jpg", "order": 15}, {"name": "Sergio Torrado", "character": "Sergio", "id": 1081121, "credit_id": "52fe467ec3a36847f81021a3", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Mark Margolis", "character": "Mr. Fithian", "id": 1173, "credit_id": "52fe467ec3a36847f81021a7", "cast_id": 24, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 17}, {"name": "Tina Sloan", "character": "Mrs. Fithian", "id": 28030, "credit_id": "52fe467ec3a36847f81021ab", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Abraham Aronofsky", "character": "Mr. Stein", "id": 1081122, "credit_id": "52fe467ec3a36847f81021af", "cast_id": 26, "profile_path": "/vqOnhVVShEqBeTiDlkYdiJzLwLk.jpg", "order": 19}, {"name": "Charlotte Aronofsky", "character": "Mrs. Stein", "id": 1081123, "credit_id": "52fe467ec3a36847f81021b3", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Sarah Hay", "character": "", "id": 1429010, "credit_id": "54e5fee19251412201000055", "cast_id": 98, "profile_path": null, "order": 21}, {"name": "Irina Dvorovenko", "character": "", "id": 1429011, "credit_id": "54e5ff1d92514121f0000078", "cast_id": 99, "profile_path": null, "order": 22}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe467ec3a36847f810214d", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 6.7, "runtime": 108}, "60599": {"poster_path": "/tn8a9qdYmUF8NMy1tmhoH4WnDXq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35485056, "overview": "A troubled hedge fund magnate, desperate to complete the sale of his trading empire, makes an error that forces him to turn to an unlikely person for help.", "video": false, "id": 60599, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Arbitrage", "tagline": "Power is the best alibi.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1764183", "adult": false, "backdrop_path": "/4yr7WC1qRoWBZa1QvS5YBz1aEGT.jpg", "production_companies": [{"name": "Lucky Monkey Pictures", "id": 11093}, {"name": "Lionsgate", "id": 1632}, {"name": "Green Room Films", "id": 12501}, {"name": "Treehouse Pictures", "id": 14580}, {"name": "Parlay Films", "id": 24934}, {"name": "LB Productions", "id": 24933}, {"name": "Artina Films", "id": 2394}, {"name": "Alvernia Studios", "id": 24930}], "release_date": "2012-09-14", "popularity": 0.467108394799215, "original_title": "Arbitrage", "budget": 12000000, "cast": [{"name": "Richard Gere", "character": "Robert Miller", "id": 1205, "credit_id": "52fe462dc3a368484e082ec7", "cast_id": 2, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Ellen Miller", "id": 4038, "credit_id": "52fe462dc3a368484e082ecf", "cast_id": 4, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Tim Roth", "character": "Det. Michael Bryer", "id": 3129, "credit_id": "52fe462dc3a368484e082ecb", "cast_id": 3, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 2}, {"name": "Brit Marling", "character": "Brooke Miller", "id": 222330, "credit_id": "52fe462dc3a368484e082ed9", "cast_id": 7, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 3}, {"name": "Monica Raymund", "character": "Reina", "id": 221600, "credit_id": "52fe462dc3a368484e082edd", "cast_id": 8, "profile_path": "/bbqP14ukes1Ya9tPTOHqw9XEPRY.jpg", "order": 4}, {"name": "Nate Parker", "character": "Jimmy Grant", "id": 77277, "credit_id": "52fe462dc3a368484e082f01", "cast_id": 15, "profile_path": "/tgE3z5WbXyaxKcgEEIaaEic988h.jpg", "order": 5}, {"name": "Bruce Altman", "character": "Chris Vogler", "id": 27545, "credit_id": "52fe462dc3a368484e082ee1", "cast_id": 9, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 6}, {"name": "Laetitia Casta", "character": "Julie Cote", "id": 119499, "credit_id": "52fe462dc3a368484e082efd", "cast_id": 14, "profile_path": "/v0H9UWF5UK0axZBU54SdKtsLl7p.jpg", "order": 7}, {"name": "Chris Eigeman", "character": "Gavin Briar", "id": 78190, "credit_id": "53691513c3a36812410066ec", "cast_id": 20, "profile_path": "/gUPkpZnACB78kRqPnFuQXK0PLjf.jpg", "order": 8}, {"name": "Larry Pine", "character": "Jeffrey Greenberg", "id": 19511, "credit_id": "5369152fc3a3681220006519", "cast_id": 21, "profile_path": "/cVw0dH0MKSu6ckFuqkbQK4rNcRI.jpg", "order": 9}, {"name": "Reg E. Cathey", "character": "Earl Monroe", "id": 38951, "credit_id": "5369153fc3a36812380061b9", "cast_id": 22, "profile_path": "/5SKwwUhSCgzggT6iRcO951e13XM.jpg", "order": 10}, {"name": "Stuart Margolin", "character": "Syd Felder", "id": 41406, "credit_id": "53971381c3a3686415005c95", "cast_id": 30, "profile_path": "/aPY5PDrURHBlZv45XXCvrijmjsx.jpg", "order": 11}, {"name": "Curtiss Cook", "character": "Det. Mills", "id": 2254, "credit_id": "539714710e0a266dc20093c9", "cast_id": 31, "profile_path": "/qX97rykGHn3wpxRkM8nSmE1Jfkj.jpg", "order": 12}, {"name": "Tibor Feldman", "character": "Judge Rittenband", "id": 1192389, "credit_id": "539715300e0a266dbb0096d3", "cast_id": 32, "profile_path": "/6NR8t0gDsgoQKtL8mYUYmuEjRq6.jpg", "order": 13}, {"name": "Austin Lysy", "character": "Peter Miller", "id": 5370, "credit_id": "5397158e0e0a266dc20093e6", "cast_id": 33, "profile_path": "/7MAYRiYplZmGlGEMBsIiHGoitX5.jpg", "order": 14}, {"name": "Gabrielle Lazure", "character": "Sandrine Cote", "id": 35082, "credit_id": "539715d70e0a266dbb0096e2", "cast_id": 34, "profile_path": "/wE7pY69b7jgXGqX8TMUgUACIrK5.jpg", "order": 15}, {"name": "Shawn Elliott", "character": "Flores", "id": 1327735, "credit_id": "539716290e0a266dbf0095cc", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Sophie Curtis", "character": "Ava Stanton", "id": 1329537, "credit_id": "5397166e0e0a266dbb0096f4", "cast_id": 36, "profile_path": "/y2uEcjwuo8GqdQw4AwK2VmqiOQ6.jpg", "order": 17}], "directors": [{"name": "Nicholas Jarecki", "department": "Directing", "job": "Director", "credit_id": "52fe462dc3a368484e082ec3", "profile_path": null, "id": 81856}], "vote_average": 5.6, "runtime": 100}, "11451": {"poster_path": "/a0zQJrWYHiUC6EzTofznsBKWzh0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66002004, "overview": "Maggie Peyton, the new owner of Number 53 - the free-wheelin' Volkswagen bug with a mind of its own - puts the car through its paces on the road to becoming a NASCAR competitor.", "video": false, "id": 11451, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Herbie Fully Loaded", "tagline": "Start your engines...", "vote_count": 100, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hgi9EeU50KFhv9pCDmJyx4VLp5G.jpg", "poster_path": "/uFvt8t7HlB6BzjiJDU6ea1eI28L.jpg", "id": 12087, "name": "Herbie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0400497", "adult": false, "backdrop_path": "/pBgGl3GfVxs84T7ZniUAz5FMMNx.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2005-06-18", "popularity": 0.870685551176827, "original_title": "Herbie Fully Loaded", "budget": 50000000, "cast": [{"name": "Lindsay Lohan", "character": "Maggie Peyton", "id": 49265, "credit_id": "52fe44429251416c7502e70d", "cast_id": 1, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Michael Keaton", "character": "Ray Peyton Sr.", "id": 2232, "credit_id": "52fe44429251416c7502e711", "cast_id": 2, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Trip Murphy", "id": 2876, "credit_id": "52fe44429251416c7502e715", "cast_id": 3, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Ray Peyton Jr.", "id": 33654, "credit_id": "52fe44429251416c7502e719", "cast_id": 4, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Justin Long", "character": "Kevin", "id": 15033, "credit_id": "52fe44429251416c7502e71d", "cast_id": 5, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 4}, {"name": "Cheryl Hines", "character": "Sally", "id": 57854, "credit_id": "52fe44429251416c7502e76f", "cast_id": 19, "profile_path": "/g6CJqdMVRENrMRiva5spTuJkWRd.jpg", "order": 5}, {"name": "Jimmi Simpson", "character": "Crash", "id": 22125, "credit_id": "52fe44429251416c7502e773", "cast_id": 20, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 6}, {"name": "Scoot McNairy", "character": "Augie", "id": 59233, "credit_id": "52fe44429251416c7502e777", "cast_id": 21, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 7}, {"name": "Thomas Lennon", "character": "Larry Murphy", "id": 539, "credit_id": "52fe44429251416c7502e77b", "cast_id": 22, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 8}, {"name": "Jill Ritchie", "character": "Charisma", "id": 22124, "credit_id": "52fe44429251416c7502e77f", "cast_id": 23, "profile_path": "/8WqoS3WJCg9Yif0Flzlaj1Ux3S2.jpg", "order": 9}, {"name": "Jeremy Roberts", "character": "Crazy Dave", "id": 15372, "credit_id": "52fe44429251416c7502e783", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "E.E. Bell", "character": "Beeman", "id": 173756, "credit_id": "52fe44429251416c7502e787", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Peter Pasco", "character": "Juan Hernandez", "id": 200145, "credit_id": "52fe44429251416c7502e78b", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Mario Larraza", "character": "Miguel Hernandez", "id": 157193, "credit_id": "52fe44429251416c7502e78f", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Patrick Cranshaw", "character": "Jimmy D.", "id": 58513, "credit_id": "52fe44429251416c7502e793", "cast_id": 28, "profile_path": "/onUKpczej5fMG84mLs3aLgQAnDJ.jpg", "order": 14}], "directors": [{"name": "Angela Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe44429251416c7502e723", "profile_path": "/fA8mw3bRWALK7ZGi0YUpDxNWVVf.jpg", "id": 7312}], "vote_average": 5.1, "runtime": 101}, "11452": {"poster_path": "/zjFnJVCDPqlL7ysBy8CXavg35Ac.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38275483, "overview": "Van Wilder is an outgoing, and extremely popular student who has been at Coolidge College for seven years. For the past three years he has made no effort to graduate, instead spending his time organizing parties, helping other students, and posing for figure drawing classes. But after seven years, with no return on his investment, Van's father decides it is time to stop paying Van's tuition.", "video": false, "id": 11452, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "National Lampoon\u2019s Van Wilder", "tagline": "Don't Graduate. Celebrate.", "vote_count": 557, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fvkR1SE5i1qUVHM5vewIf9jozcu.jpg", "poster_path": "/phxBWdWHgtUpns0XU33JbBKMgsx.jpg", "id": 43220, "name": "National Lampoon\u2019s Van Wilder Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0283111", "adult": false, "backdrop_path": "/audTjUWgmjexseDrur5iAwtJPS.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}, {"name": "Tapestry Films", "id": 870}], "release_date": "2002-03-29", "popularity": 1.44511169795176, "original_title": "National Lampoon\u2019s Van Wilder", "budget": 5000000, "cast": [{"name": "Ryan Reynolds", "character": "Van Wilder", "id": 10859, "credit_id": "52fe44439251416c7502e7c3", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Tara Reid", "character": "Gwen Pearson", "id": 1234, "credit_id": "52fe44439251416c7502e7c7", "cast_id": 2, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 1}, {"name": "Tim Matheson", "character": "Vance Wilder senior", "id": 21561, "credit_id": "52fe44439251416c7502e7cb", "cast_id": 3, "profile_path": "/iQQCtIS9bQJlQ8OMOzeidsJptAQ.jpg", "order": 2}, {"name": "Kal Penn", "character": "Taj Mahal Badalandabad", "id": 53493, "credit_id": "52fe44439251416c7502e7d5", "cast_id": 5, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 3}, {"name": "Simon Helberg", "character": "Vernon", "id": 53863, "credit_id": "52fe44439251416c7502e80f", "cast_id": 15, "profile_path": "/zic1gEH1qEMHhbm5Vxwp9J2XrAO.jpg", "order": 4}, {"name": "Teck Holmes", "character": "Hutch", "id": 155801, "credit_id": "52fe44439251416c7502e813", "cast_id": 16, "profile_path": "/od10Dh7c6qY76Rsyq93YJPgvL78.jpg", "order": 5}, {"name": "Deon Richmond", "character": "Mini Cochran", "id": 35596, "credit_id": "52fe44439251416c7502e817", "cast_id": 17, "profile_path": "/ussG1tkxeGe1iVj234A3c1MbuHo.jpg", "order": 6}, {"name": "Alex Burns", "character": "Gordon", "id": 5395, "credit_id": "52fe44439251416c7502e81b", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Paul Gleason", "character": "Professor McDoogle", "id": 7675, "credit_id": "52fe44439251416c7502e81f", "cast_id": 19, "profile_path": "/TKFcITuV9vyTSZe55B8klclPor.jpg", "order": 8}, {"name": "Daniel Cosgrove", "character": "Richard Bagg", "id": 203511, "credit_id": "52fe44439251416c7502e823", "cast_id": 20, "profile_path": "/21nO29gfTNgLHh21KMuKsCBah9i.jpg", "order": 9}, {"name": "Emily Rutherfurd", "character": "Jeannie", "id": 1233672, "credit_id": "52fe44439251416c7502e827", "cast_id": 21, "profile_path": "/1clXrlBKFAAQ7ltkMp1uogAa6Ji.jpg", "order": 10}], "directors": [{"name": "Walt Becker", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e7d1", "profile_path": "/ioshEghgcfUsaDN2rYfEJDPBUqZ.jpg", "id": 68573}], "vote_average": 6.0, "runtime": 92}, "11453": {"poster_path": "/1P8fWex0NzgtPE4cgIUDHrVSARM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22400154, "overview": "Deuce Bigalow goes to Amsterdam after a little accident including two irritating kids and a bunch of aggressive dolphins. There he meets up with his old friend T.J. Hicks. But a mysterious killer starts killing some of Amsterdam's finest gigolos and T.J. is mistaken for the extremely gay murderer. Deuce must enter the gigolo industry again to find the real murderer and clear T.J.'s name.", "video": false, "id": 11453, "genres": [{"id": 35, "name": "Comedy"}], "title": "Deuce Bigalow: European Gigolo", "tagline": "For the women of Europe... The price of love just got a lot cheaper.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/szTJbYJnm3OPwYxQKLuTtgsUsQ1.jpg", "id": 95664, "name": "Deuce Bigalow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367652", "adult": false, "backdrop_path": "/9r6hn0oASpT89WDjsJ4U10Bh0Dn.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Out of the Blue... Entertainment", "id": 879}], "release_date": "2005-08-06", "popularity": 0.655266980289341, "original_title": "Deuce Bigalow: European Gigolo", "budget": 22000000, "cast": [{"name": "Rob Schneider", "character": "Deuce Bigalow", "id": 60949, "credit_id": "52fe44439251416c7502e853", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "Eddie Griffin", "character": "T.J. Hicks", "id": 62842, "credit_id": "52fe44439251416c7502e857", "cast_id": 2, "profile_path": "/jgz5HDtC3aXYXBSULqay1PKWQOL.jpg", "order": 1}, {"name": "Jeroen Krabb\u00e9", "character": "Gaspar Voorsboch", "id": 1924, "credit_id": "52fe44439251416c7502e85b", "cast_id": 3, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 2}, {"name": "Til Schweiger", "character": "Heinz Hummer", "id": 1844, "credit_id": "52fe44439251416c7502e85f", "cast_id": 4, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 3}, {"name": "Hanna Verboom", "character": "Eva", "id": 69497, "credit_id": "52fe44439251416c7502e863", "cast_id": 5, "profile_path": "/cj3JAcQHWLUaUg9Yz2qthJGLVAf.jpg", "order": 4}, {"name": "Oded Fehr", "character": "Antoine Laconte", "id": 18041, "credit_id": "52fe44439251416c7502e8a9", "cast_id": 18, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 5}, {"name": "Carlos Ponce", "character": "Rodrigo", "id": 62067, "credit_id": "52fe44439251416c7502e8ad", "cast_id": 19, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 6}], "directors": [{"name": "Mike Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e869", "profile_path": null, "id": 69498}], "vote_average": 4.8, "runtime": 83}, "11454": {"poster_path": "/l43BtbZnLU2DaKvU7aNIZwZxpKC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8620929, "overview": "FBI Agent Will Graham, who retired after catching Hannibal Lecktor, returns to duty to engage in a risky cat-and-mouse game with Lecktor to capture a new killer. This film is based on the novel \"Red Dragon\" and predates all the later films with Anthony Hopkins as Hannibal Lecter (which also spells Lecter's name correctly).", "video": false, "id": 11454, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Manhunter", "tagline": "Enter the mind of a serial killer \u2026 you may never come back.", "vote_count": 92, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091474", "adult": false, "backdrop_path": "/pzeR3bzYhywYQW8ANROgfKPhhd7.jpg", "production_companies": [{"name": "De Laurentiis Entertainment Group (DEG)", "id": 484}], "release_date": "1986-08-14", "popularity": 0.0889086127404237, "original_title": "Manhunter", "budget": 0, "cast": [{"name": "William Petersen", "character": "Will Graham", "id": 52267, "credit_id": "52fe44439251416c7502e8d5", "cast_id": 1, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 0}, {"name": "Kim Greist", "character": "Molly Graham", "id": 387, "credit_id": "52fe44439251416c7502e8d9", "cast_id": 2, "profile_path": "/1qLn5aQeL02ysauDs1hJhL0ozfs.jpg", "order": 1}, {"name": "Dennis Farina", "character": "Jack Crawford", "id": 1117, "credit_id": "52fe44439251416c7502e8dd", "cast_id": 3, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 2}, {"name": "Brian Cox", "character": "Dr. Hannibal Lecktor", "id": 1248, "credit_id": "52fe44439251416c7502e8e1", "cast_id": 4, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 3}, {"name": "Joan Allen", "character": "Reba McClane", "id": 11148, "credit_id": "52fe44439251416c7502e909", "cast_id": 11, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 4}, {"name": "Tom Noonan", "character": "Francis Dollarhyde", "id": 119232, "credit_id": "52fe44439251416c7502e90d", "cast_id": 12, "profile_path": "/cpINV4Q8IeVgSLyKz9ldzzAGr5n.jpg", "order": 5}, {"name": "Stephen Lang", "character": "Freddy Lounds", "id": 32747, "credit_id": "52fe44439251416c7502e911", "cast_id": 13, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 6}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e8e7", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 6.4, "runtime": 119}, "11455": {"poster_path": "/8LQLT5H0QZmAsbdqhwY5uCvCds3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41590893, "overview": "Two directionless musicans, a Chicano guitarist (Cheech Marin) and a White drummer (Tommy Chong), meet up in a chance encounter and embark on a series of odd adventures, including being the unwitting partcipants of a bizarre marijuana smuggling plot.", "video": false, "id": 11455, "genres": [{"id": 35, "name": "Comedy"}], "title": "Up in Smoke", "tagline": "The Movie That'll Have You Rolling in the Aisles", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tJqD18aCja9kNpZ1W2r5gZK2qdq.jpg", "poster_path": "/fhv20EC3EeLlVGsSaDpPjft9iTv.jpg", "id": 33071, "name": "Cheech & Chong Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0078446", "adult": false, "backdrop_path": "/Kgidr24QuAUy50HBn0eYR4qIc2.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1978-01-01", "popularity": 0.885350643480095, "original_title": "Up in Smoke", "budget": 0, "cast": [{"name": "Cheech Marin", "character": "Pedro De Pacas", "id": 11159, "credit_id": "52fe44439251416c7502e933", "cast_id": 1, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 0}, {"name": "Tommy Chong", "character": "Anthony 'Man' Stoner", "id": 63208, "credit_id": "52fe44439251416c7502e937", "cast_id": 2, "profile_path": "/vojsacJiMNgVozXSFD6CLSyxylX.jpg", "order": 1}, {"name": "Strother Martin", "character": "Arnold Stoner", "id": 8260, "credit_id": "52fe44439251416c7502e93b", "cast_id": 3, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 2}, {"name": "Edie Adams", "character": "Mrs. Tempest Stoner", "id": 4098, "credit_id": "52fe44439251416c7502e93f", "cast_id": 4, "profile_path": "/nR9nzWhHMZeRrk5EeJhOVhxILbk.jpg", "order": 3}, {"name": "Harold Fong", "character": "Chauffeur", "id": 137582, "credit_id": "53f72f390e0a26419b0062a1", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Richard Novo", "character": "Richard", "id": 1355576, "credit_id": "53f72f540e0a267f770076d1", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Jane Moder", "character": "Jail Bait", "id": 1355577, "credit_id": "53f72f690e0a267f8d007869", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Pam Bille", "character": "Jail Bait", "id": 1355578, "credit_id": "53f72f850e0a267f890077ac", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Arthur Roberts", "character": "Arresting Officer", "id": 120177, "credit_id": "53f72fa20e0a267f8300767d", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Tom Skerritt", "character": "Strawberry", "id": 4139, "credit_id": "53f72fc10e0a267f8d007877", "cast_id": 17, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 9}, {"name": "Stacy Keach", "character": "Sgt. Stedenko (Narc)", "id": 825, "credit_id": "53f72fdd0e0a267f8300768b", "cast_id": 18, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 10}], "directors": [{"name": "Lou Adler", "department": "Directing", "job": "Director", "credit_id": "52fe44439251416c7502e963", "profile_path": "/191YHkoHeu9UAOJ1Qu6z8fNpxIH.jpg", "id": 69500}], "vote_average": 6.3, "runtime": 86}, "240832": {"poster_path": "/rwn876MeqienhOVSSjtUPnwxn0Z.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 458863600, "overview": "A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.", "video": false, "id": 240832, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Lucy", "tagline": "The average person uses 10% of their brain capacity. Imagine what she could do with 100%.", "vote_count": 1647, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2872732", "adult": false, "backdrop_path": "/eCgIoGvfNXrbSiQGqQHccuHjQHm.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}, {"name": "EuropaCorp", "id": 6896}, {"name": "Cin\u00e9+", "id": 23616}], "release_date": "2014-07-25", "popularity": 7.04650815853768, "original_title": "Lucy", "budget": 40000000, "cast": [{"name": "Scarlett Johansson", "character": "Lucy", "id": 1245, "credit_id": "52fe4eadc3a36847f82a0ac9", "cast_id": 1, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Professor Norman", "id": 192, "credit_id": "52fe4eadc3a36847f82a0acd", "cast_id": 2, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Choi Min-sik", "character": "Mr. Jang", "id": 64880, "credit_id": "533c9c54c3a36878e6000dd6", "cast_id": 12, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 2}, {"name": "Amr Waked", "character": "Pierre Del Rio", "id": 2960, "credit_id": "533c9bb4c3a36878fb000d76", "cast_id": 11, "profile_path": "/am80pES7tfN6RgWqmuQg6e7pkiD.jpg", "order": 3}, {"name": "Julian Rhind-Tutt", "character": "The Limey", "id": 7031, "credit_id": "54255ad3c3a368698c00075d", "cast_id": 56, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 4}, {"name": "Pilou Asb\u00e6k", "character": "Richard", "id": 90060, "credit_id": "54255af4c3a368698c000760", "cast_id": 57, "profile_path": "/r0Z1eqyYcJYGy0x9MqgIKDHUrHG.jpg", "order": 5}, {"name": "Analeigh Tipton", "character": "Caroline", "id": 124644, "credit_id": "533e675fc3a368137e000dc6", "cast_id": 13, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 6}, {"name": "Nicolas Phongpheth", "character": "Jii", "id": 1367830, "credit_id": "54255b1bc3a36808760058f6", "cast_id": 58, "profile_path": "/o6sq2UAv2bpLINEato6DaueGj3D.jpg", "order": 7}, {"name": "Jan Oliver Schroeder", "character": "German Mule", "id": 1367831, "credit_id": "54255b340e0a263b7a005a02", "cast_id": 59, "profile_path": "/kTPxq6iDB1mm1oHdQEQokt7BPlj.jpg", "order": 8}, {"name": "Luca Angeletti", "character": "Italian Mule", "id": 109335, "credit_id": "547a0578925141299000294b", "cast_id": 63, "profile_path": "/nUekkscqluOKytYIW1tn20Q16UW.jpg", "order": 9}, {"name": "Lo\u00efc Brabant", "character": "Professeur", "id": 6024, "credit_id": "54dc7f59c3a3681237003558", "cast_id": 94, "profile_path": "/nKv2UNtlWIwJIiZm8m2k04EeS24.jpg", "order": 10}, {"name": "Pierre Grammont", "character": "Professeur", "id": 1426308, "credit_id": "54dc8178c3a36812370035dc", "cast_id": 95, "profile_path": "/ysoa8QA0snyArsSu6ukWfl8ixN6.jpg", "order": 11}, {"name": "Pierre Poirot", "character": "Professeur", "id": 586371, "credit_id": "54dc84be92514155bb0011cf", "cast_id": 96, "profile_path": "/9VSnofZOHksJPavsO0gdInduLgq.jpg", "order": 12}, {"name": "Bertrand Quoniam", "character": "Professeur", "id": 1426347, "credit_id": "54dc99c3925141618c003f1f", "cast_id": 97, "profile_path": "/gz9dJVnQ5WSSr7xdnLuAd4N06Dm.jpg", "order": 13}, {"name": "Pascal Loison", "character": "Drug Addict", "id": 1426348, "credit_id": "54dc9b89c3a36812240038c6", "cast_id": 98, "profile_path": "/qEwvbkJuGR3OvOD6zEggzCriCMB.jpg", "order": 14}, {"name": "Isabelle Cagnat", "character": "Airport Nurse", "id": 24769, "credit_id": "54dc9e89c3a368122d003d47", "cast_id": 100, "profile_path": "/o5l9mN1TRenYi1n6ew4Yve1E6Ed.jpg", "order": 16}, {"name": "Pierre G\u00e9rard", "character": "Airport Doctor", "id": 1318456, "credit_id": "54dc9e98c3a3683102003a99", "cast_id": 101, "profile_path": "/i3VnI6VHpDoTTGrIUsbufl6dbOg.jpg", "order": 17}, {"name": "Fr\u00e9d\u00e9ric Chau", "character": "Cabin Manager", "id": 226021, "credit_id": "54dc9fb892514101bf00075a", "cast_id": 102, "profile_path": "/9QRFgZqIv08TxaR19ouomv8FgWs.jpg", "order": 18}, {"name": "Claire Tran", "character": "Flight Attendant", "id": 1426355, "credit_id": "54dca037925141619e003e06", "cast_id": 103, "profile_path": "/w5zseHo30QTqSIYGHYF9N35QExw.jpg", "order": 19}, {"name": "Fran\u00e7ois Legrand", "character": "Business Man Plane", "id": 1366325, "credit_id": "54dca3cdc3a368123b004096", "cast_id": 104, "profile_path": "/dGerNJcOieqd6j1qkv8vlo1vYj.jpg", "order": 20}, {"name": "Bob Martet", "character": "Customs Officer", "id": 139168, "credit_id": "54dca4e692514161910042dc", "cast_id": 105, "profile_path": "/2ZD8eL43K0SEhbrqNocB4BFrm2v.jpg", "order": 21}, {"name": "C\u00e9dric Chevalme", "character": "Cop Daniel", "id": 94066, "credit_id": "54dcac87c3a3683102003c89", "cast_id": 106, "profile_path": "/42eN6L1YzPaTokfB1w6gGRgS2kS.jpg", "order": 22}, {"name": "Alexis Rangheard", "character": "Cop Robert", "id": 1426365, "credit_id": "54dcad32925141619b003c8e", "cast_id": 107, "profile_path": "/1KkVyuZQon1mlhXaBe9NjRuJ7Nx.jpg", "order": 23}, {"name": "Tonio Descanvelle", "character": "Cop Sergeant", "id": 61623, "credit_id": "54dcae6dc3a3683102003cae", "cast_id": 108, "profile_path": "/6osT2lZvotuNnk9VE9vXUhBPREE.jpg", "order": 24}, {"name": "Christophe Lavalle", "character": "Cop", "id": 226023, "credit_id": "54dcaffdc3a368122a004372", "cast_id": 109, "profile_path": "/hIpTTERDgn1VVqFwGmjVvHL3IU6.jpg", "order": 25}, {"name": "Julien Personnaz", "character": "Cop", "id": 1426372, "credit_id": "54dcb09792514161910043c4", "cast_id": 110, "profile_path": "/6rDvPCJyxASfGPKMZV5sQn38gzK.jpg", "order": 26}, {"name": "Matthew Bravais", "character": "Student", "id": 1426373, "credit_id": "54dcb16292514101bf0009a3", "cast_id": 111, "profile_path": null, "order": 27}, {"name": "Renaud Cestre", "character": "Student", "id": 1118743, "credit_id": "54dcb331c3a3681224003c3a", "cast_id": 112, "profile_path": "/pe1Sh1U3fTRxUS2DGXpfNUnPS1f.jpg", "order": 28}, {"name": "Thibault Segouin", "character": "Student", "id": 1426644, "credit_id": "54dd754bc3a3684551000bc2", "cast_id": 113, "profile_path": null, "order": 29}, {"name": "Claire Zaniolo", "character": "Student", "id": 1426645, "credit_id": "54dd7593c3a3684541000ca4", "cast_id": 114, "profile_path": null, "order": 30}, {"name": "Alessandro Giallocosta", "character": "Marco Brezzi", "id": 1138749, "credit_id": "54dd789292514103bb000667", "cast_id": 115, "profile_path": "/cXWbDDEgofYwehwEC97pn0N7CK9.jpg", "order": 31}, {"name": "Wolfgang Pissors", "character": "Berlin Custom Officer", "id": 1416230, "credit_id": "54ddebf9c3a36845410017f2", "cast_id": 116, "profile_path": "/4X4xFXuQ3M9RdXBb4CvefholXbE.jpg", "order": 32}, {"name": "Sifan Shao", "character": "Chinese Doctor", "id": 1086249, "credit_id": "54de26f492514119500019c7", "cast_id": 117, "profile_path": "/dvMRA0wtPmHYoLCQDSObOZQOWqP.jpg", "order": 33}, {"name": "Paul Chan", "character": "Taipei Surgeon", "id": 1426877, "credit_id": "54de2998925141195a001942", "cast_id": 118, "profile_path": "/76Ha64k7S2TW3CaGC8Nwu3aSxWW.jpg", "order": 34}, {"name": "I. Cheng-Sheng", "character": "Jang's Men", "id": 1426879, "credit_id": "54de2a0cc3a3684551001cfb", "cast_id": 119, "profile_path": null, "order": 35}, {"name": "Chou Chung-Wei", "character": "Jang's Men", "id": 1426883, "credit_id": "54de2a3e9251411953001925", "cast_id": 120, "profile_path": null, "order": 36}, {"name": "Huan Jhih-Cyuan", "character": "Jang's Men", "id": 1426888, "credit_id": "54de2a6dc3a3684541001e05", "cast_id": 121, "profile_path": null, "order": 37}, {"name": "Frank Ma", "character": "Jang's Men", "id": 1426893, "credit_id": "54de2aca925141027c0014ee", "cast_id": 122, "profile_path": null, "order": 38}, {"name": "Tseng Sheng-En", "character": "Jang's Men", "id": 1426895, "credit_id": "54de2b069251411956001aaa", "cast_id": 123, "profile_path": null, "order": 39}, {"name": "Liu Hsieh-Min", "character": "Mahjong Room Man", "id": 1426897, "credit_id": "54de2b3dc3a368454b0017c6", "cast_id": 124, "profile_path": null, "order": 40}, {"name": "Sandra Abouav", "character": "Prehistoric Lucy", "id": 1426899, "credit_id": "54de2b6d9251411956001ab6", "cast_id": 125, "profile_path": null, "order": 41}, {"name": "Abel Aboualiten", "character": "Prehistoric Man", "id": 1426900, "credit_id": "54de2b9f9251411950001a1a", "cast_id": 126, "profile_path": null, "order": 42}, {"name": "Ken Lin", "character": "Regent Hotel Concierge #1", "id": 1123732, "credit_id": "54de2ce9925141194b001c97", "cast_id": 127, "profile_path": "/2wQJ47jGMlolaSefPlsClwV3BCc.jpg", "order": 43}, {"name": "Feng Hsing", "character": "Lucy's Driver", "id": 1426905, "credit_id": "54de2d36925141027c001529", "cast_id": 128, "profile_path": null, "order": 44}, {"name": "Hao-Hsiang Hsu", "character": "Warehouse Man Driver", "id": 1426906, "credit_id": "54de2d969251417feb0016b6", "cast_id": 129, "profile_path": null, "order": 45}, {"name": "Laura D'Arista", "character": "Lucy's Mother (voice)", "id": 1164329, "credit_id": "54de2f06c3a3684555001a62", "cast_id": 130, "profile_path": "/nLt79Ne3f3aXkrTmm2n8Mk2cQNs.jpg", "order": 46}, {"name": "Eunyul Hong", "character": "Phone Voice Royal Suite (voice)", "id": 1426914, "credit_id": "54de2f2a9251411950001a70", "cast_id": 131, "profile_path": null, "order": 47}, {"name": "Samuel Churin", "character": "The Receptionist", "id": 1426915, "credit_id": "54de2fe0c3a3684541001eb6", "cast_id": 132, "profile_path": "/hqBiI0zjCsaKiTs5jKfOsrTjMEq.jpg", "order": 48}, {"name": "Mason Lee", "character": "Regent Hotel Concierge #2", "id": 543138, "credit_id": "54de3187c3a3684558001c05", "cast_id": 133, "profile_path": "/urYsvKa9JnJd79Evg4rDwfcRsTP.jpg", "order": 49}, {"name": "Mohammad Aslam Ansari", "character": "Fakir", "id": 1426916, "credit_id": "54de31a3c3a3684558001c10", "cast_id": 134, "profile_path": null, "order": 50}, {"name": "Kevin Dust", "character": "Native American", "id": 1196388, "credit_id": "54de32739251411956001b6e", "cast_id": 137, "profile_path": null, "order": 53}, {"name": "Diego Llano", "character": "Native American", "id": 1426917, "credit_id": "54de328d925141027c001596", "cast_id": 138, "profile_path": null, "order": 54}, {"name": "Timothy Reevis", "character": "Native American", "id": 1426918, "credit_id": "54de32eac3a3684551001df6", "cast_id": 139, "profile_path": null, "order": 55}, {"name": "German Tintaya Mamani", "character": "Native American", "id": 1426919, "credit_id": "54de3332c3a3684558001c44", "cast_id": 140, "profile_path": null, "order": 56}, {"name": "Kanneti Sawe Han", "character": "Rubik's Cube Boy", "id": 1426920, "credit_id": "54de3366c3a368537a00159e", "cast_id": 141, "profile_path": null, "order": 57}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4eadc3a36847f82a0adb", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.3, "runtime": 89}, "8292": {"poster_path": "/spb6ir8Z1PzheaxagpCELAhZG4O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92374674, "overview": "Four adopted brothers come to avenge their mother's death in what appears to be a random killing in a grocery store robbery. However, the boys' investigation of the death reveals more nefarious activities involving the one brother's business dealings with a notorious local hoodlum. Two cops who are trying to solve the case may also not be what they seem.", "video": false, "id": 8292, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Four Brothers", "tagline": "They came home to bury mom... and her killer", "vote_count": 195, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430105", "adult": false, "backdrop_path": "/atnxWxIOFLzUfmR8hLuNMObeuWY.jpg", "production_companies": [{"name": "Four Brothers Films", "id": 25710}, {"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2005-08-11", "popularity": 0.868392790600816, "original_title": "Four Brothers", "budget": 45000000, "cast": [{"name": "Mark Wahlberg", "character": "Bobby Mercer", "id": 13240, "credit_id": "52fe449dc3a36847f80a04bf", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Tyrese Gibson", "character": "Angel Mercer", "id": 8169, "credit_id": "52fe449dc3a36847f80a04c3", "cast_id": 3, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 1}, {"name": "Andr\u00e9 Benjamin", "character": "Jeremiah Mercer", "id": 37934, "credit_id": "52fe449ec3a36847f80a04c7", "cast_id": 4, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 2}, {"name": "Garrett Hedlund", "character": "Jack Mercer", "id": 9828, "credit_id": "52fe449ec3a36847f80a04cb", "cast_id": 5, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Lt. Green", "id": 18288, "credit_id": "52fe449ec3a36847f80a04cf", "cast_id": 6, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Josh Charles", "character": "Det. Fowler", "id": 2694, "credit_id": "52fe449ec3a36847f80a04d3", "cast_id": 7, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Sofi", "id": 63522, "credit_id": "52fe449ec3a36847f80a04fb", "cast_id": 14, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Fionnula Flanagan", "character": "Evelyn Mercer", "id": 58068, "credit_id": "52fe449ec3a36847f80a04ff", "cast_id": 15, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 7}, {"name": "Chiwetel Ejiofor", "character": "Victor Sweet", "id": 5294, "credit_id": "52fe449ec3a36847f80a0503", "cast_id": 16, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 8}, {"name": "Taraji P. Henson", "character": "Camille Mercer", "id": 40036, "credit_id": "52fe449ec3a36847f80a0507", "cast_id": 17, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 9}, {"name": "Barry Shabaka Henley", "character": "Councilman Douglas", "id": 8689, "credit_id": "52fe449ec3a36847f80a050b", "cast_id": 18, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 10}, {"name": "Jernard Burks", "character": "Evan", "id": 55275, "credit_id": "52fe449ec3a36847f80a050f", "cast_id": 19, "profile_path": "/uDxTWoUD79M7Hbmawp7ARexw0c1.jpg", "order": 11}, {"name": "Kenneth Welsh", "character": "Robert Bradford", "id": 6074, "credit_id": "52fe449ec3a36847f80a0513", "cast_id": 20, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 12}, {"name": "Tony Nappo", "character": "Charlie", "id": 76528, "credit_id": "52fe449ec3a36847f80a0517", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Victor A. Young", "character": "Father Lamont", "id": 1212933, "credit_id": "52fe449ec3a36847f80a0527", "cast_id": 24, "profile_path": "/1zBPxaO34RLoN2Tj5OFGuJKOl51.jpg", "order": 14}], "directors": [{"name": "John Singleton", "department": "Directing", "job": "Director", "credit_id": "52fe449dc3a36847f80a04bb", "profile_path": "/xmVaXjAAywPh7HIrYjLVsjfKPrV.jpg", "id": 6482}], "vote_average": 6.6, "runtime": 109}, "11459": {"poster_path": "/ddskSEIu1B2PwodOzZNWB5YVQzq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86369815, "overview": "Set in a world where superheroes are commonly known and accepted, young Will Stronghold, the son of the Commander and Jetstream, tries to find a balance between being a normal teenager and an extraordinary being.", "video": false, "id": 11459, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Sky High", "tagline": "Saving The World... One Homework Assignment At A Time.", "vote_count": 138, "homepage": "http://disney.go.com/disneypictures/skyhigh/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405325", "adult": false, "backdrop_path": "/quMeyMOwKUQZXrhtnlDkseaBFyr.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Buena Vista", "id": 32}], "release_date": "2005-07-29", "popularity": 0.824514827422429, "original_title": "Sky High", "budget": 35000000, "cast": [{"name": "Michael Angarano", "character": "Will Stronghold", "id": 11665, "credit_id": "52fe44449251416c7502eab9", "cast_id": 1, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 0}, {"name": "Kurt Russell", "character": "Steve Stronghold / The Commander", "id": 6856, "credit_id": "52fe44449251416c7502eabd", "cast_id": 2, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Josie Stronghold / Jetstream", "id": 11164, "credit_id": "52fe44449251416c7502eac1", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Danielle Panabaker", "character": "Layla Williams", "id": 31838, "credit_id": "52fe44449251416c7502eac5", "cast_id": 4, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 3}, {"name": "Kevin Heffernan", "character": "Ron Wilson, Bus Driver", "id": 56251, "credit_id": "52fe44449251416c7502eb15", "cast_id": 19, "profile_path": "/afuCF27oMcjV8wNf6YIPXl3XZPE.jpg", "order": 4}, {"name": "Dee Jay Daniels", "character": "Ethan", "id": 69507, "credit_id": "52fe44449251416c7502eac9", "cast_id": 5, "profile_path": null, "order": 5}, {"name": "Kelly Vitz", "character": "Magenta", "id": 69508, "credit_id": "52fe44449251416c7502eacd", "cast_id": 6, "profile_path": "/vR0GGeWnB0Vb1Ite5YqDn6YC0lN.jpg", "order": 6}, {"name": "Mary Elizabeth Winstead", "character": "Gwen Grayson / Royal Pain", "id": 17628, "credit_id": "52fe44449251416c7502eb11", "cast_id": 18, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 7}, {"name": "Lynda Carter", "character": "Principal Powers", "id": 44935, "credit_id": "52fe44449251416c7502eb19", "cast_id": 20, "profile_path": "/lC89jUGkfwEm9bD732uJ2nHzavl.jpg", "order": 8}, {"name": "Bruce Campbell", "character": "Coach Boomer", "id": 11357, "credit_id": "52fe44449251416c7502ead1", "cast_id": 7, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 9}, {"name": "Steven Strait", "character": "Warren Peace", "id": 54815, "credit_id": "52fe44449251416c7502eb1d", "cast_id": 21, "profile_path": "/yL9IKHHVaDupVstNLwWWDpdhW8k.jpg", "order": 10}, {"name": "Cloris Leachman", "character": "Nurse Spex", "id": 9599, "credit_id": "52fe44449251416c7502eb21", "cast_id": 22, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 11}, {"name": "Jim Rash", "character": "Mr. Grayson / Stitches", "id": 161932, "credit_id": "52fe44449251416c7502eb25", "cast_id": 23, "profile_path": "/eWBHlcgATCzoAqNDI7xiAPi7g1d.jpg", "order": 12}, {"name": "Dave Foley", "character": "Mr. Boy", "id": 21290, "credit_id": "52fe44449251416c7502eb29", "cast_id": 24, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 13}, {"name": "Kevin McDonald", "character": "Mr. Medulla", "id": 58955, "credit_id": "52fe44449251416c7502eb2d", "cast_id": 25, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 14}, {"name": "Tom Kenny", "character": "Mr. Timmerman", "id": 78798, "credit_id": "52fe44449251416c7502eb31", "cast_id": 26, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 15}, {"name": "Patrick Warburton", "character": "Royal Pain (voice)", "id": 9657, "credit_id": "52fe44449251416c7502eb35", "cast_id": 27, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 16}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe44449251416c7502ead7", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.8, "runtime": 100}, "11460": {"poster_path": "/tc83C6riJLNbZhfYgzpBd93oRp3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57891803, "overview": "After attending the funeral of her grandmother in Dallas, the Lux Atlantic Hotel manager Lisa is waiting for a flight to Miami. Due to the bad weather and consequent flight delay, she meets in the airport bar Jack Rippner, who is also in the waiting list. They sit together in the plane, and Jack reveals that he wants Lisa to change the room in Lux of an important American politician to facilitate a terrorist attempt against him. Otherwise, Lisa's father will be killed by a hit man. Lisa has to decide what to do with the menacing man at her side.", "video": false, "id": 11460, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Red Eye", "tagline": "Fear takes flight.", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421239", "adult": false, "backdrop_path": "/zgqm6rDn2CMVGplLieJ1XCneKCm.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "BenderSpink", "id": 6363}, {"name": "Craven-Maddalena Films", "id": 1600}], "release_date": "2005-08-04", "popularity": 0.618893302796747, "original_title": "Red Eye", "budget": 26000000, "cast": [{"name": "Rachel McAdams", "character": "Lisa Reisert", "id": 53714, "credit_id": "52fe44449251416c7502eb77", "cast_id": 1, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Cillian Murphy", "character": "Jackson Rippner", "id": 2037, "credit_id": "52fe44449251416c7502eb7b", "cast_id": 2, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 1}, {"name": "Brian Cox", "character": "Joe Reisert", "id": 1248, "credit_id": "52fe44449251416c7502eb7f", "cast_id": 3, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 2}, {"name": "Jayma Mays", "character": "Cynthia", "id": 34195, "credit_id": "52fe44449251416c7502eb83", "cast_id": 4, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 3}, {"name": "Laura Johnson", "character": "Blonde Woman", "id": 42186, "credit_id": "52fe44449251416c7502eb87", "cast_id": 5, "profile_path": "/cJouqkND1HvXASNaOi0brmDjGI9.jpg", "order": 4}, {"name": "Max Kasch", "character": "Headphone Kid", "id": 52939, "credit_id": "52fe44449251416c7502ebd3", "cast_id": 18, "profile_path": "/4NzNJEJ6NWU40GKO6BS1Ne6ECNL.jpg", "order": 5}, {"name": "Angela Paton", "character": "Nice Lady", "id": 1537, "credit_id": "52fe44449251416c7502ebd7", "cast_id": 19, "profile_path": "/eJZpJyEuMT4mQ8d8tbU0addZ1kD.jpg", "order": 6}, {"name": "Suzie Plakson", "character": "Senior Flight Attendant", "id": 8266, "credit_id": "52fe44449251416c7502ebdb", "cast_id": 20, "profile_path": "/ngAW6Wue6z5LtGN00C6dwGfNm4V.jpg", "order": 7}, {"name": "Jack Scalia", "character": "Charles Keefe", "id": 58792, "credit_id": "52fe44449251416c7502ebdf", "cast_id": 21, "profile_path": "/uOKlOhx0OplrqQ8g7DIRLbxlGXo.jpg", "order": 8}, {"name": "Robert Pine", "character": "Bob Taylor", "id": 74573, "credit_id": "52fe44449251416c7502ebe3", "cast_id": 22, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 9}, {"name": "Carl Gilliard", "character": "Taxi Driver", "id": 155308, "credit_id": "52fe44449251416c7502ebe7", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Mary Kathleen Gordon", "character": "Airline Representative", "id": 562701, "credit_id": "52fe44449251416c7502ebeb", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Loren Lester", "character": "Irate Passenger", "id": 34979, "credit_id": "52fe44449251416c7502ebef", "cast_id": 25, "profile_path": "/9X2b77dNQhfZmpdgnK9H5KzQLf1.jpg", "order": 12}, {"name": "Philip Pavel", "character": "Dallas Ticket Agent", "id": 20754, "credit_id": "52fe44449251416c7502ebf3", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Amber Mead", "character": "Dallas Ticket Agent", "id": 205394, "credit_id": "52fe44449251416c7502ebf7", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Dey Young", "character": "Dallas Gate Agent", "id": 39568, "credit_id": "52fe44449251416c7502ebfb", "cast_id": 28, "profile_path": "/lre6y4tsk304L5C72MFph1glCYl.jpg", "order": 15}, {"name": "Brittany Oaks", "character": "Rebecca", "id": 982705, "credit_id": "52fe44449251416c7502ebff", "cast_id": 29, "profile_path": "/y2qMh6T6dqTQ1Icga2H6zLr61sr.jpg", "order": 16}, {"name": "Jeanine Jackson", "character": "Passenger with Iced Mocha", "id": 152355, "credit_id": "52fe44449251416c7502ec03", "cast_id": 30, "profile_path": "/aTPsYoKNIZFZKche4OGOPoyd639.jpg", "order": 17}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe44449251416c7502eb8d", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.1, "runtime": 85}, "11467": {"poster_path": "/AgaHBiG3Drkl7lWCjtrYj1oLpKY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the midst of a nasty public breakup of married movie stars, a studio publicist scrambles to put a cap on the escalating situation as the couple's latest film has found it's only print kidnapped by the director.", "video": false, "id": 11467, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "America's Sweethearts", "tagline": "Hollywood's hottest couple just split up. It'll take more than special effects to reunite them.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265029", "adult": false, "backdrop_path": "/lcpb3uG2xgB57QeITb0HDKdHaJM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Roth-Arnold Productions", "id": 1560}], "release_date": "2001-07-17", "popularity": 0.321425651357402, "original_title": "America's Sweethearts", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Kathleen \"Kiki\" Harrison", "id": 1204, "credit_id": "52fe44469251416c7502ef49", "cast_id": 10, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Billy Crystal", "character": "Lee Phillips", "id": 7904, "credit_id": "52fe44469251416c7502ef4d", "cast_id": 11, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Gwen Harrison", "id": 1922, "credit_id": "52fe44469251416c7502ef51", "cast_id": 12, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "John Cusack", "character": "Eddie Thomas", "id": 3036, "credit_id": "52fe44469251416c7502ef55", "cast_id": 13, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 3}, {"name": "Hank Azaria", "character": "Hector Gorgonzolas", "id": 5587, "credit_id": "52fe44469251416c7502ef59", "cast_id": 14, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Stanley Tucci", "character": "Dave Kingman", "id": 2283, "credit_id": "52fe44469251416c7502ef5d", "cast_id": 15, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 5}, {"name": "Christopher Walken", "character": "Hal Weidmann", "id": 4690, "credit_id": "52fe44469251416c7502ef61", "cast_id": 16, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 6}, {"name": "Alan Arkin", "character": "Wellness Guide", "id": 1903, "credit_id": "52fe44469251416c7502ef65", "cast_id": 17, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 7}, {"name": "Seth Green", "character": "Danny Wax", "id": 13922, "credit_id": "52fe44469251416c7502ef69", "cast_id": 18, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 8}, {"name": "Rainn Wilson", "character": "Dave O'Hanlon", "id": 11678, "credit_id": "52fe44469251416c7502ef6d", "cast_id": 19, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 9}, {"name": "Eric Balfour", "character": "Security Guard", "id": 34489, "credit_id": "52fe44469251416c7502ef71", "cast_id": 20, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 10}, {"name": "Scot Zeller", "character": "Davis", "id": 149740, "credit_id": "52fe44469251416c7502ef75", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Larry King", "character": "Himself", "id": 44127, "credit_id": "52fe44469251416c7502ef79", "cast_id": 22, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 12}, {"name": "Steve Pink", "character": "Limo Driver", "id": 3227, "credit_id": "52fe44469251416c7502ef7d", "cast_id": 23, "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "order": 13}, {"name": "Eric Balfour", "character": "Security Guard", "id": 34489, "credit_id": "52fe44469251416c7502ef81", "cast_id": 24, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 14}, {"name": "Marty Belafsky", "character": "Security Guard", "id": 60634, "credit_id": "52fe44469251416c7502ef85", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Keri Lynn Pratt", "character": "Leaf Weidmann", "id": 77803, "credit_id": "52fe44469251416c7502ef89", "cast_id": 26, "profile_path": "/qLrUKUM4GEzCuq5VTUFQNaJOB3Z.jpg", "order": 16}, {"name": "Maria Canals-Barrera", "character": "Adinah", "id": 85759, "credit_id": "52fe44469251416c7502ef8d", "cast_id": 27, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 17}], "directors": [{"name": "Joe Roth", "department": "Directing", "job": "Director", "credit_id": "52fe44469251416c7502ef15", "profile_path": "/yJlpAAKxe0FFpzPaICtudNVPHSA.jpg", "id": 18311}], "vote_average": 5.5, "runtime": 102}, "68812": {"poster_path": "/wX1DKsaCm8IjGQAIFuAyM6yvCWI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1969193, "overview": "The true story of Richard Kuklinski, the notorious contract killer and family man.", "video": false, "id": 68812, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Iceman", "tagline": "Loving husband. Devoted father. Ruthless killer.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1491044", "adult": false, "backdrop_path": "/cR7lFfi0swhnfx4bZADohHVW7wh.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Bleiberg Entertainment", "id": 1872}], "release_date": "2012-09-01", "popularity": 0.932841263695291, "original_title": "The Iceman", "budget": 20000000, "cast": [{"name": "Michael Shannon", "character": "Richard Kuklinski", "id": 335, "credit_id": "52fe47a7c3a368484e0d2a5d", "cast_id": 5, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Deborah Kuklinski", "id": 1920, "credit_id": "52fe47a7c3a368484e0d2a61", "cast_id": 6, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Ray Liotta", "character": "Roy Demeo", "id": 11477, "credit_id": "52fe47a7c3a368484e0d2a69", "cast_id": 8, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 2}, {"name": "Chris Evans", "character": "Robert Pronge", "id": 16828, "credit_id": "52fe47a7c3a368484e0d2a65", "cast_id": 7, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 3}, {"name": "David Schwimmer", "character": "Josh Rosenthal", "id": 14409, "credit_id": "52fe47a7c3a368484e0d2a6d", "cast_id": 9, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 4}, {"name": "James Franco", "character": "Marty Freeman", "id": 17051, "credit_id": "52fe47a7c3a368484e0d2a59", "cast_id": 3, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 5}, {"name": "Stephen Dorff", "character": "Joey Kuklinski", "id": 10822, "credit_id": "52fe47a7c3a368484e0d2a71", "cast_id": 10, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 6}, {"name": "Robert Davi", "character": "Leo Marks", "id": 2055, "credit_id": "52fe47a7c3a368484e0d2a75", "cast_id": 11, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 7}, {"name": "John Ventimiglia", "character": "Mickey Scicoli", "id": 87707, "credit_id": "52fe47a7c3a368484e0d2a79", "cast_id": 12, "profile_path": "/ws3R1TndkITQMGBariX3UaUjqXP.jpg", "order": 8}, {"name": "Danny A. Abeckaser", "character": "Dino Lapron (as Danny Abeckaser)", "id": 131946, "credit_id": "547f22c792514124ad0015e6", "cast_id": 21, "profile_path": "/ryDEgy5y8YRfwoyiSGJxtc7ZLAy.jpg", "order": 9}, {"name": "Ryan O'Nan", "character": "Terry Franzo", "id": 142192, "credit_id": "547f22db92514124bb001671", "cast_id": 22, "profile_path": "/sXZOZiVoAm4kKR437AoLECfxBNi.jpg", "order": 10}, {"name": "McKaley Miller", "character": "Anabel", "id": 1355176, "credit_id": "547f22ebc3a368395e001758", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Hector Hank", "character": "Tender Bar Earl", "id": 136139, "credit_id": "547f235092514124bf0014da", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Zoran Radanovich", "character": "Jimmy", "id": 945442, "credit_id": "547f2363c3a36839650015af", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Shira Vilensky", "character": "Coffee Shop Waitress", "id": 1245982, "credit_id": "547f2371c3a368396f0017e1", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Kelly Lind", "character": "Hospital Nurse", "id": 1393517, "credit_id": "547f238dc3a368396f0017e7", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "John P. Fertitta", "character": "Uncle Bill (as John Fertitta)", "id": 1190851, "credit_id": "547f239d92514124b6001711", "cast_id": 28, "profile_path": "/ym9cir7KWJcdq8otWzaPC8bg10l.jpg", "order": 16}, {"name": "Erin Cummings", "character": "Ellen", "id": 113734, "credit_id": "547f23a992514124b30015e4", "cast_id": 29, "profile_path": "/76bNbceGypp8j8OEtVFOFraPtnm.jpg", "order": 17}, {"name": "Jimmy Lee Jr.", "character": "Homeless Man", "id": 1393519, "credit_id": "547f23c192514124ad001605", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Johnny Martin", "character": "Mareilli", "id": 63423, "credit_id": "547f23d192514124bb00168f", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Nick Gomez", "character": "Alvaro", "id": 84760, "credit_id": "547f23df92514124b900158b", "cast_id": 32, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 20}, {"name": "Vincent Fuentes", "character": "JC", "id": 1393520, "credit_id": "547f23edc3a36839610012b4", "cast_id": 33, "profile_path": "/aVkkvyAEON8lZuFhwDLAYRHPJp5.jpg", "order": 21}, {"name": "Brian Kinney", "character": "Slick BMW Guy", "id": 1393521, "credit_id": "547f23f992514124b9001590", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Ashlynn Ross", "character": "Alex", "id": 978996, "credit_id": "547f240692514124b9001596", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Weronika Rosati", "character": "Livi", "id": 235492, "credit_id": "547f241bc3a3683968001476", "cast_id": 36, "profile_path": "/zhjhBfASgzV7vEuvE2ldjyCc0hW.jpg", "order": 24}, {"name": "Christa Campbell", "character": "Adele", "id": 85178, "credit_id": "547f2429c3a368395e00176e", "cast_id": 37, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 25}, {"name": "Alexandra Doke", "character": "Park Little Girl", "id": 1123267, "credit_id": "547f2436c3a368396f001801", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Bill Martin Williams", "character": "Club Maitre D'", "id": 1271773, "credit_id": "547f244492514124ad001612", "cast_id": 39, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 27}, {"name": "Lindsay Clift", "character": "Club USA Dance Partner (as Lindsay Erin Clift)", "id": 1393522, "credit_id": "547f2451c3a368396800147c", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Katarzyna Wolejnio", "character": "Romy", "id": 90113, "credit_id": "547f246492514124ad001614", "cast_id": 41, "profile_path": "/fvPALtfjqN7FbCdpbm4IbrhoADw.jpg", "order": 29}, {"name": "Jay Giannone", "character": "Dominick Provenzano", "id": 170240, "credit_id": "547f247192514124aa00176e", "cast_id": 42, "profile_path": "/5T3PAzHKZudfot8FNY9hXqAjYgb.jpg", "order": 30}, {"name": "Freddy Bosche", "character": "Detective Beaumont", "id": 1393524, "credit_id": "547f247fc3a368396f001809", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Tim Bell", "character": "Cop", "id": 186922, "credit_id": "547f248cc3a368396f001813", "cast_id": 44, "profile_path": "/vLVgOTnJnigcPkm8kYOL6JAv2B9.jpg", "order": 32}, {"name": "Garrett Kruithof", "character": "Stanley Kuklinski", "id": 1272847, "credit_id": "547f249d92514124af0014bf", "cast_id": 45, "profile_path": null, "order": 33}, {"name": "Ray Gaspard", "character": "Dennis", "id": 1346619, "credit_id": "547f24a8c3a368396c001784", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Juan Michael Konshuk-Mas", "character": "Mr. Freezy's Son", "id": 1393525, "credit_id": "547f24b6c3a368396f00181e", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Ehud Bleiberg", "character": "Trial Judge", "id": 36999, "credit_id": "547f24c292514124ad001619", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Jonathan Vender", "character": "Trial Judge (voice)", "id": 1393526, "credit_id": "547f24cf92514124b6001736", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "Tommy Alastra", "character": "", "id": 1393527, "credit_id": "547f24dac3a36839610012ca", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Tommy Alastra", "character": "Documentary Interviewer (voice)", "id": 1393527, "credit_id": "547f24e4c3a368395c0018e1", "cast_id": 51, "profile_path": null, "order": 39}], "directors": [{"name": "Ariel Vromen", "department": "Directing", "job": "Director", "credit_id": "52fe47a7c3a368484e0d2a4f", "profile_path": null, "id": 81476}], "vote_average": 6.4, "runtime": 105}, "11469": {"poster_path": "/xJnGEOnYUelD6wLgpQfNg5tq8jV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Martin Lawrence plays Jamal, an employee in Medieval World amusement park. After sustaining a blow to the head, he awakens to find himself in 14th century England.", "video": false, "id": 11469, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Black Knight", "tagline": "It's only a flesh wound!", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265087", "adult": false, "backdrop_path": "/7cRdp2KZWz1RZLpP603k4y3vSQq.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2001-11-21", "popularity": 0.526090580394564, "original_title": "Black Knight", "budget": 0, "cast": [{"name": "Martin Lawrence", "character": "Skywalker", "id": 78029, "credit_id": "52fe44469251416c7502f03f", "cast_id": 1, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Jamal Walker", "id": 78029, "credit_id": "52fe44469251416c7502f043", "cast_id": 2, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "Marsha Thomason", "character": "Victoria the Chambermaid / Nicole", "id": 36219, "credit_id": "52fe44469251416c7502f047", "cast_id": 3, "profile_path": "/idSdwvSs3f6U8WjjccVhvrxOY7l.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Sir Knolte of Marlborough", "id": 207, "credit_id": "52fe44469251416c7502f04b", "cast_id": 4, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Vincent Regan", "character": "Percival, Leo's Chief Henchman", "id": 9831, "credit_id": "52fe44469251416c7502f04f", "cast_id": 5, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 4}, {"name": "Daryl Mitchell", "character": "Steve", "id": 15028, "credit_id": "52fe44469251416c7502f053", "cast_id": 6, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 5}, {"name": "Michael Countryman", "character": "Phillip, Leo's Chamberlain", "id": 121939, "credit_id": "542de1730e0a261fe2000a6f", "cast_id": 13, "profile_path": "/dkjaMJzyHUiXHBGJM1jYE4k9cMg.jpg", "order": 6}, {"name": "Kevin Conway", "character": "King Leo", "id": 27116, "credit_id": "542de1e1c3a36859de000a91", "cast_id": 14, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 7}, {"name": "Kevin Conway", "character": "Derek", "id": 27116, "credit_id": "542de3710e0a261fdc000a4a", "cast_id": 15, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 8}], "directors": [{"name": "Gil Junger", "department": "Directing", "job": "Director", "credit_id": "52fe44469251416c7502f059", "profile_path": null, "id": 40243}], "vote_average": 5.5, "runtime": 95}, "11470": {"poster_path": "/4RuaJhF4Gw0W1pdpIJi91ZBe17.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16000000, "overview": "In the year 2455, Old Earth is now a contaminated planet abandoned for centuries -- a brown world of violent storms, toxic landmasses and poisonous seas. Yet humans have returned to the deadly place that they once fled, not to live, but to research the ancient, rusting artifacts of the long-gone civilizations. But it's not the harmful environment that could prove fatal to the intrepid, young explorers who have just landed on Old Earth. For them, it's Friday the 13th, and Jason lives!", "video": false, "id": 11470, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Jason X", "tagline": "Evil has an upgrade.", "vote_count": 56, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0211443", "adult": false, "backdrop_path": "/4ZllCdF83k95CJUzQ4f6eEoxSL0.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Crystal Lake Entertainment", "id": 21783}, {"name": "Sean S. Cunningham Films", "id": 17611}], "release_date": "2001-07-24", "popularity": 0.351501425626691, "original_title": "Jason X", "budget": 11000000, "cast": [{"name": "Kane Hodder", "character": "Jason Voorhees / Uber-Jason", "id": 62596, "credit_id": "52fe44469251416c7502f09f", "cast_id": 1, "profile_path": "/1bTc6ACp6bLCBhhfNUZyqwnZ5fY.jpg", "order": 0}, {"name": "Lexa Doig", "character": "Rowan", "id": 69574, "credit_id": "52fe44469251416c7502f0a3", "cast_id": 3, "profile_path": "/oLhVcnb2iVXmE25nCXBlDwdfKs4.jpg", "order": 1}, {"name": "Chuck Campbell", "character": "Tsunaron", "id": 69575, "credit_id": "52fe44469251416c7502f0a7", "cast_id": 4, "profile_path": "/yiZPuDleA8oV7EF4wuDolWERY1X.jpg", "order": 2}, {"name": "Lisa Ryder", "character": "Kay-Em 14", "id": 69576, "credit_id": "52fe44469251416c7502f0ab", "cast_id": 5, "profile_path": "/j1cMrorXonNR1gKqQrDaxcLOJyX.jpg", "order": 3}, {"name": "David Cronenberg", "character": "Dr. Wimmer", "id": 224, "credit_id": "52fe44479251416c7502f0d3", "cast_id": 12, "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "order": 4}, {"name": "Markus Parilo", "character": "Sgt. Marcus (as Marcus Parilo)", "id": 180916, "credit_id": "52fe44479251416c7502f0d7", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Jonathan Potts", "character": "Professor Lowe", "id": 23534, "credit_id": "52fe44479251416c7502f0db", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Dov Tiefenbach", "character": "Azrael", "id": 44176, "credit_id": "52fe44479251416c7502f0df", "cast_id": 15, "profile_path": "/duaQFXOy3WcUrE20J5f75tH1Hb.jpg", "order": 7}, {"name": "Melyssa Ade", "character": "Janessa", "id": 85926, "credit_id": "52fe44479251416c7502f0e3", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Todd Farmer", "character": "Dallas", "id": 61117, "credit_id": "52fe44479251416c7502f0e7", "cast_id": 17, "profile_path": "/xMd0pkgpgjfLwKX01mXpW68eYAu.jpg", "order": 9}], "directors": [{"name": "James Isaac", "department": "Directing", "job": "Director", "credit_id": "52fe44479251416c7502f0b1", "profile_path": "/j1j2q5iVzPptPNr1p9NluULP89L.jpg", "id": 69579}], "vote_average": 4.5, "runtime": 91}, "68817": {"poster_path": "/kDpo6G7rYRHQ1bFhyLiJEW9ESPO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "City kid Ren MacCormack moves to a small town where rock 'n' roll and dancing have been banned, and his rebellious spirit shakes up the populace.", "video": false, "id": 68817, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Footloose", "tagline": "There comes a time to cut loose.", "vote_count": 83, "homepage": "http://www.footloosemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1068242", "adult": false, "backdrop_path": "/cH19PJpfgxpVDr4UYOH3ARtgb7z.jpg", "production_companies": [{"name": "Spyglass Entertainment", "id": 158}, {"name": "MTV Films", "id": 746}], "release_date": "2011-10-06", "popularity": 0.422471628714508, "original_title": "Footloose", "budget": 25000000, "cast": [{"name": "Kenny Wormald", "character": "Ren MacCormack", "id": 83276, "credit_id": "52fe47a8c3a368484e0d2d71", "cast_id": 3, "profile_path": "/e0vpQOl6WgBlJqXzWpYbS5twB6B.jpg", "order": 0}, {"name": "Julianne Hough", "character": "Ariel Moore", "id": 143240, "credit_id": "52fe47a8c3a368484e0d2d75", "cast_id": 4, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 1}, {"name": "Dennis Quaid", "character": "Rev. Shaw Moore", "id": 6065, "credit_id": "52fe47a8c3a368484e0d2d79", "cast_id": 5, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 2}, {"name": "Andie MacDowell", "character": "Vi Moore", "id": 1533, "credit_id": "52fe47a8c3a368484e0d2d81", "cast_id": 7, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 3}, {"name": "Miles Teller", "character": "Willard", "id": 996701, "credit_id": "52fe47a8c3a368484e0d2d85", "cast_id": 8, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 4}, {"name": "Ray McKinnon", "character": "Wes Warnicker", "id": 1472, "credit_id": "52fe47a8c3a368484e0d2d89", "cast_id": 9, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 5}, {"name": "Patrick John Flueger", "character": "Chuck Cranston (as Patrick John Flueger)", "id": 115730, "credit_id": "52fe47a8c3a368484e0d2d8d", "cast_id": 10, "profile_path": "/xMGamAcbjj3m8dvl3do0yQNYXg7.jpg", "order": 6}, {"name": "Kim Dickens", "character": "Lulu Warnicker", "id": 21165, "credit_id": "52fe47a8c3a368484e0d2d91", "cast_id": 11, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 7}, {"name": "Ziah Colon", "character": "Rusty Rodriguez", "id": 553878, "credit_id": "52fe47a8c3a368484e0d2d7d", "cast_id": 6, "profile_path": "/oPctkBEYe4pVL6d7soRRwzf4OL9.jpg", "order": 8}, {"name": "Ser'Darius Blain", "character": "Woody", "id": 1160181, "credit_id": "52fe47a8c3a368484e0d2d9d", "cast_id": 14, "profile_path": "/qpHplsNLribEDcrnHzC8EvQ8FSz.jpg", "order": 9}, {"name": "L. Warren Young", "character": "Andy Beamis", "id": 80618, "credit_id": "52fe47a8c3a368484e0d2d95", "cast_id": 12, "profile_path": "/mS5jEWRaWXJfzDDjPuVzs4HcYGm.jpg", "order": 10}, {"name": "Brett Rice", "character": "Roger Dunbar", "id": 29934, "credit_id": "52fe47a8c3a368484e0d2da1", "cast_id": 15, "profile_path": "/1gWgDmlT9WCIPTDzkYQSs1NIt7F.jpg", "order": 11}, {"name": "Maggie Elizabeth Jones", "character": "Amy Warnicker (as Maggie Jones)", "id": 1046348, "credit_id": "52fe47a8c3a368484e0d2d99", "cast_id": 13, "profile_path": "/eATjSnlMQrZ15JSBNSI7jjiWQ2f.jpg", "order": 12}, {"name": "Mary-Charles Jones", "character": "Sarah Warnicker", "id": 1046352, "credit_id": "52fe47a8c3a368484e0d2da5", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Enisha Brewster", "character": "Etta", "id": 1114368, "credit_id": "52fe47a8c3a368484e0d2da9", "cast_id": 17, "profile_path": "/iz1xZgcmoAaA9YsFv1LqTVciCRk.jpg", "order": 14}, {"name": "Josh Warren", "character": "Rich", "id": 1181557, "credit_id": "52fe47a8c3a368484e0d2dad", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Corey Flaspoler", "character": "Russell", "id": 963451, "credit_id": "52fe47a8c3a368484e0d2db1", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Anessa Ramsey", "character": "Caroline", "id": 74131, "credit_id": "52fe47a8c3a368484e0d2db5", "cast_id": 20, "profile_path": "/4spbX2OQTg39uICf5nBBQKIo4ko.jpg", "order": 17}, {"name": "Jason Ferguson", "character": "Travis", "id": 1290554, "credit_id": "52fe47a8c3a368484e0d2db9", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Frank Hoyt Taylor", "character": "Mr. Parker", "id": 77522, "credit_id": "52fe47a8c3a368484e0d2dbd", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Jayson Smith", "character": "Officer Herb", "id": 1290555, "credit_id": "52fe47a8c3a368484e0d2dc1", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Claude Phillips", "character": "Claude", "id": 53264, "credit_id": "52fe47a8c3a368484e0d2dc5", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Clay Chappell", "character": "Councilperson", "id": 1190890, "credit_id": "52fe47a8c3a368484e0d2dc9", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Tony Vaughn", "character": "Councilperson", "id": 114850, "credit_id": "52fe47a8c3a368484e0d2dcd", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Tony Vaughn", "character": "Councilperson", "id": 114850, "credit_id": "52fe47a8c3a368484e0d2dd1", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Daniel Burnley", "character": "Councilperson", "id": 225363, "credit_id": "52fe47a8c3a368484e0d2dd5", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Jack Davidson", "character": "Councilperson", "id": 1290557, "credit_id": "52fe47a8c3a368484e0d2dd9", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Alisa Pettit", "character": "Councilperson", "id": 1290558, "credit_id": "52fe47a8c3a368484e0d2ddd", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Tracy Goode", "character": "Judge", "id": 135800, "credit_id": "52fe47a8c3a368484e0d2de1", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Clayton Landey", "character": "Coach Guerntz", "id": 101013, "credit_id": "52fe47a8c3a368484e0d2de5", "cast_id": 32, "profile_path": "/4e1GziFKqLh5V5tEnqwT1NvMMvL.jpg", "order": 29}, {"name": "John Still", "character": "Track Official", "id": 1009469, "credit_id": "52fe47a8c3a368484e0d2de9", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "Brian Durkin", "character": "Big Cowboy", "id": 190288, "credit_id": "52fe47a8c3a368484e0d2ded", "cast_id": 34, "profile_path": null, "order": 31}, {"name": "Amber Wallace", "character": "Instructor", "id": 99207, "credit_id": "52fe47a8c3a368484e0d2df1", "cast_id": 35, "profile_path": null, "order": 32}, {"name": "Sandra Ellis Lafferty", "character": "Mrs. Allyson (as Sandra Lafferty)", "id": 427, "credit_id": "52fe47a8c3a368484e0d2df5", "cast_id": 36, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 33}, {"name": "D. Dylan Schettina", "character": "Drive-In Bus Boy", "id": 1290559, "credit_id": "52fe47a8c3a368484e0d2df9", "cast_id": 37, "profile_path": null, "order": 34}, {"name": "Blair Jasin", "character": "Bobby", "id": 1003792, "credit_id": "52fe47a8c3a368484e0d2dfd", "cast_id": 38, "profile_path": null, "order": 35}, {"name": "Jasmine Cook", "character": "Car Accident Victim", "id": 1290560, "credit_id": "52fe47a8c3a368484e0d2e01", "cast_id": 39, "profile_path": null, "order": 36}, {"name": "Reece Thomas", "character": "Car Accident Victim", "id": 1290561, "credit_id": "52fe47a8c3a368484e0d2e05", "cast_id": 40, "profile_path": null, "order": 37}, {"name": "Ivey Lowe", "character": "Car Accident Victim", "id": 1290562, "credit_id": "52fe47a8c3a368484e0d2e09", "cast_id": 41, "profile_path": null, "order": 38}, {"name": "Anna Marie Dobbins", "character": "Car Accident Victim", "id": 1290563, "credit_id": "52fe47a8c3a368484e0d2e0d", "cast_id": 42, "profile_path": null, "order": 39}, {"name": "Kevin Renard Fisher", "character": "Woody's Cousin", "id": 1290564, "credit_id": "52fe47a8c3a368484e0d2e11", "cast_id": 43, "profile_path": null, "order": 40}, {"name": "Andrew Ruark", "character": "Cotton Gin Worker", "id": 1290565, "credit_id": "52fe47a8c3a368484e0d2e15", "cast_id": 44, "profile_path": null, "order": 41}, {"name": "Travis Young", "character": "Big Bubba", "id": 1290566, "credit_id": "52fe47a8c3a368484e0d2e19", "cast_id": 45, "profile_path": null, "order": 42}, {"name": "Jamal Sims", "character": "Kegger D. J.", "id": 29215, "credit_id": "52fe47a8c3a368484e0d2e1d", "cast_id": 46, "profile_path": "/9GagwrpYPzSgEPppIEcMFugsU5I.jpg", "order": 43}, {"name": "Kyle Wayne Cordova", "character": "Dancer", "id": 1290567, "credit_id": "52fe47a8c3a368484e0d2e21", "cast_id": 47, "profile_path": null, "order": 44}, {"name": "Alvester Martin", "character": "Dancer", "id": 1290568, "credit_id": "52fe47a8c3a368484e0d2e25", "cast_id": 48, "profile_path": null, "order": 45}, {"name": "Madison Benson", "character": "Kegger Dancer", "id": 1290569, "credit_id": "52fe47a8c3a368484e0d2e29", "cast_id": 49, "profile_path": null, "order": 46}, {"name": "Jonathan Sylvan Carey", "character": "Kegger Dancer", "id": 1290570, "credit_id": "52fe47a8c3a368484e0d2e2d", "cast_id": 50, "profile_path": null, "order": 47}, {"name": "Craig Brewer", "character": "Kegger Dancer", "id": 53267, "credit_id": "52fe47a8c3a368484e0d2e31", "cast_id": 51, "profile_path": "/1F5Sjw9oAkKQOLaD2Bs3vrsIlMg.jpg", "order": 48}, {"name": "Bubba Carr", "character": "Kegger Dancer (as Charles Carr)", "id": 1050312, "credit_id": "52fe47a8c3a368484e0d2e35", "cast_id": 52, "profile_path": null, "order": 49}, {"name": "Sora Connor", "character": "Kegger Dancer (as Sarah Connor)", "id": 1290572, "credit_id": "52fe47a8c3a368484e0d2e39", "cast_id": 53, "profile_path": null, "order": 50}, {"name": "Kasey Davage", "character": "Kegger Dancer", "id": 1290573, "credit_id": "52fe47a8c3a368484e0d2e3d", "cast_id": 54, "profile_path": null, "order": 51}, {"name": "Chynna Dulac", "character": "Kegger Dancer", "id": 1290574, "credit_id": "52fe47a8c3a368484e0d2e41", "cast_id": 55, "profile_path": null, "order": 52}, {"name": "Brett Frost", "character": "Kegger Dancer", "id": 1290575, "credit_id": "52fe47a8c3a368484e0d2e45", "cast_id": 56, "profile_path": null, "order": 53}, {"name": "Terrence Gilbert Green", "character": "Kegger Dancer", "id": 1290576, "credit_id": "52fe47a8c3a368484e0d2e49", "cast_id": 57, "profile_path": null, "order": 54}, {"name": "Ashlyn Henson", "character": "Kegger Dancer", "id": 1290577, "credit_id": "52fe47a8c3a368484e0d2e4d", "cast_id": 58, "profile_path": null, "order": 55}, {"name": "Cicely Kelley", "character": "Kegger Dancer", "id": 1290578, "credit_id": "52fe47a8c3a368484e0d2e51", "cast_id": 59, "profile_path": null, "order": 56}, {"name": "Elysandra Quinones", "character": "Kegger Dancer", "id": 1290579, "credit_id": "52fe47a8c3a368484e0d2e55", "cast_id": 60, "profile_path": null, "order": 57}, {"name": "Brandon Sauve", "character": "Kegger Dancer", "id": 1290580, "credit_id": "52fe47a8c3a368484e0d2e59", "cast_id": 61, "profile_path": null, "order": 58}, {"name": "Allan Skeene, Jr.", "character": "Kegger Dancer", "id": 1290581, "credit_id": "52fe47a8c3a368484e0d2e5d", "cast_id": 62, "profile_path": null, "order": 59}, {"name": "Katherine Slatery", "character": "Kegger Dancer", "id": 1290582, "credit_id": "52fe47a8c3a368484e0d2e61", "cast_id": 63, "profile_path": null, "order": 60}, {"name": "Amanda Topper", "character": "Kegger Dancer", "id": 1290583, "credit_id": "52fe47a8c3a368484e0d2e65", "cast_id": 64, "profile_path": null, "order": 61}, {"name": "Jasmine Badie", "character": "Drive-In Grill Dancer", "id": 1290584, "credit_id": "52fe47a8c3a368484e0d2e69", "cast_id": 65, "profile_path": null, "order": 62}, {"name": "Sean Bankhead", "character": "Drive-In Grill Dancer", "id": 1290585, "credit_id": "52fe47a8c3a368484e0d2e6d", "cast_id": 66, "profile_path": null, "order": 63}, {"name": "Terence Dickson", "character": "Drive-In Grill Dancer (as Terence Terell Dickson)", "id": 1148759, "credit_id": "52fe47a8c3a368484e0d2e71", "cast_id": 67, "profile_path": "/36Ba9N0SxSOrnvgMn1HRuEToaGR.jpg", "order": 64}, {"name": "Kiara Ely", "character": "Drive-In Grill Dancer", "id": 1290586, "credit_id": "52fe47a8c3a368484e0d2e75", "cast_id": 68, "profile_path": null, "order": 65}, {"name": "Comfort Fedoke", "character": "Drive-In Grill Dancer", "id": 964776, "credit_id": "52fe47a8c3a368484e0d2e79", "cast_id": 69, "profile_path": "/yYYxj2dpmkH68sU0U8psY1wewlF.jpg", "order": 66}, {"name": "Hannah Huddleston", "character": "Drive-In Grill Dancer", "id": 1290587, "credit_id": "52fe47a8c3a368484e0d2e7d", "cast_id": 70, "profile_path": null, "order": 67}, {"name": "Stephen Stevo Jones", "character": "Drive-In Grill Dancer", "id": 1290588, "credit_id": "52fe47a8c3a368484e0d2e81", "cast_id": 71, "profile_path": "/7nWO9auqUfPOhLQGS7BTW7coLI3.jpg", "order": 68}, {"name": "JaQuel Knight", "character": "Drive-In Grill Dancer", "id": 1290589, "credit_id": "52fe47a8c3a368484e0d2e85", "cast_id": 72, "profile_path": null, "order": 69}, {"name": "Tamara Levinson", "character": "Drive-In Grill Dancer", "id": 568659, "credit_id": "52fe47a8c3a368484e0d2e89", "cast_id": 73, "profile_path": "/rszBSN45sRNOBs60CtY5JOIRh4L.jpg", "order": 70}, {"name": "Ron Myles", "character": "Drive-In Grill Dancer", "id": 1290590, "credit_id": "52fe47a8c3a368484e0d2e8d", "cast_id": 74, "profile_path": null, "order": 71}, {"name": "Britney Chelene Thomas", "character": "Drive-In Grill Dancer", "id": 1290591, "credit_id": "52fe47a8c3a368484e0d2e91", "cast_id": 75, "profile_path": null, "order": 72}, {"name": "Christopher Toler", "character": "Drive-In Grill Dancer", "id": 23591, "credit_id": "52fe47a8c3a368484e0d2e95", "cast_id": 76, "profile_path": null, "order": 73}, {"name": "Nanci Anderson", "character": "Cowboys' Dancer", "id": 1290592, "credit_id": "52fe47a8c3a368484e0d2e99", "cast_id": 77, "profile_path": null, "order": 74}, {"name": "Kendra Andrews", "character": "Cowboys' Dancer (as Kendra Lauren Andrews)", "id": 138012, "credit_id": "52fe47a8c3a368484e0d2e9d", "cast_id": 78, "profile_path": "/lUuz8TVkl5FFfsszzZylwtZJ4IY.jpg", "order": 75}, {"name": "Jeffery Scott Bailey", "character": "Cowboys' Dancer", "id": 1290594, "credit_id": "52fe47a8c3a368484e0d2ea1", "cast_id": 79, "profile_path": null, "order": 76}, {"name": "Liana Blackburn", "character": "Cowboys' Dancer", "id": 1290595, "credit_id": "52fe47a8c3a368484e0d2ea5", "cast_id": 80, "profile_path": null, "order": 77}, {"name": "Brent L. Boxberger", "character": "Cowboys' Dancer", "id": 1290596, "credit_id": "52fe47a8c3a368484e0d2ea9", "cast_id": 81, "profile_path": null, "order": 78}, {"name": "Taylor Bradley", "character": "Cowboys' Dancer", "id": 1290597, "credit_id": "52fe47a8c3a368484e0d2ead", "cast_id": 82, "profile_path": null, "order": 79}, {"name": "Kelley Bradshaw", "character": "Cowboys' Dancer", "id": 1290598, "credit_id": "52fe47a8c3a368484e0d2eb1", "cast_id": 83, "profile_path": null, "order": 80}, {"name": "Claire Callaway", "character": "Cowboys' Dancer", "id": 948782, "credit_id": "52fe47a8c3a368484e0d2eb5", "cast_id": 84, "profile_path": null, "order": 81}, {"name": "Robert Chabott", "character": "Cowboys' Dancer", "id": 1290599, "credit_id": "52fe47a8c3a368484e0d2eb9", "cast_id": 85, "profile_path": null, "order": 82}, {"name": "C. Ryan Chandler", "character": "Cowboys' Dancer", "id": 1290600, "credit_id": "52fe47a8c3a368484e0d2ebd", "cast_id": 86, "profile_path": null, "order": 83}, {"name": "Amanda Davisson", "character": "Cowboys' Dancer", "id": 1290601, "credit_id": "52fe47a8c3a368484e0d2ec1", "cast_id": 87, "profile_path": null, "order": 84}, {"name": "Troy Dela Rosa", "character": "Cowboys' Dancer", "id": 1290602, "credit_id": "52fe47a8c3a368484e0d2ec5", "cast_id": 88, "profile_path": null, "order": 85}, {"name": "Hannah Douglass", "character": "Cowboys' Dancer", "id": 1265805, "credit_id": "52fe47a8c3a368484e0d2ec9", "cast_id": 89, "profile_path": null, "order": 86}, {"name": "Danella Dutton", "character": "Cowboys' Dancer", "id": 1290603, "credit_id": "52fe47a8c3a368484e0d2ecd", "cast_id": 90, "profile_path": null, "order": 87}, {"name": "Aisha Francis", "character": "Cowboys' Dancer", "id": 1008084, "credit_id": "52fe47a8c3a368484e0d2ed1", "cast_id": 91, "profile_path": null, "order": 88}, {"name": "Jonathan Fritschi", "character": "Cowboys' Dancer", "id": 1290604, "credit_id": "52fe47a8c3a368484e0d2ed5", "cast_id": 92, "profile_path": null, "order": 89}, {"name": "Larke Hasstedt", "character": "Cowboys' Dancer", "id": 1290605, "credit_id": "52fe47a8c3a368484e0d2ed9", "cast_id": 93, "profile_path": null, "order": 90}, {"name": "Joey Hernandez", "character": "Cowboys' Dancer", "id": 1290606, "credit_id": "52fe47a8c3a368484e0d2edd", "cast_id": 94, "profile_path": null, "order": 91}, {"name": "Katherine Hough", "character": "Cowboys' Dancer", "id": 1290607, "credit_id": "52fe47a8c3a368484e0d2ee1", "cast_id": 95, "profile_path": null, "order": 92}, {"name": "Jeremy Hudson", "character": "Cowboys' Dancer", "id": 1290608, "credit_id": "52fe47a8c3a368484e0d2ee5", "cast_id": 96, "profile_path": null, "order": 93}, {"name": "Dacia James", "character": "Cowboys' Dancer", "id": 1290609, "credit_id": "52fe47a8c3a368484e0d2ee9", "cast_id": 97, "profile_path": null, "order": 94}, {"name": "George Jones, Jr.", "character": "Cowboys' Dancer", "id": 1290610, "credit_id": "52fe47a8c3a368484e0d2eed", "cast_id": 98, "profile_path": null, "order": 95}, {"name": "William Ladd", "character": "Cowboys' Dancer", "id": 1290611, "credit_id": "52fe47a8c3a368484e0d2ef1", "cast_id": 99, "profile_path": null, "order": 96}, {"name": "Meryl Lester", "character": "Cowboys' Dancer", "id": 1290612, "credit_id": "52fe47a8c3a368484e0d2ef5", "cast_id": 100, "profile_path": null, "order": 97}, {"name": "Katherine Levy", "character": "Cowboys' Dancer", "id": 1290613, "credit_id": "52fe47a8c3a368484e0d2ef9", "cast_id": 101, "profile_path": null, "order": 98}, {"name": "Megan Mackey", "character": "Cowboys' Dancer", "id": 1290614, "credit_id": "52fe47a8c3a368484e0d2efd", "cast_id": 102, "profile_path": null, "order": 99}, {"name": "Michelle Maniscalco", "character": "Cowboys' Dancer", "id": 559770, "credit_id": "52fe47a8c3a368484e0d2f01", "cast_id": 103, "profile_path": null, "order": 100}, {"name": "Brian Mason", "character": "Cowboys' Dancer", "id": 1290615, "credit_id": "52fe47a8c3a368484e0d2f05", "cast_id": 104, "profile_path": null, "order": 101}, {"name": "Michael McDonough", "character": "Cowboys' Dancer", "id": 958512, "credit_id": "52fe47a8c3a368484e0d2f09", "cast_id": 105, "profile_path": null, "order": 102}, {"name": "Dennis McKinnie", "character": "Cowboys' Dancer", "id": 1290616, "credit_id": "52fe47a8c3a368484e0d2f0d", "cast_id": 106, "profile_path": null, "order": 103}, {"name": "Keltie Colleen Minksky", "character": "Cowboys' Dancer", "id": 1290617, "credit_id": "52fe47a8c3a368484e0d2f11", "cast_id": 107, "profile_path": null, "order": 104}, {"name": "Marriann Nelson", "character": "Cowboys' Dancer", "id": 1290618, "credit_id": "52fe47a8c3a368484e0d2f15", "cast_id": 108, "profile_path": null, "order": 105}, {"name": "Brent Ours", "character": "Cowboys' Dancer", "id": 1290619, "credit_id": "52fe47a8c3a368484e0d2f19", "cast_id": 109, "profile_path": null, "order": 106}, {"name": "Jamie Overla", "character": "Cowboys' Dancer", "id": 1290620, "credit_id": "52fe47a8c3a368484e0d2f1d", "cast_id": 110, "profile_path": null, "order": 107}, {"name": "Marabeth Poole", "character": "Cowboys' Dancer", "id": 1290621, "credit_id": "52fe47a8c3a368484e0d2f21", "cast_id": 111, "profile_path": null, "order": 108}, {"name": "Harrison Jonathan Prater", "character": "Cowboys' Dancer", "id": 1290622, "credit_id": "52fe47a8c3a368484e0d2f25", "cast_id": 112, "profile_path": null, "order": 109}, {"name": "Melissa Rummels", "character": "Cowboys' Dancer", "id": 1290623, "credit_id": "52fe47a8c3a368484e0d2f29", "cast_id": 113, "profile_path": null, "order": 110}, {"name": "Monique Slaughter", "character": "Cowboys' Dancer", "id": 1290624, "credit_id": "52fe47a8c3a368484e0d2f2d", "cast_id": 114, "profile_path": null, "order": 111}, {"name": "Lisa Marie Thomas", "character": "Cowboys' Dancer (as Lisa Thomas)", "id": 1090695, "credit_id": "52fe47a8c3a368484e0d2f31", "cast_id": 115, "profile_path": null, "order": 112}, {"name": "Gissette E. Valentin", "character": "Cowboys' Dancer", "id": 1290625, "credit_id": "52fe47a8c3a368484e0d2f35", "cast_id": 116, "profile_path": null, "order": 113}, {"name": "Tyler Duncan Wall", "character": "Cowboys' Dancer", "id": 1290626, "credit_id": "52fe47a8c3a368484e0d2f39", "cast_id": 117, "profile_path": null, "order": 114}, {"name": "Quincy Lamar Willis", "character": "Cowboys' Dancer", "id": 1290627, "credit_id": "52fe47a8c3a368484e0d2f3d", "cast_id": 118, "profile_path": null, "order": 115}, {"name": "Sharee Wise", "character": "Cowboys' Dancer", "id": 1290628, "credit_id": "52fe47a8c3a368484e0d2f41", "cast_id": 119, "profile_path": null, "order": 116}, {"name": "Joshua Allen", "character": "Finale Dancer", "id": 1290629, "credit_id": "52fe47a8c3a368484e0d2f45", "cast_id": 120, "profile_path": "/6H0W8ZmTY3hBi3jlFpL2ljBpihp.jpg", "order": 117}, {"name": "Tucker Barkley", "character": "Finale Dancer", "id": 1290630, "credit_id": "52fe47a8c3a368484e0d2f49", "cast_id": 121, "profile_path": null, "order": 118}, {"name": "Bianca Brewton", "character": "Finale Dancer", "id": 1290631, "credit_id": "52fe47a8c3a368484e0d2f4d", "cast_id": 122, "profile_path": null, "order": 119}, {"name": "Whitney Brown", "character": "Finale Dancer", "id": 1290632, "credit_id": "52fe47a8c3a368484e0d2f51", "cast_id": 123, "profile_path": null, "order": 120}, {"name": "Bboy Kid David", "character": "Finale Dancer", "id": 1290633, "credit_id": "52fe47a8c3a368484e0d2f55", "cast_id": 124, "profile_path": null, "order": 121}, {"name": "Justin Michael De Vera", "character": "Finale Dancer", "id": 1290634, "credit_id": "52fe47a8c3a368484e0d2f59", "cast_id": 125, "profile_path": null, "order": 122}, {"name": "Michael Brandon Dizon", "character": "Finale Dancer", "id": 1290635, "credit_id": "52fe47a8c3a368484e0d2f5d", "cast_id": 126, "profile_path": null, "order": 123}, {"name": "Laura Edwards", "character": "Finale Dancer", "id": 1290636, "credit_id": "52fe47a8c3a368484e0d2f61", "cast_id": 127, "profile_path": null, "order": 124}, {"name": "Christina Glur", "character": "Finale Dancer", "id": 1290637, "credit_id": "52fe47a8c3a368484e0d2f65", "cast_id": 128, "profile_path": null, "order": 125}, {"name": "Cory Graves", "character": "Finale Dancer", "id": 1290638, "credit_id": "52fe47a8c3a368484e0d2f69", "cast_id": 129, "profile_path": null, "order": 126}, {"name": "Misha Hamilton", "character": "Finale Dancer", "id": 1119287, "credit_id": "52fe47a8c3a368484e0d2f6d", "cast_id": 130, "profile_path": null, "order": 127}, {"name": "Dayna Michelle Harris", "character": "Finale Dancer", "id": 1290639, "credit_id": "52fe47a8c3a368484e0d2f71", "cast_id": 131, "profile_path": null, "order": 128}, {"name": "Ivan Koumaev", "character": "Finale Dancer", "id": 1290640, "credit_id": "52fe47a8c3a368484e0d2f75", "cast_id": 132, "profile_path": null, "order": 129}, {"name": "Nicholas Lanzisera", "character": "Finale Dancer", "id": 1290641, "credit_id": "52fe47a8c3a368484e0d2f79", "cast_id": 133, "profile_path": null, "order": 130}, {"name": "Matthew Laraway", "character": "Finale Dancer", "id": 1290642, "credit_id": "52fe47a8c3a368484e0d2f7d", "cast_id": 134, "profile_path": null, "order": 131}, {"name": "Spencer Liff", "character": "Finale Dancer", "id": 38945, "credit_id": "52fe47a8c3a368484e0d2f81", "cast_id": 135, "profile_path": null, "order": 132}, {"name": "Ahrielle Mace", "character": "Finale Dancer", "id": 1290643, "credit_id": "52fe47a8c3a368484e0d2f85", "cast_id": 136, "profile_path": null, "order": 133}, {"name": "Candace Neolani Maxwell", "character": "Finale Dancer", "id": 1290644, "credit_id": "52fe47a8c3a368484e0d2f89", "cast_id": 137, "profile_path": null, "order": 134}, {"name": "Glenda Morales", "character": "Finale Dancer", "id": 1290645, "credit_id": "52fe47a8c3a368484e0d2f8d", "cast_id": 138, "profile_path": null, "order": 135}, {"name": "Abbye Myers", "character": "Finale Dancer", "id": 1290646, "credit_id": "52fe47a8c3a368484e0d2f91", "cast_id": 139, "profile_path": null, "order": 136}, {"name": "Christian Owens", "character": "Finale Dancer", "id": 1290647, "credit_id": "52fe47a8c3a368484e0d2f95", "cast_id": 140, "profile_path": null, "order": 137}, {"name": "Kayla Jenee Radomski", "character": "Finale Dancer", "id": 1290648, "credit_id": "52fe47a8c3a368484e0d2f99", "cast_id": 141, "profile_path": null, "order": 138}, {"name": "Luis Rosado", "character": "Finale Dancer", "id": 1148762, "credit_id": "52fe47a8c3a368484e0d2f9d", "cast_id": 142, "profile_path": "/3WQyLA5js8eioERwZBNdCLlejdd.jpg", "order": 139}, {"name": "Carson Marie Seeley", "character": "Finale Dancer", "id": 1290650, "credit_id": "52fe47a8c3a368484e0d2fa1", "cast_id": 143, "profile_path": null, "order": 140}, {"name": "Dakota Scott Smith", "character": "Finale Dancer", "id": 1290651, "credit_id": "52fe47a9c3a368484e0d2fa5", "cast_id": 144, "profile_path": null, "order": 141}, {"name": "Brittny Sugarman", "character": "Finale Dancer", "id": 1290652, "credit_id": "52fe47a9c3a368484e0d2fa9", "cast_id": 145, "profile_path": null, "order": 142}, {"name": "Melanie Ullmann", "character": "Finale Dancer", "id": 1290653, "credit_id": "52fe47a9c3a368484e0d2fad", "cast_id": 146, "profile_path": null, "order": 143}, {"name": "Miguel Angel Zarate", "character": "Finale Dancer", "id": 1290654, "credit_id": "52fe47a9c3a368484e0d2fb1", "cast_id": 147, "profile_path": null, "order": 144}], "directors": [{"name": "Craig Brewer", "department": "Directing", "job": "Director", "credit_id": "52fe47a7c3a368484e0d2d67", "profile_path": "/1F5Sjw9oAkKQOLaD2Bs3vrsIlMg.jpg", "id": 53267}], "vote_average": 6.3, "runtime": 113}, "11474": {"poster_path": "/ikwR74siRBhSdtAUMxNzUJvT59A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22490039, "overview": "Prominent gang leader Cyrus calls a meeting of New York's gangs to set aside their turf wars and take over the city. At the meeting, a rival leader kills Cyrus, but a Coney Island gang called the Warriors is wrongly blamed for Cyrus' death. Before you know it, the cops and every gangbanger in town is hot on the Warriors' trail.", "video": false, "id": 11474, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Warriors", "tagline": "These Are The Armies Of The Night........", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080120", "adult": false, "backdrop_path": "/nQ3FP6QMV7L0XjiVpumgNJnxzUT.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1979-02-09", "popularity": 0.554074570611999, "original_title": "The Warriors", "budget": 0, "cast": [{"name": "James Remar", "character": "Ajax", "id": 1736, "credit_id": "52fe44479251416c7502f205", "cast_id": 3, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 0}, {"name": "Michael Beck", "character": "Swan", "id": 36409, "credit_id": "52fe44479251416c7502f22d", "cast_id": 10, "profile_path": "/gpaKVOeavCeK08GiukvnUgAiHFD.jpg", "order": 1}, {"name": "David Patrick Kelly", "character": "Luther", "id": 1737, "credit_id": "52fe44479251416c7502f231", "cast_id": 11, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 2}, {"name": "Dorsey Wright", "character": "Cleon", "id": 69564, "credit_id": "52fe44479251416c7502f23b", "cast_id": 13, "profile_path": "/kzkgvlhX2BsrvbrNo18nQdUmg4c.jpg", "order": 3}, {"name": "David Harris", "character": "Cochise", "id": 1058172, "credit_id": "52fe44479251416c7502f23f", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Deborah Van Valkenburgh", "character": "Mercy", "id": 77256, "credit_id": "52fe44479251416c7502f243", "cast_id": 15, "profile_path": "/d17eio3cj1iwwtFR927oKCou681.jpg", "order": 5}, {"name": "Brian Tyler", "character": "Snow", "id": 1080553, "credit_id": "52fe44479251416c7502f247", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Steve James", "character": "Baseball Fury", "id": 55271, "credit_id": "52fe44479251416c7502f24b", "cast_id": 17, "profile_path": "/pNK50BHuGfegOJo8scrd3ys5KNB.jpg", "order": 7}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe44479251416c7502f211", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 7.0, "runtime": 93}, "44244": {"poster_path": "/j0NzAIdVDSRj9y7YtFlGoVUtqXD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mitchie can't wait to go back to Camp Rock and spend the summer making new music with her friends and superstar Shane Gray. But the slick new camp across the lake, Camp Star, has drummed up some serious competition \u2014 featuring newcomers Luke (Matthew \"Mdot\" Finley) and Dana (Chloe Bridges). In a sensational battle of the bands, with Camp Rock's future at stake, will Camp Star's flashy production and over-the-top antics win out, or will Camp Rockers prove that music, teamwork, and spirit are what truly matter?", "video": false, "id": 44244, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Camp Rock 2: The Final Jam", "tagline": "", "vote_count": 61, "homepage": "http://tv.disney.go.com/disneychannel/originalmovies/camprock2/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/kfYLaRTq2UEG31tdrvsg4JeTM4O.jpg", "id": 148055, "name": "Camp Rock Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1252380", "adult": false, "backdrop_path": "/ki5QUifXwY3ZQ7RcQUXjR4vKhtW.jpg", "production_companies": [], "release_date": "2010-06-06", "popularity": 0.670060100992888, "original_title": "Camp Rock 2: The Final Jam", "budget": 0, "cast": [{"name": "Demi Lovato", "character": "Mitchie Torres", "id": 85138, "credit_id": "52fe467fc3a36847f8102641", "cast_id": 1, "profile_path": "/bfAQFvBe2M3FifZVfFnb3joqDnO.jpg", "order": 0}, {"name": "Alyson Stoner", "character": "Caitlyn Geller", "id": 58965, "credit_id": "52fe467fc3a36847f8102645", "cast_id": 2, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 1}, {"name": "Joe Jonas", "character": "Shane Gray", "id": 85757, "credit_id": "52fe467fc3a36847f8102649", "cast_id": 3, "profile_path": "/chP0tAO3UfgmyipvNNqlGD7ctID.jpg", "order": 2}, {"name": "Nick Jonas", "character": "Nate", "id": 130565, "credit_id": "52fe467fc3a36847f810264d", "cast_id": 4, "profile_path": "/5xKjPntwYmTeCNaYS0w30ekyXRZ.jpg", "order": 3}, {"name": "Kevin Jonas", "character": "Jason", "id": 130566, "credit_id": "52fe467fc3a36847f8102651", "cast_id": 5, "profile_path": "/demDxdp2PHLCaQI87LtmCHab0J4.jpg", "order": 4}, {"name": "Meaghan Jette Martin", "character": "Tess Tyler (as Meaghan Jette Martin)", "id": 130567, "credit_id": "52fe467fc3a36847f8102655", "cast_id": 6, "profile_path": "/xZAKFoELIpW8ghKEXAL17yQjyg.jpg", "order": 5}], "directors": [{"name": "Paul Hoen", "department": "Directing", "job": "Director", "credit_id": "52fe467fc3a36847f810265b", "profile_path": null, "id": 38692}], "vote_average": 5.7, "runtime": 97}, "77016": {"poster_path": "/suqikqv0DjOsW8e0hst4YWDTmAX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39907640, "overview": "Shot documentary-style, this film follows the daily grind of two young police officers in LA who are partners and friends, and what happens when they meet criminal forces greater than themselves.", "video": false, "id": 77016, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "End of Watch", "tagline": "Every moment of your life they stand watch", "vote_count": 371, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1855199", "adult": false, "backdrop_path": "/udoddkfohAuWpVi6FkzkVB3hJOa.jpg", "production_companies": [{"name": "5150 Action", "id": 47354}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Hedge Fund Film Partners", "id": 11449}, {"name": "Crave Films", "id": 16312}, {"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Le Grisbi Productions", "id": 47169}], "release_date": "2012-09-21", "popularity": 0.756656615591269, "original_title": "End of Watch", "budget": 7000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Brian Taylor", "id": 131, "credit_id": "52fe4957c3a368484e12691f", "cast_id": 2, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Michael Pe\u00f1a", "character": "Mike Zavala", "id": 454, "credit_id": "52fe4957c3a368484e126939", "cast_id": 9, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 1}, {"name": "Natalie Martinez", "character": "Gabby", "id": 76511, "credit_id": "52fe4957c3a368484e126927", "cast_id": 5, "profile_path": "/9F8hCTTuDfPn5DPjsSuwxaJVwT4.jpg", "order": 2}, {"name": "Anna Kendrick", "character": "Janet", "id": 84223, "credit_id": "52fe4957c3a368484e126923", "cast_id": 4, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 3}, {"name": "David Harbour", "character": "Van Hauser", "id": 35029, "credit_id": "52fe4957c3a368484e126941", "cast_id": 11, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 4}, {"name": "Frank Grillo", "character": "Sarge", "id": 81685, "credit_id": "52fe4957c3a368484e12693d", "cast_id": 10, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 5}, {"name": "America Ferrera", "character": "Officer Orozco", "id": 59174, "credit_id": "52fe4957c3a368484e126935", "cast_id": 8, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 6}, {"name": "Cody Horn", "character": "Officer Davis", "id": 582816, "credit_id": "52fe4957c3a368484e126931", "cast_id": 7, "profile_path": "/3cBTrMdZF9Yj12IUAHb9a46qplS.jpg", "order": 7}, {"name": "Shondrella Avery", "character": "Bonita", "id": 53928, "credit_id": "52fe4957c3a368484e126945", "cast_id": 12, "profile_path": "/tTRyVWKBCmZR0Eq3XQHMG682kUJ.jpg", "order": 8}, {"name": "Hugh Daly", "character": "Homicide Detective 2", "id": 85414, "credit_id": "52fe4957c3a368484e126949", "cast_id": 13, "profile_path": "/lNp0J8OVq3LnxnpBgGfckXRuHkI.jpg", "order": 9}, {"name": "Gene Hong", "character": "Officer Cho", "id": 458014, "credit_id": "52fe4957c3a368484e12694d", "cast_id": 14, "profile_path": "/qLvIbTnVFkI369VeAEsYcn6Xo3k.jpg", "order": 10}, {"name": "Cle Shaheed Sloan", "character": "Mr. Tre", "id": 55394, "credit_id": "52fe4957c3a368484e12695d", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Jaime Fitzsimmons", "character": "Captain Reese", "id": 1138844, "credit_id": "52fe4957c3a368484e126961", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Everton Lawrence", "character": "Man Friend", "id": 969413, "credit_id": "52fe4957c3a368484e126965", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Everton Lawrence", "character": "CK", "id": 969413, "credit_id": "52fe4957c3a368484e126969", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Everton Lawrence", "character": "DJ", "id": 969413, "credit_id": "52fe4957c3a368484e12696d", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Zone", "character": "Too Tall", "id": 210256, "credit_id": "52fe4957c3a368484e126971", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Alvin Norman", "character": "Peanut", "id": 1271758, "credit_id": "52fe4957c3a368484e126975", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Richard Cabral", "character": "Demon", "id": 1105711, "credit_id": "52fe4957c3a368484e126979", "cast_id": 24, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 18}, {"name": "Diamonique", "character": "Wicked", "id": 1271759, "credit_id": "52fe4957c3a368484e12697d", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Maurice Compte", "character": "Big Evil", "id": 48530, "credit_id": "52fe4957c3a368484e126981", "cast_id": 26, "profile_path": "/gt8vrkSOmv4dt5AfIcVsevNQ05b.jpg", "order": 20}, {"name": "Flakiss", "character": "La La", "id": 1271760, "credit_id": "52fe4957c3a368484e126985", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Manny Jimenez Jr.", "character": "Casper", "id": 1271761, "credit_id": "52fe4957c3a368484e126989", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Nikki Nicholle Barreras", "character": "Cindy", "id": 1271762, "credit_id": "52fe4957c3a368484e12698d", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Kristy Wu", "character": "Sook", "id": 94135, "credit_id": "52fe4957c3a368484e126991", "cast_id": 30, "profile_path": "/shPbdHP7augnWkTDhz0UO8xxID1.jpg", "order": 24}, {"name": "Candace Smith", "character": "Sharice", "id": 175585, "credit_id": "52fe4957c3a368484e126995", "cast_id": 31, "profile_path": "/qG5I4sebfVR29vNaRF8IfxEc5Qc.jpg", "order": 25}, {"name": "Corina Calderon", "character": "Jazmine", "id": 932158, "credit_id": "52fe4957c3a368484e126999", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "David Fernandez Jr.", "character": "Spooky", "id": 1117232, "credit_id": "52fe4957c3a368484e12699d", "cast_id": 33, "profile_path": "/eJvgc6jgVOePGvYbEyI1ZUy7KdG.jpg", "order": 27}, {"name": "McKinley Freeman", "character": "Williams", "id": 200483, "credit_id": "52fe4957c3a368484e1269a1", "cast_id": 34, "profile_path": null, "order": 28}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe4957c3a368484e12691b", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 7.0, "runtime": 109}, "44249": {"poster_path": "/rmg8nylhpNqPZ9Hq8Gs8OcgriMg.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Featuring some of the most spectacular, innovative and explosive martial arts ever staged, The Legend Is Born is the remarkable true story of the early life of Ip Man, the formidable kung fu genius who would become Bruce Lee's mentor.Beginning at the start of his journey from his initial training through to the ultimate battle to become supreme master of the art of Wing Chun, The Legend Is Born has already been hailed as one of the greatest martial arts films of all time and features an all-star cast, including Sammo Hung (Enter The Dragon), Yuen Biao and Ip Man's real life son, 76-year-old Ip Chun, as Ip Man's kung fu master.", "video": false, "id": 44249, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Legend Is Born: Ip Man", "tagline": "", "vote_count": 118, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1641638", "adult": false, "backdrop_path": "/8QmBeErLzskPVWkMXwkfxujXtO5.jpg", "production_companies": [{"name": "Mei Ah Entertainment", "id": 7885}], "release_date": "2010-06-24", "popularity": 0.392057746763227, "original_title": "Yip Man chinchyun", "budget": 0, "cast": [{"name": "Dennis To Yue-Hong", "character": "IP Man", "id": 130597, "credit_id": "52fe4680c3a36847f8102833", "cast_id": 4, "profile_path": "/dJ7tDtwazd5RiheT0oenbzEqENa.jpg", "order": 0}, {"name": "Fan Siu-Wong", "character": "Ip Tin-chi", "id": 130598, "credit_id": "52fe4680c3a36847f8102837", "cast_id": 5, "profile_path": "/tFfXqPjqhVItv5lkUVtSMbw1SPd.jpg", "order": 1}, {"name": "Leung Bik", "character": "Ip Chun", "id": 130600, "credit_id": "52fe4680c3a36847f810283f", "cast_id": 7, "profile_path": "/1wvxkhA1v4iv9ZcMnhAwDR7ZZwa.jpg", "order": 3}, {"name": "Sammo Hung", "character": "Chan Wah-shun", "id": 62410, "credit_id": "52fe4680c3a36847f8102843", "cast_id": 8, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 4}, {"name": "Hins Cheung", "character": "Young master Cho", "id": 130601, "credit_id": "52fe4680c3a36847f8102847", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Sire Ma", "character": "Cheung Wing-wah", "id": 130605, "credit_id": "52fe4680c3a36847f810284b", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Bernice Liu", "character": "Yumi", "id": 112987, "credit_id": "52fe4680c3a36847f810284f", "cast_id": 13, "profile_path": "/q7zLvpAatgAnrVgiljzs85QWvjp.jpg", "order": 8}, {"name": "Kenny Kwan", "character": "", "id": 130606, "credit_id": "52fe4680c3a36847f8102853", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Andy Taylor", "character": "Foreign challenger at hockey match", "id": 130607, "credit_id": "52fe4680c3a36847f8102857", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Lam Suet", "character": "Cheung Ho-tin", "id": 25251, "credit_id": "52fe4680c3a36847f810285b", "cast_id": 17, "profile_path": "/lncRaBwS0ok9PZNHkxz5UhANouT.jpg", "order": 11}, {"name": "Yuen Biao", "character": "", "id": 62414, "credit_id": "52fe4680c3a36847f810285f", "cast_id": 18, "profile_path": "/hdBQMhtzpamgodIURGPQAcKdbWC.jpg", "order": 12}, {"name": "Yi Huang", "character": "", "id": 127108, "credit_id": "54944d3e9251413af7000296", "cast_id": 21, "profile_path": "/r425JT3CADCCcF4j7dxwxg36HPM.jpg", "order": 13}], "directors": [{"name": "Herman Yau", "department": "Directing", "job": "Director", "credit_id": "52fe4680c3a36847f8102823", "profile_path": "/ahrznxNTlzUwO4wg10dijD8MF4I.jpg", "id": 92831}], "vote_average": 6.3, "runtime": 100}, "216282": {"poster_path": "/dtuyhlOtqj8zPPFgTgWJ0bF3s2h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The town of Silverton is in one day destroyed by the unprecedented power of a series of tornadoes. The population is at the mercy of the unpredictable and deadly cyclones, while hunters warn that the worst is yet to come. Most people find shelter, but some just go to the tornado for that one, unique shot.", "video": false, "id": 216282, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Into the Storm", "tagline": "Prepare to go", "vote_count": 282, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2106361", "adult": false, "backdrop_path": "/i0umpdqVURR1VZFX67QGJEXKvLe.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Broken Road Productions", "id": 8000}, {"name": "New Line Cinema", "id": 12}], "release_date": "2014-08-08", "popularity": 1.05202076774146, "original_title": "Into the Storm", "budget": 0, "cast": [{"name": "Richard Armitage", "character": "Gary Morris", "id": 30315, "credit_id": "52fe4e16c3a368484e20d769", "cast_id": 3, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 0}, {"name": "Sarah Wayne Callies", "character": "Allison", "id": 86468, "credit_id": "53f2e23fc3a3685af2006338", "cast_id": 11, "profile_path": "/1WTsRFbvxU9lOWonAigOO9UCxmY.jpg", "order": 1}, {"name": "Matt Walsh", "character": "Pete", "id": 59841, "credit_id": "52fe4e16c3a368484e20d775", "cast_id": 7, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 2}, {"name": "Nathan Kress", "character": "Trey", "id": 212913, "credit_id": "52fe4e16c3a368484e20d771", "cast_id": 6, "profile_path": "/4B9z58nrAaNXJi4uVkvWsztK7LF.jpg", "order": 3}, {"name": "Alycia Debnam Carey", "character": "Kaitlyn", "id": 1129464, "credit_id": "53f2dfeb0e0a2675b2007e21", "cast_id": 10, "profile_path": "/xIYaVcmAti9ADefT4jI36i1J48h.jpg", "order": 4}, {"name": "Jeremy Sumpter", "character": "Jacob", "id": 65838, "credit_id": "52fe4e16c3a368484e20d76d", "cast_id": 5, "profile_path": "/erNaw0imhMzn3OqGcOQPQeQ4RtI.jpg", "order": 5}, {"name": "Kyle Davis", "character": "Donk", "id": 54850, "credit_id": "53439827c3a36814f9004b44", "cast_id": 8, "profile_path": "/q1mjfGBnoXFwWZwxMbHUF2SYpIi.jpg", "order": 6}, {"name": "Brandon Ruiter", "character": "Todd White", "id": 1360027, "credit_id": "540697c4c3a36869090000d3", "cast_id": 12, "profile_path": "/xAhRF8jZEOpNWtKO06q9v35BQdi.jpg", "order": 7}, {"name": "Max Deacon", "character": "Donnie", "id": 75566, "credit_id": "54818e5a9251416e74005df2", "cast_id": 18, "profile_path": "/2hYF0Imhp70xbr7CHOByEyZQ0ov.jpg", "order": 8}, {"name": "Arlen Escarpeta", "character": "Daryl", "id": 78432, "credit_id": "5481912b9251414efa006036", "cast_id": 19, "profile_path": "/j6UsveHGfxcnohafoCDAVqQBLpC.jpg", "order": 9}, {"name": "Lee Whittaker", "character": "Lucas", "id": 92508, "credit_id": "548194cdc3a36829b5006ee0", "cast_id": 20, "profile_path": "/4Sb5QaGq25kriyt2zRD4mpIyrB2.jpg", "order": 10}, {"name": "Jon Reep", "character": "Reevis", "id": 1226531, "credit_id": "54819690c3a3684afd00140b", "cast_id": 21, "profile_path": "/gLyZQeTjGxWrEhQNThFZAwhPSpi.jpg", "order": 11}, {"name": "Scott Lawrence", "character": "Principal Thomas Walker", "id": 42317, "credit_id": "548197d6c3a36829b5006f59", "cast_id": 22, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 12}, {"name": "David Drumm", "character": "Chester", "id": 1394781, "credit_id": "5481986b9251416e7b00560f", "cast_id": 23, "profile_path": "/34mTixHl12TtXn2GU9keHVvRjKC.jpg", "order": 13}, {"name": "Jimmy Groce", "character": "Studious Male", "id": 1394785, "credit_id": "548199c2c3a36829a3005c85", "cast_id": 24, "profile_path": "/kGR92e93VA2aRf98bx3DS9h8PFM.jpg", "order": 14}, {"name": "Linda Gehringer", "character": "Linda", "id": 1394788, "credit_id": "54819aee9251416e74005f7c", "cast_id": 25, "profile_path": "/hWRDJvcBLHu2iRCXSIBpmgvmPbG.jpg", "order": 15}, {"name": "Keala Wayne Winterhalt", "character": "Grace", "id": 1394794, "credit_id": "54819cc39251416e74005fbb", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Maryanne Nagel", "character": "Ms. McGee", "id": 1394795, "credit_id": "54819e9c9251416e78005bc3", "cast_id": 27, "profile_path": "/9rkyt8jBJ9TusObytJ8pZ5HseOC.jpg", "order": 17}, {"name": "Frank Zieger", "character": "Road Worker", "id": 83401, "credit_id": "5481e7239251416e74006806", "cast_id": 28, "profile_path": "/6kcmQluRAOeZIbsM35Bq2i7olAq.jpg", "order": 18}, {"name": "Kron Moore", "character": "Teacher (Mrs. Blasky)", "id": 1395039, "credit_id": "5481e79b9251416e780063b6", "cast_id": 29, "profile_path": "/y0FhbSiVnGtaWQnGNk2XUpNsQYG.jpg", "order": 19}, {"name": "London Elise Moore", "character": "Cheerleader", "id": 1395045, "credit_id": "5481ea1d9251416e7400685c", "cast_id": 30, "profile_path": "/u7j6JCAdsAyBqOT3vvx9jXYBGoV.jpg", "order": 20}, {"name": "Michael Ellison", "character": "Volunteer Fireman", "id": 1395050, "credit_id": "5481ec379251414efa006bad", "cast_id": 31, "profile_path": "/194R89TUr1M5WavBSTyyOXty5Kf.jpg", "order": 21}, {"name": "Vincent McCurdy-Clark", "character": "", "id": 1395054, "credit_id": "5481edea9251416e7800647f", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Stephanie Koenig", "character": "Marcia", "id": 1395056, "credit_id": "5481eeadc3a3685c0e00055e", "cast_id": 33, "profile_path": "/3JpJScCkbE8eN5R5gqvK0nYAkmE.jpg", "order": 23}, {"name": "Gary England", "character": "Himself", "id": 1228464, "credit_id": "5481f0969251414d210065d8", "cast_id": 34, "profile_path": "/6c0bXOz1frrZFm9ErliO5rPAIaH.jpg", "order": 24}, {"name": "Don Lemon", "character": "Himself", "id": 1395060, "credit_id": "5481f1b8c3a3685c0e0005a4", "cast_id": 35, "profile_path": "/hPew8UbPKHI239ajVMRqUljpZeE.jpg", "order": 25}, {"name": "Chuck Gaidica", "character": "Weather Anchor", "id": 1395063, "credit_id": "5481f35f9251414efa006c88", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Steve Garagiola", "character": "News Anchor", "id": 1395064, "credit_id": "5481f3e1c3a36829b5007c63", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "John W. Hardy", "character": "Preacher", "id": 1395066, "credit_id": "5481f4bfc3a3685c0e0005ec", "cast_id": 38, "profile_path": "/jlXheK3t7NocSLAk9KEwEXTr3sh.jpg", "order": 28}, {"name": "Mikayla Bouchard", "character": "Crying Woman", "id": 1395067, "credit_id": "5481f57fc3a36829a300668a", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Gino Borri", "character": "David Brody", "id": 1395068, "credit_id": "5481f64dc3a36817a5006900", "cast_id": 40, "profile_path": "/1NA3ROrycPNF4s2kpCGf9Z8nE1K.jpg", "order": 30}, {"name": "Amanda Ryskamp", "character": "Jenny", "id": 1395069, "credit_id": "5481f719c3a36829a70067c5", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Taras Los", "character": "Fireman", "id": 204261, "credit_id": "5481f830c3a36829ae005fe1", "cast_id": 42, "profile_path": "/pHnqDObzaakpa6xKNELWJCrhSKB.jpg", "order": 32}, {"name": "Niki Cipriano", "character": "Sister of Graduate", "id": 1283942, "credit_id": "54adb07d9251411ef6000353", "cast_id": 102, "profile_path": "/hauENXlAZ6AncUUxJy6cOvE2Tvz.jpg", "order": 33}], "directors": [{"name": "Steven Quale", "department": "Directing", "job": "Director", "credit_id": "52fe4e16c3a368484e20d75f", "profile_path": null, "id": 93214}], "vote_average": 5.7, "runtime": 89}, "3291": {"poster_path": "/lV7C9j2FjHp8mjQeP3bqtdCj9JF.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54600000, "overview": "George Clooney\u2019s fact-based drama about the famous radio journalist Edward R Murrow's stand against Senator McCarthy's anti-communist witch-hunts in the early 1950s.", "video": false, "id": 3291, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Good Night, and Good Luck.", "tagline": "They took on the Government with nothing but the truth.", "vote_count": 62, "homepage": "http://wip.warnerbros.com/goodnightgoodluck/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433383", "adult": false, "backdrop_path": "/uFuS7ee3n4F8atSJEB4to4htX0d.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2005-09-16", "popularity": 0.716713720512602, "original_title": "Good Night, and Good Luck.", "budget": 7000000, "cast": [{"name": "Jeff Daniels", "character": "Sig Mickelson", "id": 8447, "credit_id": "52fe438fc3a36847f805dadf", "cast_id": 1, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 0}, {"name": "David Strathairn", "character": "Edward R. Murrow", "id": 11064, "credit_id": "52fe438fc3a36847f805dae3", "cast_id": 2, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 1}, {"name": "Alex Borstein", "character": "Natalie", "id": 24357, "credit_id": "52fe438fc3a36847f805dae7", "cast_id": 3, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 2}, {"name": "Rose Abdoo", "character": "Millie Lerner", "id": 31507, "credit_id": "52fe438fc3a36847f805daeb", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Dianne Reeves", "character": "Jazz S\u00e4ngerin", "id": 31513, "credit_id": "52fe438fc3a36847f805db23", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Tate Donovan", "character": "Jesse Zousmer", "id": 15455, "credit_id": "52fe438fc3a36847f805daef", "cast_id": 5, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 5}, {"name": "Reed Diamond", "character": "John Aaron", "id": 31508, "credit_id": "52fe438fc3a36847f805daf3", "cast_id": 6, "profile_path": "/mASm3pG5IzLMQlORD8v7vb8oEly.jpg", "order": 6}, {"name": "Matt Ross", "character": "Eddie Scott", "id": 11154, "credit_id": "52fe438fc3a36847f805daf7", "cast_id": 7, "profile_path": "/tl51oqEpUoa9S5JGbklg9aXd99Q.jpg", "order": 7}, {"name": "Patricia Clarkson", "character": "Shirley Wershba", "id": 1276, "credit_id": "52fe438fc3a36847f805dafb", "cast_id": 8, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 8}, {"name": "Robert Downey Jr.", "character": "Joe Wershba", "id": 3223, "credit_id": "52fe438fc3a36847f805daff", "cast_id": 9, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 9}, {"name": "George Clooney", "character": "Fred Friendly", "id": 1461, "credit_id": "52fe438fc3a36847f805db03", "cast_id": 10, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 10}, {"name": "Thomas McCarthy", "character": "Palmer Williams", "id": 17867, "credit_id": "52fe438fc3a36847f805db07", "cast_id": 11, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 11}, {"name": "Glenn Morshower", "character": "Colonel Anderson", "id": 12797, "credit_id": "52fe438fc3a36847f805db0b", "cast_id": 12, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 12}, {"name": "Don Creech", "character": "Colonel Jenkins", "id": 1007, "credit_id": "52fe4390c3a36847f805dba1", "cast_id": 47, "profile_path": "/sI2hA8u4BiMfqtMLaKwLgeH5vGy.jpg", "order": 13}, {"name": "Grant Heslov", "character": "Don Hewitt", "id": 31511, "credit_id": "52fe438fc3a36847f805db13", "cast_id": 15, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 14}, {"name": "Robert John Burke", "character": "Charlie Mack", "id": 31512, "credit_id": "52fe438fc3a36847f805db17", "cast_id": 16, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 15}, {"name": "Ray Wise", "character": "Don Hollenbeck", "id": 6719, "credit_id": "52fe438fc3a36847f805db1b", "cast_id": 17, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 16}, {"name": "Robert Knepper", "character": "Don Surine", "id": 17343, "credit_id": "52fe438fc3a36847f805db1f", "cast_id": 18, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 17}, {"name": "Helen Slayton-Hughes", "character": "Mary", "id": 31510, "credit_id": "52fe438fc3a36847f805db0f", "cast_id": 14, "profile_path": "/j3KIRdFgiAyqtdsLQXxgMZO6el4.jpg", "order": 18}, {"name": "Frank Langella", "character": "William Paley", "id": 8924, "credit_id": "52fe438fc3a36847f805db27", "cast_id": 20, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 19}, {"name": "Peter Jacobson", "character": "Jimmy", "id": 31514, "credit_id": "52fe438fc3a36847f805db2b", "cast_id": 21, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 20}], "directors": [{"name": "George Clooney", "department": "Directing", "job": "Director", "credit_id": "52fe4390c3a36847f805db79", "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "id": 1461}], "vote_average": 6.4, "runtime": 93}, "3293": {"poster_path": "/62NXimypwBEiu9IS2Z6R5OI5Ncu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This film is the semi-humorous documentary about the men who made the world of technology what it is today, their struggles during college, the founding of their companies, and the ingenious actions they took to build up the global corporate empires of Apple Computer Inc. and Microsoft Corporation.", "video": false, "id": 3293, "genres": [{"id": 18, "name": "Drama"}], "title": "Pirates of Silicon Valley", "tagline": "The true story of how Bill Gates and Steve Jobs changed the world.", "vote_count": 70, "homepage": "http://alt.tnt.tv/movies/tntoriginals/pirates/frame_index.htm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0168122", "adult": false, "backdrop_path": "/zKJ5KT4yLoIg2P3xrcs6yLAO6Zi.jpg", "production_companies": [{"name": "Turner Network Television", "id": 678}, {"name": "Haft Entertainment", "id": 1363}, {"name": "St. Nick Productions", "id": 1364}], "release_date": "1999-06-20", "popularity": 0.47649346821352, "original_title": "Pirates of Silicon Valley", "budget": 0, "cast": [{"name": "Noah Wyle", "character": "Steve Jobs", "id": 13526, "credit_id": "52fe4390c3a36847f805dbd9", "cast_id": 1, "profile_path": "/golhxKbDQUFZTlVKuDquN7r3CS2.jpg", "order": 0}, {"name": "Joey Slotnick", "character": "Steve Wozniak", "id": 9998, "credit_id": "52fe4390c3a36847f805dbdd", "cast_id": 2, "profile_path": "/mEMRP0j65jpYVI4Xv5o0slFpRxP.jpg", "order": 1}, {"name": "J. G. Hertzler", "character": "Ridley Scott", "id": 31527, "credit_id": "52fe4390c3a36847f805dbe1", "cast_id": 3, "profile_path": "/qVrA7iW81MyOe9LOZun7AufETRw.jpg", "order": 2}, {"name": "Anthony Michael Hall", "character": "Bill Gates", "id": 1904, "credit_id": "52fe4390c3a36847f805dbe5", "cast_id": 4, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 3}, {"name": "Wayne P\u00e9re", "character": "Captain Crunch", "id": 31528, "credit_id": "52fe4390c3a36847f805dbe9", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Sheila Shaw", "character": "Mrs. Wozniak", "id": 31529, "credit_id": "52fe4390c3a36847f805dbed", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Gema Zamprogna", "character": "Arlene", "id": 31530, "credit_id": "52fe4390c3a36847f805dbf1", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "John Di Maggio", "character": "Steve Ballmer", "id": 31531, "credit_id": "52fe4390c3a36847f805dbf5", "cast_id": 8, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 7}, {"name": "Josh Hopkins", "character": "Paul Allen", "id": 31532, "credit_id": "52fe4390c3a36847f805dbf9", "cast_id": 9, "profile_path": "/4FF6p6G6SAUDJcfOx6GSFQrfTfq.jpg", "order": 8}, {"name": "Gailard Sartain", "character": "Ed Roberts", "id": 2886, "credit_id": "52fe4390c3a36847f805dbfd", "cast_id": 10, "profile_path": "/QFQlZdsM0QEUDWll19fgnxALYq.jpg", "order": 9}, {"name": "Allan Kolman", "character": "Therapeut", "id": 31533, "credit_id": "52fe4390c3a36847f805dc01", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Marcus Giamatti", "character": "Dan Kottke", "id": 31534, "credit_id": "52fe4390c3a36847f805dc05", "cast_id": 12, "profile_path": "/ajRY1q4z8tIRXLcaNxU7o05MPtY.jpg", "order": 11}, {"name": "Melissa McBride", "character": "Elizabeth Holmes", "id": 31535, "credit_id": "52fe4390c3a36847f805dc09", "cast_id": 13, "profile_path": "/mWx65szXSk2iywkkKSM8tTVHap5.jpg", "order": 12}, {"name": "Jeffrey Nordling", "character": "Mike Markkula", "id": 24048, "credit_id": "52fe4390c3a36847f805dc0d", "cast_id": 14, "profile_path": "/qLEiNpTGAoizKW9nzINSlrg9d2h.jpg", "order": 13}, {"name": "Marc Worden", "character": "Chris Larson", "id": 31536, "credit_id": "52fe4390c3a36847f805dc11", "cast_id": 15, "profile_path": "/mC7aL1zkm6U23tfPyqJ6w2TyIre.jpg", "order": 14}], "directors": [{"name": "Martyn Burke", "department": "Directing", "job": "Director", "credit_id": "52fe4390c3a36847f805dc35", "profile_path": null, "id": 15872}], "vote_average": 6.3, "runtime": 97}, "232672": {"poster_path": "/l99PKd9tdwtpOS5jxHwDGKTsVUo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123494610, "overview": "After a bad blind date, a man and woman find themselves stuck together at a resort for families, where their attractions grows as their respective kids benefit from the burgeoning relationship.", "video": false, "id": 232672, "genres": [{"id": 35, "name": "Comedy"}], "title": "Blended", "tagline": "Single Dad, No Clue. Single Mum, Flying Solo.", "vote_count": 323, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1086772", "adult": false, "backdrop_path": "/pA6FQxybVUjNlbYUAJJupLTfUsN.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Gulfstream Pictures", "id": 20788}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Karz Entertainment", "id": 4194}], "release_date": "2014-05-23", "popularity": 1.77732224993831, "original_title": "Blended", "budget": 40000000, "cast": [{"name": "Drew Barrymore", "character": "Lauren", "id": 69597, "credit_id": "52fe4e07c3a36847f827a1f3", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Adam Sandler", "character": "Jim", "id": 19292, "credit_id": "52fe4e07c3a36847f827a1ef", "cast_id": 1, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 1}, {"name": "Wendi McLendon-Covey", "character": "Jen", "id": 63234, "credit_id": "52fe4e07c3a36847f827a1f7", "cast_id": 3, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 2}, {"name": "Bella Thorne", "character": "Hilary", "id": 98285, "credit_id": "52fe4e07c3a36847f827a1fb", "cast_id": 4, "profile_path": "/8dHvzSKt9Lfz75kMzN2eznQ8ci8.jpg", "order": 3}, {"name": "Terry Crews", "character": "Nickens", "id": 53256, "credit_id": "52fe4e07c3a36847f827a1ff", "cast_id": 5, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 4}, {"name": "Joel McHale", "character": "Mark", "id": 74949, "credit_id": "52fe4e07c3a36847f827a209", "cast_id": 7, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 5}, {"name": "Lauren Lapkus", "character": "Tracy", "id": 591834, "credit_id": "52fe4e07c3a36847f827a20d", "cast_id": 8, "profile_path": "/jVfj2ZsbIDOjjTXaQMMURrhLEHM.jpg", "order": 6}, {"name": "Kevin Nealon", "character": "Eddy", "id": 58478, "credit_id": "52fe4e07c3a36847f827a211", "cast_id": 9, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 7}, {"name": "Alyvia Alyn Lind", "character": "Lou", "id": 1274510, "credit_id": "52fe4e07c3a36847f827a219", "cast_id": 11, "profile_path": "/iRgOBaCvrBLJm1q2vob9lQNpQa6.jpg", "order": 9}, {"name": "Emma Fuhrmann", "character": "Espn", "id": 1028454, "credit_id": "52fe4e07c3a36847f827a21d", "cast_id": 13, "profile_path": "/d3hfaTf5yWmUVQUDkL6QY8f42WX.jpg", "order": 10}, {"name": "Anna Colwell", "character": "Bubbles", "id": 118593, "credit_id": "52fe4e07c3a36847f827a221", "cast_id": 14, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 11}, {"name": "Abdoulaye N'Gom", "character": "Mfana", "id": 953505, "credit_id": "52fe4e07c3a36847f827a225", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Kyle Red Silverstein", "character": "Tyler", "id": 1274511, "credit_id": "52fe4e07c3a36847f827a229", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Braxton Beckham", "character": "Brendan", "id": 1428393, "credit_id": "54e3e07492514110990048d9", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Zak Henri", "character": "Jake", "id": 1428394, "credit_id": "54e3e095925141454f007dc6", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Jessica Lowe", "character": "Ginger", "id": 1428395, "credit_id": "54e3e0a79251411953009f38", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Shaquille O'Neal", "character": "Doug", "id": 35806, "credit_id": "54e3e0b3c3a36823d4001732", "cast_id": 28, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 17}, {"name": "Dan Patrick", "character": "Dick", "id": 166029, "credit_id": "54e3e0b99251411953009f3e", "cast_id": 29, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 18}, {"name": "Alexis Arquette", "character": "Georgina", "id": 19578, "credit_id": "54e3e0c7925141195600a836", "cast_id": 30, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 19}, {"name": "Mary Pat Gleason", "character": "Pharmacy Cashier", "id": 62595, "credit_id": "54e3e0d2c3a368486f001e5a", "cast_id": 31, "profile_path": "/crJCES2ttMVhuU2gFxrRg1jDWum.jpg", "order": 20}, {"name": "Allen Covert", "character": "220 Tom", "id": 20818, "credit_id": "54e3e0e4c3a368454d00a273", "cast_id": 32, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 21}, {"name": "Jared Sandler", "character": "Cute Teenage Boy", "id": 60961, "credit_id": "54ee55859251417971004a2c", "cast_id": 33, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 22}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe4e07c3a36847f827a205", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.7, "runtime": 117}, "52449": {"poster_path": "/ejTcAKe5F3zsvU9GXyl2ODAhkWl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 216197492, "overview": "A lazy, incompetent middle school teacher who hates her job and her students is forced to return to her job to make enough money for a boob job after her rich fianc\u00e9 dumps her.", "video": false, "id": 52449, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bad Teacher", "tagline": "She doesn't give an F.", "vote_count": 432, "homepage": "http://www.areyouabadteacher.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1284575", "adult": false, "backdrop_path": "/qllCPxcPbwbrOAXcQqXjVeJfuvF.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mosaic Media Group", "id": 748}], "release_date": "2011-06-19", "popularity": 0.948632036473938, "original_title": "Bad Teacher", "budget": 20000000, "cast": [{"name": "Jason Segel", "character": "Russell Gettis", "id": 41088, "credit_id": "52fe482cc3a36847f815b159", "cast_id": 2, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "Elizabeth Halsey", "id": 6941, "credit_id": "52fe482cc3a36847f815b15d", "cast_id": 3, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Scott Delacorte", "id": 12111, "credit_id": "52fe482cc3a36847f815b161", "cast_id": 4, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Lucy Punch", "character": "Amy Squirrel", "id": 66446, "credit_id": "52fe482cc3a36847f815b165", "cast_id": 5, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 3}, {"name": "Phyllis Smith", "character": "Lynn Davies", "id": 169200, "credit_id": "52fe482cc3a36847f815b181", "cast_id": 10, "profile_path": "/yjDRnyOcK3acHYLRYTplnvhLnUn.jpg", "order": 4}, {"name": "John Michael Higgins", "character": "Principal Wally Snur", "id": 8265, "credit_id": "52fe482cc3a36847f815b185", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 5}, {"name": "Jillian Armenante", "character": "Ms. Pavicic", "id": 20469, "credit_id": "52fe482cc3a36847f815b189", "cast_id": 12, "profile_path": "/3nvYOL6Vq7iY5OJgeubowsmbLTA.jpg", "order": 6}, {"name": "Dave Allen", "character": "Sandy Pinkus", "id": 88971, "credit_id": "5332f5e4c3a3686a7f00478c", "cast_id": 13, "profile_path": "/rvSLaWzULGUqwieZyMJ3BNCZYTd.jpg", "order": 7}, {"name": "Matthew J. Evans", "character": "Garrett Tiara", "id": 207006, "credit_id": "5332f5fbc3a3686a9d0046d0", "cast_id": 14, "profile_path": "/yvPTr2Twct3VPRaUJ3GlQmkJ8VS.jpg", "order": 8}, {"name": "Kaitlyn Dever", "character": "Sasha Abernathy", "id": 481337, "credit_id": "5332f60ac3a3686aaf004758", "cast_id": 15, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 9}, {"name": "Igal Ben Yair", "character": "Arkady", "id": 980152, "credit_id": "5332f62dc3a3686a9d0046d6", "cast_id": 17, "profile_path": "/7nPidWYQcR33PXtwNwsKGeD1xjR.jpg", "order": 11}, {"name": "Aja Bair", "character": "Devon", "id": 980153, "credit_id": "5332f639c3a3686a8e0045be", "cast_id": 18, "profile_path": "/rAC5O0qx008LsL8SKrgyMFJLilM.jpg", "order": 12}, {"name": "Andra Nechita", "character": "Gaby", "id": 997379, "credit_id": "5332f647c3a3686a7f004794", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Noah Munck", "character": "Tristan", "id": 221125, "credit_id": "5332f656c3a3686aaf004762", "cast_id": 20, "profile_path": "/azP86nJZHgtpX2hNagzx8VVJSNT.jpg", "order": 14}, {"name": "Molly Shannon", "character": "Melody", "id": 28640, "credit_id": "53f587a9c3a36833fa003022", "cast_id": 22, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 15}, {"name": "Kathryn Newton", "character": "Chase Rubin-Rosse", "id": 221192, "credit_id": "54fe28409251410e5a0001bf", "cast_id": 23, "profile_path": "/3GeXNWqXLrf7yut63ce3fU3oGmR.jpg", "order": 16}], "directors": [{"name": "Jake Kasdan", "department": "Directing", "job": "Director", "credit_id": "52fe482cc3a36847f815b155", "profile_path": "/1jmlwJ7Y0a7fp28bJLr73u12wbv.jpg", "id": 51851}], "vote_average": 5.4, "runtime": 92}, "191714": {"poster_path": "/xFJqU1W5WlJiKr4Witnb7h9HNHn.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IN", "name": "India"}], "revenue": 0, "overview": "A mistaken delivery in Mumbai's famously efficient lunchbox delivery system (Mumbai's Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.", "video": false, "id": 191714, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Lunchbox", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt2350496", "adult": false, "backdrop_path": "/uLBtXH5t0XQJujyRfnz9ifwnsMj.jpg", "production_companies": [{"name": "UTV Motion Pictures", "id": 2320}], "release_date": "2013-09-19", "popularity": 0.428818778367691, "original_title": "Dabba", "budget": 0, "cast": [{"name": "Irrfan Khan", "character": "Saajan Fernandes", "id": 76793, "credit_id": "52fe4c8f9251416c910f8cd3", "cast_id": 2, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 0}, {"name": "Nimrat Kaur", "character": "Ila", "id": 1077932, "credit_id": "52fe4c8f9251416c910f8cd7", "cast_id": 3, "profile_path": "/r9i6vkn9uzc6mzEU74PUFOJidwK.jpg", "order": 1}, {"name": "Nawazuddin Siddiqui", "character": "Shaikh", "id": 85047, "credit_id": "52fe4c8f9251416c910f8cdb", "cast_id": 4, "profile_path": "/mzkiEQYW96AdxilYzSFp5Wo4Fqt.jpg", "order": 2}, {"name": "Denzil Smith", "character": "Mr. Shroff", "id": 933391, "credit_id": "52fe4c8f9251416c910f8cdf", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Bharati Achrekar", "character": "Mrs. Deshpande", "id": 587092, "credit_id": "52fe4c8f9251416c910f8ce3", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Nakul Vaid", "character": "Rajeev", "id": 1052353, "credit_id": "52fe4c8f9251416c910f8ce7", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Yashvi Puneet Nagar", "character": "Yavshi", "id": 1295644, "credit_id": "53094f5e925141111400283c", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Lillete Dubey", "character": "Ila's Mother", "id": 6498, "credit_id": "530cd97a9251411444001280", "cast_id": 10, "profile_path": "/pO6sx2eb6SREAOGNGtva0J7b6NB.jpg", "order": 7}, {"name": "Shruti Bapna", "character": "Mehrunnisa", "id": 1246781, "credit_id": "530cd9879251411428001379", "cast_id": 11, "profile_path": null, "order": 8}], "directors": [{"name": "Ritesh Batra", "department": "Directing", "job": "Director", "credit_id": "52fe4c8f9251416c910f8ccf", "profile_path": null, "id": 1117026}], "vote_average": 7.0, "runtime": 104}, "52451": {"poster_path": "/n8ob0xjLIjnvqgWY57rPQYOw7t.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132274484, "overview": "The hot-headed young D'Artagnan along with three former legendary but now down on their luck Musketeers must unite and defeat a beautiful double agent and her villainous employer from seizing the French throne and engulfing Europe in war.", "video": false, "id": 52451, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "The Three Musketeers", "tagline": "Every legend has a new beginning.", "vote_count": 326, "homepage": "http://www.threemusketeers-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1509767", "adult": false, "backdrop_path": "/jU5iViCqvycEnmbX04kYZi10lnR.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Impact Pictures", "id": 248}, {"name": "Nouvelles \u00c9ditions de Films (NEF)", "id": 753}, {"name": "New Legacy", "id": 939}], "release_date": "2011-10-20", "popularity": 0.823484854937928, "original_title": "The Three Musketeers", "budget": 75000000, "cast": [{"name": "Milla Jovovich", "character": "M'lady De Winter", "id": 63, "credit_id": "52fe482cc3a36847f815b21b", "cast_id": 2, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Orlando Bloom", "character": "Duke of Buckingham", "id": 114, "credit_id": "52fe482cc3a36847f815b21f", "cast_id": 3, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 1}, {"name": "Logan Lerman", "character": "D'Artagnan", "id": 33235, "credit_id": "52fe482cc3a36847f815b223", "cast_id": 4, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Ray Stevenson", "character": "Porthos", "id": 56614, "credit_id": "52fe482cc3a36847f815b227", "cast_id": 5, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 3}, {"name": "Matthew Macfadyen", "character": "Athos", "id": 15576, "credit_id": "52fe482cc3a36847f815b22b", "cast_id": 6, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 4}, {"name": "Luke Evans", "character": "Aramis", "id": 114019, "credit_id": "52fe482cc3a36847f815b22f", "cast_id": 7, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 5}, {"name": "Mads Mikkelsen", "character": "Rochefort", "id": 1019, "credit_id": "52fe482cc3a36847f815b233", "cast_id": 8, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 6}, {"name": "Christoph Waltz", "character": "Cardinal Richelieu", "id": 27319, "credit_id": "52fe482cc3a36847f815b237", "cast_id": 9, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 7}, {"name": "Freddie Fox", "character": "King Louis XVIII of France", "id": 1014931, "credit_id": "52fe482cc3a36847f815b259", "cast_id": 15, "profile_path": "/kOPYh0Jr8lAUTmbyDZiES9Lx1j8.jpg", "order": 8}, {"name": "Gabriella Wilde", "character": "Constance", "id": 1014932, "credit_id": "52fe482cc3a36847f815b25d", "cast_id": 16, "profile_path": "/xbhScoMy3P6pK8Eg5V3EbGoxRSg.jpg", "order": 9}, {"name": "Juno Temple", "character": "Queen Anne", "id": 36594, "credit_id": "52fe482cc3a36847f815b261", "cast_id": 17, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 10}, {"name": "Til Schweiger", "character": "Cagliostro", "id": 1844, "credit_id": "52fe482cc3a36847f815b265", "cast_id": 18, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 11}, {"name": "James Corden", "character": "Planchet", "id": 55466, "credit_id": "52fe482cc3a36847f815b269", "cast_id": 19, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 12}, {"name": "Dexter Fletcher", "character": "D'Artagnan's Father", "id": 974, "credit_id": "52fe482cc3a36847f815b26d", "cast_id": 20, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 13}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe482cc3a36847f815b217", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.6, "runtime": 110}, "134374": {"poster_path": "/3AWSwYavODs0lL916NE9bLJJNTo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86175291, "overview": "Based on the true story of Daniel Lugo (Mark Wahlberg) a Miami bodybuilder who wants to live the American dream. He would like to have the money that other people have. So he enlists the help of fellow bodybuilder Adrian Doorbal (Anthony Mackie) and ex-convict, Christian bodybuilder Paul Doyle (Dwayne Johnson). Their kidnapping and extortion scheme goes terribly wrong since they have muscles for brains and they're left to haphazardly try to hold onto the elusive American dream.", "video": false, "id": 134374, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Pain & Gain", "tagline": "Their American Dream Is Bigger Than Yours", "vote_count": 680, "homepage": "http://www.painandgainmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1980209", "adult": false, "backdrop_path": "/uWREpRwvl2AYqKNmrubGgE68gnC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2013-04-26", "popularity": 1.1588517509769, "original_title": "Pain & Gain", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Daniel Lugo", "id": 13240, "credit_id": "52fe4bcdc3a368484e199c6b", "cast_id": 6, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Dwayne Johnson", "character": "Paul Doyle", "id": 18918, "credit_id": "52fe4bcdc3a368484e199c73", "cast_id": 8, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 1}, {"name": "Anthony Mackie", "character": "Adrian Doorbal", "id": 53650, "credit_id": "52fe4bcdc3a368484e199c7f", "cast_id": 11, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 2}, {"name": "Tony Shalhoub", "character": "Victor Kershaw", "id": 4252, "credit_id": "52fe4bcdc3a368484e199c83", "cast_id": 12, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 3}, {"name": "Ed Harris", "character": "Ed DuBois", "id": 228, "credit_id": "52fe4bcdc3a368484e199c7b", "cast_id": 10, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 4}, {"name": "Rob Corddry", "character": "John Mese", "id": 52997, "credit_id": "52fe4bcdc3a368484e199c87", "cast_id": 13, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 5}, {"name": "Bar Paly", "character": "Sorina Luminita", "id": 963117, "credit_id": "52fe4bcdc3a368484e199ca9", "cast_id": 22, "profile_path": "/e3BkVd6wXrJvTlBfoosuGkAKSTp.jpg", "order": 6}, {"name": "Rebel Wilson", "character": "Ramona Eldridge", "id": 221581, "credit_id": "52fe4bcdc3a368484e199c6f", "cast_id": 7, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 7}, {"name": "Ken Jeong", "character": "Johnny Wu", "id": 83586, "credit_id": "52fe4bcdc3a368484e199c77", "cast_id": 9, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 8}, {"name": "Michael Rispoli", "character": "Frank Griga", "id": 18313, "credit_id": "52fe4bcdc3a368484e199cad", "cast_id": 23, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 9}, {"name": "Keili Lefkovitz", "character": "Krisztina Furton", "id": 89857, "credit_id": "52fe4bcdc3a368484e199cb1", "cast_id": 24, "profile_path": "/c6oMFOtN3DRQfW62BB7vmtR82ab.jpg", "order": 10}, {"name": "Vivi Pineda", "character": "Detective Haworth", "id": 931218, "credit_id": "52fe4bcdc3a368484e199c8b", "cast_id": 14, "profile_path": "/2DpbILrj3wlJ0wjr71yh1W8WsST.jpg", "order": 11}, {"name": "Christopher Jestin Langstaff", "character": "Nine-Year-Old Boy/Rusty", "id": 1172379, "credit_id": "52fe4bcdc3a368484e199c95", "cast_id": 17, "profile_path": "/8G8mo2wrRs7tyfnGnNxHY6TSKY.jpg", "order": 12}, {"name": "Gustavo Quiroz Jr.", "character": "Son of Victor Kershaw", "id": 1172381, "credit_id": "52fe4bcdc3a368484e199c99", "cast_id": 18, "profile_path": "/7L5W81c3rbwcv6eNvUqiy7v9cl4.jpg", "order": 13}, {"name": "Corinne Ferrer", "character": "Basketball Girl", "id": 1172382, "credit_id": "52fe4bcdc3a368484e199c9d", "cast_id": 19, "profile_path": "/iA3zNzsoVkD1p6ijdZSsST7VRNg.jpg", "order": 14}, {"name": "Zack Moore", "character": "Young Daniel Lugo", "id": 1172383, "credit_id": "52fe4bcdc3a368484e199ca1", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Kory Getman", "character": "Teenage Daniel Lugo", "id": 1172384, "credit_id": "52fe4bcdc3a368484e199ca5", "cast_id": 21, "profile_path": "/dlLdhSH4yIvXgxmttR2PZozH5Hd.jpg", "order": 16}, {"name": "Peter Stormare", "character": "Dr. Bjornson", "id": 53, "credit_id": "52fe4bcdc3a368484e199cb5", "cast_id": 25, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 17}, {"name": "Larry Hankin", "character": "Pastor Randy", "id": 11519, "credit_id": "52fe4bcdc3a368484e199cb9", "cast_id": 26, "profile_path": "/biJbpyFcZXShqCNe41Z1kc82Gkb.jpg", "order": 18}, {"name": "Tony Plana", "character": "Captain Lopez", "id": 41737, "credit_id": "52fe4bcdc3a368484e199cbd", "cast_id": 27, "profile_path": "/gEcsHeOyejSJr4Ua2xqGxnyjw1J.jpg", "order": 19}, {"name": "Peter Stormare", "character": "Dr. Bjornson", "id": 53, "credit_id": "52fe4bcdc3a368484e199cc1", "cast_id": 28, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 20}, {"name": "Brian Stepanek", "character": "Brad McCalister", "id": 146391, "credit_id": "52fe4bcdc3a368484e199cc5", "cast_id": 29, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 21}, {"name": "Persei Caputo", "character": "Judy", "id": 1272982, "credit_id": "52fe4bcdc3a368484e199cc9", "cast_id": 30, "profile_path": "/2ixypNCFL6qaNKivACOF8Yu7ywQ.jpg", "order": 22}, {"name": "Bill Kelly", "character": "Jim", "id": 42905, "credit_id": "52fe4bcdc3a368484e199ccd", "cast_id": 31, "profile_path": "/3S1eUI4crF07mZoEil0N4uaFBK5.jpg", "order": 23}, {"name": "Emily Rutherfurd", "character": "Carolyn 'Sissy' Du Bois", "id": 1233672, "credit_id": "52fe4bcdc3a368484e199d1f", "cast_id": 47, "profile_path": "/1clXrlBKFAAQ7ltkMp1uogAa6Ji.jpg", "order": 24}, {"name": "Wladimir Klitschko", "character": "Client", "id": 47780, "credit_id": "530c4b07c3a3685c03000cd0", "cast_id": 54, "profile_path": null, "order": 29}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe4bcdc3a368484e199c91", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 130}, "44264": {"poster_path": "/qc7vaF5fIeTllAykdP3wldlMyRh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 249250624, "overview": "Following the murder of her father by hired hand Tom Chaney, 14-year-old farm girl Mattie Ross sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find, a man with \"true grit,\" Reuben J. \"Rooster\" Cogburn. Mattie insists on accompanying Cogburn, whose drinking, sloth, and generally reprobate character do not augment her faith in him. Against his wishes, she joins him in his trek into the Indian Nations in search of Chaney. They are joined by Texas Ranger LaBoeuf, who wants Chaney for his own purposes. The unlikely trio find danger and adventure on the journey, and each has his or her \"grit\" tested.", "video": false, "id": 44264, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "True Grit", "tagline": "Punishment Comes One Way or Another.", "vote_count": 569, "homepage": "http://www.truegritmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1403865", "adult": false, "backdrop_path": "/wDPmggrApz7nxy4BAQk3rCLi3R6.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2010-12-22", "popularity": 1.39620851564112, "original_title": "True Grit", "budget": 38000000, "cast": [{"name": "Jeff Bridges", "character": "Rooster Cogburn", "id": 1229, "credit_id": "52fe4681c3a36847f8102c4b", "cast_id": 24, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 3}, {"name": "Hailee Steinfeld", "character": "Mattie Ross", "id": 130640, "credit_id": "52fe4681c3a36847f8102c4f", "cast_id": 25, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 4}, {"name": "Matt Damon", "character": "LaBoeuf", "id": 1892, "credit_id": "52fe4681c3a36847f8102c53", "cast_id": 26, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 5}, {"name": "Josh Brolin", "character": "Tom Chaney", "id": 16851, "credit_id": "52fe4681c3a36847f8102c57", "cast_id": 27, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 6}, {"name": "Barry Pepper", "character": "Lucky Ned Pepper", "id": 12834, "credit_id": "52fe4681c3a36847f8102c5b", "cast_id": 28, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 7}, {"name": "Dakin Matthews", "character": "Col. Stonehill", "id": 43364, "credit_id": "52fe4681c3a36847f8102c5f", "cast_id": 29, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 8}, {"name": "Jarlath Conroy", "character": "Undertaker", "id": 54856, "credit_id": "52fe4681c3a36847f8102c63", "cast_id": 30, "profile_path": "/azAslEkvpXkTviBokJDV9ecAbBO.jpg", "order": 9}, {"name": "Paul Rae", "character": "Emmett Quincy", "id": 61260, "credit_id": "52fe4681c3a36847f8102c67", "cast_id": 31, "profile_path": "/ny1kzrULA4dA4j95oETiYZCl6GV.jpg", "order": 10}, {"name": "Domhnall Gleeson", "character": "Moon (The Kid)", "id": 93210, "credit_id": "52fe4681c3a36847f8102c6b", "cast_id": 32, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 11}, {"name": "Elizabeth Marvel", "character": "40-Year-Old Mattie", "id": 126713, "credit_id": "52fe4681c3a36847f8102c6f", "cast_id": 33, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 12}, {"name": "Roy Lee Jones", "character": "Yarnell", "id": 177157, "credit_id": "52fe4681c3a36847f8102c73", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Ed Lee Corbin", "character": "Bear Man", "id": 240869, "credit_id": "52fe4681c3a36847f8102c77", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Leon Russom", "character": "Sheriff", "id": 169920, "credit_id": "52fe4681c3a36847f8102c7b", "cast_id": 36, "profile_path": "/kITkYMh1VZgHSAMlMxsZ6jaUF7C.jpg", "order": 15}, {"name": "Bruce Green", "character": "Harold Parmalee", "id": 12970, "credit_id": "52fe4681c3a36847f8102c7f", "cast_id": 37, "profile_path": "/7xCCRDDC11AZRIdV9cMTEOOxrbd.jpg", "order": 16}, {"name": "Candyce Hinkle", "character": "Boarding House Landlady", "id": 52882, "credit_id": "52fe4681c3a36847f8102c83", "cast_id": 38, "profile_path": "/kg3cCCLQG6rx7FulnUcXxHFQZKX.jpg", "order": 17}, {"name": "Peter Leung", "character": "Mr. Lee", "id": 240870, "credit_id": "52fe4681c3a36847f8102c87", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Don Pirl", "character": "Cole Younger", "id": 240871, "credit_id": "52fe4681c3a36847f8102c8b", "cast_id": 40, "profile_path": null, "order": 19}, {"name": "Joe Stevens", "character": "Cross-examining Lawyer", "id": 177905, "credit_id": "52fe4681c3a36847f8102c8f", "cast_id": 41, "profile_path": "/kVH3JfyhXdVyBeLJkxjH1Dw6IWm.jpg", "order": 20}, {"name": "David Lipman", "character": "First Lawyer", "id": 181297, "credit_id": "52fe4681c3a36847f8102c93", "cast_id": 42, "profile_path": null, "order": 21}, {"name": "Jake Walker", "character": "Judge Parker", "id": 240872, "credit_id": "52fe4681c3a36847f8102c97", "cast_id": 43, "profile_path": null, "order": 22}, {"name": "Orlando Smart", "character": "Stableboy", "id": 240873, "credit_id": "52fe4681c3a36847f8102c9b", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Ty Mitchell", "character": "Ferryman", "id": 11788, "credit_id": "52fe4681c3a36847f8102c9f", "cast_id": 45, "profile_path": null, "order": 24}, {"name": "Nicholas Sadler", "character": "Repentant Condemned Man", "id": 50402, "credit_id": "52fe4681c3a36847f8102ca3", "cast_id": 46, "profile_path": "/97hL5ECPZONeQtVBYEgj4osqfgx.jpg", "order": 25}, {"name": "Scott Sowers", "character": "Unrepentant Condemned Man", "id": 32287, "credit_id": "52fe4681c3a36847f8102ca7", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Jonathan Joss", "character": "Condemned Indian", "id": 154778, "credit_id": "52fe4681c3a36847f8102cab", "cast_id": 48, "profile_path": "/1cjHSQcnMI8Zeyn7wAbDrI0D1m.jpg", "order": 27}, {"name": "Maggie A. Goodman", "character": "Woman at Hanging", "id": 240874, "credit_id": "52fe4681c3a36847f8102caf", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Brandon Sanderson", "character": "Indian Youth at Bagby's", "id": 240875, "credit_id": "52fe4681c3a36847f8102cb3", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Ruben Nakai Campana", "character": "Indian Youth at Bagby's", "id": 240876, "credit_id": "52fe4681c3a36847f8102cb7", "cast_id": 51, "profile_path": null, "order": 30}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4681c3a36847f8102c2f", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe4681c3a36847f8102c35", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.9, "runtime": 110}, "11497": {"poster_path": "/fb6CRpryYQB5eqjohSnLbjHxJQK.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27100027, "overview": "When a casino owning dog named Charlie is murdered by his rival Carface, he finds himself in Heaven basically by default since all dogs go to heaven. However, since he wants to get back at his killer, he cons his way back to the living with the warning that doing that damns him to Hell. Once back, he teams with his old partner, Itchy to prep his retaliation. He also stumbles on to an orphan girl who can talk to the animals, thus allowing him to get the inside info on the races to ensure his wins to finance his plans. However, all the while, he is still haunted by nightmares on what's waiting for him on the other side unless he can prove that he is worthy of Heaven again.", "video": false, "id": 11497, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "All Dogs Go to Heaven", "tagline": "But not all dogs stay there!", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yzuYenLnjAHbTPeu7DLAySbcNGi.jpg", "id": 140910, "name": "All Dogs Go to Heaven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096787", "adult": false, "backdrop_path": "/46rKRjko3K3nxbmsB0lh4Z2WyUq.jpg", "production_companies": [{"name": "Goldcrest Films International", "id": 500}, {"name": "Sullivan Bluth Studios", "id": 6422}], "release_date": "1989-11-17", "popularity": 0.805702395351903, "original_title": "All Dogs Go to Heaven", "budget": 13800000, "cast": [{"name": "Burt Reynolds", "character": "Charlie B. Barkin", "id": 16475, "credit_id": "52fe444b9251416c7502fad1", "cast_id": 1, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 0}, {"name": "Dom DeLuise", "character": "Itchy Itchiford", "id": 6844, "credit_id": "52fe444b9251416c7502fad5", "cast_id": 2, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 1}, {"name": "Judith Barsi", "character": "Anne-Marie", "id": 16216, "credit_id": "52fe444b9251416c7502fad9", "cast_id": 3, "profile_path": "/us9iqhoNDbjKKVVlr3TciFLVagn.jpg", "order": 2}, {"name": "Melba Moore", "character": "Whippet Angel (Annabelle)", "id": 69604, "credit_id": "52fe444b9251416c7502fadd", "cast_id": 4, "profile_path": "/5sKKFGNDBQVuLkMWdd2l1UMAXfg.jpg", "order": 3}, {"name": "Daryl Gilley", "character": "Dog Caster", "id": 1024536, "credit_id": "52fe444b9251416c7502fb23", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Candy Devine", "character": "Vera", "id": 217091, "credit_id": "52fe444b9251416c7502fb27", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Vic Tayback", "character": "Carface", "id": 14069, "credit_id": "52fe444b9251416c7502fb2f", "cast_id": 20, "profile_path": "/rddNsgbWGeYckB9IB0i2s8uQdv5.jpg", "order": 6}, {"name": "Charles Nelson Reilly", "character": "Killer", "id": 1211888, "credit_id": "538373d60e0a2624cb00c90c", "cast_id": 42, "profile_path": "/33zhRygZgUe4Clge5300ZRJeIiz.jpg", "order": 7}, {"name": "Robert Fuller", "character": "Harold", "id": 38129, "credit_id": "52fe444b9251416c7502fb33", "cast_id": 21, "profile_path": "/wOUkvybLEYDVYJcaofIKS3Bioul.jpg", "order": 8}, {"name": "Earleen Carey", "character": "Kate", "id": 104450, "credit_id": "52fe444b9251416c7502fb37", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Anna Manahan", "character": "Stella Dallas", "id": 975564, "credit_id": "52fe444b9251416c7502fb3b", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Nigel Pegram", "character": "Sir Reginald", "id": 1063136, "credit_id": "52fe444b9251416c7502fb3f", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Loni Anderson", "character": "Flo", "id": 34735, "credit_id": "52fe444b9251416c7502fb43", "cast_id": 25, "profile_path": "/pVCCxFOOr6zgzvKry2rrrFWN9Ue.jpg", "order": 12}, {"name": "Ken Page", "character": "King Gator", "id": 95758, "credit_id": "52fe444b9251416c7502fb47", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Godfrey Quigley", "character": "Terrier", "id": 2279, "credit_id": "52fe444b9251416c7502fb4b", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Jay Stevens", "character": "Mastiff", "id": 1080066, "credit_id": "52fe444b9251416c7502fb4f", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe444b9251416c7502fae3", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}, {"name": "Gary Goldman", "department": "Directing", "job": "Director", "credit_id": "52fe444b9251416c7502fae9", "profile_path": "/3GPDphDxHIlT3D8GiMCKsf3X4Rj.jpg", "id": 12881}, {"name": "Dan Kuenster", "department": "Directing", "job": "Director", "credit_id": "52fe444b9251416c7502faef", "profile_path": null, "id": 69605}], "vote_average": 6.4, "runtime": 89}, "11499": {"poster_path": "/qCs0Vc3QhyqRSDLCDinOai5CVT5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost's team harboured doubts about their boss's ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.", "video": false, "id": 11499, "genres": [{"id": 18, "name": "Drama"}], "title": "Frost/Nixon", "tagline": "400 million people were waiting for the truth", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0870111", "adult": false, "backdrop_path": "/n7VX5nsHUiQargJKVCJ5dcsa39o.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Working Title Films", "id": 10163}], "release_date": "2008-10-15", "popularity": 0.524612942746119, "original_title": "Frost/Nixon", "budget": 0, "cast": [{"name": "Michael Sheen", "character": "David Frost", "id": 3968, "credit_id": "52fe444c9251416c7502fc61", "cast_id": 6, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 0}, {"name": "Frank Langella", "character": "Richard Nixon", "id": 8924, "credit_id": "52fe444c9251416c7502fc5d", "cast_id": 5, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 1}, {"name": "Kevin Bacon", "character": "Jack Brennan", "id": 4724, "credit_id": "52fe444c9251416c7502fc55", "cast_id": 3, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "James Reston Jr.", "id": 6807, "credit_id": "52fe444c9251416c7502fc59", "cast_id": 4, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Mark Simich", "character": "Hugh Hefner", "id": 66660, "credit_id": "52fe444c9251416c7502fc4b", "cast_id": 1, "profile_path": "/vpuMqT1t73jKKLqo80yI3rNTcRX.jpg", "order": 4}, {"name": "Matthew Macfadyen", "character": "John Birt", "id": 15576, "credit_id": "52fe444c9251416c7502fc6b", "cast_id": 8, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 5}, {"name": "Oliver Platt", "character": "Bob Zelnick", "id": 17485, "credit_id": "52fe444c9251416c7502fc6f", "cast_id": 9, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 6}, {"name": "Rebecca Hall", "character": "Caroline Cushing", "id": 15556, "credit_id": "52fe444c9251416c7502fc73", "cast_id": 10, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 7}, {"name": "Toby Jones", "character": "Swifty Lazar", "id": 13014, "credit_id": "52fe444c9251416c7502fc77", "cast_id": 11, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Andy Milder", "character": "Frank Gannon", "id": 1043304, "credit_id": "52fe444c9251416c7502fc7b", "cast_id": 12, "profile_path": "/pUxbi636gXl6CaeGvKrPr3j22Ea.jpg", "order": 9}, {"name": "Kate Jennings Grant", "character": "Diane Sawyer", "id": 59697, "credit_id": "52fe444c9251416c7502fc7f", "cast_id": 13, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 10}, {"name": "Gabriel Jarret", "character": "Ken Khachigian", "id": 92808, "credit_id": "52fe444c9251416c7502fc83", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Jim Meskimen", "character": "Ray Price", "id": 30697, "credit_id": "52fe444c9251416c7502fc87", "cast_id": 15, "profile_path": "/fZ1Eu6Pb98LUn0wwTU7D32a6WGR.jpg", "order": 12}, {"name": "Patty McCormack", "character": "Pat Nixon", "id": 125026, "credit_id": "52fe444c9251416c7502fc8b", "cast_id": 16, "profile_path": "/xUNk8RjLVDTvtA4mAPX8aWBRMlR.jpg", "order": 13}, {"name": "Geoffrey Blake", "character": "Interview Director", "id": 148122, "credit_id": "52fe444c9251416c7502fc8f", "cast_id": 17, "profile_path": "/8DTss5Bkio4k81k6SM1AXaNfKOA.jpg", "order": 14}, {"name": "Clint Howard", "character": "Lloyd Davis", "id": 15661, "credit_id": "52fe444c9251416c7502fc93", "cast_id": 18, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 15}, {"name": "Rance Howard", "character": "Ollie", "id": 22250, "credit_id": "53832dc00e0a2624bd00c5ed", "cast_id": 28, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 16}, {"name": "Gavin Grazer", "character": "White House Director", "id": 38572, "credit_id": "52fe444c9251416c7502fc9b", "cast_id": 20, "profile_path": "/qe5J2NMzcN2NVgVS1D04tuDUyke.jpg", "order": 17}, {"name": "Simon James", "character": "Frost Show Director", "id": 152306, "credit_id": "52fe444c9251416c7502fc9f", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Eloy Casados", "character": "Manolo Sanchez", "id": 64351, "credit_id": "52fe444c9251416c7502fca3", "cast_id": 22, "profile_path": "/myddrZZnKBZWLXS5TeisQjIBfdT.jpg", "order": 19}, {"name": "Jay White", "character": "Neil Diamond", "id": 1089547, "credit_id": "52fe444c9251416c7502fca7", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Wil Albert", "character": "Sammy Cahn", "id": 157452, "credit_id": "52fe444c9251416c7502fcab", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Keith MacKechnie", "character": "Marv Minoff", "id": 239021, "credit_id": "52fe444c9251416c7502fcaf", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Penny L. Moore", "character": "Lady with Dachshund", "id": 1089549, "credit_id": "52fe444c9251416c7502fcb3", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Janneke Arent", "character": "Frost's Female Assistant", "id": 1089550, "credit_id": "52fe444c9251416c7502fcb7", "cast_id": 27, "profile_path": null, "order": 24}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe444c9251416c7502fc51", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.8, "runtime": 122}, "41513": {"poster_path": "/8W9L7ByduypXKD7AticK7GvGqTE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125948234, "overview": "When the evil wizard Gargamel chases the tiny blue Smurfs out of their village, they tumble from their magical world and into ours -- in fact, smack dab in the middle of Central Park. Just three apples high and stuck in the Big Apple, the Smurfs must find a way to get back to their village before Gargamel tracks them down.", "video": false, "id": 41513, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Smurfs", "tagline": "Smurf Happens.", "vote_count": 466, "homepage": "http://www.smurfhappens.com/", "belongs_to_collection": {"backdrop_path": "/4q6O2Z569yHhcSDwcLEwhuNsmFV.jpg", "poster_path": "/oHnEQNLwyxPlaolWKInN85CQfOx.jpg", "id": 134897, "name": "The Smurfs Collection (Theatrical Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472181", "adult": false, "backdrop_path": "/83lCHxDeIrovVxPw2ztvwcoH6rA.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}, {"name": "Kerner Entertainment Company", "id": 7311}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2011-07-29", "popularity": 0.955388922740366, "original_title": "The Smurfs", "budget": 110000000, "cast": [{"name": "Neil Patrick Harris", "character": "Patrick Winslow", "id": 41686, "credit_id": "52fe45cfc3a36847f80dbb3b", "cast_id": 4, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Jayma Mays", "character": "Grace Winslow", "id": 34195, "credit_id": "52fe45cfc3a36847f80dbb3f", "cast_id": 5, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 1}, {"name": "Anton Yelchin", "character": "Clumsy Smurf (voice)", "id": 21028, "credit_id": "52fe45cfc3a36847f80dbb43", "cast_id": 6, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Gargamel (voice)", "id": 5587, "credit_id": "52fe45cfc3a36847f80dbb47", "cast_id": 7, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Alan Cumming", "character": "Gutsy Smurf (voice)", "id": 10697, "credit_id": "52fe45cfc3a36847f80dbb4b", "cast_id": 8, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 4}, {"name": "Katy Perry", "character": "Smurfette (voice)", "id": 111455, "credit_id": "52fe45cfc3a36847f80dbb4f", "cast_id": 9, "profile_path": "/mXSbYNKFessbuimdMIxccdRC8ph.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Odile", "id": 63522, "credit_id": "52fe45cfc3a36847f80dbb53", "cast_id": 10, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Jonathan Winters", "character": "Papa Smurf (voice)", "id": 13593, "credit_id": "52fe45cfc3a36847f80dbb5d", "cast_id": 12, "profile_path": "/j63YOBYEXhbDWbXUnqD3gb5KJ5k.jpg", "order": 7}, {"name": "George Lopez", "character": "Grouchy Smurf (voice)", "id": 41798, "credit_id": "52fe45cfc3a36847f80dbb61", "cast_id": 14, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 8}, {"name": "Paul Reubens", "character": "Jokey Smurf (voice)", "id": 5129, "credit_id": "52fe45cfc3a36847f80dbb65", "cast_id": 15, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 9}, {"name": "Kenan Thompson", "character": "Greedy Smurf (voice)", "id": 77330, "credit_id": "52fe45cfc3a36847f80dbb69", "cast_id": 16, "profile_path": "/4mHHu3XXTOQ9yPKOQ3V8jsQyupT.jpg", "order": 10}, {"name": "B. J. Novak", "character": "Baker Smurf (voice)", "id": 107770, "credit_id": "52fe45cfc3a36847f80dbb6d", "cast_id": 17, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 11}, {"name": "Jeff Foxworthy", "character": "Handy Smurf (voice)", "id": 60736, "credit_id": "52fe45cfc3a36847f80dbb71", "cast_id": 18, "profile_path": "/jetIdTUVzIeERHePwrAmKCh2SwR.jpg", "order": 12}, {"name": "Wolfgang Puck", "character": "Chef Smurf (voice)", "id": 1215462, "credit_id": "52fe45cfc3a36847f80dbbdf", "cast_id": 39, "profile_path": "/5uY8O0YkMJjcwXzVIr7zLQs7QBc.jpg", "order": 13}, {"name": "Fred Armisen", "character": "Brainy Smurf (voice)", "id": 61110, "credit_id": "52fe45cfc3a36847f80dbb75", "cast_id": 20, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 14}, {"name": "John Oliver", "character": "Vanity Smurf (voice)", "id": 84292, "credit_id": "52fe45cfc3a36847f80dbb79", "cast_id": 21, "profile_path": "/t1smh9XiGfVof4ep5ZSD8CEFQLk.jpg", "order": 15}, {"name": "Adam Wylie", "character": "Panicky Smurf (voice)", "id": 21402, "credit_id": "52fe45cfc3a36847f80dbb7d", "cast_id": 22, "profile_path": "/qSeYVaE3HKf62J4WQY12mEAKjbz.jpg", "order": 16}, {"name": "Gary Basaraba", "character": "Hefty Smurf (voice)", "id": 96228, "credit_id": "52fe45cfc3a36847f80dbb81", "cast_id": 23, "profile_path": "/mF3JQEIAUDIfNfrNdiAuh2ohFow.jpg", "order": 17}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe45cfc3a36847f80dbb31", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.5, "runtime": 103}, "60670": {"poster_path": "/kkRgQST0bEdEgqpPZMGaUB1twsQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Two French policemen, one investigating a grisly murder at a remote mountain college, the other working on the desecration of a young girl's grave by skinheads, are brought together by the clues from their respective cases. Soon after they start working together, more murders are committed, and the pair begin to discover just what dark secrets are behind the killings.", "video": false, "id": 60670, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Crimson Rivers", "tagline": "Evil rises to new heights.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hNZb0GKybJzF7x5H5dBtLRiw8TA.jpg", "id": 3963, "name": "The Crimson Rivers Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0228786", "adult": false, "backdrop_path": "/pXmMiqordTEbRTDNlKPnyielNVA.jpg", "production_companies": [{"name": "Gaumont International", "id": 7961}], "release_date": "2000-09-26", "popularity": 0.248297422669183, "original_title": "Les Rivi\u00e8res pourpres", "budget": 2365000, "cast": [{"name": "Jean Reno", "character": "Pierre Niemans", "id": 1003, "credit_id": "52fe4630c3a368484e083957", "cast_id": 2, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Max Kerkerian", "id": 1925, "credit_id": "52fe4630c3a368484e08395b", "cast_id": 3, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "Nadia Far\u00e8s", "character": "Fanny Ferreira", "id": 34627, "credit_id": "52fe4630c3a368484e08395f", "cast_id": 4, "profile_path": "/lwqyjHyKAHbIqK5BYWEM6gSO8KK.jpg", "order": 2}, {"name": "Dominique Sanda", "character": "Sister Andr\u00e9e", "id": 24590, "credit_id": "52fe4630c3a368484e083963", "cast_id": 5, "profile_path": "/qNLSPZshmNb5j63iCwiKLd10JPI.jpg", "order": 3}, {"name": "Karim Belkhadra", "character": "Captain Dahmane", "id": 35076, "credit_id": "52fe4630c3a368484e083967", "cast_id": 6, "profile_path": "/zUqyn3aQXTzeP1n8yd8Udt1twYA.jpg", "order": 4}, {"name": "Jean-Pierre Cassel", "character": "Dr. Bernard Chernez\u00e9", "id": 19162, "credit_id": "52fe4630c3a368484e08396b", "cast_id": 7, "profile_path": "/yWIAIvRdx0omV9ZOUwLINzHKois.jpg", "order": 5}, {"name": "Didier Flamand", "character": "The Dean", "id": 35077, "credit_id": "52fe4630c3a368484e08396f", "cast_id": 8, "profile_path": "/mYIHYvT9D6tw7zxXI6f5W89kyus.jpg", "order": 6}, {"name": "Philippe Nahon", "character": "Homme \u00e0 la station service", "id": 5444, "credit_id": "52fe4630c3a368484e083973", "cast_id": 10, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 7}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe4630c3a368484e083953", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 6.4, "runtime": 106}, "11522": {"poster_path": "/td6vfzrDZnGXsMfgZQfchRWcqv6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10103647, "overview": "Young Andie is one of the not-so-popular girls in high school. She usually hangs out with her friends Iona or Duckie. Duckie has always had a crush on her, but now she has met a new guy from school, Blane. He's one of the rich and popular guys but can the two worlds meet?", "video": false, "id": 11522, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Pretty in Pink", "tagline": "Blane's a pretty cool guy. Andie's pretty in pink. And Ducky's pretty crazy.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091790", "adult": false, "backdrop_path": "/4MVbLN7eP6B7C7vKz1GhfD6Uyet.jpg", "production_companies": [{"name": "Paramount", "id": 6033}], "release_date": "1986-02-28", "popularity": 0.521301211470995, "original_title": "Pretty in Pink", "budget": 25000000, "cast": [{"name": "Molly Ringwald", "character": "Andie Walsh", "id": 21625, "credit_id": "52fe44519251416c75030885", "cast_id": 1, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 0}, {"name": "Jon Cryer", "character": "Philip F. \"Duckie\" Dale", "id": 69718, "credit_id": "52fe44519251416c75030889", "cast_id": 2, "profile_path": "/kXoEUv6pfXZGFuxVTTiuSVnac7B.jpg", "order": 1}, {"name": "Andrew McCarthy", "character": "Blane McDonough", "id": 37041, "credit_id": "52fe44519251416c7503088d", "cast_id": 3, "profile_path": "/5ChWnInkq2BDpIT1Yoa9guqLiQS.jpg", "order": 2}, {"name": "Harry Dean Stanton", "character": "Jack Walsh", "id": 5048, "credit_id": "52fe44519251416c75030891", "cast_id": 4, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 3}, {"name": "Annie Potts", "character": "Iona", "id": 8873, "credit_id": "52fe44519251416c750308b9", "cast_id": 11, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 4}, {"name": "James Spader", "character": "Steff", "id": 13548, "credit_id": "52fe44519251416c750308bd", "cast_id": 12, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 5}, {"name": "Kate Vernon", "character": "Benny Hanson", "id": 19740, "credit_id": "540d15a4c3a36879a8004bf6", "cast_id": 14, "profile_path": "/qQRoxwIVkRU0al9J2EUDBSD80kq.jpg", "order": 6}, {"name": "Andrew Dice Clay", "character": "Bouncer", "id": 57906, "credit_id": "540d15b0c3a368799c004f11", "cast_id": 15, "profile_path": "/1KzjDfy2r0Q8HUiEYfLvrOqVWH0.jpg", "order": 7}, {"name": "Kristy Swanson", "character": "Duckette", "id": 56128, "credit_id": "540d15c2c3a368799f004dc6", "cast_id": 16, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 8}, {"name": "Dweezil Zappa", "character": "Simon", "id": 120952, "credit_id": "540d15d6c3a368799c004f1b", "cast_id": 17, "profile_path": "/d2HSXwuYiTKzL1Lo1IEtMsAa0WX.jpg", "order": 9}, {"name": "Gina Gershon", "character": "Trombley, Girl Friend/Gym Class", "id": 11150, "credit_id": "52fe44519251416c750308c1", "cast_id": 13, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 13}], "directors": [{"name": "Howard Deutch", "department": "Directing", "job": "Director", "credit_id": "52fe44519251416c75030897", "profile_path": "/68Vae1HkU1NxQZ6KEmuxIpno7c9.jpg", "id": 26502}], "vote_average": 6.9, "runtime": 96}, "208134": {"poster_path": "/9XJ1RICUVM8nxSHFphl5c6ZyQtH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145941988, "overview": "86-year-old Irving Zisman is on a journey across America with the most unlikely companion: his 8 year-old grandson, Billy.", "video": false, "id": 208134, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jackass Presents: Bad Grandpa", "tagline": "Real people. Real reactions. Real messed up.", "vote_count": 309, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3063516", "adult": false, "backdrop_path": "/qPxbuKexc8842G6rPrQb3PV9cKq.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "MTV Films", "id": 746}, {"name": "Dickhouse Productions", "id": 6328}], "release_date": "2013-10-25", "popularity": 0.877876167108976, "original_title": "Jackass Presents: Bad Grandpa", "budget": 15000000, "cast": [{"name": "Johnny Knoxville", "character": "Irving Zisman", "id": 9656, "credit_id": "52fe4d44c3a368484e1dfddd", "cast_id": 1, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 0}, {"name": "Jackson Nicoll", "character": "Billy", "id": 1148130, "credit_id": "52fe4d44c3a368484e1dfde1", "cast_id": 2, "profile_path": "/2sEyIlZFLIzAgBUcL5dovdwQOUa.jpg", "order": 1}, {"name": "Georgina Cates", "character": "Kimmy", "id": 95789, "credit_id": "52fe4d44c3a368484e1dfdf1", "cast_id": 5, "profile_path": "/kgAOadgrgupouhfCux6cOM0Vscp.jpg", "order": 2}, {"name": "Spike Jonze", "character": "Gloria", "id": 5953, "credit_id": "52fe4d44c3a368484e1dfdf5", "cast_id": 6, "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "order": 3}, {"name": "Catherine Keener", "character": "Ellie", "id": 2229, "credit_id": "52fe4d44c3a368484e1dfdf9", "cast_id": 7, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 4}, {"name": "Kamber Hejlik", "character": "Doctor", "id": 1266854, "credit_id": "52fe4d44c3a368484e1dfdfd", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Jack Polick", "character": "Funeral Worker", "id": 60930, "credit_id": "52fe4d44c3a368484e1dfe01", "cast_id": 12, "profile_path": "/bavt2S9iwHSjQAUfvtEkxeHT5SI.jpg", "order": 6}, {"name": "Grasie Mercedes", "character": "Hostess", "id": 928542, "credit_id": "52fe4d44c3a368484e1dfe05", "cast_id": 13, "profile_path": null, "order": 7}], "directors": [{"name": "Jeff Tremaine", "department": "Directing", "job": "Director", "credit_id": "52fe4d44c3a368484e1dfded", "profile_path": "/4xrBnAaPUR91qFumZfd6gFK6xHx.jpg", "id": 56578}], "vote_average": 6.3, "runtime": 92}, "11527": {"poster_path": "/j8UmbdA1TrIVY4FANymwBSmUuCH.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34967437, "overview": "The myth of King Arthur brought to the screen. Uthur Pendragon is given the mystical sword Excalibur by Merlyn. At his death Uthur buries the sword into a stone, and the next man that can pull it out will be King of England. Years later Arthur, Uthur's bastard son draws Excalibur and becomes king. Arthur's evil half-sister Morgana sires a son with him, who may prove his downfall.", "video": false, "id": 11527, "genres": [{"id": 12, "name": "Adventure"}], "title": "Excalibur", "tagline": "Forged by a god. Foretold by a wizard. Found by a king.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0082348", "adult": false, "backdrop_path": "/5YELVKk9htZZPyiWkTrNhnI1Nb3.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Orion Pictures", "id": 41}], "release_date": "1981-04-10", "popularity": 0.726061031951279, "original_title": "Excalibur", "budget": 0, "cast": [{"name": "Nigel Terry", "character": "King Arthur", "id": 31431, "credit_id": "52fe44529251416c75030ab1", "cast_id": 1, "profile_path": "/5dtg7yKRfz03zALBSXRsK7Xw0zG.jpg", "order": 0}, {"name": "Helen Mirren", "character": "Morgana", "id": 15735, "credit_id": "52fe44529251416c75030ab5", "cast_id": 2, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 1}, {"name": "Nicholas Clay", "character": "Lancelot", "id": 31196, "credit_id": "52fe44529251416c75030b13", "cast_id": 21, "profile_path": null, "order": 2}, {"name": "Cherie Lunghi", "character": "Guenevere", "id": 20768, "credit_id": "52fe44529251416c75030ab9", "cast_id": 3, "profile_path": "/1veFTb3GYMxcw6B65ff2y2xBsMM.jpg", "order": 3}, {"name": "Paul Geoffrey", "character": "Perceval", "id": 69735, "credit_id": "52fe44529251416c75030aff", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Nicol Williamson", "character": "Merlin", "id": 51812, "credit_id": "52fe44529251416c75030b03", "cast_id": 17, "profile_path": "/kCvjXpYSCYH14mo0gtRmnV7DroV.jpg", "order": 5}, {"name": "Robert Addie", "character": "Mordred", "id": 78525, "credit_id": "52fe44529251416c75030b17", "cast_id": 22, "profile_path": "/ugrPNOiyuyCgy9zNRk7wNY4Q53B.jpg", "order": 6}, {"name": "Gabriel Byrne", "character": "Uther Pendragon", "id": 5168, "credit_id": "52fe44529251416c75030b07", "cast_id": 18, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 7}, {"name": "Keith Buckley", "character": "Uryens", "id": 104757, "credit_id": "52fe44529251416c75030b1b", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Katrine Boorman", "character": "Igrayne", "id": 38402, "credit_id": "52fe44539251416c75030b1f", "cast_id": 24, "profile_path": "/cIxijBUAvwg0QQ7nGKGIltjnCDY.jpg", "order": 9}, {"name": "Liam Neeson", "character": "Gawain", "id": 3896, "credit_id": "52fe44529251416c75030b0b", "cast_id": 19, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 10}, {"name": "Corin Redgrave", "character": "Cornwall", "id": 13328, "credit_id": "52fe44539251416c75030b23", "cast_id": 25, "profile_path": "/wOL5eQawe8hKXtPNLSKfAygzhyS.jpg", "order": 11}, {"name": "Patrick Stewart", "character": "Leondegrance", "id": 2387, "credit_id": "52fe44529251416c75030b0f", "cast_id": 20, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 12}, {"name": "Niall O'Brien", "character": "Kay", "id": 104758, "credit_id": "52fe44539251416c75030b27", "cast_id": 26, "profile_path": null, "order": 13}], "directors": [{"name": "John Boorman", "department": "Directing", "job": "Director", "credit_id": "52fe44529251416c75030abf", "profile_path": "/8o9Z3rAFrn3JNBY5cUBKcqqCXYx.jpg", "id": 19665}], "vote_average": 6.7, "runtime": 140}, "11528": {"poster_path": "/fKJUQrAm5QbVR5DqgH9U5IflHGQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32416586, "overview": "Scotty Smalls moves to a new neighborhood with his mom and stepdad, and wants to learn to play baseball. The neighborhood baseball guru Rodriquez takes Smalls under his wing. They fall into adventures involving baseball, treehouse sleep-ins, the desirous lifeguard at the local pool, the snooty rival ball team, and the travelling fair.", "video": false, "id": 11528, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Sandlot", "tagline": "A piece of paradise a half block wide and a whole summer long.", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/p2m9JzwjQukKKZfMrLF4HdW54X1.jpg", "id": 87214, "name": "The Sandlot Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108037", "adult": false, "backdrop_path": "/wSejWDOrdNj5jQO0Ql3oTwiRiSG.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1993-04-07", "popularity": 0.394476528251127, "original_title": "The Sandlot", "budget": 0, "cast": [{"name": "Tom Guiry", "character": "Scotty Smalls", "id": 4729, "credit_id": "52fe44539251416c75030b63", "cast_id": 1, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 0}, {"name": "Mike Vitar", "character": "Benjamin Franklin Rodriguez", "id": 69738, "credit_id": "52fe44539251416c75030b67", "cast_id": 2, "profile_path": "/rSZIHN0UZTnxADeNaTSFIEW6Fog.jpg", "order": 1}, {"name": "James Earl Jones", "character": "Mr. Mertle", "id": 15152, "credit_id": "52fe44539251416c75030b6b", "cast_id": 3, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 2}, {"name": "Patrick Renna", "character": "Hamilton 'Ham' Porter", "id": 69740, "credit_id": "52fe44539251416c75030b6f", "cast_id": 4, "profile_path": "/753yzJmqBYEAv718yVSE8RmMRz9.jpg", "order": 2}, {"name": "Chauncey Leopardi", "character": "Michael 'Squints' Palledorous", "id": 88599, "credit_id": "52fe44539251416c75030bb5", "cast_id": 17, "profile_path": "/hA6TSw8Bh9hWTNu7EEc2TydBANu.jpg", "order": 3}, {"name": "Marley Shelton", "character": "Wendy", "id": 6407, "credit_id": "52fe44539251416c75030bb9", "cast_id": 20, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 5}, {"name": "Daniel Zacapa", "character": "Police Chief", "id": 12054, "credit_id": "52fe44539251416c75030bbd", "cast_id": 21, "profile_path": "/lGleijPJER3lanO4cGcgfLfGRuX.jpg", "order": 6}, {"name": "Herb Muller", "character": "Young Mr. Mertle", "id": 141457, "credit_id": "52fe44539251416c75030bc1", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Karen Allen", "character": "Mom", "id": 650, "credit_id": "52fe44539251416c75030bc5", "cast_id": 24, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 8}, {"name": "Denis Leary", "character": "Bill", "id": 5724, "credit_id": "52fe44539251416c75030bc9", "cast_id": 25, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 9}, {"name": "Brandon Quintin Adams", "character": "Kenny DeNunez", "id": 148638, "credit_id": "52fe44539251416c75030bcd", "cast_id": 26, "profile_path": "/irqHiNZcjwjHz8Py9TSGtIpSbnG.jpg", "order": 10}, {"name": "Art LaFleur", "character": "The Babe", "id": 44792, "credit_id": "52fe44539251416c75030bd1", "cast_id": 27, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 11}, {"name": "Arliss Howard", "character": "Grown-Up Scotty Smalls", "id": 3229, "credit_id": "52fe44539251416c75030bd5", "cast_id": 28, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 12}, {"name": "Keith Campbell", "character": "Thief", "id": 15318, "credit_id": "53b94a9f0e0a2676bf009792", "cast_id": 29, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 13}], "directors": [{"name": "David M. Evans", "department": "Directing", "job": "Director", "credit_id": "52fe44539251416c75030b75", "profile_path": "/h4PUTxhvUuRVO9EMQznDt5F2vZO.jpg", "id": 69741}], "vote_average": 7.3, "runtime": 101}, "11529": {"poster_path": "/suMTT3YgqeUg9vDJB0xZQhcekh7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127214072, "overview": "New York fashion designer Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But Melanie's past holds many secrets, including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.", "video": false, "id": 11529, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Sweet Home Alabama", "tagline": "Sometimes What You're Looking For Is Right Where You Left It.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0256415", "adult": false, "backdrop_path": "/7rSnmAPdyjWNwsVgAaj9Qb2QRyl.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2002-09-27", "popularity": 0.855336669189686, "original_title": "Sweet Home Alabama", "budget": 38000000, "cast": [{"name": "Reese Witherspoon", "character": "Melanie \"Carmichael\" Smooter Perry", "id": 368, "credit_id": "52fe44539251416c75030bfd", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Josh Lucas", "character": "Jake Perry", "id": 6164, "credit_id": "52fe44539251416c75030c01", "cast_id": 2, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 1}, {"name": "Patrick Dempsey", "character": "Andrew Hennings", "id": 18352, "credit_id": "52fe44539251416c75030c05", "cast_id": 3, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 2}, {"name": "Candice Bergen", "character": "Mayor Kate Hennings", "id": 11850, "credit_id": "52fe44539251416c75030c09", "cast_id": 4, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 3}, {"name": "Rhona Mitra", "character": "Tabatha Wadmore-Smith", "id": 25702, "credit_id": "52fe44539251416c75030c4f", "cast_id": 17, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 4}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44539251416c75030c0f", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.0, "runtime": 108}, "134411": {"poster_path": "/99wcdBt7QLqQVvYI6j21Z47CtV9.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42930462, "overview": "Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.", "video": false, "id": 134411, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Snitch", "tagline": "How far would you go to save your son?", "vote_count": 755, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0882977", "adult": false, "backdrop_path": "/rRK0LRpvRI2didoMaBFt1GqxjEy.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Participant Media", "id": 6735}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Front Street Productions", "id": 1450}, {"name": "Spitfire Pictures", "id": 14739}], "release_date": "2013-02-22", "popularity": 1.0957405846813, "original_title": "Snitch", "budget": 35000000, "cast": [{"name": "Dwayne Johnson", "character": "John Matthews", "id": 18918, "credit_id": "52fe4bd0c3a368484e19a3b3", "cast_id": 12, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Barry Pepper", "character": "Agent Cooper", "id": 12834, "credit_id": "52fe4bd0c3a368484e19a3c7", "cast_id": 18, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 1}, {"name": "Jon Bernthal", "character": "Daniel James", "id": 19498, "credit_id": "52fe4bd0c3a368484e19a3c3", "cast_id": 16, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Joanne Keeghan", "id": 4038, "credit_id": "52fe4bd0c3a368484e19a3b7", "cast_id": 13, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Michael Kenneth Williams", "character": "Malik", "id": 39390, "credit_id": "52fe4bd0c3a368484e19a3e7", "cast_id": 26, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 4}, {"name": "Rafi Gavron", "character": "Jason Collins", "id": 21660, "credit_id": "52fe4bd0c3a368484e19a3df", "cast_id": 24, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 5}, {"name": "Melina Kanakaredes", "character": "Sylvie Collins", "id": 25972, "credit_id": "52fe4bd0c3a368484e19a3db", "cast_id": 23, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 6}, {"name": "Nadine Velazquez", "character": "Analisa", "id": 65196, "credit_id": "52fe4bd0c3a368484e19a3cf", "cast_id": 20, "profile_path": "/7bd8Qtmz25PtMuVN8uSzTp8wemx.jpg", "order": 7}, {"name": "Benjamin Bratt", "character": "Juan Carlos \"El Topo\" Pintera", "id": 4589, "credit_id": "52fe4bd0c3a368484e19a3cb", "cast_id": 19, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 8}, {"name": "Harold Perrineau", "character": "Jeffery Steele", "id": 6195, "credit_id": "52fe4bd0c3a368484e19a3bf", "cast_id": 15, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 9}, {"name": "J. D. Pardo", "character": "Benicio", "id": 81391, "credit_id": "52fe4bd0c3a368484e19a3bb", "cast_id": 14, "profile_path": "/24SYaTtZdQ2wQ5MfORsR3sd29kp.jpg", "order": 10}, {"name": "Richard Cabral", "character": "Flaco", "id": 1105711, "credit_id": "52fe4bd0c3a368484e19a3d3", "cast_id": 21, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 11}, {"name": "Kym Jackson", "character": "Agent Sims", "id": 999445, "credit_id": "52fe4bd0c3a368484e19a3d7", "cast_id": 22, "profile_path": "/mcqEkFJ4EmQJE58bZi1FswaX5ig.jpg", "order": 12}, {"name": "Jason Douglas", "character": "Wayne", "id": 20496, "credit_id": "52fe4bd0c3a368484e19a3e3", "cast_id": 25, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 13}, {"name": "Kyara Campos", "character": "Isabelle Matthews", "id": 1271749, "credit_id": "52fe4bd0c3a368484e19a3eb", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "James Allen McCune", "character": "Craig", "id": 1223879, "credit_id": "52fe4bd0c3a368484e19a3ef", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ashlynn Ross", "character": "Amanda", "id": 978996, "credit_id": "52fe4bd0c3a368484e19a3f3", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Spencer Miller", "character": "Anthony", "id": 1271750, "credit_id": "52fe4bd0c3a368484e19a3f7", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Jayson Floyd", "character": "Agent Thompson", "id": 204895, "credit_id": "52fe4bd0c3a368484e19a3fb", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Benjamin Blankenship", "character": "Agent Torres", "id": 1093707, "credit_id": "52fe4bd0c3a368484e19a3ff", "cast_id": 32, "profile_path": "/xl0O9d7xS6XGSRqQl16StOxtkOR.jpg", "order": 19}, {"name": "Darnell Trotter", "character": "Bones", "id": 1271751, "credit_id": "52fe4bd0c3a368484e19a403", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Tim J. Smith", "character": "Lazy", "id": 1271752, "credit_id": "52fe4bd0c3a368484e19a407", "cast_id": 34, "profile_path": null, "order": 21}], "directors": [{"name": "Ric Roman Waugh", "department": "Directing", "job": "Director", "credit_id": "52fe4bcfc3a368484e19a373", "profile_path": null, "id": 76422}], "vote_average": 5.7, "runtime": 112}, "93456": {"poster_path": "/kQrYyZQHkwkUg2KlUDyvymj9FAp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 970761885, "overview": "Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.", "video": false, "id": 93456, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me 2", "tagline": "Back 2 Work", "vote_count": 2366, "homepage": "http://www.despicableme.com/", "belongs_to_collection": {"backdrop_path": "/15IZl405E664QDVxpFJBl7TtLmw.jpg", "poster_path": "/95prV91f4DxkBnLU43YjLbU1m3q.jpg", "id": 86066, "name": "Despicable Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1690953", "adult": false, "backdrop_path": "/rmgxcw8tGTmdhsWqdjGBS9uI1tO.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2013-07-02", "popularity": 2.31738869660361, "original_title": "Despicable Me 2", "budget": 76000000, "cast": [{"name": "Steve Carell", "character": "Gru", "id": 4495, "credit_id": "52fe492d9251416c750bfc9b", "cast_id": 11, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Kristen Wiig", "character": "Lucy", "id": 41091, "credit_id": "52fe492d9251416c750bfd01", "cast_id": 31, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 1}, {"name": "Benjamin Bratt", "character": "Eduardo/ El Macho", "id": 4589, "credit_id": "52fe492d9251416c750bfd0d", "cast_id": 34, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 2}, {"name": "Miranda Cosgrove", "character": "Margo", "id": 17743, "credit_id": "52fe492d9251416c750bfd05", "cast_id": 32, "profile_path": "/p2rQkLY4Wr4KnCd3S1LwfhE42zu.jpg", "order": 3}, {"name": "Russell Brand", "character": "Dr. Nefario", "id": 59919, "credit_id": "52fe492d9251416c750bfd15", "cast_id": 36, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 4}, {"name": "Ken Jeong", "character": "Floyd", "id": 83586, "credit_id": "52fe492d9251416c750bfcfd", "cast_id": 30, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Silas", "id": 4581, "credit_id": "52fe492d9251416c750bfd11", "cast_id": 35, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Elsie Kate Fisher", "character": "Agnes", "id": 998571, "credit_id": "52fe492d9251416c750bfc9f", "cast_id": 13, "profile_path": "/2ekK6XG4s5knpjLZPwHZCFRA6mJ.jpg", "order": 7}, {"name": "Dana Gaier", "character": "Edith", "id": 124750, "credit_id": "52fe492d9251416c750bfd19", "cast_id": 37, "profile_path": "/rSvNxm2QifFpRCtmzrWHyDy0O9N.jpg", "order": 8}, {"name": "Mois\u00e9s Arias", "character": "Antonio", "id": 57412, "credit_id": "52fe492d9251416c750bfd09", "cast_id": 33, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 9}, {"name": "Nasim Pedrad", "character": "Jillian", "id": 476163, "credit_id": "52fe492d9251416c750bfd1d", "cast_id": 38, "profile_path": "/kA12uJDhiLW6xhTYJEwhMFjJBjb.jpg", "order": 10}, {"name": "Kristen Schaal", "character": "Shannon", "id": 109869, "credit_id": "52fe492d9251416c750bfd21", "cast_id": 39, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 11}, {"name": "Pierre Coffin", "character": "Kevin the Minion / Bob the Minion / Stuart the Minion / Additional Minions / Evil Minions (voice)", "id": 124747, "credit_id": "550f98b4925141065c00442a", "cast_id": 42, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 12}, {"name": "Chris Renaud", "character": "Additional Minions / Evil Minions / Italian Waiter (voice)", "id": 124748, "credit_id": "550f98ff9251416bd1001eb8", "cast_id": 43, "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "order": 13}, {"name": "Nickolai Stoilov", "character": "Arctic Lab Guards (voice)", "id": 303870, "credit_id": "550f9926c3a3683f0a00401c", "cast_id": 44, "profile_path": null, "order": 14}, {"name": "Vanessa Bayer", "character": "Flight Attendant (voice)", "id": 503103, "credit_id": "550f9c7e925141073d004436", "cast_id": 45, "profile_path": "/16lV4eHdbUEOD2iHbdDn2XTCcuE.jpg", "order": 15}, {"name": "Ava Acres", "character": "Additional Voices (voice)", "id": 1340664, "credit_id": "550f9cb3c3a3683e7f004302", "cast_id": 46, "profile_path": null, "order": 16}, {"name": "Lori Alan", "character": "Additional Voices (voice)", "id": 24358, "credit_id": "550f9ccfc3a3683f0a0040b6", "cast_id": 47, "profile_path": "/mNfJWzuaKgkIaK7CuirXOMosd2h.jpg", "order": 17}, {"name": "Jack Angel", "character": "Additional Voices (voice)", "id": 19545, "credit_id": "550f9cee925141073d004448", "cast_id": 48, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 18}, {"name": "Eva Bella", "character": "Additional Voices (voice)", "id": 1207488, "credit_id": "550f9d17c3a3683e7f004314", "cast_id": 49, "profile_path": "/lKDJgAVwWh8j8K0wk3r5V0axa9Y.jpg", "order": 19}, {"name": "Georgia Cook", "character": "Additional Voices (voice)", "id": 1444269, "credit_id": "550f9d31c3a368208a000c66", "cast_id": 50, "profile_path": null, "order": 20}, {"name": "John Cygan", "character": "Additional Voices (voice)", "id": 167295, "credit_id": "550f9d6792514164ac00212b", "cast_id": 51, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 21}, {"name": "Debi Derryberry", "character": "Additional Voices (voice)", "id": 73016, "credit_id": "550f9d9292514164ac002131", "cast_id": 52, "profile_path": "/mfmF3MjoL7sV76BSElFkVgDgA30.jpg", "order": 22}, {"name": "Jess Harnell", "character": "Additional Voices (voice)", "id": 84495, "credit_id": "550f9dadc3a3683f0a0040de", "cast_id": 53, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 23}, {"name": "Danny Mann", "character": "Additional Voices (voice)", "id": 52699, "credit_id": "550f9dd79251416bd1001f74", "cast_id": 54, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 24}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "550f9e4792514166db00214c", "cast_id": 55, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 25}, {"name": "Mickie McGowan", "character": "Additional Voices (voice)", "id": 84493, "credit_id": "550f9e679251413366000c7e", "cast_id": 56, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 26}, {"name": "Mason McNulty", "character": "Additional Voices (voice)", "id": 1444270, "credit_id": "550f9e8592514146a000b7dc", "cast_id": 57, "profile_path": null, "order": 27}, {"name": "Alec Medlock", "character": "Additional Voices (voice)", "id": 91776, "credit_id": "550f9eebc3a368488600bde2", "cast_id": 58, "profile_path": null, "order": 28}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "550f9f1e9251413366000ca9", "cast_id": 59, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 29}, {"name": "Jan Rabson", "character": "Additional Voices (voice)", "id": 157626, "credit_id": "550f9f459251410701004550", "cast_id": 60, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 30}, {"name": "Andre Robinson", "character": "Additional Voices (voice)", "id": 1438315, "credit_id": "550f9f84c3a368488600bdf6", "cast_id": 61, "profile_path": null, "order": 31}, {"name": "Katie Silverman", "character": "Additional Voices (voice)", "id": 1009221, "credit_id": "551425139251410462001f5c", "cast_id": 69, "profile_path": "/iWeuUdcvQtAmTuHClbPOb0nZh7U.jpg", "order": 32}, {"name": "Casey Simpson", "character": "Additional Voices (voice)", "id": 1444271, "credit_id": "550fa050c3a3683f390044ac", "cast_id": 63, "profile_path": null, "order": 34}, {"name": "Claira Nicole Titman", "character": "Additional Voices (voice) (as Claira Titman)", "id": 1444272, "credit_id": "550fa06e9251413366000ccf", "cast_id": 64, "profile_path": null, "order": 35}, {"name": "Jim Ward", "character": "Additional Voices (voice) (as James Kevin Ward)", "id": 86007, "credit_id": "550fa0c6925141073d0044e7", "cast_id": 65, "profile_path": null, "order": 36}, {"name": "April Winchell", "character": "Additional Voices (voice)", "id": 60741, "credit_id": "550fa12e9251410701004588", "cast_id": 66, "profile_path": "/xhSgScZJpyv42WD83LsrU5PavB7.jpg", "order": 37}, {"name": "Bailey Gambertoglio", "character": "Little Girl #2 (voice) (uncredited)", "id": 1258896, "credit_id": "550fa195c3a368488600be36", "cast_id": 67, "profile_path": null, "order": 38}, {"name": "Sherry Lynn", "character": "Additional Voices (uncredited)", "id": 214701, "credit_id": "550fa1afc3a3683dd6003ee8", "cast_id": 68, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 39}], "directors": [{"name": "Pierre Coffin", "department": "Directing", "job": "Director", "credit_id": "52fe492c9251416c750bfc61", "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "id": 124747}, {"name": "Chris Renaud", "department": "Directing", "job": "Director", "credit_id": "52fe492c9251416c750bfc67", "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "id": 124748}], "vote_average": 7.0, "runtime": 98}, "42194": {"poster_path": "/jFhn4Xbfh5zxCw1UYctFpspxoUe.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 967000, "overview": "In the year of 2039, after World Wars destroy much of the civilization as we know it, territories are no longer run by governments, but by corporations; the mightiest of which is the Mishima Zaibatsu. In order to placate the seething masses of this dystopia, Mishima sponsors Tekken, a tournament in which fighters battle until only one is left standing.", "video": false, "id": 42194, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Tekken", "tagline": "Survival is no game", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/amqmsjZIyrq9DqzIhs7fNfai25a.jpg", "id": 294172, "name": "Tekken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411951", "adult": false, "backdrop_path": "/tWD2fkFTygEWxWeDTGpErB1lVGe.jpg", "production_companies": [{"name": "Namco", "id": 5882}, {"name": "Light Song Films", "id": 5883}], "release_date": "2010-03-20", "popularity": 0.642200105292872, "original_title": "Tekken", "budget": 35000000, "cast": [{"name": "Jon Foo", "character": "Jin Kazama", "id": 100586, "credit_id": "52fe45f3c3a36847f80e3e8b", "cast_id": 8, "profile_path": "/dbMtJz50IuDxihBC4921N6XV8bm.jpg", "order": 0}, {"name": "Kelly Overton", "character": "Christie Monteiro", "id": 61829, "credit_id": "52fe45f3c3a36847f80e3e8f", "cast_id": 9, "profile_path": "/z4ConG73glBC7RJPOUvClLlb0k5.jpg", "order": 1}, {"name": "Cary-Hiroyuki Tagawa", "character": "Heihachi Mishima", "id": 11398, "credit_id": "52fe45f3c3a36847f80e3e83", "cast_id": 6, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 2}, {"name": "Ian Anthony Dale", "character": "Kazuya", "id": 123813, "credit_id": "52fe45f3c3a36847f80e3e7f", "cast_id": 5, "profile_path": "/8lF1E9MNYDXVPUy4YB3In4mi46N.jpg", "order": 3}, {"name": "Luke Goss", "character": "Steve Fox", "id": 10843, "credit_id": "52fe45f3c3a36847f80e3e7b", "cast_id": 4, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 4}, {"name": "Lateef Crowder", "character": "Eddy Gordo", "id": 123812, "credit_id": "52fe45f3c3a36847f80e3e87", "cast_id": 7, "profile_path": "/pnsFjc7igJi0SdNs7pDjxpy32yu.jpg", "order": 5}, {"name": "Mircea Monroe", "character": "Kara", "id": 83352, "credit_id": "52fe45f3c3a36847f80e3e93", "cast_id": 10, "profile_path": "/b27UZlc4VBwVbOiJSbkyfnfLWZP.jpg", "order": 6}, {"name": "Tamlyn Tomita", "character": "Jun Kazama", "id": 3134, "credit_id": "52fe45f3c3a36847f80e3e97", "cast_id": 11, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 7}, {"name": "Cung Le", "character": "Marschall Law", "id": 116637, "credit_id": "52fe45f3c3a36847f80e3e9b", "cast_id": 12, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 8}, {"name": "Candice Hillebrand", "character": "Nina Williams", "id": 127585, "credit_id": "52fe45f3c3a36847f80e3e9f", "cast_id": 13, "profile_path": "/u0uqVjweDBcA4pyxY1uOjgW92L2.jpg", "order": 9}, {"name": "Marian Zapico", "character": "Anna Williams", "id": 126789, "credit_id": "52fe45f3c3a36847f80e3ea3", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Darrin Henson", "character": "Raven", "id": 31134, "credit_id": "52fe45f3c3a36847f80e3ea7", "cast_id": 15, "profile_path": "/cdl6kgRRrB6v3Jx5OVTxSIZEaVW.jpg", "order": 11}, {"name": "David Pitt", "character": "Jack", "id": 109795, "credit_id": "52fe45f3c3a36847f80e3eab", "cast_id": 16, "profile_path": "/d38D9FHWAU04viES03xSv55nX5M.jpg", "order": 12}, {"name": "Anton Kasabov", "character": "Sergei Dragunov", "id": 127586, "credit_id": "52fe45f3c3a36847f80e3eaf", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Taiyo Sugiura", "character": "Lee Chaolan", "id": 107113, "credit_id": "52fe45f3c3a36847f80e3eb3", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Jae Hee", "character": "Hwoarang", "id": 16284, "credit_id": "52fe45f3c3a36847f80e3eb7", "cast_id": 19, "profile_path": "/mY1VmkA17Cvv3Du38wUG65Vu5Zg.jpg", "order": 15}, {"name": "Gary Ray Stearns", "character": "Yoshimitsu", "id": 127587, "credit_id": "52fe45f3c3a36847f80e3ebb", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Jonathan Kowalsky", "character": "Vosk", "id": 127588, "credit_id": "52fe45f3c3a36847f80e3ebf", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Gary Daniels", "character": "Bryan Fury", "id": 68559, "credit_id": "52fe45f3c3a36847f80e3ec3", "cast_id": 22, "profile_path": "/qLzJNzU1mjkywkDSwUZ3xmqGdcu.jpg", "order": 18}], "directors": [{"name": "Dwight H. Little", "department": "Directing", "job": "Director", "credit_id": "52fe45f3c3a36847f80e3e71", "profile_path": "/9Q77ZzYvRkVmfdU6twRQyvW4YB8.jpg", "id": 56998}], "vote_average": 5.0, "runtime": 92}, "240916": {"poster_path": "/HwcSgZ4DuvmwdibfKCUz5dnPBx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When up-and-coming District Attorney Mitch Brockden commits a fatal hit-and-run, he feels compelled to throw the case against the accused criminal who was found with the body and blamed for the crime. Following the trial, Mitch's worst fears come true when he realizes that he acquitted a guilty man, and he soon finds himself on the hunt for the killer before more victims pile up.", "video": false, "id": 240916, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Reasonable Doubt", "tagline": "Proof is the Burden", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2304953", "adult": false, "backdrop_path": "/1IsoAseGbqvNxkNYge4mMymGt1Q.jpg", "production_companies": [{"name": "Paradox Entertainment", "id": 6819}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "South Creek Pictures", "id": 12215}, {"name": "Bavariapool", "id": 20681}, {"name": "Eagle Vision Inc.", "id": 214}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Manitoba Film & Music", "id": 11520}], "release_date": "2014-01-17", "popularity": 0.735578643168808, "original_title": "Reasonable Doubt", "budget": 8000000, "cast": [{"name": "Samuel L. Jackson", "character": "Clinton Davis", "id": 2231, "credit_id": "52fe4eaec3a36847f82a1127", "cast_id": 1, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Mitch Brockden", "id": 55470, "credit_id": "52fe4eaec3a36847f82a112b", "cast_id": 2, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Erin Karpluk", "character": "Rachel Brockden", "id": 59313, "credit_id": "52fe4eaec3a36847f82a112f", "cast_id": 3, "profile_path": "/zYqwFR661S8pPigwHci6HlTnPly.jpg", "order": 2}, {"name": "Gloria Reuben", "character": "Detective Blake Kanon", "id": 21369, "credit_id": "52fe4eaec3a36847f82a1133", "cast_id": 4, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 3}, {"name": "Ryan Robbins", "character": "Jimmy Logan", "id": 77164, "credit_id": "52fe4eaec3a36847f82a1137", "cast_id": 5, "profile_path": "/sDEb7Y5mkPFLQpjYDNxbSEs2ofB.jpg", "order": 4}, {"name": "Philippe Brenninkmeyer", "character": "DA Jones", "id": 49201, "credit_id": "52fe4eaec3a36847f82a113f", "cast_id": 7, "profile_path": "/oDOsn36RJnhPtAMzWeoCqJGeqnt.jpg", "order": 5}, {"name": "Dylan Taylor", "character": "Stuart Wilson", "id": 55614, "credit_id": "52fe4eaec3a36847f82a113b", "cast_id": 6, "profile_path": "/8BfilcbTNnDysk8F3gW8FTfZicp.jpg", "order": 6}, {"name": "Lane Styles", "character": "Emma", "id": 1271810, "credit_id": "52fe4eafc3a36847f82a116d", "cast_id": 15, "profile_path": "/5Q3K5wDZROkRNUUUZAS4BVfzAaP.jpg", "order": 7}, {"name": "John B. Lowe", "character": "Judge G. Mckenna", "id": 33051, "credit_id": "52fe4eafc3a36847f82a1171", "cast_id": 16, "profile_path": "/3ecOmKkovovWXtaMUWdA6t0nHf.jpg", "order": 8}, {"name": "Jessica Burleson", "character": "Secretary", "id": 75822, "credit_id": "52fe4eafc3a36847f82a1175", "cast_id": 17, "profile_path": "/s9PxzP3r895rPuV8cNkVyz5XxYm.jpg", "order": 9}, {"name": "Dean Harder", "character": "Terry Roberts", "id": 1285388, "credit_id": "52fe4eafc3a36847f82a1179", "cast_id": 18, "profile_path": "/oQNlNlkGmRSEzuMDbhHDj2vMvNP.jpg", "order": 10}, {"name": "Karl Thordarson", "character": "Cecil Akerman", "id": 1331115, "credit_id": "539eb8e3c3a368724700162b", "cast_id": 20, "profile_path": "/eIj6eFwIpLNP1znUEICIE4ng5AM.jpg", "order": 11}, {"name": "Kelly Wolfman", "character": "Dr. Brown", "id": 1184360, "credit_id": "539eb917c3a3687247001632", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Will Woytowich", "character": "Desk Sargeant", "id": 48313, "credit_id": "539eb980c3a368724000158d", "cast_id": 22, "profile_path": "/zpZisXnw0dNErO4EIH2oNjjGcRY.jpg", "order": 13}], "directors": [{"name": "Peter Howitt", "department": "Directing", "job": "Director", "credit_id": "53379ab5c3a3680e760026ff", "profile_path": "/cwgHjbx5LitEns32kmdmj1diREi.jpg", "id": 7791}], "vote_average": 5.9, "runtime": 91}, "11543": {"poster_path": "/eU5LzCEYNX03WEPuBk5ztFhHXAx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25023434, "overview": "After bowler Roy Munson swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly na\u00efve hit the circuit intent on settling an old score with Big Ern.", "video": false, "id": 11543, "genres": [{"id": 35, "name": "Comedy"}], "title": "Kingpin", "tagline": "You wouldn't want to meet these pinheads in an alley.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116778", "adult": false, "backdrop_path": "/tv42IsD9By9PVZrw7u4UUnoIgRf.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Motion Picture Corporation of America", "id": 2090}], "release_date": "1996-07-04", "popularity": 0.652230879816775, "original_title": "Kingpin", "budget": 27000000, "cast": [{"name": "Woody Harrelson", "character": "Roy Munson", "id": 57755, "credit_id": "52fe44569251416c75031255", "cast_id": 13, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Randy Quaid", "character": "Ishmael Boorg", "id": 1811, "credit_id": "52fe44569251416c75031259", "cast_id": 14, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 1}, {"name": "Vanessa Angel", "character": "Claudia", "id": 25308, "credit_id": "52fe44569251416c7503125d", "cast_id": 15, "profile_path": "/kQ9UOwCmc6jsXRcCZVH8XVmCdqi.jpg", "order": 2}, {"name": "Bill Murray", "character": "Ernie McCracken", "id": 1532, "credit_id": "52fe44569251416c75031261", "cast_id": 16, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Chris Elliott", "character": "The Gambler", "id": 1534, "credit_id": "52fe44569251416c75031265", "cast_id": 17, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 4}, {"name": "William Jordan", "character": "Mr. Boorg", "id": 101975, "credit_id": "52fe44569251416c75031269", "cast_id": 18, "profile_path": null, "order": 5}, {"name": "Richard Tyson", "character": "Owner Of Stiffy's", "id": 14700, "credit_id": "52fe44569251416c7503126d", "cast_id": 19, "profile_path": "/pwgw79SpPJmn3406s72supF0EdS.jpg", "order": 6}, {"name": "Lin Shaye", "character": "Landlady", "id": 7401, "credit_id": "52fe44569251416c75031271", "cast_id": 20, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 7}, {"name": "Zen Gesner", "character": "Thomas", "id": 60672, "credit_id": "52fe44569251416c75031275", "cast_id": 21, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 8}, {"name": "Prudence Wright Holmes", "character": "Mrs. Boorg", "id": 951387, "credit_id": "52fe44569251416c75031279", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Rob Moran", "character": "Stanley Osmanski", "id": 162924, "credit_id": "52fe44569251416c7503127d", "cast_id": 23, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 10}, {"name": "Daniel Greene", "character": "Calvert Munson", "id": 42199, "credit_id": "52fe44569251416c75031281", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Will Rothhaar", "character": "Young Roy", "id": 149484, "credit_id": "52fe44569251416c75031285", "cast_id": 25, "profile_path": "/oigxlX2GoRu50q0u6CNwNhfjvyB.jpg", "order": 12}, {"name": "Mark Charpentier", "character": "1979 Bowling Buddy", "id": 7412, "credit_id": "52fe44569251416c75031289", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Brad Faxon", "character": "1979 Bowling Buddy", "id": 1076569, "credit_id": "52fe44569251416c7503128d", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c7503120f", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c75031215", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 6.4, "runtime": 113}, "11544": {"poster_path": "/30ZmDr2RQSd42TDoQbT1y2KqiJi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 145771527, "overview": "A lonely Hawaiian girl named Lilo is being raised by her older sister, Nani, after their parents die -- under the watch of social worker Cobra Bubbles. When Lilo adopts a funny-looking dog and names him \"Stitch,\" she doesn't realize her new best friend is a wacky alien created by mad scientist Dr. Jumba.", "video": false, "id": 11544, "genres": [{"id": 16, "name": "Animation"}], "title": "Lilo & Stitch", "tagline": "He's coming to our galaxy.", "vote_count": 291, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oKfkaJLqc1cRURbq8DG2D6TOeAX.jpg", "poster_path": "/bstyyXaLinnYwoyvo5HaDceJN07.jpg", "id": 97461, "name": "Lilo & Stitch Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0275847", "adult": false, "backdrop_path": "/gss26usvT59v4bltFPVg49AiBFZ.jpg", "production_companies": [{"name": "Walt Disney Feature Animation", "id": 10217}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2002-06-21", "popularity": 1.79979960063577, "original_title": "Lilo & Stitch", "budget": 80000000, "cast": [{"name": "Daveigh Chase", "character": "Lilo (voice)", "id": 1580, "credit_id": "52fe44569251416c750312e3", "cast_id": 8, "profile_path": "/xiJf7nTOvVVWIyWG9fyoauU6Ff3.jpg", "order": 0}, {"name": "Chris Sanders", "character": "'Stitch' (voice)", "id": 66193, "credit_id": "52fe44569251416c750312e7", "cast_id": 9, "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "order": 1}, {"name": "Tia Carrere", "character": "Nani (voice)", "id": 13445, "credit_id": "52fe44569251416c750312eb", "cast_id": 10, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 2}, {"name": "David Ogden Stiers", "character": "Dr. Jumba Jookiba (voice)", "id": 28010, "credit_id": "52fe44569251416c750312ef", "cast_id": 11, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 3}, {"name": "Kevin McDonald", "character": "Pleakley (voice)", "id": 58955, "credit_id": "52fe44569251416c750312f9", "cast_id": 13, "profile_path": "/cue14nfA1aAWmK0PUy9pHViJKMi.jpg", "order": 4}, {"name": "Ving Rhames", "character": "Cobra Bubbles (voice)", "id": 10182, "credit_id": "52fe44569251416c750312fd", "cast_id": 14, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 5}, {"name": "Zoe Caldwell", "character": "Grand Councilwoman (voice)", "id": 937681, "credit_id": "52fe44569251416c75031301", "cast_id": 15, "profile_path": "/wbVtmnOg8n0JWXthhttzdi9kcNt.jpg", "order": 6}, {"name": "Jason Scott Lee", "character": "David Kawena (voice)", "id": 58319, "credit_id": "52fe44569251416c75031305", "cast_id": 16, "profile_path": "/1efvolWhMCbbT6qXOlbwieOusbx.jpg", "order": 7}, {"name": "Kevin Michael Richardson", "character": "Captain Gantu (voice)", "id": 24362, "credit_id": "52fe44569251416c75031309", "cast_id": 17, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 8}, {"name": "Susan Hegarty", "character": "Rescue Lady (voice)", "id": 76003, "credit_id": "52fe44569251416c7503130d", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Amy Hill", "character": "Mrs. Hasagawa (voice)", "id": 59401, "credit_id": "52fe44569251416c75031311", "cast_id": 19, "profile_path": "/uVJnyfKqN5Ex2ueoWhEIgMY6q6Q.jpg", "order": 10}], "directors": [{"name": "Dean DeBlois", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c750312bb", "profile_path": "/vofzPcdNUzUD1xqaMUwMAJRgFiy.jpg", "id": 69797}, {"name": "Chris Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c750312c1", "profile_path": "/m4kZMS2J0AFjlAuwtijEmsOXYfc.jpg", "id": 66193}], "vote_average": 6.5, "runtime": 85}, "11545": {"poster_path": "/m4un0nbngs8tr6Dy432m2CsmXZd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Max Fischer, a precocious and eccentric 15 year-old, who is both Rushmore's most extracurricular and least scholarly student; Herman Blume, a disillusioned industrialist who comes to admire Max; and Rosemary Cross, a widowed first grade teacher who becomes the object of both Max's and Herman's affection.", "video": false, "id": 11545, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Rushmore", "tagline": "Love. Expulsion. Revolution.", "vote_count": 169, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0128445", "adult": false, "backdrop_path": "/qPjOUMmEeJFRq0BWcGRvgVwuh0O.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-10-09", "popularity": 0.971266281516242, "original_title": "Rushmore", "budget": 0, "cast": [{"name": "Jason Schwartzman", "character": "Max Fischer", "id": 17881, "credit_id": "52fe44569251416c7503137b", "cast_id": 11, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 0}, {"name": "Bill Murray", "character": "Herman Blume", "id": 1532, "credit_id": "52fe44569251416c7503137f", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 1}, {"name": "Olivia Williams", "character": "Rosemary Cross", "id": 11616, "credit_id": "52fe44569251416c75031383", "cast_id": 13, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 2}, {"name": "Seymour Cassel", "character": "Bert Fischer", "id": 5950, "credit_id": "52fe44569251416c75031387", "cast_id": 14, "profile_path": "/xVyzqC1VNqlmEHlIZvidBVhHane.jpg", "order": 3}, {"name": "Brian Cox", "character": "Dr. Nelson Guggenheim", "id": 1248, "credit_id": "52fe44569251416c7503138b", "cast_id": 15, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Mason Gamble", "character": "Dirk Calloway", "id": 15252, "credit_id": "52fe44569251416c7503138f", "cast_id": 16, "profile_path": "/gcWwvfZLxvk8VH6NEjfmt7j87aR.jpg", "order": 5}, {"name": "Connie Nielsen", "character": "Mrs. Calloway", "id": 935, "credit_id": "52fe44569251416c75031393", "cast_id": 17, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 6}, {"name": "Luke Wilson", "character": "Dr. Peter Flynn", "id": 36422, "credit_id": "52fe44569251416c75031397", "cast_id": 18, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 7}, {"name": "Andrew Wilson", "character": "Coach Beck", "id": 71555, "credit_id": "52fe44569251416c7503139b", "cast_id": 19, "profile_path": "/tGwZ3P9xENc0C8HD7wiuspCm8tM.jpg", "order": 8}, {"name": "Stephen McCole", "character": "Magnus Buchan", "id": 71770, "credit_id": "52fe44569251416c7503139f", "cast_id": 20, "profile_path": "/lS0Em0b2kaEJ5hXIYMU10iN9Fdf.jpg", "order": 9}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe44569251416c75031341", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.6, "runtime": 93}, "559": {"poster_path": "/uC2pAMjb32NIgQ1GdC1Bl6LZJc2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 890871626, "overview": "The seemingly invincible Spider-Man goes up against an all-new crop of villains -- including the shape-shifting Sandman -- in the third installment of this blockbusting comic book adventure series. While Spidey's superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and gets caught up in a love triangle.", "video": false, "id": 559, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Spider-Man 3", "tagline": "The battle within.", "vote_count": 1163, "homepage": "http://www.sonypictures.com/movies/spider-man3/", "belongs_to_collection": {"backdrop_path": "/waZqriYTuBE3WqXI3SDGi3kfDQE.jpg", "poster_path": "/aNknE3vw8QC5gDHBRYpOz9gzuPc.jpg", "id": 556, "name": "Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0413300", "adult": false, "backdrop_path": "/4dLA0LgN7tOMSsGwSUSZM7VG7AP.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Laura Ziskin Productions", "id": 326}], "release_date": "2007-05-03", "popularity": 2.16867263651246, "original_title": "Spider-Man 3", "budget": 258000000, "cast": [{"name": "Tobey Maguire", "character": "Spider-Man / Peter Parker", "id": 2219, "credit_id": "52fe4252c3a36847f80151c7", "cast_id": 30, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Mary Jane Watson", "id": 205, "credit_id": "52fe4252c3a36847f801514f", "cast_id": 7, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "James Franco", "character": "New Goblin / Harry Osborn", "id": 17051, "credit_id": "52fe4252c3a36847f80151db", "cast_id": 35, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Thomas Haden Church", "character": "Sandman / Flint Marko", "id": 19159, "credit_id": "52fe4252c3a36847f80151df", "cast_id": 36, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 3}, {"name": "Topher Grace", "character": "Venom / Eddie Brock", "id": 17052, "credit_id": "52fe4252c3a36847f80151e3", "cast_id": 37, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 4}, {"name": "Bryce Dallas Howard", "character": "Gwen Stacey", "id": 18997, "credit_id": "52fe4252c3a36847f8015153", "cast_id": 8, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 5}, {"name": "Rosemary Harris", "character": "May Parker", "id": 18998, "credit_id": "52fe4252c3a36847f80151cb", "cast_id": 31, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 6}, {"name": "J.K. Simmons", "character": "J. Jonah Jameson", "id": 18999, "credit_id": "52fe4252c3a36847f801515b", "cast_id": 10, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 7}, {"name": "Elizabeth Banks", "character": "Miss Brant", "id": 9281, "credit_id": "52fe4252c3a36847f80151d3", "cast_id": 33, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 8}, {"name": "James Cromwell", "character": "Captain Stacey", "id": 2505, "credit_id": "52fe4252c3a36847f8015157", "cast_id": 9, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 9}, {"name": "Willem Dafoe", "character": "Green Goblin / Norman Osborn", "id": 5293, "credit_id": "52fe4252c3a36847f80151eb", "cast_id": 39, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 10}, {"name": "Bill Nunn", "character": "Joseph Robertson", "id": 5502, "credit_id": "52fe4252c3a36847f8015169", "cast_id": 13, "profile_path": "/cT4sK7SCranK3yeelYTHMlTaq3a.jpg", "order": 11}, {"name": "Daniel Gillies", "character": "John Jameson", "id": 19154, "credit_id": "52fe4252c3a36847f8015175", "cast_id": 16, "profile_path": "/qBUt7kK7qFpK82Qt8ptHaBvO0QU.jpg", "order": 12}, {"name": "Theresa Russell", "character": "Mrs. Marko", "id": 9207, "credit_id": "52fe4252c3a36847f801516d", "cast_id": 14, "profile_path": "/vn2h90MB16yyRKslCBlPd2MEltG.jpg", "order": 13}, {"name": "Dylan Baker", "character": "Dr. Curt Connors", "id": 19152, "credit_id": "52fe4252c3a36847f8015165", "cast_id": 12, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 14}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4252c3a36847f8015171", "cast_id": 15, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 15}, {"name": "Bruce Campbell", "character": "Ma\u00eetre d", "id": 11357, "credit_id": "52fe4252c3a36847f80151cf", "cast_id": 32, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 16}, {"name": "Ted Raimi", "character": "Hoffman", "id": 11769, "credit_id": "52fe4252c3a36847f80151d7", "cast_id": 34, "profile_path": "/wUrSeqdOq5iDgbrpmnHCKAWMNwK.jpg", "order": 17}, {"name": "Perla Haney-Jardine", "character": "Penny Marko", "id": 6585, "credit_id": "52fe4252c3a36847f80151e7", "cast_id": 38, "profile_path": "/3G3vIBZgZkTzrmvyNiEzOsb5v38.jpg", "order": 18}, {"name": "Cliff Robertson", "character": "Ben Parker", "id": 19153, "credit_id": "52fe4252c3a36847f80151ef", "cast_id": 40, "profile_path": "/brkuCYbMRJqPAucyIf3szNhA5h5.jpg", "order": 19}, {"name": "Elya Baskin", "character": "Mr. Ditkovitch", "id": 2368, "credit_id": "52fe4252c3a36847f80151f3", "cast_id": 41, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 20}, {"name": "Mageina Tovah", "character": "Ursula", "id": 20645, "credit_id": "52fe4252c3a36847f80151f7", "cast_id": 42, "profile_path": "/kxseJKAIiZFKnJFshy3nLXajmFz.jpg", "order": 21}, {"name": "John Paxton", "character": "Houseman", "id": 19326, "credit_id": "52fe4252c3a36847f80151fb", "cast_id": 43, "profile_path": "/bizhhVVs4y8CfHzPfqPYNEvs2eZ.jpg", "order": 22}, {"name": "Becky Ann Baker", "character": "Mrs. Stacy", "id": 59206, "credit_id": "52fe4252c3a36847f80151ff", "cast_id": 44, "profile_path": "/cz9B5ZIPYwOwWzh3Qh8hJAAvAl9.jpg", "order": 23}, {"name": "Stan Lee", "character": "Man in Times Square", "id": 7624, "credit_id": "52fe4252c3a36847f8015203", "cast_id": 45, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 24}, {"name": "Michael Papajohn", "character": "Dennis Carradine / Carjacker", "id": 20582, "credit_id": "52fe4252c3a36847f8015207", "cast_id": 46, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 25}, {"name": "Joe Manganiello", "character": "Flash Thompson", "id": 20580, "credit_id": "52fe4252c3a36847f801520b", "cast_id": 47, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 26}, {"name": "Steve Valentine", "character": "Photographer", "id": 78311, "credit_id": "52fe4252c3a36847f801520f", "cast_id": 48, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 27}, {"name": "Hal Fishman", "character": "Anchorman", "id": 116627, "credit_id": "52fe4252c3a36847f8015213", "cast_id": 49, "profile_path": "/yskUCjhK0w6tL7KZv4UtAlq7uYQ.jpg", "order": 28}, {"name": "Brittany Krall", "character": "ER Nurse", "id": 1292243, "credit_id": "52fe4252c3a36847f801521b", "cast_id": 51, "profile_path": "/i7t7ueAV1n0jnvkhCkRQbtIsiF1.jpg", "order": 29}, {"name": "Lucy Gordon", "character": "Jennifer Dugan", "id": 113608, "credit_id": "52fe4252c3a36847f8015217", "cast_id": 50, "profile_path": "/gNd5p43saMX9VTFVd020RAtm6lV.jpg", "order": 30}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4252c3a36847f801512d", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 5.7, "runtime": 139}, "11548": {"poster_path": "/6N2HGV0KgCWVg41zAgAuBbwcE3e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32945979, "overview": "In a soon to be demolished block of apartments, the residents resist the criminal methods used to force them to leave so a greedy tycoon can build his new skyscraper. When tiny mechanical aliens land for a recharge, they decide to stay and help out.", "video": false, "id": 11548, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Batteries Not Included", "tagline": "Five ordinary people needed a miracle. Then one night, Faye Riley left the window open.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092494", "adult": false, "backdrop_path": "/dg6euHvooHXQqgefeycmZoXGhWl.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Universal Pictures", "id": 33}], "release_date": "1987-12-17", "popularity": 0.552629555667242, "original_title": "Batteries Not Included", "budget": 0, "cast": [{"name": "Hume Cronyn", "character": "Frank Riley", "id": 7668, "credit_id": "52fe44579251416c7503152d", "cast_id": 11, "profile_path": "/28X1o4MxUHq4pgyv5VrsdpNSdB4.jpg", "order": 0}, {"name": "Jessica Tandy", "character": "Faye Riley", "id": 5698, "credit_id": "52fe44579251416c75031539", "cast_id": 14, "profile_path": "/9eaHz5lei5nAyiuH7fszw5zweSl.jpg", "order": 1}, {"name": "Frank McRae", "character": "Harry Noble", "id": 1735, "credit_id": "52fe44579251416c75031531", "cast_id": 12, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 2}, {"name": "Elizabeth Pe\u00f1a", "character": "Marisa Esteval", "id": 7430, "credit_id": "52fe44579251416c75031535", "cast_id": 13, "profile_path": "/ePeN3h3UDH9S4THwxwWjQQyK3cH.jpg", "order": 3}, {"name": "Dennis Boutsikaris", "character": "Mason Baylor", "id": 118937, "credit_id": "52fe44579251416c7503153d", "cast_id": 15, "profile_path": "/uq1dmNevTzOw62hbLhE6JMu7p1H.jpg", "order": 4}, {"name": "Tom Aldredge", "character": "Sid Hogenson", "id": 49835, "credit_id": "52fe44579251416c75031541", "cast_id": 16, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 5}, {"name": "Jane Hoffman", "character": "Muriel Hogenson", "id": 118940, "credit_id": "52fe44579251416c75031545", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "John DiSanti", "character": "Gus", "id": 113922, "credit_id": "52fe44579251416c75031549", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "John Pankow", "character": "Kovacs", "id": 59872, "credit_id": "52fe44579251416c7503154d", "cast_id": 19, "profile_path": "/ur2Lfv0X2I5URYc1SZyWYcngbd2.jpg", "order": 8}, {"name": "MacIntyre Dixon", "character": "DeWitt", "id": 81557, "credit_id": "52fe44579251416c75031551", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Michael Greene", "character": "Lacey, Real Estate Developer", "id": 29368, "credit_id": "52fe44579251416c75031555", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Doris Belack", "character": "Mrs. Thompson", "id": 24293, "credit_id": "52fe44579251416c75031559", "cast_id": 22, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 11}, {"name": "Wendy Schaal", "character": "Pamela", "id": 37600, "credit_id": "52fe44579251416c7503155d", "cast_id": 23, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 12}, {"name": "Michael Carmine", "character": "Carlos", "id": 96442, "credit_id": "545ff6f7c3a3685358009820", "cast_id": 32, "profile_path": "/kgDQUklJdbkuUZD3xeD1Kxayau9.jpg", "order": 13}], "directors": [{"name": "Matthew Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe44579251416c750314f9", "profile_path": "/oK61i61u3G5zZO5EtXmepY9IxGy.jpg", "id": 12677}], "vote_average": 6.3, "runtime": 106}, "11549": {"poster_path": "/fqsd3AZBWPb3FrAXsghumyv5ToU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.", "video": false, "id": 11549, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Invasion of the Body Snatchers", "tagline": "... there was nothing to hold onto - except each other.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0049366", "adult": false, "backdrop_path": "/eTxgy8eROB5Ly7ZXKLukQoF6tKl.jpg", "production_companies": [{"name": "Allied Artists Pictures", "id": 4928}, {"name": "Walter Wanger Productions", "id": 10096}], "release_date": "1956-02-05", "popularity": 0.270614704214001, "original_title": "Invasion of the Body Snatchers", "budget": 417000, "cast": [{"name": "Kevin McCarthy", "character": "Dr. Miles J. Bennell", "id": 34597, "credit_id": "52fe44579251416c75031611", "cast_id": 19, "profile_path": "/6789RKVg3Gc7ADIiod4wHXB5bWX.jpg", "order": 0}, {"name": "Dana Wynter", "character": "Becky Driscoll", "id": 69810, "credit_id": "52fe44579251416c750315bf", "cast_id": 1, "profile_path": "/qih3QKH1nJ29vXsO7CQOOHY4vGx.jpg", "order": 1}, {"name": "Larry Gates", "character": "Dr. Dan 'Danny' Kauffman", "id": 3640, "credit_id": "52fe44579251416c750315c3", "cast_id": 2, "profile_path": "/ldSjOmthzI5gl1cgSXzUMSTsVEN.jpg", "order": 2}, {"name": "King Donovan", "character": "Jack Belicec", "id": 69811, "credit_id": "52fe44579251416c750315c7", "cast_id": 3, "profile_path": "/yKwJm7Bpkw4U3gCT2xRYkxfNH92.jpg", "order": 3}, {"name": "Carolyn Jones", "character": "Theodora 'Teddy' Belicec", "id": 19109, "credit_id": "52fe44579251416c750315cb", "cast_id": 4, "profile_path": "/2MiUzB4xpwjFQhAq3aF5VNxsNA.jpg", "order": 4}, {"name": "Jean Willes", "character": "Nurse Sally Withers", "id": 101479, "credit_id": "52fe44579251416c750315f9", "cast_id": 13, "profile_path": "/tf8Mdg3ULobhiTK1pqikikyS9WB.jpg", "order": 5}, {"name": "Ralph Dumke", "character": "Police Chief Nick Grivett", "id": 83801, "credit_id": "52fe44579251416c750315fd", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Tom Fadden", "character": "Uncle Ira Lentz", "id": 83623, "credit_id": "52fe44579251416c75031605", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Guy Way", "character": "Officer Sam Janzek", "id": 101484, "credit_id": "52fe44579251416c7503160d", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Kenneth Patterson", "character": "Stanley Driscoll", "id": 101483, "credit_id": "52fe44579251416c75031609", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Virginia Christine", "character": "Wilma Lentz", "id": 101481, "credit_id": "52fe44579251416c75031601", "cast_id": 15, "profile_path": "/qVpNBAgaT0fc7WN7UrHp3pd4BJa.jpg", "order": 10}, {"name": "Eileen Stevens", "character": "Anne Grimaldi", "id": 1137031, "credit_id": "52fe44579251416c7503161b", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Bobby Clark", "character": "Jimmy Grimaldi", "id": 170573, "credit_id": "52fe44579251416c7503161f", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Whit Bissell", "character": "Doctor", "id": 13786, "credit_id": "52fe44579251416c75031623", "cast_id": 23, "profile_path": "/9NyUefvv8sbKVxkrhqubQp3V4Xr.jpg", "order": 13}, {"name": "Richard Deacon", "character": "Doctor", "id": 80206, "credit_id": "52fe44579251416c75031627", "cast_id": 24, "profile_path": "/yLGNyJqX3JuaUHcJ7O1rJi2C1hJ.jpg", "order": 14}, {"name": "Dabbs Greer", "character": "Lomax", "id": 6805, "credit_id": "52fe44579251416c7503162b", "cast_id": 25, "profile_path": "/fYqPZcEkaStHTqDlIqxITnr5iJM.jpg", "order": 15}, {"name": "Sam Peckinpah", "character": "Charlie", "id": 7767, "credit_id": "52fe44589251416c7503162f", "cast_id": 26, "profile_path": "/lsNMJtmZwLYB8pl1gE7S6cBbuSc.jpg", "order": 16}], "directors": [{"name": "Don Siegel", "department": "Directing", "job": "Director", "credit_id": "52fe44579251416c750315d1", "profile_path": "/dptmMoVlEB9o8O8C8vf5CPILg6n.jpg", "id": 14773}], "vote_average": 6.7, "runtime": 80}, "11551": {"poster_path": "/l5laJWvcxgkoqC3nRPs9N5u55jR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54682547, "overview": "When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.", "video": false, "id": 11551, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Small Soldiers", "tagline": "The few, the proud, and the small.", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0122718", "adult": false, "backdrop_path": "/xy9MUcAcUCsxDnp5QEuLJIcFzGJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "DreamWorks Pictures", "id": 7293}], "release_date": "1998-07-10", "popularity": 0.596871291279915, "original_title": "Small Soldiers", "budget": 40000000, "cast": [{"name": "Gregory Smith", "character": "Alan Abernathy", "id": 20814, "credit_id": "52fe44589251416c750316f7", "cast_id": 1, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Christy Fimple", "id": 205, "credit_id": "52fe44589251416c750316fb", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Denis Leary", "character": "Gil Mars", "id": 5724, "credit_id": "52fe44589251416c750316ff", "cast_id": 3, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 2}, {"name": "Phil Hartman", "character": "Phil Fimple", "id": 14104, "credit_id": "52fe44589251416c75031703", "cast_id": 4, "profile_path": "/rf62sAab9vOjm9x7ZA0VBWDkHvD.jpg", "order": 3}, {"name": "David Cross", "character": "Irwin Wayfair", "id": 212, "credit_id": "52fe44589251416c75031749", "cast_id": 16, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Jay Mohr", "character": "Larry Benson", "id": 12217, "credit_id": "52fe44589251416c7503174d", "cast_id": 17, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 5}, {"name": "Kevin Dunn", "character": "Stuart Abernathy", "id": 14721, "credit_id": "52fe44589251416c75031751", "cast_id": 18, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 6}, {"name": "Ann Magnuson", "character": "Irene Abernathy", "id": 37042, "credit_id": "52fe44589251416c75031785", "cast_id": 31, "profile_path": "/ry9H1u1GFbwXiWWolYA63pjBctp.jpg", "order": 7}, {"name": "Wendy Schaal", "character": "Marion Fimple", "id": 37600, "credit_id": "52fe44589251416c75031789", "cast_id": 32, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 8}, {"name": "Jacob Smith", "character": "Timmy Fimple", "id": 9829, "credit_id": "52fe44589251416c7503178d", "cast_id": 33, "profile_path": "/gWdoJZzinaMLniOFTGfWooZPo91.jpg", "order": 9}, {"name": "Tommy Lee Jones", "character": "Chip Hazard", "id": 2176, "credit_id": "52fe44589251416c75031755", "cast_id": 19, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 10}, {"name": "Frank Langella", "character": "Archer", "id": 8924, "credit_id": "52fe44589251416c75031759", "cast_id": 20, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 11}, {"name": "Ernest Borgnine", "character": "Kip Killagin", "id": 7502, "credit_id": "52fe44589251416c7503175d", "cast_id": 21, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 12}, {"name": "Jim Brown", "character": "Butch Meathook", "id": 4774, "credit_id": "52fe44589251416c75031781", "cast_id": 30, "profile_path": "/u2woKBMGvouznYELvlPwqj4Y81A.jpg", "order": 13}, {"name": "Bruce Dern", "character": "Link Static", "id": 6905, "credit_id": "52fe44589251416c75031761", "cast_id": 22, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 14}, {"name": "George Kennedy", "character": "Brick Bazooka", "id": 12950, "credit_id": "52fe44589251416c75031765", "cast_id": 23, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 15}, {"name": "Clint Walker", "character": "Nick Nitro", "id": 40207, "credit_id": "52fe44589251416c75031779", "cast_id": 28, "profile_path": "/z9EwnoNgmO9hwTHWtkuX3aBkwgv.jpg", "order": 16}, {"name": "Christopher Guest", "character": "Slamfist / Scratch-It", "id": 13524, "credit_id": "52fe44589251416c75031769", "cast_id": 24, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 17}, {"name": "Michael McKean", "character": "Insaniac / Freakenstein", "id": 21731, "credit_id": "52fe44589251416c7503176d", "cast_id": 25, "profile_path": "/iVcsvBb15nep7TZ07MlJFcxMzvD.jpg", "order": 18}, {"name": "Harry Shearer", "character": "Punch-It", "id": 6008, "credit_id": "52fe44589251416c7503177d", "cast_id": 29, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 19}, {"name": "Sarah Michelle Gellar", "character": "Gwendy Doll", "id": 11863, "credit_id": "52fe44589251416c75031771", "cast_id": 26, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 20}, {"name": "Christina Ricci", "character": "Gwendy Doll", "id": 6886, "credit_id": "52fe44589251416c75031775", "cast_id": 27, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 21}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe44589251416c75031745", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.1, "runtime": 110}, "52520": {"poster_path": "/76GXWKs2IDi0ZERKLT57wkToV0A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 132400000, "overview": "After being held in a coma-like state for fifteen years, vampire Selene learns that she has a fourteen-year-old vampire/Lycan hybrid daughter named Nissa, and when she finds her, they must stop BioCom from creating super Lycans that will kill them all.", "video": false, "id": 52520, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Underworld: Awakening", "tagline": "Vengeance Returns", "vote_count": 1090, "homepage": "http://www.entertheunderworld.com/", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1496025", "adult": false, "backdrop_path": "/8iNsXY3LPsuT0gnUiTBMoNuRZI7.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Saturn Films", "id": 831}, {"name": "Sketch Films", "id": 7738}, {"name": "UW4 Productions", "id": 7740}], "release_date": "2012-01-18", "popularity": 1.69328497857708, "original_title": "Underworld: Awakening", "budget": 70000000, "cast": [{"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "52fe4830c3a36847f815bc9b", "cast_id": 1, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 0}, {"name": "Stephen Rea", "character": "Dr. Jacob Lane", "id": 9029, "credit_id": "52fe4830c3a36847f815bcf3", "cast_id": 22, "profile_path": "/taD1NngDbW8cyCuacAT3YaecSEG.jpg", "order": 1}, {"name": "Michael Ealy", "character": "Detective Sebastian", "id": 8177, "credit_id": "52fe4830c3a36847f815bcd7", "cast_id": 16, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 2}, {"name": "Theo James", "character": "David", "id": 587020, "credit_id": "52fe4830c3a36847f815bceb", "cast_id": 20, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 3}, {"name": "India Eisley", "character": "Eve", "id": 221116, "credit_id": "52fe4830c3a36847f815bcd3", "cast_id": 15, "profile_path": "/dksLN6umGe9VYeraFgihEaAmSK4.jpg", "order": 4}, {"name": "Charles Dance", "character": "Thomas", "id": 4391, "credit_id": "52fe4830c3a36847f815bccf", "cast_id": 14, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 5}, {"name": "Sandrine Holt", "character": "Lida", "id": 65345, "credit_id": "52fe4830c3a36847f815bcef", "cast_id": 21, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 7}, {"name": "Richard Cetrone", "character": "Lycan 1", "id": 12371, "credit_id": "52fe4830c3a36847f815bcf7", "cast_id": 23, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 8}, {"name": "Sanny Van Heteren", "character": "British newscaster", "id": 115177, "credit_id": "52fe4830c3a36847f815bcfb", "cast_id": 24, "profile_path": "/boX7TCFH0I9NzHS6Vi6X7c8cdGL.jpg", "order": 9}, {"name": "Jacob Blair", "character": "Kolb (Officer)", "id": 208069, "credit_id": "52fe4830c3a36847f815bcff", "cast_id": 25, "profile_path": "/8QbiqwUFim60IBZ2p22WoEs2e1w.jpg", "order": 10}, {"name": "Robert Lawrenson", "character": "Waterfront Cop", "id": 211958, "credit_id": "52fe4830c3a36847f815bd03", "cast_id": 26, "profile_path": "/tI33ZRrJTbZZJ9piQOO5siBwXkf.jpg", "order": 11}, {"name": "Kurt Max Runte", "character": "Leader of the Troop", "id": 60721, "credit_id": "52fe4830c3a36847f815bd07", "cast_id": 27, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 12}, {"name": "Marvin Duerkholz", "character": "Lestroy", "id": 582923, "credit_id": "52fe4830c3a36847f815bd0b", "cast_id": 28, "profile_path": "/xlNd5MZNi8U4HtY44vcmza7Rlqw.jpg", "order": 13}, {"name": "Ron Wear", "character": "Jack Fletcher", "id": 928199, "credit_id": "52fe4830c3a36847f815bd0f", "cast_id": 29, "profile_path": "/varhgWh7IHBRgiIMY75Ewj8eOPq.jpg", "order": 14}, {"name": "Dan Payne", "character": "Lycan 2", "id": 85505, "credit_id": "5301429f925141219810dfdd", "cast_id": 54, "profile_path": "/fbp4DoIjJqTe7GnnD5sTirKnto5.jpg", "order": 15}, {"name": "Mark Gibbon", "character": "Announcing Guard", "id": 118459, "credit_id": "530143b0925141219b1082fd", "cast_id": 55, "profile_path": "/4zbhBlYulslr2SJ7SMcm3xPtLAU.jpg", "order": 16}, {"name": "Benita Ha", "character": "Surgical Nurse", "id": 75532, "credit_id": "530143f6925141218f11cff7", "cast_id": 56, "profile_path": "/m1DrOGvyxNOxrx4lND5X1bgL7tx.jpg", "order": 17}, {"name": "Tyler McClendon", "character": "Scientist", "id": 168540, "credit_id": "5301456392514121a110c49e", "cast_id": 57, "profile_path": "/pwUkLAEu0milu8FCgzlwyfLL1hl.jpg", "order": 18}, {"name": "Panou", "character": "Old City Cop #1", "id": 1219446, "credit_id": "530146ee925141218f1251fe", "cast_id": 58, "profile_path": "/2ZlQp0ZenSK9vNscU0Ye4hbi1U4.jpg", "order": 19}, {"name": "Kristen Holden-Ried", "character": "Quint Lane", "id": 557840, "credit_id": "54788e47c3a36839b50000b0", "cast_id": 63, "profile_path": "/zhl2SZHzv4lx68BuGaqjvNZ7239.jpg", "order": 21}], "directors": [{"name": "M\u00e5ns M\u00e5rlind", "department": "Directing", "job": "Director", "credit_id": "52fe4830c3a36847f815bcdd", "profile_path": "/yrO9JKHZY3KWBSInBdKMzjQBHkW.jpg", "id": 80923}, {"name": "Bj\u00f6rn Stein", "department": "Directing", "job": "Director", "credit_id": "52fe4830c3a36847f815bce3", "profile_path": "/djDzNZTxQ7dDURUOtI3FP9U0fsv.jpg", "id": 80924}], "vote_average": 6.1, "runtime": 88}, "11565": {"poster_path": "/nrb1TjVFG4ZGmmIFaWxeEb0VGeE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138259062, "overview": "FBI agent Malcolm Turner goes back undercover as Big Momma, a slick-talking, slam-dunking Southern granny with attitude to spare! Now this granny must play nanny to three dysfunctional upper class kids in order to spy on their computer hacked dad.", "video": false, "id": 11565, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Big Momma's House 2", "tagline": "The momma of all comedies is back!!!", "vote_count": 73, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nFJauk5E72nZNZJU4TZFCdMycYE.jpg", "id": 44979, "name": "Big Momma's House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421729", "adult": false, "backdrop_path": "/3U1NDhGkIqXm0C1HL1xJ4wED3eH.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2006-01-26", "popularity": 0.978040243194948, "original_title": "Big Momma's House 2", "budget": 40000000, "cast": [{"name": "Martin Lawrence", "character": "Malcolm / Big Momma", "id": 78029, "credit_id": "52fe445b9251416c75031e43", "cast_id": 17, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Nia Long", "character": "Sherri", "id": 9781, "credit_id": "52fe445b9251416c75031dfb", "cast_id": 3, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 1}, {"name": "Emily Procter", "character": "Leah Fuller", "id": 6108, "credit_id": "52fe445b9251416c75031dff", "cast_id": 4, "profile_path": "/nZJypfLAXUg8Nn1GpBgbYVdqO4Y.jpg", "order": 2}, {"name": "Zachary Levi", "character": "Kevin", "id": 69899, "credit_id": "52fe445b9251416c75031e03", "cast_id": 5, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 3}, {"name": "Mark Moses", "character": "Tom Fuller", "id": 11889, "credit_id": "52fe445b9251416c75031e47", "cast_id": 18, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 4}, {"name": "Kat Dennings", "character": "Molly", "id": 52852, "credit_id": "52fe445b9251416c75031e4b", "cast_id": 19, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 5}, {"name": "Chlo\u00eb Grace Moretz", "character": "Carrie", "id": 56734, "credit_id": "52fe445b9251416c75031e4f", "cast_id": 20, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 6}, {"name": "Marisol Nichols", "character": "Liliana Morales", "id": 84457, "credit_id": "52fe445b9251416c75031e53", "cast_id": 21, "profile_path": "/zMeWeIF42BY97pZmwBvNKAzrm3L.jpg", "order": 7}], "directors": [{"name": "John Whitesell", "department": "Directing", "job": "Director", "credit_id": "52fe445b9251416c75031e09", "profile_path": "/9wNZkrN7DnPjGIgaVNTnlCC1fpt.jpg", "id": 61175}], "vote_average": 5.6, "runtime": 99}, "42888": {"poster_path": "/5gwKI65TnSAT9PI2iFWZXpmTZ3C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48668907, "overview": "After being cut from the USA softball team and feeling a bit past her prime, Lisa finds herself evaluating her life and in the middle of a love triangle, as a corporate guy in crisis competes with her current, baseball-playing beau.", "video": false, "id": 42888, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "How Do You Know", "tagline": "How do you know it's love?", "vote_count": 66, "homepage": "http://www.howdoyouknow-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1341188", "adult": false, "backdrop_path": "/yxgAcVuXTiPSNG6sFZDnX1Cfo0.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Gracie Films", "id": 18}, {"name": "Road Rebel", "id": 2648}], "release_date": "2010-12-17", "popularity": 0.576583261567137, "original_title": "How Do You Know", "budget": 120000000, "cast": [{"name": "Reese Witherspoon", "character": "Lisa Jorgenson", "id": 368, "credit_id": "52fe4620c3a36847f80ee491", "cast_id": 2, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Paul Rudd", "character": "George", "id": 22226, "credit_id": "52fe4621c3a36847f80ee499", "cast_id": 4, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Manny", "id": 887, "credit_id": "52fe4621c3a36847f80ee495", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Jack Nicholson", "character": "Charles", "id": 514, "credit_id": "52fe4621c3a36847f80ee49d", "cast_id": 5, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 3}, {"name": "Kathryn Hahn", "character": "Annie", "id": 17696, "credit_id": "52fe4621c3a36847f80ee4cb", "cast_id": 14, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 4}, {"name": "Molly Price", "character": "Coach Sally", "id": 150972, "credit_id": "52fe4621c3a36847f80ee4cf", "cast_id": 15, "profile_path": "/ac0F7GOwiSqglHajRHfUwlHUiW4.jpg", "order": 5}, {"name": "Shelley Conn", "character": "Terry", "id": 73707, "credit_id": "52fe4621c3a36847f80ee4d7", "cast_id": 17, "profile_path": "/aB6otZfYzA81v7E1Q1X06aKewpT.jpg", "order": 6}, {"name": "Tony Shalhoub", "character": "Psychiatrist", "id": 4252, "credit_id": "52fe4621c3a36847f80ee4d3", "cast_id": 16, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 7}, {"name": "Mark Linn-Baker", "character": "Ron", "id": 95975, "credit_id": "537b0d310e0a267ff40012c3", "cast_id": 18, "profile_path": "/myqnA6cnH8xdrPZvQyKO1JL8nEB.jpg", "order": 8}, {"name": "Lenny Venito", "character": "Al", "id": 37157, "credit_id": "537b0d400e0a267fed00123c", "cast_id": 19, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 9}, {"name": "Ron McLarty", "character": "George's Lawyer", "id": 167565, "credit_id": "537b0d550e0a267fff0011d8", "cast_id": 20, "profile_path": "/n5uRDc2hl8Y3Worq4e4U1jtBqwK.jpg", "order": 10}, {"name": "Domenick Lombardozzi", "character": "Bullpen Pitcher", "id": 17941, "credit_id": "537b0d780e0a267fea00112e", "cast_id": 21, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 11}, {"name": "John Tormey", "character": "Doorman", "id": 28002, "credit_id": "537b0d960e0a267fed001241", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Teyonah Parris", "character": "Riva", "id": 970219, "credit_id": "537b0dac0e0a26012d001285", "cast_id": 23, "profile_path": "/8JscUEAH1VUeWFzhUDMtAuaSVyj.jpg", "order": 13}, {"name": "Dean Norris", "character": "Softball Coach", "id": 14329, "credit_id": "537b0dca0e0a267ff40012cb", "cast_id": 24, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 14}], "directors": [{"name": "James L. Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe4620c3a36847f80ee48d", "profile_path": "/9Hx9JbnQBChJhlfJTvmnYF8o8DK.jpg", "id": 3388}], "vote_average": 5.0, "runtime": 121}, "1930": {"poster_path": "/AtFhFTNbNo49qn7fkbo9lDtRkeR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 752215857, "overview": "Peter Parker is an outcast high schooler was abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance\u2014leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.", "video": false, "id": 1930, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Amazing Spider-Man", "tagline": "The untold story begins.", "vote_count": 3526, "homepage": "http://www.theamazingspiderman.com", "belongs_to_collection": {"backdrop_path": "/aLrNTcLN2kDu9jAJ4tS5haiWGc6.jpg", "poster_path": "/moNJa86FgDYy8SWeDym2gnsLLMa.jpg", "id": 125574, "name": "The Amazing Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0948470", "adult": false, "backdrop_path": "/4Dd0CcqIHeyJFALYVzpHrsnbOX6.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Laura Ziskin Productions", "id": 326}], "release_date": "2012-07-04", "popularity": 2.66854927860964, "original_title": "The Amazing Spider-Man", "budget": 215000000, "cast": [{"name": "Andrew Garfield", "character": "Spider-Man / Peter Parker", "id": 37625, "credit_id": "531325d5c3a368299b0040db", "cast_id": 56, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 0}, {"name": "Emma Stone", "character": "Gwen Stacy", "id": 54693, "credit_id": "531325e8c3a36829ef003f5b", "cast_id": 57, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Rhys Ifans", "character": "The Lizard / Dr. Curt Connors", "id": 7026, "credit_id": "53132617c3a3682a10003f35", "cast_id": 58, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 2}, {"name": "Denis Leary", "character": "Captain Stacy", "id": 5724, "credit_id": "53132630c3a3682a02003f68", "cast_id": 59, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Uncle Ben", "id": 8349, "credit_id": "530d345a9251411428001777", "cast_id": 54, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "Sally Field", "character": "Aunt May", "id": 35, "credit_id": "530d34679251411444001685", "cast_id": 55, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 5}, {"name": "Irrfan Khan", "character": "Rajit Ratha", "id": 76793, "credit_id": "53132647c3a368299b0040e8", "cast_id": 60, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 6}, {"name": "Campbell Scott", "character": "Richard Parker", "id": 55152, "credit_id": "5362ad880e0a261df80003b3", "cast_id": 62, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 7}, {"name": "Embeth Davidtz", "character": "Mary Parker", "id": 6368, "credit_id": "5339835d9251417da4004842", "cast_id": 61, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 8}, {"name": "Chris Zylka", "character": "Flash Thompson", "id": 231547, "credit_id": "5362add10e0a261e06000379", "cast_id": 63, "profile_path": "/t1fXLPQccNXSEEabN6ORLKq8tnb.jpg", "order": 9}, {"name": "Max Charles", "character": "Peter Parker (Age 4)", "id": 558928, "credit_id": "5362addc0e0a261e1600036b", "cast_id": 64, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 10}, {"name": "C. Thomas Howell", "character": "Jack's Father", "id": 2878, "credit_id": "5362ade80e0a261dfb0003a9", "cast_id": 65, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 11}, {"name": "Jake Keiffer", "character": "Jack", "id": 1315833, "credit_id": "5362adf30e0a261e0600037e", "cast_id": 66, "profile_path": "/cJVZ3IwByiFg4StNDwJXMzxJ6V6.jpg", "order": 12}, {"name": "Kari Coleman", "character": "Helen Stacy", "id": 156989, "credit_id": "5362ae070e0a261e0d0003b8", "cast_id": 67, "profile_path": "/3DjDJrnKo79alMwmeoWLJejDfFo.jpg", "order": 13}, {"name": "Stan Lee", "character": "School Librarian", "id": 7624, "credit_id": "5362ae250e0a261e09000397", "cast_id": 69, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 15}, {"name": "Hannah Marks", "character": "Missy Kallenback", "id": 59261, "credit_id": "5395a831c3a36864230044f9", "cast_id": 85, "profile_path": "/xMahv8210mahplOr9OGPMVAQri7.jpg", "order": 16}, {"name": "Kelsey Chow", "character": "Hot Girl", "id": 205976, "credit_id": "5395a882c3a3684e36000ca0", "cast_id": 86, "profile_path": "/aIa02caevsfy596Fgy19Vdj44Wq.jpg", "order": 17}, {"name": "Kevin McCorkle", "character": "Mr. Cramer", "id": 91658, "credit_id": "5395a8ddc3a368642300450d", "cast_id": 87, "profile_path": "/9AHkmDvct03YJN8Wes3rsowZMOK.jpg", "order": 18}, {"name": "Barbara Eve Harris", "character": "Miss Ritter", "id": 157146, "credit_id": "5395a915c3a3686434004473", "cast_id": 88, "profile_path": "/dEiJziN5TPJU5LQjeN95tL3lrNk.jpg", "order": 19}, {"name": "Danielle Burgio", "character": "Nicky's Girlfriend", "id": 96753, "credit_id": "53a741cb0e0a261442004558", "cast_id": 89, "profile_path": "/ptuZRTCc1cGMcFfPsLl1UWJDJzE.jpg", "order": 20}, {"name": "Michael Barra", "character": "Store Clerk", "id": 1338023, "credit_id": "53b89967c3a3685eb70048d2", "cast_id": 90, "profile_path": "/5tHSSl2c4EhAD3vn3CE1eRUWPAU.jpg", "order": 21}, {"name": "Leif Gantvoort", "character": "Cash Register Thief", "id": 1111328, "credit_id": "53b89f57c3a368072e001ae9", "cast_id": 91, "profile_path": "/cxcafpMo5kr1QNKOla70cbSY6qD.jpg", "order": 22}, {"name": "Andy Pessoa", "character": "Gordon", "id": 1232365, "credit_id": "53b8a0af0e0a2676b8008302", "cast_id": 92, "profile_path": "/h7BIJJFBF5TaJJ3lpUt4Nb66ozP.jpg", "order": 23}, {"name": "Andy Gladbach", "character": "Physics Nerd", "id": 1338034, "credit_id": "53b8a29cc3a3685eb700497f", "cast_id": 93, "profile_path": "/ujDqt9MCFpkYrTUvDRItLxKuKjt.jpg", "order": 24}, {"name": "Ring Hendricks-Tellefsen", "character": "Physics Nerd", "id": 1338061, "credit_id": "53b8b1f30e0a266cb90003e3", "cast_id": 94, "profile_path": "/ubaodFU43ib9vPppM1GLxClwI98.jpg", "order": 25}, {"name": "Tom Waite", "character": "Nicky", "id": 1338215, "credit_id": "53b947c20e0a2676cf009747", "cast_id": 95, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 26}, {"name": "Keith Campbell", "character": "Car Thief", "id": 15318, "credit_id": "53b949210e0a2676bb009650", "cast_id": 96, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 27}, {"name": "Steve DeCastro", "character": "Car Thief Cop", "id": 66668, "credit_id": "53b9644ac3a3685ec1005896", "cast_id": 97, "profile_path": "/foD8RHoCJX6VmHDNOKQKoC0oOW3.jpg", "order": 28}, {"name": "James Chen", "character": "olice Officer", "id": 932116, "credit_id": "53fc5fb60e0a267a7500a7b2", "cast_id": 98, "profile_path": "/2o5Dn9H1iSqSv21XNDFthOz0lrm.jpg", "order": 29}], "directors": [{"name": "Marc Webb", "department": "Directing", "job": "Director", "credit_id": "52fe4323c3a36847f803d167", "profile_path": "/7uFlVK5BDTjk6IK9iBCmfrdaAs6.jpg", "id": 87742}], "vote_average": 6.3, "runtime": 136}, "11024": {"poster_path": "/vEp6qw25qY2n03O9EaeiWNv89vb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Mystery, Inc. are guests of honor at the grand opening of the Coolsville Museum of Criminology, a masked villain shows up and creates havoc before stealing the costumes of the gang's most notorious villains...Could it be that their nemesis, mad scientist Jonathan Jacobo has returned and is trying to recreate their deadliest foes?", "video": false, "id": 11024, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Scooby-Doo 2: Monsters Unleashed", "tagline": "They came. They saw. They ran.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vByvUnAp4eG5RzR1DFExi1lvx2C.jpg", "poster_path": "/YAuhbJKSG1R42QHJmbGsNQ80Fd.jpg", "id": 86860, "name": "Scooby-Doo (Live-action series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0331632", "adult": false, "backdrop_path": "/2vRVzvqY0tydcStBkNn73JPPOPL.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2004-03-20", "popularity": 0.962051571617711, "original_title": "Scooby-Doo 2: Monsters Unleashed", "budget": 0, "cast": [{"name": "Freddie Prinze Jr.", "character": "Fred", "id": 33260, "credit_id": "52fe43e69251416c75022513", "cast_id": 1, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "Daphne", "id": 11863, "credit_id": "52fe43e69251416c75022517", "cast_id": 2, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Shaggy", "id": 26457, "credit_id": "52fe43e69251416c7502251b", "cast_id": 3, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Linda Cardellini", "character": "Velma", "id": 1817, "credit_id": "52fe43e69251416c7502251f", "cast_id": 4, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 3}, {"name": "Seth Green", "character": "Patrick", "id": 13922, "credit_id": "52fe43e69251416c75022523", "cast_id": 5, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 4}, {"name": "Peter Boyle", "character": "Old Man Wickles", "id": 1039, "credit_id": "52fe43e69251416c75022527", "cast_id": 6, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 5}, {"name": "Tim Blake Nelson", "character": "Jacobo", "id": 1462, "credit_id": "52fe43e69251416c7502252b", "cast_id": 7, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 6}, {"name": "Alicia Silverstone", "character": "Heather", "id": 5588, "credit_id": "52fe43e69251416c7502252f", "cast_id": 8, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 7}, {"name": "Neil Fanning", "character": "Scooby-Doo (voice)", "id": 58271, "credit_id": "5505c42192514153ba00151b", "cast_id": 20, "profile_path": "/wkVEPmAwycJMwPA9RjjeJusMuxo.jpg", "order": 8}, {"name": "Pat O'Brien", "character": "Himself", "id": 1212818, "credit_id": "5505c5609251416cb70009d0", "cast_id": 22, "profile_path": "/812YjLLiOsBfb4BXm8DpMJIIpEk.jpg", "order": 10}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe43e69251416c75022535", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.0, "runtime": 93}, "126277": {"poster_path": "/95RD12IA9iOpepshVlsMhIwccfw.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "A young med student struggling with her tuition fees is drawn into the shady world of underground body modification.", "video": false, "id": 126277, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "American Mary", "tagline": "Appearances are everything", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1959332", "adult": false, "backdrop_path": "/8JredzZYoEoyXtRbx65rbUFEPUz.jpg", "production_companies": [{"name": "IndustryWorks Pictures", "id": 24901}, {"name": "430 Productions", "id": 24900}, {"name": "Twisted Twins Productions", "id": 24899}, {"name": "Evolution Pictures", "id": 4061}], "release_date": "2012-05-31", "popularity": 0.512727694679558, "original_title": "American Mary", "budget": 0, "cast": [{"name": "Katharine Isabelle", "character": "Mary Mason", "id": 27136, "credit_id": "52fe4adbc3a368484e16aa6d", "cast_id": 10, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 0}, {"name": "Julia Maxwell", "character": "Tessa", "id": 119219, "credit_id": "52fe4adbc3a368484e16aa61", "cast_id": 7, "profile_path": "/98JYMQKnTzlvLMWe33IR17HmW6t.jpg", "order": 1}, {"name": "Antonio Cupo", "character": "Billy", "id": 96555, "credit_id": "52fe4adbc3a368484e16aa65", "cast_id": 8, "profile_path": "/9B76K1FgaalBw17G6Av1L6sZ0II.jpg", "order": 2}, {"name": "Tristan Risk", "character": "Beatrice", "id": 1083260, "credit_id": "52fe4adbc3a368484e16aa69", "cast_id": 9, "profile_path": "/sqDxTrtjvmjnFEj5RZnr81BNWJo.jpg", "order": 3}, {"name": "Paula Lindberg", "character": "Ruby Realgirl", "id": 221085, "credit_id": "5396d5c6c3a3684f450037ad", "cast_id": 23, "profile_path": "/ieQtHJdkqSTlBcB3KXRzZRThMlW.jpg", "order": 4}, {"name": "Paul Anthony", "character": "Rat", "id": 1052900, "credit_id": "5396d6de0e0a266dce008d96", "cast_id": 29, "profile_path": "/mqqoiJjStvalu6QLLRHhbq1NmRQ.jpg", "order": 5}, {"name": "Clay St. Thomas", "character": "Dr. Walsh", "id": 90397, "credit_id": "5396d5f1c3a3686415005878", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "John Emmett Tracy", "character": "Detective Dolor", "id": 1182657, "credit_id": "5396d615c3a3684f450037b2", "cast_id": 25, "profile_path": "/sNWOxrNJULCLV8qDjO1ttwZmiUl.jpg", "order": 9}, {"name": "Twan Holliday", "character": "Lance Delgreggo", "id": 90724, "credit_id": "5396d637c3a3686446005a5f", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Nelson Wong", "character": "Dr. Black", "id": 997197, "credit_id": "5396d7200e0a266dbf008dcf", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Travis Watters", "character": "Mr. Realgirl", "id": 95410, "credit_id": "5396d7520e0a266dbb008ea1", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Marius Soska", "character": "Dr. Janusz", "id": 1329408, "credit_id": "5396d7ad0e0a266dc5008b23", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Sylvia Soska", "character": "Twin #1", "id": 544134, "credit_id": "544b71950e0a26747c0064b7", "cast_id": 35, "profile_path": "/hu1ysqofGcwAAHLMw1cP4UV64e4.jpg", "order": 14}, {"name": "Jen Soska", "character": "Twin #2", "id": 544130, "credit_id": "544b71bac3a3680fb4006922", "cast_id": 36, "profile_path": "/jluqmFK4CCXm6xLOnZdR6e6ULqR.jpg", "order": 15}], "directors": [{"name": "Jen Soska", "department": "Directing", "job": "Director", "credit_id": "52fe4adbc3a368484e16aa45", "profile_path": "/jluqmFK4CCXm6xLOnZdR6e6ULqR.jpg", "id": 544130}, {"name": "Sylvia Soska", "department": "Directing", "job": "Director", "credit_id": "52fe4adbc3a368484e16aa4b", "profile_path": "/hu1ysqofGcwAAHLMw1cP4UV64e4.jpg", "id": 544134}], "vote_average": 5.8, "runtime": 98}, "44363": {"poster_path": "/iJCMU7MS1aTIQeTZj0royhQigll.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3065860, "overview": "Three skiers are stranded on a chairlift and forced to make life-or-death choices that prove more perilous than staying put and freezing to death.", "video": false, "id": 44363, "genres": [{"id": 53, "name": "Thriller"}], "title": "Frozen", "tagline": "No one knows you're up there", "vote_count": 88, "homepage": "http://www.frozen-film.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1323045", "adult": false, "backdrop_path": "/tLS76JVfBWJ4UICTbKVT60a307O.jpg", "production_companies": [{"name": "ArieScope Pictures", "id": 3960}, {"name": "A Bigger Boat", "id": 5855}], "release_date": "2010-02-05", "popularity": 0.845914266708988, "original_title": "Frozen", "budget": 0, "cast": [{"name": "Emma Bell", "character": "Parker O'Neil", "id": 131820, "credit_id": "52fe4685c3a36847f8103925", "cast_id": 1, "profile_path": "/h5gQ1jUduNv6SmFFBPADvDie4nY.jpg", "order": 0}, {"name": "Shawn Ashmore", "character": "Joe Lynch", "id": 11023, "credit_id": "52fe4685c3a36847f8103929", "cast_id": 2, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 1}, {"name": "Kevin Zegers", "character": "Dan Walker", "id": 7431, "credit_id": "52fe4685c3a36847f810392d", "cast_id": 3, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 2}, {"name": "Ed Ackerman", "character": "Jason", "id": 131821, "credit_id": "52fe4685c3a36847f8103931", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Rileah Vanderbilt", "character": "Shannon", "id": 131822, "credit_id": "52fe4685c3a36847f8103935", "cast_id": 5, "profile_path": "/pxxWFuNs8fQQBsEmD99aCxIticz.jpg", "order": 4}, {"name": "Kane Hodder", "character": "Cody", "id": 62596, "credit_id": "52fe4685c3a36847f8103939", "cast_id": 6, "profile_path": "/1bTc6ACp6bLCBhhfNUZyqwnZ5fY.jpg", "order": 5}, {"name": "Adam Johnson", "character": "Rifkin", "id": 107793, "credit_id": "52fe4685c3a36847f810393d", "cast_id": 7, "profile_path": "/jr3cne62q08VNZu7OhSTd4FdirF.jpg", "order": 6}, {"name": "Chris York", "character": "Ryan", "id": 131823, "credit_id": "52fe4685c3a36847f8103941", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Peder Melhuse", "character": "Driver", "id": 131824, "credit_id": "52fe4685c3a36847f8103945", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Adam Green", "department": "Directing", "job": "Director", "credit_id": "52fe4685c3a36847f810394b", "profile_path": "/rdyG298NSBiY6tRp1sB4Ki2IdxZ.jpg", "id": 70890}], "vote_average": 5.8, "runtime": 93}, "249164": {"poster_path": "/isUQKy3cdfN62DfIp0dhl4hD5oc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75400000, "overview": "Based on Gayle Forman's novel of the same name. \"If I Stay\" is the story of the gifted classical musician Mia and her boyfriend, Adam, an up and coming indie-rock star. Torn between two paths in life, her art or her relationship, Mia is forced to make an even starker choice between life and death when she is caught in a fatal car accident with her family one snowy morning in Oregon.", "video": false, "id": 249164, "genres": [{"id": 18, "name": "Drama"}], "title": "If I Stay", "tagline": "Live for Love.", "vote_count": 273, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1355630", "adult": false, "backdrop_path": "/l1UF3Lr1zSUiwKgvdkk8OEEr4Sk.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2014-08-22", "popularity": 1.09499236969286, "original_title": "If I Stay", "budget": 11000000, "cast": [{"name": "Chlo\u00eb Grace Moretz", "character": "Mia Hall", "id": 56734, "credit_id": "52fe4f3ec3a36847f82c806b", "cast_id": 3, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 0}, {"name": "Mireille Enos", "character": "Kat Hall", "id": 175826, "credit_id": "52fe4f3ec3a36847f82c806f", "cast_id": 4, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 1}, {"name": "Jamie Blackley", "character": "Adam", "id": 221985, "credit_id": "52fe4f3ec3a36847f82c8073", "cast_id": 5, "profile_path": "/AiRZjxoqNHh4pR7ngfwhLBvGe3F.jpg", "order": 2}, {"name": "Liana Liberato", "character": "Kim Schein", "id": 60458, "credit_id": "52fe4f3ec3a36847f82c8077", "cast_id": 6, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 3}, {"name": "Stacy Keach", "character": "Gramps", "id": 825, "credit_id": "542d59c50e0a2607b7001d84", "cast_id": 15, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 4}, {"name": "Gabrielle Rose", "character": "Gran", "id": 58804, "credit_id": "542d59fb0e0a2607b7001d87", "cast_id": 17, "profile_path": "/wHJfGv13nIsph7Oam0Mf3boxDHK.jpg", "order": 5}, {"name": "Joshua Leonard", "character": "Denny", "id": 26852, "credit_id": "542d5a09c3a36845ef001cc8", "cast_id": 18, "profile_path": "/61n2FqQ4k1VbN2hM66zvr8fc2Tp.jpg", "order": 6}, {"name": "Jakob Davies", "character": "Teddy", "id": 139618, "credit_id": "542d5a5a0e0a26079e001e77", "cast_id": 19, "profile_path": "/9401kh3am1lZijYUbPUnnYBrw3Z.jpg", "order": 7}, {"name": "Ali Milner", "character": "Liz", "id": 1369431, "credit_id": "542d5a6f0e0a2607ab001cbe", "cast_id": 20, "profile_path": "/w7tYQesSPHQ9ua9O4cy6gHE8gz1.jpg", "order": 8}, {"name": "Aisha Hinds", "character": "Nurse Ramirez", "id": 1192492, "credit_id": "542d5a820e0a2607a7001d57", "cast_id": 21, "profile_path": "/pDgm7OM9pT9rF5Q41lVVWj2cqOv.jpg", "order": 9}, {"name": "Gabrielle Cerys Haslett", "character": "Young Mia", "id": 1369432, "credit_id": "542d5a94c3a3683e31001831", "cast_id": 22, "profile_path": "/lY2OMKLHg2fTXdI7tJWLax7uUGh.jpg", "order": 10}, {"name": "Lauren Lee Smith", "character": "Willow", "id": 52394, "credit_id": "542d5aa40e0a2607b3001dc6", "cast_id": 23, "profile_path": "/bJ9ZEHet5jxAgHrDZJtVzzR4akF.jpg", "order": 11}, {"name": "Adam Solomonian", "character": "Henry", "id": 1369433, "credit_id": "542d5acbc3a36845e5001dc4", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "John Emmett Tracy", "character": "Surgeon", "id": 1182657, "credit_id": "542d5add0e0a2607a1001cd8", "cast_id": 25, "profile_path": "/sNWOxrNJULCLV8qDjO1ttwZmiUl.jpg", "order": 13}, {"name": "Chelah Horsdal", "character": "Liddy", "id": 70175, "credit_id": "542d5aec0e0a2607ab001ccb", "cast_id": 26, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 14}, {"name": "Christine Willes", "character": "Nurse Davis", "id": 189719, "credit_id": "54f41fc4c3a368512b00100c", "cast_id": 57, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 15}, {"name": "Arielle Tuliao", "character": "Astrid", "id": 1406026, "credit_id": "54a25a979251411860000fdd", "cast_id": 28, "profile_path": "/twdKjMjoksByhfBphRLK9XD9FXm.jpg", "order": 16}, {"name": "Sarah Grey", "character": "Cute Groupie", "id": 1197119, "credit_id": "54a25cc99251411860001035", "cast_id": 29, "profile_path": "/r5J14otbKwrDzuZh8L2J6LEkwxp.jpg", "order": 17}, {"name": "Aliyah O'Brien", "character": "Female EMT", "id": 503854, "credit_id": "54a25f59925141198b0031ec", "cast_id": 30, "profile_path": "/oTVeahsFSCQQRypkHs4bpyTkp3b.jpg", "order": 18}, {"name": "William C. Vaughan", "character": "Male EMT", "id": 1287152, "credit_id": "54a260c1925141236b0059f9", "cast_id": 31, "profile_path": "/40WgztCkVXvltgyIVdpBtyoC9E3.jpg", "order": 19}, {"name": "Paul Jarrett", "character": "Surgeon", "id": 20380, "credit_id": "54a2622092514121270056a4", "cast_id": 32, "profile_path": "/o3N4gV1baZ6fzh8aaCPB6wmFVyO.jpg", "order": 20}, {"name": "Giles Panton", "character": "Teddy's Surgeon", "id": 1406035, "credit_id": "54a262e8c3a3682f1b00e879", "cast_id": 33, "profile_path": "/1FzkMiwAYD9F1TBSvPz2a1T1NpD.jpg", "order": 21}, {"name": "Dave Collette", "character": "Orderly", "id": 1406037, "credit_id": "54a264a59251414d270095a1", "cast_id": 34, "profile_path": "/qxmhKnfrYsWFZILCapgWTezuLCU.jpg", "order": 22}, {"name": "David Orth", "character": "Surgeon for Driver", "id": 1221020, "credit_id": "54a26b4192514117dd0011b4", "cast_id": 35, "profile_path": "/qvw7djGPev8EaIvpTWLMtZWDYpE.jpg", "order": 23}, {"name": "Camille Atebe", "character": "Nurse", "id": 206618, "credit_id": "54a26d97c3a3684d8f001283", "cast_id": 36, "profile_path": "/lOg3UvW7OZ4gOutPhDaNr7xwCgD.jpg", "order": 24}, {"name": "Annabel Kershaw", "character": "Wife of Driver", "id": 53715, "credit_id": "54a26f2f9251414e28009b22", "cast_id": 37, "profile_path": "/1VqbvAohBwFhETZtDe76JXQcxKm.jpg", "order": 25}, {"name": "Toby Hargrave", "character": "Mosh Pit Oaf", "id": 1223435, "credit_id": "54a272ff9251411d5300921f", "cast_id": 38, "profile_path": "/wW2kOlVGtrrDEZiNMd3poz7CKAD.jpg", "order": 26}, {"name": "Primo Allon", "character": "Punker", "id": 1366661, "credit_id": "54a27cb3c3a3682f2100ec7e", "cast_id": 40, "profile_path": "/tsMc3e9Mqm0BcqWfX5pCMRDHbze.jpg", "order": 27}, {"name": "John Shaw", "character": "Music Aficionado", "id": 79346, "credit_id": "54a2801ac3a3682f1b00eb7f", "cast_id": 41, "profile_path": "/r5ZeKicyshv5qFBqR4OiHEfNzwP.jpg", "order": 28}, {"name": "Michael Adamthwaite", "character": "Security Guard", "id": 63566, "credit_id": "54a2815a92514121270059d3", "cast_id": 42, "profile_path": "/cLHvXOFJgGPEN4ym0a2Ys4s3p85.jpg", "order": 29}, {"name": "Jameson Trenholm", "character": "Skeleton", "id": 1406094, "credit_id": "54a28227c3a3682f1b00ebc6", "cast_id": 43, "profile_path": "/viIwG4WHWuVg6bQDw7PeeIvguyH.jpg", "order": 30}, {"name": "Donnie MacNeil", "character": "Cool Rocker Guy", "id": 111930, "credit_id": "54a285039251411d530093d9", "cast_id": 44, "profile_path": "/8YKf73rmd0MbbE0nH3XcGB5jps4.jpg", "order": 31}, {"name": "Genevieve Buechner", "character": "Cute Groupie #2", "id": 46903, "credit_id": "54a285d5c3a3682f1e00e9fb", "cast_id": 45, "profile_path": "/sjTZG0L4tgEulkjc59NjnnOwdF2.jpg", "order": 32}, {"name": "Alisa Weilerstein", "character": "Herself", "id": 1406127, "credit_id": "54a286f3925141186000153f", "cast_id": 46, "profile_path": "/2Ndk3xrhRAHjLbJDMWorteFd1mz.jpg", "order": 33}, {"name": "Elisa King", "character": "Autograph Girl", "id": 208230, "credit_id": "54a28ae7c3a3684d600015c4", "cast_id": 47, "profile_path": "/8wzt7KQ4CboPMDbSMrZR9tj7ZEN.jpg", "order": 34}, {"name": "Brett Wise", "character": "Bartender", "id": 1406171, "credit_id": "54a291369251412127005ae9", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Steven Jeays", "character": "High Five Guy", "id": 1406182, "credit_id": "54a2924d9251411d5300950d", "cast_id": 49, "profile_path": "/lg1CCF6d081bP8ltcNgkGs6GWXc.jpg", "order": 36}, {"name": "Boyd Ferguson", "character": "Orderly #2", "id": 1406186, "credit_id": "54a2936cc3a368764f00b662", "cast_id": 50, "profile_path": "/8A07ocrcGF6nBFvusIFppIU4bcL.jpg", "order": 37}, {"name": "Sylvesta Stuart", "character": "Security Guard #2", "id": 1237423, "credit_id": "54a295c5925141236b005fd0", "cast_id": 51, "profile_path": "/n1lqjfpOw6zod8DIBw2xK3KDF8g.jpg", "order": 38}, {"name": "Ben Klassen", "character": "Willamette Stone Band", "id": 1406194, "credit_id": "54a29699c3a3682f1b00edb3", "cast_id": 52, "profile_path": "/2W0ayG0nK8iKGwmoeoMO2qmIWR8.jpg", "order": 39}, {"name": "Ryan Stephenson", "character": "Willamette Stone Band", "id": 1406196, "credit_id": "54a296e3c3a3682f1e00eb48", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Tom Vanderkam", "character": "Willamette Stone Band", "id": 1406198, "credit_id": "54a2974fc3a3682f1e00eb57", "cast_id": 54, "profile_path": "/q2MgxpUca6Dhzkdq8GNd8uNSqNd.jpg", "order": 41}, {"name": "Tony Dubroy", "character": "Bassist for Nasty Bruises", "id": 1406201, "credit_id": "54a297abc3a3682f1b00edd7", "cast_id": 55, "profile_path": null, "order": 42}], "directors": [{"name": "R.J. Cutler", "department": "Directing", "job": "Director", "credit_id": "52fe4f3ec3a36847f82c8061", "profile_path": "/sPtugFlx2CEAV60w5eeGx6z6rhB.jpg", "id": 1284493}], "vote_average": 7.3, "runtime": 106}, "75674": {"poster_path": "/rD7zSU8OVAcYg92nB19qIc7spiw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81272766, "overview": "Go \"down range\" with real, active duty Navy SEALs in this adrenaline-fueled action-adventure that inserts you into the heart of the battle, alongside America's best and bravest. When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.", "video": false, "id": 75674, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Act of Valor", "tagline": "The only easy day was yesterday", "vote_count": 207, "homepage": "http://www.actofvalor.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1591479", "adult": false, "backdrop_path": "/htNeKbkSBubGrdmPPg8lFZjSUdH.jpg", "production_companies": [{"name": "Bandito Brothers", "id": 8403}, {"name": "Relativity Media", "id": 7295}], "release_date": "2012-02-24", "popularity": 0.278765473857006, "original_title": "Act of Valor", "budget": 12000000, "cast": [{"name": "Roselyn S\u00e1nchez", "character": "Lisa Morales", "id": 41901, "credit_id": "52fe490cc3a368484e117eb5", "cast_id": 4, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 0}, {"name": "Emilio Rivera", "character": "Sanchez", "id": 53257, "credit_id": "52fe490cc3a368484e117eb9", "cast_id": 5, "profile_path": "/a69U3LaQXYn97lpn0LoATaTC5cc.jpg", "order": 1}, {"name": "Nestor Serrano", "character": "Walter Ross", "id": 14331, "credit_id": "52fe490cc3a368484e117ebd", "cast_id": 6, "profile_path": "/dZ44mFqSLqVqBmh4XqFRqqfa70N.jpg", "order": 2}, {"name": "Gonzalo Menendez", "character": "Commander Pedros", "id": 84754, "credit_id": "52fe490cc3a368484e117ec1", "cast_id": 7, "profile_path": "/qubqkIJkHSMwG1bAkiHjqY3xfxu.jpg", "order": 3}, {"name": "Alexander Asefa", "character": "Christo's Thug", "id": 1025647, "credit_id": "52fe490cc3a368484e117ec5", "cast_id": 8, "profile_path": "/fxrz9gOX1YqD3vCuBXu09mukQUT.jpg", "order": 4}, {"name": "Jeffrey Barnachea", "character": "Recruit", "id": 1025648, "credit_id": "52fe490cc3a368484e117ec9", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Kenny Calderon", "character": "Christo's Thug", "id": 1025649, "credit_id": "52fe490cc3a368484e117ecd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Raul Canizales II", "character": "Cartel & Mexican SOF", "id": 1025650, "credit_id": "52fe490cc3a368484e117ed1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Drea Castro", "character": "Recruit", "id": 1025651, "credit_id": "52fe490cc3a368484e117ed5", "cast_id": 12, "profile_path": "/y2lNbT0uvNgMBU6X6I6wymNOJDK.jpg", "order": 8}, {"name": "Sam Cespedes", "character": "Christo's Thug", "id": 1025654, "credit_id": "52fe490cc3a368484e117ed9", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Jimmy Chhiu", "character": "Recruit", "id": 1025655, "credit_id": "52fe490cc3a368484e117edd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Charles Chiyangwa", "character": "Somalian", "id": 1025657, "credit_id": "52fe490cc3a368484e117ee1", "cast_id": 15, "profile_path": "/hwn8v4uqKgavahqXxR9QsSBbjeP.jpg", "order": 11}, {"name": "Antoni Corone", "character": "Yacht Henchman #1", "id": 20562, "credit_id": "52fe490cc3a368484e117ee5", "cast_id": 16, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 12}, {"name": "Jason Cottle", "character": "Abu Shabal", "id": 8270, "credit_id": "52fe490cc3a368484e117ee9", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Jesse Cotton", "character": "Somalian", "id": 1025666, "credit_id": "52fe490cc3a368484e117eed", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Craig H. Davidson", "character": "Recruit", "id": 1025667, "credit_id": "52fe490cc3a368484e117ef1", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Juan Diaz", "character": "Cartel & Mexican SOF", "id": 1025668, "credit_id": "52fe490cc3a368484e117ef5", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Aurelius DiBarsanti", "character": "Recruit", "id": 1025669, "credit_id": "52fe490cc3a368484e117ef9", "cast_id": 21, "profile_path": "/xn0TmZdYYooaeUaeaJmEmDAq2K2.jpg", "order": 17}, {"name": "Pedro Sergio Escobedo", "character": "Cartel & Mexican SOF", "id": 1025670, "credit_id": "52fe490cc3a368484e117efd", "cast_id": 22, "profile_path": null, "order": 18}], "directors": [{"name": "Mike McCoy", "department": "Directing", "job": "Director", "credit_id": "52fe490cc3a368484e117ea5", "profile_path": null, "id": 90429}, {"name": "Scott Waugh", "department": "Directing", "job": "Director", "credit_id": "52fe490cc3a368484e117eab", "profile_path": null, "id": 293911}], "vote_average": 6.2, "runtime": 110}, "11601": {"poster_path": "/tdsVfsvvkj9ygu0LIiFtpCgwg8h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21133087, "overview": "After being hypnotized by his sister in law, Tom Witzky begins seeing haunting visions of a girl's ghost and a mystery begins to unfold around her.", "video": false, "id": 11601, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Stir of Echoes", "tagline": "In every mind there is a door that should never be opened.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 143757, "name": "Stir of Echoes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0164181", "adult": false, "backdrop_path": "/kwdmLQgWOmx9oXDpC6KwA2YJOFC.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}], "release_date": "1999-09-10", "popularity": 0.436253431409835, "original_title": "Stir of Echoes", "budget": 12000000, "cast": [{"name": "Kevin Bacon", "character": "Tom Witzky", "id": 4724, "credit_id": "52fe44659251416c75033317", "cast_id": 9, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Zachary David Cope", "character": "Jake Witzky", "id": 69979, "credit_id": "52fe44659251416c75033313", "cast_id": 8, "profile_path": null, "order": 1}, {"name": "Kathryn Erbe", "character": "Maggie Witzky", "id": 49824, "credit_id": "52fe44659251416c7503331b", "cast_id": 10, "profile_path": "/g08nZHy3iksjhczFfT8VctUIJ73.jpg", "order": 2}, {"name": "Illeana Douglas", "character": "Lisa Weil", "id": 7796, "credit_id": "52fe44659251416c7503331f", "cast_id": 11, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "Frank McCarthy", "id": 14721, "credit_id": "52fe44659251416c75033329", "cast_id": 13, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Conor O'Farrell", "character": "Harry Damon", "id": 119521, "credit_id": "52fe44659251416c7503332d", "cast_id": 14, "profile_path": "/ugq8gVP47XNWQyvVq5RNhA1yhv5.jpg", "order": 5}, {"name": "Lusia Strus", "character": "Sheila McCarthy", "id": 19293, "credit_id": "52fe44659251416c75033331", "cast_id": 15, "profile_path": "/qbXs16CG5qIyEc2CSfigwZSxDte.jpg", "order": 6}, {"name": "Stephen Eugene Walker", "character": "Bobby", "id": 1060579, "credit_id": "52fe44659251416c75033335", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mary Kay Cook", "character": "Vanessa Damon", "id": 191611, "credit_id": "52fe44659251416c75033339", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Larry Neumann Jr.", "character": "Lenny", "id": 946311, "credit_id": "52fe44659251416c7503333d", "cast_id": 18, "profile_path": "/wn6Ji5i1NoDVJjw3gCfzDIkGk4j.jpg", "order": 9}, {"name": "Jennifer Morrison", "character": "Samantha Kozac", "id": 41421, "credit_id": "52fe44659251416c75033341", "cast_id": 19, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 10}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe44659251416c750332eb", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 6.0, "runtime": 99}, "49014": {"poster_path": "/1L7Ise1Zjj2zbpbfrk7zHFiYrTt.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "PT", "name": "Portugal"}], "revenue": 6063556, "overview": "Riding across Manhattan in a stretch limo in order to get a haircut, a 28-year-old billionaire asset manager's day devolves into an odyssey with a cast of characters that start to tear his world apart.", "video": false, "id": 49014, "genres": [{"id": 18, "name": "Drama"}], "title": "Cosmopolis", "tagline": "How far can he go before he goes too far?", "vote_count": 85, "homepage": "http://cosmopolisthefilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1480656", "adult": false, "backdrop_path": "/ki7xrOPMcFp98TTY87NO0MTrpEw.jpg", "production_companies": [{"name": "Jouror Productions", "id": 12391}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "Prospero Pictures", "id": 2844}, {"name": "Alfama Films", "id": 3061}, {"name": "Leopardo Filmes", "id": 44106}, {"name": "Talandracas", "id": 44107}, {"name": "Canal+", "id": 5358}, {"name": "Rai Cinema", "id": 2683}, {"name": "Radiotelevis\u00e3o Portuguesa (RTP)", "id": 26019}], "release_date": "2012-05-25", "popularity": 0.308465419320465, "original_title": "Cosmopolis", "budget": 20500000, "cast": [{"name": "Robert Pattinson", "character": "Eric Packer", "id": 11288, "credit_id": "52fe4780c3a36847f8139387", "cast_id": 5, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Sarah Gadon", "character": "Elise Shifrin", "id": 190895, "credit_id": "52fe4780c3a36847f813939f", "cast_id": 11, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 1}, {"name": "Juliette Binoche", "character": "Didi Fancher", "id": 1137, "credit_id": "52fe4780c3a36847f813939b", "cast_id": 10, "profile_path": "/qlzTpnFyXkrO2ws2ccjaljl1Jlf.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Benno Levin", "id": 13242, "credit_id": "52fe4780c3a36847f8139393", "cast_id": 8, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Samantha Morton", "character": "Vija Kinsky", "id": 2206, "credit_id": "52fe4780c3a36847f813938b", "cast_id": 6, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 4}, {"name": "Jay Baruchel", "character": "Shiner", "id": 449, "credit_id": "52fe4780c3a36847f813938f", "cast_id": 7, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 5}, {"name": "Kevin Durand", "character": "Torval", "id": 79072, "credit_id": "52fe4780c3a36847f8139397", "cast_id": 9, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 6}, {"name": "Mathieu Amalric", "character": "Andre Petrescu", "id": 8789, "credit_id": "52fe4780c3a36847f81393a3", "cast_id": 12, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 7}, {"name": "Emily Hampshire", "character": "Jane Melman", "id": 4570, "credit_id": "52fe4780c3a36847f81393a7", "cast_id": 13, "profile_path": "/qlsKvrMs3aUktygImkHc8zXejgC.jpg", "order": 8}, {"name": "Patricia McKenzie", "character": "Kendra Hays", "id": 181250, "credit_id": "52fe4780c3a36847f81393af", "cast_id": 15, "profile_path": "/plQHNRa5ZQM6bVHSVFZX0iVVkwd.jpg", "order": 9}, {"name": "George Touliatos", "character": "Anthony", "id": 59179, "credit_id": "52fe4780c3a36847f81393b3", "cast_id": 16, "profile_path": "/5dhhJXgozmVffYlJiOweZIMPvSo.jpg", "order": 10}, {"name": "Philip Nozuka", "character": "Michael Chin", "id": 1016143, "credit_id": "52fe4780c3a36847f81393bb", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Abdul Ayoola", "character": "Ibrahim Hamadou", "id": 229561, "credit_id": "52fe4780c3a36847f81393c3", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Gouchy Boy", "character": "Kosmo Thomas", "id": 85162, "credit_id": "52fe4780c3a36847f81393c7", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Zeljko Kecojevic", "character": "Danko", "id": 930328, "credit_id": "52fe4780c3a36847f813941d", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Bob Bainborough", "character": "Dr. Ingram", "id": 146588, "credit_id": "52fe4780c3a36847f813942d", "cast_id": 44, "profile_path": null, "order": 15}, {"name": "Jadyn Wong", "character": "Cathy Lee", "id": 86765, "credit_id": "52fe4780c3a36847f81393bf", "cast_id": 19, "profile_path": "/gdG4gGj0zRLFXRtguGpAtIppaBT.jpg", "order": 16}, {"name": "David Schaap", "character": "Arthur Rapp", "id": 1177316, "credit_id": "52fe4780c3a36847f813940d", "cast_id": 36, "profile_path": "/jrG56M9qkTBnT9p4zS5td9HjRBC.jpg", "order": 17}, {"name": "Warren Chow", "character": "Arthur's Attacker", "id": 1177317, "credit_id": "52fe4780c3a36847f8139411", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Ryan Kelly", "character": "Rat Man #1", "id": 1177318, "credit_id": "52fe4780c3a36847f8139415", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Nadeem Umar-Khitab", "character": "Rat Man #2", "id": 1177319, "credit_id": "52fe4780c3a36847f8139419", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "K'Naan", "character": "Brutha Fez", "id": 1177322, "credit_id": "52fe4780c3a36847f8139421", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "John Batkis", "character": "Photographer #1", "id": 1177328, "credit_id": "52fe4780c3a36847f8139435", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Saad Siddiqui", "character": "Photographer #2", "id": 1016142, "credit_id": "52fe4780c3a36847f81393b7", "cast_id": 17, "profile_path": null, "order": 23}, {"name": "Anna Hardwick", "character": "Photographer #3 - Jenn", "id": 135256, "credit_id": "52fe4780c3a36847f81393ab", "cast_id": 14, "profile_path": "/mDQNiY7E0iKdsBYf8YCNB0Nr85z.jpg", "order": 24}, {"name": "Inessa Frantowski", "character": "Woman Holding Rat", "id": 1177323, "credit_id": "52fe4780c3a36847f8139425", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Albert Gomez", "character": "Counterman (as Alberto Gomez)", "id": 1177327, "credit_id": "52fe4780c3a36847f8139431", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Jonathan Seinen", "character": "Man on Fire", "id": 1177324, "credit_id": "52fe4780c3a36847f8139429", "cast_id": 43, "profile_path": null, "order": 27}, {"name": "Milton Barnes", "character": "Videographer", "id": 1226806, "credit_id": "52fe4780c3a36847f813945d", "cast_id": 53, "profile_path": "/8Lb9cegevGfADPuZNQ1BWunisik.jpg", "order": 28}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f8139383", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 4.6, "runtime": 109}, "11615": {"poster_path": "/pN338h8TeEl774vbOHR76VNgOc8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38955598, "overview": "A man against capital punishment is accused of murdering a fellow activist and is sent to death row.", "video": false, "id": 11615, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Life of David Gale", "tagline": "The crime is clear. The truth is not.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0289992", "adult": false, "backdrop_path": "/krjjWXi6pdtR0C7mCNmVH6uGumJ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Intermedia Films", "id": 763}, {"name": "Saturn Films", "id": 831}], "release_date": "2003-02-21", "popularity": 0.745780455308722, "original_title": "The Life of David Gale", "budget": 50000000, "cast": [{"name": "Kevin Spacey", "character": "David Gale", "id": 1979, "credit_id": "52fe44679251416c750339b5", "cast_id": 12, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Bitsey Bloom", "id": 204, "credit_id": "52fe44689251416c750339b9", "cast_id": 13, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Laura Linney", "character": "Constance Hallaway", "id": 350, "credit_id": "52fe44689251416c750339bd", "cast_id": 14, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 2}, {"name": "Gabriel Mann", "character": "Zack Stemmons", "id": 32458, "credit_id": "52fe44689251416c750339c1", "cast_id": 15, "profile_path": "/bv6zwRM5pKaETM3XdnLe7JFzVVI.jpg", "order": 3}, {"name": "Rhona Mitra", "character": "Berlin", "id": 25702, "credit_id": "52fe44689251416c750339c5", "cast_id": 16, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 4}, {"name": "Matt Craven", "character": "Dusty Wright", "id": 13525, "credit_id": "52fe44689251416c750339c9", "cast_id": 17, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 5}, {"name": "Melissa McCarthy", "character": "Nico the Goth Girl", "id": 55536, "credit_id": "52fe44689251416c750339cd", "cast_id": 18, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 6}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44679251416c75033975", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.3, "runtime": 130}, "76493": {"poster_path": "/uAvG211cGNKSFyPzXFVMZzjkBB8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167650222, "overview": "The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.", "video": false, "id": 76493, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Dictator", "tagline": "", "vote_count": 704, "homepage": "http://www.dictatorthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt1645170", "adult": false, "backdrop_path": "/akIvhOyNplQibXC8JCZh5dhKlDh.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2012-05-16", "popularity": 0.615310295801348, "original_title": "The Dictator", "budget": 65000000, "cast": [{"name": "Sacha Baron Cohen", "character": "Aladeen / Efawadh", "id": 6730, "credit_id": "52fe493ec3a368484e121721", "cast_id": 4, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Sayed Badreya", "character": "Omar", "id": 173810, "credit_id": "52fe493ec3a368484e121725", "cast_id": 5, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 1}, {"name": "Aasif Mandvi", "character": "Doctor", "id": 20644, "credit_id": "52fe493ec3a368484e121729", "cast_id": 6, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 2}, {"name": "Megan Fox", "character": "Herself", "id": 19537, "credit_id": "52fe493ec3a368484e12172d", "cast_id": 8, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 3}, {"name": "Anna Faris", "character": "Zoey", "id": 1772, "credit_id": "52fe493ec3a368484e121731", "cast_id": 9, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 4}, {"name": "John C. Reilly", "character": "Clayton", "id": 4764, "credit_id": "52fe493ec3a368484e121735", "cast_id": 10, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 5}, {"name": "Michelle Bergh", "character": "Aladeen's Mother", "id": 571570, "credit_id": "52fe493ec3a368484e121763", "cast_id": 19, "profile_path": "/7XREQAEKkTTbpf6XblFbBVpUXze.jpg", "order": 6}, {"name": "Adeel Akhtar", "character": "Maroush", "id": 81840, "credit_id": "52fe493ec3a368484e121767", "cast_id": 20, "profile_path": "/m5nctbJLv1N8uaUxP2aoFySISlC.jpg", "order": 7}, {"name": "Ben Kingsley", "character": "Tamir", "id": 2282, "credit_id": "52fe493ec3a368484e12176b", "cast_id": 21, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 8}, {"name": "Olivia Taylor Dudley", "character": "Nurse Svetlana", "id": 999817, "credit_id": "52fe493ec3a368484e12176f", "cast_id": 22, "profile_path": "/h7IwauTb4Zj0CNXSujNcgGixl7F.jpg", "order": 9}, {"name": "Jason Mantzoukas", "character": "Nadal", "id": 111683, "credit_id": "52fe493ec3a368484e121773", "cast_id": 23, "profile_path": "/lBMDmGGuhLrg0Q4cZi2vDc2ucgF.jpg", "order": 10}, {"name": "Kathryn Hahn", "character": "Pregnant Woman", "id": 17696, "credit_id": "52fe493ec3a368484e121777", "cast_id": 24, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 11}, {"name": "Rizwan Manji", "character": "Patient", "id": 1223718, "credit_id": "52fe493ec3a368484e121781", "cast_id": 26, "profile_path": "/yB9w540vNe4pwa3ptvO1haDUKWy.jpg", "order": 12}], "directors": [{"name": "Larry Charles", "department": "Directing", "job": "Director", "credit_id": "52fe493ec3a368484e121717", "profile_path": "/fg42iXWfuIeRVk4NFNWvWJf4hst.jpg", "id": 6767}], "vote_average": 5.9, "runtime": 83}, "11619": {"poster_path": "/oCdPDusnJvIZN6OpaF2Yj7211w.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64459316, "overview": "London high-society mouse Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs Spike and Whitey.", "video": false, "id": 11619, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Flushed Away", "tagline": "Someone's Going Down", "vote_count": 223, "homepage": "http://www.dreamworksanimation.com/flushed/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0424095", "adult": false, "backdrop_path": "/7gvhqD2l8T6qKlD0ec4nysh077y.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Aardman Animations", "id": 297}], "release_date": "2006-10-22", "popularity": 0.736339324224771, "original_title": "Flushed Away", "budget": 149000000, "cast": [{"name": "Hugh Jackman", "character": "Roddy", "id": 6968, "credit_id": "52fe44689251416c75033bf1", "cast_id": 1, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Rita", "id": 204, "credit_id": "52fe44689251416c75033bf5", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Ian McKellen", "character": "The Toad", "id": 1327, "credit_id": "52fe44689251416c75033bf9", "cast_id": 3, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Jean Reno", "character": "Le Frog", "id": 1003, "credit_id": "52fe44689251416c75033bfd", "cast_id": 4, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Whitey", "id": 2440, "credit_id": "52fe44689251416c75033c01", "cast_id": 5, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Andy Serkis", "character": "Spike", "id": 1333, "credit_id": "52fe44689251416c75033c05", "cast_id": 6, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 5}, {"name": "Shane Richie", "character": "Sid", "id": 215823, "credit_id": "52fe44699251416c75033c5d", "cast_id": 22, "profile_path": "/yVa9fEYwNoylPSCQ1qBIZTKrQ4B.jpg", "order": 6}, {"name": "Kathy Burke", "character": "Rita's Mum", "id": 37759, "credit_id": "52fe44699251416c75033c61", "cast_id": 23, "profile_path": "/3VjQaOV0Wyy1tzwxKI5Os5ZqID8.jpg", "order": 7}, {"name": "David Suchet", "character": "Rita's Dad", "id": 20277, "credit_id": "52fe44699251416c75033c65", "cast_id": 24, "profile_path": "/z0MuDGLfLLLKhwmbXCErxedHtQ9.jpg", "order": 8}, {"name": "Miriam Margolyes", "character": "Rita's Grandma", "id": 6199, "credit_id": "52fe44699251416c75033c69", "cast_id": 25, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 9}, {"name": "Rachel Rawlinson", "character": "Tabitha", "id": 1075046, "credit_id": "52fe44699251416c75033c6d", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Susan Duerden", "character": "Mother", "id": 58893, "credit_id": "52fe44699251416c75033c71", "cast_id": 27, "profile_path": "/q2DELwxwldboe84N9UFKIErjobe.jpg", "order": 11}, {"name": "Miles Richardson", "character": "Father", "id": 206393, "credit_id": "52fe44699251416c75033c75", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "John Motson", "character": "Football Commentator", "id": 1075047, "credit_id": "52fe44699251416c75033c79", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Douglas Weston", "character": "Newspaper Seller", "id": 1060194, "credit_id": "52fe44699251416c75033c7d", "cast_id": 30, "profile_path": null, "order": 14}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe44689251416c75033c0b", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}, {"name": "Sam Fell", "department": "Directing", "job": "Director", "credit_id": "52fe44699251416c75033c11", "profile_path": "/29NFQubb9A5OrA9OyXhnX4eOfkv.jpg", "id": 58897}], "vote_average": 5.8, "runtime": 85}, "11621": {"poster_path": "/d8J98dLZkfTpJY64VvtCOH2UkXP.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Porco Rosso, known in Japan as Crimson Pig (Kurenai no Buta) is the sixth animated film by Hayao Miyazaki and released in 1992. You're introduced to an Italian World War I fighter ace, now living as a freelance bounty hunter chasing \"air pirates\" in the Adriatic Sea. He has been given a curse that changed his head to that of a pig. Once called Marco Pagot, he is now known to the world as \"Porco Rosso\", Italian for \"Red Pig.\"", "video": false, "id": 11621, "genres": [{"id": 16, "name": "Animation"}], "title": "Porco Rosso", "tagline": "A pig's got to fly", "vote_count": 140, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0104652", "adult": false, "backdrop_path": "/6S8i52Q1ipCVYphnBJLhzCy0lb9.jpg", "production_companies": [{"name": "Tokuma Shoten", "id": 1779}, {"name": "Japan Airlines", "id": 12515}, {"name": "Nibariki", "id": 12516}, {"name": "Nippon Television Network (NTV)", "id": 20192}, {"name": "Studio Ghibli", "id": 10342}, {"name": "TNNG", "id": 12517}, {"name": "Toho Company", "id": 882}], "release_date": "1992-07-18", "popularity": 0.968030490889735, "original_title": "Kurenai no buta", "budget": 0, "cast": [{"name": "Sh\u00fbichir\u00f4 Moriyama", "character": "Kurenai no Buta (voice)", "id": 70046, "credit_id": "52fe44699251416c75033dc5", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Tokiko Kat\u00f4", "character": "Jina-sama (voice)", "id": 70047, "credit_id": "52fe44699251416c75033dc9", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Sanshi Katsura", "character": "Pikkoro-oyaji (voice)", "id": 70048, "credit_id": "52fe44699251416c75033dcd", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Tsunehiko Kamij\u00f4", "character": "Manmayuto no shach\u00f4 (voice)", "id": 20334, "credit_id": "52fe44699251416c75033dd1", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Akemi Okamura", "character": "Fio Pikkoro (voice)", "id": 90133, "credit_id": "52fe44699251416c75033e23", "cast_id": 18, "profile_path": "/bqt1vYkQwRvCW8yMibiMWpZicGT.jpg", "order": 4}, {"name": "Akio Ohtsuka", "character": "Donarudo K\u00e2chisu (voice)", "id": 550623, "credit_id": "52fe44699251416c75033e27", "cast_id": 19, "profile_path": "/lxew3RhQ7q8zMMuHTdRmSlXHFO8.jpg", "order": 5}, {"name": "Hiroko Seki", "character": "B\u00e2-chan (voice)", "id": 551769, "credit_id": "52fe44699251416c75033e2b", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Mahito Tsujimura", "character": "(voice)", "id": 614, "credit_id": "52fe446a9251416c75033e47", "cast_id": 25, "profile_path": "/dqVhQYTCYWOCuEofBZ5O3Xdgd3y.jpg", "order": 7}, {"name": "Minoru Yada", "character": "(voice)", "id": 620, "credit_id": "52fe446a9251416c75033e4b", "cast_id": 26, "profile_path": "/ou7xfpY5ao7uKfFAWLpJAIr6bHm.jpg", "order": 8}, {"name": "Osamu Saka", "character": "(voice)", "id": 83932, "credit_id": "54b9225ec3a368145e001973", "cast_id": 27, "profile_path": null, "order": 9}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe44699251416c75033dd7", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.3, "runtime": 94}, "85350": {"poster_path": "/5TSUvN9e9yiGOnjyJ8QIjWOot7S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44349000, "overview": "The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.", "video": false, "id": 85350, "genres": [{"id": 18, "name": "Drama"}], "title": "Boyhood", "tagline": "12 years in the making.", "vote_count": 644, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1065073", "adult": false, "backdrop_path": "/f0HeQdnuFkboXWGBgqtwYUKgLZw.jpg", "production_companies": [{"name": "IFC Productions", "id": 26468}], "release_date": "2014-07-11", "popularity": 3.00104561234773, "original_title": "Boyhood", "budget": 4000000, "cast": [{"name": "Ellar Coltrane", "character": "Mason", "id": 931944, "credit_id": "52fe49369251416c910a641d", "cast_id": 3, "profile_path": "/4TgDJjbbv5fR2vGsgMeJgdnLLU4.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Olivia", "id": 4687, "credit_id": "52fe49369251416c910a6421", "cast_id": 4, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Ethan Hawke", "character": "Mason Sr.", "id": 569, "credit_id": "52fe49369251416c910a6425", "cast_id": 5, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 2}, {"name": "Lorelei Linklater", "character": "Samantha", "id": 1327009, "credit_id": "538ce00ac3a368714e0032f1", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Tamara Jolaine", "character": "Tammy", "id": 110990, "credit_id": "52fe49369251416c910a6429", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Zoe Graham", "character": "Sheena", "id": 1327013, "credit_id": "538ce06fc3a368714b003354", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Sam Dillon", "character": "Nick", "id": 1327010, "credit_id": "538ce053c3a368713c00342b", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Nick Krause", "character": "Charlie", "id": 931945, "credit_id": "52fe49369251416c910a642d", "cast_id": 7, "profile_path": "/1UYyquycT8qGioKPRYNNKXLtlqJ.jpg", "order": 7}, {"name": "Shane Graham", "character": "Stanley", "id": 1327011, "credit_id": "538ce05ec3a368714b00334a", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Taylor Weaver", "character": "Barb", "id": 1377614, "credit_id": "54e7e815c3a36836e0000bed", "cast_id": 25, "profile_path": null, "order": 9}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe49369251416c910a6413", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 7.8, "runtime": 164}, "100241": {"poster_path": "/amJHZ4eOMpqyKo1GK33HFV55zue.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71154592, "overview": "200 years after his shocking creation, Dr. Frankenstein's creature, Adam, still walks the earth. But when he finds himself in the middle of a war over the fate of humanity, Adam discovers he holds the key that could destroy humankind.", "video": false, "id": 100241, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "I, Frankenstein", "tagline": "In the battle between good and evil, an immortal holds the key", "vote_count": 257, "homepage": "http://www.ifrankensteinfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1418377", "adult": false, "backdrop_path": "/rzzabQ2HNUDil53Zfueu0iyasgB.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Hopscotch Films", "id": 13788}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Lionsgate", "id": 1632}], "release_date": "2014-01-24", "popularity": 1.7272246236138, "original_title": "I, Frankenstein", "budget": 65000000, "cast": [{"name": "Aaron Eckhart", "character": "Adam", "id": 6383, "credit_id": "52fe49d0c3a36847f81a7b4b", "cast_id": 1, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Yvonne Strahovski", "character": "Terra", "id": 63312, "credit_id": "52fe49d0c3a36847f81a7b4f", "cast_id": 2, "profile_path": "/mgcaJaKhZtakVldW2KXYXhQ6ZJY.jpg", "order": 1}, {"name": "Bill Nighy", "character": "Naberius", "id": 2440, "credit_id": "52fe49d0c3a36847f81a7b53", "cast_id": 3, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 2}, {"name": "Jai Courtney", "character": "Gideon", "id": 224181, "credit_id": "52fe49d0c3a36847f81a7b57", "cast_id": 4, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 3}, {"name": "Miranda Otto", "character": "Leonore", "id": 502, "credit_id": "52fe49d0c3a36847f81a7b5b", "cast_id": 5, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 4}, {"name": "Caitlin Stasey", "character": "Keziah", "id": 145245, "credit_id": "52fe49d0c3a36847f81a7b5f", "cast_id": 6, "profile_path": "/7eE8VYl2oej8jpNaWqsrAJxCXYM.jpg", "order": 5}, {"name": "Kevin Grevioux", "character": "Dekar", "id": 3952, "credit_id": "52fe49d0c3a36847f81a7b63", "cast_id": 7, "profile_path": "/eP1P9jxMBiI1a6cQHlChNdDALKY.jpg", "order": 6}, {"name": "Aden Young", "character": "Dr. Frankenstein", "id": 144081, "credit_id": "52fe49d0c3a36847f81a7b67", "cast_id": 8, "profile_path": "/yXvlTjXdrMqEtHnL1pofXWNjFCJ.jpg", "order": 7}, {"name": "Deniz Akdeniz", "character": "Barachel", "id": 145246, "credit_id": "52fe49d0c3a36847f81a7b6b", "cast_id": 9, "profile_path": "/4ONfe9SHo6N3hkJyJ61qHJevJPJ.jpg", "order": 8}, {"name": "Chris Pang", "character": "Levi", "id": 145248, "credit_id": "52fe49d0c3a36847f81a7b6f", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Socratis Otto", "character": "Zuriel", "id": 75174, "credit_id": "52fe49d0c3a36847f81a7b73", "cast_id": 11, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 10}, {"name": "Steve Mouzakis", "character": "Helek", "id": 187494, "credit_id": "52fe49d1c3a36847f81a7bef", "cast_id": 33, "profile_path": "/z5GjGHH4h5UQOof7bfyPR05Fwl8.jpg", "order": 11}, {"name": "Bruce Spence", "character": "Molokai", "id": 27752, "credit_id": "52fe49d1c3a36847f81a7bf3", "cast_id": 34, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 12}, {"name": "Mahesh Jadu", "character": "Ophir", "id": 1386458, "credit_id": "546a615deaeb816b46003d97", "cast_id": 54, "profile_path": "/gfcZiYji4x3tjGQq7vTK8goz40D.jpg", "order": 13}], "directors": [{"name": "Stuart Beattie", "department": "Directing", "job": "Director", "credit_id": "52fe49d0c3a36847f81a7b79", "profile_path": null, "id": 1707}], "vote_average": 5.4, "runtime": 92}, "3432": {"poster_path": "/atLwYVquG4YrGEk06tx9tJuTcN5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41637263, "overview": "A psychological thriller about a man who is sometimes controlled by his murder-and-mayhem-loving alter ego.", "video": false, "id": 3432, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mr. Brooks", "tagline": "The man who has everything has everything to hide.", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780571", "adult": false, "backdrop_path": "/yJjvkbIZesG6ViXDsOLOufmTEIX.jpg", "production_companies": [{"name": "Tig Productions", "id": 335}, {"name": "Element Films", "id": 2274}, {"name": "Relativity Media", "id": 7295}, {"name": "Eden Rock Media", "id": 2273}], "release_date": "2007-06-01", "popularity": 0.932032185974799, "original_title": "Mr. Brooks", "budget": 20000000, "cast": [{"name": "Kevin Costner", "character": "Earl Brooks", "id": 1269, "credit_id": "52fe4393c3a36847f805ef49", "cast_id": 13, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Demi Moore", "character": "Det. Tracy Atwood", "id": 3416, "credit_id": "52fe4393c3a36847f805ef4d", "cast_id": 14, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Dane Cook", "character": "Mr. Smith", "id": 31837, "credit_id": "52fe4393c3a36847f805ef51", "cast_id": 15, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 2}, {"name": "William Hurt", "character": "Marshall", "id": 227, "credit_id": "52fe4393c3a36847f805ef55", "cast_id": 16, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Marg Helgenberger", "character": "Emma Brooks", "id": 19838, "credit_id": "52fe4393c3a36847f805ef59", "cast_id": 17, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 4}, {"name": "Danielle Panabaker", "character": "Jane Brooks", "id": 31838, "credit_id": "52fe4393c3a36847f805ef5d", "cast_id": 18, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 5}, {"name": "Ruben Santiago-Hudson", "character": "Hawkins", "id": 31839, "credit_id": "52fe4393c3a36847f805ef61", "cast_id": 19, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 6}, {"name": "Reiko Aylesworth", "character": "Sheila", "id": 25869, "credit_id": "52fe4394c3a36847f805ef65", "cast_id": 20, "profile_path": "/59Gu57v2rOtvvBA06rSuYX2w5h2.jpg", "order": 7}, {"name": "Matt Schulze", "character": "Meeks", "id": 31841, "credit_id": "52fe4394c3a36847f805ef69", "cast_id": 21, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 8}, {"name": "Yasmine Delawari", "character": "Sunday", "id": 31842, "credit_id": "52fe4394c3a36847f805ef6d", "cast_id": 22, "profile_path": "/v1sRdrzXc9mpzQT30PUC03tcrvE.jpg", "order": 9}, {"name": "Jason Lewis", "character": "Jesse Vialo", "id": 32224, "credit_id": "52fe4394c3a36847f805ef71", "cast_id": 23, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 10}, {"name": "Lindsay Crouse", "character": "Captain Lister", "id": 32225, "credit_id": "52fe4394c3a36847f805ef75", "cast_id": 24, "profile_path": "/mAZTWVbtfmC0R4R6TZ3rjhJSW0b.jpg", "order": 11}], "directors": [{"name": "Bruce A. Evans", "department": "Directing", "job": "Director", "credit_id": "52fe4393c3a36847f805ef03", "profile_path": null, "id": 3028}], "vote_average": 6.8, "runtime": 120}, "241254": {"poster_path": "/y7jSioitJoolDvn29D0yLJLCk30.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 266586800, "overview": "A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.", "video": false, "id": 241254, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Prince", "tagline": "Mercy is for the Weak", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1085492", "adult": false, "backdrop_path": "/bnACOELViX2XwXjqzC8V5TclrPY.jpg", "production_companies": [{"name": "Oasis Films", "id": 33831}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Aperture Entertainment", "id": 33832}, {"name": "Grindstone Entertainment Group", "id": 3604}], "release_date": "2014-08-22", "popularity": 2.31779630657599, "original_title": "The Prince", "budget": 18000000, "cast": [{"name": "Bruce Willis", "character": "Omar", "id": 62, "credit_id": "52fe4eb5c3a36847f82a2cbb", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Jason Patric", "character": "Paul", "id": 12261, "credit_id": "52fe4eb5c3a36847f82a2cbf", "cast_id": 5, "profile_path": "/1WxY2kcQqx9gHloTmRuY5ta3Nje.jpg", "order": 1}, {"name": "John Cusack", "character": "Sam", "id": 3036, "credit_id": "52fe4eb5c3a36847f82a2cc3", "cast_id": 6, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 2}, {"name": "Jessica Lowndes", "character": "Angela", "id": 84698, "credit_id": "52fe4eb5c3a36847f82a2cd7", "cast_id": 11, "profile_path": "/9zFdY2ZE9ue5yJmpkQBF7B06JtQ.jpg", "order": 3}, {"name": "Gia Mantegna", "character": "Beth", "id": 137424, "credit_id": "52fe4eb5c3a36847f82a2ccf", "cast_id": 9, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 4}, {"name": "Rain", "character": "Mark", "id": 112013, "credit_id": "52fe4eb5c3a36847f82a2cd3", "cast_id": 10, "profile_path": "/7oLrI71PNp9iGwJkgr2Bq34t2Yt.jpg", "order": 5}, {"name": "50 Cent", "character": "The Pharmacy", "id": 62644, "credit_id": "52fe4eb5c3a36847f82a2cc7", "cast_id": 7, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 6}, {"name": "Don Harvey", "character": "Riley", "id": 1280, "credit_id": "54146c6bc3a3687dc1001f88", "cast_id": 12, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 7}, {"name": "Jesse Pruett", "character": "Wilson", "id": 139197, "credit_id": "54146c77c3a3687dc8001f4c", "cast_id": 13, "profile_path": "/8VBlaffStPHz89oXnki14Gv2Yw6.jpg", "order": 8}, {"name": "Didi Costine", "character": "Rachel", "id": 1363621, "credit_id": "54146c9ac3a3687db2001f6e", "cast_id": 14, "profile_path": "/vLvKAgC1bmGO85zdhTcMwgc8KPN.jpg", "order": 9}, {"name": "Bonnie Somerville", "character": "Susan", "id": 66579, "credit_id": "54146cacc3a3687dc5002067", "cast_id": 15, "profile_path": "/a1tjNEX8Tm5WupP9vEdRnpW2s45.jpg", "order": 10}, {"name": "Tim Fields", "character": "Jimmy", "id": 125332, "credit_id": "54146cb6c3a3687dc8001f5a", "cast_id": 16, "profile_path": "/zzAvH0kNodbKqCxAakIKmaot7sc.jpg", "order": 11}, {"name": "Jonathon Schaech", "character": "Frank", "id": 1276378, "credit_id": "52fe4eb5c3a36847f82a2ccb", "cast_id": 8, "profile_path": "/xZcjqEqfDes0xYZDcqgrZdMbX0N.jpg", "order": 12}, {"name": "Andrea Burns", "character": "Janine", "id": 1363622, "credit_id": "54146cdc0e0a2619a4001f79", "cast_id": 17, "profile_path": "/iH4UC5DrjSKkZOaxj3zc0nPCqOp.jpg", "order": 13}, {"name": "Jim Bennett", "character": "Justin", "id": 1363623, "credit_id": "54146cf30e0a26199b001f44", "cast_id": 18, "profile_path": "/22twthSNUZ5uApgi0b7bczm3A5c.jpg", "order": 14}, {"name": "Johnathon Schaech", "character": "Frank", "id": 51670, "credit_id": "5471e007c3a3681be5000503", "cast_id": 41, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 15}, {"name": "Tyler J. Olson", "character": "Eddie", "id": 1388479, "credit_id": "54720187c3a36833ad000e29", "cast_id": 42, "profile_path": "/LFjGtC3gg0XHBRyEZGk8DR5CTq.jpg", "order": 16}, {"name": "Jonathan Carkeek", "character": "Mitch", "id": 1388480, "credit_id": "547202df92514112ee007bf9", "cast_id": 43, "profile_path": "/oOzTLHtD4ObZHeSGP6SgB1AuWzA.jpg", "order": 17}, {"name": "Jay Oringer", "character": "Brickyard Bouncer", "id": 1388482, "credit_id": "547203799251413813004412", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Tara Holt", "character": "Candice", "id": 1006733, "credit_id": "547204bd9251410ebc00133c", "cast_id": 45, "profile_path": "/iq7yIZgfHbin1qR3sDOtaWIuWfW.jpg", "order": 19}, {"name": "Andrew Wert", "character": "Facetime Stranger", "id": 1388484, "credit_id": "5472078592514112ee007c96", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Danielle Phelan", "character": "Junky Girlfriend", "id": 1388485, "credit_id": "54720934c3a3681be5000afd", "cast_id": 47, "profile_path": "/iIF1YotDzxVABDpVwT6QJly7NzU.jpg", "order": 21}, {"name": "David Gordon", "character": "Omar's Head of Security", "id": 1388486, "credit_id": "547209f49251415cfc00003b", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "Martin Blencowe", "character": "Bartender", "id": 1113450, "credit_id": "54720b20c3a3686fc0000418", "cast_id": 49, "profile_path": null, "order": 23}, {"name": "Courtney B Turk", "character": "Meagan", "id": 1267285, "credit_id": "54720c939251413813004515", "cast_id": 50, "profile_path": "/r8a4Qahyxdb4A5F5l9MkcUGZfi2.jpg", "order": 24}], "directors": [{"name": "Brian A. Miller", "department": "Directing", "job": "Director", "credit_id": "5422234bc3a368087200042a", "profile_path": null, "id": 81613}], "vote_average": 5.1, "runtime": 93}, "11631": {"poster_path": "/gOm2iMMbC6EonrFzmSQ8xvCa4Ei.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 602609487, "overview": "Set on an idyllic Greek island, the plot serves as a background for a wealth of ABBA hit songs. Donna, an independent, single mother who owns a small hotel on the island is about to let go of Sophie, the spirited young daughter she's raised alone. But Sophie has secretly invited three of her mother's ex-lovers in the hopes of finding her father.", "video": false, "id": 11631, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Mamma Mia!", "tagline": "Take a trip down the aisle you'll never forget", "vote_count": 323, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt0795421", "adult": false, "backdrop_path": "/txtRue33MaXv5HQpTiHPOmOcDxE.jpg", "production_companies": [{"name": "Internationale Filmproduktion Richter", "id": 2655}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Littlestar", "id": 34441}, {"name": "Playtone", "id": 4171}], "release_date": "2008-06-30", "popularity": 1.60405854576855, "original_title": "Mamma Mia!", "budget": 52000000, "cast": [{"name": "Meryl Streep", "character": "Donna", "id": 5064, "credit_id": "52fe446c9251416c7503427f", "cast_id": 6, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Pierce Brosnan", "character": "Sam Carmichael", "id": 517, "credit_id": "52fe446c9251416c7503427b", "cast_id": 5, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 1}, {"name": "Amanda Seyfried", "character": "Sophie", "id": 71070, "credit_id": "52fe446c9251416c75034273", "cast_id": 3, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 2}, {"name": "Colin Firth", "character": "Harry Bright", "id": 5472, "credit_id": "52fe446c9251416c7503428b", "cast_id": 10, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 3}, {"name": "Stellan Skarsg\u00e5rd", "character": "Bill", "id": 1640, "credit_id": "52fe446c9251416c75034277", "cast_id": 4, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 4}, {"name": "Julie Walters", "character": "Rosie", "id": 477, "credit_id": "52fe446c9251416c75034283", "cast_id": 7, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 5}, {"name": "Christine Baranski", "character": "Tanya", "id": 11870, "credit_id": "52fe446c9251416c75034287", "cast_id": 8, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 6}, {"name": "Nancy Baldwin", "character": "Sam's PA", "id": 71072, "credit_id": "52fe446c9251416c7503428f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Enzo Squillino, Jr.", "character": "Gregoris", "id": 71073, "credit_id": "52fe446c9251416c75034293", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Rachel McDowall", "character": "Lisa", "id": 127000, "credit_id": "52fe446c9251416c750342d9", "cast_id": 25, "profile_path": "/7nU3c5o386U1EMGJoMbLNtTKcv0.jpg", "order": 10}, {"name": "Dominic Cooper", "character": "Sky", "id": 55470, "credit_id": "52fe446c9251416c750342e3", "cast_id": 27, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 11}, {"name": "Helen Soraya", "character": "Hen", "id": 1105459, "credit_id": "52fe446c9251416c750342e7", "cast_id": 28, "profile_path": "/sdjlyzUXrx5qAZ0cMISZjnLwvTX.jpg", "order": 12}], "directors": [{"name": "Phyllida Lloyd", "department": "Directing", "job": "Director", "credit_id": "52fe446c9251416c75034269", "profile_path": "/jNZ2wVL5lsFvM6pPmRGFWI4SFvm.jpg", "id": 71068}], "vote_average": 6.1, "runtime": 108}, "19824": {"poster_path": "/sJgbsheX4wV1qukwjOyXMFCdT5B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It is freshman year at Coolidge College and Van Wilder is ready to party. To his dismay, all the girls have taken a vow of chastity and the dean rules the school. Van embarks on a crusade to land the campus hottie, Kaitlin, and liberate his school from sexual oppression and party dysfunction.", "video": false, "id": 19824, "genres": [{"id": 35, "name": "Comedy"}], "title": "Van Wilder: Freshman Year", "tagline": "The man. The myth. The beginning.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fvkR1SE5i1qUVHM5vewIf9jozcu.jpg", "poster_path": "/phxBWdWHgtUpns0XU33JbBKMgsx.jpg", "id": 43220, "name": "National Lampoon\u2019s Van Wilder Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1276434", "adult": false, "backdrop_path": "/u3pQOLr9KrsMaPxmtvFDUM0Sh6Y.jpg", "production_companies": [{"name": "Tapestry Films", "id": 870}, {"name": "Paramount Home Entertainment", "id": 6548}], "release_date": "2009-06-02", "popularity": 0.270929671330702, "original_title": "Van Wilder: Freshman Year", "budget": 0, "cast": [{"name": "Jonathan Bennett", "character": "Van Wilder", "id": 76996, "credit_id": "52fe47f29251416c750aace9", "cast_id": 3, "profile_path": "/7IdoFyD20nGmfb1eh8AW71htRJM.jpg", "order": 0}, {"name": "Kristin Cavallari", "character": "Kaitlin", "id": 85206, "credit_id": "52fe47f29251416c750aaced", "cast_id": 4, "profile_path": "/9AKiX4cyuiLZczDb7dP5QRT7bKR.jpg", "order": 1}, {"name": "Jerry Shea", "character": "Yu Dum Fok", "id": 85207, "credit_id": "52fe47f29251416c750aacf1", "cast_id": 5, "profile_path": "/wj8dWwT2jq0qfZZbkdfFjZkQQUe.jpg", "order": 2}, {"name": "Nestor Aaron Absera", "character": "Farley", "id": 85208, "credit_id": "52fe47f29251416c750aacf5", "cast_id": 6, "profile_path": "/pS8XnZ3GfbZpCVmH3DEyTJaZN4t.jpg", "order": 3}, {"name": "Steve Talley", "character": "Dick Arnold", "id": 26975, "credit_id": "52fe47f29251416c750aacf9", "cast_id": 7, "profile_path": "/k0T00nPOY7K0Wocd5l7gfjoTJHF.jpg", "order": 4}, {"name": "Nic Nac", "character": "Corporal Benedict", "id": 27019, "credit_id": "52fe47f29251416c750aacfd", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Meredith Giangrande", "character": "Eve", "id": 85209, "credit_id": "52fe47f29251416c750aad01", "cast_id": 9, "profile_path": "/gnmwYYkvLMdIZhepxlesbViKqid.jpg", "order": 6}], "directors": [{"name": "Harvey Glazer", "department": "Directing", "job": "Director", "credit_id": "52fe47f29251416c750aacdf", "profile_path": null, "id": 62658}], "vote_average": 5.2, "runtime": 100}, "11633": {"poster_path": "/dyROof1YUhe0eul1P1js6ghYtkQ.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 1461989, "overview": "In a utopian society created at the end of the third world war, a female warrior who has been plucked from the badlands begins to see cracks in this new facade. And what does this community have planned for the rest of humankind?", "video": false, "id": 11633, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Appleseed", "tagline": "Humanity's last chance for survival!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3uFYlHmUZtEGBiwdxtSlphbmfjK.jpg", "poster_path": "/AoM1NzRnSpo6VtIs3wpzKUSObUX.jpg", "id": 87800, "name": "Appleseed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0401233", "adult": false, "backdrop_path": "/2ynxC25bh0lTazbCcUv6n1MTOjj.jpg", "production_companies": [{"name": "Toho Company", "id": 882}, {"name": "Tokyo Broadcasting System (TBS)", "id": 1393}, {"name": "Digital Frontier", "id": 3361}, {"name": "Geneon Entertainment", "id": 3362}, {"name": "Mainichi Broadcasting System (MBS)", "id": 3363}, {"name": "Micott Basara K.K.", "id": 3364}, {"name": "TYO Productions", "id": 3365}, {"name": "Appleseed Film Partners", "id": 3360}], "release_date": "2004-04-17", "popularity": 0.678921886874346, "original_title": "\u30a2\u30c3\u30d7\u30eb\u30b7\u30fc\u30c9", "budget": 10000000, "cast": [{"name": "Ai Kobayashi", "character": "Deunan", "id": 68918, "credit_id": "52fe446c9251416c750343e3", "cast_id": 1, "profile_path": "/90iLbU0MZ4gQ9ddi8Sf0wMSPoTE.jpg", "order": 0}, {"name": "J\u016br\u014dta Kosugi", "character": "Briareos", "id": 70098, "credit_id": "52fe446c9251416c750343e7", "cast_id": 2, "profile_path": "/nMj0Pt1i8lbPGeWlIE5rFIXYiII.jpg", "order": 1}, {"name": "Yuki Matsuoka", "character": "Hitomi", "id": 70099, "credit_id": "52fe446c9251416c750343eb", "cast_id": 3, "profile_path": "/9O23DQ0wRBDMaqJ2KdO0GDliegp.jpg", "order": 2}, {"name": "Asumi Miwa", "character": "Deunan (motion actor)", "id": 20313, "credit_id": "52fe446c9251416c750343ef", "cast_id": 4, "profile_path": "/gH3uNPWNNFQgsSCHhD3OrcdmzQq.jpg", "order": 3}, {"name": "Mami Koyama", "character": "Athena", "id": 1680, "credit_id": "52fe446c9251416c750343f3", "cast_id": 5, "profile_path": "/vqdcJrnO2VMMxyvg7j5Pft0dhmn.jpg", "order": 4}, {"name": "Akimoto Tsubasa", "character": "Deunan (motion actor)", "id": 1120475, "credit_id": "52fe446c9251416c75034463", "cast_id": 24, "profile_path": null, "order": 5}, {"name": "Yuzuru Fujimoto", "character": "Uranus", "id": 114739, "credit_id": "52fe446c9251416c75034467", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Tomoko Kawakami", "character": "Young Deunan", "id": 124476, "credit_id": "52fe446d9251416c7503446b", "cast_id": 26, "profile_path": "/4drohdK6CqiGtlQcD8Makj5O28E.jpg", "order": 7}, {"name": "Takehito Koyasu", "character": "Hades", "id": 84508, "credit_id": "52fe446d9251416c7503446f", "cast_id": 27, "profile_path": "/cReYEHxQj6JdLb7bNSUfrGYn44F.jpg", "order": 8}, {"name": "Toshiyuki Morikawa", "character": "Yoshitsune", "id": 9706, "credit_id": "52fe446d9251416c75034473", "cast_id": 28, "profile_path": "/aAmwmPXJBnwTnvWVDx74OdNGo8q.jpg", "order": 9}, {"name": "Ry\u00fbji Nakagi", "character": "1st Elder Electryon", "id": 1120476, "credit_id": "52fe446d9251416c75034477", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Ikuo Nishikawa", "character": "Seven Old Men", "id": 1120477, "credit_id": "52fe446d9251416c7503447b", "cast_id": 30, "profile_path": null, "order": 11}], "directors": [{"name": "Shinji Aramaki", "department": "Directing", "job": "Director", "credit_id": "52fe446c9251416c750343f9", "profile_path": null, "id": 70100}], "vote_average": 6.8, "runtime": 101}, "11635": {"poster_path": "/lvcyZumUoA6OBeqcJknfZVTmKKF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87055349, "overview": "Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.", "video": false, "id": 11635, "genres": [{"id": 35, "name": "Comedy"}], "title": "Old School", "tagline": "All the fun of college, none of the education.", "vote_count": 101, "homepage": "http://www.oldschool-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0302886", "adult": false, "backdrop_path": "/ixpnr4IeYWiuPfPcLPnoy8xNQC6.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "The Montecito Picture Company", "id": 2364}], "release_date": "2003-02-21", "popularity": 0.978536282028428, "original_title": "Old School", "budget": 24000000, "cast": [{"name": "Luke Wilson", "character": "Mitch Martin \u201eThe Godfather\u201c", "id": 36422, "credit_id": "52fe446d9251416c75034583", "cast_id": 13, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Frank \"The Tank\u201c", "id": 23659, "credit_id": "52fe446d9251416c75034587", "cast_id": 14, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Beanie", "id": 4937, "credit_id": "52fe446d9251416c7503458b", "cast_id": 15, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Ellen Pompeo", "character": "Nicole", "id": 9280, "credit_id": "52fe446d9251416c7503458f", "cast_id": 16, "profile_path": "/iX5HdQdWRPLf5Fx87QDNCdehmI9.jpg", "order": 3}, {"name": "Leah Remini", "character": "Lara Campbell", "id": 15050, "credit_id": "52fe446d9251416c75034593", "cast_id": 17, "profile_path": "/bb8HtfAJQSUt0KPwhd46sZ7yupX.jpg", "order": 4}, {"name": "Elisha Cuthbert", "character": "Darcie", "id": 25837, "credit_id": "52fe446d9251416c75034597", "cast_id": 18, "profile_path": "/3CTK6oW2LfGVE7ICsKzeSxngp3H.jpg", "order": 5}, {"name": "Jeremy Piven", "character": "Dean Gordon \"Cheese\" Pritchard", "id": 12799, "credit_id": "52fe446d9251416c7503459b", "cast_id": 19, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 6}, {"name": "Juliette Lewis", "character": "Heidi", "id": 3196, "credit_id": "52fe446d9251416c7503459f", "cast_id": 20, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 7}, {"name": "Sarah Shahi", "character": "Erica", "id": 164945, "credit_id": "52fe446d9251416c750345a3", "cast_id": 21, "profile_path": "/hTV326FBAlLmHOdPPiXVItCoivR.jpg", "order": 8}, {"name": "Perrey Reeves", "character": "Marissa Jones", "id": 68495, "credit_id": "52fe446d9251416c750345a7", "cast_id": 22, "profile_path": "/fcuYaaYrCjItQzOGzCpL7PDbmSB.jpg", "order": 9}, {"name": "Craig Kilborn", "character": "Mark", "id": 60951, "credit_id": "52fe446d9251416c750345ab", "cast_id": 23, "profile_path": "/mVlE2lpGaKAVCOCoFbKNMouPtsY.jpg", "order": 10}, {"name": "Ashley Jones", "character": "Caterer", "id": 112464, "credit_id": "532c123f9251416e9f000c9f", "cast_id": 24, "profile_path": "/qKzsmyq3tLhCMNTX85XsrCQhNzZ.jpg", "order": 11}, {"name": "Phe Caplan", "character": "Julie", "id": 1244362, "credit_id": "532c13d79251416e8c000d75", "cast_id": 25, "profile_path": "/cI19Yl7uWtPrsc0ul00E5gvrg14.jpg", "order": 12}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe446d9251416c7503453d", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 6.7, "runtime": 91}, "11636": {"poster_path": "/jUt1kFdzwXa1gYYk9jpZ2bHU2Fz.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "Sent into a drunken tailspin when his entire unit is killed by a gang of thrill-seeking punks, disgraced Hong Kong police inspector Wing (Jackie Chan) needs help from his new rookie partner, with a troubled past of his own, to climb out of the bottle and track down the gang and its ruthless leader.", "video": false, "id": 11636, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "New Police Story", "tagline": "Failures and suffering make a real hero", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zF4gP4w1xxM7jDKLjTDK3ixkkms.jpg", "id": 269098, "name": "Police Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0386005", "adult": false, "backdrop_path": "/llII7YgUqtBbIl8Rkoo8JC56bqs.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}], "release_date": "2004-09-24", "popularity": 0.635137387064611, "original_title": "\u65b0\u8b66\u5bdf\u6545\u4e8b", "budget": 0, "cast": [{"name": "Jackie Chan", "character": "Senior Insp. Chan Kwok-Wing", "id": 18897, "credit_id": "52fe446d9251416c750345e5", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Nicholas Tse", "character": "Zheng Xiaofeng", "id": 70106, "credit_id": "52fe446d9251416c750345e9", "cast_id": 2, "profile_path": "/7nq3EncMV0hRJ1Z2PTWKKulfux8.jpg", "order": 1}, {"name": "Mak Bau", "character": "Negotiator", "id": 70107, "credit_id": "52fe446d9251416c750345ed", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Tak-bun Wong", "character": "Robber", "id": 70108, "credit_id": "52fe446d9251416c750345f1", "cast_id": 4, "profile_path": "/kBauxbwBGLz3RceZ8sLdeqvaVl8.jpg", "order": 3}, {"name": "Andrew Lin", "character": "Hoi, Wing's team member", "id": 130562, "credit_id": "52fe446d9251416c7503463d", "cast_id": 17, "profile_path": "/gFWleSQOWPxFhqirKzUA5GPTasc.jpg", "order": 4}, {"name": "John Shum", "character": "Eric Show", "id": 116906, "credit_id": "52fe446d9251416c75034641", "cast_id": 18, "profile_path": "/v4G13KqlLS97LbEQXD2nF5h6p5D.jpg", "order": 5}, {"name": "Daniel Wu", "character": "Joe Kwan", "id": 64436, "credit_id": "52fe446d9251416c75034645", "cast_id": 19, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 6}, {"name": "Coco Chiang Yi", "character": "Sue Chow", "id": 1139048, "credit_id": "52fe446d9251416c75034649", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Terence Yin", "character": "Fire", "id": 74196, "credit_id": "52fe446d9251416c7503464d", "cast_id": 21, "profile_path": "/tmkFxlLN2fLMj2qrwzicpgW9lhG.jpg", "order": 8}, {"name": "Andy On", "character": "Tin Tin Law", "id": 63585, "credit_id": "52fe446d9251416c75034651", "cast_id": 22, "profile_path": "/sv74TXme3jxPm9a4fXKdj3rAWGE.jpg", "order": 9}, {"name": "Hiro Hayama", "character": "Max Leung", "id": 1039927, "credit_id": "52fe446d9251416c75034655", "cast_id": 23, "profile_path": "/3KOFiv9bExx0cjuC7OBd6AnakvJ.jpg", "order": 10}, {"name": "Charlene Choi", "character": "Sa Sa", "id": 64434, "credit_id": "52fe446d9251416c75034659", "cast_id": 24, "profile_path": "/ccmVWQu5cea5zuOxUjBWH8vztZf.jpg", "order": 11}, {"name": "Asuka Higuchi", "character": "Kwong's Wife", "id": 224059, "credit_id": "52fe446d9251416c7503465d", "cast_id": 25, "profile_path": "/7wL2GxcysGfh5WAfCrevdz0PBQq.jpg", "order": 12}, {"name": "Charlie Yeung", "character": "Sun Ho Yee", "id": 66762, "credit_id": "52fe446d9251416c75034661", "cast_id": 26, "profile_path": "/lImfxZvj75ietpOR9NZC8zXmuco.jpg", "order": 13}, {"name": "Carl Ng", "character": "Carl", "id": 137146, "credit_id": "53053c3b925141348b06d184", "cast_id": 27, "profile_path": "/73qKbSPCjiCPWrTLdcjRxv9XOVT.jpg", "order": 14}], "directors": [{"name": "Benny Chan", "department": "Directing", "job": "Director", "credit_id": "52fe446d9251416c750345f7", "profile_path": "/g8DGwrVSCOpBv0VcjqBmpFtHB2Y.jpg", "id": 70109}], "vote_average": 6.9, "runtime": 123}, "11637": {"poster_path": "/lYaZg12UTcajdV402KG5owNlQFS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The fledgling romance between Nick, a playboy bachelor, and Suzanne, a divorced mother of two, is threatened by a particularly harrowing New Years Eve. When Suzanne's work keeps her in Vancouver for the holiday, Nick offers to bring her kids to the city from Portland, Oregon. The kids, who have never liked any of the men their mom dates, are determined to turn the trip into a nightmare for Nick.", "video": false, "id": 11637, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Are We There Yet?", "tagline": "24 hours. 350 miles. His girlfriend's kids. What could possibly go wrong?", "vote_count": 52, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/gYmkExt7SbDKKdraUJJ6AsbWq4m.jpg", "id": 176118, "name": "The Are We Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368578", "adult": false, "backdrop_path": "/eTkZcuDIGO9VdBCqUpgpJPtkADl.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}, {"name": "Cube Vision", "id": 2780}], "release_date": "2005-01-21", "popularity": 0.440574614476338, "original_title": "Are We There Yet?", "budget": 32000000, "cast": [{"name": "Ice Cube", "character": "Nick Persons", "id": 9778, "credit_id": "52fe446d9251416c7503468d", "cast_id": 1, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Nia Long", "character": "Suzanne Kingston", "id": 9781, "credit_id": "52fe446d9251416c75034691", "cast_id": 2, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 1}, {"name": "Aleisha Allen", "character": "Lindsey Kingston", "id": 64064, "credit_id": "52fe446d9251416c75034695", "cast_id": 3, "profile_path": "/i36hnsQITuPz6xuMMEzvPaAaUYT.jpg", "order": 2}, {"name": "Philip Bolden", "character": "Kevin Kingston", "id": 64066, "credit_id": "52fe446d9251416c75034699", "cast_id": 4, "profile_path": "/y6mmwYgkQoJeKzRPHfLoB1rpFOQ.jpg", "order": 3}, {"name": "Jay Mohr", "character": "Marty", "id": 12217, "credit_id": "52fe446d9251416c7503469d", "cast_id": 5, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 4}, {"name": "M.C. Gainey", "character": "Al", "id": 22132, "credit_id": "52fe446d9251416c750346a1", "cast_id": 6, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 5}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe446d9251416c750346a7", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.2, "runtime": 95}, "77174": {"poster_path": "/AtenrJ8HptJOOtvJJwxu4nbo3es.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the town of Blithe Hollow, Norman Babcock is a boy who can speak to the dead, but no one besides his eccentric new friend, Neil, believes his ability is real. One day, Norman's estranged eccentric uncle tells him of an important annual ritual he must take up to protect the town from an curse cast by a witch it condemned centuries ago. Eventually, Norman decides to cooperate, but things don't go according to plan. Now, a magic storm of the witch threatens Blithe Hollow as the accursed dead rise. Together with unexpected new companions, Norman struggles to save his town, only to discover the horrific truth of the curse. With that insight, Norman must resolve the crisis for good as only he can.", "video": false, "id": 77174, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "ParaNorman", "tagline": "It's all fun and games until someone raises the dead.", "vote_count": 324, "homepage": "http://paranorman.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1623288", "adult": false, "backdrop_path": "/tTSXZG8uHc0olcq9gOneDgLQL5G.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Laika Entertainment", "id": 11537}], "release_date": "2012-08-17", "popularity": 1.10632068237223, "original_title": "ParaNorman", "budget": 0, "cast": [{"name": "Anna Kendrick", "character": "Courtney", "id": 84223, "credit_id": "52fe4961c3a368484e1284e5", "cast_id": 4, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "John Goodman", "character": "Mr. Prenderghast", "id": 1230, "credit_id": "52fe4961c3a368484e1284e9", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Sandra Babcock", "id": 41087, "credit_id": "52fe4961c3a368484e1284ed", "cast_id": 6, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Casey Affleck", "character": "Mitch", "id": 1893, "credit_id": "52fe4961c3a368484e1284f1", "cast_id": 7, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 3}, {"name": "Jodelle Ferland", "character": "Aggie", "id": 8338, "credit_id": "52fe4961c3a368484e1284f5", "cast_id": 8, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 4}, {"name": "Christopher Mintz-Plasse", "character": "Alvin", "id": 54691, "credit_id": "52fe4961c3a368484e1284f9", "cast_id": 9, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 5}, {"name": "Kodi Smit-McPhee", "character": "Norman Babcock", "id": 113505, "credit_id": "52fe4961c3a368484e1284fd", "cast_id": 10, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 6}, {"name": "Bernard Hill", "character": "The Judge", "id": 1369, "credit_id": "52fe4961c3a368484e128501", "cast_id": 11, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 7}, {"name": "Tucker Albrizzi", "character": "Neil", "id": 558925, "credit_id": "52fe4961c3a368484e128505", "cast_id": 12, "profile_path": "/jeivgdxm1gDFP8ECJe4HM5p0bdM.jpg", "order": 8}, {"name": "Alicia Lagano", "character": "Female Tourist", "id": 105659, "credit_id": "52fe4961c3a368484e128515", "cast_id": 15, "profile_path": "/6G4A6EHGgWe2xBV1dgMNrrMtMnB.jpg", "order": 9}, {"name": "Jeremy Shada", "character": "Pug", "id": 204131, "credit_id": "52fe4961c3a368484e128519", "cast_id": 16, "profile_path": "/oyBtYOnOCSp2yX8shxqoQsqtBF9.jpg", "order": 10}, {"name": "Scott Menville", "character": "Deputy Dwayne, Rapper G", "id": 113916, "credit_id": "52fe4961c3a368484e12851d", "cast_id": 17, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 11}, {"name": "Ariel Winter", "character": "Blithe Hollow Kid", "id": 42160, "credit_id": "52fe4961c3a368484e128521", "cast_id": 18, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 12}, {"name": "Alex Borstein", "character": "Mrs. Henscher", "id": 24357, "credit_id": "52fe4961c3a368484e128525", "cast_id": 19, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 13}, {"name": "Tempestt Bledsoe", "character": "Sheriff Hooper", "id": 92087, "credit_id": "52fe4961c3a368484e128529", "cast_id": 20, "profile_path": "/ysoE7INLaDrYOsUlhdodD3Om3ke.jpg", "order": 14}, {"name": "Denise Faye", "character": "Blithe Hollow Townspers", "id": 17641, "credit_id": "52fe4961c3a368484e12852d", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Elaine Stritch", "character": "Grandma", "id": 36802, "credit_id": "52fe4961c3a368484e128531", "cast_id": 22, "profile_path": "/4QGJE8HwbJXdb7MrsINR8zJtDzp.jpg", "order": 16}], "directors": [{"name": "Sam Fell", "department": "Directing", "job": "Director", "credit_id": "52fe4961c3a368484e1284db", "profile_path": "/29NFQubb9A5OrA9OyXhnX4eOfkv.jpg", "id": 58897}, {"name": "Chris Butler", "department": "Directing", "job": "Director", "credit_id": "53285c2ac3a36831700028e3", "profile_path": "/1Og4LcnyrdHfWl6nYEtxLbPHjqn.jpg", "id": 154705}], "vote_average": 6.5, "runtime": 90}, "11639": {"poster_path": "/12g8mn6jfU4Hyqi81ot9oRR5hvy.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40577001, "overview": "On another planet in the distant past, a Gelfling embarks on a quest to find the missing shard of a magical crystal and restore order to his world, before the grotesque race of Skeksis find and use the crystal for evil.", "video": false, "id": 11639, "genres": [{"id": 14, "name": "Fantasy"}], "title": "The Dark Crystal", "tagline": "Another World, Another Time... In the Age of Wonder.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083791", "adult": false, "backdrop_path": "/lQBbbNOUvFVlKciHBGp8bNqZKbx.jpg", "production_companies": [{"name": "Henson Associates (HA)", "id": 24931}, {"name": "Incorporated Television Company (ITC)", "id": 15980}, {"name": "Jim Henson Productions", "id": 2504}], "release_date": "1982-12-17", "popularity": 0.356180876488691, "original_title": "The Dark Crystal", "budget": 15000000, "cast": [{"name": "Jim Henson", "character": "Jen", "id": 55983, "credit_id": "52fe446e9251416c750347bf", "cast_id": 1, "profile_path": "/nnPQ50zVkY9JnFUx4Hjtptn4j4p.jpg", "order": 0}, {"name": "Kathryn Mullen", "character": "Kira", "id": 70772, "credit_id": "52fe446e9251416c750347c3", "cast_id": 2, "profile_path": "/4ycUqVxLCHRr1auJbO5obm6ruXO.jpg", "order": 1}, {"name": "Frank Oz", "character": "Aughra, A Keeper Of Secrets / Chamberlain", "id": 7908, "credit_id": "52fe446e9251416c750347c7", "cast_id": 3, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 2}, {"name": "Dave Goelz", "character": "Fizzgig, A Friendly Monster", "id": 64181, "credit_id": "52fe446e9251416c750347cb", "cast_id": 4, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 3}, {"name": "Steve Whitmire", "character": "Scientist", "id": 64180, "credit_id": "52fe446e9251416c750347cf", "cast_id": 5, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 4}, {"name": "Brian Muehl", "character": "Ornamentalist", "id": 219193, "credit_id": "52fe446e9251416c75034809", "cast_id": 17, "profile_path": "/7vjz1b6MbZhJOySwgHPgWcuY1oB.jpg", "order": 5}, {"name": "Stephen Garlick", "character": "Jen (voice)", "id": 202729, "credit_id": "52fe446e9251416c7503480d", "cast_id": 18, "profile_path": "/tkPwFOAh7gYORkWg6fRWfwJIG1E.jpg", "order": 6}, {"name": "Lisa Maxwell", "character": "Kira (voice)", "id": 174420, "credit_id": "52fe446e9251416c75034811", "cast_id": 19, "profile_path": "/vbLunmlwQ2dxAwQHQNq0QOpU9IS.jpg", "order": 7}, {"name": "Billie Whitelaw", "character": "Aughra (voice)", "id": 8226, "credit_id": "52fe446e9251416c75034815", "cast_id": 20, "profile_path": "/5XSUS3oSuG2CtJQPiEBQd9AAmg4.jpg", "order": 8}, {"name": "Percy Edwards", "character": "Fizzgig (voice)", "id": 193526, "credit_id": "52fe446e9251416c75034819", "cast_id": 21, "profile_path": "/3SmhYOEXmKNwhDMTeH3R3bNPFOf.jpg", "order": 9}, {"name": "Barry Dennen", "character": "Chamberlain / Podling (voice)", "id": 72742, "credit_id": "52fe446e9251416c7503481d", "cast_id": 22, "profile_path": "/zELog0P3l2ikmhZ9TIJmk81FFla.jpg", "order": 10}, {"name": "Michael Kilgarriff", "character": "General (voice)", "id": 184970, "credit_id": "52fe446e9251416c75034821", "cast_id": 23, "profile_path": "/hlE3OsEwaewBm0evupt1eYgVPCr.jpg", "order": 11}, {"name": "Jerry Nelson", "character": "High Priest / Dying Emperor (voice)", "id": 68455, "credit_id": "52fe446e9251416c75034825", "cast_id": 24, "profile_path": "/pJGDnYken7kbxNl9sXGqxgEanP.jpg", "order": 12}, {"name": "Thick Wilson", "character": "Gourmand (voice)", "id": 215334, "credit_id": "52fe446e9251416c75034829", "cast_id": 25, "profile_path": "/aWI35GOw9ZVoFrWTGeQkWNlwpDZ.jpg", "order": 13}, {"name": "John Baddeley", "character": "Historian (voice)", "id": 214813, "credit_id": "52fe446e9251416c7503482d", "cast_id": 26, "profile_path": "/9R6RmSXCjbPlZdPVvs6D5mQrwja.jpg", "order": 14}, {"name": "David Buck", "character": "Slave Master (voice)", "id": 16381, "credit_id": "52fe446e9251416c75034831", "cast_id": 27, "profile_path": "/3H40jRDVkwFQBkNKcltURddMXzI.jpg", "order": 15}, {"name": "Charles Collingwood", "character": "Treasurer (voice)", "id": 158673, "credit_id": "52fe446e9251416c75034835", "cast_id": 28, "profile_path": "/8wYhlvVprOotIN3eXuccSd1pul.jpg", "order": 16}, {"name": "Sean Barrett", "character": "Urzah (voice)", "id": 201459, "credit_id": "52fe446e9251416c75034839", "cast_id": 29, "profile_path": "/gy80mFiwXvp1h7u03qcMCrVMFLd.jpg", "order": 17}, {"name": "Patrick Monckton", "character": "Podling (voice)", "id": 199876, "credit_id": "52fe446e9251416c7503483d", "cast_id": 30, "profile_path": "/tOIU3I8dHNHAhQK9T4MWbebzpI7.jpg", "order": 18}, {"name": "Susan Westerby", "character": "Podling (voice)", "id": 153174, "credit_id": "52fe446e9251416c75034841", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Joseph O'Conor", "character": "Narrator / Urskeks (voice)", "id": 88894, "credit_id": "52fe446e9251416c75034845", "cast_id": 32, "profile_path": "/xdfiiYtYABddyJnZiSllIB8o3yB.jpg", "order": 20}], "directors": [{"name": "Jim Henson", "department": "Directing", "job": "Director", "credit_id": "52fe446e9251416c750347d5", "profile_path": "/nnPQ50zVkY9JnFUx4Hjtptn4j4p.jpg", "id": 55983}, {"name": "Frank Oz", "department": "Directing", "job": "Director", "credit_id": "52fe446e9251416c750347db", "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "id": 7908}], "vote_average": 7.7, "runtime": 93}, "11645": {"poster_path": "/dwYUbrcQAyshW22yoUTzWwwC67b.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 313831, "overview": "A story of greed, a lust for power, and ultimate revenge when an elderly lord abdicates to his three sons, and the two corrupt ones turn against him. A profound examination of the folly of war and the crumbling of one family under the weight of betrayal, greed, and the insatiable thirst for power.", "video": false, "id": 11645, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ran", "tagline": "", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0089881", "adult": false, "backdrop_path": "/3QWR9tyxLtCz7xANh7nyIxYPISp.jpg", "production_companies": [{"name": "Greenwich Film Productions", "id": 1657}, {"name": "Herald Ace", "id": 8886}, {"name": "Nippon Herald Films", "id": 1598}], "release_date": "1985-06-01", "popularity": 0.627885706423483, "original_title": "Ran", "budget": 0, "cast": [{"name": "Akira Terao", "character": "Taro Takatora Ichimonji", "id": 70132, "credit_id": "52fe446f9251416c75034a37", "cast_id": 14, "profile_path": "/pwDc5dwNWbuxWK09vFlUtosDdXe.jpg", "order": 0}, {"name": "Jinpachi Nezu", "character": "Jiro Masatora Ichimonji", "id": 70133, "credit_id": "52fe446f9251416c75034a3b", "cast_id": 15, "profile_path": null, "order": 1}, {"name": "Daisuke Ry\u00fb", "character": "Saburo Naotora Ichimonji", "id": 70134, "credit_id": "52fe446f9251416c75034a3f", "cast_id": 16, "profile_path": "/t1Ua2YadGhhBKo6hxGPsEZV2XcK.jpg", "order": 2}, {"name": "Tatsuya Nakadai", "character": "Lord Hidetora Ichimonji", "id": 70131, "credit_id": "52fe446f9251416c75034a43", "cast_id": 17, "profile_path": "/aVwl2VgqRFaFLWlcGx2fSweZ24d.jpg", "order": 3}, {"name": "Kenji Kodama", "character": "", "id": 552198, "credit_id": "54b0b155925141747e001058", "cast_id": 18, "profile_path": null, "order": 4}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe446f9251416c750349f7", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 7.6, "runtime": 162}, "228161": {"poster_path": "/qrc563yL487g9THjE6lOdsHK0wc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet. But when one resourceful girl, Tip (Rihanna), manages to avoid capture, she finds herself the accidental accomplice of a banished Boov named Oh (Jim Parsons). The two fugitives realize there\u2019s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.", "video": false, "id": 228161, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Home", "tagline": "", "vote_count": 59, "homepage": "http://www.meettheboov.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2224026", "adult": false, "backdrop_path": "/6HoS2Hzcye4xGowSLTf0Pox43QW.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2015-03-27", "popularity": 3.26330986150921, "original_title": "Home", "budget": 132, "cast": [{"name": "Jim Parsons", "character": "Oh", "id": 5374, "credit_id": "54195958c3a3686db20010e8", "cast_id": 13, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 0}, {"name": "Rihanna", "character": "Ap\u00e9ritif \"TIF\" Tucci", "id": 131519, "credit_id": "52fe4ec19251416c75161385", "cast_id": 2, "profile_path": "/ssguCAeEMq74FS2ICMJ3Q9Wy7Bf.jpg", "order": 2}, {"name": "Jennifer Lopez", "character": "Lucy Tucci", "id": 16866, "credit_id": "52fe4ec19251416c75161389", "cast_id": 3, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 3}, {"name": "Matt Jones", "character": "Kyle", "id": 191202, "credit_id": "540d44100e0a262b40005b77", "cast_id": 6, "profile_path": "/wcB788lpiyc58s0F3nzqZnspISA.jpg", "order": 4}, {"name": "Steve Martin", "character": "Capitaine Smek", "id": 67773, "credit_id": "52fe4ec19251416c7516138d", "cast_id": 4, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 5}], "directors": [{"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "54a1cbca925141236b00478a", "profile_path": null, "id": 52870}], "vote_average": 7.2, "runtime": 105}, "11652": {"poster_path": "/yB6K696MEnZ79MBHdr2RvgPRpVL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57806952, "overview": "Inspired by the true story of Vince Papale, a man with nothing to lose who ignored the staggering odds and made his dream come true. When the coach of Papale's beloved hometown football team hosted an unprecedented open tryout, the public consensus was that it was a waste of time -- no one good enough to play professional football was going to be found this way.", "video": false, "id": 11652, "genres": [{"id": 18, "name": "Drama"}], "title": "Invincible", "tagline": "Dreams are not lived on the sidelines", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0445990", "adult": false, "backdrop_path": "/tOAb4CBsbtXQVxMLELVap0upaCm.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-08-25", "popularity": 0.319427507879271, "original_title": "Invincible", "budget": 0, "cast": [{"name": "Mark Wahlberg", "character": "Vince Papale", "id": 13240, "credit_id": "52fe44719251416c75034e0b", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Dick Vermeil", "id": 17141, "credit_id": "52fe44719251416c75034e0f", "cast_id": 2, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Janet Cantrell", "id": 9281, "credit_id": "52fe44719251416c75034e13", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Kevin Conway", "character": "Frank Papale", "id": 27116, "credit_id": "52fe44719251416c75034e17", "cast_id": 4, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 3}, {"name": "Michael Rispoli", "character": "Max Cantrell", "id": 18313, "credit_id": "52fe44719251416c75034e1b", "cast_id": 6, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 4}, {"name": "Morgan Turner", "character": "Susan Vermeil", "id": 1188567, "credit_id": "52fe44719251416c75034e61", "cast_id": 18, "profile_path": "/qT1HFFYeW0G4ODQ1EmxUcHa4TIb.jpg", "order": 5}], "directors": [{"name": "Ericson Core", "department": "Directing", "job": "Director", "credit_id": "52fe44719251416c75034e5d", "profile_path": null, "id": 21673}], "vote_average": 6.2, "runtime": 105}, "36668": {"poster_path": "/5QpaN7ZBAR6D3FotvEIMX0qZxHg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 234360014, "overview": "When a cure is found to treat mutations, lines are drawn amongst the X-Men, led by Professor Charles Xavier, and the Brotherhood, a band of powerful mutants organized under Xavier's former ally, Magneto.", "video": false, "id": 36668, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "X-Men: The Last Stand", "tagline": "Take a Stand", "vote_count": 1642, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0376994", "adult": false, "backdrop_path": "/w3Yc8wi2jYLaOyCW6b6svf1B0MG.jpg", "production_companies": [{"name": "Donners' Company", "id": 431}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Twentieth Century Fox", "id": 7392}, {"name": "Major Studio Partners", "id": 445}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2006-05-26", "popularity": 0.0945430838163593, "original_title": "X-Men: The Last Stand", "budget": 210000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe45ff9251416c910459eb", "cast_id": 4, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe45ff9251416c910459ef", "cast_id": 5, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Eric Lehnsherr / Magneto", "id": 1327, "credit_id": "52fe45ff9251416c910459f3", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Patrick Stewart", "character": "Charles Xavier / Professor X", "id": 2387, "credit_id": "52fe45ff9251416c910459f7", "cast_id": 7, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 3}, {"name": "Famke Janssen", "character": "Jean Grey / Phoenix", "id": 10696, "credit_id": "52fe45ff9251416c910459fb", "cast_id": 8, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 4}, {"name": "Anna Paquin", "character": "Marie / Rogue", "id": 10690, "credit_id": "52fe45ff9251416c910459ff", "cast_id": 9, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 5}, {"name": "Kelsey Grammer", "character": "Dr. Henry 'Hank' McCoy / Beast", "id": 7090, "credit_id": "52fe45ff9251416c91045a03", "cast_id": 10, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 6}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "52fe45ff9251416c91045a07", "cast_id": 11, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 7}, {"name": "Rebecca Romijn", "character": "Raven Darkholme / Mystique", "id": 11008, "credit_id": "52fe45ff9251416c91045a0b", "cast_id": 12, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 8}, {"name": "Shawn Ashmore", "character": "Bobby Drake / Iceman", "id": 11023, "credit_id": "52fe45ff9251416c91045a0f", "cast_id": 13, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 9}, {"name": "Aaron Stanford", "character": "John Allerdyce / Pyro", "id": 11022, "credit_id": "52fe45ff9251416c91045a13", "cast_id": 14, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 10}, {"name": "Vinnie Jones", "character": "Cain Marko / Juggernaut", "id": 980, "credit_id": "52fe45ff9251416c91045a17", "cast_id": 15, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 11}, {"name": "Ellen Page", "character": "Kitty Pryde / Shadowcat", "id": 27578, "credit_id": "52fe45ff9251416c91045a1b", "cast_id": 16, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 12}, {"name": "Daniel Cudmore", "character": "Peter Rasputin / Colossus", "id": 84222, "credit_id": "52fe45ff9251416c91045a1f", "cast_id": 17, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 13}, {"name": "Ben Foster", "character": "Warren Worthington III / Angel", "id": 11107, "credit_id": "52fe45ff9251416c91045a23", "cast_id": 18, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 14}, {"name": "Michael Murphy", "character": "Warren Worthington II", "id": 4776, "credit_id": "52fe45ff9251416c91045a27", "cast_id": 19, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 15}, {"name": "Dania Ramirez", "character": "Callisto", "id": 37046, "credit_id": "52fe45ff9251416c91045a2b", "cast_id": 20, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 16}, {"name": "Shohreh Aghdashloo", "character": "Dr. Kavita Rao", "id": 21041, "credit_id": "52fe45ff9251416c91045a2f", "cast_id": 21, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 17}, {"name": "Josef Sommer", "character": "The President", "id": 14792, "credit_id": "52fe45ff9251416c91045a33", "cast_id": 22, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 18}, {"name": "Bill Duke", "character": "Trask", "id": 1103, "credit_id": "52fe45ff9251416c91045a37", "cast_id": 23, "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "order": 19}, {"name": "Eric Dane", "character": "Multiple Man", "id": 58115, "credit_id": "52fe45ff9251416c91045a3b", "cast_id": 24, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 20}, {"name": "Cameron Bright", "character": "Jimmy/Leech", "id": 52414, "credit_id": "52fe45ff9251416c91045a3f", "cast_id": 25, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 21}, {"name": "Ken Leung", "character": "Kid Omega", "id": 2131, "credit_id": "52fe45ff9251416c91045a43", "cast_id": 26, "profile_path": "/844XvbJQdxSalpFi2EVGNGVpHnO.jpg", "order": 22}, {"name": "Omahyra Mota", "character": "Arclight", "id": 1199720, "credit_id": "52fe45ff9251416c91045a47", "cast_id": 27, "profile_path": "/ecGJRovt5JEX6ckBM8i0ZaaQHAv.jpg", "order": 23}, {"name": "Stan Lee", "character": "Waterhose Man", "id": 7624, "credit_id": "52fe45ff9251416c91045a4b", "cast_id": 28, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 24}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe45ff9251416c910459db", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.1, "runtime": 104}, "11660": {"poster_path": "/7tVxAcG77tINMJ5gtvQaLfopwz6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A struggling, unemployed young writer takes to following strangers around the streets of London, ostensibly to find inspiration for his new novel.", "video": false, "id": 11660, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Following", "tagline": "", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0154506", "adult": false, "backdrop_path": "/tabZxRLlAxCzH4LUmgebZxam6VY.jpg", "production_companies": [{"name": "Syncopy", "id": 9996}], "release_date": "1998-09-12", "popularity": 0.897650521411164, "original_title": "Following", "budget": 0, "cast": [{"name": "Alex Haw", "character": "Cobb", "id": 70224, "credit_id": "52fe44739251416c750352dd", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Lucy Russell", "character": "The Blonde", "id": 28749, "credit_id": "52fe44739251416c750352e1", "cast_id": 2, "profile_path": "/2Ytkbu8G0OHHBwKMD9gYz7rFxDf.jpg", "order": 1}, {"name": "John Nolan", "character": "The Policeman", "id": 70225, "credit_id": "53842ee20e0a2624b400e67d", "cast_id": 18, "profile_path": "/1Is0RIeDdAXlXft1EfqC97qiJl5.jpg", "order": 2}, {"name": "Dick Bradsell", "character": "The Bald Guy", "id": 70226, "credit_id": "52fe44739251416c750352e9", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Gillian El-Kadi", "character": "Home Owner", "id": 70227, "credit_id": "52fe44739251416c750352ed", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jennifer Angel", "character": "Waitress", "id": 70228, "credit_id": "52fe44739251416c750352f1", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jeremy Theobald", "character": "Bill", "id": 70230, "credit_id": "52fe44739251416c75035331", "cast_id": 17, "profile_path": null, "order": 6}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe44739251416c750352f7", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.2, "runtime": 69}, "74306": {"poster_path": "/9xnVLPkWbrywjrUrwwiDeQ6obCC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122550, "overview": "Fed up with the cruelty and stupidity of American culture, an unlikely duo goes on a killing spree, killing reality TV stars, bigots and others they find repugnant in this black comedy.", "video": false, "id": 74306, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "God Bless America", "tagline": "Taking out the trash, one jerk at a time.", "vote_count": 99, "homepage": "http://www.magnetreleasing.com/godblessamerica/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1912398", "adult": false, "backdrop_path": "/roz9IbL7ygpPdv8ezbG1DSDDY40.jpg", "production_companies": [{"name": "Darko Entertainment", "id": 12622}, {"name": "Jerkschool Productions", "id": 7357}], "release_date": "2011-09-09", "popularity": 0.344385927251391, "original_title": "God Bless America", "budget": 0, "cast": [{"name": "Joel Murray", "character": "Frank", "id": 155649, "credit_id": "52fe48c4c3a368484e109e2d", "cast_id": 3, "profile_path": "/euFBBlZ7Q8clCJE3VYPutQR35R7.jpg", "order": 0}, {"name": "Tara Lynne Barr", "character": "Roxy", "id": 183926, "credit_id": "52fe48c4c3a368484e109e31", "cast_id": 4, "profile_path": "/oKOPc04cSu8SBFug76KpXwiavvR.jpg", "order": 1}, {"name": "Mackenzie Brooke Smith", "character": "Ava", "id": 107777, "credit_id": "52fe48c4c3a368484e109e35", "cast_id": 5, "profile_path": "/2O4fHFPnHAOPbJVTAA3aS5aNllm.jpg", "order": 2}, {"name": "Melinda Page Hamilton", "character": "Alison", "id": 169024, "credit_id": "52fe48c4c3a368484e109e39", "cast_id": 6, "profile_path": "/8h9FAA0syyQGHvl43Lvv3DzpIRS.jpg", "order": 3}, {"name": "Rich McDonald", "character": "Brad", "id": 205930, "credit_id": "52fe48c4c3a368484e109e3d", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Maddie Hasson", "character": "Chloe", "id": 593202, "credit_id": "52fe48c4c3a368484e109e41", "cast_id": 8, "profile_path": "/5Khfzfn5wbN2dVJh7cgV87bkVAA.jpg", "order": 5}, {"name": "Larry Miller", "character": "Chloe's Dad", "id": 1211, "credit_id": "52fe48c4c3a368484e109e45", "cast_id": 9, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 6}, {"name": "Dorie Barton", "character": "Chloe's Mom", "id": 155393, "credit_id": "52fe48c4c3a368484e109e49", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Travis Wester", "character": "Ed", "id": 57404, "credit_id": "52fe48c4c3a368484e109e4d", "cast_id": 11, "profile_path": "/3pRPTZ7jhuMJzING7eouoFoqinQ.jpg", "order": 8}, {"name": "Lauren Benz Phillips", "character": "Donna", "id": 1136520, "credit_id": "52fe48c4c3a368484e109e51", "cast_id": 12, "profile_path": "/k99oOnq7jMRyUWSeShS5SFI0xC1.jpg", "order": 9}, {"name": "Guerrin Gardner", "character": "Tampon-Throwing Tuff Gurl", "id": 172181, "credit_id": "52fe48c4c3a368484e109e55", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Kellie Ramdhanie", "character": "Melissa Tuff Gurl", "id": 1136521, "credit_id": "52fe48c4c3a368484e109e59", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Aris Alvarado", "character": "Steven Clark", "id": 169001, "credit_id": "52fe48c4c3a368484e109e5d", "cast_id": 15, "profile_path": "/xN32kBJy5qQQyPmIffdYgCOG6dx.jpg", "order": 12}, {"name": "Romeo Brown", "character": "John Tyler", "id": 155486, "credit_id": "52fe48c4c3a368484e109e61", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Sandra Vergara", "character": "American Superstarz Judge", "id": 965807, "credit_id": "52fe48c4c3a368484e109e65", "cast_id": 17, "profile_path": "/jDuyzO711Lt1m24RHsUfWovbfcC.jpg", "order": 14}, {"name": "Jamie Harris", "character": "American Superstarz Judge", "id": 111195, "credit_id": "52fe48c4c3a368484e109e69", "cast_id": 18, "profile_path": "/hE8Q0EtDKKgSeSfTm5wTU6QflrS.jpg", "order": 15}, {"name": "Alexie Gilmore", "character": "Morning Show Host", "id": 87669, "credit_id": "52fe48c4c3a368484e109e6d", "cast_id": 19, "profile_path": "/lvWDTug0Jythcqhy3pr4yRx5MEH.jpg", "order": 16}, {"name": "James McAndrew", "character": "Morning Show Host", "id": 989546, "credit_id": "52fe48c4c3a368484e109e71", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Brendalyn Richard", "character": "Karen", "id": 1136522, "credit_id": "52fe48c4c3a368484e109e75", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Geoff Pierson", "character": "Frank's Boss", "id": 25879, "credit_id": "52fe48c4c3a368484e109e79", "cast_id": 22, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 19}, {"name": "Tom Kenny", "character": "Office Staff", "id": 78798, "credit_id": "52fe48c4c3a368484e109e7d", "cast_id": 23, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 20}, {"name": "Eliza Coyle", "character": "Office Staff", "id": 122802, "credit_id": "52fe48c4c3a368484e109e81", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Kill Talley", "character": "Office Staff", "id": 1136523, "credit_id": "52fe48c4c3a368484e109e85", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Joe Liss", "character": "Office Staff", "id": 304070, "credit_id": "52fe48c4c3a368484e109e89", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Cameron Denny", "character": "Office Worker", "id": 1136524, "credit_id": "52fe48c4c3a368484e109e8d", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Danny Geter", "character": "Mutual of Onodaga Security Guard", "id": 1136525, "credit_id": "52fe48c4c3a368484e109e91", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Dan Spencer", "character": "Doctor", "id": 1118076, "credit_id": "52fe48c4c3a368484e109e95", "cast_id": 29, "profile_path": "/useMeqdDMLuR9MBQDZJ76CpZE5X.jpg", "order": 26}], "directors": [{"name": "Bobcat Goldthwait", "department": "Directing", "job": "Director", "credit_id": "52fe48c4c3a368484e109e23", "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "id": 95024}], "vote_average": 6.9, "runtime": 104}, "11665": {"poster_path": "/qWBln0B1Zxc24Lcuhqfhtu6coPR.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 230685453, "overview": "When the identities of secret agents from Control are compromised, the Chief promotes hapless but eager analyst Maxwell Smart and teams him with stylish, capable Agent 99, the only spy whose cover remains intact. Can they work together to thwart the evil plans of KAOS and its crafty operative?", "video": false, "id": 11665, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Get Smart", "tagline": "Saving The World...And Loving It!", "vote_count": 323, "homepage": "http://getsmartmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0425061", "adult": false, "backdrop_path": "/jrWrNLPeeB4d7II30EJRSYX7Sbr.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2008-06-19", "popularity": 1.60199164549018, "original_title": "Get Smart", "budget": 80000000, "cast": [{"name": "Steve Carell", "character": "Maxwell Smart", "id": 4495, "credit_id": "52fe44749251416c75035587", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Agent 99", "id": 1813, "credit_id": "52fe44749251416c7503558b", "cast_id": 5, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Dwayne Johnson", "character": "Agent 23", "id": 18918, "credit_id": "52fe44749251416c7503558f", "cast_id": 6, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 2}, {"name": "Alan Arkin", "character": "The Chief", "id": 1903, "credit_id": "52fe44749251416c75035593", "cast_id": 7, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 3}, {"name": "Terence Stamp", "character": "Siegfried", "id": 28641, "credit_id": "52fe44749251416c75035597", "cast_id": 8, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 4}, {"name": "Terry Crews", "character": "Agent 91", "id": 53256, "credit_id": "52fe44749251416c7503559b", "cast_id": 9, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 5}, {"name": "David Koechner", "character": "Larabee", "id": 28638, "credit_id": "52fe44749251416c7503559f", "cast_id": 10, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 6}, {"name": "James Caan", "character": "The President", "id": 3085, "credit_id": "52fe44749251416c750355a3", "cast_id": 11, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 7}, {"name": "Bill Murray", "character": "Agent 13", "id": 1532, "credit_id": "52fe44749251416c750355a7", "cast_id": 12, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 8}, {"name": "Patrick Warburton", "character": "Hymie", "id": 9657, "credit_id": "52fe44749251416c750355ab", "cast_id": 13, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 9}, {"name": "David S. Lee", "character": "Ladislas Krstic", "id": 71078, "credit_id": "52fe44749251416c750355af", "cast_id": 14, "profile_path": "/jcQP0Uonk5cIiYjdmC2toGCpo6w.jpg", "order": 10}, {"name": "Masi Oka", "character": "Bruce", "id": 17273, "credit_id": "52fe44749251416c750355ef", "cast_id": 25, "profile_path": "/ag0N7t4rr53jgqHwOmlhV3BF1WQ.jpg", "order": 11}, {"name": "Nate Torrence", "character": "Lloyd", "id": 41565, "credit_id": "52fe44749251416c750355f3", "cast_id": 26, "profile_path": "/nQoVDAd3MeMEW740Z0Ie9sPTnx5.jpg", "order": 12}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44749251416c75035577", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 5.8, "runtime": 110}, "11667": {"poster_path": "/271l3Gs2Abis6JLQWaMNRjpCFV4.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105414729, "overview": "Col. Guile and various other martial arts heroes fight against the tyranny of Dictator M. Bison and his cohorts.", "video": false, "id": 11667, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Street Fighter", "tagline": "The fight to save the world is on!", "vote_count": 83, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/srmcIOxfqARcnHmgHLVNzzFM2RV.jpg", "id": 261203, "name": "Street Fighter"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111301", "adult": false, "backdrop_path": "/kx9hVXtX8iSbbCwCbuUovbKrWyH.jpg", "production_companies": [{"name": "Capcom", "id": 7220}, {"name": "Universal Pictures", "id": 33}], "release_date": "1994-12-22", "popularity": 0.78337231561846, "original_title": "Street Fighter", "budget": 35000000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Colonel William Guile", "id": 15111, "credit_id": "52fe44759251416c75035701", "cast_id": 14, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Ra\u00fal Juli\u00e1", "character": "General M. Bison", "id": 27888, "credit_id": "52fe44759251416c75035705", "cast_id": 15, "profile_path": "/nr6Vm3KVdwzIADFThKQhG3uTRfJ.jpg", "order": 1}, {"name": "Ming-Na Wen", "character": "Chun-Li Zang", "id": 21702, "credit_id": "52fe44759251416c75035709", "cast_id": 16, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 2}, {"name": "Damian Chapa", "character": "Ken Masters", "id": 58646, "credit_id": "52fe44759251416c7503570d", "cast_id": 17, "profile_path": "/e00LyDBIhDOFWgwfSU0wCTLL4ax.jpg", "order": 3}, {"name": "Kylie Minogue", "character": "Cammy White", "id": 12207, "credit_id": "52fe44759251416c75035711", "cast_id": 18, "profile_path": "/8vOTxDParoNySQrUI2OM9zQkVPu.jpg", "order": 4}, {"name": "Wes Studi", "character": "Victor Sagat", "id": 15853, "credit_id": "52fe44759251416c75035715", "cast_id": 19, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 5}, {"name": "Byron Mann", "character": "Ryu Hoshi", "id": 57748, "credit_id": "52fe44759251416c75035719", "cast_id": 20, "profile_path": "/fF6ZlpZ8Jj5iiI5LQjSlaemeNe5.jpg", "order": 6}, {"name": "Roshan Seth", "character": "Dr. Dhalsim", "id": 693, "credit_id": "52fe44759251416c7503571d", "cast_id": 21, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 7}, {"name": "Grand L. Bush", "character": "Balrog", "id": 14333, "credit_id": "52fe44759251416c75035721", "cast_id": 22, "profile_path": "/gAh3iIR7Pbpjx6o5qtAa9GTKKKe.jpg", "order": 8}, {"name": "Jay Tavare", "character": "Vega", "id": 29861, "credit_id": "52fe44759251416c75035725", "cast_id": 23, "profile_path": "/v1ILbH1HGgaB5OvAL7aGhbHFZ3R.jpg", "order": 9}, {"name": "Simon Callow", "character": "A.N. Official", "id": 4001, "credit_id": "52fe44759251416c75035729", "cast_id": 24, "profile_path": "/pOABmGHa7h1CQ1oG4Q6PyuCbwqL.jpg", "order": 10}, {"name": "Andrew Bryniarski", "character": "Zangief", "id": 52366, "credit_id": "52fe44759251416c7503572d", "cast_id": 25, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 11}, {"name": "Miguel A. N\u00fa\u00f1ez, Jr.", "character": "Dee Jay", "id": 74354, "credit_id": "52fe44759251416c75035731", "cast_id": 26, "profile_path": "/7uju1sYJOoT78cHpxVk0Sspo3S7.jpg", "order": 12}, {"name": "Robert Mammone", "character": "Carlos Blanka", "id": 83769, "credit_id": "52fe44759251416c75035735", "cast_id": 27, "profile_path": "/aDtHgVRqkCw0H46db8oYtS2y3VE.jpg", "order": 13}], "directors": [{"name": "Steven E. de Souza", "department": "Directing", "job": "Director", "credit_id": "52fe44759251416c750356b5", "profile_path": "/vdNUgaeJEZy67vhwTeJnftfBRzB.jpg", "id": 1726}], "vote_average": 4.1, "runtime": 102}, "169881": {"poster_path": "/jsOZXPSUr64mJCZ8nGvVpXgl05X.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "The story of Rob Cole, a boy who is left a penniless orphan in an 11th-century English mining town when his mother dies of a mysterious illness. Vowing to become a physician and vanquish Death itself, he travels to Isfahan in Persia to study medicine under the great Ibn Sina. Through countless ordeals and challenges, and making many sacrifices along the way, he struggles on unwaveringly. His unflagging quest for knowledge leads to the blossoming of friendship and true love.", "video": false, "id": 169881, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Physician", "tagline": "", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2101473", "adult": false, "backdrop_path": "/ehgPvp4gj2XiOXOv9QtoELxQZXm.jpg", "production_companies": [{"name": "ARD Degeto Film", "id": 10947}, {"name": "Beta Film", "id": 1080}, {"name": "UFA", "id": 7900}], "release_date": "2013-12-25", "popularity": 0.870105530988925, "original_title": "The Physician", "budget": 0, "cast": [{"name": "Tom Payne", "character": "Rob Cole", "id": 30319, "credit_id": "52fe4cecc3a36847f8244d19", "cast_id": 4, "profile_path": "/hhz20xJdo8jhfTI8uBvmNECgtKz.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Ibn Sina", "id": 2282, "credit_id": "52fe4cecc3a36847f8244d1d", "cast_id": 5, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Stellan Skarsg\u00e5rd", "character": "Barber", "id": 1640, "credit_id": "52fe4cecc3a36847f8244d21", "cast_id": 6, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 2}, {"name": "Olivier Martinez", "character": "Shah Ala ad-Daula", "id": 15533, "credit_id": "52fe4cecc3a36847f8244d25", "cast_id": 7, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 3}, {"name": "Emma Rigby", "character": "Rebecca", "id": 1078568, "credit_id": "52fe4cecc3a36847f8244d29", "cast_id": 8, "profile_path": "/5pMA7z3BZP7YdWqphbPRqu2peWq.jpg", "order": 4}, {"name": "Elyas M\u2019Barek", "character": "Karim", "id": 25409, "credit_id": "52fe4cecc3a36847f8244d2d", "cast_id": 9, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 5}, {"name": "Michael Jibson", "character": "Stratford Monk", "id": 56098, "credit_id": "52fe4cecc3a36847f8244d31", "cast_id": 10, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 6}], "directors": [{"name": "Philipp St\u00f6lzl", "department": "Directing", "job": "Director", "credit_id": "52fe4cecc3a36847f8244d09", "profile_path": null, "id": 113500}], "vote_average": 7.6, "runtime": 155}, "159128": {"poster_path": "/evlXBQlXI99bcSSj6nLbriHaY3A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81381, "overview": "In this reimagining of the 2010 Mexican film of the same name, director Jim Mickle paints a gruesome portrait of an introverted family struggling to keep their macabre traditions alive, giving us something we can really sink our teeth into.", "video": false, "id": 159128, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "We Are What We Are", "tagline": "Blood is the strongest bond.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2309021", "adult": false, "backdrop_path": "/BKfK0XIkjLFeNJQGOS0tsF9F2D.jpg", "production_companies": [{"name": "Belladonna Productions", "id": 2341}], "release_date": "2013-09-27", "popularity": 0.776478337551478, "original_title": "We Are What We Are", "budget": 0, "cast": [{"name": "Bill Sage", "character": "Frank Parker", "id": 32029, "credit_id": "52fe4c059251416c910ed213", "cast_id": 4, "profile_path": "/580okgFwmaKyT12s1lUfY8yV9dg.jpg", "order": 0}, {"name": "Ambyr Childers", "character": "Iris Parker", "id": 75330, "credit_id": "52fe4c059251416c910ed217", "cast_id": 5, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 1}, {"name": "Julia Garner", "character": "Rose Parker", "id": 936970, "credit_id": "52fe4c059251416c910ed21b", "cast_id": 6, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 2}, {"name": "Michael Parks", "character": "Doc Barrow", "id": 2536, "credit_id": "52fe4c059251416c910ed21f", "cast_id": 7, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 3}, {"name": "Wyatt Russell", "character": "Deputy Anders", "id": 986808, "credit_id": "52fe4c059251416c910ed223", "cast_id": 8, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 4}, {"name": "Kelly McGillis", "character": "Marge", "id": 11084, "credit_id": "52fe4c059251416c910ed227", "cast_id": 9, "profile_path": "/wmHCXUtiG1WhbcMMydKBKZ2kqSm.jpg", "order": 5}, {"name": "Nick Damici", "character": "Sheriff Meeks", "id": 67580, "credit_id": "52fe4c059251416c910ed22b", "cast_id": 10, "profile_path": "/vkZ2H5vLITyVyl4OkYe4r8cBMrS.jpg", "order": 6}, {"name": "Jack Gore", "character": "Rory Parker", "id": 1181345, "credit_id": "52fe4c059251416c910ed22f", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Kassie DePaiva", "character": "Emma Parker", "id": 11751, "credit_id": "52fe4c059251416c910ed233", "cast_id": 12, "profile_path": "/m60qVsCFDeXGSXnGvWVPBEYbeU1.jpg", "order": 8}], "directors": [{"name": "Jim Mickle", "department": "Directing", "job": "Director", "credit_id": "52fe4c059251416c910ed203", "profile_path": null, "id": 87082}], "vote_average": 5.7, "runtime": 105}, "11674": {"poster_path": "/54SKV7ALfiVGJBzoStGTLYkRZEM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Live action adaptation of a Disney Classic. When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.", "video": false, "id": 11674, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "101 Dalmatians", "tagline": "So many dogs. So little time.", "vote_count": 137, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eTaNHqpi7VldgcrDetfTzk4FeDi.jpg", "poster_path": "/9WfuNgHNAHKRp8HwtJYHKabJBnV.jpg", "id": 124916, "name": "101 Dalmatians (Live-action series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115433", "adult": false, "backdrop_path": "/4CcoF2VSW6GD21DGbmpxWMWafaE.jpg", "production_companies": [{"name": "Great Oaks Entertainment", "id": 2173}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1996-11-17", "popularity": 1.3608869739286, "original_title": "101 Dalmatians", "budget": 0, "cast": [{"name": "Glenn Close", "character": "Cruella De Vil", "id": 515, "credit_id": "52fe44769251416c75035a2b", "cast_id": 10, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 0}, {"name": "Jeff Daniels", "character": "Roger", "id": 8447, "credit_id": "52fe44769251416c75035a2f", "cast_id": 11, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 1}, {"name": "Joely Richardson", "character": "Anita", "id": 20810, "credit_id": "52fe44769251416c75035a33", "cast_id": 12, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 2}, {"name": "Joan Plowright", "character": "Nanny", "id": 23709, "credit_id": "52fe44769251416c75035a37", "cast_id": 13, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 3}, {"name": "Hugh Laurie", "character": "Jaspar", "id": 41419, "credit_id": "52fe44769251416c75035a3b", "cast_id": 14, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 4}], "directors": [{"name": "Stephen Herek", "department": "Directing", "job": "Director", "credit_id": "52fe44769251416c750359f7", "profile_path": "/v6eEBvBiOoMZwrbbU30u4ObmDWE.jpg", "id": 18356}], "vote_average": 5.6, "runtime": 103}, "11675": {"poster_path": "/crycJDHRvpQyZeQyRYtIZKIpNzK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two decades after surviving a massacre on October 31, 1978, former baby sitter Laurie Strode finds herself hunted by persistent knife-wielder Michael Myers. Laurie now lives in Northern California under an assumed name, where she works as the headmistress of a private school. But it's not far enough to escape Myers, who soon discovers her whereabouts. As Halloween descends upon Laurie's peaceful community, a feeling of dread weighs upon her -- with good reason.", "video": false, "id": 11675, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Halloween: H20", "tagline": "Blood is thicker than Water.", "vote_count": 52, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mmxf1sOe2T1sma0tH0TgTdcit1p.jpg", "poster_path": "/2uqHV6YcD9jEL2WuJYjXiiuRDqd.jpg", "id": 91361, "name": "Halloween Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120694", "adult": false, "backdrop_path": "/owO5bTVUYxJosjVsfnoqT6TIjGJ.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "1998-08-05", "popularity": 0.748216515113103, "original_title": "Halloween: H20", "budget": 17000000, "cast": [{"name": "Jamie Lee Curtis", "character": "Keri Tate", "id": 8944, "credit_id": "52fe44769251416c75035a97", "cast_id": 9, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 0}, {"name": "Josh Hartnett", "character": "John Tate", "id": 2299, "credit_id": "52fe44769251416c75035a9b", "cast_id": 12, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 1}, {"name": "Adam Arkin", "character": "Will Brennan", "id": 55257, "credit_id": "52fe44769251416c75035a9f", "cast_id": 13, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 2}, {"name": "Michelle Williams", "character": "Molly Cartwell", "id": 1812, "credit_id": "52fe44769251416c75035aa3", "cast_id": 14, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 3}, {"name": "Joseph Gordon-Levitt", "character": "Jimmy Howell", "id": 24045, "credit_id": "52fe44769251416c75035aad", "cast_id": 16, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 4}, {"name": "LL Cool J", "character": "Ronald 'Ronny' Jones", "id": 36424, "credit_id": "52fe44769251416c75035ab1", "cast_id": 17, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 5}, {"name": "Jodi Lyn O'Keefe", "character": "Sarah Wainthrope", "id": 58006, "credit_id": "52fe44769251416c75035ab5", "cast_id": 18, "profile_path": "/w1Yx9bpt3ZqVwo33SEXVF5bkY6Z.jpg", "order": 6}, {"name": "Adam Hann-Byrd", "character": "Charles 'Charlie' Deveraux", "id": 46530, "credit_id": "52fe44769251416c75035ab9", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Janet Leigh", "character": "Norma Watson", "id": 7302, "credit_id": "52fe44769251416c75035abd", "cast_id": 20, "profile_path": "/3FWYSCJUOuYVDPG9UoMjtqNMdyb.jpg", "order": 8}, {"name": "Branden Williams", "character": "Tony Allegre", "id": 150109, "credit_id": "52fe44769251416c75035ac1", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Matt Winston", "character": "Detective Matt Sampson", "id": 35521, "credit_id": "52fe44769251416c75035ac5", "cast_id": 22, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 10}, {"name": "Beau Billingslea", "character": "Detective 'Fitz' Fitzsimmons", "id": 78494, "credit_id": "52fe44769251416c75035ac9", "cast_id": 23, "profile_path": "/3Ooz7bdkkSwwbzOs9SPXIXvGKYQ.jpg", "order": 11}, {"name": "Larisa Miller", "character": "Claudia", "id": 150113, "credit_id": "52fe44769251416c75035acd", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Emmalee Thompson", "character": "Casey", "id": 150114, "credit_id": "52fe44769251416c75035ad1", "cast_id": 25, "profile_path": null, "order": 13}], "directors": [{"name": "Steve Miner", "department": "Directing", "job": "Director", "credit_id": "52fe44769251416c75035a6f", "profile_path": "/yk90jxBifKosxEyP8CITJk1BTtt.jpg", "id": 58712}], "vote_average": 6.1, "runtime": 86}, "1946": {"poster_path": "/jvuRnlZvfUnleAZj8g75q4VZedm.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 2856712, "overview": "A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.", "video": false, "id": 1946, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "eXistenZ", "tagline": "Play it. Live it. Kill for it.", "vote_count": 102, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120907", "adult": false, "backdrop_path": "/wm8EYTqV7NPgpT0hEHBzN2QruqL.jpg", "production_companies": [{"name": "Canadian Television Fund", "id": 20170}, {"name": "Alliance Atlantis Communications", "id": 803}, {"name": "Natural Nylon Entertainment", "id": 804}, {"name": "Serendipity Point Films", "id": 805}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}, {"name": "The Harold Greenberg Fund", "id": 807}, {"name": "The Movie Network", "id": 808}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique", "id": 809}], "release_date": "1999-04-19", "popularity": 0.157312420292633, "original_title": "eXistenZ", "budget": 15000000, "cast": [{"name": "Jennifer Jason Leigh", "character": "Allegra Geller", "id": 10431, "credit_id": "52fe4325c3a36847f803db37", "cast_id": 3, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 0}, {"name": "Jude Law", "character": "Ted Pikul", "id": 9642, "credit_id": "52fe4325c3a36847f803db3b", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Ian Holm", "character": "Kiri Vinokur", "id": 65, "credit_id": "52fe4325c3a36847f803db3f", "cast_id": 5, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "Gas", "id": 5293, "credit_id": "52fe4325c3a36847f803db43", "cast_id": 6, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Don McKellar", "character": "Yevgeny Nourish", "id": 20173, "credit_id": "52fe4325c3a36847f803db47", "cast_id": 7, "profile_path": "/m0UEFyCg5Sl2FHGi5WUNpI2n5AU.jpg", "order": 4}, {"name": "Oscar Hsu", "character": "Chinese Waiter", "id": 20174, "credit_id": "52fe4325c3a36847f803db4b", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Callum Keith Rennie", "character": "Hugo Carlaw", "id": 540, "credit_id": "52fe4325c3a36847f803db4f", "cast_id": 9, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 6}, {"name": "Christopher Eccleston", "character": "Seminar Leader", "id": 2040, "credit_id": "52fe4325c3a36847f803db53", "cast_id": 10, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 7}, {"name": "Sarah Polley", "character": "Merle", "id": 98, "credit_id": "52fe4325c3a36847f803db57", "cast_id": 11, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 8}, {"name": "Robert A. Silverman", "character": "D'Arcy Nader", "id": 20175, "credit_id": "52fe4325c3a36847f803db5b", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Kris Lemche", "character": "Noel Dichter", "id": 20176, "credit_id": "52fe4325c3a36847f803db5f", "cast_id": 13, "profile_path": "/tugdbJ5M7wTNb6v52jqhEkWNDtu.jpg", "order": 10}, {"name": "Vik Sahay", "character": "Male Assistant", "id": 6623, "credit_id": "52fe4325c3a36847f803db63", "cast_id": 14, "profile_path": "/eApnmkajRNYJ0Jrl9Cft1lo93cF.jpg", "order": 11}, {"name": "Kirsten Johnson", "character": "Female Assistant", "id": 20177, "credit_id": "52fe4325c3a36847f803db67", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "James Kirchner", "character": "Landry", "id": 20178, "credit_id": "52fe4325c3a36847f803db6b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Bal\u00e1zs Ko\u00f3s", "character": "Male Volunteer", "id": 20179, "credit_id": "52fe4325c3a36847f803db6f", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Stephanie Belding", "character": "Female Volunteer", "id": 20180, "credit_id": "52fe4325c3a36847f803db73", "cast_id": 18, "profile_path": "/uH66JXFzOQNn29hylhJAm9Ir0mo.jpg", "order": 15}, {"name": "Gerry Quigley", "character": "Trout Farm Worker", "id": 234, "credit_id": "52fe4325c3a36847f803db77", "cast_id": 19, "profile_path": null, "order": 16}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe4325c3a36847f803db2d", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 6.7, "runtime": 97}, "11678": {"poster_path": "/LYRvXwqgQGJoaxb8bB8i46X9wp.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "PK", "name": "Pakistan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68473360, "overview": "Trapped near the summit of K2, the world's second-highest mountain, Annie Garrett radios to base camp for help. Brother Peter hears Annie's message and assembles a team to save her and her group before they succumb to K2's unforgiving elements. But, as Annie lays injured in an icy cavern, the rescuers face several terrifying events that could end the rescue attempt -- and their lives.", "video": false, "id": 11678, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Vertical Limit", "tagline": "The Mountain Will Decide.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0190865", "adult": false, "backdrop_path": "/rBYgRwSMZX0HOwOVaS5MpLqUC0.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Global Entertainment Productions GmbH & Company Medien KG", "id": 9269}], "release_date": "2000-12-08", "popularity": 0.409861455502431, "original_title": "Vertical Limit", "budget": 75000000, "cast": [{"name": "Chris O'Donnell", "character": "Peter Garrett", "id": 5577, "credit_id": "52fe44779251416c75035c25", "cast_id": 11, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 0}, {"name": "Robin Tunney", "character": "Annie Garrett", "id": 17346, "credit_id": "52fe44779251416c75035c29", "cast_id": 12, "profile_path": "/oQGr5vfYbkarmJQmhGmSpIhSapL.jpg", "order": 1}, {"name": "Bill Paxton", "character": "Elliot Vaughn", "id": 2053, "credit_id": "52fe44779251416c75035c2d", "cast_id": 14, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 2}, {"name": "Scott Glenn", "character": "Montgomery Wick", "id": 349, "credit_id": "53ab1287c3a3684bc5000169", "cast_id": 41, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 3}, {"name": "Izabella Scorupco", "character": "Monique Aubertine", "id": 10695, "credit_id": "52fe44779251416c75035c31", "cast_id": 15, "profile_path": "/7lQ494byqcFfVkJtZYLl38MvfKS.jpg", "order": 4}, {"name": "Nicholas Lea", "character": "Tom", "id": 42706, "credit_id": "52fe44779251416c75035c41", "cast_id": 18, "profile_path": "/tXfhqYTwSixZW623zvM9QyPbyPV.jpg", "order": 5}, {"name": "Temuera Morrison", "character": "Le major Rasul", "id": 7242, "credit_id": "52fe44779251416c75035c45", "cast_id": 20, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 6}, {"name": "Alexander Siddig", "character": "Kareem Nazir", "id": 2957, "credit_id": "52fe44779251416c75035c49", "cast_id": 21, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 7}, {"name": "Stuart Wilson", "character": "Royce Garrett", "id": 14344, "credit_id": "52fe44779251416c75035c4d", "cast_id": 22, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 8}, {"name": "Augie Davis", "character": "Aziz", "id": 1079558, "credit_id": "52fe44779251416c75035c51", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Roshan Seth", "character": "Colonel Amir Salim", "id": 693, "credit_id": "52fe44779251416c75035c55", "cast_id": 24, "profile_path": "/hC4VtvW0lUmzGy54NLqyUeufnQT.jpg", "order": 10}, {"name": "Alejandro Valdes-Rochin", "character": "Sergeant Asim", "id": 1079559, "credit_id": "52fe44779251416c75035c59", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Rod Brown", "character": "Ali Hasan", "id": 70908, "credit_id": "52fe44779251416c75035c5d", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Steve Le Marquand", "character": "Cyril Bench", "id": 59116, "credit_id": "52fe44779251416c75035c61", "cast_id": 27, "profile_path": "/oCyCwQjXRtjk2MOcv2yGuMRtptQ.jpg", "order": 13}, {"name": "Ben Mendelsohn", "character": "Malcolm Bench", "id": 77335, "credit_id": "52fe44779251416c75035c65", "cast_id": 28, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 14}, {"name": "Ed Viesturs", "character": "Himself", "id": 135673, "credit_id": "52fe44779251416c75035c69", "cast_id": 30, "profile_path": "/osvNB4z05NqhAONWAKlQMIEhmVO.jpg", "order": 15}, {"name": "Robert Taylor", "character": "Skip Taylor", "id": 39545, "credit_id": "52fe44779251416c75035c6d", "cast_id": 31, "profile_path": "/aqRJQj0KBPhGLDxfmOAXCUzCcSJ.jpg", "order": 16}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe44779251416c75035bf1", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.0, "runtime": 124}, "11679": {"poster_path": "/1rKeQyy4eyyuVcNNBlyEfLuh7Cu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71073932, "overview": "Ice Cube stars as Darius Stone, a thrill-seeking troublemaker whose criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert (played by Willem Dafoe).", "video": false, "id": 11679, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "xXx: State of the Union", "tagline": "Prepare for the next level", "vote_count": 146, "homepage": "", "belongs_to_collection": {"backdrop_path": "/g9Q2dmbxd1F2hHB5VslPbqGM1JV.jpg", "poster_path": "/omRo1Pw4phlELRgYOQ7RyAlccLt.jpg", "id": 52785, "name": "xXx Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329774", "adult": false, "backdrop_path": "/cb5C147Cq37qyEWMByOJYryZXCT.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Revolution Studios", "id": 497}, {"name": "Original Film", "id": 333}], "release_date": "2005-04-29", "popularity": 1.39246127693117, "original_title": "xXx: State of the Union", "budget": 87000000, "cast": [{"name": "Ice Cube", "character": "Darius Stone / XXX", "id": 9778, "credit_id": "52fe44779251416c75035cd3", "cast_id": 13, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Gen. George Octavius Deckert", "id": 5293, "credit_id": "52fe44779251416c75035cc3", "cast_id": 9, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Agent Augustus Gibbons", "id": 2231, "credit_id": "52fe44779251416c75035cc7", "cast_id": 10, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Scott Speedman", "character": "Agent Kyle Steele", "id": 100, "credit_id": "52fe44779251416c75035ccb", "cast_id": 11, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 3}, {"name": "Xzibit", "character": "Zeke", "id": 336, "credit_id": "52fe44779251416c75035ccf", "cast_id": 12, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 4}, {"name": "Peter Strauss", "character": "President Sandford", "id": 21368, "credit_id": "52fe44779251416c75035cd7", "cast_id": 15, "profile_path": "/gzgt88W2vUgwiYC7izlKXIcosWx.jpg", "order": 5}, {"name": "Michael Roof", "character": "Toby Lee Shavers", "id": 53347, "credit_id": "52fe44779251416c75035cdb", "cast_id": 16, "profile_path": "/52LqQBBrjzqhcrwuh3eNMdcBPMb.jpg", "order": 6}, {"name": "Sunny Mabrey", "character": "Charlie Mayweather", "id": 58707, "credit_id": "52fe44779251416c75035cdf", "cast_id": 17, "profile_path": "/fKPc0yMFKIMJmvXH8yJcse22BmV.jpg", "order": 7}, {"name": "Nona Gaye", "character": "Lola", "id": 18286, "credit_id": "52fe44779251416c75035ce3", "cast_id": 18, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 8}, {"name": "John G. Connolly", "character": "Lt. Alabama 'Bama' Cobb", "id": 1191451, "credit_id": "530f5247925141734a000cb0", "cast_id": 19, "profile_path": "/vBznbSqqrPjLJnIPUEDKbxo0bka.jpg", "order": 9}, {"name": "Ramon De Ocampo", "character": "Agent Meadows", "id": 171898, "credit_id": "530f5259925141734a000cb3", "cast_id": 20, "profile_path": "/ufbmBwY3P1dA8Cqxn28iZqes5rS.jpg", "order": 10}, {"name": "Barry Sigismondi", "character": "Bull", "id": 169670, "credit_id": "530f5269925141733e000c57", "cast_id": 21, "profile_path": "/vLhZ8xKsKVXdygMd3UHBsEoF1Bt.jpg", "order": 11}, {"name": "Michael Don Evans", "character": "Conductor", "id": 1297083, "credit_id": "530f52769251417332000d5b", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "David Rountree", "character": "Agent", "id": 93929, "credit_id": "530f5282925141733e000c5a", "cast_id": 23, "profile_path": "/3l4sTr0nP1xLKfSnbsACyNlJ3am.jpg", "order": 13}, {"name": "Ned Schmidtke", "character": "General Jack Pettibone", "id": 173739, "credit_id": "530f528e9251417332000d60", "cast_id": 24, "profile_path": "/nCZ1y7sre7m7pVurBwKoR6mzmrc.jpg", "order": 14}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe44779251416c75035c9b", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 5.0, "runtime": 101}, "8845": {"poster_path": "/duxM3HJ55Fpc4A3krziKn1FR22K.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156563139, "overview": "This action-packed thriller takes place on the soon-to-be-decommissioned USS Missouri. Disgruntled ex-CIA operative Strannix, his assistant Krill and their group of terrorists seize the battleship with nuclear blackmail in mind. They've planned for every contingency but ignore the ship's cook, former Navy SEAL Casey Ryback -- an error that could be fatal.", "video": false, "id": 8845, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Under Siege", "tagline": "It's not a job... It's an Adventure!", "vote_count": 99, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4Ysa3x4wDwolRpUXBCrig7szGon.jpg", "poster_path": "/5hkZdonGNmoqatnadpDnIgEbrho.jpg", "id": 112399, "name": "Under Siege Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105690", "adult": false, "backdrop_path": "/7Twk0ewJmB4CI55YkK2IBiEcIFC.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros Pictures", "id": 4209}, {"name": "Canal+", "id": 5358}], "release_date": "1992-10-09", "popularity": 0.975571672715268, "original_title": "Under Siege", "budget": 35000000, "cast": [{"name": "Steven Seagal", "character": "Casey Ryback", "id": 23880, "credit_id": "52fe44c0c3a36847f80a7d23", "cast_id": 1, "profile_path": "/f8OFR4h3ngyFesiudCygrNFdsCE.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "William Stranix", "id": 2176, "credit_id": "52fe44c0c3a36847f80a7d27", "cast_id": 2, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Gary Busey", "character": "Commander Krill", "id": 2048, "credit_id": "52fe44c0c3a36847f80a7d2b", "cast_id": 3, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Erika Eleniak", "character": "Jordan Tate", "id": 23764, "credit_id": "52fe44c0c3a36847f80a7d59", "cast_id": 11, "profile_path": "/7ZdUGY78qpB2MkTzAQvYEYzncwN.jpg", "order": 3}, {"name": "Patrick O'Neal", "character": "Capt. Adams", "id": 54123, "credit_id": "52fe44c0c3a36847f80a7d5d", "cast_id": 12, "profile_path": "/ao2jCOEIew0VuYRjYg9LiFWiYYA.jpg", "order": 4}, {"name": "Damian Chapa", "character": "Tackman", "id": 58646, "credit_id": "52fe44c0c3a36847f80a7d61", "cast_id": 13, "profile_path": "/e00LyDBIhDOFWgwfSU0wCTLL4ax.jpg", "order": 5}, {"name": "Michael Des Barres", "character": "Domiani", "id": 65334, "credit_id": "52fe44c0c3a36847f80a7d65", "cast_id": 14, "profile_path": "/kKXCivEKwYYVirhyIVsqxTlGi5.jpg", "order": 6}, {"name": "Andy Romano", "character": "Adm. Bates", "id": 32289, "credit_id": "52fe44c0c3a36847f80a7d69", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Colm Meaney", "character": "Doumer", "id": 17782, "credit_id": "53096ab0c3a368421b0033ac", "cast_id": 16, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 8}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe44c0c3a36847f80a7d31", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 5.8, "runtime": 103}, "4824": {"poster_path": "/6Hh2ROGTRKdbUfEXVVv5fNhmXK3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159330280, "overview": "Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, the perfectionist Jackal proves an elusive target for the men charged with the task of bringing him down: a deputy FBI boss and a former IRA terrorist.", "video": false, "id": 4824, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Jackal", "tagline": "How do you stop an assassin who has no identity?", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0119395", "adult": false, "backdrop_path": "/ckpSxGKHrzUg8Kh4zVvrDKofdeJ.jpg", "production_companies": [{"name": "Mutual Film Company", "id": 762}, {"name": "Universal Pictures", "id": 33}], "release_date": "1997-11-13", "popularity": 0.982609419899255, "original_title": "The Jackal", "budget": 60000000, "cast": [{"name": "Bruce Willis", "character": "The Jackal", "id": 62, "credit_id": "52fe43dcc3a36847f8074b4b", "cast_id": 11, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Richard Gere", "character": "Declan Mulqueen", "id": 1205, "credit_id": "52fe43dcc3a36847f8074b4f", "cast_id": 12, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Sidney Poitier", "character": "Carter Preston", "id": 16897, "credit_id": "52fe43dcc3a36847f8074b53", "cast_id": 13, "profile_path": "/9LV17m3H7nGCJTXg7pzhK857g6V.jpg", "order": 2}, {"name": "Diane Venora", "character": "Major Valentina Koslova", "id": 6200, "credit_id": "52fe43dcc3a36847f8074b57", "cast_id": 14, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "FBI Agent T. I. Witherspoon", "id": 18999, "credit_id": "52fe43dcc3a36847f8074b5b", "cast_id": 15, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "Jack Black", "character": "Ian Lamont", "id": 70851, "credit_id": "52fe43dcc3a36847f8074b5f", "cast_id": 16, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 5}, {"name": "Sophie Okonedo", "character": "Jamaican Girl", "id": 2598, "credit_id": "52fe43dcc3a36847f8074b63", "cast_id": 17, "profile_path": "/5Yo3KGum1txRLmt6JZwQ5TYSIsg.jpg", "order": 6}, {"name": "Ravil Isyanov", "character": "Ghazzi Murad", "id": 41742, "credit_id": "52fe43dcc3a36847f8074b67", "cast_id": 18, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 7}, {"name": "Maggie Castle", "character": "Maggie", "id": 41743, "credit_id": "52fe43dcc3a36847f8074b6b", "cast_id": 19, "profile_path": "/mNiLxh1UZWXrVoXow3PB094mYCL.jpg", "order": 8}, {"name": "Karen Kirschenbauer", "character": "Speaker", "id": 41744, "credit_id": "52fe43dcc3a36847f8074b6f", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Daniel Dae Kim", "character": "Akashi", "id": 18307, "credit_id": "52fe43dcc3a36847f8074b73", "cast_id": 21, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 10}, {"name": "Jim Grimshaw", "character": "Green Beret Colonel", "id": 41745, "credit_id": "52fe43dcc3a36847f8074b77", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Serge Houde", "character": "Beaufres", "id": 41746, "credit_id": "52fe43dcc3a36847f8074b7b", "cast_id": 23, "profile_path": "/txotfOoZhyo7DXaga0vmHkMS5aD.jpg", "order": 12}, {"name": "Mathilda May", "character": "Isabella Zanconia", "id": 44233, "credit_id": "52fe43dcc3a36847f8074b7f", "cast_id": 24, "profile_path": "/nNqf6LXM52lVKI7xFdynKorf1zH.jpg", "order": 13}, {"name": "Richard Lineback", "character": "FBI Agent McMurphy", "id": 3205, "credit_id": "52fe43dcc3a36847f8074b83", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "John Cunningham", "character": "FBI Director Donald Brown", "id": 167561, "credit_id": "52fe43dcc3a36847f8074b87", "cast_id": 26, "profile_path": "/mGwPTNlYQINjvCrQn0ZoAMCAPge.jpg", "order": 15}, {"name": "Tess Harper", "character": "The First Lady", "id": 41249, "credit_id": "52fe43dcc3a36847f8074b8b", "cast_id": 27, "profile_path": "/gJT9fBX04LjmbOzOzYcNbA2ZLF1.jpg", "order": 16}, {"name": "Leslie Phillips", "character": "Woolburton", "id": 10655, "credit_id": "52fe43dcc3a36847f8074b8f", "cast_id": 28, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 17}, {"name": "Stephen Spinella", "character": "Douglas", "id": 57093, "credit_id": "52fe43dcc3a36847f8074b93", "cast_id": 29, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 18}, {"name": "David Hayman", "character": "Terek Murad", "id": 54014, "credit_id": "52fe43dcc3a36847f8074b97", "cast_id": 30, "profile_path": "/tXhC9zlniU4SYpjOcMKxDIHdQBB.jpg", "order": 19}, {"name": "Steve Bassett", "character": "George Decker", "id": 940950, "credit_id": "52fe43dcc3a36847f8074b9b", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Yuri Stepanov", "character": "Victor Politovsky", "id": 83838, "credit_id": "52fe43dcc3a36847f8074b9f", "cast_id": 32, "profile_path": "/4myq2b2POYYuTj4IfOysv2wIlP0.jpg", "order": 21}, {"name": "Walt MacPherson", "character": "Dennehey", "id": 361969, "credit_id": "52fe43dcc3a36847f8074ba3", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Terrence Currier", "character": "Surgeon General", "id": 174241, "credit_id": "52fe43dcc3a36847f8074ba7", "cast_id": 34, "profile_path": "/e5IbBJ3I4BGFIiqG3MBADE8321n.jpg", "order": 23}, {"name": "Michael Caton-Jones", "character": "Man in Video", "id": 30365, "credit_id": "52fe43dcc3a36847f8074bab", "cast_id": 35, "profile_path": "/oKzuAA9S6VAb0qkmD9v8Z30jGSf.jpg", "order": 24}, {"name": "Laura Viederman", "character": "Woman in Video", "id": 1091218, "credit_id": "52fe43dcc3a36847f8074baf", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Peter Sullivan", "character": "Vasilov", "id": 173668, "credit_id": "52fe43dcc3a36847f8074bb3", "cast_id": 37, "profile_path": "/kp5FvZXp322EI04UMvcH3FKSEj7.jpg", "order": 26}, {"name": "Richard Cubison", "character": "General Belinko", "id": 1091222, "credit_id": "52fe43dcc3a36847f8074bb7", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Gregory Porter Miller", "character": "Paramedic", "id": 181359, "credit_id": "52fe43dcc3a36847f8074bbb", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Bob Kingdom", "character": "Ambassador Koldin", "id": 208490, "credit_id": "52fe43dcc3a36847f8074bbf", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "Murphy Guyer", "character": "NSC Representative", "id": 155547, "credit_id": "52fe43dcc3a36847f8074bc3", "cast_id": 41, "profile_path": "/vOuj13cuNCpKTewqN0pBG36Il4l.jpg", "order": 30}, {"name": "Philip Le Maistre", "character": "Bored Teenage Clerk", "id": 1015988, "credit_id": "52fe43dcc3a36847f8074bc7", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "James McCauley", "character": "CIA Representative #1", "id": 281638, "credit_id": "52fe43dcc3a36847f8074bcb", "cast_id": 43, "profile_path": "/qV0RMhgp8wksfc9QIOiFD7xF7St.jpg", "order": 32}, {"name": "Terry Loughlin", "character": "Davis", "id": 74587, "credit_id": "52fe43dcc3a36847f8074bcf", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Victor Sobchak", "character": "Doctor", "id": 1091236, "credit_id": "52fe43dcc3a36847f8074bd3", "cast_id": 45, "profile_path": null, "order": 34}, {"name": "Serge Christianssens", "character": "Immigration Officer", "id": 1091239, "credit_id": "52fe43dcc3a36847f8074bd7", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Boris Boscovic", "character": "Interrogator", "id": 1091241, "credit_id": "52fe43dcc3a36847f8074bdb", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Ewan Bailey", "character": "Prison Guard", "id": 203467, "credit_id": "52fe43dcc3a36847f8074bdf", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Danette Alberico", "character": "Woman with Champagne #1", "id": 1091246, "credit_id": "52fe43dcc3a36847f8074be3", "cast_id": 49, "profile_path": null, "order": 38}, {"name": "Debra Gano", "character": "Woman with Champagne #2", "id": 1091247, "credit_id": "52fe43dcc3a36847f8074be7", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "John Harrington Bland", "character": "Dave", "id": 169202, "credit_id": "52fe43dcc3a36847f8074beb", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Pamela Poitier", "character": "Law Clerk", "id": 1091248, "credit_id": "52fe43ddc3a36847f8074bef", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Jonathan Aris", "character": "Alexander Radzinski", "id": 28477, "credit_id": "52fe43ddc3a36847f8074bf3", "cast_id": 53, "profile_path": "/6RMuwGYfLLGq01LNGBydj9jpTWn.jpg", "order": 42}, {"name": "Eddie Bo Smith Jr.", "character": "Washington Cop", "id": 86573, "credit_id": "52fe43ddc3a36847f8074bf7", "cast_id": 54, "profile_path": null, "order": 43}, {"name": "Larry King", "character": "Himself", "id": 44127, "credit_id": "52fe43ddc3a36847f8074bfb", "cast_id": 55, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 44}, {"name": "Dan Ziskie", "character": "CIA Representative #2", "id": 61323, "credit_id": "52fe43ddc3a36847f8074bff", "cast_id": 56, "profile_path": "/c4TZVcVFAmsqDUSPNhEQ73LFn4s.jpg", "order": 45}, {"name": "Gayle Jessup", "character": "Reporter", "id": 1091249, "credit_id": "52fe43ddc3a36847f8074c03", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Bill Collins", "character": "Medic", "id": 1091250, "credit_id": "52fe43ddc3a36847f8074c07", "cast_id": 58, "profile_path": null, "order": 47}, {"name": "David Gene Gibbs", "character": "Pilot", "id": 1091251, "credit_id": "52fe43ddc3a36847f8074c0b", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "James M. Helkey", "character": "Co-Pilot", "id": 1091252, "credit_id": "52fe43ddc3a36847f8074c0f", "cast_id": 60, "profile_path": null, "order": 49}], "directors": [{"name": "Michael Caton-Jones", "department": "Directing", "job": "Director", "credit_id": "52fe43dcc3a36847f8074b11", "profile_path": "/oKzuAA9S6VAb0qkmD9v8Z30jGSf.jpg", "id": 30365}], "vote_average": 6.1, "runtime": 124}, "11683": {"poster_path": "/xE1ZZ1y5rfqQfkR5fGMCLlsMQff.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46770602, "overview": "The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city.", "video": false, "id": 11683, "genres": [{"id": 27, "name": "Horror"}], "title": "Land of the Dead", "tagline": "The dead shall inherit the Earth.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/inPPfnJ9Wzc9rg1MpkPm0P3D9rJ.jpg", "poster_path": "/mSJ20RTWWgtt3aTyn1iwNZ9fbYl.jpg", "id": 261590, "name": "Living Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0418819", "adult": false, "backdrop_path": "/auPv1B8wVHnDn9ypAxeit44CFMN.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2005-06-24", "popularity": 0.42318162682723, "original_title": "Land of the Dead", "budget": 15000000, "cast": [{"name": "Simon Baker", "character": "Riley", "id": 1284159, "credit_id": "52fe44789251416c75035ef1", "cast_id": 32, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Cholo", "id": 5723, "credit_id": "52fe44789251416c75035e97", "cast_id": 11, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Dennis Hopper", "character": "Kaufman", "id": 2778, "credit_id": "52fe44789251416c75035e9b", "cast_id": 12, "profile_path": "/56nj2DfMVU3F9qUagZWMePLbrKF.jpg", "order": 2}, {"name": "Robert Joy", "character": "Charlie", "id": 19976, "credit_id": "52fe44789251416c75035e9f", "cast_id": 13, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 3}, {"name": "Asia Argento", "character": "Slack", "id": 18514, "credit_id": "52fe44789251416c75035ea3", "cast_id": 14, "profile_path": "/dCbZQbhfpJqPHYXGyMNf5LT5pBz.jpg", "order": 4}, {"name": "Eugene Clark", "character": "Big Daddy", "id": 61660, "credit_id": "52fe44789251416c75035ea7", "cast_id": 15, "profile_path": "/v1iJYDA4vUWZhef9GE38US43zEB.jpg", "order": 5}, {"name": "Joanne Boland", "character": "Pretty Boy", "id": 99181, "credit_id": "52fe44789251416c75035eab", "cast_id": 16, "profile_path": "/i3m6r3qqI5Mefww6QVCqddWWYhZ.jpg", "order": 6}, {"name": "Tony Nappo", "character": "Foxy", "id": 76528, "credit_id": "52fe44789251416c75035eaf", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Jennifer Baxter", "character": "Number 9", "id": 99182, "credit_id": "52fe44789251416c75035eb3", "cast_id": 18, "profile_path": "/bmIDtgob2MYxAa80pzfjvwYTnNq.jpg", "order": 8}, {"name": "Boyd Banks", "character": "Butcher", "id": 20196, "credit_id": "52fe44789251416c75035eb7", "cast_id": 19, "profile_path": "/mDsIaLKyGqyV1Nt0pV9joGkQNSP.jpg", "order": 9}, {"name": "Shawn Roberts", "character": "Mike", "id": 81097, "credit_id": "52fe44789251416c75035ebb", "cast_id": 20, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 10}, {"name": "Alan van Sprang", "character": "Brubaker", "id": 99183, "credit_id": "52fe44789251416c75035ebf", "cast_id": 21, "profile_path": "/les7cqXIk3UwCT025wSJyumFryX.jpg", "order": 11}, {"name": "Krista Bridges", "character": "Motown", "id": 43257, "credit_id": "52fe44789251416c75035ec3", "cast_id": 22, "profile_path": "/pikldnlwHpuxEKQGiVJHIOB3O8w.jpg", "order": 12}, {"name": "Phil Fondacaro", "character": "Chihuahua", "id": 12662, "credit_id": "52fe44789251416c75035ec7", "cast_id": 23, "profile_path": "/3Ao8VPvlytIm3DWFffdSPxwxFdC.jpg", "order": 13}, {"name": "Peter Outerbridge", "character": "Styles", "id": 12978, "credit_id": "52fe44789251416c75035ecb", "cast_id": 24, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 14}, {"name": "Simon Pegg", "character": "Photo Booth Zombie", "id": 11108, "credit_id": "52fe44789251416c75035ecf", "cast_id": 25, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 15}, {"name": "Edgar Wright", "character": "Photo Booth Zombie", "id": 11090, "credit_id": "52fe44789251416c75035ed3", "cast_id": 26, "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "order": 16}, {"name": "Gregory Nicotero", "character": "Bridgekeeper Zombie", "id": 59287, "credit_id": "52fe44789251416c75035ed7", "cast_id": 27, "profile_path": "/jedpZq1cMzmixzznxzgRZAIzodY.jpg", "order": 17}, {"name": "Tom Savini", "character": "Machete Zombie", "id": 11161, "credit_id": "52fe44789251416c75035edb", "cast_id": 28, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 18}], "directors": [{"name": "George A. Romero", "department": "Directing", "job": "Director", "credit_id": "52fe44789251416c75035e63", "profile_path": "/sR8es9NjVWJ4lIfT8lrAvnVqA82.jpg", "id": 14999}], "vote_average": 5.6, "runtime": 93}, "11688": {"poster_path": "/klhsrqyhvFaoM6Rwjo9dFPYJQSK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 169327687, "overview": "Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.", "video": false, "id": 11688, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Emperor's New Groove", "tagline": "It's All About.....ME!", "vote_count": 362, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hrm42649hDK4zCSEZlRWX1k1qS2.jpg", "poster_path": "/c5xqFlKELZOlO7LbgdlbBBKnkny.jpg", "id": 178117, "name": "The Emperor's New Groove Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120917", "adult": false, "backdrop_path": "/Aczojyb0VFBNpFrxARqeCtdd2gA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2000-12-09", "popularity": 1.40777283374237, "original_title": "The Emperor's New Groove", "budget": 100000000, "cast": [{"name": "David Spade", "character": "Kuzco (voice)", "id": 60950, "credit_id": "52fe44799251416c750360c7", "cast_id": 11, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 0}, {"name": "John Goodman", "character": "Patcha (voice)", "id": 1230, "credit_id": "52fe44799251416c750360cf", "cast_id": 13, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Eartha Kitt", "character": "Yzma (voice)", "id": 70243, "credit_id": "52fe44799251416c750360d7", "cast_id": 15, "profile_path": "/m3Ozxzlnl474Hjpe6OYkRNGmKRm.jpg", "order": 4}, {"name": "Patrick Warburton", "character": "Kronk (voice)", "id": 9657, "credit_id": "52fe44799251416c750360df", "cast_id": 17, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 6}, {"name": "Wendie Malick", "character": "Chicha, Pacha's Wife (voice)", "id": 61980, "credit_id": "5458e5e0c3a3683997001e75", "cast_id": 19, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 8}, {"name": "Kellyann Kelso", "character": "Chaca, Pacha's Daughter (voice)", "id": 1381716, "credit_id": "5458e5fac3a3683997001e7a", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Eli Russell Linnetz", "character": "Tipo, Pacha's Son (voice)", "id": 102320, "credit_id": "5458e614c3a36839a4001d9b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Tom Jones", "character": "Theme Song Guy", "id": 1017762, "credit_id": "5458e632c3a368398f001d58", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Stephen J. Anderson", "character": "Stephen J. Anderson", "id": 16842, "credit_id": "5458e6480e0a261165001dd3", "cast_id": 23, "profile_path": "/pUIRHfqrlda6gQEwWtAFuoKbKYB.jpg", "order": 12}, {"name": "Bob Bergen", "character": "Bucky the Squirrel", "id": 78317, "credit_id": "5458e65a0e0a261162001db1", "cast_id": 24, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 13}, {"name": "Patti Deutsch", "character": "Waitress", "id": 91024, "credit_id": "5458e66fc3a3683997001e83", "cast_id": 25, "profile_path": "/6eTkh2shxCOo2R90RavfqSzrEY9.jpg", "order": 14}, {"name": "John Fiedler", "character": "Old Man", "id": 5247, "credit_id": "5458e67e0e0a26116f001cb8", "cast_id": 26, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 15}], "directors": [{"name": "Mark Dindal", "department": "Directing", "job": "Director", "credit_id": "52fe44799251416c7503608d", "profile_path": "/8wetJbZVXQrdfU4KaQBEvTSNkRA.jpg", "id": 61411}], "vote_average": 6.8, "runtime": 78}, "10140": {"poster_path": "/pRzEyrMSyvpHf92EhsVSg9Yr81t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415686217, "overview": "This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.", "video": false, "id": 10140, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Chronicles of Narnia: The Voyage of the Dawn Treader", "tagline": "Return to magic. Return to hope. Return to Narnia.", "vote_count": 518, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ojjzZUQlqKTsN1T7s5OAVZSjYMH.jpg", "poster_path": "/sh6Kn8VBfXotJ6qsvJkdfscxXKR.jpg", "id": 420, "name": "The Chronicles of Narnia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0980970", "adult": false, "backdrop_path": "/dAc3Ob868XGnAX8uOptb7HWx0In.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "Dune Entertainment", "id": 444}, {"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2010-12-10", "popularity": 1.37206794774282, "original_title": "The Chronicles of Narnia: The Voyage of the Dawn Treader", "budget": 155000000, "cast": [{"name": "Skandar Keynes", "character": "Edmund Prevensie", "id": 5527, "credit_id": "52fe43339251416c750075f3", "cast_id": 5, "profile_path": "/7Wc58Opf4EDjHDotwjK2XLTFLqU.jpg", "order": 0}, {"name": "Georgie Henley", "character": "Lucy Pevensie", "id": 5526, "credit_id": "52fe43339251416c750075f7", "cast_id": 6, "profile_path": "/u8zyLaHTqx4V8LyHnYL2vDsxbrC.jpg", "order": 1}, {"name": "Simon Pegg", "character": "Reepicheep (Voice)", "id": 11108, "credit_id": "52fe43339251416c750075fb", "cast_id": 8, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 2}, {"name": "Gary Sweet", "character": "Lord Drinian", "id": 75170, "credit_id": "52fe43339251416c750075ff", "cast_id": 9, "profile_path": "/t7DfHinQBAXxIuddZL7r1ke7rZX.jpg", "order": 3}, {"name": "Arthur Angel", "character": "Rhince", "id": 107474, "credit_id": "52fe43339251416c75007603", "cast_id": 10, "profile_path": "/5Zafbt1us6XgqHfBs7iyZ8NnYN1.jpg", "order": 4}, {"name": "Tilda Swinton", "character": "The White Witch", "id": 3063, "credit_id": "52fe43339251416c75007607", "cast_id": 11, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 5}, {"name": "Tony Nixon", "character": "Rynelf", "id": 143270, "credit_id": "52fe43349251416c7500760b", "cast_id": 12, "profile_path": "/7YqSwVuWZXmkQg2scLOXLzaVTCz.jpg", "order": 6}, {"name": "Shane Rangi", "character": "Tavros the Minotaur", "id": 25134, "credit_id": "52fe43349251416c7500760f", "cast_id": 13, "profile_path": "/27LjnxN8dMQ3r2yRatAoht3iDhJ.jpg", "order": 7}, {"name": "Colin Moody", "character": "Auctioneer", "id": 143271, "credit_id": "52fe43349251416c75007613", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ben Barnes", "character": "Caspian", "id": 25130, "credit_id": "52fe43349251416c75007617", "cast_id": 15, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 9}, {"name": "Will Poulter", "character": "Eustace", "id": 93491, "credit_id": "52fe43349251416c75007621", "cast_id": 18, "profile_path": "/d3wR8o9y9jmTha426ms1m70h0HC.jpg", "order": 10}, {"name": "Terry Norris", "character": "Lord Bern", "id": 187107, "credit_id": "52fe43349251416c750076b5", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "Bruce Spence", "character": "Lord Rhoop", "id": 27752, "credit_id": "52fe43349251416c750076b9", "cast_id": 44, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 12}, {"name": "Bille Brown", "character": "Coriakin", "id": 42393, "credit_id": "52fe43349251416c750076bd", "cast_id": 45, "profile_path": "/u6VUTGmbaSt0LfvbXMoY1P2weh8.jpg", "order": 13}, {"name": "Laura Brent", "character": "Liliandil", "id": 962438, "credit_id": "52fe43349251416c750076c1", "cast_id": 46, "profile_path": null, "order": 14}, {"name": "Anna Popplewell", "character": "Susan Pevensie", "id": 5529, "credit_id": "52fe43349251416c750076c5", "cast_id": 47, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 15}, {"name": "William Moseley", "character": "Peter Pevensie", "id": 5528, "credit_id": "52fe43349251416c750076c9", "cast_id": 48, "profile_path": "/zBJ00uNw4nK0gFetNfnVmbGC5ly.jpg", "order": 16}, {"name": "Liam Neeson", "character": "Aslan", "id": 3896, "credit_id": "547e3f6b9251411f4e0051c4", "cast_id": 49, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 17}], "directors": [{"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe43349251416c7500761d", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.0, "runtime": 113}, "11690": {"poster_path": "/oIOzNshRATOn6LiD4GEhznVHYd9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11806119, "overview": "Frank Dux has entered the \"kumite\", an illegal underground martial-arts competition where serious injury and even death are not unknown. Chong Li, a particularly ruthless and vicious fighter is the favorite, but then again Dux has not fought him yet.", "video": false, "id": 11690, "genres": [{"id": 28, "name": "Action"}], "title": "Bloodsport", "tagline": "The true story of an American ninja.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/1DXtjAAaK7597GV5MSZH6nn0uqS.jpg", "poster_path": "/sTqv7FQalXNVGSpfSJaWek077w9.jpg", "id": 36694, "name": "Bloodsport Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0092675", "adult": false, "backdrop_path": "/5xrZTFHhAdlg0WtjkkGDqf4Knck.jpg", "production_companies": [{"name": "Cannon Films", "id": 4110}], "release_date": "1988-02-26", "popularity": 1.32233773943159, "original_title": "Bloodsport", "budget": 1500000, "cast": [{"name": "Jean-Claude Van Damme", "character": "Frank Dux", "id": 15111, "credit_id": "52fe447a9251416c750361e3", "cast_id": 11, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Donald Gibb", "character": "Ray Jackson", "id": 70254, "credit_id": "52fe447a9251416c750361e7", "cast_id": 12, "profile_path": "/drLNhfpcY1A8WxTVUE05ja47K9q.jpg", "order": 1}, {"name": "Ken Siu", "character": "Victor Lin (as Kenneth Siu)", "id": 70255, "credit_id": "52fe447a9251416c750361eb", "cast_id": 13, "profile_path": "/iwVzP5JgHifEPu8VqE0GZRwmN8h.jpg", "order": 2}, {"name": "Bolo Yeung", "character": "Chong Li", "id": 58123, "credit_id": "52fe447a9251416c750361ef", "cast_id": 14, "profile_path": "/kChDa118ic0VcUo9kPMX7KsLzxG.jpg", "order": 3}, {"name": "Leah Ayres", "character": "Janice Kent", "id": 114809, "credit_id": "52fe447a9251416c750361f9", "cast_id": 16, "profile_path": "/1LF7Ldvr9gKYKHBwXAT1UT6HEqs.jpg", "order": 4}, {"name": "Norman Burton", "character": "Helmer", "id": 10195, "credit_id": "52fe447a9251416c750361fd", "cast_id": 17, "profile_path": "/ezoKMuCDcWSnDaB5pVWMyj21E6H.jpg", "order": 5}, {"name": "Forest Whitaker", "character": "Rawlins", "id": 2178, "credit_id": "52fe447a9251416c75036201", "cast_id": 18, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 6}, {"name": "Roy Chiao", "character": "Senzo Tanaka", "id": 695, "credit_id": "52fe447a9251416c75036205", "cast_id": 19, "profile_path": "/6gBxdImc8eGHeDDEJGFiGrIwx6O.jpg", "order": 7}, {"name": "Philip Chan Yan-Kin", "character": "Captain Chen", "id": 70591, "credit_id": "52fe447a9251416c75036209", "cast_id": 20, "profile_path": "/n1o0tAeQgZWJkJJZKkhIcP6PIjC.jpg", "order": 8}], "directors": [{"name": "Newt Arnold", "department": "Directing", "job": "Director", "credit_id": "52fe447a9251416c750361af", "profile_path": null, "id": 70250}], "vote_average": 6.4, "runtime": 92}, "254473": {"poster_path": "/v6M79FGu0G9KSR7bvXL76NbwyqC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "In the criminal underworld of Detroit, the streets are overrun with violence and drugs and the hand of corruption reaches into the lives of everyone; well almost everyone. For Lino (David Belle) every day is a fight to live an honest life. But when a drug lord kidnaps his girlfriend, Lino is forced to team up with Damien Collier (Paul Walker), an undercover cop who\u2019s been tracking this king pin's involvement in something even more sinister \u2013 a plot to devastate the entire city. Together they uncover a trail of corruption that leads all the way to the top.", "video": false, "id": 254473, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Brick Mansions", "tagline": "Undercover and never Outgunned", "vote_count": 235, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430612", "adult": false, "backdrop_path": "/cmVWRQn2zKPL7NEViKkWOepLM6s.jpg", "production_companies": [{"name": "D8", "id": 32999}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 23616}], "release_date": "2014-04-25", "popularity": 1.4215603280552, "original_title": "Brick Mansions", "budget": 0, "cast": [{"name": "Paul Walker", "character": "Damien", "id": 8167, "credit_id": "52fe4ebd9251416c9113c0ef", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "David Belle", "character": "Lino", "id": 62439, "credit_id": "52fe4ebd9251416c9113c0f3", "cast_id": 2, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 1}, {"name": "RZA", "character": "Tremaine", "id": 150, "credit_id": "52fe4ebd9251416c9113c0f7", "cast_id": 3, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 2}, {"name": "Robert Maillet", "character": "Yeti", "id": 112692, "credit_id": "52fe4ebd9251416c9113c0fb", "cast_id": 4, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 3}, {"name": "Carlo Rota", "character": "George the Greek", "id": 54793, "credit_id": "52fe4ebd9251416c9113c0ff", "cast_id": 5, "profile_path": "/arfSlKjQqBWV77Tyu0jjASnvFII.jpg", "order": 4}, {"name": "Kalinka Petrie", "character": "Mayor's Assistant", "id": 1287272, "credit_id": "52fe4ebd9251416c9113c103", "cast_id": 6, "profile_path": "/8luaF8DGCVJqU9UdJSp5Oy7sddn.jpg", "order": 5}, {"name": "Bruce Ramsay", "character": "Mayor", "id": 7039, "credit_id": "52fe4ebd9251416c9113c107", "cast_id": 7, "profile_path": "/o1x3V0eLGQW5B78etUuTIxvcvrH.jpg", "order": 6}, {"name": "Kwasi Songui", "character": "Big Cecil", "id": 207881, "credit_id": "52fe4ebd9251416c9113c10b", "cast_id": 8, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 7}, {"name": "Catalina Denis", "character": "Lola", "id": 113613, "credit_id": "52fe4ebd9251416c9113c10f", "cast_id": 9, "profile_path": "/1oHB2i3Wqt30nyzgSmXURYl6Xa0.jpg", "order": 8}, {"name": "Ayisha Issa", "character": "Rayzah", "id": 231517, "credit_id": "52fe4ebd9251416c9113c113", "cast_id": 10, "profile_path": "/lCrVPwyBgXDBvuwY7NTwZpG8FYu.jpg", "order": 9}, {"name": "Jade Hassoun\u00e9", "character": "Peter", "id": 1063927, "credit_id": "52fe4ebd9251416c9113c117", "cast_id": 11, "profile_path": null, "order": 10}], "directors": [{"name": "Camille Delamarre", "department": "Directing", "job": "Director", "credit_id": "52fe4ebd9251416c9113c11d", "profile_path": null, "id": 928490}], "vote_average": 5.7, "runtime": 90}, "11697": {"poster_path": "/acDlmsvUjuD5E2nmf5QWIu1EfPX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8000000, "overview": "A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.", "video": false, "id": 11697, "genres": [{"id": 37, "name": "Western"}], "title": "The Man Who Shot Liberty Valance", "tagline": "Together For The First Time - James Stewart - John Wayne - in the masterpiece of four-time Academy Award winner John Ford", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0056217", "adult": false, "backdrop_path": "/i5BVAFExVw7IyohdXF8sUcP3Ha0.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "John Ford Productions", "id": 10698}], "release_date": "1962-04-22", "popularity": 0.449782937003921, "original_title": "The Man Who Shot Liberty Valance", "budget": 3200000, "cast": [{"name": "John Wayne", "character": "Tom Doniphon", "id": 4165, "credit_id": "52fe447b9251416c750364df", "cast_id": 1, "profile_path": "/8I83wLVUil6tIe50yb82LdEggFR.jpg", "order": 0}, {"name": "James Stewart", "character": "Ransom Stoddard", "id": 854, "credit_id": "52fe447b9251416c750364e3", "cast_id": 2, "profile_path": "/8Obb4uScBA1IvgkX4S90HCT9W1B.jpg", "order": 1}, {"name": "Vera Miles", "character": "Hallie Stoddard", "id": 7303, "credit_id": "52fe447b9251416c750364e7", "cast_id": 3, "profile_path": "/qWP9L969DOSFgBhRV2Ik2ve8Z4r.jpg", "order": 2}, {"name": "Lee Marvin", "character": "Liberty Valance", "id": 18391, "credit_id": "52fe447b9251416c750364eb", "cast_id": 4, "profile_path": "/1UdUtkWNbgU0pTolZKRkwLBLSUt.jpg", "order": 3}, {"name": "Edmond O'Brien", "character": "Dutton Peabody", "id": 8254, "credit_id": "52fe447b9251416c7503651f", "cast_id": 13, "profile_path": "/w3xvMmH5WfHZ5y7ldeIdX2oghVN.jpg", "order": 4}, {"name": "Andy Devine", "character": "Marshal Link Appleyard", "id": 14966, "credit_id": "52fe447b9251416c75036523", "cast_id": 14, "profile_path": "/w4tLltNhtOqQXJzju4TzUJRiesg.jpg", "order": 5}, {"name": "Ken Murray", "character": "Doc Willoughby", "id": 176543, "credit_id": "52fe447b9251416c75036527", "cast_id": 15, "profile_path": "/aW4Nngi8baf4sOHs7hwMIUZ5yDW.jpg", "order": 6}, {"name": "John Carradine", "character": "Maj. Cassius Starbuckle", "id": 8516, "credit_id": "52fe447b9251416c7503652b", "cast_id": 16, "profile_path": "/iWHObxmwHuUS7g4uJFT2SS2hHXu.jpg", "order": 7}, {"name": "Jeanette Nolan", "character": "Nora Ericson", "id": 7520, "credit_id": "52fe447b9251416c7503652f", "cast_id": 17, "profile_path": "/in4uR0n86hji138drdN7kHhGpTI.jpg", "order": 8}, {"name": "John Qualen", "character": "Peter Ericson", "id": 4119, "credit_id": "52fe447b9251416c75036533", "cast_id": 18, "profile_path": "/nbXFHZo4TUpNnFGnADXfPwQIvEn.jpg", "order": 9}, {"name": "Willis Bouchey", "character": "Jason Tully - Conductor", "id": 83149, "credit_id": "52fe447b9251416c75036537", "cast_id": 19, "profile_path": "/uHmTJiyR6srsiQRJct7cUlwibCd.jpg", "order": 10}, {"name": "Carleton Young", "character": "Maxwell Scott", "id": 2098, "credit_id": "52fe447b9251416c7503653b", "cast_id": 20, "profile_path": "/lqKVSnYegb7WprJk2bcSuzSqGas.jpg", "order": 11}, {"name": "Woody Strode", "character": "Pompey", "id": 4963, "credit_id": "52fe447b9251416c7503653f", "cast_id": 21, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 12}, {"name": "Denver Pyle", "character": "Amos Carruthers", "id": 6462, "credit_id": "52fe447b9251416c75036543", "cast_id": 22, "profile_path": "/cnO648FW7r1NQqHZsPkJBACfXal.jpg", "order": 13}, {"name": "Strother Martin", "character": "Floyd", "id": 8260, "credit_id": "52fe447b9251416c75036547", "cast_id": 23, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 14}, {"name": "Lee Van Cleef", "character": "Reese", "id": 4078, "credit_id": "5377dd18c3a3685542002286", "cast_id": 27, "profile_path": "/paZGeTVO8fAGwEexpXoaoXYUaSW.jpg", "order": 15}], "directors": [{"name": "John Ford", "department": "Directing", "job": "Director", "credit_id": "52fe447b9251416c750364f1", "profile_path": "/nwkPz2ytSBiv1zFhrcg4kYJIK3d.jpg", "id": 8500}], "vote_average": 6.6, "runtime": 123}, "77234": {"poster_path": "/71KAIi3vVEHtjwrLVLtkBUiLEGg.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the moral values of a longtime wetwork black ops agent is tested during his last operation, he receives an unfavorable psych evaluation. Now he is given a break and a seemingly uncomplicated assignment of simply protecting the security of a young female code announcer, code resources and remote station they are assigned to. After an ambush and one phone call later, it becomes a complicated fight for their survival.", "video": false, "id": 77234, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Numbers Station", "tagline": "The code has never been compromised. Until now.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1659338", "adult": false, "backdrop_path": "/urZuFzVm9rmjcHWeGgYeauNc0Wu.jpg", "production_companies": [{"name": "ContentFilm", "id": 1420}, {"name": "Echo Lake Entertainment", "id": 22308}, {"name": "Piccadilly Pictures", "id": 22309}, {"name": "Atlantic Swiss Productions", "id": 22310}, {"name": "Blue Lake Media Fund", "id": 22311}, {"name": "Furst Films", "id": 3135}, {"name": "Matador Pictures", "id": 707}, {"name": "uFilm", "id": 8676}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}], "release_date": "2013-04-26", "popularity": 0.668816156707696, "original_title": "The Numbers Station", "budget": 10000000, "cast": [{"name": "John Cusack", "character": "Emerson", "id": 3036, "credit_id": "52fe4963c3a368484e128d6d", "cast_id": 2, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Katherine", "id": 50463, "credit_id": "52fe4963c3a368484e128d71", "cast_id": 3, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Hannah Murray", "character": "Rachel Davis", "id": 213395, "credit_id": "52fe4963c3a368484e128d75", "cast_id": 4, "profile_path": "/k8jpr1JwRcIFUp3l2Ugs1QulQbB.jpg", "order": 2}, {"name": "Liam Cunningham", "character": "Grey", "id": 15498, "credit_id": "52fe4963c3a368484e128d79", "cast_id": 5, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 3}, {"name": "Lucy Griffiths", "character": "Meredith", "id": 205257, "credit_id": "52fe4963c3a368484e128d7d", "cast_id": 6, "profile_path": "/haPj7VrjPPZJITPup5gQNKBM7mV.jpg", "order": 4}, {"name": "Bryan Dick", "character": "David", "id": 47703, "credit_id": "52fe4963c3a368484e128d81", "cast_id": 7, "profile_path": "/1kBfn4B2bELdID5af1DYK2AU73M.jpg", "order": 5}, {"name": "Richard Brake", "character": "Max", "id": 3901, "credit_id": "52fe4963c3a368484e128d85", "cast_id": 8, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 6}], "directors": [{"name": "Kasper Barfoed", "department": "Directing", "job": "Director", "credit_id": "52fe4963c3a368484e128d69", "profile_path": null, "id": 145867}], "vote_average": 5.5, "runtime": 90}, "11699": {"poster_path": "/aznE6p9hytgOXHOw6Pq9hStuPtz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10589102, "overview": "Terrence McDonagh, a New Orleans Police sergeant, who starts out as a good cop, receiving a medal and a promotion to lieutenant for heroism during Hurricane Katrina. During his heroic act, McDonagh injures his back and later becomes addicted to prescription pain medication. McDonagh finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants.", "video": false, "id": 11699, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Bad Lieutenant: Port of Call - New Orleans", "tagline": "The only criminal he can't catch is himself.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1095217", "adult": false, "backdrop_path": "/5d8D1wjhHM3iSo8lAb63wV5cGvW.jpg", "production_companies": [{"name": "Nu Image Films", "id": 925}, {"name": "Millennium Films", "id": 10254}, {"name": "Edward R. Pressman Film", "id": 6455}, {"name": "Saturn Films", "id": 831}, {"name": "Polsky Films", "id": 10478}, {"name": "Osiris Productions", "id": 11265}, {"name": "Lieutenant Productions", "id": 11266}], "release_date": "2009-11-20", "popularity": 0.56441801266418, "original_title": "The Bad Lieutenant: Port of Call - New Orleans", "budget": 25000000, "cast": [{"name": "Nicolas Cage", "character": "Terence McDonagh", "id": 2963, "credit_id": "52fe447b9251416c750365f9", "cast_id": 15, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 2}, {"name": "Eva Mendes", "character": "Frankie Donnenfeld", "id": 8170, "credit_id": "52fe447b9251416c75036601", "cast_id": 17, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Val Kilmer", "character": "Stevie Pruit", "id": 5576, "credit_id": "52fe447b9251416c750365fd", "cast_id": 16, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 3}, {"name": "Fairuza Balk", "character": "Heidi", "id": 826, "credit_id": "52fe447b9251416c7503660b", "cast_id": 20, "profile_path": "/cpeniV326TyPyzryxgbAWiXmLkz.jpg", "order": 4}, {"name": "Shawn Hatosy", "character": "Armand Benoit", "id": 52647, "credit_id": "52fe447b9251416c7503660f", "cast_id": 21, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 5}, {"name": "Jennifer Coolidge", "character": "Genvieve", "id": 38334, "credit_id": "52fe447b9251416c75036613", "cast_id": 22, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 6}, {"name": "Tom Bower", "character": "Pat McDonagh", "id": 19453, "credit_id": "52fe447b9251416c75036617", "cast_id": 23, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 7}, {"name": "Vondie Curtis-Hall", "character": "Captain James Brasser", "id": 6198, "credit_id": "52fe447b9251416c7503661b", "cast_id": 24, "profile_path": "/tH7QvQ9ST9zLuZZsTHzxMXkgtIy.jpg", "order": 8}, {"name": "Irma P. Hall", "character": "Binnie Rogers", "id": 43853, "credit_id": "52fe447b9251416c7503661f", "cast_id": 26, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 10}, {"name": "Shea Whigham", "character": "Justin", "id": 74242, "credit_id": "52fe447b9251416c75036623", "cast_id": 27, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 11}, {"name": "Michael Shannon", "character": "Mundt", "id": 335, "credit_id": "52fe447c9251416c75036651", "cast_id": 36, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 12}, {"name": "Brad Dourif", "character": "Ned Schoenholtz", "id": 1370, "credit_id": "52fe447c9251416c75036655", "cast_id": 37, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 13}, {"name": "Xzibit", "character": "Big Fate", "id": 336, "credit_id": "52fe447c9251416c7503669b", "cast_id": 49, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 14}], "directors": [{"name": "Werner Herzog", "department": "Directing", "job": "Director", "credit_id": "52fe447b9251416c750365f5", "profile_path": "/uzVcWEmasjz1Wl7w5mBF5vmmHlK.jpg", "id": 6818}], "vote_average": 5.6, "runtime": 122}, "3509": {"poster_path": "/wS0QhF2RTwap84BKGr9hKHzNAMx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5480996, "overview": "An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.", "video": false, "id": 3509, "genres": [{"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "A Scanner Darkly", "tagline": "Everything Is Not Going To Be OK", "vote_count": 125, "homepage": "http://www.warnerbros.com/movies/home-entertainment/scanner-darkly-a/d7c290af-c285-41c4-a4d6-efb3a86b3893.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405296", "adult": false, "backdrop_path": "/mjTAZvlmhSyqcpMSfkgGE1iEViT.jpg", "production_companies": [{"name": "Warner Independent Pictures (WIP)", "id": 11509}, {"name": "Thousand Words", "id": 380}, {"name": "Detour Filmproduction", "id": 11510}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2006-07-07", "popularity": 0.820892397327655, "original_title": "A Scanner Darkly", "budget": 8500000, "cast": [{"name": "Keanu Reeves", "character": "Fred/Bob Arctor", "id": 6384, "credit_id": "52fe4397c3a36847f8060009", "cast_id": 1, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Donna Hawthorne", "id": 1920, "credit_id": "52fe4397c3a36847f8060055", "cast_id": 17, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Ernie Luckman", "id": 57755, "credit_id": "52fe4397c3a36847f8060059", "cast_id": 18, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "Robert Downey Jr.", "character": "James Barris", "id": 3223, "credit_id": "52fe4397c3a36847f80600af", "cast_id": 35, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 3}, {"name": "Mitch Baker", "character": "Brown Bear Lodge Host", "id": 32238, "credit_id": "52fe4397c3a36847f806005d", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Steven Chester Prince", "character": "Cop", "id": 32239, "credit_id": "52fe4397c3a36847f8060061", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Natasha Valdez", "character": "Waitress", "id": 32240, "credit_id": "52fe4397c3a36847f8060065", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Angela Rawna", "character": "Doctor 1", "id": 32241, "credit_id": "52fe4397c3a36847f8060069", "cast_id": 22, "profile_path": "/pUrAKgwIORAglzoCYtnWGJPnOfB.jpg", "order": 7}, {"name": "Chamblee Ferguson", "character": "Doctor 2", "id": 32242, "credit_id": "52fe4397c3a36847f806006d", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Melody Chase", "character": "Arctor's Wife", "id": 32243, "credit_id": "52fe4397c3a36847f8060071", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Rory Cochrane", "character": "Charles Freck", "id": 51792, "credit_id": "52fe4397c3a36847f8060075", "cast_id": 25, "profile_path": "/nSwd3TTKPCgZyuO5DqGAzAXQUnF.jpg", "order": 10}], "directors": [{"name": "Richard Linklater", "department": "Directing", "job": "Director", "credit_id": "52fe4397c3a36847f806000f", "profile_path": "/ypiAch9og80uE5hnVBAyXXtY4B1.jpg", "id": 564}], "vote_average": 6.7, "runtime": 100}, "82505": {"poster_path": "/847sqy3lbPmtA3rWwghSaWmkxtf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A mother and daughter move to a new town and find themselves living next door to a house where a young girl murdered her parents. When the daughter befriends the surviving son, she learns the story is far from over.", "video": false, "id": 82505, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "House at the End of the Street", "tagline": "Fear reaches out... for the girl next door.", "vote_count": 163, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1582507", "adult": false, "backdrop_path": "/xRfK7mUyMx9a0tGIc7NiHts2mgd.jpg", "production_companies": [{"name": "A Bigger Boat", "id": 5855}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Relativity Media", "id": 7295}], "release_date": "2012-09-21", "popularity": 0.831889459936302, "original_title": "House at the End of the Street", "budget": 6900000, "cast": [{"name": "Jennifer Lawrence", "character": "Elissa", "id": 72129, "credit_id": "52fe48589251416c9108903f", "cast_id": 8, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Max Thieriot", "character": "Ryan", "id": 41883, "credit_id": "52fe48589251416c91089037", "cast_id": 6, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 1}, {"name": "Elisabeth Shue", "character": "Sarah", "id": 1951, "credit_id": "52fe48589251416c9108903b", "cast_id": 7, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 2}, {"name": "Gil Bellows", "character": "Weaver", "id": 6575, "credit_id": "52fe48589251416c91089049", "cast_id": 10, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 3}, {"name": "Nolan Gerard Funk", "character": "Tyler Reynolds", "id": 82819, "credit_id": "52fe48589251416c9108904d", "cast_id": 11, "profile_path": "/ngXbdQRDXQRWpHgWrrjyunWMKai.jpg", "order": 4}, {"name": "Krista Bridges", "character": "Mary Jacobson", "id": 43257, "credit_id": "52fe48589251416c91089051", "cast_id": 12, "profile_path": "/pikldnlwHpuxEKQGiVJHIOB3O8w.jpg", "order": 5}, {"name": "Jonathan Malen", "character": "Ray", "id": 116638, "credit_id": "52fe48589251416c91089055", "cast_id": 13, "profile_path": "/7JyXJnXZ1327otRcmGG3OdfbqMK.jpg", "order": 6}, {"name": "Joy Tanner", "character": "Bonnie Reynolds", "id": 168615, "credit_id": "52fe48589251416c91089059", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Allie MacDonald", "character": "Jillian", "id": 226833, "credit_id": "52fe48589251416c9108905d", "cast_id": 15, "profile_path": "/mr8tHCQqhCqD46ssvqOXc66AzIF.jpg", "order": 8}, {"name": "Jon McLaren", "character": "Zak", "id": 225418, "credit_id": "52fe48589251416c91089061", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jordan Hayes", "character": "Penn State Carrie Anne", "id": 239464, "credit_id": "52fe48589251416c91089065", "cast_id": 17, "profile_path": "/aWV8O05SJuYRJ1ZZqUJ9YNdgoBh.jpg", "order": 10}, {"name": "Will Seatle Bowes", "character": "Robbie", "id": 224724, "credit_id": "52fe48589251416c91089069", "cast_id": 18, "profile_path": "/ifgJ4S5QH1m7PUgNZ823zyCeh7q.jpg", "order": 11}, {"name": "James Thomas", "character": "Ben Reynolds", "id": 210725, "credit_id": "52fe48589251416c9108906d", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Eva Link", "character": "Carrie Anne", "id": 1133027, "credit_id": "52fe48589251416c91089071", "cast_id": 20, "profile_path": null, "order": 13}], "directors": [{"name": "Mark Tonderai", "department": "Directing", "job": "Director", "credit_id": "52fe48589251416c9108901b", "profile_path": "/uDfYWgrwCZbsUIR8CvI9fG0eTnk.jpg", "id": 86482}], "vote_average": 5.7, "runtime": 101}, "19898": {"poster_path": "/qFd7dNvV1neXBV5OZdU5jOhdDZ6.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone - and the reality of their situation is more horrifying than they could have imagined.", "video": false, "id": 19898, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Pandorum", "tagline": "Don't fear the end of the world. Fear what happens next.", "vote_count": 181, "homepage": "http://www.pandorummovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1188729", "adult": false, "backdrop_path": "/srxnkz09MEB2ow59FnC7VHQIaAQ.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Constantin Film Produktion", "id": 5755}], "release_date": "2009-09-08", "popularity": 0.834948675243875, "original_title": "Pandorum", "budget": 40000000, "cast": [{"name": "Ben Foster", "character": "Bower", "id": 11107, "credit_id": "52fe47f69251416c750ab593", "cast_id": 1, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Payton", "id": 6065, "credit_id": "52fe47f69251416c750ab597", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Cam Gigandet", "character": "Gallo", "id": 55086, "credit_id": "52fe47f69251416c750ab59b", "cast_id": 3, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 2}, {"name": "Antje Traue", "character": "Nadia", "id": 43202, "credit_id": "52fe47f69251416c750ab5a5", "cast_id": 5, "profile_path": "/xWbtFJyN8ynIpdKNCB0KpsKldM7.jpg", "order": 3}, {"name": "Cung Le", "character": "Manh", "id": 116637, "credit_id": "52fe47f69251416c750ab5a9", "cast_id": 6, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 4}, {"name": "Eddie Rouse", "character": "Leland", "id": 79419, "credit_id": "52fe47f69251416c750ab5ad", "cast_id": 7, "profile_path": "/9SQXQBYsnMaLtsXx3Baxye8JVon.jpg", "order": 5}, {"name": "Norman Reedus", "character": "Shepard", "id": 4886, "credit_id": "52fe47f69251416c750ab5b1", "cast_id": 8, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 6}, {"name": "Andr\u00e9 Hennicke", "character": "Hunter Leader", "id": 1846, "credit_id": "52fe47f69251416c750ab5b5", "cast_id": 9, "profile_path": "/7cjb7ckyLpEFO7uD9mR5g0Yahwv.jpg", "order": 7}, {"name": "Friederike Kempter", "character": "Evalon", "id": 28273, "credit_id": "52fe47f69251416c750ab5b9", "cast_id": 10, "profile_path": "/k6RXPsZA62S8yYcSKYwnOVvz1Kn.jpg", "order": 8}, {"name": "Niels-Bruno Schmidt", "character": "Insane Officer 'Eden'", "id": 46216, "credit_id": "52fe47f69251416c750ab5bd", "cast_id": 11, "profile_path": "/yiA2dfWszlYl86MjdCvvAiTiATF.jpg", "order": 9}, {"name": "Asia Luna Mohmand", "character": "Child Hunter", "id": 132181, "credit_id": "52fe47f69251416c750ab5c1", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Delphine Chuillot", "character": "Young Bower's Mother", "id": 132182, "credit_id": "52fe47f69251416c750ab5c5", "cast_id": 13, "profile_path": "/49SIT9sfWXwGWDWqtQUyjt0gtdG.jpg", "order": 11}, {"name": "Wotan Wilke M\u00f6hring", "character": "Young Bower's Father", "id": 7805, "credit_id": "52fe47f69251416c750ab5c9", "cast_id": 14, "profile_path": "/xHqMmUZ2b4RgRfsdIvcVcQUMl7V.jpg", "order": 12}, {"name": "Julian Rappe", "character": "Young Bower", "id": 132183, "credit_id": "52fe47f69251416c750ab5cd", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Domenico D'Ambrosio", "character": "Wounded Officer 'Eden'", "id": 73539, "credit_id": "52fe47f69251416c750ab5d1", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Jon Foster", "character": "Big Russian Passenger", "id": 20132, "credit_id": "52fe47f69251416c750ab5d5", "cast_id": 17, "profile_path": "/kCYgj6ZMP7oUWGAHBrl0IBszLEH.jpg", "order": 15}, {"name": "Jeff Burrell", "character": "Trapped Officer 'Eden'", "id": 49491, "credit_id": "52fe47f69251416c750ab5d9", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Neelesha BaVora", "character": "Female Crew Officer", "id": 48883, "credit_id": "52fe47f69251416c750ab5dd", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Yangzom Brauen", "character": "2nd Lieutenant (Team 4)", "id": 54023, "credit_id": "52fe47f69251416c750ab5e1", "cast_id": 20, "profile_path": "/zkfnDTHu7zU1Qwq2LIktdYTt7k1.jpg", "order": 18}, {"name": "Marco Albrecht", "character": "Hunter Weasel", "id": 132184, "credit_id": "52fe47f69251416c750ab5e5", "cast_id": 21, "profile_path": null, "order": 19}, {"name": "Dawid Szatarski", "character": "Hunter Shape", "id": 132185, "credit_id": "52fe47f69251416c750ab5e9", "cast_id": 22, "profile_path": null, "order": 20}, {"name": "Nico Marquardt", "character": "Hunter Brute", "id": 132186, "credit_id": "52fe47f69251416c750ab5ed", "cast_id": 23, "profile_path": null, "order": 21}, {"name": "Don Jeanes", "character": "Mateo (uncredited)", "id": 132187, "credit_id": "52fe47f69251416c750ab5f1", "cast_id": 24, "profile_path": null, "order": 22}, {"name": "David P. Johnson", "character": "Cooper (uncredited)", "id": 116243, "credit_id": "52fe47f69251416c750ab5f5", "cast_id": 25, "profile_path": null, "order": 23}], "directors": [{"name": "Christian Alvart", "department": "Directing", "job": "Director", "credit_id": "52fe47f69251416c750ab5a1", "profile_path": null, "id": 54559}], "vote_average": 6.4, "runtime": 108}, "19899": {"poster_path": "/6mdsH9XA2u4jnVKwWlKE1Mg2OQM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171844840, "overview": "Four couples, all friends, descend on a tropical island resort. Though one husband and wife are there to work on their marriage, the others just want to enjoy some fun in the sun. They soon find, however, that paradise comes at a price: Participation in couples therapy sessions is mandatory. What started out as a cut-rate vacation turns into an examination of the common problems many face.", "video": false, "id": 19899, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Couples Retreat", "tagline": "It may be paradise... but it's no vacation.", "vote_count": 191, "homepage": "http://www.couplesretreatmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1078940", "adult": false, "backdrop_path": "/8NDf9WGgv2glSslJdzK63Sbdwzy.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2009-09-19", "popularity": 0.748962841628151, "original_title": "Couples Retreat", "budget": 70000000, "cast": [{"name": "Vince Vaughn", "character": "Dave", "id": 4937, "credit_id": "52fe47f79251416c750ab685", "cast_id": 8, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Ronnie", "id": 50463, "credit_id": "52fe47f79251416c750ab67d", "cast_id": 6, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Jason Bateman", "character": "Jason", "id": 23532, "credit_id": "52fe47f79251416c750ab679", "cast_id": 5, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 2}, {"name": "Kristen Bell", "character": "Cynthia", "id": 40462, "credit_id": "52fe47f79251416c750ab681", "cast_id": 7, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 3}, {"name": "Jon Favreau", "character": "Joey", "id": 15277, "credit_id": "52fe47f79251416c750ab689", "cast_id": 9, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 4}, {"name": "Ken Jeong", "character": "Therapist #2", "id": 83586, "credit_id": "52fe47f79251416c750ab68d", "cast_id": 10, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 5}, {"name": "Kristin Davis", "character": "Lucy", "id": 38025, "credit_id": "52fe47f79251416c750ab691", "cast_id": 11, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 6}, {"name": "John Michael Higgins", "character": "Therapist #1", "id": 8265, "credit_id": "52fe47f79251416c750ab695", "cast_id": 13, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 7}, {"name": "Tasha Smith", "character": "Jennifer", "id": 74610, "credit_id": "52fe47f79251416c750ab699", "cast_id": 14, "profile_path": "/9WOYRySKNSnlDTiREXHEQbWHJTv.jpg", "order": 8}, {"name": "Faizon Love", "character": "Shane", "id": 62066, "credit_id": "52fe47f79251416c750ab69d", "cast_id": 15, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 9}, {"name": "Temuera Morrison", "character": "Briggs", "id": 7242, "credit_id": "52fe47f79251416c750ab6a1", "cast_id": 16, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 10}, {"name": "Peter Serafinowicz", "character": "Sctanley", "id": 11115, "credit_id": "52fe47f79251416c750ab6a5", "cast_id": 17, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 11}, {"name": "Karen David", "character": "Spa Attendant", "id": 79124, "credit_id": "52fe47f79251416c750ab6a9", "cast_id": 18, "profile_path": "/pBR1dQvCEBpRaaL6dF8L9FtfJE8.jpg", "order": 12}, {"name": "Carlos Ponce", "character": "Salvadore", "id": 62067, "credit_id": "52fe47f79251416c750ab6ad", "cast_id": 19, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 13}, {"name": "Kali Hawk", "character": "Trudy", "id": 89462, "credit_id": "52fe47f79251416c750ab6b1", "cast_id": 20, "profile_path": "/kx8aBd8FcC1gqWQ2OMV63hFza2Z.jpg", "order": 14}, {"name": "Jean Reno", "character": "Marcel", "id": 1003, "credit_id": "52fe47f79251416c750ab6b5", "cast_id": 21, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 15}, {"name": "Alexis Knapp", "character": "San Diego Dance Academy", "id": 999790, "credit_id": "52fe47f79251416c750ab6b9", "cast_id": 22, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 16}], "directors": [{"name": "Peter Billingsley", "department": "Directing", "job": "Director", "credit_id": "52fe47f79251416c750ab663", "profile_path": "/2wlX6TzKnghrZHIdbtA2oKxKHcv.jpg", "id": 12708}], "vote_average": 5.3, "runtime": 113}, "19901": {"poster_path": "/nthJ3bjrx5zLOgAIxq9Fm4vBNwi.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 51416464, "overview": "In the year 2019, a plague has transformed almost every human into vampires. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.", "video": false, "id": 19901, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Daybreakers", "tagline": "In 2019, The Most Precious Natural Resource... Is Us.", "vote_count": 215, "homepage": "http://www.daybreakersmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433362", "adult": false, "backdrop_path": "/jjTK7kQS0LBU8GNZlUvlRK0dR1h.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Australian Film Finance Corporation (AFFC)", "id": 8724}, {"name": "Pictures in Paradise", "id": 3207}, {"name": "Pacific Film and Television Commission", "id": 4024}, {"name": "Furst Films", "id": 3135}], "release_date": "2009-10-01", "popularity": 0.822420905483091, "original_title": "Daybreakers", "budget": 20000000, "cast": [{"name": "Ethan Hawke", "character": "Edward Dalton", "id": 569, "credit_id": "52fe47f79251416c750ab745", "cast_id": 3, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Sam Neill", "character": "Charles Bromley", "id": 4783, "credit_id": "52fe47f79251416c750ab749", "cast_id": 4, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 1}, {"name": "Willem Dafoe", "character": "Lionel 'Elvis' Cormac", "id": 5293, "credit_id": "52fe47f79251416c750ab74d", "cast_id": 5, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 2}, {"name": "Claudia Karvan", "character": "Audrey Bennett", "id": 79966, "credit_id": "52fe47f79251416c750ab751", "cast_id": 6, "profile_path": "/8o2xMWxL9SkkxXrJOGI8THZhS8Q.jpg", "order": 3}, {"name": "Isabel Lucas", "character": "Alison Bromley", "id": 103554, "credit_id": "52fe47f79251416c750ab755", "cast_id": 7, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 4}, {"name": "Vince Colosimo", "character": "Christopher Caruso", "id": 77496, "credit_id": "52fe47f79251416c750ab771", "cast_id": 13, "profile_path": "/q7sQhwMo5By0WIh8qpwHnzznSzf.jpg", "order": 5}, {"name": "Jay Laga'aia", "character": "Senator Turner", "id": 33182, "credit_id": "52fe47f79251416c750ab775", "cast_id": 14, "profile_path": "/7Q9iN9tmJveiUnJZZataTWNfL7i.jpg", "order": 6}, {"name": "Michael Dorman", "character": "Frankie Dalton", "id": 76068, "credit_id": "52fe47f79251416c750ab779", "cast_id": 15, "profile_path": "/4nx438tUqBtF7tQPAyMIGGxgSps.jpg", "order": 7}, {"name": "Harriet Minto-Day", "character": "Lisa Barrett", "id": 1121519, "credit_id": "52fe47f79251416c750ab7b9", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Tiffany Lamb", "character": "News Reader", "id": 61911, "credit_id": "547b4150c3a368379c00099a", "cast_id": 55, "profile_path": null, "order": 9}, {"name": "Mungo McKay", "character": "Colin Briggs", "id": 56496, "credit_id": "547b4194c3a36837900007da", "cast_id": 56, "profile_path": null, "order": 10}, {"name": "Emma Randall", "character": "Ellie Landon", "id": 125318, "credit_id": "547b41e39251413796000932", "cast_id": 57, "profile_path": null, "order": 11}, {"name": "Charlotte Wilson", "character": "Joy Watkins", "id": 1391737, "credit_id": "547b428992514137ab00090f", "cast_id": 58, "profile_path": null, "order": 12}, {"name": "Robyn Moore", "character": "Forensic Investigator Simms", "id": 1391738, "credit_id": "547b42b692514137990009db", "cast_id": 59, "profile_path": null, "order": 13}, {"name": "Christopher Kirby", "character": "Jarvis Bayom", "id": 75175, "credit_id": "547b42dd92514137a20009ff", "cast_id": 60, "profile_path": "/so9OxqBJDfCUp84Ja4PEMnWECAP.jpg", "order": 14}, {"name": "Isabel Lucas", "character": "Alison Bromley", "id": 103554, "credit_id": "547b42fb92514137ab000926", "cast_id": 61, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 15}, {"name": "Troy MacKinder", "character": "Officer Hobbs", "id": 1120664, "credit_id": "547b432992514137a5000a29", "cast_id": 62, "profile_path": null, "order": 16}], "directors": [{"name": "Michael Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe47f79251416c750ab73b", "profile_path": "/3Y2ofBarFPKzAlpC6GeEXC2rv0A.jpg", "id": 56501}, {"name": "Peter Spierig", "department": "Directing", "job": "Director", "credit_id": "52fe47f79251416c750ab741", "profile_path": null, "id": 56502}], "vote_average": 6.0, "runtime": 98}, "82507": {"poster_path": "/hrRYY7FcRc46Ue7h9jcKiW1xqJ3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77712439, "overview": "Found footage helps a true-crime novelist realize how and why a family was murdered in his new home, though his discoveries put his entire family in the path of a supernatural entity.", "video": false, "id": 82507, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Sinister", "tagline": "Once you see him, nothing can save you.", "vote_count": 385, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "br", "name": ""}], "imdb_id": "tt1922777", "adult": false, "backdrop_path": "/lAdRfK0Clun517bq5V0meoIx7SG.jpg", "production_companies": [{"name": "Automatik Entertainment", "id": 7625}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Alliance Films", "id": 2514}, {"name": "IM Global", "id": 7437}, {"name": "Possessed Pictures", "id": 23277}], "release_date": "2012-10-12", "popularity": 1.09185860375271, "original_title": "Sinister", "budget": 3000000, "cast": [{"name": "Ethan Hawke", "character": "Ellison", "id": 569, "credit_id": "52fe48589251416c910890b1", "cast_id": 3, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Vincent D'Onofrio", "character": "Professor Jonas", "id": 7132, "credit_id": "52fe48589251416c910890b5", "cast_id": 4, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 1}, {"name": "James Ransone", "character": "Deputy", "id": 5296, "credit_id": "52fe48589251416c910890b9", "cast_id": 5, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 2}, {"name": "Fred Thompson", "character": "Sheriff", "id": 17874, "credit_id": "52fe48589251416c910890bd", "cast_id": 6, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 3}, {"name": "Clare Foley", "character": "Ashley", "id": 928905, "credit_id": "52fe48589251416c910890c1", "cast_id": 7, "profile_path": "/9lF9tfWeyrwB2HKsNNDCZhxMV4H.jpg", "order": 4}, {"name": "Juliet Rylance", "character": "Tracy", "id": 928906, "credit_id": "52fe48589251416c910890c5", "cast_id": 8, "profile_path": "/jJUCOkRVDbPehhqbhQJAwuT1zdi.jpg", "order": 5}, {"name": "Cameron Ocasio", "character": "BBQ Son / Killer", "id": 928907, "credit_id": "52fe48589251416c910890c9", "cast_id": 9, "profile_path": "/2FATmhKGb5BM88j6tU2xio30S4W.jpg", "order": 6}, {"name": "Michael Hall D'Addario", "character": "Trevor", "id": 928908, "credit_id": "52fe48589251416c910890cd", "cast_id": 10, "profile_path": "/6fGwkMWbwHpY2Q5rujDhvBmakCo.jpg", "order": 7}, {"name": "Victoria Leigh", "character": "Stephanie", "id": 928909, "credit_id": "52fe48589251416c910890d1", "cast_id": 11, "profile_path": "/nf3JM5ZGrbv5pqunn9WqeaY60Xa.jpg", "order": 8}, {"name": "Blake Mizrahi", "character": "christopher Miller/sleepytime son", "id": 1017265, "credit_id": "52fe48589251416c910890d5", "cast_id": 12, "profile_path": "/5OMpzIvZcpm6pz6oKwO3GLBNUG0.jpg", "order": 9}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe48589251416c910890a7", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 6.5, "runtime": 110}, "19908": {"poster_path": "/uJvjGTLoF65GxlsakbaUbQDfZEA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102391382, "overview": "Columbus (Jesse Eisenberg) has made a habit of running from what scares him. Tallahassee (Woody Harrelson) doesn't have fears. If he did, he'd kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they're about to stare down the most terrifying prospect of all: each other.", "video": false, "id": 19908, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Zombieland", "tagline": "This place is so dead", "vote_count": 1122, "homepage": "http://www.zombieland.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1156398", "adult": false, "backdrop_path": "/lLgLFzSZduH9kBxrk6BvoHc1gg0.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2009-12-03", "popularity": 1.8036946828434, "original_title": "Zombieland", "budget": 23600000, "cast": [{"name": "Woody Harrelson", "character": "Tallahassee", "id": 57755, "credit_id": "52fe47f89251416c750ab943", "cast_id": 1, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Jesse Eisenberg", "character": "Columbus", "id": 44735, "credit_id": "52fe47f89251416c750ab947", "cast_id": 2, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 1}, {"name": "Emma Stone", "character": "Wichita", "id": 54693, "credit_id": "52fe47f89251416c750ab95d", "cast_id": 6, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 2}, {"name": "Abigail Breslin", "character": "Little Rock", "id": 17140, "credit_id": "52fe47f89251416c750ab961", "cast_id": 7, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 3}, {"name": "Bill Murray", "character": "Bill Murray", "id": 1532, "credit_id": "52fe47f89251416c750ab965", "cast_id": 8, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 4}, {"name": "Amber Heard", "character": "406", "id": 55085, "credit_id": "52fe47f89251416c750ab969", "cast_id": 9, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 5}, {"name": "Derek Graf", "character": "Clown Zombie", "id": 112119, "credit_id": "52fe47f89251416c750ab96d", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Justin Price", "character": "Sprint Zombie", "id": 933182, "credit_id": "53cb221a0e0a265dfc000d00", "cast_id": 17, "profile_path": "/iCNa9g6iL5NKnT1NFG9trxFXMrF.jpg", "order": 7}, {"name": "Mike White", "character": "Gas Station Attendant (uncredited)", "id": 17735, "credit_id": "54694acbeaeb816b46001d0e", "cast_id": 18, "profile_path": "/luxVflXHHRlRYt8oqSxno04JGy6.jpg", "order": 8}], "directors": [{"name": "Ruben Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe47f89251416c750ab94d", "profile_path": "/y001RIxie7Vk3qMW3oLSFkjO1IA.jpg", "id": 91268}], "vote_average": 7.0, "runtime": 88}, "134597": {"poster_path": "/3YyPWbxkOVRXNEukz03qcW2hXjW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6842058, "overview": "Arkin escapes with his life from the vicious grips of \"The Collector\" during an entrapment party where he adds beautiful Elena to his \"Collection.\" Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena's wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector's booby trapped warehouse and save Elena.", "video": false, "id": 134597, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Collection", "tagline": "Every great collector has a vision.", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4x4mtl1xgxIH5yxGr05L1WZeTjG.jpg", "poster_path": "/AhwErLgytU4ICqvvcIYbAM1xeeu.jpg", "id": 165369, "name": "The Collector Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748227", "adult": false, "backdrop_path": "/pToJnYKV3llPG6U9AWcgHZaEjDo.jpg", "production_companies": [{"name": "LD Entertainment", "id": 10285}, {"name": "Fortress Features", "id": 5176}], "release_date": "2012-09-21", "popularity": 0.290742180207543, "original_title": "The Collection", "budget": 0, "cast": [{"name": "Josh Stewart", "character": "Arkin", "id": 40039, "credit_id": "52fe4bd9c3a368484e19bd67", "cast_id": 4, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 0}, {"name": "Christopher McDonald", "character": "Mr. Peters", "id": 4443, "credit_id": "52fe4bd9c3a368484e19bd6b", "cast_id": 5, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 1}, {"name": "Emma Fitzpatrick", "character": "Elena", "id": 1011107, "credit_id": "52fe4bd9c3a368484e19bd6f", "cast_id": 6, "profile_path": "/yDbClrArlrYXNUCE5X5kOqeq0n5.jpg", "order": 2}, {"name": "Lee Tergesen", "character": "Lucello", "id": 6906, "credit_id": "52fe4bd9c3a368484e19bd73", "cast_id": 7, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 3}, {"name": "Erin Way", "character": "Abby", "id": 1012752, "credit_id": "52fe4bd9c3a368484e19bd77", "cast_id": 8, "profile_path": "/fhmuk9gZ8m9oUnFjKmkWc7iXcS0.jpg", "order": 4}, {"name": "Navi Rawat", "character": "Lisa", "id": 43778, "credit_id": "52fe4bd9c3a368484e19bd7b", "cast_id": 9, "profile_path": "/neAo8dukxSDh5Hn1Gjqi8nkz1aD.jpg", "order": 5}, {"name": "Johanna Braddy", "character": "Missy Solomon", "id": 95038, "credit_id": "52fe4bd9c3a368484e19bd7f", "cast_id": 10, "profile_path": "/a2Q4TJu13J8UVUPb5wgJKhIgJgK.jpg", "order": 6}, {"name": "Daniel Sharman", "character": "Basil", "id": 119248, "credit_id": "52fe4bd9c3a368484e19bd83", "cast_id": 11, "profile_path": "/uCkcpPWLTXaUAfLzbvvGf6dL7bA.jpg", "order": 7}, {"name": "Andre Royo", "character": "Wally", "id": 74957, "credit_id": "52fe4bd9c3a368484e19bd87", "cast_id": 12, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 8}, {"name": "Brandon Molale", "character": "Lin", "id": 63238, "credit_id": "52fe4bd9c3a368484e19bd8b", "cast_id": 13, "profile_path": "/iOQFhKoCY6czA8OIudsHbOtJsC6.jpg", "order": 9}, {"name": "Justin Mortelliti", "character": "Zack", "id": 204660, "credit_id": "52fe4bd9c3a368484e19bd8f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Randall Archer", "character": "The Collector", "id": 1099428, "credit_id": "52fe4bd9c3a368484e19bd93", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Shannon Kane", "character": "Paz", "id": 145145, "credit_id": "52fe4bd9c3a368484e19bd97", "cast_id": 16, "profile_path": "/6wrQoQvxDy8lTTfRveLPVBoYTJW.jpg", "order": 12}, {"name": "Eaddy Mays", "character": "Lynn", "id": 1099429, "credit_id": "52fe4bd9c3a368484e19bd9b", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "William Peltz", "character": "Brian", "id": 1011103, "credit_id": "52fe4bd9c3a368484e19bd9f", "cast_id": 18, "profile_path": "/6gtqvA5yif2S1a68AfokQU57BSo.jpg", "order": 14}, {"name": "Tim Griffin", "character": "Dre", "id": 27031, "credit_id": "52fe4bd9c3a368484e19bda3", "cast_id": 19, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 15}, {"name": "John Gulager", "character": "Agent Gulager", "id": 62797, "credit_id": "550ada0bc3a36848770015f6", "cast_id": 70, "profile_path": null, "order": 16}], "directors": [{"name": "Marcus Dunstan", "department": "Directing", "job": "Director", "credit_id": "52fe4bd9c3a368484e19bd57", "profile_path": null, "id": 51023}], "vote_average": 6.0, "runtime": 94}, "85446": {"poster_path": "/bduyqAyMtPDs4m16F7SuLQtbcud.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily's father's development plans.", "video": false, "id": 85446, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up Revolution", "tagline": "One Step Can Change Your World", "vote_count": 222, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1800741", "adult": false, "backdrop_path": "/697HWfGtDmK5Yi5QTEL19Q8dzPL.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-07-26", "popularity": 1.46456814377037, "original_title": "Step Up Revolution", "budget": 0, "cast": [{"name": "Kathryn McCormick", "character": "Emily", "id": 479656, "credit_id": "52fe49419251416c910a76ed", "cast_id": 1010, "profile_path": "/l15qbyuoee9RdjjCdCHPgsVCtbq.jpg", "order": 0}, {"name": "Ryan Guzman", "character": "Sean", "id": 932091, "credit_id": "52fe49419251416c910a76f1", "cast_id": 1011, "profile_path": "/yJR4t5PlBdsiPAP9JdGjqomkVv7.jpg", "order": 1}, {"name": "Stephen Boss", "character": "Jason", "id": 110743, "credit_id": "52fe49419251416c910a76f5", "cast_id": 1012, "profile_path": "/5mGP9IXwtmCFAK8dSiOVaFxjSRM.jpg", "order": 2}, {"name": "Megan Boone", "character": "Claire", "id": 222141, "credit_id": "52fe49419251416c910a7713", "cast_id": 1021, "profile_path": "/fqCZZb33w8RhWl2GVGdWOqXBQNO.jpg", "order": 3}, {"name": "Jessica Guadix", "character": "Dancer", "id": 932093, "credit_id": "52fe49419251416c910a76f9", "cast_id": 1015, "profile_path": "/fvlbaTELvx4F4UB3TzCXYxM60y0.jpg", "order": 4}, {"name": "Cleopatra Coleman", "character": "Penelope", "id": 217055, "credit_id": "52fe49419251416c910a76fd", "cast_id": 1016, "profile_path": "/qZEDMdL6OaYaNKKyH40G0KIpevP.jpg", "order": 5}, {"name": "Zoe Aggeliki", "character": "Dancer", "id": 932095, "credit_id": "52fe49419251416c910a7701", "cast_id": 1017, "profile_path": "/wCyrznRHDFSG2A1CHirXVAmWuRl.jpg", "order": 6}, {"name": "Tommy Dewey", "character": "Tripp", "id": 180789, "credit_id": "52fe49419251416c910a7705", "cast_id": 1018, "profile_path": "/ql0gosYNMJmGHd9UdINNliEIbdz.jpg", "order": 7}, {"name": "Celestina", "character": "Mob Dancer", "id": 932097, "credit_id": "52fe49419251416c910a7709", "cast_id": 1019, "profile_path": "/cC4ogX4QInjkCSSkTilh2HceXRH.jpg", "order": 8}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "53f439b30e0a267f83001389", "cast_id": 1023, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 9}, {"name": "Peter Gallagher", "character": "Mr Anderson", "id": 8212, "credit_id": "5463eef30e0a26294a000184", "cast_id": 1024, "profile_path": "/6bFDP5nBVx6RymoqPeSPwIvBCEL.jpg", "order": 10}, {"name": "Angeline Appel", "character": "Mob Dancer", "id": 1430895, "credit_id": "54f490f5925141799f00214b", "cast_id": 1025, "profile_path": "/gZkJTbrqf2zITLZBQzFBOiCGxDI.jpg", "order": 11}], "directors": [{"name": "Scott Speer", "department": "Directing", "job": "Director", "credit_id": "52fe49419251416c910a76bf", "profile_path": "/z6etjYvpvfKIi9NuWh2Hyv3qs0Y.jpg", "id": 932088}], "vote_average": 6.4, "runtime": 99}, "19912": {"poster_path": "/tuygO9zH7PQZYizYA0Jgyee61mI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186167139, "overview": "After a young man's premonition of a deadly race-car crash helps saves the lives of his peers, Death sets out to collect those who evaded their end.", "video": false, "id": 19912, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "The Final Destination", "tagline": "Rest In Pieces", "vote_count": 231, "homepage": "http://www.TheFinalDestinationMovie.com/", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1144884", "adult": false, "backdrop_path": "/kGalplb3ORM7aGXkW9UaZrp5AYN.jpg", "production_companies": [{"name": "Parallel Zide", "id": 48792}, {"name": "New Line Cinema", "id": 12}, {"name": "Practical Pictures", "id": 48788}], "release_date": "2009-08-26", "popularity": 0.693883983330527, "original_title": "The Final Destination", "budget": 40000000, "cast": [{"name": "Bobby Campo", "character": "Nick O'Bannon", "id": 94421, "credit_id": "52fe47f89251416c750ab9bd", "cast_id": 1, "profile_path": "/tTGrCRnPnktQs1ym75BZhZhPsPC.jpg", "order": 0}, {"name": "Shantel VanSanten", "character": "Lori Milligan", "id": 94423, "credit_id": "52fe47f89251416c750ab9c1", "cast_id": 2, "profile_path": "/jDMiaz2944QmoY8Y9xCLrP4Pret.jpg", "order": 1}, {"name": "Nick Zano", "character": "Hunt Wynorski", "id": 84076, "credit_id": "52fe47f89251416c750ab9c5", "cast_id": 3, "profile_path": "/yrKVUi6ZQcH8RA8pV3EF6xqoaUI.jpg", "order": 2}, {"name": "Haley Webb", "character": "Janet Cunningham", "id": 94424, "credit_id": "52fe47f89251416c750ab9c9", "cast_id": 4, "profile_path": "/dzTZzanthqZoMMs4C9uTwzF4JXU.jpg", "order": 3}, {"name": "Krista Allen", "character": "Samantha Lane", "id": 21858, "credit_id": "52fe47f89251416c750ab9cd", "cast_id": 6, "profile_path": "/aPNoOzxPicfSzPv2Qv7Ccex8WJL.jpg", "order": 4}, {"name": "Andrew Fiscella", "character": "Mechanic", "id": 65699, "credit_id": "52fe47f89251416c750ab9d1", "cast_id": 7, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 5}, {"name": "Justin Welborn", "character": "Racist", "id": 74136, "credit_id": "52fe47f89251416c750ab9d5", "cast_id": 8, "profile_path": "/kYi7JmJRCsNdbrNR48WcAb7wE1C.jpg", "order": 6}, {"name": "Stephanie Honor\u00e9", "character": "Mechanic's Girlfriend", "id": 94427, "credit_id": "52fe47f89251416c750ab9d9", "cast_id": 9, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 7}, {"name": "Lara Grice", "character": "Racist's Wife", "id": 94428, "credit_id": "52fe47f89251416c750ab9dd", "cast_id": 10, "profile_path": "/5bVR1UvnPyLgCcJqGHCnRCeLKPI.jpg", "order": 8}, {"name": "Jackson Walker", "character": "Cowboy", "id": 94429, "credit_id": "52fe47f89251416c750ab9e1", "cast_id": 11, "profile_path": "/3iFHkjrtywbXNsZkZjnfBglScEz.jpg", "order": 9}, {"name": "Mykelti Williamson", "character": "George Lanter", "id": 34, "credit_id": "52fe47f89251416c750aba0f", "cast_id": 20, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 10}], "directors": [{"name": "David R. Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe47f89251416c750ab9e7", "profile_path": "/9P6QJWDmDJraSCcL01bQnZxMTSM.jpg", "id": 4755}], "vote_average": 5.3, "runtime": 82}, "19913": {"poster_path": "/we9K5RxW6Vi8OfKtXTSqNr0cxvZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32374303, "overview": "Tom (Joseph Gordon-Levitt), greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer (Zooey Deschanel), suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.", "video": false, "id": 19913, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "(500) Days of Summer", "tagline": "It was almost like falling in love.", "vote_count": 806, "homepage": "http://500days.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1022603", "adult": false, "backdrop_path": "/yYw9cVdRJ4zzwxM2cTDXfT6JI6E.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Watermark", "id": 4364}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2009-07-17", "popularity": 1.76862797061384, "original_title": "(500) Days of Summer", "budget": 7500000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Tom Hansen", "id": 24045, "credit_id": "52fe47f89251416c750aba5b", "cast_id": 4, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Summer Finn", "id": 11664, "credit_id": "52fe47f89251416c750aba5f", "cast_id": 5, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Chlo\u00eb Grace Moretz", "character": "Rachel Hansen", "id": 56734, "credit_id": "52fe47f89251416c750aba63", "cast_id": 6, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "Geoffrey Arend", "character": "McKenzie", "id": 5375, "credit_id": "52fe47f89251416c750aba67", "cast_id": 7, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 3}, {"name": "Matthew Gray Gubler", "character": "Paul", "id": 5661, "credit_id": "52fe47f89251416c750aba6b", "cast_id": 8, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 4}, {"name": "Clark Gregg", "character": "Vance", "id": 9048, "credit_id": "52fe47f89251416c750aba6f", "cast_id": 9, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 5}, {"name": "Alejandro Estornel", "character": "Dancer", "id": 1282303, "credit_id": "52fe47f99251416c750ababb", "cast_id": 30, "profile_path": "/ne6h2tFQ16MNW5O7mZY961BQ3X9.jpg", "order": 6}, {"name": "Patricia Belcher", "character": "Millie", "id": 56358, "credit_id": "52fe47f99251416c750ababf", "cast_id": 31, "profile_path": "/dbbOF0P2h8qJ0fktNzMj4rmztP3.jpg", "order": 7}, {"name": "Rachel Boston", "character": "Alison", "id": 96624, "credit_id": "52fe47f99251416c750abac3", "cast_id": 32, "profile_path": "/gX5GGFYPELzfDwSsy6W7QpKDj87.jpg", "order": 8}, {"name": "Minka Kelly", "character": "Autumn - Girl at interview", "id": 96625, "credit_id": "52fe47f99251416c750abac7", "cast_id": 33, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 9}, {"name": "Ian Reed Kesler", "character": "Douche", "id": 133591, "credit_id": "52fe47f99251416c750abacf", "cast_id": 35, "profile_path": "/rTmay9ruuuQw8LNzMVbz9r68KA5.jpg", "order": 11}, {"name": "Valente Rodriguez", "character": "Employee #1", "id": 6321, "credit_id": "52fe47f99251416c750abad7", "cast_id": 37, "profile_path": "/j5fIc0HUrrgE6fVel6tjXcnDPRo.jpg", "order": 13}, {"name": "Yvette Nicole Brown", "character": "New Secretary", "id": 111513, "credit_id": "52fe47f99251416c750abadb", "cast_id": 38, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 14}, {"name": "Nicole Vicius", "character": "Partygoer", "id": 18516, "credit_id": "52fe47f99251416c750abadf", "cast_id": 39, "profile_path": "/oqN6L0EaeToZx5Malv1McQeLyZv.jpg", "order": 15}], "directors": [{"name": "Marc Webb", "department": "Directing", "job": "Director", "credit_id": "52fe47f89251416c750aba57", "profile_path": "/7uFlVK5BDTjk6IK9iBCmfrdaAs6.jpg", "id": 87742}], "vote_average": 7.2, "runtime": 95}, "19918": {"poster_path": "/ro8KctLAWv7SOwx9fuKMlx1uar7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12032983, "overview": "In Los Angeles, Nikki is homeless, car-less and closing in on 30, but he's amoral, good-looking, and adept in the sack, moving from one wealthy woman of 35 or 40 to another, a kept boy-toy. His newest gig, with Samantha, an attorney whose house overlooks L.A., is sweet, although it's unclear how long she'll put up with him. Then Nikki meets Heather, a waitress. Is the player being played, or might this be love? What will Nikki discover?", "video": false, "id": 19918, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Spread", "tagline": "It's a business doing pleasure.", "vote_count": 59, "homepage": "http://www.spread-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1186370", "adult": false, "backdrop_path": "/zk4eEkWsjRI8LVCQN4IlR83PJXi.jpg", "production_companies": [{"name": "Barbarian Films", "id": 6563}, {"name": "Katalyst Films", "id": 817}], "release_date": "2009-01-16", "popularity": 0.919173365727792, "original_title": "Spread", "budget": 0, "cast": [{"name": "Ashton Kutcher", "character": "Nikki", "id": 18976, "credit_id": "53218c86c3a368572e003007", "cast_id": 0, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Anne Heche", "character": "Samantha", "id": 8256, "credit_id": "53218c9bc3a368573c002eff", "cast_id": 1, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 2}, {"name": "Margarita Levieva", "character": "Heather", "id": 59237, "credit_id": "53218cacc3a3685754002eca", "cast_id": 2, "profile_path": "/5YDkouUZf4khoFfNoWps3PK5JQf.jpg", "order": 3}, {"name": "Sebastian Stan", "character": "Harry", "id": 60898, "credit_id": "53218cbfc3a368573c002f0f", "cast_id": 3, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 4}, {"name": "Ashley Johnson", "character": "Eva", "id": 34486, "credit_id": "53218cccc3a368573c002f14", "cast_id": 4, "profile_path": "/e4GJkGmRGvrqPG5jcTNHBCmL1x9.jpg", "order": 5}, {"name": "Sonia Rockwell", "character": "Christina", "id": 964614, "credit_id": "53218ce1c3a368572500303f", "cast_id": 5, "profile_path": "/9Ed7B4ZK3ra2yT9IxDFpsetcDCF.jpg", "order": 6}, {"name": "Rachel Blanchard", "character": "Emily", "id": 52478, "credit_id": "53218cf0c3a3685745003069", "cast_id": 6, "profile_path": "/b8C355lKxrfwqHmCD3N22BjXMxz.jpg", "order": 7}, {"name": "Shane Brolly", "character": "Prince Stelio", "id": 3969, "credit_id": "53218d0ac3a3685754002edb", "cast_id": 7, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 8}, {"name": "Eric Balfour", "character": "Sean", "id": 34489, "credit_id": "53218d19c3a368574d003278", "cast_id": 8, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 9}, {"name": "Mar\u00eda Conchita Alonso", "character": "Ingrid", "id": 2051, "credit_id": "53218d2ac3a36824b5001db9", "cast_id": 9, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 10}, {"name": "Derek Carter", "character": "Delivery Guy", "id": 221672, "credit_id": "53218d3dc3a368573c002f22", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Jordan Black", "character": "Kevin", "id": 1223703, "credit_id": "53218d55c3a36828ba00183b", "cast_id": 11, "profile_path": "/1m06XlIZX5dqSxwRTaSfvgGWxFW.jpg", "order": 12}, {"name": "Dani Levine", "character": "Nadia", "id": 1098885, "credit_id": "53218d72c3a368573c002f28", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Sarah Buxton", "character": "Helen", "id": 1225932, "credit_id": "53218d86c3a368574d003281", "cast_id": 13, "profile_path": null, "order": 14}, {"name": "Peter Marc Jacobson", "character": "Plastic Surgeon", "id": 1212131, "credit_id": "53218d9dc3a368573c002f32", "cast_id": 14, "profile_path": null, "order": 15}, {"name": "Jenae Altschwager", "character": "Stripper (as Jane Altschwager)", "id": 962379, "credit_id": "53218dbac3a36824b5001dce", "cast_id": 15, "profile_path": "/nAWvaydi4olSht0NfZb7sL7u4w7.jpg", "order": 16}, {"name": "Lindsey Broad", "character": "Emily's Roommate", "id": 208307, "credit_id": "53218dcdc3a36824b5001dd1", "cast_id": 16, "profile_path": "/6R4jOm6LOTlbt1L9Zbocl5OjsfQ.jpg", "order": 17}, {"name": "Amy Motta", "character": "Woman in Airport (aka Matron)", "id": 963720, "credit_id": "53218df1c3a368574d003287", "cast_id": 17, "profile_path": null, "order": 18}, {"name": "Lauri Johnson", "character": "Meter Maid / Doris", "id": 66499, "credit_id": "53218e09c3a3685745003081", "cast_id": 18, "profile_path": null, "order": 19}, {"name": "Madison Bauer", "character": "Nikki's Mother", "id": 990986, "credit_id": "53218e2cc3a368573c002f46", "cast_id": 19, "profile_path": null, "order": 20}, {"name": "Josh Richman", "character": "Club Bouncer / Himself", "id": 3209, "credit_id": "53218e54c3a36828ba00185b", "cast_id": 20, "profile_path": null, "order": 21}, {"name": "Iglesias Estefania", "character": "Bella Girl (as Estefania Iglesias)", "id": 125789, "credit_id": "53218e6bc3a368574d003295", "cast_id": 21, "profile_path": null, "order": 22}, {"name": "Reeve Carney", "character": "Lead Singer", "id": 64710, "credit_id": "53218e7fc3a368574500308c", "cast_id": 22, "profile_path": "/oT1XxfYL9aOHs7V2p0n7gIkp8zo.jpg", "order": 23}, {"name": "Nick Lee", "character": "Waiter", "id": 550902, "credit_id": "53218ea3c3a36824b5001de0", "cast_id": 23, "profile_path": null, "order": 24}, {"name": "Sarah Karijan", "character": "Prince Stelio's Gang", "id": 1337696, "credit_id": "53b84f3ac3a3685eb7004329", "cast_id": 36, "profile_path": "/rL28fIEVtLZw6HZXIL2W0KjLmMH.jpg", "order": 25}], "directors": [{"name": "David Mackenzie", "department": "Directing", "job": "Director", "credit_id": "53218fcbc3a368573c002f7e", "profile_path": "/oHZ2kkGICUnSbm73BQFK3Hau82f.jpg", "id": 3055}], "vote_average": 5.4, "runtime": 97}, "3536": {"poster_path": "/6zdPIbSF9vxCBZpntNvishPo5ol.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127666415, "overview": "In the midst of World War II, the battle below the seas rages. The Nazi's have the upper edge as the Allies are unable to crack their war codes. That is, until a wrecked U-boat sends out an SOS signal, and the Allies realise this is their chance to seize the 'enigma coding machine'. But masquerading as Nazi's and taking over the U-boat is the smallest of their problems..", "video": false, "id": 3536, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "U-571", "tagline": "Heroes are ordinary men who do extraordinary things in extraordinary times.", "vote_count": 113, "homepage": "http://www.u-571.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0141926", "adult": false, "backdrop_path": "/prGcR88VZWi7HsRyTdIJRjmHSgC.jpg", "production_companies": [{"name": "Canal Plus", "id": 104}, {"name": "Universal Pictures", "id": 33}, {"name": "Dino De Laurentiis Company", "id": 10308}], "release_date": "2000-04-21", "popularity": 1.04938920118535, "original_title": "U-571", "budget": 62000000, "cast": [{"name": "Matthew McConaughey", "character": "Lt. Andrew Tyler", "id": 10297, "credit_id": "52fe4399c3a36847f8060caf", "cast_id": 4, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Lt. Cmdr. Mike Dahlgren", "id": 2053, "credit_id": "52fe4399c3a36847f8060cb3", "cast_id": 5, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "CPO Henry Klough", "id": 1037, "credit_id": "52fe4399c3a36847f8060cb7", "cast_id": 6, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Jon Bon Jovi", "character": "Lt. Pete Emmett", "id": 32362, "credit_id": "52fe4399c3a36847f8060cbb", "cast_id": 7, "profile_path": "/gCVfbPMPaIEatCRwEwWhKKzo0AQ.jpg", "order": 3}, {"name": "David Keith", "character": "Maj. Matthew Coonen", "id": 18181, "credit_id": "52fe4399c3a36847f8060cbf", "cast_id": 8, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 4}, {"name": "Thomas Kretschmann", "character": "Capt. Lt. Gunther Wassner", "id": 3491, "credit_id": "52fe4399c3a36847f8060cc3", "cast_id": 9, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 5}, {"name": "Jake Weber", "character": "Lt. Hirsch", "id": 4177, "credit_id": "52fe4399c3a36847f8060cc7", "cast_id": 10, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 6}, {"name": "Jack Noseworthy", "character": "Bill Wentz", "id": 22133, "credit_id": "52fe4399c3a36847f8060ccb", "cast_id": 11, "profile_path": "/g30R5ax6RSN8OSdsWZnG2IhLDFT.jpg", "order": 7}, {"name": "Tom Guiry", "character": "Ted Trigger Fitzgerald", "id": 4729, "credit_id": "52fe4399c3a36847f8060ccf", "cast_id": 12, "profile_path": "/3LcbdkpjePcQk8q4QbRg7uhNMgN.jpg", "order": 8}, {"name": "Will Estes", "character": "Ronald Rabbit Parker", "id": 32363, "credit_id": "52fe4399c3a36847f8060cd3", "cast_id": 13, "profile_path": "/aE4k0hiJN6VcBDN7ZasXZLV0a1N.jpg", "order": 9}, {"name": "Terrence 'T.C.' Carson", "character": "Steward Eddie Carson", "id": 233191, "credit_id": "52fe4399c3a36847f8060cfb", "cast_id": 20, "profile_path": "/eto2MDC4VXLGiPOXNqSdlWJ5yxL.jpg", "order": 10}], "directors": [{"name": "Jonathan Mostow", "department": "Directing", "job": "Director", "credit_id": "52fe4399c3a36847f8060c9f", "profile_path": "/hHJjES7xDqHhFhyPvqytwJ8yGk3.jpg", "id": 7213}], "vote_average": 6.2, "runtime": 116}, "10147": {"poster_path": "/103KNOz11U4iojwW6F1rOKKZIDp.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76488889, "overview": "A miserable conman and his partner pose as Santa and his Little Helper to rob department stores on Christmas Eve. But they run into problems when the conman befriends a troubled kid, and the security boss discovers the plot.", "video": false, "id": 10147, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Bad Santa", "tagline": "He doesn't care if you're naughty or nice.", "vote_count": 162, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307987", "adult": false, "backdrop_path": "/bXKYOyUH3v6KTRiwWhVhd6sqXcM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2003-11-25", "popularity": 0.681426195418384, "original_title": "Bad Santa", "budget": 23000000, "cast": [{"name": "Billy Bob Thornton", "character": "Willie", "id": 879, "credit_id": "52fe43359251416c7500799d", "cast_id": 12, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 0}, {"name": "Tony Cox", "character": "Marcus", "id": 19754, "credit_id": "52fe43359251416c750079a1", "cast_id": 13, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 1}, {"name": "Brett Kelly", "character": "The Kid", "id": 63992, "credit_id": "52fe43359251416c750079a5", "cast_id": 14, "profile_path": "/lrNCvvtopyLTtwQQUxjfu8JfIpj.jpg", "order": 2}, {"name": "Lauren Graham", "character": "Sue", "id": 16858, "credit_id": "52fe43359251416c750079a9", "cast_id": 15, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 3}, {"name": "Bernie Mac", "character": "Gin", "id": 1897, "credit_id": "52fe43359251416c750079ad", "cast_id": 16, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 4}, {"name": "Lauren Tom", "character": "Lois", "id": 15100, "credit_id": "52fe43359251416c750079b1", "cast_id": 17, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 5}, {"name": "John Ritter", "character": "Bob Chipeska", "id": 27772, "credit_id": "52fe43359251416c750079b5", "cast_id": 18, "profile_path": "/oM4iv6O97gK7JFiNkdjEBeuN5Q4.jpg", "order": 6}, {"name": "Ajay Naidu", "character": "Hindustani Troublemaker", "id": 1982, "credit_id": "52fe43359251416c750079b9", "cast_id": 19, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 7}, {"name": "Octavia Spencer", "character": "Opal", "id": 6944, "credit_id": "52fe43359251416c750079bd", "cast_id": 20, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 8}, {"name": "Cloris Leachman", "character": "Grandma", "id": 9599, "credit_id": "52fe43359251416c750079c1", "cast_id": 21, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 9}, {"name": "Lorna Scott", "character": "Milwaukee Mother", "id": 73456, "credit_id": "548c3d57c3a36820b8001a6e", "cast_id": 22, "profile_path": "/esuLL3MYiVvSbL71nvpebZFTaDf.jpg", "order": 10}, {"name": "Harrison Bieker", "character": "Milwaukee Boy", "id": 1398494, "credit_id": "548c3d6e92514122f90019b4", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Alex Borstein", "character": "Milwaukee Mom with Photo", "id": 24357, "credit_id": "548c3d8c92514122f500181e", "cast_id": 24, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 12}, {"name": "Alexandra Korhan", "character": "Girl on Santa's Lap", "id": 1398495, "credit_id": "548c3d9d92514122ea00194e", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Dylan Charles", "character": "Milwaukee Bratty Boy", "id": 1398496, "credit_id": "548c3dad92514122f20017bb", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Billy Gardell", "character": "Milwaukee Security Guard", "id": 64344, "credit_id": "548c3dc6c3a36820b5001ae2", "cast_id": 27, "profile_path": "/6GB2WYCGSJDPbKjjK0zot8nxJe9.jpg", "order": 15}, {"name": "Lisa Ross", "character": "Milwaukee Bartender", "id": 1398497, "credit_id": "548c3dd792514122ef001907", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Terry Zwigoff", "department": "Directing", "job": "Director", "credit_id": "52fe43359251416c7500795d", "profile_path": null, "id": 17447}], "vote_average": 6.2, "runtime": 91}, "175574": {"poster_path": "/c5Gwex2oQPaMkgZPTzhdkMMSrwW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110, "overview": "In this irreverent, hilarious, adventurous buddy comedy for audiences of all ages, directed by Jimmy Hayward (Horton Hears a Who!), two turkeys from opposite sides of the tracks must put aside their differences and team up to travel back in time to change the course of history - and get turkey off the holiday menu for good.", "video": false, "id": 175574, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Free Birds", "tagline": "Hang On To Your Nuggets", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1621039", "adult": false, "backdrop_path": "/kMQHV8A0jOl4eRkBFP7dy6Jt5Gv.jpg", "production_companies": [{"name": "Reel FX Creative Studios", "id": 2787}, {"name": "Relativity Media", "id": 7295}], "release_date": "2013-11-01", "popularity": 2.0544169236929, "original_title": "Free Birds", "budget": 55000000, "cast": [{"name": "Woody Harrelson", "character": "Jake (voice)", "id": 57755, "credit_id": "52fe4d61c3a36847f825dbb5", "cast_id": 1, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Reggie (voice)", "id": 887, "credit_id": "52fe4d61c3a36847f825dbb9", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Amy Poehler", "character": "Jenny (voice)", "id": 56322, "credit_id": "52fe4d61c3a36847f825dbd3", "cast_id": 9, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 2}, {"name": "Dan Fogler", "character": "Governor Bradford (voice)", "id": 58873, "credit_id": "52fe4d61c3a36847f825dbbd", "cast_id": 3, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 3}, {"name": "Colm Meaney", "character": "Myles Standish (voice)", "id": 17782, "credit_id": "52fe4d61c3a36847f825dbd7", "cast_id": 10, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 4}, {"name": "Lesley Nicol", "character": "Female Pilgrim (voice)", "id": 174727, "credit_id": "52fe4d61c3a36847f825dbdb", "cast_id": 11, "profile_path": "/tw3GecTzAfqxpulQ5DddGC3Oiy1.jpg", "order": 5}, {"name": "George Takei", "character": "S.T.E.V.E. (voice)", "id": 1752, "credit_id": "52fe4d61c3a36847f825dbeb", "cast_id": 14, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 6}, {"name": "Jimmy Hayward", "character": "Ranger/Leatherbeak/President/Hazmats (voice)", "id": 8029, "credit_id": "52fe4d61c3a36847f825dbef", "cast_id": 15, "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "order": 7}, {"name": "Kaitlyn Maher", "character": "President's Daughter (voice)", "id": 141775, "credit_id": "52fe4d61c3a36847f825dbf3", "cast_id": 16, "profile_path": "/k3C7bbnFoJ6zYWtWFjhSik9gbVb.jpg", "order": 8}, {"name": "Carlos Alazraqui", "character": "Amos (voice)", "id": 59784, "credit_id": "52fe4d61c3a36847f825dbf7", "cast_id": 17, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 9}, {"name": "Carlos Ponce", "character": "Narrator/Alejandro (voice)", "id": 62067, "credit_id": "52fe4d61c3a36847f825dbfb", "cast_id": 18, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 10}, {"name": "Robert Beltran", "character": "Chief Massasoit (voice)", "id": 50880, "credit_id": "52fe4d61c3a36847f825dbff", "cast_id": 19, "profile_path": "/qD5OwMNOS6TgCgy5Xg0OwpMluQp.jpg", "order": 11}, {"name": "Danny Carey", "character": "Danny (voice)", "id": 1277229, "credit_id": "52fe4d61c3a36847f825dc03", "cast_id": 20, "profile_path": null, "order": 12}], "directors": [{"name": "Jimmy Hayward", "department": "Directing", "job": "Director", "credit_id": "52fe4d61c3a36847f825dbc3", "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "id": 8029}], "vote_average": 6.0, "runtime": 91}, "3558": {"poster_path": "/gfHKZq4GMziiI05A06KEQF0yDW9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set in the changing world of the late 1960s, \"Girl, Interrupted\" is the searing true story of Susanna Kaysen (Winona Ryder), a young woman who finds herself at a renowned mental institution for troubled young women, where she must choose between the world of people who belong on the inside -- like the seductive and dangerous Lisa (Angelina Jolie) -- or the often difficult world of reality on the outside.", "video": false, "id": 3558, "genres": [{"id": 18, "name": "Drama"}], "title": "Girl, Interrupted", "tagline": "The crazy thing is, you're not crazy.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0172493", "adult": false, "backdrop_path": "/8lo7UP1GQUVaIAGYPU8RaeVkdFb.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-12-21", "popularity": 0.412259531167745, "original_title": "Girl, Interrupted", "budget": 40000000, "cast": [{"name": "Winona Ryder", "character": "Susanna Kaysen", "id": 1920, "credit_id": "52fe439cc3a36847f80618bb", "cast_id": 14, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Lisa Rowe", "id": 11701, "credit_id": "52fe439cc3a36847f80618bf", "cast_id": 15, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Whoopi Goldberg", "character": "Valerie Owens", "id": 2395, "credit_id": "52fe439cc3a36847f80618c3", "cast_id": 16, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 2}, {"name": "Vanessa Redgrave", "character": "Dr. Wick", "id": 13333, "credit_id": "52fe439cc3a36847f80618c7", "cast_id": 17, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 3}, {"name": "Clea DuVall", "character": "Georgina Tuskin", "id": 20387, "credit_id": "52fe439cc3a36847f80618cb", "cast_id": 18, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 4}, {"name": "Brittany Murphy", "character": "Daisy Randone", "id": 328, "credit_id": "52fe439cc3a36847f80618cf", "cast_id": 19, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 5}, {"name": "Jared Leto", "character": "Toby", "id": 7499, "credit_id": "52fe439cc3a36847f80618d3", "cast_id": 20, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 6}, {"name": "Elisabeth Moss", "character": "Polly Clark", "id": 32798, "credit_id": "52fe439cc3a36847f80618d7", "cast_id": 21, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 7}, {"name": "Jeffrey Tambor", "character": "Dr. Melvin Potts", "id": 4175, "credit_id": "52fe439cc3a36847f80618db", "cast_id": 22, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 8}, {"name": "Angela Bettis", "character": "Janet Webber", "id": 32799, "credit_id": "52fe439cc3a36847f80618df", "cast_id": 23, "profile_path": "/3wOUBFjkIND7ZggfKVV25BJxGtN.jpg", "order": 9}, {"name": "Jillian Armenante", "character": "Cynthia Crowley", "id": 20469, "credit_id": "52fe439cc3a36847f80618e3", "cast_id": 24, "profile_path": "/3nvYOL6Vq7iY5OJgeubowsmbLTA.jpg", "order": 10}, {"name": "Drucie McDaniel", "character": "M.G.", "id": 32800, "credit_id": "52fe439cc3a36847f80618e7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Christina Myers", "character": "Nurse Margie", "id": 32801, "credit_id": "52fe439cc3a36847f80618eb", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Travis Fine", "character": "Nurse John", "id": 32802, "credit_id": "52fe439cc3a36847f80618ef", "cast_id": 27, "profile_path": "/lf8iuUV0hrvk7YUoxNFJ9KWIz6S.jpg", "order": 13}, {"name": "Mary Kay Place", "character": "Barbara Gilcrest", "id": 5960, "credit_id": "52fe439cc3a36847f80618f3", "cast_id": 28, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 14}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe439cc3a36847f806186f", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 7.4, "runtime": 127}, "273895": {"poster_path": "/o7Nb27iXxXls0r6qcaMwMxrkrke.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"Selma,\" as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Civil Rights Act.", "video": false, "id": 273895, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Selma", "tagline": "Martin Luther King, Lyndon Baines Johnson and the civil rights marches that changed America.", "vote_count": 160, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1020072", "adult": false, "backdrop_path": "/fsjg1cEgXpO9TkxtmiAcLU8rnHd.jpg", "production_companies": [{"name": "Harpo Films", "id": 3298}, {"name": "Cloud Eight Films", "id": 6708}, {"name": "Celador Films", "id": 3573}], "release_date": "2014-12-25", "popularity": 3.62166551674412, "original_title": "Selma", "budget": 0, "cast": [{"name": "David Oyelowo", "character": "Martin Luther King", "id": 35013, "credit_id": "53a850f50e0a2614390060ae", "cast_id": 5, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 1}, {"name": "Tom Wilkinson", "character": "Lyndon Baines Johnson", "id": 207, "credit_id": "53a851100e0a26143c005dcd", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 2}, {"name": "Carmen Ejogo", "character": "Coretta Scott King", "id": 37158, "credit_id": "53a851200e0a2614360060be", "cast_id": 8, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 4}, {"name": "Andre Holland", "character": "Andrew Young", "id": 459980, "credit_id": "53a851370e0a261445005f06", "cast_id": 9, "profile_path": "/nq6qk6P5idimcSJ0bpFqLQrb0Li.jpg", "order": 5}, {"name": "Omar J. Dorsey", "character": "James Orange", "id": 59844, "credit_id": "53a8514b0e0a26143c005dd2", "cast_id": 10, "profile_path": "/20Lrh4XaRrNEMapJGMl9uToHSQn.jpg", "order": 6}, {"name": "Alessandro Nivola", "character": "John Doar", "id": 4941, "credit_id": "53a8515f0e0a2614360060c3", "cast_id": 11, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 7}, {"name": "Giovanni Ribisi", "character": "Lee White", "id": 1771, "credit_id": "53a851780e0a26143c005dd6", "cast_id": 12, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 8}, {"name": "Colman Domingo", "character": "Ralph Abernathy", "id": 91671, "credit_id": "53a851930e0a261445005f0b", "cast_id": 13, "profile_path": "/otQg0XX0fSnnOHZphdWwwjJc8lA.jpg", "order": 9}, {"name": "Oprah Winfrey", "character": "Annie Lee Cooper", "id": 13309, "credit_id": "53a8544ec3a3687a2e005818", "cast_id": 14, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 10}, {"name": "Tim Roth", "character": "Gov. George Wallace", "id": 3129, "credit_id": "54ad4525c3a368241e004bdb", "cast_id": 15, "profile_path": "/r4jtlboNqWPz2dOHafrPJE4Yd94.jpg", "order": 11}, {"name": "Common", "character": "James Bevel", "id": 4238, "credit_id": "54ad452bc3a36822b7006132", "cast_id": 16, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 12}, {"name": "Cuba Gooding Jr.", "character": "Fred Gray", "id": 9777, "credit_id": "54ad45359251412fba00010e", "cast_id": 17, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 13}, {"name": "Ruben Santiago-Hudson", "character": "Bayard Rustin", "id": 31839, "credit_id": "54b0a996925141747e000f86", "cast_id": 34, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 14}, {"name": "Tessa Thompson", "character": "Diane Nash", "id": 62561, "credit_id": "54b0a9c2925141747e000f8d", "cast_id": 35, "profile_path": "/l9o1HsPN78dAU6MqqTYHVZhPAwa.jpg", "order": 15}, {"name": "Lorraine Toussaint", "character": "Amelia Boynton", "id": 81726, "credit_id": "54b0a9cf9251417479000ea1", "cast_id": 36, "profile_path": "/tHvHTU5gV68sNig0kUBatXWuwt9.jpg", "order": 16}, {"name": "David Dwyer", "character": "Chief Wilson Baker", "id": 21084, "credit_id": "54b0a9e3c3a3684138000973", "cast_id": 37, "profile_path": "/A0EMGjQl4t3DqqfR6Onx0tiMHc5.jpg", "order": 17}, {"name": "E. Roger Mitchell", "character": "Frederick Reese", "id": 41020, "credit_id": "54b0a9f1c3a368094500115b", "cast_id": 38, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 18}, {"name": "Dylan Baker", "character": "J. Edgar Hoover", "id": 19152, "credit_id": "54b0a9fcc3a3680940001034", "cast_id": 39, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 19}, {"name": "Ledisi Young", "character": "Mahalia Jackson", "id": 1411596, "credit_id": "54b0aa149251416f2c000968", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Kent Faulcon", "character": "Sullivan Jackson", "id": 9634, "credit_id": "54b0aa20c3a3680945001160", "cast_id": 41, "profile_path": "/oOKr7nJJwpGNrPijma1MhhkDRPv.jpg", "order": 21}, {"name": "Niecy Nash", "character": "Richie Jean Jackson", "id": 63231, "credit_id": "54b0aa2c9251417479000eae", "cast_id": 42, "profile_path": "/uDgMY19qLLxJLGGr0JYzbi01JmW.jpg", "order": 22}, {"name": "Corey Reynolds", "character": "Rev. C.T. Vivian", "id": 8694, "credit_id": "54b0aa3ac3a3680945001165", "cast_id": 43, "profile_path": "/faEdK8pyxXUuFsNGBTr26ybZd5l.jpg", "order": 23}, {"name": "Wendell Pierce", "character": "Rev. Hosea Williams", "id": 17859, "credit_id": "54b0aa46c3a368094e001319", "cast_id": 44, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 24}, {"name": "Stephan James", "character": "John Lewis", "id": 1388314, "credit_id": "54b0aa59c3a3680939001107", "cast_id": 45, "profile_path": "/5twzYuKcgyjqe1VBb8hxAwn6OoE.jpg", "order": 25}, {"name": "Keith Stanfield", "character": "Jimmie Lee Jackson", "id": 1200864, "credit_id": "54b0aa6d9251417472000fa8", "cast_id": 46, "profile_path": "/iqn7EWoEjqdzcaOJQ1DOYt8mpiy.jpg", "order": 26}, {"name": "Charity Jordan", "character": "Viola Lee Jackson", "id": 1411598, "credit_id": "54b0aa81925141747e000fa0", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Trai Byers", "character": "James Forman", "id": 1407308, "credit_id": "54b0aa8e9251416fe10008b7", "cast_id": 48, "profile_path": "/wqSp2AVe8YDelReucqxszKP4NX7.jpg", "order": 28}, {"name": "Stan Houston", "character": "Sheriff Jim Clark", "id": 1046664, "credit_id": "54b0aa9cc3a368093900110b", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Nigel Thatch", "character": "Malcolm X", "id": 1411599, "credit_id": "54b0aab79251412ae7000206", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Jeremy Strong", "character": "James Reeb", "id": 239271, "credit_id": "54b0aac6c3a3680951000fde", "cast_id": 51, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 31}, {"name": "Tara Ochs", "character": "Viola Liuzzo", "id": 1411600, "credit_id": "54b0aad1c3a36840120009a8", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Martin Sheen", "character": "Frank Minis Johnson", "id": 8349, "credit_id": "54b0aaf592514174750010fc", "cast_id": 54, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 34}], "directors": [{"name": "Ava DuVernay", "department": "Directing", "job": "Director", "credit_id": "538f45910e0a26297f0001df", "profile_path": "/tOo78QstRcAPyii0BPSmWcTDRG9.jpg", "id": 929825}], "vote_average": 7.5, "runtime": 127}, "225886": {"poster_path": "/bYY46f0PSLJTXzitxGOCd00rj3Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126069509, "overview": "When Jay and Annie first got together, their romantic connection was intense \u2013 but ten years and two kids later, the flame of their love needs a spark. To kick things up a notch, they decide \u2013 why not? \u2013 to make a video of themselves trying out every position in The Joy of Sex in one marathon three-hour session. It seems like a great idea \u2013 until they discover that their most private video is no longer private. With their reputations on the line, they know they\u2019re just one click away from being laid bare to the world... but as their race to reclaim their video leads to a night they'll never forget, they'll find that their video will expose even more than they bargained for.", "video": false, "id": 225886, "genres": [{"id": 35, "name": "Comedy"}], "title": "Sex Tape", "tagline": "A movie about a movie they don't want you to see.", "vote_count": 509, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1956620", "adult": false, "backdrop_path": "/USKXUGMT9PZHzq91F5Beuged7.jpg", "production_companies": [{"name": "Sony Pictures Entertainment (SPE)", "id": 7431}, {"name": "Escape Artists", "id": 1423}, {"name": "LStar Capital", "id": 34034}, {"name": "Media Rights Capital", "id": 2531}], "release_date": "2014-07-18", "popularity": 3.80347257203837, "original_title": "Sex Tape", "budget": 40000000, "cast": [{"name": "Cameron Diaz", "character": "Annie", "id": 6941, "credit_id": "52fe4e6e9251416c75156327", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Jason Segel", "character": "Jay", "id": 41088, "credit_id": "52fe4e6e9251416c7515632b", "cast_id": 2, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Rob Corddry", "character": "Robby", "id": 52997, "credit_id": "533c5b6592514175fa000199", "cast_id": 6, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 2}, {"name": "Ellie Kemper", "character": "Tess", "id": 475512, "credit_id": "533c5b5292514176060001c2", "cast_id": 5, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 3}, {"name": "Rob Lowe", "character": "Hank", "id": 2879, "credit_id": "52fe4e6e9251416c7515632f", "cast_id": 3, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 4}, {"name": "Nat Faxon", "character": "Max", "id": 105648, "credit_id": "53c4727ac3a3682473000151", "cast_id": 18, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 5}, {"name": "Nancy Lenehan", "character": "Linda", "id": 9279, "credit_id": "53c47290c3a368246e000120", "cast_id": 19, "profile_path": "/d53TslGYUtkXfHHEjCGMCQOOdlM.jpg", "order": 6}, {"name": "Giselle Eisenberg", "character": "Nell", "id": 1306572, "credit_id": "533c5bec925141760b000203", "cast_id": 11, "profile_path": "/4V9TFTwVn0VUyr19kd7sbm64KcY.jpg", "order": 7}, {"name": "Harrison Holzer", "character": "Howard", "id": 1373304, "credit_id": "543ad270c3a36819950036e7", "cast_id": 22, "profile_path": "/5DNum2BcL1R4kYqvByWavZvVXOj.jpg", "order": 8}, {"name": "Sebastian Hedges Thomas", "character": "Clive", "id": 1373306, "credit_id": "543ad40dc3a368198c0036e3", "cast_id": 23, "profile_path": "/cE6TQUMLK9yWIkl7p5SQMT5xw0i.jpg", "order": 9}, {"name": "Timothy Brennen", "character": "Walt", "id": 169198, "credit_id": "533c5bdc92514176030001ca", "cast_id": 10, "profile_path": "/kQiAo1MdUx28sUQCkPkQF1mktDj.jpg", "order": 10}, {"name": "Krisztina Koltai", "character": "Marta", "id": 1306652, "credit_id": "533cf48d925141760b001233", "cast_id": 14, "profile_path": "/lRSfKKOz4TID9FQNZNqOgXbL2xx.jpg", "order": 11}, {"name": "Randall Park", "character": "Edward", "id": 79082, "credit_id": "533c5ba492514175fa0001a2", "cast_id": 9, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 12}, {"name": "Jack Black", "character": "YouPorn Owner", "id": 70851, "credit_id": "54a22f58c3a3684d60000bf1", "cast_id": 35, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 13}, {"name": "Joe Stapleton", "character": "Piper Bros. Executive", "id": 1373307, "credit_id": "543ad5c30e0a2649b600366e", "cast_id": 24, "profile_path": "/snxVGg7fJgxh03Q10PpWO1eayJM.jpg", "order": 14}, {"name": "James Wilcox", "character": "Charlie Newhouse (Radio DJ)", "id": 151278, "credit_id": "533cf4be9251417600001236", "cast_id": 16, "profile_path": "/uIWOVeYs4Vb1QQLOmnugug7yScs.jpg", "order": 15}, {"name": "Jolene Blalock", "character": "Catalina", "id": 68276, "credit_id": "533c5b8c92514175fa00019f", "cast_id": 8, "profile_path": "/bFnTimSY5Nj7DjBfjU61xJi03Kn.jpg", "order": 16}, {"name": "Melissa Paulo", "character": "Rosie", "id": 1384191, "credit_id": "5460e96ac3a368535800bc1f", "cast_id": 25, "profile_path": "/wdotSdtf3PdVR66zeuXw48cyNEk.jpg", "order": 17}, {"name": "Erin Brehm", "character": "Beth", "id": 1384197, "credit_id": "5460eb600e0a267638000476", "cast_id": 26, "profile_path": "/gUZZkoo6qguhfR8QyXKircuFJdf.jpg", "order": 18}, {"name": "Kumail Nanjiani", "character": "Punit", "id": 466505, "credit_id": "5460ec79c3a3686cbb006d26", "cast_id": 27, "profile_path": "/x4nAztHY72SVciRfxEsbhIVTsIu.jpg", "order": 19}, {"name": "Artemis Pebdani", "character": "Kia", "id": 1214638, "credit_id": "5460f95ac3a3686f35000143", "cast_id": 28, "profile_path": "/9V2A5pvN6h68tYjeahzezT6Nx2q.jpg", "order": 20}, {"name": "Melvin Brown", "character": "Bodyguard", "id": 1384234, "credit_id": "5460f9d90e0a2672a000016a", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Osmani Rodriguez", "character": "Principal Rodriguez", "id": 205231, "credit_id": "5460fbc60e0a2672aa00015b", "cast_id": 30, "profile_path": "/4fdKhgocjup694TreYRWe7ixDmq.jpg", "order": 22}, {"name": "Samil Battenfeld", "character": "Helper", "id": 1384236, "credit_id": "5460fc090e0a2672a3000180", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Dave Allen", "character": "Mailman", "id": 88971, "credit_id": "5460fcaf0e0a2672b600016e", "cast_id": 32, "profile_path": "/rvSLaWzULGUqwieZyMJ3BNCZYTd.jpg", "order": 24}, {"name": "Celeste Oliva", "character": "Doctor", "id": 1384237, "credit_id": "5460fd6b0e0a2672a70001a0", "cast_id": 33, "profile_path": "/pHQTi9a8IRnbg6TwyrZg3lrxjQy.jpg", "order": 25}, {"name": "Alexis Rosasco", "character": "Parent", "id": 1384239, "credit_id": "5460fe4a0e0a2672aa0001a8", "cast_id": 34, "profile_path": "/5RnEdZtBywxqkmiHOWt4JLOtDOv.jpg", "order": 26}], "directors": [{"name": "Jake Kasdan", "department": "Directing", "job": "Director", "credit_id": "52fe4e6e9251416c75156335", "profile_path": "/1jmlwJ7Y0a7fp28bJLr73u12wbv.jpg", "id": 51851}], "vote_average": 5.7, "runtime": 97}, "664": {"poster_path": "/tKdDCkmb6obEhWEMLgGUUz5nDNs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 494471524, "overview": "TV weatherman Bill Harding is trying to get his tornado-hunter wife, Jo, to sign divorce papers so he can marry his girlfriend Melissa. But Mother Nature, in the form of a series of intense storms sweeping across Oklahoma, has other plans. Soon the three have joined the team of stormchasers as they attempt to insert a revolutionary measuring device into the very heart of several extremely violent tornados.", "video": false, "id": 664, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Twister", "tagline": "The Dark Side of Nature.", "vote_count": 279, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117998", "adult": false, "backdrop_path": "/gIGYWlwXUUbyx2gjLZcQ7G3i5rO.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1996-05-09", "popularity": 0.671131870010036, "original_title": "Twister", "budget": 92000000, "cast": [{"name": "Helen Hunt", "character": "Dr. Jo Harding", "id": 9994, "credit_id": "52fe4266c3a36847f801b91b", "cast_id": 22, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Bill Harding", "id": 2053, "credit_id": "52fe4266c3a36847f801b91f", "cast_id": 23, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Dr. Jonas Miller", "id": 2130, "credit_id": "52fe4266c3a36847f801b923", "cast_id": 24, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Jami Gertz", "character": "Dr. Melissa Reeves", "id": 9995, "credit_id": "52fe4266c3a36847f801b927", "cast_id": 25, "profile_path": "/gqmX3nFtx1pFfuXoR0QR608eWT2.jpg", "order": 3}, {"name": "Philip Seymour Hoffman", "character": "Dustin Davis", "id": 1233, "credit_id": "52fe4266c3a36847f801b92b", "cast_id": 26, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 4}, {"name": "Lois Smith", "character": "Meg Greene", "id": 2207, "credit_id": "52fe4266c3a36847f801b92f", "cast_id": 27, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 5}, {"name": "Alan Ruck", "character": "Robert 'Rabbit' Nurick", "id": 2394, "credit_id": "52fe4266c3a36847f801b933", "cast_id": 28, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 6}, {"name": "Sean Whalen", "character": "Allan Sanders", "id": 9996, "credit_id": "52fe4266c3a36847f801b937", "cast_id": 29, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 7}, {"name": "Scott Thomson", "character": "Jason 'Preacher' Rowe", "id": 9997, "credit_id": "52fe4266c3a36847f801b93b", "cast_id": 30, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 8}, {"name": "Todd Field", "character": "Tim 'Beltzer' Lewis", "id": 5010, "credit_id": "52fe4266c3a36847f801b93f", "cast_id": 31, "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "order": 9}, {"name": "Joey Slotnick", "character": "Joey", "id": 9998, "credit_id": "52fe4266c3a36847f801b943", "cast_id": 32, "profile_path": "/mEMRP0j65jpYVI4Xv5o0slFpRxP.jpg", "order": 10}, {"name": "Wendle Josepher", "character": "Haynes", "id": 9999, "credit_id": "52fe4266c3a36847f801b947", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Jeremy Davies", "character": "Laurence", "id": 4654, "credit_id": "52fe4266c3a36847f801b94b", "cast_id": 34, "profile_path": "/dFlfCgcqovVol4JOV63ATM76Zbh.jpg", "order": 12}, {"name": "Zach Grenier", "character": "Eddie", "id": 7471, "credit_id": "52fe4266c3a36847f801b94f", "cast_id": 35, "profile_path": "/kYijshMQiGA3RP8bXFZ93GR4j8W.jpg", "order": 13}, {"name": "Gregory Sporleder", "character": "Willie", "id": 10000, "credit_id": "52fe4266c3a36847f801b953", "cast_id": 36, "profile_path": null, "order": 14}, {"name": "Alexa PenaVega", "character": "Jo Harding age 6", "id": 57674, "credit_id": "54cf6651c3a3687f820080b4", "cast_id": 37, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 15}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe4266c3a36847f801b89f", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 5.8, "runtime": 113}, "3563": {"poster_path": "/5WcTpKineI5CEae8g4GFhkMCmTr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 186054174, "overview": "Firefighters Chuck Ford and Larry Valentine are guy's guys, loyal to the core -- which is why when widower Larry asks Chuck to pose as his gay lover so that he can get domestic partner benefits for his kids, his buddy agrees. Things get dicey, however, when a bureaucrat comes calling, and the boys are forced to present a picture of domestic bliss.", "video": false, "id": 3563, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "I Now Pronounce You Chuck & Larry", "tagline": "They're as straight as can be, but don't tell anyone.", "vote_count": 182, "homepage": "http://www.chuckandlarry.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0762107", "adult": false, "backdrop_path": "/c6tx2v4DCiiHqJZhGd1dq1jJpn9.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Universal Pictures", "id": 33}], "release_date": "2007-07-19", "popularity": 0.907883642201435, "original_title": "I Now Pronounce You Chuck & Larry", "budget": 85000000, "cast": [{"name": "Jessica Biel", "character": "Alex McDonough", "id": 10860, "credit_id": "52fe439cc3a36847f8061b9d", "cast_id": 12, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 0}, {"name": "Ving Rhames", "character": "Fred G. Duncan", "id": 10182, "credit_id": "52fe439cc3a36847f8061ba1", "cast_id": 14, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Clinton Fitzer", "id": 884, "credit_id": "52fe439cc3a36847f8061ba5", "cast_id": 15, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Nicholas Turturro", "character": "Renaldo Pinera", "id": 32897, "credit_id": "52fe439cc3a36847f8061ba9", "cast_id": 16, "profile_path": "/wEHGvoVgA7fEl93jmAYD3JRsX3b.jpg", "order": 3}, {"name": "Allen Covert", "character": "Steve", "id": 20818, "credit_id": "52fe439cc3a36847f8061bad", "cast_id": 17, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 4}, {"name": "Rachel Dratch", "character": "Benefits Supervisor", "id": 32905, "credit_id": "52fe439cc3a36847f8061bf3", "cast_id": 31, "profile_path": "/pVHUp99e3MJU9K326KTeDECl3S3.jpg", "order": 5}, {"name": "Nick Swardson", "character": "Kevin McDonough", "id": 32907, "credit_id": "52fe439cc3a36847f8061bf7", "cast_id": 33, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 6}, {"name": "Dan Aykroyd", "character": "Captain Phineas J. Tucker", "id": 707, "credit_id": "52fe439cc3a36847f8061bfb", "cast_id": 34, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 7}, {"name": "Richard Chamberlain", "character": "Councilman Banks", "id": 28906, "credit_id": "52fe439cc3a36847f8061bff", "cast_id": 35, "profile_path": "/eKdKTv9k15vz5ag6CqFF8eKXcvO.jpg", "order": 8}, {"name": "Adam Sandler", "character": "Charles \"Chuck\" Levine", "id": 19292, "credit_id": "52fe439cc3a36847f8061c09", "cast_id": 37, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 9}, {"name": "Kevin James", "character": "Lawrence \"Larry\" Valentine", "id": 32895, "credit_id": "52fe439cc3a36847f8061c0d", "cast_id": 38, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 10}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe439cc3a36847f8061b69", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 5.9, "runtime": 115}, "19959": {"poster_path": "/pHAnrezPCpWzNYYceLivTMcQ4jM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117290119, "overview": "Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop (Willis) is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.", "video": false, "id": 19959, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Surrogates", "tagline": "How do you save humanity when the only thing that's real is you?", "vote_count": 335, "homepage": "http://chooseyoursurrogate.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0986263", "adult": false, "backdrop_path": "/lQ872mmHvHXip5sC1t0cvCSP8IO.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Mandeville Films", "id": 10227}, {"name": "Top Shelf Productions", "id": 41978}], "release_date": "2009-09-24", "popularity": 0.744688554639294, "original_title": "Surrogates", "budget": 80000000, "cast": [{"name": "Bruce Willis", "character": "Agent Greer", "id": 62, "credit_id": "52fe47fc9251416c750ac1f5", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Peters", "id": 8329, "credit_id": "52fe47fc9251416c750ac1f9", "cast_id": 2, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Maggie", "id": 10882, "credit_id": "52fe47fc9251416c750ac20f", "cast_id": 6, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "James Cromwell", "character": "Canter", "id": 2505, "credit_id": "52fe47fc9251416c750ac213", "cast_id": 7, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Ving Rhames", "character": "Prophet", "id": 10182, "credit_id": "52fe47fc9251416c750ac217", "cast_id": 8, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 4}, {"name": "Helena Mattsson", "character": "JJ", "id": 113676, "credit_id": "52fe47fc9251416c750ac21b", "cast_id": 9, "profile_path": "/jXksDiD2NATlan04QXqKusOx5XY.jpg", "order": 5}, {"name": "Boris Kodjoe", "character": "Andrew Stone", "id": 80758, "credit_id": "52fe47fc9251416c750ac21f", "cast_id": 10, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 6}, {"name": "Ian Novick", "character": "Andre", "id": 587701, "credit_id": "52fe47fc9251416c750ac223", "cast_id": 11, "profile_path": "/aHDg0cm7c0A1b0FE9K1h7P5BgRD.jpg", "order": 7}, {"name": "Devin Ratray", "character": "Bobby", "id": 11516, "credit_id": "52fe47fc9251416c750ac227", "cast_id": 12, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 8}, {"name": "Jack Noseworthy", "character": "Strickland", "id": 22133, "credit_id": "52fe47fc9251416c750ac22b", "cast_id": 13, "profile_path": "/g30R5ax6RSN8OSdsWZnG2IhLDFT.jpg", "order": 9}, {"name": "Danny F. Smith", "character": "Victim", "id": 172303, "credit_id": "52fe47fc9251416c750ac22f", "cast_id": 14, "profile_path": "/kHGOQ6V7aA7fDSvUZrwoJX2jrPR.jpg", "order": 10}, {"name": "Jeffrey De Serrano", "character": "Armando", "id": 1016151, "credit_id": "52fe47fc9251416c750ac233", "cast_id": 15, "profile_path": "/sg7Nb65NnNWqpmFRUw4s5ynuXbZ.jpg", "order": 11}, {"name": "Michael Cudlitz", "character": "Colonel Brendon", "id": 52415, "credit_id": "52fe47fc9251416c750ac237", "cast_id": 16, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 12}, {"name": "Trevor Donovan", "character": "Surrie / Greer", "id": 1233560, "credit_id": "52fe47fc9251416c750ac23b", "cast_id": 17, "profile_path": "/4S4JlcxIHpU6UXnskZucQo8zOHE.jpg", "order": 13}], "directors": [{"name": "Jonathan Mostow", "department": "Directing", "job": "Director", "credit_id": "52fe47fc9251416c750ac1ff", "profile_path": "/hHJjES7xDqHhFhyPvqytwJ8yGk3.jpg", "id": 7213}], "vote_average": 5.8, "runtime": 89}, "11770": {"poster_path": "/agSrcqz39QfPNm0ogoGLUuzRbLV.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 0, "overview": "A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.", "video": false, "id": 11770, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Shaolin Soccer", "tagline": "Get ready to kick some grass!", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0286112", "adult": false, "backdrop_path": "/tMxePXvxk4iUEAVS47IHyFhzkLX.jpg", "production_companies": [], "release_date": "2001-07-12", "popularity": 1.17154115950194, "original_title": "Siu lam juk kau", "budget": 0, "cast": [{"name": "Stephen Chow", "character": "Sing", "id": 57607, "credit_id": "52fe44819251416c75037319", "cast_id": 11, "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "order": 0}, {"name": "Ng Man-Tat", "character": "Fung", "id": 70437, "credit_id": "52fe44819251416c7503731d", "cast_id": 12, "profile_path": "/96P13UdhCIQafjgJVdA9C7oIQMc.jpg", "order": 1}, {"name": "Patrick Tse Yin", "character": "Hung", "id": 544796, "credit_id": "52fe44819251416c75037337", "cast_id": 26, "profile_path": "/xjPwZ1TnOovjHyXXD7b0rhUmSJW.jpg", "order": 2}, {"name": "Zhao Wei", "character": "Mui", "id": 77304, "credit_id": "52fe44819251416c75037321", "cast_id": 15, "profile_path": "/a7GiAfe9QnTrgrgzripsxAjNu3n.jpg", "order": 3}, {"name": "Wong Yat-Fei", "character": "Iron Head", "id": 956575, "credit_id": "52fe44819251416c75037343", "cast_id": 29, "profile_path": "/saQyJq8qNGoOKMshjMOqmU1q4uZ.jpg", "order": 4}, {"name": "Tenky Tin Kai-Man", "character": "Iron Shirt", "id": 1136808, "credit_id": "52fe44819251416c7503734b", "cast_id": 31, "profile_path": "/lCcreZ88cFxhUgw0O7bVwdZc0zY.jpg", "order": 5}, {"name": "Mok Mei-Lam", "character": "Hooking Leg", "id": 1265974, "credit_id": "52fe44819251416c75037347", "cast_id": 30, "profile_path": "/4vtkCYzxWvxP2aPbwTGMcBDPw0Z.jpg", "order": 6}, {"name": "Danny Chan Kwok-Kwan", "character": "Empty Hands", "id": 1173223, "credit_id": "52fe44819251416c7503734f", "cast_id": 32, "profile_path": "/lo1Rh5BoWAsXv8xWP5sfZhLMavh.jpg", "order": 7}, {"name": "Lam Tze-Chung", "character": "Weight Vest", "id": 545277, "credit_id": "52fe44819251416c75037353", "cast_id": 33, "profile_path": "/pP2Y4dTsRKUgPe9NjYG3quTwLaK.jpg", "order": 8}, {"name": "Karen Mok", "character": "Dragon Twin", "id": 57831, "credit_id": "52fe44819251416c7503733b", "cast_id": 27, "profile_path": "/hfxRryhoRtT05ukFa7ooSM8pDhN.jpg", "order": 9}, {"name": "Cecilia Cheung", "character": "Dragon Twin", "id": 20652, "credit_id": "52fe44819251416c7503733f", "cast_id": 28, "profile_path": "/wmoULllC3ik5itmFJJmYuBaxaCX.jpg", "order": 10}, {"name": "Lee Kin-Yan", "character": "Manny", "id": 237235, "credit_id": "52fe44819251416c75037357", "cast_id": 34, "profile_path": "/d8a881LJd8Mf4eprYS2tDbPjuVe.jpg", "order": 11}], "directors": [{"name": "Stephen Chow", "department": "Directing", "job": "Director", "credit_id": "52fe44819251416c750372f7", "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "id": 57607}], "vote_average": 6.5, "runtime": 113}, "3580": {"poster_path": "/qtte2n6ygA1zVG5kLrjUGui28TJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113020255, "overview": "Christine Collins is overjoyed when her kidnapped son is brought back home. But when Christine suspects that the boy returned to her isn't her child, the police captain has her committed to an asylum.", "video": false, "id": 3580, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}], "title": "Changeling", "tagline": "To find her son, she did what no one else dared.", "vote_count": 291, "homepage": "http://www.changelingmovie.net", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0824747", "adult": false, "backdrop_path": "/mYNXGr8HNS1TO7wrQVSywrlduk9.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Malpaso Productions", "id": 171}, {"name": "Relativity Media", "id": 7295}], "release_date": "2008-05-20", "popularity": 0.529123663212888, "original_title": "Changeling", "budget": 55000000, "cast": [{"name": "Angelina Jolie", "character": "Christine Collins", "id": 11701, "credit_id": "52fe439ec3a36847f80622b3", "cast_id": 6, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Jeffrey Donovan", "character": "J.J. Jones", "id": 52886, "credit_id": "52fe439ec3a36847f80622b7", "cast_id": 7, "profile_path": "/5i47zZDpnAjLBtQdlqhg5AIYCuT.jpg", "order": 1}, {"name": "John Malkovich", "character": "Rev. Gustav Briegleb", "id": 6949, "credit_id": "52fe439ec3a36847f80622bb", "cast_id": 8, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Geoff Pierson", "character": "S.S. Hahn", "id": 25879, "credit_id": "52fe439ec3a36847f80622bf", "cast_id": 9, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 3}, {"name": "Amy Ryan", "character": "Character", "id": 39388, "credit_id": "52fe439ec3a36847f80622c3", "cast_id": 10, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 4}, {"name": "Gattlin Griffith", "character": "Walter Collins", "id": 117885, "credit_id": "52fe439ec3a36847f80622c7", "cast_id": 11, "profile_path": "/ac5MJnC9olgP8bhUnLfLfBP4BYy.jpg", "order": 5}, {"name": "Michelle Gunn", "character": "Sandy", "id": 85101, "credit_id": "52fe439ec3a36847f80622cb", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Frank Wood", "character": "Ben Harris", "id": 52021, "credit_id": "52fe439ec3a36847f80622cf", "cast_id": 18, "profile_path": "/7g06FytDzIpbRTw7ONlB2ofara5.jpg", "order": 7}, {"name": "Colm Feore", "character": "Chief James E. Davis", "id": 10132, "credit_id": "52fe439ec3a36847f80622d3", "cast_id": 21, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 8}, {"name": "Michael Kelly", "character": "Detective Lester Ybarra", "id": 50217, "credit_id": "52fe439ec3a36847f80622d7", "cast_id": 24, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 9}, {"name": "Denis O'Hare", "character": "Dr. Jonathan Steele", "id": 81681, "credit_id": "52fe439ec3a36847f80622db", "cast_id": 25, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 10}, {"name": "Jeffrey Hutchinson", "character": "Mr. Clay", "id": 1356750, "credit_id": "53fabdd7c3a3687355003df7", "cast_id": 35, "profile_path": "/5SIRl7ajVVwI2621SXwqMAvofxM.jpg", "order": 11}, {"name": "Devon Conti", "character": "Arthur Hutchins", "id": 1448560, "credit_id": "551cb708c3a3680cc0000870", "cast_id": 37, "profile_path": null, "order": 12}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe439ec3a36847f8062297", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.9, "runtime": 141}, "11774": {"poster_path": "/dHQMAj9E2G2ewjN1aCOPubsZaj1.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 209073645, "overview": "Three wealthy children's parents are killed in a fire. When they are sent to a distant relative, they find out that he is plotting to kill them and seize their fortune.", "video": false, "id": 11774, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Lemony Snicket's A Series of Unfortunate Events", "tagline": "Darkening theaters December 17.", "vote_count": 293, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0339291", "adult": false, "backdrop_path": "/Sd1dZccAaaVQeFebPePfKyv6uJ.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 2 KG", "id": 11930}, {"name": "Parkes+MacDonald Image Nation", "id": 49325}], "release_date": "2004-12-17", "popularity": 0.838309197190929, "original_title": "Lemony Snicket's A Series of Unfortunate Events", "budget": 140000000, "cast": [{"name": "Jim Carrey", "character": "Count Olaf", "id": 206, "credit_id": "52fe44829251416c75037565", "cast_id": 13, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Aunt Josephine", "id": 5064, "credit_id": "52fe44829251416c75037569", "cast_id": 14, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Jude Law", "character": "Lemony Snicket (voice)", "id": 9642, "credit_id": "52fe44829251416c7503756d", "cast_id": 15, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Emily Browning", "character": "Violet Baudelaire", "id": 70456, "credit_id": "52fe44829251416c75037571", "cast_id": 16, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 3}, {"name": "Kara Hoffman", "character": "Sunny", "id": 146449, "credit_id": "52fe44829251416c7503757b", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Shelby Hoffman", "character": "Sunny", "id": 146450, "credit_id": "52fe44829251416c7503757f", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Liam Aiken", "character": "Klaus", "id": 19977, "credit_id": "52fe44829251416c75037583", "cast_id": 21, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 6}, {"name": "Timothy Spall", "character": "Mr. Poe", "id": 9191, "credit_id": "52fe44829251416c75037587", "cast_id": 22, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 7}, {"name": "Catherine O'Hara", "character": "Justice Strauss", "id": 11514, "credit_id": "52fe44829251416c7503758b", "cast_id": 23, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 8}, {"name": "Billy Connolly", "character": "Uncle Monty", "id": 9188, "credit_id": "52fe44829251416c7503758f", "cast_id": 24, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 9}, {"name": "Luis Guzm\u00e1n", "character": "Bald man", "id": 40481, "credit_id": "52fe44829251416c75037593", "cast_id": 25, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 10}, {"name": "Jamie Harris", "character": "Hook-Handed Man", "id": 111195, "credit_id": "52fe44829251416c75037597", "cast_id": 26, "profile_path": "/hE8Q0EtDKKgSeSfTm5wTU6QflrS.jpg", "order": 11}, {"name": "Craig Ferguson", "character": "Person of Indeterminate Gender", "id": 24264, "credit_id": "52fe44829251416c7503759b", "cast_id": 27, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 12}, {"name": "Jennifer Coolidge", "character": "White Faced Woman", "id": 38334, "credit_id": "52fe44829251416c7503759f", "cast_id": 28, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 13}, {"name": "Jane Adams", "character": "White Faced Woman", "id": 209, "credit_id": "52fe44829251416c750375a3", "cast_id": 29, "profile_path": "/HbQfL01xmV1psnh0WvldIBzDg3.jpg", "order": 14}, {"name": "Cedric the Entertainer", "character": "Constable", "id": 5726, "credit_id": "52fe44829251416c750375a7", "cast_id": 30, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 15}, {"name": "Bob Clendenin", "character": "Grocery Clerk", "id": 129661, "credit_id": "52fe44829251416c750375ab", "cast_id": 31, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 16}, {"name": "Lenny Clarke", "character": "Gruff Grocer", "id": 87131, "credit_id": "52fe44829251416c750375af", "cast_id": 32, "profile_path": "/7JdEGLygOzrvjiOEvg7R4T3t0xJ.jpg", "order": 17}, {"name": "John Dexter", "character": "Gustav", "id": 553, "credit_id": "52fe44829251416c750375b7", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Deborah Theaker", "character": "Mrs. Poe", "id": 167212, "credit_id": "52fe44829251416c750375bb", "cast_id": 35, "profile_path": "/w742zR3zkSbDUpfqwvvpCLabq3z.jpg", "order": 20}, {"name": "Fred Gallo", "character": "Judge", "id": 1300109, "credit_id": "54888e3a92514151f8001d4b", "cast_id": 47, "profile_path": null, "order": 21}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe44829251416c75037531", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 6.2, "runtime": 108}, "11775": {"poster_path": "/7oWPCwJkgOw0ZfrU2TC7mqLm0ex.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119940815, "overview": "A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.", "video": false, "id": 11775, "genres": [{"id": 35, "name": "Comedy"}], "title": "Intolerable Cruelty", "tagline": "They can't keep their hands off each others assets.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0138524", "adult": false, "backdrop_path": "/v9jKlRt9PYJ4NWVkSz3Ozkr8zdv.jpg", "production_companies": [{"name": "Mike Zoss Productions", "id": 2092}, {"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Alphaville Productions", "id": 6556}], "release_date": "2003-09-02", "popularity": 1.13920585529577, "original_title": "Intolerable Cruelty", "budget": 60000000, "cast": [{"name": "George Clooney", "character": "Miles Massey", "id": 1461, "credit_id": "52fe44839251416c7503769d", "cast_id": 15, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Marilyn Rexroth", "id": 1922, "credit_id": "52fe44839251416c750376a1", "cast_id": 16, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Edward Herrmann", "character": "Rex Rexroth", "id": 52995, "credit_id": "52fe44839251416c750376a5", "cast_id": 17, "profile_path": "/iA83ozZ11yBlPS4XB0aHENurcl3.jpg", "order": 2}, {"name": "Geoffrey Rush", "character": "Donovan Donaly", "id": 118, "credit_id": "52fe44839251416c750376a9", "cast_id": 18, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Freddy Bender", "id": 28633, "credit_id": "52fe44839251416c750376b3", "cast_id": 20, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Billy Bob Thornton", "character": "Howard D. Doyle", "id": 879, "credit_id": "52fe44839251416c750376b7", "cast_id": 21, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 5}, {"name": "Stacey Travis", "character": "Bonnie Donaly", "id": 31714, "credit_id": "52fe44839251416c750376bb", "cast_id": 22, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 6}, {"name": "Cedric the Entertainer", "character": "Gus Petch", "id": 5726, "credit_id": "52fe44839251416c75037701", "cast_id": 36, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 7}, {"name": "Paul Adelstein", "character": "Wrigley", "id": 17342, "credit_id": "52fe44839251416c75037705", "cast_id": 37, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 8}, {"name": "Julia Duffy", "character": "Sarah Sorkin", "id": 100602, "credit_id": "52fe44839251416c75037709", "cast_id": 38, "profile_path": "/xyBp5eeugdrM0DFBBPjQu47hYLQ.jpg", "order": 9}, {"name": "Jonathan Hadary", "character": "Heinz, the Baron Krauss von Espy", "id": 122245, "credit_id": "52fe44839251416c7503770d", "cast_id": 39, "profile_path": null, "order": 10}, {"name": "Tom Aldredge", "character": "Herb Myerson", "id": 49835, "credit_id": "52fe44839251416c75037711", "cast_id": 40, "profile_path": "/2unZxDykZPj823gr9aDvbSrYyDW.jpg", "order": 11}, {"name": "Jack Kyle", "character": "Ollie Olerud", "id": 110246, "credit_id": "52fe44839251416c75037715", "cast_id": 41, "profile_path": "/tPtVxmTJuzDHIxfKRQLCUqAehIw.jpg", "order": 12}, {"name": "Irwin Keyes", "character": "Wheezy Joe", "id": 13592, "credit_id": "52fe44839251416c75037719", "cast_id": 42, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 13}, {"name": "Judith Drake", "character": "Mrs. Gutman", "id": 109900, "credit_id": "52fe44839251416c7503771d", "cast_id": 43, "profile_path": null, "order": 14}, {"name": "George Ives", "character": "Mrs. Gutman's Lawyer", "id": 151598, "credit_id": "52fe44839251416c75037721", "cast_id": 44, "profile_path": null, "order": 15}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44839251416c75037651", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44839251416c75037657", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 5.6, "runtime": 100}, "11778": {"poster_path": "/slNJESItHPqp1CENEJQUPw8d7WE.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50000000, "overview": "A group of working-class friends decides to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.", "video": false, "id": 11778, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "The Deer Hunter", "tagline": "One of the most important and powerful films of all time!", "vote_count": 236, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0077416", "adult": false, "backdrop_path": "/6y7tez5wmDxe3NktQQAQxO9OGKP.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "EMI Films Ltd.", "id": 538}], "release_date": "1978-12-08", "popularity": 0.941831462635125, "original_title": "The Deer Hunter", "budget": 15000000, "cast": [{"name": "Robert De Niro", "character": "Michael Vronsky", "id": 380, "credit_id": "52fe44849251416c750378c7", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "John Cazale", "character": "Stan", "id": 3096, "credit_id": "52fe44849251416c750378d7", "cast_id": 15, "profile_path": "/weAjoU12KcVhIePI8YwxKkO4vbX.jpg", "order": 1}, {"name": "John Savage", "character": "Steven Pushkov", "id": 47879, "credit_id": "52fe44849251416c750378cf", "cast_id": 13, "profile_path": "/ddGrvKHqhziYw9r6U1wu0VDLPYn.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Nikanor \u201eNick\u201c Chevotarevich", "id": 4690, "credit_id": "52fe44849251416c750378cb", "cast_id": 12, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Meryl Streep", "character": "Linda", "id": 5064, "credit_id": "52fe44849251416c750378d3", "cast_id": 14, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 4}, {"name": "George Dzundza", "character": "John", "id": 10477, "credit_id": "52fe44849251416c750378db", "cast_id": 16, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 5}, {"name": "Chuck Aspegren", "character": "Axel", "id": 123056, "credit_id": "52fe44849251416c750378df", "cast_id": 17, "profile_path": "/tWVzZsHizswaLalLkGjHisacNST.jpg", "order": 6}, {"name": "Shirley Stoler", "character": "Steven's Mother", "id": 67513, "credit_id": "52fe44849251416c750378e3", "cast_id": 18, "profile_path": "/cRMsHh1giZv4ha5tSeXmHBu0LDQ.jpg", "order": 7}, {"name": "Rutanya Alda", "character": "Angela", "id": 80135, "credit_id": "52fe44849251416c750378e7", "cast_id": 19, "profile_path": "/gVOyv8nNYwXmQU7kixKxILUMM50.jpg", "order": 8}, {"name": "Pierre Segui", "character": "Julien", "id": 133859, "credit_id": "52fe44849251416c750378eb", "cast_id": 20, "profile_path": "/XYGQKCDdGtT3XNbUqCy83hoNhZ.jpg", "order": 9}, {"name": "Mady Kaplan", "character": "Axel's Girl", "id": 133860, "credit_id": "52fe44849251416c750378ef", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Amy Wright", "character": "Bridesmaid", "id": 87007, "credit_id": "52fe44849251416c750378f3", "cast_id": 22, "profile_path": "/mEV42JRtrTTZg92GjyjRkQSXpsn.jpg", "order": 11}, {"name": "Mary Ann Haenel", "character": "Stan's Girl", "id": 133861, "credit_id": "52fe44849251416c750378f7", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Joe Grifasi", "character": "Bandleader", "id": 4887, "credit_id": "52fe44849251416c750378ff", "cast_id": 25, "profile_path": "/m3phT21garD58hEADUTl9RWWNrL.jpg", "order": 14}, {"name": "Paul D'Amato", "character": "Sergeant", "id": 134148, "credit_id": "53c41f4c0e0a26157c00cdeb", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Richard Kuss", "character": "Linda's Father", "id": 1222806, "credit_id": "54f5d1d29251412ba90023a1", "cast_id": 64, "profile_path": "/6MtqcyZklzUK03uVGV8ARZwSaPp.jpg", "order": 16}, {"name": "Christopher Colombi Jr.", "character": "Wedding Man", "id": 1434628, "credit_id": "54f5d4609251412ba90023c0", "cast_id": 65, "profile_path": null, "order": 17}, {"name": "Victoria Karnafel", "character": "Sad Looking Girl", "id": 1434629, "credit_id": "54f5d4c29251412ba20025df", "cast_id": 66, "profile_path": null, "order": 18}, {"name": "Jack Scardino", "character": "Cold Old Man", "id": 1434630, "credit_id": "54f5d5879251412bb60024eb", "cast_id": 67, "profile_path": null, "order": 19}, {"name": "Joe Strnad", "character": "Bingo Caller", "id": 1434631, "credit_id": "54f5d60cc3a36834f30024a8", "cast_id": 68, "profile_path": null, "order": 20}, {"name": "Helen Tomko", "character": "Helen", "id": 1434632, "credit_id": "54f5d66f9251412ba90023eb", "cast_id": 69, "profile_path": null, "order": 21}, {"name": "Dennis Watlington", "character": "Cab Driver", "id": 1258752, "credit_id": "54f5f32d925141068b000195", "cast_id": 70, "profile_path": "/mB23y8qO2I3lxvVV7n4OYwmMHFn.jpg", "order": 22}, {"name": "Charlene Darrow", "character": "Red Head", "id": 1434671, "credit_id": "54f5f362c3a36815520001d0", "cast_id": 71, "profile_path": null, "order": 23}, {"name": "Jane-Colette Disko", "character": "Girl Checker", "id": 1434672, "credit_id": "54f5f3aac3a368153e0001b1", "cast_id": 72, "profile_path": null, "order": 24}, {"name": "Michael Wollet", "character": "Stock Boy", "id": 1434673, "credit_id": "54f5f3fc92514106830001fe", "cast_id": 73, "profile_path": null, "order": 25}, {"name": "Robert Beard", "character": "World War Veteran", "id": 1434674, "credit_id": "54f5f445c3a36815570001bf", "cast_id": 74, "profile_path": null, "order": 26}, {"name": "Joe Dzizmba", "character": "World War Veteran", "id": 1435119, "credit_id": "54f811189251416ee4003382", "cast_id": 75, "profile_path": null, "order": 27}, {"name": "Stephen Kopestonsky", "character": "Priest", "id": 1435120, "credit_id": "54f8116b92514118ba000c99", "cast_id": 76, "profile_path": null, "order": 28}, {"name": "John F. Buchmelter III", "character": "Bar Patron", "id": 1435121, "credit_id": "54f8120b92514151c6003fe5", "cast_id": 77, "profile_path": null, "order": 29}, {"name": "Frank Devore", "character": "Barman", "id": 1435124, "credit_id": "54f81255c3a368131c000b93", "cast_id": 78, "profile_path": null, "order": 30}, {"name": "Tom Becker", "character": "Doctor", "id": 1435133, "credit_id": "54f812f9c3a36833bb003ba6", "cast_id": 79, "profile_path": null, "order": 31}, {"name": "Lynn Kongkham", "character": "Nurse", "id": 1435135, "credit_id": "54f81341c3a368131c000bac", "cast_id": 80, "profile_path": null, "order": 32}, {"name": "Nongnuj Timruang", "character": "Bar Girl", "id": 1435136, "credit_id": "54f81381c3a36833dc00343c", "cast_id": 81, "profile_path": null, "order": 33}, {"name": "Po Pao Pee", "character": "Chinese Referee", "id": 1435138, "credit_id": "54f813f692514118ba000cd4", "cast_id": 82, "profile_path": null, "order": 34}, {"name": "Dale Burroughs", "character": "Embassy Guard", "id": 1435141, "credit_id": "54f8143692514118ba000cdd", "cast_id": 83, "profile_path": null, "order": 35}, {"name": "Parris Hicks", "character": "Sergeant", "id": 1435144, "credit_id": "54f814879251416f370036c7", "cast_id": 84, "profile_path": null, "order": 36}, {"name": "Samui Muang-Intata", "character": "Chinese Bodyguard", "id": 1435145, "credit_id": "54f8150cc3a36834a500388f", "cast_id": 85, "profile_path": null, "order": 37}, {"name": "Sapox Colisium", "character": "Chinese Man", "id": 1435146, "credit_id": "54f8154592514151c6004047", "cast_id": 86, "profile_path": null, "order": 38}, {"name": "Vitoon Winwitoon", "character": "NVA Officer", "id": 1435147, "credit_id": "54f81599c3a36833dc003477", "cast_id": 87, "profile_path": null, "order": 39}, {"name": "Somsak Sengvilai", "character": "V.C. Referee", "id": 1435148, "credit_id": "54f815eb9251411812000cf2", "cast_id": 88, "profile_path": null, "order": 40}, {"name": "Charan Nusvanon", "character": "Chinese Boss", "id": 1435149, "credit_id": "54f8162c9251416ee4003428", "cast_id": 89, "profile_path": null, "order": 41}, {"name": "Jiam Gongtongsmoot", "character": "Chinese Man At Door", "id": 1435150, "credit_id": "54f81667c3a368351d003782", "cast_id": 90, "profile_path": null, "order": 42}, {"name": "Chai Peyawan", "character": "South Vietnamese Prisoner", "id": 1435153, "credit_id": "54f816aac3a36834a50038c8", "cast_id": 91, "profile_path": null, "order": 43}, {"name": "Mana Hansa", "character": "South Vietnamese Prisoner", "id": 1435154, "credit_id": "54f816fb92514118ba000d55", "cast_id": 92, "profile_path": null, "order": 44}, {"name": "Sombot Jumpanoi", "character": "South Vietnamese Prisoner", "id": 1435155, "credit_id": "54f81754c3a368126c000e2e", "cast_id": 93, "profile_path": null, "order": 45}, {"name": "Phip Manee", "character": "Woman In Village", "id": 1435156, "credit_id": "54f8178d92514124110040ae", "cast_id": 94, "profile_path": null, "order": 46}, {"name": "Ding Santos", "character": "V.C. Guard", "id": 1435159, "credit_id": "54f817e79251416f6e0037ea", "cast_id": 95, "profile_path": null, "order": 47}, {"name": "Krieng Chaiyapuk", "character": "V.C. Guard", "id": 1435160, "credit_id": "54f8184bc3a36833bb003c54", "cast_id": 96, "profile_path": null, "order": 48}, {"name": "Ot Palapoo", "character": "V.C. Guard", "id": 1435161, "credit_id": "54f8188792514118ba000d84", "cast_id": 97, "profile_path": null, "order": 49}, {"name": "Chok Chai Mahasoke", "character": "V.C. Guard", "id": 1435162, "credit_id": "54f818c492514151c60040ae", "cast_id": 98, "profile_path": null, "order": 50}], "directors": [{"name": "Michael Cimino", "department": "Directing", "job": "Director", "credit_id": "52fe44849251416c75037893", "profile_path": "/d3Xzp4OBaATnPEYUYQJEdtgAwCc.jpg", "id": 12114}], "vote_average": 7.3, "runtime": 182}, "60935": {"poster_path": "/a2Cme25fHcSdIQ2wW6aWmE4owUI.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28128670, "overview": "When paleontologist Kate Lloyd travels to an isolated outpost in Antarctica for the expedition of a lifetime, she joins an international team that unearths a remarkable discovery. Their elation quickly turns to fear as they realize that their experiment has freed a mysterious being from its frozen prison. Paranoia spreads like an epidemic as a creature that can mimic anything it touches will pit human against human as it tries to survive and flourish in this spine-tingling thriller.", "video": false, "id": 60935, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Thing", "tagline": "It's Not Human. Yet.", "vote_count": 212, "homepage": "http://www.thethingmovie.net/", "belongs_to_collection": {"backdrop_path": "/pJIVUUcpC3CvgiJlCz4XeEaE5dg.jpg", "poster_path": "/u4Vp4zBvhVg9JYVXQ7dpfYVs3BM.jpg", "id": 245713, "name": "The Thing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "da", "name": "Dansk"}], "imdb_id": "tt0905372", "adult": false, "backdrop_path": "/mspjoQKJ8NSvJZ6BzaM1XKNzofD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Morgan Creek Productions", "id": 10210}, {"name": "Strike Entertainment", "id": 655}], "release_date": "2011-10-14", "popularity": 1.70965582014745, "original_title": "The Thing", "budget": 35000000, "cast": [{"name": "Mary Elizabeth Winstead", "character": "Kate Lloyd", "id": 17628, "credit_id": "52fe463dc3a368484e085d29", "cast_id": 2, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 0}, {"name": "Joel Edgerton", "character": "Sam Carter", "id": 33192, "credit_id": "52fe463dc3a368484e085d35", "cast_id": 5, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 1}, {"name": "Ulrich Thomsen", "character": "Dr. Sander Halvorson", "id": 4455, "credit_id": "52fe463dc3a368484e085d39", "cast_id": 6, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 2}, {"name": "Eric Christian Olsen", "character": "Adam Finch", "id": 29020, "credit_id": "52fe463dc3a368484e085d2d", "cast_id": 3, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 3}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Derek Jameson", "id": 31164, "credit_id": "52fe463dc3a368484e085d31", "cast_id": 4, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 4}, {"name": "Paul Braunstein", "character": "Griggs", "id": 1227613, "credit_id": "53aab90e0e0a2646d80036da", "cast_id": 36, "profile_path": null, "order": 5}, {"name": "Trond Espen Seim", "character": "Edvard Wolner", "id": 79332, "credit_id": "52fe463dc3a368484e085d91", "cast_id": 25, "profile_path": "/lh5lMRUzbyHgu33D9wpGfa1mHbN.jpg", "order": 6}, {"name": "Kim Bubbs", "character": "Juliette", "id": 193045, "credit_id": "52fe463dc3a368484e085d3d", "cast_id": 7, "profile_path": "/AjJ3zYtjeScrx0rbDDpbIczq9UX.jpg", "order": 7}, {"name": "J\u00f8rgen Langhelle", "character": "Lars", "id": 47177, "credit_id": "52fe463dc3a368484e085d49", "cast_id": 11, "profile_path": "/1pd2wczpmimZHxEqe7oLxDGYtJ0.jpg", "order": 8}, {"name": "Jan Gunnar R\u00f8ise", "character": "Olav", "id": 107543, "credit_id": "52fe463dc3a368484e085d4d", "cast_id": 12, "profile_path": "/gAElsJtUNtr3sWAmunFeTfzdGUJ.jpg", "order": 9}, {"name": "Stig Henrik Hoff", "character": "Peder", "id": 76611, "credit_id": "52fe463dc3a368484e085d95", "cast_id": 26, "profile_path": "/wttFoswE1ivZ0NxH8HdR6QEQmYd.jpg", "order": 10}, {"name": "Kristofer Hivju", "character": "Jonas", "id": 571418, "credit_id": "52fe463dc3a368484e085d51", "cast_id": 13, "profile_path": "/a2cyA5B7LV4y2X1dNyUPCrimQ7P.jpg", "order": 11}, {"name": "Carsten Bj\u00f8rnlund", "character": "Karl", "id": 571346, "credit_id": "52fe463dc3a368484e085d45", "cast_id": 9, "profile_path": "/dSuYmtRCYY2hZRvhYYY5Hexg5Gr.jpg", "order": 12}, {"name": "Jonathan Walker", "character": "Colin", "id": 52702, "credit_id": "52fe463dc3a368484e085d41", "cast_id": 8, "profile_path": "/1rIItto71vrSYzcS4yXMsXWk2Yu.jpg", "order": 13}, {"name": "Jo Adrian Haavind", "character": "Henrik", "id": 1334214, "credit_id": "53aaba7c0e0a2646cc001905", "cast_id": 37, "profile_path": null, "order": 14}, {"name": "Ole Martin Aune Nilsen", "character": "Heli Pilot", "id": 1334215, "credit_id": "53aabac00e0a2646d2001811", "cast_id": 38, "profile_path": null, "order": 15}], "directors": [{"name": "Matthijs van Heijningen", "department": "Directing", "job": "Director", "credit_id": "52fe463dc3a368484e085d25", "profile_path": null, "id": 69339}], "vote_average": 6.0, "runtime": 103}, "3594": {"poster_path": "/ifG0shuMk1jAf7cTutpF25sv3Wu.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77566815, "overview": "Walter Sparrow is an animal control officer that becomes obsessed with a mysterious book that seems to be based on his own life. As soon as he opens the book, he notices strange parallels between what he reads and what he's experienced. But now he's worried that a fictional murder might materialize.", "video": false, "id": 3594, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Number 23", "tagline": "First it takes hold of your mind...then it takes hold of your life.", "vote_count": 273, "homepage": "http://wwws.warnerbros.de/number23/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481369", "adult": false, "backdrop_path": "/ii11g15CmefKS5gLiuMfZYmN9Ct.jpg", "production_companies": [{"name": "Firm Films", "id": 1838}, {"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}], "release_date": "2007-02-23", "popularity": 0.566117273510402, "original_title": "The Number 23", "budget": 30000000, "cast": [{"name": "Jim Carrey", "character": "Walter Sparrow / Fingerling", "id": 206, "credit_id": "52fe439fc3a36847f8062bb7", "cast_id": 21, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Virginia Madsen", "character": "Agatha Sparrow / Fabrizia", "id": 12519, "credit_id": "52fe439fc3a36847f8062bbb", "cast_id": 22, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 1}, {"name": "Logan Lerman", "character": "Robin Sparrow", "id": 33235, "credit_id": "52fe439fc3a36847f8062b65", "cast_id": 5, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Danny Huston", "character": "Isaac French/Dr. Miles Phoenix", "id": 6413, "credit_id": "52fe439fc3a36847f8062b69", "cast_id": 6, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Lynn Collins", "character": "Suicide Blonde", "id": 21044, "credit_id": "52fe439fc3a36847f8062ba3", "cast_id": 16, "profile_path": "/4vjt3TWRbIpNfEeL5pjvDIob599.jpg", "order": 5}, {"name": "Mark Pellegrino", "character": "Kyle Finch", "id": 1236, "credit_id": "52fe439fc3a36847f8062bab", "cast_id": 18, "profile_path": "/ozVIcRFFWyceqjJ69N9oHWYGBBG.jpg", "order": 5}, {"name": "Rhona Mitra", "character": "Laura Tollins", "id": 25702, "credit_id": "52fe439fc3a36847f8062ba7", "cast_id": 17, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 7}, {"name": "Paul Butcher", "character": "Young Fingerling", "id": 33706, "credit_id": "52fe439fc3a36847f8062baf", "cast_id": 19, "profile_path": "/qewV82iTmOX8bSiRzaqDjrJNS3b.jpg", "order": 7}, {"name": "David Stifel", "character": "Hotel Clerk", "id": 33707, "credit_id": "52fe439fc3a36847f8062bb3", "cast_id": 20, "profile_path": "/9TpzuY3YLIHNaRzIAMxvvNNqZZm.jpg", "order": 7}, {"name": "Corey Stoll", "character": "Sergeant Burns", "id": 74541, "credit_id": "52fe439fc3a36847f8062bbf", "cast_id": 23, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 8}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe439fc3a36847f8062b5b", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 6.1, "runtime": 101}, "3595": {"poster_path": "/96pdw2qcx4g25vZLywNi4XRQVqm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 309492681, "overview": "When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.", "video": false, "id": 3595, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Ransom", "tagline": "Someone is going to pay.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117438", "adult": false, "backdrop_path": "/4PCuizEFMmIp2eNC66qj5bHfp3w.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1996-11-08", "popularity": 0.210181241104096, "original_title": "Ransom", "budget": 80000000, "cast": [{"name": "Mel Gibson", "character": "Tom Mullen", "id": 2461, "credit_id": "52fe439fc3a36847f8062c07", "cast_id": 1, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Gary Sinise", "character": "Det. Jimmy Shaker", "id": 33, "credit_id": "52fe43a0c3a36847f8062c5f", "cast_id": 17, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 1}, {"name": "Delroy Lindo", "character": "Agent Lonnie Hawkins", "id": 18792, "credit_id": "52fe43a0c3a36847f8062c63", "cast_id": 18, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 2}, {"name": "Rene Russo", "character": "Katherine Mullen", "id": 14343, "credit_id": "52fe43a0c3a36847f8062c67", "cast_id": 19, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 3}, {"name": "Lili Taylor", "character": "Maris", "id": 3127, "credit_id": "52fe43a0c3a36847f8062c6b", "cast_id": 20, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 4}, {"name": "Brawley Nolte", "character": "Sean Mullen", "id": 33239, "credit_id": "52fe43a0c3a36847f8062c6f", "cast_id": 21, "profile_path": null, "order": 5}, {"name": "Liev Schreiber", "character": "Clark Barnes", "id": 23626, "credit_id": "52fe43a0c3a36847f8062c73", "cast_id": 22, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 6}, {"name": "Donnie Wahlberg", "character": "Cubby Barnes", "id": 2680, "credit_id": "52fe43a0c3a36847f8062c77", "cast_id": 23, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 7}, {"name": "Evan Handler", "character": "Miles Roberts", "id": 3212, "credit_id": "52fe43a0c3a36847f8062c7b", "cast_id": 24, "profile_path": "/bsSNblkDZk0hKIjyPMMt8Hsmbsg.jpg", "order": 8}, {"name": "Nancy Ticotin", "character": "Agent Kimba Welch", "id": 33240, "credit_id": "52fe43a0c3a36847f8062c7f", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Michael Gaston", "character": "Agent Jack Sickler", "id": 33241, "credit_id": "52fe43a0c3a36847f8062c83", "cast_id": 26, "profile_path": "/tAmpD16aVzWbs8evbCFaed9perN.jpg", "order": 10}, {"name": "Kevin Neil McCready", "character": "Agent Paul Rhodes", "id": 33242, "credit_id": "52fe43a0c3a36847f8062c87", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Jos\u00e9 Z\u00fa\u00f1iga", "character": "David Torres", "id": 10963, "credit_id": "52fe43a0c3a36847f8062c8b", "cast_id": 28, "profile_path": "/8RqlMIr7hDRWkph3wqo9BFmbuDo.jpg", "order": 12}, {"name": "Dan Hedaya", "character": "Jackie Brown", "id": 6486, "credit_id": "52fe43a0c3a36847f8062c8f", "cast_id": 29, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 13}, {"name": "Allen Bernstein", "character": "Bob Stone", "id": 33243, "credit_id": "52fe43a0c3a36847f8062c93", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Paul Guilfoyle", "character": "Wallace", "id": 925, "credit_id": "52fe43a0c3a36847f8062c97", "cast_id": 31, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 15}, {"name": "Iraida Polanco", "character": "Fatima", "id": 26721, "credit_id": "52fe43a0c3a36847f8062c9b", "cast_id": 32, "profile_path": null, "order": 16}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe439fc3a36847f8062c0d", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.0, "runtime": 117}, "3597": {"poster_path": "/pq2I0saIQtXeocNP4uBBR3qLOtk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125586134, "overview": "As they celebrate their high school graduation, four friends are involved in a hit-and-run accident when their car hits and apparently kills a pedestrian on an isolated roadway. They dispose of the body and vow to keep the incident a secret, a year later somebody starts sending them letters bearing the warning \"I Know What You Did Last Summer.\"", "video": false, "id": 3597, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "I Know What You Did Last Summer", "tagline": "If you're going to bury the truth, make sure it stays buried.", "vote_count": 142, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bhr2Pc6b5o09DSFrpYkJuAew830.jpg", "poster_path": "/ykz6t4RZm0MrKHS243NRwCHz4XU.jpg", "id": 3601, "name": "I Know What You Did Last Summer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119345", "adult": false, "backdrop_path": "/3s1jogOznYmG0xPqHE45D5ir3bx.jpg", "production_companies": [{"name": "Summer Knowledge LLC", "id": 1464}, {"name": "Mandalay Entertainment", "id": 1236}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1997-10-17", "popularity": 0.2922355459418, "original_title": "I Know What You Did Last Summer", "budget": 17000000, "cast": [{"name": "Jennifer Love Hewitt", "character": "Julie James", "id": 33259, "credit_id": "52fe43a0c3a36847f8062def", "cast_id": 13, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 0}, {"name": "Sarah Michelle Gellar", "character": "Helen Shivers", "id": 11863, "credit_id": "52fe43a0c3a36847f8062df3", "cast_id": 14, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 1}, {"name": "Ryan Phillippe", "character": "Barry William Cox", "id": 11864, "credit_id": "52fe43a0c3a36847f8062df7", "cast_id": 15, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 2}, {"name": "Freddie Prinze Jr.", "character": "Ray Bronson", "id": 33260, "credit_id": "52fe43a0c3a36847f8062dfb", "cast_id": 16, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 3}, {"name": "Bridgette Wilson", "character": "Elsa Shivers", "id": 20751, "credit_id": "52fe43a0c3a36847f8062dff", "cast_id": 17, "profile_path": "/l5bUegMA9PHoeRgBkio2bE9R7Vj.jpg", "order": 4}, {"name": "Johnny Galecki", "character": "Max Neurick", "id": 16478, "credit_id": "52fe43a0c3a36847f8062e03", "cast_id": 18, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 5}, {"name": "Muse Watson", "character": "Benjamin Willis", "id": 17348, "credit_id": "52fe43a0c3a36847f8062e07", "cast_id": 19, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 6}, {"name": "Anne Heche", "character": "Melissa Egan", "id": 8256, "credit_id": "52fe43a0c3a36847f8062e0b", "cast_id": 20, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 7}, {"name": "Stuart Greer", "character": "Officer David Caporizo", "id": 33262, "credit_id": "52fe43a0c3a36847f8062e0f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Dan Albright", "character": "Sheriff", "id": 33269, "credit_id": "52fe43a0c3a36847f8062e13", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Rasool J'Han", "character": "Deb", "id": 33271, "credit_id": "52fe43a0c3a36847f8062e17", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Jim Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe43a0c3a36847f8062da9", "profile_path": null, "id": 33254}], "vote_average": 5.7, "runtime": 100}, "10157": {"poster_path": "/iNlm1BBGCwfP207QzuUk2Ei13sG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55600000, "overview": "Officer Carey Mahoney and his cohorts have finally graduated from the Police Academy and are about to hit the streets on their first assignment. Question is, are they ready to do battle with a band of graffiti-tagging terrorists? Time will tell, but don't sell short this cheerful band of doltish boys in blue.", "video": false, "id": 10157, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy 2: Their First Assignment", "tagline": "To protect, to serve... and make you laugh. America's funniest crimebusters are back!", "vote_count": 77, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0089822", "adult": false, "backdrop_path": "/phYKGfe75bKeEjeHyuzjsvbeo94.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1985-03-28", "popularity": 1.14515213563843, "original_title": "Police Academy 2: Their First Assignment", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Carey Mahoney", "id": 26472, "credit_id": "52fe43389251416c75007fc5", "cast_id": 9, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Bubba Smith", "character": "Hightower", "id": 57349, "credit_id": "52fe43389251416c75007fc9", "cast_id": 10, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 1}, {"name": "David Graf", "character": "Tackleberry", "id": 57353, "credit_id": "52fe43389251416c75007fcd", "cast_id": 11, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 2}, {"name": "Michael Winslow", "character": "Larvell Jones", "id": 14672, "credit_id": "52fe43389251416c75007fd1", "cast_id": 12, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 3}, {"name": "Bobcat Goldthwait", "character": "Zed", "id": 95024, "credit_id": "52fe43389251416c75007fd5", "cast_id": 13, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 4}, {"name": "Colleen Camp", "character": "Sgt. Kathleen Kirkland", "id": 13023, "credit_id": "52fe43389251416c75007fd9", "cast_id": 14, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 5}, {"name": "Bruce Mahler", "character": "Doug Fackler", "id": 57356, "credit_id": "53c0ba1a0e0a2615890080c3", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Marion Ramsey", "character": "Laverne Hookes", "id": 186816, "credit_id": "53c0ba2f0e0a26158f007c97", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Art Metrano", "character": "Lt. Mauser", "id": 15212, "credit_id": "53c0baae0e0a26157f0082eb", "cast_id": 17, "profile_path": "/3IPQYpit646GjHd1cjfgiqGFfIh.jpg", "order": 8}, {"name": "George Gaynes", "character": "Commandant Lassard", "id": 57351, "credit_id": "53c0bad10e0a26157f0082f4", "cast_id": 18, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 9}, {"name": "Julie Brown", "character": "Chloe", "id": 40680, "credit_id": "53c0bb2f0e0a26158f007cb2", "cast_id": 19, "profile_path": "/8a1NwjIyjOWmYTqdj4fuxqKlzR5.jpg", "order": 10}, {"name": "Tim Kazurinsky", "character": "Merchant", "id": 95216, "credit_id": "53c0bb430e0a261579007f20", "cast_id": 20, "profile_path": null, "order": 11}], "directors": [{"name": "Jerry Paris", "department": "Directing", "job": "Director", "credit_id": "52fe43389251416c75007f97", "profile_path": "/mVcAxdJG3uFVhr5erMCOZvla9UA.jpg", "id": 41720}], "vote_average": 5.6, "runtime": 87}, "3600": {"poster_path": "/j4s1TK90tZWZj7lQ84UDJXHI9Kh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40002112, "overview": "Unfinished business with coed Julie James brings the murderer to the Bahamas to terrorize her and her friends, Karla, Tyrell and Will, during a vacation. Can Ray Bronson who survived a bloody attack alongside Julie two summers ago, get to the island in time to save everyone?", "video": false, "id": 3600, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "I Still Know What You Did Last Summer", "tagline": "Someone is dying for a second chance.", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/bhr2Pc6b5o09DSFrpYkJuAew830.jpg", "poster_path": "/ykz6t4RZm0MrKHS243NRwCHz4XU.jpg", "id": 3601, "name": "I Know What You Did Last Summer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0130018", "adult": false, "backdrop_path": "/ky78pXACtbyxpFRTdT2teXQzwxz.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mandalay Entertainment", "id": 1236}], "release_date": "1998-11-13", "popularity": 0.660363867106392, "original_title": "I Still Know What You Did Last Summer", "budget": 65000000, "cast": [{"name": "Jennifer Love Hewitt", "character": "Julie James", "id": 33259, "credit_id": "52fe43a0c3a36847f8062f31", "cast_id": 14, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 0}, {"name": "Freddie Prinze Jr.", "character": "Ray Bronson", "id": 33260, "credit_id": "52fe43a0c3a36847f8062f35", "cast_id": 15, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 1}, {"name": "Mekhi Phifer", "character": "Tyrell", "id": 327, "credit_id": "52fe43a0c3a36847f8062f39", "cast_id": 16, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 2}, {"name": "Brandy Norwood", "character": "Karla Wilson", "id": 33285, "credit_id": "52fe43a0c3a36847f8062f3d", "cast_id": 17, "profile_path": "/2HA5qGd6MSVM6hqE8yclbpnOfgw.jpg", "order": 3}, {"name": "Muse Watson", "character": "Ben Willis", "id": 17348, "credit_id": "52fe43a0c3a36847f8062f41", "cast_id": 18, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 4}, {"name": "Matthew Settle", "character": "Will Benson", "id": 33286, "credit_id": "52fe43a0c3a36847f8062f45", "cast_id": 19, "profile_path": "/neODd3vTVEb7TXOWEZC44ZZu1yk.jpg", "order": 5}, {"name": "Jennifer Esposito", "character": "Nancy", "id": 18285, "credit_id": "52fe43a0c3a36847f8062f49", "cast_id": 20, "profile_path": "/faY5fwjsJ8da3wJWSE7kQ3MPhgz.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Estes", "id": 8854, "credit_id": "52fe43a0c3a36847f8062f4d", "cast_id": 21, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Jeffrey Combs", "character": "Mr. Brooks", "id": 27993, "credit_id": "52fe43a0c3a36847f8062f51", "cast_id": 22, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 8}, {"name": "John Hawkes", "character": "Dave", "id": 16861, "credit_id": "52fe43a0c3a36847f8062f55", "cast_id": 23, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 9}], "directors": [{"name": "Danny Cannon", "department": "Directing", "job": "Director", "credit_id": "52fe43a0c3a36847f8062ee5", "profile_path": "/9E4Km6y1O0bK3dUSds3smzu20KI.jpg", "id": 33279}], "vote_average": 4.9, "runtime": 100}, "118289": {"poster_path": "/zKhkVQ1tYeDRu5Whxw3nKpH4XW.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 331634, "overview": "During the last two years of her life, Princess Diana (Naomi Watts) campaigns against the use of land mines and has a secret love affair with a Pakistani heart surgeon (Naveen Andrews).", "video": false, "id": 118289, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Diana", "tagline": "The legend is never the whole story", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758595", "adult": false, "backdrop_path": "/fA7AYUtbAkQb2XTEV57mqHGO6v0.jpg", "production_companies": [{"name": "Ecosse Films", "id": 1267}, {"name": "Le Pacte", "id": 5125}, {"name": "Scope Pictures", "id": 11199}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Filmgate Films", "id": 18230}], "release_date": "2013-09-20", "popularity": 1.29983734926955, "original_title": "Diana", "budget": 0, "cast": [{"name": "Naomi Watts", "character": "Princess Diana", "id": 3489, "credit_id": "52fe4bd2c3a36847f821546f", "cast_id": 5, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Naveen Andrews", "character": "Hasnat Khan", "id": 5471, "credit_id": "52fe4bd2c3a36847f8215473", "cast_id": 6, "profile_path": "/8Y6GvOC52mnLyiAg8Oz0IIuuW4m.jpg", "order": 1}, {"name": "Charles Edwards", "character": "Patrick Jephson", "id": 281527, "credit_id": "52fe4bd2c3a36847f8215477", "cast_id": 7, "profile_path": "/qcAysQnmu7Pi96IV85u4YjgqzkQ.jpg", "order": 2}, {"name": "Douglas Hodge", "character": "Paul Burrell", "id": 80149, "credit_id": "52fe4bd2c3a36847f821547b", "cast_id": 8, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 3}, {"name": "Lee Asquith-Coe", "character": "Police Officer", "id": 531772, "credit_id": "52fe4bd2c3a36847f821547f", "cast_id": 9, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 4}, {"name": "Cas Anvar", "character": "Dodi Fayed", "id": 59214, "credit_id": "52fe4bd2c3a36847f8215483", "cast_id": 10, "profile_path": "/m8JWOnvyjpApLc8WUYwJQGrQDG3.jpg", "order": 5}, {"name": "Geraldine James", "character": "Oonagh Toffolo", "id": 11855, "credit_id": "52fe4bd2c3a36847f8215487", "cast_id": 11, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 6}, {"name": "Juliet Stevenson", "character": "Sonia", "id": 6238, "credit_id": "52fe4bd2c3a36847f821548b", "cast_id": 12, "profile_path": "/1LBlN6J5e6kj3y6oxnxErAJidL8.jpg", "order": 7}, {"name": "Laurence Belcher", "character": "William", "id": 456008, "credit_id": "52fe4bd2c3a36847f821548f", "cast_id": 13, "profile_path": "/b8085IGbfe70N80Mz27qhsIz2PH.jpg", "order": 8}, {"name": "Michael Byrne", "character": "Christian Barnard", "id": 742, "credit_id": "52fe4bd2c3a36847f8215493", "cast_id": 14, "profile_path": "/rmgL88xFEk0iBOcCr7d9V6WfaOi.jpg", "order": 9}, {"name": "Douglas Hodge", "character": "Paul Burrell", "id": 80149, "credit_id": "52fe4bd2c3a36847f8215497", "cast_id": 15, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 10}, {"name": "Mary Stockley", "character": "Assistant", "id": 40672, "credit_id": "52fe4bd2c3a36847f821549b", "cast_id": 16, "profile_path": "/duzAifGRp5avCoefoDapemvBL3h.jpg", "order": 11}, {"name": "Chris Cowlin", "character": "Paparazzi", "id": 1182303, "credit_id": "52fe4bd2c3a36847f821549f", "cast_id": 17, "profile_path": "/kta8Iod3TCtAI15DfP51Y4gZ3Ia.jpg", "order": 12}, {"name": "Daniel Pirrie", "character": "Jason Fraser", "id": 1182304, "credit_id": "52fe4bd2c3a36847f82154a3", "cast_id": 18, "profile_path": "/1fOtQSMULTkCCfjlWibZYPTnBDQ.jpg", "order": 13}, {"name": "Raffaello Degruttola", "character": "Mario Brenna", "id": 94137, "credit_id": "52fe4bd2c3a36847f82154a7", "cast_id": 19, "profile_path": "/vV4dZM9fUhekVdaCL2UhkUCh62s.jpg", "order": 14}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe4bd2c3a36847f8215459", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}], "vote_average": 5.3, "runtime": 113}, "28178": {"poster_path": "/3MpVmIg6CgOCUrZ2TZ2P0yitCbM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47801389, "overview": "A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.", "video": false, "id": 28178, "genres": [{"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Hachi: A Dog's Tale", "tagline": "A true story of faith, devotion and undying love.", "vote_count": 362, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1028532", "adult": false, "backdrop_path": "/vTv8DVboZ0Vd0o061shGPBlpi1G.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Inferno Distribution", "id": 11278}, {"name": "Grand Army Entertainment", "id": 1843}, {"name": "Scion Films", "id": 7419}], "release_date": "2009-01-01", "popularity": 1.15446293041342, "original_title": "Hachi: A Dog's Tale", "budget": 16000000, "cast": [{"name": "Richard Gere", "character": "Parker Wilson", "id": 1205, "credit_id": "52fe457fc3a368484e05ed15", "cast_id": 1, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Joan Allen", "character": "Cate Wilson", "id": 11148, "credit_id": "52fe457fc3a368484e05ed19", "cast_id": 2, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 1}, {"name": "Jason Alexander", "character": "Carl", "id": 1206, "credit_id": "52fe457fc3a368484e05ed1d", "cast_id": 3, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 2}, {"name": "Cary-Hiroyuki Tagawa", "character": "Ken", "id": 11398, "credit_id": "52fe457fc3a368484e05ed27", "cast_id": 5, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 3}, {"name": "Sarah Roemer", "character": "Andy", "id": 20376, "credit_id": "52fe457fc3a368484e05ed31", "cast_id": 7, "profile_path": "/lxtXfd7NRS1NW0lNDicLvfZ7dFP.jpg", "order": 4}, {"name": "Erick Avari", "character": "Jasjeet", "id": 18917, "credit_id": "52fe457fc3a368484e05ed35", "cast_id": 8, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 5}, {"name": "Davenia McFadden", "character": "Mary Anne", "id": 75620, "credit_id": "52fe457fc3a368484e05ed39", "cast_id": 9, "profile_path": "/uX5egRwfOly93uuJeSahVIxfLFV.jpg", "order": 6}, {"name": "Robbie Sublett", "character": "Michael", "id": 557932, "credit_id": "52fe457fc3a368484e05ed3d", "cast_id": 10, "profile_path": "/52Ya0f99xO1CWhb4TMeol7H6qSQ.jpg", "order": 7}, {"name": "Tora Hallstr\u00f6m", "character": "Heather", "id": 1158532, "credit_id": "52fe457fc3a368484e05ed41", "cast_id": 11, "profile_path": null, "order": 8}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe457fc3a368484e05ed23", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 7.5, "runtime": 93}, "44564": {"poster_path": "/iiy2VRxE3DjIVfrIZlOQQ5i4Ypx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67112664, "overview": "Longtime friends Ronny and Nick are partners in an auto-design firm. They are hard at work on a presentation for a dream project that would really launch their company. Then Ronny spots Nick's wife out with another man, and in the process of investigating the possible affair, he learns that Nick has a few secrets of his own. As the presentation nears, Ronny agonizes over what might happen if the truth gets out.", "video": false, "id": 44564, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Dilemma", "tagline": "Two best friends. Nothing could come between them... or could it?", "vote_count": 113, "homepage": "http://www.thedilemmamovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1578275", "adult": false, "backdrop_path": "/w2KDvs7D0E6yDGESrAeJ0tzimSA.jpg", "production_companies": [{"name": "Wild West Picture Show Productions", "id": 2796}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2011-01-13", "popularity": 0.643720758455301, "original_title": "The Dilemma", "budget": 70000000, "cast": [{"name": "Kevin James", "character": "Nick Brannen", "id": 32895, "credit_id": "52fe468fc3a36847f81059b5", "cast_id": 4, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Ronny Valentine", "id": 4937, "credit_id": "52fe468fc3a36847f81059b9", "cast_id": 5, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Winona Ryder", "character": "Geneva Brannen", "id": 1920, "credit_id": "52fe468fc3a36847f81059b1", "cast_id": 3, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 2}, {"name": "Jennifer Connelly", "character": "Beth", "id": 6161, "credit_id": "52fe468fc3a36847f81059f1", "cast_id": 17, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Dana", "id": 15758, "credit_id": "52fe468fc3a36847f81059bd", "cast_id": 6, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 4}, {"name": "Talulah Riley", "character": "Concept Car Spokesmodel", "id": 66441, "credit_id": "52fe468fc3a36847f81059c1", "cast_id": 7, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 5}, {"name": "Channing Tatum", "character": "Zip", "id": 38673, "credit_id": "52fe468fc3a36847f81059dd", "cast_id": 12, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 6}, {"name": "Chelcie Ross", "character": "Thomas Fern", "id": 10486, "credit_id": "52fe468fc3a36847f81059e1", "cast_id": 13, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 7}, {"name": "Heidi Johanningmeier", "character": "Shoot the Puck Girl", "id": 43599, "credit_id": "52fe468fc3a36847f81059e5", "cast_id": 14, "profile_path": "/hTBg6M9Zzr6SBV3YIFyZsN16pTj.jpg", "order": 8}, {"name": "Rebecca Spence", "character": "Jackie", "id": 143714, "credit_id": "52fe468fc3a36847f81059e9", "cast_id": 15, "profile_path": "/sviK5DTA2L9khatUr0yfh29YfIx.jpg", "order": 9}, {"name": "Grace Rex", "character": "Cousin Betty", "id": 143715, "credit_id": "52fe468fc3a36847f81059ed", "cast_id": 16, "profile_path": "/oGN1PKK5vI1dhzKz8oZeYpnLnij.jpg", "order": 10}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe468fc3a36847f81059a7", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 5.4, "runtime": 111}, "1966": {"poster_path": "/cJrnmbsFm5cEt0pHZZ2a1ueH5aT.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 167298192, "overview": "Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians he leads his Army across the then known world venturing further than any Westerner had ever gone all the way to India.", "video": false, "id": 1966, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Alexander", "tagline": "The greatest legend of all was real.", "vote_count": 206, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0346491", "adult": false, "backdrop_path": "/cLOekK7EmHB1beYUYEXIlcr6mpS.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Intermedia Films", "id": 763}, {"name": "Pacifica Film", "id": 10926}, {"name": "Egmond Film & Television", "id": 4588}, {"name": "IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG", "id": 19116}, {"name": "Path\u00e9 Renn Productions", "id": 866}], "release_date": "2004-11-24", "popularity": 0.621296705524015, "original_title": "Alexander", "budget": 155000000, "cast": [{"name": "Colin Farrell", "character": "Alexander", "id": 72466, "credit_id": "52fe4327c3a36847f803e51d", "cast_id": 42, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Olympias", "id": 11701, "credit_id": "52fe4327c3a36847f803e45f", "cast_id": 3, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Philip", "id": 5576, "credit_id": "52fe4327c3a36847f803e463", "cast_id": 4, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Jared Leto", "character": "Hephaistion", "id": 7499, "credit_id": "52fe4327c3a36847f803e467", "cast_id": 5, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 3}, {"name": "Jonathan Rhys Meyers", "character": "Cassander", "id": 1244, "credit_id": "52fe4327c3a36847f803e46b", "cast_id": 6, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 4}, {"name": "Anthony Hopkins", "character": "Old Ptolemy", "id": 4173, "credit_id": "52fe4327c3a36847f803e46f", "cast_id": 7, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 5}, {"name": "Jessie Kamm", "character": "Child Alexander", "id": 20278, "credit_id": "52fe4327c3a36847f803e473", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Fiona O'Shaughnessy", "character": "Nurse", "id": 20279, "credit_id": "52fe4327c3a36847f803e477", "cast_id": 9, "profile_path": "/sxJ1DkancVjA0SSNTSFRu3hElaf.jpg", "order": 7}, {"name": "Connor Paolo", "character": "Young Alexander", "id": 4738, "credit_id": "52fe4327c3a36847f803e47b", "cast_id": 10, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 8}, {"name": "Patrick Carroll", "character": "Young Hephaistion", "id": 20280, "credit_id": "52fe4327c3a36847f803e47f", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Peter Williamson", "character": "Young Nearchus", "id": 20281, "credit_id": "52fe4327c3a36847f803e483", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Christopher Plummer", "character": "Aristotle", "id": 290, "credit_id": "52fe4327c3a36847f803e487", "cast_id": 13, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 11}, {"name": "John Kavanagh", "character": "Parmenion", "id": 20282, "credit_id": "52fe4327c3a36847f803e48b", "cast_id": 14, "profile_path": "/3ElWQEcnhi3lgYtbWPVV9EfExdw.jpg", "order": 12}, {"name": "Gary Stretch", "character": "Cleitus", "id": 20284, "credit_id": "52fe4327c3a36847f803e48f", "cast_id": 15, "profile_path": "/zEavHYLoiPIUO208n0qWKdtow2w.jpg", "order": 13}, {"name": "Rosario Dawson", "character": "Roxane", "id": 5916, "credit_id": "52fe4327c3a36847f803e493", "cast_id": 16, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 14}, {"name": "F\u00e9odor Atkine", "character": "Roxane's Father", "id": 20285, "credit_id": "52fe4327c3a36847f803e497", "cast_id": 17, "profile_path": "/cf50q5tFxLlp6rlSyG96AlhZrfi.jpg", "order": 15}, {"name": "Toby Kebbell", "character": "Pausanius", "id": 20286, "credit_id": "52fe4327c3a36847f803e49b", "cast_id": 18, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 16}, {"name": "Laird Macintosh", "character": "Greek Officer", "id": 20287, "credit_id": "52fe4327c3a36847f803e49f", "cast_id": 19, "profile_path": "/sjGP1GWrZkK8DxLBHx2Wkto7om7.jpg", "order": 17}, {"name": "Francisco Bosch", "character": "Bagoas", "id": 20288, "credit_id": "52fe4327c3a36847f803e4a3", "cast_id": 20, "profile_path": "/1FiVxwoMh1RxhHmfsQyWCWqoDPd.jpg", "order": 18}, {"name": "Neil Jackson", "character": "Perdiccas", "id": 20289, "credit_id": "52fe4327c3a36847f803e4a7", "cast_id": 21, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 19}, {"name": "Garrett Lombard", "character": "Leonnatus", "id": 20290, "credit_id": "52fe4327c3a36847f803e4ab", "cast_id": 22, "profile_path": "/6562i3k8ut6cNp4BSnVqG1UTLR8.jpg", "order": 20}, {"name": "Chris Aberdein", "character": "Polyperchon", "id": 20291, "credit_id": "52fe4327c3a36847f803e4af", "cast_id": 23, "profile_path": null, "order": 21}, {"name": "Rory McCann", "character": "Crateros", "id": 3075, "credit_id": "52fe4327c3a36847f803e4b3", "cast_id": 24, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 22}, {"name": "Raz Degan", "character": "Darius III", "id": 135142, "credit_id": "52fe4327c3a36847f803e521", "cast_id": 43, "profile_path": "/A7ZcRLCbywX62QOgQWaBMDi9ovz.jpg", "order": 23}, {"name": "Joseph Morgan", "character": "Philotas", "id": 79505, "credit_id": "52fe4327c3a36847f803e525", "cast_id": 44, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 24}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe4327c3a36847f803e45b", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 5.8, "runtime": 175}, "11798": {"poster_path": "/wVc7lwmTgDN7QY4G9V8dfYynDec.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 8176544, "overview": "A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends even like family. Based on experiences of director Shane Meadows.", "video": false, "id": 11798, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "This Is England", "tagline": "Run with the crowd, stand alone, you decide.", "vote_count": 62, "homepage": "http://www.thisisenglandmovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480025", "adult": false, "backdrop_path": "/51e84mD3gabhrY9R0Px3sn0ZvnY.jpg", "production_companies": [{"name": "EM Media", "id": 1917}, {"name": "UK Film Council", "id": 2452}, {"name": "Screen Yorkshire", "id": 2690}, {"name": "Big Arty Productions", "id": 3519}], "release_date": "2007-04-27", "popularity": 0.161895207715109, "original_title": "This Is England", "budget": 2380000, "cast": [{"name": "Thomas Turgoose", "character": "Shaun", "id": 70517, "credit_id": "52fe44879251416c75038025", "cast_id": 1, "profile_path": "/5cZboxmFmALIr7qIAvsJRnIJ9eO.jpg", "order": 0}, {"name": "Stephen Graham", "character": "Combo", "id": 1115, "credit_id": "52fe44879251416c75038029", "cast_id": 2, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 1}, {"name": "Jo Hartley", "character": "Cynth", "id": 70518, "credit_id": "52fe44879251416c7503802d", "cast_id": 3, "profile_path": "/qK4jrcMxUXY3ecr1bwshZuuO8eH.jpg", "order": 2}, {"name": "Andrew Shim", "character": "Milky", "id": 70519, "credit_id": "52fe44879251416c75038031", "cast_id": 4, "profile_path": "/eLh2PHrrKeR3dlDk3zFoQG6zeMj.jpg", "order": 3}, {"name": "Vicky McClure", "character": "Lol", "id": 148139, "credit_id": "52fe44879251416c75038083", "cast_id": 19, "profile_path": "/e5eucukisVx2CTxZbAMIQraIFcA.jpg", "order": 4}, {"name": "Joseph Gilgun", "character": "Woody", "id": 225610, "credit_id": "52fe44879251416c75038087", "cast_id": 20, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 5}, {"name": "Perry Benson", "character": "Meggy", "id": 59076, "credit_id": "52fe44879251416c7503808b", "cast_id": 21, "profile_path": "/6EEOQx1wPLlx4iyaX9UbSywOVjg.jpg", "order": 6}, {"name": "Andrew Ellis", "character": "Gadget", "id": 225611, "credit_id": "52fe44879251416c7503808f", "cast_id": 22, "profile_path": "/kuYkAcqfCy0Lp5Q7fPUEFPIgqPv.jpg", "order": 7}, {"name": "Jack O'Connell", "character": "Pukey Nicholls", "id": 85065, "credit_id": "53cd65e40e0a265dfc00433b", "cast_id": 23, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 8}], "directors": [{"name": "Shane Meadows", "department": "Directing", "job": "Director", "credit_id": "52fe44879251416c75038037", "profile_path": "/zQhdD413z4RFuo9LbYJ2DEmMuky.jpg", "id": 70520}], "vote_average": 7.3, "runtime": 101}, "77338": {"poster_path": "/4mFsNQwbD0F237Tx7gAPotd0nbJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 426480871, "overview": "A true story of two men who should never have met - a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.", "video": false, "id": 77338, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Intouchables", "tagline": "Sometimes you have to reach into someone else's world to find out what's missing in your own.", "vote_count": 1384, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1675434", "adult": false, "backdrop_path": "/ihWaJZCUIon2dXcosjQG2JHJAPN.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Quad Productions", "id": 7038}, {"name": "Ten Films", "id": 8018}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "TF1", "id": 22123}, {"name": "Chaocorp", "id": 7766}, {"name": "Gaumont", "id": 9}], "release_date": "2011-11-02", "popularity": 2.07392536278913, "original_title": "Intouchables", "budget": 13000000, "cast": [{"name": "Fran\u00e7ois Cluzet", "character": "Philippe", "id": 33161, "credit_id": "52fe4967c3a368484e129b19", "cast_id": 6, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 0}, {"name": "Omar Sy", "character": "Driss", "id": 78423, "credit_id": "52fe4967c3a368484e129b1d", "cast_id": 7, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 1}, {"name": "Anne Le Ny", "character": "Yvonne", "id": 19370, "credit_id": "52fe4967c3a368484e129b21", "cast_id": 8, "profile_path": "/maDtYMoyY1GVrEQDYFl1NdlmT0e.jpg", "order": 2}, {"name": "Audrey Fleurot", "character": "Magalie", "id": 219708, "credit_id": "52fe4967c3a368484e129b37", "cast_id": 19, "profile_path": "/cvCRChF1HzYviQsfZzFpeNzjYap.jpg", "order": 3}, {"name": "Clotilde Mollet", "character": "Marcelle", "id": 2411, "credit_id": "52fe4967c3a368484e129b3b", "cast_id": 20, "profile_path": "/8aXYC2plPTD48hhTnpZSZs3KoSX.jpg", "order": 4}, {"name": "Alba Ga\u00efa Kraghede Bellugi", "character": "Elisa", "id": 26107, "credit_id": "52fe4967c3a368484e129b3f", "cast_id": 21, "profile_path": "/dGXOSkbaX1aXY56paBThprMUnTy.jpg", "order": 5}, {"name": "Cyril Mendy", "character": "Adama", "id": 581728, "credit_id": "52fe4967c3a368484e129b43", "cast_id": 22, "profile_path": "/z0SMhDT34Pm4J06mQY6nJmiOMsp.jpg", "order": 6}, {"name": "Christian Ameri", "character": "Albert", "id": 581729, "credit_id": "52fe4967c3a368484e129b47", "cast_id": 23, "profile_path": "/dVcoTwFIAxSEC2YznslNacAQPru.jpg", "order": 7}, {"name": "Marie-Laure Descoureaux", "character": "Chantal", "id": 333422, "credit_id": "52fe4967c3a368484e129b4b", "cast_id": 25, "profile_path": "/xK44bqU7P8kNzqXLjJDQu2D5K67.jpg", "order": 8}, {"name": "Salimata Kamate", "character": "Fatou", "id": 1411815, "credit_id": "54b143639251417472001f33", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Absa Diatou Toure", "character": "Mina", "id": 1411817, "credit_id": "54b14372c3a3680940002034", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Gr\u00e9goire Oestermann", "character": "Antoine", "id": 1319891, "credit_id": "54b143869251417479001d59", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Dominique Daguier", "character": "Amie de Philippe", "id": 1349054, "credit_id": "54b14397925141746c001de6", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Fran\u00e7ois Caron", "character": "Ami de Philippe", "id": 224148, "credit_id": "54b143a79251417479001d5e", "cast_id": 36, "profile_path": "/5okcfO4Z7j26zUiSR8EspJgZL1J.jpg", "order": 13}, {"name": "Christian Ameri", "character": "Albert", "id": 581729, "credit_id": "54b143b6c3a368401200196c", "cast_id": 37, "profile_path": "/dVcoTwFIAxSEC2YznslNacAQPru.jpg", "order": 14}, {"name": "Thomas Soliv\u00e9res", "character": "Bastien", "id": 1069637, "credit_id": "54b143d5c3a36809390022a7", "cast_id": 38, "profile_path": "/5aZRznX6bmStaao3JvmM6ywv1Pq.jpg", "order": 15}], "directors": [{"name": "Eric Toledano", "department": "Directing", "job": "Director", "credit_id": "52fe4967c3a368484e129afd", "profile_path": null, "id": 84425}, {"name": "Olivier Nakache", "department": "Directing", "job": "Director", "credit_id": "52fe4967c3a368484e129b03", "profile_path": null, "id": 84426}], "vote_average": 8.1, "runtime": 112}, "19995": {"poster_path": "/tcqb9NHdw9SWs2a88KCDD4V8sVR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2781505847, "overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.", "video": false, "id": 19995, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Avatar", "tagline": "Enter the World of Pandora.", "vote_count": 6240, "homepage": "http://www.avatarmovie.com/", "belongs_to_collection": {"backdrop_path": "/9s4BM48NweGFrIRE6haIul0YJ9f.jpg", "poster_path": "/nslJVsO58Etqkk17oXMuVK4gNOF.jpg", "id": 87096, "name": "Avatar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0499549", "adult": false, "backdrop_path": "/5XPPB44RQGfkBrbJxmtdndKz05n.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Lightstorm Entertainment", "id": 574}], "release_date": "2009-12-18", "popularity": 3.64373820317259, "original_title": "Avatar", "budget": 237000000, "cast": [{"name": "Sam Worthington", "character": "Jake Sully", "id": 65731, "credit_id": "52fe48009251416c750ac9c7", "cast_id": 2, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Neytiri", "id": 8691, "credit_id": "52fe48009251416c750ac9cb", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Dr. Grace Augustine", "id": 10205, "credit_id": "52fe48009251416c750aca39", "cast_id": 25, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Stephen Lang", "character": "Col. Quaritch", "id": 32747, "credit_id": "52fe48009251416c750ac9cf", "cast_id": 4, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 3}, {"name": "Michelle Rodriguez", "character": "Trudy Chacon", "id": 17647, "credit_id": "52fe48009251416c750ac9d3", "cast_id": 5, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Selfridge", "id": 1771, "credit_id": "52fe48009251416c750ac9e1", "cast_id": 8, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "Joel David Moore", "character": "Norm Spellman", "id": 59231, "credit_id": "52fe48009251416c750ac9dd", "cast_id": 7, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 6}, {"name": "C. C. H. Pounder", "character": "Moat", "id": 30485, "credit_id": "52fe48009251416c750ac9e5", "cast_id": 9, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 7}, {"name": "Wes Studi", "character": "Eytukan", "id": 15853, "credit_id": "52fe48009251416c750ac9ed", "cast_id": 11, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 8}, {"name": "Laz Alonso", "character": "Tsu'Tey", "id": 10964, "credit_id": "52fe48009251416c750ac9e9", "cast_id": 10, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 9}, {"name": "Dileep Rao", "character": "Dr. Max Patel", "id": 95697, "credit_id": "52fe48009251416c750ac9f1", "cast_id": 12, "profile_path": "/f9xQkvWw5guOePcCxkso1i09w12.jpg", "order": 10}, {"name": "Matt Gerald", "character": "Lyle Wainfleet", "id": 98215, "credit_id": "52fe48009251416c750ac9f5", "cast_id": 13, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 11}, {"name": "Sean Anthony Moran", "character": "Private Fike", "id": 154153, "credit_id": "52fe48009251416c750aca5b", "cast_id": 32, "profile_path": "/vWCRgfEzCuMqsageHGpE2HD3lo3.jpg", "order": 12}, {"name": "Jason Whyte", "character": "Cryo Vault Med Tech", "id": 397312, "credit_id": "52fe48009251416c750aca5f", "cast_id": 33, "profile_path": "/yIT9TmIerjcoBXLvaHI8YdLttx7.jpg", "order": 13}, {"name": "Scott Lawrence", "character": "Venture Star Crew Chief", "id": 42317, "credit_id": "52fe48009251416c750aca63", "cast_id": 34, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 14}, {"name": "Kelly Kilgour", "character": "Lock Up Trooper", "id": 986734, "credit_id": "52fe48009251416c750aca67", "cast_id": 35, "profile_path": "/43zuUGlaHIOMak260qMH6wUVkb2.jpg", "order": 15}, {"name": "James Patrick Pitt", "character": "Shuttle Pilot", "id": 1207227, "credit_id": "52fe48009251416c750aca6b", "cast_id": 36, "profile_path": "/clJrkwWPY7QnfP5NvsiBkJ7JsVd.jpg", "order": 16}, {"name": "Sean Patrick Murphy", "character": "Shuttle Co-Pilot", "id": 1180936, "credit_id": "52fe48009251416c750aca6f", "cast_id": 37, "profile_path": "/giM7FHH0VZkU6T738Oi6Yn19qNT.jpg", "order": 17}, {"name": "Peter Dillon", "character": "Shuttle Crew Chief", "id": 1019578, "credit_id": "52fe48009251416c750aca73", "cast_id": 38, "profile_path": "/viOCreF32uEu5R5Zhw0oWuZQhZh.jpg", "order": 18}, {"name": "Kevin Dorman", "character": "Tractor Operator / Troupe", "id": 91443, "credit_id": "52fe48009251416c750aca77", "cast_id": 39, "profile_path": "/2r0e3hV5l3vhf3s7RgarvFxH0WT.jpg", "order": 19}, {"name": "Kelson Henderson", "character": "Dragon Gunship Pilot", "id": 173391, "credit_id": "52fe48009251416c750aca7b", "cast_id": 40, "profile_path": "/3Ezzw4mB6oUBZGyx8jNXQhuLupZ.jpg", "order": 20}, {"name": "David Van Horn", "character": "Dragon Gunship Gunner", "id": 1207236, "credit_id": "52fe48009251416c750aca7f", "cast_id": 41, "profile_path": "/ax7rToAW10zmnRoU3x68octA5NT.jpg", "order": 21}, {"name": "Jacob Tomuri", "character": "Dragon Gunship Navigator", "id": 215913, "credit_id": "52fe48009251416c750aca83", "cast_id": 42, "profile_path": "/di0nx350h4m6k0smnktYWUqdUnh.jpg", "order": 22}, {"name": "Michael Blain-Rozgay", "character": "Suit #1", "id": 143206, "credit_id": "52fe48009251416c750aca87", "cast_id": 43, "profile_path": "/9NxAdcXilvTJ3BUVhwDxio57U5I.jpg", "order": 23}, {"name": "Jon Curry", "character": "Suit #2", "id": 169676, "credit_id": "52fe48009251416c750aca8b", "cast_id": 44, "profile_path": "/ov0cpE9azPsPAG7oESetN8OxHO8.jpg", "order": 24}, {"name": "Luke Hawker", "character": "Ambient Room Tech", "id": 1048610, "credit_id": "52fe48009251416c750aca8f", "cast_id": 46, "profile_path": "/fu2xLJHXnPVQDL5wd5RDB3Dw3p7.jpg", "order": 25}, {"name": "Woody Schultz", "character": "Ambient Room Tech / Troupe", "id": 42288, "credit_id": "52fe48009251416c750aca93", "cast_id": 47, "profile_path": "/AjzkMGiWGnG27W1JTDWDGYn8TP.jpg", "order": 26}, {"name": "Peter Mensah", "character": "Horse Clan Leader", "id": 68278, "credit_id": "52fe48009251416c750aca97", "cast_id": 48, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 27}, {"name": "Sonia Yee", "character": "Link Room Tech", "id": 1207247, "credit_id": "52fe48009251416c750aca9b", "cast_id": 49, "profile_path": "/AbM60ZHkHhFfFUGdbnJTBbDHFSu.jpg", "order": 28}, {"name": "Jahnel Curfman", "character": "Basketball Avatar / Troupe", "id": 1207248, "credit_id": "52fe48009251416c750aca9f", "cast_id": 50, "profile_path": "/8uvnQtuF5eMWCHm3C2hbO1Wv63M.jpg", "order": 29}, {"name": "Ilram Choi", "character": "Basketball Avatar", "id": 89714, "credit_id": "52fe48009251416c750acaa3", "cast_id": 51, "profile_path": "/p6NmIraf9A22qtrp3p9PnikFWV.jpg", "order": 30}, {"name": "Kyla Warren", "character": "Na'vi Child", "id": 1207249, "credit_id": "52fe48009251416c750acaa7", "cast_id": 52, "profile_path": "/vTkGQt1u1wtdf5Id6jkOsqF4U0V.jpg", "order": 31}, {"name": "Lisa Roumain", "character": "Troupe", "id": 1207250, "credit_id": "52fe48009251416c750acaab", "cast_id": 53, "profile_path": "/wtzvCVEBj3owQcPOBolDSXnUHft.jpg", "order": 32}, {"name": "Debra Wilson", "character": "Troupe", "id": 83105, "credit_id": "52fe48009251416c750acaaf", "cast_id": 54, "profile_path": "/cti0sST91arxQMYzej0rBbmvpDF.jpg", "order": 33}, {"name": "Taylor Kibby", "character": "Troupe", "id": 1207251, "credit_id": "52fe48009251416c750acab3", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Jodie Landau", "character": "Troupe", "id": 1207252, "credit_id": "52fe48009251416c750acab7", "cast_id": 56, "profile_path": null, "order": 35}, {"name": "Chris Mala", "character": "Troupe", "id": 1207253, "credit_id": "52fe48009251416c750acabb", "cast_id": 57, "profile_path": "/hjXIePzv0Stgg3I4nEpeeM9lZCN.jpg", "order": 36}, {"name": "Julie Lamm", "character": "Troupe", "id": 1207254, "credit_id": "52fe48009251416c750acabf", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "Cullen B. Madden", "character": "Troupe", "id": 1207257, "credit_id": "52fe48009251416c750acac3", "cast_id": 59, "profile_path": null, "order": 38}, {"name": "Joseph Brady Madden", "character": "Troupe", "id": 1207259, "credit_id": "52fe48009251416c750acac7", "cast_id": 60, "profile_path": null, "order": 39}, {"name": "Frankie Torres", "character": "Troupe", "id": 1207262, "credit_id": "52fe48009251416c750acacb", "cast_id": 61, "profile_path": null, "order": 40}, {"name": "Austin Wilson", "character": "Troupe", "id": 1158600, "credit_id": "52fe48009251416c750acacf", "cast_id": 62, "profile_path": null, "order": 41}, {"name": "Sara Wilson", "character": "Troupe", "id": 983705, "credit_id": "52fe48019251416c750acad3", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Tamica Washington-Miller", "character": "Troupe", "id": 1207263, "credit_id": "52fe48019251416c750acad7", "cast_id": 64, "profile_path": "/2Lyedbl6HPBx1TJ1DmsVyqxcfPX.jpg", "order": 43}, {"name": "Lucy Briant", "character": "Op Center Staff", "id": 1145098, "credit_id": "52fe48019251416c750acadb", "cast_id": 65, "profile_path": "/dgqpav2Zpc7OIHqRq2AnSVGkXUX.jpg", "order": 44}, {"name": "Nathan Meister", "character": "Op Center Staff", "id": 33305, "credit_id": "52fe48019251416c750acadf", "cast_id": 66, "profile_path": "/i8XOPuKT04D0bXbczSBCb1e3y22.jpg", "order": 45}, {"name": "Gerry Blair", "character": "Op Center Staff", "id": 1207264, "credit_id": "52fe48019251416c750acae3", "cast_id": 67, "profile_path": null, "order": 46}, {"name": "Matthew Chamberlain", "character": "Op Center Staff", "id": 33311, "credit_id": "52fe48019251416c750acae7", "cast_id": 68, "profile_path": "/rTdYqm2Q1OFfTin2qf0acOqw4Va.jpg", "order": 47}, {"name": "Paul Yates", "character": "Op Center Staff", "id": 1207265, "credit_id": "52fe48019251416c750acaeb", "cast_id": 69, "profile_path": "/4sn8Lj0UtpH7xHPEFQsa4V4twVO.jpg", "order": 48}, {"name": "Wray Wilson", "character": "Op Center Duty Officer", "id": 1207266, "credit_id": "52fe48019251416c750acaef", "cast_id": 70, "profile_path": "/kRAKRcRoYvEXFsRJcv9RuwwIxuS.jpg", "order": 49}, {"name": "James Gaylyn", "character": "Op Center Staff", "id": 54492, "credit_id": "52fe48019251416c750acaf3", "cast_id": 71, "profile_path": "/ynZVceoV6AbAUy9tVICGXERt6KH.jpg", "order": 50}, {"name": "Melvin Leno Clark III", "character": "Dancer", "id": 1207267, "credit_id": "52fe48019251416c750acaf7", "cast_id": 72, "profile_path": "/xqEC8as2SfO6O2i09OtyYNsYA3T.jpg", "order": 51}, {"name": "Carvon Futrell", "character": "Dancer", "id": 1207268, "credit_id": "52fe48019251416c750acafb", "cast_id": 73, "profile_path": null, "order": 52}, {"name": "Brandon Jelkes", "character": "Dancer", "id": 1207269, "credit_id": "52fe48019251416c750acaff", "cast_id": 74, "profile_path": "/ocXSXoscb6GG7qcBGF9HRwzC8iI.jpg", "order": 53}, {"name": "Micah Moch", "character": "Dancer", "id": 1207270, "credit_id": "52fe48019251416c750acb03", "cast_id": 75, "profile_path": "/xgjCN8mTSMUPzphqE8yniCDjYFO.jpg", "order": 54}, {"name": "Hanniyah Muhammad", "character": "Dancer", "id": 1207271, "credit_id": "52fe48019251416c750acb07", "cast_id": 76, "profile_path": null, "order": 55}, {"name": "Christopher Nolen", "character": "Dancer", "id": 1207272, "credit_id": "52fe48019251416c750acb0b", "cast_id": 77, "profile_path": "/jqb7MpimsL2D9txjUW9mGfNsPGI.jpg", "order": 56}, {"name": "Christa Oliver", "character": "Dancer", "id": 1207273, "credit_id": "52fe48019251416c750acb0f", "cast_id": 78, "profile_path": "/aayUWCEbRtPvnRdlCHps8EEFbsO.jpg", "order": 57}, {"name": "April Marie Thomas", "character": "Dancer", "id": 1207274, "credit_id": "52fe48019251416c750acb13", "cast_id": 79, "profile_path": "/rW3ieqIMXtfFU3GR2rlQQm703gh.jpg", "order": 58}, {"name": "Bravita A. Threatt", "character": "Dancer", "id": 1207275, "credit_id": "52fe48019251416c750acb17", "cast_id": 80, "profile_path": "/oOFxzhC0ysYCeVxmrf59sTZlpLk.jpg", "order": 59}, {"name": "Colin Bleasdale", "character": "Mining Chief (uncredited)", "id": 1207276, "credit_id": "52fe48019251416c750acb1b", "cast_id": 81, "profile_path": null, "order": 60}, {"name": "Mike Bodnar", "character": "Veteran Miner (uncredited)", "id": 107969, "credit_id": "52fe48019251416c750acb1f", "cast_id": 82, "profile_path": "/tmMN1SWDfNAAxeLfIAadGUXSmD3.jpg", "order": 61}, {"name": "Matt Clayton", "character": "Richard (uncredited)", "id": 1207278, "credit_id": "52fe48019251416c750acb23", "cast_id": 83, "profile_path": "/c723SPBGHRI3mubqeR77lHbi3kk.jpg", "order": 62}, {"name": "Nicole Dionne", "character": "Nav'i (uncredited)", "id": 147898, "credit_id": "52fe48019251416c750acb27", "cast_id": 84, "profile_path": "/7UmaoVYIwnY1c7H6LsVJaQe4OeE.jpg", "order": 63}, {"name": "Jamie Harrison", "character": "Trooper (uncredited)", "id": 1207280, "credit_id": "52fe48019251416c750acb2b", "cast_id": 85, "profile_path": null, "order": 64}, {"name": "Allan Henry", "character": "Trooper (uncredited)", "id": 1207281, "credit_id": "52fe48019251416c750acb2f", "cast_id": 86, "profile_path": "/ma3ZFzGiF4ANlEym3ACFOG0n7qV.jpg", "order": 65}, {"name": "Anthony Ingruber", "character": "Ground Technician (uncredited)", "id": 1207282, "credit_id": "52fe48019251416c750acb33", "cast_id": 87, "profile_path": "/cFN50vtqZyYQSs07EvVYIRCIdCJ.jpg", "order": 66}, {"name": "Ashley Jeffery", "character": "Flight Crew Mechanic (uncredited)", "id": 1207283, "credit_id": "52fe48019251416c750acb37", "cast_id": 88, "profile_path": "/hYgCSvYOkOCnQDJo0VKZdWi21zL.jpg", "order": 67}, {"name": "Dean Knowsley", "character": "Samson Pilot", "id": 98216, "credit_id": "52fe48009251416c750ac9f9", "cast_id": 14, "profile_path": "/uLBD2u1xuAUo9Fbxe6Jla9jEIEx.jpg", "order": 68}, {"name": "Joseph Mika-Hunt", "character": "Trooper (uncredited)", "id": 1201399, "credit_id": "52fe48019251416c750acb3b", "cast_id": 89, "profile_path": "/qXSDkIsO8K4mTxhXbRtLbZvvZom.jpg", "order": 69}, {"name": "Terry Notary", "character": "Banshee (uncredited)", "id": 236696, "credit_id": "52fe48019251416c750acb3f", "cast_id": 90, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 70}, {"name": "Kai Pantano", "character": "Soldier (uncredited)", "id": 1207287, "credit_id": "52fe48019251416c750acb43", "cast_id": 91, "profile_path": "/pXR5aOovzm2OF8BvBuJ30j0wNGj.jpg", "order": 71}, {"name": "Logan Pithyou", "character": "Blast Technician (uncredited)", "id": 1207288, "credit_id": "52fe48019251416c750acb47", "cast_id": 92, "profile_path": "/rtjXKbQHWjDSBEDd2HER8ijs1Ab.jpg", "order": 72}, {"name": "Stuart Pollock", "character": "Vindum Raah (uncredited)", "id": 1207289, "credit_id": "52fe48019251416c750acb4b", "cast_id": 93, "profile_path": null, "order": 73}, {"name": "Raja", "character": "Hero (uncredited)", "id": 584868, "credit_id": "52fe48019251416c750acb4f", "cast_id": 94, "profile_path": "/1nbG9zOGqwhQ9EcZqClgQFuLMJ8.jpg", "order": 74}, {"name": "Gareth Ruck", "character": "Ops Centreworker (uncredited)", "id": 1207290, "credit_id": "52fe48019251416c750acb53", "cast_id": 95, "profile_path": "/t6pi1fYbbyYAqje6eto8SuZZzxI.jpg", "order": 75}, {"name": "Rhian Sheehan", "character": "Engineer (uncredited)", "id": 1062463, "credit_id": "52fe48019251416c750acb57", "cast_id": 96, "profile_path": "/eEMF0snLJvpE64RRt0Hvnu8oFN.jpg", "order": 76}, {"name": "T. J. Storm", "character": "Col. Quaritch's Mech Suit (uncredited)", "id": 60656, "credit_id": "52fe48019251416c750acb5b", "cast_id": 97, "profile_path": "/kio8ukD9QyQEoLxzXOUwswZP5Rz.jpg", "order": 77}, {"name": "Jodie Taylor", "character": "Female Marine (uncredited)", "id": 1207291, "credit_id": "52fe48019251416c750acb5f", "cast_id": 98, "profile_path": null, "order": 78}, {"name": "Alicia Vela-Bailey", "character": "Ikran Clan Leader (uncredited)", "id": 1186027, "credit_id": "52fe48019251416c750acb63", "cast_id": 99, "profile_path": "/kVuyn6sS7ZSBlXVjjxq0LSE3k4I.jpg", "order": 79}, {"name": "Richard Whiteside", "character": "Geologist (uncredited)", "id": 1207292, "credit_id": "52fe48019251416c750acb67", "cast_id": 100, "profile_path": "/g6lB4GzULZuFJotXrjLWh1QB4YX.jpg", "order": 80}, {"name": "Nikie Zambo", "character": "Na'vi (uncredited)", "id": 103259, "credit_id": "52fe48019251416c750acb6b", "cast_id": 101, "profile_path": "/ezRRJjH3o6ayHKI1Z6B70jhfaSe.jpg", "order": 81}, {"name": "Julene Renee", "character": "Ambient Room Tech / Troupe", "id": 42286, "credit_id": "52fe48019251416c750acb6f", "cast_id": 102, "profile_path": "/gONOL0vTflEd5yH1x3hcr2maFV5.jpg", "order": 82}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe48009251416c750ac9c3", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 7.0, "runtime": 162}, "183836": {"poster_path": "/431ndeOWAkMmlOxkV8ZfMfSpuMO.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Newly engaged, Thomas meets his future father-in-law Gilbert, who has been married for 30 years to Suzanne. Disillusioned Gilbert is convinced that his marriage has meant he's missed out on life. He persuades Thomas not to marry his daughter Lola and encourages him to drop everything else in his life as well. The two men then throw themselves into a new brats' life full of adventure, convinced that freedom is elsewhere. But at what cost do we rediscover our adolescent dreams?", "video": false, "id": 183836, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Brats", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt2354181", "adult": false, "backdrop_path": "/cyWNCOy2jvEumNmqXHjPKNkIUhS.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "2013-04-17", "popularity": 0.209622092007558, "original_title": "Les Gamins", "budget": 0, "cast": [{"name": "Alain Chabat", "character": "Gilbert", "id": 4275, "credit_id": "52fe4cad9251416c75121fed", "cast_id": 2, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 0}, {"name": "Max Boublil", "character": "Thomas", "id": 146359, "credit_id": "52fe4cad9251416c75121ff1", "cast_id": 3, "profile_path": "/hFi04bvLfgmMtSCewmKpeU96Cr8.jpg", "order": 1}, {"name": "Sandrine Kiberlain", "character": "Suzanne", "id": 81821, "credit_id": "52fe4cad9251416c75121ff5", "cast_id": 4, "profile_path": "/nISERu1XbLVgX4OffyA8nnfBEpq.jpg", "order": 2}, {"name": "M\u00e9lanie Bernier", "character": "Lola", "id": 132431, "credit_id": "52fe4cad9251416c75121ff9", "cast_id": 5, "profile_path": "/5ueLuC5AUXDgMEeuxzTNPTWOvB3.jpg", "order": 3}, {"name": "Ari\u00e9 Elmaleh", "character": "Carl", "id": 82302, "credit_id": "52fe4cad9251416c75121ffd", "cast_id": 6, "profile_path": "/l2j1Zrr4DljQuEJm6HYQurwvJK7.jpg", "order": 4}, {"name": "Elisa Sednaoui", "character": "Ir\u00e8ne", "id": 132068, "credit_id": "52fe4cad9251416c75122001", "cast_id": 7, "profile_path": "/nVPO2TUXk2NzxWT5ezgb8c2OTzg.jpg", "order": 5}, {"name": "Alban Lenoir", "character": "Romain", "id": 220692, "credit_id": "52fe4cad9251416c75122005", "cast_id": 8, "profile_path": "/xJ30y5a0ZdWpujwcGkl5dLy5NC7.jpg", "order": 6}, {"name": "Fran\u00e7ois Dunoyer", "character": "Claude", "id": 24459, "credit_id": "52fe4cad9251416c75122009", "cast_id": 9, "profile_path": "/qDYaMU2H2vdHe2hHibSo7MYQ8EM.jpg", "order": 7}, {"name": "Nicolas Brian\u00e7on", "character": "Bruno", "id": 54922, "credit_id": "52fe4cad9251416c7512200d", "cast_id": 10, "profile_path": "/nKwgQg9h8yZ1dLyY5V4IhiePQdj.jpg", "order": 8}, {"name": "M\u00e9lusine Mayance", "character": "Mimi Zozo", "id": 228884, "credit_id": "52fe4cad9251416c75122011", "cast_id": 11, "profile_path": "/reSKwPf0AtTiiW94fOB2TDbzMLO.jpg", "order": 9}, {"name": "Iggy Pop", "character": "lui m\u00eame", "id": 13604, "credit_id": "53a73c260e0a26144500450a", "cast_id": 25, "profile_path": "/orkeTSZYiHVKqeTntsD6e6VHuqc.jpg", "order": 10}, {"name": "Kheiron", "character": "Reza Sadequi", "id": 1333461, "credit_id": "53a74136c3a3687a34003e55", "cast_id": 26, "profile_path": "/nicSNVyvbn3xQiLSl283v2w7TwJ.jpg", "order": 11}, {"name": "S\u00e9bastien Castro", "character": "D\u00e9d\u00e9", "id": 1146848, "credit_id": "53a74242c3a3687a2b00413a", "cast_id": 27, "profile_path": "/zQX5rhMuruhyqhxcsC1y3RRq290.jpg", "order": 12}], "directors": [{"name": "Anthony Marciano", "department": "Directing", "job": "Director", "credit_id": "52fe4cad9251416c75121fe9", "profile_path": null, "id": 1167069}], "vote_average": 6.4, "runtime": 95}, "11806": {"poster_path": "/rjmkdq77jvcJgXn0E88Fl2Qu7vI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147214049, "overview": "The Newton family live in their comfortable home, but there seems to something missing. This \"hole\" is filled by a small puppy, who walks into their home and their lives. Beethoven, as he is named, grows into a giant of a dog... a St Bernard. Doctor Varnick, the local vet has a secret and horrible sideline, which requires lots of dogs for experiments. Beethoven is on the bad doctor's list.", "video": false, "id": 11806, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Beethoven", "tagline": "The head of the family is the one with the tail.", "vote_count": 67, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ogXWk8vtx6Pn6kEiak8VQmFCqit.jpg", "poster_path": "/ybRLSziV8GYKPPkYNP6iJpTjMv3.jpg", "id": 168880, "name": "Beethoven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103786", "adult": false, "backdrop_path": "/bRLRsAORRuTfZj5XcGWpNXPlt1z.jpg", "production_companies": [{"name": "Northern Lights Entertainment", "id": 8816}, {"name": "Universal Pictures", "id": 33}], "release_date": "1992-04-03", "popularity": 0.429394176335179, "original_title": "Beethoven", "budget": 0, "cast": [{"name": "Charles Grodin", "character": "George Newton", "id": 28164, "credit_id": "52fe44899251416c75038355", "cast_id": 12, "profile_path": "/qxZjqrA728HrTxWDrwgRqq1uWS2.jpg", "order": 0}, {"name": "Bonnie Hunt", "character": "Alice Newton", "id": 5149, "credit_id": "52fe44899251416c75038359", "cast_id": 13, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 1}, {"name": "Dean Jones", "character": "Herman Varnick", "id": 40393, "credit_id": "52fe44899251416c7503835d", "cast_id": 14, "profile_path": "/z2fbeGmyPVmV0aQiHNjjonAwz10.jpg", "order": 2}, {"name": "Nicholle Tom", "character": "Ryce Newton", "id": 35241, "credit_id": "52fe44899251416c75038361", "cast_id": 15, "profile_path": "/2M34AppEZiAwaz2fAJs91a05sj7.jpg", "order": 3}, {"name": "David Duchovny", "character": "Brad", "id": 12640, "credit_id": "52fe44899251416c7503836b", "cast_id": 17, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 4}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe44889251416c7503831b", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.7, "runtime": 87}, "11808": {"poster_path": "/3uixF2pHa0whTKcYmenDrArX0II.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "U.S. Marshal Sam Gerard is accompanying a plane load of convicts from Chicago to New York. The plane crashes spectacularly, and Mark Sheridan escapes. But when Diplomatic Security Agent John Royce is assigned to help Gerard recapture Sheridan, it becomes clear that Sheridan is more than just another murderer.", "video": false, "id": 11808, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "U.S. Marshals", "tagline": "The cop who won't stop is back. But this time he's chasing down a lot more than a fugitive.", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/idhUzfuEC24PTYhkWasivjoA3O0.jpg", "id": 134011, "name": "The Fugitive / U.S. Marshals Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120873", "adult": false, "backdrop_path": "/e07rnOqTiVEMGTMym8W5ePkUJAN.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1998-03-05", "popularity": 1.32981580806239, "original_title": "U.S. Marshals", "budget": 0, "cast": [{"name": "Tommy Lee Jones", "character": "Marshal Samuel Gerard", "id": 2176, "credit_id": "52fe44899251416c75038429", "cast_id": 8, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Wesley Snipes", "character": "Mark Sheridan", "id": 10814, "credit_id": "52fe44899251416c7503842d", "cast_id": 9, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 1}, {"name": "Robert Downey Jr.", "character": "John Royce", "id": 3223, "credit_id": "52fe44899251416c75038431", "cast_id": 10, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 2}, {"name": "Joe Pantoliano", "character": "Marshal Cosmo Renfro", "id": 532, "credit_id": "52fe44899251416c75038435", "cast_id": 11, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 3}, {"name": "Daniel Roebuck", "character": "Deputy Marshal Bobby Biggs", "id": 43774, "credit_id": "52fe44899251416c75038439", "cast_id": 12, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 4}, {"name": "Thomas Mills Wood", "character": "Deputy Marshal Noah Newman", "id": 43772, "credit_id": "52fe44899251416c7503843d", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "LaTanya Richardson", "character": "Deputy Marshal Savannah Cooper", "id": 61010, "credit_id": "52fe44899251416c75038441", "cast_id": 14, "profile_path": "/obb4rUjV9hBMi075Cr9iOSCbDSu.jpg", "order": 6}, {"name": "Ir\u00e8ne Jacob", "character": "Marie Bineaux, Mark's Girlfriend", "id": 1350, "credit_id": "52fe44899251416c75038445", "cast_id": 15, "profile_path": "/vjlwVgbpb22S4rriqkfOd9H4kmU.jpg", "order": 7}, {"name": "Kate Nelligan", "character": "United States Marshal Catherine Walsh", "id": 18794, "credit_id": "52fe44899251416c75038449", "cast_id": 16, "profile_path": "/qesy9idqrmSxzEhdCo0P7Y6HWJO.jpg", "order": 8}, {"name": "Patrick Malahide", "character": "Bertram Lamb, Security Service Director", "id": 8979, "credit_id": "52fe44899251416c7503844d", "cast_id": 17, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 9}, {"name": "Rick Snyder", "character": "Special Agent Frank Barrows", "id": 182347, "credit_id": "52fe44899251416c75038451", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Michael Paul Chan", "character": "Xian Chen, U.N. Cultural Attache of China", "id": 17355, "credit_id": "52fe44899251416c75038455", "cast_id": 19, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 11}, {"name": "Johnny Lee Davenport", "character": "Deputy Marshal Henry", "id": 171631, "credit_id": "52fe44899251416c75038459", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Donald Li", "character": "Detective Kim", "id": 168246, "credit_id": "52fe44899251416c7503845d", "cast_id": 21, "profile_path": "/7TeLJzqIoSUMAZJRkSLMp53wujn.jpg", "order": 13}, {"name": "Marc Vann", "character": "Deputy Jackson", "id": 159456, "credit_id": "52fe44899251416c75038461", "cast_id": 22, "profile_path": "/7gxd1d21gEPKGPaAuN4Pasp9Fwo.jpg", "order": 14}], "directors": [{"name": "Stuart Baird", "department": "Directing", "job": "Director", "credit_id": "52fe44899251416c75038401", "profile_path": "/k7nLNZ0MYsPrKq5T3ZV7m9zwEGY.jpg", "id": 2523}], "vote_average": 6.3, "runtime": 131}, "11812": {"poster_path": "/aSHDm1BRlnxWKrCRhK3q5TOdPme.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68696770, "overview": "When it comes to dating, Christina Walters (Cameron Diaz) has a golden rule: avoid searching for Mr. Right and focus on Mr. Right Now. That is until one night at a club when she unexpectedly meets Peter (Thomas Jane), only to see him suddenly disappear the next day. She and her best friend Courtney (Christina Applegate) decide to break the rules and go on a road trip to find him, encountering wild and hilarious misadventures along the way.", "video": false, "id": 11812, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Sweetest Thing", "tagline": "A romantic comedy without the sugar.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253867", "adult": false, "backdrop_path": "/xvC6ftXWg8OzH0coMyEbiscdxtX.jpg", "production_companies": [{"name": "Konrad Pictures", "id": 85}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "2002-04-12", "popularity": 0.824800097130586, "original_title": "The Sweetest Thing", "budget": 43000000, "cast": [{"name": "Cameron Diaz", "character": "Christina Walters", "id": 6941, "credit_id": "52fe448a9251416c750385ad", "cast_id": 10, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Christina Applegate", "character": "Courtney Rockcliffe", "id": 18979, "credit_id": "52fe448a9251416c750385b1", "cast_id": 11, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 1}, {"name": "Selma Blair", "character": "Jane Burns", "id": 11826, "credit_id": "52fe448a9251416c750385b5", "cast_id": 12, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 2}, {"name": "Thomas Jane", "character": "Peter Donahue", "id": 11155, "credit_id": "52fe448a9251416c750385b9", "cast_id": 13, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 3}, {"name": "Frank Grillo", "character": "Andy", "id": 81685, "credit_id": "52fe448a9251416c750385bd", "cast_id": 14, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Roger Donahue", "id": 23532, "credit_id": "52fe448a9251416c750385c1", "cast_id": 15, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Eddie McClintock", "character": "Michael", "id": 120679, "credit_id": "52fe448a9251416c750385c5", "cast_id": 16, "profile_path": "/8NUGIONBAFu4RQuxJreCouWSKk8.jpg", "order": 6}, {"name": "Parker Posey", "character": "Judy Webb", "id": 7489, "credit_id": "52fe448a9251416c750385c9", "cast_id": 17, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 7}, {"name": "James Mangold", "character": "Dr. Greg", "id": 366, "credit_id": "52fe448a9251416c750385cd", "cast_id": 18, "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "order": 8}], "directors": [{"name": "Roger Kumble", "department": "Directing", "job": "Director", "credit_id": "52fe448a9251416c750385a3", "profile_path": "/uGKg8pacbWifsUK5IBvmPziHDKK.jpg", "id": 11873}], "vote_average": 5.5, "runtime": 88}, "11814": {"poster_path": "/6sK6ywu1dgp3QrCsT6JclKTjV0Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38934048, "overview": "Two unpopular teenagers, Gary and Wyatt, fail at all attempts to be accepted by their peers. Their desperation to be liked leads them to \"create\" a woman via their computer. Their living and breathing creation is a gorgeous woman, Lisa, whose purpose is to boost their confidence level by putting them into situations which require Gary and Wyatt to act like men.", "video": false, "id": 11814, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Weird Science", "tagline": "If you can't get a date, make one!", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090305", "adult": false, "backdrop_path": "/2jjKaHMm7X1RODFMZcq3YcXxoyn.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}], "release_date": "1985-08-01", "popularity": 0.67897241479225, "original_title": "Weird Science", "budget": 0, "cast": [{"name": "Anthony Michael Hall", "character": "Gary Wallace", "id": 1904, "credit_id": "52fe448a9251416c7503868f", "cast_id": 9, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 0}, {"name": "Kelly LeBrock", "character": "Lisa", "id": 46948, "credit_id": "52fe448a9251416c75038693", "cast_id": 10, "profile_path": "/2OiiFAyI989TQtlTxsqheInXmbA.jpg", "order": 1}, {"name": "Ilan Mitchell-Smith", "character": "Wyatt Donnelly", "id": 70572, "credit_id": "52fe448a9251416c75038697", "cast_id": 11, "profile_path": "/m39Jjg9K8iO4mq9hwbVNvBpPXlr.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Chet Donnelly", "id": 2053, "credit_id": "52fe448a9251416c7503869b", "cast_id": 12, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Suzanne Snyder", "character": "Deb", "id": 20363, "credit_id": "52fe448a9251416c7503869f", "cast_id": 13, "profile_path": "/90FrTcjJudpeIYUjUzlO6XAmvnt.jpg", "order": 4}, {"name": "Judie Aronson", "character": "Hilly", "id": 72541, "credit_id": "52fe448a9251416c750386a3", "cast_id": 14, "profile_path": "/q30tWo0p0NbJAE9gQ54T2NTCCiT.jpg", "order": 5}, {"name": "Robert Rusler", "character": "Max", "id": 52306, "credit_id": "52fe448a9251416c750386a7", "cast_id": 16, "profile_path": "/4LHRIK6ffdUax43WcSqdIZTMh2b.jpg", "order": 6}, {"name": "Robert Downey Jr.", "character": "Ian", "id": 3223, "credit_id": "52fe448a9251416c750386ab", "cast_id": 17, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 7}, {"name": "Steve James", "character": "Guy At Table", "id": 55271, "credit_id": "52fe448a9251416c750386af", "cast_id": 18, "profile_path": "/pNK50BHuGfegOJo8scrd3ys5KNB.jpg", "order": 8}, {"name": "Vernon Wells", "character": "Lord General", "id": 26491, "credit_id": "545518a30e0a2648c5004afd", "cast_id": 19, "profile_path": "/wEsrnd0yAYadESrq2ZSAmLEs52i.jpg", "order": 9}, {"name": "Michael Berryman", "character": "Mutant Biker", "id": 7073, "credit_id": "545518b60e0a2648c5004aff", "cast_id": 20, "profile_path": "/vXvztwbkFc0Pz8ty0Jlaomo8P10.jpg", "order": 10}, {"name": "Jill Whitlow", "character": "Perfume Salesgirl", "id": 83096, "credit_id": "545518f9c3a3681480004ad4", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Britt Leach", "character": "Al Wallace", "id": 97717, "credit_id": "54551a7ac3a3681473004824", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe448a9251416c75038661", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.6, "runtime": 94}, "11817": {"poster_path": "/pHclmPMiZsLjTpcdCJgJMMh7ccC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A mysterious and immortal Tibetan kung fu master, who has spent the last 60 years traveling around the world protecting the ancient Scroll of the Ultimate, mentors a selfish street kid in the ancient intricacies of kung fu.", "video": false, "id": 11817, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Bulletproof Monk", "tagline": "A power beyond measure requires a protector without equal.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "bo", "name": ""}, {"iso_639_1": "pa", "name": "\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0245803", "adult": false, "backdrop_path": "/n6F0RaYx1Y0nU2JBYDKNoB4Sgni.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2003-04-16", "popularity": 0.851308305948262, "original_title": "Bulletproof Monk", "budget": 52000000, "cast": [{"name": "Seann William Scott", "character": "Kar", "id": 57599, "credit_id": "52fe448b9251416c750387df", "cast_id": 11, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 0}, {"name": "Jaime King", "character": "Jade", "id": 5915, "credit_id": "52fe448b9251416c750387e3", "cast_id": 12, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 1}, {"name": "Karel Roden", "character": "Strucker", "id": 10841, "credit_id": "52fe448b9251416c750387e7", "cast_id": 13, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 2}, {"name": "Chow Yun-Fat", "character": "nameless monk", "id": 1619, "credit_id": "52fe448b9251416c750387eb", "cast_id": 14, "profile_path": "/c9QcWUSfHjNrH5dQQobqCKfHzUj.jpg", "order": 3}, {"name": "K. C. Collins", "character": "Sax", "id": 74278, "credit_id": "52fe448b9251416c750387ef", "cast_id": 15, "profile_path": "/7GRgZGqTZ2e1j2FZLJWND75a4My.jpg", "order": 4}, {"name": "Victoria Smurfit", "character": "Nina", "id": 3315, "credit_id": "52fe448b9251416c750387f3", "cast_id": 16, "profile_path": "/aNPzf4S9WNIF60HTkTuGHvE8JqO.jpg", "order": 5}, {"name": "Marcus Jean Pirae", "character": "Mr. Funktastic", "id": 1005130, "credit_id": "52fe448b9251416c750387f7", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Mako", "character": "Mr. Kojima", "id": 10134, "credit_id": "52fe448b9251416c750387fb", "cast_id": 18, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 7}, {"name": "Roger Yuan", "character": "Master Monk", "id": 2974, "credit_id": "52fe448b9251416c750387ff", "cast_id": 19, "profile_path": "/mocNZK4KHv3j9os7tsS7b9B9ecK.jpg", "order": 8}, {"name": "Sean Bell", "character": "Diesel", "id": 190884, "credit_id": "52fe448b9251416c75038803", "cast_id": 20, "profile_path": "/cJvgfRov9lGPONTU5doppJb5h7R.jpg", "order": 9}, {"name": "Kishaya Dudley", "character": "DV", "id": 1053949, "credit_id": "52fe448b9251416c75038807", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Rob Archer", "character": "Buzz", "id": 1024492, "credit_id": "52fe448b9251416c7503880b", "cast_id": 22, "profile_path": "/ffoxJ4xz7KuyK06b2W4wDE4uPaL.jpg", "order": 11}, {"name": "Mauricio Rodas", "character": "Wicho", "id": 209772, "credit_id": "52fe448b9251416c7503880f", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Bayo Akinfemi", "character": "Shade", "id": 201712, "credit_id": "52fe448b9251416c75038813", "cast_id": 24, "profile_path": "/jvZr8QZeAfqz3D60dpQJHjN4uvZ.jpg", "order": 13}, {"name": "Russell Yuen", "character": "Brother Tenzin", "id": 29466, "credit_id": "52fe448b9251416c75038817", "cast_id": 25, "profile_path": "/jCzbsp4aN7xUd8iW6FZ4HGoNovF.jpg", "order": 14}], "directors": [{"name": "Paul Hunter", "department": "Directing", "job": "Director", "credit_id": "52fe448b9251416c750387a5", "profile_path": "/3Qvmhvezs7SGkeMGdBCVKAJy1XF.jpg", "id": 70573}], "vote_average": 5.3, "runtime": 104}, "11820": {"poster_path": "/zLn6dKedtaR3rnCRohxIxjfqmxV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of Katherine Ann Watson, a feminist teacher who studied at UCLA graduate school and in 1953 left her boyfriend behind in Los Angeles, California to teach at Wellesley College, a conservative women's private liberal arts college in Massachusetts, United States.", "video": false, "id": 11820, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Mona Lisa Smile", "tagline": "In a world that told them how to think, she showed them how to live.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0304415", "adult": false, "backdrop_path": "/lkvnT8SShNsdqM2AR1Lyp15PFrk.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}], "release_date": "2003-12-19", "popularity": 0.604484834440706, "original_title": "Mona Lisa Smile", "budget": 0, "cast": [{"name": "Julia Roberts", "character": "Katherine Ann Watson", "id": 1204, "credit_id": "52fe448b9251416c7503894f", "cast_id": 11, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Betty Warren", "id": 205, "credit_id": "52fe448b9251416c75038953", "cast_id": 12, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Julia Stiles", "character": "Joan Brandwyn", "id": 12041, "credit_id": "52fe448b9251416c75038957", "cast_id": 13, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 2}, {"name": "Maggie Gyllenhaal", "character": "Giselle Levy", "id": 1579, "credit_id": "52fe448b9251416c7503895b", "cast_id": 14, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 3}, {"name": "Ginnifer Goodwin", "character": "Constance Baker", "id": 417, "credit_id": "52fe448b9251416c7503895f", "cast_id": 15, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 4}, {"name": "Topher Grace", "character": "Tommy Donegal", "id": 17052, "credit_id": "52fe448b9251416c75038963", "cast_id": 16, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 5}, {"name": "Dominic West", "character": "Bill Dunbar", "id": 17287, "credit_id": "52fe448c9251416c75038967", "cast_id": 17, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 6}, {"name": "Taylor Roberts", "character": "Louise", "id": 1067581, "credit_id": "52fe448c9251416c7503896b", "cast_id": 18, "profile_path": "/nEnteJX3x6pVg0bgyPSUrDicBMS.jpg", "order": 7}, {"name": "Juliet Stevenson", "character": "Amanda Armstrong", "id": 6238, "credit_id": "52fe448c9251416c7503896f", "cast_id": 19, "profile_path": "/1LBlN6J5e6kj3y6oxnxErAJidL8.jpg", "order": 8}, {"name": "Marcia Gay Harden", "character": "Nancy Abbey", "id": 4726, "credit_id": "52fe448c9251416c75038973", "cast_id": 20, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 9}, {"name": "Tori Amos", "character": "Wedding Singer", "id": 111164, "credit_id": "52fe448c9251416c75038977", "cast_id": 21, "profile_path": "/t0uZtsTZezUAufN1wvUG90Qq2i6.jpg", "order": 10}], "directors": [{"name": "Mike Newell", "department": "Directing", "job": "Director", "credit_id": "52fe448b9251416c75038915", "profile_path": "/vGStW8cFGBdQkCPGwjZwe8uZUEF.jpg", "id": 10723}], "vote_average": 6.5, "runtime": 117}, "82525": {"poster_path": "/ecN4PGSU6zhYlAUL8Jh4qyE2um9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47000000, "overview": "Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.", "video": false, "id": 82525, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Savages", "tagline": "Young Beautiful Deadly.", "vote_count": 276, "homepage": "http://www.savagesfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1615065", "adult": false, "backdrop_path": "/hAQ6V21C8EhTaEVuF8Rq054yqTj.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Ixtlan", "id": 4198}, {"name": "Onda Entertainment", "id": 11802}], "release_date": "2012-07-06", "popularity": 0.774005814644101, "original_title": "Savages", "budget": 45000000, "cast": [{"name": "Blake Lively", "character": "O", "id": 59175, "credit_id": "52fe485a9251416c910894d5", "cast_id": 52, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 0}, {"name": "Taylor Kitsch", "character": "Chon", "id": 60900, "credit_id": "52fe485a9251416c910894d9", "cast_id": 53, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 1}, {"name": "Aaron Taylor-Johnson", "character": "Ben", "id": 27428, "credit_id": "52fe485a9251416c910894dd", "cast_id": 54, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 2}, {"name": "Benicio del Toro", "character": "Lado", "id": 1121, "credit_id": "52fe485a9251416c910894e1", "cast_id": 55, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Elena", "id": 3136, "credit_id": "52fe485a9251416c910894e5", "cast_id": 56, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "John Travolta", "character": "Dennis", "id": 8891, "credit_id": "52fe485a9251416c910894e9", "cast_id": 57, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 5}, {"name": "Demi\u00e1n Bichir", "character": "Alex", "id": 76961, "credit_id": "52fe485a9251416c910894ed", "cast_id": 58, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 6}, {"name": "Emile Hirsch", "character": "Spin", "id": 46593, "credit_id": "52fe485a9251416c910894f1", "cast_id": 59, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 7}, {"name": "M\u00eda Maestro", "character": "Dolores", "id": 6859, "credit_id": "52fe485a9251416c910894f5", "cast_id": 60, "profile_path": "/UIf7kAHqAGRwJ9TZSkZ91A1scr.jpg", "order": 8}, {"name": "Diego Cata\u00f1o", "character": "Esteban", "id": 112129, "credit_id": "52fe485a9251416c910894f9", "cast_id": 61, "profile_path": "/f3W2IYuZywRd9bFbeRUviiDAA60.jpg", "order": 9}, {"name": "Joaqu\u00edn Cosio", "character": "El Azul", "id": 76857, "credit_id": "52fe485a9251416c910894fd", "cast_id": 62, "profile_path": "/nRdZ0BNi8JOG7cJ10OTZeVmDxTE.jpg", "order": 10}, {"name": "Sandra Echeverr\u00eda", "character": "Magda", "id": 145184, "credit_id": "52fe485a9251416c91089501", "cast_id": 63, "profile_path": "/21OQHuzcf6Ew7CE2nxpjgt3L98M.jpg", "order": 11}, {"name": "Antonio Jaramillo", "character": "Jaime", "id": 180306, "credit_id": "52fe485a9251416c91089505", "cast_id": 64, "profile_path": "/wFPO47cqqj6CqtXdhJIQ172olwg.jpg", "order": 12}, {"name": "Ali Wong", "character": "Claire", "id": 591835, "credit_id": "52fe485a9251416c91089509", "cast_id": 65, "profile_path": "/tnwFfATQCT1skZ0ireiHtxVpE6m.jpg", "order": 13}, {"name": "Trevor Donovan", "character": "Matt / Magda's Boyfriend", "id": 1233560, "credit_id": "52fe485a9251416c9108950d", "cast_id": 66, "profile_path": "/4S4JlcxIHpU6UXnskZucQo8zOHE.jpg", "order": 14}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe48599251416c91089465", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 6.0, "runtime": 131}, "11824": {"poster_path": "/3TKJbKNpHvRP8YVnwbgfok41AAC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "What's a high school kid got to do to be popular? Just let down his hair and howl! Starring Michael J. Fox (Back to the Future) Teen Wolf is an outrageous comedy about a shy teenager with more than a changing voice to contend with... he's a budding young werewolf! And when his new-found powers help him score at basketball - and with the popular girls - he has some pretty hairy decisions to make.", "video": false, "id": 11824, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Teen Wolf", "tagline": "He always wanted to be special... but he never expected this!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/n48aLnG4NpTWpu1PXxxgFMYlbCM.jpg", "poster_path": "/gJEtFrz4lNFhPoQ5cFvSekZQJDT.jpg", "id": 43066, "name": "Teen Wolf Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090142", "adult": false, "backdrop_path": "/dNPmXYRS3nN4vD7MLtz5lP79DCB.jpg", "production_companies": [{"name": "Wolfkill", "id": 3975}], "release_date": "1985-08-23", "popularity": 0.4280898232057, "original_title": "Teen Wolf", "budget": 0, "cast": [{"name": "Michael J. Fox", "character": "Scott Howard", "id": 521, "credit_id": "52fe448c9251416c75038b7f", "cast_id": 9, "profile_path": "/7yFPB60SpKQJA5wC1smdWjkDUED.jpg", "order": 0}, {"name": "James Hampton", "character": "Harold Howard", "id": 14848, "credit_id": "52fe448c9251416c75038b83", "cast_id": 10, "profile_path": "/fMaqAppdodHg5U96RKkC7P7lwOP.jpg", "order": 1}, {"name": "Susan Ursitti", "character": "Lisa 'Boof' Marconi", "id": 70612, "credit_id": "52fe448c9251416c75038b87", "cast_id": 11, "profile_path": null, "order": 2}, {"name": "Jerry Levine", "character": "Rupert 'Stiles' Stilinski", "id": 26470, "credit_id": "52fe448c9251416c75038b8b", "cast_id": 12, "profile_path": "/6pNnyI19jquUa5dziLPZPsQn4WP.jpg", "order": 3}, {"name": "Matt Adler", "character": "Lewis", "id": 92623, "credit_id": "52fe448c9251416c75038b8f", "cast_id": 13, "profile_path": "/hklcdXdKkvW15x4g1XrrdrDiLGX.jpg", "order": 4}, {"name": "Lorie Griffin", "character": "Pamela Wells", "id": 119892, "credit_id": "52fe448c9251416c75038b93", "cast_id": 14, "profile_path": "/xmmIdEHoBTGWwQmql2PFEqUAbEw.jpg", "order": 5}, {"name": "Jim McKrell", "character": "Vice Principal Rusty Thorne", "id": 100614, "credit_id": "52fe448c9251416c75038b97", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Mark Arnold", "character": "Mick McAllister", "id": 119893, "credit_id": "52fe448c9251416c75038b9b", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Jay Tarses", "character": "Coach Bobby Finstock", "id": 70868, "credit_id": "52fe448c9251416c75038b9f", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Mark Holton", "character": "Chubby", "id": 44818, "credit_id": "52fe448c9251416c75038ba3", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Scott Paulin", "character": "Kirk Lolley", "id": 48810, "credit_id": "52fe448c9251416c75038ba7", "cast_id": 19, "profile_path": "/hXCaNiAPOuV16eLEWfnPmNHBX2L.jpg", "order": 10}, {"name": "Elizabeth Gorcey", "character": "Tina", "id": 119894, "credit_id": "52fe448c9251416c75038bab", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Melanie Manos", "character": "Dina", "id": 119895, "credit_id": "52fe448c9251416c75038baf", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Doug Savant", "character": "Brad", "id": 14737, "credit_id": "52fe448c9251416c75038bb3", "cast_id": 22, "profile_path": "/zg1NkpTEEjIvQDmTutRCiGZTKgm.jpg", "order": 13}, {"name": "Charles Zucker", "character": "Malcolm", "id": 119896, "credit_id": "52fe448c9251416c75038bb7", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Rod Daniel", "department": "Directing", "job": "Director", "credit_id": "52fe448c9251416c75038b51", "profile_path": null, "id": 64877}], "vote_average": 6.7, "runtime": 91}, "3635": {"poster_path": "/iwapgsiyOLFZCrzDmdspdkrbkIW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "LU", "name": "Luxembourg"}], "revenue": 31466789, "overview": "This film, adapted from a work of fiction by author Tracy Chevalier, tells a story about the events surrounding the creation of the painting \"Girl With A Pearl Earring\" by 17th century Dutch master Johannes Vermeer. A young peasant maid working in the house of painter Johannes Vermeer becomes his talented assistant and the model for one of his most famous works.", "video": false, "id": 3635, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Girl with a Pearl Earring", "tagline": "", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0335119", "adult": false, "backdrop_path": "/qUQo4Xlv9nwBDPJxz5HtIsXqq1C.jpg", "production_companies": [{"name": "Wild Bear Films", "id": 1470}, {"name": "Archer Street Productions", "id": 1471}, {"name": "Delux Productions", "id": 1472}], "release_date": "2003-08-31", "popularity": 0.405176955253459, "original_title": "Girl with a Pearl Earring", "budget": 0, "cast": [{"name": "Scarlett Johansson", "character": "Griet", "id": 1245, "credit_id": "52fe43a1c3a36847f80632bd", "cast_id": 1, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Colin Firth", "character": "Johannes Vermeer", "id": 5472, "credit_id": "52fe43a1c3a36847f80632c1", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Cillian Murphy", "character": "Pieter", "id": 2037, "credit_id": "52fe43a1c3a36847f80632c5", "cast_id": 3, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Pieter Van Ruijven", "id": 207, "credit_id": "52fe43a1c3a36847f8063317", "cast_id": 17, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Judy Parfitt", "character": "Maria Thins", "id": 33448, "credit_id": "52fe43a1c3a36847f806331b", "cast_id": 18, "profile_path": "/vF3gRzpyL5y2rLMOoamYjWmux7U.jpg", "order": 4}, {"name": "Essie Davis", "character": "Catharina Bolnes Vermeer", "id": 33449, "credit_id": "52fe43a1c3a36847f806331f", "cast_id": 19, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 5}, {"name": "Joanna Scanlan", "character": "Tanneke", "id": 33450, "credit_id": "52fe43a1c3a36847f8063323", "cast_id": 20, "profile_path": "/sUVkc2qcEhuLVHLAfXak2Bk4mKt.jpg", "order": 6}, {"name": "Gabrielle Reidy", "character": "Griet's Mother", "id": 33451, "credit_id": "52fe43a1c3a36847f8063327", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Chris McHallem", "character": "Griet's Father", "id": 33452, "credit_id": "52fe43a1c3a36847f806332b", "cast_id": 22, "profile_path": "/aUTRtF4KnyGTF0VmE63hA8kMZgn.jpg", "order": 8}, {"name": "Alakina Mann", "character": "Cornelia Vermeer", "id": 20051, "credit_id": "52fe43a1c3a36847f806332f", "cast_id": 23, "profile_path": "/u6Zm6crP9femMxdBW0KUQpLELTJ.jpg", "order": 9}, {"name": "Rollo Weeks", "character": "Frans", "id": 33453, "credit_id": "52fe43a1c3a36847f8063333", "cast_id": 24, "profile_path": "/t2ggb881ZXdZXpYKpWjp62G9Anj.jpg", "order": 10}, {"name": "Anna Popplewell", "character": "Maertge", "id": 5529, "credit_id": "52fe43a1c3a36847f8063337", "cast_id": 25, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 11}], "directors": [{"name": "Peter Webber", "department": "Directing", "job": "Director", "credit_id": "52fe43a1c3a36847f80632cb", "profile_path": null, "id": 16785}], "vote_average": 6.5, "runtime": 101}, "249397": {"poster_path": "/2FBFiDhx3tGe8PG4A5iuCbeIJ4s.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 2227167, "overview": "The continuation of Joe's sexually dictated life delves into the darker aspects of her adult life and what led to her being in Seligman's care.", "video": false, "id": 249397, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Nymphomaniac: Vol. II", "tagline": "Forget About Love", "vote_count": 188, "homepage": "http://nymphomaniacthemovie.com/", "belongs_to_collection": {"backdrop_path": "/7B71Lt136GptW7AcrSs3mZ7rjrR.jpg", "poster_path": "/mkML1KIuHsv9bF5cdwMl6W8S0V1.jpg", "id": 258664, "name": "Nymphomaniac Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2382009", "adult": false, "backdrop_path": "/smqBCtBN49ErfUiJFyXDUtjjxh3.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}], "release_date": "2013-12-25", "popularity": 1.4668986791208, "original_title": "Nymphomaniac: Vol. II", "budget": 0, "cast": [{"name": "Charlotte Gainsbourg", "character": "Joe", "id": 4273, "credit_id": "52fe4f43c3a36847f82c9277", "cast_id": 1, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 0}, {"name": "Stellan Skarsg\u00e5rd", "character": "Seligman", "id": 1640, "credit_id": "5318b898c3a3685c43001a6f", "cast_id": 9, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 1}, {"name": "Shia LaBeouf", "character": "Jer\u00f4me", "id": 10959, "credit_id": "52fe4f43c3a36847f82c927b", "cast_id": 2, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 2}, {"name": "Willem Dafoe", "character": "L", "id": 5293, "credit_id": "5318b884c3a3685c31001a1f", "cast_id": 7, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 3}, {"name": "Stacy Martin", "character": "Young Joe", "id": 1137823, "credit_id": "531addc1c3a3685c310044f3", "cast_id": 14, "profile_path": "/78BhUmgZETfUNsURMFP0E85WB3m.jpg", "order": 4}, {"name": "Udo Kier", "character": "The Waiter", "id": 1646, "credit_id": "5318b88ac3a3685c31001a2a", "cast_id": 8, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 5}, {"name": "Jean-Marc Barr", "character": "Debtor Gentleman", "id": 1642, "credit_id": "5318b8a4c3a3685c43001a71", "cast_id": 10, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 6}, {"name": "Jamie Bell", "character": "K", "id": 478, "credit_id": "5318b8b0c3a3685c31001a2d", "cast_id": 11, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 7}, {"name": "Mia Goth", "character": "P", "id": 1137824, "credit_id": "531add5ac3a3685c310044ed", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Michael Pas", "character": "Old Jer\u00f4me", "id": 140493, "credit_id": "531add98c3a3685c4a0046c1", "cast_id": 13, "profile_path": "/tSzIvBM6JVfPGpHDO9iVApirETd.jpg", "order": 9}, {"name": "Shanti Roney", "character": "Interpreter", "id": 11044, "credit_id": "5467849222136e1e24000315", "cast_id": 20, "profile_path": "/ti21d61B3kNV0QZCJHsviad79jR.jpg", "order": 10}, {"name": "Kate Ashfield", "character": "Therapist", "id": 11110, "credit_id": "546784ff22136e1e190002e4", "cast_id": 21, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 11}, {"name": "Sophie Kennedy Clark", "character": "B", "id": 1151957, "credit_id": "5467853b22136e1e1c000302", "cast_id": 22, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 12}, {"name": "Lien van de Kelder", "character": "Clerk in Horse Shop", "id": 237837, "credit_id": "546785a1eaeb8118c4000310", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Laura Christensen", "character": "Babysitter", "id": 83011, "credit_id": "546785d4eaeb8118b40002f0", "cast_id": 24, "profile_path": "/q9AoEwRz0wtqawZfh5od7AzVDZw.jpg", "order": 14}, {"name": "Caroline Goodall", "character": "Psychologist", "id": 6692, "credit_id": "5467860522136e1e1f00030c", "cast_id": 25, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 15}, {"name": "Christian Slater", "character": "", "id": 2224, "credit_id": "550f13ac925141469900a55c", "cast_id": 26, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 16}, {"name": "Uma Thurman", "character": "", "id": 139, "credit_id": "550f13c0c3a368487400b664", "cast_id": 27, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 17}, {"name": "Connie Nielsen", "character": "", "id": 935, "credit_id": "550f13e4925141065c0032f9", "cast_id": 28, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 18}, {"name": "Jens Albinus", "character": "", "id": 6121, "credit_id": "550f1405925141469900a565", "cast_id": 29, "profile_path": "/9CgGf30xp3hreseXoQd3qCQV1cY.jpg", "order": 19}, {"name": "Peter Gilbert Cotton", "character": "", "id": 126958, "credit_id": "550f140fc3a368487400b672", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Nicolas Bro", "character": "", "id": 15086, "credit_id": "550f141d9251416bd1000e97", "cast_id": 31, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 21}, {"name": "Jesper Christensen", "character": "", "id": 2244, "credit_id": "550f142f92514146a000a691", "cast_id": 32, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 22}, {"name": "Tania Carlin", "character": "", "id": 1137827, "credit_id": "550f143ec3a3683e7f00319c", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Felicity Gilbert", "character": "", "id": 1269681, "credit_id": "550f144f9251416bd1000eab", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Cyron Bj\u00f8rn Melville", "character": "", "id": 112733, "credit_id": "550f146ec3a3683f3900317b", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Hugo Speer", "character": "", "id": 2251, "credit_id": "550f147e925141065c003304", "cast_id": 36, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 26}, {"name": "Saskia Reeves", "character": "", "id": 13363, "credit_id": "550f1495c3a3683e7f0031a1", "cast_id": 37, "profile_path": "/tCZFXKrWp4JQQOHWYFlwoHZGt7a.jpg", "order": 27}, {"name": "Christian Gade Bjerrum", "character": "", "id": 1444097, "credit_id": "550f14aac3a3681db2009d58", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Ronja Rissmann", "character": "", "id": 1444098, "credit_id": "550f14b6c3a3683f39003181", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Maja Arsovic", "character": "", "id": 1444099, "credit_id": "550f14cc925141469900a57f", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Sofie Kasten", "character": "", "id": 1444100, "credit_id": "550f14d5c3a3683f39003187", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Ananya Berg", "character": "", "id": 1385628, "credit_id": "550f14e0c3a3681db2009d60", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Anders Hove", "character": "", "id": 1566, "credit_id": "550f14e9c3a368487400b691", "cast_id": 43, "profile_path": "/m9UAUhR7CzC376jy9dV9HGctqSV.jpg", "order": 33}, {"name": "James Northcote", "character": "", "id": 1362119, "credit_id": "550f14fec3a3683e7f0031ad", "cast_id": 44, "profile_path": "/wuf9ARlVXPonmRN21WcYQtdSiOv.jpg", "order": 34}, {"name": "Charlie Hawkins", "character": "", "id": 1444101, "credit_id": "550f150a925141065c00330d", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "Clayton Nemrow", "character": "", "id": 1170767, "credit_id": "550f152692514166db001020", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Simon B\u00f6er", "character": "", "id": 1104730, "credit_id": "550f1530c3a3683f3900318f", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Jeff Burrell", "character": "", "id": 49491, "credit_id": "550f1542c3a368487400b69a", "cast_id": 48, "profile_path": null, "order": 38}, {"name": "Andreas Gr\u00f6tzinger", "character": "", "id": 1444103, "credit_id": "550f154ec3a3683e7f0031b3", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Tomas Sinclair Spencer", "character": "", "id": 1444111, "credit_id": "550f156f92514146a000a6a3", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Jesse Inman", "character": "", "id": 1444112, "credit_id": "550f157cc3a3683eb8002f93", "cast_id": 51, "profile_path": null, "order": 41}, {"name": "Christoph Schechinger", "character": "", "id": 1439733, "credit_id": "550f15ac92514164ac000fc0", "cast_id": 52, "profile_path": null, "order": 42}, {"name": "David Halina", "character": "", "id": 1329094, "credit_id": "550f15b7c3a368488600abd1", "cast_id": 53, "profile_path": null, "order": 43}, {"name": "Jonas Baeck", "character": "", "id": 1444115, "credit_id": "550f15cc9251416bd1000ec4", "cast_id": 54, "profile_path": null, "order": 44}, {"name": "Katharina R\u00fcbertus", "character": "", "id": 1444116, "credit_id": "550f15d5925141073d003307", "cast_id": 55, "profile_path": null, "order": 45}, {"name": "Inga Behring", "character": "", "id": 1444117, "credit_id": "550f15f7c3a3683f3900319b", "cast_id": 56, "profile_path": null, "order": 46}, {"name": "Lisa Matschke", "character": "", "id": 1444118, "credit_id": "550f1604c3a3683f0a003029", "cast_id": 57, "profile_path": null, "order": 47}, {"name": "Moritz Tellmann", "character": "", "id": 1444119, "credit_id": "550f1635c3a3683dd6002ee2", "cast_id": 58, "profile_path": null, "order": 48}, {"name": "Johannes Kienast", "character": "", "id": 1444120, "credit_id": "550f164192514166db00102c", "cast_id": 59, "profile_path": null, "order": 49}, {"name": "Frankie Dawson", "character": "", "id": 1444121, "credit_id": "550f1658c3a3683f390031a7", "cast_id": 60, "profile_path": null, "order": 50}, {"name": "George Dawson", "character": "", "id": 994453, "credit_id": "550f1661c3a3683eb8002fa0", "cast_id": 61, "profile_path": null, "order": 51}, {"name": "Harry Dawson", "character": "", "id": 1367900, "credit_id": "550f166cc3a368487400b6b2", "cast_id": 62, "profile_path": null, "order": 52}, {"name": "Markus Tomczyk", "character": "", "id": 553003, "credit_id": "550f1688925141469900a5bb", "cast_id": 63, "profile_path": null, "order": 53}, {"name": "Christoph J\u00f6de", "character": "", "id": 1327193, "credit_id": "550f1698925141073d003316", "cast_id": 64, "profile_path": null, "order": 54}, {"name": "Morgan Hartley", "character": "", "id": 1444127, "credit_id": "550f16bbc3a3683f390031b0", "cast_id": 65, "profile_path": null, "order": 55}, {"name": "Andrea Thomsen", "character": "", "id": 1444128, "credit_id": "550f16c6c3a3683eb8002fa8", "cast_id": 66, "profile_path": null, "order": 56}, {"name": "Tine Burn", "character": "", "id": 1444129, "credit_id": "550f16dac3a3683f0a003038", "cast_id": 67, "profile_path": null, "order": 57}, {"name": "Tabea Tarbiat", "character": "", "id": 1444130, "credit_id": "550f16e6c3a3683f0a00303d", "cast_id": 68, "profile_path": null, "order": 58}, {"name": "Janine Romanowski", "character": "", "id": 1444131, "credit_id": "550f17b2c3a368487400b6d7", "cast_id": 69, "profile_path": null, "order": 59}, {"name": "Lawrence Sheldon", "character": "", "id": 1444132, "credit_id": "550f17c2c3a3681db2009da6", "cast_id": 70, "profile_path": null, "order": 60}, {"name": "Ivan Pecnik", "character": "", "id": 1137826, "credit_id": "550f17f1c3a3683f390031d6", "cast_id": 71, "profile_path": null, "order": 61}, {"name": "Jonathon Sawdon", "character": "", "id": 1444133, "credit_id": "550f17fb925141469900a5dc", "cast_id": 72, "profile_path": null, "order": 62}, {"name": "Christopher Craig", "character": "", "id": 1152394, "credit_id": "550f181dc3a3683eb8002fd0", "cast_id": 73, "profile_path": "/eKwZW0oZc3vY8Lp385c6JcXKjnW.jpg", "order": 63}, {"name": "Jacob Levin-Christensen", "character": "", "id": 1441065, "credit_id": "550f1826c3a368487400b6e3", "cast_id": 74, "profile_path": null, "order": 64}, {"name": "Kookie Ryan", "character": "", "id": 1444134, "credit_id": "550f183dc3a3683e7f0031f4", "cast_id": 75, "profile_path": null, "order": 65}, {"name": "Papou", "character": "", "id": 1444135, "credit_id": "550f184a925141065c00335e", "cast_id": 76, "profile_path": null, "order": 66}, {"name": "Nicole Sandweg", "character": "", "id": 1444136, "credit_id": "550f1865925141469900a5ec", "cast_id": 77, "profile_path": null, "order": 67}, {"name": "Sarah Soetaert", "character": "", "id": 1444137, "credit_id": "550f187cc3a3683e7f0031fa", "cast_id": 78, "profile_path": null, "order": 68}, {"name": "Sami Loris", "character": "", "id": 129125, "credit_id": "550f1888c3a3683f390031e9", "cast_id": 79, "profile_path": null, "order": 69}, {"name": "Christine Urspruch", "character": "", "id": 28201, "credit_id": "550f18a9c3a3683dd6002f01", "cast_id": 80, "profile_path": "/i8RYQggISjM8IULpxUKVBVV4GSM.jpg", "order": 70}, {"name": "Daniela Lebang", "character": "", "id": 1444138, "credit_id": "550f18b3c3a3681db2009db9", "cast_id": 81, "profile_path": null, "order": 71}, {"name": "Omar Shargawi", "character": "", "id": 141879, "credit_id": "550f18cb925141065c003367", "cast_id": 82, "profile_path": null, "order": 72}, {"name": "Marcus Jakovljevic", "character": "", "id": 1329095, "credit_id": "550f18d3c3a3683f390031ef", "cast_id": 83, "profile_path": null, "order": 73}, {"name": "Conny Dachs", "character": "", "id": 1145463, "credit_id": "550f18eb9251416bd1000f0c", "cast_id": 84, "profile_path": null, "order": 74}, {"name": "Severin von Hoensbroech", "character": "", "id": 1012903, "credit_id": "550f18f592514164ac001006", "cast_id": 85, "profile_path": null, "order": 75}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe4f43c3a36847f82c9289", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.5, "runtime": 123}, "3638": {"poster_path": "/qBVLHY48fwij7T8iViqpAG7fU2q.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92601050, "overview": "Kate is a terrific chef at a Manhattan restaurant, sent to therapy by the restaurant owner because she is cold, unyielding, rule-bound, and a pain in the neck. Kate's world is flipped over when her only sister dies and her ten-year-old niece, Zoe, comes to live with her.", "video": false, "id": 3638, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "No Reservations", "tagline": "", "vote_count": 85, "homepage": "http://noreservationsmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481141", "adult": false, "backdrop_path": "/fwyY5D4NDM6L2In3HVW6mQvI1uH.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}], "release_date": "2007-07-25", "popularity": 1.19767520959416, "original_title": "No Reservations", "budget": 28000000, "cast": [{"name": "Catherine Zeta-Jones", "character": "Kate", "id": 1922, "credit_id": "52fe43a1c3a36847f8063369", "cast_id": 1, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "Nick", "id": 6383, "credit_id": "52fe43a1c3a36847f806336d", "cast_id": 2, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Abigail Breslin", "character": "Zoe", "id": 17140, "credit_id": "52fe43a1c3a36847f8063371", "cast_id": 3, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 2}, {"name": "Patricia Clarkson", "character": "Paula", "id": 1276, "credit_id": "52fe43a1c3a36847f8063375", "cast_id": 4, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 3}, {"name": "Jenny Wade", "character": "Leah", "id": 33430, "credit_id": "52fe43a1c3a36847f8063379", "cast_id": 5, "profile_path": "/3f85y7cJfHk05T5fuZem6kfLJoW.jpg", "order": 4}, {"name": "Bob Balaban", "character": "Therapist", "id": 12438, "credit_id": "52fe43a1c3a36847f806337d", "cast_id": 6, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 5}, {"name": "Br\u00edan F. O'Byrne", "character": "Sean", "id": 31713, "credit_id": "52fe43a1c3a36847f8063381", "cast_id": 7, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 6}, {"name": "Lily Rabe", "character": "Bernadette", "id": 4888, "credit_id": "52fe43a1c3a36847f8063385", "cast_id": 8, "profile_path": "/5qTAKNY5zTBQlDjdAb2Nq1FOhNi.jpg", "order": 7}, {"name": "Eric Silver", "character": "John", "id": 33431, "credit_id": "52fe43a1c3a36847f8063389", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Arija Bareikis", "character": "Christine", "id": 33432, "credit_id": "52fe43a1c3a36847f806338d", "cast_id": 10, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 9}, {"name": "Zo\u00eb Kravitz", "character": "Charlotte", "id": 37153, "credit_id": "52fe43a1c3a36847f80633d3", "cast_id": 22, "profile_path": "/mbaNkULOCXCHo9TKfLXPSSbTbdv.jpg", "order": 10}], "directors": [{"name": "Scott Hicks", "department": "Directing", "job": "Director", "credit_id": "52fe43a1c3a36847f8063393", "profile_path": "/saA36yAQYyTs0kzmH5hBprEszJX.jpg", "id": 33433}], "vote_average": 5.9, "runtime": 104}, "11831": {"poster_path": "/cVxLWl7JVVlg0Ky09E9Xlgey6T1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74000000, "overview": "In 1839, the slave ship Amistad set sail from Cuba to America. During the long trip, Cinque (Djimon Hounsou) leads the slaves in an unprecedented uprising. They are then held prisoner in Connecticut, and their release becomes the subject of heated debate. Freed slave Theodore Joadson (Morgan Freeman) wants Cinque and the others exonerated and recruits property lawyer Roger Baldwin (Matthew McConaughey) to help his case. Eventually, John Quincy Adams (Anthony Hopkins) also becomes an ally.", "video": false, "id": 11831, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}], "title": "Amistad", "tagline": "Freedom is not given. It is our right at birth. But there are some moments when it must be taken.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0118607", "adult": false, "backdrop_path": "/15uvO9r5CGtlg9v4vGvXMh1rxAx.jpg", "production_companies": [{"name": "Home Box Office (HBO)", "id": 3268}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "1997-12-03", "popularity": 0.14954906382111, "original_title": "Amistad", "budget": 36000000, "cast": [{"name": "Nigel Hawthorne", "character": "Martin Van Buren", "id": 15788, "credit_id": "52fe448e9251416c75038f43", "cast_id": 10, "profile_path": "/66PJ2LGSowVC1qPR4QIE62PnBd5.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "John Quincy Adams", "id": 4173, "credit_id": "52fe448e9251416c75038f47", "cast_id": 11, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Djimon Hounsou", "character": "Cinque", "id": 938, "credit_id": "52fe448e9251416c75038f4b", "cast_id": 12, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 2}, {"name": "Morgan Freeman", "character": "Theodore", "id": 192, "credit_id": "52fe448e9251416c75038f4f", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 3}, {"name": "Chiwetel Ejiofor", "character": "Ens. James Covey", "id": 5294, "credit_id": "52fe448e9251416c75038f53", "cast_id": 14, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 4}, {"name": "Matthew McConaughey", "character": "Roger Sherman Baldwin", "id": 10297, "credit_id": "52fe448e9251416c75038f57", "cast_id": 15, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 5}, {"name": "David Paymer", "character": "Secretary John Forsyth", "id": 19839, "credit_id": "52fe448e9251416c75038f5b", "cast_id": 16, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 6}, {"name": "Pete Postlethwaite", "character": "Holabird", "id": 4935, "credit_id": "52fe448e9251416c75038f5f", "cast_id": 17, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 7}, {"name": "Stellan Skarsg\u00e5rd", "character": "Tappan", "id": 1640, "credit_id": "52fe448e9251416c75038f63", "cast_id": 18, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 8}, {"name": "Anna Paquin", "character": "Queen Isabella", "id": 10690, "credit_id": "52fe448e9251416c75038f67", "cast_id": 19, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 9}, {"name": "Tom\u00e1s Mili\u00e1n", "character": "Calderon", "id": 21708, "credit_id": "52fe448e9251416c75038f71", "cast_id": 21, "profile_path": "/wylTdKie6zK1dgT5e3sZk4a1tD1.jpg", "order": 10}, {"name": "John Ortiz", "character": "Montes", "id": 40543, "credit_id": "52fe448e9251416c75038f75", "cast_id": 22, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 11}, {"name": "Ralph Brown", "character": "Lieutenant Gedney", "id": 53916, "credit_id": "52fe448e9251416c75038f79", "cast_id": 23, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 12}, {"name": "Allan Rich", "character": "Judge Juttson", "id": 568531, "credit_id": "52fe448e9251416c75038f7d", "cast_id": 24, "profile_path": "/Asmdc5LrKtjklKyWuEochYe3Rn2.jpg", "order": 13}, {"name": "Paul Guilfoyle", "character": "Attorney", "id": 925, "credit_id": "52fe448e9251416c75038f81", "cast_id": 25, "profile_path": "/vQRNg8D5jeUHGKeFzMuwFaAFnzZ.jpg", "order": 14}, {"name": "Peter Firth", "character": "Captain Fitzgerald", "id": 22109, "credit_id": "52fe448e9251416c75038f85", "cast_id": 26, "profile_path": "/2qFPG3fIwshfPGDwIoP5aKVKFQM.jpg", "order": 15}, {"name": "Jeremy Northam", "character": "Judge Coglin", "id": 18325, "credit_id": "52fe448e9251416c75038f89", "cast_id": 27, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 16}, {"name": "Arliss Howard", "character": "John C. Calhoun", "id": 3229, "credit_id": "52fe448e9251416c75038f8d", "cast_id": 28, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 17}, {"name": "Rusty Schwimmer", "character": "Mrs. Pendleton", "id": 34407, "credit_id": "52fe448e9251416c75038f91", "cast_id": 29, "profile_path": "/5syOxoKZboIDq5r5cQCfOpDyaoQ.jpg", "order": 18}, {"name": "Jake Weber", "character": "Mr. Wright", "id": 4177, "credit_id": "52fe448e9251416c75038f95", "cast_id": 30, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 19}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe448e9251416c75038f15", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.4, "runtime": 155}, "10214": {"poster_path": "/cfeJP0D3SSbtB6Hz3jxFcnbiLM4.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tim Avery, an aspiring cartoonist, finds himself in a predicament when his dog stumbles upon the mask of Loki. Then after conceiving an infant son \"born of the mask\", he discovers just how looney child raising can be.", "video": false, "id": 10214, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Son of the Mask", "tagline": "Who's next?", "vote_count": 64, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ucDNm5TJW1ji7kIjnX2SZYm7ATM.jpg", "poster_path": "/pl2vNt9XlxITTgm8wCQ2Y6ThkpT.jpg", "id": 43072, "name": "The Mask Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0362165", "adult": false, "backdrop_path": "/nGBzfYq31oJdmVkcwgex0GkFemS.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Path\u00e9 Distribution", "id": 3012}], "release_date": "2005-02-18", "popularity": 1.29394198097134, "original_title": "Son of the Mask", "budget": 84000000, "cast": [{"name": "Jamie Kennedy", "character": "The Mask", "id": 6213, "credit_id": "52fe43439251416c75009b71", "cast_id": 1, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 0}, {"name": "Alan Cumming", "character": "Loki", "id": 10697, "credit_id": "52fe43439251416c75009b75", "cast_id": 2, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 1}, {"name": "Traylor Howard", "character": "Tonya Avery", "id": 54826, "credit_id": "52fe43439251416c75009b79", "cast_id": 3, "profile_path": "/8UYTuF7qOZeLnQnTEvnhha1D7MX.jpg", "order": 2}], "directors": [{"name": "Lawrence Guterman", "department": "Directing", "job": "Director", "credit_id": "52fe43439251416c75009b7f", "profile_path": "/txLsjc2oiqHzOmjdm4MG637SCdf.jpg", "id": 64191}], "vote_average": 3.9, "runtime": 94}, "11835": {"poster_path": "/yaf4WwHOAghlGQeC9qovOarLo27.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16974459, "overview": "Nick Hume is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever. Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.", "video": false, "id": 11835, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Death Sentence", "tagline": "Protect what's yours.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804461", "adult": false, "backdrop_path": "/cf8mtsRexfOkXe37AwsaK5FgHal.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Baldwin Entertainment Group", "id": 2234}, {"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Brass Hat Films", "id": 13817}], "release_date": "2007-08-31", "popularity": 0.80084397793365, "original_title": "Death Sentence", "budget": 20000000, "cast": [{"name": "Kevin Bacon", "character": "Nick Hume", "id": 4724, "credit_id": "52fe448f9251416c75039149", "cast_id": 16, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Garrett Hedlund", "character": "Billy Darley", "id": 9828, "credit_id": "52fe448f9251416c750390fd", "cast_id": 2, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 1}, {"name": "Kelly Preston", "character": "Helen Hume", "id": 11164, "credit_id": "52fe448f9251416c75039101", "cast_id": 3, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 2}, {"name": "Jordan Garrett", "character": "Lucas Hume", "id": 70643, "credit_id": "52fe448f9251416c75039105", "cast_id": 4, "profile_path": "/dzm24MyA3nqLGrDSyYdkJIOzDNN.jpg", "order": 3}, {"name": "John Goodman", "character": "Bones Darley", "id": 1230, "credit_id": "52fe448f9251416c75039109", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "Aisha Tyler", "character": "Detective Wallis", "id": 38674, "credit_id": "52fe448f9251416c7503914d", "cast_id": 17, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 5}, {"name": "Stuart Lafferty", "character": "Brendan Hume", "id": 1215023, "credit_id": "52fe448f9251416c7503917b", "cast_id": 26, "profile_path": "/gG89wwtIvRLT2xealumbQ1HYIE.jpg", "order": 6}, {"name": "Matt O'Leary", "character": "Joe Darley", "id": 71467, "credit_id": "530a2b119251411108003979", "cast_id": 33, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 7}, {"name": "Edi Gathegi", "character": "Bodie", "id": 39391, "credit_id": "530a2b219251411117003a97", "cast_id": 34, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 8}, {"name": "Hector Atreyu Ruiz", "character": "Heco", "id": 24202, "credit_id": "530a2b2f9251411105003cb6", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Kanin Howell", "character": "Baggy", "id": 179851, "credit_id": "530a2b3f9251411111003bbf", "cast_id": 36, "profile_path": "/iz3NJyB7F3SkxMk9zzm00V1Ri6E.jpg", "order": 10}, {"name": "Dennis Keiffer", "character": "Jamie", "id": 1221121, "credit_id": "530a2b4d9251411117003a9b", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Freddy Bouciegues", "character": "Tommy", "id": 179861, "credit_id": "530a2b5b925141110e003ca5", "cast_id": 38, "profile_path": null, "order": 12}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe448f9251416c7503910f", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.4, "runtime": 105}, "11836": {"poster_path": "/sSlfqYpjKiwEk88QM9jPXAooM8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140161792, "overview": "There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.", "video": false, "id": 11836, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The SpongeBob SquarePants Movie", "tagline": "Bigger. Better. More absorbent.", "vote_count": 145, "homepage": "", "belongs_to_collection": {"backdrop_path": "/82aBKm6QfMzNYl7jk9VG4mMPOYu.jpg", "poster_path": "/aTnC0WJcpXbTiz7hqqR0Wj7JCTV.jpg", "id": 275402, "name": "SpongeBob Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0345950", "adult": false, "backdrop_path": "/yNF26PQezyXxIlgNZWFzP6tmorW.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Paramount Animation", "id": 24955}, {"name": "Nickelodeon Movies", "id": 2348}], "release_date": "2004-11-14", "popularity": 1.60879638107534, "original_title": "The SpongeBob SquarePants Movie", "budget": 30000000, "cast": [{"name": "Tom Kenny", "character": "Spongebob", "id": 78798, "credit_id": "52fe448f9251416c750391d7", "cast_id": 11, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 0}, {"name": "Clancy Brown", "character": "Mr. Krabs (voice)", "id": 6574, "credit_id": "52fe448f9251416c750391db", "cast_id": 12, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 1}, {"name": "Rodger Bumpass", "character": "Squidward (voice)", "id": 70615, "credit_id": "52fe448f9251416c750391df", "cast_id": 13, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 2}, {"name": "Bill Fagerbakke", "character": "Patrick Star (voice)", "id": 34398, "credit_id": "52fe448f9251416c750391e3", "cast_id": 14, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 3}, {"name": "Carolyn Lawrence", "character": "Sandy (voice)", "id": 78799, "credit_id": "52fe448f9251416c750391e7", "cast_id": 15, "profile_path": "/dKxOl2EsuXrFPrBhyNud7vP8I6W.jpg", "order": 4}, {"name": "Jeffrey Tambor", "character": "King Neptune (voice)", "id": 4175, "credit_id": "52fe448f9251416c750391eb", "cast_id": 16, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 5}, {"name": "Scarlett Johansson", "character": "Mindy (voice)", "id": 1245, "credit_id": "52fe448f9251416c750391ef", "cast_id": 17, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 6}, {"name": "Alec Baldwin", "character": "Dennis (voice)", "id": 7447, "credit_id": "52fe448f9251416c750391f3", "cast_id": 18, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 7}, {"name": "David Hasselhoff", "character": "Himself", "id": 28238, "credit_id": "52fe448f9251416c750391f7", "cast_id": 19, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 8}, {"name": "Mr. Lawrence", "character": "Plankton", "id": 1215951, "credit_id": "5510c56ac3a36801bb00061c", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Mr. Lawrence", "character": "Plankton", "id": 1215951, "credit_id": "5510c56e9251415b600005c0", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Stephen Hillenburg", "department": "Directing", "job": "Director", "credit_id": "52fe448f9251416c750391a9", "profile_path": null, "id": 70651}], "vote_average": 6.9, "runtime": 87}, "36419": {"poster_path": "/8mtT1Hqp63s3DiGxZckxQj0Mioy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3606395, "overview": "A young woman caught between life and death... and a funeral director who appears to have the gift of transitioning the dead, but might just be intent on burying her alive.", "video": false, "id": 36419, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "After.Life", "tagline": "Life is the symptom. Death is the cure.", "vote_count": 59, "homepage": "http://www.afterlifethefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0838247", "adult": false, "backdrop_path": "/pg7W4YCvpoub573MZtV3Rmmz9fE.jpg", "production_companies": [{"name": "Lleju Productions", "id": 12410}, {"name": "Harbor Light Entertainment", "id": 6020}, {"name": "Plum Pictures", "id": 2224}], "release_date": "2009-11-07", "popularity": 0.823676307377857, "original_title": "After.Life", "budget": 4500000, "cast": [{"name": "Liam Neeson", "character": "Eliot Deacon", "id": 3896, "credit_id": "52fe45e89251416c9104286b", "cast_id": 1, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Justin Long", "character": "Paul", "id": 15033, "credit_id": "52fe45e89251416c9104286f", "cast_id": 2, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Christina Ricci", "character": "Anna Taylor", "id": 6886, "credit_id": "52fe45e89251416c91042873", "cast_id": 3, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 2}, {"name": "Josh Charles", "character": "Tom Peterson", "id": 2694, "credit_id": "52fe45e89251416c91042877", "cast_id": 4, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 3}, {"name": "Chandler Canterbury", "character": "Jack", "id": 77334, "credit_id": "52fe45e89251416c9104287b", "cast_id": 5, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 4}, {"name": "Celia Weston", "character": "Beatrice Taylor", "id": 1989, "credit_id": "52fe45e89251416c9104287f", "cast_id": 6, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 5}, {"name": "Shuler Hensley", "character": "Vincent Miller", "id": 96892, "credit_id": "52fe45e89251416c91042883", "cast_id": 7, "profile_path": "/xAeK7my9ZFHcHGCrgDeUUDFTty1.jpg", "order": 6}, {"name": "Anna Kuchma", "character": "Restaurant Patron", "id": 115335, "credit_id": "52fe45e89251416c91042887", "cast_id": 8, "profile_path": "/31df19CsbXPNTKVf5dumZHSM2t6.jpg", "order": 7}, {"name": "Rosemary Murphy", "character": "Susan Whitehall", "id": 8492, "credit_id": "52fe45e89251416c9104288b", "cast_id": 9, "profile_path": "/mNrRc207chuOUgNizM0cmTfwDxP.jpg", "order": 8}, {"name": "Laurel Bryce", "character": "Young Anna Taylor", "id": 115336, "credit_id": "52fe45e89251416c9104288f", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Luz Alexandra Ramos", "character": "Diane", "id": 209065, "credit_id": "534fa87d0e0a267ea1000af3", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Malachy McCourt", "character": "Father Graham", "id": 1217684, "credit_id": "534fa89c0e0a267ea1000af9", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Alice Drummond", "character": "Mrs. Hutton", "id": 17488, "credit_id": "534fa8b30e0a267ea1000afc", "cast_id": 24, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 12}, {"name": "Sam Kressner", "character": "Acne Kid", "id": 1310666, "credit_id": "534fa8c70e0a267ea1000b00", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Doan Ly", "character": "Teacher #1", "id": 1310667, "credit_id": "534fa8d60e0a267eb6000aad", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Jack Rovello", "character": "Tall Kid", "id": 8446, "credit_id": "534fa8ec0e0a267eb6000ab1", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Prudence Wright Holmes", "character": "Old Woman", "id": 951387, "credit_id": "534fa8fe0e0a267eab000a91", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Agnieszka Wojtowicz-Vosloo", "department": "Directing", "job": "Director", "credit_id": "52fe45e89251416c91042895", "profile_path": "/8xXquA5vDFc4xl1bvi70rFDB63A.jpg", "id": 129715}], "vote_average": 5.6, "runtime": 104}, "118340": {"poster_path": "/9gm3lL8JMTTmc3W4BmNMCuRLdL8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 772200000, "overview": "Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.", "video": false, "id": 118340, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Guardians of the Galaxy", "tagline": "All heroes start somewhere.", "vote_count": 2403, "homepage": "http://marvel.com/guardians", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 284433, "name": "Guardians of the Galaxy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2015381", "adult": false, "backdrop_path": "/bHarw8xrmQeqf3t8HpuMY7zoK4x.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2014-08-01", "popularity": 10.725256797289, "original_title": "Guardians of the Galaxy", "budget": 170000000, "cast": [{"name": "Chris Pratt", "character": "Peter Quill / Star-Lord", "id": 73457, "credit_id": "52fe4bd5c3a36847f8215d01", "cast_id": 1, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 0}, {"name": "Zoe Saldana", "character": "Gamora", "id": 8691, "credit_id": "52fe4bd5c3a36847f8215d2d", "cast_id": 10, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 1}, {"name": "Dave Bautista", "character": "Drax the Destroyer", "id": 543530, "credit_id": "52fe4bd5c3a36847f8215d05", "cast_id": 2, "profile_path": "/21bkLWMVWkSWy0KHrvJrfZFJ94V.jpg", "order": 2}, {"name": "Vin Diesel", "character": "Groot (voice)", "id": 12835, "credit_id": "52fe4bd5c3a36847f8215d5b", "cast_id": 21, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 3}, {"name": "Bradley Cooper", "character": "Rocket (voice)", "id": 51329, "credit_id": "52fe4bd5c3a36847f8215d5f", "cast_id": 23, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 4}, {"name": "Lee Pace", "character": "Ronan the Accuser", "id": 72095, "credit_id": "52fe4bd5c3a36847f8215d3d", "cast_id": 14, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 5}, {"name": "Karen Gillan", "character": "Nebula", "id": 543261, "credit_id": "52fe4bd5c3a36847f8215d4f", "cast_id": 18, "profile_path": "/3ip17StrlDLs9CmYaEyVxRK94t.jpg", "order": 6}, {"name": "Michael Rooker", "character": "Yondu Udonta", "id": 12132, "credit_id": "52fe4bd5c3a36847f8215d31", "cast_id": 11, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 7}, {"name": "Benicio del Toro", "character": "Taneleer Tivan / The Collector", "id": 1121, "credit_id": "52fe4bd5c3a36847f8215d53", "cast_id": 19, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 8}, {"name": "Djimon Hounsou", "character": "Korath the Pursuer", "id": 938, "credit_id": "5379f3efc3a3685531005ca7", "cast_id": 25, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 9}, {"name": "John C. Reilly", "character": "Corpsman Dey", "id": 4764, "credit_id": "52fe4bd5c3a36847f8215d47", "cast_id": 16, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 10}, {"name": "Glenn Close", "character": "Nova Prime", "id": 515, "credit_id": "52fe4bd5c3a36847f8215d4b", "cast_id": 17, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 11}, {"name": "Josh Brolin", "character": "Thanos", "id": 16851, "credit_id": "538ce200c3a368715500332b", "cast_id": 26, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 12}, {"name": "Peter Serafinowicz", "character": "Denarian Saal", "id": 11115, "credit_id": "53daa6fec3a36872b10002e0", "cast_id": 43, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 13}, {"name": "Sean Gunn", "character": "Kraglin / On Set Rocket", "id": 51663, "credit_id": "53e86af8c3a3683999003281", "cast_id": 46, "profile_path": "/dldYyij2lt4rDUehY4wLZoZ0KUK.jpg", "order": 14}, {"name": "Alexis Denisof", "character": "The Other", "id": 1214673, "credit_id": "53e86b93c3a3683999003289", "cast_id": 48, "profile_path": "/hAcTJxSbSPHLfa59D8mnJOzxpmE.jpg", "order": 15}, {"name": "Ophelia Lovibond", "character": "Carina", "id": 82639, "credit_id": "54a0779a925141312300b3d4", "cast_id": 148, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 16}, {"name": "Laura Haddock", "character": "Meredith Quill", "id": 209578, "credit_id": "538ce294c3a368715200336d", "cast_id": 27, "profile_path": "/9Krk76xvNMkIqjEbPXdARZNRX3.jpg", "order": 17}, {"name": "Gregg Henry", "character": "Grandpa", "id": 2518, "credit_id": "53daa707c3a36872b60002c9", "cast_id": 44, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 18}, {"name": "Stan Lee", "character": "Xandarian Ladies' Man", "id": 7624, "credit_id": "53e69373c3a3684433001988", "cast_id": 45, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 19}, {"name": "Nathan Fillion", "character": "Monstrous Inmate (voice)", "id": 51797, "credit_id": "53e86b84c3a368398d0032cc", "cast_id": 47, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 20}, {"name": "Rob Zombie", "character": "Ravager Navigator (voice)", "id": 16848, "credit_id": "53e86bbcc3a36839950032ed", "cast_id": 49, "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "order": 21}, {"name": "James Gunn", "character": "Maskless Sakaaran", "id": 15218, "credit_id": "53e86bc9c3a3683991003336", "cast_id": 50, "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "order": 22}, {"name": "Tyler Bates", "character": "Ravager Pilot", "id": 15221, "credit_id": "53e86bd9c3a36839950032f0", "cast_id": 51, "profile_path": "/aN0g9Lrw03B7Hl2F4dCOo31hIKl.jpg", "order": 23}, {"name": "Seth Green", "character": "Howard the Duck (voice)", "id": 13922, "credit_id": "53e86be7c3a36839950032f2", "cast_id": 52, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 24}, {"name": "Mikaela Hoover", "character": "Nova Prime's Assistant", "id": 1363394, "credit_id": "545ed5590e0a261fa6007d84", "cast_id": 58, "profile_path": "/l0pfM43Ep1IL58q3SQ8vFpFqCfZ.jpg", "order": 25}, {"name": "Melia Kreiling", "character": "Bereet", "id": 1133011, "credit_id": "545ed5770e0a262359000705", "cast_id": 59, "profile_path": "/71PstlAEw5PAZnxXo0NOiqQ37OF.jpg", "order": 26}, {"name": "Christopher Fairbank", "character": "The Broker", "id": 8399, "credit_id": "549fe6dfc3a3685542007334", "cast_id": 123, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 27}, {"name": "Krystian Godlewski", "character": "On Set Groot", "id": 1405259, "credit_id": "549fe9619251414d270055fc", "cast_id": 124, "profile_path": "/A9ViCfMKxg3OiZVyKoIQ0jPObok.jpg", "order": 28}, {"name": "Wyatt Oleff", "character": "Young Quill", "id": 1148455, "credit_id": "549fea939251414d2700562f", "cast_id": 125, "profile_path": "/18K1XQR54wzaAjrBh1FUBGKFuNv.jpg", "order": 29}, {"name": "Janis Ahern", "character": "Meredith's Mother", "id": 1405269, "credit_id": "549febc5925141212700150a", "cast_id": 126, "profile_path": "/4DpiuJEuBRm2SdMeABJ3vRZO2il.jpg", "order": 30}, {"name": "Solomon Mousley", "character": "Meredith's Brother", "id": 1405309, "credit_id": "54a00ac09251414e28005b42", "cast_id": 127, "profile_path": null, "order": 31}, {"name": "Lindsay Morton", "character": "Meredith's Best Friend", "id": 1405311, "credit_id": "54a00bc3925141313200a5db", "cast_id": 128, "profile_path": "/scqrJ9ZE31v7QGpsJ9Frjmfgd1h.jpg", "order": 32}, {"name": "Robert Firth", "character": "Dr. Fitzgibbon", "id": 1405317, "credit_id": "54a00d1fc3a3680b270091bd", "cast_id": 129, "profile_path": "/1mq1G9iiu5u2QBgfQpcay6i7pIi.jpg", "order": 33}, {"name": "Tom Proctor", "character": "Horuz", "id": 95051, "credit_id": "54a00ef39251411d53004edf", "cast_id": 130, "profile_path": "/ueuCn76nV670Kt1UOVOPaki9Zu7.jpg", "order": 34}, {"name": "Nick Holmes", "character": "Horuz's Mate", "id": 1237281, "credit_id": "54a01128c3a36851ce001776", "cast_id": 131, "profile_path": "/qA8lxS0USklar0mHP5FIXlMAZQ.jpg", "order": 35}, {"name": "Max Wrottesley", "character": "Sacrifice Nova Corpsman", "id": 1202683, "credit_id": "54a029bbc3a368764f006e56", "cast_id": 132, "profile_path": "/fUU5LC93GA9kTZ8q37qP2wXvoQG.jpg", "order": 36}, {"name": "Nicole Alexandra Shipley", "character": "Pretty Xandarian", "id": 1186515, "credit_id": "54a02c8ec3a3680b27009498", "cast_id": 133, "profile_path": "/hJB152JEsnjl4ViSjR7xVgC7gli.jpg", "order": 37}, {"name": "Sharif Atkins", "character": "Nova Arresting Pilot", "id": 1211966, "credit_id": "54a02d27c3a3682f1e00aaa4", "cast_id": 134, "profile_path": "/9xekBI9xnNe899LtyQnqZ6Dxv1g.jpg", "order": 38}, {"name": "Brendan Fehr", "character": "Corpsman Dey's Partner", "id": 72440, "credit_id": "54a02d99925141312900b3e3", "cast_id": 135, "profile_path": "/8tp3G4RMWNpxprEfyxvjhRFf6uq.jpg", "order": 39}, {"name": "Tomas Arana", "character": "Kree Ambassador", "id": 941, "credit_id": "54a02e01c3a3682f2300aeb9", "cast_id": 136, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 40}, {"name": "Emmett Scanlan", "character": "Head Riot Guard", "id": 1111204, "credit_id": "54a0314cc3a3682f1e00ab42", "cast_id": 137, "profile_path": "/ksm2qUuwfOSZF8OrYc043NalaOM.jpg", "order": 41}, {"name": "Dominic Grant", "character": "Angry Guard", "id": 1405441, "credit_id": "54a0327f925141313200aa57", "cast_id": 138, "profile_path": null, "order": 42}, {"name": "Spencer Wilding", "character": "Mean Guard", "id": 25451, "credit_id": "54a03398925141312900b4d3", "cast_id": 139, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 43}, {"name": "Alison Lintott", "character": "Sad Woman with Horns", "id": 1405444, "credit_id": "54a03441c3a3682f1e00ab93", "cast_id": 140, "profile_path": "/tD4qlyW68ENQvELw3iedAZjHO0W.jpg", "order": 44}, {"name": "Alexis Rodney", "character": "Moloka Dar", "id": 1211540, "credit_id": "54a0380a9251412127001cb8", "cast_id": 141, "profile_path": "/bjLs8UTLLBMraGlGPYxq9VMMFVs.jpg", "order": 45}, {"name": "Keeley Forsyth", "character": "Mottled Prisoner", "id": 1234991, "credit_id": "54a039f2c3a3682f2100ae25", "cast_id": 142, "profile_path": "/5di42jElQkufxLdQZ9DwbbIJT31.jpg", "order": 46}, {"name": "Frank Gilhooley", "character": "Burly Prisoner", "id": 1405453, "credit_id": "54a03a679251414d27005dca", "cast_id": 143, "profile_path": "/bHWz6d2DsgGGLakJUakELR5Pels.jpg", "order": 47}, {"name": "Enzo Cilenti", "character": "Watchtower Guard", "id": 91494, "credit_id": "54a0735c9251414e28006577", "cast_id": 144, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 48}, {"name": "Richard Katz", "character": "One Legged Prisoner", "id": 25679, "credit_id": "54a07477c3a368764f0076cc", "cast_id": 145, "profile_path": "/yvKqJCcIqPXr8sLSxEXXpTL5OBO.jpg", "order": 49}, {"name": "Enoch Frost", "character": "Rifle Guard", "id": 56617, "credit_id": "54a0756e9251414e280065a8", "cast_id": 146, "profile_path": "/m1hCEli1bI9X9QBN5XARVj7Uo2v.jpg", "order": 50}, {"name": "Ronan Summers", "character": "'Drop the Leg' Guard", "id": 1132153, "credit_id": "54a0774a9251414d27006285", "cast_id": 147, "profile_path": "/oqUPzj0rY7cI3QvLSVf7a6ldtOs.jpg", "order": 51}, {"name": "Laura Ortiz", "character": "Tortured Pink Girl", "id": 59286, "credit_id": "54a07965c3a36851ce0020f2", "cast_id": 149, "profile_path": "/mwqLiRCwFQM3YBf3qX5AvWubS0c.jpg", "order": 52}, {"name": "Marama Corlett", "character": "Pit Boss", "id": 1312266, "credit_id": "54a07a7fc3a368554200834a", "cast_id": 150, "profile_path": "/sRKonmwHLsn4ewXJtXRujegW6De.jpg", "order": 53}, {"name": "Rosie Jones", "character": "Lady of the Boot of Jemiah", "id": 1405537, "credit_id": "54a07b95925141236b002366", "cast_id": 151, "profile_path": "/oPyn6rFqTWj33O1gSg0Oib8rZ5Z.jpg", "order": 54}, {"name": "Abidemi Sobande", "character": "Lady of the Boot of Jemiah", "id": 1405538, "credit_id": "54a07c66c3a36851ce002127", "cast_id": 152, "profile_path": "/hY1j6Dy4f5P4E5Zac98e0ugommY.jpg", "order": 55}, {"name": "Alex Rose", "character": "Lady of the Boot of Jemiah", "id": 1405540, "credit_id": "54a07d19c3a3680b27009bc3", "cast_id": 153, "profile_path": null, "order": 56}, {"name": "Ekaterina Zalitko", "character": "Lady of the Boot of Jemiah", "id": 1394341, "credit_id": "54a07e83c3a3682f1b00b2d9", "cast_id": 154, "profile_path": null, "order": 57}, {"name": "Emily Redding", "character": "Lady of the Boot of Jemiah", "id": 1405552, "credit_id": "54a07f1d925141236b0023c7", "cast_id": 155, "profile_path": null, "order": 58}, {"name": "Fred", "character": "Cosmo the Space Dog", "id": 1405553, "credit_id": "54a07ff2c3a3682f2100b4f4", "cast_id": 156, "profile_path": null, "order": 59}, {"name": "Stephen Blackehart", "character": "Knowhere Dispatcher", "id": 85096, "credit_id": "54a080fdc3a368764f007808", "cast_id": 157, "profile_path": "/jN1YGxv0W0zCJ2XFyGIUVaeFIfw.jpg", "order": 60}, {"name": "Jennifer Moylan-Taylor", "character": "Sad Krylorian Girl", "id": 1405554, "credit_id": "54a0818f9251414d27006347", "cast_id": 158, "profile_path": "/jlR4x7L5yN57ttzTNJCgIinqQrW.jpg", "order": 61}, {"name": "Bruce Mackinnon", "character": "One-Eyed Ravager", "id": 1227575, "credit_id": "54a0835ac3a3682f2300b6f0", "cast_id": 159, "profile_path": "/i6RLbFsZqkflplC45XRItxVnv8V.jpg", "order": 62}, {"name": "Ralph Ineson", "character": "Ravager Pilot", "id": 202032, "credit_id": "54a08496c3a3682f1e00b2e6", "cast_id": 160, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 63}, {"name": "Naomi Ryan", "character": "Nova Centurion", "id": 1229414, "credit_id": "54a086ec9251414e280066eb", "cast_id": 161, "profile_path": "/9kePQIqoSMrkbBUS004c4E2Svgt.jpg", "order": 64}, {"name": "John Brotherton", "character": "Nova Starblaster Pilot", "id": 222906, "credit_id": "54a08810c3a3682f2100b584", "cast_id": 162, "profile_path": "/cxCXFaFpgPRTxuXydI53hGvUMgk.jpg", "order": 65}, {"name": "Graham Shiels", "character": "Alien Nova Pilot", "id": 92615, "credit_id": "54a08a3b9251414e28006738", "cast_id": 163, "profile_path": "/qH1mrJ880LQBeGsJP8b1iQRW2gL.jpg", "order": 66}, {"name": "Douglas Robson", "character": "Maskless Sakaaran", "id": 1405566, "credit_id": "54a08ca5925141312900bde9", "cast_id": 164, "profile_path": "/bvvPlHFsmOBS24akntc2XNmG02I.jpg", "order": 67}, {"name": "Rachel Cullen", "character": "Corpsman Dey's Wife", "id": 1405567, "credit_id": "54a08e7ec3a368764f00793a", "cast_id": 165, "profile_path": null, "order": 68}, {"name": "Isabella Poynton", "character": "Corpsman Dey's Daughter", "id": 1405570, "credit_id": "54a08eb59251411d53005b46", "cast_id": 166, "profile_path": null, "order": 69}, {"name": "Imogen Poynton", "character": "Corpsman Dey's Daughter", "id": 1405571, "credit_id": "54a08f109251414e28006781", "cast_id": 167, "profile_path": null, "order": 70}, {"name": "David Yarovesky", "character": "Goth Ravager", "id": 1362815, "credit_id": "54a090c09251411d53005b6a", "cast_id": 168, "profile_path": null, "order": 71}, {"name": "Miriam Lucia", "character": "Crying Xandarian Citizen", "id": 1283880, "credit_id": "54a0918d925141313200b2f7", "cast_id": 169, "profile_path": "/cuzNKyF4acFCsDVgCMStjWsaHtV.jpg", "order": 72}, {"name": "Lloyd Kaufman", "character": "Prisoner", "id": 78021, "credit_id": "54fed408c3a368150c001355", "cast_id": 170, "profile_path": "/zTylEHdJL422WZ1vjEmEkDoWkk7.jpg", "order": 73}], "directors": [{"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe4bd5c3a36847f8215d0b", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}], "vote_average": 8.2, "runtime": 121}, "11846": {"poster_path": "/bNQpz6e35wuA3QgJb9VF2oUpZNA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89325780, "overview": "George Banks is an ordinary, middle-class man whose 21 year-old daughter Annie has decided to marry a man from an upper-class family, but George can't think of what life would be like without his daughter. He becomes slightly insane, but his wife tries to make him happy for Annie, but when the wedding takes place at their home and a foreign wedding planner takes over the ceremony.", "video": false, "id": 11846, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Father of the Bride", "tagline": "Love is wonderful. Until it happens to your only daughter.", "vote_count": 82, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7qwE57OVZmMJChBpLEbJEmzUydk.jpg", "poster_path": "/vVXjXLTE5ane0bfE3VI3EEipucK.jpg", "id": 96871, "name": "Father of the Bride Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0101862", "adult": false, "backdrop_path": "/vFiVPWfCyQzY3jG7M0LmHM6oKdq.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Sandollar Productions", "id": 5842}], "release_date": "1991-12-20", "popularity": 0.284639188736848, "original_title": "Father of the Bride", "budget": 0, "cast": [{"name": "Steve Martin", "character": "George Stanley Banks", "id": 67773, "credit_id": "52fe44929251416c750396e7", "cast_id": 15, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Nina Banks", "id": 3092, "credit_id": "52fe44929251416c750396eb", "cast_id": 16, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Kimberly Williams-Paisley", "character": "Annie Banks", "id": 70696, "credit_id": "52fe44929251416c750396ef", "cast_id": 17, "profile_path": "/nVp4F4VFqVvjh6huOULUQoiAguY.jpg", "order": 2}, {"name": "George Newbern", "character": "Bryan MacKenzie", "id": 59222, "credit_id": "52fe44929251416c750396f3", "cast_id": 18, "profile_path": "/48Ouqe1g8QrZ6qjvap5NvhfKuly.jpg", "order": 3}, {"name": "Martin Short", "character": "Franck Eggelhoffer", "id": 519, "credit_id": "52fe44929251416c750396fd", "cast_id": 20, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 4}, {"name": "Kieran Culkin", "character": "Matty Banks", "id": 18793, "credit_id": "52fe44929251416c75039701", "cast_id": 21, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 5}, {"name": "BD Wong", "character": "Howard Weinstein", "id": 14592, "credit_id": "52fe44929251416c75039705", "cast_id": 22, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 6}, {"name": "Peter Michael Goetz", "character": "John MacKenzie", "id": 20906, "credit_id": "52fe44929251416c75039709", "cast_id": 23, "profile_path": "/a2hLcCidETgwlVyQnYy4kXVKUcn.jpg", "order": 7}, {"name": "Kate McGregor-Stewart", "character": "Joanna MacKenzie", "id": 54348, "credit_id": "52fe44929251416c7503970d", "cast_id": 24, "profile_path": null, "order": 8}], "directors": [{"name": "Charles Shyer", "department": "Directing", "job": "Director", "credit_id": "52fe44929251416c750396f9", "profile_path": "/hnWGd74CbmTcDCFQiJ8SYLazIXW.jpg", "id": 56106}], "vote_average": 6.3, "runtime": 105}, "11852": {"poster_path": "/7VxJmoWobDdARhEkU8mIiZwWEj8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35081550, "overview": "Not only is Jessica Spencer (Rachel McAdams) the most popular girl in school -- she is also the meanest. But things change for the attractive teen when a freak accident involving a cursed pair of earrings and a chance encounter at a gas station causes her to switch bodies with Clive (Rob Schneider), a sleazy crook. Jessica, in the form of the repulsive Clive, struggles to adjust to this radical alteration and sets out to get her own body back before the upcoming prom.", "video": false, "id": 11852, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "The Hot Chick", "tagline": "The hottest chick in town just switched bodies with the luckiest loser in the world.", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0302640", "adult": false, "backdrop_path": "/lRCpAiSMLSpPtc3hiPUBbdbcgXn.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2002-12-02", "popularity": 0.809847330191292, "original_title": "The Hot Chick", "budget": 0, "cast": [{"name": "Rob Schneider", "character": "Clive Maxtone/Jessica Spencer", "id": 60949, "credit_id": "52fe44939251416c750399df", "cast_id": 1, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Jessica Spencer/Clive Maxtone", "id": 53714, "credit_id": "52fe44939251416c75039a05", "cast_id": 10, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Anna Faris", "character": "April", "id": 1772, "credit_id": "52fe44939251416c750399e3", "cast_id": 4, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Matthew Lawrence", "character": "Billy", "id": 11716, "credit_id": "52fe44939251416c75039a09", "cast_id": 11, "profile_path": "/5FstHTIRe51bkmga1cWGRB7vFMc.jpg", "order": 3}, {"name": "Eric Christian Olsen", "character": "Jake", "id": 29020, "credit_id": "52fe44939251416c75039a0d", "cast_id": 12, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 4}, {"name": "Robert Davi", "character": "Stan", "id": 2055, "credit_id": "52fe44939251416c75039a11", "cast_id": 13, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 5}, {"name": "Melora Hardin", "character": "Carol Spencer", "id": 404, "credit_id": "52fe44939251416c75039a15", "cast_id": 14, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 6}, {"name": "Alexandra Holden", "character": "Lulu", "id": 69399, "credit_id": "52fe44939251416c75039a19", "cast_id": 15, "profile_path": "/yJ6FuYwEts4NC1umABgpIG26jFg.jpg", "order": 7}, {"name": "Maritza Murray", "character": "Keecia", "id": 148702, "credit_id": "52fe44939251416c75039a1d", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Fay Hauser", "character": "Mrs. Thomas", "id": 121642, "credit_id": "52fe44939251416c75039a21", "cast_id": 17, "profile_path": "/8WQkqQEu6J832h7FDX28jFOyC2J.jpg", "order": 9}, {"name": "Jodi Long", "character": "Korean Mother", "id": 44059, "credit_id": "52fe44939251416c75039a25", "cast_id": 18, "profile_path": "/1Jc60wX4lOYwRPTonHDPI8l3Msv.jpg", "order": 10}, {"name": "Tia Mowry", "character": "Venetia", "id": 87569, "credit_id": "52fe44939251416c75039a29", "cast_id": 19, "profile_path": "/atRWNsm7gIBreEDNCfP8uvLnib.jpg", "order": 11}, {"name": "Tamera Mowry", "character": "Sissy", "id": 87570, "credit_id": "52fe44939251416c75039a2d", "cast_id": 20, "profile_path": "/ppSYROJ7tkz5pHTJ1sRiMuoGHdN.jpg", "order": 12}, {"name": "Lee Garlington", "character": "Vice Principal Bernard", "id": 23975, "credit_id": "52fe44939251416c75039a31", "cast_id": 21, "profile_path": "/vpiP4yxGFS3KtVVMNtF4sANrgcJ.jpg", "order": 13}, {"name": "Angie Stone", "character": "Madame Mambuza", "id": 148704, "credit_id": "52fe44939251416c75039a35", "cast_id": 22, "profile_path": "/bPGLPezwIF8lSnsyjm7BOWPK9ZP.jpg", "order": 14}, {"name": "Matt Weinberg", "character": "Booger", "id": 60956, "credit_id": "52fe44939251416c75039a39", "cast_id": 23, "profile_path": "/g0MVUMfhkyv5kcIsMOEX0LaHpQM.jpg", "order": 15}, {"name": "Leila Kenzle", "character": "Julie", "id": 15044, "credit_id": "52fe44939251416c75039a3d", "cast_id": 24, "profile_path": "/8U9S4cYQTq0nbG01RDAIluEKZk4.jpg", "order": 16}, {"name": "Michelle Branch", "character": "DJ", "id": 71195, "credit_id": "52fe44939251416c75039a41", "cast_id": 25, "profile_path": "/mA40jesKz3zy2Lz7oB7EarU2LrM.jpg", "order": 17}, {"name": "Michael O'Keefe", "character": "Richie", "id": 38085, "credit_id": "52fe44939251416c75039a5d", "cast_id": 33, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 18}, {"name": "Megan Kuhlmann", "character": "Hildenburg", "id": 148706, "credit_id": "52fe44939251416c75039a45", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Ashlee Simpson-Wentz", "character": "Monique", "id": 148707, "credit_id": "52fe44939251416c75039a49", "cast_id": 28, "profile_path": "/j1nh5I10IpcZGVIkm0yZF0D4sXV.jpg", "order": 20}, {"name": "Scott Dolezal", "character": "Night Club Bartender", "id": 148708, "credit_id": "52fe44939251416c75039a4d", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Maria-Elena Laas", "character": "Bianca", "id": 144145, "credit_id": "52fe44939251416c75039a51", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Katie Lohmann", "character": "Pole Cat Stripper", "id": 62593, "credit_id": "52fe44939251416c75039a55", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Adam Sandler", "character": "Mambuza Bongo Guy (uncredited)", "id": 19292, "credit_id": "52fe44939251416c75039a59", "cast_id": 32, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 24}], "directors": [{"name": "Tom Brady", "department": "Directing", "job": "Director", "credit_id": "52fe44939251416c750399e9", "profile_path": "/7R2k0mZplcYd7A832x0EEmSK2WR.jpg", "id": 66512}], "vote_average": 5.7, "runtime": 104}, "40205": {"poster_path": "/7EmxxTry7JAqFogSl0TNWLyMrx2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story about Abby Jensen, a girl who's been eager to reach her 16th birthday and has kept a secret wish list since she was a little girl. When the Big Day actually arrives, utter disaster strikes, leaving Abby to think her birthday is ruined. But when a mysterious box of magical birthday candles arrives to turn things around, Abby's 16 Wishes start to come true. Her day gets better and better...until she makes one wish that threatens to change everything.", "video": false, "id": 40205, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "16 Wishes", "tagline": "Everyone's sweet 16 is special, Abby's is magical.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646876", "adult": false, "backdrop_path": "/wsHpvHi9pWhMX6azueyqnGHltEH.jpg", "production_companies": [{"name": "Marvista Entertainment", "id": 6679}, {"name": "Disney Channel", "id": 3213}], "release_date": "2010-06-25", "popularity": 0.435927638040824, "original_title": "16 Wishes", "budget": 0, "cast": [{"name": "Debby Ryan", "character": "Abby Louise Jensen", "id": 123846, "credit_id": "52fe4586c3a36847f80cc265", "cast_id": 1, "profile_path": "/x4NZXxKM0B8fI84OvqeLN9W44gL.jpg", "order": 0}, {"name": "Jean-Luc Bilodeau", "character": "Jay", "id": 205204, "credit_id": "52fe4586c3a36847f80cc283", "cast_id": 9, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 1}, {"name": "Keenan Tracey", "character": "Logan Buchanan", "id": 219998, "credit_id": "53c3f7b9c3a3684ce900a098", "cast_id": 13, "profile_path": "/tQyMehFUHOnUC8cfJD75UxOHVku.jpg", "order": 2}, {"name": "Anna Mae Routledge", "character": "Celeste", "id": 143329, "credit_id": "52fe4586c3a36847f80cc27b", "cast_id": 6, "profile_path": "/3OPydEe8VI0t5T27fU8Rua5XzR4.jpg", "order": 3}, {"name": "Kendall Cross", "character": "Sue Jensen", "id": 59185, "credit_id": "52fe4586c3a36847f80cc27f", "cast_id": 8, "profile_path": "/js2mIcx5lZu6P4D3z6hYZqNFPCx.jpg", "order": 4}, {"name": "Patrick Gilmore", "character": "Bob Jensen", "id": 76828, "credit_id": "52fe4586c3a36847f80cc28b", "cast_id": 11, "profile_path": "/iIODRkPruE6Lh2EccZhsW3KU3h5.jpg", "order": 5}, {"name": "Karissa Tynes", "character": "Krista", "id": 144853, "credit_id": "52fe4586c3a36847f80cc287", "cast_id": 10, "profile_path": "/oIZnMZ8xCXdzLHVTAzfTbLMVGXV.jpg", "order": 6}, {"name": "Jenna Romanin", "character": "Fashionista 1", "id": 233264, "credit_id": "52fe4586c3a36847f80cc28f", "cast_id": 12, "profile_path": "/AuPDjIor5jN2fQedcNislXptr4q.jpg", "order": 7}], "directors": [{"name": "Peter DeLuise", "department": "Directing", "job": "Director", "credit_id": "52fe4586c3a36847f80cc26b", "profile_path": "/wMgDVpN6UyeEuRSCWUXWigvibSn.jpg", "id": 118463}], "vote_average": 5.9, "runtime": 90}, "20048": {"poster_path": "/8gCZJ8gOxd22Spz1MKiu4b54T2r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108332743, "overview": "In the glamorous world of New York City, Rebecca Bloomwood is a fun-loving girl who is really good at shopping-a little too good, perhaps. She dreams of working for her favorite fashion magazine, but can't quite get her foot in the door-until ironically, she snags a job as an advice columnist for a financial magazine published by the same company.", "video": false, "id": 20048, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Confessions of a Shopaholic", "tagline": "A new job? Hopefully. A new man? Possibly. A new handbag? Absolutely!", "vote_count": 150, "homepage": "http://www.bluefly.com/media/promotions/flash/shopaholic/main/shopaholic.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fi", "name": "suomi"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1093908", "adult": false, "backdrop_path": "/vE4yZmpoXFBN8efniq5ruoxEFoM.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2009-02-05", "popularity": 0.460949097479122, "original_title": "Confessions of a Shopaholic", "budget": 40000000, "cast": [{"name": "Isla Fisher", "character": "Rebecca Bloomwood", "id": 52848, "credit_id": "52fe43d4c3a368484e000a55", "cast_id": 1, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 0}, {"name": "Hugh Dancy", "character": "Luke Brandon", "id": 12791, "credit_id": "52fe43d4c3a368484e000a59", "cast_id": 2, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 1}, {"name": "Krysten Ritter", "character": "Suze", "id": 78080, "credit_id": "52fe43d4c3a368484e000a5d", "cast_id": 3, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 2}, {"name": "Joan Cusack", "character": "Jane Bloomwood", "id": 3234, "credit_id": "52fe43d4c3a368484e000a61", "cast_id": 4, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 3}, {"name": "John Goodman", "character": "Graham Bloomwood", "id": 1230, "credit_id": "52fe43d4c3a368484e000a65", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "John Lithgow", "character": "Edgar West", "id": 12074, "credit_id": "52fe43d4c3a368484e000a6f", "cast_id": 7, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 5}, {"name": "Kristin Scott Thomas", "character": "Alette Naylor", "id": 5470, "credit_id": "52fe43d4c3a368484e000a73", "cast_id": 8, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 6}, {"name": "Fred Armisen", "character": "Ryan Koenig", "id": 61110, "credit_id": "530b415f9251411117004ea8", "cast_id": 10, "profile_path": "/d4RwMcYqEGsetnYsfWUZyG1ix3P.jpg", "order": 7}, {"name": "Leslie Bibb", "character": "Alicia Billington", "id": 57451, "credit_id": "530b416e9251411105005118", "cast_id": 11, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 8}, {"name": "Lynn Redgrave", "character": "Drunken Lady at Ball", "id": 29791, "credit_id": "530b417d925141111a004aca", "cast_id": 12, "profile_path": "/jnXKuScyfE4zZ5AqBpmrVBMKeVz.jpg", "order": 9}, {"name": "Robert Stanton", "character": "Derek Smeath", "id": 53963, "credit_id": "530b418f9251415e71002151", "cast_id": 13, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 10}, {"name": "Julie Hagerty", "character": "Hayley", "id": 14415, "credit_id": "530b41a29251411108004d13", "cast_id": 14, "profile_path": "/dsRYh88HyksklEgUlnOmx9Ys8hn.jpg", "order": 11}, {"name": "Nick Cornish", "character": "Tarquin", "id": 149551, "credit_id": "530b41b29251411111004f35", "cast_id": 15, "profile_path": "/gxREPiEyAwfXRDTtIctkC79ZyYc.jpg", "order": 12}, {"name": "Wendie Malick", "character": "Miss Korch", "id": 61980, "credit_id": "530b41c0925141785e002d3c", "cast_id": 16, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 13}, {"name": "Clea Lewis", "character": "Miss Ptaszinski", "id": 186319, "credit_id": "530b41cc925141785e002d3e", "cast_id": 17, "profile_path": "/ypjVHbVYASpArT9NjU3B8q9aLyT.jpg", "order": 14}], "directors": [{"name": "P.J. Hogan", "department": "Directing", "job": "Director", "credit_id": "52fe43d4c3a368484e000a6b", "profile_path": "/1ioLJjWkfihb4SllJIh8K9ilyBO.jpg", "id": 3045}], "vote_average": 5.8, "runtime": 104}, "13761": {"poster_path": "/uBvj30A1jYZJJExflJlvc1sRJuf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When news of John Smith's death reaches America, Pocahontas is devastated. She sets off to London with John Rolfe, to meet with the King of England on a diplomatic mission: to create peace and respect between the two great lands. However, Governor Ratcliffe is still around; he wants to return to Jamestown and take over. He will stop at nothing to discredit the young princess.", "video": false, "id": 13761, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Pocahontas II: Journey to a New World", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qqeOxNmtAW7WXdbrmQftgluvve7.jpg", "poster_path": "/rf6COd7IMIdzEDXxjHu9VLbkdp2.jpg", "id": 136214, "name": "Pocahontas Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0143808", "adult": false, "backdrop_path": "/2AaMO7PqBdwuM6PTL8grI6oPAaq.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1998-08-04", "popularity": 0.899062911746896, "original_title": "Pocahontas II: Journey to a New World", "budget": 0, "cast": [{"name": "Irene Bedard", "character": "Pocahontas (voice)", "id": 65529, "credit_id": "52fe45959251416c7505b7c5", "cast_id": 1, "profile_path": "/eUX06X7ZpioIO7rHRsaAyNzL646.jpg", "order": 0}, {"name": "Jim Cummings", "character": "King James (voice)", "id": 12077, "credit_id": "52fe45959251416c7505b7c9", "cast_id": 2, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 1}, {"name": "Donal Gibson", "character": "John Smith (voice)", "id": 110315, "credit_id": "52fe45959251416c7505b7cd", "cast_id": 3, "profile_path": "/4MKTSwTpl1BaXD554MsrwK7uJqg.jpg", "order": 2}, {"name": "Finola Hughes", "character": "Additional voices", "id": 66881, "credit_id": "52fe45959251416c7505b7d1", "cast_id": 4, "profile_path": "/yOiawt1x8XAYYblM0WVdiGuqjiI.jpg", "order": 3}, {"name": "Linda Hunt", "character": "Grandmother Willow (voice)", "id": 12516, "credit_id": "52fe45959251416c7505b7d5", "cast_id": 5, "profile_path": "/joyjir9ULnxdbPKAwitYccPwqbq.jpg", "order": 4}, {"name": "Judy Kuhn", "character": "Pocahontas (singing voice)", "id": 110316, "credit_id": "52fe45959251416c7505b7d9", "cast_id": 6, "profile_path": "/lgdq078b2NZ8f9jeikfXJUhh86A.jpg", "order": 5}, {"name": "Russell Means", "character": "Powhatan (voice)", "id": 3203, "credit_id": "54fe19cfc3a36810980000ed", "cast_id": 11, "profile_path": "/7cmcwlWqZ2iJycikffenrLZnWbg.jpg", "order": 6}, {"name": "David Ogden Stiers", "character": "Ratcliffe (voice)", "id": 28010, "credit_id": "54fe19e1c3a368109300012b", "cast_id": 12, "profile_path": "/zngM0eXq6RuYZmdocsAY2AMKUja.jpg", "order": 7}, {"name": "Jean Stapleton", "character": "Mrs. Jenkins (voice)", "id": 28933, "credit_id": "54fe19f79251410e56000133", "cast_id": 13, "profile_path": "/yfmkSfHShvDPVyXBoJvi2QTBboH.jpg", "order": 8}, {"name": "Billy Zane", "character": "John Rolfe (voice)", "id": 1954, "credit_id": "54fe1a3c9251410e48000162", "cast_id": 14, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 9}, {"name": "Jeff Bennett", "character": "Additional voices", "id": 34982, "credit_id": "54fe1a53c3a36810a400011b", "cast_id": 15, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 10}, {"name": "Brad Garrett", "character": "Additional voices", "id": 18, "credit_id": "54fe1ae99251410e5400011f", "cast_id": 16, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 11}, {"name": "Rob Paulsen", "character": "Additional voices", "id": 43125, "credit_id": "54fe1b459251410e4e00016c", "cast_id": 17, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 12}, {"name": "Gregg Rainwater", "character": "Additional voices", "id": 165312, "credit_id": "54fe1b679251410e5a000134", "cast_id": 18, "profile_path": "/uOjhOCSNT89MHKC8OA88WxLWL7f.jpg", "order": 13}, {"name": "William Morgan Sheppard", "character": "Additional voices", "id": 938390, "credit_id": "54fe1b88c3a368109a000137", "cast_id": 19, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 14}, {"name": "Kath Soucie", "character": "Additional voices", "id": 60739, "credit_id": "54fe1b9dc3a36810a400013b", "cast_id": 20, "profile_path": "/urLkA155Yc19TKyeCUYGwzEt2PO.jpg", "order": 15}], "directors": [{"name": "Tom Ellery", "department": "Directing", "job": "Director", "credit_id": "52fe45959251416c7505b7df", "profile_path": null, "id": 1033844}, {"name": "Bradley Raymond", "department": "Directing", "job": "Director", "credit_id": "54fe1dc09251410e4e00018f", "profile_path": "/eFJSeWaJrduYGwRNtvQXNMKONA7.jpg", "id": 69416}], "vote_average": 5.3, "runtime": 72}, "61012": {"poster_path": "/kTAjRFmgESCgOhWVV6uuWSdf2MC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 52302796, "overview": "Heather Mason and her father have been on the run, always one step ahead of dangerous forces that she doesn't fully understand, Now on the eve of her 18th birthday, plagued by horrific nightmares and the disappearance of her father, Heather discovers she's not who she thinks she is. The revelation leads her deeper into a demonic world that threatens to trap her forever.", "video": false, "id": 61012, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Silent Hill: Revelation 3D", "tagline": "This Halloween prepare for a 3D ride through hell.", "vote_count": 134, "homepage": "", "belongs_to_collection": {"backdrop_path": "/yBpC88ucxLLjD7rXqfA4Irk92ka.jpg", "poster_path": "/4cJgWqtVfVxxzpqyKkUtClHY0VM.jpg", "id": 64748, "name": "Silent Hill Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0938330", "adult": false, "backdrop_path": "/kO9papQXeuekzj3Fcc3ZcIqjfm5.jpg", "production_companies": [{"name": "Konami Corporation Ltd.", "id": 343}, {"name": "Davis-Films", "id": 342}], "release_date": "2012-10-10", "popularity": 0.54703894353209, "original_title": "Silent Hill: Revelation 3D", "budget": 20000000, "cast": [{"name": "Sean Bean", "character": "Harry Da Silva", "id": 48, "credit_id": "52fe4641c3a368484e086a01", "cast_id": 2, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Rose Da Silva", "id": 8329, "credit_id": "52fe4641c3a368484e086a05", "cast_id": 3, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Deborah Kara Unger", "character": "Dahlia Gillespie", "id": 13549, "credit_id": "52fe4641c3a368484e086a09", "cast_id": 4, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 2}, {"name": "Adelaide Clemens", "character": "Heather / Alessa", "id": 205474, "credit_id": "52fe4641c3a368484e086a0d", "cast_id": 5, "profile_path": "/mgOHGacftimR5qBXVzaQoMyVoTX.jpg", "order": 3}, {"name": "Kit Harington", "character": "Vincent Carter", "id": 239019, "credit_id": "52fe4641c3a368484e086a23", "cast_id": 10, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 4}, {"name": "Malcolm McDowell", "character": "Leonard Wolf", "id": 56890, "credit_id": "52fe4641c3a368484e086a27", "cast_id": 11, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 5}, {"name": "Carrie-Anne Moss", "character": "Claudia Wolf", "id": 530, "credit_id": "52fe4641c3a368484e086a2b", "cast_id": 12, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 6}, {"name": "Martin Donovan", "character": "Douglas Cartland", "id": 42993, "credit_id": "52fe4641c3a368484e086a2f", "cast_id": 13, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 7}], "directors": [{"name": "Michael J. Bassett", "department": "Directing", "job": "Director", "credit_id": "52fe4641c3a368484e086a35", "profile_path": "/gBtbUmlRtLlA0yQV9Gt9G8bJW70.jpg", "id": 69593}], "vote_average": 5.2, "runtime": 94}, "241239": {"poster_path": "/7xvfhwi1RjF27z3TfaJFAsIaO3x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on a the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.", "video": false, "id": 241239, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Most Violent Year", "tagline": "The result is never in question. Just the path you take to get there.", "vote_count": 95, "homepage": "https://www.facebook.com/amostviolentyearfilm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2937898", "adult": false, "backdrop_path": "/cPg2OJ56J6p0da12Hez5u5iiFd6.jpg", "production_companies": [{"name": "FilmNation Entertainment", "id": 7493}, {"name": "Before the Door Pictures", "id": 14861}, {"name": "Washington Square Films", "id": 14862}], "release_date": "2014-12-31", "popularity": 4.21274538437233, "original_title": "A Most Violent Year", "budget": 0, "cast": [{"name": "Oscar Isaac", "character": "Abel Morales", "id": 25072, "credit_id": "52fe4eb4c3a36847f82a2bbd", "cast_id": 4, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 0}, {"name": "Jessica Chastain", "character": "Anna Morales", "id": 83002, "credit_id": "52fe4eb4c3a36847f82a2bb9", "cast_id": 3, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 1}, {"name": "Albert Brooks", "character": "Andrew Walsh", "id": 13, "credit_id": "52fe4eb4c3a36847f82a2bc1", "cast_id": 5, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 2}, {"name": "Elyes Gabel", "character": "Julian", "id": 78050, "credit_id": "545305d3c3a368147800034c", "cast_id": 11, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 3}, {"name": "David Oyelowo", "character": "Lawrence", "id": 35013, "credit_id": "52fe4eb4c3a36847f82a2bc5", "cast_id": 6, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 4}, {"name": "Alessandro Nivola", "character": "Peter Forente", "id": 4941, "credit_id": "545305b2c3a3681480000377", "cast_id": 10, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 5}, {"name": "Catalina Sandino Moreno", "character": "Luisa", "id": 5887, "credit_id": "52fe4eb4c3a36847f82a2bc9", "cast_id": 7, "profile_path": "/6TsJDZOmhBxfTKFp6ldC68OW65n.jpg", "order": 6}, {"name": "Peter Gerety", "character": "Bill O'Leary", "id": 1986, "credit_id": "54c304e792514124c8004752", "cast_id": 12, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 7}, {"name": "Christopher Abbot", "character": "Louis Servidio", "id": 933811, "credit_id": "54c304f29251412446004955", "cast_id": 13, "profile_path": "/adWjsOCMZ2Bry31aa0WoFe9FS0O.jpg", "order": 8}, {"name": "Ashley Williams", "character": "Lange", "id": 122888, "credit_id": "54c304fa92514124ed004a2c", "cast_id": 14, "profile_path": "/fq4hNuLVpsbrnzjPCtoFIcf3nXN.jpg", "order": 9}, {"name": "John Procaccino", "character": "Arthur Lewis", "id": 1370819, "credit_id": "54c30508c3a3687c4000efa6", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jerry Adler", "character": "Josef", "id": 24292, "credit_id": "54c3050f9251416e6000e1cf", "cast_id": 16, "profile_path": "/3oS2KYKYUxo40nNFv08asY9mNQA.jpg", "order": 11}, {"name": "Glenn Fleshler", "character": "Arnold Klein", "id": 1377670, "credit_id": "54c305189251416eae00d7a2", "cast_id": 17, "profile_path": "/9SOBzbIjsTVBLT3FolXDHDrNLIh.jpg", "order": 12}, {"name": "Annie Funke", "character": "Lorraine Lefkowitz", "id": 1417738, "credit_id": "54c305279251412489004b1c", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Matthew Maher", "character": "John Dominczyk", "id": 1232599, "credit_id": "54c305329251412432004b00", "cast_id": 19, "profile_path": "/22q6AafRKJ7EpuFpcp0A7mwMh9L.jpg", "order": 14}, {"name": "David Margulies", "character": "Saul Lefkowitz", "id": 8875, "credit_id": "54c3053f92514124c800475b", "cast_id": 20, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 15}, {"name": "Pico Alexander", "character": "Elias Morales", "id": 1417739, "credit_id": "54c3054fc3a3683338000561", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Elizabeth Marvel", "character": "Mrs. Rose", "id": 126713, "credit_id": "54c3056d92514124ed004a3b", "cast_id": 22, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 17}, {"name": "Daisy Tahan", "character": "Annie Morales", "id": 80002, "credit_id": "54c305799251416e6000e1df", "cast_id": 23, "profile_path": "/tcu4J8a6cpefCa55eZ9OWl8W4wG.jpg", "order": 18}, {"name": "Giselle Eisenberg", "character": "Catherine Morales", "id": 1306572, "credit_id": "54c305899251416eae00d7b4", "cast_id": 24, "profile_path": "/4V9TFTwVn0VUyr19kd7sbm64KcY.jpg", "order": 19}], "directors": [{"name": "J.C. Chandor ", "department": "Directing", "job": "Director", "credit_id": "538d3574c3a368714b003ed7", "profile_path": "/mvNMQ2c23j6mVG0jqplWRneHLmU.jpg", "id": 556172}], "vote_average": 6.4, "runtime": 125}, "16996": {"poster_path": "/p8NVpmOk63w0eOZpWi1d5EM5oYA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 136267476, "overview": "On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a \"do-over.\" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.", "video": false, "id": 16996, "genres": [{"id": 35, "name": "Comedy"}], "title": "17 Again", "tagline": "Who says you're only young once?", "vote_count": 286, "homepage": "http://www.17againmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0974661", "adult": false, "backdrop_path": "/3XuoV7k3lT25xzfZofFMCjdm1v.jpg", "production_companies": [{"name": "Offspring Entertainment", "id": 2378}, {"name": "New Line Cinema", "id": 12}], "release_date": "2009-03-11", "popularity": 0.963532781299502, "original_title": "17 Again", "budget": 20000000, "cast": [{"name": "Zac Efron", "character": "Mike O'Donnell (Teen)", "id": 29222, "credit_id": "52fe46fc9251416c7508a373", "cast_id": 1, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Scarlett O'Donnell (Adult)", "id": 41087, "credit_id": "52fe46fc9251416c7508a377", "cast_id": 2, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Matthew Perry", "character": "Mike O'Donnell (Adult)", "id": 14408, "credit_id": "52fe46fc9251416c7508a37b", "cast_id": 4, "profile_path": "/hkszOdJc14ULRdsy7JnRAvlrbCY.jpg", "order": 3}, {"name": "Tyler Steelman", "character": "Ned Gold (Teen)", "id": 42289, "credit_id": "52fe46fc9251416c7508a37f", "cast_id": 5, "profile_path": "/14jJRyOcBMklLALEbhmXetbbh4I.jpg", "order": 4}, {"name": "Allison Miller", "character": "Scarlett (Teen)", "id": 17270, "credit_id": "52fe46fc9251416c7508a383", "cast_id": 6, "profile_path": "/x1NcyAIFO6lN41mcxQglvMOeckz.jpg", "order": 5}, {"name": "Michelle Trachtenberg", "character": "Maggie O'Donnell", "id": 49961, "credit_id": "52fe46fc9251416c7508a387", "cast_id": 7, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 6}, {"name": "Sterling Knight", "character": "Alex O'Donnell", "id": 87741, "credit_id": "52fe46fc9251416c7508a397", "cast_id": 10, "profile_path": "/acnPrlXdX9QjqzfJOTcOWeWCezl.jpg", "order": 7}, {"name": "Thomas Lennon", "character": "Ned Gold", "id": 539, "credit_id": "52fe46fc9251416c7508a39b", "cast_id": 11, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 8}, {"name": "Kat Graham", "character": "Jamie", "id": 159962, "credit_id": "52fe46fc9251416c7508a39f", "cast_id": 12, "profile_path": "/jefXlCOQrVILFeA43RhmuW4Bpbi.jpg", "order": 9}, {"name": "Tiya Sircar", "character": "Samantha", "id": 109046, "credit_id": "52fe46fc9251416c7508a3a3", "cast_id": 13, "profile_path": "/uqAiFL1P344fWa4cqfQhKWNoUyO.jpg", "order": 10}, {"name": "Melissa Ordway", "character": "Lauren", "id": 114602, "credit_id": "52fe46fc9251416c7508a3a7", "cast_id": 14, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 11}, {"name": "Josie Loren", "character": "Nicole", "id": 146516, "credit_id": "52fe46fc9251416c7508a3ab", "cast_id": 15, "profile_path": "/5uNgiW4jcq0eINKg8P9LZHqLVv4.jpg", "order": 12}, {"name": "Jim Gaffigan", "character": "Coach Murphy", "id": 84407, "credit_id": "52fe46fc9251416c7508a3af", "cast_id": 16, "profile_path": "/qWgrDUSX77Ay6XMX9lpI3cXiXKY.jpg", "order": 13}, {"name": "Collette Wolfe", "character": "Wendy", "id": 86624, "credit_id": "52fe46fc9251416c7508a3b3", "cast_id": 17, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 14}], "directors": [{"name": "Burr Steers", "department": "Directing", "job": "Director", "credit_id": "52fe46fc9251416c7508a38d", "profile_path": "/rWztkNxfPclLILEjAhaHaOHSWs3.jpg", "id": 58552}], "vote_average": 5.8, "runtime": 102}, "11866": {"poster_path": "/qecorw3Y4UtHabV0pskpvbJylms.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21009180, "overview": "When an Amacor oil rig in the Gobi Desert of Mongolia proves unproductive, Captain Frank Towns and copilot \"A.J.\" are sent to shut the operation down. However, on their way to Beijing, a major dust storm forces them to ditch their C-119 Flying Boxcar in an uncharted area of the desert.", "video": false, "id": 11866, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Flight of the Phoenix", "tagline": "Out of the ashes, hope will rise.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377062", "adult": false, "backdrop_path": "/4B0HpfKb4e8VJngnzMzHON7OTfp.jpg", "production_companies": [{"name": "Aldrich Group", "id": 49478}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2004-12-17", "popularity": 0.496960367954823, "original_title": "Flight of the Phoenix", "budget": 45000000, "cast": [{"name": "Dennis Quaid", "character": "Frank Towns", "id": 6065, "credit_id": "52fe44969251416c7503a073", "cast_id": 12, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Tyrese Gibson", "character": "A.J.", "id": 8169, "credit_id": "52fe44969251416c7503a077", "cast_id": 13, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 1}, {"name": "Giovanni Ribisi", "character": "Elliott", "id": 1771, "credit_id": "52fe44969251416c7503a07b", "cast_id": 14, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 2}, {"name": "Miranda Otto", "character": "Kelly", "id": 502, "credit_id": "52fe44969251416c7503a07f", "cast_id": 15, "profile_path": "/l3BzUjJMK3JbqvCiCIFP4beMChS.jpg", "order": 3}, {"name": "Hugh Laurie", "character": "Ian", "id": 41419, "credit_id": "52fe44969251416c7503a083", "cast_id": 16, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 4}, {"name": "Jared Padalecki", "character": "John Davis", "id": 49623, "credit_id": "52fe44969251416c7503a087", "cast_id": 17, "profile_path": "/uQLe1lfEBul3locVlV8nXD6n8TI.jpg", "order": 5}, {"name": "Tony Curran", "character": "Alex Rodney", "id": 2220, "credit_id": "52fe44969251416c7503a08b", "cast_id": 18, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 6}, {"name": "Kirk Jones", "character": "Jeremy", "id": 86462, "credit_id": "52fe44969251416c7503a08f", "cast_id": 19, "profile_path": "/mI6dOAQ97sL7mygKR3msXJ0oNYz.jpg", "order": 7}, {"name": "Jacob Vargas", "character": "Sammi", "id": 16429, "credit_id": "52fe44969251416c7503a093", "cast_id": 20, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 8}, {"name": "Scott Michael Campbell", "character": "James Liddle", "id": 65728, "credit_id": "52fe44969251416c7503a097", "cast_id": 21, "profile_path": "/kMHZLJUwa8QCaLsBEAdEj8UtMGL.jpg", "order": 9}, {"name": "Kevork Malikyan", "character": "Rady", "id": 743, "credit_id": "52fe44969251416c7503a09b", "cast_id": 22, "profile_path": "/aq3elIciFeSrvbVyDNeoozQqLnm.jpg", "order": 10}, {"name": "Paul Ditchfield", "character": "Dr. Gerber", "id": 1047709, "credit_id": "52fe44969251416c7503a09f", "cast_id": 23, "profile_path": "/nLvlZ6GF6vthgDhiEfZF3WBwdJ3.jpg", "order": 11}, {"name": "Martin Hindy", "character": "Newman", "id": 1047710, "credit_id": "52fe44969251416c7503a0a3", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Bob Brown", "character": "Kyle", "id": 146352, "credit_id": "52fe44969251416c7503a0a7", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Anthony Wong", "character": "Lead Smuggler", "id": 930817, "credit_id": "52fe44969251416c7503a0ab", "cast_id": 26, "profile_path": "/qCXdSClvG2EaXFO3xAyAZdNjXYD.jpg", "order": 14}, {"name": "Sticky Fingaz", "character": "Jeremy (as Kirk Jones)", "id": 1277051, "credit_id": "5300c241c3a3683ff72e5f4c", "cast_id": 27, "profile_path": "/cL12381eRqrjaueN3sYDFrbvWEi.jpg", "order": 15}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe44969251416c7503a033", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.3, "runtime": 113}, "11873": {"poster_path": "/doU9OaWz2If1WV8S8iaBKt9vckC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 52293982, "overview": "Fast Eddie Felson teaches a cocky but immensely talented prot\u00e9g\u00e9 the ropes of pool hustling, which in turn inspires him to make an unlikely comeback.", "video": false, "id": 11873, "genres": [{"id": 18, "name": "Drama"}], "title": "The Color of Money", "tagline": "The hustler isn't what he used to be, but he has the next best thing: a kid who is.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0090863", "adult": false, "backdrop_path": "/zJNwM7kMs7cev7glBUFq42DuRZ6.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners", "id": 514}], "release_date": "1986-10-07", "popularity": 0.544695780474826, "original_title": "The Color of Money", "budget": 0, "cast": [{"name": "Paul Newman", "character": "Fast Eddie Felson", "id": 3636, "credit_id": "52fe44979251416c7503a3cf", "cast_id": 7, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "Tom Cruise", "character": "Vincent Lauria", "id": 500, "credit_id": "52fe44979251416c7503a3d3", "cast_id": 8, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 1}, {"name": "Mary Elizabeth Mastrantonio", "character": "Carmen", "id": 1161, "credit_id": "52fe44979251416c7503a3d7", "cast_id": 9, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 2}, {"name": "Helen Shaver", "character": "Janelle", "id": 4160, "credit_id": "52fe44979251416c7503a3db", "cast_id": 10, "profile_path": "/a9ODBCPAkAolT4QWhuMUlFNAUIL.jpg", "order": 3}, {"name": "John Turturro", "character": "Julian", "id": 1241, "credit_id": "52fe44979251416c7503a3df", "cast_id": 11, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 4}, {"name": "Bill Cobbs", "character": "Orvis", "id": 8854, "credit_id": "52fe44979251416c7503a3e3", "cast_id": 12, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 5}, {"name": "Robert Agins", "character": "Earl at Chalkies", "id": 947670, "credit_id": "52fe44989251416c7503a3ff", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Alvin Anastasia", "character": "Kennedy", "id": 1265392, "credit_id": "52fe44989251416c7503a403", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Randall Arney", "character": "Child World Customer #1", "id": 1178314, "credit_id": "52fe44989251416c7503a407", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Elizabeth Bracco", "character": "Diane at Bar", "id": 54887, "credit_id": "52fe44989251416c7503a3fb", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Vito D'Ambrosio", "character": "Lou in Child World", "id": 1277, "credit_id": "52fe44989251416c7503a40b", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Ron Dean", "character": "Guy in Crowd", "id": 57597, "credit_id": "52fe44989251416c7503a40f", "cast_id": 23, "profile_path": "/a910oOgeYR0IxutHf3GeyDNw3qY.jpg", "order": 11}, {"name": "Lisa Dodson", "character": "Child World Customer #2", "id": 1051092, "credit_id": "52fe44989251416c7503a413", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Donald A. Feeney", "character": "Referee #1", "id": 1265393, "credit_id": "52fe44989251416c7503a417", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Paul Geier", "character": "\"Two Brothers/Stranger\" Player", "id": 170941, "credit_id": "52fe44989251416c7503a41b", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Carey Goldenberg", "character": "Congratulating Spectator", "id": 1265394, "credit_id": "52fe44989251416c7503a41f", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Joe Guastaferro", "character": "Chuck the Bartender", "id": 1265395, "credit_id": "52fe44989251416c7503a423", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Paul Herman", "character": "Player in Casino Bar", "id": 58535, "credit_id": "52fe44989251416c7503a427", "cast_id": 29, "profile_path": "/vaK8wxkMeKJdZEdGUufyV0Ma24M.jpg", "order": 17}, {"name": "Mark Jarvis", "character": "Guy at Janelle's", "id": 1265396, "credit_id": "52fe44989251416c7503a42b", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Lawrence Linn", "character": "Congratulating Spectator", "id": 1265397, "credit_id": "52fe44989251416c7503a42f", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Keith McCready", "character": "Grady Seasons", "id": 1264489, "credit_id": "52fe44979251416c7503a3e7", "cast_id": 13, "profile_path": null, "order": 20}, {"name": "Jimmy Mataya", "character": "Julian's Friend in Green Room", "id": 1242130, "credit_id": "52fe44989251416c7503a433", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Grady Mathews", "character": "Dud", "id": 1265398, "credit_id": "52fe44989251416c7503a437", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Carol Messing", "character": "Casino Bar Band Singer/Julian's Flirt", "id": 1265399, "credit_id": "52fe44989251416c7503a43b", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "Steve Mizerak", "character": "Duke", "id": 1264490, "credit_id": "52fe44979251416c7503a3eb", "cast_id": 14, "profile_path": null, "order": 24}, {"name": "Rick Mohr", "character": "Congratulating Spectator", "id": 1265400, "credit_id": "52fe44989251416c7503a43f", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Lloyd Moss", "character": "Narrator - Resorts International", "id": 1265401, "credit_id": "52fe44989251416c7503a443", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Michael Nash", "character": "Moselle's Opponent", "id": 1039590, "credit_id": "52fe44989251416c7503a447", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Mario Nieves", "character": "Third Latin Guy", "id": 992589, "credit_id": "52fe44989251416c7503a44b", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Miguel Nino", "character": "First Latin Guy", "id": 59399, "credit_id": "52fe44989251416c7503a44f", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Andy Nolfo", "character": "Referee #2", "id": 1265402, "credit_id": "52fe44989251416c7503a453", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Ernest Perry Jr.", "character": "Eye Doctor", "id": 1222016, "credit_id": "52fe44989251416c7503a457", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Jerry Piller", "character": "Tom", "id": 1265403, "credit_id": "52fe44989251416c7503a45b", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "Iggy Pop", "character": "Skinny Player on the Road", "id": 13604, "credit_id": "52fe44989251416c7503a3ef", "cast_id": 15, "profile_path": "/orkeTSZYiHVKqeTntsD6e6VHuqc.jpg", "order": 33}, {"name": "Richard Price", "character": "Guy Who Calls Dud", "id": 2989, "credit_id": "52fe44989251416c7503a45f", "cast_id": 43, "profile_path": null, "order": 34}, {"name": "Juan Ram\u00edrez", "character": "Second Latin Guy", "id": 148306, "credit_id": "52fe44989251416c7503a463", "cast_id": 44, "profile_path": null, "order": 35}, {"name": "Alex Ross", "character": "Bartender Who Bets", "id": 1265404, "credit_id": "52fe44989251416c7503a467", "cast_id": 45, "profile_path": null, "order": 36}, {"name": "Peter Saxe", "character": "Casino Bar Band Member", "id": 1265405, "credit_id": "52fe44989251416c7503a46b", "cast_id": 46, "profile_path": null, "order": 37}, {"name": "Charles Scorsese", "character": "High Roller #1", "id": 1006721, "credit_id": "52fe44989251416c7503a46f", "cast_id": 47, "profile_path": null, "order": 38}, {"name": "Rodrick Selby", "character": "Congratulating Spectator", "id": 1265406, "credit_id": "52fe44989251416c7503a473", "cast_id": 48, "profile_path": null, "order": 39}, {"name": "Christina Sigel", "character": "Waitress", "id": 1265407, "credit_id": "52fe44989251416c7503a477", "cast_id": 49, "profile_path": null, "order": 40}, {"name": "Harold L. Simonsen", "character": "Chief Justice Tournament", "id": 1265408, "credit_id": "52fe44989251416c7503a47b", "cast_id": 50, "profile_path": null, "order": 41}, {"name": "Fred Squillo", "character": "High Roller #2", "id": 1265409, "credit_id": "52fe44989251416c7503a47f", "cast_id": 51, "profile_path": null, "order": 42}, {"name": "Brian Sunina", "character": "Casino Bar Band Member", "id": 1265410, "credit_id": "52fe44989251416c7503a483", "cast_id": 52, "profile_path": null, "order": 43}, {"name": "Wanda Christine", "character": "Casino Clerk", "id": 112045, "credit_id": "52fe44989251416c7503a487", "cast_id": 53, "profile_path": null, "order": 44}, {"name": "Forest Whitaker", "character": "Amos", "id": 2178, "credit_id": "52fe44989251416c7503a3f3", "cast_id": 16, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 45}, {"name": "Jim Widlowski", "character": "Casino Bar Band Member", "id": 1265411, "credit_id": "52fe44989251416c7503a48b", "cast_id": 54, "profile_path": null, "order": 46}, {"name": "Bruce A. Young", "character": "Moselle", "id": 4943, "credit_id": "52fe44989251416c7503a3f7", "cast_id": 17, "profile_path": "/ty2NwUAAwnn356eTAu7RuSsQlhT.jpg", "order": 47}, {"name": "Zo\u00eb", "character": "Dog Walkby", "id": 1265412, "credit_id": "52fe44989251416c7503a48f", "cast_id": 55, "profile_path": null, "order": 48}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe44979251416c7503a3ad", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.2, "runtime": 119}, "668": {"poster_path": "/sd1OYYEsfH8I6X3n8DrqpDgeXBA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81974493, "overview": "James Bond tracks archnemesis Ernst Blofeld to a mountaintop retreat where he's training an army of beautiful but lethal women. Along the way, Bond falls for Italian contessa Tracy Draco -- and marries her in order to get closer to Blofeld. Meanwhile, he locates Blofeld in the Alps and embarks on a classic ski chase.", "video": false, "id": 668, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "On Her Majesty's Secret Service", "tagline": "Far up! Far out! Far more! James Bond 007 is back!", "vote_count": 123, "homepage": "http://www.mgm.com/view/movie/1411/On-Her-Majesty%E2%80%99s-Secret-Service/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0064757", "adult": false, "backdrop_path": "/o71ywQSmQ1hNPSLKJuCMyDTrL7K.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1969-12-18", "popularity": 0.950510756495189, "original_title": "On Her Majesty's Secret Service", "budget": 7000000, "cast": [{"name": "George Lazenby", "character": "James Bond", "id": 10167, "credit_id": "52fe4267c3a36847f801bc3b", "cast_id": 1, "profile_path": "/rmrprW2rSKq49nPClGUfrJ2J0U4.jpg", "order": 0}, {"name": "Diana Rigg", "character": "Tracy Di Vicenzo", "id": 10168, "credit_id": "52fe4267c3a36847f801bc3f", "cast_id": 2, "profile_path": "/uE6T555B1BtlKqemVLVjM4XcUC5.jpg", "order": 1}, {"name": "Telly Savalas", "character": "Ernst Stavro Blofeld", "id": 10169, "credit_id": "52fe4267c3a36847f801bc43", "cast_id": 3, "profile_path": "/5HtqvadMMZZ0Zg0Y70gyrduZ8lU.jpg", "order": 2}, {"name": "Gabriele Ferzetti", "character": "Marc Ange Draco", "id": 4961, "credit_id": "52fe4267c3a36847f801bc47", "cast_id": 4, "profile_path": "/gpiJIBogUvPgKIwf65BXu37NDY1.jpg", "order": 3}, {"name": "Ilse Steppat", "character": "Irma Bunt", "id": 10170, "credit_id": "52fe4267c3a36847f801bc4b", "cast_id": 5, "profile_path": "/8RhUsZYeQR8R5ic5vwGqYc9VkL.jpg", "order": 4}, {"name": "Angela Scoular", "character": "Ruby Bartlett", "id": 10171, "credit_id": "52fe4267c3a36847f801bc4f", "cast_id": 6, "profile_path": "/1My9AjN4VoHUzsQrTnkhW60k1aH.jpg", "order": 5}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe4267c3a36847f801bc53", "cast_id": 7, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 6}, {"name": "George Baker", "character": "Sir Hilary Bray", "id": 10173, "credit_id": "52fe4267c3a36847f801bc57", "cast_id": 9, "profile_path": "/ogT7DAofS8SqeaZlQQSmJcn2sN8.jpg", "order": 8}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe4267c3a36847f801bc5b", "cast_id": 10, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 9}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe4267c3a36847f801bc5f", "cast_id": 12, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 10}, {"name": "Catherine Schell", "character": "Nancy", "id": 18915, "credit_id": "52fe4267c3a36847f801bcb1", "cast_id": 28, "profile_path": "/y4czs0CUCf4z2XAQT3C1yzXWdPD.jpg", "order": 11}, {"name": "Bernard Horsfall", "character": "Campbell", "id": 10174, "credit_id": "5405a9a60e0a2658db00c9af", "cast_id": 29, "profile_path": "/gAWAqff7bQ9RVf34nFd8dmxJy6u.jpg", "order": 12}, {"name": "Virginia North", "character": "Olympe", "id": 40923, "credit_id": "5405a9c40e0a2658f100c940", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Geoffrey Cheshire", "character": "Toussaint", "id": 24335, "credit_id": "5405a9d80e0a2658f100c944", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Julie Ege", "character": "The Scandinavian Girl", "id": 95512, "credit_id": "5405aa250e0a2658db00c9c0", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Mona Chong", "character": "The Chinese Girl", "id": 189872, "credit_id": "5405aa340e0a2658de00cd3b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Joanna Lumley", "character": "The English Girl", "id": 34901, "credit_id": "5405aa4b0e0a2658db00c9c8", "cast_id": 34, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 17}, {"name": "Jenny Hanley", "character": "The Irish Girl", "id": 112465, "credit_id": "5405aa790e0a2658ee00c880", "cast_id": 35, "profile_path": "/7C3E6f9Tty2NySX5P4SYM1aQre5.jpg", "order": 18}], "directors": [{"name": "Peter R. Hunt", "department": "Directing", "job": "Director", "credit_id": "52fe4267c3a36847f801bc65", "profile_path": null, "id": 9868}], "vote_average": 6.2, "runtime": 142}, "3683": {"poster_path": "/qmOMjEyxrZ91EM469GWPazAoPax.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65900249, "overview": "There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. \"Flags of Our Fathers\" is the story of three of the six surviving servicemen, John \"Doc\" Bradley (Ryan Phillippe), Pvt. Rene Gagnon (Jesse Bradford), and Pvt. Ira Hayes (Adam Beach), who fought in the battle to take Iwo Jima. \"Flags of Our Fathers\" is the American viewpoint of Eastwood's diptych on the battle of Iwo Jima, the other being \"Letters From Iwo Jima\", which tells the same story from the Japanse point of view.", "video": false, "id": 3683, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Flags of Our Fathers", "tagline": "They fight for their country but they die for their friends.", "vote_count": 139, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/7wFTAiIVVucj2PLvMwLZXojEJsA.jpg", "id": 261382, "name": "Clint Eastwood's Iwo Jima"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0418689", "adult": false, "backdrop_path": "/jeza4YlzwJXCALXNdmnjiR7A7sj.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Malpaso Productions", "id": 171}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2006-10-19", "popularity": 0.917966267458232, "original_title": "Flags of Our Fathers", "budget": 90000000, "cast": [{"name": "Ryan Phillippe", "character": "John 'Doc' Bradley", "id": 11864, "credit_id": "52fe43a2c3a36847f80637a7", "cast_id": 7, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 0}, {"name": "Adam Beach", "character": "Corporal Ira Hayes", "id": 33527, "credit_id": "52fe43a2c3a36847f80637ab", "cast_id": 8, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 1}, {"name": "Jesse Bradford", "character": "Corporal Rene Gagnon", "id": 17772, "credit_id": "52fe43a2c3a36847f80637af", "cast_id": 9, "profile_path": "/dOoAK7pcl1OtIcLUcs1LeFpJOJG.jpg", "order": 2}, {"name": "John Benjamin Hickey", "character": "Sergeant Keyes Beech", "id": 21179, "credit_id": "53d188250e0a265df000d4b2", "cast_id": 30, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 3}, {"name": "John Slattery", "character": "Bud Gerber", "id": 21134, "credit_id": "52fe43a2c3a36847f80637e3", "cast_id": 23, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 4}, {"name": "Barry Pepper", "character": "Sergeant Mike Strank", "id": 12834, "credit_id": "52fe43a2c3a36847f80637cf", "cast_id": 18, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 5}, {"name": "Jamie Bell", "character": "Private Ralph Ignatowski", "id": 478, "credit_id": "52fe43a2c3a36847f80637bb", "cast_id": 12, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 6}, {"name": "Paul Walker", "character": "Sergeant Hank Hansen", "id": 8167, "credit_id": "52fe43a2c3a36847f80637b3", "cast_id": 10, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 7}, {"name": "Robert Patrick", "character": "Colonel Chandler Johnson", "id": 418, "credit_id": "52fe43a2c3a36847f80637cb", "cast_id": 17, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 8}, {"name": "Neal McDonough", "character": "Captain Dave Severance", "id": 2203, "credit_id": "52fe43a2c3a36847f80637b7", "cast_id": 11, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 9}, {"name": "Melanie Lynskey", "character": "Pauline Harnois Gagnon", "id": 15091, "credit_id": "52fe43a2c3a36847f80637c7", "cast_id": 16, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 10}, {"name": "Chris Bauer", "character": "General Alexander Vandegrift", "id": 4445, "credit_id": "53d189c40e0a265e0100d17a", "cast_id": 31, "profile_path": "/3KYVMaGkWTEDQ0T9lsu85pVbP4T.jpg", "order": 11}, {"name": "Gordon Clapp", "character": "General Holland Smith", "id": 26008, "credit_id": "53d189fc0e0a265dfc00d35a", "cast_id": 32, "profile_path": "/lXj4dp11IHY8pAk4yUoK83989zA.jpg", "order": 12}, {"name": "Judith Ivey", "character": "Belle Block", "id": 19239, "credit_id": "53d18a2c0e0a265de700d62e", "cast_id": 33, "profile_path": "/AbliRxEkGlefUossjUxvzHF2s3b.jpg", "order": 13}, {"name": "Joseph Cross", "character": "Private Franklin Sousley", "id": 33528, "credit_id": "52fe43a2c3a36847f80637bf", "cast_id": 13, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 14}, {"name": "Benjamin Walker", "character": "Harlon Block", "id": 239996, "credit_id": "53d187ad0e0a265de700d608", "cast_id": 29, "profile_path": "/zd56RC1ifqvQyA90cjtvYD4sO3I.jpg", "order": 15}, {"name": "Alessandro Mastrobuono", "character": "Corporal Chuck Lindberg", "id": 33530, "credit_id": "52fe43a2c3a36847f80637d3", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Stark Sands", "character": "Gust", "id": 33532, "credit_id": "52fe43a2c3a36847f80637db", "cast_id": 21, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 17}, {"name": "Ann Dowd", "character": "Mrs. Strank", "id": 43366, "credit_id": "53d18a510e0a265dea00d5a7", "cast_id": 34, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 18}, {"name": "Beth Grant", "character": "Mother Gagnon", "id": 5151, "credit_id": "52fe43a2c3a36847f80637f1", "cast_id": 26, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 19}, {"name": "Brian Kimmet", "character": "Sergeant Boots Thomas", "id": 33531, "credit_id": "52fe43a2c3a36847f80637d7", "cast_id": 20, "profile_path": null, "order": 20}, {"name": "Jason Gray-Stanford", "character": "Lieutenant Harold Schrier", "id": 6166, "credit_id": "52fe43a2c3a36847f80637c3", "cast_id": 15, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 21}, {"name": "David Rasche", "character": "Senator", "id": 33533, "credit_id": "52fe43a2c3a36847f80637df", "cast_id": 22, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 22}, {"name": "James Newman", "character": "Local Politician", "id": 151124, "credit_id": "52fe43a2c3a36847f80637ed", "cast_id": 25, "profile_path": "/yIDXqkrb290f9xAd6yNU0g2QmYQ.jpg", "order": 23}, {"name": "Beth Tapper", "character": "Bar Car Beauty", "id": 1444527, "credit_id": "55105be392514164ac00347a", "cast_id": 85, "profile_path": "/xmzRv46eQapQ8cozN6c7Bg8Ucq4.jpg", "order": 24}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe43a2c3a36847f8063785", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.5, "runtime": 132}, "11878": {"poster_path": "/xeN0ZLHOIKuAiffuCgvERft3PkV.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "The incomparable Toshiro Mifune stars in Akira Kurosawa\u2019s visually stunning and darkly comic Yojimbo. To rid a terror-stricken village of corruption, wily masterless samurai Sanjuro turns a range war between two evil clans to his own advantage. Remade twice, by Sergio Leone and Walter Hill, this exhilarating genre-twister remains one of the most influential and entertaining films of all time.", "video": false, "id": 11878, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Yojimbo", "tagline": "", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0055630", "adult": false, "backdrop_path": "/7geWAyhcmjcMQWcZA5lrS7Le8cG.jpg", "production_companies": [{"name": "Toho Company", "id": 882}], "release_date": "1961-04-25", "popularity": 0.663747367486539, "original_title": "Y\u00f4jinb\u00f4", "budget": 0, "cast": [{"name": "Toshir\u014d Mifune", "character": "Sanjuro Kuwabatake / The Samurai", "id": 7450, "credit_id": "52fe44999251416c7503a5e7", "cast_id": 1, "profile_path": "/32nCFJneAfmZxYTQsaF5bcmCB7e.jpg", "order": 0}, {"name": "Tatsuya Nakadai", "character": "Unosuke, gunfighter", "id": 70131, "credit_id": "52fe44999251416c7503a5eb", "cast_id": 2, "profile_path": "/aVwl2VgqRFaFLWlcGx2fSweZ24d.jpg", "order": 1}, {"name": "Y\u00f4ko Tsukasa", "character": "Nui", "id": 70811, "credit_id": "52fe44999251416c7503a5ef", "cast_id": 3, "profile_path": "/nEbaJya28nfWSFaxnNjUun0t0ZR.jpg", "order": 2}, {"name": "Isuzu Yamada", "character": "Orin", "id": 33761, "credit_id": "52fe44999251416c7503a5f3", "cast_id": 4, "profile_path": "/ouUm7hoSCXU1yXQxhGMi4Yue3Bx.jpg", "order": 3}, {"name": "Daisuke Kat\u00f4", "character": "Inokichi", "id": 7457, "credit_id": "52fe44999251416c7503a62d", "cast_id": 14, "profile_path": "/rZGOg4xRkDTVMdGCzMhswioT4pU.jpg", "order": 4}, {"name": "Takashi Shimura", "character": "Tokuemon, sake brewer", "id": 7453, "credit_id": "52fe44999251416c7503a631", "cast_id": 15, "profile_path": "/k8Ff4Nq2peKfiUpd8IILrSBM0ts.jpg", "order": 5}, {"name": "Seizabur\u00f4 Kawazu", "character": "Seib\u00ea - brothel operator", "id": 83202, "credit_id": "52fe44999251416c7503a635", "cast_id": 16, "profile_path": "/lANtBuGWnd7KjXfQsNegbUjwNMb.jpg", "order": 6}, {"name": "Hiroshi Tachikawa", "character": "Yoichiro", "id": 33763, "credit_id": "52fe44999251416c7503a639", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Eijir\u00f4 T\u00f4no", "character": "Gonji, tavern keeper", "id": 106165, "credit_id": "52fe44999251416c7503a63d", "cast_id": 19, "profile_path": "/5wb61i8W4r9On3FkwUbaTkWqfdb.jpg", "order": 8}, {"name": "Kamatari Fujiwara", "character": "Tazaemon", "id": 96552, "credit_id": "52fe44999251416c7503a641", "cast_id": 20, "profile_path": "/detxCmyJe9W1WqGCCYJQC7U5Tgq.jpg", "order": 9}, {"name": "Ikio Sawamura", "character": "Hansuke", "id": 97204, "credit_id": "52fe44999251416c7503a645", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Atsushi Watanabe", "character": "The Cooper (Coffin-Maker)", "id": 134294, "credit_id": "52fe44999251416c7503a649", "cast_id": 22, "profile_path": "/iInI90DbSCtBj3x9rKD60Jhqx0a.jpg", "order": 11}, {"name": "Susumu Fujita", "character": "Homma, instructor who skips town", "id": 30907, "credit_id": "52fe44999251416c7503a64d", "cast_id": 23, "profile_path": "/eVlXPPjlHAzFBKxgPKML1Uciahx.jpg", "order": 12}, {"name": "Ky\u00fb Sazanka", "character": "Ushitora", "id": 213469, "credit_id": "52fe44999251416c7503a651", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Yosuke Natsuki", "character": "Kohei's Son", "id": 131201, "credit_id": "52fe44999251416c7503a655", "cast_id": 25, "profile_path": "/9ih93vBMTj6s4moLQhn6eyobXvT.jpg", "order": 14}], "directors": [{"name": "Akira Kurosawa", "department": "Directing", "job": "Director", "credit_id": "52fe44999251416c7503a5f9", "profile_path": "/tSHISWGMP0xBQxWfrsLXPK4a4r7.jpg", "id": 5026}], "vote_average": 7.9, "runtime": 110}, "233063": {"poster_path": "/9GSGg4McYID6Ld0OMwimLr1Zx4J.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "A comedy that follows an ex-con who lands a position at a school that sits over the spot where money from one of his earlier robberies was stashed.", "video": false, "id": 233063, "genres": [{"id": 35, "name": "Comedy"}], "title": "F*ck You, Goethe", "tagline": "", "vote_count": 133, "homepage": "", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2987732", "adult": false, "backdrop_path": "/AtCGEku6kLUFmZ6JWkvXphQBQXx.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Rat Pack Filmproduktion", "id": 5754}], "release_date": "2013-11-07", "popularity": 0.576279474788976, "original_title": "Fack ju G\u00f6hte", "budget": 0, "cast": [{"name": "Elyas M\u2019Barek", "character": "Zeki M\u00fcller", "id": 25409, "credit_id": "52fe4e11c3a36847f827c07d", "cast_id": 3, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 0}, {"name": "Karoline Herfurth", "character": "Lisi Schnabelstedt", "id": 17067, "credit_id": "52fe4e11c3a36847f827c081", "cast_id": 4, "profile_path": "/8HVqhIaLQA3MOTO88Ncn6VOCzdp.jpg", "order": 1}, {"name": "Katja Riemann", "character": "Direktorin Gudrun", "id": 1874, "credit_id": "52fe4e11c3a36847f827c085", "cast_id": 5, "profile_path": "/sPvCj1IxlhjI61BVlIuwsXuXEl7.jpg", "order": 2}, {"name": "Jana Pallaske", "character": "Charlie", "id": 20259, "credit_id": "52fe4e11c3a36847f827c089", "cast_id": 6, "profile_path": "/mzeBCXN3vcU6gIc8p7otO85Cbo6.jpg", "order": 3}, {"name": "Alwara H\u00f6fels", "character": "Caro", "id": 47785, "credit_id": "52fe4e11c3a36847f827c08d", "cast_id": 7, "profile_path": "/pnb77qJKydpmJFpD4pLEm3YgPHq.jpg", "order": 4}, {"name": "Jonas Holdenrieder", "character": "Peter Paker", "id": 1268429, "credit_id": "52fe4e11c3a36847f827c091", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Uschi Glas", "character": "Frau Leimbach-Knorrs", "id": 33709, "credit_id": "52fe4e11c3a36847f827c095", "cast_id": 9, "profile_path": "/v0xiN0Vr8EHF2G0WnaZSI9O0XIO.jpg", "order": 6}, {"name": "Jella Haase", "character": "Chantal", "id": 912632, "credit_id": "52fe4e11c3a36847f827c099", "cast_id": 10, "profile_path": "/cUwroAb4WwOKIalxP3aQvOgcmdQ.jpg", "order": 7}, {"name": "Max von der Groeben", "character": "Daniel (Danger)", "id": 1272059, "credit_id": "52fe4e11c3a36847f827c0af", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Margarita Broich", "character": "Frau Sieberts / Jugenamtfrau", "id": 79449, "credit_id": "52fe4e11c3a36847f827c0b3", "cast_id": 16, "profile_path": "/pSEClpsqZNQ4E8c3Phs7RPM0PGA.jpg", "order": 9}, {"name": "Bernd Stegemann", "character": "Mr. Gundlach", "id": 16720, "credit_id": "52fe4e11c3a36847f827c0b7", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Farid Bang", "character": "Paco", "id": 1284051, "credit_id": "52fe4e11c3a36847f827c0bb", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Stefan G\u00f6dde", "character": "Veranstalter", "id": 1284052, "credit_id": "52fe4e11c3a36847f827c0bf", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Christian N\u00e4the", "character": "Biologie-Lehrer", "id": 36325, "credit_id": "53a60e080e0a261442002241", "cast_id": 23, "profile_path": null, "order": 13}], "directors": [{"name": "Bora Da\u011ftekin", "department": "Directing", "job": "Director", "credit_id": "52fe4e11c3a36847f827c0c5", "profile_path": "/uzlEIBPfxZWE1NWZirbjwRYE6xN.jpg", "id": 1238965}], "vote_average": 7.7, "runtime": 119}, "11884": {"poster_path": "/5uGg2npj168w8NIXUj35fpdHQX4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28733290, "overview": "A video-gaming boy, seemingly doomed to stay at his trailer park home all his life, finds himself recruited as a gunner for an alien defense force.", "video": false, "id": 11884, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "The Last Starfighter", "tagline": "He didn't find his dreams... his dreams found him.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0087597", "adult": false, "backdrop_path": "/41mTvUFC5qtrAI12kQbgxw3Zig.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Lorimar Film Entertainment", "id": 1176}], "release_date": "1984-07-13", "popularity": 0.555673225322838, "original_title": "The Last Starfighter", "budget": 15000000, "cast": [{"name": "Lance Guest", "character": "Alex Rogan", "id": 16213, "credit_id": "52fe449a9251416c7503a87b", "cast_id": 1, "profile_path": "/7bzggMGfzqYNMiObpAJ8IU8LZ7Q.jpg", "order": 0}, {"name": "Dan O'Herlihy", "character": "Grig", "id": 6836, "credit_id": "52fe449a9251416c7503a87f", "cast_id": 2, "profile_path": "/amXueiRr8cy4sTjb7h4W5GrKe14.jpg", "order": 1}, {"name": "Catherine Mary Stewart", "character": "Maggie Gordon", "id": 55266, "credit_id": "52fe449a9251416c7503a883", "cast_id": 3, "profile_path": "/2d3DEQluzVUPg9KJsn2vymIRlOW.jpg", "order": 2}, {"name": "Barbara Bosson", "character": "Jane Rogan", "id": 70834, "credit_id": "52fe449a9251416c7503a887", "cast_id": 4, "profile_path": "/wQpFNiZZeCgtOpadeqmEW8lkFjL.jpg", "order": 3}, {"name": "Norman Snow", "character": "Xur", "id": 129088, "credit_id": "52fe449a9251416c7503a8b5", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Robert Preston", "character": "Centauri", "id": 40202, "credit_id": "52fe449a9251416c7503a8b9", "cast_id": 13, "profile_path": "/jYeXchYunCtIN3wd6VbNnoMWaqD.jpg", "order": 5}], "directors": [{"name": "Nick Castle", "department": "Directing", "job": "Director", "credit_id": "52fe449a9251416c7503a88d", "profile_path": "/ecUHW93fTzJLCEZcpfvfjgNMi1o.jpg", "id": 14692}], "vote_average": 6.4, "runtime": 101}, "11886": {"poster_path": "/78yFcKivWbLwlPcUOPj2A75k4Ii.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32056467, "overview": "With King Richard off to the Crusades, Prince John and his slithering minion, Sir Hiss, set about taxing Nottingham's citizens with support from the corrupt sheriff - and staunch opposition by the wily Robin Hood and his band of merry men.", "video": false, "id": 11886, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Robin Hood", "tagline": "Meet Robin Hood and his MERRY MENagerie!", "vote_count": 352, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070608", "adult": false, "backdrop_path": "/Ll0Ul2ZsCLqezMPNCG9fGsCZOd.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1973-11-08", "popularity": 1.50719797556001, "original_title": "Robin Hood", "budget": 15000000, "cast": [{"name": "Brian Bedford", "character": "Robin Hood (voice)", "id": 70843, "credit_id": "52fe449a9251416c7503a91d", "cast_id": 9, "profile_path": "/sihqrrqI4bQT3fjnBmrLyPe12wl.jpg", "order": 0}, {"name": "Phil Harris", "character": "Little John (voice)", "id": 57329, "credit_id": "52fe449a9251416c7503a921", "cast_id": 11, "profile_path": "/cNfUGziMuqXlrw5i3w1VqugwIt5.jpg", "order": 1}, {"name": "Peter Ustinov", "character": "Prince John (voice)", "id": 14501, "credit_id": "52fe449a9251416c7503a937", "cast_id": 16, "profile_path": "/8Lv4g3ZPVSM1ckKk15OnryX8sL7.jpg", "order": 2}, {"name": "Pat Buttram", "character": "The sheriff Of Nottingham (voice)", "id": 21460, "credit_id": "52fe449a9251416c7503a93b", "cast_id": 17, "profile_path": "/sGcgjy4EbW0j6K88o2alR5LUeAF.jpg", "order": 3}, {"name": "Ken Curtis", "character": "Nutsy (voice)", "id": 30554, "credit_id": "52fe449a9251416c7503a93f", "cast_id": 18, "profile_path": "/rY1vWoI4hANlZ9wBT7RL4lMqqCB.jpg", "order": 4}, {"name": "George Lindsey", "character": "Trigger (voice)", "id": 141693, "credit_id": "52fe449a9251416c7503a943", "cast_id": 19, "profile_path": "/dvlW5KWKZuub9nqkwwePA5Tf1yX.jpg", "order": 5}, {"name": "Barbara Luddy", "character": "Mother Rabbit / Little Sister Mouse (voice)", "id": 64871, "credit_id": "52fe449a9251416c7503a947", "cast_id": 20, "profile_path": "/cK7NjpqJmjaFTT52vwAq9bYH2VA.jpg", "order": 6}, {"name": "Monica Evans", "character": "Maid Marian (voice)", "id": 143770, "credit_id": "52fe449a9251416c7503a94b", "cast_id": 21, "profile_path": "/hp8qc9ZB0U3hehc6mseyHVd8j0p.jpg", "order": 7}, {"name": "Carole Shelley", "character": "Lady Klucky (voice)", "id": 58770, "credit_id": "52fe449a9251416c7503a94f", "cast_id": 22, "profile_path": "/p9XDqB8LOG09DOwGQ3EXYr78KMt.jpg", "order": 8}, {"name": "Andy Devine", "character": "Friar Tuck (voice)", "id": 14966, "credit_id": "52fe449a9251416c7503a953", "cast_id": 23, "profile_path": "/w4tLltNhtOqQXJzju4TzUJRiesg.jpg", "order": 9}, {"name": "Terry-Thomas", "character": "Sir Hiss (voice)", "id": 29427, "credit_id": "52fe449a9251416c7503a957", "cast_id": 24, "profile_path": "/tdsN3NUsBNEPtHkWX5BskfG7yCi.jpg", "order": 10}, {"name": "Billy Whitaker", "character": "Skippy - a Rabbit (voice)", "id": 143800, "credit_id": "52fe449a9251416c7503a95b", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "John Fiedler", "character": "Father Sexton (voice)", "id": 5247, "credit_id": "52fe449a9251416c7503a963", "cast_id": 29, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 13}, {"name": "Sean Marshall", "character": "Toby a Turtle (voice)", "id": 68130, "credit_id": "52fe449a9251416c7503a967", "cast_id": 31, "profile_path": "/k3wGDcyJ6mEBrEtIH4aGpSlmK4z.jpg", "order": 14}, {"name": "Roger Miller", "character": "Allan-a-Dale - The Rooster (voice)", "id": 1226099, "credit_id": "548de84292514122ea004d76", "cast_id": 33, "profile_path": null, "order": 16}], "directors": [{"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe449a9251416c7503a8fb", "profile_path": null, "id": 57314}], "vote_average": 6.6, "runtime": 83}, "11887": {"poster_path": "/ewZpH2QIfPQ0VIn9lPf7MHbLbl4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90, "overview": "It's almost graduation day for high school seniors Troy, Gabriella, Sharpay, Chad, Ryan and Taylor \u2015 and the thought of heading off in separate directions after leaving East High has these Wildcats thinking they need to do something they'll remember forever. Together with the rest of the Wildcats, they stage a spring musical reflecting their hopes and fears about the future and their unforgettable experiences growing up together. But with graduation approaching and college plans in question, what will become of the dreams, romances, and friendships of East High's senior Wildcats?", "video": false, "id": 11887, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "High School Musical 3: Senior Year", "tagline": "", "vote_count": 147, "homepage": "http://disney.go.com/disneypictures/highschoolmusical3", "belongs_to_collection": {"backdrop_path": "/t1mwGPJi3NkwMeyeUHr9zlQhlTo.jpg", "poster_path": "/dXIgM9sEWIkUfRH8GZUKHv1t5n.jpg", "id": 87253, "name": "High School Musical Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0962726", "adult": false, "backdrop_path": "/pOKpILmjJ4m3ljGFeC3wkWPpZr4.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2008-10-22", "popularity": 0.966340370707992, "original_title": "High School Musical 3: Senior Year", "budget": 11, "cast": [{"name": "Zac Efron", "character": "Troy Bolton", "id": 29222, "credit_id": "52fe449a9251416c7503a9a1", "cast_id": 2, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Gabriella Montez", "id": 67599, "credit_id": "52fe449a9251416c7503a9a5", "cast_id": 3, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "Ashley Tisdale", "character": "Sharpay Evans", "id": 67600, "credit_id": "52fe449a9251416c7503a9a9", "cast_id": 4, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 2}, {"name": "Lucas Grabeel", "character": "Ryan Evans", "id": 67601, "credit_id": "52fe449a9251416c7503a9ad", "cast_id": 5, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 3}, {"name": "Corbin Bleu", "character": "Chad Danforth", "id": 67602, "credit_id": "52fe449a9251416c7503a9cf", "cast_id": 11, "profile_path": "/1fTGgTuAa2EdvVJEj8Vu5PGifAn.jpg", "order": 4}, {"name": "Monique Coleman", "character": "Taylor McKessie", "id": 180279, "credit_id": "544994420e0a26748600258f", "cast_id": 22, "profile_path": "/phGefy73dHXXisjZi0Egb0zUS3h.jpg", "order": 5}, {"name": "Justin Martin", "character": "Donny Dion", "id": 208956, "credit_id": "52fe449a9251416c7503a9d3", "cast_id": 12, "profile_path": "/AnBe95UyEgPvC1xU159PlWy0nrH.jpg", "order": 6}, {"name": "Chris Warren, Jr.", "character": "Zeke Baylor", "id": 77196, "credit_id": "52fe449a9251416c7503a9e5", "cast_id": 16, "profile_path": "/zpNs0erSBOPg1PIpIz2uZz4gWC3.jpg", "order": 7}, {"name": "Olesya Rulin", "character": "Kelsi Nielson", "id": 84952, "credit_id": "52fe449a9251416c7503a9e9", "cast_id": 17, "profile_path": "/oYjaVUqj9hLwJnzjTFxmZ4IaFuw.jpg", "order": 8}, {"name": "Matt Prokop", "character": "Jimmie Zara", "id": 113868, "credit_id": "52fe449a9251416c7503a9dd", "cast_id": 14, "profile_path": "/f4HI0HOOPC86AicOuO2vAkowoGx.jpg", "order": 9}, {"name": "Ryne Sanborn", "character": "Jason Cross", "id": 200823, "credit_id": "52fe449a9251416c7503a9ed", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Kaycee Stroh", "character": "Martha Cox", "id": 964908, "credit_id": "52fe449a9251416c7503a9f1", "cast_id": 19, "profile_path": "/6uQwj864XHucH0HWNVc9CtbpKGK.jpg", "order": 11}, {"name": "Alyson Reed", "character": "Ms. Darbus", "id": 19262, "credit_id": "52fe449b9251416c7503a9f5", "cast_id": 20, "profile_path": "/pXrBmE29Si22qtTsRkLiUyTcIEB.jpg", "order": 12}, {"name": "Jemma McKenzie-Brown", "character": "Tiara Gold", "id": 964823, "credit_id": "52fe449b9251416c7503a9f9", "cast_id": 21, "profile_path": "/kXry6Dul7aHCOcVkECjJAqVXUC1.jpg", "order": 13}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe449a9251416c7503a99d", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 5.8, "runtime": 116}, "7443": {"poster_path": "/z0MafJgUnVyVbczicYMkPKKHkBi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 224834564, "overview": "Having been hopelessly repressed and facing eventual certain death at the British chicken farm where they are held, Rocky the american rooster and Ginger the chicken decide to rebel against the evil Mr. and Mrs. Tweedy, the farm's owners. Rocky and Ginger lead their fellow chickens in a great escape from the murderous farmers and their farm of doom.", "video": false, "id": 7443, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Chicken Run", "tagline": "This ain't no chick flick. It's poultry in motion.", "vote_count": 283, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120630", "adult": false, "backdrop_path": "/oQ3xpOJhawe73ro7q6yKYDicZUM.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Aardman Animations", "id": 297}, {"name": "Path\u00e9", "id": 7981}], "release_date": "2000-06-30", "popularity": 1.32833474841413, "original_title": "Chicken Run", "budget": 45000000, "cast": [{"name": "Mel Gibson", "character": "Rocky", "id": 2461, "credit_id": "52fe447cc3a36847f80990cd", "cast_id": 3, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Miranda Richardson", "character": "Mrs. Tweedy", "id": 8436, "credit_id": "52fe447cc3a36847f80990d1", "cast_id": 5, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 1}, {"name": "Timothy Spall", "character": "Nick", "id": 9191, "credit_id": "52fe447cc3a36847f80990d5", "cast_id": 7, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 2}, {"name": "Imelda Staunton", "character": "Bunty", "id": 11356, "credit_id": "52fe447cc3a36847f80990d9", "cast_id": 8, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 3}, {"name": "Jane Horrocks", "character": "Babs", "id": 34902, "credit_id": "52fe447dc3a36847f8099113", "cast_id": 18, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 4}, {"name": "Phil Daniels", "character": "Fetcher", "id": 65301, "credit_id": "52fe447dc3a36847f8099123", "cast_id": 21, "profile_path": "/gXEx7NsCBtmrqCrVWHlNP0xQJsY.jpg", "order": 5}, {"name": "Lynn Ferguson", "character": "Mac", "id": 1074137, "credit_id": "52fe447dc3a36847f8099127", "cast_id": 22, "profile_path": "/ppipSgVJC8ksCGRsLr63ORmODtB.jpg", "order": 6}, {"name": "Tony Haygarth", "character": "Mr. Tweedy", "id": 20241, "credit_id": "52fe447dc3a36847f809912b", "cast_id": 23, "profile_path": "/4CGR3JgdJCndVQ9vhH4rQhudczG.jpg", "order": 7}, {"name": "Julia Sawalha", "character": "Ginger", "id": 53328, "credit_id": "52fe447dc3a36847f809912f", "cast_id": 24, "profile_path": "/jGFKZh1H3zH90509JVN08WiTZYo.jpg", "order": 8}, {"name": "Benjamin Whitrow", "character": "Fowler", "id": 84927, "credit_id": "52fe447dc3a36847f8099133", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "John Sharian", "character": "Circus Man", "id": 36900, "credit_id": "52fe447dc3a36847f8099137", "cast_id": 26, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 10}, {"name": "Jo Allen", "character": "Additional Chicken", "id": 226586, "credit_id": "52fe447dc3a36847f809913b", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Lisa Kay", "character": "Additional Chicken", "id": 933684, "credit_id": "52fe447dc3a36847f809913f", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Laura Strachan", "character": "Additional Chicken", "id": 1074138, "credit_id": "52fe447dc3a36847f8099143", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Peter Lord", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f80990c3", "profile_path": "/fBaZLXX3rBwhSXvtplQEtvW7VS3.jpg", "id": 53304}, {"name": "Nick Park", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f80990c9", "profile_path": "/6s2bAwOLnxLV9YDdzewLsvykkva.jpg", "id": 7314}], "vote_average": 6.1, "runtime": 84}, "11892": {"poster_path": "/zL2aUMe2haBikOZSxmndSDD4qi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56714147, "overview": "Tenacious homicide detective Cassie Mayweather and her still-green partner are working a murder case, attempting to profile two malevolently brilliant young men: cold, calculating killers whose dark secrets might explain their crimes.", "video": false, "id": 11892, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Murder by Numbers", "tagline": "The only flaw in their plan was her.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264935", "adult": false, "backdrop_path": "/5UuGA4jtgpX8Qv2nNyxL5VL4I5O.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Schroeder Hoffman Productions", "id": 23382}], "release_date": "2002-04-19", "popularity": 0.516220408710352, "original_title": "Murder by Numbers", "budget": 50000000, "cast": [{"name": "Sandra Bullock", "character": "Cassie Mayweather", "id": 18277, "credit_id": "52fe449b9251416c7503abb1", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Ben Chaplin", "character": "Sam Kennedy", "id": 21343, "credit_id": "52fe449b9251416c7503abb5", "cast_id": 2, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 1}, {"name": "Ryan Gosling", "character": "Richard Haywood", "id": 30614, "credit_id": "52fe449b9251416c7503abb9", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 2}, {"name": "Michael Pitt", "character": "Justin Pendleton", "id": 10692, "credit_id": "52fe449b9251416c7503abbd", "cast_id": 4, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 3}, {"name": "Agnes Bruckner", "character": "Lisa Mills", "id": 51536, "credit_id": "52fe449b9251416c7503abe5", "cast_id": 11, "profile_path": "/jDrPSJne4BHWcCa3U8Y4uhoNUC6.jpg", "order": 4}, {"name": "Chris Penn", "character": "Ray Feathers", "id": 2969, "credit_id": "52fe449b9251416c7503abe9", "cast_id": 12, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 5}, {"name": "R. D. Call", "character": "Captain Rod Cody", "id": 49832, "credit_id": "5373b2eac3a368150200166f", "cast_id": 13, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 6}, {"name": "Tom Verica", "character": "Asst. D.A. Al Swanson", "id": 155423, "credit_id": "5373b2fdc3a3681502001672", "cast_id": 14, "profile_path": "/eyOTcWS4vAbciBRbOoZcmkw2TRH.jpg", "order": 7}, {"name": "Janni Brenn", "character": "Ms. Elder", "id": 77014, "credit_id": "5373b311c3a368150f001651", "cast_id": 15, "profile_path": "/td13vv2EHu3yPcVZWVExT4FwE0k.jpg", "order": 8}, {"name": "John Vickery", "character": "Restaurant Manager", "id": 1212284, "credit_id": "5373b32ac3a3681509001746", "cast_id": 16, "profile_path": "/1g2bk9zL1nu9bo3HLz9dGV1zL90.jpg", "order": 9}, {"name": "Michael Canavan", "character": "Mr. Chechi", "id": 180078, "credit_id": "5373b341c3a368153900169d", "cast_id": 17, "profile_path": "/dTuVqsWwbDbi1Y8FHJsu6fzI9N4.jpg", "order": 10}, {"name": "Krista Carpenter", "character": "Olivia Lake, the Victim", "id": 1319508, "credit_id": "5373b355c3a3681528001661", "cast_id": 18, "profile_path": "/h0PbBnPTIod9OIOvOtg6AJ4qjS8.jpg", "order": 11}, {"name": "Neal Matarazzo", "character": "Male Officer in Flashback", "id": 155456, "credit_id": "5373b368c3a3681518001791", "cast_id": 19, "profile_path": "/e6T4OfKS3iTLQ6T05v6fhQmrQrR.jpg", "order": 12}, {"name": "Adilah Barnes", "character": "Lab Technician", "id": 154114, "credit_id": "5373b37bc3a368150f001657", "cast_id": 20, "profile_path": "/uwBDR07eJU1aanOKV9fXgv6Pu6O.jpg", "order": 13}, {"name": "Jim Jansen", "character": "Lawyer", "id": 155031, "credit_id": "5373b38fc3a368150900174a", "cast_id": 21, "profile_path": "/suelpHbVmIFV15gW8C3Td45UG02.jpg", "order": 14}], "directors": [{"name": "Barbet Schroeder", "department": "Directing", "job": "Director", "credit_id": "52fe449b9251416c7503abc3", "profile_path": "/zgsgO9eVfSi9BOXbjvjyVsWAE5J.jpg", "id": 23393}], "vote_average": 6.1, "runtime": 120}, "617": {"poster_path": "/dI9iYo1cL81yzJkBVyNGipjSvy0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67200000, "overview": "When teen-socialite Kelly Van Ryan (Richards) and troubled bad girl Suzie Toller (Campbell) accuse guidance counselor Sam Lombardo (Dillon) of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop (Bacon) suspects conspiracy, but nothing is what it seems...", "video": false, "id": 617, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Wild Things", "tagline": "They're dying to play with you.", "vote_count": 94, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uE47SwTt7uHyVwpMzcCQ92Q7FsQ.jpg", "poster_path": "/1sM0cvLaVPHAoAHvC3QERk6g4mB.jpg", "id": 33059, "name": "Wild Things Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120890", "adult": false, "backdrop_path": "/z4Ky75Wjt7to5xfk1mgc7DfQEgr.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Mandalay Entertainment", "id": 1236}], "release_date": "1998-03-20", "popularity": 1.37781667985602, "original_title": "Wild Things", "budget": 20000000, "cast": [{"name": "Matt Dillon", "character": "Sam Lombardo", "id": 2876, "credit_id": "52fe425ec3a36847f8018f55", "cast_id": 9, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 0}, {"name": "Kevin Bacon", "character": "Sergeant Ray Duquette", "id": 4724, "credit_id": "52fe425ec3a36847f8018f59", "cast_id": 10, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 1}, {"name": "Denise Richards", "character": "Kelly Lanier Van Ryan", "id": 9205, "credit_id": "52fe425ec3a36847f8018f5d", "cast_id": 11, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 2}, {"name": "Neve Campbell", "character": "Suzie Marie Toller", "id": 9206, "credit_id": "52fe425ec3a36847f8018f61", "cast_id": 12, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 3}, {"name": "Theresa Russell", "character": "Sandra Van Ryan", "id": 9207, "credit_id": "52fe425ec3a36847f8018f65", "cast_id": 13, "profile_path": "/vn2h90MB16yyRKslCBlPd2MEltG.jpg", "order": 4}, {"name": "Bill Murray", "character": "Kenneth Bowden", "id": 1532, "credit_id": "52fe425ec3a36847f8018f69", "cast_id": 14, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 5}, {"name": "Robert Wagner", "character": "Tom Baxter", "id": 9208, "credit_id": "52fe425ec3a36847f8018f6d", "cast_id": 15, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 6}, {"name": "Daphne Rubin-Vega", "character": "Detective Gloria Perez", "id": 9209, "credit_id": "52fe425ec3a36847f8018f71", "cast_id": 16, "profile_path": "/hvL230sw44ILv5hHLbergot8OVm.jpg", "order": 7}, {"name": "Jeff Perry", "character": "District Attorney Bryce Hunter", "id": 9210, "credit_id": "52fe425ec3a36847f8018f75", "cast_id": 17, "profile_path": "/pFWjDrYvLQaBgoOFJA0UzZqfwZx.jpg", "order": 8}, {"name": "Eduardo Y\u00e1\u00f1ez", "character": "Frankie Condo", "id": 9211, "credit_id": "52fe425ec3a36847f8018f79", "cast_id": 18, "profile_path": "/lapi1fkl8oPZ7TNbQ5wp1bbTblx.jpg", "order": 9}, {"name": "Jennifer Taylor", "character": "Barbara Baxter", "id": 9212, "credit_id": "52fe425ec3a36847f8018f7d", "cast_id": 19, "profile_path": "/4Vmgzln48vwgNtOp46DazEpCUHM.jpg", "order": 10}, {"name": "Cory Pendergast", "character": "Jimmy Leach", "id": 953997, "credit_id": "52fe425ec3a36847f8018f81", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Marc Macaulay", "character": "Walter", "id": 6908, "credit_id": "52fe425ec3a36847f8018f85", "cast_id": 21, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 12}, {"name": "Toi Svane Stepp", "character": "Nicole", "id": 945237, "credit_id": "52fe425ec3a36847f8018f89", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Dennis Neal", "character": "Art Maddox", "id": 93679, "credit_id": "52fe425ec3a36847f8018f8d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Diane Adams", "character": "School Secretary", "id": 210794, "credit_id": "52fe425ec3a36847f8018f91", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Paulo Benedeti", "character": "Kirk", "id": 1089404, "credit_id": "52fe425ec3a36847f8018f95", "cast_id": 25, "profile_path": "/x6xUsOXPumjQ6MkCgOeLIpMhCKg.jpg", "order": 16}, {"name": "Victoria Bass", "character": "Judge", "id": 160330, "credit_id": "52fe425ec3a36847f8018f99", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Ted Bartsch", "character": "Bailiff", "id": 191003, "credit_id": "52fe425ec3a36847f8018f9d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Leonor Anthony", "character": "Ken's Secretary", "id": 178678, "credit_id": "52fe425ec3a36847f8018fa1", "cast_id": 28, "profile_path": "/dpKopGrl4mD87QxiaQgbqzgZZfa.jpg", "order": 19}, {"name": "Antoni Corone", "character": "Police Chief", "id": 20562, "credit_id": "52fe425ec3a36847f8018fa5", "cast_id": 29, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 20}, {"name": "Robert Deacon", "character": "Prisoner", "id": 135571, "credit_id": "52fe425ec3a36847f8018fa9", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Anthony Giaimo", "character": "Dave", "id": 176740, "credit_id": "52fe425ec3a36847f8018fad", "cast_id": 31, "profile_path": "/eQ02gEk9m5GyTMW1oigAzJL7YSg.jpg", "order": 22}, {"name": "Manny Suarez", "character": "Georgie", "id": 943990, "credit_id": "52fe425ec3a36847f8018fb1", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Janet Bushor", "character": "Barmaid", "id": 185608, "credit_id": "52fe425ec3a36847f8018fb5", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Gina LaMarca", "character": "Hooker", "id": 553009, "credit_id": "52fe425ec3a36847f8018fb9", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Nancy Duerr", "character": "Reporter #1", "id": 163219, "credit_id": "52fe425ec3a36847f8018fbd", "cast_id": 35, "profile_path": "/9giCY95pLNVmlS7ngtEuX2ziI6.jpg", "order": 26}, {"name": "Margo Peace", "character": "Reporter #2", "id": 1089405, "credit_id": "52fe425ec3a36847f8018fc1", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Keith Wilson", "character": "Reporter #3", "id": 153670, "credit_id": "52fe425ec3a36847f8018fdf", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Nelson Oramas", "character": "Policeman #1", "id": 1089406, "credit_id": "52fe425ec3a36847f8018fc5", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Michael Dean Walker", "character": "Policeman #2", "id": 1089407, "credit_id": "52fe425ec3a36847f8018fc9", "cast_id": 39, "profile_path": null, "order": 30}, {"name": "Jesse Muson", "character": "Policeman #3", "id": 1089408, "credit_id": "52fe425ec3a36847f8018fcd", "cast_id": 40, "profile_path": null, "order": 31}, {"name": "Kimberly Lamaze", "character": "Policewoman #1", "id": 1089409, "credit_id": "52fe425ec3a36847f8018fd1", "cast_id": 41, "profile_path": null, "order": 32}, {"name": "Rebecca White", "character": "Policewoman #2", "id": 1089410, "credit_id": "52fe425ec3a36847f8018fd5", "cast_id": 42, "profile_path": null, "order": 33}], "directors": [{"name": "John McNaughton", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f8018f27", "profile_path": "/yiCFEVjVIr4TV25Wb3IqWjE9WdF.jpg", "id": 9200}], "vote_average": 6.1, "runtime": 108}, "11901": {"poster_path": "/557vwDdOIQ07Q1QvTwHVmxHJpXU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.", "video": false, "id": 11901, "genres": [{"id": 37, "name": "Western"}], "title": "High Plains Drifter", "tagline": "Welcome to Hell", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0068699", "adult": false, "backdrop_path": "/jiPcamHlH8YUUM8lMUWMhXSr6U.jpg", "production_companies": [{"name": "Malpaso Productions", "id": 171}, {"name": "Universal Pictures", "id": 33}], "release_date": "1973-04-19", "popularity": 0.707432963492366, "original_title": "High Plains Drifter", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "The Stranger", "id": 190, "credit_id": "52fe449d9251416c7503b07b", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Verna Bloom", "character": "Sarah Belding", "id": 55192, "credit_id": "52fe449d9251416c7503b07f", "cast_id": 2, "profile_path": "/nNQMSCdsTE2sA3FzMOshdYr5RU5.jpg", "order": 1}, {"name": "Marianna Hill", "character": "Callie Travers", "id": 15659, "credit_id": "52fe449d9251416c7503b083", "cast_id": 3, "profile_path": "/h3X58tFp2a7Tgt7gNW2sbM6N2EH.jpg", "order": 2}, {"name": "Mitchell Ryan", "character": "Dave Drake", "id": 14312, "credit_id": "52fe449d9251416c7503b087", "cast_id": 4, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 3}, {"name": "Jack Ging", "character": "Morgan Allen", "id": 95597, "credit_id": "52fe449d9251416c7503b0bb", "cast_id": 14, "profile_path": "/4RXCV7cDIKaObgUX6VgZrdH4H5J.jpg", "order": 4}, {"name": "Stefan Gierasch", "character": "Mayor Jason Hobart", "id": 52463, "credit_id": "52fe449e9251416c7503b0bf", "cast_id": 15, "profile_path": "/y4w2yNJYdAcaKddQyCYm4qtmLqO.jpg", "order": 5}, {"name": "Ted Hartley", "character": "Lewis Belding", "id": 59641, "credit_id": "52fe449e9251416c7503b0c3", "cast_id": 16, "profile_path": "/yPoiIkLRLBC6OJcF9RGlxrn9kYX.jpg", "order": 6}, {"name": "Billy Curtis", "character": "Mordecai", "id": 102426, "credit_id": "52fe449e9251416c7503b0c7", "cast_id": 17, "profile_path": "/dlvmolruFp5cq7ARO19WMKHFmbD.jpg", "order": 7}, {"name": "Geoffrey Lewis", "character": "Stacey Bridges", "id": 18071, "credit_id": "52fe449e9251416c7503b0cb", "cast_id": 18, "profile_path": "/w6uRlwTKRpXELfVwKHC9yWEDqxy.jpg", "order": 8}, {"name": "Scott Walker", "character": "Bill Borders", "id": 199813, "credit_id": "52fe449e9251416c7503b0cf", "cast_id": 19, "profile_path": "/1K78PuIApUuQbtLPsQIEZGnZLmI.jpg", "order": 9}, {"name": "Walter Barnes", "character": "Sheriff Sam Shaw", "id": 33544, "credit_id": "52fe449e9251416c7503b0d3", "cast_id": 20, "profile_path": "/m7OtPTdxtRSRFJeAYnBSTFjINgX.jpg", "order": 10}, {"name": "Paul Brinegar", "character": "Lutie Naylor", "id": 106611, "credit_id": "52fe449e9251416c7503b0d7", "cast_id": 21, "profile_path": "/8YOaYazXeGZLRNcYcson7vym4Tr.jpg", "order": 11}, {"name": "Richard Bull", "character": "Asa Goodwin", "id": 31210, "credit_id": "52fe449e9251416c7503b0db", "cast_id": 22, "profile_path": "/5TYupEMDpS4UL1lLaYO5ynNB1vF.jpg", "order": 12}, {"name": "Robert Donner", "character": "Preacher", "id": 13875, "credit_id": "52fe449e9251416c7503b0df", "cast_id": 23, "profile_path": "/6GXjsXEC5a0BoFwq1pad5OqJ5M9.jpg", "order": 13}, {"name": "John Hillerman", "character": "Bootmaker", "id": 12296, "credit_id": "52fe449e9251416c7503b0e3", "cast_id": 24, "profile_path": "/93n8VRJIlZivnNES3W1utuWfvkp.jpg", "order": 14}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe449d9251416c7503b08d", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.0, "runtime": 105}, "11906": {"poster_path": "/pJXSuO6pPXVF2umZeU1JcnOlKIC.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "A candy-colored nightmare from Italian terror maestro Dario Argento, Suspiria weaves a menacing tale of witchcraft as a fairy tale gone horribly awry. From the moment she arrives in Freiberg, Germany, to attend the prestigious Tans Academy, American ballet-dancer Suzy Bannion (Jessica Harper) senses that something horribly evil lurks within the walls of the age-old institution.", "video": false, "id": 11906, "genres": [{"id": 27, "name": "Horror"}, {"id": 10769, "name": "Foreign"}], "title": "Suspiria", "tagline": "The Most Frightening Film You'll Ever See!", "vote_count": 51, "homepage": "http://www.imdb.com/title/tt0076786/", "belongs_to_collection": {"backdrop_path": "/8xCFLABKIDU90t9DAN3JdNAuX4D.jpg", "poster_path": "/8T1ukxvmMBOwnOVg0wm7MMBRBpl.jpg", "id": 127280, "name": "The Three Mothers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0076786", "adult": false, "backdrop_path": "/fIdGH6HpsEOuxkRaRFc1KR5BH5D.jpg", "production_companies": [{"name": "Seda Spettacoli", "id": 3570}], "release_date": "1977-02-01", "popularity": 0.424742910091769, "original_title": "Suspiria", "budget": 0, "cast": [{"name": "Jessica Harper", "character": "Suzy Bannion", "id": 69055, "credit_id": "52fe449e9251416c7503b2c1", "cast_id": 1, "profile_path": "/4W74yGyRKJJfMolXwCOlR4kUBBs.jpg", "order": 0}, {"name": "Stefania Casini", "character": "Sara", "id": 34043, "credit_id": "52fe449e9251416c7503b2c5", "cast_id": 2, "profile_path": "/kA72p0sjZdv84dLukMNRfyEeHEW.jpg", "order": 1}, {"name": "Flavio Bucci", "character": "Daniel", "id": 24608, "credit_id": "52fe449e9251416c7503b2c9", "cast_id": 3, "profile_path": "/k1hXgU1vLglwv0Bfyb1LlXSx5sR.jpg", "order": 2}, {"name": "Miguel Bos\u00e9", "character": "Mark", "id": 54153, "credit_id": "52fe449e9251416c7503b2cd", "cast_id": 4, "profile_path": "/4XmLeZCy45WPdebUA74fZObC8Cg.jpg", "order": 3}, {"name": "Barbara Magnolfi", "character": "Olga", "id": 94072, "credit_id": "52fe449f9251416c7503b31f", "cast_id": 18, "profile_path": "/eI7rr8FiZZSPwmG7pdAB5NOKGzg.jpg", "order": 4}, {"name": "Susanna Javicoli", "character": "Sonia", "id": 78543, "credit_id": "52fe449f9251416c7503b323", "cast_id": 19, "profile_path": "/jWsrTmjFp0LiaDL5b0HF6xjieyQ.jpg", "order": 5}, {"name": "Eva Ax\u00e9n", "character": "Pat Hingle", "id": 94073, "credit_id": "52fe449f9251416c7503b327", "cast_id": 20, "profile_path": "/eQZnNmugEcTODxD0tVh161e3DD0.jpg", "order": 6}, {"name": "Rudolf Sch\u00fcndler", "character": "Prof. Milius", "id": 26600, "credit_id": "52fe449f9251416c7503b32b", "cast_id": 21, "profile_path": "/8R3yeMw89PbstuKw10U2f47sVqi.jpg", "order": 7}, {"name": "Udo Kier", "character": "Dr. Frank Mandel", "id": 1646, "credit_id": "52fe449f9251416c7503b32f", "cast_id": 22, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 8}, {"name": "Alida Valli", "character": "Miss Tanner", "id": 15385, "credit_id": "52fe449f9251416c7503b333", "cast_id": 23, "profile_path": "/jrLlDz7G1oEw8mQri4T2jjDWXep.jpg", "order": 9}, {"name": "Joan Bennett", "character": "Madame Blanc", "id": 7639, "credit_id": "52fe449f9251416c7503b337", "cast_id": 24, "profile_path": "/m0PjOKHvN00VVBzQpsAIYzoWvjx.jpg", "order": 10}, {"name": "Fulvio Mingozzi", "character": "Taxi Driver", "id": 98774, "credit_id": "52fe449f9251416c7503b33b", "cast_id": 25, "profile_path": "/mxirX6YqWkoVPB6bRq7sMzrLIIP.jpg", "order": 11}, {"name": "Renato Scarpa", "character": "Prof. Verdegast", "id": 14149, "credit_id": "52fe449f9251416c7503b33f", "cast_id": 26, "profile_path": "/4jANi4vGdTqFG7a5OjtbM9ikwOe.jpg", "order": 12}, {"name": "Daria Nicolodi", "character": "Woman at airport (uncredited)", "id": 44959, "credit_id": "52fe449f9251416c7503b343", "cast_id": 27, "profile_path": "/r5KCkyvnS4l3JsMyImw3oPCeCs7.jpg", "order": 13}], "directors": [{"name": "Dario Argento", "department": "Directing", "job": "Director", "credit_id": "52fe449e9251416c7503b2d3", "profile_path": "/fsNU25aK2CFQdjbubmSR9ffNbnS.jpg", "id": 4955}], "vote_average": 7.6, "runtime": 98}, "619": {"poster_path": "/cbUiIu4357JQ4FBCtRJovHNv1gi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 410000000, "overview": "A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first, the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long, all that tension sparks fireworks of another sort, and the love-averse tough guy is torn between duty and romance.", "video": false, "id": 619, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Bodyguard", "tagline": "Never let her out of your sight. Never let your guard down. Never fall in love.", "vote_count": 143, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103855", "adult": false, "backdrop_path": "/9u0BWsv2Hz4dI3reXRNWCOdps6r.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Kasdan Pictures", "id": 13040}, {"name": "Tig Productions", "id": 335}], "release_date": "1992-11-25", "popularity": 0.762051103494302, "original_title": "The Bodyguard", "budget": 25000000, "cast": [{"name": "Whitney Houston", "character": "Rachel Marron", "id": 8851, "credit_id": "52fe425fc3a36847f801916d", "cast_id": 17, "profile_path": "/69ouDnXnmklYPr4sMJXWKYz81AL.jpg", "order": 0}, {"name": "Kevin Costner", "character": "Frank Farmer", "id": 1269, "credit_id": "52fe425fc3a36847f8019171", "cast_id": 18, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 1}, {"name": "Michele Lamar Richards", "character": "Nicki Marron", "id": 8852, "credit_id": "52fe425fc3a36847f8019175", "cast_id": 19, "profile_path": null, "order": 2}, {"name": "Ralph Waite", "character": "Herb Farmer", "id": 8853, "credit_id": "52fe425fc3a36847f8019179", "cast_id": 20, "profile_path": "/6djAThCrJarxjKC3AmBJpKsMBLK.jpg", "order": 3}, {"name": "Gary Kemp", "character": "Sy Spector", "id": 7042, "credit_id": "52fe425fc3a36847f801917d", "cast_id": 21, "profile_path": "/d2hRu5pzpQTYObvxac9YNnaDvSN.jpg", "order": 4}, {"name": "Bill Cobbs", "character": "Bill Devaney", "id": 8854, "credit_id": "52fe425fc3a36847f8019181", "cast_id": 22, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 5}, {"name": "Tomas Arana", "character": "Greg Portman", "id": 941, "credit_id": "52fe425fc3a36847f8019185", "cast_id": 23, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 6}, {"name": "Mike Starr", "character": "Tony Scipelli", "id": 5170, "credit_id": "52fe425fc3a36847f8019189", "cast_id": 24, "profile_path": "/qzoXxFJlhcos4kAPJmqMpdw0Tin.jpg", "order": 7}, {"name": "Christopher Birt", "character": "Henry", "id": 8855, "credit_id": "52fe425fc3a36847f801918d", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "DeVaughn Nixon", "character": "Fletcher Marron", "id": 8856, "credit_id": "52fe425fc3a36847f8019191", "cast_id": 26, "profile_path": "/ppVsm9acOq0tIReLUV9wQUnilEp.jpg", "order": 9}, {"name": "Debbie Reynolds", "character": "Herself", "id": 8857, "credit_id": "52fe425fc3a36847f8019195", "cast_id": 27, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 10}, {"name": "Gerry Bamman", "character": "Ray Court", "id": 11517, "credit_id": "53a5979dc3a3687a34001466", "cast_id": 29, "profile_path": "/ybNlqyoXcAQ5pKz6fFD7Ff7LKcz.jpg", "order": 11}, {"name": "Joe Urla", "character": "Minella", "id": 151433, "credit_id": "53a597cbc3a3687a430013b7", "cast_id": 30, "profile_path": "/92uDSmkBkgcVXDO8DBr3iInd62H.jpg", "order": 12}, {"name": "Charles Keating", "character": "Klingman", "id": 13937, "credit_id": "53a59809c3a3687a31001486", "cast_id": 31, "profile_path": "/c2vPVQidD2pf77iiTwgDcIGGQaP.jpg", "order": 13}, {"name": "Robert Wuhl", "character": "Oscar Host", "id": 4040, "credit_id": "53a59839c3a3687a2e0013d4", "cast_id": 32, "profile_path": "/ibDgbYtVwOwTuClvFclLybMk24T.jpg", "order": 14}, {"name": "Danny Kamin", "character": "Thuringer", "id": 1235705, "credit_id": "53a59892c3a3687a2b00146a", "cast_id": 33, "profile_path": null, "order": 15}, {"name": "Richard Schiff", "character": "Skip Thomas", "id": 31028, "credit_id": "53a599d40e0a26143f001535", "cast_id": 34, "profile_path": "/gHFxL7MIGvmcbg5hhTNrbjIttQN.jpg", "order": 16}, {"name": "Nathaniel Parker", "character": "Clive Healy", "id": 27631, "credit_id": "53a59a5f0e0a2614320015b4", "cast_id": 35, "profile_path": "/w5SnRNxxY00lIDPB1SUh47nx46n.jpg", "order": 17}, {"name": "Bert Remsen", "character": "Rotary Club President", "id": 30621, "credit_id": "53a59ab30e0a261449001535", "cast_id": 36, "profile_path": "/kLddDLz6g3vBaTnmPD0yzPj04Bo.jpg", "order": 18}, {"name": "Stephen Shellen", "character": "Tom Winston", "id": 4156, "credit_id": "53a59b070e0a2614360014d9", "cast_id": 37, "profile_path": "/2noNmjpB9gKpKTUjRpM9uQX8qln.jpg", "order": 19}], "directors": [{"name": "Mick Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe425ec3a36847f801910f", "profile_path": "/vB2oia3vFL0kaq8re4VgWB1Huig.jpg", "id": 8843}], "vote_average": 6.1, "runtime": 129}, "192132": {"poster_path": "/sxCWcQMuj3hZgMXykAB7XNArlBo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Palo Alto weaves together three stories of teenage lust, boredom, and self-destruction: shy, sensitive April (Emma Roberts), torn between an illicit flirtation with her soccer coach (James Franco) and an unrequited crush on sweet stoner Teddy (Jack Kilmer); Emily (Zoe Levin), who offers sexual favors to any boy to cross her path; and the increasingly dangerous exploits of Teddy and his best friend Fred (Nat Wolff), whose behavior may or may not be sociopathic.", "video": false, "id": 192132, "genres": [{"id": 18, "name": "Drama"}], "title": "Palo Alto", "tagline": "", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2479800", "adult": false, "backdrop_path": "/865aQ3k9zc0JVyPy975So53OBjF.jpg", "production_companies": [{"name": "Tribeca Film", "id": 20670}], "release_date": "2013-08-29", "popularity": 0.517203547502223, "original_title": "Palo Alto", "budget": 0, "cast": [{"name": "Emma Roberts", "character": "April", "id": 34847, "credit_id": "52fe4c9c9251416c910fa6c1", "cast_id": 4, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "James Franco", "character": "Mr. B", "id": 17051, "credit_id": "52fe4c9c9251416c910fa6c5", "cast_id": 5, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Stewart", "id": 5576, "credit_id": "52fe4c9c9251416c910fa6c9", "cast_id": 6, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Colleen Camp", "character": "Sally", "id": 13023, "credit_id": "52fe4c9c9251416c910fa6d9", "cast_id": 10, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 3}, {"name": "Jack Kilmer", "character": "Teddy", "id": 1193604, "credit_id": "52fe4c9c9251416c910fa6cd", "cast_id": 7, "profile_path": "/7RouDfCnRRU6gTramiFbmYg1dDn.jpg", "order": 4}, {"name": "Keegan Allen", "character": "Archie", "id": 1193605, "credit_id": "52fe4c9c9251416c910fa6d1", "cast_id": 8, "profile_path": "/osTSMTonidy8vxn3oNs8rSOu3Ir.jpg", "order": 5}, {"name": "Nat Wolff", "character": "Fred", "id": 232006, "credit_id": "52fe4c9c9251416c910fa6d5", "cast_id": 9, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 6}, {"name": "Olivia Crocicchia", "character": "Chrissy", "id": 172056, "credit_id": "52fe4c9c9251416c910fa6dd", "cast_id": 11, "profile_path": "/pRO0gxG1a9Pd5d7VuaX7GPo8g1m.jpg", "order": 7}, {"name": "Christian Madsen", "character": "Anthony", "id": 1193606, "credit_id": "52fe4c9c9251416c910fa6e1", "cast_id": 12, "profile_path": "/cXtUHc8sZdmh0jmueue82PIMsHh.jpg", "order": 8}, {"name": "Zoe Levin", "character": "Emily", "id": 1190917, "credit_id": "52fe4c9c9251416c910fa6e5", "cast_id": 13, "profile_path": "/uhJnIakHRrW30r1H8ljVUiTWR4E.jpg", "order": 9}, {"name": "Don Novello", "character": "Mr. Wilson", "id": 161860, "credit_id": "52fe4c9c9251416c910fa6e9", "cast_id": 14, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 10}, {"name": "Talia Shire", "character": "Mrs. Ganem", "id": 3094, "credit_id": "53e3fd49c3a36848530027b5", "cast_id": 15, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 11}, {"name": "Claudia Levy", "character": "Shauna", "id": 1392020, "credit_id": "547c0b00c3a3685af30019f3", "cast_id": 23, "profile_path": "/ygLpWFR0d7GeHVqLkSUumr1PlLD.jpg", "order": 12}, {"name": "Jacqui Getty", "character": "Jane", "id": 1392033, "credit_id": "547c0e35c3a368125a000fe8", "cast_id": 24, "profile_path": "/vgrv4GnPbSXVYYPSCrrdpbHzCVM.jpg", "order": 13}, {"name": "Andrew Lutheran", "character": "Ivan", "id": 1392034, "credit_id": "547c0f309251412d7f001ffa", "cast_id": 25, "profile_path": "/9uyXVCmGtScXKjE2gEKUWBoTmbz.jpg", "order": 14}, {"name": "Bo Mitchell", "character": "Jack O", "id": 1241339, "credit_id": "547c11419251412d70002183", "cast_id": 26, "profile_path": "/wQwVgW8hxO2JKECkb5F9cjURmLX.jpg", "order": 15}, {"name": "Bailey Coppola", "character": "Seth", "id": 1392056, "credit_id": "547c1337c3a3685af00022c8", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Brennen Taylor", "character": "Luke", "id": 1392071, "credit_id": "547c15f79251412d7c002131", "cast_id": 28, "profile_path": "/uP1NEIv14vspyznCy7TYTFHKznC.jpg", "order": 17}, {"name": "Atlanta Decadenet", "character": "Girl at Party", "id": 1392072, "credit_id": "547c1799c3a368125a001135", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Anna Thea Bogdanovich", "character": "Sally's Friend", "id": 1392073, "credit_id": "547c193692514123ef00044a", "cast_id": 30, "profile_path": "/tN6ZMRuBpsEIqrkcGNys0FrArqW.jpg", "order": 19}, {"name": "Micah Nelson", "character": "Michael", "id": 1022168, "credit_id": "547c1b9e9251412d7f0021ac", "cast_id": 31, "profile_path": "/h3c8motZAYbVgciH7SbRtNldFPl.jpg", "order": 20}, {"name": "Timothy Starks", "character": "Police Officer", "id": 1392074, "credit_id": "547c1ceec3a3685b050023c4", "cast_id": 32, "profile_path": "/5KcnMRbSRoLwoKkSOFZoGXS6b2v.jpg", "order": 21}, {"name": "Emma Gretzky", "character": "Emma", "id": 1392076, "credit_id": "547c1f529251412d7f002225", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Janet Jones", "character": "Sherry", "id": 19257, "credit_id": "547c223a92514123ef00056b", "cast_id": 34, "profile_path": "/vtSxLHwrv0GHWFoVuVePrluMOXM.jpg", "order": 23}, {"name": "Genevieve Penn", "character": "Court Clerk Woman", "id": 1392079, "credit_id": "547c2291c3a3685af0002522", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Jesse Jo Stark", "character": "Pam", "id": 1392080, "credit_id": "547c22db9251412d78002030", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Jake Nordwin", "character": "Art Student #1", "id": 1392082, "credit_id": "547c231dc3a3685af000253a", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "Jamal Hammadi", "character": "Art Student #2", "id": 1392087, "credit_id": "547c250b9251412d7000244c", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Marshall Bell", "character": "Jake", "id": 3041, "credit_id": "547c25b09251412d7f0022ec", "cast_id": 39, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 28}, {"name": "Laney Fichera", "character": "Judy", "id": 1392096, "credit_id": "547c2651c3a3685af000259e", "cast_id": 40, "profile_path": "/hN5rqQp7qIpQU750qeMxbRrjGEh.jpg", "order": 29}, {"name": "Greta Seacat", "character": "Janice", "id": 1193629, "credit_id": "547c35d192514123ef0007a2", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Chris Messina", "character": "Mitch", "id": 61659, "credit_id": "547c36dfc3a3685af00027a3", "cast_id": 42, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 31}, {"name": "Nathalie Love", "character": "Joy", "id": 1392122, "credit_id": "547c37679251412d7f0024c3", "cast_id": 43, "profile_path": "/8PcM8xE8bSpfQkoNBhVPjPlOX1Z.jpg", "order": 32}, {"name": "Sandra Seacat", "character": "Tanya", "id": 110877, "credit_id": "547c3b30c3a3685af000281d", "cast_id": 44, "profile_path": "/u1c21S63Gqt0YtDKyfctzPIvS3E.jpg", "order": 33}, {"name": "Jessica Elle Taylor", "character": "Brittney", "id": 1392124, "credit_id": "547c3bbfc3a3685af90020b4", "cast_id": 45, "profile_path": null, "order": 34}, {"name": "Janet Song", "character": "Mrs. Stevenson", "id": 1392128, "credit_id": "547c3c4b9251412d6d00249d", "cast_id": 46, "profile_path": "/5Hvq7tgsDfuqMoJCFWiaTE3D2jG.jpg", "order": 35}, {"name": "Janet Salter", "character": "Elderly Woman", "id": 1392135, "credit_id": "547c3d7e9251412d7c0025d2", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Margaret Qualley", "character": "Raquel", "id": 1392137, "credit_id": "547c3e3e9251412d7c0025f2", "cast_id": 48, "profile_path": "/a4lPJF6uekt6CvaQhMlXMYaYqVv.jpg", "order": 37}, {"name": "Amelia Burstyn", "character": "Mary", "id": 1392144, "credit_id": "547c3fb7c3a3685aed0029d3", "cast_id": 49, "profile_path": "/mDjJ24pURygsrGcYYbu1oQ2B0FH.jpg", "order": 38}, {"name": "Grear Patterson", "character": "College Boy #1", "id": 1392153, "credit_id": "547c41a99251412d7f002600", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Nick Stewart", "character": "College Boy #2", "id": 1392154, "credit_id": "547c41ee9251412d700027d4", "cast_id": 51, "profile_path": null, "order": 40}], "directors": [{"name": "Gia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4c9c9251416c910fa6b1", "profile_path": null, "id": 1193602}], "vote_average": 6.3, "runtime": 100}, "7446": {"poster_path": "/ue9QdvhpcNPvKQyLY5a5Pd0tagS.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 188072649, "overview": "Vietnam veteran \"Four Leaf\" Tayback's memoir, Tropic Thunder, is being made into a film. Director Damien Cockburn can\u2019t control the cast of prima donnas. Behind schedule and over budget, Cockburn is ordered by a studio executive to get filming back on track, or risk its cancellation. On Tayback's advice, Cockburn drops the actors into the middle of the jungle to film the remaining scenes. Unbeknownst to the actors and production, the group have been dropped in the middle of the Golden Triangle, the home of heroin-producing gangs.", "video": false, "id": 7446, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Tropic Thunder", "tagline": "The movie they think they're making... isn't a movie anymore.", "vote_count": 420, "homepage": "http://www.tropicthunder.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0942385", "adult": false, "backdrop_path": "/6TdYGyANd7QhcV6gsx4meW8Y9Wf.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Red Hour Films", "id": 12178}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Internationale Filmproduktion Stella-del-Sud Second", "id": 12379}], "release_date": "2008-08-13", "popularity": 1.5097767510231, "original_title": "Tropic Thunder", "budget": 92000000, "cast": [{"name": "Ben Stiller", "character": "Speedman", "id": 7399, "credit_id": "52fe447dc3a36847f80992e1", "cast_id": 2, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Kirk Lazarus", "id": 3223, "credit_id": "52fe447dc3a36847f809935b", "cast_id": 28, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Jack Black", "character": "Jeff \"Fats\" Portnoy", "id": 70851, "credit_id": "52fe447dc3a36847f80992e5", "cast_id": 3, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Kevin Sandusky", "id": 449, "credit_id": "52fe447dc3a36847f80992ed", "cast_id": 6, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Brandon T. Jackson", "character": "Alpa Chino", "id": 53336, "credit_id": "52fe447dc3a36847f80992f9", "cast_id": 9, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 4}, {"name": "Matthew McConaughey", "character": "Rick Peck", "id": 10297, "credit_id": "52fe447dc3a36847f8099305", "cast_id": 12, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 5}, {"name": "Tom Cruise", "character": "Les Grossmann", "id": 500, "credit_id": "52fe447dc3a36847f8099301", "cast_id": 11, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 6}, {"name": "Nick Nolte", "character": "Four Leaf Tayback", "id": 1733, "credit_id": "52fe447dc3a36847f80992fd", "cast_id": 10, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 7}, {"name": "Danny McBride", "character": "Cody - Vietnam Crew", "id": 62862, "credit_id": "52fe447dc3a36847f8099357", "cast_id": 27, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 8}, {"name": "Steve Coogan", "character": "Damian", "id": 4581, "credit_id": "52fe447dc3a36847f80992e9", "cast_id": 5, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 9}, {"name": "Bill Hader", "character": "Rob Slolom", "id": 19278, "credit_id": "52fe447dc3a36847f80992f1", "cast_id": 7, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 10}, {"name": "Reggie Lee", "character": "Byong - Flaming Dragon Compound", "id": 22075, "credit_id": "53f4f4efc3a368340000202b", "cast_id": 33, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 12}, {"name": "Brandon Soo Hoo", "character": "Tran - Flaming Dragon Compound", "id": 1115122, "credit_id": "53f4f5fd0e0a267f83002a48", "cast_id": 34, "profile_path": "/yZse73nxYlk9Ypr5r43PUkpuZGB.jpg", "order": 13}], "directors": [{"name": "Ben Stiller", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f80992dd", "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "id": 7399}], "vote_average": 6.2, "runtime": 107}, "192134": {"poster_path": "/tKJck9jAXaCWZvexlbQ85NeAhro.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 523511, "overview": "After spending 12 years in prison for keeping his mouth shut, notorious safe-cracker Dom Hemingway is back on the streets of London looking to collect what he's owed.", "video": false, "id": 192134, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Dom Hemingway", "tagline": "I want my money plus interest.... and a present", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2402105", "adult": false, "backdrop_path": "/1qzClUQQWDVO6nc1nU2F4AAjfKq.jpg", "production_companies": [{"name": "Pinewood Studios", "id": 19404}, {"name": "Recorded Picture Company (RPC)", "id": 11561}, {"name": "BBC Films", "id": 288}, {"name": "Isle of Man Film Commission", "id": 8719}], "release_date": "2013-11-15", "popularity": 0.972692166871786, "original_title": "Dom Hemingway", "budget": 0, "cast": [{"name": "Jude Law", "character": "Dom Hemingway", "id": 9642, "credit_id": "52fe4c9c9251416c910fa733", "cast_id": 2, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Demi\u00e1n Bichir", "character": "Mr. Fontaine", "id": 76961, "credit_id": "52fe4c9c9251416c910fa737", "cast_id": 4, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 1}, {"name": "Richard E. Grant", "character": "Dickie", "id": 20766, "credit_id": "52fe4c9c9251416c910fa73b", "cast_id": 5, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 2}, {"name": "Matthew C. Martino", "character": "Nightclubber", "id": 1186080, "credit_id": "52fe4c9c9251416c910fa73f", "cast_id": 6, "profile_path": "/5wtp4SjBr3e6zvxIHrWHKKxWR1w.jpg", "order": 3}, {"name": "Emilia Clarke", "character": "Evelyn", "id": 1223786, "credit_id": "52fe4c9c9251416c910fa74f", "cast_id": 9, "profile_path": "/tB1nE2LJH81f5UMiGhKCSlaqsF1.jpg", "order": 4}, {"name": "Kerry Condon", "character": "Melody", "id": 62105, "credit_id": "532b2f5e925141083c001a77", "cast_id": 10, "profile_path": "/i2wb0N7m1JkUJRcfBcVYmIpExAa.jpg", "order": 5}, {"name": "M\u0103d\u0103lina Diana Ghenea", "character": "Paolina", "id": 1255247, "credit_id": "532b2f7892514108420019a9", "cast_id": 11, "profile_path": "/2bgE2WrfXwWW3nCCtbEgDx7pSqu.jpg", "order": 6}, {"name": "Deborah Rosan", "character": "Actress", "id": 1106755, "credit_id": "532b2f85925141083c001a7e", "cast_id": 12, "profile_path": "/u5TLr9M4qo7jlzTsFb7XDPRilEW.jpg", "order": 7}, {"name": "Vic Waghorn", "character": "Pedestrian", "id": 1297114, "credit_id": "532b2f91925141084d00198f", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Emma Lock", "character": "Hostess", "id": 1080031, "credit_id": "532b2f9e9251410836001aa5", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Nathan Stewart-Jarrett", "character": "Hugh", "id": 221980, "credit_id": "532b2fb29251410839001a60", "cast_id": 15, "profile_path": "/vmTYlNIggaRg0jf8EAgkT3tcImN.jpg", "order": 10}], "directors": [{"name": "Richard Shepard", "department": "Directing", "job": "Director", "credit_id": "52fe4c9c9251416c910fa745", "profile_path": "/z9mf3XC51RrUEmdusWx7CAPsaLF.jpg", "id": 44740}], "vote_average": 6.2, "runtime": 93}, "192136": {"poster_path": "/dFebwt45Tyfb49SiQPZMelRKIjj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 27330000, "overview": "A chronicle of Nelson Mandela's life journey from his childhood in a rural village through to his inauguration as the first democratically elected president of South Africa.", "video": false, "id": 192136, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Mandela: Long Walk to Freedom", "tagline": "It is an ideal for which I am prepared to die.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "xh", "name": ""}], "imdb_id": "tt2304771", "adult": false, "backdrop_path": "/oZvIyVLYGGit6LSYv2tYD9wfBiy.jpg", "production_companies": [{"name": "Videovision Entertainment", "id": 5031}, {"name": "Distant Horizons", "id": 1066}, {"name": "Pathe", "id": 7396}, {"name": "Film Afrika Worldwide", "id": 4792}, {"name": "Origin Pictures", "id": 8088}], "release_date": "2013-12-25", "popularity": 0.750119057405109, "original_title": "Mandela: Long Walk to Freedom", "budget": 35000000, "cast": [{"name": "Idris Elba", "character": "Nelson Mandela", "id": 17605, "credit_id": "52fe4c9c9251416c910fa789", "cast_id": 3, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 0}, {"name": "Naomie Harris", "character": "Winnie Madikizela", "id": 2038, "credit_id": "52fe4c9c9251416c910fa78d", "cast_id": 4, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 1}, {"name": "Tony Kgoroge", "character": "Walter Sisulu", "id": 2606, "credit_id": "52fe4c9d9251416c910fa7a1", "cast_id": 9, "profile_path": "/6SYs40gVJNmzKjz4kFQOwXG5BH6.jpg", "order": 2}, {"name": "Riaad Moosa", "character": "Ahmed Kathrada", "id": 996636, "credit_id": "52fe4c9d9251416c910fa7a5", "cast_id": 10, "profile_path": "/mQgaE4y00QDMH2K8oPoaMz4O2gD.jpg", "order": 3}, {"name": "Fana Mokoena", "character": "Govan Mbeki", "id": 2607, "credit_id": "52fe4c9d9251416c910fa7bd", "cast_id": 17, "profile_path": "/skuKjL1Ep1SHrZuNl0lYVfZ9VM0.jpg", "order": 4}, {"name": "Robert Hobbs", "character": "Chief Warder", "id": 82190, "credit_id": "52fe4c9c9251416c910fa791", "cast_id": 6, "profile_path": "/yN6gVehZi1Y5P5kDazI8FmB8Bb0.jpg", "order": 5}, {"name": "Jamie Bartlett", "character": "James Gregory", "id": 74627, "credit_id": "52fe4c9d9251416c910fa7a9", "cast_id": 11, "profile_path": "/lLoOjYKHkEhi6kStM7QkRkYotQh.jpg", "order": 6}, {"name": "Lindiwe Matshikiza", "character": "Zindzi Mandela", "id": 1125917, "credit_id": "52fe4c9d9251416c910fa7ad", "cast_id": 12, "profile_path": "/sZkuS47SnVp9fQOzbEpTzV7iMmX.jpg", "order": 7}, {"name": "Terry Pheto", "character": "Evelyn Mase", "id": 13093, "credit_id": "52fe4c9d9251416c910fa7b1", "cast_id": 13, "profile_path": "/gS2fXmjnnsnXess2k2AZ6mct5sU.jpg", "order": 8}, {"name": "Deon Lotz", "character": "Kobie Coetzee", "id": 1041697, "credit_id": "52fe4c9d9251416c910fa7b5", "cast_id": 14, "profile_path": "/ippPb3HDaNICCot4wCUMAoPJBL5.jpg", "order": 9}, {"name": "Thapelo Mokoena", "character": "Elias Motsoaledi", "id": 229640, "credit_id": "52fe4c9d9251416c910fa7b9", "cast_id": 16, "profile_path": "/8Ssl77mcNwb2lPOCXgIrhl9Gl4S.jpg", "order": 10}, {"name": "Zolani Mkiva", "character": "Raymond Mhlaba", "id": 1208133, "credit_id": "52fe4c9d9251416c910fa7c1", "cast_id": 18, "profile_path": "/fkiqMEJFHAPs4pL1EDCePw8Gj7B.jpg", "order": 11}, {"name": "Simo Mogwaza", "character": "Andrew Miageni", "id": 2619, "credit_id": "52fe4c9d9251416c910fa7c5", "cast_id": 19, "profile_path": "/6peqCFCtInAmHIDiKdkeVHDjWMp.jpg", "order": 12}, {"name": "David Butler", "character": "Colonel Badenhorst", "id": 1384871, "credit_id": "5464c6ddc3a36804c5001fa2", "cast_id": 28, "profile_path": "/nZUFoRw9vkxPIbLbmRrF7mt0RFu.jpg", "order": 13}, {"name": "Gys de Villiers", "character": "President de Klerk", "id": 231649, "credit_id": "5464c70dc3a36804a7001ee7", "cast_id": 29, "profile_path": "/pXv5G2mGa8pUqWv56lADhJYKByo.jpg", "order": 14}], "directors": [{"name": "Justin Chadwick", "department": "Directing", "job": "Director", "credit_id": "52fe4c9c9251416c910fa77f", "profile_path": "/8jhsQAwccFClH4gEYd4Hlbig31I.jpg", "id": 71570}], "vote_average": 6.8, "runtime": 141}, "25196": {"poster_path": "/tUyhwp36YykNKpqpEfauCavuDbK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39462438, "overview": "When reporter Jean Craddock interviews Bad Blake -- an alcoholic, seen-better-days country music legend -- they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son. But can he leave behind an existence playing in the shadow of Tommy, the upstart kid he once mentored?", "video": false, "id": 25196, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Crazy Heart", "tagline": "The harder the life, the sweeter the song.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1263670", "adult": false, "backdrop_path": "/gN0YZOzBX7eWDPx7UaiCjgohEYQ.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Informant Media", "id": 9325}, {"name": "Butcher's Run Films", "id": 3864}], "release_date": "2009-12-16", "popularity": 1.21869830316695, "original_title": "Crazy Heart", "budget": 7000000, "cast": [{"name": "Jeff Bridges", "character": "Bad Blake", "id": 1229, "credit_id": "52fe44bdc3a368484e034183", "cast_id": 3, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Jean Craddock", "id": 1579, "credit_id": "52fe44bdc3a368484e03417f", "cast_id": 2, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Robert Duvall", "character": "Wayne", "id": 3087, "credit_id": "52fe44bdc3a368484e03418d", "cast_id": 5, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 2}, {"name": "Colin Farrell", "character": "Tommy Sweet", "id": 72466, "credit_id": "52fe44bdc3a368484e03417b", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 3}, {"name": "Tom Bower", "character": "Bill Wilson", "id": 19453, "credit_id": "52fe44bdc3a368484e034191", "cast_id": 6, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 4}], "directors": [{"name": "Scott Cooper", "department": "Directing", "job": "Director", "credit_id": "52fe44bdc3a368484e034189", "profile_path": "/kmlJ2OLQmFLbdwCxUuofPgvYjjP.jpg", "id": 65167}], "vote_average": 6.1, "runtime": 112}, "11917": {"poster_path": "/AkfY99GJjnsuOpIaQlFzCsv5pBl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113857533, "overview": "Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.", "video": false, "id": 11917, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Saw V", "tagline": "You Won't Believe How It Ends", "vote_count": 181, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1132626", "adult": false, "backdrop_path": "/riCNFvTbbgjWYIhy6Ow5gBd8ZqW.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}], "release_date": "2008-10-23", "popularity": 0.584261525955848, "original_title": "Saw V", "budget": 10800000, "cast": [{"name": "Julie Benz", "character": "Brit", "id": 35551, "credit_id": "52fe44a19251416c7503b84d", "cast_id": 2, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 0}, {"name": "Meagan Good", "character": "Luba", "id": 22122, "credit_id": "52fe44a19251416c7503b851", "cast_id": 3, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 1}, {"name": "Shawnee Smith", "character": "Amanda Young", "id": 2138, "credit_id": "52fe44a19251416c7503b855", "cast_id": 4, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 2}, {"name": "Tobin Bell", "character": "John Kramer", "id": 2144, "credit_id": "52fe44a19251416c7503b859", "cast_id": 5, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 3}, {"name": "Mark Rolston", "character": "Dan Erickson", "id": 6576, "credit_id": "5333e0e9c3a3682a94001979", "cast_id": 6, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 4}, {"name": "Costas Mandylor", "character": "Mark Hoffman", "id": 36055, "credit_id": "54c5a7919251412fdb0024cf", "cast_id": 19, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 5}, {"name": "Scott Patterson", "character": "Agent Strahm", "id": 50020, "credit_id": "54c5a7c39251414cb200051e", "cast_id": 20, "profile_path": "/tXrO1CHnuR6zjpHh2JXNtozW0XC.jpg", "order": 6}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "54c5a80dc3a36879290093ec", "cast_id": 21, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 7}, {"name": "Carlo Rota", "character": "Charles", "id": 54793, "credit_id": "54c5a8ee9251412432008c99", "cast_id": 22, "profile_path": "/arfSlKjQqBWV77Tyu0jjASnvFII.jpg", "order": 8}, {"name": "Greg Bryk", "character": "Mallick", "id": 231, "credit_id": "54c5a907c3a3682c3c000542", "cast_id": 23, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 9}], "directors": [{"name": "David Hackl", "department": "Directing", "job": "Director", "credit_id": "52fe44a19251416c7503b849", "profile_path": null, "id": 2679}], "vote_average": 6.1, "runtime": 92}, "11918": {"poster_path": "/8Qqdq9VywBQ3MnCtdwuiVjC0E8h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25871834, "overview": "The team behind Scary Movie takes on the comic book genre in this tale of Rick Riker, a nerdy teen imbued with superpowers by a radioactive dragonfly. And because every hero needs a nemesis, enter Lou Landers, aka the villainously goofy Hourglass.", "video": false, "id": 11918, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superhero Movie", "tagline": "The greatest Superhero movie of all time! (not counting all the others)", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0426592", "adult": false, "backdrop_path": "/gXiQZuB5OXF0KjYoDgKFxleE29m.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2008-03-27", "popularity": 0.617118502518391, "original_title": "Superhero Movie", "budget": 35000000, "cast": [{"name": "Drake Bell", "character": "Dragonfly", "id": 3272, "credit_id": "52fe44a19251416c7503b899", "cast_id": 2, "profile_path": "/5GqFeFdNXRzb9DwlFSfBef8Pmb0.jpg", "order": 0}, {"name": "Sara Paxton", "character": "Jill Johnson", "id": 60072, "credit_id": "52fe44a19251416c7503b89d", "cast_id": 3, "profile_path": "/6tgy3NOeP2Cd1NiW9xHETQSbfvB.jpg", "order": 1}, {"name": "Leslie Nielsen", "character": "Uncle Albert Adams", "id": 7633, "credit_id": "52fe44a19251416c7503b8a1", "cast_id": 4, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 2}, {"name": "Christopher McDonald", "character": "Lou Landers", "id": 4443, "credit_id": "52fe44a19251416c7503b8a9", "cast_id": 6, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Dr. Whitby", "id": 4175, "credit_id": "52fe44a19251416c7503b8a5", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Pamela Anderson", "character": "Invisible Girl", "id": 6736, "credit_id": "52fe44a19251416c7503b8ad", "cast_id": 7, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 5}, {"name": "Kevin Hart", "character": "Trey", "id": 55638, "credit_id": "52fe44a19251416c7503b8e7", "cast_id": 17, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 6}, {"name": "Marion Ross", "character": "Aunt Lucille", "id": 75355, "credit_id": "52fe44a19251416c7503b8eb", "cast_id": 18, "profile_path": "/mdUQH7zZVP9yYeeSD97d1HWYi5a.jpg", "order": 7}, {"name": "Ryan Hansen", "character": "Lance Landers", "id": 78433, "credit_id": "52fe44a19251416c7503b8ef", "cast_id": 19, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 8}, {"name": "Keith David", "character": "The Chief of Police", "id": 65827, "credit_id": "52fe44a19251416c7503b8f3", "cast_id": 20, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 9}, {"name": "Robert Joy", "character": "Dr. Hawking", "id": 19976, "credit_id": "52fe44a19251416c7503b8f7", "cast_id": 22, "profile_path": "/xh5eb9p379k9w3NOGRjEyAw2yrP.jpg", "order": 10}, {"name": "Robert Hays", "character": "Blaine Riker", "id": 14416, "credit_id": "52fe44a19251416c7503b8fb", "cast_id": 23, "profile_path": "/1KWB4DXcsTVNDkDOaTJYatiTmDn.jpg", "order": 11}, {"name": "Nicole Sullivan", "character": "Julia Riker", "id": 16845, "credit_id": "52fe44a19251416c7503b8ff", "cast_id": 24, "profile_path": "/yJe73CBLTXrqge9oIw7k4p2qb61.jpg", "order": 12}, {"name": "Sam Cohen", "character": "Young Rick", "id": 999301, "credit_id": "52fe44a19251416c7503b903", "cast_id": 25, "profile_path": "/aWSin5WA7brJ8bxpM12W02oAlS3.jpg", "order": 13}, {"name": "Tracy Morgan", "character": "Professor Xavier", "id": 56903, "credit_id": "52fe44a19251416c7503b907", "cast_id": 26, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 14}, {"name": "Brent Spiner", "character": "Dr. Strom", "id": 1213786, "credit_id": "52fe44a19251416c7503b90b", "cast_id": 27, "profile_path": "/gYaOWwycKcSEPQzUOITt9DA5AcY.jpg", "order": 15}], "directors": [{"name": "Craig Mazin", "department": "Directing", "job": "Director", "credit_id": "52fe44a19251416c7503b895", "profile_path": "/c59ILZnJ8RHlVvRLzIm1Viu9l0k.jpg", "id": 35796}], "vote_average": 5.5, "runtime": 85}, "192145": {"poster_path": "/nbJxNgdIPD32AFNCSHD51A61gf2.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An acclaimed novelist struggles to write an analysis of love in one of three stories, each set in a different city, that detail the beginning, middle and end of a relationship.", "video": false, "id": 192145, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Third Person", "tagline": "Life can change at the turn of a page.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2343793", "adult": false, "backdrop_path": "/wsTFhxSdD2kgH1pMeMNKVzGNfXI.jpg", "production_companies": [{"name": "Volten", "id": 32874}, {"name": "Corsan", "id": 7299}, {"name": "Hwy61", "id": 6320}, {"name": "Lailaps Pictures", "id": 32875}, {"name": "Purple Papaya Films", "id": 32876}], "release_date": "2013-09-09", "popularity": 1.46163304232531, "original_title": "Third Person", "budget": 0, "cast": [{"name": "Liam Neeson", "character": "Michael", "id": 3896, "credit_id": "52fe4c9d9251416c910fa89f", "cast_id": 3, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Julia", "id": 18973, "credit_id": "52fe4c9d9251416c910fa8a3", "cast_id": 4, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "James Franco", "character": "Rick", "id": 17051, "credit_id": "52fe4c9d9251416c910fa8a7", "cast_id": 5, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Olivia Wilde", "character": "Anna", "id": 59315, "credit_id": "52fe4c9d9251416c910fa8ab", "cast_id": 6, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 3}, {"name": "Adrien Brody", "character": "Sean", "id": 3490, "credit_id": "52fe4c9d9251416c910fa8af", "cast_id": 7, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 4}, {"name": "Maria Bello", "character": "Theresa", "id": 49, "credit_id": "52fe4c9d9251416c910fa8b3", "cast_id": 8, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 5}, {"name": "Kim Basinger", "character": "Elaine", "id": 326, "credit_id": "52fe4c9d9251416c910fa8b7", "cast_id": 9, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 6}, {"name": "Moran Atias", "character": "Monika", "id": 84261, "credit_id": "547f3aa1c3a368395c001c17", "cast_id": 10, "profile_path": "/3PBK2kfcqXI5POh9yGWX6Z5BXty.jpg", "order": 7}, {"name": "Katy Louise Saunders", "character": "Gina", "id": 88082, "credit_id": "551174f3925141070100781c", "cast_id": 62, "profile_path": "/8br3XvDujYOZYtlfYEVUaeCyjPZ.jpg", "order": 8}, {"name": "Loan Chabanol", "character": "Sam", "id": 1381175, "credit_id": "5511751cc3a3680174001a9b", "cast_id": 63, "profile_path": null, "order": 9}, {"name": "Riccardo Scamarcio", "character": "Marco", "id": 59270, "credit_id": "551175649251415c320018a4", "cast_id": 64, "profile_path": "/zpphrSmdn2TR0F0kbVG5CAGqfxv.jpg", "order": 10}, {"name": "Daniela Virgilio", "character": "Claire", "id": 107220, "credit_id": "5511758ac3a3680174001aac", "cast_id": 65, "profile_path": "/jM1kofVdBLN9poRU0vZCljh0yZq.jpg", "order": 11}, {"name": "Vinicio Marchioni", "character": "Carlo", "id": 131624, "credit_id": "551175adc3a36802c30019f4", "cast_id": 66, "profile_path": "/3ANJU7qZG6RvIoeFzvrqOUSiZKp.jpg", "order": 12}, {"name": "Vincent Riotta", "character": "Gerry", "id": 26669, "credit_id": "551175d79251415caa00177d", "cast_id": 67, "profile_path": "/4xlR6xTLzzxv6yudPZOunAVmR9n.jpg", "order": 13}, {"name": "Caroline Goodall", "character": "Dr. Gertner", "id": 6692, "credit_id": "551175fec3a3683f39007a77", "cast_id": 68, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 14}, {"name": "Bob Messini", "character": "Giuseppe", "id": 543583, "credit_id": "55117626c3a3681db200dea6", "cast_id": 69, "profile_path": null, "order": 15}, {"name": "Ilaria Genatiempo", "character": "Margaret", "id": 1444979, "credit_id": "55117652925141065c007857", "cast_id": 70, "profile_path": null, "order": 16}], "directors": [{"name": "Paul Haggis", "department": "Directing", "job": "Director", "credit_id": "52fe4c9d9251416c910fa895", "profile_path": "/v2MadHJVrBAv0tEgs9H9PJ9y50z.jpg", "id": 455}], "vote_average": 5.8, "runtime": 137}, "77459": {"poster_path": "/bEqkbV0bYIDWpu2dMc1Zy3aFHhT.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Paris,1910. Emile, a shy movie projectionist, and Raoul, a colorful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city's ruthlessly ambitious police chief.", "video": false, "id": 77459, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "A Monster in Paris", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0961097", "adult": false, "backdrop_path": "/fCZKEiiE3cCIqeWf2WSAiMCvDwN.jpg", "production_companies": [{"name": "Europa Corp", "id": 1075}, {"name": "Scanbox", "id": 8992}], "release_date": "2011-10-12", "popularity": 1.55470647703016, "original_title": "Un monstre \u00e0 Paris", "budget": 0, "cast": [{"name": "Vanessa Paradis", "character": "Lucille", "id": 65007, "credit_id": "52fe496cc3a368484e12ac5d", "cast_id": 1001, "profile_path": "/zPwmGEC7nN43bRIb4eovuTWEE18.jpg", "order": 0}, {"name": "Mathieu Chedid", "character": "Franc\u0153ur", "id": 66841, "credit_id": "52fe496cc3a368484e12ac61", "cast_id": 1002, "profile_path": "/xti6TXbhKfOlQqAlYZjuhWxJTNc.jpg", "order": 1}, {"name": "Gad Elmaleh", "character": "Raoul", "id": 51100, "credit_id": "52fe496cc3a368484e12ac65", "cast_id": 1003, "profile_path": "/ay3csj0Wmn8OppIcArmHRiwmBLc.jpg", "order": 2}, {"name": "Fran\u00e7ois Cluzet", "character": "Le pr\u00e9fet Maynott", "id": 33161, "credit_id": "52fe496cc3a368484e12ac69", "cast_id": 1004, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 3}, {"name": "Ludivine Sagnier", "character": "Maud", "id": 4390, "credit_id": "52fe496cc3a368484e12ac6d", "cast_id": 1005, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 4}, {"name": "Julie Ferrier", "character": "Madame Carlotta", "id": 54292, "credit_id": "52fe496cc3a368484e12ac71", "cast_id": 1006, "profile_path": "/lDyve5gGt5KM4hWLeCCYY6XNUcg.jpg", "order": 5}], "directors": [{"name": "Bibo Bergeron", "department": "Directing", "job": "Director", "credit_id": "52fe496cc3a368484e12ac83", "profile_path": null, "id": 65629}], "vote_average": 7.0, "runtime": 90}, "192149": {"poster_path": "/tbpIle72s2cPMlkRaZBOzNkAtG8.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8, "overview": "A thriller centered on a con artist, his wife, and a stranger who try to flee a foreign country after one of them is caught up in the murder of a private detective.", "video": false, "id": 192149, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Two Faces of January", "tagline": "A Mysterious Past. An Unspeakable Secret.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1976000", "adult": false, "backdrop_path": "/5IkoX9y5VPPtfw0J0VMB2JgUBHe.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Timnick Films", "id": 679}, {"name": "StudioCanal", "id": 694}], "release_date": "2014-05-16", "popularity": 0.753031314544239, "original_title": "The Two Faces of January", "budget": 4500000, "cast": [{"name": "Viggo Mortensen", "character": "Chester MacFarland", "id": 110, "credit_id": "52fe4c9d9251416c910fa8e9", "cast_id": 1, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Colette MacFarland", "id": 205, "credit_id": "52fe4c9d9251416c910fa8ed", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Oscar Isaac", "character": "Rydal", "id": 25072, "credit_id": "532c7036c3a3686ef800023e", "cast_id": 10, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 2}, {"name": "Prometheus Aleifer", "character": "Young Musician", "id": 1303061, "credit_id": "532c7050c3a3686eec00021e", "cast_id": 11, "profile_path": "/xmLUXgopPCXapDcDvDwwfOX4jja.jpg", "order": 3}, {"name": "Nikos Mavrakis", "character": "Greek Young Man On Boat", "id": 1303062, "credit_id": "532c7062c3a3686ede000207", "cast_id": 12, "profile_path": "/av7Rzm5ZLOzSpRLHxK3Td9AtKrC.jpg", "order": 4}, {"name": "Yi\u011fit \u00d6z\u015fener", "character": "Yahya", "id": 46066, "credit_id": "532c7075c3a3686f0f000218", "cast_id": 13, "profile_path": "/14IgPlIC3SK4hKR8PI5CnxmqStq.jpg", "order": 5}, {"name": "Daisy Bevan", "character": "Lauren", "id": 1367568, "credit_id": "5424157a0e0a263b7e00390d", "cast_id": 45, "profile_path": "/wwpgbAI8ZHNg5yPZQzXa2A0CL83.jpg", "order": 6}, {"name": "David Warshofsky", "character": "Paul Vittorio", "id": 37204, "credit_id": "5424159d0e0a263b7a0037d5", "cast_id": 46, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 7}, {"name": "James Sobol Kelly", "character": "FBI Agent", "id": 1367569, "credit_id": "542415cac3a368087a003806", "cast_id": 47, "profile_path": "/qh605u1hau27nq8noSOHfFXxSEH.jpg", "order": 8}, {"name": "Karayianni Margaux", "character": "College Student", "id": 1394684, "credit_id": "54814354c3a36829a30051c6", "cast_id": 48, "profile_path": "/bR5hzzRzKAK2DY43rcxHsZlrvrD.jpg", "order": 9}, {"name": "Socrates Alafouzos", "character": "Customs Hall Policeman", "id": 1394685, "credit_id": "548148989251416e7e0052b0", "cast_id": 49, "profile_path": "/vqPHrpEe9IDQfnY5up7cD72y7ao.jpg", "order": 10}, {"name": "Ozan Tas", "character": "Hotelier", "id": 1394687, "credit_id": "54814a13c3a36829a7005254", "cast_id": 50, "profile_path": "/joGell8LBZ3HyaE4TcGaB3X1bEz.jpg", "order": 11}, {"name": "Omiros Poulakis", "character": "Nikos", "id": 1334800, "credit_id": "54814cf09251416e6c004b5a", "cast_id": 51, "profile_path": "/6bx2GomxqRmkhXrx1Y7DWcVrwDY.jpg", "order": 12}, {"name": "\u00d6zcan \u00d6zdemir", "character": "Turkish Police #1", "id": 1355266, "credit_id": "54814f0f9251414d21005080", "cast_id": 52, "profile_path": null, "order": 13}, {"name": "Evgenia Dimitropoulou", "character": "Airline Agent", "id": 1394692, "credit_id": "548150a99251416e7e0053cc", "cast_id": 53, "profile_path": "/bTyOympUK684q8Ht2O8Iax8SqAQ.jpg", "order": 14}, {"name": "Pablo Verdejo", "character": "Burly man", "id": 1394693, "credit_id": "548152c8c3a36829b5006413", "cast_id": 54, "profile_path": null, "order": 15}, {"name": "Kosta Kortidis", "character": "Poiceman #1", "id": 1394694, "credit_id": "548154599251416e7e00543c", "cast_id": 55, "profile_path": null, "order": 16}, {"name": "Peter Mair", "character": "Man in Hotel Corridor", "id": 27655, "credit_id": "54815797c3a36829b50064e2", "cast_id": 56, "profile_path": null, "order": 17}, {"name": "Okan Avci", "character": "Turkish Plain Clothes Man", "id": 107987, "credit_id": "54815831c3a36829ab0056b7", "cast_id": 57, "profile_path": "/lGKLbsWcmYBRWg5MJOw1loDgyZf.jpg", "order": 18}, {"name": "Mehmet Esen", "character": "Turkish Police #2", "id": 1380913, "credit_id": "548158db9251416e6c004cfe", "cast_id": 58, "profile_path": null, "order": 19}, {"name": "Ioannis Vordos", "character": "Cafe Owner", "id": 1394696, "credit_id": "548159579251414efa0057d4", "cast_id": 59, "profile_path": null, "order": 20}, {"name": "Brian Niblett", "character": "Taxi Driver Crete", "id": 1394697, "credit_id": "548159ab9251416e7800532a", "cast_id": 60, "profile_path": null, "order": 21}, {"name": "Angelis Nannos", "character": "Tipsy Hotel Guest in Tuxedo", "id": 1394698, "credit_id": "54815a3bc3a36829ae004e46", "cast_id": 61, "profile_path": null, "order": 22}], "directors": [{"name": "Hossein Amini", "department": "Directing", "job": "Director", "credit_id": "52fe4c9d9251416c910fa8f3", "profile_path": null, "id": 56960}], "vote_average": 5.8, "runtime": 96}, "11931": {"poster_path": "/4jqnazZX2bh8UMUS8rl4nHWWtyb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83073883, "overview": "Irresponsible party girl Maggie (Cameron Diaz) is kicked out of her father's (Ken Howard) and stepmother's (Candice Azzara) home, where she lives for free, and is taken in by her hard-working sister, Philadelphia lawyer Rose (Toni Collette). After Maggie's disruptive ways ruin her sister's love life, Rose turns her out as well. But when their grandmother, who they never knew existed, comes into their lives, the sisters face some complicated truths about themselves and their family.", "video": false, "id": 11931, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "In Her Shoes", "tagline": "Friends. Rivals. Sisters.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0388125", "adult": false, "backdrop_path": "/tkHlTVLylEIBpUypq0z3ZbtxUKc.jpg", "production_companies": [{"name": "Deuce Three Productions", "id": 812}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2005-10-07", "popularity": 1.47839469925689, "original_title": "In Her Shoes", "budget": 0, "cast": [{"name": "Cameron Diaz", "character": "Maggie Feller", "id": 6941, "credit_id": "52fe44a39251416c7503bc7f", "cast_id": 12, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Toni Collette", "character": "Rose Feller", "id": 3051, "credit_id": "52fe44a39251416c7503bc83", "cast_id": 13, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 1}, {"name": "Shirley MacLaine", "character": "Ella Hirsh", "id": 4090, "credit_id": "52fe44a39251416c7503bcb3", "cast_id": 27, "profile_path": "/faG5S4EOVaGHNf1CwZryGcHCE4e.jpg", "order": 2}, {"name": "Richard Burgi", "character": "Jim Danvers", "id": 25849, "credit_id": "52fe44a39251416c7503bc87", "cast_id": 14, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 3}, {"name": "Candice Azzara", "character": "Sydelle Feller", "id": 9283, "credit_id": "52fe44a39251416c7503bc8b", "cast_id": 15, "profile_path": "/sotfsarQARGTDzZ7PnKqWnTKVAk.jpg", "order": 4}, {"name": "Anson Mount", "character": "Todd", "id": 56675, "credit_id": "52fe44a39251416c7503bc8f", "cast_id": 16, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 5}, {"name": "Brooke Smith", "character": "Amy", "id": 31649, "credit_id": "52fe44a39251416c7503bc93", "cast_id": 17, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 6}, {"name": "Mark Feuerstein", "character": "Simon Stein", "id": 11365, "credit_id": "52fe44a39251416c7503bc97", "cast_id": 18, "profile_path": "/jIYKKgr0pMUwuvajITsFSPv6ash.jpg", "order": 7}, {"name": "Terrance Christopher Jones", "character": "Lawyer", "id": 188237, "credit_id": "52fe44a39251416c7503bc9b", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Nicole Randall Johnson", "character": "Rose's Assistant", "id": 155687, "credit_id": "52fe44a39251416c7503bc9f", "cast_id": 20, "profile_path": "/nwLrlB3QsFQk0ads0ox53SdKjbT.jpg", "order": 9}, {"name": "Kateri DeMartino", "character": "Ferocious Shopper (as Kateri Demartino)", "id": 204333, "credit_id": "52fe44a39251416c7503bca3", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Alan Blumenfeld", "character": "Mr. Stein", "id": 22053, "credit_id": "52fe44a39251416c7503bca7", "cast_id": 22, "profile_path": "/2ag56MvKkTuhGnUFgJza4hJZl8u.jpg", "order": 11}, {"name": "Jerry Adler", "character": "Lewis Feldman", "id": 24292, "credit_id": "52fe44a39251416c7503bcab", "cast_id": 25, "profile_path": "/3oS2KYKYUxo40nNFv08asY9mNQA.jpg", "order": 12}, {"name": "Ivana Mili\u010devi\u0107", "character": "Caroline, in photos", "id": 29930, "credit_id": "52fe44a39251416c7503bcaf", "cast_id": 26, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 13}, {"name": "Marcia Jean Kurtz", "character": "Mrs. Stein", "id": 14548, "credit_id": "52fe44a39251416c7503bcb7", "cast_id": 28, "profile_path": "/2aGQ9LambquAMABMVqtfXoRqNKm.jpg", "order": 14}, {"name": "Jill Saunders", "character": "Lopey", "id": 545682, "credit_id": "52fe44a39251416c7503bcbb", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Jackie Geary", "character": "My Marcia", "id": 166688, "credit_id": "52fe44a39251416c7503bcbf", "cast_id": 30, "profile_path": "/saIV0KEUYjfDSKsCyODWxCGqbUr.jpg", "order": 16}, {"name": "Eric Balfour", "character": "Grant", "id": 34489, "credit_id": "53fd73b70e0a262def00103b", "cast_id": 31, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 17}, {"name": "Norman Lloyd", "character": "The Professor", "id": 2698, "credit_id": "53fd73d90e0a262df200102c", "cast_id": 32, "profile_path": "/k4ofwRHZPeMSm8M3YWLeyoNvWTN.jpg", "order": 18}], "directors": [{"name": "Curtis Hanson", "department": "Directing", "job": "Director", "credit_id": "52fe44a39251416c7503bc3f", "profile_path": "/e8o4pYzVjh4ier1n0bxD78HCbxg.jpg", "id": 323}], "vote_average": 5.9, "runtime": 130}, "11932": {"poster_path": "/u5Lc1Li0Hpc452o57E2KaToezZX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50671850, "overview": "Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.", "video": false, "id": 11932, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Bride of Chucky", "tagline": "Chucky Gets Lucky.", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AAhYXBVIEl6WgQnzfBsauTIC25.jpg", "poster_path": "/50aqbDvbOtdlZrje6Qk4ZvKM7dM.jpg", "id": 10455, "name": "Child's Play Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0144120", "adult": false, "backdrop_path": "/lLzrg3yP43T63CaNkDm2VqZUAFU.jpg", "production_companies": [{"name": "Midwinter Productions Inc.", "id": 5550}], "release_date": "1998-10-16", "popularity": 1.20484120088368, "original_title": "Bride of Chucky", "budget": 25000000, "cast": [{"name": "Ed Gale", "character": "Chucky", "id": 1471, "credit_id": "52fe44a39251416c7503bd2d", "cast_id": 15, "profile_path": "/fdL01OqLC9CSrnR9UpQ8bEyS99C.jpg", "order": 0}, {"name": "Jennifer Tilly", "character": "Tiffany", "id": 7906, "credit_id": "52fe44a39251416c7503bd1d", "cast_id": 11, "profile_path": "/bNB0BTnPAdAAHuCQSprMk4smBMD.jpg", "order": 1}, {"name": "Brad Dourif", "character": "Chucky (voice)", "id": 1370, "credit_id": "52fe44a39251416c7503bd21", "cast_id": 12, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 2}, {"name": "Katherine Heigl", "character": "Jade", "id": 25541, "credit_id": "52fe44a39251416c7503bd25", "cast_id": 13, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 3}, {"name": "Nick Stabile", "character": "Jesse", "id": 70958, "credit_id": "52fe44a39251416c7503bd29", "cast_id": 14, "profile_path": "/g21UbSHQAmjkoC6Ls3ybSwNisQI.jpg", "order": 4}, {"name": "John Ritter", "character": "Chief Warren Kincaid", "id": 27772, "credit_id": "52fe44a39251416c7503bd37", "cast_id": 17, "profile_path": "/oM4iv6O97gK7JFiNkdjEBeuN5Q4.jpg", "order": 5}, {"name": "Alexis Arquette", "character": "Damien", "id": 19578, "credit_id": "52fe44a39251416c7503bd3b", "cast_id": 18, "profile_path": "/s2QLmMUQ54TLbNtScWdp29IqHmS.jpg", "order": 6}], "directors": [{"name": "Ronny Yu", "department": "Directing", "job": "Director", "credit_id": "52fe44a39251416c7503bce9", "profile_path": "/ttF6ZrZFNznZr79wPSZWYKz2g3m.jpg", "id": 17268}], "vote_average": 5.6, "runtime": 89}, "175774": {"poster_path": "/9ly8nXuDuiAsYjEmAOLJ9ANZpsb.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Gwendolyn Shepherd is a normal 16-year-old, but her family holds a secret: A time-travel gene is expressed in the clan inherited, but not every member of the family is blessed with. Everyone is certain that Gwen's cousin Charlotte has the gene. However, someday Gwendolyn suddenly finds herself in London at the end of the 19th century and realizes that it her, who was born a time traveler. While she is not very enthusiastic about it she will do everything possible to solve the ancient mysteries of the red ruby.", "video": false, "id": 175774, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Ruby Red", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/ohLKFB1wHOKaJZvmfrBscjUMWda.jpg", "poster_path": "/AnBx2bL4o6ules0sxKZ79Tvpgrj.jpg", "id": 304025, "name": "Gwendolyn Shepherd Collection"}, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2418558", "adult": false, "backdrop_path": "/1qmKQmvTfM3VDxf73CGaDkvRkvb.jpg", "production_companies": [{"name": "Lieblingsfilm", "id": 13535}, {"name": "mem-film", "id": 13536}, {"name": "Gei\u00dfend\u00f6rfer Film- und Fernsehproduktion (GFF)", "id": 13537}, {"name": "Bayerischer Banken-Fonds", "id": 8987}], "release_date": "2013-03-14", "popularity": 1.6925558227418, "original_title": "Rubinrot", "budget": 0, "cast": [{"name": "Maria Ehrich", "character": "Gwendolyn Shepherd", "id": 70459, "credit_id": "52fe4d64c3a36847f825e705", "cast_id": 4, "profile_path": "/eJdr4Iu4GnB6xtEyU3sEY0bRxCw.jpg", "order": 0}, {"name": "Jannis Niew\u00f6hner", "character": "Gideon de Villiers", "id": 54676, "credit_id": "52fe4d64c3a36847f825e709", "cast_id": 5, "profile_path": "/eRVauc0E425urE8ag1MEGmIOYTj.jpg", "order": 1}, {"name": "Veronica Ferres", "character": "Grace Shepherd", "id": 23524, "credit_id": "52fe4d64c3a36847f825e70d", "cast_id": 6, "profile_path": "/vY3zz9MpIxnUoTygbzvBmMfIcHi.jpg", "order": 2}, {"name": "Uwe Kockisch", "character": "Falk de Villiers", "id": 48711, "credit_id": "52fe4d64c3a36847f825e711", "cast_id": 7, "profile_path": "/i6OMkfLAqKcEtG5hQvCZ6R6vlht.jpg", "order": 3}, {"name": "Katharina Thalbach", "character": "Tante Maddy", "id": 10257, "credit_id": "52fe4d64c3a36847f825e715", "cast_id": 8, "profile_path": "/p9TruCDPZX8Bt9pTAVRWVWtWGzW.jpg", "order": 4}, {"name": "Florian Bartholom\u00e4i", "character": "Paul de Villiers", "id": 231835, "credit_id": "52fe4d64c3a36847f825e719", "cast_id": 9, "profile_path": "/qoxJO79wY8HDMozA5RjPcRnotLy.jpg", "order": 5}, {"name": "Laura Berlin", "character": "Charlotte Montrose", "id": 587208, "credit_id": "52fe4d64c3a36847f825e71d", "cast_id": 10, "profile_path": "/wSHnRsLIMSMDFYrXCnOE3BramlC.jpg", "order": 6}, {"name": "Anna B\u00f6ttcher", "character": "Passantin", "id": 48683, "credit_id": "52fe4d64c3a36847f825e721", "cast_id": 11, "profile_path": "/lhheQFGas1BMZs3wvxDwiUdeSHT.jpg", "order": 7}, {"name": "Sibylle Canonica", "character": "Glenda", "id": 4533, "credit_id": "52fe4d64c3a36847f825e725", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Justine del Corte", "character": "Madame Rossini", "id": 48270, "credit_id": "52fe4d64c3a36847f825e729", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Levin Henning", "character": "Nick Shepherd", "id": 119068, "credit_id": "52fe4d64c3a36847f825e72d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Gottfried John", "character": "Dr. White", "id": 3757, "credit_id": "52fe4d64c3a36847f825e731", "cast_id": 15, "profile_path": "/hOVrTlQwZX4THosi9usXISC7mNS.jpg", "order": 11}, {"name": "Gerlinde Locker", "character": "Lady Arista", "id": 39043, "credit_id": "52fe4d64c3a36847f825e735", "cast_id": 16, "profile_path": "/omwxuRsh9rUINYtV1YoCheqUN71.jpg", "order": 12}, {"name": "Axel Milberg", "character": "Lucas Montrose", "id": 36010, "credit_id": "52fe4d64c3a36847f825e741", "cast_id": 19, "profile_path": "/p4s6tXvvgAhUa7bgSdUeluvci1L.jpg", "order": 15}, {"name": "Josefine Preu\u00df", "character": "Lucy Montrose", "id": 25401, "credit_id": "52fe4d64c3a36847f825e745", "cast_id": 20, "profile_path": "/kvneY1YAGfq1uiQhjzzhihbsTsf.jpg", "order": 16}, {"name": "Chiara Schoras", "character": "Margret Tilney", "id": 41171, "credit_id": "52fe4d64c3a36847f825e749", "cast_id": 21, "profile_path": "/w9Cykm7r9R5H6MsrBtZE6QBq3Wg.jpg", "order": 17}, {"name": "Johannes Silberschneider", "character": "Mr. Bernhard", "id": 23750, "credit_id": "52fe4d64c3a36847f825e74d", "cast_id": 22, "profile_path": "/wNoBsSTxoWuRYlr7o3zNI7AUdSf.jpg", "order": 18}, {"name": "Peter Simonischek", "character": "Graf von St. Germain", "id": 49795, "credit_id": "52fe4d64c3a36847f825e751", "cast_id": 23, "profile_path": "/7Zrv8fxvZzHzt1M7EU8mvrVCgyo.jpg", "order": 19}, {"name": "Kostja Ullmann", "character": "James", "id": 5202, "credit_id": "52fe4d64c3a36847f825e755", "cast_id": 24, "profile_path": "/zGlasppmZ86jmBfWXEvI77eGgaF.jpg", "order": 20}, {"name": "R\u00fcdiger Vogler", "character": "Thomas George", "id": 5266, "credit_id": "52fe4d64c3a36847f825e759", "cast_id": 25, "profile_path": "/dUUXAwPRMkRdv5PSGv8ndWvztDW.jpg", "order": 21}], "directors": [{"name": "Felix Fuchssteiner", "department": "Directing", "job": "Director", "credit_id": "52fe4d64c3a36847f825e6f5", "profile_path": null, "id": 239235}], "vote_average": 6.7, "runtime": 122}, "93856": {"poster_path": "/sSjARwbHdUabVJs3y1TtoCfpckx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18112929, "overview": "A group of six tourists who, looking to go off the beaten path, hire an \"extreme tour guide.\" Ignoring warnings, he takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but a deserted town since the disaster more than 25 years ago. After a brief exploration of the abandoned city, however, the group soon finds themselves stranded, only to discover that they are not alone.", "video": false, "id": 93856, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Chernobyl Diaries", "tagline": "Experience the fallout", "vote_count": 153, "homepage": "http://www.chernobyldiaries.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1991245", "adult": false, "backdrop_path": "/qDbkMnSB1Flp0krrglNtwSZTLEg.jpg", "production_companies": [{"name": "Oren Peli / Brian Witten Pictures", "id": 14734}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2012-05-24", "popularity": 0.435229543704613, "original_title": "Chernobyl Diaries", "budget": 0, "cast": [{"name": "Jesse McCartney", "character": "Chris", "id": 49915, "credit_id": "52fe49429251416c750c2393", "cast_id": 1005, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 0}, {"name": "Jonathan Sadowski", "character": "Paul", "id": 21047, "credit_id": "52fe49429251416c750c2397", "cast_id": 1006, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 1}, {"name": "Olivia Taylor Dudley", "character": "Natalie", "id": 999817, "credit_id": "52fe49429251416c750c239b", "cast_id": 1008, "profile_path": "/h7IwauTb4Zj0CNXSujNcgGixl7F.jpg", "order": 2}, {"name": "Ingrid Bols\u00f8 Berdal", "character": "Zoe", "id": 87879, "credit_id": "52fe49429251416c750c239f", "cast_id": 1010, "profile_path": "/raEPYKXAe6NP0m3WUyJDh7PQUR3.jpg", "order": 3}, {"name": "Alex Feldman", "character": "Medic Goldshmidt", "id": 109786, "credit_id": "52fe49429251416c750c23a3", "cast_id": 1012, "profile_path": "/uWle0GUJgJ5tMUGrpICcFqKy2UD.jpg", "order": 4}, {"name": "Devin Kelley", "character": "Amanda", "id": 496410, "credit_id": "52fe49429251416c750c23a7", "cast_id": 1013, "profile_path": "/zg38AcAAB2wKwBZi3FV8ikj4dZW.jpg", "order": 5}, {"name": "Nathan Phillips", "character": "Michael", "id": 60005, "credit_id": "52fe49429251416c750c23ab", "cast_id": 1014, "profile_path": "/mgR2JHtOp9sjvdj2me1p7wyJV4d.jpg", "order": 6}, {"name": "Dimitri Diatchenko", "character": "Uri", "id": 173269, "credit_id": "52fe49429251416c750c23af", "cast_id": 1015, "profile_path": "/vPScVMpccnmNQSsvYhdwGcReblD.jpg", "order": 7}, {"name": "Milutin Milo\u0161evi\u0107", "character": "Ukrainian Thug", "id": 88052, "credit_id": "532c942b9251413a7b00018d", "cast_id": 1020, "profile_path": "/iiRpc2IlTnXEpw42snIvHd1UMhb.jpg", "order": 8}, {"name": "Milo\u0161 Timotijevi\u0107", "character": "Russian Check Point Guard", "id": 938096, "credit_id": "532c943f9251413a85000176", "cast_id": 1021, "profile_path": "/61W1hJQlBfGMpFgaElEGigXihRc.jpg", "order": 9}, {"name": "Kristof Konrad", "character": "Medic Grotzky", "id": 74502, "credit_id": "53aeceba0e0a26598c0048b5", "cast_id": 1044, "profile_path": "/glLoabE6ofcj9gEW0ejwvN3CyB4.jpg", "order": 10}, {"name": "Pavel Lychnikoff", "character": "Doctor", "id": 52762, "credit_id": "54e8a4819251412eac001c5b", "cast_id": 1071, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 11}], "directors": [{"name": "Bradley Parker", "department": "Directing", "job": "Director", "credit_id": "52fe49429251416c750c237d", "profile_path": "/m8sxUdiqmDyYslCNTiFvr9i97Ag.jpg", "id": 999812}], "vote_average": 4.7, "runtime": 88}, "7451": {"poster_path": "/fPHNTG1OXFBQ6aEVO7Lv8tSgfrY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 277448382, "overview": "Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government \"recruits\" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.", "video": false, "id": 7451, "genres": [{"id": 28, "name": "Action"}], "title": "xXx", "tagline": "A New Breed Of Secret Agent.", "vote_count": 360, "homepage": "", "belongs_to_collection": {"backdrop_path": "/g9Q2dmbxd1F2hHB5VslPbqGM1JV.jpg", "poster_path": "/omRo1Pw4phlELRgYOQ7RyAlccLt.jpg", "id": 52785, "name": "xXx Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0295701", "adult": false, "backdrop_path": "/gNI9gwuzVEnDYylNvMrMLcS7IzB.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Original Film", "id": 333}, {"name": "Revolution Studios", "id": 497}], "release_date": "2002-08-09", "popularity": 1.26623878999035, "original_title": "xXx", "budget": 70000000, "cast": [{"name": "Vin Diesel", "character": "Xander Cage", "id": 12835, "credit_id": "52fe447ec3a36847f8099509", "cast_id": 8, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Asia Argento", "character": "Yelena", "id": 18514, "credit_id": "52fe447ec3a36847f809950d", "cast_id": 9, "profile_path": "/dCbZQbhfpJqPHYXGyMNf5LT5pBz.jpg", "order": 1}, {"name": "Marton Csokas", "character": "Yorgi", "id": 20982, "credit_id": "52fe447ec3a36847f8099511", "cast_id": 10, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Agent Gibbons", "id": 2231, "credit_id": "52fe447ec3a36847f8099515", "cast_id": 11, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Michael Roof", "character": "Agent Toby Lee Shavers", "id": 53347, "credit_id": "52fe447ec3a36847f8099519", "cast_id": 12, "profile_path": "/52LqQBBrjzqhcrwuh3eNMdcBPMb.jpg", "order": 4}, {"name": "Petr J\u00e1kl Jr.", "character": "Kolya", "id": 53348, "credit_id": "52fe447ec3a36847f809951d", "cast_id": 13, "profile_path": "/fvPX3S7jYXGcAxvRf3kmBKKLruz.jpg", "order": 5}, {"name": "Richy M\u00fcller", "character": "Milan Sova", "id": 2341, "credit_id": "52fe447ec3a36847f8099521", "cast_id": 14, "profile_path": "/uRHbuPfF818cC107BedRzzzQsqp.jpg", "order": 6}, {"name": "Joe Bucaro III", "character": "Virg", "id": 51302, "credit_id": "52fe447ec3a36847f8099525", "cast_id": 15, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 7}, {"name": "Eve", "character": "J.J.", "id": 230176, "credit_id": "52fe447ec3a36847f8099529", "cast_id": 16, "profile_path": "/3V7Um9JXpwcuTx6wnO2u1hZ1Jfa.jpg", "order": 8}, {"name": "Leila Arcieri", "character": "Jordan King", "id": 65240, "credit_id": "547c7a929251412d7c002f00", "cast_id": 61, "profile_path": "/mTg8yjkDHO6qoNxISuORh5gSfpF.jpg", "order": 9}, {"name": "William Hope", "character": "Agent Roger Donnan", "id": 10207, "credit_id": "547c7ab4c3a3685af000319b", "cast_id": 62, "profile_path": "/46N4dSYShHnRTcbqD7Fzfjnmvvq.jpg", "order": 10}, {"name": "Ted Maynard", "character": "James Tannick", "id": 730454, "credit_id": "547c7ad39251412d7f002dc2", "cast_id": 63, "profile_path": null, "order": 11}, {"name": "Joe Bucaro III", "character": "Virg", "id": 51302, "credit_id": "547c7af59251412d6d002d57", "cast_id": 64, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 12}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f80994e1", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.7, "runtime": 124}, "10184": {"poster_path": "/edhRz4ESv4ElTA6wWfBMurwrQwJ.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "NL", "name": "Netherlands"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177259441, "overview": "Remember that really cute guy who said he'd call...and didn't? Maybe he lost your number. Maybe he's in the hospital. Maybe he's awed by your beauty, brains or success. Or maybe He's Just Not That into You.", "video": false, "id": 10184, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "He's Just Not That Into You", "tagline": "Are you the exception...or the rule?", "vote_count": 244, "homepage": "http://www.hesjustnotthatintoyoumovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1001508", "adult": false, "backdrop_path": "/lyltBzgnMcWo13FTc1RyU8Xl1Zk.jpg", "production_companies": [{"name": "Internationale Filmproduktion Blackswan", "id": 51190}, {"name": "New Line Cinema", "id": 12}, {"name": "Flower Films (II)", "id": 19813}], "release_date": "2009-02-06", "popularity": 2.04738550634294, "original_title": "He's Just Not That Into You", "budget": 40000000, "cast": [{"name": "Jennifer Aniston", "character": "Beth", "id": 4491, "credit_id": "52fe433d9251416c75008c25", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Janine", "id": 6161, "credit_id": "52fe433d9251416c75008c29", "cast_id": 3, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Mary", "id": 69597, "credit_id": "52fe433d9251416c75008c2d", "cast_id": 4, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Ginnifer Goodwin", "character": "Gigi", "id": 417, "credit_id": "52fe433d9251416c75008c31", "cast_id": 5, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 3}, {"name": "Ben Affleck", "character": "Neil", "id": 880, "credit_id": "52fe433d9251416c75008c35", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 4}, {"name": "Kevin Connolly", "character": "Connor", "id": 16666, "credit_id": "52fe433d9251416c75008c39", "cast_id": 8, "profile_path": "/4bKLYeNGbIdFE5iEal9o8yjWQdz.jpg", "order": 5}, {"name": "Bradley Cooper", "character": "Ben", "id": 51329, "credit_id": "52fe433d9251416c75008c3d", "cast_id": 10, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 6}, {"name": "Scarlett Johansson", "character": "Anna Marks", "id": 1245, "credit_id": "52fe433d9251416c75008c41", "cast_id": 11, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 7}, {"name": "Kris Kristofferson", "character": "Ken Murphy", "id": 10823, "credit_id": "52fe433d9251416c75008c45", "cast_id": 12, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 8}, {"name": "Justin Long", "character": "Alex", "id": 15033, "credit_id": "52fe433d9251416c75008c49", "cast_id": 13, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 9}, {"name": "Annie Ilonzeh", "character": "Hot Girl", "id": 209196, "credit_id": "52fe433d9251416c75008c4d", "cast_id": 14, "profile_path": "/pClp0YqYYVjeKOzrjzS5S1Mi7GH.jpg", "order": 10}, {"name": "Hedy Burress", "character": "Laura", "id": 41558, "credit_id": "53d315810e0a262838000a0a", "cast_id": 19, "profile_path": "/mktE9DQDLIbycur8Y78QO4KscRg.jpg", "order": 11}, {"name": "Sasha Alexander", "character": "Catherine", "id": 64154, "credit_id": "53d315950e0a26284d00089d", "cast_id": 20, "profile_path": "/glTuArtuQbEbhor5MFvTdpF9IKQ.jpg", "order": 12}, {"name": "Natasha Leggero", "character": "Amber", "id": 1214835, "credit_id": "54271981c3a3680b370005bd", "cast_id": 21, "profile_path": "/xLHMLRHRrQ03zHukUNi1q5yroxt.jpg", "order": 13}], "directors": [{"name": "Ken Kwapis", "department": "Directing", "job": "Director", "credit_id": "52fe433d9251416c75008c21", "profile_path": "/oPjor2KnZcSXmtude62KT62yBsu.jpg", "id": 29009}], "vote_average": 5.9, "runtime": 129}, "11967": {"poster_path": "/wkGbwWHIM23BkmMBm7GQHaCZan8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44726644, "overview": "A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.", "video": false, "id": 11967, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Young Guns", "tagline": "Six reasons why the west was wild.", "vote_count": 71, "homepage": "", "belongs_to_collection": {"backdrop_path": "/whZZ13xGyCLFn21yVhQ9RXMSuKh.jpg", "poster_path": "/26Y1BApN2lOO18NX2ibEHOwbL1L.jpg", "id": 9329, "name": "Young Guns Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096487", "adult": false, "backdrop_path": "/llVClV0i94ELiR9dO47fJkPwbq6.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Morgan Creek Productions", "id": 10210}], "release_date": "1988-08-12", "popularity": 0.733808328947243, "original_title": "Young Guns", "budget": 13000000, "cast": [{"name": "Emilio Estevez", "character": "William H. 'Billy the Kid' Bonney", "id": 2880, "credit_id": "52fe44ab9251416c7503ce91", "cast_id": 11, "profile_path": "/2NSM4zFrw3i16UYdUhfETVjqC4I.jpg", "order": 0}, {"name": "Kiefer Sutherland", "character": "Josiah Gordon 'Doc' Scurlock", "id": 2628, "credit_id": "52fe44ab9251416c7503ce95", "cast_id": 12, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 1}, {"name": "Lou Diamond Phillips", "character": "Jose Chavez y Chavez", "id": 38560, "credit_id": "52fe44ab9251416c7503ce99", "cast_id": 13, "profile_path": "/afXcQRss7rZ6Ocx7PUQFbz7tPOm.jpg", "order": 2}, {"name": "Charlie Sheen", "character": "Dick Brewer", "id": 6952, "credit_id": "52fe44ab9251416c7503ce9d", "cast_id": 14, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 3}, {"name": "Dermot Mulroney", "character": "Dirty Steve Stephens", "id": 20212, "credit_id": "52fe44ab9251416c7503cea1", "cast_id": 15, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 4}, {"name": "Casey Siemaszko", "character": "Charles 'Charley' Bowdre", "id": 1953, "credit_id": "52fe44ab9251416c7503cea5", "cast_id": 16, "profile_path": "/kW2A2OrOMnlU7FoVDFbFmZJIUa8.jpg", "order": 5}, {"name": "Terence Stamp", "character": "John Tunstall", "id": 28641, "credit_id": "52fe44ab9251416c7503cea9", "cast_id": 17, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 6}, {"name": "Jack Palance", "character": "Lawrence G. Murphy", "id": 3785, "credit_id": "52fe44ab9251416c7503cead", "cast_id": 18, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 7}, {"name": "Terry O'Quinn", "character": "Alex McSween", "id": 12646, "credit_id": "52fe44ab9251416c7503ceb1", "cast_id": 19, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 8}, {"name": "Sharon Cain Thomas", "character": "Susan McSween", "id": 1129541, "credit_id": "52fe44ab9251416c7503ceb5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Geoffrey Blake", "character": "J. McCloskey", "id": 148122, "credit_id": "52fe44ab9251416c7503ceb9", "cast_id": 21, "profile_path": "/8DTss5Bkio4k81k6SM1AXaNfKOA.jpg", "order": 10}, {"name": "Alice Carter", "character": "Yen Sun", "id": 196629, "credit_id": "52fe44ab9251416c7503cebd", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Brian Keith", "character": "Buckshot Roberts", "id": 32791, "credit_id": "52fe44ac9251416c7503cec1", "cast_id": 23, "profile_path": "/jtM2bb1un0Lhft4H2FH6DbRd7Qd.jpg", "order": 12}, {"name": "Patrick Wayne", "character": "Patrick Floyd 'Pat' Garrett", "id": 30560, "credit_id": "52fe44ac9251416c7503cec5", "cast_id": 24, "profile_path": "/plZJV39nkOfo9kGEzmkvZKz19rU.jpg", "order": 13}], "directors": [{"name": "Christopher Cain", "department": "Directing", "job": "Director", "credit_id": "52fe44ab9251416c7503ce57", "profile_path": "/atUMxA5Anavwqdd5tH3B3S8ayli.jpg", "id": 56828}], "vote_average": 6.2, "runtime": 107}, "11968": {"poster_path": "/m64ptUEvvDDgeju5DlwKe6l92Tp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18782227, "overview": "Red-hot action superstars Paul Walker and Jessica Alba heat up the screen as two sexy young divers who dream of finding hidden treasure. When they take some friends (Scott Caan and Ashley Scott) on an extreme sport adventure, the last thing they expect to see below the shark-infested waters is a legendary pirate ship rumored to contain millions of dollars in gold.", "video": false, "id": 11968, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Into the Blue", "tagline": "Treasure Has Its Price.", "vote_count": 118, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sWnLZZaUHEKGQOVn445k91pfjrb.jpg", "poster_path": "/dbWCijxyc3YxFdiQen63GTyvu4l.jpg", "id": 174386, "name": "Into the Blue Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0378109", "adult": false, "backdrop_path": "/4MkdaWN5coyFYQs2giE4saCO1bD.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2005-09-30", "popularity": 0.643911961504459, "original_title": "Into the Blue", "budget": 50000000, "cast": [{"name": "Paul Walker", "character": "Jared", "id": 8167, "credit_id": "52fe44ac9251416c7503cf13", "cast_id": 10, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sam", "id": 56731, "credit_id": "52fe44ac9251416c7503cf17", "cast_id": 11, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Scott Caan", "character": "Bryce", "id": 1894, "credit_id": "52fe44ac9251416c7503cf1b", "cast_id": 12, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 2}, {"name": "Ashley Scott", "character": "Amanda", "id": 71128, "credit_id": "52fe44ac9251416c7503cf1f", "cast_id": 13, "profile_path": "/pHQXzpZbb1T5HobppWZtIMbjyIC.jpg", "order": 3}, {"name": "Josh Brolin", "character": "Bates", "id": 16851, "credit_id": "52fe44ac9251416c7503cf2f", "cast_id": 16, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 4}, {"name": "Chris Taloa", "character": "Quinn", "id": 57089, "credit_id": "52fe44ac9251416c7503cf33", "cast_id": 17, "profile_path": "/AlDaCxbKLaV8pcF8uuw1mhUAuHr.jpg", "order": 5}, {"name": "James Frain", "character": "Reyes", "id": 22063, "credit_id": "52fe44ac9251416c7503cf37", "cast_id": 18, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 6}, {"name": "Dwayne Adway", "character": "Roy", "id": 92589, "credit_id": "52fe44ac9251416c7503cf3b", "cast_id": 19, "profile_path": "/7JJPY8hWrdPcDFxDkj40UoYuv6W.jpg", "order": 7}, {"name": "Tyson Beckford", "character": "Primo", "id": 77072, "credit_id": "52fe44ac9251416c7503cf3f", "cast_id": 20, "profile_path": "/v1GenKXn7vE36vCLCqDWgaS7bEd.jpg", "order": 8}], "directors": [{"name": "John Stockwell", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503cef1", "profile_path": "/9AQo5W5T6vP6WTcDvHx1CbbiOzU.jpg", "id": 57082}], "vote_average": 6.0, "runtime": 110}, "11969": {"poster_path": "/yU4e7OAJruAQpAsakzbDpPsQrU7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56505065, "overview": "Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.", "video": false, "id": 11969, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 37, "name": "Western"}], "title": "Tombstone", "tagline": "Justice is coming.", "vote_count": 185, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108358", "adult": false, "backdrop_path": "/dxuhQd2sfa4lzEsRrVhiP7TAxuw.jpg", "production_companies": [{"name": "Hollywood Pictures", "id": 915}, {"name": "Cinergi Pictures Entertainment", "id": 1504}], "release_date": "1993-12-25", "popularity": 0.94823806618831, "original_title": "Tombstone", "budget": 25000000, "cast": [{"name": "Kurt Russell", "character": "Wyatt Earp", "id": 6856, "credit_id": "52fe44ac9251416c7503cfb1", "cast_id": 11, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Val Kilmer", "character": "Doc Holliday", "id": 5576, "credit_id": "52fe44ac9251416c7503cfb5", "cast_id": 12, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 1}, {"name": "Sam Elliott", "character": "Virgil Earp", "id": 16431, "credit_id": "52fe44ac9251416c7503cfb9", "cast_id": 13, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Morgan Earp", "id": 2053, "credit_id": "52fe44ac9251416c7503cfbd", "cast_id": 14, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Stephen Lang", "character": "Ike Clanton", "id": 32747, "credit_id": "52fe44ac9251416c7503cfc7", "cast_id": 16, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 4}, {"name": "Powers Boothe", "character": "Curly Bill Brocius", "id": 6280, "credit_id": "52fe44ac9251416c7503cfcb", "cast_id": 17, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 5}, {"name": "Michael Biehn", "character": "Johnny Ringo", "id": 2712, "credit_id": "52fe44ac9251416c7503cfcf", "cast_id": 18, "profile_path": "/uZvJIfVirbv32OK4nba5bMZ6t9G.jpg", "order": 6}, {"name": "Charlton Heston", "character": "Henry Hooker", "id": 10017, "credit_id": "52fe44ac9251416c7503cfd3", "cast_id": 19, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 7}, {"name": "Dana Delany", "character": "Josephine Marcus", "id": 65002, "credit_id": "52fe44ac9251416c7503cfd7", "cast_id": 20, "profile_path": "/dCvBuRdn2h4GpAfdJIzvl6MUqIG.jpg", "order": 8}, {"name": "Thomas Haden Church", "character": "Billy Clanton", "id": 19159, "credit_id": "52fe44ac9251416c7503cfdb", "cast_id": 21, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 9}, {"name": "Dana Wheeler-Nicholson", "character": "Mattie Earp", "id": 58866, "credit_id": "52fe44ac9251416c7503cfdf", "cast_id": 22, "profile_path": "/tYbrquJFfHU4KzxFQ1GXDEKYAyn.jpg", "order": 10}, {"name": "Michael Rooker", "character": "Sherman McMasters", "id": 12132, "credit_id": "52fe44ac9251416c7503cfe3", "cast_id": 23, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 11}, {"name": "Billy Bob Thornton", "character": "Johnny Tyler", "id": 879, "credit_id": "52fe44ac9251416c7503cfe7", "cast_id": 24, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 12}, {"name": "Billy Zane", "character": "Mr. Fabian", "id": 1954, "credit_id": "52fe44ac9251416c7503cfeb", "cast_id": 25, "profile_path": "/8C46fhCMhk77zlF6xjZ43VQJkv6.jpg", "order": 13}, {"name": "Michelle Beauchamp", "character": "Mexican bride (uncredited)", "id": 1333597, "credit_id": "53a8012bc3a3687a40005051", "cast_id": 36, "profile_path": "/d0PYvcpowq0OQHV5XhD0lMABQI3.jpg", "order": 14}, {"name": "Lisa Collins", "character": "Louisa Earp", "id": 936813, "credit_id": "53a804b70e0a2614320058d2", "cast_id": 37, "profile_path": "/lBHr2HDlmT6QGeLM9bCknXB5MWN.jpg", "order": 15}, {"name": "John Philbin", "character": "Tom Mclaury", "id": 103011, "credit_id": "53a810e80e0a261439005a02", "cast_id": 38, "profile_path": "/hVRZLok1DmiiUQ5lBXOYx04Ibk4.jpg", "order": 16}, {"name": "Pat Brady", "character": "Milt Joyce", "id": 1229197, "credit_id": "53a8b4e5c3a3687a40005d49", "cast_id": 39, "profile_path": "/igzT9AyyVBESOLQEEjh4ihPCUX9.jpg", "order": 17}, {"name": "Forrie J. Smith", "character": "Pony Deal", "id": 1333809, "credit_id": "53a8b8adc3a3687a34005dd7", "cast_id": 40, "profile_path": "/lDwyuYHMrCgMX8H5Nad2JM6LoL9.jpg", "order": 18}, {"name": "Bo Greigh", "character": "Wes Fuller (as W.R. Bo Gray)", "id": 68447, "credit_id": "53a8b96cc3a3687a2b006304", "cast_id": 41, "profile_path": "/fFSX6Vbp2nxf9RVhzAFyN474vGm.jpg", "order": 19}, {"name": "Christopher Mitchum", "character": "Ranch Hand", "id": 37251, "credit_id": "547a51cb925141298d00313c", "cast_id": 79, "profile_path": "/jgrG3IE77xAFAKghLHvXuhHxF84.jpg", "order": 20}, {"name": "Robert Mitchum", "character": "Narrator (voice)", "id": 10158, "credit_id": "547a51f49251414c65000478", "cast_id": 80, "profile_path": "/cKdr8wYcnAS7ywR9kmkuemY7On9.jpg", "order": 21}], "directors": [{"name": "George P. Cosmatos", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503cfc3", "profile_path": "/6DIKPjnDvr7oHgTPHTXM5te45Qt.jpg", "id": 16566}], "vote_average": 7.0, "runtime": 130}, "11970": {"poster_path": "/eFlBFMAifj436QctX3akDkUnhlk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 252712101, "overview": "Bestowed with superhuman strength, a young mortal named Hercules sets out to prove himself a hero in the eyes of his father, the great god Zeus. Along with his friends Pegasus, a flying horse, and Phil, a personal trainer, Hercules is tricked by the hilarious, hotheaded villain Hades, who's plotting to take over Mount Olympus!", "video": false, "id": 11970, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Hercules", "tagline": "Zero to Hero!", "vote_count": 344, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt0119282", "adult": false, "backdrop_path": "/clvgKN7DWTXm4b81HAHNvcvkBqX.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1997-06-27", "popularity": 1.92236528517421, "original_title": "Hercules", "budget": 85000000, "cast": [{"name": "Tate Donovan", "character": "Hercules (voice)", "id": 15455, "credit_id": "52fe44ac9251416c7503d08d", "cast_id": 16, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 0}, {"name": "Josh Keaton", "character": "Young Hercules (voice)", "id": 20903, "credit_id": "52fe44ac9251416c7503d091", "cast_id": 20, "profile_path": "/a5V2UtUKApe38ZW9OiZbFRAvvTh.jpg", "order": 1}, {"name": "Roger Bart", "character": "Young Hercules (singing voice)", "id": 45566, "credit_id": "52fe44ac9251416c7503d095", "cast_id": 21, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 2}, {"name": "Danny DeVito", "character": "Philoctetes (voice)", "id": 518, "credit_id": "52fe44ac9251416c7503d099", "cast_id": 22, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 3}, {"name": "James Woods", "character": "Hades (voice)", "id": 4512, "credit_id": "52fe44ac9251416c7503d09d", "cast_id": 23, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 4}, {"name": "Susan Egan", "character": "Meg (voice)", "id": 86128, "credit_id": "52fe44ac9251416c7503d0a1", "cast_id": 24, "profile_path": "/makjHZa6ZsjH16gLp276tB1Krd3.jpg", "order": 5}, {"name": "Bobcat Goldthwait", "character": "Pain (voice)", "id": 95024, "credit_id": "52fe44ac9251416c7503d0a5", "cast_id": 25, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 6}, {"name": "Matt Frewer", "character": "Panic (voice)", "id": 40009, "credit_id": "52fe44ac9251416c7503d0a9", "cast_id": 26, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 7}, {"name": "Rip Torn", "character": "Zeus (voice)", "id": 9626, "credit_id": "52fe44ac9251416c7503d0ad", "cast_id": 27, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 8}, {"name": "Samantha Eggar", "character": "Hera (voice)", "id": 46780, "credit_id": "52fe44ac9251416c7503d0b1", "cast_id": 28, "profile_path": "/uPcE3Vra0l4E5f8GNKUjCX88w3c.jpg", "order": 9}, {"name": "Barbara Barrie", "character": "Alcmene (voice)", "id": 1216876, "credit_id": "52fe44ac9251416c7503d0d1", "cast_id": 37, "profile_path": "/psxyqrMnZaMHmIJRvSL0bjb0sYt.jpg", "order": 10}, {"name": "Hal Holbrook", "character": "Amphitryon (voice)", "id": 11066, "credit_id": "52fe44ac9251416c7503d0b5", "cast_id": 30, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 11}, {"name": "Paul Shaffer", "character": "Hermes (voice)", "id": 69921, "credit_id": "52fe44ac9251416c7503d0b9", "cast_id": 31, "profile_path": "/gYzsDxVSklmGuHHH2wZpWljqBrJ.jpg", "order": 12}, {"name": "Amanda Plummer", "character": "The Fates (voice)", "id": 99, "credit_id": "52fe44ac9251416c7503d0bd", "cast_id": 32, "profile_path": "/uICpVUj29yBcwCEGVZzE77FL98W.jpg", "order": 13}, {"name": "Carole Shelley", "character": "Lachesis (voice)", "id": 58770, "credit_id": "52fe44ac9251416c7503d0c1", "cast_id": 33, "profile_path": "/p9XDqB8LOG09DOwGQ3EXYr78KMt.jpg", "order": 14}, {"name": "Paddi Edwards", "character": "Atropos (voice)", "id": 157660, "credit_id": "52fe44ac9251416c7503d0c5", "cast_id": 34, "profile_path": "/l5hQV4JBI2irJFYNfNxdsvXKKQz.jpg", "order": 15}, {"name": "Charlton Heston", "character": "Narrator (voice)", "id": 10017, "credit_id": "52fe44ac9251416c7503d0c9", "cast_id": 35, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 16}, {"name": "LaChanze", "character": "Terpsichore the Muse of Dance (voice)", "id": 56689, "credit_id": "52fe44ac9251416c7503d0cd", "cast_id": 36, "profile_path": "/g3P0Q3ZJZaUabXZi7gdaBzMniHh.jpg", "order": 17}], "directors": [{"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503d035", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}, {"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe44ac9251416c7503d047", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}], "vote_average": 6.7, "runtime": 93}, "28355": {"poster_path": "/xSyj4F1UVtAXhqSGpNCZRaBsKAJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29000000, "overview": "In her many years as a social worker, Emily Jenkins believes she has seen it all, until she meets 10-year-old Lilith and the girl's cruel parents. Emily's worst fears are confirmed when the parents try to harm the child, and so Emily assumes custody of Lilith while she looks for a foster family. However, Emily soon finds that dark forces surround the seemingly innocent girl, and the more she tries to protect Lilith, the more horrors she encounters.", "video": false, "id": 28355, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Case 39", "tagline": "Some cases should never be opened.", "vote_count": 106, "homepage": "http://www.case39movie.com/mainsite/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0795351", "adult": false, "backdrop_path": "/luTLwjU4WpQR2zBxJAKdK1D7C8T.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Misher Films", "id": 11581}, {"name": "Anonymous Content", "id": 10039}, {"name": "Case 39 Productions", "id": 11582}], "release_date": "2009-08-13", "popularity": 0.88459130774322, "original_title": "Case 39", "budget": 27000000, "cast": [{"name": "Ren\u00e9e Zellweger", "character": "Emily Jenkins", "id": 9137, "credit_id": "52fe458ec3a368484e06227f", "cast_id": 1, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 0}, {"name": "Jodelle Ferland", "character": "Lillith Sullivan", "id": 8338, "credit_id": "52fe458ec3a368484e062283", "cast_id": 2, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 1}, {"name": "Ian McShane", "character": "Detective Mike Barron", "id": 6972, "credit_id": "52fe458ec3a368484e062287", "cast_id": 3, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 2}, {"name": "Kerry O'Malley", "character": "Margaret Sullivan", "id": 100567, "credit_id": "52fe458ec3a368484e06228b", "cast_id": 4, "profile_path": "/j42ByTSTXyRmcN3WJAUDOkwNJvQ.jpg", "order": 3}, {"name": "Callum Keith Rennie", "character": "Edward Sullivan", "id": 540, "credit_id": "52fe458ec3a368484e06228f", "cast_id": 5, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 4}, {"name": "Bradley Cooper", "character": "Douglas J. Ames", "id": 51329, "credit_id": "52fe458ec3a368484e062293", "cast_id": 6, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 5}, {"name": "Adrian Lester", "character": "Wayne", "id": 76215, "credit_id": "52fe458ec3a368484e062297", "cast_id": 7, "profile_path": "/bgp0SyX9ZczUbEnRldpq8IimhuT.jpg", "order": 6}, {"name": "Cynthia Stevenson", "character": "Nancy", "id": 65528, "credit_id": "52fe458fc3a368484e0622d7", "cast_id": 20, "profile_path": "/b59DN25UqjxOLHVBFLMtbiOwn0W.jpg", "order": 7}, {"name": "Alexander Conti", "character": "Diego", "id": 133926, "credit_id": "52fe458fc3a368484e0622db", "cast_id": 21, "profile_path": "/xa2sfSRapHrHmRyp5aHQ7258qtG.jpg", "order": 8}, {"name": "Philip Cabrita", "character": "Javier", "id": 1120617, "credit_id": "52fe458fc3a368484e0622df", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Vanesa Tomasino", "character": "Javier's Wife", "id": 112643, "credit_id": "52fe458fc3a368484e0622e3", "cast_id": 23, "profile_path": "/bOfRnaY6JTD2PvD82HzENmysG5s.jpg", "order": 10}, {"name": "Mary Black", "character": "Custody Judge", "id": 11831, "credit_id": "52fe458fc3a368484e0622e7", "cast_id": 24, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 11}, {"name": "Domenico D'Ambrosio", "character": "Domenico D'Ambrosio", "id": 73539, "credit_id": "52fe458fc3a368484e0622eb", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Benita Ha", "character": "Therapist", "id": 75532, "credit_id": "52fe458fc3a368484e0622ef", "cast_id": 26, "profile_path": "/m1DrOGvyxNOxrx4lND5X1bgL7tx.jpg", "order": 13}, {"name": "J. Winston Carroll", "character": "Judge", "id": 1145894, "credit_id": "52fe458fc3a368484e0622f3", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Michael Bean", "character": "Co-Worker", "id": 208146, "credit_id": "52fe458fc3a368484e0622f7", "cast_id": 28, "profile_path": "/w0Ysg5vb8pJ8vEzR2IMh8YlraBG.jpg", "order": 15}, {"name": "Lesley Ewen", "character": "Co-Worker", "id": 158609, "credit_id": "52fe458fc3a368484e0622fb", "cast_id": 29, "profile_path": "/xb56wPY1VJhSMWa7Nv7ttHNLZ5k.jpg", "order": 16}, {"name": "David Patrick Green", "character": "Chief Psychiatrist", "id": 203315, "credit_id": "52fe458fc3a368484e0622ff", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Dee Jay Jackson", "character": "Bus Driver", "id": 1187262, "credit_id": "52fe458fc3a368484e062303", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Taya Calicetto", "character": "Young Emily", "id": 168569, "credit_id": "52fe458fc3a368484e062307", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Alisen Down", "character": "Emily's Mother", "id": 90813, "credit_id": "52fe458fc3a368484e06230b", "cast_id": 33, "profile_path": "/guPjTlGDeCjzSbPvlGEsT70AYNN.jpg", "order": 20}, {"name": "Darryl Quon", "character": "Inmate", "id": 62711, "credit_id": "52fe458fc3a368484e06230f", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Suzanne Bastien", "character": "Nurse", "id": 169783, "credit_id": "52fe458fc3a368484e062313", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Jane Braithwaite", "character": "Nurse", "id": 1203951, "credit_id": "52fe458fc3a368484e062317", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Colin Lawrence", "character": "Police Sergeant", "id": 37696, "credit_id": "52fe458fc3a368484e06231f", "cast_id": 38, "profile_path": "/4RpYM2hJNQXTzqDfVlv4NSAd6GG.jpg", "order": 25}, {"name": "Dagmar Midcap", "character": "News Anchor", "id": 169491, "credit_id": "52fe458fc3a368484e062323", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Fran Gebhard", "character": "Coordinator", "id": 175734, "credit_id": "52fe458fc3a368484e062327", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Bill Mondy", "character": "Interviewer", "id": 83959, "credit_id": "52fe458fc3a368484e06232b", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Andrew Airlie", "character": "Doctor", "id": 41436, "credit_id": "52fe458fc3a368484e06232f", "cast_id": 42, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 29}, {"name": "Sarah-Jane Redmond", "character": "Barron's Wife", "id": 59183, "credit_id": "52fe458fc3a368484e062333", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Charles Zuckermann", "character": "Demon Person", "id": 90726, "credit_id": "52fe458fc3a368484e062337", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Yvonne Valdez", "character": "Mrs. Lynch", "id": 1202353, "credit_id": "52fe458fc3a368484e06233b", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Paul Duchart", "character": "Priest", "id": 1203953, "credit_id": "52fe458fc3a368484e06233f", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Daniel Bacon", "character": "Businessperson", "id": 61187, "credit_id": "52fe458fc3a368484e062343", "cast_id": 47, "profile_path": "/thLJx8rAqpxGI1YlCr9SIae1JOU.jpg", "order": 34}, {"name": "Darren E. Scott", "character": "Young Cop", "id": 1070350, "credit_id": "52fe458fc3a368484e062347", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Dalias Blake", "character": "Detention Center Cop", "id": 183016, "credit_id": "52fe458fc3a368484e06234b", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Phillip Mitchell", "character": "Lead Guard", "id": 158390, "credit_id": "52fe458fc3a368484e06234f", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Camille Atebe", "character": "New Caseworker (uncredited)", "id": 206618, "credit_id": "52fe458fc3a368484e062353", "cast_id": 51, "profile_path": "/lOg3UvW7OZ4gOutPhDaNr7xwCgD.jpg", "order": 38}, {"name": "Linden Banks", "character": "Angry Man (uncredited)", "id": 168436, "credit_id": "52fe458fc3a368484e062357", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Georgia Craig", "character": "Denise (uncredited)", "id": 172925, "credit_id": "52fe458fc3a368484e06235b", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Terence Dament", "character": "Bailiff (uncredited)", "id": 208071, "credit_id": "52fe458fc3a368484e06235f", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Jillian Fargey", "character": "Foster Mom (uncredited)", "id": 116571, "credit_id": "52fe458fc3a368484e062363", "cast_id": 55, "profile_path": "/4XgUjItZtvzxaHwvDiBvRhRNiIF.jpg", "order": 42}, {"name": "Ryan Harder", "character": "Foster Brother (uncredited)", "id": 1203955, "credit_id": "52fe458fc3a368484e062367", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Adrian Hough", "character": "Man in Suit (uncredited)", "id": 11828, "credit_id": "52fe458fc3a368484e06236b", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Tiffany Lyndall-Knight", "character": "Darla - Teacher (uncredited)", "id": 125581, "credit_id": "52fe458fc3a368484e06236f", "cast_id": 58, "profile_path": "/15M9lq3ralCL1xC0bGmLkbaje7W.jpg", "order": 45}, {"name": "Hal Myshrall", "character": "Gay Adoptive Parent (uncredited)", "id": 1203958, "credit_id": "52fe458fc3a368484e062373", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "Kate Robbins", "character": "Supervisor (uncredited)", "id": 162445, "credit_id": "52fe458fc3a368484e062377", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "Michael Ryan", "character": "Foster Dad (uncredited)", "id": 189948, "credit_id": "52fe458fc3a368484e06237b", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Sadie", "character": "Terror Dog (uncredited)", "id": 1108511, "credit_id": "52fe458fc3a368484e06237f", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Norm Sherry", "character": "Principal (uncredited)", "id": 1203964, "credit_id": "52fe458fc3a368484e062383", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Cindy Sungu", "character": "Mia - Girl in Classroom (uncredited)", "id": 1203965, "credit_id": "52fe458fc3a368484e062387", "cast_id": 64, "profile_path": null, "order": 51}, {"name": "John Andrew Vaas", "character": "Inmate (uncredited)", "id": 1203966, "credit_id": "52fe458fc3a368484e06238b", "cast_id": 65, "profile_path": null, "order": 52}, {"name": "Ian Wallace", "character": "Lunatic (uncredited)", "id": 1203967, "credit_id": "52fe458fc3a368484e06238f", "cast_id": 66, "profile_path": null, "order": 53}, {"name": "Ian A. Wallace", "character": "Bald Lunatic (uncredited)", "id": 115245, "credit_id": "52fe458fc3a368484e062393", "cast_id": 67, "profile_path": null, "order": 54}, {"name": "Danny Wattley", "character": "Detention Center Cop (uncredited)", "id": 169467, "credit_id": "52fe458fc3a368484e062397", "cast_id": 68, "profile_path": null, "order": 55}, {"name": "Fulvio Cecere", "character": "Fire Marshall", "id": 65808, "credit_id": "5427afa70e0a265572001a3a", "cast_id": 72, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 56}], "directors": [{"name": "Christian Alvart", "department": "Directing", "job": "Director", "credit_id": "52fe458ec3a368484e06229d", "profile_path": null, "id": 54559}], "vote_average": 5.8, "runtime": 109}, "11974": {"poster_path": "/zPEECSo5ZOBr9oEmBLSVXcqndTO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36602000, "overview": "When secretive new neighbors move in next door, suburbanite Ray Peterson and his friends let their paranoia get the best of them as they start to suspect the newcomers of evildoings and commence an investigation. But it's hardly how Ray, who much prefers drinking beer, reading his newspaper and watching a ball game on the tube expected to spend his vacation.", "video": false, "id": 11974, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The 'Burbs", "tagline": "He's a man of peace in a savage land... Suburbia.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0096734", "adult": false, "backdrop_path": "/djcYvxheVPeDzNts7zMrprPMFtE.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1989-02-16", "popularity": 0.394251089595539, "original_title": "The 'Burbs", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Ray Peterson", "id": 31, "credit_id": "52fe44ad9251416c7503d27b", "cast_id": 8, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Carrie Fisher", "character": "Carol Peterson", "id": 4, "credit_id": "52fe44ad9251416c7503d27f", "cast_id": 9, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 1}, {"name": "Cory Danziger", "character": "Dave Peterson", "id": 71143, "credit_id": "52fe44ad9251416c7503d283", "cast_id": 10, "profile_path": "/anrgnTltTHdNJ88uAqH1z85HkvA.jpg", "order": 2}, {"name": "Bruce Dern", "character": "Mark Rumsfield", "id": 6905, "credit_id": "52fe44ad9251416c7503d287", "cast_id": 11, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 3}, {"name": "Rick Ducommun", "character": "Art Weingartner", "id": 1538, "credit_id": "52fe44ad9251416c7503d291", "cast_id": 13, "profile_path": "/d1tBYjxG2VuLX6ryj5BrrGQJ0UL.jpg", "order": 4}, {"name": "Corey Feldman", "character": "Ricky Butler", "id": 3034, "credit_id": "52fe44ad9251416c7503d295", "cast_id": 14, "profile_path": "/ouKwMKHJkqChoT2zPpQYpwjAF40.jpg", "order": 5}, {"name": "Wendy Schaal", "character": "Bonnie Rumsfield", "id": 37600, "credit_id": "52fe44ad9251416c7503d299", "cast_id": 15, "profile_path": "/dcbLX1pB6MKGGD1waXkZs0co1fj.jpg", "order": 6}, {"name": "Henry Gibson", "character": "Dr. Werner Klopek", "id": 19439, "credit_id": "52fe44ad9251416c7503d29d", "cast_id": 16, "profile_path": "/lLzzFLkPa3jKmu1sfJRxdm7zkmM.jpg", "order": 7}, {"name": "Brother Theodore", "character": "Uncle Reuben Klopek", "id": 16413, "credit_id": "52fe44ad9251416c7503d2a1", "cast_id": 17, "profile_path": "/2OLcOFM5vzJuINo8zDKWiFCRkgH.jpg", "order": 8}, {"name": "Courtney Gains", "character": "Hans Klopek", "id": 18708, "credit_id": "52fe44ad9251416c7503d2a5", "cast_id": 18, "profile_path": "/7u8dTzgr4ODfpKwdYoUlTwptoCq.jpg", "order": 9}, {"name": "Gale Gordon", "character": "Walter Seznick", "id": 83465, "credit_id": "52fe44ad9251416c7503d2a9", "cast_id": 19, "profile_path": "/9BS6No4yj3HCCgVBgJQdBSEAGIk.jpg", "order": 10}, {"name": "Dick Miller", "character": "Vic, Garbageman #1", "id": 102441, "credit_id": "52fe44ad9251416c7503d2bf", "cast_id": 23, "profile_path": "/m4Yx1MaNn3H95HLTBCMNHOfUVv8.jpg", "order": 11}, {"name": "Robert Picardo", "character": "Joe, Garbageman #2", "id": 16180, "credit_id": "52fe44ad9251416c7503d2c3", "cast_id": 24, "profile_path": "/5L0WCl3TzjeWdP8TqXfQ1n9uaOn.jpg", "order": 12}, {"name": "Franklyn Ajaye", "character": "Detective #1", "id": 44796, "credit_id": "52fe44ad9251416c7503d2c7", "cast_id": 25, "profile_path": "/iajtrycfijFWqYVqYnoa4goOtYD.jpg", "order": 13}, {"name": "Rance Howard", "character": "Detective #2", "id": 22250, "credit_id": "53832b07c3a3680595008769", "cast_id": 26, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 14}], "directors": [{"name": "Joe Dante", "department": "Directing", "job": "Director", "credit_id": "52fe44ad9251416c7503d28d", "profile_path": "/6tXq6DyArD72Nus1PBdxuksIgXo.jpg", "id": 4600}], "vote_average": 6.9, "runtime": 101}, "11977": {"poster_path": "/tv6s71pj8mhHtfk6DaSxMlu9pd7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39846344, "overview": "At an exclusive country club, an ambitious young caddy, Danny Noonan, eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.", "video": false, "id": 11977, "genres": [{"id": 35, "name": "Comedy"}], "title": "Caddyshack", "tagline": "The snobs against the slobs!", "vote_count": 99, "homepage": "", "belongs_to_collection": {"backdrop_path": "/nt3U4uU8GJz2zg2oTXSUFbFhI6j.jpg", "poster_path": "/yMNHFk8vcWSnzDduz7OZyPhCUrQ.jpg", "id": 104847, "name": "Caddyshack Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080487", "adult": false, "backdrop_path": "/kdL7CWq5msNd2CzE11fNkY0k4m7.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1980-07-25", "popularity": 0.586944695727476, "original_title": "Caddyshack", "budget": 6000000, "cast": [{"name": "Chevy Chase", "character": "Ty Webb", "id": 54812, "credit_id": "52fe44ae9251416c7503d481", "cast_id": 10, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Rodney Dangerfield", "character": "Al Czervik", "id": 3198, "credit_id": "52fe44ae9251416c7503d485", "cast_id": 11, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 1}, {"name": "Bill Murray", "character": "Carl Spackler", "id": 1532, "credit_id": "52fe44ae9251416c7503d491", "cast_id": 14, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 2}, {"name": "Ted Knight", "character": "Richter Elihu Smails", "id": 71146, "credit_id": "52fe44ae9251416c7503d489", "cast_id": 12, "profile_path": "/7KVzku5Kb5JybmLbpXNzSXbIZ4y.jpg", "order": 3}, {"name": "Michael O'Keefe", "character": "Danny Noonan", "id": 38085, "credit_id": "52fe44ae9251416c7503d48d", "cast_id": 13, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 4}, {"name": "Sarah Holcomb", "character": "Maggie O'Hooligan", "id": 55203, "credit_id": "52fe44ae9251416c7503d4a1", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Scott Colomby", "character": "Tony D'Annunzio", "id": 167367, "credit_id": "52fe44ae9251416c7503d4a5", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Cindy Morgan", "character": "Lacey Underall", "id": 2548, "credit_id": "52fe44ae9251416c7503d4a9", "cast_id": 19, "profile_path": "/iv7FOx6sann9O0SqLmHs5OFlWCz.jpg", "order": 7}, {"name": "Brian Doyle-Murray", "character": "Lou Loomis", "id": 1535, "credit_id": "52fe44ae9251416c7503d4ad", "cast_id": 20, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 8}], "directors": [{"name": "Harold Ramis", "department": "Directing", "job": "Director", "credit_id": "52fe44ae9251416c7503d497", "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "id": 1524}], "vote_average": 6.6, "runtime": 98}, "11978": {"poster_path": "/4mCuFJ0r3lV1A8Vj5tq6O9aBpjZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48814909, "overview": "Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.", "video": false, "id": 11978, "genres": [{"id": 18, "name": "Drama"}], "title": "Men of Honor", "tagline": "History is made by those who break the rules.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0203019", "adult": false, "backdrop_path": "/9ORojugWMoMUKMBmZNaDvwGAcFg.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2000-11-09", "popularity": 0.371228573845659, "original_title": "Men of Honor", "budget": 32000000, "cast": [{"name": "Robert De Niro", "character": "Master Chief Leslie W. Sunday ('Billy')", "id": 380, "credit_id": "52fe44ae9251416c7503d50d", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Cuba Gooding Jr.", "character": "Senior Chief Carl Brashear", "id": 9777, "credit_id": "52fe44ae9251416c7503d511", "cast_id": 12, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Gwen Sunday", "id": 6885, "credit_id": "52fe44ae9251416c7503d515", "cast_id": 13, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Aunjanue Ellis", "character": "Jo", "id": 53923, "credit_id": "52fe44ae9251416c7503d519", "cast_id": 14, "profile_path": "/tOfsln2Qt3P1jL7TuFiwEPcwFZB.jpg", "order": 3}, {"name": "Hal Holbrook", "character": "'Mr. Pappy'", "id": 11066, "credit_id": "5446126ac3a3684894003b8f", "cast_id": 16, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 4}, {"name": "Michael Rapaport", "character": "GM1 Snowhill", "id": 4688, "credit_id": "54ce931dc3a3687f82006331", "cast_id": 20, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 6}, {"name": "Powers Boothe", "character": "Captain Pullman", "id": 6280, "credit_id": "54461288c3a3683691001288", "cast_id": 18, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 7}, {"name": "David Keith", "character": "Captain Hartigan", "id": 18181, "credit_id": "544612a5c3a3684894003b9e", "cast_id": 19, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 8}, {"name": "Glynn Turman", "character": "Chief Floyd", "id": 114674, "credit_id": "52fe44ae9251416c7503d51d", "cast_id": 15, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 9}], "directors": [{"name": "George Tillman, Jr.", "department": "Directing", "job": "Director", "credit_id": "52fe44ae9251416c7503d4d3", "profile_path": "/np4Q1q68M8ejWmkUpChXTIVrQRO.jpg", "id": 66121}], "vote_average": 7.0, "runtime": 129}, "36557": {"poster_path": "/toEaueEfDxX57y4J5MRRA7qsy5K.jpg", "production_countries": [{"iso_3166_1": "BS", "name": "Bahamas"}, {"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 599045960, "overview": "James Bond goes on his first ever mission as a 00. Le Chiffre is a banker to the world's terrorists. He is participating in a poker game at Montenegro, where he must win back his money, in order to stay safe among the terrorist market. The boss of MI6, known simply as M sends Bond, along with Vesper Lynd to attend this game and prevent Le Chiffre from winning. Bond, using help from Felix Leiter, Mathis and having Vesper pose as his wife, enters the most important poker game in his already dangerous career. But if Bond defeats Le Chiffre, will he and Vesper Lynd remain safe?", "video": false, "id": 36557, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Casino Royale", "tagline": "Everyone has a past. Every legend has a beginning.", "vote_count": 1795, "homepage": "http://www.mgm.com/view/movie/233/Casino-Royale-(2006)/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0381061", "adult": false, "backdrop_path": "/xq6hXdBpDPIXWjtmvbFmtLvBFJt.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "Columbia Pictures", "id": 5}, {"name": "Eon Productions", "id": 7576}, {"name": "Casino Royale Productions", "id": 41053}, {"name": "Stillking Films", "id": 11345}, {"name": "Casino Royale", "id": 41054}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Government of the Commonwealth of the Bahamas", "id": 26030}, {"name": "Danjaq", "id": 10761}], "release_date": "2006-11-15", "popularity": 1.84019780367331, "original_title": "Casino Royale", "budget": 150000000, "cast": [{"name": "Daniel Craig", "character": "James Bond", "id": 8784, "credit_id": "52fe45f29251416c91043e59", "cast_id": 1, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Eva Green", "character": "Vesper Lynd", "id": 10912, "credit_id": "52fe45f29251416c91043e6f", "cast_id": 5, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Mads Mikkelsen", "character": "Le Chiffre", "id": 1019, "credit_id": "52fe45f29251416c91043e73", "cast_id": 6, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 2}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe45f29251416c91043ea3", "cast_id": 18, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Jeffrey Wright", "character": "Felix Leiter", "id": 2954, "credit_id": "52fe45f29251416c91043e77", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 4}, {"name": "Giancarlo Giannini", "character": "Ren\u00e9 Mathis", "id": 3753, "credit_id": "52fe45f29251416c91043e7b", "cast_id": 8, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 5}, {"name": "Caterina Murino", "character": "Solange Dimitrios", "id": 10916, "credit_id": "52fe45f29251416c91043e7f", "cast_id": 9, "profile_path": "/pnRNgPBVYu34ksRCUq9RFxMrYdc.jpg", "order": 6}, {"name": "Simon Abkarian", "character": "Alex Dimitrios", "id": 10917, "credit_id": "52fe45f29251416c91043e83", "cast_id": 10, "profile_path": "/oR1F42rVMY8QsmjK0R8ST4RBBe0.jpg", "order": 7}, {"name": "Isaach De Bankol\u00e9", "character": "Steven Obanno", "id": 4812, "credit_id": "52fe45f29251416c91043e87", "cast_id": 11, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 8}, {"name": "Jesper Christensen", "character": "Mr. White", "id": 2244, "credit_id": "52fe45f29251416c91043e8b", "cast_id": 12, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 9}, {"name": "Ivana Mili\u010devi\u0107", "character": "Valenka", "id": 29930, "credit_id": "52fe45f29251416c91043e8f", "cast_id": 13, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 10}, {"name": "Tobias Menzies", "character": "Villiers", "id": 10920, "credit_id": "52fe45f29251416c91043e93", "cast_id": 14, "profile_path": "/bXUpxFsIowySRyyqchaE1XprptI.jpg", "order": 11}, {"name": "Claudio Santamaria", "character": "Carlos", "id": 76339, "credit_id": "52fe45f29251416c91043e97", "cast_id": 15, "profile_path": "/ryB6SX2ahx3kaOxKeXhmTMZUFk0.jpg", "order": 12}, {"name": "Sebastien Foucan", "character": "Mollaka", "id": 94955, "credit_id": "52fe45f29251416c91043e9b", "cast_id": 16, "profile_path": "/bA8Rnww0qymoLMXSUOk6iUICe0Q.jpg", "order": 13}, {"name": "Malcolm Sinclair", "character": "Dryden", "id": 40660, "credit_id": "52fe45f29251416c91043e9f", "cast_id": 17, "profile_path": "/4dz3MZ3QZG3art7eWGY5bXfC92s.jpg", "order": 14}, {"name": "Richard Sammel", "character": "Adolph Gettler", "id": 49487, "credit_id": "53ac27830e0a2676250020cb", "cast_id": 52, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 15}, {"name": "Ludger Pistor", "character": "Mendel", "id": 1088, "credit_id": "53ac27c80e0a26760f001f57", "cast_id": 53, "profile_path": "/bhtJu7xvac15bcGGf7e6nwGOeI7.jpg", "order": 16}, {"name": "Joseph Millson", "character": "Carter", "id": 1190069, "credit_id": "53ac285d0e0a267612001e8f", "cast_id": 54, "profile_path": null, "order": 17}, {"name": "Darwin Shaw", "character": "Fisher", "id": 1070749, "credit_id": "53ac288d0e0a2676250020e9", "cast_id": 55, "profile_path": null, "order": 18}, {"name": "Clemens Schick", "character": "Kratt", "id": 213596, "credit_id": "53ac290b0e0a267619001ebf", "cast_id": 56, "profile_path": "/dPrlYNOMPMyDG0SYCVbuo2PQ8C7.jpg", "order": 19}, {"name": "Emmanuel Avena", "character": "Leo", "id": 1156342, "credit_id": "53ac29bd0e0a26761f001ea3", "cast_id": 57, "profile_path": null, "order": 20}, {"name": "Tom Chadbon", "character": "Stockbroker", "id": 125039, "credit_id": "53ac2a110e0a26760f001f8a", "cast_id": 58, "profile_path": null, "order": 21}, {"name": "Ade", "character": "Infante", "id": 2627, "credit_id": "53ac2a4b0e0a26760f001f8f", "cast_id": 59, "profile_path": null, "order": 22}, {"name": "Urbano Barberini", "character": "Tomelli", "id": 27398, "credit_id": "53ac2a820e0a26761c001f95", "cast_id": 60, "profile_path": "/e2nXmLYlYc2XQphLKeReJ1nka0O.jpg", "order": 23}, {"name": "Tsai Chin", "character": "Madame Wu", "id": 10075, "credit_id": "53ac2ac10e0a267616001ffa", "cast_id": 61, "profile_path": "/2icB7ENqRRXxqzirAH3PupzTyqQ.jpg", "order": 24}, {"name": "Lazar Ristovski", "character": "Kaminofsky", "id": 70874, "credit_id": "53ac2b0b0e0a267619001eee", "cast_id": 62, "profile_path": "/pANyfGd5U8eABBuZ6qoJSIWo6uc.jpg", "order": 25}, {"name": "Veruschka von Lehndorff", "character": "Gr\u00e4fin von Wallenstein", "id": 15199, "credit_id": "53ac2b400e0a267619001ef4", "cast_id": 63, "profile_path": "/ox6Nt1dQ6TbjZrp8Sv36V16Xsuu.jpg", "order": 26}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe45f29251416c91043e5f", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.9, "runtime": 144}, "2001": {"poster_path": "/qtQ1QAYicU3F0icIunYcFhjJ5XE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54591330, "overview": "A New York nightclub manager tries to save his brother and father from Russian mafia hit men.", "video": false, "id": 2001, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "We Own the Night", "tagline": "Two brothers on opposite sides of the law. Beyond their differences lies loyalty.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0498399", "adult": false, "backdrop_path": "/syO4HCR4t3tz6TX9CbYlW9fTQX3.jpg", "production_companies": [{"name": "2929 Productions", "id": 846}, {"name": "Industry Entertainment", "id": 376}], "release_date": "2007-05-25", "popularity": 0.219177444433717, "original_title": "We Own the Night", "budget": 21000000, "cast": [{"name": "Joaquin Phoenix", "character": "Joseph", "id": 73421, "credit_id": "52fe432ac3a36847f803f6f7", "cast_id": 2, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Eva Mendes", "character": "Amanda Juarez", "id": 8170, "credit_id": "52fe432ac3a36847f803f703", "cast_id": 5, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 1}, {"name": "Alex Veadov", "character": "Vadim Nezhinski", "id": 20563, "credit_id": "52fe432ac3a36847f803f70b", "cast_id": 7, "profile_path": "/5MNUwSmCYGFQ9ytVRYzKGZcadVq.jpg", "order": 2}, {"name": "Mark Wahlberg", "character": "Joseph Grusinsky", "id": 13240, "credit_id": "52fe432ac3a36847f803f6fb", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Burt Grusinsky", "id": 3087, "credit_id": "52fe432ac3a36847f803f6ff", "cast_id": 4, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "Antoni Corone", "character": "Michael Solo", "id": 20562, "credit_id": "52fe432ac3a36847f803f707", "cast_id": 6, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 5}, {"name": "Tony Musante", "character": "Jack Shapiro", "id": 20564, "credit_id": "52fe432bc3a36847f803f70f", "cast_id": 8, "profile_path": "/i1zETdFvGG9vnGtRvdg7PTqpJ5k.jpg", "order": 6}, {"name": "Katie Condidorio", "character": "Hazel", "id": 20566, "credit_id": "52fe432bc3a36847f803f713", "cast_id": 10, "profile_path": "/7GfJpW7rzwctgMDUdhAWskkmTTg.jpg", "order": 7}], "directors": [{"name": "James Gray", "department": "Directing", "job": "Director", "credit_id": "52fe432ac3a36847f803f6f3", "profile_path": "/y9yj1f72VATeq8JSQEvTYpQe4AP.jpg", "id": 20561}], "vote_average": 6.3, "runtime": 117}, "36586": {"poster_path": "/jlURNpXCMK830CsGRd939PJLh8c.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155010032, "overview": "A rare mutation has occurred within the vampire community - The Reaper. A vampire so consumed with an insatiable bloodlust that they prey on vampires as well as humans, transforming victims who are unlucky enough to survive into Reapers themselves. Blade is asked by the Vampire Nation for his help in preventing a nightmare plague that would wipe out both humans and vampires.", "video": false, "id": 36586, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blade II", "tagline": "Faster. Sharper. Deadlier.", "vote_count": 455, "homepage": "http://www.newline.com/properties/blade2.html", "belongs_to_collection": {"backdrop_path": "/ev9QybDDzVSahJQdOb71ZuqNVAo.jpg", "poster_path": "/ltjxGZP6aJrwjl7oOZiiZhFgkF1.jpg", "id": 735, "name": "Blade Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0187738", "adult": false, "backdrop_path": "/2n0kjNEI3uF0ju9H5jiE3rBk5C0.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}, {"name": "New Line Cinema", "id": 12}, {"name": "Amen Ra Films", "id": 421}, {"name": "Imaginary Forces", "id": 11321}], "release_date": "2002-03-21", "popularity": 1.72117268705095, "original_title": "Blade II", "budget": 54000000, "cast": [{"name": "Wesley Snipes", "character": "Blade", "id": 10814, "credit_id": "52fe45f59251416c9104450d", "cast_id": 1, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Kris Kristofferson", "character": "Whistler", "id": 10823, "credit_id": "52fe45f59251416c91044517", "cast_id": 3, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 1}, {"name": "Leonor Varela", "character": "Nyssa", "id": 10839, "credit_id": "52fe45f59251416c9104451b", "cast_id": 5, "profile_path": "/rXn3ruoRRSplCyeNXs7z9BMxHAb.jpg", "order": 2}, {"name": "Norman Reedus", "character": "Scud", "id": 4886, "credit_id": "52fe45f59251416c9104451f", "cast_id": 6, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 3}, {"name": "Thomas Kretschmann", "character": "Damaskinos", "id": 3491, "credit_id": "52fe45f59251416c91044523", "cast_id": 7, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 4}, {"name": "Luke Goss", "character": "Nomak", "id": 10843, "credit_id": "52fe45f59251416c91044527", "cast_id": 8, "profile_path": "/hlY2Jkn6wOJoo3F5h8AYaX5XHh9.jpg", "order": 5}, {"name": "Matt Schulze", "character": "Chupa", "id": 31841, "credit_id": "52fe45f59251416c9104452b", "cast_id": 9, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 6}, {"name": "Danny John-Jules", "character": "Asad", "id": 115787, "credit_id": "52fe45f59251416c9104452f", "cast_id": 10, "profile_path": "/d9yIjilG7BdiPYIsXyZBV0hCuyv.jpg", "order": 7}, {"name": "Donnie Yen", "character": "Snowman", "id": 1341, "credit_id": "52fe45f59251416c91044533", "cast_id": 11, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 8}, {"name": "Ron Perlman", "character": "Reinhardt", "id": 2372, "credit_id": "52fe45f59251416c9104453d", "cast_id": 13, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 9}, {"name": "Karel Roden", "character": "Kounen", "id": 10841, "credit_id": "52fe45f59251416c91044541", "cast_id": 14, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 10}, {"name": "Marit Velle Kile", "character": "Verlaine", "id": 10845, "credit_id": "52fe45f59251416c91044545", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Tony Curran", "character": "Priest", "id": 2220, "credit_id": "52fe45f59251416c91044549", "cast_id": 16, "profile_path": "/8ljyYhiinZD1RlVkzy0woxfu4bY.jpg", "order": 12}, {"name": "Daz Crawford", "character": "Lighthammer", "id": 10846, "credit_id": "52fe45f59251416c9104454d", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Santiago Segura", "character": "Rush", "id": 10847, "credit_id": "52fe45f59251416c91044551", "cast_id": 18, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 14}, {"name": "Samuel Le", "character": "Jigsaw", "id": 1080216, "credit_id": "52fe45f59251416c91044555", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Marek Va\u0161ut", "character": "Golem", "id": 10849, "credit_id": "52fe45f59251416c91044559", "cast_id": 20, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 16}], "directors": [{"name": "Guillermo del Toro", "department": "Directing", "job": "Director", "credit_id": "52fe45f59251416c91044513", "profile_path": "/aBPPwt3jcFw2ridEkKTgchfPaic.jpg", "id": 10828}], "vote_average": 6.0, "runtime": 117}, "64807": {"poster_path": "/hScOPtZpAxYWx2sOGcfbzYti39Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44907260, "overview": "A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match.", "video": false, "id": 64807, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grudge Match", "tagline": "DeNiro vs Stallone", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1661382", "adult": false, "backdrop_path": "/zl9KTLvet1IAJjaIWlbTSyLJ0fo.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Gerber Pictures", "id": 975}], "release_date": "2013-12-25", "popularity": 0.87642918997125, "original_title": "Grudge Match", "budget": 40000000, "cast": [{"name": "Robert De Niro", "character": "Billy 'The Kid' McDonnen", "id": 380, "credit_id": "52fe46eac3a368484e0ab157", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Sylvester Stallone", "character": "Henry 'Razor' Sharp", "id": 16483, "credit_id": "52fe46eac3a368484e0ab15b", "cast_id": 2, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 1}, {"name": "Alan Arkin", "character": "Lightning", "id": 1903, "credit_id": "52fe46eac3a368484e0ab15f", "cast_id": 4, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "Jon Bernthal", "character": "B.J.", "id": 19498, "credit_id": "52fe46eac3a368484e0ab163", "cast_id": 5, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 3}, {"name": "Kevin Hart", "character": "Dante Slate, Jr.", "id": 55638, "credit_id": "52fe46eac3a368484e0ab167", "cast_id": 6, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 4}, {"name": "Kim Basinger", "character": "Sally Rose", "id": 326, "credit_id": "52fe46eac3a368484e0ab16b", "cast_id": 7, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 5}, {"name": "LL Cool J", "character": "Frankie Brite", "id": 36424, "credit_id": "54266a7dc3a3681c25000ffb", "cast_id": 21, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 6}, {"name": "Judd Lormand", "character": "Car Salesman", "id": 990136, "credit_id": "52fe46ebc3a368484e0ab16f", "cast_id": 8, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 7}, {"name": "Nicole Andrews", "character": "Carla", "id": 1134443, "credit_id": "52fe46ebc3a368484e0ab173", "cast_id": 9, "profile_path": "/mjMSw1P3lpzH8uwBkwSQuxudQMQ.jpg", "order": 8}, {"name": "Han Soto", "character": "Kenji", "id": 1116011, "credit_id": "52fe46ebc3a368484e0ab177", "cast_id": 10, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 9}, {"name": "Griff Furst", "character": "ER Doctor", "id": 76021, "credit_id": "52fe46ebc3a368484e0ab17b", "cast_id": 11, "profile_path": "/rRAtuKLOq27DFZ0MWu6FCVbbhS8.jpg", "order": 10}, {"name": "Don Lake", "character": "Video Game Producer", "id": 27530, "credit_id": "52fe46ebc3a368484e0ab17f", "cast_id": 12, "profile_path": "/zwm0HhAhxay84Co22rSkHwhJPBG.jpg", "order": 11}, {"name": "Camden Gray", "character": "Trey", "id": 1158067, "credit_id": "52fe46ebc3a368484e0ab183", "cast_id": 13, "profile_path": "/3M6WY5xTL4ckTmQBIWjPr4xTASX.jpg", "order": 12}, {"name": "Carrie Lazar", "character": "Nora", "id": 1158068, "credit_id": "52fe46ebc3a368484e0ab187", "cast_id": 14, "profile_path": "/jAWDOiLV1qJKINQcm9HF80s4Pmw.jpg", "order": 13}, {"name": "John L. Armijo", "character": "Bar Thug", "id": 1158069, "credit_id": "52fe46ebc3a368484e0ab18b", "cast_id": 15, "profile_path": "/c52EjlXyT7khV9Nb1sqvs7QlYta.jpg", "order": 14}, {"name": "Todd Truley", "character": "Dr. Camare", "id": 156874, "credit_id": "52fe46ebc3a368484e0ab18f", "cast_id": 16, "profile_path": "/40LiLjZINuAopHCRm68326DVe85.jpg", "order": 15}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe46ebc3a368484e0ab195", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.2, "runtime": 113}, "36593": {"poster_path": "/k3F8N3jeqXOpm1qjY7mL8O6vdx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he is to find out what top terrorist, Rocco, has planned for when he escapes. Frank's wife, Jane, is desperate for a baby.. this adds to Frank's problems. A host of celebrities at the Academy awards ceremony are humiliated by Frank as he blunders his way trying to foil Rocco.", "video": false, "id": 36593, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Naked Gun 33\u2153: The Final Insult", "tagline": "A Mad Bomber is on the Loose, and If Anyone Can Stop Him....So Can Frank!", "vote_count": 80, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tqhBZVrozBXbD6VubSBQsCfI0YD.jpg", "poster_path": "/qTJ2fbdU2Ru4OGZghQB8MYofkrN.jpg", "id": 37139, "name": "Naked Gun Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110622", "adult": false, "backdrop_path": "/qsVLxe9PzMcGbpLjxMI1Hp5pDCk.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1994-03-18", "popularity": 1.08185812159411, "original_title": "The Naked Gun 33\u2153: The Final Insult", "budget": 30000000, "cast": [{"name": "Leslie Nielsen", "character": "Lt. Frank Drebin", "id": 7633, "credit_id": "52fe45f69251416c910447f1", "cast_id": 4, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 0}, {"name": "Priscilla Presley", "character": "Jane Spencer", "id": 12949, "credit_id": "52fe45f69251416c910447f5", "cast_id": 5, "profile_path": "/6YMsGky3MpDqubnfi4HqsTnMge.jpg", "order": 1}, {"name": "O.J. Simpson", "character": "Nordberg", "id": 12951, "credit_id": "52fe45f69251416c910447f9", "cast_id": 6, "profile_path": "/fOXv3fPxEimuq1pJmnxEMRjpqBg.jpg", "order": 2}, {"name": "Anna Nicole Smith", "character": "Tanya", "id": 115654, "credit_id": "52fe45f69251416c910447fd", "cast_id": 7, "profile_path": "/ceJMoFgs28s0SMsQKqvz75gGGDm.jpg", "order": 3}, {"name": "Fred Ward", "character": "Rocco", "id": 10430, "credit_id": "52fe45f69251416c91044801", "cast_id": 8, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 4}, {"name": "Kathleen Freeman", "character": "Muriel", "id": 7210, "credit_id": "52fe45f79251416c91044805", "cast_id": 9, "profile_path": "/heWbPEh1WTVS0fdv6QU61N9AuaX.jpg", "order": 5}, {"name": "George Kennedy", "character": "Ed Hocken", "id": 12950, "credit_id": "52fe45f79251416c91044809", "cast_id": 10, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 6}, {"name": "Doris Belack", "character": "Dr. Roberts", "id": 24293, "credit_id": "52fe45f79251416c91044837", "cast_id": 18, "profile_path": "/zMnTARo4GTVRLlSj6161fIXwLEU.jpg", "order": 7}, {"name": "Nigel Gibbs", "character": "Carjacker", "id": 11915, "credit_id": "52fe45f79251416c9104483b", "cast_id": 19, "profile_path": "/6AE4p72zOtpR9Q385eiwrPwGPaj.jpg", "order": 8}, {"name": "Andre Rosey Brown", "character": "Corridor Guard", "id": 95061, "credit_id": "52fe45f79251416c9104483f", "cast_id": 20, "profile_path": "/hBGsrGGzGp84ULWk6d6Fv6FxalR.jpg", "order": 9}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe45f69251416c910447e1", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 6.2, "runtime": 83}, "10195": {"poster_path": "/bIuOWTtyFPjsFDevqvF3QrD1aun.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 444115007, "overview": "Against his father Odin's will, The Mighty Thor -a powerful but arrogant warrior god -recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.", "video": false, "id": 10195, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Thor", "tagline": "Two worlds. One hero.", "vote_count": 3033, "homepage": "http://thor.marvel.com/", "belongs_to_collection": {"backdrop_path": "/FZhEgAes4PX86BJGJPXyZCXHrj.jpg", "poster_path": "/7vx64r9HS57yz2T53i31SdmqdEi.jpg", "id": 131296, "name": "Thor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800369", "adult": false, "backdrop_path": "/LvmmDZxkTDqp0DX7mUo621ahdX.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}, {"name": "Marvel Entertainment", "id": 7505}], "release_date": "2011-05-06", "popularity": 3.19638626691242, "original_title": "Thor", "budget": 150000000, "cast": [{"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe433f9251416c750091e5", "cast_id": 1, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Natalie Portman", "character": "Jane Foster", "id": 524, "credit_id": "52fe433f9251416c750091f7", "cast_id": 5, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 1}, {"name": "Tom Hiddleston", "character": "Loki", "id": 91606, "credit_id": "52fe433f9251416c750091ef", "cast_id": 3, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 2}, {"name": "Anthony Hopkins", "character": "Odin", "id": 4173, "credit_id": "52fe433f9251416c750091fb", "cast_id": 6, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 3}, {"name": "Stellan Skarsg\u00e5rd", "character": "Erik Selvig", "id": 1640, "credit_id": "52fe433f9251416c7500924d", "cast_id": 23, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 4}, {"name": "Kat Dennings", "character": "Darcy", "id": 52852, "credit_id": "52fe433f9251416c75009241", "cast_id": 18, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 5}, {"name": "Clark Gregg", "character": "Agent Coulson", "id": 9048, "credit_id": "52fe433f9251416c75009259", "cast_id": 26, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 6}, {"name": "Colm Feore", "character": "King Laufey", "id": 10132, "credit_id": "52fe433f9251416c75009261", "cast_id": 28, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 7}, {"name": "Idris Elba", "character": "Heimdall", "id": 17605, "credit_id": "52fe433f9251416c75009249", "cast_id": 22, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 8}, {"name": "Ray Stevenson", "character": "Volstagg", "id": 56614, "credit_id": "52fe433f9251416c75009255", "cast_id": 25, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 9}, {"name": "Tadanobu Asano", "character": "Hogun", "id": 13275, "credit_id": "52fe433f9251416c75009251", "cast_id": 24, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 10}, {"name": "Josh Dallas", "character": "Fandral", "id": 77880, "credit_id": "530ba81592514158ca000193", "cast_id": 36, "profile_path": "/4DoeVyhq2DSIinBvb9AOj52OUrS.jpg", "order": 11}, {"name": "Jaimie Alexander", "character": "Sif", "id": 59817, "credit_id": "52fe433f9251416c750091f3", "cast_id": 4, "profile_path": "/vPXy9FBK272nqrJDlQX9zU57vmj.jpg", "order": 12}, {"name": "Rene Russo", "character": "Frigga", "id": 14343, "credit_id": "52fe433f9251416c75009245", "cast_id": 19, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 13}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Agent Sitwell", "id": 1018947, "credit_id": "52fe433f9251416c7500926d", "cast_id": 31, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 14}, {"name": "Richard Cetrone", "character": "Frost Giant Captain", "id": 12371, "credit_id": "530fbcabc3a36829c400018b", "cast_id": 37, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 15}, {"name": "Darren Kendrick", "character": "Frost Giant Sentry", "id": 125050, "credit_id": "530fbcdbc3a36829e20001a3", "cast_id": 38, "profile_path": "/2UUPMwfDR2sldAmjAfyn9drZRJE.jpg", "order": 16}, {"name": "Joshua Cox", "character": "Frost Giant Hailstrum", "id": 78150, "credit_id": "530fbd619251411013000119", "cast_id": 39, "profile_path": "/bk2zLyfI2Hm2bv6MtdTFMVzidXw.jpg", "order": 17}, {"name": "Jamie McShane", "character": "Agent Jackson", "id": 79079, "credit_id": "52fe433f9251416c75009271", "cast_id": 32, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 18}, {"name": "J. Michael Straczynski", "character": "Townie", "id": 33045, "credit_id": "52fe433f9251416c7500927b", "cast_id": 34, "profile_path": "/eWSbZ5UQT5mqoTS6ay6VJ0SMFa5.jpg", "order": 19}, {"name": "Stan Lee", "character": "Stan the Man", "id": 7624, "credit_id": "52fe433f9251416c7500927f", "cast_id": 35, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 20}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe433f9251416c75009269", "cast_id": 30, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 21}, {"name": "Jeremy Renner", "character": "Clint Barton / Hawkeye", "id": 17604, "credit_id": "52fe433f9251416c75009265", "cast_id": 29, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 22}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe433f9251416c750091eb", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 6.4, "runtime": 115}, "8831": {"poster_path": "/jCuhVKfj0vvR7iH8D5Aa0Q1ZX8e.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101646581, "overview": "An officer for a security agency that regulates time travel, must fend for his life against a shady politician who has a tie to his past.", "video": false, "id": 8831, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Timecop", "tagline": "They killed his wife ten years ago. There's still time to save her. Murder is forever... until now.", "vote_count": 66, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mIqsp7AFmyTYjJ4N9qv3FhAUz60.jpg", "poster_path": "/u9YavRYOMT9VCwIKQsbP82fAYtD.jpg", "id": 170452, "name": "Timecop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111438", "adult": false, "backdrop_path": "/3iDik1VJkpZbmUNNOKHlWKu3or4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Renaissance Pictures", "id": 467}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Largo Entertainment", "id": 1644}, {"name": "Signature Pictures", "id": 2982}, {"name": "JVC Entertainment Networks", "id": 4248}], "release_date": "1994-09-15", "popularity": 0.35186538607218, "original_title": "Timecop", "budget": 0, "cast": [{"name": "Jean-Claude Van Damme", "character": "Max Walker", "id": 15111, "credit_id": "52fe44bbc3a36847f80a6e17", "cast_id": 9, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 0}, {"name": "Mia Sara", "character": "Melissa Walker", "id": 29091, "credit_id": "52fe44bbc3a36847f80a6e1b", "cast_id": 10, "profile_path": "/bMEDp048tU5RwHd1m5ZZMa1DgGy.jpg", "order": 1}, {"name": "Ron Silver", "character": "Senator Aaron McComb", "id": 21399, "credit_id": "52fe44bbc3a36847f80a6e1f", "cast_id": 11, "profile_path": "/kj5qwf0gprRGXOCHNmqFTbpC97H.jpg", "order": 2}, {"name": "Bruce McGill", "character": "Commander Eugene Matuzak", "id": 14888, "credit_id": "52fe44bbc3a36847f80a6e23", "cast_id": 12, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 3}, {"name": "Gloria Reuben", "character": "Fielding", "id": 21369, "credit_id": "52fe44bbc3a36847f80a6e27", "cast_id": 13, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 4}, {"name": "Scott Bellis", "character": "Ricky", "id": 61543, "credit_id": "52fe44bbc3a36847f80a6e2b", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Jason Schombing", "character": "Atwood", "id": 116047, "credit_id": "52fe44bbc3a36847f80a6e2f", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Scott Lawrence", "character": "Spota", "id": 42317, "credit_id": "52fe44bbc3a36847f80a6e33", "cast_id": 16, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 7}, {"name": "Kenneth Welsh", "character": "Utley", "id": 6074, "credit_id": "52fe44bbc3a36847f80a6e37", "cast_id": 17, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 8}, {"name": "Brent Woolsey", "character": "Shotgun", "id": 230136, "credit_id": "52fe44bbc3a36847f80a6e3b", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Brad Loree", "character": "Reyes", "id": 69614, "credit_id": "52fe44bbc3a36847f80a6e3f", "cast_id": 19, "profile_path": "/gJ463E0Qyt19Qh3r4c5AzCnXNOF.jpg", "order": 10}, {"name": "Shane Kelly", "character": "Rollerblades", "id": 173310, "credit_id": "52fe44bbc3a36847f80a6e43", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Richard Faraci", "character": "Cole", "id": 946657, "credit_id": "52fe44bbc3a36847f80a6e47", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Steven Lambert", "character": "Lansing", "id": 99856, "credit_id": "52fe44bbc3a36847f80a6e4b", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Kevin McNulty", "character": "Parker", "id": 27111, "credit_id": "52fe44bbc3a36847f80a6e4f", "cast_id": 23, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 14}], "directors": [{"name": "Peter Hyams", "department": "Directing", "job": "Director", "credit_id": "52fe44bbc3a36847f80a6de9", "profile_path": "/zbELGEBxySY0KqZv63DXeJdfMVU.jpg", "id": 37710}], "vote_average": 5.3, "runtime": 99}, "8584": {"poster_path": "/wcG2PA66Fbv2l7r0n59x1nuB5fd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56932305, "overview": "Chon Wang, a clumsy imperial guard trails Princess Pei Pei when she is kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.", "video": false, "id": 8584, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Shanghai Noon", "tagline": "The old west meets the far east.", "vote_count": 177, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xkA3OKXATV7c0hIXoETdHXUIpE8.jpg", "poster_path": "/mycCmimAQ1mDsWweKQQimCkPtDh.jpg", "id": 59567, "name": "Shanghai Noon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0184894", "adult": false, "backdrop_path": "/rvDGcsIOhtEMkxs5yhhyZ1nsS6E.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2000-05-26", "popularity": 0.801812820857848, "original_title": "Shanghai Noon", "budget": 55000000, "cast": [{"name": "Jackie Chan", "character": "Chon Wang", "id": 18897, "credit_id": "52fe44afc3a36847f80a4415", "cast_id": 4, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Roy O'Bannon", "id": 887, "credit_id": "52fe44afc3a36847f80a4419", "cast_id": 5, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Lucy Liu", "character": "Princess Pei Pei", "id": 140, "credit_id": "52fe44afc3a36847f80a441d", "cast_id": 6, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 2}, {"name": "Xander Berkeley", "character": "Nathan Van Cleef", "id": 3982, "credit_id": "52fe44afc3a36847f80a4457", "cast_id": 16, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 3}, {"name": "Brandon Merrill", "character": "Indian Wife", "id": 554278, "credit_id": "52fe44afc3a36847f80a445b", "cast_id": 17, "profile_path": "/5xEfRbl76OV6etF5EnaWr5B4GtP.jpg", "order": 4}, {"name": "Roger Yuan", "character": "Lo Fong", "id": 2974, "credit_id": "52fe44afc3a36847f80a445f", "cast_id": 18, "profile_path": "/mocNZK4KHv3j9os7tsS7b9B9ecK.jpg", "order": 5}, {"name": "Yu Rong-Guang", "character": "Imperial Guard", "id": 120725, "credit_id": "52fe44afc3a36847f80a4463", "cast_id": 19, "profile_path": "/9LxWXXXJM8R0O9LGnec3ajURVfa.jpg", "order": 6}, {"name": "Ya Hi Cui", "character": "Imperial Guard", "id": 554279, "credit_id": "52fe44afc3a36847f80a4467", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Eric Chen", "character": "Imperial Guard", "id": 114697, "credit_id": "52fe44afc3a36847f80a446b", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Jason Connery", "character": "Andrews", "id": 25527, "credit_id": "52fe44afc3a36847f80a446f", "cast_id": 22, "profile_path": "/3FtItU3E6WoaaQayzFFTxyUWuAR.jpg", "order": 9}, {"name": "Walton Goggins", "character": "Wallace", "id": 27740, "credit_id": "52fe44afc3a36847f80a4473", "cast_id": 23, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 10}, {"name": "Adrien Dorval", "character": "Blue", "id": 43933, "credit_id": "52fe44afc3a36847f80a4477", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Rafael B\u00e1ez", "character": "Vasquez", "id": 96322, "credit_id": "52fe44afc3a36847f80a447b", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Stacy Grant", "character": "Hooker in Distress", "id": 123972, "credit_id": "52fe44afc3a36847f80a447f", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Kate Luyben", "character": "Fifi", "id": 119757, "credit_id": "52fe44afc3a36847f80a4483", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Henry O", "character": "Royal Interpreter", "id": 39829, "credit_id": "52fe44afc3a36847f80a4487", "cast_id": 28, "profile_path": "/cJ7rk3cmGOc0m1T90oPgZylntcs.jpg", "order": 15}, {"name": "Russell Badger", "character": "Sioux Chief", "id": 222559, "credit_id": "52fe44afc3a36847f80a448b", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Simon Baker", "character": "Little Feather", "id": 211568, "credit_id": "52fe44afc3a36847f80a448f", "cast_id": 30, "profile_path": "/kKf3bmcbh777w1TLtwA9Fe7UtSS.jpg", "order": 17}, {"name": "Sam Simon", "character": "Chief's Sidekick", "id": 162690, "credit_id": "52fe44afc3a36847f80a4493", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Alan C. Peterson", "character": "Saddle Rock Sheriff", "id": 52703, "credit_id": "52fe44afc3a36847f80a4497", "cast_id": 32, "profile_path": "/esrNQmnKq7GYF810l3MmoKjYpsn.jpg", "order": 19}, {"name": "Rad Daly", "character": "Saddle Rock Deputy", "id": 180467, "credit_id": "52fe44afc3a36847f80a449b", "cast_id": 33, "profile_path": null, "order": 20}], "directors": [{"name": "Tom Dey", "department": "Directing", "job": "Director", "credit_id": "52fe44afc3a36847f80a4405", "profile_path": "/7YmdGtMlVmxwky3hWcDOPTZ5rv3.jpg", "id": 46076}], "vote_average": 6.0, "runtime": 110}, "642": {"poster_path": "/80IUdG7G5NTGbl6K5zVxXSFvSVw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102308889, "overview": "In late 1890s Wyoming, Butch Cassidy is the affable, clever, talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot \"Sundance Kid\". As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all.", "video": false, "id": 642, "genres": [{"id": 37, "name": "Western"}], "title": "Butch Cassidy and the Sundance Kid", "tagline": "Not that it matters, but most of it is true.", "vote_count": 225, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0064115", "adult": false, "backdrop_path": "/pV3LyrIFTodujodc9mceF92zZog.jpg", "production_companies": [{"name": "Campanile Productions", "id": 381}, {"name": "Newman-Foreman Productions", "id": 382}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1969-09-23", "popularity": 1.06563737482761, "original_title": "Butch Cassidy and the Sundance Kid", "budget": 6000000, "cast": [{"name": "Paul Newman", "character": "Butch Cassidy", "id": 3636, "credit_id": "52fe4263c3a36847f801a853", "cast_id": 17, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 0}, {"name": "Robert Redford", "character": "Sundance Kid", "id": 4135, "credit_id": "52fe4263c3a36847f801a857", "cast_id": 18, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 1}, {"name": "Katharine Ross", "character": "Etta Place", "id": 9594, "credit_id": "52fe4263c3a36847f801a85b", "cast_id": 19, "profile_path": "/KtXzfeLdU8NtwjSPOQ9dvBqQeS.jpg", "order": 2}, {"name": "Strother Martin", "character": "Percy Garris", "id": 8260, "credit_id": "52fe4263c3a36847f801a85f", "cast_id": 20, "profile_path": "/64R2JqNX6MQMBZZK8wkXXKM9pTF.jpg", "order": 3}, {"name": "Henry Jones", "character": "Bike Salesman", "id": 5732, "credit_id": "52fe4263c3a36847f801a863", "cast_id": 21, "profile_path": "/hOO3CG2qUq6wvM4BkjtJ05kIU1C.jpg", "order": 4}, {"name": "Jeff Corey", "character": "Sheriff Ray Bledsoe", "id": 9596, "credit_id": "52fe4263c3a36847f801a867", "cast_id": 22, "profile_path": "/jlc4DLs99u7f9HOoco3dv5DBAoJ.jpg", "order": 5}, {"name": "George Furth", "character": "Woodcock", "id": 9597, "credit_id": "52fe4263c3a36847f801a86b", "cast_id": 23, "profile_path": "/sSku0t0IXJRj3GmHNWSIivYPCT3.jpg", "order": 6}, {"name": "Cloris Leachman", "character": "Agnes", "id": 9599, "credit_id": "52fe4263c3a36847f801a86f", "cast_id": 24, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 7}, {"name": "Ted Cassidy", "character": "Harvey Logan", "id": 9600, "credit_id": "52fe4263c3a36847f801a873", "cast_id": 25, "profile_path": "/nyWixXutQVZPiqijRnvUYkf2OTB.jpg", "order": 8}, {"name": "Kenneth Mars", "character": "Marshal", "id": 9601, "credit_id": "52fe4263c3a36847f801a877", "cast_id": 26, "profile_path": "/xS8r7UXRtBLLCa5MPo0zYP66VlZ.jpg", "order": 9}, {"name": "Donnelly Rhodes", "character": "Macon", "id": 9602, "credit_id": "52fe4263c3a36847f801a87b", "cast_id": 27, "profile_path": "/u9UIgXuCIZXgNB6GHvzvBhJyQkX.jpg", "order": 10}, {"name": "Jody Gilbert", "character": "Large Woman", "id": 34472, "credit_id": "52fe4263c3a36847f801a87f", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Timothy Scott", "character": "News Carver", "id": 83411, "credit_id": "52fe4263c3a36847f801a883", "cast_id": 29, "profile_path": "/yB5RGTuVXGfFBnlduvgSA0kT68m.jpg", "order": 12}, {"name": "Don Keefer", "character": "Fireman", "id": 104630, "credit_id": "52fe4263c3a36847f801a887", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Charles Dierkop", "character": "Flat Nose Curry", "id": 15988, "credit_id": "52fe4263c3a36847f801a88b", "cast_id": 31, "profile_path": "/6gAnOws0RfFg9eKvxfPv4gvHMUm.jpg", "order": 14}, {"name": "Pancho C\u00f3rdova", "character": "Bank Manager", "id": 19447, "credit_id": "52fe4263c3a36847f801a88f", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Nelson Olmsted", "character": "Photographer", "id": 91222, "credit_id": "52fe4263c3a36847f801a893", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Paul Bryar", "character": "Card Player #1", "id": 34609, "credit_id": "52fe4263c3a36847f801a897", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Sam Elliott", "character": "Card Player #2", "id": 16431, "credit_id": "52fe4263c3a36847f801a89b", "cast_id": 35, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 18}, {"name": "Charles Akins", "character": "Bank Teller", "id": 1077251, "credit_id": "52fe4263c3a36847f801a89f", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Eric Sinclair", "character": "Tiffany's Salesman", "id": 102791, "credit_id": "52fe4263c3a36847f801a8a3", "cast_id": 37, "profile_path": null, "order": 20}], "directors": [{"name": "George Roy Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4263c3a36847f801a7f5", "profile_path": "/qUTS8j1sQNeqq1YOiW8ihz0gQNs.jpg", "id": 9577}], "vote_average": 6.7, "runtime": 110}, "200462": {"poster_path": "/qHqZ9zuwZAByQgjItecVtJCKSN.jpg", "production_countries": [], "revenue": 0, "overview": "In this modern retelling of the classic horror tale, teen siblings are enslaved by a psychotic recluse within her gruesome house of horrors in the woods.", "video": false, "id": 200462, "genres": [{"id": 27, "name": "Horror"}], "title": "Hansel & Gretel", "tagline": "A Classic Tale... Horrifyingly Real", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2415464", "adult": false, "backdrop_path": "/yKq6pahQnYNGpTRm85sOoIqUbpm.jpg", "production_companies": [{"name": "The Asylum", "id": 1311}], "release_date": "2013-01-07", "popularity": 0.236498099619639, "original_title": "Hansel & Gretel", "budget": 135000, "cast": [{"name": "Dee Wallace", "character": "Lilith", "id": 62001, "credit_id": "52fe4c87c3a368484e1bb0c5", "cast_id": 3, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 0}, {"name": "Stephanie Greco", "character": "Gretel Grimm", "id": 1072141, "credit_id": "52fe4c87c3a368484e1bb0c9", "cast_id": 4, "profile_path": "/zSRLQIzMfywMxme2fy7pTnzSZG2.jpg", "order": 1}, {"name": "Brent Lydic", "character": "Hansel Grimm", "id": 134453, "credit_id": "52fe4c87c3a368484e1bb0cd", "cast_id": 5, "profile_path": "/hPHy4db07S0IAfbrCLFq2nrhmuT.jpg", "order": 2}, {"name": "Jasper Cole", "character": "John", "id": 945542, "credit_id": "52fe4c87c3a368484e1bb0d1", "cast_id": 6, "profile_path": "/zsHc9mShZQsSG8XItQ6wiRAnWBi.jpg", "order": 3}, {"name": "Sara Fletcher", "character": "Jane", "id": 1044567, "credit_id": "52fe4c87c3a368484e1bb0d5", "cast_id": 7, "profile_path": "/paM68WgKBTs00w8QVeFaQxfEDkd.jpg", "order": 4}, {"name": "M. Steven Felty", "character": "Sheriff Woody Meckes", "id": 1000555, "credit_id": "52fe4c87c3a368484e1bb0d9", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Clark Perry", "character": "Kevin", "id": 111018, "credit_id": "52fe4c87c3a368484e1bb0dd", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Frank Giarmona", "character": "Bobby", "id": 1157372, "credit_id": "52fe4c87c3a368484e1bb0e1", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Trish Coren", "character": "Ruby Lumiers", "id": 168914, "credit_id": "52fe4c87c3a368484e1bb0e5", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Steve Hanks", "character": "Brandon Grimm", "id": 174331, "credit_id": "52fe4c87c3a368484e1bb0e9", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Adrian Bustamante", "character": "Deputy Jerry Carter", "id": 1157373, "credit_id": "52fe4c87c3a368484e1bb0ed", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Lydia Woods", "character": "Dana", "id": 1157374, "credit_id": "52fe4c87c3a368484e1bb0f1", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Mariangela Pagan", "character": "Sylvia", "id": 1157375, "credit_id": "52fe4c87c3a368484e1bb0f5", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Jonathan Nation", "character": "Jane's Father", "id": 95988, "credit_id": "52fe4c87c3a368484e1bb0f9", "cast_id": 16, "profile_path": "/yhIRbVE9dWZlzCQFoe00fkA2Es4.jpg", "order": 13}, {"name": "Jerey Basia", "character": "Double", "id": 1157376, "credit_id": "52fe4c87c3a368484e1bb0fd", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Anthony C. Ferrante", "department": "Directing", "job": "Director", "credit_id": "52fe4c87c3a368484e1bb0bb", "profile_path": null, "id": 85822}], "vote_average": 5.3, "runtime": 90}, "48138": {"poster_path": "/qSBQP7L0ApBpFbAUIOtmg08k5aK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 134887487, "overview": "An American biologist attending a conference in Berlin awakens from a coma after a car accident, only to discover that someone has taken his identity and that no one, not even his wife, believes him. With the help of an illegal immigrant and a former Stazi agent, he sets out to prove who he is and find out why people are trying to kill him.", "video": false, "id": 48138, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Unknown", "tagline": "Take Back Your Life", "vote_count": 395, "homepage": "http://unknownmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1401152", "adult": false, "backdrop_path": "/ueMSXqgN3FOF8y8fym7ntJqtAP.jpg", "production_companies": [{"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Horticus UK", "id": 12409}, {"name": "Studio Babelsberg", "id": 264}, {"name": "Panda Productions Inc.", "id": 12408}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}, {"name": "StudioCanal", "id": 694}], "release_date": "2011-02-18", "popularity": 0.948079560426324, "original_title": "Unknown", "budget": 30000000, "cast": [{"name": "Liam Neeson", "character": "Dr. Martin Harris", "id": 3896, "credit_id": "52fe4755c3a36847f813003d", "cast_id": 2, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Diane Kruger", "character": "Gina", "id": 9824, "credit_id": "52fe4755c3a36847f8130041", "cast_id": 3, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "January Jones", "character": "Elizabeth Harris", "id": 31717, "credit_id": "52fe4755c3a36847f8130039", "cast_id": 1, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 2}, {"name": "Aidan Quinn", "character": "Martin B.", "id": 18992, "credit_id": "52fe4755c3a36847f8130049", "cast_id": 5, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 3}, {"name": "Bruno Ganz", "character": "Ernst J\u00fcrgen", "id": 2310, "credit_id": "52fe4755c3a36847f813004d", "cast_id": 6, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 4}, {"name": "Frank Langella", "character": "Rodney Cole", "id": 8924, "credit_id": "52fe4755c3a36847f8130045", "cast_id": 4, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 5}, {"name": "Sebastian Koch", "character": "Professor Leo Bressler", "id": 8197, "credit_id": "52fe4755c3a36847f8130051", "cast_id": 7, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 6}, {"name": "Olivier Schneider", "character": "Smith", "id": 228881, "credit_id": "52fe4756c3a36847f81300bb", "cast_id": 38, "profile_path": "/Rt8nyGh8f3GB0FREQx7Z7fhFiW.jpg", "order": 7}, {"name": "Stipe Erceg", "character": "Jones", "id": 3933, "credit_id": "52fe4756c3a36847f81300bf", "cast_id": 39, "profile_path": "/s0Lx2gI5PKHXYmIU3kOD0h1PJCG.jpg", "order": 8}, {"name": "Rainer Bock", "character": "Herr Strauss", "id": 65054, "credit_id": "52fe4756c3a36847f81300c3", "cast_id": 40, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 9}, {"name": "Mido Hamada", "character": "Prince Shada", "id": 107561, "credit_id": "52fe4756c3a36847f81300c7", "cast_id": 41, "profile_path": null, "order": 10}, {"name": "Clint Dyer", "character": "Biko", "id": 109383, "credit_id": "52fe4756c3a36847f81300cb", "cast_id": 42, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 11}, {"name": "Karl Markovics", "character": "Dr. Farge", "id": 38459, "credit_id": "52fe4756c3a36847f81300cf", "cast_id": 43, "profile_path": "/9ryaqvn9VnqHE97stunzmyNEyaG.jpg", "order": 12}, {"name": "Eva L\u00f6bau", "character": "Nurse Gretchen Erfurt", "id": 7161, "credit_id": "52fe4756c3a36847f81300d3", "cast_id": 44, "profile_path": null, "order": 13}, {"name": "Helen Wiebensohn", "character": "Laurel Bressler", "id": 971357, "credit_id": "52fe4756c3a36847f81300d7", "cast_id": 45, "profile_path": null, "order": 14}, {"name": "Adnan Maral", "character": "Turkish Taxi Driver", "id": 20615, "credit_id": "52fe4756c3a36847f81300df", "cast_id": 47, "profile_path": "/8SN3NFLx9oAQSeHvxpF269uxOuw.jpg", "order": 15}, {"name": "Merle Wiebensohn", "character": "Lily Bressler", "id": 971358, "credit_id": "52fe4756c3a36847f81300db", "cast_id": 46, "profile_path": null, "order": 16}, {"name": "Torsten Michaelis", "character": "Airport Taxi Driver", "id": 38622, "credit_id": "52fe4756c3a36847f81300e3", "cast_id": 48, "profile_path": null, "order": 17}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe4755c3a36847f8130057", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 6.2, "runtime": 113}, "246403": {"poster_path": "/ntxILPesM4IRumijc1DRJQTks9t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When his best friend and podcast co-host goes missing in the backwoods of Canada, a young guy joins forces with his friend's girlfriend to search for him.", "video": false, "id": 246403, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Tusk", "tagline": "Let me tell you a story...", "vote_count": 68, "homepage": "http://tuskthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3099498", "adult": false, "backdrop_path": "/8EQg8fsxEElycBPSb0JszATwm1l.jpg", "production_companies": [{"name": "Phase 4 Films", "id": 9081}, {"name": "Demarest Films", "id": 13241}, {"name": "SModcast Pictures", "id": 13642}], "release_date": "2014-09-19", "popularity": 0.523441182657098, "original_title": "Tusk", "budget": 3500000, "cast": [{"name": "Michael Parks", "character": "Howard Howe", "id": 2536, "credit_id": "52fe4f13c3a36847f82bbd8d", "cast_id": 1, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 0}, {"name": "Justin Long", "character": "Wallace Bryton", "id": 15033, "credit_id": "52fe4f13c3a36847f82bbd91", "cast_id": 2, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Haley Joel Osment", "character": "Teddy", "id": 9640, "credit_id": "52fe4f13c3a36847f82bbd95", "cast_id": 3, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 2}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Allison", "id": 589162, "credit_id": "52fe4f13c3a36847f82bbd99", "cast_id": 4, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 3}, {"name": "Ralph Garman", "character": "Frank Garmin", "id": 60286, "credit_id": "52fe4f13c3a36847f82bbd9d", "cast_id": 5, "profile_path": "/vMzb4yCslLhJb7CQkS3R1jbyCO6.jpg", "order": 4}, {"name": "Johnny Depp", "character": "Guy Lapointe", "id": 85, "credit_id": "534d5f380e0a2679eb000218", "cast_id": 8, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 5}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4f13c3a36847f82bbda3", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.0, "runtime": 102}, "8836": {"poster_path": "/kp24ckPKVTOyvvXs7bVofDiupPe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68369434, "overview": "Six years after the events of The X-Files series finale, former FBI agent Doctor Dana Scully is now a staff physician at Our Lady of Sorrows, a Catholic hospital, and treating a boy named Christian who has Sandhoff disease, a terminal brain condition. FBI agent Drummy arrives to ask Scully\u2019s help in locating Fox Mulder, the fugitive former head of the X-Files division, and says they will call off its manhunt for him if he will help investigate the disappearances of several women, including young FBI agent Monica Banan. Mulder and Scully are called back to duty by the FBI when a former priest claims to be receiving psychic visions pertaining to a kidnapped agent.", "video": false, "id": 8836, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The X Files: I Want to Believe", "tagline": "To find the truth, you must believe.", "vote_count": 110, "homepage": "http://www.xfiles.com/", "belongs_to_collection": {"backdrop_path": "/22p3xTTuXc9FEnzyGlfB9KBtR4Y.jpg", "poster_path": "/aeIYknSlbIsjPTJQDExXXuKGRLb.jpg", "id": 19387, "name": "The X-Files Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443701", "adult": false, "backdrop_path": "/g5kxq91Szin6gPaSF9yBT30V1H2.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2008-07-25", "popularity": 0.872538510948042, "original_title": "The X Files: I Want to Believe", "budget": 0, "cast": [{"name": "David Duchovny", "character": "Fox Mulder", "id": 12640, "credit_id": "52fe44bcc3a36847f80a7215", "cast_id": 1, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 0}, {"name": "Gillian Anderson", "character": "Dana Scully", "id": 12214, "credit_id": "52fe44bcc3a36847f80a7219", "cast_id": 2, "profile_path": "/uXw82aq2bH7GUYQIaoihXwDolLK.jpg", "order": 1}, {"name": "Amanda Peet", "character": "ASAC Dakota Whitney", "id": 2956, "credit_id": "52fe44bcc3a36847f80a722f", "cast_id": 6, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 2}, {"name": "Billy Connolly", "character": "Father Joseph Crissman", "id": 9188, "credit_id": "52fe44bcc3a36847f80a7233", "cast_id": 7, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 3}, {"name": "Xzibit", "character": "Agent Mosley Drummy", "id": 336, "credit_id": "52fe44bcc3a36847f80a7237", "cast_id": 8, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 4}, {"name": "Mitch Pileggi", "character": "Walter Skinner", "id": 12644, "credit_id": "52fe44bcc3a36847f80a723b", "cast_id": 9, "profile_path": "/yJhcdFVtc2J6Nnqz7rcYB7GI4P9.jpg", "order": 5}, {"name": "Callum Keith Rennie", "character": "Janke Dacyshyn (2nd Abductor)", "id": 540, "credit_id": "52fe44bcc3a36847f80a723f", "cast_id": 10, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 6}, {"name": "Adam Godley", "character": "Father Ybarra", "id": 23429, "credit_id": "52fe44bcc3a36847f80a7243", "cast_id": 11, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 7}, {"name": "Alex Diakun", "character": "Gaunt Man", "id": 32749, "credit_id": "52fe44bcc3a36847f80a7247", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Nicki Aycox", "character": "Cheryl Cunningham (2nd Victim)", "id": 42374, "credit_id": "52fe44bcc3a36847f80a724b", "cast_id": 13, "profile_path": "/nuq3ChJ6arKPgpM3MTnaE4bgavn.jpg", "order": 9}, {"name": "Fagin Woodcock", "character": "Franz Tomczeszyn (1st Abductor)", "id": 112633, "credit_id": "52fe44bcc3a36847f80a724f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Marco Niccoli", "character": "Christian Fearon", "id": 112634, "credit_id": "52fe44bcc3a36847f80a7253", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Carrie Ruscheinsky", "character": "Margaret Fearon", "id": 112635, "credit_id": "52fe44bcc3a36847f80a7257", "cast_id": 16, "profile_path": "/5MlGQ0f4eLVh0MyHPEcs1GTlZDM.jpg", "order": 12}, {"name": "Spencer Maybee", "character": "Blair Fearon", "id": 112636, "credit_id": "52fe44bcc3a36847f80a725b", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Veronika Hadrava", "character": "Female Assistant", "id": 112637, "credit_id": "52fe44bcc3a36847f80a725f", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Denis Krasnogolov", "character": "Male Assistant", "id": 112638, "credit_id": "52fe44bcc3a36847f80a7263", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Patrick Keating", "character": "Slight Man", "id": 112639, "credit_id": "52fe44bcc3a36847f80a7267", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Roger Horchow", "character": "Elderly Gent", "id": 112640, "credit_id": "52fe44bcc3a36847f80a726b", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Stephen E. Miller", "character": "Feed Store Proprietor", "id": 75467, "credit_id": "52fe44bcc3a36847f80a726f", "cast_id": 22, "profile_path": "/d06RqoXxwaR0E6ZvVkthxy6RIpw.jpg", "order": 18}, {"name": "Xantha Radley", "character": "Monica Bannan", "id": 56750, "credit_id": "52fe44bcc3a36847f80a7273", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Lorena Gale", "character": "On Screen Doctor", "id": 80348, "credit_id": "52fe44bcc3a36847f80a7277", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Donavon Stinson", "character": "Suited Man", "id": 72045, "credit_id": "52fe44bcc3a36847f80a727b", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Dion Johnstone", "character": "1st Cop", "id": 112641, "credit_id": "52fe44bcc3a36847f80a727f", "cast_id": 26, "profile_path": "/EcvgtxrZfkKMvjrq0nOWuUi6j8.jpg", "order": 22}, {"name": "Sarah-Jane Redmond", "character": "Special Agent in Charge", "id": 59183, "credit_id": "52fe44bcc3a36847f80a7283", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Christina D'Alimonte", "character": "Doctor's Colleague", "id": 112642, "credit_id": "52fe44bcc3a36847f80a7287", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Vanesa Tomasino", "character": "Hallway Agent", "id": 112643, "credit_id": "52fe44bcc3a36847f80a728b", "cast_id": 29, "profile_path": "/bOfRnaY6JTD2PvD82HzENmysG5s.jpg", "order": 25}, {"name": "Luvia Petersen", "character": "O.R. Nurse", "id": 112644, "credit_id": "52fe44bcc3a36847f80a728f", "cast_id": 30, "profile_path": "/7KqXIL1nEKurXVYvgx3guxrOx4b.jpg", "order": 26}, {"name": "Babs Chula", "character": "Surgeon", "id": 106532, "credit_id": "52fe44bcc3a36847f80a7293", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Marci T. House", "character": "Sheriff", "id": 112645, "credit_id": "52fe44bcc3a36847f80a7297", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Joseph Patrick Finn", "character": "Whispering Priest", "id": 72069, "credit_id": "52fe44bcc3a36847f80a729b", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Beth Siegler", "character": "Anesthesiologist", "id": 112646, "credit_id": "52fe44bcc3a36847f80a729f", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Stacee Copeland", "character": "Doctor", "id": 112647, "credit_id": "52fe44bcc3a36847f80a72a3", "cast_id": 35, "profile_path": "/ghVF1fBWrIUcHlMIIYid20pjGc3.jpg", "order": 31}, {"name": "Tom Charron", "character": "Sheriff Horton", "id": 112648, "credit_id": "52fe44bcc3a36847f80a72a7", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Brent O'Connor", "character": "Tow Truck Driver", "id": 112649, "credit_id": "52fe44bcc3a36847f80a72ab", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Dave Cote", "character": "D-Man", "id": 91328, "credit_id": "52fe44bcc3a36847f80a72af", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Chris Carter", "character": "Man sitting in hospital hallway", "id": 12524, "credit_id": "52fe44bcc3a36847f80a72b3", "cast_id": 39, "profile_path": "/zounIvyL7xYbIuXrrKVnm6LDfi0.jpg", "order": 35}, {"name": "Paul Mitton", "character": "FBI Agent", "id": 112650, "credit_id": "52fe44bcc3a36847f80a72b7", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Vanessa Morley", "character": "Female Hallway Agent", "id": 112651, "credit_id": "52fe44bcc3a36847f80a72bb", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Michael Stevens", "character": "Board Room Doctor", "id": 112652, "credit_id": "52fe44bcc3a36847f80a72bf", "cast_id": 42, "profile_path": null, "order": 38}], "directors": [{"name": "Chris Carter", "department": "Directing", "job": "Director", "credit_id": "52fe44bcc3a36847f80a721f", "profile_path": "/zounIvyL7xYbIuXrrKVnm6LDfi0.jpg", "id": 12524}], "vote_average": 5.1, "runtime": 104}, "44826": {"poster_path": "/fkeaJr29ypea1n24gzspsc7qK44.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180864507, "overview": "Hugo is an orphan boy living in the walls of a train station in 1930s Paris. He learned to fix clocks and other gadgets from his father and uncle which he puts to use keeping the train station clocks running. The only thing that he has left that connects him to his dead father is an automaton (mechanical man) that doesn't work without a special key which Hugo needs to find to unlock the secret he believes it contains. On his adventures, he meets with a shopkeeper, George Melies, who works in the train station and his adventure-seeking god-daughter. Hugo finds that they have a surprising connection to his father and the automaton, and he discovers it unlocks some memories the old man has buried inside regarding his past.", "video": false, "id": 44826, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Hugo", "tagline": "One of the most legendary directors of our time takes you on an extraordinary adventure.", "vote_count": 645, "homepage": "http://www.hugomovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970179", "adult": false, "backdrop_path": "/jc3qQh8FV2YOJc8z7JQlXmv33Zs.jpg", "production_companies": [{"name": "Infinitum Nihil", "id": 2691}, {"name": "Paramount Pictures", "id": 4}, {"name": "GK Films", "id": 3281}], "release_date": "2011-11-23", "popularity": 1.06863402161182, "original_title": "Hugo", "budget": 170000000, "cast": [{"name": "Asa Butterfield", "character": "Hugo Cabret", "id": 77996, "credit_id": "52fe469dc3a36847f8108b33", "cast_id": 2, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Isabelle", "id": 56734, "credit_id": "52fe469dc3a36847f8108b37", "cast_id": 3, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Ben Kingsley", "character": "Georges M\u00e9li\u00e8s", "id": 2282, "credit_id": "52fe469dc3a36847f8108b3b", "cast_id": 4, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 2}, {"name": "Sacha Baron Cohen", "character": "The Station Inspector", "id": 6730, "credit_id": "52fe469dc3a36847f8108b3f", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 3}, {"name": "Jude Law", "character": "Hugo's Father", "id": 9642, "credit_id": "52fe469dc3a36847f8108b43", "cast_id": 6, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 4}, {"name": "Christopher Lee", "character": "Monsieur Labisse", "id": 113, "credit_id": "52fe469dc3a36847f8108b47", "cast_id": 7, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 5}, {"name": "Helen McCrory", "character": "Mama Jeanne", "id": 15737, "credit_id": "52fe469dc3a36847f8108b4b", "cast_id": 8, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 6}, {"name": "Michael Stuhlbarg", "character": "Rene Rabard", "id": 72873, "credit_id": "52fe469dc3a36847f8108b4f", "cast_id": 9, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 7}, {"name": "Marco Aponte", "character": "Julien Carette", "id": 234981, "credit_id": "52fe469dc3a36847f8108b53", "cast_id": 10, "profile_path": "/fSbDzUPZk33vkmropFhmVy8URaT.jpg", "order": 8}, {"name": "Emily Mortimer", "character": "Lisette", "id": 1246, "credit_id": "52fe469dc3a36847f8108b57", "cast_id": 11, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 9}, {"name": "Ray Winstone", "character": "Uncle Claude", "id": 5538, "credit_id": "52fe469dc3a36847f8108b5b", "cast_id": 13, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 10}, {"name": "Frances de la Tour", "character": "Madame Emilie", "id": 47468, "credit_id": "52fe469dc3a36847f8108b5f", "cast_id": 14, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 11}, {"name": "Richard Griffiths", "character": "Monsieur Frick", "id": 10983, "credit_id": "52fe469ec3a36847f8108b63", "cast_id": 15, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 12}], "directors": [{"name": "Martin Scorsese", "department": "Directing", "job": "Director", "credit_id": "52fe469dc3a36847f8108b2f", "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "id": 1032}], "vote_average": 6.7, "runtime": 126}, "10202": {"poster_path": "/nhovvB0LO5nlgIvpPg2C1iLLAvr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 212874442, "overview": "Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?", "video": false, "id": 10202, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Bedtime Stories", "tagline": "Whatever they dream up... he has to survive.", "vote_count": 356, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0960731", "adult": false, "backdrop_path": "/fK079xAMXWYOfL0Cvsc5stHmcwI.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Gunn Films", "id": 3538}], "release_date": "2008-12-25", "popularity": 1.16025688885395, "original_title": "Bedtime Stories", "budget": 80000000, "cast": [{"name": "Adam Sandler", "character": "Skeeter Bronson", "id": 19292, "credit_id": "52fe43409251416c750095ad", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Keri Russell", "character": "Jill", "id": 41292, "credit_id": "52fe43409251416c750095b1", "cast_id": 3, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 1}, {"name": "Guy Pearce", "character": "Kendall", "id": 529, "credit_id": "52fe43409251416c750095b5", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 2}, {"name": "Courteney Cox", "character": "Wendy", "id": 14405, "credit_id": "52fe43409251416c750095b9", "cast_id": 5, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 3}, {"name": "Lucy Lawless", "character": "Aspen", "id": 20584, "credit_id": "52fe43409251416c750095c5", "cast_id": 8, "profile_path": "/wTXMIKm3P0WMF9894Ubgky1mOXu.jpg", "order": 4}, {"name": "Teresa Palmer", "character": "Violet", "id": 20374, "credit_id": "52fe43409251416c750095bd", "cast_id": 6, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 5}, {"name": "Russell Brand", "character": "Mickey", "id": 59919, "credit_id": "52fe43409251416c750095c1", "cast_id": 7, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 6}, {"name": "Aisha Tyler", "character": "Donna Hynde", "id": 38674, "credit_id": "52fe43409251416c750095c9", "cast_id": 9, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 7}, {"name": "Kathryn Joosten", "character": "Mrs. Dixon", "id": 106935, "credit_id": "52fe43409251416c750095cd", "cast_id": 10, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 8}, {"name": "Carmen Electra", "character": "Hot Girl", "id": 28639, "credit_id": "52fe43409251416c750095d1", "cast_id": 11, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 9}, {"name": "Jonathan Pryce", "character": "Marty Bronson", "id": 378, "credit_id": "52fe43409251416c750095e1", "cast_id": 14, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 10}, {"name": "Richard Griffiths", "character": "Barry Nottingham", "id": 10983, "credit_id": "52fe43419251416c750095e5", "cast_id": 15, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 11}, {"name": "Jonathan Morgan Heit", "character": "Patrick", "id": 576511, "credit_id": "52fe43419251416c750095e9", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Laura Ann Kesling", "character": "Bobbi", "id": 1187842, "credit_id": "52fe43419251416c750095ed", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Nick Swardson", "character": "Engineer", "id": 32907, "credit_id": "52fe43419251416c750095f1", "cast_id": 18, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 14}, {"name": "Allen Covert", "character": "Ferrari Guy", "id": 20818, "credit_id": "52fe43419251416c750095f5", "cast_id": 19, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 15}, {"name": "Tim Herlihy", "character": "Young Barry Nottingham", "id": 56728, "credit_id": "52fe43419251416c750095f9", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Thomas Hoffman", "character": "Young Skeeter", "id": 1116200, "credit_id": "52fe43419251416c750095fd", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Abigail Droeger", "character": "Young Wendy", "id": 204330, "credit_id": "52fe43419251416c75009601", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Melany Mitchell", "character": "Young Mrs. Dixon", "id": 1202530, "credit_id": "52fe43419251416c75009605", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Andrew Collins", "character": "Young Mr. Dixon", "id": 199512, "credit_id": "52fe43419251416c75009609", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Julia Lea Wolov", "character": "Hokey Pokey Woman", "id": 1202531, "credit_id": "52fe43419251416c7500960d", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Dana Goodman", "character": "Hokey Pokey Woman", "id": 214834, "credit_id": "52fe43419251416c75009611", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Sarah G. Buxton", "character": "Hokey Pokey Woman", "id": 17191, "credit_id": "52fe43419251416c75009615", "cast_id": 27, "profile_path": "/osrm0dql0RhwX3LbgUSOT2M84yb.jpg", "order": 23}, {"name": "Catherine Kwong", "character": "Hokey Pokey Woman", "id": 154485, "credit_id": "52fe43419251416c75009619", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Lindsey Alley", "character": "Hokey Pokey Woman", "id": 1202532, "credit_id": "52fe43419251416c7500961d", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Blake Clark", "character": "Biker", "id": 21485, "credit_id": "52fe43419251416c75009621", "cast_id": 30, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 26}, {"name": "Bill Romanowski", "character": "Biker", "id": 60954, "credit_id": "52fe43419251416c75009625", "cast_id": 31, "profile_path": "/cXoVWp5m4eX1VedZqf3FbfKUOH4.jpg", "order": 27}, {"name": "Paul Dooley", "character": "Hot Dog Vendor", "id": 15900, "credit_id": "52fe43419251416c75009629", "cast_id": 32, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 28}, {"name": "Johntae Lipscomb", "character": "Birthday Party Kid", "id": 211594, "credit_id": "52fe43419251416c7500962d", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Johntae Lipscomb", "character": "Birthday Party Kid", "id": 211594, "credit_id": "52fe43419251416c75009631", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Mikey Post", "character": "Angry Dwarf", "id": 59825, "credit_id": "52fe43419251416c75009635", "cast_id": 35, "profile_path": "/c8NQ550hf3xLRhCjsVOOznJY79Y.jpg", "order": 31}, {"name": "Sebastian Saraceno", "character": "Gremlin Driver", "id": 1060474, "credit_id": "52fe43419251416c75009639", "cast_id": 36, "profile_path": "/gHXNIcmwIJ3cgaUtlKm6JWW16g8.jpg", "order": 32}, {"name": "Seth Howard", "character": "Cubby the Home Depot Guy", "id": 1202533, "credit_id": "52fe43419251416c7500963d", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Jackie Sandler", "character": "Lady Jacqueline", "id": 60959, "credit_id": "52fe43419251416c75009641", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Sadie Sandler", "character": "Sweetest Medieval Girl of All Time", "id": 1202534, "credit_id": "52fe43419251416c75009645", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Valerie Gervickas", "character": "Teacher", "id": 1202535, "credit_id": "52fe43419251416c75009649", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Debbie Lee Carrington", "character": "Booing Goblin", "id": 19753, "credit_id": "52fe43419251416c7500964d", "cast_id": 41, "profile_path": "/xMynWwkjNbBJsiPdjs8aJ977oBq.jpg", "order": 37}, {"name": "Billy Tyler", "character": "Big Hairy Guy on Beach", "id": 987800, "credit_id": "52fe43419251416c75009651", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Lorna Scott", "character": "Secretary", "id": 73456, "credit_id": "52fe43419251416c75009655", "cast_id": 43, "profile_path": "/esuLL3MYiVvSbL71nvpebZFTaDf.jpg", "order": 39}, {"name": "Annalise Basso", "character": "Tricia Sparks", "id": 1024722, "credit_id": "52fe43419251416c75009659", "cast_id": 44, "profile_path": "/e1wamWCv5frXtXMa32NkeRR5hny.jpg", "order": 40}, {"name": "Shu Lan Tuan", "character": "Luau Waitress", "id": 209417, "credit_id": "52fe43419251416c7500965d", "cast_id": 45, "profile_path": null, "order": 41}, {"name": "Jonathan Loughran", "character": "Party Guest", "id": 58477, "credit_id": "52fe43419251416c75009661", "cast_id": 46, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 42}, {"name": "Robert Harvey", "character": "Party Guest", "id": 62100, "credit_id": "52fe43419251416c75009665", "cast_id": 47, "profile_path": null, "order": 43}, {"name": "Mike Andrella", "character": "Truck Driver", "id": 1202536, "credit_id": "52fe43419251416c75009669", "cast_id": 48, "profile_path": null, "order": 44}, {"name": "J.D. Donaruma", "character": "Nottingham Pool Waiter", "id": 963298, "credit_id": "52fe43419251416c7500966d", "cast_id": 49, "profile_path": null, "order": 45}, {"name": "Jon Schueler", "character": "Nobleman", "id": 1202537, "credit_id": "52fe43419251416c75009671", "cast_id": 50, "profile_path": null, "order": 46}, {"name": "Denverly Grant", "character": "Lady at Fountain", "id": 1202538, "credit_id": "52fe43419251416c75009675", "cast_id": 51, "profile_path": null, "order": 47}, {"name": "Rob Schneider", "character": "Chief Running Mouth / Pickpocket", "id": 60949, "credit_id": "52fe43419251416c75009679", "cast_id": 52, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 48}, {"name": "JT Alexander", "character": "Pedestrian (uncredited)", "id": 578735, "credit_id": "52fe43419251416c7500967d", "cast_id": 53, "profile_path": null, "order": 49}, {"name": "Nahid Azami", "character": "Protesting Mom (uncredited)", "id": 1202540, "credit_id": "52fe43419251416c75009681", "cast_id": 54, "profile_path": null, "order": 50}, {"name": "Veronica Bennett", "character": "Greek Goddess (uncredited)", "id": 1202541, "credit_id": "52fe43419251416c75009685", "cast_id": 55, "profile_path": null, "order": 51}, {"name": "Pete Brown", "character": "Claudius Falisimus (uncredited)", "id": 1078574, "credit_id": "52fe43419251416c75009689", "cast_id": 56, "profile_path": null, "order": 52}, {"name": "Amanda Burrill", "character": "Jogger (uncredited)", "id": 1202542, "credit_id": "52fe43419251416c7500968d", "cast_id": 57, "profile_path": null, "order": 53}, {"name": "Gina Cantrell", "character": "West Side Story Showgirl #2 (uncredited)", "id": 1202543, "credit_id": "52fe43419251416c75009691", "cast_id": 58, "profile_path": null, "order": 54}, {"name": "Betsy Hammer", "character": "Tambourine Player Medieval Band (uncredited)", "id": 1202544, "credit_id": "52fe43419251416c75009695", "cast_id": 59, "profile_path": null, "order": 55}, {"name": "Taylor Hardick", "character": "Student (uncredited)", "id": 1202545, "credit_id": "52fe43419251416c75009699", "cast_id": 60, "profile_path": null, "order": 56}, {"name": "Nick Hermz", "character": "Paparazzi (uncredited)", "id": 205649, "credit_id": "52fe43419251416c7500969d", "cast_id": 61, "profile_path": null, "order": 57}, {"name": "Rodrick Hersh", "character": "Rabbi (uncredited)", "id": 1202546, "credit_id": "52fe43419251416c750096a1", "cast_id": 62, "profile_path": null, "order": 58}, {"name": "Austin Honaker", "character": "A Spaceball (uncredited)", "id": 1202547, "credit_id": "52fe43419251416c750096a5", "cast_id": 63, "profile_path": null, "order": 59}, {"name": "Mark Hunter", "character": "Daft Alien (uncredited)", "id": 1202548, "credit_id": "52fe43419251416c750096a9", "cast_id": 64, "profile_path": null, "order": 60}, {"name": "Dani Jacoby", "character": "Western Girl (uncredited)", "id": 1202549, "credit_id": "52fe43419251416c750096ad", "cast_id": 65, "profile_path": null, "order": 61}, {"name": "Danni Katz", "character": "Party Girl (uncredited)", "id": 1202550, "credit_id": "52fe43419251416c750096b1", "cast_id": 66, "profile_path": null, "order": 62}, {"name": "Alina Kaufman", "character": "Party Guest (uncredited)", "id": 1202551, "credit_id": "52fe43419251416c750096b5", "cast_id": 67, "profile_path": null, "order": 63}, {"name": "Waymond Lee", "character": "Coliseum / Space Station Vendor (uncredited)", "id": 1200895, "credit_id": "52fe43419251416c750096b9", "cast_id": 68, "profile_path": null, "order": 64}, {"name": "Heather Morris", "character": "Dancer (uncredited)", "id": 221606, "credit_id": "52fe43419251416c750096bd", "cast_id": 69, "profile_path": "/koExd1GaoNDXtDe07DqfgIYpewC.jpg", "order": 65}, {"name": "Louis Riviere", "character": "Roman Peasant (uncredited)", "id": 1202552, "credit_id": "52fe43419251416c750096c1", "cast_id": 70, "profile_path": null, "order": 66}, {"name": "Nicole Sciacca", "character": "Damn Yankees Girl (uncredited)", "id": 1202553, "credit_id": "52fe43419251416c750096c5", "cast_id": 71, "profile_path": null, "order": 67}, {"name": "Arne Starr", "character": "Nottingham Employee / Senator / Cowboy / Spaceman (uncredited)", "id": 1202554, "credit_id": "52fe43419251416c750096c9", "cast_id": 72, "profile_path": null, "order": 68}, {"name": "Alex Tyler", "character": "Showgirl (uncredited)", "id": 114486, "credit_id": "52fe43419251416c750096cd", "cast_id": 73, "profile_path": null, "order": 69}, {"name": "Kevin Vyce", "character": "Businessman #1 (uncredited)", "id": 1030906, "credit_id": "52fe43419251416c750096d1", "cast_id": 74, "profile_path": null, "order": 70}, {"name": "Brian Waller", "character": "Record Producer (uncredited)", "id": 1202555, "credit_id": "52fe43419251416c750096d5", "cast_id": 75, "profile_path": null, "order": 71}, {"name": "Shawna Wesley", "character": "Greek Goddess (uncredited)", "id": 1202556, "credit_id": "52fe43419251416c750096d9", "cast_id": 76, "profile_path": null, "order": 72}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe43409251416c750095a9", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.8, "runtime": 99}, "200481": {"poster_path": "/7kUxedWznyihUfkC971sJ2piqQL.jpg", "production_countries": [], "revenue": 0, "overview": "It is just another evening commute until the rain starts to fall, and the city comes alive to the sound of dripping rain pipes, whistling awnings and gurgling gutters.", "video": false, "id": 200481, "genres": [{"id": 16, "name": "Animation"}, {"id": 10749, "name": "Romance"}], "title": "The Blue Umbrella", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt2616880", "adult": false, "backdrop_path": "/mPbrOfoFQpBkCJPzUr9YMoYB7W2.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2013-02-12", "popularity": 0.451778566620465, "original_title": "The Blue Umbrella", "budget": 0, "cast": [], "directors": [{"name": "Saschka Unseld", "department": "Directing", "job": "Director", "credit_id": "52fe4c87c3a368484e1bb1c7", "profile_path": null, "id": 1181281}], "vote_average": 7.8, "runtime": 7}, "184098": {"poster_path": "/xOTTC0HF25aYRteqYZJ4Xhh8uOF.jpg", "production_countries": [], "revenue": 70181428, "overview": "All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.", "video": false, "id": 184098, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Think Like a Man Too", "tagline": "", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/hCRM2diNsHt60vopldseJJ6o1Rr.jpg", "id": 239430, "name": "Think Like a Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2239832", "adult": false, "backdrop_path": "/vO0rbc7ZUbOqwhkrmY8RjVz6hh0.jpg", "production_companies": [{"name": "Will Packer Productions", "id": 49968}, {"name": "Screen Gems", "id": 3287}, {"name": "Silver State Production Services", "id": 49969}], "release_date": "2014-06-20", "popularity": 0.907428378555117, "original_title": "Think Like a Man Too", "budget": 24000000, "cast": [{"name": "Kevin Hart", "character": "Cedric", "id": 55638, "credit_id": "52fe4cb59251416c75123217", "cast_id": 1, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 0}, {"name": "Romany Malco", "character": "Zeke", "id": 71530, "credit_id": "52fe4cb59251416c7512321b", "cast_id": 2, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 1}, {"name": "Terrence Jenkins", "character": "Michael", "id": 143242, "credit_id": "52fe4cb59251416c7512321f", "cast_id": 3, "profile_path": "/h9hYAsDHevmr3mHFpP8CbsX0BUA.jpg", "order": 2}, {"name": "Michael Ealy", "character": "Dominic", "id": 8177, "credit_id": "52fe4cb59251416c75123223", "cast_id": 4, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 3}, {"name": "Gary Owen", "character": "Bennett", "id": 214108, "credit_id": "52fe4cb59251416c75123227", "cast_id": 5, "profile_path": "/419tCojrRrEDhINC38wXuiUOTC4.jpg", "order": 4}, {"name": "Jerry Ferrara", "character": "Jeremy", "id": 98953, "credit_id": "52fe4cb59251416c7512322b", "cast_id": 6, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 5}, {"name": "Regina Hall", "character": "Candace", "id": 35705, "credit_id": "52fe4cb59251416c7512322f", "cast_id": 7, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 6}, {"name": "Meagan Good", "character": "Mya", "id": 22122, "credit_id": "52fe4cb59251416c75123233", "cast_id": 8, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 7}, {"name": "Taraji P. Henson", "character": "Lauren", "id": 40036, "credit_id": "52fe4cb59251416c75123237", "cast_id": 9, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 8}, {"name": "Gabrielle Union", "character": "Kristen", "id": 17773, "credit_id": "52fe4cb69251416c7512323b", "cast_id": 10, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 9}, {"name": "Wendi McLendon-Covey", "character": "Tish", "id": 63234, "credit_id": "52fe4cb69251416c7512323f", "cast_id": 11, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 10}, {"name": "La La Anthony", "character": "Sonia", "id": 1034453, "credit_id": "52fe4cb69251416c75123243", "cast_id": 12, "profile_path": "/aejPE9ZCj0SMWO9ovjYKk0Uuyff.jpg", "order": 11}, {"name": "Adam Brody", "character": "Isaac", "id": 11702, "credit_id": "52fe4cb69251416c75123247", "cast_id": 13, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 12}, {"name": "David Walton", "character": "Terrell", "id": 83231, "credit_id": "52fe4cb69251416c7512324b", "cast_id": 14, "profile_path": "/kwtK2P8W0PMmaY2yrFwGlDh55y5.jpg", "order": 13}, {"name": "Jenifer Lewis", "character": "Loretta", "id": 15899, "credit_id": "52fe4cb69251416c7512324f", "cast_id": 15, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 14}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4cb69251416c75123255", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 6.7, "runtime": 106}, "44835": {"poster_path": "/jpx1QZq8UPfBBpvH3dhnlVqbnmr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 382946, "overview": "A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.", "video": false, "id": 44835, "genres": [{"id": 18, "name": "Drama"}], "title": "Hesher", "tagline": "Sometimes life gives you the finger and sometimes it gives you...", "vote_count": 55, "homepage": "http://www.hesherthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1403177", "adult": false, "backdrop_path": "/bGhaaYf0psWOsZevNJSBAyLZ27k.jpg", "production_companies": [{"name": "American Work", "id": 42325}], "release_date": "2010-05-12", "popularity": 0.254192221659349, "original_title": "Hesher", "budget": 7000000, "cast": [{"name": "Natalie Portman", "character": "Nicole", "id": 524, "credit_id": "52fe469ec3a36847f8108db1", "cast_id": 6, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Joseph Gordon-Levitt", "character": "Hesher", "id": 24045, "credit_id": "52fe469ec3a36847f8108db5", "cast_id": 7, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 1}, {"name": "Rainn Wilson", "character": "Paul Forney", "id": 11678, "credit_id": "52fe469ec3a36847f8108db9", "cast_id": 8, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 2}, {"name": "Audrey Wasilewski", "character": "Coleen Bolder", "id": 86170, "credit_id": "52fe469ec3a36847f8108dbd", "cast_id": 9, "profile_path": "/pAIt9Pxioss1pz7IwAPsyMiEuM2.jpg", "order": 3}, {"name": "Frank Collison", "character": "Funeral Director", "id": 1479, "credit_id": "52fe469ec3a36847f8108dc1", "cast_id": 10, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 4}, {"name": "Piper Laurie", "character": "Madeleine Forney", "id": 6721, "credit_id": "52fe469ec3a36847f8108dc5", "cast_id": 11, "profile_path": "/eKjVK5MQ5RK9XuVLaCC2oYACmbK.jpg", "order": 5}, {"name": "Paul Bates", "character": "Mr. Elsberry", "id": 4693, "credit_id": "52fe469ec3a36847f8108dc9", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "John Carroll Lynch", "character": "", "id": 3911, "credit_id": "52fe469ec3a36847f8108dcd", "cast_id": 13, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 7}, {"name": "Devin Brochu", "character": "T.J.", "id": 202949, "credit_id": "52fe469ec3a36847f8108de9", "cast_id": 18, "profile_path": "/kxyh9XX1rAtaI02bJxmVDAeFaWv.jpg", "order": 8}], "directors": [{"name": "Spencer Susser", "department": "Directing", "job": "Director", "credit_id": "52fe469ec3a36847f8108dad", "profile_path": "/jpFpEbbaHIki1SM8SORJTMiowFd.jpg", "id": 131521}], "vote_average": 6.4, "runtime": 106}, "8838": {"poster_path": "/aQtf10Slqpd3S2ht8derr6oSpyt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Simon is a nine-year-old autistic boy who has cracked the government's new \"unbreakable\" code. This skill renders the new billion-dollar secret code vulnerable, especially if enemies of the United States should learn of Simon's abilities and capture him. Program chief Nick Kudrow orders the \"security threat\" eliminated, but Kudrow hasn't counted on renegade FBI agent Art Jeffries (Bruce Willis).", "video": false, "id": 8838, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mercury Rising", "tagline": "Someone knows too much.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120749", "adult": false, "backdrop_path": "/vTW9GjAjX9j1OA7QdmBbWjyhXjv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1998-04-03", "popularity": 0.734156678096475, "original_title": "Mercury Rising", "budget": 60000000, "cast": [{"name": "Bruce Willis", "character": "Art Jeffries", "id": 62, "credit_id": "52fe44bec3a36847f80a785b", "cast_id": 11, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Nicholas Kudrow", "id": 7447, "credit_id": "52fe44bec3a36847f80a785f", "cast_id": 12, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Miko Hughes", "character": "Simon Lynch", "id": 8186, "credit_id": "52fe44bec3a36847f80a7863", "cast_id": 13, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 2}, {"name": "Chi McBride", "character": "Tommy B. Jordan", "id": 8687, "credit_id": "52fe44bec3a36847f80a7867", "cast_id": 14, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 3}, {"name": "Kim Dickens", "character": "Stacey", "id": 21165, "credit_id": "52fe44bec3a36847f80a786b", "cast_id": 15, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 4}, {"name": "Robert Stanton", "character": "Dean Crandell", "id": 53963, "credit_id": "52fe44bec3a36847f80a786f", "cast_id": 16, "profile_path": "/bWFlAJR4HZgu5bbNGoxeh4RUj4g.jpg", "order": 5}, {"name": "Bodhi Elfman", "character": "Leo Pedranski", "id": 154883, "credit_id": "52fe44bec3a36847f80a7873", "cast_id": 17, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 6}, {"name": "Carrie Preston", "character": "Emily Lang", "id": 7465, "credit_id": "52fe44bec3a36847f80a7877", "cast_id": 18, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 7}, {"name": "Lindsey Ginter", "character": "Peter Burrell", "id": 156038, "credit_id": "52fe44bec3a36847f80a787b", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Peter Stormare", "character": "Shayes", "id": 53, "credit_id": "52fe44bec3a36847f80a787f", "cast_id": 20, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 9}, {"name": "Kevin Conway", "character": "Lomax", "id": 27116, "credit_id": "52fe44bec3a36847f80a7883", "cast_id": 21, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 10}, {"name": "John Carroll Lynch", "character": "Martin Lynch", "id": 3911, "credit_id": "52fe44bec3a36847f80a7887", "cast_id": 22, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 11}, {"name": "Kelley Hazen", "character": "Jenny Lynch", "id": 946447, "credit_id": "52fe44bec3a36847f80a788b", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "John Doman", "character": "Supervisor Hartley", "id": 4735, "credit_id": "52fe44bec3a36847f80a788f", "cast_id": 24, "profile_path": "/xfcSluMohRbnMySSlosFmlZyLLy.jpg", "order": 13}, {"name": "Richard Riehle", "character": "Edgar Halstrom", "id": 18262, "credit_id": "52fe44bec3a36847f80a7893", "cast_id": 25, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 14}, {"name": "Chad Lindberg", "character": "James", "id": 9186, "credit_id": "52fe44bec3a36847f80a7897", "cast_id": 26, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 15}, {"name": "Hank Harris", "character": "Isaac", "id": 58739, "credit_id": "52fe44bec3a36847f80a789b", "cast_id": 27, "profile_path": "/yhMYapvXHZQYXVdeBjeo4jaRN48.jpg", "order": 16}, {"name": "Camryn Manheim", "character": "Dr. London", "id": 20187, "credit_id": "52fe44bec3a36847f80a789f", "cast_id": 29, "profile_path": "/zK3xgy0jvM5Ly6mLNIoATdSo6Uj.jpg", "order": 17}, {"name": "Jack Conley", "character": "Detective Nichols", "id": 21675, "credit_id": "52fe44bec3a36847f80a78a3", "cast_id": 30, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 18}, {"name": "Maricela Ochoa", "character": "Charlayne", "id": 156731, "credit_id": "52fe44bec3a36847f80a78a7", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Peter Fontana", "character": "Pasquale, Bus Driver", "id": 1077831, "credit_id": "52fe44bec3a36847f80a78ab", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Kirk B.R. Woller", "character": "Lieutenant", "id": 6864, "credit_id": "52fe44bec3a36847f80a78af", "cast_id": 33, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 21}, {"name": "James MacDonald", "character": "SWAT Team Leader Francis", "id": 1188456, "credit_id": "52fe44bec3a36847f80a78b3", "cast_id": 34, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 22}], "directors": [{"name": "Harold Becker", "department": "Directing", "job": "Director", "credit_id": "52fe44bec3a36847f80a7821", "profile_path": "/pZjPh9NdTE0gf4aSndMOMj7XaXs.jpg", "id": 23213}], "vote_average": 6.1, "runtime": 111}, "36647": {"poster_path": "/KIyDkxJDCpew51Vni8FkHaLkon.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112601065, "overview": "When Blade's mother was bitten by a vampire during pregnancy, she did not know that she gave her son a special gift while dying: All the good vampire attributes in combination with the best human skills. Blade and his mentor Whistler battle an evil vampire rebel (Deacon Frost) who plans to take over the outdated vampire council, capture Blade and resurrect voracious blood god La Magra.", "video": false, "id": 36647, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}], "title": "Blade", "tagline": "Part Man. Part Vampire. All Hero.", "vote_count": 736, "homepage": "http://www.newline.com/properties/blade.html", "belongs_to_collection": {"backdrop_path": "/ev9QybDDzVSahJQdOb71ZuqNVAo.jpg", "poster_path": "/ltjxGZP6aJrwjl7oOZiiZhFgkF1.jpg", "id": 735, "name": "Blade Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120611", "adult": false, "backdrop_path": "/kTvGzXv4lIoQAOU8hAvdZtnEqy0.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Amen Ra Films", "id": 421}, {"name": "Imaginary Forces", "id": 11321}], "release_date": "1998-08-19", "popularity": 1.30479999401627, "original_title": "Blade", "budget": 45000000, "cast": [{"name": "Wesley Snipes", "character": "Blade", "id": 10814, "credit_id": "52fe45fc9251416c9104547d", "cast_id": 3, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Stephen Dorff", "character": "Deacon Frost", "id": 10822, "credit_id": "52fe45fc9251416c91045481", "cast_id": 4, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 1}, {"name": "Kris Kristofferson", "character": "Whistler", "id": 10823, "credit_id": "52fe45fc9251416c91045485", "cast_id": 5, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 2}, {"name": "N'Bushe Wright", "character": "Karen", "id": 10824, "credit_id": "52fe45fc9251416c91045489", "cast_id": 6, "profile_path": "/bEh3QHGmX9saY3shtfU3eiITHeU.jpg", "order": 3}, {"name": "Donal Logue", "character": "Quinn", "id": 10825, "credit_id": "52fe45fc9251416c9104548d", "cast_id": 7, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 4}, {"name": "Udo Kier", "character": "Dragonetti", "id": 1646, "credit_id": "52fe45fc9251416c91045491", "cast_id": 8, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 5}, {"name": "Arly Jover", "character": "Mercury", "id": 66147, "credit_id": "52fe45fc9251416c91045495", "cast_id": 9, "profile_path": "/ltkuawLKH0m4lE4xYBgMWHtY4WQ.jpg", "order": 6}, {"name": "Traci Lords", "character": "Racquel", "id": 10826, "credit_id": "52fe45fc9251416c91045499", "cast_id": 10, "profile_path": "/wvvedrFTml3kJZ3eSMMX3QvDacr.jpg", "order": 7}, {"name": "Kevin Patrick Walls", "character": "Krieger", "id": 10827, "credit_id": "52fe45fc9251416c9104549d", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Tim Guinee", "character": "Curtis Webb", "id": 40275, "credit_id": "52fe45fc9251416c910454a1", "cast_id": 12, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 9}, {"name": "Sanaa Lathan", "character": "Vanessa", "id": 5411, "credit_id": "52fe45fc9251416c910454a5", "cast_id": 13, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 10}, {"name": "Eric Edwards", "character": "Pearl", "id": 115786, "credit_id": "52fe45fd9251416c910454f7", "cast_id": 28, "profile_path": "/cQx8WFY1Uzsz22MtLGriftLZ5Cn.jpg", "order": 11}, {"name": "Donna Wong", "character": "Nurse", "id": 957026, "credit_id": "52fe45fd9251416c910454fb", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Carmen Thomas", "character": "Senior Resident", "id": 161917, "credit_id": "52fe45fd9251416c910454ff", "cast_id": 30, "profile_path": "/uDGqhihERPfe0eeiaWcCWXlvbRF.jpg", "order": 13}, {"name": "Shannon Lee", "character": "Resident", "id": 149407, "credit_id": "52fe45fd9251416c91045503", "cast_id": 31, "profile_path": "/irhgnh0rLNw0fnTfKZnyC7eFVeH.jpg", "order": 14}, {"name": "Kenny Johnson", "character": "Heatseeking Dennis", "id": 42191, "credit_id": "53ac47f1c3a368633e0001a9", "cast_id": 74, "profile_path": "/uu1FmIn0LnEmp27WrqCIcBXLBwt.jpg", "order": 15}, {"name": "Clint Curtis", "character": "Creepy Morgue Guy", "id": 217472, "credit_id": "52fe45fd9251416c9104550b", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Judson Scott", "character": "Pallantine", "id": 104054, "credit_id": "52fe45fd9251416c9104550f", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Sidney S. Liufau", "character": "Japanese Doorman", "id": 143208, "credit_id": "52fe45fd9251416c91045513", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Keith Leon Williams", "character": "Kam", "id": 1080221, "credit_id": "52fe45fd9251416c91045517", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Andray Johnson", "character": "Paramedic", "id": 165282, "credit_id": "52fe45fd9251416c9104551b", "cast_id": 37, "profile_path": null, "order": 20}, {"name": "Stephen R. Peluso", "character": "Paramedic", "id": 1202772, "credit_id": "52fe45fd9251416c9104551f", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Marcus Aurelius", "character": "Pragmatic Policeman", "id": 106488, "credit_id": "52fe45fd9251416c91045523", "cast_id": 39, "profile_path": null, "order": 22}, {"name": "John Enos III", "character": "Blood Club Bouncer", "id": 42557, "credit_id": "52fe45fd9251416c91045527", "cast_id": 40, "profile_path": "/qNM9WY42aEtttsnzLvYPEw6Q6xa.jpg", "order": 23}, {"name": "Eboni 'Chrystal' Adams", "character": "Martial Arts Kid", "id": 1202773, "credit_id": "52fe45fd9251416c9104552b", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Lyle Conway", "character": "Lyle Conway", "id": 1189043, "credit_id": "52fe45fd9251416c9104552f", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Freeman White", "character": "Menacing Stud", "id": 1202774, "credit_id": "52fe45fd9251416c91045533", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "D.V. DeVincentis", "character": "Vampire Underling", "id": 3226, "credit_id": "52fe45fd9251416c91045537", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "Marcus Salgado", "character": "Frost's Goon", "id": 1202775, "credit_id": "52fe45fd9251416c9104553b", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Esau McKnight Jr.", "character": "Frost's Goon", "id": 1202776, "credit_id": "52fe45fd9251416c9104553f", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Erl Van Douglas", "character": "Von Esper", "id": 1202777, "credit_id": "52fe45fd9251416c91045543", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Matt Schulze", "character": "Crease", "id": 31841, "credit_id": "52fe45fd9251416c91045547", "cast_id": 48, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 31}, {"name": "Lennox Brown", "character": "Pleading Goon", "id": 205164, "credit_id": "52fe45fd9251416c9104554b", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Yvette Ocampo", "character": "Party Girl", "id": 1202778, "credit_id": "52fe45fd9251416c9104554f", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Irena Stepic", "character": "Slavic Vampire Lord", "id": 1202779, "credit_id": "52fe45fd9251416c91045553", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Jenya Lano", "character": "Russian Woman", "id": 116402, "credit_id": "52fe45fd9251416c91045557", "cast_id": 52, "profile_path": "/3iQBdHlnNMa2G9dMtDmdop3Sogq.jpg", "order": 35}, {"name": "Levan Uchaneishvili", "character": "Russian Vampire", "id": 27037, "credit_id": "52fe45fd9251416c9104555b", "cast_id": 53, "profile_path": "/36mEusN0UbOvwsq8DVDgYOpoaet.jpg", "order": 36}, {"name": "Richard 'Dr.' Baily", "character": "Cardboard cut-out in Subway", "id": 1202780, "credit_id": "52fe45fd9251416c9104555f", "cast_id": 54, "profile_path": null, "order": 37}, {"name": "Nikki DiSanto", "character": "Vampire Victim", "id": 964544, "credit_id": "52fe45fd9251416c91045563", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Ryan Glorioso", "character": "Blood Bath Vampire", "id": 1176140, "credit_id": "52fe45fd9251416c91045567", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Jeff Imada", "character": "Henchman (uncredited)", "id": 169628, "credit_id": "52fe45fd9251416c9104556b", "cast_id": 57, "profile_path": null, "order": 40}, {"name": "Elliott James", "character": "Blood Club (uncredited)", "id": 1202781, "credit_id": "52fe45fd9251416c9104556f", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Stephen Norrington", "character": "Vampire (uncredited)", "id": 10808, "credit_id": "52fe45fd9251416c91045577", "cast_id": 60, "profile_path": "/8BG5bnmk28IMRN8diyTwExn68HI.jpg", "order": 42}, {"name": "Gerald Okamura", "character": "Vampire (uncredited)", "id": 105047, "credit_id": "52fe45fd9251416c9104557b", "cast_id": 61, "profile_path": "/wF4lMsaIKiClRU5mpHaaQ4oei7F.jpg", "order": 43}, {"name": "Frankie Ray", "character": "Vampire Lord (uncredited)", "id": 181758, "credit_id": "52fe45fd9251416c9104557f", "cast_id": 62, "profile_path": null, "order": 44}, {"name": "Carrie Seeley", "character": "Woman in Elevator (uncredited)", "id": 1202782, "credit_id": "52fe45fd9251416c91045583", "cast_id": 63, "profile_path": null, "order": 45}, {"name": "Beth Theriac", "character": "Woman in Elevator (uncredited)", "id": 1202783, "credit_id": "52fe45fd9251416c91045587", "cast_id": 64, "profile_path": null, "order": 46}, {"name": "Ted King", "character": "Vampire at rave (uncredited)", "id": 1221560, "credit_id": "534a51df0e0a2640bf00162b", "cast_id": 68, "profile_path": "/ehusIxTD4pPim0LSjCFyyWe6tyK.jpg", "order": 47}], "directors": [{"name": "Stephen Norrington", "department": "Directing", "job": "Director", "credit_id": "52fe45fc9251416c91045473", "profile_path": "/8BG5bnmk28IMRN8diyTwExn68HI.jpg", "id": 10808}], "vote_average": 6.2, "runtime": 120}, "36648": {"poster_path": "/4WinsdHQBdh5aTt7Bd7T7dbUXbb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128905366, "overview": "For years, Blade has fought against the vampires in the cover of the night. But now, after falling into the crosshairs of the FBI, he is forced out into the daylight, where he is driven to join forces with a clan of human vampire hunters he never knew existed - The Nightstalkers. Together with Abigail and Hannibal, two deftly trained Nightstalkers, Blade follows a trail of blood to the ancient creature that is also hunting him, the original vampire, Dracula.", "video": false, "id": 36648, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Blade: Trinity", "tagline": "The final hunt begins.", "vote_count": 465, "homepage": "http://www.newline.com/properties/bladetrinity.html", "belongs_to_collection": {"backdrop_path": "/ev9QybDDzVSahJQdOb71ZuqNVAo.jpg", "poster_path": "/ltjxGZP6aJrwjl7oOZiiZhFgkF1.jpg", "id": 735, "name": "Blade Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "eo", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0359013", "adult": false, "backdrop_path": "/hBOsH6oyiTXqYO4avJmyZiIRQgo.jpg", "production_companies": [{"name": "Peter Frankfurt Productions", "id": 42209}, {"name": "New Line Cinema", "id": 12}, {"name": "Marvel Studios", "id": 420}, {"name": "Amen Ra Films", "id": 421}, {"name": "Imaginary Forces", "id": 11321}, {"name": "Shawn Danielle Productions Ltd.", "id": 8851}], "release_date": "2004-12-07", "popularity": 1.83180145554788, "original_title": "Blade: Trinity", "budget": 65000000, "cast": [{"name": "Wesley Snipes", "character": "Blade", "id": 10814, "credit_id": "52fe45fd9251416c910455f9", "cast_id": 3, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 0}, {"name": "Kris Kristofferson", "character": "Whistler", "id": 10823, "credit_id": "52fe45fd9251416c910455fd", "cast_id": 4, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 1}, {"name": "Dominic Purcell", "character": "Drake", "id": 10862, "credit_id": "52fe45fd9251416c91045601", "cast_id": 5, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 2}, {"name": "Jessica Biel", "character": "Abigail Whistler", "id": 10860, "credit_id": "52fe45fd9251416c91045605", "cast_id": 6, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 3}, {"name": "Ryan Reynolds", "character": "Hannibal King", "id": 10859, "credit_id": "52fe45fd9251416c91045609", "cast_id": 7, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 4}, {"name": "Parker Posey", "character": "Danica Talos", "id": 7489, "credit_id": "52fe45fd9251416c9104560d", "cast_id": 8, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 5}, {"name": "Paul Michael L\u00e9vesque", "character": "Jarko Grimwood", "id": 115788, "credit_id": "52fe45fd9251416c91045611", "cast_id": 9, "profile_path": "/ex7qon2d0vCnSATfDEPHlpjygb3.jpg", "order": 6}, {"name": "Mark Berry", "character": "Chief Martin Vreede", "id": 143382, "credit_id": "52fe45fd9251416c91045615", "cast_id": 10, "profile_path": "/sWtDBpIztVmRtvpsjq6NPO6rw6p.jpg", "order": 7}, {"name": "John Michael Higgins", "character": "Dr. Edgar Vance", "id": 8265, "credit_id": "52fe45fd9251416c91045619", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 8}, {"name": "Callum Keith Rennie", "character": "Asher Talos", "id": 540, "credit_id": "52fe45fd9251416c9104561d", "cast_id": 12, "profile_path": "/slLsdWFDpxueDbV0l1QWK2gG24x.jpg", "order": 9}, {"name": "Paul Anthony", "character": "Wolfe", "id": 1052900, "credit_id": "52fe45fd9251416c91045621", "cast_id": 13, "profile_path": "/mqqoiJjStvalu6QLLRHhbq1NmRQ.jpg", "order": 10}, {"name": "Fran\u00e7oise Yip", "character": "Virago", "id": 10875, "credit_id": "52fe45fd9251416c91045625", "cast_id": 14, "profile_path": "/6TllaFxiYl6j5l5rmnbAIGInaPJ.jpg", "order": 11}, {"name": "Michael Anthony Rawlins", "character": "Wilson Hale", "id": 276478, "credit_id": "52fe45fd9251416c91045629", "cast_id": 15, "profile_path": "/fRpxDCqB5hcT7H8lIHTVSQ9FqC4.jpg", "order": 12}, {"name": "James Remar", "character": "Ray Cumberland", "id": 1736, "credit_id": "52fe45fd9251416c9104562d", "cast_id": 16, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 13}, {"name": "Natasha Lyonne", "character": "Sommerfield", "id": 10871, "credit_id": "52fe45fd9251416c91045631", "cast_id": 17, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 14}, {"name": "Ginger Broatch", "character": "Zoe", "id": 1052901, "credit_id": "52fe45fd9251416c91045635", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Patton Oswalt", "character": "Hedges", "id": 10872, "credit_id": "52fe45fd9251416c91045639", "cast_id": 19, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 16}, {"name": "Eric Bogosian", "character": "Bentley Tittle", "id": 10866, "credit_id": "52fe45fd9251416c9104563d", "cast_id": 20, "profile_path": "/ez5wbZJ1txZ8EroWSRxElcWlsru.jpg", "order": 17}, {"name": "Erica Cerra", "character": "Goth Vixen Wannabe", "id": 1218928, "credit_id": "542024f9c3a368799600251d", "cast_id": 40, "profile_path": "/4jWKnFDPw7YbqJUuG5TAb9NodDC.jpg", "order": 18}], "directors": [{"name": "David S. Goyer", "department": "Directing", "job": "Director", "credit_id": "52fe45fd9251416c910455ef", "profile_path": "/rEaNEwc55QugcpxOH7YwAa9P8mi.jpg", "id": 3893}], "vote_average": 5.8, "runtime": 123}, "8839": {"poster_path": "/cpMbvFDD2C21pqMNXVPhSWGQBR9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 287928194, "overview": "Furious that her late father only willed her his gloomy-looking mansion rather than his millions, Carrigan Crittenden is ready to burn the place to the ground when she discovers a map to a treasure hidden in the house. But when she enters the rickety mansion to seek her claim, she is frightened away by a wicked wave of ghosts. Determined to get her hands on this hidden fortune, she hires afterlife therapist Dr. James Harvey to exorcise the ghosts from the mansion. Harvey and his daughter Kat move in, and soon Kat meets Casper, the ghost of a young boy who's \"the friendliest ghost you know.\" But not so friendly are Casper's uncles--Stretch, Fatso and Stinkie--who are determined to drive all \"fleshies\" away.", "video": false, "id": 8839, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Casper", "tagline": "Get an afterlife", "vote_count": 239, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nWKbJAOFwJlJm24dTovfQuUJOc2.jpg", "id": 8819, "name": "Casper (Collection)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112642", "adult": false, "backdrop_path": "/ov0ZrirIgvrm97oqhcRxVyjnLbT.jpg", "production_companies": [{"name": "The Harvey Entertainment Company", "id": 11098}, {"name": "Universal Pictures", "id": 33}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "1995-05-26", "popularity": 1.11959608199021, "original_title": "Casper", "budget": 50000000, "cast": [{"name": "Christina Ricci", "character": "Kathleen 'Kat' Harvey", "id": 6886, "credit_id": "52fe44bec3a36847f80a7959", "cast_id": 14, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 0}, {"name": "Bill Pullman", "character": "Dr. James Harvey", "id": 8984, "credit_id": "52fe44bec3a36847f80a7955", "cast_id": 13, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Cathy Moriarty", "character": "Carrigan Crittenden", "id": 14702, "credit_id": "52fe44bec3a36847f80a7965", "cast_id": 17, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 2}, {"name": "Eric Idle", "character": "Paul 'Dibbs' Plutzker", "id": 10713, "credit_id": "52fe44bec3a36847f80a7951", "cast_id": 12, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 3}, {"name": "Joe Nipote", "character": "Stretch (voice)", "id": 159788, "credit_id": "52fe44bec3a36847f80a7981", "cast_id": 24, "profile_path": null, "order": 4}, {"name": "Joe Alaskey", "character": "Stinkie (voice)", "id": 86434, "credit_id": "52fe44bec3a36847f80a7985", "cast_id": 25, "profile_path": "/6ci5EimsKsRg0qxharKHMYA0kzi.jpg", "order": 5}, {"name": "Brad Garrett", "character": "Fatso (voice)", "id": 18, "credit_id": "52fe44bec3a36847f80a7989", "cast_id": 26, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 6}, {"name": "Garette Ratliff Henson", "character": "Vic DePhillippi", "id": 76239, "credit_id": "52fe44bec3a36847f80a7991", "cast_id": 28, "profile_path": "/xXzXov8q56YxH8pbHb1DrJ8hrV.jpg", "order": 7}, {"name": "Jessica Wesson", "character": "Amber Whitmire", "id": 158037, "credit_id": "52fe44bec3a36847f80a7995", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Amy Brenneman", "character": "Amelia Harvey", "id": 15851, "credit_id": "52fe44bfc3a36847f80a79b5", "cast_id": 37, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 9}, {"name": "Malachi Pearson", "character": "Casper (McFadden) (voice)", "id": 56057, "credit_id": "52fe44bec3a36847f80a794d", "cast_id": 11, "profile_path": "/b72Xf9DWCnnPHHcNENanU2hzZYT.jpg", "order": 10}, {"name": "Chauncey Leopardi", "character": "Nicky", "id": 88599, "credit_id": "52fe44bec3a36847f80a795d", "cast_id": 15, "profile_path": "/hA6TSw8Bh9hWTNu7EEc2TydBANu.jpg", "order": 11}, {"name": "Spencer Vrooman", "character": "Andreas", "id": 147496, "credit_id": "52fe44bec3a36847f80a7961", "cast_id": 16, "profile_path": "/RyCG8ZfbwSPRa5O4FylPomxdbj.jpg", "order": 12}, {"name": "Ben Stein", "character": "Mr. Rugg", "id": 131667, "credit_id": "52fe44bec3a36847f80a7969", "cast_id": 18, "profile_path": "/w0sjKYVV7BCK6SBpJy3KmogxLld.jpg", "order": 13}, {"name": "Don Novello", "character": "Father Guido Sarducci", "id": 161860, "credit_id": "52fe44bec3a36847f80a796d", "cast_id": 19, "profile_path": "/i0Bdjpisz3HmNVqtsUaOakApbRJ.jpg", "order": 14}, {"name": "Fred Rogers", "character": "Mr. Rogers (archive footage) (as Mr. Rogers)", "id": 1074129, "credit_id": "52fe44bec3a36847f80a7971", "cast_id": 20, "profile_path": "/snxYO0GCETZFoto0t4EK37K35ok.jpg", "order": 15}, {"name": "Terry Murphy", "character": "Herself ('Hard Copy')", "id": 1074130, "credit_id": "52fe44bec3a36847f80a7975", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Ernestine Mercer", "character": "Harvey Patient Being Interviewed", "id": 77581, "credit_id": "52fe44bec3a36847f80a7979", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Doug Bruckner", "character": "Reporter (voice)", "id": 1074131, "credit_id": "52fe44bec3a36847f80a797d", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "John Kassir", "character": "The Crypt Keeper (voice)", "id": 31365, "credit_id": "52fe44bec3a36847f80a798d", "cast_id": 27, "profile_path": "/dC0Icg60BabhLJFwR0FbZzFazPq.jpg", "order": 19}, {"name": "Wesley Thompson", "character": "Mr. Curtis", "id": 154158, "credit_id": "52fe44bfc3a36847f80a7999", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Michael Dubrow", "character": "Student #1", "id": 1201303, "credit_id": "52fe44bfc3a36847f80a799d", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "J.J. Anderson", "character": "Student #2", "id": 1201304, "credit_id": "52fe44bfc3a36847f80a79a1", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Jess Harnell", "character": "Arnold (voice)", "id": 84495, "credit_id": "52fe44bfc3a36847f80a79a5", "cast_id": 33, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 23}, {"name": "Michael McCarty", "character": "Drunk in Bar", "id": 1201305, "credit_id": "52fe44bfc3a36847f80a79a9", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Micah Winkelspecht", "character": "Student", "id": 1201306, "credit_id": "52fe44bfc3a36847f80a79ad", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Mike Simmrin", "character": "Phantom", "id": 157954, "credit_id": "52fe44bfc3a36847f80a79b1", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Devon Sawa", "character": "Casper on Screen", "id": 50398, "credit_id": "52fe44bfc3a36847f80a79b9", "cast_id": 38, "profile_path": "/mDMmS4G3cncEy1ngmop5deSan6X.jpg", "order": 27}, {"name": "Dan Aykroyd", "character": "Dr. Raymond Stantz (uncredited)", "id": 707, "credit_id": "52fe44bfc3a36847f80a79bd", "cast_id": 39, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 28}, {"name": "Rodney Dangerfield", "character": "Himself (uncredited)", "id": 3198, "credit_id": "52fe44bfc3a36847f80a79c1", "cast_id": 40, "profile_path": "/uTBMl5yfiUzFphN7fXeRxCYMXPJ.jpg", "order": 29}, {"name": "Clint Eastwood", "character": "Himself (uncredited)", "id": 190, "credit_id": "52fe44bfc3a36847f80a79c5", "cast_id": 41, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 30}, {"name": "Mel Gibson", "character": "Himself (uncredited)", "id": 2461, "credit_id": "52fe44bfc3a36847f80a79c9", "cast_id": 42, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 31}, {"name": "Elise Main", "character": "Little Red Riding Hood (uncredited)", "id": 1201310, "credit_id": "52fe44bfc3a36847f80a79cd", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Tony Stef'Ano", "character": "Kid at Party (uncredited)", "id": 1201311, "credit_id": "52fe44bfc3a36847f80a79d1", "cast_id": 44, "profile_path": null, "order": 33}], "directors": [{"name": "Brad Silberling", "department": "Directing", "job": "Director", "credit_id": "52fe44bec3a36847f80a7913", "profile_path": "/4JR2TYCatx5YFACxGB74il7EMhq.jpg", "id": 11887}], "vote_average": 5.9, "runtime": 100}, "36657": {"poster_path": "/4kYj7fUJzhEg7xz8J3oMPi7gDww.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157299717, "overview": "Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.", "video": false, "id": 36657, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "X-Men", "tagline": "Evolution Begins", "vote_count": 1950, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120903", "adult": false, "backdrop_path": "/xm75A18CE7Wc6J9k2ZidFyqJ6rX.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Donners' Company", "id": 431}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Springwood Productions", "id": 22969}, {"name": "Genetics Productions", "id": 22970}], "release_date": "2000-07-14", "popularity": 0.162072760112314, "original_title": "X-Men", "budget": 75000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe45fe9251416c910457ad", "cast_id": 4, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Patrick Stewart", "character": "Professor Charles Xavier", "id": 2387, "credit_id": "52fe45fe9251416c910457b1", "cast_id": 5, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Eric Lensherr / Magneto", "id": 1327, "credit_id": "52fe45fe9251416c910457b5", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Famke Janssen", "character": "Jean Grey", "id": 10696, "credit_id": "52fe45fe9251416c910457b9", "cast_id": 7, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 3}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "52fe45fe9251416c910457bd", "cast_id": 8, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 4}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe45fe9251416c910457c1", "cast_id": 9, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 5}, {"name": "Anna Paquin", "character": "Rogue / Marie D'Ancanto", "id": 10690, "credit_id": "52fe45fe9251416c910457c5", "cast_id": 10, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 6}, {"name": "Tyler Mane", "character": "Sabretooth", "id": 9832, "credit_id": "52fe45fe9251416c910457c9", "cast_id": 11, "profile_path": "/ppGbITxSnakqHhZIqh5fTjQjq2D.jpg", "order": 7}, {"name": "Ray Park", "character": "Toad", "id": 11007, "credit_id": "52fe45fe9251416c910457cd", "cast_id": 12, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 8}, {"name": "Rebecca Romijn", "character": "Mystique", "id": 11008, "credit_id": "52fe45fe9251416c910457d1", "cast_id": 13, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 9}, {"name": "Bruce Davison", "character": "Senator Kelly", "id": 52374, "credit_id": "52fe45fe9251416c910457d5", "cast_id": 14, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 10}, {"name": "Matthew Sharp", "character": "Henry Gyrich", "id": 115854, "credit_id": "52fe45fe9251416c910457d9", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Rhona Shekter", "character": "Magneto's Mother", "id": 115855, "credit_id": "52fe45fe9251416c910457dd", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Kenneth McGregor", "character": "Magneto's Father", "id": 115856, "credit_id": "52fe45fe9251416c910457e1", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Shawn Roberts", "character": "Rogue's Boyfriend", "id": 81097, "credit_id": "52fe45fe9251416c910457e5", "cast_id": 18, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 14}, {"name": "Stan Lee", "character": "Hot Dog Vendor", "id": 7624, "credit_id": "52fe45fe9251416c91045801", "cast_id": 23, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 15}, {"name": "Shawn Ashmore", "character": "Bobby Drake / Iceman", "id": 11023, "credit_id": "53741ece0e0a267c67002a9d", "cast_id": 25, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 16}, {"name": "Sumela Kay", "character": "Kitty Pryde", "id": 233, "credit_id": "53741eef0e0a267c5c002c30", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Alex Burton", "character": "John Allerdyce / Pyro", "id": 1446555, "credit_id": "55168d62c3a368348900104d", "cast_id": 40, "profile_path": null, "order": 18}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe45fe9251416c9104579d", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 6.5, "runtime": 104}, "36658": {"poster_path": "/fdmZ0uHWDQzb6atNTaOQdfdQd9X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 214948780, "overview": "Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker in this sequel to the Marvel Comics-based blockbuster X-Men. Storm, Wolverine and Jean Grey must join their usual nemeses Magneto and Mystique to unhinge Stryker's scheme to exterminate all mutants.", "video": false, "id": 36658, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "X2: X-Men United", "tagline": "The time has come for those who are different to stand united.", "vote_count": 1273, "homepage": "", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0290334", "adult": false, "backdrop_path": "/u2FxA8fDt0uQAnHKTwWGgkPShoL.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}, {"name": "Marvel Entertainment, LLC", "id": 325}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "The Donners' Company", "id": 11307}], "release_date": "2003-04-27", "popularity": 0.134747831743261, "original_title": "X2: X-Men United", "budget": 110000000, "cast": [{"name": "Patrick Stewart", "character": "Professor Charles Xavier", "id": 2387, "credit_id": "52fe45fe9251416c91045865", "cast_id": 8, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe45fe9251416c91045869", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Ian McKellen", "character": "Eric Lensherr / Magneto", "id": 1327, "credit_id": "52fe45fe9251416c9104586d", "cast_id": 10, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 2}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe45fe9251416c91045871", "cast_id": 11, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 3}, {"name": "Famke Janssen", "character": "Jean Grey / Phoenix", "id": 10696, "credit_id": "52fe45fe9251416c91045875", "cast_id": 12, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 4}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "52fe45fe9251416c91045879", "cast_id": 13, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 5}, {"name": "Anna Paquin", "character": "Anna Marie / Rogue", "id": 10690, "credit_id": "52fe45fe9251416c9104587d", "cast_id": 14, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 6}, {"name": "Rebecca Romijn", "character": "Raven Darkholme / Mystique", "id": 11008, "credit_id": "52fe45fe9251416c91045881", "cast_id": 15, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 7}, {"name": "Brian Cox", "character": "William Stryker", "id": 1248, "credit_id": "52fe45fe9251416c91045885", "cast_id": 16, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 8}, {"name": "Alan Cumming", "character": "Kurt Wagner / Nightcrawler", "id": 10697, "credit_id": "52fe45fe9251416c91045889", "cast_id": 17, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 9}, {"name": "Bruce Davison", "character": "Senator Kelly", "id": 52374, "credit_id": "52fe45fe9251416c9104588d", "cast_id": 18, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 10}, {"name": "Aaron Stanford", "character": "John Allerdyce / Pyro", "id": 11022, "credit_id": "52fe45fe9251416c91045891", "cast_id": 19, "profile_path": "/qIiTHJdvf1dwBDO9hJJj8jBqwys.jpg", "order": 11}, {"name": "Shawn Ashmore", "character": "Bobby Drake / Iceman", "id": 11023, "credit_id": "52fe45fe9251416c91045895", "cast_id": 20, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 12}, {"name": "Kelly Hu", "character": "Yuriko Oyama / Lady Deathstrike", "id": 11024, "credit_id": "52fe45fe9251416c91045899", "cast_id": 21, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 13}, {"name": "Katie Stuart", "character": "Kitty Pryde / Sprite", "id": 64470, "credit_id": "52fe45fe9251416c9104589d", "cast_id": 22, "profile_path": "/tdwn6WDvkomrJJZg6401TVhat8z.jpg", "order": 14}, {"name": "Kea Wong", "character": "Jubilee", "id": 115857, "credit_id": "52fe45fe9251416c910458a1", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Cotter Smith", "character": "President McKenna", "id": 115858, "credit_id": "52fe45fe9251416c910458a5", "cast_id": 24, "profile_path": "/4lMLsN7hLmtGPqOt626dnui64Cb.jpg", "order": 16}, {"name": "Chiara Zanni", "character": "White House Tour Guide", "id": 33053, "credit_id": "52fe45fe9251416c910458a9", "cast_id": 25, "profile_path": "/vN7xP1ICUctUflNdYv4QskbuALn.jpg", "order": 17}, {"name": "Bryce Hodgson", "character": "Artie", "id": 172793, "credit_id": "53741f560e0a267c67002ab1", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Shauna Kain", "character": "Theresa Cassidy / Siryn", "id": 941988, "credit_id": "53741f670e0a267c5f002bee", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Daniel Cudmore", "character": "Piotr Rasputin / Colossus", "id": 84222, "credit_id": "53741f770e0a267c55002bed", "cast_id": 29, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 20}, {"name": "Bryan Singer", "character": "Prison Security Officer (uncredited)", "id": 9032, "credit_id": "5526c6f0c3a3686b17002f1f", "cast_id": 42, "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "order": 21}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe45fe9251416c91045861", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 6.5, "runtime": 133}, "137182": {"poster_path": "/lqXL7oV9YYf82USR7DmzPivcKXM.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 5475058, "overview": "\u2018The Broken Circle Breakdown\u2019 tells the love story between Elise and Didier. She has her own tattoo shop, he plays the banjo in a band. It is love at first sight, in spite of major differences. He talks, she listens. He is a dedicated atheist, although at the same time a na\u00efve romantic. She has a cross tattooed in her neck, even though she has both feet firmly on the ground. Their happiness is complete after their little girl Maybelle is born. Unfortunately, Maybelle, at six years old, becomes seriously ill. Didier and Elise respond in very different ways. But Maybelle does not leave them any choice. Didier and Elise will have to fight for her together. Will you get through something like that if you are so different? Or will love let you down if you need it most? \u2018The Broken Circle Breakdown\u2019 is an intense melodrama, full of passion and music. About how love can conquer fate, and sometimes not.", "video": false, "id": 137182, "genres": [{"id": 18, "name": "Drama"}], "title": "The Broken Circle Breakdown", "tagline": "", "vote_count": 96, "homepage": "http://www.thebrokencirclebreakdown.be/en", "belongs_to_collection": null, "original_language": "nl", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "nl", "name": "Nederlands"}], "imdb_id": "tt2024519", "adult": false, "backdrop_path": "/r8G2Y8gTyNPob74QtBaLFmK7OXV.jpg", "production_companies": [{"name": "Topkapi Films", "id": 24845}, {"name": "Menuet Producties", "id": 24846}], "release_date": "2012-10-09", "popularity": 0.98426751406917, "original_title": "The Broken Circle Breakdown", "budget": 0, "cast": [{"name": "Veerle Baetens", "character": "Elise", "id": 82423, "credit_id": "52fe4c2ac3a368484e1aad0d", "cast_id": 1, "profile_path": "/iu0NsJIdbTgv7JI7iYGE8L5Djgm.jpg", "order": 0}, {"name": "Johan Heldenbergh", "character": "Didier", "id": 115742, "credit_id": "52fe4c2ac3a368484e1aad11", "cast_id": 2, "profile_path": "/a8WRS08T565VRIr25JwSerqoYOh.jpg", "order": 1}, {"name": "Nell Cattrysse", "character": "Maybelle", "id": 1106961, "credit_id": "52fe4c2ac3a368484e1aad15", "cast_id": 3, "profile_path": "/qBHwLd9pg6WGAvAxrWi9AHkGyCc.jpg", "order": 2}, {"name": "Geert Van Rampelberg", "character": "William", "id": 220295, "credit_id": "52fe4c2bc3a368484e1aad19", "cast_id": 4, "profile_path": "/dabL26ohzBveC6voVPMvc9PXsYD.jpg", "order": 3}, {"name": "Nils De Caster", "character": "Jock", "id": 1106962, "credit_id": "52fe4c2bc3a368484e1aad1d", "cast_id": 5, "profile_path": "/A8a7DLznOJqrMKfCCmAWa6gNcaC.jpg", "order": 4}, {"name": "Robbie Cleiren", "character": "Jimmy", "id": 88806, "credit_id": "52fe4c2bc3a368484e1aad21", "cast_id": 6, "profile_path": "/cr7D40Ae7ob10DRzAOOzKLhqBB2.jpg", "order": 5}, {"name": "Bert Huysentruyt", "character": "Jef", "id": 1106963, "credit_id": "52fe4c2bc3a368484e1aad25", "cast_id": 7, "profile_path": "/5Lvv4Jzs4mljEDPzeHa1gDmeI0G.jpg", "order": 6}, {"name": "Jan Bijvoet", "character": "Koen", "id": 1106964, "credit_id": "52fe4c2bc3a368484e1aad29", "cast_id": 8, "profile_path": "/8X2yeSWrXSF1MdfGn6j35MOZ1X5.jpg", "order": 7}, {"name": "Blanka Heirman", "character": "Denise", "id": 1106965, "credit_id": "52fe4c2bc3a368484e1aad2d", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Felix Van Groeningen", "department": "Directing", "job": "Director", "credit_id": "52fe4c2bc3a368484e1aad33", "profile_path": null, "id": 239672}], "vote_average": 7.7, "runtime": 110}, "200505": {"poster_path": "/pb5FXL6pypVQbcs3TCzp5GqyTYr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28831145, "overview": "At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.", "video": false, "id": 200505, "genres": [{"id": 18, "name": "Drama"}], "title": "Draft Day", "tagline": "The greatest victories don't always happen on the field.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2223990", "adult": false, "backdrop_path": "/1D9nuelqoHGQdV4EsVIfaSZRONT.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2014-04-11", "popularity": 0.747957775131557, "original_title": "Draft Day", "budget": 0, "cast": [{"name": "Kevin Costner", "character": "Sonny Weaver Jr.", "id": 1269, "credit_id": "52fe4c88c3a368484e1bb41b", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Ali", "id": 9278, "credit_id": "52fe4c88c3a368484e1bb41f", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Tom Welling", "character": "Brian Drew", "id": 11824, "credit_id": "52fe4c88c3a368484e1bb423", "cast_id": 3, "profile_path": "/45hE6LdT31IyMKLtu8JPopByMEH.jpg", "order": 2}, {"name": "Sam Elliott", "character": "", "id": 16431, "credit_id": "52fe4c88c3a368484e1bb427", "cast_id": 4, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 3}, {"name": "Terry Crews", "character": "Earl Jennings", "id": 53256, "credit_id": "52fe4c88c3a368484e1bb42b", "cast_id": 5, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 4}, {"name": "Ellen Burstyn", "character": "Barb Weaver", "id": 9560, "credit_id": "52fe4c88c3a368484e1bb42f", "cast_id": 6, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 5}, {"name": "Rosanna Arquette", "character": "Angie", "id": 2165, "credit_id": "52fe4c88c3a368484e1bb433", "cast_id": 7, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 6}, {"name": "Frank Langella", "character": "Harvey Molina", "id": 8924, "credit_id": "52fe4c88c3a368484e1bb437", "cast_id": 8, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 7}, {"name": "Chi McBride", "character": "Walt Gordon", "id": 8687, "credit_id": "52fe4c88c3a368484e1bb43b", "cast_id": 9, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 8}, {"name": "Denis Leary", "character": "Vince Penn", "id": 5724, "credit_id": "52fe4c88c3a368484e1bb43f", "cast_id": 10, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 9}, {"name": "Patrick St. Esprit", "character": "Tom Michaels", "id": 117437, "credit_id": "52fe4c88c3a368484e1bb443", "cast_id": 11, "profile_path": "/bcbLFQUGDcgrlbJz0blywlfGutL.jpg", "order": 10}, {"name": "Christopher Cousins", "character": "Max Stone", "id": 20379, "credit_id": "52fe4c88c3a368484e1bb447", "cast_id": 12, "profile_path": "/1HGQISEy6FBSse2QuTKj2yfVFrM.jpg", "order": 11}, {"name": "Chadwick Boseman", "character": "Vontae Mack", "id": 172069, "credit_id": "52fe4c88c3a368484e1bb44b", "cast_id": 13, "profile_path": "/xE2sR6skskfCmbVKkebbDXSURiT.jpg", "order": 12}, {"name": "Wade Williams", "character": "O'Reilly", "id": 51930, "credit_id": "52fe4c88c3a368484e1bb44f", "cast_id": 14, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 13}, {"name": "W. Earl Brown", "character": "Ralph Mowry", "id": 6951, "credit_id": "52fe4c88c3a368484e1bb453", "cast_id": 15, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 14}, {"name": "Kevin Dunn", "character": "Marvin", "id": 14721, "credit_id": "52fe4c88c3a368484e1bb457", "cast_id": 16, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 15}, {"name": "Brian Haley", "character": "NFL Commissioner", "id": 10138, "credit_id": "52fe4c88c3a368484e1bb45b", "cast_id": 17, "profile_path": "/oGaZ2sa0nHJ95vW7nN2TgjeeXGM.jpg", "order": 16}, {"name": "Griffin Newman", "character": "Rick the Intern", "id": 225377, "credit_id": "5359c78ac3a3684790000b94", "cast_id": 21, "profile_path": "/2gHhhQf3yPs1Kwc7MS1haRU7Tkn.jpg", "order": 17}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4c88c3a368484e1bb461", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.6, "runtime": 109}, "12090": {"poster_path": "/15Xm4K7vPLRYDDErYK6lnbuvXWY.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101564935, "overview": "Tom Leezak and Sarah McNerney fall in love and plan to get married, despite opposition from Sarah's uptight, rich family. When they do get married, and get a chance to prove Sarah's family wrong, they go on a European honeymoon and run into disaster after disaster. They have to decide whether the honeymoon from hell and a few pre-marital mistakes are worth throwing away their love and marriage.", "video": false, "id": 12090, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Just Married", "tagline": "Welcome to the honeymoon from hell.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0305711", "adult": false, "backdrop_path": "/aJBZSAmTyTFCQ6vYc2O9Tr4uLrS.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2003-01-09", "popularity": 0.916330405719332, "original_title": "Just Married", "budget": 18000000, "cast": [{"name": "Ashton Kutcher", "character": "Tom Leezak", "id": 18976, "credit_id": "52fe44b29251416c7503dd35", "cast_id": 13, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Brittany Murphy", "character": "Sarah McNerney", "id": 328, "credit_id": "52fe44b29251416c7503dd39", "cast_id": 14, "profile_path": "/jktbTmFE3TVaKUqPDWw8VZ5rXqc.jpg", "order": 1}, {"name": "Christian Kane", "character": "Peter Prentiss", "id": 71198, "credit_id": "52fe44b29251416c7503dd3d", "cast_id": 15, "profile_path": "/urL5yaMaEhm5HLOfkDOsZgX1I5f.jpg", "order": 2}, {"name": "David Moscow", "character": "Kyle", "id": 62123, "credit_id": "52fe44b29251416c7503dd41", "cast_id": 16, "profile_path": "/shlyKoI2kEAcgX0AE5qFEFSrLfv.jpg", "order": 3}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dcef", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.5, "runtime": 95}, "12092": {"poster_path": "/nxI5QNs0Sdc5GgQf7zqwSxskf7x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 572000000, "overview": "On a golden afternoon, young Alice follows a White Rabbit, who disappears down a nearby rabbit hole. Quickly following him, she tumbles into the burrow - and enters the merry, topsy-turvy world of Wonderland! Memorable songs and whimsical escapades highlight Alice's journey, which culminates in a madcap encounter with the Queen of Hearts - and her army of playing cards!", "video": false, "id": 12092, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Alice in Wonderland", "tagline": "A world of wonders in One Great Picture", "vote_count": 305, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0043274", "adult": false, "backdrop_path": "/p6frW7qR3wUbssM25BS8BlzyoKc.jpg", "production_companies": [{"name": "Walt Disney", "id": 5888}], "release_date": "1951-07-26", "popularity": 1.74599448160763, "original_title": "Alice in Wonderland", "budget": 3000000, "cast": [{"name": "Kathryn Beaumont", "character": "Alice (voice)", "id": 67228, "credit_id": "52fe44b29251416c7503de05", "cast_id": 21, "profile_path": "/zpN8J3nmzDGoBNC7UeglDIDXtae.jpg", "order": 0}, {"name": "Verna Felton", "character": "Queen of Hearts (voice)", "id": 67290, "credit_id": "52fe44b29251416c7503de09", "cast_id": 23, "profile_path": "/uUu5xXqN1x00nuXzv2x84cAWLqu.jpg", "order": 1}, {"name": "Ed Wynn", "character": "Mad Hatter (voice)", "id": 5833, "credit_id": "52fe44b29251416c7503de0d", "cast_id": 25, "profile_path": "/zjH7qZlelUfL57SGXijeZAnA1bS.jpg", "order": 2}, {"name": "Richard Haydn", "character": "Caterpillar (voice)", "id": 29283, "credit_id": "52fe44b29251416c7503de11", "cast_id": 26, "profile_path": "/fEUsWCS5Pd2pnarasaPIV9ksEst.jpg", "order": 3}, {"name": "Sterling Holloway", "character": "Cheshire Cat (voice)", "id": 34759, "credit_id": "52fe44b29251416c7503de15", "cast_id": 27, "profile_path": "/njZObhSQmwSX2U7IrB6Gytuedm8.jpg", "order": 4}, {"name": "Jerry Colonna", "character": "March Hare (voice)", "id": 142527, "credit_id": "52fe44b29251416c7503de19", "cast_id": 28, "profile_path": "/toNZjTxmuc6QczOUZKgWKRp8jUX.jpg", "order": 5}, {"name": "J. Pat O'Malley", "character": "Walrus / Carpenter / Dee / Dum (voice) (as Pat O'Malley)", "id": 22602, "credit_id": "52fe44b29251416c7503de1d", "cast_id": 29, "profile_path": "/if8jAnsuARxFUy3k7PhaFqzHd9N.jpg", "order": 6}, {"name": "Bill Thompson", "character": "White Rabbit / Dodo (voice)", "id": 67230, "credit_id": "52fe44b29251416c7503de21", "cast_id": 30, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 7}, {"name": "Heather Angel", "character": "Alice's Sister (voice)", "id": 93897, "credit_id": "53fd83650e0a262ddc00124a", "cast_id": 38, "profile_path": "/eyi5es3S6iYNFlRdu1VbpruYgIw.jpg", "order": 8}, {"name": "Joseph Kearns", "character": "Doorknob (voice)", "id": 132709, "credit_id": "52fe44b29251416c7503de29", "cast_id": 32, "profile_path": "/bjcWrHMsJOK07wjYwJhyOTmdVhh.jpg", "order": 9}, {"name": "Larry Grey", "character": "Bill (voice)", "id": 1064225, "credit_id": "52fe44b29251416c7503de2d", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Queenie Leonard", "character": "Bird in the Tree (voice)", "id": 39802, "credit_id": "52fe44b29251416c7503de31", "cast_id": 34, "profile_path": "/a0La7jUQRkLKmK7d70jkQ3JDc1C.jpg", "order": 11}, {"name": "Dink Trout", "character": "King of Hearts (voice)", "id": 148225, "credit_id": "52fe44b29251416c7503de35", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Doris Lloyd", "character": "The Rose (voice)", "id": 21878, "credit_id": "52fe44b29251416c7503de39", "cast_id": 36, "profile_path": "/4QJ0iSrOQ9rwfgEaDnqTaXem6c5.jpg", "order": 13}, {"name": "James MacDonald", "character": "Dormouse (voice)", "id": 137461, "credit_id": "52fe44b29251416c7503de3d", "cast_id": 37, "profile_path": "/gLItHPbWRe6skuuqInGnFLMMMNW.jpg", "order": 14}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dd8f", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dd95", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe44b29251416c7503dd9b", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}], "vote_average": 6.5, "runtime": 75}, "36669": {"poster_path": "/irNk0nXr6dccYPwlQwtmDlJbrAv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 431971116, "overview": "The ever-daring James Bond taking on a North Korean leader who undergoes DNA replacement procedures that allow him to assume different identities. American agent Jinx Johnson assists Bond in thwarting the villain's plans to exploit a satellite that is powered by solar energy.", "video": false, "id": 36669, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Die Another Day", "tagline": "Events don't get any bigger than...", "vote_count": 382, "homepage": "http://www.mgm.com/view/movie/232/Die-Another-Day/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0246460", "adult": false, "backdrop_path": "/3YQfmtpbiFCMHcXY3lJ7fGEcOL6.jpg", "production_companies": [{"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "United Artists", "id": 60}], "release_date": "2002-11-17", "popularity": 1.39610798033666, "original_title": "Die Another Day", "budget": 140000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe46009251416c91045ac5", "cast_id": 20, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Halle Berry", "character": "Jinx Johnson", "id": 4587, "credit_id": "52fe45ff9251416c91045a89", "cast_id": 5, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Miranda Frost", "id": 10882, "credit_id": "52fe45ff9251416c91045a91", "cast_id": 7, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "Rick Yune", "character": "Zao", "id": 10883, "credit_id": "52fe45ff9251416c91045a95", "cast_id": 8, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 3}, {"name": "Toby Stephens", "character": "Gustav Graves", "id": 10881, "credit_id": "52fe45ff9251416c91045a8d", "cast_id": 6, "profile_path": "/zZAbK5QVmZSqZzAe16mXWzgjrSs.jpg", "order": 4}, {"name": "John Cleese", "character": "Q", "id": 8930, "credit_id": "52fe45ff9251416c91045a99", "cast_id": 9, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 5}, {"name": "Lawrence Makoare", "character": "Mr. Kil", "id": 1365, "credit_id": "52fe45ff9251416c91045ab1", "cast_id": 15, "profile_path": "/yVHInaWXU4ynUnNE3qa59hvsFAJ.jpg", "order": 6}, {"name": "Michael Madsen", "character": "Damian Falco", "id": 147, "credit_id": "52fe45ff9251416c91045a9d", "cast_id": 10, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 7}, {"name": "Will Yun Lee", "character": "Colonel Moon", "id": 10884, "credit_id": "52fe45ff9251416c91045aa1", "cast_id": 11, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 8}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe45ff9251416c91045abd", "cast_id": 18, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 9}, {"name": "Kenneth Tsang", "character": "General Moon", "id": 10885, "credit_id": "52fe45ff9251416c91045aa5", "cast_id": 12, "profile_path": "/6oYTIjKlp8vsyxod7nPJ1R9V8Hf.jpg", "order": 10}, {"name": "Emilio Echevarr\u00eda", "character": "Raoul", "id": 263, "credit_id": "52fe45ff9251416c91045aa9", "cast_id": 13, "profile_path": "/iGgExtFoyuIAmll19gEmorWQAPX.jpg", "order": 11}, {"name": "Mikhail Gorevoy", "character": "Vlad", "id": 115876, "credit_id": "52fe45ff9251416c91045aad", "cast_id": 14, "profile_path": "/euYqjNx8m3946uLo5uw3y6uTXWZ.jpg", "order": 12}, {"name": "Colin Salmon", "character": "Charles Robinson", "id": 5414, "credit_id": "52fe45ff9251416c91045ab5", "cast_id": 16, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 13}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe45ff9251416c91045ab9", "cast_id": 17, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 14}, {"name": "Madonna", "character": "Verity", "id": 3125, "credit_id": "52fe46009251416c91045ac1", "cast_id": 19, "profile_path": "/cxsHGr5SwXDw0kTKDR1vQVB3zzC.jpg", "order": 15}, {"name": "Rachel Grant", "character": "Peaceful", "id": 86050, "credit_id": "5401cadfc3a3684360003397", "cast_id": 26, "profile_path": "/qSZtvFdMCGRwp3osfVljr3klrNu.jpg", "order": 16}, {"name": "Sim\u00f3n Andreu", "character": "Dr. Alvarez", "id": 24496, "credit_id": "5401cafcc3a36843630030f2", "cast_id": 27, "profile_path": "/6G1JcihI3dS3Dpk4RowWqgVCKmP.jpg", "order": 17}, {"name": "Mark Dymond", "character": "Van Bierke", "id": 57143, "credit_id": "5401cb0dc3a3682d98001867", "cast_id": 28, "profile_path": "/3aTsmFJuNExGUExIg7CLARJQWLV.jpg", "order": 18}, {"name": "Deborah Moore", "character": "Air Hostess", "id": 1231943, "credit_id": "5401cb5dc3a368068c00321b", "cast_id": 29, "profile_path": null, "order": 19}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe45ff9251416c91045a7f", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 5.7, "runtime": 133}, "36670": {"poster_path": "/s9tBlhTEW0OtYJdemVMPbRcD7wk.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160000000, "overview": "James Bond returns as the secret agent 007 one more time to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge. This is the last time for Sean Connery as Her Majesty's Secret Agent 007.", "video": false, "id": 36670, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Never Say Never Again", "tagline": "Sean Connery is James Bond 007", "vote_count": 83, "homepage": "http://www.mgm.com/view/movie/1345/Never-Say-Never-Again/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0086006", "adult": false, "backdrop_path": "/jYO08KXUKvJvzx3KcE7MoaDYvoM.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "PSO International", "id": 427}, {"name": "Orion Pictures", "id": 41}], "release_date": "1983-12-15", "popularity": 0.905851780968435, "original_title": "Never Say Never Again", "budget": 36000000, "cast": [{"name": "Sean Connery", "character": "James Bond", "id": 738, "credit_id": "52fe46009251416c91045aff", "cast_id": 2, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Kim Basinger", "character": "Domino Petachi", "id": 326, "credit_id": "52fe46009251416c91045b03", "cast_id": 3, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 1}, {"name": "Klaus Maria Brandauer", "character": "Maximilian Largo", "id": 10647, "credit_id": "52fe46009251416c91045b07", "cast_id": 4, "profile_path": "/7TQOSrbO4tk3jecFSg2dVdZjTHQ.jpg", "order": 2}, {"name": "Barbara Carrera", "character": "Fatima Blush", "id": 10938, "credit_id": "52fe46009251416c91045b0b", "cast_id": 5, "profile_path": "/zmuNNytZ5w3ewWC6ShWeqFZl49c.jpg", "order": 3}, {"name": "Max von Sydow", "character": "Ernst Stavro Blofeld", "id": 2201, "credit_id": "52fe46009251416c91045b0f", "cast_id": 6, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 4}, {"name": "Bernie Casey", "character": "Felix Leiter", "id": 10939, "credit_id": "52fe46009251416c91045b13", "cast_id": 7, "profile_path": "/rvL40yyewKgTDVm7doR1ym09sUj.jpg", "order": 5}, {"name": "Alec McCowen", "character": "Q 'Algy' Algernon", "id": 8224, "credit_id": "52fe46009251416c91045b17", "cast_id": 8, "profile_path": "/z9TmCKc1WAFQ0qn2CJjbKlna4MX.jpg", "order": 6}, {"name": "Edward Fox", "character": "M", "id": 9126, "credit_id": "52fe46009251416c91045b1b", "cast_id": 9, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 7}, {"name": "Pamela Salem", "character": "Miss Moneypenny", "id": 115872, "credit_id": "52fe46009251416c91045b1f", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Rowan Atkinson", "character": "Nigel Small-Fawcett", "id": 10730, "credit_id": "52fe46009251416c91045b23", "cast_id": 11, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 9}, {"name": "Valerie Leon", "character": "Lady in Bahama", "id": 95099, "credit_id": "5401cec1c3a36843600033cb", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Milos Kirek", "character": "Kovacs", "id": 152283, "credit_id": "5401ced3c3a3684363003138", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Pat Roach", "character": "Lippe", "id": 10942, "credit_id": "5401cf2bc3a3687d50001669", "cast_id": 14, "profile_path": "/5YXmfgXqCjqEhmyjz1xhuWy8Zr4.jpg", "order": 12}, {"name": "Anthony Sharp", "character": "Lord Ambrose", "id": 44700, "credit_id": "5401cf45c3a3680603002e93", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Prunella Gee", "character": "Patricia", "id": 51813, "credit_id": "5401cf58c3a3684363003141", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Gavan O'Herlihy", "character": "Jack Petachi", "id": 1288557, "credit_id": "5401cf6bc3a36843600033db", "cast_id": 17, "profile_path": "/4TQxdmE7abLagt9d3vrHRTXNhxV.jpg", "order": 15}, {"name": "Ronald Pickup", "character": "Elliott", "id": 32556, "credit_id": "5401cf7cc3a36843660031cf", "cast_id": 18, "profile_path": "/a0Q0rSRe8yBPoAyWhNSX7pzIaYq.jpg", "order": 16}, {"name": "Robert Rietti", "character": "Italian Minister", "id": 11841, "credit_id": "5401cf90c3a3680603002e99", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Billy J. Mitchell", "character": "Captain Pederson", "id": 55911, "credit_id": "5401cfb2c3a3680603002e9d", "cast_id": 20, "profile_path": null, "order": 18}], "directors": [{"name": "Irvin Kershner", "department": "Directing", "job": "Director", "credit_id": "52fe46009251416c91045afb", "profile_path": "/ttTefShgVMqX85QawaGpfE1RT3M.jpg", "id": 10930}], "vote_average": 5.9, "runtime": 134}, "12096": {"poster_path": "/eNzbcO8Mps96Zycg6DSFn9b1aO1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the coach of the France soccer team is killed by a poisoned dart in the stadium in the end of a game, and his expensive and huge ring with the diamond Pink Panther disappears, the ambitious Chief Inspector Dreyfus assigns the worst police inspector Jacques Clouseau to the case.", "video": false, "id": 12096, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 10751, "name": "Family"}], "title": "The Pink Panther", "tagline": "Pardon His French.", "vote_count": 133, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tuE4QPHLHaMUkAW4Yggig5U92rl.jpg", "poster_path": "/xYbMC6vo4rMIX8hkTUZva86r0i5.jpg", "id": 130440, "name": "The Pink Panther Collection (Steve Martin Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0383216", "adult": false, "backdrop_path": "/xT9awVPuIh8yWx1b2ODTpngY30M.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-01-18", "popularity": 0.654619302419695, "original_title": "The Pink Panther", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Inspector Jacques Clouseau", "id": 67773, "credit_id": "52fe44b39251416c7503e06f", "cast_id": 11, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Kevin Kline", "character": "Chief Inspector Dreyfus", "id": 8945, "credit_id": "52fe44b39251416c7503e073", "cast_id": 12, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 1}, {"name": "Beyonc\u00e9 Knowles", "character": "Xania", "id": 14386, "credit_id": "52fe44b39251416c7503e077", "cast_id": 13, "profile_path": "/mDDpeDtxuL9Af59rOB8DAjni50A.jpg", "order": 2}, {"name": "Jean Reno", "character": "Gendarme Gilbert Ponton", "id": 1003, "credit_id": "52fe44b39251416c7503e07b", "cast_id": 14, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 3}, {"name": "Emily Mortimer", "character": "Nicole", "id": 1246, "credit_id": "52fe44b39251416c7503e07f", "cast_id": 15, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 4}, {"name": "Alice Taglioni", "character": "Une journaliste", "id": 38863, "credit_id": "550d4bfb925141469900533c", "cast_id": 16, "profile_path": "/mQjbA9EYcM61vhuRBZoGcU5J9zs.jpg", "order": 5}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe44b39251416c7503e035", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.6, "runtime": 93}, "44865": {"poster_path": "/8OIEVvoTmbGotdygjXzSNX8ribV.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 6594136, "overview": "Ip Man's peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family's honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.", "video": false, "id": 44865, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Grandmaster", "tagline": "In Martial Arts there is no right or wrong, only the last man standing.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1462900", "adult": false, "backdrop_path": "/k3ATJ7zmlCw45x6OH4WutlXqTvy.jpg", "production_companies": [{"name": "Sil-Metropole Organisation Ltd.", "id": 35050}, {"name": "Wild Bunch", "id": 856}, {"name": "The Weinstein Company", "id": 308}, {"name": "Block 2 Pictures", "id": 539}, {"name": "Jet Tone Films", "id": 26492}, {"name": "Annapurna Pictures", "id": 13184}], "release_date": "2013-01-08", "popularity": 1.12375936009632, "original_title": "\u4e00\u4ee3\u5b97\u5e2b", "budget": 3860000, "cast": [{"name": "Tony Leung Chiu-Wai", "character": "Ip Man", "id": 1337, "credit_id": "52fe469fc3a36847f810928d", "cast_id": 3, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 0}, {"name": "Zhang Ziyi", "character": "Gong Ruomei/Gong Er", "id": 1339, "credit_id": "52fe469fc3a36847f8109291", "cast_id": 4, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 1}, {"name": "Song Hye-Kyo", "character": "Zhang Yongcheng", "id": 74421, "credit_id": "52fe469fc3a36847f8109295", "cast_id": 5, "profile_path": "/w6df24okDUEuruIflRL63abcDCo.jpg", "order": 2}, {"name": "Chang Chen", "character": "Yi Xian Tian/Razor", "id": 1622, "credit_id": "52fe469fc3a36847f8109299", "cast_id": 6, "profile_path": "/RccYC6G6bhz3Mjpm9wGvsyKsoY.jpg", "order": 3}, {"name": "Zhao Benshan", "character": "Ding Lianshan", "id": 131514, "credit_id": "52fe46a0c3a36847f81092ab", "cast_id": 11, "profile_path": "/cVdZj8vr7rivIFBQuJAO6qGB2iD.jpg", "order": 6}, {"name": "Cung Le", "character": "Iron Shoes", "id": 116637, "credit_id": "52fe46a0c3a36847f81092af", "cast_id": 12, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 7}, {"name": "Yuen Woo-Ping", "character": "Chan Wah-shun (Chen Huashun)", "id": 18899, "credit_id": "52fe46a0c3a36847f81092b7", "cast_id": 14, "profile_path": "/7gr04tWDnsBHHmo18aYLWXZHAvC.jpg", "order": 9}, {"name": "Qingxiang Wang", "character": "Master Gong Yutian", "id": 1297520, "credit_id": "53112985c3a36829b8001ae9", "cast_id": 15, "profile_path": "/pFeIEPwTDiCPWrvaqgSeRgzecUN.jpg", "order": 10}, {"name": "John Zhang Jin", "character": "Ma San", "id": 1183808, "credit_id": "547aa93e9251414c65001202", "cast_id": 21, "profile_path": "/vJnBZJp9HgNMFiBoPCEduu7Si9e.jpg", "order": 12}, {"name": "Julian Cheung Chi-Lam", "character": "", "id": 144860, "credit_id": "54a4e06a925141236b00aaf4", "cast_id": 22, "profile_path": "/wHea7TA8joBBMUGtNEDE24XbpFi.jpg", "order": 13}], "directors": [{"name": "Wong Kar-Wai", "department": "Directing", "job": "Director", "credit_id": "52fe469fc3a36847f8109283", "profile_path": "/rGk5pKmYcWB3jVPCfZcTZxDrAUr.jpg", "id": 12453}], "vote_average": 6.5, "runtime": 130}, "8843": {"poster_path": "/tu2rPoVBhEp9fZfOahkqbXSNsxS.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104155843, "overview": "A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.", "video": false, "id": 8843, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Cell", "tagline": "Enter The Mind Of A Killer", "vote_count": 95, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rFbUuvYzGI6uKRPUcQVTjmoGJy5.jpg", "poster_path": "/37KiF6CfXJS60E4oBk21Dx8NIcY.jpg", "id": 223564, "name": "The Cell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0209958", "adult": false, "backdrop_path": "/46aAskiXtvdtAR9ryEOXJPazKpL.jpg", "production_companies": [{"name": "Caro-McLeod", "id": 26084}, {"name": "Katira Productions GmbH & Co. KG", "id": 26083}, {"name": "New Line Cinema", "id": 12}, {"name": "Avery Pix", "id": 1565}, {"name": "Radical Media", "id": 11152}], "release_date": "2000-08-17", "popularity": 0.60677246571785, "original_title": "The Cell", "budget": 33000000, "cast": [{"name": "Jennifer Lopez", "character": "Catherine Deane", "id": 16866, "credit_id": "52fe44bfc3a36847f80a7bad", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Vincent D'Onofrio", "character": "Carl Rudolph Stargher", "id": 7132, "credit_id": "52fe44bfc3a36847f80a7bb1", "cast_id": 2, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Peter Novak", "id": 4937, "credit_id": "52fe44bfc3a36847f80a7bbb", "cast_id": 4, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Marianne Jean-Baptiste", "character": "Dr. Miriam Kent", "id": 17352, "credit_id": "52fe44bfc3a36847f80a7bbf", "cast_id": 5, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 3}, {"name": "Catherine Sutherland", "character": "Anne Marie Vicksey", "id": 56513, "credit_id": "52fe44bfc3a36847f80a7bc3", "cast_id": 6, "profile_path": "/oqGw7YgccEIVogMDhVdDponW8UV.jpg", "order": 4}, {"name": "James Gammon", "character": "Teddy Lee", "id": 16433, "credit_id": "52fe44bfc3a36847f80a7bc7", "cast_id": 7, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 5}, {"name": "Colton James", "character": "Edward Baines", "id": 94509, "credit_id": "52fe44bfc3a36847f80a7c0d", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Dylan Baker", "character": "Henry West", "id": 19152, "credit_id": "52fe44bfc3a36847f80a7c11", "cast_id": 20, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 7}, {"name": "Gerry Becker", "character": "Dr. Barry Cooperman", "id": 19468, "credit_id": "52fe44bfc3a36847f80a7c15", "cast_id": 21, "profile_path": "/4oXmbOtBU18w0eB5Jaj7OACvEpG.jpg", "order": 8}, {"name": "Musetta Vander", "character": "Ella Baines", "id": 1475, "credit_id": "52fe44bfc3a36847f80a7c19", "cast_id": 22, "profile_path": "/RkVTWISYMxuFihaj9O7RJDq5Pt.jpg", "order": 9}, {"name": "Patrick Bauchau", "character": "Lucien Baines", "id": 5274, "credit_id": "52fe44bfc3a36847f80a7c1d", "cast_id": 23, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 10}, {"name": "Jake Weber", "character": "Gordon Ramsey", "id": 4177, "credit_id": "52fe44bfc3a36847f80a7c21", "cast_id": 24, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 11}, {"name": "Dean Norris", "character": "Cole", "id": 14329, "credit_id": "52fe44bfc3a36847f80a7c25", "cast_id": 25, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 12}, {"name": "Tara Subkoff", "character": "Julia Hickson", "id": 61111, "credit_id": "52fe44bfc3a36847f80a7c29", "cast_id": 26, "profile_path": "/qBbSymmytAOqgAGlll3sN5LXih3.jpg", "order": 13}, {"name": "Lauri Johnson", "character": "Mrs. Hickson", "id": 66499, "credit_id": "52fe44bfc3a36847f80a7c2d", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "John Cothran, Jr.", "character": "Agent Stockwell", "id": 9785, "credit_id": "53ad3c930e0a265986001a18", "cast_id": 47, "profile_path": "/bbm2ihEzSwu98YCEZSaYOfiGhEH.jpg", "order": 15}, {"name": "Jack Conley", "character": "Agent Brock", "id": 21675, "credit_id": "53ad3cc40e0a265975001a4f", "cast_id": 48, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 16}, {"name": "Kamar de los Reyes", "character": "Officer Alexander", "id": 400821, "credit_id": "53ad3d1a0e0a26597d001a8b", "cast_id": 49, "profile_path": "/oy4TUyuNnF3OQtLGHxjVlFGWPBP.jpg", "order": 17}, {"name": "Pruitt Taylor Vince", "character": "Dr. Reid", "id": 3201, "credit_id": "53ad3d470e0a265979001aaa", "cast_id": 50, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 18}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe44bfc3a36847f80a7c09", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 6.0, "runtime": 107}, "12100": {"poster_path": "/siWpVZlD3pahKXNnV9M52yCMZJG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40914068, "overview": "Joe Enders is a gung-ho Marine assigned to protect a \"windtalker\" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.", "video": false, "id": 12100, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Windtalkers", "tagline": "Honor Was Their Code.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "nv", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0245562", "adult": false, "backdrop_path": "/gP9C1wmbF2CV4SZkPbVvfawRuTv.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Lion Rock Productions", "id": 2812}], "release_date": "2002-06-14", "popularity": 1.07765799187342, "original_title": "Windtalkers", "budget": 115000000, "cast": [{"name": "Nicolas Cage", "character": "Sergeant Joe Enders", "id": 2963, "credit_id": "52fe44b49251416c7503e213", "cast_id": 14, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Adam Beach", "character": "Private Ben Yahzee", "id": 33527, "credit_id": "52fe44b49251416c7503e217", "cast_id": 15, "profile_path": "/jXb4UZtpJHyLWGbePDB2bJUJAxq.jpg", "order": 1}, {"name": "Peter Stormare", "character": "Sergeant Eric Hjelmstad", "id": 53, "credit_id": "52fe44b49251416c7503e21b", "cast_id": 16, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 2}, {"name": "Noah Emmerich", "character": "Corporal Charles Rogers", "id": 11315, "credit_id": "52fe44b49251416c7503e21f", "cast_id": 17, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 3}, {"name": "Mark Ruffalo", "character": "Pappas", "id": 103, "credit_id": "53281cee9251411a14001e06", "cast_id": 19, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 4}, {"name": "Jason Isaacs", "character": "Major Mellitz", "id": 11355, "credit_id": "533b34fec3a36844f400013d", "cast_id": 20, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 5}, {"name": "Christian Slater", "character": "Sergeant Peter Henderson", "id": 2224, "credit_id": "533b3520c3a36844f400013f", "cast_id": 21, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 6}, {"name": "Frances O'Connor", "character": "Rita Swelton", "id": 1518, "credit_id": "533b357ec3a36844f4000147", "cast_id": 22, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 7}, {"name": "Keith Campbell", "character": "Kittring", "id": 15318, "credit_id": "53b955fcc3a3685ec100577e", "cast_id": 29, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 8}], "directors": [{"name": "John Woo", "department": "Directing", "job": "Director", "credit_id": "52fe44b49251416c7503e1cd", "profile_path": "/690wPjP1BzcSNcZqfxtkPtLwLWD.jpg", "id": 11401}], "vote_average": 6.0, "runtime": 134}, "12102": {"poster_path": "/oyYtH37h8rLUxlERoD49losVvlg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ted Kramer is a career man for whom his work comes before his family. His wife Joanna cannot take this anymore, so she decides to leave him. Ted is now faced with the tasks of housekeeping and taking care of himself and their young son Billy. When he has learned to adjust his life to these new responsibilities, Joanna resurfaces and wants Billy back. Ted however refuses to give him up, so they go to court to fight for the custody of their son.", "video": false, "id": 12102, "genres": [{"id": 18, "name": "Drama"}], "title": "Kramer vs. Kramer", "tagline": "There are three sides to this love story", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0079417", "adult": false, "backdrop_path": "/uykne2LCkVuD5NEBzicCmCHFqBa.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1979-12-19", "popularity": 0.554897819997245, "original_title": "Kramer vs. Kramer", "budget": 0, "cast": [{"name": "Dustin Hoffman", "character": "Ted Kramer", "id": 4483, "credit_id": "52fe44b49251416c7503e2f5", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Joanna Kramer", "id": 5064, "credit_id": "52fe44b49251416c7503e2f9", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Jane Alexander", "character": "Margaret Phelps", "id": 13724, "credit_id": "52fe44b49251416c7503e2fd", "cast_id": 3, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 2}, {"name": "Justin Henry", "character": "Billy Kramer", "id": 71241, "credit_id": "52fe44b49251416c7503e301", "cast_id": 4, "profile_path": "/s7Lu0NXISdK2kYpUN2KIZvIQXkR.jpg", "order": 3}, {"name": "Howard Duff", "character": "John Shaunessy", "id": 44846, "credit_id": "52fe44b59251416c7503e329", "cast_id": 11, "profile_path": "/tFRANDwl7xs5OKdR7ZlVoo1glvH.jpg", "order": 4}, {"name": "George Coe", "character": "Jim O'Connor", "id": 14102, "credit_id": "52fe44b59251416c7503e32d", "cast_id": 12, "profile_path": "/2ygklxHSWcNuWg4hjZe5J9MlzNR.jpg", "order": 5}, {"name": "JoBeth Williams", "character": "Phyllis Bernard (as Jobeth Williams)", "id": 10080, "credit_id": "52fe44b59251416c7503e331", "cast_id": 13, "profile_path": "/qYpexEkDDXG1TwtmAVgr5wsi60x.jpg", "order": 6}, {"name": "Bill Moor", "character": "Gressen", "id": 260967, "credit_id": "52fe44b59251416c7503e335", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Howland Chamberlain", "character": "Judge Atkins", "id": 96137, "credit_id": "52fe44b59251416c7503e339", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Jack Ramage", "character": "Spencer", "id": 120293, "credit_id": "52fe44b59251416c7503e33d", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jess Osuna", "character": "Ackerman", "id": 218432, "credit_id": "52fe44b59251416c7503e341", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Nicholas Hormann", "character": "Interviewer", "id": 150213, "credit_id": "52fe44b59251416c7503e345", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Ellen Parker", "character": "Teacher", "id": 171264, "credit_id": "52fe44b59251416c7503e349", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Shelby Brammer", "character": "Ted's Secretary", "id": 322506, "credit_id": "52fe44b59251416c7503e34d", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Carol Nadell", "character": "Mrs. Kline", "id": 370042, "credit_id": "52fe44b59251416c7503e351", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Robert Benton", "department": "Directing", "job": "Director", "credit_id": "52fe44b49251416c7503e307", "profile_path": "/wVaHC1VX9yBg9MIEC7POAJ0JlUo.jpg", "id": 6729}], "vote_average": 7.1, "runtime": 105}, "12104": {"poster_path": "/35xwOkGoyceTW7Q8n14di0eMoxj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A troubled rock star descends into madness in the midst of his physical and social isolation from everyone.", "video": false, "id": 12104, "genres": [{"id": 10402, "name": "Music"}], "title": "Pink Floyd - The Wall", "tagline": "The Memories. The Madness. The Music... The Movie.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084503", "adult": false, "backdrop_path": "/sofxsyR4Br8CdKLCZzzITvdrU4g.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Goldcrest Films International", "id": 500}, {"name": "Tin Blue", "id": 8834}], "release_date": "1982-07-14", "popularity": 0.508512924990183, "original_title": "Pink Floyd - The Wall", "budget": 0, "cast": [{"name": "Christine Hargreaves", "character": "Pink's Mother", "id": 71247, "credit_id": "52fe44b59251416c7503e457", "cast_id": 4, "profile_path": null, "order": 0}, {"name": "James Laurenson", "character": "Pink's Father", "id": 71248, "credit_id": "52fe44b59251416c7503e45b", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Eleanor David", "character": "Pink's Wife", "id": 71249, "credit_id": "52fe44b59251416c7503e45f", "cast_id": 6, "profile_path": "/pwB2azYFDJ47yh4PgLRQjGB353S.jpg", "order": 2}, {"name": "Bob Geldof", "character": "Pink", "id": 47991, "credit_id": "52fe44b59251416c7503e48d", "cast_id": 14, "profile_path": "/nYXNesSEcnQ0TUKWRquMvK1wshZ.jpg", "order": 3}, {"name": "Alex McAvoy", "character": "Schoolteacher", "id": 994272, "credit_id": "52fe44b59251416c7503e491", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Jenny Wright", "character": "American Groupie", "id": 64056, "credit_id": "52fe44b59251416c7503e495", "cast_id": 16, "profile_path": "/scz1dQwtwyFDej8zCAbk6p5bqdp.jpg", "order": 5}, {"name": "Kevin McKeon", "character": "Young Pink", "id": 980082, "credit_id": "52fe44b59251416c7503e499", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Bob Hoskins", "character": "Rock and Roll Manager", "id": 382, "credit_id": "52fe44b59251416c7503e49d", "cast_id": 18, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 7}, {"name": "David Bingham", "character": "Little Pink", "id": 980076, "credit_id": "52fe44b59251416c7503e4a1", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Ellis Dale", "character": "English Doctor", "id": 201569, "credit_id": "52fe44b59251416c7503e4a5", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "James Hazeldine", "character": "Lover", "id": 135101, "credit_id": "52fe44b59251416c7503e4a9", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Ray Mort", "character": "Playground Father", "id": 249810, "credit_id": "52fe44b59251416c7503e4ad", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Margery Mason", "character": "Teacher's Wife", "id": 213222, "credit_id": "52fe44b59251416c7503e4b1", "cast_id": 23, "profile_path": "/A1nJN61RozmvjqJQrHXfHM7F03W.jpg", "order": 12}, {"name": "Robert Bridges", "character": "American Doctor", "id": 172953, "credit_id": "52fe44b59251416c7503e4b5", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Michael Ensign", "character": "Hotel Manager", "id": 1080265, "credit_id": "52fe44b59251416c7503e4b9", "cast_id": 25, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 14}], "directors": [{"name": "Alan Parker", "department": "Directing", "job": "Director", "credit_id": "52fe44b59251416c7503e44d", "profile_path": "/vABD5OnVL9TcuxLHae6EOTDfWiW.jpg", "id": 9168}], "vote_average": 7.2, "runtime": 95}, "8844": {"poster_path": "/vzmL6fP7aPKNKPRTFnZmiUfciyV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 262797249, "overview": "When siblings Judy and Peter discover an enchanted board game that opens the door to a magical world, they unwittingly invite Alan -- an adult who's been trapped inside the game for 26 years -- into their living room. Alan's only hope for freedom is to finish the game, which proves risky as all three find themselves running from giant rhinoceroses, evil monkeys and other terrifying creatures.", "video": false, "id": 8844, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Jumanji", "tagline": "Roll the dice and unleash the excitement!", "vote_count": 470, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0113497", "adult": false, "backdrop_path": "/52lVqTDhIeNTjT7EiJuovXgw6iE.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Interscope Communications", "id": 10201}, {"name": "Teitler Film", "id": 2550}], "release_date": "1995-12-15", "popularity": 1.13430857594731, "original_title": "Jumanji", "budget": 65000000, "cast": [{"name": "Robin Williams", "character": "Alan Parrish", "id": 2157, "credit_id": "52fe44bfc3a36847f80a7c73", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Kirsten Dunst", "character": "Judy Sheperd", "id": 205, "credit_id": "52fe44bfc3a36847f80a7c77", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 1}, {"name": "Jonathan Hyde", "character": "Samuel Alan Parrish / Van Pelt", "id": 8537, "credit_id": "52fe44bfc3a36847f80a7c99", "cast_id": 8, "profile_path": "/7il5D76vx6QVRVlpVvBPEC40MBi.jpg", "order": 2}, {"name": "Bonnie Hunt", "character": "Sarah Whittle", "id": 5149, "credit_id": "52fe44bfc3a36847f80a7c9d", "cast_id": 10, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 3}, {"name": "Patricia Clarkson", "character": "Carol Anne Parrish", "id": 1276, "credit_id": "52fe44bfc3a36847f80a7ca1", "cast_id": 11, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 4}, {"name": "Gillian Barber", "character": "Mrs. Thomas the Realtor", "id": 56522, "credit_id": "52fe44bfc3a36847f80a7ca5", "cast_id": 12, "profile_path": "/qoqPX15J5jh6Sy0A9JvvRJIuw64.jpg", "order": 5}, {"name": "Laura Bell Bundy", "character": "Sarah Whittle (young)", "id": 56523, "credit_id": "52fe44bfc3a36847f80a7ca9", "cast_id": 13, "profile_path": "/8tAVDBRoZPjKfCbBDyh4iK9JNEp.jpg", "order": 6}, {"name": "Adam Hann-Byrd", "character": "Alan Parrish (young)", "id": 46530, "credit_id": "52fe44bfc3a36847f80a7cad", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Bradley Pierce", "character": "Peter Shepherd", "id": 145151, "credit_id": "52fe44c0c3a36847f80a7ce7", "cast_id": 24, "profile_path": "/rukciCbfBZWWvyJELZqxQWzSqnS.jpg", "order": 8}, {"name": "Bebe Neuwirth", "character": "Nora Shepherd", "id": 10739, "credit_id": "52fe44c0c3a36847f80a7ceb", "cast_id": 25, "profile_path": "/xm58rpMRVDHS0IGttw1pTlqGwkN.jpg", "order": 9}, {"name": "David Alan Grier", "character": "Carl Bentley", "id": 58563, "credit_id": "52fe44c0c3a36847f80a7cef", "cast_id": 26, "profile_path": "/fV6DNjreY63QKRQpHtFOq36SVLY.jpg", "order": 10}, {"name": "Brandon Obray", "character": "Benjamin", "id": 1000304, "credit_id": "52fe44c0c3a36847f80a7cf3", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Cyrus Thiedeke", "character": "Caleb", "id": 188949, "credit_id": "52fe44c0c3a36847f80a7cf7", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Gary Joseph Thorup", "character": "Billy Jessup", "id": 1076551, "credit_id": "52fe44c0c3a36847f80a7cfb", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "James Handy", "character": "Exterminator", "id": 51551, "credit_id": "52fe44c0c3a36847f80a7cff", "cast_id": 31, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 14}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe44bfc3a36847f80a7c7d", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.4, "runtime": 104}, "12106": {"poster_path": "/dGw34L86JBo0KgNJuRq82LqOERe.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18552460, "overview": "A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.", "video": false, "id": 12106, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "The Quick and the Dead", "tagline": "Think you are quick enough?", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114214", "adult": false, "backdrop_path": "/e4GosmnUbvEGVINl3BC5vc7fIhU.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1995-02-09", "popularity": 0.694925254711247, "original_title": "The Quick and the Dead", "budget": 32000000, "cast": [{"name": "Sharon Stone", "character": "Ellen \"The Lady\u201c", "id": 4430, "credit_id": "52fe44b69251416c7503e59b", "cast_id": 11, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 0}, {"name": "Gene Hackman", "character": "John Herod", "id": 193, "credit_id": "52fe44b69251416c7503e59f", "cast_id": 12, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Russell Crowe", "character": "Cort", "id": 934, "credit_id": "52fe44b69251416c7503e5a3", "cast_id": 13, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 2}, {"name": "Leonardo DiCaprio", "character": "Fee Herod \"The Kid\u201c", "id": 6193, "credit_id": "52fe44b69251416c7503e5a7", "cast_id": 14, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 3}, {"name": "Tobin Bell", "character": "Dog Kelly", "id": 2144, "credit_id": "52fe44b69251416c7503e5ab", "cast_id": 15, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 4}, {"name": "Roberts Blossom", "character": "Doc Wallace", "id": 66288, "credit_id": "52fe44b69251416c7503e5af", "cast_id": 16, "profile_path": "/iNW74OJWcF9LRbeRlsOPZBddVeE.jpg", "order": 5}, {"name": "Kevin Conway", "character": "Eugene Dred", "id": 27116, "credit_id": "52fe44b69251416c7503e5b3", "cast_id": 17, "profile_path": "/n4VZoInV05I3Gs1JqPu2CLve5nY.jpg", "order": 6}, {"name": "Keith David", "character": "Sgt. Cantrell", "id": 65827, "credit_id": "52fe44b69251416c7503e5b7", "cast_id": 18, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 7}, {"name": "Lance Henriksen", "character": "Ace Hanlon", "id": 2714, "credit_id": "52fe44b69251416c7503e5bb", "cast_id": 19, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 8}, {"name": "Pat Hingle", "character": "Horace", "id": 3798, "credit_id": "52fe44b69251416c7503e5bf", "cast_id": 20, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 9}, {"name": "Gary Sinise", "character": "Marshall", "id": 33, "credit_id": "52fe44b69251416c7503e5c3", "cast_id": 21, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 10}, {"name": "Mark Boone Junior", "character": "Scars", "id": 534, "credit_id": "52fe44b69251416c7503e5c7", "cast_id": 22, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 11}, {"name": "Olivia Burnette", "character": "Katie", "id": 27261, "credit_id": "52fe44b69251416c7503e5cb", "cast_id": 23, "profile_path": "/7K8Hqv59v96QqkDHh9vQo91h3Gx.jpg", "order": 12}, {"name": "Fay Masterson", "character": "Mattie Silk", "id": 65409, "credit_id": "52fe44b69251416c7503e5cf", "cast_id": 24, "profile_path": "/rjNb7ZDq00KqhFHwuinSge5Iv8i.jpg", "order": 13}, {"name": "Raynor Scheine", "character": "Ratsy", "id": 21082, "credit_id": "52fe44b69251416c7503e5d3", "cast_id": 25, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 14}, {"name": "Woody Strode", "character": "Charlie Moonlight", "id": 4963, "credit_id": "5510d7bbc3a36802c3000927", "cast_id": 26, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 15}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe44b69251416c7503e561", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 6.0, "runtime": 107}, "12107": {"poster_path": "/tVXnnRD0bSQxJ18tzJDxVaxcNWm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123307945, "overview": "The hilarity begins when professor Sherman Klump finds romance with fellow DNA specialist, Denise Gaines, and discovers a brilliant formula that reverses aging. But Sherman's thin and obnoxious alter ego, Buddy Love, wants out...and a big piece of the action. And when Buddy gets loose, things get seriously nutty.", "video": false, "id": 12107, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Nutty Professor II: The Klumps", "tagline": "The Klumps are back!", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mW1NQFOSCwwgk03SpcpwiQEL2Lo.jpg", "poster_path": "/a6zC38ID7EyAflo8tsPDP4IE0Mt.jpg", "id": 86028, "name": "The Nutty Professor Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0144528", "adult": false, "backdrop_path": "/uVqG76HuDLQMl2SXsEiOSHZpeZZ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2000-07-27", "popularity": 0.915219922204254, "original_title": "Nutty Professor II: The Klumps", "budget": 84000000, "cast": [{"name": "Eddie Murphy", "character": "Professor Sherman Klump and various roles", "id": 776, "credit_id": "52fe44b69251416c7503e66f", "cast_id": 15, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Janet Jackson", "character": "Denise Gaines", "id": 54421, "credit_id": "52fe44b69251416c7503e673", "cast_id": 17, "profile_path": "/nFb7D7lVHLU0e34BXP0BRCZwCJC.jpg", "order": 1}, {"name": "Larry Miller", "character": "Dean Richmond", "id": 1211, "credit_id": "52fe44b69251416c7503e677", "cast_id": 18, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 2}, {"name": "John Ales", "character": "Jason", "id": 64343, "credit_id": "52fe44b69251416c7503e67b", "cast_id": 19, "profile_path": "/hmu0T2yZSITJX0Wxhja1X7YaV1n.jpg", "order": 3}, {"name": "Richard Gant", "character": "Denise's Father", "id": 16662, "credit_id": "52fe44b69251416c7503e67f", "cast_id": 20, "profile_path": "/oYDHpuey2NMlGaGqMqZJVAoKoy5.jpg", "order": 4}, {"name": "Anna Maria Horsford", "character": "Denise's Mother", "id": 54800, "credit_id": "52fe44b69251416c7503e683", "cast_id": 21, "profile_path": "/l2WIo8fAWrksNIBO6tzhFkN23Cb.jpg", "order": 5}, {"name": "Melinda McGraw", "character": "Leanne Guilford", "id": 58692, "credit_id": "52fe44b69251416c7503e687", "cast_id": 22, "profile_path": "/6FlZftxpIQ0PoJKvtEL9lSbgI63.jpg", "order": 6}, {"name": "Jamal Mixon", "character": "Ernie Klump, Jr.", "id": 59019, "credit_id": "52fe44b69251416c7503e68b", "cast_id": 23, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 7}, {"name": "Gabriel Williams", "character": "Isaac", "id": 162758, "credit_id": "52fe44b69251416c7503e68f", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Chris Elliott", "character": "Restaurant Manager", "id": 1534, "credit_id": "52fe44b69251416c7503e693", "cast_id": 25, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 9}, {"name": "Duffy Taylor", "character": "Restaurant Trainee", "id": 553853, "credit_id": "52fe44b69251416c7503e697", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Earl Boen", "character": "Dr. Knoll", "id": 2716, "credit_id": "52fe44b69251416c7503e69b", "cast_id": 27, "profile_path": "/haOeh8ZWSjD9PgQvWqvQIHfXK5A.jpg", "order": 11}, {"name": "Nikki Cox", "character": "Bright Student", "id": 87317, "credit_id": "52fe44b69251416c7503e69f", "cast_id": 28, "profile_path": "/hFmNQPXI4HU89B9MI2iTQrIMtv3.jpg", "order": 12}, {"name": "Sylvester Jenkins", "character": "Old Willie", "id": 553854, "credit_id": "52fe44b69251416c7503e6a7", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Wanda Sykes", "character": "Chantal", "id": 27102, "credit_id": "52fe44b69251416c7503e6ab", "cast_id": 31, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 15}, {"name": "Charles Walker", "character": "Preacher", "id": 154630, "credit_id": "52fe44b69251416c7503e6b3", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Enya Flack", "character": "Bridesmaid", "id": 102698, "credit_id": "52fe44b69251416c7503e6b7", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Freda Payne", "character": "Claudine", "id": 1236187, "credit_id": "531c2a6792514177b7005428", "cast_id": 35, "profile_path": "/AdMjCrMHeXxlgfUebB3J0vUCurD.jpg", "order": 19}], "directors": [{"name": "Peter Segal", "department": "Directing", "job": "Director", "credit_id": "52fe44b69251416c7503e61d", "profile_path": "/4wl3AZ16vUhFupFpfKQZ0sQ4jHX.jpg", "id": 13426}], "vote_average": 5.3, "runtime": 106}, "6114": {"poster_path": "/mIKHK5MYa04uTUlryOpbzy18GNl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215862692, "overview": "When Dracula leaves the captive Jonathan Harker and Transylvania for London in search of Mina Harker -- the spitting image of Dracula's long-dead wife, Elisabeta -- obsessed vampire hunter Dr. Van Helsing sets out to end the madness.", "video": false, "id": 6114, "genres": [{"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Dracula", "tagline": "Love never dies.", "vote_count": 252, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}, {"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103874", "adult": false, "backdrop_path": "/rSlIsLjD2wb7M3PWCradPq9LKq8.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Osiris Films", "id": 2019}], "release_date": "1992-11-13", "popularity": 0.867516142982645, "original_title": "Dracula", "budget": 40000000, "cast": [{"name": "Gary Oldman", "character": "Dracula", "id": 64, "credit_id": "52fe443ec3a36847f808a957", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Mina Murray / Elisabeta", "id": 1920, "credit_id": "52fe443ec3a36847f808a95b", "cast_id": 3, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Anthony Hopkins", "character": "Professor Van Helsing", "id": 4173, "credit_id": "52fe443ec3a36847f808a95f", "cast_id": 4, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 2}, {"name": "Keanu Reeves", "character": "Jonathan Harker", "id": 6384, "credit_id": "52fe443ec3a36847f808a963", "cast_id": 5, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 3}, {"name": "Richard E. Grant", "character": "Dr. Jack Seward", "id": 20766, "credit_id": "52fe443ec3a36847f808a967", "cast_id": 6, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 4}, {"name": "Sadie Frost", "character": "Lucy Westenra", "id": 41381, "credit_id": "52fe443ec3a36847f808a96b", "cast_id": 7, "profile_path": "/a2klGryTh1VpIUVkqs7kM0kBBis.jpg", "order": 5}, {"name": "Cary Elwes", "character": "Lord Arthur Helmwood", "id": 2130, "credit_id": "52fe443ec3a36847f808a96f", "cast_id": 8, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 6}, {"name": "Billy Campbell", "character": "Quincey P. Morris", "id": 20215, "credit_id": "52fe443ec3a36847f808a973", "cast_id": 9, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 7}, {"name": "Tom Waits", "character": "R.M. Renfield", "id": 2887, "credit_id": "52fe443ec3a36847f808a977", "cast_id": 10, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 8}, {"name": "Jay Robinson", "character": "Mr. Hawkins", "id": 16097, "credit_id": "52fe443ec3a36847f808a97b", "cast_id": 11, "profile_path": "/eVZopDhNpFjeZyMg1OZn4LGPQF8.jpg", "order": 9}, {"name": "Monica Bellucci", "character": "Dracula's Bride # 1", "id": 28782, "credit_id": "52fe443ec3a36847f808a97f", "cast_id": 12, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 10}, {"name": "Michaela Bercu", "character": "Dracula's Bride # 2", "id": 47954, "credit_id": "52fe443ec3a36847f808a983", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Florina Kendrick", "character": "Dracula's Bride # 3", "id": 47955, "credit_id": "52fe443ec3a36847f808a987", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "I.M. Hobson", "character": "Hobbs", "id": 4257, "credit_id": "52fe443ec3a36847f808a9af", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Laurie Franks", "character": "Lucy's Maid", "id": 162940, "credit_id": "52fe443ec3a36847f808a9b3", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Maud Winchester", "character": "Downstairs Maid", "id": 203898, "credit_id": "52fe443ec3a36847f808a9b7", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Octavian Cadia", "character": "Deacon", "id": 1089946, "credit_id": "52fe443ec3a36847f808a9bb", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Robert Getz", "character": "Priest", "id": 1089947, "credit_id": "52fe443ec3a36847f808a9bf", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Dagmar Stanec", "character": "Sister Agatha", "id": 1089948, "credit_id": "52fe443ec3a36847f808a9c3", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Eniko \u00d6ss", "character": "Sister Sylva", "id": 1089949, "credit_id": "52fe443ec3a36847f808a9c7", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Nancy Linehan Charles", "character": "Older Woman", "id": 110928, "credit_id": "52fe443ec3a36847f808a9cb", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Tatiana von Furstenberg", "character": "Younger Woman", "id": 564083, "credit_id": "52fe443ec3a36847f808a9cf", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Jules Sylvester", "character": "Zookeeper", "id": 156666, "credit_id": "52fe443ec3a36847f808a9d3", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Hubert Wells", "character": "Zookeeper", "id": 1089950, "credit_id": "52fe443ec3a36847f808a9d7", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Honey Lauren", "character": "Peep Show Girl", "id": 102898, "credit_id": "52fe443ec3a36847f808a9df", "cast_id": 33, "profile_path": null, "order": 25}, {"name": "Judi Diamond", "character": "Peep Show Girl", "id": 1089952, "credit_id": "52fe443ec3a36847f808a9e3", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Robert Buckingham", "character": "Husband", "id": 165686, "credit_id": "52fe443ec3a36847f808a9e7", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Cully Fredricksen", "character": "Van Helsing's Assistant", "id": 553773, "credit_id": "52fe443ec3a36847f808a9eb", "cast_id": 36, "profile_path": "/9gZds6fFcOXWHHiWxzhWGsBRsGU.jpg", "order": 28}, {"name": "Daniel Newman", "character": "Newshawker", "id": 8323, "credit_id": "54fe254d9251410e560001e7", "cast_id": 40, "profile_path": "/wjJB7aXCaEVpaVWWIYgKd20MxNa.jpg", "order": 29}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe443ec3a36847f808a953", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 6.8, "runtime": 128}, "110415": {"poster_path": "/6JLsmjnwO57GjzfAIVsLnkbOYa4.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "KR", "name": "South Korea"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86612448, "overview": "In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer, a train that travels around the globe via a perpetual-motion engine.", "video": false, "id": 110415, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Snowpiercer", "tagline": "AD 2031, the passengers in the train are the only survivors on Earth.", "vote_count": 714, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1706620", "adult": false, "backdrop_path": "/GY6RVLqDjaDMnT06DL61MVlbgS.jpg", "production_companies": [{"name": "CJ Entertainment", "id": 7036}, {"name": "SnowPiercer", "id": 21122}, {"name": "Moho Film", "id": 34725}, {"name": "Opus Pictures", "id": 7270}, {"name": "Stillking Films", "id": 11345}], "release_date": "2013-08-01", "popularity": 1.64192830862875, "original_title": "Snowpiercer", "budget": 39200000, "cast": [{"name": "Chris Evans", "character": "Curtis", "id": 16828, "credit_id": "52fe4ad6c3a36847f81e449d", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Song Kang-ho", "character": "Namgong Minsu", "id": 20738, "credit_id": "53bd4726c3a3684ce9001500", "cast_id": 39, "profile_path": "/1JL0Shq6js9Ox2FEIW2vHqIISv9.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Edgar", "id": 478, "credit_id": "52fe4ad6c3a36847f81e44a1", "cast_id": 5, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "John Hurt", "character": "Gilliam", "id": 5049, "credit_id": "52fe4ad6c3a36847f81e44a5", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Tilda Swinton", "character": "Mason", "id": 3063, "credit_id": "52fe4ad6c3a36847f81e44a9", "cast_id": 7, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 4}, {"name": "Alison Pill", "character": "schoolteacher", "id": 17486, "credit_id": "52fe4ad6c3a36847f81e44ad", "cast_id": 8, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 5}, {"name": "Octavia Spencer", "character": "Tanya", "id": 6944, "credit_id": "52fe4ad6c3a36847f81e44b1", "cast_id": 9, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 6}, {"name": "Ewen Bremner", "character": "Andrew", "id": 1125, "credit_id": "52fe4ad6c3a36847f81e44b5", "cast_id": 10, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 7}, {"name": "Luke Pasqualino", "character": "Grey", "id": 220232, "credit_id": "52fe4ad6c3a36847f81e44b9", "cast_id": 11, "profile_path": "/17ccaxEyJfnc0R5p9EKZ0LAw5U0.jpg", "order": 8}, {"name": "Kenny Doughty", "character": "News Reporter", "id": 37760, "credit_id": "52fe4ad6c3a36847f81e44c1", "cast_id": 13, "profile_path": "/7toqP6Xv8pk4PX9er3ddzrz3wbx.jpg", "order": 9}, {"name": "Clark Middleton", "character": "Painter", "id": 171538, "credit_id": "52fe4ad6c3a36847f81e44c9", "cast_id": 15, "profile_path": "/3rk5aqlLHdQBdlmWaNoTr8hvSaH.jpg", "order": 10}, {"name": "Adnan Haskovic", "character": "Franco The Younger", "id": 1049409, "credit_id": "52fe4ad6c3a36847f81e44cd", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "T\u00f3mas Lemarquis", "character": "Egg-head", "id": 18818, "credit_id": "52fe4ad6c3a36847f81e44d1", "cast_id": 17, "profile_path": "/6qWyGbPWE020wTezwoWx1wIPuPQ.jpg", "order": 12}, {"name": "Jim Hightower", "character": "Soldier One", "id": 1025681, "credit_id": "52fe4ad6c3a36847f81e44d5", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Ed Harris", "character": "Wilford", "id": 228, "credit_id": "5313a0f1c3a368299b004650", "cast_id": 20, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 14}, {"name": "Ko Ah-Sung", "character": "Yona", "id": 21689, "credit_id": "5313a32d9251410fe6006436", "cast_id": 21, "profile_path": "/ypLzFARDiB0S8eV8YWj0mi5vmJW.jpg", "order": 15}, {"name": "Steve Park", "character": "Fuyu", "id": 4025, "credit_id": "531af9a6c3a3685c31004771", "cast_id": 22, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 16}, {"name": "Vlad Ivanov", "character": "Franco Elder", "id": 39959, "credit_id": "53377d649251411302000bdd", "cast_id": 38, "profile_path": "/zZn7WAHQeignC0WPfhA5d0SNqjZ.jpg", "order": 17}, {"name": "Paul Lazar", "character": "Paul", "id": 138988, "credit_id": "54b18351c3a36809510025ad", "cast_id": 40, "profile_path": "/8Aj1kAid7DQoLx76v7yn0pQdo90.jpg", "order": 18}], "directors": [{"name": "Bong Joon-ho ", "department": "Directing", "job": "Director", "credit_id": "52fe4ad6c3a36847f81e448d", "profile_path": "/ksRcTlnSOLwNcI37LRRKpQwucWL.jpg", "id": 21684}], "vote_average": 6.7, "runtime": 126}, "12113": {"poster_path": "/bOlzJMKHv2EG3Kbn4CMOoTImuH7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113280098, "overview": "Body of Lies follows CIA operative, Roger Ferris, as he uncovers a lead on a major terrorist leader suspected to be operating out of Jordan. When Ferris devises a plan to infiltrate his network, he must first win the backing of cunning CIA veteran Ed Hoffman and the collegial, but perhaps suspect, head of Jordanian intelligence.", "video": false, "id": 12113, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Body of Lies", "tagline": "Trust no one. Deceive everyone.", "vote_count": 255, "homepage": "http://bodyoflies.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758774", "adult": false, "backdrop_path": "/8NKlqvUJ5IHk58KhM3Vwqp588jU.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "De Line Pictures", "id": 2609}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2008-10-10", "popularity": 0.698367432974629, "original_title": "Body of Lies", "budget": 70000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Roger Ferris", "id": 6193, "credit_id": "52fe44b79251416c7503e94f", "cast_id": 4, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Ed Hoffman", "id": 934, "credit_id": "52fe44b79251416c7503e953", "cast_id": 5, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Mark Strong", "character": "Hani", "id": 2983, "credit_id": "52fe44b79251416c7503e957", "cast_id": 6, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Ali Suliman", "character": "Omar Sadiki", "id": 762, "credit_id": "52fe44b79251416c7503e95b", "cast_id": 7, "profile_path": "/orQk2ePFL6er4TrdhD0jZ9my3E3.jpg", "order": 3}, {"name": "Simon McBurney", "character": "Garland", "id": 16358, "credit_id": "52fe44b79251416c7503e95f", "cast_id": 8, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 4}, {"name": "Michael Gaston", "character": "Holiday", "id": 33241, "credit_id": "52fe44b89251416c7503e9c3", "cast_id": 25, "profile_path": "/tAmpD16aVzWbs8evbCFaed9perN.jpg", "order": 5}, {"name": "Mehdi Nebbou", "character": "Nizar", "id": 43436, "credit_id": "52fe44b89251416c7503e9c7", "cast_id": 26, "profile_path": "/iSkMnPeORt41l3rqiXhrBgEPocW.jpg", "order": 6}, {"name": "Golshifteh Farahani", "character": "Aisha", "id": 229932, "credit_id": "52fe44b89251416c7503e9cb", "cast_id": 27, "profile_path": "/jEVJQviEvXkaPZMum7wFFtBxzFC.jpg", "order": 7}, {"name": "Oscar Isaac", "character": "Bassam", "id": 25072, "credit_id": "52fe44b89251416c7503e9cf", "cast_id": 28, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 8}, {"name": "Alon Aboutboul", "character": "Al-Saleem", "id": 16607, "credit_id": "52fe44b89251416c7503e9d3", "cast_id": 29, "profile_path": "/g2ER1Yk1jtwMkugOEkK8FdCGUTB.jpg", "order": 9}, {"name": "Vince Colosimo", "character": "Skip", "id": 77496, "credit_id": "52fe44b89251416c7503e9d7", "cast_id": 30, "profile_path": "/q7sQhwMo5By0WIh8qpwHnzznSzf.jpg", "order": 10}, {"name": "Kais Nashif", "character": "Mustafa Karami", "id": 25087, "credit_id": "52fe44b89251416c7503e9db", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Jamil Khoury", "character": "Marwan", "id": 544186, "credit_id": "52fe44b89251416c7503e9df", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Lubna Azabal", "character": "Aisha's Sister Cala", "id": 77498, "credit_id": "52fe44b89251416c7503e9e3", "cast_id": 33, "profile_path": "/lGvB2xP7sotwSslSTovL5nxnzBC.jpg", "order": 13}, {"name": "Ghali Benlafkih", "character": "Aisha's Nephew Rowley", "id": 544187, "credit_id": "52fe44b89251416c7503e9e7", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Clara Khoury", "character": "Bessam's wife", "id": 41645, "credit_id": "52fe44b89251416c7503e9f7", "cast_id": 37, "profile_path": "/nSHDTsu00ozkK6iEnI7Ax9Zr5au.jpg", "order": 15}, {"name": "Giannina Facio", "character": "Hoffman's Wife", "id": 58787, "credit_id": "52fe44b89251416c7503e9fb", "cast_id": 38, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 16}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe44b79251416c7503e93f", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.4, "runtime": 128}, "110420": {"poster_path": "/rDMxjCYEVnvLC4nsBpB6wjL0LDy.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Hana, a nineteen-year-old college student, falls in love with a man only for him to reveal his secret; he is a Wolf Man. Eventually the couple bear two children together; a son and daughter they name Ame and Yuki who both inherit the ability to transform into wolves from their father. When the man Hana fell in love with suddenly dies, she makes the decision to move to a rural town isolated from society to continue raising the children in protection.", "video": false, "id": 110420, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Wolf Children", "tagline": "Love wildly", "vote_count": 62, "homepage": "http://www.ookamikodomo.jp", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2140203", "adult": false, "backdrop_path": "/1Y66fi0srOb0ijAOg069DXriD3S.jpg", "production_companies": [{"name": "Eurozoom", "id": 15664}, {"name": "Studio Chizu", "id": 15662}], "release_date": "2012-08-29", "popularity": 1.12272421288832, "original_title": "Ookami kodomo no Ame to Yuki", "budget": 0, "cast": [{"name": "Kumiko Aso", "character": "Hotsuta no okusan (voice)", "id": 27788, "credit_id": "52fe4ad6c3a36847f81e45b9", "cast_id": 10, "profile_path": "/5YzTxIzzIMbjTGsqWvp2YcRqCzc.jpg", "order": 0}, {"name": "Aoi Miyazaki", "character": "Hana (voice)", "id": 104522, "credit_id": "535cf7880e0a264fe1004a9d", "cast_id": 11, "profile_path": "/dHMFf5dLfOSUiCrz6A2vsqHYw3C.jpg", "order": 1}, {"name": "Takao Ohsawa", "character": "Wolf Man (voice)", "id": 151026, "credit_id": "535cf7ae0e0a264fe8004ba8", "cast_id": 12, "profile_path": "/h9AEcCOY78FW35lTuG5e1nDd96f.jpg", "order": 2}, {"name": "Haru Kuroki", "character": "Yuki (voice)", "id": 1054260, "credit_id": "535cf7c80e0a264fd5004be9", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Yukito Nishii", "character": "Ame (voice)", "id": 559411, "credit_id": "535cf7dc0e0a264fdb004948", "cast_id": 14, "profile_path": "/4oCRIg1RG4AN3rAP9Y5nO8AoQ5u.jpg", "order": 4}, {"name": "Momoka Ohno", "character": "Young Yuki (voice)", "id": 225662, "credit_id": "535cf7f30e0a264fe8004bac", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "Amon Kabe", "character": "Young Ame (voice)", "id": 1314114, "credit_id": "535cf80c0e0a264fde004b29", "cast_id": 16, "profile_path": null, "order": 6}], "directors": [{"name": "Mamoru Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe4ad6c3a36847f81e4585", "profile_path": "/oh1GS6x8cdGkyL4QPKmpMSaD6Wu.jpg", "id": 81718}], "vote_average": 8.2, "runtime": 117}, "12118": {"poster_path": "/A0WHx049ty1RJ57XeQwweRxhHbW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43579163, "overview": "When police funding is cut, the Governor announces he must close one of the academies. To make it fair, the two police academies must compete against each other to stay in operation. Mauser persuades two officers in Lassard's academy to better his odds, but things don't quite turn out as expected...", "video": false, "id": 12118, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Police Academy 3: Back in Training", "tagline": "Run for cover!", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/RhpI828r9EKPV4x0pyHiqCDZDQ.jpg", "poster_path": "/1VRdXVy2FYlX4EtllnLKWK6kYDJ.jpg", "id": 9338, "name": "Police Academy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091777", "adult": false, "backdrop_path": "/sGukZxFSavizbySXPI3wnyrbkcj.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1986-03-20", "popularity": 0.959812382170194, "original_title": "Police Academy 3: Back in Training", "budget": 0, "cast": [{"name": "Steve Guttenberg", "character": "Sgt. Carey Mahoney", "id": 26472, "credit_id": "52fe44b89251416c7503eba9", "cast_id": 7, "profile_path": "/utLqKSEN9TX3EniBlX4BpytDunB.jpg", "order": 0}, {"name": "Bubba Smith", "character": "Sgt. Moses Hightower", "id": 57349, "credit_id": "52fe44b89251416c7503ebad", "cast_id": 8, "profile_path": "/2T5nQh0xQZfpJOcQGN9PKqCJgK.jpg", "order": 1}, {"name": "David Graf", "character": "Sgt. Eugene Tackleberry", "id": 57353, "credit_id": "52fe44b89251416c7503ebb1", "cast_id": 9, "profile_path": "/3zj2hCJBq517MTqAbGAN2JjonuU.jpg", "order": 2}, {"name": "Michael Winslow", "character": "Sgt. Larvelle Jones", "id": 14672, "credit_id": "52fe44b89251416c7503ebb5", "cast_id": 10, "profile_path": "/wQLAMd2dlKAFMngrsOaxuISCtIy.jpg", "order": 3}, {"name": "Bobcat Goldthwait", "character": "Cadet Zed", "id": 95024, "credit_id": "52fe44b99251416c7503ebc5", "cast_id": 13, "profile_path": "/wYwGbSqEGAqpT4or8YHQ79ycoz4.jpg", "order": 4}, {"name": "Marion Ramsey", "character": "Sgt. Hooks", "id": 186816, "credit_id": "53c0bc210e0a26157f008324", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Leslie Easterbrook", "character": "Lt. Callahan", "id": 22252, "credit_id": "53c0bc350e0a261579007f40", "cast_id": 15, "profile_path": "/1agR9nwzfKPpaygIFpybtyph3n7.jpg", "order": 6}, {"name": "Art Metrano", "character": "Comdt. Mauser", "id": 15212, "credit_id": "53c0bc7d0e0a26157f008334", "cast_id": 16, "profile_path": "/3IPQYpit646GjHd1cjfgiqGFfIh.jpg", "order": 7}, {"name": "Tim Kazurinsky", "character": "Cadet Sweetchuck", "id": 95216, "credit_id": "53c0bc910e0a2615820081d6", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "George Gaynes", "character": "Comdt. Lassard", "id": 57351, "credit_id": "53c0bcaf0e0a26157f00833e", "cast_id": 18, "profile_path": "/cntFGEwxz14xvl8KXW2WXahpvS5.jpg", "order": 9}, {"name": "Scott Thomson", "character": "Sgt. Copeland", "id": 9997, "credit_id": "53c0bcf40e0a261576008301", "cast_id": 19, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 10}, {"name": "Bruce Mahler", "character": "Sgt. Fackler", "id": 57356, "credit_id": "53c0bd060e0a261576008306", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Brian Tochi", "character": "Cadet Nogata", "id": 16060, "credit_id": "53c0bd310e0a261585007ef7", "cast_id": 21, "profile_path": "/2nAC2ssCFu74zkhg1722WQhArGO.jpg", "order": 12}, {"name": "Lance Kinsey", "character": "Lt. Proctor", "id": 141429, "credit_id": "53c0bee10e0a261585007f3e", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Debralee Scott", "character": "Cadet Fackler", "id": 57354, "credit_id": "53c149b0c3a3684cf400667c", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Jack Creley", "character": "Mr. Bellows", "id": 12485, "credit_id": "550204f8925141275c002eb8", "cast_id": 24, "profile_path": null, "order": 15}], "directors": [{"name": "Jerry Paris", "department": "Directing", "job": "Director", "credit_id": "52fe44b89251416c7503eb93", "profile_path": "/mVcAxdJG3uFVhr5erMCOZvla9UA.jpg", "id": 41720}], "vote_average": 5.9, "runtime": 83}, "12123": {"poster_path": "/t6anpB9iny456N7sVLd3S0QARGv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3, "overview": "Two researchers in a green alternative energy project are put on the run when they are framed for murder and treason.", "video": false, "id": 12123, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Chain Reaction", "tagline": "Reaction Time 8-4-96", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0115857", "adult": false, "backdrop_path": "/RpVE8C5oExULO2vCJky6WwGCwM.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "The Zanuck Company", "id": 80}, {"name": "Chicago Pacific Entertainment", "id": 2377}], "release_date": "1996-08-02", "popularity": 0.50077323280521, "original_title": "Chain Reaction", "budget": 50000000, "cast": [{"name": "Keanu Reeves", "character": "Eddie Kasalivich", "id": 6384, "credit_id": "52fe44ba9251416c7503ee45", "cast_id": 14, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Paul Shannon", "id": 192, "credit_id": "52fe44ba9251416c7503ee49", "cast_id": 15, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Dr. Lily Sinclair", "id": 3293, "credit_id": "52fe44ba9251416c7503ee4d", "cast_id": 16, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Fred Ward", "character": "FBI Agent Leon Ford", "id": 10430, "credit_id": "52fe44ba9251416c7503ee51", "cast_id": 17, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 3}, {"name": "Kevin Dunn", "character": "FBI Agent Doyle", "id": 14721, "credit_id": "52fe44ba9251416c7503ee55", "cast_id": 18, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 4}, {"name": "Brian Cox", "character": "Lyman Earl Collier", "id": 1248, "credit_id": "52fe44ba9251416c7503ee59", "cast_id": 19, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 5}, {"name": "Joanna Cassidy", "character": "Maggie McDermott", "id": 593, "credit_id": "52fe44ba9251416c7503ee5d", "cast_id": 20, "profile_path": "/7eu2JjP9Vza9ImytxVLonPhKUX3.jpg", "order": 6}, {"name": "Chelcie Ross", "character": "Ed Rafferty", "id": 10486, "credit_id": "540c23cdc3a36879a2003962", "cast_id": 21, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 7}, {"name": "Nicholas Rudall", "character": "Dr. Alistair Barkley", "id": 1362093, "credit_id": "540dc1b10e0a262b49006913", "cast_id": 22, "profile_path": null, "order": 8}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe44ba9251416c7503edf9", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 5.4, "runtime": 107}, "3933": {"poster_path": "/o9GbcdP7rOg2m1NyUnUR3ZwNcTE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117195061, "overview": "Set in a 19th-century european village, this stop-motion animation feature follows the story of Victor, a young man whisked away to the underworld and wed to a mysterious corpse bride, while his real bride Victoria waits bereft in the land of the living.", "video": false, "id": 3933, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Corpse Bride", "tagline": "There's been a grave misunderstanding.", "vote_count": 419, "homepage": "http://corpsebridemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0121164", "adult": false, "backdrop_path": "/mlfoltX46WG4FqdKy92hiOq33qO.jpg", "production_companies": [{"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2005-09-15", "popularity": 1.49282118200521, "original_title": "Corpse Bride", "budget": 40000000, "cast": [{"name": "Johnny Depp", "character": "Victor Van Dort (Voice)", "id": 85, "credit_id": "52fe43a7c3a36847f8065053", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Corpse Bride (voice)", "id": 1283, "credit_id": "52fe43a7c3a36847f8065057", "cast_id": 3, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Emily Watson", "character": "Victoria Everglot (voice)", "id": 1639, "credit_id": "52fe43a7c3a36847f806505b", "cast_id": 4, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 2}, {"name": "Tracey Ullman", "character": "Nell Van Dort \\ Hildegarde(voice)", "id": 30364, "credit_id": "52fe43a7c3a36847f806505f", "cast_id": 5, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 3}, {"name": "Christopher Lee", "character": "Pastor Galswells (voice)", "id": 113, "credit_id": "52fe43a7c3a36847f8065063", "cast_id": 6, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 4}, {"name": "Danny Elfman", "character": "Bonejangles (voice)", "id": 531, "credit_id": "52fe43a7c3a36847f8065067", "cast_id": 7, "profile_path": "/nBx84zlelMMlbVvkBQHyfF7eCov.jpg", "order": 5}, {"name": "Albert Finney", "character": "Finis Everglot (voice)", "id": 3926, "credit_id": "52fe43a7c3a36847f806506b", "cast_id": 8, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 6}, {"name": "Richard E. Grant", "character": "Barkis Bittern (voice)", "id": 20766, "credit_id": "52fe43a7c3a36847f806506f", "cast_id": 9, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 7}, {"name": "Paul Whitehouse", "character": "William Van Dort \\ Mayhew (voice)", "id": 34900, "credit_id": "52fe43a7c3a36847f80650e5", "cast_id": 29, "profile_path": "/zdM9dM27ofVMb1mWTwOSAfXaW4Y.jpg", "order": 8}, {"name": "Joanna Lumley", "character": "Maudeline Everglot (voice)", "id": 34901, "credit_id": "52fe43a7c3a36847f80650e9", "cast_id": 31, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 9}, {"name": "Michael Gough", "character": "Elder Gutknecht (voice)", "id": 3796, "credit_id": "52fe43a7c3a36847f80650ed", "cast_id": 33, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 10}, {"name": "Jane Horrocks", "character": "Black Widow Spider (voice)", "id": 34902, "credit_id": "52fe43a7c3a36847f80650f1", "cast_id": 34, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 11}, {"name": "Enn Reitel", "character": "Town Crier \\ Maggot(voice)", "id": 34904, "credit_id": "52fe43a7c3a36847f80650f5", "cast_id": 36, "profile_path": "/yVJrNb6JqnEYZlcXL1kHSEcHmsV.jpg", "order": 12}, {"name": "Deep Roy", "character": "General Bonesapart (voice)", "id": 1295, "credit_id": "52fe43a7c3a36847f80650f9", "cast_id": 38, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 13}, {"name": "Stephen Ballantyne", "character": "Emil (voice)", "id": 34905, "credit_id": "52fe43a7c3a36847f80650fd", "cast_id": 39, "profile_path": "/jOvWG9emhHk4JxPOtBfzGJTDWfK.jpg", "order": 14}, {"name": "Jane Horrocks", "character": "Mrs. Plum (voice)", "id": 34902, "credit_id": "52fe43a7c3a36847f8065101", "cast_id": 40, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe43a7c3a36847f806504f", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}, {"name": "Mike Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe43a7c3a36847f8065075", "profile_path": "/tTt2lxSH3q8fxF6GYbvYpnXaq54.jpg", "id": 34891}], "vote_average": 6.9, "runtime": 77}, "77663": {"poster_path": "/ftZVLKyr3RDGtVelU06GAbtOFQa.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39881, "overview": "Two veterans of the Bosnian War, one American, one Serbian, who clash in the remote Smoky Mountain wilderness.", "video": false, "id": 77663, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Killing Season", "tagline": "The purest form of war is one on one.", "vote_count": 245, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1480295", "adult": false, "backdrop_path": "/f9LlozyhLSy88JJzXBs2lkXBUCR.jpg", "production_companies": [{"name": "Promised Land Productions", "id": 30815}, {"name": "Nu Image Films", "id": 925}, {"name": "Corsan", "id": 7299}, {"name": "Millennium Films", "id": 10254}], "release_date": "2013-07-12", "popularity": 0.580127265315587, "original_title": "Killing Season", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Benjamin Ford", "id": 380, "credit_id": "52fe4978c3a368484e12ce23", "cast_id": 2, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "John Travolta", "character": "Emil Kovac", "id": 8891, "credit_id": "52fe4978c3a368484e12ce27", "cast_id": 3, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Milo Ventimiglia", "character": "Chris Ford", "id": 16501, "credit_id": "52fe4978c3a368484e12ce2b", "cast_id": 4, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 2}, {"name": "Elizabeth Olin", "character": "Sarah Ford", "id": 1189507, "credit_id": "52fe4978c3a368484e12ce35", "cast_id": 8, "profile_path": "/VxAOZ9nVtj9EaEvjy1BzqJUJW.jpg", "order": 3}, {"name": "Diana Lyubenova", "character": "Elena", "id": 1189508, "credit_id": "52fe4978c3a368484e12ce39", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Kalin Sarmenov", "character": "Serbian", "id": 1189510, "credit_id": "52fe4978c3a368484e12ce3d", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Stefan Shterev", "character": "Bar Customer", "id": 1000984, "credit_id": "52fe4978c3a368484e12ce41", "cast_id": 11, "profile_path": null, "order": 6}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4978c3a368484e12ce1f", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.4, "runtime": 91}, "44896": {"poster_path": "/dQ6JElhTmauGWAyxu1k1uPrxupr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 242421099, "overview": "When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.", "video": false, "id": 44896, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}, {"id": 10751, "name": "Family"}], "title": "Rango", "tagline": "Heroes come in all different colors.", "vote_count": 833, "homepage": "http://www.rangomovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1192628", "adult": false, "backdrop_path": "/fX6o5DCdGVEEZ1OT1IourOUkQMb.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "GK Films", "id": 3281}, {"name": "Blind Wink", "id": 10262}], "release_date": "2011-03-03", "popularity": 1.36360840516698, "original_title": "Rango", "budget": 135000000, "cast": [{"name": "Johnny Depp", "character": "Rango (voice)", "id": 85, "credit_id": "52fe46a2c3a36847f8109acf", "cast_id": 10, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Isla Fisher", "character": "Beans (Voice)", "id": 52848, "credit_id": "52fe46a2c3a36847f8109af9", "cast_id": 19, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Tortoise John (voice)", "id": 13726, "credit_id": "52fe46a2c3a36847f8109adb", "cast_id": 13, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Bill Nighy", "character": "Rattlesnake Jake (voice)", "id": 2440, "credit_id": "52fe46a2c3a36847f8109ad7", "cast_id": 12, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Roadkill (Voice)", "id": 658, "credit_id": "52fe46a2c3a36847f8109afd", "cast_id": 20, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "Abigail Breslin", "character": "Priscilla (Voice)", "id": 17140, "credit_id": "52fe46a2c3a36847f8109af5", "cast_id": 18, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 5}, {"name": "Claudia Black", "character": "Angelique (voice)", "id": 26054, "credit_id": "52fe46a2c3a36847f8109adf", "cast_id": 14, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 6}, {"name": "Timothy Olyphant", "character": "The Spirit of the West (voice)", "id": 18082, "credit_id": "52fe46a2c3a36847f8109ad3", "cast_id": 11, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 7}, {"name": "Ray Winstone", "character": "Bad Bill (voice)", "id": 5538, "credit_id": "52fe46a2c3a36847f8109b01", "cast_id": 21, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 8}, {"name": "Stephen Root", "character": "Doc / Merrimack / Mr. Snuggles (voice)", "id": 17401, "credit_id": "52fe46a2c3a36847f8109b05", "cast_id": 22, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 9}, {"name": "Harry Dean Stanton", "character": "Balthazar (voice)", "id": 5048, "credit_id": "52fe46a2c3a36847f8109b09", "cast_id": 23, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 10}, {"name": "Ian Abercrombie", "character": "Ambrose (voice)", "id": 11764, "credit_id": "52fe46a2c3a36847f8109b0d", "cast_id": 24, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 11}, {"name": "Gil Birmingham", "character": "Wounded Bird (voice)", "id": 84225, "credit_id": "52fe46a2c3a36847f8109b11", "cast_id": 25, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 12}, {"name": "James Ward Byrkit", "character": "Waffles / Gordy / Papa Joad / Cousin Murt / Curlie / Knife Attacker / Rodent Kid (voice)", "id": 146439, "credit_id": "52fe46a2c3a36847f8109b15", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Blake Clark", "character": "Buford (voice)", "id": 21485, "credit_id": "52fe46a2c3a36847f8109b19", "cast_id": 27, "profile_path": "/mSWo6JZevNICzOsa9Xub62xW0mu.jpg", "order": 14}, {"name": "Keith Campbell", "character": "Sod Buster (voice)", "id": 15318, "credit_id": "53b95746c3a3685ec1005795", "cast_id": 28, "profile_path": "/1PQSshXQ2AgifwYbykqXEyQYmDg.jpg", "order": 15}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe46a2c3a36847f8109ac5", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.4, "runtime": 107}, "12133": {"poster_path": "/tDFNUuYkQ4ZeAlrBHeTtimAumXo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 128107642, "overview": "Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.", "video": false, "id": 12133, "genres": [{"id": 35, "name": "Comedy"}], "title": "Step Brothers", "tagline": "They grow up so fast.", "vote_count": 230, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0838283", "adult": false, "backdrop_path": "/lZZEXkDtFvB8eJxtTZ7IfNbvAsZ.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Relativity Media", "id": 7295}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2008-07-25", "popularity": 0.798616921737685, "original_title": "Step Brothers", "budget": 65000000, "cast": [{"name": "Will Ferrell", "character": "Brennan Huff", "id": 23659, "credit_id": "52fe44bb9251416c7503f15f", "cast_id": 10, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "John C. Reilly", "character": "Dale Doback", "id": 4764, "credit_id": "52fe44bb9251416c7503f163", "cast_id": 11, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 1}, {"name": "Mary Steenburgen", "character": "Nancy Huff", "id": 2453, "credit_id": "52fe44bb9251416c7503f167", "cast_id": 12, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 2}, {"name": "Richard Jenkins", "character": "Dr. Robert Doback", "id": 28633, "credit_id": "52fe44bb9251416c7503f16b", "cast_id": 13, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 3}, {"name": "Adam Scott", "character": "Derek", "id": 36801, "credit_id": "52fe44bb9251416c7503f16f", "cast_id": 14, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Alice", "id": 17696, "credit_id": "52fe44bb9251416c7503f173", "cast_id": 15, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Andrea Savage", "character": "Denise", "id": 71402, "credit_id": "52fe44bc9251416c7503f177", "cast_id": 16, "profile_path": "/t6XAuQGq0vk7Kk3kbf3MeZSHNVv.jpg", "order": 6}, {"name": "Rob Riggle", "character": "Randy", "id": 71403, "credit_id": "52fe44bc9251416c7503f17b", "cast_id": 17, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 7}, {"name": "Seth Rogen", "character": "Sporting Goods Manager", "id": 19274, "credit_id": "52fe44bc9251416c7503f17f", "cast_id": 18, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 8}, {"name": "Logan Manus", "character": "Chris Gardoki", "id": 141532, "credit_id": "52fe44bc9251416c7503f19b", "cast_id": 24, "profile_path": "/vq4oR5nhNKZqiKgqZESnqN2RQXy.jpg", "order": 9}, {"name": "Lurie Poston", "character": "Tommy", "id": 964809, "credit_id": "52fe44bc9251416c7503f19f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Shira Piven", "character": "Nurse", "id": 1186229, "credit_id": "52fe44bc9251416c7503f1a3", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Wayne Federman", "character": "Blind Man", "id": 170759, "credit_id": "52fe44bc9251416c7503f1a7", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "Adam McKay", "department": "Directing", "job": "Director", "credit_id": "52fe44bb9251416c7503f12b", "profile_path": "/jxw8YlVhD79YidduFrTNbhqb7XH.jpg", "id": 55710}], "vote_average": 6.6, "runtime": 98}, "8849": {"poster_path": "/gavHGUJseSLBdENBnyZDwiRobXy.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13395939, "overview": "In Manhattan, the British limousine driver Alfie is surrounded by beautiful women, having one night stands with all of them and without any sort of commitment. His best friends are his colleague Marlon and his girl-friend Lonette. Alfie has a brief affair with Lonette, and the consequences of his act forces Alfie to reflect over his lifestyle.", "video": false, "id": 8849, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Alfie", "tagline": "Meet a man who never met a woman he didn't love.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0375173", "adult": false, "backdrop_path": "/gXDOdcEPi2FxCOTA1hwZTmF0Hv7.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-10-22", "popularity": 0.450666708975423, "original_title": "Alfie", "budget": 40000000, "cast": [{"name": "Jude Law", "character": "Alfie", "id": 9642, "credit_id": "52fe44c0c3a36847f80a7ffb", "cast_id": 1, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Marisa Tomei", "character": "Julie", "id": 3141, "credit_id": "52fe44c0c3a36847f80a800b", "cast_id": 5, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 1}, {"name": "Omar Epps", "character": "Marlon", "id": 4987, "credit_id": "52fe44c0c3a36847f80a800f", "cast_id": 6, "profile_path": "/t4Qg5ANKK2idfOt4RzWzhiP7IEv.jpg", "order": 2}, {"name": "Jane Krakowski", "character": "Dorie", "id": 13636, "credit_id": "52fe44c0c3a36847f80a8003", "cast_id": 3, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 3}, {"name": "Ren\u00e9e Taylor", "character": "Lu Schnitman", "id": 56105, "credit_id": "52fe44c0c3a36847f80a7fff", "cast_id": 2, "profile_path": "/3WYu7Je7lT47KtayiavBL5kAQLA.jpg", "order": 4}, {"name": "Jeff Harding", "character": "Phil", "id": 29071, "credit_id": "52fe44c0c3a36847f80a8007", "cast_id": 4, "profile_path": null, "order": 5}, {"name": "Sienna Miller", "character": "Nikki", "id": 23459, "credit_id": "52fe44c0c3a36847f80a8037", "cast_id": 13, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 6}, {"name": "Nia Long", "character": "Lonette", "id": 9781, "credit_id": "52fe44c0c3a36847f80a803b", "cast_id": 14, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 7}, {"name": "Susan Sarandon", "character": "Liz", "id": 4038, "credit_id": "52fe44c0c3a36847f80a803f", "cast_id": 15, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 8}, {"name": "Katherine LaNasa", "character": "Uta", "id": 169337, "credit_id": "531836c6c3a3685c31000f29", "cast_id": 16, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 9}], "directors": [{"name": "Charles Shyer", "department": "Directing", "job": "Director", "credit_id": "52fe44c0c3a36847f80a8015", "profile_path": "/hnWGd74CbmTcDCFQiJ8SYLazIXW.jpg", "id": 56106}], "vote_average": 5.4, "runtime": 103}, "2023": {"poster_path": "/5BiWWo12FnSFTatD8dfMpoF7bVs.jpg", "production_countries": [{"iso_3166_1": "MA", "name": "Morocco"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108103450, "overview": "Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world...", "video": false, "id": 2023, "genres": [{"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "Hidalgo", "tagline": "Unbridled. Unbroken. Unbeaten.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0317648", "adult": false, "backdrop_path": "/1tH9AnFjBFemdowMfDrnnhY8Y1z.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Casey Silver Productions", "id": 877}, {"name": "Dune Films", "id": 19477}], "release_date": "2004-02-17", "popularity": 1.12364380223643, "original_title": "Hidalgo", "budget": 100000000, "cast": [{"name": "Viggo Mortensen", "character": "Frank Hopkins", "id": 110, "credit_id": "52fe432dc3a36847f8040417", "cast_id": 11, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Zuleikha Robinson", "character": "Jazira", "id": 20803, "credit_id": "52fe432dc3a36847f804041b", "cast_id": 12, "profile_path": "/wXOb9qp9FYqWvTcxkf5lhsoHkzf.jpg", "order": 1}, {"name": "Omar Sharif", "character": "Sheikh Riyadh", "id": 5004, "credit_id": "52fe432dc3a36847f804041f", "cast_id": 13, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 2}, {"name": "Adam Alexi-Malle", "character": "Aziz", "id": 20804, "credit_id": "52fe432dc3a36847f8040423", "cast_id": 14, "profile_path": "/4wopg5aGUm9oVlwxXIsdG8WU82B.jpg", "order": 3}, {"name": "Louise Lombard", "character": "Lady Anne Davenport", "id": 20805, "credit_id": "52fe432dc3a36847f8040427", "cast_id": 15, "profile_path": "/gw74UeyFsm4PNFjAflAc8lbppSM.jpg", "order": 4}, {"name": "Silas Carson", "character": "Katib", "id": 20806, "credit_id": "52fe432dc3a36847f804042b", "cast_id": 16, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 5}, {"name": "Harsh Nayyar", "character": "Yusef", "id": 20807, "credit_id": "52fe432dc3a36847f804042f", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "C. Thomas Howell", "character": "Preston Webb", "id": 2878, "credit_id": "52fe432dc3a36847f8040433", "cast_id": 18, "profile_path": "/8PFMkxOnn1JEKwd0nlbBuZfS7Sf.jpg", "order": 7}, {"name": "J.K. Simmons", "character": "Buffalo Bill Cody", "id": 18999, "credit_id": "52fe432dc3a36847f8040437", "cast_id": 19, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 8}, {"name": "Adoni Maropis", "character": "Sakr", "id": 20808, "credit_id": "52fe432dc3a36847f804043b", "cast_id": 20, "profile_path": "/np8iLJmgKPLaX5kLXAKVc273HHH.jpg", "order": 9}, {"name": "Joshua Wolf Coleman", "character": "The Kurd", "id": 20809, "credit_id": "52fe432dc3a36847f804043f", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Sa\u00efd Taghmaoui", "character": "Prince Bin Al Reeh", "id": 5419, "credit_id": "52fe432dc3a36847f8040443", "cast_id": 22, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 11}, {"name": "Victor Talmadge", "character": "Rau Rasmussen", "id": 1240492, "credit_id": "52fe432dc3a36847f8040447", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Peter Mensah", "character": "Jaffa", "id": 68278, "credit_id": "52fe432dc3a36847f804044b", "cast_id": 24, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 13}, {"name": "Franky Mwangi", "character": "Slave Boy", "id": 1286126, "credit_id": "52fe432dc3a36847f804044f", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Floyd Red Crow Westerman", "character": "Chief Eagle Horn (as Floyd Red Crow Westerman)", "id": 7862, "credit_id": "52fe432dc3a36847f8040453", "cast_id": 26, "profile_path": "/rAwnURUoJrIUbQtoRAPbHaTyLcu.jpg", "order": 15}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe432dc3a36847f80403dd", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.6, "runtime": 136}, "12140": {"poster_path": "/1KSMfpMWMzlvR2DN2fzv31vZ66B.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Groundbreaking director Mamoru Oshii continues to push the boundaries of art and anime with this universally acclaimed cyber thriller following cyborg detective Batou as he tries to unravel the reasons for a murderous robot revolt in the year 2032. A quest for a killer that becomes a mind bending search for the meaning of life.", "video": false, "id": 12140, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Ghost in the Shell 2: Innocence", "tagline": "When machines learn to feel, who decides what is human...", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xt0E8CHXzLxEoiPqrjZMRrM4Izi.jpg", "poster_path": "/oNi7xxwjEXBGaNJaB9ViJXEm0DF.jpg", "id": 23026, "name": "Ghost in the Shell Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0347246", "adult": false, "backdrop_path": "/LIbv8rXsi7AuDpBCbyrUy1zv2n.jpg", "production_companies": [{"name": "Bandai Visual Company", "id": 528}], "release_date": "2004-03-06", "popularity": 0.909959590726021, "original_title": "\u30a4\u30ce\u30bb\u30f3\u30b9", "budget": 0, "cast": [{"name": "Akio \u00d4tsuka", "character": "Bat\u014d (voice)", "id": 40451, "credit_id": "52fe44bd9251416c7503f425", "cast_id": 10, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 0}, {"name": "Tilo Schmitz", "character": "Bat\u014d (Stimme)", "id": 71433, "credit_id": "52fe44bd9251416c7503f429", "cast_id": 11, "profile_path": "/o24H8DJ2QOOq45qQlfky5z4ag2s.jpg", "order": 1}, {"name": "K\u00f4ichi Yamadera", "character": "Togusa (voice)", "id": 40328, "credit_id": "52fe44bd9251416c7503f42d", "cast_id": 12, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 2}, {"name": "Klaus-Peter Grap", "character": "Togusa (Stimme)", "id": 71434, "credit_id": "52fe44bd9251416c7503f431", "cast_id": 13, "profile_path": "/7Ub0dtqHb9HHch7t4GeHLOIUapD.jpg", "order": 3}, {"name": "Atsuko Tanaka", "character": "Motoko Kusanagi (voice)", "id": 34923, "credit_id": "52fe44bd9251416c7503f435", "cast_id": 14, "profile_path": "/tM2mIRVxO7TehX35cpSbDvgEByq.jpg", "order": 4}, {"name": "Christin Marquitan", "character": "Motoko Kusanagi (Stimme)", "id": 71435, "credit_id": "52fe44bd9251416c7503f439", "cast_id": 15, "profile_path": "/s4QOc2PkVgXg2N5n3Vpw46gDDjk.jpg", "order": 5}], "directors": [{"name": "Mamoru Oshii", "department": "Directing", "job": "Director", "credit_id": "52fe44bd9251416c7503f3f1", "profile_path": "/2MXFEwxLu7gT9vvi5Otx4LQgsvZ.jpg", "id": 12180}], "vote_average": 7.3, "runtime": 100}, "12144": {"poster_path": "/64Kq57TiQCfJjMORxNS1lUAnFoL.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84460846, "overview": "An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each onea different species, and they encounter several obstacles as they learn to worktogether in order to survive.", "video": false, "id": 12144, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Land Before Time", "tagline": "A new adventure is born.", "vote_count": 128, "homepage": "", "belongs_to_collection": {"backdrop_path": "/alkvR9vTtuZEmd5ygsayOfxYOMa.jpg", "poster_path": "/n1bjdBVThBezxR6nEf2dy43sTtV.jpg", "id": 19163, "name": "The Land Before Time Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095489", "adult": false, "backdrop_path": "/48Mg9lbVQJ8K0v02fXB7kTiFl0R.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Sullivan Bluth Studios", "id": 6422}, {"name": "U-Drive Productions", "id": 20448}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Lucasfilm", "id": 1}], "release_date": "1988-11-17", "popularity": 1.08504091209301, "original_title": "The Land Before Time", "budget": 12300000, "cast": [{"name": "Gabriel Damon", "character": "Littlefoot", "id": 44055, "credit_id": "52fe44be9251416c7503f60f", "cast_id": 12, "profile_path": null, "order": 0}, {"name": "Candace Hutson", "character": "Cera", "id": 71447, "credit_id": "52fe44be9251416c7503f613", "cast_id": 13, "profile_path": "/vQkf9HEkeefl9ufkMFpep2RjFVO.jpg", "order": 1}, {"name": "Judith Barsi", "character": "Ducky", "id": 16216, "credit_id": "52fe44be9251416c7503f617", "cast_id": 14, "profile_path": "/us9iqhoNDbjKKVVlr3TciFLVagn.jpg", "order": 2}, {"name": "Will Ryan", "character": "Petrie", "id": 40352, "credit_id": "52fe44be9251416c7503f61b", "cast_id": 15, "profile_path": "/uY0oWjp7dxBEh03LpMBqApaswn.jpg", "order": 3}, {"name": "Pat Hingle", "character": "Narrator", "id": 3798, "credit_id": "530f144e925141733200083e", "cast_id": 16, "profile_path": "/bW8alHCKEK0UOJjoZwjwwH7T0ga.jpg", "order": 4}, {"name": "Helen Shaver", "character": "Littlefoot's Mother", "id": 4160, "credit_id": "530f1469925141734a0007dd", "cast_id": 17, "profile_path": "/a9ODBCPAkAolT4QWhuMUlFNAUIL.jpg", "order": 5}, {"name": "Bill Erwin", "character": "Grandfather", "id": 26044, "credit_id": "530f147f925141735500071f", "cast_id": 18, "profile_path": "/b0O9XSBfgWh2CBhV2gHKvPGpOS.jpg", "order": 6}, {"name": "Burke Byrnes", "character": "Daddy Topps", "id": 109761, "credit_id": "530f1496925141736c0007e2", "cast_id": 19, "profile_path": null, "order": 7}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe44bd9251416c7503f5cf", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}], "vote_average": 7.0, "runtime": 69}, "12149": {"poster_path": "/18OgA3Do1UdWQunFXHcMMEoGLOL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13110448, "overview": "A man confesses to an FBI agent his family's story of how his religious fanatic father's visions lead to a series of murders to destroy supposed \"demons.\"", "video": false, "id": 12149, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Frailty", "tagline": "No Soul Is Safe.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0264616", "adult": false, "backdrop_path": "/bhYsiT8V2yV4ZcnxxbIiJUKlRB2.jpg", "production_companies": [{"name": "Cinerenta Medienbeteiligungs KG", "id": 995}, {"name": "David Kirschner Productions", "id": 11050}, {"name": "American Entertainment Partners L.P.", "id": 5264}], "release_date": "2001-11-17", "popularity": 0.664215159916039, "original_title": "Frailty", "budget": 11000000, "cast": [{"name": "Bill Paxton", "character": "Father Meiks", "id": 2053, "credit_id": "52fe44bf9251416c7503f853", "cast_id": 9, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Adam Meiks", "id": 10297, "credit_id": "52fe44bf9251416c7503f857", "cast_id": 10, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Powers Boothe", "character": "FBI-Agent Wesley Doyle", "id": 6280, "credit_id": "52fe44bf9251416c7503f85b", "cast_id": 11, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 2}, {"name": "Matt O'Leary", "character": "Young Fenton", "id": 71467, "credit_id": "52fe44bf9251416c7503f85f", "cast_id": 12, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 3}, {"name": "Jeremy Sumpter", "character": "Young Adam", "id": 65838, "credit_id": "52fe44bf9251416c7503f863", "cast_id": 13, "profile_path": "/erNaw0imhMzn3OqGcOQPQeQ4RtI.jpg", "order": 4}, {"name": "Luke Askew", "character": "Sheriff Smalls", "id": 8962, "credit_id": "532573d99251410d950019c8", "cast_id": 20, "profile_path": "/nlV0bfadoMjbz7vxmLl5zALc86H.jpg", "order": 5}, {"name": "Levi Kreis", "character": "Fenton Meiks", "id": 1032173, "credit_id": "5325740192514113b900195a", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Derk Cheetwood", "character": "Agent Griffin Hull", "id": 1219574, "credit_id": "532574179251410d950019cc", "cast_id": 22, "profile_path": "/98bVC65NHeNTGekLHgZ6vdTWLIE.jpg", "order": 7}, {"name": "Missy Crider", "character": "Becky Meiks", "id": 53646, "credit_id": "5325742a9251411544001974", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Alan Davidson", "character": "Brad White", "id": 154649, "credit_id": "5325743c925141143900190d", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Cynthia Ettinger", "character": "Cynthia Harbridge", "id": 1212913, "credit_id": "5325745e9251411439001910", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Gwen McGee", "character": "Operator", "id": 42296, "credit_id": "532574749251411f85007466", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Rebecca Tilney", "character": "Teacher", "id": 69503, "credit_id": "53257485925141652a00176c", "cast_id": 27, "profile_path": "/a5QT8ClAg6yTacjNIpAbG2d6EJh.jpg", "order": 12}], "directors": [{"name": "Bill Paxton", "department": "Directing", "job": "Director", "credit_id": "52fe44bf9251416c7503f831", "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "id": 2053}], "vote_average": 7.1, "runtime": 100}, "9679": {"poster_path": "/nb2TRrlSdgi8wZAxTHdhsN0yMJw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237202299, "overview": "Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall \"Memphis\" Raines enlists help from a few \"boost happy\" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.", "video": false, "id": 9679, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Gone In Sixty Seconds", "tagline": "Ice Cold, Hot Wired.", "vote_count": 660, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0187078", "adult": false, "backdrop_path": "/ktyIKbX1UHJQkqYOTz9LTcrlhXG.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2000-06-04", "popularity": 1.32705478815382, "original_title": "Gone In Sixty Seconds", "budget": 90000000, "cast": [{"name": "Nicolas Cage", "character": "Randall 'Memphis' Raines", "id": 2963, "credit_id": "52fe451ac3a36847f80bc977", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Giovanni Ribisi", "character": "Kip Raines", "id": 1771, "credit_id": "52fe451ac3a36847f80bc97b", "cast_id": 2, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 1}, {"name": "Angelina Jolie", "character": "Sara 'Sway' Wayland", "id": 11701, "credit_id": "52fe451ac3a36847f80bc97f", "cast_id": 3, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 2}, {"name": "T.J. Cross", "character": "Mirror Man", "id": 58497, "credit_id": "52fe451ac3a36847f80bc983", "cast_id": 4, "profile_path": "/kYf4hL8UfzUhLuDwACJFWop6hrN.jpg", "order": 3}, {"name": "Robert Duvall", "character": "Otto Halliwell", "id": 3087, "credit_id": "52fe451ac3a36847f80bc987", "cast_id": 5, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 4}, {"name": "William Lee Scott", "character": "Toby", "id": 10128, "credit_id": "52fe451ac3a36847f80bc9f1", "cast_id": 24, "profile_path": "/dq4IWfaRLghUgkIUB7UVBlhWj8t.jpg", "order": 5}, {"name": "Scott Caan", "character": "Tumbler", "id": 1894, "credit_id": "52fe451ac3a36847f80bc9f5", "cast_id": 25, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "James Duval", "character": "Freb", "id": 1582, "credit_id": "52fe451ac3a36847f80bc9f9", "cast_id": 26, "profile_path": "/ydlb3Rp5vkle9codpcfBWxFmUYr.jpg", "order": 7}, {"name": "Delroy Lindo", "character": "(Det) Roland Castlebeck", "id": 18792, "credit_id": "52fe451ac3a36847f80bc9fd", "cast_id": 27, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 8}, {"name": "Timothy Olyphant", "character": "(Det) Drycoff", "id": 18082, "credit_id": "52fe451ac3a36847f80bca01", "cast_id": 28, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 9}, {"name": "Chi McBride", "character": "Donny Astricky", "id": 8687, "credit_id": "52fe451ac3a36847f80bca05", "cast_id": 29, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 10}, {"name": "Christopher Eccleston", "character": "Raymond Calitri", "id": 2040, "credit_id": "52fe451ac3a36847f80bca09", "cast_id": 30, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 11}, {"name": "Grace Zabriskie", "character": "Helen Raines", "id": 6465, "credit_id": "52fe451ac3a36847f80bca0d", "cast_id": 31, "profile_path": "/ibBabuSM1UyPYFFo0wBXhGbqElk.jpg", "order": 12}, {"name": "Vinnie Jones", "character": "The Sphinx", "id": 980, "credit_id": "52fe451ac3a36847f80bca11", "cast_id": 32, "profile_path": "/1QQea9t0JkRVVVbgVtpGAQuf0x5.jpg", "order": 13}, {"name": "Will Patton", "character": "Atlee Jackson", "id": 883, "credit_id": "52fe451ac3a36847f80bca15", "cast_id": 33, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 14}, {"name": "Michael Pe\u00f1a", "character": "Ignacio", "id": 454, "credit_id": "5309983bc3a36863b10031e8", "cast_id": 35, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 15}, {"name": "Frances Fisher", "character": "Junie", "id": 3713, "credit_id": "54dc7833c3a368122a003822", "cast_id": 36, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 16}, {"name": "Arye Gross", "character": "James Lakewood", "id": 72028, "credit_id": "54dc785a925141618c0037ca", "cast_id": 37, "profile_path": "/2e0PGQHGXk5uxdXCARaAh2fC3QM.jpg", "order": 17}, {"name": "Carmen Argenziano", "character": "Det. Mayhew", "id": 28413, "credit_id": "54dc7874c3a36831020031c4", "cast_id": 38, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 18}, {"name": "Bodhi Elfman", "character": "Frizzel", "id": 154883, "credit_id": "54dc849ec3a3681233003cc2", "cast_id": 39, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 19}], "directors": [{"name": "Dominic Sena", "department": "Directing", "job": "Director", "credit_id": "52fe451ac3a36847f80bc98d", "profile_path": "/ofWADCsDpNxbTFfoK1CpU8KnBGF.jpg", "id": 58498}], "vote_average": 6.0, "runtime": 118}, "172803": {"poster_path": "/8KEuqkOmxvtR4rLynkvBhpaNMfM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A father struggles to keep his infant daughter alive in the wake of Hurricane Katrina.", "video": false, "id": 172803, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hours", "tagline": "Every second counts", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2094018", "adult": false, "backdrop_path": "/qlAll8FyQD6E2PSkZ3ID90YFxs1.jpg", "production_companies": [{"name": "Hours Capital", "id": 27408}, {"name": "The Safran Company", "id": 11565}, {"name": "PalmStar Entertainment", "id": 24277}], "release_date": "2013-12-12", "popularity": 0.706617483567332, "original_title": "Hours", "budget": 4000000, "cast": [{"name": "Paul Walker", "character": "Nolan Hayes", "id": 8167, "credit_id": "52fe4d27c3a36847f82517db", "cast_id": 4, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Abigail", "id": 589162, "credit_id": "52fe4d27c3a36847f82517df", "cast_id": 5, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 1}, {"name": "Nick Gomez", "character": "Lobo", "id": 84760, "credit_id": "52fe4d27c3a36847f82517e3", "cast_id": 6, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 2}, {"name": "Tony Bentley", "character": "Doctor", "id": 120253, "credit_id": "52fe4d27c3a36847f82517e7", "cast_id": 7, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 3}, {"name": "Judd Lormand", "character": "Glenn", "id": 990136, "credit_id": "52fe4d27c3a36847f82517eb", "cast_id": 8, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 4}, {"name": "Lena Clark", "character": "Lucy", "id": 1153536, "credit_id": "52fe4d27c3a36847f82517ef", "cast_id": 9, "profile_path": "/cuM28MFwzkYdaDbuylGVdIYNV0H.jpg", "order": 5}, {"name": "Kerry Cahill", "character": "Nurse Shelly", "id": 1049830, "credit_id": "52fe4d27c3a36847f825182f", "cast_id": 21, "profile_path": "/xMtuh2NAi4rYcuzbN3W4LXanPZJ.jpg", "order": 6}, {"name": "Nancy Nave", "character": "Sandra", "id": 1277218, "credit_id": "52fe4d27c3a36847f8251833", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "TJ Hassan", "character": "Jeremy", "id": 1000822, "credit_id": "52fe4d27c3a36847f8251837", "cast_id": 23, "profile_path": "/6A0n3eZSvtBBtxgEW03cEEmAJQZ.jpg", "order": 8}, {"name": "J. Omar Castro", "character": "Robinson", "id": 206027, "credit_id": "52fe4d27c3a36847f825183b", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Renell Gibbs", "character": "Jase", "id": 1277219, "credit_id": "52fe4d27c3a36847f825183f", "cast_id": 25, "profile_path": "/mQ6wzAthsjSasYT01olqYhEFUZX.jpg", "order": 10}], "directors": [{"name": "Eric Heisserer", "department": "Directing", "job": "Director", "credit_id": "52fe4d27c3a36847f82517d1", "profile_path": null, "id": 115033}], "vote_average": 6.4, "runtime": 97}, "12153": {"poster_path": "/hT4PEPFW3dQG7N5LZe5b2qYHCU0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113086475, "overview": "Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. As punishment, they are forced to escort a pair of socialites to the Hamptons, where they're going to be used as bait for a kidnapper. But when the girls realize the FBI's plan, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from African-American men into a pair of blonde, white women.", "video": false, "id": 12153, "genres": [{"id": 35, "name": "Comedy"}], "title": "White Chicks", "tagline": "They're going deep undercover.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0381707", "adult": false, "backdrop_path": "/fLLrqJQvn1IxcvkqwhJwKKo5UEZ.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}], "release_date": "2004-06-23", "popularity": 0.925182022339765, "original_title": "White Chicks", "budget": 37000000, "cast": [{"name": "Shawn Wayans", "character": "Kevin Copeland", "id": 35690, "credit_id": "52fe44bf9251416c7503fa1b", "cast_id": 17, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 0}, {"name": "Marlon Wayans", "character": "Marcus Copeland", "id": 9562, "credit_id": "52fe44bf9251416c7503fa1f", "cast_id": 18, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 1}, {"name": "Jaime King", "character": "Heather Vandergeld", "id": 5915, "credit_id": "52fe44bf9251416c7503fa23", "cast_id": 19, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 2}, {"name": "Frankie Faison", "character": "Elliott Gordon", "id": 13936, "credit_id": "52fe44bf9251416c7503fa27", "cast_id": 20, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 3}, {"name": "Maitland Ward", "character": "Brittany Wilson", "id": 71482, "credit_id": "52fe44bf9251416c7503fa2b", "cast_id": 21, "profile_path": null, "order": 4}, {"name": "Anne Dudek", "character": "Tiffany Wilson", "id": 24198, "credit_id": "52fe44bf9251416c7503fa2f", "cast_id": 22, "profile_path": "/nOaxjVPuWyfk5OkQc11ib2PhhRs.jpg", "order": 5}, {"name": "Lochlyn Munro", "character": "Agent Jake Harper", "id": 58058, "credit_id": "52fe44bf9251416c7503fa39", "cast_id": 24, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 6}, {"name": "John Heard", "character": "Warren Vandergeld", "id": 11512, "credit_id": "52fe44bf9251416c7503fa3d", "cast_id": 25, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 7}, {"name": "Busy Philipps", "character": "Karen", "id": 60928, "credit_id": "52fe44bf9251416c7503fa41", "cast_id": 26, "profile_path": "/uerCtOFqXQlbKG7FvjMDStD961y.jpg", "order": 8}, {"name": "Terry Crews", "character": "Latrell Spencer", "id": 53256, "credit_id": "52fe44bf9251416c7503fa45", "cast_id": 27, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 9}, {"name": "Brittany Daniel", "character": "Megan Vandergeld", "id": 35476, "credit_id": "52fe44bf9251416c7503fa49", "cast_id": 28, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 10}, {"name": "Eddie Velez", "character": "Agent Vincent Gomez", "id": 88031, "credit_id": "52fe44bf9251416c7503fa4d", "cast_id": 29, "profile_path": "/1CbsEzlt6fQmxIo5t3QsNrqsFlb.jpg", "order": 11}, {"name": "Jessica Cauffiel", "character": "Tori", "id": 22126, "credit_id": "52fe44c09251416c7503fa51", "cast_id": 30, "profile_path": "/rLqK8Qj2SPjwkT7uPQyv3UV5qlg.jpg", "order": 12}, {"name": "Rochelle Aytes", "character": "Denise Porter", "id": 80760, "credit_id": "52fe44c09251416c7503fa55", "cast_id": 31, "profile_path": "/r5JMfr0A7V4VEKIXx5EPy7Y51Ed.jpg", "order": 13}, {"name": "Jennifer Carpenter", "character": "Lisa", "id": 53828, "credit_id": "52fe44c09251416c7503fa59", "cast_id": 32, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 14}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe44bf9251416c7503f9c3", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 6.2, "runtime": 109}, "12155": {"poster_path": "/pvEE5EN5N1yjmHmldfL4aJWm56l.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1025467110, "overview": "Alice, an unpretentious and individual 19-year-old, is betrothed to a dunce of an English nobleman. At her engagement party, she escapes the crowd to consider whether to go through with the marriage and falls down a hole in the garden after spotting an unusual rabbit. Arriving in a strange and surreal place called 'Underland,' she finds herself in a world that resembles the nightmares she had as a child, filled with talking animals, villainous queens and knights, and frumious bandersnatches. Alice realizes that she is there for a reason--to conquer the horrific Jabberwocky and restore the rightful queen to her throne.", "video": false, "id": 12155, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Alice in Wonderland", "tagline": "You're invited to a very important date.", "vote_count": 1612, "homepage": "http://disney.go.com/wonderland/", "belongs_to_collection": {"backdrop_path": "/hbigSy1RDiSiX2uWj6vEQsO3T7Q.jpg", "poster_path": "/dmI5IJsaaeGzIkBv983oOkOUXLK.jpg", "id": 261307, "name": "Alice in Wonderland Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1014759", "adult": false, "backdrop_path": "/AmCtBQc5KxJfJVdS2TkY4Pc9lPd.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Roth Films", "id": 16314}, {"name": "Team Todd", "id": 598}, {"name": "Zanuck Company, The", "id": 20004}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2010-03-04", "popularity": 2.55684842453608, "original_title": "Alice in Wonderland", "budget": 200000000, "cast": [{"name": "Johnny Depp", "character": "The Mad Hatter", "id": 85, "credit_id": "52fe44c09251416c7503fb35", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "The White Queen", "id": 1813, "credit_id": "52fe44c09251416c7503fb21", "cast_id": 3, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "The Red Queen", "id": 1283, "credit_id": "52fe44c09251416c7503fb25", "cast_id": 4, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Crispin Glover", "character": "The Knave of Hearts", "id": 1064, "credit_id": "52fe44c09251416c7503fb29", "cast_id": 6, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 3}, {"name": "Mia Wasikowska", "character": "Alice Kingsley", "id": 76070, "credit_id": "52fe44c09251416c7503fb2d", "cast_id": 7, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 4}, {"name": "Marton Csokas", "character": "Charles Kingsley", "id": 20982, "credit_id": "52fe44c09251416c7503fb31", "cast_id": 11, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 5}, {"name": "Matt Lucas", "character": "Tweedledee / Tweedledum", "id": 26209, "credit_id": "52fe44c09251416c7503fb39", "cast_id": 14, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 6}, {"name": "Lindsay Duncan", "character": "Helen Kingsley", "id": 30083, "credit_id": "52fe44c09251416c7503fb3d", "cast_id": 17, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 7}, {"name": "Tim Pigott-Smith", "character": "Lord Ascot", "id": 11276, "credit_id": "52fe44c09251416c7503fb41", "cast_id": 18, "profile_path": "/2LLqdOOGjeine5yoCXzeFpxcPMc.jpg", "order": 8}, {"name": "Frances de la Tour", "character": "Aunt Imogene", "id": 47468, "credit_id": "52fe44c09251416c7503fb45", "cast_id": 19, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 9}, {"name": "Michael Sheen", "character": "The White Rabbit (voice)", "id": 3968, "credit_id": "52fe44c09251416c7503fb5b", "cast_id": 23, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 10}, {"name": "Alan Rickman", "character": "The Caterpillar (voice)", "id": 4566, "credit_id": "52fe44c09251416c7503fb5f", "cast_id": 24, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 11}, {"name": "Christopher Lee", "character": "The Jabberwocky (voice)", "id": 113, "credit_id": "52fe44c09251416c7503fb63", "cast_id": 25, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 12}, {"name": "Stephen Fry", "character": "The Cheshire Cat (voice)", "id": 11275, "credit_id": "52fe44c09251416c7503fb67", "cast_id": 26, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 13}, {"name": "Timothy Spall", "character": "The Bloodhound (voice)", "id": 9191, "credit_id": "52fe44c09251416c7503fb6b", "cast_id": 27, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 14}, {"name": "Paul Whitehouse", "character": "The March Hare (voice)", "id": 34900, "credit_id": "52fe44c09251416c7503fb6f", "cast_id": 28, "profile_path": "/zdM9dM27ofVMb1mWTwOSAfXaW4Y.jpg", "order": 15}, {"name": "Barbara Windsor", "character": "The Dormouse (voice)", "id": 40942, "credit_id": "52fe44c09251416c7503fb73", "cast_id": 29, "profile_path": "/xjp8FpTnNM36KeasHQxIt1sVNaR.jpg", "order": 16}, {"name": "Michael Gough", "character": "The Dodo (voice)", "id": 3796, "credit_id": "52fe44c09251416c7503fb77", "cast_id": 30, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 17}, {"name": "Imelda Staunton", "character": "Tall Flower Faces (voice)", "id": 11356, "credit_id": "52fe44c09251416c7503fb7b", "cast_id": 31, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 18}, {"name": "Eleanor Tomlinson", "character": "Fiona Chattaway", "id": 73357, "credit_id": "52fe44c09251416c7503fbcd", "cast_id": 45, "profile_path": "/1eDkLc1uz20At0UNGMaTgGaooBR.jpg", "order": 19}, {"name": "Holly Hawkins", "character": "Woman with Large Nose in Red Queen Court", "id": 1323226, "credit_id": "54eae0659251412eb800606e", "cast_id": 47, "profile_path": null, "order": 20}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe44c09251416c7503fb1d", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.0, "runtime": 108}, "88042": {"poster_path": "/1uHA1xOzrQczAmXvs4ji3XmKG6b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids' 21st-century behavior collides with Artie and Diane's old-school methods.", "video": false, "id": 88042, "genres": [{"id": 35, "name": "Comedy"}], "title": "Parental Guidance", "tagline": "", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1047540", "adult": false, "backdrop_path": "/dyEz4QZG2nOvkedlfOS6zZQWZMu.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Walden Media", "id": 10221}], "release_date": "2012-12-25", "popularity": 0.56443174557799, "original_title": "Parental Guidance", "budget": 0, "cast": [{"name": "Billy Crystal", "character": "Artie Decker", "id": 7904, "credit_id": "52fe49e79251416c910bc971", "cast_id": 1010, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 0}, {"name": "Bette Midler", "character": "Diane Decker", "id": 73931, "credit_id": "52fe49e79251416c910bc975", "cast_id": 1011, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Alice", "id": 3141, "credit_id": "52fe49e79251416c910bc979", "cast_id": 1012, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Tom Everett Scott", "character": "Phil Simmons", "id": 16857, "credit_id": "52fe49e79251416c910bc97d", "cast_id": 1013, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 3}, {"name": "Bailee Madison", "character": "Harper Simmons", "id": 54479, "credit_id": "52fe49e79251416c910bc999", "cast_id": 1020, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 4}, {"name": "Joshua Rush", "character": "Turner Simmons", "id": 212184, "credit_id": "52fe49e79251416c910bc99d", "cast_id": 1021, "profile_path": "/llQinkw36ZRjL23njpTmrU9wZ94.jpg", "order": 5}, {"name": "Kyle Harrison Breitkopf", "character": "Barker Simmons", "id": 1144353, "credit_id": "52fe49e79251416c910bc9a1", "cast_id": 1022, "profile_path": null, "order": 6}, {"name": "Jennifer Crystal Foley", "character": "Cassandra", "id": 532890, "credit_id": "52fe49e79251416c910bc9a5", "cast_id": 1023, "profile_path": "/AbtNUXqNx35ZyfebQNj2W6mVljV.jpg", "order": 7}, {"name": "Rhoda Griffis", "character": "Dr. Schveer", "id": 51456, "credit_id": "52fe49e79251416c910bc989", "cast_id": 1016, "profile_path": "/zeogAlRpFrZJMfKXuwB7iCVVqJz.jpg", "order": 8}, {"name": "Gedde Watanabe", "character": "Mr. Cheng", "id": 16183, "credit_id": "52fe49e79251416c910bc985", "cast_id": 1015, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 9}, {"name": "Madison Lintz", "character": "Ashley", "id": 935720, "credit_id": "52fe49e79251416c910bc981", "cast_id": 1014, "profile_path": "/sc0ta9EJnIk8BmTCnu1ivNihjoR.jpg", "order": 10}, {"name": "Karan Kendrick", "character": "Pre-School Mom", "id": 935721, "credit_id": "52fe49e79251416c910bc98d", "cast_id": 1017, "profile_path": "/cY8HkrWGR4Ux5uYpYMIChXJU36S.jpg", "order": 11}, {"name": "Patricia French", "character": "Marilyn - Pole Dancer", "id": 128207, "credit_id": "52fe49e79251416c910bc991", "cast_id": 1018, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 12}, {"name": "Brad James", "character": "Rookie Cop", "id": 935722, "credit_id": "52fe49e79251416c910bc995", "cast_id": 1019, "profile_path": null, "order": 13}, {"name": "Tony Hawk", "character": "Himself", "id": 16832, "credit_id": "52fe49e79251416c910bc9a9", "cast_id": 1024, "profile_path": "/hrGNPp2erLimOo2wyFWgXVpIqPN.jpg", "order": 14}, {"name": "Steve Levy", "character": "Himself", "id": 60673, "credit_id": "52fe49e79251416c910bc9ad", "cast_id": 1025, "profile_path": null, "order": 15}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe49e79251416c910bc9b3", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.9, "runtime": 104}, "12159": {"poster_path": "/rNQH6Q8RPXD59aqGckST3CKQbCf.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71485043, "overview": "Chris Neilson dies to find himself in a heaven more amazing than he could have ever dreamed of. There is one thing missing: his wife. After he dies, his wife, Annie killed herself and went to hell. Chris decides to risk eternity in hades for the small chance that he will be able to bring her back to heaven.", "video": false, "id": 12159, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "What Dreams May Come", "tagline": "After life there is more. The end is just the beginning.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120889", "adult": false, "backdrop_path": "/nzeEb4z9shqdFZbTuchQw2nXiWY.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}], "release_date": "1998-10-02", "popularity": 1.08100444949578, "original_title": "What Dreams May Come", "budget": 85000000, "cast": [{"name": "Robin Williams", "character": "Chris Nielsen", "id": 2157, "credit_id": "52fe44c19251416c7503fd6b", "cast_id": 13, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Cuba Gooding Jr.", "character": "Ian Nielsen (as Albert Lewis)", "id": 9777, "credit_id": "52fe44c19251416c7503fd6f", "cast_id": 14, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 1}, {"name": "Annabella Sciorra", "character": "Annie Collins-Nielsen", "id": 18750, "credit_id": "52fe44c19251416c7503fd73", "cast_id": 15, "profile_path": "/hYnhZFxfac6Q009StxjcF06iJXz.jpg", "order": 2}, {"name": "Max von Sydow", "character": "Albert Lewis (as the tracker)", "id": 2201, "credit_id": "52fe44c19251416c7503fd77", "cast_id": 16, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 3}, {"name": "Jessica Brooks Grant", "character": "Marie Nielsen", "id": 91035, "credit_id": "52fe44c19251416c7503fd81", "cast_id": 18, "profile_path": "/n98f0OqqyW9XIg8kIm5y9mwUNQA.jpg", "order": 4}, {"name": "Josh Paddock", "character": "Ian Nielsen", "id": 197545, "credit_id": "52fe44c19251416c7503fd85", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Rosalind Chao", "character": "Leona", "id": 74073, "credit_id": "52fe44c19251416c7503fd89", "cast_id": 20, "profile_path": "/kTcPnmYxm9ez3vI2yX5Nm6Y3dXy.jpg", "order": 6}, {"name": "Lucinda Jenney", "character": "Mrs. Jacobs", "id": 5148, "credit_id": "52fe44c19251416c7503fd8d", "cast_id": 21, "profile_path": "/ucvaRviBWE1IR4YPGA8VYVMSand.jpg", "order": 7}], "directors": [{"name": "Vincent Ward", "department": "Directing", "job": "Director", "credit_id": "52fe44c19251416c7503fd25", "profile_path": null, "id": 9198}], "vote_average": 6.6, "runtime": 113}, "20352": {"poster_path": "/2ZFmSkIihM3cWTjtKVy1UAchG5L.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 543513985, "overview": "In a happy suburban neighbourhood surrounded by white picket fences with flowering rose bushes, sits a black house with a dead lawn. Unbeknownst to the neighbours, hidden deep beneath this home is a vast secret hideout. Surrounded by an army of tireless, little yellow minions, we discover Gru, planning the biggest heist in the history of the world. He is going to steal the moon (Yes, the moon!) to prove to his Mum that he is better than the other super-villains, especially the new kid on the block, Vector. Gru delights in all things wicked. Armed with his arsenal of shrink rays, freeze guns and battle-ready vehicles for land and air, he vanquishes all who stand in his way. Until the day he encounters the immense will of three little orphaned girls who look at him and see something that no one else has ever seen: a potential dad.", "video": false, "id": 20352, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me", "tagline": "Superbad. Superdad.", "vote_count": 3738, "homepage": "http://www.despicable.me/", "belongs_to_collection": {"backdrop_path": "/15IZl405E664QDVxpFJBl7TtLmw.jpg", "poster_path": "/95prV91f4DxkBnLU43YjLbU1m3q.jpg", "id": 86066, "name": "Despicable Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1323594", "adult": false, "backdrop_path": "/yo1ef57MEPkEE4BDZKTZGH9uDcX.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-07-08", "popularity": 1.66955290329156, "original_title": "Despicable Me", "budget": 69000000, "cast": [{"name": "Steve Carell", "character": "Gru (voice)", "id": 4495, "credit_id": "52fe43e2c3a368484e003e77", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Jason Segel", "character": "Vector (voice)", "id": 41088, "credit_id": "52fe43e2c3a368484e003e73", "cast_id": 2, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Russell Brand", "character": "Dr. Nefario (voice)", "id": 59919, "credit_id": "52fe43e2c3a368484e003e6f", "cast_id": 1, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 2}, {"name": "Julie Andrews", "character": "Gru's Mother (voice)", "id": 5823, "credit_id": "52fe43e3c3a368484e003e8b", "cast_id": 8, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 3}, {"name": "Will Arnett", "character": "Mr. Perkins (voice)", "id": 21200, "credit_id": "52fe43e3c3a368484e003ec9", "cast_id": 23, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 4}, {"name": "Kristen Wiig", "character": "Miss Hattie (voice)", "id": 41091, "credit_id": "52fe43e3c3a368484e003e83", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 5}, {"name": "Miranda Cosgrove", "character": "Margo (voice)", "id": 17743, "credit_id": "52fe43e2c3a368484e003e7f", "cast_id": 5, "profile_path": "/p2rQkLY4Wr4KnCd3S1LwfhE42zu.jpg", "order": 6}, {"name": "Dana Gaier", "character": "Edith (voice)", "id": 124750, "credit_id": "52fe43e3c3a368484e003eb1", "cast_id": 17, "profile_path": "/rSvNxm2QifFpRCtmzrWHyDy0O9N.jpg", "order": 7}, {"name": "Elsie Kate Fisher", "character": "Agnes (voice)", "id": 998571, "credit_id": "52fe43e3c3a368484e003ecd", "cast_id": 24, "profile_path": "/2ekK6XG4s5knpjLZPwHZCFRA6mJ.jpg", "order": 8}, {"name": "Pierre Coffin", "character": "Tim the Minion / Bob the Minion / Mark the Minion / Phil the Minion / Stuart the Minion (voice)", "id": 124747, "credit_id": "52fe43e3c3a368484e003eb5", "cast_id": 18, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 9}, {"name": "Chris Renaud", "character": "Dave the Minion (voice)", "id": 124748, "credit_id": "52fe43e3c3a368484e003eb9", "cast_id": 19, "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "order": 10}, {"name": "Jemaine Clement", "character": "Jerry the Minion (voice)", "id": 55936, "credit_id": "52fe43e3c3a368484e003e87", "cast_id": 7, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 11}, {"name": "Jack McBrayer", "character": "Carnival Barker / Tourist Dad (voice)", "id": 58737, "credit_id": "52fe43e3c3a368484e003ebd", "cast_id": 20, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 12}, {"name": "Danny McBride", "character": "Fred McDade (voice)", "id": 62862, "credit_id": "52fe43e3c3a368484e003ec1", "cast_id": 21, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 13}, {"name": "Mindy Kaling", "character": "Tourist mom (voice)", "id": 125167, "credit_id": "52fe43e3c3a368484e003ec5", "cast_id": 22, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 14}, {"name": "Rob Huebel", "character": "Anchorman (voice)", "id": 80595, "credit_id": "52fe43e3c3a368484e003e8f", "cast_id": 10, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 15}, {"name": "Ken Jeong", "character": "Talk Show Host (voice)", "id": 83586, "credit_id": "52fe43e2c3a368484e003e7b", "cast_id": 4, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 16}, {"name": "Ken Daurio", "character": "Egyptian Guard (voice)", "id": 52360, "credit_id": "550ef50d925141073d00300c", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Charles Bright", "character": "Additional Voices (voice)", "id": 1444032, "credit_id": "550ef530c3a3683dd6002ba1", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Katie Leigh", "character": "Additional Voices (voice)", "id": 194804, "credit_id": "550ef560925141065c002fc5", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Ranjani Brow", "character": "Additional Voices (voice)", "id": 1444033, "credit_id": "550ef57892514146a000a3da", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Scott Menville", "character": "Additional Voices (voice)", "id": 113916, "credit_id": "550f938c925141073d0042c9", "cast_id": 40, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 21}, {"name": "Holly Dorff", "character": "Additional Voices (voice)", "id": 64449, "credit_id": "550f948492514146a000b653", "cast_id": 41, "profile_path": "/90CsT8F67gH2uQIVppIBMXm7qvf.jpg", "order": 22}, {"name": "Edie Mirman", "character": "Additional Voices (voice)", "id": 1229809, "credit_id": "550f94dac3a3683dd6003d3b", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Jackie Gonneau", "character": "Additional Voices (voice)", "id": 950773, "credit_id": "550f9503c3a3683f390042e5", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Al Rodrigo", "character": "Additional Voices (voice)", "id": 1214171, "credit_id": "550f9541c3a3683dd6003d45", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Wendy Hoffman", "character": "Additional Voices (voice)", "id": 1444259, "credit_id": "550f955a92514146a000b673", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Jakob Roston", "character": "Additional Voices (voice)", "id": 1444262, "credit_id": "550f957792514166db001ff2", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "James Kyson", "character": "Additional Voices (voice) (as James Kyson Lee)", "id": 358824, "credit_id": "550f95a49251416bd1001e2f", "cast_id": 47, "profile_path": "/fuMxMqzqMoW6zqJcWvLA5LegQH1.jpg", "order": 28}, {"name": "John Hans Tester", "character": "Additional Voices (voice) (as Hans Tester)", "id": 1313638, "credit_id": "550f95d9c3a368487400c836", "cast_id": 48, "profile_path": "/5dpMV52ZA1THBmcCPEdtCYzgvwp.jpg", "order": 29}, {"name": "Tony Lee", "character": "Additional Voices (voice)", "id": 1444263, "credit_id": "550f9606925141073d004325", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Debi Mae West", "character": "Additional Voices (voice)", "id": 1216343, "credit_id": "550f965bc3a368208a000b42", "cast_id": 50, "profile_path": null, "order": 31}], "directors": [{"name": "Pierre Coffin", "department": "Directing", "job": "Director", "credit_id": "52fe43e3c3a368484e003e95", "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "id": 124747}, {"name": "Chris Renaud", "department": "Directing", "job": "Director", "credit_id": "52fe43e3c3a368484e003e9b", "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "id": 124748}], "vote_average": 7.0, "runtime": 95}, "85889": {"poster_path": "/dchLaUOkQOPZQHnus5fnZgZKDuP.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A bipolar bigoted junkie cop, manipulates and hallucinates his way through the festive season in a bid to secure promotion and win back his wife and daughter.", "video": false, "id": 85889, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Filth", "tagline": "It's a filthy job getting to the top, but someone's got to do it.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1450321", "adult": false, "backdrop_path": "/1GeTR0rkYKms7qGRdWe7SaiAs7v.jpg", "production_companies": [{"name": "Egoli Tossell Film AG", "id": 2254}, {"name": "Steel Mill Pictures", "id": 15282}, {"name": "Entre Chien et Loup", "id": 15472}, {"name": "Filmgate Films", "id": 18230}, {"name": "Logie Pictures", "id": 19637}, {"name": "Altitude Film Entertainment", "id": 19638}, {"name": "Film House Germany", "id": 19639}, {"name": "Maven Pictures", "id": 19640}], "release_date": "2013-09-24", "popularity": 1.34051982408446, "original_title": "Filth", "budget": 5000000, "cast": [{"name": "James McAvoy", "character": "Bruce Robertson", "id": 5530, "credit_id": "52fe49649251416c910abe03", "cast_id": 1, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Imogen Poots", "character": "Amanda Drummond", "id": 17606, "credit_id": "52fe49649251416c910abe1f", "cast_id": 6, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Ray Lennox", "id": 478, "credit_id": "52fe49659251416c910abe23", "cast_id": 7, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Joanne Froggatt", "character": "Mary", "id": 130977, "credit_id": "52fe49659251416c910abe27", "cast_id": 8, "profile_path": "/zTNRujDs6GW6Jcx6CuDAOM07fnR.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "Bladesey", "id": 1665, "credit_id": "52fe49659251416c910abe2b", "cast_id": 9, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "Emun Elliott", "character": "Peter Inglis", "id": 228968, "credit_id": "52fe49659251416c910abe2f", "cast_id": 10, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "Dr. Rossi", "id": 388, "credit_id": "52fe49659251416c910abe33", "cast_id": 11, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Kate Dickie", "character": "Chrissie", "id": 71083, "credit_id": "52fe49659251416c910abe37", "cast_id": 12, "profile_path": "/nEcvqwrXakqhOX8fa3WZIhGAjA1.jpg", "order": 7}, {"name": "Shirley Henderson", "character": "Bunty", "id": 1834, "credit_id": "52fe49659251416c910abe3b", "cast_id": 13, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 8}, {"name": "Ron Donachie", "character": "Hector", "id": 63141, "credit_id": "52fe49659251416c910abe3f", "cast_id": 14, "profile_path": "/eYU99aaSs2D0EZXbRTn5oFo3kaG.jpg", "order": 9}, {"name": "Martin Compston", "character": "Gorman", "id": 16628, "credit_id": "52fe49659251416c910abe43", "cast_id": 15, "profile_path": "/blnHKosI1kurYcwULjC17d1M4sb.jpg", "order": 10}, {"name": "Iain De Caestecker", "character": "Ocky", "id": 956764, "credit_id": "52fe49659251416c910abe47", "cast_id": 16, "profile_path": "/poZ6RXNoKYiB5U0mBQjo1QK6IZV.jpg", "order": 11}, {"name": "David Soul", "character": "Punter", "id": 15956, "credit_id": "52fe49659251416c910abe4b", "cast_id": 17, "profile_path": "/5TIJLAM2zGTYyRaV62LCmWdum5F.jpg", "order": 12}, {"name": "Pollyanna McIntosh", "character": "Size Queen", "id": 92730, "credit_id": "52fe49659251416c910abe4f", "cast_id": 18, "profile_path": "/u1T42rrc26kGDfwmE6jCVtiH04v.jpg", "order": 13}, {"name": "Shauna Macdonald", "character": "Carole Robertson", "id": 57574, "credit_id": "52fe49659251416c910abe53", "cast_id": 19, "profile_path": "/9FInrBy6ngLURnncUCbWk3iLsJE.jpg", "order": 14}, {"name": "Gary Lewis", "character": "Gus Bain", "id": 480, "credit_id": "52fe49659251416c910abe57", "cast_id": 20, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 15}, {"name": "Natasha O'Keeffe", "character": "Anna", "id": 1167897, "credit_id": "52fe49659251416c910abe5b", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "John Sessions", "character": "Bob Toal", "id": 26860, "credit_id": "52fe49659251416c910abe5f", "cast_id": 22, "profile_path": "/oLBcHRhah5FxyodfZECIHCrROwG.jpg", "order": 17}, {"name": "Brian McCardie", "character": "Dougie Gillman", "id": 18280, "credit_id": "52fe49659251416c910abe63", "cast_id": 23, "profile_path": null, "order": 18}], "directors": [{"name": "Jon S. Baird", "department": "Directing", "job": "Director", "credit_id": "52fe49649251416c910abe09", "profile_path": null, "id": 76965}], "vote_average": 6.6, "runtime": 97}, "12163": {"poster_path": "/huooRmB7yksJyVVSkqOgitxlCec.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44703995, "overview": "Aging wrestler Randy \"The Ram\" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.", "video": false, "id": 12163, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Wrestler", "tagline": "Love. Pain. Glory.", "vote_count": 304, "homepage": "http://www.thewrestlermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1125849", "adult": false, "backdrop_path": "/5tMJqM3ecc0LxCoB3Y3uWYS3NK8.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Top Rope", "id": 7504}, {"name": "Saturn Films", "id": 831}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "2008-09-07", "popularity": 0.828144027001425, "original_title": "The Wrestler", "budget": 6000000, "cast": [{"name": "Mickey Rourke", "character": "Randy Robinson", "id": 2295, "credit_id": "52fe44c29251416c7503ff6d", "cast_id": 4, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Marisa Tomei", "character": "Cassidy", "id": 3141, "credit_id": "52fe44c29251416c7503ff69", "cast_id": 3, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 1}, {"name": "Evan Rachel Wood", "character": "Stephanie", "id": 38940, "credit_id": "52fe44c29251416c7503ff65", "cast_id": 2, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 2}, {"name": "Ajay Naidu", "character": "Medic", "id": 1982, "credit_id": "52fe44c29251416c7503ff71", "cast_id": 5, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 3}, {"name": "Judah Friedlander", "character": "Scott Brumberg", "id": 52860, "credit_id": "52fe44c29251416c7503ff75", "cast_id": 6, "profile_path": "/bsnVSqqK7DNWZNv6RRp2BPuKqxJ.jpg", "order": 4}, {"name": "Dylan Keith Summers", "character": "Necro Butcher", "id": 83213, "credit_id": "52fe44c29251416c7503ff79", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Mark Margolis", "character": "Lenny", "id": 1173, "credit_id": "52fe44c29251416c7503ff89", "cast_id": 10, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 6}, {"name": "Ernest Miller", "character": "The Ayatollah", "id": 1216224, "credit_id": "52fe44c29251416c7503ff93", "cast_id": 12, "profile_path": "/tDVGVnzUDPjl8UbHBb6zxqAysfc.jpg", "order": 7}, {"name": "Gregg Bello", "character": "JAPW Promoter Larry Cohen", "id": 122545, "credit_id": "538b251e0e0a26670e001a75", "cast_id": 24, "profile_path": "/eSgxPpUEe0hZcBxQEem3DWeq054.jpg", "order": 8}, {"name": "Donnetta Lavinia Grays", "character": "Jen", "id": 1326471, "credit_id": "538b25450e0a266705001a65", "cast_id": 25, "profile_path": "/peuSjJeTAR22ezu7MO2DREG0aUK.jpg", "order": 9}, {"name": "John D'Leo", "character": "Adam", "id": 1056523, "credit_id": "538b25a00e0a2667180019a2", "cast_id": 27, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 11}, {"name": "Armin Amiri", "character": "Dr. Moayedizadeh", "id": 1122855, "credit_id": "538b25d00e0a266705001a72", "cast_id": 28, "profile_path": null, "order": 12}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe44c29251416c7503ff61", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 7.0, "runtime": 109}, "3981": {"poster_path": "/xiL4PMdL2b5RRdsfEkGmaol2ScW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 374111707, "overview": "Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.", "video": false, "id": 3981, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "What Women Want", "tagline": "He has the power to hear everything women are thinking. Finally... a man is listening.", "vote_count": 271, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0207201", "adult": false, "backdrop_path": "/hUCf8nuuSjUwWlOmTVVPXJHl97v.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2000-12-14", "popularity": 0.558550668333252, "original_title": "What Women Want", "budget": 70000000, "cast": [{"name": "Helen Hunt", "character": "Darcy McGuire", "id": 9994, "credit_id": "52fe43aac3a36847f8066167", "cast_id": 16, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 0}, {"name": "Mel Gibson", "character": "Nick Marshall", "id": 2461, "credit_id": "52fe43aac3a36847f806616b", "cast_id": 17, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "Marisa Tomei", "character": "Lola", "id": 3141, "credit_id": "52fe43aac3a36847f806616f", "cast_id": 18, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 2}, {"name": "Lauren Holly", "character": "Gigi", "id": 34485, "credit_id": "52fe43aac3a36847f8066173", "cast_id": 19, "profile_path": "/pwenSL3M9vkbIrIvcZEb6mLJNeX.jpg", "order": 3}, {"name": "Mark Feuerstein", "character": "Morgan Farwell", "id": 11365, "credit_id": "52fe43aac3a36847f8066177", "cast_id": 20, "profile_path": "/jIYKKgr0pMUwuvajITsFSPv6ash.jpg", "order": 4}, {"name": "Alan Alda", "character": "Dan Wanamaker", "id": 21278, "credit_id": "52fe43aac3a36847f806617b", "cast_id": 21, "profile_path": "/oD90KjgrxkoD6c8B98JgoYmv3BG.jpg", "order": 5}, {"name": "Ashley Johnson", "character": "Alexandra Marshall", "id": 34486, "credit_id": "52fe43aac3a36847f806617f", "cast_id": 22, "profile_path": "/e4GJkGmRGvrqPG5jcTNHBCmL1x9.jpg", "order": 6}, {"name": "Delta Burke", "character": "Eve", "id": 34487, "credit_id": "52fe43aac3a36847f8066183", "cast_id": 23, "profile_path": "/8nBYWD7BB7rkISSDYYaCgd0duY3.jpg", "order": 7}, {"name": "Diana Maria Riva", "character": "Stella", "id": 34488, "credit_id": "52fe43aac3a36847f8066187", "cast_id": 24, "profile_path": "/pVK8NLnPyoGZ6eOHkSEZClqDx4I.jpg", "order": 8}, {"name": "Eric Balfour", "character": "Cameron", "id": 34489, "credit_id": "52fe43aac3a36847f806618b", "cast_id": 25, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 9}, {"name": "Judy Greer", "character": "Erin", "id": 20750, "credit_id": "52fe43aac3a36847f806618f", "cast_id": 26, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 10}, {"name": "Sarah Paulson", "character": "Annie", "id": 34490, "credit_id": "52fe43aac3a36847f8066193", "cast_id": 27, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 11}, {"name": "Bette Midler", "character": "Dr. J.M. Perkin", "id": 73931, "credit_id": "52fe43aac3a36847f8066197", "cast_id": 28, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 12}, {"name": "Logan Lerman", "character": "Young Nick Marshall", "id": 33235, "credit_id": "52fe43aac3a36847f80661b9", "cast_id": 34, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 13}, {"name": "Lisa Edelstein", "character": "Dina", "id": 41420, "credit_id": "53f774050e0a26419b006a3a", "cast_id": 35, "profile_path": "/pKwsvcm1Etgue4zZyBiNEh1Ngc3.jpg", "order": 14}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe43aac3a36847f806610f", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 5.8, "runtime": 127}, "44943": {"poster_path": "/pRVPNau3MIqyGn3QQI86pd2Pq1Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 202466756, "overview": "The Earth is attacked by unknown forces. As people everywhere watch the world's great cities fall, Los Angeles becomes the last stand for mankind in a battle no one expected. It's up to a Marine staff sergeant and his new platoon to draw a line in the sand as they take on an enemy unlike any they've ever encountered before.", "video": false, "id": 44943, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Battle: Los Angeles", "tagline": "It's not war. It's survival.", "vote_count": 679, "homepage": "http://www.battlela.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1217613", "adult": false, "backdrop_path": "/eBcjJY0o7GErxmm8SYpslvtjRyM.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}], "release_date": "2011-03-08", "popularity": 1.36940484153817, "original_title": "Battle: Los Angeles", "budget": 70000000, "cast": [{"name": "Aaron Eckhart", "character": "Michael Nantz", "id": 6383, "credit_id": "52fe46a5c3a36847f810a66f", "cast_id": 10, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "William Martinez", "id": 72985, "credit_id": "52fe46a5c3a36847f810a677", "cast_id": 12, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 1}, {"name": "Will Rothhaar", "character": "Cpl. Lee Imlay", "id": 149484, "credit_id": "52fe46a5c3a36847f810a6d5", "cast_id": 33, "profile_path": "/oigxlX2GoRu50q0u6CNwNhfjvyB.jpg", "order": 2}, {"name": "Cory Hardrict", "character": "Cpl. Jason Lockett", "id": 74302, "credit_id": "52fe46a5c3a36847f810a6d9", "cast_id": 34, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 3}, {"name": "Jim Parrack", "character": "Peter Kerns", "id": 83968, "credit_id": "52fe46a5c3a36847f810a683", "cast_id": 16, "profile_path": "/7ATHioOgrx9og5WO3d0AWnQu4Uo.jpg", "order": 4}, {"name": "Gino Anthony Pesi", "character": "Cpl. Nick Stavrou", "id": 150664, "credit_id": "52fe46a5c3a36847f810a6bf", "cast_id": 29, "profile_path": "/4Ai4t02qQfC5XhvcL3u7Th7lW2o.jpg", "order": 5}, {"name": "Ne-Yo", "character": "Kevin Harris", "id": 31133, "credit_id": "52fe46a5c3a36847f810a67f", "cast_id": 14, "profile_path": "/hW6gsMtAsVeF7lHWRb4nct8ww08.jpg", "order": 6}, {"name": "James Hiroyuki Liao", "character": "Steven Mottola", "id": 58330, "credit_id": "52fe46a5c3a36847f810a687", "cast_id": 17, "profile_path": "/efnKaLlUr8wRSGAsDdGa4yrbXqj.jpg", "order": 7}, {"name": "Bridget Moynahan", "character": "Michelle", "id": 18354, "credit_id": "52fe46a5c3a36847f810a67b", "cast_id": 13, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 8}, {"name": "Noel Fisher", "character": "Pfc. Shaun Lenihan", "id": 80352, "credit_id": "52fe46a5c3a36847f810a6dd", "cast_id": 35, "profile_path": "/57rdFE8AZnhWhwH28QXpeXFhUgB.jpg", "order": 9}, {"name": "Adetokumboh M'Cormack", "character": "Corpsman Jibril Adukwu", "id": 208096, "credit_id": "52fe46a5c3a36847f810a6bb", "cast_id": 28, "profile_path": "/eK4lnmoMDFdKsiSsBoetgOiPlXF.jpg", "order": 10}, {"name": "Bryce Cass", "character": "Hector Rincon", "id": 145539, "credit_id": "52fe46a5c3a36847f810a6b7", "cast_id": 27, "profile_path": "/h6fRXyEqYmyvVLWNF0YhvowAnHp.jpg", "order": 11}, {"name": "Michael Pe\u00f1a", "character": "Joe Rincon", "id": 454, "credit_id": "52fe46a5c3a36847f810a6b3", "cast_id": 26, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 12}, {"name": "Michelle Rodriguez", "character": "Elena Santos", "id": 17647, "credit_id": "52fe46a5c3a36847f810a673", "cast_id": 11, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 13}, {"name": "Joey King", "character": "Kirsten", "id": 125025, "credit_id": "52fe46a5c3a36847f810a68b", "cast_id": 19, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 14}, {"name": "Neil Brown Jr.", "character": "LCpl. Richard Guerrero", "id": 55091, "credit_id": "52fe46a5c3a36847f810a6e1", "cast_id": 36, "profile_path": "/mv2DgT9RABBYCxOY4ZHYalYBiUt.jpg", "order": 15}, {"name": "Taylor Handley", "character": "LCpl. Corey Simmons", "id": 66741, "credit_id": "52fe46a5c3a36847f810a6e5", "cast_id": 37, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 16}, {"name": "Lucas Till", "character": "Cpl. Scott Grayston", "id": 429, "credit_id": "52fe46a5c3a36847f810a6e9", "cast_id": 38, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 17}, {"name": "Kenneth Brown Jr.", "character": "Cpl. Richard Oswald", "id": 1088041, "credit_id": "52fe46a5c3a36847f810a6ed", "cast_id": 39, "profile_path": "/kGGEedmcWvH1EpjyqEimH9pEgYn.jpg", "order": 18}, {"name": "Jadin Gould", "character": "Amy", "id": 213049, "credit_id": "52fe46a5c3a36847f810a6f1", "cast_id": 40, "profile_path": "/xC07rBx6DTXzclGMy7fOzYM2Q6S.jpg", "order": 19}, {"name": "Joe Chrest", "character": "1st Sgt. John Roy", "id": 141762, "credit_id": "52fe46a5c3a36847f810a6f5", "cast_id": 41, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 20}, {"name": "E. Roger Mitchell", "character": "Company Captain", "id": 41020, "credit_id": "52fe46a5c3a36847f810a6f9", "cast_id": 42, "profile_path": "/xRK7BDFGrwKWvA8sFkyGShWav3y.jpg", "order": 21}, {"name": "Rus Blackwell", "character": "Lt. Col. K.N. Ritchie", "id": 52483, "credit_id": "52fe46a5c3a36847f810a6fd", "cast_id": 43, "profile_path": "/xYMkiZQuoramEeabUPnrtiS19vn.jpg", "order": 22}, {"name": "Susie Abromeit", "character": "Amanda", "id": 108696, "credit_id": "52fe46a5c3a36847f810a701", "cast_id": 44, "profile_path": "/cQt1gS5hSxIdR1MYUDHRV0Oq3fq.jpg", "order": 23}, {"name": "Brandi Coleman", "character": "Cherise", "id": 86271, "credit_id": "52fe46a5c3a36847f810a705", "cast_id": 45, "profile_path": "/zGxT5vYR90UGUtob2iNxkOQeHqx.jpg", "order": 24}, {"name": "Elizabeth Keener", "character": "Kathy Martinez", "id": 173879, "credit_id": "52fe46a5c3a36847f810a709", "cast_id": 46, "profile_path": "/kmeRtzUceHuwU7P3o4hslkpexzB.jpg", "order": 25}, {"name": "Jessica Heap", "character": "Jessy", "id": 450660, "credit_id": "52fe46a5c3a36847f810a70d", "cast_id": 47, "profile_path": "/94elhWDJbJJ11DhRHPXAzArTlZU.jpg", "order": 26}, {"name": "David Jensen", "character": "Psychiatrist", "id": 60875, "credit_id": "52fe46a5c3a36847f810a711", "cast_id": 48, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 27}, {"name": "Stacey Turner", "character": "Reporter on TV", "id": 1091772, "credit_id": "52fe46a5c3a36847f810a715", "cast_id": 49, "profile_path": "/w85Oa3vWCD26TvOIU8T5lUmWUla.jpg", "order": 28}, {"name": "Tom Hillmann", "character": "Reporter on TV", "id": 200406, "credit_id": "52fe46a5c3a36847f810a719", "cast_id": 50, "profile_path": "/ddusYsjrekFXMJhm39JbVBSYKVM.jpg", "order": 29}, {"name": "Lena Clark", "character": "Chris", "id": 1153536, "credit_id": "52fe46a5c3a36847f810a71d", "cast_id": 51, "profile_path": "/cuM28MFwzkYdaDbuylGVdIYNV0H.jpg", "order": 30}, {"name": "Jamie Norwood", "character": "Flower Shop Employee", "id": 1205869, "credit_id": "52fe46a5c3a36847f810a721", "cast_id": 52, "profile_path": "/bjcmxnND9ZmLCTQbl99VZlvJID6.jpg", "order": 31}, {"name": "Todd Cochran", "character": "Command Hangar Marine", "id": 1205870, "credit_id": "52fe46a5c3a36847f810a725", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Nzinga Blake", "character": "Adukwu's Sister", "id": 989249, "credit_id": "53111b4a925141102a0015c5", "cast_id": 82, "profile_path": "/vjG6cSfQ8gqEbjAa1AU3zlPajOI.jpg", "order": 33}, {"name": "Taryn Southern", "character": "Reporter on Beach", "id": 443219, "credit_id": "52fe46a5c3a36847f810a729", "cast_id": 54, "profile_path": "/wJ62ykHpr1uCFd0kgpyvUkaqwpZ.jpg", "order": 34}, {"name": "James D. Dever", "character": "Sgt. Major", "id": 1205880, "credit_id": "52fe46a5c3a36847f810a72d", "cast_id": 55, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 35}, {"name": "Alex Aristidis", "character": "Beach Goer (uncredited)", "id": 1205881, "credit_id": "52fe46a5c3a36847f810a731", "cast_id": 56, "profile_path": "/szNg9vupjQrZ17iWOUyh2S1wpdU.jpg", "order": 36}, {"name": "Charlotte Biggs", "character": "Emergency Medical Tech. (uncredited)", "id": 1205883, "credit_id": "52fe46a5c3a36847f810a735", "cast_id": 57, "profile_path": "/xawHdIDus0pP8r0cnVaMXTLrT7R.jpg", "order": 37}, {"name": "Ava Bogle", "character": "Beach Girl 1 (uncredited)", "id": 1110282, "credit_id": "52fe46a5c3a36847f810a739", "cast_id": 58, "profile_path": "/czziAJgTKPCrQQceRX3rKnOM2WO.jpg", "order": 38}, {"name": "Beau Brasseaux", "character": "Marine (uncredited)", "id": 1045389, "credit_id": "52fe46a5c3a36847f810a73d", "cast_id": 59, "profile_path": "/rjq0owMKGlvWKyyK0araKEWlfoa.jpg", "order": 39}, {"name": "Dane Brown", "character": "Firefighter (uncredited)", "id": 1205884, "credit_id": "52fe46a6c3a36847f810a741", "cast_id": 60, "profile_path": null, "order": 40}, {"name": "Grant Case", "character": "Marine (uncredited)", "id": 1205885, "credit_id": "52fe46a6c3a36847f810a745", "cast_id": 61, "profile_path": "/9pfYKv0Z3N8UXzdHONYIdHyNnrW.jpg", "order": 41}, {"name": "Kurt Deville", "character": "Marine (uncredited)", "id": 1205886, "credit_id": "52fe46a6c3a36847f810a749", "cast_id": 62, "profile_path": "/c4pVKevagndHfbXinBRrgp9xsDH.jpg", "order": 42}, {"name": "Joshua Farcone", "character": "Dead Civilian (uncredited)", "id": 1205887, "credit_id": "52fe46a6c3a36847f810a74d", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Alex Froman", "character": "Marine (uncredited)", "id": 1205888, "credit_id": "52fe46a6c3a36847f810a751", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Zander Gerhardt", "character": "Dead Civilian (uncredited)", "id": 1205889, "credit_id": "52fe46a6c3a36847f810a755", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Emily D. Haley", "character": "Citizen / Dead Citizen (uncredited)", "id": 1037370, "credit_id": "52fe46a6c3a36847f810a759", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "Nick Jones Jr.", "character": "Marine (uncredited)", "id": 1114412, "credit_id": "52fe46a6c3a36847f810a75d", "cast_id": 67, "profile_path": "/7Mu34xO7H5mujrOs18DC1xA1LG4.jpg", "order": 47}, {"name": "Philip Lawrence", "character": "U.S. Marine (uncredited)", "id": 1205894, "credit_id": "52fe46a6c3a36847f810a761", "cast_id": 68, "profile_path": "/6wrLIHXcpqNXBKmoXEqp5lpx945.jpg", "order": 48}, {"name": "Tony Mccullough", "character": "LAPD Officer Boggs (uncredited)", "id": 1205895, "credit_id": "52fe46a6c3a36847f810a765", "cast_id": 69, "profile_path": null, "order": 49}, {"name": "Keith Middlebrook", "character": "Steve Johinson (uncredited)", "id": 118755, "credit_id": "52fe46a6c3a36847f810a769", "cast_id": 70, "profile_path": "/5Qg9QNOdY1bCSAuZCC94DKd5PK9.jpg", "order": 50}, {"name": "Courtney Munch", "character": "Marine Crew Chief (uncredited)", "id": 1205900, "credit_id": "52fe46a6c3a36847f810a76d", "cast_id": 71, "profile_path": "/um5AzVKTEto9JL922fS1C0x39h3.jpg", "order": 51}, {"name": "Gustavo I. Ortiz", "character": "Doctor Running Away (uncredited)", "id": 1205901, "credit_id": "52fe46a6c3a36847f810a771", "cast_id": 72, "profile_path": "/2YvVOmqpopUcyyVTrpSTVXFLsFY.jpg", "order": 52}, {"name": "Jim Palmer", "character": "Crew Chief (uncredited)", "id": 9568, "credit_id": "52fe46a6c3a36847f810a775", "cast_id": 73, "profile_path": "/3jCBSmYtDHs2u6ugFENa52SC9HT.jpg", "order": 53}, {"name": "Michelle Pierce", "character": "Shelly (uncredited)", "id": 205011, "credit_id": "52fe46a6c3a36847f810a779", "cast_id": 74, "profile_path": "/iytCPpTXET1pxuIxDTalXsfZxCO.jpg", "order": 54}, {"name": "Philippe Radelet", "character": "Civilian (uncredited)", "id": 1205902, "credit_id": "52fe46a6c3a36847f810a77d", "cast_id": 75, "profile_path": "/72ZHmnyPoofeUbubZXSdCfnlvq1.jpg", "order": 55}, {"name": "Lawanda Smith", "character": "Civilian (uncredited)", "id": 1205903, "credit_id": "52fe46a6c3a36847f810a781", "cast_id": 76, "profile_path": null, "order": 56}, {"name": "David Speed", "character": "Gary (uncredited)", "id": 1205904, "credit_id": "52fe46a6c3a36847f810a785", "cast_id": 77, "profile_path": "/gdTVQOd3estJJn2LZp3T5iXwGPB.jpg", "order": 57}, {"name": "Peyton Whitcomb", "character": "Extra (uncredited)", "id": 1205905, "credit_id": "52fe46a6c3a36847f810a789", "cast_id": 78, "profile_path": null, "order": 58}, {"name": "Michael Wozniak", "character": "Beach Dude (uncredited)", "id": 1205906, "credit_id": "52fe46a6c3a36847f810a78d", "cast_id": 79, "profile_path": "/aqPTnAB2mlWyrepb3dKyMCzgYeE.jpg", "order": 59}, {"name": "Marlon Young", "character": "Sergeant Major (uncredited)", "id": 167109, "credit_id": "52fe46a6c3a36847f810a791", "cast_id": 80, "profile_path": "/8c4pFoyw0Pbh6Xzfr58NI0sGAwQ.jpg", "order": 60}, {"name": "Lynette Zumo", "character": "Dead Civilian (uncredited)", "id": 1205907, "credit_id": "52fe46a6c3a36847f810a795", "cast_id": 81, "profile_path": null, "order": 61}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe46a5c3a36847f810a665", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 5.5, "runtime": 116}, "44945": {"poster_path": "/6mOwP2MYyN3H0TfHAWjc7Ro0ssg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 120000, "overview": "A man (Clive Owen) has difficulty coping with the knowledge that his 14-year-daughter (Liana Liberato) was assaulted by a sexual predator she met in an online chat room.", "video": false, "id": 44945, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Trust", "tagline": "What took her family years to build, a stranger stole in an instant.", "vote_count": 65, "homepage": "http://www.trustmovie2011.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1529572", "adult": false, "backdrop_path": "/zoaYrsrxc4Y1zOloOHbaxrLE1Xf.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}], "release_date": "2010-09-10", "popularity": 0.870702392221056, "original_title": "Trust", "budget": 9500000, "cast": [{"name": "Clive Owen", "character": "Will Cameron", "id": 2296, "credit_id": "52fe46a6c3a36847f810a8cb", "cast_id": 32, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Chris Henry Coffey", "character": "Charlie / Glen Weston", "id": 150433, "credit_id": "52fe46a6c3a36847f810a8b7", "cast_id": 27, "profile_path": "/r5auQm0vZK5rvcaxP8U1OhUQSz2.jpg", "order": 1}, {"name": "Liana Liberato", "character": "Annie Cameron", "id": 60458, "credit_id": "52fe46a6c3a36847f810a8bb", "cast_id": 28, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 2}, {"name": "Noah Emmerich", "character": "", "id": 11315, "credit_id": "52fe46a6c3a36847f810a8bf", "cast_id": 29, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 3}, {"name": "Viola Davis", "character": "Gail", "id": 19492, "credit_id": "52fe46a6c3a36847f810a8c3", "cast_id": 30, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 4}, {"name": "Catherine Keener", "character": "Lynn Cameron", "id": 2229, "credit_id": "52fe46a6c3a36847f810a8c7", "cast_id": 31, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Jason Clarke", "character": "Doug Tate", "id": 76512, "credit_id": "52fe46a6c3a36847f810a8cf", "cast_id": 33, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 6}, {"name": "Zoe Levin", "character": "Brittany", "id": 1190917, "credit_id": "52fe46a6c3a36847f810a8d3", "cast_id": 34, "profile_path": "/uhJnIakHRrW30r1H8ljVUiTWR4E.jpg", "order": 7}], "directors": [{"name": "David Schwimmer", "department": "Directing", "job": "Director", "credit_id": "52fe46a6c3a36847f810a847", "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "id": 14409}], "vote_average": 6.0, "runtime": 104}, "12180": {"poster_path": "/xd6yhmtS6mEURZLwUDT5raEMbf.jpg", "production_countries": [{"iso_3166_1": "SG", "name": "Singapore"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35154336, "overview": "Set between Episode II and III the Clone Wars is the first computer animated Star Wars film. Anakin and Obi Wan must find out who kidnapped Jabba the Hutts son and return him safely. The Seperatists will try anything to stop them and ruin any chance of a diplomatic agreement between the Hutt's and the Republic.", "video": false, "id": 12180, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Star Wars: The Clone Wars", "tagline": "", "vote_count": 105, "homepage": "http://www.starwars.com/clonewars/site/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1185834", "adult": false, "backdrop_path": "/gmLMaDXi4lFWG8WitaCYOJS5GtL.jpg", "production_companies": [{"name": "Lucasfilm", "id": 1}], "release_date": "2008-08-05", "popularity": 1.03524573611133, "original_title": "Star Wars: The Clone Wars", "budget": 8500000, "cast": [{"name": "Samuel L. Jackson", "character": "Mace Windu (voice)", "id": 2231, "credit_id": "52fe44c59251416c7504057f", "cast_id": 1, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Christopher Lee", "character": "Count Dooku (voice)", "id": 113, "credit_id": "52fe44c59251416c75040583", "cast_id": 2, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 1}, {"name": "Anthony Daniels", "character": "C-3PO (voice)", "id": 6, "credit_id": "52fe44c59251416c75040587", "cast_id": 3, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 2}, {"name": "Matt Lanter", "character": "Anakin Skywalker (voice)", "id": 34202, "credit_id": "52fe44c59251416c7504058f", "cast_id": 6, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 3}, {"name": "Tom Kane", "character": "Yoda (voice)", "id": 71535, "credit_id": "52fe44c59251416c7504058b", "cast_id": 4, "profile_path": "/hAyEHNuhD6PqbPdCNR7iUyM271I.jpg", "order": 4}, {"name": "Matthew Wood", "character": "General Grievous (voice)", "id": 71536, "credit_id": "52fe44c59251416c75040597", "cast_id": 8, "profile_path": "/oB9wVbEIg8fjY3ulDKjKsGn2A55.jpg", "order": 6}, {"name": "Ian Abercrombie", "character": "Palpatine (voice)", "id": 11764, "credit_id": "52fe44c59251416c75040593", "cast_id": 7, "profile_path": "/qci9vBTZJXQNLIFpCtIpXU881g8.jpg", "order": 7}, {"name": "Nika Futterman", "character": "Asajj Ventress (voice)", "id": 52698, "credit_id": "52fe44c59251416c7504059b", "cast_id": 9, "profile_path": "/xHBt7N6YVvfgQJuWAJ74xLKF9Dr.jpg", "order": 8}, {"name": "Ashley Eckstein", "character": "Ahsoka Tano (voice)", "id": 41345, "credit_id": "52fe44c59251416c750405c9", "cast_id": 18, "profile_path": "/aEAQPWFv2mlH2Pp9TPJMfIDnIOJ.jpg", "order": 9}], "directors": [{"name": "Dave Filoni", "department": "Directing", "job": "Director", "credit_id": "52fe44c59251416c750405ad", "profile_path": "/1m7ijGgs29Emn3Sj08c1GwGTUm0.jpg", "id": 71538}], "vote_average": 6.0, "runtime": 98}, "3989": {"poster_path": "/crkPGNm0M19LHp8I5mhs75EqhSH.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50907422, "overview": "Team America World Police follows an international police force dedicated to maintaining global stability. Learning that dictator Kim Jong il is out to destroy the world, the team recruits Broadway star Gary Johnston to go undercover. With the help of Team America, Gary manages to uncover the plan to destroy the world. Will Team America be able to save it in time? It stars\u2026 Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glover, Ethan Hawke, Alec Baldwin\u2026 or does it?", "video": false, "id": 3989, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Team America: World Police", "tagline": "Putting The 'F' back in 'Freedom'", "vote_count": 131, "homepage": "http://www.teamamerica.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0372588", "adult": false, "backdrop_path": "/c6Z0E5IYNXSslBxSWX7Q1xUvthJ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2004-10-11", "popularity": 0.682510964451031, "original_title": "Team America: World Police", "budget": 32000000, "cast": [{"name": "Trey Parker", "character": "Gary Johnston (voice) / Joe (voice) / Kim Jong Il (voice) / Hans Blix (voice) / Carson (voice) / Matt Damon (voice) / Drunk in Bar (voice) / Tim Robbins (voice) / Sean Penn (voice) / Michael Moore (voice) / Helen Hunt (voice) / Susan Sarandon (voice) / Others (voice)", "id": 34517, "credit_id": "52fe43abc3a36847f80665f9", "cast_id": 4, "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "order": 0}, {"name": "Matt Stone", "character": "Chris (voice) / George Clooney (voice) / Danny Glover (voice) / Ethan Hawke (voice) / Others (voice)", "id": 34518, "credit_id": "52fe43abc3a36847f80665fd", "cast_id": 15, "profile_path": "/fENM2HlxKgMe81OTTgert1Q55pj.jpg", "order": 1}, {"name": "Kristen Miller", "character": "Lisa (voice)", "id": 34519, "credit_id": "52fe43abc3a36847f8066601", "cast_id": 19, "profile_path": "/ktFY5yObT4c57DuyEhsZoCOyrvo.jpg", "order": 2}, {"name": "Masasa Moyo", "character": "Sarah (voice)", "id": 34520, "credit_id": "52fe43abc3a36847f8066605", "cast_id": 20, "profile_path": "/kyghWHugRBGhyNEu5ne7p5INu3s.jpg", "order": 3}, {"name": "Daran Norris", "character": "Spottswoode (voice)", "id": 31162, "credit_id": "52fe43abc3a36847f8066609", "cast_id": 21, "profile_path": "/8sSi35l8BkWIbTaJcgmW2VFAgTz.jpg", "order": 4}, {"name": "Maurice LaMarche", "character": "Alec Baldwin (voice)", "id": 34521, "credit_id": "52fe43abc3a36847f806660d", "cast_id": 22, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 5}], "directors": [{"name": "Trey Parker", "department": "Directing", "job": "Director", "credit_id": "52fe43abc3a36847f80665e9", "profile_path": "/qXLTxMTfX15od88WHpBZz6xURR0.jpg", "id": 34517}], "vote_average": 6.4, "runtime": 98}, "12182": {"poster_path": "/pM199sJFY0MQo5IcfUFWmAZUlt7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32973937, "overview": "Attempting to avoid his obsession over a girl he just lost, a boy enlists the help of a stranger, another girl who leads him on a romantic escapade through the after-hours club scene in Manhattan. Though the girl is as lost and heartbroken over a love affair as the boy, miracles happen, idols crumble and the \"strangers\" find real love through each other.", "video": false, "id": 12182, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Nick and Norah's Infinite Playlist", "tagline": "Every night has a soundtrack.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0981227", "adult": false, "backdrop_path": "/z2rK9aU6rb4vYVkG5vdwCuUlWJc.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Columbia Pictures", "id": 5}, {"name": "Mandate Pictures", "id": 771}, {"name": "Depth of Field", "id": 1473}], "release_date": "2008-10-03", "popularity": 0.239798962619842, "original_title": "Nick and Norah's Infinite Playlist", "budget": 9000000, "cast": [{"name": "Michael Cera", "character": "Nick", "id": 39995, "credit_id": "52fe44c59251416c7504065f", "cast_id": 5, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 0}, {"name": "Kat Dennings", "character": "Norah", "id": 52852, "credit_id": "52fe44c59251416c75040663", "cast_id": 6, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 1}, {"name": "Aaron Yoo", "character": "Thom", "id": 54247, "credit_id": "52fe44c59251416c75040667", "cast_id": 7, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 2}, {"name": "Alexis Dziena", "character": "Tris", "id": 4433, "credit_id": "52fe44c59251416c7504066b", "cast_id": 8, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 3}, {"name": "Ari Graynor", "character": "Caroline", "id": 71552, "credit_id": "52fe44c59251416c7504066f", "cast_id": 9, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 4}, {"name": "Cassidy Gard", "character": "Hipster", "id": 71553, "credit_id": "52fe44c59251416c75040673", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Jonathan B. Wright", "character": "Lethariot", "id": 71554, "credit_id": "52fe44c59251416c75040677", "cast_id": 11, "profile_path": "/jAeOOEvIupm2xNDLSS4XM6fDj7A.jpg", "order": 6}, {"name": "Jay Baruchel", "character": "Tal", "id": 449, "credit_id": "52fe44c59251416c7504068d", "cast_id": 15, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 7}, {"name": "Rafi Gavron", "character": "Dev", "id": 21660, "credit_id": "52fe44c69251416c750406d3", "cast_id": 27, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 8}, {"name": "Zachary Booth", "character": "Gary", "id": 205854, "credit_id": "52fe44c69251416c750406d7", "cast_id": 28, "profile_path": "/v5gQp2tJhtrGwaRI1SFcdIxfCEe.jpg", "order": 9}], "directors": [{"name": "Peter Sollett", "department": "Directing", "job": "Director", "credit_id": "52fe44c59251416c75040649", "profile_path": "/tEojdG6dKBEdDpflZ4QnTfREEUv.jpg", "id": 71548}], "vote_average": 6.3, "runtime": 90}, "12184": {"poster_path": "/s0hrzj5GzGdvvqdyoKwt44eiZHd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.", "video": false, "id": 12184, "genres": [{"id": 18, "name": "Drama"}], "title": "The Other Boleyn Girl", "tagline": "Two sisters divided for the love for a king.", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0467200", "adult": false, "backdrop_path": "/zEHZLuo6ZJAHuQosrLpALUelvh5.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}, {"name": "Columbia Pictures", "id": 5}, {"name": "Focus Features", "id": 10146}, {"name": "BBC Films", "id": 288}, {"name": "Relativity Media", "id": 7295}, {"name": "Ruby Films", "id": 2054}], "release_date": "2008-02-28", "popularity": 1.07335959389139, "original_title": "The Other Boleyn Girl", "budget": 35000000, "cast": [{"name": "Natalie Portman", "character": "Anne Boleyn", "id": 524, "credit_id": "52fe44c69251416c750408af", "cast_id": 17, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Mary Boleyn", "id": 1245, "credit_id": "52fe44c69251416c750408cb", "cast_id": 22, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Eric Bana", "character": "Henry Tudor", "id": 8783, "credit_id": "52fe44c69251416c750408cf", "cast_id": 23, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 2}, {"name": "Jim Sturgess", "character": "George Boleyn", "id": 38941, "credit_id": "52fe44c79251416c750408d3", "cast_id": 24, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 3}, {"name": "Kristin Scott Thomas", "character": "Lady Elizabeth Boleyn", "id": 5470, "credit_id": "52fe44c79251416c750408db", "cast_id": 26, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 4}, {"name": "Mark Rylance", "character": "Sir Thomas Boleyn", "id": 40900, "credit_id": "52fe44c79251416c750408d7", "cast_id": 25, "profile_path": "/5XrQYvdYqiGUepbgmRQfOltgBRJ.jpg", "order": 5}, {"name": "David Morrissey", "character": "Thomas Howard - Duke of Norfolk", "id": 18616, "credit_id": "52fe44c79251416c750408df", "cast_id": 27, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 6}, {"name": "Ana Torrent", "character": "Katherine of Aragon", "id": 24976, "credit_id": "52fe44c79251416c750408e3", "cast_id": 28, "profile_path": "/xIpRwiCl2xAp2R3i9jV10ZfW2kC.jpg", "order": 7}, {"name": "Eddie Redmayne", "character": "William Stafford", "id": 37632, "credit_id": "52fe44c79251416c750408e7", "cast_id": 29, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 8}, {"name": "Benedict Cumberbatch", "character": "William Carey", "id": 71580, "credit_id": "52fe44c79251416c750408f7", "cast_id": 33, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 9}, {"name": "Oliver Coleman", "character": "Henry Percy", "id": 71581, "credit_id": "52fe44c79251416c750408fb", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Juno Temple", "character": "Jane Parker", "id": 36594, "credit_id": "52fe44c79251416c750408ef", "cast_id": 31, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 11}, {"name": "Andrew Garfield", "character": "Francis Weston", "id": 37625, "credit_id": "52fe44c79251416c75040907", "cast_id": 37, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 12}, {"name": "Iain Mitchell", "character": "Thomas Cromwell", "id": 71584, "credit_id": "52fe44c79251416c75040903", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Michael Smiley", "character": "Physician", "id": 17078, "credit_id": "52fe44c79251416c750408eb", "cast_id": 30, "profile_path": "/muzJQpsKJ4srfVpyRa7qkrRYWSq.jpg", "order": 14}, {"name": "Tom Cox", "character": "Rider", "id": 71582, "credit_id": "52fe44c79251416c750408f3", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Lewis Jones", "character": "Brandon Mark", "id": 71585, "credit_id": "52fe44c79251416c7504090b", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Montserrat Roig de Puig", "character": "Lady in Waiting", "id": 71583, "credit_id": "52fe44c79251416c750408ff", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Alfie Allen", "character": "King's Messenger", "id": 71586, "credit_id": "52fe44c79251416c7504090f", "cast_id": 39, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 18}, {"name": "Corinne Galloway", "character": "Jane Seymour", "id": 71587, "credit_id": "52fe44c79251416c75040913", "cast_id": 40, "profile_path": null, "order": 19}], "directors": [{"name": "Justin Chadwick", "department": "Directing", "job": "Director", "credit_id": "52fe44c69251416c75040857", "profile_path": "/8jhsQAwccFClH4gEYd4Hlbig31I.jpg", "id": 71570}], "vote_average": 6.2, "runtime": 115}, "12193": {"poster_path": "/ybEq3gB5lxPwLRwpbZhAwRyziQx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Brad and Kate have made something of an art form out of avoiding their families during the holidays, but this year their foolproof plan is about go bust -- big time. Stuck at the city airport after all departing flights are canceled, the couple is embarrassed to see their ruse exposed to the world by an overzealous television reporter. Now, Brad and Kate are left with precious little choice other than to swallow their pride and suffer the rounds.", "video": false, "id": 12193, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Four Christmases", "tagline": "His father, her mother, his mother and her father all in one day.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369436", "adult": false, "backdrop_path": "/ivPjf1kbWYAeuV0x6y8mAi824g4.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Type A Films", "id": 2308}, {"name": "Ott Medien", "id": 2795}, {"name": "Wild West Picture Show Productions", "id": 2796}], "release_date": "2008-11-26", "popularity": 0.777398644590853, "original_title": "Four Christmases", "budget": 80000000, "cast": [{"name": "Reese Witherspoon", "character": "Kate", "id": 368, "credit_id": "52fe44c89251416c75040bb3", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Vince Vaughn", "character": "Brad", "id": 4937, "credit_id": "52fe44c89251416c75040bb7", "cast_id": 2, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Robert Duvall", "character": "Howard", "id": 3087, "credit_id": "52fe44c89251416c75040bbb", "cast_id": 3, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 2}, {"name": "Mary Steenburgen", "character": "Kate's Mom", "id": 2453, "credit_id": "52fe44c89251416c75040bbf", "cast_id": 4, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 3}, {"name": "Dwight Yoakam", "character": "Pastor Phil", "id": 20309, "credit_id": "52fe44c89251416c75040bc3", "cast_id": 5, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 4}, {"name": "Sissy Spacek", "character": "Paula", "id": 5606, "credit_id": "52fe44c89251416c75040c1b", "cast_id": 20, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 5}, {"name": "Jon Voight", "character": "Creighton", "id": 10127, "credit_id": "52fe44c89251416c75040c1f", "cast_id": 21, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 6}, {"name": "Jon Favreau", "character": "Denver", "id": 15277, "credit_id": "52fe44c89251416c75040c23", "cast_id": 22, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 7}, {"name": "Tim McGraw", "character": "Dallas", "id": 74428, "credit_id": "52fe44c89251416c75040c27", "cast_id": 23, "profile_path": "/lotQwKKAUe3hI4EnmMySNpJGKGO.jpg", "order": 8}, {"name": "Kristin Chenoweth", "character": "Courtney", "id": 52775, "credit_id": "52fe44c89251416c75040c2b", "cast_id": 24, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 9}, {"name": "Katy Mixon", "character": "Susan", "id": 59450, "credit_id": "52fe44c89251416c75040c2f", "cast_id": 25, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 10}, {"name": "Colleen Camp", "character": "Aunt Donna", "id": 13023, "credit_id": "52fe44c89251416c75040c33", "cast_id": 26, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 11}, {"name": "Jeanette Miller", "character": "Gram-Gram", "id": 58929, "credit_id": "52fe44c89251416c75040c37", "cast_id": 27, "profile_path": "/mpWlUmcibBwYRGZSYn1jY8Ot5Ne.jpg", "order": 12}], "directors": [{"name": "Seth Gordon", "department": "Directing", "job": "Director", "credit_id": "52fe44c89251416c75040bc9", "profile_path": "/gstUEbopSacaQTpxYjfSwz0gzLl.jpg", "id": 71600}], "vote_average": 5.3, "runtime": 88}, "8859": {"poster_path": "/3KoZiWlgvmeDYiLk9oOMpEvZThb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73180723, "overview": "Jesse and Chester, two bumbling stoners, wake up one morning from a night of partying and cannot remember where they parked their car. They encounter a variety of people while looking for it, including their angry girlfriends, an angry street gang, a transexual stripper, a cult of alien seeking fanatics, and aliens in human form looking for a mystical device that could save or destroy the world.", "video": false, "id": 8859, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dude, Where\u2019s My Car?", "tagline": "After a night they can't remember, comes a day they'll never forget.", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0242423", "adult": false, "backdrop_path": "/i27vFixWQzSGfMcUjXYziyxWLI5.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Alcon Entertainment", "id": 1088}], "release_date": "2000-12-15", "popularity": 1.14376759608434, "original_title": "Dude, Where\u2019s My Car?", "budget": 13000000, "cast": [{"name": "Ashton Kutcher", "character": "Jesse", "id": 18976, "credit_id": "52fe44c1c3a36847f80a831b", "cast_id": 1, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Chester", "id": 57599, "credit_id": "52fe44c1c3a36847f80a8327", "cast_id": 4, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Kristy Swanson", "character": "Christie Boner", "id": 56128, "credit_id": "52fe44c1c3a36847f80a831f", "cast_id": 2, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 2}, {"name": "Jennifer Garner", "character": "Wanda", "id": 9278, "credit_id": "52fe44c1c3a36847f80a8323", "cast_id": 3, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 3}, {"name": "Marla Sokoloff", "character": "Wilma", "id": 80109, "credit_id": "52fe44c1c3a36847f80a834f", "cast_id": 11, "profile_path": "/t1AqyY4woqhVdixPj2bcfrUd7s5.jpg", "order": 4}], "directors": [{"name": "Danny Leiner", "department": "Directing", "job": "Director", "credit_id": "52fe44c1c3a36847f80a832d", "profile_path": "/baaonHW8JdQXyuQJODB0UvQfTAi.jpg", "id": 56591}], "vote_average": 5.4, "runtime": 83}, "12201": {"poster_path": "/u3kUkeKziARwvKFlWo6ZBYnaCpG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74901339, "overview": "As a seasoned homicide detective, Thomas Craven has seen the bleakest side of humanity. But nothing prepares him for the toughest investigation of his life: the search for his only daughter Emma's killer. Now, he is on a personal mission to uncover the disturbing secrets surrounding her murder, including corporate corruption, government collusion and Emma's own mysterious life.", "video": false, "id": 12201, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Edge of Darkness", "tagline": "Some secrets take us to the edge.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1226273", "adult": false, "backdrop_path": "/ksxr95M6fh2f2zgIlgGDDyfgOhC.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}, {"name": "Warner Bros.", "id": 6194}, {"name": "GK Films", "id": 3281}, {"name": "BBC Films", "id": 288}], "release_date": "2010-01-29", "popularity": 0.696851852595539, "original_title": "Edge of Darkness", "budget": 80000000, "cast": [{"name": "Mel Gibson", "character": "Thomas Craven", "id": 2461, "credit_id": "52fe44c99251416c75040dcd", "cast_id": 2, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Ray Winstone", "character": "Darius Jedburgh", "id": 5538, "credit_id": "52fe44c99251416c75040dd1", "cast_id": 3, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 1}, {"name": "Danny Huston", "character": "Bennett", "id": 6413, "credit_id": "52fe44c99251416c75040dd5", "cast_id": 4, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 2}, {"name": "Shawn Roberts", "character": "Burnham", "id": 81097, "credit_id": "52fe44c99251416c75040dd9", "cast_id": 5, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 3}, {"name": "Denis O'Hare", "character": "Moore", "id": 81681, "credit_id": "52fe44c99251416c75040ddd", "cast_id": 6, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 4}, {"name": "Bojana Novakovi\u0107", "character": "Emma Craven", "id": 81682, "credit_id": "52fe44c99251416c75040de1", "cast_id": 7, "profile_path": "/huxuKuGq26pHRE6nO0WJu3aS0hU.jpg", "order": 5}, {"name": "Gbenga Akinnagbe", "character": "Det. Darcy Jones", "id": 81683, "credit_id": "52fe44c99251416c75040de5", "cast_id": 8, "profile_path": "/5zkJdpJWanImwO7pIlYbbdtKFOu.jpg", "order": 6}, {"name": "Caterina Scorsone", "character": "Melissa Conway", "id": 81684, "credit_id": "52fe44c99251416c75040de9", "cast_id": 9, "profile_path": "/sR4fRd9fIEAnMR2ONWBxqpycdSx.jpg", "order": 7}, {"name": "Jay O. Sanders", "character": "Whitehouse", "id": 6067, "credit_id": "52fe44c99251416c75040ded", "cast_id": 10, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 8}, {"name": "Wayne Duvall", "character": "Chief of Police", "id": 1470, "credit_id": "52fe44c99251416c75040df1", "cast_id": 11, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 9}, {"name": "Frank Grillo", "character": "The agent one", "id": 81685, "credit_id": "52fe44c99251416c75040df5", "cast_id": 12, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 10}, {"name": "David Aaron Baker", "character": "Millroy", "id": 60195, "credit_id": "52fe44c99251416c75040df9", "cast_id": 13, "profile_path": "/b3fxKRexd28lPSEWXqSzklXZuBo.jpg", "order": 11}, {"name": "Sol E. Romero", "character": "Hospital Nurse", "id": 81686, "credit_id": "52fe44c99251416c75040dfd", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Tom Kemp", "character": "Paul Honeywell", "id": 58333, "credit_id": "52fe44c99251416c75040e01", "cast_id": 15, "profile_path": "/iQ3etbD6KycVsVK3VSCatpTBeZr.jpg", "order": 13}, {"name": "Rick Avery", "character": "Robinson Jr.", "id": 81687, "credit_id": "52fe44c99251416c75040e05", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Scott Winters", "character": "Northmoor Doctor", "id": 81688, "credit_id": "52fe44c99251416c75040e09", "cast_id": 17, "profile_path": "/mlIIDs03w3qxMjHcOHF6APsSZQU.jpg", "order": 15}, {"name": "Peter Hermann", "character": "Sanderman", "id": 50117, "credit_id": "52fe44c99251416c75040e49", "cast_id": 28, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 16}, {"name": "Nico Evers-Swindell", "character": "State Trooper #2", "id": 510488, "credit_id": "52fe44c99251416c75040e4d", "cast_id": 29, "profile_path": "/xCJtitaVa0oeAtlBxqdn7SEs2tu.jpg", "order": 17}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe44c99251416c75040dc9", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 6.2, "runtime": 117}, "4011": {"poster_path": "/9QWgpkxjs9Pcb5JfWIw37lL6vYd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73326666, "overview": "Thanks to an untimely demise via drowning, a young couple end up as poltergeists in their New England farmhouse, where they fail to meet the challenge of scaring away the insufferable new owners, who want to make drastic changes. In desperation, the undead newlyweds turn to an expert frightmeister, but he's got a diabolical agenda of his own.", "video": false, "id": 4011, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Beetlejuice", "tagline": "He's guaranteed to put some life, in your afterlife.", "vote_count": 345, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 311946, "name": "Beetlejuice Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094721", "adult": false, "backdrop_path": "/ghqjoy3R6tkzE69rdIvvaK6v5o5.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Geffen Pictures", "id": 360}], "release_date": "1988-03-30", "popularity": 1.12739296152099, "original_title": "Beetlejuice", "budget": 15000000, "cast": [{"name": "Michael Keaton", "character": "Beetlejuice", "id": 2232, "credit_id": "52fe43abc3a36847f80666f3", "cast_id": 9, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Adam Maitland", "id": 7447, "credit_id": "52fe43abc3a36847f80666df", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Geena Davis", "character": "Barbara Maitland", "id": 16935, "credit_id": "52fe43abc3a36847f80666e3", "cast_id": 5, "profile_path": "/gQYLCNk9ezjuElM98KqMrjDPUhx.jpg", "order": 2}, {"name": "Winona Ryder", "character": "Lydia Deetz", "id": 1920, "credit_id": "52fe43abc3a36847f8066743", "cast_id": 24, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 3}, {"name": "Annie McEnroe", "character": "Jane Butterfield", "id": 34535, "credit_id": "52fe43abc3a36847f80666e7", "cast_id": 6, "profile_path": "/yjaUtjmCnF0PrKmE7bpVNEUFRP0.jpg", "order": 4}, {"name": "Maurice Page", "character": "Ernie", "id": 34536, "credit_id": "52fe43abc3a36847f80666eb", "cast_id": 7, "profile_path": "/3z4EjRjFA722OofYEXfuQv71ukz.jpg", "order": 5}, {"name": "Hugo Stanger", "character": "Old Bill", "id": 34537, "credit_id": "52fe43abc3a36847f80666ef", "cast_id": 8, "profile_path": "/oUhPnyUvf15eut1PRt1ntMSpw82.jpg", "order": 6}, {"name": "Rachel Mittelman", "character": "Little Jane Butterfield", "id": 34538, "credit_id": "52fe43abc3a36847f80666f7", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Catherine O'Hara", "character": "Delia Deetz", "id": 11514, "credit_id": "52fe43abc3a36847f8066747", "cast_id": 25, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 8}, {"name": "J. Jay Saunders", "character": "Moving Man #1", "id": 152727, "credit_id": "52fe43abc3a36847f806674b", "cast_id": 26, "profile_path": "/s5uvUSSUH8gYK76TGUR4zatysrQ.jpg", "order": 9}, {"name": "Mark Ettlinger", "character": "Moving Man #2", "id": 1073806, "credit_id": "52fe43abc3a36847f806674f", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Jeffrey Jones", "character": "Charles Deetz", "id": 4004, "credit_id": "52fe43abc3a36847f8066753", "cast_id": 28, "profile_path": "/tstfddskUkJvtWcRBLZ6dsvffhM.jpg", "order": 11}, {"name": "Glenn Shadix", "character": "Otho", "id": 13243, "credit_id": "52fe43abc3a36847f8066757", "cast_id": 29, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 12}, {"name": "Patrice Martinez", "character": "Receptionist", "id": 54813, "credit_id": "52fe43abc3a36847f806675b", "cast_id": 30, "profile_path": "/k5zb1ftmsClSUOMrgUiV1hgyukO.jpg", "order": 13}, {"name": "Cindy Daly", "character": "3-Fingered Typist", "id": 52467, "credit_id": "52fe43abc3a36847f806675f", "cast_id": 31, "profile_path": "/guuo8IvbWBrdGMCWr959tlDE8EL.jpg", "order": 14}, {"name": "Carmen Filpi", "character": "Messenger", "id": 154073, "credit_id": "52fe43abc3a36847f8066767", "cast_id": 33, "profile_path": "/a1XRRqiUDBC4Wlg5fklVhfvnWLx.jpg", "order": 15}, {"name": "Sylvia Sidney", "character": "Juno", "id": 528, "credit_id": "54a2c23a9251411860001f1c", "cast_id": 39, "profile_path": "/A1btt1FKCXFSeLYsfC3i9JL08Op.jpg", "order": 16}, {"name": "Robert Goulet", "character": "Maxie Dean", "id": 128621, "credit_id": "54a2c24ac3a3682f1e00f05d", "cast_id": 40, "profile_path": "/776KzwV8l62Wz4gGWnifTUtf8A2.jpg", "order": 17}, {"name": "Dick Cavett", "character": "Bernard", "id": 10565, "credit_id": "54a2c25dc3a3684d8f001c48", "cast_id": 41, "profile_path": "/wxur4NDgWKAZsjrjpc75ZTzNqsO.jpg", "order": 18}, {"name": "Susan Kellermann", "character": "Grace", "id": 27264, "credit_id": "54a2c26fc3a3682f1b00f305", "cast_id": 42, "profile_path": "/1WTM0L9rpgv0Urgi7P0IoHaMlsX.jpg", "order": 19}, {"name": "Tony Cox", "character": "Preacher", "id": 19754, "credit_id": "54a2c282925141212700607c", "cast_id": 43, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 20}, {"name": "Maree Cheatham", "character": "Sarah Dean (as Marie Cheatham)", "id": 114604, "credit_id": "54a2c290c3a368554200c782", "cast_id": 44, "profile_path": "/unHXWmdtUZHJqQOD4o40UHf8YFp.jpg", "order": 21}, {"name": "Harry Belafonte", "character": "The Balladeer (voice) (uncredited)", "id": 33162, "credit_id": "54a2c2a5925141198b003c8a", "cast_id": 45, "profile_path": "/7RfJGhebM6ZnPQNPrstHJpw8w20.jpg", "order": 22}, {"name": "Harry Belafonte", "character": "The Hanging Man (uncredited)", "id": 33162, "credit_id": "54a2c2d3c3a3682f2100f49b", "cast_id": 46, "profile_path": "/7RfJGhebM6ZnPQNPrstHJpw8w20.jpg", "order": 23}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe43abc3a36847f80666cf", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.8, "runtime": 92}, "41630": {"poster_path": "/1AxDwc2eugEvG4dRTear9q8Hzmw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147780440, "overview": "Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?", "video": false, "id": 41630, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "No Strings Attached", "tagline": "Friendship has its benefits.", "vote_count": 358, "homepage": "http://www.nostringsattachedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1411238", "adult": false, "backdrop_path": "/tlbGPwXp2eWZaijWqYXiHYwKuF8.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Cold Spring Pictures", "id": 2363}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Montecito Picture Company, The", "id": 4607}, {"name": "Handsomecharlie Films", "id": 8873}, {"name": "Katalyst Films", "id": 817}], "release_date": "2011-01-20", "popularity": 1.7730258052826, "original_title": "No Strings Attached", "budget": 25000000, "cast": [{"name": "Natalie Portman", "character": "Emma Kurtzman", "id": 524, "credit_id": "52fe45d7c3a36847f80dd645", "cast_id": 14, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Adam Franklin", "id": 18976, "credit_id": "52fe45d7c3a36847f80dd649", "cast_id": 15, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Greta Gerwig", "character": "Patrice", "id": 45400, "credit_id": "52fe45d7c3a36847f80dd631", "cast_id": 8, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 2}, {"name": "Kevin Kline", "character": "Alvin", "id": 8945, "credit_id": "52fe45d7c3a36847f80dd62d", "cast_id": 6, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 3}, {"name": "Olivia Thirlby", "character": "Katie Kurtzman", "id": 52442, "credit_id": "52fe45d7c3a36847f80dd64d", "cast_id": 16, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 3}, {"name": "Lake Bell", "character": "Lucy", "id": 25703, "credit_id": "52fe45d7c3a36847f80dd629", "cast_id": 5, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 4}, {"name": "Cary Elwes", "character": "Dr. Metzner", "id": 2130, "credit_id": "52fe45d7c3a36847f80dd625", "cast_id": 4, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 6}, {"name": "Talia Balsam", "character": "Sandra Kurtzman", "id": 140253, "credit_id": "52fe45d7c3a36847f80dd635", "cast_id": 10, "profile_path": "/4adzNEL8GD9lKlxWDlnuKcp37SF.jpg", "order": 7}, {"name": "Stefanie Scott", "character": "Young Emma", "id": 106490, "credit_id": "52fe45d7c3a36847f80dd63d", "cast_id": 12, "profile_path": "/dDm7CXVfv89dMFPeW5MkbM59me5.jpg", "order": 7}, {"name": "Ophelia Lovibond", "character": "Vanessa", "id": 82639, "credit_id": "52fe45d7c3a36847f80dd639", "cast_id": 11, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 10}, {"name": "Rachael Markarian", "character": "Frat Dancer", "id": 143742, "credit_id": "52fe45d7c3a36847f80dd641", "cast_id": 13, "profile_path": "/5I2Eee7sLhUYJKknIKfifPMV5n5.jpg", "order": 10}, {"name": "Jake M. Johnson", "character": "Eli", "id": 543505, "credit_id": "52fe45d7c3a36847f80dd657", "cast_id": 18, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 11}, {"name": "Matthew Moy", "character": "Chuck", "id": 1254625, "credit_id": "52fe45d7c3a36847f80dd65b", "cast_id": 19, "profile_path": "/b6I500CFqDZmMgWbfaUwKvQBGL.jpg", "order": 12}, {"name": "Abby Elliott", "character": "Joy", "id": 1240486, "credit_id": "52fe45d7c3a36847f80dd65f", "cast_id": 20, "profile_path": "/pYjlIPsmbkI5A6obFcLSkaZxU8.jpg", "order": 13}, {"name": "Nasim Pedrad", "character": "Writer", "id": 476163, "credit_id": "52fe45d7c3a36847f80dd663", "cast_id": 21, "profile_path": "/kA12uJDhiLW6xhTYJEwhMFjJBjb.jpg", "order": 14}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe45d7c3a36847f80dd621", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 6.1, "runtime": 108}, "44982": {"poster_path": "/8w54aZ5hLX18gqs37MIdBmyIFMN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A naive young man assumes a dead man's identity and finds himself embroiled in an underground world of power, violence, and chance where men gamble behind closed doors on the lives of other men.", "video": false, "id": 44982, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "13", "tagline": "Spin. Aim. Survive.", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0798817", "adult": false, "backdrop_path": "/A82GPC0XeoZMBWDYTe4Dba32cme.jpg", "production_companies": [{"name": "Morabito Picture Company", "id": 24323}, {"name": "Overnight Films", "id": 10808}, {"name": "Red Dragon Productions", "id": 24322}, {"name": "Barbarian Films", "id": 6563}, {"name": "Magnet Media Group", "id": 22546}, {"name": "Cinedigm", "id": 20659}, {"name": "Oceana Media Finance", "id": 4634}], "release_date": "2010-03-12", "popularity": 1.0821392067126, "original_title": "13", "budget": 0, "cast": [{"name": "Jason Statham", "character": "Jasper", "id": 976, "credit_id": "52fe46a8c3a36847f810b083", "cast_id": 13, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Alexander Skarsg\u00e5rd", "character": "Jack", "id": 28846, "credit_id": "52fe46a8c3a36847f810b07b", "cast_id": 11, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 1}, {"name": "Gaby Hoffmann", "character": "Clara", "id": 12930, "credit_id": "52fe46a8c3a36847f810b07f", "cast_id": 12, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 2}, {"name": "Emmanuelle Chriqui", "character": "Aileen", "id": 59192, "credit_id": "52fe46a8c3a36847f810b08d", "cast_id": 15, "profile_path": "/d2PyTKZyt5Ndk9am6PJ8u6jRdjH.jpg", "order": 3}, {"name": "Mickey Rourke", "character": "Jefferson", "id": 2295, "credit_id": "52fe46a8c3a36847f810b091", "cast_id": 16, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 4}, {"name": "David Zayas", "character": "Detective Larry Mullane", "id": 22821, "credit_id": "52fe46a8c3a36847f810b095", "cast_id": 17, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 5}, {"name": "Ray Winstone", "character": "Ronald Lynn", "id": 5538, "credit_id": "52fe46a8c3a36847f810b099", "cast_id": 18, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 6}, {"name": "Michael Shannon", "character": "Henry", "id": 335, "credit_id": "52fe46a8c3a36847f810b09d", "cast_id": 19, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 7}, {"name": "Sam Riley", "character": "Vince", "id": 32987, "credit_id": "52fe46a8c3a36847f810b0a1", "cast_id": 20, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 8}, {"name": "50 Cent", "character": "Jimmy", "id": 62644, "credit_id": "52fe46a8c3a36847f810b0a5", "cast_id": 21, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 9}], "directors": [{"name": "G\u00e9la Babluani", "department": "Directing", "job": "Director", "credit_id": "52fe46a8c3a36847f810b077", "profile_path": null, "id": 47786}], "vote_average": 5.8, "runtime": 97}, "53182": {"poster_path": "/bRE7nmNuZzciep7MDkNfuTrM9zW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 331169117, "overview": "Based on Frank Miller's latest graphic novel Xerxes and told in the breathtaking visual style of the blockbuster \"300,\" this new chapter of the epic saga takes the action to a fresh battlefield--on the sea--as Greek general Themistokles attempts to unite all of Greece by leading the charge that will change the course of the war. \"300: Rise of an Empire\" pits Themistokles against the massive invading Persian forces led by mortal-turned-god Xerxes and Artemesia, the vengeful commander of the Persian navy.", "video": false, "id": 53182, "genres": [{"id": 28, "name": "Action"}, {"id": 10752, "name": "War"}], "title": "300: Rise of an Empire", "tagline": "Seize your glory!", "vote_count": 904, "homepage": "http://www.300themovie.com/", "belongs_to_collection": {"backdrop_path": "/ldKTZVlq8kXk34RwPSZaX2FXC24.jpg", "poster_path": "/nKQqh6kJvPdpOJD24enD3Bm1Hy5.jpg", "id": 125570, "name": "300 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1253863", "adult": false, "backdrop_path": "/dwRCptswUg5T27EM6hyXPlObRbE.jpg", "production_companies": [{"name": "Nimar Studios", "id": 7636}, {"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Cruel & Unusual Films", "id": 9995}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Hollywood Gang Productions", "id": 2994}], "release_date": "2014-03-07", "popularity": 2.4786736294867, "original_title": "300: Rise of an Empire", "budget": 110000000, "cast": [{"name": "Sullivan Stapleton", "character": "Themistocles", "id": 38664, "credit_id": "52fe4857c3a36847f81628f9", "cast_id": 6, "profile_path": "/jbtXSbo8uqBTn8Nx2Z1fULTQlAz.jpg", "order": 0}, {"name": "Eva Green", "character": "Artemisia", "id": 10912, "credit_id": "52fe4857c3a36847f81628fd", "cast_id": 7, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 1}, {"name": "Lena Headey", "character": "Queen Gorgo", "id": 17286, "credit_id": "52fe4857c3a36847f8162915", "cast_id": 13, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 2}, {"name": "Callan Mulvey", "character": "Scylias", "id": 208296, "credit_id": "52fe4857c3a36847f8162909", "cast_id": 10, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 3}, {"name": "David Wenham", "character": "Dillios", "id": 1371, "credit_id": "52fe4857c3a36847f8162919", "cast_id": 14, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 4}, {"name": "Rodrigo Santoro", "character": "Xerxes", "id": 17289, "credit_id": "52fe4857c3a36847f8162901", "cast_id": 8, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 5}, {"name": "Jack O'Connell", "character": "Calisto", "id": 85065, "credit_id": "52fe4857c3a36847f8162905", "cast_id": 9, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 6}, {"name": "Andrew Tiernan", "character": "Ephialtes", "id": 17290, "credit_id": "52fe4857c3a36847f816290d", "cast_id": 11, "profile_path": "/891RIqhOno9VLsYPIfzQsqytQZb.jpg", "order": 7}, {"name": "Ashraf Barhom", "character": "General Bandari", "id": 766, "credit_id": "52fe4857c3a36847f8162911", "cast_id": 12, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 8}, {"name": "Andrew Pleavin", "character": "Daxos", "id": 17291, "credit_id": "52fe4857c3a36847f816291d", "cast_id": 15, "profile_path": "/tiMLyqTDBx0TgfQKlLHObr9eGyG.jpg", "order": 9}, {"name": "Hans Matheson", "character": "Aesyklos", "id": 37168, "credit_id": "53160c5f92514158770008b1", "cast_id": 17, "profile_path": "/4MQAI6g3AabzUDm29UbadjjWteL.jpg", "order": 10}, {"name": "Peter Mensah", "character": "Persian Emissary", "id": 68278, "credit_id": "54819334c3a36829a7005bf9", "cast_id": 104, "profile_path": "/4mn8HoKONrRYlZJIizbAgEaaMte.jpg", "order": 12}, {"name": "Ben Turner", "character": "General Artaphernes", "id": 1261071, "credit_id": "548193749251416e74005e8a", "cast_id": 105, "profile_path": null, "order": 13}, {"name": "Christopher Boyer", "character": "Senator", "id": 153946, "credit_id": "548193a3c3a36829a7005c03", "cast_id": 106, "profile_path": "/1J4pfvy7XW2LcV2qZkgyGb4xxDU.jpg", "order": 14}, {"name": "Fred Ochs", "character": "Senator", "id": 211593, "credit_id": "548193b89251416e7b005571", "cast_id": 107, "profile_path": null, "order": 15}, {"name": "Price Carson", "character": "Senator", "id": 36060, "credit_id": "548193d0c3a3684afd0013cd", "cast_id": 108, "profile_path": null, "order": 16}, {"name": "John Michael Herndon", "character": "Senator", "id": 1394772, "credit_id": "548193e79251416e78005a71", "cast_id": 109, "profile_path": null, "order": 17}, {"name": "David Pevsner", "character": "Senator", "id": 177099, "credit_id": "54819405c3a36829a7005c11", "cast_id": 110, "profile_path": null, "order": 18}, {"name": "Peter Ferdinando", "character": "Greek Ambassador", "id": 109833, "credit_id": "5481941f9251416e81005ac3", "cast_id": 111, "profile_path": "/jrpB6xsVtTQ3f29dhywY5XH7AVP.jpg", "order": 19}, {"name": "Igal Naor", "character": "King Darius", "id": 1437966, "credit_id": "55002fbd9251413d9b00141b", "cast_id": 112, "profile_path": null, "order": 20}], "directors": [{"name": "Noam Murro", "department": "Directing", "job": "Director", "credit_id": "52fe4857c3a36847f81628e9", "profile_path": "/u7FyryITMLNsBvuqNWcvSReF2lC.jpg", "id": 78914}], "vote_average": 6.2, "runtime": 102}, "4032": {"poster_path": "/70VWmsMiTRHv9XjMvjmTVHDoM6C.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is \"allergic to everything\", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...", "video": false, "id": 4032, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "My Girl", "tagline": "When your Dad's an undertaker, your Mom's in heaven, and your Grandma's got a screw loose...it's good to have a friend who understands you. Even if he is a boy.", "vote_count": 93, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/u292FNPKjhLQ6OWyYQfhdv4naIL.jpg", "id": 85960, "name": "My Girl Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102492", "adult": false, "backdrop_path": "/bUkb8goYWIRfDISwmUyKbZZnfMV.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "1991-11-26", "popularity": 0.317160081922436, "original_title": "My Girl", "budget": 16500000, "cast": [{"name": "Anna Chlumsky", "character": "Vada Sultenfuss", "id": 34612, "credit_id": "52fe43acc3a36847f8066b1d", "cast_id": 2, "profile_path": "/9wwtj8lfHKGna2L0CXBWllHIDUq.jpg", "order": 0}, {"name": "Macaulay Culkin", "character": "Thomas J. Sennett", "id": 11510, "credit_id": "52fe43acc3a36847f8066b21", "cast_id": 3, "profile_path": "/eMApQSnjNI9wSzGv1MYbj0D011j.jpg", "order": 1}, {"name": "Dan Aykroyd", "character": "Harry Sultenfuss", "id": 707, "credit_id": "52fe43acc3a36847f8066b25", "cast_id": 4, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 2}, {"name": "Jamie Lee Curtis", "character": "Shelly DeVoto", "id": 8944, "credit_id": "52fe43acc3a36847f8066b29", "cast_id": 5, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 3}, {"name": "Richard Masur", "character": "Phil Sultenfuss", "id": 15416, "credit_id": "52fe43acc3a36847f8066b75", "cast_id": 18, "profile_path": "/77Kxw9GJ9hxcBfsQDa344Ob9lDo.jpg", "order": 4}, {"name": "Griffin Dunne", "character": "Mr. Jake Bixler", "id": 2171, "credit_id": "52fe43acc3a36847f8066b79", "cast_id": 19, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 5}, {"name": "Peter Michael Goetz", "character": "Dr. Welty", "id": 20906, "credit_id": "52fe43acc3a36847f8066b7d", "cast_id": 20, "profile_path": "/a2hLcCidETgwlVyQnYy4kXVKUcn.jpg", "order": 6}, {"name": "Lara Steinick", "character": "Ronda", "id": 35168, "credit_id": "52fe43acc3a36847f8066b81", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Anny Nelsen", "character": "Gramoo Sultenfuss", "id": 18222, "credit_id": "52fe43acc3a36847f8066b85", "cast_id": 22, "profile_path": "/5kIG1e6LMYR2Qb7VXYOIYtnT8o5.jpg", "order": 8}], "directors": [{"name": "Howard Zieff", "department": "Directing", "job": "Director", "credit_id": "52fe43acc3a36847f8066b19", "profile_path": null, "id": 34611}], "vote_average": 6.9, "runtime": 102}, "12225": {"poster_path": "/mbhVL3sdRtXvmGc2iB2SKfa24Wz.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 2294291, "overview": "After a painful breakup, Ben develops insomnia. To kill time, he starts working the late night shift at the local supermarket, where his artistic imagination runs wild.", "video": false, "id": 12225, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Cashback", "tagline": "Sometimes love is hiding between the seconds of your life.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0460740", "adult": false, "backdrop_path": "/tGwCY3dVkFpOQUL6hjiMb9c3yMl.jpg", "production_companies": [{"name": "Left Turn Films", "id": 1435}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Ugly Duckling Films", "id": 1436}], "release_date": "2006-09-10", "popularity": 0.668230381726023, "original_title": "Cashback", "budget": 0, "cast": [{"name": "Sean Biggerstaff", "character": "Ben Willis", "id": 11179, "credit_id": "52fe44cd9251416c750417cf", "cast_id": 19, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 0}, {"name": "Emilia Fox", "character": "Sharon Pintey", "id": 6639, "credit_id": "52fe44cd9251416c750417d3", "cast_id": 20, "profile_path": "/xbOxrak2VaQTVX2pNdqRG3NZvK2.jpg", "order": 1}, {"name": "Shaun Evans", "character": "Sean Higgins", "id": 63311, "credit_id": "52fe44cd9251416c750417d7", "cast_id": 21, "profile_path": "/8sjgajgpLmlPFDIgagzHJ3OAhz5.jpg", "order": 2}, {"name": "Michael Dixon", "character": "Barry Brickman", "id": 73401, "credit_id": "52fe44cd9251416c750417db", "cast_id": 22, "profile_path": "/HdUE9PAD1DBkS1gur72sVT10kR.jpg", "order": 3}, {"name": "Michelle Ryan", "character": "Suzy", "id": 73525, "credit_id": "52fe44cd9251416c750417df", "cast_id": 23, "profile_path": "/5B3HsN9RfldWrddSSrxYLJf7RwL.jpg", "order": 4}, {"name": "Stuart Goodwin", "character": "Jenkins", "id": 73526, "credit_id": "52fe44cd9251416c750417e3", "cast_id": 24, "profile_path": "/3rgTxrWlxDb2VcGp0mVhFYTBF9b.jpg", "order": 5}, {"name": "Frank Hesketh", "character": "Young Ben Willis", "id": 73529, "credit_id": "52fe44cd9251416c750417e7", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Kenneth Fahy", "character": "Art Class Life Model", "id": 73531, "credit_id": "52fe44cd9251416c750417f3", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Erica Ellis", "character": "Canteen Lady", "id": 73530, "credit_id": "52fe44cd9251416c750417eb", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Marc Pickering", "character": "Brian 'Kung-Fu'", "id": 73528, "credit_id": "52fe44cd9251416c750417ef", "cast_id": 27, "profile_path": "/3xOapB4eNc5QU1Oo0NcBDX8Jolh.jpg", "order": 9}, {"name": "Michael Lambourne", "character": "Matt Stephens", "id": 73527, "credit_id": "52fe44cd9251416c750417f7", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Stan Ellis", "character": "Art Class Teacher", "id": 73532, "credit_id": "52fe44cd9251416c750417fb", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Nia Roberts", "character": "Woman at the Till", "id": 71354, "credit_id": "52fe44cd9251416c750417ff", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Winnie Li", "character": "Betting Employee", "id": 32258, "credit_id": "52fe44cd9251416c75041803", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Katie Ball", "character": "Art Class Girl", "id": 73533, "credit_id": "52fe44cd9251416c75041807", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Celesta Hodge", "character": "Deer Girl in Sainsbury's", "id": 73534, "credit_id": "52fe44cd9251416c7504180f", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Cherie Nichole", "character": "Shampoo / Frozen Girl 2", "id": 73537, "credit_id": "52fe44cd9251416c7504180b", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Lene Bausager", "character": "Woman with Trolley", "id": 32251, "credit_id": "52fe44cd9251416c75041813", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Hatti Riemer", "character": "Old Lady at Deli Counter", "id": 73535, "credit_id": "52fe44cd9251416c75041817", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Kinvara Balfour", "character": "Shampoo / Frozen Girl 1", "id": 73536, "credit_id": "52fe44cd9251416c7504181b", "cast_id": 38, "profile_path": null, "order": 19}], "directors": [{"name": "Sean Ellis", "department": "Directing", "job": "Director", "credit_id": "52fe44cd9251416c7504177d", "profile_path": "/kjZvWdk8e4B9bDkhPfWzushR5az.jpg", "id": 32250}], "vote_average": 6.9, "runtime": 102}, "60747": {"poster_path": "/uwB68oOgSj2eXqvoSdBLcmsN53p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44806783, "overview": "A city in Washington state awakens to the surreal sight of foreign paratroopers dropping from the sky - shockingly, the U.S. has been invaded and their hometown is the initial target. Quickly and without warning, the citizens find themselves prisoners and their town under enemy occupation. Determined to fight back, a group of young patriots seek refuge in the surrounding woods, training and reorganizing themselves into a guerrilla group of fighters. Taking inspiration from their high school mascot, they call themselves the Wolverines, banding together to protect one another, liberate their town from its captors, and take back their freedom.", "video": false, "id": 60747, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Red Dawn", "tagline": "Welcome To the Home of the Brave", "vote_count": 244, "homepage": "http://www.mgm.com/view/Movie/2394/Red%20Dawn%20%282010%29/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt1234719", "adult": false, "backdrop_path": "/ann5zw9xcilyeMAV64p3jrUkzAW.jpg", "production_companies": [{"name": "Contrafilm", "id": 1836}, {"name": "FilmDistrict", "id": 7263}], "release_date": "2012-11-21", "popularity": 1.19446453620616, "original_title": "Red Dawn", "budget": 65000000, "cast": [{"name": "Chris Hemsworth", "character": "Jed Eckert", "id": 74568, "credit_id": "52fe4633c3a368484e084351", "cast_id": 9, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Robert Kitner", "id": 27972, "credit_id": "52fe4633c3a368484e084355", "cast_id": 10, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Isabel Lucas", "character": "Erica Martin", "id": 103554, "credit_id": "52fe4633c3a368484e084359", "cast_id": 11, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 2}, {"name": "Adrianne Palicki", "character": "Toni Walsh", "id": 88995, "credit_id": "52fe4633c3a368484e08435d", "cast_id": 12, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 3}, {"name": "Jeffrey Dean Morgan", "character": "Col. Andy Tanner", "id": 47296, "credit_id": "52fe4633c3a368484e084361", "cast_id": 13, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 4}, {"name": "Edwin Hodge", "character": "Danny", "id": 56679, "credit_id": "52fe4633c3a368484e084365", "cast_id": 14, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 5}, {"name": "Michael Beach", "character": "Mayor Jenkins", "id": 87118, "credit_id": "52fe4633c3a368484e084369", "cast_id": 15, "profile_path": "/lOlWhURNKyZHn71dvq7qC7fiwN6.jpg", "order": 6}, {"name": "Connor Cruise", "character": "Daryl Jenkins", "id": 235547, "credit_id": "52fe4633c3a368484e08436d", "cast_id": 16, "profile_path": "/wQUTaFEcO67FxHZ6OHS91sBC6Q2.jpg", "order": 7}, {"name": "Alyssa Diaz", "character": "Julie", "id": 134180, "credit_id": "52fe4633c3a368484e084371", "cast_id": 17, "profile_path": "/omty6bSrgtMMlJwZAUUZlaiIElq.jpg", "order": 8}, {"name": "Matt Gerald", "character": "Hodges", "id": 98215, "credit_id": "52fe4633c3a368484e084375", "cast_id": 18, "profile_path": "/4PTyFQA4WHmxtyht1kMPMHD3Whu.jpg", "order": 9}, {"name": "Josh Peck", "character": "Matt Eckert", "id": 15760, "credit_id": "52fe4633c3a368484e084379", "cast_id": 19, "profile_path": "/mLQ9fKG7E1PLErgPWRMfIccwOTM.jpg", "order": 10}, {"name": "Brett Cullen", "character": "Tom Eckert", "id": 16841, "credit_id": "52fe4633c3a368484e08437d", "cast_id": 20, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 11}, {"name": "Julian Alcaraz", "character": "Greg", "id": 1123221, "credit_id": "52fe4633c3a368484e084381", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Will Yun Lee", "character": "Captain Cho", "id": 10884, "credit_id": "52fe4633c3a368484e084385", "cast_id": 22, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 13}, {"name": "Fernando Chien", "character": "Lt. Pak", "id": 216782, "credit_id": "52fe4633c3a368484e084389", "cast_id": 23, "profile_path": "/lnMvhgE5ZKBaWvGN6beUJUqeHxD.jpg", "order": 14}, {"name": "Kenneth Choi", "character": "Smith", "id": 41561, "credit_id": "52fe4633c3a368484e08438d", "cast_id": 24, "profile_path": "/tEzawRC2IiqtUXFYty14vGLniNL.jpg", "order": 15}], "directors": [{"name": "Dan Bradley", "department": "Directing", "job": "Director", "credit_id": "52fe4633c3a368484e084323", "profile_path": null, "id": 8684}], "vote_average": 5.5, "runtime": 93}, "12230": {"poster_path": "/vo5j5OZIdnfMIZSkVfSvh8cJUU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215880014, "overview": "When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.", "video": false, "id": 12230, "genres": [{"id": 16, "name": "Animation"}], "title": "101 Dalmatians", "tagline": "The Canine Caper of the Century", "vote_count": 415, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rcnZbAGQsb3Hp0qPgnRalTyMJlQ.jpg", "poster_path": "/jBlsSRopSFbNAaZzs420bWDjKf7.jpg", "id": 100693, "name": "101 Dalmatians Animated Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0055254", "adult": false, "backdrop_path": "/vHBYOUjt04iI0COvMtPAMa2pC9y.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1961-01-25", "popularity": 1.96189617787489, "original_title": "One Hundred and One Dalmatians", "budget": 4000000, "cast": [{"name": "Rod Taylor", "character": "Pongo", "id": 8229, "credit_id": "52fe44ce9251416c75041a3f", "cast_id": 1, "profile_path": "/nCSU0Teu87l0Hep7CVTWbyHqPAX.jpg", "order": 0}, {"name": "J. Pat O'Malley", "character": "Colonel / Jasper", "id": 22602, "credit_id": "52fe44ce9251416c75041a43", "cast_id": 2, "profile_path": "/if8jAnsuARxFUy3k7PhaFqzHd9N.jpg", "order": 1}, {"name": "Betty Lou Gerson", "character": "Cruella De Vil / Miss Birdwell", "id": 71779, "credit_id": "52fe44ce9251416c75041a47", "cast_id": 3, "profile_path": "/sqapDTfgfIy6j0KHJTjzPaPzMJ8.jpg", "order": 2}, {"name": "Martha Wentworth", "character": "Nanny / Queenie / Lucy", "id": 71780, "credit_id": "52fe44ce9251416c75041a4b", "cast_id": 4, "profile_path": "/jyWAHneC2QdoC1Wpnvwf05wCMZs.jpg", "order": 3}, {"name": "Ben Wright", "character": "Roger", "id": 71781, "credit_id": "52fe44ce9251416c75041a4f", "cast_id": 5, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 4}, {"name": "Cate Bauer", "character": "Perdita", "id": 71782, "credit_id": "52fe44ce9251416c75041a53", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "David Frankham", "character": "Sgt. Tibs", "id": 16063, "credit_id": "52fe44cf9251416c75041a8d", "cast_id": 16, "profile_path": "/nWfvSZ64kaHLnQmgL3No1ArAkra.jpg", "order": 6}, {"name": "Frederick Worlock", "character": "Horace / Inspector Craven", "id": 14509, "credit_id": "52fe44cf9251416c75041a91", "cast_id": 17, "profile_path": "/oCQAanAc665NeE5allgEMit3wiY.jpg", "order": 7}, {"name": "Lisa Davis", "character": "Anita", "id": 140821, "credit_id": "52fe44cf9251416c75041a95", "cast_id": 18, "profile_path": "/3GNZX1dq9xSs0t8sISdaPD6UnUV.jpg", "order": 8}, {"name": "Tom Conway", "character": "Quizmaster / Collie", "id": 48962, "credit_id": "52fe44cf9251416c75041a99", "cast_id": 19, "profile_path": "/p2J2JRaKOrWuvIZ5UruXTxYLnXL.jpg", "order": 9}, {"name": "Tudor Owen", "character": "Towser", "id": 106101, "credit_id": "52fe44cf9251416c75041a9d", "cast_id": 20, "profile_path": "/wl75h6SDHDJ9kYjzDK3NCXKtduM.jpg", "order": 10}, {"name": "George Pelling", "character": "Danny", "id": 100975, "credit_id": "52fe44cf9251416c75041aa1", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Ramsay Hill", "character": "Television Announcer / Labrador", "id": 1080053, "credit_id": "52fe44cf9251416c75041aa5", "cast_id": 22, "profile_path": "/li4cu5zNbaHfjCMxukvIBwaTy2L.jpg", "order": 12}, {"name": "Queenie Leonard", "character": "Princess", "id": 39802, "credit_id": "52fe44cf9251416c75041aa9", "cast_id": 23, "profile_path": "/a0La7jUQRkLKmK7d70jkQ3JDc1C.jpg", "order": 13}, {"name": "Marjorie Bennett", "character": "Duchess", "id": 97257, "credit_id": "52fe44cf9251416c75041aad", "cast_id": 24, "profile_path": "/cyY0ltPueaqENXEBnd0KWE5VHRd.jpg", "order": 14}, {"name": "Mickey Maga", "character": "Patch", "id": 179313, "credit_id": "52fe44cf9251416c75041ab1", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Barbara Beaird", "character": "Rolly", "id": 178787, "credit_id": "52fe44cf9251416c75041ab5", "cast_id": 26, "profile_path": "/b9uI3i27qRYgvfk8JQEnb29smco.jpg", "order": 16}, {"name": "Mimi Gibson", "character": "Lucky", "id": 16762, "credit_id": "52fe44cf9251416c75041ab9", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Sandra Abbott", "character": "Penny", "id": 1080054, "credit_id": "52fe44cf9251416c75041abd", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Thurl Ravenscroft", "character": "Captain", "id": 150739, "credit_id": "52fe44cf9251416c75041ac1", "cast_id": 29, "profile_path": "/6DSmCbrUeNP7lDJkhTkJ7I9hTeq.jpg", "order": 19}, {"name": "Bill Lee", "character": "Roger (singing voice)", "id": 1224636, "credit_id": "543fb9450e0a265ab10018ab", "cast_id": 31, "profile_path": null, "order": 21}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe44ce9251416c75041a59", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Hamilton Luske", "department": "Directing", "job": "Director", "credit_id": "52fe44ce9251416c75041a5f", "profile_path": "/xeyWJsFlMtgjyfZnnElMnc6qFF6.jpg", "id": 11429}, {"name": "Wolfgang Reitherman", "department": "Directing", "job": "Director", "credit_id": "52fe44ce9251416c75041a65", "profile_path": null, "id": 57314}], "vote_average": 6.3, "runtime": 79}, "123553": {"poster_path": "/rgq2nlpYljGzoiCe8cJM3nhDSxT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters \u2014 half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother's future.", "video": false, "id": 123553, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "The Mortal Instruments: City of Bones", "tagline": "You have been chosen", "vote_count": 421, "homepage": "http://www.themortalinstrumentsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1538403", "adult": false, "backdrop_path": "/3dQ0GxSxfnATXlZH76iGvyuEC1i.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}], "release_date": "2013-08-21", "popularity": 1.10088504741413, "original_title": "The Mortal Instruments: City of Bones", "budget": 60000000, "cast": [{"name": "Lily Collins", "character": "Clary", "id": 112561, "credit_id": "52fe4a98c3a368484e15c631", "cast_id": 1, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 0}, {"name": "Jamie Campbell Bower", "character": "Jace Wayland", "id": 83356, "credit_id": "52fe4a98c3a368484e15c639", "cast_id": 3, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 1}, {"name": "Kevin Zegers", "character": "Alec Lightwood", "id": 7431, "credit_id": "52fe4a98c3a368484e15c649", "cast_id": 7, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 2}, {"name": "Jemima West", "character": "Isabelle Lightwood", "id": 1075355, "credit_id": "52fe4a98c3a368484e15c645", "cast_id": 6, "profile_path": "/3KS3sNttKeq4jz8h4F2oWNsFHje.jpg", "order": 3}, {"name": "Robert Michael Sheehan", "character": "Simon Lewis", "id": 118616, "credit_id": "52fe4a98c3a368484e15c63d", "cast_id": 4, "profile_path": "/47OUDEpraCrTeqpAMlIFuqm8q0L.jpg", "order": 4}, {"name": "Lena Headey", "character": "Jocelyn Fray", "id": 17286, "credit_id": "52fe4a98c3a368484e15c635", "cast_id": 2, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 5}, {"name": "Jared Harris", "character": "Hodge Starkweather", "id": 15440, "credit_id": "52fe4a98c3a368484e15c641", "cast_id": 5, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 6}, {"name": "Aidan Turner", "character": "Luke Garroway", "id": 207558, "credit_id": "52fe4a98c3a368484e15c64d", "cast_id": 9, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 7}, {"name": "Godfrey Gao", "character": "Magnus Bane", "id": 1192915, "credit_id": "52fe4a98c3a368484e15c669", "cast_id": 14, "profile_path": "/2FKkLFgKm1dJrY4ZHtiHuFtsAnp.jpg", "order": 8}, {"name": "Robert Maillet", "character": "Blackwell", "id": 112692, "credit_id": "52fe4a98c3a368484e15c66d", "cast_id": 15, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 9}, {"name": "Kevin Durand", "character": "Pangborn", "id": 79072, "credit_id": "52fe4a98c3a368484e15c671", "cast_id": 16, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 10}, {"name": "C. C. H. Pounder", "character": "Dorothea", "id": 30485, "credit_id": "52fe4a98c3a368484e15c675", "cast_id": 18, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 11}, {"name": "Jonathan Rhys Meyers", "character": "Valentine", "id": 1244, "credit_id": "52fe4a98c3a368484e15c679", "cast_id": 19, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 12}, {"name": "Aidan Turner", "character": "Luke", "id": 207558, "credit_id": "52fe4a98c3a368484e15c67d", "cast_id": 20, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 13}, {"name": "Stephen R. Hart", "character": "Brother Jeremiah", "id": 224723, "credit_id": "52fe4a98c3a368484e15c681", "cast_id": 21, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 14}, {"name": "Harry Van Gorkum", "character": "Alaric", "id": 58655, "credit_id": "52fe4a98c3a368484e15c685", "cast_id": 22, "profile_path": "/2azQVvdIkA5E8POWTzIWOp2A2BI.jpg", "order": 15}, {"name": "Chad Connell", "character": "Lambert", "id": 1240078, "credit_id": "5303aed0c3a3680a196697e4", "cast_id": 29, "profile_path": "/nCAb5fXPZ2bo42KBnnaN14078P1.jpg", "order": 16}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe4a98c3a368484e15c653", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 6.0, "runtime": 130}, "11596": {"poster_path": "/oLEZibnraixTE68rTaYv4FEmvYd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18090181, "overview": "Freddy's back \u2026 and he's badder than ever! Nancy, the historical nemesis of the man with the satanic snarl and pitchfork fingers, discovers that a new monstrous demon has taken on Freddy's persona. Can Nancy stop this new threat in time to save her son?", "video": false, "id": 11596, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "New Nightmare", "tagline": "One, Two, Freddy's coming for you...", "vote_count": 72, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111686", "adult": false, "backdrop_path": "/33TTFIqH3cGG5KVk6EvpKKvpegN.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "1994-10-14", "popularity": 0.60583371669322, "original_title": "New Nightmare", "budget": 14000000, "cast": [{"name": "Heather Langenkamp", "character": "Herself / Nancy Thompson", "id": 5141, "credit_id": "52fe44639251416c7503301d", "cast_id": 1, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 0}, {"name": "Robert Englund", "character": "Freddy Krueger / Himself", "id": 5139, "credit_id": "52fe44639251416c75033021", "cast_id": 2, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 1}, {"name": "Miko Hughes", "character": "Dylan Porter", "id": 8186, "credit_id": "52fe44639251416c75033025", "cast_id": 3, "profile_path": "/hpteoojNUAomlQVbiL4eSjUeJ4K.jpg", "order": 2}, {"name": "Wes Craven", "character": "Himself", "id": 5140, "credit_id": "52fe44639251416c75033029", "cast_id": 4, "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "order": 3}, {"name": "David Newsom", "character": "Chase Porter", "id": 166594, "credit_id": "52fe44639251416c75033051", "cast_id": 11, "profile_path": "/aSEdkogLdFgHubJiqEAKDtLcVD3.jpg", "order": 4}, {"name": "Tracy Middendorf", "character": "Julie", "id": 12547, "credit_id": "52fe44639251416c75033055", "cast_id": 12, "profile_path": "/j55JY7bG995jfnZ0kkXZxzF1wxt.jpg", "order": 5}, {"name": "John Saxon", "character": "Himself / Lt. Donald Thompson", "id": 11163, "credit_id": "52fe44639251416c75033059", "cast_id": 14, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 6}, {"name": "Jeff Davis", "character": "Freddy's Hand Double", "id": 161731, "credit_id": "52fe44639251416c7503305d", "cast_id": 15, "profile_path": "/21rAGEXH7xTgH1oFTomAFEl1fmx.jpg", "order": 7}, {"name": "Matt Winston", "character": "Charles 'Chuck' Wilson", "id": 35521, "credit_id": "52fe44639251416c75033061", "cast_id": 16, "profile_path": "/vjXom4PhSWEkXlQDhh8ubTFoiIq.jpg", "order": 8}, {"name": "Rob LaBelle", "character": "Terrance 'Terry' Feinstein", "id": 42708, "credit_id": "52fe44639251416c75033065", "cast_id": 17, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 9}, {"name": "Marianne Maddalena", "character": "Herself", "id": 35581, "credit_id": "52fe44639251416c75033069", "cast_id": 18, "profile_path": "/bBMwURi3NuQsK4pSMq6tU2RwRT9.jpg", "order": 10}, {"name": "Gretchen Oehler", "character": "Script Supervisor", "id": 553772, "credit_id": "52fe44639251416c7503306d", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Cully Fredricksen", "character": "Limo Driver", "id": 553773, "credit_id": "52fe44639251416c75033071", "cast_id": 20, "profile_path": "/9gZds6fFcOXWHHiWxzhWGsBRsGU.jpg", "order": 12}, {"name": "Bodhi Elfman", "character": "TV Studio P.A.", "id": 154883, "credit_id": "52fe44639251416c75033075", "cast_id": 21, "profile_path": "/df6kpq8RPDKi1CwRlBWwl29kZSS.jpg", "order": 13}, {"name": "Sam Rubin", "character": "Himself", "id": 92568, "credit_id": "52fe44639251416c75033079", "cast_id": 22, "profile_path": "/ye0ek86xs5c372TlnvUQgwusloJ.jpg", "order": 14}, {"name": "Claudia Haro", "character": "New Line Receptionist", "id": 553774, "credit_id": "52fe44639251416c7503307d", "cast_id": 23, "profile_path": "/1XPYBTNuNVl01zjd19U4vZA4zqs.jpg", "order": 15}, {"name": "Sara Risher", "character": "Herself", "id": 13668, "credit_id": "52fe44639251416c75033081", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Robert Shaye", "character": "Himself", "id": 13663, "credit_id": "52fe44639251416c75033085", "cast_id": 25, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 17}, {"name": "Cindy Guidry", "character": "Kim at New Line", "id": 553775, "credit_id": "52fe44639251416c75033089", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Ray Glanzmann", "character": "Highway Patrolman", "id": 172525, "credit_id": "52fe44639251416c7503308d", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Yonda Davis", "character": "Highway Patrolwoman", "id": 188198, "credit_id": "52fe44639251416c75033091", "cast_id": 28, "profile_path": "/1K8vQiZjZl10RNuSiuKhxp9S9Qg.jpg", "order": 20}, {"name": "Michael Hagiwara", "character": "Coroner", "id": 204152, "credit_id": "52fe44639251416c75033095", "cast_id": 29, "profile_path": "/eZTBDByPTgiPlbBY2SS4kDRaxts.jpg", "order": 21}, {"name": "W. Earl Brown", "character": "Morgue Attendant", "id": 6951, "credit_id": "52fe44639251416c75033099", "cast_id": 30, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 22}, {"name": "Kenneth Zanchi", "character": "Minister", "id": 168289, "credit_id": "52fe44639251416c7503309d", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Jsu Garcia", "character": "Himself (as Nick Corri)", "id": 13657, "credit_id": "52fe44639251416c750330a1", "cast_id": 32, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 24}, {"name": "Tuesday Knight", "character": "Herself", "id": 63914, "credit_id": "52fe44649251416c750330a5", "cast_id": 33, "profile_path": "/vQNxbldn4g825XTJqqKqXMWF8xC.jpg", "order": 25}, {"name": "Beans Morocco", "character": "Graveyard Worker", "id": 154905, "credit_id": "52fe44649251416c750330a9", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Tamara Mark", "character": "Patrice Englund", "id": 553776, "credit_id": "52fe44649251416c750330ad", "cast_id": 35, "profile_path": "/bJvELDaATUTgvemUmPM8XpPmJon.jpg", "order": 27}, {"name": "Lin Shaye", "character": "Nurse with Pills", "id": 7401, "credit_id": "52fe44649251416c750330b1", "cast_id": 36, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 28}, {"name": "Deborah Zara Kobylt", "character": "Newscaster", "id": 553777, "credit_id": "52fe44649251416c750330b5", "cast_id": 37, "profile_path": null, "order": 29}, {"name": "Diane Nadeau", "character": "Counter Nurse", "id": 553778, "credit_id": "52fe44649251416c750330b9", "cast_id": 38, "profile_path": null, "order": 30}, {"name": "Star-Shemah Bobatoon", "character": "ICU Nurse", "id": 553779, "credit_id": "52fe44649251416c750330bd", "cast_id": 39, "profile_path": null, "order": 31}, {"name": "Lou Thornton", "character": "ICU Nurse", "id": 182556, "credit_id": "52fe44649251416c750330c1", "cast_id": 40, "profile_path": null, "order": 32}, {"name": "Cynthia Savage", "character": "ICU Nurse", "id": 553780, "credit_id": "52fe44649251416c750330c5", "cast_id": 41, "profile_path": null, "order": 33}, {"name": "Jessica Craven", "character": "Junior Nurse with Needle", "id": 553781, "credit_id": "52fe44649251416c750330c9", "cast_id": 42, "profile_path": null, "order": 34}, {"name": "Sandra Ellis Lafferty", "character": "Senior Nurse with Needle", "id": 427, "credit_id": "52fe44649251416c750330cd", "cast_id": 43, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 35}, {"name": "Thomas G. Burt", "character": "Security Officer", "id": 553782, "credit_id": "52fe44649251416c750330d1", "cast_id": 44, "profile_path": null, "order": 36}, {"name": "Tina Vail", "character": "Nurse Abbott", "id": 553783, "credit_id": "52fe44649251416c750330d5", "cast_id": 45, "profile_path": null, "order": 37}, {"name": "Kathryn Greenwood", "character": "Nurse in Hospital Room with Heather (uncredited)", "id": 162747, "credit_id": "52fe44649251416c750330d9", "cast_id": 46, "profile_path": "/os3zdHkFkdjseMXk6qXbvakelzj.jpg", "order": 38}, {"name": "Kevin Harrison", "character": "Hospital Intern (uncredited)", "id": 234423, "credit_id": "52fe44649251416c750330dd", "cast_id": 47, "profile_path": null, "order": 39}, {"name": "Amanda Wyss", "character": "Christina 'Tina' Grey (archive footage) (uncredited)", "id": 13656, "credit_id": "52fe44649251416c750330e1", "cast_id": 48, "profile_path": "/1HEqQELnhQ7NAC6unYqc4CQ1ib.jpg", "order": 40}, {"name": "Fran Bennett", "character": "Dr. Christine Heffner", "id": 1212018, "credit_id": "52fe44649251416c750330e5", "cast_id": 49, "profile_path": "/eRKURvGYgElPw4sQH36RUGRQdtg.jpg", "order": 41}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe44639251416c7503302f", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.3, "runtime": 112}, "173897": {"poster_path": "/4Aq3xUPDVbTr8AdU1mGcu5PgSc3.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "Alice Abernathy (Milla Jovovich) continues her battle against The Umbrella Corporation's hostile AI system The Red Queen (Megan Charpentier) with the help of her friends Jill Valentine (Sienna Guillory), Leon Scott Kennedy (Johann Urb), Ada Wong (Li Bingbing), and her daughter Becky (Aryanna Engineer), while continuing an uneasy alliance with the former head of Umbrella, Albert Wesker (Shawn Roberts). Along the way, they will reconnect with former comrades Chris Redfield (Wentworth Miller), Claire Redfield (Ali Larter), and Kmart (Spencer Locke). Their epic battle will lead them back to where it all began in the dark mansion built by Umbrella founder Lord Ozwell E. Spencer and the deep underground research and development center known as The Hive, where The Red Queen plots total destruction over the human race.", "video": false, "id": 173897, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Rising", "tagline": "Back To The Hive", "vote_count": 331, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Planned", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2592614", "adult": false, "backdrop_path": null, "production_companies": [], "release_date": "2016-01-01", "popularity": 0.130049416787833, "original_title": "Resident Evil: Rising", "budget": 0, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe4d3ec3a36847f825674f", "cast_id": 5, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Wentworth Miller", "character": "Chris Redfield", "id": 3972, "credit_id": "53445d1ac3a36825a00003e9", "cast_id": 6, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 1}, {"name": "Ali Larter", "character": "Claire Redfield", "id": 17303, "credit_id": "53445d31c3a3682589000426", "cast_id": 7, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 2}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "53445d45c3a36825a80003b9", "cast_id": 8, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 3}, {"name": "Shawn Roberts", "character": "Albert Wesker (rumored)", "id": 81097, "credit_id": "53445d5dc3a36825b10003e2", "cast_id": 9, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 4}, {"name": "Johann Urb", "character": "Leon S. Kennedy", "id": 101017, "credit_id": "53445d73c3a36825a00003ee", "cast_id": 10, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 5}, {"name": "Li Bingbing", "character": "Ada Wong", "id": 109432, "credit_id": "54445de40e0a26633d00626b", "cast_id": 12, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 6}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4d3ec3a36847f8256739", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 6.1, "runtime": 0}, "12242": {"poster_path": "/pxGtt9XOdbFsGthxkGoceYcUccU.jpg", "production_countries": [{"iso_3166_1": "KZ", "name": "Kazakhstan"}, {"iso_3166_1": "MY", "name": "Malaysia"}, {"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "SG", "name": "Singapore"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Fa Mulan gets the surprise of her young life when her love, Captain Li Shang asks for her hand in marriage. Before the two can have their happily ever after, the Emperor assigns them a secret mission, to escort three princesses to Chang'an, China. Mushu is determined to drive a wedge between the couple after he learns that he will lose his guardian job if Mulan marries into the Li family.", "video": false, "id": 12242, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Mulan II", "tagline": "She's primped. She's engaged. She's back.", "vote_count": 82, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zruSw8cPMrB753gisLZcbHISS8x.jpg", "poster_path": "/1fjZKATXsAKvtO6uJqCiNL5u4mK.jpg", "id": 87236, "name": "Mulan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0279967", "adult": false, "backdrop_path": "/7qzlrqvvXvl4SYbjTErZ0x8uZxA.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "SD Entertainment", "id": 29070}], "release_date": "2004-11-13", "popularity": 1.07045851392325, "original_title": "Mulan II", "budget": 0, "cast": [{"name": "Ming-Na Wen", "character": "Mulan", "id": 21702, "credit_id": "52fe44d29251416c750421f3", "cast_id": 11, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 0}, {"name": "BD Wong", "character": "Shang", "id": 14592, "credit_id": "52fe44d29251416c750421f7", "cast_id": 12, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 1}, {"name": "Mark Moseley", "character": "Mushu", "id": 71857, "credit_id": "52fe44d29251416c75042207", "cast_id": 15, "profile_path": "/24r86h395DfNLLjLCubQZzcV1yN.jpg", "order": 2}, {"name": "Lucy Liu", "character": "Mei", "id": 140, "credit_id": "52fe44d29251416c7504220b", "cast_id": 16, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 3}, {"name": "Harvey Fierstein", "character": "Yao", "id": 7420, "credit_id": "52fe44d29251416c7504220f", "cast_id": 17, "profile_path": "/7AN3n6TENCrRhU5pKxEM6W0mCjg.jpg", "order": 4}, {"name": "Sandra Oh", "character": "Ting Ting", "id": 25540, "credit_id": "52fe44d29251416c75042213", "cast_id": 18, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 5}, {"name": "Gedde Watanabe", "character": "Ling", "id": 16183, "credit_id": "52fe44d29251416c75042217", "cast_id": 19, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 6}, {"name": "Lauren Tom", "character": "Su", "id": 15100, "credit_id": "52fe44d29251416c7504221b", "cast_id": 20, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 7}, {"name": "Pat Morita", "character": "The Emperor", "id": 23915, "credit_id": "52fe44d29251416c7504221f", "cast_id": 21, "profile_path": "/onHaaLr9MFPnRcnRkACgPdFoggr.jpg", "order": 8}, {"name": "George Takei", "character": "First Ancestor", "id": 1752, "credit_id": "52fe44d29251416c75042223", "cast_id": 22, "profile_path": "/yXQsJ0ahBXsbxzJUYjwyCxpJHgp.jpg", "order": 9}, {"name": "June Foray", "character": "Grandmother Fa", "id": 15098, "credit_id": "52fe44d29251416c75042227", "cast_id": 23, "profile_path": "/1hu9fjRG1R5kWMsORpf2lGihXHI.jpg", "order": 10}, {"name": "Freda Foh Shen", "character": "Fa Li", "id": 51754, "credit_id": "52fe44d29251416c7504222b", "cast_id": 24, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 11}, {"name": "Frank Welker", "character": "Cri-Kee", "id": 15831, "credit_id": "52fe44d29251416c7504222f", "cast_id": 25, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 12}, {"name": "Soon-Tek Oh", "character": "Fa Zhou", "id": 10345, "credit_id": "52fe44d29251416c75042233", "cast_id": 26, "profile_path": "/6ZNOhKG5ZhqVhVb3qbdZSZ1np65.jpg", "order": 13}, {"name": "Jeff Bennett", "character": "Additional Voices", "id": 34982, "credit_id": "52fe44d29251416c75042237", "cast_id": 27, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 14}, {"name": "Tress MacNeille", "character": "Additional Voices", "id": 34983, "credit_id": "52fe44d29251416c7504223b", "cast_id": 28, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 15}, {"name": "Jerry Tondo", "character": "Chien-Po", "id": 71858, "credit_id": "52fe44d29251416c7504223f", "cast_id": 29, "profile_path": "/ui6AU4y7GrlDwNLgN46kRcKppf7.jpg", "order": 16}, {"name": "Liliana Mumy", "character": "Additional Voices", "id": 71861, "credit_id": "52fe44d29251416c75042243", "cast_id": 30, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 17}, {"name": "Jillian Henry", "character": "Sha-Ron", "id": 71859, "credit_id": "52fe44d29251416c75042247", "cast_id": 31, "profile_path": "/dgi8WOJ9RN0aDZf0N0i0SPf4k38.jpg", "order": 18}, {"name": "Michelle Kwan", "character": "Additional Voices", "id": 71860, "credit_id": "52fe44d29251416c7504224b", "cast_id": 32, "profile_path": "/gZKCxlXU18BP5nStXlEVZatCVrC.jpg", "order": 19}], "directors": [{"name": "Darrell Rooney", "department": "Directing", "job": "Director", "credit_id": "52fe44d29251416c750421b9", "profile_path": null, "id": 58829}, {"name": "Lynne Southerland", "department": "Directing", "job": "Director", "credit_id": "52fe44d29251416c750421d7", "profile_path": null, "id": 71849}], "vote_average": 5.7, "runtime": 79}, "12244": {"poster_path": "/iGMOQt6R88ZuJRtlfpqWRa5268h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31749894, "overview": "When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.", "video": false, "id": 12244, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "9", "tagline": "When our world ended their mission began.", "vote_count": 513, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472033", "adult": false, "backdrop_path": "/jTki4a30PUskfGtOFx6PgYr74H7.jpg", "production_companies": [{"name": "Tim Burton Productions", "id": 8601}, {"name": "Focus Films", "id": 1268}, {"name": "Relativity Media", "id": 7295}, {"name": "Arc Productions", "id": 10280}, {"name": "Starz Animation", "id": 2885}], "release_date": "2009-08-19", "popularity": 1.07255565570476, "original_title": "9", "budget": 30000000, "cast": [{"name": "Elijah Wood", "character": "9 (voice)", "id": 109, "credit_id": "52fe44d29251416c750422cf", "cast_id": 4, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "John C. Reilly", "character": "5 (voice)", "id": 4764, "credit_id": "52fe44d29251416c750422d3", "cast_id": 5, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 1}, {"name": "Jennifer Connelly", "character": "7 (voice)", "id": 6161, "credit_id": "52fe44d29251416c750422d7", "cast_id": 6, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 2}, {"name": "Christopher Plummer", "character": "1 (voice)", "id": 290, "credit_id": "52fe44d29251416c750422db", "cast_id": 7, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 3}, {"name": "Crispin Glover", "character": "6 (voice)", "id": 1064, "credit_id": "52fe44d29251416c750422df", "cast_id": 8, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 4}, {"name": "Martin Landau", "character": "2 (voice)", "id": 2641, "credit_id": "52fe44d29251416c750422e3", "cast_id": 9, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 5}, {"name": "Fred Tatasciore", "character": "8 (voice)", "id": 60279, "credit_id": "52fe44d29251416c750422e7", "cast_id": 10, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 6}, {"name": "Alan Oppenheimer", "character": "Scientist (voice)", "id": 24320, "credit_id": "547de6afc3a3685aed0065be", "cast_id": 43, "profile_path": "/va1bmZNM4A7OuRGtVcr7LXO7Of.jpg", "order": 7}, {"name": "Tom Kane", "character": "Dictator (voice)", "id": 71535, "credit_id": "547de6f0c3a3685afd005e51", "cast_id": 44, "profile_path": "/hAyEHNuhD6PqbPdCNR7iUyM271I.jpg", "order": 8}, {"name": "Helen Wilson", "character": "News Caster (voice)", "id": 1393025, "credit_id": "547de7339251412d780059ee", "cast_id": 45, "profile_path": null, "order": 9}], "directors": [{"name": "Shane Acker", "department": "Directing", "job": "Director", "credit_id": "52fe44d29251416c750422bf", "profile_path": "/gg1UJKKV8h10lro2OxzCeThAHOv.jpg", "id": 71923}], "vote_average": 6.4, "runtime": 79}, "102362": {"poster_path": "/sPiBN42QNVGVlnHVf1nrigiu6TP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18074539, "overview": "In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.", "video": false, "id": 102362, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Dead Man Down", "tagline": "Blood demands blood", "vote_count": 360, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sq", "name": "shqip"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2101341", "adult": false, "backdrop_path": "/5Pe5Y4FHukgrtq504VbssxPmEVa.jpg", "production_companies": [{"name": "Original Film", "id": 333}], "release_date": "2013-03-08", "popularity": 1.20660824944983, "original_title": "Dead Man Down", "budget": 0, "cast": [{"name": "Colin Farrell", "character": "Victor", "id": 72466, "credit_id": "52fe4a07c3a36847f81b4551", "cast_id": 1, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Beatrice", "id": 87722, "credit_id": "52fe4a07c3a36847f81b4555", "cast_id": 2, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Terrence Howard", "character": "Alphonse", "id": 18288, "credit_id": "52fe4a07c3a36847f81b4599", "cast_id": 14, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 2}, {"name": "Dominic Cooper", "character": "Darcy", "id": 55470, "credit_id": "52fe4a07c3a36847f81b4595", "cast_id": 13, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 3}, {"name": "Raw Leiba", "character": "Toilet Guy", "id": 226112, "credit_id": "52fe4a07c3a36847f81b45a1", "cast_id": 16, "profile_path": "/oWh4169YdntzJpfG7JhIX5Sp9xN.jpg", "order": 4}, {"name": "Raymond Mamrak", "character": "NYPD Officer Daniels", "id": 1106629, "credit_id": "52fe4a07c3a36847f81b45a5", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Franky G", "character": "Luco", "id": 2682, "credit_id": "52fe4a07c3a36847f81b45a9", "cast_id": 18, "profile_path": "/2C6BTj03PQlbCIzb1zAv9gcMr5l.jpg", "order": 6}, {"name": "Jennifer Mudge", "character": "Florence", "id": 155134, "credit_id": "52fe4a07c3a36847f81b45ad", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Jennifer Butler", "character": "Jeep Driver", "id": 118941, "credit_id": "52fe4a07c3a36847f81b45b1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Isabelle Huppert", "character": "Valentine Louzon", "id": 17882, "credit_id": "52fe4a07c3a36847f81b45b5", "cast_id": 22, "profile_path": "/nrbXaDh5zQEi2G7T5OILInm3f9p.jpg", "order": 9}, {"name": "Armand Assante", "character": "", "id": 23346, "credit_id": "52fe4a07c3a36847f81b459d", "cast_id": 15, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 10}, {"name": "Stuart Bennett", "character": "", "id": 565426, "credit_id": "52fe4a07c3a36847f81b45b9", "cast_id": 23, "profile_path": "/7kxaHMxoNLOANQblVuGpHQxxb3R.jpg", "order": 11}, {"name": "Luis Da Silva Jr.", "character": "Terry", "id": 37149, "credit_id": "52fe4a07c3a36847f81b45bd", "cast_id": 24, "profile_path": "/6VADPoVvQTFqiFhmHMJovneXX26.jpg", "order": 12}, {"name": "Declan Mulvey", "character": "Goff", "id": 61329, "credit_id": "52fe4a07c3a36847f81b45c1", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "John Cenatiempo", "character": "Charles", "id": 206398, "credit_id": "53ecced6c3a368168f00003f", "cast_id": 49, "profile_path": "/wUkUgFzXLEPnyegeWO3HK0w9Gyg.jpg", "order": 14}, {"name": "Roy James Wilson", "character": "Blotto", "id": 1272973, "credit_id": "52fe4a07c3a36847f81b45c9", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Myles Humphus", "character": "Lance", "id": 1272974, "credit_id": "52fe4a07c3a36847f81b45cd", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Stephen Hill", "character": "Roland", "id": 1085150, "credit_id": "52fe4a07c3a36847f81b45d1", "cast_id": 29, "profile_path": "/LMi49EyD1LPCnfDT0mbyOfFQAy.jpg", "order": 17}, {"name": "Aaron Vexler", "character": "Paul", "id": 1045964, "credit_id": "52fe4a07c3a36847f81b45d5", "cast_id": 30, "profile_path": "/yBzhpya88GGOdD6WG8YmwKHIFWq.jpg", "order": 18}, {"name": "James Biberi", "character": "Ilir", "id": 37156, "credit_id": "52fe4a07c3a36847f81b45d9", "cast_id": 31, "profile_path": "/vgkESTjzqdFsbkzGhDPcIDEcTAq.jpg", "order": 19}, {"name": "F. Murray Abraham", "character": "Gregor", "id": 1164, "credit_id": "52fe4a07c3a36847f81b45dd", "cast_id": 32, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 20}, {"name": "Andrew Stewart-Jones", "character": "Harry", "id": 80001, "credit_id": "52fe4a07c3a36847f81b45e1", "cast_id": 33, "profile_path": "/ez0PyljVu62j17jhMHpL0MbfgU4.jpg", "order": 21}, {"name": "Krystal Tini", "character": "Harry's Girl", "id": 1167280, "credit_id": "52fe4a07c3a36847f81b45e5", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "William Zielinski", "character": "Alex", "id": 1272975, "credit_id": "52fe4a07c3a36847f81b45e9", "cast_id": 35, "profile_path": null, "order": 23}, {"name": "Jessica Jean Wilson", "character": "Alex's Girl", "id": 1272976, "credit_id": "52fe4a07c3a36847f81b45ed", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Christopher Cline", "character": "Doctor", "id": 1272977, "credit_id": "52fe4a07c3a36847f81b45f1", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Beata Dalton", "character": "Anka", "id": 1272978, "credit_id": "52fe4a07c3a36847f81b45f5", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Accalia Quintana", "character": "Delphine", "id": 1272979, "credit_id": "52fe4a07c3a36847f81b45f9", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Maria Laboy", "character": "Matilde", "id": 1272980, "credit_id": "52fe4a07c3a36847f81b45fd", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Saul Stein", "character": "Andras", "id": 1187, "credit_id": "52fe4a07c3a36847f81b4601", "cast_id": 41, "profile_path": "/ue2OdxwhFGpFbYz5W5ZGiX08lIO.jpg", "order": 29}, {"name": "Roy Milton Davis", "character": "Derelict", "id": 203757, "credit_id": "52fe4a07c3a36847f81b4605", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Ante Novakovic", "character": "Peter", "id": 1272981, "credit_id": "52fe4a07c3a36847f81b4609", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "Kresh Novakovic", "character": "Carl", "id": 1179646, "credit_id": "52fe4a07c3a36847f81b460d", "cast_id": 44, "profile_path": "/4s4esdeedxzItDn0IY2Kq8FPZ4V.jpg", "order": 32}], "directors": [{"name": "Niels Arden Oplev", "department": "Directing", "job": "Director", "credit_id": "52fe4a07c3a36847f81b455b", "profile_path": "/kC0qwxbWkZkWC3zT8w8x6xatHq1.jpg", "id": 19346}], "vote_average": 5.6, "runtime": 118}, "20453": {"poster_path": "/wbE5SRTZFtQxgj2nIo4HJpQDk0k.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}], "revenue": 70000000, "overview": "In the tradition of \u201cFerris Bueller\u2019s Day Off\u201d comes this refreshing comedy about a rebellious prankster with a crafty mind and a heart of gold. Rascal. Joker. Dreamer. Genius... You've never met a college student quite like \"Rancho.\" From the moment he arrives at India's most prestigious university, Rancho's outlandish schemes turn the campus upside down\u2014along with the lives of his two newfound best friends. Together, they make life miserable for \"Virus,\" the school\u2019s uptight and heartless dean. But when Rancho catches the eye of the dean's sexy daughter, Virus sets his sights on flunking out the \"3 idiots\" once and for all.", "video": false, "id": 20453, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "3 Idiots", "tagline": "", "vote_count": 505, "homepage": "http://idiotsacademy.zapak.com/idiotsmain.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}], "imdb_id": "tt1187043", "adult": false, "backdrop_path": "/6LnwpadKFRrqam7IfBAi3lNTz6Y.jpg", "production_companies": [{"name": "Vidhu Vinod Chopra Productions", "id": 3781}], "release_date": "2009-12-25", "popularity": 0.469431072926887, "original_title": "3 Idiots", "budget": 9000000, "cast": [{"name": "Aamir Khan", "character": "Rancho", "id": 52763, "credit_id": "52fe43e7c3a368484e004fdf", "cast_id": 5, "profile_path": "/jYohlUVkLPFdnDryZ8V1HZkJzDt.jpg", "order": 0}, {"name": "Kareena Kapoor", "character": "Pia", "id": 37233, "credit_id": "52fe43e7c3a368484e004fe3", "cast_id": 6, "profile_path": "/kDYeBENXcVKfHJjSHlciNCLmtrG.jpg", "order": 1}, {"name": "Madhavan", "character": "Farhan", "id": 85519, "credit_id": "52fe43e7c3a368484e004fe7", "cast_id": 7, "profile_path": "/jxqEx4Ii9aYx7kkkz1Mx7FWrjCt.jpg", "order": 2}, {"name": "Sharman Joshi", "character": "Raju", "id": 53674, "credit_id": "52fe43e7c3a368484e004feb", "cast_id": 8, "profile_path": "/lasmei1SoWkSZxWQtNh2bI10T2H.jpg", "order": 3}, {"name": "Boman Irani", "character": "Viru Sahastrabudhhe", "id": 35779, "credit_id": "52fe43e7c3a368484e004fef", "cast_id": 9, "profile_path": "/ybhFam8adUpWz3Re49T8uDm8DcT.jpg", "order": 4}, {"name": "Mona Singh", "character": "Mona", "id": 99711, "credit_id": "52fe43e7c3a368484e004ff3", "cast_id": 10, "profile_path": "/7TwENHIMjKZO6wYTVGy9nqhVYLZ.jpg", "order": 5}, {"name": "Omi Vaidya", "character": "Chatur Ramalingam", "id": 169201, "credit_id": "52fe43e7c3a368484e004ff7", "cast_id": 11, "profile_path": "/jMsHqlrz41ZpD7REys78ZaCTM3U.jpg", "order": 6}], "directors": [{"name": "Rajkumar Hirani", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a368484e004fcf", "profile_path": null, "id": 85675}], "vote_average": 7.7, "runtime": 170}, "8871": {"poster_path": "/yxrcPwWcc640w8o6PLKpjtLwd7a.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 345141403, "overview": "Inside a snowflake exists the magical land of Whoville. In Whoville, live the Whos, an almost mutated sort of Munchkin-like people. All the Whos love Christmas, yet just outside of their beloved Whoville lives the Grinch. The Grinch is a nasty creature that hates Christmas, and plots to steal it away from the Whos, whom he equally abhors. Yet a small child, Cindy Lou Who, decides to try befriend the Grinch.", "video": false, "id": 8871, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "How the Grinch Stole Christmas", "tagline": "He puts the mean in green.", "vote_count": 285, "homepage": "http://www.grinched.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0170016", "adult": false, "backdrop_path": "/wWPJpoCGNq3cDYbFqPTWtvJSzqs.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}], "release_date": "2000-11-17", "popularity": 1.23786994171117, "original_title": "How the Grinch Stole Christmas", "budget": 123000000, "cast": [{"name": "Jim Carrey", "character": "Grinch", "id": 206, "credit_id": "52fe44c2c3a36847f80a868f", "cast_id": 11, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Taylor Momsen", "character": "Cindy Lou Who", "id": 20480, "credit_id": "52fe44c2c3a36847f80a8693", "cast_id": 12, "profile_path": "/aQWKBAOVMV39bT3IhzdOtXQxTvr.jpg", "order": 1}, {"name": "Jeffrey Tambor", "character": "Mayor Augustus Maywho", "id": 4175, "credit_id": "52fe44c2c3a36847f80a8697", "cast_id": 13, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 2}, {"name": "Christine Baranski", "character": "Martha May Whovier", "id": 11870, "credit_id": "52fe44c2c3a36847f80a869b", "cast_id": 14, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 3}, {"name": "Bill Irwin", "character": "Lou Lou Who", "id": 58549, "credit_id": "52fe44c2c3a36847f80a869f", "cast_id": 15, "profile_path": "/zjvhlCC1LA5JUwfScQTwS1xLciP.jpg", "order": 4}, {"name": "Molly Shannon", "character": "Betty Lout Who", "id": 28640, "credit_id": "52fe44c2c3a36847f80a86a3", "cast_id": 16, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 5}, {"name": "Clint Howard", "character": "Whobris", "id": 15661, "credit_id": "52fe44c2c3a36847f80a86a7", "cast_id": 17, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 6}, {"name": "Josh Ryan Evans", "character": "8-Year-Old Grinch", "id": 167661, "credit_id": "52fe44c2c3a36847f80a86ab", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Mindy Sterling", "character": "Clarnella", "id": 13924, "credit_id": "52fe44c2c3a36847f80a86af", "cast_id": 19, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 8}, {"name": "Rachel Winfree", "character": "Rose", "id": 155983, "credit_id": "52fe44c2c3a36847f80a86b3", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Rance Howard", "character": "Elderly Timekeeper", "id": 22250, "credit_id": "53832c10c3a36805a100845a", "cast_id": 27, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 10}, {"name": "Jeremy Howard", "character": "Drew Lou Who", "id": 15034, "credit_id": "52fe44c2c3a36847f80a86bb", "cast_id": 22, "profile_path": "/4GyPGjrvqs3zes8I1SWrQWukrA9.jpg", "order": 11}, {"name": "T. J. Thyne", "character": "Stu Lou Who", "id": 151263, "credit_id": "52fe44c2c3a36847f80a86bf", "cast_id": 23, "profile_path": "/giBl5eCVMhitbZ89iLRqoBDCbN7.jpg", "order": 12}, {"name": "Lacey Kohl", "character": "Christina Whoterberry", "id": 168415, "credit_id": "52fe44c2c3a36847f80a86c3", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Nadja Pionilla", "character": "Junie", "id": 239979, "credit_id": "52fe44c2c3a36847f80a86c7", "cast_id": 25, "profile_path": null, "order": 14}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a8655", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 5.9, "runtime": 104}, "77805": {"poster_path": "/uLlZjHh3P7ZopetmRr7ar3TYIQ0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Story of Linda Lovelace, who is used and abused by the porn industry at the behest of her coercive husband, before taking control of her life.", "video": false, "id": 77805, "genres": [{"id": 18, "name": "Drama"}], "title": "Lovelace", "tagline": "The truth goes deeper than you think.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1426329", "adult": false, "backdrop_path": "/4z77i6kxomsphwdSbksCKFeWnJZ.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Helios-Filmproduktion", "id": 2123}, {"name": "Animus Films", "id": 4135}], "release_date": "2013-08-09", "popularity": 0.637139497382797, "original_title": "Lovelace", "budget": 10000000, "cast": [{"name": "Amanda Seyfried", "character": "Linda Lovelace", "id": 71070, "credit_id": "52fe497dc3a368484e12df3b", "cast_id": 1, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Peter Sarsgaard", "character": "Chuck Traynor", "id": 133, "credit_id": "52fe497dc3a368484e12df7b", "cast_id": 16, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 1}, {"name": "Hank Azaria", "character": "Jerry Damiano", "id": 5587, "credit_id": "52fe497dc3a368484e12df6b", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 2}, {"name": "Adam Brody", "character": "Harry Reems", "id": 11702, "credit_id": "52fe497dc3a368484e12df83", "cast_id": 19, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "James Franco", "character": "Hugh Hefner", "id": 17051, "credit_id": "52fe497dc3a368484e12df67", "cast_id": 10, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 4}, {"name": "Sharon Stone", "character": "Dorothy Boreman", "id": 4430, "credit_id": "52fe497dc3a368484e12df77", "cast_id": 15, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 5}, {"name": "Wes Bentley", "character": "Larry Marchiano", "id": 8210, "credit_id": "52fe497dc3a368484e12df63", "cast_id": 9, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 6}, {"name": "Juno Temple", "character": "Patsy", "id": 36594, "credit_id": "52fe497dc3a368484e12df6f", "cast_id": 12, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 7}, {"name": "Chlo\u00eb Sevigny", "character": "Rebecca", "id": 2838, "credit_id": "52fe497dc3a368484e12df73", "cast_id": 13, "profile_path": "/nAnenV1d86lMD4XrjtHbBN7Vjap.jpg", "order": 8}, {"name": "Eric Roberts", "character": "Nat Laurendi", "id": 21315, "credit_id": "52fe497dc3a368484e12df7f", "cast_id": 17, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 9}, {"name": "Bobby Cannavale", "character": "Butchie Peraino", "id": 21127, "credit_id": "52fe497dc3a368484e12df87", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 10}, {"name": "Robert Patrick", "character": "John J. Boreman", "id": 418, "credit_id": "52fe497dc3a368484e12df8b", "cast_id": 21, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 11}, {"name": "Chris Noth", "character": "Anthony Romano", "id": 38026, "credit_id": "52fe497dc3a368484e12dffb", "cast_id": 40, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 12}, {"name": "Debi Mazar", "character": "Dolly", "id": 5578, "credit_id": "52fe497dc3a368484e12dfff", "cast_id": 41, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 13}], "directors": [{"name": "Rob Epstein", "department": "Directing", "job": "Director", "credit_id": "52fe497dc3a368484e12df41", "profile_path": null, "id": 109402}, {"name": "Jeffrey Friedman", "department": "Directing", "job": "Director", "credit_id": "52fe497dc3a368484e12df47", "profile_path": null, "id": 109403}], "vote_average": 6.1, "runtime": 92}, "102382": {"poster_path": "/mUjWof8LHDgCZC9mFp0UYKBf1Dm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 705717432, "overview": "For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen\u2019s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.", "video": false, "id": 102382, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Amazing Spider-Man 2", "tagline": "No more secrets.", "vote_count": 1446, "homepage": "http://www.theamazingspiderman.com", "belongs_to_collection": {"backdrop_path": "/aLrNTcLN2kDu9jAJ4tS5haiWGc6.jpg", "poster_path": "/moNJa86FgDYy8SWeDym2gnsLLMa.jpg", "id": 125574, "name": "The Amazing Spider-Man Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1872181", "adult": false, "backdrop_path": "/tmFDgDmrdp5DYezwpL0ymQKIbnV.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures", "id": 34}], "release_date": "2014-05-02", "popularity": 3.54534796320673, "original_title": "The Amazing Spider-Man 2", "budget": 200000000, "cast": [{"name": "Andrew Garfield", "character": "Spider-Man / Peter Parker", "id": 37625, "credit_id": "52fe4a07c3a36847f81b477b", "cast_id": 3, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 0}, {"name": "Emma Stone", "character": "Gwen Stacy", "id": 54693, "credit_id": "52fe4a07c3a36847f81b4777", "cast_id": 2, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Jamie Foxx", "character": "Electro / Max Dillon", "id": 134, "credit_id": "52fe4a07c3a36847f81b4783", "cast_id": 6, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 2}, {"name": "Dane DeHaan", "character": "Green Goblin / Harry Osborn", "id": 122889, "credit_id": "52fe4a07c3a36847f81b477f", "cast_id": 5, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 3}, {"name": "Colm Feore", "character": "Donald Menken", "id": 10132, "credit_id": "52fe4a07c3a36847f81b4793", "cast_id": 10, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 4}, {"name": "Felicity Jones", "character": "Felicia", "id": 72855, "credit_id": "52fe4a07c3a36847f81b478f", "cast_id": 9, "profile_path": "/gU3lCDCdiY1uAVGFFyTcSQ3M7E8.jpg", "order": 5}, {"name": "Paul Giamatti", "character": "Aleksei Sytsevich", "id": 13242, "credit_id": "52fe4a07c3a36847f81b478b", "cast_id": 8, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 6}, {"name": "Sally Field", "character": "Aunt May", "id": 35, "credit_id": "52fe4a07c3a36847f81b47d3", "cast_id": 22, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 7}, {"name": "Embeth Davidtz", "character": "Mary Parker", "id": 6368, "credit_id": "5339838b9251417da1004a01", "cast_id": 31, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 8}, {"name": "Campbell Scott", "character": "Richard Parker", "id": 55152, "credit_id": "5362ab130e0a261dfe000318", "cast_id": 32, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 9}, {"name": "Marton Csokas", "character": "Dr. Ashley Kafka", "id": 20982, "credit_id": "52fe4a07c3a36847f81b47e9", "cast_id": 27, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 10}, {"name": "Louis Cancelmi", "character": "Man in Black Suit", "id": 163731, "credit_id": "5362ab540e0a261df8000372", "cast_id": 33, "profile_path": "/nBKho9ainr5j8Sn8FH1L96w4wxX.jpg", "order": 11}, {"name": "Max Charles", "character": "Young Peter Parker", "id": 558928, "credit_id": "5362ab600e0a261e0600033f", "cast_id": 34, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 12}, {"name": "Sarah Gadon", "character": "Kari", "id": 190895, "credit_id": "5362ab6b0e0a261e1600033e", "cast_id": 35, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 14}, {"name": "Stan Lee", "character": "Graduation Guest", "id": 7624, "credit_id": "5362abfe0e0a261dfb000381", "cast_id": 36, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 15}, {"name": "Chris Cooper", "character": "Norman Osborn", "id": 2955, "credit_id": "52fe4a07c3a36847f81b47d7", "cast_id": 23, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 16}, {"name": "Frank Deal", "character": "Agent Berkley", "id": 171886, "credit_id": "52fe4a07c3a36847f81b47e5", "cast_id": 26, "profile_path": "/k0Gn9ZgMuUQ0jFeVuvK6Vyh14ZU.jpg", "order": 17}, {"name": "Denis Leary", "character": "Captain Stacy", "id": 5724, "credit_id": "52fe4a07c3a36847f81b47e1", "cast_id": 25, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 18}, {"name": "Martin Sheen", "character": "Uncle Ben", "id": 8349, "credit_id": "52fe4a07c3a36847f81b4787", "cast_id": 7, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 19}, {"name": "Chris Zylka", "character": "Flash Thompson", "id": 231547, "credit_id": "52fe4a07c3a36847f81b47ed", "cast_id": 28, "profile_path": "/t1fXLPQccNXSEEabN6ORLKq8tnb.jpg", "order": 20}, {"name": "B. J. Novak", "character": "Allistar Smythe", "id": 107770, "credit_id": "54bc03f3c3a3687c40002139", "cast_id": 118, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 21}], "directors": [{"name": "Marc Webb", "department": "Directing", "job": "Director", "credit_id": "52fe4a07c3a36847f81b4773", "profile_path": "/7uFlVK5BDTjk6IK9iBCmfrdaAs6.jpg", "id": 87742}], "vote_average": 6.8, "runtime": 142}, "8872": {"poster_path": "/ttv6BA0DOes1zXMnQSNXTGeGkdJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 121697323, "overview": "When a sleazy TV exec offers Wayne and Garth a fat contract to tape their late-night public access show at his network, they can't believe their good fortune. But they soon discover the road from basement to big-time is a gnarly one, fraught with danger, temptation and ragin' party opportunities.", "video": false, "id": 8872, "genres": [{"id": 35, "name": "Comedy"}], "title": "Wayne's World", "tagline": "You'll laugh. You'll cry. You'll hurl.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o0FVB2mVYTIjTuu89tW98QGzZzi.jpg", "poster_path": "/jA5fypLkiICd3BmWYIEh6uuMB1y.jpg", "id": 8979, "name": "Wayne's World Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0105793", "adult": false, "backdrop_path": "/oYV7W4MAJGxI1hPcWr95IwPtmAt.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1992-02-14", "popularity": 0.258955934170197, "original_title": "Wayne's World", "budget": 20000000, "cast": [{"name": "Mike Myers", "character": "Wayne Campbell", "id": 12073, "credit_id": "52fe44c2c3a36847f80a8701", "cast_id": 1, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Dana Carvey", "character": "Garth Algar", "id": 56159, "credit_id": "52fe44c2c3a36847f80a8705", "cast_id": 2, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 1}, {"name": "Rob Lowe", "character": "Benjamin Kane", "id": 2879, "credit_id": "52fe44c2c3a36847f80a8709", "cast_id": 3, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 2}, {"name": "Tia Carrere", "character": "Cassandra", "id": 13445, "credit_id": "52fe44c2c3a36847f80a870d", "cast_id": 4, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 3}, {"name": "Lara Flynn Boyle", "character": "Stacy", "id": 6684, "credit_id": "52fe44c2c3a36847f80a8711", "cast_id": 5, "profile_path": "/m6yHSVEjItgFkMAKB3zOdOoLITy.jpg", "order": 4}, {"name": "Chris Farley", "character": "Security Guard", "id": 58198, "credit_id": "52fe44c2c3a36847f80a8751", "cast_id": 16, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 5}, {"name": "Brian Doyle-Murray", "character": "Noah Vanderhoff", "id": 1535, "credit_id": "52fe44c2c3a36847f80a8755", "cast_id": 17, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 6}, {"name": "Donna Dixon", "character": "Dreamwoman", "id": 56933, "credit_id": "52fe44c2c3a36847f80a8759", "cast_id": 18, "profile_path": "/ayVQ8wBWBZGq4Ki9ED9gDznAEbm.jpg", "order": 7}, {"name": "Meat Loaf", "character": "Tiny", "id": 7470, "credit_id": "52fe44c2c3a36847f80a875d", "cast_id": 19, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Bad Cop / T-1000", "id": 418, "credit_id": "52fe44c2c3a36847f80a8761", "cast_id": 20, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Alice Cooper", "character": "Himself", "id": 35824, "credit_id": "52fe44c2c3a36847f80a8765", "cast_id": 21, "profile_path": "/Aj964wqD6ItA2rwSBKlgl0kzuGf.jpg", "order": 10}, {"name": "Ed O'Neill", "character": "Glen", "id": 18977, "credit_id": "52fe44c2c3a36847f80a8769", "cast_id": 22, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 11}, {"name": "Colleen Camp", "character": "Mrs. Vanderhoff", "id": 13023, "credit_id": "52fe44c2c3a36847f80a876d", "cast_id": 23, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 12}, {"name": "Lee Tergesen", "character": "Terry", "id": 6906, "credit_id": "5323fe12c3a3683dbf0004d4", "cast_id": 24, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 13}, {"name": "Kurt Fuller", "character": "Russell Finley", "id": 29685, "credit_id": "53e8ff610e0a266f9700454d", "cast_id": 25, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 14}, {"name": "Mike Hagerty", "character": "Davy", "id": 15105, "credit_id": "54efb821c3a3682e710000b2", "cast_id": 26, "profile_path": "/xDfY3QdSlvS7UwDr6DP1YjYNgzu.jpg", "order": 15}], "directors": [{"name": "Penelope Spheeris", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a8717", "profile_path": "/6MiXfO2EdA0keiJf0RmGNfLTvAc.jpg", "id": 58448}], "vote_average": 6.6, "runtime": 94}, "126963": {"poster_path": "/xI5LlCzSkp8iFSbmla0Dh4iT5ie.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. Wiss, the God of Creation, along with Bills, the God of Destruction, are tasked with maintaining some sort of balance in the universe. After awakening from a long slumber, Bills is visited by Wiss and he learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Bills, but he is easily overwhelmed and defeated. Bills leaves, but his eerie remark of \"Is there nobody on Earth more worthy to destroy?\" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.", "video": false, "id": 126963, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}], "title": "Dragon Ball Z: Battle of Gods", "tagline": "", "vote_count": 111, "homepage": "http://www.dragonball2013.com/", "belongs_to_collection": {"backdrop_path": "/qSb5nFCvBwvaOZBCdCfr382iopT.jpg", "poster_path": "/9y5zvzzMXqgvorvKMzLju9cPGA3.jpg", "id": 39099, "name": "Dragon Ball Saga"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2263944", "adult": false, "backdrop_path": "/xKVE8ZsNUBBI0sE4Vpv8yv6DsPZ.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Toei Animation Company", "id": 3116}, {"name": "Yasahi-Mation Productions", "id": 50411}], "release_date": "2013-03-30", "popularity": 0.854959313310066, "original_title": "\u30c9\u30e9\u30b4\u30f3\u30dc\u30fc\u30ebZ \u795e\u3068\u795e", "budget": 0, "cast": [{"name": "Masako Nozawa", "character": "Son Goku / Son Gohan / Son Goten / Gotenks", "id": 90496, "credit_id": "52fe4aecc3a368484e16e03b", "cast_id": 5, "profile_path": "/5vf5AbB3ElUrkhSgSJxsBvTfyH5.jpg", "order": 0}, {"name": "Toshio Furukawa", "character": "Piccolo", "id": 129961, "credit_id": "52fe4aecc3a368484e16e047", "cast_id": 8, "profile_path": "/ZgWhKSebhi4kRAra2CLMCrVkb6.jpg", "order": 3}, {"name": "K\u00f4ichi Yamadera", "character": "Bills", "id": 40328, "credit_id": "52fe4aecc3a368484e16e04b", "cast_id": 9, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 4}, {"name": "Masakazu Morita", "character": "Whis", "id": 78402, "credit_id": "52fe4aecc3a368484e16e04f", "cast_id": 10, "profile_path": "/mJMY7VacWIrFEqjo55HTZlhCN9.jpg", "order": 5}, {"name": "Sh\u00f4ko Nakagawa", "character": "Oracle Fish", "id": 1024388, "credit_id": "52fe4aecc3a368484e16e053", "cast_id": 11, "profile_path": "/8PH42jePxuuCjo5yolE1Z8alOOX.jpg", "order": 6}, {"name": "J\u00f4ji Yanami", "character": "Kaio / Dr. Briefs / Narrator", "id": 619, "credit_id": "52fe4aecc3a368484e16e057", "cast_id": 12, "profile_path": "/6PgJcEz2RgGcZ1TwfkIIuhrUaXz.jpg", "order": 7}, {"name": "Kenji Utsumi", "character": "Shenlong", "id": 83930, "credit_id": "52fe4aecc3a368484e16e05b", "cast_id": 13, "profile_path": "/beAQh6z1knAxOxzdDOwbaZpbhLK.jpg", "order": 8}, {"name": "Mayumi Tanaka", "character": "Kuririn", "id": 65510, "credit_id": "52fe4aecc3a368484e16e05f", "cast_id": 14, "profile_path": "/rGUGLXCbdEb3KO7lRmLg0szNn4k.jpg", "order": 9}, {"name": "T\u014dru Furuya", "character": "Yamcha", "id": 40327, "credit_id": "52fe4aecc3a368484e16e063", "cast_id": 15, "profile_path": "/9fuENGDDd6C30IudobBV8uh2XaK.jpg", "order": 10}, {"name": "Hikaru Midorikawa", "character": "Tenshinhan", "id": 122726, "credit_id": "52fe4aecc3a368484e16e067", "cast_id": 16, "profile_path": "/67LlDJlFDeIrZlI4o6IM23fG7Tr.jpg", "order": 11}, {"name": "K\u014dz\u014d Shioya", "character": "Majin Buu", "id": 100126, "credit_id": "52fe4aecc3a368484e16e06b", "cast_id": 17, "profile_path": "/pfIah5nRldMMsCdS79Ff5l40cIC.jpg", "order": 12}, {"name": "Shigeru Chiba", "character": "Pilaf", "id": 105816, "credit_id": "52fe4aecc3a368484e16e06f", "cast_id": 18, "profile_path": "/23GASkx3cOtzgtBkrDTj44nbpVg.jpg", "order": 13}, {"name": "Hiromi Tsuru", "character": "Bulma", "id": 122193, "credit_id": "52fe4aecc3a368484e16e073", "cast_id": 19, "profile_path": "/oaIWrqxdoFd1ErdmCSlIIIIZAVF.jpg", "order": 14}, {"name": "Tessh\u014d Genda", "character": "Shu", "id": 1681, "credit_id": "52fe4aecc3a368484e16e077", "cast_id": 20, "profile_path": "/ahCru7z0zyaV6RV1uCP0HBNLRoC.jpg", "order": 15}, {"name": "Takeshi Kusao", "character": "Trunks/Gotenks", "id": 1686, "credit_id": "52fe4aecc3a368484e16e07b", "cast_id": 21, "profile_path": "/8IG3iCbOJGQPINr2Xud3ple1cVQ.jpg", "order": 16}, {"name": "Unsh\u014d Ishizuka", "character": "Mr. Satan", "id": 68916, "credit_id": "52fe4aecc3a368484e16e07f", "cast_id": 22, "profile_path": "/msFDooyGBJLzWESwvvnjht6AnbV.jpg", "order": 17}, {"name": "Aya Hirano", "character": "Dende", "id": 144650, "credit_id": "52fe4aecc3a368484e16e083", "cast_id": 23, "profile_path": "/1EvMdPwUI9gvuqVjfLL6WS71j4U.jpg", "order": 18}, {"name": "Miki It\u014d", "character": "Android 18", "id": 122660, "credit_id": "52fe4aecc3a368484e16e087", "cast_id": 24, "profile_path": "/2zKRoHrmJ9TLTq02thhQossC7Z.jpg", "order": 19}, {"name": "Naoko Watanabe", "character": "Puar / Chi-Chi", "id": 122192, "credit_id": "536b91e40e0a2647d800c0ef", "cast_id": 30, "profile_path": "/7J8B6YfriVtzc1Uo54zMmsRo6f7.jpg", "order": 20}, {"name": "Y\u00f4ko Kawanami", "character": "Bulma's Mom", "id": 1156655, "credit_id": "52fe4aecc3a368484e16e08f", "cast_id": 26, "profile_path": "/nf95S4ParBozTAkizl7f3TeHaiI.jpg", "order": 22}, {"name": "Ry\u016bzabur\u014d \u014ctomo", "character": "Gyuumao", "id": 126690, "credit_id": "52fe4aecc3a368484e16e093", "cast_id": 27, "profile_path": "/320g6pV2VdBAYhlruAZ1lq5XCNP.jpg", "order": 23}, {"name": "Y\u016bko Minaguchi", "character": "Videl", "id": 90569, "credit_id": "52fe4aecc3a368484e16e097", "cast_id": 28, "profile_path": "/pFppi36nefwHTXzLGLcwKMDjZrn.jpg", "order": 24}, {"name": "Ry\u014d Horikawa", "character": "Vegeta", "id": 122501, "credit_id": "536d3f68c3a36839c100213f", "cast_id": 31, "profile_path": "/3FhW3i3vmXtqojE7oWFyBsKkcTD.jpg", "order": 25}], "directors": [{"name": "Masahiro Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe4aecc3a368484e16e037", "profile_path": null, "id": 1083453}], "vote_average": 6.5, "runtime": 121}, "8873": {"poster_path": "/pBs9DuzWhqWX7vPjzB6AvAXKXzM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47965000, "overview": "A message from Jim Morrison in a dream prompts cable access TV stars Wayne and Garth to put on a rock concert, \"Waynestock,\" with Aerosmith as headliners. But amid the preparations, Wayne frets that a record producer is putting the moves on his girlfriend, Cassandra, while Garth handles the advances of mega-babe Honey Hornee.", "video": false, "id": 8873, "genres": [{"id": 35, "name": "Comedy"}], "title": "Wayne's World 2", "tagline": "You'll laugh again! You'll cry again!! You'll hurl again!!!", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/o0FVB2mVYTIjTuu89tW98QGzZzi.jpg", "poster_path": "/jA5fypLkiICd3BmWYIEh6uuMB1y.jpg", "id": 8979, "name": "Wayne's World Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108525", "adult": false, "backdrop_path": "/o6XaLo1epkwxx3t1MN7KuiWwkHF.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1993-12-10", "popularity": 0.13599335575974, "original_title": "Wayne's World 2", "budget": 0, "cast": [{"name": "Mike Myers", "character": "Wayne Campbell", "id": 12073, "credit_id": "52fe44c2c3a36847f80a87e1", "cast_id": 10, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Dana Carvey", "character": "Garth Algar", "id": 56159, "credit_id": "52fe44c2c3a36847f80a87e5", "cast_id": 11, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Bobby Cahn", "id": 4690, "credit_id": "52fe44c2c3a36847f80a87e9", "cast_id": 12, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Tia Carrere", "character": "Cassandra Wong", "id": 13445, "credit_id": "52fe44c2c3a36847f80a87ed", "cast_id": 13, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 3}, {"name": "Chris Farley", "character": "Milton", "id": 58198, "credit_id": "52fe44c2c3a36847f80a87f1", "cast_id": 14, "profile_path": "/ldb7EHLzaitQBaVX1sxrD9na0vZ.jpg", "order": 4}, {"name": "James Hong", "character": "Jeff Wong", "id": 20904, "credit_id": "52fe44c2c3a36847f80a87f5", "cast_id": 15, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 5}, {"name": "Rip Taylor", "character": "Himself", "id": 37438, "credit_id": "52fe44c2c3a36847f80a87f9", "cast_id": 16, "profile_path": "/iMtu2vnCBN6o6qC3OJ6VdWCQBYY.jpg", "order": 6}, {"name": "Steven Tyler", "character": "Himself", "id": 37935, "credit_id": "52fe44c2c3a36847f80a87fd", "cast_id": 17, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 7}, {"name": "Joe Perry", "character": "Himself", "id": 235984, "credit_id": "52fe44c2c3a36847f80a8801", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Heather Locklear", "character": "Herself", "id": 58691, "credit_id": "52fe44c2c3a36847f80a8805", "cast_id": 19, "profile_path": "/djRAJGjg73Cao0x5m11XPHrjBll.jpg", "order": 9}, {"name": "Bob Odenkirk", "character": "Concert Nerd", "id": 59410, "credit_id": "52fe44c2c3a36847f80a8809", "cast_id": 20, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 10}, {"name": "Robert Smigel", "character": "Concert Nerd", "id": 53684, "credit_id": "52fe44c2c3a36847f80a880d", "cast_id": 21, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 11}, {"name": "Kim Basinger", "character": "Honey Horne\u00e9", "id": 326, "credit_id": "52fe44c2c3a36847f80a8811", "cast_id": 22, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 12}, {"name": "Drew Barrymore", "character": "Bjergen Kjergen", "id": 69597, "credit_id": "52fe44c2c3a36847f80a8815", "cast_id": 23, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 13}, {"name": "Harry Shearer", "character": "Handsome Dan", "id": 6008, "credit_id": "52fe44c2c3a36847f80a8819", "cast_id": 24, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 14}, {"name": "Jay Leno", "character": "Himself", "id": 14991, "credit_id": "52fe44c2c3a36847f80a881d", "cast_id": 25, "profile_path": "/5sh6KGewnyzNBrvXMsLVKJPVptx.jpg", "order": 15}, {"name": "Charlton Heston", "character": "Good Actor", "id": 10017, "credit_id": "52fe44c2c3a36847f80a8821", "cast_id": 26, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 16}, {"name": "Tim Meadows", "character": "Sammy Davis, Jr.", "id": 51857, "credit_id": "52fe44c2c3a36847f80a8825", "cast_id": 27, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 17}, {"name": "Kevin Pollak", "character": "Jerry Segel", "id": 7166, "credit_id": "52fe44c2c3a36847f80a8829", "cast_id": 28, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 18}, {"name": "Lee Tergesen", "character": "Terry", "id": 6906, "credit_id": "5323fe2b9251410d95000221", "cast_id": 29, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 19}], "directors": [{"name": "Stephen Surjik", "department": "Directing", "job": "Director", "credit_id": "52fe44c2c3a36847f80a87ad", "profile_path": "/4v2Kwnc6wLRD75DsYyFiNxuxYan.jpg", "id": 56155}], "vote_average": 5.9, "runtime": 95}, "184314": {"poster_path": "/wSAU6HtjjUf5eltx5qWBqsDldug.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The portrait of a 17-year-old girl, in 4 seasons and 4 songs.", "video": false, "id": 184314, "genres": [{"id": 18, "name": "Drama"}], "title": "Young & Beautiful", "tagline": "", "vote_count": 87, "homepage": "http://www.francois-ozon.com/fr/filmo-jeune-et-jolie", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2752200", "adult": false, "backdrop_path": "/8cn39Awvc0BNqG02oHCUkpU3nEy.jpg", "production_companies": [{"name": "R\u00e9gion Ile-de-France", "id": 11246}, {"name": "Mandarin Films", "id": 12096}, {"name": "Mars Films", "id": 819}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "FOZ", "id": 149}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "La Banque Postale Image 6", "id": 46045}, {"name": "Cofimage 24", "id": 22203}, {"name": "Sofica Manon 3", "id": 22204}, {"name": "Cofinova 9", "id": 41821}, {"name": "Palatine \u00c9toile 10", "id": 22206}], "release_date": "2014-04-25", "popularity": 0.920156017672575, "original_title": "Jeune & Jolie", "budget": 0, "cast": [{"name": "Marine Vacth", "character": "Isabelle", "id": 1167459, "credit_id": "52fe4cbd9251416c751240fd", "cast_id": 3, "profile_path": "/1xuE7NyPBuUXiXxVAgNlfhd3y54.jpg", "order": 0}, {"name": "G\u00e9raldine Pailhas", "character": "Sylvie", "id": 19888, "credit_id": "52fe4cbd9251416c75124101", "cast_id": 4, "profile_path": "/oHNjyEGxdDNTTQD6I2iVlCM7v6e.jpg", "order": 1}, {"name": "Charlotte Rampling", "character": "Alice", "id": 44079, "credit_id": "52fe4cbd9251416c75124105", "cast_id": 5, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 2}, {"name": "Fr\u00e9d\u00e9ric Pierrot", "character": "Patrick", "id": 9005, "credit_id": "52fe4cbd9251416c75124109", "cast_id": 6, "profile_path": "/7tdnvy2cLeohbF7p4RnpzHKG8u2.jpg", "order": 3}, {"name": "Nathalie Richard", "character": "V\u00e9ro", "id": 6019, "credit_id": "52fe4cbd9251416c7512410d", "cast_id": 7, "profile_path": "/xIPFn1tutGeW3Q4900o5IWRfCip.jpg", "order": 4}, {"name": "Johan Leysen", "character": "Georges", "id": 53904, "credit_id": "52fe4cbd9251416c75124111", "cast_id": 8, "profile_path": "/cjLEEzFfEGoEEpHnNxjfso04Dd0.jpg", "order": 5}, {"name": "Fantin Ravat", "character": "Victor", "id": 1173828, "credit_id": "52fe4cbd9251416c75124115", "cast_id": 9, "profile_path": "/W111PddJUCS8QZVDVf6ly62dAH.jpg", "order": 6}, {"name": "Laurent Delbecque", "character": "Alex", "id": 228716, "credit_id": "52fe4cbd9251416c75124119", "cast_id": 10, "profile_path": "/k5LEW91eSH9vBI1SzHf3cjtLRne.jpg", "order": 7}, {"name": "Dj\u00e9dj\u00e9 Apali", "character": "Peter", "id": 566740, "credit_id": "54d637889251416ba1002176", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Lucas Prisor", "character": "Felix", "id": 1288682, "credit_id": "54d6379f9251416b9f0022f7", "cast_id": 12, "profile_path": "/izYmdmr2yLzYAjWxcamV229MMge.jpg", "order": 9}, {"name": "Laurent Delbecque", "character": "Alex", "id": 228716, "credit_id": "54d637b59251415f9c002193", "cast_id": 13, "profile_path": "/k5LEW91eSH9vBI1SzHf3cjtLRne.jpg", "order": 10}, {"name": "Jeanne Ruff", "character": "Claire", "id": 1424245, "credit_id": "54d637d1c3a3683b8c0024a0", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Carole Franck", "character": "La polici\u00e8re", "id": 17463, "credit_id": "54d637e59251417160002531", "cast_id": 15, "profile_path": "/1AgGjzMrBsSb5H4JKfPegeSRBJb.jpg", "order": 12}, {"name": "Olivier Desautel", "character": "Le policier", "id": 1151807, "credit_id": "54d637f6c3a3683b95002296", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Serge Hefez", "character": "Le psychiatre", "id": 1424246, "credit_id": "54d6380bc3a3683b8f0024a9", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Fran\u00e7ois Ozon", "department": "Directing", "job": "Director", "credit_id": "52fe4cbd9251416c751240f3", "profile_path": "/uTqoYgeKs6zmHjViolp1OspLcEF.jpg", "id": 4387}], "vote_average": 6.7, "runtime": 95}, "184315": {"poster_path": "/jEeMN83CRI7lIEffTlgzBcUZzuN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 243400000, "overview": "Fourteen hundred years ago, a tormented soul walked the earth that was neither man nor god. Hercules was the powerful son of the god king Zeus, for this he received nothing but suffering his entire life. After twelve arduous labors and the loss of his family, this dark, world-weary soul turned his back on the gods finding his only solace in bloody battle. Over the years he warmed to the company of six similar souls, their only bond being their love of fighting and presence of death. These men and woman never question where they go to fight or why or whom, just how much they will be paid. Now the King of Thrace has hired these mercenaries to train his men to become the greatest army of all time. It is time for this bunch of lost souls to finally have their eyes opened to how far they have fallen when they must train an army to become as ruthless and blood thirsty as their reputation has become.", "video": false, "id": 184315, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Hercules", "tagline": "Before he was a legend, he was a man.", "vote_count": 549, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1267297", "adult": false, "backdrop_path": "/pNPdcgHT1FpCmauzFWepyfDvDo9.jpg", "production_companies": [{"name": "Radical Studios", "id": 19648}, {"name": "Paramount Pictures", "id": 4}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Flynn Picture Company", "id": 34081}], "release_date": "2014-07-23", "popularity": 3.80475235529077, "original_title": "Hercules", "budget": 100000000, "cast": [{"name": "Dwayne Johnson", "character": "Hercules", "id": 18918, "credit_id": "52fe4cbd9251416c75124149", "cast_id": 4, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Ian McShane", "character": "Amphiarus", "id": 6972, "credit_id": "52fe4cbd9251416c75124151", "cast_id": 6, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 1}, {"name": "John Hurt", "character": "Cotys", "id": 5049, "credit_id": "52fe4cbd9251416c7512414d", "cast_id": 5, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 2}, {"name": "Rufus Sewell", "character": "Autolycus", "id": 17328, "credit_id": "52fe4cbd9251416c75124155", "cast_id": 7, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 3}, {"name": "Aksel Hennie", "character": "Tydeus", "id": 76547, "credit_id": "52fe4cbd9251416c7512415d", "cast_id": 9, "profile_path": "/fEmgeaFbhzOSBRqe2mO6sa1EaSp.jpg", "order": 4}, {"name": "Ingrid Bols\u00f8 Berdal", "character": "Atalanta", "id": 87879, "credit_id": "533a591ec3a3680e760074f8", "cast_id": 14, "profile_path": "/raEPYKXAe6NP0m3WUyJDh7PQUR3.jpg", "order": 5}, {"name": "Reece Ritchie", "character": "Iolaus", "id": 54810, "credit_id": "533a59b6925141130200463e", "cast_id": 16, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 6}, {"name": "Joseph Fiennes", "character": "King Eurystheus", "id": 12763, "credit_id": "52fe4cbd9251416c75124159", "cast_id": 8, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 7}, {"name": "Tobias Santelmann", "character": "Rhesus", "id": 559195, "credit_id": "533a59979251417d9e005815", "cast_id": 15, "profile_path": "/sCtnswOiS203HyXTzlDesvEI4mj.jpg", "order": 8}, {"name": "Peter Mullan", "character": "Sitacles", "id": 3064, "credit_id": "544d39210e0a2608c50028be", "cast_id": 17, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 9}, {"name": "Rebecca Ferguson", "character": "Ergenia", "id": 933238, "credit_id": "52fe4cbd9251416c75124161", "cast_id": 10, "profile_path": "/a8thKB6ZnHxxqiC7crwCyaPX63d.jpg", "order": 10}, {"name": "Isaac Andrews", "character": "Arius", "id": 1264233, "credit_id": "544d39a3c3a36872d8002ace", "cast_id": 18, "profile_path": "/5R8RheJGkn7lY6qgiHvQ5YhRLpY.jpg", "order": 11}, {"name": "Joe Anderson", "character": "Phineas", "id": 29234, "credit_id": "544d3acb0e0a2608c20029ed", "cast_id": 19, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 12}, {"name": "Steve Peacocke", "character": "Stephanos", "id": 1231106, "credit_id": "544d3c3fc3a36872cc0025b8", "cast_id": 20, "profile_path": "/q51Ri8NVI13ces9nNKCHP0EhAKy.jpg", "order": 13}, {"name": "Nicholas Moss", "character": "Demetrius", "id": 61589, "credit_id": "544d3e1cc3a368242700009e", "cast_id": 21, "profile_path": "/4NWyzGPeW3AumTRrd7k6G9REf8h.jpg", "order": 14}, {"name": "Irina Shayk", "character": "Megara", "id": 544078, "credit_id": "533a5910c3a36819c4005121", "cast_id": 13, "profile_path": "/lZGbyk3dHkxWPo0kqxJLNo25APn.jpg", "order": 15}, {"name": "Robert Maillet", "character": "l'ex\u00e9cuteur", "id": 112692, "credit_id": "544e0f670e0a2608bb00442e", "cast_id": 22, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 16}, {"name": "Ian Whyte", "character": "le chef des guerriers Bessi", "id": 946696, "credit_id": "544e105dc3a36872d8004507", "cast_id": 23, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 17}, {"name": "Barbara Palvin", "character": "Antimache", "id": 1378158, "credit_id": "544e10c30e0a26134b000cf5", "cast_id": 24, "profile_path": "/Yi6BwGjndkN3T7jc6aaCpZA9lB.jpg", "order": 18}, {"name": "Caroline Boulton", "character": "Vixen", "id": 1358318, "credit_id": "544e14d30e0a2608c5004272", "cast_id": 26, "profile_path": "/cP9F6RsVGM4aBkFPk6VritEI0BO.jpg", "order": 20}, {"name": "Christopher Fairbank", "character": "Gryza", "id": 8399, "credit_id": "544e153c0e0a2608c2004473", "cast_id": 27, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 21}, {"name": "John Cross", "character": "Lieutenant Markos", "id": 1378160, "credit_id": "544e16490e0a2608c20044a6", "cast_id": 28, "profile_path": "/vHc7JHsFPt6vU9kuFdDFC5DNvvm.jpg", "order": 22}, {"name": "M\u00e1t\u00e9 Haumann", "character": "les gardes Cotys", "id": 25446, "credit_id": "544e16c6c3a3682427001979", "cast_id": 29, "profile_path": "/hbEOBOxhXIdOZYgWUFsTws5fEYf.jpg", "order": 23}, {"name": "Matt Devere", "character": "les gardes Cotys", "id": 25445, "credit_id": "544e1707c3a36872b40043c6", "cast_id": 30, "profile_path": "/mtp0cfPOGZG2aLEw0N6RuJFYA6j.jpg", "order": 24}, {"name": "Robert Whitelock", "character": "Nicolaus", "id": 87594, "credit_id": "544e176d0e0a2608cd0042ca", "cast_id": 31, "profile_path": "/r6b85u9jojC8LtJRHzWLEYefHdd.jpg", "order": 25}, {"name": "Karolina Szymczak", "character": "Alcmene", "id": 1392665, "credit_id": "547d90469251412d6d004f70", "cast_id": 98, "profile_path": null, "order": 26}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4cbd9251416c75124139", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 5.9, "runtime": 99}, "682": {"poster_path": "/p1GcthsL45Z2coCEabJDtflFsjq.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97572000, "overview": "A golden bullet has 007 engraved on it as it smashes into the secret service headquarters. The bullet came from the professional killer Scaramanga who has yet to miss a target and James Bond begins a mission to try and stop him.", "video": false, "id": 682, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Man with the Golden Gun", "tagline": "The man with the golden gun is ready to assassinate James Bond.", "vote_count": 138, "homepage": "http://www.mgm.com/view/movie/1213/The-Man-with-the-Golden-Gun/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0071807", "adult": false, "backdrop_path": "/f6HNlsfahFWcYC3VH5sQsMrOL72.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}], "release_date": "1974-12-18", "popularity": 1.12398267280476, "original_title": "The Man with the Golden Gun", "budget": 7000000, "cast": [{"name": "Roger Moore", "character": "James Bond", "id": 10222, "credit_id": "52fe426ac3a36847f801cd5d", "cast_id": 18, "profile_path": "/6nGnOdejsqi8WF2UgvRGcxd3zm6.jpg", "order": 0}, {"name": "Christopher Lee", "character": "Francisco Scaramanga", "id": 113, "credit_id": "52fe426ac3a36847f801cd61", "cast_id": 19, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 1}, {"name": "Britt Ekland", "character": "Mary Goodnight", "id": 10341, "credit_id": "52fe426ac3a36847f801cd65", "cast_id": 20, "profile_path": "/euypp72CwsKq4nOUjoBzDqtvfsI.jpg", "order": 2}, {"name": "Maud Adams", "character": "Andrea Anders", "id": 10342, "credit_id": "52fe426ac3a36847f801cd69", "cast_id": 21, "profile_path": "/iflQAeAUNW9zhwNGYCvk0nZR1en.jpg", "order": 3}, {"name": "Herv\u00e9 Villechaize", "character": "Nick Nack", "id": 10343, "credit_id": "52fe426ac3a36847f801cd6d", "cast_id": 22, "profile_path": "/v2cXeoiQra79GSet6W901B9Kns1.jpg", "order": 4}, {"name": "Clifton James", "character": "Sheriff J.W. Pepper", "id": 10224, "credit_id": "52fe426ac3a36847f801cd71", "cast_id": 23, "profile_path": "/92MyAjAdLwgYJEjuHViU3dCSj09.jpg", "order": 5}, {"name": "Richard Loo", "character": "Hai Fat", "id": 10344, "credit_id": "52fe426ac3a36847f801cd75", "cast_id": 24, "profile_path": "/wCGxu1EZsrn6kjlWAFLQ1YzbOsN.jpg", "order": 6}, {"name": "Soon-Tek Oh", "character": "Lieutenant Hip", "id": 10345, "credit_id": "52fe426ac3a36847f801cd79", "cast_id": 25, "profile_path": "/6ZNOhKG5ZhqVhVb3qbdZSZ1np65.jpg", "order": 7}, {"name": "Marc Lawrence", "character": "Rodney", "id": 3140, "credit_id": "52fe426ac3a36847f801cd7d", "cast_id": 26, "profile_path": "/l9BsvMMq9db1eSbnTGia0ymp1mv.jpg", "order": 8}, {"name": "Bernard Lee", "character": "M", "id": 9874, "credit_id": "52fe426ac3a36847f801cd81", "cast_id": 27, "profile_path": "/vCLXqcJNAijcVrRrJuoduc5VnSd.jpg", "order": 9}, {"name": "Lois Maxwell", "character": "Miss Moneypenny", "id": 9878, "credit_id": "52fe426ac3a36847f801cd85", "cast_id": 28, "profile_path": "/uQneO3fT5H7vmjxusi3lJmm3xT3.jpg", "order": 10}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe426ac3a36847f801cd89", "cast_id": 29, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 11}, {"name": "James Cossins", "character": "Colthorpe", "id": 33109, "credit_id": "5406412ec3a36843720089f8", "cast_id": 30, "profile_path": "/2kjM9bIz7h66ysu6AcMAsyj93bv.jpg", "order": 12}, {"name": "Yao Lin Chen", "character": "Chula", "id": 83676, "credit_id": "54064143c3a3685b740046c7", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Carmen du Sautoy", "character": "Saida", "id": 1215738, "credit_id": "54064151c3a36816af003f4a", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Marne Maitland", "character": "Lazar", "id": 67882, "credit_id": "55155717c3a36821e5000d9a", "cast_id": 33, "profile_path": "/y8q7N1D28UmmwuRgt39X2fv6xTa.jpg", "order": 15}], "directors": [{"name": "Guy Hamilton", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801ccf9", "profile_path": "/dceCLQrZlpEXdZnZLZJpAEqqfnb.jpg", "id": 9915}], "vote_average": 6.1, "runtime": 125}, "23759": {"poster_path": "/lwQs5DNvy9RHTB0RWEScgZqPPiS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 6814789, "overview": "Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus' legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.", "video": false, "id": 23759, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Centurion", "tagline": "History is written in blood", "vote_count": 113, "homepage": "http://www.centurionmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "gd", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1020558", "adult": false, "backdrop_path": "/iSHNL3URBKtSkEJsxeTYLzkJ8gE.jpg", "production_companies": [{"name": "Celador Films", "id": 3573}, {"name": "Path\u00e9 Pictures International", "id": 1178}, {"name": "UK Film Council", "id": 2452}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}], "release_date": "2010-04-23", "popularity": 0.754564619336386, "original_title": "Centurion", "budget": 12000000, "cast": [{"name": "Michael Fassbender", "character": "Centurion Quintus Dias", "id": 17288, "credit_id": "52fe4475c3a368484e0244ed", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Olga Kurylenko", "character": "Etain", "id": 18182, "credit_id": "52fe4475c3a368484e024521", "cast_id": 16, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 1}, {"name": "David Morrissey", "character": "Bothos", "id": 18616, "credit_id": "52fe4475c3a368484e02450d", "cast_id": 11, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 2}, {"name": "Liam Cunningham", "character": "Brick", "id": 15498, "credit_id": "52fe4475c3a368484e024531", "cast_id": 20, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 3}, {"name": "Dominic West", "character": "General Titus Flavius Virilus", "id": 17287, "credit_id": "52fe4475c3a368484e0244fd", "cast_id": 7, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 4}, {"name": "Imogen Poots", "character": "Arianne", "id": 17606, "credit_id": "52fe4475c3a368484e024541", "cast_id": 24, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 5}, {"name": "Ulrich Thomsen", "character": "Gorlacon", "id": 4455, "credit_id": "52fe4475c3a368484e024515", "cast_id": 13, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 6}, {"name": "J. J. Feild", "character": "Thax", "id": 30710, "credit_id": "52fe4475c3a368484e024505", "cast_id": 9, "profile_path": "/pdDaMSsDqcyy2grU38pJC0s6XCs.jpg", "order": 7}, {"name": "Noel Clarke", "character": "Macros", "id": 76242, "credit_id": "52fe4475c3a368484e024501", "cast_id": 8, "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "order": 8}, {"name": "Dimitri Leonidas", "character": "Leonidas", "id": 89821, "credit_id": "52fe4475c3a368484e024539", "cast_id": 22, "profile_path": "/lRi0kPKkno8TVOUnVHngPBSXC7B.jpg", "order": 9}, {"name": "Riz Ahmed", "character": "Tarak", "id": 53240, "credit_id": "52fe4475c3a368484e02453d", "cast_id": 23, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 10}, {"name": "Paul Freeman", "character": "Governor Julius Agricola", "id": 652, "credit_id": "52fe4475c3a368484e02451d", "cast_id": 15, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 11}, {"name": "Dave Legeno", "character": "Vortix", "id": 60348, "credit_id": "52fe4475c3a368484e0244f5", "cast_id": 5, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 12}, {"name": "Axelle Carolyn", "character": "Aeron", "id": 231199, "credit_id": "52fe4475c3a368484e0244f9", "cast_id": 6, "profile_path": "/zGbPBBYqCKxBCyL9iBGnY5BKuBs.jpg", "order": 13}, {"name": "Andreas Wisniewski", "character": "Commander Gratus", "id": 10673, "credit_id": "52fe4475c3a368484e0244f1", "cast_id": 4, "profile_path": "/uZwfBgn0GBfmfjbxA69GDXctN5W.jpg", "order": 14}, {"name": "Jake Maskall", "character": "Roman Officer Argos", "id": 231201, "credit_id": "53ad459bc3a3682edf00141b", "cast_id": 57, "profile_path": null, "order": 15}, {"name": "Eoin Macken", "character": "Achivir", "id": 111801, "credit_id": "53ad45cfc3a3682ee200155d", "cast_id": 58, "profile_path": "/jWZstkO7U81PK7yVBlVhUsrwI8a.jpg", "order": 16}, {"name": "Rachael Stirling", "character": "Druzilla", "id": 18067, "credit_id": "53ad465ec3a3682edb00157f", "cast_id": 59, "profile_path": "/qG6JbbYVcZQnJhXThyY5U8PMyyb.jpg", "order": 17}, {"name": "Michael Carter", "character": "General Antoninus", "id": 199055, "credit_id": "53ad46ccc3a3682ed800152a", "cast_id": 60, "profile_path": "/rYVKZQ4uYLf7cpAGfdFzDcRNJXw.jpg", "order": 18}, {"name": "Tom Mannion", "character": "General Tesio", "id": 147482, "credit_id": "53ad46fdc3a3682ef10014fc", "cast_id": 61, "profile_path": "/fjJPHD96Jsko9w1M3vwINRVYoi9.jpg", "order": 19}, {"name": "Peter Guinness", "character": "General Cassius", "id": 27172, "credit_id": "53ad4721c3a3682eee0014ff", "cast_id": 62, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 20}], "directors": [{"name": "Neil Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a368484e0244e9", "profile_path": "/Au5p9cFlj2XVoVIECQ40ruOp1Qz.jpg", "id": 57581}], "vote_average": 5.6, "runtime": 97}, "1391": {"poster_path": "/iwQLkEJGpKsuhRSpv3MkbKgPWcZ.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 0, "overview": "In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.", "video": false, "id": 1391, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Y tu mam\u00e1 tambi\u00e9n", "tagline": "Life has its ways of teaching. Life has its ways to confuse us. Life has its ways to move us. Life has its ways to amaze. Life has its ways to hurt us. Life has its ways to heal. Life has its ways to inspire.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0245574", "adult": false, "backdrop_path": "/nvOf9OgfcbK1duJWeBqpXOzWiIt.jpg", "production_companies": [{"name": "B\u00e9same Mucho Pictures", "id": 1101}, {"name": "Producciones Anhelo", "id": 1102}], "release_date": "2001-06-08", "popularity": 1.06468927683582, "original_title": "Y tu mam\u00e1 tambi\u00e9n", "budget": 5000000, "cast": [{"name": "Gael Garc\u00eda Bernal", "character": "Julio Zapata", "id": 258, "credit_id": "52fe42f2c3a36847f802efbb", "cast_id": 2, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 0}, {"name": "Diego Luna", "character": "Tenoch Iturbide", "id": 8688, "credit_id": "52fe42f2c3a36847f802efbf", "cast_id": 3, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 1}, {"name": "Ana L\u00f3pez Mercado", "character": "Ana Morelos", "id": 17088, "credit_id": "52fe42f2c3a36847f802efc3", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Maribel Verd\u00fa", "character": "Luisa Cort\u00e9s", "id": 16971, "credit_id": "52fe42f2c3a36847f802efc7", "cast_id": 5, "profile_path": "/km7HP0yXLBZkPN9EFTbMJBCIsHs.jpg", "order": 3}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe42f2c3a36847f802efb7", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 6.9, "runtime": 106}, "14337": {"poster_path": "/pYiAYDn3ltw9Fq7izODuq7oWYwX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 424760, "overview": "Friends/fledgling entrepreneurs invent a device in their garage that reduces the apparent mass of any object placed inside it, but they accidentally discover that it has some highly unexpected capabilities--ones that could enable them to do and to have seemingly anything they want. Taking advantage of this unique opportunity is the first challenge they face. Dealing with the consequences is the next.", "video": false, "id": 14337, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Primer", "tagline": "What happens if it actually works?", "vote_count": 124, "homepage": "http://www.primermovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0390384", "adult": false, "backdrop_path": "/dG7Booc7C2HoVmAZjqAzp2NcTGd.jpg", "production_companies": [{"name": "Thinkfilm", "id": 446}], "release_date": "2004-10-08", "popularity": 0.448923541126161, "original_title": "Primer", "budget": 7000, "cast": [{"name": "Shane Carruth", "character": "Aaron", "id": 76624, "credit_id": "52fe45e79251416c75066787", "cast_id": 1, "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "order": 0}, {"name": "David Sullivan", "character": "Abe", "id": 76625, "credit_id": "52fe45e79251416c7506678b", "cast_id": 2, "profile_path": "/t62pMFeVdn81HY9ephGux6deaYw.jpg", "order": 1}, {"name": "Casey Gooden", "character": "Robert", "id": 110171, "credit_id": "52fe45e79251416c750667a1", "cast_id": 6, "profile_path": null, "order": 2}, {"name": "Anand Upadhyaya", "character": "Philip", "id": 110172, "credit_id": "52fe45e79251416c750667a5", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Carrie Crawford", "character": "Kara", "id": 110173, "credit_id": "52fe45e79251416c750667a9", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Jay Butler", "character": "Metalshop Worker", "id": 1080287, "credit_id": "52fe45e79251416c750667b3", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "John Carruth", "character": "Man On Couch #1", "id": 1080288, "credit_id": "52fe45e79251416c750667b7", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Juan Tapia", "character": "Man On Couch #2", "id": 1080289, "credit_id": "52fe45e79251416c750667bb", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ashley Warren", "character": "Hostess", "id": 1080290, "credit_id": "52fe45e79251416c750667bf", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Samantha Thomson", "character": "Rachel Granger", "id": 1080291, "credit_id": "52fe45e89251416c750667c3", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Chip Carruth", "character": "Thomas Granger", "id": 1080292, "credit_id": "52fe45e89251416c750667c7", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Delaney Price", "character": "Laney", "id": 1080293, "credit_id": "52fe45e89251416c750667cb", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Jack Pyland", "character": "Aaron's Co-worker", "id": 1080294, "credit_id": "52fe45e89251416c750667cf", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Keith Bradshaw", "character": "Clean Room Technician", "id": 1080295, "credit_id": "52fe45e89251416c750667d3", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Ashok Upadhyaya", "character": "Laboratory Technician", "id": 1080296, "credit_id": "52fe45e89251416c750667d7", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Brandon Blagg", "character": "Will", "id": 1080297, "credit_id": "52fe45e89251416c750667db", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Jon Cook", "character": "Will's Cousin", "id": 1080298, "credit_id": "52fe45e89251416c750667df", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "David Joyner", "character": "Rachel's Date", "id": 203260, "credit_id": "52fe45e89251416c750667e3", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Eric De Soualhat", "character": "Translator", "id": 1080299, "credit_id": "52fe45e89251416c750667e7", "cast_id": 23, "profile_path": null, "order": 18}], "directors": [{"name": "Shane Carruth", "department": "Directing", "job": "Director", "credit_id": "52fe45e79251416c75066791", "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "id": 76624}], "vote_average": 6.8, "runtime": 79}, "4104": {"poster_path": "/2a7amuuML6xvBn6XWV1sPG1Cmd5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23202734, "overview": "A mentally ill young woman finds her love in an eccentric man who models himself after Buster Keaton.", "video": false, "id": 4104, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Benny & Joon", "tagline": "A romance on the brink of reality.", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106387", "adult": false, "backdrop_path": "/yGrcYDgQoBk2oyf6G49UKbPCyvh.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Roth-Arnold Productions", "id": 1560}], "release_date": "1993-04-16", "popularity": 0.223554929286767, "original_title": "Benny & Joon", "budget": 0, "cast": [{"name": "Johnny Depp", "character": "Sam", "id": 85, "credit_id": "52fe43adc3a36847f8066f67", "cast_id": 2, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Mary Stuart Masterson", "character": "Juniper 'Joon' Pearl", "id": 31140, "credit_id": "52fe43adc3a36847f8066f6b", "cast_id": 3, "profile_path": "/cUsInuGkiBVcKIRJMRsmD52Sxx5.jpg", "order": 1}, {"name": "Aidan Quinn", "character": "Benjamin 'Benny' Pearl", "id": 18992, "credit_id": "52fe43adc3a36847f8066f6f", "cast_id": 4, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Ruthie", "id": 1231, "credit_id": "52fe43adc3a36847f8066f73", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Eric", "id": 17485, "credit_id": "52fe43adc3a36847f8066f77", "cast_id": 6, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "C. C. H. Pounder", "character": "Dr. Garvey", "id": 30485, "credit_id": "52fe43adc3a36847f8066f87", "cast_id": 9, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 5}, {"name": "Dan Hedaya", "character": "Thomas", "id": 6486, "credit_id": "52fe43adc3a36847f8066f8b", "cast_id": 10, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 6}, {"name": "Joe Grifasi", "character": "Mike", "id": 4887, "credit_id": "52fe43adc3a36847f8066f8f", "cast_id": 11, "profile_path": "/m3phT21garD58hEADUTl9RWWNrL.jpg", "order": 7}, {"name": "William H. Macy", "character": "Randy Burch", "id": 3905, "credit_id": "52fe43adc3a36847f8066f93", "cast_id": 12, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 8}, {"name": "Liane Curtis", "character": "Claudia", "id": 157054, "credit_id": "52fe43adc3a36847f8066f97", "cast_id": 13, "profile_path": "/zOdmZINjH8J7Cfn3C9dy12nuw4.jpg", "order": 9}, {"name": "Eileen Ryan", "character": "Mrs. Smail", "id": 12543, "credit_id": "52fe43adc3a36847f8066f9b", "cast_id": 14, "profile_path": "/ypA36mXS3CcyvtKCdBMhI3gn4Vs.jpg", "order": 10}, {"name": "Waldo Larson", "character": "Waldo", "id": 1073807, "credit_id": "52fe43adc3a36847f8066f9f", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Irvin Johnson", "character": "Orderly", "id": 1073808, "credit_id": "52fe43adc3a36847f8066fa3", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Shane Nilsson", "character": "Orderly", "id": 1073809, "credit_id": "52fe43adc3a36847f8066fa7", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Don Hamilton", "character": "UPS man", "id": 1167431, "credit_id": "52fe43adc3a36847f8066fab", "cast_id": 19, "profile_path": null, "order": 14}], "directors": [{"name": "Jeremiah S. Chechik", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f8066f63", "profile_path": "/avEcJTGsWFEzxpSOutwhkP3adQ8.jpg", "id": 34682}], "vote_average": 6.7, "runtime": 98}, "4105": {"poster_path": "/iKRO9Am8rXvPGmkvRgUh4E2EC8J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45892212, "overview": "Two New York cops get involved in a gang war between members of the Yakuza, the Japanese Mafia. They arrest one of their killers and are ordered to escort him back to Japan. In Japan, however, he manages to escape. As they try to track him down, they get deeper and deeper into the Japanese Mafia scene and they have to learn that they can only win by playing the game the Japanese way.", "video": false, "id": 4105, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Black Rain", "tagline": "Their country. Their laws. Their game. His rules.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0096933", "adult": false, "backdrop_path": "/lpHxO2XT0NizhtZWh7nLWP1KKOb.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1989-09-22", "popularity": 0.498306024989881, "original_title": "Black Rain", "budget": 30000000, "cast": [{"name": "Michael Douglas", "character": "Nick", "id": 3392, "credit_id": "52fe43adc3a36847f8066fd7", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Andy Garc\u00eda", "character": "Charlie", "id": 1271, "credit_id": "52fe43adc3a36847f8066fdb", "cast_id": 2, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 1}, {"name": "Kate Capshaw", "character": "Joyce", "id": 689, "credit_id": "52fe43adc3a36847f8066fdf", "cast_id": 4, "profile_path": "/qhrU9F2xcMd9ZHBQZxth8P6FpLF.jpg", "order": 3}, {"name": "Shigeru K\u00f4yama", "character": "Ohashi", "id": 34690, "credit_id": "52fe43adc3a36847f8066fe3", "cast_id": 6, "profile_path": "/8ljJjKPDYUM5vjQjaKPDO8DfxTY.jpg", "order": 4}, {"name": "John Spencer", "character": "Oliver", "id": 34691, "credit_id": "52fe43adc3a36847f8066fe7", "cast_id": 7, "profile_path": "/9sU5FEzlf921n6NxHmXgJB3994T.jpg", "order": 5}, {"name": "Ken Takakura", "character": "Masahiro", "id": 73427, "credit_id": "52fe43adc3a36847f806702d", "cast_id": 19, "profile_path": "/vNlUpzKQYzdo8pQVQdrPU6p6s05.jpg", "order": 6}, {"name": "Y\u00fbsaku Matsuda", "character": "Sato", "id": 129953, "credit_id": "52fe43adc3a36847f8067031", "cast_id": 20, "profile_path": null, "order": 7}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f8066ff9", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.3, "runtime": 125}, "4108": {"poster_path": "/vD5plFV1ec9CSIsdlPe9icCDRTL.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 43928932, "overview": "Former Special Forces officer Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.", "video": false, "id": 4108, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Transporter", "tagline": "Rules are made to be broken.", "vote_count": 517, "homepage": "", "belongs_to_collection": {"backdrop_path": "/qDuTIGAEbxF3jP9zNILLAoxNLpU.jpg", "poster_path": "/5MWCU1Eqc2HB6zZKFrGrgdH4d4M.jpg", "id": 9518, "name": "The Transporter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0293662", "adult": false, "backdrop_path": "/poKaphSqmgC1vtUYGagzyU4KP2m.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "TF1 Films Productions", "id": 356}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2002-10-02", "popularity": 0.927357212724251, "original_title": "The Transporter", "budget": 21000000, "cast": [{"name": "Jason Statham", "character": "Frank Martin", "id": 976, "credit_id": "52fe43adc3a36847f806714f", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Shu Qi", "character": "Lai", "id": 21911, "credit_id": "52fe43adc3a36847f806719b", "cast_id": 14, "profile_path": "/kmTErFq6lKQww2Yk9AfpR2Q5YWx.jpg", "order": 1}, {"name": "Matt Schulze", "character": "Wall Street", "id": 31841, "credit_id": "52fe43adc3a36847f806719f", "cast_id": 15, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 2}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Tarconi", "id": 7693, "credit_id": "52fe43adc3a36847f80671a3", "cast_id": 16, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 3}, {"name": "Ric Young", "character": "Mr. Kwai", "id": 11397, "credit_id": "52fe43adc3a36847f80671a7", "cast_id": 17, "profile_path": "/nqhFfFdZ73cEjLjAuLW19f3d7EO.jpg", "order": 4}, {"name": "Doug Rand", "character": "Leader", "id": 61609, "credit_id": "52fe43adc3a36847f80671ab", "cast_id": 18, "profile_path": "/iWXA5jVkULBIPOn5znW9e4K0Ifr.jpg", "order": 5}, {"name": "Didier Saint Melin", "character": "Boss", "id": 1090711, "credit_id": "52fe43adc3a36847f80671af", "cast_id": 19, "profile_path": null, "order": 6}], "directors": [{"name": "Louis Leterrier", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f8067155", "profile_path": "/54rsjgcmdZj2wymmKy3FPRgkrie.jpg", "id": 18865}, {"name": "Corey Yuen Kwai", "department": "Directing", "job": "Director", "credit_id": "52fe43adc3a36847f806715b", "profile_path": "/uLRXQt1LlTfbYtm0kMLC8KSvHxN.jpg", "id": 35452}], "vote_average": 6.5, "runtime": 92}, "200727": {"poster_path": "/qGYr7P3s0gx5YLvrILnbAkpTt1K.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rosie and Alex are best friends. They are suddenly separated when Alex and his family move from Dublin to America. Can their friendship survive years and miles? Will they gamble everything for true love?", "video": false, "id": 200727, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Love, Rosie", "tagline": "Right Love. Wrong Time.", "vote_count": 148, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1638002", "adult": false, "backdrop_path": "/hxpHrgnhXgIib4PuWlhz1YL5OlM.jpg", "production_companies": [{"name": "Constantin Film", "id": 47}, {"name": "Octagon Films", "id": 1266}], "release_date": "2014-10-16", "popularity": 1.96108671125681, "original_title": "Love, Rosie", "budget": 0, "cast": [{"name": "Lily Collins", "character": "Rosie Dunne", "id": 112561, "credit_id": "52fe4c91c3a368484e1bcd31", "cast_id": 1, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 0}, {"name": "Sam Claflin", "character": "Alex Stewart", "id": 237455, "credit_id": "52fe4c91c3a368484e1bcd35", "cast_id": 2, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 1}, {"name": "Tamsin Egerton", "character": "Sally", "id": 66442, "credit_id": "52fe4c91c3a368484e1bcd3d", "cast_id": 4, "profile_path": "/kLXPQJOrLH0oB9FdO2EJyQi4FoN.jpg", "order": 3}, {"name": "Christian Cooke", "character": "Greg", "id": 116263, "credit_id": "53bc3eb40e0a26197f003315", "cast_id": 8, "profile_path": "/eatvlROrwzcfuGM3kR8uaeTYySL.jpg", "order": 4}, {"name": "Art Parkinson", "character": "Gary Dunn", "id": 1050248, "credit_id": "53bc3f1b0e0a26196b00330a", "cast_id": 9, "profile_path": "/lm6BkM9uf69sd30o87kJ83ezKzN.jpg", "order": 5}, {"name": "Suki Waterhouse", "character": "Bethany Williams", "id": 1325961, "credit_id": "54d199de9251411b5c0010f6", "cast_id": 10, "profile_path": null, "order": 6}], "directors": [{"name": "Christian Ditter", "department": "Directing", "job": "Director", "credit_id": "52fe4c91c3a368484e1bcd43", "profile_path": null, "id": 63820}], "vote_average": 7.6, "runtime": 102}, "20504": {"poster_path": "/qL3FnEug9DyBcaBXVb0oT3DJMJu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157107755, "overview": "A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.", "video": false, "id": 20504, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Book of Eli", "tagline": "Some will kill to have it. He will kill to protect it.", "vote_count": 962, "homepage": "http://thebookofeli.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1037705", "adult": false, "backdrop_path": "/yT91We6RqDDfM4q7RX1QTHaq5q4.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Silver Pictures", "id": 1885}], "release_date": "2010-01-14", "popularity": 1.70552555411491, "original_title": "The Book of Eli", "budget": 80000000, "cast": [{"name": "Denzel Washington", "character": "Eli", "id": 5292, "credit_id": "52fe43e9c3a368484e005825", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Carnegie", "id": 64, "credit_id": "52fe43e9c3a368484e005829", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Michael Gambon", "character": "George", "id": 5658, "credit_id": "52fe43e9c3a368484e00582d", "cast_id": 3, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 2}, {"name": "Mila Kunis", "character": "Solara", "id": 18973, "credit_id": "52fe43e9c3a368484e005831", "cast_id": 4, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 3}, {"name": "Jennifer Beals", "character": "Claudia", "id": 3130, "credit_id": "52fe43e9c3a368484e005835", "cast_id": 5, "profile_path": "/uYa9mUAh3YeFlACaY0rI0Oz7pRf.jpg", "order": 4}, {"name": "Ray Stevenson", "character": "Redridge", "id": 56614, "credit_id": "52fe43e9c3a368484e005839", "cast_id": 6, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 5}, {"name": "Frances de la Tour", "character": "Martha", "id": 47468, "credit_id": "52fe43e9c3a368484e00583d", "cast_id": 7, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 6}, {"name": "Tom Waits", "character": "Engineer", "id": 2887, "credit_id": "52fe43e9c3a368484e005841", "cast_id": 8, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 7}, {"name": "Lateef Crowder", "character": "Highjacker #3", "id": 123812, "credit_id": "544cdc97c3a36872c7001e3f", "cast_id": 46, "profile_path": "/pnsFjc7igJi0SdNs7pDjxpy32yu.jpg", "order": 8}, {"name": "Chris Browning", "character": "Highjacker Leader", "id": 76543, "credit_id": "52fe43e9c3a368484e005849", "cast_id": 10, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 9}, {"name": "Joe Pingue", "character": "Hoyt", "id": 86237, "credit_id": "52fe43e9c3a368484e00584d", "cast_id": 11, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Evan Jones", "character": "Martz", "id": 333, "credit_id": "52fe43e9c3a368484e005851", "cast_id": 12, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 11}, {"name": "Lora Cunningham", "character": "Young Woman Highjacker", "id": 86238, "credit_id": "52fe43e9c3a368484e005855", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Malcolm McDowell", "character": "Lombardi", "id": 56890, "credit_id": "52fe43e9c3a368484e005883", "cast_id": 23, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 13}], "directors": [{"name": "Albert Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe43e9c3a368484e00585b", "profile_path": "/wExeoXPCpuGKmNKHKwJKo8BXo4t.jpg", "id": 11447}, {"name": "Allen Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe43e9c3a368484e005861", "profile_path": "/mXsXXvuUSAMpWP8I2ly4mfoUWlB.jpg", "id": 11448}], "vote_average": 6.4, "runtime": 118}, "184345": {"poster_path": "/xS2W9WVDyFGyLGSZRUDSdQKlmqt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Having exorcised the demons of his ex, Malcolm is starting fresh with his new girlfriend and her two children. After moving into their dream home, however, Malcolm is once again plagued by bizarre paranormal events.", "video": false, "id": 184345, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "A Haunted House 2", "tagline": "It'll scare the #2 out of you.", "vote_count": 106, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/6OHNDLSvTxvis1oWGdIqmH8jrEH.jpg", "id": 251937, "name": "A Haunted House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2828996", "adult": false, "backdrop_path": "/kGqBnKcTHEyvIzARazZhyamK5Sv.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Automatik Entertainment", "id": 7625}], "release_date": "2014-04-18", "popularity": 0.770027920746544, "original_title": "A Haunted House 2", "budget": 0, "cast": [{"name": "Marlon Wayans", "character": "Malcolm", "id": 9562, "credit_id": "52fe4cbd9251416c751242bf", "cast_id": 1, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 0}, {"name": "Jaime Pressly", "character": "Megan", "id": 56824, "credit_id": "52fe4cbd9251416c751242c9", "cast_id": 3, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 1}, {"name": "Essence Atkins", "character": "Kisha", "id": 154000, "credit_id": "534cf2400e0a2661b7000d52", "cast_id": 14, "profile_path": "/3MC6xJrqXZ7LNJpyxC0RzPule72.jpg", "order": 2}, {"name": "Gabriel Iglesias", "character": "Miguel", "id": 86498, "credit_id": "534cf2560e0a2661a4000d4a", "cast_id": 15, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 3}, {"name": "Missi Pyle", "character": "Noreen", "id": 1294, "credit_id": "534cf2f60e0a2661ad000dc9", "cast_id": 16, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 4}, {"name": "Ashley Rickards", "character": "Becky", "id": 208225, "credit_id": "52fe4cbd9251416c751242cd", "cast_id": 4, "profile_path": "/21s0lfhCx2hzjNzTFOwmkde665a.jpg", "order": 5}, {"name": "Affion Crockett", "character": "Ray- Ray", "id": 98394, "credit_id": "52fe4cbe9251416c751242dd", "cast_id": 8, "profile_path": "/moqCMggBapY4mHArUjaRKZ2xzIn.jpg", "order": 6}, {"name": "Steele Stebbins", "character": "Wyatt", "id": 1286744, "credit_id": "52fe4cbe9251416c751242e9", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Rick Overton", "character": "Professor Wilde", "id": 1539, "credit_id": "52fe4cbe9251416c751242e5", "cast_id": 10, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 8}, {"name": "Dave Sheridan", "character": "Agouhl", "id": 35701, "credit_id": "52fe4cbd9251416c751242d5", "cast_id": 6, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 9}, {"name": "Cedric the Entertainer", "character": "Father Doug", "id": 5726, "credit_id": "52fe4cbe9251416c751242d9", "cast_id": 7, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 10}, {"name": "Audrey Petenbrink", "character": "Pool Daughter (uncredited)", "id": 1286743, "credit_id": "52fe4cbe9251416c751242e1", "cast_id": 9, "profile_path": null, "order": 11}, {"name": "Scott Burn", "character": "Kill Family Dad (uncredited)", "id": 1172222, "credit_id": "52fe4cbd9251416c751242d1", "cast_id": 5, "profile_path": null, "order": 12}], "directors": [{"name": "Michael Tiddes", "department": "Directing", "job": "Director", "credit_id": "52fe4cbd9251416c751242c5", "profile_path": null, "id": 1110102}], "vote_average": 5.6, "runtime": 87}, "184346": {"poster_path": "/iI0FjaQcFGMlBClEGdMzTkOsOcP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "New York police officer Ralph Sarchie investigates a series of crimes. He joins forces with an unconventional priest, schooled in the rites of exorcism, to combat the possessions that are terrorizing their city.", "video": false, "id": 184346, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Deliver Us from Evil", "tagline": "Inspired by the actual accounts of an NYPD sergeant.", "vote_count": 238, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2377322", "adult": false, "backdrop_path": "/h0jrxKeDXS6VKnUnJayXLTo6PDx.jpg", "production_companies": [{"name": "LStar Capital", "id": 34034}, {"name": "Screen Gems", "id": 3287}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2014-07-02", "popularity": 1.70675567646015, "original_title": "Deliver Us from Evil", "budget": 30, "cast": [{"name": "Eric Bana", "character": "Ralph Sarchie", "id": 8783, "credit_id": "52fe4cbe9251416c75124319", "cast_id": 4, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Mendoza", "id": 25616, "credit_id": "53aa9e35c3a3684d1000127a", "cast_id": 9, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 1}, {"name": "Olivia Munn", "character": "Jen", "id": 81364, "credit_id": "52fe4cbe9251416c7512431d", "cast_id": 5, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 2}, {"name": "Joel McHale", "character": "Butler", "id": 74949, "credit_id": "52fe4cbe9251416c75124321", "cast_id": 6, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 3}, {"name": "Sean Harris", "character": "Santino", "id": 16702, "credit_id": "53aa9e3ac3a3684cfb0012a5", "cast_id": 10, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 4}, {"name": "Chris Coy", "character": "Jimmy", "id": 587438, "credit_id": "53b8f4d5c3a3685ea8004e20", "cast_id": 11, "profile_path": "/lSjg8jeqZ4mEKfkMnpy25Di3ztR.jpg", "order": 5}, {"name": "Dorian Missick", "character": "Gordon", "id": 26718, "credit_id": "53b8f4dcc3a3685ebd004f89", "cast_id": 12, "profile_path": "/cIVYTMbl5bsUk6wgD6iw7yIkdwX.jpg", "order": 6}, {"name": "Mike Houston", "character": "Nadler", "id": 205128, "credit_id": "53b8f4e5c3a3685ea8004e22", "cast_id": 13, "profile_path": "/nqdMHdfOQuRvwzRAuHtgPKIAMwS.jpg", "order": 7}, {"name": "Lulu Wilson", "character": "Christina", "id": 98946, "credit_id": "53b8f4ecc3a368072e002145", "cast_id": 14, "profile_path": "/vtoq7kkel0tGTJ0cJXr8Iy46csY.jpg", "order": 8}, {"name": "Antoinette LaVecchia", "character": "Serafina", "id": 171939, "credit_id": "53b8f508c3a3685eb10051a8", "cast_id": 15, "profile_path": "/aGar7C9EB3nG8HMfbRtwJuvemGK.jpg", "order": 9}, {"name": "Scott Johnsen", "character": "Sergent Griggs", "id": 1375162, "credit_id": "54423282c3a3683e080017ed", "cast_id": 16, "profile_path": "/10wpICE5Pyvy02Ensq74ZQ9a2c6.jpg", "order": 10}, {"name": "Valentina Rend\u00f3n", "character": "Claudia", "id": 1246812, "credit_id": "544234a50e0a266330001970", "cast_id": 17, "profile_path": "/x64YCLPgyu7wkJJfZ0yDuZUp7Nn.jpg", "order": 11}, {"name": "Daniel Serafin", "character": "Salvatore", "id": 101165, "credit_id": "54423519c3a3683dfb0018dc", "cast_id": 18, "profile_path": "/ech2oXirc4TeVrTNarolm7aVVKD.jpg", "order": 12}, {"name": "Olivia Horton", "character": "Jane Crenna", "id": 1375170, "credit_id": "54423597c3a3683dfb0018f2", "cast_id": 19, "profile_path": "/nD7rHSxmAyBmjhCze5M0P4loB5x.jpg", "order": 13}, {"name": "Sean Bennett", "character": "l'autre gars", "id": 1198328, "credit_id": "544237100e0a26634d0018ca", "cast_id": 20, "profile_path": "/dLoC1JG3cfmLbumCENOWD2q0d8q.jpg", "order": 14}, {"name": "Lolita Foster", "character": "les patrouilleurs", "id": 1375175, "credit_id": "54423798c3a3683e0b001946", "cast_id": 21, "profile_path": "/26r1cXvFIA3JINfmElCbNNCVus3.jpg", "order": 15}, {"name": "Sean Nelson", "character": "un flic", "id": 75601, "credit_id": "54423869c3a3683e050019b1", "cast_id": 22, "profile_path": "/8ylzaMgIfGxbaDrhe7uJmYBSFBB.jpg", "order": 16}, {"name": "Raiden Integra", "character": "un patient", "id": 1298706, "credit_id": "544239bb0e0a266336001a94", "cast_id": 23, "profile_path": "/jNS1cQU4LpQb1B5XCWok5YE1EMz.jpg", "order": 17}, {"name": "John Cenatiempo", "character": "un flic", "id": 206398, "credit_id": "54423b6fc3a3683df2001a07", "cast_id": 24, "profile_path": "/wUkUgFzXLEPnyegeWO3HK0w9Gyg.jpg", "order": 18}, {"name": "Jenna Gavigan", "character": "Lucinda", "id": 145132, "credit_id": "54423bcfc3a3683e05001a1d", "cast_id": 25, "profile_path": "/cIREFMS2KwWKeEjpDouXwiKlUv.jpg", "order": 19}, {"name": "Victor Pagan", "character": "Un patients", "id": 59280, "credit_id": "54423c24c3a3683df2001a2d", "cast_id": 26, "profile_path": "/5HEuGK2u5cA3DK30sySmxwJHCDo.jpg", "order": 20}, {"name": "Ben Livingston", "character": "un physicien", "id": 63111, "credit_id": "54423ca7c3a3683df2001a39", "cast_id": 27, "profile_path": "/muCgYKg6v10yYNxfyxhI1aH4xLI.jpg", "order": 21}, {"name": "John Cariani", "character": "un gardien du zoo", "id": 1237356, "credit_id": "544243bb0e0a26634d001a43", "cast_id": 28, "profile_path": "/bdE7RAXV8PjKuhAbvMTrIqHeoxh.jpg", "order": 22}, {"name": "Tijuana Ricks", "character": "un officier au zoo", "id": 79997, "credit_id": "544244210e0a26633d001b8f", "cast_id": 29, "profile_path": "/z87nE0Q0AzMMMp3J0HgMj3QS7A1.jpg", "order": 23}, {"name": "Ivan Cardona", "character": "l'abitre de football", "id": 1375185, "credit_id": "544244860e0a266336001bd7", "cast_id": 30, "profile_path": "/xqypIx2jg3H2vwekaL0Bu1apUXL.jpg", "order": 24}, {"name": "Umar Khan", "character": "le leader des insurg\u00e9s", "id": 1375186, "credit_id": "544246c6c3a3683e08001a32", "cast_id": 31, "profile_path": "/UhLT8FT6geFCiH63U8YAP9B4c7.jpg", "order": 25}, {"name": "Carol Stanzione", "character": "un patient psychiatrique", "id": 1375187, "credit_id": "5442485b0e0a26633a001bd0", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Steve Hamm", "character": "", "id": 1375188, "credit_id": "544248d9c3a3683e0b001b25", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Mark David Watson", "character": "un Officier TS", "id": 1375189, "credit_id": "544249520e0a266330001bc4", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Robert Keiley", "character": "le sergent d'accueil", "id": 1375190, "credit_id": "544249b00e0a26632d001b1f", "cast_id": 35, "profile_path": "/m3xE2JyOZYLMTD3g9KKRIEw8Xlh.jpg", "order": 29}, {"name": "Adam Kobylarz", "character": "un patient psychiatrique", "id": 1375191, "credit_id": "54424bcfc3a3683e0b001b74", "cast_id": 36, "profile_path": null, "order": 30}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe4cbe9251416c75124309", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 6.1, "runtime": 118}, "687": {"poster_path": "/jAuo0Buh8wSOrAnUoiwrJIuOs0q.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39363635, "overview": "A justice drama based on a true story about a man on death row who in his last days forms a strong relationship with a nun who teaches him forgiveness and gives him spirituality as she accompanies him to his execution. Susan Sarandon won an Oscar for best female actress for her convincing portrayal of Sister Helen Prejean.", "video": false, "id": 687, "genres": [{"id": 18, "name": "Drama"}], "title": "Dead Man Walking", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112818", "adult": false, "backdrop_path": "/oCT4WUniHknoxyhzzm8aGdyTxfp.jpg", "production_companies": [{"name": "Havoc", "id": 406}, {"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1995-12-29", "popularity": 0.381202204118917, "original_title": "Dead Man Walking", "budget": 11000000, "cast": [{"name": "Susan Sarandon", "character": "Sister Helen Prejean", "id": 4038, "credit_id": "52fe426ac3a36847f801cf0f", "cast_id": 7, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 0}, {"name": "Sean Penn", "character": "Matthew Poncelet", "id": 2228, "credit_id": "52fe426ac3a36847f801cf13", "cast_id": 8, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Robert Prosky", "character": "Hilton Barber", "id": 10360, "credit_id": "52fe426ac3a36847f801cf17", "cast_id": 9, "profile_path": "/6sQjktv9OamespABAmXtdJhFMH3.jpg", "order": 2}, {"name": "Raymond J. Barry", "character": "Earl Delacroix", "id": 10361, "credit_id": "52fe426ac3a36847f801cf1b", "cast_id": 10, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 3}, {"name": "R. Lee Ermey", "character": "Clyde Percy", "id": 8655, "credit_id": "52fe426ac3a36847f801cf1f", "cast_id": 11, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 4}, {"name": "Celia Weston", "character": "Mary Beth Percy", "id": 1989, "credit_id": "52fe426ac3a36847f801cf23", "cast_id": 12, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 5}, {"name": "Lois Smith", "character": "Helen's Mother", "id": 2207, "credit_id": "52fe426ac3a36847f801cf27", "cast_id": 13, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 6}, {"name": "Scott Wilson", "character": "Kaplan Farlely", "id": 6914, "credit_id": "52fe426ac3a36847f801cf2b", "cast_id": 14, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 7}, {"name": "Roberta Maxwell", "character": "Lucille Poncelet", "id": 10362, "credit_id": "52fe426ac3a36847f801cf2f", "cast_id": 15, "profile_path": "/tqkbI9bFmFPyOEeGGVyu8FPFyUu.jpg", "order": 8}, {"name": "Margo Martindale", "character": "Sister Colleen", "id": 452, "credit_id": "52fe426ac3a36847f801cf39", "cast_id": 17, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 9}, {"name": "Jack Black", "character": "Craig Poncelet", "id": 70851, "credit_id": "52fe426ac3a36847f801cf4f", "cast_id": 21, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 10}, {"name": "Ray Aranha", "character": "Luis Montoya", "id": 10366, "credit_id": "52fe426ac3a36847f801cf53", "cast_id": 22, "profile_path": null, "order": 11}], "directors": [{"name": "Tim Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe426ac3a36847f801ceed", "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "id": 504}], "vote_average": 7.1, "runtime": 122}, "116741": {"poster_path": "/xxOKDTQbQo7h1h7TyrQIW7u8KcJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44000000, "overview": "Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.", "video": false, "id": 116741, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Internship", "tagline": "Hiring them was a brilliant mistake.", "vote_count": 603, "homepage": "http://www.theinternshipmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2234155", "adult": false, "backdrop_path": "/dmnaqPsvJuBSoDtbd8BkDZzPGzi.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "Wild West Picture Show Productions", "id": 2796}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2013-06-07", "popularity": 1.97657516438552, "original_title": "The Internship", "budget": 58000000, "cast": [{"name": "Owen Wilson", "character": "Nick Campbell", "id": 887, "credit_id": "52fe4b9cc3a36847f820bfb9", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Vince Vaughn", "character": "Billy McMahon", "id": 4937, "credit_id": "52fe4b9cc3a36847f820bfbd", "cast_id": 8, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 1}, {"name": "Tiya Sircar", "character": "Neha", "id": 109046, "credit_id": "52fe4b9cc3a36847f820bfc1", "cast_id": 9, "profile_path": "/uqAiFL1P344fWa4cqfQhKWNoUyO.jpg", "order": 2}, {"name": "Rose Byrne", "character": "Lyle", "id": 9827, "credit_id": "52fe4b9cc3a36847f820bfc5", "cast_id": 10, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 3}, {"name": "Josh Gad", "character": "Headphones", "id": 54415, "credit_id": "52fe4b9cc3a36847f820bfc9", "cast_id": 14, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 4}, {"name": "Jessica Szohr", "character": "Marielena", "id": 130782, "credit_id": "52fe4b9cc3a36847f820bfcd", "cast_id": 15, "profile_path": "/ijp9eZ0Toq2WfrHwThfLRmGugWD.jpg", "order": 5}, {"name": "Aasif Mandvi", "character": "Mr. Chetty", "id": 20644, "credit_id": "52fe4b9cc3a36847f820bfd1", "cast_id": 16, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 6}, {"name": "Josh Brener", "character": "Lyle", "id": 1180979, "credit_id": "52fe4b9cc3a36847f820bfd5", "cast_id": 17, "profile_path": "/hLZam8XDVqkjxBBhLE0TjjugqkM.jpg", "order": 7}, {"name": "Tobit Raphael", "character": "Yo-Yo Santos", "id": 1180980, "credit_id": "52fe4b9cc3a36847f820bfd9", "cast_id": 18, "profile_path": "/cK7jS8cqHM6QjafKTp8CRRAVz9N.jpg", "order": 8}, {"name": "Dylan O'Brien", "character": "Stuart", "id": 527393, "credit_id": "52fe4b9cc3a36847f820bfdd", "cast_id": 19, "profile_path": "/6u7aDtMnAGaRjOGWgjMIrNNr0rp.jpg", "order": 9}, {"name": "Max Minghella", "character": "Graham Hawtrey", "id": 2978, "credit_id": "52fe4b9cc3a36847f820bfe1", "cast_id": 20, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 10}, {"name": "Rob Riggle", "character": "Randy", "id": 71403, "credit_id": "52fe4b9cc3a36847f820bfe5", "cast_id": 21, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 11}, {"name": "Eric Andr\u00e9", "character": "Sid", "id": 934159, "credit_id": "52fe4b9cc3a36847f820bfe9", "cast_id": 22, "profile_path": "/oHBzNeRgBXBGmuVqeTEfMDC8fX3.jpg", "order": 12}, {"name": "Harvey Guillen", "character": "Zach", "id": 210172, "credit_id": "52fe4b9cc3a36847f820bfed", "cast_id": 23, "profile_path": "/dgbjfW9MOS8OFXoeEfGyVKXqy96.jpg", "order": 13}, {"name": "Gary Anthony Williams", "character": "Bob Williams", "id": 54043, "credit_id": "549bac86c3a3682f2300309b", "cast_id": 43, "profile_path": "/2aS1bHnkEnQErbnJl8ZzQQJSzBM.jpg", "order": 14}, {"name": "Will Ferrell", "character": "Mattress Salesman (uncredited)", "id": 23659, "credit_id": "52fe4b9cc3a36847f820bff5", "cast_id": 25, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 15}, {"name": "John Goodman", "character": "Nick and Billy's Boss (uncredited)", "id": 1230, "credit_id": "52fe4b9cc3a36847f820bff9", "cast_id": 26, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 16}, {"name": "B. J. Novak", "character": "Male Interviewer", "id": 107770, "credit_id": "52fe4b9cc3a36847f820bffd", "cast_id": 27, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 17}, {"name": "Ashlee Heath", "character": "Jeanie", "id": 1439334, "credit_id": "5503428ac3a3685b9b00492e", "cast_id": 44, "profile_path": "/60U1VlhnXhpzvYycYvgIU03fxUX.jpg", "order": 18}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4b9cc3a36847f820bf9d", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.2, "runtime": 119}, "69668": {"poster_path": "/xRLhGEFzwU0hjyxAPI9dH0ezmoa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38502340, "overview": "Publisher Will Atenton (Daniel Craig) quits a lucrative job in New York to relocate his wife, Libby (Rachel Weisz), and their daughters to a quaint town in New England. As they settle into their home, however, the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town's prime suspect. With help from a neighbor (Naomi Watts) who was close to the murdered family, Will pieces together a horrifying chain of events.", "video": false, "id": 69668, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Dream House", "tagline": "Once upon a time, there were two little girls who lived in a house.", "vote_count": 101, "homepage": "http://www.dreamhousemovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1462041", "adult": false, "backdrop_path": "/jA4sN4MEzs3J96nb3CJJfCPP77Z.jpg", "production_companies": [{"name": "Cliffjack Motion Pictures", "id": 8430}, {"name": "Morgan Creek Productions", "id": 10210}], "release_date": "2011-09-30", "popularity": 0.396186221337636, "original_title": "Dream House", "budget": 50000000, "cast": [{"name": "Daniel Craig", "character": "Will Atenton", "id": 8784, "credit_id": "52fe47d4c3a368484e0dbd23", "cast_id": 2, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Naomi Watts", "character": "Ann Patterson", "id": 3489, "credit_id": "52fe47d4c3a368484e0dbd27", "cast_id": 3, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Libby Atenton", "id": 3293, "credit_id": "52fe47d4c3a368484e0dbd2b", "cast_id": 4, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Marton Csokas", "character": "Jack Patterson", "id": 20982, "credit_id": "52fe47d4c3a368484e0dbd2f", "cast_id": 5, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 3}, {"name": "Elias Koteas", "character": "Boyce", "id": 13550, "credit_id": "52fe47d4c3a368484e0dbd39", "cast_id": 7, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 4}, {"name": "Taylor Geare", "character": "Trish", "id": 967376, "credit_id": "52fe47d4c3a368484e0dbd7f", "cast_id": 20, "profile_path": "/2ITSJXHWdkAFWu1hqIfr53zib8J.jpg", "order": 5}, {"name": "Claire Geare", "character": "Dee Dee", "id": 973135, "credit_id": "52fe47d4c3a368484e0dbd83", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Rachel G. Fox", "character": "Chloe Patterson", "id": 1001947, "credit_id": "52fe47d4c3a368484e0dbd87", "cast_id": 22, "profile_path": "/n1pnhKXXUtpD4NDUO3GyEvRWC5M.jpg", "order": 7}, {"name": "Jane Alexander", "character": "Dr. Greeley", "id": 13724, "credit_id": "52fe47d4c3a368484e0dbd8b", "cast_id": 23, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 8}, {"name": "Brian Murray", "character": "Dr. Medlin", "id": 56618, "credit_id": "52fe47d4c3a368484e0dbd8f", "cast_id": 24, "profile_path": "/bNRA2o9EGVfT3cEWCFm8f0rUjFK.jpg", "order": 9}, {"name": "Bernadette Quigley", "character": "Heather Keeler", "id": 71821, "credit_id": "52fe47d4c3a368484e0dbd93", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Sarah Gadon", "character": "Cindi", "id": 190895, "credit_id": "52fe47d4c3a368484e0dbd97", "cast_id": 26, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 11}, {"name": "Gregory Smith", "character": "Artie", "id": 20814, "credit_id": "52fe47d4c3a368484e0dbd9b", "cast_id": 27, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 12}, {"name": "Mark Wilson", "character": "Capt. Conklin", "id": 207690, "credit_id": "52fe47d4c3a368484e0dbd9f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "David Huband", "character": "Officer Nelson", "id": 5922, "credit_id": "52fe47d4c3a368484e0dbda3", "cast_id": 29, "profile_path": "/o8wwJkxTtoyVggtkKVg07DhhBfd.jpg", "order": 14}], "directors": [{"name": "Jim Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe47d4c3a368484e0dbd1f", "profile_path": "/mfukw1JcUsXmUzt6IoaayMaescv.jpg", "id": 53334}], "vote_average": 5.7, "runtime": 92}, "4133": {"poster_path": "/yCLLbZzAa7jreGus7pvjZmL0bj7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83282296, "overview": "A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.", "video": false, "id": 4133, "genres": [{"id": 18, "name": "Drama"}], "title": "Blow", "tagline": "Based on a True Story.", "vote_count": 298, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0221027", "adult": false, "backdrop_path": "/apgCDX35BXsVSfzhZ9POZ7lq9D6.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2001-04-05", "popularity": 1.31227000507564, "original_title": "Blow", "budget": 53000000, "cast": [{"name": "Johnny Depp", "character": "George Jung", "id": 85, "credit_id": "52fe43aec3a36847f80675d5", "cast_id": 44, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Mirtha Jung", "id": 955, "credit_id": "52fe43aec3a36847f80675d9", "cast_id": 45, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Ethan Suplee", "character": "Tuna", "id": 824, "credit_id": "52fe43aec3a36847f8067547", "cast_id": 9, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Fred Jung", "id": 11477, "credit_id": "52fe43aec3a36847f80675dd", "cast_id": 46, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Franka Potente", "character": "Barbara Buckley", "id": 679, "credit_id": "52fe43aec3a36847f806752f", "cast_id": 3, "profile_path": "/9ES9W38WA8vIz6zMhlfpeJ29hrW.jpg", "order": 4}, {"name": "Rachel Griffiths", "character": "Ermine Jung", "id": 3052, "credit_id": "52fe43aec3a36847f8067533", "cast_id": 4, "profile_path": "/8qubJwfVCzvduuOxSoqjjm6Xtbi.jpg", "order": 5}, {"name": "Paul Reubens", "character": "Derek Foreal", "id": 5129, "credit_id": "52fe43aec3a36847f8067537", "cast_id": 5, "profile_path": "/qiY2maQ1iFnoaUiGNGLTKnaj3Xu.jpg", "order": 6}, {"name": "Jordi Moll\u00e0", "character": "Diego Delgado", "id": 31384, "credit_id": "52fe43aec3a36847f806753b", "cast_id": 6, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 7}, {"name": "Cliff Curtis", "character": "Pablo Escobar", "id": 7248, "credit_id": "52fe43aec3a36847f806753f", "cast_id": 7, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 8}, {"name": "Miguel Sandoval", "character": "Augusto Oliveras", "id": 30488, "credit_id": "52fe43aec3a36847f8067543", "cast_id": 8, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 9}, {"name": "Kevin Gage", "character": "Leon Minghella", "id": 34839, "credit_id": "52fe43aec3a36847f806754b", "cast_id": 11, "profile_path": "/shMqCosEFquPy6qB8RfCCcDPq7M.jpg", "order": 10}, {"name": "Max Perlich", "character": "Kevin Dulli", "id": 7268, "credit_id": "52fe43aec3a36847f806754f", "cast_id": 12, "profile_path": "/aITtjR6iSepDooSvVjB1zY5ehYx.jpg", "order": 11}, {"name": "Jesse James", "character": "Young George", "id": 10135, "credit_id": "52fe43aec3a36847f8067553", "cast_id": 13, "profile_path": "/qWgZax4PuhIYy3Ohj9AbWVNEsJd.jpg", "order": 12}, {"name": "Lola Glaudini", "character": "Rada", "id": 34845, "credit_id": "52fe43aec3a36847f8067557", "cast_id": 20, "profile_path": "/xgp8VtX9rhsRot3fshmomStvg6b.jpg", "order": 13}, {"name": "Emma Roberts", "character": "Young Kristina Jung", "id": 34847, "credit_id": "52fe43aec3a36847f806755b", "cast_id": 22, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 14}, {"name": "Jaime King", "character": "Kristina Jung", "id": 5915, "credit_id": "52fe43aec3a36847f806755f", "cast_id": 23, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 15}], "directors": [{"name": "Ted Demme", "department": "Directing", "job": "Director", "credit_id": "52fe43aec3a36847f8067565", "profile_path": null, "id": 34849}], "vote_average": 7.2, "runtime": 124}, "8321": {"poster_path": "/kBABboeLU2HsKWSG7DwiF9saHl5.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32002538, "overview": "Ray and Ken, two hit men, are in Bruges, Belgium, waiting for their next mission. While they are there they have time to think and discuss their previous assignment. When the mission is revealed to Ken, it is not what he expected.", "video": false, "id": 8321, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "In Bruges", "tagline": "Shoot first. Sightsee later.", "vote_count": 347, "homepage": "http://www.filminfocus.com/film/in_bruges", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780536", "adult": false, "backdrop_path": "/rGxc09T1jXk98HforvqhBaHIaRW.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Blueprint Pictures", "id": 2376}], "release_date": "2008-02-08", "popularity": 1.10753712585291, "original_title": "In Bruges", "budget": 15000000, "cast": [{"name": "Colin Farrell", "character": "Ray", "id": 72466, "credit_id": "52fe449ec3a36847f80a06d9", "cast_id": 11, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Brendan Gleeson", "character": "Ken", "id": 2039, "credit_id": "52fe449ec3a36847f80a06dd", "cast_id": 12, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Harry", "id": 5469, "credit_id": "52fe449ec3a36847f80a06e1", "cast_id": 13, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Chloe", "id": 11291, "credit_id": "52fe449ec3a36847f80a06e5", "cast_id": 14, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 3}, {"name": "Thekla Reuten", "character": "Marie", "id": 45749, "credit_id": "52fe449ec3a36847f80a06e9", "cast_id": 15, "profile_path": "/n6qovt4SJ5hefsW1RHgpdbOPENL.jpg", "order": 4}, {"name": "Jordan Prentice", "character": "Jimmy", "id": 54476, "credit_id": "52fe449ec3a36847f80a06ed", "cast_id": 16, "profile_path": "/6h6zFtJapmtixIenZJV0UYDzCNc.jpg", "order": 5}, {"name": "Elizabeth Berrington", "character": "Natalie", "id": 42998, "credit_id": "52fe449ec3a36847f80a06f1", "cast_id": 17, "profile_path": "/kMipntnzem6NBzy0pCTBjc7eKxd.jpg", "order": 6}, {"name": "J\u00e9r\u00e9mie Renier", "character": "Eirik", "id": 51325, "credit_id": "52fe449ec3a36847f80a06f5", "cast_id": 18, "profile_path": "/oIb19NzIJg0Rz9z2o2KvpeEy55t.jpg", "order": 7}, {"name": "\u017deljko Ivanek", "character": "Canadian Guy", "id": 6752, "credit_id": "52fe449ec3a36847f80a06f9", "cast_id": 19, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 8}, {"name": "Mark Donovan", "character": "Overweight Man", "id": 211413, "credit_id": "52fe449ec3a36847f80a06fd", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Eric Godon", "character": "Yuri", "id": 145299, "credit_id": "52fe449ec3a36847f80a0701", "cast_id": 21, "profile_path": "/iKWCAMxgHIWoJ1EJG4gWKEPYxbE.jpg", "order": 10}, {"name": "Rudy Blomme", "character": "Ticket Seller", "id": 1210042, "credit_id": "52fe449ec3a36847f80a0705", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Theo Stevenson", "character": "Boy in Church", "id": 588742, "credit_id": "52fe449ec3a36847f80a0709", "cast_id": 23, "profile_path": "/svogl54AG6yj5zZPLzvnetN7Sxi.jpg", "order": 12}, {"name": "Olivier Bonjour", "character": "Film Director", "id": 1210044, "credit_id": "52fe449ec3a36847f80a070d", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Stephanie Carey", "character": "Canadian Girl", "id": 1210045, "credit_id": "52fe449ec3a36847f80a0711", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Jamie Edgell", "character": "Boat Driver", "id": 58920, "credit_id": "52fe449ec3a36847f80a0715", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Ann Elsley", "character": "Overweight Woman #2", "id": 1091468, "credit_id": "52fe449ec3a36847f80a0719", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Jean Mark Favorin", "character": "Policeman", "id": 1210046, "credit_id": "52fe449ec3a36847f80a071d", "cast_id": 28, "profile_path": null, "order": 17}], "directors": [{"name": "Martin McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe449ec3a36847f80a069f", "profile_path": "/yvpnpkDG0yV0No6TuZ8QorFZ8d.jpg", "id": 54472}], "vote_average": 7.2, "runtime": 107}, "77866": {"poster_path": "/3S6vYQjMXVVzfYYU61L8egVxrVk.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63100000, "overview": "To protect his brother-in-law from a drug lord, a former smuggler heads to Panama to score millions of dollars in counterfeit bills.", "video": false, "id": 77866, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Contraband", "tagline": "What would you hide to protect your family?", "vote_count": 361, "homepage": "http://www.contrabandmovie.net", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1524137", "adult": false, "backdrop_path": "/vUIxLVMblTY6vdKI7FsTKsWpr6q.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}, {"name": "Blueeyes Productions", "id": 10970}, {"name": "Leverage Management", "id": 8536}, {"name": "Closest to the Hole Productions", "id": 8537}, {"name": "Farraday Films", "id": 8538}, {"name": "Leverage Entertainment", "id": 8539}, {"name": "StudioCanal", "id": 694}], "release_date": "2012-01-13", "popularity": 0.644196034612308, "original_title": "Contraband", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Chris Farraday", "id": 13240, "credit_id": "52fe497fc3a368484e12e7a1", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Kate Farraday", "id": 3967, "credit_id": "52fe497fc3a368484e12e7a5", "cast_id": 3, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Ben Foster", "character": "Sebastian Abney", "id": 11107, "credit_id": "52fe497fc3a368484e12e7a9", "cast_id": 4, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "Tim Briggs", "id": 1771, "credit_id": "52fe497fc3a368484e12e7ad", "cast_id": 5, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "Captain Camp", "id": 18999, "credit_id": "52fe497fc3a368484e12e7b1", "cast_id": 7, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "William Lucking", "character": "Bud Farraday", "id": 131725, "credit_id": "52fe497fc3a368484e12e7b5", "cast_id": 8, "profile_path": "/pWDDkUPU83M11T95MrYYwWvB2BY.jpg", "order": 5}, {"name": "Diego Luna", "character": "Gonzalo", "id": 8688, "credit_id": "52fe497fc3a368484e12e7b9", "cast_id": 9, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 6}, {"name": "Caleb Landry Jones", "character": "Andy", "id": 572541, "credit_id": "52fe497fc3a368484e12e7bd", "cast_id": 10, "profile_path": "/73T6DLPggbDaIDLz162o01dCg6I.jpg", "order": 7}, {"name": "Robert Wahlberg", "character": "John Bryce", "id": 4733, "credit_id": "52fe497fc3a368484e12e7c1", "cast_id": 11, "profile_path": "/1FezGR2O9rvCBF9LISJ2dwIPWb7.jpg", "order": 8}, {"name": "Lukas Haas", "character": "Danny Raymer", "id": 526, "credit_id": "52fe4980c3a368484e12e825", "cast_id": 28, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 9}, {"name": "David O'Hara", "character": "Jim Church", "id": 2482, "credit_id": "53022288c3a3680a372eccd0", "cast_id": 29, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 10}, {"name": "\u00d3lafur Darri \u00d3lafsson", "character": "Olaf", "id": 110902, "credit_id": "530222a1c3a3680a2131e9b5", "cast_id": 30, "profile_path": "/fDUMXqM9UALD86fiC076XVgitDO.jpg", "order": 11}, {"name": "Jason Mitchell", "character": "Walter", "id": 1115984, "credit_id": "530222bcc3a36809fd2d3cab", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Paul LeBlanc", "character": "CBP Official", "id": 1293752, "credit_id": "530222cbc3a3680a1930b6df", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Amber Gaiennie", "character": "Danny's Bride", "id": 550318, "credit_id": "530222d8c3a3685ce7067335", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Baltasar Korm\u00e1kur", "department": "Directing", "job": "Director", "credit_id": "52fe497fc3a368484e12e79d", "profile_path": "/Aml85bUldhLbVubYBk38ag8JmVK.jpg", "id": 67813}], "vote_average": 6.1, "runtime": 109}, "4141": {"poster_path": "/44SYjI4rV7tjYhRPzMRUj5UjDYJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26820641, "overview": "A man named Mr. Smith delivers a woman's baby during a shootout, and is then called upon to protect the newborn from the army of gunmen.", "video": false, "id": 4141, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Shoot 'Em Up", "tagline": "Just another family man making a living.", "vote_count": 153, "homepage": "http://wwws.warnerbros.de/shootemup/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0465602", "adult": false, "backdrop_path": "/6bqvfvhXuWMfDEaTGsK19HNGsy1.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Angry Films", "id": 12087}], "release_date": "2007-07-26", "popularity": 1.12222410779023, "original_title": "Shoot 'Em Up", "budget": 39000000, "cast": [{"name": "Clive Owen", "character": "Smith", "id": 2296, "credit_id": "52fe43aec3a36847f8067779", "cast_id": 12, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Monica Bellucci", "character": "Donna Quintano", "id": 28782, "credit_id": "52fe43aec3a36847f806777d", "cast_id": 13, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 1}, {"name": "Paul Giamatti", "character": "Hertz", "id": 13242, "credit_id": "52fe43aec3a36847f8067781", "cast_id": 14, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 2}, {"name": "Stephen McHattie", "character": "Hammerson", "id": 230, "credit_id": "52fe43aec3a36847f8067785", "cast_id": 15, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 3}, {"name": "Greg Bryk", "character": "Lone Man", "id": 231, "credit_id": "52fe43aec3a36847f8067789", "cast_id": 16, "profile_path": "/WMaBnkk6rX9irYPrlOk9B928yM.jpg", "order": 4}, {"name": "Daniel Pilon", "character": "Senator Rutledge", "id": 34971, "credit_id": "52fe43aec3a36847f806778d", "cast_id": 17, "profile_path": "/jlWqpqxfuX2AHdHMkNCkpOShciO.jpg", "order": 5}, {"name": "Sidney Mende-Gibson", "character": "Baby Oliver", "id": 963600, "credit_id": "52fe43aec3a36847f80677af", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Lucas Mende-Gibson", "character": "Baby Oliver", "id": 963601, "credit_id": "52fe43aec3a36847f80677b3", "cast_id": 24, "profile_path": null, "order": 7}, {"name": "Kaylyn Yellowlees", "character": "Baby Oliver", "id": 963602, "credit_id": "52fe43aec3a36847f80677b7", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Ramona Pringle", "character": "Baby's Mother", "id": 219393, "credit_id": "52fe43aec3a36847f80677bb", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "Julian Richings", "character": "Hertz's Driver", "id": 2320, "credit_id": "52fe43aec3a36847f80677bf", "cast_id": 27, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 10}, {"name": "Tony Munch", "character": "Man Who Rides Shotgun", "id": 5927, "credit_id": "52fe43aec3a36847f80677c3", "cast_id": 28, "profile_path": "/1VaMaAImwDWAjzKbrn8T1prnOdf.jpg", "order": 11}, {"name": "Scott McCord", "character": "Killer Shot in Behind", "id": 124315, "credit_id": "52fe43aec3a36847f80677c7", "cast_id": 29, "profile_path": null, "order": 12}], "directors": [{"name": "Michael Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43aec3a36847f8067745", "profile_path": "/s4u26Oo2fUqFc1ZwFqo4y8Hmh67.jpg", "id": 24949}], "vote_average": 6.2, "runtime": 86}, "20526": {"poster_path": "/eZW5Rv0peoGrC0RY12lwzoLPwmx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 400062763, "overview": "Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.", "video": false, "id": 20526, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "TRON: Legacy", "tagline": "The Game Has Changed.", "vote_count": 1350, "homepage": "http://disney.go.com/tron/", "belongs_to_collection": {"backdrop_path": "/o8NBfffQPE9tHTR9l7FuWbdVPHu.jpg", "poster_path": "/cvFlDIfOwhYe4ouAAfdyq9E5zlZ.jpg", "id": 63043, "name": "TRON Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1104001", "adult": false, "backdrop_path": "/poNggE1pzQpezVcTUSPKpacujCP.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "LivePlanet", "id": 7161}, {"name": "Sean Bailey Productions", "id": 23791}], "release_date": "2010-12-16", "popularity": 1.62149000604, "original_title": "TRON: Legacy", "budget": 170000000, "cast": [{"name": "Garrett Hedlund", "character": "Sam Flynn", "id": 9828, "credit_id": "52fe43ebc3a368484e005d19", "cast_id": 44, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 0}, {"name": "Jeff Bridges", "character": "Kevin Flynn / Clu", "id": 1229, "credit_id": "52fe43ebc3a368484e005cfd", "cast_id": 37, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Quorra", "id": 59315, "credit_id": "52fe43eac3a368484e005c81", "cast_id": 3, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Bruce Boxleitner", "character": "Alan Bradley / Tron", "id": 2547, "credit_id": "52fe43ebc3a368484e005d05", "cast_id": 39, "profile_path": "/8CWvXiTru0EPH0M9ecLQ84E0YWA.jpg", "order": 3}, {"name": "Yaya DaCosta", "character": "Siren", "id": 60033, "credit_id": "52fe43eac3a368484e005cd9", "cast_id": 25, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 4}, {"name": "Serinda Swan", "character": "Siren", "id": 86268, "credit_id": "52fe43eac3a368484e005cdd", "cast_id": 28, "profile_path": "/sZvN7oG3bwNvpPMOWGXxNErd6y6.jpg", "order": 5}, {"name": "Beau Garrett", "character": "Siren", "id": 20403, "credit_id": "52fe43eac3a368484e005ce5", "cast_id": 30, "profile_path": "/eSnhComJ12wMk4PoMNpuoz7bTKO.jpg", "order": 6}, {"name": "Elizabeth Mathis", "character": "Siren", "id": 130108, "credit_id": "52fe43ebc3a368484e005cf9", "cast_id": 36, "profile_path": "/uOI0gbMG6D6j5IDM6h2kxYcsqn0.jpg", "order": 7}, {"name": "James Frain", "character": "Jarvis", "id": 22063, "credit_id": "52fe43eac3a368484e005ce1", "cast_id": 29, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 8}, {"name": "Amy Esterle", "character": "Young Mrs. Flynn", "id": 86269, "credit_id": "52fe43ebc3a368484e005ce9", "cast_id": 32, "profile_path": "/7iB0IqV95GGRqtavobnJHSubzXA.jpg", "order": 9}, {"name": "Brandon Jay McLaren", "character": "Sobel", "id": 58371, "credit_id": "52fe43ebc3a368484e005ced", "cast_id": 33, "profile_path": "/4E6tZJhsgkyI5VNrZCV91XP7o6o.jpg", "order": 10}, {"name": "Michael Sheen", "character": "Castor / Zuse", "id": 3968, "credit_id": "52fe43ebc3a368484e005d01", "cast_id": 38, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 11}, {"name": "Owen Best", "character": "Young Sam", "id": 109205, "credit_id": "52fe43ebc3a368484e005cf1", "cast_id": 34, "profile_path": "/yPcXiWMFlsM1IxzzFGhIkLckD3G.jpg", "order": 12}, {"name": "Michael Teigen", "character": "Green Light Cycle Rider", "id": 37980, "credit_id": "52fe43ebc3a368484e005cf5", "cast_id": 35, "profile_path": "/uoWbOgiRB2zxafGp0OR9BJNmuGE.jpg", "order": 13}, {"name": "Daft Punk", "character": "Masked DJ's", "id": 67931, "credit_id": "52fe43ebc3a368484e005d09", "cast_id": 40, "profile_path": "/bfF9TJOdE9foiDBYGitzokVuknq.jpg", "order": 14}, {"name": "Ron Selmour", "character": "Chattering Homeless Man", "id": 10874, "credit_id": "52fe43ebc3a368484e005d0d", "cast_id": 41, "profile_path": "/zh4wuPDU4ftPd4THoXItmryfmAM.jpg", "order": 15}, {"name": "Conrad Coates", "character": "Bartik", "id": 43263, "credit_id": "52fe43ebc3a368484e005d11", "cast_id": 42, "profile_path": "/49Td3s8QVy8RPEfUb9eAzPyV9rP.jpg", "order": 16}, {"name": "Kis Yurij", "character": "Half Faced Man (as Yurij Kis)", "id": 145110, "credit_id": "52fe43ebc3a368484e005d15", "cast_id": 43, "profile_path": null, "order": 17}], "directors": [{"name": "Joseph Kosinski", "department": "Directing", "job": "Director", "credit_id": "52fe43eac3a368484e005c87", "profile_path": "/q83mNUDP6eVjlY9D6LCjJcXPlsX.jpg", "id": 86270}], "vote_average": 6.2, "runtime": 125}, "12335": {"poster_path": "/1mWFExXAlUSgfBKGkK3mjH1iXk4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three children evacuated from London during World War II are forced to stay with an eccentric spinster (Eglantine Price). The children's initial fears disappear when they find out she is in fact a trainee witch.", "video": false, "id": 12335, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Bedknobs and Broomsticks", "tagline": "You'll beWITCHED! You'll beDAZZLED! You'll be swept into a world of enchantment BEYOND ANYTHING BEFORE!", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0066817", "adult": false, "backdrop_path": "/ttOa1qlKCNLYJgdpsiDrVva9VOJ.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1971-10-07", "popularity": 0.833314429139411, "original_title": "Bedknobs and Broomsticks", "budget": 20000000, "cast": [{"name": "Angela Lansbury", "character": "Miss Price", "id": 14730, "credit_id": "52fe44db9251416c75043667", "cast_id": 1, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 0}, {"name": "David Tomlinson", "character": "Emelius", "id": 5825, "credit_id": "52fe44db9251416c7504366b", "cast_id": 2, "profile_path": "/1QJLJtcJ4x8DQFflrbd2144ZzLg.jpg", "order": 1}, {"name": "Roddy McDowall", "character": "Mr. Jelk", "id": 7505, "credit_id": "52fe44db9251416c7504366f", "cast_id": 3, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 2}, {"name": "Sam Jaffe", "character": "Bookman", "id": 10024, "credit_id": "52fe44db9251416c75043673", "cast_id": 4, "profile_path": "/drxy1JkTOjhUhQnrFnepTmSHELd.jpg", "order": 3}, {"name": "John Ericson", "character": "Col. Heller", "id": 41231, "credit_id": "52fe44dc9251416c750436a7", "cast_id": 13, "profile_path": "/7yOMIm3B7DOKUJI01N06d2S0eDN.jpg", "order": 4}, {"name": "Bruce Forsyth", "character": "Swinburne", "id": 210620, "credit_id": "52fe44dc9251416c750436ab", "cast_id": 14, "profile_path": "/bfY4lDlGY6cF4BEhpHf0VtCHu4v.jpg", "order": 5}, {"name": "Cindy O'Callaghan", "character": "Carrie", "id": 233563, "credit_id": "52fe44dc9251416c750436af", "cast_id": 15, "profile_path": "/uVkM0nMtnx23Ul1IZCjJVnhDRLt.jpg", "order": 6}, {"name": "Roy Snart", "character": "Paul", "id": 1031274, "credit_id": "52fe44dc9251416c750436b3", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Ian Weighill", "character": "Charlie", "id": 1073801, "credit_id": "52fe44dc9251416c750436b7", "cast_id": 17, "profile_path": "/kngt6OqJVZdpYKSx3sPPEZtcFly.jpg", "order": 8}, {"name": "Tessie O'Shea", "character": "Mrs. Hobday", "id": 123904, "credit_id": "52fe44dc9251416c750436bb", "cast_id": 18, "profile_path": "/h2pcinYLJy9EWKNfxE01DnlyYnA.jpg", "order": 9}, {"name": "Arthur Gould-Porter", "character": "Capt. Greer", "id": 153688, "credit_id": "52fe44dc9251416c750436bf", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Ben Wrigley", "character": "Portobello Rd. Workman", "id": 956544, "credit_id": "52fe44dc9251416c750436c3", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Reginald Owen", "character": "Gen. Teagler", "id": 5832, "credit_id": "52fe44dc9251416c750436c7", "cast_id": 21, "profile_path": "/bgtpAl7ICrDyJQzjglLiVY6tlMw.jpg", "order": 12}, {"name": "Cyril Delevanti", "character": "Elderly Farmer", "id": 88906, "credit_id": "52fe44dc9251416c750436cb", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Rick Traeger", "character": "German Sergeant", "id": 165473, "credit_id": "52fe44dc9251416c750436cf", "cast_id": 23, "profile_path": null, "order": 14}], "directors": [{"name": "Robert Stevenson", "department": "Directing", "job": "Director", "credit_id": "52fe44db9251416c75043679", "profile_path": "/86MMwlxQ7AhJMn1JnDg8hjZbnSy.jpg", "id": 5834}], "vote_average": 6.1, "runtime": 117}, "4147": {"poster_path": "/jn0GH8klINSQtRNifY8W2Kv4ajl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181001478, "overview": "Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.", "video": false, "id": 4147, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Road to Perdition", "tagline": "Pray for Michael Sullivan.", "vote_count": 231, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0257044", "adult": false, "backdrop_path": "/285qaXgc8vtmxTN77HmPmvpBMDP.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "DreamWorks SKG", "id": 27}, {"name": "DC Comics", "id": 429}], "release_date": "2002-07-12", "popularity": 0.931067807714721, "original_title": "Road to Perdition", "budget": 80000000, "cast": [{"name": "Tom Hanks", "character": "Michael Sullivan", "id": 31, "credit_id": "52fe43aec3a36847f80678c7", "cast_id": 13, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Jennifer Jason Leigh", "character": "Annie Sullivan", "id": 10431, "credit_id": "52fe43afc3a36847f80678cb", "cast_id": 14, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 1}, {"name": "Liam Aiken", "character": "Peter Sullivan", "id": 19977, "credit_id": "52fe43afc3a36847f80678cf", "cast_id": 15, "profile_path": "/cGTB7gtFgvgjhITJBiwvaq7CKGd.jpg", "order": 2}, {"name": "Paul Newman", "character": "John Rooney", "id": 3636, "credit_id": "52fe43afc3a36847f80678d3", "cast_id": 16, "profile_path": "/n6y6VxJKf0tNC2xFvbsAgcOeLbg.jpg", "order": 3}, {"name": "Daniel Craig", "character": "Connor Rooney", "id": 8784, "credit_id": "52fe43afc3a36847f80678d7", "cast_id": 17, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 4}, {"name": "Ciar\u00e1n Hinds", "character": "Finn McGovern", "id": 8785, "credit_id": "52fe43afc3a36847f80678db", "cast_id": 18, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 5}, {"name": "David Darlow", "character": "Jack Kelly", "id": 35022, "credit_id": "52fe43afc3a36847f80678df", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Kevin Chamberlin", "character": "Frank the Bouncer", "id": 34395, "credit_id": "52fe43afc3a36847f80678e3", "cast_id": 21, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 8}, {"name": "Doug Spinuzza", "character": "Calvino", "id": 35024, "credit_id": "52fe43afc3a36847f80678e7", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Jude Law", "character": "Harlen Maguire", "id": 9642, "credit_id": "52fe43afc3a36847f80678eb", "cast_id": 23, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 10}, {"name": "Stanley Tucci", "character": "Frank Nitti", "id": 2283, "credit_id": "52fe43afc3a36847f80678ef", "cast_id": 24, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 11}, {"name": "Kurt Naebig", "character": "Tenement Murderer", "id": 35025, "credit_id": "52fe43afc3a36847f80678f3", "cast_id": 25, "profile_path": "/8OkslRWPaLJPhnoy0KU325fKDig.jpg", "order": 12}, {"name": "Duane Sharp", "character": "Father Callaway", "id": 35026, "credit_id": "52fe43afc3a36847f80678f7", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Tyler Hoechlin", "character": "Michael Sullivan, Jr.", "id": 78198, "credit_id": "52fe43afc3a36847f80678fb", "cast_id": 27, "profile_path": "/9AMrsrX4x4Tls8OEf7nFM9S8wvm.jpg", "order": 14}, {"name": "Nicolas Cade", "character": "Boy Michael Fights", "id": 1132472, "credit_id": "52fe43afc3a36847f80678ff", "cast_id": 28, "profile_path": null, "order": 15}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe43aec3a36847f8067881", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.9, "runtime": 117}, "4148": {"poster_path": "/bnOK1lmdlqdy2HX6IgKx9TQD7Ax.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75225693, "overview": "A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.", "video": false, "id": 4148, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Revolutionary Road", "tagline": "How do you break free without breaking apart?", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0959337", "adult": false, "backdrop_path": "/vVK04ayDtN2186jgkCtFjvw8IlN.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "BBC Films", "id": 288}, {"name": "Neal Street Productions", "id": 1522}, {"name": "Evamere Entertainment", "id": 1550}, {"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2008-12-19", "popularity": 0.559192866756078, "original_title": "Revolutionary Road", "budget": 35000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Frank Wheeler", "id": 6193, "credit_id": "52fe43afc3a36847f8067929", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Kate Winslet", "character": "April Wheeler", "id": 204, "credit_id": "52fe43afc3a36847f806792d", "cast_id": 3, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Michael Shannon", "character": "John Givings", "id": 335, "credit_id": "52fe43afc3a36847f8067941", "cast_id": 8, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 2}, {"name": "David Harbour", "character": "Shep Campbell", "id": 35029, "credit_id": "52fe43afc3a36847f8067945", "cast_id": 9, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 3}, {"name": "Kathryn Hahn", "character": "Milly Campbell", "id": 17696, "credit_id": "5409f5870e0a262b43000515", "cast_id": 16, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 4}, {"name": "Kathy Bates", "character": "Mrs. Helen Givings", "id": 8534, "credit_id": "52fe43afc3a36847f8067931", "cast_id": 4, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 5}, {"name": "Zoe Kazan", "character": "Maureen Grube", "id": 35028, "credit_id": "52fe43afc3a36847f8067939", "cast_id": 6, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 6}, {"name": "Dylan Baker", "character": "Jack Ordway", "id": 19152, "credit_id": "5409f5d10e0a262b3d000570", "cast_id": 17, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 7}, {"name": "Jay O. Sanders", "character": "Bart Pollock", "id": 6067, "credit_id": "5409f62f0e0a262b40000518", "cast_id": 20, "profile_path": "/wgCFAatAtmfN5zWgwzGgA48wwXu.jpg", "order": 8}, {"name": "Ryan Simpkins", "character": "Jennifer Wheeler", "id": 35027, "credit_id": "52fe43afc3a36847f8067935", "cast_id": 5, "profile_path": "/lTOB3hz1xPvgMKe3QhRAxvz2O6U.jpg", "order": 9}, {"name": "Ty Simpkins", "character": "Michael Wheeler", "id": 17181, "credit_id": "52fe43afc3a36847f806793d", "cast_id": 7, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 10}, {"name": "Max Casella", "character": "Ed Small", "id": 7133, "credit_id": "5409f5ec0e0a262b3d000574", "cast_id": 18, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 11}, {"name": "Richard Easton", "character": "Howard Givings", "id": 172705, "credit_id": "5409f61a0e0a262b4c00054f", "cast_id": 19, "profile_path": "/gvFTE9Zqk5y69B4FKrAhubu4071.jpg", "order": 12}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe43afc3a36847f8067925", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.2, "runtime": 119}, "77877": {"poster_path": "/ug0WQaS1echV9BQoSeL2im9I3hk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 99357138, "overview": "U.S. Marine Sergeant Logan Thibault (Efron) returns from his third tour of duty in Iraq, with the one thing he credits with keeping him alive-a photograph he found of a woman he doesn't even know. Learning her name is Beth (Schilling) and where she lives, he shows up at her door, and ends up taking a job at her family-run local kennel. Despite her initial mistrust and the complications in her life, a romance develops between them, giving Logan hope that Beth could be much more than his good luck charm.", "video": false, "id": 77877, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Lucky One", "tagline": "", "vote_count": 200, "homepage": "http://theluckyonemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1327194", "adult": false, "backdrop_path": "/qJnrOZirSyDAZj7oGulRLwPXtqz.jpg", "production_companies": [{"name": "Langley Park Production", "id": 8057}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2012-05-02", "popularity": 0.960939732344126, "original_title": "The Lucky One", "budget": 25000000, "cast": [{"name": "Zac Efron", "character": "Logan Thibault", "id": 29222, "credit_id": "52fe4980c3a368484e12eb2f", "cast_id": 4, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Blythe Danner", "character": "Nana", "id": 10401, "credit_id": "52fe4980c3a368484e12eb33", "cast_id": 5, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 1}, {"name": "Taylor Schilling", "character": "Beth Clayton", "id": 221809, "credit_id": "52fe4980c3a368484e12eb37", "cast_id": 6, "profile_path": "/eTC6YEW9kx508bIEzgxFKDE64X6.jpg", "order": 2}, {"name": "Jay R. Ferguson", "character": "Keith Clayton", "id": 80289, "credit_id": "52fe4980c3a368484e12eb3b", "cast_id": 7, "profile_path": "/60VbWysvzzA1947trURZUfbuHSq.jpg", "order": 3}, {"name": "Riley Thomas Stewart", "character": "Ben Clayton", "id": 211429, "credit_id": "52fe4980c3a368484e12eb3f", "cast_id": 8, "profile_path": "/vt8iHBG65Cy2bFNtyGcTspgrASf.jpg", "order": 4}, {"name": "Joe Chrest", "character": "Deputy Moore", "id": 141762, "credit_id": "52fe4980c3a368484e12eb43", "cast_id": 9, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 5}, {"name": "Jillian Batherson", "character": "Amanda", "id": 550317, "credit_id": "52fe4980c3a368484e12eb47", "cast_id": 10, "profile_path": "/zfGo1KF4qT2rvcqtln8YupQVsyF.jpg", "order": 6}, {"name": "Courtney J. Clark", "character": "Logans`s Sister", "id": 568045, "credit_id": "52fe4980c3a368484e12eb4b", "cast_id": 11, "profile_path": "/b1AMNTH43h9NVmy4ssnzocHSfx.jpg", "order": 7}, {"name": "Sharon Morris", "character": "Principal Miller", "id": 142374, "credit_id": "52fe4980c3a368484e12eb4f", "cast_id": 12, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 8}, {"name": "Russell Durham Comegys", "character": "Roger Lyle", "id": 582656, "credit_id": "52fe4980c3a368484e12eb53", "cast_id": 13, "profile_path": "/AdvoXYRHoDOtByERBqeH9GpS3ui.jpg", "order": 9}], "directors": [{"name": "Scott Hicks", "department": "Directing", "job": "Director", "credit_id": "52fe4980c3a368484e12eb2b", "profile_path": "/saA36yAQYyTs0kzmH5hBprEszJX.jpg", "id": 33433}], "vote_average": 6.8, "runtime": 101}, "10249": {"poster_path": "/tFOoAfyznMdCRJIvX3vDOpr3MCg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62000000, "overview": "Young 1930's pilot Cliff Secord stumbles on a top secret rocket-pack and with the help of his mechanic/mentor, Peevee, he attempts to save his girl and stop the Nazis as The Rocketeer.", "video": false, "id": 10249, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "The Rocketeer", "tagline": "Three years before the United States declares war, Cliff Secord leads America's first battle against the Nazis.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102803", "adult": false, "backdrop_path": "/2uD68TBNAuhQmIqqi9xr1ElF8zH.jpg", "production_companies": [{"name": "The Gordon Company", "id": 48132}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners IV", "id": 10282}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1991-06-21", "popularity": 0.624620787052062, "original_title": "The Rocketeer", "budget": 42000000, "cast": [{"name": "Billy Campbell", "character": "Cliff Secord", "id": 20215, "credit_id": "52fe43499251416c7500aa57", "cast_id": 1, "profile_path": "/fbqKllMad5nW7Wnh6uQrRkeQUZl.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Jenny Blake", "id": 6161, "credit_id": "52fe43499251416c7500aa5b", "cast_id": 2, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Alan Arkin", "character": "A. 'Peevy' Peabody", "id": 1903, "credit_id": "52fe43499251416c7500aa5f", "cast_id": 3, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "Timothy Dalton", "character": "Neville Sinclair", "id": 10669, "credit_id": "52fe43499251416c7500aa63", "cast_id": 4, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 3}, {"name": "Paul Sorvino", "character": "Eddie Valentine", "id": 7004, "credit_id": "52fe43499251416c7500aa67", "cast_id": 5, "profile_path": "/kZmeysOogIZSALuewOXaZ6zppYq.jpg", "order": 4}, {"name": "Terry O'Quinn", "character": "Howard Hughes", "id": 12646, "credit_id": "52fe43499251416c7500aa6b", "cast_id": 6, "profile_path": "/o6zGsvhx8klAofq8No6f3jByR42.jpg", "order": 5}, {"name": "Ed Lauter", "character": "Fitch", "id": 21523, "credit_id": "53ac64310e0a26598c00017d", "cast_id": 19, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 6}, {"name": "James Handy", "character": "Wooly", "id": 51551, "credit_id": "53ac64420e0a26598000019c", "cast_id": 20, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 7}, {"name": "Jon Polito", "character": "Bigelow", "id": 4253, "credit_id": "53ac641c0e0a26598c000175", "cast_id": 18, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 8}, {"name": "William Sanderson", "character": "Skeets", "id": 590, "credit_id": "53ac64620e0a265983000180", "cast_id": 21, "profile_path": "/iZKTl408bwcOl22PRPVpGgy52Fh.jpg", "order": 9}, {"name": "Margo Martindale", "character": "Millie", "id": 452, "credit_id": "53ac646c0e0a2659800001a1", "cast_id": 22, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 10}, {"name": "Clint Howard", "character": "Mark", "id": 15661, "credit_id": "53ac64790e0a265975000181", "cast_id": 23, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 11}, {"name": "Tiny Ron Taylor", "character": "Lothar", "id": 98579, "credit_id": "545122b2c3a368022a004923", "cast_id": 24, "profile_path": "/wSA3KPLbETH9JwyJ8ZvCakb4n8h.jpg", "order": 12}, {"name": "Robert Miranda", "character": "Spanish Johnny", "id": 20625, "credit_id": "5451240e0e0a263a0a0047df", "cast_id": 25, "profile_path": "/sDpNpJSan3xakHsbFkq9EU9ZXiL.jpg", "order": 13}, {"name": "John Lavachielli", "character": "Rusty", "id": 1217166, "credit_id": "545125aa0e0a263a18004752", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Eddie Jones", "character": "Malcolm", "id": 8692, "credit_id": "54512649c3a368023900456e", "cast_id": 27, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 15}, {"name": "Don Pugsley", "character": "Goose", "id": 157618, "credit_id": "5451acbc0e0a263a18005586", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Nada Despotovich", "character": "Irma", "id": 20975, "credit_id": "5451ad56c3a36802330052bf", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "America Martin", "character": "Patsy", "id": 1379327, "credit_id": "5451addbc3a3680236005512", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Max Grod\u00e9nchik", "character": "Wilmer", "id": 1219415, "credit_id": "5451aec80e0a2601d8005452", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Michael Milhoan", "character": "Jeff", "id": 154295, "credit_id": "5451af4b0e0a263a180055e3", "cast_id": 32, "profile_path": null, "order": 20}, {"name": "Daniel O'Shea", "character": "Mike", "id": 1345999, "credit_id": "5451afe30e0a2639fe005941", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Joe D'Angerio", "character": "Stevie", "id": 120257, "credit_id": "5451e42a0e0a2601d8005cf5", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Tommy J. Huff", "character": "Lenny", "id": 1379388, "credit_id": "5451e5bec3a368532b006196", "cast_id": 35, "profile_path": "/mvdvQ6Il1s1aanMDkhkcxmwg3bI.jpg", "order": 23}, {"name": "Paul DeSouza", "character": "Pauly", "id": 1379394, "credit_id": "5451e899c3a3684bff000193", "cast_id": 36, "profile_path": null, "order": 24}, {"name": "Pat Crawford Brown", "character": "Mme Pye", "id": 58928, "credit_id": "5451e954c3a3680233005be3", "cast_id": 37, "profile_path": "/1aZTnQDtH0rXwA7ox0mCUsJj9z0.jpg", "order": 25}, {"name": "Julian Barnes", "character": "Charlie", "id": 1379395, "credit_id": "5451e9d7c3a3680233005bf2", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Sam Vincent", "character": "Victor", "id": 1379402, "credit_id": "5451ec860e0a263a0a006042", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Lisa Pedersen", "character": "la dame de l'aristocratie", "id": 1379403, "credit_id": "5451ed42c3a3680245005e60", "cast_id": 40, "profile_path": null, "order": 28}, {"name": "Peter Bromilow", "character": "l'aristocrate", "id": 53594, "credit_id": "5451ee150e0a262d46003b47", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Tom Kindle", "character": "le clap", "id": 1379404, "credit_id": "5451ee6cc3a3684bff00023e", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Charlie Stavola", "character": "un assistant r\u00e9alisateur", "id": 1379405, "credit_id": "5451f0480e0a2642c2003065", "cast_id": 43, "profile_path": "/l1pRhcCAAsw7A0qKevv1z1yWvq7.jpg", "order": 31}, {"name": "William Boyett", "character": "les agents de liaison du gouvernement", "id": 1216592, "credit_id": "545200db0e0a263a0a0062c8", "cast_id": 44, "profile_path": "/bXMRPKQjv0BuMGGsgO1ewpIbODl.jpg", "order": 32}, {"name": "William Frankfather", "character": "les agents de liaison du gouvernement", "id": 77015, "credit_id": "54520150c3a3684bff000464", "cast_id": 45, "profile_path": "/3uZ2WacOsMzb3cBZfuKgil8OVvr.jpg", "order": 33}, {"name": "Heinrich James", "character": "l'agent nazi", "id": 156126, "credit_id": "54520211c3a3684bff000477", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Herman Poppe", "character": "le Capitaine du zeppelin", "id": 1217466, "credit_id": "545203870e0a263a0a00630d", "cast_id": 47, "profile_path": "/vNi7pfg9MYbi4RPinmkSGkXdUY0.jpg", "order": 35}, {"name": "Norbert Weisser", "character": "le pilote du zeppelin", "id": 6701, "credit_id": "545203e10e0a2601d80060b3", "cast_id": 48, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 36}, {"name": "Michael Francis Clarke", "character": "les G-Men", "id": 162778, "credit_id": "545204a1c3a3681159001505", "cast_id": 49, "profile_path": "/jBh0jG8meLDjV6tB4ikp4IqPs44.jpg", "order": 37}, {"name": "Darryl Henriques", "character": "les G-Men", "id": 1379424, "credit_id": "54520517c3a368023600616a", "cast_id": 50, "profile_path": "/7QMHooY9ewNQlE24WKAOdwW0evU.jpg", "order": 38}, {"name": "Scanlon Gail", "character": "le G-Man au Chaplin Field", "id": 997993, "credit_id": "545207620e0a263a0a006373", "cast_id": 51, "profile_path": "/7YU9NpRkOkaXjmUmAfbkaTeLJeA.jpg", "order": 39}, {"name": "Melora Hardin", "character": "la chanteuse du South Seas Club", "id": 404, "credit_id": "54520887c3a3680233005f74", "cast_id": 52, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 40}, {"name": "Bob Leeman", "character": "W.C. Fields", "id": 1379439, "credit_id": "545208ca0e0a2601d8006130", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "Rick Overton", "character": "le patron du South Seas Club", "id": 1539, "credit_id": "545209aa0e0a263a10006559", "cast_id": 54, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 42}, {"name": "Gene Daily", "character": "Clark Gable", "id": 1379442, "credit_id": "54520a300e0a2639fe0065b5", "cast_id": 55, "profile_path": null, "order": 43}, {"name": "Dick Warlock", "character": "un agent du FBI", "id": 14663, "credit_id": "54520cccc3a3681159001632", "cast_id": 56, "profile_path": "/n0TfOxlMYfqxclyRAN4kj2dajkk.jpg", "order": 44}, {"name": "Thomas Lee Tully", "character": "un journaliste", "id": 1379447, "credit_id": "54520d31c3a3684bff00058b", "cast_id": 57, "profile_path": null, "order": 45}, {"name": "Mike Finneran", "character": "un journaliste", "id": 1379448, "credit_id": "54520e050e0a263a180062e2", "cast_id": 58, "profile_path": null, "order": 46}, {"name": "Doug McGrath", "character": "un journaliste", "id": 62033, "credit_id": "54520e960e0a2601d80061b1", "cast_id": 59, "profile_path": "/5SymooBkRDbpetuy5VlgMZWcfmZ.jpg", "order": 47}, {"name": "Dave Adams", "character": "un journaliste", "id": 142286, "credit_id": "54520fdfc3a368024500623b", "cast_id": 60, "profile_path": null, "order": 48}, {"name": "Arlee Reed", "character": "un cam\u00e9raman", "id": 1379453, "credit_id": "5452106c0e0a263a04006783", "cast_id": 61, "profile_path": null, "order": 49}, {"name": "Kim Sebastian", "character": "l'infirmi\u00e8re de l'h\u00f4pital de la prison", "id": 95978, "credit_id": "545210ee0e0a263a18006330", "cast_id": 62, "profile_path": null, "order": 50}, {"name": "David Pressman", "character": "le garde de l'h\u00f4pital de la prison", "id": 111514, "credit_id": "54521153c3a36811590016ab", "cast_id": 63, "profile_path": "/d7E1CW5DfYEFvlxOGQ5IioQbW8t.jpg", "order": 51}, {"name": "Lila Finn", "character": "la dame \u00e0 la corde \u00e0 linge", "id": 999656, "credit_id": "545211e8c3a36811590016b8", "cast_id": 64, "profile_path": null, "order": 52}, {"name": "Perry Cook", "character": "le bon vieux gar\u00e7on", "id": 1379462, "credit_id": "54521232c3a36811590016c4", "cast_id": 65, "profile_path": null, "order": 53}, {"name": "Taylor Gilbert", "character": "une h\u00f4tesse", "id": 1355926, "credit_id": "5452135dc3a368023c006303", "cast_id": 66, "profile_path": null, "order": 54}, {"name": "Ele Keats", "character": "les filles \u00e0 Newsstand", "id": 33834, "credit_id": "5452148ec3a3684bff00065f", "cast_id": 67, "profile_path": "/jvpj2Yq4U5nulKGoBy674EUe849.jpg", "order": 55}, {"name": "Danielle Bedau", "character": "les filles \u00e0 Newsstand", "id": 1379477, "credit_id": "545214c7c3a36802330060c4", "cast_id": 68, "profile_path": null, "order": 56}, {"name": "Chance Michael Corbitt", "character": "le gamin qui distribue les journaux", "id": 134801, "credit_id": "5452152ec3a368532b0066da", "cast_id": 69, "profile_path": "/rGODr97vGYCJGFs2cSvGxEbGim8.jpg", "order": 57}, {"name": "Bob Sandman", "character": "le leader du groupe au South Seas Club", "id": 1379478, "credit_id": "545215ed0e0a2639fe0066fc", "cast_id": 70, "profile_path": null, "order": 58}, {"name": "Lori Lynn Ross", "character": "la sir\u00e8ne au South Seas Club", "id": 1379484, "credit_id": "545216b00e0a2601d80062a7", "cast_id": 71, "profile_path": null, "order": 59}, {"name": "Kathleen Michaels", "character": "la cam\u00e9raman au South Seas Club", "id": 1379487, "credit_id": "5452175dc3a3684bff0006b5", "cast_id": 72, "profile_path": null, "order": 60}, {"name": "Merritt Yohnka", "character": "un Nazi", "id": 160342, "credit_id": "545219280e0a263a04006894", "cast_id": 73, "profile_path": "/dQ5H8gwsn8Q8m7mMCUogJu01cPT.jpg", "order": 61}, {"name": "Peter Frankland", "character": "les membres du commando nazi", "id": 109954, "credit_id": "545219a5c3a3684bff0006f0", "cast_id": 74, "profile_path": null, "order": 62}, {"name": "Kristopher Logan", "character": "les membres du commando nazi", "id": 98554, "credit_id": "54521ba7c3a36802360063fd", "cast_id": 75, "profile_path": null, "order": 63}, {"name": "Paul Forsyth", "character": "les membres du commando nazi", "id": 1379516, "credit_id": "54521c0ec3a3680236006409", "cast_id": 76, "profile_path": null, "order": 64}, {"name": "Craig Hosking", "character": "les pilotes de l'Airshow", "id": 1379517, "credit_id": "54521d24c3a36802390061aa", "cast_id": 77, "profile_path": null, "order": 65}, {"name": "Steve Hinton Sr.", "character": "les pilotes de l'Airshow", "id": 1379518, "credit_id": "54521d9bc3a368532b0067ab", "cast_id": 78, "profile_path": null, "order": 66}, {"name": "Jim Franklin", "character": "les pilotes de l'Airshow", "id": 1379519, "credit_id": "54521e91c3a3680236006455", "cast_id": 79, "profile_path": null, "order": 67}, {"name": "Richard T. Brickert", "character": "les pilotes de l'Airshow", "id": 1379520, "credit_id": "54521f98c3a368023c00647f", "cast_id": 80, "profile_path": null, "order": 68}, {"name": "Chuck Wentworth", "character": "les pilotes de l'Airshow", "id": 119585, "credit_id": "545220b9c3a3680236006498", "cast_id": 81, "profile_path": null, "order": 69}, {"name": "Bill Turner", "character": "les pilotes de l'Airshow", "id": 1379521, "credit_id": "54522149c3a368024500644e", "cast_id": 82, "profile_path": null, "order": 70}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe43499251416c7500aa71", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 6.3, "runtime": 108}, "77883": {"poster_path": "/4QjzFuaZmB4btGnLwAgdp23BzIU.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85446075, "overview": "A young girl buys an antique box at a yard sale, unaware that inside the collectible lives a malicious ancient spirit. The girl's father teams with his ex-wife to find a way to end the curse upon their child.", "video": false, "id": 77883, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Possession", "tagline": "Fear The Demon That Doesn't Fear God", "vote_count": 136, "homepage": "http://www.thepossessionmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0431021", "adult": false, "backdrop_path": "/h4ApNjVe5z1lZzqC7i4r1jZqgha.jpg", "production_companies": [{"name": "Ghost House Pictures", "id": 768}, {"name": "North Box Productions", "id": 22637}], "release_date": "2012-08-30", "popularity": 0.565032023801022, "original_title": "The Possession", "budget": 14000000, "cast": [{"name": "Jeffrey Dean Morgan", "character": "Clyde", "id": 47296, "credit_id": "52fe4981c3a368484e12ee17", "cast_id": 23, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 0}, {"name": "Natasha Calis", "character": "Em", "id": 94482, "credit_id": "52fe4981c3a368484e12ee39", "cast_id": 31, "profile_path": "/i6txLt6FyZW7G7thV5AmTeHtWrC.jpg", "order": 1}, {"name": "Madison Davenport", "character": "Hannah", "id": 52869, "credit_id": "545658a50e0a2648d60074e0", "cast_id": 37, "profile_path": "/rNjyKpAD6tE2sWwkzeWPrO7AqcG.jpg", "order": 2}, {"name": "Kyra Sedgwick", "character": "Stephanie", "id": 26467, "credit_id": "52fe4981c3a368484e12ee1b", "cast_id": 24, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 3}, {"name": "Rob LaBelle", "character": "Russell", "id": 42708, "credit_id": "52fe4981c3a368484e12ee2d", "cast_id": 28, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 4}, {"name": "Nana Gbewonyo ", "character": "Darius", "id": 582701, "credit_id": "52fe4981c3a368484e12ee07", "cast_id": 19, "profile_path": "/ujeMI3c2TnqtU3NPkX6HTq0Nhs.jpg", "order": 5}, {"name": "Jim Thorburn ", "character": "Man", "id": 582702, "credit_id": "52fe4981c3a368484e12ee0b", "cast_id": 20, "profile_path": "/mzAeRnP6fdWGpkv2QvyoDJspnbK.jpg", "order": 6}, {"name": "Matisyahu ", "character": "Tzadok", "id": 582704, "credit_id": "52fe4981c3a368484e12ee0f", "cast_id": 21, "profile_path": "/u07beEaEc7wYlfUjS9LpQVPx0ym.jpg", "order": 7}, {"name": "Quinn Lord", "character": "Student", "id": 89885, "credit_id": "52fe4981c3a368484e12ee13", "cast_id": 22, "profile_path": "/lsvehrliOkHJYOMaDLXuPVDS4mH.jpg", "order": 8}, {"name": "Jay Brazeau", "character": "Professor McMannis", "id": 63791, "credit_id": "52fe4981c3a368484e12ee1f", "cast_id": 25, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 9}, {"name": "Erin Simms ", "character": "Possessed Italian Girl", "id": 582698, "credit_id": "52fe4981c3a368484e12ee03", "cast_id": 16, "profile_path": "/vP6BbmAbqfie12D7SME7uZvzt5J.jpg", "order": 10}, {"name": "Matisyahu ", "character": "Tzadok", "id": 582704, "credit_id": "52fe4981c3a368484e12ee23", "cast_id": 26, "profile_path": "/u07beEaEc7wYlfUjS9LpQVPx0ym.jpg", "order": 11}, {"name": "John Cassini", "character": "Stephanie's Attorney", "id": 12055, "credit_id": "52fe4981c3a368484e12ee31", "cast_id": 29, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 12}, {"name": "Grant Show", "character": "Brett", "id": 78141, "credit_id": "52fe4981c3a368484e12ee35", "cast_id": 30, "profile_path": "/dY3r3fU1mcu20vX3TIcY88zi0o1.jpg", "order": 13}], "directors": [{"name": "Ole Bornedal", "department": "Directing", "job": "Director", "credit_id": "52fe4981c3a368484e12edcb", "profile_path": null, "id": 22676}], "vote_average": 5.8, "runtime": 92}, "192577": {"poster_path": "/lB3movQFEgRZQWeZtCceLhUiIQj.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 17137302, "overview": "Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.", "video": false, "id": 192577, "genres": [{"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Space Pirate Captain Harlock", "tagline": "", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt2668134", "adult": false, "backdrop_path": "/sWCybDNQ1UDNeyO19RqMhQwLf5a.jpg", "production_companies": [{"name": "Toei Animation Company", "id": 3116}], "release_date": "2013-09-07", "popularity": 1.6120162048056, "original_title": "\u30ad\u30e3\u30d7\u30c6\u30f3\u30cf\u30fc\u30ed\u30c3\u30af", "budget": 30000000, "cast": [{"name": "Shun Oguri", "character": "Captain Harlock (voice)", "id": 46364, "credit_id": "52fe4cac9251416c910fc6eb", "cast_id": 1, "profile_path": "/nQC5diyl25qS8qLsdMxTzafjnHn.jpg", "order": 0}, {"name": "Haruma Miura", "character": "Yama (voice)", "id": 133168, "credit_id": "52fe4cac9251416c910fc6ef", "cast_id": 2, "profile_path": "/zEEtjHUVI8xmEsKIbewjtNRS7M6.jpg", "order": 1}, {"name": "Yu Aoi", "character": "Miime (voice)", "id": 84028, "credit_id": "52fe4cac9251416c910fc6f3", "cast_id": 3, "profile_path": "/sXgvUK8uWJ4xCxA9Oklapm08DPJ.jpg", "order": 2}, {"name": "Arata Furuta", "character": "Yattaran (voice)", "id": 146785, "credit_id": "52fe4cac9251416c910fc6f7", "cast_id": 4, "profile_path": "/lghQZHrGVED17jCQxOiLnKzfCQQ.jpg", "order": 3}, {"name": "Ayano Fukuda", "character": "Tori-san (voice)", "id": 1184807, "credit_id": "52fe4cac9251416c910fc6fb", "cast_id": 5, "profile_path": "/t51he0dRsE0680IPpYvIgIkJr4j.jpg", "order": 4}, {"name": "Toshiyuki Morikawa", "character": "Isora (voice)", "id": 9706, "credit_id": "52fe4cac9251416c910fc6ff", "cast_id": 6, "profile_path": "/aAmwmPXJBnwTnvWVDx74OdNGo8q.jpg", "order": 5}, {"name": "Maaya Sakamoto", "character": "Nami (voice)", "id": 9711, "credit_id": "52fe4cac9251416c910fc703", "cast_id": 7, "profile_path": "/wEJDH3mzF4cLhUfNQKt8YfhpLjZ.jpg", "order": 6}, {"name": "Kiyoshi Kobayashi", "character": "Roujin (voice)", "id": 82508, "credit_id": "52fe4cac9251416c910fc707", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Chikao Ohtsuka", "character": "Soukan (voice)", "id": 85285, "credit_id": "52fe4cac9251416c910fc70b", "cast_id": 10, "profile_path": "/gS2Jke10M0z06QcKTvy9dsqQtjU.jpg", "order": 8}, {"name": "Miyuki Sawashiro", "character": "Kei (voice)", "id": 186341, "credit_id": "52fe4cac9251416c910fc727", "cast_id": 15, "profile_path": "/jr5cermPexGYtXxDHyzmOa4MpRt.jpg", "order": 9}], "directors": [{"name": "Shinji Aramaki", "department": "Directing", "job": "Director", "credit_id": "52fe4cac9251416c910fc711", "profile_path": null, "id": 70100}], "vote_average": 6.6, "runtime": 115}, "45132": {"poster_path": "/wRYZdWGCcC7ttY7MFNbIKpR3pnn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 324138, "overview": "After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.", "video": false, "id": 45132, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Super", "tagline": "Shut up, crime!", "vote_count": 102, "homepage": "http://www.thecrimsonbolt.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1512235", "adult": false, "backdrop_path": "/mA3cMu5YdLQ6GgNf5kwTWINDXfC.jpg", "production_companies": [{"name": "This Is That Productions", "id": 10059}, {"name": "Ambush Entertainment", "id": 14406}, {"name": "Crimson Bolt", "id": 14407}], "release_date": "2011-03-31", "popularity": 0.231595034341273, "original_title": "Super", "budget": 2500000, "cast": [{"name": "Rainn Wilson", "character": "Frank Darbo", "id": 11678, "credit_id": "52fe46b0c3a36847f810ccef", "cast_id": 3, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 0}, {"name": "Ellen Page", "character": "Libby", "id": 27578, "credit_id": "52fe46b0c3a36847f810ccf3", "cast_id": 4, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 1}, {"name": "Liv Tyler", "character": "Sarah", "id": 882, "credit_id": "52fe46b0c3a36847f810ccf7", "cast_id": 5, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 2}, {"name": "Kevin Bacon", "character": "Jacques", "id": 4724, "credit_id": "52fe46b0c3a36847f810ccfb", "cast_id": 6, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 3}, {"name": "Gregg Henry", "character": "Detective John Felkner", "id": 2518, "credit_id": "52fe46b0c3a36847f810ccff", "cast_id": 7, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 4}, {"name": "Michael Rooker", "character": "Abe", "id": 12132, "credit_id": "52fe46b0c3a36847f810cd03", "cast_id": 8, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 5}, {"name": "Andre Royo", "character": "Hamilton", "id": 74957, "credit_id": "52fe46b0c3a36847f810cd07", "cast_id": 9, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 6}, {"name": "Sean Gunn", "character": "Toby", "id": 51663, "credit_id": "52fe46b0c3a36847f810cd0b", "cast_id": 10, "profile_path": "/dldYyij2lt4rDUehY4wLZoZ0KUK.jpg", "order": 7}, {"name": "Stephen Blackehart", "character": "Quill", "id": 85096, "credit_id": "52fe46b0c3a36847f810cd1b", "cast_id": 14, "profile_path": "/jN1YGxv0W0zCJ2XFyGIUVaeFIfw.jpg", "order": 8}, {"name": "Don Mac", "character": "Mr. Range", "id": 932102, "credit_id": "52fe46b0c3a36847f810cd1f", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Linda Cardellini", "character": "Pet Store Employee", "id": 1817, "credit_id": "52fe46b0c3a36847f810cd23", "cast_id": 16, "profile_path": "/bC7fSXBPEfE51caLH5e1Ka5URc7.jpg", "order": 10}, {"name": "Nathan Fillion", "character": "The Holy Avenger", "id": 51797, "credit_id": "52fe46b0c3a36847f810cd27", "cast_id": 17, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 11}, {"name": "Gerardo Davila", "character": "Cop (as Gerardo Davilla)", "id": 968692, "credit_id": "52fe46b0c3a36847f810cd2b", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Grant Goodman", "character": "Young Frank", "id": 1110284, "credit_id": "52fe46b0c3a36847f810cd2f", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Paul T. Taylor", "character": "Frank Sr. (as Paul Taylor)", "id": 1133460, "credit_id": "52fe46b0c3a36847f810cd33", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Connor Day", "character": "Teenage Frank", "id": 1363393, "credit_id": "5413ad67c3a3687db2000843", "cast_id": 31, "profile_path": null, "order": 15}, {"name": "James Gunn", "character": "Demonswill", "id": 15218, "credit_id": "5413ad7d0e0a26199b0007f6", "cast_id": 32, "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "order": 16}, {"name": "Mikaela Hoover", "character": "Holly", "id": 1363394, "credit_id": "5413ad870e0a2619a4000874", "cast_id": 33, "profile_path": "/l0pfM43Ep1IL58q3SQ8vFpFqCfZ.jpg", "order": 17}, {"name": "Nick Holmes", "character": "Jim", "id": 1237281, "credit_id": "5413ae000e0a2619a4000896", "cast_id": 34, "profile_path": "/qA8lxS0USklar0mHP5FIXlMAZQ.jpg", "order": 18}, {"name": "Matt Moore", "character": "Jesus / Guy In Line", "id": 180355, "credit_id": "5413ae40c3a3687dc100086d", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Rob Zombie", "character": "Voice Of God", "id": 16848, "credit_id": "5413ae4dc3a3687db2000884", "cast_id": 36, "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "order": 20}, {"name": "Steve Agee", "character": "Comic Book Store Jerk", "id": 559457, "credit_id": "5413ae5cc3a3687dc1000876", "cast_id": 37, "profile_path": "/8XjgDjfkdmu31GvnHJw4laZ8TDM.jpg", "order": 21}, {"name": "Laurel Whitsett", "character": "Librarian (as Laurel Whisett)", "id": 61102, "credit_id": "5413ae8a0e0a26198a00089f", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "James Lentzsch", "character": "Passenger Teen", "id": 1033470, "credit_id": "5413aece0e0a2619a40008c3", "cast_id": 39, "profile_path": null, "order": 23}, {"name": "Nate Rubin", "character": "Driving Teen", "id": 110183, "credit_id": "5413aeed0e0a26199b000844", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Edrick Browne", "character": "Nathaniel", "id": 112286, "credit_id": "5413af17c3a3687dae00088d", "cast_id": 41, "profile_path": "/cj7f8xZb3JgjDgR4XdW1CD33fHd.jpg", "order": 25}, {"name": "Danny Cosmo", "character": "Purse-snatcher", "id": 86278, "credit_id": "5413af42c3a3687dae00089a", "cast_id": 42, "profile_path": "/fP7gwFDo6xEP5tY3rbfbtXkrid1.jpg", "order": 26}, {"name": "Krystal Mayo", "character": "Wheelchair Woman", "id": 109785, "credit_id": "5413af5dc3a3687dae00089f", "cast_id": 43, "profile_path": "/ozbQdVym78joGAt3uSul3X4wKCK.jpg", "order": 27}, {"name": "Russell Towery", "character": "Chickenhawk", "id": 61570, "credit_id": "5413af84c3a3687dc80008a8", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Mario Jiminez Jr.", "character": "Chicken", "id": 1363396, "credit_id": "5413af950e0a26198f0008da", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Jonathan Winkler", "character": "Transvestite", "id": 1363397, "credit_id": "5413afa2c3a3687db9000928", "cast_id": 46, "profile_path": null, "order": 30}, {"name": "Mollie Milligan", "character": "Sarah's Sister", "id": 1352105, "credit_id": "5413afbc0e0a2619830008ed", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Gerry May", "character": "Newscaster", "id": 1363398, "credit_id": "5413afc60e0a2619830008f3", "cast_id": 48, "profile_path": null, "order": 32}, {"name": "Valentine Miele", "character": "Line Butter", "id": 98653, "credit_id": "5413afde0e0a2619920008e3", "cast_id": 49, "profile_path": null, "order": 33}, {"name": "Michelle Gunn", "character": "Line Butter's Girlfriend", "id": 85101, "credit_id": "5413afffc3a3687dbe0008b4", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Darcel White Moreno", "character": "Waitress (as Darcel Moreno)", "id": 1270862, "credit_id": "5413b01d0e0a2619920008f3", "cast_id": 51, "profile_path": "/r5zYrq9qcb2paunxnxmXIISg5Qg.jpg", "order": 35}, {"name": "Greg Ingram", "character": "Long-haired Hood", "id": 1358928, "credit_id": "5413b052c3a3687dbe0008c6", "cast_id": 52, "profile_path": "/vjaq2FOpxzj4ZyqJmruMdnuZpmu.jpg", "order": 36}, {"name": "Lindsey Soileau", "character": "Libby's Friend", "id": 1363399, "credit_id": "5413b0600e0a2619a1000888", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Brandon Belknap", "character": "Christian", "id": 558904, "credit_id": "5413b0780e0a2619a4000931", "cast_id": 54, "profile_path": null, "order": 38}, {"name": "Zach Gilford", "character": "Jerry", "id": 70303, "credit_id": "5413b0910e0a2619a1000891", "cast_id": 55, "profile_path": "/wwR4rf9AcpjsStfO04MinoLlvly.jpg", "order": 39}, {"name": "Lloyd Kaufman", "character": "911 Man", "id": 78021, "credit_id": "5413b0c80e0a2619a400093f", "cast_id": 56, "profile_path": "/zTylEHdJL422WZ1vjEmEkDoWkk7.jpg", "order": 40}, {"name": "Tim J. Smith", "character": "Range's Technician (as Tim Smith)", "id": 1271752, "credit_id": "5413b0e6c3a3687db60008eb", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Mark Dealessandro", "character": "Thug Jumped On By Boltie", "id": 1363400, "credit_id": "5413b0f80e0a261983000945", "cast_id": 58, "profile_path": null, "order": 42}, {"name": "Cole S. McKay", "character": "Thug Set On Fire (as Cole McKay)", "id": 9567, "credit_id": "5413b151c3a3687dc80008ff", "cast_id": 59, "profile_path": null, "order": 43}, {"name": "Dominick LaBanca", "character": "Thug #1", "id": 1207723, "credit_id": "5413b17bc3a3687dae0008ef", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "John W. Lawson", "character": "Thug Missing Arms", "id": 1363404, "credit_id": "5413b18dc3a3687dc1000909", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "William Katt", "character": "Sgt. Fitzgibbon", "id": 45415, "credit_id": "5413b1aac3a3687db2000932", "cast_id": 62, "profile_path": "/8zgHplikymFmzQhOuwYhin6WJv6.jpg", "order": 46}], "directors": [{"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe46b0c3a36847f810cd11", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}], "vote_average": 6.6, "runtime": 96}, "11618": {"poster_path": "/fER5dBWsjxp19k6ZaXqTAAMzKMJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91188905, "overview": "Dr. David Marrow invites Nell Vance and Theo and Luke Sanderson to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself -- and, soon, they see the true nature of its horror.", "video": false, "id": 11618, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Haunting", "tagline": "Some houses are born bad.", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0171363", "adult": false, "backdrop_path": "/eMat94MVMxvezyvAEJs1k6XCkZn.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Roth-Arnold Productions", "id": 1560}], "release_date": "1999-07-23", "popularity": 0.429352983093669, "original_title": "The Haunting", "budget": 80000000, "cast": [{"name": "Liam Neeson", "character": "Dr. David Marrow", "id": 3896, "credit_id": "52fe44689251416c75033b1f", "cast_id": 12, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Theo", "id": 1922, "credit_id": "52fe44689251416c75033b23", "cast_id": 13, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Luke Sanderson", "id": 887, "credit_id": "52fe44689251416c75033b27", "cast_id": 14, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Lili Taylor", "character": "Eleanor 'Nell' Vance", "id": 3127, "credit_id": "52fe44689251416c75033b2b", "cast_id": 15, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 3}, {"name": "Bruce Dern", "character": "Mr. Dudley", "id": 6905, "credit_id": "52fe44689251416c75033b2f", "cast_id": 16, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 4}, {"name": "Marian Seldes", "character": "Mrs. Dudley", "id": 41293, "credit_id": "52fe44689251416c75033b33", "cast_id": 17, "profile_path": "/oxyOi7kJYCmdlNK89vawC8APpse.jpg", "order": 5}, {"name": "Alix Koromzay", "character": "Mary Lambetta", "id": 14707, "credit_id": "52fe44689251416c75033b37", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Todd Field", "character": "Todd Hackett", "id": 5010, "credit_id": "52fe44689251416c75033b3b", "cast_id": 19, "profile_path": "/kFKzr3OOz1oMhwhn9mYEkJsvkW.jpg", "order": 7}, {"name": "Virginia Madsen", "character": "Jane", "id": 12519, "credit_id": "52fe44689251416c75033b3f", "cast_id": 20, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 8}, {"name": "Michael Cavanaugh", "character": "Dr. Malcolm Keogh", "id": 101172, "credit_id": "52fe44689251416c75033b43", "cast_id": 21, "profile_path": "/9LiWhytapMAimpOasWcc9d78gMA.jpg", "order": 9}, {"name": "Tom Irwin", "character": "Lou", "id": 27544, "credit_id": "52fe44689251416c75033b47", "cast_id": 22, "profile_path": "/8veWAQr2kXYL3EP4ZkAjJhVcZGq.jpg", "order": 10}, {"name": "Charles Gunning", "character": "Hugh Crain", "id": 71659, "credit_id": "52fe44689251416c75033b4b", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Saul Priever", "character": "Ritchie", "id": 552094, "credit_id": "52fe44689251416c75033b4f", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "M.C. Gainey", "character": "Large Man", "id": 22132, "credit_id": "52fe44689251416c75033b53", "cast_id": 25, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 13}, {"name": "Hadley Eure", "character": "Carolyn Crain", "id": 176436, "credit_id": "52fe44689251416c75033b57", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Kadina de Elejalde", "character": "Rene Crain (as Kadina Halliday)", "id": 552095, "credit_id": "52fe44689251416c75033b5b", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Alessandra Benjamin", "character": "Psych Patient #1", "id": 552096, "credit_id": "52fe44689251416c75033b5f", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Karen S. Gregan", "character": "Psych Patient #2", "id": 175678, "credit_id": "52fe44689251416c75033b63", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Brandon Jarrett", "character": "Psych Patient #3", "id": 166652, "credit_id": "52fe44689251416c75033b67", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Mary McNeal", "character": "Psych Patient #4", "id": 183057, "credit_id": "52fe44689251416c75033b6b", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "William Minkin", "character": "Psych Patient #5", "id": 552097, "credit_id": "52fe44689251416c75033b6f", "cast_id": 32, "profile_path": null, "order": 20}], "directors": [{"name": "Jan de Bont", "department": "Directing", "job": "Director", "credit_id": "52fe44689251416c75033aeb", "profile_path": "/9kPf2LuyLLwCawSGyPIQCX7ighX.jpg", "id": 2209}], "vote_average": 5.5, "runtime": 113}, "36955": {"poster_path": "/mTAHr5h5i64hTLqo0cW2X2083Cx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 378882411, "overview": "Harry Tasker is a secret agent for the United States Government. For years, he has kept his job from his wife, but is forced to reveal his identity and try to stop nuclear terrorists when he and his wife are kidnapped by them.", "video": false, "id": 36955, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "True Lies", "tagline": "When he said I do, he never said what he did.", "vote_count": 323, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0111503", "adult": false, "backdrop_path": "/o2agns0LEqyEUCByMT8ViIOio7r.jpg", "production_companies": [{"name": "Lightstorm Entertainment", "id": 574}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1994-07-14", "popularity": 0.86929079139463, "original_title": "True Lies", "budget": 115000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Harry Tasker", "id": 1100, "credit_id": "52fe461c9251416c91049907", "cast_id": 2, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Jamie Lee Curtis", "character": "Helen Tasker", "id": 8944, "credit_id": "52fe461d9251416c9104990b", "cast_id": 3, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 1}, {"name": "Tom Arnold", "character": "Albert Gibson", "id": 74036, "credit_id": "52fe461d9251416c9104990f", "cast_id": 4, "profile_path": "/f2KAWJx4I5TQYRVLTrAUCffg0tP.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Simon", "id": 2053, "credit_id": "52fe461d9251416c91049913", "cast_id": 5, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Tia Carrere", "character": "Juno Skinner", "id": 13445, "credit_id": "52fe461d9251416c91049923", "cast_id": 11, "profile_path": "/s2y4Hj7ZIuEMyE0W3o8WCVcHwiL.jpg", "order": 4}, {"name": "Art Malik", "character": "Salim Abu Aziz", "id": 10672, "credit_id": "52fe461d9251416c9104991f", "cast_id": 9, "profile_path": "/dJ8isTdH4hLfQHDEJu7DQYdfeIz.jpg", "order": 5}, {"name": "Eliza Dushku", "character": "Dana Tasker", "id": 13446, "credit_id": "52fe461d9251416c91049917", "cast_id": 6, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 6}, {"name": "Grant Heslov", "character": "Faisil", "id": 31511, "credit_id": "52fe461d9251416c91049927", "cast_id": 12, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 7}, {"name": "Charlton Heston", "character": "Spencer Trilby", "id": 10017, "credit_id": "52fe461d9251416c9104991b", "cast_id": 7, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 8}], "directors": [{"name": "James Cameron", "department": "Directing", "job": "Director", "credit_id": "52fe461c9251416c91049903", "profile_path": "/6Zk8h1XsPGKUM8M8cKUHAnmnc8O.jpg", "id": 2710}], "vote_average": 6.4, "runtime": 141}, "45156": {"poster_path": "/1DDjTd3eLaUyXcF3ndIUDZpHnPe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It's a comedy about a guarded woman who finds out she's dying of cancer, but when she meets her match, the threat of falling in love is scarier than death", "video": false, "id": 45156, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "A Little Bit of Heaven", "tagline": "Life starts now.", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1440161", "adult": false, "backdrop_path": "/hRdPa1NGhGWoquRQsSts5yOoLSS.jpg", "production_companies": [{"name": "Davis Entertainment", "id": 1302}], "release_date": "2011-02-03", "popularity": 0.804887422699195, "original_title": "A Little Bit of Heaven", "budget": 0, "cast": [{"name": "Kate Hudson", "character": "Marley Corbett", "id": 11661, "credit_id": "52fe46b2c3a36847f810d317", "cast_id": 7, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Gael Garc\u00eda Bernal", "character": "Julian Goldstein", "id": 258, "credit_id": "52fe46b2c3a36847f810d31b", "cast_id": 8, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 1}, {"name": "Romany Malco", "character": "Peter Cooper", "id": 71530, "credit_id": "52fe46b2c3a36847f810d31f", "cast_id": 9, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 2}, {"name": "Kathy Bates", "character": "Beverly Corbett", "id": 8534, "credit_id": "52fe46b2c3a36847f810d323", "cast_id": 10, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 3}, {"name": "Lucy Punch", "character": "Sarah Walker", "id": 66446, "credit_id": "52fe46b2c3a36847f810d327", "cast_id": 12, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 4}, {"name": "Whoopi Goldberg", "character": "God", "id": 2395, "credit_id": "52fe46b2c3a36847f810d32b", "cast_id": 13, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 5}, {"name": "Peter Dinklage", "character": "Vinnie", "id": 22970, "credit_id": "52fe46b2c3a36847f810d335", "cast_id": 15, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 6}, {"name": "Rosemarie DeWitt", "character": "Renee Blair", "id": 14892, "credit_id": "52fe46b2c3a36847f810d339", "cast_id": 16, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 7}, {"name": "Treat Williams", "character": "Jack Corbett", "id": 4515, "credit_id": "52fe46b2c3a36847f810d33d", "cast_id": 17, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 8}, {"name": "Alan Dale", "character": "Dr. Sanders", "id": 52760, "credit_id": "52fe46b2c3a36847f810d341", "cast_id": 18, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 9}, {"name": "Romany Malco", "character": "Peter Cooper", "id": 71530, "credit_id": "52fe46b2c3a36847f810d345", "cast_id": 19, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 10}, {"name": "Steven Weber", "character": "Rob Randolph", "id": 6106, "credit_id": "52fe46b2c3a36847f810d349", "cast_id": 20, "profile_path": "/ujINzDjLNtELBSUkRHQgExzP4Fb.jpg", "order": 11}, {"name": "Johann Urb", "character": "Doug", "id": 101017, "credit_id": "52fe46b2c3a36847f810d34d", "cast_id": 21, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 12}], "directors": [{"name": "Nicole Kassell", "department": "Directing", "job": "Director", "credit_id": "52fe46b2c3a36847f810d313", "profile_path": "/3Y0YZKR02P2naMnXi1CYKUk1Wur.jpg", "id": 58573}], "vote_average": 6.4, "runtime": 106}, "69735": {"poster_path": "/bI1YVuhBN6Vws1GP9Mf01DyhC2s.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two men come to Gotham City: Bruce Wayne after years abroad feeding his lifelong obsession for justice and Jim Gordon after being too honest a cop with the wrong people elsewhere. After learning painful lessons about the city's corruption on its streets and police department respectively, this pair learn how to fight back their own way. With that, Gotham's evildoers from top to bottom are terrorized by the mysterious Batman and the equally heroic Gordon is assigned to catch him by comrades who both hate and fear him themselves. In the ensuing manhunt, both find much in common as the seeds of an unexpected friendship are laid with additional friends and rivals helping to start the legend.", "video": false, "id": 69735, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Batman: Year One", "tagline": "A merciless crime turns a man into an outlaw.", "vote_count": 80, "homepage": "http://www.watchvideoseries.com/movies/batman-year-one-2011/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1672723", "adult": false, "backdrop_path": "/hAhMOPPPxzCKsCu5rUMYdwS8Yb5.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Premiere", "id": 4811}], "release_date": "2011-09-27", "popularity": 0.728172498095484, "original_title": "Batman: Year One", "budget": 0, "cast": [{"name": "Ben McKenzie", "character": "Bruce Wayne/Batman", "id": 17245, "credit_id": "52fe47d9c3a368484e0dcccf", "cast_id": 30, "profile_path": "/rm3vfSXk6FDGRpjaOfM7VSsp5sd.jpg", "order": 0}, {"name": "Bryan Cranston", "character": "Lt. James Gordon", "id": 17419, "credit_id": "52fe47d8c3a368484e0dcc55", "cast_id": 2, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 1}, {"name": "Eliza Dushku", "character": "Selina Kyle/Catwoman", "id": 13446, "credit_id": "52fe47d9c3a368484e0dcc59", "cast_id": 3, "profile_path": "/iYTq8KD1UDgexfelTyETOVC14Ph.jpg", "order": 2}, {"name": "Katee Sackhoff", "character": "Detective Sarah Essen", "id": 51798, "credit_id": "52fe47d9c3a368484e0dcc5d", "cast_id": 4, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 3}, {"name": "Alex Rocco", "character": "Carmine Falcone", "id": 20752, "credit_id": "52fe47d9c3a368484e0dcc61", "cast_id": 5, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 4}, {"name": "Jon Polito", "character": "Commissioner Loeb", "id": 4253, "credit_id": "52fe47d9c3a368484e0dcc83", "cast_id": 11, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 5}, {"name": "Sara Ballantine", "character": "Skeevers' Attorney", "id": 127971, "credit_id": "52fe47d9c3a368484e0dcc87", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Jeff Bennett", "character": "Alfred Pennyworth / Falcone Guest", "id": 34982, "credit_id": "52fe47d9c3a368484e0dcc8b", "cast_id": 13, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 7}, {"name": "Steve Blum", "character": "Stan / News Anchor", "id": 81379, "credit_id": "52fe47d9c3a368484e0dcc8f", "cast_id": 14, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 8}, {"name": "Roark Critchlow", "character": "Hare Krishna", "id": 92612, "credit_id": "52fe47d9c3a368484e0dcc93", "cast_id": 15, "profile_path": "/9T6kOnHKOp7WldGSsB7xlC58bZh.jpg", "order": 9}, {"name": "Grey DeLisle", "character": "Barbara Gordon / Vicki Vale", "id": 15761, "credit_id": "52fe47d9c3a368484e0dcc97", "cast_id": 16, "profile_path": "/15L2a29fOLHUbaYCgDMKxclYiso.jpg", "order": 10}, {"name": "Robin Atkin Downes", "character": "Harvey Dent", "id": 130081, "credit_id": "52fe47d9c3a368484e0dcc9b", "cast_id": 17, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 11}, {"name": "Keith Ferguson", "character": "Jefferson Skeevers", "id": 143346, "credit_id": "52fe47d9c3a368484e0dcc9f", "cast_id": 18, "profile_path": "/sXZ1nVUUnt36PPC0LbhrcZKK7id.jpg", "order": 12}, {"name": "Michael Gough", "character": "Driver", "id": 3796, "credit_id": "52fe47d9c3a368484e0dcca3", "cast_id": 19, "profile_path": "/lSADK0gjUtcq4B6zKIUwB3SofSP.jpg", "order": 13}, {"name": "Danny Jacobs", "character": "Flass' Attorney", "id": 62389, "credit_id": "52fe47d9c3a368484e0dcca7", "cast_id": 20, "profile_path": "/e2f0ux30zGY0qZ6YxOhjf9mGOX2.jpg", "order": 14}, {"name": "Nick Jameson", "character": "Merkel", "id": 39214, "credit_id": "52fe47d9c3a368484e0dccab", "cast_id": 21, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 15}, {"name": "Liliana Mumy", "character": "Holly Robinson", "id": 71861, "credit_id": "52fe47d9c3a368484e0dccaf", "cast_id": 22, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 16}, {"name": "Pat Musick", "character": "Falcone's Wife", "id": 35349, "credit_id": "52fe47d9c3a368484e0dccb3", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Andrea Romano", "character": "Obstetrician", "id": 34945, "credit_id": "52fe47d9c3a368484e0dccb7", "cast_id": 24, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 18}, {"name": "Stephen Root", "character": "Brendon", "id": 17401, "credit_id": "52fe47d9c3a368484e0dccbb", "cast_id": 25, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 19}, {"name": "James Patrick Stuart", "character": "Henchman", "id": 105641, "credit_id": "52fe47d9c3a368484e0dccbf", "cast_id": 26, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 20}, {"name": "Fred Tatasciore", "character": "Detective Flass / Johnny Vitti", "id": 60279, "credit_id": "52fe47d9c3a368484e0dccc3", "cast_id": 27, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 21}, {"name": "Bruce Timm", "character": "Thug #1", "id": 34934, "credit_id": "52fe47d9c3a368484e0dccc7", "cast_id": 28, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 22}, {"name": "Bruce Wingert", "character": "Guard", "id": 1128396, "credit_id": "52fe47d9c3a368484e0dcccb", "cast_id": 29, "profile_path": null, "order": 23}], "directors": [{"name": "Sam Liu", "department": "Directing", "job": "Director", "credit_id": "52fe47d9c3a368484e0dcc67", "profile_path": null, "id": 90367}, {"name": "Lauren Montgomery", "department": "Directing", "job": "Director", "credit_id": "52fe47d9c3a368484e0dcc6d", "profile_path": null, "id": 74863}], "vote_average": 7.1, "runtime": 64}, "77930": {"poster_path": "/yHMWb5lpvCzKuxnEPd3OXq7OvMh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.", "video": false, "id": 77930, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Magic Mike", "tagline": "Work all day. Work it all night.", "vote_count": 234, "homepage": "http://magicmikemovie.warnerbros.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 328247, "name": "Magic Mike Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1915581", "adult": false, "backdrop_path": "/uaHEBPugW19sneaJNNeuOtZiSxB.jpg", "production_companies": [{"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Extension 765", "id": 8850}], "release_date": "2012-06-29", "popularity": 1.25300069500894, "original_title": "Magic Mike", "budget": 5000000, "cast": [{"name": "Channing Tatum", "character": "Mike Martingano \"Magic Mike\"", "id": 38673, "credit_id": "52fe4983c3a368484e12f52f", "cast_id": 1024, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Dallas", "id": 10297, "credit_id": "52fe4983c3a368484e12f525", "cast_id": 1021, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Olivia Munn", "character": "Joanna", "id": 81364, "credit_id": "52fe4983c3a368484e12f539", "cast_id": 1028, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 2}, {"name": "Cody Horn", "character": "Brooke", "id": 582816, "credit_id": "52fe4983c3a368484e12f549", "cast_id": 1032, "profile_path": "/3cBTrMdZF9Yj12IUAHb9a46qplS.jpg", "order": 3}, {"name": "Alex Pettyfer", "character": "Adam", "id": 61363, "credit_id": "52fe4983c3a368484e12f54d", "cast_id": 1033, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 4}, {"name": "Joe Manganiello", "character": "Big Dick Richie", "id": 20580, "credit_id": "52fe4983c3a368484e12f551", "cast_id": 1036, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 5}, {"name": "Matt Bomer", "character": "Ken", "id": 66743, "credit_id": "52fe4983c3a368484e12f555", "cast_id": 1037, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 6}, {"name": "James Martin Kelly", "character": "Sal", "id": 162849, "credit_id": "52fe4983c3a368484e12f559", "cast_id": 1038, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 7}, {"name": "Reid Carolin", "character": "Paul", "id": 1074867, "credit_id": "52fe4983c3a368484e12f55d", "cast_id": 1039, "profile_path": "/3Yxf9KliHckl3N71p4016Op2Tyj.jpg", "order": 8}, {"name": "Adam Rodr\u00edguez", "character": "Tito", "id": 49706, "credit_id": "52fe4983c3a368484e12f561", "cast_id": 1040, "profile_path": "/jMBghQKSROfpN2wZ5usK019DA2G.jpg", "order": 9}, {"name": "Kevin Nash", "character": "Tarzan", "id": 135352, "credit_id": "52fe4983c3a368484e12f565", "cast_id": 1041, "profile_path": "/mmbhdSwlmfBj9LCH9I4QoPgjDN0.jpg", "order": 10}, {"name": "Gabriel Iglesias", "character": "Tobias", "id": 86498, "credit_id": "52fe4983c3a368484e12f569", "cast_id": 1042, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 11}, {"name": "Betsy Brandt", "character": "Banker", "id": 1217934, "credit_id": "535bc2b30e0a264fe1001865", "cast_id": 1047, "profile_path": "/zpmsca1HCVqYrtWXV9xdmsECDTI.jpg", "order": 12}, {"name": "Riley Keough", "character": "Nora", "id": 98522, "credit_id": "52fe4983c3a368484e12f571", "cast_id": 1044, "profile_path": "/u9mRvBkmeUYYWuNHNylmAPZic15.jpg", "order": 13}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4983c3a368484e12f521", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 5.7, "runtime": 110}, "77931": {"poster_path": "/mF2FXzZ3EktWoagU4fzoabNsK6J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347434178, "overview": "The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful, magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants, and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs, Gargamel kidnaps Smurfette and brings her to Paris, where he has been winning the adoration of millions as the world\u00b9s greatest sorcerer. It's up to Papa, Clumsy, Grouchy, and Vanity to return to our world, reunite with their human friends Patrick and Grace Winslow, and rescue her! Will Smurfette, who has always felt different from the other Smurfs, find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue?", "video": false, "id": 77931, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Smurfs 2", "tagline": "Get ready to get naughty!", "vote_count": 294, "homepage": "http://smurfhappens.com", "belongs_to_collection": {"backdrop_path": "/4q6O2Z569yHhcSDwcLEwhuNsmFV.jpg", "poster_path": "/oHnEQNLwyxPlaolWKInN85CQfOx.jpg", "id": 134897, "name": "The Smurfs Collection (Theatrical Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2017020", "adult": false, "backdrop_path": "/ynJ5OrFg4mbNnre8augsrbCXXQE.jpg", "production_companies": [{"name": "NeoReel", "id": 24097}, {"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Hemisphere Media Capital", "id": 9169}, {"name": "Kerner Entertainment Company", "id": 7311}], "release_date": "2013-07-31", "popularity": 1.42834865071628, "original_title": "The Smurfs 2", "budget": 105000000, "cast": [{"name": "Neil Patrick Harris", "character": "Patrick Winslow", "id": 41686, "credit_id": "52fe4983c3a368484e12f5a7", "cast_id": 2, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Christina Ricci", "character": "Vexy", "id": 6886, "credit_id": "52fe4983c3a368484e12f5ab", "cast_id": 3, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 1}, {"name": "Katy Perry", "character": "Smurfette", "id": 111455, "credit_id": "52fe4983c3a368484e12f5af", "cast_id": 4, "profile_path": "/mXSbYNKFessbuimdMIxccdRC8ph.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Gargamel", "id": 5587, "credit_id": "52fe4983c3a368484e12f5b3", "cast_id": 5, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Brendan Gleeson", "character": "Victor", "id": 2039, "credit_id": "52fe4983c3a368484e12f5bd", "cast_id": 7, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 4}, {"name": "Alan Cumming", "character": "Gutsy Smurf", "id": 10697, "credit_id": "52fe4983c3a368484e12f5c1", "cast_id": 8, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 5}, {"name": "Jayma Mays", "character": "Grace", "id": 34195, "credit_id": "52fe4983c3a368484e12f5c5", "cast_id": 9, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 6}, {"name": "Jonathan Winters", "character": "Papa Smurf", "id": 13593, "credit_id": "52fe4983c3a368484e12f5c9", "cast_id": 10, "profile_path": "/j63YOBYEXhbDWbXUnqD3gb5KJ5k.jpg", "order": 7}, {"name": "J. B. Smoove", "character": "Hackus", "id": 65920, "credit_id": "52fe4983c3a368484e12f5cd", "cast_id": 11, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 8}, {"name": "George Lopez", "character": "Grouchy Smurf", "id": 41798, "credit_id": "52fe4983c3a368484e12f5d1", "cast_id": 12, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 9}, {"name": "Anton Yelchin", "character": "Clumsy Smurf", "id": 21028, "credit_id": "52fe4983c3a368484e12f5d5", "cast_id": 13, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 10}, {"name": "John Oliver", "character": "Vanity Smurf", "id": 84292, "credit_id": "52fe4983c3a368484e12f5d9", "cast_id": 14, "profile_path": "/t1smh9XiGfVof4ep5ZSD8CEFQLk.jpg", "order": 11}, {"name": "Jacob Tremblay", "character": "Blue", "id": 1277188, "credit_id": "52fe4983c3a368484e12f5dd", "cast_id": 15, "profile_path": "/jztWT5I6I2Dyhma0FQFR2KLL7iU.jpg", "order": 12}], "directors": [{"name": "Raja Gosnell", "department": "Directing", "job": "Director", "credit_id": "52fe4983c3a368484e12f5a3", "profile_path": "/8hWd6QMA1HzvWVbfLawOupr00mb.jpg", "id": 1215}], "vote_average": 5.7, "runtime": 105}, "12403": {"poster_path": "/7qkFDm9Wnly4ytl5FdKZleslDCp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "For their honeymoon, newlyweds Cliff and Cydney head to the tropical islands of Hawaii. While journeying through the paradisaical countryside the couple encounters Kale and Cleo, two disgruntled hitchhikers and Nick and Gina, two wild but well-meaning spirits who help guide them through the lush jungles. The picturesque waterfalls and scenic mountainsides quickly give way to terror when Cliff and Cydney learn of a grisly murder that occurred nearby and realize that they're being followed by chance acquaintances that suspiciously fit the description of the killers.", "video": false, "id": 12403, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "A Perfect Getaway", "tagline": "Welcome to paradise. Enter at your own risk.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0971209", "adult": false, "backdrop_path": "/yxsVOP9D4NgitI2fJ8q8qmKUxhh.jpg", "production_companies": [{"name": "Tooley Productions", "id": 22539}, {"name": "Rogue", "id": 8853}, {"name": "Relativity Media", "id": 7295}, {"name": "QED International", "id": 11029}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2009-06-08", "popularity": 0.742619440408635, "original_title": "A Perfect Getaway", "budget": 14000000, "cast": [{"name": "Milla Jovovich", "character": "Cydney", "id": 63, "credit_id": "52fe44dc9251416c75043831", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Cliff", "id": 18324, "credit_id": "52fe44dc9251416c75043835", "cast_id": 2, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Timothy Olyphant", "character": "Nick", "id": 18082, "credit_id": "52fe44dc9251416c75043839", "cast_id": 3, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 2}, {"name": "Kiele Sanchez", "character": "Gina", "id": 31168, "credit_id": "52fe44dc9251416c7504383d", "cast_id": 4, "profile_path": "/i0YEpWuk1zSvadwwa1r0rahDONt.jpg", "order": 3}, {"name": "Marley Shelton", "character": "Cleo", "id": 6407, "credit_id": "52fe44dd9251416c750438cb", "cast_id": 29, "profile_path": "/qWiLPwA83yYym6XFhn5OsaFdx5m.jpg", "order": 4}, {"name": "Chris Hemsworth", "character": "Kale", "id": 74568, "credit_id": "52fe44dd9251416c750438cf", "cast_id": 30, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 5}, {"name": "Anthony Ruivivar", "character": "Chronic", "id": 171522, "credit_id": "52fe44dd9251416c750438d9", "cast_id": 32, "profile_path": "/kyXQAe5bDYGMAhs7keT8apMmAZb.jpg", "order": 6}, {"name": "Dale Dickey", "character": "Earth Momma", "id": 46814, "credit_id": "52fe44dd9251416c750438dd", "cast_id": 33, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 7}, {"name": "Peter \"Navy\" Tuiasosopo", "character": "Supply Guy", "id": 84757, "credit_id": "52fe44dd9251416c750438e1", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Wendy Braun", "character": "Debbie Mason / Clerk", "id": 177164, "credit_id": "52fe44dd9251416c750438e5", "cast_id": 35, "profile_path": "/8wqSLpIqgtzU5ZoIEckWpd8KpEO.jpg", "order": 9}, {"name": "Jim Cruz", "character": "Helicopter Pilot", "id": 1077764, "credit_id": "52fe44dd9251416c750438e9", "cast_id": 36, "profile_path": null, "order": 10}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe44dc9251416c75043843", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}], "vote_average": 6.0, "runtime": 98}, "12405": {"poster_path": "/ojgf8iJpS4VX6jJfWGLpuEx0wm.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IN", "name": "India"}], "revenue": 377910544, "overview": "The story of the life of an impoverished Indian teen Jamal Malik, who becomes a contestant on the Hindi version of \"Who Wants to be A Millionaire?\", wins, and is then suspected of cheating.", "video": false, "id": 12405, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Slumdog Millionaire", "tagline": "What does it take to find a lost love? A. Money B. Luck C. Smarts D. Destiny", "vote_count": 750, "homepage": "http://www.foxsearchlight.com/slumdogmillionaire", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1010048", "adult": false, "backdrop_path": "/aIv7WnkxMWsswEpaeRuNbC32D9d.jpg", "production_companies": [{"name": "Celador Films", "id": 3573}, {"name": "Film4", "id": 9349}], "release_date": "2008-05-12", "popularity": 1.5207105485889, "original_title": "Slumdog Millionaire", "budget": 15000000, "cast": [{"name": "Anil Kapoor", "character": "Prem Kumar", "id": 72118, "credit_id": "52fe44dd9251416c7504395f", "cast_id": 2, "profile_path": "/m3GKtXU8DeP5DH1UD352c5ITOrc.jpg", "order": 0}, {"name": "Mia Drake Inderbitzin", "character": "Adele", "id": 72119, "credit_id": "52fe44dd9251416c75043963", "cast_id": 3, "profile_path": "/wsykF0f0bEKwhfPHp37WOGuUHBf.jpg", "order": 1}, {"name": "Dev Patel", "character": "Jamal Malik", "id": 76788, "credit_id": "52fe44dd9251416c75043967", "cast_id": 5, "profile_path": "/6XLMpclXmKrs5jAbcXaiURK1XRU.jpg", "order": 2}, {"name": "Saurabh Shukla", "character": "Sergeant Srinivas", "id": 76789, "credit_id": "52fe44dd9251416c7504396b", "cast_id": 6, "profile_path": "/uuPJGDxm8orU7ekCgjwiIqyXy3a.jpg", "order": 3}, {"name": "Rajendranath Zutshi", "character": "Director (as Raj Zutshi)", "id": 76790, "credit_id": "52fe44dd9251416c7504396f", "cast_id": 7, "profile_path": "/7t7BkGRvWohEFvP2SrSK7SzqEEd.jpg", "order": 4}, {"name": "Jeneva Talwar", "character": "Vision Mixer", "id": 76791, "credit_id": "52fe44dd9251416c75043973", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Freida Pinto", "character": "Latika", "id": 76792, "credit_id": "52fe44dd9251416c75043977", "cast_id": 9, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 6}, {"name": "Irrfan Khan", "character": "Police Inspector", "id": 76793, "credit_id": "52fe44dd9251416c7504397b", "cast_id": 10, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 7}, {"name": "Ayush Mahesh Khedekar", "character": "Youngest Jamal", "id": 1120194, "credit_id": "52fe44dd9251416c75043991", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Mahesh Manjrekar", "character": "Javed", "id": 85456, "credit_id": "52fe44dd9251416c75043995", "cast_id": 15, "profile_path": "/vKEqhAAnHyzgYzGPuW7bldPrlE2.jpg", "order": 9}, {"name": "Sanchita Choudhary", "character": "Jamal's mother", "id": 1120195, "credit_id": "52fe44dd9251416c75043999", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Azharuddin Mohammed Ismail", "character": "Youngest Salim", "id": 1403495, "credit_id": "549acaaa925141311f001947", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe44dd9251416c7504395b", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}, {"name": "Loveleen Tandan", "department": "Directing", "job": "Director", "credit_id": "551c04adc3a36876790031ff", "profile_path": null, "id": 6508}], "vote_average": 7.3, "runtime": 120}, "94329": {"poster_path": "/mfDGRp19BcZUfPIhdqzdQ2uGZrf.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "ID", "name": "Indonesia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Deep in the heart of Jakarta's slums lies an impenetrable safe house for the world's most dangerous killers and gangsters. Until now, the run-down apartment block has been considered untouchable to even the bravest of police. Cloaked under the cover of pre-dawn darkness and silence, an elite swat team is tasked with raiding the safe house in order to take down the notorious drug lord that runs it. But when a chance encounter with a spotter blows their cover and news of their assault reaches the drug lord, the building's lights are cut and all the exits blocked. Stranded on the sixth floor with no way out, the unit must fight their way through the city's worst to survive their mission. Starring Indonesian martial arts sensation Iko Uwais.", "video": false, "id": 94329, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Raid", "tagline": "1 Ruthless Crime Lord, 20 Elite Cops, 30 Floors of Hell", "vote_count": 274, "homepage": "http://www.sonyclassics.com/theraid/", "belongs_to_collection": {"backdrop_path": "/oRQ7INsPDVon7U2jphXDr7LSP3H.jpg", "poster_path": "/eAlYfpNmZ2BFjdamgXvy96kt3WG.jpg", "id": 257960, "name": "The Raid Collection"}, "original_language": "id", "status": "Released", "spoken_languages": [{"iso_639_1": "id", "name": "Bahasa indonesia"}], "imdb_id": "tt1899353", "adult": false, "backdrop_path": "/fCcWGyNgz4pmCdgqQsYVZfAgT1K.jpg", "production_companies": [{"name": "XYZ Films", "id": 12142}, {"name": "Pt. Merantau Films", "id": 12141}, {"name": "Celluloid Dreams", "id": 860}], "release_date": "2011-11-20", "popularity": 0.842529533693587, "original_title": "Serbuan maut", "budget": 1100000, "cast": [{"name": "Iko Uwais", "character": "Rama", "id": 113732, "credit_id": "52fe49529251416c750c4457", "cast_id": 11, "profile_path": "/5unOYIpJUl35q5Q7dG1A6tJF2Jk.jpg", "order": 0}, {"name": "Ananda George", "character": "Ari", "id": 1001664, "credit_id": "52fe49529251416c750c445f", "cast_id": 13, "profile_path": "/s7Lm00bfFPceIcENcWirXtCysHJ.jpg", "order": 2}, {"name": "Pierre Gruno", "character": "Wahyu", "id": 1001665, "credit_id": "52fe49529251416c750c4463", "cast_id": 14, "profile_path": "/yn5Ob5PWynjts1jfx4QGm75OoDk.jpg", "order": 3}, {"name": "Yayan Ruhian", "character": "Mad Dog", "id": 142019, "credit_id": "52fe49529251416c750c4467", "cast_id": 15, "profile_path": "/dt6EJRqA4UMHWIEDddbkONXaz4k.jpg", "order": 4}, {"name": "Ray Sahetapy", "character": "Tama", "id": 592495, "credit_id": "52fe49529251416c750c446b", "cast_id": 16, "profile_path": "/nqKNGkVUltpsOnGejWLSpqhvd4N.jpg", "order": 5}, {"name": "Tegar Satrya", "character": "Bowo", "id": 1001666, "credit_id": "52fe49529251416c750c446f", "cast_id": 17, "profile_path": "/qprfyLK29HqhMZZhbk2LGl7a5cZ.jpg", "order": 6}, {"name": "Verdi Solaiman", "character": "Budi", "id": 1001667, "credit_id": "52fe49529251416c750c4473", "cast_id": 18, "profile_path": "/pJPCGzcgYVhhf2DbqdzKgnpZ8tz.jpg", "order": 7}, {"name": "Johannes Taslim", "character": "Jaka", "id": 592496, "credit_id": "52fe49529251416c750c4477", "cast_id": 19, "profile_path": "/jTKPQryiRDTdlRot43FIDzARgi5.jpg", "order": 8}, {"name": "R. Iman Aji", "character": "Eko", "id": 1127112, "credit_id": "52fe49529251416c750c4499", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Yusuf Opilus", "character": "Alee", "id": 1127113, "credit_id": "52fe49529251416c750c449d", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Donny Alamsyah", "character": "Andi", "id": 1202416, "credit_id": "532c532dc3a3684b9d00178c", "cast_id": 27, "profile_path": "/r0nj2yPF760NEgj2tVT5TCY2HjG.jpg", "order": 11}, {"name": "Iang Darmawan", "character": "Gofar", "id": 1103310, "credit_id": "548d80d392514122ff003ba7", "cast_id": 29, "profile_path": "/ukJH7JJTvMO25vDteX9OgNqUfAv.jpg", "order": 12}, {"name": "Eka 'Piranha' Rahmadia", "character": "Dagu", "id": 1398995, "credit_id": "548d80ef925141031b0003e3", "cast_id": 30, "profile_path": null, "order": 13}], "directors": [{"name": "Gareth Evans", "department": "Directing", "job": "Director", "credit_id": "52fe49529251416c750c441d", "profile_path": "/alW7ScKUxyiI2TOBYOZkACsLD7c.jpg", "id": 142013}], "vote_average": 7.1, "runtime": 101}, "77948": {"poster_path": "/zXhphNKS56VQbVJXqk3OMrjtNNc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16863583, "overview": "A young American (Cavill) uncovers a conspiracy during his attempt to save his family, who were kidnapped while on vacation in Spain.", "video": false, "id": 77948, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Cold Light of Day", "tagline": "Be careful who you trust.", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1366365", "adult": false, "backdrop_path": "/dFOC8NGMkKPZr9ic2hMo1nJOuzZ.jpg", "production_companies": [{"name": "Film Rites", "id": 8083}, {"name": "Galavis Film", "id": 8084}, {"name": "Picture Machine", "id": 8085}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Summit Entertainment", "id": 491}, {"name": "Fria Luz Del Dia, A.I.E.", "id": 23625}], "release_date": "2012-09-06", "popularity": 0.967737380633672, "original_title": "The Cold Light of Day", "budget": 20000000, "cast": [{"name": "Henry Cavill", "character": "Will Shaw", "id": 73968, "credit_id": "52fe4984c3a368484e12fa41", "cast_id": 11, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 0}, {"name": "Ver\u00f3nica Echegui", "character": "Lucia", "id": 114254, "credit_id": "52fe4984c3a368484e12fa59", "cast_id": 18, "profile_path": "/cKOL0nQE9aMDtMJvbloQ4mDZRh.jpg", "order": 1}, {"name": "Sigourney Weaver", "character": "Jean Carrack", "id": 10205, "credit_id": "52fe4984c3a368484e12faa1", "cast_id": 31, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 2}, {"name": "Bruce Willis", "character": "Martin", "id": 62, "credit_id": "52fe4984c3a368484e12fa45", "cast_id": 12, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 3}, {"name": "Caroline Goodall", "character": "Laurie Shaw", "id": 6692, "credit_id": "52fe4984c3a368484e12fa49", "cast_id": 13, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 4}, {"name": "Jim Piddock", "character": "Meckler", "id": 120560, "credit_id": "52fe4984c3a368484e12fa4d", "cast_id": 14, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 5}, {"name": "Rafi Gavron", "character": "Josh", "id": 21660, "credit_id": "52fe4984c3a368484e12fa51", "cast_id": 15, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 6}, {"name": "Joseph Mawle", "character": "Gorman", "id": 119783, "credit_id": "52fe4984c3a368484e12fa55", "cast_id": 17, "profile_path": "/a7334sICnKRe5RFQEECQsvoyQ8P.jpg", "order": 7}, {"name": "Emma Hamilton", "character": "Dara", "id": 395846, "credit_id": "52fe4984c3a368484e12fa5d", "cast_id": 19, "profile_path": "/1l5Dr4Yy7T26zjU2hr7hwC5p3Dh.jpg", "order": 8}, {"name": "Michael Budd", "character": "Esmael", "id": 582925, "credit_id": "52fe4984c3a368484e12fa61", "cast_id": 20, "profile_path": "/83djGObhdc8tuwJkyMHIZJHJ16M.jpg", "order": 9}, {"name": "\u00d3scar Jaenada", "character": "Maximo", "id": 59129, "credit_id": "52fe4984c3a368484e12faa5", "cast_id": 32, "profile_path": "/naQmysDM8jhmwhVIrdjdVUTGHLQ.jpg", "order": 10}], "directors": [{"name": "Mabrouk El Mechri", "department": "Directing", "job": "Director", "credit_id": "52fe4984c3a368484e12fa07", "profile_path": null, "id": 74924}], "vote_average": 4.9, "runtime": 93}, "77949": {"poster_path": "/ls7Qwgtpty3GMfgEHVwlcBxu72S.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 175088, "overview": "The Awakening is a British horror thriller film directed by Nick Murphy, starring Rebecca Hall, Dominic West, and Imelda Staunton. 1921 England is overwhelmed by the loss and grief of World War I. Hoax exposer Florence Cathcart (Hall) visits a boarding school to explain sightings of a child ghost.", "video": false, "id": 77949, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Awakening", "tagline": "Sometimes dead does not mean gone.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1687901", "adult": false, "backdrop_path": "/ntdakjgQNmRNscwWgKQBTVw1UqY.jpg", "production_companies": [{"name": "Studio Canal", "id": 5870}, {"name": "BBC Films", "id": 288}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Creative Scotland", "id": 8087}, {"name": "Origin Pictures", "id": 8088}], "release_date": "2011-08-17", "popularity": 0.155604456666413, "original_title": "The Awakening", "budget": 4798235, "cast": [{"name": "Rebecca Hall", "character": "Florence Cathcart", "id": 15556, "credit_id": "52fe4985c3a368484e12fb07", "cast_id": 1021, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 0}, {"name": "Dominic West", "character": "Robert Mallory", "id": 17287, "credit_id": "52fe4985c3a368484e12fb0b", "cast_id": 1022, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 1}, {"name": "Imelda Staunton", "character": "Maud Hill", "id": 11356, "credit_id": "52fe4985c3a368484e12fb0f", "cast_id": 1023, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 2}, {"name": "Isaac Hempstead Wright", "character": "Tom", "id": 239020, "credit_id": "52fe4985c3a368484e12fb37", "cast_id": 1032, "profile_path": "/qF1Ca4aNDkpSGQt9Q7qfpRbwNOk.jpg", "order": 3}, {"name": "Lucy Cohu", "character": "Constance Strickland", "id": 29235, "credit_id": "52fe4985c3a368484e12fb13", "cast_id": 1024, "profile_path": "/fMIOyKGpremDJs5NJP44TutbyfO.jpg", "order": 4}, {"name": "John Shrapnel", "character": "Reverend Hugh Purslow", "id": 940, "credit_id": "52fe4985c3a368484e12fb17", "cast_id": 1025, "profile_path": "/nDIK01IoVNx7cfYOrKqGugItqO9.jpg", "order": 5}, {"name": "Diana Kent", "character": "Harriet Cathcart", "id": 15094, "credit_id": "52fe4985c3a368484e12fb1b", "cast_id": 1026, "profile_path": "/sMn4LRFnK7sSkQtrIIsOovzRrKS.jpg", "order": 6}, {"name": "Richard Durden", "character": "Alexander Cathcart", "id": 120833, "credit_id": "52fe4985c3a368484e12fb1f", "cast_id": 1027, "profile_path": "/jtsGAARS6sNDfHPGl4xrJdtSEb3.jpg", "order": 7}, {"name": "Alfie Field ", "character": "Victor Parry", "id": 582938, "credit_id": "52fe4985c3a368484e12fb23", "cast_id": 1028, "profile_path": "/gx3C4HViVVRj4ggruNBUaPO57NI.jpg", "order": 8}, {"name": "Tilly Vosburgh", "character": "Vera Flood", "id": 185464, "credit_id": "52fe4985c3a368484e12fb27", "cast_id": 1029, "profile_path": "/ed4ZGtFjcDPKoM0iPuud77L5KaE.jpg", "order": 9}, {"name": "Anastasia Hille", "character": "Katherine Vandermeer", "id": 66791, "credit_id": "52fe4985c3a368484e12fb3b", "cast_id": 1033, "profile_path": "/tjUxXrtcF5pZ8k6DMdmXZikHAIP.jpg", "order": 10}, {"name": "Andrew Havill", "character": "George Vandermeer", "id": 176191, "credit_id": "52fe4985c3a368484e12fb3f", "cast_id": 1034, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 11}, {"name": "Joseph Mawle", "character": "Edward Judd", "id": 119783, "credit_id": "52fe4985c3a368484e12fb43", "cast_id": 1035, "profile_path": "/a7334sICnKRe5RFQEECQsvoyQ8P.jpg", "order": 12}, {"name": "Neil Broome", "character": "School Master", "id": 1090947, "credit_id": "52fe4985c3a368484e12fb47", "cast_id": 1036, "profile_path": null, "order": 13}, {"name": "Shaun Dooley", "character": "Malcolm McNair", "id": 85071, "credit_id": "52fe4985c3a368484e12fb4b", "cast_id": 1037, "profile_path": "/3jFprpFHI3pYPAXW6cxMevf8u7D.jpg", "order": 14}, {"name": "Kasity Koehn", "character": "Sonya Wright", "id": 1408884, "credit_id": "550bb7469251414699002d05", "cast_id": 1063, "profile_path": null, "order": 15}], "directors": [{"name": "Nick Murphy ", "department": "Directing", "job": "Director", "credit_id": "52fe4984c3a368484e12fadf", "profile_path": null, "id": 582918}], "vote_average": 6.2, "runtime": 107}, "77950": {"poster_path": "/kajPlPUgobxci8ME5oqvzjN430q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 282570682, "overview": "The tale of an ordinary garden snail who dreams of winning the Indy 500.", "video": false, "id": 77950, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Turbo", "tagline": "SLO NO MO", "vote_count": 521, "homepage": "http://www.turbomovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1860353", "adult": false, "backdrop_path": "/dvdKrICCKP8Uh1Xqkn60oQXnYer.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2013-07-19", "popularity": 1.13509909813853, "original_title": "Turbo", "budget": 135000000, "cast": [{"name": "Ryan Reynolds", "character": "Turbo (voice)", "id": 10859, "credit_id": "52fe4985c3a368484e12fb97", "cast_id": 5, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Paul Giamatti", "character": "Chet (voice)", "id": 13242, "credit_id": "52fe4985c3a368484e12fb9b", "cast_id": 6, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 1}, {"name": "Michael Pe\u00f1a", "character": "Tito (voice)", "id": 454, "credit_id": "52fe4985c3a368484e12fb9f", "cast_id": 7, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 2}, {"name": "Samuel L. Jackson", "character": "Whiplash (voice)", "id": 2231, "credit_id": "52fe4985c3a368484e12fbc3", "cast_id": 17, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 3}, {"name": "Luis Guzm\u00e1n", "character": "Angelo (voice)", "id": 40481, "credit_id": "52fe4985c3a368484e12fba3", "cast_id": 8, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 4}, {"name": "Bill Hader", "character": "Guy Gagn\u00e9 (voice)", "id": 19278, "credit_id": "52fe4985c3a368484e12fba7", "cast_id": 9, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 5}, {"name": "Snoop Dogg", "character": "Smoove Move (voice)", "id": 19767, "credit_id": "52fe4985c3a368484e12fbbf", "cast_id": 16, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 6}, {"name": "Maya Rudolph", "character": "Burn (voice)", "id": 52792, "credit_id": "52fe4985c3a368484e12fbb7", "cast_id": 13, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 7}, {"name": "Ben Schwartz", "character": "Skid Mark (voice)", "id": 222121, "credit_id": "52fe4985c3a368484e12fbbb", "cast_id": 14, "profile_path": "/ty2N3LuUiXO1uKyRg74DUN82xQe.jpg", "order": 8}, {"name": "Richard Jenkins", "character": "Bobby (voice)", "id": 28633, "credit_id": "52fe4985c3a368484e12fbab", "cast_id": 10, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 9}, {"name": "Ken Jeong", "character": "Kim-Ly (voice)", "id": 83586, "credit_id": "52fe4985c3a368484e12fbaf", "cast_id": 11, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 10}, {"name": "Michelle Rodriguez", "character": "Paz (voice)", "id": 17647, "credit_id": "52fe4985c3a368484e12fbb3", "cast_id": 12, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 11}], "directors": [{"name": "David Soren", "department": "Directing", "job": "Director", "credit_id": "52fe4985c3a368484e12fb81", "profile_path": "/gDxfltxyHeR0uhBAhYniT9zQEEw.jpg", "id": 94075}], "vote_average": 6.2, "runtime": 96}, "77953": {"poster_path": "/6uH8BOWN60mu2Vd5z4jCaVWb2ix.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103430245, "overview": "The film follows two rival politicians (Will Ferrell & Zach Galifianakis) who are trying to win an election to represent their small South Carolina congressional district in the United States House of Representatives.", "video": false, "id": 77953, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Campaign", "tagline": "May The Best Loser Win.", "vote_count": 184, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1790886", "adult": false, "backdrop_path": "/8mKomlkHvO753Wc9w2Q25ffc4UC.jpg", "production_companies": [{"name": "Gary Sanchez Productions", "id": 4740}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2012-08-09", "popularity": 0.539869587399124, "original_title": "The Campaign", "budget": 0, "cast": [{"name": "Dylan McDermott", "character": "Tim Wattley", "id": 32597, "credit_id": "52fe4985c3a368484e12fcf7", "cast_id": 11, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Cam Brady", "id": 23659, "credit_id": "52fe4985c3a368484e12fcfb", "cast_id": 12, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Marty Huggins", "id": 58225, "credit_id": "52fe4985c3a368484e12fcff", "cast_id": 13, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Jason Sudeikis", "character": "Mitch", "id": 58224, "credit_id": "52fe4985c3a368484e12fd03", "cast_id": 14, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 3}, {"name": "Sarah Baker", "character": "Mitzi Huggins", "id": 461542, "credit_id": "52fe4985c3a368484e12fd07", "cast_id": 16, "profile_path": "/A1mwwdupm77sGDHmpUA8dec6VGT.jpg", "order": 4}, {"name": "Millard Darden", "character": "Moderator Carl Terry", "id": 582950, "credit_id": "52fe4985c3a368484e12fd0b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Kya Haywood", "character": "Dylan/Clay Huggins", "id": 582952, "credit_id": "52fe4985c3a368484e12fd0f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "John Lithgow", "character": "Glen Motch", "id": 12074, "credit_id": "52fe4985c3a368484e12fd13", "cast_id": 19, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 7}, {"name": "Dan Aykroyd", "character": "Wade Motch", "id": 707, "credit_id": "52fe4985c3a368484e12fd17", "cast_id": 20, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 8}, {"name": "Brian Cox", "character": "Raymond", "id": 1248, "credit_id": "52fe4985c3a368484e12fd1b", "cast_id": 21, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 9}, {"name": "Amelia Jackson-Gray", "character": "Becky", "id": 232416, "credit_id": "52fe4985c3a368484e12fd1f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Josh Lawson", "character": "Tripp", "id": 189230, "credit_id": "52fe4985c3a368484e12fd23", "cast_id": 23, "profile_path": "/pVH3Giua6hxX43tRahODMCmm4Ej.jpg", "order": 11}, {"name": "Thomas Middleditch", "character": "Travis", "id": 111678, "credit_id": "52fe4985c3a368484e12fd27", "cast_id": 24, "profile_path": "/eejkzd9gtYm7pMFiVdjsGBYde5H.jpg", "order": 12}, {"name": "Scott A. Martin", "character": "Wes Talager", "id": 1055739, "credit_id": "52fe4985c3a368484e12fd2b", "cast_id": 25, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 13}, {"name": "Karen Maruyama", "character": "Mrs. Yao", "id": 157865, "credit_id": "52fe4985c3a368484e12fd2f", "cast_id": 26, "profile_path": "/jthFzZk2riKzFt0kRt0YOqvvGzr.jpg", "order": 14}, {"name": "Katherine LaNasa", "character": "Rose Brady", "id": 169337, "credit_id": "52fe4985c3a368484e12fd33", "cast_id": 27, "profile_path": "/9cG8jSI1WheeZWAxtXxUHAt1y99.jpg", "order": 15}, {"name": "Kate Miner", "character": "Shana", "id": 214695, "credit_id": "53183b3dc3a3685c4a00108c", "cast_id": 28, "profile_path": "/gIBpjOfDlEEu0nikxc9OzjAEqJk.jpg", "order": 16}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe4985c3a368484e12fcbd", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 5.5, "runtime": 85}, "4232": {"poster_path": "/ewi7gYW22t8T3piRvrXO73GlzuL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 173046663, "overview": "A killer known as Ghostface begins killing off teenagers, and as the body count begins rising, one girl and her friends find themselves contemplating the \"Rules\" of horror films as they find themselves living in a real-life one.", "video": false, "id": 4232, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream", "tagline": "Someone has taken their love of scary movies one step too far.", "vote_count": 321, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0117571", "adult": false, "backdrop_path": "/5jZlGRo7fCLs96wcYY6fdKkLJ9I.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "1996-12-19", "popularity": 1.16445822946999, "original_title": "Scream", "budget": 14000000, "cast": [{"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe43b3c3a36847f8068f97", "cast_id": 20, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 0}, {"name": "David Arquette", "character": "Deputy Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe43b3c3a36847f8068f93", "cast_id": 19, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Gale Weathers", "id": 14405, "credit_id": "52fe43b3c3a36847f8068f9b", "cast_id": 21, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Skeet Ulrich", "character": "Billy Loomis", "id": 22108, "credit_id": "52fe43b3c3a36847f8068f9f", "cast_id": 22, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 3}, {"name": "Rose McGowan", "character": "Tatum Riley", "id": 16850, "credit_id": "52fe43b3c3a36847f8068fa3", "cast_id": 23, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 4}, {"name": "Matthew Lillard", "character": "Stuart Macher", "id": 26457, "credit_id": "52fe43b3c3a36847f8068fa7", "cast_id": 24, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 5}, {"name": "Jamie Kennedy", "character": "Randy Meeks", "id": 6213, "credit_id": "52fe43b3c3a36847f8068fab", "cast_id": 25, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 6}, {"name": "W. Earl Brown", "character": "Kenneth Jones", "id": 6951, "credit_id": "52fe43b3c3a36847f8068faf", "cast_id": 26, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 7}, {"name": "Drew Barrymore", "character": "Casey Becker", "id": 69597, "credit_id": "52fe43b3c3a36847f8068fb3", "cast_id": 27, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 8}, {"name": "Joseph Whipp", "character": "Sheriff Burke", "id": 13660, "credit_id": "52fe43b3c3a36847f8068fb7", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Roger L. Jackson", "character": "Phone Voice (voice)", "id": 51957, "credit_id": "52fe43b3c3a36847f8068fbb", "cast_id": 29, "profile_path": "/lI4N9GJ0QuC1YFYSwauNssGwe11.jpg", "order": 10}, {"name": "David Booth", "character": "Mr. Becker", "id": 101312, "credit_id": "52fe43b3c3a36847f8068fbf", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Lawrence Hecht", "character": "Neil Prescott", "id": 101313, "credit_id": "52fe43b3c3a36847f8068fc3", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Liev Schreiber", "character": "Cotton Weary", "id": 23626, "credit_id": "52fe43b3c3a36847f8068fc7", "cast_id": 32, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 13}, {"name": "Kevin Patrick Walls", "character": "Steven Orth", "id": 10827, "credit_id": "52fe43b3c3a36847f8068fcb", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Frances Lee McCain", "character": "Mrs. Riley", "id": 1070, "credit_id": "52fe43b3c3a36847f8068fcf", "cast_id": 34, "profile_path": "/kOI0WF56kQLIDCkEdT30KBDQNYT.jpg", "order": 15}, {"name": "Henry Winkler", "character": "Principal Arthur Hembry", "id": 31903, "credit_id": "52fe43b3c3a36847f8068fd3", "cast_id": 35, "profile_path": "/o3QkTZkDYMkKYJphYJkvMSx8eB3.jpg", "order": 16}, {"name": "Linda Blair", "character": "Obnoxious Reporter", "id": 37366, "credit_id": "52fe43b3c3a36847f8068fd7", "cast_id": 36, "profile_path": "/tIoU3CSpjnLi79UfBgNjXNQM1GN.jpg", "order": 17}, {"name": "Wes Craven", "character": "Fred the Janitor", "id": 5140, "credit_id": "52fe43b3c3a36847f8068fdb", "cast_id": 37, "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "order": 18}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe43b3c3a36847f8068f29", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.8, "runtime": 111}, "4233": {"poster_path": "/c5AyWNWooMGkJXlqLwmPQCjUwHt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 172363301, "overview": "Two years after the terrifying events that occurred in Woodsboro, Sidney is now attending Windsor College in Cincinnati with long time friend Randy. Meanwhile, Gale Weathers best selling book on Sidney's life has now been made into a major motion picture. When two college students are killed in a theatre while watching the new film \"Stab,\" Sidney knows deep down that history is repeating itself.", "video": false, "id": 4233, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream 2", "tagline": "Someone has taken their love of sequels one step too far.", "vote_count": 167, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120082", "adult": false, "backdrop_path": "/cBUvJWcV8k7GTEGoL2Dp6CmgUV1.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Konrad Pictures", "id": 85}, {"name": "Maven Entertainment", "id": 1601}, {"name": "Dimension Films", "id": 7405}], "release_date": "1997-12-09", "popularity": 1.2829813768929, "original_title": "Scream 2", "budget": 24000000, "cast": [{"name": "David Arquette", "character": "Deputy Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe43b4c3a36847f806905d", "cast_id": 14, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 0}, {"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe43b4c3a36847f8069061", "cast_id": 15, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Gale Weathers", "id": 14405, "credit_id": "52fe43b4c3a36847f8069065", "cast_id": 16, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Sarah Michelle Gellar", "character": "Casey 'Cici' Cooper", "id": 11863, "credit_id": "52fe43b4c3a36847f8069069", "cast_id": 17, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 3}, {"name": "Jamie Kennedy", "character": "Randy Meeks", "id": 6213, "credit_id": "52fe43b4c3a36847f806906d", "cast_id": 18, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 4}, {"name": "Laurie Metcalf", "character": "Debbie Salt", "id": 12133, "credit_id": "52fe43b4c3a36847f8069071", "cast_id": 19, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 5}, {"name": "Elise Neal", "character": "Hallie McDaniel", "id": 21215, "credit_id": "52fe43b4c3a36847f8069075", "cast_id": 20, "profile_path": "/6Z6LVIlaCVMWsRgOPFOA4NOXAQO.jpg", "order": 6}, {"name": "Jerry O'Connell", "character": "Derek Feldman", "id": 3035, "credit_id": "52fe43b4c3a36847f8069079", "cast_id": 22, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 8}, {"name": "Timothy Olyphant", "character": "Mikey", "id": 18082, "credit_id": "52fe43b4c3a36847f806907d", "cast_id": 23, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 9}, {"name": "Heather Graham", "character": "'Stab' Casey", "id": 69122, "credit_id": "52fe43b4c3a36847f8069081", "cast_id": 24, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 10}, {"name": "Jada Pinkett Smith", "character": "Maureen)", "id": 9575, "credit_id": "53bfcc41c3a3684cf9004abd", "cast_id": 25, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 11}, {"name": "Liev Schreiber", "character": "Cotton Weary", "id": 23626, "credit_id": "53bfcc7ac3a3684ce9004a49", "cast_id": 26, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 12}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe43b3c3a36847f8069011", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 6.1, "runtime": 120}, "4234": {"poster_path": "/8mmObJf9L07wwF92gKdVb4lRXVC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161834276, "overview": "A murdering spree begins to happen again, this time its targeted toward the original Woodsboro survivors and those associated with the movie inside a movie, Stab 3. Sydney must face the demons of her past to stop the killer.", "video": false, "id": 4234, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Scream 3", "tagline": "Someone has taken their love of trilogies one step too far.", "vote_count": 148, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jPTbJp1601vLu27WhyjhpVk8w0h.jpg", "poster_path": "/3DjOcwfd8cTcKBkWTcNntAZajEg.jpg", "id": 2602, "name": "Scream Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0134084", "adult": false, "backdrop_path": "/sZlCYw3fdzZBo857t2cY3WzoqZW.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2000-02-03", "popularity": 0.926708795368079, "original_title": "Scream 3", "budget": 40000000, "cast": [{"name": "David Arquette", "character": "Deputy Dwight 'Dewey' Riley", "id": 15234, "credit_id": "52fe43b4c3a36847f806911d", "cast_id": 15, "profile_path": "/apjsWAMyuuQ5QGGXdkLsQ21sf8V.jpg", "order": 0}, {"name": "Neve Campbell", "character": "Sidney Prescott", "id": 9206, "credit_id": "52fe43b4c3a36847f8069121", "cast_id": 16, "profile_path": "/gGXp2TwdCvm9sMMIJg9fC7IiPDl.jpg", "order": 1}, {"name": "Courteney Cox", "character": "Gale Weathers", "id": 14405, "credit_id": "52fe43b4c3a36847f8069125", "cast_id": 17, "profile_path": "/aHumcUwbzgKGYrHCLERdkt3W2QP.jpg", "order": 2}, {"name": "Patrick Dempsey", "character": "Mark Kincaid", "id": 18352, "credit_id": "52fe43b4c3a36847f8069129", "cast_id": 18, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 3}, {"name": "Parker Posey", "character": "Jennifer Jolie", "id": 7489, "credit_id": "52fe43b4c3a36847f806912d", "cast_id": 19, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 4}, {"name": "Scott Foley", "character": "Roman Bridger", "id": 35595, "credit_id": "52fe43b4c3a36847f8069131", "cast_id": 20, "profile_path": "/sqZxruEjuXUG52kuOItnOVoDjPZ.jpg", "order": 5}, {"name": "Deon Richmond", "character": "Tyson Fox", "id": 35596, "credit_id": "52fe43b4c3a36847f8069135", "cast_id": 21, "profile_path": "/ussG1tkxeGe1iVj234A3c1MbuHo.jpg", "order": 6}, {"name": "Emily Mortimer", "character": "Angelina Tyler", "id": 1246, "credit_id": "52fe43b4c3a36847f8069139", "cast_id": 22, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 7}, {"name": "Lance Henriksen", "character": "John Milton", "id": 2714, "credit_id": "52fe43b4c3a36847f806913d", "cast_id": 23, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 8}, {"name": "Jenny McCarthy", "character": "Sarah Darling", "id": 35597, "credit_id": "52fe43b4c3a36847f8069141", "cast_id": 24, "profile_path": "/itsSilp7prfi3lKQMFn1p5J6hWI.jpg", "order": 9}, {"name": "Matt Keeslar", "character": "Tom Prinze", "id": 35598, "credit_id": "52fe43b4c3a36847f8069145", "cast_id": 25, "profile_path": "/s8G9jGgrFbJcjUgFO6vJ1uKCUbT.jpg", "order": 10}, {"name": "Roger Corman", "character": "Hollywood Executive", "id": 102429, "credit_id": "52fe43b4c3a36847f8069149", "cast_id": 26, "profile_path": "/gCfEvxl7jTv2dBo8HvwWVMi3auz.jpg", "order": 11}, {"name": "Patrick Warburton", "character": "Steven Stone", "id": 9657, "credit_id": "52fe43b4c3a36847f806914d", "cast_id": 27, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 12}, {"name": "Carrie Fisher", "character": "Bianca", "id": 4, "credit_id": "52fe43b4c3a36847f8069151", "cast_id": 28, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 13}, {"name": "Heather Matarazzo", "character": "Martha Meeks", "id": 33656, "credit_id": "52fe43b4c3a36847f8069155", "cast_id": 29, "profile_path": "/xcwR8aPuSkUCDPIyKU049M1CXph.jpg", "order": 14}, {"name": "Jamie Kennedy", "character": "Randy Meeks", "id": 6213, "credit_id": "52fe43b4c3a36847f8069159", "cast_id": 30, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 15}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe43b4c3a36847f806915d", "cast_id": 31, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 16}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe43b4c3a36847f8069161", "cast_id": 32, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 17}, {"name": "Liev Schreiber", "character": "Cotton Weary", "id": 23626, "credit_id": "52fe43b4c3a36847f8069165", "cast_id": 33, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 18}], "directors": [{"name": "Wes Craven", "department": "Directing", "job": "Director", "credit_id": "52fe43b4c3a36847f80690cb", "profile_path": "/qwjz10FiAyMvxD2b3XNEUsRb0zz.jpg", "id": 5140}], "vote_average": 5.9, "runtime": 116}, "94348": {"poster_path": "/59XyZTwKnkZDiyhOYjIle2Tr5Mq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30353232, "overview": "After Washington DC detective Alex Cross is told that a family member has been murdered, he vows to track down the killer. He soon discovers that she was not his first victim and that things are not what they seem.", "video": false, "id": 94348, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Alex Cross", "tagline": "Don't Ever Cross Alex Cross", "vote_count": 153, "homepage": "", "belongs_to_collection": {"backdrop_path": "/eyKpawn8yMq6kdv03wgKruMuSJX.jpg", "poster_path": "/64mlnEVoq1I0BZe4iDdAv89qO9Z.jpg", "id": 142680, "name": "Alex Cross Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1712170", "adult": false, "backdrop_path": "/s46EcIPd2AiAbqUCDGU3VkoRmMw.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-10-18", "popularity": 0.799317510687557, "original_title": "Alex Cross", "budget": 45000000, "cast": [{"name": "Tyler Perry", "character": "Dr. Alex Cross", "id": 80602, "credit_id": "52fe49549251416c750c47b7", "cast_id": 12, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 0}, {"name": "Rachel Nichols", "character": "Monica Ashe", "id": 50347, "credit_id": "52fe49549251416c750c47b3", "cast_id": 11, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 1}, {"name": "Jean Reno", "character": "Leon Mercier", "id": 1003, "credit_id": "52fe49549251416c750c47bb", "cast_id": 13, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 2}, {"name": "Matthew Fox", "character": "Picasso", "id": 28657, "credit_id": "52fe49549251416c750c47bf", "cast_id": 14, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 3}, {"name": "Giancarlo Esposito", "character": "Daramus Holiday", "id": 4808, "credit_id": "52fe49549251416c750c47c3", "cast_id": 15, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 4}, {"name": "Edward Burns", "character": "Tommy Kane", "id": 12833, "credit_id": "52fe49549251416c750c47c7", "cast_id": 16, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 5}, {"name": "Cicely Tyson", "character": "Nana Mama", "id": 18249, "credit_id": "52fe49549251416c750c47cb", "cast_id": 17, "profile_path": "/j7j7Qc1qi3W6JOqmPVWqqs5awjt.jpg", "order": 6}, {"name": "John C. McGinley", "character": "Richard Brookwell", "id": 11885, "credit_id": "52fe49549251416c750c47cf", "cast_id": 18, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 7}, {"name": "Chad Lindberg", "character": "Vincent Dardis", "id": 9186, "credit_id": "52fe49549251416c750c47d3", "cast_id": 19, "profile_path": "/ludrPIZeTAXXsnYzQvDzM2JV6eg.jpg", "order": 8}, {"name": "Carmen Ejogo", "character": "Maria Cross", "id": 37158, "credit_id": "52fe49549251416c750c47d7", "cast_id": 20, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 9}, {"name": "Stephanie Jacobsen", "character": "Fan Yau", "id": 83458, "credit_id": "52fe49549251416c750c47db", "cast_id": 21, "profile_path": "/mOivDxyWJ9tOTx2TEd3xNHXNAa4.jpg", "order": 10}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe49549251416c750c4779", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.4, "runtime": 101}, "12429": {"poster_path": "/3s0mpSpLkI7cIhqWGrGbsiyvlsH.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 187479518, "overview": "The son of a sailor, 5-year old Sosuke lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father's magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo's father sends the ocean's mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo's dreams of becoming human.", "video": false, "id": 12429, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Ponyo", "tagline": "Welcome To A World Where Anything Is Possible.", "vote_count": 293, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0876563", "adult": false, "backdrop_path": "/akDpPae2zJXZhokzsAPgDyNwiwX.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Toho Company", "id": 882}, {"name": "Dentsu", "id": 6452}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "The Yomiuri Shimbun", "id": 11726}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "Lawson", "id": 11849}, {"name": "Walt Disney Company", "id": 20193}, {"name": "Taikei Office", "id": 34557}, {"name": "Asahi Soft Drinks Company", "id": 34558}], "release_date": "2008-07-19", "popularity": 0.900540565987347, "original_title": "\u5d16\u306e\u4e0a\u306e\u30dd\u30cb\u30e7", "budget": 41677699, "cast": [{"name": "Yuria Nara", "character": "Ponyo (voice)", "id": 78346, "credit_id": "52fe44df9251416c75043ebb", "cast_id": 14, "profile_path": null, "order": 0}, {"name": "Hiroki Doi", "character": "Sosuke (voice)", "id": 78347, "credit_id": "52fe44df9251416c75043ebf", "cast_id": 15, "profile_path": null, "order": 1}, {"name": "George Tokoro", "character": "Fujimoto (voice) (as George Tokoro)", "id": 78348, "credit_id": "52fe44df9251416c75043ec3", "cast_id": 16, "profile_path": null, "order": 2}, {"name": "Tomoko Yamaguchi", "character": "Lisa (voice)", "id": 78349, "credit_id": "52fe44df9251416c75043ec7", "cast_id": 17, "profile_path": null, "order": 3}, {"name": "Y\u016bki Amami", "character": "Grandmammare (voice)", "id": 78350, "credit_id": "52fe44df9251416c75043ecb", "cast_id": 18, "profile_path": "/g7o8LMD63wPYM5ibTq2LDcYUH62.jpg", "order": 4}, {"name": "Kazushige Nagashima", "character": "Koichi (voice)", "id": 78351, "credit_id": "52fe44df9251416c75043ecf", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Akiko Yano", "character": "Ponyo's Sisters (voice)", "id": 78352, "credit_id": "52fe44df9251416c75043ed3", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Shinichi Hatori", "character": "Anchorman (voice)", "id": 78353, "credit_id": "52fe44df9251416c75043ed7", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Tokie Hidari", "character": "Kayo (voice)", "id": 78354, "credit_id": "52fe44df9251416c75043edb", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Eimi Hiraoka", "character": "Kumiko (voice)", "id": 78355, "credit_id": "52fe44df9251416c75043edf", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Rumi Hiiragi", "character": "Young Mother (voice)", "id": 19587, "credit_id": "52fe44df9251416c75043ee3", "cast_id": 24, "profile_path": "/gAjyBxRsQKYeZMkYQ6cmEj5DmHD.jpg", "order": 10}, {"name": "Tomoko Naraoka", "character": "Yoshie (voice)", "id": 78356, "credit_id": "52fe44df9251416c75043ee7", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Nozomi \u00d4hashi", "character": "Karen (voice)", "id": 78357, "credit_id": "52fe44df9251416c75043eeb", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Kazuko Yoshiyuki", "character": "Toki (voice)", "id": 36074, "credit_id": "52fe44df9251416c75043eef", "cast_id": 27, "profile_path": "/wPsmZqTuO2rk0RdO8kYbxkD90By.jpg", "order": 13}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe44df9251416c75043e6f", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.3, "runtime": 100}, "12435": {"poster_path": "/vaARLtfmTHbNpcZycgYLV62M7ye.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44638886, "overview": "A college graduate goes to work as a nanny for a rich New York family. Ensconced in their home, she has to juggle their dysfunction, a new romance, and the spoiled brat in her charge.", "video": false, "id": 12435, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Nanny Diaries", "tagline": "A comedy about life at the top, as seen from the bottom.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489237", "adult": false, "backdrop_path": "/R5dZcqRr83aiz3yVVgsG7ln9LW.jpg", "production_companies": [{"name": "FilmColony", "id": 1811}, {"name": "The Weinstein Company", "id": 308}], "release_date": "2007-08-24", "popularity": 0.916270697722852, "original_title": "The Nanny Diaries", "budget": 20000000, "cast": [{"name": "Scarlett Johansson", "character": "Annie Braddock", "id": 1245, "credit_id": "52fe44e09251416c75044059", "cast_id": 6, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Laura Linney", "character": "Mrs. X", "id": 350, "credit_id": "52fe44e09251416c7504405d", "cast_id": 7, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 1}, {"name": "Chris Evans", "character": "Hayden \"Harvard Hottie\"", "id": 16828, "credit_id": "52fe44e09251416c75044061", "cast_id": 8, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Mr. Stan X", "id": 13242, "credit_id": "52fe44e09251416c75044065", "cast_id": 9, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Nicholas Art", "character": "Grayer Addison X", "id": 2965, "credit_id": "52fe44e09251416c75044069", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Donna Murphy", "character": "Judy Braddock", "id": 2517, "credit_id": "52fe44e09251416c7504406d", "cast_id": 11, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 5}, {"name": "Alicia Keys", "character": "Lynette", "id": 72208, "credit_id": "52fe44e09251416c75044071", "cast_id": 12, "profile_path": "/7s596YUye3gnBg0dD1BC5WCcoXQ.jpg", "order": 6}, {"name": "Judith Roberts", "character": "Milicent", "id": 14797, "credit_id": "52fe44e09251416c75044075", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Charlie Hewson", "character": "JoJo", "id": 133046, "credit_id": "52fe44e09251416c750440a3", "cast_id": 21, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 8}, {"name": "Alison Wright", "character": "Bridget", "id": 1257565, "credit_id": "5302def5c3a36809fd479ba1", "cast_id": 22, "profile_path": "/78IN3NYUDajfKnljE9VPdN8TdDg.jpg", "order": 9}], "directors": [{"name": "Shari Springer Berman", "department": "Directing", "job": "Director", "credit_id": "52fe44e09251416c7504403d", "profile_path": "/7VQaCSTKZdOZs8bFEkiIkkGhgzU.jpg", "id": 72205}, {"name": "Robert Pulcini", "department": "Directing", "job": "Director", "credit_id": "52fe44e09251416c75044043", "profile_path": "/nUUPNrIwC6vJNGLwyfhq89yr4T4.jpg", "id": 72206}], "vote_average": 6.0, "runtime": 106}, "4244": {"poster_path": "/2TLNxkNbxLXouYsu6DGXKwWXnTr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69700000, "overview": "Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly -- with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.", "video": false, "id": 4244, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Kid", "tagline": "Nobody ever grows up quite like they imagined.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0219854", "adult": false, "backdrop_path": "/Arx6cOLuB47jwldV7eW4Bt4kAmd.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2000-07-07", "popularity": 0.432007908322262, "original_title": "The Kid", "budget": 65000000, "cast": [{"name": "Bruce Willis", "character": "Russell Duritz", "id": 62, "credit_id": "52fe43b5c3a36847f80695f3", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Spencer Breslin", "character": "Rusty Duritz", "id": 35654, "credit_id": "52fe43b5c3a36847f80695f7", "cast_id": 2, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Amy", "id": 1246, "credit_id": "52fe43b5c3a36847f80695fb", "cast_id": 3, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Lily Tomlin", "character": "Janet", "id": 10437, "credit_id": "52fe43b5c3a36847f80695ff", "cast_id": 4, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 3}, {"name": "Chi McBride", "character": "Kenny", "id": 8687, "credit_id": "52fe43b5c3a36847f8069603", "cast_id": 5, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 4}, {"name": "Jean Smart", "character": "Deirdre Lefever", "id": 5376, "credit_id": "52fe43b5c3a36847f8069607", "cast_id": 6, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 5}, {"name": "Dana Ivey", "character": "Dr. Suzanne Alexander", "id": 13314, "credit_id": "52fe43b5c3a36847f806960b", "cast_id": 7, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 6}, {"name": "Daniel von Bargen", "character": "Sam Duritz", "id": 1473, "credit_id": "52fe43b5c3a36847f806960f", "cast_id": 8, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 7}, {"name": "Stanley Anderson", "character": "Bob Riley", "id": 15253, "credit_id": "52fe43b5c3a36847f8069613", "cast_id": 9, "profile_path": "/xZg3C31ElqV54dXC6fc6Akf6K1z.jpg", "order": 8}, {"name": "Susan Dalian", "character": "Giselle", "id": 35656, "credit_id": "52fe43b5c3a36847f8069617", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Juanita Moore", "character": "Kenny's Grandmother", "id": 35658, "credit_id": "52fe43b5c3a36847f806961b", "cast_id": 11, "profile_path": "/xJrcIDUsk3VxZzJkop3C9HNkYFe.jpg", "order": 10}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe43b5c3a36847f806964b", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 5.9, "runtime": 104}, "12437": {"poster_path": "/hZtK6fkusSKzGc0f7yQ2syo14Ze.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91327197, "overview": "A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.", "video": false, "id": 12437, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Underworld: Rise of the Lycans", "tagline": "Every war has a beginning.", "vote_count": 670, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2gSaXagD9ZCuBHOsXF4tvtW7Djd.jpg", "poster_path": "/eoxZtI96bM8kHginiTpFkeCqR7Z.jpg", "id": 2326, "name": "Underworld Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0834001", "adult": false, "backdrop_path": "/gVfnoiCJBdv2SN7poIbU7eyNVq1.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Sketch Films", "id": 7738}, {"name": "UW3 Film Productions", "id": 7739}], "release_date": "2009-01-22", "popularity": 1.62095612187571, "original_title": "Underworld: Rise of the Lycans", "budget": 35000000, "cast": [{"name": "Bill Nighy", "character": "Viktor", "id": 2440, "credit_id": "52fe44e09251416c750440e3", "cast_id": 2, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "Michael Sheen", "character": "Lucian", "id": 3968, "credit_id": "52fe44e09251416c750440e7", "cast_id": 3, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 1}, {"name": "Rhona Mitra", "character": "Sonja", "id": 25702, "credit_id": "52fe44e09251416c750440df", "cast_id": 1, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 2}, {"name": "Shane Brolly", "character": "Kraven", "id": 3969, "credit_id": "52fe44e09251416c750440eb", "cast_id": 4, "profile_path": "/w0z73gQ5k6IIKVXR0cOjIYAaeWd.jpg", "order": 3}, {"name": "Steven Mackintosh", "character": "Andreas Tanis", "id": 978, "credit_id": "52fe44e09251416c750440ef", "cast_id": 5, "profile_path": "/3TQVLNfMiiBAcoaCbmWckxXqagN.jpg", "order": 4}, {"name": "Kevin Grevioux", "character": "Raze", "id": 3952, "credit_id": "52fe44e09251416c750440f3", "cast_id": 6, "profile_path": "/eP1P9jxMBiI1a6cQHlChNdDALKY.jpg", "order": 5}, {"name": "David Aston", "character": "Coloman", "id": 9383, "credit_id": "52feb9c2c3a3680f0103d5a1", "cast_id": 32, "profile_path": "/aO7w5K2BjeQaAUN3ogo9NuAD1qI.jpg", "order": 6}, {"name": "Geraldine Brophy", "character": "Nobleman's Wife", "id": 1047942, "credit_id": "52febabbc3a3680f1705aa9c", "cast_id": 33, "profile_path": "/5VArQQlKBtpa8ZhRH5gORPU0c4w.jpg", "order": 7}, {"name": "Leighton Cardno", "character": "Fearful Lycan", "id": 1226685, "credit_id": "52febc8bc3a3680efa053efc", "cast_id": 34, "profile_path": "/7ynTVvbFL3R9ZlpRYD8WPvIuGQS.jpg", "order": 8}, {"name": "Alexander Carroll", "character": "Young Lucian", "id": 1049596, "credit_id": "52febd38c3a3680ef303881d", "cast_id": 35, "profile_path": "/3Xmq2GkCWYmEWVDQHPiplu9g7R9.jpg", "order": 9}, {"name": "Elizabeth Hawthorne", "character": "Orsova", "id": 5533, "credit_id": "52febd86c3a3680f2e05fc0f", "cast_id": 36, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 10}, {"name": "Jason Hood", "character": "Death Dealer", "id": 1292753, "credit_id": "52febf47c3a3680ef303b756", "cast_id": 37, "profile_path": "/p0diBCKlTIOUNCcuD9chDhiWL3d.jpg", "order": 11}, {"name": "Mark Mitchinson", "character": "Nobleman", "id": 205427, "credit_id": "52febfabc3a3680f25048b18", "cast_id": 38, "profile_path": "/6p3EsliIRLKTF4c9fGJTSg0jtp0.jpg", "order": 12}, {"name": "Craig Parker", "character": "Sabas", "id": 1332, "credit_id": "52fec149c3a3680f2e06678d", "cast_id": 40, "profile_path": "/amJPcZnpWIABjbaN5FzW5vvTIEk.jpg", "order": 14}, {"name": "Timothy Raby", "character": "Janosh", "id": 173441, "credit_id": "52fec299c3a3680f2504eaff", "cast_id": 41, "profile_path": "/qaurwY1o3cmOOkp8Vpb4WFD9m9G.jpg", "order": 15}, {"name": "Tania Nolan", "character": "Luka", "id": 107546, "credit_id": "52fec2bcc3a3680ef304140c", "cast_id": 42, "profile_path": "/qoTx3yZhlaCjtqTl98dploumrkr.jpg", "order": 16}, {"name": "Kate Beckinsale", "character": "Selene", "id": 3967, "credit_id": "53e3c3dc0e0a262b83004a7c", "cast_id": 44, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 17}], "directors": [{"name": "Patrick Tatopoulos", "department": "Directing", "job": "Director", "credit_id": "52fe44e09251416c750440f9", "profile_path": "/RXqyZV2z5qk7TUVCXcXdatFFkd.jpg", "id": 3964}], "vote_average": 6.1, "runtime": 92}, "4247": {"poster_path": "/bvVmVFBVQLytK1H4TJTFdnhvf4T.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 278019771, "overview": "Following on the heels of popular teen-scream horror movies, with uproarious comedy and biting satire. Marlon and Shawn Wayans, Shannon Elizabeth and Carmen Electra pitch in to skewer some of Hollywood's biggest blockbusters, including Scream, I Know What You Did Last Summer, The Matrix, American Pie and The Blair Witch Project.", "video": false, "id": 4247, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie", "tagline": "No mercy. No shame. No sequel.", "vote_count": 320, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0175142", "adult": false, "backdrop_path": "/s7dcAllZEVSrVIVMUVAUmwAxFmn.jpg", "production_companies": [{"name": "Brillstein-Grey Entertainment", "id": 1606}, {"name": "Gold/Miller Productions", "id": 1607}, {"name": "Wayans Bros. Entertainment", "id": 1608}], "release_date": "2000-07-07", "popularity": 0.600392488912154, "original_title": "Scary Movie", "budget": 19000000, "cast": [{"name": "Carmen Electra", "character": "Drew Decker", "id": 28639, "credit_id": "52fe43b5c3a36847f8069791", "cast_id": 23, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 0}, {"name": "Dave Sheridan", "character": "The Killer/Doofy Gilmore", "id": 35701, "credit_id": "52fe43b5c3a36847f8069795", "cast_id": 24, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 1}, {"name": "Anna Faris", "character": "Cindy Campbell", "id": 1772, "credit_id": "52fe43b5c3a36847f8069799", "cast_id": 29, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Jon Abrahams", "character": "Bobby Prinze", "id": 17866, "credit_id": "52fe43b5c3a36847f806979d", "cast_id": 30, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 3}, {"name": "Regina Hall", "character": "Brenda Meeks", "id": 35705, "credit_id": "52fe43b5c3a36847f80697a1", "cast_id": 32, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 4}, {"name": "Marlon Wayans", "character": "Shorty Meeks", "id": 9562, "credit_id": "52fe43b5c3a36847f80697a5", "cast_id": 33, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 5}, {"name": "Shannon Elizabeth", "character": "Buffy Gilmore", "id": 21596, "credit_id": "52fe43b5c3a36847f80697a9", "cast_id": 34, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 6}, {"name": "Cheri Oteri", "character": "Gail Hailstorm", "id": 60252, "credit_id": "52fe43b5c3a36847f80697bf", "cast_id": 38, "profile_path": "/1j7zUQberFkZ6YVMzG3b7nkajaQ.jpg", "order": 7}, {"name": "Shawn Wayans", "character": "Ray Wilkins", "id": 35690, "credit_id": "52fe43b5c3a36847f80697c3", "cast_id": 39, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 8}, {"name": "Keenen Ivory Wayans", "character": "Slave", "id": 35689, "credit_id": "52fe43b5c3a36847f80697c7", "cast_id": 40, "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "order": 9}, {"name": "Marissa Jaret Winokur", "character": "Garage Victim", "id": 76742, "credit_id": "54a09c4dc3a36851ce0023e2", "cast_id": 45, "profile_path": "/mpB7Ny5yhuvRS7pqpD824aid4hG.jpg", "order": 10}, {"name": "James Van Der Beek", "character": "Dawson Leery", "id": 19210, "credit_id": "52fe43b5c3a36847f80697cf", "cast_id": 42, "profile_path": "/p6FC3Zn6OHLCCy2913GWmo64o8B.jpg", "order": 12}, {"name": "Kurt Fuller", "character": "The Sheriff", "id": 29685, "credit_id": "546574beeaeb817b41000399", "cast_id": 43, "profile_path": "/gVgjen3j7pu4efzTYukNeNREQFy.jpg", "order": 13}, {"name": "Lochlyn Munro", "character": "Greg Phillippe", "id": 58058, "credit_id": "546574e9c3a3687ab30002ec", "cast_id": 44, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 14}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe43b5c3a36847f806971b", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 5.9, "runtime": 88}, "4248": {"poster_path": "/tSGWhSResV2Cnqqr91TGKyZzf79.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141220678, "overview": "While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called \"Hell House,\" and murderous high jinks ensue.", "video": false, "id": 4248, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 2", "tagline": "No More Mercy. No More Shame. No More Sequels - Honest! - We Lied.", "vote_count": 197, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0257106", "adult": false, "backdrop_path": "/j9hTBWA2fMfzfcF2mo4GxN9FpRe.jpg", "production_companies": [{"name": "Brillstein-Grey Entertainment", "id": 1606}, {"name": "Gold/Miller Productions", "id": 1607}, {"name": "Wayans Bros. Entertainment", "id": 1608}], "release_date": "2001-07-04", "popularity": 0.342789256362708, "original_title": "Scary Movie 2", "budget": 45000000, "cast": [{"name": "Anna Faris", "character": "Cindy Campbell", "id": 1772, "credit_id": "52fe43b5c3a36847f80698c1", "cast_id": 28, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 0}, {"name": "Marlon Wayans", "character": "Shorty Meeks", "id": 9562, "credit_id": "52fe43b5c3a36847f80698c5", "cast_id": 29, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 1}, {"name": "James DeBello", "character": "Tommy", "id": 35768, "credit_id": "52fe43b5c3a36847f80698c9", "cast_id": 30, "profile_path": "/xhDScFpgfM9gfIyNQm8KOr0qEU5.jpg", "order": 2}, {"name": "Shawn Wayans", "character": "Ray Wilkins", "id": 35690, "credit_id": "52fe43b5c3a36847f80698cd", "cast_id": 31, "profile_path": "/9GHZOZMCsbQyESuMYtO7T7hs0lg.jpg", "order": 3}, {"name": "David Cross", "character": "Dwight Hartman", "id": 212, "credit_id": "52fe43b5c3a36847f80698d1", "cast_id": 32, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Christopher Masterson", "character": "Buddy", "id": 35769, "credit_id": "52fe43b5c3a36847f80698d5", "cast_id": 33, "profile_path": "/gz0GFQmLLjo6Q9Gvf1rKdZd2XhM.jpg", "order": 5}, {"name": "Regina Hall", "character": "Brenda Meeks", "id": 35705, "credit_id": "52fe43b5c3a36847f80698d9", "cast_id": 34, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 6}, {"name": "Tim Curry", "character": "Prof. Oldman", "id": 13472, "credit_id": "52fe43b5c3a36847f80698dd", "cast_id": 35, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 7}, {"name": "Kathleen Robertson", "character": "Theo", "id": 33676, "credit_id": "52fe43b5c3a36847f80698e1", "cast_id": 36, "profile_path": "/dDokQ6zSfzkaZRvDfvEHglWMb90.jpg", "order": 8}, {"name": "Chris Elliott", "character": "Henson", "id": 1534, "credit_id": "52fe43b5c3a36847f80698e5", "cast_id": 37, "profile_path": "/eJwNqqR1957kTpRPbFsCRQdYIpZ.jpg", "order": 9}, {"name": "James Woods", "character": "Father McFeely", "id": 4512, "credit_id": "52fe43b5c3a36847f80698e9", "cast_id": 38, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 10}, {"name": "Andy Richter", "character": "Father Harris", "id": 28637, "credit_id": "52fe43b5c3a36847f80698ed", "cast_id": 39, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 11}, {"name": "Tori Spelling", "character": "Alex Monday", "id": 19149, "credit_id": "52fe43b5c3a36847f80698f1", "cast_id": 40, "profile_path": "/8UDiVmZXmhnvl5C5Xd3lecmrqyY.jpg", "order": 12}], "directors": [{"name": "Keenen Ivory Wayans", "department": "Directing", "job": "Director", "credit_id": "52fe43b5c3a36847f8069827", "profile_path": "/4uCVzk6JrNflrqWyzkPhLuwZzoC.jpg", "id": 35689}], "vote_average": 5.6, "runtime": 83}, "12444": {"poster_path": "/maP4MTfPCeVD2FZbKTLUgriOW4R.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 954305868, "overview": "The end begins as Harry, Ron, and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes, putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose, the world is more dangerous than ever.", "video": false, "id": 12444, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Deathly Hallows: Part 1", "tagline": "One Way\u2026 One Fate\u2026 One Hero.", "vote_count": 2040, "homepage": "http://www.harrypotter.com", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0926084", "adult": false, "backdrop_path": "/17Pf2aGFfehYyz9Ru2S6fzcXvEO.jpg", "production_companies": [{"name": "Heyday Films", "id": 7364}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2010-11-19", "popularity": 2.38100644864624, "original_title": "Harry Potter and the Deathly Hallows: Part 1", "budget": 250000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe44e19251416c7504438d", "cast_id": 43, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe44e19251416c75044389", "cast_id": 42, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 1}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe44e19251416c75044317", "cast_id": 13, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe44e19251416c750442f1", "cast_id": 3, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe44e19251416c750442f5", "cast_id": 4, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 4}, {"name": "Bill Nighy", "character": "Rufus Scrimgeour", "id": 2440, "credit_id": "52fe44e19251416c75044303", "cast_id": 7, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 5}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe44e19251416c7504430b", "cast_id": 10, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe44e19251416c7504430f", "cast_id": 11, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 7}, {"name": "Brendan Gleeson", "character": "Alastor 'Mad-Eye' Moody", "id": 2039, "credit_id": "52fe44e19251416c7504433f", "cast_id": 24, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 8}, {"name": "John Hurt", "character": "Mr. Ollivander", "id": 5049, "credit_id": "52fe44e19251416c75044327", "cast_id": 17, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 9}, {"name": "Ciar\u00e1n Hinds", "character": "Aberforth Dumbledore", "id": 8785, "credit_id": "52fe44e19251416c7504432b", "cast_id": 19, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 10}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe44e19251416c750442f9", "cast_id": 5, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 11}, {"name": "Rhys Ifans", "character": "Xenophilius Lovegood", "id": 7026, "credit_id": "52fe44e19251416c75044313", "cast_id": 12, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 12}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe44e19251416c75044307", "cast_id": 8, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 13}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe44e19251416c75044323", "cast_id": 16, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 14}, {"name": "Jamie Campbell Bower", "character": "Gellert Grindelwald", "id": 83356, "credit_id": "52fe44e19251416c75044333", "cast_id": 21, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 15}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Fleur Delacour", "id": 11291, "credit_id": "52fe44e19251416c7504431f", "cast_id": 15, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 16}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe44e19251416c7504431b", "cast_id": 14, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 17}, {"name": "Warwick Davis", "character": "Griphook", "id": 11184, "credit_id": "52fe44e19251416c7504432f", "cast_id": 20, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 18}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe44e19251416c75044337", "cast_id": 22, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 19}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe44e19251416c7504433b", "cast_id": 23, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 20}, {"name": "Evanna Lynch", "character": "Luna Lovegood", "id": 140367, "credit_id": "52fe44e19251416c75044343", "cast_id": 25, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 21}, {"name": "Helen McCrory", "character": "Narcissa Malfoy", "id": 15737, "credit_id": "52fe44e19251416c75044347", "cast_id": 26, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 22}, {"name": "Timothy Spall", "character": "Wormtail", "id": 9191, "credit_id": "52fe44e19251416c7504434b", "cast_id": 27, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 23}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe44e19251416c7504434f", "cast_id": 28, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 24}, {"name": "Imelda Staunton", "character": "Dolores Umbridge", "id": 11356, "credit_id": "52fe44e19251416c75044353", "cast_id": 29, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 25}, {"name": "Fiona Shaw", "character": "Aunt Petunia", "id": 10981, "credit_id": "52fe44e19251416c75044357", "cast_id": 30, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 26}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe44e19251416c7504435b", "cast_id": 31, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 27}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe44e19251416c7504435f", "cast_id": 32, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 28}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe44e19251416c75044363", "cast_id": 33, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 29}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe44e19251416c7504436b", "cast_id": 35, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 30}, {"name": "Richard Griffiths", "character": "Vernon Dursley", "id": 10983, "credit_id": "52fe44e19251416c75044367", "cast_id": 34, "profile_path": "/hUHiJYtXgGgYt7UkHA7YgEiGNYC.jpg", "order": 31}, {"name": "Harry Melling", "character": "Dudley Dursley", "id": 10982, "credit_id": "52fe44e19251416c7504436f", "cast_id": 36, "profile_path": "/2CXlvvGnnJlSHDRqcWxtcef8Dsf.jpg", "order": 32}, {"name": "Frances de la Tour", "character": "Madame Olympe Maxime", "id": 47468, "credit_id": "52fe44e19251416c75044373", "cast_id": 37, "profile_path": "/8PvwBlVzzS2sRSLlElRLNG7CYRE.jpg", "order": 33}, {"name": "Sophie Thompson", "character": "Mafalda Hopkirk", "id": 32990, "credit_id": "52fe44e19251416c75044377", "cast_id": 38, "profile_path": "/kAW8R7fJbA8y1IADPGiDrZgOuNE.jpg", "order": 34}, {"name": "David O'Hara", "character": "Albert Runcorn", "id": 2482, "credit_id": "52fe44e19251416c7504437b", "cast_id": 39, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 35}, {"name": "Steffan Rhodri", "character": "Reg Cattermole", "id": 143892, "credit_id": "52fe44e19251416c7504437f", "cast_id": 40, "profile_path": "/4bptQdwRKCMveddkpZdCvDwcsHQ.jpg", "order": 36}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe44e19251416c75044397", "cast_id": 46, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 37}, {"name": "Samuel Roukin", "character": "The Snatcher", "id": 65445, "credit_id": "52fe44e19251416c750443e3", "cast_id": 59, "profile_path": "/unZ9QHzWjLOApcv5q3EOz9LgrhT.jpg", "order": 38}, {"name": "Ian Kelly", "character": "Mr. Granger", "id": 96307, "credit_id": "52fe44e19251416c750443e7", "cast_id": 60, "profile_path": "/hkdeCGJ7nr8cCHLPh0Ab4Lk2eps.jpg", "order": 39}, {"name": "Michelle Fairley", "character": "Mrs. Granger", "id": 20057, "credit_id": "52fe44e19251416c750443eb", "cast_id": 61, "profile_path": "/u7EDh4RuXnK5PykiNAT3oly6sf9.jpg", "order": 40}, {"name": "Carolyn Pickles", "character": "Charity Burbage", "id": 1220036, "credit_id": "52fe44e19251416c750443ef", "cast_id": 62, "profile_path": "/95dS8JVAXaML6lWpnlSezmiAyhs.jpg", "order": 41}, {"name": "Peter Mullan", "character": "Death Eater Yaxley", "id": 3064, "credit_id": "52fe44e29251416c750443f7", "cast_id": 64, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 43}, {"name": "Guy Henry", "character": "Pius Thicknesse", "id": 40638, "credit_id": "52fe44e29251416c750443fb", "cast_id": 65, "profile_path": "/zNjPC6BTZj7DZK4KFL0nMC1El2S.jpg", "order": 44}, {"name": "Arben Bajraktaraj", "character": "Antonin Dolohov", "id": 234921, "credit_id": "52fe44e29251416c750443ff", "cast_id": 66, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 45}, {"name": "Rod Hunt", "character": "Thorfinn Rowle", "id": 234919, "credit_id": "52fe44e29251416c75044403", "cast_id": 67, "profile_path": "/vqLNvySU92nqAwROsNeJHsZ0LvD.jpg", "order": 46}, {"name": "Suzanne Toase", "character": "Alecto Carrow", "id": 568378, "credit_id": "52fe44e29251416c75044407", "cast_id": 68, "profile_path": "/c3s1FwTgeocEYyBIpaNINQ9eiVF.jpg", "order": 47}, {"name": "Ralph Ineson", "character": "Amycus Carrow", "id": 202032, "credit_id": "52fe44e29251416c7504440b", "cast_id": 69, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 48}, {"name": "Adrian Annis", "character": "Death Eater", "id": 135911, "credit_id": "52fe44e29251416c7504440f", "cast_id": 70, "profile_path": "/kEvduvKAVvtoejypk9WiDIpeGII.jpg", "order": 49}, {"name": "Emil Hostina", "character": "Death Eater", "id": 209884, "credit_id": "52fe44e29251416c75044413", "cast_id": 71, "profile_path": "/xbhDDWD7eoutHP795gpvpy2kjFV.jpg", "order": 50}, {"name": "Richard Strange", "character": "Death Eater", "id": 79502, "credit_id": "52fe44e29251416c7504441b", "cast_id": 73, "profile_path": "/gW6LnjcXxcfaAMpM5YyEKePeezR.jpg", "order": 51}, {"name": "Paul Khanna", "character": "Death Eater", "id": 1272644, "credit_id": "52fe44e29251416c75044417", "cast_id": 72, "profile_path": "/coLLFAGu2RE2vMsnjuikLbKqX3y.jpg", "order": 52}, {"name": "Anthony John Crocker", "character": "Death Eater", "id": 1272645, "credit_id": "52fe44e29251416c7504441f", "cast_id": 74, "profile_path": "/9Nvi5lEEMGB7FrMa5I01OusZOlh.jpg", "order": 53}, {"name": "Peter G. Reed", "character": "Death Eater", "id": 568393, "credit_id": "52fe44e29251416c75044423", "cast_id": 75, "profile_path": "/3J0U02Q8anBEJzpErk945na8WJR.jpg", "order": 54}, {"name": "Granville Saxton", "character": "Death Eater", "id": 142747, "credit_id": "52fe44e29251416c75044427", "cast_id": 76, "profile_path": "/9LInSWpZ2OVOsaDRDVULXCBt3Aj.jpg", "order": 55}, {"name": "Judith Sharp", "character": "Death Eater", "id": 568394, "credit_id": "52fe44e29251416c7504442b", "cast_id": 77, "profile_path": "/qOWjfu5lqSNMhh4ctfEg0B0Hq2I.jpg", "order": 56}, {"name": "Ashley McGuire", "character": "Death Eater", "id": 69476, "credit_id": "52fe44e29251416c7504442f", "cast_id": 78, "profile_path": "/5Uy0qn4ajKtHszfsO5vyCkOffYx.jpg", "order": 57}, {"name": "Penelope McGhie", "character": "Death Eater", "id": 568385, "credit_id": "52fe44e29251416c75044433", "cast_id": 79, "profile_path": "/huRFbOT98zfwWasALNrIz7X2qzF.jpg", "order": 58}, {"name": "Bob Yves Van Hellenberg Hubar", "character": "Death Eater", "id": 568395, "credit_id": "52fe44e29251416c75044437", "cast_id": 80, "profile_path": "/IBgr3YtlOUb7e11YtVsBoL9nDH.jpg", "order": 59}, {"name": "Tony Kirwood", "character": "Death Eater", "id": 568396, "credit_id": "52fe44e29251416c7504443b", "cast_id": 81, "profile_path": "/b0DStt0AhZ00e5rpDrzgaVuy5fT.jpg", "order": 60}, {"name": "David Ryall", "character": "Elphias Doge", "id": 27822, "credit_id": "52fe44e29251416c7504443f", "cast_id": 82, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 61}, {"name": "Matyelok Gibbs", "character": "Auntie Muriel Weasley", "id": 17479, "credit_id": "52fe44e29251416c75044443", "cast_id": 83, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 62}, {"name": "Simon McBurney", "character": "Kreacher (voice)", "id": 16358, "credit_id": "52fe44e29251416c75044447", "cast_id": 84, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 63}, {"name": "Jon Campling", "character": "Death Eater", "id": 1140635, "credit_id": "52fe44e29251416c7504444b", "cast_id": 85, "profile_path": "/u5Iu5PzbcJpiZTIbrg0z3tvJH3e.jpg", "order": 64}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe44e29251416c7504444f", "cast_id": 86, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 65}, {"name": "William Melling", "character": "Nigel", "id": 568374, "credit_id": "52fe44e29251416c75044453", "cast_id": 87, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 66}, {"name": "Simon Grover", "character": "Death Eater", "id": 1272646, "credit_id": "52fe44e29251416c75044457", "cast_id": 88, "profile_path": "/4BCEhhJQyJj9nDx8qr9dX2yjsab.jpg", "order": 67}, {"name": "Freddie Stroma", "character": "Cormac McLaggen", "id": 234934, "credit_id": "52fe44e29251416c7504445b", "cast_id": 89, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 68}, {"name": "Jessie Cave", "character": "Lavender Brown", "id": 234924, "credit_id": "52fe44e29251416c7504445f", "cast_id": 90, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 69}, {"name": "Anna Shaffer", "character": "Romilda Vane", "id": 234929, "credit_id": "52fe44e29251416c75044463", "cast_id": 91, "profile_path": "/uldkREhKYbfdAUpAXkPUWI746CE.jpg", "order": 70}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe44e29251416c75044467", "cast_id": 92, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 71}, {"name": "Scarlett Byrne", "character": "Pansy Parkinson", "id": 234928, "credit_id": "52fe44e29251416c7504446b", "cast_id": 93, "profile_path": "/7W8KCN8KlCzzbSEW35ul237HlvU.jpg", "order": 72}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe44e29251416c7504446f", "cast_id": 94, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 73}, {"name": "Nick Moran", "character": "Scabior", "id": 975, "credit_id": "52fe44e29251416c75044473", "cast_id": 95, "profile_path": "/q5As2X1Idd34ma9qXHhH5OvR7mE.jpg", "order": 74}, {"name": "Toby Jones", "character": "Dobby", "id": 13014, "credit_id": "52fe44e29251416c75044477", "cast_id": 96, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 75}, {"name": "Kate Fleetwood", "character": "Mary Cattermole", "id": 178630, "credit_id": "52fe44e29251416c7504447b", "cast_id": 97, "profile_path": "/z3nIZxpSzdq0R11uABD5gmvCuob.jpg", "order": 76}, {"name": "Rade \u0160erbed\u017eija", "character": "Gregorovitch", "id": 1118, "credit_id": "52fe44e29251416c7504447f", "cast_id": 98, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 77}, {"name": "Jamie Campbell Bower", "character": "Young Gellert Grindelwald", "id": 83356, "credit_id": "52fe44e29251416c75044483", "cast_id": 99, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 78}, {"name": "Hazel Douglas", "character": "Bathilda Bagshot", "id": 94742, "credit_id": "52fe44e29251416c75044487", "cast_id": 100, "profile_path": "/nT2a4oiWM8hk34hRvQcKA7in89g.jpg", "order": 79}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe44e29251416c7504448b", "cast_id": 101, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 80}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe44e29251416c7504448f", "cast_id": 102, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 81}, {"name": "Miranda Richardson", "character": "Rita Skeeter", "id": 8436, "credit_id": "52fe44e29251416c75044493", "cast_id": 103, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 82}, {"name": "Dave Legeno", "character": "Fenrir Greyback", "id": 60348, "credit_id": "52fe44e29251416c75044497", "cast_id": 104, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 83}, {"name": "Graham Duff", "character": "Death Eater", "id": 1224773, "credit_id": "5376fe430e0a2614280014fc", "cast_id": 105, "profile_path": "/643atgQcjuNRInFbSMKiHTP6vyM.jpg", "order": 84}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe44e19251416c750442ff", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 7.1, "runtime": 146}, "12445": {"poster_path": "/7xmtxRc9nQnCuWINuTT4SMP5NJc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1327817822, "overview": "In the second installment of the two-part conclusion, Harry and his best friends, Ron and Hermione, continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards, Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.", "video": false, "id": 12445, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Harry Potter and the Deathly Hallows: Part 2", "tagline": "It all ends here.", "vote_count": 2272, "homepage": "http://www.harrypotter.com", "belongs_to_collection": {"backdrop_path": "/tpDcuXZGqEoU6CxuJ7e4S2NTIoS.jpg", "poster_path": "/eVPs2Y0LyvTLZn6AP5Z6O2rtiGB.jpg", "id": 1241, "name": "Harry Potter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1201607", "adult": false, "backdrop_path": "/oPmZDHPkdmhuvxYGmwtKcQefeNr.jpg", "production_companies": [{"name": "Moving Picture Company (MPC)", "id": 20478}, {"name": "Warner Bros.", "id": 6194}, {"name": "Heyday Films", "id": 7364}], "release_date": "2011-07-07", "popularity": 2.45605262055685, "original_title": "Harry Potter and the Deathly Hallows: Part 2", "budget": 125000000, "cast": [{"name": "Daniel Radcliffe", "character": "Harry Potter", "id": 10980, "credit_id": "52fe44e29251416c75044581", "cast_id": 6, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Rupert Grint", "character": "Ron Weasley", "id": 10989, "credit_id": "52fe44e29251416c75044585", "cast_id": 7, "profile_path": "/cQmbe8BwK5oPEu7W6HFw2JQ02HW.jpg", "order": 1}, {"name": "Emma Watson", "character": "Hermione Granger", "id": 10990, "credit_id": "52fe44e29251416c75044589", "cast_id": 8, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Alan Rickman", "character": "Severus Snape", "id": 4566, "credit_id": "52fe44e29251416c7504458d", "cast_id": 9, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Minerva McGonagall", "id": 10978, "credit_id": "52fe44e29251416c75044599", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Helena Bonham Carter", "character": "Bellatrix Lestrange", "id": 1283, "credit_id": "52fe44e29251416c750445ed", "cast_id": 33, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 5}, {"name": "Emma Thompson", "character": "Sybill Trelawney", "id": 7056, "credit_id": "52fe44e29251416c750445ad", "cast_id": 17, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 6}, {"name": "Robbie Coltrane", "character": "Rubeus Hagrid", "id": 1923, "credit_id": "52fe44e29251416c750445a9", "cast_id": 16, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 7}, {"name": "Ralph Fiennes", "character": "Lord Voldemort", "id": 5469, "credit_id": "52fe44e29251416c750445e9", "cast_id": 32, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 8}, {"name": "Gemma Jones", "character": "Poppy Pomfrey", "id": 9138, "credit_id": "52fe44e29251416c750445b1", "cast_id": 18, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 9}, {"name": "Cl\u00e9mence Po\u00e9sy", "character": "Fleur Delacour", "id": 11291, "credit_id": "52fe44e29251416c750445c9", "cast_id": 24, "profile_path": "/2ymzwLv8uOYZX8MJ8i586Uj0CC6.jpg", "order": 10}, {"name": "Warwick Davis", "character": "Filius Flitwick / Griphook", "id": 11184, "credit_id": "52fe44e29251416c750445a1", "cast_id": 14, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 11}, {"name": "David Thewlis", "character": "Remus Lupin", "id": 11207, "credit_id": "52fe44e29251416c750445bd", "cast_id": 21, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 12}, {"name": "Domhnall Gleeson", "character": "Bill Weasley", "id": 93210, "credit_id": "52fe44e29251416c750445c5", "cast_id": 23, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 13}, {"name": "James Phelps", "character": "Fred Weasley", "id": 96851, "credit_id": "52fe44e29251416c750445d5", "cast_id": 27, "profile_path": "/9HaWV5c8Dvraicjjc9N4Z1nyWsm.jpg", "order": 14}, {"name": "Oliver Phelps", "character": "George Weasley", "id": 140368, "credit_id": "52fe44e29251416c750445d9", "cast_id": 28, "profile_path": "/kTvYxfFxkyXtljCxTxB6q6OYOY4.jpg", "order": 15}, {"name": "Jim Broadbent", "character": "Horace Slughorn", "id": 388, "credit_id": "52fe44e29251416c7504459d", "cast_id": 13, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 16}, {"name": "Mark Williams", "character": "Arthur Weasley", "id": 20999, "credit_id": "52fe44e29251416c750445d1", "cast_id": 26, "profile_path": "/2JNzqMkCdHBuEoK28joG1vyMe9d.jpg", "order": 17}, {"name": "Pauline Stone", "character": "Nurse Wainscott", "id": 166242, "credit_id": "52fe44e29251416c750445b9", "cast_id": 20, "profile_path": "/yFGkdDOcSDIwEyQB51cQg8yB9IK.jpg", "order": 18}, {"name": "Suzie Toase", "character": "Alecto Carrow", "id": 234918, "credit_id": "52fe44e29251416c75044591", "cast_id": 10, "profile_path": "/cGJEYKg7es734KZKMmjG64mzUQK.jpg", "order": 19}, {"name": "Natalia Tena", "character": "Nymphadora Tonks", "id": 3300, "credit_id": "52fe44e29251416c750445c1", "cast_id": 22, "profile_path": "/A5977qcPr05zAQSqr7nKKSbJhpY.jpg", "order": 20}, {"name": "George Harris", "character": "Kingsley Shacklebolt", "id": 2247, "credit_id": "52fe44e29251416c750445dd", "cast_id": 29, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 21}, {"name": "Ciar\u00e1n Hinds", "character": "Aberforth Dumbledore", "id": 8785, "credit_id": "52fe44e29251416c750445e1", "cast_id": 30, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 22}, {"name": "Julie Walters", "character": "Molly Weasley", "id": 477, "credit_id": "52fe44e29251416c750445cd", "cast_id": 25, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 23}, {"name": "David Ryall", "character": "Elphias Doge", "id": 27822, "credit_id": "52fe44e29251416c750445e5", "cast_id": 31, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 24}, {"name": "Arben Bajraktaraj", "character": "Antonin Dolohov", "id": 234921, "credit_id": "52fe44e29251416c75044609", "cast_id": 40, "profile_path": "/lSBsPu8ZAeuLDrBDntk23NtvlEG.jpg", "order": 25}, {"name": "Peter Mullan", "character": "Yaxley", "id": 3064, "credit_id": "52fe44e29251416c75044605", "cast_id": 39, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 26}, {"name": "David Bradley", "character": "Argus Filch", "id": 11180, "credit_id": "52fe44e29251416c750445b5", "cast_id": 19, "profile_path": "/5BPFRv4io7U1zxkYHtKaE9a8FDD.jpg", "order": 27}, {"name": "Miriam Margolyes", "character": "Pomona Sprout", "id": 6199, "credit_id": "52fe44e29251416c750445a5", "cast_id": 15, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 28}, {"name": "Timothy Spall", "character": "Peter Pettigrew", "id": 9191, "credit_id": "52fe44e29251416c750445f1", "cast_id": 34, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 29}, {"name": "Jason Isaacs", "character": "Lucius Malfoy", "id": 11355, "credit_id": "52fe44e29251416c750445f5", "cast_id": 35, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 30}, {"name": "Ralph Ineson", "character": "Amycus Carrow", "id": 202032, "credit_id": "52fe44e29251416c75044595", "cast_id": 11, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 31}, {"name": "Helen McCrory", "character": "Narcissa Malfoy", "id": 15737, "credit_id": "52fe44e29251416c750445f9", "cast_id": 36, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 32}, {"name": "Chris Rankin", "character": "Percy Weasley", "id": 10992, "credit_id": "52fe44e29251416c75044619", "cast_id": 44, "profile_path": "/3HEK2yr0YOEE7A5qf0SGs3VhUNz.jpg", "order": 33}, {"name": "Tom Felton", "character": "Draco Malfoy", "id": 10993, "credit_id": "52fe44e29251416c750445fd", "cast_id": 37, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 34}, {"name": "Rod Hunt", "character": "Thorfinn Rowle", "id": 234919, "credit_id": "52fe44e29251416c75044601", "cast_id": 38, "profile_path": "/vqLNvySU92nqAwROsNeJHsZ0LvD.jpg", "order": 35}, {"name": "Dave Legeno", "character": "Fenrir Greyback", "id": 60348, "credit_id": "52fe44e29251416c7504460d", "cast_id": 41, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 36}, {"name": "Nick Moran", "character": "Scabior", "id": 975, "credit_id": "52fe44e29251416c75044611", "cast_id": 42, "profile_path": "/q5As2X1Idd34ma9qXHhH5OvR7mE.jpg", "order": 37}, {"name": "Guy Henry", "character": "Pius Thicknesse", "id": 40638, "credit_id": "52fe44e29251416c75044615", "cast_id": 43, "profile_path": "/zNjPC6BTZj7DZK4KFL0nMC1El2S.jpg", "order": 38}, {"name": "Bonnie Wright", "character": "Ginny Weasley", "id": 10991, "credit_id": "52fe44e29251416c7504461d", "cast_id": 45, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 39}, {"name": "Evanna Lynch", "character": "Luna Lovegood", "id": 140367, "credit_id": "52fe44e29251416c75044621", "cast_id": 46, "profile_path": "/AciNNS76AtCIyKaWlKhPHHtE9lc.jpg", "order": 40}, {"name": "Anna Shaffer", "character": "Romilda Vane", "id": 234929, "credit_id": "52fe44e39251416c75044649", "cast_id": 56, "profile_path": "/uldkREhKYbfdAUpAXkPUWI746CE.jpg", "order": 41}, {"name": "Matthew Lewis", "character": "Neville Longbottom", "id": 96841, "credit_id": "52fe44e29251416c75044625", "cast_id": 47, "profile_path": "/v9Ow0JEtJZCaKDMvdKXNnzEzmy1.jpg", "order": 42}, {"name": "Devon Murray", "character": "Seamus Finnigan", "id": 234922, "credit_id": "52fe44e39251416c75044629", "cast_id": 48, "profile_path": "/pDbBXnpL6XjlPHDO1UzpX53voI0.jpg", "order": 43}, {"name": "Alfie Enoch", "character": "Dean Thomas", "id": 234923, "credit_id": "52fe44e39251416c7504462d", "cast_id": 49, "profile_path": "/6nYFyikxLbqKp2oyt2oBr10M4f7.jpg", "order": 44}, {"name": "Jessie Cave", "character": "Lavender Brown", "id": 234924, "credit_id": "52fe44e39251416c75044631", "cast_id": 50, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 45}, {"name": "Shefali Chowdhury", "character": "Parvati Patil", "id": 234925, "credit_id": "52fe44e39251416c75044635", "cast_id": 51, "profile_path": "/ePIslH8V2yJV4gRU3tbZEn9FaMB.jpg", "order": 46}, {"name": "Afshan Azad", "character": "Padma Patil", "id": 234926, "credit_id": "52fe44e39251416c75044639", "cast_id": 52, "profile_path": "/ovwinysgr5rEdequY3q2gffu0Ry.jpg", "order": 47}, {"name": "Louis Cordice", "character": "Blaise Zabini", "id": 234927, "credit_id": "52fe44e39251416c7504463d", "cast_id": 53, "profile_path": "/9GsBugZh5t5EHlcM3Wjay7EJH4B.jpg", "order": 48}, {"name": "Josh Herdman", "character": "Gregory Goyle", "id": 11212, "credit_id": "52fe44e39251416c75044641", "cast_id": 54, "profile_path": "/iP2R7r9wZwqDogxgMC1ouyA9Wpj.jpg", "order": 49}, {"name": "Scarlett Byrne", "character": "Pansy Parkinson", "id": 234928, "credit_id": "52fe44e39251416c75044645", "cast_id": 55, "profile_path": "/7W8KCN8KlCzzbSEW35ul237HlvU.jpg", "order": 50}, {"name": "Isabella Laughland", "character": "Leanne", "id": 234930, "credit_id": "52fe44e39251416c7504464d", "cast_id": 57, "profile_path": "/OMr26hOcq2LBbGDC4Uy9RGyMEl.jpg", "order": 51}, {"name": "Jamie Marks", "character": "Ernie Macmillan", "id": 234932, "credit_id": "52fe44e39251416c75044651", "cast_id": 59, "profile_path": "/7F7Ej9SBQlvSurrikk6rw4naivC.jpg", "order": 52}, {"name": "Katie Leung", "character": "Cho Chang", "id": 234933, "credit_id": "52fe44e39251416c75044655", "cast_id": 60, "profile_path": "/qKqgHfyFQZ5oCu7R9JxxSb0lqkO.jpg", "order": 53}, {"name": "Georgina Leonidas", "character": "Katie Bell", "id": 174398, "credit_id": "52fe44e39251416c75044659", "cast_id": 61, "profile_path": "/hv3YEO8Q0khE41XDesUsQBhzJ1T.jpg", "order": 54}, {"name": "Freddie Stroma", "character": "Cormac McLaggen", "id": 234934, "credit_id": "52fe44e39251416c7504465d", "cast_id": 62, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 55}, {"name": "John Hurt", "character": "Mr. Ollivander", "id": 5049, "credit_id": "52fe44e39251416c75044661", "cast_id": 63, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 56}, {"name": "Kelly Macdonald", "character": "Helena Ravenclaw", "id": 9015, "credit_id": "52fe44e39251416c75044665", "cast_id": 65, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 57}, {"name": "Michael Gambon", "character": "Albus Dumbledore", "id": 5658, "credit_id": "52fe44e39251416c75044669", "cast_id": 66, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 58}, {"name": "Gary Oldman", "character": "Sirius Black", "id": 64, "credit_id": "52fe44e39251416c7504466d", "cast_id": 67, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 59}, {"name": "Adrian Rawlins", "character": "James Potter", "id": 1643, "credit_id": "52fe44e39251416c75044671", "cast_id": 68, "profile_path": "/bqUlzzI0PrnJxvVbnxV86ORkoEY.jpg", "order": 60}, {"name": "Geraldine Somerville", "character": "Lily Potter", "id": 10988, "credit_id": "52fe44e39251416c75044675", "cast_id": 69, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 61}, {"name": "Anthony Allgood", "character": "Gringotts Guard", "id": 568370, "credit_id": "52fe44e39251416c7504467f", "cast_id": 71, "profile_path": "/l7zb8W7L0SheMCGli5LFxltWC4j.jpg", "order": 62}, {"name": "Rusty Goffe", "character": "Aged Gringotts Goblin", "id": 252527, "credit_id": "52fe44e39251416c75044687", "cast_id": 73, "profile_path": "/3PE20IWLMKv1r4nIdkLj65ljv28.jpg", "order": 63}, {"name": "Benn Northover", "character": "Hogsmeade Death Eater", "id": 561028, "credit_id": "52fe44e39251416c7504468f", "cast_id": 75, "profile_path": "/2tIuPkqSyvLPL7Li1vVoen6dfOA.jpg", "order": 64}, {"name": "Ian Peck", "character": "Hogsmeade Death Eater", "id": 208467, "credit_id": "52fe44e39251416c7504468b", "cast_id": 74, "profile_path": "/tKATfzERUrNR7TYh4tKmTj2AD2B.jpg", "order": 65}, {"name": "Hebe Beardsall", "character": "Ariana Dumbledore", "id": 568371, "credit_id": "52fe44e39251416c75044693", "cast_id": 76, "profile_path": "/9rUK2oWBhMZfNaJxtMsmeaoNFYW.jpg", "order": 66}, {"name": "William Melling", "character": "Nigel", "id": 568374, "credit_id": "52fe44e39251416c75044697", "cast_id": 77, "profile_path": "/g98wNtNTHVm2XkftxpOIx0zUeXv.jpg", "order": 67}, {"name": "Sian Grace Phillips", "character": "Screaming Girl", "id": 568376, "credit_id": "52fe44e39251416c7504469b", "cast_id": 78, "profile_path": null, "order": 68}, {"name": "Suzanne Toase", "character": "Alecto Carrow", "id": 568378, "credit_id": "52fe44e39251416c7504469f", "cast_id": 79, "profile_path": "/c3s1FwTgeocEYyBIpaNINQ9eiVF.jpg", "order": 69}, {"name": "Amber Evans", "character": "Twin Girl 1", "id": 568379, "credit_id": "52fe44e39251416c750446a3", "cast_id": 80, "profile_path": null, "order": 70}, {"name": "Ruby Evans", "character": "Twin Girl 2", "id": 568380, "credit_id": "52fe44e39251416c750446a7", "cast_id": 81, "profile_path": null, "order": 71}, {"name": "Jon Key", "character": "Bogrod", "id": 568382, "credit_id": "52fe44e39251416c750446ab", "cast_id": 82, "profile_path": "/qKo8YbNHvowH9sPQ1CdfL0sAEya.jpg", "order": 72}, {"name": "Philip Wright", "character": "Giant", "id": 24273, "credit_id": "52fe44e39251416c750446af", "cast_id": 83, "profile_path": "/wOuNk0ndcH0dhQPsl8b4uajip5L.jpg", "order": 73}, {"name": "Gary Sayer", "character": "Giant", "id": 568383, "credit_id": "52fe44e39251416c750446b3", "cast_id": 84, "profile_path": null, "order": 74}, {"name": "Tony Adkins", "character": "Giant", "id": 568384, "credit_id": "52fe44e39251416c750446b7", "cast_id": 85, "profile_path": "/68Xf5fpSW2SXp6aTyKDruw1OSLc.jpg", "order": 75}, {"name": "Penelope McGhie", "character": "Death Eater", "id": 568385, "credit_id": "52fe44e39251416c750446bb", "cast_id": 86, "profile_path": "/huRFbOT98zfwWasALNrIz7X2qzF.jpg", "order": 76}, {"name": "Ellie Darcey-Alden", "character": "Young Lily Potter", "id": 568386, "credit_id": "52fe44e39251416c750446bf", "cast_id": 87, "profile_path": "/75nurOtHDKXuKCRi5QTnM7fGcpr.jpg", "order": 77}, {"name": "Ariella Paradise", "character": "Young Petunia Dursley", "id": 568387, "credit_id": "52fe44e39251416c750446c3", "cast_id": 88, "profile_path": "/aoYRbvfqoNXQJ0yM7bUedrQXhZ3.jpg", "order": 78}, {"name": "Benedict Clarke", "character": "Young Severus Snape", "id": 568388, "credit_id": "52fe44e39251416c750446c7", "cast_id": 89, "profile_path": "/7DZbKKj6vyGCh7VPaxZfyT79sj0.jpg", "order": 79}, {"name": "Alfie McIlwain", "character": "Young James Potter", "id": 1320593, "credit_id": "537755d30e0a26141f001ff6", "cast_id": 123, "profile_path": "/pUigyjIciGKwZYRLO0BqKyFyYHA.jpg", "order": 80}, {"name": "Rohan Gotobed", "character": "Young Sirius Black", "id": 568391, "credit_id": "52fe44e39251416c750446cf", "cast_id": 92, "profile_path": "/cLx2Jccgcq0P821HrR9oPmg2K7R.jpg", "order": 81}, {"name": "Toby Papworth", "character": "Baby Harry Potter", "id": 568392, "credit_id": "52fe44e39251416c750446d3", "cast_id": 93, "profile_path": "/g7qPANWbxu5tavJK29OdlmIjsdn.jpg", "order": 82}, {"name": "Peter G. Reed", "character": "Death Eater", "id": 568393, "credit_id": "52fe44e39251416c750446d7", "cast_id": 94, "profile_path": "/3J0U02Q8anBEJzpErk945na8WJR.jpg", "order": 83}, {"name": "Judith Sharp", "character": "Death Eater", "id": 568394, "credit_id": "52fe44e39251416c750446db", "cast_id": 95, "profile_path": "/qOWjfu5lqSNMhh4ctfEg0B0Hq2I.jpg", "order": 84}, {"name": "Emil Hostina", "character": "Death Eater", "id": 209884, "credit_id": "52fe44e39251416c750446df", "cast_id": 96, "profile_path": "/xbhDDWD7eoutHP795gpvpy2kjFV.jpg", "order": 85}, {"name": "Bob Yves Van Hellenberg Hubar", "character": "Death Eater", "id": 568395, "credit_id": "52fe44e39251416c750446e3", "cast_id": 97, "profile_path": "/IBgr3YtlOUb7e11YtVsBoL9nDH.jpg", "order": 86}, {"name": "Granville Saxton", "character": "Death Eater", "id": 142747, "credit_id": "52fe44e39251416c750446e7", "cast_id": 98, "profile_path": "/9LInSWpZ2OVOsaDRDVULXCBt3Aj.jpg", "order": 87}, {"name": "Tony Kirwood", "character": "Death Eater", "id": 568396, "credit_id": "52fe44e39251416c750446eb", "cast_id": 99, "profile_path": "/b0DStt0AhZ00e5rpDrzgaVuy5fT.jpg", "order": 88}, {"name": "Ashley McGuire", "character": "Death Eater", "id": 69476, "credit_id": "52fe44e39251416c750446ef", "cast_id": 100, "profile_path": "/5Uy0qn4ajKtHszfsO5vyCkOffYx.jpg", "order": 89}, {"name": "Arthur Bowen", "character": "Albus Severus Potter (19 Years Later)", "id": 568397, "credit_id": "52fe44e39251416c750446f3", "cast_id": 101, "profile_path": "/7t565rk1qXJf7ViOEJxpDxIv4WC.jpg", "order": 90}, {"name": "Daphne de Beistegui", "character": "Lily Luna Potter (19 Years Later)", "id": 568398, "credit_id": "52fe44e39251416c750446f7", "cast_id": 102, "profile_path": "/tyVwmIlTbRdfBdAYtvCe4DompoT.jpg", "order": 91}, {"name": "Will Dunn", "character": "James Sirius Potter (19 Years Later)", "id": 568399, "credit_id": "52fe44e39251416c750446fb", "cast_id": 103, "profile_path": "/3368m9xvJb1ZWV5q1Klb3E0aT7K.jpg", "order": 92}, {"name": "Jade Gordon", "character": "Astoria Malfoy (19 Years Later)", "id": 180730, "credit_id": "52fe44e39251416c750446ff", "cast_id": 104, "profile_path": "/i3JihtnShYCgWomrmGtKDW3RC5f.jpg", "order": 93}, {"name": "Bertie Gilbert", "character": "Scorpius Malfoy (19 Years Later)", "id": 568402, "credit_id": "52fe44e39251416c75044703", "cast_id": 105, "profile_path": "/oX9Ut3aFnO49nYOvQLxkjJUvF0w.jpg", "order": 94}, {"name": "Helena Barlow", "character": "Rose Weasley (19 Years Later)", "id": 561247, "credit_id": "52fe44e39251416c75044707", "cast_id": 106, "profile_path": "/2kXaAbvvxxxywE85uJF5ARSh9pq.jpg", "order": 95}, {"name": "Ryan Turner", "character": "Hugo Weasley (19 Years Later)", "id": 568403, "credit_id": "52fe44e39251416c7504470b", "cast_id": 107, "profile_path": "/yVJKsmmDCtWCEjMi0uLhVLdVJOP.jpg", "order": 96}, {"name": "Jamie Campbell Bower", "character": "Gellert Grindelwald", "id": 83356, "credit_id": "52fe44e39251416c7504470f", "cast_id": 108, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 97}, {"name": "Luke Newberry", "character": "Teddy Lupin", "id": 214019, "credit_id": "52fe44e39251416c75044713", "cast_id": 109, "profile_path": "/9hKoTMk8IE7vGEciYWT883ZyA99.jpg", "order": 98}, {"name": "Sean Biggerstaff", "character": "Oliver Wood", "id": 11179, "credit_id": "52fe44e39251416c75044723", "cast_id": 113, "profile_path": "/raDTQ6gEo9XZG3O12dGKkGnP0BS.jpg", "order": 99}, {"name": "Leslie Phillips", "character": "The Sorting Hat", "id": 10655, "credit_id": "52fe44e39251416c7504473f", "cast_id": 120, "profile_path": "/A1vO83wMO5eG0AxRvBwwQwu5NCg.jpg", "order": 100}, {"name": "Graham Duff", "character": "Death Eater", "id": 1224773, "credit_id": "5376fe3e0e0a2614190014e3", "cast_id": 122, "profile_path": "/643atgQcjuNRInFbSMKiHTP6vyM.jpg", "order": 101}], "directors": [{"name": "David Yates", "department": "Directing", "job": "Director", "credit_id": "52fe44e29251416c7504457d", "profile_path": "/62Rmk54DNq3GdH5SqqK0pSG5LwO.jpg", "id": 11343}], "vote_average": 7.4, "runtime": 130}, "4256": {"poster_path": "/jSUPkCB9kLacGm8W4BKGYRyjhQv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 220673217, "overview": "In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.", "video": false, "id": 4256, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 3", "tagline": "Great trilogies come in threes.", "vote_count": 196, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0306047", "adult": false, "backdrop_path": "/3ksHzCDEVj1dHcu8i1zLNMQs7Zw.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2003-10-20", "popularity": 0.510613912569371, "original_title": "Scary Movie 3", "budget": 48000000, "cast": [{"name": "Pamela Anderson", "character": "Becca", "id": 6736, "credit_id": "52fe43b6c3a36847f8069dbd", "cast_id": 21, "profile_path": "/21rgWZOkgiPSbEx2QXN22tZilc6.jpg", "order": 0}, {"name": "Jenny McCarthy", "character": "Kate", "id": 35597, "credit_id": "52fe43b6c3a36847f8069dc1", "cast_id": 22, "profile_path": "/itsSilp7prfi3lKQMFn1p5J6hWI.jpg", "order": 1}, {"name": "Marny Eng", "character": "Tabitha", "id": 35799, "credit_id": "52fe43b6c3a36847f8069dc5", "cast_id": 23, "profile_path": null, "order": 2}, {"name": "Charlie Sheen", "character": "Tom", "id": 6952, "credit_id": "52fe43b6c3a36847f8069dc9", "cast_id": 24, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 3}, {"name": "Simon Rex", "character": "George", "id": 35548, "credit_id": "52fe43b6c3a36847f8069dcd", "cast_id": 25, "profile_path": "/3yDqATRevzlrFLRDNZl7lRv9hu7.jpg", "order": 4}, {"name": "Jianna Ballard", "character": "Sue", "id": 35800, "credit_id": "52fe43b6c3a36847f8069dd1", "cast_id": 26, "profile_path": null, "order": 5}, {"name": "Jeremy Piven", "character": "Ross Giggins", "id": 12799, "credit_id": "52fe43b6c3a36847f8069dd5", "cast_id": 27, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 6}, {"name": "Anna Faris", "character": "Cindy Campbell", "id": 1772, "credit_id": "52fe43b6c3a36847f8069dd9", "cast_id": 28, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 7}, {"name": "Regina Hall", "character": "Brenda Meeks", "id": 35705, "credit_id": "52fe43b6c3a36847f8069ddd", "cast_id": 29, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 8}, {"name": "Denise Richards", "character": "Annie", "id": 9205, "credit_id": "52fe43b6c3a36847f8069de1", "cast_id": 30, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 9}, {"name": "Queen Latifah", "character": "Aunt Shaneequa/The Oracle", "id": 15758, "credit_id": "52fe43b6c3a36847f8069deb", "cast_id": 32, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 10}, {"name": "Leslie Nielsen", "character": "President Baxter Harris", "id": 7633, "credit_id": "52fe43b6c3a36847f8069def", "cast_id": 33, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 11}, {"name": "Kevin Hart", "character": "CJ", "id": 55638, "credit_id": "52fe43b6c3a36847f8069df3", "cast_id": 34, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 12}, {"name": "Anthony Anderson", "character": "Mahalik", "id": 18471, "credit_id": "52fe43b6c3a36847f8069df7", "cast_id": 35, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 13}, {"name": "Camryn Manheim", "character": "Trooper Champlin", "id": 20187, "credit_id": "52fe43b6c3a36847f8069dfb", "cast_id": 36, "profile_path": "/zK3xgy0jvM5Ly6mLNIoATdSo6Uj.jpg", "order": 14}, {"name": "George Carlin", "character": "The Architect", "id": 15903, "credit_id": "52fe43b6c3a36847f8069dff", "cast_id": 37, "profile_path": "/xmSn6p5QVn66UK2ueEJisrUR5Bg.jpg", "order": 15}, {"name": "Simon Cowell", "character": "Simon Cowell", "id": 165899, "credit_id": "52fe43b6c3a36847f8069e03", "cast_id": 38, "profile_path": "/5fsQYpcv6e6uNkfdEU2SUc1ZSGF.jpg", "order": 16}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe43b6c3a36847f8069d4d", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 5.8, "runtime": 84}, "133805": {"poster_path": "/3pFxLrjVFm0uMrMG4B39opOfpqF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82394288, "overview": "A reimagining of the classic horror tale about Carrie White, a shy girl outcast by her peers and sheltered by her deeply religious mother, who unleashes telekinetic terror on her small town after being pushed too far at her senior prom.", "video": false, "id": 133805, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Carrie", "tagline": "Know her name. Fear her power.", "vote_count": 423, "homepage": "http://www.carrie-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1939659", "adult": false, "backdrop_path": "/7gTvjByEOx959HtetwcczO2eOJi.jpg", "production_companies": [{"name": "Misher Films", "id": 11581}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Screen Gems", "id": 3287}], "release_date": "2013-10-18", "popularity": 2.60844011492319, "original_title": "Carrie", "budget": 30000000, "cast": [{"name": "Chlo\u00eb Grace Moretz", "character": "Carrie White", "id": 56734, "credit_id": "52fe4bbcc3a368484e197315", "cast_id": 16, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Margaret White", "id": 1231, "credit_id": "52fe4bbcc3a368484e1972db", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Judy Greer", "character": "Miss Desjardin", "id": 20750, "credit_id": "52fe4bbcc3a368484e1972df", "cast_id": 3, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 2}, {"name": "Alex Russell", "character": "Billy Nolan", "id": 558466, "credit_id": "52fe4bbcc3a368484e1972e7", "cast_id": 5, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 4}, {"name": "Portia Doubleday", "character": "Chris Hargensen", "id": 117669, "credit_id": "52fe4bbcc3a368484e1972e3", "cast_id": 4, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 5}, {"name": "Gabriella Wilde", "character": "Sue Snell", "id": 1014932, "credit_id": "52fe4bbcc3a368484e1972eb", "cast_id": 6, "profile_path": "/xbhScoMy3P6pK8Eg5V3EbGoxRSg.jpg", "order": 5}, {"name": "Max Topplin", "character": "Jackie Talbott", "id": 1066079, "credit_id": "52fe4bbcc3a368484e1972ef", "cast_id": 7, "profile_path": "/11pBtyCq6yMgCZZvzVoPuFs0VZQ.jpg", "order": 6}, {"name": "Connor Price", "character": "Freddy 'Beak' Holt", "id": 14889, "credit_id": "52fe4bbcc3a368484e1972f3", "cast_id": 8, "profile_path": "/5wv3PDrlK7vBnEVEAY4i7X162jz.jpg", "order": 7}, {"name": "Ansel Elgort", "character": "Tommy Ross", "id": 1159982, "credit_id": "52fe4bbcc3a368484e197319", "cast_id": 17, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 8}, {"name": "Cynthia Preston", "character": "Eleanor Snell", "id": 1213299, "credit_id": "52fe4bbcc3a368484e197323", "cast_id": 19, "profile_path": "/3luJCE9inrE0f3QxMrYVbjIZdr0.jpg", "order": 9}, {"name": "Michelle Nolden", "character": "Estelle Parsons", "id": 95635, "credit_id": "52fe4bbcc3a368484e197327", "cast_id": 20, "profile_path": "/a72FYiArZuG0TjYXtdzPsNvtTyY.jpg", "order": 10}, {"name": "Arlene Mazerolle", "character": "Miss Helen Finch", "id": 186500, "credit_id": "52fe4bbcc3a368484e19732b", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Demetrius Joyette", "character": "George", "id": 147478, "credit_id": "52fe4bbcc3a368484e19732f", "cast_id": 22, "profile_path": "/tylUnZ1oRsNw79TMgyH8Kacjga8.jpg", "order": 12}, {"name": "Barry Shabaka Henley", "character": "Principal Morton", "id": 8689, "credit_id": "52fe4bbcc3a368484e197333", "cast_id": 23, "profile_path": "/1gZrPYLjAmHLYvSoQ9EWRddaCGD.jpg", "order": 13}, {"name": "Samantha Weinstein", "character": "Heather", "id": 220922, "credit_id": "52fe4bbcc3a368484e197337", "cast_id": 24, "profile_path": "/7C4xAKsVQvSCkGMo5lV7lK2xFHj.jpg", "order": 14}, {"name": "Zo\u00eb Belkin", "character": "Tina", "id": 964415, "credit_id": "52fe4bbcc3a368484e19733b", "cast_id": 25, "profile_path": "/vR4LKgU6LGsjOP15bmDyXCN2GE1.jpg", "order": 15}, {"name": "Karissa Strain", "character": "Nicki", "id": 1292474, "credit_id": "52fe4bbcc3a368484e19733f", "cast_id": 26, "profile_path": "/7sASQWdVDfckKrtwbBhJ4e4eH3p.jpg", "order": 16}], "directors": [{"name": "Kimberly Peirce", "department": "Directing", "job": "Director", "credit_id": "52fe4bbcc3a368484e1972f9", "profile_path": null, "id": 2836}], "vote_average": 6.1, "runtime": 100}, "4258": {"poster_path": "/zYptQLRnePlv5rYg2kYOCZ3C31Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75316327, "overview": "Home with their newly-formed family, happy parents Dan and Jody are haunted by sinister, paranormal activities \u2014 disrupting new mama Jody\u2019s dancing aspirations in the \u201cSwan Lake\u201d ballet and threatening Dan\u2019s rise as an ape researcher. Determined to expel the insidious force, they install security cameras and discover their family is being stalked by an evil dead demon! The latest installment of the SCARY MOVIE franchise includes hilarious, non-stop send ups of some of the biggest recent cinematic hits and pop culture, featuring Ashley Tisdale, Charlie Sheen, Lindsay Lohan, Snoop Dogg, Katt Williams, Katrina Bowden, Kate Walsh, Heather Locklear and Mike Tyson.", "video": false, "id": 4258, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 5", "tagline": "Evil is coming. Bring protection.", "vote_count": 350, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0795461", "adult": false, "backdrop_path": "/jNoW4xqUljVyVQ1yrrhv9TGOWlM.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2013-04-12", "popularity": 1.37076883127227, "original_title": "Scary Movie 5", "budget": 20000000, "cast": [{"name": "Simon Rex", "character": "Dan Sanders", "id": 35548, "credit_id": "52fe43b6c3a36847f8069eef", "cast_id": 6, "profile_path": "/3yDqATRevzlrFLRDNZl7lRv9hu7.jpg", "order": 0}, {"name": "Ashley Tisdale", "character": "Jody Sanders", "id": 67600, "credit_id": "52fe43b6c3a36847f8069eeb", "cast_id": 5, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 1}, {"name": "Charlie Sheen", "character": "Himself", "id": 6952, "credit_id": "52fe43b6c3a36847f8069efb", "cast_id": 9, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 2}, {"name": "Lindsay Lohan", "character": "Herself", "id": 49265, "credit_id": "52fe43b6c3a36847f8069ef7", "cast_id": 8, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 3}, {"name": "Erica Ash", "character": "Kendra Brooks", "id": 451684, "credit_id": "52fe43b6c3a36847f8069eff", "cast_id": 10, "profile_path": "/urDXwFYOUI5614QnMzrLKdQo5F2.jpg", "order": 4}, {"name": "Katt Williams", "character": "Blaine Fulda", "id": 58926, "credit_id": "52fe43b6c3a36847f8069f03", "cast_id": 11, "profile_path": "/8f1nGRYIkA9fSBYtU8olUm07Wib.jpg", "order": 5}, {"name": "Molly Shannon", "character": "Heather Darcy", "id": 28640, "credit_id": "52fe43b6c3a36847f8069ef3", "cast_id": 7, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 6}, {"name": "Darrell Hammond", "character": "Dr. Hall", "id": 58954, "credit_id": "52fe43b6c3a36847f8069f07", "cast_id": 12, "profile_path": "/gxLHYyptnLLtak6E5eR7HqvMXRM.jpg", "order": 7}, {"name": "Snoop Dogg", "character": "Marcus", "id": 19767, "credit_id": "52fe43b6c3a36847f8069f0b", "cast_id": 13, "profile_path": "/uMS5T5k24qAq5JFQ4bmHTviWBnP.jpg", "order": 8}, {"name": "Jerry O'Connell", "character": "Christian Grey", "id": 3035, "credit_id": "52fe43b6c3a36847f8069f0f", "cast_id": 14, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 9}, {"name": "Sarah Hyland", "character": "Mia", "id": 91351, "credit_id": "52fe43b6c3a36847f8069f13", "cast_id": 15, "profile_path": "/x0Gz56NHgCAn080RZGRFkPi02S.jpg", "order": 10}, {"name": "Katrina Bowden", "character": "Natalie", "id": 74618, "credit_id": "52fe43b6c3a36847f8069f17", "cast_id": 16, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 11}, {"name": "Heather Locklear", "character": "Barbara", "id": 58691, "credit_id": "52fe43b6c3a36847f8069f1b", "cast_id": 17, "profile_path": "/djRAJGjg73Cao0x5m11XPHrjBll.jpg", "order": 12}, {"name": "Mike Tyson", "character": "Himself", "id": 80757, "credit_id": "52fe43b6c3a36847f8069f1f", "cast_id": 18, "profile_path": "/dENp2l4nk5wv6F0AT1iQ3pf4Os1.jpg", "order": 13}, {"name": "Kate Walsh", "character": "Herself", "id": 61114, "credit_id": "52fe43b6c3a36847f8069f23", "cast_id": 19, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 14}, {"name": "Shad Moss", "character": "Eric", "id": 58197, "credit_id": "52fe43b6c3a36847f8069f27", "cast_id": 20, "profile_path": "/A1rHY9B5R9cIQshClcJxBYINg1m.jpg", "order": 15}], "directors": [{"name": "Malcolm D. Lee", "department": "Directing", "job": "Director", "credit_id": "52fe43b6c3a36847f8069ee7", "profile_path": "/pbWAodjcqGfDhlfaSvAxfAKmT7Q.jpg", "id": 72024}], "vote_average": 4.7, "runtime": 86}, "77987": {"poster_path": "/zxaI7q7tP9I7gQdhZ8mnpohd8sR.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "SE", "name": "Sweden"}, {"iso_3166_1": "TH", "name": "Thailand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9743738, "overview": "Julian, who runs a Thai boxing club as a front organization for his family's drug smuggling operation, is forced by his mother Jenna to find and kill the individual responsible for his brother's recent death.", "video": false, "id": 77987, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Only God Forgives", "tagline": "Time to Meet The Devil", "vote_count": 336, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt1602613", "adult": false, "backdrop_path": "/bWOeaxfLBf5G7qfsC2a2gGuKx6X.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "A Grand Elephant", "id": 19865}, {"name": "Bold Films", "id": 2266}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Gaumont", "id": 9}], "release_date": "2013-07-19", "popularity": 1.08745564731899, "original_title": "Only God Forgives", "budget": 4800000, "cast": [{"name": "Ryan Gosling", "character": "Julian", "id": 30614, "credit_id": "52fe4988c3a368484e130441", "cast_id": 2, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Kristin Scott Thomas", "character": "Jenna", "id": 5470, "credit_id": "52fe4988c3a368484e130445", "cast_id": 4, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 1}, {"name": "Gordon Brown", "character": "Gordon", "id": 1840, "credit_id": "52fe4988c3a368484e130449", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Tom Burke", "character": "Billy", "id": 52891, "credit_id": "52fe4988c3a368484e130465", "cast_id": 10, "profile_path": "/yw442LGBNYr9i07aiND3oMlox5h.jpg", "order": 3}, {"name": "Vithaya Pansringarm", "character": "Chang", "id": 1102621, "credit_id": "52fe4988c3a368484e130469", "cast_id": 11, "profile_path": "/cBEqTpCFQPVfMJxhs0rx8JVbA1t.jpg", "order": 4}, {"name": "Byron Gibson", "character": "Byron", "id": 971590, "credit_id": "52fe4988c3a368484e13046d", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Sahajak Boonthanakit", "character": "Pol Col. KIM", "id": 521673, "credit_id": "52fe4988c3a368484e130471", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Yayaying Rhatha Phongam", "character": "Mai", "id": 1206367, "credit_id": "52fe4988c3a368484e130475", "cast_id": 14, "profile_path": "/i6WlcanxRZ3tRUjg6vEI6XMrIIe.jpg", "order": 7}, {"name": "Charlie Ruedpokanon", "character": "Daeng", "id": 1163445, "credit_id": "52fe4988c3a368484e130479", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Wannisa Peungpa", "character": "Kanita", "id": 1268084, "credit_id": "52fe4988c3a368484e13047d", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Narucha Chaimareung", "character": "Papa San", "id": 1268085, "credit_id": "52fe4988c3a368484e130481", "cast_id": 17, "profile_path": null, "order": 10}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe4988c3a368484e13043d", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 5.2, "runtime": 90}, "69798": {"poster_path": "/705cX3NvfegQUCPNhSqeIZanYDj.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "High school graduation just wouldn\u2019t be complete without an un-chaperoned, uninhibited and unforgettable final holiday. At least that\u2019s what Will, Jay, Simon and Neil think when they book a two-week stay on an exotic Greek island. As their dreams of sun-drenched days and booze-filled nights are left hopelessly unfulfilled, the lads fight their way into the party scene with hilariously humiliating results in this smash hit UK raunchy comedy.", "video": false, "id": 69798, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Inbetweeners Movie", "tagline": "This year four boys become men.", "vote_count": 90, "homepage": "https://itunes.apple.com/us/movie/the-inbetweeners/id586818977?ign-mpt=uo%3D4", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yQyzPIMLpjWmwE2XMui2C4qTXOv.jpg", "id": 279959, "name": "The Inbetweeners Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1716772", "adult": false, "backdrop_path": "/dhivLxSN9zHloFqpN3QesdBUdkx.jpg", "production_companies": [{"name": "Channel 4 Television Corporation", "id": 15276}], "release_date": "2011-08-19", "popularity": 0.693311695307326, "original_title": "The Inbetweeners Movie", "budget": 0, "cast": [{"name": "Simon Bird", "character": "Will McKenzie", "id": 218948, "credit_id": "52fe47dcc3a368484e0dd89d", "cast_id": 1, "profile_path": "/fW6kVI0yb9rhtnPRDBIWlkSWbd2.jpg", "order": 0}, {"name": "James Buckley", "character": "Jay Cartwright", "id": 207321, "credit_id": "52fe47dcc3a368484e0dd8a1", "cast_id": 2, "profile_path": "/lv58w34d9qgqJiLDX5tovxzp8rV.jpg", "order": 1}, {"name": "Blake Harrison", "character": "Neil Sutherland", "id": 222068, "credit_id": "52fe47dcc3a368484e0dd8a5", "cast_id": 3, "profile_path": "/w09kt7eMcuwRSjDVidtfm3WJym2.jpg", "order": 2}, {"name": "Joe Thomas", "character": "Simon Cooper", "id": 224350, "credit_id": "52fe47dcc3a368484e0dd8a9", "cast_id": 4, "profile_path": "/slaXnmyIVxsh6QbRgldVrZkCZnD.jpg", "order": 3}, {"name": "Lydia Rose Bewley", "character": "Jane", "id": 1058600, "credit_id": "52fe47dcc3a368484e0dd8bf", "cast_id": 10, "profile_path": "/dI1YlDgTTeWwxB2wn4bFRQfuJee.jpg", "order": 4}, {"name": "Laura Haddock", "character": "Alison", "id": 209578, "credit_id": "52fe47dcc3a368484e0dd8c3", "cast_id": 12, "profile_path": "/9Krk76xvNMkIqjEbPXdARZNRX3.jpg", "order": 5}, {"name": "Emily Head", "character": "Carli D'Amato", "id": 504217, "credit_id": "52fe47dcc3a368484e0dd903", "cast_id": 24, "profile_path": "/qDjSNM9iuaslkpqfYPmicfxxCkD.jpg", "order": 6}, {"name": "Tamla Kari", "character": "Lucy", "id": 1128191, "credit_id": "52fe47dcc3a368484e0dd907", "cast_id": 25, "profile_path": "/befV0lrZ4CA1S42IZa2NL2RTbKZ.jpg", "order": 7}, {"name": "Jessica Knappett", "character": "Lisa", "id": 1128192, "credit_id": "52fe47dcc3a368484e0dd90b", "cast_id": 26, "profile_path": "/bNgc8MxsP7P1lRowZUDs1JW54HQ.jpg", "order": 8}, {"name": "Theo Barklem-Biggs", "character": "Richard", "id": 1013048, "credit_id": "52fe47dcc3a368484e0dd90f", "cast_id": 27, "profile_path": "/9KHUtdVl8GhEUDUQeYOUKGKluBY.jpg", "order": 9}, {"name": "Theo James", "character": "James", "id": 587020, "credit_id": "52fe47dcc3a368484e0dd913", "cast_id": 28, "profile_path": "/dXk1mzDsJhQ1dR1SicIYp4nAXbi.jpg", "order": 10}, {"name": "Anthony Stewart Head", "character": "Will's Dad", "id": 34257, "credit_id": "52fe47dcc3a368484e0dd917", "cast_id": 29, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 11}, {"name": "Victoria Willing", "character": "Mrs. Cartwright", "id": 269653, "credit_id": "52fe47dcc3a368484e0dd91b", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Greg Davies", "character": "Mr. Gilbert", "id": 1240641, "credit_id": "52fe47dcc3a368484e0dd927", "cast_id": 34, "profile_path": "/5Uq5oedANZmNPB7IxKyHvykKNR0.jpg", "order": 13}, {"name": "Henry Lloyd-Hughes", "character": "Mark Donovan", "id": 513677, "credit_id": "52fe47dcc3a368484e0dd91f", "cast_id": 32, "profile_path": "/cO8PvsG3vzIvcoXGwTs6DQqaz7m.jpg", "order": 14}, {"name": "Belinda Stewart-Wilson", "character": "Polly MacKenzie", "id": 174978, "credit_id": "52fe47dcc3a368484e0dd923", "cast_id": 33, "profile_path": "/1YbcdCCSOcipoROaw2fDm2WwxiQ.jpg", "order": 15}], "directors": [{"name": "Ben Palmer", "department": "Directing", "job": "Director", "credit_id": "52fe47dcc3a368484e0dd8af", "profile_path": null, "id": 175463}], "vote_average": 6.3, "runtime": 97}, "258216": {"poster_path": "/49HMMZPVJcnUwe2QmVzBfxyLAY2.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 10285896, "overview": "A man named Seligman finds a fainted wounded woman in an alley and he brings her home. She tells him that her name is Joe and that she is nymphomaniac. Joe tells her life and sexual experiences with hundreds of men since she was a young teenager while Seligman tells about his hobbies, such as fly fishing, reading about Fibonacci numbers or listening to organ music.", "video": false, "id": 258216, "genres": [{"id": 18, "name": "Drama"}], "title": "Nymphomaniac: Vol. I", "tagline": "Forget About Love", "vote_count": 195, "homepage": "http://www.nymphomaniacthemovie.com/", "belongs_to_collection": {"backdrop_path": "/7B71Lt136GptW7AcrSs3mZ7rjrR.jpg", "poster_path": "/mkML1KIuHsv9bF5cdwMl6W8S0V1.jpg", "id": 258664, "name": "Nymphomaniac Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1937390", "adult": false, "backdrop_path": "/t9MElpSTsqNBttwntdevOgQuJDe.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}, {"name": "Les Films du Losange", "id": 223}, {"name": "Concorde Filmverleih", "id": 913}, {"name": "Caviar Films", "id": 2699}, {"name": "Slot Machine", "id": 7777}, {"name": "Zentropa International K\u00f6ln", "id": 8289}, {"name": "Artificial Eye", "id": 11895}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Heimatfilm", "id": 23406}, {"name": "European Film Bonds", "id": 23407}, {"name": "Caviar", "id": 23408}], "release_date": "2013-12-25", "popularity": 1.45910632383259, "original_title": "Nymphomaniac: Vol. I", "budget": 0, "cast": [{"name": "Charlotte Gainsbourg", "character": "Joe", "id": 4273, "credit_id": "531971b3c3a3685c5600281d", "cast_id": 1, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Stellan Skarsg\u00e5rd", "character": "Seligman", "id": 1640, "credit_id": "531971c0c3a3685c4300284c", "cast_id": 2, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 2}, {"name": "Stacy Martin", "character": "Young Joe", "id": 1137823, "credit_id": "531971cdc3a3685c31002804", "cast_id": 3, "profile_path": "/78BhUmgZETfUNsURMFP0E85WB3m.jpg", "order": 3}, {"name": "Shia LaBeouf", "character": "Jer\u00f4me", "id": 10959, "credit_id": "53197216c3a3685c4a002987", "cast_id": 4, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 4}, {"name": "Christian Slater", "character": "Joe's Father", "id": 2224, "credit_id": "53197252c3a3685c31002813", "cast_id": 5, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 5}, {"name": "Uma Thurman", "character": "Mrs. H", "id": 139, "credit_id": "531972a8c3a3685c3d0027c9", "cast_id": 6, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 6}, {"name": "Sophie Kennedy Clark", "character": "B", "id": 1151957, "credit_id": "531972ccc3a3685c56002834", "cast_id": 7, "profile_path": "/srWIgEGIOPU7EzzNG3pO67qjIDy.jpg", "order": 7}, {"name": "Connie Nielsen", "character": "Joe's Mother", "id": 935, "credit_id": "531972e792514177b7002012", "cast_id": 8, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 8}, {"name": "Ananya Berg", "character": "Joe - 10 Years", "id": 1385628, "credit_id": "546761ec22136e7bec001c41", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Jens Albinus", "character": "S", "id": 6121, "credit_id": "54676229eaeb81727f001f7b", "cast_id": 18, "profile_path": "/9CgGf30xp3hreseXoQd3qCQV1cY.jpg", "order": 10}, {"name": "Anders Hove", "character": "Odin", "id": 1566, "credit_id": "5467626922136e7be9001d75", "cast_id": 19, "profile_path": "/m9UAUhR7CzC376jy9dV9HGctqSV.jpg", "order": 11}, {"name": "Simon B\u00f6er", "character": "", "id": 1104730, "credit_id": "546762a2eaeb817286001c18", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Felicity Gilbert", "character": "", "id": 1269681, "credit_id": "546762f4eaeb81726e001fc1", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Clayton Nemrow", "character": "", "id": 1170767, "credit_id": "5467632e22136e7bee001ccc", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "James Northcote", "character": "", "id": 1362119, "credit_id": "5467635c22136e45990005f9", "cast_id": 23, "profile_path": "/wuf9ARlVXPonmRN21WcYQtdSiOv.jpg", "order": 15}, {"name": "Saskia Reeves", "character": "", "id": 13363, "credit_id": "5467638a22136e6dc7000237", "cast_id": 24, "profile_path": "/tCZFXKrWp4JQQOHWYFlwoHZGt7a.jpg", "order": 16}, {"name": "Cyron Bj\u00f8rn Melville", "character": "", "id": 112733, "credit_id": "546763b122136e6dc700023c", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Hugo Speer", "character": "", "id": 2251, "credit_id": "546763c6eaeb817278001dde", "cast_id": 26, "profile_path": "/xSFarovDUHpVSOnCE2dqcWeBYO3.jpg", "order": 18}, {"name": "Jesper Christensen", "character": "", "id": 2244, "credit_id": "546763e522136e6baf000003", "cast_id": 27, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 19}, {"name": "Jamie Bell", "character": "", "id": 478, "credit_id": "550f08b79251416bd1000d87", "cast_id": 28, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 20}, {"name": "Willem Dafoe", "character": "", "id": 5293, "credit_id": "550f08d292514164ac000e93", "cast_id": 29, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 21}, {"name": "Mia Goth", "character": "", "id": 1137824, "credit_id": "550f08dcc3a368488600aa58", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Micha\u00ebl Pas", "character": "", "id": 1444094, "credit_id": "550f08fdc3a3683f3900306f", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Jean-Marc Barr", "character": "", "id": 1642, "credit_id": "550f091d92514164ac000ea6", "cast_id": 32, "profile_path": "/b3E5gzQf1NmivNY2rHO8HJHs6bZ.jpg", "order": 24}, {"name": "Udo Kier", "character": "", "id": 1646, "credit_id": "550f0927925141469900a44a", "cast_id": 33, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 25}, {"name": "Peter Gilbert Cotton", "character": "", "id": 126958, "credit_id": "550f097b92514166db000f1a", "cast_id": 34, "profile_path": null, "order": 26}, {"name": "Nicolas Bro", "character": "", "id": 15086, "credit_id": "550f098f925141469900a452", "cast_id": 35, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 27}, {"name": "Tania Carlin", "character": "", "id": 1137827, "credit_id": "550f09bfc3a3681db2009c43", "cast_id": 36, "profile_path": null, "order": 28}, {"name": "Shanti Roney", "character": "", "id": 11044, "credit_id": "550f09d792514107010031ea", "cast_id": 37, "profile_path": "/ti21d61B3kNV0QZCJHsviad79jR.jpg", "order": 29}, {"name": "Caroline Goodall", "character": "", "id": 6692, "credit_id": "550f09fdc3a3683e7f003083", "cast_id": 38, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 30}, {"name": "Christian Gade Bjerrum", "character": "", "id": 1444097, "credit_id": "550f0a06c3a3683f39003083", "cast_id": 39, "profile_path": null, "order": 31}, {"name": "Ronja Rissmann", "character": "", "id": 1444098, "credit_id": "550f0a26c3a3683dd6002d98", "cast_id": 40, "profile_path": null, "order": 32}, {"name": "Maja Arsovic", "character": "", "id": 1444099, "credit_id": "550f0a2fc3a368488600aa74", "cast_id": 41, "profile_path": null, "order": 33}, {"name": "Sofie Kasten", "character": "", "id": 1444100, "credit_id": "550f0a8ac3a3683eb8002e71", "cast_id": 42, "profile_path": null, "order": 34}, {"name": "Charlie Hawkins", "character": "", "id": 1444101, "credit_id": "550f0ab7c3a3683e7f003096", "cast_id": 44, "profile_path": null, "order": 36}, {"name": "Jeff Burrell", "character": "", "id": 49491, "credit_id": "550f0ae9925141469900a474", "cast_id": 45, "profile_path": null, "order": 37}, {"name": "Andreas Gr\u00f6tzinger", "character": "", "id": 1444103, "credit_id": "550f0af3c3a368487400b594", "cast_id": 46, "profile_path": null, "order": 38}, {"name": "Tomas Sinclair Spencer", "character": "", "id": 1444111, "credit_id": "550f0eeac3a3683f390030ee", "cast_id": 47, "profile_path": null, "order": 39}, {"name": "Jesse Inman", "character": "", "id": 1444112, "credit_id": "550f0ef392514146a000a627", "cast_id": 48, "profile_path": null, "order": 40}, {"name": "Christoph Schechinger", "character": "", "id": 1439733, "credit_id": "550f0f0c925141070100326b", "cast_id": 49, "profile_path": null, "order": 41}, {"name": "David Halina", "character": "", "id": 1329094, "credit_id": "550f0f27925141469900a4e5", "cast_id": 50, "profile_path": null, "order": 42}, {"name": "Jonas Baeck", "character": "", "id": 1444115, "credit_id": "550f0f339251410701003274", "cast_id": 51, "profile_path": null, "order": 43}, {"name": "Katharina R\u00fcbertus", "character": "", "id": 1444116, "credit_id": "550f0f53c3a3683eb8002eea", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "Inga Behring", "character": "", "id": 1444117, "credit_id": "550f0f5c925141070100327b", "cast_id": 53, "profile_path": null, "order": 45}, {"name": "Lisa Matschke", "character": "", "id": 1444118, "credit_id": "550f0f6692514146a000a639", "cast_id": 54, "profile_path": null, "order": 46}, {"name": "Moritz Tellmann", "character": "", "id": 1444119, "credit_id": "550f0f7bc3a368488600ab17", "cast_id": 55, "profile_path": null, "order": 47}, {"name": "Johannes Kienast", "character": "", "id": 1444120, "credit_id": "550f0f88c3a3683f39003104", "cast_id": 56, "profile_path": null, "order": 48}, {"name": "Frankie Dawson", "character": "", "id": 1444121, "credit_id": "550f0fa29251416bd1000e29", "cast_id": 57, "profile_path": null, "order": 49}, {"name": "George Dawson", "character": "", "id": 994453, "credit_id": "550f0fab92514166db000fa4", "cast_id": 58, "profile_path": null, "order": 50}, {"name": "Harry Dawson", "character": "", "id": 1367900, "credit_id": "550f0fb9c3a3681db2009ce9", "cast_id": 59, "profile_path": null, "order": 51}, {"name": "Markus Tomczyk", "character": "", "id": 553003, "credit_id": "550f1034c3a368488600ab26", "cast_id": 60, "profile_path": null, "order": 52}, {"name": "Christoph J\u00f6de", "character": "", "id": 1327193, "credit_id": "550f103dc3a3683f3900311b", "cast_id": 61, "profile_path": null, "order": 53}, {"name": "Morgan Hartley", "character": "", "id": 1444127, "credit_id": "550f1047c3a3683f0a002f99", "cast_id": 62, "profile_path": null, "order": 54}, {"name": "Andrea Thomsen", "character": "", "id": 1444128, "credit_id": "550f1076c3a3683e7f003145", "cast_id": 63, "profile_path": null, "order": 55}, {"name": "Tine Burn", "character": "", "id": 1444129, "credit_id": "550f109d925141073d003270", "cast_id": 64, "profile_path": null, "order": 56}, {"name": "Tabea Tarbiat", "character": "", "id": 1444130, "credit_id": "550f10a6c3a3683f0a002fa8", "cast_id": 65, "profile_path": null, "order": 57}, {"name": "Janine Romanowski", "character": "", "id": 1444131, "credit_id": "550f10b392514164ac000f48", "cast_id": 66, "profile_path": null, "order": 58}, {"name": "Lawrence Sheldon", "character": "", "id": 1444132, "credit_id": "550f10f7925141073d003278", "cast_id": 67, "profile_path": null, "order": 59}, {"name": "Ivan Pecnik", "character": "", "id": 1137826, "credit_id": "550f110292514107010032af", "cast_id": 68, "profile_path": null, "order": 60}, {"name": "Jonathon Sawdon", "character": "", "id": 1444133, "credit_id": "550f110b925141469900a517", "cast_id": 69, "profile_path": null, "order": 61}, {"name": "Christopher Craig", "character": "", "id": 1152394, "credit_id": "550f1130c3a3683dd6002e4c", "cast_id": 70, "profile_path": "/eKwZW0oZc3vY8Lp385c6JcXKjnW.jpg", "order": 62}, {"name": "Jacob Levin-Christensen", "character": "", "id": 1441065, "credit_id": "550f1139c3a3683f39003132", "cast_id": 71, "profile_path": null, "order": 63}, {"name": "Kookie Ryan", "character": "", "id": 1444134, "credit_id": "550f1149c3a3683eb8002f10", "cast_id": 72, "profile_path": null, "order": 64}, {"name": "Papou", "character": "", "id": 1444135, "credit_id": "550f115b92514164ac000f59", "cast_id": 73, "profile_path": null, "order": 65}, {"name": "Nicole Sandweg", "character": "", "id": 1444136, "credit_id": "550f117bc3a3681db2009d11", "cast_id": 74, "profile_path": null, "order": 66}, {"name": "Lien van de Kelder", "character": "", "id": 237837, "credit_id": "550f118ac3a3683dd6002e5e", "cast_id": 75, "profile_path": null, "order": 67}, {"name": "Laura Christensen", "character": "", "id": 83011, "credit_id": "550f1195c3a368487400b634", "cast_id": 76, "profile_path": "/q9AoEwRz0wtqawZfh5od7AzVDZw.jpg", "order": 68}, {"name": "Sarah Soetaert", "character": "", "id": 1444137, "credit_id": "550f11bc92514164ac000f67", "cast_id": 77, "profile_path": null, "order": 69}, {"name": "Sami Loris", "character": "", "id": 129125, "credit_id": "550f11c5925141073d003289", "cast_id": 78, "profile_path": null, "order": 70}, {"name": "Kate Ashfield", "character": "", "id": 11110, "credit_id": "550f11cec3a3683f3900313a", "cast_id": 79, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 71}, {"name": "Christine Urspruch", "character": "", "id": 28201, "credit_id": "550f11edc3a3683f3900313f", "cast_id": 80, "profile_path": "/i8RYQggISjM8IULpxUKVBVV4GSM.jpg", "order": 72}, {"name": "Daniela Lebang", "character": "", "id": 1444138, "credit_id": "550f11fe925141073d003292", "cast_id": 81, "profile_path": null, "order": 73}, {"name": "Omar Shargawi", "character": "", "id": 141879, "credit_id": "550f1210c3a3683f39003143", "cast_id": 82, "profile_path": null, "order": 74}, {"name": "Marcus Jakovljevic", "character": "", "id": 1329095, "credit_id": "550f123fc3a3683e7f003170", "cast_id": 83, "profile_path": null, "order": 75}, {"name": "Conny Dachs", "character": "", "id": 1145463, "credit_id": "550f124ac3a368487400b648", "cast_id": 84, "profile_path": null, "order": 76}, {"name": "Severin von Hoensbroech", "character": "", "id": 1012903, "credit_id": "550f1260c3a3683eb8002f30", "cast_id": 85, "profile_path": null, "order": 77}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "531894d6c3a3685c4a00182b", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.6, "runtime": 118}, "9030": {"poster_path": "/iFeK07UppNGNtvooixF5lZudhWk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56309766, "overview": "Violinist Sydney Wells was accidentally blinded by her sister Helen when she was five years old. She submits to a cornea transplantation, and while recovering from the operation, she realizes that she is seeing dead people.", "video": false, "id": 9030, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Eye", "tagline": "How can you believe your eyes when they're not yours?", "vote_count": 77, "homepage": "http://www.theeyethefilm.com", "belongs_to_collection": {"backdrop_path": "/rki7UPSFEaUPuitlQ9Iq421p137.jpg", "poster_path": "/8kPLIuWZatb3krc4l16pnkfokjo.jpg", "id": 264335, "name": "The Eye Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0406759", "adult": false, "backdrop_path": "/s7BL1QkkGzX3af2ZxzVmeyuLfz4.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "VN Productions", "id": 4622}], "release_date": "2008-02-01", "popularity": 0.616723839068158, "original_title": "The Eye", "budget": 12000000, "cast": [{"name": "Jessica Alba", "character": "Sydney Wells", "id": 56731, "credit_id": "52fe44d3c3a36847f80ac541", "cast_id": 1, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 0}, {"name": "Alessandro Nivola", "character": "Dr. Paul Faulkner", "id": 4941, "credit_id": "52fe44d3c3a36847f80ac545", "cast_id": 2, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 1}, {"name": "Parker Posey", "character": "Helen Wells", "id": 7489, "credit_id": "52fe44d3c3a36847f80ac549", "cast_id": 3, "profile_path": "/7kgXNbTDwE5fxCG6KY5pacOK9aj.jpg", "order": 2}, {"name": "Rade \u0160erbed\u017eija", "character": "Simon McCullough", "id": 1118, "credit_id": "52fe44d3c3a36847f80ac54d", "cast_id": 4, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 3}, {"name": "Fernanda Romero", "character": "Ana Christina Martinez", "id": 56732, "credit_id": "52fe44d3c3a36847f80ac551", "cast_id": 5, "profile_path": "/s9Diy8zLaMpJhhfRDIugY8rq6I0.jpg", "order": 4}, {"name": "Obba Babatunde", "character": "Dr. Haskins", "id": 52057, "credit_id": "52fe44d3c3a36847f80ac555", "cast_id": 6, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 5}, {"name": "Danny Mora", "character": "Miguel", "id": 56733, "credit_id": "52fe44d3c3a36847f80ac559", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Rachel Ticotin", "character": "Rosa Martinez", "id": 10768, "credit_id": "52fe44d3c3a36847f80ac55d", "cast_id": 8, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 7}, {"name": "Chlo\u00eb Grace Moretz", "character": "Alicia Millstone", "id": 56734, "credit_id": "52fe44d3c3a36847f80ac561", "cast_id": 9, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 8}, {"name": "Tamlyn Tomita", "character": "Mrs. Cheung", "id": 3134, "credit_id": "52fe44d3c3a36847f80ac565", "cast_id": 10, "profile_path": "/iX6zGWXFWLdUnxaVebXGzXXwgft.jpg", "order": 9}, {"name": "Karen Austin", "character": "Mrs. Hillman", "id": 30489, "credit_id": "52fe44d3c3a36847f80ac569", "cast_id": 11, "profile_path": "/4OkTNSyMZiU2rOVrKUzH6zuFvqL.jpg", "order": 10}], "directors": [{"name": "David Moreau", "department": "Directing", "job": "Director", "credit_id": "52fe44d3c3a36847f80ac56f", "profile_path": null, "id": 56735}, {"name": "Xavier Palud", "department": "Directing", "job": "Director", "credit_id": "52fe44d3c3a36847f80ac575", "profile_path": null, "id": 56736}], "vote_average": 5.7, "runtime": 98}, "20662": {"poster_path": "/4gH0vhyOcl7QV3t81653CpWjEB6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 310669540, "overview": "When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man's sword to his family in Nottingham. There, he assumes Robert's identity; romances his widow, Marion; and draws the ire of the town's sheriff and King John's henchman, Godfrey.", "video": false, "id": 20662, "genres": [{"id": 28, "name": "Action"}], "title": "Robin Hood", "tagline": "Rise and rise again, until lambs become lions.", "vote_count": 485, "homepage": "http://www.robinhoodthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0955308", "adult": false, "backdrop_path": "/avhEibZxIr8NzHQFBjw3FjLjN7u.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Relativity Media", "id": 7295}], "release_date": "2010-05-13", "popularity": 1.25097281548566, "original_title": "Robin Hood", "budget": 200000000, "cast": [{"name": "Russell Crowe", "character": "Robin Hood", "id": 934, "credit_id": "52fe43f2c3a368484e007699", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Lady Marian", "id": 112, "credit_id": "52fe43f2c3a368484e00769d", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Mark Strong", "character": "Sir Godfrey", "id": 2983, "credit_id": "52fe43f2c3a368484e0076d5", "cast_id": 12, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Oscar Isaac", "character": "Prince John", "id": 25072, "credit_id": "52fe43f2c3a368484e0076e1", "cast_id": 15, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 3}, {"name": "L\u00e9a Seydoux", "character": "Isabella of Angoul\u00eame", "id": 121529, "credit_id": "52fe43f2c3a368484e0076fd", "cast_id": 22, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 4}, {"name": "Max von Sydow", "character": "Sir Walter Loxley", "id": 2201, "credit_id": "52fe43f2c3a368484e0076dd", "cast_id": 14, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 5}, {"name": "Danny Huston", "character": "King Richard", "id": 6413, "credit_id": "52fe43f2c3a368484e0076e9", "cast_id": 17, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "Mark Addy", "character": "Friar Tuck", "id": 13633, "credit_id": "52fe43f2c3a368484e0076e5", "cast_id": 16, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 7}, {"name": "William Hurt", "character": "William Marshal", "id": 227, "credit_id": "52fe43f2c3a368484e0076d9", "cast_id": 13, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 8}, {"name": "Matthew Macfadyen", "character": "Sheriff of Nottingham", "id": 15576, "credit_id": "52fe43f2c3a368484e0076a1", "cast_id": 3, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 9}, {"name": "Kevin Durand", "character": "Little John", "id": 79072, "credit_id": "52fe43f2c3a368484e0076ed", "cast_id": 18, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 10}, {"name": "Scott Grimes", "character": "Will Scarlet", "id": 35091, "credit_id": "52fe43f2c3a368484e0076f1", "cast_id": 19, "profile_path": "/tm8uz3DbD0hlXRciYgCuaHrXepl.jpg", "order": 11}, {"name": "Alan Doyle", "character": "Allan A'Dayle", "id": 147472, "credit_id": "52fe43f2c3a368484e0076f5", "cast_id": 20, "profile_path": "/esB5mU49xL3ZM0OPRfvV5LwDbWb.jpg", "order": 12}, {"name": "Ruby Bentall", "character": "Margaret Walter's Maid", "id": 226083, "credit_id": "52fe43f2c3a368484e0076f9", "cast_id": 21, "profile_path": "/uH5unnFpkR3S5DUH2c4b28Xe6Al.jpg", "order": 13}, {"name": "Douglas Hodge", "character": "Sir Robert Loxley", "id": 80149, "credit_id": "52fe43f2c3a368484e007701", "cast_id": 23, "profile_path": "/faOSyKFdO2ugLHt2SMjxVRQcw5A.jpg", "order": 14}, {"name": "Robert Pugh", "character": "Baron Baldwin", "id": 47643, "credit_id": "52fe43f2c3a368484e007705", "cast_id": 24, "profile_path": "/vnqBCADoEnxQBD5e0GOCbUGrLeM.jpg", "order": 15}, {"name": "Jessica Raine", "character": "Princess Isabel of Gloucester", "id": 1151410, "credit_id": "52fe43f2c3a368484e007709", "cast_id": 25, "profile_path": "/co6u2yKVwoTWztYbC7ctcJ7YlE1.jpg", "order": 16}, {"name": "Giannina Facio", "character": "Lady-in-Waiting", "id": 58787, "credit_id": "52fe43f2c3a368484e00770d", "cast_id": 26, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 17}, {"name": "Eileen Atkins", "character": "Eleanor of Aquitaine", "id": 20300, "credit_id": "5409f78e0e0a262b49000574", "cast_id": 31, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 18}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43f2c3a368484e0076a7", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.0, "runtime": 140}, "241848": {"poster_path": "/xuUK5qTqdncIC5PP8bvyQoLZU9f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A soldier introduces himself to the Peterson family, claiming to be a friend of their son who died in action. After the young man is welcomed into their home, a series of accidental deaths seem to be connected to his presence.", "video": false, "id": 241848, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Guest", "tagline": "Be careful who you let in", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2980592", "adult": false, "backdrop_path": "/oA9gW3SuXmvnHUewe0KDyK011VH.jpg", "production_companies": [{"name": "HanWay Films", "id": 2395}, {"name": "Snoot Entertainment", "id": 15159}], "release_date": "2014-09-17", "popularity": 1.93120687261182, "original_title": "The Guest", "budget": 0, "cast": [{"name": "Dan Stevens", "character": "David", "id": 221018, "credit_id": "53e332f70e0a262b8f003687", "cast_id": 3, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 1}, {"name": "Maika Monroe", "character": "Anna Peterson", "id": 1094091, "credit_id": "53e333080e0a262b80003951", "cast_id": 4, "profile_path": "/3MyvscK0RoxmwLSIWzxRA2UrC6v.jpg", "order": 2}, {"name": "Sheila Kelley", "character": "Laura Peterson", "id": 68109, "credit_id": "53e333230e0a262b8c0036b0", "cast_id": 5, "profile_path": "/chbHBKXxpEKTKWhY6aazEAZGKRb.jpg", "order": 3}, {"name": "Ethan Embry", "character": "Higgins", "id": 58019, "credit_id": "53ea23470e0a26603500173e", "cast_id": 6, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 4}, {"name": "Joel David Moore", "character": "Craig", "id": 59231, "credit_id": "53f55fe10e0a267f89003b72", "cast_id": 7, "profile_path": "/y6AyGCsQHLoi4LegSS7VRtgRyJe.jpg", "order": 5}, {"name": "Leland Orser", "character": "Spencer Peterson", "id": 2221, "credit_id": "53f562060e0a267f77003adb", "cast_id": 8, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 6}, {"name": "Brendan Meyer", "character": "Luke Peterson", "id": 558927, "credit_id": "53f5622d0e0a267f7a003c6d", "cast_id": 9, "profile_path": "/ykafA2ATSL1Cyae5KTOuPxRZLIF.jpg", "order": 7}, {"name": "Tabatha Shaun", "character": "Kristen", "id": 1292930, "credit_id": "53f562670e0a267f7d003c27", "cast_id": 10, "profile_path": "/x4i2dpB7VQktXK826YhmsOAuphI.jpg", "order": 8}, {"name": "Lance Reddick", "character": "Carver", "id": 129101, "credit_id": "53f5628f0e0a267f8d003c84", "cast_id": 11, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 9}, {"name": "AJ Bowen", "character": "Austin", "id": 74133, "credit_id": "53f563000e0a267f89003bf7", "cast_id": 13, "profile_path": "/zsWWKKt0p69mRRgjXGysMpTSQQn.jpg", "order": 11}], "directors": [{"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe4ebfc3a36847f82a5895", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}], "vote_average": 6.6, "runtime": 99}, "45243": {"poster_path": "/hFUsdnUoQDQ02EVlKTyhDTdehEr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 254455986, "overview": "The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.", "video": false, "id": 45243, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Hangover Part II", "tagline": "The Wolfpack Is Back", "vote_count": 1768, "homepage": "http://hangoverpart2.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/uEtsf26a9RsRDy85MOIv1xAj44x.jpg", "poster_path": "/aMmNLuyXvdBih1R5RRHtdtNaS6N.jpg", "id": 86119, "name": "The Hangover Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt1411697", "adult": false, "backdrop_path": "/hnu7rEmUXyrRBqlRTd2CzDBUap4.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Legendary Pictures", "id": 923}, {"name": "Green Hat Films", "id": 3527}, {"name": "Living Films", "id": 2877}], "release_date": "2011-05-25", "popularity": 0.888289518099129, "original_title": "The Hangover Part II", "budget": 80000000, "cast": [{"name": "Bradley Cooper", "character": "Phil Wenneck", "id": 51329, "credit_id": "52fe46b8c3a36847f810e649", "cast_id": 7, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 0}, {"name": "Ed Helms", "character": "Stu Price", "id": 27105, "credit_id": "52fe46b8c3a36847f810e655", "cast_id": 13, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Zach Galifianakis", "character": "Alan Garner", "id": 58225, "credit_id": "52fe46b8c3a36847f810e64d", "cast_id": 8, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Doug Billings", "id": 21180, "credit_id": "52fe46b8c3a36847f810e651", "cast_id": 12, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Ken Jeong", "character": "Mr. Chow", "id": 83586, "credit_id": "52fe46b8c3a36847f810e659", "cast_id": 14, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 4}, {"name": "Paul Giamatti", "character": "Kingsley", "id": 13242, "credit_id": "52fe46b8c3a36847f810e66b", "cast_id": 20, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 5}, {"name": "Mike Tyson", "character": "Himself", "id": 80757, "credit_id": "52fe46b8c3a36847f810e65d", "cast_id": 15, "profile_path": "/dENp2l4nk5wv6F0AT1iQ3pf4Os1.jpg", "order": 6}, {"name": "Jeffrey Tambor", "character": "Sid Garner", "id": 4175, "credit_id": "52fe46b8c3a36847f810e66f", "cast_id": 21, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 7}, {"name": "Mason Lee", "character": "Teddy", "id": 543138, "credit_id": "52fe46b8c3a36847f810e673", "cast_id": 22, "profile_path": "/urYsvKa9JnJd79Evg4rDwfcRsTP.jpg", "order": 8}, {"name": "Jamie Chung", "character": "Lauren", "id": 78324, "credit_id": "52fe46b8c3a36847f810e667", "cast_id": 19, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 9}, {"name": "Sasha Barrese", "character": "Tracy", "id": 83585, "credit_id": "52fe46b8c3a36847f810e677", "cast_id": 23, "profile_path": "/6b7k2SuP9Ti0jiwmPaUsg6yHAn6.jpg", "order": 10}, {"name": "Gillian Vigman", "character": "Stephanie", "id": 61182, "credit_id": "52fe46b8c3a36847f810e67b", "cast_id": 24, "profile_path": "/2uwR6JalWrZWZq3NhL7CdDlDKhL.jpg", "order": 11}, {"name": "Aroon Seeboonruang", "character": "Monk", "id": 543139, "credit_id": "52fe46b8c3a36847f810e67f", "cast_id": 25, "profile_path": "/w3akFzrdKk8irpmrLXPaQnnuwJC.jpg", "order": 12}, {"name": "Nirut Sirichanya", "character": "Fohn", "id": 116421, "credit_id": "52fe46b8c3a36847f810e683", "cast_id": 26, "profile_path": "/dt8spgt9T7zBviLs50jIpsCFQTt.jpg", "order": 13}, {"name": "Yasmin Lee", "character": "Kimmy", "id": 543140, "credit_id": "52fe46b8c3a36847f810e687", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Nick Cassavetes", "character": "Tattoo Joe", "id": 11151, "credit_id": "52fe46b8c3a36847f810e68b", "cast_id": 28, "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "order": 15}, {"name": "Sondra Currie", "character": "Linda Garner", "id": 153621, "credit_id": "52fe46b8c3a36847f810e68f", "cast_id": 29, "profile_path": "/an6mZEO5SMAsOkgEOBg7jSN1jmu.jpg", "order": 16}, {"name": "Bryan Callen", "character": "Samir", "id": 78320, "credit_id": "52fe46b8c3a36847f810e693", "cast_id": 30, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 17}, {"name": "Brody Stevens", "character": "Kingsley Guy", "id": 142373, "credit_id": "52fe46b8c3a36847f810e697", "cast_id": 31, "profile_path": "/dzypgW3rNwGImzyKeOlZg8Olhwi.jpg", "order": 18}, {"name": "Michael Berry Jr.", "character": "Vladi", "id": 1716, "credit_id": "52fe46b8c3a36847f810e69b", "cast_id": 32, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 19}, {"name": "Andrew Howard", "character": "Nikolai", "id": 67206, "credit_id": "52fe46b8c3a36847f810e69f", "cast_id": 33, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 20}, {"name": "Penpak Sirikul", "character": "Joi", "id": 1256326, "credit_id": "52fe46b8c3a36847f810e6a9", "cast_id": 35, "profile_path": "/65JGirpmRxGcT5E1yial3ewBGyt.jpg", "order": 21}, {"name": "Crystal the Monkey", "character": "Drug Dealing Monkey", "id": 1428580, "credit_id": "550a87c39251414699000dbe", "cast_id": 36, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 22}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe46b8c3a36847f810e63f", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 5.9, "runtime": 102}, "12477": {"poster_path": "/bwVhmPpydv8P7mWfrmL3XVw0MV5.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.", "video": false, "id": 12477, "genres": [{"id": 16, "name": "Animation"}], "title": "Grave of the Fireflies", "tagline": "", "vote_count": 192, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0095327", "adult": false, "backdrop_path": "/fCUIuG7y4YKC3hofZ8wsj7zhCpR.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Shinchosha Company", "id": 12521}], "release_date": "1988-04-16", "popularity": 0.00135069015306753, "original_title": "Hotaru no haka", "budget": 0, "cast": [{"name": "Tsutomu Tatsumi", "character": "Seita (voice)", "id": 72413, "credit_id": "52fe44e89251416c750452b1", "cast_id": 1, "profile_path": null, "order": 0}, {"name": "Ayano Shiraishi", "character": "Setsuko (voice)", "id": 72414, "credit_id": "52fe44e89251416c750452b5", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Yoshiko Shinohara", "character": "Mother (voice)", "id": 72415, "credit_id": "52fe44e89251416c750452b9", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Akemi Yamaguchi", "character": "Aunt (voice)", "id": 72416, "credit_id": "52fe44e89251416c750452bd", "cast_id": 4, "profile_path": null, "order": 3}], "directors": [{"name": "Isao Takahata", "department": "Directing", "job": "Director", "credit_id": "52fe44e89251416c750452c3", "profile_path": "/okibTp5aDbYfATefDQjxU5Owsoz.jpg", "id": 628}], "vote_average": 7.9, "runtime": 89}, "8326": {"poster_path": "/1GjM6h9s3Uvsh9gHWuRI02znCgj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\u2018Holes\u2019 is a 2003 film based on the novel of the same title by Louis Sachar. The story is based on a wrongfully convicted boy who is sent to a brutal desert detention camp where he joins the job of digging holes for some mysterious reason.The film was produced by Walden Media and released by Walt Disney Pictures. The movie made US$ 71 million at the box office against a $20 million budget, making the film a moderate financial success. The film garnered much critical praise, receiving a 77% Certified Fresh rating on Rotten Tomatoes. The closing credits of the film feature the music of the director's brother, musician Richard \"Richie\" Peter Davis co-founder of the Chicago Catz cover band.", "video": false, "id": 8326, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Holes", "tagline": "Some secrets are too big to keep hidden.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0311289", "adult": false, "backdrop_path": "/ltQHMvXdKvSLrdLfJQo0zbUJB1h.jpg", "production_companies": [{"name": "Chicago Pacific Entertainment", "id": 2377}], "release_date": "2003-04-18", "popularity": 0.466856074186152, "original_title": "Holes", "budget": 0, "cast": [{"name": "Sigourney Weaver", "character": "Warden Walker", "id": 10205, "credit_id": "52fe449ec3a36847f80a0855", "cast_id": 2, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Jon Voight", "character": "Marion Sevillo", "id": 10127, "credit_id": "52fe449ec3a36847f80a0859", "cast_id": 3, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Tim Blake Nelson", "character": "Dr. Pendanski", "id": 1462, "credit_id": "52fe449ec3a36847f80a085d", "cast_id": 4, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 2}, {"name": "Patricia Arquette", "character": "Miss Kathryn Barlow", "id": 4687, "credit_id": "52fe449ec3a36847f80a0861", "cast_id": 5, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 3}, {"name": "Shia LaBeouf", "character": "Stanley Yelnats/Caveman", "id": 10959, "credit_id": "52fe449ec3a36847f80a0865", "cast_id": 6, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 4}, {"name": "Khleo Thomas", "character": "Hector Zeroni", "id": 54495, "credit_id": "52fe449ec3a36847f80a0869", "cast_id": 7, "profile_path": "/3SXGiCUQfrGNPJABrTaDuzo1Ibe.jpg", "order": 5}, {"name": "Jake M. Smith", "character": "Squid", "id": 54496, "credit_id": "52fe449ec3a36847f80a086d", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Byron Cotton", "character": "Armpit", "id": 54497, "credit_id": "52fe449ec3a36847f80a0871", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Brenden Richard Jefferson", "character": "X-Ray", "id": 54498, "credit_id": "52fe449fc3a36847f80a0875", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Eartha Kitt", "character": "Madame Zeroni", "id": 70243, "credit_id": "52fe449fc3a36847f80a08af", "cast_id": 20, "profile_path": "/m3Ozxzlnl474Hjpe6OYkRNGmKRm.jpg", "order": 9}, {"name": "Siobhan Fallon", "character": "Stanley's Mother", "id": 6751, "credit_id": "52fe449fc3a36847f80a08b3", "cast_id": 21, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 10}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe449ec3a36847f80a0851", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.2, "runtime": 117}, "37056": {"poster_path": "/kUBSfYpsE1RLdl2WZL2YMJfNOEm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An American girl on vacation in Italy finds an unanswered \"letter to Juliet\" -- one of thousands of missives left at the fictional lover's Verona courtyard, which are typically answered by a the \"secretaries of Juliet\" -- and she goes on a quest to find the lovers referenced in the letter.", "video": false, "id": 37056, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Letters to Juliet", "tagline": "What if you had a second chance to find true love?", "vote_count": 151, "homepage": "http://www.letterstojuliet-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0892318", "adult": false, "backdrop_path": "/mwI5fTor198yK4w7LDOfuPssxF2.jpg", "production_companies": [{"name": "Applehead Pictures", "id": 28048}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2010-05-14", "popularity": 0.4177640742604, "original_title": "Letters to Juliet", "budget": 30000000, "cast": [{"name": "Amanda Seyfried", "character": "Sophie", "id": 71070, "credit_id": "52fe46259251416c9104ac5f", "cast_id": 2, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Gael Garc\u00eda Bernal", "character": "Victor", "id": 258, "credit_id": "52fe46259251416c9104ac63", "cast_id": 3, "profile_path": "/o4sdHKTBbF8GpooIwp5bvliubyY.jpg", "order": 1}, {"name": "Vanessa Redgrave", "character": "Claire", "id": 13333, "credit_id": "52fe46259251416c9104ac89", "cast_id": 11, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 2}, {"name": "Christopher Egan", "character": "Charlie", "id": 1312315, "credit_id": "538f2a76c3a3682862000b61", "cast_id": 37, "profile_path": "/bheD2SRyi1UtAC6VXBj2K9fNZ0C.jpg", "order": 3}, {"name": "Marcia DeBonis", "character": "Lorraine", "id": 116691, "credit_id": "52fe46259251416c9104ac5b", "cast_id": 1, "profile_path": "/wHHZxRHGCjw1L5P6RCcFYeCZ5To.jpg", "order": 4}, {"name": "Giordano Formenti", "character": "Viticoltore", "id": 116692, "credit_id": "52fe46259251416c9104ac67", "cast_id": 4, "profile_path": "/6olwSMQPkit6ymhDu6NXqUgO807.jpg", "order": 5}, {"name": "Luisa Ranieri", "character": "Isabella", "id": 119172, "credit_id": "52fe46259251416c9104ac7d", "cast_id": 8, "profile_path": "/5FTQvUZMKaWQeK1kAWA0AaFYl50.jpg", "order": 6}, {"name": "Marina Massironi", "character": "Francesca", "id": 7543, "credit_id": "52fe46259251416c9104ac81", "cast_id": 9, "profile_path": "/xQclfu1AOrRptZcWAnnwdCHCfap.jpg", "order": 7}, {"name": "Milena Vukotic", "character": "Maria", "id": 44104, "credit_id": "52fe46259251416c9104ac85", "cast_id": 10, "profile_path": "/t3on2M69KvTLdWYCKALmCEK3xzL.jpg", "order": 8}, {"name": "Remo Remotti", "character": "Farm House Lorenzo", "id": 76344, "credit_id": "52fe46259251416c9104ac8d", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Fabio Testi", "character": "Count Lorenzo", "id": 21181, "credit_id": "52fe46259251416c9104ac91", "cast_id": 13, "profile_path": "/qqE1Vh8guRCoIGkfNRuE0mXx0vL.jpg", "order": 10}, {"name": "Franco Nero", "character": "Lorenzo", "id": 22383, "credit_id": "52fe46269251416c9104ad17", "cast_id": 36, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 11}, {"name": "Oliver Platt", "character": "New Yorker Magazine Editor (Uncredited)", "id": 17485, "credit_id": "52fe46259251416c9104ac95", "cast_id": 14, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 12}], "directors": [{"name": "Gary Winick", "department": "Directing", "job": "Director", "credit_id": "52fe46259251416c9104ac6d", "profile_path": "/oI07oaBmTlfvanYW3z6FcUz3Wau.jpg", "id": 17046}], "vote_average": 6.4, "runtime": 105}, "11638": {"poster_path": "/edxlUrSaeVYkG1VfQlceXcWeRdR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68915888, "overview": "The fianc\u00e9 of an African-American woman who's met with skepticism and suspicion from her father. Tension flares -- along with comedy -- when she takes him home for the all-important introduction, and as the wedding approaches, Dad must come to terms with his future son-in-law.", "video": false, "id": 11638, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Guess Who", "tagline": "His house. His rules. Some in-laws were made to be broken.", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0372237", "adult": false, "backdrop_path": "/78ccwmm9r0PhiPY50GQGzHUY4jW.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Regency Enterprises", "id": 508}, {"name": "3 Arts Entertainment", "id": 787}, {"name": "Tall Trees Productions", "id": 10239}], "release_date": "2005-03-25", "popularity": 0.465920839507328, "original_title": "Guess Who", "budget": 35000000, "cast": [{"name": "Bernie Mac", "character": "Percy Jones", "id": 1897, "credit_id": "52fe446e9251416c7503471b", "cast_id": 1, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Simon Green", "id": 18976, "credit_id": "52fe446e9251416c7503471f", "cast_id": 2, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Zoe Saldana", "character": "Theresa Jones", "id": 8691, "credit_id": "52fe446e9251416c75034723", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 2}, {"name": "Judith Scott", "character": "Marilyn Jones", "id": 44185, "credit_id": "52fe446e9251416c75034727", "cast_id": 4, "profile_path": "/8PXHC5SMNyUuNNXgDc6m9yJuQcp.jpg", "order": 3}, {"name": "Hal Williams", "character": "Howard Jones", "id": 70775, "credit_id": "52fe446e9251416c7503472b", "cast_id": 5, "profile_path": "/9mDTiY6FMFkoS2YmW66mjyCZe63.jpg", "order": 4}, {"name": "Kellee Stewart", "character": "Keisha Jones", "id": 70776, "credit_id": "52fe446e9251416c7503472f", "cast_id": 6, "profile_path": "/fJuiPcBefXeIYxYf363JBLdJryH.jpg", "order": 5}], "directors": [{"name": "Kevin Rodney Sullivan", "department": "Directing", "job": "Director", "credit_id": "52fe446e9251416c75034735", "profile_path": "/hRlaIKMsnAqQ0tAppg8fszF1TMg.jpg", "id": 70777}], "vote_average": 5.5, "runtime": 105}, "9963": {"poster_path": "/7po8AGGFNcyKmMkRg1afHwZQYP4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84146832, "overview": "Depressed housewife learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the next day after to a world in which he is still dead.", "video": false, "id": 9963, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "Premonition", "tagline": "Reality is only a nightmare away", "vote_count": 84, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477071", "adult": false, "backdrop_path": "/lJ1mIyVtrko6Zqr8yRwjrLtV5nt.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Hyde Park Films", "id": 1172}, {"name": "Offspring Entertainment", "id": 2378}], "release_date": "2007-03-15", "popularity": 0.692607253962658, "original_title": "Premonition", "budget": 20000000, "cast": [{"name": "Sandra Bullock", "character": "Linda Hanson", "id": 18277, "credit_id": "52fe4551c3a36847f80c79e3", "cast_id": 22, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Julian McMahon", "character": "Jim Hanson", "id": 20402, "credit_id": "52fe4551c3a36847f80c79e7", "cast_id": 23, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 1}, {"name": "Courtney Taylor Burness", "character": "Bridgette Hanson", "id": 58412, "credit_id": "52fe4551c3a36847f80c79eb", "cast_id": 24, "profile_path": "/iFXnh2zmqX1nKv9YjZleXnA0MdZ.jpg", "order": 2}, {"name": "Nia Long", "character": "Annie", "id": 9781, "credit_id": "52fe4551c3a36847f80c79ef", "cast_id": 25, "profile_path": "/q01J3WgNd96GR7CcSxx56N8qwSZ.jpg", "order": 3}, {"name": "Shyann McClure", "character": "Megan Hanson", "id": 61098, "credit_id": "52fe4551c3a36847f80c79f9", "cast_id": 27, "profile_path": "/jbl9tuufH0Uchkntd8nhhOBx8ko.jpg", "order": 4}, {"name": "Kate Nelligan", "character": "Joanne", "id": 18794, "credit_id": "52fe4551c3a36847f80c79fd", "cast_id": 28, "profile_path": "/qesy9idqrmSxzEhdCo0P7Y6HWJO.jpg", "order": 5}, {"name": "Marc Macaulay", "character": "Sheriff Reilly", "id": 6908, "credit_id": "52fe4551c3a36847f80c7a01", "cast_id": 29, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 6}, {"name": "Ritchie Montgomery", "character": "Funeral Attendant", "id": 52885, "credit_id": "52fe4552c3a36847f80c7a05", "cast_id": 30, "profile_path": "/znNRxqrYkOskK3jlm3ftHyAzJDg.jpg", "order": 7}, {"name": "Irene Ziegler", "character": "Mrs. Quinn", "id": 61099, "credit_id": "52fe4552c3a36847f80c7a09", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Phillip DeVona", "character": "Funeral Attendant", "id": 61100, "credit_id": "52fe4552c3a36847f80c7a0d", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Amber Valletta", "character": "Claire", "id": 38425, "credit_id": "52fe4552c3a36847f80c7a11", "cast_id": 33, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 10}, {"name": "Peter Stormare", "character": "Dr. Roth", "id": 53, "credit_id": "52fe4552c3a36847f80c7a15", "cast_id": 34, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 11}, {"name": "Jason Douglas", "character": "Emergency Room Doctor", "id": 20496, "credit_id": "52fe4552c3a36847f80c7a19", "cast_id": 36, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 12}, {"name": "Laurel Whitsett", "character": "School Aide", "id": 61102, "credit_id": "52fe4552c3a36847f80c7a1d", "cast_id": 38, "profile_path": null, "order": 14}, {"name": "Kristin Ketterer", "character": "Receptionist", "id": 61103, "credit_id": "52fe4552c3a36847f80c7a21", "cast_id": 39, "profile_path": null, "order": 15}, {"name": "Floriana Tullio", "character": "Nurse", "id": 61105, "credit_id": "52fe4552c3a36847f80c7a25", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Mark Famiglietti", "character": "Doug Caruthers", "id": 7220, "credit_id": "52fe4552c3a36847f80c7a29", "cast_id": 41, "profile_path": "/7Ypq73G7xZzVHLzN8nDi76bEBSP.jpg", "order": 17}, {"name": "David A. Shaffer", "character": "Doctor's Assistant", "id": 61106, "credit_id": "52fe4552c3a36847f80c7a2d", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Marcus Lyle Brown", "character": "Bob", "id": 16460, "credit_id": "52fe4552c3a36847f80c7a31", "cast_id": 43, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 19}, {"name": "Matt Moore", "character": "Young Priest", "id": 180355, "credit_id": "52fe4552c3a36847f80c7a3b", "cast_id": 45, "profile_path": null, "order": 20}], "directors": [{"name": "Mennan Yapo", "department": "Directing", "job": "Director", "credit_id": "52fe4551c3a36847f80c79a3", "profile_path": null, "id": 61087}], "vote_average": 5.7, "runtime": 110}, "28874": {"poster_path": "/hoVm9Rndcs7FbVqr6s22kEyUMJ8.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 18353560, "overview": "Kenji is your typical teenage misfit. He\u2019s good at math, bad with girls, and spends most of his time out hanging out in the all-powerful online community known as OZ. His second life is the only life he has \u2013 until the girl of his dreams, Natsuki, hijacks him for a starring role as a fake fianc\u00e9 at her family reunion. Things only get stranger from there. A late-night email containing a cryptic mathematic riddle leads to the unleashing of a rogue AI intent on using the virtual world of OZ to destroy the real world. As Armageddon looms on the horizon, Kenji and his new \u201cfamily\u201d set aside their differences and band together to save the worlds they inhabit in this \"near-perfect blend of social satire and science fiction.\"", "video": false, "id": 28874, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Summer Wars", "tagline": "", "vote_count": 93, "homepage": "http://s-wars.jp/", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1474276", "adult": false, "backdrop_path": "/7rT6AYzflkQtGZKwWL8AXouDj5G.jpg", "production_companies": [{"name": "Warner Bro. Japan", "id": 3627}, {"name": "Madhouse", "id": 4288}], "release_date": "2009-08-01", "popularity": 0.573429661198605, "original_title": "\u30b5\u30de\u30fc\u30a6\u30a9\u30fc\u30ba", "budget": 0, "cast": [{"name": "Mitsuki Tanimura", "character": "Kazuma Ikezawa", "id": 118577, "credit_id": "52fe45b8c3a368484e06b279", "cast_id": 1, "profile_path": "/44o4Coq0GficqAd4tsul39T903P.jpg", "order": 0}, {"name": "Nanami Sakuraba", "character": "Natsuki Shinohara", "id": 118579, "credit_id": "52fe45b8c3a368484e06b27d", "cast_id": 3, "profile_path": "/43BviFRE43PPqFddOxp06W7QGw4.jpg", "order": 1}, {"name": "Sumiko Fuji", "character": "Sakae Jinnouchi", "id": 142678, "credit_id": "52fe45b8c3a368484e06b293", "cast_id": 7, "profile_path": "/v1mAiNDiBk3YOgrlyUGnE2OYs2h.jpg", "order": 2}, {"name": "Ayumu Sait\u00f4", "character": "Wabisuke Jinnouchi", "id": 135030, "credit_id": "52fe45b8c3a368484e06b297", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Riisa Naka", "character": "Y\u00fbmi Jin'n\u00f4chi", "id": 122468, "credit_id": "52fe45b9c3a368484e06b2d1", "cast_id": 18, "profile_path": "/xG0KT9CkOp3ozWGopeuv5Bd0CqP.jpg", "order": 4}, {"name": "Ryunosuke Kamiki", "character": "Kenji Koiso", "id": 225730, "credit_id": "52fe45b9c3a368484e06b2d5", "cast_id": 19, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 5}], "directors": [{"name": "Mamoru Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe45b8c3a368484e06b283", "profile_path": "/oh1GS6x8cdGkyL4QPKmpMSaD6Wu.jpg", "id": 81718}], "vote_average": 7.4, "runtime": 114}, "45269": {"poster_path": "/v8M5Sytbut7vBXyZ1HDy8lUVVcB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 414211549, "overview": "The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.", "video": false, "id": 45269, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The King's Speech", "tagline": "Find your voice.", "vote_count": 934, "homepage": "http://www.kingsspeech.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1504320", "adult": false, "backdrop_path": "/hAQKDTVKk04LWn82OYWLBPpsaVa.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "UK Film Council", "id": 2452}, {"name": "Momentum Pictures", "id": 19578}, {"name": "Aegis Film Fund", "id": 7309}, {"name": "Molinare Investment", "id": 19579}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "See-Saw Films", "id": 7217}, {"name": "Bedlam Productions", "id": 5005}], "release_date": "2010-09-06", "popularity": 1.5025423675316, "original_title": "The King's Speech", "budget": 15000000, "cast": [{"name": "Colin Firth", "character": "King George VI", "id": 5472, "credit_id": "53015230c3a3680a1114e905", "cast_id": 32, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Geoffrey Rush", "character": "Lionel Logue", "id": 118, "credit_id": "5301525ec3a3680a21163663", "cast_id": 33, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 2}, {"name": "Helena Bonham Carter", "character": "Queen Elizabeth", "id": 1283, "credit_id": "5301529fc3a3680a11151e3a", "cast_id": 34, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 3}, {"name": "Guy Pearce", "character": "King Edward VIII", "id": 529, "credit_id": "530152d3c3a3680a3f13e964", "cast_id": 36, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 5}, {"name": "Timothy Spall", "character": "Winston Churchill", "id": 9191, "credit_id": "53015318c3a3680a0312ab2a", "cast_id": 37, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 6}, {"name": "Michael Gambon", "character": "King George V", "id": 5658, "credit_id": "5301534ec3a3680a19145a46", "cast_id": 38, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 7}, {"name": "Jennifer Ehle", "character": "Myrtle Logue", "id": 49971, "credit_id": "5301538dc3a36809fd139884", "cast_id": 39, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 8}, {"name": "Derek Jacobi", "character": "Archbishop Cosmo Lang", "id": 937, "credit_id": "530153b1c3a3680a091401bf", "cast_id": 40, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 9}, {"name": "Freya Wilson", "character": "Princess Elizabeth", "id": 548169, "credit_id": "5301546f925141219e13684a", "cast_id": 41, "profile_path": null, "order": 10}, {"name": "Ramona Marquez", "character": "Princess Margaret", "id": 224878, "credit_id": "530154a2925141219814d9ea", "cast_id": 42, "profile_path": "/oLT0EWlrSVxkH6VMmGEnWUCC63M.jpg", "order": 11}, {"name": "Richard Dixon", "character": "Private Secretary", "id": 1222025, "credit_id": "536216910e0a2649a900136c", "cast_id": 47, "profile_path": null, "order": 13}, {"name": "Robert Portal", "character": "Equerry", "id": 121606, "credit_id": "53fb5d68c3a368734f0049ef", "cast_id": 48, "profile_path": null, "order": 14}, {"name": "Eve Best", "character": "Wallis Simpson", "id": 201665, "credit_id": "53fb5db4c3a3687352004ca3", "cast_id": 49, "profile_path": "/mDuK16euuZLNzgpM1bDAKZeMvpZ.jpg", "order": 15}, {"name": "Paul Trussell", "character": "Chauffeur", "id": 1231626, "credit_id": "53fb5de5c3a368735b004c1b", "cast_id": 50, "profile_path": null, "order": 16}, {"name": "Adrian Scarborough", "character": "BBC Radio Announcer", "id": 40311, "credit_id": "53fb5e13c3a3687358004c48", "cast_id": 51, "profile_path": null, "order": 17}, {"name": "Andrew Havill", "character": "Robert Wood", "id": 176191, "credit_id": "53fb5e45c3a368735e004e5f", "cast_id": 52, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 18}, {"name": "Charles Armstrong", "character": "BBC Technician", "id": 1356913, "credit_id": "53fb5f5f0e0a267a6c008090", "cast_id": 54, "profile_path": null, "order": 20}, {"name": "Roger Hammond", "character": "Dr. Blandine Bentham", "id": 27660, "credit_id": "53fb602ac3a3687358004c6c", "cast_id": 56, "profile_path": null, "order": 22}, {"name": "Calum Gittins", "character": "Laurie Logue", "id": 1356914, "credit_id": "53fb605ac3a3687361004c25", "cast_id": 57, "profile_path": null, "order": 23}, {"name": "Dominic Applewhite", "character": "Valentine Logue", "id": 515313, "credit_id": "53fb60f7c3a3687358004c8a", "cast_id": 58, "profile_path": null, "order": 24}, {"name": "Ben Wimsett", "character": "Anthony Logue", "id": 1356916, "credit_id": "53fb610cc3a368734c004b4a", "cast_id": 59, "profile_path": null, "order": 25}, {"name": "David Bamber", "character": "Theatre Director", "id": 26657, "credit_id": "53fb61aac3a3687358004c90", "cast_id": 60, "profile_path": "/chjj2qhiN49sOy2PYu32DmnX6k0.jpg", "order": 26}, {"name": "Jake Hathaway", "character": "Willie", "id": 1335168, "credit_id": "53fb61ccc3a368735e004ea7", "cast_id": 61, "profile_path": null, "order": 27}, {"name": "Michael Gambon", "character": "King George V", "id": 5658, "credit_id": "53fb61f3c3a3687358004c94", "cast_id": 62, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 28}, {"name": "Guy Pearce", "character": "King Edward VIII", "id": 529, "credit_id": "53fb6212c3a3687361004c40", "cast_id": 63, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 29}, {"name": "Patrick Ryecart", "character": "Lord Wigram", "id": 1214688, "credit_id": "53fb635dc3a368734f004a4e", "cast_id": 64, "profile_path": null, "order": 30}, {"name": "Teresa Gallagher", "character": "Nurse", "id": 1230799, "credit_id": "53fb67d60e0a267a720082ae", "cast_id": 65, "profile_path": null, "order": 31}, {"name": "Simon Chandler", "character": "Lord Dawson", "id": 16273, "credit_id": "53fb68bd0e0a267a7500829c", "cast_id": 66, "profile_path": "/j30wLavbX35RxxtjvMvCNK8Exsw.jpg", "order": 32}, {"name": "Claire Bloom", "character": "Queen Mary", "id": 29545, "credit_id": "53fb69050e0a267a7b007e85", "cast_id": 67, "profile_path": "/4x0Cfh1g8apqOPio8AJx9oUV9mK.jpg", "order": 33}, {"name": "Orlando Wells", "character": "Duke of Kent", "id": 224283, "credit_id": "53fb6ae7c3a368735e005068", "cast_id": 68, "profile_path": "/ncDQB7p0ou2utLS2Fota3tMs6jK.jpg", "order": 34}, {"name": "Tim Downie", "character": "Duke of Gloucester", "id": 1010912, "credit_id": "53fb6b0ec3a3687361004e11", "cast_id": 69, "profile_path": null, "order": 35}, {"name": "Dick Ward", "character": "Butler", "id": 986101, "credit_id": "53fb6b2ec3a368734c004d18", "cast_id": 70, "profile_path": null, "order": 36}, {"name": "John Albasiny", "character": "Footman", "id": 132988, "credit_id": "53fb6b73c3a3687352004eb5", "cast_id": 71, "profile_path": null, "order": 37}, {"name": "Timothy Spall", "character": "Winston Churchill", "id": 9191, "credit_id": "53fb6ba6c3a3687358004eb1", "cast_id": 72, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 38}, {"name": "Danny Emes", "character": "Boy in Regent's Park", "id": 1356917, "credit_id": "53fb6bc5c3a368734f004c2a", "cast_id": 73, "profile_path": null, "order": 39}, {"name": "Anthony Andrews", "character": "Stanley Baldwin", "id": 26659, "credit_id": "53fb6c5b0e0a267a750083c7", "cast_id": 74, "profile_path": "/N9iddf7diavQpIR0SX2zlDpe9n.jpg", "order": 40}, {"name": "John Warnaby", "character": "Steward", "id": 183180, "credit_id": "53fb6d4d0e0a267a6600821b", "cast_id": 75, "profile_path": null, "order": 41}, {"name": "Roger Parrott", "character": "Neville Chamberlain", "id": 1356918, "credit_id": "53fb6d680e0a267a78008079", "cast_id": 76, "profile_path": null, "order": 42}], "directors": [{"name": "Tom Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe46b9c3a36847f810ebeb", "profile_path": "/ddndxAviYVozIwOIByXAJvHWK7m.jpg", "id": 70500}], "vote_average": 7.2, "runtime": 118}, "37094": {"poster_path": "/jBHJWSUvvOIZkXG067vwVRWvohB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40903593, "overview": "An unemployed defense worker frustrated with the various flaws he sees in society, begins to psychotically and violently lash out against them.", "video": false, "id": 37094, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Falling Down", "tagline": "A Tale Of Urban Reality", "vote_count": 197, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}], "imdb_id": "tt0106856", "adult": false, "backdrop_path": "/cS45swrlrTJijH1RblBLe8LlW2p.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1993-02-26", "popularity": 1.04467543727607, "original_title": "Falling Down", "budget": 25000000, "cast": [{"name": "Michael Douglas", "character": "William 'D-Fens' Foster", "id": 3392, "credit_id": "52fe46299251416c9104b499", "cast_id": 3, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Detective Prendergast", "id": 3087, "credit_id": "52fe46299251416c9104b49d", "cast_id": 4, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Elizabeth 'Beth' Travino", "id": 10767, "credit_id": "52fe46299251416c9104b4a1", "cast_id": 5, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Tuesday Weld", "character": "Amanda Prendergast", "id": 4514, "credit_id": "52fe46299251416c9104b4a5", "cast_id": 6, "profile_path": "/wLVlljfTvppkfdQz9fNDizNpSuK.jpg", "order": 3}, {"name": "Rachel Ticotin", "character": "Sandra", "id": 10768, "credit_id": "53c43f7fc3a3684cf4009cc7", "cast_id": 9, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 4}, {"name": "Frederic Forrest", "character": "Nick, the Nazi Surplus Store Owner", "id": 8351, "credit_id": "53c43fa8c3a3684cf900a120", "cast_id": 10, "profile_path": "/fCHsWrGcgfREM7e9POq6FCFGvR9.jpg", "order": 5}, {"name": "Lois Smith", "character": "Mrs. Foster / William's Mother", "id": 2207, "credit_id": "5497280fc3a36831b800444a", "cast_id": 11, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 6}, {"name": "Joey Hope Singer", "character": "Adele Foster-Travino", "id": 1402302, "credit_id": "5497282ac3a3680fc6004a45", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ebbe Roe Smith", "character": "Guy on Freeway", "id": 116778, "credit_id": "549728729251417315001bb7", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Michael Paul Chan", "character": "Mr. Lee", "id": 17355, "credit_id": "5497289a9251417a81004598", "cast_id": 14, "profile_path": "/c9HqJlG7nuutKW5aYq8ODctCT1w.jpg", "order": 9}, {"name": "Raymond J. Barry", "character": "Captain Yardley", "id": 10361, "credit_id": "549728b49251417162001aa0", "cast_id": 15, "profile_path": "/k4WDNgYHOUgRaPQIsZUPUxl1lO6.jpg", "order": 10}, {"name": "D.W. Moffett", "character": "Detective Lydecker", "id": 87956, "credit_id": "549728ca9251416e1e0062b6", "cast_id": 16, "profile_path": "/fqktS2j0ZzieeU192scEcmGY5lq.jpg", "order": 11}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe46299251416c9104b4ab", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 7.0, "runtime": 113}, "4327": {"poster_path": "/eBzf9d09Vgq2HSVC4fIZm1QNQd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 264105545, "overview": "Aspects of this take on the 1970s hit TV series are similar to the original show :Angels Dylan, Natalie and Alex still work for Charlie and interface with Bosley. They still flip their hair, stop traffic with a smile and kick butt. The differences are the unsubtle humor, the martial arts training and the high-tech premise: This time, they're hot on the trail of stolen software.", "video": false, "id": 4327, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Charlie's Angels", "tagline": "Get Some Action", "vote_count": 312, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jfKqvbZqU3LcNcwj4N8Q1ZJ7fSv.jpg", "poster_path": "/jBKUntSuSUfxTXI8XWABpdWmWEt.jpg", "id": 86029, "name": "Charlie's Angels Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fi", "name": "suomi"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0160127", "adult": false, "backdrop_path": "/AfXk5IqMZuznjjvEkrQuzQ9A5U6.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2000-11-02", "popularity": 1.64153938121633, "original_title": "Charlie's Angels", "budget": 92000000, "cast": [{"name": "Cameron Diaz", "character": "Natalie Cook", "id": 6941, "credit_id": "52fe43bac3a36847f806b1e7", "cast_id": 1, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Lucy Liu", "character": "Alex Munday", "id": 140, "credit_id": "52fe43bac3a36847f806b1eb", "cast_id": 2, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Dylan Sanders", "id": 69597, "credit_id": "52fe43bac3a36847f806b1ef", "cast_id": 3, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "Bill Murray", "character": "John Bosley", "id": 1532, "credit_id": "52fe43bac3a36847f806b1f3", "cast_id": 4, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "John Forsythe", "character": "Charles Townsend", "id": 24367, "credit_id": "52fe43bac3a36847f806b1f7", "cast_id": 5, "profile_path": "/5sEnkUlmynZtmV9mzpn896GmtX.jpg", "order": 4}, {"name": "Sam Rockwell", "character": "Eric Knox", "id": 6807, "credit_id": "52fe43bac3a36847f806b1fb", "cast_id": 6, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 5}, {"name": "Kelly Lynch", "character": "Vivian Wood", "id": 6473, "credit_id": "52fe43bac3a36847f806b1ff", "cast_id": 7, "profile_path": "/20OsGbyUux00wkeL7BFfYnaXwlo.jpg", "order": 6}, {"name": "Tim Curry", "character": "Roger Corwin", "id": 13472, "credit_id": "52fe43bac3a36847f806b203", "cast_id": 8, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 7}, {"name": "Luke Wilson", "character": "Pete Komisky", "id": 36422, "credit_id": "52fe43bac3a36847f806b207", "cast_id": 9, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 8}, {"name": "Crispin Glover", "character": "Thin Man", "id": 1064, "credit_id": "52fe43bac3a36847f806b20b", "cast_id": 10, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 9}, {"name": "Matt LeBlanc", "character": "Jason Gibbons", "id": 14407, "credit_id": "52fe43bac3a36847f806b20f", "cast_id": 11, "profile_path": "/35sPf8IBVl54vdmc9Tyv17otMnk.jpg", "order": 10}, {"name": "Tom Green", "character": "Chad", "id": 36423, "credit_id": "52fe43bac3a36847f806b213", "cast_id": 12, "profile_path": "/bY7szfVBOedHUxkD3HHqa7MZ2ka.jpg", "order": 11}, {"name": "LL Cool J", "character": "Mr. Jones", "id": 36424, "credit_id": "52fe43bac3a36847f806b217", "cast_id": 13, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 12}, {"name": "Sean Whalen", "character": "Pasqual", "id": 9996, "credit_id": "52fe43bac3a36847f806b21b", "cast_id": 14, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 13}, {"name": "Melissa McCarthy", "character": "Doris", "id": 55536, "credit_id": "52fe43bbc3a36847f806b2a3", "cast_id": 37, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 14}, {"name": "Jerry Trimble", "character": "Thug", "id": 86602, "credit_id": "53739766c3a36815180015b1", "cast_id": 38, "profile_path": "/ez0PwSqQwd9WIGNybthklZZFNJ0.jpg", "order": 15}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe43bac3a36847f806b221", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 5.4, "runtime": 98}, "53487": {"poster_path": "/6588jxryRZ9HYvKC3XpKMPLBdrM.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 11790979, "overview": "A bored, retired rock star sets out to find his father's executioner, an ex-Nazi war criminal who is a refugee in the U.S.", "video": false, "id": 53487, "genres": [{"id": 18, "name": "Drama"}], "title": "This Must Be the Place", "tagline": "Never for money. Always for love.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt1440345", "adult": false, "backdrop_path": "/aYKNl2YYxgqZY49oEaEt0qNjWHy.jpg", "production_companies": [{"name": "Indigo Film", "id": 1533}, {"name": "Lucky Red", "id": 779}, {"name": "Medusa Film", "id": 6246}, {"name": "ARP S\u00e9lection", "id": 189}, {"name": "France 2 Cin\u00e9ma", "id": 15671}], "release_date": "2011-10-01", "popularity": 0.508905719877625, "original_title": "This Must Be the Place", "budget": 25000000, "cast": [{"name": "Sean Penn", "character": "Cheyenne", "id": 2228, "credit_id": "52fe4869c3a36847f8165dbf", "cast_id": 2, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Jane", "id": 3910, "credit_id": "52fe4869c3a36847f8165dc3", "cast_id": 3, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Judd Hirsch", "character": "Mordecai Midler", "id": 6167, "credit_id": "52fe4869c3a36847f8165dc7", "cast_id": 4, "profile_path": "/oQlgthLxgMEekLytNZudBuqrLqM.jpg", "order": 2}, {"name": "Eve Hewson", "character": "Mary", "id": 933271, "credit_id": "52fe4869c3a36847f8165dcb", "cast_id": 5, "profile_path": "/cDVb2oR75CCflAvEIyTNuEO4ceS.jpg", "order": 3}, {"name": "Kerry Condon", "character": "Rachel", "id": 62105, "credit_id": "52fe4869c3a36847f8165dcf", "cast_id": 6, "profile_path": "/i2wb0N7m1JkUJRcfBcVYmIpExAa.jpg", "order": 4}, {"name": "Harry Dean Stanton", "character": "Robert Plath", "id": 5048, "credit_id": "52fe4869c3a36847f8165dd3", "cast_id": 7, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 5}, {"name": "Joyce Van Patten", "character": "Dorothy Shore", "id": 14108, "credit_id": "52fe4869c3a36847f8165dd7", "cast_id": 8, "profile_path": "/wEUXn5Zgz88SZlTLZPrecfxGFOO.jpg", "order": 6}, {"name": "David Byrne", "character": "Himself", "id": 3078, "credit_id": "52fe4869c3a36847f8165ddb", "cast_id": 9, "profile_path": "/atdH8EDL6mnyBv9lNG2HsEGtjgU.jpg", "order": 7}, {"name": "Olwen Fou\u00e9r\u00e9", "character": "Mary's Mother", "id": 933272, "credit_id": "52fe4869c3a36847f8165ddf", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Shea Whigham", "character": "Ernie Ray", "id": 74242, "credit_id": "52fe4869c3a36847f8165de3", "cast_id": 11, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 9}], "directors": [{"name": "Paolo Sorrentino", "department": "Directing", "job": "Director", "credit_id": "52fe4869c3a36847f8165dbb", "profile_path": "/A4N12piSSJQ80WQnIbHKPXp3H4L.jpg", "id": 56194}], "vote_average": 6.4, "runtime": 118}, "180948": {"poster_path": "/8rh9jEiPmWDcLMPDA3DkUt8JSqG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "A parolee (Paul Walker) becomes the target of a massive police manhunt after inadvertently picking up a rental car with a female whistleblower tied up in the trunk. Now, as the police attempt to silence the woman before she can testify about the city's rampant corruption, the ex-con who just regained his freedom must defend her life, and clear his own name.", "video": false, "id": 180948, "genres": [{"id": 53, "name": "Thriller"}], "title": "Vehicle 19", "tagline": "Wrong place. Wrong time. Wrong car.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1911662", "adult": false, "backdrop_path": "/5Tpzz0jkRmVkx1M78xaf4XN1Y2D.jpg", "production_companies": [{"name": "Forefront Media Group", "id": 13696}, {"name": "The Safran Company", "id": 11565}, {"name": "Industrial Development Corporation of South Africa", "id": 564}, {"name": "K5 International", "id": 6715}, {"name": "Skyline Motion Picture Fund", "id": 23923}, {"name": "Efish Entertainment", "id": 21917}, {"name": "Picture Tree", "id": 23924}], "release_date": "2013-06-14", "popularity": 0.667417942038642, "original_title": "Vehicle 19", "budget": 0, "cast": [{"name": "Paul Walker", "character": "Michael Woods", "id": 8167, "credit_id": "52fe4c589251416c75117a5b", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Naima McLean", "character": "Rachel Shabangu", "id": 1163474, "credit_id": "52fe4c589251416c75117a5f", "cast_id": 4, "profile_path": "/xbDHC3XgAzTwnCCQgSWGSXI5mxC.jpg", "order": 1}, {"name": "Gys de Villiers", "character": "Detective Smith", "id": 231649, "credit_id": "52fe4c589251416c75117a63", "cast_id": 5, "profile_path": "/pXv5G2mGa8pUqWv56lADhJYKByo.jpg", "order": 2}, {"name": "Leyla Haidarian", "character": "Angelica Moore", "id": 1163480, "credit_id": "52fe4c589251416c75117a67", "cast_id": 6, "profile_path": "/u0JA8BBuFCim5OMk1X8RCITvOjg.jpg", "order": 3}, {"name": "Tshepo Maseko", "character": "Lieutenant", "id": 1187041, "credit_id": "52fe4c589251416c75117a6b", "cast_id": 7, "profile_path": "/w3RFiNLkIIqsSM1SPF6F4n8HGzt.jpg", "order": 4}, {"name": "Andrian Mazive", "character": "Journalist Benji", "id": 1187042, "credit_id": "52fe4c589251416c75117a6f", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Welile Nzuza", "character": "Mohawk", "id": 1185534, "credit_id": "52fe4c589251416c75117a73", "cast_id": 9, "profile_path": "/9XgN4WL9Cap5cK0znf7FROuOqvC.jpg", "order": 6}, {"name": "Mangaliso Ngema", "character": "Judge", "id": 1187043, "credit_id": "52fe4c589251416c75117a77", "cast_id": 10, "profile_path": "/dI0TUjMNiloHM3IguNJ5DBv9Pom.jpg", "order": 7}, {"name": "Ernest Kubayi", "character": "Crackhead", "id": 1187044, "credit_id": "52fe4c589251416c75117a7b", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Elize Van Niekerk", "character": "Car Rental Receptionist", "id": 1187045, "credit_id": "52fe4c589251416c75117a7f", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Sizo Motsoko", "character": "Car charger Kid 1", "id": 1187046, "credit_id": "52fe4c589251416c75117a83", "cast_id": 13, "profile_path": "/7YbxfPxzWCRNURCBxNG6p3DIIb8.jpg", "order": 10}, {"name": "Siviwe Mazibuko", "character": "Car charger Kid 2", "id": 1187047, "credit_id": "52fe4c589251416c75117a87", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Brandon Lindsay", "character": "Hostage Reporter", "id": 1187048, "credit_id": "52fe4c589251416c75117a8b", "cast_id": 15, "profile_path": "/uOrkFvL1LzVQWPdAltK3M8XXoU9.jpg", "order": 12}, {"name": "Paul Pieterse", "character": "Bicyclist", "id": 1187049, "credit_id": "52fe4c589251416c75117a8f", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Ben Tjibe", "character": "Muscles", "id": 1187050, "credit_id": "52fe4c589251416c75117a93", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Mukunda Michael Dewil", "department": "Directing", "job": "Director", "credit_id": "52fe4c589251416c75117a51", "profile_path": null, "id": 1163471}], "vote_average": 5.1, "runtime": 85}, "102651": {"poster_path": "/4FYu1AAu14tuBU0lns0hbKiHUcH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 758410378, "overview": "The untold story of Disney's most iconic villain from the 1959 classic 'Sleeping Beauty'. A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal \u2013 an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom - and to Maleficent's true happiness as well.", "video": false, "id": 102651, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Maleficent", "tagline": "Don't believe the fairy tale.", "vote_count": 1280, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1587310", "adult": false, "backdrop_path": "/9bd6IFBMwSOINrEW8VIBxaS4cd9.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Roth Films", "id": 16314}], "release_date": "2014-05-30", "popularity": 3.76706886409778, "original_title": "Maleficent", "budget": 180000000, "cast": [{"name": "Angelina Jolie", "character": "Maleficent", "id": 11701, "credit_id": "52fe4a0cc3a36847f81b5cb3", "cast_id": 7, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Elle Fanning", "character": "Princess Aurora", "id": 18050, "credit_id": "52fe4a0cc3a36847f81b5caf", "cast_id": 6, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 1}, {"name": "Juno Temple", "character": "Thistletwit", "id": 36594, "credit_id": "52fe4a0cc3a36847f81b5cc3", "cast_id": 11, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Stefan", "id": 82191, "credit_id": "52fe4a0cc3a36847f81b5cc7", "cast_id": 12, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Isobelle Molloy", "character": "Young Maleficent", "id": 1355733, "credit_id": "53f7bf4f0e0a267a72000014", "cast_id": 25, "profile_path": "/rJ3HvKn5ituVcbhk07qfYIDTU97.jpg", "order": 5}, {"name": "Miranda Richardson", "character": "Queen Ulla", "id": 8436, "credit_id": "52fe4a0cc3a36847f81b5ccf", "cast_id": 14, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 6}, {"name": "Brenton Thwaites", "character": "Young Prince", "id": 1017347, "credit_id": "52fe4a0cc3a36847f81b5cd3", "cast_id": 15, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 7}, {"name": "Imelda Staunton", "character": "Knotgrass", "id": 11356, "credit_id": "52fe4a0cc3a36847f81b5cd7", "cast_id": 16, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 8}, {"name": "Sam Riley", "character": "Diaval", "id": 32987, "credit_id": "52fe4a0cc3a36847f81b5cdb", "cast_id": 17, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 9}, {"name": "Peter Capaldi", "character": "King Kinloch", "id": 12982, "credit_id": "52fe4a0cc3a36847f81b5cdf", "cast_id": 18, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 10}, {"name": "Jamie Sives", "character": "Shepherd", "id": 1833, "credit_id": "52fe4a0cc3a36847f81b5ce3", "cast_id": 19, "profile_path": "/92BcXrr2W7gZri6xVlLhpLLaPsf.jpg", "order": 11}, {"name": "Lesley Manville", "character": "Flittle", "id": 72305, "credit_id": "52fe4a0cc3a36847f81b5ce7", "cast_id": 20, "profile_path": "/wyETH2tk6s15DXrQFZhx4KOwvNL.jpg", "order": 12}, {"name": "Toby Regbo", "character": "Young Stefan", "id": 116606, "credit_id": "52fe4a0cc3a36847f81b5ceb", "cast_id": 21, "profile_path": "/a8CuXhqdtjICxLNwm0yrydDo5Yy.jpg", "order": 13}, {"name": "Kenneth Cranham", "character": "King Henry", "id": 26258, "credit_id": "52fe4a0cc3a36847f81b5cef", "cast_id": 22, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 14}, {"name": "Hannah New", "character": "Princess Leila", "id": 1258225, "credit_id": "53b422de0e0a26598c00cd9f", "cast_id": 23, "profile_path": "/mjQMykRaYQHe7fbMOs7kgDm5YYi.jpg", "order": 15}, {"name": "Ella Purnell", "character": "Teen Maleficent", "id": 989325, "credit_id": "53b423300e0a26597d00c977", "cast_id": 24, "profile_path": "/3g0n8TEbQQpLT3ZEbSjlTO8lnK5.jpg", "order": 16}], "directors": [{"name": "Robert Stromberg", "department": "Directing", "job": "Director", "credit_id": "52fe4a0cc3a36847f81b5cb9", "profile_path": "/gqP1k0dJxRVj08xudosdROOn2UK.jpg", "id": 1032536}], "vote_average": 7.1, "runtime": 97}, "4348": {"poster_path": "/dAC0hkYmz5ZOCHURZCyj9isPMPd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 121147947, "overview": "Pride and Prejudice is a humorous story of love and life among English gentility during the Georgian era. Mr Bennet is an english gentleman living in Hartfordshire with his overbearing wife and 5 daughters. If Mr Bennet dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependant on the daughters making good marriages.", "video": false, "id": 4348, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Pride & Prejudice", "tagline": "A romance ahead of its time.", "vote_count": 250, "homepage": "http://www.prideandprejudicemovie.net/splash.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414387", "adult": false, "backdrop_path": "/77tdeFCkxL0EV3Hs6DnvQbXTu3P.jpg", "production_companies": [{"name": "Scion Films", "id": 7419}, {"name": "Focus Features", "id": 10146}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}], "release_date": "2005-09-16", "popularity": 1.17230950137082, "original_title": "Pride & Prejudice", "budget": 28000000, "cast": [{"name": "Keira Knightley", "character": "Elizabeth Bennet", "id": 116, "credit_id": "52fe43bbc3a36847f806b681", "cast_id": 38, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Matthew Macfadyen", "character": "Mr. Darcy", "id": 15576, "credit_id": "52fe43bbc3a36847f806b629", "cast_id": 2, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Jane Bennet", "id": 10882, "credit_id": "52fe43bbc3a36847f806b685", "cast_id": 41, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "Simon Woods", "character": "Mr. Bingley", "id": 36665, "credit_id": "52fe43bbc3a36847f806b689", "cast_id": 42, "profile_path": "/kU3NE79wuOPeIZ8hRKGUkDc203X.jpg", "order": 3}, {"name": "Donald Sutherland", "character": "Mr. Bennet", "id": 55636, "credit_id": "52fe43bbc3a36847f806b68d", "cast_id": 43, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 4}, {"name": "Brenda Blethyn", "character": "Mrs. Bennet", "id": 4154, "credit_id": "52fe43bbc3a36847f806b691", "cast_id": 44, "profile_path": "/wp0tIM7dGDmc9TOrm9fgL7JkzQQ.jpg", "order": 5}, {"name": "Jena Malone", "character": "Lydia Bennet", "id": 20089, "credit_id": "52fe43bbc3a36847f806b695", "cast_id": 45, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 6}, {"name": "Rupert Friend", "character": "Mr. Wickham", "id": 36669, "credit_id": "52fe43bbc3a36847f806b699", "cast_id": 46, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 7}, {"name": "Judi Dench", "character": "Lady Catherine de Bourg", "id": 5309, "credit_id": "52fe43bbc3a36847f806b69d", "cast_id": 47, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 8}, {"name": "Carey Mulligan", "character": "Kitty Bennet", "id": 36662, "credit_id": "52fe43bbc3a36847f806b6a1", "cast_id": 48, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 9}, {"name": "Talulah Riley", "character": "Mary Bennet", "id": 66441, "credit_id": "52fe43bbc3a36847f806b6a5", "cast_id": 49, "profile_path": "/cmA8krd4hpPC9kWSF9wpSx6ffMt.jpg", "order": 10}, {"name": "Kelly Reilly", "character": "Caroline Bingley", "id": 17521, "credit_id": "52fe43bbc3a36847f806b6a9", "cast_id": 50, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 11}, {"name": "Tom Hollander", "character": "Mr. Collins", "id": 2441, "credit_id": "52fe43bbc3a36847f806b6ad", "cast_id": 51, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 12}, {"name": "Penelope Wilton", "character": "Mrs. Gardiner", "id": 1249, "credit_id": "52fe43bbc3a36847f806b6b1", "cast_id": 52, "profile_path": "/zUnZZYSNEVRNckheSG8Ff9PDZCf.jpg", "order": 13}, {"name": "Claudie Blakley", "character": "Charlotte Lucas", "id": 36663, "credit_id": "52fe43bbc3a36847f806b6b5", "cast_id": 53, "profile_path": "/v02raCaKQpZTP9pULehv4JaXe11.jpg", "order": 14}, {"name": "Sinead Matthews", "character": "Betsy", "id": 36668, "credit_id": "52fe43bbc3a36847f806b6b9", "cast_id": 54, "profile_path": "/r1RPRMPbkgu4WMyysXTs75LEMiW.jpg", "order": 15}, {"name": "Peter Wight", "character": "Mr. Gardiner", "id": 17476, "credit_id": "52fe43bbc3a36847f806b6bd", "cast_id": 55, "profile_path": "/cjERr21Oo197GJGhPC9HHHhxqdd.jpg", "order": 16}, {"name": "Tamzin Merchant", "character": "Georgiana Darcy", "id": 36672, "credit_id": "52fe43bbc3a36847f806b6c1", "cast_id": 56, "profile_path": "/fFqq6Qj96iF3P1KwhN4JhmqRyi0.jpg", "order": 17}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe43bbc3a36847f806b62f", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 7.0, "runtime": 128}, "4349": {"poster_path": "/83eJJlHscLsi9DHsqsyk1hIXL83.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86509602, "overview": "A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.", "video": false, "id": 4349, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Kingdom", "tagline": "How do you stop an enemy who isn't afraid to die?", "vote_count": 176, "homepage": "http://www.thekingdommovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0431197", "adult": false, "backdrop_path": "/zGP9UgLsMUZUlZwR2s6wUk0Qgp5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Forward Pass", "id": 675}, {"name": "Relativity Media", "id": 7295}, {"name": "FilmWorks", "id": 7786}, {"name": "MDBF Zweite Filmgesellschaft", "id": 12246}], "release_date": "2007-08-22", "popularity": 0.735519124246918, "original_title": "The Kingdom", "budget": 70000000, "cast": [{"name": "Jamie Foxx", "character": "Ronald Fleury", "id": 134, "credit_id": "52fe43bbc3a36847f806b741", "cast_id": 11, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Janet Mayes", "id": 9278, "credit_id": "52fe43bbc3a36847f806b745", "cast_id": 12, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Grant Sykes", "id": 2955, "credit_id": "52fe43bbc3a36847f806b749", "cast_id": 13, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Jason Bateman", "character": "Adam Leavitt", "id": 23532, "credit_id": "52fe43bbc3a36847f806b74d", "cast_id": 14, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 3}, {"name": "Ali Suliman", "character": "Sergeant Haytham", "id": 762, "credit_id": "52fe43bbc3a36847f806b751", "cast_id": 15, "profile_path": "/orQk2ePFL6er4TrdhD0jZ9my3E3.jpg", "order": 4}, {"name": "Jeremy Piven", "character": "Damon Schmidt", "id": 12799, "credit_id": "52fe43bbc3a36847f806b755", "cast_id": 16, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 5}, {"name": "Ashraf Barhom", "character": "Colonel Faris Al Ghazi", "id": 766, "credit_id": "52fe43bcc3a36847f806b7ad", "cast_id": 31, "profile_path": "/oqu4Ra8jfKvKoeOtVZiWoNvfvji.jpg", "order": 6}, {"name": "Richard Jenkins", "character": "Robert Grace", "id": 28633, "credit_id": "52fe43bcc3a36847f806b7b1", "cast_id": 32, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 7}, {"name": "Tim McGraw", "character": "Aaron Jackson", "id": 74428, "credit_id": "52fe43bcc3a36847f806b7b5", "cast_id": 33, "profile_path": "/lotQwKKAUe3hI4EnmMySNpJGKGO.jpg", "order": 8}, {"name": "Kyle Chandler", "character": "Francis Manner", "id": 3497, "credit_id": "52fe43bcc3a36847f806b7b9", "cast_id": 34, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 9}, {"name": "Frances Fisher", "character": "Elaine Flowers", "id": 3713, "credit_id": "52fe43bcc3a36847f806b7bd", "cast_id": 35, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 10}, {"name": "Danny Huston", "character": "Gideon Young", "id": 6413, "credit_id": "52fe43bcc3a36847f806b7c1", "cast_id": 36, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 11}, {"name": "Kelly AuCoin", "character": "Ellis Leach", "id": 171727, "credit_id": "52fe43bcc3a36847f806b7c5", "cast_id": 37, "profile_path": "/cBCUVchfwm0gMjNsqZRCOVXLsnB.jpg", "order": 12}, {"name": "Anna Deavere Smith", "character": "Maricella Canavesio", "id": 63279, "credit_id": "52fe43bcc3a36847f806b7c9", "cast_id": 38, "profile_path": "/qxnkWqihNIu2FKL8UFxAfv9XfAW.jpg", "order": 13}, {"name": "Minka Kelly", "character": "Miss Ross", "id": 96625, "credit_id": "52fe43bcc3a36847f806b7cd", "cast_id": 39, "profile_path": "/sE7eVf2gGSW6Di86UwI6i9RAcZi.jpg", "order": 14}, {"name": "Amy Hunter", "character": "Lyla Fleury", "id": 154011, "credit_id": "52fe43bcc3a36847f806b7d1", "cast_id": 40, "profile_path": "/cUGAMsM0otkiXFBFEvpKZISDDNl.jpg", "order": 15}, {"name": "Tj Burnett", "character": "Kevin Fleury", "id": 1128234, "credit_id": "52fe43bcc3a36847f806b7d5", "cast_id": 41, "profile_path": "/6pY5PHjMBarasa8HOmOASM3PAJ3.jpg", "order": 16}, {"name": "Omar Berdouni", "character": "Prince Ahmed Bin Khaled", "id": 122338, "credit_id": "52fe43bcc3a36847f806b7d9", "cast_id": 42, "profile_path": "/7xi3jrfet3wb1m2pjtlLNkgpZPt.jpg", "order": 17}, {"name": "Raad Rawi", "character": "Prince Thamer", "id": 73710, "credit_id": "52fe43bcc3a36847f806b7dd", "cast_id": 43, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 18}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe43bbc3a36847f806b719", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 6.2, "runtime": 110}, "45317": {"poster_path": "/f81GIoNQJQX92YCaTs8wjbT0h7b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129100000, "overview": "The Fighter, is a drama about boxer \"Irish\" Micky Ward's unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO'd by drugs and crime.", "video": false, "id": 45317, "genres": [{"id": 18, "name": "Drama"}], "title": "The Fighter", "tagline": "Every dream deserves a fighting chance.", "vote_count": 595, "homepage": "http://www.thefightermovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0964517", "adult": false, "backdrop_path": "/3ruexiChoctUhL51bWRt4IVJ5YG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2010-12-17", "popularity": 0.81740445471213, "original_title": "The Fighter", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Micky Ward", "id": 13240, "credit_id": "52fe46bcc3a36847f810f4f7", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Christian Bale", "character": "Dick \"Dicky\" Eklund", "id": 3894, "credit_id": "52fe46bcc3a36847f810f4fb", "cast_id": 2, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 1}, {"name": "Amy Adams", "character": "Charlene Fleming", "id": 9273, "credit_id": "52fe46bcc3a36847f810f4ff", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 2}, {"name": "Melissa Leo", "character": "Alice Eklund-Ward", "id": 6832, "credit_id": "52fe46bcc3a36847f810f503", "cast_id": 4, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 3}, {"name": "Mickey O'Keefe", "character": "Himself", "id": 1415263, "credit_id": "54bc0448c3a368389c00214d", "cast_id": 35, "profile_path": "/2bGi6tSX12BVy7p287dgRWpkUxv.jpg", "order": 4}, {"name": "Dendrie Taylor", "character": "Gail 'Red Dog' Eckland Carney", "id": 81462, "credit_id": "52fe46bcc3a36847f810f507", "cast_id": 6, "profile_path": "/mGFSoz0U4wkGGrt8ZFeEXnLOYr6.jpg", "order": 5}, {"name": "Jack McGee", "character": "George Ward", "id": 10489, "credit_id": "52fe46bcc3a36847f810f535", "cast_id": 14, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 6}, {"name": "Bianca Hunter", "character": "Cathy \"Pork\" Eklund", "id": 999736, "credit_id": "52fe46bcc3a36847f810f57b", "cast_id": 26, "profile_path": "/77YgfsOsYFdW0ZBtXeQbY8AfYvs.jpg", "order": 7}, {"name": "Erica McDermott", "character": "Cindy \"Tar\" Eklund", "id": 999737, "credit_id": "52fe46bcc3a36847f810f57f", "cast_id": 27, "profile_path": "/715Tt2EGYuN0f4ccso7t2prW7uu.jpg", "order": 8}, {"name": "Jenna Lamia", "character": "Sherri \"The Baby\" Ward", "id": 155595, "credit_id": "52fe46bcc3a36847f810f583", "cast_id": 28, "profile_path": "/jUOQXfJIxeE2Ug9PXpX9dFYpR58.jpg", "order": 9}, {"name": "Caitlin Dwyer", "character": "Kasie Ward", "id": 999771, "credit_id": "52fe46bcc3a36847f810f587", "cast_id": 29, "profile_path": "/k1FMQM4IWFJE0l0Ven1U71zrx3H.jpg", "order": 10}, {"name": "Chanty Sok", "character": "Karen", "id": 999772, "credit_id": "52fe46bcc3a36847f810f58b", "cast_id": 30, "profile_path": "/jRj1uUrPSsyQEzoTB4pHM6T8SVR.jpg", "order": 11}, {"name": "Jackson Nicoll", "character": "Little Dickie", "id": 1148130, "credit_id": "540b8a2a0e0a262b49002ef5", "cast_id": 32, "profile_path": "/2sEyIlZFLIzAgBUcL5dovdwQOUa.jpg", "order": 12}, {"name": "Frank Renzulli", "character": "Sal Lanano", "id": 1223731, "credit_id": "54bc04109251413635003658", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Sugar Ray Leonard", "character": "Himself", "id": 155766, "credit_id": "54bc04a99251411d6a009470", "cast_id": 36, "profile_path": "/60UrlxiWoaTjxPGI9OSUJ1c5vJf.jpg", "order": 14}, {"name": "Melissa McMeekin", "character": "'Little Alice' Eklund", "id": 1371551, "credit_id": "54e8c1f4c3a3684ea60017a5", "cast_id": 41, "profile_path": null, "order": 15}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe46bcc3a36847f810f50d", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 6.8, "runtime": 116}, "12556": {"poster_path": "/ojAN7GKwxCl2e2vSdmee43jZ6aw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102223269, "overview": "When notorious womanizer Connor Mead attends his brother Paul's wedding, he is forced to re-evaluate his behavior as he comes face-to-face with the ghosts of girlfriends past, present, and future, along with his deceased uncle. The experience changes his attitude and allows him to reconnect with his first and only love, Jenny.", "video": false, "id": 12556, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Ghosts of Girlfriends Past", "tagline": "You can't always run from your past.", "vote_count": 187, "homepage": "http://www.ghostsofgirlfriendspastmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0821640", "adult": false, "backdrop_path": "/A5uNeuVAIxJZ7AiHuqSKctTrfFC.jpg", "production_companies": [{"name": "Panther", "id": 50824}, {"name": "Jon Shestack Productions", "id": 10991}, {"name": "New Line Cinema", "id": 12}], "release_date": "2009-05-01", "popularity": 1.35931550683557, "original_title": "Ghosts of Girlfriends Past", "budget": 0, "cast": [{"name": "Matthew McConaughey", "character": "Connor Mead", "id": 10297, "credit_id": "52fe44fa9251416c750478b1", "cast_id": 4, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Jenny Perotti", "id": 9278, "credit_id": "52fe44fa9251416c750478b5", "cast_id": 5, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Michael Douglas", "character": "Uncle Wayne", "id": 3392, "credit_id": "52fe44fa9251416c750478b9", "cast_id": 6, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 2}, {"name": "Emma Stone", "character": "Allison Vandermeersh", "id": 54693, "credit_id": "52fe44fa9251416c750478bd", "cast_id": 7, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 3}, {"name": "Breckin Meyer", "character": "Paul", "id": 33654, "credit_id": "52fe44fa9251416c750478c1", "cast_id": 8, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 4}, {"name": "Lacey Chabert", "character": "Sandra", "id": 22082, "credit_id": "52fe44fa9251416c750478c5", "cast_id": 9, "profile_path": "/fCSUC713QF3nslnap2C4j6TAaTd.jpg", "order": 5}, {"name": "Robert Forster", "character": "Sergeant Volkom", "id": 5694, "credit_id": "52fe44fb9251416c750478c9", "cast_id": 10, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 6}, {"name": "Anne Archer", "character": "Vonda Volkom", "id": 10427, "credit_id": "52fe44fb9251416c750478cd", "cast_id": 11, "profile_path": "/zemspOk1FECjvjRWrH6modUgHiL.jpg", "order": 7}, {"name": "Daniel Sunjata", "character": "Brad", "id": 10582, "credit_id": "52fe44fb9251416c750478d1", "cast_id": 12, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 8}, {"name": "Noureen DeWulf", "character": "Melanie", "id": 66524, "credit_id": "52fe44fb9251416c750478d5", "cast_id": 13, "profile_path": "/kamvMaDxCe2qdQvX5IWcyYp9np6.jpg", "order": 9}, {"name": "Rachel Boston", "character": "Deena the Bridesmaid", "id": 96624, "credit_id": "552525e6c3a3687dfe0015cd", "cast_id": 14, "profile_path": "/gX5GGFYPELzfDwSsy6W7QpKDj87.jpg", "order": 10}, {"name": "Camille Guaty", "character": "Donna the Bridesmaid", "id": 81106, "credit_id": "552525f3c3a3687e03001381", "cast_id": 15, "profile_path": "/clscQjYVHl6JmXa4sqZFFeixrIy.jpg", "order": 11}, {"name": "Amanda Walsh", "character": "Denice the Bridesmaid", "id": 76416, "credit_id": "5525260292514166c1005022", "cast_id": 16, "profile_path": "/agVCKioWuYDNVoZakLyxVt0VZZX.jpg", "order": 12}, {"name": "Emily Baldoni", "character": "Nadja", "id": 209200, "credit_id": "55252614c3a3687dfe0015d0", "cast_id": 17, "profile_path": "/qayfOsHfyE1RGW3zcEIniLwocl4.jpg", "order": 13}, {"name": "Catherine Haena Kim", "character": "Charlece", "id": 1339929, "credit_id": "55252621c3a3687e08001433", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe44fa9251416c750478a1", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.5, "runtime": 100}, "37135": {"poster_path": "/tWFubl9q3quYuYXBGypXXCNLE00.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family, but on an expedition Jane Porter is rescued by Tarzan. He then finds out that he's human. Now Tarzan must make the decision as to which family he should belong to...", "video": false, "id": 37135, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Tarzan", "tagline": "An immortal legend. As you've only imagined.", "vote_count": 376, "homepage": "http://disneydvd.disney.go.com/tarzanr-special-edition.html", "belongs_to_collection": {"backdrop_path": "/esBiZuIJyxr6sZL0OqkILcOkoUX.jpg", "poster_path": "/A7ox3LFDn87561sddxe2nZfpahX.jpg", "id": 106768, "name": "Tarzan (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120855", "adult": false, "backdrop_path": "/yAdUc0v84Ok28ico6SP820wjZMz.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1999-06-18", "popularity": 1.28904612251626, "original_title": "Tarzan", "budget": 0, "cast": [{"name": "Tony Goldwyn", "character": "Tarzan", "id": 3417, "credit_id": "52fe462c9251416c9104baa9", "cast_id": 9, "profile_path": "/cva5VMPST7EdYAYiMO7To277GCZ.jpg", "order": 0}, {"name": "Glenn Close", "character": "Kala", "id": 515, "credit_id": "52fe462c9251416c9104baa5", "cast_id": 8, "profile_path": "/fF6tCfuvuUhaePm5onUNnIE4FvL.jpg", "order": 1}, {"name": "Minnie Driver", "character": "Jane Porter", "id": 6613, "credit_id": "52fe462c9251416c9104baad", "cast_id": 10, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 2}, {"name": "Brian Blessed", "character": "Mr. Clayton, the Gorilla Hunter", "id": 8318, "credit_id": "52fe462c9251416c9104bab1", "cast_id": 11, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 3}, {"name": "Nigel Hawthorne", "character": "Professor Archimedes Q. Porter", "id": 15788, "credit_id": "52fe462c9251416c9104bab5", "cast_id": 12, "profile_path": "/66PJ2LGSowVC1qPR4QIE62PnBd5.jpg", "order": 4}, {"name": "Lance Henriksen", "character": "Kerchak, the Gorilla King", "id": 2714, "credit_id": "52fe462c9251416c9104ba8d", "cast_id": 2, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 5}, {"name": "Wayne Knight", "character": "Adult Tantor", "id": 4201, "credit_id": "52fe462c9251416c9104ba91", "cast_id": 3, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 6}, {"name": "Alex D. Linz", "character": "Young Tarzan", "id": 15789, "credit_id": "52fe462c9251416c9104ba95", "cast_id": 4, "profile_path": "/fkFBjpfC3Wm97SozMrIERc01uyt.jpg", "order": 7}, {"name": "Rosie O'Donnell", "character": "Young Terk / Adult Terk", "id": 12929, "credit_id": "52fe462c9251416c9104ba99", "cast_id": 5, "profile_path": "/76ZWoNK1Fr6gmJUH1zhEBMsT9DT.jpg", "order": 8}, {"name": "Taylor Dempsey", "character": "Young Tantor", "id": 116869, "credit_id": "52fe462c9251416c9104ba9d", "cast_id": 6, "profile_path": null, "order": 9}, {"name": "Jason Marsden", "character": "Additional Voices", "id": 61983, "credit_id": "52fe462c9251416c9104baa1", "cast_id": 7, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 10}], "directors": [{"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c9104babb", "profile_path": null, "id": 15774}, {"name": "Kevin Lima", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c9104bac1", "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "id": 15775}], "vote_average": 6.6, "runtime": 88}, "37136": {"poster_path": "/25myuJy76tha72ogkfJvBgwJljo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78756177, "overview": "When the incompetent Officer Frank Drebin seeks the ruthless killer of his partner, he stumbles upon an attempt to assassinate Queen Elizabeth.", "video": false, "id": 37136, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Naked Gun: From the Files of Police Squad!", "tagline": "The Villain. Even Mother Teresa wanted him dead.", "vote_count": 187, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tqhBZVrozBXbD6VubSBQsCfI0YD.jpg", "poster_path": "/qTJ2fbdU2Ru4OGZghQB8MYofkrN.jpg", "id": 37139, "name": "Naked Gun Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095705", "adult": false, "backdrop_path": "/yacW7fNWrqTsAdc9Qel0mjEuQuI.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1988-12-02", "popularity": 0.989333078114643, "original_title": "The Naked Gun: From the Files of Police Squad!", "budget": 0, "cast": [{"name": "Leslie Nielsen", "character": "Lt. Frank Drebin", "id": 7633, "credit_id": "52fe462c9251416c9104bb0d", "cast_id": 1, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 0}, {"name": "Priscilla Presley", "character": "Jane Spencer", "id": 12949, "credit_id": "52fe462c9251416c9104bb11", "cast_id": 2, "profile_path": "/6YMsGky3MpDqubnfi4HqsTnMge.jpg", "order": 1}, {"name": "Ricardo Montalban", "character": "Vincent Ludwig", "id": 1793, "credit_id": "52fe462c9251416c9104bb15", "cast_id": 3, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 2}, {"name": "George Kennedy", "character": "Capt. Ed Hocken", "id": 12950, "credit_id": "52fe462c9251416c9104bb19", "cast_id": 4, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 3}, {"name": "O.J. Simpson", "character": "Det. Nordberg", "id": 12951, "credit_id": "52fe462c9251416c9104bb1d", "cast_id": 5, "profile_path": "/fOXv3fPxEimuq1pJmnxEMRjpqBg.jpg", "order": 4}, {"name": "Susan Beaubian", "character": "Mrs. Nordberg", "id": 162869, "credit_id": "52fe462c9251416c9104bb6f", "cast_id": 19, "profile_path": null, "order": 5}, {"name": "Nancy Marchand", "character": "Mayor", "id": 12957, "credit_id": "52fe462c9251416c9104bb73", "cast_id": 20, "profile_path": "/d9DASq3XmUsyfzSrATbAAOY7yn1.jpg", "order": 6}, {"name": "Raye Birk", "character": "Pahpshmir", "id": 13422, "credit_id": "52fe462c9251416c9104bb77", "cast_id": 21, "profile_path": "/cYzERLd4HXuQibVztZxQguAfHjF.jpg", "order": 7}, {"name": "Jeannette Charles", "character": "Queen Elizabeth II", "id": 218220, "credit_id": "52fe462c9251416c9104bb7b", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Ed Williams", "character": "Ted Olsen", "id": 122592, "credit_id": "52fe462c9251416c9104bb7f", "cast_id": 23, "profile_path": "/tX264d1o9lwOqPl3ENblO3Jyelb.jpg", "order": 9}, {"name": "Tiny Ron Taylor", "character": "Al", "id": 98579, "credit_id": "52fe462c9251416c9104bb83", "cast_id": 24, "profile_path": "/wSA3KPLbETH9JwyJ8ZvCakb4n8h.jpg", "order": 10}, {"name": "\"Weird Al\" Yankovic", "character": "Himself", "id": 71041, "credit_id": "52fe462c9251416c9104bb87", "cast_id": 25, "profile_path": "/jlJef4Sv3y1LIOfFFD7JaIQlGFJ.jpg", "order": 11}, {"name": "Tom Dugan", "character": "Drug Dealer #2", "id": 1144361, "credit_id": "52fe462c9251416c9104bb8b", "cast_id": 26, "profile_path": "/obQfb3EhWnbxEYK7S0bLZw6oMJ6.jpg", "order": 12}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "535cfdd90e0a264feb004ad4", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 6.7, "runtime": 85}, "37137": {"poster_path": "/ipaBquwE6dkKHRS3vVrXw5Xcf9u.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Bumbling cop Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business. As always, the jokes (and sight gags) fly like gunfire!", "video": false, "id": 37137, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Naked Gun 2\u00bd: The Smell of Fear", "tagline": "If you see only one movie this year...you ought to get out more often", "vote_count": 95, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tqhBZVrozBXbD6VubSBQsCfI0YD.jpg", "poster_path": "/qTJ2fbdU2Ru4OGZghQB8MYofkrN.jpg", "id": 37139, "name": "Naked Gun Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102510", "adult": false, "backdrop_path": "/HbXkK9swYbBiRL4KhvyA97TOqR.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1991-06-28", "popularity": 0.823668689060022, "original_title": "The Naked Gun 2\u00bd: The Smell of Fear", "budget": 23000000, "cast": [{"name": "Leslie Nielsen", "character": "Frank Drebin", "id": 7633, "credit_id": "52fe462c9251416c9104bbb7", "cast_id": 7, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 0}, {"name": "Priscilla Presley", "character": "Jane Spencer", "id": 12949, "credit_id": "52fe462c9251416c9104bba7", "cast_id": 3, "profile_path": "/6YMsGky3MpDqubnfi4HqsTnMge.jpg", "order": 1}, {"name": "George Kennedy", "character": "Captain Ed Hocken", "id": 12950, "credit_id": "52fe462c9251416c9104bbab", "cast_id": 4, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 2}, {"name": "O.J. Simpson", "character": "Nordberg", "id": 12951, "credit_id": "52fe462c9251416c9104bbaf", "cast_id": 5, "profile_path": "/fOXv3fPxEimuq1pJmnxEMRjpqBg.jpg", "order": 3}, {"name": "Robert Goulet", "character": "Quentin Hapsburg", "id": 128621, "credit_id": "52fe462c9251416c9104bbb3", "cast_id": 6, "profile_path": "/776KzwV8l62Wz4gGWnifTUtf8A2.jpg", "order": 4}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c9104bba3", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 6.9, "runtime": 85}, "12569": {"poster_path": "/j13qLGBu3WBbyPPTfWAHj8jucQI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10848783, "overview": "The owner of a factory that produces flavor extracts, Joel Reynold seems to have it all, but really doesn't. What's missing is sexual attention from his wife, Suzie. Joel hatches a convoluted plan to get Suzie to cheat on him, thereby clearing the way for Joel to have an affair with Cindy, an employee. But what Joel doesn't know is that Cindy is a sociopathic con artist, and a freak workplace accident clears the way for her to ruin Joel forever.", "video": false, "id": 12569, "genres": [{"id": 35, "name": "Comedy"}], "title": "Extract", "tagline": "Sticking it to the man has never looked so good.", "vote_count": 50, "homepage": "http://www.extract-the-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1225822", "adult": false, "backdrop_path": "/6urmjGWJx08zVyXPmrDIUVOYGob.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2009-09-03", "popularity": 0.63354881496776, "original_title": "Extract", "budget": 8000000, "cast": [{"name": "Jason Bateman", "character": "Joel", "id": 23532, "credit_id": "52fe44fc9251416c75047ceb", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Cindy", "id": 18973, "credit_id": "52fe44fc9251416c75047d01", "cast_id": 10, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Kristen Wiig", "character": "Suzie", "id": 41091, "credit_id": "52fe44fc9251416c75047cef", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 2}, {"name": "Ben Affleck", "character": "Dean", "id": 880, "credit_id": "52fe44fc9251416c75047ce3", "cast_id": 2, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "Brian", "id": 18999, "credit_id": "52fe44fc9251416c75047d09", "cast_id": 12, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "Clifton Collins, Jr.", "character": "Step", "id": 5365, "credit_id": "52fe44fc9251416c75047ce7", "cast_id": 3, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 5}, {"name": "Dustin Milligan", "character": "Brad", "id": 53117, "credit_id": "52fe44fc9251416c75047d11", "cast_id": 14, "profile_path": "/yn0g5VpGYwuTcIl9BK5gc8bWXmg.jpg", "order": 6}, {"name": "David Koechner", "character": "Nathan", "id": 28638, "credit_id": "52fe44fc9251416c75047cf3", "cast_id": 7, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 7}, {"name": "Beth Grant", "character": "Mary", "id": 5151, "credit_id": "52fe44fc9251416c75047d15", "cast_id": 15, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 8}, {"name": "T.J. Miller", "character": "Rory", "id": 51990, "credit_id": "52fe44fc9251416c75047d0d", "cast_id": 13, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 9}, {"name": "Javier Guti\u00e9rrez", "character": "Hector", "id": 19024, "credit_id": "52fe44fc9251416c75047d19", "cast_id": 16, "profile_path": "/qy8qEkPgnTFvdfXG2utW4feOwmF.jpg", "order": 10}, {"name": "Lidia Porto", "character": "Gabriella", "id": 180527, "credit_id": "52fe44fc9251416c75047d1d", "cast_id": 17, "profile_path": "/pf93ztgaIlecCLhLd0t4yId8Dvb.jpg", "order": 10}, {"name": "Gene Simmons", "character": "Joe Adler", "id": 57756, "credit_id": "52fe44fc9251416c75047cf7", "cast_id": 8, "profile_path": "/6JvY3oA7T8Q91VIoPyONK2ge9wo.jpg", "order": 12}, {"name": "Matt Schulze", "character": "Willie", "id": 31841, "credit_id": "52fe44fc9251416c75047d05", "cast_id": 11, "profile_path": "/aVXQNuSE7990114QZisNrkK8mJt.jpg", "order": 13}, {"name": "Lamberto Gutierrez", "character": "Victor", "id": 1005829, "credit_id": "52fe44fc9251416c75047d21", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Brent Briscoe", "character": "Phil", "id": 15011, "credit_id": "52fe44fc9251416c75047d25", "cast_id": 19, "profile_path": "/7ws22WEvxt6cvMDyijZOdf9AuiS.jpg", "order": 15}], "directors": [{"name": "Mike Judge", "department": "Directing", "job": "Director", "credit_id": "52fe44fc9251416c75047cdf", "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "id": 17403}], "vote_average": 6.1, "runtime": 92}, "4379": {"poster_path": "/5GSLdahlqJX1Mb6l9vJI6tXQGaS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154749918, "overview": "Office temp Charlotte Cantilini thinks she's found Mr. Right when she starts dating gorgeous surgeon Dr. Kevin Fields. But there's a problem standing in the way of everlasting bliss: Kevin's overbearing and controlling mother, Viola. Fearing she'll lose her son's affections forever, Viola decides to break up the happy couple by becoming the world's worst mother-in-law.", "video": false, "id": 4379, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Monster-in-Law", "tagline": "This relationship is going to be a real mother.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369735", "adult": false, "backdrop_path": "/y7fi2vTh5tbEYnmsWdA7Xw2pXlY.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Bender-Spink Inc.", "id": 131}, {"name": "Avery Pix", "id": 1565}, {"name": "Avery Productions", "id": 1622}], "release_date": "2005-05-13", "popularity": 0.974575921098258, "original_title": "Monster-in-Law", "budget": 43000000, "cast": [{"name": "Jennifer Lopez", "character": "Charlie Cantillini", "id": 16866, "credit_id": "52fe43bdc3a36847f806c131", "cast_id": 16, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Jane Fonda", "character": "Viola Fields", "id": 6352, "credit_id": "52fe43bdc3a36847f806c135", "cast_id": 17, "profile_path": "/t4kIxZrAhxnMyQP8BZFmpPAot0z.jpg", "order": 1}, {"name": "Michael Vartan", "character": "Kevin Fields", "id": 15424, "credit_id": "52fe43bdc3a36847f806c139", "cast_id": 18, "profile_path": "/22ahSJZMUzedwmxVeCzofrlPVQw.jpg", "order": 2}, {"name": "Wanda Sykes", "character": "Ruby", "id": 27102, "credit_id": "52fe43bdc3a36847f806c13d", "cast_id": 19, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 3}, {"name": "Adam Scott", "character": "Remy", "id": 36801, "credit_id": "52fe43bdc3a36847f806c141", "cast_id": 20, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Monet Mazur", "character": "Fiona", "id": 34844, "credit_id": "52fe43bdc3a36847f806c145", "cast_id": 21, "profile_path": "/lvLC6Sjt8pETC3La8rGvhyYWSx0.jpg", "order": 5}, {"name": "Annie Parisse", "character": "Morgan", "id": 24291, "credit_id": "52fe43bdc3a36847f806c149", "cast_id": 22, "profile_path": "/w1UJOiIfgqYXZk8mcRkH9cZBURl.jpg", "order": 6}, {"name": "Will Arnett", "character": "Kit", "id": 21200, "credit_id": "52fe43bdc3a36847f806c14d", "cast_id": 23, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 7}, {"name": "Elaine Stritch", "character": "Gertrude", "id": 36802, "credit_id": "52fe43bdc3a36847f806c151", "cast_id": 24, "profile_path": "/4QGJE8HwbJXdb7MrsINR8zJtDzp.jpg", "order": 8}, {"name": "Stephen Dunham", "character": "Dr. Chamberlain", "id": 36803, "credit_id": "52fe43bdc3a36847f806c155", "cast_id": 25, "profile_path": "/6xzvLVJLXKgT7oaGoB448WNml9G.jpg", "order": 9}, {"name": "Harriet Sansom Harris", "character": "Therapist", "id": 538, "credit_id": "52fe43bdc3a36847f806c159", "cast_id": 26, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 10}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe43bdc3a36847f806c0d9", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 5.9, "runtime": 101}, "4380": {"poster_path": "/ntKMVXdb1tVr4q3sT9vJOV9wnfN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170128460, "overview": "A romantic comedy where a bored, overworked Estate Lawyer, upon first sight of a beautiful instructor, signs up for ballroom dancing lessons.", "video": false, "id": 4380, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Shall We Dance?", "tagline": "Step out of the ordinary", "vote_count": 69, "homepage": "http://www.miramax.com/shallwedance/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0358135", "adult": false, "backdrop_path": "/sBvFyOlfcD5B2126ewELx67Wwmi.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2004-10-15", "popularity": 0.731292654589958, "original_title": "Shall We Dance?", "budget": 50000000, "cast": [{"name": "Richard Gere", "character": "John Clark", "id": 1205, "credit_id": "52fe43bec3a36847f806c1e9", "cast_id": 14, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Paulina", "id": 16866, "credit_id": "52fe43bec3a36847f806c1ed", "cast_id": 15, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Beverly Clark", "id": 4038, "credit_id": "52fe43bec3a36847f806c1f1", "cast_id": 16, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Lisa Ann Walter", "character": "Bobbie", "id": 4494, "credit_id": "52fe43bec3a36847f806c1f5", "cast_id": 17, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 3}, {"name": "Stanley Tucci", "character": "Link", "id": 2283, "credit_id": "52fe43bec3a36847f806c1f9", "cast_id": 18, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 4}, {"name": "Anita Gillette", "character": "Miss Mitzi", "id": 20974, "credit_id": "52fe43bec3a36847f806c1fd", "cast_id": 19, "profile_path": "/d9gp4NaErg1EUheZHbqX00G75Tx.jpg", "order": 5}, {"name": "Bobby Cannavale", "character": "Chic", "id": 21127, "credit_id": "52fe43bec3a36847f806c201", "cast_id": 20, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 6}, {"name": "Omar Benson Miller", "character": "Vern", "id": 334, "credit_id": "52fe43bec3a36847f806c205", "cast_id": 21, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 7}, {"name": "Tamara Hope", "character": "Jenna Clark", "id": 36810, "credit_id": "52fe43bec3a36847f806c209", "cast_id": 22, "profile_path": "/amCIcZJ7RoJP5x9qlqMgZanYqTl.jpg", "order": 8}, {"name": "Stark Sands", "character": "Evan Clark", "id": 33532, "credit_id": "52fe43bec3a36847f806c20d", "cast_id": 23, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 9}, {"name": "Richard Jenkins", "character": "Devine", "id": 28633, "credit_id": "52fe43bec3a36847f806c211", "cast_id": 24, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 10}, {"name": "Nick Cannon", "character": "Scott", "id": 36811, "credit_id": "52fe43bec3a36847f806c215", "cast_id": 25, "profile_path": "/meQ69JTifJ8nGrcvZUczWcoeryM.jpg", "order": 11}, {"name": "Sarah Lafleur", "character": "Carolyn", "id": 36812, "credit_id": "52fe43bec3a36847f806c219", "cast_id": 26, "profile_path": "/8psuqJIFpDCMJQNdTT5r23yDGUA.jpg", "order": 12}, {"name": "Onalee Ames", "character": "Diane", "id": 36813, "credit_id": "52fe43bec3a36847f806c21d", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Diana Salvatore", "character": "Tina", "id": 36814, "credit_id": "52fe43bec3a36847f806c221", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Daphne Korol", "character": "Daphne", "id": 36815, "credit_id": "52fe43bec3a36847f806c225", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "David Sparrow", "character": "Louis", "id": 36816, "credit_id": "52fe43bec3a36847f806c229", "cast_id": 30, "profile_path": "/wpv5m3TePP3ju8lrugwUquPDaON.jpg", "order": 16}], "directors": [{"name": "Peter Chelsom", "department": "Directing", "job": "Director", "credit_id": "52fe43bdc3a36847f806c19d", "profile_path": "/wFquKk8EJ0U2ZXg9hoTxtskDZtF.jpg", "id": 36804}], "vote_average": 5.8, "runtime": 107}, "12573": {"poster_path": "/w1QO8DsvwUNhYALJPFxtDSarNIO.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A Serious Man is the story of an ordinary man's search for clarity in a universe where Jefferson Airplane is on the radio and F-Troop is on TV. It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.", "video": false, "id": 12573, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "A Serious Man", "tagline": "...seriously!", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "yi", "name": ""}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1019452", "adult": false, "backdrop_path": "/5lgpipJdhY09OpMwaMxofTjsoQI.jpg", "production_companies": [{"name": "Mike Zoss Productions", "id": 2092}, {"name": "Focus Features", "id": 10146}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2009-10-02", "popularity": 1.00754398441667, "original_title": "A Serious Man", "budget": 7000000, "cast": [{"name": "Michael Stuhlbarg", "character": "Larry Gopnik", "id": 72873, "credit_id": "52fe44fd9251416c75047e97", "cast_id": 1, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 0}, {"name": "Richard Kind", "character": "Uncle Arthur", "id": 21125, "credit_id": "52fe44fd9251416c75047e9b", "cast_id": 2, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 1}, {"name": "Fred Melamed", "character": "Sy Ableman", "id": 105303, "credit_id": "52fe44fd9251416c75047eab", "cast_id": 5, "profile_path": "/uU6e0X8A82tkG8PQFO1hH2PMz4W.jpg", "order": 2}, {"name": "Sari Lennick", "character": "Judith Gopnik", "id": 105304, "credit_id": "52fe44fd9251416c75047eaf", "cast_id": 6, "profile_path": "/5iUN292JxA4mWp2V3yG8O8VC2zj.jpg", "order": 3}, {"name": "Aaron Wolff", "character": "Danny Gopnik", "id": 105305, "credit_id": "52fe44fd9251416c75047eb3", "cast_id": 7, "profile_path": "/omwo1ACle77oKCO8ttXHiKjmQxR.jpg", "order": 4}, {"name": "Jessica McManus", "character": "Sarah Gopnik", "id": 105306, "credit_id": "52fe44fd9251416c75047eb7", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Adam Arkin", "character": "Don Milgram", "id": 55257, "credit_id": "52fe44fd9251416c75047ec7", "cast_id": 11, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 6}, {"name": "George Wyner", "character": "Rabbi Nachter", "id": 14669, "credit_id": "52fe44fd9251416c75047ecb", "cast_id": 12, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 7}, {"name": "Peter Breitmayer", "character": "Mr. Brandt", "id": 159454, "credit_id": "52fe44fd9251416c75047f1d", "cast_id": 26, "profile_path": null, "order": 8}, {"name": "Brent Braunschweig", "character": "Mitch Brandt", "id": 1015643, "credit_id": "52fe44fd9251416c75047f21", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "David Kang", "character": "Clive Park", "id": 965140, "credit_id": "52fe44fd9251416c75047f25", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Benjamin Portnoe", "character": "Danny's Reefer Buddy", "id": 1015644, "credit_id": "52fe44fd9251416c75047f29", "cast_id": 29, "profile_path": null, "order": 11}, {"name": "Jon Kaminski Jr.", "character": "Mike Fagle", "id": 1118717, "credit_id": "52fe44fd9251416c75047f2d", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Ari Hoptman", "character": "Arlen Finkle", "id": 1118718, "credit_id": "52fe44fd9251416c75047f31", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "Alan Mandell", "character": "Rabbi Marshak", "id": 36546, "credit_id": "52fe44fd9251416c75047f35", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Amy Landecker", "character": "Mrs. Samsky", "id": 357551, "credit_id": "52fe44fd9251416c75047f39", "cast_id": 33, "profile_path": "/fkieXo1IqcqEIDCGtY8nkiuRwzf.jpg", "order": 15}, {"name": "Simon Helberg", "character": "", "id": 53863, "credit_id": "54cc01889251413e6400019d", "cast_id": 34, "profile_path": "/zic1gEH1qEMHhbm5Vxwp9J2XrAO.jpg", "order": 16}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047ea1", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe44fd9251416c75047ea7", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.7, "runtime": 105}, "20766": {"poster_path": "/o34ARieL8kqGzcMnSksJ6OGPRK2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27685103, "overview": "A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don't know what, if anything, awaits them there.", "video": false, "id": 20766, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "The Road", "tagline": "In a moment the world changed forever.", "vote_count": 307, "homepage": "http://www.theroad-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0898367", "adult": false, "backdrop_path": "/pUNlJ6jzDsgUvPjJeFfsyyOSZJx.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "2929 Productions", "id": 846}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Chockstone Pictures", "id": 13649}], "release_date": "2009-11-25", "popularity": 2.17914510894594, "original_title": "The Road", "budget": 32000000, "cast": [{"name": "Viggo Mortensen", "character": "Father", "id": 110, "credit_id": "52fe43f8c3a368484e008959", "cast_id": 2, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Kodi Smit-McPhee", "character": "Boy", "id": 113505, "credit_id": "52fe43f8c3a368484e008975", "cast_id": 7, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Mother", "id": 6885, "credit_id": "52fe43f8c3a368484e008955", "cast_id": 1, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Robert Duvall", "character": "Old Man - Eli", "id": 3087, "credit_id": "52fe43f8c3a368484e008979", "cast_id": 8, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 3}, {"name": "Guy Pearce", "character": "Veteran", "id": 529, "credit_id": "52fe43f8c3a368484e00897d", "cast_id": 9, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 4}, {"name": "Molly Parker", "character": "Friendly Woman", "id": 27125, "credit_id": "52fe43f8c3a368484e008981", "cast_id": 10, "profile_path": "/4IgmsXs2iu8nRdaKU0R5TOAeKeT.jpg", "order": 5}, {"name": "Michael Kenneth Williams", "character": "The Thief (as Michael Kenneth Williams)", "id": 39390, "credit_id": "52fe43f8c3a368484e008985", "cast_id": 11, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 6}, {"name": "Garret Dillahunt", "character": "Gang Member", "id": 39520, "credit_id": "52fe43f8c3a368484e008989", "cast_id": 12, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 7}, {"name": "Bob Jennings", "character": "Bearded Man", "id": 113506, "credit_id": "52fe43f9c3a368484e00898d", "cast_id": 13, "profile_path": "/iaOIeKW3Og5gYxNnsHpEJsnldBR.jpg", "order": 8}, {"name": "Agnes Herrmann", "character": "Archer's Woman", "id": 1297771, "credit_id": "53123580925141102a00282d", "cast_id": 16, "profile_path": "/nfk6aeXa2Qgc9oVhPWcCTLVyJo2.jpg", "order": 9}, {"name": "Buddy Sosthand", "character": "Archer", "id": 963745, "credit_id": "531234bf9251411008002939", "cast_id": 15, "profile_path": "/zxrCjyAAkMF8NjoxaVw2Dp6zjtv.jpg", "order": 10}, {"name": "Kirk Brown", "character": "Bearded Face", "id": 1297772, "credit_id": "531235b59251411035002829", "cast_id": 17, "profile_path": "/2KRKphpUU3jcQ5O44pdecwa1fu8.jpg", "order": 11}, {"name": "Jack Erdie", "character": "Bearded Man #2", "id": 991960, "credit_id": "531236649251410ff10027ad", "cast_id": 18, "profile_path": "/sFFUnfeU1bwdEc4XggtrfmKbi0r.jpg", "order": 12}, {"name": "David August Lindauer", "character": "Man On Mattress", "id": 1297777, "credit_id": "531238279251410fe600281c", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Gina Preciado", "character": "Well Fed Woman", "id": 1297776, "credit_id": "53123799925141100800297b", "cast_id": 19, "profile_path": "/jCFr1Mo17tDYnlFPqwKoF8lUUzB.jpg", "order": 14}], "directors": [{"name": "John Hillcoat", "department": "Directing", "job": "Director", "credit_id": "52fe43f8c3a368484e00895f", "profile_path": "/4VqHE3mBPSUpR2ep7vpx27arFiY.jpg", "id": 53333}], "vote_average": 6.7, "runtime": 111}, "18480": {"poster_path": "/tqvApLFIzYBr8MIqi22VSIilHN7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Flamboyantly gay Austrian television reporter Bruno (Sacha Baron Cohen) stirs up trouble with unsuspecting guests and large crowds through brutally frank interviews and painfully hilarious public displays of homosexuality.", "video": false, "id": 18480, "genres": [{"id": 35, "name": "Comedy"}], "title": "Br\u00fcno", "tagline": "Borat was so 2006", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0889583", "adult": false, "backdrop_path": "/HsE93JXe40TI2AkJP1e243wEGB.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2009-07-10", "popularity": 0.584114196980708, "original_title": "Br\u00fcno", "budget": 42000000, "cast": [{"name": "Sacha Baron Cohen", "character": "Bruno", "id": 6730, "credit_id": "52fe477f9251416c7509b9eb", "cast_id": 1, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 0}, {"name": "Richard Bey", "character": "Himself", "id": 83247, "credit_id": "52fe477f9251416c7509b9f5", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Ron Paul", "character": "Himself", "id": 83248, "credit_id": "52fe477f9251416c7509b9f9", "cast_id": 4, "profile_path": "/200pMJ8LACsWCHVAxSoKfXqWFWa.jpg", "order": 2}, {"name": "Gustaf Hammarsten", "character": "Lutz", "id": 11040, "credit_id": "52fe477f9251416c7509ba09", "cast_id": 8, "profile_path": "/zG4x2kuRTS3bx5l4cATSk98WMof.jpg", "order": 3}, {"name": "Clifford Ba\u00f1agale", "character": "Diesel", "id": 232055, "credit_id": "52fe477f9251416c7509ba0d", "cast_id": 9, "profile_path": "/5fne6HIsxR4bLEq8b9fatDWnSWN.jpg", "order": 4}, {"name": "Josh Meyers", "character": "Kookus", "id": 124471, "credit_id": "5369126b0e0a2647d1008175", "cast_id": 11, "profile_path": "/5bqoQVKHCtDz9MYZ3pcjy5jD28Y.jpg", "order": 5}, {"name": "Chris Martin", "character": "Himself", "id": 81129, "credit_id": "5369127d0e0a2647cb00847f", "cast_id": 12, "profile_path": "/w4UAGk1iG8KcQbxqQ8au3ewYLEw.jpg", "order": 6}, {"name": "Elton John", "character": "Himself", "id": 11370, "credit_id": "536912860e0a2647db0082e4", "cast_id": 13, "profile_path": "/iWFTFSGZn7JwEHt7ZKxnMq9ycPy.jpg", "order": 7}, {"name": "Slash", "character": "Himself", "id": 92706, "credit_id": "5369128d0e0a2647cb008484", "cast_id": 14, "profile_path": "/5hhD7gG5XWvGa5BZ6vKNitX1J3V.jpg", "order": 8}, {"name": "Bono", "character": "Himself", "id": 33684, "credit_id": "536912970e0a2647c4008675", "cast_id": 15, "profile_path": "/pj3JYEJlVkNV91fxDHkgWKhDdot.jpg", "order": 9}], "directors": [{"name": "Larry Charles", "department": "Directing", "job": "Director", "credit_id": "52fe477f9251416c7509b9f1", "profile_path": "/fg42iXWfuIeRVk4NFNWvWJf4hst.jpg", "id": 6767}], "vote_average": 5.3, "runtime": 83}, "225574": {"poster_path": "/ifgEHE1ortukpBF6wh03HCuctdr.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 222809600, "overview": "Bill Marks is a burned-out veteran of the Air Marshals service. He views the assignment not as a life-saving duty, but as a desk job in the sky. However, today's flight will be no routine trip. Shortly into the transatlantic journey from New York to London, he receives a series of mysterious text messages ordering him to have the government transfer $150 million into a secret account, or a passenger will die every 20 minutes.", "video": false, "id": 225574, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Non-Stop", "tagline": "The hijacking was just the beginning.", "vote_count": 889, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt2024469", "adult": false, "backdrop_path": "/2pcByp1prR7w6KWvnukIsdXdIwS.jpg", "production_companies": [{"name": "LOVEFiLM International", "id": 26387}, {"name": "StudioCanal", "id": 694}, {"name": "Anton Capital Entertainment (ACE)", "id": 20664}, {"name": "Silver Pictures", "id": 1885}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}], "release_date": "2014-02-28", "popularity": 2.30894522979833, "original_title": "Non-Stop", "budget": 50000000, "cast": [{"name": "Liam Neeson", "character": "Bill Marks", "id": 3896, "credit_id": "52fe4e629251416c75154b4d", "cast_id": 11, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Jen Summers", "id": 1231, "credit_id": "52fe4e629251416c75154b49", "cast_id": 10, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Anson Mount", "character": "Jack Hammond", "id": 56675, "credit_id": "52fe4e629251416c75154b45", "cast_id": 9, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 2}, {"name": "Michelle Dockery", "character": "Nancy", "id": 70904, "credit_id": "52fe4e629251416c75154b51", "cast_id": 12, "profile_path": "/lbXBpE9jUITuDWzI9YPOR6Ej1eq.jpg", "order": 3}, {"name": "Bar Paly", "character": "Iris Marianne", "id": 963117, "credit_id": "52fe4e629251416c75154b55", "cast_id": 13, "profile_path": "/e3BkVd6wXrJvTlBfoosuGkAKSTp.jpg", "order": 4}, {"name": "Corey Stoll", "character": "Austin", "id": 74541, "credit_id": "52fe4e629251416c75154b59", "cast_id": 14, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 5}, {"name": "Scoot McNairy", "character": "Tom Bowen", "id": 59233, "credit_id": "52fe4e629251416c75154b5d", "cast_id": 15, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 6}, {"name": "Linus Roache", "character": "David McMillan", "id": 3900, "credit_id": "52fe4e629251416c75154b61", "cast_id": 16, "profile_path": "/ytVZCf8eFVo4JIUzu9JG6pZ64mz.jpg", "order": 7}, {"name": "Jon Abrahams", "character": "David Norton", "id": 17866, "credit_id": "52fe4e639251416c75154b65", "cast_id": 17, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 8}, {"name": "Lupita Nyong'o", "character": "Gwen", "id": 1267329, "credit_id": "52fe4e639251416c75154b69", "cast_id": 18, "profile_path": "/y3p0OMzIuAmcNt700RayK5A0k6t.jpg", "order": 9}, {"name": "Omar Metwally", "character": "Dr. Fahim Nasir", "id": 41309, "credit_id": "5324e0d09251411544000d7e", "cast_id": 19, "profile_path": "/dtXSRiNpZRpfsMNPgn5EhOA6o70.jpg", "order": 10}, {"name": "Jason Butler Harner", "character": "Kyle Rice", "id": 142294, "credit_id": "5324e0ea9251411544000d82", "cast_id": 20, "profile_path": "/nKGxvOnWjOJl9fCnLQuvAkWj3cX.jpg", "order": 11}, {"name": "Quinn McColgan", "character": "Becca", "id": 1009160, "credit_id": "5324e1069251411544000d85", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Corey Hawkins", "character": "Travis Mitchell", "id": 1154054, "credit_id": "5324e114925141652a000b9e", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Nate Parker", "character": "Zack White", "id": 77277, "credit_id": "5324e13292514113b9000d92", "cast_id": 23, "profile_path": "/tgE3z5WbXyaxKcgEEIaaEic988h.jpg", "order": 14}, {"name": "Shea Whigham", "character": "Agent Marenick", "id": 74242, "credit_id": "53b270c4c3a3682ee200791d", "cast_id": 31, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 15}, {"name": "Frank Deal", "character": "Charles Wheeler", "id": 171886, "credit_id": "53b2711c0e0a26597d0099f8", "cast_id": 32, "profile_path": "/k0Gn9ZgMuUQ0jFeVuvK6Vyh14ZU.jpg", "order": 16}, {"name": "Edoardo Costa", "character": "Herve Philbert", "id": 1332493, "credit_id": "53b2715d0e0a2659800098dc", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Jon Abrahams", "character": "David Norton", "id": 17866, "credit_id": "53b2718c0e0a2659750099ac", "cast_id": 34, "profile_path": "/93ASTZzX5o4tg17abZwYiCJONCd.jpg", "order": 18}, {"name": "Amanda Quaid", "character": "Emily Norton", "id": 1336187, "credit_id": "53b271c50e0a2659750099b7", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Beth Dixon", "character": "Older Women", "id": 164396, "credit_id": "53b271fe0e0a2659790098f8", "cast_id": 36, "profile_path": null, "order": 20}, {"name": "Cameron Moir", "character": "Steward", "id": 1310853, "credit_id": "53b272350e0a265989009bb6", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Annika Pergament", "character": "NY1 Reporter", "id": 1129795, "credit_id": "53b2727e0e0a2659800098f5", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Victoria Arbiter", "character": "Tilkynna 3 Reporter", "id": 1447346, "credit_id": "5518d47c92514115000035a9", "cast_id": 54, "profile_path": null, "order": 23}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe4e629251416c75154b17", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 6.9, "runtime": 106}, "37165": {"poster_path": "/EelZzudHRvJmjWccWscN1S5vmI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 264118201, "overview": "Truman Burbank is the star of \"The Truman Show\", a 24-hour-a-day \"reality\" TV show that broadcasts every aspect of his life -- live and in color -- without his knowledge. His entire life has been an unending soap opera for consumption by the rest of the world. And everyone he knows--including his wife and his best friend -- is really an actor, paid to be part of his life.", "video": false, "id": 37165, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Truman Show", "tagline": "On the air. Unaware", "vote_count": 893, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120382", "adult": false, "backdrop_path": "/3xJbBYJdbm55bxPlLbWEbtWOsfP.jpg", "production_companies": [{"name": "Scott Rudin Productions", "id": 258}], "release_date": "1998-06-04", "popularity": 1.42403814272259, "original_title": "The Truman Show", "budget": 60000000, "cast": [{"name": "Jim Carrey", "character": "Truman Burbank", "id": 206, "credit_id": "52fe462d9251416c9104be07", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Laura Linney", "character": "Meryl Burbank / Hannah Gill", "id": 350, "credit_id": "52fe462d9251416c9104be0b", "cast_id": 2, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 1}, {"name": "Noah Emmerich", "character": "Marlon", "id": 11315, "credit_id": "52fe462d9251416c9104be0f", "cast_id": 3, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 2}, {"name": "Natascha McElhone", "character": "Lauren / Sylvia", "id": 11317, "credit_id": "52fe462d9251416c9104be13", "cast_id": 4, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 3}, {"name": "Ed Harris", "character": "Christof", "id": 228, "credit_id": "52fe462e9251416c9104be5b", "cast_id": 23, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 4}, {"name": "Holland Taylor", "character": "Truman's Mother", "id": 11318, "credit_id": "52fe462e9251416c9104be17", "cast_id": 5, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 5}, {"name": "Brian Delate", "character": "Truman's Father", "id": 6579, "credit_id": "52fe462e9251416c9104be1b", "cast_id": 6, "profile_path": "/i8Ses7u7vQZ6DNVmU0e3hzNbgXb.jpg", "order": 6}, {"name": "Blair Slater", "character": "Young Truman", "id": 116898, "credit_id": "52fe462e9251416c9104be1f", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Heidi Schanz", "character": "Vivien", "id": 11321, "credit_id": "52fe462e9251416c9104be23", "cast_id": 9, "profile_path": "/svkz78fByMnD4K5LbQx903ao5I0.jpg", "order": 8}, {"name": "Ron Taylor", "character": "Ron", "id": 116899, "credit_id": "52fe462e9251416c9104be27", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Don Taylor", "character": "Don", "id": 116900, "credit_id": "52fe462e9251416c9104be2b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Ted Raymond", "character": "Spencer", "id": 116901, "credit_id": "52fe462e9251416c9104be2f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Peter Krause", "character": "Lawrence", "id": 23119, "credit_id": "52fe462e9251416c9104be57", "cast_id": 22, "profile_path": "/fI0dpVKdPIcSiS7MAAo3lw6EcFD.jpg", "order": 12}, {"name": "O-Lan Jones", "character": "Bar Waitress", "id": 1912, "credit_id": "52fe462e9251416c9104be5f", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Krista Lynn Landolfi", "character": "Bar Waitress", "id": 1048405, "credit_id": "52fe462e9251416c9104be63", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Paul Giamatti", "character": "Control Room Director", "id": 13242, "credit_id": "53cc5d3ec3a3687775001cf9", "cast_id": 30, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 15}, {"name": "Harry Shearer", "character": "Mike Michaelson", "id": 6008, "credit_id": "53cc5d5ac3a3687771001c14", "cast_id": 31, "profile_path": "/qtGHYpWLbqQVY9ymVPtrJZV6MHg.jpg", "order": 16}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe462e9251416c9104be35", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 7.2, "runtime": 103}, "37169": {"poster_path": "/rhy5WMyLVmYQ9PfEM60pg25E3TL.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 0, "overview": "During a stopover in Germany in the middle of a carefree road trip through Europe, two American girls find themselves alone at night when their car breaks down in the woods. Searching for help at a nearby villa, they are wooed into the clutches of a deranged retired surgeon who explains his mad scientific vision to his captives' utter horror. They are to be the subjects of his sick lifetime fantasy: to be the first to connect people, one to the next, and in doing so bring to life \"the human centipede.\"", "video": false, "id": 37169, "genres": [{"id": 27, "name": "Horror"}], "title": "The Human Centipede (First Sequence)", "tagline": "Their flesh is his fantasy", "vote_count": 98, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iNRMelQcaKeVdinF28uU9YOmvYx.jpg", "poster_path": "/mv0MySTqfXg2ndthOkBg6bGwlnk.jpg", "id": 96671, "name": "The Human Centipede Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1467304", "adult": false, "backdrop_path": "/j2RqEGY3DW9teKb1vExFIFapWPc.jpg", "production_companies": [{"name": "Six Entertainment", "id": 5652}], "release_date": "2010-08-30", "popularity": 0.451327014898798, "original_title": "The Human Centipede (First Sequence)", "budget": 2011799, "cast": [{"name": "Dieter Laser", "character": "Dr. Heiter", "id": 23721, "credit_id": "52fe462e9251416c9104bf85", "cast_id": 2, "profile_path": "/eJ3uU8a7QacwQBEKmT3joEn8zBj.jpg", "order": 0}, {"name": "Ashley C. Williams", "character": "Lindsay", "id": 121574, "credit_id": "52fe462e9251416c9104bf89", "cast_id": 3, "profile_path": "/w3UGY8nqCfRhaeHtWL33eawwrgy.jpg", "order": 1}, {"name": "Ashlynn Yennie", "character": "Jenny", "id": 121575, "credit_id": "52fe462e9251416c9104bf8d", "cast_id": 4, "profile_path": "/g1vpTTRSxNcZRPUZiY5I10sbFki.jpg", "order": 2}, {"name": "Akihiro Kitamura", "character": "Katsuro", "id": 121576, "credit_id": "52fe462e9251416c9104bf91", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Andreas Leupold", "character": "Detective Kranz", "id": 121577, "credit_id": "52fe462e9251416c9104bf95", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Peter Blankenstein", "character": "Detective Voller", "id": 121578, "credit_id": "52fe462e9251416c9104bf99", "cast_id": 7, "profile_path": null, "order": 5}], "directors": [{"name": "Tom Six", "department": "Directing", "job": "Director", "credit_id": "52fe462e9251416c9104bf81", "profile_path": "/dkj0gsN4twgJqhQmI4EY2OnGW6D.jpg", "id": 118639}], "vote_average": 5.2, "runtime": 92}, "17332": {"poster_path": "/tqPc3IuujFScEAHMLb58eFiMBdy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31720158, "overview": "A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.", "video": false, "id": 17332, "genres": [{"id": 18, "name": "Drama"}], "title": "The Soloist", "tagline": "Life has a mind of its own", "vote_count": 58, "homepage": "http://www.soloistmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0821642", "adult": false, "backdrop_path": "/hktOZHkJTl3ZVfxyK0hpvLmp6lh.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}], "release_date": "2009-04-24", "popularity": 0.481516490736927, "original_title": "The Soloist", "budget": 60000000, "cast": [{"name": "Robert Downey Jr.", "character": "Steve Lopez", "id": 3223, "credit_id": "52fe471a9251416c7508dd77", "cast_id": 7, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "Nathaniel Ayers", "id": 134, "credit_id": "52fe471a9251416c7508dd7b", "cast_id": 8, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Catherine Keener", "character": "Mary Weston", "id": 2229, "credit_id": "52fe471a9251416c7508dd7f", "cast_id": 9, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 2}, {"name": "Nelsan Ellis", "character": "David Carter", "id": 81697, "credit_id": "52fe471a9251416c7508dd83", "cast_id": 10, "profile_path": "/uRPoXULZniUyOyInWHiP1b79H0Y.jpg", "order": 3}, {"name": "Michael Bunin", "character": "Adam Crane", "id": 81698, "credit_id": "52fe471a9251416c7508dd87", "cast_id": 11, "profile_path": "/wReY9uWkTM9A2z68gr3F8CN3cPu.jpg", "order": 4}, {"name": "Tom Hollander", "character": "Graham Claydon", "id": 2441, "credit_id": "52fe471a9251416c7508dda3", "cast_id": 16, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 5}, {"name": "Lisa Gay Hamilton", "character": "Jennifer Ayers", "id": 64908, "credit_id": "52fe471a9251416c7508dda7", "cast_id": 17, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 6}, {"name": "Rachael Harris", "character": "Leslie Bloom", "id": 46074, "credit_id": "52fe471a9251416c7508ddab", "cast_id": 18, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 7}, {"name": "Stephen Root", "character": "Curt Reynolds", "id": 17401, "credit_id": "52fe471a9251416c7508ddaf", "cast_id": 19, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 8}, {"name": "Lorraine Toussaint", "character": "Flo Ayers", "id": 81726, "credit_id": "52fe471a9251416c7508ddb3", "cast_id": 20, "profile_path": "/tHvHTU5gV68sNig0kUBatXWuwt9.jpg", "order": 9}, {"name": "Jena Malone", "character": "Cheery Lab Tech", "id": 20089, "credit_id": "52fe471a9251416c7508ddb7", "cast_id": 21, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 10}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe471a9251416c7508dd55", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.0, "runtime": 109}, "12610": {"poster_path": "/2NvnoaJflAEcT0zlzbS4hlwrDZX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13596911, "overview": "A policeman white blood cell, with the help of a cold pill, must stop a deadly virus from destroying the human they live in, Frank.", "video": false, "id": 12610, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Osmosis Jones", "tagline": "Every BODY needs a hero", "vote_count": 59, "homepage": "http://www.osmosisjones.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0181739", "adult": false, "backdrop_path": "/wiaByoT3R75rVQSQaDq4iQDQxHY.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Bros. Entertainment", "id": 17}], "release_date": "2001-08-07", "popularity": 0.526736816079624, "original_title": "Osmosis Jones", "budget": 75000000, "cast": [{"name": "Chris Rock", "character": "Osmosis Jones (voice)", "id": 2632, "credit_id": "52fe45069251416c750491d7", "cast_id": 1, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Thrax (voice)", "id": 2975, "credit_id": "52fe45069251416c750491db", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "David Hyde Pierce", "character": "Drix (voice)", "id": 11076, "credit_id": "52fe45069251416c750491df", "cast_id": 3, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 2}, {"name": "Brandy Norwood", "character": "Leah (voice)", "id": 33285, "credit_id": "52fe45069251416c750491e3", "cast_id": 4, "profile_path": "/2HA5qGd6MSVM6hqE8yclbpnOfgw.jpg", "order": 3}, {"name": "Bill Murray", "character": "Frank Detomello", "id": 1532, "credit_id": "52fe45069251416c750491e7", "cast_id": 5, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 4}, {"name": "Molly Shannon", "character": "Mrs. Boyd", "id": 28640, "credit_id": "52fe45069251416c750491eb", "cast_id": 6, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 5}, {"name": "William Shatner", "character": "Mayor Phlegmming (voice)", "id": 1748, "credit_id": "541142040e0a26663f000e74", "cast_id": 22, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 6}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe45069251416c750491f1", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe45069251416c7504923f", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.4, "runtime": 95}, "168259": {"poster_path": "/dCgm7efXDmiABSdWDHBDBx2jwmn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1158392032, "overview": "Continuing the global exploits in the unstoppable franchise built on speed, Vin Diesel, Paul Walker and Dwayne Johnson lead the returning cast of Fast & Furious 7. James Wan directs this chapter of the hugely successful series that also welcomes back favorites Michelle Rodriguez, Jordana Brewster, Tyrese Gibson, Chris \"Ludacris\" Bridges, Elsa Pataky and Lucas Black. They are joined by international action stars new to the franchise including Jason Statham, Djimon Hounsou, Tony Jaa, Ronda Rousey and Kurt Russell.", "video": false, "id": 168259, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Furious 7", "tagline": "Vengeance Hits Home", "vote_count": 460, "homepage": "http://www.furious7.com/", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2820852", "adult": false, "backdrop_path": "/c1OSRvorPXvGtFka7mgV6Jcw6jd.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Universal Pictures", "id": 33}], "release_date": "2015-04-03", "popularity": 33.4508207052021, "original_title": "Furious 7", "budget": 190000000, "cast": [{"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "5431dfd10e0a265915002c34", "cast_id": 17, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Dwayne Johnson", "character": "Luke Hobbs", "id": 18918, "credit_id": "5431dfdbc3a36831a6004376", "cast_id": 18, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 1}, {"name": "Jason Statham", "character": "Deckard Shaw", "id": 976, "credit_id": "5431dfc70e0a265872002bd5", "cast_id": 16, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 2}, {"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "5431dfe4c3a3681143002b98", "cast_id": 19, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 3}, {"name": "Lucas Black", "character": "Sean Boswell", "id": 155, "credit_id": "5431dfbb0e0a265915002c2d", "cast_id": 15, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 4}, {"name": "Michelle Rodriguez", "character": "Letty Ortiz", "id": 17647, "credit_id": "5431dfeec3a36811ef002c75", "cast_id": 20, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 5}, {"name": "Kurt Russell", "character": "Mr. Nobody", "id": 6856, "credit_id": "5431dffa0e0a265872002bdf", "cast_id": 22, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 6}, {"name": "Elsa Pataky", "character": "Elena", "id": 73269, "credit_id": "5431e003c3a36811ef002c7c", "cast_id": 23, "profile_path": "/c1km2kqasJT9GTISMbBZpp3jbuR.jpg", "order": 7}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "5431e00dc3a36811ef002c7e", "cast_id": 24, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 8}, {"name": "Ronda Rousey", "character": "Kara", "id": 997887, "credit_id": "5431dff40e0a2646490043fa", "cast_id": 21, "profile_path": "/rspN0StWezXvYevDlN6AOJeg9rA.jpg", "order": 9}, {"name": "Djimon Hounsou", "character": "Slim", "id": 938, "credit_id": "5431e015c3a36831a90040da", "cast_id": 25, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 10}, {"name": "Tyrese Gibson", "character": "Roman Pearce", "id": 8169, "credit_id": "5431e0310e0a2656e2002c95", "cast_id": 28, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 11}, {"name": "Nathalie Emmanuel", "character": "Megan", "id": 1251069, "credit_id": "5431e026c3a36831ac004333", "cast_id": 27, "profile_path": "/h8IpkPu419RtRGYCDrMOesRuxIB.jpg", "order": 12}, {"name": "Iggy Azalea", "character": "Female Racer", "id": 1364893, "credit_id": "5431e01c0e0a265834002c97", "cast_id": 26, "profile_path": "/9exqnQwXU3kHeJ6AYgWZmHjNBn5.jpg", "order": 13}, {"name": "Tony Jaa", "character": "Louie Tran", "id": 57207, "credit_id": "5431e04a0e0a26464300432c", "cast_id": 30, "profile_path": "/qq0uXKe3aKaAE04QQ0BvbbFFufF.jpg", "order": 14}, {"name": "Shad Moss", "character": "Twinkie", "id": 58197, "credit_id": "5431e03e0e0a265872002bf2", "cast_id": 29, "profile_path": "/A1rHY9B5R9cIQshClcJxBYINg1m.jpg", "order": 15}, {"name": "Ludacris", "character": "Tej Parker", "id": 8171, "credit_id": "5431e0520e0a2658b2002c3c", "cast_id": 31, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 16}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4cc8c3a36847f823e699", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 7.8, "runtime": 140}, "4421": {"poster_path": "/yf4zJg6ACAhH4fkHSdEDrBUuEyg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48169156, "overview": "A female Senator succeeds in enrolling a woman into Combined Reconnaissance Team training where everyone expects her to fail.", "video": false, "id": 4421, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "G.I. Jane", "tagline": "Failure is not an option.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0119173", "adult": false, "backdrop_path": "/khmwGfkfNgF6gnFWC8SlT906Pjc.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Hollywood Pictures", "id": 915}, {"name": "First Independent Films", "id": 1643}, {"name": "Largo Entertainment", "id": 1644}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Trap-Two-Zero Productions", "id": 1646}], "release_date": "1997-08-22", "popularity": 0.571248592739223, "original_title": "G.I. Jane", "budget": 50000000, "cast": [{"name": "Demi Moore", "character": "Lieutenant Jordan O'Neil", "id": 3416, "credit_id": "52fe43c1c3a36847f806d0cd", "cast_id": 1, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 0}, {"name": "Viggo Mortensen", "character": "Master Chief John James Urgayle", "id": 110, "credit_id": "52fe43c1c3a36847f806d0d1", "cast_id": 2, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 1}, {"name": "Anne Bancroft", "character": "Senator Lillian DeHaven", "id": 10774, "credit_id": "52fe43c1c3a36847f806d0d5", "cast_id": 3, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 2}, {"name": "Jason Beghe", "character": "Royce", "id": 37203, "credit_id": "52fe43c1c3a36847f806d0d9", "cast_id": 4, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 3}, {"name": "Daniel von Bargen", "character": "Theodore Hayes", "id": 1473, "credit_id": "52fe43c1c3a36847f806d0dd", "cast_id": 5, "profile_path": "/fFiiZCvBCqQ4xmCzYpMJQ7xboP3.jpg", "order": 4}, {"name": "John Michael Higgins", "character": "Stabschef", "id": 8265, "credit_id": "52fe43c1c3a36847f806d0e1", "cast_id": 6, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 5}, {"name": "Kevin Gage", "character": "Sergeant Max Pyro", "id": 34839, "credit_id": "52fe43c1c3a36847f806d0e5", "cast_id": 7, "profile_path": "/shMqCosEFquPy6qB8RfCCcDPq7M.jpg", "order": 6}, {"name": "David Warshofsky", "character": "Sergeant Johns", "id": 37204, "credit_id": "52fe43c1c3a36847f806d0e9", "cast_id": 8, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 7}, {"name": "David Vadim", "character": "Sergeant Cortez", "id": 37205, "credit_id": "52fe43c1c3a36847f806d0ed", "cast_id": 9, "profile_path": "/bvwt3dtEqCmZBPfxTCuDTCPPFEk.jpg", "order": 8}, {"name": "Morris Chestnut", "character": "McCool", "id": 9779, "credit_id": "52fe43c1c3a36847f806d0f1", "cast_id": 10, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 9}, {"name": "Josh Hopkins", "character": "F. Lee Montgomery", "id": 31532, "credit_id": "52fe43c1c3a36847f806d0f5", "cast_id": 11, "profile_path": "/4FF6p6G6SAUDJcfOx6GSFQrfTfq.jpg", "order": 10}, {"name": "Jim Caviezel", "character": "Slov", "id": 8767, "credit_id": "52fe43c1c3a36847f806d0f9", "cast_id": 12, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 11}, {"name": "Boyd Kestner", "character": "Wick", "id": 37206, "credit_id": "52fe43c1c3a36847f806d0fd", "cast_id": 13, "profile_path": "/iZYCIX8dn8HnaByEIOlqFDylm9Z.jpg", "order": 12}, {"name": "Angel David", "character": "Newberry", "id": 37207, "credit_id": "52fe43c1c3a36847f806d101", "cast_id": 14, "profile_path": "/mOYTIi8x5wBP198tcfkSGLiQ92h.jpg", "order": 13}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43c1c3a36847f806d107", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.1, "runtime": 125}, "82657": {"poster_path": "/8fJBq78VRKoV9e3WE0H2xfmQm2B.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Flight 7500 departs Los Angeles International Airport bound for Tokyo. As the overnight flight makes its way over the Pacific Ocean during its ten-hour course, the passengers encounter what appears to be a supernatural force in the cabin.", "video": false, "id": 82657, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "7500", "tagline": "At 30,000 feet. There's Nowhere to Run.", "vote_count": 59, "homepage": "http://www.7500movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1975159", "adult": false, "backdrop_path": "/cobq7rVabMhF7L3tDQM9PO5pSld.jpg", "production_companies": [{"name": "Vertigo Entertainment", "id": 829}, {"name": "CBS Films", "id": 5490}, {"name": "Ozla Pictures", "id": 2617}, {"name": "Ozla Productions", "id": 4777}], "release_date": "2014-05-16", "popularity": 1.22142343444518, "original_title": "7500", "budget": 0, "cast": [{"name": "Ryan Kwanten", "character": "Brad Martin", "id": 133212, "credit_id": "52fe48659251416c9108af41", "cast_id": 16, "profile_path": "/gbAhDfCKKUtGJhQJIukkiZGgQBW.jpg", "order": 0}, {"name": "Amy Smart", "character": "Pia Martin", "id": 20189, "credit_id": "52fe48659251416c9108af39", "cast_id": 14, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Leslie Bibb", "character": "Laura Baxter", "id": 57451, "credit_id": "52fe48659251416c9108af35", "cast_id": 13, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 2}, {"name": "Jamie Chung", "character": "Suzy Lee", "id": 78324, "credit_id": "52fe48659251416c9108af2d", "cast_id": 11, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 3}, {"name": "Scout Taylor-Compton", "character": "Jacinta Bloch", "id": 21318, "credit_id": "52fe48659251416c9108af3d", "cast_id": 15, "profile_path": "/w0fiP2VOXkHJclbElyOEBuDyONI.jpg", "order": 4}, {"name": "Nicky Whelan", "character": "Liz Lewis", "id": 212833, "credit_id": "52fe48659251416c9108af31", "cast_id": 12, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 5}, {"name": "Jerry Ferrara", "character": "Rick", "id": 98953, "credit_id": "52fe48659251416c9108af4d", "cast_id": 19, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 6}, {"name": "Christian Serratos", "character": "Raquel Mendoza", "id": 84224, "credit_id": "52fe48659251416c9108af49", "cast_id": 18, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 7}, {"name": "Alex Frost", "character": "Jake", "id": 19195, "credit_id": "52fe48659251416c9108af51", "cast_id": 20, "profile_path": "/ip1ABnG49oeE5bOS78bAu8whdeI.jpg", "order": 8}, {"name": "Rick Kelly", "character": "Lance Morrell", "id": 1369055, "credit_id": "542b2d97c3a36868fe000240", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Johnathon Schaech", "character": "Captain Haining", "id": 51670, "credit_id": "52fe48659251416c9108af45", "cast_id": 17, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 10}, {"name": "Ben Sharples", "character": "Jack Hafey", "id": 1099724, "credit_id": "542b2daac3a36868fe000245", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "Takashi Shimizu", "department": "Directing", "job": "Director", "credit_id": "52fe48659251416c9108aef3", "profile_path": "/zY1UnpOyyzreAX2cj1qRcqMwIH3.jpg", "id": 20310}], "vote_average": 5.5, "runtime": 97}, "18487": {"poster_path": "/rqbG1uRKSNDLnDx1Jl7LBc4AtSy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150166126, "overview": "Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.", "video": false, "id": 18487, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Taking of Pelham 123", "tagline": "I can't get it out of my head. I'm gonna die today.", "vote_count": 274, "homepage": "http://catchthetrain.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1111422", "adult": false, "backdrop_path": "/eltn62uDNkDg27dhQS6nVvmLKIU.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Escape Artists", "id": 1423}], "release_date": "2009-06-11", "popularity": 0.913579650256586, "original_title": "The Taking of Pelham 123", "budget": 100000000, "cast": [{"name": "Denzel Washington", "character": "Walter Garber", "id": 5292, "credit_id": "52fe47809251416c7509bafb", "cast_id": 2, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "John Travolta", "character": "Ryder", "id": 8891, "credit_id": "52fe47809251416c7509baff", "cast_id": 3, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Luis Guzm\u00e1n", "character": "Phil Ramos", "id": 40481, "credit_id": "52fe47809251416c7509bb03", "cast_id": 4, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 2}, {"name": "Victor Gojcaj", "character": "Bashkim", "id": 84318, "credit_id": "52fe47809251416c7509bb07", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "John Turturro", "character": "Camonetti", "id": 1241, "credit_id": "52fe47809251416c7509bb0b", "cast_id": 6, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 4}, {"name": "James Gandolfini", "character": "Mayor", "id": 4691, "credit_id": "52fe47809251416c7509bb0f", "cast_id": 7, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 5}, {"name": "Michael Rispoli", "character": "John Johnson", "id": 18313, "credit_id": "52fe47809251416c7509bb13", "cast_id": 8, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 6}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Delgado", "id": 72985, "credit_id": "52fe47809251416c7509bb17", "cast_id": 9, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 7}, {"name": "Chance Kelly", "character": "ESU Captain", "id": 17194, "credit_id": "52fe47809251416c7509bb3f", "cast_id": 16, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 8}, {"name": "Alice Kremelberg", "character": "George's Girlfriend", "id": 1357037, "credit_id": "53fc39f50e0a267a7b009c35", "cast_id": 28, "profile_path": "/i5eYcWhuOPuSAXtj0hue0WX9O3k.jpg", "order": 9}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe47809251416c7509baf7", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.1, "runtime": 106}, "12620": {"poster_path": "/8dwE6Uq5JUC82yEr8N4wzoRS9Rs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sexpot Shelley Darlington lives comfortably at the Playboy Mansion, until a jealous rival gets her tossed out on her tail. With nowhere else to go, she winds up at Zeta Alpha Zeta sorority. The seven socially inept Zetas will lose their house unless they can attract more pledges; to do that, they need to learn the ways of makeup and men from an expert.", "video": false, "id": 12620, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The House Bunny", "tagline": "They wanted a role model. They got a Playmate.", "vote_count": 120, "homepage": "http://www.thehousebunny.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0852713", "adult": false, "backdrop_path": "/lR71zfC8uQjEloVAVicsAogZl6E.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2008-08-22", "popularity": 0.677009620641116, "original_title": "The House Bunny", "budget": 0, "cast": [{"name": "Anna Faris", "character": "Shelley", "id": 1772, "credit_id": "52fe45099251416c75049795", "cast_id": 23, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 0}, {"name": "Emma Stone", "character": "Natalie", "id": 54693, "credit_id": "52fe45089251416c75049723", "cast_id": 2, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Kat Dennings", "character": "Mona", "id": 52852, "credit_id": "52fe45089251416c75049727", "cast_id": 3, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 2}, {"name": "Katharine McPhee", "character": "Harmony", "id": 77088, "credit_id": "52fe45099251416c750497a7", "cast_id": 27, "profile_path": "/geXNN1MvP6S581lL9pyAd9LaAAF.jpg", "order": 3}, {"name": "Rumer Willis", "character": "Joanne", "id": 20848, "credit_id": "52fe45089251416c75049737", "cast_id": 7, "profile_path": "/mj8reEFyNEmeYAO3hsmLUaDfNO0.jpg", "order": 4}, {"name": "Hugh Hefner", "character": "Hugh Hefner", "id": 31309, "credit_id": "52fe45089251416c7504972b", "cast_id": 4, "profile_path": "/3BS3PEHxgqr7G1ItTpCGzhSFViV.jpg", "order": 5}, {"name": "Christopher McDonald", "character": "Dean Simmons", "id": 4443, "credit_id": "52fe45089251416c7504972f", "cast_id": 5, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 6}, {"name": "Beverly D'Angelo", "character": "Mrs. Hagstrom", "id": 821, "credit_id": "52fe45089251416c75049733", "cast_id": 6, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 7}, {"name": "Kiely Williams", "character": "Lilly", "id": 74046, "credit_id": "52fe45099251416c7504979f", "cast_id": 25, "profile_path": "/svjs9Rw3wYQzX8BNwBmvHGk4bAL.jpg", "order": 8}, {"name": "Tyson Ritter", "character": "Colby", "id": 74047, "credit_id": "52fe45099251416c750497a3", "cast_id": 26, "profile_path": "/uavIDRS6SI5omz8AzstUsXpbPNz.jpg", "order": 9}, {"name": "Colin Hanks", "character": "Oliver", "id": 3492, "credit_id": "52fe45099251416c750497ab", "cast_id": 28, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 10}, {"name": "Sarah Mason", "character": "Ashley", "id": 131723, "credit_id": "52fe45099251416c750497af", "cast_id": 29, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 11}], "directors": [{"name": "Fred Wolf", "department": "Directing", "job": "Director", "credit_id": "52fe45089251416c7504973d", "profile_path": null, "id": 66563}], "vote_average": 5.3, "runtime": 97}, "159117": {"poster_path": "/t1lILqp0Yfg0SncPyEw0DtR72G5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "ID", "name": "Indonesia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Inside a darkened house looms a column of TVs littered with VHS tapes, a pagan shrine to forgotten analog gods. The screens crackle and pop endlessly with monochrome vistas of static white noise permeating the brain and fogging concentration. But you must fight the urge to relax: this is no mere movie night. Those obsolete spools contain more than just magnetic tape. They are imprinted with the very soul of evil.", "video": false, "id": 159117, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "V/H/S/2", "tagline": "Who's tracking you?", "vote_count": 81, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wSdVm0uxEvYlwMxOAhipUUzey4w.jpg", "poster_path": "/esfk62fcqTWqB90dAHaVMbDWmbM.jpg", "id": 207621, "name": "V/H/S Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2450186", "adult": false, "backdrop_path": "/eBOfqLDN8jnq6SJfjHoYX7xJ19s.jpg", "production_companies": [{"name": "The Collective", "id": 15156}, {"name": "Bloody Disgusting", "id": 15157}, {"name": "8383 Productions", "id": 15158}, {"name": "Snoot Entertainment", "id": 15159}, {"name": "Haxan Films", "id": 15160}], "release_date": "2013-06-06", "popularity": 0.422189343044961, "original_title": "V/H/S/2", "budget": 0, "cast": [{"name": "Adam Wingard", "character": "Herman", "id": 98631, "credit_id": "52fe4c049251416c910ed035", "cast_id": 8, "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "order": 0}, {"name": "Lawrence Michael Levine", "character": "Larry", "id": 1031944, "credit_id": "52fe4c049251416c910ed039", "cast_id": 9, "profile_path": "/oE7B99wZa5fTKV8aH15isdJPkuY.jpg", "order": 1}, {"name": "Kelsy Abbott", "character": "Ayesha", "id": 1140571, "credit_id": "52fe4c049251416c910ed03d", "cast_id": 10, "profile_path": "/y8uWo8W2w4dRMVcOpjZMyYTlnBu.jpg", "order": 2}, {"name": "Hannah Hughes", "character": "Clarissa", "id": 98635, "credit_id": "52fe4c049251416c910ed041", "cast_id": 11, "profile_path": "/6I2MhnI8QNFAygIAQHg0aWBHvSP.jpg", "order": 3}, {"name": "L.C. Holt", "character": "Kyle", "id": 1140572, "credit_id": "52fe4c049251416c910ed045", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Hannah Al Rashid", "character": "", "id": 1028461, "credit_id": "52fe4c049251416c910ed049", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Fachry Albar", "character": "Adam", "id": 121799, "credit_id": "52fe4c049251416c910ed04d", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Oka Antara", "character": "Malik", "id": 1154465, "credit_id": "52fe4c049251416c910ed051", "cast_id": 15, "profile_path": "/2BY3OgPWwbpGN7rQEXGlm1muqtQ.jpg", "order": 7}, {"name": "Devon Brookshire", "character": "Amy", "id": 1180612, "credit_id": "52fe4c049251416c910ed055", "cast_id": 16, "profile_path": "/oKuOb8Ght7fY8Irsg8SNySMvfx3.jpg", "order": 8}, {"name": "Samantha Gracie", "character": "", "id": 1180613, "credit_id": "52fe4c049251416c910ed059", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Kevin Hunt", "character": "\"Eyeball Guy\"", "id": 1180615, "credit_id": "52fe4c049251416c910ed05d", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Epy Kusnandar", "character": "\"The Father\"", "id": 1180616, "credit_id": "52fe4c049251416c910ed061", "cast_id": 19, "profile_path": "/epfkHCgeWv4QErSoU6jMyTJKrPO.jpg", "order": 11}, {"name": "Carly Robell", "character": "\"BBQ Kid in Minivan\"", "id": 1180618, "credit_id": "52fe4c049251416c910ed065", "cast_id": 20, "profile_path": "/o0sqdPCrlSdc9xlIYKeljZ9i9jR.jpg", "order": 12}, {"name": "Mindy Robinson", "character": "Tabitha", "id": 1072882, "credit_id": "52fe4c049251416c910ed069", "cast_id": 21, "profile_path": "/m5KuG9QmgDW02cAgZNxINLs72R5.jpg", "order": 13}, {"name": "Jay Saunders", "character": "Biker", "id": 276917, "credit_id": "52fe4c049251416c910ed06d", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Jeremie Saunders", "character": "Zack", "id": 1180620, "credit_id": "52fe4c049251416c910ed071", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Andrew Suleiman", "character": "Johnny", "id": 936125, "credit_id": "52fe4c049251416c910ed075", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "John T. Woods", "character": "Dr. Fleischer", "id": 1145673, "credit_id": "52fe4c049251416c910ed079", "cast_id": 25, "profile_path": "/lGRkhFGIS5jgG7EdNQEPkCDQUGA.jpg", "order": 17}], "directors": [{"name": "Simon Barrett", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed00d", "profile_path": "/ucJy0Ia79AX6iLZr8A9NaBnVYaw.jpg", "id": 83858}, {"name": "Adam Wingard", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed013", "profile_path": "/1REtc4xYwyT2XcbGCJbCEtvBBwm.jpg", "id": 98631}, {"name": "Eduardo S\u00e1nchez", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed019", "profile_path": "/3ejhF82WeB3Au5z0a4ZbpXWd5QU.jpg", "id": 26850}, {"name": "Gregg Hale", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed01f", "profile_path": null, "id": 27757}, {"name": "Timo Tjahjanto", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed025", "profile_path": "/ijBr8CbarKspn3rtfOSI0PTqjMr.jpg", "id": 235430}, {"name": "Gareth Evans", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed02b", "profile_path": "/alW7ScKUxyiI2TOBYOZkACsLD7c.jpg", "id": 142013}, {"name": "Jason Eisener", "department": "Directing", "job": "Director", "credit_id": "52fe4c049251416c910ed031", "profile_path": "/4EJtYbZVXCUyjUHMLVomgcWqcsZ.jpg", "id": 141673}], "vote_average": 6.0, "runtime": 95}, "9904": {"poster_path": "/uxTtgh4tpSWVulXLCDqKU10cWXo.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37384046, "overview": "An adolescent lion is accidentally shipped from the New York Zoo to Africa. Now running free, his zoo pals must put aside their differences to help bring him back.", "video": false, "id": 9904, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Wild", "tagline": "The Circle Of Life, meets the big apple.", "vote_count": 63, "homepage": "http://www.disney.com/thewild", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0405469", "adult": false, "backdrop_path": "/rmGelSNp5kRRIk5VtdAxwhYFmO3.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-04-13", "popularity": 0.484140488510823, "original_title": "The Wild", "budget": 80000000, "cast": [{"name": "Kiefer Sutherland", "character": "Samson (voice)", "id": 2628, "credit_id": "52fe4545c3a36847f80c4ab3", "cast_id": 26, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "James Belushi", "character": "Benny (voice)", "id": 26485, "credit_id": "52fe4545c3a36847f80c4ad7", "cast_id": 34, "profile_path": "/AplV1ikSo3Zn93hhy5ht7Y7sQio.jpg", "order": 1}, {"name": "Eddie Izzard", "character": "Nigel (voice)", "id": 1926, "credit_id": "52fe4545c3a36847f80c4ad3", "cast_id": 33, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 2}, {"name": "Janeane Garofalo", "character": "Bridget (voice)", "id": 21197, "credit_id": "52fe4545c3a36847f80c4acf", "cast_id": 32, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 3}, {"name": "William Shatner", "character": "Kazar (voice)", "id": 1748, "credit_id": "52fe4545c3a36847f80c4adf", "cast_id": 36, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Richard Kind", "character": "Larry (voice)", "id": 21125, "credit_id": "52fe4545c3a36847f80c4adb", "cast_id": 35, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 5}, {"name": "Greg Cipes", "character": "Ryan (voice)", "id": 60227, "credit_id": "52fe4545c3a36847f80c4ae3", "cast_id": 37, "profile_path": "/puosymhDFIJhjmQrTwkVTaWC7mx.jpg", "order": 6}, {"name": "Colin Hay", "character": "Fergus Flamingo (voice)", "id": 60228, "credit_id": "52fe4545c3a36847f80c4af7", "cast_id": 42, "profile_path": "/m1bF35sN0h9lafZ1lxRGNtCdBBi.jpg", "order": 7}, {"name": "Miles Marsico", "character": "Duke (voice)", "id": 60229, "credit_id": "52fe4545c3a36847f80c4aef", "cast_id": 40, "profile_path": null, "order": 8}, {"name": "Jack De Sena", "character": "Eze (voice)", "id": 60230, "credit_id": "52fe4545c3a36847f80c4af3", "cast_id": 41, "profile_path": "/iPRBbpKuY4tb06aV0UqKSjFJW7O.jpg", "order": 9}, {"name": "Don Cherry", "character": "Penguin MC (voice)", "id": 18594, "credit_id": "52fe4545c3a36847f80c4ae7", "cast_id": 38, "profile_path": "/g1oI2EagXa2JRtEMQLbk2qiuxiF.jpg", "order": 10}, {"name": "Christian Argueta", "character": "Hamir (voice)", "id": 60231, "credit_id": "52fe4545c3a36847f80c4aff", "cast_id": 44, "profile_path": null, "order": 11}, {"name": "David Cowgill", "character": "Hamir (voice)", "id": 60232, "credit_id": "52fe4545c3a36847f80c4b03", "cast_id": 45, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 12}, {"name": "Lenny Venito", "character": "Stan (voice)", "id": 37157, "credit_id": "52fe4545c3a36847f80c4aeb", "cast_id": 39, "profile_path": "/sjZbk2n2X6cq5A7Pb6ufQoAVZNz.jpg", "order": 13}, {"name": "Joseph Siravo", "character": "Carmine (voice)", "id": 47770, "credit_id": "52fe4545c3a36847f80c4afb", "cast_id": 43, "profile_path": "/rh9Vt4JH5MZKMolhOzElTBEWic5.jpg", "order": 14}, {"name": "Colin Cunningham", "character": "Hyrax (voice)", "id": 1218926, "credit_id": "52fe4545c3a36847f80c4b1d", "cast_id": 52, "profile_path": "/3EW9uprWwgzJy2jIcN0QFzKbVFX.jpg", "order": 15}, {"name": "Patrick Warburton", "character": "Blag (voice)", "id": 9657, "credit_id": "52fe4545c3a36847f80c4b07", "cast_id": 46, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 16}, {"name": "Jonathan Kimmel", "character": "Scab (voice)", "id": 60234, "credit_id": "52fe4545c3a36847f80c4b0f", "cast_id": 49, "profile_path": "/bRSl5ERbBkjzSH86HqNU9U3Vbwp.jpg", "order": 17}, {"name": "Eddie Gossling", "character": "Scraw (voice)", "id": 60236, "credit_id": "52fe4545c3a36847f80c4b13", "cast_id": 50, "profile_path": "/bczinioO5pu79NAGgWPTil910Jh.jpg", "order": 18}, {"name": "Clinton Leupp", "character": "Mama Hippo (voice)", "id": 60235, "credit_id": "52fe4545c3a36847f80c4b0b", "cast_id": 48, "profile_path": "/dqRjBpJfFhT4qMyLQOnezuOsOh9.jpg", "order": 19}], "directors": [{"name": "Steve 'Spaz' Williams", "department": "Directing", "job": "Director", "credit_id": "52fe4545c3a36847f80c4a3d", "profile_path": "/zD0Qyhjjg87fDdEDJbqOFsSMtjm.jpg", "id": 60207}], "vote_average": 5.0, "runtime": 94}, "4437": {"poster_path": "/9Rcz2n16HEYRi2EKGliByP6ESYR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40400657, "overview": "A joint American-Soviet space expedition is sent to Jupiter to learn went happened to the U.S.S. Discovery against a backdrop of growing global tensions. Among the mysteries the expedition must explain are the appearance of a huge black monolith in Jupiter's orbit and the fate of H.A.L., the Discovery's sentient computer.", "video": false, "id": 4437, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "2010", "tagline": "The year a small group of Americans and Russians sat out on the greatest adventure of them all... to see if there is life beyond the stars.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/15FumSExI9SRoL7QJWZAsA0b10c.jpg", "poster_path": "/i1WdRtc6aObiwGz5NU8WWPW3r1N.jpg", "id": 4438, "name": "The Space Odyssey Series"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0086837", "adult": false, "backdrop_path": "/sESzXLxl1f8vf94zPr8yngIddro.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1984-12-06", "popularity": 0.737912206825857, "original_title": "2010", "budget": 28000000, "cast": [{"name": "Roy Scheider", "character": "Dr. Heywood Floyd", "id": 6355, "credit_id": "52fe43c1c3a36847f806d365", "cast_id": 10, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 0}, {"name": "John Lithgow", "character": "Dr. Walter Curnow", "id": 12074, "credit_id": "52fe43c1c3a36847f806d369", "cast_id": 11, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 1}, {"name": "Helen Mirren", "character": "Tanya Kirbuk", "id": 15735, "credit_id": "52fe43c1c3a36847f806d36d", "cast_id": 12, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 2}, {"name": "Bob Balaban", "character": "Dr. R. Chandra", "id": 12438, "credit_id": "52fe43c1c3a36847f806d371", "cast_id": 13, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 3}, {"name": "Keir Dullea", "character": "Dave Bowman", "id": 245, "credit_id": "52fe43c1c3a36847f806d375", "cast_id": 14, "profile_path": "/vRkyWW3p2Xd1FfMBKZWV2LQZlkR.jpg", "order": 4}, {"name": "Dana Elcar", "character": "Dimitri Moisevitch", "id": 37712, "credit_id": "52fe43c1c3a36847f806d379", "cast_id": 16, "profile_path": "/8qDt9Rl10UCGnUtOZvlCwZiHTHI.jpg", "order": 5}, {"name": "Taliesin Jaffe", "character": "Christopher Floyd", "id": 37713, "credit_id": "52fe43c1c3a36847f806d37d", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "James McEachin", "character": "Victor Milson", "id": 37714, "credit_id": "52fe43c1c3a36847f806d381", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Oleg Rudnik", "character": "Dr. Vasili Orlov", "id": 37715, "credit_id": "52fe43c1c3a36847f806d385", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Madolyn Smith Osborne", "character": "Caroline Floyd", "id": 66079, "credit_id": "52fe43c1c3a36847f806d389", "cast_id": 20, "profile_path": "/589nvAruYaM7B5m1Y6ntKhNbATw.jpg", "order": 9}], "directors": [{"name": "Peter Hyams", "department": "Directing", "job": "Director", "credit_id": "52fe43c1c3a36847f806d337", "profile_path": "/zbELGEBxySY0KqZv63DXeJdfMVU.jpg", "id": 37710}], "vote_average": 6.4, "runtime": 116}, "4442": {"poster_path": "/sPvQvGZ9eHTNtNXkYl8AusWLstf.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105316267, "overview": "Folklore collectors and con artists, Jake and Will Grimm, travel from village to village pretending to protect townsfolk from enchanted creatures and performing exorcisms. They are put to the test, however, when they encounter a real magical curse in a haunted forest with real magical beings, requiring genuine courage.", "video": false, "id": 4442, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Brothers Grimm", "tagline": "Eliminating Evil Since 1812.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0355295", "adult": false, "backdrop_path": "/tn7EGGDPYqDn6T1boyfwhizyHkZ.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Reforma Films", "id": 1649}, {"name": "Dimension Films", "id": 7405}], "release_date": "2005-08-25", "popularity": 0.689086601532179, "original_title": "The Brothers Grimm", "budget": 88000000, "cast": [{"name": "Heath Ledger", "character": "Jacob Grimm", "id": 1810, "credit_id": "52fe43c1c3a36847f806d525", "cast_id": 2, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Matt Damon", "character": "Wilhelm Grimm", "id": 1892, "credit_id": "52fe43c1c3a36847f806d529", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Mackenzie Crook", "character": "Hidlick", "id": 1711, "credit_id": "52fe43c1c3a36847f806d52d", "cast_id": 4, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 2}, {"name": "Roger Ashton-Griffiths", "character": "Mayor", "id": 20243, "credit_id": "52fe43c2c3a36847f806d531", "cast_id": 5, "profile_path": "/3lvWs4Kz0aATpcSY7PyPhkKgH6W.jpg", "order": 3}, {"name": "Peter Stormare", "character": "Cavaldi", "id": 53, "credit_id": "52fe43c2c3a36847f806d535", "cast_id": 6, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 4}, {"name": "Jonathan Pryce", "character": "Delatombe", "id": 378, "credit_id": "52fe43c2c3a36847f806d539", "cast_id": 7, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 5}, {"name": "Monica Bellucci", "character": "K\u00f6nigin", "id": 28782, "credit_id": "52fe43c2c3a36847f806d53d", "cast_id": 8, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 6}, {"name": "Lena Headey", "character": "Angelika", "id": 17286, "credit_id": "52fe43c2c3a36847f806d541", "cast_id": 9, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 7}, {"name": "Richard Ridings", "character": "Bunst", "id": 6645, "credit_id": "52fe43c2c3a36847f806d545", "cast_id": 10, "profile_path": "/zzznosGBL8uEBUwqZHKcKsVZzWe.jpg", "order": 8}, {"name": "Barbora Lukesov\u00e1", "character": "Mother Grimm", "id": 37296, "credit_id": "52fe43c2c3a36847f806d549", "cast_id": 11, "profile_path": "/rjJ9MLP5RvFW0g8AskqXc9T92qG.jpg", "order": 9}, {"name": "Petr Ratimec", "character": "Young Will", "id": 1286965, "credit_id": "52fe43c2c3a36847f806d5a7", "cast_id": 27, "profile_path": "/zwda65xn6kJHHvYFYdwZb3KjrKW.jpg", "order": 10}, {"name": "Anna Rust", "character": "Sister Grimm", "id": 1286966, "credit_id": "52fe43c2c3a36847f806d5ab", "cast_id": 28, "profile_path": "/vfCgts2JARpZ5RFjqWuzxmZPphX.jpg", "order": 11}, {"name": "Jeremy Robson", "character": "Young Jacob", "id": 1286967, "credit_id": "52fe43c2c3a36847f806d5af", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Radim Kalvoda", "character": "Gendarme", "id": 1175617, "credit_id": "52fe43c2c3a36847f806d5b3", "cast_id": 30, "profile_path": "/6Xu7ZeRRMuZMWGzpzE80IZ6Pu7c.jpg", "order": 13}, {"name": "Martin Hofmann", "character": "Gendarme", "id": 1244677, "credit_id": "52fe43c2c3a36847f806d5b7", "cast_id": 31, "profile_path": "/pQms3JCrMlxdAGeyNeYq11Z5tvx.jpg", "order": 14}, {"name": "Josef Pepa Nos", "character": "German War Veteran", "id": 1286968, "credit_id": "52fe43c2c3a36847f806d5bb", "cast_id": 32, "profile_path": "/7HBv6BSYBYYEjtQledOkkCg9KYs.jpg", "order": 15}, {"name": "Harry Gilliam", "character": "Stable Boy", "id": 978081, "credit_id": "52fe43c2c3a36847f806d5bf", "cast_id": 33, "profile_path": "/yF7ctviSQ4ogRpUVlKBqjCOV8wc.jpg", "order": 16}, {"name": "Miroslav T\u00e1borsk\u00fd", "character": "Old Miller", "id": 47838, "credit_id": "52fe43c2c3a36847f806d5c3", "cast_id": 34, "profile_path": "/xfKw9ccMjOM7nRZc4nMFR0CZSIr.jpg", "order": 17}, {"name": "Marika Sarah Proch\u00e1zkov\u00e1", "character": "Miller's Daughter", "id": 1180339, "credit_id": "52fe43c2c3a36847f806d5c7", "cast_id": 35, "profile_path": "/cIzXXClr1mSG22HDqBwFGFZSsOj.jpg", "order": 18}, {"name": "Mackenzie Crook", "character": "Hidlick", "id": 1711, "credit_id": "52fe43c2c3a36847f806d5cb", "cast_id": 36, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 19}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe43c1c3a36847f806d521", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 5.4, "runtime": 118}, "20829": {"poster_path": "/uWgcmAIfYURUHJGhY4Rq1IXcJIg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61458982, "overview": "Famous and wealthy funnyman George Simmons doesn't give much thought to how he treats people until a doctor delivers stunning health news, forcing George to reevaluate his priorities with a little help from aspiring stand-up comic Ira.", "video": false, "id": 20829, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Funny People", "tagline": "George Simmons was prepared to die, but then a funny thing happened.", "vote_count": 71, "homepage": "http://www.funnypeoplemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1201167", "adult": false, "backdrop_path": "/yzEJW4dowe1RSpSdchaGi9eoHHU.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}, {"name": "Relativity Media", "id": 7295}, {"name": "Madison 23", "id": 11708}], "release_date": "2009-07-31", "popularity": 0.58562693906151, "original_title": "Funny People", "budget": 75000000, "cast": [{"name": "Adam Sandler", "character": "George Simmons", "id": 19292, "credit_id": "52fe43fcc3a368484e0092f7", "cast_id": 3, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Ira Wright", "id": 19274, "credit_id": "52fe43fcc3a368484e0092fb", "cast_id": 4, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Laura", "id": 41087, "credit_id": "52fe43fcc3a368484e0092ff", "cast_id": 5, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Eric Bana", "character": "Clarke", "id": 8783, "credit_id": "52fe43fcc3a368484e009303", "cast_id": 6, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 3}, {"name": "Jonah Hill", "character": "Leo Koenig", "id": 21007, "credit_id": "52fe43fcc3a368484e009307", "cast_id": 7, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 4}, {"name": "Jason Schwartzman", "character": "Mark Taylor Jackson", "id": 17881, "credit_id": "52fe43fcc3a368484e00930b", "cast_id": 8, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 5}, {"name": "RZA", "character": "Chuck", "id": 150, "credit_id": "52fe43fcc3a368484e00930f", "cast_id": 9, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 6}, {"name": "Aziz Ansari", "character": "Randy", "id": 86626, "credit_id": "52fe43fcc3a368484e009313", "cast_id": 10, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 7}, {"name": "Aubrey Plaza", "character": "Daisy Danby", "id": 119592, "credit_id": "52fe43fcc3a368484e00932f", "cast_id": 15, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 8}, {"name": "Maude Apatow", "character": "Mable", "id": 41090, "credit_id": "52fe43fcc3a368484e009375", "cast_id": 27, "profile_path": "/3VOawL9cIJD2btDRYWoOHnJIkAM.jpg", "order": 9}, {"name": "Iris Apatow", "character": "Ingrid", "id": 963429, "credit_id": "52fe43fcc3a368484e009379", "cast_id": 28, "profile_path": null, "order": 10}, {"name": "Torsten Voges", "character": "Dr. Lars", "id": 1238, "credit_id": "52fe43fcc3a368484e00937d", "cast_id": 29, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 11}, {"name": "Allan Wasserman", "character": "Dr. Stevens", "id": 123728, "credit_id": "52fe43fcc3a368484e009381", "cast_id": 30, "profile_path": "/u6xfuaLDoLMkSWHPW5I2njOsWPI.jpg", "order": 12}, {"name": "Wayne Federman", "character": "Comedy & Magic Manager", "id": 170759, "credit_id": "52fe43fcc3a368484e009385", "cast_id": 31, "profile_path": null, "order": 13}, {"name": "James Taylor", "character": "Himself", "id": 97351, "credit_id": "5304e19892514104bb21d4f2", "cast_id": 32, "profile_path": "/2biaEDZ8IiNihtUgDgZ0KSo4d4l.jpg", "order": 14}, {"name": "Paul Reiser", "character": "Himself", "id": 781, "credit_id": "5304e1ac92514104bb21d56e", "cast_id": 33, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 15}, {"name": "George Wallace", "character": "Himself", "id": 552139, "credit_id": "5304e1c292514104b51dabb9", "cast_id": 34, "profile_path": "/dlELhZZSyzTXY7IVkFzwwcfMlFU.jpg", "order": 16}, {"name": "Norm Macdonald", "character": "Himself", "id": 77075, "credit_id": "5304e21f92514104bb21d8e3", "cast_id": 35, "profile_path": "/5jAVTWdeGGtSCZ37jT4uOyP2O0T.jpg", "order": 17}, {"name": "Dave Attell", "character": "Himself", "id": 65923, "credit_id": "5304e22892514104bb21db01", "cast_id": 36, "profile_path": "/rj1NJS4PxhOarYZ3SHg8SY0FOsC.jpg", "order": 18}, {"name": "Eminem", "character": "Himself", "id": 325, "credit_id": "5304e23892514104b81f5281", "cast_id": 37, "profile_path": "/mKPPGlIZ2EiKb6LSC46cSzK2NEU.jpg", "order": 19}, {"name": "Sarah Silverman", "character": "Herself", "id": 7404, "credit_id": "5304e24492514104bb21e7fc", "cast_id": 38, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 20}, {"name": "Ray Romano", "character": "Himself", "id": 15757, "credit_id": "5304e25092514104b51db65e", "cast_id": 39, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 21}, {"name": "Bryan Batt", "character": "George's Agent", "id": 180422, "credit_id": "5304e26b92514104c11f714f", "cast_id": 40, "profile_path": "/dDfpQZ00K1poeqgTINj2D4D6SrF.jpg", "order": 22}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe43fcc3a368484e0092ed", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 5.3, "runtime": 146}, "2539": {"poster_path": "/sdZyL1GXa4Wcx7b5Hu8GpkfjZnl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A woman and her daughter emigrate from Mexico for a better life in America, where they start working for a family where the patriarch is a newly celebrated chef with an insecure wife.", "video": false, "id": 2539, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Spanglish", "tagline": "Every family has a hero.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371246", "adult": false, "backdrop_path": "/hWnwxqC91vYltwLkpysBroae96k.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Sony Pictures", "id": 34}], "release_date": "2004-12-17", "popularity": 0.555329853005955, "original_title": "Spanglish", "budget": 0, "cast": [{"name": "Adam Sandler", "character": "John Clasky", "id": 19292, "credit_id": "52fe435dc3a36847f804eb77", "cast_id": 7, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Deborah Clasky", "id": 4939, "credit_id": "52fe435dc3a36847f804eb7b", "cast_id": 8, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Paz Vega", "character": "Flor Moreno", "id": 3627, "credit_id": "52fe435dc3a36847f804eb7f", "cast_id": 9, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 2}, {"name": "Cloris Leachman", "character": "Evelyn Wright", "id": 9599, "credit_id": "52fe435dc3a36847f804eb83", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 3}, {"name": "Shelbie Bruce", "character": "Christina", "id": 25907, "credit_id": "52fe435dc3a36847f804eb87", "cast_id": 11, "profile_path": "/8vWag1ptHLrYO1DvuTOkEyCGBbj.jpg", "order": 4}, {"name": "Sarah Steele", "character": "Bernice", "id": 25908, "credit_id": "52fe435dc3a36847f804eb8b", "cast_id": 12, "profile_path": "/3ousg0fVS87CHLSoXRjhKtmJ8Wo.jpg", "order": 5}, {"name": "Ian Hyland", "character": "Georgie", "id": 25909, "credit_id": "52fe435dc3a36847f804eb8f", "cast_id": 13, "profile_path": "/kkDyz4ar65adYaWhUpNkKh07x9y.jpg", "order": 6}, {"name": "Victoria Luna", "character": "Cristina (sechsj\u00e4hrig)", "id": 25910, "credit_id": "52fe435dc3a36847f804eb93", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Cecilia Su\u00e1rez", "character": "Monica", "id": 25911, "credit_id": "52fe435dc3a36847f804eb97", "cast_id": 15, "profile_path": "/rVZA9Q0dCEwHYUUHoz4ZzWoeqEx.jpg", "order": 8}, {"name": "Ricardo Molina", "character": "Flor's Husband", "id": 25912, "credit_id": "52fe435dc3a36847f804eb9b", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Brenda Canela", "character": "Luz", "id": 17415, "credit_id": "52fe435dc3a36847f804eb9f", "cast_id": 17, "profile_path": null, "order": 10}], "directors": [{"name": "James L. Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe435dc3a36847f804eb55", "profile_path": "/9Hx9JbnQBChJhlfJTvmnYF8o8DK.jpg", "id": 3388}], "vote_average": 5.4, "runtime": 131}, "61791": {"poster_path": "/ddWSWgAjAhksNhMeeBTSqY6otIA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 482860185, "overview": "Scientist Will Rodman is determined to find a cure for Alzheimer's, the disease which has slowly consumed his father Charles. Will feels certain he is close to a breakthrough and tests his latest serum on apes, noticing dramatic increases in intelligence and brain activity in the primate subjects... Especially Caesar, his pet chimpanzee.", "video": false, "id": 61791, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Rise of the Planet of the Apes", "tagline": "Evolution Becomes Revolution.", "vote_count": 1626, "homepage": "http://www.apeswillrise.com/", "belongs_to_collection": {"backdrop_path": "/mepJpyqVtD6P65vgCU1ngGFEjs5.jpg", "poster_path": "/qQrEMycfVN2gRlKTLWGn0QdOnSk.jpg", "id": 173710, "name": "Planet of the Apes (Reboot) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1318514", "adult": false, "backdrop_path": "/caIpcr9xhvRcWfOMRDq3F5iIcLB.jpg", "production_companies": [{"name": "Dune Entertainment III", "id": 6332}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Ingenious Media", "id": 290}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2011-08-04", "popularity": 1.38463947881165, "original_title": "Rise of the Planet of the Apes", "budget": 93000000, "cast": [{"name": "Andy Serkis", "character": "Caesar", "id": 1333, "credit_id": "52fe4664c3a368484e08e201", "cast_id": 2, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 0}, {"name": "Karin Konoval", "character": "Maurice", "id": 58395, "credit_id": "52fe4664c3a368484e08e219", "cast_id": 9, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 1}, {"name": "Freida Pinto", "character": "Caroline Aranha", "id": 76792, "credit_id": "52fe4664c3a368484e08e205", "cast_id": 3, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 2}, {"name": "James Franco", "character": "Will Rodman", "id": 17051, "credit_id": "52fe4664c3a368484e08e1fd", "cast_id": 1, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 3}, {"name": "John Lithgow", "character": "Charles Rodman", "id": 12074, "credit_id": "5377b16dc3a368553a001f74", "cast_id": 33, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 4}, {"name": "Tyler Labine", "character": "Robert Franklin", "id": 51383, "credit_id": "52fe4664c3a368484e08e209", "cast_id": 4, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 5}, {"name": "David Hewlett", "character": "Hunsiker", "id": 5892, "credit_id": "52fe4664c3a368484e08e20d", "cast_id": 5, "profile_path": "/yntJ7Lur8LmjQ9rTfoVzlKb5WsX.jpg", "order": 6}, {"name": "David Oyelowo", "character": "Steven Jacobs", "id": 35013, "credit_id": "52fe4664c3a368484e08e211", "cast_id": 7, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 7}, {"name": "Brian Cox", "character": "John Landon", "id": 1248, "credit_id": "53bdf4f9c3a3684cdb002d7b", "cast_id": 36, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 8}, {"name": "Tom Felton", "character": "Dodge Landon", "id": 10993, "credit_id": "53bdf507c3a3684cdf0024b5", "cast_id": 37, "profile_path": "/wxdFHalGakBQScsf3dzB2t0VN89.jpg", "order": 9}, {"name": "Chelah Horsdal", "character": "Irena", "id": 70175, "credit_id": "52fe4664c3a368484e08e215", "cast_id": 8, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 10}, {"name": "Jesse Reid", "character": "Donnie Thompson", "id": 228890, "credit_id": "530ed231c3a368445f0001dc", "cast_id": 22, "profile_path": "/wl5wKdhMBPJMdPS3xRa2vK8ah8i.jpg", "order": 11}, {"name": "Tracy Spiridakos", "character": "Party Girl #2", "id": 208678, "credit_id": "530ed2a9c3a368445f0001e4", "cast_id": 23, "profile_path": "/26lnNaWhQhYDuPXBqhKa9IgXBDL.jpg", "order": 12}, {"name": "Christopher Gordon", "character": "Koda", "id": 189696, "credit_id": "536214760e0a2649bb001301", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Chris Shields", "character": "SFPD #2", "id": 198615, "credit_id": "53aca6be0e0a26598c000772", "cast_id": 35, "profile_path": "/cKxfPfZMqCingbrn6MK3OSUhUVF.jpg", "order": 14}], "directors": [{"name": "Rupert Wyatt", "department": "Directing", "job": "Director", "credit_id": "52fe4664c3a368484e08e21f", "profile_path": "/v3ws9iAETreGVuoHXKGFPkZszgy.jpg", "id": 77357}], "vote_average": 6.8, "runtime": 105}, "242022": {"poster_path": "/qaUeXI9am1IkEoDoccnBy5W6kA4.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Neil, Will and Simon receive an invite from Jay to join him in Australia whilst on his gap year, who promises them it\u2019s \u201dthe sex capital of the world\u201d. With their lives now rather dull compared to their hedonistic school days and legendary lads holiday, it\u2019s an offer they can\u2019t refuse. Once again, they put growing up temporarily on-hold, and embark on a backpacking holiday of a lifetime in an awful car, inspired by Peter Andre\u2019s \u2018Mysterious Girl\u2019. Will soon finds himself battling with the lads to do something cultural, whilst they focus their attention on drinking, girls, and annoying fellow travelers.", "video": false, "id": 242022, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Inbetweeners 2", "tagline": "", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yQyzPIMLpjWmwE2XMui2C4qTXOv.jpg", "id": 279959, "name": "The Inbetweeners Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3097204", "adult": false, "backdrop_path": "/pXeyVGVUXbgid4qOqEtNqJH4pfJ.jpg", "production_companies": [{"name": "Channel 4 Television Corporation", "id": 15276}], "release_date": "2014-08-06", "popularity": 0.25644437257786, "original_title": "The Inbetweeners 2", "budget": 0, "cast": [{"name": "Simon Bird", "character": "Will McKenzie", "id": 218948, "credit_id": "52fe4ec2c3a36847f82a64cd", "cast_id": 1, "profile_path": "/fW6kVI0yb9rhtnPRDBIWlkSWbd2.jpg", "order": 0}, {"name": "James Buckley", "character": "Jay Cartwright", "id": 207321, "credit_id": "52fe4ec2c3a36847f82a64d1", "cast_id": 2, "profile_path": "/lv58w34d9qgqJiLDX5tovxzp8rV.jpg", "order": 1}, {"name": "Blake Harrison", "character": "Neil Sutherland", "id": 222068, "credit_id": "52fe4ec2c3a36847f82a64d5", "cast_id": 3, "profile_path": "/w09kt7eMcuwRSjDVidtfm3WJym2.jpg", "order": 2}, {"name": "Joe Thomas", "character": "Simon Cooper", "id": 224350, "credit_id": "52fe4ec2c3a36847f82a64d9", "cast_id": 4, "profile_path": "/slaXnmyIVxsh6QbRgldVrZkCZnD.jpg", "order": 3}, {"name": "Freddie Stroma", "character": "Ben", "id": 234934, "credit_id": "52fe4ec2c3a36847f82a64dd", "cast_id": 6, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 4}, {"name": "Tamla Kari", "character": "Lucy", "id": 1128191, "credit_id": "53d89f5fc3a3682c43001ad7", "cast_id": 11, "profile_path": "/befV0lrZ4CA1S42IZa2NL2RTbKZ.jpg", "order": 5}, {"name": "Emily Berrington", "character": "Katie", "id": 1208295, "credit_id": "53d89f93c3a3682c28001b7c", "cast_id": 12, "profile_path": "/yKlTBJjRCS2LhyFg1nsGMUvWBZo.jpg", "order": 6}], "directors": [{"name": "Damon Beesley", "department": "Directing", "job": "Director", "credit_id": "52fe4ec2c3a36847f82a64ef", "profile_path": null, "id": 84739}, {"name": "Iain Morris", "department": "Directing", "job": "Director", "credit_id": "52fe4ec2c3a36847f82a64f5", "profile_path": null, "id": 84740}], "vote_average": 6.0, "runtime": 96}, "209263": {"poster_path": "/gPJ7KyzdHVpCaxdiq22sPEmNJZV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25288872, "overview": "Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert \u2014 a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded ex\u2013husband of Marianne...", "video": false, "id": 209263, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Enough Said", "tagline": "", "vote_count": 150, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2390361", "adult": false, "backdrop_path": "/h3X31FLlJSqi8NTZLKjXWJ7q3rs.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2013-10-11", "popularity": 1.04454946001514, "original_title": "Enough Said", "budget": 0, "cast": [{"name": "Julia Louis-Dreyfus", "character": "Eva", "id": 15886, "credit_id": "52fe4d60c3a368484e1e5bbb", "cast_id": 3, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Marianne", "id": 2229, "credit_id": "52fe4d60c3a368484e1e5bbf", "cast_id": 4, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Albert", "id": 4691, "credit_id": "52fe4d60c3a368484e1e5bc3", "cast_id": 5, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Toni Collette", "character": "Sarah", "id": 3051, "credit_id": "52fe4d60c3a368484e1e5bc7", "cast_id": 6, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 3}, {"name": "Ben Falcone", "character": "Will", "id": 170820, "credit_id": "52fe4d60c3a368484e1e5bcb", "cast_id": 7, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 4}, {"name": "Amy Landecker", "character": "Debbie", "id": 357551, "credit_id": "52fe4d60c3a368484e1e5bcf", "cast_id": 8, "profile_path": "/fkieXo1IqcqEIDCGtY8nkiuRwzf.jpg", "order": 5}, {"name": "Michaela Watkins", "character": "Hillary", "id": 113224, "credit_id": "52fe4d60c3a368484e1e5bd3", "cast_id": 9, "profile_path": "/69218D5jMt7S5G5uBo1Sm957Klw.jpg", "order": 6}, {"name": "Kathleen Rose Perkins", "character": "Fran", "id": 149334, "credit_id": "52fe4d60c3a368484e1e5bd7", "cast_id": 10, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 7}, {"name": "Toby Huss", "character": "Peter", "id": 18271, "credit_id": "52fe4d60c3a368484e1e5bdb", "cast_id": 11, "profile_path": "/g2DTpEl1DfsrN5oTcJuK5JtLmhX.jpg", "order": 8}, {"name": "Eve Hewson", "character": "Tess", "id": 933271, "credit_id": "52fe4d60c3a368484e1e5bdf", "cast_id": 12, "profile_path": "/cDVb2oR75CCflAvEIyTNuEO4ceS.jpg", "order": 9}, {"name": "Christopher Nicholas Smith", "character": "Hal (Massage Client) (as Chris Smith)", "id": 579064, "credit_id": "52fe4d60c3a368484e1e5be3", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Anjelah Johnson-Reyes", "character": "Cathy", "id": 1204646, "credit_id": "52fe4d60c3a368484e1e5be7", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Tracey Fairaway", "character": "Ellen", "id": 558917, "credit_id": "52fe4d60c3a368484e1e5beb", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Phillip Brock", "character": "Jason", "id": 53589, "credit_id": "52fe4d60c3a368484e1e5bef", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Tavi Gevinson", "character": "Chloe", "id": 1142629, "credit_id": "52fe4d60c3a368484e1e5bf3", "cast_id": 17, "profile_path": null, "order": 14}], "directors": [{"name": "Nicole Holofcener", "department": "Directing", "job": "Director", "credit_id": "52fe4d60c3a368484e1e5bb1", "profile_path": "/9fgDpfIsidOFKNiQSPJSrsCHp4x.jpg", "id": 56539}], "vote_average": 6.7, "runtime": 93}, "4464": {"poster_path": "/xzYOaFGZBNAciQXRasQQ8sYxBSi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 148336445, "overview": "True story of the undersized Depression-era racehorse whose victories lifted not only the spirits of the team behind it but also those of their nation.", "video": false, "id": 4464, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Seabiscuit", "tagline": "The hopes of a nation rode on a long shot.", "vote_count": 51, "homepage": "http://www.seabiscuitmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329575", "adult": false, "backdrop_path": "/jtB7e0lwsYsT8J2uDHzrL7zUxlZ.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Universal Pictures", "id": 33}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "DreamWorks Pictures", "id": 7293}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2003-07-22", "popularity": 0.357834053745223, "original_title": "Seabiscuit", "budget": 87000000, "cast": [{"name": "Jeff Bridges", "character": "Charles Howard", "id": 1229, "credit_id": "52fe43c4c3a36847f806ddb9", "cast_id": 2, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "David McCullough", "character": "Narrator", "id": 37332, "credit_id": "52fe43c4c3a36847f806ddb5", "cast_id": 1, "profile_path": "/p5tbMM29fk0yQO0eXiFPjOb2RNA.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Tom Smith", "id": 2955, "credit_id": "52fe43c4c3a36847f806de29", "cast_id": 21, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Tobey Maguire", "character": "Red Pollard", "id": 2219, "credit_id": "52fe43c4c3a36847f806de2d", "cast_id": 22, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 3}, {"name": "Elizabeth Banks", "character": "Marcela Howard", "id": 9281, "credit_id": "52fe43c4c3a36847f806de31", "cast_id": 23, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 4}, {"name": "Gary L. Stevens", "character": "George Woolf", "id": 38272, "credit_id": "52fe43c4c3a36847f806de35", "cast_id": 24, "profile_path": "/rqkFBLkWbl9EKKOYKqGJOiO5qzo.jpg", "order": 5}, {"name": "William H. Macy", "character": "Tick Tock McGlaughlin", "id": 3905, "credit_id": "52fe43c4c3a36847f806de39", "cast_id": 25, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 6}, {"name": "Royce D. Applegate", "character": "Dutch Doogan", "id": 22251, "credit_id": "52fe43c4c3a36847f806de3d", "cast_id": 26, "profile_path": "/clLumMCdFDvaLa8wMR5L6WkP1u6.jpg", "order": 7}, {"name": "Eddie Jones", "character": "Samuel D. Riddle", "id": 8692, "credit_id": "52fe43c4c3a36847f806de41", "cast_id": 28, "profile_path": "/g8ZDq6LFNWc12w24oo0r0FfeiIg.jpg", "order": 8}, {"name": "Chris McCarron", "character": "Charley Kurtsinger", "id": 38273, "credit_id": "52fe43c4c3a36847f806de45", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Michael Ensign", "character": "Steamer Owner", "id": 1080265, "credit_id": "52fe43c4c3a36847f806de49", "cast_id": 30, "profile_path": "/nyTn32fU0E1pQpIUeuiTAehaAee.jpg", "order": 10}], "directors": [{"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806ddbf", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}], "vote_average": 6.3, "runtime": 141}, "37233": {"poster_path": "/2yKjIGzQF5mhG634MwG6oBTH1ce.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 270248367, "overview": "Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by 'The Firm' and made an offer he doesn't refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice - work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan...", "video": false, "id": 37233, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Firm", "tagline": "Power can be murder to resist.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106918", "adult": false, "backdrop_path": "/9nbVWTSZpeRKNKtMM45mSttZito.jpg", "production_companies": [{"name": "Mirage Enterprises", "id": 932}, {"name": "Paramount Pictures", "id": 4}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "1993-06-30", "popularity": 0.664437741622856, "original_title": "The Firm", "budget": 42000000, "cast": [{"name": "Tom Cruise", "character": "Mitch McDeere", "id": 500, "credit_id": "52fe46359251416c9104cee9", "cast_id": 13, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jeanne Tripplehorn", "character": "Abby McDeere", "id": 10478, "credit_id": "52fe46359251416c9104cec1", "cast_id": 2, "profile_path": "/pZcw8RXsRSO9WXHOrQqentISWYv.jpg", "order": 1}, {"name": "Gene Hackman", "character": "Avery Tolar", "id": 193, "credit_id": "52fe46359251416c9104cec5", "cast_id": 3, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 2}, {"name": "Hal Holbrook", "character": "Oliver Lambert", "id": 11066, "credit_id": "52fe46359251416c9104cec9", "cast_id": 4, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 3}, {"name": "Terry Kinney", "character": "Lamar Quinn", "id": 11067, "credit_id": "52fe46359251416c9104cecd", "cast_id": 5, "profile_path": "/hv6CObyItPeEg5eJzzTb4L1j6DP.jpg", "order": 4}, {"name": "Wilford Brimley", "character": "William Devasher", "id": 11065, "credit_id": "52fe46359251416c9104ced1", "cast_id": 6, "profile_path": "/t0TLF4qXgXiroirvjVWWP88B0GD.jpg", "order": 5}, {"name": "Ed Harris", "character": "Wayne Tarrance", "id": 228, "credit_id": "52fe46359251416c9104ced5", "cast_id": 7, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 6}, {"name": "Holly Hunter", "character": "Tammy Hemphill", "id": 18686, "credit_id": "52fe46359251416c9104ced9", "cast_id": 8, "profile_path": "/35P7RI2XBTElKnUKgjJNtwHLpm3.jpg", "order": 7}, {"name": "David Strathairn", "character": "Ray McDeere", "id": 11064, "credit_id": "52fe46359251416c9104cedd", "cast_id": 9, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 8}, {"name": "Gary Busey", "character": "Eddie Lomax", "id": 2048, "credit_id": "52fe46359251416c9104cee1", "cast_id": 10, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 9}, {"name": "Tobin Bell", "character": "The Nordic Man", "id": 2144, "credit_id": "52fe46359251416c9104cee5", "cast_id": 11, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 10}, {"name": "Steven Hill", "character": "F. Denton Voyles", "id": 21521, "credit_id": "52fe46369251416c9104cef3", "cast_id": 15, "profile_path": "/22WrK1TKbFvL8poji6R61eNNSpJ.jpg", "order": 11}, {"name": "Barbara Garrick", "character": "Kay Quinn", "id": 12932, "credit_id": "52fe46369251416c9104cef7", "cast_id": 16, "profile_path": "/rGnwUug86oil1pZ9whjohbBBRqj.jpg", "order": 12}, {"name": "Jonathan Kaplan", "character": "Lawyer Recruiter", "id": 42171, "credit_id": "54a86823c3a3680c30002819", "cast_id": 21, "profile_path": "/sv953vXFS4YD5BZ4GBjrSWQsiMW.jpg", "order": 13}], "directors": [{"name": "Sydney Pollack", "department": "Directing", "job": "Director", "credit_id": "52fe46359251416c9104ceef", "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "id": 2226}], "vote_average": 6.5, "runtime": 154}, "239678": {"poster_path": "/1N2rLlY30vHeOzbPacZsnC8ne4Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41000000, "overview": "When their father passes away, four grown, world-weary siblings return to their childhood home and are requested -- with an admonition -- to stay there together for a week, along with their free-speaking mother (Jane Fonda) and a collection of spouses, exes and might-have-beens. As the brothers and sisters re-examine their shared history and the status of each tattered relationship among those who know and love them best, they reconnect in hysterically funny and emotionally significant ways.", "video": false, "id": 239678, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "This Is Where I Leave You", "tagline": "Welcome Home. Get Uncomfortable.", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1371150", "adult": false, "backdrop_path": "/rff4O6BcvD7pwd7mZJ1fTA6KMQ5.jpg", "production_companies": [{"name": "Spring Creek Productions", "id": 705}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2014-09-19", "popularity": 1.41208588433013, "original_title": "This Is Where I Leave You", "budget": 19800000, "cast": [{"name": "Jason Bateman", "character": "Judd Altman", "id": 23532, "credit_id": "52fe4e97c3a36847f829b1d9", "cast_id": 1, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Tina Fey", "character": "Wendy Altman", "id": 56323, "credit_id": "5420644a0e0a2617a8003271", "cast_id": 13, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 1}, {"name": "Adam Driver", "character": "Phillip Altman", "id": 1023139, "credit_id": "52fe4e98c3a36847f829b1f1", "cast_id": 7, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 2}, {"name": "Rose Byrne", "character": "Penny Moore", "id": 9827, "credit_id": "52fe4e97c3a36847f829b1dd", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 3}, {"name": "Corey Stoll", "character": "Paul Altman", "id": 74541, "credit_id": "52fe4e98c3a36847f829b1e9", "cast_id": 5, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 4}, {"name": "Kathryn Hahn", "character": "Annie Altman", "id": 17696, "credit_id": "52fe4e97c3a36847f829b1e5", "cast_id": 4, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 5}, {"name": "Connie Britton", "character": "Tracy Sullivan", "id": 86310, "credit_id": "542018550e0a261794002313", "cast_id": 12, "profile_path": "/dbX2i37hwEst6FeL0QH5QgZcsQ3.jpg", "order": 6}, {"name": "Timothy Olyphant", "character": "Horry Callen", "id": 18082, "credit_id": "54206460c3a36879850031b0", "cast_id": 14, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 7}, {"name": "Abigail Spencer", "character": "Quinn Altman", "id": 123725, "credit_id": "52fe4e98c3a36847f829b1ed", "cast_id": 6, "profile_path": "/gvEszv5iY2gcQ6v7JoegCkY7YjL.jpg", "order": 8}, {"name": "Dax Shepard", "character": "Wade Beaufort", "id": 51298, "credit_id": "5420646e0e0a26179100341c", "cast_id": 15, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 9}, {"name": "Jane Fonda", "character": "Hillary Altman", "id": 6352, "credit_id": "52fe4e97c3a36847f829b1e1", "cast_id": 3, "profile_path": "/t4kIxZrAhxnMyQP8BZFmpPAot0z.jpg", "order": 10}, {"name": "Ben Schwartz", "character": "Rabbi Charles Grodner", "id": 222121, "credit_id": "5420649d0e0a261791003426", "cast_id": 17, "profile_path": "/ty2N3LuUiXO1uKyRg74DUN82xQe.jpg", "order": 11}, {"name": "Aaron Lazar", "character": "Barry Weissman", "id": 964421, "credit_id": "5420648a0e0a2617a8003281", "cast_id": 16, "profile_path": "/7Zcs4ZuivNtaWaPEUkBz0PK9v41.jpg", "order": 12}, {"name": "Debra Monk", "character": "Linda Callen", "id": 10386, "credit_id": "54d095a3c3a368431e002c03", "cast_id": 22, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 13}, {"name": "Cade Lappin", "character": "Cole", "id": 1422396, "credit_id": "54d09a33c3a368430d002c92", "cast_id": 23, "profile_path": "/7oaRVYlCNDUhlLE3ylA8smBXZyU.jpg", "order": 14}, {"name": "Will Swenson", "character": "Younger Mort", "id": 1022885, "credit_id": "54d09c95c3a3684321002c74", "cast_id": 24, "profile_path": "/tDjLvhLQilz2lqlYR3qQC8uT80g.jpg", "order": 15}, {"name": "Carol Schultz", "character": "Woman #1", "id": 1422441, "credit_id": "54d0c11ac3a3680f3700149d", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Kevin McCormick", "character": "Guard #1", "id": 1293730, "credit_id": "54d0c2a29251417c14002e44", "cast_id": 26, "profile_path": "/eWPV5wqArOmZ7Ioep3Exba73Zqp.jpg", "order": 17}, {"name": "Evan Wadle", "character": "Frat Boy #1", "id": 1422450, "credit_id": "54d0c3fac3a368431e00322b", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Olivia Oguma", "character": "Shelby", "id": 1422452, "credit_id": "54d0c51ec3a368430a00357e", "cast_id": 28, "profile_path": "/tfH244GNojw2aP5psGS1S9xaLsx.jpg", "order": 19}, {"name": "Barbara Spiegel", "character": "Woman #2", "id": 1422457, "credit_id": "54d0c70e9251413e0b0018f8", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Gerry Vichi", "character": "Uncle Joe", "id": 5302, "credit_id": "54d0c9379251417c0d0030ae", "cast_id": 30, "profile_path": "/kVPmf696NjAqWzyEIVlPi7HlR5l.jpg", "order": 21}, {"name": "Cheryl Stern", "character": "Lois", "id": 1422460, "credit_id": "54d0c9849251417c1a0030fd", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Beth Leavel", "character": "Renee", "id": 1237381, "credit_id": "54d0cd329251417c16002e0e", "cast_id": 32, "profile_path": "/qikstgQTfgmpAYQoa4rL1uvzUs2.jpg", "order": 23}, {"name": "Carly Brooke", "character": "Chelsea", "id": 1422474, "credit_id": "54d0ce4b9251417c16002e2a", "cast_id": 33, "profile_path": "/fnd76G5PKJGeru13TdPEJiHCEDr.jpg", "order": 24}, {"name": "Michael Bryan French", "character": "Dr. Rausch", "id": 1224374, "credit_id": "54d0d04ac3a368431e0033a6", "cast_id": 34, "profile_path": "/5c4JbJo0yzGzdHgRPjxps0k7Qjp.jpg", "order": 25}, {"name": "Lance Roberts", "character": "Calvin", "id": 1422485, "credit_id": "54d0d20f9251417c0d0031ab", "cast_id": 35, "profile_path": "/yD9Bgr97j0f01QlWBqI3ZdTEjNA.jpg", "order": 26}, {"name": "Carolyn Seiff", "character": "Mrs. Applebaum", "id": 1422488, "credit_id": "54d0d2c7c3a36843140030bd", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Brahm Schenkman", "character": "Little League Dad", "id": 1422492, "credit_id": "54d0d3e19251417c1d003041", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Mia Fram Davidson", "character": "Cantor", "id": 1422494, "credit_id": "54d0d52d9251417c20003155", "cast_id": 38, "profile_path": "/scNFzvUxNMicAiVWY6oIhnk86Jd.jpg", "order": 29}, {"name": "Crystal Anne Dickinson", "character": "Intern", "id": 1422497, "credit_id": "54d0d5ac9251417c1d003074", "cast_id": 39, "profile_path": "/6MLUT6nd6X44qqICZG9T8hphUgk.jpg", "order": 30}, {"name": "Kenneth De Abrew", "character": "Engineer", "id": 1422515, "credit_id": "54d0d72ec3a3680f37001756", "cast_id": 40, "profile_path": "/n1uXe1eDVlhgppxoRLghYwZUSB1.jpg", "order": 31}, {"name": "Oakes Fegley", "character": "Young Judd", "id": 1422517, "credit_id": "54d0d7ca9251417c14003093", "cast_id": 41, "profile_path": "/oo01QqJjOW8NfZwAaB1hCSElFsu.jpg", "order": 32}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4e98c3a36847f829b1f7", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.5, "runtime": 103}, "13788": {"poster_path": "/52iUsw24Xlo89F7jU2dg9uq1BWd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young woman fights the spirit that is slowly taking possession of her.", "video": false, "id": 13788, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Unborn", "tagline": "Evil will do anything to live.", "vote_count": 67, "homepage": "http://www.theunbornmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt1139668", "adult": false, "backdrop_path": "/6tiWjJPSwBIiQiosOQ0oqJe8UHB.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Phantom Four", "id": 423}, {"name": "Relativity Media", "id": 7295}], "release_date": "2009-01-09", "popularity": 0.519844649302121, "original_title": "The Unborn", "budget": 0, "cast": [{"name": "Odette Annable", "character": "Casey Beldon", "id": 51992, "credit_id": "52fe459f9251416c7505ccc1", "cast_id": 1, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Rabbi Sendak", "id": 64, "credit_id": "52fe459f9251416c7505ccc5", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Meagan Good", "character": "Romy", "id": 22122, "credit_id": "52fe459f9251416c7505ccc9", "cast_id": 3, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 2}, {"name": "Cam Gigandet", "character": "Mark Hardigan", "id": 55086, "credit_id": "52fe459f9251416c7505cccd", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 3}, {"name": "Idris Elba", "character": "Arthur Wyndham", "id": 17605, "credit_id": "52fe459f9251416c7505ccef", "cast_id": 10, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 4}, {"name": "Ethan Cutkosky", "character": "Barto", "id": 132213, "credit_id": "52fe459f9251416c7505ccf3", "cast_id": 11, "profile_path": "/puJBOZ6osLqLzEnUqcC5w2BDMjC.jpg", "order": 5}, {"name": "Jane Alexander", "character": "Sofi Kozma", "id": 13724, "credit_id": "52fe459f9251416c7505ccf7", "cast_id": 12, "profile_path": "/2pP8uZPdLTARHCMjGphUo4iH0je.jpg", "order": 6}, {"name": "Atticus Shaffer", "character": "Matty Newton", "id": 66646, "credit_id": "52fe459f9251416c7505ccfb", "cast_id": 13, "profile_path": "/mkAkUn9STorZx8frBoWzM6e1rfD.jpg", "order": 7}, {"name": "James Remar", "character": "Gordon Beldon", "id": 1736, "credit_id": "52fe459f9251416c7505ccff", "cast_id": 14, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 8}, {"name": "Carla Gugino", "character": "Janet Beldon", "id": 17832, "credit_id": "52fe459f9251416c7505cd03", "cast_id": 15, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 9}, {"name": "C.S. Lee", "character": "Dr. Lester Caldwell", "id": 164380, "credit_id": "52fe459f9251416c7505cd07", "cast_id": 16, "profile_path": "/gFceFYo2rGpSIjAJTTbpKLoc5mn.jpg", "order": 10}], "directors": [{"name": "David S. Goyer", "department": "Directing", "job": "Director", "credit_id": "52fe459f9251416c7505ccd3", "profile_path": "/rEaNEwc55QugcpxOH7YwAa9P8mi.jpg", "id": 3893}], "vote_average": 4.9, "runtime": 87}, "20856": {"poster_path": "/oxds3BQ99FdOxiR24Z5I7N5ELwv.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "It's summer vacation, but the Pearson family kids are stuck at a boring lake house with their nerdy parents. That is until feisty, little, green aliens crash-land on the roof, with plans to conquer the house AND Earth! Using only their wits, courage and video game-playing skills, the youngsters must band together to defeat the aliens and save the world - but the toughest part might be keeping the whole thing a secret from their parents! Featuring an all-star cast including Ashley Tisdale, Andy Richter, Kevin Nealon, Tim Meadows and Doris Roberts, Aliens In The Attic is the most fun you can have on this planet!", "video": false, "id": 20856, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Aliens in the Attic", "tagline": "The aliens vs. the Pearsons", "vote_count": 63, "homepage": "http://www.aliensintheatticmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0775552", "adult": false, "backdrop_path": "/y66K59c1uxhnM45ZtG5xyOVC8yx.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}, {"name": "Josephson Entertainment", "id": 1894}, {"name": "New Upstairs Productions", "id": 3855}, {"name": "Upstairs Canada Productions", "id": 3856}], "release_date": "2009-07-31", "popularity": 0.421026047211314, "original_title": "Aliens in the Attic", "budget": 0, "cast": [{"name": "Carter Jenkins", "character": "Tom Pearson", "id": 86653, "credit_id": "52fe43fdc3a368484e0097b5", "cast_id": 4, "profile_path": "/6Sph044iNZRupQecuuReiaQT52.jpg", "order": 0}, {"name": "Austin Butler", "character": "Jake Pearson", "id": 86654, "credit_id": "52fe43fdc3a368484e0097b9", "cast_id": 5, "profile_path": "/3TIOELfWkg8rkk0AJVRMlSQFLVJ.jpg", "order": 1}, {"name": "Kevin Nealon", "character": "Stuart Pearson", "id": 58478, "credit_id": "52fe43fdc3a368484e0097bd", "cast_id": 6, "profile_path": "/aVp6F3hliJp7dOZsIdwTRIaRx71.jpg", "order": 2}, {"name": "Robert Hoffman", "character": "Ricky Dillman", "id": 58368, "credit_id": "52fe43fdc3a368484e0097c1", "cast_id": 7, "profile_path": "/gNSHIaTf5pea05qolpKpufYqT3f.jpg", "order": 3}, {"name": "Doris Roberts", "character": "Rose Pearson", "id": 45863, "credit_id": "52fe43fdc3a368484e0097c5", "cast_id": 8, "profile_path": "/4J9jniy4ZEd6NRTfkzq9prKoEIt.jpg", "order": 4}, {"name": "Tim Meadows", "character": "Sheriff Doug Armstrong", "id": 51857, "credit_id": "52fe43fdc3a368484e0097c9", "cast_id": 9, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 5}, {"name": "Ashley Boettcher", "character": "Hannah Pearson", "id": 86655, "credit_id": "52fe43fdc3a368484e0097cd", "cast_id": 10, "profile_path": "/37FCvTRjK2XgknzppoKJd7jm6RM.jpg", "order": 6}, {"name": "Henri Young", "character": "Art Pearson", "id": 86656, "credit_id": "52fe43fdc3a368484e0097d1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Regan Young", "character": "Lee Pearson", "id": 86657, "credit_id": "52fe43fdc3a368484e0097d5", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Ashley Tisdale", "character": "Bethany Pearson", "id": 67600, "credit_id": "52fe43fdc3a368484e0097d9", "cast_id": 13, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 9}, {"name": "Malese Jow", "character": "Julie", "id": 118544, "credit_id": "52fe43fdc3a368484e0097dd", "cast_id": 14, "profile_path": "/cT29b1741g4WCHDnJ21akeq0sWO.jpg", "order": 10}], "directors": [{"name": "John Schultz", "department": "Directing", "job": "Director", "credit_id": "52fe43fdc3a368484e0097a5", "profile_path": "/ePis8HPrAlCrkry1VMaHxsdrq4u.jpg", "id": 79656}], "vote_average": 5.4, "runtime": 86}, "209274": {"poster_path": "/aO8dgaxaY1tcAdtFkLuz1WSxgdd.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "PL", "name": "Poland"}], "revenue": 10700000, "overview": "Poland, 1962. Anna is a novice, an orphan brought up by nuns in a convent. Before she takes her vows, she is determined to see Wanda, her only living relative. Wanda tells Anna that Anna is Jewish. Both women embark on a journey not only to discover their tragic family story, but who they really are and where they belong, questioning their religions and beliefs.", "video": false, "id": 209274, "genres": [{"id": 18, "name": "Drama"}], "title": "Ida", "tagline": "", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt2718492", "adult": false, "backdrop_path": "/rYrhyxdLzniWXRnKYZScKaVcXUN.jpg", "production_companies": [{"name": "Phoenix Film Investments", "id": 44171}, {"name": "Opus Film", "id": 6477}], "release_date": "2013-09-07", "popularity": 0.572602534423009, "original_title": "Ida", "budget": 2159280, "cast": [{"name": "Agata Trzebuchowska", "character": "Anna", "id": 1192772, "credit_id": "52fe4d60c3a368484e1e5d4d", "cast_id": 2, "profile_path": "/8xORB2v5c04MEkiRwdqZ0TJ9fFn.jpg", "order": 0}, {"name": "Agata Kulesza", "character": "Wanda", "id": 566101, "credit_id": "52fe4d60c3a368484e1e5d51", "cast_id": 3, "profile_path": "/vZnsas1ZRUmtwPcmbg4ElEtL5jb.jpg", "order": 1}, {"name": "Joanna Kulig", "character": "Singer", "id": 908548, "credit_id": "52fe4d60c3a368484e1e5d61", "cast_id": 6, "profile_path": "/cHEhGQ7XyxGeInAupSvESNJpUEv.jpg", "order": 2}, {"name": "Dawid Ogrodnik", "character": "Musician", "id": 1277198, "credit_id": "52fe4d60c3a368484e1e5d65", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Adam Szyszkowski", "character": "Feliks Skiba", "id": 1190325, "credit_id": "52fe4d60c3a368484e1e5d69", "cast_id": 8, "profile_path": "/8FlMqAekoOp1sKRFv4EkB8iDdbu.jpg", "order": 4}, {"name": "Jerzy Trela", "character": "Szymon Skiba", "id": 2831, "credit_id": "52fe4d60c3a368484e1e5d6d", "cast_id": 9, "profile_path": "/tE6SG8uXiC81MRrJfE3ZybXsEGR.jpg", "order": 5}, {"name": "Artur Janusiak", "character": "Militia Man", "id": 136735, "credit_id": "52fe4d60c3a368484e1e5d71", "cast_id": 10, "profile_path": null, "order": 6}], "directors": [{"name": "Pawel Pawlikowski", "department": "Directing", "job": "Director", "credit_id": "52fe4d60c3a368484e1e5d49", "profile_path": null, "id": 64194}], "vote_average": 7.0, "runtime": 80}, "209276": {"poster_path": "/t88BhK3e2gEqQn0o9WxhX0He4jo.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "19-year-old Eric, arrogant and ultra-violent, is prematurely transferred to the same adult prison facility as his estranged father. As his explosive temper quickly finds him enemies in both prison authorities and fellow inmates \u2014 and his already volatile relationship with his father is pushed past breaking point \u2014 Eric is approached by a volunteer psychotherapist, who runs an anger management group for prisoners. Torn between gang politics, prison corruption, and a glimmer of something better, Eric finds himself in a fight for his own life, unsure if his own father is there to protect him or join in punishing him.", "video": false, "id": 209276, "genres": [{"id": 18, "name": "Drama"}], "title": "Starred Up", "tagline": "We're all different on the inside.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2567712", "adult": false, "backdrop_path": "/6BPW5wewjls8QU0VYZw30Hc6y2S.jpg", "production_companies": [{"name": "Quickfire Films", "id": 4186}, {"name": "Sigma Films Ltd.", "id": 322}, {"name": "Film4", "id": 9349}, {"name": "Lipsync Productions", "id": 9987}], "release_date": "2013-10-10", "popularity": 1.11203981904541, "original_title": "Starred Up", "budget": 0, "cast": [{"name": "Jack O'Connell", "character": "Eric", "id": 85065, "credit_id": "52fe4d60c3a368484e1e5dbd", "cast_id": 3, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 0}, {"name": "Ben Mendelsohn", "character": "Neville", "id": 77335, "credit_id": "52fe4d60c3a368484e1e5dc1", "cast_id": 4, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 1}, {"name": "Rupert Friend", "character": "Oliver", "id": 36669, "credit_id": "52fe4d60c3a368484e1e5dc5", "cast_id": 5, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 2}, {"name": "David Ajala", "character": "Tyrone", "id": 971049, "credit_id": "52fe4d60c3a368484e1e5dc9", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Peter Ferdinando", "character": "Spencer", "id": 109833, "credit_id": "52fe4d60c3a368484e1e5dcd", "cast_id": 7, "profile_path": "/jrpB6xsVtTQ3f29dhywY5XH7AVP.jpg", "order": 4}, {"name": "Gershwyn Eustache Jnr", "character": "Des", "id": 1192778, "credit_id": "52fe4d60c3a368484e1e5dd1", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Anthony Welsh", "character": "Hassan", "id": 1108724, "credit_id": "52fe4d60c3a368484e1e5dd5", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "David Avery", "character": "Ashley", "id": 1192779, "credit_id": "52fe4d60c3a368484e1e5dd9", "cast_id": 10, "profile_path": null, "order": 7}], "directors": [{"name": "David Mackenzie", "department": "Directing", "job": "Director", "credit_id": "52fe4d60c3a368484e1e5db3", "profile_path": "/oHZ2kkGICUnSbm73BQFK3Hau82f.jpg", "id": 3055}], "vote_average": 7.1, "runtime": 106}, "4477": {"poster_path": "/1zusKhAtJ3YhbuA6J184Vm4INB3.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 140807547, "overview": "A police officer uncovers the real identity of his houseguest, an IRA terrorist in hiding.", "video": false, "id": 4477, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Devil's Own", "tagline": "They come from different worlds. They fight for different causes. Now, two men from opposite sides of the law are about to go to war.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118972", "adult": false, "backdrop_path": "/xRYvkp0EQyUzDti2m8PKgD5cZDS.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1997-03-26", "popularity": 0.595601372094303, "original_title": "The Devil's Own", "budget": 90000000, "cast": [{"name": "Brad Pitt", "character": "Frankie McGuire", "id": 287, "credit_id": "52fe43c4c3a36847f806e2b9", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Tom O'Meara", "id": 3, "credit_id": "52fe43c4c3a36847f806e2bd", "cast_id": 3, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Julia Stiles", "character": "Bridget O'Meara", "id": 12041, "credit_id": "52fe43c4c3a36847f806e2c1", "cast_id": 4, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 2}, {"name": "Margaret Colin", "character": "Sheila O'Meara", "id": 8985, "credit_id": "52fe43c5c3a36847f806e2c5", "cast_id": 5, "profile_path": "/A9nBbgguaRqjssJyqTfoFIQgADV.jpg", "order": 3}, {"name": "Rub\u00e9n Blades", "character": "Edwin Diaz", "id": 2049, "credit_id": "52fe43c5c3a36847f806e2c9", "cast_id": 6, "profile_path": "/rcK4xtkIKRx3OWcqo4wv2JESs8Y.jpg", "order": 4}, {"name": "Treat Williams", "character": "Billy Burke", "id": 4515, "credit_id": "52fe43c5c3a36847f806e2cd", "cast_id": 7, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 5}, {"name": "George Hearn", "character": "Peter Fitzsimmons", "id": 38337, "credit_id": "52fe43c5c3a36847f806e2d1", "cast_id": 8, "profile_path": "/rLGq38BNVsSkHpnQDYZNNb108gz.jpg", "order": 6}, {"name": "Mitchell Ryan", "character": "Chief Jim Kelly", "id": 14312, "credit_id": "52fe43c5c3a36847f806e2d5", "cast_id": 9, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 7}, {"name": "Natascha McElhone", "character": "Megan Doherty", "id": 11317, "credit_id": "52fe43c5c3a36847f806e2d9", "cast_id": 10, "profile_path": "/vLiVvD6uRPaunzJEpfA0aPjtD1P.jpg", "order": 8}, {"name": "Ashley Carin", "character": "Morgan O'Meara", "id": 38338, "credit_id": "52fe43c5c3a36847f806e2dd", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Simon Jones", "character": "Harry Sloan", "id": 37891, "credit_id": "52fe43c5c3a36847f806e2e1", "cast_id": 12, "profile_path": "/5njA1vE91FLp2SrSwKXYcJ6pvf9.jpg", "order": 10}, {"name": "Paul Ronan", "character": "Sean Phelan", "id": 38339, "credit_id": "52fe43c5c3a36847f806e2e5", "cast_id": 13, "profile_path": "/835cl1eteY5tk6zIX9EgwgExgCq.jpg", "order": 11}, {"name": "David O'Hara", "character": "Martin MacDuf", "id": 2482, "credit_id": "52fe43c5c3a36847f806e2e9", "cast_id": 14, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 12}, {"name": "Chance Kelly", "character": "Masked Burglar", "id": 17194, "credit_id": "52fe43c5c3a36847f806e341", "cast_id": 29, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 13}], "directors": [{"name": "Alan J. Pakula", "department": "Directing", "job": "Director", "credit_id": "52fe43c4c3a36847f806e2b5", "profile_path": "/vzvxrcoFirt0LJb0hG0ezP64mYr.jpg", "id": 6349}], "vote_average": 5.7, "runtime": 107}, "37247": {"poster_path": "/itdaGoyXKIAXRrHmchoMsGbwp2y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104397102, "overview": "Recent college graduate Benjamin Braddock is seduced by the wife of his father's business partner, Mrs. Robinson. Benjamin soon finds himself falling in love with her daughter, Elaine, as the affair with Mrs. Robinson mother comes back to haunt him.", "video": false, "id": 37247, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Graduate", "tagline": "This is Benjamin. He's a little worried about his future.", "vote_count": 161, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0061722", "adult": false, "backdrop_path": "/gzWOVyMVh7perMkLHo1w1sWcTjE.jpg", "production_companies": [{"name": "Lawrence Turman", "id": 8793}, {"name": "Embassy Pictures Corporation", "id": 419}], "release_date": "1967-12-21", "popularity": 0.529348214374996, "original_title": "The Graduate", "budget": 3000000, "cast": [{"name": "Anne Bancroft", "character": "Mrs. Robinson", "id": 10774, "credit_id": "52fe46369251416c9104d0a3", "cast_id": 1, "profile_path": "/4VMhut6tvXqXBmMGFRjXbbImAZW.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Ben Braddock", "id": 4483, "credit_id": "52fe46369251416c9104d0a7", "cast_id": 2, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Katharine Ross", "character": "Elaine Robinson", "id": 9594, "credit_id": "52fe46369251416c9104d0ab", "cast_id": 3, "profile_path": "/KtXzfeLdU8NtwjSPOQ9dvBqQeS.jpg", "order": 2}, {"name": "Murray Hamilton", "character": "Mr. Robinson", "id": 8608, "credit_id": "52fe46369251416c9104d0af", "cast_id": 5, "profile_path": "/w2FAPn8RbGKvyhnj3K0dNySEoDa.jpg", "order": 4}, {"name": "Buck Henry", "character": "Room Clerk", "id": 7795, "credit_id": "52fe46369251416c9104d0b3", "cast_id": 6, "profile_path": "/q0oQ6gZNtzKcxaMtwrhVfhnSznW.jpg", "order": 5}, {"name": "Brian Avery", "character": "Carl Smith", "id": 30050, "credit_id": "52fe46369251416c9104d0b7", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Walter Brooke", "character": "Mr. McGuire", "id": 94402, "credit_id": "52fe46369251416c9104d0bb", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "William Daniels", "character": "Mr. Braddock", "id": 10775, "credit_id": "52fe46369251416c9104d0d1", "cast_id": 12, "profile_path": "/4zIlfvoSPHVTWIpZ9JvZODD8vnn.jpg", "order": 8}, {"name": "Elizabeth Wilson", "character": "Mrs. Braddock", "id": 10776, "credit_id": "52fe46379251416c9104d0f3", "cast_id": 18, "profile_path": "/tXmYFqRiQjuiXgnzBpdzRexROAd.jpg", "order": 9}, {"name": "Norman Fell", "character": "Mr. McCleery", "id": 14064, "credit_id": "52fe46379251416c9104d0f7", "cast_id": 19, "profile_path": "/dRXygz30GtDPswkF59iJUSJCBT7.jpg", "order": 10}, {"name": "Alice Ghostley", "character": "Mrs. Singleman", "id": 8495, "credit_id": "52fe46379251416c9104d0fb", "cast_id": 20, "profile_path": "/byH2NPrSia2OkluSbvAS4HvFU07.jpg", "order": 11}, {"name": "Marion Lorne", "character": "Miss DeWitte", "id": 12501, "credit_id": "52fe46379251416c9104d0ff", "cast_id": 21, "profile_path": "/iBRYqd8geHrBx8SB2hSKmLpZx5W.jpg", "order": 12}, {"name": "Eddra Gale", "character": "Woman on Bus", "id": 5687, "credit_id": "52fe46379251416c9104d103", "cast_id": 22, "profile_path": null, "order": 13}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe46369251416c9104d0c1", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 7.1, "runtime": 106}, "201088": {"poster_path": "/tn07zjNNIJuOsecqTC2JEYA49uU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man is released from prison to help American and Chinese authorities pursue a mysterious cyber criminal. The dangerous search leads them from Chicago to Hong Kong.", "video": false, "id": 201088, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Blackhat", "tagline": "We are no longer in control.", "vote_count": 80, "homepage": "http://www.blackhatthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt2717822", "adult": false, "backdrop_path": "/biw5Nn85iBZZd8GWYO9XXH56VK2.jpg", "production_companies": [{"name": "Forward Pass", "id": 675}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2015-01-16", "popularity": 4.90190817478005, "original_title": "Blackhat", "budget": 70000000, "cast": [{"name": "Chris Hemsworth", "character": "Nicholas Hathaway", "id": 74568, "credit_id": "52fe4c9ec3a368484e1bf347", "cast_id": 4, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 0}, {"name": "Viola Davis", "character": "Carol Barrett", "id": 19492, "credit_id": "52fe4c9ec3a368484e1bf34f", "cast_id": 6, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 1}, {"name": "Tang Wei", "character": "Chen Lien", "id": 38280, "credit_id": "52fe4c9ec3a368484e1bf353", "cast_id": 7, "profile_path": "/sLdrMu4Z3qkoF9KdJbcpTMLvgzy.jpg", "order": 2}, {"name": "Leehom Wang", "character": "Chen Dawai", "id": 134184, "credit_id": "52fe4c9ec3a368484e1bf357", "cast_id": 8, "profile_path": "/7KuBwhVnAH4KYrbiLjhOMxjgrLY.jpg", "order": 3}, {"name": "Andy On", "character": "Alex Trang", "id": 63585, "credit_id": "54b9fc94c3a368145e003022", "cast_id": 18, "profile_path": "/sv74TXme3jxPm9a4fXKdj3rAWGE.jpg", "order": 4}, {"name": "Manny Montana", "character": "Alonzo Reyes", "id": 1182725, "credit_id": "52fe4c9ec3a368484e1bf34b", "cast_id": 5, "profile_path": "/bNzEpQIaxfFjkcKRXUb4spW0w9W.jpg", "order": 5}, {"name": "William Mapother", "character": "Rich Donahue", "id": 15338, "credit_id": "52fe4c9ec3a368484e1bf35b", "cast_id": 9, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 6}, {"name": "Archie Kao", "character": "", "id": 59293, "credit_id": "542470d2c3a368087a004093", "cast_id": 14, "profile_path": "/jWWhcHQTJi1UGR6xP0ZtEA36GmL.jpg", "order": 7}, {"name": "Spencer Garrett", "character": "", "id": 49275, "credit_id": "542470dfc3a3681eca002867", "cast_id": 15, "profile_path": "/ifHCwS6Shlqp1H6N2YVVBo5PAbw.jpg", "order": 8}, {"name": "John Ortiz", "character": "", "id": 40543, "credit_id": "542470e9c3a368086e003f7a", "cast_id": 16, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 9}, {"name": "Holt McCallany", "character": "", "id": 7497, "credit_id": "542470f3c3a368086e003f7d", "cast_id": 17, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 10}, {"name": "Eddie Cheung Siu-Fai", "character": "", "id": 72732, "credit_id": "54d252559251411b690031e7", "cast_id": 19, "profile_path": "/8Yaa6J6G7oji9NBD5psHQXXWXn3.jpg", "order": 11}], "directors": [{"name": "Michael Mann", "department": "Directing", "job": "Director", "credit_id": "52fe4c9ec3a368484e1bf337", "profile_path": "/A4UGak1ZIZ1BGZmZjQwSDCa2JZp.jpg", "id": 638}], "vote_average": 5.4, "runtime": 133}, "4488": {"poster_path": "/bPdgBUXaFqlkZzgDsOn2A1EHSaw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59754601, "overview": "Camp counselors are stalked and murdered by an unknown assailant while trying to reopen a summer camp that was the site of a child's drowning.", "video": false, "id": 4488, "genres": [{"id": 27, "name": "Horror"}], "title": "Friday the 13th", "tagline": "They were warned...They are doomed...And on Friday the 13th, nothing will save them.", "vote_count": 122, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080761", "adult": false, "backdrop_path": "/d1DyIWgc80ufW2ENGOMNZRbpq4x.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Georgetown Productions Inc.", "id": 16779}, {"name": "Sean S. Cunningham Films", "id": 17611}], "release_date": "1980-05-09", "popularity": 0.715216048579758, "original_title": "Friday the 13th", "budget": 550000, "cast": [{"name": "Betsy Palmer", "character": "Mrs. Voorhees", "id": 37469, "credit_id": "52fe43c6c3a36847f806e8fb", "cast_id": 2, "profile_path": "/fobAvVbDO5InXgZT2AoVduefQKj.jpg", "order": 0}, {"name": "Adrienne King", "character": "Alice", "id": 37470, "credit_id": "52fe43c6c3a36847f806e8ff", "cast_id": 3, "profile_path": "/xCS2BI8ulvypH1cNVtMGwwr50zt.jpg", "order": 1}, {"name": "Harry Crosby", "character": "Bill", "id": 37471, "credit_id": "52fe43c6c3a36847f806e903", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Laurie Bartram", "character": "Brenda", "id": 37472, "credit_id": "52fe43c6c3a36847f806e907", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Jeannine Taylor", "character": "Marcie Cunningham", "id": 37473, "credit_id": "52fe43c6c3a36847f806e90b", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Kevin Bacon", "character": "Jack Burrell", "id": 4724, "credit_id": "52fe43c6c3a36847f806e90f", "cast_id": 7, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 5}, {"name": "Robbi Morgan", "character": "Annie", "id": 1011510, "credit_id": "52fe43c6c3a36847f806e937", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Mark Nelson", "character": "Ned Rubinstein", "id": 190040, "credit_id": "52fe43c6c3a36847f806e93b", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Peter Brouwer", "character": "Steve Christy", "id": 1081852, "credit_id": "52fe43c6c3a36847f806e93f", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Rex Everhart", "character": "Enos, the Truck Driver", "id": 170970, "credit_id": "52fe43c6c3a36847f806e943", "cast_id": 17, "profile_path": "/pW7GyLaz8QrGpVjnC5vvJVjxTqQ.jpg", "order": 9}, {"name": "Ronn Carroll", "character": "Sgt. Tierney", "id": 174248, "credit_id": "52fe43c6c3a36847f806e947", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Ron Millkie", "character": "Officer Dorf", "id": 1019045, "credit_id": "52fe43c6c3a36847f806e94b", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Walt Gorney", "character": "Crazy Ralph", "id": 1014310, "credit_id": "52fe43c6c3a36847f806e94f", "cast_id": 20, "profile_path": "/uUyk6drqyF7y76eSzX8QpfuTKUj.jpg", "order": 12}, {"name": "Willie Adams", "character": "Barry", "id": 1205570, "credit_id": "52fe43c6c3a36847f806e953", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Debra S. Hayes", "character": "Claudette", "id": 1205571, "credit_id": "52fe43c6c3a36847f806e957", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Dorothy Kobs", "character": "Trudy", "id": 1205572, "credit_id": "52fe43c6c3a36847f806e95b", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Sally Anne Golden", "character": "Sandy", "id": 1205573, "credit_id": "52fe43c6c3a36847f806e95f", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Mary Rocco", "character": "Operator", "id": 1205574, "credit_id": "52fe43c6c3a36847f806e963", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Ken L. Parker", "character": "Doctor", "id": 1205575, "credit_id": "52fe43c6c3a36847f806e967", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Ari Lehman", "character": "Jason Voorhees", "id": 106207, "credit_id": "52fe43c6c3a36847f806e96b", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Noel Cunningham", "character": "Boy in 1958 Camping Circle (uncredited)", "id": 69585, "credit_id": "52fe43c6c3a36847f806e96f", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Irwin Keyes", "character": "Busboy (uncredited)", "id": 13592, "credit_id": "52fe43c6c3a36847f806e973", "cast_id": 29, "profile_path": "/8c1MbJjXM6dE0WqEGFTBl48UowN.jpg", "order": 21}, {"name": "Tom Savini", "character": "Man The Knife Killer (uncredited)", "id": 11161, "credit_id": "52fe43c6c3a36847f806e977", "cast_id": 30, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 22}], "directors": [{"name": "Sean S. Cunningham", "department": "Directing", "job": "Director", "credit_id": "52fe43c6c3a36847f806e8f7", "profile_path": "/oX4ZDHQ1T8yyNzSd6FzqMsaF3QQ.jpg", "id": 35475}], "vote_average": 6.4, "runtime": 95}, "12690": {"poster_path": "/5Ql3TsG08yvVBDyV5azOWUVKmuy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20211394, "overview": "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.", "video": false, "id": 12690, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "Appaloosa", "tagline": "Feelings get you killed.", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0800308", "adult": false, "backdrop_path": "/dNdrWdlOEuisZ1YyafkkPEWAihn.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Axon Films", "id": 21106}, {"name": "Groundswell Productions", "id": 4205}], "release_date": "2008-10-03", "popularity": 0.472052118345897, "original_title": "Appaloosa", "budget": 20000000, "cast": [{"name": "Viggo Mortensen", "character": "Everett Hitch", "id": 110, "credit_id": "52fe45139251416c7504afc3", "cast_id": 4, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Ed Harris", "character": "Virgil Cole", "id": 228, "credit_id": "52fe45139251416c7504afc7", "cast_id": 5, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Allie", "id": 9137, "credit_id": "52fe45139251416c7504afcb", "cast_id": 6, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Jeremy Irons", "character": "Randall Bragg", "id": 16940, "credit_id": "52fe45149251416c7504afcf", "cast_id": 7, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 3}, {"name": "Timothy Spall", "character": "Phil Olson", "id": 9191, "credit_id": "52fe45149251416c7504afd3", "cast_id": 8, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 4}, {"name": "Lance Henriksen", "character": "Ring Shelton", "id": 2714, "credit_id": "52fe45149251416c7504afd7", "cast_id": 9, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 5}, {"name": "Timothy V. Murphy", "character": "Vince", "id": 92949, "credit_id": "52fe45149251416c7504afdb", "cast_id": 10, "profile_path": "/4DKVTjdYONYZV4K5fpCgYQFULKW.jpg", "order": 6}, {"name": "Robert Jauregui", "character": "Marshall Jack Bell", "id": 9566, "credit_id": "52fe45149251416c7504afdf", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Luce Rains", "character": "Dean", "id": 53969, "credit_id": "52fe45149251416c7504afe3", "cast_id": 12, "profile_path": "/1vn8TGhhs1aDSzFHUC0wHp9X9P1.jpg", "order": 8}, {"name": "Gabriel Marantz", "character": "Joe Whittfield", "id": 142331, "credit_id": "52fe45149251416c7504afe7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Cerris Morgan-Moyer", "character": "Tilda", "id": 239210, "credit_id": "52fe45149251416c7504afeb", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "James Gammon", "character": "Earl May", "id": 16433, "credit_id": "52fe45149251416c7504afef", "cast_id": 15, "profile_path": "/2veM9cas1G6UP1Np7Jux190Ei1m.jpg", "order": 11}, {"name": "Tom Bower", "character": "Abner Raines", "id": 19453, "credit_id": "52fe45149251416c7504aff3", "cast_id": 16, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 12}], "directors": [{"name": "Ed Harris", "department": "Directing", "job": "Director", "credit_id": "52fe45139251416c7504afb9", "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "id": 228}], "vote_average": 6.2, "runtime": 115}, "151960": {"poster_path": "/1xw5PaDSEPUMISwslEpmGfwVvZq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219788712, "overview": "Dusty is a cropdusting plane who dreams of competing in a famous aerial race. The problem? He is hopelessly afraid of heights. With the support of his mentor Skipper and a host of new friends, Dusty sets off to make his dreams come true.", "video": false, "id": 151960, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Planes", "tagline": "From above the world of Cars", "vote_count": 245, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGoePWKFLVJlxDWUUJhxSQgmkCa.jpg", "poster_path": "/tvzKXcXiJuUwOlni9MV00LCtqNm.jpg", "id": 270252, "name": "Planes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1691917", "adult": false, "backdrop_path": "/jUe7RbnkLXGYC9MPhdN9cruy4L0.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2013-08-09", "popularity": 1.40349169013061, "original_title": "Planes", "budget": 50000000, "cast": [{"name": "Dane Cook", "character": "Dusty Crophopper (voice)", "id": 31837, "credit_id": "52fe4b129251416c910cef29", "cast_id": 19, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 0}, {"name": "Carlos Alazraqui", "character": "El Chupacabra (voice)", "id": 59784, "credit_id": "52fe4b129251416c910ceee1", "cast_id": 2, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Bravo (voice)", "id": 5576, "credit_id": "52fe4b129251416c910ceef1", "cast_id": 5, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Julia Louis-Dreyfus", "character": "Rochelle (voice)", "id": 15886, "credit_id": "52fe4b129251416c910ceef5", "cast_id": 6, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 3}, {"name": "Brad Garrett", "character": "Chug (voice)", "id": 18, "credit_id": "52fe4b129251416c910ceef9", "cast_id": 7, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 4}, {"name": "Teri Hatcher", "character": "Dottie (voice)", "id": 10742, "credit_id": "52fe4b129251416c910ceefd", "cast_id": 8, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 5}, {"name": "John Cleese", "character": "Bulldog (voice)", "id": 8930, "credit_id": "52fe4b129251416c910cef01", "cast_id": 9, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Anthony Edwards", "character": "Echo (voice)", "id": 11085, "credit_id": "52fe4b129251416c910cef05", "cast_id": 10, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 7}, {"name": "Sinbad", "character": "Roper (voice)", "id": 57119, "credit_id": "52fe4b129251416c910cef09", "cast_id": 11, "profile_path": "/lQ6VVIxpZuwgXJuBX87YwQkXUoq.jpg", "order": 8}, {"name": "Priyanka Chopra", "character": "Ishani (voice)", "id": 77234, "credit_id": "52fe4b129251416c910cef0d", "cast_id": 12, "profile_path": "/cRpnjjP1KWP2AUrT4nRZIwTHOXO.jpg", "order": 9}, {"name": "Stacy Keach", "character": "Skipper (voice)", "id": 825, "credit_id": "52fe4b129251416c910cef11", "cast_id": 13, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 10}, {"name": "Gabriel Iglesias", "character": "Ned/Zed (voice)", "id": 86498, "credit_id": "52fe4b129251416c910cef15", "cast_id": 14, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 11}, {"name": "Roger Craig Smith", "character": "Ripslinger (voice)", "id": 75038, "credit_id": "52fe4b129251416c910cef19", "cast_id": 15, "profile_path": "/kGBdh92GpLs8gA4OaAL5JCDoTjw.jpg", "order": 12}, {"name": "Brent Musburger", "character": "Brent Mustangburger (voice)", "id": 188559, "credit_id": "52fe4b129251416c910cef1d", "cast_id": 16, "profile_path": "/fZXRho9StEBcblGYtplxiFTxD73.jpg", "order": 13}, {"name": "Oliver Kalkofe", "character": "Franz (voice)", "id": 16814, "credit_id": "52fe4b129251416c910cef21", "cast_id": 17, "profile_path": "/zYRrC07j70SKQVbL0BzygzalKUk.jpg", "order": 14}, {"name": "Colin Cowherd", "character": "Colin Cowling (voice)", "id": 1174394, "credit_id": "52fe4b129251416c910cef25", "cast_id": 18, "profile_path": "/iich0WGbodd6gHb4wk9lfKTK3l7.jpg", "order": 15}], "directors": [{"name": "Klay Hall", "department": "Directing", "job": "Director", "credit_id": "52fe4b129251416c910ceeed", "profile_path": null, "id": 111736}], "vote_average": 5.8, "runtime": 91}, "150": {"poster_path": "/rrraPWKiY8T6SEzODxZamqUSv6f.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78868508, "overview": "A hard-nosed cop reluctantly teams up with a wise-cracking criminal temporarily paroled to him, in order to track down a killer.", "video": false, "id": 150, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "48 Hrs.", "tagline": "One Cop. One Con. No Mercy.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": "/dEoWt93RHoXWb0bKyetX0l25SaM.jpg", "poster_path": "/8Dlcb8aDch6sUcWBc8zSSfNbPgG.jpg", "id": 93295, "name": "48 Hrs. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083511", "adult": false, "backdrop_path": "/tK2ElPDTp0pM8w5BZbuaEHbzaHs.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "1982-12-09", "popularity": 0.630685333605309, "original_title": "48 Hrs.", "budget": 1000000, "cast": [{"name": "Nick Nolte", "character": "Jack Cates", "id": 1733, "credit_id": "52fe421fc3a36847f800592b", "cast_id": 15, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Reggie Hammond", "id": 776, "credit_id": "52fe421fc3a36847f800592f", "cast_id": 16, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Annette O'Toole", "character": "Elaine", "id": 1734, "credit_id": "52fe421fc3a36847f8005933", "cast_id": 17, "profile_path": "/hFmg2LVQD0w0A9uDNu5na9pQamV.jpg", "order": 2}, {"name": "Frank McRae", "character": "Haden", "id": 1735, "credit_id": "52fe421fc3a36847f8005937", "cast_id": 18, "profile_path": "/xIjG8ef8Y2JU1KiDjcB5vJExXk.jpg", "order": 3}, {"name": "James Remar", "character": "Albert Ganz", "id": 1736, "credit_id": "52fe421fc3a36847f800593b", "cast_id": 19, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 4}, {"name": "David Patrick Kelly", "character": "Luther", "id": 1737, "credit_id": "52fe421fc3a36847f800593f", "cast_id": 20, "profile_path": "/ujvmeyBvEJ7gkvww0OYDBlbxOTT.jpg", "order": 5}, {"name": "Sonny Landham", "character": "Billy Bear", "id": 1105, "credit_id": "52fe421fc3a36847f8005943", "cast_id": 21, "profile_path": "/dmOpsfsz56FtcrQMfyiivmoEXXP.jpg", "order": 6}, {"name": "Brion James", "character": "Ben Kehoe", "id": 591, "credit_id": "52fe421fc3a36847f8005947", "cast_id": 22, "profile_path": "/3F6e8BkmVjsxPDeFBSXYRfhLiHA.jpg", "order": 7}, {"name": "Kerry Sherman", "character": "Rosalie, Hostage Girl", "id": 1738, "credit_id": "52fe421fc3a36847f800594b", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Jonathan Banks", "character": "Algren", "id": 783, "credit_id": "52fe421fc3a36847f800594f", "cast_id": 24, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 9}, {"name": "James Keane", "character": "Vanzant", "id": 1739, "credit_id": "52fe421fc3a36847f8005953", "cast_id": 25, "profile_path": "/1e2zknHnG1Yp92D3hRQUbXHay9c.jpg", "order": 10}, {"name": "Tara King", "character": "Frizzy, Hotel Desk Clerk", "id": 1740, "credit_id": "52fe421fc3a36847f8005957", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Greta Blackburn", "character": "Lisa, Blonde Hooker", "id": 1741, "credit_id": "52fe421fc3a36847f800595b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Margot Rose", "character": "Casey", "id": 1742, "credit_id": "52fe421fc3a36847f800595f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Denise Crosby", "character": "Sally", "id": 1743, "credit_id": "52fe421fc3a36847f8005963", "cast_id": 29, "profile_path": "/6vJh3H3dTvgnZ1YoHE1qYM1AbRC.jpg", "order": 14}, {"name": "Olivia Brown", "character": "Candy (as Olivia M. Brown)", "id": 154141, "credit_id": "52fe421fc3a36847f800596d", "cast_id": 31, "profile_path": "/9Boq2QunWZy9wC6mU4dN1EZHcGs.jpg", "order": 15}, {"name": "Todd Allen", "character": "Young Cop", "id": 21484, "credit_id": "52fe421fc3a36847f8005971", "cast_id": 32, "profile_path": "/vHGltCZ9ue4xjG6dKfpiNJ47g2g.jpg", "order": 16}, {"name": "Bill Dearth", "character": "Thin Cop", "id": 169003, "credit_id": "52fe421fc3a36847f8005975", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Ned Dowd", "character": "Big Cop", "id": 42006, "credit_id": "52fe421fc3a36847f8005979", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "Jim Haynie", "character": "Old Cop", "id": 10380, "credit_id": "52fe421fc3a36847f800597d", "cast_id": 35, "profile_path": "/aFXy2ef18bE6gqibhDoZ7EAsq8n.jpg", "order": 19}, {"name": "Jack Thibeau", "character": "Detective", "id": 14320, "credit_id": "52fe421fc3a36847f8005981", "cast_id": 36, "profile_path": "/ugO5Vb7ZXUz5VMpM9dZghJSt6ui.jpg", "order": 20}, {"name": "Jon St. Elwood", "character": "Plainclothes Man", "id": 164696, "credit_id": "52fe421fc3a36847f8005985", "cast_id": 37, "profile_path": null, "order": 21}, {"name": "Clare Nono", "character": "Ruth", "id": 158904, "credit_id": "52fe421fc3a36847f8005989", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Sandy Martin", "character": "Policewoman", "id": 53931, "credit_id": "52fe421fc3a36847f800598d", "cast_id": 39, "profile_path": "/WfdT2V1DxUvoBlgUzeCVq340IH.jpg", "order": 23}, {"name": "Matt Landers", "character": "Bob", "id": 156522, "credit_id": "52fe421fc3a36847f8005991", "cast_id": 40, "profile_path": null, "order": 24}, {"name": "Peter Jason", "character": "Cowboy Bartender", "id": 6916, "credit_id": "52fe421fc3a36847f8005995", "cast_id": 41, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 25}, {"name": "Bill Cross", "character": "First Cop", "id": 97976, "credit_id": "52fe421fc3a36847f8005999", "cast_id": 42, "profile_path": null, "order": 26}, {"name": "Chris Mulkey", "character": "Second Cop", "id": 15824, "credit_id": "52fe421fc3a36847f800599d", "cast_id": 43, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 27}, {"name": "Marcelino Sanchez", "character": "Parking Lot Attendant (as James Marcelino)", "id": 1132251, "credit_id": "52fe421fc3a36847f80059a1", "cast_id": 44, "profile_path": null, "order": 28}, {"name": "Bennie Dobbins", "character": "Road Gang Guard", "id": 949734, "credit_id": "52fe421fc3a36847f80059a5", "cast_id": 45, "profile_path": null, "order": 29}, {"name": "Walter Scott", "character": "Road Gang Guard", "id": 16474, "credit_id": "52fe421fc3a36847f80059a9", "cast_id": 46, "profile_path": "/l8uXZW6xypNY7e4wd7a0HqzP6iA.jpg", "order": 30}, {"name": "W. T. Zacha", "character": "Road Gang Guard", "id": 1289388, "credit_id": "52fe421fc3a36847f80059ad", "cast_id": 47, "profile_path": null, "order": 31}, {"name": "Bego\u00f1a Plaza", "character": "Indian Hooker", "id": 1289389, "credit_id": "52fe421fc3a36847f80059b1", "cast_id": 48, "profile_path": null, "order": 32}, {"name": "Loyd Catlett", "character": "Prison Guard", "id": 2277, "credit_id": "52fe421fc3a36847f80059b5", "cast_id": 49, "profile_path": "/kdoZBvpFfVnsIsEhT76HF5Aj2zS.jpg", "order": 33}, {"name": "B. G. Fisher", "character": "Prison Guard", "id": 1289390, "credit_id": "52fe421fc3a36847f80059b9", "cast_id": 50, "profile_path": null, "order": 34}, {"name": "Reid Cruickshanks", "character": "Prison Guard", "id": 136236, "credit_id": "52fe421fc3a36847f80059bd", "cast_id": 51, "profile_path": null, "order": 35}, {"name": "R. D. Call", "character": "Duty Sergeant", "id": 49832, "credit_id": "52fe421fc3a36847f80059c1", "cast_id": 52, "profile_path": "/txa2FUem2tQGPH5HQR6WceIX9B7.jpg", "order": 36}, {"name": "Brenda Venus", "character": "Hooker", "id": 101762, "credit_id": "52fe421fc3a36847f80059c5", "cast_id": 53, "profile_path": null, "order": 37}, {"name": "Gloria Gifford", "character": "Hooker (as Gloria E. Gifford)", "id": 92587, "credit_id": "52fe421fc3a36847f80059c9", "cast_id": 54, "profile_path": null, "order": 38}, {"name": "Nick Dimitri", "character": "Torchy's Patron", "id": 91241, "credit_id": "52fe421fc3a36847f80059cd", "cast_id": 55, "profile_path": null, "order": 39}, {"name": "John Dennis Johnston", "character": "Torchy's Patron", "id": 85869, "credit_id": "52fe421fc3a36847f80059d1", "cast_id": 56, "profile_path": "/c0EIs8wCQehz0bRvao7Qxfot1h3.jpg", "order": 40}, {"name": "Rock A. Walker", "character": "Torchy's Patron", "id": 999700, "credit_id": "52fe421fc3a36847f80059d5", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Dave Moordigian", "character": "Gas Station Attendant", "id": 1289391, "credit_id": "52fe421fc3a36847f80059d9", "cast_id": 58, "profile_path": null, "order": 42}, {"name": "J. Wesley Huston", "character": "Security Guard", "id": 555973, "credit_id": "52fe421fc3a36847f80059dd", "cast_id": 59, "profile_path": null, "order": 43}, {"name": "Gary Pettinger", "character": "Cop with Gun", "id": 174662, "credit_id": "52fe421fc3a36847f80059e1", "cast_id": 60, "profile_path": null, "order": 44}, {"name": "Marquerita Wallace", "character": "Bar Girl", "id": 1289392, "credit_id": "52fe421fc3a36847f80059e5", "cast_id": 61, "profile_path": null, "order": 45}, {"name": "Angela Robinson", "character": "Bar Girl", "id": 106703, "credit_id": "52fe421fc3a36847f80059e9", "cast_id": 62, "profile_path": null, "order": 46}, {"name": "Jack Lightsy", "character": "Bartender", "id": 193300, "credit_id": "52fe421fc3a36847f80059ed", "cast_id": 63, "profile_path": null, "order": 47}, {"name": "John Hauk", "character": "Henry Wong", "id": 1118713, "credit_id": "52fe421fc3a36847f80059f1", "cast_id": 64, "profile_path": null, "order": 48}, {"name": "Bob Yanez", "character": "Interrogator", "id": 1289393, "credit_id": "52fe421fc3a36847f80059f5", "cast_id": 65, "profile_path": null, "order": 49}, {"name": "Clint Smith", "character": "Leroy", "id": 214291, "credit_id": "52fe421fc3a36847f80059f9", "cast_id": 66, "profile_path": null, "order": 50}, {"name": "Luis Contreras", "character": "Gang Member", "id": 85870, "credit_id": "52fe421fc3a36847f80059fd", "cast_id": 67, "profile_path": "/1OZ6UwzgLEFWvHJXyOvZTYuYisq.jpg", "order": 51}, {"name": "Suzanne M. Regard", "character": "Cowgirl Dancer", "id": 1289394, "credit_id": "52fe421fc3a36847f8005a01", "cast_id": 68, "profile_path": null, "order": 52}, {"name": "Ola Ray", "character": "Vroman's Dancer", "id": 926, "credit_id": "52fe421fc3a36847f8005a05", "cast_id": 69, "profile_path": null, "order": 53}, {"name": "Bjaye Turner", "character": "Vroman's Dancer", "id": 1289395, "credit_id": "52fe421fc3a36847f8005a09", "cast_id": 70, "profile_path": null, "order": 54}], "directors": [{"name": "Walter Hill", "department": "Directing", "job": "Director", "credit_id": "52fe421ec3a36847f80058d9", "profile_path": "/wpNPqW1oPi2GMYEgykHYBTDdGmJ.jpg", "id": 1723}], "vote_average": 6.3, "runtime": 96}, "4512": {"poster_path": "/w71H420Wey0bexfdMQYrCPRNbU1.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14711793, "overview": "Everyone in 1880's America knows Jesse James. He's the nation's most notorious criminal, hunted by the law in 10 states. He's also the land's greatest hero, lauded as a Robin Hood by the public. Robert Ford? No one knows him. Not yet. But the ambitious 19-year-old aims to change that. He'll befriend Jesse, ride with his gang. And if that doesn't bring Ford fame, he'll find a deadlier way.", "video": false, "id": 4512, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 37, "name": "Western"}], "title": "The Assassination of Jesse James by the Coward Robert Ford", "tagline": "Beyond the myth lies America's greatest betrayal", "vote_count": 211, "homepage": "http://jessejamesmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443680", "adult": false, "backdrop_path": "/zAh7HC8Tk2D0q3VdMOP6boqNG9N.jpg", "production_companies": [{"name": "Plan B Entertainment", "id": 81}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Virtual Studios", "id": 449}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Jesse Films Inc.", "id": 11252}, {"name": "Alberta Film Entertainment", "id": 3997}], "release_date": "2007-09-20", "popularity": 0.618479745130086, "original_title": "The Assassination of Jesse James by the Coward Robert Ford", "budget": 30000000, "cast": [{"name": "Brad Pitt", "character": "Jesse James", "id": 287, "credit_id": "52fe43c7c3a36847f806eed5", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Casey Affleck", "character": "Robert Ford", "id": 1893, "credit_id": "52fe43c7c3a36847f806eedd", "cast_id": 5, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 1}, {"name": "Sam Shepard", "character": "Frank James", "id": 9880, "credit_id": "52fe43c7c3a36847f806eee9", "cast_id": 8, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 2}, {"name": "Mary-Louise Parker", "character": "Zeralda James", "id": 18248, "credit_id": "52fe43c7c3a36847f806eee1", "cast_id": 6, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 3}, {"name": "Paul Schneider", "character": "Dick Liddil", "id": 15684, "credit_id": "52fe43c7c3a36847f806ef4f", "cast_id": 27, "profile_path": "/u3FUCSYpivGpCliH22PJdCk2pIY.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Wood Hite", "id": 17604, "credit_id": "52fe43c7c3a36847f806ef47", "cast_id": 25, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "Zooey Deschanel", "character": "Dorothy Evans", "id": 11664, "credit_id": "52fe43c7c3a36847f806eed9", "cast_id": 4, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 6}, {"name": "Sam Rockwell", "character": "Charley Ford", "id": 6807, "credit_id": "52fe43c7c3a36847f806eee5", "cast_id": 7, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 7}, {"name": "Garret Dillahunt", "character": "Ed Miller", "id": 39520, "credit_id": "52fe43c7c3a36847f806ef4b", "cast_id": 26, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 8}, {"name": "Brooklynn Proulx", "character": "Mary James", "id": 39518, "credit_id": "52fe43c7c3a36847f806ef3f", "cast_id": 23, "profile_path": "/yqnhEdUSWYZPUxQFUYHptAlgk4h.jpg", "order": 9}, {"name": "Dustin Bollinger", "character": "Tim James", "id": 39519, "credit_id": "52fe43c7c3a36847f806ef43", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Joel McNichol", "character": "Express Messenger", "id": 39521, "credit_id": "52fe43c7c3a36847f806ef53", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "James Defelice", "character": "Baggagemaster", "id": 39522, "credit_id": "52fe43c7c3a36847f806ef57", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "J.C. Roberts", "character": "Engineer", "id": 1149455, "credit_id": "544cf92bc3a36872d2002324", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Alison Elliott", "character": "Martha Bolton", "id": 15675, "credit_id": "544cc64ec3a36872e0001f62", "cast_id": 33, "profile_path": "/lu5ePooNr1mXNPoEJbxcdmZNqEz.jpg", "order": 14}, {"name": "Kailin See", "character": "Sarah Hite", "id": 89247, "credit_id": "544cf8cfc3a36872d80024a5", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Michael Parks", "character": "Henry Craig", "id": 2536, "credit_id": "540401030e0a2658f1009247", "cast_id": 32, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 16}, {"name": "Ted Levine", "character": "Sheriff James Timberlak", "id": 15854, "credit_id": "52fe43c7c3a36847f806eeed", "cast_id": 9, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 17}, {"name": "James Carville", "character": "Thomas T. Crittenden", "id": 60093, "credit_id": "540400e40e0a2658db009302", "cast_id": 31, "profile_path": "/oKNvcitj0Iq4xKmc0AX6tH67iC7.jpg", "order": 18}, {"name": "Nick Cave", "character": "Bowery Saloon Singer", "id": 39516, "credit_id": "53bbbac1c3a3686623001f2b", "cast_id": 30, "profile_path": "/9CksrIXJc8cc6xJ9Um960CiUPje.jpg", "order": 19}], "directors": [{"name": "Andrew Dominik", "department": "Directing", "job": "Director", "credit_id": "52fe43c7c3a36847f806eecb", "profile_path": "/r80gQB1iYTMSjnxQZYqSbvE66tq.jpg", "id": 37618}], "vote_average": 6.8, "runtime": 160}, "4513": {"poster_path": "/mXvIxPkATBU3x3DqiTv0wj4n6YQ.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75304357, "overview": "This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town's husband-and-wife Sheriff team stand between the survivors and certain destruction.", "video": false, "id": 4513, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "30 Days of Night", "tagline": "They're Coming!", "vote_count": 189, "homepage": "http://www.30daysofnight.com/", "belongs_to_collection": {"backdrop_path": "/uKN4mENg8BVeKCxwWXGCvFeUim8.jpg", "poster_path": "/fRAZnIegztYTPsM9eGjSUusKUYM.jpg", "id": 91660, "name": "30 Days of Night Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0389722", "adult": false, "backdrop_path": "/5Fc169O1PRvKSmd9xx4vIemMe9Y.jpg", "production_companies": [{"name": "HorrorFlix", "id": 24339}, {"name": "Columbia Pictures", "id": 5}, {"name": "Ghost House Pictures", "id": 768}, {"name": "Dark Horse Entertainment", "id": 552}], "release_date": "2007-10-17", "popularity": 0.562227590886518, "original_title": "30 Days of Night", "budget": 30000000, "cast": [{"name": "Josh Hartnett", "character": "Eben Oleson", "id": 2299, "credit_id": "52fe43c7c3a36847f806efa7", "cast_id": 4, "profile_path": "/4c5rLeOe33DXm6ayqX1uGocumsc.jpg", "order": 0}, {"name": "Melissa George", "character": "Stella Oleson", "id": 27755, "credit_id": "52fe43c7c3a36847f806efaf", "cast_id": 6, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 1}, {"name": "Ben Foster", "character": "The Stranger", "id": 11107, "credit_id": "52fe43c7c3a36847f806efab", "cast_id": 5, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 2}, {"name": "Danny Huston", "character": "Marlow", "id": 6413, "credit_id": "52fe43c7c3a36847f806efb3", "cast_id": 7, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Mark Boone Junior", "character": "Beau Brower", "id": 534, "credit_id": "52fe43c7c3a36847f806efb7", "cast_id": 8, "profile_path": "/nNVvaTLa8A5uwLXQvCsKoX4npwo.jpg", "order": 4}, {"name": "Craig Hall", "character": "Wilson Bulosan", "id": 3496, "credit_id": "52fe43c7c3a36847f806efbb", "cast_id": 9, "profile_path": "/e18KUAquVXJcEl9uPC0InR9BLyu.jpg", "order": 5}, {"name": "Manu Bennett", "character": "Billy", "id": 41782, "credit_id": "52fe43c7c3a36847f806f007", "cast_id": 23, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 6}, {"name": "Nathaniel Lees", "character": "Carter Davies", "id": 41784, "credit_id": "52fe43c7c3a36847f806f00b", "cast_id": 24, "profile_path": "/j1w45OYSdNpA9LVd8kDbWRhwXSM.jpg", "order": 7}, {"name": "Elizabeth Hawthorne", "character": "Lucy Ikos", "id": 5533, "credit_id": "52fe43c7c3a36847f806f00f", "cast_id": 25, "profile_path": "/9hpeYdVRmQ3MoeWYqHR2e642av2.jpg", "order": 8}, {"name": "Joel Tobeck", "character": "Doug Hertz", "id": 41785, "credit_id": "52fe43c7c3a36847f806f013", "cast_id": 26, "profile_path": "/14Oobz8bwcd3jiqnoCFTQnPBJdB.jpg", "order": 9}, {"name": "Kate Elliott", "character": "Dawn", "id": 167025, "credit_id": "52fe43c7c3a36847f806f01d", "cast_id": 28, "profile_path": "/52Eskx4ybyTY61GLotxCFT4VhSn.jpg", "order": 10}, {"name": "Camille Keenan", "character": "Kirsten Toomey", "id": 1245747, "credit_id": "5480380f9251416e7b001ce4", "cast_id": 57, "profile_path": null, "order": 11}, {"name": "Peter Feeney", "character": "John Riis", "id": 33306, "credit_id": "5480383cc3a36829b200254c", "cast_id": 58, "profile_path": null, "order": 12}, {"name": "Pua Magasiva", "character": "Malekai Hamm", "id": 181900, "credit_id": "5480387ac3a36829b2002557", "cast_id": 59, "profile_path": "/dzp7nK9Tw9tI2dWHPcNzD5q38dP.jpg", "order": 13}], "directors": [{"name": "David Slade", "department": "Directing", "job": "Director", "credit_id": "52fe43c7c3a36847f806ef97", "profile_path": "/ksOn4mssJbmdBX1AvzZF4nCUAiQ.jpg", "id": 27571}], "vote_average": 6.2, "runtime": 113}, "4515": {"poster_path": "/iLuo4swOCHF2a8BlaxXZGdqETUs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three stories told simultaneous in ninety minutes of real time: a Republican Senator who's a presidential hopeful gives an hour-long interview to a skeptical television reporter, detailing a strategy for victory in Afghanistan; two special forces ambushed on an Afghani ridge await rescue as Taliban forces close in; a poli-sci professor at a California college invites a student to re-engage.", "video": false, "id": 4515, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Lions for Lambs", "tagline": "If you don't STAND for something, you might FALL for anything.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0891527", "adult": false, "backdrop_path": "/wEjX9ZSTJ2VYjDOkbFccZKJPqYK.jpg", "production_companies": [{"name": "Andell Entertainment", "id": 1683}, {"name": "MGM", "id": 5899}, {"name": "United Artists", "id": 60}, {"name": "Wildwood Enterprises", "id": 316}, {"name": "Brat Na Pont Productions", "id": 21911}, {"name": "Cruise/Wagner Productions", "id": 44}], "release_date": "2007-10-22", "popularity": 0.350554166104082, "original_title": "Lions for Lambs", "budget": 35000000, "cast": [{"name": "Robert Redford", "character": "Dr. Stephen Malley", "id": 4135, "credit_id": "52fe43c7c3a36847f806f05d", "cast_id": 2, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Janine Roth", "id": 5064, "credit_id": "52fe43c7c3a36847f806f061", "cast_id": 3, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Tom Cruise", "character": "Senator Jasper Irving", "id": 500, "credit_id": "52fe43c7c3a36847f806f065", "cast_id": 4, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Ernest", "id": 454, "credit_id": "52fe43c7c3a36847f806f069", "cast_id": 5, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Andrew Garfield", "character": "Todd", "id": 37625, "credit_id": "52fe43c7c3a36847f806f075", "cast_id": 10, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 4}, {"name": "Peter Berg", "character": "Wirey Pink", "id": 36602, "credit_id": "52fe43c7c3a36847f806f0cd", "cast_id": 25, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 5}, {"name": "Derek Luke", "character": "Arian", "id": 15543, "credit_id": "52fe43c7c3a36847f806f06d", "cast_id": 6, "profile_path": "/8aWVcw4JDB76dhKRvUQgDGxInvN.jpg", "order": 6}, {"name": "Jennifer Sommerfeld", "character": "Today Show Host", "id": 37624, "credit_id": "52fe43c7c3a36847f806f071", "cast_id": 9, "profile_path": "/wxLnDRYapdJIcUbWd7rFzSJdFzk.jpg", "order": 7}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe43c7c3a36847f806f059", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 5.2, "runtime": 92}, "4517": {"poster_path": "/kER0eNIgnZ9rlvrk5f2syGWaknK.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "This movie is a Sequel to the First Elizabeth movie from 1998, and takes place in the 15th century, following the virgin queen of England, and her epic battle against the Spanish fleet", "video": false, "id": 4517, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Elizabeth: The Golden Age", "tagline": "Woman. Warrior. Queen.", "vote_count": 57, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3YiTOxGX5KZO6P3eg41P50QrRhQ.jpg", "poster_path": "/2XxIeKB6g21GvPmixWyyc9ZlLnR.jpg", "id": 100286, "name": "Elizabeth Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414055", "adult": false, "backdrop_path": "/iLEh8hB3YVr3NgLmAFHPsMPLirU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}], "release_date": "2007-09-09", "popularity": 1.11715115372139, "original_title": "Elizabeth: The Golden Age", "budget": 25000000, "cast": [{"name": "Cate Blanchett", "character": "Elizabeth I", "id": 112, "credit_id": "52fe43c8c3a36847f806f1c3", "cast_id": 5, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Clive Owen", "character": "Sir Walter Raleigh", "id": 2296, "credit_id": "52fe43c8c3a36847f806f1c7", "cast_id": 6, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 1}, {"name": "Geoffrey Rush", "character": "Sir Francis Walsingham", "id": 118, "credit_id": "52fe43c8c3a36847f806f1cb", "cast_id": 7, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 2}, {"name": "Tom Hollander", "character": "Amyas Paulet", "id": 2441, "credit_id": "52fe43c8c3a36847f806f1cf", "cast_id": 8, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 3}, {"name": "Abbie Cornish", "character": "Elizabeth Throckmorton", "id": 37260, "credit_id": "52fe43c8c3a36847f806f1d3", "cast_id": 9, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 4}, {"name": "Rhys Ifans", "character": "Robert Reston", "id": 7026, "credit_id": "52fe43c8c3a36847f806f1d7", "cast_id": 10, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 5}, {"name": "Jordi Moll\u00e0", "character": "Philip II", "id": 31384, "credit_id": "52fe43c8c3a36847f806f20b", "cast_id": 19, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 6}, {"name": "Samantha Morton", "character": "Queen Mary", "id": 2206, "credit_id": "52fe43c8c3a36847f806f20f", "cast_id": 20, "profile_path": "/iGThEengA4ziHy9JyrlWzzHeO8k.jpg", "order": 7}, {"name": "Eddie Redmayne", "character": "Babington", "id": 37632, "credit_id": "52fe43c8c3a36847f806f213", "cast_id": 21, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 8}, {"name": "Adrian Scarborough", "character": "Calley", "id": 40311, "credit_id": "54e9e86e9251412eb8003eec", "cast_id": 81, "profile_path": null, "order": 9}, {"name": "Adam Godley", "character": "William Walsingham", "id": 23429, "credit_id": "54e9e8a49251412eb100400d", "cast_id": 82, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 10}, {"name": "Christian Brassington", "character": "Archduke Charles", "id": 118037, "credit_id": "54e9e8d59251412eb4003db4", "cast_id": 83, "profile_path": null, "order": 11}, {"name": "Robert Cambrinus", "character": "Count Georg von Helfenstein", "id": 1423944, "credit_id": "54e9e90fc3a36836e000407f", "cast_id": 84, "profile_path": null, "order": 12}, {"name": "David Threlfall", "character": "Dr. John Dee", "id": 59081, "credit_id": "54e9e950c3a36836d9003db4", "cast_id": 85, "profile_path": "/qhjrbokMi1DYcrL4B8YuIr3IT5y.jpg", "order": 13}, {"name": "Vidal Sancho", "character": "Spanish Minister", "id": 1188323, "credit_id": "54e9e9859251412ebd003feb", "cast_id": 86, "profile_path": null, "order": 14}], "directors": [{"name": "Shekhar Kapur", "department": "Directing", "job": "Director", "credit_id": "52fe43c8c3a36847f806f1ad", "profile_path": "/tscFnAwxOok4DgFE7uaJhUMk7vc.jpg", "id": 37630}], "vote_average": 6.3, "runtime": 114}, "4518": {"poster_path": "/y4ynYOy205LorkOIN6hs6DgJ1xa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82102070, "overview": "This film details the ascension to the throne and the early reign of Queen Elizabeth the First, as played by Cate Blanchett. The main focus is the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.", "video": false, "id": 4518, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Elizabeth", "tagline": "Declared illegitimate aged 3. Tried for treason aged 21. Crowned Queen aged 25.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3YiTOxGX5KZO6P3eg41P50QrRhQ.jpg", "poster_path": "/2XxIeKB6g21GvPmixWyyc9ZlLnR.jpg", "id": 100286, "name": "Elizabeth Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0127536", "adult": false, "backdrop_path": "/sDTXw1lvMfQncRihHAugOzQ3qn1.jpg", "production_companies": [{"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}, {"name": "Channel Four Films", "id": 181}], "release_date": "1998-09-13", "popularity": 0.277515583930732, "original_title": "Elizabeth", "budget": 30000000, "cast": [{"name": "Cate Blanchett", "character": "Elisabeth I", "id": 112, "credit_id": "52fe43c8c3a36847f806f25b", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Geoffrey Rush", "character": "Sir Francis Walsingham", "id": 118, "credit_id": "52fe43c8c3a36847f806f2ad", "cast_id": 16, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 1}, {"name": "Christopher Eccleston", "character": "Duke of Norfolk", "id": 2040, "credit_id": "52fe43c8c3a36847f806f2b1", "cast_id": 17, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 2}, {"name": "Joseph Fiennes", "character": "Robert Dudley", "id": 12763, "credit_id": "52fe43c8c3a36847f806f2b5", "cast_id": 18, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 3}, {"name": "Richard Attenborough", "character": "Sir William Cecil", "id": 4786, "credit_id": "52fe43c8c3a36847f806f2b9", "cast_id": 19, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 4}, {"name": "Fanny Ardant", "character": "Mary of Guise", "id": 20234, "credit_id": "52fe43c8c3a36847f806f2bd", "cast_id": 20, "profile_path": "/ys1DzohNJqKIyefq4NzdYk5Z1vZ.jpg", "order": 5}, {"name": "Eric Cantona", "character": "Monsieur de Foix", "id": 37758, "credit_id": "52fe43c8c3a36847f806f2c1", "cast_id": 21, "profile_path": "/tevcJNgEMt8ZDbXFvnWBidrxxek.jpg", "order": 6}, {"name": "Vincent Cassel", "character": "Duc d'Anjou", "id": 1925, "credit_id": "52fe43c8c3a36847f806f2c5", "cast_id": 22, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 7}, {"name": "Kathy Burke", "character": "Queen Mary", "id": 37759, "credit_id": "52fe43c8c3a36847f806f2c9", "cast_id": 23, "profile_path": "/3VjQaOV0Wyy1tzwxKI5Os5ZqID8.jpg", "order": 8}, {"name": "Edward Hardwicke", "character": "Earl of Arundel", "id": 3545, "credit_id": "52fe43c8c3a36847f806f2cd", "cast_id": 24, "profile_path": "/9cIe4QxtMtiVrhsUAJtjvAKJRTB.jpg", "order": 9}, {"name": "Emily Mortimer", "character": "Kat Ashley", "id": 1246, "credit_id": "52fe43c8c3a36847f806f2d1", "cast_id": 25, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 10}, {"name": "John Gielgud", "character": "The Pope", "id": 11857, "credit_id": "52fe43c8c3a36847f806f2d5", "cast_id": 26, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 11}, {"name": "James Frain", "character": "Alvaro de la Quadra", "id": 22063, "credit_id": "52fe43c8c3a36847f806f2d9", "cast_id": 27, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 12}, {"name": "Kelly Macdonald", "character": "Isabel Knollys", "id": 9015, "credit_id": "52fe43c8c3a36847f806f2dd", "cast_id": 28, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 13}, {"name": "Kenny Doughty", "character": "Sir Thomas Elyot", "id": 37760, "credit_id": "52fe43c8c3a36847f806f2e1", "cast_id": 29, "profile_path": "/7toqP6Xv8pk4PX9er3ddzrz3wbx.jpg", "order": 14}, {"name": "Daniel Craig", "character": "John Ballard", "id": 8784, "credit_id": "52fe43c8c3a36847f806f2e5", "cast_id": 30, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 15}, {"name": "Alfie Allen", "character": "Arundel's Son", "id": 71586, "credit_id": "538cfaa9c3a368714e003510", "cast_id": 31, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 16}, {"name": "Jamie Foreman", "character": "Earl of Sussex", "id": 3543, "credit_id": "54e8726a9251412ebd001ac0", "cast_id": 66, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 17}], "directors": [{"name": "Shekhar Kapur", "department": "Directing", "job": "Director", "credit_id": "52fe43c8c3a36847f806f257", "profile_path": "/tscFnAwxOok4DgFE7uaJhUMk7vc.jpg", "id": 37630}], "vote_average": 6.9, "runtime": 124}, "225703": {"poster_path": "/hyTcu6nfMnKUHuD9O5pssHpZ3RB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A spoof movie that references The Hunger Games, The Avengers, Sherlock Holmes, and the Harry Potter saga.", "video": false, "id": 225703, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Starving Games", "tagline": "From the guys who cooked up 'Date Movie', 'Meet the Spartans' and 'Vampires Suck'", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2403029", "adult": false, "backdrop_path": "/JQIlUIjOvMBN6IEjHGaEiBEJPl.jpg", "production_companies": [{"name": "Louisiana Production Consultants", "id": 23898}], "release_date": "2013-11-08", "popularity": 0.00787989681348329, "original_title": "The Starving Games", "budget": 0, "cast": [{"name": "Brant Daugherty", "character": "Dale", "id": 1211093, "credit_id": "52fe4e679251416c751553ed", "cast_id": 1, "profile_path": "/xNGRWJUGFsAUu8hs60jVXnBmwTG.jpg", "order": 0}, {"name": "Maiara Walsh", "character": "Kantmiss Evershot", "id": 144288, "credit_id": "52fe4e679251416c751553f1", "cast_id": 2, "profile_path": "/dtjctiSXC5tmNXHozaX3P9MnyEM.jpg", "order": 1}, {"name": "Lauren Bowles", "character": "Effoff", "id": 168326, "credit_id": "52fe4e679251416c751553f5", "cast_id": 3, "profile_path": "/pGLvRMdrTObr3Xg5mxfuMIz3nmt.jpg", "order": 2}, {"name": "Cody Christian", "character": "Peter Malarky", "id": 219664, "credit_id": "52fe4e679251416c751553f9", "cast_id": 4, "profile_path": "/gSLScst1RS1c20ls5ESkIsESx3V.jpg", "order": 3}, {"name": "Diedrich Bader", "character": "President Snowballs", "id": 5727, "credit_id": "52fe4e679251416c75155409", "cast_id": 10, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 4}, {"name": "Ashton Leigh", "character": "Dos Equis Girl", "id": 1268071, "credit_id": "52fe4e679251416c7515540d", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Joseph Aviel", "character": "Arnold Schwarzenegger", "id": 1268072, "credit_id": "52fe4e679251416c75155411", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Eric Buarque", "character": "Bruce Willis", "id": 1268073, "credit_id": "52fe4e679251416c75155415", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Alice Ford", "character": "Zitty Girl", "id": 1268074, "credit_id": "52fe4e679251416c75155419", "cast_id": 14, "profile_path": null, "order": 8}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe4e679251416c751553ff", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4e679251416c7515541f", "profile_path": null, "id": 35734}], "vote_average": 4.4, "runtime": 83}, "242090": {"poster_path": "/7l0ZU5rshMtnqrHXJkvpyyeDjjh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On the brink of separation, Ethan and Sophie escape to a beautiful vacation house for a weekend getaway in an attempt to save their marriage. What begins as a romantic and fun retreat soon becomes surreal, when an unexpected discovery forces the two to examine themselves, their relationship, and their future.", "video": false, "id": 242090, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The One I Love", "tagline": "", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2756032", "adult": false, "backdrop_path": "/cAEtrRXMihiM68RDb6rxyUdep0k.jpg", "production_companies": [{"name": "Radius-TWC", "id": 20671}], "release_date": "2014-08-08", "popularity": 0.33554704826576, "original_title": "The One I Love", "budget": 0, "cast": [{"name": "Mark Duplass", "character": "Ethan", "id": 45407, "credit_id": "52fe4ec5c3a36847f82a6d03", "cast_id": 5, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 0}, {"name": "Elisabeth Moss", "character": "Sophie", "id": 32798, "credit_id": "52fe4ec5c3a36847f82a6cff", "cast_id": 4, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 1}, {"name": "Ted Danson", "character": "The Therapist", "id": 12836, "credit_id": "52fe4ec5c3a36847f82a6cfb", "cast_id": 3, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 2}, {"name": "Kiana Cason", "character": "Waitress", "id": 1374984, "credit_id": "54418f4ec3a3683e0b00041c", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Kaitlyn Dodson", "character": "Diner Patron", "id": 1375090, "credit_id": "54421eb2c3a3683dfb001645", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Lori Farrar", "character": "Diner Patron", "id": 1375093, "credit_id": "54421ec7c3a3683dfb00164f", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Marlee Matlin", "character": "Diner Patron", "id": 19797, "credit_id": "54421eeac3a3683e0e0015e6", "cast_id": 9, "profile_path": "/rE27IELBnYIMta5nvJmjjC4rsVg.jpg", "order": 6}, {"name": "Tim Peddicord", "character": "Diner Patron", "id": 1417299, "credit_id": "54c1c900c3a36878d0002d3f", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Ryan Pederson", "character": "Diner Patron", "id": 1417300, "credit_id": "54c1c90c9251416e6000c3a1", "cast_id": 11, "profile_path": null, "order": 8}], "directors": [{"name": "Charlie McDowell", "department": "Directing", "job": "Director", "credit_id": "52fe4ec5c3a36847f82a6cf1", "profile_path": null, "id": 82226}], "vote_average": 6.8, "runtime": 91}, "4523": {"poster_path": "/syHRHMysV3B7DFOf88McrJl7yim.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 340487652, "overview": "The beautiful princess Giselle is banished by an evil queen from her magical, musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a \"happily ever after\" basis, Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?", "video": false, "id": 4523, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Enchanted", "tagline": "This fairytale princess is about to meet a real Prince Charming", "vote_count": 261, "homepage": "http://disney.go.com/disneypictures/enchanted/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0461770", "adult": false, "backdrop_path": "/9l5Nzo1qbEslfCu2NYWimpZ1Vkc.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Josephson Entertainment", "id": 1894}, {"name": "Andalasia Productions", "id": 8908}, {"name": "Right Coast Productions", "id": 8909}], "release_date": "2007-11-20", "popularity": 1.31420483417481, "original_title": "Enchanted", "budget": 85000000, "cast": [{"name": "Patrick Dempsey", "character": "Robert Philip", "id": 18352, "credit_id": "52fe43c8c3a36847f806f49b", "cast_id": 2, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 0}, {"name": "Amy Adams", "character": "Giselle", "id": 9273, "credit_id": "52fe43c8c3a36847f806f49f", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "James Marsden", "character": "Prince Edward", "id": 11006, "credit_id": "52fe43c8c3a36847f806f4a3", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 2}, {"name": "Timothy Spall", "character": "Nathaniel", "id": 9191, "credit_id": "52fe43c8c3a36847f806f4a7", "cast_id": 5, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 3}, {"name": "Rachel Covey", "character": "Morgan Philip", "id": 38192, "credit_id": "52fe43c8c3a36847f806f4ab", "cast_id": 6, "profile_path": "/l9CpCXAguKGTXaI5h0OX8WUsCAy.jpg", "order": 4}, {"name": "Susan Sarandon", "character": "Queen Narissa", "id": 4038, "credit_id": "52fe43c8c3a36847f806f4af", "cast_id": 7, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 5}, {"name": "Idina Menzel", "character": "Nancy Tremaine", "id": 19394, "credit_id": "52fe43c8c3a36847f806f4b3", "cast_id": 8, "profile_path": "/h7xxQ7jVPBy5jjOsE89V3LSAkns.jpg", "order": 6}, {"name": "Julie Andrews", "character": "Narrator", "id": 5823, "credit_id": "52fe43c8c3a36847f806f4b7", "cast_id": 9, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 7}, {"name": "Jeff Bennett", "character": "Pip in Andalasia", "id": 34982, "credit_id": "52fe43c8c3a36847f806f509", "cast_id": 23, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 8}, {"name": "Kevin Lima", "character": "Pip in New York", "id": 15775, "credit_id": "52fe43c8c3a36847f806f50d", "cast_id": 24, "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "order": 9}, {"name": "Emma Rose Lima", "character": "Rapunzel", "id": 42914, "credit_id": "52fe43c8c3a36847f806f511", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Teala Dunn", "character": "Bunny", "id": 42915, "credit_id": "52fe43c8c3a36847f806f515", "cast_id": 26, "profile_path": "/lLInIMNHohwplJu5XFp9ujFxQMs.jpg", "order": 11}, {"name": "Fred Tatasciore", "character": "Troll", "id": 60279, "credit_id": "52fe43c8c3a36847f806f519", "cast_id": 27, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 12}, {"name": "Courtney Williams", "character": "Singlass Street Vendor", "id": 1209404, "credit_id": "52fe43c8c3a36847f806f51d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "William Huntley", "character": "Grumpy", "id": 1279550, "credit_id": "52fe43c8c3a36847f806f521", "cast_id": 29, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Lima", "department": "Directing", "job": "Director", "credit_id": "52fe43c8c3a36847f806f497", "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "id": 15775}], "vote_average": 6.3, "runtime": 107}, "242095": {"poster_path": "/aop90vZ5MBQLd1amdBkpqqfZgtP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Three college students on a road trip across the Southwest experience a detour \u2013 the tracking of a computer genius who has already hacked into MIT and exposed security faults. When the trio find themselves drawn to an eerily isolated area, suddenly everything goes dark. When one of the students regains consciousness, he finds himself in a waking nightmare.", "video": false, "id": 242095, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Signal", "tagline": "R U Agitated?", "vote_count": 178, "homepage": "https://www.facebook.com/thesignalfilm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2910814", "adult": false, "backdrop_path": "/4vkT927R5JlNE7UeOsBnIw4uAqA.jpg", "production_companies": [{"name": "Low Spark Films", "id": 28286}, {"name": "Automatik Entertainment", "id": 28163}], "release_date": "2014-06-13", "popularity": 0.893174501175823, "original_title": "The Signal", "budget": 4000000, "cast": [{"name": "Brenton Thwaites", "character": "Nic Eastman", "id": 1017347, "credit_id": "52fe4ec5c3a36847f82a6d89", "cast_id": 1, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Dr. Wallace Damon", "id": 2975, "credit_id": "52fe4ec5c3a36847f82a6d8d", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Olivia Cooke", "character": "Haley Peterson", "id": 1173984, "credit_id": "52fe4ec5c3a36847f82a6d99", "cast_id": 5, "profile_path": "/5C8XBogUpSPA2fk9YeiCDJzroLk.jpg", "order": 2}, {"name": "Lin Shaye", "character": "Mirabelle", "id": 7401, "credit_id": "52fe4ec5c3a36847f82a6d95", "cast_id": 4, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 4}, {"name": "Beau Knapp", "character": "Jonah Breck", "id": 1078613, "credit_id": "52fe4ec5c3a36847f82a6d9d", "cast_id": 6, "profile_path": "/l7gVvAILEZch00Axn3u3joCPr85.jpg", "order": 5}, {"name": "Robert Longstreet", "character": "James", "id": 79416, "credit_id": "552b9af6c3a3681f5c00679c", "cast_id": 58, "profile_path": "/kOPNnIzXzE2VbGlDBXLzOf2juwu.jpg", "order": 6}], "directors": [{"name": "William Eubank", "department": "Directing", "job": "Director", "credit_id": "52fe4ec5c3a36847f82a6da3", "profile_path": null, "id": 125324}], "vote_average": 5.9, "runtime": 95}, "82675": {"poster_path": "/vknVdfSLjPwdfH1Bnzl7RU5tgKQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 363498446, "overview": "In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.", "video": false, "id": 82675, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Taken 2", "tagline": "First they took his daughter. Now they're coming for him.", "vote_count": 1324, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hO1R1TI429PjkOjby4dTPBrWFwn.jpg", "poster_path": "/4PNFiSaJWvWhkdOw0KF9Vf7v3gC.jpg", "id": 135483, "name": "Taken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1397280", "adult": false, "backdrop_path": "/uLQjXZq6307jTgcACnhOeh5mCK2.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "EuropaCorp", "id": 6896}, {"name": "M6 Films", "id": 1115}, {"name": "Cin\u00e9+", "id": 23616}], "release_date": "2012-10-04", "popularity": 2.13723790536814, "original_title": "Taken 2", "budget": 80000000, "cast": [{"name": "Liam Neeson", "character": "Bryan Mills", "id": 3896, "credit_id": "52fe48679251416c9108b3ed", "cast_id": 11, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Maggie Grace", "character": "Kim", "id": 11825, "credit_id": "52fe48679251416c9108b3f1", "cast_id": 12, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Lenore", "id": 10696, "credit_id": "52fe48679251416c9108b3f5", "cast_id": 13, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Rade \u0160erbed\u017eija", "character": "Murad", "id": 1118, "credit_id": "52fe48679251416c9108b3f9", "cast_id": 14, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 3}, {"name": "Luke Grimes", "character": "Jamie", "id": 56680, "credit_id": "52fe48679251416c9108b3fd", "cast_id": 15, "profile_path": "/n7CZuSxHKiarceBEziUsUboIqpK.jpg", "order": 4}, {"name": "Jon Gries", "character": "Casey", "id": 9629, "credit_id": "52fe48679251416c9108b401", "cast_id": 16, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 5}, {"name": "Leland Orser", "character": "Sam", "id": 2221, "credit_id": "52fe48679251416c9108b405", "cast_id": 18, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 6}, {"name": " D.B. Sweeney", "character": "Bernie", "id": 61962, "credit_id": "52fe48679251416c9108b409", "cast_id": 19, "profile_path": "/2qkjuNojR8ilj2xDrd48xxkSwiM.jpg", "order": 7}, {"name": "Kevork Malikyan", "character": "Inspector Durmaz", "id": 743, "credit_id": "52fe48679251416c9108b40d", "cast_id": 20, "profile_path": "/aq3elIciFeSrvbVyDNeoozQqLnm.jpg", "order": 8}, {"name": "Alain Figlarz", "character": "Suko", "id": 238393, "credit_id": "52fe48679251416c9108b411", "cast_id": 21, "profile_path": "/u0cOZyBWRSxu0j3Ez9iKD5vUez.jpg", "order": 9}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "52fe48679251416c9108b3b3", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 6.0, "runtime": 91}, "4538": {"poster_path": "/47AGp0EKNMjqBBPaxRYDW0Sc5If.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24377151, "overview": "Three American brothers who have not spoken to each other in a year set off on a train voyage across India with a plan to find themselves and bond with each other -- to become brothers again like they used to be. Their \"spiritual quest\", however, veers rapidly off-course (due to events involving over-the-counter pain killers, Indian cough syrup, and pepper spray).", "video": false, "id": 4538, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Darjeeling Limited", "tagline": "", "vote_count": 204, "homepage": "http://www.foxsearchlight.com/thedarjeelinglimited/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "bo", "name": ""}], "imdb_id": "tt0838221", "adult": false, "backdrop_path": "/eKvQzgzJ205IPFNjHwSbqNZyXx6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2007-09-29", "popularity": 0.8909464107527, "original_title": "The Darjeeling Limited", "budget": 0, "cast": [{"name": "Owen Wilson", "character": "Francis", "id": 887, "credit_id": "52fe43c9c3a36847f806fb67", "cast_id": 15, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Jason Schwartzman", "character": "Jack", "id": 17881, "credit_id": "52fe43c9c3a36847f806fb6b", "cast_id": 16, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 1}, {"name": "Adrien Brody", "character": "Peter", "id": 3490, "credit_id": "52fe43c9c3a36847f806fb6f", "cast_id": 17, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 2}, {"name": "Bill Murray", "character": "The Businessman", "id": 1532, "credit_id": "52fe43c9c3a36847f806fb73", "cast_id": 19, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Anjelica Huston", "character": "Patricia", "id": 5657, "credit_id": "52fe43cac3a36847f806fb77", "cast_id": 20, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 4}, {"name": "Camilla Rutherford", "character": "Alice", "id": 38809, "credit_id": "52fe43cac3a36847f806fb7b", "cast_id": 21, "profile_path": "/5Zo00BGDlGjnkZQjzuDie8wnURp.jpg", "order": 5}, {"name": "Wallace Wolodarsky", "character": "Brendan", "id": 486, "credit_id": "52fe43cac3a36847f806fb7f", "cast_id": 22, "profile_path": "/dvmEq92L4UwL20uO2BOQ8vnpPBP.jpg", "order": 6}, {"name": "Natalie Portman", "character": "Jack's X-Girlfriend", "id": 524, "credit_id": "52fe43cac3a36847f806fb83", "cast_id": 23, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 7}, {"name": "Amara Karan", "character": "Rita", "id": 66443, "credit_id": "52fe43cac3a36847f806fb87", "cast_id": 24, "profile_path": "/i569UYNetmBMvdfC35TT3ghIbYZ.jpg", "order": 8}, {"name": "Waris Ahluwalia", "character": "The Chief Steward", "id": 5301, "credit_id": "5335ea909251411a2c000056", "cast_id": 25, "profile_path": "/608mxzVDmbQtWt3IedJyQ72FNg5.jpg", "order": 9}, {"name": "Irrfan Khan", "character": "The Father", "id": 76793, "credit_id": "5335eaa09251411a1a00007e", "cast_id": 26, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 10}, {"name": "Barbet Schroeder", "character": "The Mechanic", "id": 23393, "credit_id": "5335eaaf9251411a1a000080", "cast_id": 27, "profile_path": "/zgsgO9eVfSi9BOXbjvjyVsWAE5J.jpg", "order": 11}, {"name": "Kumar Pallana", "character": "Old Man", "id": 8690, "credit_id": "5335eac89251411a20000085", "cast_id": 28, "profile_path": "/emTPxZIt9j8d4FcKMSpX3eDq0tO.jpg", "order": 12}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43c9c3a36847f806fb15", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.1, "runtime": 91}, "10314": {"poster_path": "/2kWpjQ3O6DZywdIoPlvXCk3T91P.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103166989, "overview": "High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs -- and help her to become the school's next prom queen.", "video": false, "id": 10314, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "She's All That", "tagline": "These two opposites attract... but EVERYONE'S trying to keep them apart!", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0160862", "adult": false, "backdrop_path": "/f2Vyj75EU1Cbdh0homXignBcdYG.jpg", "production_companies": [{"name": "FilmColony", "id": 1811}, {"name": "Miramax Films", "id": 14}], "release_date": "1999-01-29", "popularity": 0.725997507583087, "original_title": "She's All That", "budget": 10000000, "cast": [{"name": "Freddie Prinze Jr.", "character": "Zach Siler", "id": 33260, "credit_id": "52fe43579251416c7500cb0b", "cast_id": 9, "profile_path": "/xkbGC7tDwoKUwpNcOLsNUMjLjP4.jpg", "order": 0}, {"name": "Rachael Leigh Cook", "character": "Laney Boggs", "id": 38581, "credit_id": "52fe43579251416c7500cb0f", "cast_id": 10, "profile_path": "/xPcfVq2UMihLNmPvYhFXV0IXiwF.jpg", "order": 1}, {"name": "Matthew Lillard", "character": "Brock Hudson", "id": 26457, "credit_id": "52fe43579251416c7500cb13", "cast_id": 11, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 2}, {"name": "Paul Walker", "character": "Dean Sampson", "id": 8167, "credit_id": "52fe43579251416c7500cb17", "cast_id": 12, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 3}, {"name": "Jodi Lyn O'Keefe", "character": "Taylor Vaughan", "id": 58006, "credit_id": "52fe43579251416c7500cb21", "cast_id": 14, "profile_path": "/w1Yx9bpt3ZqVwo33SEXVF5bkY6Z.jpg", "order": 4}, {"name": "Anna Paquin", "character": "Mackenzie Siler", "id": 10690, "credit_id": "52fe43579251416c7500cb25", "cast_id": 15, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 5}, {"name": "Clea DuVall", "character": "Misty", "id": 20387, "credit_id": "52fe43579251416c7500cb29", "cast_id": 17, "profile_path": "/hfdAP90y3oqLVp4r8wTEHLAW6Y5.jpg", "order": 6}, {"name": "Kieran Culkin", "character": "Simon Boggs", "id": 18793, "credit_id": "52fe43579251416c7500cb2d", "cast_id": 18, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 7}, {"name": "Kevin Pollak", "character": "Wayne Boggs", "id": 7166, "credit_id": "52fe43579251416c7500cb31", "cast_id": 19, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 8}, {"name": "Lil' Kim", "character": "Alex", "id": 57553, "credit_id": "52fe43579251416c7500cb35", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Elden Henson", "character": "Jesse Jackson", "id": 20220, "credit_id": "52fe43579251416c7500cb39", "cast_id": 21, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 10}, {"name": "Usher Raymond", "character": "Campus D.J.", "id": 57108, "credit_id": "52fe43579251416c7500cb3d", "cast_id": 22, "profile_path": "/s0frjwIXTy0AkgqhZEEPzW599TG.jpg", "order": 11}, {"name": "Gabrielle Union", "character": "Katie", "id": 17773, "credit_id": "52fe43579251416c7500cb41", "cast_id": 23, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 12}, {"name": "Dul\u00e9 Hill", "character": "Preston", "id": 122756, "credit_id": "52fe43579251416c7500cb45", "cast_id": 24, "profile_path": "/vA43B0F4FADUibvhVxu5KfgemRU.jpg", "order": 13}], "directors": [{"name": "Robert Iscove", "department": "Directing", "job": "Director", "credit_id": "52fe43579251416c7500cae3", "profile_path": "/lLwUcEJ4OpT1Ocssv1fevkA0VQd.jpg", "id": 64815}], "vote_average": 5.2, "runtime": 95}, "4543": {"poster_path": "/uCdQLoSQYJXrH3HvwNOJp5ing6q.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Monty Python's The Meaning of Life is a 1983 musical comedy film by the Monty Python comedy team. Unlike the two previous films they had made, which had more or less each told single, coherent stories, The Meaning of Life returns to the sketch comedy format of the troupe's original television series, loosely structured as a series of comic skits about the various stages of life.", "video": false, "id": 4543, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Meaning of Life", "tagline": "It took God six days to create the earth, and Monty Python just 90 minutes to screw it up.", "vote_count": 169, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0085959", "adult": false, "backdrop_path": "/uBnZ4JxkHcDXL9CY7ekNoXZl9Y5.jpg", "production_companies": [{"name": "Celandine Films", "id": 12016}, {"name": "The Monty Python Partnership", "id": 12017}, {"name": "Universal Pictures", "id": 33}], "release_date": "1983-03-31", "popularity": 0.764168730543682, "original_title": "The Meaning of Life", "budget": 0, "cast": [{"name": "Terry Gilliam", "character": "Diverse Rollen", "id": 280, "credit_id": "52fe43cac3a36847f806fe95", "cast_id": 1, "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "order": 0}, {"name": "Graham Chapman", "character": "Diverse Rollen", "id": 10722, "credit_id": "52fe43cac3a36847f806fe99", "cast_id": 2, "profile_path": "/gwuoxo5EB3SRMO0BPLduWdcSALd.jpg", "order": 1}, {"name": "John Cleese", "character": "Diverse Rollen", "id": 8930, "credit_id": "52fe43cac3a36847f806fe9d", "cast_id": 3, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 2}, {"name": "Eric Idle", "character": "Diverse Rollen", "id": 10713, "credit_id": "52fe43cac3a36847f806fea1", "cast_id": 4, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 3}, {"name": "Terry Jones", "character": "Diverse Rollen", "id": 10707, "credit_id": "52fe43cac3a36847f806fea5", "cast_id": 5, "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "order": 4}, {"name": "Michael Palin", "character": "Diverse Rollen", "id": 383, "credit_id": "52fe43cac3a36847f806fea9", "cast_id": 6, "profile_path": "/4x3JaNi3hEh4tdlXbg4dw55X10f.jpg", "order": 5}, {"name": "Carol Cleveland", "character": "Diverse Rollen", "id": 10733, "credit_id": "52fe43cac3a36847f806fead", "cast_id": 7, "profile_path": "/3QVIw2Lc18O4m3oktTeab6aVLlD.jpg", "order": 6}, {"name": "Simon Jones", "character": "Cedric", "id": 37891, "credit_id": "52fe43cac3a36847f806feb1", "cast_id": 8, "profile_path": "/5njA1vE91FLp2SrSwKXYcJ6pvf9.jpg", "order": 7}, {"name": "Patricia Quinn", "character": "Mrs. Williams", "id": 13475, "credit_id": "52fe43cac3a36847f806feb5", "cast_id": 9, "profile_path": "/bfcnDApPbMGN9F2SIgFeFPgUe59.jpg", "order": 8}, {"name": "Judy Loe", "character": "Nurse #1", "id": 37892, "credit_id": "52fe43cac3a36847f806feb9", "cast_id": 10, "profile_path": "/jOexHThwyaWl5Dnc7iJ9tPHu1OQ.jpg", "order": 9}, {"name": "Andrew MacLachlan", "character": "Groom", "id": 37893, "credit_id": "52fe43cac3a36847f806febd", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Mark Holmes", "character": "Severed head", "id": 37894, "credit_id": "52fe43cac3a36847f806fec1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Valerie Whittington", "character": "Mrs. Moore", "id": 37895, "credit_id": "52fe43cac3a36847f806fec5", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Jennifer Franks", "character": "Bride", "id": 37896, "credit_id": "52fe43cac3a36847f806fec9", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Imogen Bickford-Smith", "character": "Nurse #2", "id": 37897, "credit_id": "52fe43cac3a36847f806fecd", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Angela Mann", "character": "Second guest's wife", "id": 37898, "credit_id": "52fe43cac3a36847f806fed1", "cast_id": 16, "profile_path": null, "order": 15}], "directors": [{"name": "Terry Jones", "department": "Directing", "job": "Director", "credit_id": "52fe43cac3a36847f806fefb", "profile_path": "/7YaQ0k5BmUU3MmFvDL72tXl2G0B.jpg", "id": 10707}, {"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe43cac3a36847f806ff01", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 6.9, "runtime": 107}, "4547": {"poster_path": "/o8Y8050Y4T0HgmtD9GDbVbX8IRC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196397415, "overview": "Trapped in their New York brownstone's panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman (Jodie Foster) and her young daughter Sarah (Kristen Stewart) play a deadly game of cat-and-mouse with three intruders - Burnham (Forest Whitaker), Raoul (Dwight Yoakam) and Junior (Jared Leto) - during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.", "video": false, "id": 4547, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Panic Room", "tagline": "It was supposed to be the safest room in the house.", "vote_count": 269, "homepage": "http://www.sonypictures.com/movies/panicroom/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0258000", "adult": false, "backdrop_path": "/cH9G12Pd3iaE8Sbd1OY4tK61oNU.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Hofflund/Polone", "id": 1685}, {"name": "Indelible Productions", "id": 7795}], "release_date": "2002-03-29", "popularity": 0.930069676195034, "original_title": "Panic Room", "budget": 48000000, "cast": [{"name": "Jodie Foster", "character": "Meg Altman", "id": 1038, "credit_id": "52fe43cbc3a36847f80700b3", "cast_id": 1, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Kristen Stewart", "character": "Sarah Altman", "id": 37917, "credit_id": "52fe43cbc3a36847f80700b7", "cast_id": 2, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Burnham", "id": 2178, "credit_id": "52fe43cbc3a36847f80700bb", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Dwight Yoakam", "character": "Raoul", "id": 20309, "credit_id": "52fe43cbc3a36847f80700bf", "cast_id": 4, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 3}, {"name": "Jared Leto", "character": "Junior", "id": 7499, "credit_id": "52fe43cbc3a36847f80700c3", "cast_id": 5, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 4}, {"name": "Patrick Bauchau", "character": "Stephen Altman", "id": 5274, "credit_id": "52fe43cbc3a36847f80700c7", "cast_id": 6, "profile_path": "/kA1WAKYBmFGdvyaSQjPSV9z8xlx.jpg", "order": 5}, {"name": "Ann Magnuson", "character": "Lydia Lynch", "id": 37042, "credit_id": "52fe43cbc3a36847f80700cb", "cast_id": 7, "profile_path": "/ry9H1u1GFbwXiWWolYA63pjBctp.jpg", "order": 6}, {"name": "Ian Buchanan", "character": "Evan Kurlander", "id": 15865, "credit_id": "52fe43cbc3a36847f80700cf", "cast_id": 8, "profile_path": "/aCUAEzY79h3hDTyqT7WwVTbqqxm.jpg", "order": 7}, {"name": "Andrew Kevin Walker", "character": "Sleepy Neighbor", "id": 12047, "credit_id": "52fe43cbc3a36847f8070115", "cast_id": 20, "profile_path": "/tPypY1vmiLEkoFuN0Q5pUU338ms.jpg", "order": 8}, {"name": "Paul Schulze", "character": "Officer Keeney", "id": 36189, "credit_id": "52fe43cbc3a36847f8070119", "cast_id": 21, "profile_path": "/tcGHCA2seYFju3RBKItpyLHAPHc.jpg", "order": 9}, {"name": "Mel Rodriguez", "character": "Officer Morales", "id": 59675, "credit_id": "52fe43cbc3a36847f807011d", "cast_id": 22, "profile_path": "/fdfVBVihcLvHAOArV2KvtTSZNrY.jpg", "order": 10}, {"name": "Richard Conant", "character": "SWAT Cop", "id": 99022, "credit_id": "52fe43cbc3a36847f8070121", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Paul Simon", "character": "SWAT Cop", "id": 1056131, "credit_id": "52fe43cbc3a36847f8070125", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Victor Thrash", "character": "SWAT Cop", "id": 1077957, "credit_id": "52fe43cbc3a36847f8070129", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Ken Turner", "character": "SWAT Cop", "id": 157707, "credit_id": "530914f7c3a3687b57000f54", "cast_id": 27, "profile_path": null, "order": 15}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f80700d5", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.3, "runtime": 112}, "4550": {"poster_path": "/uGrR1eUEJjtrtVBUUUcn2ue70Bw.jpg", "production_countries": [{"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 23803308, "overview": "After a 13-year imprisonment for the kidnap and murder of a 6 year old boy, beautiful Lee Guem-ja starts seeking revenge on the man that was really responsible for the boy's death. With the help of fellow inmates and reunited with her daughter, she gets closer and closer to her goal. But will her actions lead to the relief she seeks?", "video": false, "id": 4550, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sympathy for Lady Vengeance", "tagline": "All she wanted was a peaceful life...they didn't give it.", "vote_count": 53, "homepage": "http://www.lady-vengeance.de/", "belongs_to_collection": {"backdrop_path": "/t5zZZOvXK8m5z1omMdEEWcL6ywl.jpg", "poster_path": "/ilyS5xmHzMtTq4ngVRNKvZEbSRo.jpg", "id": 4563, "name": "The Vengeance Trilogy"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0451094", "adult": false, "backdrop_path": "/bpQiLzFVXfoEOJ2pLFeslSBhR6j.jpg", "production_companies": [{"name": "CJ Capital Investment", "id": 946}, {"name": "Korea Capital Investment", "id": 1687}, {"name": "Moho Films", "id": 1688}, {"name": "TSJ Entertainment", "id": 1689}, {"name": "Samsung Venture Capital", "id": 1690}, {"name": "Ilshin Capital Investments", "id": 1691}, {"name": "Centurion Investment", "id": 1692}], "release_date": "2005-07-29", "popularity": 0.832924418792629, "original_title": "\uce5c\uc808\ud55c \uae08\uc790\uc528", "budget": 0, "cast": [{"name": "Choi Min-sik", "character": "Mr. Baek", "id": 64880, "credit_id": "52fe43cbc3a36847f807029f", "cast_id": 14, "profile_path": "/abLCstRJLpuzG39KAiG7hD72zcn.jpg", "order": 0}, {"name": "Lee Young-ae", "character": "Geum-ja Lee", "id": 25001, "credit_id": "52fe43cbc3a36847f80702a3", "cast_id": 15, "profile_path": "/lZbA1bEYId160AZGOy0aQAualM0.jpg", "order": 1}, {"name": "Yea-young Kwon", "character": "Jenny", "id": 1117876, "credit_id": "52fe43cbc3a36847f80702e1", "cast_id": 27, "profile_path": null, "order": 2}, {"name": "Go Soo-hee", "character": "Ma-nyeo", "id": 1256494, "credit_id": "53da53a7c3a3681ee5001697", "cast_id": 46, "profile_path": "/dZOmvgPhRvbAjOrNdNqTBRfvX4v.jpg", "order": 4}, {"name": "Kim Bu-Seon", "character": "So-young Woo", "id": 570303, "credit_id": "52fe43cbc3a36847f80702ed", "cast_id": 30, "profile_path": "/i4rkrCI2HsPR5XXCd8THdVspY8C.jpg", "order": 5}, {"name": "Lee Dae-yeon", "character": "Prison Head", "id": 39258, "credit_id": "52fe43cbc3a36847f80702f5", "cast_id": 32, "profile_path": null, "order": 6}, {"name": "Lee Seung-Shin", "character": "Yi-jeong Park", "id": 554330, "credit_id": "52fe43cbc3a36847f80702f9", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Su-gyeong Lim", "character": "Prison Officer", "id": 1117877, "credit_id": "52fe43cbc3a36847f80702fd", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Oh Dal-Su", "character": "Mr. Chang", "id": 77188, "credit_id": "52fe43cbc3a36847f8070305", "cast_id": 36, "profile_path": "/5DmhRuUQZlrjoaN6seg7Wut3elb.jpg", "order": 9}, {"name": "Kim Byeong-ok", "character": "Preacher", "id": 1299313, "credit_id": "5319bb7c92514177bc0025b2", "cast_id": 38, "profile_path": "/qDQBQQaMFTLuWtU2tdVlVymoqqa.jpg", "order": 10}, {"name": "Kang Hye-jung", "character": "TV Announcer", "id": 1299317, "credit_id": "5319bd0992514177bf0025b9", "cast_id": 39, "profile_path": "/lF4wt0m522K79tgy18ykgDtmsAO.jpg", "order": 11}, {"name": "IlU Nam", "character": "Detective Choi", "id": 1299277, "credit_id": "5319be0292514177c20025c5", "cast_id": 41, "profile_path": "/6qzY19G8rmaXXVFIYM9mJExQQwQ.jpg", "order": 12}, {"name": "Kim Sihu", "character": "Geun-shik", "id": 1299320, "credit_id": "5319be4192514177b7002659", "cast_id": 42, "profile_path": "/xxzuxAk8izT6QVWzMw1HPbqOSG.jpg", "order": 13}, {"name": "Kim Byeong-ok", "character": "jeon-do-sa", "id": 1299313, "credit_id": "5319beb692514177bc0025e6", "cast_id": 43, "profile_path": "/qDQBQQaMFTLuWtU2tdVlVymoqqa.jpg", "order": 14}, {"name": "Ko Chang-Seok", "character": "Mechanic", "id": 525347, "credit_id": "536ca0630e0a2647c400d86e", "cast_id": 45, "profile_path": "/1pidfp0m1PeFO6HraN08HYHc66o.jpg", "order": 15}], "directors": [{"name": "Park Chan-wook", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f8070265", "profile_path": "/eFRXaT3RMoPemwDLNvfiFP0h8RX.jpg", "id": 10099}], "vote_average": 7.1, "runtime": 115}, "4551": {"poster_path": "/6vnI3uZ9D0bsrWSlOmNM6Rz1Ee2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95226116, "overview": "Disenchanted with the movie industry, Chili Palmer (John Travolta) tries the music industry, meeting and romancing a widow of a music exec (Uma Thurman) on the way.", "video": false, "id": 4551, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Be Cool", "tagline": "Everyone is looking for the next big hit", "vote_count": 85, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6KEpKs5asAqOwEr9XrOZJSMHW7O.jpg", "poster_path": "/lEVceV3akWMUeShECVCow1auUQv.jpg", "id": 91698, "name": "Chili Palmer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0377471", "adult": false, "backdrop_path": "/sGnf6maXvsnNOG7Xubv932bbTFJ.jpg", "production_companies": [{"name": "Nina Saxon Film Design", "id": 1693}, {"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Jersey Films", "id": 216}, {"name": "Double Feature Films", "id": 215}], "release_date": "2005-03-04", "popularity": 0.752837631243862, "original_title": "Be Cool", "budget": 53000000, "cast": [{"name": "John Travolta", "character": "Chili Palmer", "id": 8891, "credit_id": "52fe43cbc3a36847f8070361", "cast_id": 4, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Uma Thurman", "character": "Edie Athens", "id": 139, "credit_id": "52fe43cbc3a36847f8070365", "cast_id": 5, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Raji", "id": 4937, "credit_id": "52fe43cbc3a36847f8070369", "cast_id": 6, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Cedric the Entertainer", "character": "Sin LaSalle", "id": 5726, "credit_id": "52fe43cbc3a36847f807036d", "cast_id": 7, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 3}, {"name": "Andr\u00e9 Benjamin", "character": "Dabu", "id": 37934, "credit_id": "52fe43cbc3a36847f8070371", "cast_id": 8, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 4}, {"name": "Steven Tyler", "character": "Steven Tyler", "id": 37935, "credit_id": "52fe43cbc3a36847f8070375", "cast_id": 9, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 5}, {"name": "Robert Pastorelli", "character": "Joe Loop", "id": 7866, "credit_id": "52fe43cbc3a36847f8070379", "cast_id": 10, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 6}, {"name": "Christina Milian", "character": "Linda Moon", "id": 37936, "credit_id": "52fe43cbc3a36847f807037d", "cast_id": 11, "profile_path": "/8qWk7ZELhhHKG8HD0yse0QomzkA.jpg", "order": 7}, {"name": "Paul Adelstein", "character": "Hy Gordon", "id": 17342, "credit_id": "52fe43cbc3a36847f8070381", "cast_id": 12, "profile_path": "/69N2a7DCYh15PHgsjPqLqB4Efm7.jpg", "order": 8}, {"name": "Debi Mazar", "character": "Marla", "id": 5578, "credit_id": "52fe43cbc3a36847f8070385", "cast_id": 13, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 9}, {"name": "Gregory Alan Williams", "character": "Darryl", "id": 37937, "credit_id": "52fe43cbc3a36847f8070389", "cast_id": 14, "profile_path": "/2Sba6ptJ2aGgZOv53k2mD1FLj0U.jpg", "order": 10}, {"name": "Harvey Keitel", "character": "Nick Carr", "id": 1037, "credit_id": "52fe43cbc3a36847f807038d", "cast_id": 15, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 11}, {"name": "Dwayne Johnson", "character": "Elliot Wilhelm", "id": 18918, "credit_id": "52fe43cbc3a36847f8070391", "cast_id": 16, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 12}, {"name": "Danny DeVito", "character": "Martin Weir", "id": 518, "credit_id": "52fe43cbc3a36847f8070395", "cast_id": 17, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 13}, {"name": "James Woods", "character": "Tommy Athens", "id": 4512, "credit_id": "52fe43cbc3a36847f8070399", "cast_id": 18, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 14}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f8070351", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 5.7, "runtime": 118}, "4553": {"poster_path": "/2tYr40n1ZjbMfYq20ieiAPsSe5.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 8203235, "overview": "The Machinist is the story of Trevor Reznik, a lathe-operator who is dying of insomnia. In a machine shop, occupational hazards are bad enough under normal circumstances; yet for Trevor the risks are compounded by fatigue. Trevor has lost the ability to sleep. This is no ordinary insomnia...", "video": false, "id": 4553, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Machinist", "tagline": "A little guilt goes a long way...", "vote_count": 239, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0361862", "adult": false, "backdrop_path": "/kDZYmt7tapNiaw8JfaUCDCKVYH5.jpg", "production_companies": [{"name": "Filmax Entertainment", "id": 7302}, {"name": "Castelao Producciones", "id": 7956}], "release_date": "2004-10-22", "popularity": 0.958874250560335, "original_title": "The Machinist", "budget": 5000000, "cast": [{"name": "Christian Bale", "character": "Trevor Reznik", "id": 3894, "credit_id": "52fe43cbc3a36847f8070491", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Jennifer Jason Leigh", "character": "Stevie", "id": 10431, "credit_id": "52fe43cbc3a36847f8070495", "cast_id": 2, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 1}, {"name": "Aitana S\u00e1nchez-Gij\u00f3n", "character": "Marie", "id": 37946, "credit_id": "52fe43cbc3a36847f8070499", "cast_id": 3, "profile_path": "/st0ovndgBr9BFY5hBJhXdA6j1y7.jpg", "order": 2}, {"name": "John Sharian", "character": "Ivan", "id": 36900, "credit_id": "52fe43cbc3a36847f807049d", "cast_id": 4, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 3}, {"name": "Michael Ironside", "character": "Miller", "id": 11086, "credit_id": "52fe43cbc3a36847f80704a1", "cast_id": 5, "profile_path": "/i3HkCGEnQGJeD0U8WDumO4VH5fU.jpg", "order": 4}, {"name": "Lawrence Gilliard Jr.", "character": "Jackson", "id": 37947, "credit_id": "52fe43cbc3a36847f80704a5", "cast_id": 6, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 5}, {"name": "Craig Stevenson", "character": "Tucker", "id": 38950, "credit_id": "52fe43cbc3a36847f80704bb", "cast_id": 16, "profile_path": "/xbPYQNVzZImofmzJgUZug7ijSRe.jpg", "order": 6}, {"name": "Reg E. Cathey", "character": "Jones", "id": 38951, "credit_id": "52fe43cbc3a36847f80704bf", "cast_id": 17, "profile_path": "/5SKwwUhSCgzggT6iRcO951e13XM.jpg", "order": 7}, {"name": "Anna Massey", "character": "Mrs. Shike", "id": 8227, "credit_id": "52fe43cbc3a36847f80704c3", "cast_id": 18, "profile_path": "/hO6qoo665U7JAHmbH7PQ7L07DOO.jpg", "order": 8}, {"name": "Matthew Romero Moore", "character": "Nicholas", "id": 38952, "credit_id": "52fe43cbc3a36847f80704c7", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "James DePaul", "character": "Reynolds", "id": 38953, "credit_id": "52fe43cbc3a36847f80704cb", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Robert Long", "character": "Supervisor Furman", "id": 1402327, "credit_id": "549738b3c3a3686af3006269", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "Brad Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43cbc3a36847f80704ab", "profile_path": "/5SAJd9sEFefkFoStAPXuKVHnMoX.jpg", "id": 37948}], "vote_average": 7.0, "runtime": 101}, "20943": {"poster_path": "/xbIEfRy1qLYyChHc3cqaYLIWdVS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205298907, "overview": "A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.", "video": false, "id": 20943, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Ugly Truth", "tagline": "The battle of the sexes is on.", "vote_count": 237, "homepage": "http://www.thetruthisntpretty.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1142988", "adult": false, "backdrop_path": "/sBQo4qneN0329KSMM7PyfnEVe6L.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Relativity Media", "id": 7295}], "release_date": "2009-07-24", "popularity": 0.939114449580876, "original_title": "The Ugly Truth", "budget": 38000000, "cast": [{"name": "Katherine Heigl", "character": "Abby", "id": 25541, "credit_id": "52fe4405c3a368484e00aebf", "cast_id": 1, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Mike", "id": 17276, "credit_id": "52fe4405c3a368484e00aec3", "cast_id": 2, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Eric Winter", "character": "Colin", "id": 74409, "credit_id": "52fe4405c3a368484e00aec7", "cast_id": 3, "profile_path": "/bo7unyhMC4GxIPWhHh2M8mqbsKn.jpg", "order": 2}, {"name": "Bree Turner", "character": "Joy", "id": 62065, "credit_id": "52fe4405c3a368484e00aed1", "cast_id": 5, "profile_path": "/vR34cXXPh9JFPrPy7DS0fjOaeIc.jpg", "order": 3}, {"name": "Nick Searcy", "character": "Stuart", "id": 12538, "credit_id": "52fe4405c3a368484e00aed5", "cast_id": 7, "profile_path": "/dAmLsoZCYSHABdCxbc64oMVaAkd.jpg", "order": 4}, {"name": "Jesse D. Goins", "character": "Cliff", "id": 44043, "credit_id": "52fe4405c3a368484e00aed9", "cast_id": 8, "profile_path": "/rjNRg0SgCo31mCCYRb3NvtjFu18.jpg", "order": 5}, {"name": "Cheryl Hines", "character": "Georgia", "id": 57854, "credit_id": "52fe4405c3a368484e00aedd", "cast_id": 9, "profile_path": "/g6CJqdMVRENrMRiva5spTuJkWRd.jpg", "order": 6}, {"name": "John Michael Higgins", "character": "Larry", "id": 8265, "credit_id": "52fe4405c3a368484e00aee1", "cast_id": 10, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 7}, {"name": "Noah Matthews", "character": "Jonah", "id": 141415, "credit_id": "52fe4405c3a368484e00aee5", "cast_id": 11, "profile_path": "/o7Mw44j41kfPUuwA8tjnoGmcy7b.jpg", "order": 8}, {"name": "Bonnie Somerville", "character": "Elizabeth", "id": 66579, "credit_id": "52fe4405c3a368484e00aee9", "cast_id": 12, "profile_path": "/a1tjNEX8Tm5WupP9vEdRnpW2s45.jpg", "order": 9}, {"name": "John Sloman", "character": "Bob", "id": 141424, "credit_id": "52fe4405c3a368484e00aeed", "cast_id": 13, "profile_path": "/uGBOIeMzxQo11nxW5NMv0oLLxnw.jpg", "order": 10}, {"name": "Yvette Nicole Brown", "character": "Dori", "id": 111513, "credit_id": "52fe4405c3a368484e00aef1", "cast_id": 14, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 11}, {"name": "Nate Corddry", "character": "Josh", "id": 127048, "credit_id": "52fe4405c3a368484e00aef5", "cast_id": 15, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 12}, {"name": "Allen Maldonado", "character": "Duane", "id": 141432, "credit_id": "52fe4405c3a368484e00aef9", "cast_id": 16, "profile_path": "/yjVKDl9IMrkOUk0ANyFZtOkdM05.jpg", "order": 13}, {"name": "Steve Little", "character": "Steve", "id": 141433, "credit_id": "52fe4405c3a368484e00aefd", "cast_id": 17, "profile_path": "/foxSnyaUmBIZNNZRwsAadtQGylq.jpg", "order": 14}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe4405c3a368484e00aecd", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 6.3, "runtime": 96}, "82532": {"poster_path": "/gb0NN0z9tR50dalNySdivI6oTSA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4269426, "overview": "Dispatched from his basement room on an errand for his mother, slacker Jeff might discover his destiny (finally) when he spends the day with his brother as he tracks his possibly adulterous wife.", "video": false, "id": 82532, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Jeff, Who Lives at Home", "tagline": "The first step to finding your destiny is leaving your mother's basement.", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1588334", "adult": false, "backdrop_path": "/fnQvtfv5nyxpqVQSO3Alm7PeEsN.jpg", "production_companies": [{"name": "Indian Paintbrush", "id": 9350}], "release_date": "2011-09-13", "popularity": 0.395932287690922, "original_title": "Jeff, Who Lives at Home", "budget": 10000000, "cast": [{"name": "Jason Segel", "character": "Jeff", "id": 41088, "credit_id": "52fe485a9251416c9108964b", "cast_id": 21, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 0}, {"name": "Ed Helms", "character": "Pat", "id": 27105, "credit_id": "52fe485a9251416c910895f7", "cast_id": 4, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Sharon", "id": 4038, "credit_id": "52fe485a9251416c910895fb", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Judy Greer", "character": "Linda", "id": 20750, "credit_id": "52fe485a9251416c9108962f", "cast_id": 14, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 3}, {"name": "Rae Dawn Chong", "character": "Carol", "id": 13312, "credit_id": "52fe485a9251416c91089633", "cast_id": 15, "profile_path": "/6mk5lSTIUav9T1M0VAdUP46FTSH.jpg", "order": 4}, {"name": "Joe Chrest", "character": "Paul", "id": 141762, "credit_id": "52fe485a9251416c91089637", "cast_id": 16, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 5}, {"name": "Lance E. Nichols", "character": "Elderly Man", "id": 101847, "credit_id": "52fe485a9251416c9108963b", "cast_id": 17, "profile_path": "/zOaZTf9VpPutOxqXHnczoKKiALx.jpg", "order": 6}, {"name": "Deneen Tyler", "character": "Woman calling the police", "id": 29933, "credit_id": "52fe485a9251416c9108963f", "cast_id": 18, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 7}, {"name": "J.D. Evermore", "character": "Rob the Waiter", "id": 129868, "credit_id": "52fe485a9251416c91089643", "cast_id": 19, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 8}, {"name": "Tammi Arender", "character": "Newscaster", "id": 861986, "credit_id": "52fe485a9251416c91089647", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Mark Duplass", "department": "Directing", "job": "Director", "credit_id": "52fe485a9251416c910895ed", "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "id": 45407}, {"name": "Jay Duplass", "department": "Directing", "job": "Director", "credit_id": "52fe485a9251416c910895f3", "profile_path": "/vtdLbE3BHpLyCee8V0ajrrlDkLO.jpg", "id": 45405}], "vote_average": 5.7, "runtime": 83}, "4564": {"poster_path": "/5qGwxhSVDJdpSl2IKZ6Ahft4W17.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415252786, "overview": "A New York writer on sex and love is finally getting married to her Mr. Big. But her three best girlfriends must console her after one of them inadvertently leads Mr. Big to jilt her.", "video": false, "id": 4564, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sex and the City", "tagline": "Get carried away.", "vote_count": 121, "homepage": "http://www.sexandthecitymovie.com/", "belongs_to_collection": {"backdrop_path": "/uM6lHfySQ5sQEuUyMxKdtxsp3CQ.jpg", "poster_path": "/ip0ObsKtNUucWEcWJfDmURjmF8h.jpg", "id": 50457, "name": "Sex and the City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1000774", "adult": false, "backdrop_path": "/uYmGSQUpZKl60HBBSdHemYNaNua.jpg", "production_companies": [{"name": "Darren Star Productions", "id": 1694}, {"name": "New Line Cinema", "id": 12}, {"name": "Home Box Office (HBO)", "id": 3268}], "release_date": "2008-05-12", "popularity": 0.619933161693183, "original_title": "Sex and the City", "budget": 65000000, "cast": [{"name": "Sarah Jessica Parker", "character": "Carrie Bradshaw", "id": 520, "credit_id": "52fe43ccc3a36847f80709fd", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 0}, {"name": "Kim Cattrall", "character": "Samantha Jones", "id": 2109, "credit_id": "52fe43ccc3a36847f8070a01", "cast_id": 3, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 1}, {"name": "Cynthia Nixon", "character": "Miranda Hobbes", "id": 38024, "credit_id": "52fe43ccc3a36847f8070a05", "cast_id": 4, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 2}, {"name": "Kristin Davis", "character": "Charlotte York Goldenblatt", "id": 38025, "credit_id": "52fe43ccc3a36847f8070a09", "cast_id": 5, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 3}, {"name": "Chris Noth", "character": "Mr. Big", "id": 38026, "credit_id": "52fe43ccc3a36847f8070a0d", "cast_id": 6, "profile_path": "/pIdoqcDc1WEsrccdtptHSeCt3u3.jpg", "order": 4}, {"name": "Willie Garson", "character": "Stanford", "id": 1542, "credit_id": "52fe43ccc3a36847f8070a11", "cast_id": 7, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 5}, {"name": "David Eigenberg", "character": "Steve Brady", "id": 27552, "credit_id": "52fe43cdc3a36847f8070a1b", "cast_id": 10, "profile_path": "/6In0iKsH6FRzZ5sCsUjAx4pwHJl.jpg", "order": 6}, {"name": "Evan Handler", "character": "Harry Goldenblatt", "id": 3212, "credit_id": "52fe43cdc3a36847f8070a1f", "cast_id": 11, "profile_path": "/bsSNblkDZk0hKIjyPMMt8Hsmbsg.jpg", "order": 7}, {"name": "Jennifer Hudson", "character": "Louise, Carrie's assistant", "id": 15565, "credit_id": "52fe43cdc3a36847f8070a23", "cast_id": 12, "profile_path": "/zqTu7AANIUsVMAYz5rK1YPnvbWR.jpg", "order": 8}, {"name": "Jason Lewis", "character": "Smith Jerrod", "id": 32224, "credit_id": "52fe43cdc3a36847f8070a27", "cast_id": 13, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 9}, {"name": "Mario Cantone", "character": "Anthony Marantino", "id": 57551, "credit_id": "52fe43cdc3a36847f8070a2b", "cast_id": 14, "profile_path": "/jvxuIpzAYSWSbkaZd201KsSztp5.jpg", "order": 10}, {"name": "Julie Halston", "character": "Bitsy von Muffling", "id": 57552, "credit_id": "52fe43cdc3a36847f8070a2f", "cast_id": 15, "profile_path": "/uIRC2QqBCKwHVCcXl564a4FYPRe.jpg", "order": 11}, {"name": "Lynn Cohen", "character": "Magda", "id": 8792, "credit_id": "52fe43cdc3a36847f8070a33", "cast_id": 16, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 12}, {"name": "Anne Meara", "character": "Mary Brady", "id": 32394, "credit_id": "52fe43cdc3a36847f8070a37", "cast_id": 17, "profile_path": "/oNZszKpUZHfbT1mk2cD53uuZsnp.jpg", "order": 13}, {"name": "Candice Bergen", "character": "Enid Frick", "id": 11850, "credit_id": "52fe43cdc3a36847f8070a3b", "cast_id": 18, "profile_path": "/wzRihM7eZyCyAuKpgyBewCzDRWJ.jpg", "order": 14}, {"name": "Lil' Kim", "character": "Herself", "id": 57553, "credit_id": "52fe43cdc3a36847f8070a3f", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Alexandra Fong", "character": "Lily York Goldenblatt", "id": 58355, "credit_id": "52fe43cdc3a36847f8070a43", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Kerry Bish\u00e9", "character": "Twenty-Something Girl Dreaming", "id": 58356, "credit_id": "52fe43cdc3a36847f8070a47", "cast_id": 21, "profile_path": "/vgyxPcX86ASm1fn3S64TEVQ47Uv.jpg", "order": 17}, {"name": "Joseph Pupo", "character": "Brady", "id": 58722, "credit_id": "52fe43cdc3a36847f8070abd", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Gilles Marini", "character": "Dante", "id": 58723, "credit_id": "52fe43cdc3a36847f8070ac1", "cast_id": 45, "profile_path": "/m7uP0bqUAqsJDg1I0lE4P89X8ys.jpg", "order": 19}], "directors": [{"name": "Michael Patrick King", "department": "Directing", "job": "Director", "credit_id": "52fe43ccc3a36847f80709f9", "profile_path": "/vhsHQQSRHPxnwzUP58kzBy9Dx1T.jpg", "id": 38023}], "vote_average": 6.3, "runtime": 145}, "4566": {"poster_path": "/rcywkwx4oESbBwtA0D3PImqLorU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92991835, "overview": "A law firm brings in its \"fixer\" to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.", "video": false, "id": 4566, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Michael Clayton", "tagline": "The truth can be adjusted", "vote_count": 108, "homepage": "http://michaelclayton.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465538", "adult": false, "backdrop_path": "/hCE5LXO6Q1eZAnjDEjs95At5uMD.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Mirage Enterprises", "id": 932}, {"name": "Section Eight Productions", "id": 14315}], "release_date": "2007-10-12", "popularity": 0.46406190187589, "original_title": "Michael Clayton", "budget": 25000000, "cast": [{"name": "George Clooney", "character": "Michael Clayton", "id": 1461, "credit_id": "52fe43cdc3a36847f8070bdd", "cast_id": 15, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Arthur Edens", "id": 207, "credit_id": "52fe43cdc3a36847f8070be1", "cast_id": 16, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Karen Crowder", "id": 3063, "credit_id": "52fe43cdc3a36847f8070be5", "cast_id": 17, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Sydney Pollack", "character": "Marty Bach", "id": 2226, "credit_id": "52fe43cdc3a36847f8070be9", "cast_id": 18, "profile_path": "/zxkoU2diKtvarV1Qk4z9He2lJj9.jpg", "order": 3}, {"name": "Michael O'Keefe", "character": "Barry Grissom", "id": 38085, "credit_id": "52fe43cdc3a36847f8070bed", "cast_id": 19, "profile_path": "/w6ssYHZER9wrZ1fWen6iUEQWYan.jpg", "order": 4}, {"name": "Robert Prescott", "character": "Mr. Verne", "id": 38086, "credit_id": "52fe43cdc3a36847f8070bf1", "cast_id": 20, "profile_path": "/fWwAdFxzXRYPMfmYsF5UO600NNQ.jpg", "order": 5}, {"name": "Denis O'Hare", "character": "Mr. Greer", "id": 81681, "credit_id": "52fe43cdc3a36847f8070bf5", "cast_id": 21, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 6}, {"name": "Julie White", "character": "Mrs. Greer", "id": 24305, "credit_id": "52fe43cdc3a36847f8070bf9", "cast_id": 22, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 7}, {"name": "Austin Williams", "character": "Henry Clayton", "id": 78144, "credit_id": "52fe43cdc3a36847f8070bfd", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Jennifer Van Dyck", "character": "Ivy", "id": 88755, "credit_id": "52fe43cdc3a36847f8070c01", "cast_id": 24, "profile_path": "/iil0xqgJbuXdEohG1vqz7KDWxVg.jpg", "order": 9}, {"name": "Frank Wood", "character": "Gerald", "id": 52021, "credit_id": "52fe43cdc3a36847f8070c05", "cast_id": 25, "profile_path": "/7g06FytDzIpbRTw7ONlB2ofara5.jpg", "order": 10}], "directors": [{"name": "Tony Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe43cdc3a36847f8070b8b", "profile_path": "/9HOtDgcO6F4Fa4BaIjt0t3Vbxrj.jpg", "id": 19242}], "vote_average": 6.1, "runtime": 119}, "82682": {"poster_path": "/8keIzofLkbcOsyP4OEPftkyzJIM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105200903, "overview": "Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen (Sean Penn) runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and \u2014 if he has his way \u2014 every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. It\u2019s enough to intimidate even the bravest, street-hardened cop\u2026 except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John O\u2019Mara (Josh Brolin) and Jerry Wooters (Ryan Gosling), who come together to try to tear Cohen\u2019s world apart.", "video": false, "id": 82682, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Gangster Squad", "tagline": "No Names. No Badges. No Mercy.", "vote_count": 972, "homepage": "http://gangstersquad.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321870", "adult": false, "backdrop_path": "/vxsmU9IgSSd59C3ARg0KIhJzYwy.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Lin Pictures", "id": 2723}, {"name": "Langley Park Production", "id": 8057}], "release_date": "2013-01-11", "popularity": 1.298612551008, "original_title": "Gangster Squad", "budget": 60000000, "cast": [{"name": "Sean Penn", "character": "Mickey Cohen", "id": 2228, "credit_id": "52fe48689251416c9108b7d7", "cast_id": 11, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "Sgt. Jerry Wooters", "id": 30614, "credit_id": "52fe48689251416c9108b7cf", "cast_id": 9, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Emma Stone", "character": "Grace Faraday", "id": 54693, "credit_id": "52fe48689251416c9108b7d3", "cast_id": 10, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 2}, {"name": "Josh Brolin", "character": "John O'Mara", "id": 16851, "credit_id": "52fe48689251416c9108b7db", "cast_id": 12, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 3}, {"name": "Nick Nolte", "character": "Bill Parker", "id": 1733, "credit_id": "52fe48689251416c9108b7df", "cast_id": 13, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Conway Keeler", "id": 1771, "credit_id": "52fe48689251416c9108b7e3", "cast_id": 14, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "Josh Pence", "character": "Darryl Gates", "id": 928532, "credit_id": "52fe48689251416c9108b7e7", "cast_id": 15, "profile_path": "/nNMhtY1gBYwnjZZpeGGW16fVXC5.jpg", "order": 6}, {"name": "Frank Grillo", "character": "Jimmy reagan", "id": 81685, "credit_id": "52fe48689251416c9108b7eb", "cast_id": 16, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 7}, {"name": "Anthony Mackie", "character": "Coleman Harris", "id": 53650, "credit_id": "52fe48689251416c9108b7ef", "cast_id": 17, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 8}, {"name": "Robert Patrick", "character": "Max Kennard", "id": 418, "credit_id": "52fe48689251416c9108b7f3", "cast_id": 18, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 9}, {"name": "Michael Pe\u00f1a", "character": "Navidad Ramirez", "id": 454, "credit_id": "52fe48689251416c9108b7f7", "cast_id": 19, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 10}, {"name": "Mireille Enos", "character": "Connie O'Mara", "id": 175826, "credit_id": "52fe48699251416c9108b7fb", "cast_id": 20, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 11}, {"name": "Sullivan Stapleton", "character": "", "id": 38664, "credit_id": "52fe48699251416c9108b7ff", "cast_id": 21, "profile_path": "/jbtXSbo8uqBTn8Nx2Z1fULTQlAz.jpg", "order": 12}, {"name": "Holt McCallany", "character": "Karl Lockwood", "id": 7497, "credit_id": "52fe48699251416c9108b809", "cast_id": 23, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 13}, {"name": "Wade Williams", "character": "Rourke", "id": 51930, "credit_id": "52fe48699251416c9108b80d", "cast_id": 24, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 14}, {"name": "James Landry H\u00e9bert", "character": "Mitch Racine", "id": 1170659, "credit_id": "52fe48699251416c9108b811", "cast_id": 25, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 15}, {"name": "Ambyr Childers", "character": "Milk Skinned Blonde", "id": 75330, "credit_id": "52fe48699251416c9108b815", "cast_id": 26, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 16}, {"name": "Mick Betancourt", "character": "Detective Sgt. Will Hendricks", "id": 200448, "credit_id": "52fe48699251416c9108b819", "cast_id": 27, "profile_path": "/tBUe2hWFQvIiAmcRPhlS36j03WV.jpg", "order": 17}, {"name": "Mac Brandt", "character": "Bruiser", "id": 1215837, "credit_id": "52fe48699251416c9108b81d", "cast_id": 28, "profile_path": "/sx2FIzVxGdBogpkrcrlAZmSVB1v.jpg", "order": 18}, {"name": "Brandon Molale", "character": "Jimmy 'Bockscar' Knox", "id": 63238, "credit_id": "52fe48699251416c9108b821", "cast_id": 29, "profile_path": "/iOQFhKoCY6czA8OIudsHbOtJsC6.jpg", "order": 19}, {"name": "Michael Papajohn", "character": "Mike 'The Flea'", "id": 20582, "credit_id": "52fe48699251416c9108b825", "cast_id": 30, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 20}, {"name": "Jeff Wolfe", "character": "Giovanni Vacarezza", "id": 51303, "credit_id": "52fe48699251416c9108b829", "cast_id": 31, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 21}, {"name": "Anthony Molinari", "character": "Lorenzo Molinari", "id": 202930, "credit_id": "52fe48699251416c9108b82d", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Austin Highsmith", "character": "Patty", "id": 108247, "credit_id": "52fe48699251416c9108b831", "cast_id": 33, "profile_path": "/nN84TihBQBwrchOfuptiQPxJDhS.jpg", "order": 23}, {"name": "Neil Koppel", "character": "Max Solomon", "id": 1273230, "credit_id": "52fe48699251416c9108b835", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Jack McGee", "character": "Lt. Quincannon", "id": 10489, "credit_id": "52fe48699251416c9108b839", "cast_id": 35, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 25}, {"name": "Evan Jones", "character": "Neddy Herbert", "id": 333, "credit_id": "52fe48699251416c9108b83d", "cast_id": 36, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 26}, {"name": "James Carpinello", "character": "Johnny Stomp", "id": 53198, "credit_id": "52fe48699251416c9108b841", "cast_id": 37, "profile_path": "/t2aCdkepUU0yHi1gTGgltQ7CMvE.jpg", "order": 27}, {"name": "Troy Garity", "character": "Wrevock", "id": 31711, "credit_id": "52fe48699251416c9108b845", "cast_id": 38, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 28}, {"name": "Austin Abrams", "character": "Pete", "id": 148992, "credit_id": "52fe48699251416c9108b849", "cast_id": 39, "profile_path": "/8JrNQOokSRBzoQMzyVcoEh6IzQ9.jpg", "order": 29}, {"name": "John Aylward", "character": "Judge Carter", "id": 103833, "credit_id": "52fe48699251416c9108b84d", "cast_id": 40, "profile_path": "/jdU2dcdjBM3IbsQv6pEdZT64ajb.jpg", "order": 30}, {"name": "Dennis Cockrum", "character": "Elmer Jackson", "id": 155825, "credit_id": "52fe48699251416c9108b851", "cast_id": 41, "profile_path": "/3RGfs2kJ71XCho8VsDxpYlzlFur.jpg", "order": 31}, {"name": "Jack Conley", "character": "Sheriff Biscailuz", "id": 21675, "credit_id": "52fe48699251416c9108b855", "cast_id": 42, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 32}, {"name": "Yvette Tucker", "character": "Carmen Miranda", "id": 1008085, "credit_id": "52fe48699251416c9108b859", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Derek Mears", "character": "Bridge Goon", "id": 51300, "credit_id": "52fe48699251416c9108b85d", "cast_id": 44, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 34}, {"name": "Jonny Coyne", "character": "Grimes", "id": 1323612, "credit_id": "538063b9c3a36805a1004b86", "cast_id": 46, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 35}, {"name": "Eva La Dare", "character": "Dancer", "id": 1364232, "credit_id": "5417286b0e0a261c27005c9a", "cast_id": 47, "profile_path": "/jllT2rMbeLinJMaIprTiQ6XoRop.jpg", "order": 36}, {"name": "Riel Paley", "character": "City Hall Reporter", "id": 1412125, "credit_id": "54b25c1192514114a200173b", "cast_id": 48, "profile_path": null, "order": 37}], "directors": [{"name": "Ruben Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe48689251416c9108b7a7", "profile_path": "/y001RIxie7Vk3qMW3oLSFkjO1IA.jpg", "id": 91268}], "vote_average": 6.1, "runtime": 113}, "4584": {"poster_path": "/6Bp0Xnsvmc6aoG8vsanVooViIMd.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Rich Mr. Dashwood dies, leaving his second wife and her daughters poor by the rules of inheritance. Two daughters are the titular opposites.", "video": false, "id": 4584, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sense and Sensibility", "tagline": "Lose your heart and come to your senses.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114388", "adult": false, "backdrop_path": "/sATr9IM8WFsgkSJL1nXkBL88KKf.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1995-12-13", "popularity": 0.916459871527028, "original_title": "Sense and Sensibility", "budget": 0, "cast": [{"name": "Kate Winslet", "character": "Marianne Dashwood", "id": 204, "credit_id": "52fe43cec3a36847f807103b", "cast_id": 6, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Emma Thompson", "character": "Elinor Dashwood", "id": 7056, "credit_id": "52fe43cec3a36847f807103f", "cast_id": 7, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 1}, {"name": "Hugh Grant", "character": "Edward Ferrars", "id": 3291, "credit_id": "52fe43cec3a36847f8071043", "cast_id": 8, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Mr. Dashwood", "id": 207, "credit_id": "52fe43cec3a36847f8071047", "cast_id": 9, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Alan Rickman", "character": "Col. Christopher Brandon", "id": 4566, "credit_id": "52fe43cec3a36847f807104b", "cast_id": 10, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 4}, {"name": "Imogen Stubbs", "character": "Lucy Steele", "id": 20769, "credit_id": "52fe43cec3a36847f807104f", "cast_id": 11, "profile_path": "/osr7TepyQdENiyy4iYi8zfWzIx.jpg", "order": 5}, {"name": "Greg Wise", "character": "John Willoughby", "id": 16700, "credit_id": "52fe43cec3a36847f8071053", "cast_id": 12, "profile_path": "/A4u37pRp9MakKBhiIblXSCJEk33.jpg", "order": 6}, {"name": "Hugh Laurie", "character": "Mr. Palmer", "id": 41419, "credit_id": "52fe43cec3a36847f8071057", "cast_id": 13, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 7}, {"name": "Imelda Staunton", "character": "Charlotte Jennings Palmer", "id": 11356, "credit_id": "52fe43cec3a36847f807105b", "cast_id": 14, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 8}, {"name": "Robert Hardy", "character": "Sir John Middleton", "id": 23076, "credit_id": "52fe43cec3a36847f807105f", "cast_id": 15, "profile_path": "/y6NTr4kw3mNQnPmvhs4XMiFT8v5.jpg", "order": 9}, {"name": "Oliver Ford Davies", "character": "Doctor Harris", "id": 31923, "credit_id": "52fe43cec3a36847f8071063", "cast_id": 16, "profile_path": "/7fpNxQYZ85oRdnKWxPzQfURFkFT.jpg", "order": 10}, {"name": "James Fleet", "character": "John Dashwood", "id": 10726, "credit_id": "54128d2c0e0a26730d000b28", "cast_id": 17, "profile_path": "/uRerBtLv4SZJp1s52vrkIF85tg2.jpg", "order": 11}, {"name": "Harriet Walter", "character": "Fanny Ferrars Dashwood", "id": 17477, "credit_id": "54128d3f0e0a267310000b40", "cast_id": 18, "profile_path": "/vfpIPsC27D1ONVres7j3DgWYzdN.jpg", "order": 12}, {"name": "Gemma Jones", "character": "Mrs. Dashwood", "id": 9138, "credit_id": "54128d500e0a26731f000b31", "cast_id": 19, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 13}, {"name": "Emilie Fran\u00e7ois", "character": "Margaret Dashwood", "id": 937907, "credit_id": "54128d670e0a26730a000aee", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Elizabeth Spriggs", "character": "Mrs. Jennings", "id": 1220119, "credit_id": "54128d7b0e0a267317000b10", "cast_id": 21, "profile_path": "/dwzoE4S0dFJRoxTcvvfjOuSp4Sx.jpg", "order": 15}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe43cec3a36847f807101f", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 7.2, "runtime": 136}, "764": {"poster_path": "/pCafS6ksb7uDvuF5Ix7ZhHK9PeL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29400000, "overview": "When a group of college students finds a mysterious book and recording in the old wilderness cabin they've rented for the weekend, they unwittingly unleash a demonic force from the surrounding forest.", "video": false, "id": 764, "genres": [{"id": 27, "name": "Horror"}], "title": "The Evil Dead", "tagline": "Can they be stopped?", "vote_count": 201, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jrLLRe7pctP1aFDRuD9mt59YGHX.jpg", "poster_path": "/eWFADubShlTEUiNsPcN6BMOKakr.jpg", "id": 1960, "name": "Evil Dead Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083907", "adult": false, "backdrop_path": "/3a1IOTatyhQi5eP9vZvBU5NQDmM.jpg", "production_companies": [{"name": "Renaissance Pictures", "id": 467}], "release_date": "1981-10-15", "popularity": 0.973671809876596, "original_title": "The Evil Dead", "budget": 350000, "cast": [{"name": "Bruce Campbell", "character": "Ashley 'Ash' J. Williams", "id": 11357, "credit_id": "52fe4273c3a36847f801f82b", "cast_id": 16, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 0}, {"name": "Ellen Sandweiss", "character": "Cheryl", "id": 11462, "credit_id": "52fe4273c3a36847f801f7f9", "cast_id": 6, "profile_path": "/w5WnK8DoFYZTORnicQdP0abQOE.jpg", "order": 1}, {"name": "Richard DeManincor", "character": "Scott", "id": 11463, "credit_id": "52fe4273c3a36847f801f7fd", "cast_id": 7, "profile_path": "/14XLkR6RsMNeB0QViIe5T2tbDYl.jpg", "order": 2}, {"name": "Betsy Baker", "character": "Linda", "id": 11464, "credit_id": "52fe4273c3a36847f801f801", "cast_id": 8, "profile_path": "/dKnuMuT5H01UGoVJXeB3HhnvIT5.jpg", "order": 3}, {"name": "Theresa Tilly", "character": "Shelly", "id": 11465, "credit_id": "52fe4273c3a36847f801f805", "cast_id": 9, "profile_path": "/397OcfzGVZZmdguXA3lS7GVheV4.jpg", "order": 4}, {"name": "Sam Raimi", "character": "Hitchhiking Fisherman", "id": 7623, "credit_id": "52fe4273c3a36847f801f809", "cast_id": 10, "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "order": 5}, {"name": "Philip A. Gillis", "character": "Fake Shemp", "id": 1116941, "credit_id": "52fe4273c3a36847f801f835", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Dorothy Tapert", "character": "Fake Shemp", "id": 1116942, "credit_id": "52fe4273c3a36847f801f839", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Cheryl Guttridge", "character": "Fake Shemp", "id": 1116943, "credit_id": "52fe4273c3a36847f801f83d", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Barbara Carey", "character": "Fake Shemp", "id": 1116944, "credit_id": "52fe4273c3a36847f801f841", "cast_id": 21, "profile_path": null, "order": 9}], "directors": [{"name": "Sam Raimi", "department": "Directing", "job": "Director", "credit_id": "52fe4273c3a36847f801f7dd", "profile_path": "/LaCTPq1oh0nAs3mzwsc057OaPr.jpg", "id": 7623}], "vote_average": 7.0, "runtime": 85}, "4588": {"poster_path": "/1voAijiJYzN3pNyo90ffd6WOKik.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "TW", "name": "Taiwan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "During World War II a secret agent (Tang Wei) must seduce, then assassinate an official (Tony Leung Chiu Wai) who works for the Japanese puppet government in Shanghai. Her mission becomes clouded when she finds herself falling in love with the man she is assigned to kill.", "video": false, "id": 4588, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Lust, Caution", "tagline": "", "vote_count": 79, "homepage": "http://www.bvi.com.tw/movies/lust_caution/main.html", "belongs_to_collection": null, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0808357", "adult": false, "backdrop_path": "/wIpN41SgnwlS0QdgqFJXOZmHWO8.jpg", "production_companies": [{"name": "River Road Entertainment", "id": 1246}, {"name": "Haishang Films", "id": 13480}, {"name": "Focus Features", "id": 10146}], "release_date": "2007-08-30", "popularity": 1.0822444592824, "original_title": "\u8272\u2027\u6212", "budget": 15000000, "cast": [{"name": "Tony Leung Chiu-Wai", "character": "Herr Yi", "id": 1337, "credit_id": "52fe43cec3a36847f807113f", "cast_id": 1, "profile_path": "/xSEwMBLHdiKjyG4YVCsjpaT5fgD.jpg", "order": 0}, {"name": "Tang Wei", "character": "Wang Jiazhi", "id": 38280, "credit_id": "52fe43cec3a36847f8071143", "cast_id": 2, "profile_path": "/sLdrMu4Z3qkoF9KdJbcpTMLvgzy.jpg", "order": 1}, {"name": "Joan Chen", "character": "Frau Yi", "id": 6720, "credit_id": "52fe43cec3a36847f8071147", "cast_id": 3, "profile_path": "/ekWS5bAB0kv4RColHqYaUAoXz0I.jpg", "order": 2}, {"name": "Leehom Wang", "character": "Kuang Yu Min", "id": 134184, "credit_id": "52fe43cec3a36847f80711a9", "cast_id": 23, "profile_path": "/7KuBwhVnAH4KYrbiLjhOMxjgrLY.jpg", "order": 3}, {"name": "Anupam Kher", "character": "Indischer Juwelier", "id": 6217, "credit_id": "52fe43cec3a36847f807114b", "cast_id": 5, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 4}, {"name": "Lawrence Ko", "character": "Liang Jun Sheng", "id": 150609, "credit_id": "54756333c3a3687ad9000e27", "cast_id": 25, "profile_path": null, "order": 5}, {"name": "Chih-ying Chu", "character": "Lai Shu Jin", "id": 38285, "credit_id": "52fe43cec3a36847f8071197", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Ying-hsien Kao", "character": "Huang Lei", "id": 38286, "credit_id": "52fe43cec3a36847f807119b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "He Saifei", "character": "", "id": 64987, "credit_id": "5330e822c3a3686a7f0006ed", "cast_id": 24, "profile_path": "/f5ZBBpd7QKw1s1wSQ7DgXJbLVtP.jpg", "order": 8}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe43cec3a36847f8071151", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 6.3, "runtime": 156}, "250349": {"poster_path": "/20ZniTaQ4tIQJQOfWZ4bpps8jmx.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 14348529, "overview": "On his 50th birthday, a man who's been watching his weight, health and temper all his life suffers a heart attack. He's been doing everything he was told he should do and it still didn't help. He decides to turn the page and let loose.", "video": false, "id": 250349, "genres": [{"id": 35, "name": "Comedy"}], "title": "Barbecue", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3202120", "adult": false, "backdrop_path": "/6cqqgHlcYLDb4iUTaudnsqQOEtd.jpg", "production_companies": [{"name": "Cin\u00e9france 1888", "id": 31229}, {"name": "Studio Canal", "id": 5870}, {"name": "Same Player", "id": 4696}, {"name": "TF1 Films Production", "id": 3823}], "release_date": "2014-04-30", "popularity": 0.149828915362679, "original_title": "Barbecue", "budget": 6000000, "cast": [{"name": "Lambert Wilson", "character": "Antoine", "id": 2192, "credit_id": "52fe4df09251416c91121139", "cast_id": 2, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 0}, {"name": "Franck Dubosc", "character": "Baptiste", "id": 24893, "credit_id": "52fe4df09251416c9112113d", "cast_id": 3, "profile_path": "/4YV7cy1mBF48wdrf9Std7a94Dv2.jpg", "order": 1}, {"name": "Florence Foresti", "character": "Olivia", "id": 56226, "credit_id": "52fe4df09251416c91121141", "cast_id": 4, "profile_path": "/pBv0EiKkQWgU6YIS0Db4hQwcVZ7.jpg", "order": 2}, {"name": "Guillaume de Tonqu\u00e9dec", "character": "Yves", "id": 17896, "credit_id": "53d35eee0e0a26283800146f", "cast_id": 14, "profile_path": "/gx6Kh89dbkSo2cnfXTrzNNqWIBe.jpg", "order": 3}, {"name": "J\u00e9r\u00f4me Commandeur", "character": "Jean-Michel", "id": 54170, "credit_id": "52fe4df09251416c91121149", "cast_id": 6, "profile_path": "/oD7b6OOvypJxHDLScoNkEpxnRPA.jpg", "order": 4}, {"name": "Val\u00e9rie Crouzet", "character": "Nathalie", "id": 1035744, "credit_id": "52fe4df09251416c9112114d", "cast_id": 7, "profile_path": "/3PwMsDHQlKVMLig1JOGuOjvmQGD.jpg", "order": 5}, {"name": "Sophie Duez", "character": "V\u00e9ronique", "id": 236135, "credit_id": "52fe4df09251416c91121151", "cast_id": 8, "profile_path": "/zy0jVJc5xni8Xlkvunkks8ekAXn.jpg", "order": 6}, {"name": "Lionel Abelanski", "character": "Laurent", "id": 7278, "credit_id": "52fe4df09251416c91121155", "cast_id": 9, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 7}, {"name": "Marc Fayet", "character": "Serveur chez Abel", "id": 1047743, "credit_id": "533326179251410b51003f71", "cast_id": 10, "profile_path": "/9BWlCiE7LK9wvOFGhhjwvbpGPwF.jpg", "order": 8}, {"name": "Antoine Blanquefort", "character": "Professeur Blomet", "id": 305036, "credit_id": "533326339251410b48003d71", "cast_id": 11, "profile_path": "/9Dmf3M7rbOQxubxLyA1kbjkuLTq.jpg", "order": 9}, {"name": "Nabiha Akkari", "character": "Voisine", "id": 147832, "credit_id": "533326599251410b48003d74", "cast_id": 12, "profile_path": "/63oQYIn1x2nd4yxL7wZ8y58V5Mg.jpg", "order": 10}, {"name": "Lysiane Meis", "character": "Laure", "id": 1304842, "credit_id": "533326749251410b4b003e33", "cast_id": 13, "profile_path": "/eGkDgIQSgWaUjYN6M9oKmjAwWRc.jpg", "order": 11}], "directors": [{"name": "Eric Lavaine", "department": "Directing", "job": "Director", "credit_id": "52fe4df09251416c91121135", "profile_path": "/dE5Zuqsx0usPFg9TPTA9zQSLh3s.jpg", "id": 121588}], "vote_average": 5.9, "runtime": 98}, "12783": {"poster_path": "/tOv8ftJIER6Jrwshv1GQ8FhmGUN.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.", "video": false, "id": 12783, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "The Duchess", "tagline": "", "vote_count": 84, "homepage": "http://www.theduchessmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0864761", "adult": false, "backdrop_path": "/vEpDdfgOzdOy3sBa27iVx60ix02.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Paramount Vantage", "id": 838}, {"name": "Qwerty Films", "id": 892}, {"name": "Magnolia Mae Films", "id": 18188}, {"name": "BIM Distribuzione", "id": 225}, {"name": "Path\u00e9", "id": 7981}], "release_date": "2008-09-05", "popularity": 0.975014680258697, "original_title": "The Duchess", "budget": 0, "cast": [{"name": "Keira Knightley", "character": "Georgiana, The Duchess of Devonshire", "id": 116, "credit_id": "52fe45239251416c7504cef3", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Duke of Devonshire", "id": 5469, "credit_id": "52fe45239251416c7504cef7", "cast_id": 6, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Aidan McArdle", "character": "Richard Brinsley Sheridan", "id": 47653, "credit_id": "52fe45239251416c7504cefb", "cast_id": 7, "profile_path": "/dy7uQlhYrp71mkj7EOYOr3C4uJk.jpg", "order": 2}, {"name": "Simon McBurney", "character": "Fox", "id": 16358, "credit_id": "52fe45239251416c7504ceff", "cast_id": 8, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 3}, {"name": "Charlotte Rampling", "character": "Lady Spencer", "id": 44079, "credit_id": "52fe45239251416c7504cf03", "cast_id": 10, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 4}, {"name": "Dominic Cooper", "character": "Grey", "id": 55470, "credit_id": "52fe45239251416c7504cf07", "cast_id": 11, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 5}, {"name": "Hayley Atwell", "character": "Bess", "id": 39459, "credit_id": "52fe45239251416c7504cf0b", "cast_id": 12, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 6}, {"name": "Bruce Mackinnon", "character": "Sir Peter Teazle", "id": 1227575, "credit_id": "54e0ab3392514119560058f6", "cast_id": 68, "profile_path": "/i6RLbFsZqkflplC45XRItxVnv8V.jpg", "order": 7}, {"name": "Georgia King", "character": "Lady Teazle", "id": 73462, "credit_id": "52fe45239251416c7504cf0f", "cast_id": 13, "profile_path": "/o8OrqKT5o2AH8eakjonqWWj5xzL.jpg", "order": 8}, {"name": "Alistair Petrie", "character": "Heaton", "id": 56100, "credit_id": "54e0a950925141469f0035ca", "cast_id": 64, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 9}, {"name": "Patrick Godfrey", "character": "Dr. Neville", "id": 3568, "credit_id": "54e0a96a925141195a005215", "cast_id": 65, "profile_path": null, "order": 10}, {"name": "Richard McCabe", "character": "Sir James Hare", "id": 7025, "credit_id": "54e0a98c925141194b005a4d", "cast_id": 66, "profile_path": "/66NC8mYAilfkq6QkVAmmCKp9GQd.jpg", "order": 11}, {"name": "Andrew Armour", "character": "Burleigh", "id": 1427529, "credit_id": "54e0ab8a92514119500054ea", "cast_id": 69, "profile_path": null, "order": 12}], "directors": [{"name": "Saul Dibb", "department": "Directing", "job": "Director", "credit_id": "52fe45239251416c7504cedd", "profile_path": null, "id": 73460}], "vote_average": 6.2, "runtime": 110}, "119283": {"poster_path": "/oAXj55ReRME5juD1qieAoFDtiah.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46216641, "overview": "A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew's latest heist.", "video": false, "id": 119283, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Parker", "tagline": "To get away clean, you have to play dirty.", "vote_count": 954, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1904996", "adult": false, "backdrop_path": "/y9lH6ijs5YXS8njSHtiJJj5UohO.jpg", "production_companies": [{"name": "SND", "id": 2902}], "release_date": "2013-01-25", "popularity": 1.35943664884724, "original_title": "Parker", "budget": 35000000, "cast": [{"name": "Jason Statham", "character": "Parker", "id": 976, "credit_id": "52fe4bfac3a36847f821baad", "cast_id": 4, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Jennifer Lopez", "character": "Leslie", "id": 16866, "credit_id": "52fe4bfac3a36847f821bab1", "cast_id": 5, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Hurley", "id": 1733, "credit_id": "52fe4bfac3a36847f821bab5", "cast_id": 6, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Melander", "id": 19654, "credit_id": "52fe4bfac3a36847f821bab9", "cast_id": 7, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Clifton Collins, Jr.", "character": "Ross", "id": 5365, "credit_id": "52fe4bfac3a36847f821babd", "cast_id": 8, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 4}, {"name": "Sala Baker", "character": "Ernesto", "id": 1366, "credit_id": "52fe4bfac3a36847f821bac1", "cast_id": 9, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 5}, {"name": "Carlos Carrasco", "character": "Norte", "id": 33712, "credit_id": "52fe4bfac3a36847f821bac5", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Wendell Pierce", "character": "Carlson", "id": 17859, "credit_id": "52fe4bfac3a36847f821bac9", "cast_id": 11, "profile_path": "/7p9ZeW4THeUqJCElRFP2xQ7vYQQ.jpg", "order": 7}, {"name": "Emma Booth", "character": "Claire", "id": 105838, "credit_id": "52fe4bfac3a36847f821bacd", "cast_id": 12, "profile_path": "/h5UzAG1BH7e5wjBvZMCndgI1p3T.jpg", "order": 8}, {"name": "Daniel Bernhardt", "character": "Kroll", "id": 9452, "credit_id": "52fe4bfac3a36847f821bad1", "cast_id": 13, "profile_path": "/gsIWvByH4lzQdTgMswQWqiAQOql.jpg", "order": 9}, {"name": "Patti LuPone", "character": "Ascension", "id": 5699, "credit_id": "53e640c70e0a2628ce001eb3", "cast_id": 14, "profile_path": "/qggvgKBEGSHooopJvP5HlnBlUDT.jpg", "order": 10}], "directors": [{"name": "Taylor Hackford", "department": "Directing", "job": "Director", "credit_id": "52fe4bfac3a36847f821ba9d", "profile_path": "/heZfdghufTV3t3ayrWvIuiP1jvb.jpg", "id": 18596}], "vote_average": 5.6, "runtime": 118}, "7518": {"poster_path": "/fGvoD6n6blbFprgbl3BJ2U8YHSF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155019340, "overview": "A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating...and learns a lesson about family himself.", "video": false, "id": 7518, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Over the Hedge", "tagline": "Taking back the neighborhood... One snack at a time.", "vote_count": 280, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327084", "adult": false, "backdrop_path": "/lNABYZx4BLt97dinPV4iRegGVfa.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2006-04-22", "popularity": 1.51371579054267, "original_title": "Over the Hedge", "budget": 80000000, "cast": [{"name": "Bruce Willis", "character": "RJ (voice)", "id": 62, "credit_id": "52fe4482c3a36847f809a4cd", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Garry Shandling", "character": "Verne (voice)", "id": 52865, "credit_id": "52fe4482c3a36847f809a4d1", "cast_id": 2, "profile_path": "/6QDSrYk2wUu7kKPcIksgngYX5Ty.jpg", "order": 1}, {"name": "Steve Carell", "character": "Hammy (voice)", "id": 4495, "credit_id": "52fe4482c3a36847f809a4d5", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 2}, {"name": "Wanda Sykes", "character": "Stella (voice)", "id": 27102, "credit_id": "52fe4482c3a36847f809a4d9", "cast_id": 4, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 3}, {"name": "William Shatner", "character": "Ozzie (voice)", "id": 1748, "credit_id": "52fe4482c3a36847f809a4dd", "cast_id": 5, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Nick Nolte", "character": "Vincent (voice)", "id": 1733, "credit_id": "52fe4482c3a36847f809a4e1", "cast_id": 6, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 5}, {"name": "Thomas Haden Church", "character": "Dwayne (voice)", "id": 19159, "credit_id": "52fe4482c3a36847f809a4e5", "cast_id": 7, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 6}, {"name": "Allison Janney", "character": "Gladys (voice)", "id": 19, "credit_id": "52fe4482c3a36847f809a4e9", "cast_id": 8, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 7}, {"name": "Eugene Levy", "character": "Lou (voice)", "id": 26510, "credit_id": "52fe4482c3a36847f809a4ed", "cast_id": 9, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 8}, {"name": "Catherine O'Hara", "character": "Penny (voice)", "id": 11514, "credit_id": "52fe4482c3a36847f809a4f1", "cast_id": 10, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 9}, {"name": "Avril Lavigne", "character": "Heather (voice)", "id": 52866, "credit_id": "52fe4482c3a36847f809a4f5", "cast_id": 11, "profile_path": "/q2OZC7fKPsBVWTQqOYGz7hPcDwB.jpg", "order": 10}, {"name": "Omid Djalili", "character": "Tiger (voice)", "id": 41379, "credit_id": "52fe4482c3a36847f809a4f9", "cast_id": 12, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 11}, {"name": "Sami Kirkpatrick", "character": "Bucky (voice)", "id": 52867, "credit_id": "52fe4482c3a36847f809a4fd", "cast_id": 13, "profile_path": "/6Bfb9D6KPa4HvwPHKxNrSEx8psD.jpg", "order": 12}, {"name": "Shane Baumel", "character": "Spike (voice)", "id": 52868, "credit_id": "52fe4482c3a36847f809a501", "cast_id": 14, "profile_path": "/lcb0H1H2hPF2RzSeGq2OadilEMy.jpg", "order": 13}, {"name": "Madison Davenport", "character": "Quillo (voice)", "id": 52869, "credit_id": "52fe4482c3a36847f809a505", "cast_id": 15, "profile_path": "/rNjyKpAD6tE2sWwkzeWPrO7AqcG.jpg", "order": 14}], "directors": [{"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a50b", "profile_path": null, "id": 52870}, {"name": "Karey Kirkpatrick", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a511", "profile_path": "/duWAmZCC3R9B6WgoIaX56Q39hy4.jpg", "id": 52845}], "vote_average": 6.2, "runtime": 83}, "4597": {"poster_path": "/zdj2p7apgVCqWoaIldzYsdLHZ1J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22942221, "overview": "A crew of officers at an armored transport security firm risk their lives when they embark on the ultimate heist against their own company. Armed with a seemingly fool-proof plan, the men plan on making off with a fortune with harm to none. But when an unexpected witness interferes, the plan quickly unravels and all bets are off.", "video": false, "id": 4597, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Armored", "tagline": "Who will be the last man standing?", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0913354", "adult": false, "backdrop_path": "/a4cvwQ73OtAUWYsIMSQ0iUHDGED.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Stars Road Entertainment", "id": 8931}, {"name": "Farah Films & Management", "id": 11249}, {"name": "Buckaroo Entertainment", "id": 11250}], "release_date": "2009-12-04", "popularity": 0.618974126474381, "original_title": "Armored", "budget": 20000000, "cast": [{"name": "Columbus Short", "character": "Ty Hackett", "id": 31132, "credit_id": "52fe43cec3a36847f807138d", "cast_id": 2, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Baines", "id": 2975, "credit_id": "52fe43cec3a36847f8071391", "cast_id": 4, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Skeet Ulrich", "character": "Dobbs", "id": 22108, "credit_id": "52fe43cec3a36847f8071395", "cast_id": 5, "profile_path": "/nGdQCrLrSubxd3kV70NgcRADEi7.jpg", "order": 2}, {"name": "Amaury Nolasco", "character": "Palmer", "id": 17341, "credit_id": "52fe43cec3a36847f8071399", "cast_id": 6, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 3}, {"name": "Matt Dillon", "character": "Mike Cochrane", "id": 2876, "credit_id": "52fe43cec3a36847f807139d", "cast_id": 7, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 4}, {"name": "Jean Reno", "character": "Quinn", "id": 1003, "credit_id": "52fe43cec3a36847f80713a1", "cast_id": 8, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 5}, {"name": "Fred Ward", "character": "Duncan Ashcroft", "id": 10430, "credit_id": "52fe43cec3a36847f80713a5", "cast_id": 9, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 6}, {"name": "Milo Ventimiglia", "character": "Eckehart", "id": 16501, "credit_id": "52fe43cfc3a36847f80713eb", "cast_id": 21, "profile_path": "/maJeS6bA6ku21rSRceISQtwHL2h.jpg", "order": 7}, {"name": "Andre Kinney", "character": "Jimmy Hackett", "id": 1115002, "credit_id": "52fe43cfc3a36847f80713ef", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Andrew Fiscella", "character": "Dispatcher #1", "id": 65699, "credit_id": "52fe43cfc3a36847f80713f3", "cast_id": 23, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 9}, {"name": "Nick Jameson", "character": "Homeless Man", "id": 39214, "credit_id": "52fe43cfc3a36847f80713f7", "cast_id": 24, "profile_path": "/5qj2PTuViab3fc5Yauq91VIt8Ex.jpg", "order": 10}, {"name": "Glenn Taranto", "character": "Joe the Cook", "id": 18305, "credit_id": "52fe43cfc3a36847f80713fb", "cast_id": 25, "profile_path": "/kZfmHgAOYHprU9Iq30W7oTx9M7Y.jpg", "order": 11}, {"name": "Lorna Raver", "character": "Child Welfare Agent", "id": 95696, "credit_id": "52fe43cfc3a36847f80713ff", "cast_id": 26, "profile_path": "/iXlz30cBxvyn66fPTFOgbrrlsqT.jpg", "order": 12}, {"name": "Garry Guerrier", "character": "Federal Guard", "id": 167708, "credit_id": "52fe43cfc3a36847f8071403", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "Robert Harvey", "character": "Bank Guard", "id": 62100, "credit_id": "52fe43cfc3a36847f8071407", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Shawn Devorse", "character": "Federal Guard #2", "id": 1002203, "credit_id": "52fe43cfc3a36847f807140b", "cast_id": 29, "profile_path": null, "order": 15}], "directors": [{"name": "Nimr\u00f3d Antal", "department": "Directing", "job": "Director", "credit_id": "52fe43cec3a36847f8071389", "profile_path": "/rI5DZmGXhZcNYaREK9vy2khqm1o.jpg", "id": 41671}], "vote_average": 5.8, "runtime": 88}, "8814": {"poster_path": "/7oZj7PCNh3G8xo9xs33suIpubv8.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55987321, "overview": "A team of space marines known as the Rapid Response Tactical Squad, led by Sarge, is sent to a science facility on Mars after somebody reports a security breach. There, they learn that the alert came after a test subject, a mass murderer purposefully injected with alien DNA, broke free and began killing people. Dr. Grimm, who is related to team member Reaper, informs them all that the chromosome can mutate humans into monsters -- and is highly infectious.", "video": false, "id": 8814, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Doom", "tagline": "No one gets out alive.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0419706", "adult": false, "backdrop_path": "/pFluPgwdp8LhFY6EWTxZpqTFvlz.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}, {"name": "John Wells Productions", "id": 1512}, {"name": "Reaper Productions", "id": 2539}, {"name": "Stillking Films", "id": 11345}, {"name": "Babelsberg Film", "id": 19481}, {"name": "Doom Productions", "id": 19922}, {"name": "Distant Planet Productions", "id": 19923}], "release_date": "2005-10-21", "popularity": 0.848808385172809, "original_title": "Doom", "budget": 60000000, "cast": [{"name": "Dwayne Johnson", "character": "Sarge", "id": 18918, "credit_id": "52fe44bac3a36847f80a6b03", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Karl Urban", "character": "John Grimm", "id": 1372, "credit_id": "52fe44bac3a36847f80a6b07", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 1}, {"name": "Rosamund Pike", "character": "Samantha Grimm", "id": 10882, "credit_id": "52fe44bac3a36847f80a6b41", "cast_id": 12, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 2}, {"name": "Ben Daniels", "character": "Goat", "id": 27632, "credit_id": "52fe44bac3a36847f80a6b45", "cast_id": 13, "profile_path": "/x6MI4Fdz1XbERbNbXYoxTK6NAgv.jpg", "order": 3}, {"name": "Deobia Oparei", "character": "Destroyer", "id": 58758, "credit_id": "52fe44bac3a36847f80a6b49", "cast_id": 14, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 4}, {"name": "Razaaq Adoti", "character": "Duke", "id": 12801, "credit_id": "52fe44bac3a36847f80a6b4d", "cast_id": 15, "profile_path": "/8tyDtkUerIQfghpdX1G08EdSEie.jpg", "order": 5}, {"name": "Richard Brake", "character": "Corporal Dean Portman", "id": 3901, "credit_id": "52fe44bac3a36847f80a6b51", "cast_id": 16, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 6}, {"name": "Al Weaver", "character": "The Kid", "id": 1015830, "credit_id": "52fe44bac3a36847f80a6b55", "cast_id": 17, "profile_path": "/yj6OxHmzVYnZrSSx9nsnemZRIJi.jpg", "order": 7}, {"name": "Dexter Fletcher", "character": "Pinky", "id": 974, "credit_id": "52fe44bac3a36847f80a6b59", "cast_id": 18, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 8}, {"name": "Brian Steele", "character": "Hell Knight / Curtis Stahl", "id": 12359, "credit_id": "52fe44bac3a36847f80a6b5d", "cast_id": 19, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 9}, {"name": "Yao Chin", "character": "Mac", "id": 1074678, "credit_id": "52fe44bac3a36847f80a6b61", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Robert Russell", "character": "Dr. Carmack", "id": 25670, "credit_id": "52fe44bac3a36847f80a6b65", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Daniel York", "character": "Lt. Huengs", "id": 19874, "credit_id": "52fe44bac3a36847f80a6b69", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Ian Hughes", "character": "Sanford Crosby", "id": 210711, "credit_id": "52fe44bac3a36847f80a6b6d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Sara Houghton", "character": "Dr. Jenna Willits", "id": 113241, "credit_id": "52fe44bac3a36847f80a6b71", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Andrzej Bartkowiak", "department": "Directing", "job": "Director", "credit_id": "52fe44bac3a36847f80a6b0d", "profile_path": "/taaHl0nMtXgKTx8YbeQoJCuO5Ac.jpg", "id": 10765}], "vote_average": 5.2, "runtime": 100}, "209403": {"poster_path": "/cEnpV3XLvgTp3eVXhY2eyQKZk4r.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7800000, "overview": "A spelling bee loser sets out to exact revenge by finding a loophole and attempting to win as an adult.", "video": false, "id": 209403, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bad Words", "tagline": "The end justifies the means", "vote_count": 118, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2170299", "adult": false, "backdrop_path": "/sxoszo9dKm77ItG1jB2WOEhbQDN.jpg", "production_companies": [{"name": "Darko Entertainment", "id": 12622}, {"name": "Aggregate Film", "id": 25975}], "release_date": "2013-09-06", "popularity": 0.59144737395274, "original_title": "Bad Words", "budget": 9500000, "cast": [{"name": "Jason Bateman", "character": "Guy Trilby", "id": 23532, "credit_id": "52fe4d64c3a368484e1e6bdd", "cast_id": 3, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Kathryn Hahn", "character": "Jenny Widgeon", "id": 17696, "credit_id": "52fe4d64c3a368484e1e6be9", "cast_id": 6, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 1}, {"name": "Allison Janney", "character": "Dr. Bernice Deagan", "id": 19, "credit_id": "52fe4d64c3a368484e1e6be1", "cast_id": 4, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 2}, {"name": "Philip Baker Hall", "character": "Dr. Bowman", "id": 4492, "credit_id": "52fe4d64c3a368484e1e6be5", "cast_id": 5, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 3}, {"name": "Rohan Chand", "character": "Chaitainya", "id": 935701, "credit_id": "52fe4d64c3a368484e1e6bed", "cast_id": 7, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 4}, {"name": "Ben Falcone", "character": "Pete Fowler", "id": 170820, "credit_id": "52fe4d64c3a368484e1e6bf1", "cast_id": 8, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 5}, {"name": "Patricia Belcher", "character": "Ingrid", "id": 56358, "credit_id": "52fe4d64c3a368484e1e6bf5", "cast_id": 9, "profile_path": "/dbbOF0P2h8qJ0fktNzMj4rmztP3.jpg", "order": 6}, {"name": "Beth Grant", "character": "Irene", "id": 5151, "credit_id": "52fe4d64c3a368484e1e6bf9", "cast_id": 10, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Rachel Harris", "character": "", "id": 945777, "credit_id": "52fe4d64c3a368484e1e6bfd", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Steve Witting", "character": "", "id": 1278652, "credit_id": "52fe4d64c3a368484e1e6c01", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Greg Cromer", "character": "", "id": 128013, "credit_id": "52fe4d64c3a368484e1e6c05", "cast_id": 13, "profile_path": "/t209XYLmYyRgY0l40PZVvNN5Hw4.jpg", "order": 10}], "directors": [{"name": "Jason Bateman", "department": "Directing", "job": "Director", "credit_id": "52fe4d64c3a368484e1e6bd3", "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "id": 23532}], "vote_average": 6.5, "runtime": 88}, "8960": {"poster_path": "/dsCxSr4w3g2ylhlZg3v5CB5Pid7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 624029371, "overview": "Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?", "video": false, "id": 8960, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}], "title": "Hancock", "tagline": "Bad Behavior. Bad Attitude. Real Hero.", "vote_count": 971, "homepage": "http://www.sonypictures.com/movies/hancock/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0448157", "adult": false, "backdrop_path": "/4ImUOpcfjHisC47QQkrHYaSpIUz.jpg", "production_companies": [{"name": "GH Three", "id": 41756}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Blue Light", "id": 28064}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "Forward Pass", "id": 675}], "release_date": "2008-07-01", "popularity": 1.30226115742234, "original_title": "Hancock", "budget": 150000000, "cast": [{"name": "Will Smith", "character": "John Hancock", "id": 2888, "credit_id": "52fe44cbc3a36847f80aa55d", "cast_id": 2, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Mary Embrey", "id": 6885, "credit_id": "52fe44cbc3a36847f80aa561", "cast_id": 3, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Jason Bateman", "character": "Ray Embrey", "id": 23532, "credit_id": "52fe44cbc3a36847f80aa565", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 2}, {"name": "Jae Head", "character": "Aaron Embrey", "id": 66658, "credit_id": "52fe44cbc3a36847f80aa5b5", "cast_id": 38, "profile_path": "/iq3GxDOVoTssnByU1CjWYkhPKmz.jpg", "order": 3}, {"name": "Eddie Marsan", "character": "", "id": 1665, "credit_id": "52fe44cbc3a36847f80aa585", "cast_id": 12, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 4}, {"name": "David Mattey", "character": "Man Mountain", "id": 66634, "credit_id": "52fe44cbc3a36847f80aa5ad", "cast_id": 19, "profile_path": "/9GbfO02TpgofIiaslwRKPS6hcmg.jpg", "order": 5}, {"name": "Thomas Lennon", "character": "Mike", "id": 539, "credit_id": "52fe44cbc3a36847f80aa671", "cast_id": 82, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 6}, {"name": "Johnny Galecki", "character": "Jeremy", "id": 16478, "credit_id": "52fe44cbc3a36847f80aa66d", "cast_id": 81, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 7}, {"name": "Hayley Marie Norman", "character": "Hottie", "id": 66623, "credit_id": "52fe44cbc3a36847f80aa56d", "cast_id": 6, "profile_path": "/gXUwyT5CG6wfwI2gV6X193AaGOk.jpg", "order": 8}, {"name": "Trieu Tran", "character": "Jr exec", "id": 61835, "credit_id": "52fe44cbc3a36847f80aa5bd", "cast_id": 40, "profile_path": null, "order": 9}, {"name": "Darrell Foster", "character": "Police Sergeant", "id": 49921, "credit_id": "52fe44cbc3a36847f80aa5b1", "cast_id": 25, "profile_path": "/9DPSxjhKhoi3YGCDRADEYVKNbKz.jpg", "order": 10}, {"name": "Ryan Radis", "character": "Guy In Back", "id": 66659, "credit_id": "52fe44cbc3a36847f80aa5b9", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Daeg Faerch", "character": "Michel", "id": 21317, "credit_id": "52fe44cbc3a36847f80aa569", "cast_id": 5, "profile_path": "/9JxK3k0BuQN7LubeiHQ9GEAC2A5.jpg", "order": 12}, {"name": "Eddie J. Fernandez", "character": "Skinning Con", "id": 18300, "credit_id": "52fe44cbc3a36847f80aa5ed", "cast_id": 58, "profile_path": null, "order": 13}, {"name": "Martin Klebba", "character": "Prisoner", "id": 4030, "credit_id": "52fe44cbc3a36847f80aa571", "cast_id": 7, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 14}, {"name": "Matt Bettinelli-Olpin", "character": "Reporter", "id": 66681, "credit_id": "52fe44cbc3a36847f80aa5e5", "cast_id": 55, "profile_path": null, "order": 15}, {"name": "Samantha Cannon", "character": "Nurse", "id": 66666, "credit_id": "52fe44cbc3a36847f80aa5d1", "cast_id": 47, "profile_path": null, "order": 16}, {"name": "Rico Devereaux", "character": "Inmate", "id": 66683, "credit_id": "52fe44cbc3a36847f80aa5e9", "cast_id": 57, "profile_path": null, "order": 17}, {"name": "Brandon Ford Green", "character": "Radio Caller (voice)", "id": 66669, "credit_id": "52fe44cbc3a36847f80aa5d9", "cast_id": 50, "profile_path": null, "order": 18}, {"name": "Johnathan Hallgrey", "character": "Theater patron", "id": 66684, "credit_id": "52fe44cbc3a36847f80aa5f1", "cast_id": 59, "profile_path": null, "order": 19}, {"name": "Alexa Havins", "character": "Fan", "id": 66630, "credit_id": "52fe44cbc3a36847f80aa575", "cast_id": 8, "profile_path": "/uYGzC2zxlOOJD1ipBuwrLfh2XV8.jpg", "order": 20}, {"name": "Edward M. Kelahan", "character": "Theater Guest", "id": 66685, "credit_id": "52fe44cbc3a36847f80aa5f5", "cast_id": 60, "profile_path": null, "order": 21}, {"name": "Algerita Wynn Lewis", "character": "Mug Shot Officer", "id": 66664, "credit_id": "52fe44cbc3a36847f80aa5cd", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Rick Mali", "character": "Corrections Guard", "id": 66680, "credit_id": "52fe44cbc3a36847f80aa5e1", "cast_id": 54, "profile_path": null, "order": 23}, {"name": "Chris Mitchell", "character": "Chain Gang Guard", "id": 66671, "credit_id": "52fe44cbc3a36847f80aa5dd", "cast_id": 51, "profile_path": null, "order": 24}, {"name": "Scott Michael Morgan", "character": "KCOT Reporter", "id": 66667, "credit_id": "52fe44cbc3a36847f80aa5d5", "cast_id": 48, "profile_path": "/ruuhMOYBkndrcZDE6Nn9qagMo4S.jpg", "order": 25}, {"name": "Bryan Keith Ponton", "character": "ER Doctor", "id": 66663, "credit_id": "52fe44cbc3a36847f80aa5c9", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Dawn Ressy", "character": "Theatergoer", "id": 66686, "credit_id": "52fe44cbc3a36847f80aa5f9", "cast_id": 61, "profile_path": null, "order": 27}, {"name": "Nicholas Rich", "character": "Police K-9 officer", "id": 66687, "credit_id": "52fe44cbc3a36847f80aa5fd", "cast_id": 62, "profile_path": null, "order": 28}, {"name": "Ron Fassler", "character": "Reporter", "id": 66661, "credit_id": "52fe44cbc3a36847f80aa5c5", "cast_id": 42, "profile_path": "/s0lxSKUnCJOlXQl2aCPg0DrAHb.jpg", "order": 29}, {"name": "Mark Simich", "character": "Matt", "id": 66660, "credit_id": "52fe44cbc3a36847f80aa5c1", "cast_id": 41, "profile_path": "/vpuMqT1t73jKKLqo80yI3rNTcRX.jpg", "order": 30}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe44cbc3a36847f80aa559", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 5.8, "runtime": 92}, "127493": {"poster_path": "/pkJyIiDg8s9zEbmOvm628rRGzC6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A former thief frantically searches for his missing daughter, who has been kidnapped and locked in the trunk of a taxi.", "video": false, "id": 127493, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Stolen", "tagline": "Never steal from the world's greatest thief.", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1656186", "adult": false, "backdrop_path": "/bLOFgTOrqBZI7p7SeS5JwA3T1Pu.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Saturn Films", "id": 831}, {"name": "Nu Image Films", "id": 925}], "release_date": "2012-09-14", "popularity": 0.765792458949636, "original_title": "Stolen", "budget": 35000000, "cast": [{"name": "Nicolas Cage", "character": "Will Montgomery", "id": 2963, "credit_id": "52fe4afbc3a368484e1711e9", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Riley Simms", "id": 50463, "credit_id": "52fe4afbc3a368484e1711ed", "cast_id": 4, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Josh Lucas", "character": "Cab Driver", "id": 6164, "credit_id": "52fe4afbc3a368484e1711f1", "cast_id": 5, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 2}, {"name": "Sami Gayle", "character": "Alison", "id": 506085, "credit_id": "52fe4afbc3a368484e1711f5", "cast_id": 6, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 3}, {"name": "Danny Huston", "character": "Tim Harlend", "id": 6413, "credit_id": "52fe4afbc3a368484e1711f9", "cast_id": 7, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 4}, {"name": "Mark Valley", "character": "Fletcher", "id": 136530, "credit_id": "52fe4afbc3a368484e1711fd", "cast_id": 8, "profile_path": "/bWCr7EhKM0aB19fONmeGcetMlQa.jpg", "order": 5}, {"name": "Michelle Torres", "character": "Tourist", "id": 1084799, "credit_id": "52fe4afbc3a368484e171201", "cast_id": 10, "profile_path": "/dZPlrG1s0brU21TfFMqASP0Kye4.jpg", "order": 6}, {"name": "Tanc Sade", "character": "Pete", "id": 191260, "credit_id": "52fe4afbc3a368484e171205", "cast_id": 11, "profile_path": "/iPvIVpaNxGtB0dDiOxCzaHOlCV1.jpg", "order": 7}, {"name": "Marcus Lyle Brown", "character": "Matthews", "id": 16460, "credit_id": "52fe4afbc3a368484e171209", "cast_id": 12, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 8}, {"name": "M.C. Gainey", "character": "Hoyt", "id": 22132, "credit_id": "52fe4afbc3a368484e171231", "cast_id": 19, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 9}, {"name": "Bernadette Ralphs", "character": "Kiosk Girl", "id": 1286019, "credit_id": "52fe4afbc3a368484e171253", "cast_id": 25, "profile_path": "/gDoXmvQUUSKNOcL6nPMaAfcVQgs.jpg", "order": 10}, {"name": "Emily West", "character": "Frightened Girl in Car", "id": 1286020, "credit_id": "52fe4afbc3a368484e171257", "cast_id": 26, "profile_path": "/7AkaPNteghjXK6DGYueTu4AHz9S.jpg", "order": 11}, {"name": "Tom Waite", "character": "FBI Agent (uncredited)", "id": 1338215, "credit_id": "53b95ebe0e0a2676bb00988b", "cast_id": 27, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 12}], "directors": [{"name": "Simon West", "department": "Directing", "job": "Director", "credit_id": "52fe4afbc3a368484e1711df", "profile_path": "/acrTt2BcGfLeQRpRcKj5pAqn21U.jpg", "id": 12786}], "vote_average": 5.2, "runtime": 96}, "4614": {"poster_path": "/k3ZJrGAccBocurYccRyD3aP6ltV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 118471320, "overview": "CIA analyst Jack Ryan must thwart the plans of a terrorist faction that threatens to induce a catastrophic conflict between the United States and Russia's newly elected president by detonating a nuclear weapon at a football game in Baltimore.", "video": false, "id": 4614, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Sum of All Fears", "tagline": "27,000 nuclear weapons. One is missing.", "vote_count": 117, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0164184", "adult": false, "backdrop_path": "/rGvao8CGRgtFmiJewzJxCe6cspl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Mace Neufeld Productions", "id": 2767}, {"name": "MFP Munich Film Partners GmbH & Company I. Produktions KG", "id": 21409}, {"name": "S.O.A.F. Productions", "id": 21410}], "release_date": "2002-05-31", "popularity": 1.14643552805662, "original_title": "The Sum of All Fears", "budget": 68000000, "cast": [{"name": "Ben Affleck", "character": "Jack Ryan", "id": 880, "credit_id": "52fe43cfc3a36847f80717db", "cast_id": 11, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "DCI William Cabot", "id": 192, "credit_id": "52fe43cfc3a36847f80717df", "cast_id": 12, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "James Cromwell", "character": "President Robert Bob Fowler", "id": 2505, "credit_id": "52fe43cfc3a36847f80717e3", "cast_id": 13, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 2}, {"name": "Ken Jenkins", "character": "Admiral Pollack", "id": 38570, "credit_id": "52fe43cfc3a36847f80717e7", "cast_id": 14, "profile_path": "/6w9OgC4nGUfYavC86a3FeeMgUJ4.jpg", "order": 3}, {"name": "Liev Schreiber", "character": "John Clark", "id": 23626, "credit_id": "52fe43cfc3a36847f80717eb", "cast_id": 15, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Gene Revell", "id": 14888, "credit_id": "52fe43cfc3a36847f80717ef", "cast_id": 16, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "John Beasley", "character": "General Lasseter", "id": 38571, "credit_id": "52fe43cfc3a36847f80717f3", "cast_id": 17, "profile_path": "/mboK7DsL33Ulmoj6LwJIfJKV5tu.jpg", "order": 6}, {"name": "Philip Baker Hall", "character": "Defense Secretary Becker", "id": 4492, "credit_id": "52fe43cfc3a36847f80717fd", "cast_id": 19, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 7}, {"name": "Bridget Moynahan", "character": "Dr. Cathy Muller", "id": 18354, "credit_id": "52fe43cfc3a36847f8071801", "cast_id": 20, "profile_path": "/sNdD2Cos4aecowtWPpd0hcM8izY.jpg", "order": 8}, {"name": "Ciar\u00e1n Hinds", "character": "President Nemerov", "id": 8785, "credit_id": "52fe43cfc3a36847f8071805", "cast_id": 21, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 9}, {"name": "Michel 'Gish' Abou-Samah", "character": "Olson's Translator", "id": 6075, "credit_id": "52fe43cfc3a36847f8071809", "cast_id": 22, "profile_path": "/sWoFi9ksYFQhj5lE2GelTNVXxN.jpg", "order": 10}], "directors": [{"name": "Phil Alden Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe43cfc3a36847f80717a1", "profile_path": "/aDkpgJkcHHnd3cCY1Umiouxbxw0.jpg", "id": 23968}], "vote_average": 5.8, "runtime": 124}, "8961": {"poster_path": "/680X9apSqmAcebLg8evnnUeQNeI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 273339556, "overview": "Martin Lawrence and Will Smith reunite as out-of-control trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force. Bullets fly, cars crash, and laughs explode as they pursue a whacked-out drug lord from the streets of Miami to the barrios of Cuba. But the real fireworks result when Lawrence discovers that playboy Smith is secretly romancing his sexy sister Syd.", "video": false, "id": 8961, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Bad Boys II", "tagline": "If you can't stand the heat, get out of Miami.", "vote_count": 518, "homepage": "", "belongs_to_collection": {"backdrop_path": "/4DdFOVFwzbRJLqN4oynYLY0XVwL.jpg", "poster_path": "/tSVbihfvVTCbcm0zXKA7L8R6Y9v.jpg", "id": 14890, "name": "Bad Boys Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0172156", "adult": false, "backdrop_path": "/uuDGDpvItQQfOOZlAXB5Yh51J4d.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2003-07-18", "popularity": 1.02348554963783, "original_title": "Bad Boys II", "budget": 130000000, "cast": [{"name": "Will Smith", "character": "Detective Mike Lowrey", "id": 2888, "credit_id": "52fe44cbc3a36847f80aa747", "cast_id": 31, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Detective Marcus Burnett", "id": 78029, "credit_id": "52fe44cbc3a36847f80aa6d1", "cast_id": 3, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "Gabrielle Union", "character": "Sydney 'Syd' Burnett", "id": 17773, "credit_id": "52fe44cbc3a36847f80aa727", "cast_id": 23, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 2}, {"name": "Jordi Moll\u00e0", "character": "Hector Juan Carlos 'Johnny' Tapia", "id": 31384, "credit_id": "52fe44cbc3a36847f80aa6d5", "cast_id": 4, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 3}, {"name": "Peter Stormare", "character": "Alexei", "id": 53, "credit_id": "52fe44cbc3a36847f80aa6d9", "cast_id": 6, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 4}, {"name": "Joe Pantoliano", "character": "Captain C. Howard", "id": 532, "credit_id": "52fe44cbc3a36847f80aa6dd", "cast_id": 8, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Oleg Taktarov", "character": "Josef", "id": 77351, "credit_id": "52fe44cbc3a36847f80aa71d", "cast_id": 21, "profile_path": "/5MR4NqGOMnv12Thaqj2xN2cFbpT.jpg", "order": 6}, {"name": "Theresa Randle", "character": "Theresa Burnett", "id": 4604, "credit_id": "52fe44cbc3a36847f80aa72b", "cast_id": 24, "profile_path": "/18LVR034VKDGOFqDw1EA1VZQVoe.jpg", "order": 7}, {"name": "Otto Sanchez", "character": "Carlos", "id": 59739, "credit_id": "52fe44cbc3a36847f80aa72f", "cast_id": 25, "profile_path": "/mlRevsrPkl0UJ4oRZTIjTHwKQAw.jpg", "order": 8}, {"name": "Jason Manuel Olazabal", "character": "Marco Vargas", "id": 147960, "credit_id": "52fe44cbc3a36847f80aa733", "cast_id": 26, "profile_path": "/52AecacpPjSjP5mJwEHkOg2LooX.jpg", "order": 9}, {"name": "Yul Vazquez", "character": "Mateo Reyes", "id": 75604, "credit_id": "52fe44cbc3a36847f80aa737", "cast_id": 27, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 10}, {"name": "Jon Seda", "character": "Roberto", "id": 288, "credit_id": "52fe44cbc3a36847f80aa73b", "cast_id": 28, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 11}, {"name": "Michael Shannon", "character": "Floyd Poteet", "id": 335, "credit_id": "52fe44cbc3a36847f80aa73f", "cast_id": 29, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 12}, {"name": "John Salley", "character": "Fletcher", "id": 119869, "credit_id": "52fe44cbc3a36847f80aa74b", "cast_id": 32, "profile_path": "/sIrLQv2MLpSm9s7sXPbzRtVhYSi.jpg", "order": 13}, {"name": "Michael Bay", "character": "Driver", "id": 865, "credit_id": "52fe44cbc3a36847f80aa743", "cast_id": 30, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 14}, {"name": "Ron Madoff", "character": "Boat Scene Extra", "id": 1286269, "credit_id": "52fe44ccc3a36847f80aa7a3", "cast_id": 47, "profile_path": "/sh1XrRSChxYHBZwQ2IhWVmS7hQs.jpg", "order": 15}, {"name": "Gary Nickens", "character": "Detective Fanuti", "id": 1286657, "credit_id": "538079b3c3a368059e004ef1", "cast_id": 48, "profile_path": "/zFi87EEyy24d2NdZOoORWcwgeYi.jpg", "order": 16}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe44cbc3a36847f80aa6cd", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.3, "runtime": 147}, "10327": {"poster_path": "/wECfNeNPTO5stVguJZ4lWYzd3J6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After Elle Woods, the eternally perky, fashionably adventurous, famously blonde Harvard Law grad gets fired by her law firm because of her opposition to animal testing, she takes her fight to Washington. As an aide for Congresswoman Victoria Rudd, she pushes for a bill to ban testing once and for all, but it's her building's doorman who advises her on how to get her way on the Hill.", "video": false, "id": 10327, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Legally Blonde 2: Red, White & Blonde", "tagline": "Bigger. Bolder. Blonder.", "vote_count": 101, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aabPyPAA6E8hJ7tUipwunr3Itzb.jpg", "poster_path": "/atW2tUdKztpE66G1FMLCj12BHWz.jpg", "id": 86024, "name": "Legally Blonde Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0333780", "adult": false, "backdrop_path": "/kHI6u5sywNk8BZLPIJxpvUZitVA.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "2003-07-02", "popularity": 1.1683863283358, "original_title": "Legally Blonde 2: Red, White & Blonde", "budget": 0, "cast": [{"name": "Reese Witherspoon", "character": "Elle Woods", "id": 368, "credit_id": "52fe435a9251416c7500d091", "cast_id": 8, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Sally Field", "character": "Rep. Victoria Rudd", "id": 35, "credit_id": "52fe435a9251416c7500d095", "cast_id": 9, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "Regina King", "character": "Grace Rossiter", "id": 9788, "credit_id": "52fe435a9251416c7500d099", "cast_id": 10, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 2}, {"name": "Jennifer Coolidge", "character": "Paulette", "id": 38334, "credit_id": "52fe435a9251416c7500d09d", "cast_id": 11, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 3}, {"name": "James Newman", "character": "Ray Fuchs", "id": 151124, "credit_id": "52fe435a9251416c7500d0ad", "cast_id": 14, "profile_path": "/yIDXqkrb290f9xAd6yNU0g2QmYQ.jpg", "order": 4}, {"name": "Luke Wilson", "character": "Emmett Richmond", "id": 36422, "credit_id": "52fe435a9251416c7500d0b1", "cast_id": 15, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 5}], "directors": [{"name": "Charles Herman-Wurmfeld", "department": "Directing", "job": "Director", "credit_id": "52fe435a9251416c7500d0a3", "profile_path": "/l2YqPQmhUWLyhDqVUjEHLaNWu7x.jpg", "id": 76247}], "vote_average": 4.9, "runtime": 95}, "82690": {"poster_path": "/93FsllrXXWncp7BQYTdOU1XMRXo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 471222889, "overview": "Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.", "video": false, "id": 82690, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Wreck-It Ralph", "tagline": "The story of a regular guy just looking for a little wreck-ognition.", "vote_count": 2615, "homepage": "http://disney.go.com/wreck-it-ralph", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1772341", "adult": false, "backdrop_path": "/1HjKgkIdR2qw8ihM6MTxgdST2kM.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2012-11-01", "popularity": 1.62109490698612, "original_title": "Wreck-It Ralph", "budget": 165000000, "cast": [{"name": "John C. Reilly", "character": "Wreck-It Ralph (voice)", "id": 4764, "credit_id": "52fe486a9251416c9108bcd5", "cast_id": 9, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 0}, {"name": "Sarah Silverman", "character": "Vanellope von Schweetz (voice)", "id": 7404, "credit_id": "52fe486a9251416c9108bcdd", "cast_id": 11, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 1}, {"name": "Jane Lynch", "character": "Sergeant Calhoun (voice)", "id": 43775, "credit_id": "52fe486a9251416c9108bcd9", "cast_id": 10, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 2}, {"name": "Jack McBrayer", "character": "Fix-It Felix (voice)", "id": 58737, "credit_id": "52fe486b9251416c9108bce1", "cast_id": 12, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 3}, {"name": "Jamie Elman", "character": "Rancis Fluggerbutter (voice)", "id": 95002, "credit_id": "52fe486b9251416c9108bce5", "cast_id": 13, "profile_path": "/1YOxX9IhLp8TeLnsAA2bimC70pz.jpg", "order": 4}, {"name": "Adam Carolla", "character": "Wynnchel (voice)", "id": 76245, "credit_id": "52fe486b9251416c9108bce9", "cast_id": 14, "profile_path": "/fsbLNn6MudkkSXj78TM8bDifd96.jpg", "order": 5}, {"name": "Alan Tudyk", "character": "King Candy (voice)", "id": 21088, "credit_id": "52fe486b9251416c9108bced", "cast_id": 15, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 6}, {"name": "Mindy Kaling", "character": "Taffyta Muttonfudge (voice)", "id": 125167, "credit_id": "52fe486b9251416c9108bcf1", "cast_id": 16, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 7}, {"name": "Joe Lo Truglio", "character": "Markowski (voice)", "id": 21131, "credit_id": "52fe486b9251416c9108bcf5", "cast_id": 17, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Ed O'Neill", "character": "Mr. Litwak (voice)", "id": 18977, "credit_id": "52fe486b9251416c9108bcf9", "cast_id": 18, "profile_path": "/pw37XR7Rvw50GWZ3c7rEibn8oAi.jpg", "order": 9}, {"name": "Dennis Haysbert", "character": "General Hologram (voice)", "id": 352, "credit_id": "52fe486b9251416c9108bcfd", "cast_id": 19, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 10}, {"name": "Edie McClurg", "character": "Mary (voice)", "id": 3202, "credit_id": "52fe486b9251416c9108bd01", "cast_id": 20, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 11}, {"name": "Jess Harnell", "character": "Don (voice)", "id": 84495, "credit_id": "52fe486b9251416c9108bd05", "cast_id": 22, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 12}, {"name": "Rachael Harris", "character": "Deanna (voice)", "id": 46074, "credit_id": "52fe486b9251416c9108bd09", "cast_id": 23, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 13}, {"name": "Skylar Astin", "character": "Roy (voice)", "id": 73128, "credit_id": "52fe486b9251416c9108bd0d", "cast_id": 24, "profile_path": "/Aj1gqLbzKvcxE61RAR3456RPQ0V.jpg", "order": 14}, {"name": "Roger Craig Smith", "character": "Sonic the Hedgehog (voice)", "id": 75038, "credit_id": "52fe486b9251416c9108bd1d", "cast_id": 28, "profile_path": "/kGBdh92GpLs8gA4OaAL5JCDoTjw.jpg", "order": 15}, {"name": "Kyle Hebert", "character": "Ryu (voice)", "id": 571225, "credit_id": "52fe486b9251416c9108bd21", "cast_id": 29, "profile_path": "/fiuoKaNVkpeVgBvxfEzkzpTxqTY.jpg", "order": 16}, {"name": "Reuben Langdon", "character": "Ken Masters (voice)", "id": 237163, "credit_id": "52fe486b9251416c9108bd25", "cast_id": 30, "profile_path": "/oppPILAmMxJjpP1RBCBd7lfqsaN.jpg", "order": 17}, {"name": "Gerald C. Rivers", "character": "M. Bison (voice)", "id": 1173048, "credit_id": "52fe486b9251416c9108bd29", "cast_id": 31, "profile_path": "/rdaEgSuhSl9QRYh93To5bDjUoh5.jpg", "order": 18}, {"name": "Maurice LaMarche", "character": "Tapper (voice)", "id": 34521, "credit_id": "5443dff9c3a3683dfb005242", "cast_id": 35, "profile_path": "/wMYYNInvXVZ9qMSZHO3AFNOtTnj.jpg", "order": 19}, {"name": "John DiMaggio", "character": "Beard Papa (voice)", "id": 294916, "credit_id": "52fe486b9251416c9108bd31", "cast_id": 33, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 20}, {"name": "Rich Moore", "character": "Zangief (voice)", "id": 165787, "credit_id": "52fe486b9251416c9108bd35", "cast_id": 34, "profile_path": "/9KfA5vZiSk3dBvXHlKAjDTnwlxc.jpg", "order": 21}], "directors": [{"name": "Rich Moore", "department": "Directing", "job": "Director", "credit_id": "52fe486a9251416c9108bca7", "profile_path": "/9KfA5vZiSk3dBvXHlKAjDTnwlxc.jpg", "id": 165787}], "vote_average": 6.9, "runtime": 108}, "70160": {"poster_path": "/iLJdwmzrHFjFwI5lvYAT1gcpRuA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 691210692, "overview": "Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which \u201cTributes\u201d must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she\u2019s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.", "video": false, "id": 70160, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Hunger Games", "tagline": "May The Odds Be Ever In Your Favor.", "vote_count": 5207, "homepage": "http://www.thehungergamesmovie.com/", "belongs_to_collection": {"backdrop_path": "/lWZB4VFSlU292oJ3ZAzAzPi9GU0.jpg", "poster_path": "/cEBNDEMGqvSvU0knEv9Wl3dk5kv.jpg", "id": 131635, "name": "The Hunger Games Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1392170", "adult": false, "backdrop_path": "/sVv4VXJ7Vd9qDPncs0zu2XepWQr.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Color Force", "id": 5420}], "release_date": "2012-03-23", "popularity": 1.8640994028032, "original_title": "The Hunger Games", "budget": 75000000, "cast": [{"name": "Jennifer Lawrence", "character": "Katniss Everdeen", "id": 72129, "credit_id": "52fe47edc3a368484e0e0cdb", "cast_id": 4, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Peeta Mellark", "id": 27972, "credit_id": "52fe47edc3a368484e0e0cdf", "cast_id": 5, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Liam Hemsworth", "character": "Gale Hawthorne", "id": 96066, "credit_id": "52fe47edc3a368484e0e0d37", "cast_id": 35, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Caesar Flickerman", "id": 2283, "credit_id": "52fe47edc3a368484e0e0d3b", "cast_id": 36, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Elizabeth Banks", "character": "Effie Trinket", "id": 9281, "credit_id": "52fe47edc3a368484e0e0d3f", "cast_id": 37, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 4}, {"name": "Woody Harrelson", "character": "Haymitch Abernathy", "id": 57755, "credit_id": "52fe47edc3a368484e0e0d43", "cast_id": 38, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 5}, {"name": "Willow Shields", "character": "Primrose Everdeen", "id": 530025, "credit_id": "52fe47edc3a368484e0e0d47", "cast_id": 39, "profile_path": "/bKMAnqGbyVeiRBG3im1Y33Vtrgx.jpg", "order": 6}, {"name": "Wes Bentley", "character": "Seneca Crane", "id": 8210, "credit_id": "52fe47edc3a368484e0e0d4b", "cast_id": 40, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 7}, {"name": "Paula Malcomson", "character": "Katniss' Mother", "id": 47533, "credit_id": "52fe47edc3a368484e0e0d4f", "cast_id": 41, "profile_path": "/mqiiy0HXExPYaIczPxWFRDGqhwA.jpg", "order": 8}, {"name": "Amandla Stenberg", "character": "Rue", "id": 561869, "credit_id": "52fe47edc3a368484e0e0d53", "cast_id": 42, "profile_path": "/zbsIVoRHTw3VmQ18O7xUaSfIQBE.jpg", "order": 9}, {"name": "Lenny Kravitz", "character": "Cinna", "id": 77069, "credit_id": "52fe47edc3a368484e0e0d57", "cast_id": 43, "profile_path": "/dGtP6VFtjHkvoDaEGktzTC7oDOQ.jpg", "order": 10}, {"name": "Alexander Ludwig", "character": "Cato", "id": 23498, "credit_id": "52fe47edc3a368484e0e0d5b", "cast_id": 44, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 11}, {"name": "Isabelle Fuhrman", "character": "Clove", "id": 77517, "credit_id": "52fe47edc3a368484e0e0d5f", "cast_id": 45, "profile_path": "/bZslEz0bSkA7lxVZfK4zMoNny7I.jpg", "order": 12}, {"name": "Donald Sutherland", "character": "President Snow", "id": 55636, "credit_id": "52fe47edc3a368484e0e0d63", "cast_id": 46, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 13}, {"name": "Leven Rambin", "character": "Glimmer", "id": 207401, "credit_id": "52fe47edc3a368484e0e0d67", "cast_id": 47, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 14}, {"name": "Nelson Ascencio", "character": "Flavius", "id": 197350, "credit_id": "52fe47edc3a368484e0e0d6b", "cast_id": 53, "profile_path": "/xdxsCTSOATrUmXsGUloTOtjIO1J.jpg", "order": 15}, {"name": "Jack Quaid", "character": "Marvel", "id": 1030513, "credit_id": "52fe47edc3a368484e0e0d6f", "cast_id": 56, "profile_path": "/jPBmqN3eNPHBh04AkK5ruGFFcOi.jpg", "order": 16}, {"name": "Mackenzie Lintz", "character": "Tribute Girl District 8", "id": 1286617, "credit_id": "52fe47edc3a368484e0e0d8b", "cast_id": 65, "profile_path": "/2uaeDKbQk8vzDSEuaUqZV14tEfq.jpg", "order": 17}, {"name": "Ian Nelson", "character": "Tribute Boy District 3", "id": 1348957, "credit_id": "54de8e7692514119530021d8", "cast_id": 70, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 18}, {"name": "Dayo Okeniyi", "character": "Thresh", "id": 1030512, "credit_id": "54e9da08c3a3684ea6003317", "cast_id": 71, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 19}], "directors": [{"name": "Gary Ross", "department": "Directing", "job": "Director", "credit_id": "52fe47edc3a368484e0e0ccb", "profile_path": "/dMoUDOJHsGrQcxKpFgbuMWRwiyI.jpg", "id": 23964}], "vote_average": 6.5, "runtime": 142}, "8963": {"poster_path": "/oDJyDX11HW4j565vUjmFagKxDTQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157387195, "overview": "On a US nuclear missile sub, a young first officer stages a mutiny to prevent his trigger happy captain from launching his missiles before confirming his orders to do so.", "video": false, "id": 8963, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Crimson Tide", "tagline": "Danger runs deep.", "vote_count": 137, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112740", "adult": false, "backdrop_path": "/vPqTyOIeqfmQVNJCMwtkAE17uAc.jpg", "production_companies": [{"name": "Hollywood Pictures", "id": 915}, {"name": "Don Simpson/Jerry Bruckheimer Films", "id": 10288}], "release_date": "1995-05-12", "popularity": 0.523579742148454, "original_title": "Crimson Tide", "budget": 55000000, "cast": [{"name": "Gene Hackman", "character": "Captain Frank Ramsey", "id": 193, "credit_id": "52fe44ccc3a36847f80aa7e1", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 0}, {"name": "Denzel Washington", "character": "Lt. Commander Ron Hunter", "id": 5292, "credit_id": "52fe44ccc3a36847f80aa7e5", "cast_id": 3, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Viggo Mortensen", "character": "Lt. Peter 'WEAPS' Ince", "id": 110, "credit_id": "52fe44ccc3a36847f80aa7e9", "cast_id": 4, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 2}, {"name": "James Gandolfini", "character": "Lt. Bobby Dougherty", "id": 4691, "credit_id": "52fe44ccc3a36847f80aa7ed", "cast_id": 5, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 3}, {"name": "Matt Craven", "character": "Lt. Roy Zimmer, USS Alabama Communications Officer", "id": 13525, "credit_id": "52fe44ccc3a36847f80aa815", "cast_id": 12, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 4}, {"name": "George Dzundza", "character": "Chief of the Boat", "id": 10477, "credit_id": "52fe44ccc3a36847f80aa819", "cast_id": 13, "profile_path": "/jyjr4P3uCpfrbwk8ySXNaDpBMbc.jpg", "order": 5}, {"name": "Rocky Carroll", "character": "Lt. Darik Westergaurd", "id": 27448, "credit_id": "52fe44ccc3a36847f80aa81d", "cast_id": 14, "profile_path": "/dSeLlsf3JGkGTH4mqQBKQkgiBT4.jpg", "order": 6}, {"name": "Jaime Gomez", "character": "Officer of the Deck Mahoney", "id": 113387, "credit_id": "52fe44ccc3a36847f80aa821", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Michael Milhoan", "character": "Chief of the Watch Hunsicker", "id": 154295, "credit_id": "52fe44ccc3a36847f80aa825", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Scott Burkholder", "character": "T.S.O. Billy Linkletter", "id": 104503, "credit_id": "52fe44ccc3a36847f80aa829", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Danny Nucci", "character": "Petty Officer First Class Danny Rivetti", "id": 8540, "credit_id": "52fe44ccc3a36847f80aa82d", "cast_id": 18, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 10}, {"name": "Lillo Brancato", "character": "Petty Officer Third Class Russell Vossler", "id": 17917, "credit_id": "52fe44ccc3a36847f80aa831", "cast_id": 19, "profile_path": "/3dwUQEQImGDUDn9Q4fxl06pW8pS.jpg", "order": 11}, {"name": "Eric Bruskotter", "character": "Bennefield", "id": 132729, "credit_id": "52fe44ccc3a36847f80aa835", "cast_id": 20, "profile_path": "/2N2W06SctE3BXExo3EmaPyjPNPO.jpg", "order": 12}, {"name": "Ricky Schroder", "character": "Lt. Paul Hellerman", "id": 76546, "credit_id": "52fe44ccc3a36847f80aa839", "cast_id": 21, "profile_path": "/qjNm7bi1nI0wbqlc7EGNeH9OlKH.jpg", "order": 13}, {"name": "Steve Zahn", "character": "William Barnes", "id": 18324, "credit_id": "52fe44ccc3a36847f80aa83d", "cast_id": 22, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 14}, {"name": "Marcello Thedford", "character": "Lawson", "id": 59300, "credit_id": "52fe44ccc3a36847f80aa841", "cast_id": 23, "profile_path": "/r6AOyQWIi7Zi1WQUXjF8T2HafIR.jpg", "order": 15}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe44ccc3a36847f80aa7dd", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.6, "runtime": 116}, "61979": {"poster_path": "/2VvVlD8YDhn0dlRpi7XJRcl8lt0.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Story of two young people who belong to different worlds. It is the chronicle of a love improbable, almost impossible but inevitable dragging in a frantic journey they discover the first great love. Babi (Maria Valverde) is a girl from upper-middle class that is educated in goodness and innocence . Hache (Mario Casas) is a rebellious boy, impulsive, unconscious, has a appetite for risk and danger embodied in endless fights and illegal motorbike races, the limit of common sense", "video": false, "id": 61979, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Three Steps Above Heaven", "tagline": "", "vote_count": 71, "homepage": "http://www.3msc.es", "belongs_to_collection": {"backdrop_path": "/v0j8pUKeYvlzyQeRVp1bhX0tomm.jpg", "poster_path": null, "id": 141649, "name": "Three Steps Above Heaven Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1648216", "adult": false, "backdrop_path": "/s2oijODraFSK98X691iXUIOYULl.jpg", "production_companies": [{"name": "Antena 3 Films", "id": 6538}], "release_date": "2010-12-03", "popularity": 0.821896993080349, "original_title": "Tres metros sobre el cielo", "budget": 0, "cast": [{"name": "Mar\u00eda Valverde", "character": "Babi", "id": 77122, "credit_id": "52fe466cc3a368484e08fe3b", "cast_id": 1, "profile_path": "/43htKmIzJGfRUJ95a0d7ZVLQFnR.jpg", "order": 0}, {"name": "Mario Casas", "character": "Hache", "id": 82700, "credit_id": "52fe466cc3a368484e08fe3f", "cast_id": 2, "profile_path": "/p2C58kRezc0goIWDMYCn194C78a.jpg", "order": 1}, {"name": "\u00c1lvaro Cervantes", "character": "Pollo", "id": 224874, "credit_id": "52fe466cc3a368484e08fe43", "cast_id": 3, "profile_path": "/uEyDrAtn2sX3xhZ0NdTg7F649AE.jpg", "order": 2}, {"name": "Nerea Camacho", "character": "Dani", "id": 82455, "credit_id": "52fe466cc3a368484e08fe47", "cast_id": 4, "profile_path": "/cLtaC2j8VswIe7UxybuZpQFGbL.jpg", "order": 3}, {"name": "Marina Salas", "character": "Katina", "id": 234619, "credit_id": "52fe466cc3a368484e08fe4b", "cast_id": 5, "profile_path": "/3LGs4MiL9RzD6BKsr7teioJ2dqK.jpg", "order": 4}, {"name": "Diego Mart\u00edn", "character": "Alejandro", "id": 126771, "credit_id": "52fe466cc3a368484e08fe4f", "cast_id": 6, "profile_path": "/4WKXdMHCmjgEleKBFccr7KWW3Du.jpg", "order": 5}, {"name": "Cristina Plazas", "character": "Rafaela", "id": 234620, "credit_id": "52fe466cc3a368484e08fe53", "cast_id": 7, "profile_path": "/4PgjV2Sw53oRHDhRZsHD4ah8RvI.jpg", "order": 6}, {"name": "Andrea Duro", "character": "Mara", "id": 572443, "credit_id": "553570b992514125dc004396", "cast_id": 11, "profile_path": "/bxHGpkYavtSc21udkJNbujwpkyq.jpg", "order": 7}], "directors": [{"name": "Fernando Gonz\u00e1lez Molina", "department": "Directing", "job": "Director", "credit_id": "52fe466cc3a368484e08fe59", "profile_path": null, "id": 82724}], "vote_average": 7.5, "runtime": 122}, "127517": {"poster_path": "/kTLcEBTPzptlBP8auLRlK8KTKvV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3428048, "overview": "Disconnect interweaves multiple storylines about people searching for human connection in today\u2019s wired world. Through poignant turns that are both harrowing and touching, the stories intersect with surprising twists that expose a shocking reality into our daily use of technology that mediates and defines our relationships and ultimately our lives.", "video": false, "id": 127517, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Disconnect", "tagline": "Look up.", "vote_count": 148, "homepage": "http://www.disconnectthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1433811", "adult": false, "backdrop_path": "/asTq74kXjslx8A13qDTVdzvyJ8.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "LD Entertainment", "id": 10285}, {"name": "Wonderful Films PLC", "id": 11140}, {"name": "Liddell Entertainment", "id": 8533}], "release_date": "2012-09-11", "popularity": 1.19717707030878, "original_title": "Disconnect", "budget": 0, "cast": [{"name": "Jason Bateman", "character": "Rich Boyd", "id": 23532, "credit_id": "52fe4afcc3a368484e1715db", "cast_id": 3, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Hope Davis", "character": "Lydia Boyd", "id": 15250, "credit_id": "52fe4afcc3a368484e1715df", "cast_id": 4, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 1}, {"name": "Frank Grillo", "character": "Mike Dixon", "id": 81685, "credit_id": "52fe4afcc3a368484e1715e3", "cast_id": 5, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 2}, {"name": "Paula Patton", "character": "Cindy Hull", "id": 52851, "credit_id": "52fe4afcc3a368484e1715e7", "cast_id": 6, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 3}, {"name": "Michael Nyqvist", "character": "Stephen Schumacher", "id": 6283, "credit_id": "52fe4afcc3a368484e1715eb", "cast_id": 7, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 4}, {"name": "Andrea Riseborough", "character": "Nina Dunham", "id": 127558, "credit_id": "52fe4afcc3a368484e1715ef", "cast_id": 8, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 5}, {"name": "Alexander Skarsg\u00e5rd", "character": "Derek Hull", "id": 28846, "credit_id": "52fe4afcc3a368484e1715f3", "cast_id": 9, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 6}, {"name": "Max Thieriot", "character": "Kyle", "id": 41883, "credit_id": "52fe4afcc3a368484e1715f7", "cast_id": 10, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 7}, {"name": "Jonah Bobo", "character": "Ben Boyd", "id": 51297, "credit_id": "52fe4afcc3a368484e1715fb", "cast_id": 11, "profile_path": "/ujDjz3FtyCA3h2vF0rouoqatGNR.jpg", "order": 8}, {"name": "Colin Ford", "character": "Jason Dixon", "id": 74539, "credit_id": "52fe4afcc3a368484e1715ff", "cast_id": 12, "profile_path": "/6S1dOJnIuaKAXoVxTePNOQJbsFU.jpg", "order": 9}, {"name": "Haley Ramm", "character": "Abby Boyd", "id": 61555, "credit_id": "52fe4afcc3a368484e171603", "cast_id": 13, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 10}, {"name": "Norbert Leo Butz", "character": "Peter", "id": 52020, "credit_id": "52fe4afcc3a368484e17161f", "cast_id": 18, "profile_path": "/yYonYgBHg9ocOWWNJnQaEtmMhrq.jpg", "order": 11}, {"name": "Kasi Lemmons", "character": "Roberta Washington", "id": 51864, "credit_id": "52fe4afcc3a368484e171623", "cast_id": 19, "profile_path": "/dO8h85dpcoVFkKwa8MMOacRro4F.jpg", "order": 12}, {"name": "John Sharian", "character": "Ross Lynd", "id": 36900, "credit_id": "52fe4afcc3a368484e171627", "cast_id": 20, "profile_path": "/o3XD2Aeyzhz2CYyzM1k2qkXKajD.jpg", "order": 13}, {"name": "Aviad Bernstein", "character": "Frye", "id": 1273243, "credit_id": "52fe4afcc3a368484e17162b", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Teresa Calentano", "character": "Maria", "id": 1273244, "credit_id": "52fe4afcc3a368484e17162f", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Marc Jacobs", "character": "Harvey", "id": 1053305, "credit_id": "52fe4afcc3a368484e171633", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Cole Mohr", "character": "Cole", "id": 1273245, "credit_id": "52fe4afcc3a368484e171637", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Kevin Csolak", "character": "Shane", "id": 1094567, "credit_id": "52fe4afcc3a368484e17163b", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Antonella Lentini", "character": "Cassie", "id": 1273247, "credit_id": "52fe4afcc3a368484e17163f", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Tessa Albertson", "character": "Isabella", "id": 1273248, "credit_id": "52fe4afcc3a368484e171643", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Erin Wilhelmi", "character": "Tracy", "id": 1053419, "credit_id": "52fe4afcc3a368484e171647", "cast_id": 28, "profile_path": "/81JQCHJyMJy55ypRBj2y6C1HrJF.jpg", "order": 21}], "directors": [{"name": "Henry Alex Rubin", "department": "Directing", "job": "Director", "credit_id": "52fe4afcc3a368484e1715d1", "profile_path": null, "id": 82839}], "vote_average": 7.0, "runtime": 115}, "4638": {"poster_path": "/5Jx6s6VXnunh8wCLgR0YgjwSgjh.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 79536889, "overview": "Top London cop PC Nicholas Angel is good. Too good. And to stop the rest of his team from looking bad, he is reassigned to the quiet town of Sandford. Paired with simple country cop Danny, everything seems quiet until two actors are found decapitated. It is addressed as an accident, but Angel isn't going to accept that, especially when more and more people turn up dead.", "video": false, "id": 4638, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Hot Fuzz", "tagline": "Big cops. Small town. Moderate violence.", "vote_count": 607, "homepage": "http://www.universalstudiosentertainment.com/hot-fuzz/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425112", "adult": false, "backdrop_path": "/jYhKFJng6KOot8lopXkgofsTpgM.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}, {"name": "Working Title Films", "id": 10163}, {"name": "Big Talk Productions", "id": 443}, {"name": "GAGA", "id": 3656}], "release_date": "2007-02-14", "popularity": 1.03256157108599, "original_title": "Hot Fuzz", "budget": 8000000, "cast": [{"name": "Simon Pegg", "character": "Nicholas Angel", "id": 11108, "credit_id": "52fe43d0c3a36847f8071c17", "cast_id": 40, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Nick Frost", "character": "PC Danny Butterman", "id": 11109, "credit_id": "52fe43d0c3a36847f8071c1b", "cast_id": 41, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 1}, {"name": "Timothy Dalton", "character": "Simon Skinner", "id": 10669, "credit_id": "52fe43d0c3a36847f8071c1f", "cast_id": 42, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Inspector Frank Butterman", "id": 388, "credit_id": "52fe43d0c3a36847f8071c23", "cast_id": 43, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Paddy Considine", "character": "DS Andy Wainwright", "id": 14887, "credit_id": "52fe43d0c3a36847f8071c27", "cast_id": 44, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 4}, {"name": "Rafe Spall", "character": "DC Andy Cartwright", "id": 28847, "credit_id": "52fe43d0c3a36847f8071c2b", "cast_id": 45, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 5}, {"name": "Adam Buxton", "character": "Tim Messenger", "id": 155532, "credit_id": "52fe43d0c3a36847f8071c2f", "cast_id": 46, "profile_path": "/zL31NlBBKL1NTjR48h610by5Rld.jpg", "order": 6}, {"name": "Kevin Eldon", "character": "Sergeant Tony Fisher", "id": 39185, "credit_id": "52fe43d0c3a36847f8071c33", "cast_id": 47, "profile_path": "/uQwQKDiByfdVXVCIEXbCgClVPQg.jpg", "order": 7}, {"name": "Olivia Colman", "character": "PC Doris Thatcher", "id": 39187, "credit_id": "52fe43d0c3a36847f8071c37", "cast_id": 48, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 8}, {"name": "Edward Woodward", "character": "Tom Weaver", "id": 39188, "credit_id": "52fe43d0c3a36847f8071c3b", "cast_id": 49, "profile_path": "/7fjj2SwxZ3gev9JPwYfVpgoeUFR.jpg", "order": 9}, {"name": "Bill Nighy", "character": "Met Chief Inspector", "id": 2440, "credit_id": "52fe43d0c3a36847f8071c3f", "cast_id": 50, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 10}, {"name": "Paul Freeman", "character": "Rev. Philip Shooter", "id": 652, "credit_id": "52fe43d0c3a36847f8071c43", "cast_id": 51, "profile_path": "/gWRX09kyrzTFFehwE53cJtps2fx.jpg", "order": 11}, {"name": "Stuart Wilson", "character": "Dr. Robin Hatcher", "id": 14344, "credit_id": "52fe43d0c3a36847f8071c47", "cast_id": 52, "profile_path": "/zHNgIIShvznjpg8xhHHuOuHieQB.jpg", "order": 12}, {"name": "Lucy Punch", "character": "Eve Draper", "id": 66446, "credit_id": "53408e4d0e0a2679a1000a2f", "cast_id": 53, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 13}, {"name": "Rory McCann", "character": "Michael \"Lurch\" Armstrong", "id": 3075, "credit_id": "546eb722c3a3682fa4000c94", "cast_id": 54, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 14}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe43d0c3a36847f8071bcb", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 7.0, "runtime": 121}, "773": {"poster_path": "/69bJxkGA88RNBOFquSmItqCj3LN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100320452, "overview": "Little Miss Sunshine is a comedy about a family of six who are all having a mental breakdown at the same time. To ease their mental lows they decide to take a cross country road trip to a \u201cLittle Miss Sunshine\u201d contest that their daughter has qualified for. An Academy Award winning comedy with memorable performances from its all actors.", "video": false, "id": 773, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Little Miss Sunshine", "tagline": "Everyone just pretend to be normal.", "vote_count": 405, "homepage": "http://www.foxsearchlight.com/littlemisssunshine2/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0449059", "adult": false, "backdrop_path": "/2II5wbEvodIXLEGPAkmkBe60rYD.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Big Beach Films", "id": 12808}, {"name": "Bona Fide Productions", "id": 2570}, {"name": "Deep River Productions", "id": 2646}], "release_date": "2006-07-26", "popularity": 0.904582955504413, "original_title": "Little Miss Sunshine", "budget": 8000000, "cast": [{"name": "Abigail Breslin", "character": "Olive", "id": 17140, "credit_id": "52fe4274c3a36847f80200bf", "cast_id": 4, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 0}, {"name": "Toni Collette", "character": "Sheryl", "id": 3051, "credit_id": "52fe4274c3a36847f80200c3", "cast_id": 5, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 1}, {"name": "Greg Kinnear", "character": "Richard", "id": 17141, "credit_id": "52fe4274c3a36847f80200c7", "cast_id": 6, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 2}, {"name": "Paul Dano", "character": "Dwayne", "id": 17142, "credit_id": "52fe4274c3a36847f80200cb", "cast_id": 7, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Grandpa", "id": 1903, "credit_id": "52fe4274c3a36847f80200cf", "cast_id": 8, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Steve Carell", "character": "Frank", "id": 4495, "credit_id": "52fe4274c3a36847f80200d3", "cast_id": 9, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 5}, {"name": "Dean Norris", "character": "State Trooper McCleary", "id": 14329, "credit_id": "54910f4fc3a3684654000a83", "cast_id": 22, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 6}, {"name": "Bryan Cranston", "character": "Stan Grossman", "id": 17419, "credit_id": "54910f6ac3a368465a000abb", "cast_id": 23, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 7}, {"name": "Marc Turtletaub", "character": "Doctor #1", "id": 4857, "credit_id": "54a3c06ac3a368642800267c", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Jill Talley", "character": "Cindy", "id": 17414, "credit_id": "54a3c08ac3a368554200ec31", "cast_id": 25, "profile_path": "/1a6pmvxeBa7aWMJIgwxwRsoi7b3.jpg", "order": 9}, {"name": "Brenda Canela", "character": "Diner Waitress", "id": 17415, "credit_id": "54a3c0a99251414e2800c466", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Julio Oscar Mechoso", "character": "Mechanic", "id": 17413, "credit_id": "54a3c0c09251414d2700bf08", "cast_id": 27, "profile_path": "/gilHqoYdYoYMcVIK81QiqOeJcc6.jpg", "order": 11}], "directors": [{"name": "Jonathan Dayton", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f80200af", "profile_path": null, "id": 16959}, {"name": "Valerie Faris", "department": "Directing", "job": "Director", "credit_id": "52fe4274c3a36847f80200b5", "profile_path": null, "id": 16960}], "vote_average": 7.0, "runtime": 102}, "4643": {"poster_path": "/8hvMyM2SkijotayC1q5sQwi36qD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55011732, "overview": "A high school swim champion with a troubled past enrolls in the U.S. Coast Guard's \"A\" School, where legendary rescue swimmer Ben Randall teaches him some hard lessons about loss, love, and self-sacrifice", "video": false, "id": 4643, "genres": [{"id": 28, "name": "Action"}], "title": "The Guardian", "tagline": "How Do You Decide Who Lives Or Who Dies?", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0406816", "adult": false, "backdrop_path": "/iGjj8r38g4zqCd0h8LK1MrDlsBz.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Beacon Pictures", "id": 10157}, {"name": "Contrafilm", "id": 1836}, {"name": "Firm Films", "id": 1838}, {"name": "Eyetronics", "id": 15763}], "release_date": "2006-09-28", "popularity": 0.39433863754626, "original_title": "The Guardian", "budget": 70000000, "cast": [{"name": "Kevin Costner", "character": "Ben Randall", "id": 1269, "credit_id": "52fe43d1c3a36847f8071dab", "cast_id": 2, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Jake Fischer", "id": 18976, "credit_id": "52fe43d1c3a36847f8071daf", "cast_id": 3, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Sela Ward", "character": "Helen Randall", "id": 6068, "credit_id": "52fe43d1c3a36847f8071db3", "cast_id": 4, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 2}, {"name": "Melissa Sagemiller", "character": "Emily Thomas", "id": 41555, "credit_id": "52fe43d1c3a36847f8071db7", "cast_id": 5, "profile_path": "/hNaBo3v9GYnB5yb06OECVAsSoEz.jpg", "order": 3}, {"name": "Omari Hardwick", "character": "Carl Billings", "id": 41556, "credit_id": "52fe43d1c3a36847f8071dbb", "cast_id": 6, "profile_path": "/gW4eSrYlyFhuC4QrMD0whDxA9DS.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Captain William Hadley", "id": 6574, "credit_id": "52fe43d1c3a36847f8071dbf", "cast_id": 7, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Neal McDonough", "character": "Skinner", "id": 2203, "credit_id": "52fe43d1c3a36847f8071e35", "cast_id": 27, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 6}, {"name": "Derek Adams", "character": "Lapp", "id": 145538, "credit_id": "52fe43d1c3a36847f8071e39", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Bryce Cass", "character": "Manny", "id": 145539, "credit_id": "52fe43d1c3a36847f8071e3d", "cast_id": 29, "profile_path": "/h6fRXyEqYmyvVLWNF0YhvowAnHp.jpg", "order": 8}, {"name": "Benny Ciaramello", "character": "Perada", "id": 145540, "credit_id": "52fe43d1c3a36847f8071e41", "cast_id": 30, "profile_path": "/8WkSZJyN5XVxkCJuFUSZwAQmO6R.jpg", "order": 9}, {"name": "Shelby Fenner", "character": "Cate Lindsey", "id": 145541, "credit_id": "52fe43d1c3a36847f8071e45", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Peter Gail", "character": "Danny Doran", "id": 145542, "credit_id": "52fe43d1c3a36847f8071e49", "cast_id": 32, "profile_path": "/gPEIRubSIW9nz4H42Kmt2V4yOen.jpg", "order": 11}, {"name": "Damon Lipari", "character": "Bennett", "id": 145543, "credit_id": "52fe43d1c3a36847f8071e4d", "cast_id": 33, "profile_path": "/175kwUszGDwDR9nTZjqaIi7S7KT.jpg", "order": 12}, {"name": "Scott Mueller", "character": "Reeves", "id": 145544, "credit_id": "52fe43d1c3a36847f8071e51", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Travis Willingham", "character": "Finley", "id": 145545, "credit_id": "52fe43d1c3a36847f8071e55", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe43d1c3a36847f8071da7", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.9, "runtime": 139}, "21032": {"poster_path": "/hruX9txwuQzEeULoXn4ZZ0cWAey.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An outcast half-wolf risks his life to prevent a deadly epidemic from ravaging Nome, Alaska.", "video": false, "id": 21032, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Balto", "tagline": "Part Dog. Part Wolf. All Hero.", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9VM5LiJV0bGb1st1KyHA3cVnO2G.jpg", "poster_path": "/w0ZgH6Lgxt2bQYnf1ss74UvYftm.jpg", "id": 117693, "name": "Balto Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112453", "adult": false, "backdrop_path": "/fkxHaPJaB35wnoUC7glF16W3lWH.jpg", "production_companies": [{"name": "Amblimation", "id": 4105}, {"name": "Universal Studios", "id": 13}], "release_date": "1995-12-22", "popularity": 0.25548165991954, "original_title": "Balto", "budget": 0, "cast": [{"name": "Kevin Bacon", "character": "Balto (voice)", "id": 4724, "credit_id": "52fe4409c3a368484e00bb65", "cast_id": 1, "profile_path": "/p1uCaOjxSC1xS5TgmD4uloAkbLd.jpg", "order": 0}, {"name": "Bob Hoskins", "character": "Boris the Goose (voice)", "id": 382, "credit_id": "52fe4409c3a368484e00bb69", "cast_id": 2, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 1}, {"name": "Bridget Fonda", "character": "Jenna (voice)", "id": 2233, "credit_id": "52fe4409c3a368484e00bb8b", "cast_id": 8, "profile_path": "/vQc0Y0QBhtXOXBBMMBHy3HfHIsU.jpg", "order": 2}, {"name": "Jim Cummings", "character": "Steele the Sled Dog (voice)", "id": 12077, "credit_id": "52fe4409c3a368484e00bb8f", "cast_id": 9, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 3}, {"name": "Phil Collins", "character": "Muk and Luk (voice)", "id": 110001, "credit_id": "52fe4409c3a368484e00bb93", "cast_id": 10, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 4}, {"name": "Miriam Margolyes", "character": "Grandma Rosy (voice)", "id": 6199, "credit_id": "53071321c3a3680ae8000777", "cast_id": 11, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 5}], "directors": [{"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4409c3a368484e00bb6f", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 6.8, "runtime": 78}, "45610": {"poster_path": "/1gEP9ZC7jpSiuMWNfbOfXTWWF5n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2527904, "overview": "The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.", "video": false, "id": 45610, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Machine Gun Preacher", "tagline": "Hope is the greatest weapon of all", "vote_count": 81, "homepage": "http://www.machinegunpreacher.org/movie/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1586752", "adult": false, "backdrop_path": "/hnn2rJedWAWtmWroJ2xEdO33JPe.jpg", "production_companies": [{"name": "Virgin Produced", "id": 8852}, {"name": "Relativity Media", "id": 7295}, {"name": "Mpower Pictures", "id": 5294}, {"name": "Apparatus Productions", "id": 11956}, {"name": "GG Filmz", "id": 11957}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "ITS Capital", "id": 11958}, {"name": "Merlina Entertainment", "id": 11959}, {"name": "MGP Productions", "id": 11960}, {"name": "Moonlighting Films", "id": 9137}, {"name": "Safady Entertainment", "id": 11961}], "release_date": "2011-09-23", "popularity": 0.619268329051808, "original_title": "Machine Gun Preacher", "budget": 30000000, "cast": [{"name": "Gerard Butler", "character": "Sam Childers", "id": 17276, "credit_id": "52fe46cbc3a36847f8112837", "cast_id": 12, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Lynn", "id": 11705, "credit_id": "52fe46cbc3a36847f8112807", "cast_id": 2, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Justin Michael Brandt", "character": "Teenage Boy", "id": 127129, "credit_id": "52fe46cbc3a36847f811280b", "cast_id": 3, "profile_path": "/5zqOLngigabOdFEj4Q910pKwJjE.jpg", "order": 2}, {"name": "Richard Goteri", "character": "Gun Shop Owner", "id": 133284, "credit_id": "52fe46cbc3a36847f811280f", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Peter Carey", "character": "Bill Wallace", "id": 64873, "credit_id": "52fe46cbc3a36847f8112813", "cast_id": 5, "profile_path": "/4GoUmDPToneKH9bccfbD8vpubTQ.jpg", "order": 4}, {"name": "Brett Wagner", "character": "Ben Hobbs", "id": 60081, "credit_id": "52fe46cbc3a36847f8112817", "cast_id": 6, "profile_path": "/p3ufSavK8iDa5BEKoZHyenhY2Lq.jpg", "order": 5}, {"name": "Barbara Coven", "character": "Shannon Wallace", "id": 133286, "credit_id": "52fe46cbc3a36847f811281b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Kathy Baker", "character": "Daisy", "id": 1907, "credit_id": "52fe46cbc3a36847f811283b", "cast_id": 13, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 7}, {"name": "Michael Shannon", "character": "Donnie", "id": 335, "credit_id": "52fe46cbc3a36847f811283f", "cast_id": 14, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 8}, {"name": "Ryann Campos", "character": "Paige #1", "id": 1053669, "credit_id": "52fe46cbc3a36847f81128df", "cast_id": 41, "profile_path": null, "order": 9}, {"name": "Madeline Carroll", "character": "Paige #2", "id": 62564, "credit_id": "52fe46cbc3a36847f81128e3", "cast_id": 42, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 10}, {"name": "Souleymane Sy Savane", "character": "Deng", "id": 87466, "credit_id": "52fe46cbc3a36847f81128e7", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "Grant R. Krause", "character": "Billy / Contractor", "id": 1125218, "credit_id": "52fe46cbc3a36847f81128eb", "cast_id": 44, "profile_path": null, "order": 12}, {"name": "Reavis Graham", "character": "Pastor Krause", "id": 1125219, "credit_id": "52fe46cbc3a36847f81128ef", "cast_id": 45, "profile_path": null, "order": 13}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe46cbc3a36847f8112821", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.5, "runtime": 129}, "209451": {"poster_path": "/aFr2hkGQT2egYAQd0A74RIZeVnz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67347013, "overview": "From director Clint Eastwood comes the big-screen version of the Tony Award-winning musical Jersey Boys. The film tells the story of four young men from the wrong side of the tracks in New Jersey who came together to form the iconic 1960s rock group The Four Seasons. The story of their trials and triumphs are accompanied by the songs that influenced a generation, including \u201cSherry,\u201d \u201cBig Girls Don\u2019t Cry,\u201d \u201cWalk Like a Man,\u201d \u201cRag Doll,\u201d and many more.", "video": false, "id": 209451, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Jersey Boys", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1742044", "adult": false, "backdrop_path": "/zLYEkkGA5jY8eJ6Nrdf9c8hYvbs.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2014-06-20", "popularity": 0.558611195820452, "original_title": "Jersey Boys", "budget": 40000000, "cast": [{"name": "Christopher Walken", "character": "Angelo \u201cGyp\u201d DeCarlo", "id": 4690, "credit_id": "52fe4d66c3a368484e1e70b9", "cast_id": 5, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 0}, {"name": "Vincent Piazza", "character": "Tommy Devito", "id": 85924, "credit_id": "52fe4d66c3a368484e1e70b5", "cast_id": 2, "profile_path": "/fCXXe8Lp4SU65wmEJYSTaJhdYSC.jpg", "order": 1}, {"name": "Freya Tingley", "character": "Francine Valli", "id": 526727, "credit_id": "52fe4d66c3a368484e1e70bd", "cast_id": 6, "profile_path": "/nPhECps8X5SsFyNitQpByxaYNEp.jpg", "order": 2}, {"name": "James Madio", "character": "Stosh", "id": 65395, "credit_id": "52fe4d66c3a368484e1e70c1", "cast_id": 7, "profile_path": "/3s32FSsr95w6nGtoH5f9sPk1mPw.jpg", "order": 3}, {"name": "Sean Whalen", "character": "Engneer", "id": 9996, "credit_id": "52fe4d66c3a368484e1e70c5", "cast_id": 8, "profile_path": "/lyuTKNHGCZueuIu7iBt6COzqIBj.jpg", "order": 4}, {"name": "Kathrine Narducci", "character": "Mary Rinaldi", "id": 17920, "credit_id": "52fe4d66c3a368484e1e70c9", "cast_id": 9, "profile_path": "/96Ni5pAILMiSAARvej9IKd5w8R8.jpg", "order": 5}, {"name": "Francesca Eastwood", "character": "Waitress", "id": 1274513, "credit_id": "52fe4d66c3a368484e1e70cd", "cast_id": 10, "profile_path": "/jTacAmfFuwyWtCqbrTyR24UJMIi.jpg", "order": 6}, {"name": "Mike Doyle", "character": "Bob Crewe", "id": 27107, "credit_id": "52fe4d66c3a368484e1e70d1", "cast_id": 11, "profile_path": "/lvts8lJTazcr8ipvPjjxCkpsuz9.jpg", "order": 7}, {"name": "Steve Schirripa", "character": "Vito", "id": 97188, "credit_id": "52fe4d66c3a368484e1e70d5", "cast_id": 12, "profile_path": "/qz3X10hyuKC0Cn4ni4SQhfWnB9I.jpg", "order": 8}, {"name": "Barry Livingston", "character": "Accountant", "id": 75344, "credit_id": "52fe4d66c3a368484e1e70d9", "cast_id": 13, "profile_path": "/mttrxc8jZnd2y0qAmdSKJpSUDNe.jpg", "order": 9}, {"name": "Alexis Krause", "character": "Party Girl", "id": 1260031, "credit_id": "52fe4d66c3a368484e1e70dd", "cast_id": 14, "profile_path": "/2TevMyemwXBJzG5sUJqP6bGQbq.jpg", "order": 10}, {"name": "Jeremy Luke", "character": "Donnie", "id": 112879, "credit_id": "52fe4d66c3a368484e1e70e1", "cast_id": 15, "profile_path": "/gvBicS8kZjWZ4TFChR7LmC9k3YT.jpg", "order": 11}, {"name": "Silvia Kal", "character": "Producer's Wife", "id": 1274514, "credit_id": "52fe4d66c3a368484e1e70e5", "cast_id": 16, "profile_path": "/lGUvRcmOTAQceP8eWL80Ox9Tg36.jpg", "order": 12}, {"name": "John Lloyd Young", "character": "Frank Valli", "id": 1218154, "credit_id": "52fe4d66c3a368484e1e70e9", "cast_id": 17, "profile_path": "/eyqyYM5tWJJNfhdw5cJqZLzHZ7S.jpg", "order": 13}, {"name": "Erich Bergen", "character": "Bob Gaudio", "id": 1192928, "credit_id": "53bbd4b00e0a261971002b8c", "cast_id": 23, "profile_path": "/A9em5uweBKUZSMzFNovJSbFhusG.jpg", "order": 14}, {"name": "Michael Lomenda", "character": "Nick Massi", "id": 1066732, "credit_id": "544f41430e0a263a0400154b", "cast_id": 24, "profile_path": "/bzRFubaCT28LGlFLtt9tNfpd0tR.jpg", "order": 15}, {"name": "Johnny Cannizzaro", "character": "Nick DeVito", "id": 1378648, "credit_id": "544f42490e0a263a0700151f", "cast_id": 25, "profile_path": "/pKhhCgG6SYJDZa2RHR7IHuP23kf.jpg", "order": 16}, {"name": "Joey Russo", "character": "Joey", "id": 1058023, "credit_id": "544f45bcc3a368023600141c", "cast_id": 26, "profile_path": "/woADiZIPxy3e3kPhzRoGZXjDs8x.jpg", "order": 17}, {"name": "Billy Gardell", "character": "Our Sons Owner", "id": 64344, "credit_id": "544f46ba0e0a263a1000151f", "cast_id": 27, "profile_path": "/6GB2WYCGSJDPbKjjK0zot8nxJe9.jpg", "order": 18}, {"name": "John Griffin", "character": "Billy Dixon", "id": 1227898, "credit_id": "544f47fec3a3680242001634", "cast_id": 28, "profile_path": "/nf1bEQOsn6939oJaoIRv9zUSknk.jpg", "order": 19}, {"name": "Elizabeth Hunter", "character": "Francine Valli jeune", "id": 1378650, "credit_id": "544f4b600e0a263a1800148c", "cast_id": 29, "profile_path": "/8ezB6BVqpMWLqGyykDqewRy2z0h.jpg", "order": 20}, {"name": "Lacey Hannan", "character": "Angela", "id": 1122245, "credit_id": "544f4dafc3a36802420016a6", "cast_id": 30, "profile_path": "/xDlEvsYiRncxgLx3NopoUTgsatJ.jpg", "order": 21}, {"name": "Ren\u00e9e Marino", "character": "Mary Delgado", "id": 1378651, "credit_id": "544f4e39c3a368023c001511", "cast_id": 31, "profile_path": "/dcv8Jznwt5h5XAULZMqa1OqQ3y0.jpg", "order": 22}, {"name": "Erica Piccininni", "character": "Lorraine", "id": 966750, "credit_id": "544f4fc30e0a263a07001646", "cast_id": 32, "profile_path": "/uU16dtymtiYhQIL5tTA4k0wFZZP.jpg", "order": 23}, {"name": "Steve Monroe", "character": "Barry Belson", "id": 131125, "credit_id": "544f50a0c3a3680245001501", "cast_id": 33, "profile_path": "/1DSgyYqbUk7wzHbvmLX6eGJYWz7.jpg", "order": 24}, {"name": "Rob Marnell", "character": "Joe Long", "id": 1378656, "credit_id": "544f513fc3a368023600151c", "cast_id": 34, "profile_path": "/27paNOlZN65LcJuGyYtPuR1WJqB.jpg", "order": 25}, {"name": "Troy Grant", "character": "Ed Sullivan", "id": 1378661, "credit_id": "544f54aac3a3680242001755", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Grant Roberts", "character": "Johnny", "id": 1378662, "credit_id": "544f555dc3a368532b0015f8", "cast_id": 36, "profile_path": "/bADsqOjiv40iK98myH7w0Qz64qZ.jpg", "order": 27}, {"name": "Kara Pacitto", "character": "Bubble-Head #2", "id": 1378663, "credit_id": "544f5698c3a36802390015a7", "cast_id": 37, "profile_path": "/eEXJxeaFm5qTGHkekj0uhpsZgY6.jpg", "order": 28}, {"name": "Michael Patrick McGill", "character": "Officier Mike", "id": 154816, "credit_id": "544f580a0e0a263a180015c4", "cast_id": 38, "profile_path": "/9M7pqxB3NZm7zVrpGqFkFI25nrw.jpg", "order": 29}, {"name": "Nancy La Scala", "character": "une femme passionn\u00e9e d'art", "id": 191435, "credit_id": "544f5988c3a36802390015e8", "cast_id": 39, "profile_path": "/8sTP57E1B1cgRMQ1ObtpxQkajuc.jpg", "order": 30}, {"name": "Clint Ward", "character": "Officier Stanley", "id": 1378664, "credit_id": "544f5ab4c3a3680239001603", "cast_id": 40, "profile_path": "/bEVAke4LjpBs6Zd9EYwYr6nM51p.jpg", "order": 31}, {"name": "Jackie Seiden", "character": "les anges", "id": 1378667, "credit_id": "544f5c770e0a263a0a0015ee", "cast_id": 41, "profile_path": "/xK7kL7qmNCXeAAAi9nU8RPcG6qV.jpg", "order": 32}, {"name": "Matt Nolan", "character": "un ing\u00e9nieur", "id": 159720, "credit_id": "544f5f700e0a2601d8001611", "cast_id": 42, "profile_path": "/9zUwjviDEOv8KCBHWA0x2RzmQTL.jpg", "order": 33}, {"name": "Meagan Holder", "character": "la chanteuse de Jazz", "id": 1378683, "credit_id": "544f61b20e0a263a0a001668", "cast_id": 43, "profile_path": "/2iab9IkN7Ge5Bg4yVCktyfLICGr.jpg", "order": 34}, {"name": "Joe Abraham", "character": "un chanteur Rockabilly", "id": 1378685, "credit_id": "544f62c90e0a263a0a00167b", "cast_id": 44, "profile_path": "/pX18o0T66I2QhxoTI3yT5owWl4M.jpg", "order": 35}, {"name": "Phil Abrams", "character": "les maisons de disques", "id": 167139, "credit_id": "544f64410e0a26134c001661", "cast_id": 45, "profile_path": "/gCbgGno1RsqXouLH9iNsf9cR0Cz.jpg", "order": 36}, {"name": "Joe Howard", "character": "un pr\u00eatre", "id": 82581, "credit_id": "544f6621c3a3680233001691", "cast_id": 46, "profile_path": "/zq7ljhNfZAdmerqRecBGm0FDEca.jpg", "order": 37}, {"name": "Katelyn Pacitto", "character": "Bubble-Head #1", "id": 1214866, "credit_id": "544f6853c3a36802450016f5", "cast_id": 47, "profile_path": "/vXRjdwEU7c39ACnYLlt4vWKQ2uV.jpg", "order": 38}, {"name": "Ben Rauch", "character": "une personne de New Season", "id": 181398, "credit_id": "544f6aa10e0a263a0a001757", "cast_id": 48, "profile_path": "/g7zidc0Shyr3GTtclTgzE5NZbhp.jpg", "order": 39}, {"name": "Bill Watterson", "character": "un musicien", "id": 1141000, "credit_id": "544f6bf1c3a368023c0017d1", "cast_id": 49, "profile_path": "/sB8Or9TlKnV5Fv9WinhZsj4TcDS.jpg", "order": 40}, {"name": "Annika Noelle", "character": "la petite-amie de Nick", "id": 1378718, "credit_id": "544f6c3b0e0a2601d8001746", "cast_id": 50, "profile_path": "/ePdSqvJIQ8x4Allx6Zb85YMVXED.jpg", "order": 41}, {"name": "Derek Easley", "character": "Biker Inmate", "id": 1378731, "credit_id": "544f6d77c3a36802360017d4", "cast_id": 51, "profile_path": "/cKj023lxJrV82TD2kCMKteiLpoH.jpg", "order": 42}, {"name": "Kim Gatewood", "character": "les anges", "id": 108753, "credit_id": "544f6ff0c3a368532b00184e", "cast_id": 52, "profile_path": "/pKDk44AFMJ6C9V6O4iJtJVkTO7X.jpg", "order": 43}, {"name": "Alexandra Ruddy", "character": "Waitress", "id": 1378735, "credit_id": "544f70340e0a263a07001952", "cast_id": 53, "profile_path": "/hXr0qgdA3kmlba45GaFIVfTqpgv.jpg", "order": 44}, {"name": "Keith Loneker", "character": "Knuckles", "id": 54714, "credit_id": "544f7351c3a36802330017cd", "cast_id": 54, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 45}, {"name": "Marco Tazioli", "character": "le petit-ami mauvais gar\u00e7on de Francine", "id": 1378737, "credit_id": "544f743a0e0a263a0a00183c", "cast_id": 55, "profile_path": "/vzdbIxcnrKWrgKfC4s3hpQhgQV6.jpg", "order": 46}, {"name": "David Newton", "character": "le rendez-vous de Mary", "id": 1378738, "credit_id": "544f75d10e0a2639fe001a46", "cast_id": 56, "profile_path": "/yeSxcxT4v57XoroNbfOIKI3CAC6.jpg", "order": 47}, {"name": "Donnie Kehr", "character": "Norm Waxman", "id": 1378739, "credit_id": "544f77840e0a2639fe001a6a", "cast_id": 57, "profile_path": "/uXQiRUw95y9YNxCKpgpYSbKGaHn.jpg", "order": 48}, {"name": "Scott Vance", "character": "un inspecteur", "id": 1235980, "credit_id": "544f787c0e0a263a0a0018a2", "cast_id": 58, "profile_path": "/mOsEfNQ9xBK9K2HMMQ625Ocv925.jpg", "order": 49}, {"name": "Kyli Rae", "character": "les anges", "id": 1378740, "credit_id": "544f7931c3a36802390018dd", "cast_id": 59, "profile_path": null, "order": 50}, {"name": "Travis Nicholson", "character": "le chanteur country", "id": 1378775, "credit_id": "544f8da7c3a368532b001b21", "cast_id": 60, "profile_path": "/c1ZmaMEcgKePlvMvXBBpECRW7Zm.jpg", "order": 51}, {"name": "Allison Wilhelm", "character": "la fille du vestiaire", "id": 1378776, "credit_id": "544f8f3d0e0a2639fe001cd1", "cast_id": 61, "profile_path": "/aPu9RcaG2P1EBGQGdMPHTJGtcUw.jpg", "order": 52}, {"name": "Tye Edwards", "character": "Crewe Bartender", "id": 1296721, "credit_id": "544f903bc3a368023c001ad2", "cast_id": 62, "profile_path": "/giT1XMhgp3VJKeWhzj0sTAWMI6f.jpg", "order": 53}, {"name": "Jon Paul Burkhart", "character": "un journaliste", "id": 1276803, "credit_id": "544f9114c3a3680233001a05", "cast_id": 63, "profile_path": "/2GaDEcNajkY2iZ6AFJMoI5mMcMR.jpg", "order": 54}, {"name": "Lou Volpe", "character": "le p\u00e8re de Frank Valli", "id": 1346430, "credit_id": "544f91e50e0a263a10001c13", "cast_id": 64, "profile_path": "/c4pImzcjvaQV58scdxVmPmvuOi6.jpg", "order": 55}, {"name": "David Crane", "character": "un employ\u00e9 de l'Holiday Inn", "id": 105013, "credit_id": "544f9428c3a3680239001b5e", "cast_id": 65, "profile_path": "/mY6jDkBB8dJIvCbUjWVS63RqqFg.jpg", "order": 56}, {"name": "Lou George", "character": "les maisons de disques", "id": 189785, "credit_id": "544f94a20e0a2601d8001aa3", "cast_id": 66, "profile_path": "/xJbIq2zj7A1xACvmGXGvGGiQqQl.jpg", "order": 57}, {"name": "Michael Butler Murray", "character": "un musicien", "id": 1378789, "credit_id": "544f94f90e0a263a0a001bb2", "cast_id": 67, "profile_path": "/yOWilYOpXUk9zlKJHPJ24OPRPDB.jpg", "order": 58}, {"name": "Michael Lanahan", "character": "les maisons de disques", "id": 1378792, "credit_id": "544f96360e0a263a0a001bec", "cast_id": 68, "profile_path": "/4tlfNzsB4HtV048lErNJrguedCp.jpg", "order": 59}, {"name": "Aria Pullman", "character": "la femme s\u00e9duisante", "id": 180424, "credit_id": "544f9797c3a3680239001bf2", "cast_id": 69, "profile_path": "/ecAh5KrnPig8Wh52UwfH3r4PZuQ.jpg", "order": 60}, {"name": "Jacqueline Mazarella", "character": "une femme en col\u00e8re", "id": 1214843, "credit_id": "544f99580e0a263a18001c39", "cast_id": 70, "profile_path": "/yDbnFEMGmuB45eoc50jqH9HSLNs.jpg", "order": 61}, {"name": "Danielle Souza", "character": "une femme l\u00e9g\u00e8rement v\u00e9tue", "id": 1378806, "credit_id": "544f99e50e0a263a04001df4", "cast_id": 71, "profile_path": "/wMn47OSm8aIc5oi81lKVVhZLuR0.jpg", "order": 62}, {"name": "Miles Aubrey", "character": "Charles Calello", "id": 1378815, "credit_id": "544f9b76c3a368532b001cf5", "cast_id": 72, "profile_path": null, "order": 63}, {"name": "Johnny Dinu", "character": "le batteur de New Four Seasons", "id": 1378816, "credit_id": "544f9c280e0a263a10001d7b", "cast_id": 73, "profile_path": "/qNGXuPrzraRBCUSwVob0ePcfjj2.jpg", "order": 64}, {"name": "Maggie Beal", "character": "Antonia Valli", "id": 1378817, "credit_id": "544f9cd20e0a263a0a001d07", "cast_id": 74, "profile_path": null, "order": 65}, {"name": "Jeff DePaoli", "character": "le r\u00e9gisseur", "id": 1378818, "credit_id": "544f9d760e0a263a10001d97", "cast_id": 75, "profile_path": "/izcpszArGfBN89S4ewXkKNF99tL.jpg", "order": 66}, {"name": "Vincent Selhorst-Jones", "character": "Hank Majewski", "id": 1378820, "credit_id": "544f9e580e0a2639fe001ebd", "cast_id": 76, "profile_path": "/vkgiq8RpmXX4YyRH8zW3A3Fetak.jpg", "order": 67}, {"name": "Angel Murphy", "character": "Jazz-Cat", "id": 1378823, "credit_id": "544fa03d0e0a2601d8001c23", "cast_id": 77, "profile_path": "/6PmdDuOYGcFIcWRbDTwR40yc2rG.jpg", "order": 68}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4d66c3a368484e1e70f3", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.1, "runtime": 134}, "45612": {"poster_path": "/cpl7R5d3qwWvykRRSxdhQ0htstU.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147332697, "overview": "Decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, discovering he's involved in a mission to find the bomber of a Chicago commuter train. He learns he's part of a top-secret experimental program that enables him to experience the final 8 minutes of another person's life. Colter re-lives the train incident over and over again, gathering more clues each time. But can he discover who is responsible for the attack before the next one happens?", "video": false, "id": 45612, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Source Code", "tagline": "Make Every Second Count", "vote_count": 835, "homepage": "http://www.enterthesourcecode.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0945513", "adult": false, "backdrop_path": "/x8cIgtcVi9DVrlPuvlsvc43dik9.jpg", "production_companies": [{"name": "The Mark Gordon Company", "id": 1557}, {"name": "Vendome Pictures", "id": 7460}], "release_date": "2011-04-01", "popularity": 1.52659711576497, "original_title": "Source Code", "budget": 32000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Colter Stevens", "id": 131, "credit_id": "52fe46cbc3a36847f811298d", "cast_id": 1, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Christina Warren", "id": 11705, "credit_id": "52fe46cbc3a36847f8112991", "cast_id": 2, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Colleen Goodwin", "id": 21657, "credit_id": "52fe46cbc3a36847f8112995", "cast_id": 3, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Russell Peters", "character": "Max Denoff", "id": 82417, "credit_id": "52fe46cbc3a36847f8112999", "cast_id": 4, "profile_path": "/hL7XitH9iuUonknMr8mpSDC51FG.jpg", "order": 3}, {"name": "Joe Cobden", "character": "Lab Technician", "id": 51389, "credit_id": "52fe46cbc3a36847f811299d", "cast_id": 5, "profile_path": "/kTf7OtOY1qBPmEbc4Kky9uMN58K.jpg", "order": 4}, {"name": "Michael Arden", "character": "Derek Frost", "id": 83874, "credit_id": "52fe46cbc3a36847f81129a1", "cast_id": 6, "profile_path": "/ldZi8TFKz5tA7TRtwMs4gjxbdaS.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "Dr. Rutledge", "id": 2954, "credit_id": "52fe46cbc3a36847f81129b7", "cast_id": 12, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Cas Anvar", "character": "Hazmi", "id": 59214, "credit_id": "52fe46cbc3a36847f81129bb", "cast_id": 14, "profile_path": "/m8JWOnvyjpApLc8WUYwJQGrQDG3.jpg", "order": 7}, {"name": "Brent Skagford", "character": "George Troxel", "id": 522169, "credit_id": "52fe46cbc3a36847f81129bf", "cast_id": 15, "profile_path": "/f7DJF5ic11kVy6JsK3p4PoblFpA.jpg", "order": 8}, {"name": "Craig Thomas (II)", "character": "Gold Watch Executive", "id": 572609, "credit_id": "52fe46cbc3a36847f81129c3", "cast_id": 16, "profile_path": "/mXVTRucD1GX6EV7n1HSaiSx8BXp.jpg", "order": 9}, {"name": "Gordon Masten", "character": "Conductor", "id": 179421, "credit_id": "52fe46cbc3a36847f81129c7", "cast_id": 17, "profile_path": "/oeVhRruDyodXDJPsJSpmpNLbTqh.jpg", "order": 10}], "directors": [{"name": "Duncan Jones", "department": "Directing", "job": "Director", "credit_id": "52fe46cbc3a36847f81129a7", "profile_path": "/ZXaHANdHg58LEQHP6mRcjy72W6.jpg", "id": 81850}], "vote_average": 6.8, "runtime": 93}, "127533": {"poster_path": "/rmBUaljPj6SJVArR68fHl41oJU4.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 61700000, "overview": "Former legendary assassin Kenshin Himura has now become a wandering samurai. Offering aid & protecting those in need as atonement for his past deeds. During this time Kenshin Himura comes across and aides Kaoru Kamiya (Emi Takei). Her father opened the Kamiya Kasshin-ryu, a kendo school located in Tokyo and Kaoru is now an instructor there. Kaoru then invites Kenshin to stay at her dojo. Their relationship develops further, but Kenshin is still haunted by his violent past ...", "video": false, "id": 127533, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10769, "name": "Foreign"}], "title": "Rurouni Kenshin", "tagline": "The Journey Begins", "vote_count": 60, "homepage": "http://wwws.warnerbros.co.jp/rurouni-kenshin/index.html", "belongs_to_collection": {"backdrop_path": "/jqmQLcdn3aEyc30nesZn7qixfoP.jpg", "poster_path": "/yBYLuwZ1zbRBEKaZmwiThsEqUbC.jpg", "id": 247028, "name": "Rurouni Kenshin Live-Action Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt1979319", "adult": false, "backdrop_path": "/xas4wD2wHskniTegpQ4QnyalzS1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Studio Swan", "id": 10765}, {"name": "RoC Works Co.", "id": 10766}], "release_date": "2012-08-25", "popularity": 0.882851634004261, "original_title": "\u308b\u308d\u3046\u306b\u5263\u5fc3", "budget": 0, "cast": [{"name": "Takeru Satoh", "character": "Kenshin Himura", "id": 230659, "credit_id": "52fe4afdc3a368484e1718a5", "cast_id": 5, "profile_path": "/8GJ849GQ9eHCLfsRj026JUVaqJC.jpg", "order": 0}, {"name": "Emi Takei", "character": "Kaoru Kamiya", "id": 1084910, "credit_id": "52fe4afdc3a368484e1718a9", "cast_id": 6, "profile_path": "/9kHDikAYFt234AYlSZzd4ebU3yZ.jpg", "order": 1}, {"name": "K\u00f4ji Kikkawa", "character": "Udo Jine", "id": 148288, "credit_id": "52fe4afdc3a368484e1718ad", "cast_id": 7, "profile_path": "/2BUEmCj5YeJaGQZniH4LgIT8ycu.jpg", "order": 2}, {"name": "Yu Aoi", "character": "Megumi Takani", "id": 84028, "credit_id": "52fe4afdc3a368484e1718b1", "cast_id": 8, "profile_path": "/sXgvUK8uWJ4xCxA9Oklapm08DPJ.jpg", "order": 3}, {"name": "Munetaka Aoki", "character": "Sanosuke Sagara", "id": 111640, "credit_id": "52fe4afdc3a368484e1718b5", "cast_id": 9, "profile_path": "/14IAuejjPtOAyFHhkoPrBvSokQk.jpg", "order": 4}, {"name": "G\u00f4 Ayano", "character": "Gein", "id": 1084911, "credit_id": "52fe4afdc3a368484e1718b9", "cast_id": 10, "profile_path": "/oFxju34eHiMbZ0PWwVbzuntgVac.jpg", "order": 5}, {"name": "Genki Sudo", "character": "Banjin Inui", "id": 86145, "credit_id": "52fe4afdc3a368484e1718bd", "cast_id": 11, "profile_path": "/s0mGZYbEZIiAaGBte2fpQkabdKY.jpg", "order": 6}, {"name": "Taketo Tanaka", "character": "Yahiko Myojin", "id": 1084912, "credit_id": "52fe4afdc3a368484e1718c1", "cast_id": 12, "profile_path": "/8dje8nhBZPSEVzk8awZn5y5NYh5.jpg", "order": 7}, {"name": "Eiji Okuda", "character": "Aritomo Yamagata", "id": 72389, "credit_id": "52fe4afdc3a368484e1718c5", "cast_id": 13, "profile_path": "/phgV64iDNJ4x673CYLHK9aaNFii.jpg", "order": 8}, {"name": "Y\u014dsuke Eguchi", "character": "Hajime Saito", "id": 55784, "credit_id": "52fe4afdc3a368484e1718c9", "cast_id": 14, "profile_path": "/wtNjvKT5GqTYKXnqYa8C8vL7BEx.jpg", "order": 9}, {"name": "Teruyuki Kagawa", "character": "Kanryu Takeda", "id": 46691, "credit_id": "52fe4afdc3a368484e1718cd", "cast_id": 15, "profile_path": "/pCOQFnFHPDCtSuYmMT3Q24Yf0SE.jpg", "order": 10}], "directors": [{"name": "Keishi Ohtomo", "department": "Directing", "job": "Director", "credit_id": "52fe4afdc3a368484e17188f", "profile_path": null, "id": 1084905}], "vote_average": 7.1, "runtime": 134}, "242224": {"poster_path": "/b3YzM03YxkOaJw2PglfKlcwr8bM.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}], "revenue": 4222200, "overview": "A single mother, plagued by the violent death of her husband, battles with her son's fear of a monster lurking in the house, but soon discovers a sinister presence all around her.", "video": false, "id": 242224, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Babadook", "tagline": "If it's in a word, or it's in a look, you can't get rid of the Babadook.", "vote_count": 238, "homepage": "http://thebabadook.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2321549", "adult": false, "backdrop_path": "/pJ10mpKs2mM2AXTUOmM4yl5PJi8.jpg", "production_companies": [{"name": "Screen Australia", "id": 7584}, {"name": "Smoking Gun Productions", "id": 21181}, {"name": "Causeway Films", "id": 32301}, {"name": "South Australian Film Corporation", "id": 2806}], "release_date": "2014-05-22", "popularity": 2.17055990553622, "original_title": "The Babadook", "budget": 2000000, "cast": [{"name": "Essie Davis", "character": "Amelia", "id": 33449, "credit_id": "52fe4ec7c3a36847f82a757d", "cast_id": 1, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 0}, {"name": "Noah Wiseman", "character": "Samuel", "id": 1277195, "credit_id": "52fe4ec7c3a36847f82a7581", "cast_id": 2, "profile_path": "/e1E6mf6HFPOmbmHbRHWmMCVDJju.jpg", "order": 1}, {"name": "Daniel Henshall", "character": "Robbie", "id": 213202, "credit_id": "52fe4ec7c3a36847f82a7585", "cast_id": 3, "profile_path": "/4LYeThK5O9EUy1OllvdsD5bTRbb.jpg", "order": 2}, {"name": "Tim Purcell", "character": "The Babadook", "id": 1399367, "credit_id": "548e3d56c3a36820b50061b5", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Hayley McElhinney", "character": "Claire", "id": 220442, "credit_id": "52fe4ec7c3a36847f82a7589", "cast_id": 4, "profile_path": "/zYbqQKYHcvdM1kdvvR5vyiPuzHS.jpg", "order": 4}, {"name": "Cathy Adamek", "character": "Prue", "id": 1277196, "credit_id": "52fe4ec7c3a36847f82a758d", "cast_id": 5, "profile_path": "/AnfcNBaQqjA6TFsojRlGNiAvIGS.jpg", "order": 5}, {"name": "Craig Behenna", "character": "Warren", "id": 79715, "credit_id": "52fe4ec7c3a36847f82a7591", "cast_id": 6, "profile_path": "/2hjK4gvNmoQWfWgO3xJJ49DH6XK.jpg", "order": 6}, {"name": "Benjamin Winspear", "character": "Oskar", "id": 1399368, "credit_id": "548e3d7cc3a3681d4b0037d9", "cast_id": 17, "profile_path": "/7ORDOqiu9G2p92S0fsZ28hVblBx.jpg", "order": 7}, {"name": "Chloe Hurn", "character": "Ruby", "id": 1399369, "credit_id": "548e3da892514122f9005afa", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Tiffany Lyndall-Knight", "character": "Supermarket Mum", "id": 125581, "credit_id": "54b63e82c3a36877940015e3", "cast_id": 19, "profile_path": "/15M9lq3ralCL1xC0bGmLkbaje7W.jpg", "order": 9}, {"name": "Peta Shannon", "character": "Eastern Suburbs Mum 2", "id": 1413438, "credit_id": "54b64107c3a3687790001400", "cast_id": 20, "profile_path": "/azgqXxyxh2LrjWvfPcONrp18abl.jpg", "order": 10}, {"name": "Michael Gilmour", "character": "Young Policeman 1", "id": 1145374, "credit_id": "54b73dde9251411d6a0013f5", "cast_id": 21, "profile_path": "/lmB9p1TO8zLvhKNbiFJbbUf8UOp.jpg", "order": 11}, {"name": "Michelle Nightingale", "character": "Eastern Suburbs Mum 3", "id": 1413762, "credit_id": "54b746c99251411d640012dd", "cast_id": 22, "profile_path": "/2lfh3oZqaBBb0r7VUdr9Btcwqbn.jpg", "order": 12}, {"name": "Adam Morgan", "character": "Police Sergeant", "id": 96464, "credit_id": "54b74b1bc3a3686c6100134b", "cast_id": 23, "profile_path": "/vUnUO39f2wnDAnXL8T9QxZdWWvX.jpg", "order": 13}, {"name": "Barbara West", "character": "Mrs. Roach", "id": 1413763, "credit_id": "54b74cfec3a3686c6b001885", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Hachi", "character": "Bugsy", "id": 1413764, "credit_id": "54b750ef9251411d700013f0", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Carmel Johnson", "character": "Teacher", "id": 79718, "credit_id": "54b754449251411d7900149b", "cast_id": 26, "profile_path": "/nOi0D7WEP6o87uS063DxuwzbtZj.jpg", "order": 16}, {"name": "Terence Crawford", "character": "Doctor", "id": 1123198, "credit_id": "54b7696ac3a3686c5d0016fc", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Jacquy Phillips", "character": "Beverly", "id": 1321953, "credit_id": "54b76bd49251411d7000167a", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Pippa Wanganeen", "character": "Eastern Suburbs Mum 1", "id": 1413768, "credit_id": "54b76c0a9251411d7000167f", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "John Maurice", "character": "Car Guy", "id": 1413770, "credit_id": "54b76d8ac3a3686c6b001bfe", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Craig McArdle", "character": "Young Policeman 2", "id": 1413771, "credit_id": "54b76e299251411d660016d8", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Sophie Riggs", "character": "Checkout Chick", "id": 1413772, "credit_id": "54b76ea7c3a3686c610016be", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Stephen Sheehan", "character": "Magician", "id": 1413773, "credit_id": "54b76f7e9251411d6d00182e", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Alicia Zorkovic", "character": "Fast Food Mum", "id": 1413774, "credit_id": "54b76fc7c3a3686c610016e3", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Bridget Walters", "character": "Norma", "id": 543275, "credit_id": "54b770efc3a3686c5f0016e2", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Chris Roberts", "character": "Kissing Man", "id": 1413776, "credit_id": "54b77173c3a36820b7000f0c", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Lucy Hong", "character": "Supermarket Little Girl", "id": 1413778, "credit_id": "54b771c09251411d77001741", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Tony Mack", "character": "Principal", "id": 543279, "credit_id": "54b772b09251411d6d001896", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Annie Batten", "character": "Old Woman in Corridor", "id": 1413779, "credit_id": "54b772dec3a3686c71001520", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Charlie Crabtree", "character": "Fast Food Kid 3", "id": 1413780, "credit_id": "54b77313c3a3686c6b001cb8", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Sophie Allan", "character": "Fast Food Kid 5", "id": 1413781, "credit_id": "54b773489251411d7700176a", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Ethan Grabis", "character": "Fast Food Kid 4", "id": 1413782, "credit_id": "54b77377c3a3686c5f00171e", "cast_id": 42, "profile_path": null, "order": 32}, {"name": "India Zorkovic", "character": "Fast Food Kid 1", "id": 1413783, "credit_id": "54b773afc3a3686c5d001872", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Lotte Crawford", "character": "Kissing Woman", "id": 1413784, "credit_id": "54b773e29251411d6d0018b7", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Isla Zorkovic", "character": "Fast Food Kid 2", "id": 1413785, "credit_id": "54b77417c3a36820b7000f6d", "cast_id": 45, "profile_path": null, "order": 35}], "directors": [{"name": "Jennifer Kent", "department": "Directing", "job": "Director", "credit_id": "52fe4ec7c3a36847f82a7597", "profile_path": "/iJJsg4uhQYhibvf1v7ME8EuJoeV.jpg", "id": 164554}], "vote_average": 6.7, "runtime": 93}, "37430": {"poster_path": "/tCf5Gt51xONppfvcmwW0FmizPc6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48795021, "overview": "A quest that begins as a personal vendetta for the fierce Cimmerian warrior soon turns into an epic battle against hulking rivals, horrific monsters, and impossible odds, as Conan (Jason Momoa) realizes he is the only hope of saving the great nations of Hyboria from an encroaching reign of supernatural evil.", "video": false, "id": 37430, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Conan the Barbarian", "tagline": "Enter an age undreamed of", "vote_count": 224, "homepage": "http://www.conanthebarbarianin3d.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0816462", "adult": false, "backdrop_path": "/381rd4LVvy6AkSB9tqHNu81ftyR.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Dark Horse Entertainment", "id": 552}, {"name": "Nu Image Films", "id": 925}, {"name": "Paradox Entertainment", "id": 6819}, {"name": "Nimar Studios", "id": 7636}, {"name": "Cinema Vehicle Services", "id": 25673}], "release_date": "2011-08-19", "popularity": 1.12653764633464, "original_title": "Conan the Barbarian", "budget": 90000000, "cast": [{"name": "Jason Momoa", "character": "Conan", "id": 117642, "credit_id": "52fe46489251416c9104f585", "cast_id": 4, "profile_path": "/PSK6GmsVwdhqz9cd1lwzC6a7EA.jpg", "order": 0}, {"name": "Rose McGowan", "character": "Marique", "id": 16850, "credit_id": "52fe46489251416c9104f589", "cast_id": 5, "profile_path": "/r13aj42Zm7oxLzzroMcdFnXavbF.jpg", "order": 1}, {"name": "Rachel Nichols", "character": "Tamara", "id": 50347, "credit_id": "52fe46489251416c9104f58d", "cast_id": 6, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Corin", "id": 2372, "credit_id": "52fe46489251416c9104f591", "cast_id": 7, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Stephen Lang", "character": "Khalar Zym", "id": 32747, "credit_id": "52fe46489251416c9104f595", "cast_id": 8, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 4}, {"name": "Sa\u00efd Taghmaoui", "character": "Ela-Shan", "id": 5419, "credit_id": "52fe46489251416c9104f599", "cast_id": 9, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 5}, {"name": "Leo Howard", "character": "Young Conan", "id": 557921, "credit_id": "52fe46489251416c9104f59d", "cast_id": 10, "profile_path": "/3lL32Wjcg852LIapVomWGzb4wyB.jpg", "order": 6}, {"name": "Steve O'Donnell", "character": "Lucius", "id": 79885, "credit_id": "52fe46489251416c9104f5a1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Raad Rawi", "character": "Fassir - High Priest", "id": 73710, "credit_id": "52fe46489251416c9104f5a5", "cast_id": 12, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 8}, {"name": "Nonso Anozie", "character": "Artus", "id": 43547, "credit_id": "52fe46489251416c9104f5a9", "cast_id": 13, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 9}, {"name": "Bob Sapp", "character": "Ukafa", "id": 60716, "credit_id": "52fe46489251416c9104f5ad", "cast_id": 14, "profile_path": "/y11Km6dAfrBB4asSIvBewR8UocA.jpg", "order": 10}, {"name": "Milton Welsh", "character": "Remo", "id": 902, "credit_id": "52fe46489251416c9104f5b1", "cast_id": 15, "profile_path": "/n3BYt4bbPey6UwMGRyhlRCaaFkB.jpg", "order": 11}, {"name": "Bashar Rahal", "character": "Quarter Master", "id": 105688, "credit_id": "52fe46489251416c9104f5bb", "cast_id": 17, "profile_path": "/kTDG0QqFEwjeidB4OaSL7E0fDfC.jpg", "order": 12}, {"name": "Diana Lyubenova", "character": "Cheren", "id": 1189509, "credit_id": "52fe46489251416c9104f5dd", "cast_id": 28, "profile_path": "/zWakamFOSBOMJKS0kZRbm1C57ZW.jpg", "order": 13}], "directors": [{"name": "Marcus Nispel", "department": "Directing", "job": "Director", "credit_id": "52fe46489251416c9104f581", "profile_path": "/uil3LAeKq6vgRucr6CR2T4Iz0oC.jpg", "id": 29922}], "vote_average": 5.3, "runtime": 113}, "86597": {"poster_path": "/1fc87E3ppCq6xBnZJ63Sa9FKRUd.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "When her child goes missing, a mother looks to unravel the legend of the Tall Man, an entity who allegedly abducts children.", "video": false, "id": 86597, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Tall Man", "tagline": "Fear takes a new shape", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1658837", "adult": false, "backdrop_path": "/6a5keKsnRickHy6TImQ9b3RsTQQ.jpg", "production_companies": [{"name": "Forecast Pictures", "id": 12686}, {"name": "Iron Ocean Films", "id": 12687}, {"name": "Radar Films", "id": 12689}, {"name": "SND", "id": 2902}], "release_date": "2012-08-01", "popularity": 0.655877121506777, "original_title": "The Tall Man", "budget": 18200000, "cast": [{"name": "Jessica Biel", "character": "Julia Denning", "id": 10860, "credit_id": "52fe49909251416c910b16bd", "cast_id": 3, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 0}, {"name": "Jodelle Ferland", "character": "Jenny", "id": 8338, "credit_id": "52fe49909251416c910b16c1", "cast_id": 4, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 1}, {"name": "Stephen McHattie", "character": "Lt Dodd", "id": 230, "credit_id": "52fe49909251416c910b16c5", "cast_id": 5, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 2}, {"name": "Jakob Davies", "character": "David", "id": 139618, "credit_id": "52fe49909251416c910b16c9", "cast_id": 6, "profile_path": "/9401kh3am1lZijYUbPUnnYBrw3Z.jpg", "order": 3}, {"name": "William B. Davis", "character": "Sheriff Chestnut", "id": 12643, "credit_id": "52fe49909251416c910b16cd", "cast_id": 7, "profile_path": "/wXEF3GDoRXuYYdrtGlwvfkM6hQd.jpg", "order": 4}, {"name": "Samantha Ferris", "character": "Tracy", "id": 25383, "credit_id": "52fe49909251416c910b16d1", "cast_id": 8, "profile_path": "/lr0y615PLYdQrN8wvsYJGy5zeCf.jpg", "order": 5}, {"name": "Colleen Wheeler", "character": "Mrs. Johnson", "id": 43905, "credit_id": "52fe49909251416c910b16ed", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Eve Harlow", "character": "Christine", "id": 209723, "credit_id": "52fe49909251416c910b16f1", "cast_id": 14, "profile_path": "/h3ZqWXWD6EVEzHIm6e9QsNoRL6R.jpg", "order": 7}, {"name": "Janet Wright", "character": "Trish", "id": 106460, "credit_id": "52fe49909251416c910b16f5", "cast_id": 15, "profile_path": "/8MC9PGDb0lqKbpwwUfTzNxE8k9P.jpg", "order": 8}], "directors": [{"name": "Pascal Laugier", "department": "Directing", "job": "Director", "credit_id": "52fe49909251416c910b16b3", "profile_path": null, "id": 59611}], "vote_average": 5.8, "runtime": 106}, "127560": {"poster_path": "/3iU9KLIhvc3pdl1SkeD0gv4BO0f.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 22309223, "overview": "A victim from World War II's \"Death Railway\" sets out to find those responsible for his torture. A true story.", "video": false, "id": 127560, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Railway Man", "tagline": "Revenge is never a straight line", "vote_count": 70, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2058107", "adult": false, "backdrop_path": "/78rR1LQpLuQmbEDl9pwKPtuJQER.jpg", "production_companies": [{"name": "Archer Street Productions", "id": 1471}, {"name": "Lionsgate", "id": 1632}, {"name": "Pictures in Paradise", "id": 3207}, {"name": "Latitude Media", "id": 15577}, {"name": "Thai Occidental Productions", "id": 15578}, {"name": "Silver Reel", "id": 12075}], "release_date": "2013-09-06", "popularity": 1.08546147228503, "original_title": "The Railway Man", "budget": 18000000, "cast": [{"name": "Nicole Kidman", "character": "Patricia Wallace", "id": 2227, "credit_id": "52fe4afec3a368484e171d13", "cast_id": 1, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Stellan Skarsg\u00e5rd", "character": "Finlay", "id": 1640, "credit_id": "52fe4afec3a368484e171d17", "cast_id": 2, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 1}, {"name": "Colin Firth", "character": "Eric Lomax", "id": 5472, "credit_id": "52fe4afec3a368484e171d1b", "cast_id": 3, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 2}, {"name": "Jeremy Irvine", "character": "Young Eric Lomax", "id": 225692, "credit_id": "52fe4afec3a368484e171d1f", "cast_id": 4, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 3}, {"name": "Hiroyuki Sanada", "character": "Nagase", "id": 9195, "credit_id": "52fe4afec3a368484e171d77", "cast_id": 20, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 4}, {"name": "Sam Reid", "character": "Young Finlay", "id": 589650, "credit_id": "52fe4afec3a368484e171d7b", "cast_id": 21, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 5}, {"name": "Marta Dusseldorp", "character": "Memsahib", "id": 152523, "credit_id": "52fe4afec3a368484e171d7f", "cast_id": 22, "profile_path": "/2TKuvFXo5JhJOAJYuKNDrigX1AF.jpg", "order": 6}, {"name": "Tom Hobbs", "character": "Thorlby", "id": 1205488, "credit_id": "52fe4afec3a368484e171d83", "cast_id": 23, "profile_path": "/zg9zAVA0kfT1n6QBiOSl6vQdBHq.jpg", "order": 7}, {"name": "Masa Yamaguchi", "character": "Kempai Officer", "id": 83283, "credit_id": "52fe4afec3a368484e171d87", "cast_id": 24, "profile_path": "/5bQXyNfzT12cxwnGV9xVia5hYOu.jpg", "order": 8}, {"name": "Byron J. Brochmann", "character": "British Trooper POW", "id": 1086523, "credit_id": "52fe4afec3a368484e171d8b", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Shinji Ikefuji", "character": "Thug Sergeant", "id": 1205489, "credit_id": "52fe4afec3a368484e171d8f", "cast_id": 26, "profile_path": "/6m1scLGa91uDDYBftdEcEOuXrAm.jpg", "order": 10}, {"name": "Charlie Ruedpokanon", "character": "Japanese Guard", "id": 1163445, "credit_id": "52fe4afec3a368484e171d97", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Akos Armont", "character": "Jackson", "id": 1205492, "credit_id": "52fe4afec3a368484e171d9f", "cast_id": 30, "profile_path": "/t0nRw07H8aXtzz7az5yjDSZwVVg.jpg", "order": 14}, {"name": "Michael MacKenzie", "character": "Sutton", "id": 201391, "credit_id": "5454e357c3a36814800043b2", "cast_id": 33, "profile_path": "/zCm1CjCW6dV4X7M1sxAB9xP0eqA.jpg", "order": 15}, {"name": "Jeffrey Daunton", "character": "Burton", "id": 1380467, "credit_id": "5454e6bf0e0a2635de001e13", "cast_id": 34, "profile_path": "/itGQUjG4e7lzHy0RMafXJgRhlSs.jpg", "order": 16}, {"name": "Tanroh Ishida", "character": "Young Takeshi Nagase", "id": 1380499, "credit_id": "5454fb170e0a2648d20046e4", "cast_id": 35, "profile_path": "/mg9mM1mEKve5CgDCp2seGYMk9Mi.jpg", "order": 17}, {"name": "Tom Stokes", "character": "Withins", "id": 1380509, "credit_id": "5454fede0e0a2635de002132", "cast_id": 36, "profile_path": "/aoEOLHNXnTjWFOEqVIuHnwHuIRM.jpg", "order": 18}, {"name": "Bryan Probets", "character": "Major York", "id": 1014587, "credit_id": "545504dc0e0a2648c5004899", "cast_id": 37, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 19}, {"name": "Kitamoto Takato", "character": "Japanese Officer", "id": 1380523, "credit_id": "54550df80e0a2648d200498b", "cast_id": 38, "profile_path": null, "order": 20}, {"name": "Keith Fleming", "character": "Removal Man", "id": 1380553, "credit_id": "545530ccc3a3681480004daa", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Ben Aldridge", "character": "Baliff", "id": 969316, "credit_id": "545532bcc3a3680b760003df", "cast_id": 40, "profile_path": "/w4gRYQ8ZxcmuX9ZedIMelFLiaIe.jpg", "order": 22}, {"name": "Yutaka Izumihara", "character": "Japanese NCO", "id": 75748, "credit_id": "545535500e0a2648c2004da4", "cast_id": 41, "profile_path": "/rGPYp0jWNplBEv1vWDbmpysaGte.jpg", "order": 23}, {"name": "Louis Toshio Okada", "character": "Hank the Yank", "id": 1380560, "credit_id": "54553650c3a3680b7600045c", "cast_id": 42, "profile_path": null, "order": 24}, {"name": "Micheal Doonan", "character": "Doctor Rogers", "id": 1380561, "credit_id": "54553716c3a368147c004baf", "cast_id": 43, "profile_path": "/c8Dw46fWdmpzRLJnXcrGyNuXE5M.jpg", "order": 25}, {"name": "Shoota Tanahshi", "character": "Japanese Mechanic", "id": 1380562, "credit_id": "545538af0e0a2648c5004f4d", "cast_id": 44, "profile_path": null, "order": 26}, {"name": "Peter Tuinstra", "character": "Pump Operator", "id": 113650, "credit_id": "545539e2c3a3682be900252e", "cast_id": 45, "profile_path": "/uNAoTZT2KtTMjc1WWL23POobPzU.jpg", "order": 27}, {"name": "Shogo Tanikawa", "character": "Japanese Engineer", "id": 1380563, "credit_id": "54553a6ec3a368148d004dd2", "cast_id": 46, "profile_path": null, "order": 28}, {"name": "Ben Warren", "character": "Cook", "id": 1381317, "credit_id": "5457a22e0e0a2648c2009ba7", "cast_id": 47, "profile_path": null, "order": 29}, {"name": "Yasuhiko Miyauchi", "character": "Japanese Sergeant", "id": 1381318, "credit_id": "5457a2d70e0a26297a002064", "cast_id": 48, "profile_path": null, "order": 30}, {"name": "Keiichi Enomoto", "character": "Sakamoto", "id": 1381319, "credit_id": "5457a435c3a368209f001bb0", "cast_id": 49, "profile_path": "/swWMjjTX4t8gyxRFh7HJvx6S4LI.jpg", "order": 31}, {"name": "Ewen Leslie", "character": "Captain Thompson", "id": 59119, "credit_id": "5457a8950e0a2648c2009c3c", "cast_id": 50, "profile_path": "/7HUB1hseEYlxkQ8hNRbc8sWqn3M.jpg", "order": 32}, {"name": "Jack McTaggart", "character": "Australian Soldier", "id": 1381322, "credit_id": "5457ab19c3a368147c009971", "cast_id": 51, "profile_path": null, "order": 33}, {"name": "Sarah McVicar", "character": "Nurse", "id": 1381328, "credit_id": "5457ac19c3a368690200344e", "cast_id": 52, "profile_path": null, "order": 34}, {"name": "Therese Bradley", "character": "Mother", "id": 3069, "credit_id": "5457b022c3a3686075002ba0", "cast_id": 53, "profile_path": "/9TXb597GgChiVSvbKTm4lfSFx8B.jpg", "order": 35}], "directors": [{"name": "Jonathan Teplitzky", "department": "Directing", "job": "Director", "credit_id": "52fe4afec3a368484e171d25", "profile_path": null, "id": 97942}], "vote_average": 6.7, "runtime": 116}, "4688": {"poster_path": "/iPh20R6bO4GdBpO0E7t4nEdHhp7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Musical based on The Beatles songbook and set in the 60s England, America, and Vietnam. The love story of Lucy and Jude is intertwined with the anti-war movement and social protests of the 60s.", "video": false, "id": 4688, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Across the Universe", "tagline": "All you need is love.", "vote_count": 114, "homepage": "http://www.acrosstheuniverse.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0445922", "adult": false, "backdrop_path": "/wWHeMjL0ZnOkrhnclcneIVSZnlM.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Team Todd", "id": 598}], "release_date": "2007-09-14", "popularity": 0.54882007666092, "original_title": "Across the Universe", "budget": 0, "cast": [{"name": "Evan Rachel Wood", "character": "Lucy Carrigan", "id": 38940, "credit_id": "52fe43d3c3a36847f807293d", "cast_id": 11, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Jude", "id": 38941, "credit_id": "52fe43d3c3a36847f8072941", "cast_id": 12, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Joe Anderson", "character": "Max Carrigan", "id": 29234, "credit_id": "52fe43d3c3a36847f8072945", "cast_id": 13, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 2}, {"name": "Dana Fuchs", "character": "Sadie", "id": 38942, "credit_id": "52fe43d3c3a36847f8072949", "cast_id": 14, "profile_path": "/lTX59mdBf7rknyWbaNtKSZaEY0R.jpg", "order": 3}, {"name": "Martin Luther", "character": "Jo-Jo", "id": 38943, "credit_id": "52fe43d3c3a36847f807294d", "cast_id": 15, "profile_path": "/x4iQXqjGtC9910wOnhAQ4mviE8N.jpg", "order": 4}, {"name": "T.V. Carpio", "character": "Prudence", "id": 38944, "credit_id": "52fe43d3c3a36847f8072951", "cast_id": 16, "profile_path": "/a62I1Ke8gvNxSfajHhCe2PyVlvu.jpg", "order": 5}, {"name": "Spencer Liff", "character": "Daniel", "id": 38945, "credit_id": "52fe43d3c3a36847f8072955", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Lisa Hogg", "character": "Jude's Liverpool Girlfriend", "id": 38946, "credit_id": "52fe43d3c3a36847f8072959", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Nicholas Lumley", "character": "Cyril", "id": 38947, "credit_id": "52fe43d3c3a36847f807295d", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Michael Ryan", "character": "Phil", "id": 38948, "credit_id": "52fe43d3c3a36847f8072961", "cast_id": 20, "profile_path": "/prDI4lSyuEJlFWYnEIymAdFtRT8.jpg", "order": 9}, {"name": "Angela Mounsey", "character": "Martha Feeny (Jude's Mother)", "id": 38949, "credit_id": "52fe43d3c3a36847f8072965", "cast_id": 21, "profile_path": "/8czW4GipYxxzGjKAM87TMpaYjZ7.jpg", "order": 10}, {"name": "Erin Elliott", "character": "Cheer Coach", "id": 1229623, "credit_id": "52fe43d3c3a36847f8072969", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Robert Clohessy", "character": "Wesley \"Wes\" Huber (Jude's Father)", "id": 2256, "credit_id": "52fe43d3c3a36847f807296d", "cast_id": 24, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 12}, {"name": "Christopher Tierney", "character": "Dorm Buddy / Dancer", "id": 1277506, "credit_id": "52fe43d3c3a36847f8072971", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Curtis Holbrook", "character": "Dorm Buddy", "id": 1232505, "credit_id": "52fe43d3c3a36847f8072975", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Julie Taymor", "department": "Directing", "job": "Director", "credit_id": "52fe43d3c3a36847f8072903", "profile_path": "/6PHmqn1Y4Y0jzSCCIVO0oYaR71Q.jpg", "id": 16391}], "vote_average": 6.6, "runtime": 133}, "45649": {"poster_path": "/6zaq4lSe4SLUxeSMkjk29CBmqrD.jpg", "production_countries": [{"iso_3166_1": "AO", "name": "Angola"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 98017, "overview": "In the California desert, the adventures of a telepathic killer-tire, mysteriously attracted by a very pretty girl, as witnessed by incredulous onlookers.", "video": false, "id": 45649, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Rubber", "tagline": "Are you TIRED of the expected?", "vote_count": 60, "homepage": "http://www.rubberfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1612774", "adult": false, "backdrop_path": "/rFsiQwX0xl2VjQvjlMVMEAteXr8.jpg", "production_companies": [{"name": "Realitism", "id": 6929}, {"name": "Elle Driver", "id": 6930}, {"name": "Arte France Cinema", "id": 6931}, {"name": "1.85 Films", "id": 12856}, {"name": "Backup Films", "id": 5381}, {"name": "Sindika Dokolo", "id": 23002}, {"name": "Canal+", "id": 5358}], "release_date": "2010-05-15", "popularity": 0.377491148034375, "original_title": "Rubber", "budget": 500000, "cast": [{"name": "Thomas F. Duffy", "character": "Xavier", "id": 46919, "credit_id": "52fe46ccc3a36847f8112def", "cast_id": 7, "profile_path": "/jLANWUvY91SUNcBfB4z7PQUieE7.jpg", "order": 0}, {"name": "David Bowe", "character": "M. Hughes", "id": 11659, "credit_id": "52fe46ccc3a36847f8112df3", "cast_id": 8, "profile_path": "/7LQANqwm1g9X9YmMwDHqdqJ9uK9.jpg", "order": 1}, {"name": "Stephen Spinella", "character": "Chad", "id": 57093, "credit_id": "52fe46ccc3a36847f8112df7", "cast_id": 9, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 2}, {"name": "Roxane Mesquida", "character": "Sheila", "id": 7706, "credit_id": "52fe46ccc3a36847f8112dfb", "cast_id": 10, "profile_path": "/A7cXGXQg4waLLtJblAUTDuAVHW9.jpg", "order": 3}, {"name": "Jack Plotnick", "character": "Accountant", "id": 29795, "credit_id": "52fe46ccc3a36847f8112dff", "cast_id": 11, "profile_path": "/oFGLmsfLkVwMtCocgKbnCPj0gYq.jpg", "order": 4}, {"name": "Wings Hauser", "character": "Man in wheelchair", "id": 61153, "credit_id": "52fe46ccc3a36847f8112e03", "cast_id": 12, "profile_path": "/2zNWksskqZgthJ1dD0c2beFf27p.jpg", "order": 5}, {"name": "Ethan Cohn", "character": "Film buff Ethan", "id": 63280, "credit_id": "52fe46ccc3a36847f8112e07", "cast_id": 13, "profile_path": "/l95OAzSrCvol5kEdR1nfC2CMLMx.jpg", "order": 6}, {"name": "Charley Koontz", "character": "Film buff Charley", "id": 1246891, "credit_id": "53d20b04c3a368777500b250", "cast_id": 37, "profile_path": "/bN0e99IqaeX3y2wtB0kMUs0IeKO.jpg", "order": 7}, {"name": "Daniel Quinn", "character": "Dad", "id": 85949, "credit_id": "52fe46ccc3a36847f8112e0f", "cast_id": 15, "profile_path": "/btgXYg8Zy7js1qLwdd7vR6n7npV.jpg", "order": 8}, {"name": "Devin Brochu", "character": "Son", "id": 202949, "credit_id": "52fe46ccc3a36847f8112e13", "cast_id": 16, "profile_path": "/kxyh9XX1rAtaI02bJxmVDAeFaWv.jpg", "order": 9}, {"name": "Hayley Holmes", "character": "Teenager Cindy", "id": 965884, "credit_id": "52fe46ccc3a36847f8112e17", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Haley Ramm", "character": "Teenager Fiona", "id": 61555, "credit_id": "52fe46ccc3a36847f8112e1b", "cast_id": 18, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 11}, {"name": "Cecelia Antoinette", "character": "Black woman", "id": 133400, "credit_id": "52fe46ccc3a36847f8112e1f", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Remy Thorne", "character": "Zach", "id": 205177, "credit_id": "52fe46ccc3a36847f8112e23", "cast_id": 20, "profile_path": "/eoblGcCABuf1kywBBbS2b0wL8X2.jpg", "order": 13}, {"name": "Tara Jean O'Brien", "character": "Cleaning lady", "id": 1089887, "credit_id": "52fe46ccc3a36847f8112e27", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Pete Dicecco", "character": "Luke", "id": 1089888, "credit_id": "52fe46ccc3a36847f8112e2b", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "James Parks", "character": "Doug", "id": 87312, "credit_id": "52fe46ccc3a36847f8112e2f", "cast_id": 23, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 16}, {"name": "Courtenay Taylor", "character": "Denise", "id": 76029, "credit_id": "52fe46ccc3a36847f8112e33", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Blake Robbins", "character": "Eric", "id": 154888, "credit_id": "52fe46ccc3a36847f8112e37", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Michael Ross", "character": "Truck driver", "id": 174612, "credit_id": "52fe46cdc3a36847f8112e3b", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Gaspard Aug\u00e9", "character": "Hitchhiker", "id": 78211, "credit_id": "52fe46cdc3a36847f8112e3f", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Pedro Winter", "character": "Tires burner", "id": 556018, "credit_id": "52fe46cdc3a36847f8112e43", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Quentin Dupieux", "department": "Directing", "job": "Director", "credit_id": "52fe46cdc3a36847f8112e49", "profile_path": "/r68EwqEiAZDFnkPRbMmNJMkUlU1.jpg", "id": 133398}], "vote_average": 6.0, "runtime": 85}, "168530": {"poster_path": "/fLXPcxZ1fJjxqUg94FFb8wwM9YN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 153997819, "overview": "For the past two years, high-school security guard Ben (Kevin Hart) has been trying to show decorated APD detective James (Ice Cube) that he's more than just a video-game junkie who's unworthy of James' sister, Angela (Tika Sumpter). When Ben finally gets accepted into the academy, he thinks he's earned the seasoned policeman's respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner's rapid-fire mouth is just as dangerous as the bullets speeding at it.", "video": false, "id": 168530, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Ride Along", "tagline": "Propose to this cop's sister? Rookie mistake.", "vote_count": 280, "homepage": "http://ridealong.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1408253", "adult": false, "backdrop_path": "/cRaD42r5Hte1D9Z24L6v0dtlYGj.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2014-01-17", "popularity": 1.15613967557923, "original_title": "Ride Along", "budget": 25000000, "cast": [{"name": "Ice Cube", "character": "James", "id": 9778, "credit_id": "52fe4ccfc3a36847f823fb7d", "cast_id": 3, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 0}, {"name": "Kevin Hart", "character": "Ben", "id": 55638, "credit_id": "52fe4ccfc3a36847f823fb79", "cast_id": 2, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Santiago", "id": 5723, "credit_id": "52fe4ccfc3a36847f823fb75", "cast_id": 1, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Tika Sumpter", "character": "Angela", "id": 110742, "credit_id": "52fe4ccfc3a36847f823fb8f", "cast_id": 7, "profile_path": "/9H87Ss6qcnxpQHtBhiMKYNSGr1g.jpg", "order": 3}, {"name": "Laurence Fishburne", "character": "Omar", "id": 2975, "credit_id": "52fe4ccfc3a36847f823fb97", "cast_id": 9, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 4}, {"name": "Bruce McGill", "character": "Lt. Brooks", "id": 14888, "credit_id": "52fe4ccfc3a36847f823fb81", "cast_id": 4, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 5}, {"name": "Bryan Callen", "character": "Miggs", "id": 78320, "credit_id": "52fe4ccfc3a36847f823fb93", "cast_id": 8, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 6}, {"name": "Gary Weeks", "character": "Dr. Cowan", "id": 168875, "credit_id": "52fe4ccfc3a36847f823fb9b", "cast_id": 10, "profile_path": "/wss0WJWiq8SyS69NW2DCwMdipgi.jpg", "order": 7}, {"name": "Gary Owen", "character": "Crazy Cody", "id": 214108, "credit_id": "52fe4ccfc3a36847f823fb9f", "cast_id": 11, "profile_path": "/419tCojrRrEDhINC38wXuiUOTC4.jpg", "order": 8}, {"name": "Jay Pharoah", "character": "Runflat", "id": 1099717, "credit_id": "52fe4ccfc3a36847f823fba3", "cast_id": 12, "profile_path": "/yRD2vypRF0niEdoCCI0pNZENzvm.jpg", "order": 9}, {"name": "Jasmine Burke", "character": "Gina", "id": 1187060, "credit_id": "52fe4ccfc3a36847f823fba7", "cast_id": 13, "profile_path": "/7INGFKXDDYoQA3xuW5La3A6QA7p.jpg", "order": 10}, {"name": "David Banner", "character": "Pawnshop Jay", "id": 53258, "credit_id": "52fe4ccfc3a36847f823fbab", "cast_id": 14, "profile_path": "/v9KDy0PrFdkvYvDtHacpgnDwh73.jpg", "order": 11}, {"name": "Aaron Saxton", "character": "Roberto", "id": 1187061, "credit_id": "52fe4ccfc3a36847f823fbaf", "cast_id": 15, "profile_path": "/jfUeksYuwjb60nmWuZYVK6iMWd8.jpg", "order": 12}, {"name": "Lucius Baston", "character": "Ballsdeep 23", "id": 930994, "credit_id": "52fe4ccfc3a36847f823fb85", "cast_id": 5, "profile_path": "/71iNBKkB3Gcgt9XZXWKRxvZtbuJ.jpg", "order": 13}, {"name": "Tom Waite", "character": "Serbian Arms Dealer (uncredited)", "id": 1338215, "credit_id": "53b95fb50e0a2676bf009a0e", "cast_id": 25, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 14}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4ccfc3a36847f823fb8b", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 6.1, "runtime": 99}, "82702": {"poster_path": "/lRjOR4uclMQijUav4OjeZprlehu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 609123048, "overview": "The thrilling second chapter of the epic How To Train Your Dragon trilogy brings back the fantastical world of Hiccup and Toothless five years later. While Astrid, Snotlout and the rest of the gang are challenging each other to dragon races (the island's new favorite contact sport), the now inseparable pair journey through the skies, charting unmapped territories and exploring new worlds. When one of their adventures leads to the discovery of a secret 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.", "video": false, "id": 82702, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "How to Train Your Dragon 2", "tagline": "The training is over.", "vote_count": 941, "homepage": "http://www.howtotrainyourdragon.com/", "belongs_to_collection": {"backdrop_path": "/mvcfPkOvgDJG2lEAxTz0NKqoQLo.jpg", "poster_path": "/nJ7ud7XWnNCnGfRQUkUp2t17Sq3.jpg", "id": 89137, "name": "How to Train Your Dragon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646971", "adult": false, "backdrop_path": "/cHTJxPcq3hlshzOgHDRMCF8Wb9K.jpg", "production_companies": [{"name": "Mad Hatter Entertainment", "id": 20154}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2014-06-13", "popularity": 4.62113221391516, "original_title": "How to Train Your Dragon 2", "budget": 145000000, "cast": [{"name": "Jay Baruchel", "character": "Hiccup (voice)", "id": 449, "credit_id": "52fe48709251416c9108c6d1", "cast_id": 13, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Stoick the Vast (voice)", "id": 17276, "credit_id": "52fe48709251416c9108c6c5", "cast_id": 10, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Kristen Wiig", "character": "Ruffnut (voice)", "id": 41091, "credit_id": "52fe48709251416c9108c6c9", "cast_id": 11, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 2}, {"name": "Jonah Hill", "character": "Snotlout (voice)", "id": 21007, "credit_id": "52fe48709251416c9108c6cd", "cast_id": 12, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 3}, {"name": "Cate Blanchett", "character": "Valka (voice)", "id": 112, "credit_id": "52fe48709251416c9108c6f1", "cast_id": 20, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 4}, {"name": "Djimon Hounsou", "character": "Drago Bludvist (voice)", "id": 938, "credit_id": "52fe48709251416c9108c6f5", "cast_id": 21, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 5}, {"name": "Kit Harington", "character": "Eret, Son of Eret (voice)", "id": 239019, "credit_id": "52fe48709251416c9108c6f9", "cast_id": 22, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 6}, {"name": "Christopher Mintz-Plasse", "character": "Fishlegs (voice)", "id": 54691, "credit_id": "52fe48709251416c9108c6d5", "cast_id": 14, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 7}, {"name": "T.J. Miller", "character": "Tuffnut (voice)", "id": 51990, "credit_id": "52fe48709251416c9108c6d9", "cast_id": 15, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 8}, {"name": "America Ferrera", "character": "Astrid (voice)", "id": 59174, "credit_id": "52fe48709251416c9108c6dd", "cast_id": 16, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 9}, {"name": "Craig Ferguson", "character": "Gobber (voice)", "id": 24264, "credit_id": "52fe48709251416c9108c6e1", "cast_id": 17, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 10}, {"name": "Kieron Elliott", "character": "Hoark the Haggard (voice)", "id": 138620, "credit_id": "5444e67ac3a36819fb001401", "cast_id": 23, "profile_path": "/7dRvskBebg36l4FT6jxg2J5sevB.jpg", "order": 11}, {"name": "Philip McGrade", "character": "Starkard (voice)", "id": 138619, "credit_id": "5444e728c3a3683e05007274", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Andrew Ableson", "character": "Ug (voice)", "id": 83407, "credit_id": "5444e80d0e0a26633a007572", "cast_id": 25, "profile_path": "/7CIkYBhgHl7O59VXlKLKxgHCnEw.jpg", "order": 13}, {"name": "Gideon Emery", "character": "Teeny (voice)", "id": 35981, "credit_id": "5444e916c3a3683df70072fa", "cast_id": 26, "profile_path": "/csFpjCQyI2GXnTpsaOc2TzCGYVy.jpg", "order": 14}, {"name": "Simon Kassianides", "character": "No-Name (voice)", "id": 1234388, "credit_id": "5444ea210e0a2663330077c7", "cast_id": 27, "profile_path": "/3psuuKWeKuXGSoKtwcEM3QNNUMT.jpg", "order": 15}, {"name": "Randy Thom", "character": "Toothless (voice)", "id": 42267, "credit_id": "5444ebed0e0a266330007517", "cast_id": 28, "profile_path": "/gENCvbLHHHtxeZcPJIHcSq6Y4BW.jpg", "order": 16}], "directors": [{"name": "Dean DeBlois", "department": "Directing", "job": "Director", "credit_id": "52fe48709251416c9108c6e7", "profile_path": "/vofzPcdNUzUD1xqaMUwMAJRgFiy.jpg", "id": 69797}], "vote_average": 8.0, "runtime": 102}, "111190": {"poster_path": "/svVGLhrtngSrp0dVOQyuqZgM1ZC.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Lil and Roz are two lifelong friends, having grown up together as neighbors in an idyllic beach town. As adults, their sons have developed a friendship as strong as that which binds their mothers. One summer, all four are confronted by simmering emotions that have been mounting between them, and each find unexpected happiness in relationships that cross the bounds of convention.", "video": false, "id": 111190, "genres": [{"id": 18, "name": "Drama"}], "title": "Adore", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103267", "adult": false, "backdrop_path": "/ymkmGKZdhbthgiHsHvXPFLOmTY2.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Screen Australia", "id": 7584}, {"name": "Cin\u00e9@", "id": 2564}, {"name": "Hopscotch Features", "id": 21079}, {"name": "Mon Voisin Productions", "id": 22983}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "Screen NSW", "id": 10951}, {"name": "France T\u00e9l\u00e9visions", "id": 11795}, {"name": "Canal+", "id": 5358}], "release_date": "2013-09-06", "popularity": 0.946962098180001, "original_title": "Adore", "budget": 0, "cast": [{"name": "Naomi Watts", "character": "Lil", "id": 3489, "credit_id": "52fe4af3c3a36847f81ea0d3", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Robin Wright", "character": "Roz", "id": 32, "credit_id": "52fe4af3c3a36847f81ea0d7", "cast_id": 5, "profile_path": "/cke0NNZP4lHRtOethRy2XGSOp3E.jpg", "order": 1}, {"name": "Xavier Samuel", "character": "Ian", "id": 109438, "credit_id": "52fe4af3c3a36847f81ea0db", "cast_id": 6, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 2}, {"name": "James Frecheville", "character": "Tom", "id": 968863, "credit_id": "52fe4af3c3a36847f81ea0df", "cast_id": 7, "profile_path": "/fdm3sOJgXVgM1yo7a5GF53mVi7I.jpg", "order": 3}, {"name": "Ben Mendelsohn", "character": "Harold", "id": 77335, "credit_id": "52fe4af3c3a36847f81ea0e3", "cast_id": 8, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 4}, {"name": "Sophie Lowe", "character": "Hannah", "id": 103994, "credit_id": "52fe4af3c3a36847f81ea0e7", "cast_id": 9, "profile_path": "/rckY6LcOMB2XRRW2IsMhKEzKnx9.jpg", "order": 5}, {"name": "Gary Sweet", "character": "Saul", "id": 75170, "credit_id": "52fe4af3c3a36847f81ea0eb", "cast_id": 10, "profile_path": "/t7DfHinQBAXxIuddZL7r1ke7rZX.jpg", "order": 6}, {"name": "Jessica Tovey", "character": "Mary", "id": 212740, "credit_id": "52fe4af3c3a36847f81ea0ef", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Alyson Standen", "character": "Molly", "id": 152490, "credit_id": "52fe4af3c3a36847f81ea0f3", "cast_id": 12, "profile_path": "/7UB8F9oUmemqFAuOPRPMDIhNWYe.jpg", "order": 8}, {"name": "Dane Eade", "character": "Surfer lifeguard", "id": 1185778, "credit_id": "52fe4af3c3a36847f81ea0f7", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Charlee Thomas", "character": "Lil's grand-daughter", "id": 1185779, "credit_id": "52fe4af3c3a36847f81ea0fb", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Scott Pirlo", "character": "Assistant", "id": 1185780, "credit_id": "52fe4af3c3a36847f81ea0ff", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Isaac Cocking", "character": "Young Tom", "id": 1185781, "credit_id": "52fe4af3c3a36847f81ea103", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Anne Fontaine", "department": "Directing", "job": "Director", "credit_id": "52fe4af3c3a36847f81ea0c3", "profile_path": "/wtl2OPo3IydskWY3cMXInBba1w.jpg", "id": 48583}], "vote_average": 6.3, "runtime": 100}, "45657": {"poster_path": "/8dCj3W9j6OFKytakm197bJD3rhT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 498974, "overview": "A thriller centered on an institutionalized young woman who becomes terrorized by a ghost.", "video": false, "id": 45657, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Ward", "tagline": "Only Sanity Can Keep You Alive", "vote_count": 72, "homepage": "http://theward.theofficialjohncarpenter.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1369706", "adult": false, "backdrop_path": "/j01PwweLdwHk3e5pTAZazvAp2VS.jpg", "production_companies": [{"name": "FilmNation Entertainment", "id": 7493}, {"name": "Premiere Picture", "id": 3870}, {"name": "Echo Lake Entertainment", "id": 22308}, {"name": "A Bigger Boat", "id": 5855}, {"name": "North by Northwest Entertainment", "id": 1804}], "release_date": "2010-09-13", "popularity": 0.651992326325542, "original_title": "The Ward", "budget": 10000000, "cast": [{"name": "Lyndsy Fonseca", "character": "Iris", "id": 116882, "credit_id": "52fe46cdc3a36847f8112f85", "cast_id": 8, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 0}, {"name": "Amber Heard", "character": "Kristen", "id": 55085, "credit_id": "52fe46cdc3a36847f8112f89", "cast_id": 9, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Danielle Panabaker", "character": "Sarah", "id": 31838, "credit_id": "52fe46cdc3a36847f8112f8d", "cast_id": 10, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 2}, {"name": "Jared Harris", "character": "Dr. Stringer", "id": 15440, "credit_id": "52fe46cdc3a36847f8112f91", "cast_id": 11, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 3}, {"name": "Mamie Gummer", "character": "Emily", "id": 47281, "credit_id": "52fe46cdc3a36847f8112f95", "cast_id": 12, "profile_path": "/ptz8SYBGt8XJlH6m7pjqhQMr6D3.jpg", "order": 4}, {"name": "Laura-Leigh", "character": "Zoey", "id": 211539, "credit_id": "52fe46cdc3a36847f8112f99", "cast_id": 13, "profile_path": "/prUO6jOfVx1ZQHaQV4ZZZywCyok.jpg", "order": 5}, {"name": "Sydney Sweeney", "character": "Young Alice", "id": 115440, "credit_id": "52fe46cdc3a36847f8112f9d", "cast_id": 14, "profile_path": "/gDIVH64UYF1fA1O1Uf9E2d9Cmbu.jpg", "order": 6}, {"name": "D.R. Anderson", "character": "Roy", "id": 516722, "credit_id": "52fe46cdc3a36847f8112fa1", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Mika Boorem", "character": "Alice", "id": 21027, "credit_id": "52fe46cdc3a36847f8112fa5", "cast_id": 16, "profile_path": "/amQuR9PGz0yt6IXNnwLOAEkfPcq.jpg", "order": 8}, {"name": "Susanna Burney", "character": "Nurse Lundt", "id": 572071, "credit_id": "52fe46cdc3a36847f8112fa9", "cast_id": 17, "profile_path": "/znRWMVQzTTDFbFn55CxEGFxeaW7.jpg", "order": 9}, {"name": "Sean Cook", "character": "Jimmy", "id": 222532, "credit_id": "52fe46cdc3a36847f8112fad", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "R.J. Hampton", "character": "Mental Ward Patient", "id": 572072, "credit_id": "52fe46cdc3a36847f8112fb1", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Jillian Kramer", "character": "Monster Alice", "id": 572073, "credit_id": "52fe46cdc3a36847f8112fb5", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Milos Milicevic", "character": "Predator", "id": 87075, "credit_id": "52fe46cdc3a36847f8112fb9", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Sali Sayler", "character": "Tammy", "id": 572074, "credit_id": "52fe46cdc3a36847f8112fbd", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Kent Kimball", "character": "Cop #2 (uncredited)", "id": 572075, "credit_id": "52fe46cdc3a36847f8112fc1", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Tracy Schornick", "character": "Cop#1 (uncredited)", "id": 90537, "credit_id": "52fe46cdc3a36847f8112fc5", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Joanna Theobalds", "character": "Mental Ward Patient (uncredited)", "id": 572076, "credit_id": "52fe46cdc3a36847f8112fc9", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Patrick Treadway", "character": "2nd Floor Nurse (uncredited)", "id": 58796, "credit_id": "52fe46cdc3a36847f8112fcd", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Lonny W. Waddle", "character": "Orderly (uncredited)", "id": 572077, "credit_id": "52fe46cdc3a36847f8112fd1", "cast_id": 27, "profile_path": null, "order": 19}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe46cdc3a36847f8112f75", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.4, "runtime": 88}, "45658": {"poster_path": "/8gUWukFYhc8mYtLB1uiXpUjUxBD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2614773, "overview": "When an alcoholic relapses, causing him to lose his wife and his job, he holds a yard sale on his front lawn in an attempt to start over. A new neighbor might be the key to his return to form.", "video": false, "id": 45658, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Everything Must Go", "tagline": "Lost is a good place to find yourself", "vote_count": 52, "homepage": "http://www.everythingmustgo-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1531663", "adult": false, "backdrop_path": "/azqdlJvqTk0z1SiWNVsFsNZX7ma.jpg", "production_companies": [{"name": "Birdsong Pictures", "id": 7436}, {"name": "IM Global", "id": 7437}], "release_date": "2010-10-15", "popularity": 0.392920431776194, "original_title": "Everything Must Go", "budget": 5000000, "cast": [{"name": "Rebecca Hall", "character": "Samantha", "id": 15556, "credit_id": "52fe46cdc3a36847f8112ff9", "cast_id": 7, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 0}, {"name": "Will Ferrell", "character": "Nick Halsey", "id": 23659, "credit_id": "52fe46cdc3a36847f8112ffd", "cast_id": 8, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 1}, {"name": "Glenn Howerton", "character": "Gary", "id": 77870, "credit_id": "52fe46cdc3a36847f8113001", "cast_id": 9, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 2}, {"name": "Laura Dern", "character": "Delilah", "id": 4784, "credit_id": "52fe46cdc3a36847f8113005", "cast_id": 10, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 3}, {"name": "Christopher Jordan Wallace", "character": "Kenny Loftus", "id": 82163, "credit_id": "52fe46cdc3a36847f811300f", "cast_id": 12, "profile_path": "/3vV8kVZhfIztmIUYw1Hq6JEiAJB.jpg", "order": 4}, {"name": "Michael Pe\u00f1a", "character": "Frank Garcia", "id": 454, "credit_id": "52fe46cdc3a36847f8113013", "cast_id": 13, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 5}, {"name": "Stephen Root", "character": "Elliot", "id": 17401, "credit_id": "52fe46cdc3a36847f811301d", "cast_id": 15, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 6}], "directors": [{"name": "Dan Rush", "department": "Directing", "job": "Director", "credit_id": "52fe46cdc3a36847f8112fef", "profile_path": "/2r2lzpEhJqQjzKN8AdvMFhpQssF.jpg", "id": 133406}], "vote_average": 5.5, "runtime": 97}, "82703": {"poster_path": "/q4FQXK4a4HSb4pajZL4ZFKHVsjC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 272912430, "overview": "A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-travel machine is stolen and moments in history begin to be changed.", "video": false, "id": 82703, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Mr. Peabody & Sherman", "tagline": "He's Leaving His Mark On History", "vote_count": 250, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0864835", "adult": false, "backdrop_path": "/hpIUiHIyNKWsid3Tz4adtYsUqo1.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "20th Century Fox", "id": 25}], "release_date": "2014-03-07", "popularity": 1.6890769476442, "original_title": "Mr. Peabody & Sherman", "budget": 145000000, "cast": [{"name": "Ty Burrell", "character": "Mr. Peabody", "id": 15232, "credit_id": "52fe48709251416c9108c753", "cast_id": 16, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 0}, {"name": "Max Charles", "character": "Sherman", "id": 558928, "credit_id": "52fe48709251416c9108c763", "cast_id": 20, "profile_path": "/bVYBMRg7rtVYXLCujthcRwMLUW7.jpg", "order": 1}, {"name": "Ariel Winter", "character": "Penny Peterson", "id": 42160, "credit_id": "52fe48709251416c9108c747", "cast_id": 13, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 2}, {"name": "Allison Janney", "character": "Mrs. Grunion", "id": 19, "credit_id": "52fe48709251416c9108c74b", "cast_id": 14, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 3}, {"name": "Ellie Kemper", "character": "Paula Peterson", "id": 475512, "credit_id": "52fe48709251416c9108c74f", "cast_id": 15, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 4}, {"name": "Stephen Colbert", "character": "Paul Peterson", "id": 58769, "credit_id": "52fe48709251416c9108c757", "cast_id": 17, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 5}, {"name": "Stephen Tobolowsky", "character": "Principal Purdy", "id": 537, "credit_id": "52fe48709251416c9108c75b", "cast_id": 18, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 6}, {"name": "Karan Brar", "character": "Mason", "id": 111923, "credit_id": "52fe48709251416c9108c75f", "cast_id": 19, "profile_path": "/eelNaGrUz5jRyEk6XlH6C1q5pON.jpg", "order": 7}, {"name": "Joshua Rush", "character": "Carl", "id": 212184, "credit_id": "52fe48709251416c9108c767", "cast_id": 21, "profile_path": "/llQinkw36ZRjL23njpTmrU9wZ94.jpg", "order": 8}, {"name": "Adam Alexi-Malle", "character": "French Peasant", "id": 20804, "credit_id": "52fe48709251416c9108c76b", "cast_id": 22, "profile_path": "/4wopg5aGUm9oVlwxXIsdG8WU82B.jpg", "order": 9}, {"name": "Stanley Tucci", "character": "Leonardo Da Vinci", "id": 2283, "credit_id": "53033f18c3a3680a1956bb0f", "cast_id": 25, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 10}, {"name": "Lauri Fraser", "character": "Marie Antoinette/ Egyptian Woman", "id": 1054484, "credit_id": "53160d6492514158610008cb", "cast_id": 26, "profile_path": "/w1WRH4ZXx4hLZLsvZnsZvJbjh68.jpg", "order": 11}, {"name": "Leslie Mann", "character": "Patty Pearson", "id": 41087, "credit_id": "53160db6c3a3681399000d2f", "cast_id": 27, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 12}, {"name": "Lake Bell", "character": "Mona", "id": 25703, "credit_id": "532dc87ac3a3685fdb00243b", "cast_id": 28, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 13}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe48709251416c9108c725", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 7.0, "runtime": 92}, "62046": {"poster_path": "/seYUPkTnd4BAFZEqxWuByEXmUOK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man caught in the middle of two simultaneous robberies at a bank desperately tries to protect the teller with whom he's secretly in love.", "video": false, "id": 62046, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Flypaper", "tagline": "Two sets of bank robbers. One very sticky heist.", "vote_count": 67, "homepage": "http://wn.com/Flypaper_%282011_film%29", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1541160", "adult": false, "backdrop_path": "/x5XtHyZluo5UYVGiHlSUk590nGa.jpg", "production_companies": [{"name": "The Safran Company", "id": 11565}, {"name": "Rising Star", "id": 1208}, {"name": "Foresight Unlimited", "id": 21897}, {"name": "Shifting Gears Entertainment", "id": 23159}], "release_date": "2011-08-19", "popularity": 0.340066261851609, "original_title": "Flypaper", "budget": 5000000, "cast": [{"name": "Patrick Dempsey", "character": "Tripp", "id": 18352, "credit_id": "52fe4670c3a368484e090bbd", "cast_id": 2, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 0}, {"name": "Ashley Judd", "character": "Kaitlin", "id": 15852, "credit_id": "52fe4670c3a368484e090bc1", "cast_id": 3, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 1}, {"name": "Tim Blake Nelson", "character": "Peanut Butter", "id": 1462, "credit_id": "52fe4670c3a368484e090bc5", "cast_id": 4, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 2}, {"name": "Mekhi Phifer", "character": "Darrien", "id": 327, "credit_id": "52fe4670c3a368484e090bd1", "cast_id": 7, "profile_path": "/xrv9RDMPoTd9NsfpUzL81XglAmk.jpg", "order": 3}, {"name": "Matt Ryan", "character": "Gates", "id": 127712, "credit_id": "52fe4670c3a368484e090be1", "cast_id": 11, "profile_path": "/vhtPgliaSVRit9WkHxKT1julQDx.jpg", "order": 4}, {"name": "Jeffrey Tambor", "character": "Gordon Blythe", "id": 4175, "credit_id": "52fe4670c3a368484e090bcd", "cast_id": 6, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 5}, {"name": "John Ventimiglia", "character": "Weinstein", "id": 87707, "credit_id": "52fe4670c3a368484e090bdd", "cast_id": 10, "profile_path": "/ws3R1TndkITQMGBariX3UaUjqXP.jpg", "order": 6}, {"name": "Pruitt Taylor Vince", "character": "Jelly", "id": 3201, "credit_id": "52fe4670c3a368484e090be5", "cast_id": 12, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 7}, {"name": "Curtis Armstrong", "character": "Mitchell Wolf", "id": 87003, "credit_id": "52fe4670c3a368484e090bd5", "cast_id": 8, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 8}, {"name": "Rob Huebel", "character": "Rex Newbauer", "id": 80595, "credit_id": "539d1a2fc3a3683b48001dea", "cast_id": 13, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 9}, {"name": "Adrian Martinez", "character": "Mr. Clean", "id": 94432, "credit_id": "52fe4670c3a368484e090bc9", "cast_id": 5, "profile_path": "/zDnnzak4BLb5dNc9taqLNprkRvw.jpg", "order": 10}, {"name": "Natalia Safran", "character": "Swiss Miss", "id": 1173002, "credit_id": "539d1a4ac3a3683b41001ec5", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Octavia Spencer", "character": "Madge Wiggins (as Octavia J. Spencer)", "id": 6944, "credit_id": "52fe4670c3a368484e090bd9", "cast_id": 9, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 12}, {"name": "Eddie Matthews", "character": "Jack Hayes", "id": 177031, "credit_id": "539d1b64c3a3683b48001e21", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Rob Boltin", "character": "Credit Manager", "id": 149653, "credit_id": "539d1b8ec3a3683b41001f0d", "cast_id": 18, "profile_path": "/h3KmygUcjYdQLyjonvf9tJquhW5.jpg", "order": 14}, {"name": "James DuMont", "character": "Detective", "id": 97446, "credit_id": "539d1bc7c3a3683b31001e6b", "cast_id": 19, "profile_path": "/A448koSIESyi91EmOrCJwIC2wDA.jpg", "order": 15}, {"name": "James DuMont", "character": "Elderly Customer", "id": 97446, "credit_id": "539d1c15c3a3683b2a001ee7", "cast_id": 20, "profile_path": "/A448koSIESyi91EmOrCJwIC2wDA.jpg", "order": 16}, {"name": "Joseph Nemmers", "character": "Cop", "id": 1330719, "credit_id": "539d1c23c3a3683b59001eda", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Victor Palacios", "character": "EMT", "id": 1330720, "credit_id": "539d1c2fc3a3683b2a001efc", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Raymond Rivera", "character": "Hector the Janitor", "id": 1330721, "credit_id": "539d1c42c3a3683b59001eea", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Crystal Kung", "character": "News Reporter #1", "id": 1330722, "credit_id": "539d1c54c3a3683b50001e5b", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Tamara Stuparich de la Barra", "character": "News Reporter #2", "id": 1330723, "credit_id": "539d1c75c3a3683b41001f40", "cast_id": 25, "profile_path": null, "order": 21}], "directors": [{"name": "Rob Minkoff", "department": "Directing", "job": "Director", "credit_id": "52fe4670c3a368484e090bb9", "profile_path": "/xB2zqJU0mQkU1dEk93SVyiEgwVj.jpg", "id": 18898}], "vote_average": 6.4, "runtime": 87}, "37472": {"poster_path": "/9mu13RSsvyDdlyD8TyjuQVrT0gM.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 36000000, "overview": "Having defeated the best fighters of the Imperial Japanese army in occupied Shanghai, Ip Man and his family settle in post-war Hong Kong.Struggling to make a living, Master Ip opens a kung fu school to bring his celebrated art of Wing Chun to the troubled youth of Hong Kong. His growing reputation soon brings challenges from powerful enemies, including pre-eminent Hung Gar master, Hung Quan (Sammo Hung). However, when corrupt colonial officials stage a life-or-death contest with formidable British boxer, Twister (Darren Shahlavi), to humiliate the Chinese people, the masters quickly forget their differences. Soon, the eyes of the nation are on the one man capable of securing a victory-Grandmaster Ip Man!", "video": false, "id": 37472, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ip Man 2", "tagline": "Behind every great martial artist lies a teacher.", "vote_count": 265, "homepage": "http://www.ipman2-movie.com/", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1386932", "adult": false, "backdrop_path": "/cVRia71LWCeRixU7FfBO4tAT7D8.jpg", "production_companies": [{"name": "Mandarin Films Distribution Co.", "id": 4054}], "release_date": "2010-04-21", "popularity": 0.234344055818692, "original_title": "Yip Man 2", "budget": 12902809, "cast": [{"name": "Donnie Yen", "character": "Ip Man", "id": 1341, "credit_id": "52fe464c9251416c9104ff5f", "cast_id": 6, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 0}, {"name": "Sammo Hung", "character": "Hung Chun-nam", "id": 62410, "credit_id": "52fe464c9251416c9104ff63", "cast_id": 7, "profile_path": "/hpqwIMmLLpn0mMmpi4EhzARK24K.jpg", "order": 1}, {"name": "Simon Yam", "character": "Zhou Qing Quan", "id": 20519, "credit_id": "52fe464c9251416c9104ff67", "cast_id": 9, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 2}, {"name": "Lynn Hung", "character": "Cheung Wing-sing", "id": 117760, "credit_id": "52fe464c9251416c9104ff5b", "cast_id": 5, "profile_path": "/fcpvkrle1JA944eylXERw3gqgus.jpg", "order": 3}, {"name": "Fan Siu-Wong", "character": "Jin Shanzhao", "id": 130598, "credit_id": "52fe464c9251416c9104ff71", "cast_id": 12, "profile_path": "/tFfXqPjqhVItv5lkUVtSMbw1SPd.jpg", "order": 4}, {"name": "Lo Meng", "character": "Master Law", "id": 240155, "credit_id": "52fe464c9251416c9104ff75", "cast_id": 13, "profile_path": "/em4u0wBldv2e2CQR6kmGES1bGPs.jpg", "order": 5}, {"name": "Huang Xiaoming", "character": "Wong Shun-Leung", "id": 109434, "credit_id": "5303d0fbc3a3680a216e2464", "cast_id": 15, "profile_path": "/96RwznSl1shVLwLD2fT2E0XHOqi.jpg", "order": 6}, {"name": "Kent Cheng", "character": "Fatso", "id": 65966, "credit_id": "540891fec3a36858250013b8", "cast_id": 25, "profile_path": "/am27mGN3G61eux7yCUc9mXp5NJB.jpg", "order": 7}, {"name": "Christian Bachini", "character": "Twister supporter", "id": 1421366, "credit_id": "54cfc02c925141475d0085c9", "cast_id": 26, "profile_path": "/4fi6pQqYedjfzztSkt9HA6fKk2k.jpg", "order": 8}], "directors": [{"name": "Wilson Yip", "department": "Directing", "job": "Director", "credit_id": "52fe464c9251416c9104ff6d", "profile_path": "/6TDvEZYjxBLqZW6ER5fBi8d0ydK.jpg", "id": 63571}], "vote_average": 7.0, "runtime": 109}, "127585": {"poster_path": "/qKkFk9HELmABpcPoc1HHZGIxQ5a.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 746000000, "overview": "The ultimate X-Men ensemble fights a war for the survival of the species across two time periods in X-MEN: DAYS OF FUTURE PAST. The beloved characters from the original \u201cX-Men\u201d film trilogy join forces with their younger selves from \u201cX-Men: First Class,\u201d in an epic battle that must change the past \u2013 to save our future.", "video": false, "id": 127585, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "X-Men: Days of Future Past", "tagline": "To save the future, they must alter the past", "vote_count": 1842, "homepage": "http://www.x-menmovies.com/", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1877832", "adult": false, "backdrop_path": "/ai9UKd8KownQKGIh1m5p3DuEeMm.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Donners' Company", "id": 431}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "TSG Entertainment", "id": 22213}, {"name": "Down Productions", "id": 37336}], "release_date": "2014-05-23", "popularity": 6.99201307334913, "original_title": "X-Men: Days of Future Past", "budget": 250000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "52fe4affc3a368484e172013", "cast_id": 9, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "James McAvoy", "character": "Professor Charles Xavier (Past)", "id": 5530, "credit_id": "52fe4affc3a368484e171fff", "cast_id": 4, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Patrick Stewart", "character": "Professor Charles Xavier (Future)", "id": 2387, "credit_id": "52fe4affc3a368484e171ffb", "cast_id": 3, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 2}, {"name": "Michael Fassbender", "character": "Erik Lehnsherr / Magneto (Past)", "id": 17288, "credit_id": "52fe4affc3a368484e172003", "cast_id": 5, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 3}, {"name": "Ian McKellen", "character": "Erik Lehnsherr / Magneto (Future)", "id": 1327, "credit_id": "52fe4affc3a368484e172007", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 4}, {"name": "Jennifer Lawrence", "character": "Raven / Mystique", "id": 72129, "credit_id": "52fe4affc3a368484e17200b", "cast_id": 7, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 5}, {"name": "Nicholas Hoult", "character": "Hank McCoy / Beast", "id": 3292, "credit_id": "52fe4affc3a368484e17200f", "cast_id": 8, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 6}, {"name": "Ellen Page", "character": "Kitty Pryde / Shadowcat", "id": 27578, "credit_id": "52fe4affc3a368484e17201b", "cast_id": 11, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 7}, {"name": "Shawn Ashmore", "character": "Iceman", "id": 11023, "credit_id": "52fe4affc3a368484e17201f", "cast_id": 12, "profile_path": "/7IFHYkEFDvqVWIMBNZ1YuLwdXkA.jpg", "order": 8}, {"name": "Peter Dinklage", "character": "Bolivar Trask", "id": 22970, "credit_id": "52fe4affc3a368484e172023", "cast_id": 13, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 9}, {"name": "Halle Berry", "character": "Ororo Munroe / Storm", "id": 4587, "credit_id": "52fe4affc3a368484e172027", "cast_id": 14, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 10}, {"name": "Booboo Stewart", "character": "James Proudstar / Warpath", "id": 121868, "credit_id": "52fe4affc3a368484e17202b", "cast_id": 15, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 11}, {"name": "Fan Bingbing", "character": "Clarice Ferguson / Blink", "id": 64439, "credit_id": "52fe4affc3a368484e17202f", "cast_id": 16, "profile_path": "/8DyH7uapvuJaTjrXv9ryhRARUC2.jpg", "order": 12}, {"name": "Daniel Cudmore", "character": "Piotr Rasputin / Colossus", "id": 84222, "credit_id": "52fe4affc3a368484e172033", "cast_id": 17, "profile_path": "/bNVyweJ6lq78vaWpYcYMjnGFrZc.jpg", "order": 13}, {"name": "Adan Canto", "character": "Roberto da Costa / Sunspot", "id": 1010189, "credit_id": "52fe4affc3a368484e172043", "cast_id": 21, "profile_path": "/eJzvFyuwGm1oFhCX5wFMiIHN4hG.jpg", "order": 14}, {"name": "Omar Sy", "character": "Lucas Bishop", "id": 78423, "credit_id": "52fe4affc3a368484e172047", "cast_id": 22, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 15}, {"name": "Evan Peters", "character": "Pietro Maximoff / Quicksilver", "id": 55089, "credit_id": "52fe4affc3a368484e17204b", "cast_id": 23, "profile_path": "/2a1XA1ynmbZZj2nauwsc03OzRB.jpg", "order": 16}, {"name": "Lucas Till", "character": "Alex Summers / Havok", "id": 429, "credit_id": "52fe4affc3a368484e17204f", "cast_id": 24, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 17}, {"name": "Josh Helman", "character": "William Stryker", "id": 1056053, "credit_id": "52fe4affc3a368484e172053", "cast_id": 25, "profile_path": "/rmj2HHc1uNESTlHk50qnCHK11jD.jpg", "order": 18}, {"name": "Evan Jonigkeit", "character": "Toad", "id": 1284084, "credit_id": "52fe4affc3a368484e17209f", "cast_id": 38, "profile_path": "/t90vEEaBojnrkTOztP2d6EX77Yp.jpg", "order": 19}, {"name": "Famke Janssen", "character": "Jean Grey", "id": 10696, "credit_id": "5383be67c3a368059e00945f", "cast_id": 40, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 20}, {"name": "James Marsden", "character": "Scott Summers / Cyclops", "id": 11006, "credit_id": "5383be76c3a36805a8008df2", "cast_id": 41, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 21}, {"name": "Anna Paquin", "character": "Rogue", "id": 10690, "credit_id": "5383be87c3a36805950093d6", "cast_id": 42, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 22}, {"name": "Mark Camacho", "character": "President Richard Nixon", "id": 7013, "credit_id": "5383becac3a36805a8008df6", "cast_id": 43, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 23}, {"name": "Kelsey Grammer", "character": "Hank McCoy / Beast (Older)", "id": 7090, "credit_id": "5383bef6c3a36805950093da", "cast_id": 44, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 24}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe4affc3a368484e171ff1", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 7.7, "runtime": 131}, "266856": {"poster_path": "/4jspr8hLLuju59bCnMiefzRW4p0.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 121201940, "overview": "A look at the relationship between the famous physicist Stephen Hawking and his wife.", "video": false, "id": 266856, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Theory of Everything", "tagline": "His Mind Changed Our World. Her Love Changed His.", "vote_count": 574, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2980516", "adult": false, "backdrop_path": "/geAe08WmchATnZF461WffQBqJk1.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}], "release_date": "2014-11-26", "popularity": 5.30253029498745, "original_title": "The Theory of Everything", "budget": 15000000, "cast": [{"name": "Eddie Redmayne", "character": "Stephen Hawking", "id": 37632, "credit_id": "53db406e0e0a261897000df6", "cast_id": 10, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 0}, {"name": "Felicity Jones", "character": "Jane Hawking", "id": 72855, "credit_id": "535c6df30e0a264feb0022c0", "cast_id": 2, "profile_path": "/gU3lCDCdiY1uAVGFFyTcSQ3M7E8.jpg", "order": 1}, {"name": "Harry Lloyd", "character": "Brian", "id": 205258, "credit_id": "535c6e1e0e0a264fdb0021ac", "cast_id": 4, "profile_path": "/vI6FWizXNa5quCyIiTd06gxNQu1.jpg", "order": 2}, {"name": "David Thewlis", "character": "Dennis Sciama", "id": 11207, "credit_id": "535c6e2e0e0a264fd5002390", "cast_id": 5, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 3}, {"name": "Emily Watson", "character": "Beryl Wilde", "id": 1639, "credit_id": "535c6e040e0a264fe800232b", "cast_id": 3, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 4}, {"name": "Simon McBurney", "character": "Frank Hawking", "id": 16358, "credit_id": "546e724ac3a3682fa10000c4", "cast_id": 12, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 5}, {"name": "Lucy Chappell", "character": "Mary Hawking", "id": 1387381, "credit_id": "546e725e92514112ee0000c2", "cast_id": 13, "profile_path": "/fzufE0bYmUgupoH0ZxR29lEFt3C.jpg", "order": 6}, {"name": "Charlotte Hope", "character": "Philippa Hawking", "id": 1052255, "credit_id": "535c6e3d0e0a264fde002314", "cast_id": 6, "profile_path": "/3IouhqclzFgfzGm6LEVAnQKhRev.jpg", "order": 7}, {"name": "Abigail Cruttenden", "character": "Isobel Hawking", "id": 73845, "credit_id": "546e72d092514112ee0000d2", "cast_id": 17, "profile_path": "/bEEZjMMMgEIAb3OXNGqcvYT0ryA.jpg", "order": 8}, {"name": "Christian McKay", "character": "Roger Penrose", "id": 28478, "credit_id": "546e727592514112f000009a", "cast_id": 14, "profile_path": "/sNzMFhhayZvBCYak24Y306xajA.jpg", "order": 9}, {"name": "Adam Godley", "character": "Senior Doctor, Cambridge Hospital", "id": 23429, "credit_id": "546e729cc3a3682f9a0000d7", "cast_id": 16, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 10}, {"name": "Charlie Cox", "character": "Jonathan Hellyer Jones", "id": 23458, "credit_id": "546e7287c3a3682faa0000a1", "cast_id": 15, "profile_path": "/zxkaGPuJ7MfO7s1uOhVqBdYqW9z.jpg", "order": 11}, {"name": "Maxine Peake", "character": "Elaine Mason", "id": 76944, "credit_id": "535c7025c3a36830b0002bd6", "cast_id": 9, "profile_path": "/4WgxnjPl8YgyMjKVwREtN8iLTX8.jpg", "order": 12}, {"name": "Tom Prior", "character": "Robert Hawking (Age 17)", "id": 1361963, "credit_id": "546e733192514112eb0000e6", "cast_id": 18, "profile_path": "/oHHV5txGjAXBTVIj7kkkqoy3hUC.jpg", "order": 13}, {"name": "Sophie Perry", "character": "Lucy Hawking (Age 14)", "id": 1387383, "credit_id": "546e734a92514112f00000be", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Finlay Wright-Stephens", "character": "Timothy Hawking (Age 8)", "id": 1387384, "credit_id": "546e735e92514112f30000d8", "cast_id": 20, "profile_path": null, "order": 15}], "directors": [{"name": "James Marsh", "department": "Directing", "job": "Director", "credit_id": "535c6a0f0e0a264feb00226f", "profile_path": "/hixQKy5DDaltidt3PR1oYa5fpq2.jpg", "id": 76998}], "vote_average": 7.9, "runtime": 123}, "48572": {"poster_path": "/h43jPTebYOabSXqNQqrRQpg6DPc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set in Middle America, a group of teens receive an online invitation for sex, though they soon encounter Christian fundamentalists with a much more sinister agenda.", "video": false, "id": 48572, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Red State", "tagline": "Fear God.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0873886", "adult": false, "backdrop_path": "/mKWrj4BAeuzAWOoShVcmhwmyza6.jpg", "production_companies": [{"name": "The Harvey Boys", "id": 7784}, {"name": "NVSH Productions", "id": 7785}], "release_date": "2011-09-23", "popularity": 0.407385741880433, "original_title": "Red State", "budget": 4000000, "cast": [{"name": "Michael Parks", "character": "Pastor Abin Cooper", "id": 2536, "credit_id": "52fe476bc3a36847f8134bb3", "cast_id": 7, "profile_path": "/54P22YwbYCwfjJWT1jbiHN77TD.jpg", "order": 0}, {"name": "John Goodman", "character": "Joseph Keenan", "id": 1230, "credit_id": "52fe476bc3a36847f8134ba7", "cast_id": 4, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Melissa Leo", "character": "Sara", "id": 6832, "credit_id": "52fe476bc3a36847f8134bbb", "cast_id": 9, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 2}, {"name": "Michael Angarano", "character": "Travis", "id": 11665, "credit_id": "52fe476bc3a36847f8134baf", "cast_id": 6, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 3}, {"name": "Kyle Gallner", "character": "Jarod", "id": 59219, "credit_id": "52fe476bc3a36847f8134ba3", "cast_id": 3, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 4}, {"name": "Nicholas Braun", "character": "Billy-Ray", "id": 85139, "credit_id": "52fe476bc3a36847f8134beb", "cast_id": 21, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 5}, {"name": "Kerry Bish\u00e9", "character": "Cheyenne", "id": 58356, "credit_id": "52fe476bc3a36847f8134bdb", "cast_id": 17, "profile_path": "/vgyxPcX86ASm1fn3S64TEVQ47Uv.jpg", "order": 6}, {"name": "Stephen Root", "character": "Sherrif Wynan", "id": 17401, "credit_id": "52fe476bc3a36847f8134bbf", "cast_id": 10, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 7}, {"name": "Matt Jones", "character": "Deputy Pete", "id": 191202, "credit_id": "52fe476bc3a36847f8134bef", "cast_id": 22, "profile_path": "/wcB788lpiyc58s0F3nzqZnspISA.jpg", "order": 8}, {"name": "Kevin Alejandro", "character": "Harry, the Tactical Agent", "id": 116474, "credit_id": "52fe476bc3a36847f8134bab", "cast_id": 5, "profile_path": "/5BnTxO2E3GrHsZmmO7XwML0OnDF.jpg", "order": 9}, {"name": "Ralph Garman", "character": "Caleb", "id": 60286, "credit_id": "52fe476cc3a36847f8134bff", "cast_id": 26, "profile_path": "/vMzb4yCslLhJb7CQkS3R1jbyCO6.jpg", "order": 10}, {"name": "Anna Gunn", "character": "Travis' Mother", "id": 134531, "credit_id": "52fe476bc3a36847f8134bb7", "cast_id": 8, "profile_path": "/6yLKtfYFWbJp5HAjvCecQCYlmqk.jpg", "order": 11}, {"name": "Kevin Pollak", "character": "ASAC Brooks", "id": 7166, "credit_id": "52fe476bc3a36847f8134bc3", "cast_id": 11, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 12}, {"name": "Betty Aberlin", "character": "Abigail", "id": 140881, "credit_id": "52fe476bc3a36847f8134bc7", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Jennifer Schwalbach Smith", "character": "Esther (as Jennifer Schwalbach)", "id": 23658, "credit_id": "52fe476bc3a36847f8134bd1", "cast_id": 14, "profile_path": "/Acb5bHoFWoeZdNYjofp89E0BFyA.jpg", "order": 14}, {"name": "Patrick Fischler", "character": "Agent Hammond", "id": 52801, "credit_id": "52fe476bc3a36847f8134bdf", "cast_id": 18, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 15}, {"name": "Damian Young", "character": "Agent Carol", "id": 109144, "credit_id": "52fe476bc3a36847f8134be3", "cast_id": 19, "profile_path": "/vW2CSkKPnahjK1xoLRR6iw86eeU.jpg", "order": 16}, {"name": "David Marciano", "character": "Agent Eccles", "id": 169292, "credit_id": "52fe476bc3a36847f8134be7", "cast_id": 20, "profile_path": "/xRQtCCx6LCqH2ft7m8tooCjZrrj.jpg", "order": 17}, {"name": "Kaylee DeFer", "character": "Dana", "id": 1216163, "credit_id": "52fe476cc3a36847f8134c47", "cast_id": 40, "profile_path": "/m8vynStpk6MzXhkSdZiMulRYWK8.jpg", "order": 18}, {"name": "Ronnie Connell", "character": "Randy", "id": 1042471, "credit_id": "52fe476cc3a36847f8134bf3", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Alexa Nikolas", "character": "Jesse", "id": 152302, "credit_id": "52fe476cc3a36847f8134bf7", "cast_id": 24, "profile_path": "/vRMt63qfz4ZkMOdczqkxxus4gMi.jpg", "order": 20}, {"name": "Cooper Thornton", "character": "Plastic Wrap Man", "id": 162828, "credit_id": "52fe476cc3a36847f8134bfb", "cast_id": 25, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 21}, {"name": "James Parks", "character": "Mordechai", "id": 87312, "credit_id": "52fe476cc3a36847f8134c03", "cast_id": 27, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 22}, {"name": "Haley Ramm", "character": "Maggie", "id": 61555, "credit_id": "52fe476cc3a36847f8134c07", "cast_id": 28, "profile_path": "/3g2L9R6GIvkx7YfHqZygjFemsLk.jpg", "order": 23}, {"name": "Elizabeth Tripp", "character": "Melanie", "id": 1148417, "credit_id": "52fe476cc3a36847f8134c0b", "cast_id": 29, "profile_path": null, "order": 24}, {"name": "Molly Livingston", "character": "Fiona May", "id": 1203770, "credit_id": "52fe476cc3a36847f8134c0f", "cast_id": 30, "profile_path": null, "order": 25}, {"name": "John Lacy", "character": "Travis' Father", "id": 1180860, "credit_id": "52fe476cc3a36847f8134c13", "cast_id": 31, "profile_path": "/8Yr58DhK0arBQCNJALcw0YZpm1Q.jpg", "order": 26}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe476bc3a36847f8134bcd", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.1, "runtime": 88}, "8978": {"poster_path": "/xblaA3nQoEMg3wPLKfLEwA7TU9v.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35294470, "overview": "On New Year's Eve, inside a police station that's about to be closed for good, officer Jake Roenick must cobble together a force made up cops and criminals to save themselves from a mob looking to kill mobster Marion Bishop.", "video": false, "id": 8978, "genres": [{"id": 53, "name": "Thriller"}], "title": "Assault on Precinct 13", "tagline": "Unite and fight.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sr", "name": "Srpski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398712", "adult": false, "backdrop_path": "/gVDw8QG2uDOHEmUNGpHoIatkJdo.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Why Not Productions", "id": 729}, {"name": "Liaison Films", "id": 20449}, {"name": "Biscayne Pictures", "id": 20450}], "release_date": "2005-01-19", "popularity": 0.888137686255289, "original_title": "Assault on Precinct 13", "budget": 30000000, "cast": [{"name": "Ethan Hawke", "character": "Sergeant Jake Roenick", "id": 569, "credit_id": "52fe44cec3a36847f80aaf77", "cast_id": 8, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 0}, {"name": "Laurence Fishburne", "character": "Marion Bishop", "id": 2975, "credit_id": "52fe44cec3a36847f80aaf7b", "cast_id": 9, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 1}, {"name": "Gabriel Byrne", "character": "Captain Marcus Duvall", "id": 5168, "credit_id": "52fe44cec3a36847f80aaf7f", "cast_id": 10, "profile_path": "/yQR6Exu12940oRXoCWmwULyWLP8.jpg", "order": 2}, {"name": "Maria Bello", "character": "Dr Alex Sabian", "id": 49, "credit_id": "52fe44cec3a36847f80aaf83", "cast_id": 11, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "Drea de Matteo", "character": "Iris Ferry", "id": 70767, "credit_id": "52fe44cec3a36847f80aaf87", "cast_id": 12, "profile_path": "/6rAp86rimrbRbZtm61jQoc5Fmkv.jpg", "order": 4}, {"name": "John Leguizamo", "character": "Beck", "id": 5723, "credit_id": "52fe44cec3a36847f80aaf8b", "cast_id": 13, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 5}, {"name": "Brian Dennehy", "character": "Sargeant Jasper O'Shea", "id": 6197, "credit_id": "52fe44cec3a36847f80aaf8f", "cast_id": 14, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 6}, {"name": "Ja Rule", "character": "Smiley", "id": 61658, "credit_id": "52fe44cec3a36847f80aaf93", "cast_id": 15, "profile_path": "/rXvVP8d4NWBdHxcTu3GTUrybZlX.jpg", "order": 7}, {"name": "Currie Graham", "character": "Mike Kahane", "id": 156590, "credit_id": "530f1feac3a3687491000abc", "cast_id": 16, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 8}, {"name": "Aisha Hinds", "character": "Anna", "id": 1192492, "credit_id": "530f1ffac3a368445f000682", "cast_id": 17, "profile_path": "/pDgm7OM9pT9rF5Q41lVVWj2cqOv.jpg", "order": 9}, {"name": "Matt Craven", "character": "Officer Kevin Capra", "id": 13525, "credit_id": "530f2007c3a36874af000a2e", "cast_id": 18, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 10}, {"name": "Fulvio Cecere", "character": "Ray Portnow", "id": 65808, "credit_id": "530f2015c3a36874af000a31", "cast_id": 19, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 11}, {"name": "Peter Bryant", "character": "Lt. Holloway", "id": 1224882, "credit_id": "530f2024c3a3687469000b5d", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Kim Coates", "character": "Officer Rosen", "id": 8335, "credit_id": "530f2034c3a3687491000ac3", "cast_id": 21, "profile_path": "/xGoPaGsqRWCsDDDmY1gNR8eoxTA.jpg", "order": 13}, {"name": "Hugh Dillon", "character": "Tony", "id": 67704, "credit_id": "530f2041c3a3687485000abb", "cast_id": 22, "profile_path": "/hwA4QTkxPGRf3pWWd4a9E08mWuR.jpg", "order": 14}, {"name": "Tig Fong", "character": "Danny Barbero", "id": 190917, "credit_id": "5399a34cc3a3681d0d001868", "cast_id": 33, "profile_path": "/6gRBRkmFqgX2Ek7ACmb1arpGmLv.jpg", "order": 15}, {"name": "Jessica Greco", "character": "Coral", "id": 87573, "credit_id": "5399a3a9c3a3681d1b0018b4", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Dorian Harewood", "character": "Gil", "id": 8656, "credit_id": "5399a3e8c3a3681d1b0018bf", "cast_id": 35, "profile_path": "/zZD1wReWRwa24HzBkwbMOcbpGS1.jpg", "order": 17}, {"name": "Arnold Pinnock", "character": "Carlyle", "id": 87575, "credit_id": "5399a417c3a3681cfd0017df", "cast_id": 36, "profile_path": "/gwS8LNLcDeeOOcrpJM7C6s66lav.jpg", "order": 18}, {"name": "Edward A. Queffelec", "character": "Bronco Gunman", "id": 1330118, "credit_id": "5399a480c3a3681d110018b6", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Sasha Roiz", "character": "Jason Elias", "id": 6071, "credit_id": "5494375dc3a3686ae100167b", "cast_id": 78, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 20}, {"name": "Ray Kahnert", "character": "Priest", "id": 1401312, "credit_id": "549437789251416e2200165e", "cast_id": 79, "profile_path": null, "order": 21}], "directors": [{"name": "Jean-Fran\u00e7ois Richet", "department": "Directing", "job": "Director", "credit_id": "52fe44cec3a36847f80aaf4f", "profile_path": null, "id": 58324}], "vote_average": 6.0, "runtime": 91}, "12914": {"poster_path": "/tk1jYOK6DRvBHAoHCueUVL3RSEe.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ba'al travels back in time and prevents the Stargate program from being started. SG-1 must somehow restore history.", "video": false, "id": 12914, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Stargate: Continuum", "tagline": "History may never repeat itself again.", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fwVVh9o0WZsZNstpX3O55ff7Hs8.jpg", "poster_path": "/5TTU7voIo3t0IYzZTPQQAbawy6Y.jpg", "id": 44215, "name": "Stargate SG-1 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0929629", "adult": false, "backdrop_path": "/iA5RfBnIzzpvwDPy5LHPrUKRl71.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Acme Shark", "id": 19241}], "release_date": "2008-07-29", "popularity": 0.175956054227746, "original_title": "Stargate: Continuum", "budget": 7000000, "cast": [{"name": "Ben Browder", "character": "Colonel Cameron Mitchell", "id": 26048, "credit_id": "52fe452c9251416c7504e10f", "cast_id": 1, "profile_path": "/uUFV9hqLUDwT0qsXGqx2KUzfVbO.jpg", "order": 0}, {"name": "Amanda Tapping", "character": "Colonel Samantha Carter", "id": 26087, "credit_id": "52fe452c9251416c7504e113", "cast_id": 3, "profile_path": "/a7rzcdtLEeNZ4MLLVkoPz2pufte.jpg", "order": 1}, {"name": "Christopher Judge", "character": "Teal'c", "id": 26088, "credit_id": "52fe452c9251416c7504e117", "cast_id": 4, "profile_path": "/5ZS5BJwSRLXxujP1eUeX8tJRscF.jpg", "order": 2}, {"name": "Michael Shanks", "character": "Dr. Daniel Jackson", "id": 26086, "credit_id": "52fe452c9251416c7504e11b", "cast_id": 5, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 3}, {"name": "Claudia Black", "character": "Vala Mal Doran", "id": 26054, "credit_id": "52fe452c9251416c7504e11f", "cast_id": 6, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 4}, {"name": "Beau Bridges", "character": "Major General Hank Landry", "id": 2222, "credit_id": "52fe452c9251416c7504e129", "cast_id": 9, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 5}, {"name": "Richard Dean Anderson", "character": "Major General Jack O'Neill", "id": 26085, "credit_id": "52fe452c9251416c7504e12d", "cast_id": 10, "profile_path": "/6BDsJWDSgb04ZHCXGHs1bgLsuEW.jpg", "order": 6}, {"name": "Cliff Simon", "character": "Ba'al", "id": 111378, "credit_id": "52fe452c9251416c7504e131", "cast_id": 11, "profile_path": "/nyG5XfZqH8HS6a3t9FgqtPtBRfF.jpg", "order": 7}, {"name": "Don S. Davis", "character": "Lieutenant General George Hammond", "id": 15863, "credit_id": "52fe452c9251416c7504e135", "cast_id": 12, "profile_path": "/w93ia4AoKKyRhgX2gzcW9IFJ3Xv.jpg", "order": 8}, {"name": "William Devane", "character": "President Henry Hayes", "id": 21416, "credit_id": "52fe452c9251416c7504e139", "cast_id": 13, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 9}, {"name": "Steve Bacic", "character": "Camulus", "id": 33355, "credit_id": "52fe452c9251416c7504e13d", "cast_id": 14, "profile_path": "/pQEALNHNqEs1je9rFCA59kif3Rz.jpg", "order": 10}, {"name": "Gary Jones", "character": "Chief Mst Sgt. Walter Harriman", "id": 5494, "credit_id": "52fe452c9251416c7504e141", "cast_id": 15, "profile_path": "/f9Y1MNXZyaPLoWNxhuIiVlUpTtu.jpg", "order": 11}, {"name": "Peter Williams", "character": "Apophis", "id": 12252, "credit_id": "52fe452c9251416c7504e145", "cast_id": 16, "profile_path": "/urZztHCeApsdgxeo4JZOcYODMjG.jpg", "order": 12}, {"name": "Jacqueline Samuda", "character": "Nirrti", "id": 111379, "credit_id": "52fe452c9251416c7504e149", "cast_id": 17, "profile_path": "/s87yoISVoESDrMlE9sxGigO9iGI.jpg", "order": 13}], "directors": [{"name": "Martin Wood", "department": "Directing", "job": "Director", "credit_id": "52fe452c9251416c7504e1af", "profile_path": "/i0MdTVEGNcotKeFhWgfPAVPaNA0.jpg", "id": 1214381}], "vote_average": 6.8, "runtime": 98}, "787": {"poster_path": "/dqs5BmwSULtB28Kls3IB6khTQwp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 478207520, "overview": "A bored married couple is surprised to learn that they are both assassins hired by competing agencies to kill each other.", "video": false, "id": 787, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mr. & Mrs. Smith", "tagline": "Smart and sexy.", "vote_count": 778, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0356910", "adult": false, "backdrop_path": "/n4GhKs24bQK2XsdlZ5bZFljzlsK.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Dutch Oven", "id": 489}, {"name": "New Regency Productions", "id": 490}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2005-06-09", "popularity": 2.07850416193022, "original_title": "Mr. & Mrs. Smith", "budget": 110000000, "cast": [{"name": "Angelina Jolie", "character": "Jane Smith", "id": 11701, "credit_id": "52fe4276c3a36847f80208c7", "cast_id": 19, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 0}, {"name": "Brad Pitt", "character": "John Smith", "id": 287, "credit_id": "52fe4276c3a36847f80208cb", "cast_id": 20, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Eddie", "id": 4937, "credit_id": "52fe4276c3a36847f80208cf", "cast_id": 21, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Adam Brody", "character": "Benjamin Danz", "id": 11702, "credit_id": "52fe4276c3a36847f80208d3", "cast_id": 22, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "Kerry Washington", "character": "Jasmine", "id": 11703, "credit_id": "52fe4276c3a36847f80208d7", "cast_id": 23, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 4}, {"name": "Keith David", "character": "Father", "id": 65827, "credit_id": "52fe4276c3a36847f80208db", "cast_id": 24, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 5}, {"name": "Chris Weitz", "character": "Martin Coleman", "id": 3288, "credit_id": "52fe4276c3a36847f80208df", "cast_id": 25, "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "order": 6}, {"name": "Rachael Huntley", "character": "Suzy Coleman", "id": 11704, "credit_id": "52fe4276c3a36847f80208e3", "cast_id": 26, "profile_path": "/fFh7udNYzJXzFyFgd4CV3uC11qt.jpg", "order": 7}, {"name": "Michelle Monaghan", "character": "Gwen", "id": 11705, "credit_id": "52fe4276c3a36847f80208e7", "cast_id": 27, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 8}, {"name": "Stephanie March", "character": "Julie - Associate #1", "id": 59156, "credit_id": "53d80ee6c3a3682c3d000907", "cast_id": 29, "profile_path": "/cHEnLAOfLW0sMQ83mdmlZXzuvnj.jpg", "order": 9}, {"name": "Jennifer Morrison", "character": "Jade - Associate #2", "id": 41421, "credit_id": "52fe4276c3a36847f80208eb", "cast_id": 28, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 10}, {"name": "Theresa Barrera", "character": "Janet - Associate #3", "id": 1347627, "credit_id": "53d80f1bc3a3682c2e000931", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Perrey Reeves", "character": "Jessie - Associate #4", "id": 68495, "credit_id": "53d80f44c3a3682c3d000952", "cast_id": 31, "profile_path": "/fcuYaaYrCjItQzOGzCpL7PDbmSB.jpg", "order": 12}, {"name": "Melanie Tolbert", "character": "Jamie - Associate #5", "id": 1347628, "credit_id": "53d80f67c3a3682c3200099e", "cast_id": 32, "profile_path": null, "order": 13}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe4276c3a36847f802085d", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 6.4, "runtime": 120}, "37495": {"poster_path": "/9H4bGLi0zJOj2gOFUEGaKA1jaIK.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 4270000, "overview": "Four Lions tells the story of a group of British jihadists who push their abstract dreams of glory to the breaking point. As the wheels fly off, and their competing ideologies clash, what emerges is an emotionally engaging (and entirely plausible) farce. In a storm of razor-sharp verbal jousting and large-scale set pieces, Four Lions is a comic tour de force; it shows that-while terrorism is about ideology-it can also be about idiots.", "video": false, "id": 37495, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Four Lions", "tagline": "We are 4 Lions.", "vote_count": 114, "homepage": "http://www.four-lions.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1341167", "adult": false, "backdrop_path": "/mJkhUOqFSYPtugNS8dfRpu0RyCY.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Warp Films", "id": 12180}, {"name": "Wild Bunch Distribution", "id": 15308}, {"name": "Drafthouse Films", "id": 10485}], "release_date": "2010-05-07", "popularity": 0.797901112744067, "original_title": "Four Lions", "budget": 967686, "cast": [{"name": "Riz Ahmed", "character": "Omar", "id": 53240, "credit_id": "52fe464e9251416c91050435", "cast_id": 5, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 0}, {"name": "Nigel Lindsay", "character": "Barry", "id": 6971, "credit_id": "52fe464e9251416c91050439", "cast_id": 7, "profile_path": "/upY5S0X5JkvWiCnsvtI7NRueJuF.jpg", "order": 1}, {"name": "Kayvan Novak", "character": "Waj", "id": 2959, "credit_id": "52fe464e9251416c91050431", "cast_id": 4, "profile_path": "/frOXuqWJXzFlcTQx2fuILD50ODE.jpg", "order": 2}, {"name": "Adeel Akhtar", "character": "Faisal", "id": 81840, "credit_id": "52fe464e9251416c91050441", "cast_id": 9, "profile_path": "/m5nctbJLv1N8uaUxP2aoFySISlC.jpg", "order": 3}, {"name": "Arsher Ali", "character": "Hassan", "id": 814200, "credit_id": "52fe464e9251416c91050445", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Preeya Kalidas", "character": "Sophia", "id": 117795, "credit_id": "52fe464e9251416c9105042d", "cast_id": 2, "profile_path": "/4toEBtcEY0lIKqEoliz5T0bEtMj.jpg", "order": 5}, {"name": "Benedict Cumberbatch", "character": "The Negotiator", "id": 71580, "credit_id": "52fe464e9251416c9105043d", "cast_id": 8, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 6}], "directors": [{"name": "Chris Morris", "department": "Directing", "job": "Director", "credit_id": "52fe464e9251416c91050429", "profile_path": "/wsOfuOHaNGENT1d9rGEinqbYXsW.jpg", "id": 117794}], "vote_average": 7.0, "runtime": 101}, "242310": {"poster_path": "/gV2QQqj0ub0OQOtAby4O5Y06zZt.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When the Russian mob kidnaps the daughter of a reformed criminal, he rounds up his old crew and seeks his own brand of justice.", "video": false, "id": 242310, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rage", "tagline": "The past never stays dead", "vote_count": 113, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2401807", "adult": false, "backdrop_path": "/d7S5j0zxR4LFgBrBGKSRYFeEgw1.jpg", "production_companies": [{"name": "Vocal Yokels", "id": 24972}, {"name": "Hannibal Pictures", "id": 8692}, {"name": "Marco Polo Production", "id": 22347}, {"name": "Patriot Pictures", "id": 22348}], "release_date": "2014-05-09", "popularity": 1.24331479568524, "original_title": "Tokarev", "budget": 21000000, "cast": [{"name": "Nicolas Cage", "character": "Paul Maguire", "id": 2963, "credit_id": "52fe4ec9c3a36847f82a7da7", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Aubrey Peeples", "character": "Caitlin Maguire", "id": 1189982, "credit_id": "54cf84a99251415fb3006e5c", "cast_id": 51, "profile_path": "/iSHAtU1Q90Dnian3NYWaG3EY8Hc.jpg", "order": 1}, {"name": "Rachel Nichols", "character": "Vanessa", "id": 50347, "credit_id": "52fe4ec9c3a36847f82a7dab", "cast_id": 2, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 2}, {"name": "Peter Stormare", "character": "", "id": 53, "credit_id": "52fe4ec9c3a36847f82a7db3", "cast_id": 4, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 3}, {"name": "Danny Glover", "character": "Detective St. John", "id": 2047, "credit_id": "53628903c3a36815860000b4", "cast_id": 11, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 4}, {"name": "Max Ryan", "character": "Kane", "id": 21942, "credit_id": "5362890cc3a36815950000db", "cast_id": 12, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 5}, {"name": "Elena Sanchez", "character": "Lisa", "id": 1165616, "credit_id": "52fe4ec9c3a36847f82a7daf", "cast_id": 3, "profile_path": null, "order": 6}, {"name": "Weston Cage", "character": "Young Paul", "id": 1315801, "credit_id": "53628928c3a36815860000b7", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Max Fowler", "character": "Mike", "id": 1252873, "credit_id": "5362893cc3a36815860000bb", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Sarah Ann Schultz", "character": "Miss Russell", "id": 58793, "credit_id": "5362894ac3a368156f0000fb", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Michael McGrady", "character": "Danny Doherty", "id": 157015, "credit_id": "5362895bc3a368159f0000fd", "cast_id": 18, "profile_path": "/1BVROvpyydpWNTBvTvxK5akRVj5.jpg", "order": 11}, {"name": "Jack Falahee", "character": "", "id": 1286329, "credit_id": "53628964c3a368159f0000ff", "cast_id": 19, "profile_path": "/s1OFWbxXrVWZb9tcIeZekUie4ws.jpg", "order": 12}, {"name": "Judd Lormand", "character": "Mr. White", "id": 990136, "credit_id": "5362896cc3a36815680000c6", "cast_id": 20, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 13}, {"name": "Dawn Hamil", "character": "Amber", "id": 1315802, "credit_id": "53628980c3a36815860000be", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Tom Waite", "character": "Track Suit Russian", "id": 1338215, "credit_id": "53b960230e0a2676d3009726", "cast_id": 27, "profile_path": "/lAhiUevelDlw2BdgEreWJEg0IJJ.jpg", "order": 15}, {"name": "Pavel Lychnikoff", "character": "Chernov", "id": 52762, "credit_id": "54e8a46c9251412eb8001e4e", "cast_id": 52, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 16}], "directors": [{"name": "Paco Cabezas", "department": "Directing", "job": "Director", "credit_id": "52fe4ec9c3a36847f82a7db9", "profile_path": null, "id": 79279}], "vote_average": 5.4, "runtime": 98}, "119431": {"poster_path": "/8JJTib7QM8rE3j0cxWQzSbgFIJD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set against the backdrop of a UNSC military academy, a group of highborn cadets are training to be the next generation of soldiers in the UNSC\u2019s ongoing war with insurrectionists in the outer colonial planets. Among these cadets, Thomas Lasky struggles with his doubts about this war, and with the burden of expectations he may not be able to carry. As Lasky comes to terms with his potential as a military leader, the terrifying alien alliance known as the Covenant arrives and turns his world upside down. Inspired by the Master Chief, he must decide what it means to be a hero.", "video": false, "id": 119431, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Halo 4: Forward Unto Dawn", "tagline": "The story of Halo 4 begins at dawn.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2262308", "adult": false, "backdrop_path": "/oGrLYgUc3Cw3vUTg8fUC8uKC2XW.jpg", "production_companies": [{"name": "Microsoft", "id": 5133}], "release_date": "2012-10-05", "popularity": 0.796509950750477, "original_title": "Halo 4: Forward Unto Dawn", "budget": 8500000, "cast": [{"name": "Tom Green", "character": "Thomas Lasky", "id": 1086957, "credit_id": "52fe4bffc3a36847f821cafd", "cast_id": 6, "profile_path": "/4nyR8hdJEufHCESgVPM8ffqvE9N.jpg", "order": 0}, {"name": "Anna Popplewell", "character": "Chyler Silva", "id": 5529, "credit_id": "52fe4bffc3a36847f821cb01", "cast_id": 7, "profile_path": "/tlGWAZeDgqJtJ5cz57zS0BW5our.jpg", "order": 1}, {"name": "Iain Belcher", "character": "Vickers", "id": 1114366, "credit_id": "52fe4bffc3a36847f821caed", "cast_id": 2, "profile_path": "/6BgkS1ePt5d3j9q1HP9YuzFzFTh.jpg", "order": 2}, {"name": "Jenna Berman", "character": "Kelly-087", "id": 1114367, "credit_id": "52fe4bffc3a36847f821caf1", "cast_id": 3, "profile_path": "/2vQB0CCUEmIlTpsYYrPWhfVbToW.jpg", "order": 3}, {"name": "Enisha Brewster", "character": "April Orenski", "id": 1114368, "credit_id": "52fe4bffc3a36847f821caf5", "cast_id": 4, "profile_path": "/iz1xZgcmoAaA9YsFv1LqTVciCRk.jpg", "order": 4}, {"name": "Max Carver", "character": "Cadmon Lasky", "id": 215843, "credit_id": "52fe4bffc3a36847f821caf9", "cast_id": 5, "profile_path": "/SekaTNwpi8fBfEJkCq2dtoKn6V.jpg", "order": 5}, {"name": "Ayelet Zurer", "character": "Mehaffey", "id": 8786, "credit_id": "52fe4bffc3a36847f821cb05", "cast_id": 8, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 6}, {"name": "Masam Holden", "character": "Michael Sullivan", "id": 198855, "credit_id": "52fe4bffc3a36847f821cb09", "cast_id": 9, "profile_path": "/fCuceoMnHdXKeDgxvctunoGNE9P.jpg", "order": 7}, {"name": "Mike Dopud", "character": "General Black", "id": 64674, "credit_id": "52fe4bffc3a36847f821cb0d", "cast_id": 10, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 8}, {"name": "Osric Chau", "character": "Junjie Chen", "id": 101016, "credit_id": "52fe4bffc3a36847f821cb11", "cast_id": 11, "profile_path": "/v3y3W0Xelyy4ge87S1YfcmpXcgO.jpg", "order": 9}], "directors": [{"name": "Stewart Hendler", "department": "Directing", "job": "Director", "credit_id": "52fe4bffc3a36847f821cae9", "profile_path": "/fEtto46PxSZjRrAZnfZPB5wKY3f.jpg", "id": 130837}], "vote_average": 6.5, "runtime": 92}, "24418": {"poster_path": "/miuQFDDlj9t3ia9RQqfkjGORZHQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28169671, "overview": "Darren Shan is a regular teenage kid. He and his friend Steve find out about a Freak Show coming to town and work hard at trying to find tickets. They do, and together they go to \"Cirque du Freak\" where they see many strange acts including a wolf-man and a bearded lady", "video": false, "id": 24418, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Cirque du Freak: The Vampire's Assistant", "tagline": "Meet Darren. He's sixteen going on immortal.", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450405", "adult": false, "backdrop_path": "/mj9VCAmNHkd0E0Yft44UQy7FTLn.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2009-10-23", "popularity": 0.984617388480241, "original_title": "Cirque du Freak: The Vampire's Assistant", "budget": 40000000, "cast": [{"name": "John C. Reilly", "character": "Larten Crepsley", "id": 4764, "credit_id": "52fe4494c3a368484e02ae95", "cast_id": 1, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Steve", "id": 27972, "credit_id": "52fe4494c3a368484e02ae99", "cast_id": 2, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Chris Massoglia", "character": "Darren Shan", "id": 109441, "credit_id": "52fe4494c3a368484e02ae9d", "cast_id": 3, "profile_path": "/s7oTPrx9WFbbfEqho0Z1Yd3zHmx.jpg", "order": 2}, {"name": "Patrick Fugit", "character": "Evra the Snake Boy", "id": 11663, "credit_id": "52fe4494c3a368484e02aea1", "cast_id": 4, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Madame Truska", "id": 3136, "credit_id": "52fe4494c3a368484e02aea5", "cast_id": 5, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "Jessica Carlson", "character": "Rebecca", "id": 109867, "credit_id": "52fe4494c3a368484e02aeaf", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Michael Cerveris", "character": "Mr. Tiny", "id": 49827, "credit_id": "52fe4494c3a368484e02aeb3", "cast_id": 8, "profile_path": "/1cMSbaBloNvWYHLPRxeSHoHrj1U.jpg", "order": 6}, {"name": "Ray Stevenson", "character": "Murlaugh", "id": 56614, "credit_id": "52fe4494c3a368484e02aeb7", "cast_id": 9, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 7}, {"name": "Daniel Newman", "character": "Pete", "id": 8323, "credit_id": "52fe4494c3a368484e02aebb", "cast_id": 10, "profile_path": "/wjJB7aXCaEVpaVWWIYgKd20MxNa.jpg", "order": 8}, {"name": "Morgan Saylor", "character": "Annie", "id": 109868, "credit_id": "52fe4494c3a368484e02aebf", "cast_id": 11, "profile_path": "/ySqoJtBhQOsX1ntBWqnZhLyrC1E.jpg", "order": 9}, {"name": "Don McManus", "character": "Mr. Shan", "id": 79025, "credit_id": "52fe4494c3a368484e02aec3", "cast_id": 12, "profile_path": "/8JOjJkZBQmhVb6n8yHw70LIgC7i.jpg", "order": 10}, {"name": "Ken Watanabe", "character": "Mr. Tall", "id": 3899, "credit_id": "52fe4494c3a368484e02aec7", "cast_id": 14, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 12}, {"name": "Orlando Jones", "character": "Alexander Ribs", "id": 18270, "credit_id": "52fe4494c3a368484e02aecb", "cast_id": 15, "profile_path": "/7QOW3bgYjPxnjwrZDclmnJenhPH.jpg", "order": 13}, {"name": "Frankie Faison", "character": "Rhamus Twobellies", "id": 13936, "credit_id": "52fe4494c3a368484e02aecf", "cast_id": 16, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 14}, {"name": "Willem Dafoe", "character": "Gavner Purl", "id": 5293, "credit_id": "52fe4494c3a368484e02aed3", "cast_id": 17, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 15}, {"name": "Kristen Schaal", "character": "Gertha Teeth", "id": 109869, "credit_id": "52fe4494c3a368484e02aed7", "cast_id": 18, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 16}, {"name": "Patrick Breen", "character": "Mr. Kersey", "id": 15031, "credit_id": "52fe4494c3a368484e02aedb", "cast_id": 19, "profile_path": "/jMChbEq3GODrIoz1Jl4rlPGonY6.jpg", "order": 17}, {"name": "Tom Woodruff Jr.", "character": "Wolfman", "id": 109870, "credit_id": "52fe4494c3a368484e02aedf", "cast_id": 20, "profile_path": null, "order": 18}, {"name": "Jane Krakowski", "character": "Corma Limbs", "id": 13636, "credit_id": "52fe4494c3a368484e02aee3", "cast_id": 21, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 19}, {"name": "Drew Rin Varick", "character": "Loaf Head", "id": 109871, "credit_id": "52fe4494c3a368484e02aee7", "cast_id": 22, "profile_path": null, "order": 20}, {"name": "Colleen Camp", "character": "Mrs. Shan", "id": 13023, "credit_id": "52fe4494c3a368484e02aefd", "cast_id": 26, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 21}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a368484e02aeab", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 5.6, "runtime": 109}, "119450": {"poster_path": "/aJemoN7F9GrAYjIL94KXww3QWP9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 708200000, "overview": "A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.", "video": false, "id": 119450, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dawn of the Planet of the Apes", "tagline": "One last chance for peace.", "vote_count": 1343, "homepage": "", "belongs_to_collection": {"backdrop_path": "/mepJpyqVtD6P65vgCU1ngGFEjs5.jpg", "poster_path": "/qQrEMycfVN2gRlKTLWGn0QdOnSk.jpg", "id": 173710, "name": "Planet of the Apes (Reboot) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103281", "adult": false, "backdrop_path": "/rjUl3pd1LHVOVfG4IGcyA1cId5l.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Ingenious Media", "id": 290}], "release_date": "2014-07-11", "popularity": 5.52897285186238, "original_title": "Dawn of the Planet of the Apes", "budget": 170000000, "cast": [{"name": "Andy Serkis", "character": "Caesar", "id": 1333, "credit_id": "52fe4c01c3a36847f821cf15", "cast_id": 8, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 0}, {"name": "Jason Clarke", "character": "Malcolm", "id": 76512, "credit_id": "52fe4c01c3a36847f821cf35", "cast_id": 19, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 1}, {"name": "Toby Kebbell", "character": "Koba", "id": 20286, "credit_id": "53c43f8b0e0a26157f00d766", "cast_id": 27, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 2}, {"name": "Keri Russell", "character": "Ellie", "id": 41292, "credit_id": "52fe4c01c3a36847f821cf31", "cast_id": 18, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 3}, {"name": "Judy Greer", "character": "Cornelia", "id": 20750, "credit_id": "52fe4c01c3a36847f821cf1f", "cast_id": 13, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 4}, {"name": "Gary Oldman", "character": "Dreyfus", "id": 64, "credit_id": "52fe4c01c3a36847f821cf2d", "cast_id": 17, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 5}, {"name": "Kodi Smit-McPhee", "character": "Alexander", "id": 113505, "credit_id": "52fe4c01c3a36847f821cf39", "cast_id": 20, "profile_path": "/vJLSwYtJH8NHEUDh508XxewnrjD.jpg", "order": 6}, {"name": "Terry Notary", "character": "Rocket", "id": 236696, "credit_id": "52fe4c01c3a36847f821cf23", "cast_id": 14, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 7}, {"name": "Karin Konoval", "character": "Maurice", "id": 58395, "credit_id": "52fe4c01c3a36847f821cf3d", "cast_id": 21, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 8}, {"name": "Kirk Acevedo", "character": "Carver", "id": 55861, "credit_id": "52fe4c01c3a36847f821cf41", "cast_id": 22, "profile_path": "/9CTkCXyKQrHTFZWFN3JtDM2mF0U.jpg", "order": 9}, {"name": "Richard King", "character": "Stoned", "id": 1172813, "credit_id": "52fe4c01c3a36847f821cf45", "cast_id": 23, "profile_path": "/jEbtlctGKCk1PwJ7Az8MZCyWZKg.jpg", "order": 10}, {"name": "Lucky Johnson", "character": "Rationer", "id": 1172814, "credit_id": "52fe4c01c3a36847f821cf49", "cast_id": 24, "profile_path": "/3LSBn12OMYVWbeE09OGBImUJXAn.jpg", "order": 11}, {"name": "Jocko Sims", "character": "Werner", "id": 107939, "credit_id": "52fe4c01c3a36847f821cf53", "cast_id": 26, "profile_path": "/14jDiruPZn8euVRYt0D3pjqTF6C.jpg", "order": 12}, {"name": "Nick Thurston", "character": "Blue Eyes", "id": 557930, "credit_id": "53d5606a0e0a2628470046cb", "cast_id": 28, "profile_path": "/fGgBHfc0nyGnqFSxJpGF8aqPBKG.jpg", "order": 13}, {"name": "Jon Eyez", "character": "Foster", "id": 231857, "credit_id": "53d560da0e0a2628410046a1", "cast_id": 29, "profile_path": "/1v11aZ5TmwtORs10OcU4wzhX2NW.jpg", "order": 14}, {"name": "Enrique Murciano", "character": "Kemp", "id": 12798, "credit_id": "547dcc97c3a3685afd005a91", "cast_id": 78, "profile_path": "/nC37xKp4UdGylXFSJv94eQNTtja.jpg", "order": 15}, {"name": "Larramie Doc Shaw", "character": "Ash", "id": 576041, "credit_id": "547dceeec3a3685aed006232", "cast_id": 79, "profile_path": "/d0ccSQsbOfhgVXfW46RFPEq0tvY.jpg", "order": 16}, {"name": "Lee Ross", "character": "Grey", "id": 93177, "credit_id": "547dd0e3c3a3685afd005b23", "cast_id": 80, "profile_path": "/lMOJz7ZSs4iOWYON0NdKlVuWvlo.jpg", "order": 17}, {"name": "Keir O'Donnell", "character": "Finney", "id": 39213, "credit_id": "547dd1679251412d7f005933", "cast_id": 81, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 18}, {"name": "Kevin Rankin", "character": "McVeigh", "id": 114000, "credit_id": "547dd1e69251412d7c005c4d", "cast_id": 82, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 19}, {"name": "Al Vicente", "character": "Manone", "id": 156625, "credit_id": "547f1b1ec3a368396c001655", "cast_id": 83, "profile_path": "/avW8xzMK0ezRiBkxwWgRvj2Tyov.jpg", "order": 20}, {"name": "Matthew James", "character": "Man 2", "id": 1130809, "credit_id": "547f1e0c92514124b600167a", "cast_id": 84, "profile_path": "/pcg0a9NujGhUMdr5kGLAIgTk9gI.jpg", "order": 21}, {"name": "Scott Lang", "character": "Luca", "id": 1393532, "credit_id": "547f265f92514124b6001760", "cast_id": 85, "profile_path": "/3qWmh3uV2rG9Umn2J4Gc8TYjYVA.jpg", "order": 22}, {"name": "Deneen Tyler", "character": "Woman", "id": 29933, "credit_id": "547f28cb92514124b9001617", "cast_id": 86, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 23}, {"name": "Mustafa Harris", "character": "Officer", "id": 1273239, "credit_id": "547f2a9892514124af00156b", "cast_id": 87, "profile_path": "/e0moNlfMRCJkdzU3nfblnWxd2vC.jpg", "order": 24}, {"name": "Lombardo Boyar", "character": "Terry", "id": 4992, "credit_id": "547f2b00c3a368395c0019e3", "cast_id": 88, "profile_path": "/ygctSZGBRkmwARihr8F1Bb7PkIP.jpg", "order": 25}, {"name": "Mike Seal", "character": "Driver", "id": 1123871, "credit_id": "547f2fa2c3a36839610013ae", "cast_id": 89, "profile_path": "/1vikAAQB3xx4olisIu4JptQzFDV.jpg", "order": 26}, {"name": "J.D. Evermore", "character": "Sniper", "id": 129868, "credit_id": "547f314dc3a368396c0018d5", "cast_id": 90, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 27}, {"name": "Chase Boltin", "character": "Recruit", "id": 1388316, "credit_id": "547f337bc3a368396c001906", "cast_id": 91, "profile_path": "/hivW1O7WGNeX70eCnqnOkKbv3WN.jpg", "order": 28}, {"name": "Michael Papajohn", "character": "Cannon-Gunner", "id": 20582, "credit_id": "547f385d92514124aa001966", "cast_id": 92, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 29}, {"name": "Thomas Rosales, Jr.", "character": "Old Man", "id": 43010, "credit_id": "547f3a1692514124b3001817", "cast_id": 93, "profile_path": "/vQj5seGz2vviAjxqIcAdHNMXgCt.jpg", "order": 30}, {"name": "Carol Sutton", "character": "Old Woman", "id": 60877, "credit_id": "547f3d3192514124b3001877", "cast_id": 94, "profile_path": "/dIzENUx3Exb0RNb7xC6ZYiYwbvx.jpg", "order": 31}, {"name": "Christopher Berry", "character": "Gun-Clinching Man", "id": 1173099, "credit_id": "547f3e8192514124bb00196e", "cast_id": 95, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 32}], "directors": [{"name": "Matt Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe4c01c3a36847f821cf1b", "profile_path": "/4SPhLx107Y7m0tvzlLpCquxFxE8.jpg", "id": 32278}], "vote_average": 7.6, "runtime": 130}, "4771": {"poster_path": "/dXXMPxGiRegd7NNCtE5uchAKRAG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34209788, "overview": "Two Boston area detectives investigate a little girl's kidnapping, which ultimately turns into a crisis both professionally and personally. Based on the Dennis Lehane novel.", "video": false, "id": 4771, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Gone Baby Gone", "tagline": "Hope begins where the secrets end.", "vote_count": 195, "homepage": "http://www.miramax.com/movie/gone-baby-gone", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452623", "adult": false, "backdrop_path": "/pxvtoQX43ZaRTq1Mqyt3uRAOXSN.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "LivePlanet", "id": 7161}, {"name": "Ladd Company, The", "id": 23193}], "release_date": "2007-10-19", "popularity": 0.763327232818561, "original_title": "Gone Baby Gone", "budget": 19000000, "cast": [{"name": "Casey Affleck", "character": "Patrick Kenzie", "id": 1893, "credit_id": "52fe43d8c3a36847f8073c1f", "cast_id": 11, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Angie Gennaro", "id": 11705, "credit_id": "52fe43d8c3a36847f8073c23", "cast_id": 12, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Jack Doyle", "id": 192, "credit_id": "52fe43d8c3a36847f8073c27", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Ed Harris", "character": "Remy Bressant", "id": 228, "credit_id": "52fe43d8c3a36847f8073c2b", "cast_id": 14, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "John Ashton", "character": "Nick Poole", "id": 778, "credit_id": "52fe43d8c3a36847f8073c2f", "cast_id": 15, "profile_path": "/omfIdOt1F8LDkb7AMZTtLDiyJ3O.jpg", "order": 4}, {"name": "Amy Ryan", "character": "Helene McCready", "id": 39388, "credit_id": "52fe43d8c3a36847f8073c33", "cast_id": 16, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 5}, {"name": "Amy Madigan", "character": "Beatrice McCready", "id": 23882, "credit_id": "52fe43d8c3a36847f8073c37", "cast_id": 17, "profile_path": "/pNdNJPKRdl3veCRH8fZv3H76ywJ.jpg", "order": 6}, {"name": "Titus Welliver", "character": "Lionel McCready", "id": 39389, "credit_id": "52fe43d8c3a36847f8073c3b", "cast_id": 18, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 7}, {"name": "Michael Kenneth Williams", "character": "Devin", "id": 39390, "credit_id": "52fe43d8c3a36847f8073c3f", "cast_id": 19, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 8}, {"name": "Edi Gathegi", "character": "Cheese", "id": 39391, "credit_id": "52fe43d8c3a36847f8073c43", "cast_id": 20, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 9}, {"name": "Mark Margolis", "character": "Leon Trett", "id": 1173, "credit_id": "52fe43d8c3a36847f8073c47", "cast_id": 21, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 10}, {"name": "Madeline O'Brien", "character": "Amanda McCready", "id": 86233, "credit_id": "52fe43d8c3a36847f8073c4b", "cast_id": 22, "profile_path": "/wQlPyN7OSM6UPm2xYBXlCiFXQVx.jpg", "order": 11}, {"name": "Slaine (George Carroll)", "character": "Bubba", "id": 133067, "credit_id": "52fe43d8c3a36847f8073c4f", "cast_id": 23, "profile_path": "/wq0FQBzfiFfEXfjaGm3FE43IuTJ.jpg", "order": 12}, {"name": "Trudi Goodman", "character": "Roberta Trett", "id": 1277520, "credit_id": "52fe43d8c3a36847f8073c53", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Matthew Maher", "character": "Corwin Earle", "id": 1232599, "credit_id": "52fe43d8c3a36847f8073c57", "cast_id": 25, "profile_path": "/22q6AafRKJ7EpuFpcp0A7mwMh9L.jpg", "order": 14}], "directors": [{"name": "Ben Affleck", "department": "Directing", "job": "Director", "credit_id": "52fe43d8c3a36847f8073be5", "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "id": 880}], "vote_average": 6.9, "runtime": 114}, "75174": {"poster_path": "/bwN4x9RTLtDUDvaOWg4yvOBU38I.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77300000, "overview": "In Alaska, an oil drilling team struggle to survive after a plane crash strands them in the wild. Hunting the humans are a pack of wolves who see them as intruders.", "video": false, "id": 75174, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Grey", "tagline": "Live or Die on This Day", "vote_count": 433, "homepage": "http://www.thegreythemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1601913", "adult": false, "backdrop_path": "/888jtZz0mWfANiml4Pfe9567o3X.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Scott Free Productions", "id": 1645}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "LD Entertainment", "id": 10285}, {"name": "Inferno Distribution", "id": 11278}, {"name": "Chambara Pictures", "id": 12234}], "release_date": "2011-12-11", "popularity": 1.25181722154203, "original_title": "The Grey", "budget": 34000000, "cast": [{"name": "Liam Neeson", "character": "John Ottway", "id": 3896, "credit_id": "52fe48f3c3a368484e1132c3", "cast_id": 4, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Dermot Mulroney", "character": "Jerome Talget", "id": 20212, "credit_id": "52fe48f3c3a368484e1132c7", "cast_id": 5, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 1}, {"name": "Frank Grillo", "character": "John Diaz", "id": 81685, "credit_id": "52fe48f3c3a368484e1132cf", "cast_id": 7, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 2}, {"name": "Dallas Roberts", "character": "Pete Hendrick", "id": 424, "credit_id": "52fe48f3c3a368484e1132db", "cast_id": 10, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 3}, {"name": "Joe Anderson", "character": "Todd Flannery", "id": 29234, "credit_id": "52fe48f3c3a368484e1132d3", "cast_id": 8, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 4}, {"name": "Nonso Anozie", "character": "Jackson Burke", "id": 43547, "credit_id": "52fe48f3c3a368484e1132d7", "cast_id": 9, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 5}, {"name": "James Badge Dale", "character": "Luke Lewenden", "id": 18473, "credit_id": "52fe48f3c3a368484e1132cb", "cast_id": 6, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 6}, {"name": "Ben Bray", "character": "Hernandez (as Ben Hernandez Bray)", "id": 59674, "credit_id": "52fe48f3c3a368484e1132df", "cast_id": 11, "profile_path": "/hBty1r73HUkvB30hFgrCxY2llcs.jpg", "order": 7}, {"name": "Larissa Stadnichuk", "character": "Flight Attendant #1", "id": 574091, "credit_id": "52fe48f3c3a368484e1132e3", "cast_id": 12, "profile_path": "/or4JupWxnaYCgdaQFhV5eZNheKA.jpg", "order": 8}, {"name": "James Bitonti", "character": "Ottway's Father", "id": 574092, "credit_id": "52fe48f3c3a368484e1132e7", "cast_id": 13, "profile_path": "/aJAL4LddcKQR61i0Fiy9cWsN038.jpg", "order": 9}, {"name": "Jonathan Bitonti", "character": "Young Ottway", "id": 574093, "credit_id": "52fe48f3c3a368484e1132eb", "cast_id": 14, "profile_path": "/f05keaD2OG84hU6pUuGUevCTl3x.jpg", "order": 10}, {"name": "Anne Openshaw", "character": "Ottway's Wife", "id": 55569, "credit_id": "52fe48f3c3a368484e1132fb", "cast_id": 17, "profile_path": "/8gxlZqKqS4zLHh5xJhKFHmOCCt0.jpg", "order": 11}, {"name": "Peter Girges", "character": "Company Clerk", "id": 935295, "credit_id": "52fe48f3c3a368484e1132ff", "cast_id": 18, "profile_path": "/e3dtf9A9QlJZldiI2BNjrVFb1Jr.jpg", "order": 12}, {"name": "Ella Kosor", "character": "Talget's Little Girl", "id": 935297, "credit_id": "52fe48f3c3a368484e113303", "cast_id": 19, "profile_path": "/2KWHxm8u26noP679AZn3TV1Q33P.jpg", "order": 13}, {"name": "Jacob Blair", "character": "Cimoski", "id": 208069, "credit_id": "52fe48f3c3a368484e113307", "cast_id": 20, "profile_path": "/8QbiqwUFim60IBZ2p22WoEs2e1w.jpg", "order": 14}, {"name": "Lani Gelera", "character": "Flight Attendant", "id": 935299, "credit_id": "52fe48f3c3a368484e11330b", "cast_id": 21, "profile_path": "/nAvSd8va12rGWRZIevY7IdmPZJ6.jpg", "order": 15}], "directors": [{"name": "Joe Carnahan", "department": "Directing", "job": "Director", "credit_id": "52fe48f3c3a368484e1132f1", "profile_path": "/5YPrZ1JprLwtU4tn5DG0wqLjsAT.jpg", "id": 40223}], "vote_average": 6.2, "runtime": 117}, "49948": {"poster_path": "/8fYKd6CduwmJwH6pBdcU06qF3Ka.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90874570, "overview": "An update of the original film with new interpretations of great works of classical music.", "video": false, "id": 49948, "genres": [{"id": 16, "name": "Animation"}], "title": "Fantasia 2000", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7YanwpylLB3yzhwzf11W1tYpcQF.jpg", "poster_path": "/ldzKpOvGVl8NWQPdAYJEZpAvPIo.jpg", "id": 55427, "name": "Fantasia Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120910", "adult": false, "backdrop_path": "/gPvP0y0wGUAmHphtIJC2UfGuT3S.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Richard Purdum Productions", "id": 8287}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "1999-12-31", "popularity": 0.650668792189654, "original_title": "Fantasia 2000", "budget": 80000000, "cast": [{"name": "Steve Martin", "character": "Introductory Host", "id": 67773, "credit_id": "52fe47b1c3a36847f814324f", "cast_id": 3, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Quincy Jones", "character": "Host", "id": 13301, "credit_id": "52fe47b1c3a36847f8143253", "cast_id": 4, "profile_path": "/mV7hXHeUSXV7KZEfsxJ8lMrKpAt.jpg", "order": 1}, {"name": "Bette Midler", "character": "Hostess", "id": 73931, "credit_id": "52fe47b1c3a36847f8143257", "cast_id": 5, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 2}, {"name": "James Earl Jones", "character": "Host", "id": 15152, "credit_id": "52fe47b1c3a36847f814325b", "cast_id": 6, "profile_path": "/pxC7jiRTHArPldgkqSneXRsrRJ9.jpg", "order": 3}, {"name": "Penn Jillette", "character": "Host", "id": 37221, "credit_id": "52fe47b1c3a36847f814325f", "cast_id": 7, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 4}, {"name": "Leopold Stokowski", "character": "Conductor", "id": 233471, "credit_id": "547f68f2925141239800022b", "cast_id": 22, "profile_path": "/8flosda3lVaAyJF9rvhZDA0xTbf.jpg", "order": 5}, {"name": "Ralph Grierson", "character": "Pianist", "id": 1298629, "credit_id": "547f6906925141239200025a", "cast_id": 23, "profile_path": null, "order": 6}, {"name": "Kathleen Battle", "character": "Featured Soprano", "id": 1140257, "credit_id": "547f6919c3a3683d97000209", "cast_id": 24, "profile_path": "/43f7kVjH24tlU9W2n1JcET6D15K.jpg", "order": 7}, {"name": "Itzhak Perlman", "character": "Host", "id": 166002, "credit_id": "547f6942925141239b00026d", "cast_id": 25, "profile_path": null, "order": 8}, {"name": "Itzhak Perlman", "character": "Host", "id": 166002, "credit_id": "547f69a9c3a3683d9d0002cf", "cast_id": 26, "profile_path": null, "order": 9}, {"name": "James Levine", "character": "Host", "id": 148666, "credit_id": "547f69bb9251412392000276", "cast_id": 27, "profile_path": null, "order": 10}, {"name": "Angela Lansbury", "character": "Hostess", "id": 14730, "credit_id": "547f69cd925141239b000280", "cast_id": 28, "profile_path": "/tpQ9piWJmdEnd9usxaPsmWkagYK.jpg", "order": 11}, {"name": "Wayne Allwine", "character": "Mickey Mouse", "id": 78076, "credit_id": "547f69e3c3a3683d94000247", "cast_id": 29, "profile_path": "/9Xpy0TLwW1L3pCMMULOIZqgFIzt.jpg", "order": 12}, {"name": "Tony Anselmo", "character": "Donald Duck", "id": 34478, "credit_id": "547f69f6c3a3683d8e0002c0", "cast_id": 30, "profile_path": "/rDlzKZBdszBsNU8ubiMbcMi5Vzb.jpg", "order": 13}, {"name": "Russi Taylor", "character": "Daisy Duck", "id": 6035, "credit_id": "547f6a07c3a3683d9400024b", "cast_id": 31, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 14}], "directors": [{"name": "Paul Brizzi", "department": "Directing", "job": "Director", "credit_id": "53fe4ea8c3a3684c7700163e", "profile_path": null, "id": 56147}, {"name": "Hendel Butoy", "department": "Directing", "job": "Director", "credit_id": "53fe4ebac3a3684c8300160e", "profile_path": null, "id": 74297}, {"name": "Francis Glebas", "department": "Directing", "job": "Director", "credit_id": "53fe4ecdc3a3684c8c001663", "profile_path": null, "id": 74298}, {"name": "Eric Goldberg", "department": "Directing", "job": "Director", "credit_id": "53fe4edac3a3684c8c001665", "profile_path": null, "id": 65531}, {"name": "Don Hahn", "department": "Directing", "job": "Director", "credit_id": "53fe4eeac3a3684c8000162e", "profile_path": "/aYdUzIkPlyo0ckyY7GDYCY028sQ.jpg", "id": 12824}, {"name": "Pixote Hunt", "department": "Directing", "job": "Director", "credit_id": "53fe4efcc3a3684c83001614", "profile_path": null, "id": 74299}, {"name": "James Algar", "department": "Directing", "job": "Director", "credit_id": "52fe47b1c3a36847f8143245", "profile_path": "/3dSa9LsutXEjnsEuZfuIWznQkkC.jpg", "id": 5690}, {"name": "Ga\u00ebtan Brizzi", "department": "Directing", "job": "Director", "credit_id": "52fe47b1c3a36847f814324b", "profile_path": null, "id": 56146}], "vote_average": 6.6, "runtime": 74}, "250538": {"poster_path": "/uTBubhbaq3wt4i3QYEwXc99Uk46.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young refugee of the Sudanese Civil War who wins a lottery for relocation to the United States with three other lost boys. Encountering the modern world for the first time, they develop an unlikely friendship with a brash American woman assigned to help them, but the young man struggles to adjust to this new life and his feelings of guilt about the brother he left behind.", "video": false, "id": 250538, "genres": [{"id": 18, "name": "Drama"}], "title": "The Good Lie", "tagline": "Miracles are made by people who refuse to stop believing.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2652092", "adult": false, "backdrop_path": "/6tn0uUz4HcfZ3Jc1JWClfY9Q23l.jpg", "production_companies": [{"name": "Blue Sky Films", "id": 33680}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Black Label Media", "id": 33681}], "release_date": "2014-09-10", "popularity": 1.22709530048946, "original_title": "The Good Lie", "budget": 0, "cast": [{"name": "Reese Witherspoon", "character": "Carrie Davis", "id": 368, "credit_id": "52fe4df69251416c91121eb3", "cast_id": 1, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Corey Stoll", "character": "Jack", "id": 74541, "credit_id": "52fe4df69251416c91121eb7", "cast_id": 2, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 1}, {"name": "Thad Luckinbill", "character": "Matt", "id": 60076, "credit_id": "52fe4df69251416c91121ebb", "cast_id": 3, "profile_path": "/slnwMyaoNK6IY4LYjdNUHIEdm5Y.jpg", "order": 2}, {"name": "Sarah Baker", "character": "Pamela Lowi", "id": 461542, "credit_id": "52fe4df69251416c91121ebf", "cast_id": 4, "profile_path": "/A1mwwdupm77sGDHmpUA8dec6VGT.jpg", "order": 3}, {"name": "Maria Howell", "character": "INS Agent", "id": 80616, "credit_id": "52fe4df69251416c91121ec7", "cast_id": 6, "profile_path": "/slp3efuuvxwTFA65zmFAHVo96K9.jpg", "order": 5}, {"name": "Joshua Mikel", "character": "Dave", "id": 1046665, "credit_id": "52fe4df69251416c91121ecb", "cast_id": 7, "profile_path": "/4l85LEj6hELCa0ZiClDZU1NpUZL.jpg", "order": 6}, {"name": "Mike Pniewski", "character": "Nick Costas", "id": 65423, "credit_id": "52fe4df69251416c91121ecf", "cast_id": 8, "profile_path": "/6oJOSX84GXwuR9HA9RXTOeTeiKC.jpg", "order": 7}, {"name": "Arnold Oceng", "character": "Mamere", "id": 573737, "credit_id": "54ec9584c3a3686d5e0019f7", "cast_id": 11, "profile_path": "/3BiOauc1uBQpdaLrvUgbIMu0uiC.jpg", "order": 8}, {"name": "Ger Duany", "character": "Jeremiah", "id": 981717, "credit_id": "54ec973d9251417965001d32", "cast_id": 12, "profile_path": "/vFIDtvnX2bcqu7URkHRoBfrEaG5.jpg", "order": 9}, {"name": "Emmanuel Jal", "character": "Paul", "id": 226057, "credit_id": "54ec9a32c3a3686d58001b68", "cast_id": 13, "profile_path": "/7IeyCuZjGnM9WhvUVswE0z2nquU.jpg", "order": 10}, {"name": "Kuoth Wiel", "character": "Abital", "id": 1431167, "credit_id": "54ec9b339251417961001cb1", "cast_id": 14, "profile_path": "/4gGQXngG0WDOiVmWQPN6KmiO830.jpg", "order": 11}, {"name": "Femi Oguns", "character": "Theo", "id": 1431170, "credit_id": "54ec9c94c3a3680b80001d28", "cast_id": 15, "profile_path": "/qcZpLOf35NrLwvC8T6XGqpRdY82.jpg", "order": 12}, {"name": "Lindsey Garrett", "character": "Jenny", "id": 141960, "credit_id": "54ec9effc3a3686d56001cb5", "cast_id": 16, "profile_path": "/1Jg3cj9DloEwYkfMUm87tsG7SEQ.jpg", "order": 13}, {"name": "Peterdeng Mongok", "character": "Young Mamere", "id": 1431185, "credit_id": "54ec9f7dc3a3686d56001cd0", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Okwar Jale", "character": "Young Theo", "id": 1431199, "credit_id": "54ec9ff6925141796e001cec", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Thon Kueth", "character": "Young Jeremiah", "id": 1431203, "credit_id": "54eca04392514112d800198b", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Deng Ajuet", "character": "Young Paul", "id": 1431266, "credit_id": "54ecb2a79251417968001e90", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Keji Jale", "character": "Young Abital", "id": 1431267, "credit_id": "54ecb2eac3a3686d6d0020b6", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "David Madingi", "character": "Young Gabriel", "id": 1431268, "credit_id": "54ecb325c3a3680be6001c97", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "Kon Akoue Auok", "character": "Young Daniel", "id": 1431269, "credit_id": "54ecb3559251417961001f30", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Sibusisu Moyo", "character": "Young Simon", "id": 1431270, "credit_id": "54ecb38b9251417971001ee4", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Antoine Wonder Kalambay", "character": "Boy (River of Children)", "id": 1431275, "credit_id": "54ecb444c3a3686d5e001cdf", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Elikana Jale", "character": "James", "id": 1431341, "credit_id": "54ece178c3a3686d5600246b", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Afemo Omilami", "character": "Dr. Monyang", "id": 37825, "credit_id": "54ece245c3a3686d5e0020ce", "cast_id": 27, "profile_path": "/bHluEOsKBKajFbk2cnxESo1nSCY.jpg", "order": 24}, {"name": "Michael H. Cole", "character": "Reverend Trutner", "id": 1158065, "credit_id": "54ece3b2925141797400242a", "cast_id": 28, "profile_path": "/rgm3UehF7DoajPOwnMXL0E8glvf.jpg", "order": 25}, {"name": "Brian Kurlander", "character": "Frank", "id": 1431351, "credit_id": "54ece4a19251417968002369", "cast_id": 29, "profile_path": "/8BSI4DXPVnhhjPoksGbtS45F26x.jpg", "order": 26}, {"name": "Jimi Kocina", "character": "Karl", "id": 1431358, "credit_id": "54ece70dc3a3680b80002528", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Vince Pisani", "character": "INS Boston", "id": 1431398, "credit_id": "54ed08c3c3a3680b8000287f", "cast_id": 31, "profile_path": "/goWgD4KoiHHVvGfnVwe3lgdgyex.jpg", "order": 28}, {"name": "Kimberly Banta", "character": "INS Kansas City", "id": 1431481, "credit_id": "54ed7efbc3a3686d66003e30", "cast_id": 32, "profile_path": "/nOThFjz1WZ4645TjUkOIFxCrbI4.jpg", "order": 29}, {"name": "Travis Smith", "character": "Roger", "id": 71896, "credit_id": "54ed811f9251417961003734", "cast_id": 33, "profile_path": "/vGpcIVptnLt2YnNm27mDyQcCG9V.jpg", "order": 30}, {"name": "Sharon Morris", "character": "Erin Sullivan", "id": 142374, "credit_id": "54ed82d19251417968003801", "cast_id": 34, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 31}, {"name": "Raj Kala", "character": "Man in English Class", "id": 1431483, "credit_id": "54ed84c1c3a3686d58003576", "cast_id": 35, "profile_path": "/iiHbFaAMncxu0azs6Jmuj0YFm3p.jpg", "order": 32}, {"name": "Parisa Johnston", "character": "Sari Woman in English Class", "id": 1382739, "credit_id": "54ed85c3925141796500384c", "cast_id": 36, "profile_path": "/8NoSH9fIhdJRxVe1gpRGY9oellt.jpg", "order": 33}, {"name": "Heather Lyda", "character": "Homeless Woman", "id": 1431484, "credit_id": "54ed8632c3a36869e5001034", "cast_id": 37, "profile_path": "/xbteKdW31LZseCRSECkFPufL7LW.jpg", "order": 34}, {"name": "Clifton Guterman", "character": "INS Clerk", "id": 995454, "credit_id": "54ed8a5dc3a3680b80003b03", "cast_id": 38, "profile_path": "/18PEE7XvONynpNewe4tv5VxotUx.jpg", "order": 35}, {"name": "Kenny Alfonso", "character": "Police Officer", "id": 1088939, "credit_id": "54ed8c05c3a368402d00126e", "cast_id": 39, "profile_path": "/eNWxCXO908YNdhFNQ3INyka5p4J.jpg", "order": 36}, {"name": "Victor McCay", "character": "Reed", "id": 155030, "credit_id": "54ed8cbdc3a3686d64004139", "cast_id": 40, "profile_path": "/cq6AxzkHCyNuxWoOKqiMc1HOB2u.jpg", "order": 37}, {"name": "Jacob Kuol Alier", "character": "Fargo Boy", "id": 1431487, "credit_id": "54ed8d69c3a3686d58003649", "cast_id": 41, "profile_path": null, "order": 38}, {"name": "Berglind Jonsdottir", "character": "Swedish Official", "id": 1431488, "credit_id": "54ed8ddf925141796e0037d0", "cast_id": 42, "profile_path": "/sfzYsFC6snB2dEym7eYeuMbclEH.jpg", "order": 39}, {"name": "Dhan Kueth", "character": "Majok", "id": 1431489, "credit_id": "54ed8eb6c3a3680b80003b88", "cast_id": 43, "profile_path": null, "order": 40}, {"name": "Israel Makoe", "character": "Bracelet Soldier", "id": 13108, "credit_id": "54ed8ff1c3a3686d5e0033d3", "cast_id": 44, "profile_path": "/9WfkEr4UGJbsER0LKEYrOmI8yM5.jpg", "order": 41}, {"name": "Keith Woulard", "character": "Soldier", "id": 92486, "credit_id": "54ed9271c3a3680b80003be6", "cast_id": 45, "profile_path": "/bfzcKkUzJOHROFrag8Lv9h0Oxev.jpg", "order": 42}, {"name": "John Prendergast", "character": "Toby", "id": 560784, "credit_id": "54ed97a49251417974003a9a", "cast_id": 46, "profile_path": "/aaFahvmEPvJsh8AHEHZJjWXC3NK.jpg", "order": 43}, {"name": "Tiffany Jones", "character": "Refugee Worker", "id": 1431495, "credit_id": "54ed9873c3a368402d001354", "cast_id": 47, "profile_path": null, "order": 44}, {"name": "Nathaniel Ramabulana", "character": "U.N. Worker", "id": 1073479, "credit_id": "54ed9a28c3a36869e5001232", "cast_id": 48, "profile_path": "/k9F7peDlkrNFudNEEGK8pptQTCd.jpg", "order": 45}, {"name": "Lavine Dimo", "character": "Guinea Worm Girl", "id": 1431499, "credit_id": "54ed9a49925141795f003af8", "cast_id": 49, "profile_path": null, "order": 46}, {"name": "Julia Ayiol", "character": "Village Mother", "id": 1431502, "credit_id": "54ed9b2892514179610039bc", "cast_id": 50, "profile_path": null, "order": 47}, {"name": "Sope Aluko", "character": "Processing Office Woman", "id": 1431508, "credit_id": "54ed9c4e9251417965003a7e", "cast_id": 51, "profile_path": "/tPWSMWE2PgT6NTbMo281JarKYkO.jpg", "order": 48}, {"name": "Suehyla El-Attar", "character": "Immigration Official", "id": 74135, "credit_id": "54ed9f5dc3a3680b80003d70", "cast_id": 52, "profile_path": "/63VcNEFznPQowxPZtNtGl2IjhpC.jpg", "order": 49}, {"name": "Abena Ayivor", "character": "Immigration Official #2", "id": 1386161, "credit_id": "54eda0b592514179710039cf", "cast_id": 53, "profile_path": "/4nfObcXxeST1bvy37UyyEpilb5S.jpg", "order": 50}, {"name": "Levi Burdick", "character": "INS Official", "id": 1431536, "credit_id": "54eda65cc3a3686d580038eb", "cast_id": 54, "profile_path": "/4IdoqBDKPof8S0Y7rQGMiCKocLv.jpg", "order": 51}, {"name": "Lele Ledwaba", "character": "Food Worker", "id": 1431538, "credit_id": "54eda836925141796e003a96", "cast_id": 55, "profile_path": null, "order": 52}, {"name": "Mari Malek", "character": "Party Guest", "id": 1431540, "credit_id": "54eda9d8925141796e003aea", "cast_id": 56, "profile_path": null, "order": 53}, {"name": "Flora Peter Deng", "character": "Abital's Mother", "id": 1431543, "credit_id": "54edaa17c3a3686d5e00367e", "cast_id": 57, "profile_path": null, "order": 54}], "directors": [{"name": "Philippe Falardeau", "department": "Directing", "job": "Director", "credit_id": "52fe4df69251416c91121ed5", "profile_path": null, "id": 81437}], "vote_average": 7.5, "runtime": 110}, "250546": {"poster_path": "/yAgxM61Sn0dYML4C9v3MJFp5zPI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 255273813, "overview": "John Form has found the perfect gift for his expectant wife, Mia - a beautiful, rare vintage doll in a pure white wedding dress. But Mia's delight with Annabelle doesn't last long. On one horrific night, their home is invaded by members of a satanic cult, who violently attack the couple. Spilled blood and terror are not all they leave behind. The cultists have conjured an entity so malevolent that nothing they did will compare to the sinister conduit to the damned that is now... Annabelle.", "video": false, "id": 250546, "genres": [{"id": 27, "name": "Horror"}], "title": "Annabelle", "tagline": "Before the Conjuring, there was Annabelle.", "vote_count": 348, "homepage": "http://annabellemovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 313086, "name": "The Conjuring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3322940", "adult": false, "backdrop_path": "/8pCFurneAWouGbBMEoBHqU1ejbb.jpg", "production_companies": [{"name": "The Safran Company", "id": 11565}, {"name": "New Line Cinema", "id": 12}, {"name": "Evergreen Media Group", "id": 31375}, {"name": "RatPac-Dune Entertainment", "id": 41624}], "release_date": "2014-10-03", "popularity": 1.94271888156779, "original_title": "Annabelle", "budget": 6500000, "cast": [{"name": "Annabelle Wallis", "character": "Mia", "id": 82809, "credit_id": "52fe4df69251416c91121ef7", "cast_id": 3, "profile_path": "/1RIgoAsxMEiNweqsMk91ysV8d50.jpg", "order": 0}, {"name": "Alfre Woodard", "character": "Evelyn", "id": 1981, "credit_id": "53e86612c3a368399500327d", "cast_id": 5, "profile_path": "/aCAjUOrV2WG3OaLUvQHVkyk8S2P.jpg", "order": 1}, {"name": "Eric Ladin", "character": "Detective Clarkin", "id": 188311, "credit_id": "53e8661ac3a36839910032ce", "cast_id": 6, "profile_path": "/jc6zPIMdG3cFaxcmlveKdJgnPzl.jpg", "order": 2}, {"name": "Tony Amendola", "character": "Father Perez", "id": 34842, "credit_id": "540226d60e0a2658e6005624", "cast_id": 7, "profile_path": "/wjft9mXp65SfSo2g3pnLxZUOEzG.jpg", "order": 3}, {"name": "Gabriel Bateman", "character": "Robert", "id": 1352028, "credit_id": "540226e00e0a2658e20056b5", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Michelle Romano", "character": "Mary", "id": 101069, "credit_id": "540226e90e0a2658e9005535", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Brian Howe", "character": "Pete Higgins", "id": 1990, "credit_id": "540226f20e0a2658f100539a", "cast_id": 10, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 6}, {"name": "Ward Horton", "character": "John Gordon", "id": 94436, "credit_id": "540226f80e0a2658f100539d", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Shiloh Nelson", "character": "Nancy", "id": 1358561, "credit_id": "540227020e0a2658e900553c", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Paige Diaz", "character": "Candy Striper", "id": 1266847, "credit_id": "5402270a0e0a2658f10053a0", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Morganna May", "character": "Debbie", "id": 1358562, "credit_id": "540227130e0a2658db00556a", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Tree O'Toole", "character": "Thin Woman; Annabelle", "id": 1358563, "credit_id": "5402271f0e0a2658e600562c", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Trampas Thompson", "character": "Thin Man", "id": 1358564, "credit_id": "540227290e0a2658ee005501", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Camden Singer", "character": "Clerk", "id": 1358565, "credit_id": "540227330e0a2658d80054a5", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Keira Daniels", "character": "Young Annabelle Higgins", "id": 1358566, "credit_id": "5402273e0e0a2658f10053a7", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Richard Allan Jones", "character": "Parishoner", "id": 1358567, "credit_id": "540227480e0a2658e20056cb", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Christopher Shaw", "character": "Fuller", "id": 206791, "credit_id": "540227500e0a2658de00570b", "cast_id": 20, "profile_path": null, "order": 16}], "directors": [{"name": "John R. Leonetti", "department": "Directing", "job": "Director", "credit_id": "52fe4df69251416c91121eed", "profile_path": "/7cKC9u81p5OL5loj2PzjepPcjFV.jpg", "id": 26714}], "vote_average": 6.0, "runtime": 99}, "129139": {"poster_path": "/wbixfcnb7xHnfNkf4oAab6gRyxF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3447339, "overview": "Feeling pressured to become more sexually experienced before she goes to college, Brandy Klark makes a list of things to accomplish before hitting campus in the fall.", "video": false, "id": 129139, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The To Do List", "tagline": "She's going from straight A's to getting her first F.", "vote_count": 108, "homepage": "http://todolistmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758795", "adult": false, "backdrop_path": "/mrxhYT4o5i0aSNIRPUEl19GqLjW.jpg", "production_companies": [{"name": "3 Arts Entertainment", "id": 787}, {"name": "The Mark Gordon Company", "id": 1557}], "release_date": "2013-07-26", "popularity": 0.810176219183251, "original_title": "The To Do List", "budget": 1500000, "cast": [{"name": "Aubrey Plaza", "character": "Brandy Klark", "id": 119592, "credit_id": "52fe4b35c3a368484e17d247", "cast_id": 2, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 0}, {"name": "Johnny Simmons", "character": "Cameron", "id": 27104, "credit_id": "52fe4b35c3a368484e17d273", "cast_id": 12, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 1}, {"name": "Bill Hader", "character": "Willy", "id": 19278, "credit_id": "52fe4b35c3a368484e17d26b", "cast_id": 10, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 2}, {"name": "Alia Shawkat", "character": "Fiona", "id": 61178, "credit_id": "52fe4b35c3a368484e17d253", "cast_id": 5, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 3}, {"name": "Sarah Steele", "character": "Wendy", "id": 25908, "credit_id": "52fe4b35c3a368484e17d283", "cast_id": 16, "profile_path": "/3ousg0fVS87CHLSoXRjhKtmJ8Wo.jpg", "order": 4}, {"name": "Scott Porter", "character": "Rusty", "id": 53368, "credit_id": "52fe4b35c3a368484e17d277", "cast_id": 13, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 5}, {"name": "Rachel Bilson", "character": "Amber", "id": 52783, "credit_id": "52fe4b35c3a368484e17d24b", "cast_id": 3, "profile_path": "/tb5sDcY2QR72oyJthVEn4xaLJ7J.jpg", "order": 6}, {"name": "Christopher Mintz-Plasse", "character": "Duffy", "id": 54691, "credit_id": "52fe4b35c3a368484e17d243", "cast_id": 1, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 7}, {"name": "Andy Samberg", "character": "Van", "id": 62861, "credit_id": "52fe4b35c3a368484e17d257", "cast_id": 6, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 8}, {"name": "Donald Glover", "character": "Derrick", "id": 119589, "credit_id": "52fe4b35c3a368484e17d26f", "cast_id": 11, "profile_path": "/dHQ9gpLg2fGUUHNy5zVQ4zNgcYC.jpg", "order": 9}, {"name": "Adam Pally", "character": "Chip", "id": 115974, "credit_id": "52fe4b35c3a368484e17d27f", "cast_id": 15, "profile_path": "/3BOKAOQRNY9UcZ6M3nQQsbPKbA1.jpg", "order": 10}, {"name": "Clark Gregg", "character": "Judge Clark", "id": 9048, "credit_id": "52fe4b35c3a368484e17d24f", "cast_id": 4, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 11}, {"name": "Connie Britton", "character": "Mrs. Clark", "id": 86310, "credit_id": "52fe4b35c3a368484e17d267", "cast_id": 9, "profile_path": "/dbX2i37hwEst6FeL0QH5QgZcsQ3.jpg", "order": 12}, {"name": "Nolan Gould", "character": "Max", "id": 147710, "credit_id": "52fe4b35c3a368484e17d27b", "cast_id": 14, "profile_path": "/xyritJRCjFRZBBua866EanS80st.jpg", "order": 13}, {"name": "Jack McBrayer", "character": "Hillcrest Pool Manager", "id": 58737, "credit_id": "52fe4b35c3a368484e17d2b1", "cast_id": 24, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 14}, {"name": "D.C. Pierson", "character": "Hillcrest Lifeguard #1", "id": 119590, "credit_id": "52fe4b35c3a368484e17d2b5", "cast_id": 25, "profile_path": "/alWQi61xarH9QqoondZDPjWOrwW.jpg", "order": 15}, {"name": "Dominic Dierkes", "character": "Hillcrest Lifeguard #2", "id": 119591, "credit_id": "52fe4b35c3a368484e17d2b9", "cast_id": 26, "profile_path": "/9AdHifs2rwii8VtIppJQPVeNrWH.jpg", "order": 16}, {"name": "Bryce Clyde Jenkins", "character": "Benji", "id": 1116893, "credit_id": "52fe4b35c3a368484e17d2bd", "cast_id": 27, "profile_path": "/8EoWYjDrMEQHj3YpBQtyDRToF8T.jpg", "order": 17}, {"name": "Kevin M. Brennan", "character": "Guitar Player (Van's Band)", "id": 1288335, "credit_id": "52fe4b35c3a368484e17d2c1", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Lauren Lapkus", "character": "Girl Heckler", "id": 591834, "credit_id": "52fe4b35c3a368484e17d2c5", "cast_id": 29, "profile_path": "/jVfj2ZsbIDOjjTXaQMMURrhLEHM.jpg", "order": 19}], "directors": [{"name": "Maggie Carey", "department": "Directing", "job": "Director", "credit_id": "52fe4b35c3a368484e17d25d", "profile_path": "/mqGv6J6870fI9umBRIBX2x2ZByy.jpg", "id": 1088647}], "vote_average": 5.5, "runtime": 104}, "152259": {"poster_path": "/rjwEcrZsmljiA0GUFcLJ4wZ2DhA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1034589, "overview": "The haunted Captain of a Soviet submarine holds the fate of the world in his hands. Forced to leave his family behind, he is charged with leading a covert mission cloaked in mystery.", "video": false, "id": 152259, "genres": [{"id": 53, "name": "Thriller"}], "title": "Phantom", "tagline": "You will never see it coming.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1922685", "adult": false, "backdrop_path": "/sIdrKGOnvJgVGClPysGwcEmHXG.jpg", "production_companies": [{"name": "Trilogy Entertainment Group", "id": 2231}, {"name": "RCR Media Group", "id": 17837}, {"name": "Solar Filmworks", "id": 22564}], "release_date": "2013-01-03", "popularity": 0.411110702136867, "original_title": "Phantom", "budget": 10000000, "cast": [{"name": "Ed Harris", "character": "Demi", "id": 228, "credit_id": "52fe4b1c9251416c910d0243", "cast_id": 3, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 0}, {"name": "David Duchovny", "character": "Bruni", "id": 12640, "credit_id": "52fe4b1c9251416c910d0247", "cast_id": 4, "profile_path": "/p1VVxBWiANkDvQAAeVrW2DueOnK.jpg", "order": 1}, {"name": "Lance Henriksen", "character": "Markov", "id": 2714, "credit_id": "52fe4b1c9251416c910d024b", "cast_id": 6, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 2}, {"name": "William Fichtner", "character": "Alex", "id": 886, "credit_id": "52fe4b1c9251416c910d024f", "cast_id": 7, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 3}, {"name": "Johnathon Schaech", "character": "Pavlov", "id": 51670, "credit_id": "52fe4b1c9251416c910d02d1", "cast_id": 29, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 4}, {"name": "Jason Beghe", "character": "Semak", "id": 37203, "credit_id": "52fe4b1c9251416c910d02d5", "cast_id": 30, "profile_path": "/40zZ4qMshTN1yroHjj508RrmuSZ.jpg", "order": 5}, {"name": "Dagmara Domi\u0144czyk", "character": "Sophi", "id": 52776, "credit_id": "52fe4b1c9251416c910d02d9", "cast_id": 31, "profile_path": "/wQ15ftdMUkwt281XZYBhyHAci0z.jpg", "order": 6}, {"name": "Derek Magyar", "character": "Garin", "id": 78659, "credit_id": "52fe4b1c9251416c910d02dd", "cast_id": 32, "profile_path": "/tQWHicxK54CInpE40maS8F4NAOA.jpg", "order": 7}, {"name": "Sean Patrick Flanery", "character": "Tyrtov", "id": 54789, "credit_id": "52fe4b1c9251416c910d02e1", "cast_id": 33, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 8}, {"name": "Jason Gray-Stanford", "character": "Sasha", "id": 6166, "credit_id": "52fe4b1c9251416c910d02e5", "cast_id": 34, "profile_path": "/rvSf3Or7B74xO0MUWqv5KMNybr9.jpg", "order": 9}, {"name": "Julian Adams", "character": "Bavenod", "id": 585976, "credit_id": "52fe4b1c9251416c910d02e9", "cast_id": 35, "profile_path": "/8jmUSnsP2Diq40GdaDudlFBqoG2.jpg", "order": 10}, {"name": "Kevin Pardue", "character": "Yanis", "id": 65561, "credit_id": "52fe4b1c9251416c910d02ed", "cast_id": 36, "profile_path": "/wiJEegsHkvSxYjWrUri7xXn7xmy.jpg", "order": 11}, {"name": "Jacob Witkin", "character": "Priest", "id": 63210, "credit_id": "52fe4b1c9251416c910d02f1", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Matt Bushell", "character": "Sentry", "id": 57995, "credit_id": "52fe4b1c9251416c910d02f5", "cast_id": 38, "profile_path": "/cYq1abfNB0rcxfSdavEaH0gt3AM.jpg", "order": 13}, {"name": "Daren Flam", "character": "Stepan", "id": 1183407, "credit_id": "52fe4b1c9251416c910d02f9", "cast_id": 39, "profile_path": null, "order": 14}], "directors": [{"name": "Todd Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe4b1c9251416c910d0239", "profile_path": "/c87kKF56KvM4CPQ40oJQymtgkeO.jpg", "id": 16829}], "vote_average": 5.7, "runtime": 99}, "13483": {"poster_path": "/36PzzP5VBLkOvMJvyed4YQaVZXr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14373825, "overview": "In \"Awake,\" a psychological thriller that tells the story of a man undergoing heart surgery while experiencing a phenomenon called \"anesthetic awareness,\" which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.", "video": false, "id": 13483, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Awake", "tagline": "Every year, one in 700 people wake up during surgery.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0211933", "adult": false, "backdrop_path": "/lDGr5MEZjUP1s6rNLQIJAvZzBeN.jpg", "production_companies": [{"name": "GreeneStreet Films", "id": 2152}, {"name": "The Weinstein Company", "id": 308}, {"name": "Open City Films", "id": 547}], "release_date": "2007-11-28", "popularity": 0.712259514545392, "original_title": "Awake", "budget": 86000000, "cast": [{"name": "Hayden Christensen", "character": "Clay Beresford", "id": 17244, "credit_id": "52fe456f9251416c7505665f", "cast_id": 1, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sam Lockwood", "id": 56731, "credit_id": "52fe456f9251416c75056663", "cast_id": 2, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Terrence Howard", "character": "Dr. Jack Harper", "id": 18288, "credit_id": "52fe456f9251416c75056667", "cast_id": 3, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 2}, {"name": "Lena Olin", "character": "Lilith Beresford", "id": 5313, "credit_id": "52fe456f9251416c7505666b", "cast_id": 4, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 3}, {"name": "Charlie Hewson", "character": "Brian the Orderly", "id": 133046, "credit_id": "52fe456f9251416c75056675", "cast_id": 6, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 4}, {"name": "Christopher McDonald", "character": "Dr. Larry Lupin", "id": 4443, "credit_id": "5496c86392514130fc004b11", "cast_id": 53, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 5}, {"name": "Sam Robards", "character": "Clayton Beresford Sr.", "id": 8213, "credit_id": "5496c8a5c3a3686ae10067c6", "cast_id": 54, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 6}, {"name": "Arliss Howard", "character": "Dr. Jonathan Neyer", "id": 3229, "credit_id": "5496c8bf9251416e1e005a87", "cast_id": 55, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 7}, {"name": "Fisher Stevens", "character": "Dr. Puttnam", "id": 26473, "credit_id": "5496c8dbc3a3680fc6004260", "cast_id": 56, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 8}, {"name": "Georgina Chapman", "character": "Penny Carver", "id": 41547, "credit_id": "5496c8fa9251417a81003d3e", "cast_id": 57, "profile_path": "/nSdhtkVAJ2N0YWWviLS42mMktwC.jpg", "order": 9}, {"name": "David Harbour", "character": "Dracula", "id": 35029, "credit_id": "5496c9169251413f750045cd", "cast_id": 58, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 10}, {"name": "Court Young", "character": "Officer Doherty", "id": 93639, "credit_id": "5496c93892514132ed004595", "cast_id": 59, "profile_path": null, "order": 11}, {"name": "Poorna Jagannathan", "character": "Dr. Neyer's Nurse", "id": 428440, "credit_id": "5496c952c3a3686af30059be", "cast_id": 60, "profile_path": "/7RRxc28foQO3MGcVruU1rdLVrg8.jpg", "order": 12}], "directors": [{"name": "Joby Harold", "department": "Directing", "job": "Director", "credit_id": "52fe456f9251416c75056671", "profile_path": null, "id": 74569}], "vote_average": 6.2, "runtime": 84}, "4806": {"poster_path": "/5DN9BWdj45b9e31nWaLJceAGFR3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 309457509, "overview": "Ike Graham, New York columnist, writes his text always at the last minute. This time, a drunken man in his favourite bar tells Ike about Maggie Carpenter, a woman who always flees from her grooms in the last possible moment. Ike, who does not have the best opinion about females anyway, writes an offensive column without researching the subject thoroughly.", "video": false, "id": 4806, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Runaway Bride", "tagline": "Catch her if you can.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0163187", "adult": false, "backdrop_path": "/tcaJNtDbJCuFuOYo29KLtI68hRs.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Paramount Pictures", "id": 4}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Interscope Communications", "id": 10201}], "release_date": "1999-07-24", "popularity": 0.761874572975636, "original_title": "Runaway Bride", "budget": 70000000, "cast": [{"name": "Julia Roberts", "character": "Maggie Carpenter", "id": 1204, "credit_id": "52fe43dbc3a36847f8074451", "cast_id": 5, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Richard Gere", "character": "Ike Graham", "id": 1205, "credit_id": "52fe43dbc3a36847f8074455", "cast_id": 6, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Joan Cusack", "character": "Peggy Flemming", "id": 3234, "credit_id": "52fe43dbc3a36847f8074459", "cast_id": 7, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 2}, {"name": "Rita Wilson", "character": "Ellie Graham", "id": 12931, "credit_id": "52fe43dbc3a36847f807445d", "cast_id": 8, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 3}, {"name": "H\u00e9ctor Elizondo", "character": "Fisher", "id": 1210, "credit_id": "52fe43dbc3a36847f8074461", "cast_id": 9, "profile_path": "/48UNfVFZVr0jyMIlLPhzm8IIM7f.jpg", "order": 4}, {"name": "Christopher Meloni", "character": "Coach Bob Kelly", "id": 22227, "credit_id": "52fe43dbc3a36847f8074465", "cast_id": 10, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 5}, {"name": "Paul Dooley", "character": "Walter Carpenter", "id": 15900, "credit_id": "52fe43dbc3a36847f8074469", "cast_id": 11, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 6}, {"name": "Donal Logue", "character": "Priest Brian Norris", "id": 10825, "credit_id": "52fe43dbc3a36847f807446d", "cast_id": 12, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 7}, {"name": "Sela Ward", "character": "Pretty Woman in Bar", "id": 6068, "credit_id": "52fe43dbc3a36847f8074471", "cast_id": 13, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 8}, {"name": "Sandra Taylor", "character": "Model Shelby", "id": 32291, "credit_id": "52fe43dbc3a36847f8074475", "cast_id": 14, "profile_path": "/2PO8r6s8IgfzWHc2ajfDgdp95JR.jpg", "order": 9}, {"name": "Tom Mason", "character": "Final Wedding Pastor", "id": 80874, "credit_id": "52fe43dbc3a36847f80744c1", "cast_id": 27, "profile_path": "/lWPITFNNJOoJprOoatAgfVRV9pH.jpg", "order": 10}, {"name": "Yul Vazquez", "character": "Dead Head Gill Chavez", "id": 75604, "credit_id": "52fe43dbc3a36847f80744c5", "cast_id": 28, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 11}, {"name": "Reg Rogers", "character": "George Swilling", "id": 129759, "credit_id": "53d0452c0e0a265ded00a577", "cast_id": 29, "profile_path": "/csGfqAuyX70FgMVZB3xzdA0tct.jpg", "order": 12}, {"name": "Jane Morris", "character": "Mrs. Pressman", "id": 13451, "credit_id": "53d045410e0a265e0100a1cd", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Jane Morris", "character": "", "id": 13451, "credit_id": "53d0455a0e0a265dfc00a209", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Jean Schertler", "character": "Grandma", "id": 1345474, "credit_id": "53d045820e0a265df300a5c1", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Laurie Metcalf", "character": "Betty Trout", "id": 12133, "credit_id": "53d0459e0e0a265dfa00a35b", "cast_id": 33, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 16}, {"name": "Larry Miller", "character": "Bartender", "id": 1211, "credit_id": "53d045c40e0a265df300a5c9", "cast_id": 34, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 17}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe43dbc3a36847f807443b", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.6, "runtime": 116}, "801": {"poster_path": "/62Ve2yREvobU0qo4DxdSrShh1YO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 123922370, "overview": "An unorthodox and irreverent DJ begins to shake up things when he is assigned to the US Armed Services Radio station in Vietnam.", "video": false, "id": 801, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Good Morning, Vietnam", "tagline": "Time to rock it from the Delta to the DMZ!", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093105", "adult": false, "backdrop_path": "/lnseq9bVaL6LLmuqWiJYiYmM8TO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Silver Screen Partners III", "id": 554}], "release_date": "1987-12-23", "popularity": 0.321418820986475, "original_title": "Good Morning, Vietnam", "budget": 13000000, "cast": [{"name": "Robin Williams", "character": "Adrian Cronauer", "id": 2157, "credit_id": "52fe4278c3a36847f802135f", "cast_id": 12, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Edward Montesque Garlick", "id": 2178, "credit_id": "52fe4278c3a36847f8021363", "cast_id": 13, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Tung Thanh Tran", "character": "Tuan", "id": 11960, "credit_id": "52fe4278c3a36847f8021367", "cast_id": 14, "profile_path": "/iUjrTN3w1QsK0yxan767fFYVWBd.jpg", "order": 2}, {"name": "Chintara Sukapatana", "character": "Trinh", "id": 11961, "credit_id": "52fe4278c3a36847f802136b", "cast_id": 15, "profile_path": "/7mSNoFl9ggYcJpAEWvnVLToRTxS.jpg", "order": 3}, {"name": "Bruno Kirby", "character": "Lt. Steven Hauk", "id": 9257, "credit_id": "52fe4278c3a36847f8021393", "cast_id": 27, "profile_path": "/vWKYTMoasP2kVqvG0hoNe4q73Nx.jpg", "order": 4}, {"name": "Robert Wuhl", "character": "Marty Lee Dreiwitz", "id": 4040, "credit_id": "52fe4278c3a36847f802136f", "cast_id": 17, "profile_path": "/ibDgbYtVwOwTuClvFclLybMk24T.jpg", "order": 5}, {"name": "J. T. Walsh", "character": "Sgt. Major Dickerson", "id": 22131, "credit_id": "52fe4278c3a36847f8021373", "cast_id": 18, "profile_path": "/rJfkdcpmDROTSrSxh2vbnbFol6e.jpg", "order": 6}, {"name": "Noble Willingham", "character": "Gen. Taylor", "id": 31005, "credit_id": "52fe4278c3a36847f8021377", "cast_id": 19, "profile_path": "/stdQUjYtyjfuJRgA89DyzkZEyai.jpg", "order": 7}, {"name": "Richard Edson", "character": "Pvt. Abersold", "id": 6396, "credit_id": "52fe4278c3a36847f802137b", "cast_id": 20, "profile_path": "/7YegwxrBppretnwGEEMxEI453Ef.jpg", "order": 8}, {"name": "Juney Smith", "character": "Phil McPherson", "id": 14330, "credit_id": "52fe4278c3a36847f802137f", "cast_id": 21, "profile_path": "/ajDBZhChcwETIyCuCbbH3u39l4D.jpg", "order": 9}, {"name": "Richard Portnow", "character": "Dan 'The Man' Levitan", "id": 4255, "credit_id": "52fe4278c3a36847f8021383", "cast_id": 22, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 10}, {"name": "Cu Ba Nguyen", "character": "Jimmy Wah", "id": 184378, "credit_id": "52fe4278c3a36847f8021387", "cast_id": 24, "profile_path": "/cQLcopiPILekSISsqxgPkBVc9EU.jpg", "order": 11}, {"name": "Dan Stanton", "character": "Censor #1", "id": 16185, "credit_id": "52fe4278c3a36847f802138b", "cast_id": 25, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 12}, {"name": "Don Stanton", "character": "Censor #2", "id": 16184, "credit_id": "52fe4278c3a36847f802138f", "cast_id": 26, "profile_path": "/ppY3C3RfsPg7hcBaFopk1fvXDjL.jpg", "order": 13}, {"name": "Floyd Vivino", "character": "Eddie Kirk", "id": 1218025, "credit_id": "52fe4278c3a36847f8021397", "cast_id": 28, "profile_path": "/gNwxA8RJud8bCi5ndmJuvypG2A0.jpg", "order": 14}], "directors": [{"name": "Barry Levinson", "department": "Directing", "job": "Director", "credit_id": "52fe4278c3a36847f802131f", "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "id": 8246}], "vote_average": 6.8, "runtime": 121}, "4808": {"poster_path": "/cX9AcsNhPluJaQmgA30Ml3G8fpp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13474588, "overview": "Romance and suspense in Paris, as a woman is pursued by several men who want a fortune her murdered husband had stolen. Who can she trust?", "video": false, "id": 4808, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Charade", "tagline": "It's a guessing game of mirth and mystery!", "vote_count": 99, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0056923", "adult": false, "backdrop_path": "/d2shJdJlReSI6hMn52XKYwM8X4s.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Stanley Donen Films", "id": 11404}], "release_date": "1963-12-05", "popularity": 0.74959036670415, "original_title": "Charade", "budget": 4000000, "cast": [{"name": "Cary Grant", "character": "Peter Joshua", "id": 2638, "credit_id": "52fe43dbc3a36847f80745c9", "cast_id": 9, "profile_path": "/jOHO67Xqoh4wZYUI4pZVG6korjc.jpg", "order": 0}, {"name": "Audrey Hepburn", "character": "Regina Lampert", "id": 1932, "credit_id": "52fe43dbc3a36847f80745cd", "cast_id": 10, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 1}, {"name": "Walter Matthau", "character": "Hamilton Bartholemew", "id": 6837, "credit_id": "52fe43dbc3a36847f80745d1", "cast_id": 11, "profile_path": "/xJVkvprOnzP5Zdh5y63y8HHniDZ.jpg", "order": 2}, {"name": "James Coburn", "character": "Tex Panthollow", "id": 5563, "credit_id": "52fe43dbc3a36847f80745d5", "cast_id": 12, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 3}, {"name": "George Kennedy", "character": "Herman Scobie", "id": 12950, "credit_id": "52fe43dbc3a36847f80745d9", "cast_id": 13, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 4}, {"name": "Dominique Minot", "character": "Sylvie Gaudel", "id": 41714, "credit_id": "52fe43dbc3a36847f80745dd", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Ned Glass", "character": "Leopold Gideon", "id": 18870, "credit_id": "52fe43dbc3a36847f80745e1", "cast_id": 15, "profile_path": "/dwfC6rmH6JkaNxuYEgi2Yh55n4w.jpg", "order": 6}, {"name": "Jacques Marin", "character": "Insp. Edouard Grandpierre", "id": 26890, "credit_id": "52fe43dbc3a36847f80745e5", "cast_id": 16, "profile_path": "/vDHb0ktErwMAmdYzSW7o5rsfnZE.jpg", "order": 7}, {"name": "Paul Bonifas", "character": "Mr. Felix", "id": 41716, "credit_id": "52fe43dbc3a36847f80745e9", "cast_id": 17, "profile_path": "/1nwh4DDwzHVqu8h46XzeX5hGgYW.jpg", "order": 8}, {"name": "Thomas Chelimsky", "character": "Jean-Louis Gaudel", "id": 41717, "credit_id": "52fe43dbc3a36847f80745ed", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "Stanley Donen", "department": "Directing", "job": "Director", "credit_id": "52fe43dbc3a36847f80745a1", "profile_path": "/8r91mtKkWdYri739IilAvTVzr1E.jpg", "id": 13284}], "vote_average": 7.4, "runtime": 113}, "13001": {"poster_path": "/nOKvsS77gOFEtmEVUBcqgpmlxIV.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8900000, "overview": "SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.", "video": false, "id": 13001, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Stargate: The Ark of Truth", "tagline": "The lines have been drawn. The battle has been waged. Only one thing can save us...", "vote_count": 74, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fwVVh9o0WZsZNstpX3O55ff7Hs8.jpg", "poster_path": "/5TTU7voIo3t0IYzZTPQQAbawy6Y.jpg", "id": 44215, "name": "Stargate SG-1 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0942903", "adult": false, "backdrop_path": "/rRFAbLCcMV4jbf6NAepkILs8EST.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2008-03-11", "popularity": 0.433754842469261, "original_title": "Stargate: The Ark of Truth", "budget": 7000000, "cast": [{"name": "Ben Browder", "character": "Cameron Mitchell", "id": 26048, "credit_id": "52fe452d9251416c7504e3d3", "cast_id": 9, "profile_path": "/uUFV9hqLUDwT0qsXGqx2KUzfVbO.jpg", "order": 0}, {"name": "Amanda Tapping", "character": "Samantha Carter", "id": 26087, "credit_id": "52fe452d9251416c7504e3d7", "cast_id": 10, "profile_path": "/a7rzcdtLEeNZ4MLLVkoPz2pufte.jpg", "order": 1}, {"name": "Christopher Judge", "character": "Teal'c", "id": 26088, "credit_id": "52fe452d9251416c7504e3db", "cast_id": 11, "profile_path": "/5ZS5BJwSRLXxujP1eUeX8tJRscF.jpg", "order": 2}, {"name": "Michael Shanks", "character": "Daniel Jackson", "id": 26086, "credit_id": "52fe452d9251416c7504e3df", "cast_id": 12, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 3}, {"name": "Beau Bridges", "character": "Hank Landry", "id": 2222, "credit_id": "52fe452d9251416c7504e3e3", "cast_id": 13, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 4}, {"name": "Claudia Black", "character": "Vala Mal Doran", "id": 26054, "credit_id": "52fe452d9251416c7504e3e7", "cast_id": 14, "profile_path": "/A3qGrF1si2rGwiUTFjBw9mOv9Z7.jpg", "order": 5}, {"name": "Morena Baccarin", "character": "Adria", "id": 54882, "credit_id": "52fe452d9251416c7504e3f7", "cast_id": 17, "profile_path": "/gUG9fnudV5Ev1MIr3adngn1GuZJ.jpg", "order": 6}, {"name": "Tim Guinee", "character": "Tomin", "id": 40275, "credit_id": "52fe452d9251416c7504e3fb", "cast_id": 19, "profile_path": "/eDmZSOzSk7cIMSGSe3qFK1wjKbc.jpg", "order": 7}, {"name": "Julian Sands", "character": "Doci", "id": 6104, "credit_id": "52fe452d9251416c7504e3ff", "cast_id": 20, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 8}, {"name": "Currie Graham", "character": "James Marrick", "id": 156590, "credit_id": "52fe452d9251416c7504e403", "cast_id": 21, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 9}], "directors": [{"name": "Robert C. Cooper", "department": "Directing", "job": "Director", "credit_id": "52fe452d9251416c7504e3ab", "profile_path": "/5IefO2aEDml9gNoITquVF0eth4L.jpg", "id": 27745}], "vote_average": 7.0, "runtime": 97}, "45772": {"poster_path": "/atCBHTqq7khw5Z1KSVXDo6ncKWF.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189712432, "overview": "A version of Shakespeare's play, set in the world of warring indoor and outdoor gnomes. Garden gnomes Gnomeo and Juliet have as many obstacles to overcome as their quasi namesakes when they are caught up in a feud between neighbors. But with plastic pink flamingos and lawnmower races in the mix, can this young couple find lasting happiness?", "video": false, "id": 45772, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Gnomeo & Juliet", "tagline": "A little adventure goes a lawn way.", "vote_count": 165, "homepage": "http://gnomeoandjuliet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377981", "adult": false, "backdrop_path": "/5VDfdJBofpvXAMtaHTT8YFE0lru.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Starz Animation", "id": 2885}], "release_date": "2011-01-13", "popularity": 1.05527371474692, "original_title": "Gnomeo & Juliet", "budget": 36000000, "cast": [{"name": "Jason Statham", "character": "Tybalt (voice)", "id": 976, "credit_id": "52fe46d2c3a36847f8114201", "cast_id": 8, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "James McAvoy", "character": "Gnomeo (voice)", "id": 5530, "credit_id": "52fe46d2c3a36847f8114209", "cast_id": 10, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 2}, {"name": "Michael Caine", "character": "Lord Redbrick (voice)", "id": 3895, "credit_id": "52fe46d2c3a36847f811420d", "cast_id": 11, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 3}, {"name": "Maggie Smith", "character": "Lady Bluebury (voice)", "id": 10978, "credit_id": "52fe46d2c3a36847f8114211", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 4}, {"name": "Julie Walters", "character": "Lady Montague (voice)", "id": 477, "credit_id": "52fe46d2c3a36847f8114215", "cast_id": 13, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 5}, {"name": "Patrick Stewart", "character": "William Shakespeare (voice)", "id": 2387, "credit_id": "52fe46d2c3a36847f8114219", "cast_id": 14, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 6}, {"name": "Jim Cummings", "character": "Featherstone (voice)", "id": 12077, "credit_id": "52fe46d2c3a36847f811421d", "cast_id": 15, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 7}, {"name": "Ashley Jensen", "character": "Nanette (voice)", "id": 55398, "credit_id": "52fe46d2c3a36847f8114221", "cast_id": 16, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 8}, {"name": "Dolly Parton", "character": "Dolly Gnome (voice)", "id": 67274, "credit_id": "52fe46d2c3a36847f8114225", "cast_id": 17, "profile_path": "/jwgftK97N8cPUJztv1ZxMEdXP8j.jpg", "order": 9}, {"name": "Matt Lucas", "character": "Benny (voice)", "id": 26209, "credit_id": "52fe46d2c3a36847f8114229", "cast_id": 18, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 10}, {"name": "Hulk Hogan", "character": "Terrafirminator V.O. (voice)", "id": 16620, "credit_id": "52fe46d2c3a36847f811422d", "cast_id": 19, "profile_path": "/jDWQ3FLbbPSIHPgfOdmuUaWWnON.jpg", "order": 11}, {"name": "Stephen Merchant", "character": "Paris (voice)", "id": 39189, "credit_id": "52fe46d2c3a36847f8114231", "cast_id": 20, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 12}, {"name": "Ozzy Osbourne", "character": "Fawn (voice)", "id": 12208, "credit_id": "52fe46d2c3a36847f8114235", "cast_id": 21, "profile_path": "/9EkHsyIW3xjch0MJ6LtrvMmGhdL.jpg", "order": 13}, {"name": "Emily Blunt", "character": "Juliet (voice)", "id": 5081, "credit_id": "53b523f10e0a2676c7002117", "cast_id": 22, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 14}], "directors": [{"name": "Kelly Asbury", "department": "Directing", "job": "Director", "credit_id": "52fe46d2c3a36847f81141e5", "profile_path": "/jJAHjXFbjEUJrYjxyuj0AWMPAqW.jpg", "id": 12079}], "vote_average": 5.9, "runtime": 84}, "4816": {"poster_path": "/g0FgYRxul1LMsa0QgXmbb1Mhvov.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An African American mafia hit man who models himself after the samurai of old finds himself targeted for death by the mob.", "video": false, "id": 4816, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Dog: The Way of the Samurai", "tagline": "All assassins live beyond the law \u2026 only one follows the code", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0165798", "adult": false, "backdrop_path": "/iCuJ3DWgNZcLK8EBVQpUFlyxu3e.jpg", "production_companies": [], "release_date": "1999-09-13", "popularity": 0.80402823431397, "original_title": "Ghost Dog: The Way of the Samurai", "budget": 0, "cast": [{"name": "Forest Whitaker", "character": "Ghost Dog", "id": 2178, "credit_id": "52fe43dcc3a36847f80748d1", "cast_id": 9, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 0}, {"name": "Cliff Gorman", "character": "Sonny Valerio", "id": 19183, "credit_id": "52fe43dcc3a36847f80748d5", "cast_id": 10, "profile_path": "/mpzeKQvkR500xcxmB0idFCfcasr.jpg", "order": 1}, {"name": "Tricia Vessey", "character": "Louise Vargo", "id": 39596, "credit_id": "52fe43dcc3a36847f80748dd", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Henry Silva", "character": "Ray Vargo", "id": 14731, "credit_id": "52fe43dcc3a36847f80748e1", "cast_id": 13, "profile_path": "/bIQ27e769EbNtMBdU1xSoaGgNd3.jpg", "order": 3}, {"name": "Victor Argo", "character": "Vinny", "id": 2561, "credit_id": "52fe43dcc3a36847f80748e5", "cast_id": 14, "profile_path": "/kYwuOpT59qqJnssl9R4226yHSAG.jpg", "order": 4}, {"name": "Joseph Rigano", "character": "Joe Rags", "id": 13605, "credit_id": "52fe43dcc3a36847f80748e9", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "John Tormey", "character": "Louie", "id": 28002, "credit_id": "52fe43dcc3a36847f80748d9", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Damon Whitaker", "character": "Ghost Dog (Child)", "id": 39597, "credit_id": "52fe43dcc3a36847f80748ed", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Frank Minucci", "character": "Big Angie", "id": 39598, "credit_id": "52fe43dcc3a36847f80748f1", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Richard Portnow", "character": "Handsome Frank", "id": 4255, "credit_id": "52fe43dcc3a36847f80748f5", "cast_id": 18, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 9}, {"name": "Gene Ruffini", "character": "Old Consigliere", "id": 39599, "credit_id": "52fe43dcc3a36847f80748f9", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Frank Adonis", "character": "Bodyguard", "id": 4692, "credit_id": "52fe43dcc3a36847f80748fd", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "RZA", "character": "Samurai", "id": 150, "credit_id": "52fe43dcc3a36847f8074901", "cast_id": 21, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 12}, {"name": "Isaach De Bankol\u00e9", "character": "Raymond", "id": 4812, "credit_id": "52fe43dcc3a36847f807490b", "cast_id": 23, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 13}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe43dcc3a36847f80748a3", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 7.5, "runtime": 116}, "234200": {"poster_path": "/kS5KKZxAq1ESoLVcyfEVweTwAdX.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "It\u2019s the summer of 1984 \u2013 Margaret Thatcher is in power and the National Union of Mineworkers (NUM) is on strike. At the Gay Pride March in London, a group of gay and lesbian activists decides to raise money to support the families of the striking miners. But there is a problem. The Union seems embarrassed to receive their support. But the activists are not deterred. They decide to ignore the Union and go direct to the miners. They identify a mining village in deepest Wales and set off in a mini bus to make their donation in person. And so begins the extraordinary story of two seemingly alien communities who form a surprising and ultimately triumphant partnership.", "video": false, "id": 234200, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Pride", "tagline": "Based on the inspirational true story.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3169706", "adult": false, "backdrop_path": "/9CdBoClQ3UuiJMSzDbQt4I0O3J0.jpg", "production_companies": [{"name": "Calamity Films", "id": 26369}], "release_date": "2014-09-12", "popularity": 1.07382429219943, "original_title": "Pride", "budget": 0, "cast": [{"name": "Bill Nighy", "character": "Cliff", "id": 2440, "credit_id": "52fe4e2ec3a36847f8282531", "cast_id": 1, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 0}, {"name": "George MacKay", "character": "Joe", "id": 146750, "credit_id": "52fe4e2ec3a36847f8282535", "cast_id": 2, "profile_path": "/8V5uGgbl57gbAyj59kIRFFdvoXd.jpg", "order": 1}, {"name": "Dominic West", "character": "Jonathan", "id": 17287, "credit_id": "52fe4e2ec3a36847f8282539", "cast_id": 3, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 2}, {"name": "Andrew Scott", "character": "Gethin", "id": 125660, "credit_id": "52fe4e2ec3a36847f828253d", "cast_id": 4, "profile_path": "/3yu4zC3OVq2lvmMqnPT4RYH4sBU.jpg", "order": 3}, {"name": "Imelda Staunton", "character": "Hefina", "id": 11356, "credit_id": "52fe4e2ec3a36847f8282541", "cast_id": 5, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 4}, {"name": "Paddy Considine", "character": "Dai", "id": 14887, "credit_id": "52fe4e2ec3a36847f8282545", "cast_id": 6, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 5}, {"name": "Ben Schnetzer", "character": "Mark Ashton", "id": 224167, "credit_id": "52fe4e2ec3a36847f8282549", "cast_id": 7, "profile_path": "/ac6KVM4Uc1Y0WPU7yptRQERPzO4.jpg", "order": 6}, {"name": "Joseph Gilgun", "character": "Mike", "id": 225610, "credit_id": "53b205750e0a26598c0091da", "cast_id": 18, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 7}, {"name": "Jessica Gunning", "character": "Sian", "id": 1196101, "credit_id": "54b471c6c3a36805d3002b97", "cast_id": 21, "profile_path": "/qPDICmM1Ik2Ig1V18qJa0sTsfyC.jpg", "order": 8}, {"name": "Faye Marsay", "character": "Steph", "id": 1204956, "credit_id": "52fe4e2ec3a36847f828254d", "cast_id": 8, "profile_path": "/dJET1oChiCIPILrmvx6Wr0hVPNm.jpg", "order": 9}, {"name": "Freddie Fox", "character": "Jeff", "id": 1014931, "credit_id": "53b203330e0a265983008e02", "cast_id": 15, "profile_path": "/kOPYh0Jr8lAUTmbyDZiES9Lx1j8.jpg", "order": 10}, {"name": "Chris Overton", "character": "Reggie", "id": 3566, "credit_id": "52fe4e2ec3a36847f8282559", "cast_id": 11, "profile_path": null, "order": 11}, {"name": "Joshua Hill", "character": "Ray", "id": 1336143, "credit_id": "53b204b2c3a3682edf006a82", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Jessie Cave", "character": "Zoe", "id": 234924, "credit_id": "52fe4e2ec3a36847f8282551", "cast_id": 9, "profile_path": "/kLHwb3fNyqc7H0War8DQfCqQv87.jpg", "order": 13}, {"name": "Shane Salter", "character": "Policeman 1", "id": 1269685, "credit_id": "52fe4e2ec3a36847f8282555", "cast_id": 10, "profile_path": "/jf3baFCRCtSlGZbZ9Hp8QECouPC.jpg", "order": 14}, {"name": "Larissa Jones", "character": "", "id": 1269686, "credit_id": "52fe4e2ec3a36847f828255d", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "Karina Fernandez", "character": "Stella", "id": 65449, "credit_id": "5424c6400e0a263b740049bf", "cast_id": 20, "profile_path": "/pbwwQ5ypvkVVPBAsAuN49zJkEGK.jpg", "order": 16}, {"name": "Monica Dolan", "character": "Marion", "id": 229606, "credit_id": "54bb5873c3a3684046002ba6", "cast_id": 22, "profile_path": "/rH2PyFU4ZpvNF1guqDXV5Qqrtwv.jpg", "order": 17}, {"name": "Joseph Gilgun", "character": "Mike", "id": 225610, "credit_id": "54bb588ac3a368389c000edd", "cast_id": 23, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 18}, {"name": "Faye Marsay", "character": "Steph", "id": 1204956, "credit_id": "54bb589092514148b0004dfd", "cast_id": 24, "profile_path": "/dJET1oChiCIPILrmvx6Wr0hVPNm.jpg", "order": 19}, {"name": "Freddie Fox", "character": "Jeff", "id": 1014931, "credit_id": "54bb5897c3a368145e005463", "cast_id": 25, "profile_path": "/kOPYh0Jr8lAUTmbyDZiES9Lx1j8.jpg", "order": 20}, {"name": "Liz White", "character": "Margaret", "id": 90046, "credit_id": "54bb58cb9251411d77007acb", "cast_id": 26, "profile_path": "/g5MwaqoKPy0lRPff7BaXgteiGUX.jpg", "order": 21}, {"name": "Russell Tovey", "character": "Tim", "id": 55469, "credit_id": "54bb58e3c3a3686c610076d6", "cast_id": 27, "profile_path": "/qpL1Zl5NjNTcYpRBlwpm9DPsl1I.jpg", "order": 22}, {"name": "Michael Vardian", "character": "Welsh Miner", "id": 1426167, "credit_id": "54dbcec1c3a36812330028ed", "cast_id": 28, "profile_path": "/zY4xOBvFDu9GZemU5FGSNg1MD6v.jpg", "order": 23}], "directors": [{"name": "Matthew Warchus", "department": "Directing", "job": "Director", "credit_id": "52fe4e2ec3a36847f8282563", "profile_path": null, "id": 111807}], "vote_average": 7.7, "runtime": 117}, "13018": {"poster_path": "/ivz84uFw7OunCsJ4WdgGsMICbpQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17741298, "overview": "As a corporate auditor who works in a number of different offices, Jonathan McQuarry wanders without an anchor among New York's power brokers. A chance meeting with charismatic lawyer Wyatt Bose leads to Jonathan's introduction to The List, an underground sex club. Jonathan begins an affair with a woman known only as S, who introduces Jonathan to a world of treachery and murder.", "video": false, "id": 13018, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Deception", "tagline": "When you're in this world, no one is who they seem, and everyone is playing the game.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0800240", "adult": false, "backdrop_path": "/omlH3JVUL6bSoiX0nc9Ekv1kjRd.jpg", "production_companies": [{"name": "Seed Productions", "id": 9076}], "release_date": "2008-04-25", "popularity": 0.557278336211612, "original_title": "Deception", "budget": 25000000, "cast": [{"name": "Hugh Jackman", "character": "Wyatt Bose", "id": 6968, "credit_id": "52fe452f9251416c7504e83b", "cast_id": 1, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Jonathan McQuarry", "id": 3061, "credit_id": "52fe452f9251416c7504e83f", "cast_id": 2, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Michelle Williams", "character": "S", "id": 1812, "credit_id": "52fe452f9251416c7504e843", "cast_id": 3, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 2}, {"name": "Bruce Altman", "character": "Lawyer #1", "id": 27545, "credit_id": "52fe45309251416c7504e853", "cast_id": 6, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 3}, {"name": "Andrew Ginsburg", "character": "Lawyer #2", "id": 133442, "credit_id": "52fe45309251416c7504e857", "cast_id": 7, "profile_path": "/dMnaCAsP50CU19lp3GxRxVdJSgm.jpg", "order": 4}, {"name": "Stephanie Roth Haberle", "character": "Assistant Controller", "id": 58539, "credit_id": "52fe45309251416c7504e85b", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Christine Kan", "character": "Tennis Player #1", "id": 133443, "credit_id": "52fe45309251416c7504e85f", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Dante Spinotti", "character": "Herr Kleiner / Mr. Moretti", "id": 11099, "credit_id": "52fe45309251416c7504e863", "cast_id": 10, "profile_path": "/vIb3GU52BvSIQh1MXZRFDVRnqsm.jpg", "order": 7}, {"name": "Karolina Muller", "character": "Waitress", "id": 133444, "credit_id": "52fe45309251416c7504e867", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Agnete Oernsholt", "character": "Woman at Waldorf Astoria", "id": 133445, "credit_id": "52fe45309251416c7504e86b", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Melissa Rae Mahon", "character": "Velvet Rope Dancer #1", "id": 133446, "credit_id": "52fe45309251416c7504e86f", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Rachel Montez Collins", "character": "Velvet Rope Dancer #2", "id": 133447, "credit_id": "52fe45309251416c7504e873", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Holly Cruikshank", "character": "Velvet Rope Dancer #3", "id": 133448, "credit_id": "52fe45309251416c7504e877", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Deborah Yates", "character": "Tango Dancer", "id": 133449, "credit_id": "52fe45309251416c7504e87b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Bill Camp", "character": "Clancey Controller", "id": 121718, "credit_id": "52fe45309251416c7504e87f", "cast_id": 17, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 14}, {"name": "Zoe Perry", "character": "Secretary #1", "id": 133450, "credit_id": "52fe45309251416c7504e883", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Aya Cash", "character": "Secretary #2", "id": 133451, "credit_id": "52fe45309251416c7504e887", "cast_id": 19, "profile_path": "/ihZqcurACgV6NDy95pkwQ29OawL.jpg", "order": 16}, {"name": "Frank Girardeau", "character": "Norbert Lewman", "id": 133452, "credit_id": "52fe45309251416c7504e88b", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Natasha Henstridge", "character": "Simone Wilkinson", "id": 57395, "credit_id": "52fe45309251416c7504e88f", "cast_id": 21, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 18}, {"name": "Charlotte Rampling", "character": "Wall Street Belle", "id": 44079, "credit_id": "52fe45309251416c7504e893", "cast_id": 22, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 19}, {"name": "Paz de la Huerta", "character": "List Member #1", "id": 59882, "credit_id": "52fe45309251416c7504e897", "cast_id": 23, "profile_path": "/fy5pIoCtMrrVgMYPwZYEYsZHdYm.jpg", "order": 20}, {"name": "Daisy Bates", "character": "List Member #2", "id": 133453, "credit_id": "52fe45309251416c7504e89b", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Shannan Click", "character": "List Member #3", "id": 133454, "credit_id": "52fe45309251416c7504e89f", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Malcolm Goodwin", "character": "Cabbie", "id": 57997, "credit_id": "52fe45309251416c7504e8a3", "cast_id": 26, "profile_path": "/igRMW5VUmv52D6wsD03s08oRWHT.jpg", "order": 23}, {"name": "Jordan Tesfay", "character": "List Member #4", "id": 133455, "credit_id": "52fe45309251416c7504e8a7", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Rachael Taylor", "character": "List Member #5", "id": 19538, "credit_id": "52fe45309251416c7504e8ab", "cast_id": 28, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 25}, {"name": "Lisa Gay Hamilton", "character": "Detective Russo", "id": 64908, "credit_id": "52fe45309251416c7504e8af", "cast_id": 29, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 26}, {"name": "Maggie Q", "character": "Tina at the Rhigha Royal", "id": 21045, "credit_id": "52fe45309251416c7504e8b3", "cast_id": 30, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 27}], "directors": [{"name": "Marcel Langenegger", "department": "Directing", "job": "Director", "credit_id": "52fe452f9251416c7504e849", "profile_path": null, "id": 74101}], "vote_average": 5.9, "runtime": 107}, "168672": {"poster_path": "/iwKIYy9GQApWUyvKAn23wZVulUU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 251171807, "overview": "A con man, Irving Rosenfeld, along with his seductive partner Sydney Prosser, is forced to work for a wild FBI agent, Richie DiMaso, who pushes them into a world of Jersey powerbrokers and mafia.", "video": false, "id": 168672, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "American Hustle", "tagline": "Everyone Hustles To Survive", "vote_count": 964, "homepage": "http://www.americanhustle-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1800241", "adult": false, "backdrop_path": "/dpGGeiTPDzqrcbK7h8if2YHHBXN.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2013-12-20", "popularity": 1.77938591000637, "original_title": "American Hustle", "budget": 40000000, "cast": [{"name": "Christian Bale", "character": "Irving Rosenfeld", "id": 3894, "credit_id": "52fe4cd3c3a36847f8240665", "cast_id": 3, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Bradley Cooper", "character": "Richie DiMaso", "id": 51329, "credit_id": "52fe4cd3c3a36847f824065d", "cast_id": 1, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 1}, {"name": "Amy Adams", "character": "Syndey Prosser", "id": 9273, "credit_id": "52fe4cd3c3a36847f8240669", "cast_id": 4, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 2}, {"name": "Jeremy Renner", "character": "Carmine Polito", "id": 17604, "credit_id": "52fe4cd3c3a36847f8240661", "cast_id": 2, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 3}, {"name": "Jennifer Lawrence", "character": "Rosalyn Rosenfeld", "id": 72129, "credit_id": "52fe4cd3c3a36847f8240671", "cast_id": 6, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 4}, {"name": "Louis C.K.", "character": "Stoddard Thorsen", "id": 52849, "credit_id": "52fe4cd3c3a36847f824066d", "cast_id": 5, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 5}, {"name": "Michael Pe\u00f1a", "character": "Paco Hernandez", "id": 454, "credit_id": "52fe4cd3c3a36847f82406a5", "cast_id": 23, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 6}, {"name": "Alessandro Nivola", "character": "Anthony Amado", "id": 4941, "credit_id": "52fe4cd3c3a36847f8240693", "cast_id": 19, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 7}, {"name": "Robert De Niro", "character": "Victor Tellegio", "id": 380, "credit_id": "52fe4cd3c3a36847f82406b1", "cast_id": 26, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 8}, {"name": "Jack Huston", "character": "Pete Musane", "id": 54738, "credit_id": "52fe4cd3c3a36847f82406a9", "cast_id": 24, "profile_path": "/fy9PKaLfxVMJ4Ycz8C7xdWrYvFi.jpg", "order": 9}, {"name": "Elisabeth R\u00f6hm", "character": "Dolly Polito", "id": 126932, "credit_id": "52fe4cd3c3a36847f82406a1", "cast_id": 22, "profile_path": "/67qIdPzAY5XrK895EyUpJI2QF8N.jpg", "order": 10}, {"name": "Dawn Olivieri", "character": "Cosmo Girl", "id": 92614, "credit_id": "52fe4cd3c3a36847f8240697", "cast_id": 20, "profile_path": "/ezcRQlpLaIE3jklAc7P3xdr3qjt.jpg", "order": 11}, {"name": "Erica McDermott", "character": "Abbie Abrams", "id": 999737, "credit_id": "52fe4cd3c3a36847f82406ad", "cast_id": 25, "profile_path": "/715Tt2EGYuN0f4ccso7t2prW7uu.jpg", "order": 12}, {"name": "Colleen Camp", "character": "Brenda", "id": 13023, "credit_id": "52fe4cd3c3a36847f82406bb", "cast_id": 28, "profile_path": "/baASQgWewWYG7lnYjgjZXe2t5MM.jpg", "order": 13}, {"name": "Shea Whigham", "character": "Carl Elway", "id": 74242, "credit_id": "52fe4cd3c3a36847f82406bf", "cast_id": 29, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 14}, {"name": "Sa\u00efd Taghmaoui", "character": "Irv's Sheik Plant", "id": 5419, "credit_id": "52fe4cd3c3a36847f8240705", "cast_id": 42, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 15}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4cd3c3a36847f8240677", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 7.0, "runtime": 138}, "62177": {"poster_path": "/6zMUhU3lEMky62ghhbFXLEsbI6K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 538983207, "overview": "Brave is set in the mystical Scottish Highlands, where M\u00e9rida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, M\u00e9rida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, M\u00e9rida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into M\u00e9rida\u2019s quest \u2014 and serving as comic relief \u2014 are the kingdom\u2019s three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.", "video": false, "id": 62177, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Brave", "tagline": "Change your fate.", "vote_count": 2145, "homepage": "http://disney.go.com/brave/#/home", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1217209", "adult": false, "backdrop_path": "/sfRCA9g3CunpnZO3QurHSIRcsUq.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2012-06-21", "popularity": 1.63380109730057, "original_title": "Brave", "budget": 185000000, "cast": [{"name": "Kelly Macdonald", "character": "M\u00e9rida (voice)", "id": 9015, "credit_id": "52fe4674c3a368484e0918ef", "cast_id": 1, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 0}, {"name": "Julie Walters", "character": "The Witch (voice)", "id": 477, "credit_id": "52fe4674c3a368484e0918f3", "cast_id": 2, "profile_path": "/eu2HP6pGt5YhSif8l2qWinMSJKp.jpg", "order": 1}, {"name": "Billy Connolly", "character": "King Fergus (voice)", "id": 9188, "credit_id": "52fe4674c3a368484e0918f7", "cast_id": 3, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 2}, {"name": "Emma Thompson", "character": "Queen Elinor (voice)", "id": 7056, "credit_id": "52fe4674c3a368484e0918fb", "cast_id": 4, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 3}, {"name": "Kevin McKidd", "character": "Lord MacGuffin / Young MacGuffin (voice)", "id": 9013, "credit_id": "52fe4674c3a368484e0918ff", "cast_id": 5, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 4}, {"name": "Craig Ferguson", "character": "Lord Macintosh (voice)", "id": 24264, "credit_id": "52fe4674c3a368484e091903", "cast_id": 6, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 5}, {"name": "Robbie Coltrane", "character": "Lord Dingwall (voice)", "id": 1923, "credit_id": "52fe4674c3a368484e091907", "cast_id": 7, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 6}, {"name": "Peigi Barker", "character": "Young Merida (voice)", "id": 1113604, "credit_id": "52fe4674c3a368484e091947", "cast_id": 22, "profile_path": "/rwu0NXF4YXavgJdVOX0jezHSUlg.jpg", "order": 7}, {"name": "Steven Cree", "character": "Young Macintosh (voice)", "id": 1102427, "credit_id": "52fe4674c3a368484e09194b", "cast_id": 23, "profile_path": "/qDVgyaxnboHj3QHfKEtv4XbKXSG.jpg", "order": 8}, {"name": "Steve Purcell", "character": "The Crow (voice)", "id": 137262, "credit_id": "53a6f15f0e0a26143f004176", "cast_id": 30, "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "order": 9}, {"name": "Callum O'Neill", "character": "Wee Dingwall (voice)", "id": 1333216, "credit_id": "53a6f1860e0a261432003f62", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Patrick Doyle", "character": "Martin (voice)", "id": 9152, "credit_id": "53a6f1b10e0a26143c003cb9", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "John Ratzenberger", "character": "Gordon (voice)", "id": 7907, "credit_id": "53a6f1da0e0a261432003f69", "cast_id": 33, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 12}, {"name": "Sally Kinghorn", "character": "Maudie (voice)", "id": 1052100, "credit_id": "5501ddf0c3a36826b9001afa", "cast_id": 61, "profile_path": null, "order": 13}, {"name": "Eilidh Fraser", "character": "Maudie (voice)", "id": 1438685, "credit_id": "5501de1cc3a3685ba2003820", "cast_id": 62, "profile_path": null, "order": 14}], "directors": [{"name": "Mark Andrews", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a368484e091919", "profile_path": null, "id": 126638}, {"name": "Steve Purcell", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a368484e09191f", "profile_path": "/6yqVvBbOeZDhEyEngZd6I1uTMdf.jpg", "id": 137262}, {"name": "Brenda Chapman", "department": "Directing", "job": "Director", "credit_id": "52fe4674c3a368484e091925", "profile_path": "/3wEdiMLQObBcBbtg131ZRQG2hfK.jpg", "id": 59803}], "vote_average": 6.4, "runtime": 93}, "13027": {"poster_path": "/4V9ycz7TfdGsT6jJvPtViE5xzrw.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177995103, "overview": "Jerry Shaw (Shia LaBeouf) and Rachel Holloman (Michelle Monaghan) are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country's most-wanted fugitives and must figure out what is happening to them.", "video": false, "id": 13027, "genres": [{"id": 28, "name": "Action"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Eagle Eye", "tagline": "Don't walk. Run.", "vote_count": 380, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1059786", "adult": false, "backdrop_path": "/hUgCX8CeRQiAyrYqvdkeHT7eVjN.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "KMP Film Invest", "id": 20157}, {"name": "K/O Paper Products", "id": 7296}], "release_date": "2008-09-25", "popularity": 1.11376446691985, "original_title": "Eagle Eye", "budget": 80000000, "cast": [{"name": "Shia LaBeouf", "character": "Jerry Shaw", "id": 10959, "credit_id": "52fe45319251416c7504eafd", "cast_id": 4, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "Michelle Monaghan", "character": "Rachel Holloman", "id": 11705, "credit_id": "52fe45319251416c7504eb01", "cast_id": 5, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Zoe Perez", "id": 5916, "credit_id": "52fe45319251416c7504eb05", "cast_id": 6, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Defense Secretary Callister", "id": 19654, "credit_id": "52fe45319251416c7504eb09", "cast_id": 7, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Anthony Mackie", "character": "Major William Bowman", "id": 53650, "credit_id": "52fe45319251416c7504eb0d", "cast_id": 8, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 4}, {"name": "Billy Bob Thornton", "character": "Thomas Morgan", "id": 879, "credit_id": "52fe45319251416c7504eb11", "cast_id": 9, "profile_path": "/gPCPKXh7HvobcrldRGj5QchW34p.jpg", "order": 5}, {"name": "Ethan Embry", "character": "Agent Toby Grant", "id": 58019, "credit_id": "52fe45319251416c7504eb1b", "cast_id": 11, "profile_path": "/xlsgPUEuDg87sG4Yb4mcqTQdKxC.jpg", "order": 6}, {"name": "Anthony Azizi", "character": "Ranim Khalid", "id": 165263, "credit_id": "52fe45319251416c7504eb1f", "cast_id": 12, "profile_path": "/2TPYadVaT1gOQN62dA4xapEaeuG.jpg", "order": 7}, {"name": "Cameron Boyce", "character": "Sam Holloman", "id": 75041, "credit_id": "52fe45319251416c7504eb23", "cast_id": 13, "profile_path": "/374sfaE0nrXUlddVhOn2uydoiBl.jpg", "order": 8}, {"name": "Lynn Cohen", "character": "Mrs. Wierzbowski", "id": 8792, "credit_id": "52fe45319251416c7504eb27", "cast_id": 14, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 9}, {"name": "Bill Smitrovich", "character": "Admiral Thompson", "id": 17200, "credit_id": "52fe45319251416c7504eb43", "cast_id": 22, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 10}, {"name": "Charles Carroll", "character": "Mr. Miller", "id": 60287, "credit_id": "52fe45319251416c7504eb2b", "cast_id": 16, "profile_path": "/5sGsNA3iVsjt3vXxNH5aK3P7toG.jpg", "order": 11}, {"name": "William Sadler", "character": "Jerry's Dad", "id": 6573, "credit_id": "52fe45319251416c7504eb2f", "cast_id": 17, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 12}, {"name": "Dariush Kashani", "character": "Translator", "id": 163855, "credit_id": "52fe45319251416c7504eb37", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Julianne Moore", "character": "ARIIA (voice)", "id": 1231, "credit_id": "52fe45319251416c7504eb3b", "cast_id": 20, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 15}, {"name": "Marc Singer", "character": "Explosives Developer", "id": 35350, "credit_id": "52fe45319251416c7504eb3f", "cast_id": 21, "profile_path": "/nX6E58a4qZn7InvNcmIG7WTkYBH.jpg", "order": 16}, {"name": "Deborah Strang", "character": "Jerry's Mom", "id": 1214388, "credit_id": "53d73c160e0a260340000fd8", "cast_id": 32, "profile_path": "/e1SpEAvMeJiyTbojxM14VXl1SaW.jpg", "order": 17}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe45319251416c7504eaed", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 6.1, "runtime": 118}, "4836": {"poster_path": "/6k1s24rW0uhXL31C4XxP96HyZJR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 11850214, "overview": "When a seemingly straight-forward drug deal goes awry, XXXX has to break his die-hard rules and turn up the heat, not only to outwit the old regime and come out on top, but to save his own skin...", "video": false, "id": 4836, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Layer Cake", "tagline": "", "vote_count": 117, "homepage": "http://www.sonypictures.co.uk/homevideo/layercake/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}], "imdb_id": "tt0375912", "adult": false, "backdrop_path": "/rk6RDd6HNbehPtIfPivDJyfpLlD.jpg", "production_companies": [{"name": "Sony Pictures Classics", "id": 58}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Marv Films", "id": 5374}], "release_date": "2004-09-30", "popularity": 0.707991441933033, "original_title": "Layer Cake", "budget": 6500000, "cast": [{"name": "Daniel Craig", "character": "XXXX", "id": 8784, "credit_id": "52fe43ddc3a36847f8074f57", "cast_id": 48, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Colm Meaney", "character": "Gene", "id": 17782, "credit_id": "52fe43ddc3a36847f8074f5b", "cast_id": 49, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 1}, {"name": "George Harris", "character": "Morty", "id": 2247, "credit_id": "52fe43ddc3a36847f8074f5f", "cast_id": 50, "profile_path": "/dqfdsdtliWJ7yvJupQXxphllHkK.jpg", "order": 2}, {"name": "Sally Hawkins", "character": "Slasher", "id": 39658, "credit_id": "53887a33c3a3681aea00445f", "cast_id": 66, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 3}, {"name": "Kenneth Cranham", "character": "Jimmy Price", "id": 26258, "credit_id": "52fe43ddc3a36847f8074f63", "cast_id": 51, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 4}, {"name": "Jamie Foreman", "character": "Duke", "id": 3543, "credit_id": "52fe43ddc3a36847f8074f67", "cast_id": 52, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 5}, {"name": "Sienna Miller", "character": "Tammy", "id": 23459, "credit_id": "52fe43ddc3a36847f8074f6b", "cast_id": 53, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 6}, {"name": "Michael Gambon", "character": "Eddie Temple", "id": 5658, "credit_id": "52fe43ddc3a36847f8074f6f", "cast_id": 54, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 7}, {"name": "Ben Whishaw", "character": "Sidney", "id": 17064, "credit_id": "52fe43ddc3a36847f8074f73", "cast_id": 55, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 8}, {"name": "Dragan Mi\u0107anovi\u0107", "character": "Dragan", "id": 31648, "credit_id": "52fe43ddc3a36847f8074f77", "cast_id": 56, "profile_path": "/a9kFSwRPiKhjlpGXczeXEQ1chtR.jpg", "order": 9}, {"name": "Tom Hardy", "character": "Clarkie", "id": 2524, "credit_id": "52fe43ddc3a36847f8074f7b", "cast_id": 57, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 10}, {"name": "Stephen Walters", "character": "Shanks", "id": 39681, "credit_id": "52fe43ddc3a36847f8074f7f", "cast_id": 58, "profile_path": null, "order": 11}, {"name": "Louis Emerick", "character": "Trevor", "id": 39682, "credit_id": "52fe43ddc3a36847f8074f83", "cast_id": 59, "profile_path": null, "order": 12}, {"name": "Dexter Fletcher", "character": "Cody", "id": 974, "credit_id": "52fe43ddc3a36847f8074f87", "cast_id": 60, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 13}, {"name": "Tamer Hassan", "character": "Terry", "id": 39660, "credit_id": "52fe43ddc3a36847f8074f8b", "cast_id": 61, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 14}, {"name": "Jason Flemyng", "character": "Larry - Crazy", "id": 973, "credit_id": "52fe43ddc3a36847f8074f8f", "cast_id": 62, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 15}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe43ddc3a36847f8074f17", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.9, "runtime": 105}, "806": {"poster_path": "/kqKHg1qXuaIOhnKmPEF1GLzGrOY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119188334, "overview": "A diplomatic couple adopts the son of the devil without knowing it. A remake of the classic horror film of the same name from 1976.", "video": false, "id": 806, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Omen", "tagline": "A new generation of terror", "vote_count": 68, "homepage": "http://www.theomenmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5IqWSXMS2qb9wijTMbCHXK4ahXE.jpg", "id": 10919, "name": "The Omen Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0466909", "adult": false, "backdrop_path": "/th9XO3SKdELxJ4PjPny0fXxCQmk.jpg", "production_companies": [{"name": "11:11 Mediaworks", "id": 519}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2006-06-06", "popularity": 0.331143282644693, "original_title": "The Omen", "budget": 25000000, "cast": [{"name": "Liev Schreiber", "character": "Robert Thorn", "id": 23626, "credit_id": "52fe4279c3a36847f80216b1", "cast_id": 19, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 0}, {"name": "Julia Stiles", "character": "Katherine Thorn", "id": 12041, "credit_id": "52fe4279c3a36847f80216b5", "cast_id": 20, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 1}, {"name": "Seamus Davey-Fitzpatrick", "character": "Damien Thorn", "id": 12042, "credit_id": "52fe4279c3a36847f80216b9", "cast_id": 21, "profile_path": "/pPZZxLvU0c0oNIagFZqfBfHLQ8p.jpg", "order": 2}, {"name": "David Thewlis", "character": "Keith Jennings", "id": 11207, "credit_id": "52fe4279c3a36847f80216bd", "cast_id": 22, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 3}, {"name": "Pete Postlethwaite", "character": "Father Brennan", "id": 4935, "credit_id": "52fe4279c3a36847f80216c1", "cast_id": 23, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 4}, {"name": "Mia Farrow", "character": "Mrs. Baylock", "id": 12021, "credit_id": "52fe4279c3a36847f80216c5", "cast_id": 24, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 5}, {"name": "Predrag Bjelac", "character": "Vatican Observatory Priest", "id": 12044, "credit_id": "52fe4279c3a36847f80216c9", "cast_id": 25, "profile_path": "/lv74T1lR0UwubTaE6FaIRLP1tu2.jpg", "order": 6}, {"name": "Carlo Sabatini", "character": "Cardinal Fabretti", "id": 12045, "credit_id": "52fe4279c3a36847f80216cd", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Amy Huck", "character": "Nanny", "id": 12046, "credit_id": "52fe4279c3a36847f80216d1", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Michael Gambon", "character": "Bugenhagen", "id": 5658, "credit_id": "52fe4279c3a36847f80216d5", "cast_id": 28, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 9}, {"name": "Giovanni Lombardo Radice", "character": "Father Spiletto", "id": 27277, "credit_id": "52fe4279c3a36847f80216d9", "cast_id": 29, "profile_path": "/9QBdSmGKjub55bDxp0WYFAYebvK.jpg", "order": 10}, {"name": "Harvey Stephens", "character": "Tabloid Reporter", "id": 11839, "credit_id": "52fe4279c3a36847f80216dd", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Tomas Wooler", "character": "Damien - 2 Years Old", "id": 1134336, "credit_id": "52fe4279c3a36847f80216e7", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Baby Zikova", "character": "Damien - Newborn", "id": 1134337, "credit_id": "52fe4279c3a36847f80216eb", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Baby Morvas", "character": "Damien - Newborn", "id": 1134338, "credit_id": "52fe4279c3a36847f80216ef", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Baby Muller", "character": "Damien - Newborn", "id": 1134339, "credit_id": "52fe4279c3a36847f80216f3", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Baby Litera", "character": "Damien - Newborn", "id": 1134340, "credit_id": "52fe4279c3a36847f80216f7", "cast_id": 36, "profile_path": null, "order": 16}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4279c3a36847f802164d", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.4, "runtime": 110}, "58151": {"poster_path": "/6bpthoORc53b2SEG3JwFBRZQnT5.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A teenager suspects his new neighbour is a vampire. Unable to convince anyone, he tries to enlist the help of a self-proclaimed vampire hunter and magician in this remake of the 1985 comedy-horror classic.", "video": false, "id": 58151, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Fright Night", "tagline": "You can't run from evil when it lives next door.", "vote_count": 150, "homepage": "http://www.welcometofrightnight.com", "belongs_to_collection": {"backdrop_path": "/9N1PbMkYJ5Zn2suUSHt38lAJnkD.jpg", "poster_path": "/j552uoYU3B45mIHLPBorkdoW0Mr.jpg", "id": 230161, "name": "Fright Night Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1438176", "adult": false, "backdrop_path": "/kCPv7HlXXXDfm3QlCG93FS8wDY7.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2011-08-19", "popularity": 0.395580581497756, "original_title": "Fright Night", "budget": 17000000, "cast": [{"name": "Anton Yelchin", "character": "Charlie Brewster", "id": 21028, "credit_id": "52fe4956c3a36847f8194f7b", "cast_id": 9, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Jerry", "id": 72466, "credit_id": "52fe4956c3a36847f8194f7f", "cast_id": 10, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Toni Collette", "character": "Jane Brewster", "id": 3051, "credit_id": "52fe4956c3a36847f8194f83", "cast_id": 11, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 2}, {"name": "Christopher Mintz-Plasse", "character": "Ed Thompson", "id": 54691, "credit_id": "52fe4956c3a36847f8194f87", "cast_id": 12, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 3}, {"name": "David Tennant", "character": "Peter Vincent", "id": 20049, "credit_id": "52fe4956c3a36847f8194f8b", "cast_id": 13, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 4}, {"name": "Imogen Poots", "character": "Amy Petersen", "id": 17606, "credit_id": "52fe4956c3a36847f8194f8f", "cast_id": 14, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 5}, {"name": "Emily Montague", "character": "Doris", "id": 168993, "credit_id": "52fe4956c3a36847f8194f93", "cast_id": 15, "profile_path": "/4XRgqTw8aUt5w9zqAsgVXZMQ5qY.jpg", "order": 6}, {"name": "Dave Franco", "character": "Mark", "id": 54697, "credit_id": "52fe4956c3a36847f8194f97", "cast_id": 16, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 7}, {"name": "Will Denton", "character": "Adam", "id": 133814, "credit_id": "52fe4956c3a36847f8194f9b", "cast_id": 17, "profile_path": "/gGcgPTd2YyywmTM8SPfMVbOL51m.jpg", "order": 8}, {"name": "Chris Sarandon", "character": "Jay Dee", "id": 14541, "credit_id": "52fe4956c3a36847f8194f9f", "cast_id": 18, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 9}, {"name": "Sandra Vergara", "character": "Ginger", "id": 965807, "credit_id": "52fe4956c3a36847f8194fa3", "cast_id": 19, "profile_path": "/jDuyzO711Lt1m24RHsUfWovbfcC.jpg", "order": 10}, {"name": "Paula Francis", "character": "Newscaster #1", "id": 1224298, "credit_id": "544355dbc3a3683e0e003f0e", "cast_id": 20, "profile_path": "/1b7by344nBpq6yL0zMWTLkgWt85.jpg", "order": 11}], "directors": [{"name": "Craig Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe4956c3a36847f8194f4d", "profile_path": null, "id": 50767}], "vote_average": 6.0, "runtime": 106}, "48171": {"poster_path": "/94jKSKAOfM3EU4bPsOPkVB9AOHT.jpg", "production_countries": [{"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18360065, "overview": "Seminary student Michael Kovak (Colin O'Donoghue) reluctantly attends exorcism school at the Vatican. While he\u2019s in Rome, Michael meets an unorthodox priest, Father Lucas (Anthony Hopkins), who introduces him to the darker side of his faith, uncovering the devil\u2019s reach even to one of the holiest places on Earth.", "video": false, "id": 48171, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Rite", "tagline": "You can only defeat it when you believe.", "vote_count": 153, "homepage": "http://whatdoyoubelieve.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "cy", "name": "Cymraeg"}], "imdb_id": "tt1161864", "adult": false, "backdrop_path": "/vd1pETgA5dFFX6HfzcPbnWS2PT3.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Hungarian National Film Office", "id": 17336}, {"name": "Rome Film Commission", "id": 21211}, {"name": "Lazio Film Commission", "id": 20419}, {"name": "Italian Tax Credit", "id": 21212}], "release_date": "2011-01-28", "popularity": 0.570575491072067, "original_title": "The Rite", "budget": 37000000, "cast": [{"name": "Anthony Hopkins", "character": "Father Lucas", "id": 4173, "credit_id": "52fe4758c3a36847f813087b", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Colin O'Donoghue", "character": "Michael Kovak", "id": 235767, "credit_id": "52fe4758c3a36847f8130893", "cast_id": 8, "profile_path": "/pJkkoSu1NTaRatXOWdw1qWFEA29.jpg", "order": 1}, {"name": "Alice Braga", "character": "Angeline", "id": 8602, "credit_id": "52fe4758c3a36847f813087f", "cast_id": 3, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 2}, {"name": "Toby Jones", "character": "Father Matthew", "id": 13014, "credit_id": "52fe4758c3a36847f8130883", "cast_id": 4, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 3}, {"name": "Ciar\u00e1n Hinds", "character": "Father Xavier", "id": 8785, "credit_id": "52fe4758c3a36847f8130887", "cast_id": 5, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 4}, {"name": "Rutger Hauer", "character": "Istvan Kovak", "id": 585, "credit_id": "52fe4758c3a36847f813088b", "cast_id": 6, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 5}, {"name": "Marta Gastini", "character": "Rosaria", "id": 144079, "credit_id": "52fe4758c3a36847f813088f", "cast_id": 7, "profile_path": "/6OvWlSs6fo3WAbIkho43bNRWPQt.jpg", "order": 6}, {"name": "Maria Grazia Cucinotta", "character": "Aunt Andria", "id": 10777, "credit_id": "52fe4758c3a36847f8130897", "cast_id": 11, "profile_path": "/bgI6qh8V7zKslCcGxRflom4H7yS.jpg", "order": 7}, {"name": "Arianna Veronesi", "character": "Francesca", "id": 971200, "credit_id": "52fe4758c3a36847f813089b", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Andrea Calligari", "character": "Vincenzo", "id": 124681, "credit_id": "52fe4758c3a36847f813089f", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Chris Marquette", "character": "Eddie", "id": 59238, "credit_id": "52fe4758c3a36847f81308a3", "cast_id": 14, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 10}, {"name": "Chris Marquette", "character": "Nina", "id": 59238, "credit_id": "52fe4758c3a36847f81308a7", "cast_id": 15, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 11}, {"name": "Ben Cheetham", "character": "Young Michael", "id": 971202, "credit_id": "52fe4758c3a36847f81308ab", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4758c3a36847f8130877", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 5.7, "runtime": 114}, "13042": {"poster_path": "/A2rxR8g3y6kcjIoR2fcwtq9eppc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Dignity. Poise. Mystery. We expect nothing less from the great turn-of-the-century magician, Presto. But when Presto neglects to feed his rabbit one too many times, the magician finds he isn't the only one with a few tricks up his sleeve!", "video": false, "id": 13042, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Presto", "tagline": "", "vote_count": 155, "homepage": "http://www.pixar.com/shorts/presto/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1245104", "adult": false, "backdrop_path": "/sFQ10h9DnjOYIF4HjtLQuZ8pnb4.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2008-06-26", "popularity": 0.955748557955342, "original_title": "Presto", "budget": 0, "cast": [{"name": "Doug Sweetland", "character": "Presto DiGiotagione / Alec Azam (voice)", "id": 8010, "credit_id": "52fe45329251416c7504ec47", "cast_id": 6, "profile_path": null, "order": 0}], "directors": [{"name": "Doug Sweetland", "department": "Directing", "job": "Director", "credit_id": "52fe45329251416c7504ec2b", "profile_path": null, "id": 8010}], "vote_average": 8.3, "runtime": 5}, "29427": {"poster_path": "/s15bIs5uLEqPEQERH5YqjCjY6gd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54956140, "overview": "Imagine living in a small town where everything is safe and happy\u2026until suddenly it isn\u2019t. Imagine your friends and neighbors going quickly and horrifically insane. In a terrifying tale of the \u201cAmerican Dream\u201d gone horribly wrong, four friends find themselves trapped in their hometown in The Crazies, a reinvention of the George Romero classic.", "video": false, "id": 29427, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "The Crazies", "tagline": "Fear Thy Neighbor", "vote_count": 138, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455407", "adult": false, "backdrop_path": "/u3vKE2JIKON8yB1dAJFOyIJjlXw.jpg", "production_companies": [{"name": "Penn Station Entertainment", "id": 4916}, {"name": "Participant Media", "id": 6735}, {"name": "Overture Films", "id": 12807}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}], "release_date": "2010-02-26", "popularity": 0.546228805205962, "original_title": "The Crazies", "budget": 20000000, "cast": [{"name": "Timothy Olyphant", "character": "David", "id": 18082, "credit_id": "52fe45dfc3a368484e073b81", "cast_id": 9, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 0}, {"name": "Radha Mitchell", "character": "Judy", "id": 8329, "credit_id": "52fe45dfc3a368484e073b85", "cast_id": 10, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 1}, {"name": "Joe Anderson", "character": "Russell", "id": 29234, "credit_id": "52fe45dfc3a368484e073b89", "cast_id": 11, "profile_path": "/qrz9007HeT1uDt3e0NVXFMWsQkA.jpg", "order": 2}, {"name": "Danielle Panabaker", "character": "Becca", "id": 31838, "credit_id": "52fe45dfc3a368484e073b8d", "cast_id": 12, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 3}, {"name": "Christie Lynn Smith", "character": "Deardra Farnum", "id": 103832, "credit_id": "52fe45dfc3a368484e073b91", "cast_id": 13, "profile_path": "/1lbK8vlSpy9nf5Zhudt8g4XtR1i.jpg", "order": 4}, {"name": "Brett Rickaby", "character": "Bill Farnum", "id": 12549, "credit_id": "52fe45dfc3a368484e073b95", "cast_id": 14, "profile_path": "/bsY5Tgy6PTPa4u81eaVIgTs5RwA.jpg", "order": 5}, {"name": "Preston Bailey", "character": "Nicholas Farnum", "id": 80378, "credit_id": "52fe45dfc3a368484e073b99", "cast_id": 15, "profile_path": "/d1zkkK3olnyHAVkFGiKqpB2NCcp.jpg", "order": 6}, {"name": "John Aylward", "character": "Mayor Hobbs", "id": 103833, "credit_id": "52fe45dfc3a368484e073b9d", "cast_id": 16, "profile_path": "/jdU2dcdjBM3IbsQv6pEdZT64ajb.jpg", "order": 7}, {"name": "Joe Reegan", "character": "Pvt. Billy Babcock", "id": 103834, "credit_id": "52fe45dfc3a368484e073ba1", "cast_id": 17, "profile_path": "/8QCDhPW8PcbHumRKeyLTikfOWpe.jpg", "order": 8}, {"name": "Glenn Morshower", "character": "Intelligence Officer", "id": 12797, "credit_id": "52fe45dfc3a368484e073ba5", "cast_id": 18, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 9}, {"name": "Larry Cedar", "character": "Ben Sandborn", "id": 94304, "credit_id": "52fe45dfc3a368484e073ba9", "cast_id": 19, "profile_path": "/m4WnOfVhUEX82QtFHZU4qwwuflg.jpg", "order": 10}, {"name": "Lynn Lowry", "character": "Woman on Bike", "id": 98420, "credit_id": "52fe45dfc3a368484e073bad", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Pierce Gagnon", "character": "Distraught Son", "id": 992427, "credit_id": "52fe45dfc3a368484e073bb1", "cast_id": 21, "profile_path": "/qCTyJl6aBUupo3FsmP9e5SEYxMS.jpg", "order": 12}, {"name": "Justin Price", "character": "Infected Civilian", "id": 933182, "credit_id": "53cb224b0e0a265dfa000d05", "cast_id": 25, "profile_path": "/iCNa9g6iL5NKnT1NFG9trxFXMrF.jpg", "order": 13}], "directors": [{"name": "Breck Eisner", "department": "Directing", "job": "Director", "credit_id": "52fe45dfc3a368484e073b53", "profile_path": "/cT090Hbxtk6xKEoWA516thQcHhp.jpg", "id": 52609}], "vote_average": 6.2, "runtime": 101}, "4858": {"poster_path": "/AiGIhoLpX4gcbbaX6JwFSygAqPY.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15071514, "overview": "Washington, D.C. psychologist Carol Bennell and her colleague Dr. Ben Driscoll are the only two people on Earth who are aware of an epidemic running rampant through the city. They discover an alien virus aboard a crashed space shuttle that transforms anyone who comes into contact with it into unfeeling drones while they sleep. Carol realizes her son holds the key to stopping the spread of the plague and she races to find him before it is too late.", "video": false, "id": 4858, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Invasion", "tagline": "Do not trust anyone. Do not show emotion. Do not fall asleep.", "vote_count": 70, "homepage": "http://theinvasionmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427392", "adult": false, "backdrop_path": "/7YQWfORqPM3XEdeH8yUK28p2w5E.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Silver Pictures", "id": 1885}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2007-08-17", "popularity": 1.06410637970004, "original_title": "The Invasion", "budget": 80000000, "cast": [{"name": "Nicole Kidman", "character": "Carol", "id": 2227, "credit_id": "52fe43dec3a36847f80753bf", "cast_id": 15, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Daniel Craig", "character": "Ben", "id": 8784, "credit_id": "52fe43dec3a36847f80753c3", "cast_id": 16, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 1}, {"name": "Jeremy Northam", "character": "Tucker", "id": 18325, "credit_id": "52fe43dec3a36847f80753c7", "cast_id": 17, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 2}, {"name": "Jeffrey Wright", "character": "Dr. Galeano", "id": 2954, "credit_id": "52fe43dec3a36847f80753cb", "cast_id": 18, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 3}, {"name": "Jackson Bond", "character": "Oliver", "id": 39728, "credit_id": "52fe43dec3a36847f80753cf", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Veronica Cartwright", "character": "Wendy Lenk", "id": 5047, "credit_id": "52fe43dec3a36847f80753d3", "cast_id": 20, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 5}, {"name": "Josef Sommer", "character": "Dr. Henryk Belicec", "id": 14792, "credit_id": "52fe43dec3a36847f80753d7", "cast_id": 21, "profile_path": "/3mR6yfeMhFS1UGsb7btjjLaiTu1.jpg", "order": 6}, {"name": "Celia Weston", "character": "Ludmilla Belicec", "id": 1989, "credit_id": "52fe43dec3a36847f80753db", "cast_id": 22, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "Roger Rees", "character": "Yorish", "id": 16407, "credit_id": "52fe43dec3a36847f80753df", "cast_id": 23, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 8}, {"name": "Eric Benjamin", "character": "Gene", "id": 39729, "credit_id": "52fe43dec3a36847f80753e3", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Susan Floyd", "character": "Pam", "id": 39730, "credit_id": "52fe43dec3a36847f80753e7", "cast_id": 25, "profile_path": "/jU7Fg8BNMjFmwZolD5oF5cfXgx4.jpg", "order": 10}, {"name": "Stephanie Berry", "character": "Carly", "id": 10693, "credit_id": "52fe43dfc3a36847f80753eb", "cast_id": 26, "profile_path": "/mzcU3ox6gWVbQKld66oRt1eboL5.jpg", "order": 11}, {"name": "Alexis Raben", "character": "Belicec's Aide", "id": 143180, "credit_id": "52fe43dfc3a36847f807541f", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Adam LeFevre", "character": "Richard Lenk", "id": 61607, "credit_id": "52fe43dfc3a36847f8075423", "cast_id": 36, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 13}, {"name": "Joanna Merlin", "character": "Joan Kaufman", "id": 11903, "credit_id": "52fe43dfc3a36847f8075427", "cast_id": 37, "profile_path": null, "order": 14}], "directors": [{"name": "Oliver Hirschbiegel", "department": "Directing", "job": "Director", "credit_id": "52fe43dec3a36847f8075379", "profile_path": "/hvM9iMto24seiLGeJ7LKvCZoiOE.jpg", "id": 7832}, {"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe43dfc3a36847f807541b", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 5.6, "runtime": 99}, "13051": {"poster_path": "/eIYwam6sxR3EgXNH07uWQ002UST.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85416905, "overview": "Coming together to solve a series of murders in New York City are a DEA agent whose family was slain as part of a conspiracy and an assassin out to avenge her sister's death. The duo will be hunted by the police, the mob, and a ruthless corporation.", "video": false, "id": 13051, "genres": [{"id": 28, "name": "Action"}], "title": "Max Payne", "tagline": "When a Man Has Lost Everything. He Only has Revenge", "vote_count": 191, "homepage": "http://www.maxpaynethemovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0467197", "adult": false, "backdrop_path": "/qC0gb4cvExJiYU5FFzab0jnG2ul.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Abandon Entertainment", "id": 2724}, {"name": "Collision Entertainment", "id": 2179}, {"name": "Depth Entertainment", "id": 11995}, {"name": "Firm Films", "id": 1838}, {"name": "Foxtor Productions", "id": 2725}], "release_date": "2008-10-16", "popularity": 0.778031913417923, "original_title": "Max Payne", "budget": 35000000, "cast": [{"name": "Mark Wahlberg", "character": "Max Payne", "id": 13240, "credit_id": "52fe45339251416c7504ee71", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Mona Sax", "id": 18973, "credit_id": "52fe45339251416c7504ee75", "cast_id": 2, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Beau Bridges", "character": "BB Hensley", "id": 2222, "credit_id": "52fe45339251416c7504ee79", "cast_id": 3, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 2}, {"name": "Ludacris", "character": "Jim Bravura", "id": 8171, "credit_id": "52fe45339251416c7504ee7d", "cast_id": 4, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 3}, {"name": "Chris O'Donnell", "character": "Jason Colvin", "id": 5577, "credit_id": "52fe45339251416c7504ee81", "cast_id": 5, "profile_path": "/pjIwKa4AkgTzDO2Onz9dPn5KZTr.jpg", "order": 4}, {"name": "Donal Logue", "character": "Alex Balder", "id": 10825, "credit_id": "52fe45339251416c7504ee85", "cast_id": 6, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 5}, {"name": "Amaury Nolasco", "character": "Jack Lupino", "id": 17341, "credit_id": "52fe45339251416c7504ee89", "cast_id": 7, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 6}, {"name": "Kate Burton", "character": "Nicole Horne", "id": 20879, "credit_id": "52fe45339251416c7504ee8d", "cast_id": 8, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 7}, {"name": "Olga Kurylenko", "character": "Natasha", "id": 18182, "credit_id": "52fe45339251416c7504ee91", "cast_id": 9, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 8}, {"name": "Rothaford Gray", "character": "Joe Salle", "id": 63813, "credit_id": "52fe45339251416c7504ee95", "cast_id": 10, "profile_path": "/rKC1RIKc3FOYhcfgpO6rPCqdby7.jpg", "order": 9}, {"name": "Joel Gordon", "character": "Owen Green", "id": 74122, "credit_id": "52fe45339251416c7504ee99", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Jamie Hector", "character": "Lincoln DeNeuf", "id": 74123, "credit_id": "52fe45339251416c7504ee9d", "cast_id": 12, "profile_path": "/2lcaykTG3nhaC75PyCrovsCFJOE.jpg", "order": 11}, {"name": "Andrew Friedman", "character": "Trevor", "id": 74124, "credit_id": "52fe45339251416c7504eea1", "cast_id": 13, "profile_path": "/kIQj1KGXJAovEFbUOfren84UDoq.jpg", "order": 12}, {"name": "Marianthi Evans", "character": "Michelle Payne", "id": 74125, "credit_id": "52fe45339251416c7504eea5", "cast_id": 14, "profile_path": "/euQn7HUW75cdeGn3pZPIeWGBwj3.jpg", "order": 13}, {"name": "Nelly Furtado", "character": "Christa Balder", "id": 74126, "credit_id": "52fe45339251416c7504eea9", "cast_id": 15, "profile_path": "/aBQ3C68ERX47PEZplRqWbSGrhHe.jpg", "order": 14}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504eeaf", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.4, "runtime": 100}, "13053": {"poster_path": "/k8Nsyj9BC9XKO4TqD1qt8Ks6bvc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 308332675, "overview": "Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks the whole thing is real. When the super dog is accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt springs into action to find his way home. Together with hilarious new sidekick Rhino, Bolt's #1 fan, and a street-smart cat named Mittens, Bolt sets off on an amazing journey where he discovers he doesn't need super powers to be a hero.", "video": false, "id": 13053, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Bolt", "tagline": "Fully Awesome. Ridonculous. Let It Begin.", "vote_count": 599, "homepage": "http://disney.go.com/disneypictures/bolt/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397892", "adult": false, "backdrop_path": "/lwI40taKaCKHK9mUeSBP2tQz8dS.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2008-11-21", "popularity": 1.29757915642317, "original_title": "Bolt", "budget": 150000000, "cast": [{"name": "John Travolta", "character": "Bolt (voice)", "id": 8891, "credit_id": "52fe45339251416c7504ef49", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Miley Cyrus", "character": "Penny (voice)", "id": 76594, "credit_id": "52fe45339251416c7504ef4d", "cast_id": 2, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 1}, {"name": "Susie Essman", "character": "Mittens (voice)", "id": 56910, "credit_id": "52fe45339251416c7504ef51", "cast_id": 3, "profile_path": "/m7e9tEevLcpp7pqddqUEhJEaWLm.jpg", "order": 2}, {"name": "Mark Walton", "character": "Rhino (voice)", "id": 61423, "credit_id": "52fe45339251416c7504ef55", "cast_id": 4, "profile_path": "/6TUKAdE6vBqbl0OreI6JYcuhXUK.jpg", "order": 3}, {"name": "Malcolm McDowell", "character": "Dr. Calico (voice)", "id": 56890, "credit_id": "52fe45339251416c7504ef65", "cast_id": 7, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 4}, {"name": "James Lipton", "character": "The Director (voice)", "id": 58772, "credit_id": "52fe45339251416c7504ef69", "cast_id": 8, "profile_path": "/5Mrm4njIIrpcqXRG7VFZEffjBLw.jpg", "order": 5}, {"name": "Greg Germann", "character": "The Agent (voice)", "id": 19974, "credit_id": "52fe45339251416c7504ef6d", "cast_id": 9, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Veteran Cat (voice)", "id": 5727, "credit_id": "52fe45339251416c7504ef71", "cast_id": 10, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Nick Swardson", "character": "Blake (voice)", "id": 32907, "credit_id": "52fe45339251416c7504ef75", "cast_id": 11, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 8}, {"name": "J.P. Manoux", "character": "Tom (voice)", "id": 88702, "credit_id": "52fe45339251416c7504ef79", "cast_id": 12, "profile_path": "/fWebcGtEgJFMkbWNc13uku5REYp.jpg", "order": 9}, {"name": "Dan Fogelman", "character": "Billy (voice)", "id": 15892, "credit_id": "52fe45339251416c7504ef7d", "cast_id": 13, "profile_path": "/vDFvNJIt8TFlnim1jtGhIVvvxYE.jpg", "order": 10}, {"name": "Kari Wahlgren", "character": "Mindy (voice)", "id": 116315, "credit_id": "52fe45339251416c7504efd5", "cast_id": 30, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 11}, {"name": "Chlo\u00eb Grace Moretz", "character": "Young Penny (voice)", "id": 56734, "credit_id": "52fe45339251416c7504ef81", "cast_id": 15, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 12}, {"name": "Randy Savage", "character": "Thug (voice)", "id": 89023, "credit_id": "52fe45339251416c7504ef85", "cast_id": 16, "profile_path": "/rcpPJQvX2uqt7oVaTVwAKhdcdN8.jpg", "order": 13}, {"name": "Ronn Moss", "character": "Dr. Forrester (voice)", "id": 89024, "credit_id": "52fe45339251416c7504ef89", "cast_id": 17, "profile_path": "/5R8BHLzYovfYkYOnhiMVNxuCiSD.jpg", "order": 14}], "directors": [{"name": "Chris Williams", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504ef5b", "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "id": 70238}, {"name": "Byron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504ef61", "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "id": 76595}], "vote_average": 6.2, "runtime": 96}, "62206": {"poster_path": "/hrMpGWLExvEXqFgHviLA8GUSnBB.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35501445, "overview": "Two fledgling criminals kidnap a pizza delivery guy, strap a bomb to his chest, and advise him that he has mere hours to rob a bank or else...", "video": false, "id": 62206, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "30 Minutes or Less", "tagline": "A lot can happen in 30 minutes.", "vote_count": 166, "homepage": "http://30minutesorless.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1622547", "adult": false, "backdrop_path": "/5jZlxWJjvui9zJNPrPC0t0dEw3G.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "2011-08-11", "popularity": 0.756213523901169, "original_title": "30 Minutes or Less", "budget": 28000000, "cast": [{"name": "Jesse Eisenberg", "character": "Nick", "id": 44735, "credit_id": "52fe4675c3a368484e091d37", "cast_id": 3, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Danny McBride", "character": "Dwayne", "id": 62862, "credit_id": "52fe4675c3a368484e091d3b", "cast_id": 4, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 1}, {"name": "Aziz Ansari", "character": "Chet", "id": 86626, "credit_id": "52fe4675c3a368484e091d3f", "cast_id": 5, "profile_path": "/wkhBoZDwvbOn5CV7bGeyKrNGH9C.jpg", "order": 2}, {"name": "Bianca Kajlich", "character": "Juicy", "id": 69616, "credit_id": "52fe4675c3a368484e091d43", "cast_id": 6, "profile_path": "/7eKTyl55sYtYen9Ky7DQGLMhOnC.jpg", "order": 3}, {"name": "Nick Swardson", "character": "Travis", "id": 32907, "credit_id": "52fe4675c3a368484e091d47", "cast_id": 7, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 4}, {"name": "Michael Pe\u00f1a", "character": "Chango", "id": 454, "credit_id": "52fe4675c3a368484e091d4b", "cast_id": 8, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 5}, {"name": "Fred Ward", "character": "The Major", "id": 10430, "credit_id": "52fe4675c3a368484e091d4f", "cast_id": 9, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 6}, {"name": "Dilshad Vadsaria", "character": "Kate", "id": 207985, "credit_id": "52fe4675c3a368484e091d53", "cast_id": 10, "profile_path": "/uYnD8Iic9tJQ0tWvf2hdHRpoXok.jpg", "order": 7}, {"name": "Brett Gelman", "character": "Pizza Boss", "id": 224197, "credit_id": "52fe4675c3a368484e091d57", "cast_id": 11, "profile_path": "/ox8Tetm16FgBmwR3U2eYZGxRomN.jpg", "order": 8}], "directors": [{"name": "Ruben Fleischer", "department": "Directing", "job": "Director", "credit_id": "52fe4675c3a368484e091d2d", "profile_path": "/y001RIxie7Vk3qMW3oLSFkjO1IA.jpg", "id": 91268}], "vote_average": 5.4, "runtime": 83}, "13056": {"poster_path": "/kYDt0FIHynbN1NWKiBEHYZr9dWA.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10089373, "overview": "After hunting down and killing hundreds of violent criminals, Frank Castle (Stevenson), better known to his victims as \"The Punisher,\" faces his most deadly foe yet, Jigsaw.", "video": false, "id": 13056, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Punisher: War Zone", "tagline": "Vengeance Has a Name", "vote_count": 86, "homepage": "http://www.punishermovie.com", "belongs_to_collection": {"backdrop_path": "/jteeWEHZAR92MVjEe9rpecGUpZI.jpg", "poster_path": "/bESkPNkKg79S4TLfs8j93bFYH0N.jpg", "id": 101496, "name": "The Punisher Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450314", "adult": false, "backdrop_path": "/idehrDcxl9cqv3KWyrHbMXtkmvI.jpg", "production_companies": [{"name": "Red Corner Productions", "id": 33807}, {"name": "Lionsgate", "id": 1632}, {"name": "Marvel Knights", "id": 11106}, {"name": "Marvel Studios", "id": 420}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "MHF Zweite Academy Film", "id": 8848}, {"name": "SGF Entertainment", "id": 33808}, {"name": "Marvel Enterprises", "id": 19551}], "release_date": "2008-12-05", "popularity": 1.38966044127146, "original_title": "Punisher: War Zone", "budget": 20500000, "cast": [{"name": "Ray Stevenson", "character": "Frank Castle", "id": 56614, "credit_id": "52fe45339251416c7504f089", "cast_id": 2, "profile_path": "/bcd9uqwfCVYsu7rduZnPVYUkyfU.jpg", "order": 0}, {"name": "Dominic West", "character": "Billy Russoti / Jigsaw", "id": 17287, "credit_id": "52fe45339251416c7504f08d", "cast_id": 3, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 1}, {"name": "Doug Hutchison", "character": "Loony Bin Jim", "id": 6806, "credit_id": "52fe45339251416c7504f091", "cast_id": 4, "profile_path": "/gXeyUaH7d0FOCOwRhnywIjMdOV6.jpg", "order": 2}, {"name": "Julie Benz", "character": "Angela Donatelli", "id": 35551, "credit_id": "52fe45339251416c7504f095", "cast_id": 5, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 3}, {"name": "Colin Salmon", "character": "Paul Budiansky", "id": 5414, "credit_id": "52fe45349251416c7504f099", "cast_id": 6, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 4}, {"name": "Wayne Knight", "character": "Micro", "id": 4201, "credit_id": "52fe45349251416c7504f09d", "cast_id": 7, "profile_path": "/oW9aeZwkz1S1IMjQGtd9mnvlEax.jpg", "order": 5}, {"name": "Dash Mihok", "character": "Martin Soap", "id": 6066, "credit_id": "52fe45349251416c7504f0a1", "cast_id": 8, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 6}, {"name": "Mark Camacho", "character": "Pittsy", "id": 7013, "credit_id": "52fe45349251416c7504f0a5", "cast_id": 9, "profile_path": "/2zQRAqWeFQOMzD3NBzNSI6QqMdf.jpg", "order": 7}, {"name": "Stephanie Janusauskas", "character": "Grace", "id": 1366972, "credit_id": "5421ab930e0a260a13000138", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Romano Orzari", "character": "Nicky", "id": 96591, "credit_id": "5421aba6c3a3683544000100", "cast_id": 19, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 9}, {"name": "Keram Malicki-S\u00e1nchez", "character": "Ink", "id": 4134, "credit_id": "5421abb10e0a260a0f0000ee", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Larry Day", "character": "Agent Miller", "id": 60907, "credit_id": "5421abbdc3a36835310000fb", "cast_id": 21, "profile_path": "/kkYxACTQis5p1X5VPxLhsxFGprg.jpg", "order": 11}, {"name": "Ron Lea", "character": "Captain Ross", "id": 44248, "credit_id": "5421abc8c3a3683539000104", "cast_id": 22, "profile_path": "/r5nCNE1IgpYL9JzmV7cFBqabjSM.jpg", "order": 12}, {"name": "Tony Calabretta", "character": "Saffiotti", "id": 119479, "credit_id": "5421abd3c3a36835350000e9", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "T.J. Storm", "character": "Maginty", "id": 980805, "credit_id": "5421abde0e0a260a1c0000f7", "cast_id": 24, "profile_path": "/mjDnRk9PC4MKB7De7mVpx4NayrB.jpg", "order": 14}], "directors": [{"name": "Lexi Alexander", "department": "Directing", "job": "Director", "credit_id": "52fe45339251416c7504f085", "profile_path": "/38jezS5VqFM9gRQ75dj7rJe4Ucb.jpg", "id": 56359}], "vote_average": 5.6, "runtime": 107}, "62211": {"poster_path": "/flXrt9Dh0Tki6zOgX0TOq63KpG8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 743559607, "overview": "A look at the relationship between Mike and Sulley during their days at Monsters University \u2014 when they weren't necessarily the best of friends.", "video": false, "id": 62211, "genres": [{"id": 16, "name": "Animation"}], "title": "Monsters University", "tagline": "School never looked this scary.", "vote_count": 1372, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uzKkKhTWGSEdsN2rYanJTVAyTLi.jpg", "poster_path": "/8xHtCUKfre8b4tkpUWU1y67Cnqr.jpg", "id": 137696, "name": "Monsters, Inc. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1453405", "adult": false, "backdrop_path": "/5mDCKKS7M8aUZKdShnCa7lLbzmH.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2013-06-21", "popularity": 1.83514403849462, "original_title": "Monsters University", "budget": 200000000, "cast": [{"name": "Billy Crystal", "character": "Michael \"Mike\" Wazowski (voice)", "id": 7904, "credit_id": "52fe4675c3a368484e091dcd", "cast_id": 6, "profile_path": "/2nXLEIJK9VQMeVT1gA6DXveXWJH.jpg", "order": 0}, {"name": "John Goodman", "character": "James P. \"Sulley\" Sullivan (voice)", "id": 1230, "credit_id": "52fe4675c3a368484e091dc9", "cast_id": 5, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 1}, {"name": "Steve Buscemi", "character": "Randall Boggs (voice)", "id": 884, "credit_id": "52fe4675c3a368484e091dc5", "cast_id": 3, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 2}, {"name": "Helen Mirren", "character": "Dean Hardscrabble (voice)", "id": 15735, "credit_id": "52fe4675c3a368484e091dd7", "cast_id": 10, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 3}, {"name": "Joel Murray", "character": "Don Carlton (voice)", "id": 155649, "credit_id": "52fe4675c3a368484e091e15", "cast_id": 26, "profile_path": "/euFBBlZ7Q8clCJE3VYPutQR35R7.jpg", "order": 4}, {"name": "Peter Sohn", "character": "Scott \u201cSquishy\u201d Squibbles (voice)", "id": 21198, "credit_id": "52fe4675c3a368484e091e19", "cast_id": 27, "profile_path": "/ouaPg2hdBBXfq8N7HPatvEq3P81.jpg", "order": 5}, {"name": "Sean Hayes", "character": "Terri Perry (voice)", "id": 52601, "credit_id": "52fe4675c3a368484e091dfd", "cast_id": 20, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 6}, {"name": "Dave Foley", "character": "Terry Perry (voice)", "id": 21290, "credit_id": "52fe4675c3a368484e091df9", "cast_id": 19, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 7}, {"name": "Charlie Day", "character": "Art (voice)", "id": 95101, "credit_id": "52fe4675c3a368484e091ded", "cast_id": 16, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 8}, {"name": "Alfred Molina", "character": "Professor Knight (voice)", "id": 658, "credit_id": "52fe4675c3a368484e091df1", "cast_id": 17, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 9}, {"name": "Tyler Labine", "character": "Brock Pearson (voice)", "id": 51383, "credit_id": "52fe4675c3a368484e091e09", "cast_id": 23, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 10}, {"name": "Nathan Fillion", "character": "Johnny Worthington (voice)", "id": 51797, "credit_id": "52fe4675c3a368484e091e01", "cast_id": 21, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 11}, {"name": "Aubrey Plaza", "character": "Greek Council President (voice)", "id": 119592, "credit_id": "52fe4675c3a368484e091e05", "cast_id": 22, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 12}, {"name": "Bobby Moynihan", "character": "Chet Alexander (voice)", "id": 452205, "credit_id": "52fe4675c3a368484e091e1d", "cast_id": 28, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 13}, {"name": "Julia Sweeney", "character": "Ms. Squibbles (voice)", "id": 11806, "credit_id": "52fe4675c3a368484e091e21", "cast_id": 29, "profile_path": "/hy7ZoNmr0h3AcrBkbnTLOXZnwRd.jpg", "order": 14}, {"name": "Bonnie Hunt", "character": "Karen Graves (voice)", "id": 5149, "credit_id": "52fe4675c3a368484e091e11", "cast_id": 25, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 15}, {"name": "John Krasinski", "character": "\u201cFrightening\u201d Frank McCay (voice)", "id": 17697, "credit_id": "52fe4675c3a368484e091e0d", "cast_id": 24, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 16}, {"name": "Frank Oz", "character": "Fungus (voice)", "id": 7908, "credit_id": "52fe4675c3a368484e091df5", "cast_id": 18, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 17}, {"name": "Beth Behrs", "character": "Carrie Williams (voice)", "id": 482044, "credit_id": "52fe4675c3a368484e091e25", "cast_id": 30, "profile_path": "/fsqd93OGqBmzd17W3p9Ipt2ADEm.jpg", "order": 18}, {"name": "John Ratzenberger", "character": "Yeti (voice)", "id": 7907, "credit_id": "52fe4675c3a368484e091e29", "cast_id": 31, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 19}, {"name": "Bill Hader", "character": "Referee (voice)", "id": 19278, "credit_id": "52fe4675c3a368484e091e2d", "cast_id": 32, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 20}, {"name": "Bob Peterson", "character": "Roz (voice)", "id": 10, "credit_id": "52fe4675c3a368484e091e31", "cast_id": 34, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 21}, {"name": "Noah Johnston", "character": "Young Mike (voice)", "id": 1271300, "credit_id": "52fe4675c3a368484e091e35", "cast_id": 35, "profile_path": null, "order": 22}], "directors": [{"name": "Dan Scanlon", "department": "Directing", "job": "Director", "credit_id": "52fe4675c3a368484e091dd3", "profile_path": null, "id": 225976}], "vote_average": 7.0, "runtime": 104}, "13060": {"poster_path": "/f0w6G44wfcnWe4gu3fn75b1pksV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don't go missing every year.", "video": false, "id": 13060, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Lifted", "tagline": "Failure is an option.", "vote_count": 90, "homepage": "http://www.pixar.com/shorts/lift/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0945571", "adult": false, "backdrop_path": "/ddo2bZttzPgbCt7Xv7FKPNBhVCF.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2006-12-28", "popularity": 0.338176420592149, "original_title": "Lifted", "budget": 0, "cast": [], "directors": [{"name": "Gary Rydstrom", "department": "Directing", "job": "Director", "credit_id": "52fe45349251416c7504f20d", "profile_path": "/jZpr1nVfO7lldWI0YtmP1FGw7Rj.jpg", "id": 2216}], "vote_average": 7.9, "runtime": 5}, "62213": {"poster_path": "/6125p54Jnog3kFsY33oMQF3d1dJ.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245527149, "overview": "Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.", "video": false, "id": 62213, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Dark Shadows", "tagline": "Every Family Has Its Demons", "vote_count": 788, "homepage": "http://darkshadowsmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1077368", "adult": false, "backdrop_path": "/thzGA2cOW37jCxJ7sJeBNGVGZKj.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Infinitum Nihil", "id": 2691}, {"name": "GK Films", "id": 3281}], "release_date": "2012-05-11", "popularity": 1.8363510783905, "original_title": "Dark Shadows", "budget": 150000000, "cast": [{"name": "Johnny Depp", "character": "Barnabas Collins", "id": 85, "credit_id": "52fe4675c3a368484e091eb3", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Elizabeth Collins Stoddard", "id": 1160, "credit_id": "52fe4676c3a368484e091ebb", "cast_id": 6, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Helena Bonham Carter", "character": "Dr. Julia Hoffman", "id": 1283, "credit_id": "52fe4676c3a368484e091ec3", "cast_id": 8, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 2}, {"name": "Jackie Earle Haley", "character": "Willie Loomis", "id": 17183, "credit_id": "52fe4676c3a368484e091ec7", "cast_id": 9, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 4}, {"name": "Jonny Lee Miller", "character": "Roger Collins", "id": 9012, "credit_id": "52fe4676c3a368484e091ed9", "cast_id": 15, "profile_path": "/70oZd4dPWNAibagHJvRU1Tf9e6h.jpg", "order": 4}, {"name": "Eva Green", "character": "Angelique Bouchard", "id": 10912, "credit_id": "52fe4675c3a368484e091eb7", "cast_id": 5, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 5}, {"name": "Bella Heathcote", "character": "Victoria Winters", "id": 234982, "credit_id": "52fe4676c3a368484e091ecb", "cast_id": 11, "profile_path": "/iqk9bZnrkLhIQbHPyrGcMK0Bzni.jpg", "order": 6}, {"name": "Chlo\u00eb Grace Moretz", "character": "Carolyn Stoddard", "id": 56734, "credit_id": "52fe4676c3a368484e091ebf", "cast_id": 7, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 8}, {"name": "Gulliver McGrath", "character": "David Collins", "id": 234983, "credit_id": "52fe4676c3a368484e091ecf", "cast_id": 12, "profile_path": "/jpDJNQtrtHMPqpssxd8RudVhn5x.jpg", "order": 8}, {"name": "Christopher Lee", "character": "Clarney", "id": 113, "credit_id": "52fe4676c3a368484e091eff", "cast_id": 23, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 9}, {"name": "Alice Cooper", "character": "Alice Cooper", "id": 35824, "credit_id": "52fe4676c3a368484e091f03", "cast_id": 24, "profile_path": "/Aj964wqD6ItA2rwSBKlgl0kzuGf.jpg", "order": 10}, {"name": "Ivan Kaye", "character": "Joshua Collins", "id": 39683, "credit_id": "52fe4676c3a368484e091f07", "cast_id": 25, "profile_path": "/kYVCt7fF3U6VwCipPqlZvHnP2sX.jpg", "order": 11}, {"name": "Susanna Cappellaro", "character": "Naomi Collins", "id": 1096866, "credit_id": "52fe4676c3a368484e091f0b", "cast_id": 26, "profile_path": "/63kPbbGiV4OudAa2fNxGt67zvHe.jpg", "order": 12}, {"name": "Raffey Cassidy", "character": "Young Angelique", "id": 1055230, "credit_id": "52fe4676c3a368484e091efb", "cast_id": 21, "profile_path": "/zrnh9Xju0UiOr8NeP1060TuNbzo.jpg", "order": 13}, {"name": "Josephine Butler", "character": "David's Mother", "id": 211897, "credit_id": "535f6804c3a36830b90065cf", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Michael Shannon", "character": "Board Member 2", "id": 1184168, "credit_id": "54808f27c3a36829b5003755", "cast_id": 29, "profile_path": "/iIKbgOWkiyDTT1ip3mSUxWRZTWZ.jpg", "order": 15}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4675c3a368484e091ea3", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 5.6, "runtime": 113}, "62214": {"poster_path": "/zMFJ0Uy9y0Oy3KPbgtRic6IYzRk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81491068, "overview": "Young Victor conducts a science experiment to bring his beloved dog Sparky back to life, only to face unintended, sometimes monstrous, consequences.", "video": false, "id": 62214, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Frankenweenie", "tagline": "The electrifying dog is back from beyond the grave", "vote_count": 314, "homepage": "http://disney.go.com/frankenweenie/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1142977", "adult": false, "backdrop_path": "/u19sv7CyDcr5eONL7LtemPaStXt.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tim Burton Animation Company", "id": 1514}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2012-10-04", "popularity": 1.12673718376555, "original_title": "Frankenweenie", "budget": 39000000, "cast": [{"name": "Charlie Tahan", "character": "Victor Frankenstein", "id": 49918, "credit_id": "52fe4676c3a368484e091f91", "cast_id": 20, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Elsa Van Helsing", "id": 1920, "credit_id": "52fe4676c3a368484e091f53", "cast_id": 5, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Mrs Frankenstein / Weird Girl / Gym Teacher", "id": 11514, "credit_id": "52fe4676c3a368484e091f57", "cast_id": 7, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "Martin Short", "character": "Mr. Frankenstein / Mr. Burgemeister / Nassor", "id": 519, "credit_id": "52fe4676c3a368484e091f5f", "cast_id": 9, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 3}, {"name": "Martin Landau", "character": "Mr. Rzykruski", "id": 2641, "credit_id": "52fe4676c3a368484e091f5b", "cast_id": 8, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 4}, {"name": "Atticus Shaffer", "character": "Edgar", "id": 66646, "credit_id": "52fe4676c3a368484e091f63", "cast_id": 10, "profile_path": "/mkAkUn9STorZx8frBoWzM6e1rfD.jpg", "order": 5}, {"name": "Robert Capron", "character": "Bob", "id": 111922, "credit_id": "52fe4676c3a368484e091f67", "cast_id": 11, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 6}, {"name": "Glenn Shadix", "character": "", "id": 13243, "credit_id": "52fe4676c3a368484e091f6b", "cast_id": 12, "profile_path": "/n8jN66HVN4vjXKvZsOMkbTrJXH6.jpg", "order": 7}, {"name": "Conchata Ferrell", "character": "Bob's Mom", "id": 1909, "credit_id": "52fe4676c3a368484e091f8d", "cast_id": 19, "profile_path": "/xPCxuPJSSK6F78NtJOw0J1dzynE.jpg", "order": 8}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe4676c3a368484e091f3d", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.4, "runtime": 87}, "62215": {"poster_path": "/aZgaCUhjUOO4qlRWlOFXfSwaTjO.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 3029870, "overview": "Two sisters find their already strained relationship challenged as a mysterious new planet threatens to collide with Earth.", "video": false, "id": 62215, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Melancholia", "tagline": "Enjoy it while it lasts", "vote_count": 212, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1527186", "adult": false, "backdrop_path": "/3JUBYKEXOfEIbJBNBRJklK8ggmO.jpg", "production_companies": [{"name": "Legion Entertainment", "id": 38069}, {"name": "Zentropa Entertainments", "id": 76}, {"name": "Memfis Film", "id": 321}, {"name": "Zentropa International Sweden", "id": 8288}, {"name": "Slot Machine", "id": 7777}, {"name": "Liberator Productions", "id": 11239}, {"name": "Zentropa International K\u00f6ln", "id": 8289}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Danmarks Radio (DR)", "id": 119}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Canal+", "id": 5358}, {"name": "Centre National du Cin\u00e9ma et de L'image Anim\u00e9e (CNC)", "id": 17298}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Edition Video", "id": 38071}, {"name": "Nordisk Film Distribution", "id": 38072}, {"name": "Det Danske Filminstitut", "id": 118}, {"name": "Eurimages", "id": 850}, {"name": "Swedish Film Institute", "id": 14804}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 27897}], "release_date": "2011-05-26", "popularity": 0.694099762440629, "original_title": "Melancholia", "budget": 7400000, "cast": [{"name": "Kirsten Dunst", "character": "Justine", "id": 205, "credit_id": "52fe4676c3a368484e091fbb", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Charlotte Gainsbourg", "character": "Claire", "id": 4273, "credit_id": "52fe4676c3a368484e091fbf", "cast_id": 3, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 1}, {"name": "Kiefer Sutherland", "character": "John", "id": 2628, "credit_id": "52fe4676c3a368484e091fc3", "cast_id": 4, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 2}, {"name": "Charlotte Rampling", "character": "Gaby", "id": 44079, "credit_id": "52fe4676c3a368484e091fc7", "cast_id": 5, "profile_path": "/iuggCphmBfNoUFaUWfpJCTxX4e6.jpg", "order": 3}, {"name": "John Hurt", "character": "Dexter", "id": 5049, "credit_id": "52fe4676c3a368484e091fcb", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 4}, {"name": "Alexander Skarsg\u00e5rd", "character": "Michael", "id": 28846, "credit_id": "52fe4676c3a368484e091fcf", "cast_id": 7, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 5}, {"name": "Stellan Skarsg\u00e5rd", "character": "Jack", "id": 1640, "credit_id": "52fe4676c3a368484e091fd3", "cast_id": 8, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 6}, {"name": "Brady Corbet", "character": "Tim", "id": 55493, "credit_id": "52fe4676c3a368484e091fd7", "cast_id": 9, "profile_path": "/cnlvcYJP4UyeKdbCCuTKvFkjWSH.jpg", "order": 7}, {"name": "Udo Kier", "character": "Wedding planner", "id": 1646, "credit_id": "52fe4676c3a368484e091fdb", "cast_id": 10, "profile_path": "/7uCwKrzoUUkQ3hjeui8IRsfGjZ1.jpg", "order": 8}, {"name": "Jesper Christensen", "character": "Little Father", "id": 2244, "credit_id": "52fe4676c3a368484e091fdf", "cast_id": 11, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 9}, {"name": "Cameron Spurr", "character": "Leo", "id": 234986, "credit_id": "52fe4676c3a368484e091fe3", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Deborah Fronko", "character": "Michael's mother", "id": 234987, "credit_id": "52fe4676c3a368484e091fe7", "cast_id": 13, "profile_path": null, "order": 11}], "directors": [{"name": "Lars von Trier", "department": "Directing", "job": "Director", "credit_id": "52fe4676c3a368484e091fb7", "profile_path": "/zVINg5oIjpSIchNaTWyMPWQKrvm.jpg", "id": 42}], "vote_average": 6.8, "runtime": 136}, "37645": {"poster_path": "/wTYZjPq4YA2wC99MdHZTFQuxFpd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Charly Mattei\u0308 has turned his back on his life as an outlaw. For the last three years, he's led a peaceful life devoting himself to his wife and two children. Then, one winter morning, he's left for dead in the parking garage in Marseille's Old Port, with 22 bullets in his body. Against all the odds, he doesn't die...", "video": false, "id": 37645, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "22 Bullets", "tagline": "The revenge of the Professional.", "vote_count": 80, "homepage": "http://www.22bullets.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1167638", "adult": false, "backdrop_path": "/t4d5z96VgQ2Vd9DshAcmd3cJg9b.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2010-03-23", "popularity": 0.588550900505024, "original_title": "L'Immortel", "budget": 24000000, "cast": [{"name": "Jean Reno", "character": "Charly Matte\u00ef", "id": 1003, "credit_id": "52fe465e9251416c910523ff", "cast_id": 1, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 0}, {"name": "Gabriella Wright", "character": "Yasmina Telaa", "id": 118200, "credit_id": "52fe465e9251416c91052403", "cast_id": 2, "profile_path": "/tKPC9lweFGHwSOgEmhklw7OjHlR.jpg", "order": 1}, {"name": "Jean-Pierre Darroussin", "character": "Martin Beaudinard", "id": 28463, "credit_id": "52fe465e9251416c9105241f", "cast_id": 9, "profile_path": "/d3lWrOKPwy0qJGdqe5SZHZ83TU0.jpg", "order": 2}, {"name": "Marina Fo\u00efs", "character": "Marie Goldman", "id": 76820, "credit_id": "52fe465e9251416c91052423", "cast_id": 10, "profile_path": "/hkTVJ1gZZjHwUzNwT5pt2I3UNe.jpg", "order": 3}, {"name": "Richard Berry", "character": "Aurelio Rampoli", "id": 35896, "credit_id": "52fe465e9251416c91052427", "cast_id": 11, "profile_path": "/uQBEzoj08NPA0HEEY6Dm4FTNpcb.jpg", "order": 4}, {"name": "JoeyStarr", "character": "Pistachio", "id": 51508, "credit_id": "52fe465e9251416c9105242b", "cast_id": 12, "profile_path": "/72QcBdrKi0leFIeUWYo1KDPX9RP.jpg", "order": 5}, {"name": "Dominique Thomas", "character": "Ange Palardo", "id": 126725, "credit_id": "52fe465f9251416c9105242f", "cast_id": 13, "profile_path": "/3M3K3F1sq0oIHE0Bqtb80gQTqLr.jpg", "order": 6}, {"name": "Kad Merad", "character": "Tony Zacchia", "id": 22306, "credit_id": "52fe465f9251416c91052469", "cast_id": 25, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 7}, {"name": "Luc Palun", "character": "Pascal Vasetto", "id": 144955, "credit_id": "52fe465f9251416c9105246d", "cast_id": 26, "profile_path": "/7LEtVQVi9kpXMZgj3Al7LN1PizE.jpg", "order": 8}, {"name": "Martial Bezot", "character": "Franck Rabou", "id": 144956, "credit_id": "52fe465f9251416c91052471", "cast_id": 27, "profile_path": "/rK6AqV9ZKBbr2IJlqcgPF9ctIlY.jpg", "order": 9}, {"name": "Daniel Lundh", "character": "MaleTelaa", "id": 144957, "credit_id": "52fe465f9251416c91052475", "cast_id": 28, "profile_path": "/k5w8eIj08voHbJYCMWCDC07hrI7.jpg", "order": 10}, {"name": "Jose\u0301phine Berry", "character": "Eva Matte\u00ef", "id": 144958, "credit_id": "52fe465f9251416c91052479", "cast_id": 29, "profile_path": "/kxrtRO0o0Wb2jsagWg1gGareorQ.jpg", "order": 11}, {"name": "Max Baissette de Malglaive", "character": "Anatole MatteMatte\u00ef", "id": 72945, "credit_id": "52fe465f9251416c9105247d", "cast_id": 30, "profile_path": null, "order": 12}], "directors": [{"name": "Richard Berry", "department": "Directing", "job": "Director", "credit_id": "52fe465e9251416c91052409", "profile_path": "/uQBEzoj08NPA0HEEY6Dm4FTNpcb.jpg", "id": 35896}], "vote_average": 6.5, "runtime": 115}, "8346": {"poster_path": "/vqGs8K6MdMHVPMTgMhzKHBVgu0t.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368744044, "overview": "A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.", "video": false, "id": 8346, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "My Big Fat Greek Wedding", "tagline": "Love is here to stay... so is her family.", "vote_count": 153, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0259446", "adult": false, "backdrop_path": "/idxWoU1eYssOmaRx9W8pkHgKXyc.jpg", "production_companies": [{"name": "MPH Entertainment", "id": 2388}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Playtone Productions", "id": 4170}], "release_date": "2002-02-22", "popularity": 0.857801600771349, "original_title": "My Big Fat Greek Wedding", "budget": 5000000, "cast": [{"name": "Nia Vardalos", "character": "Toula", "id": 54645, "credit_id": "52fe44a1c3a36847f80a1037", "cast_id": 3, "profile_path": "/5gFPZcVc00uXhzslKOZ2DmWoTSH.jpg", "order": 0}, {"name": "John Corbett", "character": "Ian Miller", "id": 38405, "credit_id": "52fe44a1c3a36847f80a103f", "cast_id": 5, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 1}, {"name": "Lainie Kazan", "character": "Maria Portokalos", "id": 53647, "credit_id": "52fe44a1c3a36847f80a1047", "cast_id": 7, "profile_path": "/qI20obSkCyWbo13xh20rWeUuMXp.jpg", "order": 2}, {"name": "Michael Constantine", "character": "Gus Portokalos", "id": 14884, "credit_id": "52fe44a1c3a36847f80a103b", "cast_id": 4, "profile_path": "/fZXfSyDEeIWzGudVhgwG3f9HTl0.jpg", "order": 3}, {"name": "Andrea Martin", "character": "Aunt Voula", "id": 8263, "credit_id": "52fe44a1c3a36847f80a1053", "cast_id": 10, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 4}, {"name": "Joey Fatone", "character": "Angelo", "id": 54651, "credit_id": "52fe44a1c3a36847f80a1063", "cast_id": 14, "profile_path": "/iTd8c8goQhPKeOimyeNIQOydwKt.jpg", "order": 5}, {"name": "Louis Mandylor", "character": "Nick Portokalos", "id": 54649, "credit_id": "52fe44a1c3a36847f80a1057", "cast_id": 11, "profile_path": "/7RBLuDriYPoewbr4B0T5dof4oeF.jpg", "order": 6}, {"name": "Gia Carides", "character": "Cousin Nikki", "id": 14226, "credit_id": "52fe44a1c3a36847f80a105f", "cast_id": 13, "profile_path": "/hd4wkz74R00PDkMhCMuH2qqH2Yt.jpg", "order": 7}, {"name": "Christina Eleusiniotis", "character": "Toula as child", "id": 54646, "credit_id": "52fe44a1c3a36847f80a1043", "cast_id": 6, "profile_path": null, "order": 8}, {"name": "Marita Zouravlioff", "character": "Toula Teenager", "id": 54647, "credit_id": "52fe44a1c3a36847f80a104b", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Gerry Mendicino", "character": "Uncle Taki", "id": 54650, "credit_id": "52fe44a1c3a36847f80a105b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Bess Meisler", "character": "Yiayia", "id": 54648, "credit_id": "52fe44a1c3a36847f80a104f", "cast_id": 9, "profile_path": null, "order": 11}, {"name": "Jayne Eastwood", "character": "Mrs. White", "id": 4568, "credit_id": "52fe44a1c3a36847f80a1067", "cast_id": 15, "profile_path": "/fUYBG960fMkGDiNzcz7ERjB6BHe.jpg", "order": 12}, {"name": "Fiona Reid", "character": "Harriet Miller", "id": 54652, "credit_id": "52fe44a1c3a36847f80a106b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Bruce Gray", "character": "Rodney Miller", "id": 5945, "credit_id": "52fe44a1c3a36847f80a106f", "cast_id": 17, "profile_path": "/z0uEl3in5hsCD4TYTBqCtmqCdwo.jpg", "order": 14}, {"name": "Frank Falcone", "character": "Suitor", "id": 1202716, "credit_id": "52fe44a1c3a36847f80a109d", "cast_id": 25, "profile_path": "/xR1bKrgkj1oGmKbceuVXgHjpDMp.jpg", "order": 15}], "directors": [{"name": "Joel Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe44a1c3a36847f80a102d", "profile_path": "/vP5MtUckpCluHWmGzyzDlUdTAvk.jpg", "id": 54644}], "vote_average": 5.9, "runtime": 95}, "816": {"poster_path": "/1Ly0MRK2Na0aRpy2bD6GBRP3Rzx.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 67683989, "overview": "As a swingin' fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy, baby! But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.", "video": false, "id": 816, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}], "title": "Austin Powers: International Man of Mystery", "tagline": "If he were any cooler, he'd still be frozen, baby!", "vote_count": 274, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3QJMI8nqQcwU5JBPy26m8TUXtTN.jpg", "poster_path": "/9fg3fFqjr2ofmgjyWKfKgv6ZLu0.jpg", "id": 1006, "name": "Austin Powers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118655", "adult": false, "backdrop_path": "/jHRi1YBxU80WTm8PyfrAZiyUC9r.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Capella International", "id": 594}, {"name": "Eric's Boy", "id": 595}], "release_date": "1997-05-02", "popularity": 0.987109863324564, "original_title": "Austin Powers: International Man of Mystery", "budget": 16500000, "cast": [{"name": "Mike Myers", "character": "Austin Powers / Dr. Evil", "id": 12073, "credit_id": "52fe427ac3a36847f8021f2f", "cast_id": 30, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Elizabeth Hurley", "character": "Vanessa Kensington", "id": 13918, "credit_id": "52fe427ac3a36847f8021e95", "cast_id": 1, "profile_path": "/lV6kPZyQtLPuegir5kVG9w6z1UQ.jpg", "order": 1}, {"name": "Michael York", "character": "Basil Exposition", "id": 13919, "credit_id": "52fe427ac3a36847f8021e99", "cast_id": 2, "profile_path": "/xrgHhenCH3c2qKE7dYgOy9WZtZt.jpg", "order": 2}, {"name": "Mimi Rogers", "character": "Mrs. Kensington", "id": 13920, "credit_id": "52fe427ac3a36847f8021e9d", "cast_id": 3, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 3}, {"name": "Seth Green", "character": "Scott Evil", "id": 13922, "credit_id": "52fe427ac3a36847f8021ea1", "cast_id": 4, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 4}, {"name": "Fabiana Udenio", "character": "Alotta Fagina", "id": 13923, "credit_id": "52fe427ac3a36847f8021ea5", "cast_id": 5, "profile_path": "/60hBZQm3FVtQ99qNmLDUT93z6S6.jpg", "order": 5}, {"name": "Mindy Sterling", "character": "Frau Farbissina", "id": 13924, "credit_id": "52fe427ac3a36847f8021ea9", "cast_id": 6, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 6}, {"name": "Paul Dillon", "character": "Patty O'Brien", "id": 13925, "credit_id": "52fe427ac3a36847f8021ead", "cast_id": 7, "profile_path": "/6jouXtMcbJ7nTuDNwvaePnqCHTX.jpg", "order": 7}, {"name": "Robert Wagner", "character": "Number two", "id": 9208, "credit_id": "52fe427ac3a36847f8021f33", "cast_id": 31, "profile_path": "/nlRWGpsQPo8sSFdl8larlPUy1rS.jpg", "order": 8}, {"name": "Charles Napier", "character": "Cmdr. Gilmour", "id": 16119, "credit_id": "52fe427ac3a36847f8021f3d", "cast_id": 33, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 9}, {"name": "Will Ferrell", "character": "Mustafa", "id": 23659, "credit_id": "52fe427ac3a36847f8021f41", "cast_id": 34, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 10}, {"name": "Joann Richter", "character": "'60s Model", "id": 1008676, "credit_id": "52fe427ac3a36847f8021f45", "cast_id": 35, "profile_path": null, "order": 11}, {"name": "Anastasia Sakelaris", "character": "'60s Model", "id": 170491, "credit_id": "52fe427ac3a36847f8021f49", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Afifi Alaouie", "character": "'60s Model", "id": 32288, "credit_id": "52fe427ac3a36847f8021f4d", "cast_id": 37, "profile_path": "/puhe0iGlllu6Sqx0yjc0nlRgY5W.jpg", "order": 13}, {"name": "Monet Mazur", "character": "Mod Girl", "id": 34844, "credit_id": "52fe427ac3a36847f8021f51", "cast_id": 38, "profile_path": "/lvLC6Sjt8pETC3La8rGvhyYWSx0.jpg", "order": 14}, {"name": "Clint Howard", "character": "Johnson Ritter", "id": 15661, "credit_id": "52fe427ac3a36847f8021f55", "cast_id": 39, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 15}, {"name": "Elya Baskin", "character": "Gen. Borschevsky", "id": 2368, "credit_id": "52fe427ac3a36847f8021f59", "cast_id": 40, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 16}, {"name": "Joe Grisaffi", "character": "Gunman (uncredited)", "id": 1146942, "credit_id": "54e85b6c9251412eb1001868", "cast_id": 41, "profile_path": "/2QQcjENUjpp5xpCJ2mpFobiczOo.jpg", "order": 17}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe427ac3a36847f8021eb3", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 6.4, "runtime": 94}, "13090": {"poster_path": "/9JkxUbOFiomw2Ci8ayTfAT69s0k.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16174377, "overview": "A single mom and her slacker sister find an unexpected way to turn their lives around in the off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business, a biohazard removal/crime scene clean-up service.", "video": false, "id": 13090, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Sunshine Cleaning", "tagline": "", "vote_count": 56, "homepage": "http://www.sunshinecleaning-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0862846", "adult": false, "backdrop_path": "/o2ZmWvRFnqNURvf9NC5FkrUdSQu.jpg", "production_companies": [{"name": "Overture Films", "id": 12807}, {"name": "Big Beach Films", "id": 12808}, {"name": "Back Lot Pictures", "id": 7374}], "release_date": "2008-01-18", "popularity": 0.300221834512965, "original_title": "Sunshine Cleaning", "budget": 5000000, "cast": [{"name": "Amy Adams", "character": "Rose Lorkowski", "id": 9273, "credit_id": "52fe45389251416c7504f971", "cast_id": 1, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Emily Blunt", "character": "Norah Lorkowski", "id": 5081, "credit_id": "52fe45389251416c7504f975", "cast_id": 2, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 1}, {"name": "Alan Arkin", "character": "Joe", "id": 1903, "credit_id": "52fe45389251416c7504f979", "cast_id": 3, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 2}, {"name": "Mary Lynn Rajskub", "character": "Lynn", "id": 25884, "credit_id": "52fe45389251416c7504f97d", "cast_id": 4, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 3}, {"name": "Eric Christian Olsen", "character": "Randy", "id": 29020, "credit_id": "52fe45389251416c7504f981", "cast_id": 5, "profile_path": "/clbouet8o9IJlUd8WILD0lzHAtG.jpg", "order": 4}, {"name": "Jason Spevack", "character": "Oscar Lorkowski", "id": 74151, "credit_id": "52fe45389251416c7504f985", "cast_id": 6, "profile_path": "/l1DzCYtyuzKi6fa1MdEOMmemQ8T.jpg", "order": 5}, {"name": "Kevin Chapman", "character": "Carl Swanson", "id": 4728, "credit_id": "52fe45389251416c7504f989", "cast_id": 7, "profile_path": "/7uhnHTZ8W4FsSTtbBSCuyeGGqlK.jpg", "order": 6}, {"name": "Steve Zahn", "character": "Mac", "id": 18324, "credit_id": "52fe45389251416c7504f98d", "cast_id": 8, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 7}, {"name": "Clifton Collins, Jr.", "character": "Winston", "id": 5365, "credit_id": "52fe45389251416c7504f991", "cast_id": 9, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 8}], "directors": [{"name": "Christine Jeffs", "department": "Directing", "job": "Director", "credit_id": "52fe45399251416c7504f99d", "profile_path": "/n7Ni5nhnutHTK4tz3klIjogu2K0.jpg", "id": 74152}], "vote_average": 6.3, "runtime": 102}, "70435": {"poster_path": "/ex20WLKixijBBA50WaUt1K1HVpU.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33372606, "overview": "Mallory Kane is a highly trained operative who works for a government security contractor in the dirtiest, most dangerous corners of the world. After successfully freeing a Chinese journalist held hostage, she is double crossed and left for dead by someone close to her in her own agency. Suddenly the target of skilled assassins who know her every move, Mallory must find the truth in order to stay alive.", "video": false, "id": 70435, "genres": [{"id": 53, "name": "Thriller"}], "title": "Haywire", "tagline": "They left her no choice.", "vote_count": 175, "homepage": "http://www.haywiremovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1506999", "adult": false, "backdrop_path": "/g9CDUXFBflsIch95wZxeNajTTX2.jpg", "production_companies": [{"name": "Irish Film Board", "id": 5267}, {"name": "Relativity Media", "id": 7295}], "release_date": "2011-12-31", "popularity": 0.787875496682233, "original_title": "Haywire", "budget": 23000000, "cast": [{"name": "Gina Carano", "character": "Mallory Kane", "id": 78452, "credit_id": "52fe47f8c3a368484e0e32d9", "cast_id": 6, "profile_path": "/jAYNPdJYu35eoRdI25fYa5jtsbR.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Kenneth", "id": 3061, "credit_id": "52fe47f8c3a368484e0e32c9", "cast_id": 2, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Michael Fassbender", "character": "Paul", "id": 17288, "credit_id": "52fe47f8c3a368484e0e32cd", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 2}, {"name": "Bill Paxton", "character": "John Kane", "id": 2053, "credit_id": "52fe47f8c3a368484e0e32d5", "cast_id": 5, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Channing Tatum", "character": "Aaron", "id": 38673, "credit_id": "52fe47f8c3a368484e0e32d1", "cast_id": 4, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 4}, {"name": "Antonio Banderas", "character": "Rodrigo", "id": 3131, "credit_id": "52fe47f8c3a368484e0e32e5", "cast_id": 9, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 5}, {"name": "Michael Douglas", "character": "Alex Coblenz", "id": 3392, "credit_id": "52fe47f8c3a368484e0e32e1", "cast_id": 8, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 6}, {"name": "Michael Angarano", "character": "Scott", "id": 11665, "credit_id": "52fe47f8c3a368484e0e32dd", "cast_id": 7, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 7}, {"name": "Mathieu Kassovitz", "character": "Studer", "id": 2406, "credit_id": "52fe47f8c3a368484e0e3335", "cast_id": 23, "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "order": 8}, {"name": "Eddie J. Fernandez", "character": "Barroso", "id": 18300, "credit_id": "5412bf9f0e0a26731b000e9c", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Anthony Wong", "character": "Jiang", "id": 930817, "credit_id": "5412c01f0e0a26730a000ec9", "cast_id": 26, "profile_path": "/qCXdSClvG2EaXFO3xAyAZdNjXYD.jpg", "order": 10}, {"name": "Tim Connolly", "character": "Jason", "id": 1089920, "credit_id": "5412c049c3a3682f55000e59", "cast_id": 27, "profile_path": "/vbOiWLjS6fpVkgx8b7Owsw8v8ml.jpg", "order": 11}, {"name": "Max Arciniega", "character": "Gomez", "id": 1046460, "credit_id": "5412c05ac3a3682f55000e5b", "cast_id": 28, "profile_path": "/hRyw2cglnWU42vHZUag7b9dIf4u.jpg", "order": 12}, {"name": "Aaron Cohen", "character": "Jamie", "id": 140616, "credit_id": "52fe47f8c3a368484e0e3307", "cast_id": 15, "profile_path": "/mJ3R3kNxIfIhirFQcvk8HUS8Ulb.jpg", "order": 13}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe47f8c3a368484e0e32c5", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 5.5, "runtime": 93}, "70436": {"poster_path": "/hvWiERBXBa8RDYNdNzCbdVbUWFH.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "HU", "name": "Hungary"}, {"iso_3166_1": "RS", "name": "Serbia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22485095, "overview": "A fictionalized account of the last days of Edgar Allan Poe's life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer's stories.", "video": false, "id": 70436, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Raven", "tagline": "The only one who can stop a serial killer is the man who inspired him.", "vote_count": 115, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1486192", "adult": false, "backdrop_path": "/djghCuCGrxtguiwIbqJbYi6f7EY.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Galavis Film", "id": 8084}, {"name": "Pioneer Pictures", "id": 9217}], "release_date": "2012-03-09", "popularity": 0.718249415835372, "original_title": "The Raven", "budget": 26000000, "cast": [{"name": "John Cusack", "character": "Edgar Allan Poe", "id": 3036, "credit_id": "52fe47f8c3a368484e0e337f", "cast_id": 3, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Luke Evans", "character": "Detective Emmett Fields", "id": 114019, "credit_id": "52fe47f8c3a368484e0e3383", "cast_id": 4, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 1}, {"name": "Alice Eve", "character": "Emily", "id": 59860, "credit_id": "52fe47f8c3a368484e0e337b", "cast_id": 2, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 2}, {"name": "Brendan Gleeson", "character": "Colonel Hamilton", "id": 2039, "credit_id": "52fe47f8c3a368484e0e3387", "cast_id": 5, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 3}, {"name": "Kevin McNally", "character": "Maddux", "id": 2449, "credit_id": "52fe47f8c3a368484e0e338f", "cast_id": 7, "profile_path": "/9EuxiogkiqQfdjB5fsqUTOIjvVZ.jpg", "order": 4}, {"name": "Oliver Jackson-Cohen", "character": "John Cantrell", "id": 551020, "credit_id": "52fe47f8c3a368484e0e3397", "cast_id": 10, "profile_path": "/qRtqkOYzm26zsZ9lRp8GQ1qO8ft.jpg", "order": 5}, {"name": "Jimmy Yuill", "character": "Captain Eldridge", "id": 151797, "credit_id": "52fe47f8c3a368484e0e338b", "cast_id": 6, "profile_path": "/zeuinVj4XOYzWSty96mM3SaD1mB.jpg", "order": 6}, {"name": "Pam Ferris", "character": "Mrs. Bradley", "id": 11213, "credit_id": "52fe47f8c3a368484e0e340b", "cast_id": 30, "profile_path": "/i9ou0K069ce8rL1OeWEZRukCBCk.jpg", "order": 7}, {"name": "Brendan Coyle", "character": "Reagan", "id": 74056, "credit_id": "52fe47f8c3a368484e0e3393", "cast_id": 9, "profile_path": "/oJm8VYhuYk05rDU1XdDBXBqWka6.jpg", "order": 8}, {"name": "Dave Legeno", "character": "Percy", "id": 60348, "credit_id": "52fe47f8c3a368484e0e339b", "cast_id": 11, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 9}, {"name": "Michael Shannon", "character": "Dr. Morgan", "id": 1184168, "credit_id": "54808f5ec3a36829ae002b60", "cast_id": 31, "profile_path": "/iIKbgOWkiyDTT1ip3mSUxWRZTWZ.jpg", "order": 10}], "directors": [{"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe47f8c3a368484e0e3377", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 6.2, "runtime": 111}, "163": {"poster_path": "/4irBEiDC7SpYBuw5z1c7oLfF0EI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362744280, "overview": "Danny Ocean reunites with his old flame and the rest of his merry band of thieves in a caper concerning three huge heists in Rome, Paris and Amsterdam. But Europol agent Isabel Lahiri is hot on their heels.", "video": false, "id": 163, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ocean's Twelve", "tagline": "Twelve is the new eleven.", "vote_count": 794, "homepage": "http://oceans12.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/vxmFb03PyjycekffLqXqFibbCzx.jpg", "poster_path": "/CZs07c4vgMdPXqtVu7y8yhCdFx.jpg", "id": 304, "name": "Ocean's Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0349903", "adult": false, "backdrop_path": "/gfWrFaEhSfofcUCBx7C6IBDtW8T.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Section Eight", "id": 129}, {"name": "WV Films III", "id": 12202}], "release_date": "2004-12-09", "popularity": 1.12983037819817, "original_title": "Ocean's Twelve", "budget": 110000000, "cast": [{"name": "George Clooney", "character": "Danny Ocean", "id": 1461, "credit_id": "52fe4221c3a36847f80062e1", "cast_id": 11, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Rusty Ryan", "id": 287, "credit_id": "52fe4221c3a36847f80062e5", "cast_id": 12, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Catherine Zeta-Jones", "character": "Isabel Lahiri", "id": 1922, "credit_id": "52fe4221c3a36847f80062e9", "cast_id": 13, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 2}, {"name": "Julia Roberts", "character": "Tess Ocean", "id": 1204, "credit_id": "52fe4221c3a36847f80062ed", "cast_id": 14, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 3}, {"name": "Andy Garc\u00eda", "character": "Terry Benedict", "id": 1271, "credit_id": "52fe4221c3a36847f80062f1", "cast_id": 15, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 4}, {"name": "Casey Affleck", "character": "Virgil Malloy", "id": 1893, "credit_id": "52fe4221c3a36847f80062f5", "cast_id": 16, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 5}, {"name": "Scott Caan", "character": "Turk Malloy", "id": 1894, "credit_id": "52fe4221c3a36847f80062f9", "cast_id": 17, "profile_path": "/kvUKf9HCaqUtgj7XuKZOvN66MOT.jpg", "order": 6}, {"name": "Shaobo Qin", "character": "Yen", "id": 1900, "credit_id": "52fe4221c3a36847f80062fd", "cast_id": 18, "profile_path": "/d12Ni5dBctraHwkPsmLl6gPt3PR.jpg", "order": 7}, {"name": "Bernie Mac", "character": "Frank Catton", "id": 1897, "credit_id": "52fe4221c3a36847f8006301", "cast_id": 19, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 8}, {"name": "Don Cheadle", "character": "Basher Tarr", "id": 1896, "credit_id": "52fe4221c3a36847f8006305", "cast_id": 20, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 9}, {"name": "Matt Damon", "character": "Linus Caldwell", "id": 1892, "credit_id": "52fe4221c3a36847f8006309", "cast_id": 21, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 10}, {"name": "Carl Reiner", "character": "Saul Bloom", "id": 1895, "credit_id": "52fe4221c3a36847f800630d", "cast_id": 22, "profile_path": "/mG0YcJ72Dw0jwFvg44lncv21mut.jpg", "order": 11}, {"name": "Eddie Jemison", "character": "Livingston Dell", "id": 1898, "credit_id": "52fe4221c3a36847f8006311", "cast_id": 23, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 12}, {"name": "Elliott Gould", "character": "Reuben Tishkoff", "id": 827, "credit_id": "52fe4221c3a36847f8006315", "cast_id": 24, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 13}, {"name": "Robbie Coltrane", "character": "Matsui", "id": 1923, "credit_id": "52fe4221c3a36847f8006319", "cast_id": 25, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 14}, {"name": "Jeroen Krabb\u00e9", "character": "van der Woude", "id": 1924, "credit_id": "52fe4221c3a36847f800631d", "cast_id": 26, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 15}, {"name": "Vincent Cassel", "character": "Fran\u00e7ois Toulour", "id": 1925, "credit_id": "52fe4221c3a36847f8006321", "cast_id": 27, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 16}, {"name": "Eddie Izzard", "character": "Roman Nagel", "id": 1926, "credit_id": "52fe4221c3a36847f8006325", "cast_id": 28, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 17}, {"name": "Bruce Willis", "character": "Himself", "id": 62, "credit_id": "52fe4221c3a36847f8006329", "cast_id": 29, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 18}, {"name": "Cherry Jones", "character": "Molly Star/ Mrs. Caldwell", "id": 1956, "credit_id": "52fe4221c3a36847f800632d", "cast_id": 30, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 19}, {"name": "Albert Finney", "character": "Gaspar LeMarque", "id": 3926, "credit_id": "52fe4221c3a36847f8006331", "cast_id": 31, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 20}, {"name": "Adriano Giannini", "character": "Museum Director", "id": 73475, "credit_id": "52fe4221c3a36847f8006335", "cast_id": 32, "profile_path": "/3vuYXxVPcH6nDlCjliGTisrh90D.jpg", "order": 21}, {"name": "Johan Widerberg", "character": "Johan", "id": 96935, "credit_id": "52fe4221c3a36847f800633f", "cast_id": 34, "profile_path": null, "order": 22}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4221c3a36847f80062ad", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.3, "runtime": 125}, "54054": {"poster_path": "/g8BxtvxvfbiM1UsJUyFjqeygrye.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36893721, "overview": "Stephanie Plum (Katherine Heigl), an unemployed lingerie buyer, convinces her bail bondsman cousin, Vinnie (Patrick Fischler), to give her a shot as a bounty hunter. Her first assignment is to track down a former cop, Joe Morelli (Jason O'Mara), on the run for murder -- the same man who broke her heart years before. With the help of some friends and the best bounty hunter in the business, Ranger (Daniel Sunjata), she slowly learns what it takes to be a true bounty hunter.", "video": false, "id": 54054, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "One for the Money", "tagline": "She's looking for a few not-so-good men", "vote_count": 116, "homepage": "http://www.oneforthemoneyfilm.com/index2.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1598828", "adult": false, "backdrop_path": "/aoXNn1N5En9XxENR4J2Cg13CdEV.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Sidney Kimmel Entertainment", "id": 737}], "release_date": "2012-01-27", "popularity": 0.62033456503496, "original_title": "One for the Money", "budget": 40000000, "cast": [{"name": "Katherine Heigl", "character": "Stephanie Plum", "id": 25541, "credit_id": "52fe4888c3a36847f816c6ed", "cast_id": 3, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Jimmy Alpha", "id": 5723, "credit_id": "52fe4888c3a36847f816c6f1", "cast_id": 4, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Debbie Reynolds", "character": "Grandma Mazur", "id": 8857, "credit_id": "52fe4888c3a36847f816c6f5", "cast_id": 5, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 2}, {"name": "Sherri Shepherd", "character": "Lula", "id": 109561, "credit_id": "52fe4888c3a36847f816c6fd", "cast_id": 7, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 3}, {"name": "Patrick Fischler", "character": "Vinnie Plum", "id": 52801, "credit_id": "52fe4888c3a36847f816c701", "cast_id": 8, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 4}, {"name": "Daniel Sunjata", "character": "Ranger", "id": 10582, "credit_id": "52fe4888c3a36847f816c6f9", "cast_id": 6, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 5}, {"name": "Jason O'Mara", "character": "Joseph Morelli", "id": 183812, "credit_id": "52fe4888c3a36847f816c729", "cast_id": 15, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 6}], "directors": [{"name": "Julie Anne Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe4888c3a36847f816c6e3", "profile_path": "/6NBh5K9k5OV3RoU458RajwLjqOi.jpg", "id": 114597}], "vote_average": 5.3, "runtime": 91}, "86825": {"poster_path": "/vq4Medvdxd2G6WJXhN5vWHnWEhK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12077441, "overview": "After India's father dies, her Uncle Charlie, who she never knew existed, comes to live with her and her unstable mother. She comes to suspect this mysterious, charming man has ulterior motives and becomes increasingly infatuated with him.", "video": false, "id": 86825, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Stoker", "tagline": "Innocence Ends.", "vote_count": 342, "homepage": "http://www.foxsearchlight.com/stoker/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1682180", "adult": false, "backdrop_path": "/beq4jThOwhV7Y4mu67ubx3kOvaS.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2013-03-01", "popularity": 1.58980200186411, "original_title": "Stoker", "budget": 12000000, "cast": [{"name": "Mia Wasikowska", "character": "India Stoker", "id": 76070, "credit_id": "52fe49a39251416c910b3a9b", "cast_id": 4, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Evelyn 'Evie' Stoker", "id": 2227, "credit_id": "52fe49a29251416c910b3a97", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Dermot Mulroney", "character": "Richard Stoker", "id": 20212, "credit_id": "52fe49a29251416c910b3a93", "cast_id": 2, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 2}, {"name": "Matthew Goode", "character": "Uncle Charlie Stoker", "id": 1247, "credit_id": "52fe49a39251416c910b3a9f", "cast_id": 5, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 3}, {"name": "Lucas Till", "character": "Chris Pitts", "id": 429, "credit_id": "52fe49a39251416c910b3aa3", "cast_id": 6, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 4}, {"name": "Jacki Weaver", "character": "Aunt Gwendolyn 'Gin' Stoker", "id": 67837, "credit_id": "52fe49a39251416c910b3aad", "cast_id": 9, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 5}, {"name": "Ralph Brown", "character": "Sheriff Howard", "id": 53916, "credit_id": "52fe49a39251416c910b3ab1", "cast_id": 10, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 6}, {"name": "Alden Ehrenreich", "character": "Whip Taylor", "id": 71375, "credit_id": "52fe49a39251416c910b3ab5", "cast_id": 11, "profile_path": "/zJr5mpATjAxiJ1BRucMABJdys82.jpg", "order": 7}, {"name": "Phyllis Somerville", "character": "Mrs. McGarrick", "id": 17184, "credit_id": "52fe49a39251416c910b3afb", "cast_id": 23, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 8}, {"name": "David Alford", "character": "Reverend", "id": 944159, "credit_id": "52fe49a39251416c910b3aff", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Peg Allen", "character": "Housekeeper", "id": 128211, "credit_id": "52fe49a39251416c910b3b03", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Lauren E. Roman", "character": "Housekeeper", "id": 149569, "credit_id": "52fe49a39251416c910b3b07", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Tyler von Tagen", "character": "Young Richard Stoker", "id": 1271786, "credit_id": "52fe49a39251416c910b3b0b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Thomas A. Covert", "character": "Young Charles Stoker", "id": 1271787, "credit_id": "52fe49a39251416c910b3b0f", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Jaxon Johnson", "character": "Jonathan SToker", "id": 1271788, "credit_id": "52fe49a39251416c910b3b13", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Paxton Johnson", "character": "Jonathan Stoker", "id": 1271789, "credit_id": "52fe49a39251416c910b3b17", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Judith Godr\u00e8che", "character": "Doctor Jacquin", "id": 73937, "credit_id": "52fe49a39251416c910b3b1b", "cast_id": 31, "profile_path": "/mbIrbBymdMVZIaNv0bDGUXKV7p7.jpg", "order": 16}], "directors": [{"name": "Park Chan-wook", "department": "Directing", "job": "Director", "credit_id": "52fe49a29251416c910b3a8f", "profile_path": "/eFRXaT3RMoPemwDLNvfiFP0h8RX.jpg", "id": 10099}], "vote_average": 6.1, "runtime": 98}, "86829": {"poster_path": "/mRYOb0fgxj3o03u5y62YPhAunby.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9685735, "overview": "In Greenwich Village in the early 1960s, gifted, but volatile musician Llewyn Davis contemplates leaving the music scene altogether to return to sea as a merchant marine after the suicide of his singing partner.", "video": false, "id": 86829, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}], "title": "Inside Llewyn Davis", "tagline": "", "vote_count": 184, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2042568", "adult": false, "backdrop_path": "/g3dKZtJrv8XHTMVbBc7S86OSDkn.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}, {"name": "StudioCanal", "id": 694}, {"name": "Anton Capital Entertainment (ACE)", "id": 20664}], "release_date": "2013-12-20", "popularity": 1.12302895349506, "original_title": "Inside Llewyn Davis", "budget": 0, "cast": [{"name": "Oscar Isaac", "character": "Llewyn Davis", "id": 25072, "credit_id": "52fe49a39251416c910b3b9d", "cast_id": 10, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 0}, {"name": "Carey Mulligan", "character": "Jean Berkey", "id": 36662, "credit_id": "52fe49a39251416c910b3b8d", "cast_id": 6, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Jim Berkey", "id": 12111, "credit_id": "52fe49a39251416c910b3b91", "cast_id": 7, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Jerry Grayson", "character": "Mel", "id": 60796, "credit_id": "52fe49a39251416c910b3bad", "cast_id": 14, "profile_path": null, "order": 3}, {"name": "Robin Bartlett", "character": "Lillian", "id": 11902, "credit_id": "52fe49a39251416c910b3ba5", "cast_id": 12, "profile_path": "/ogqlVNZ6R5pd7fRyqueUeN9FWbe.jpg", "order": 4}, {"name": "Max Casella", "character": "Pappi", "id": 7133, "credit_id": "52fe49a39251416c910b3ba9", "cast_id": 13, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 5}, {"name": "Adam Driver", "character": "Al Cody", "id": 1023139, "credit_id": "52fe49a39251416c910b3bb5", "cast_id": 16, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 6}, {"name": "Ethan Phillips", "character": "Mitch", "id": 29445, "credit_id": "52fe49a39251416c910b3ba1", "cast_id": 11, "profile_path": "/clvz59hE09gV2a3FYNBsjUPvPgz.jpg", "order": 7}, {"name": "Jeanine Serralles", "character": "Joy", "id": 979432, "credit_id": "52fe49a39251416c910b3bb1", "cast_id": 15, "profile_path": "/n9GvVB4wYbjdoobGWy4l3IyzsdT.jpg", "order": 8}, {"name": "Garrett Hedlund", "character": "Johnny Five", "id": 9828, "credit_id": "52fe49a39251416c910b3b95", "cast_id": 8, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 9}, {"name": "John Goodman", "character": "Roland Turner", "id": 1230, "credit_id": "52fe49a39251416c910b3b99", "cast_id": 9, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 10}, {"name": "Stark Sands", "character": "Troy Nelson", "id": 33532, "credit_id": "52fe49a39251416c910b3bb9", "cast_id": 17, "profile_path": "/jsqmsBMgBEwFhyPNQAMMPOeU5ZH.jpg", "order": 11}, {"name": "Alex Karpovsky", "character": "Marty Green", "id": 123515, "credit_id": "52fe49a39251416c910b3bbd", "cast_id": 18, "profile_path": "/bd30q2fn3yBSL58n0Y1IQsoLZgz.jpg", "order": 12}, {"name": "F. Murray Abraham", "character": "Bud Grossman", "id": 1164, "credit_id": "52fe49a39251416c910b3bc1", "cast_id": 19, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 13}, {"name": "Benjamin Pike", "character": "Young Bob", "id": 1142258, "credit_id": "552bcb38c3a36859cf0070da", "cast_id": 42, "profile_path": "/oPT14s4lIzAogmzaObsuyhZfAB.jpg", "order": 14}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe49a39251416c910b3b77", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe49a39251416c910b3b7d", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.1, "runtime": 105}, "157832": {"poster_path": "/wotMGTYpRevp9F86z0x6jjv4fNI.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "After he is threatened during a confession, a good-natured priest must battle the dark forces closing in around him.", "video": false, "id": 157832, "genres": [{"id": 18, "name": "Drama"}], "title": "Calvary", "tagline": "", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2234003", "adult": false, "backdrop_path": "/oPDiCIdNsECwJJg5pdqRd6d5k6C.jpg", "production_companies": [{"name": "Irish Film Board", "id": 5267}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Octagon Films", "id": 1266}, {"name": "Reprisal Films", "id": 7308}], "release_date": "2014-04-11", "popularity": 1.26013780271515, "original_title": "Calvary", "budget": 0, "cast": [{"name": "Brendan Gleeson", "character": "Father James Lavelle", "id": 2039, "credit_id": "52fe4bd49251416c910e6f49", "cast_id": 10, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 0}, {"name": "Chris O'Dowd", "character": "Jack Brennan", "id": 40477, "credit_id": "52fe4bd49251416c910e6f39", "cast_id": 6, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 1}, {"name": "Kelly Reilly", "character": "Fiona Lavelle", "id": 17521, "credit_id": "52fe4bd49251416c910e6f41", "cast_id": 8, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 2}, {"name": "Aidan Gillen", "character": "Dr. Frank Harte", "id": 49735, "credit_id": "52fe4bd49251416c910e6f45", "cast_id": 9, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 3}, {"name": "Dylan Moran", "character": "Michael Fitzgerald", "id": 7028, "credit_id": "5347ce91c3a368671c00111b", "cast_id": 11, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 4}, {"name": "Isaach De Bankol\u00e9", "character": "Simon", "id": 4812, "credit_id": "5347ceabc3a368671c00111f", "cast_id": 12, "profile_path": "/vZuBg729XF1H29QPdQynZoAgZvn.jpg", "order": 5}, {"name": "M. Emmet Walsh", "character": "The Writer", "id": 588, "credit_id": "5347ceb9c3a3686704001114", "cast_id": 13, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 6}, {"name": "Marie-Jos\u00e9e Croze", "character": "Teresa", "id": 8791, "credit_id": "5347cec4c3a368672d00110e", "cast_id": 14, "profile_path": "/geZ08Bzueh6qDEGGUR7jQgomLks.jpg", "order": 7}, {"name": "Domhnall Gleeson", "character": "Freddie Joyce", "id": 93210, "credit_id": "52fe4bd49251416c910e6f3d", "cast_id": 7, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 8}, {"name": "David Wilmot", "character": "Father Leary", "id": 73287, "credit_id": "53de6b6d0e0a265a8d00277a", "cast_id": 15, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 9}, {"name": "Gary Lydon", "character": "Inspector Stanton", "id": 93209, "credit_id": "53de6b770e0a265a830027de", "cast_id": 16, "profile_path": "/azTMUVMcNbJG3wdmBUIlzCHHEJw.jpg", "order": 10}, {"name": "Killian Scott", "character": "Milo Herlihy", "id": 1189005, "credit_id": "53de6b830e0a265a930026b2", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Orla O'Rourke", "character": "Veronica Brennan", "id": 107393, "credit_id": "53de6b8f0e0a265a90002774", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Owen Sharpe", "character": "Leo", "id": 1349273, "credit_id": "53de6ba50e0a265a930026b8", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "David McSavage", "character": "Bishop Garret Montgomery", "id": 1349274, "credit_id": "53de6bb60e0a265a8a0025b2", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Michael Og Lane", "character": "M\u00edche\u00e1l", "id": 1349275, "credit_id": "53de6bc50e0a265a930026c5", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Mark O'Halloran", "character": "Prison Officer", "id": 87908, "credit_id": "53de6bd20e0a265a990024da", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "John Michael McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe4bd49251416c910e6f1d", "profile_path": "/kYGIKwsaKLkXfWDJIm2ClHuvzby.jpg", "id": 65594}], "vote_average": 7.3, "runtime": 100}, "86834": {"poster_path": "/5wioUjzwr91fvq7ydunxK2CPSxi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 362637473, "overview": "A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.", "video": false, "id": 86834, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Noah", "tagline": "The end of the world is just the beginning.", "vote_count": 849, "homepage": "http://www.noahmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1959490", "adult": false, "backdrop_path": "/jnoJgpITphPoqA3e7JnNC4mtAVX.jpg", "production_companies": [{"name": "Disruption Entertainment", "id": 10256}, {"name": "Paramount Pictures", "id": 4}, {"name": "Regency Enterprises", "id": 508}, {"name": "Protozoa Pictures", "id": 7503}], "release_date": "2014-03-26", "popularity": 1.7795561534324, "original_title": "Noah", "budget": 125000000, "cast": [{"name": "Russell Crowe", "character": "Noah", "id": 934, "credit_id": "52fe49a39251416c910b3c79", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Naameh", "id": 6161, "credit_id": "52fe49a39251416c910b3c7d", "cast_id": 5, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Emma Watson", "character": "Ila", "id": 10990, "credit_id": "52fe49a39251416c910b3c81", "cast_id": 6, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 2}, {"name": "Logan Lerman", "character": "Ham", "id": 33235, "credit_id": "52fe49a39251416c910b3c8d", "cast_id": 9, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 3}, {"name": "Anthony Hopkins", "character": "Methuselah", "id": 4173, "credit_id": "52fe49a39251416c910b3c89", "cast_id": 8, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 5}, {"name": "Ray Winstone", "character": "Tubal Cain", "id": 5538, "credit_id": "52fe49a49251416c910b3ceb", "cast_id": 25, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 6}, {"name": "Kevin Durand", "character": "Og", "id": 79072, "credit_id": "52fe49a49251416c910b3cef", "cast_id": 26, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 7}, {"name": "Ariane Rinehart", "character": "Eve", "id": 1274232, "credit_id": "52fe49a49251416c910b3cf3", "cast_id": 27, "profile_path": "/cRcCEcNtpfp43YZ98EDMhLSRlTA.jpg", "order": 8}, {"name": "Douglas Booth", "character": "Shem", "id": 230680, "credit_id": "52fe49a49251416c910b3cf7", "cast_id": 28, "profile_path": "/3YMp0bU20VKCzJj6xTEO2u34VRE.jpg", "order": 9}, {"name": "Marton Csokas", "character": "Lamech", "id": 20982, "credit_id": "52fe49a49251416c910b3cfb", "cast_id": 29, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 10}, {"name": "Dakota Goyo", "character": "Young Noah", "id": 234479, "credit_id": "52fe49a49251416c910b3cff", "cast_id": 30, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 11}, {"name": "Barry Sloane", "character": "Poacher Leader", "id": 183538, "credit_id": "52fe49a49251416c910b3d03", "cast_id": 31, "profile_path": "/kZIPKGCKE47d92mrLN5DbWpsENe.jpg", "order": 12}, {"name": "Sami Gayle", "character": "Sami", "id": 506085, "credit_id": "52fe49a49251416c910b3d07", "cast_id": 32, "profile_path": "/k3TMcxxdkNq5PNWA6ruahlGmmZY.jpg", "order": 13}, {"name": "Mark Margolis", "character": "Magog (voice)", "id": 1173, "credit_id": "52fe49a49251416c910b3d0b", "cast_id": 33, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 14}, {"name": "Ray Winstone", "character": "Tubal Cain", "id": 5538, "credit_id": "52fe49a49251416c910b3d0f", "cast_id": 34, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 15}, {"name": "Nick Nolte", "character": "Samyaza (voice)", "id": 1733, "credit_id": "52fe49a49251416c910b3d13", "cast_id": 35, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 16}, {"name": "Finn Wittrock", "character": "Young Tubal Cain", "id": 168877, "credit_id": "54a6d6c39251411f9000463b", "cast_id": 91, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 17}], "directors": [{"name": "Darren Aronofsky", "department": "Directing", "job": "Director", "credit_id": "52fe49a39251416c910b3c69", "profile_path": "/tOPJSYIkf3aQJ4y6NtYFzTQ2ehu.jpg", "id": 6431}], "vote_average": 5.7, "runtime": 139}, "86837": {"poster_path": "/6jTshPGh5wCAT8lw5IGl5dG9bcj.jpg", "production_countries": [{"iso_3166_1": "AT", "name": "Austria"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has an attack. The couple's bond of love is severely tested.", "video": false, "id": 86837, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10769, "name": "Foreign"}], "title": "Amour", "tagline": "", "vote_count": 128, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1602620", "adult": false, "backdrop_path": "/laDq2WbQZD4Dtd87EfDzy0KF6MS.jpg", "production_companies": [{"name": "Wega Film", "id": 224}, {"name": "Les Films du Losange", "id": 223}, {"name": "X-Filme Creative Pool", "id": 1972}], "release_date": "2012-12-19", "popularity": 0.594608954145683, "original_title": "Amour", "budget": 8900000, "cast": [{"name": "Emmanuelle Riva", "character": "Anne", "id": 267962, "credit_id": "52fe49a49251416c910b3d81", "cast_id": 6, "profile_path": "/vxHV2opZSmeP7K0OnrXArSJOiPQ.jpg", "order": 0}, {"name": "Jean-Louis Trintignant", "character": "Georges", "id": 1352, "credit_id": "52fe49a49251416c910b3d79", "cast_id": 4, "profile_path": "/zy5AZv507gEndkgGCTtNkRS2vUC.jpg", "order": 1}, {"name": "Isabelle Huppert", "character": "Eva", "id": 17882, "credit_id": "52fe49a49251416c910b3d75", "cast_id": 3, "profile_path": "/nrbXaDh5zQEi2G7T5OILInm3f9p.jpg", "order": 2}, {"name": "William Shimell", "character": "Geoff", "id": 140238, "credit_id": "52fe49a49251416c910b3d7d", "cast_id": 5, "profile_path": "/1ma32O9mAUEDJCaFIed10j85bu.jpg", "order": 3}, {"name": "Rita Blanco", "character": "Concierge", "id": 109713, "credit_id": "52fe49a49251416c910b3d85", "cast_id": 9, "profile_path": "/sMKLvQEvC4NPlotv1ZZsJCHJVhB.jpg", "order": 4}, {"name": "Dinara Drukarova", "character": "Nurse #2", "id": 543366, "credit_id": "52fe49a49251416c910b3d8d", "cast_id": 11, "profile_path": "/72mZ7xeDQFbh7FQ5DNx00WJKXNn.jpg", "order": 5}, {"name": "Carole Franck", "character": "Nurse #1", "id": 17463, "credit_id": "52fe49a49251416c910b3d89", "cast_id": 10, "profile_path": "/1AgGjzMrBsSb5H4JKfPegeSRBJb.jpg", "order": 7}, {"name": "Laurent Capelluto", "character": "Police Officer #1", "id": 228719, "credit_id": "52fe49a49251416c910b3d91", "cast_id": 12, "profile_path": "/fE6HK47D9rLnHwspIt27aCcFhz6.jpg", "order": 7}, {"name": "Damien Jouillerot", "character": "Paramedic #1", "id": 109474, "credit_id": "52fe49a49251416c910b3d95", "cast_id": 15, "profile_path": "/w9l38afj7ttNaUMoQfM8p0CrHwZ.jpg", "order": 8}, {"name": "Walid Afkir", "character": "Paramedic #2", "id": 6016, "credit_id": "52fe49a49251416c910b3d99", "cast_id": 16, "profile_path": "/4bpned4xIoKFFSUpICxDpvsyOaZ.jpg", "order": 9}], "directors": [{"name": "Michael Haneke", "department": "Directing", "job": "Director", "credit_id": "52fe49a49251416c910b3d6b", "profile_path": "/xxHw9hBEXL4BrktfG3Q3vVZBx2D.jpg", "id": 6011}], "vote_average": 7.4, "runtime": 127}, "86838": {"poster_path": "/3Zs6Ne6QAEOzQRz85VToH8ml6ab.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 19422261, "overview": "A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster's beloved Shih Tzu.", "video": false, "id": 86838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Seven Psychopaths", "tagline": "They Won't Take Any Shih Tzu.", "vote_count": 426, "homepage": "http://www.sevenpsychopaths.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt1931533", "adult": false, "backdrop_path": "/4H6vE7fvB0gvaaSRJyguUu67FvF.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}, {"name": "Film4", "id": 9349}, {"name": "British Film Institute (BFI)", "id": 7281}, {"name": "Blueprint Pictures", "id": 2376}], "release_date": "2012-10-12", "popularity": 1.00877041791904, "original_title": "Seven Psychopaths", "budget": 15000000, "cast": [{"name": "Colin Farrell", "character": "Marty", "id": 72466, "credit_id": "52fe49a49251416c910b3df5", "cast_id": 3, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Sam Rockwell", "character": "Billy", "id": 6807, "credit_id": "52fe49a49251416c910b3e01", "cast_id": 6, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 1}, {"name": "Christopher Walken", "character": "Hans", "id": 4690, "credit_id": "52fe49a49251416c910b3e05", "cast_id": 7, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Charlie", "id": 57755, "credit_id": "52fe49a49251416c910b3df9", "cast_id": 4, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Abbie Cornish", "character": "Kaya", "id": 37260, "credit_id": "52fe49a49251416c910b3dfd", "cast_id": 5, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 4}, {"name": "Tom Waits", "character": "Zachariah", "id": 2887, "credit_id": "52fe49a49251416c910b3e0d", "cast_id": 9, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 5}, {"name": "Linda Bright Clay", "character": "Myra", "id": 1170658, "credit_id": "52fe49a49251416c910b3e67", "cast_id": 28, "profile_path": "/amQEG4egh4s4cp1RCc192RVc8w5.jpg", "order": 6}, {"name": "Olga Kurylenko", "character": "Angela", "id": 18182, "credit_id": "52fe49a49251416c910b3e09", "cast_id": 8, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 7}, {"name": "Gabourey Sidibe", "character": "Sharice", "id": 109560, "credit_id": "52fe49a49251416c910b3e11", "cast_id": 10, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 8}, {"name": "\u017deljko Ivanek", "character": "Paolo", "id": 6752, "credit_id": "52fe49a49251416c910b3e15", "cast_id": 11, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 9}, {"name": "Long Nguyen", "character": "Vietnamese Priest", "id": 111185, "credit_id": "52fe49a49251416c910b3e5b", "cast_id": 25, "profile_path": "/nK95uO8Y2bYxfZ83ojYNeFBRejV.jpg", "order": 10}, {"name": "Amanda Mason Warren", "character": "Maggie (as Amanda Warren)", "id": 1170657, "credit_id": "52fe49a49251416c910b3e63", "cast_id": 27, "profile_path": "/90D0bcAXjKWBal5nWskJJuam2Lf.jpg", "order": 11}, {"name": "Christine Marzano", "character": "The Hooker", "id": 1170656, "credit_id": "52fe49a49251416c910b3e5f", "cast_id": 26, "profile_path": "/kyPcf8uN1BC6bYNXh1NLK71QNWl.jpg", "order": 12}, {"name": "Kevin Corrigan", "character": "Dennis", "id": 18472, "credit_id": "52fe49a49251416c910b3e73", "cast_id": 31, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 13}, {"name": "Michael Pitt", "character": "Larry", "id": 10692, "credit_id": "52fe49a49251416c910b3e47", "cast_id": 20, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 14}, {"name": "Michael Stuhlbarg", "character": "Tommy", "id": 72873, "credit_id": "52fe49a49251416c910b3e4b", "cast_id": 21, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 15}, {"name": "Harry Dean Stanton", "character": "Man in Hat", "id": 5048, "credit_id": "52fe49a49251416c910b3e4f", "cast_id": 22, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 16}, {"name": "Helena Mattsson", "character": "Blonde Lady", "id": 113676, "credit_id": "52fe49a49251416c910b3e43", "cast_id": 19, "profile_path": "/jXksDiD2NATlan04QXqKusOx5XY.jpg", "order": 17}, {"name": "Brendan Sexton III", "character": "Young Zachariah", "id": 2839, "credit_id": "52fe49a49251416c910b3e53", "cast_id": 23, "profile_path": "/kQsOIQuGcqwdpolSEzLV7RfYVsV.jpg", "order": 18}, {"name": "John Bishop", "character": "The Butcher", "id": 1145861, "credit_id": "52fe49a49251416c910b3e57", "cast_id": 24, "profile_path": "/r8iqyLXz0TrsCc61qtuNjOcFAaq.jpg", "order": 19}, {"name": "James Landry H\u00e9bert", "character": "Killer (as James H\u00e9bert)", "id": 1170659, "credit_id": "52fe49a49251416c910b3e6b", "cast_id": 29, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 20}, {"name": "Tai Chan Ngo", "character": "Fellow Monk", "id": 1118671, "credit_id": "52fe49a49251416c910b3e6f", "cast_id": 30, "profile_path": "/5uS7GEw52eduYD1eTsBQmytsOTa.jpg", "order": 21}, {"name": "Joseph Lyle Taylor", "character": "Al", "id": 159879, "credit_id": "52fe49a49251416c910b3e77", "cast_id": 32, "profile_path": "/9CIOs5oFBZMpIczFK0qTRTbeVlO.jpg", "order": 22}, {"name": "Ronnie Gene Blevins", "character": "First Cop (as Ronnie Blevins)", "id": 98804, "credit_id": "52fe49a49251416c910b3e7b", "cast_id": 33, "profile_path": "/oRQxtpbG1jeeUJjx1oKuLldHtol.jpg", "order": 23}, {"name": "Christian Barillas", "character": "Catholic Priest", "id": 1055520, "credit_id": "52fe49a49251416c910b3e7f", "cast_id": 34, "profile_path": "/xG9I3CwAz8CrDpz6qRJoDzpkxOa.jpg", "order": 24}, {"name": "Christopher Gehrman", "character": "Cellmate", "id": 71686, "credit_id": "52fe49a49251416c910b3e83", "cast_id": 35, "profile_path": "/xMU5lni74vhleYeGjx2Du1BE4JD.jpg", "order": 25}], "directors": [{"name": "Martin McDonagh", "department": "Directing", "job": "Director", "credit_id": "52fe49a49251416c910b3deb", "profile_path": "/yvpnpkDG0yV0No6TuZ8QorFZ8d.jpg", "id": 54472}], "vote_average": 6.4, "runtime": 110}, "9012": {"poster_path": "/iCB8mLrRoMp6sFta1qgZyZgmu9W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64282312, "overview": "Johnny Knoxville and his crazy friends appear on the big screen for the very first time in Jackass: The Movie. They wander around Japan in panda outfits, wreak havoc on a once civilized golf course, they even do stunts involving LIVE alligators, and so on. While Johnny Knoxvile and his pals put their life at risk, they are entertaining people at the same time. Get ready for Jackass: The Movie!!", "video": false, "id": 9012, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jackass: The Movie", "tagline": "Do not attempt this at home.", "vote_count": 91, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lidPLbyE1JCUacEDOzkTCncCPBL.jpg", "poster_path": "/olpnvtLgoScLiCg3YHJ3f27F98f.jpg", "id": 17178, "name": "Jackass Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0322802", "adult": false, "backdrop_path": "/ljUOge9fGvyg47iK1GAjuNiVwBB.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2002-10-21", "popularity": 0.70235130219739, "original_title": "Jackass: The Movie", "budget": 5000000, "cast": [{"name": "Johnny Knoxville", "character": "Himself", "id": 9656, "credit_id": "52fe44d1c3a36847f80abcaf", "cast_id": 14, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 0}, {"name": "Bam Margera", "character": "Himself", "id": 56584, "credit_id": "52fe44d1c3a36847f80abcb3", "cast_id": 15, "profile_path": "/7hgZtoC2QObiTd2k8zgG8SDOhP.jpg", "order": 1}, {"name": "Steve-O", "character": "Himself", "id": 56585, "credit_id": "52fe44d1c3a36847f80abcb7", "cast_id": 16, "profile_path": "/nbZ76ok91pHeg7frtd1uqzHn66l.jpg", "order": 2}, {"name": "Chris Pontius", "character": "Himself", "id": 56586, "credit_id": "52fe44d1c3a36847f80abcbb", "cast_id": 17, "profile_path": "/xTgZUtr8Lw7iKVhAZXW87Nk5IuJ.jpg", "order": 3}, {"name": "Dave England", "character": "Himself", "id": 86627, "credit_id": "53c453b8c3a3684cef00a524", "cast_id": 19, "profile_path": "/dox7RBYJxpqqYX3xu5OnprQPKim.jpg", "order": 4}, {"name": "Ryan Dunn", "character": "Himself", "id": 110068, "credit_id": "546805ef22136e1e240012b5", "cast_id": 28, "profile_path": "/ybO3aUa89Q0nKO2kt1hYeTXVdmO.jpg", "order": 5}, {"name": "Preston Lacy", "character": "Himself", "id": 76365, "credit_id": "53c4540dc3a3684cf4009dac", "cast_id": 21, "profile_path": "/1vlkX3gmAr72QujBRbIXZdkx1qT.jpg", "order": 6}, {"name": "Jason Acu\u00f1a", "character": "Wee Man", "id": 78840, "credit_id": "53c45437c3a3684cdf00a744", "cast_id": 22, "profile_path": "/xmO0gNr1fAyN8aKaSsv3zNG4gzK.jpg", "order": 7}, {"name": "Ehren McGhehey", "character": "Himself", "id": 220241, "credit_id": "53c45461c3a3687e59009a3f", "cast_id": 23, "profile_path": "/1lJjwoZUiLpHnCCCGUDDwrZ7uvY.jpg", "order": 8}, {"name": "Brandon DiCamillo", "character": "Himself", "id": 117289, "credit_id": "53c454e50e0a26158f00d045", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Phil Margera", "character": "Himself", "id": 117261, "credit_id": "53c455000e0a26157f00d9ad", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "April Margera", "character": "Herself", "id": 117287, "credit_id": "53c455130e0a26157600d95c", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Jess Margera", "character": "Himself", "id": 117260, "credit_id": "53c455320e0a26158900d7b1", "cast_id": 27, "profile_path": "/kSUMmj0jLs0bbn9rwVOnpdUMnxH.jpg", "order": 12}, {"name": "Stephanie Hodge", "character": "Herself", "id": 164944, "credit_id": "52fe44d1c3a36847f80abcbf", "cast_id": 18, "profile_path": "/l5GsrC7iHU9tg98LZhh8MzQktRL.jpg", "order": 13}], "directors": [{"name": "Jeff Tremaine", "department": "Directing", "job": "Director", "credit_id": "52fe44d1c3a36847f80abc63", "profile_path": "/4xrBnAaPUR91qFumZfd6gFK6xHx.jpg", "id": 56578}], "vote_average": 6.2, "runtime": 87}, "4922": {"poster_path": "/4O4INOPtWTfHq3dd5vYTPV0TCwa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 333932083, "overview": "Tells the story of Benjamin Button, a man who starts aging backwards with bizarre consequences.", "video": false, "id": 4922, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Curious Case of Benjamin Button", "tagline": "Life isn't measured in minutes, but in moments.", "vote_count": 852, "homepage": "http://www.benjaminbutton.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0421715", "adult": false, "backdrop_path": "/xOXT99TBUgROWqbDvIoCvqogTo1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Paramount Pictures", "id": 4}, {"name": "Kennedy/Marshall Company, The", "id": 7383}], "release_date": "2008-11-24", "popularity": 1.39094963418968, "original_title": "The Curious Case of Benjamin Button", "budget": 150000000, "cast": [{"name": "Cate Blanchett", "character": "Daisy", "id": 112, "credit_id": "52fe43e2c3a36847f807632b", "cast_id": 4, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Benjamin Button", "id": 287, "credit_id": "52fe43e2c3a36847f807632f", "cast_id": 5, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Elizabeth Abbott", "id": 3063, "credit_id": "52fe43e2c3a36847f8076333", "cast_id": 6, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Elle Fanning", "character": "Daisy as a Child", "id": 18050, "credit_id": "52fe43e2c3a36847f8076337", "cast_id": 7, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 3}, {"name": "Jason Flemyng", "character": "Thomas Button", "id": 973, "credit_id": "52fe43e2c3a36847f807633b", "cast_id": 8, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Monsieur Gateau", "id": 13550, "credit_id": "52fe43e2c3a36847f807633f", "cast_id": 9, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Julia Ormond", "character": "Caroline", "id": 15887, "credit_id": "52fe43e2c3a36847f8076343", "cast_id": 10, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 6}, {"name": "Taraji P. Henson", "character": "Queenie", "id": 40036, "credit_id": "52fe43e2c3a36847f8076347", "cast_id": 11, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 7}, {"name": "Bianca Chiminello", "character": "Daisy's Best Friend", "id": 40038, "credit_id": "52fe43e2c3a36847f807634b", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Josh Stewart", "character": "Pleasant Curtis", "id": 40039, "credit_id": "52fe43e2c3a36847f807634f", "cast_id": 13, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 9}, {"name": "Faune A. Chambers", "character": "Dorothy Baker", "id": 58953, "credit_id": "52fe43e2c3a36847f8076359", "cast_id": 15, "profile_path": "/hJrfy8Cgd2Xm2hXvgXEOHmqvzZi.jpg", "order": 10}, {"name": "Donna DuPlantier", "character": "Blanche Devereux", "id": 230995, "credit_id": "52fe43e2c3a36847f807635d", "cast_id": 16, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 11}, {"name": "Jacob Tolano", "character": "Martin Gateau", "id": 1074186, "credit_id": "52fe43e2c3a36847f8076361", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Earl Maddox", "character": "Man at Train Station", "id": 60884, "credit_id": "52fe43e2c3a36847f8076365", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Ed Metzger", "character": "Teddy Roosevelt", "id": 231274, "credit_id": "52fe43e2c3a36847f8076369", "cast_id": 19, "profile_path": "/byJvOeZ2oHJ459AWFUVGXhANj8m.jpg", "order": 14}, {"name": "Danny Vinson", "character": "Priest Giving Last Rites", "id": 1074187, "credit_id": "52fe43e2c3a36847f807636d", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "David Jensen", "character": "Doctor at Benjamin's Birth", "id": 60875, "credit_id": "52fe43e2c3a36847f8076371", "cast_id": 21, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 16}, {"name": "Joeanna Sayler", "character": "Caroline Button", "id": 203867, "credit_id": "52fe43e2c3a36847f8076375", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Mahershalalhashbaz Ali", "character": "Tizzy", "id": 932967, "credit_id": "52fe43e2c3a36847f8076379", "cast_id": 23, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 18}, {"name": "Phyllis Somerville", "character": "Grandma Fuller", "id": 17184, "credit_id": "52fe43e2c3a36847f807637d", "cast_id": 24, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 19}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe43e2c3a36847f8076355", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.0, "runtime": 166}, "37686": {"poster_path": "/1JAKnHjENVz1adurNjtsWZnVQGY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 260095987, "overview": "In the summer of 1979, a group of friends in a small Ohio town witness a catastrophic train crash while making a super 8 movie and soon suspect that it was not an accident. Shortly after, unusual disappearances and inexplicable events begin to take place in town, and the local Deputy tries to uncover the truth \u2013 something more terrifying than any of them could have imagined.", "video": false, "id": 37686, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Super 8", "tagline": "It Arrives.", "vote_count": 724, "homepage": "http://www.super8-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1650062", "adult": false, "backdrop_path": "/exMT7YP7nY2XUHvUOPQxXocpFDg.jpg", "production_companies": [{"name": "K/O Camera Toys", "id": 23300}, {"name": "Paramount Pictures", "id": 4}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Bad Robot", "id": 11461}], "release_date": "2011-06-08", "popularity": 0.987174584678023, "original_title": "Super 8", "budget": 50000000, "cast": [{"name": "Joel Courtney", "character": "Joe Lamb", "id": 518627, "credit_id": "52fe46639251416c91052d3f", "cast_id": 14, "profile_path": "/bvhzhZbGMMuYx26USDw2ENagOfP.jpg", "order": 0}, {"name": "Elle Fanning", "character": "Alice Dainard", "id": 18050, "credit_id": "52fe46639251416c91052d29", "cast_id": 9, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 1}, {"name": "Riley Griffiths", "character": "Charles", "id": 518628, "credit_id": "52fe46639251416c91052d43", "cast_id": 15, "profile_path": "/oHpJuAK5LYxUehF2OIxdR5Sdelp.jpg", "order": 2}, {"name": "Kyle Chandler", "character": "Jackson Lamb", "id": 3497, "credit_id": "52fe46639251416c91052d25", "cast_id": 8, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 3}, {"name": "Noah Emmerich", "character": "Nelec", "id": 11315, "credit_id": "52fe46639251416c91052d31", "cast_id": 11, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 4}, {"name": "Amanda Michalka", "character": "Jen Kaznyk", "id": 113926, "credit_id": "52fe46639251416c91052d35", "cast_id": 12, "profile_path": "/5bj8eyZsc0UbZAxhhq8krrx5ygn.jpg", "order": 5}, {"name": "Ron Eldard", "character": "Louis Dainard", "id": 12260, "credit_id": "52fe46639251416c91052d2d", "cast_id": 10, "profile_path": "/n49scru0f7iuoj4Uy1Pp9KZr2zK.jpg", "order": 6}, {"name": "Ryan Lee", "character": "Cary", "id": 456066, "credit_id": "52fe46639251416c91052d47", "cast_id": 16, "profile_path": "/ruZj8XZ77CppycNJ4oV3QUrAzvj.jpg", "order": 7}, {"name": "Gabriel Basso", "character": "Martin", "id": 222122, "credit_id": "52fe46639251416c91052d4b", "cast_id": 17, "profile_path": "/rHD6iBvmAYOtyFaV0wXJMvYZrMU.jpg", "order": 8}, {"name": "Zach Mills", "character": "Preston", "id": 23533, "credit_id": "52fe46639251416c91052d4f", "cast_id": 18, "profile_path": "/xziEsJgAFjQeWN3Z1tJdQZmJ2LX.jpg", "order": 9}, {"name": "Jessica Tuck", "character": "Mrs. Kaznyk", "id": 156689, "credit_id": "52fe46639251416c91052d53", "cast_id": 19, "profile_path": "/smsznskzjz5c6SbjEFW6kENGhho.jpg", "order": 10}, {"name": "Joel McKinnon Miller", "character": "Mr. Kaznyk", "id": 88950, "credit_id": "52fe46639251416c91052d57", "cast_id": 20, "profile_path": "/3Ogco60XoPVmbLTzqmhgxDgsQBW.jpg", "order": 11}, {"name": "Britt Flatmo", "character": "Peg Kaznyk", "id": 484293, "credit_id": "52fe46639251416c91052d5b", "cast_id": 21, "profile_path": "/kogtUvtmSR2QFqiRaKdXwlhtAwv.jpg", "order": 12}, {"name": "Glynn Turman", "character": "Dr. Woodward", "id": 114674, "credit_id": "52fe46639251416c91052d5f", "cast_id": 22, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 13}, {"name": "Richard T. Jones", "character": "Overmyer", "id": 55755, "credit_id": "52fe46639251416c91052d63", "cast_id": 23, "profile_path": "/ccELAB9yHvG4OxG8dURdUXznwJ8.jpg", "order": 14}, {"name": "Tom Quinn", "character": "Mr. McCandless", "id": 1115118, "credit_id": "52fe46639251416c91052d67", "cast_id": 25, "profile_path": "/goJeBvmLYutE2LYCoxGKTPxjGgA.jpg", "order": 15}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe46639251416c91052d09", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 6.4, "runtime": 112}, "4935": {"poster_path": "/iMarB2ior30OAXjPa7QIdeyUfM1.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 234710455, "overview": "When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking home.", "video": false, "id": 4935, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}], "title": "Howl's Moving Castle", "tagline": "Sophie has resigned herself to a boring fate, but fate has other plans for her", "vote_count": 591, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0347149", "adult": false, "backdrop_path": "/cGyqa5PxiWSsG7NSw3ufCj0JW9k.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "DENTSU Music And Entertainment", "id": 2752}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Buena Vista Home Entertainment", "id": 11200}, {"name": "Mitsubishi", "id": 11847}, {"name": "Tohokushinsha Film", "id": 12387}, {"name": "d-rights", "id": 12518}], "release_date": "2004-11-19", "popularity": 1.72543774454782, "original_title": "\u30cf\u30a6\u30eb\u306e\u52d5\u304f\u57ce", "budget": 24000000, "cast": [{"name": "Takuya Kimura", "character": "Hauru", "id": 12670, "credit_id": "52fe43e5c3a36847f8076c67", "cast_id": 6, "profile_path": "/cV3Zv5bL0OrWVo8iPx7VzbR0R4f.jpg", "order": 0}, {"name": "Akihiro Miwa", "character": "Arechi no Majo", "id": 20338, "credit_id": "52fe43e5c3a36847f8076c6b", "cast_id": 7, "profile_path": "/xQaxWhOqAZmRecv6ZratXzJVZzs.jpg", "order": 1}, {"name": "Tatsuya Gash\u00fbin", "character": "Karushif\u00e2", "id": 19592, "credit_id": "52fe43e5c3a36847f8076c6f", "cast_id": 8, "profile_path": "/dZ5KJLxLmoXIYrG7JcXuphGESIv.jpg", "order": 2}, {"name": "Mitsunori Isaki", "character": "Kosh\u00f4", "id": 40449, "credit_id": "52fe43e5c3a36847f8076c73", "cast_id": 10, "profile_path": "/eDTgtEndCYQKxtss46TzXnqE1it.jpg", "order": 3}, {"name": "Yo Oizumi", "character": "Kakashi no Kabu", "id": 40450, "credit_id": "52fe43e5c3a36847f8076c77", "cast_id": 11, "profile_path": "/avSKuYQiEHYY0eJoCFiKCyhGvcL.jpg", "order": 4}, {"name": "Akio \u00d4tsuka", "character": "Koku\u00f4", "id": 40451, "credit_id": "52fe43e5c3a36847f8076c7b", "cast_id": 12, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 5}, {"name": "Daijiro Harada", "character": "Hin", "id": 40452, "credit_id": "52fe43e5c3a36847f8076c7f", "cast_id": 13, "profile_path": "/vUHAPmFCAXzwOUgzR5BKfYbTu6K.jpg", "order": 6}, {"name": "Haruko Kato", "character": "Sariman", "id": 40453, "credit_id": "52fe43e5c3a36847f8076c83", "cast_id": 14, "profile_path": "/fpI47MewcRZn0Ro5LXRfrEptaWW.jpg", "order": 7}, {"name": "Ryunosuke Kamiki", "character": "Marukuru", "id": 225730, "credit_id": "52fe43e5c3a36847f8076ce7", "cast_id": 33, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 15}, {"name": "Chieko Baish\u00f4", "character": "Sofi", "id": 533325, "credit_id": "52fe43e5c3a36847f8076cef", "cast_id": 35, "profile_path": "/d9l3fFcn9phuRSRtsxJ3wnXNK6p.jpg", "order": 16}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe43e5c3a36847f8076c5d", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.8, "runtime": 119}, "37707": {"poster_path": "/eS2JQIJdCRLiMlAS1ckLQQ4BOEb.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Elsa and Clive, two young rebellious scientists, defy legal and ethical boundaries and forge ahead with a dangerous experiment: splicing together human and animal DNA to create a new organism. Named \"Dren\", the creature rapidly develops from a deformed female infant into a beautiful but dangerous winged human-chimera, who forges a bond with both of her creators - only to have that bond turn deadly.", "video": false, "id": 37707, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Splice", "tagline": "Science's newest miracle...is a mistake.", "vote_count": 149, "homepage": "http://www.splicethefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1017460", "adult": false, "backdrop_path": "/iPTMOZdrWE3q8rXQnUYSPRedah6.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Copperheart Entertainment", "id": 5106}, {"name": "Senator Entertainment Co", "id": 3319}], "release_date": "2009-10-06", "popularity": 0.450950993720709, "original_title": "Splice", "budget": 26000000, "cast": [{"name": "Adrien Brody", "character": "Clive", "id": 3490, "credit_id": "52fe46659251416c91053257", "cast_id": 2, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 0}, {"name": "Sarah Polley", "character": "Elsa", "id": 98, "credit_id": "52fe46659251416c9105325b", "cast_id": 3, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 1}, {"name": "Delphine Chan\u00e9ac", "character": "Dren", "id": 118357, "credit_id": "52fe46659251416c9105325f", "cast_id": 4, "profile_path": "/en21TtTTtWfTZ5yqCGW0FQ2acxn.jpg", "order": 2}, {"name": "David Hewlett", "character": "Barlow", "id": 5892, "credit_id": "52fe46659251416c91053263", "cast_id": 5, "profile_path": "/yntJ7Lur8LmjQ9rTfoVzlKb5WsX.jpg", "order": 3}, {"name": "Abigail Chu", "character": "Yang Dren", "id": 88931, "credit_id": "52fe46659251416c91053267", "cast_id": 6, "profile_path": "/erbfyBNGmUGb0X84lItZBBZ8trk.jpg", "order": 4}, {"name": "Stephanie Baird", "character": "Elsa / PD", "id": 118358, "credit_id": "52fe46659251416c9105326b", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Brandon McGibbon", "character": "Gavin", "id": 81801, "credit_id": "52fe46659251416c9105326f", "cast_id": 9, "profile_path": "/bkOiaf6zOHzRjkT2rM0KMrB6lJg.jpg", "order": 6}, {"name": "Amanda Brugel", "character": "Melinda Finch", "id": 1232769, "credit_id": "52fe46669251416c910532a3", "cast_id": 19, "profile_path": "/h7gjTxkROWvaKgC0YeigrbjU4lf.jpg", "order": 7}], "directors": [{"name": "Vincenzo Natali", "department": "Directing", "job": "Director", "credit_id": "537385f1c3a36815300013b0", "profile_path": "/4rdmLwBRQKs1gpjEfrTxabOUerv.jpg", "id": 5877}], "vote_average": 5.4, "runtime": 104}, "160588": {"poster_path": "/aBSeKszOStTx5TO2koGUpl9oTrV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97505481, "overview": "Jasmine French used to be on the top of the heap as a New York socialite, but now is returning to her estranged sister in San Francisco utterly ruined. As Jasmine struggles with her haunting memories of a privileged past bearing dark realities she ignored, she tries to recover in her present. Unfortunately, it all proves a losing battle as Jasmine's narcissistic hangups and their consequences begin to overwhelm her. In doing so, her old pretensions and new deceits begin to foul up everyone's lives, especially her own.", "video": false, "id": 160588, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Blue Jasmine", "tagline": "Blue Moon. I used to know the words. Now they're all a jumble.", "vote_count": 312, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2334873", "adult": false, "backdrop_path": "/9292R222w18nMIG9iRx92b0ez2.jpg", "production_companies": [{"name": "Perdido Productions", "id": 12966}], "release_date": "2013-07-26", "popularity": 0.887733370033949, "original_title": "Blue Jasmine", "budget": 18000000, "cast": [{"name": "Cate Blanchett", "character": "Jasmine", "id": 112, "credit_id": "52fe4c33c3a36847f82229c7", "cast_id": 3, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Hal", "id": 7447, "credit_id": "52fe4c33c3a36847f82229cb", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Sally Hawkins", "character": "Ginger", "id": 39658, "credit_id": "52fe4c33c3a36847f82229df", "cast_id": 10, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 2}, {"name": "Bobby Cannavale", "character": "Chili", "id": 21127, "credit_id": "52fe4c33c3a36847f8222a25", "cast_id": 23, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 3}, {"name": "Louis C.K.", "character": "Al", "id": 52849, "credit_id": "52fe4c33c3a36847f82229d3", "cast_id": 7, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 4}, {"name": "Peter Sarsgaard", "character": "Dwight", "id": 133, "credit_id": "52fe4c33c3a36847f82229cf", "cast_id": 5, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 5}, {"name": "Andrew Dice Clay", "character": "Augie", "id": 57906, "credit_id": "52fe4c33c3a36847f82229eb", "cast_id": 13, "profile_path": "/1KzjDfy2r0Q8HUiEYfLvrOqVWH0.jpg", "order": 6}, {"name": "Michael Stuhlbarg", "character": "Jasmine's boss", "id": 72873, "credit_id": "52fe4c33c3a36847f8222a29", "cast_id": 24, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 7}, {"name": "Alden Ehrenreich", "character": "Danny", "id": 71375, "credit_id": "52fe4c33c3a36847f82229d7", "cast_id": 8, "profile_path": "/zJr5mpATjAxiJ1BRucMABJdys82.jpg", "order": 8}, {"name": "Charlie Tahan", "character": "Young Danny", "id": 49918, "credit_id": "52fe4c33c3a36847f82229db", "cast_id": 9, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 9}, {"name": "Max Casella", "character": "Young Danny", "id": 7133, "credit_id": "52fe4c33c3a36847f82229e3", "cast_id": 11, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 10}, {"name": "Tammy Blanchard", "character": "Jane", "id": 16859, "credit_id": "52fe4c33c3a36847f82229e7", "cast_id": 12, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 11}, {"name": "Martin Cantu", "character": "Ginger's boss", "id": 1191672, "credit_id": "52fe4c33c3a36847f8222a2d", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Daniel Jenks", "character": "Matthew", "id": 1191673, "credit_id": "52fe4c33c3a36847f8222a31", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Max Rutherford", "character": "Johnny", "id": 1191674, "credit_id": "52fe4c33c3a36847f8222a35", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Ali Fedotowsky", "character": "Melanie", "id": 1195805, "credit_id": "52fe4c33c3a36847f8222a39", "cast_id": 28, "profile_path": "/2vNQmfPn1ue69HxppA2rT3KzX8l.jpg", "order": 15}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe4c33c3a36847f82229c3", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.8, "runtime": 98}, "37710": {"poster_path": "/jfLFF0Qa9jAoTYQIKaSWmMWcKZd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 278346189, "overview": "American tourist Frank (Johnny Depp) meets mysterious British woman Elsie (Angelina Jolie) on the train to Venice. Romance seems to bud, but there's more to her than meets the eye. Remake of the 2005 French film \"Anthony Zimmer\", written and directed by J\u00e9r\u00f4me Salle.", "video": false, "id": 37710, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Tourist", "tagline": "It all started when he met a woman", "vote_count": 547, "homepage": "http://thetourist-movie.com/", "belongs_to_collection": null, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1243957", "adult": false, "backdrop_path": "/2SChQOUxcGoilS3zxnFQ7LZZMgE.jpg", "production_companies": [{"name": "Spyglass Entertainment", "id": 158}, {"name": "GK Films", "id": 3281}, {"name": "StudioCanal", "id": 694}, {"name": "Birnbaum/Barber", "id": 23731}, {"name": "Cineroma SRL", "id": 23732}, {"name": "Peninsula Films", "id": 682}, {"name": "Italian Tax Credit", "id": 21212}, {"name": "French Tax Credit", "id": 23733}], "release_date": "2010-12-10", "popularity": 0.874812055351819, "original_title": "The Tourist", "budget": 100000000, "cast": [{"name": "Johnny Depp", "character": "Frank Tupelo", "id": 85, "credit_id": "52fe46669251416c91053377", "cast_id": 13, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Elise Clifton-Ward", "id": 11701, "credit_id": "52fe46669251416c9105337b", "cast_id": 14, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Paul Bettany", "character": "Inspector John Acheson", "id": 6162, "credit_id": "52fe46669251416c9105337f", "cast_id": 15, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 2}, {"name": "Timothy Dalton", "character": "Chief Inspector Jones", "id": 10669, "credit_id": "52fe46669251416c91053363", "cast_id": 8, "profile_path": "/e1CIt5Kb6NmRmCeWyz0vA21jPUU.jpg", "order": 3}, {"name": "Steven Berkoff", "character": "Reginald Shaw", "id": 782, "credit_id": "52fe46669251416c91053367", "cast_id": 9, "profile_path": "/jiYMK9prj46Qe4gmbKtBDE6YlSr.jpg", "order": 4}, {"name": "Rufus Sewell", "character": "English man", "id": 17328, "credit_id": "52fe46669251416c91053359", "cast_id": 5, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 5}, {"name": "Christian De Sica", "character": "Colonnello Lombardi", "id": 69036, "credit_id": "52fe46669251416c9105336b", "cast_id": 10, "profile_path": "/vlmNk7KmMvZa8hPI7ZMPmRFh9Jx.jpg", "order": 6}, {"name": "Alessio Boni", "character": "Sergente Cerato", "id": 44646, "credit_id": "52fe46669251416c9105336f", "cast_id": 11, "profile_path": "/bvDifi9lq4QWOfEArA8RqpCFNzg.jpg", "order": 7}, {"name": "Daniele Pecci", "character": "Tenente Narduzzi", "id": 124622, "credit_id": "52fe46669251416c91053373", "cast_id": 12, "profile_path": "/3aEGgmc1o6IkQORfiK91pQWgGpL.jpg", "order": 8}], "directors": [{"name": "Florian Henckel von Donnersmarck", "department": "Directing", "job": "Director", "credit_id": "52fe46669251416c9105335f", "profile_path": "/wQA7iaeaSWbAFB7oOFV0NRGjUMa.jpg", "id": 8193}], "vote_average": 5.9, "runtime": 103}, "4944": {"poster_path": "/8ZvcWWewpWdDbkA6dCMma11ZL2l.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163720069, "overview": "This is a comedic tale of espionage. An ousted CIA official's memoir accidentally falls into the hands of two unwise gym employees intent on exploiting their find.", "video": false, "id": 4944, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Burn After Reading", "tagline": "Intelligence is relative.", "vote_count": 354, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0887883", "adult": false, "backdrop_path": "/r9BCMru6cPtuXeIRKGGkf4NNRrU.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2008-09-12", "popularity": 0.793662691777042, "original_title": "Burn After Reading", "budget": 37000000, "cast": [{"name": "George Clooney", "character": "Harry Pfarrer", "id": 1461, "credit_id": "52fe43e6c3a36847f8076feb", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Frances McDormand", "character": "Linda Litzke", "id": 3910, "credit_id": "52fe43e6c3a36847f8076fe3", "cast_id": 2, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 1}, {"name": "Tilda Swinton", "character": "Katie Cox", "id": 3063, "credit_id": "52fe43e6c3a36847f807700d", "cast_id": 10, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 2}, {"name": "Brad Pitt", "character": "Chad Feldheimer", "id": 287, "credit_id": "52fe43e6c3a36847f8076fe7", "cast_id": 3, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Ted Treffon", "id": 28633, "credit_id": "52fe43e6c3a36847f8077011", "cast_id": 11, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "CIA Superior", "id": 18999, "credit_id": "52fe43e6c3a36847f8077015", "cast_id": 12, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "John Malkovich", "character": "Ozzie Cox", "id": 6949, "credit_id": "52fe43e6c3a36847f8077019", "cast_id": 13, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 6}, {"name": "Elizabeth Marvel", "character": "Sandy Pfarrer", "id": 126713, "credit_id": "52fe43e6c3a36847f807701d", "cast_id": 14, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 7}, {"name": "David Rasche", "character": "CIA Officer", "id": 33533, "credit_id": "52fe43e6c3a36847f8077021", "cast_id": 15, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 8}, {"name": "Olek Krupa", "character": "Krapotkin", "id": 53573, "credit_id": "52fe43e6c3a36847f8077025", "cast_id": 16, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 9}, {"name": "Michael Countryman", "character": "Alan", "id": 121939, "credit_id": "52fe43e6c3a36847f8077029", "cast_id": 17, "profile_path": "/dkjaMJzyHUiXHBGJM1jYE4k9cMg.jpg", "order": 10}, {"name": "Kevin Sussman", "character": "Tuchman Marsh Man", "id": 60633, "credit_id": "52fe43e6c3a36847f807702d", "cast_id": 18, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 11}, {"name": "J.R. Horne", "character": "Divorce Lawyer", "id": 1468, "credit_id": "52fe43e6c3a36847f8077031", "cast_id": 19, "profile_path": "/kwXWf5gEZGWyqRDu5VjXAoll1Hw.jpg", "order": 12}, {"name": "Hamilton Clancy", "character": "Peck", "id": 176777, "credit_id": "52fe43e6c3a36847f8077035", "cast_id": 20, "profile_path": "/49fKdEpI7hnaoDdIVW71QZw0FNh.jpg", "order": 13}, {"name": "Armand Schultz", "character": "Olson", "id": 19851, "credit_id": "52fe43e6c3a36847f8077039", "cast_id": 21, "profile_path": "/oKcmZbjESiUybY7AgWeRvaBWCFu.jpg", "order": 14}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43e6c3a36847f8076ff1", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe43e6c3a36847f8076ff7", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 6.3, "runtime": 96}, "9016": {"poster_path": "/gFfZVblQoExIVK4PVCJ9xZZJJKy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109578115, "overview": "When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic \"loot of a thousand worlds,\" a cyborg cook named John Silver teaches him to battle supernovas and space storms. But, soon, Jim realizes Silver is a pirate intent on mutiny!", "video": false, "id": 9016, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Treasure Planet", "tagline": "Find your place in the universe.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0133240", "adult": false, "backdrop_path": "/3HVvtFm9NvOfn1u3yfeEugh2ZWj.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Feature Animation", "id": 10217}], "release_date": "2002-11-26", "popularity": 1.70018023528971, "original_title": "Treasure Planet", "budget": 140000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Jim Hawkins", "id": 24045, "credit_id": "52fe44d1c3a36847f80abded", "cast_id": 1, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "David Hyde Pierce", "character": "Dr. Delbert Doppler", "id": 11076, "credit_id": "52fe44d1c3a36847f80abdf1", "cast_id": 2, "profile_path": "/96qVGJhtV6tQkXmJVmbi6BBk1Ll.jpg", "order": 1}, {"name": "Emma Thompson", "character": "Captain Amelia", "id": 7056, "credit_id": "52fe44d1c3a36847f80abdf5", "cast_id": 3, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 2}, {"name": "Roscoe Lee Browne", "character": "Mr. Arrow", "id": 24368, "credit_id": "52fe44d1c3a36847f80abdf9", "cast_id": 4, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 3}, {"name": "Martin Short", "character": "B.E.N.", "id": 519, "credit_id": "52fe44d1c3a36847f80abdfd", "cast_id": 5, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 4}, {"name": "Laurie Metcalf", "character": "Sarah Hawkins", "id": 12133, "credit_id": "52fe44d1c3a36847f80abe01", "cast_id": 6, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 5}, {"name": "Patrick McGoohan", "character": "Billy Bones", "id": 2463, "credit_id": "52fe44d1c3a36847f80abe05", "cast_id": 7, "profile_path": "/5lDTsSa2iMZDdiAOq9SMEq8bFGk.jpg", "order": 6}, {"name": "Michael Wincott", "character": "Scroop", "id": 7486, "credit_id": "52fe44d1c3a36847f80abe09", "cast_id": 8, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 7}, {"name": "Brian Murray", "character": "John Silver", "id": 56618, "credit_id": "52fe44d1c3a36847f80abe55", "cast_id": 21, "profile_path": "/bNRA2o9EGVfT3cEWCFm8f0rUjFK.jpg", "order": 8}, {"name": "Corey Burton", "character": "Onus", "id": 35219, "credit_id": "548d4de3c3a36820c5003c33", "cast_id": 23, "profile_path": "/2YzqhrgSpWqm8lxZoyIR4F0nusM.jpg", "order": 10}, {"name": "Dane A. Davis", "character": "Morph", "id": 9349, "credit_id": "548d4e2b92514122f9003c0e", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Tony Jay", "character": "Narrator", "id": 65598, "credit_id": "548d4e549251415568001566", "cast_id": 25, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 12}, {"name": "Austin Majors", "character": "Young Jim", "id": 1398839, "credit_id": "548d4e74c3a36820ba003799", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Michael McShane", "character": "Hands", "id": 8316, "credit_id": "548d4e9ac3a3681d4b0016d2", "cast_id": 27, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 14}, {"name": "Jack Angel", "character": "Additional Voice", "id": 19545, "credit_id": "548d4eebc3a36820b8003e79", "cast_id": 28, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 15}], "directors": [{"name": "Ron Clements", "department": "Directing", "job": "Director", "credit_id": "52fe44d1c3a36847f80abe0f", "profile_path": "/lakkEixaHuVflUy5nkqeKI7LMT.jpg", "id": 15810}, {"name": "John Musker", "department": "Directing", "job": "Director", "credit_id": "52fe44d1c3a36847f80abe15", "profile_path": "/jQCExCN0TcjRkv2EbnbIDH7ycfR.jpg", "id": 15811}], "vote_average": 6.8, "runtime": 95}, "4951": {"poster_path": "/Kd5OkBc6GyUa1tIpxYUHLpyE2t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53478166, "overview": "Bianca, a tenth grader has never gone on a date, but she isn't allowed to go out with boys until her older sister gets a boyfriend. The problem is, Kat rubs nearly everyone the wrong way. But Bianca and the guy she has her eye on, Joey, are eager, so Joey fixes Kat up with Patrick, a new kid in town just bitter enough for Kat.", "video": false, "id": 4951, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "10 Things I Hate About You", "tagline": "How do I loathe thee? Let me count the ways.", "vote_count": 385, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0147800", "adult": false, "backdrop_path": "/ds4P3jbSleMr9z9rAlZfDqRttKi.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Mad Chance", "id": 1757}, {"name": "Jaret Entertainment", "id": 1783}], "release_date": "1999-03-30", "popularity": 1.08110960470637, "original_title": "10 Things I Hate About You", "budget": 16000000, "cast": [{"name": "Heath Ledger", "character": "Patrick Verona", "id": 1810, "credit_id": "52fe43e6c3a36847f80772cb", "cast_id": 2, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 0}, {"name": "Julia Stiles", "character": "Kat Stratford", "id": 12041, "credit_id": "52fe43e6c3a36847f80772cf", "cast_id": 3, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 1}, {"name": "Joseph Gordon-Levitt", "character": "Cameron James", "id": 24045, "credit_id": "52fe43e6c3a36847f8077321", "cast_id": 17, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 2}, {"name": "Larisa Oleynik", "character": "Bianca Stratford", "id": 40978, "credit_id": "52fe43e6c3a36847f8077325", "cast_id": 18, "profile_path": "/qhRcTWcXykI29zsuEC4po563sJC.jpg", "order": 3}, {"name": "David Krumholtz", "character": "Michael", "id": 38582, "credit_id": "52fe43e6c3a36847f8077329", "cast_id": 19, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 4}, {"name": "Andrew Keegan", "character": "Joey Donner", "id": 40979, "credit_id": "52fe43e6c3a36847f807732d", "cast_id": 20, "profile_path": "/3GNxQcRNySLlO25wcPuwnxuPv3f.jpg", "order": 5}, {"name": "Susan May Pratt", "character": "Mandella", "id": 40980, "credit_id": "52fe43e6c3a36847f8077331", "cast_id": 21, "profile_path": "/iIHOYjPPhHgqcClshtYrJn93ngb.jpg", "order": 6}, {"name": "Gabrielle Union", "character": "Chastity", "id": 17773, "credit_id": "52fe43e6c3a36847f8077335", "cast_id": 22, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 7}, {"name": "Larry Miller", "character": "Walter Stratford", "id": 1211, "credit_id": "52fe43e6c3a36847f8077339", "cast_id": 23, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 8}, {"name": "Daryl Mitchell", "character": "Mr. Morgan", "id": 15028, "credit_id": "52fe43e6c3a36847f807733d", "cast_id": 24, "profile_path": "/mSrPd1XH1akZtDXsBXN8m0wvluG.jpg", "order": 9}, {"name": "Allison Janney", "character": "Ms. Perky", "id": 19, "credit_id": "52fe43e6c3a36847f8077341", "cast_id": 25, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 10}, {"name": "David Leisure", "character": "Mr. Chapin", "id": 24521, "credit_id": "52fe43e6c3a36847f8077345", "cast_id": 26, "profile_path": "/rEyz16UwSZWoYahJw78Pg4BxLjv.jpg", "order": 11}, {"name": "Kyle Cease", "character": "Bogie Lowenstien", "id": 40981, "credit_id": "52fe43e6c3a36847f8077349", "cast_id": 27, "profile_path": "/fcVmEbnYzgkFLqrUsBIitXzWJlz.jpg", "order": 12}, {"name": "Greg Jackson", "character": "Scruvy", "id": 40982, "credit_id": "52fe43e6c3a36847f807734d", "cast_id": 28, "profile_path": null, "order": 13}, {"name": "Terence Heuston", "character": "Derek", "id": 1144823, "credit_id": "54f92cf1c3a36878e1000ba1", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Cameron Fraser", "character": "Trevor", "id": 1435471, "credit_id": "54f932c6c3a36878d2000b7d", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Eric Riedmann", "character": "Audio Visual Guy", "id": 1435472, "credit_id": "54f932ed925141439f000a6e", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Quinn Maixner", "character": "Beautiful Jock", "id": 1435473, "credit_id": "54f9330ac3a36878dc000a29", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Demegio Kimbrough", "character": "Coffee Kid #1", "id": 1435474, "credit_id": "54f93329c3a36878e6000adf", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Todd Butler", "character": "Coffee Kid #2", "id": 1435475, "credit_id": "54f933619251416fab000796", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Dennis Mosley", "character": "Cohort", "id": 1435476, "credit_id": "54f93384c3a36878d800087f", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Bianca Kajlich", "character": "Coffee Girl", "id": 69616, "credit_id": "54f935e9c3a3683c5500077a", "cast_id": 36, "profile_path": "/7eKTyl55sYtYen9Ky7DQGLMhOnC.jpg", "order": 21}, {"name": "Nick Vukelic", "character": "Drugged Out Loser", "id": 1435477, "credit_id": "54f9360e9251414390000a8e", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Ben Laurance", "character": "Wimpy Loser (as Benjamin Laurance)", "id": 1435478, "credit_id": "54f9362f9251416fab0007fc", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Aidan Kennedy", "character": "Laughing Loser", "id": 1435479, "credit_id": "54f9364b9251414a06000a5b", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Jelani Quinn", "character": "Crying Loser", "id": 1435480, "credit_id": "54f937d1c3a3687f8b000a36", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Jesse Dyer", "character": "Screaming Loser", "id": 1435483, "credit_id": "54f937e89251414392000b2b", "cast_id": 41, "profile_path": null, "order": 26}, {"name": "Aaron Therol", "character": "Detention Student", "id": 1435484, "credit_id": "54f938c0925141438d000ad6", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Carlos Lac\u00e1mara", "character": "Bartender", "id": 1212247, "credit_id": "54f9d6d2c3a36878dc001adf", "cast_id": 43, "profile_path": "/mf5a9afrahmA2bOwgfaJVjDrzpJ.jpg", "order": 28}, {"name": "Joshua Thorpe", "character": "Jock", "id": 1435704, "credit_id": "54f9d6f19251416fab0018ac", "cast_id": 44, "profile_path": null, "order": 29}, {"name": "J.R. Johnson", "character": "Mba Guy at Party", "id": 1435705, "credit_id": "54f9d717925141438d001a77", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Wendy Gottlieb", "character": "Heather", "id": 1435707, "credit_id": "54f9d733925141438d001a7d", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Brian Hood", "character": "Clem", "id": 1435708, "credit_id": "54f9d74dc3a3683c55001a1c", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Travis Muller", "character": "Cowboy", "id": 1435709, "credit_id": "54f9d774c3a3683c55001a22", "cast_id": 48, "profile_path": null, "order": 33}, {"name": "Ari Karczag", "character": "Kissing Guy", "id": 165215, "credit_id": "54f9d7b8c3a36878dc001aff", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Laura Kenny", "character": "Judith", "id": 163002, "credit_id": "54f9d7ebc3a3687f8b001a4b", "cast_id": 50, "profile_path": "/nSKGdbGXTM21odLcQNzZhsxRpfE.jpg", "order": 35}, {"name": "Alice Evans", "character": "Perky Girl", "id": 1435710, "credit_id": "54f9d817c3a36878e1001e9d", "cast_id": 51, "profile_path": null, "order": 36}, {"name": "Jesper Inglis", "character": "Buckaroo Bartender", "id": 1275938, "credit_id": "54f9d856c3a36878d2001e1b", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Nick Brown", "character": "Biker", "id": 1435716, "credit_id": "54f9d8a9925141439f001b8b", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Monique Powell", "character": "Save Ferris Singer", "id": 1435717, "credit_id": "54f9d8c8c3a36878d800172c", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Brian Mashburn", "character": "Save Ferris Singer", "id": 1435718, "credit_id": "54f9d8e6c3a36878e6001c9a", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Kay Hanley", "character": "Letters To Cleo Singer", "id": 1238557, "credit_id": "54f9d9419251414392001c6d", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Michael Eisenstein", "character": "Letters To Cleo Singer", "id": 227721, "credit_id": "54f9dba7c3a36878dc001b7d", "cast_id": 57, "profile_path": null, "order": 42}, {"name": "Michelle Babin", "character": "Girl in Night Club (uncredited)", "id": 1435738, "credit_id": "54f9dbd6925141439f001bf0", "cast_id": 58, "profile_path": null, "order": 43}, {"name": "Tim Bennett", "character": "School Administrator (uncredited)", "id": 1435739, "credit_id": "54f9dc23c3a3683c55001ac3", "cast_id": 59, "profile_path": null, "order": 44}, {"name": "Shelsie Blake", "character": "Bookstore Patron (uncredited)", "id": 1435757, "credit_id": "54f9e011925141439a001d7b", "cast_id": 60, "profile_path": null, "order": 45}, {"name": "Gil Junger", "character": "Teacher (uncredited)", "id": 40243, "credit_id": "54f9e1bbc3a36878e6001dc6", "cast_id": 61, "profile_path": null, "order": 46}, {"name": "Daniel Kountz", "character": "Admirer #1 (uncredited)", "id": 157041, "credit_id": "54f9e405c3a36878e1001fe4", "cast_id": 62, "profile_path": null, "order": 47}, {"name": "Alisa Mackay", "character": "Coffee Girl #2 (uncredited)", "id": 1109241, "credit_id": "54f9e491925141439a001e12", "cast_id": 63, "profile_path": null, "order": 48}, {"name": "Katy Magnuson", "character": "Beautiful Girl (uncredited)", "id": 803392, "credit_id": "54f9e5b99251411c4500000e", "cast_id": 64, "profile_path": null, "order": 49}, {"name": "Amber Matthews", "character": "Club Dancer #1 (uncredited)", "id": 1435774, "credit_id": "54f9e6699251411c5100001c", "cast_id": 65, "profile_path": null, "order": 50}, {"name": "Maher McClung", "character": "Frisbee Thrower (uncredited)", "id": 1435775, "credit_id": "54f9e6899251411c4d000015", "cast_id": 66, "profile_path": null, "order": 51}, {"name": "Joshua Mosley", "character": "Cohort (uncredited)", "id": 1356969, "credit_id": "54f9e6dac3a368578d00001f", "cast_id": 67, "profile_path": null, "order": 52}, {"name": "Bridget O'Neill", "character": "Beautiful Girl (uncredited)", "id": 1435778, "credit_id": "54f9e7c4c3a3685799000034", "cast_id": 68, "profile_path": null, "order": 53}, {"name": "Tommy Snider", "character": "Student (uncredited)", "id": 204419, "credit_id": "54f9e8ffc3a368578d000072", "cast_id": 69, "profile_path": null, "order": 54}, {"name": "Jay Zorich", "character": "Roland / High School Security Cop (uncredited)", "id": 1435785, "credit_id": "54f9e9239251411c4d000061", "cast_id": 70, "profile_path": null, "order": 55}], "directors": [{"name": "Gil Junger", "department": "Directing", "job": "Director", "credit_id": "52fe43e6c3a36847f80772c7", "profile_path": null, "id": 40243}], "vote_average": 6.7, "runtime": 97}, "4953": {"poster_path": "/sJxRxjFc3CkWeySDDnITRu4JigA.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.", "video": false, "id": 4953, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Be Kind Rewind", "tagline": "You name it, we shoot it.", "vote_count": 97, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0799934", "adult": false, "backdrop_path": "/4jydtNkMFAe1l983NdYrsSdORcG.jpg", "production_companies": [{"name": "Partizan", "id": 1784}, {"name": "New Line Cinema", "id": 12}, {"name": "Focus Features", "id": 10146}], "release_date": "2008-01-20", "popularity": 0.566250272586296, "original_title": "Be Kind Rewind", "budget": 0, "cast": [{"name": "Jack Black", "character": "Jerry", "id": 70851, "credit_id": "52fe43e7c3a36847f807740f", "cast_id": 12, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 0}, {"name": "Mos Def", "character": "Mike", "id": 4239, "credit_id": "52fe43e7c3a36847f807741b", "cast_id": 15, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 1}, {"name": "Danny Glover", "character": "Mr. Fletcher", "id": 2047, "credit_id": "52fe43e7c3a36847f807741f", "cast_id": 16, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Mia Farrow", "character": "Ms. Kimberley", "id": 12021, "credit_id": "52fe43e7c3a36847f8077413", "cast_id": 13, "profile_path": "/bA86Uqgi8mLumV9oLxaoMf9873Y.jpg", "order": 3}, {"name": "Marcus Carl Franklin", "character": "James", "id": 34111, "credit_id": "52fe43e7c3a36847f8077417", "cast_id": 14, "profile_path": "/x0l67ha9vDO6NcRJ9UmKx20ZoOU.jpg", "order": 4}, {"name": "Arjay Smith", "character": "Manny", "id": 6070, "credit_id": "52fe43e7c3a36847f8077423", "cast_id": 17, "profile_path": "/pf1myo7qI3MTTPmmCg61BKqBayp.jpg", "order": 5}, {"name": "Paul Dinello", "character": "Mr. Rooney", "id": 40250, "credit_id": "52fe43e7c3a36847f8077427", "cast_id": 18, "profile_path": "/up1gsViuqIqS0w5idWSFWFm2a18.jpg", "order": 6}, {"name": "Melonie Diaz", "character": "Alma", "id": 53936, "credit_id": "52fe43e7c3a36847f807742b", "cast_id": 19, "profile_path": "/wBhAieZSMyJVO9Z0Bm6FTfqVq11.jpg", "order": 7}, {"name": "Sigourney Weaver", "character": "Ms. Lawson", "id": 10205, "credit_id": "52fe43e7c3a36847f807742f", "cast_id": 20, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 8}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a36847f80773cf", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 6.0, "runtime": 102}, "37724": {"poster_path": "/uVALAeLEMGMf3oYpvdVi4uuaNOo.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1108694081, "overview": "When Bond's latest assignment goes gravely wrong and agents around the world are exposed, MI6 is attacked forcing M to relocate the agency. These events cause her authority and position to be challenged by Gareth Mallory (Ralph Fiennes), the new Chairman of the Intelligence and Security Committee. With MI6 now compromised from both inside and out, M is left with one ally she can trust: Bond. 007 takes to the shadows - aided only by field agent, Eve (Naomie Harris) - following a trail to the mysterious Silva (Javier Bardem), whose lethal and hidden motives have yet to reveal themselves.", "video": false, "id": 37724, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Skyfall", "tagline": "Think on your sins.", "vote_count": 4457, "homepage": "http://www.skyfall-movie.com", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1074638", "adult": false, "backdrop_path": "/dpo7WDOhWtACY6oflrqxutbhg81.jpg", "production_companies": [{"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "B23", "id": 23288}], "release_date": "2012-11-09", "popularity": 2.39603542988148, "original_title": "Skyfall", "budget": 200000000, "cast": [{"name": "Daniel Craig", "character": "James Bond", "id": 8784, "credit_id": "52fe46689251416c91053743", "cast_id": 1, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe46689251416c91053783", "cast_id": 29, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Silva", "id": 3810, "credit_id": "52fe46689251416c91053759", "cast_id": 12, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Ralph Fiennes", "character": "Gareth Mallory / M", "id": 5469, "credit_id": "52fe46689251416c9105375d", "cast_id": 13, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 3}, {"name": "Naomie Harris", "character": "Eve", "id": 2038, "credit_id": "52fe46689251416c91053765", "cast_id": 15, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 4}, {"name": "B\u00e9r\u00e9nice Marlohe", "character": "S\u00e9v\u00e9rine", "id": 1030261, "credit_id": "52fe46689251416c9105376d", "cast_id": 19, "profile_path": "/1CoWFdgdjDTqXVpcSeVqgywuADL.jpg", "order": 5}, {"name": "Albert Finney", "character": "Kincade", "id": 3926, "credit_id": "52fe46689251416c91053761", "cast_id": 14, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 6}, {"name": "Ben Whishaw", "character": "Q", "id": 17064, "credit_id": "52fe46689251416c91053771", "cast_id": 20, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 7}, {"name": "Rory Kinnear", "character": "Bill Tanner", "id": 139549, "credit_id": "52fe46689251416c91053779", "cast_id": 22, "profile_path": "/wfBmg2FVEDQCCFnjiTC3lhg1THP.jpg", "order": 8}, {"name": "Ola Rapace", "character": "Patrice", "id": 11045, "credit_id": "52fe46689251416c91053775", "cast_id": 21, "profile_path": "/9erOklGX0LeL5iJxBK8M7Y9Pyvo.jpg", "order": 9}, {"name": "Helen McCrory", "character": "Clair Dowar", "id": 15737, "credit_id": "52fe46689251416c91053769", "cast_id": 17, "profile_path": "/yuC7SZvd89sSntzTKClTgBuEDvh.jpg", "order": 10}, {"name": "Nicholas Woodeson", "character": "Doctor Hall", "id": 118617, "credit_id": "52fe46689251416c910537b1", "cast_id": 39, "profile_path": "/sRsmR64H54aYYm2nh7Ra9IssxeT.jpg", "order": 11}, {"name": "Bill Buckhurst", "character": "Ronson", "id": 206273, "credit_id": "52fe46689251416c910537b5", "cast_id": 40, "profile_path": "/d5rB0TpWesSAhPOV31xosBsZr5s.jpg", "order": 12}, {"name": "Elize du Toit", "character": "Vanessa", "id": 100242, "credit_id": "52fe46689251416c910537b9", "cast_id": 41, "profile_path": "/gQr2v5rXQuOzh4Fuvws5qgzlqc6.jpg", "order": 13}, {"name": "Ian Bonar", "character": "MI6 Technician", "id": 122556, "credit_id": "52fe46689251416c910537bd", "cast_id": 42, "profile_path": "/fdOlDwibOLpK7mCcNiKu6DlP0Ah.jpg", "order": 14}, {"name": "Tonia Sotiropoulou", "character": "Bond's Lover", "id": 1024234, "credit_id": "5404f85cc3a36816af002678", "cast_id": 53, "profile_path": "/d0Izdl4VEHHIrsRwxPXNeGVUYHk.jpg", "order": 15}, {"name": "Wolf Blitzer", "character": "CNN News Anchor", "id": 1224993, "credit_id": "5404f894c3a36816af00267a", "cast_id": 54, "profile_path": null, "order": 16}], "directors": [{"name": "Sam Mendes", "department": "Directing", "job": "Director", "credit_id": "52fe46689251416c91053755", "profile_path": "/9ZHO6I45789LzOGjAV6qRRoZ4X.jpg", "id": 39}], "vote_average": 6.6, "runtime": 143}, "13150": {"poster_path": "/uHMPqBVR0lP6kGgF6TPcK7uD3eX.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31148328, "overview": "A saga centered on a multi-generational family of New York City Police officers. The family's moral codes are tested when Ray Tierney, investigates a case that reveals an incendiary police corruption scandal involving his own brother-in-law. For Ray, the truth is revelatory, a Pandora's Box that threatens to upend not only the Tierney legacy but the entire NYPD.", "video": false, "id": 13150, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Pride and Glory", "tagline": "Truth. Honor. Loyalty. Family. What are you willing to sacrifice?", "vote_count": 54, "homepage": "http://www.prideandglorymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0482572", "adult": false, "backdrop_path": "/aD2JAIGYnvBB9bCa6i9c7DlpJtb.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Solaris Film", "id": 1001}, {"name": "O'Connor Brothers", "id": 12066}, {"name": "Avery Pix", "id": 1565}, {"name": "Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 1 KG", "id": 12067}], "release_date": "2008-09-09", "popularity": 0.728873829742143, "original_title": "Pride and Glory", "budget": 30000000, "cast": [{"name": "Edward Norton", "character": "Ray Tierney", "id": 819, "credit_id": "52fe45459251416c75050ced", "cast_id": 1, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 0}, {"name": "Jon Voight", "character": "Francis Tierney, Sr.", "id": 10127, "credit_id": "52fe45459251416c75050cf1", "cast_id": 2, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Colin Farrell", "character": "Jimmy Eagan", "id": 72466, "credit_id": "52fe45459251416c75050cf5", "cast_id": 3, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 2}, {"name": "Noah Emmerich", "character": "Francis Tierney, Jr.", "id": 11315, "credit_id": "52fe45459251416c75050d6b", "cast_id": 24, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 3}, {"name": "Jennifer Ehle", "character": "Abby Tierney", "id": 49971, "credit_id": "52fe45459251416c75050d6f", "cast_id": 25, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 4}, {"name": "John Ortiz", "character": "Ruben Santiago", "id": 40543, "credit_id": "52fe45459251416c75050d73", "cast_id": 26, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 5}, {"name": "Frank Grillo", "character": "Eddie Carbone", "id": 81685, "credit_id": "52fe45459251416c75050d77", "cast_id": 27, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 6}, {"name": "Shea Whigham", "character": "Kenny Dugan", "id": 74242, "credit_id": "52fe45459251416c75050d7b", "cast_id": 28, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 7}, {"name": "Lake Bell", "character": "Megan Egan", "id": 25703, "credit_id": "52fe45459251416c75050d7f", "cast_id": 29, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 8}, {"name": "Carmen Ejogo", "character": "Tasha", "id": 37158, "credit_id": "52fe45459251416c75050d83", "cast_id": 30, "profile_path": "/dM1aLxViwbPrNZEUTDdVPOlsxB6.jpg", "order": 9}, {"name": "Manny P\u00e9rez", "character": "Coco Dominguez", "id": 72983, "credit_id": "52fe45459251416c75050d87", "cast_id": 31, "profile_path": "/hIM6huonhBNgxwfKc7t23pW60Ns.jpg", "order": 10}, {"name": "Wayne Duvall", "character": "Bill Avery", "id": 1470, "credit_id": "52fe45459251416c75050d8b", "cast_id": 32, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 11}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Angel Tezo", "id": 72985, "credit_id": "52fe45459251416c75050d8f", "cast_id": 33, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 12}, {"name": "Rick Gonzalez", "character": "Eladio Casado", "id": 53184, "credit_id": "52fe45459251416c75050d93", "cast_id": 34, "profile_path": "/goh90mno2bYXjOIncrJWoNYbhXy.jpg", "order": 13}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Carlos Bragon", "id": 1018947, "credit_id": "52fe45459251416c75050d97", "cast_id": 35, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 14}, {"name": "Leslie Denniston", "character": "Maureen Tierney", "id": 164517, "credit_id": "52fe45459251416c75050d9b", "cast_id": 36, "profile_path": "/urfEB6ksyjdb58SDnqAx8vBtsti.jpg", "order": 15}, {"name": "Hannah Riggins", "character": "Caitlin Tierney", "id": 1125868, "credit_id": "52fe45459251416c75050d9f", "cast_id": 37, "profile_path": null, "order": 16}], "directors": [{"name": "Gavin O'Connor", "department": "Directing", "job": "Director", "credit_id": "52fe45459251416c75050cfb", "profile_path": "/ySCeCte0VOVT9jWft6TwBKGU9KM.jpg", "id": 77003}], "vote_average": 6.2, "runtime": 130}, "4959": {"poster_path": "/4Cq33D6KmbrWHfgnb9qTu6Cj8Cx.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60161391, "overview": "An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.", "video": false, "id": 4959, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The International", "tagline": "Is your money making a killing?", "vote_count": 99, "homepage": "http://www.sonypictures.com/movies/theinternational/site/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0963178", "adult": false, "backdrop_path": "/bADjtiEq2kQ75UHkdnIe13CftsX.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Mosaic Media Group", "id": 748}, {"name": "X-Filme Creative Pool", "id": 1972}], "release_date": "2009-02-03", "popularity": 0.896663362002822, "original_title": "The International", "budget": 50000000, "cast": [{"name": "Clive Owen", "character": "Louis Salinger", "id": 2296, "credit_id": "52fe43e7c3a36847f8077727", "cast_id": 3, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Naomi Watts", "character": "Eleanor Whitman", "id": 3489, "credit_id": "52fe43e7c3a36847f807772b", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 1}, {"name": "Armin Mueller-Stahl", "character": "Wilhelm Wexler", "id": 12647, "credit_id": "52fe43e7c3a36847f807772f", "cast_id": 5, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 2}, {"name": "Ulrich Thomsen", "character": "Jonas Skarssen", "id": 4455, "credit_id": "52fe43e7c3a36847f8077733", "cast_id": 6, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 3}, {"name": "Br\u00edan F. O'Byrne", "character": "The Consultant", "id": 31713, "credit_id": "52fe43e7c3a36847f8077737", "cast_id": 7, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 4}, {"name": "Patrick Baladi", "character": "Martin White", "id": 43019, "credit_id": "52fe43e7c3a36847f807773b", "cast_id": 9, "profile_path": "/5l8DPsvvTvvSb3F52eXnyn8Xf8F.jpg", "order": 6}, {"name": "Jay Villiers", "character": "Francis Ehames", "id": 47589, "credit_id": "52fe43e7c3a36847f807773f", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Michel Voletti", "character": "Viktor Haas", "id": 68056, "credit_id": "52fe43e7c3a36847f8077743", "cast_id": 11, "profile_path": "/aJjGibLEhGc5x27NnxOSSgIyc9l.jpg", "order": 8}, {"name": "James Rebhorn", "character": "New York D.A.", "id": 8986, "credit_id": "52fe43e7c3a36847f8077747", "cast_id": 12, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 9}, {"name": "Jack McGee", "character": "Detective Bernie Ward", "id": 10489, "credit_id": "52fe43e7c3a36847f807774b", "cast_id": 13, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 10}, {"name": "Ben Whishaw", "character": "Rene Antall", "id": 17064, "credit_id": "52fe43e7c3a36847f807774f", "cast_id": 14, "profile_path": "/3WEK2CBsiNgzxKxadhzMN3PB3VQ.jpg", "order": 11}], "directors": [{"name": "Tom Tykwer", "department": "Directing", "job": "Director", "credit_id": "52fe43e7c3a36847f807771d", "profile_path": "/5zVWVVcCmp9X5BF8L1XAjqRgzMd.jpg", "id": 1071}], "vote_average": 5.7, "runtime": 118}, "13156": {"poster_path": "/tMH0MShJOceh77Vg30OECnFcEzY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"Secondhand Lions\" follows the comedic adventures of an introverted boy left on the doorstep of a pair of reluctant, eccentric great-uncles, whose exotic remembrances stir the boy's spirit and re-ignite the men's lives.", "video": false, "id": 13156, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Secondhand Lions", "tagline": "An impressive story that will touch your heart.", "vote_count": 133, "homepage": "http://www.newline.com/properties/secondhandlions.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327137", "adult": false, "backdrop_path": "/3ELbQ4Mcv9wB3WDSieChdedIkmc.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2003-09-19", "popularity": 0.465107199454763, "original_title": "Secondhand Lions", "budget": 0, "cast": [{"name": "Michael Caine", "character": "Garth", "id": 3895, "credit_id": "52fe45469251416c75050f63", "cast_id": 1, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 0}, {"name": "Robert Duvall", "character": "Hub", "id": 3087, "credit_id": "52fe45469251416c75050f67", "cast_id": 2, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 1}, {"name": "Haley Joel Osment", "character": "Walter", "id": 9640, "credit_id": "52fe45469251416c75050f6b", "cast_id": 3, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 2}, {"name": "Kyra Sedgwick", "character": "Mae", "id": 26467, "credit_id": "52fe45469251416c75050f6f", "cast_id": 4, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 3}, {"name": "Mitchel Musso", "character": "Boy", "id": 51583, "credit_id": "52fe45469251416c75050f7f", "cast_id": 7, "profile_path": "/rMmElJ9TwAFfEAW3Q1ET7Ioi0Fp.jpg", "order": 4}, {"name": "Marc Musso", "character": "Boy", "id": 173994, "credit_id": "52fe45469251416c75050f83", "cast_id": 8, "profile_path": "/7xCOF2nuCF9znLU7evdPHWMxU9f.jpg", "order": 5}, {"name": "Daniel Brooks", "character": "Sheik's Great Grandson", "id": 1110882, "credit_id": "52fe45469251416c75050f87", "cast_id": 9, "profile_path": null, "order": 6}], "directors": [{"name": "Tim McCanlies", "department": "Directing", "job": "Director", "credit_id": "52fe45469251416c75050f75", "profile_path": null, "id": 77919}], "vote_average": 6.7, "runtime": 111}, "37735": {"poster_path": "/1pgPO3OfSm2inpODMqg2RNmLW90.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74952305, "overview": "After a little white lie about losing her virginity gets out, a clean cut high school girl sees her life paralleling Hester Prynne's in \"The Scarlet Letter,\" which she is currently studying in school - until she decides to use the rumor mill to advance her social and financial standing.", "video": false, "id": 37735, "genres": [{"id": 35, "name": "Comedy"}], "title": "Easy A", "tagline": "The rumour-filled totally false account of how I ruined my flawless reputation.", "vote_count": 701, "homepage": "http://letsnotandsaywedid.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1282140", "adult": false, "backdrop_path": "/2X3f8asEJ6sYZrlMTliKic6pFoM.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Olive Bridge Entertainment", "id": 7291}], "release_date": "2010-09-10", "popularity": 1.20275603872216, "original_title": "Easy A", "budget": 8000000, "cast": [{"name": "Emma Stone", "character": "Olive Penderghast", "id": 54693, "credit_id": "52fe466a9251416c91053ba9", "cast_id": 1, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 0}, {"name": "Stanley Tucci", "character": "Dill Penderghast", "id": 2283, "credit_id": "52fe466a9251416c91053bad", "cast_id": 2, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 1}, {"name": "Amanda Bynes", "character": "Marianne", "id": 29220, "credit_id": "52fe466a9251416c91053bb1", "cast_id": 3, "profile_path": "/s0dGdLgukzuex9urPJPBGepFGgm.jpg", "order": 2}, {"name": "Cam Gigandet", "character": "Micah", "id": 55086, "credit_id": "52fe466a9251416c91053bb5", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 3}, {"name": "Lisa Kudrow", "character": "Mrs. Griffith", "id": 14406, "credit_id": "52fe466a9251416c91053bb9", "cast_id": 5, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 4}, {"name": "Malcolm McDowell", "character": "Principal Gibbons", "id": 56890, "credit_id": "52fe466a9251416c91053bbd", "cast_id": 6, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 5}, {"name": "Penn Badgley", "character": "Woodchuck Todd", "id": 110927, "credit_id": "52fe466a9251416c91053bc1", "cast_id": 7, "profile_path": "/key2cKLsZYLyV03b8NMdmvJjBe9.jpg", "order": 6}, {"name": "Patricia Clarkson", "character": "Rosemary Penderghast", "id": 1276, "credit_id": "52fe466a9251416c91053bc5", "cast_id": 8, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 7}, {"name": "Dan Byrd", "character": "Brandon", "id": 59283, "credit_id": "52fe466a9251416c91053bc9", "cast_id": 9, "profile_path": "/j68CP63mC20q25IFSJvvRP3TGlm.jpg", "order": 8}, {"name": "Thomas Haden Church", "character": "Mr. Griffith", "id": 19159, "credit_id": "52fe466a9251416c91053bcd", "cast_id": 10, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 9}, {"name": "Aly Michalka", "character": "Rhiannon", "id": 90033, "credit_id": "52fe466a9251416c91053bd1", "cast_id": 11, "profile_path": "/n2KOL8FfW7mOGp6vYopkn9hFBJs.jpg", "order": 10}, {"name": "Juliette Goglia", "character": "Eighth Grade Olive", "id": 118420, "credit_id": "52fe466a9251416c91053bd5", "cast_id": 12, "profile_path": "/s0Lp6SmVUH0JNF5JUc0VWuJRYrz.jpg", "order": 11}, {"name": "Johanna Braddy", "character": "Melanie", "id": 95038, "credit_id": "52fe466a9251416c91053bd9", "cast_id": 13, "profile_path": "/a2Q4TJu13J8UVUPb5wgJKhIgJgK.jpg", "order": 12}, {"name": "Stacey Travis", "character": "Marianne's Mom", "id": 31714, "credit_id": "52fe466a9251416c91053bdd", "cast_id": 14, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 13}, {"name": "Jake Sandvig", "character": "Anson", "id": 71725, "credit_id": "52fe466a9251416c91053be1", "cast_id": 15, "profile_path": "/hjQEYDL6GBgiMg5FDpMvi2KmqpF.jpg", "order": 14}], "directors": [{"name": "Will Gluck", "department": "Directing", "job": "Director", "credit_id": "52fe466a9251416c91053be7", "profile_path": "/67A9XvitqSXL4w6PftXkG15L0C.jpg", "id": 82511}], "vote_average": 6.4, "runtime": 92}, "4257": {"poster_path": "/lfvDTZOi023sfpFfNkfVRD1oJei.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 178262620, "overview": "Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien \"Tr-iPods\" are invading the world and she has to uncover the secret in order to stop them.", "video": false, "id": 4257, "genres": [{"id": 35, "name": "Comedy"}], "title": "Scary Movie 4", "tagline": "Bury the grudge. Burn the village. See the saw.", "vote_count": 155, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rpzbedRGnWd5YzZZmgG6H076AzJ.jpg", "poster_path": "/8ds74cRhyAza3WcDVT8rZycwSC9.jpg", "id": 4246, "name": "Scary Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0362120", "adult": false, "backdrop_path": "/sGZJfQpK4RVnPOr2RE2bPJROZVn.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2006-04-13", "popularity": 0.557140778252537, "original_title": "Scary Movie 4", "budget": 45000000, "cast": [{"name": "Anna Faris", "character": "Cindy", "id": 1772, "credit_id": "52fe43b6c3a36847f8069e69", "cast_id": 10, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 0}, {"name": "Regina Hall", "character": "Brenda", "id": 35705, "credit_id": "52fe43b6c3a36847f8069e6d", "cast_id": 11, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 1}, {"name": "Craig Bierko", "character": "Tom Ryan", "id": 14886, "credit_id": "52fe43b6c3a36847f8069e71", "cast_id": 12, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 2}, {"name": "Bill Pullman", "character": "Henry Hale", "id": 8984, "credit_id": "52fe43b6c3a36847f8069e75", "cast_id": 13, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 3}, {"name": "Anthony Anderson", "character": "Mahalik", "id": 18471, "credit_id": "52fe43b6c3a36847f8069e79", "cast_id": 14, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 4}, {"name": "Leslie Nielsen", "character": "Pr\u00e4s. Baxter Harris", "id": 7633, "credit_id": "52fe43b6c3a36847f8069e7d", "cast_id": 15, "profile_path": "/cZpuTfE1j63tCEXoSL2A7KZjk5d.jpg", "order": 5}, {"name": "Carmen Electra", "character": "Holly", "id": 28639, "credit_id": "52fe43b6c3a36847f8069e81", "cast_id": 16, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 6}, {"name": "Shaquille O'Neal", "character": "Shaq", "id": 35806, "credit_id": "52fe43b6c3a36847f8069e85", "cast_id": 17, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 7}, {"name": "DeRay Davis", "character": "Marvin", "id": 11827, "credit_id": "52fe43b6c3a36847f8069e8f", "cast_id": 19, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 8}, {"name": "Michael Madsen", "character": "Oliver", "id": 147, "credit_id": "52fe43b6c3a36847f8069e93", "cast_id": 20, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 9}, {"name": "Alex Bruhanski", "character": "Tiffany's Trainer", "id": 18895, "credit_id": "52fe43b6c3a36847f8069e97", "cast_id": 21, "profile_path": "/pAHBAReA4y1zWfbKyYlCGROK7qj.jpg", "order": 10}, {"name": "Molly Shannon", "character": "Marilyn", "id": 28640, "credit_id": "52fe43b6c3a36847f8069e9b", "cast_id": 22, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 11}, {"name": "Cloris Leachman", "character": "Ms. Norris", "id": 9599, "credit_id": "52fe43b6c3a36847f8069e9f", "cast_id": 23, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 12}, {"name": "Kevin Hart", "character": "CJ", "id": 55638, "credit_id": "52fe43b6c3a36847f8069ea3", "cast_id": 24, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 13}, {"name": "Beau Mirchoff", "character": "Robbie Ryan", "id": 117525, "credit_id": "52fe43b6c3a36847f8069ea7", "cast_id": 25, "profile_path": "/pL7zdESU9X7xKdMXxtrISR9pJfh.jpg", "order": 14}], "directors": [{"name": "David Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe43b6c3a36847f8069e8b", "profile_path": "/zgHTcYMBLQqKKCAQGty9DJYuQjB.jpg", "id": 12987}], "vote_average": 5.5, "runtime": 83}, "78698": {"poster_path": "/zwiJQveWjxsD11QPe2aQBNXbg7j.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24719215, "overview": "Based on an inspiring true story, a small-town news reporter (Krasinski) and a Greenpeace volunteer (Barrymore) enlist the help of rival superpowers to save three majestic gray whales trapped under the ice of the Arctic Circle. \u2018Big Miracle\u2019 is adapted from the nonfiction book \u2018Freeing the Whales: How the Media Created the World\u2019s Greatest Non-Event\u2019 by Tom Rose.", "video": false, "id": 78698, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Big Miracle", "tagline": "A family of whales trapped beneath the ice. One unforgettable rescue.", "vote_count": 51, "homepage": "http://www.everybodyloveswhales.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430615", "adult": false, "backdrop_path": "/arvPVenA1K6vMYXJIYfeHqBf2IR.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2012-02-02", "popularity": 0.483796369146212, "original_title": "Big Miracle", "budget": 40000000, "cast": [{"name": "Drew Barrymore", "character": "Rachel Kramer", "id": 69597, "credit_id": "52fe49aec3a368484e1389b3", "cast_id": 1, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "John Krasinski", "character": "Adam Carlson", "id": 17697, "credit_id": "52fe49aec3a368484e1389b7", "cast_id": 2, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 1}, {"name": "Kristen Bell", "character": "Jill Jerard", "id": 40462, "credit_id": "52fe49aec3a368484e1389c1", "cast_id": 4, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 2}, {"name": "Vinessa Shaw", "character": "Kelly Meyers", "id": 5025, "credit_id": "52fe49aec3a368484e1389c5", "cast_id": 5, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 3}, {"name": "Dermot Mulroney", "character": "Colonel Scott Boyer", "id": 20212, "credit_id": "52fe49aec3a368484e1389c9", "cast_id": 6, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 4}, {"name": "Ted Danson", "character": "J. W. McGraw", "id": 12836, "credit_id": "52fe49aec3a368484e1389cd", "cast_id": 7, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 5}, {"name": "Kathy Baker", "character": "Ruth McGraw", "id": 1907, "credit_id": "52fe49aec3a368484e1389d1", "cast_id": 8, "profile_path": "/tdjkqEkmTttWAjY8ZTaq8PmBO7O.jpg", "order": 6}, {"name": "Tim Blake Nelson", "character": "Pat Lafaytette", "id": 1462, "credit_id": "52fe49aec3a368484e1389d5", "cast_id": 9, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 7}, {"name": "Stephen Root", "character": "Governor Haskell", "id": 17401, "credit_id": "52fe49aec3a368484e1389d9", "cast_id": 10, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 8}, {"name": "John Michael Higgins", "character": "Wes Handrick", "id": 8265, "credit_id": "52fe49aec3a368484e1389dd", "cast_id": 11, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 9}, {"name": "Bruce Altman", "character": "Chief of Staff", "id": 27545, "credit_id": "52fe49aec3a368484e1389e1", "cast_id": 12, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 10}], "directors": [{"name": "Ken Kwapis", "department": "Directing", "job": "Director", "credit_id": "52fe49aec3a368484e1389bd", "profile_path": "/oPjor2KnZcSXmtude62KT62yBsu.jpg", "id": 29009}], "vote_average": 6.4, "runtime": 107}, "9021": {"poster_path": "/uCtvhRSmwgG8AGsRNtaaxWtzgRx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139225854, "overview": "Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.", "video": false, "id": 9021, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Santa Clause 2", "tagline": "What's Christmas Fun without some Reindeer Games?", "vote_count": 84, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1h8iA6i2DpPhsHC65nUB2voVnm5.jpg", "id": 53159, "name": "The Santa Clause Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0304669", "adult": false, "backdrop_path": "/mwbooc3CGllnnaDU3CLuLSc9XV7.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2002-10-31", "popularity": 0.869371984543454, "original_title": "The Santa Clause 2", "budget": 60000000, "cast": [{"name": "Tim Allen", "character": "Scott Calvin / Santa Clause", "id": 12898, "credit_id": "52fe44d2c3a36847f80abfe7", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Elizabeth Mitchell", "character": "Principal Carol Newman", "id": 31167, "credit_id": "52fe44d2c3a36847f80abfeb", "cast_id": 2, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 1}, {"name": "David Krumholtz", "character": "Bernard, der Elf", "id": 38582, "credit_id": "52fe44d2c3a36847f80abfef", "cast_id": 3, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 2}, {"name": "Eric Lloyd", "character": "Charlie Calvin", "id": 27564, "credit_id": "52fe44d2c3a36847f80abff3", "cast_id": 4, "profile_path": "/qemoEBG9JeAerb3RsXUOa2peZxQ.jpg", "order": 3}, {"name": "Spencer Breslin", "character": "Curtis", "id": 35654, "credit_id": "52fe44d2c3a36847f80abff7", "cast_id": 5, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 4}, {"name": "Judge Reinhold", "character": "Dr. Neil Miller", "id": 777, "credit_id": "52fe44d2c3a36847f80abffb", "cast_id": 6, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 5}, {"name": "Wendy Crewson", "character": "Laura Calvin Miller", "id": 19957, "credit_id": "52fe44d2c3a36847f80abfff", "cast_id": 7, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 6}, {"name": "Kevin Pollak", "character": "Cupid", "id": 7166, "credit_id": "52fe44d2c3a36847f80ac05b", "cast_id": 24, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 8}, {"name": "Aisha Tyler", "character": "Mother Nature", "id": 38674, "credit_id": "53f58907c3a36833fa003032", "cast_id": 25, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 9}, {"name": "Molly Shannon", "character": "Tracy", "id": 28640, "credit_id": "53f589180e0a267f80004438", "cast_id": 26, "profile_path": "/11Ade9QKtTSwUeRNH9cVCWoaeQj.jpg", "order": 10}, {"name": "Fred Keating", "character": "Security Guard", "id": 963962, "credit_id": "55032349925141282f003eca", "cast_id": 27, "profile_path": null, "order": 11}], "directors": [{"name": "Michael Lembeck", "department": "Directing", "job": "Director", "credit_id": "52fe44d2c3a36847f80ac009", "profile_path": "/nSksRzDoUToxdS2MqIeV7LGAiVk.jpg", "id": 15045}], "vote_average": 5.3, "runtime": 104}, "4977": {"poster_path": "/aWLRuxeZL4d8Up2UvLW5EBYdSDl.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 944915, "overview": "When a machine that allows therapists to enter their patient's dreams is stolen, all hell breaks loose. Only a young female therapist can stop it: Paprika.", "video": false, "id": 4977, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Paprika", "tagline": "This is your brain on anime.", "vote_count": 101, "homepage": "http://www.sonyclassics.com/paprika/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0851578", "adult": false, "backdrop_path": "/5hWaV1JrT0GLA8Yfnh8DYwQC72X.jpg", "production_companies": [{"name": "Madhouse", "id": 4288}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Paprika Film Partners", "id": 12050}], "release_date": "2006-10-21", "popularity": 0.28947727210288, "original_title": "Papurika", "budget": 0, "cast": [{"name": "Megumi Hayashibara", "character": "Paprika / Atsuko", "id": 40325, "credit_id": "52fe43eac3a36847f8078103", "cast_id": 1, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 0}, {"name": "T\u014dru Furuya", "character": "Tokita Kohsaku", "id": 40327, "credit_id": "52fe43eac3a36847f8078107", "cast_id": 3, "profile_path": "/9fuENGDDd6C30IudobBV8uh2XaK.jpg", "order": 1}, {"name": "K\u00f4ichi Yamadera", "character": "Osanai Morio", "id": 40328, "credit_id": "52fe43eac3a36847f807810b", "cast_id": 4, "profile_path": "/veXKxw0J6MhxfY2943AULManWtG.jpg", "order": 2}, {"name": "Katsunosuke Hori", "character": "Shima Tora-taroh", "id": 40329, "credit_id": "52fe43eac3a36847f807810f", "cast_id": 5, "profile_path": "/e6B1DN8CVSZuAJoHTKbpeOxuiKD.jpg", "order": 3}, {"name": "Toru Emori", "character": "Inui Sei-jiroh", "id": 40330, "credit_id": "52fe43eac3a36847f8078113", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Daisuke Sakaguchi", "character": "Himuro Kei", "id": 40331, "credit_id": "52fe43eac3a36847f8078117", "cast_id": 7, "profile_path": "/bvx8D4L8ng5ti6Cy03OP5kqjqlH.jpg", "order": 5}, {"name": "Mitsuo Iwata", "character": "Tsumura Yasushi", "id": 1678, "credit_id": "52fe43eac3a36847f807811b", "cast_id": 8, "profile_path": "/uiCp6G7TR3kHtxQQNNLiVEiXadU.jpg", "order": 6}, {"name": "Rikako Aikawa", "character": "Kakimoto Nobue", "id": 40332, "credit_id": "52fe43eac3a36847f807811f", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Satoshi Kon", "character": "Jin-nai", "id": 40333, "credit_id": "52fe43eac3a36847f8078123", "cast_id": 10, "profile_path": "/oaI0Lsfscb47WBY3FCKaGr2MXoN.jpg", "order": 8}, {"name": "Yasutaka Tsutsui", "character": "Kuga", "id": 40334, "credit_id": "52fe43eac3a36847f8078127", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Akio \u00d4tsuka", "character": "Kogawa Toshimi", "id": 40451, "credit_id": "52fe43eac3a36847f807817f", "cast_id": 29, "profile_path": "/33uwf6AtjtqckGH6kUfr8GGDqJu.jpg", "order": 10}], "directors": [{"name": "Satoshi Kon", "department": "Directing", "job": "Director", "credit_id": "52fe43eac3a36847f8078133", "profile_path": "/oaI0Lsfscb47WBY3FCKaGr2MXoN.jpg", "id": 40333}], "vote_average": 7.3, "runtime": 90}, "4978": {"poster_path": "/glZNfxN4cef0pJeD08xru7ZVWlI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84542002, "overview": "A young mouse named Fievel and his family decide to migrate to America, a \"land without cats,\" at the turn of the 20th century. But somehow, Fievel ends up in the New World alone and must fend off not only the felines he never thought he'd have to deal with again but also the loneliness of being away from home.", "video": false, "id": 4978, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "An American Tail", "tagline": "Meet Fievel. In his search to find his family, he discovered America.", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/spEFy5eHaNuINNHhwtCWKy1bBiY.jpg", "id": 8783, "name": "Fievel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090633", "adult": false, "backdrop_path": "/uVU17cW0utb2y73Ol7LjeY4zEXf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1986-11-21", "popularity": 0.781495328742876, "original_title": "An American Tail", "budget": 0, "cast": [{"name": "Phillip Glasser", "character": "Fievel Mousekewitz", "id": 40348, "credit_id": "52fe43eac3a36847f80781f3", "cast_id": 11, "profile_path": null, "order": 0}, {"name": "Dom DeLuise", "character": "Tiger", "id": 6844, "credit_id": "52fe43eac3a36847f80781f7", "cast_id": 12, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 1}, {"name": "Nehemiah Persoff", "character": "Papa Mousekewitz", "id": 3160, "credit_id": "52fe43eac3a36847f80781fb", "cast_id": 13, "profile_path": "/nA4ouztzxQvhfFkGejiveBQJxng.jpg", "order": 2}, {"name": "Erica Yohn", "character": "Mama Mousekewitz", "id": 40349, "credit_id": "52fe43eac3a36847f80781ff", "cast_id": 14, "profile_path": null, "order": 3}, {"name": "Amy Green", "character": "Tanya Mousekewitz", "id": 40350, "credit_id": "52fe43eac3a36847f8078203", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "John P. Finnegan", "character": "Warren T. Rat", "id": 40351, "credit_id": "52fe43eac3a36847f8078207", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Pat Musick", "character": "Tony Toponi", "id": 35349, "credit_id": "52fe43eac3a36847f807820f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Pat Musick", "character": "Tony Toponi", "id": 35349, "credit_id": "52fe43eac3a36847f807820b", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Madeline Kahn", "character": "Gussie Mausheimer", "id": 29803, "credit_id": "52fe43eac3a36847f8078213", "cast_id": 20, "profile_path": "/4VpJTYmUHJCr4Ogc4GZpmnMbKm4.jpg", "order": 8}, {"name": "Will Ryan", "character": "Digit", "id": 40352, "credit_id": "52fe43eac3a36847f8078217", "cast_id": 21, "profile_path": "/uY0oWjp7dxBEh03LpMBqApaswn.jpg", "order": 9}, {"name": "Christopher Plummer", "character": "Henri", "id": 290, "credit_id": "52fe43eac3a36847f807821b", "cast_id": 22, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 10}, {"name": "Neil Ross", "character": "Honest John", "id": 64951, "credit_id": "52fe43eac3a36847f8078231", "cast_id": 26, "profile_path": "/dgcStU8y6YccpzuLeG0U0bC5xvC.jpg", "order": 11}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe43eac3a36847f80781b9", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}], "vote_average": 6.7, "runtime": 80}, "4982": {"poster_path": "/tBcUIbC38e43ZKlZxqQRx9WUIsW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 266465037, "overview": "Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Based on a true story.", "video": false, "id": 4982, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "American Gangster", "tagline": "There are two sides to the American dream.", "vote_count": 378, "homepage": "http://www.americangangster.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765429", "adult": false, "backdrop_path": "/uSWzHRan14Kxe7AgbA43CSN1fXw.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2007-11-02", "popularity": 1.15411311716116, "original_title": "American Gangster", "budget": 100000000, "cast": [{"name": "Denzel Washington", "character": "Frank Lucas", "id": 5292, "credit_id": "52fe43ebc3a36847f80783cf", "cast_id": 12, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Russell Crowe", "character": "Richie Roberts", "id": 934, "credit_id": "52fe43ebc3a36847f80783cb", "cast_id": 11, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 1}, {"name": "Chiwetel Ejiofor", "character": "Huey Lucas", "id": 5294, "credit_id": "52fe43ebc3a36847f80783d3", "cast_id": 13, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 2}, {"name": "Josh Brolin", "character": "Detectice Trupo", "id": 16851, "credit_id": "52fe43ebc3a36847f80783d7", "cast_id": 14, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 3}, {"name": "Lymari Nadal", "character": "Eva", "id": 40376, "credit_id": "52fe43ebc3a36847f80783db", "cast_id": 15, "profile_path": "/nBQ5uRZqWsu3zTDfrmzjb3R6DYT.jpg", "order": 4}, {"name": "Ted Levine", "character": "Lou Toback", "id": 15854, "credit_id": "52fe43ebc3a36847f80783df", "cast_id": 16, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 5}, {"name": "Roger Guenveur Smith", "character": "Nate", "id": 40377, "credit_id": "52fe43ebc3a36847f80783e3", "cast_id": 17, "profile_path": "/c6yUnUcbNxCUKAjucLlh6VHzmCd.jpg", "order": 6}, {"name": "John Hawkes", "character": "Freddie Spearman", "id": 16861, "credit_id": "52fe43ebc3a36847f80783e7", "cast_id": 18, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 7}, {"name": "RZA", "character": "Moses Jones", "id": 150, "credit_id": "52fe43ebc3a36847f80783eb", "cast_id": 19, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 8}, {"name": "Yul Vazquez", "character": "Alfonso Abruzzo", "id": 75604, "credit_id": "52fe43ebc3a36847f80783ff", "cast_id": 24, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 9}, {"name": "Malcolm Goodwin", "character": "Jimmy Zee", "id": 57997, "credit_id": "52fe43ebc3a36847f8078403", "cast_id": 25, "profile_path": "/igRMW5VUmv52D6wsD03s08oRWHT.jpg", "order": 10}, {"name": "Ruby Dee", "character": "Mama Lucas", "id": 15532, "credit_id": "52fe43ebc3a36847f807840b", "cast_id": 28, "profile_path": "/hadVr5kdeqlorRmjaMhHAutTbAm.jpg", "order": 11}, {"name": "Ruben Santiago-Hudson", "character": "Doc", "id": 31839, "credit_id": "52fe43ebc3a36847f8078407", "cast_id": 27, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 12}, {"name": "Carla Gugino", "character": "Laurie Roberts", "id": 17832, "credit_id": "52fe43ebc3a36847f80783ef", "cast_id": 20, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 13}, {"name": "Skyler Fortgang", "character": "Michael Roberts", "id": 1135538, "credit_id": "52fe43ebc3a36847f807842f", "cast_id": 48, "profile_path": "/gvWqsaCETvqNc4Lue7dIBvh1sGJ.jpg", "order": 14}, {"name": "John Ortiz", "character": "Javier J. Rivera", "id": 40543, "credit_id": "52fe43ebc3a36847f807840f", "cast_id": 29, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 15}, {"name": "Cuba Gooding Jr.", "character": "Nicky Barnes", "id": 9777, "credit_id": "52fe43ebc3a36847f80783fb", "cast_id": 23, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 16}, {"name": "Armand Assante", "character": "Dominic Cattano", "id": 23346, "credit_id": "52fe43ebc3a36847f8078413", "cast_id": 30, "profile_path": "/m9DCpe9HkIXEAp3aq1wKpmN8mih.jpg", "order": 17}, {"name": "Kathleen Garrett", "character": "Mrs. Dominic Cattano", "id": 162542, "credit_id": "52fe43ebc3a36847f8078417", "cast_id": 31, "profile_path": "/y1lZYCFkMt0694Q1qyGA85jTPc8.jpg", "order": 18}, {"name": "Joe Morton", "character": "Charlie Williams", "id": 3977, "credit_id": "52fe43ebc3a36847f807841b", "cast_id": 32, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 19}, {"name": "Ritchie Coster", "character": "Joey Sadano", "id": 13939, "credit_id": "52fe43ebc3a36847f807841f", "cast_id": 33, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 20}, {"name": "Idris Elba", "character": "Tango", "id": 17605, "credit_id": "52fe43ebc3a36847f8078423", "cast_id": 35, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 21}, {"name": "Common", "character": "Turner Lucas", "id": 4238, "credit_id": "52fe43ebc3a36847f80783f3", "cast_id": 21, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 22}, {"name": "T.I.", "character": "Stevie Lucas", "id": 76126, "credit_id": "52fe43ebc3a36847f80783f7", "cast_id": 22, "profile_path": "/ycNO8wU6H75wDDfojMCTjoxtEmt.jpg", "order": 23}, {"name": "Kevin Corrigan", "character": "Campizi", "id": 18472, "credit_id": "52fe43ebc3a36847f8078427", "cast_id": 41, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 24}, {"name": "KaDee Strickland", "character": "Richie's Attorney", "id": 20388, "credit_id": "52fe43ebc3a36847f807842b", "cast_id": 47, "profile_path": "/9E0EFvaAY0vVubogVfFtXH1LAXe.jpg", "order": 25}, {"name": "Chance Kelly", "character": "MP", "id": 17194, "credit_id": "52fe43ebc3a36847f8078439", "cast_id": 50, "profile_path": "/hUfIviyweiBZk4JKoCIKyuo6HGH.jpg", "order": 26}, {"name": "Larry Mitchell", "character": "FBI Agent", "id": 1182724, "credit_id": "55055ee7c3a36862e1002811", "cast_id": 51, "profile_path": "/iTdRRujnU2H6axxxL4iaefI3mlw.jpg", "order": 27}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe43ebc3a36847f8078391", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 7.0, "runtime": 157}, "54138": {"poster_path": "/xN3ueLKyE5uR8IrhQPvxHX8gIgE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 467365246, "overview": "When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.", "video": false, "id": 54138, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek Into Darkness", "tagline": "Earth Will Fall", "vote_count": 2360, "homepage": "http://www.startrekmovie.com/", "belongs_to_collection": {"backdrop_path": "/gWl5pN2FplE709aVtA4lakwsE6t.jpg", "poster_path": "/w2IVqa43Ge49mrY3qSaJWpyDtz6.jpg", "id": 115575, "name": "Star Trek: Alternate Reality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1408101", "adult": false, "backdrop_path": "/mZDS11lSL7WXhDOeNQUnPEkMK0L.jpg", "production_companies": [{"name": "Bad Robot", "id": 11461}, {"name": "Paramount Pictures", "id": 4}, {"name": "Kurtzman/Orci", "id": 12536}, {"name": "Skydance Productions", "id": 6277}], "release_date": "2013-05-16", "popularity": 2.65440074468945, "original_title": "Star Trek Into Darkness", "budget": 190000000, "cast": [{"name": "Chris Pine", "character": "Kirk", "id": 62064, "credit_id": "52fe488dc3a36847f816d779", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Zachary Quinto", "character": "Spock", "id": 17306, "credit_id": "52fe488dc3a36847f816d785", "cast_id": 6, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 1}, {"name": "Zoe Saldana", "character": "Uhura", "id": 8691, "credit_id": "52fe488dc3a36847f816d775", "cast_id": 1, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 2}, {"name": "Karl Urban", "character": "Bones", "id": 1372, "credit_id": "52fe488dc3a36847f816d7ab", "cast_id": 17, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 3}, {"name": "Simon Pegg", "character": "Scotty", "id": 11108, "credit_id": "52fe488dc3a36847f816d77d", "cast_id": 3, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 4}, {"name": "John Cho", "character": "Sulu", "id": 68842, "credit_id": "52fe488dc3a36847f816d789", "cast_id": 7, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 5}, {"name": "Benedict Cumberbatch", "character": "Khan", "id": 71580, "credit_id": "52fe488dc3a36847f816d7c5", "cast_id": 26, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 6}, {"name": "Anton Yelchin", "character": "Chekov", "id": 21028, "credit_id": "52fe488dc3a36847f816d781", "cast_id": 5, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 7}, {"name": "Bruce Greenwood", "character": "Pike", "id": 21089, "credit_id": "52fe488dc3a36847f816d7c1", "cast_id": 23, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 8}, {"name": "Peter Weller", "character": "Marcus", "id": 27811, "credit_id": "52fe488dc3a36847f816d7e3", "cast_id": 33, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 9}, {"name": "Alice Eve", "character": "Carol", "id": 59860, "credit_id": "52fe488dc3a36847f816d7c9", "cast_id": 27, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 10}, {"name": "Noel Clarke", "character": "Thomas Harewood", "id": 76242, "credit_id": "54691d2ceaeb816b48001896", "cast_id": 60, "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "order": 11}, {"name": "Nazneen Contractor", "character": "Rima Harewood", "id": 180997, "credit_id": "54691d62eaeb816b58001677", "cast_id": 61, "profile_path": "/7QIVzJvkWB2Ofnxr233c40iVa5A.jpg", "order": 12}, {"name": "Amanda Foreman", "character": "Ensign Brackett", "id": 13024, "credit_id": "54691d7422136e68da0015ce", "cast_id": 62, "profile_path": "/fitfsjRoC2i8YocBndcOFOuV7EU.jpg", "order": 13}, {"name": "Jay Scully", "character": "Lieutenant Chapin", "id": 60946, "credit_id": "54691dc822136e68d200174d", "cast_id": 63, "profile_path": null, "order": 14}, {"name": "Jonathan Dixon", "character": "Ensign Froman", "id": 1228940, "credit_id": "54691e04eaeb816b4b0017f2", "cast_id": 64, "profile_path": null, "order": 15}, {"name": "Aisha Hinds", "character": "Navigation Officer Darwin", "id": 1192492, "credit_id": "52fe488dc3a36847f816d7eb", "cast_id": 35, "profile_path": "/pDgm7OM9pT9rF5Q41lVVWj2cqOv.jpg", "order": 16}, {"name": "Joseph Gatt", "character": "Science Officer 0718", "id": 58508, "credit_id": "54691e75eaeb816b480018ba", "cast_id": 65, "profile_path": "/uTIhcvIEc4txrfcPcfC4dIIOzYB.jpg", "order": 17}, {"name": "Jeremy Raymond", "character": "Lead Nibiran", "id": 1051473, "credit_id": "54691ea7eaeb816b550018d8", "cast_id": 66, "profile_path": null, "order": 18}, {"name": "Tony Guma", "character": "Nibiran", "id": 178452, "credit_id": "54691ecf22136e68d2001768", "cast_id": 67, "profile_path": null, "order": 19}, {"name": "Kimberly Arland", "character": "Madeline", "id": 1271733, "credit_id": "52fe488dc3a36847f816d83d", "cast_id": 49, "profile_path": "/pcp0B5iSalHZcYRKKDuGQYcJ7z9.jpg", "order": 20}, {"name": "Sean Blakemore", "character": "Klingon", "id": 62093, "credit_id": "54691f59eaeb816b4f00175e", "cast_id": 68, "profile_path": "/hPeXz7vcBJdBIHoaTuVMcRJZeGJ.jpg", "order": 21}, {"name": "Nick E. Tarabay", "character": "Klingon", "id": 224182, "credit_id": "54691f78eaeb810173000044", "cast_id": 69, "profile_path": "/UddiJH5KLboWacFHJKfV6WwFu2.jpg", "order": 22}, {"name": "Beau Billingslea", "character": "Captain Abbot", "id": 78494, "credit_id": "54691ffa22136e68c70017c0", "cast_id": 70, "profile_path": "/3Ooz7bdkkSwwbzOs9SPXIXvGKYQ.jpg", "order": 23}, {"name": "Deep Roy", "character": "Keenser", "id": 1295, "credit_id": "5469201f22136e68d80016a9", "cast_id": 71, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 24}, {"name": "Anjini Taneja Azhar", "character": "Lucille Harewood", "id": 1110406, "credit_id": "5469206b22136e68c70017d0", "cast_id": 72, "profile_path": null, "order": 25}, {"name": "Jack Laufer", "character": "Doctor", "id": 1352682, "credit_id": "5469208aeaeb816b480018fc", "cast_id": 73, "profile_path": "/1uCBrRFkveCEsVlfkiqRtiU2FVA.jpg", "order": 26}, {"name": "Katie Cockrell", "character": "Girl", "id": 1386113, "credit_id": "5469209b22136e68c9001bce", "cast_id": 74, "profile_path": null, "order": 27}, {"name": "Kellie Cockrell", "character": "Girl", "id": 88706, "credit_id": "546920a7eaeb810173000060", "cast_id": 75, "profile_path": null, "order": 28}, {"name": "Jason Matthew Smith", "character": "Cupcake", "id": 154702, "credit_id": "546920bb22136e68c9001bd6", "cast_id": 76, "profile_path": null, "order": 29}, {"name": "Chris Hemsworth", "character": "George Kirk", "id": 74568, "credit_id": "546920d222136e68c9001bdb", "cast_id": 77, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 30}, {"name": "Jennifer Morrison", "character": "Winona Kirk", "id": 41421, "credit_id": "5469212deaeb816b430017cf", "cast_id": 78, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 31}, {"name": "Seth Ayott", "character": "U.S.S. Enterprise Shuttle Ensign", "id": 1225974, "credit_id": "5469215aeaeb816b48001910", "cast_id": 79, "profile_path": null, "order": 32}, {"name": "Marco Sanchez", "character": "Torpedo Security", "id": 62710, "credit_id": "5469218722136e68c70017f6", "cast_id": 80, "profile_path": "/xuUcvx9lwTvNR8WQUTxl2BYu1Uq.jpg", "order": 33}, {"name": "Lee Reherman", "character": "Uniformed Mercenary", "id": 119699, "credit_id": "546921b3eaeb816b580016d6", "cast_id": 81, "profile_path": "/a15OMXynrsgyvuWEWqbbVQDtBdz.jpg", "order": 34}, {"name": "Scott Lawrence", "character": "U.S.S. Vengeance Officer", "id": 42317, "credit_id": "546921fd22136e68cf0017bb", "cast_id": 82, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 35}, {"name": "Usman Ally", "character": "U.S.S. Vengeance Officer", "id": 1129806, "credit_id": "52fe488ec3a36847f816d875", "cast_id": 59, "profile_path": "/i7lGbUtxUVgyAhWiUeZpzlFTmKU.jpg", "order": 36}, {"name": "Nolan North", "character": "U.S.S. Vengeance Bridge Officer", "id": 19508, "credit_id": "5469222422136e68d5001778", "cast_id": 83, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 37}, {"name": "James Hiroyuki Liao", "character": "U.S.S. Vengeance Bridge Officer", "id": 58330, "credit_id": "5469223d22136e68c7001806", "cast_id": 84, "profile_path": "/efnKaLlUr8wRSGAsDdGa4yrbXqj.jpg", "order": 38}, {"name": "Rob Moran", "character": "U.S.S. Vengeance Ensign", "id": 162924, "credit_id": "54692254eaeb816b4b001866", "cast_id": 85, "profile_path": "/9pUDa1VOgFOA72Fcv3fxUeTnZQj.jpg", "order": 39}, {"name": "Berit Francis", "character": "Starfleet Admiral", "id": 1386119, "credit_id": "5469226a22136e68c700180e", "cast_id": 86, "profile_path": null, "order": 40}, {"name": "Akiva Goldsman", "character": "Starfleet Admiral", "id": 5575, "credit_id": "5469228feaeb816b4600180e", "cast_id": 87, "profile_path": "/smyKiXX4rAfehztrmg3lxgRAuZF.jpg", "order": 41}, {"name": "Benjamin P. Binswanger", "character": "Starfleet Admiral", "id": 1386120, "credit_id": "546922a022136e68cc001919", "cast_id": 88, "profile_path": null, "order": 42}, {"name": "Christopher Doohan", "character": "Transport Officer", "id": 1278368, "credit_id": "546922b8eaeb816b580016f1", "cast_id": 89, "profile_path": null, "order": 43}, {"name": "Andy Demetrio", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386121, "credit_id": "54692338eaeb816b46001827", "cast_id": 90, "profile_path": null, "order": 44}, {"name": "Gianna Simone", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386122, "credit_id": "54692357eaeb816b46001835", "cast_id": 91, "profile_path": null, "order": 45}, {"name": "Rene Rosado", "character": "U.S.S. Enterprise Bridge Crew", "id": 204384, "credit_id": "5469236f22136e68c9001c27", "cast_id": 92, "profile_path": "/yCl1rn1LegaRkD81GuOYS7vrIXT.jpg", "order": 46}, {"name": "Jacquelynn King", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386123, "credit_id": "54692381eaeb816b43001810", "cast_id": 93, "profile_path": null, "order": 47}, {"name": "Long Tran", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386124, "credit_id": "5469239922136e68cc001944", "cast_id": 94, "profile_path": null, "order": 48}, {"name": "Ningning Deng", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386125, "credit_id": "546923abeaeb816b4b00188f", "cast_id": 95, "profile_path": null, "order": 49}, {"name": "Jodi Johnston", "character": "U.S.S. Enterprise Bridge Crew", "id": 1386126, "credit_id": "546923b7eaeb816b4b001895", "cast_id": 96, "profile_path": null, "order": 50}, {"name": "Colleen Harris", "character": "Lady V", "id": 1386127, "credit_id": "546923d6eaeb8101730000ac", "cast_id": 97, "profile_path": null, "order": 51}, {"name": "Jeff Chase", "character": "U.S.S. Enterprise Security", "id": 56448, "credit_id": "54692403eaeb816b4800194d", "cast_id": 98, "profile_path": "/x7W1nwnsITcPdODJ5OEP0HF71BH.jpg", "order": 52}, {"name": "Monisola Akiwowo", "character": "U.S.S. Enterprise Nurse", "id": 1386128, "credit_id": "5469248d22136e68cf001808", "cast_id": 99, "profile_path": null, "order": 53}, {"name": "Paul K. Daniel", "character": "Shuttle Pilot", "id": 1386129, "credit_id": "5469249beaeb816b55001999", "cast_id": 100, "profile_path": null, "order": 54}, {"name": "Ser'Darius Blain", "character": "U.S.S. Enterprise Red Shirt", "id": 1160181, "credit_id": "546924c622136e68cf001811", "cast_id": 101, "profile_path": "/qpHplsNLribEDcrnHzC8EvQ8FSz.jpg", "order": 55}, {"name": "Heather Langenkamp", "character": "Moto", "id": 5141, "credit_id": "52fe488dc3a36847f816d7e7", "cast_id": 34, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 56}, {"name": "David C. Waite", "character": "U.S.S. Enterprise Crew", "id": 1386130, "credit_id": "546924feeaeb816b550019a5", "cast_id": 102, "profile_path": null, "order": 57}, {"name": "Melissa Paulo", "character": "Bar Girl", "id": 1384191, "credit_id": "54692512eaeb816b48001970", "cast_id": 103, "profile_path": "/wdotSdtf3PdVR66zeuXw48cyNEk.jpg", "order": 58}, {"name": "Cynthia Addai-Robinson", "character": "San Francisco Woman", "id": 182272, "credit_id": "54692532eaeb816b43001842", "cast_id": 104, "profile_path": "/sVHW4dPZFiLjtYUnxmennc47d0l.jpg", "order": 59}, {"name": "Drew Grey", "character": "San Francisco Bar Patron", "id": 1386131, "credit_id": "5469254222136e68c7001860", "cast_id": 105, "profile_path": null, "order": 60}, {"name": "Douglas Weng", "character": "U.S.S. Vengeance Security", "id": 1386132, "credit_id": "5469255a22136e68c9001c5e", "cast_id": 106, "profile_path": null, "order": 61}, {"name": "Charlie Haugk", "character": "San Francisco Resident", "id": 1386134, "credit_id": "546925feeaeb816b4f00181b", "cast_id": 107, "profile_path": null, "order": 62}, {"name": "Max Chernov", "character": "San Francisco Resident", "id": 1275519, "credit_id": "5469261122136e68d800175a", "cast_id": 108, "profile_path": null, "order": 63}, {"name": "Marc Primiani", "character": "San Francisco Resident", "id": 1386136, "credit_id": "5469262222136e68d8001760", "cast_id": 109, "profile_path": null, "order": 64}, {"name": "Jesper Inglis", "character": "San Francisco Resident", "id": 1275938, "credit_id": "54692638eaeb816b58001757", "cast_id": 110, "profile_path": null, "order": 65}, {"name": "Jacob Rhodes", "character": "Nibiru Child", "id": 1386138, "credit_id": "54692649eaeb816b4b0018ea", "cast_id": 111, "profile_path": null, "order": 66}, {"name": "Kentucky Rhodes", "character": "Nibiru Child", "id": 1386140, "credit_id": "5469265e22136e68cc00198b", "cast_id": 112, "profile_path": null, "order": 67}, {"name": "Anthony Wilson", "character": "Shaku", "id": 1386141, "credit_id": "54692690eaeb816b4300186f", "cast_id": 113, "profile_path": null, "order": 68}, {"name": "Eric Greitens", "character": "Starfleet Ceremonial Guard", "id": 1386144, "credit_id": "546926cceaeb816b480019a0", "cast_id": 114, "profile_path": null, "order": 69}, {"name": "Melissa Steinman", "character": "Starfleet Ceremonial Guard", "id": 1386145, "credit_id": "546926d7eaeb816b4f001841", "cast_id": 115, "profile_path": null, "order": 70}, {"name": "Adam McCann", "character": "Starfleet Ceremonial Guard", "id": 1386146, "credit_id": "546926e122136e68d8001774", "cast_id": 116, "profile_path": null, "order": 71}, {"name": "Jon Orvasky", "character": "Starfleet Ceremonial Guard", "id": 1386147, "credit_id": "546926f2eaeb8101730000f9", "cast_id": 117, "profile_path": null, "order": 72}, {"name": "Gerald W. Abrams", "character": "Starfleet Memorial Admiral", "id": 181879, "credit_id": "5469272beaeb81017300010f", "cast_id": 118, "profile_path": null, "order": 73}, {"name": "James McGrath", "character": "Starfleet Memorial Admiral", "id": 1275520, "credit_id": "5469274e22136e68d8001788", "cast_id": 119, "profile_path": null, "order": 74}, {"name": "Brian T. Delaney", "character": "Additional Voices (voice)", "id": 1386148, "credit_id": "546927d322136e68cc0019b4", "cast_id": 120, "profile_path": null, "order": 75}, {"name": "Arlen Escarpeta", "character": "Additional Voices (voice)", "id": 78432, "credit_id": "546927ee22136e68c9001cbb", "cast_id": 121, "profile_path": "/j6UsveHGfxcnohafoCDAVqQBLpC.jpg", "order": 76}, {"name": "Chris Gardner", "character": "Additional Voices (voice)", "id": 1386149, "credit_id": "54692826eaeb816b4f001863", "cast_id": 122, "profile_path": null, "order": 77}, {"name": "Joe Hanna", "character": "Additional Voices (voice)", "id": 1386150, "credit_id": "5469283322136e68cf001861", "cast_id": 123, "profile_path": null, "order": 78}, {"name": "David Acord", "character": "Additional Voices (voice)", "id": 1235786, "credit_id": "5469285022136e68c9001cc4", "cast_id": 124, "profile_path": null, "order": 79}, {"name": "Joe Moses", "character": "Additional Voices (voice)", "id": 1277452, "credit_id": "5469288722136e68d5001835", "cast_id": 125, "profile_path": null, "order": 80}, {"name": "Kevin Michael Richardson", "character": "Additional Voices (voice)", "id": 24362, "credit_id": "5469289c22136e68c70018b4", "cast_id": 126, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 81}, {"name": "David Sobolov", "character": "Additional Voices (voice)", "id": 1219841, "credit_id": "546928b7eaeb816b4b001930", "cast_id": 127, "profile_path": null, "order": 82}, {"name": "Matthew Wood", "character": "Additional Voices (voice)", "id": 71536, "credit_id": "546928cdeaeb816b55001a0f", "cast_id": 128, "profile_path": "/oB9wVbEIg8fjY3ulDKjKsGn2A55.jpg", "order": 83}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "5469291422136e68c70018c4", "cast_id": 129, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 84}, {"name": "Kiff VandenHeuvel", "character": "Additional Voices (voice)", "id": 1141368, "credit_id": "5469293b22136e68c9001cdf", "cast_id": 130, "profile_path": null, "order": 85}, {"name": "Julianne Buescher", "character": "Additional Voices (voice)", "id": 135818, "credit_id": "5469295deaeb816b460018cd", "cast_id": 131, "profile_path": null, "order": 86}, {"name": "Ellie Newlands", "character": "Additional Voices (voice)", "id": 1386151, "credit_id": "5469296d22136e68c9001ce9", "cast_id": 132, "profile_path": null, "order": 87}, {"name": "Candice Renee", "character": "Additional Voices (voice)", "id": 1386152, "credit_id": "5469297b22136e68da0016f4", "cast_id": 133, "profile_path": null, "order": 88}, {"name": "Audrey Wasilewski", "character": "Additional Voices (voice)", "id": 86170, "credit_id": "546929c822136e68cc0019df", "cast_id": 134, "profile_path": "/pAIt9Pxioss1pz7IwAPsyMiEuM2.jpg", "order": 89}, {"name": "Emily Towers", "character": "Additional Voices (voice)", "id": 1386153, "credit_id": "546929db22136e68da001702", "cast_id": 135, "profile_path": null, "order": 90}, {"name": "Gina Hirsch", "character": "Additional Voices (voice)", "id": 1386154, "credit_id": "546929ea22136e68c9001cf8", "cast_id": 136, "profile_path": null, "order": 91}, {"name": "Bill Hader", "character": "Additional Voices (voice)", "id": 19278, "credit_id": "546929fb22136e68d500185d", "cast_id": 137, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 92}, {"name": "Leonard Nimoy", "character": "Spock Prime", "id": 1749, "credit_id": "52fe488dc3a36847f816d86b", "cast_id": 57, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 93}, {"name": "Tom Archdeacon", "character": "Ensign Spyke (uncredited)", "id": 931939, "credit_id": "52fe488dc3a36847f816d7d1", "cast_id": 29, "profile_path": "/iIKMFjmHkUHso6Nx4yWB2UG3zK.jpg", "order": 94}, {"name": "Jon Lee Brody", "character": "U.S.S. Enterprise Security (uncredited)", "id": 1161711, "credit_id": "52fe488dc3a36847f816d7d5", "cast_id": 30, "profile_path": "/u1agQE1nYgt2LOijksYJMPYxpKh.jpg", "order": 95}, {"name": "Britanni Johnson", "character": "NYU Nurse (uncredited)", "id": 1039680, "credit_id": "52fe488dc3a36847f816d7cd", "cast_id": 28, "profile_path": "/hUwMmgVBaXDFy7VkkWtdfky7e67.jpg", "order": 96}, {"name": "Hiram A. Murray", "character": "Bar Patron (uncredited)", "id": 1161712, "credit_id": "52fe488dc3a36847f816d7d9", "cast_id": 31, "profile_path": "/qBT4jNXD9O2KQ74LtqRQ6V8Qm0l.jpg", "order": 97}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe488dc3a36847f816d7b1", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 7.5, "runtime": 132}, "13179": {"poster_path": "/wQYXOKYLImMk79eceoqtuK9Jre8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Journey into the secret world of Pixie Hollow and hear Tinker Bell speak for the very first time as the astonishing story of Disney's most famous fairy is finally revealed in the all-new motion picture \"Tinker Bell.\"", "video": false, "id": 13179, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Tinker Bell", "tagline": "Enter the world of fairies.", "vote_count": 74, "homepage": "http://disney.go.com/fairies/movies/about.html", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nTEOjP7JpFa9VZlawzqNBy4g5KY.jpg", "id": 315595, "name": "Tinker Bell Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0823671", "adult": false, "backdrop_path": "/j7r0HwdQibJYPxmStqqucqWaX7u.jpg", "production_companies": [{"name": "Prana Studios", "id": 18713}, {"name": "Prana Animation Studios", "id": 22135}, {"name": "DisneyToon Studios", "id": 5391}], "release_date": "2008-10-27", "popularity": 1.22834659100902, "original_title": "Tinker Bell", "budget": 48000000, "cast": [{"name": "Mae Whitman", "character": "Tinker Bell (voice)", "id": 52404, "credit_id": "52fe45499251416c75051655", "cast_id": 1, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 0}, {"name": "Kristin Chenoweth", "character": "Rosetta (voice)", "id": 52775, "credit_id": "52fe45499251416c75051659", "cast_id": 2, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 1}, {"name": "Raven-Symon\u00e9", "character": "Iridessa (voice)", "id": 66896, "credit_id": "52fe45499251416c7505165d", "cast_id": 3, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 2}, {"name": "Lucy Liu", "character": "Silvermist (voice)", "id": 140, "credit_id": "52fe45499251416c75051661", "cast_id": 4, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 3}, {"name": "America Ferrera", "character": "Fawn (voice)", "id": 59174, "credit_id": "52fe45499251416c75051665", "cast_id": 5, "profile_path": "/eroMfNgAINcVBYxs6sfAbT6KcYS.jpg", "order": 4}, {"name": "Jane Horrocks", "character": "Fairy Mary (voice)", "id": 34902, "credit_id": "52fe45499251416c75051669", "cast_id": 6, "profile_path": "/tiUXkMzigoM5seW3knIyzugcGIz.jpg", "order": 5}, {"name": "Jesse McCartney", "character": "Terence (voice)", "id": 49915, "credit_id": "52fe45499251416c7505166d", "cast_id": 7, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 6}, {"name": "Jeff Bennett", "character": "Clank (voice)", "id": 34982, "credit_id": "52fe45499251416c75051671", "cast_id": 8, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 7}, {"name": "Pamela Adlon", "character": "Vidia (voice)", "id": 21063, "credit_id": "52fe45499251416c75051675", "cast_id": 10, "profile_path": "/8zunKeNg9XTpmDQjokeEi3K6hvG.jpg", "order": 9}, {"name": "Anjelica Huston", "character": "Queen Clarion (voice)", "id": 5657, "credit_id": "52fe45499251416c75051679", "cast_id": 11, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 10}, {"name": "Loreena McKennitt", "character": "Narrator", "id": 78310, "credit_id": "52fe45499251416c7505167d", "cast_id": 12, "profile_path": "/7WcxxXVP5qgRSrGps7nfw9lMz9i.jpg", "order": 11}, {"name": "Steve Valentine", "character": "Minister of Spring (voice)", "id": 78311, "credit_id": "52fe45499251416c75051681", "cast_id": 13, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 12}, {"name": "Kathy Najimy", "character": "Minister of Summer (voice)", "id": 11074, "credit_id": "52fe45499251416c75051685", "cast_id": 14, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 13}, {"name": "Richard Portnow", "character": "Minister of Autumn (voice)", "id": 4255, "credit_id": "52fe454a9251416c75051689", "cast_id": 15, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 14}, {"name": "Gail Borges", "character": "Minister of Winter (voice)", "id": 78312, "credit_id": "52fe454a9251416c7505168d", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "America Young", "character": "Wendy (voice)", "id": 63333, "credit_id": "52fe454a9251416c75051691", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Kathryn Cressida", "character": "Mrs. Darling (voice)", "id": 78315, "credit_id": "52fe454a9251416c75051695", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Bob Bergen", "character": "Fireflies (voice)", "id": 78317, "credit_id": "52fe454a9251416c75051699", "cast_id": 20, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 18}, {"name": "Rob Paulsen", "character": "Bobble (voice)", "id": 43125, "credit_id": "52fe454a9251416c7505169d", "cast_id": 21, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 19}], "directors": [{"name": "Bradley Raymond", "department": "Directing", "job": "Director", "credit_id": "52fe454a9251416c750516a3", "profile_path": "/eFJSeWaJrduYGwRNtvQXNMKONA7.jpg", "id": 69416}], "vote_average": 6.6, "runtime": 78}, "13183": {"poster_path": "/jXggcKzlyxj7yMBUIsqwiaaEtD5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 185258983, "overview": "In a gritty and alternate 1985 the glory days of costumed vigilantes have been brought to a close by a government crackdown, but after one of the masked veterans is brutally murdered an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so uncover a sinister plot that puts all of humanity in grave danger.", "video": false, "id": 13183, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Watchmen", "tagline": "Justice is coming to all of us. No matter what we do.", "vote_count": 1046, "homepage": "http://www.watchmenmovie.co.uk/intl/br/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0409459", "adult": false, "backdrop_path": "/ok6Ws65nDSLAIKkKgIjqyM5OGCc.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DC Comics", "id": 429}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2009-03-05", "popularity": 1.54616501321606, "original_title": "Watchmen", "budget": 130000000, "cast": [{"name": "Malin Akerman", "character": "Laurie Juspeczyk / Silk Spectre", "id": 50463, "credit_id": "52fe454a9251416c75051819", "cast_id": 2, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 0}, {"name": "Billy Crudup", "character": "Jon Osterman / Dr. Manhattan", "id": 8289, "credit_id": "52fe454a9251416c75051825", "cast_id": 5, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 1}, {"name": "Carla Gugino", "character": "Sally Jupiter / Silk Spectre", "id": 17832, "credit_id": "52fe454a9251416c75051815", "cast_id": 1, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 2}, {"name": "Jeffrey Dean Morgan", "character": "Edward Blake / The Comedian", "id": 47296, "credit_id": "52fe454a9251416c7505181d", "cast_id": 3, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 3}, {"name": "Patrick Wilson", "character": "Dan Dreiberg / Nite Owl II", "id": 17178, "credit_id": "52fe454a9251416c75051821", "cast_id": 4, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 4}, {"name": "Jackie Earle Haley", "character": "Walter Kovacs / Rorschach", "id": 17183, "credit_id": "52fe454a9251416c75051829", "cast_id": 6, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 5}, {"name": "Matthew Goode", "character": "Adrian Veidt / Ozymandias", "id": 1247, "credit_id": "52fe454a9251416c750518ab", "cast_id": 28, "profile_path": "/bSGvvLVbgpIFGLKj2CGeojsqOaH.jpg", "order": 6}, {"name": "Matt Frewer", "character": "Edgar Jacobi / Moloch the Mystic", "id": 40009, "credit_id": "52fe454a9251416c750518af", "cast_id": 29, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 7}, {"name": "Stephen McHattie", "character": "Hollis Mason / Nite Owl", "id": 230, "credit_id": "52fe454a9251416c750518b3", "cast_id": 30, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 8}, {"name": "Laura Mennell", "character": "Janey Slater", "id": 79343, "credit_id": "52fe454a9251416c750518b7", "cast_id": 31, "profile_path": "/2wk93WP1T1YZNNkn3bwEhc1tXwZ.jpg", "order": 9}, {"name": "Rob LaBelle", "character": "Wally Weaver", "id": 42708, "credit_id": "52fe454a9251416c750518bb", "cast_id": 32, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 10}, {"name": "Gary Houston", "character": "John McLaughlin", "id": 3909, "credit_id": "52fe454a9251416c750518bf", "cast_id": 33, "profile_path": "/sHnbRD3qic7ndwrYB3qRRPSiEFE.jpg", "order": 11}, {"name": "James M. Connor", "character": "Pat Buchanan (James Michael Connor)", "id": 79344, "credit_id": "52fe454a9251416c750518c3", "cast_id": 34, "profile_path": "/sImsxA3mlT4KaECf9hHO80icB1u.jpg", "order": 12}, {"name": "Mary Ann Burger", "character": "Eleanor Clift", "id": 79345, "credit_id": "52fe454a9251416c750518c7", "cast_id": 35, "profile_path": "/2T84gimfpP1tHD52N8vm52SJllX.jpg", "order": 13}, {"name": "John Shaw", "character": "Doug Roth", "id": 79346, "credit_id": "52fe454b9251416c750518cb", "cast_id": 36, "profile_path": "/r5ZeKicyshv5qFBqR4OiHEfNzwP.jpg", "order": 14}, {"name": "Robert Wisden", "character": "Richard Nixon", "id": 37432, "credit_id": "52fe454b9251416c750518cf", "cast_id": 37, "profile_path": "/pytxV426R5R712DOGTtFb8J1a5g.jpg", "order": 15}, {"name": "Jerry Wasserman", "character": "Detective Fine", "id": 21091, "credit_id": "52fe454b9251416c750518d3", "cast_id": 38, "profile_path": "/wNIZZXmI0LMnf2231auSExQz7FT.jpg", "order": 16}, {"name": "Don Thompson", "character": "Detective Gallagher", "id": 56749, "credit_id": "52fe454b9251416c750518d7", "cast_id": 39, "profile_path": "/gw4gG6uN4IItV0OeAWYFftmxvRn.jpg", "order": 17}, {"name": "Frank Novak", "character": "Henry Kissinger", "id": 46930, "credit_id": "52fe454b9251416c750518db", "cast_id": 40, "profile_path": "/qD6p4ZqXU5HmX1h2qTL4B43dMfc.jpg", "order": 18}, {"name": "Sean Allan", "character": "Norad General #1", "id": 60612, "credit_id": "52fe454b9251416c750518df", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "Ron Fassler", "character": "Ted Koppel", "id": 66661, "credit_id": "52fe454b9251416c750518e3", "cast_id": 42, "profile_path": "/s0lxSKUnCJOlXQl2aCPg0DrAHb.jpg", "order": 20}, {"name": "Stephanie Belding", "character": "Janet Black", "id": 20180, "credit_id": "52fe454b9251416c750518e7", "cast_id": 43, "profile_path": "/uH66JXFzOQNn29hylhJAm9Ir0mo.jpg", "order": 21}, {"name": "Chris Burns", "character": "Dumb Thug", "id": 79347, "credit_id": "52fe454b9251416c750518eb", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Nhi Do", "character": "Vietnamese Girl", "id": 79348, "credit_id": "52fe454b9251416c750518ef", "cast_id": 45, "profile_path": "/9YMhFzhGoaXKcd2lt4N2n8EhFkC.jpg", "order": 23}, {"name": "Walter Addison", "character": "Lee Iacocca", "id": 79349, "credit_id": "52fe454b9251416c750518f3", "cast_id": 46, "profile_path": "/eMb69Ub4CTfTp9EN77yCx4sGdf1.jpg", "order": 24}, {"name": "Tony Ali", "character": "Foreign Newscaster #11", "id": 79350, "credit_id": "52fe454b9251416c750518f7", "cast_id": 47, "profile_path": "/1keu77peeW7vGIwxPN8PXC69O1t.jpg", "order": 25}, {"name": "Alison Araya", "character": "Foreign Newscaster #1", "id": 79351, "credit_id": "52fe454b9251416c750518fb", "cast_id": 48, "profile_path": "/jfulWxtEmU5grAmR0iZwpKsMq88.jpg", "order": 26}, {"name": "Greg Armstrong-Morris", "character": "Truman Capote", "id": 79352, "credit_id": "52fe454b9251416c750518ff", "cast_id": 49, "profile_path": "/tspwX5DxzWTvpeeKg11DbU2kiem.jpg", "order": 27}, {"name": "Tony Bardach", "character": "John with Rorschach's Mother", "id": 79353, "credit_id": "52fe454b9251416c75051903", "cast_id": 50, "profile_path": null, "order": 28}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe454a9251416c7505182f", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 6.6, "runtime": 162}, "13184": {"poster_path": "/eyHn8A0lze1pbCNxv0UsATBOmyv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42486154, "overview": "When carrying out a hit, assassin Joe (Cage) always makes use of the knowledge of the local population. On arriving in Bangkok, Joe meets street kid Kong and he becomes his primary aide. But when Kong is nearly killed, he asks Joe to train him up in the deadly arts and unwittingly becomes a target of a band of killers.", "video": false, "id": 13184, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Bangkok Dangerous", "tagline": "There's only one way out.", "vote_count": 132, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0814022", "adult": false, "backdrop_path": "/lBVtKWWXH46r7oMLdfT3quioaVb.jpg", "production_companies": [{"name": "Virtual Studios", "id": 449}, {"name": "Initial Entertainment Group", "id": 704}, {"name": "Saturn Films", "id": 831}, {"name": "International Production Company", "id": 1507}, {"name": "Blue Star Pictures", "id": 2779}, {"name": "Living Films", "id": 2877}, {"name": "Bangkok Dangerous", "id": 2878}], "release_date": "2008-09-04", "popularity": 0.495932269409108, "original_title": "Bangkok Dangerous", "budget": 45000000, "cast": [{"name": "Nicolas Cage", "character": "Joe", "id": 2963, "credit_id": "52fe454b9251416c7505193f", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Shahkrit Yamnarm", "character": "Kong", "id": 74747, "credit_id": "52fe454b9251416c75051943", "cast_id": 3, "profile_path": "/68S0FJyfkBJXy7qwUaQIamYaVQP.jpg", "order": 1}, {"name": "Charlie Yeung", "character": "Fon", "id": 66762, "credit_id": "52fe454b9251416c75051947", "cast_id": 4, "profile_path": "/lImfxZvj75ietpOR9NZC8zXmuco.jpg", "order": 2}, {"name": "Panward Hemmanee", "character": "Aom", "id": 76484, "credit_id": "52fe454b9251416c75051993", "cast_id": 18, "profile_path": "/oMaf0f3CBKq9zdfeZ0QQxg51ZOM.jpg", "order": 3}, {"name": "Nirattisai Kaljaruek", "character": "Surat", "id": 76485, "credit_id": "52fe454b9251416c75051997", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Dom Hetrakul", "character": "Aran", "id": 76478, "credit_id": "52fe454b9251416c7505199b", "cast_id": 20, "profile_path": null, "order": 5}, {"name": "Tuck Napaskorn", "character": "Kong's Brother", "id": 76486, "credit_id": "52fe454b9251416c7505199f", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Steve Baldocchi", "character": "Michigan", "id": 76487, "credit_id": "52fe454b9251416c750519a3", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Chris Heebink", "character": "USC", "id": 76488, "credit_id": "52fe454b9251416c750519a7", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "James With", "character": "Chicago", "id": 76489, "credit_id": "52fe454b9251416c750519ab", "cast_id": 24, "profile_path": null, "order": 9}], "directors": [{"name": "Oxide Pang Chun", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c7505193b", "profile_path": "/jrzNMBQjOCw9KZm7wuecQJhf9z9.jpg", "id": 31033}, {"name": "Danny Pang", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c7505194d", "profile_path": "/8A7cMugyDhFOhXbgwtUXOpo2XYx.jpg", "id": 21905}], "vote_average": 5.3, "runtime": 99}, "13186": {"poster_path": "/ftmiyfrTrqTi5Qod62nGRP9BGPn.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Retired military commander Colonel Dale Murphy hosts the simulated post-apocalyptic reality show where participants are challenged to survive a remote West Virginia wasteland. But the show turns into a nightmarish showdown when each realizes they are being hunted by an inbred family of cannibals determined to make them all dinner!", "video": false, "id": 13186, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wrong Turn 2: Dead End", "tagline": "Evil Awaits.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/32IsLLCoj3mIkZbLfCKSXZVqd3k.jpg", "poster_path": "/dtfQY5ZxvdHNG4HqNDy0ifwk1q6.jpg", "id": 52985, "name": "Wrong Turn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804555", "adult": false, "backdrop_path": "/6hBIRNqGhaFxMHLRyudhRJOJGHt.jpg", "production_companies": [{"name": "Constantin Film.", "id": 9078}, {"name": "Summit Entertainment", "id": 491}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2007-10-08", "popularity": 0.892830586725267, "original_title": "Wrong Turn 2: Dead End", "budget": 4000000, "cast": [{"name": "Erica Leerhsen", "character": "Nina Papas", "id": 57514, "credit_id": "52fe454b9251416c75051a23", "cast_id": 5, "profile_path": "/qI82zKaMmoSsWmjvbvWuNN0lWJy.jpg", "order": 0}, {"name": "Henry Rollins", "character": "Dale Murphy", "id": 9290, "credit_id": "52fe454b9251416c75051a27", "cast_id": 6, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 1}, {"name": "Texas Battle", "character": "Jake", "id": 53185, "credit_id": "52fe454b9251416c75051a2b", "cast_id": 7, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 2}, {"name": "Daniella Alonso", "character": "Amber", "id": 59296, "credit_id": "52fe454b9251416c75051a2f", "cast_id": 8, "profile_path": "/9w2ziDtZq60jVC5dbAiZmkQEfYe.jpg", "order": 3}, {"name": "Steve Braun", "character": "Jonesy", "id": 10867, "credit_id": "52fe454b9251416c75051a33", "cast_id": 9, "profile_path": "/wtLIbojDvKr0bGuTKng5DqO6w36.jpg", "order": 4}, {"name": "Aleksa Palladino", "character": "Mara", "id": 53441, "credit_id": "52fe454b9251416c75051a37", "cast_id": 10, "profile_path": "/nTpCRzn8raVlqLQfBP9oaAT3pXF.jpg", "order": 5}, {"name": "Matthew Currie Holmes", "character": "Michael", "id": 58901, "credit_id": "52fe454b9251416c75051a3b", "cast_id": 11, "profile_path": "/aW2pvKZC0iMSmriIoeTwkSENu47.jpg", "order": 6}, {"name": "Crystal Lowe", "character": "Elena", "id": 58393, "credit_id": "52fe454b9251416c75051a3f", "cast_id": 12, "profile_path": "/qnD1hQSJNrKPWZaiYFrUGUfZLBV.jpg", "order": 7}, {"name": "Kimberly Caldwell", "character": "Kimberly", "id": 84336, "credit_id": "52fe454b9251416c75051a43", "cast_id": 13, "profile_path": "/3UZ5XIlGOJc31UCp9XjuBAYToD.jpg", "order": 8}, {"name": "Wayne Robson", "character": "Old Man", "id": 5897, "credit_id": "52fe454b9251416c75051a47", "cast_id": 14, "profile_path": "/x1nuwmSBx49UXYxrVYyr8sZi12t.jpg", "order": 9}, {"name": "Ken Kirzinger", "character": "Pa", "id": 50094, "credit_id": "52fe454b9251416c75051a4b", "cast_id": 15, "profile_path": "/g90jZeSii6OmNOlNoxGFwCb2spJ.jpg", "order": 10}, {"name": "Ashlea Earl", "character": "Ma", "id": 84337, "credit_id": "52fe454b9251416c75051a4f", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Clint Carleton", "character": "Brother", "id": 84338, "credit_id": "52fe454b9251416c75051a53", "cast_id": 17, "profile_path": "/9LlwEeJiVtQsvBTdB87M9fk7Nw0.jpg", "order": 12}, {"name": "Rorelee Tio", "character": "Sister", "id": 84339, "credit_id": "52fe454b9251416c75051a57", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Joe Lynch", "department": "Directing", "job": "Director", "credit_id": "52fe454b9251416c75051a0d", "profile_path": null, "id": 84335}], "vote_average": 5.4, "runtime": 96}, "4995": {"poster_path": "/bB72Iaitar9p5kOlQVjAM82ZvTw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43101594, "overview": "Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams' rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, \"Dirk Diggler\". Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams' dreams of turning sex into stardom are about to collide with cold, hard reality.", "video": false, "id": 4995, "genres": [{"id": 18, "name": "Drama"}], "title": "Boogie Nights", "tagline": "Everyone has one special thing.", "vote_count": 158, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118749", "adult": false, "backdrop_path": "/7js1eREIJa9QboYpWbkNFyaQG0.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Lawrence Gordon Productions", "id": 840}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "1997-09-11", "popularity": 1.03161296268276, "original_title": "Boogie Nights", "budget": 15000000, "cast": [{"name": "Mark Wahlberg", "character": "Eddie Adams alias Dirk Diggler", "id": 13240, "credit_id": "52fe43edc3a36847f8078ad9", "cast_id": 8, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Burt Reynolds", "character": "Jack Horner", "id": 16475, "credit_id": "52fe43edc3a36847f8078add", "cast_id": 9, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 1}, {"name": "John C. Reilly", "character": "Reed Rothchild", "id": 4764, "credit_id": "52fe43edc3a36847f8078ae1", "cast_id": 10, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Amber Waves - Maggie", "id": 1231, "credit_id": "52fe43edc3a36847f8078ae5", "cast_id": 11, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "Thomas Jane", "character": "Todd Parker", "id": 11155, "credit_id": "52fe43edc3a36847f8078ae9", "cast_id": 12, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 4}, {"name": "Heather Graham", "character": "Brandy alias Rollergirl", "id": 69122, "credit_id": "52fe43edc3a36847f8078aed", "cast_id": 13, "profile_path": "/xqKEAblSGSj41hjaiydLiM9BT8h.jpg", "order": 5}, {"name": "Philip Seymour Hoffman", "character": "Scotty J.", "id": 1233, "credit_id": "52fe43edc3a36847f8078af1", "cast_id": 14, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 6}, {"name": "William H. Macy", "character": "Little Bill", "id": 3905, "credit_id": "52fe43edc3a36847f8078af5", "cast_id": 15, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 7}, {"name": "Don Cheadle", "character": "Buck Swope", "id": 1896, "credit_id": "52fe43edc3a36847f8078af9", "cast_id": 16, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 8}, {"name": "Luis Guzm\u00e1n", "character": "Maurice TT Rodriguez", "id": 40481, "credit_id": "52fe43edc3a36847f8078afd", "cast_id": 18, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 10}, {"name": "Alfred Molina", "character": "Rahad Jackson", "id": 658, "credit_id": "52fe43edc3a36847f8078b17", "cast_id": 25, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 11}, {"name": "Robert Ridgely", "character": "The Colonel James", "id": 25626, "credit_id": "52fe43edc3a36847f8078b1b", "cast_id": 26, "profile_path": "/sxvnvaZRpOhFqXk7yiN8iJE9Elw.jpg", "order": 12}, {"name": "Philip Baker Hall", "character": "Floyd Gondoli", "id": 4492, "credit_id": "52fe43edc3a36847f8078b0f", "cast_id": 22, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 13}, {"name": "Robert Downey Sr.", "character": "Studio owner", "id": 59874, "credit_id": "52fe43edc3a36847f8078b13", "cast_id": 24, "profile_path": "/6ITEZoNCgMweY7Sf6DxV4T5mkwG.jpg", "order": 13}, {"name": "Nicole Ari Parker", "character": "Becky Barnett", "id": 74615, "credit_id": "52fe43edc3a36847f8078b05", "cast_id": 20, "profile_path": "/vvEt8sXPKm9HxxDrHyg9aIxwvEM.jpg", "order": 14}, {"name": "Ricky Jay", "character": "Kurt Longjohn", "id": 10743, "credit_id": "52fe43edc3a36847f8078b01", "cast_id": 19, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 15}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43ecc3a36847f8078ab1", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 7.1, "runtime": 155}, "217993": {"poster_path": "/11X9WnPuSCnKavfTe0AJ935MDl4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4, "overview": "The world is under attack by an alien armada led by the powerful Apokoliptian, Darkseid. A group of superheroes consisting of Superman, Batman, Wonder Woman, The Flash, Green Lantern, Cyborg, and Shazam must set aside their differences and gather together to defend Earth.", "video": false, "id": 217993, "genres": [{"id": 16, "name": "Animation"}], "title": "Justice League: War", "tagline": "A time when heroes became legends.", "vote_count": 75, "homepage": "http://www.dccomics.com/movies/justice-league-war-2014", "belongs_to_collection": {"backdrop_path": "/v4ijBegXGXDltrqRbhlEQqfoDl2.jpg", "poster_path": "/d8zXAlvUFwaNiQLdBqYUdaR62iL.jpg", "id": 256287, "name": "Justice League (Animated) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3060952", "adult": false, "backdrop_path": "/ipt0EywV773s3eicpUOPA49MAiD.jpg", "production_companies": [{"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "DC Comics", "id": 429}], "release_date": "2014-02-02", "popularity": 0.883114969595185, "original_title": "Justice League: War", "budget": 3500000, "cast": [{"name": "Michelle Monaghan", "character": "Diana Prince / Wonder Woman (voice)", "id": 11705, "credit_id": "52fe4e41c3a368484e216b53", "cast_id": 3, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 0}, {"name": "Alan Tudyk", "character": "Clark Kent / Superman (voice)", "id": 21088, "credit_id": "52fe4e41c3a368484e216b57", "cast_id": 4, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 1}, {"name": "Sean Astin", "character": "Shazam (voice)", "id": 1328, "credit_id": "52fe4e41c3a368484e216b5b", "cast_id": 5, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 2}, {"name": "Shemar Moore", "character": "Victor Stone / Cyborg (voice)", "id": 50266, "credit_id": "52fe4e41c3a368484e216b5f", "cast_id": 6, "profile_path": "/yHhjKqWqfyJbMMIhfLRDfigwm7L.jpg", "order": 3}, {"name": "Christopher Gorham", "character": "Barry Allen / The Flash (voice)", "id": 53761, "credit_id": "52fe4e41c3a368484e216b63", "cast_id": 7, "profile_path": "/1fAcWAtGeTluNjbGVGxaShQD090.jpg", "order": 4}, {"name": "Justin Kirk", "character": "Hal Jordan / Green Lantern (voice)", "id": 20301, "credit_id": "52fe4e41c3a368484e216b67", "cast_id": 8, "profile_path": "/h8uWh71HiA33AGdUhPxOrHne5jo.jpg", "order": 5}, {"name": "Jason O'Mara", "character": "Bruce Wayne / Batman (voice)", "id": 183812, "credit_id": "52fe4e41c3a368484e216b6b", "cast_id": 9, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 6}, {"name": "Steve Blum", "character": "Darkseid (voice)", "id": 81379, "credit_id": "52fe4e41c3a368484e216b6f", "cast_id": 10, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 7}, {"name": "George Newbern", "character": "Steve Trevor (voice)", "id": 59222, "credit_id": "52fe4e41c3a368484e216b73", "cast_id": 11, "profile_path": "/48Ouqe1g8QrZ6qjvap5NvhfKuly.jpg", "order": 8}, {"name": "Zach Callison", "character": "Billy Batson (voice)", "id": 225863, "credit_id": "52fe4e41c3a368484e216b77", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Bruce Thomas", "character": "Desaad (voice)", "id": 79497, "credit_id": "52fe4e41c3a368484e216b7b", "cast_id": 13, "profile_path": "/mh7ckVcito9SJiMYhAH5Ca7EY3B.jpg", "order": 10}, {"name": "Lara Jill Miller", "character": "Hannah Grace (voice)", "id": 1213637, "credit_id": "52fe4e41c3a368484e216b7f", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Rocky Carroll", "character": "Silas Stone (voice)", "id": 27448, "credit_id": "52fe4e41c3a368484e216b83", "cast_id": 15, "profile_path": "/dSeLlsf3JGkGTH4mqQBKQkgiBT4.jpg", "order": 12}, {"name": "Georgie Kidder", "character": "Freddy / Max / Additional (voice)", "id": 1267558, "credit_id": "52fe4e41c3a368484e216b87", "cast_id": 16, "profile_path": null, "order": 13}], "directors": [{"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "52fe4e41c3a368484e216ba5", "profile_path": null, "id": 105643}], "vote_average": 7.4, "runtime": 79}, "242582": {"poster_path": "/fukWJhLISH7f6cnYSdgb0JrSP2Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38000000, "overview": "A driven young man (Gyllenhaal) stumbles upon the underground world of L.A. freelance crime journalism. When Lou Bloom, 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. Aiding him in his effort is Nina, a TV-news veteran.", "video": false, "id": 242582, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Nightcrawler", "tagline": "The City Shines Brightest at Night", "vote_count": 727, "homepage": "http://nightcrawlerfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2872718", "adult": false, "backdrop_path": "/ts4j3zYaPzdUVF3ijBeBdGVDWjX.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Bold Films", "id": 2266}], "release_date": "2014-10-31", "popularity": 7.81204539462633, "original_title": "Nightcrawler", "budget": 8500000, "cast": [{"name": "Jake Gyllenhaal", "character": "Lou", "id": 131, "credit_id": "52fe4ed0c3a36847f82a9b29", "cast_id": 3, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Bill Paxton", "character": "Joe Loder", "id": 2053, "credit_id": "52fe4ed0c3a36847f82a9b2d", "cast_id": 4, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 1}, {"name": "Rene Russo", "character": "Nina Romina", "id": 14343, "credit_id": "52fe4ed0c3a36847f82a9b31", "cast_id": 5, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 2}, {"name": "Kevin Rahm", "character": "Frank Kruse", "id": 97604, "credit_id": "537a2b3cc3a3685e29000034", "cast_id": 6, "profile_path": "/zhvROaAcr8f4rBNqRp5M9wYOEFH.jpg", "order": 3}, {"name": "Riz Ahmed", "character": "Rick", "id": 53240, "credit_id": "537a2b46c3a3685e29000038", "cast_id": 7, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 4}, {"name": "Kathleen York", "character": "Jackie", "id": 18293, "credit_id": "537a2b4cc3a3685e3200003f", "cast_id": 8, "profile_path": "/9tpL5j3Ba6yewjIwohTQxZtt1gM.jpg", "order": 5}, {"name": "Ann Cusack", "character": "Linda", "id": 59260, "credit_id": "537a2b55c3a3685e4100004a", "cast_id": 9, "profile_path": "/yQ68n8G6xl8TDMDr0534nnaGINS.jpg", "order": 6}, {"name": "Carolyn Gilroy", "character": "Jenny", "id": 1152043, "credit_id": "54b0d441c3a36809390015ab", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Michael Hyatt", "character": "Detective Frontieri", "id": 61084, "credit_id": "54b0d479925141746c001418", "cast_id": 28, "profile_path": "/wBcbbgLX2NFLb9TyyXto0KBom2i.jpg", "order": 8}, {"name": "Price Carson", "character": "Detective Lieberman", "id": 36060, "credit_id": "54b0d4c49251412ae70006b4", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Michael Papajohn", "character": "Security Guard", "id": 20582, "credit_id": "54f9bce29251416fab001600", "cast_id": 72, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 10}, {"name": "Kent Shocknek", "character": "Kent Shocknek", "id": 79086, "credit_id": "54f9bd27c3a36878d2001b24", "cast_id": 73, "profile_path": "/zmX6fNZ7zH18FokBGv5r1sfPmGw.jpg", "order": 11}], "directors": [{"name": "Dan Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe4ed0c3a36847f82a9b25", "profile_path": null, "id": 57113}], "vote_average": 7.7, "runtime": 117}, "13207": {"poster_path": "/y1S4bKk8cQphRBJliUikL3Jpv27.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91000000, "overview": "In this 12th installment of friday 13th, A group of young adults discover a boarded up Camp Crystal Lake, where they soon encounter Jason Voorhees (Mears) and his deadly intentions.", "video": false, "id": 13207, "genres": [{"id": 27, "name": "Horror"}], "title": "Friday the 13th", "tagline": "You know his name. You know the story. On Friday the 13th, witness his resurrection...", "vote_count": 113, "homepage": "http://www.fridaythe13thmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758746", "adult": false, "backdrop_path": "/ygcfHqQSGreHzr7Yd42uzWlMvjU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2009-02-11", "popularity": 0.389976019906168, "original_title": "Friday the 13th", "budget": 19000000, "cast": [{"name": "Derek Mears", "character": "Jason Vorhees", "id": 51300, "credit_id": "52fe454f9251416c750521b5", "cast_id": 5, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 0}, {"name": "Jared Padalecki", "character": "Clay", "id": 49623, "credit_id": "52fe454e9251416c750521a5", "cast_id": 1, "profile_path": "/uQLe1lfEBul3locVlV8nXD6n8TI.jpg", "order": 1}, {"name": "Danielle Panabaker", "character": "Jenna", "id": 31838, "credit_id": "52fe454e9251416c750521a9", "cast_id": 2, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 2}, {"name": "Amanda Righetti", "character": "Whitney", "id": 74289, "credit_id": "52fe454e9251416c750521ad", "cast_id": 3, "profile_path": "/aCRof0Sfqrbz2vgoWqVZuPWfvD8.jpg", "order": 3}, {"name": "Travis Van Winkle", "character": "Trent", "id": 74290, "credit_id": "52fe454e9251416c750521b1", "cast_id": 4, "profile_path": "/6Mu3Z7vbHyHixjHiYyUV88i8KyL.jpg", "order": 4}, {"name": "Aaron Yoo", "character": "Chewie", "id": 54247, "credit_id": "52fe454f9251416c750521d1", "cast_id": 10, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 5}, {"name": "Jonathan Sadowski", "character": "Wade", "id": 21047, "credit_id": "52fe454f9251416c750521d5", "cast_id": 11, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 6}, {"name": "Julianna Guill", "character": "Bree", "id": 78430, "credit_id": "52fe454f9251416c750521d9", "cast_id": 12, "profile_path": "/myHcPhxZcDk9yCL2F2yafQudMih.jpg", "order": 7}, {"name": "Ben Feldman", "character": "Richie", "id": 78431, "credit_id": "52fe454f9251416c750521dd", "cast_id": 13, "profile_path": "/cve3khwonn7sWBwDThA44XwH2Fo.jpg", "order": 8}, {"name": "Arlen Escarpeta", "character": "Lawrence", "id": 78432, "credit_id": "52fe454f9251416c750521e1", "cast_id": 14, "profile_path": "/j6UsveHGfxcnohafoCDAVqQBLpC.jpg", "order": 9}, {"name": "Ryan Hansen", "character": "Nolan", "id": 78433, "credit_id": "52fe454f9251416c750521e5", "cast_id": 15, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 10}, {"name": "Willa Ford", "character": "Chelsea", "id": 77313, "credit_id": "52fe454f9251416c750521e9", "cast_id": 16, "profile_path": "/dYzXQ3Vro7bOnqyX0c7sprN3TfS.jpg", "order": 11}, {"name": "America Olivo", "character": "Amanda", "id": 78434, "credit_id": "52fe454f9251416c750521ed", "cast_id": 17, "profile_path": "/jcKVwKxJEV2xRpkokNe0Om4GKHA.jpg", "order": 12}, {"name": "Stephanie Rhodes", "character": "Camp Counselor", "id": 1004858, "credit_id": "52fe454f9251416c750521f7", "cast_id": 19, "profile_path": "/Giodp23VP2CGV82GlzZiWRc4oV.jpg", "order": 13}, {"name": "Nana Visitor", "character": "Pamela Voorhees", "id": 74070, "credit_id": "52fe454f9251416c750521fb", "cast_id": 20, "profile_path": "/9bCpqShR7JiOYCjQlPbPT6aJR6W.jpg", "order": 14}], "directors": [{"name": "Marcus Nispel", "department": "Directing", "job": "Director", "credit_id": "52fe454f9251416c750521bb", "profile_path": "/uil3LAeKq6vgRucr6CR2T4Iz0oC.jpg", "id": 29922}], "vote_average": 5.8, "runtime": 97}, "37786": {"poster_path": "/bFaVEH21JfF70czs5qoDyiM8Pna.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 288347692, "overview": "Carrie (Sarah Jessica Parker), Charlotte (Kristin Davis), and Miranda (Cynthia Nixon) are all married now, but they're still up for a little fun in the sun. When Samantha (Kim Cattrall) gets the chance to visit one of the most extravagant vacation destinations on the planet and offers to bring them all along, they surmise that a women-only retreat may be the perfect excuse to eschew their responsibilities and remember what life was like before they decided to settle down.", "video": false, "id": 37786, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sex and the City 2", "tagline": "Carrie on.", "vote_count": 107, "homepage": "http://www.sexandthecitymovie.com/", "belongs_to_collection": {"backdrop_path": "/uM6lHfySQ5sQEuUyMxKdtxsp3CQ.jpg", "poster_path": "/ip0ObsKtNUucWEcWJfDmURjmF8h.jpg", "id": 50457, "name": "Sex and the City Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1261945", "adult": false, "backdrop_path": "/m6QThhvZztXeSsZoeR0vPZb6TAt.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "New Line Cinema", "id": 12}, {"name": "Home Box Office (HBO)", "id": 3268}, {"name": "HBO Films", "id": 7429}], "release_date": "2010-05-28", "popularity": 0.566376468476519, "original_title": "Sex and the City 2", "budget": 100000000, "cast": [{"name": "Sarah Jessica Parker", "character": "Carrie Bradshaw", "id": 520, "credit_id": "52fe466e9251416c910543c9", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 0}, {"name": "Kristin Davis", "character": "Charlotte York", "id": 38025, "credit_id": "52fe466e9251416c910543cd", "cast_id": 3, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 1}, {"name": "Cynthia Nixon", "character": "Miranda Hobbes", "id": 38024, "credit_id": "52fe466e9251416c910543d1", "cast_id": 4, "profile_path": "/3rM00aZLoUymm6V5z7PjPhK3N86.jpg", "order": 2}, {"name": "Kim Cattrall", "character": "Samantha Jones", "id": 2109, "credit_id": "52fe466e9251416c910543d5", "cast_id": 5, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 3}, {"name": "David Eigenberg", "character": "Steve Brady", "id": 27552, "credit_id": "52fe466e9251416c910543d9", "cast_id": 6, "profile_path": "/6In0iKsH6FRzZ5sCsUjAx4pwHJl.jpg", "order": 4}, {"name": "Evan Handler", "character": "Harry Goldenblatt", "id": 3212, "credit_id": "52fe466e9251416c910543dd", "cast_id": 7, "profile_path": "/bsSNblkDZk0hKIjyPMMt8Hsmbsg.jpg", "order": 5}, {"name": "Alexandra Fong", "character": "Lily York Goldenblatt", "id": 58355, "credit_id": "52fe466e9251416c910543e1", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Parker Fong", "character": "Lily York Goldenblatt", "id": 118514, "credit_id": "52fe466e9251416c910543e5", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Mario Cantone", "character": "Anthony Marantino", "id": 57551, "credit_id": "52fe466e9251416c910543e9", "cast_id": 10, "profile_path": "/jvxuIpzAYSWSbkaZd201KsSztp5.jpg", "order": 8}, {"name": "Willie Garson", "character": "Stanford Blatch", "id": 1542, "credit_id": "52fe466e9251416c910543ed", "cast_id": 11, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 9}, {"name": "Noah Mills", "character": "Nicky", "id": 118515, "credit_id": "52fe466e9251416c910543f1", "cast_id": 12, "profile_path": "/2MSsaHYS9HDfhCMQUhSCgfQTmw9.jpg", "order": 10}, {"name": "Liza Minnelli", "character": "Herself", "id": 66776, "credit_id": "52fe466e9251416c910543f5", "cast_id": 13, "profile_path": "/1G5DNqKJ4ufFryQTGmmTqCqYsY4.jpg", "order": 11}, {"name": "Billy Stritch", "character": "Band Leader", "id": 118516, "credit_id": "52fe466e9251416c910543f9", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Alice Eve", "character": "Erin", "id": 59860, "credit_id": "52fe466e9251416c910543fd", "cast_id": 15, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 13}, {"name": "Jason Lewis", "character": "Jerry 'Smith' Jerrod", "id": 32224, "credit_id": "52fe466e9251416c91054401", "cast_id": 16, "profile_path": "/mOZBzzaStKjaxn2aWKDLs3iCd9H.jpg", "order": 14}, {"name": "Max Ryan", "character": "Rikard Spirit", "id": 21942, "credit_id": "52fe466e9251416c91054405", "cast_id": 17, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 15}, {"name": "Lynn Cohen", "character": "Magda", "id": 8792, "credit_id": "52fe466e9251416c91054409", "cast_id": 18, "profile_path": "/5lllNLrQLlxozRCbJrgnCAhOee6.jpg", "order": 16}, {"name": "Amira Mor", "character": "", "id": 142788, "credit_id": "52fe466e9251416c9105440d", "cast_id": 19, "profile_path": "/mEG2E7Dw1cpHowjMx76ZtZpd7cR.jpg", "order": 17}, {"name": "Dhaffer L'Abidine", "character": "Mahmud (non cr\u00e9dit\u00e9)", "id": 129014, "credit_id": "52fe466e9251416c91054411", "cast_id": 20, "profile_path": "/bVksgnm8Wj3RsqV4YgTP9LwME6A.jpg", "order": 18}, {"name": "John Corbett", "character": "Aidan Shaw", "id": 38405, "credit_id": "52fe466e9251416c91054415", "cast_id": 21, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 19}, {"name": "Raya Meddine", "character": "Annesha", "id": 965678, "credit_id": "52fe466e9251416c91054419", "cast_id": 22, "profile_path": "/zCmR8AzZvYmWxQyQ3M7jwkm5VVQ.jpg", "order": 20}, {"name": "Jennifer Ferrin", "character": "Patience", "id": 1221134, "credit_id": "52fe466e9251416c9105441d", "cast_id": 23, "profile_path": "/ttCD3hGfI0Qu9fS0yH3PP0eabhZ.jpg", "order": 21}, {"name": "Tet Wada", "character": "VIP Party Patron", "id": 1417527, "credit_id": "54c28358c3a368792c003a2c", "cast_id": 24, "profile_path": "/gqbYiD2Lsw0srPRgueu2wgemOGT.jpg", "order": 22}], "directors": [{"name": "Michael Patrick King", "department": "Directing", "job": "Director", "credit_id": "52fe466e9251416c910543c5", "profile_path": "/vhsHQQSRHPxnwzUP58kzBy9Dx1T.jpg", "id": 38023}], "vote_average": 5.5, "runtime": 146}, "21407": {"poster_path": "/zJrfUPrt9HhsZhDKjjarivGh7pT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9444018, "overview": "Desperate to repay his debt to his ex-wife, an ex-con plots a heist at his new employer's country home, unaware that a second criminal has also targeted the property, and rigged it with a series of deadly traps.", "video": false, "id": 21407, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Collector", "tagline": "He always takes one", "vote_count": 80, "homepage": "http://thecollector-movie.com/", "belongs_to_collection": {"backdrop_path": "/4x4mtl1xgxIH5yxGr05L1WZeTjG.jpg", "poster_path": "/AhwErLgytU4ICqvvcIYbAM1xeeu.jpg", "id": 165369, "name": "The Collector Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0844479", "adult": false, "backdrop_path": "/qGaTWV4nJRREsPqmfKaFpvPiSd0.jpg", "production_companies": [{"name": "Imaginarium Entertainment Group", "id": 43760}, {"name": "Fortress Features", "id": 5176}, {"name": "LD Entertainment", "id": 10285}], "release_date": "2009-07-09", "popularity": 0.716307841232812, "original_title": "The Collector", "budget": 3400000, "cast": [{"name": "Josh Stewart", "character": "Arkin", "id": 40039, "credit_id": "52fe4418c3a368484e00f16d", "cast_id": 2, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 0}, {"name": "Michael Reilly Burke", "character": "Michael Chase", "id": 108774, "credit_id": "52fe4418c3a368484e00f18d", "cast_id": 12, "profile_path": "/aAupliSxOJAwrzdfs4YGk2Jetb5.jpg", "order": 1}, {"name": "Andrea Roth", "character": "Victoria Chase", "id": 44151, "credit_id": "52fe4418c3a368484e00f1d3", "cast_id": 30, "profile_path": "/7iTt4N1bT7UmNdFyADLKMi1TwDk.jpg", "order": 2}, {"name": "Juan Fern\u00e1ndez", "character": "The Collector", "id": 1607, "credit_id": "52fe4418c3a368484e00f175", "cast_id": 5, "profile_path": "/kA5I0SunYlTP9YJYwOrs4aCarCH.jpg", "order": 3}, {"name": "Madeline Zima", "character": "Jill Chase", "id": 84613, "credit_id": "52fe4418c3a368484e00f169", "cast_id": 1, "profile_path": "/fxBm7NmiTYOzhASJh7pzABbtfFZ.jpg", "order": 4}, {"name": "Karley Scott Collins", "character": "Hannah Chase", "id": 109784, "credit_id": "52fe4418c3a368484e00f181", "cast_id": 9, "profile_path": "/m1ObdIBFQ1cRCU4x1x5qZV6blso.jpg", "order": 5}, {"name": "Robert Wisdom", "character": "Roy", "id": 21505, "credit_id": "52fe4418c3a368484e00f179", "cast_id": 6, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 6}, {"name": "Daniella Alonso", "character": "Lisa", "id": 59296, "credit_id": "52fe4418c3a368484e00f171", "cast_id": 4, "profile_path": "/9w2ziDtZq60jVC5dbAiZmkQEfYe.jpg", "order": 7}, {"name": "Haley Pullos", "character": "Cindy (as Haley Alexis Pullos)", "id": 109783, "credit_id": "52fe4418c3a368484e00f17d", "cast_id": 8, "profile_path": "/phwwlIC6gKgMl98GFyoM798Efqy.jpg", "order": 8}, {"name": "Diane Ayala Goldner", "character": "Gena Wharton", "id": 62819, "credit_id": "52fe4418c3a368484e00f1cb", "cast_id": 28, "profile_path": "/6leI6hBXShPLlWCVMLdl1S9Asfa.jpg", "order": 9}, {"name": "Alex Feldman", "character": "Chad", "id": 109786, "credit_id": "52fe4418c3a368484e00f191", "cast_id": 13, "profile_path": "/uWle0GUJgJ5tMUGrpICcFqKy2UD.jpg", "order": 10}, {"name": "Krystal Mayo", "character": "Bar Dancer", "id": 109785, "credit_id": "52fe4418c3a368484e00f185", "cast_id": 10, "profile_path": "/ozbQdVym78joGAt3uSul3X4wKCK.jpg", "order": 11}, {"name": "Gregory Alan Williams", "character": "Sheriff", "id": 37937, "credit_id": "52fe4418c3a368484e00f189", "cast_id": 11, "profile_path": "/2Sba6ptJ2aGgZOv53k2mD1FLj0U.jpg", "order": 12}, {"name": "Michael Showers", "character": "Deputy sheriff", "id": 109787, "credit_id": "52fe4418c3a368484e00f195", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Bill Stinchcomb", "character": "Bar Patron", "id": 86536, "credit_id": "52fe4418c3a368484e00f199", "cast_id": 15, "profile_path": "/qBMOG810vg277nsnFneoWAsXGEZ.jpg", "order": 14}, {"name": "Brett Forbes", "character": "Office Hoss Wiggins", "id": 108765, "credit_id": "52fe4418c3a368484e00f19d", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Eric Kelly McFarland", "character": "Firefighter", "id": 109789, "credit_id": "52fe4418c3a368484e00f1a1", "cast_id": 18, "profile_path": null, "order": 16}, {"name": "Jabari Thomas", "character": "Medic", "id": 109790, "credit_id": "52fe4418c3a368484e00f1a5", "cast_id": 19, "profile_path": null, "order": 17}, {"name": "Hiro Koda", "character": "Medic #2", "id": 92493, "credit_id": "52fe4418c3a368484e00f1cf", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Colvin Roberson", "character": "Roy's Driver / Bodyguard", "id": 109791, "credit_id": "52fe4418c3a368484e00f1a9", "cast_id": 20, "profile_path": null, "order": 19}, {"name": "John Snell", "character": "Yard Worker", "id": 109792, "credit_id": "52fe4418c3a368484e00f1ad", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Jon Dainty", "character": "Strip Club Patron (uncredited)", "id": 109793, "credit_id": "52fe4418c3a368484e00f1b1", "cast_id": 22, "profile_path": "/mrWrar7BZx5qYI3gd6NQUrebKYE.jpg", "order": 21}, {"name": "William Morse", "character": "Stabbed Man (uncredited)", "id": 109794, "credit_id": "52fe4418c3a368484e00f1b5", "cast_id": 23, "profile_path": "/hrwminfZeqELFfaD5csD8zNDu1n.jpg", "order": 22}, {"name": "David Pitt", "character": "Barman (uncredited)", "id": 109795, "credit_id": "52fe4418c3a368484e00f1b9", "cast_id": 24, "profile_path": "/d38D9FHWAU04viES03xSv55nX5M.jpg", "order": 23}, {"name": "Philip Poth", "character": "Foreman (uncredited)", "id": 109796, "credit_id": "52fe4418c3a368484e00f1bd", "cast_id": 25, "profile_path": null, "order": 24}, {"name": "Patrick Rizzotti", "character": "Bowling Ball Cleaner (uncredited)", "id": 108768, "credit_id": "52fe4418c3a368484e00f1c1", "cast_id": 26, "profile_path": null, "order": 25}, {"name": "Tom Gulager", "character": "Officer Gulager", "id": 33155, "credit_id": "550a95a9c3a3684877000f83", "cast_id": 92, "profile_path": null, "order": 26}], "directors": [{"name": "Marcus Dunstan", "department": "Directing", "job": "Director", "credit_id": "52fe4418c3a368484e00f1c7", "profile_path": null, "id": 51023}], "vote_average": 6.4, "runtime": 88}, "103328": {"poster_path": "/w0Wi7raS9z7UoIbEF6aGxHIYyE6.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "We follow 24 hours in the life of a being moving from life to life like a cold and solitary assassin moving from hit to hit. In each of these interwoven lives, the being possesses an entirely distinct identity: sometimes a man, sometimes a woman, sometimes youthful, sometimes old. By turns murderer, beggar, company chairman, monstrous creature, worker, family man.", "video": false, "id": 103328, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Holy Motors", "tagline": "From dawn to dusk, a few hours in the shadowy life of a mystic man named Monsieur Oscar.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2076220", "adult": false, "backdrop_path": "/3otNWecsLLV1Yeazs6giXpvQbTL.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Pandora Filmproduktion", "id": 254}], "release_date": "2012-07-04", "popularity": 0.1887602217071, "original_title": "Holy Motors", "budget": 0, "cast": [{"name": "Eva Mendes", "character": "Kay M", "id": 8170, "credit_id": "52fe4a1cc3a36847f81ba1cf", "cast_id": 3, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 0}, {"name": "Kylie Minogue", "character": "Eva Grace", "id": 12207, "credit_id": "52fe4a1cc3a36847f81ba1d3", "cast_id": 4, "profile_path": "/8vOTxDParoNySQrUI2OM9zQkVPu.jpg", "order": 1}, {"name": "Michel Piccoli", "character": "L'homme \u00e0 la tache de vin", "id": 3784, "credit_id": "52fe4a1cc3a36847f81ba1d7", "cast_id": 5, "profile_path": "/gz91b4tVn6yYsKemek2YkUdjlSH.jpg", "order": 2}, {"name": "\u00c9dith Scob", "character": "C\u00e9line", "id": 27980, "credit_id": "52fe4a1cc3a36847f81ba1db", "cast_id": 6, "profile_path": "/DbTl7eoRq2rFmRbXuIi9i2lJjz.jpg", "order": 3}, {"name": "Denis Lavant", "character": "M. Oscar / Le banquier / La mendiante / L'OS de Motion-Capture / M. Merde / Le p\u00e8re / L'accord\u00e9oniste / Le tueur / Le tu\u00e9 / Le mourant / L'homme au foyer", "id": 27978, "credit_id": "52fe4a1cc3a36847f81ba1df", "cast_id": 7, "profile_path": "/fcMuYJwZvWjk2wf9vButEWiNvNM.jpg", "order": 4}, {"name": "Jean-Fran\u00e7ois Balmer", "character": "", "id": 35527, "credit_id": "52fe4a1cc3a36847f81ba1e3", "cast_id": 8, "profile_path": "/b1nC316aY3wpyqN3casQdtVkUbY.jpg", "order": 5}, {"name": "Fran\u00e7ois Rimbau", "character": "", "id": 1033666, "credit_id": "52fe4a1cc3a36847f81ba1e7", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Karl Hoffmeister", "character": "", "id": 1033667, "credit_id": "52fe4a1cc3a36847f81ba1eb", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Big John", "character": "", "id": 1033668, "credit_id": "52fe4a1cc3a36847f81ba1ef", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Elise Lhomeau", "character": "L\u00e9a", "id": 1062732, "credit_id": "52fe4a1cc3a36847f81ba205", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Jeanne Disson", "character": "Ang\u00e8le", "id": 240734, "credit_id": "52fe4a1cc3a36847f81ba209", "cast_id": 16, "profile_path": "/okR3kYf6ChpqcmtPJJW3J8tqpuQ.jpg", "order": 10}, {"name": "Leos Carax", "character": "Le dormeur / Voix Limousine", "id": 27977, "credit_id": "52fe4a1cc3a36847f81ba20d", "cast_id": 17, "profile_path": "/x0kRqnxOHBx6U3t3a2NxGLLIRwa.jpg", "order": 11}, {"name": "Nastya Golubeva Carax", "character": "La petite fille", "id": 1102328, "credit_id": "52fe4a1cc3a36847f81ba211", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Reda Oumouzoune", "character": "L'acrobate Mo-Cap", "id": 1102329, "credit_id": "52fe4a1cc3a36847f81ba215", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Zlata", "character": "La cyber-femme", "id": 1102330, "credit_id": "52fe4a1cc3a36847f81ba219", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Geoffrey Carey", "character": "Le photographe / Voix Limousine", "id": 134514, "credit_id": "52fe4a1cc3a36847f81ba21d", "cast_id": 21, "profile_path": "/42OhDzzOtbylnrVPkuyg5aHwkhF.jpg", "order": 15}, {"name": "Annabelle Dexter-Jones", "character": "L'assistante photographe", "id": 1102331, "credit_id": "52fe4a1cc3a36847f81ba221", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Elise Caron", "character": "", "id": 1062734, "credit_id": "52fe4a1cc3a36847f81ba225", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Corinne Yam", "character": "", "id": 1001084, "credit_id": "52fe4a1cc3a36847f81ba229", "cast_id": 24, "profile_path": null, "order": 18}], "directors": [{"name": "Leos Carax", "department": "Directing", "job": "Director", "credit_id": "52fe4a1cc3a36847f81ba1cb", "profile_path": "/x0kRqnxOHBx6U3t3a2NxGLLIRwa.jpg", "id": 27977}], "vote_average": 6.7, "runtime": 115}, "103332": {"poster_path": "/1mgwXxdkV7sQRRCb4Qaq3HZl8Xe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Calvin (Paul Dano) is a young novelist who achieved phenomenal success early in his career but is now struggling with his writing \u2013 as well as his romantic life. Finally, he makes a breakthrough and creates a character named Ruby who inspires him. When Calvin finds Ruby (Zoe Kazan), in the flesh, sitting on his couch about a week later, he is completely flabbergasted that his words have turned into a living, breathing person.", "video": false, "id": 103332, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Ruby Sparks", "tagline": "She's Out Of His Mind", "vote_count": 143, "homepage": "http://www.foxsearchlight.com/rubysparks/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1839492", "adult": false, "backdrop_path": "/eJZCmIgZdFlq6XqL3qtFcJsG0P6.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2012-07-25", "popularity": 1.03199371912301, "original_title": "Ruby Sparks", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Mort", "id": 3131, "credit_id": "52fe4a1cc3a36847f81ba2ff", "cast_id": 6, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Alia Shawkat", "character": "Mabel", "id": 61178, "credit_id": "52fe4a1cc3a36847f81ba303", "cast_id": 7, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 1}, {"name": "Paul Dano", "character": "Calvin", "id": 17142, "credit_id": "52fe4a1cc3a36847f81ba307", "cast_id": 8, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 2}, {"name": "Deborah Ann Woll", "character": "Lila", "id": 212154, "credit_id": "52fe4a1cc3a36847f81ba30b", "cast_id": 9, "profile_path": "/inTiyJqbqAlj10Hz545WyZkHRjy.jpg", "order": 3}, {"name": "Annette Bening", "character": "Gertrude", "id": 516, "credit_id": "52fe4a1cc3a36847f81ba30f", "cast_id": 10, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 4}, {"name": "Steve Coogan", "character": "Langdon Tharp", "id": 4581, "credit_id": "52fe4a1cc3a36847f81ba313", "cast_id": 11, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 5}, {"name": "Elliott Gould", "character": "Dr. Rosenthal", "id": 827, "credit_id": "52fe4a1cc3a36847f81ba317", "cast_id": 12, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 6}, {"name": "Chris Messina", "character": "Harry", "id": 61659, "credit_id": "52fe4a1cc3a36847f81ba31b", "cast_id": 13, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 7}, {"name": "Zoe Kazan", "character": "Ruby", "id": 35028, "credit_id": "52fe4a1cc3a36847f81ba31f", "cast_id": 14, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 8}, {"name": "Aasif Mandvi", "character": "Cyrus Modi", "id": 20644, "credit_id": "52fe4a1cc3a36847f81ba323", "cast_id": 15, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 9}, {"name": "Wallace Langham", "character": "Warren", "id": 17421, "credit_id": "52fe4a1cc3a36847f81ba327", "cast_id": 16, "profile_path": "/UODZ2FuyJixy8CCqv190KIlncR.jpg", "order": 10}, {"name": "Toni Trucks", "character": "Susie", "id": 105831, "credit_id": "52fe4a1cc3a36847f81ba32b", "cast_id": 17, "profile_path": "/pmXJ5l5udyotzZzeRbhLq62f4wa.jpg", "order": 11}, {"name": "Eleanor Seigler", "character": "Mandi", "id": 1033675, "credit_id": "52fe4a1cc3a36847f81ba32f", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "John F. Beach", "character": "Adam", "id": 98535, "credit_id": "52fe4a1cc3a36847f81ba333", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "Jonathan Dayton", "department": "Directing", "job": "Director", "credit_id": "52fe4a1cc3a36847f81ba2e3", "profile_path": null, "id": 16959}, {"name": "Valerie Faris", "department": "Directing", "job": "Director", "credit_id": "52fe4a1cc3a36847f81ba2e9", "profile_path": null, "id": 16960}], "vote_average": 7.0, "runtime": 104}, "37797": {"poster_path": "/uPLuwtMQm3wDTKm7cZQHsszYGRo.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Shizuku lives a simple life, dominated by her love for stories and writing. One day she notices that all the library books she has have been previously checked out by the same person: 'Seiji Amasawa'. Curious as to who he is, Shizuku meets a boy her age whom she finds infuriating, but discovers to her shock that he is her 'Prince of Books'. As she grows closer to him, she realises that he merely read all those books to bring himself closer to her. The boy Seiji aspires to be a violin maker in Italy, and it is his dreams that make Shizuku realise that she has no clear path for her life. Knowing that her strength lies in writing, she tests her talents by writing a story about Baron, a cat statuette belonging to Seiji's grandfather", "video": false, "id": 37797, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "Whisper of the Heart", "tagline": "", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0113824", "adult": false, "backdrop_path": "/s5X7ry3pDwAhUkvUmGUTXTXXoD2.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Tokuma Shoten", "id": 1779}, {"name": "Nippon Television Network (NTV)", "id": 20192}, {"name": "Hakuhodo", "id": 32441}, {"name": "Mimi wo Sumaseba Production Committee", "id": 12522}], "release_date": "1995-07-15", "popularity": 0.929658742463791, "original_title": "Mimi wo sumaseba", "budget": 0, "cast": [{"name": "Y\u014dko Honna", "character": "Shizuku Tsukishima", "id": 119263, "credit_id": "52fe466f9251416c910545d9", "cast_id": 2, "profile_path": null, "order": 0}, {"name": "Kazuo Takahashi", "character": "Seiji Amasawa", "id": 230389, "credit_id": "52fe466f9251416c910545f5", "cast_id": 10, "profile_path": null, "order": 1}, {"name": "Takashi Tachibana", "character": "Seiya Tsukishima", "id": 555255, "credit_id": "52fe466f9251416c910545f9", "cast_id": 11, "profile_path": null, "order": 2}, {"name": "Shigeru Muroi", "character": "Asako Tsukishima", "id": 135025, "credit_id": "52fe466f9251416c910545fd", "cast_id": 12, "profile_path": "/84TofjFLqStql7KquY5DK1TSZcS.jpg", "order": 3}, {"name": "Shigeru Tsuyuguchi", "character": "The Baron", "id": 142491, "credit_id": "52fe466f9251416c91054601", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Keiju Kobayashi", "character": "Shiro Nishi", "id": 70324, "credit_id": "52fe466f9251416c91054605", "cast_id": 14, "profile_path": "/41yr4DgrkiIB0ywzcVcKGYvMJyt.jpg", "order": 5}, {"name": "Yorie Yamashita", "character": "Shiho Tsukishima", "id": 555256, "credit_id": "52fe466f9251416c91054609", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Maiko Kayama", "character": "Yuko Harada", "id": 119264, "credit_id": "52fe466f9251416c9105460d", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Yoshimi Nakajima", "character": "Sugimura", "id": 555257, "credit_id": "52fe466f9251416c91054611", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Minami Takayama", "character": "Kosaka-sensei", "id": 68470, "credit_id": "52fe466f9251416c91054615", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Mayumi Iizuka", "character": "Kinuyo", "id": 65426, "credit_id": "52fe466f9251416c91054619", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Mai Chiba", "character": "", "id": 555258, "credit_id": "52fe466f9251416c9105461d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Satoru Takahashi", "character": "", "id": 555259, "credit_id": "52fe466f9251416c91054621", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Akiko Sakaguchi", "character": "", "id": 555260, "credit_id": "52fe466f9251416c91054625", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Hiromi Yasuda", "character": "", "id": 555261, "credit_id": "52fe466f9251416c91054629", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Tatsuya Okada", "character": "", "id": 555262, "credit_id": "52fe466f9251416c9105462d", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Yoshihiro Imai", "character": "", "id": 555263, "credit_id": "52fe466f9251416c91054631", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Naohisa Inoue", "character": "Tall friend of Mr. Nishi", "id": 87623, "credit_id": "52fe466f9251416c91054635", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Suguru Egawa", "character": "Baseball Analyst", "id": 555264, "credit_id": "52fe466f9251416c91054639", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Shiro Kishibe", "character": "", "id": 123861, "credit_id": "52fe466f9251416c9105463d", "cast_id": 28, "profile_path": "/a8tu81MLn4kbfYYjWHcsPvYDs5H.jpg", "order": 19}, {"name": "Toshio Suzuki", "character": "", "id": 1417, "credit_id": "52fe466f9251416c91054641", "cast_id": 29, "profile_path": "/k5YYt3VYjCEGRP4eCPx9bCLNtE4.jpg", "order": 20}, {"name": "Mitsuaki Ogawa", "character": "Baseball Announcer", "id": 555265, "credit_id": "52fe466f9251416c91054645", "cast_id": 30, "profile_path": null, "order": 21}], "directors": [{"name": "Yoshifumi Kond\u00f4", "department": "Directing", "job": "Director", "credit_id": "52fe466f9251416c910545df", "profile_path": null, "id": 555254}], "vote_average": 7.5, "runtime": 111}, "37799": {"poster_path": "/hKTwHT6WtYhtG8U2PJQSQH2y4oD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 213891471, "overview": "On a fall night in 2003, Harvard undergrad and computer programming genius Mark Zuckerberg sits down at his computer and heatedly begins working on a new idea. In a fury of blogging and programming, what begins in his dorm room as a small site among friends soon becomes a global social network and a revolution in communication. A mere six years and 500 million friends later, Mark Zuckerberg is the youngest billionaire in history... but for this entrepreneur, success leads to both personal and legal complications.", "video": false, "id": 37799, "genres": [{"id": 18, "name": "Drama"}], "title": "The Social Network", "tagline": "You don't get to 500 million friends without making a few enemies.", "vote_count": 1110, "homepage": "http://www.thesocialnetwork-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1285016", "adult": false, "backdrop_path": "/8AazWuNBQV7QFjb9XNzJLox0Zey.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2010-09-30", "popularity": 1.71099348661314, "original_title": "The Social Network", "budget": 40000000, "cast": [{"name": "Jesse Eisenberg", "character": "Mark Zuckerberg", "id": 44735, "credit_id": "52fe466f9251416c910546cb", "cast_id": 7, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Andrew Garfield", "character": "Eduardo Saverin", "id": 37625, "credit_id": "52fe466f9251416c910546d7", "cast_id": 10, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Sean Parker", "id": 12111, "credit_id": "52fe466f9251416c910546d3", "cast_id": 9, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Rooney Mara", "character": "Erica", "id": 108916, "credit_id": "52fe466f9251416c910546c3", "cast_id": 4, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 3}, {"name": "Bryan Barter", "character": "Billy Olsen", "id": 135851, "credit_id": "52fe466f9251416c910546ef", "cast_id": 16, "profile_path": "/7OOfftiFK4eszUA5WFSCsoo2nvT.jpg", "order": 4}, {"name": "Dustin Fitzsimons", "character": "Phoenix Club President", "id": 115406, "credit_id": "52fe466f9251416c910546f3", "cast_id": 17, "profile_path": "/j8SdVfAPgotZDbCtPoBCCJ26F1V.jpg", "order": 5}, {"name": "Armie Hammer", "character": "Cameron Winklevoss / Tyler Winklevoss", "id": 53807, "credit_id": "52fe466f9251416c910546f7", "cast_id": 18, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 6}, {"name": "Joseph Mazzello", "character": "Dustin Moskovitz", "id": 4787, "credit_id": "52fe466f9251416c910546c7", "cast_id": 5, "profile_path": "/zsBGvymDqB737PerJTqhS9dPuBd.jpg", "order": 7}, {"name": "Patrick Mapel", "character": "Chris Hughes", "id": 135852, "credit_id": "52fe466f9251416c910546fb", "cast_id": 19, "profile_path": "/8OGFpQD6gH6krExv5VoNi9VOyWA.jpg", "order": 8}, {"name": "Max Minghella", "character": "Divya Narendra", "id": 2978, "credit_id": "52fe466f9251416c910546df", "cast_id": 12, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 9}, {"name": "Toby Meuli", "character": "Phoenix Member Playing Facemash", "id": 135853, "credit_id": "52fe466f9251416c910546ff", "cast_id": 20, "profile_path": "/4GxaRS1kK15K6e86NiKvUNH6zf8.jpg", "order": 10}, {"name": "Malese Jow", "character": "Alice", "id": 118544, "credit_id": "52fe466f9251416c910546cf", "cast_id": 8, "profile_path": "/cT29b1741g4WCHDnJ21akeq0sWO.jpg", "order": 11}, {"name": "Brenda Song", "character": "Christy", "id": 88123, "credit_id": "52fe466f9251416c910546db", "cast_id": 11, "profile_path": "/4JBCrQK3Er07T8UNuChUlE63TdA.jpg", "order": 12}, {"name": "Dakota Johnson", "character": "Amelia Ritter", "id": 118545, "credit_id": "52fe466f9251416c910546e3", "cast_id": 13, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 13}, {"name": "Trevor Wright", "character": "B.U. Guy in Bra", "id": 61256, "credit_id": "52fe466f9251416c910546e7", "cast_id": 14, "profile_path": "/oSdfAF2W6v7ELe0yQKWVMJDjXp5.jpg", "order": 14}, {"name": "Adina Porter", "character": "Gretchen's Associate", "id": 118546, "credit_id": "52fe466f9251416c910546eb", "cast_id": 15, "profile_path": "/5nSo6tSC7eT4Yum5Qd38yIJ2K5M.jpg", "order": 15}, {"name": "Rashida Jones", "character": "Marylin Delpy", "id": 80591, "credit_id": "52fe466f9251416c91054745", "cast_id": 34, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 16}, {"name": "Felisha Terrell", "character": "Beautiful Woman", "id": 210334, "credit_id": "52fe466f9251416c91054749", "cast_id": 35, "profile_path": "/9MofujgqZ8kikXkHgNsBI17Lnt2.jpg", "order": 17}, {"name": "Peter Holden", "character": "Facebook Lawyer", "id": 1225911, "credit_id": "5389b57ec3a3680aed000dce", "cast_id": 37, "profile_path": "/xMCjCyynanDlcX0GdnsEhseSINZ.jpg", "order": 18}, {"name": "David Selby", "character": "Gage", "id": 56930, "credit_id": "54d2a4919251413fd300079e", "cast_id": 38, "profile_path": "/31FZf0TdcYm53S9R9q1KWNNxVaH.jpg", "order": 19}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe466f9251416c91054741", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 7.0, "runtime": 120}, "54186": {"poster_path": "/oiVWlhTkm5FB5fhQMQfpPzAFDkg.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "A psychological thriller of a grieving mother turned cold-blooded avenger with a twisty master plan to pay back those who were responsible for her daughter's death.", "video": false, "id": 54186, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Confessions", "tagline": "", "vote_count": 61, "homepage": "http://kokuhaku-shimasu.jp/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1590089", "adult": false, "backdrop_path": "/kA0UMut3JUlB3LaaKCKMSz2uDX9.jpg", "production_companies": [{"name": "DesperaDo", "id": 7831}], "release_date": "2010-06-05", "popularity": 0.456367315212123, "original_title": "\u544a\u767d", "budget": 0, "cast": [{"name": "Takako Matsu", "character": "Yuko Moriguchi", "id": 111690, "credit_id": "52fe4890c3a36847f816e23b", "cast_id": 4, "profile_path": "/hcU0vYfPTXkYzCe9yHdmG0e0jmC.jpg", "order": 0}, {"name": "Masaki Okada", "character": "Yoshiteru Terada", "id": 124402, "credit_id": "52fe4890c3a36847f816e23f", "cast_id": 5, "profile_path": "/ye41mgdvRweMocrOE2ugnOdQXDx.jpg", "order": 1}, {"name": "Kimura Yoshino", "character": "Naoki's mother", "id": 72764, "credit_id": "52fe4890c3a36847f816e243", "cast_id": 6, "profile_path": "/dwLTlABDjieSq8SVQrE63gvnnk1.jpg", "order": 2}, {"name": "Mana Ashida", "character": "Manami Moriguchi (Yuko's Daughter)", "id": 559416, "credit_id": "52fe4890c3a36847f816e25f", "cast_id": 13, "profile_path": "/gvfweKd6XU3AQy1CFakbVNYeMCI.jpg", "order": 3}, {"name": "Makiya Yamaguchi", "character": "Masayoshi Sakuranomiya", "id": 559414, "credit_id": "52fe4890c3a36847f816e257", "cast_id": 11, "profile_path": "/llDKjngoWxhkUVp8vfaCzeBnHcp.jpg", "order": 4}, {"name": "Yukito Nishii", "character": "Shuya Watanabe", "id": 559411, "credit_id": "52fe4890c3a36847f816e247", "cast_id": 7, "profile_path": "/4oCRIg1RG4AN3rAP9Y5nO8AoQ5u.jpg", "order": 5}, {"name": "Kaoru Fujiwara", "character": "Naoki Shimomura", "id": 559412, "credit_id": "52fe4890c3a36847f816e24b", "cast_id": 8, "profile_path": "/9p0fwGWoFmQm7qFNSflg6QlK4U2.jpg", "order": 6}, {"name": "Ai Hashimoto", "character": "Mizuki Kitahara", "id": 559413, "credit_id": "52fe4890c3a36847f816e24f", "cast_id": 9, "profile_path": "/7lLnGo0fdRsx9PTzh3b1BMJNEOv.jpg", "order": 7}, {"name": "Naoki Ichii", "character": "Yusuke Hoshino", "id": 1195937, "credit_id": "52fe4890c3a36847f816e263", "cast_id": 14, "profile_path": "/tenJrddIbI7Lxhvru22nuBDgP6O.jpg", "order": 8}, {"name": "Kai Inowaki", "character": "Yuma Maekawa", "id": 85005, "credit_id": "52fe4890c3a36847f816e267", "cast_id": 15, "profile_path": "/5EJYSiQ01X0cb1g6gOdGCmpRoLE.jpg", "order": 9}, {"name": "Ayaka Miyoshi", "character": "Ayaka Tsuchida", "id": 1195939, "credit_id": "52fe4890c3a36847f816e26b", "cast_id": 16, "profile_path": "/zJ3n2CAfRN85SZuP4qaBylLhk2i.jpg", "order": 10}, {"name": "Moto Hotaruno", "character": "Saki Matsukawa", "id": 1195943, "credit_id": "52fe4890c3a36847f816e26f", "cast_id": 17, "profile_path": "/9SVr9zMEDniD9o79s3mOs8m7rEZ.jpg", "order": 11}, {"name": "Kasumi Yamaya", "character": "Yukari Naito", "id": 1195944, "credit_id": "52fe4890c3a36847f816e273", "cast_id": 18, "profile_path": "/oR48JUhMZGWN6V7WptP2APLJEjY.jpg", "order": 12}, {"name": "Hirofumi Arai", "character": "Shuya's Father", "id": 110500, "credit_id": "52fe4890c3a36847f816e253", "cast_id": 10, "profile_path": "/syF8PGhQiexSaGewrCnM9FIGydg.jpg", "order": 13}, {"name": "Ikuyo Kuroda", "character": "Shuya's Mother", "id": 559415, "credit_id": "52fe4890c3a36847f816e25b", "cast_id": 12, "profile_path": "/reziuDEnpY0dKXFjnemBH5HpLKy.jpg", "order": 14}], "directors": [{"name": "Tetsuya Nakashima", "department": "Directing", "job": "Director", "credit_id": "52fe4890c3a36847f816e22b", "profile_path": "/2soceoLutZZBpUkhMuxvVEZw0PW.jpg", "id": 131186}], "vote_average": 7.6, "runtime": 106}, "5038": {"poster_path": "/z1EVwBwK3iZrq3HjGoCZ6oJFq8q.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96408652, "overview": "Two girlfriends on a summer holiday in Spain become enamored with the same painter, unaware that his ex-wife, with whom he has a tempestuous relationship, is about to re-enter the picture.", "video": false, "id": 5038, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Vicky Cristina Barcelona", "tagline": "Life is the ultimate work of art", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0497465", "adult": false, "backdrop_path": "/4bReUokUn1E4mwbKykr1tc18OrT.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Gravier Productions", "id": 1824}], "release_date": "2008-08-15", "popularity": 0.386592816840463, "original_title": "Vicky Cristina Barcelona", "budget": 15000000, "cast": [{"name": "Scarlett Johansson", "character": "Cristina", "id": 1245, "credit_id": "52fe43eec3a36847f8079279", "cast_id": 3, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Rebecca Hall", "character": "Vicky", "id": 15556, "credit_id": "52fe43eec3a36847f8079281", "cast_id": 5, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Juan Antonio Gonzalo", "id": 3810, "credit_id": "52fe43eec3a36847f8079289", "cast_id": 7, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Mar\u00eda Elena", "id": 955, "credit_id": "52fe43eec3a36847f807927d", "cast_id": 4, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "Christopher Evan Welch", "character": "Narrator (voice)", "id": 60021, "credit_id": "52fe43eec3a36847f8079295", "cast_id": 10, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 4}, {"name": "Chris Messina", "character": "Doug", "id": 61659, "credit_id": "52fe43eec3a36847f807928d", "cast_id": 8, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 5}, {"name": "Patricia Clarkson", "character": "Judy Nash", "id": 1276, "credit_id": "52fe43eec3a36847f8079285", "cast_id": 6, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 6}, {"name": "Kevin Dunn", "character": "Mark Nash", "id": 14721, "credit_id": "52fe43eec3a36847f8079291", "cast_id": 9, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 7}, {"name": "Julio Perill\u00e1n", "character": "Charles", "id": 588323, "credit_id": "5310d9ec9251411042001392", "cast_id": 19, "profile_path": "/cBBhI6tk9crvuGfaIysVXRyXo6G.jpg", "order": 8}, {"name": "Juan Queseda", "character": "Guitarist in Barcelona", "id": 1303725, "credit_id": "532e64aac3a3685fe2003461", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Ricard Salom", "character": "Art Gallery Guest", "id": 1303727, "credit_id": "532e65699251413a6f002a07", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Maurice Sonnenberg", "character": "Art Gallery Guest", "id": 28005, "credit_id": "532e65129251413a7e0027b1", "cast_id": 22, "profile_path": "/vEoIXwvbHghKymwtaDQtuNQg4mk.jpg", "order": 11}, {"name": "Manel Barcel\u00f3", "character": "Doctor", "id": 1062005, "credit_id": "532e65aec3a3685fdb003411", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Josep Maria Dom\u00e8nech", "character": "Julio", "id": 108908, "credit_id": "532e65d7c3a3685fcb0033a3", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Emilio de Benito", "character": "Guitarist in Asturias", "id": 1303728, "credit_id": "532e65fdc3a3685fdb00341c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Jaume Montan\u00e9", "character": "Juan Antonio's Friend", "id": 986521, "credit_id": "532e6612c3a3685fc3003442", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Lloll Bertran", "character": "Juan Antonio's Friend", "id": 1061977, "credit_id": "532e6622c3a3685fc3003448", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Joel Joan", "character": "Juan Antonio's Friend", "id": 19826, "credit_id": "532e662fc3a3685fac0032b2", "cast_id": 29, "profile_path": "/eZaiTHwNnTDYTXuZ6Zh2kBptilB.jpg", "order": 17}, {"name": "Silvia Sabat\u00e9", "character": "Juan Antonio's Friend", "id": 1303729, "credit_id": "532e6655c3a3685fbb00337a", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Pablo Schreiber", "character": "Ben", "id": 59254, "credit_id": "532e66f3c3a3685fbb003388", "cast_id": 31, "profile_path": "/uNNgZmEVvhV0WUf11oGMpYb6oWE.jpg", "order": 19}, {"name": "Carrie Preston", "character": "Sally", "id": 7465, "credit_id": "532e6724c3a3685fac0032d0", "cast_id": 33, "profile_path": "/dyGxZwqL6N95BhuiJQf0PXTxrsS.jpg", "order": 20}, {"name": "Zak Orth", "character": "Adam", "id": 6212, "credit_id": "532e6742c3a3685fd3003492", "cast_id": 34, "profile_path": "/rKupoahQ3pgeVVXS8EWd1WSnKEO.jpg", "order": 21}, {"name": "Abel Folk", "character": "Jay", "id": 133525, "credit_id": "532e678ac3a3685fac0032e1", "cast_id": 35, "profile_path": null, "order": 22}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe43eec3a36847f807926f", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.7, "runtime": 96}, "9032": {"poster_path": "/fNuksh5Ud4a9hZGJkMpJFs3oyEy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163479795, "overview": "Layla Maloney is fed up with boyfriend Sonny Koufax's perpetual loafing, so when 5-year-old Julian is left on Sonny's doorstep, he assumes a fatherly role to prove he's responsible and to win Layla's love. Trouble is, Sonny has grown attached to the kid, who's really the son of his out-of-town roommate.", "video": false, "id": 9032, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Big Daddy", "tagline": "Nature called. Look who answered.", "vote_count": 204, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0142342", "adult": false, "backdrop_path": "/46sAmtpjFYfLZ1zTS8lJOM5CZWz.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1999-06-25", "popularity": 1.15275555746166, "original_title": "Big Daddy", "budget": 34200000, "cast": [{"name": "Adam Sandler", "character": "Sonny Koufax", "id": 19292, "credit_id": "52fe44d4c3a36847f80ac6ff", "cast_id": 11, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Joey Lauren Adams", "character": "Layla Maloney", "id": 16484, "credit_id": "52fe44d4c3a36847f80ac703", "cast_id": 12, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 1}, {"name": "Kristy Swanson", "character": "Vanessa", "id": 56128, "credit_id": "52fe44d4c3a36847f80ac737", "cast_id": 24, "profile_path": "/pzguOB8oUos8YJqTSKPf3z4KOv9.jpg", "order": 2}, {"name": "Cole Sprouse", "character": "Julian 'Frankenstien' McGrath", "id": 56730, "credit_id": "52fe44d4c3a36847f80ac70b", "cast_id": 14, "profile_path": "/ecR3jwrg0nSeXZQ4l7a4y73Coul.jpg", "order": 3}, {"name": "Jon Stewart", "character": "Kevin Gerrity", "id": 12219, "credit_id": "52fe44d4c3a36847f80ac707", "cast_id": 13, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 4}, {"name": "Leslie Mann", "character": "Corinne Maloney", "id": 41087, "credit_id": "52fe44d4c3a36847f80ac715", "cast_id": 16, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 5}, {"name": "Allen Covert", "character": "Phil D'Amato", "id": 20818, "credit_id": "52fe44d4c3a36847f80ac719", "cast_id": 17, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 6}, {"name": "Rob Schneider", "character": "Delivery Guy", "id": 60949, "credit_id": "52fe44d4c3a36847f80ac71d", "cast_id": 18, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 7}, {"name": "Peter Dante", "character": "Tommy Grayton", "id": 20819, "credit_id": "52fe44d4c3a36847f80ac721", "cast_id": 19, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 8}, {"name": "Steve Buscemi", "character": "Homeless Guy", "id": 884, "credit_id": "52fe44d4c3a36847f80ac725", "cast_id": 20, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 9}, {"name": "Dylan Sprouse", "character": "Julian 'Frankenstien' McGrath", "id": 95686, "credit_id": "52fe44d4c3a36847f80ac72f", "cast_id": 22, "profile_path": "/86nkUScYbpUzEDTQOFipiFvdfQi.jpg", "order": 10}, {"name": "Josh Mostel", "character": "Arthur Brooks", "id": 33489, "credit_id": "52fe44d4c3a36847f80ac733", "cast_id": 23, "profile_path": "/jVG0WNJrTDEwETCDfoz0KxZ4vTd.jpg", "order": 11}, {"name": "Joseph Bologna", "character": "Lenny Koufax", "id": 46946, "credit_id": "52fe44d4c3a36847f80ac73b", "cast_id": 25, "profile_path": "/f1OqZUD63SaIRmjXOtAcoRRehsI.jpg", "order": 12}, {"name": "Peter Dante", "character": "Tommy Grayton", "id": 20819, "credit_id": "52fe44d4c3a36847f80ac73f", "cast_id": 26, "profile_path": "/RxersC0iawWjvjwGbYgGIDlCXy.jpg", "order": 13}, {"name": "Jonathan Loughran", "character": "Mike", "id": 58477, "credit_id": "52fe44d4c3a36847f80ac743", "cast_id": 27, "profile_path": "/glLP2I4fY5VCcfvMzuZROH3PuPe.jpg", "order": 14}, {"name": "Tim Herlihy", "character": "Singing Kangaroo", "id": 56728, "credit_id": "52fe44d4c3a36847f80ac747", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Edmund Lyndeck", "character": "Mr. Herlihy", "id": 111679, "credit_id": "52fe44d4c3a36847f80ac74b", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Larkin Malloy", "character": "Restaurant Owner", "id": 171986, "credit_id": "52fe44d4c3a36847f80ac74f", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Deborah S. Craig", "character": "Paralegal", "id": 1225349, "credit_id": "52fe44d4c3a36847f80ac753", "cast_id": 31, "profile_path": "/frzyta7LIaGMrwx79dHMmV7iSmp.jpg", "order": 18}, {"name": "Jared Sandler", "character": "Jared", "id": 60961, "credit_id": "54ee50f49251417961004a07", "cast_id": 32, "profile_path": "/8M9AQUMgNzu98pFgdaz1PeYRQaE.jpg", "order": 19}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe44d4c3a36847f80ac6c5", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.1, "runtime": 93}, "70578": {"poster_path": "/kZ7BE0Ob664ZFuFrWNTm9eu62qW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kyle (Nicholas Cage) and Sarah Miller (Nicole Kidman) have it all: a huge gated house on the water, fancy cars, and the potential for romance in their relationship. He's just back from a business trip (he brokers diamonds) and their teen daughter Avery (Liana Liberato) is sneaking out to a party, when four thugs in security uniforms and ski masks stage a home invasion. They want what's in the safe: cash and diamonds. As Kyle stalls them, trying to negotiate for Sarah's freedom, the fault lines in Kyle and Sarah's marriage and the pasts of the four robbers come into play. Is there room here for heroism?", "video": false, "id": 70578, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Trespass", "tagline": "When terror is at your doorstep. You can run. Or you can fight.", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1674784", "adult": false, "backdrop_path": "/Rr5uWWzovjB3zACUHcMJqzFuE3.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Nu Image Films", "id": 925}, {"name": "Winkler Films", "id": 8880}], "release_date": "2011-10-14", "popularity": 0.661637056974084, "original_title": "Trespass", "budget": 36000000, "cast": [{"name": "Nicolas Cage", "character": "Kyle", "id": 2963, "credit_id": "52fe4801c3a368484e0e4d75", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Cam Gigandet", "character": "Jonah Collins", "id": 55086, "credit_id": "52fe4801c3a368484e0e4d79", "cast_id": 4, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 1}, {"name": "Nicole Kidman", "character": "Sarah", "id": 2227, "credit_id": "52fe4801c3a368484e0e4d7d", "cast_id": 5, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 2}, {"name": "Liana Liberato", "character": "Avery", "id": 60458, "credit_id": "52fe4801c3a368484e0e4d81", "cast_id": 6, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 3}, {"name": "Nico Tortorella", "character": "Jake", "id": 127128, "credit_id": "52fe4801c3a368484e0e4d85", "cast_id": 7, "profile_path": "/A6H0K8h39LcpQpjjjBCoWekDiAf.jpg", "order": 4}, {"name": "Jordana Spiro", "character": "", "id": 39481, "credit_id": "52fe4801c3a368484e0e4d89", "cast_id": 8, "profile_path": "/5gpdURb63EivWf2alZawyd9PfNo.jpg", "order": 5}, {"name": "Dash Mihok", "character": "", "id": 6066, "credit_id": "52fe4801c3a368484e0e4d8d", "cast_id": 9, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 6}, {"name": "Ben Mendelsohn", "character": "", "id": 77335, "credit_id": "52fe4801c3a368484e0e4d91", "cast_id": 10, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 7}, {"name": "Tina Parker", "character": "Security Operator", "id": 147085, "credit_id": "52fe4801c3a368484e0e4d95", "cast_id": 12, "profile_path": "/5GrNurGSdSvQccO5jECtYZorWYu.jpg", "order": 8}, {"name": "Terry Milam", "character": "Travis", "id": 558902, "credit_id": "52fe4801c3a368484e0e4d99", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Gracie Whitton", "character": "Young Avery", "id": 558903, "credit_id": "52fe4801c3a368484e0e4d9d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Brandon Belknap", "character": "Dylan", "id": 558904, "credit_id": "52fe4801c3a368484e0e4da1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Emily Meade", "character": "Kendra", "id": 71815, "credit_id": "52fe4801c3a368484e0e4dab", "cast_id": 17, "profile_path": "/spevld4WoZYuY2hnjdysbKgxVNK.jpg", "order": 12}], "directors": [{"name": "Joel Schumacher", "department": "Directing", "job": "Director", "credit_id": "52fe4801c3a368484e0e4d6b", "profile_path": "/ijI5sCPqDvT18NRWCeBqw8BJIZx.jpg", "id": 5572}], "vote_average": 5.5, "runtime": 91}, "70586": {"poster_path": "/hSE2TZqF6x46Exo6Et5aCqPWtej.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of friends plan out a detailed heist that turns deadly when one betrays the other by taking off with the goods. Taking matters into his own hands, Sonny seeks out his revenge teaming up with the most dangerous mob boss in town to get back what is rightfully his. When he finally comes face to face with his longtime friend he will be forced to make a life changing choice.", "video": false, "id": 70586, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Setup", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1748197", "adult": false, "backdrop_path": "/dthg7KpdEnIC66JX1adKRgBWQYg.jpg", "production_companies": [{"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Paradox Entertainment", "id": 6819}, {"name": "Hedge Fund Film Partners", "id": 11449}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Gunny Entertainment", "id": 7788}], "release_date": "2011-11-04", "popularity": 0.868882377844417, "original_title": "Setup", "budget": 22000000, "cast": [{"name": "Bruce Willis", "character": "Biggs", "id": 62, "credit_id": "52fe4802c3a368484e0e5007", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Ryan Phillippe", "character": "Vincent", "id": 11864, "credit_id": "52fe4802c3a368484e0e500b", "cast_id": 5, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 1}, {"name": "James Remar", "character": "William", "id": 1736, "credit_id": "52fe4802c3a368484e0e500f", "cast_id": 7, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 2}, {"name": "50 Cent", "character": "Sonny", "id": 62644, "credit_id": "52fe4802c3a368484e0e5013", "cast_id": 8, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 3}, {"name": "Randy Couture", "character": "Petey", "id": 74748, "credit_id": "52fe4802c3a368484e0e5017", "cast_id": 9, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 4}, {"name": "Will Yun Lee", "character": "Joey", "id": 10884, "credit_id": "52fe4802c3a368484e0e501b", "cast_id": 10, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 5}, {"name": "Shaun Toub", "character": "Roth", "id": 17857, "credit_id": "52fe4802c3a368484e0e501f", "cast_id": 11, "profile_path": "/qRHZD8EdqeUor8A6tazJ3v3gxyD.jpg", "order": 6}, {"name": "Susie Abromeit", "character": "Valerie", "id": 108696, "credit_id": "52fe4802c3a368484e0e5023", "cast_id": 12, "profile_path": "/cQt1gS5hSxIdR1MYUDHRV0Oq3fq.jpg", "order": 7}, {"name": "Jay Karnes", "character": "Russel", "id": 155934, "credit_id": "52fe4802c3a368484e0e5027", "cast_id": 13, "profile_path": "/iKhmGyHtIutZ8XNMDPiwgyUkZay.jpg", "order": 8}, {"name": "Jordan Trovillion", "character": "Kelli", "id": 558923, "credit_id": "52fe4802c3a368484e0e502b", "cast_id": 14, "profile_path": "/qjmARKyWhlx0tPFH0ZTqC2agxtW.jpg", "order": 9}, {"name": "Ambyr Childers", "character": "Haliey", "id": 75330, "credit_id": "52fe4802c3a368484e0e502f", "cast_id": 15, "profile_path": "/lfhwhgH2iTUvMjZhJNovgxLVtDH.jpg", "order": 10}, {"name": "Omar J. Dorsey", "character": "G Money", "id": 59844, "credit_id": "52fe4802c3a368484e0e5033", "cast_id": 16, "profile_path": "/20Lrh4XaRrNEMapJGMl9uToHSQn.jpg", "order": 11}, {"name": "Theo Kypri", "character": "The Courier", "id": 202955, "credit_id": "52fe4802c3a368484e0e5037", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Richard Goteri", "character": "John R", "id": 133284, "credit_id": "52fe4802c3a368484e0e503b", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Jenna Dewan", "character": "Mia", "id": 20381, "credit_id": "52fe4802c3a368484e0e5051", "cast_id": 22, "profile_path": "/j8BeJ5VL3jp7JWxgYlZPUscP6FC.jpg", "order": 14}], "directors": [{"name": "Mike Gunther", "department": "Directing", "job": "Director", "credit_id": "52fe4802c3a368484e0e5041", "profile_path": null, "id": 131413}], "vote_average": 4.9, "runtime": 85}, "218043": {"poster_path": "/lWf8po2lGleVuzRB4lpHavVT1Lv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small group of survivors are left behind after millions of people suddenly vanish during the rapture and the world is plunged into chaos and destruction.", "video": false, "id": 218043, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Left Behind", "tagline": "The End Begins", "vote_count": 104, "homepage": "http://www.leftbehindmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2467046", "adult": false, "backdrop_path": "/oUZn1QXB7FTqMBnM7GdqK5PFNzn.jpg", "production_companies": [{"name": "Entertainment One", "id": 8147}, {"name": "Stoney Lake Entertainment", "id": 16558}], "release_date": "2014-10-03", "popularity": 2.2151447599627, "original_title": "Left Behind", "budget": 15000000, "cast": [{"name": "Nicolas Cage", "character": "Rayford Steele", "id": 2963, "credit_id": "52fe4e43c3a368484e216ffd", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Chad Michael Murray", "character": "Buck Williams", "id": 62747, "credit_id": "53398ddf9251417da4004911", "cast_id": 9, "profile_path": "/8lYQrBuk54E5zaEmaBZFtZHY4UA.jpg", "order": 1}, {"name": "Lea Thompson", "character": "Irene Steele", "id": 1063, "credit_id": "53398de89251417d9e00496a", "cast_id": 10, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 2}, {"name": "Nicky Whelan", "character": "Hattie Durham", "id": 212833, "credit_id": "53398df49251417daa004934", "cast_id": 11, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 3}, {"name": "Martin Klebba", "character": "Melvin Weir", "id": 4030, "credit_id": "53398e039251417da4004913", "cast_id": 12, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 4}, {"name": "Cassie Thompson", "character": "Chloe Steele", "id": 1305985, "credit_id": "53398e109251417d9b004b43", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Quinton Aaron", "character": "Simon", "id": 112560, "credit_id": "53398e67c3a3680e76006244", "cast_id": 14, "profile_path": "/5NeAJi2BTY4f75zTVSgGPnZZUa6.jpg", "order": 6}, {"name": "Jordin Sparks", "character": "Shasta Carvell", "id": 224842, "credit_id": "53398e72c3a3680e8f006338", "cast_id": 15, "profile_path": "/sxm6XsbIpW6ZOwycvFDrY46tl7s.jpg", "order": 7}, {"name": "Gary Grubbs", "character": "Dennis", "id": 68180, "credit_id": "53398e7cc3a3680e690062b0", "cast_id": 16, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 8}, {"name": "William Ragsdale", "character": "Chris Smith", "id": 31467, "credit_id": "53398e8bc3a3680e690062b2", "cast_id": 17, "profile_path": "/njtQMv0vm9uNzSdVTqjYTu1TzNd.jpg", "order": 9}, {"name": "Stephanie Honor\u00e9", "character": "Kimmy", "id": 94427, "credit_id": "53398e9bc3a3680e8f00633c", "cast_id": 18, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 10}, {"name": "Lolo Jones", "character": "Lori", "id": 1253634, "credit_id": "54bc41749251411d6a009a91", "cast_id": 72, "profile_path": null, "order": 11}], "directors": [{"name": "Vic Armstrong", "department": "Directing", "job": "Director", "credit_id": "52fe4e43c3a368484e217003", "profile_path": null, "id": 15358}], "vote_average": 3.9, "runtime": 110}, "37821": {"poster_path": "/m2wrmME95SF1hsqvMpAyNXeghOl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98159963, "overview": "When an elite assassin marries a beautiful computer whiz after a whirlwind romance, he gives up the gun and settles down with his new bride. That is, until he learns that someone from his past has put a contract out on his life.", "video": false, "id": 37821, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Killers", "tagline": "One Day Is Enough For You!", "vote_count": 245, "homepage": "http://killersfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1103153", "adult": false, "backdrop_path": "/tcv1qOo2k6ifKjz9hD2oTYtrsOq.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2010-06-04", "popularity": 0.920999470914114, "original_title": "Killers", "budget": 75000000, "cast": [{"name": "Katherine Heigl", "character": "Jen Kornfeldt", "id": 25541, "credit_id": "52fe46719251416c91054a15", "cast_id": 4, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Spencer Aimes", "id": 18976, "credit_id": "52fe46719251416c91054a19", "cast_id": 5, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Tom Selleck", "character": "Mr. Kornfeldt", "id": 15112, "credit_id": "52fe46719251416c91054a1d", "cast_id": 6, "profile_path": "/au3wlNaGUSLZD46DJFGRuJ0CBVe.jpg", "order": 2}, {"name": "Catherine O'Hara", "character": "", "id": 11514, "credit_id": "52fe46719251416c91054a21", "cast_id": 7, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 3}, {"name": "Alex Borstein", "character": "Mrs. Baily", "id": 24357, "credit_id": "52fe46719251416c91054a25", "cast_id": 8, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 3}, {"name": "Katheryn Winnick", "character": "Vivian", "id": 26723, "credit_id": "52fe46719251416c91054a29", "cast_id": 9, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 4}, {"name": "Rob Riggle", "character": "Henry", "id": 71403, "credit_id": "52fe46719251416c91054a2d", "cast_id": 10, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 5}, {"name": "Kevin Sussman", "character": "Mac Bailey", "id": 60633, "credit_id": "52fe46719251416c91054a31", "cast_id": 11, "profile_path": "/zOOZhDHHj4oWH9jOhZrfNs1eWE8.jpg", "order": 6}, {"name": "Martin Mull", "character": "", "id": 80742, "credit_id": "52fe46719251416c91054a35", "cast_id": 12, "profile_path": "/obAhtaUNUgRMoIQpbFLYTBSTEHq.jpg", "order": 7}, {"name": "Larry Joe Campbell", "character": "Pete Denham", "id": 118590, "credit_id": "52fe46719251416c91054a39", "cast_id": 13, "profile_path": "/91kXO2XCIv8B9bP3720QIrTJNfs.jpg", "order": 8}, {"name": "Lisa Ann Walter", "character": "Olivia", "id": 4494, "credit_id": "52fe46719251416c91054a3d", "cast_id": 14, "profile_path": "/xo2yfPjdxos0b0R9DRdY6BA12kr.jpg", "order": 9}, {"name": "Mary Birdsong", "character": "Jackie Vallero", "id": 63232, "credit_id": "52fe46719251416c91054a41", "cast_id": 15, "profile_path": "/oBXCCLgt3q2KDVQ7Ge6BWANJHZz.jpg", "order": 10}, {"name": "Casey Wilson", "character": "Kristen", "id": 83872, "credit_id": "52fe46719251416c91054a45", "cast_id": 16, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 11}, {"name": "Natalina Maggio", "character": "European Model", "id": 118591, "credit_id": "52fe46719251416c91054a49", "cast_id": 17, "profile_path": "/zvwfXocXHyA8zB7pOkdh4yDsMoK.jpg", "order": 12}, {"name": "Letoya Luckett", "character": "Amanda", "id": 93528, "credit_id": "52fe46719251416c91054a4d", "cast_id": 18, "profile_path": "/8MPHavBhHCHVGJnEMu7bxr5HdIF.jpg", "order": 13}, {"name": "Lauren Glazier", "character": "Flavie - Head flight attendant", "id": 118592, "credit_id": "52fe46719251416c91054a51", "cast_id": 19, "profile_path": "/bvpmxumWqD9K5MoNzGtEvavlQXu.jpg", "order": 14}, {"name": "Anna Colwell", "character": "Pretty Girl", "id": 118593, "credit_id": "52fe46719251416c91054a55", "cast_id": 20, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 15}, {"name": "Elena Kolpachikova", "character": "Model", "id": 118594, "credit_id": "52fe46719251416c91054a59", "cast_id": 21, "profile_path": "/boVYF8emBKxwAK1tSRF1bOObR4H.jpg", "order": 16}, {"name": "Ric Reitz", "character": "Dougie Vollero", "id": 118595, "credit_id": "52fe46719251416c91054a5d", "cast_id": 22, "profile_path": "/oxskVXgWJ8EkbCxuuF7OeHPxeaA.jpg", "order": 17}, {"name": "Jean-Michel Richaud", "character": "Pilot", "id": 59060, "credit_id": "52fe46719251416c91054a61", "cast_id": 23, "profile_path": "/hUBf7t28fATtiBIsGhMpepN6Iu5.jpg", "order": 18}, {"name": "Marvin Baldwin Jr.", "character": "Eagle Mascot", "id": 118596, "credit_id": "52fe46719251416c91054a65", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Lukas Delcourt", "character": "European model", "id": 118597, "credit_id": "52fe46719251416c91054a69", "cast_id": 25, "profile_path": "/dPeYYfdX7jA5Rw6zcniVn6bajvS.jpg", "order": 20}, {"name": "Yan Dron", "character": "Guard", "id": 118598, "credit_id": "52fe46719251416c91054a6d", "cast_id": 26, "profile_path": "/m4rLzOWGcz9hJMSZ8smNdavVQo.jpg", "order": 21}, {"name": "Matt Murphy", "character": "Model", "id": 7209, "credit_id": "52fe46719251416c91054a71", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Michael Daniel Cassady", "character": "Milo", "id": 118599, "credit_id": "52fe46719251416c91054a75", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "John Charles", "character": "Model chris", "id": 64101, "credit_id": "52fe46719251416c91054a79", "cast_id": 29, "profile_path": null, "order": 24}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe46719251416c91054a05", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 5.9, "runtime": 100}, "9035": {"poster_path": "/oRwHmH4cPRAiCsMUCGaCwZQz0Jg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.", "video": false, "id": 9035, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Slither", "tagline": "Horror Has A New Face", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0439815", "adult": false, "backdrop_path": "/mMmGK5gEPATupYNprpRVUtUshu4.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2006-03-31", "popularity": 0.471084018690855, "original_title": "Slither", "budget": 15500000, "cast": [{"name": "Nathan Fillion", "character": "Bill Pardy", "id": 51797, "credit_id": "52fe44d4c3a36847f80ac88d", "cast_id": 1, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 0}, {"name": "Don Thompson", "character": "Wally", "id": 56749, "credit_id": "52fe44d4c3a36847f80ac891", "cast_id": 2, "profile_path": "/gw4gG6uN4IItV0OeAWYFftmxvRn.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Starla Grant", "id": 9281, "credit_id": "52fe44d4c3a36847f80ac895", "cast_id": 3, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Gregg Henry", "character": "Jack MacReady", "id": 2518, "credit_id": "52fe44d4c3a36847f80ac899", "cast_id": 4, "profile_path": "/ltCW4AenmpuDau3x5etBkGxiCkV.jpg", "order": 3}, {"name": "Xantha Radley", "character": "Uptight Mom", "id": 56750, "credit_id": "52fe44d4c3a36847f80ac89d", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Michael Rooker", "character": "Grant", "id": 12132, "credit_id": "52fe44d4c3a36847f80ac8bf", "cast_id": 11, "profile_path": "/bvmf7TIjCyRPrBNrmZ5qyePTL5y.jpg", "order": 5}, {"name": "Tania Saulnier", "character": "Kylie Strutemyer", "id": 59244, "credit_id": "52fe44d4c3a36847f80ac8c3", "cast_id": 12, "profile_path": "/bEMuffxifJMZkcAmZ2J9NbHehJu.jpg", "order": 6}, {"name": "Magda Apanowicz", "character": "Friend", "id": 189026, "credit_id": "52fe44d4c3a36847f80ac8c7", "cast_id": 13, "profile_path": "/zDNKxuN8Gk5rwx3CiybTYCevLmN.jpg", "order": 7}, {"name": "Dustin Milligan", "character": "Drawing Boy", "id": 53117, "credit_id": "52fe44d4c3a36847f80ac8d1", "cast_id": 15, "profile_path": "/yn0g5VpGYwuTcIl9BK5gc8bWXmg.jpg", "order": 8}, {"name": "Zak Ludwig", "character": "Gina Kid", "id": 146557, "credit_id": "52fe44d4c3a36847f80ac8d5", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Brenda James", "character": "Brenda Gutierrez", "id": 77898, "credit_id": "54dcf28b92514155bb001f7b", "cast_id": 20, "profile_path": null, "order": 10}], "directors": [{"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe44d4c3a36847f80ac8a3", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}], "vote_average": 5.8, "runtime": 95}, "13253": {"poster_path": "/1oVWiArGNCumqeK0e7i4FgMOGPt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Leela is insulted by a group of space-rednecks (like regular rednecks, but in space) she enters the Planet Express ship in a demolition derby. She emerges victorious, but when she brings the damaged ship home and the Professor sees the fuel gauge, he's enraged by the hit he's going to take at the Dark Matter pump. Now the crew have to find a way to break Mom's stranglehold on starship fuel, even if they have to wade through a Lord of the Rings-inspired fantasy-land to do it!", "video": false, "id": 13253, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Futurama: Bender's Game", "tagline": "All-New Feature-Length Quest", "vote_count": 50, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wZ1Xuwhu4hbcHPAAZz9sFTIZTKX.jpg", "poster_path": "/vkrtsW1Fyzu4rRpWYz2ybDfKXb0.jpg", "id": 13800, "name": "Futurama Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1054486", "adult": false, "backdrop_path": "/pQv2QhmQr0lUM1U6jwLRPWyz5eV.jpg", "production_companies": [{"name": "20th Century Fox Television", "id": 16323}], "release_date": "2008-11-03", "popularity": 0.402388765878439, "original_title": "Futurama: Bender's Game", "budget": 0, "cast": [{"name": "Billy West", "character": "Philip J. Fry (voice)", "id": 23679, "credit_id": "52fe45539251416c75052ac5", "cast_id": 1, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 0}, {"name": "Katey Sagal", "character": "Turanga Leela (voice)", "id": 18980, "credit_id": "52fe45539251416c75052ac9", "cast_id": 2, "profile_path": "/35sEVpaGxVIfd9wJIJ0iNxz5llN.jpg", "order": 1}, {"name": "John Di Maggio", "character": "Bender (voice)", "id": 31531, "credit_id": "52fe45539251416c75052acd", "cast_id": 3, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 2}, {"name": "Phil LaMarr", "character": "Hermes Conrad (voice)", "id": 31549, "credit_id": "52fe45539251416c75052ad1", "cast_id": 4, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 3}, {"name": "Lauren Tom", "character": "Amy Wong (voice)", "id": 15100, "credit_id": "52fe45539251416c75052ad5", "cast_id": 5, "profile_path": "/oXU7sZOTjlALqz3UYYi2sWBAYAl.jpg", "order": 4}, {"name": "Tress MacNeille", "character": "Mom (voice)", "id": 34983, "credit_id": "52fe45539251416c75052ad9", "cast_id": 6, "profile_path": "/4abcX0gAhxoHluUI2nPLsEvsnKa.jpg", "order": 5}], "directors": [{"name": "Dwayne Carey-Hill", "department": "Directing", "job": "Director", "credit_id": "52fe45539251416c75052adf", "profile_path": null, "id": 53216}], "vote_average": 6.8, "runtime": 88}, "37834": {"poster_path": "/aumRtkfr9nNz06onPvhX9JtR5EI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 261930431, "overview": "An action-comedy centered on a fugitive couple on a glamorous and sometimes deadly adventure where nothing and no one - even themselves - are what they seem. Amid shifting alliances and unexpected betrayals, they race across the globe, with their survival ultimately hinging on the battle of truth vs. trust.", "video": false, "id": 37834, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Knight and Day", "tagline": "Every Hit Man Deserves a Second Shot!", "vote_count": 589, "homepage": "http://www.knightanddaymovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1013743", "adult": false, "backdrop_path": "/sSeo9o603MABEbAv8BGkgbLn0om.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}, {"name": "Tree Line Films", "id": 84}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2010-06-23", "popularity": 1.17299817130675, "original_title": "Knight and Day", "budget": 107000000, "cast": [{"name": "Tom Cruise", "character": "Roy Miller", "id": 500, "credit_id": "52fe46739251416c91054d65", "cast_id": 3, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "June Havens", "id": 6941, "credit_id": "52fe46739251416c91054d69", "cast_id": 4, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Fitzgerald", "id": 133, "credit_id": "52fe46739251416c91054d6d", "cast_id": 5, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Maggie Grace", "character": "April Havens", "id": 11825, "credit_id": "52fe46739251416c91054d71", "cast_id": 6, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 3}, {"name": "Marc Blucas", "character": "Rodney", "id": 46772, "credit_id": "52fe46739251416c91054d75", "cast_id": 8, "profile_path": "/5OdBu0DFKca1mxjeqNruz00DSRF.jpg", "order": 5}, {"name": "Viola Davis", "character": "Isabel George - C.I.A. Director", "id": 19492, "credit_id": "52fe46739251416c91054d79", "cast_id": 9, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 6}, {"name": "Jordi Moll\u00e0", "character": "Antonio", "id": 31384, "credit_id": "52fe46739251416c91054d7d", "cast_id": 10, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 7}, {"name": "Dale Dye", "character": "Frank", "id": 3211, "credit_id": "52fe46739251416c91054d81", "cast_id": 11, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 8}, {"name": "Stream", "character": "Wichita Airport Traveller", "id": 118641, "credit_id": "52fe46739251416c91054d85", "cast_id": 12, "profile_path": "/wWsfCbQQyp90r3cSM5C5e9vVEyF.jpg", "order": 9}, {"name": "Liam Ferguson", "character": "Military Pilot", "id": 118642, "credit_id": "52fe46739251416c91054d89", "cast_id": 13, "profile_path": "/fTuiwoqkHCG7cMKSraEim1Xx7qi.jpg", "order": 10}, {"name": "Nicole Signore", "character": "Wedding Guest", "id": 118380, "credit_id": "52fe46739251416c91054d8d", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Falk Hentschel", "character": "Bernardo", "id": 118643, "credit_id": "52fe46739251416c91054d91", "cast_id": 15, "profile_path": "/6NFuHgdtpJ6dY8wqZ8CV95N82Z7.jpg", "order": 12}, {"name": "Hugo Garcia", "character": "Bull Runner", "id": 118644, "credit_id": "52fe46739251416c91054d95", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Mark Wallace", "character": "Smuggler", "id": 71568, "credit_id": "52fe46739251416c91054d99", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Jerrell Lee", "character": "Fireman Paul", "id": 118645, "credit_id": "52fe46739251416c91054d9d", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Brian Dykstra", "character": "TSA Agent", "id": 118646, "credit_id": "52fe46739251416c91054da1", "cast_id": 19, "profile_path": "/bxBIJGZ4L6D9ejVxcRPAJl6IZg0.jpg", "order": 16}, {"name": "Kal Thompson", "character": "Cop", "id": 118647, "credit_id": "52fe46739251416c91054da5", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Matthew Lawler", "character": "Passerby Agent", "id": 118648, "credit_id": "52fe46739251416c91054da9", "cast_id": 21, "profile_path": null, "order": 18}, {"name": "Paul Dano", "character": "Simon Feck", "id": 17142, "credit_id": "52fe46739251416c91054dad", "cast_id": 22, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 19}, {"name": "Gal Gadot", "character": "Naomi", "id": 90633, "credit_id": "52fe46739251416c91054db1", "cast_id": 23, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 20}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe46739251416c91054d5b", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 5.8, "runtime": 109}, "13260": {"poster_path": "/rb4QrpOCwWOm0Iw2E4GAkVoqnWi.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33472850, "overview": "Jackie Moon is the owner, promoter, coach, and star player of the Flint Michigan Tropics of the American Basketball Association (ABA). In 1976 before the ABA collapses, the National Basketball Association (NBA) plans to merge with the best teams of the ABA at the end of the season. Only the top four teams will make the move and the worst teams will fold. The Tropics are the worst team in the league and if they want to make it to the NBA, Jackie Moon must rally his team and start winning. The only problem is the fact that Jackie Moon is not really the coach and star basketball player he thinks he is. To keep his team from oblivion and leave his mark in the city, Jackie Moon must inspire his team to win fourth place in the playoffs.", "video": false, "id": 13260, "genres": [{"id": 35, "name": "Comedy"}], "title": "Semi-Pro", "tagline": "Putting the funk into the dunk.", "vote_count": 57, "homepage": "http://newline.com/properties/semipro.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0839980", "adult": false, "backdrop_path": "/bfrQP3UFMunyXHlTkwe5nYTMgxp.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mosaic Media Group", "id": 748}, {"name": "Donners' Company", "id": 431}, {"name": "Road Rebel", "id": 2648}], "release_date": "2008-02-28", "popularity": 0.322245215639978, "original_title": "Semi-Pro", "budget": 0, "cast": [{"name": "Will Ferrell", "character": "Jackie Moon", "id": 23659, "credit_id": "52fe45549251416c75052c67", "cast_id": 2, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Maura Tierney", "character": "Lynn", "id": 16307, "credit_id": "52fe45549251416c75052c6b", "cast_id": 3, "profile_path": "/sG8ZxJtdMoNlBOOkMZVABxSH5F0.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Monix", "id": 57755, "credit_id": "52fe45549251416c75052c6f", "cast_id": 4, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "David Koechner", "character": "Commissioner", "id": 28638, "credit_id": "52fe45549251416c75052c73", "cast_id": 5, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 3}, {"name": "Will Arnett", "character": "Lou Redwood", "id": 21200, "credit_id": "52fe45549251416c75052c77", "cast_id": 6, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 4}, {"name": "Andr\u00e9 Benjamin", "character": "Clarence", "id": 37934, "credit_id": "52fe45549251416c75052c7b", "cast_id": 7, "profile_path": "/s8oSgAIzuzsDhp0JhKhozJyCNme.jpg", "order": 5}, {"name": "Andy Richter", "character": "Bobby Dee", "id": 28637, "credit_id": "52fe45549251416c75052c7f", "cast_id": 8, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 6}, {"name": "Rob Corddry", "character": "Kyle", "id": 52997, "credit_id": "52fe45549251416c75052c83", "cast_id": 9, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 7}, {"name": "Tim Meadows", "character": "Cornelius", "id": 51857, "credit_id": "52fe45549251416c75052c87", "cast_id": 10, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 8}, {"name": "Jackie Earle Haley", "character": "Dukes", "id": 17183, "credit_id": "52fe45549251416c75052c8b", "cast_id": 11, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 9}, {"name": "Matt Walsh", "character": "Father Pat", "id": 59841, "credit_id": "52fe45549251416c75052c8f", "cast_id": 12, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 10}, {"name": "Kristen Wiig", "character": "", "id": 41091, "credit_id": "52fe45549251416c75052c93", "cast_id": 13, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 11}, {"name": "Andrew Daly", "character": "Dick Pepperfield", "id": 95875, "credit_id": "52fe45549251416c75052c97", "cast_id": 14, "profile_path": "/1jUiCZOJOGE1LKBCaeMkrNceSj0.jpg", "order": 12}, {"name": "DeRay Davis", "character": "Bee Bee Ellis", "id": 11827, "credit_id": "52fe45549251416c75052c9b", "cast_id": 15, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 13}], "directors": [{"name": "Kent Alterman", "department": "Directing", "job": "Director", "credit_id": "52fe45549251416c75052c63", "profile_path": "/wA2LUif3K2ApfzBNwQfu0HoZqcp.jpg", "id": 65702}], "vote_average": 5.2, "runtime": 91}, "33613": {"poster_path": "/npbvrALDJ48MjXec5ZELpYvaAGs.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 4670000, "overview": "After taking a bullet to the head, Salander is under close supervision in a hospital and is set to face trial for attempted murder on her eventual release. With the help of journalist Mikael Blomkvist and his researchers at Millennium magazine, Salander must prove her innocence. In doing this she plays against powerful enemies and her own past.", "video": false, "id": 33613, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl Who Kicked the Hornet's Nest", "tagline": "There's A Storm Coming", "vote_count": 166, "homepage": "http://dragontattoofilm.com/", "belongs_to_collection": {"backdrop_path": "/9wLsZPhI7ZafO4fh1MhwCjvkclN.jpg", "poster_path": "/sLeE5pwX9cle1v1TpBylT9MeYJ2.jpg", "id": 24761, "name": "The Millennium Collection"}, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1343097", "adult": false, "backdrop_path": "/99aGSGxYHWnSdemNv1niGD8U99G.jpg", "production_companies": [{"name": "ZDF Enterprises", "id": 5747}, {"name": "Nordisk Film", "id": 235}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Yellow Bird Films", "id": 5746}, {"name": "Film i V\u00e4st", "id": 17513}], "release_date": "2009-11-27", "popularity": 0.460734406307887, "original_title": "Luftslottet som spr\u00e4ngdes", "budget": 4000000, "cast": [{"name": "Michael Nyqvist", "character": "Mikael Blomkvist", "id": 6283, "credit_id": "52fe45299251416c910297ef", "cast_id": 1, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Lisbeth Salander", "id": 87722, "credit_id": "52fe45299251416c910297f3", "cast_id": 2, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Lena Endre", "character": "Erika Berger", "id": 79196, "credit_id": "52fe45299251416c910297fd", "cast_id": 6, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 2}, {"name": "Annika Hallin", "character": "Annika Giannini", "id": 79270, "credit_id": "52fe45299251416c9102980d", "cast_id": 10, "profile_path": "/xvbhvw0Zt8SCNXVApudzZfd6X2p.jpg", "order": 3}, {"name": "Jacob Ericksson", "character": "Christer Malm", "id": 83895, "credit_id": "52fe45299251416c91029819", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Sofia Ledarp", "character": "Malin Erikson", "id": 83899, "credit_id": "52fe45299251416c91029801", "cast_id": 7, "profile_path": "/wYtfaMlSFX7iDpk00xtVuz0Hzof.jpg", "order": 5}, {"name": "Anders Ahlbom", "character": "Peter Teleborian", "id": 112594, "credit_id": "52fe45299251416c91029825", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Micke Spreitz", "character": "Ronald Niedermann", "id": 92644, "credit_id": "53d4f05b0e0a262844003cf7", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Georgi Staykov", "character": "Alexander Zalachenko", "id": 92645, "credit_id": "52fe45299251416c91029805", "cast_id": 8, "profile_path": "/uuf8Vkg1hU3jeT1gE0H98UE56Lz.jpg", "order": 8}, {"name": "Mirja Turestedt", "character": "Monica Figuerola", "id": 106656, "credit_id": "52fe45299251416c91029809", "cast_id": 9, "profile_path": "/4ZRr0LogwCVK7rUQfc4FOQn0nCx.jpg", "order": 9}, {"name": "Hans Alfredson", "character": "Evert Gullberg", "id": 70069, "credit_id": "52fe45299251416c91029835", "cast_id": 20, "profile_path": "/4x25gOplWMbkpq1upKbRw8FqJ4R.jpg", "order": 10}, {"name": "Lennart Hjulstr\u00f6m", "character": "Fredrik Clinton", "id": 92422, "credit_id": "52fe45299251416c91029839", "cast_id": 21, "profile_path": "/cVsZDcBDb5gr16JBl11lHzpxdMA.jpg", "order": 11}, {"name": "Niklas Hjulstr\u00f6m", "character": "Richard Ekstr\u00f6m", "id": 107577, "credit_id": "52fe45299251416c91029831", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Johan Kyl\u00e9n", "character": "Jan Bublanski", "id": 135691, "credit_id": "52fe45299251416c9102981d", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Tanja Lorentzon", "character": "Sonja Modig", "id": 106659, "credit_id": "52fe45299251416c91029821", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Magnus Krepper", "character": "Hans Faste", "id": 143391, "credit_id": "52fe45299251416c91029829", "cast_id": 17, "profile_path": "/iHJ5HM0bV5UfogcOobnKJtyJklf.jpg", "order": 15}, {"name": "Michalis Koutsogiannakis", "character": "Dragan Armanskij", "id": 92897, "credit_id": "52fe45299251416c9102982d", "cast_id": 18, "profile_path": "/ne1BlRr5i2yFTC7vj8MQoznACPf.jpg", "order": 16}, {"name": "Jacob Nordenson", "character": "Bertil Wadensj\u00f6", "id": 81212, "credit_id": "52fe45299251416c91029855", "cast_id": 29, "profile_path": "/hNEFz1s2ZjJFtSRYY2MxmNwuGIY.jpg", "order": 17}, {"name": "Peter Andersson", "character": "Nils Bjurman", "id": 21193, "credit_id": "52fe45299251416c91029815", "cast_id": 12, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 18}, {"name": "Tomas K\u00f6hler", "character": "'Plague'", "id": 87727, "credit_id": "53d4f1380e0a262838003d72", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Per Oscarsson", "character": "Holger Palmgren", "id": 3855, "credit_id": "52fe45299251416c91029811", "cast_id": 11, "profile_path": "/qCSUP6c7jz8kgJrGEX4tKDf8emr.jpg", "order": 20}], "directors": [{"name": "Daniel Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe45299251416c910297f9", "profile_path": "/252U4sFKLzHLb53Lha2pG5D01Gb.jpg", "id": 76325}], "vote_average": 6.8, "runtime": 147}, "144336": {"poster_path": "/lXBgKwtEKYiIrpyHvpD8BUqYNxm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17508518, "overview": "In \"Sabotage\", Arnold Schwarzenegger leads an elite DEA task force that takes on the world's deadliest drug cartels. When the team successfully executes a high-stakes raid on a cartel safe house, they think their work is done - until, one-by-one, the team members mysteriously start to be eliminated. As the body count rises, everyone is a suspect.", "video": false, "id": 144336, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sabotage", "tagline": "Leave no loose ends", "vote_count": 214, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1742334", "adult": false, "backdrop_path": "/zb0zgDuXC25zMGyiPeOiFDEHvmi.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "QED International", "id": 11029}, {"name": "Albert S. Ruddy Productions", "id": 16311}, {"name": "Crave Films", "id": 16312}, {"name": "Roth Films", "id": 16314}], "release_date": "2014-03-28", "popularity": 1.56759886496682, "original_title": "Sabotage", "budget": 35000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "John 'Breacher' Wharton", "id": 1100, "credit_id": "52fe4b2e9251416c750faf03", "cast_id": 9, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Sam Worthington", "character": "James 'Monster' Murray", "id": 65731, "credit_id": "52fe4b2e9251416c750faf07", "cast_id": 10, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Mireille Enos", "character": "Lizzy Murray", "id": 175826, "credit_id": "52fe4b2e9251416c750faf0f", "cast_id": 12, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 3}, {"name": "Joe Manganiello", "character": "Joe 'Grinder' Phillips", "id": 20580, "credit_id": "52fe4b2e9251416c750faf13", "cast_id": 13, "profile_path": "/tYJSo5dSZEZjvcTKySnkYHMEb2J.jpg", "order": 4}, {"name": "Harold Perrineau", "character": "Jackson", "id": 6195, "credit_id": "52fe4b2e9251416c750faf17", "cast_id": 14, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 5}, {"name": "Josh Holloway", "character": "Eddie 'Neck' Jordan", "id": 142636, "credit_id": "52fe4b2e9251416c750faf1b", "cast_id": 15, "profile_path": "/4vMj8zIMSZoxxXefanh5SuEDDJ6.jpg", "order": 6}, {"name": "Terrence Howard", "character": "Julius 'Sugar' Edmonds", "id": 18288, "credit_id": "52fe4b2e9251416c750faf1f", "cast_id": 16, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 7}, {"name": "Olivia Williams", "character": "Investigator Caroline Brentwood", "id": 11616, "credit_id": "52fe4b2e9251416c750faf23", "cast_id": 17, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 8}, {"name": "Max Martini", "character": "Tom 'Pyro' Roberts", "id": 94864, "credit_id": "52fe4b2e9251416c750faf27", "cast_id": 18, "profile_path": "/fUGKNDsQnKCLzNrWyyBkx7O26XC.jpg", "order": 9}, {"name": "Kevin Vance", "character": "Bryce 'Tripod' McNeely", "id": 1345133, "credit_id": "53ceca2bc3a36877610054b5", "cast_id": 19, "profile_path": "/tS7SsfqYiODwobJItpzrykMKDiD.jpg", "order": 10}, {"name": "Mark Schlegel", "character": "'Smoke' Jennings", "id": 1345134, "credit_id": "53ceca4fc3a36877640054d8", "cast_id": 20, "profile_path": "/5Jmf3MSGKYXjJmSwL2vP7DUIyyq.jpg", "order": 11}, {"name": "Maurice Compte", "character": "Sapo", "id": 48530, "credit_id": "53ceca6bc3a36877610054ba", "cast_id": 21, "profile_path": "/gt8vrkSOmv4dt5AfIcVsevNQ05b.jpg", "order": 12}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe4b2e9251416c750faed5", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 5.6, "runtime": 110}, "242643": {"poster_path": "/jY5DEgyMmHUh4AbWTu6pOb5g7vk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Based on the hit video game series, Batman must find a bomb planted by the Joker while dealing with a mysterious team of villains called, The Suicide Squad.", "video": false, "id": 242643, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Batman: Assault on Arkham", "tagline": "Get ready to root for the bad guys.", "vote_count": 81, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3139086", "adult": false, "backdrop_path": "/jRGKbaBcsb7mfqLeLpBxPe1Mufc.jpg", "production_companies": [{"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Premiere", "id": 4811}], "release_date": "2014-08-12", "popularity": 0.297771112159312, "original_title": "Batman: Assault on Arkham", "budget": 0, "cast": [{"name": "Kevin Conroy", "character": "Batman / Bruce Wayne", "id": 34947, "credit_id": "535192d20e0a26561400197f", "cast_id": 0, "profile_path": "/oWfPFRH65zNdeV46zSTXD0jVr8q.jpg", "order": 0}, {"name": "Neal McDonough", "character": "Floyd Lawton / Deadshot", "id": 2203, "credit_id": "537d3679c3a368059e000041", "cast_id": 11, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 1}, {"name": "Matthew Gray Gubler", "character": "Riddler", "id": 5661, "credit_id": "53e182c3c3a3686d18000200", "cast_id": 23, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 2}, {"name": "Hynden Walch", "character": "Harley Quinn", "id": 113919, "credit_id": "53e181ddc3a3686d260001f8", "cast_id": 22, "profile_path": "/gCHMyVwt2vlQt3AYPfoknVmklXI.jpg", "order": 3}, {"name": "Troy Baker", "character": "The Joker", "id": 963818, "credit_id": "5351937a0e0a26560e0019ad", "cast_id": 1, "profile_path": "/akfCaU7Gsxft4gd4B7zjtqshjux.jpg", "order": 4}, {"name": "Chris Cox", "character": "Commissioner Gordon", "id": 136930, "credit_id": "53e182f80e0a260af000034d", "cast_id": 24, "profile_path": null, "order": 5}, {"name": "John DiMaggio", "character": "King Shark", "id": 294916, "credit_id": "53e183530e0a260af9000319", "cast_id": 28, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 6}, {"name": "Greg Ellis", "character": "Captain Boomerang", "id": 4031, "credit_id": "53e183e30e0a260af600032b", "cast_id": 29, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 7}, {"name": "Giancarlo Esposito", "character": "Black Spider", "id": 4808, "credit_id": "537d36efc3a36805a1000046", "cast_id": 15, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 8}, {"name": "Jennifer Hale", "character": "Killer Frost", "id": 81667, "credit_id": "53e184120e0a260af6000335", "cast_id": 30, "profile_path": "/vwantt41egRhjHCpI0ypyboXYga.jpg", "order": 9}, {"name": "Martin Jarvis", "character": "Alfred Pennyworth", "id": 126363, "credit_id": "535194610e0a265611001a61", "cast_id": 6, "profile_path": "/215m6UHCFodTbvhnNi2cGWcUZWT.jpg", "order": 10}, {"name": "Nolan North", "character": "Penguin / Oswald Cobblepot", "id": 19508, "credit_id": "535193f50e0a2656030019ec", "cast_id": 4, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 11}, {"name": "C. C. H. Pounder", "character": "Amanda Waller", "id": 30485, "credit_id": "537d3693c3a368059b000032", "cast_id": 12, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 12}], "directors": [{"name": "Ethan Spaulding", "department": "Directing", "job": "Director", "credit_id": "537d37bb0e0a2624c3000064", "profile_path": null, "id": 204553}, {"name": "Jay Oliva", "department": "Directing", "job": "Director", "credit_id": "535195230e0a2656030019ff", "profile_path": null, "id": 105643}], "vote_average": 7.6, "runtime": 75}, "152532": {"poster_path": "/tc8QxMmMsKwGJ7Jw4c8UOZbxFTU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.", "video": false, "id": 152532, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Dallas Buyers Club", "tagline": "Sometimes it takes a hustler to change the world", "vote_count": 724, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0790636", "adult": false, "backdrop_path": "/3hGRV0xR11aUxCGAJ52F8MTxrno.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Universal Studios", "id": 13}, {"name": "Voltage Pictures", "id": 10255}, {"name": "Truth Entertainment", "id": 19631}], "release_date": "2013-11-22", "popularity": 2.01062369581888, "original_title": "Dallas Buyers Club", "budget": 5500000, "cast": [{"name": "Matthew McConaughey", "character": "Ron Woodroof", "id": 10297, "credit_id": "52fe4b239251416c910d1107", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Dr. Eve Saks", "id": 9278, "credit_id": "52fe4b239251416c910d110b", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Jared Leto", "character": "Rayon", "id": 7499, "credit_id": "52fe4b239251416c910d110f", "cast_id": 3, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 2}, {"name": "Denis O'Hare", "character": "Dr. Sevard", "id": 81681, "credit_id": "52fe4b239251416c910d1141", "cast_id": 15, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 3}, {"name": "Steve Zahn", "character": "Tucker", "id": 18324, "credit_id": "52fe4b239251416c910d112d", "cast_id": 9, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 4}, {"name": "Michael O'Neill", "character": "Richard Barkley", "id": 21710, "credit_id": "52fe4b239251416c910d113d", "cast_id": 14, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 5}, {"name": "Dallas Roberts", "character": "David Wayne", "id": 424, "credit_id": "52fe4b239251416c910d111f", "cast_id": 6, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 6}, {"name": "Griffin Dunne", "character": "Dr. Vass", "id": 2171, "credit_id": "52fe4b239251416c910d1135", "cast_id": 12, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 7}, {"name": "Kevin Rankin", "character": "T.J.", "id": 114000, "credit_id": "52fe4b239251416c910d1131", "cast_id": 11, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 8}, {"name": "Donna DuPlantier", "character": "Nurse Frazin", "id": 230995, "credit_id": "531bbf2b92514177b100488c", "cast_id": 35, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 9}, {"name": "Deneen Tyler", "character": "Denise", "id": 29933, "credit_id": "531bbfcf92514177bc00482b", "cast_id": 36, "profile_path": "/eCgqTaFTqQ6c8tbwHwCH4g7hYQ8.jpg", "order": 10}, {"name": "J.D. Evermore", "character": "Clint", "id": 129868, "credit_id": "531bc0c392514177ab004918", "cast_id": 37, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 11}, {"name": "Ian Casselberry", "character": "Hispanic Orderly", "id": 1299674, "credit_id": "531bc24e92514177b1004904", "cast_id": 38, "profile_path": "/J9CYhZq7IZXRxLKCGjJZVNeDav.jpg", "order": 12}, {"name": "Jane McNeill", "character": "Francine Suskind", "id": 1078610, "credit_id": "52fe4b239251416c910d1123", "cast_id": 7, "profile_path": "/r8ss9Gv9zABNrc3pz4k06THuhw6.jpg", "order": 13}, {"name": "Juliet Reeves", "character": "Rodeo Girl", "id": 103290, "credit_id": "52fe4b239251416c910d1139", "cast_id": 13, "profile_path": "/sS0lpkoMbi3y3Min8prhXiAzwe5.jpg", "order": 14}], "directors": [{"name": "Jean-Marc Vall\u00e9e", "department": "Directing", "job": "Director", "credit_id": "52fe4b239251416c910d1115", "profile_path": "/zFb4XBBx3TYSeeTXYv6GkAKYYcK.jpg", "id": 69371}], "vote_average": 7.9, "runtime": 117}, "230222": {"poster_path": "/p0Ut3h7Sx6GlsVltt2ZAp8XDFmi.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 0, "overview": "One of the most classic and revered stories of all time, Edgar Rice Burroughs' Tarzan returns to the big screen for a new generation. Tarzan and Jane face a mercenary army dispatched by the evil CEO of Greystoke Energies, a man who took over the company from Tarzan's parents, after they died in a plane crash in the African jungle.", "video": false, "id": 230222, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Tarzan", "tagline": "The legend starts here", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1705952", "adult": false, "backdrop_path": "/mWpUKAaJHjckIPFdEFEpeMTjjki.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Ambient Entertainment GmbH", "id": 8104}], "release_date": "2013-10-17", "popularity": 1.6289093344975, "original_title": "Tarzan", "budget": 0, "cast": [{"name": "Kellan Lutz", "character": "Tarzan", "id": 34502, "credit_id": "52fe4dd2c3a36847f826f957", "cast_id": 1, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 0}, {"name": "Robert Capron", "character": "Derek", "id": 111922, "credit_id": "52fe4dd2c3a36847f826f95b", "cast_id": 2, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 1}, {"name": "Jaime Ray Newman", "character": "Alice", "id": 109151, "credit_id": "52fe4dd2c3a36847f826f95f", "cast_id": 3, "profile_path": "/4jh45lXQPqvuiYy1Fzbk5fJGVr.jpg", "order": 2}, {"name": "Spencer Locke", "character": "Jane Porter", "id": 57192, "credit_id": "52fe4dd2c3a36847f826f963", "cast_id": 4, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 3}, {"name": "Brian Bloom", "character": "Miller", "id": 4753, "credit_id": "52fe4dd2c3a36847f826f967", "cast_id": 5, "profile_path": "/5Pc6tCfeVZFkBMQACRA318jqwph.jpg", "order": 4}, {"name": "Mark Deklin", "character": "John Greystoke", "id": 120894, "credit_id": "52fe4dd2c3a36847f826f96b", "cast_id": 6, "profile_path": "/qmbBjQLPWFu5EnMUPfeu4ADAwep.jpg", "order": 5}, {"name": "Brian Huskey", "character": "Smith", "id": 54728, "credit_id": "52fe4dd2c3a36847f826f98d", "cast_id": 12, "profile_path": "/krewoXz2qgDdIAB2PTGRuilX0K5.jpg", "order": 6}, {"name": "Edd Osmond", "character": "Young Taug", "id": 1278780, "credit_id": "52fe4dd2c3a36847f826f991", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Rebecca Reaney", "character": "Jane", "id": 1278781, "credit_id": "52fe4dd2c3a36847f826f995", "cast_id": 14, "profile_path": "/dWXj32ikdVdvm1fk3VniuwYwJ7m.jpg", "order": 8}], "directors": [{"name": "Reinhard Klooss", "department": "Directing", "job": "Director", "credit_id": "52fe4dd2c3a36847f826f971", "profile_path": null, "id": 57035}], "vote_average": 6.0, "runtime": 94}, "13279": {"poster_path": "/iOnQK5te4gEhHpyZ5KpGCtbNn1B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27640028, "overview": "An LAPD officer begins to terrorize his next-door neighbors after learning they are an interracial married couple.", "video": false, "id": 13279, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Lakeview Terrace", "tagline": "What Could Be Safer Than Living Next to a Cop?", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0947802", "adult": false, "backdrop_path": "/lxgA35XFImUtYMlU5GQTY2OW893.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Overbrook Entertainment", "id": 12485}], "release_date": "2008-09-19", "popularity": 0.591684825329947, "original_title": "Lakeview Terrace", "budget": 20000000, "cast": [{"name": "Samuel L. Jackson", "character": "Abel Turner", "id": 2231, "credit_id": "52fe45559251416c75052f09", "cast_id": 26, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Patrick Wilson", "character": "Chris Mattson", "id": 17178, "credit_id": "52fe45559251416c75052e95", "cast_id": 2, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 1}, {"name": "Kerry Washington", "character": "Lisa Mattson", "id": 11703, "credit_id": "52fe45559251416c75052e99", "cast_id": 3, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 2}, {"name": "Ron Glass", "character": "Harold Perreau", "id": 74570, "credit_id": "52fe45559251416c75052e9d", "cast_id": 4, "profile_path": "/4OBVfJUbWo6vhnKkwGu6Qq3r3sf.jpg", "order": 3}, {"name": "Justin Chambers", "character": "Donnie Eaton", "id": 20746, "credit_id": "52fe45559251416c75052ea1", "cast_id": 5, "profile_path": "/uh40a9Fv2PJ4nZHEZwsI5g0KiNj.jpg", "order": 4}, {"name": "Jay Hernandez", "character": "Javier Villareal", "id": 19487, "credit_id": "52fe45559251416c75052ea5", "cast_id": 6, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 5}, {"name": "Regine Nehy", "character": "Celia Turner", "id": 74571, "credit_id": "52fe45559251416c75052ea9", "cast_id": 7, "profile_path": "/kjYJoAKzVF4bCOCXbOuLIVaO3J1.jpg", "order": 6}, {"name": "Jaishon Fisher", "character": "Marcus Turner", "id": 74572, "credit_id": "52fe45559251416c75052ead", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Robert Pine", "character": "Captain Wentworth", "id": 74573, "credit_id": "52fe45559251416c75052eb1", "cast_id": 9, "profile_path": "/dZTRdcp57vdnCtxIp8vNYR6pOtp.jpg", "order": 8}, {"name": "Keith Loneker", "character": "Clarence Darlington", "id": 54714, "credit_id": "52fe45559251416c75052eb5", "cast_id": 10, "profile_path": "/jSQEDdzFv2nFEVmh6rn8JnrajWR.jpg", "order": 9}, {"name": "Caleeb Pinkett", "character": "Damon Richards", "id": 74574, "credit_id": "52fe45559251416c75052eb9", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Robert Dahey", "character": "Jung Lee Pak", "id": 74575, "credit_id": "52fe45559251416c75052ebd", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Ho-Jung", "character": "Sang Hee Pak", "id": 74576, "credit_id": "52fe45559251416c75052ec1", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Bitsie Tulloch", "character": "Nadine", "id": 74577, "credit_id": "52fe45559251416c75052ec5", "cast_id": 14, "profile_path": "/ckC19oA4a7ixmvruDtQsu4ZB3iA.jpg", "order": 13}, {"name": "Michael Sean Tighe", "character": "Manager", "id": 74578, "credit_id": "52fe45559251416c75052ec9", "cast_id": 15, "profile_path": "/pCnyL2emYr3eo1kYw8B6diH8nkk.jpg", "order": 14}, {"name": "Vanessa Bell Calloway", "character": "Aunt Dorrie", "id": 100653, "credit_id": "52fe45559251416c75052f0d", "cast_id": 27, "profile_path": "/gEn2Iy2aCzNb3E0iZzNyAs2Buf3.jpg", "order": 15}], "directors": [{"name": "Neil LaBute", "department": "Directing", "job": "Director", "credit_id": "52fe45559251416c75052ecf", "profile_path": "/snHfcueBlYFinCdUoVmK9CHdZX0.jpg", "id": 58689}], "vote_average": 5.7, "runtime": 110}, "242512": {"poster_path": "/i52JCZSHDvkHtjQwlPqMAsjULVH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A group of friends must confront their most terrifying fears when they awaken the dark powers of an ancient spirit board.", "video": false, "id": 242512, "genres": [{"id": 27, "name": "Horror"}], "title": "Ouija", "tagline": "Keep telling yourself it's just a game", "vote_count": 167, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1204977", "adult": false, "backdrop_path": "/pJXFPBOild76vDAiapX5BOTtj2B.jpg", "production_companies": [{"name": "5150 Action", "id": 47354}, {"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Hasbro", "id": 2598}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-10-24", "popularity": 2.583855813265, "original_title": "Ouija", "budget": 5000000, "cast": [{"name": "Olivia Cooke", "character": "Elaine Morris", "id": 1173984, "credit_id": "52fe4ecfc3a36847f82a948b", "cast_id": 2, "profile_path": "/5C8XBogUpSPA2fk9YeiCDJzroLk.jpg", "order": 0}, {"name": "Ana Coto", "character": "Sarah Morris", "id": 973091, "credit_id": "52fe4ecfc3a36847f82a949f", "cast_id": 7, "profile_path": "/lgJJdDd7MiMgXZVU7sYVQaRd1me.jpg", "order": 1}, {"name": "Daren Kagasoff", "character": "Trevor", "id": 221115, "credit_id": "52fe4ecfc3a36847f82a948f", "cast_id": 3, "profile_path": "/zlfhCTAfBiuf0LFdqkhxRq2ZdQy.jpg", "order": 2}, {"name": "Douglas Smith", "character": "Pete", "id": 60077, "credit_id": "52fe4ecfc3a36847f82a9487", "cast_id": 1, "profile_path": "/6iIV8IebkXio2mgFB3Xw7XPntXX.jpg", "order": 3}, {"name": "Vivis Colombetti", "character": "Nona", "id": 1098706, "credit_id": "52fe4ecfc3a36847f82a9493", "cast_id": 4, "profile_path": "/tBlGmZHpSkZVzqbyvesan4XVhMc.jpg", "order": 4}, {"name": "Bianca A. Santos", "character": "Isabelle", "id": 1277583, "credit_id": "52fe4ecfc3a36847f82a9497", "cast_id": 5, "profile_path": "/ebr4gDQz9VchnwVjHYomEtEm0Ox.jpg", "order": 5}, {"name": "Shelley Hennig", "character": "Debbie", "id": 444211, "credit_id": "53facfaec3a3687352003ece", "cast_id": 11, "profile_path": "/DQPalCNHzvNtFwx37j5Vqkh4ww.jpg", "order": 7}, {"name": "Lin Shaye", "character": "Paulina Zander", "id": 7401, "credit_id": "54fd86ce9251416c32000e1d", "cast_id": 56, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 8}, {"name": "Robyn Lively", "character": "Mrs. Galardi", "id": 15905, "credit_id": "54fd871e9251412204004a10", "cast_id": 57, "profile_path": "/gxXVCbEXPG0Emzx28rVk5eBpAYn.jpg", "order": 9}], "directors": [{"name": "Stiles White", "department": "Directing", "job": "Director", "credit_id": "52fe4ecfc3a36847f82a94b1", "profile_path": null, "id": 84962}], "vote_average": 5.2, "runtime": 89}, "37861": {"poster_path": "/kUdYgnKkCNJ4aak6Ivy6IdlIElL.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "1000 AD, for years, One Eye, a mute warrior of supernatural strength, has been held prisoner by the Norse chieftain Barde. Aided by Are, a boy slave, One Eye slays his captor and together he and Are escape, beginning a journey into the heart of darkness. On their flight, One Eye and Are board a Viking vessel, but the ship is soon engulfed by an endless fog that clears only as the crew sights an unknown land. As the new world reveals its secrets and the Vikings confront their terrible and bloody fate, One Eye discovers his true self.", "video": false, "id": 37861, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Valhalla Rising", "tagline": "", "vote_count": 62, "homepage": "http://www.valhallarising.dk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0862467", "adult": false, "backdrop_path": "/9kADXPCK9BIh2ujdykyEVvtNkrL.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "La Belle Allee Productions", "id": 12412}, {"name": "NWR Film Productions", "id": 12413}, {"name": "Nimbus Film Productions", "id": 11672}, {"name": "One Eye Production", "id": 12414}, {"name": "Savalas Audio Post-Production", "id": 12415}], "release_date": "2009-09-04", "popularity": 0.854174597178502, "original_title": "Valhalla Rising", "budget": 0, "cast": [{"name": "Mads Mikkelsen", "character": "One-Eye", "id": 1019, "credit_id": "52fe46789251416c91055785", "cast_id": 1, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "Gary Lewis", "character": "Kare", "id": 480, "credit_id": "52fe46789251416c91055789", "cast_id": 2, "profile_path": "/3pfclDPaKmgSpmxIo8bMXNAgLdE.jpg", "order": 1}, {"name": "Jamie Sives", "character": "Gorm", "id": 1833, "credit_id": "52fe46789251416c9105578d", "cast_id": 3, "profile_path": "/92BcXrr2W7gZri6xVlLhpLLaPsf.jpg", "order": 2}, {"name": "Ewan Stewart", "character": "Eirik", "id": 3071, "credit_id": "52fe46789251416c91055791", "cast_id": 4, "profile_path": "/lMJIOEOxNUa0RZo3Ib1UC50K2OO.jpg", "order": 3}, {"name": "Alexander Morton", "character": "Barde", "id": 32808, "credit_id": "52fe46789251416c91055795", "cast_id": 5, "profile_path": "/pg03CMhM5rc2louUy8sVFyztuqh.jpg", "order": 4}, {"name": "Callum Mitchell", "character": "Pagan Viking Guard", "id": 119093, "credit_id": "52fe46789251416c91055799", "cast_id": 6, "profile_path": "/gj4HxyQeWxFbpAmS8CwMmNkK75o.jpg", "order": 5}, {"name": "Andrew Flanagan", "character": "Duggal", "id": 119094, "credit_id": "52fe46789251416c9105579d", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Douglas Russell", "character": "Olaf", "id": 119095, "credit_id": "52fe46789251416c910557a1", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Maarten Stevenson", "character": "Are / The Boy", "id": 119097, "credit_id": "52fe46789251416c910557a5", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Gordon Brown", "character": "Hagen", "id": 1840, "credit_id": "52fe46789251416c910557a9", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Gary McCormack", "character": "Hauk", "id": 16632, "credit_id": "52fe46789251416c910557ad", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Robert Harrison", "character": "Roger", "id": 119098, "credit_id": "52fe46789251416c910557b1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Mathew Zajac", "character": "Malkolm", "id": 63137, "credit_id": "52fe46789251416c910557b5", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Stewart Porter", "character": "Kenneth", "id": 119099, "credit_id": "52fe46789251416c910557b9", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "James Ramsey", "character": "Gudmund", "id": 119100, "credit_id": "52fe46789251416c910557bd", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Rony Bridges", "character": "Magnus", "id": 119101, "credit_id": "52fe46789251416c910557c1", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "P.B. McBeath", "character": "Man with pike", "id": 119102, "credit_id": "52fe46789251416c910557c5", "cast_id": 17, "profile_path": null, "order": 16}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe46789251416c91055831", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 5.5, "runtime": 93}, "9042": {"poster_path": "/uHzx3GvwFzGpNS6Z0gP4ve5TvY8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15007991, "overview": "A group of biologists discovers a huge network of unexplored caves in Romania. The biologists believe they have found an undisturbed eco-system that has produced a new species. They hire the best American team of underwater cave explorers in the world. The team is so excited about the new cave that they start the dive immediately along with the biologists. While exploring deeper in the underwater caves, a cave-in blocks their exit, so they must find a new way out. They soon discover a larger carnivorous creature has added them to its food chain.", "video": false, "id": 9042, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Cave", "tagline": "There are places man was never meant to go.", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402901", "adult": false, "backdrop_path": "/tVhb5riMg1oqIkRhOqMjLAHqy2j.jpg", "production_companies": [{"name": "City Productions", "id": 26033}, {"name": "Cineblue Internationale Filmproduktionsgesellschaft", "id": 26032}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Screen Gems", "id": 3287}, {"name": "Cinerenta Medienbeteiligungs KG", "id": 995}], "release_date": "2005-08-25", "popularity": 0.717666322167118, "original_title": "The Cave", "budget": 30000000, "cast": [{"name": "Cole Hauser", "character": "Jack McAllister", "id": 6614, "credit_id": "52fe44d5c3a36847f80acbff", "cast_id": 1, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 0}, {"name": "Eddie Cibrian", "character": "Tyler McAllister", "id": 55541, "credit_id": "52fe44d5c3a36847f80acc03", "cast_id": 2, "profile_path": "/wFlcyM88N0ECJpo8QsUg1PNaf1q.jpg", "order": 1}, {"name": "Morris Chestnut", "character": "Top Buchanan", "id": 9779, "credit_id": "52fe44d5c3a36847f80acc07", "cast_id": 3, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 2}, {"name": "Lena Headey", "character": "Dr. Kathryn Jennings", "id": 17286, "credit_id": "52fe44d5c3a36847f80acc0b", "cast_id": 4, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 3}, {"name": "Piper Perabo", "character": "Charlie", "id": 15555, "credit_id": "52fe44d5c3a36847f80acc0f", "cast_id": 5, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 4}, {"name": "Rick Ravanello", "character": "Briggs", "id": 65730, "credit_id": "53ac3631c3a368634a000031", "cast_id": 29, "profile_path": "/tQqdbPyol2awlcZhlouaYqtO6YB.jpg", "order": 5}, {"name": "Daniel Dae Kim", "character": "Alex Kim", "id": 18307, "credit_id": "53ac3686c3a368633900002a", "cast_id": 30, "profile_path": "/xnaUUZkulAAwS5sbZ2cL7pHal4x.jpg", "order": 6}, {"name": "Kieran Darcy-Smith", "character": "Strode", "id": 109439, "credit_id": "53ac36a6c3a3686357000038", "cast_id": 31, "profile_path": "/2Uv4SXTVHvhtcnZrwPTYaHqbvm9.jpg", "order": 7}, {"name": "Marcel Iures", "character": "Dr. Nicolai", "id": 15320, "credit_id": "53ac36c7c3a368634a000039", "cast_id": 32, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 8}, {"name": "Vlad Radescu", "character": "Dr. Bacovia", "id": 135148, "credit_id": "53ac3701c3a368634f000036", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Simon Kunz", "character": "Mike - Caver", "id": 10701, "credit_id": "53ac3731c3a368634f00003a", "cast_id": 34, "profile_path": "/tkjaXZuR8F94q6r2RW5aeHXWJhZ.jpg", "order": 10}, {"name": "David Kennedy", "character": "Ian - Caver", "id": 62498, "credit_id": "53ac376bc3a368634200003d", "cast_id": 35, "profile_path": "/refiQ4V3hLc9xzBwCbemVrXXpNB.jpg", "order": 11}, {"name": "Alin Panc", "character": "Razvan - Caver", "id": 1178619, "credit_id": "53ac3792c3a368633e000037", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Zoltan Butuc", "character": "Corvin - Caver", "id": 54627, "credit_id": "53ac37b9c3a368635700004f", "cast_id": 37, "profile_path": null, "order": 13}, {"name": "Brian Steele", "character": "Creature Performer", "id": 12359, "credit_id": "53ac37e3c3a3686342000046", "cast_id": 38, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 14}], "directors": [{"name": "Bruce Hunt", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80acc15", "profile_path": "/ukBXiD57R2e8s4tjVUBPzgeANqF.jpg", "id": 44179}], "vote_average": 5.5, "runtime": 97}, "185341": {"poster_path": "/7eIr8YoyCO6pKfCEZUJIUabtyaL.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "\u00c1ngela Vidal the young television reporter who entered the building with the fireman, manages to make it out alive. But what the soldiers don?t know is that she carries the seed of the strange infection. She is to be taken to a provisional quarantine facility, a high-security installation where she will have to stay in isolation for several days. An old oil tanker, miles off shore and surrounded by water on all sides, has been especially equipped for the quarantine.", "video": false, "id": 185341, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "[REC]\u2074 Apocalypse", "tagline": "It's time to leave.", "vote_count": 58, "homepage": "http://rec4apocalipsis.com/", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1649443", "adult": false, "backdrop_path": "/7tNjWa7pgEqrOf9q9GayRK9ylCw.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2014-10-31", "popularity": 0.949310848031982, "original_title": "[REC] 4: Apocalipsis", "budget": 0, "cast": [{"name": "Manuela Velasco", "character": "\u00c1ngela Vidal", "id": 34793, "credit_id": "52fe4cde9251416c7512820b", "cast_id": 1, "profile_path": "/kQQrHFhTCazfWScBwTaSTtRFWUU.jpg", "order": 0}, {"name": "H\u00e9ctor Colom\u00e9", "character": "Dr. Ricarte", "id": 34020, "credit_id": "53c66caa0e0a267fea002159", "cast_id": 3, "profile_path": "/lyQxNL3XlEcgnbDufUuj76vy2pH.jpg", "order": 1}, {"name": "Mar\u00eda Alfonsa Rosso", "character": "Anciana", "id": 954664, "credit_id": "53c66cb20e0a267ff100206c", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "Paco Manzanedo", "character": "Guzm\u00e1n", "id": 1180136, "credit_id": "53c66cd10e0a267fea00215b", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Mariano Venancio", "character": "Capit\u00e1n Ortega", "id": 56468, "credit_id": "53c66cf40e0a267ff400220d", "cast_id": 6, "profile_path": null, "order": 4}], "directors": [{"name": "Jaume Balaguer\u00f3", "department": "Directing", "job": "Director", "credit_id": "52fe4cde9251416c75128211", "profile_path": "/zH7TzIJgzrYKbUecPLoTEPP7qxX.jpg", "id": 54525}], "vote_average": 5.4, "runtime": 95}, "13310": {"poster_path": "/9FGpMfbpKjN7i2jF2gQpvQvK9VB.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 10785801, "overview": "Set in 1982 in the suburb of Blackeberg, Stockholm, twelve-year-old Oskar is a lonely outsider, bullied at school by his classmates; at home, Oskar dreams of revenge against a trio of bullies. He befriends his twelve-year-old, next-door neighbor Eli, who only appears at night in the snow-covered playground outside their building.", "video": false, "id": 13310, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "Let the Right One In", "tagline": "Eli is 12 years old. She\u2019s been 12 for over 200 years and she just moved in next door.", "vote_count": 263, "homepage": "http://www.lettherightoneinmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1139797", "adult": false, "backdrop_path": "/wMRVKIIIn5035KIY0J793aHWVOj.jpg", "production_companies": [{"name": "EFTI", "id": 3576}], "release_date": "2008-01-26", "popularity": 0.658352440995825, "original_title": "L\u00e5t den r\u00e4tte komma in", "budget": 4000000, "cast": [{"name": "K\u00e5re Hedebrant", "character": "Oskar", "id": 74382, "credit_id": "52fe45599251416c750537d1", "cast_id": 1, "profile_path": "/cB5ZsSyHXBNNwYxRZB1yUg5HZnC.jpg", "order": 0}, {"name": "Lina Leandersson", "character": "Eli", "id": 74383, "credit_id": "52fe45599251416c750537d5", "cast_id": 2, "profile_path": "/lM9EvWASowkOnYRAzrY8vo2mchN.jpg", "order": 1}, {"name": "Per Ragnar", "character": "H\u00e5kan", "id": 74384, "credit_id": "52fe45599251416c750537d9", "cast_id": 3, "profile_path": "/7uWLA2369fpumOQgoErn55tZkQW.jpg", "order": 2}, {"name": "Henrik Dahl", "character": "Erik", "id": 74385, "credit_id": "52fe45599251416c750537dd", "cast_id": 4, "profile_path": "/keU0aMsnlp8JeLXTfjZDAvTSzlt.jpg", "order": 3}, {"name": "Karin Bergquist", "character": "Yvonne", "id": 74386, "credit_id": "52fe45599251416c750537e1", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Peter Carlberg", "character": "Lacke", "id": 74387, "credit_id": "52fe45599251416c750537e5", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Ika Nord", "character": "Virginia", "id": 74388, "credit_id": "52fe45599251416c750537e9", "cast_id": 7, "profile_path": "/dFncrgDmMbaQHiRQC9tkbPmuXTi.jpg", "order": 6}, {"name": "Mikael Rahm", "character": "Jocke", "id": 6301, "credit_id": "52fe45599251416c750537ed", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Karl-Robert Lindgren", "character": "G\u00f6sta", "id": 74389, "credit_id": "52fe45599251416c750537f1", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Anders T. Peedu", "character": "Morgan", "id": 74390, "credit_id": "52fe45599251416c750537f5", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Pale Olofsson", "character": "Larry", "id": 74391, "credit_id": "52fe45599251416c750537f9", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Cayetano Ruiz", "character": "Magister Avila", "id": 74392, "credit_id": "52fe45599251416c750537fd", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Patrik Rydmark", "character": "Conny", "id": 74393, "credit_id": "52fe45599251416c75053801", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Johan S\u00f6mnes", "character": "Andreas", "id": 74394, "credit_id": "52fe45599251416c75053805", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Mikael Erhardsson", "character": "Martin", "id": 74395, "credit_id": "52fe45599251416c75053809", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Tomas Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe45599251416c7505380f", "profile_path": "/sRl6QzCtO7SlLspfFSvnv8u7ITi.jpg", "id": 74396}], "vote_average": 7.4, "runtime": 115}, "5123": {"poster_path": "/j8kUdhnIlYsgvL0u4EUKEzWUrbo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66122026, "overview": "A drama with fairy tale elements, where an orphaned musical prodigy uses his gift as a clue to finding his birth parents.", "video": false, "id": 5123, "genres": [{"id": 18, "name": "Drama"}], "title": "August Rush", "tagline": "An incredible journey moving at the speed of sound", "vote_count": 177, "homepage": "http://augustrushmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0426931", "adult": false, "backdrop_path": "/eQBV2zuF7Vr8NShbDPcEACXun9B.jpg", "production_companies": [{"name": "CJ Entertainment", "id": 7036}, {"name": "Warner Bros.", "id": 6194}, {"name": "Southpaw Entertainment", "id": 30131}], "release_date": "2007-11-21", "popularity": 1.02599132219716, "original_title": "August Rush", "budget": 25000000, "cast": [{"name": "Freddie Highmore", "character": "August Rush", "id": 1281, "credit_id": "52fe43f5c3a36847f807a5e3", "cast_id": 12, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Keri Russell", "character": "Lyla Novacek", "id": 41292, "credit_id": "52fe43f5c3a36847f807a5e7", "cast_id": 13, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 1}, {"name": "Jonathan Rhys Meyers", "character": "Louis Connelly", "id": 1244, "credit_id": "52fe43f5c3a36847f807a5eb", "cast_id": 14, "profile_path": "/A6RyyQ4GeXl0ugnGrqGqBMQIgKh.jpg", "order": 2}, {"name": "Terrence Howard", "character": "Richard Jeffries", "id": 18288, "credit_id": "52fe43f5c3a36847f807a5ef", "cast_id": 15, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 3}, {"name": "William Sadler", "character": "Thomas Novacek", "id": 6573, "credit_id": "52fe43f5c3a36847f807a5f3", "cast_id": 17, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 4}, {"name": "Marian Seldes", "character": "Dekan", "id": 41293, "credit_id": "52fe43f5c3a36847f807a5f7", "cast_id": 18, "profile_path": "/oxyOi7kJYCmdlNK89vawC8APpse.jpg", "order": 5}, {"name": "Leon G. Thomas III", "character": "Arthur", "id": 41295, "credit_id": "52fe43f5c3a36847f807a5fb", "cast_id": 20, "profile_path": "/4fXgsZvoNIx0CsAREcLPHnuTUXx.jpg", "order": 6}, {"name": "Aaron Staton", "character": "Nick", "id": 41296, "credit_id": "52fe43f5c3a36847f807a5ff", "cast_id": 21, "profile_path": "/1spvrOhAaAa4cCYfzEyY2AXsgkl.jpg", "order": 7}, {"name": "Alex O'Loughlin", "character": "Marshall", "id": 41297, "credit_id": "52fe43f5c3a36847f807a603", "cast_id": 22, "profile_path": "/1ala6CFOow9svfbBsxyjh0jYXSl.jpg", "order": 8}, {"name": "Jamia Simone Nash", "character": "Hope", "id": 41298, "credit_id": "52fe43f5c3a36847f807a607", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Mykelti Williamson", "character": "Reverend James", "id": 34, "credit_id": "52fe43f5c3a36847f807a623", "cast_id": 28, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 10}, {"name": "Robin Williams", "character": "Maxwell Wizard Wallace", "id": 2157, "credit_id": "52fe43f5c3a36847f807a627", "cast_id": 29, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 11}, {"name": "Becki Newton", "character": "Jennifer", "id": 1222175, "credit_id": "52fe43f5c3a36847f807a62b", "cast_id": 30, "profile_path": "/ckMixG0TPDuRr4FnHhMFYXQXEk7.jpg", "order": 12}], "directors": [{"name": "Kirsten Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe43f4c3a36847f807a5a3", "profile_path": null, "id": 41285}], "vote_average": 6.7, "runtime": 114}, "152584": {"poster_path": "/seKTZ08RfcUegsnqh6VmU2HeUHe.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 10165694, "overview": "Adele's life is changed when she meets Emma, a young woman with blue hair, who will allow her to discover desire, to assert herself as a woman and as an adult. In front of others, Adele grows, seeks herself, loses herself, finds herself.", "video": false, "id": 152584, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Blue Is the Warmest Color", "tagline": "", "vote_count": 208, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2278871", "adult": false, "backdrop_path": "/bUvPR1Nsm9419zO4aL90pUl4MNF.jpg", "production_companies": [{"name": "Centre du Cin\u00e9ma et de l'Audiovisuel de la F\u00e9d\u00e9ration Wallonie-Bruxelles", "id": 38037}, {"name": "Quat'sous Films", "id": 14700}, {"name": "Wild Bunch", "id": 856}, {"name": "France 2 Cin\u00e9ma", "id": 15671}, {"name": "Scope Pictures", "id": 11199}, {"name": "Vertigo Films", "id": 10393}, {"name": "Radio T\u00e9l\u00e9vision Belge Francophone (RTBF)", "id": 7466}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France 2 (FR2)", "id": 20980}, {"name": "Eurimages", "id": 850}, {"name": "R\u00e9gion Nord-Pas-de-Calais", "id": 11434}, {"name": "Centre National de la Cin\u00e9matographie (CNC)", "id": 18367}, {"name": "Pictanovo Nord-Pas-de-Calais", "id": 38038}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 33960}], "release_date": "2013-10-09", "popularity": 0.484402604902127, "original_title": "La vie d'Ad\u00e8le - Chapitres 1 et 2", "budget": 4300000, "cast": [{"name": "L\u00e9a Seydoux", "character": "Emma", "id": 121529, "credit_id": "52fe4b249251416c910d13c1", "cast_id": 2, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 0}, {"name": "Ad\u00e8le Exarchopoulos", "character": "Ad\u00e8le", "id": 586757, "credit_id": "52fe4b249251416c910d13bd", "cast_id": 1, "profile_path": "/tPXch7Cb8NLg1pQ2n2Rd8CqaCFd.jpg", "order": 1}, {"name": "Catherine Sal\u00e9e", "character": "M\u00e8re Ad\u00e8le", "id": 1029292, "credit_id": "52fe4b249251416c910d13c5", "cast_id": 3, "profile_path": "/iyvJ4REbCPETwtxp1z3SsOe5ZD7.jpg", "order": 2}, {"name": "Jeremie Laheurte", "character": "Thomas", "id": 1150909, "credit_id": "52fe4b249251416c910d13cf", "cast_id": 5, "profile_path": "/x23A5cnWRz9LWSwFg3GghG10ne5.jpg", "order": 3}, {"name": "Aur\u00e9lien Recoing", "character": "P\u00e8re Ad\u00e8le", "id": 15482, "credit_id": "52fe4b249251416c910d13d3", "cast_id": 6, "profile_path": "/pJpoKybetgI8GIY3vPKbyIurtb.jpg", "order": 4}, {"name": "Salim Kechiouche", "character": "Samir", "id": 38865, "credit_id": "52fe4b249251416c910d13e7", "cast_id": 10, "profile_path": "/r6RiOVg1ycVWHQclgqGRHLm2voF.jpg", "order": 5}, {"name": "Sandor Funtek", "character": "Valentin", "id": 1150910, "credit_id": "52fe4b249251416c910d13d7", "cast_id": 7, "profile_path": "/64yeMqRhQxlqzoTUF0bhz7ZL34w.jpg", "order": 6}, {"name": "Mona Walravens", "character": "Lise", "id": 1199531, "credit_id": "52fe4b249251416c910d13eb", "cast_id": 11, "profile_path": "/k15xp3aUnrEiz81pU6nACnmBlJJ.jpg", "order": 7}, {"name": "Benjamin Siksou", "character": "Antoine", "id": 543836, "credit_id": "5461313dc3a3686f2e0006be", "cast_id": 21, "profile_path": "/2JdS2950LHzkdAFjcLXKUEYnHwo.jpg", "order": 8}, {"name": "Alma Jodorowsky", "character": "B\u00e9atrice", "id": 1096167, "credit_id": "54613157c3a3686f2b0007be", "cast_id": 22, "profile_path": "/y7owYNm6SpmhmA0QpRATEFfCfpl.jpg", "order": 9}, {"name": "Anne Loiret", "character": "M\u00e8re Emma", "id": 13191, "credit_id": "546131910e0a2672a30007c8", "cast_id": 23, "profile_path": "/gy2jC26ZrEZCQdKPuTPBYoLXIXA.jpg", "order": 10}, {"name": "Beno\u00eet Pilot", "character": "Beau P\u00e8re Emma", "id": 54336, "credit_id": "546131af0e0a2672bc0007b8", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Fanny Maurin", "character": "Am\u00e9lie", "id": 1384279, "credit_id": "546131c8c3a3686f2e0006cb", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Maelys Cabezon", "character": "Laetitia", "id": 1384280, "credit_id": "546131e00e0a2672a70007c4", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Samir Bella", "character": "Samir", "id": 1384281, "credit_id": "546131ffc3a3686f2b0007cf", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Abdellatif Kechiche", "department": "Directing", "job": "Director", "credit_id": "52fe4b249251416c910d13cb", "profile_path": "/etKLLjgubxAyUDxVFghEmgEvDDg.jpg", "id": 17458}], "vote_average": 7.6, "runtime": 179}, "70667": {"poster_path": "/7geys2i6OGoj72iZu6VxtUoJNcM.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NO", "name": "Norway"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "The true story about legendary explorer Thor Heyerdahl and his epic crossing of the Pacific on a balsa wood raft in 1947, in an effort to prove it was possible for South Americans to settle in Polynesia in pre-Columbian times.", "video": false, "id": 70667, "genres": [{"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}], "title": "Kon-Tiki", "tagline": "", "vote_count": 94, "homepage": "http://kontikifilmen.no/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1613750", "adult": false, "backdrop_path": "/un6jXy45MUQGnaDkOyNngKawlS3.jpg", "production_companies": [{"name": "Stunt Bros", "id": 50093}, {"name": "Recorded Picture Company (RPC)", "id": 11561}, {"name": "Roenbergfilm", "id": 14756}, {"name": "Nordisk Film Production", "id": 14757}, {"name": "DCM Productions", "id": 14758}, {"name": "Film i V\u00e4st", "id": 6417}], "release_date": "2012-08-24", "popularity": 0.872814760847274, "original_title": "Kon-Tiki", "budget": 16600000, "cast": [{"name": "P\u00e5l Sverre Valheim Hagen", "character": "Thor Heyerdahl", "id": 76556, "credit_id": "52fe4808c3a368484e0e61cf", "cast_id": 4, "profile_path": "/mPwnLY3xbGKYsVW46NQCptR15tj.jpg", "order": 0}, {"name": "Anders Baasmo Christiansen", "character": "Herman Watzinger", "id": 77976, "credit_id": "52fe4808c3a368484e0e61d3", "cast_id": 5, "profile_path": "/h2BupbXGMidawOMLwv2LkO0aWtl.jpg", "order": 1}, {"name": "Gustaf Skarsg\u00e5rd", "character": "Bengt Danielsson", "id": 63764, "credit_id": "52fe4808c3a368484e0e61d7", "cast_id": 6, "profile_path": "/fdlsUaoS99C3ZwRD6QVqRQZnRzR.jpg", "order": 2}, {"name": "Odd-Magnus Williamson", "character": "Erik Hesselberg", "id": 559194, "credit_id": "52fe4808c3a368484e0e61db", "cast_id": 7, "profile_path": "/5Ceb5e9v16aJtVqSQeYVArKxOyn.jpg", "order": 3}, {"name": "Tobias Santelmann", "character": "Knut Haugland", "id": 559195, "credit_id": "52fe4808c3a368484e0e61df", "cast_id": 8, "profile_path": "/sCtnswOiS203HyXTzlDesvEI4mj.jpg", "order": 4}, {"name": "Jakob Oftebro", "character": "Torstein Raaby", "id": 76555, "credit_id": "52fe4808c3a368484e0e61e3", "cast_id": 9, "profile_path": "/aO1s4TxwaR4xv4QngSI01qRAGFz.jpg", "order": 5}, {"name": "S\u00f8ren Pilmark", "character": "Freuchen", "id": 64122, "credit_id": "52fe4808c3a368484e0e61f3", "cast_id": 12, "profile_path": "/7yDdMrIwuCbyGVG7iCIFQPXmbif.jpg", "order": 6}], "directors": [{"name": "Joachim R\u00f8nning", "department": "Directing", "job": "Director", "credit_id": "52fe4808c3a368484e0e61bf", "profile_path": null, "id": 20307}, {"name": "Espen Sandberg", "department": "Directing", "job": "Director", "credit_id": "52fe4808c3a368484e0e61c5", "profile_path": null, "id": 20308}], "vote_average": 6.9, "runtime": 118}, "70670": {"poster_path": "/zMoDRDZoFO8WLBZFFpf6zICOnye.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "NO", "name": "Norway"}], "revenue": 0, "overview": "Everybody wants something. Nobody gets it for free. Not without stepping over corpses. The headhunt has begun.", "video": false, "id": 70670, "genres": [{"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Headhunters", "tagline": "The hunt is on.", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1614989", "adult": false, "backdrop_path": "/7xVfHX5GWDKpHdfd4IKEFW9vcg8.jpg", "production_companies": [{"name": "Friland Produksjon", "id": 8246}, {"name": "Yellow Bird Films", "id": 5746}, {"name": "Nordisk Film", "id": 235}, {"name": "ARD Degeto Film", "id": 10947}], "release_date": "2011-08-26", "popularity": 0.222923448887993, "original_title": "Hodejegerne", "budget": 0, "cast": [{"name": "Aksel Hennie", "character": "Roger Brown", "id": 76547, "credit_id": "52fe4808c3a368484e0e62c9", "cast_id": 7, "profile_path": "/fEmgeaFbhzOSBRqe2mO6sa1EaSp.jpg", "order": 0}, {"name": "Nikolaj Coster-Waldau", "character": "Clas Greve", "id": 12795, "credit_id": "52fe4808c3a368484e0e62cd", "cast_id": 8, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 1}, {"name": "Synn\u00f8ve Macody Lund", "character": "Diana Brown", "id": 559207, "credit_id": "52fe4808c3a368484e0e62d1", "cast_id": 9, "profile_path": "/4A9nL3SB333f5eBZtyGivoTm6tB.jpg", "order": 2}, {"name": "Julie \u00d8lgaard", "character": "Lotte", "id": 85910, "credit_id": "52fe4808c3a368484e0e62d5", "cast_id": 10, "profile_path": "/3DszR3dqpOeUry631IExQE6IGvN.jpg", "order": 3}, {"name": "Eivind Sander", "character": "Ove", "id": 77981, "credit_id": "52fe4808c3a368484e0e62d9", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Baard Owe", "character": "Sindre Aa", "id": 558254, "credit_id": "52fe4808c3a368484e0e62dd", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Kyrre Haugen Sydness", "character": "Jeremias Lander", "id": 76553, "credit_id": "52fe4808c3a368484e0e62e1", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Reidar S\u00f8rensen", "character": "Brede Sperre", "id": 63767, "credit_id": "52fe4808c3a368484e0e62e5", "cast_id": 14, "profile_path": "/nw0KQtziPAF5fa2vu8ShzHus8Yl.jpg", "order": 7}, {"name": "Nils J\u00f8rgen Kaalstad", "character": "Stig", "id": 589188, "credit_id": "52fe4808c3a368484e0e62e9", "cast_id": 15, "profile_path": "/aUuiEmo26U952fxA1TurXFXYfAF.jpg", "order": 8}, {"name": "Joachim Rafaelsen", "character": "Brugd", "id": 135121, "credit_id": "52fe4808c3a368484e0e62ed", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Mats Mogeland", "character": "Sunded", "id": 1093935, "credit_id": "52fe4808c3a368484e0e62f1", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Gunnar Skramstad Johnsen", "character": "Monsen 1", "id": 1093936, "credit_id": "52fe4808c3a368484e0e62f5", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Lars Skramstad Johnsen", "character": "Monsen 2", "id": 1093937, "credit_id": "52fe4808c3a368484e0e62f9", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Signe Tynning", "character": "Morning Show Hostess", "id": 1093940, "credit_id": "52fe4808c3a368484e0e62fd", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Nils Gunnar Lie", "character": "Morning Show Host", "id": 1093941, "credit_id": "52fe4808c3a368484e0e6301", "cast_id": 21, "profile_path": "/28WxZCSFQj4cjCCrDMWI1SQgx7q.jpg", "order": 14}, {"name": "Sondre Abel", "character": "Okonomisjef", "id": 1093942, "credit_id": "52fe4808c3a368484e0e6305", "cast_id": 22, "profile_path": null, "order": 15}], "directors": [{"name": "Morten Tyldum", "department": "Directing", "job": "Director", "credit_id": "52fe4808c3a368484e0e62a7", "profile_path": "/Jjdf8X3cdW5TQebY7xwREkHCCk.jpg", "id": 77965}], "vote_average": 7.1, "runtime": 100}, "5137": {"poster_path": "/7tO8s7n6Hga2y0NIUT0aoGQelPG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57958696, "overview": "When scientists the world over keep disappearing without a trace, it's up to intrepid reporter Polly Perkins and top aviator Sky Captain to uncover the truth in this futuristic, Art Deco-style actioner. The task involves putting their lives at risk as the pair travels to treacherous locales, hoping to throw a wrench in the plans of a villain who aims to wipe out the planet.", "video": false, "id": 5137, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Sky Captain and the World of Tomorrow", "tagline": "The Battle for Tomorrow is About to Begin...", "vote_count": 125, "homepage": "http://www.skycaptain.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bo", "name": ""}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0346156", "adult": false, "backdrop_path": "/fMakUN0qcOZzzSTkdh6xWGimJnN.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Natural Nylon Entertainment", "id": 804}, {"name": "Filmauro", "id": 4753}, {"name": "Blue Flower Productions", "id": 10671}, {"name": "Brooklyn Films II", "id": 10672}, {"name": "Riff Raff Film Productions", "id": 1668}], "release_date": "2004-09-14", "popularity": 0.729879683436075, "original_title": "Sky Captain and the World of Tomorrow", "budget": 70000000, "cast": [{"name": "Jude Law", "character": "Sky Captain", "id": 9642, "credit_id": "52fe43f5c3a36847f807a90b", "cast_id": 2, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Polly Perkins", "id": 12052, "credit_id": "52fe43f5c3a36847f807a90f", "cast_id": 3, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Giovanni Ribisi", "character": "Dex", "id": 1771, "credit_id": "52fe43f6c3a36847f807a913", "cast_id": 4, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 2}, {"name": "Angelina Jolie", "character": "Franky", "id": 11701, "credit_id": "52fe43f6c3a36847f807a917", "cast_id": 5, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 3}, {"name": "Bai Ling", "character": "Mysterious Woman", "id": 39126, "credit_id": "52fe43f6c3a36847f807a91b", "cast_id": 6, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 4}, {"name": "Michael Gambon", "character": "Paley", "id": 5658, "credit_id": "52fe43f6c3a36847f807a91f", "cast_id": 7, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 5}, {"name": "Omid Djalili", "character": "Kaji", "id": 41379, "credit_id": "52fe43f6c3a36847f807a923", "cast_id": 8, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 6}, {"name": "Laurence Olivier", "character": "Dr. Totenkopf", "id": 3359, "credit_id": "52fe43f6c3a36847f807a927", "cast_id": 9, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 7}, {"name": "Peter Law", "character": "Dr. Kessler", "id": 41380, "credit_id": "52fe43f6c3a36847f807a92b", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Khan Bonfils", "character": "Creepy", "id": 986518, "credit_id": "52fe43f6c3a36847f807a9a1", "cast_id": 30, "profile_path": "/1MExWtw6hqcem369MO6byZmWcZl.jpg", "order": 9}], "directors": [{"name": "Kerry Conran", "department": "Directing", "job": "Director", "credit_id": "52fe43f5c3a36847f807a907", "profile_path": "/s3meBUIuxtRVkTTaV9QAptuGRml.jpg", "id": 41378}], "vote_average": 5.8, "runtime": 106}, "13335": {"poster_path": "/hfyCKWEegVSEM40WTLGdJWAVqNU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43493123, "overview": "Having satisfied their urge for White Castle, Harold and Kumar jump on a plane to catch up with Harold's love interest, who's headed for the Netherlands. But the pair must change their plans when Kumar is accused of being a terrorist. Rob Corddry also stars in this wild comedy sequel that follows the hapless stoners' misadventures as they try to avoid being captured by the Department of Homeland Security.", "video": false, "id": 13335, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Harold & Kumar Escape from Guantanamo Bay", "tagline": "This time they're running from the joint.", "vote_count": 197, "homepage": "http://www.haroldandkumar.com", "belongs_to_collection": {"backdrop_path": "/b70mFgsSn2hl3CvC0nRx0SHUEX0.jpg", "poster_path": "/9OBP4MQBAXnBZ1uXLZykIWRGnBb.jpg", "id": 30663, "name": "Harold & Kumar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0481536", "adult": false, "backdrop_path": "/7Ol1RGWUbExH2pkwyczzzl7EMOJ.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2008-04-25", "popularity": 0.547960027382719, "original_title": "Harold & Kumar Escape from Guantanamo Bay", "budget": 12000000, "cast": [{"name": "John Cho", "character": "Harold Lee", "id": 68842, "credit_id": "52fe455c9251416c75053c17", "cast_id": 1, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 0}, {"name": "Kal Penn", "character": "Kumar Patel", "id": 53493, "credit_id": "52fe455c9251416c75053c1b", "cast_id": 2, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 1}, {"name": "Neil Patrick Harris", "character": "Neil Patrick Harris", "id": 41686, "credit_id": "52fe455c9251416c75053c27", "cast_id": 6, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 2}, {"name": "Rob Corddry", "character": "Ron Fox", "id": 52997, "credit_id": "52fe455c9251416c75053c69", "cast_id": 22, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 3}, {"name": "Jack Conley", "character": "Deputy Frye", "id": 21675, "credit_id": "52fe455c9251416c75053c1f", "cast_id": 4, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 4}, {"name": "Roger Bart", "character": "Dr. Jack Beecher", "id": 45566, "credit_id": "52fe455c9251416c75053c23", "cast_id": 5, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 5}, {"name": "Eric Winter", "character": "Colton Graham", "id": 74409, "credit_id": "52fe455c9251416c75053c2b", "cast_id": 7, "profile_path": "/bo7unyhMC4GxIPWhHh2M8mqbsKn.jpg", "order": 6}, {"name": "Christopher Meloni", "character": "Grand Wizard", "id": 22227, "credit_id": "52fe455c9251416c75053c4d", "cast_id": 15, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 7}, {"name": "Danneel Ackles", "character": "Vanessa Fanning", "id": 81164, "credit_id": "52fe455c9251416c75053c51", "cast_id": 16, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 8}, {"name": "Missi Pyle", "character": "Raylene", "id": 1294, "credit_id": "52fe455c9251416c75053c55", "cast_id": 17, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 9}, {"name": "Paula Garc\u00e9s", "character": "Maria", "id": 21124, "credit_id": "52fe455c9251416c75053c5f", "cast_id": 20, "profile_path": "/bc1NhQCaUsoJFCi6vIGxiljQl86.jpg", "order": 10}], "directors": [{"name": "Jon Hurwitz", "department": "Directing", "job": "Director", "credit_id": "52fe455c9251416c75053c31", "profile_path": "/bWiSwwmkEqgDk0KkeodRQQ3MR02.jpg", "id": 68843}, {"name": "Hayden Schlossberg", "department": "Directing", "job": "Director", "credit_id": "52fe455c9251416c75053c37", "profile_path": null, "id": 68844}], "vote_average": 5.9, "runtime": 107}, "152601": {"poster_path": "/fsoTLnUXEUTNuVCBxAJMY0HPPd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47351251, "overview": "In the not so distant future, Theodore, a lonely writer purchases a newly developed operating system designed to meet the user's every needs. To Theordore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.", "video": false, "id": 152601, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Her", "tagline": "A Spike Jonze Love Story", "vote_count": 1075, "homepage": "http://www.herthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1798709", "adult": false, "backdrop_path": "/4f4tWe6uhwtuKMygfIAytR2W0pj.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2013-12-18", "popularity": 2.49810461257231, "original_title": "Her", "budget": 23000000, "cast": [{"name": "Joaquin Phoenix", "character": "Theodore", "id": 73421, "credit_id": "52fe4b259251416c910d1639", "cast_id": 5, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Samantha (voice)", "id": 1245, "credit_id": "52fe4b259251416c910d164f", "cast_id": 10, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Rooney Mara", "character": "Catherine", "id": 108916, "credit_id": "52fe4b259251416c910d1635", "cast_id": 4, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 2}, {"name": "Amy Adams", "character": "Amy", "id": 9273, "credit_id": "52fe4b259251416c910d1631", "cast_id": 3, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 3}, {"name": "Olivia Wilde", "character": "Blind Date", "id": 59315, "credit_id": "52fe4b259251416c910d162d", "cast_id": 2, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 4}, {"name": "Chris Pratt", "character": "Paul", "id": 73457, "credit_id": "52fe4b259251416c910d1653", "cast_id": 11, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 5}, {"name": "Portia Doubleday", "character": "Isabella", "id": 117669, "credit_id": "52fe4b259251416c910d165d", "cast_id": 13, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 6}, {"name": "Sam Jaeger", "character": "Dr. Johnson", "id": 65727, "credit_id": "52fe4b259251416c910d1661", "cast_id": 14, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 7}, {"name": "Katherine Boecher", "character": "", "id": 211488, "credit_id": "52fe4b259251416c910d1665", "cast_id": 15, "profile_path": "/dRhesZZDvEoXLjbeeALlDdOBQW5.jpg", "order": 8}, {"name": "Kelly Sarah", "character": "Bikini Beach Babe", "id": 1197040, "credit_id": "52fe4b259251416c910d1669", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Spike Jonze", "character": "Alien Child", "id": 5953, "credit_id": "52fe4b269251416c910d166d", "cast_id": 17, "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "order": 10}, {"name": "Bill Hader", "character": "Chat Room Friend #2", "id": 19278, "credit_id": "52fe4b269251416c910d1671", "cast_id": 18, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 11}, {"name": "Kristen Wiig", "character": "Sexy Kitten", "id": 41091, "credit_id": "52fe4b269251416c910d1675", "cast_id": 19, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 12}, {"name": "Brian Cox", "character": "Alan Watts (voice)", "id": 1248, "credit_id": "52fe4b269251416c910d16a9", "cast_id": 28, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 13}], "directors": [{"name": "Spike Jonze", "department": "Directing", "job": "Director", "credit_id": "52fe4b259251416c910d1629", "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "id": 5953}], "vote_average": 8.0, "runtime": 126}, "152603": {"poster_path": "/6wA7dQpCZVghOK8dN20rbKIyJPe.jpg", "production_countries": [{"iso_3166_1": "CY", "name": "Cyprus"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After being around for centuries and now living in the modern age, vampire Adam is a rockstar that cannot grow accustomed to the new modern world with all of its new technology. While he lives in Detroit, his wife Eve lives in Tangier, flourishing in the new world. But when she senses Adam's depression with society, she gets on a plane and goes to see him. Shortly after Eve gets there, her little sister, Ava, shows up after 87 years and disrupts the couple's idyll reunion.", "video": false, "id": 152603, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 10749, "name": "Romance"}], "title": "Only Lovers Left Alive", "tagline": "", "vote_count": 152, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1714915", "adult": false, "backdrop_path": "/5qoIoGjYm5APqRVTNwhG6JbbfPN.jpg", "production_companies": [{"name": "Pandora Film", "id": 140}, {"name": "Recorded Picture Company (RPC)", "id": 11561}, {"name": "Snow Wolf Produktion", "id": 19244}, {"name": "ARD/Degeto Film GmbH", "id": 6187}, {"name": "Neue Road Movies", "id": 4503}, {"name": "Lago Film", "id": 19245}, {"name": "Faliro House Productions", "id": 19246}], "release_date": "2014-04-11", "popularity": 0.925396059496675, "original_title": "Only Lovers Left Alive", "budget": 7000000, "cast": [{"name": "Tom Hiddleston", "character": "Adam", "id": 91606, "credit_id": "52fe4b269251416c910d16c3", "cast_id": 1, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 0}, {"name": "Tilda Swinton", "character": "Eve", "id": 3063, "credit_id": "52fe4b269251416c910d16c7", "cast_id": 2, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 1}, {"name": "Mia Wasikowska", "character": "Ava", "id": 76070, "credit_id": "52fe4b269251416c910d16cb", "cast_id": 3, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 2}, {"name": "John Hurt", "character": "Marlowe", "id": 5049, "credit_id": "52fe4b269251416c910d16cf", "cast_id": 4, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 3}, {"name": "Anton Yelchin", "character": "Ian", "id": 21028, "credit_id": "52fe4b269251416c910d16d3", "cast_id": 5, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 4}, {"name": "Slimane Dazi", "character": "Bilal", "id": 1100011, "credit_id": "52fe4b269251416c910d16d7", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Jeffrey Wright", "character": "Dr. Watson", "id": 2954, "credit_id": "52fe4b269251416c910d16e7", "cast_id": 9, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Cody Stauber", "character": "Adam's Fan", "id": 1304663, "credit_id": "5331c05ec3a3686aaf002047", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Ali Amine", "character": "Taxi Driver", "id": 1304664, "credit_id": "5331c073c3a3686a7f002017", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Jim Jarmusch", "department": "Directing", "job": "Director", "credit_id": "52fe4b269251416c910d16dd", "profile_path": "/3XIjssxHibmV5fqcn0CAD8lzYl5.jpg", "id": 4429}], "vote_average": 7.2, "runtime": 123}, "13342": {"poster_path": "/lvEenO2CikD4Zo3rFK1flAU99Pr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27092880, "overview": "A story of a group of California teenagers who enjoy malls, sex and rock n' roll.", "video": false, "id": 13342, "genres": [{"id": 35, "name": "Comedy"}], "title": "Fast Times at Ridgemont High", "tagline": "Fast Cars, Fast Girls, Fast Carrots...Fast Carrots?", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0083929", "adult": false, "backdrop_path": "/9O9wbBiFmFOWGPRWZV3Jv4gRP0r.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1982-08-12", "popularity": 0.574782559495611, "original_title": "Fast Times at Ridgemont High", "budget": 4500000, "cast": [{"name": "Sean Penn", "character": "Jeff Spicoli", "id": 2228, "credit_id": "52fe455d9251416c75053e6b", "cast_id": 1, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 0}, {"name": "Jennifer Jason Leigh", "character": "Stacy Hamilton", "id": 10431, "credit_id": "52fe455d9251416c75053e6f", "cast_id": 2, "profile_path": "/9NPK0X3F6e50mOUfm0J9vJexfbQ.jpg", "order": 1}, {"name": "Judge Reinhold", "character": "Brad Hamilton", "id": 777, "credit_id": "52fe455d9251416c75053e73", "cast_id": 3, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 2}, {"name": "Phoebe Cates", "character": "Linda Barrett", "id": 16171, "credit_id": "52fe455d9251416c75053e85", "cast_id": 8, "profile_path": "/5PxWIvoufedYN7dfDohBXcrUx2C.jpg", "order": 3}, {"name": "Brian Backer", "character": "Mark 'Rat' Ratner", "id": 118946, "credit_id": "52fe455d9251416c75053e81", "cast_id": 7, "profile_path": "/fUs5ipPXE3jdTSkxoC75tMML1Fz.jpg", "order": 4}, {"name": "Robert Romanus", "character": "Mike Damone", "id": 61217, "credit_id": "52fe455d9251416c75053e7d", "cast_id": 6, "profile_path": "/9ow4UIiT2fHPMUjHji8yuNFtd0E.jpg", "order": 5}, {"name": "Ray Walston", "character": "Mr. Hand", "id": 4093, "credit_id": "52fe455d9251416c75053e89", "cast_id": 9, "profile_path": "/KzlcoLq3s2I3ogQAdbE1eUcXsb.jpg", "order": 6}, {"name": "Scott Thomson", "character": "Arnold", "id": 9997, "credit_id": "52fe455d9251416c75053e8d", "cast_id": 10, "profile_path": "/7d61uG3mF0oEGSOLJWl9DwvDXeQ.jpg", "order": 7}, {"name": "Vincent Schiavelli", "character": "Mr. Vargas", "id": 3418, "credit_id": "52fe455d9251416c75053e91", "cast_id": 11, "profile_path": "/9VAmZfthJ8pbDsJE8cJxIpnFcQy.jpg", "order": 8}, {"name": "Amanda Wyss", "character": "Lisa", "id": 13656, "credit_id": "52fe455d9251416c75053e95", "cast_id": 12, "profile_path": "/1HEqQELnhQ7NAC6unYqc4CQ1ib.jpg", "order": 9}, {"name": "Forest Whitaker", "character": "Charles Jefferson", "id": 2178, "credit_id": "52fe455d9251416c75053e99", "cast_id": 13, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 10}, {"name": "Kelli Maroney", "character": "Cindy", "id": 83151, "credit_id": "52fe455d9251416c75053e9d", "cast_id": 14, "profile_path": "/zScBvchaH50OhAXrewHykMvqy1R.jpg", "order": 11}, {"name": "Eric Stoltz", "character": "Stoner Bud", "id": 7036, "credit_id": "52fe455d9251416c75053ea1", "cast_id": 15, "profile_path": "/fXaULtqnMDKsqT1to8vnLjSXe0w.jpg", "order": 12}, {"name": "Nicolas Cage", "character": "Brad's Bud", "id": 2963, "credit_id": "52fe455d9251416c75053ea5", "cast_id": 16, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 13}, {"name": "Anthony Edwards", "character": "Stoner Bud", "id": 11085, "credit_id": "52fe455d9251416c75053ea9", "cast_id": 17, "profile_path": "/mDgIMyKgmYAPNFIdeWi6IDxdED8.jpg", "order": 14}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe455d9251416c75053e79", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 6.8, "runtime": 90}, "37931": {"poster_path": "/4X8eGHtYPnLUQF9l3cb0Aj6IDaU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6110000, "overview": "Ex-special operative MacGruber (Forte) is called back into action to take down his archenemy, Dieter Von Cunth (Kilmer), who's in possession of a nuclear warhead and bent on destroying Washington, DC.", "video": false, "id": 37931, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "MacGruber", "tagline": "He's the ultimate tool.", "vote_count": 54, "homepage": "http://iamrogue.com/macgruber/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1470023", "adult": false, "backdrop_path": "/8zIjKVr9i8ed9XZOGA6WxyHCFUs.jpg", "production_companies": [], "release_date": "2010-05-21", "popularity": 0.294560081382515, "original_title": "MacGruber", "budget": 10000000, "cast": [{"name": "Will Forte", "character": "MacGruber", "id": 62831, "credit_id": "52fe467f9251416c91056619", "cast_id": 7, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 0}, {"name": "Kristen Wiig", "character": "Vicki St. Elmo", "id": 41091, "credit_id": "52fe467f9251416c9105660d", "cast_id": 4, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Dieter Von Cunth", "id": 5576, "credit_id": "52fe467f9251416c91056611", "cast_id": 5, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Ryan Phillippe", "character": "Lt. Dixon Piper", "id": 11864, "credit_id": "52fe467f9251416c91056615", "cast_id": 6, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 3}, {"name": "Maya Rudolph", "character": "Casey", "id": 52792, "credit_id": "52fe467f9251416c9105661d", "cast_id": 8, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 4}, {"name": "Powers Boothe", "character": "Col. James Faith", "id": 6280, "credit_id": "52fe467f9251416c91056621", "cast_id": 9, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 5}, {"name": "Dalip Singh Rana", "character": "", "id": 119154, "credit_id": "52fe467f9251416c91056625", "cast_id": 10, "profile_path": "/3czibTND6j2lVHlZ3JGKPMBslt.jpg", "order": 6}, {"name": "Rhys Coiro", "character": "The Russian", "id": 113563, "credit_id": "52fe467f9251416c91056629", "cast_id": 11, "profile_path": "/tRX5cemKIZmqYGqIM3h05u4ssOm.jpg", "order": 7}], "directors": [{"name": "Jorma Taccone", "department": "Directing", "job": "Director", "credit_id": "52fe467f9251416c910565fd", "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "id": 62863}], "vote_average": 4.9, "runtime": 90}, "37933": {"poster_path": "/523KE6pQPB8TlXYjmn5BvOKBycE.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 68000000, "overview": "Something bizarre has come over the land. The kingdom is deteriorating. People are beginning to act strange... What's even more strange is that people are beginning to see dragons, which shouldn't enter the world of humans. Due to all these bizarre events, Ged, a wandering wizard, is investigating the cause. During his journey, he meets Prince Arren, a young distraught teenage boy. While Arren may look like a shy young teen, he has a severe dark side, which grants him strength, hatred, ruthlessness and has no mercy, especially when it comes to protecting Teru. For the witch Kumo this is a perfect opportunity. She can use the boy's \"fears\" against the very one who would help him, Ged.", "video": false, "id": 37933, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Tales from Earthsea", "tagline": "Once Man and Dragon were one. Man chose Land and Sea, Dragon chose Wind and Fire.", "vote_count": 64, "homepage": "http://disney.go.com/disneypictures/earthsea/#/home", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0495596", "adult": false, "backdrop_path": "/7GauLmcFx3tzic3B7DxvRM9Y7cN.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Toho Company", "id": 882}, {"name": "DENTSU Music And Entertainment", "id": 2752}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Buena Vista Home Entertainment", "id": 11200}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "Nibariki", "id": 12516}, {"name": "GNDHDDT", "id": 12539}, {"name": "Nippon Television Network (NTV)", "id": 20192}], "release_date": "2006-07-29", "popularity": 0.539567809483803, "original_title": "Gedo senki", "budget": 22000000, "cast": [{"name": "Junichi Okada", "character": "Arren", "id": 119241, "credit_id": "52fe46809251416c910566dd", "cast_id": 15, "profile_path": "/bFTZOkLduDdWrFi6bwsTLwAq4XS.jpg", "order": 0}, {"name": "Aoi Teshima", "character": "Theru", "id": 119242, "credit_id": "52fe46809251416c910566e1", "cast_id": 16, "profile_path": null, "order": 1}, {"name": "Bunta Sugawara", "character": "Haitaka", "id": 119243, "credit_id": "52fe46809251416c910566e5", "cast_id": 17, "profile_path": "/w3J8EkYDHi0UQ3JPradqKBfa22V.jpg", "order": 2}, {"name": "Y\u016bko Tanaka", "character": "Cob", "id": 20331, "credit_id": "52fe46809251416c910566e9", "cast_id": 18, "profile_path": "/k32uD3NkzeJHPaALp0amspIqVzc.jpg", "order": 3}, {"name": "Teruyuki Kagawa", "character": "Hare", "id": 46691, "credit_id": "52fe46809251416c910566ed", "cast_id": 19, "profile_path": "/pCOQFnFHPDCtSuYmMT3Q24Yf0SE.jpg", "order": 4}, {"name": "Jun Fubuki", "character": "Tenar", "id": 119244, "credit_id": "52fe46809251416c910566f1", "cast_id": 20, "profile_path": "/cLHCn4FSHocEyyf7c6f2CeEg1jb.jpg", "order": 5}, {"name": "Takashi Nait\u00f4", "character": "Hazia Dealer", "id": 19590, "credit_id": "52fe46809251416c910566f5", "cast_id": 21, "profile_path": "/ljbNlt6v9a7E9uvnph2qAJ6ba55.jpg", "order": 6}, {"name": "Mitsuko Baisho", "character": "The Mistress", "id": 72605, "credit_id": "52fe46809251416c910566f9", "cast_id": 22, "profile_path": "/5DGRshdcWGz2QHOxWJm6LYXqc8T.jpg", "order": 7}, {"name": "Yui Natsukawa", "character": "The Queen", "id": 13280, "credit_id": "52fe46809251416c910566fd", "cast_id": 23, "profile_path": "/y49Kk0dslXP0zXJjUYKB9X7Jbk9.jpg", "order": 8}, {"name": "Kaoru Kobayashi", "character": "The King", "id": 20332, "credit_id": "52fe46809251416c91056701", "cast_id": 24, "profile_path": "/ao6ahEACiVZuQAQ2ysL7DSbRwfS.jpg", "order": 9}], "directors": [{"name": "Goro Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe46809251416c91056691", "profile_path": null, "id": 1414}], "vote_average": 6.4, "runtime": 115}, "54318": {"poster_path": "/i1DU0Nux6CozY1uEjyz5uCWBxhc.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 103071443, "overview": "A lonely boy discovers a mysterious egg that hatches a sea creature of Scottish legend.", "video": false, "id": 54318, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Water Horse", "tagline": "How Do You Keep A Secret This Big?", "vote_count": 55, "homepage": "http://www.thewaterhorse.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0760329", "adult": false, "backdrop_path": "/e1Z7OMTZi2RGfSN613PhxxvyPYo.jpg", "production_companies": [{"name": "Revolution Studios", "id": 497}, {"name": "Walden Media", "id": 10221}, {"name": "Beacon Pictures", "id": 10157}, {"name": "Ecosse Films", "id": 1267}], "release_date": "2007-12-25", "popularity": 0.694347904793095, "original_title": "The Water Horse", "budget": 45000000, "cast": [{"name": "Alexander Nathan Etel", "character": "Angus MacMorrow", "id": 46300, "credit_id": "52fe4896c3a36847f816f787", "cast_id": 1, "profile_path": "/nHzyUSNjFwlSeOW3B9RfrqrTdHa.jpg", "order": 0}, {"name": "Emily Watson", "character": "Anne MacMorrow", "id": 1639, "credit_id": "52fe4896c3a36847f816f78b", "cast_id": 2, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 1}, {"name": "Ben Chaplin", "character": "Lewis Mowbray", "id": 21343, "credit_id": "52fe4896c3a36847f816f78f", "cast_id": 3, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 2}, {"name": "David Morrissey", "character": "Captain Thomas Hamilton", "id": 18616, "credit_id": "52fe4896c3a36847f816f793", "cast_id": 4, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 3}, {"name": "Priyanka Xi", "character": "Kirstie MacMorrow", "id": 150394, "credit_id": "52fe4896c3a36847f816f797", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Craig Hall", "character": "Charlie MacMorrow", "id": 3496, "credit_id": "52fe4896c3a36847f816f7b9", "cast_id": 14, "profile_path": "/e18KUAquVXJcEl9uPC0InR9BLyu.jpg", "order": 5}, {"name": "Brian Cox", "character": "Old Angus", "id": 1248, "credit_id": "52fe4896c3a36847f816f7a3", "cast_id": 10, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 6}, {"name": "Erroll Shand", "character": "Lt. Wormsley", "id": 150396, "credit_id": "52fe4896c3a36847f816f79b", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Joel Tobeck", "character": "Sgnt. Walker", "id": 41785, "credit_id": "52fe4896c3a36847f816f79f", "cast_id": 9, "profile_path": "/14Oobz8bwcd3jiqnoCFTQnPBJdB.jpg", "order": 8}, {"name": "Bruce Allpress", "character": "Jock McGowan", "id": 173431, "credit_id": "53ea10eac3a3680eb9000d1e", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Geraldine Brophy", "character": "Gracie", "id": 1047942, "credit_id": "53022d0292514121a72fb7b1", "cast_id": 16, "profile_path": "/5VArQQlKBtpa8ZhRH5gORPU0c4w.jpg", "order": 10}, {"name": "Eddie Campbell", "character": "Hughie", "id": 11451, "credit_id": "53022d1b9251412198316615", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Peter Corrigan", "character": "Jimmy's Buddy #1", "id": 1201353, "credit_id": "53022d38925141219b2e2420", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Carl Dixon", "character": "Gunner Corbin", "id": 1142100, "credit_id": "53022d54925141218f316096", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Nathan Christopher Haase", "character": "Male Tourist", "id": 1293761, "credit_id": "53022d739251412198317108", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Ian Harcourt", "character": "Jimmy McGarry", "id": 54494, "credit_id": "53022d96925141219232d7e5", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Rex Hurst", "character": "Jimmy's Buddy #2", "id": 1293764, "credit_id": "53022da79251412198317889", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Megan Katherine", "character": "Female Tourist", "id": 1293766, "credit_id": "53022dce92514121a130a997", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Elliot Lawless", "character": "Beach Kid", "id": 1240893, "credit_id": "53022de292514121a130ad73", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "William Johnson", "character": "Clyde", "id": 1166385, "credit_id": "531a4b7dc3a3685c4a003a2c", "cast_id": 26, "profile_path": "/b5cYHL0BJ8DlMML18ZlrSF6ZlMp.jpg", "order": 19}], "directors": [{"name": "Jay Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4896c3a36847f816f7a9", "profile_path": "/baaNlNwUYSGpznRfWnCCUzGhtKE.jpg", "id": 46297}], "vote_average": 6.4, "runtime": 112}, "13363": {"poster_path": "/lwgtC6rAeF1Xs2H0cbPkgvAJS1W.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An impromptu goodbye party for Professor John Oldman becomes a mysterious interrogation after the retiring scholar reveals to his colleagues he never ages and has walked the earth for 14,000 years.", "video": false, "id": 13363, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Man from Earth", "tagline": "From one of the acclaimed writers of Star Trek and The Twilight Zone comes a story that transcends both time and space...", "vote_count": 190, "homepage": "http://manfromearth.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0756683", "adult": false, "backdrop_path": "/oIfHLjsmODIctuhmE69DcBl2qEy.jpg", "production_companies": [{"name": "Falling Sky Entertainment", "id": 2741}], "release_date": "2007-06-10", "popularity": 0.638571313328131, "original_title": "The Man from Earth", "budget": 0, "cast": [{"name": "David Lee Smith", "character": "John Oldman", "id": 56112, "credit_id": "52fe455f9251416c750543e3", "cast_id": 3, "profile_path": "/xYkMA9AWtUN93KV5hWzlDkcnebB.jpg", "order": 0}, {"name": "Tony Todd", "character": "Dan", "id": 19384, "credit_id": "52fe455f9251416c750543e7", "cast_id": 4, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 1}, {"name": "John Billingsley", "character": "Harry", "id": 21722, "credit_id": "52fe455f9251416c750543eb", "cast_id": 5, "profile_path": "/fHQ6ecMufxLwUAbN3dX3yxFAn5d.jpg", "order": 2}, {"name": "Ellen Crawford", "character": "Edith", "id": 76463, "credit_id": "52fe455f9251416c750543ef", "cast_id": 6, "profile_path": "/bpwfkOgNSFue6Tie7j4HjctED7P.jpg", "order": 3}, {"name": "Annika Peterson", "character": "Sandy", "id": 76464, "credit_id": "52fe455f9251416c750543f3", "cast_id": 7, "profile_path": "/bi9MLY4H6UNHtzJtfPAxxNM5X3.jpg", "order": 4}, {"name": "Alexis Thorpe", "character": "Linda Murphy", "id": 41504, "credit_id": "52fe455f9251416c750543f7", "cast_id": 8, "profile_path": "/8aPZP7bGgPzaHc5Slfna5m505ub.jpg", "order": 5}, {"name": "William Katt", "character": "Art", "id": 45415, "credit_id": "52fe455f9251416c750543fb", "cast_id": 9, "profile_path": "/8zgHplikymFmzQhOuwYhin6WJv6.jpg", "order": 6}, {"name": "Richard Riehle", "character": "Dr. Will Gruber", "id": 18262, "credit_id": "52fe45609251416c750543ff", "cast_id": 10, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 7}, {"name": "Steven Littles", "character": "Moving Man #1", "id": 1321554, "credit_id": "537ae845c3a3685e0d000f9e", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Chase Sprague", "character": "Moving Man #2", "id": 1321555, "credit_id": "537ae856c3a3685e14000fb7", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Robbie Bryan", "character": "Officer", "id": 104668, "credit_id": "537ae864c3a3685e39000fb6", "cast_id": 22, "profile_path": null, "order": 10}], "directors": [{"name": "Richard Schenkman", "department": "Directing", "job": "Director", "credit_id": "52fe455f9251416c750543df", "profile_path": "/puAjxwQ1XKIVyMOX5yN9Lw1uyc7.jpg", "id": 76462}], "vote_average": 7.9, "runtime": 87}, "862": {"poster_path": "/agy8DheVu5zpQFbXfAdvYivF2FU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361958736, "overview": "Woody the cowboy is young Andy\u2019s favorite toy. Yet this changes when Andy get the new super toy Buzz Lightyear for his birthday. Now that Woody is no longer number one he plans his revenge on Buzz. Toy Story is a milestone in film history for being the first feature film to use entirely computer animation.", "video": false, "id": 862, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Toy Story", "tagline": "The adventure takes off!", "vote_count": 1984, "homepage": "http://www.pixar.com/featurefilms/ts/", "belongs_to_collection": {"backdrop_path": "/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg", "poster_path": "/bDSe7UCiShmiTz7kuOjMyP6mz7l.jpg", "id": 10194, "name": "Toy Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114709", "adult": false, "backdrop_path": "/dji4Fm0gCDVb9DQQMRvAI8YNnTz.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "1995-11-21", "popularity": 1.85165212808986, "original_title": "Toy Story", "budget": 30000000, "cast": [{"name": "Tom Hanks", "character": "Woody (voice)", "id": 31, "credit_id": "52fe4284c3a36847f8024f95", "cast_id": 14, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Tim Allen", "character": "Buzz Lightyear (voice)", "id": 12898, "credit_id": "52fe4284c3a36847f8024f99", "cast_id": 15, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 1}, {"name": "Don Rickles", "character": "Mr. Potato Head (voice)", "id": 7167, "credit_id": "52fe4284c3a36847f8024f9d", "cast_id": 16, "profile_path": "/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg", "order": 2}, {"name": "Jim Varney", "character": "Slinky Dog (voice)", "id": 12899, "credit_id": "52fe4284c3a36847f8024fa1", "cast_id": 17, "profile_path": "/eIo2jVVXYgjDtaHoF19Ll9vtW7h.jpg", "order": 3}, {"name": "Wallace Shawn", "character": "Rex (voice)", "id": 12900, "credit_id": "52fe4284c3a36847f8024fa5", "cast_id": 18, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 4}, {"name": "John Ratzenberger", "character": "Hamm (voice)", "id": 7907, "credit_id": "52fe4284c3a36847f8024fa9", "cast_id": 19, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 5}, {"name": "Annie Potts", "character": "Bo Peep (voice)", "id": 8873, "credit_id": "52fe4284c3a36847f8024fad", "cast_id": 20, "profile_path": "/gXvjjNtO26Qlwzrkgpv8cDN0IFu.jpg", "order": 6}, {"name": "John Morris", "character": "Andy (voice)", "id": 1116442, "credit_id": "52fe4284c3a36847f8024fc1", "cast_id": 26, "profile_path": "/vYGyvK4LzeaUCoNSHtsuqJUY15M.jpg", "order": 7}, {"name": "Erik von Detten", "character": "Sid (voice)", "id": 12901, "credit_id": "52fe4284c3a36847f8024fb1", "cast_id": 22, "profile_path": "/cUsIO0mejQ3WLRH8Vgsaya5bPd0.jpg", "order": 8}, {"name": "Laurie Metcalf", "character": "Andy's Mom (voice)", "id": 12133, "credit_id": "52fe4284c3a36847f8024fb5", "cast_id": 23, "profile_path": "/nMuaJWmZyaCMmdsGlYIOV5JGabL.jpg", "order": 9}, {"name": "R. Lee Ermey", "character": "Sergeant (voice)", "id": 8655, "credit_id": "52fe4284c3a36847f8024fb9", "cast_id": 24, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 10}, {"name": "Sarah Freeman", "character": "Hannah (voice)", "id": 12903, "credit_id": "52fe4284c3a36847f8024fbd", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Penn Jillette", "character": "TV Announcer (voice)", "id": 37221, "credit_id": "52fe4284c3a36847f8024fc5", "cast_id": 27, "profile_path": "/2POQ8DxkVDBXYoT8YGEpeE49sIa.jpg", "order": 12}, {"name": "Jack Angel", "character": "Shark / Rocky Gibraltar (voice)", "id": 19545, "credit_id": "52fe4284c3a36847f8024fc9", "cast_id": 28, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 13}, {"name": "Spencer Aste", "character": "Additional Voice", "id": 1266092, "credit_id": "52fe4284c3a36847f8024fcd", "cast_id": 29, "profile_path": "/pGt7q88bw8gDD8cOVzmMGUXEZ6.jpg", "order": 14}, {"name": "Greg Berg", "character": "Minesweeper Soldier (voice)", "id": 94038, "credit_id": "52fe4284c3a36847f8024fd1", "cast_id": 30, "profile_path": "/3TwBirdnh0AmKRSMhdWzzgZ0zTH.jpg", "order": 15}, {"name": "Lisa Bradley", "character": "Additional Voice", "id": 1202809, "credit_id": "52fe4284c3a36847f8024fd5", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Kendall Cunningham", "character": "Additional Voice", "id": 134713, "credit_id": "52fe4284c3a36847f8024fd9", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Debi Derryberry", "character": "Aliens / Troll / Announcer on Intercom at Pizza Planet (voice)", "id": 73016, "credit_id": "52fe4284c3a36847f8024fdd", "cast_id": 33, "profile_path": "/mfmF3MjoL7sV76BSElFkVgDgA30.jpg", "order": 18}, {"name": "Cody Dorkin", "character": "Additional Voice", "id": 186614, "credit_id": "52fe4284c3a36847f8024fe1", "cast_id": 34, "profile_path": "/pFmPDFwi1oPqvqZtiejlxTV86tn.jpg", "order": 19}, {"name": "Bill Farmer", "character": "Additional Voice", "id": 84213, "credit_id": "52fe4284c3a36847f8024fe5", "cast_id": 35, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 20}, {"name": "Craig Good", "character": "Additional Voice", "id": 1122227, "credit_id": "52fe4284c3a36847f8024fe9", "cast_id": 36, "profile_path": "/xqm0wzTaReXJKtRKaVQg7cwUV14.jpg", "order": 21}, {"name": "Gregory Grudt", "character": "Additional Voice", "id": 1017469, "credit_id": "52fe4284c3a36847f8024fed", "cast_id": 37, "profile_path": "/jISwKoeLNnc6X3Jylknnqdr6MZq.jpg", "order": 22}, {"name": "Danielle Judovits", "character": "Additional Voice", "id": 1217873, "credit_id": "52fe4284c3a36847f8024ff1", "cast_id": 38, "profile_path": "/bi4q307EILaJ4HIueVE4Hv59JXY.jpg", "order": 23}, {"name": "Sam Lasseter", "character": "Additional Voice", "id": 1266095, "credit_id": "52fe4284c3a36847f8024ff5", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Brittany Levenbrown", "character": "Additional Voice", "id": 178710, "credit_id": "52fe4284c3a36847f8024ff9", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Sherry Lynn", "character": "Additional Voice", "id": 214701, "credit_id": "52fe4284c3a36847f8024ffd", "cast_id": 41, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 26}, {"name": "Scott McAfee", "character": "Additional Voice", "id": 79020, "credit_id": "52fe4284c3a36847f8025001", "cast_id": 42, "profile_path": "/kEd73kzCrVhfnNa8LLULpna72Jk.jpg", "order": 27}, {"name": "Mickie McGowan", "character": "Sid's Mom (voice)", "id": 84493, "credit_id": "52fe4284c3a36847f8025005", "cast_id": 43, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 28}, {"name": "Ryan O'Donohue", "character": "Additional Voice", "id": 166406, "credit_id": "52fe4284c3a36847f8025009", "cast_id": 44, "profile_path": "/l1NV0rGZvHI7yGOeFbPeffoHtuP.jpg", "order": 29}, {"name": "Jeff Pidgeon", "character": "Aliens / Robot / Mr. Spell (voice)", "id": 7882, "credit_id": "52fe4284c3a36847f802500d", "cast_id": 45, "profile_path": "/yLddkg5HcgbJg00cS13GVBnP0HY.jpg", "order": 30}, {"name": "Patrick Pinney", "character": "Additional Voice", "id": 61968, "credit_id": "52fe4284c3a36847f8025011", "cast_id": 46, "profile_path": "/eU2rqG140FCPwzIjJTymVOd5RBY.jpg", "order": 31}, {"name": "Philip Proctor", "character": "Bowling Announcer / Pizza Planet Guard (voice)", "id": 61969, "credit_id": "52fe4284c3a36847f8025015", "cast_id": 47, "profile_path": "/15jVORFFWoRMcqKoeVJQXyEfLVz.jpg", "order": 32}, {"name": "Jan Rabson", "character": "Additional Voice", "id": 157626, "credit_id": "52fe4284c3a36847f8025019", "cast_id": 48, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 33}, {"name": "Joe Ranft", "character": "Lenny the Binoculars (voice)", "id": 7911, "credit_id": "52fe4284c3a36847f802501d", "cast_id": 49, "profile_path": "/4BMTIalaXLfb2PZXqBTBvM5ks8Z.jpg", "order": 34}, {"name": "Andrew Stanton", "character": "Commercial Chorus (voice)", "id": 7, "credit_id": "52fe4284c3a36847f8025021", "cast_id": 50, "profile_path": "/hMbbkReZWtuC7yNcX6v0ytOicMD.jpg", "order": 35}, {"name": "Shane Sweet", "character": "Additional Voice", "id": 158124, "credit_id": "52fe4284c3a36847f8025025", "cast_id": 51, "profile_path": "/lsutYUETco7Rjr24CLWPC80EzEP.jpg", "order": 36}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe4284c3a36847f8024f49", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}], "vote_average": 7.3, "runtime": 81}, "5174": {"poster_path": "/qgaDWYLrnEPJpc5Lp35WbgX7GfS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 258022233, "overview": "After an attempted assassination on Ambassador Han, Inspector Lee and Detective Carter are back in action as they head to Paris to protect a French woman with knowledge of the Triads' secret leaders. Lee also holds secret meetings with a United Nations authority, but his personal struggles with a Chinese criminal mastermind named Kenji, which reveals that it's Lee's long-lost...brother.", "video": false, "id": 5174, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rush Hour 3", "tagline": "The Rush Is On!", "vote_count": 226, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rUwky6VBdRb2R5yQme5hPtCdf1P.jpg", "poster_path": "/mPBCN49MF2SSR27EU3Al5ebMQM4.jpg", "id": 90863, "name": "Rush Hour Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0293564", "adult": false, "backdrop_path": "/n4wRGNrMblEywTZXnt88W54tYkU.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2007-08-10", "popularity": 0.99763205559928, "original_title": "Rush Hour 3", "budget": 140000000, "cast": [{"name": "Chris Tucker", "character": "Det. James Carter", "id": 66, "credit_id": "52fe43fac3a36847f807b565", "cast_id": 2, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 0}, {"name": "Jackie Chan", "character": "Chief Insp. Lee", "id": 18897, "credit_id": "52fe43fac3a36847f807b569", "cast_id": 3, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 1}, {"name": "Hiroyuki Sanada", "character": "Kenji", "id": 9195, "credit_id": "52fe43fac3a36847f807b56d", "cast_id": 4, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 2}, {"name": "Max von Sydow", "character": "Varden Reynard", "id": 2201, "credit_id": "52fe43fac3a36847f807b571", "cast_id": 5, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 3}, {"name": "Yvan Attal", "character": "George", "id": 2245, "credit_id": "52fe43fac3a36847f807b575", "cast_id": 6, "profile_path": "/kSP1gv3n06amj8zoajm8Gam5Mzl.jpg", "order": 4}, {"name": "Roman Polanski", "character": "Det. Revi", "id": 3556, "credit_id": "52fe43fac3a36847f807b579", "cast_id": 7, "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "order": 5}, {"name": "Zhang Jingchu", "character": "Soo Yung", "id": 41894, "credit_id": "52fe43fac3a36847f807b57d", "cast_id": 8, "profile_path": "/x30X7MB0P5wvKwOjX83DSzZtYMB.jpg", "order": 6}, {"name": "Philip Baker Hall", "character": "Capt. William Diel", "id": 4492, "credit_id": "52fe43fac3a36847f807b581", "cast_id": 9, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 7}, {"name": "No\u00e9mie Lenoir", "character": "Genevieve", "id": 145633, "credit_id": "52fe43fac3a36847f807b5e5", "cast_id": 26, "profile_path": "/xxksvdnhYW7M65ScvrDZsunEdFK.jpg", "order": 8}, {"name": "Sarah Shahi", "character": "Zoe (uncredited)", "id": 164945, "credit_id": "52fe43fac3a36847f807b5e9", "cast_id": 27, "profile_path": "/hTV326FBAlLmHOdPPiXVItCoivR.jpg", "order": 9}, {"name": "Youki Kudoh", "character": "Dragon Lady", "id": 16145, "credit_id": "52fe43fac3a36847f807b5ed", "cast_id": 28, "profile_path": "/4QtenZ3cLevnIDY831Y0YRQDJax.jpg", "order": 10}, {"name": "Tzi Ma", "character": "Ambassador Han", "id": 21629, "credit_id": "52fe43fac3a36847f807b5f1", "cast_id": 29, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 11}, {"name": "Dana Ivey", "character": "Sister Agnes", "id": 13314, "credit_id": "52fe43fac3a36847f807b5f5", "cast_id": 30, "profile_path": "/ewYWFkaZ1oon5BMMlx54OWl9MEo.jpg", "order": 12}, {"name": "Henry O", "character": "Master Yu", "id": 39829, "credit_id": "52fe43fac3a36847f807b5f9", "cast_id": 31, "profile_path": "/cJ7rk3cmGOc0m1T90oPgZylntcs.jpg", "order": 13}, {"name": "Mia Tyler", "character": "Marsha", "id": 215130, "credit_id": "52fe43fac3a36847f807b5fd", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Michael Chow", "character": "Chinese Foreign Minister", "id": 21631, "credit_id": "52fe43fac3a36847f807b601", "cast_id": 33, "profile_path": "/284hrxXjhtI9k4vv57pciQqMS8N.jpg", "order": 15}, {"name": "Kentaro", "character": "French Assassin", "id": 554599, "credit_id": "52fe43fac3a36847f807b605", "cast_id": 34, "profile_path": "/5GBHIczhjdmNe4jX0xKyiRNeAfN.jpg", "order": 16}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe43fac3a36847f807b561", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.2, "runtime": 91}, "5175": {"poster_path": "/xG43wsvHpOp2QIj2JGQEvmK8dgC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 347325802, "overview": "It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.", "video": false, "id": 5175, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Rush Hour 2", "tagline": "Get ready for a second Rush!", "vote_count": 290, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rUwky6VBdRb2R5yQme5hPtCdf1P.jpg", "poster_path": "/mPBCN49MF2SSR27EU3Al5ebMQM4.jpg", "id": 90863, "name": "Rush Hour Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0266915", "adult": false, "backdrop_path": "/bLv1am2xc4JqP4CzT7i48BFQjTu.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2001-08-03", "popularity": 0.60529298524106, "original_title": "Rush Hour 2", "budget": 90000000, "cast": [{"name": "Chris Tucker", "character": "Det. James Carter", "id": 66, "credit_id": "52fe43fac3a36847f807b66d", "cast_id": 10, "profile_path": "/1ePd2AOg8YYlvVT7HxXkqFFEk83.jpg", "order": 0}, {"name": "Jackie Chan", "character": "Chief Insp. Lee", "id": 18897, "credit_id": "52fe43fac3a36847f807b671", "cast_id": 11, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 1}, {"name": "Zhang Ziyi", "character": "Hu Li", "id": 1339, "credit_id": "52fe43fac3a36847f807b675", "cast_id": 12, "profile_path": "/4j5u0mSIcphI3sOSJGKbIliG4jO.jpg", "order": 2}, {"name": "Roselyn S\u00e1nchez", "character": "Isabella Molina", "id": 41901, "credit_id": "52fe43fac3a36847f807b679", "cast_id": 13, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 3}, {"name": "Ernie Reyes, Jr.", "character": "Zing", "id": 58210, "credit_id": "52fe43fac3a36847f807b683", "cast_id": 15, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 4}, {"name": "Don Cheadle", "character": "Kenny", "id": 1896, "credit_id": "52fe43fac3a36847f807b687", "cast_id": 16, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 5}, {"name": "John Lone", "character": "Ricky Tan", "id": 11389, "credit_id": "52fe43fac3a36847f807b68b", "cast_id": 18, "profile_path": "/qlzum4vK8Snzp65jiUVpZGYPzFE.jpg", "order": 7}, {"name": "Maggie Q", "character": "Girl in Car", "id": 21045, "credit_id": "52fe43fac3a36847f807b68f", "cast_id": 19, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 8}, {"name": "Alan King", "character": "Steve Reign", "id": 7169, "credit_id": "52fe43fac3a36847f807b693", "cast_id": 20, "profile_path": "/8yvDXsJr2jOkLDZTEcbQxwi5hcA.jpg", "order": 9}, {"name": "Harris Yulin", "character": "Agent Sterling", "id": 1166, "credit_id": "52fe43fac3a36847f807b697", "cast_id": 21, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 10}, {"name": "Kenneth Tsang", "character": "Captain Chin", "id": 10885, "credit_id": "52fe43fac3a36847f807b69b", "cast_id": 22, "profile_path": "/6oYTIjKlp8vsyxod7nPJ1R9V8Hf.jpg", "order": 11}, {"name": "Lisa LoCicero", "character": "Receptionist", "id": 101012, "credit_id": "52fe43fac3a36847f807b69f", "cast_id": 23, "profile_path": "/oVynyV7jYUeKfXYKjGMvfG58wSE.jpg", "order": 12}, {"name": "Meiling Melan\u00e7on", "character": "Girl in Car", "id": 73590, "credit_id": "52fe43fac3a36847f807b6a3", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Lucy Lin", "character": "Heaven on Earth Hostess", "id": 167160, "credit_id": "52fe43fac3a36847f807b6a7", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Cindy Lu", "character": "Heaven on Earth Hostess #2", "id": 154544, "credit_id": "52fe43fac3a36847f807b6ab", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Jeremy Piven", "character": "Versace Salesman", "id": 12799, "credit_id": "52fe43fac3a36847f807b6af", "cast_id": 27, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 16}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe43fac3a36847f807b63f", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.4, "runtime": 90}, "5176": {"poster_path": "/9Nwkh0eQmkymEOR0ovAALtjSIZW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 70016220, "overview": "In Arizona in the late 1800's, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the \"3:10 to Yuma\", a train that will take the killer to trial.", "video": false, "id": 5176, "genres": [{"id": 37, "name": "Western"}], "title": "3:10 to Yuma", "tagline": "Time waits for one man.", "vote_count": 441, "homepage": "http://www.310toyumathefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0381849", "adult": false, "backdrop_path": "/bk6TT6GYss9qBmNoJ6HqHtHLahw.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Tree Line Films", "id": 84}, {"name": "Relativity Media", "id": 7295}, {"name": "Yuma", "id": 10880}], "release_date": "2007-09-06", "popularity": 1.51228914015543, "original_title": "3:10 to Yuma", "budget": 55000000, "cast": [{"name": "Russell Crowe", "character": "Ben Wade", "id": 934, "credit_id": "52fe43fac3a36847f807b723", "cast_id": 1, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Christian Bale", "character": "Dan Evans", "id": 3894, "credit_id": "52fe43fac3a36847f807b727", "cast_id": 2, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 1}, {"name": "Logan Lerman", "character": "William Evans", "id": 33235, "credit_id": "52fe43fac3a36847f807b72b", "cast_id": 3, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Dallas Roberts", "character": "Grayson Butterfield", "id": 424, "credit_id": "52fe43fac3a36847f807b72f", "cast_id": 4, "profile_path": "/953COYG42TDhGMy9UqdGqLOF4fN.jpg", "order": 3}, {"name": "Peter Fonda", "character": "Byron McElroy", "id": 8949, "credit_id": "52fe43fac3a36847f807b739", "cast_id": 6, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 4}, {"name": "Gretchen Mol", "character": "Alice Evans", "id": 15370, "credit_id": "52fe43fac3a36847f807b73d", "cast_id": 7, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 5}, {"name": "Ben Foster", "character": "Charlie Prince", "id": 11107, "credit_id": "52fe43fac3a36847f807b741", "cast_id": 8, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 6}, {"name": "Alan Tudyk", "character": "Doc Potter", "id": 21088, "credit_id": "52fe43fac3a36847f807b745", "cast_id": 9, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 7}, {"name": "Vinessa Shaw", "character": "Emmy Nelson", "id": 5025, "credit_id": "52fe43fac3a36847f807b749", "cast_id": 10, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 8}, {"name": "Lennie Loftin", "character": "Glen Hollander", "id": 42200, "credit_id": "52fe43fac3a36847f807b74d", "cast_id": 11, "profile_path": "/n5k9l49SlCgEyfU6ggUl1QIrZe6.jpg", "order": 9}, {"name": "Rio Alexander", "character": "Campos", "id": 42201, "credit_id": "52fe43fac3a36847f807b751", "cast_id": 12, "profile_path": "/6UMca1x6OPEAXoAL1py5ER8qNwI.jpg", "order": 10}, {"name": "Pat Ricotti", "character": "Jorgensen", "id": 42203, "credit_id": "52fe43fac3a36847f807b755", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Shawn Howell", "character": "Jackson", "id": 42204, "credit_id": "52fe43fac3a36847f807b759", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Johnny Whitworth", "character": "Tommy Darden", "id": 73589, "credit_id": "52fe43fac3a36847f807b799", "cast_id": 25, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 13}, {"name": "Kevin Durand", "character": "Tucker", "id": 79072, "credit_id": "52fe43fac3a36847f807b79d", "cast_id": 26, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 14}, {"name": "Ramon Frank", "character": "Kinter", "id": 553357, "credit_id": "52fe43fac3a36847f807b7a1", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Deryle J. Lujan", "character": "Nez", "id": 553358, "credit_id": "52fe43fac3a36847f807b7a5", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "James 'Scotty' Augare", "character": "Nez", "id": 1204213, "credit_id": "52fe43fac3a36847f807b7a9", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Brian Duffy", "character": "Sutherland", "id": 949852, "credit_id": "52fe43fac3a36847f807b7ad", "cast_id": 30, "profile_path": "/1XlYJr9FaTZG4582ziUIoHT8QSP.jpg", "order": 18}, {"name": "Jason Rodriguez", "character": "Tighe", "id": 75617, "credit_id": "52fe43fac3a36847f807b7b1", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Chris Browning", "character": "Crawley", "id": 76543, "credit_id": "52fe43fac3a36847f807b7b5", "cast_id": 32, "profile_path": "/coja80Y3B1XJeCJpW6l1ReCH7Zh.jpg", "order": 20}, {"name": "Chad Brummett", "character": "Kane", "id": 208061, "credit_id": "52fe43fac3a36847f807b7b9", "cast_id": 33, "profile_path": null, "order": 21}, {"name": "Forrest Fyre", "character": "Walter Boles", "id": 79213, "credit_id": "52fe43fac3a36847f807b7bd", "cast_id": 34, "profile_path": null, "order": 22}, {"name": "Luke Wilson", "character": "Zeke", "id": 36422, "credit_id": "52fe43fac3a36847f807b7c1", "cast_id": 35, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 23}, {"name": "Benjamin Petry", "character": "Mark Evans", "id": 220118, "credit_id": "52fe43fac3a36847f807b7c5", "cast_id": 36, "profile_path": "/s0CaWbrxL9bhuiQ4F1XN6dWNPaW.jpg", "order": 24}, {"name": "Arron Shiver", "character": "Bill Moons", "id": 105786, "credit_id": "52fe43fac3a36847f807b7c9", "cast_id": 37, "profile_path": "/whHOz0t0JWvZd1LgeRm4oQe9KjO.jpg", "order": 25}, {"name": "Sean Hennigan", "character": "Marshal Will Doane", "id": 109525, "credit_id": "52fe43fac3a36847f807b7cd", "cast_id": 38, "profile_path": null, "order": 26}, {"name": "Girard Swan", "character": "Deputy Harvey Pell", "id": 1204214, "credit_id": "52fe43fac3a36847f807b7d1", "cast_id": 39, "profile_path": null, "order": 27}, {"name": "Christopher Berry", "character": "Deputy Sam Fuller", "id": 1173099, "credit_id": "52fe43fac3a36847f807b7d5", "cast_id": 40, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 28}, {"name": "David Oliver", "character": "Evil Bartender", "id": 1204215, "credit_id": "52fe43fac3a36847f807b7d9", "cast_id": 41, "profile_path": null, "order": 29}, {"name": "Jason Henning", "character": "Train Clerk", "id": 1204216, "credit_id": "52fe43fac3a36847f807b7dd", "cast_id": 42, "profile_path": null, "order": 30}, {"name": "Barbara Bartleson", "character": "Contention Woman (uncredited)", "id": 1204217, "credit_id": "52fe43fac3a36847f807b7e1", "cast_id": 43, "profile_path": null, "order": 31}, {"name": "James Blackburn", "character": "Gunfighter (uncredited)", "id": 1204218, "credit_id": "52fe43fac3a36847f807b7e5", "cast_id": 44, "profile_path": null, "order": 32}, {"name": "Brian Brown", "character": "Bad Guy #1 (uncredited)", "id": 1204219, "credit_id": "52fe43fac3a36847f807b7e9", "cast_id": 45, "profile_path": "/yIAsSC6w9c2gNFIIMHusmyVutLN.jpg", "order": 33}, {"name": "Trevor Coppola", "character": "William Marsh (uncredited)", "id": 1137847, "credit_id": "52fe43fac3a36847f807b7ed", "cast_id": 46, "profile_path": null, "order": 34}, {"name": "Harp Corrigan", "character": "Bisbee Townsman (uncredited)", "id": 1204220, "credit_id": "52fe43fac3a36847f807b7f1", "cast_id": 47, "profile_path": null, "order": 35}, {"name": "Hugh Elliot", "character": "Gunman (uncredited)", "id": 1204221, "credit_id": "52fe43fac3a36847f807b7f5", "cast_id": 48, "profile_path": null, "order": 36}, {"name": "Darren Gibson", "character": "Gunman (uncredited)", "id": 1204222, "credit_id": "52fe43fac3a36847f807b7f9", "cast_id": 49, "profile_path": null, "order": 37}, {"name": "KC King", "character": "Contention Gunman (uncredited)", "id": 1204223, "credit_id": "52fe43fac3a36847f807b7fd", "cast_id": 50, "profile_path": null, "order": 38}, {"name": "Melinda Kramer", "character": "Bisbee Townsperson (uncredited)", "id": 1204224, "credit_id": "52fe43fac3a36847f807b801", "cast_id": 51, "profile_path": null, "order": 39}, {"name": "Brent Lambert", "character": "Merchant (uncredited)", "id": 1204225, "credit_id": "52fe43fac3a36847f807b805", "cast_id": 52, "profile_path": null, "order": 40}, {"name": "Billy Lockwood", "character": "Gunman (uncredited)", "id": 967704, "credit_id": "52fe43fac3a36847f807b809", "cast_id": 53, "profile_path": null, "order": 41}, {"name": "J. Nathan Simmons", "character": "Town Drunk (uncredited)", "id": 1204226, "credit_id": "52fe43fac3a36847f807b80d", "cast_id": 54, "profile_path": null, "order": 42}, {"name": "Art Usher", "character": "Contention Gunman (uncredited)", "id": 927752, "credit_id": "52fe43fac3a36847f807b811", "cast_id": 55, "profile_path": null, "order": 43}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe43fac3a36847f807b735", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.6, "runtime": 122}, "37950": {"poster_path": "/ghv3vJtpnBtJh4HvN85ipkqOyRa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when a tragedy strikes and takes his dreams with it. After his high-school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. And as he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.", "video": false, "id": 37950, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Charlie St. Cloud", "tagline": "Life is for living", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1438254", "adult": false, "backdrop_path": "/m6HZBKGAvZ6qJEL1pKeUn0GbtUv.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2010-05-01", "popularity": 0.904075307693621, "original_title": "Charlie St. Cloud", "budget": 0, "cast": [{"name": "Zac Efron", "character": "Charlie St. Cloud", "id": 29222, "credit_id": "52fe46829251416c91056b01", "cast_id": 4, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Amanda Crew", "character": "Tess Carroll", "id": 58370, "credit_id": "52fe46829251416c91056b05", "cast_id": 5, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 1}, {"name": "Kim Basinger", "character": "Louise St. Cloud", "id": 326, "credit_id": "52fe46829251416c91056b09", "cast_id": 6, "profile_path": "/xpv6NgpY0mDr5QSWjZLXy5KlFn9.jpg", "order": 2}, {"name": "Chris Massoglia", "character": "Sam St. Cloud (older)", "id": 109441, "credit_id": "52fe46829251416c91056b0d", "cast_id": 7, "profile_path": "/s7oTPrx9WFbbfEqho0Z1Yd3zHmx.jpg", "order": 3}, {"name": "Dave Franco", "character": "Sully", "id": 54697, "credit_id": "52fe46829251416c91056b11", "cast_id": 8, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 4}, {"name": "Donal Logue", "character": "Tink Weatherbee", "id": 10825, "credit_id": "52fe46829251416c91056b15", "cast_id": 9, "profile_path": "/h0JZ8Hyc9p6sY2jQeJkDcax6UY3.jpg", "order": 5}, {"name": "Charlie Tahan", "character": "Sam St. Cloud", "id": 49918, "credit_id": "52fe46829251416c91056b19", "cast_id": 10, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 6}, {"name": "Tegan Moss", "character": "Cindy", "id": 52291, "credit_id": "52fe46829251416c91056b1d", "cast_id": 11, "profile_path": "/orYAn8KnNDvWUWObUpBZAB45Pn2.jpg", "order": 7}, {"name": "Augustus Prew", "character": "Alistair Wooley", "id": 3309, "credit_id": "52fe46829251416c91056b21", "cast_id": 12, "profile_path": "/k3pRpdfeHZq0BGBAYqhXyKjDuic.jpg", "order": 8}, {"name": "Julia Maxwell", "character": "Rachel", "id": 119219, "credit_id": "52fe46829251416c91056b25", "cast_id": 13, "profile_path": "/98JYMQKnTzlvLMWe33IR17HmW6t.jpg", "order": 9}, {"name": "Ray Liotta", "character": "Florio Ferrente", "id": 11477, "credit_id": "53829239c3a36805a1007778", "cast_id": 16, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 10}], "directors": [{"name": "Burr Steers", "department": "Directing", "job": "Director", "credit_id": "52fe46829251416c91056af1", "profile_path": "/rWztkNxfPclLILEjAhaHaOHSWs3.jpg", "id": 58552}], "vote_average": 6.8, "runtime": 99}, "13377": {"poster_path": "/oj7NVRtP2Z9w6Ub9rrGJwQncjUP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Bitter and hateful, the Grinch is irritated at the thought of the nearby village having a happy time celebrating Christmas. So disguised as Santa Claus, with his dog made to look like a reindeer, he raids the village to steal all the Christmas things. The village is sure to have a sad Christmas this year.", "video": false, "id": 13377, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "How the Grinch Stole Christmas!", "tagline": "You're a mean one, Mr. Grinch", "vote_count": 212, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0060345", "adult": false, "backdrop_path": "/cDRhoYxoR4QYDO0XW9qV6kmH85J.jpg", "production_companies": [{"name": "The Cat in the Hat Productions", "id": 8811}, {"name": "MGM Television", "id": 2230}], "release_date": "1966-12-18", "popularity": 0.255915890300582, "original_title": "How the Grinch Stole Christmas!", "budget": 315000, "cast": [{"name": "Boris Karloff", "character": "Narrator / The Grinch (voice)", "id": 2922, "credit_id": "52fe45619251416c750547b1", "cast_id": 3, "profile_path": "/gqaKR7BfXqBds8oLJ1KUGD8Gl6u.jpg", "order": 0}], "directors": [{"name": "Chuck Jones", "department": "Directing", "job": "Director", "credit_id": "52fe45619251416c750547a7", "profile_path": "/6JpwLPN4ugD5sw5Z0zjPQf6nhh8.jpg", "id": 100888}, {"name": "Ben Washam", "department": "Directing", "job": "Director", "credit_id": "52fe45619251416c750547ad", "profile_path": null, "id": 113285}], "vote_average": 7.0, "runtime": 26}, "46146": {"poster_path": "/dn1dV3NM2PGPGIfkRDSlNwotVA2.jpg", "production_countries": [{"iso_3166_1": "NO", "name": "Norway"}], "revenue": 4159678, "overview": "A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.", "video": false, "id": 46146, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "Troll Hunter", "tagline": "You believe it when you see it!", "vote_count": 152, "homepage": "http://trolljegeren.no/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "nb", "name": "Bokm\u00e5l"}], "imdb_id": "tt1740707", "adult": false, "backdrop_path": "/ruopuPKZZv7L5Wwgj9tt3Rm3gtG.jpg", "production_companies": [{"name": "Filmkameratene A/S", "id": 1003}, {"name": "Film Fund FUZZ", "id": 5241}], "release_date": "2010-10-29", "popularity": 0.717613813168093, "original_title": "Trolljegeren", "budget": 3500000, "cast": [{"name": "Otto Jespersen", "character": "Trolljegeren", "id": 141999, "credit_id": "52fe46e7c3a36847f8118cb7", "cast_id": 2, "profile_path": "/jPcbNb6tUPofYuaQaPxNgCGtmcW.jpg", "order": 0}, {"name": "Hans Morten Hansen", "character": "Finn", "id": 142000, "credit_id": "52fe46e7c3a36847f8118cbb", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Tomas Alf Larsen", "character": "Kalle", "id": 87880, "credit_id": "52fe46e7c3a36847f8118cbf", "cast_id": 4, "profile_path": "/qEIErOSFsUyI4kKr0K9xckzbrUe.jpg", "order": 2}, {"name": "Johanna M\u00f8rck", "character": "Johanna", "id": 142001, "credit_id": "52fe46e7c3a36847f8118cc3", "cast_id": 5, "profile_path": "/98Lv9ut9cHXWz9gcGW6vYps5zQl.jpg", "order": 3}, {"name": "Knut N\u00e6rum", "character": "E-verkssjef", "id": 142002, "credit_id": "52fe46e7c3a36847f8118cc7", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Robert Stoltenberg", "character": "Polsk bj\u00f8rnejeger", "id": 142003, "credit_id": "52fe46e7c3a36847f8118ccb", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Glenn Erland Tosterud", "character": "Thomas", "id": 142004, "credit_id": "52fe46e7c3a36847f8118ccf", "cast_id": 8, "profile_path": "/rGUVEtnLSvNBL77B2OOjTjHNKZy.jpg", "order": 6}], "directors": [{"name": "Andr\u00e9 \u00d8vredal", "department": "Directing", "job": "Director", "credit_id": "52fe46e7c3a36847f8118cb3", "profile_path": "/1V97U0z1P10sKUc6tn6MocGrgQZ.jpg", "id": 135113}], "vote_average": 6.9, "runtime": 103}, "37958": {"poster_path": "/3oM3xqBefB9pyZnHZ5Bkkrv797z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 226904017, "overview": "Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.", "video": false, "id": 37958, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Immortals", "tagline": "The Gods need a hero.", "vote_count": 372, "homepage": "http://www.immortalsmovie.com/splash/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1253864", "adult": false, "backdrop_path": "/pNw0c7aiUZHhu8WuolfOA8xube9.jpg", "production_companies": [{"name": "Hollywood Gang Productions", "id": 2994}, {"name": "Relativity Media", "id": 7295}, {"name": "Virgin Produced", "id": 8852}, {"name": "Mark Canton Productions", "id": 11761}, {"name": "Atmosphere Entertainment MM", "id": 2995}], "release_date": "2011-11-11", "popularity": 0.866854059809141, "original_title": "Immortals", "budget": 75000000, "cast": [{"name": "Mickey Rourke", "character": "King Hyperion", "id": 2295, "credit_id": "52fe46839251416c91056d8d", "cast_id": 1, "profile_path": "/AvGzQ8fvjurGmZW3W1wlQ5WfSeT.jpg", "order": 0}, {"name": "Kellan Lutz", "character": "Poseidon", "id": 34502, "credit_id": "52fe46839251416c91056d91", "cast_id": 2, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 1}, {"name": "Isabel Lucas", "character": "Athena", "id": 103554, "credit_id": "52fe46839251416c91056d95", "cast_id": 3, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 2}, {"name": "Henry Cavill", "character": "Theseus", "id": 73968, "credit_id": "52fe46839251416c91056d99", "cast_id": 4, "profile_path": "/qDJ3TIIHnaE9x6GUt9QlDXi3KRZ.jpg", "order": 3}, {"name": "Luke Evans", "character": "Zeus", "id": 114019, "credit_id": "52fe46839251416c91056d9d", "cast_id": 5, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 4}, {"name": "John Hurt", "character": "Old Zeus", "id": 5049, "credit_id": "52fe46839251416c91056da1", "cast_id": 6, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 5}, {"name": "Freida Pinto", "character": "Phaedra", "id": 76792, "credit_id": "52fe46839251416c91056da5", "cast_id": 7, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 6}, {"name": "Stephen Dorff", "character": "Stavros", "id": 10822, "credit_id": "52fe46839251416c91056da9", "cast_id": 8, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 7}, {"name": "Robert Maillet", "character": "Minotaur", "id": 112692, "credit_id": "52fe46839251416c91056dad", "cast_id": 9, "profile_path": "/cmP2CakmT1j0wXAjNEVQMGcR0cL.jpg", "order": 8}, {"name": "Alan van Sprang", "character": "Dareios", "id": 99183, "credit_id": "52fe46839251416c91056db1", "cast_id": 10, "profile_path": "/les7cqXIk3UwCT025wSJyumFryX.jpg", "order": 9}, {"name": "Joseph Morgan", "character": "Lysander", "id": 79505, "credit_id": "52fe46839251416c91056db5", "cast_id": 11, "profile_path": "/zD3eoY3TM0hqKOdtJlcjmRSECMC.jpg", "order": 10}, {"name": "Corey Sevier", "character": "Apollo", "id": 43265, "credit_id": "52fe46839251416c91056db9", "cast_id": 12, "profile_path": "/3OsXhsL6kscwTeftjoRTMb4qqhQ.jpg", "order": 11}, {"name": "Steve Byers", "character": "Heracles", "id": 43292, "credit_id": "52fe46839251416c91056dbd", "cast_id": 13, "profile_path": "/idVVOo2FaOTK2EMBNy34Pesqi4H.jpg", "order": 12}, {"name": "Romano Orzari", "character": "Icarus", "id": 96591, "credit_id": "52fe46839251416c91056dc1", "cast_id": 14, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 13}, {"name": "James A. Woods", "character": "Captain of the Archers", "id": 80019, "credit_id": "52fe46839251416c91056dc5", "cast_id": 15, "profile_path": "/tZChYeszIf1bfkMuveSAA2W9vJ3.jpg", "order": 14}, {"name": "Daniel Sharman", "character": "Aries", "id": 119248, "credit_id": "52fe46839251416c91056dc9", "cast_id": 16, "profile_path": "/uCkcpPWLTXaUAfLzbvvGf6dL7bA.jpg", "order": 15}, {"name": "Robert Naylor", "character": "Young Theseus", "id": 119249, "credit_id": "52fe46839251416c91056dcd", "cast_id": 17, "profile_path": "/vnHTsgmL677q7Ch2838vNBRQNMQ.jpg", "order": 16}, {"name": "Mercedes Leggett", "character": "High Priestess", "id": 119250, "credit_id": "52fe46839251416c91056dd1", "cast_id": 18, "profile_path": "/6KwhorXj8YXkTlOZAX5vnANFZqT.jpg", "order": 17}, {"name": "Gage Munroe", "character": "Acamus", "id": 119251, "credit_id": "52fe46839251416c91056dd5", "cast_id": 19, "profile_path": "/8m8mA4WF7aywSPIN4FTO5cloTj.jpg", "order": 18}, {"name": "Carlo Mestroni", "character": "Holy Man", "id": 115595, "credit_id": "52fe46839251416c91056dd9", "cast_id": 20, "profile_path": "/pDqKSIyzd1xQCg9aQbHqZmZyTRN.jpg", "order": 19}, {"name": "Aron Tomori", "character": "Young Lysander (as Aron J. Tomori)", "id": 119252, "credit_id": "52fe46839251416c91056ddd", "cast_id": 21, "profile_path": "/2GORd03MIvW7fHg3ZNEZZHXxFhQ.jpg", "order": 20}, {"name": "Neil Napier", "character": "Beast Master", "id": 105496, "credit_id": "52fe46839251416c91056de1", "cast_id": 22, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 21}, {"name": "Tamas Menyhart", "character": "Heraklion", "id": 1287220, "credit_id": "52fe46839251416c91056e6f", "cast_id": 46, "profile_path": "/bLFBaaN5C9th7AxGU3tQFpQQosz.jpg", "order": 22}, {"name": "Ayisha Issa", "character": "High Priestess #4", "id": 231517, "credit_id": "5339729ac3a3680e9f005c16", "cast_id": 47, "profile_path": "/lCrVPwyBgXDBvuwY7NTwZpG8FYu.jpg", "order": 23}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe46839251416c91056de7", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 5.7, "runtime": 110}, "21575": {"poster_path": "/mRJuB3PEbKQyWtp1CCcpa34c60F.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 0, "overview": "Sentenced to six years in prison, Malik El Djebena (Tahar Rahim) is alone in the world and can neither read nor write. On his arrival at the prison, he seems younger and more brittle than the others detained there. At once he falls under the sway of a group of Corsicans who enforce their rule in the prison. As the 'missions' go by, he toughens himself and wins the confidence of the Corsican group.", "video": false, "id": 21575, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "A Prophet", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "co", "name": ""}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1235166", "adult": false, "backdrop_path": "/iKZ7ZSYeTkIftzlq8Uf0waYXChh.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Chic Films", "id": 12398}, {"name": "Page 114", "id": 11779}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Union G\u00e9n\u00e9rale Cin\u00e9matographique (UGC)", "id": 7248}, {"name": "BIM Distribuzione", "id": 225}, {"name": "Celluloid Dreams", "id": 860}, {"name": "France 2 (FR2)", "id": 11359}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "R\u00e9gion Ile-de-France", "id": 11246}, {"name": "Conseil R\u00e9gional de Provence-Alpes C\u00f4te d'Azur", "id": 12399}, {"name": "Centre National de la Cin\u00e9matographie", "id": 310}, {"name": "Sofica UGC 1", "id": 11435}, {"name": "Sofica Soficin\u00e9ma 4", "id": 11397}, {"name": "Soficin\u00e9ma 5", "id": 12400}], "release_date": "2009-08-26", "popularity": 0.501448553540844, "original_title": "Un proph\u00e8te", "budget": 13000000, "cast": [{"name": "Tahar Rahim", "character": "Malik El Djebena", "id": 81051, "credit_id": "52fe441fc3a368484e010bcf", "cast_id": 1, "profile_path": "/wXKlcceUG1aRzisnL2nxbQVe18w.jpg", "order": 0}, {"name": "Niels Arestrup", "character": "C\u00e9sar Luciani", "id": 17498, "credit_id": "52fe441fc3a368484e010bd3", "cast_id": 2, "profile_path": "/nmY1YLZN2rZ4JeLmzA3thQLaMUt.jpg", "order": 1}, {"name": "Adel Bencherif", "character": "Ryad", "id": 89624, "credit_id": "52fe441fc3a368484e010bd7", "cast_id": 3, "profile_path": "/tx51bAbUpyNTsiFPjswTniQR6Fb.jpg", "order": 2}, {"name": "Hichem Yacoubi", "character": "Reyeb", "id": 89625, "credit_id": "52fe441fc3a368484e010bdb", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Reda Kateb", "character": "Jordi", "id": 89626, "credit_id": "52fe441fc3a368484e010bdf", "cast_id": 5, "profile_path": "/zfrJui3N3UybfLJQOMC6SalcBlJ.jpg", "order": 4}, {"name": "Jean-Philippe Ricci", "character": "Vettori", "id": 89627, "credit_id": "52fe441fc3a368484e010be3", "cast_id": 6, "profile_path": "/1IVuEv4VfjrX2DgqP0H8yQiPpzS.jpg", "order": 5}, {"name": "Gilles Cohen", "character": "Prof", "id": 17500, "credit_id": "52fe441fc3a368484e010be7", "cast_id": 7, "profile_path": "/4Iq0KkYMGLXfAmyGXfhPPdRZrmC.jpg", "order": 6}, {"name": "Antoine Basler", "character": "Pilicci", "id": 35965, "credit_id": "52fe441fc3a368484e010beb", "cast_id": 8, "profile_path": "/bh8bq3wYtEp3Q0DCdeW7vAoj7kr.jpg", "order": 7}, {"name": "Pierre Leccia", "character": "Sampierro", "id": 358635, "credit_id": "52fe441fc3a368484e010c49", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Foued Nassah", "character": "Antaro", "id": 130451, "credit_id": "52fe441fc3a368484e010c4d", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Jean-Emmanuel Pagni", "character": "Santi", "id": 967414, "credit_id": "52fe441fc3a368484e010c51", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Fr\u00e9d\u00e9ric Graziani", "character": "Prison Warden", "id": 586117, "credit_id": "52fe441fc3a368484e010c55", "cast_id": 27, "profile_path": null, "order": 11}, {"name": "Le\u00efla Bekhti", "character": "Djamila", "id": 23383, "credit_id": "52fe441fc3a368484e010c59", "cast_id": 28, "profile_path": "/whlTg4xpvMeeXszBGxDyQYsD0fk.jpg", "order": 12}, {"name": "Rabah Loucif", "character": "Malik's Lawyer", "id": 1109346, "credit_id": "52fe441fc3a368484e010c5d", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "Jacques Audiard", "department": "Directing", "job": "Director", "credit_id": "52fe441fc3a368484e010bf1", "profile_path": "/AwkHfUzBQLC9RJfm8WjX646TblA.jpg", "id": 17496}], "vote_average": 7.4, "runtime": 155}, "193610": {"poster_path": "/fu7K3rPwJcScizlXbxWAR7ZoUxt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 196781193, "overview": "After discovering her boyfriend is married, Carly soon meets the wife he's been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.", "video": false, "id": 193610, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Other Woman", "tagline": "The oddest friends are about to get even", "vote_count": 442, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2203939", "adult": false, "backdrop_path": "/dklihoqv6NtOLiDUbRWlhQpnfxU.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2014-04-25", "popularity": 2.14592690370363, "original_title": "The Other Woman", "budget": 40000000, "cast": [{"name": "Cameron Diaz", "character": "Carly Whitten", "id": 6941, "credit_id": "52fe4cd39251416c91101645", "cast_id": 7, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Kate King", "id": 41087, "credit_id": "52fe4cd39251416c91101641", "cast_id": 6, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Kate Upton", "character": "Amber", "id": 974317, "credit_id": "52fe4cd39251416c91101655", "cast_id": 12, "profile_path": "/dg6MDwt0krGVi6d6uRGLXFagKoN.jpg", "order": 2}, {"name": "Don Johnson", "character": "Frank", "id": 25129, "credit_id": "52fe4cd39251416c91101659", "cast_id": 13, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 3}, {"name": "Nikolaj Coster-Waldau", "character": "Mark King", "id": 12795, "credit_id": "52fe4cd39251416c9110163d", "cast_id": 5, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 4}, {"name": "Taylor Kinney", "character": "Phil", "id": 210271, "credit_id": "52fe4cd39251416c91101651", "cast_id": 11, "profile_path": "/22OpVOcxlDR2aFX3khIIQekhaEJ.jpg", "order": 5}, {"name": "Nicki Minaj", "character": "Lydia", "id": 968660, "credit_id": "52fe4cd39251416c91101649", "cast_id": 9, "profile_path": "/kxbMXTarZ7btT0BEHx700chph7m.jpg", "order": 6}, {"name": "Deborah Twiss", "character": "", "id": 116881, "credit_id": "52fe4cd39251416c9110164d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Alyshia Ochse", "character": "Cece", "id": 1031261, "credit_id": "52fe4cd39251416c9110165d", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Jennifer Glasgow", "character": "", "id": 1181294, "credit_id": "52fe4cd39251416c91101661", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "David Thornton", "character": "Nick", "id": 76526, "credit_id": "53569d52c3a3687f340000be", "cast_id": 16, "profile_path": "/jDcmAwRCUYd3QSVEVc9Xq2Yi9Xf.jpg", "order": 10}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe4cd39251416c91101627", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 6.1, "runtime": 109}, "13387": {"poster_path": "/eEQ4JieKyLBRRSRnRGuPlxp7qiS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 108979549, "overview": "Frank Martin puts the driving gloves on to deliver Valentina, the kidnapped daughter of a Ukranian government official, from Marseilles to Odessa on the Black Sea. En route, he has to contend with thugs who want to intercept Valentina's safe delivery and not let his personal feelings get in the way of his dangerous objective.", "video": false, "id": 13387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Transporter 3", "tagline": "This time, the rules are the same. Except one.", "vote_count": 401, "homepage": "http://transporter3film.com/", "belongs_to_collection": {"backdrop_path": "/qDuTIGAEbxF3jP9zNILLAoxNLpU.jpg", "poster_path": "/5MWCU1Eqc2HB6zZKFrGrgdH4d4M.jpg", "id": 9518, "name": "The Transporter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "hu", "name": "Magyar"}], "imdb_id": "tt1129442", "adult": false, "backdrop_path": "/rgkPGIxOWKSvQjAhn0mLuYvqfLO.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Grive Productions", "id": 6877}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2008-11-26", "popularity": 1.33448120694491, "original_title": "Transporter 3", "budget": 30000000, "cast": [{"name": "Jason Statham", "character": "Frank Martin", "id": 976, "credit_id": "52fe45639251416c75054a6b", "cast_id": 7, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Inspector Tarconi", "id": 7693, "credit_id": "52fe45639251416c75054a6f", "cast_id": 8, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 1}, {"name": "Natalya Rudakova", "character": "Valentina Vasilev", "id": 75036, "credit_id": "52fe45639251416c75054a73", "cast_id": 9, "profile_path": "/kbAM9Egh45zrY3RiqsrJdYkRuXA.jpg", "order": 2}, {"name": "Robert Knepper", "character": "Johnson", "id": 17343, "credit_id": "52fe45639251416c75054a77", "cast_id": 10, "profile_path": "/1ogC78qPLmDz2uRGLjI8LKtjvVl.jpg", "order": 3}, {"name": "David Atrakchi", "character": "Malcom Manville", "id": 134410, "credit_id": "52fe45639251416c75054a7b", "cast_id": 11, "profile_path": "/nE8FAAlgbtMZOXnTDSl9HUchqxp.jpg", "order": 4}, {"name": "Alex Kobold", "character": "Leonid's Aide", "id": 134411, "credit_id": "52fe45639251416c75054a7f", "cast_id": 12, "profile_path": "/1i3EgjRYYna6TpYS6z4HJ8znuVs.jpg", "order": 5}, {"name": "Yann Sundberg", "character": "Flag", "id": 134412, "credit_id": "52fe45639251416c75054a83", "cast_id": 13, "profile_path": "/5GR6dwAUTnep2EpuWvUheTouW1K.jpg", "order": 6}, {"name": "Eriq Ebouaney", "character": "Ice", "id": 25078, "credit_id": "52fe45639251416c75054a87", "cast_id": 14, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 7}, {"name": "Silvio Simac", "character": "Mighty Joe", "id": 134414, "credit_id": "52fe45639251416c75054a8b", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Timo Dierkes", "character": "Otto", "id": 7816, "credit_id": "52fe45639251416c75054a8f", "cast_id": 16, "profile_path": "/pU2nuvme5AGFtLQuYZ0kUyqQHEo.jpg", "order": 9}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "52fe45639251416c75054a49", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 5.9, "runtime": 104}, "82687": {"poster_path": "/kSkn9lunpGQClYzpmcu7fnTX8ZZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41300000, "overview": "An inventor and his mom hit the road together so he can sell his latest invention.", "video": false, "id": 82687, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Guilt Trip", "tagline": "Get ready for one mother of a road trip", "vote_count": 126, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1694020", "adult": false, "backdrop_path": "/tLTWqdazwadvgtBDkcYzUXvj15p.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}], "release_date": "2012-12-19", "popularity": 0.613957464895732, "original_title": "The Guilt Trip", "budget": 40000000, "cast": [{"name": "Seth Rogen", "character": "Andy Brewster", "id": 19274, "credit_id": "52fe486a9251416c9108bb2b", "cast_id": 13, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Barbra Streisand", "character": "Joyce Brewster", "id": 10400, "credit_id": "52fe486a9251416c9108bb3b", "cast_id": 17, "profile_path": "/iLkX0Qwz2BH42rcZ0yWqPtyKSeN.jpg", "order": 1}, {"name": "Yvonne Strahovski", "character": "Jessica", "id": 63312, "credit_id": "52fe486a9251416c9108bb2f", "cast_id": 14, "profile_path": "/mgcaJaKhZtakVldW2KXYXhQ6ZJY.jpg", "order": 2}, {"name": "Colin Hanks", "character": "Rob", "id": 3492, "credit_id": "52fe486a9251416c9108bb33", "cast_id": 15, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 3}, {"name": "Adam Scott", "character": "Andrew Margolis Jr.", "id": 36801, "credit_id": "53342ee4c3a3682a94001fcf", "cast_id": 29, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 4}, {"name": "Danny Pudi", "character": "Sanjay", "id": 205179, "credit_id": "52fe486a9251416c9108bb3f", "cast_id": 18, "profile_path": "/tQePBWCu70VyqBWZNQBHFFV09E9.jpg", "order": 5}, {"name": "Kathy Najimy", "character": "", "id": 11074, "credit_id": "52fe486a9251416c9108bb43", "cast_id": 19, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 6}, {"name": "Casey Wilson", "character": "Amanda", "id": 83872, "credit_id": "52fe486a9251416c9108bb47", "cast_id": 20, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 7}, {"name": "Brett Cullen", "character": "Ben", "id": 16841, "credit_id": "52fe486a9251416c9108bb4b", "cast_id": 21, "profile_path": "/dSucCeOCUJy8nDjUjxmWguu3W1D.jpg", "order": 8}, {"name": "Dale Dickey", "character": "Tammy", "id": 46814, "credit_id": "52fe486a9251416c9108bb4f", "cast_id": 22, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 9}, {"name": "Michael Cassidy", "character": "Fake Andy", "id": 56556, "credit_id": "52fe486a9251416c9108bb53", "cast_id": 23, "profile_path": "/x9jWnEivc0XhvlO8Xch0VCFu2m5.jpg", "order": 10}, {"name": "Brandon Keener", "character": "", "id": 149829, "credit_id": "52fe486a9251416c9108bb57", "cast_id": 24, "profile_path": "/1FeIVSTtrUjMRC0aFpKU6Q4y7M9.jpg", "order": 11}, {"name": "Robert Curtis Brown", "character": "Bob Ferguson", "id": 233298, "credit_id": "52fe486a9251416c9108bb5b", "cast_id": 25, "profile_path": "/1plgmYJoFzTUJwPD1YbMtl9NQxD.jpg", "order": 12}, {"name": "Ari Graynor", "character": "Joyce Margolis", "id": 71552, "credit_id": "52fe486a9251416c9108bb5f", "cast_id": 26, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 13}, {"name": "Nora Dunn", "character": "Amy", "id": 4496, "credit_id": "52fe486a9251416c9108bb63", "cast_id": 27, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 14}, {"name": "Miriam Margolyes", "character": "Anita", "id": 6199, "credit_id": "53071482c3a368625900052e", "cast_id": 28, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 15}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe486a9251416c9108baeb", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 5.5, "runtime": 95}, "13389": {"poster_path": "/rUKws37KgZ6rtUObEvTLn4ziEjN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73174566, "overview": "Two veteran New York City detectives work to identify the possible connection between a recent murder and a case they believe they solved years ago; is there a serial killer on the loose, and did they perhaps put the wrong person behind bars?", "video": false, "id": 13389, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Righteous Kill", "tagline": "Most people respect the badge. Everybody respects the gun.", "vote_count": 75, "homepage": "http://www.righteouskill-themovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034331", "adult": false, "backdrop_path": "/k3QPHRK6hn1fVyaSgHgyzckF3MQ.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "InVenture Entertainment", "id": 2831}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Nu-Image Films", "id": 21543}], "release_date": "2008-09-12", "popularity": 0.525744502094769, "original_title": "Righteous Kill", "budget": 60000000, "cast": [{"name": "Robert De Niro", "character": "Turk", "id": 380, "credit_id": "52fe45639251416c75054ac7", "cast_id": 9, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Carla Gugino", "character": "Karen Corelli", "id": 17832, "credit_id": "52fe45639251416c75054ab5", "cast_id": 4, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 2}, {"name": "50 Cent", "character": "Spider", "id": 62644, "credit_id": "52fe45639251416c75054ab1", "cast_id": 3, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 3}, {"name": "Al Pacino", "character": "Rooster", "id": 1158, "credit_id": "52fe45639251416c75054acb", "cast_id": 10, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 3}, {"name": "Donnie Wahlberg", "character": "Detective Ted Riley", "id": 2680, "credit_id": "52fe45639251416c75054ab9", "cast_id": 6, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 5}, {"name": "Brian Dennehy", "character": "Lieutentant Hingis", "id": 6197, "credit_id": "52fe45639251416c75054abd", "cast_id": 7, "profile_path": "/5OgSljTrXQ3pZvy66WveAGpygnS.jpg", "order": 5}, {"name": "John Leguizamo", "character": "Detective Simon Perez", "id": 5723, "credit_id": "52fe45639251416c75054acf", "cast_id": 11, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 6}, {"name": "Trilby Glover", "character": "Jessica", "id": 142101, "credit_id": "52fe45639251416c75054ad3", "cast_id": 12, "profile_path": "/iWTRGJqFIAma11W9dAckbwWuZEf.jpg", "order": 7}, {"name": "Melissa Leo", "character": "Cheryl", "id": 6832, "credit_id": "52fe45639251416c75054ad7", "cast_id": 13, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 8}, {"name": "Shirly Brener", "character": "Natalya", "id": 65123, "credit_id": "52fe45639251416c75054adb", "cast_id": 14, "profile_path": "/tB1xwjGYzRjsH7NLnJgCA3QlsIm.jpg", "order": 9}, {"name": "Ajay Naidu", "character": "Dr Chadrabar", "id": 1982, "credit_id": "52fe45639251416c75054adf", "cast_id": 15, "profile_path": "/yIlmjzp1IX1sehbE0xvozEBQbxA.jpg", "order": 10}, {"name": "Rob Dyrdek", "character": "Rambo", "id": 142589, "credit_id": "52fe45639251416c75054ae3", "cast_id": 16, "profile_path": "/cYYCsdMu8IFdaqSIfauzwpcH7mc.jpg", "order": 11}], "directors": [{"name": "Jon Avnet", "department": "Directing", "job": "Director", "credit_id": "52fe45639251416c75054ac3", "profile_path": "/ckcE5lD7KNCh6iYHwCbfbs4r2y2.jpg", "id": 18250}], "vote_average": 6.3, "runtime": 101}, "13394": {"poster_path": "/7gX0tyFT7sIgFROm5jXozJn0lDS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Christmas tree isn't the only thing green in this new holiday classic. Shrek is back and trying to get into the spirit of the season. After promising Fiona and the kids a Christmas they'll remember, he is forced to take a crash course in the holiday. But just when he thinks he has everything for their quiet family Christmas just right, there is a knock at the door.", "video": false, "id": 13394, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Shrek the Halls", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gMWrKQjoTIpYjhc8SxZF20EDIES.jpg", "poster_path": "/g1Kcbi5zSelArzR5UYkxKvG6K2a.jpg", "id": 2150, "name": "Shrek Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0897387", "adult": false, "backdrop_path": "/deIB7BNbJT37GuFcDyUzPh8uqyO.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2007-11-28", "popularity": 0.89228268222836, "original_title": "Shrek the Halls", "budget": 60000000, "cast": [{"name": "Mike Myers", "character": "Shrek (voice)", "id": 12073, "credit_id": "52fe45649251416c75054c49", "cast_id": 7, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Eddie Murphy", "character": "Donkey (voice)", "id": 776, "credit_id": "52fe45649251416c75054c4d", "cast_id": 8, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 1}, {"name": "Cameron Diaz", "character": "Princess Fiona (voice)", "id": 6941, "credit_id": "52fe45649251416c75054c51", "cast_id": 9, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 2}, {"name": "Antonio Banderas", "character": "Puss in Boots (voice)", "id": 3131, "credit_id": "52fe45649251416c75054c55", "cast_id": 10, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 3}, {"name": "Cody Cameron", "character": "Pinocchio / Three Pigs (voice)", "id": 12095, "credit_id": "52fe45649251416c75054c59", "cast_id": 11, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 4}, {"name": "Susan Fitzer", "character": "Suzie Cookie (voice)", "id": 76741, "credit_id": "52fe45649251416c75054c5d", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Christopher Knights", "character": "Blind Mice (voice)", "id": 12097, "credit_id": "52fe45649251416c75054c61", "cast_id": 14, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 6}, {"name": "Gary Trousdale", "character": "Santa (voice)", "id": 62047, "credit_id": "52fe45649251416c75054c65", "cast_id": 15, "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "order": 7}, {"name": "Conrad Vernon", "character": "Gingerbread Man (voice)", "id": 12080, "credit_id": "52fe45649251416c75054c69", "cast_id": 16, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 8}, {"name": "Aron Warner", "character": "Wolf (voice)", "id": 12106, "credit_id": "52fe45649251416c75054c6d", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Marissa Jaret Winokur", "character": "Bookstore Clerk (voice)", "id": 76742, "credit_id": "52fe45649251416c75054c71", "cast_id": 18, "profile_path": "/mpB7Ny5yhuvRS7pqpD824aid4hG.jpg", "order": 10}, {"name": "Miles Christopher Bakshi", "character": "Ogre Baby (voice)", "id": 76743, "credit_id": "52fe45649251416c75054c75", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Nina Zoe Bakshi", "character": "Ogre Baby (voice)", "id": 76744, "credit_id": "52fe45649251416c75054c79", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Dante James Hauser", "character": "Ogre Baby (voice)", "id": 76745, "credit_id": "52fe45649251416c75054c7d", "cast_id": 21, "profile_path": null, "order": 13}], "directors": [{"name": "Gary Trousdale", "department": "Directing", "job": "Director", "credit_id": "52fe45639251416c75054c27", "profile_path": "/naRhdLVuw6a8KtDPM2aJWPhPjsp.jpg", "id": 62047}], "vote_average": 5.6, "runtime": 58}, "4964": {"poster_path": "/z4jvDMQwjc42p6zfZysYjBX7EHZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 148761765, "overview": "For fun loving party animal Ben Stone, the last thing he ever expected was for his one night stand to show up on his doorstep eight weeks later to tell him she's pregnant.", "video": false, "id": 4964, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Knocked Up", "tagline": "Save the due date.", "vote_count": 308, "homepage": "http://knockedupmovie.com/", "belongs_to_collection": {"backdrop_path": "/sVXPlw09BLvqTQQYlqtAHruu1hs.jpg", "poster_path": "/ttZrgOVWavGJM4yPUovcr4BKc4f.jpg", "id": 182436, "name": "Knocked Up / This Is 40 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0478311", "adult": false, "backdrop_path": "/cmEojt7Ykuk6p2argyu0hEDoo0d.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}, {"name": "Universal Pictures", "id": 33}], "release_date": "2007-06-01", "popularity": 1.17058951387891, "original_title": "Knocked Up", "budget": 30000000, "cast": [{"name": "Seth Rogen", "character": "Ben Stone", "id": 19274, "credit_id": "52fe43e8c3a36847f80779fb", "cast_id": 2, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Katherine Heigl", "character": "Alison Scott", "id": 25541, "credit_id": "52fe43e8c3a36847f80779ff", "cast_id": 3, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Debbie", "id": 41087, "credit_id": "52fe43e8c3a36847f8077a51", "cast_id": 17, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Pete", "id": 22226, "credit_id": "52fe43e8c3a36847f8077a55", "cast_id": 18, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Jason Segel", "character": "Jason", "id": 41088, "credit_id": "52fe43e8c3a36847f8077a59", "cast_id": 19, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 4}, {"name": "Jay Baruchel", "character": "Jay", "id": 449, "credit_id": "52fe43e8c3a36847f8077a5d", "cast_id": 20, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 5}, {"name": "Jonah Hill", "character": "Jonah", "id": 21007, "credit_id": "52fe43e8c3a36847f8077a61", "cast_id": 21, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 6}, {"name": "Martin Starr", "character": "Martin", "id": 41089, "credit_id": "52fe43e8c3a36847f8077a65", "cast_id": 22, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 7}, {"name": "Maude Apatow", "character": "Sadie", "id": 41090, "credit_id": "52fe43e8c3a36847f8077a69", "cast_id": 23, "profile_path": "/3VOawL9cIJD2btDRYWoOHnJIkAM.jpg", "order": 8}, {"name": "Harold Ramis", "character": "Ben's Dad", "id": 1524, "credit_id": "52fe43e8c3a36847f8077a6d", "cast_id": 24, "profile_path": "/zLzR2UwzyrR9A6RMarZJV833X9K.jpg", "order": 9}, {"name": "Alan Tudyk", "character": "Jack", "id": 21088, "credit_id": "52fe43e8c3a36847f8077a71", "cast_id": 25, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 10}, {"name": "Kristen Wiig", "character": "Jill", "id": 41091, "credit_id": "52fe43e8c3a36847f8077a75", "cast_id": 26, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 11}, {"name": "Bill Hader", "character": "Brent", "id": 19278, "credit_id": "52fe43e8c3a36847f8077a79", "cast_id": 27, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 12}, {"name": "Craig Robinson", "character": "Club Doorman", "id": 64342, "credit_id": "52fe43e8c3a36847f8077a7d", "cast_id": 28, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 13}, {"name": "Charlyne Yi", "character": "Jodi", "id": 93285, "credit_id": "52fe43e8c3a36847f8077a93", "cast_id": 32, "profile_path": "/nH6Wfy1ikRNj97RWLZ2FRPbxSOA.jpg", "order": 14}, {"name": "Ken Jeong", "character": "Doctor Kuni", "id": 83586, "credit_id": "52fe43e8c3a36847f8077a97", "cast_id": 33, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 15}, {"name": "B. J. Novak", "character": "Young Doctor", "id": 107770, "credit_id": "52fe43e8c3a36847f8077a9b", "cast_id": 34, "profile_path": "/aD2ewhKJymfPGYpGFS4JCzop7Lh.jpg", "order": 16}, {"name": "Jessica Alba", "character": "Herself (uncredited)", "id": 56731, "credit_id": "52fe43e8c3a36847f8077a9f", "cast_id": 35, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 17}, {"name": "Steve Carell", "character": "Himself (uncredited)", "id": 4495, "credit_id": "52fe43e8c3a36847f8077aa3", "cast_id": 36, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 18}, {"name": "Andy Dick", "character": "Himself (uncredited)", "id": 43120, "credit_id": "52fe43e8c3a36847f8077aa7", "cast_id": 37, "profile_path": "/ebNRu8oV7Ifv5aoP23UyNnx0lZS.jpg", "order": 19}, {"name": "James Franco", "character": "Himself (uncredited)", "id": 17051, "credit_id": "52fe43e8c3a36847f8077aab", "cast_id": 38, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 20}, {"name": "Eva Mendes", "character": "Herself (uncredited)", "id": 8170, "credit_id": "52fe43e8c3a36847f8077aaf", "cast_id": 39, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 21}, {"name": "Ryan Seacrest", "character": "Himself (uncredited)", "id": 167662, "credit_id": "52fe43e8c3a36847f8077ab3", "cast_id": 40, "profile_path": "/nsNVAiUnb6BUQXOQIxEEozqS1Zb.jpg", "order": 22}, {"name": "Dax Shepard", "character": "Himself (uncredited)", "id": 51298, "credit_id": "52fe43e8c3a36847f8077ab7", "cast_id": 41, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 23}, {"name": "Adam Scott", "character": "Samuel", "id": 36801, "credit_id": "52fe43e8c3a36847f8077abb", "cast_id": 42, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 24}, {"name": "Catherine Reitman", "character": "Alison's Friend", "id": 154826, "credit_id": "5303774b925141218c5bf75c", "cast_id": 43, "profile_path": "/g3vfawpUKC0wCPNANg9ib4ZmaZc.jpg", "order": 25}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe43e8c3a36847f80779f7", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 5.9, "runtime": 129}, "13413": {"poster_path": "/tdvyi9asDeOF65MwTqNNMoAhqP4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "What lengths will a robot undergo to do his job? BURN\u2022E is a dedicated hard working robot who finds himself locked out of his ship. BURN\u2022E quickly learns that completing a simple task can often be a very difficult endeavor.", "video": false, "id": 13413, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "BURN\u00b7E", "tagline": "", "vote_count": 116, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1334585", "adult": false, "backdrop_path": "/us64LmtSBNELHIprKB7CSt8MEvC.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2008-11-17", "popularity": 0.834428975030096, "original_title": "BURN\u00b7E", "budget": 0, "cast": [{"name": "Angus MacLane", "character": "BURN-E", "id": 7929, "credit_id": "52fe45669251416c750550d5", "cast_id": 2, "profile_path": "/7U1mEvzHGNJiC07EOhKIKSl3Qiy.jpg", "order": 0}, {"name": "Tessa Swigart", "character": "Maintenance computer", "id": 138073, "credit_id": "52fe45669251416c750550d9", "cast_id": 3, "profile_path": null, "order": 1}, {"name": "Ben Burtt", "character": "WALL\u00b7E / M-O", "id": 670, "credit_id": "52fe45669251416c750550dd", "cast_id": 4, "profile_path": "/pYSkspLspSDVLZUQ43pByOebsCX.jpg", "order": 2}, {"name": "Jeff Garlin", "character": "Captain", "id": 60074, "credit_id": "52fe45669251416c750550e1", "cast_id": 5, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 3}, {"name": "Elissa Knight", "character": "EVE", "id": 72754, "credit_id": "52fe45669251416c750550e5", "cast_id": 6, "profile_path": "/21JKhZc6bTAoHcwSjQhZcdhhx5d.jpg", "order": 4}], "directors": [{"name": "Angus MacLane", "department": "Directing", "job": "Director", "credit_id": "52fe45669251416c750550d1", "profile_path": "/7U1mEvzHGNJiC07EOhKIKSl3Qiy.jpg", "id": 7929}], "vote_average": 8.0, "runtime": 8}, "871": {"poster_path": "/ktS3v2OfBouSiDDA3tQsrjidt5i.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33395426, "overview": "Taylor and two other astronauts come out of deep hibernation to find that their ship has crashed. Escaping with little more than clothes they find that they have landed on a planet where men are pre-lingual and uncivilized while apes have learned speech and technology. Taylor is captured and taken to the city of the apes after damaging his throat so that he is silent and cannot communicate with the apes.", "video": false, "id": 871, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Planet of the Apes", "tagline": "Somewhere in the Universe, there must be something better than man!", "vote_count": 229, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2BQc7pXBU7zWGWMJDQBDuV5X8ra.jpg", "poster_path": "/n9nUdnx1awdQeHC6FTiNohr2fiT.jpg", "id": 1709, "name": "Planet of the Apes (Original) Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0063442", "adult": false, "backdrop_path": "/fRWXvva07M2n6ZBMKDAd6dBA7ZO.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "APJAC Productions", "id": 12943}], "release_date": "1968-02-07", "popularity": 0.773222623069736, "original_title": "Planet of the Apes", "budget": 5800000, "cast": [{"name": "Charlton Heston", "character": "George Taylor", "id": 10017, "credit_id": "52fe4285c3a36847f8025619", "cast_id": 1, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 0}, {"name": "Roddy McDowall", "character": "Cornelius", "id": 7505, "credit_id": "52fe4285c3a36847f802561d", "cast_id": 2, "profile_path": "/e0OZn5SUXHghdmAgJbF3uLHD5gf.jpg", "order": 1}, {"name": "Kim Hunter", "character": "Zira", "id": 10539, "credit_id": "52fe4285c3a36847f8025621", "cast_id": 3, "profile_path": "/nB44EysedphcIWftSqyyG2qBYk8.jpg", "order": 2}, {"name": "Maurice Evans", "character": "Dr. Zaius", "id": 12023, "credit_id": "52fe4285c3a36847f802566d", "cast_id": 20, "profile_path": "/tpb69FMfZVErJzpyipYQBGsIRp.jpg", "order": 3}, {"name": "James Daly", "character": "Dr. Honorious", "id": 13259, "credit_id": "52fe4285c3a36847f8025625", "cast_id": 5, "profile_path": "/rTVNNmOksnx8PSSiNztDXoTO3rG.jpg", "order": 4}, {"name": "Linda Harrison", "character": "Nova", "id": 13260, "credit_id": "52fe4285c3a36847f8025629", "cast_id": 6, "profile_path": "/hT3pOpVkSoYV1RgxkOiu2CukKAv.jpg", "order": 5}, {"name": "Robert Gunner", "character": "Landon", "id": 13261, "credit_id": "52fe4285c3a36847f802562d", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Lou Wagner", "character": "Lucius", "id": 13262, "credit_id": "52fe4285c3a36847f8025631", "cast_id": 8, "profile_path": "/w5ONY2iwmYvcPp8aa08UKEg7UeV.jpg", "order": 7}, {"name": "Woodrow Parfrey", "character": "Dr. Maximus", "id": 13263, "credit_id": "52fe4285c3a36847f8025635", "cast_id": 9, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 8}, {"name": "Jeff Burton", "character": "Dodge", "id": 13264, "credit_id": "52fe4285c3a36847f8025639", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "James Whitmore", "character": "President of the Assembly", "id": 6577, "credit_id": "549edc6bc3a3682f21008684", "cast_id": 22, "profile_path": "/r1xOgXFjqhn2fonn78rlXKPZGFw.jpg", "order": 10}, {"name": "Buck Kartalian", "character": "Julius", "id": 111489, "credit_id": "549edc949251411d53002bc6", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Norman Burton", "character": "Hunt Leader", "id": 10195, "credit_id": "549edca3c3a3682f1b0084f1", "cast_id": 24, "profile_path": "/ezoKMuCDcWSnDaB5pVWMyj21E6H.jpg", "order": 12}, {"name": "Wright King", "character": "Dr. Galen", "id": 10541, "credit_id": "549edcb39251411d53002bcb", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Paul Lambert", "character": "Minister", "id": 1084815, "credit_id": "549edccbc3a368554200530a", "cast_id": 26, "profile_path": null, "order": 14}], "directors": [{"name": "Franklin J. Schaffner", "department": "Directing", "job": "Director", "credit_id": "52fe4285c3a36847f802563f", "profile_path": "/dqrDUANz8sf0BXTBh0gr1heUr5U.jpg", "id": 13265}], "vote_average": 7.0, "runtime": 112}, "46195": {"poster_path": "/tljxcbuC5MT4SzpwAYYYnqlQ9JC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 471009915, "overview": "From the makers of the hit \"Ice Age\" series comes \"Rio,\" a comedy adventure about taking a walk on the wild side. Blu is a domesticated Macaw who never learned to fly, living a comfortable life with his owner and best friend Linda in the small town of Moose Lake, Minnesota. Blu and Linda think he's the last of his kind, but when they learn about another Macaw who lives in Rio de Janeiro, they head to the faraway and exotic land to find Jewel, Blu's female counterpart. Not long after they arrive, Blu and Jewel are kidnapped by a group of bungling animal smugglers. With the help of street smart Jewel, and a group of wise-cracking and smooth-talking city birds, Blu escapes. Now, with his new friends by his side, Blu will have to find the courage to learn to fly, thwart the kidnappers who are hot on their trail, and return to Linda, the best friend a bird ever had.", "video": false, "id": 46195, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Rio", "tagline": "1 out of every 8 Americans is afraid of flying. Most of them don't have feathers.", "vote_count": 1008, "homepage": "http://www.riomovies.com/", "belongs_to_collection": {"backdrop_path": "/9Rgf0Lcp0bZ0ik3r93ACleL1GJp.jpg", "poster_path": "/pT6r9PuRyIldckN9mKDIkT21nCA.jpg", "id": 229932, "name": "Rio Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1436562", "adult": false, "backdrop_path": "/odbEuhGUgSkeWWD1sPoylXTZMUa.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 26162}, {"name": "Twentieth Century Fox Animation", "id": 11749}], "release_date": "2011-04-15", "popularity": 1.34267135527331, "original_title": "Rio", "budget": 90000000, "cast": [{"name": "Jesse Eisenberg", "character": "Blu (voice)", "id": 44735, "credit_id": "52fe46e9c3a36847f81195ed", "cast_id": 15, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Jewel (voice)", "id": 1813, "credit_id": "52fe46e9c3a36847f81195f5", "cast_id": 17, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Leslie Mann", "character": "Linda (voice)", "id": 41087, "credit_id": "52fe46e9c3a36847f81195dd", "cast_id": 12, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 2}, {"name": "Jane Lynch", "character": "Alice/Goose (voice)", "id": 43775, "credit_id": "52fe46e9c3a36847f81195d1", "cast_id": 9, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 4}, {"name": "Will.i.am", "character": "Pedro (voice)", "id": 82092, "credit_id": "52fe46e9c3a36847f81195d9", "cast_id": 11, "profile_path": "/1fnVRBhRg9vuJ7OA1fcG2kr0Xx4.jpg", "order": 5}, {"name": "Wanda Sykes", "character": "Chloe/Goose (voice)", "id": 27102, "credit_id": "52fe46e9c3a36847f81195cd", "cast_id": 8, "profile_path": "/8qSQRIKhxJWhLUrOKLsOmN6mbSd.jpg", "order": 6}, {"name": "George Lopez", "character": "Rafael (voice)", "id": 41798, "credit_id": "52fe46e9c3a36847f81195f1", "cast_id": 16, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 6}, {"name": "Jamie Foxx", "character": "Nico (voice)", "id": 134, "credit_id": "52fe46e9c3a36847f81195d5", "cast_id": 10, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 8}, {"name": "Rodrigo Santoro", "character": "Tulio (voice)", "id": 17289, "credit_id": "52fe46e9c3a36847f81195f9", "cast_id": 18, "profile_path": "/yI23sv0KbEz2WhSgzC1aMCi0qeT.jpg", "order": 9}, {"name": "Jemaine Clement", "character": "Nigel (voice)", "id": 55936, "credit_id": "52fe46e9c3a36847f81195fd", "cast_id": 19, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 10}, {"name": "Jake T. Austin", "character": "Fernando (voice)", "id": 60255, "credit_id": "52fe46e9c3a36847f8119601", "cast_id": 20, "profile_path": "/bxcgwmrxGOibH2uIhmXlq3cu7NH.jpg", "order": 11}, {"name": "Tracy Morgan", "character": "Luiz (voice)", "id": 56903, "credit_id": "52fe46e9c3a36847f8119605", "cast_id": 21, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 12}, {"name": "Carlos Ponce", "character": "Marcel (voice)", "id": 62067, "credit_id": "52fe46e9c3a36847f8119609", "cast_id": 22, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 13}], "directors": [{"name": "Carlos Saldanha", "department": "Directing", "job": "Director", "credit_id": "52fe46e9c3a36847f81195c3", "profile_path": "/quMiXofILtHMqiraEpCFHkl1HoS.jpg", "id": 5714}], "vote_average": 6.5, "runtime": 96}, "5236": {"poster_path": "/5Lif1qGiyaF8OqG9lR3eqzeEC3S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15785148, "overview": "A petty thief posing as an actor is brought to Los Angeles for an unlikely audition and finds himself in the middle of a murder investigation along with his high school dream girl and a detective who's been training him for his upcoming role...", "video": false, "id": 5236, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Kiss Kiss Bang Bang", "tagline": "SeX. MurdEr. MyStery. Welcome to the party.", "vote_count": 224, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0373469", "adult": false, "backdrop_path": "/wGoyTXBDWHh2V7Jft0R9A0HdKHA.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "2005-10-21", "popularity": 0.8511729301954, "original_title": "Kiss Kiss Bang Bang", "budget": 15000000, "cast": [{"name": "Robert Downey Jr.", "character": "Harry Lockhart", "id": 3223, "credit_id": "52fe43fec3a36847f807c457", "cast_id": 35, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Val Kilmer", "character": "Gay Perry", "id": 5576, "credit_id": "52fe43fec3a36847f807c3b9", "cast_id": 2, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 1}, {"name": "Michelle Monaghan", "character": "Harmony Faith Lane", "id": 11705, "credit_id": "52fe43fec3a36847f807c3bd", "cast_id": 3, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 2}, {"name": "Corbin Bernsen", "character": "Harlan Dexter", "id": 21246, "credit_id": "52fe43fec3a36847f807c3c1", "cast_id": 4, "profile_path": "/5E4ptQ88NCyeIYlS8NkMm9BzWQJ.jpg", "order": 3}, {"name": "Dash Mihok", "character": "Mr. Frying Pan", "id": 6066, "credit_id": "52fe43fec3a36847f807c3c5", "cast_id": 5, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 4}, {"name": "Larry Miller", "character": "Dabney Shaw", "id": 1211, "credit_id": "52fe43fec3a36847f807c3c9", "cast_id": 6, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 5}, {"name": "Rockmond Dunbar", "character": "Mr. Fire", "id": 17345, "credit_id": "52fe43fec3a36847f807c3cd", "cast_id": 7, "profile_path": "/6ydZZk6sKg8YhdVLaMAr0T7SZox.jpg", "order": 6}, {"name": "Shannyn Sossamon", "character": "Pink Hair Girl", "id": 27855, "credit_id": "52fe43fec3a36847f807c3d1", "cast_id": 8, "profile_path": "/kGMjtdleHZHLWGIt7Lxqer1NEyW.jpg", "order": 7}, {"name": "Angela Lindvall", "character": "Flicka", "id": 42158, "credit_id": "52fe43fec3a36847f807c3d5", "cast_id": 9, "profile_path": "/xp0U715ol7HUjBIgvaeYI93f4dm.jpg", "order": 8}, {"name": "Indio Falconer Downey", "character": "Harry Age 9", "id": 42159, "credit_id": "52fe43fec3a36847f807c3d9", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Ariel Winter", "character": "Harmony Age 7", "id": 42160, "credit_id": "52fe43fec3a36847f807c3dd", "cast_id": 11, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 10}, {"name": "Duane Carnahan", "character": "Chainsaw Kid", "id": 42163, "credit_id": "52fe43fec3a36847f807c3e1", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Josh Richman", "character": "Rickie", "id": 3209, "credit_id": "52fe43fec3a36847f807c3e5", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Martha Hackett", "character": "Pistol Woman", "id": 42165, "credit_id": "52fe43fec3a36847f807c3e9", "cast_id": 14, "profile_path": "/wIpkcSbOkQvZackeUtbowBbDYfQ.jpg", "order": 13}, {"name": "Nancy Fish", "character": "NY Casting Woman", "id": 42168, "credit_id": "52fe43fec3a36847f807c3ed", "cast_id": 15, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 14}], "directors": [{"name": "Shane Black", "department": "Directing", "job": "Director", "credit_id": "52fe43fec3a36847f807c441", "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "id": 1108}], "vote_average": 7.1, "runtime": 103}, "4970": {"poster_path": "/jwTiVNi21EhaP8QbkJkVUn2SYsa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 141591324, "overview": "After a car crash, a criminal psychologist (Halle Berry) comes to, only to find that she's a patient in the same mental institution that currently employs her. It seems she's been accused of murdering her husband -- but she has no memory of committing the crime. As she tries to regain her memory and convince her co-workers of her innocence, a vengeful spirit uses her as an earthly pawn, which further convinces everyone of her guilt.", "video": false, "id": 4970, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Gothika", "tagline": "Because someone is dead doesn't mean they're gone.", "vote_count": 160, "homepage": "http://gothikamovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0348836", "adult": false, "backdrop_path": "/z3RwN10gTG28Q9oPsnTj8rtbdJe.jpg", "production_companies": [{"name": "Dark Castle Entertainment", "id": 1786}], "release_date": "2003-10-24", "popularity": 0.893310777213831, "original_title": "Gothika", "budget": 40000000, "cast": [{"name": "Halle Berry", "character": "Miranda Grey", "id": 4587, "credit_id": "52fe43e9c3a36847f8077d49", "cast_id": 14, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Pete Graham", "id": 3223, "credit_id": "52fe43e9c3a36847f8077d4d", "cast_id": 15, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Charles S. Dutton", "character": "Dr. Douglas Grey", "id": 17764, "credit_id": "52fe43e9c3a36847f8077d51", "cast_id": 16, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Chloe Sava", "id": 955, "credit_id": "52fe43e9c3a36847f8077d55", "cast_id": 17, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "John Carroll Lynch", "character": "Sheriff Ryan", "id": 3911, "credit_id": "52fe43e9c3a36847f8077d59", "cast_id": 18, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 4}, {"name": "Bernard Hill", "character": "Phil Parsons", "id": 1369, "credit_id": "52fe43e9c3a36847f8077d5d", "cast_id": 19, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 5}], "directors": [{"name": "Mathieu Kassovitz", "department": "Directing", "job": "Director", "credit_id": "52fe43e9c3a36847f8077cfd", "profile_path": "/6QeXmtq08zzVN0Ix6SHWpVoV8vn.jpg", "id": 2406}], "vote_average": 5.9, "runtime": 98}, "5255": {"poster_path": "/sxRSUqxcUsF3EjQDYJscqs16AaI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 305875730, "overview": "This is the story of a young boy on Christmas Eve who boards a magical train that's headed to the North Pole. What unfolds is an an adventure which follows a doubting boy, who takes an extraordinary train ride to the North Pole; during this ride, he embarks on a journey of self-discovery which shows him that the wonder of life never fades for those who believe.", "video": false, "id": 5255, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Polar Express", "tagline": "Journey Beyond Your Imagination.", "vote_count": 360, "homepage": "http://wwws.warnerbros.de/movies/polarexpress/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338348", "adult": false, "backdrop_path": "/mXPoxiRny3VPH0iXJWXlyTq1mjo.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Golden Mean", "id": 1867}, {"name": "Universal CGI", "id": 1868}, {"name": "Shangri-La Entertainment", "id": 2265}, {"name": "Playtone", "id": 4171}, {"name": "Warner Bros.", "id": 6194}, {"name": "ImageMovers", "id": 11395}], "release_date": "2004-11-10", "popularity": 1.20211367263255, "original_title": "The Polar Express", "budget": 165000000, "cast": [{"name": "Tom Hanks", "character": "Hero Boy | Father | Conducter | Santa Clause | Scrooge | Hobo", "id": 31, "credit_id": "52fe4400c3a36847f807c9c1", "cast_id": 26, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Michael Jeter", "character": "Smokey | Steamer", "id": 2169, "credit_id": "52fe4400c3a36847f807c9c5", "cast_id": 27, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 0}, {"name": "Eddie Deezen", "character": "Know-It-All", "id": 42362, "credit_id": "52fe4400c3a36847f807c9c9", "cast_id": 36, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 0}, {"name": "Chris Coppola", "character": "Toothless Boy", "id": 23791, "credit_id": "52fe4400c3a36847f807c9d5", "cast_id": 39, "profile_path": "/A3vl2TSWtz5Fh1MTeCRs7vTz6Tk.jpg", "order": 0}, {"name": "Nona Gaye", "character": "Hero Girl", "id": 18286, "credit_id": "52fe4400c3a36847f807c9cd", "cast_id": 37, "profile_path": "/tNwU5M0ylEuDtxqFLpNnNE7jFKb.jpg", "order": 5}, {"name": "Peter Scolari", "character": "Lonely Boy", "id": 42363, "credit_id": "52fe4400c3a36847f807c9d1", "cast_id": 38, "profile_path": "/tLSgD0c7i2rpIS5kNfTysy6Sz0P.jpg", "order": 6}, {"name": "Charles Fleischer", "character": "Elf General", "id": 12826, "credit_id": "52fe4400c3a36847f807c9d9", "cast_id": 41, "profile_path": "/vlF5j4y3lEKO6wXJ1R98ixUmebx.jpg", "order": 8}, {"name": "Steven Tyler", "character": "Elf Lieutenant", "id": 37935, "credit_id": "52fe4400c3a36847f807c9dd", "cast_id": 42, "profile_path": "/fWZw1OWKHwg5NZ3cRb0S7GaXteO.jpg", "order": 9}, {"name": "Leslie Zemeckis", "character": "Mother", "id": 42287, "credit_id": "52fe4400c3a36847f807c9e1", "cast_id": 43, "profile_path": null, "order": 10}, {"name": "Julene Renee", "character": "Red Head Girl", "id": 42286, "credit_id": "52fe4400c3a36847f807c9e5", "cast_id": 44, "profile_path": "/gONOL0vTflEd5yH1x3hcr2maFV5.jpg", "order": 11}, {"name": "Andy Pellick", "character": "Pastry Chef", "id": 1080274, "credit_id": "52fe4400c3a36847f807c9e9", "cast_id": 45, "profile_path": null, "order": 12}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe4400c3a36847f807c92d", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.1, "runtime": 100}, "13448": {"poster_path": "/grN4lETrHNejatQZFP2F2DAWMU4.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 356613439, "overview": "Harvard symbologist Robert Langdon investigates a mysterious symbol seared into the chest of a murdered physicist. He discovers evidence of the unimaginable, the rebirth of an ancient secret brotherhood known as the Illuminati, the most powerful underground organization ever to walk the earth.", "video": false, "id": 13448, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Angels & Demons", "tagline": "The holiest event of our time. Perfect for their return.", "vote_count": 689, "homepage": "http://www.angelsanddemons.com/", "belongs_to_collection": {"backdrop_path": "/j1IqpLhCypllamjKe6C2RstjfEQ.jpg", "poster_path": "/8AeWdpMobmSlo4G2eY4w8REdIDe.jpg", "id": 115776, "name": "Robert Langdon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0808151", "adult": false, "backdrop_path": "/wjrTJhDQEqmmaEfbM2Qo8ibzvSS.jpg", "production_companies": [{"name": "Panorama Films", "id": 5561}, {"name": "Columbia Pictures", "id": 5}, {"name": "Imagine Entertainment", "id": 23}, {"name": "Skylark Productions", "id": 8253}], "release_date": "2009-05-15", "popularity": 1.56156108890759, "original_title": "Angels & Demons", "budget": 150000000, "cast": [{"name": "Tom Hanks", "character": "Robert Langdon", "id": 31, "credit_id": "52fe45699251416c75055939", "cast_id": 4, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Carlo Ventresca", "id": 3061, "credit_id": "52fe45699251416c75055941", "cast_id": 6, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Ayelet Zurer", "character": "Vittoria Vetra", "id": 8786, "credit_id": "52fe45699251416c7505593d", "cast_id": 5, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 2}, {"name": "Stellan Skarsg\u00e5rd", "character": "Commander Richter", "id": 1640, "credit_id": "52fe45699251416c75055945", "cast_id": 7, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 3}, {"name": "Pierfrancesco Favino", "character": "Inspector Olivetti", "id": 17839, "credit_id": "52fe45699251416c7505595d", "cast_id": 14, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 4}, {"name": "Nikolaj Lie Kaas", "character": "Mr. Gray", "id": 1018, "credit_id": "52fe45699251416c75055969", "cast_id": 17, "profile_path": "/xO4yWra3xoK0rdzDN4OC8Jwh0FH.jpg", "order": 5}, {"name": "Armin Mueller-Stahl", "character": "Cardinal Strauss", "id": 12647, "credit_id": "52fe45699251416c75055955", "cast_id": 12, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 6}, {"name": "Thure Lindhardt", "character": "Chartrand", "id": 20258, "credit_id": "52fe45699251416c75055961", "cast_id": 15, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 7}, {"name": "David Pasquesi", "character": "Claudio Vincenzi", "id": 74487, "credit_id": "52fe45699251416c75055949", "cast_id": 8, "profile_path": "/gdmc0k64Tz1s7mJRVIWKjJJSn1M.jpg", "order": 8}, {"name": "Cosimo Fusco", "character": "Father Simeon", "id": 74488, "credit_id": "52fe45699251416c7505594d", "cast_id": 9, "profile_path": "/lQVPLXe7lHdkGbovh28DlOMewuF.jpg", "order": 9}, {"name": "Victor Alfieri", "character": "Lieutenant Valenti", "id": 74494, "credit_id": "52fe45699251416c75055981", "cast_id": 25, "profile_path": "/o2Z2xw9gabUjRCglTuy46VkIMqT.jpg", "order": 10}, {"name": "Franklin Amobi", "character": "Cardinal Lamasse", "id": 966875, "credit_id": "52fe456a9251416c75055a0b", "cast_id": 79, "profile_path": null, "order": 11}, {"name": "Curt Lowens", "character": "Cardinal Ebner", "id": 74506, "credit_id": "52fe45699251416c75055995", "cast_id": 37, "profile_path": "/3UPPxKXP52sHpDcmPB9FZdA7ayP.jpg", "order": 12}, {"name": "Bob Yerkes", "character": "Cardinal Guidera", "id": 26738, "credit_id": "52fe456a9251416c75055a27", "cast_id": 87, "profile_path": null, "order": 13}, {"name": "Marc Fiorini", "character": "Cardinal Baggia", "id": 987053, "credit_id": "52fe456a9251416c75055a0f", "cast_id": 81, "profile_path": null, "order": 14}, {"name": "Carmen Argenziano", "character": "Father Silvano Bentivoglio", "id": 28413, "credit_id": "52fe45699251416c75055951", "cast_id": 11, "profile_path": "/zvGnKptfUgfkmu9gR5EUeR5s5Ri.jpg", "order": 15}, {"name": "Howard Mungo", "character": "Cardinal Yoruba", "id": 168981, "credit_id": "52fe456a9251416c75055a13", "cast_id": 82, "profile_path": null, "order": 16}, {"name": "Rance Howard", "character": "Cardinal Beck", "id": 22250, "credit_id": "52fe456a9251416c75055a17", "cast_id": 83, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 17}, {"name": "Steve Franken", "character": "Cardinal Colbert", "id": 24323, "credit_id": "52fe456a9251416c75055a1b", "cast_id": 84, "profile_path": "/qKMpXpB14ybv2GnY0QDO5SNRadC.jpg", "order": 18}, {"name": "Gino Conforti", "character": "Cardinal Pugini", "id": 74492, "credit_id": "52fe45699251416c75055975", "cast_id": 21, "profile_path": "/7EPicshDcPKxAHnHwjYmcgtg7E.jpg", "order": 19}, {"name": "Elya Baskin", "character": "Cardinal Petrov", "id": 2368, "credit_id": "52fe45699251416c75055965", "cast_id": 16, "profile_path": "/tM5oF8bl5p1LfgXCkDAh8JYOLiU.jpg", "order": 20}, {"name": "Richard Rosetti", "character": "Conclave Cardinal", "id": 1277667, "credit_id": "52fe456a9251416c75055a1f", "cast_id": 85, "profile_path": null, "order": 21}, {"name": "Silvano Marchetto", "character": "Conclave Cardinal", "id": 1277668, "credit_id": "52fe456a9251416c75055a23", "cast_id": 86, "profile_path": null, "order": 22}, {"name": "Thomas Morris", "character": "Urs Weber", "id": 40224, "credit_id": "52fe456a9251416c75055a2b", "cast_id": 88, "profile_path": null, "order": 23}, {"name": "Jonas Fisch", "character": "Adrian Bachman", "id": 74509, "credit_id": "52fe45699251416c75055999", "cast_id": 40, "profile_path": "/lfYSfUVPacz7ZnIjIMIRpzAQPrj.jpg", "order": 24}, {"name": "August Wittgenstein", "character": "Swiss Guardsman", "id": 1247537, "credit_id": "52fe456a9251416c75055a4f", "cast_id": 97, "profile_path": null, "order": 25}, {"name": "Ben Bela B\u00f6hm", "character": "Swiss Guardsman", "id": 1136411, "credit_id": "52fe456a9251416c75055a2f", "cast_id": 89, "profile_path": "/r1SKzkGMy3TsRGGmLkbrqcrrlUS.jpg", "order": 26}, {"name": "Paul Schmitz", "character": "Swiss Guardsman", "id": 1277675, "credit_id": "52fe456a9251416c75055a33", "cast_id": 90, "profile_path": null, "order": 27}, {"name": "Jeffrey Boehm", "character": "Swiss Guard Blue", "id": 74516, "credit_id": "52fe45699251416c750559a1", "cast_id": 48, "profile_path": "/8vsKP1TsCH9CMGcRv8tpuascpZ8.jpg", "order": 28}, {"name": "Xavier J. Nathan", "character": "Philippe", "id": 1277676, "credit_id": "52fe456a9251416c75055a37", "cast_id": 91, "profile_path": null, "order": 29}, {"name": "Steve Kehela", "character": "American Reporter", "id": 168588, "credit_id": "52fe456a9251416c75055a3b", "cast_id": 92, "profile_path": null, "order": 30}, {"name": "Ursula Brooks", "character": "BBC Reporter", "id": 74490, "credit_id": "52fe45699251416c75055959", "cast_id": 13, "profile_path": "/6GaEmUC7xCPApqbMgZ6x9hDcQfp.jpg", "order": 31}, {"name": "Rashmi", "character": "British Reporter", "id": 74496, "credit_id": "52fe45699251416c75055989", "cast_id": 27, "profile_path": null, "order": 32}, {"name": "Yan Cui", "character": "Chinese Reporter", "id": 74495, "credit_id": "52fe45699251416c75055985", "cast_id": 26, "profile_path": "/u6qUlfTVUqxGSA0cSVdOAKOZv5d.jpg", "order": 33}, {"name": "Fritz Michel", "character": "French Reporter", "id": 1277677, "credit_id": "52fe456a9251416c75055a3f", "cast_id": 93, "profile_path": null, "order": 34}, {"name": "Maria Cristina Heller", "character": "Italian Reporter", "id": 27282, "credit_id": "52fe456a9251416c75055a43", "cast_id": 94, "profile_path": "/hN4vbj4kR7KMATKmLL4L8DZqFhk.jpg", "order": 35}, {"name": "Pascal Petardi", "character": "Italian Reporter", "id": 74499, "credit_id": "52fe45699251416c7505598d", "cast_id": 30, "profile_path": "/934MymOOoyfcJEf8Cd5VEGfP0nY.jpg", "order": 36}, {"name": "Yesenia Adame", "character": "Mexican Reporter", "id": 211624, "credit_id": "52fe456a9251416c75055a47", "cast_id": 95, "profile_path": null, "order": 37}, {"name": "Kristof Konrad", "character": "Polish Reporter", "id": 74502, "credit_id": "52fe45699251416c75055991", "cast_id": 33, "profile_path": "/glLoabE6ofcj9gEW0ejwvN3CyB4.jpg", "order": 38}, {"name": "Masasa Moyo", "character": "South African Reporter", "id": 34520, "credit_id": "52fe45699251416c75055971", "cast_id": 19, "profile_path": "/kyghWHugRBGhyNEu5ne7p5INu3s.jpg", "order": 39}, {"name": "Ed Francis Martin", "character": "South American Reporter", "id": 74511, "credit_id": "52fe45699251416c7505599d", "cast_id": 43, "profile_path": "/8sA0hnM1XLtV733FmAPN0sE8OuL.jpg", "order": 40}, {"name": "Cheryl Howard", "character": "CERN Scientist", "id": 6180, "credit_id": "52fe456a9251416c75055a4b", "cast_id": 96, "profile_path": "/sKnhM1uzCpi5uQrUbsx4C5ItrbB.jpg", "order": 41}, {"name": "Endre Hules", "character": "CERN Scientist", "id": 43461, "credit_id": "52fe45699251416c75055979", "cast_id": 22, "profile_path": "/cmxqIcfikG6rr5ag45ZkhYMP51Z.jpg", "order": 42}, {"name": "Norbert Weisser", "character": "CERN Scientist", "id": 6701, "credit_id": "52fe45699251416c7505596d", "cast_id": 18, "profile_path": "/1UwXOZi6EhwLEkVyNPUG6yeTYN.jpg", "order": 43}, {"name": "Shelby Zemanek", "character": "Little Girl in Square", "id": 74493, "credit_id": "52fe45699251416c7505597d", "cast_id": 24, "profile_path": "/zsZTYQj8kBVIjkcPkic54rYFo4b.jpg", "order": 44}, {"name": "Justin Giddings", "character": "Vatican Choir Member", "id": 1189077, "credit_id": "54c80238c3a3687090000852", "cast_id": 185, "profile_path": null, "order": 45}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe45699251416c7505592f", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 6.0, "runtime": 138}, "38031": {"poster_path": "/owCEJJCrylS8Z9rG1m4Bl2Wpd12.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.", "video": false, "id": 38031, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "You Will Meet a Tall Dark Stranger", "tagline": "", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1182350", "adult": false, "backdrop_path": "/la0aNM61vvLx8Ia7501DuWKQRCb.jpg", "production_companies": [{"name": "Antena 3 Films", "id": 6538}], "release_date": "2010-05-23", "popularity": 0.443526463891383, "original_title": "You Will Meet a Tall Dark Stranger", "budget": 22000000, "cast": [{"name": "Naomi Watts", "character": "Sally", "id": 3489, "credit_id": "52fe468b9251416c91057d1d", "cast_id": 3, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Roy", "id": 16851, "credit_id": "52fe468b9251416c91057d21", "cast_id": 4, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "Antonio Banderas", "character": "Greg", "id": 3131, "credit_id": "52fe468b9251416c91057d25", "cast_id": 7, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 2}, {"name": "Ewen Bremner", "character": "Henry Strangler", "id": 1125, "credit_id": "52fe468b9251416c91057d29", "cast_id": 9, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 3}, {"name": "Gemma Jones", "character": "Helena Shepridge", "id": 9138, "credit_id": "52fe468b9251416c91057d2d", "cast_id": 11, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 4}, {"name": "Neil Jackson", "character": "Alan", "id": 20289, "credit_id": "52fe468b9251416c91057d31", "cast_id": 12, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 5}, {"name": "Christian McKay", "character": "Sy", "id": 28478, "credit_id": "52fe468b9251416c91057d35", "cast_id": 13, "profile_path": "/sNzMFhhayZvBCYak24Y306xajA.jpg", "order": 6}, {"name": "Eleanor Gecks", "character": "Rita", "id": 119413, "credit_id": "52fe468b9251416c91057d39", "cast_id": 14, "profile_path": "/qBLF5CITi2A8ZKx6fdrQn7PFqNL.jpg", "order": 7}, {"name": "Roger Ashton-Griffiths", "character": "Jonathan", "id": 20243, "credit_id": "52fe468b9251416c91057d3d", "cast_id": 18, "profile_path": "/3lvWs4Kz0aATpcSY7PyPhkKgH6W.jpg", "order": 9}, {"name": "Jonathan Ryland", "character": "Mike Prince", "id": 119414, "credit_id": "52fe468b9251416c91057d41", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Rupert Frazer", "character": "Mort", "id": 62231, "credit_id": "52fe468b9251416c91057d45", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Jonathan Hearn", "character": "Person at Market", "id": 119416, "credit_id": "52fe468b9251416c91057d49", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Jim Piddock", "character": "Peter", "id": 120560, "credit_id": "52fe468b9251416c91057d4d", "cast_id": 23, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 13}, {"name": "Anthony Hopkins", "character": "Alfie", "id": 4173, "credit_id": "52fe468b9251416c91057d51", "cast_id": 24, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 14}, {"name": "Anna Friel", "character": "Iris", "id": 58016, "credit_id": "52fe468b9251416c91057d55", "cast_id": 25, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 15}, {"name": "Freida Pinto", "character": "Dia", "id": 76792, "credit_id": "52fe468b9251416c91057d59", "cast_id": 26, "profile_path": "/tNovg8zj14cw09fiW1LnSE3OL5T.jpg", "order": 16}, {"name": "Lucy Punch", "character": "Charmaine", "id": 66446, "credit_id": "52fe468b9251416c91057d5d", "cast_id": 27, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 17}, {"name": "Anupam Kher", "character": "Dia's Parents", "id": 6217, "credit_id": "52fe468b9251416c91057d61", "cast_id": 28, "profile_path": "/a58ePX45hBpzDANzdki86Ny9VFu.jpg", "order": 18}, {"name": "Pauline Collins", "character": "Cristal", "id": 83437, "credit_id": "52fe468b9251416c91057d65", "cast_id": 29, "profile_path": "/nygjw5eWU5UDvJvfZJSO36Vlpko.jpg", "order": 19}, {"name": "Pearce Quigley", "character": "Poker Friend", "id": 119415, "credit_id": "52fe468b9251416c91057d69", "cast_id": 30, "profile_path": null, "order": 20}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe468b9251416c91057d13", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 5.9, "runtime": 98}, "13460": {"poster_path": "/d5rTA0dNsK9iLnRW7SDBwGuClI8.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 22211426, "overview": "A lethal virus spreads throughout the British isles,infecting millions and killing hundreds of thousands. To contain the threat, acting authorities brutally quarantine the country as it succumbs to fear and chaos. The quarantine is successful. Three decades later, the Reaper virus violently resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare.", "video": false, "id": 13460, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Doomsday", "tagline": "Mankind has an expiration date.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0483607", "adult": false, "backdrop_path": "/fHfV2ffp8OYRS6mtAeFIFY4Shyg.jpg", "production_companies": [{"name": "Rogue Pictures", "id": 134}, {"name": "Intrepid Pictures", "id": 1224}, {"name": "Crystal Sky Pictures", "id": 20241}, {"name": "Scion Films", "id": 7419}, {"name": "Moonlighting Films", "id": 9137}, {"name": "Internationale Filmproduktion Blackbird Dritte", "id": 19855}], "release_date": "2008-03-14", "popularity": 0.623210307033682, "original_title": "Doomsday", "budget": 30000000, "cast": [{"name": "Rhona Mitra", "character": "Major Eden Sinclair", "id": 25702, "credit_id": "52fe456b9251416c75055cf1", "cast_id": 1, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 0}, {"name": "Bob Hoskins", "character": "Bill Nelson", "id": 382, "credit_id": "52fe456b9251416c75055cf5", "cast_id": 2, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 1}, {"name": "Malcolm McDowell", "character": "Dr. Marcus Kane", "id": 56890, "credit_id": "52fe456b9251416c75055d01", "cast_id": 5, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 2}, {"name": "Alexander Siddig", "character": "Prime Minister John Hatcher", "id": 2957, "credit_id": "52fe456b9251416c75055cf9", "cast_id": 3, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 3}, {"name": "David O'Hara", "character": "Michael Canaris", "id": 2482, "credit_id": "52fe456b9251416c75055cfd", "cast_id": 4, "profile_path": "/sJ35AHaSTzSrvd80xrlC1CD30iF.jpg", "order": 4}, {"name": "Craig Conway", "character": "Sol Kane", "id": 94956, "credit_id": "53e88c03c3a368399c00348c", "cast_id": 25, "profile_path": "/trFSWzoXNgWYFMicJSlBQhphGNp.jpg", "order": 5}, {"name": "Lee-Anne Liebenberg", "character": "Viper", "id": 1352080, "credit_id": "53e88c58c3a368398a0035de", "cast_id": 26, "profile_path": null, "order": 6}, {"name": "Adrian Lester", "character": "Sergeant Norton", "id": 76215, "credit_id": "53e88ca4c3a368399c003495", "cast_id": 27, "profile_path": "/bgp0SyX9ZczUbEnRldpq8IimhuT.jpg", "order": 7}, {"name": "MyAnna Buring", "character": "Cally Kane", "id": 57578, "credit_id": "53e88d6f0e0a266f9a003d9f", "cast_id": 30, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 8}, {"name": "Sean Pertwee", "character": "Dr. Talbot", "id": 28848, "credit_id": "52fe456b9251416c75055d11", "cast_id": 8, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 9}, {"name": "Darren Morfitt", "character": "Dr. Stirling", "id": 107378, "credit_id": "53e88d2b0e0a266f8d003f37", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Leslie Simpson", "character": "Carpenter", "id": 944315, "credit_id": "52fe456b9251416c75055d19", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Chris Robson", "character": "Miller", "id": 172917, "credit_id": "53e88cd4c3a368399500354e", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Axelle Carolyn", "character": "Drop Dead Girl / Podium Marauder #1", "id": 231199, "credit_id": "52fe456b9251416c75055d15", "cast_id": 9, "profile_path": "/zGbPBBYqCKxBCyL9iBGnY5BKuBs.jpg", "order": 13}, {"name": "Caryn Peterson", "character": "Vagrant Girl", "id": 1294849, "credit_id": "5305d17992514134911a6cd8", "cast_id": 11, "profile_path": null, "order": 14}, {"name": "Adeola Ariyo", "character": "Nurse", "id": 1294850, "credit_id": "5305d18a92514134a2192af7", "cast_id": 12, "profile_path": null, "order": 15}, {"name": "Emma Cleasby", "character": "Katherine Sinclair", "id": 70815, "credit_id": "5305d19e92514134a2192e8e", "cast_id": 13, "profile_path": null, "order": 16}, {"name": "Christine Tomlinson", "character": "Eden Sinclair (young)", "id": 1294851, "credit_id": "5305d1ab925141349a1a2ab6", "cast_id": 14, "profile_path": null, "order": 17}, {"name": "Vernon Willemse", "character": "David / Gimp", "id": 1294852, "credit_id": "5305d1bd925141348e1a5054", "cast_id": 15, "profile_path": null, "order": 18}, {"name": "Paul Hyett", "character": "Hot Dog Victim", "id": 1037760, "credit_id": "5305d1d392514134881c2068", "cast_id": 16, "profile_path": null, "order": 19}, {"name": "Daniel Read", "character": "Sergeant #1", "id": 1294853, "credit_id": "5305d1e292514134a2193039", "cast_id": 17, "profile_path": null, "order": 20}, {"name": "Karl Thaning", "character": "Pilot", "id": 209193, "credit_id": "5305d22e925141348b1caad9", "cast_id": 18, "profile_path": "/e08CojIbdPtwL2OrnIDyzl8xLWg.jpg", "order": 21}, {"name": "Stephen Hughes", "character": "Soldier #1 / Johnson", "id": 1008550, "credit_id": "5305d24192514134881c5ab0", "cast_id": 19, "profile_path": null, "order": 22}, {"name": "Jason Cope", "character": "Wall Guard", "id": 82193, "credit_id": "5305d25d92514134881c5b8a", "cast_id": 20, "profile_path": "/scn3r86ekzN1RQpsLc6Rhb7D76x.jpg", "order": 23}, {"name": "Ryan Kruger", "character": "Soldier", "id": 1288410, "credit_id": "5305d26c925141348e1a5b66", "cast_id": 21, "profile_path": null, "order": 24}, {"name": "Nathan Wheatley", "character": "Patient 'X'", "id": 1294854, "credit_id": "5305d27a92514134881c5c75", "cast_id": 22, "profile_path": null, "order": 25}, {"name": "Cecil Carter", "character": "DDS Assault Trooper", "id": 154043, "credit_id": "5305d28d92514134971a3331", "cast_id": 23, "profile_path": null, "order": 26}, {"name": "Jeremy Crutchley", "character": "Richter", "id": 20304, "credit_id": "5305d29c92514134971a33b3", "cast_id": 24, "profile_path": "/17aHojCYOmUyoyuPgLd4di0fdvm.jpg", "order": 27}], "directors": [{"name": "Neil Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe456b9251416c75055d07", "profile_path": "/Au5p9cFlj2XVoVIECQ40ruOp1Qz.jpg", "id": 57581}], "vote_average": 6.1, "runtime": 105}, "19994": {"poster_path": "/1wb5sCMP8YhgUhwSH1Yo9YSH9vA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31556061, "overview": "A newly possessed cheerleader turns into a killer who specializes in offing her male classmates. Can her best friend put an end to the horror?", "video": false, "id": 19994, "genres": [{"id": 27, "name": "Horror"}], "title": "Jennifer's Body", "tagline": "She's evil... and not just high school evil.", "vote_count": 181, "homepage": "http://www.jennifersbody.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1131734", "adult": false, "backdrop_path": "/mqbLNRXYzjSkaN8ECP9XxAoCTQO.jpg", "production_companies": [{"name": "Fox Atomic", "id": 2890}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2009-09-18", "popularity": 1.06385940479914, "original_title": "Jennifer's Body", "budget": 16000000, "cast": [{"name": "Megan Fox", "character": "Jennifer Check", "id": 19537, "credit_id": "52fe47ff9251416c750ac871", "cast_id": 1, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 0}, {"name": "Amanda Seyfried", "character": "Anita \"Needy\" Lesnicky", "id": 71070, "credit_id": "52fe48009251416c750ac893", "cast_id": 8, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 1}, {"name": "Johnny Simmons", "character": "Chip Dove", "id": 27104, "credit_id": "52fe48009251416c750ac897", "cast_id": 9, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 2}, {"name": "Adam Brody", "character": "Nikolai Wolf", "id": 11702, "credit_id": "52fe48009251416c750ac89b", "cast_id": 10, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "J.K. Simmons", "character": "Mr. Wroblewski", "id": 18999, "credit_id": "52fe48009251416c750ac89f", "cast_id": 11, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 4}, {"name": "Kyle Gallner", "character": "Colin Gray", "id": 59219, "credit_id": "52fe48009251416c750ac8a3", "cast_id": 12, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 5}, {"name": "Amy Sedaris", "character": "Toni Lesnicky", "id": 12110, "credit_id": "52fe48009251416c750ac8a7", "cast_id": 13, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 6}, {"name": "Cynthia Stevenson", "character": "Mrs. Dove", "id": 65528, "credit_id": "52fe48009251416c750ac8ab", "cast_id": 14, "profile_path": "/b59DN25UqjxOLHVBFLMtbiOwn0W.jpg", "order": 7}, {"name": "Carrie Genzel", "character": "Mrs. Check", "id": 33350, "credit_id": "52fe48009251416c750ac8af", "cast_id": 15, "profile_path": "/6yFDbHeP7fT54uoCiCMFFbdA6IF.jpg", "order": 8}, {"name": "Juan Riedinger", "character": "Dirk", "id": 85613, "credit_id": "52fe48009251416c750ac8b3", "cast_id": 16, "profile_path": "/ddNGEfsafxUzoF92WFzNSB2n9p5.jpg", "order": 9}, {"name": "Chris Pratt", "character": "Officer Roman Duda", "id": 73457, "credit_id": "52fe48009251416c750ac8b7", "cast_id": 17, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 10}, {"name": "Juno Ruddell", "character": "Officer Warzak", "id": 85614, "credit_id": "52fe48009251416c750ac8bb", "cast_id": 18, "profile_path": "/c17qBeuGdeNDbUThKaUouNxuqNp.jpg", "order": 11}, {"name": "Aman Johal", "character": "Ahmet from India", "id": 85616, "credit_id": "52fe48009251416c750ac8bf", "cast_id": 20, "profile_path": "/saVZBiBHJZUzx3SJZNhLmzsEvQp.jpg", "order": 12}, {"name": "Eve Harlow", "character": "Goth Girl", "id": 209723, "credit_id": "52fe48009251416c750ac8c3", "cast_id": 21, "profile_path": "/h3ZqWXWD6EVEzHIm6e9QsNoRL6R.jpg", "order": 13}], "directors": [{"name": "Karyn Kusama", "department": "Directing", "job": "Director", "credit_id": "52fe47ff9251416c750ac877", "profile_path": "/6KlEWWO7aZE6MZtExVZKoQ6Ddzs.jpg", "id": 54025}], "vote_average": 5.1, "runtime": 100}, "5279": {"poster_path": "/7wCUMn1Fj5MutTJHFopHba0Pto.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 87754044, "overview": "Multiple storylined drama set in 1932, showing the lives of upstairs guest and downstairs servants at a party in a country house in England.", "video": false, "id": 5279, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Gosford Park", "tagline": "Tea at four. Dinner at eight. Murder at midnight.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0280707", "adult": false, "backdrop_path": "/4Noe8pwizMttqivkqBvySDvqQVE.jpg", "production_companies": [{"name": "USA Films", "id": 987}], "release_date": "2001-11-07", "popularity": 0.640217731065429, "original_title": "Gosford Park", "budget": 19800000, "cast": [{"name": "Helen Mirren", "character": "Mrs. Wilson", "id": 15735, "credit_id": "52fe4401c3a36847f807cdf7", "cast_id": 2, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 0}, {"name": "Clive Owen", "character": "Robert Parks", "id": 2296, "credit_id": "52fe4401c3a36847f807cdfb", "cast_id": 3, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 1}, {"name": "Maggie Smith", "character": "Constance Trentham", "id": 10978, "credit_id": "52fe4401c3a36847f807cdff", "cast_id": 4, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 2}, {"name": "Geraldine Somerville", "character": "Louisa Stockbridge", "id": 10988, "credit_id": "52fe4401c3a36847f807ce03", "cast_id": 5, "profile_path": "/fgPi5cmDbJbMmQIA7AE901jhB3x.jpg", "order": 3}, {"name": "Jeremy Northam", "character": "Ivor Novello", "id": 18325, "credit_id": "52fe4401c3a36847f807ce07", "cast_id": 6, "profile_path": "/8NkPuXeJ8nXXIhgrmS8g7kcaTOS.jpg", "order": 4}, {"name": "Kristin Scott Thomas", "character": "Sylvia McCordle", "id": 5470, "credit_id": "52fe4401c3a36847f807ce0b", "cast_id": 7, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 5}, {"name": "Michael Gambon", "character": "William McCordle", "id": 5658, "credit_id": "52fe4401c3a36847f807ce0f", "cast_id": 8, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 6}, {"name": "Kelly Macdonald", "character": "Mary Maceachran", "id": 9015, "credit_id": "52fe4401c3a36847f807ce13", "cast_id": 9, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 7}, {"name": "Eileen Atkins", "character": "Mrs. Croft", "id": 20300, "credit_id": "52fe4401c3a36847f807ce17", "cast_id": 10, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 8}, {"name": "Emily Watson", "character": "Elsie", "id": 1639, "credit_id": "52fe4401c3a36847f807ce1b", "cast_id": 11, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 9}, {"name": "Alan Bates", "character": "Jennings", "id": 27554, "credit_id": "52fe4401c3a36847f807ce1f", "cast_id": 12, "profile_path": "/tXBtdL0JrFFMBP55fn3sh1z0WOG.jpg", "order": 10}, {"name": "Richard E. Grant", "character": "George", "id": 20766, "credit_id": "52fe4401c3a36847f807ce23", "cast_id": 13, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 11}, {"name": "Ryan Phillippe", "character": "Henry Denton", "id": 11864, "credit_id": "52fe4401c3a36847f807ce27", "cast_id": 14, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 12}, {"name": "Trent Ford", "character": "Jeremy Blond", "id": 42626, "credit_id": "52fe4401c3a36847f807ce2b", "cast_id": 15, "profile_path": "/2qdtKGmonpTTVX8cdsV8mUULTpl.jpg", "order": 13}, {"name": "Stephen Fry", "character": "Inspector Thompson", "id": 11275, "credit_id": "52fe4401c3a36847f807ce2f", "cast_id": 16, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 14}, {"name": "Charles Dance", "character": "Lord Raymond Stockbridge", "id": 4391, "credit_id": "52fe4401c3a36847f807ce33", "cast_id": 17, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 15}, {"name": "Camilla Rutherford", "character": "Isobel McCordle", "id": 38809, "credit_id": "52fe4401c3a36847f807ce37", "cast_id": 18, "profile_path": "/5Zo00BGDlGjnkZQjzuDie8wnURp.jpg", "order": 16}, {"name": "Bob Balaban", "character": "Morris Weissman", "id": 12438, "credit_id": "52fe4401c3a36847f807ce3b", "cast_id": 19, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 17}, {"name": "James Wilby", "character": "Freddie Nesbitt", "id": 42627, "credit_id": "52fe4401c3a36847f807ce3f", "cast_id": 20, "profile_path": "/l7S0uDrsZXDZUNB9Ahr4wbl4kPz.jpg", "order": 18}, {"name": "Natasha Wightman", "character": "Lavinia Meredith", "id": 11277, "credit_id": "52fe4401c3a36847f807ce43", "cast_id": 21, "profile_path": "/v2VZP1K0SY9z3XSUfufaNSRk6Lz.jpg", "order": 19}, {"name": "Claudie Blakley", "character": "Mabel Nesbitt", "id": 36663, "credit_id": "52fe4401c3a36847f807ce47", "cast_id": 22, "profile_path": "/v02raCaKQpZTP9pULehv4JaXe11.jpg", "order": 20}, {"name": "Derek Jacobi", "character": "Probert", "id": 937, "credit_id": "52fe4401c3a36847f807ce4b", "cast_id": 23, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 21}], "directors": [{"name": "Robert Altman", "department": "Directing", "job": "Director", "credit_id": "52fe4401c3a36847f807cdf3", "profile_path": "/wM4ZFeMU4fuLVuwvGsbAzdlAil3.jpg", "id": 9789}], "vote_average": 7.1, "runtime": 137}, "152737": {"poster_path": "/8Xlg29einAVrnOxjyFG3F6eUETW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 74188937, "overview": "A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional woman who raised them.", "video": false, "id": 152737, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "August: Osage County", "tagline": "Misery loves family.", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1322269", "adult": false, "backdrop_path": "/gTpXwPqv9yUAQpGuAtpYx1JhHe3.jpg", "production_companies": [{"name": "Smokehouse Pictures", "id": 22695}, {"name": "Jean Doumanian Productions", "id": 16280}], "release_date": "2013-09-09", "popularity": 1.19245211931057, "original_title": "August: Osage County", "budget": 25000000, "cast": [{"name": "Meryl Streep", "character": "Violet Weston", "id": 5064, "credit_id": "52fe4b299251416c910d1da3", "cast_id": 11, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Barbara Weston", "id": 1204, "credit_id": "52fe4b299251416c910d1da7", "cast_id": 12, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Chris Cooper", "character": "Charles Aiken", "id": 2955, "credit_id": "52fe4b299251416c910d1db3", "cast_id": 15, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 2}, {"name": "Ewan McGregor", "character": "Bill Fordham", "id": 3061, "credit_id": "52fe4b299251416c910d1d9f", "cast_id": 10, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 3}, {"name": "Margo Martindale", "character": "Mattie Fae Aiken", "id": 452, "credit_id": "52fe4b299251416c910d1dbf", "cast_id": 18, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 4}, {"name": "Sam Shepard", "character": "Beverly Weston", "id": 9880, "credit_id": "52fe4b299251416c910d1db7", "cast_id": 16, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 5}, {"name": "Dermot Mulroney", "character": "Steve Huberbrecht", "id": 20212, "credit_id": "52fe4b299251416c910d1daf", "cast_id": 14, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 6}, {"name": "Julianne Nicholson", "character": "Ivy Weston", "id": 86034, "credit_id": "52fe4b299251416c910d1dbb", "cast_id": 17, "profile_path": "/z4Aa8kkya1BpCFyV2ifRrP4iy04.jpg", "order": 7}, {"name": "Juliette Lewis", "character": "Karen Weston", "id": 3196, "credit_id": "52fe4b299251416c910d1d9b", "cast_id": 9, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 8}, {"name": "Abigail Breslin", "character": "Jean Fordham", "id": 17140, "credit_id": "52fe4b299251416c910d1dab", "cast_id": 13, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 9}, {"name": "Misty Upham", "character": "Johnna Monevata", "id": 64136, "credit_id": "52fe4b299251416c910d1dc3", "cast_id": 19, "profile_path": "/78YVlWbvZiEO9Z1F4NfWiIrv2SS.jpg", "order": 10}, {"name": "Benedict Cumberbatch", "character": "Little Charles Aiken", "id": 71580, "credit_id": "52fe4b299251416c910d1d97", "cast_id": 8, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 11}], "directors": [{"name": "John Wells", "department": "Directing", "job": "Director", "credit_id": "52fe4b299251416c910d1d6f", "profile_path": "/rpVdPsbj7QLJ0VRRDmhPcYoF6m0.jpg", "id": 47333}], "vote_average": 7.0, "runtime": 121}, "38050": {"poster_path": "/g87PqGH9Oo3d3Tbczcfk7ZMAIEk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127869379, "overview": "A man glimpses the future Fate has planned for him \u2013 and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.", "video": false, "id": 38050, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Adjustment Bureau", "tagline": "Fight for your fate.", "vote_count": 671, "homepage": "http://www.theadjustmentbureau.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1385826", "adult": false, "backdrop_path": "/iE2WiPdF7a0s5glgXQBBmZQ6mUd.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Gambit Pictures", "id": 6933}, {"name": "Electric Shepherd Productions", "id": 11834}], "release_date": "2011-03-04", "popularity": 1.53917412215725, "original_title": "The Adjustment Bureau", "budget": 50200000, "cast": [{"name": "Matt Damon", "character": "David Norris", "id": 1892, "credit_id": "52fe468e9251416c910582cf", "cast_id": 13, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Emily Blunt", "character": "Elise Sellas", "id": 5081, "credit_id": "52fe468e9251416c910582b7", "cast_id": 5, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 1}, {"name": "John Slattery", "character": "Richardson", "id": 21134, "credit_id": "52fe468e9251416c910582bb", "cast_id": 7, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 2}, {"name": "Anthony Mackie", "character": "Harry Mitchell", "id": 53650, "credit_id": "52fe468e9251416c910582bf", "cast_id": 8, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 3}, {"name": "Lauren Hodges", "character": "Robyn, Campaign Aide", "id": 156675, "credit_id": "52fe468e9251416c910582c3", "cast_id": 9, "profile_path": "/lB8YIBW88q8xKMySK3sixBexJsS.jpg", "order": 4}, {"name": "Shane McRae", "character": "Adrian Troussant, Elise's Fianc\u00e9", "id": 83222, "credit_id": "52fe468e9251416c910582c7", "cast_id": 11, "profile_path": "/27WYwLZHb0wFVSOBEWPl1YxlhTn.jpg", "order": 5}, {"name": "Terence Stamp", "character": "Thompson", "id": 28641, "credit_id": "52fe468e9251416c910582cb", "cast_id": 12, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 6}, {"name": "Michael Kelly", "character": "Charlie Traynor", "id": 50217, "credit_id": "52fe468e9251416c910582d3", "cast_id": 15, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 7}, {"name": "Lisa Thoreson", "character": "Suburban Mom", "id": 1124488, "credit_id": "52fe468e9251416c9105832b", "cast_id": 30, "profile_path": null, "order": 8}, {"name": "Florence Kastriner", "character": "Suburban Mom", "id": 1124489, "credit_id": "52fe468e9251416c9105832f", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Florence Kastriner", "character": "Suburban Mom", "id": 1124489, "credit_id": "532b04bcc3a3682006001eb2", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Phyllis MacBryde", "character": "Suburban Neighbor", "id": 1302816, "credit_id": "532b04d0c3a3681fea001fac", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Natalie Carter", "character": "Suburban Neighbor", "id": 187972, "credit_id": "532b04e4c3a3681fdd001f2e", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Chuck Scarborough", "character": "Himself", "id": 943010, "credit_id": "532b04f9c3a3681d9e000597", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Jon Stewart", "character": "Political Consultant", "id": 12219, "credit_id": "532b0520c3a3681ff7001ff2", "cast_id": 38, "profile_path": "/88UHrwCXTPOrrsG2A33G4fMvN62.jpg", "order": 15}, {"name": "Kar", "character": "Political Consultant", "id": 1302820, "credit_id": "532b0619c3a3682006001ee6", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "RJ Konner", "character": "Political Consultant", "id": 1302821, "credit_id": "532b0629c3a3681ff0001f6a", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Susan D. Michaels", "character": "Reporter", "id": 1302822, "credit_id": "532b0637c3a3681d9e0005c1", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Gregory P. Hitchen", "character": "U.S. Coast Guard Officer", "id": 1302823, "credit_id": "532b0647c3a3681d9e0005c7", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "George Nolfi", "department": "Directing", "job": "Director", "credit_id": "52fe468e9251416c910582a7", "profile_path": "/w5rOlLTxuGNFtf5CqF9eN1i0KZr.jpg", "id": 1921}], "vote_average": 6.3, "runtime": 106}, "13475": {"poster_path": "/xPihqTMhCh6b8DHYzE61jrIiNMS.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 385680446, "overview": "The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.", "video": false, "id": 13475, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Star Trek", "tagline": "The future begins", "vote_count": 2419, "homepage": "http://www.startrekmovie.com/", "belongs_to_collection": {"backdrop_path": "/gWl5pN2FplE709aVtA4lakwsE6t.jpg", "poster_path": "/w2IVqa43Ge49mrY3qSaJWpyDtz6.jpg", "id": 115575, "name": "Star Trek: Alternate Reality Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0796366", "adult": false, "backdrop_path": "/1XOSh6BFZbQ0xN75m4avqgzClyG.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Bad Robot", "id": 11461}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "MavroCine Pictures GmbH & Co. KG", "id": 23419}], "release_date": "2009-05-07", "popularity": 3.48080297202836, "original_title": "Star Trek", "budget": 150000000, "cast": [{"name": "Chris Pine", "character": "Kirk", "id": 62064, "credit_id": "52fe456c9251416c75056169", "cast_id": 15, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Zachary Quinto", "character": "Spock", "id": 17306, "credit_id": "52fe456c9251416c7505616d", "cast_id": 16, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 1}, {"name": "Leonard Nimoy", "character": "Old Spock", "id": 1749, "credit_id": "52fe456c9251416c75056195", "cast_id": 26, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 2}, {"name": "Eric Bana", "character": "Nero", "id": 8783, "credit_id": "52fe456c9251416c75056171", "cast_id": 17, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 3}, {"name": "Bruce Greenwood", "character": "Christopher Pike", "id": 21089, "credit_id": "52fe456c9251416c75056189", "cast_id": 23, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 4}, {"name": "Karl Urban", "character": "Leonard 'Bones' McCoy", "id": 1372, "credit_id": "52fe456c9251416c75056181", "cast_id": 21, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 5}, {"name": "Zoe Saldana", "character": "Nyota Uhura", "id": 8691, "credit_id": "52fe456c9251416c7505617d", "cast_id": 20, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 6}, {"name": "Simon Pegg", "character": "Scotty", "id": 11108, "credit_id": "52fe456c9251416c75056175", "cast_id": 18, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 7}, {"name": "John Cho", "character": "Hikaru Sulu", "id": 68842, "credit_id": "52fe456c9251416c75056185", "cast_id": 22, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 8}, {"name": "Anton Yelchin", "character": "Pavel Chekov", "id": 21028, "credit_id": "52fe456c9251416c75056191", "cast_id": 25, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 9}, {"name": "Ben Cross", "character": "Sarek", "id": 29068, "credit_id": "52fe456c9251416c7505618d", "cast_id": 24, "profile_path": "/oSGwl0y9ZQOKDYXbrEd2zeid1Bq.jpg", "order": 10}, {"name": "Winona Ryder", "character": "Amanda Grayson", "id": 1920, "credit_id": "52fe456c9251416c75056179", "cast_id": 19, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 11}, {"name": "Chris Hemsworth", "character": "George Kirk", "id": 74568, "credit_id": "52fe456c9251416c7505619d", "cast_id": 28, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 12}, {"name": "Jennifer Morrison", "character": "Winona Kirk", "id": 41421, "credit_id": "52fe456c9251416c750561a1", "cast_id": 29, "profile_path": "/sqn3ySCTYw82vtW10oqrmtg3B9L.jpg", "order": 13}, {"name": "Rachel Nichols", "character": "Galia", "id": 50347, "credit_id": "52fe456d9251416c750561b1", "cast_id": 33, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 14}, {"name": "Faran Tahir", "character": "Captain Robau", "id": 57452, "credit_id": "52fe456d9251416c750561b5", "cast_id": 34, "profile_path": "/zEcur3BBkXD0gosZQ1nAZRyQZUq.jpg", "order": 15}, {"name": "Clifton Collins, Jr.", "character": "Ayel", "id": 5365, "credit_id": "52fe456d9251416c750561b9", "cast_id": 35, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 16}, {"name": "Greg Ellis", "character": "Chief Engineer Olsen", "id": 4031, "credit_id": "52fe456c9251416c75056199", "cast_id": 27, "profile_path": "/qQvPe0TO5yYJCSNIM8KRf55F5cw.jpg", "order": 17}, {"name": "Scottie Thompson", "character": "Nero's Wife", "id": 128628, "credit_id": "52fe456c9251416c750561a5", "cast_id": 30, "profile_path": "/o7S0MQHMiylNurOcdxAT85NXJP.jpg", "order": 18}, {"name": "Paul McGillion", "character": "Barracks Officer", "id": 26069, "credit_id": "52fe456d9251416c750561a9", "cast_id": 31, "profile_path": "/n6S66CIpNqThe6eugr94WZBbI6u.jpg", "order": 19}, {"name": "Lucia Rijker", "character": "Romulan Communications Officer", "id": 451, "credit_id": "52fe456d9251416c750561ad", "cast_id": 32, "profile_path": "/dNKQK7uLrdG1g8ETKF9SxbXHGNQ.jpg", "order": 20}, {"name": "Jimmy Bennett", "character": "Young James T. Kirk", "id": 6860, "credit_id": "52fe456d9251416c750561bd", "cast_id": 36, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 21}, {"name": "Greg Grunberg", "character": "Stepdad (voice)", "id": 17305, "credit_id": "52fe456d9251416c750561c1", "cast_id": 37, "profile_path": "/kFK6AaPoUlLJArwLuHetUav8q19.jpg", "order": 22}, {"name": "Lisa Vidal", "character": "Barracks Officer", "id": 92774, "credit_id": "52fe456d9251416c750561c5", "cast_id": 38, "profile_path": "/8053bjXwp0JNbODdnqKfhW0Euvu.jpg", "order": 23}, {"name": "Jacob Kogan", "character": "Young Spock", "id": 46801, "credit_id": "52fe456d9251416c750561c9", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Tyler Perry", "character": "Admiral Richard Barnett", "id": 80602, "credit_id": "52fe456d9251416c750561cd", "cast_id": 40, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 25}, {"name": "Amanda Foreman", "character": "Hannity", "id": 13024, "credit_id": "52fe456d9251416c750561d1", "cast_id": 41, "profile_path": "/fitfsjRoC2i8YocBndcOFOuV7EU.jpg", "order": 26}, {"name": "Diora Baird", "character": "The Wrong Orion", "id": 59263, "credit_id": "52fe456d9251416c750561d5", "cast_id": 42, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 27}, {"name": "Sufe Bradshaw", "character": "Cadet Alien", "id": 1181331, "credit_id": "52fe456d9251416c750561df", "cast_id": 44, "profile_path": "/P1eEcLRbry8RjyCqD3emY57HgG.jpg", "order": 28}, {"name": "Tony Elias", "character": "Officer Pitts (as Antonio Elias)", "id": 138324, "credit_id": "52fe456d9251416c75056207", "cast_id": 51, "profile_path": "/pHlx7TAasqdMboz8AwAxoR3Hxpa.jpg", "order": 29}, {"name": "Sean Gerace", "character": "Tactical Officer", "id": 188796, "credit_id": "52fe456d9251416c7505620b", "cast_id": 52, "profile_path": null, "order": 30}, {"name": "Randy Pausch", "character": "Kelvin Crew Member", "id": 1274566, "credit_id": "52fe456d9251416c7505620f", "cast_id": 53, "profile_path": null, "order": 31}, {"name": "Tim Griffin", "character": "Kelvin Engineer", "id": 27031, "credit_id": "52fe456d9251416c75056213", "cast_id": 54, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 32}, {"name": "Freda Foh Shen", "character": "Kelvin Helmsman", "id": 51754, "credit_id": "52fe456d9251416c75056217", "cast_id": 55, "profile_path": "/6jEbQK7XnFtLRjEPhdwfdLX6UdJ.jpg", "order": 33}, {"name": "Kasia Kowalczyk", "character": "Kelvin Alien (as Katarzyna Kowalczyk)", "id": 583844, "credit_id": "52fe456d9251416c7505621b", "cast_id": 56, "profile_path": null, "order": 34}, {"name": "Jason Brooks", "character": "Romulan Helmsman", "id": 154748, "credit_id": "52fe456d9251416c7505621f", "cast_id": 57, "profile_path": "/try5yM1wnSczpXgBDOBbJLbCkH4.jpg", "order": 35}, {"name": "Sonita Henry", "character": "Kelvin Doctor", "id": 963257, "credit_id": "52fe456d9251416c75056223", "cast_id": 58, "profile_path": null, "order": 36}, {"name": "Kelvin Yu", "character": "Medical Technician", "id": 51997, "credit_id": "52fe456d9251416c75056227", "cast_id": 59, "profile_path": "/tYLvMxo3EBXmAdYUzJp5ymTygS.jpg", "order": 37}, {"name": "Marta Martin", "character": "Medical Technician", "id": 1216155, "credit_id": "52fe456d9251416c7505622b", "cast_id": 60, "profile_path": null, "order": 38}, {"name": "Tavarus Conley", "character": "Kelvin Crew Member", "id": 1274869, "credit_id": "52fe456d9251416c7505622f", "cast_id": 61, "profile_path": null, "order": 39}, {"name": "Jeff Castle", "character": "Kelvin Crew Member", "id": 1026981, "credit_id": "52fe456d9251416c75056233", "cast_id": 62, "profile_path": null, "order": 40}, {"name": "Billy Brown", "character": "Med Evac Pilot", "id": 64805, "credit_id": "52fe456d9251416c75056237", "cast_id": 63, "profile_path": "/tEyVvi3dY3LDxSpTA3a7nK6nMGv.jpg", "order": 41}, {"name": "Spencer Daniels", "character": "Johnny", "id": 168962, "credit_id": "52fe456d9251416c7505623b", "cast_id": 64, "profile_path": "/iBUcd9yZMbgbGhirU68E8X4D80e.jpg", "order": 42}, {"name": "Jeremy Fitzgerald", "character": "Iowa Cop", "id": 126841, "credit_id": "52fe456d9251416c7505623f", "cast_id": 65, "profile_path": null, "order": 43}, {"name": "Zoe Chernov", "character": "Vulcan Student", "id": 1275518, "credit_id": "52fe456d9251416c75056243", "cast_id": 66, "profile_path": null, "order": 44}, {"name": "Max Chernov", "character": "Vulcan Student", "id": 1275519, "credit_id": "52fe456d9251416c75056247", "cast_id": 67, "profile_path": null, "order": 45}, {"name": "Lorenzo James Henrie", "character": "Vulcan Bully (as James Henrie)", "id": 1107818, "credit_id": "52fe456d9251416c7505624b", "cast_id": 68, "profile_path": "/gw9nG51OXge6hjPNFt3iiEUdyKd.jpg", "order": 46}, {"name": "Colby Paul", "character": "Vulcan Bully", "id": 203012, "credit_id": "52fe456d9251416c7505624f", "cast_id": 69, "profile_path": null, "order": 47}, {"name": "Cody Klop", "character": "Vulcan Bully", "id": 170883, "credit_id": "52fe456d9251416c75056253", "cast_id": 70, "profile_path": "/ulBpiD5bsaOJFwZV2yvL2EICWbv.jpg", "order": 48}, {"name": "Akiva Goldsman", "character": "Vulcan Council Member", "id": 5575, "credit_id": "52fe456d9251416c75056257", "cast_id": 71, "profile_path": "/smyKiXX4rAfehztrmg3lxgRAuZF.jpg", "order": 49}, {"name": "Anna Katarina", "character": "Vulcan Council Member", "id": 27570, "credit_id": "52fe456d9251416c7505625b", "cast_id": 72, "profile_path": null, "order": 50}, {"name": "Douglas Tait", "character": "Long Face Bar Alien", "id": 51301, "credit_id": "52fe456d9251416c7505625f", "cast_id": 73, "profile_path": null, "order": 51}, {"name": "Tony Guma", "character": "Lew the Bartender", "id": 178452, "credit_id": "52fe456d9251416c75056263", "cast_id": 74, "profile_path": null, "order": 52}, {"name": "Gerald W. Abrams", "character": "Barfly", "id": 181879, "credit_id": "52fe456d9251416c75056267", "cast_id": 75, "profile_path": null, "order": 53}, {"name": "James McGrath", "character": "Barfly (as James McGrath Jr.)", "id": 1275520, "credit_id": "52fe456d9251416c7505626b", "cast_id": 76, "profile_path": null, "order": 54}, {"name": "Jason Matthew Smith", "character": "Burly Cadet", "id": 154702, "credit_id": "52fe456d9251416c7505626f", "cast_id": 77, "profile_path": null, "order": 55}, {"name": "Marcus Young", "character": "Burly Cadet", "id": 182213, "credit_id": "52fe456d9251416c75056273", "cast_id": 78, "profile_path": null, "order": 56}, {"name": "Bob Clendenin", "character": "Shipyard Worker (as Robert Clendenin)", "id": 129661, "credit_id": "52fe456d9251416c75056277", "cast_id": 79, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 57}, {"name": "Darlene Tejeiro", "character": "Flight Officer (as Darlena Tejeiro)", "id": 1275521, "credit_id": "52fe456d9251416c7505627b", "cast_id": 80, "profile_path": null, "order": 58}, {"name": "Reggie Lee", "character": "Test Administrator", "id": 22075, "credit_id": "52fe456d9251416c7505627f", "cast_id": 81, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 59}, {"name": "Jeffrey Byron", "character": "Test Administrator", "id": 78899, "credit_id": "52fe456d9251416c75056283", "cast_id": 82, "profile_path": "/wDx4pYCj6bAQYupHrBydQzZwP4Q.jpg", "order": 60}, {"name": "Jonathan Dixon", "character": "Simulator Tactical Officer", "id": 1228940, "credit_id": "52fe456d9251416c75056287", "cast_id": 83, "profile_path": null, "order": 61}, {"name": "Ben Binswagner", "character": "Admiral James Komack", "id": 1275522, "credit_id": "52fe456d9251416c7505628b", "cast_id": 84, "profile_path": null, "order": 62}, {"name": "Margot Farley", "character": "College Council Stenographer", "id": 51994, "credit_id": "52fe456d9251416c7505628f", "cast_id": 85, "profile_path": null, "order": 63}, {"name": "Alex Nevil", "character": "Shuttle Officer", "id": 1212484, "credit_id": "52fe456d9251416c75056293", "cast_id": 86, "profile_path": null, "order": 64}, {"name": "Kimberly Arland", "character": "Kimberly Arland", "id": 1271733, "credit_id": "52fe456d9251416c75056297", "cast_id": 87, "profile_path": "/pcp0B5iSalHZcYRKKDuGQYcJ7z9.jpg", "order": 65}, {"name": "Jeff Chase", "character": "Cadet Alien", "id": 56448, "credit_id": "52fe456d9251416c7505629b", "cast_id": 88, "profile_path": "/x7W1nwnsITcPdODJ5OEP0HF71BH.jpg", "order": 66}, {"name": "Charles Haugk", "character": "Enterprise Crew Member (as Charlie Haugk)", "id": 1275523, "credit_id": "52fe456d9251416c7505629f", "cast_id": 89, "profile_path": null, "order": 67}, {"name": "Nana Hill", "character": "Enterprise Crew Member", "id": 1007337, "credit_id": "52fe456d9251416c750562a3", "cast_id": 90, "profile_path": null, "order": 68}, {"name": "Michael Saglimbeni", "character": "Enterprise Crew Member", "id": 1275524, "credit_id": "52fe456d9251416c750562a7", "cast_id": 91, "profile_path": null, "order": 69}, {"name": "John Blackman", "character": "Enterprise Crew Member", "id": 1275932, "credit_id": "52fe456d9251416c750562ab", "cast_id": 92, "profile_path": null, "order": 70}, {"name": "Jack Millard", "character": "Enterprise Crew Member", "id": 1275933, "credit_id": "52fe456d9251416c750562af", "cast_id": 93, "profile_path": null, "order": 71}, {"name": "Shaela Luter", "character": "Enterprise Crew Member", "id": 1275934, "credit_id": "52fe456d9251416c750562b3", "cast_id": 94, "profile_path": null, "order": 72}, {"name": "Sabrina Morris", "character": "Enterprise Crew Member", "id": 1275935, "credit_id": "52fe456d9251416c750562b7", "cast_id": 95, "profile_path": null, "order": 73}, {"name": "Michelle Parylak", "character": "Enterprise Crew Member", "id": 187563, "credit_id": "52fe456d9251416c750562bb", "cast_id": 96, "profile_path": null, "order": 74}, {"name": "Oz Perkins", "character": "Enterprise Communiations Officer", "id": 90609, "credit_id": "52fe456d9251416c750562bf", "cast_id": 97, "profile_path": "/mFMTeyafafTqSgaWaRvGaLNgG7j.jpg", "order": 75}, {"name": "Michael Berry Jr.", "character": "Romulan Tactical Officer", "id": 1716, "credit_id": "52fe456d9251416c750562c3", "cast_id": 98, "profile_path": "/qLFgZ7o8DivOzW6WRTHVg5es5K1.jpg", "order": 76}, {"name": "Matthew Beisner", "character": "Romulan Crew Member", "id": 1275937, "credit_id": "52fe456d9251416c750562cb", "cast_id": 100, "profile_path": null, "order": 78}, {"name": "Neville Page", "character": "Romulan Crew Member", "id": 1080735, "credit_id": "52fe456d9251416c750562cf", "cast_id": 101, "profile_path": "/7akzfPwFJ1KjXmxtSHQoR4I7eRw.jpg", "order": 79}, {"name": "Jesper Inglis", "character": "Romulan Crew Member", "id": 1275938, "credit_id": "52fe456d9251416c750562d3", "cast_id": 102, "profile_path": null, "order": 80}, {"name": "Marlene Forte", "character": "Transport Chief", "id": 146004, "credit_id": "52fe456d9251416c750562d7", "cast_id": 103, "profile_path": "/qNgRzZvT0YyxaQELeTDGZw6ToDg.jpg", "order": 81}, {"name": "Leonard O. Turner", "character": "Vulcan Elder", "id": 174797, "credit_id": "52fe456d9251416c750562db", "cast_id": 104, "profile_path": null, "order": 82}, {"name": "Mark Bramhall", "character": "Vulcan Elder", "id": 156283, "credit_id": "52fe456d9251416c750562df", "cast_id": 105, "profile_path": null, "order": 83}, {"name": "Ronald F. Hoiseck", "character": "Vulcan Elder", "id": 1275939, "credit_id": "52fe456d9251416c750562e3", "cast_id": 106, "profile_path": null, "order": 84}, {"name": "Irene Roseen", "character": "Vulcan Elder", "id": 79585, "credit_id": "52fe456d9251416c750562e7", "cast_id": 107, "profile_path": "/hORHT27sB0nNBCqt3umdCjzNd6j.jpg", "order": 85}, {"name": "Jeff O'Haco", "character": "Vulcan Elder", "id": 1020340, "credit_id": "52fe456d9251416c750562eb", "cast_id": 108, "profile_path": "/jxzZd6t8KhDx5aKkRJyBxgXWBM0.jpg", "order": 86}, {"name": "Deep Roy", "character": "Keenser", "id": 1295, "credit_id": "52fe456d9251416c750562ef", "cast_id": 109, "profile_path": "/rCg84FP1x5tOutHKRB4OKhQeR4N.jpg", "order": 87}, {"name": "Majel Barrett", "character": "Starfleet Computer (voice) (as Majel Barrett Roddenberry)", "id": 1755, "credit_id": "52fe456d9251416c750562f3", "cast_id": 110, "profile_path": "/6esZeIlIdrCnoGkAggRAJ8FWs7Z.jpg", "order": 88}, {"name": "Rico E. Anderson", "character": "Council Member - Captain Kelley Bogel (uncredited)", "id": 204068, "credit_id": "52fe456d9251416c750562f7", "cast_id": 111, "profile_path": null, "order": 89}, {"name": "Richard Arnold", "character": "Romulan Science Tech (uncredited)", "id": 993162, "credit_id": "52fe456d9251416c750562fb", "cast_id": 112, "profile_path": null, "order": 90}, {"name": "Tad Atkinson", "character": "Amphibian Prisoner (uncredited)", "id": 225488, "credit_id": "52fe456d9251416c750562ff", "cast_id": 113, "profile_path": null, "order": 91}, {"name": "Leslie Augustine", "character": "Doctor (uncredited)", "id": 931039, "credit_id": "52fe456d9251416c75056303", "cast_id": 114, "profile_path": null, "order": 92}, {"name": "Johnny Baca", "character": "Starfleet Cadet (uncredited)", "id": 1278357, "credit_id": "52fe456d9251416c75056307", "cast_id": 115, "profile_path": null, "order": 93}, {"name": "Sala Baker", "character": "Drill Tower Romulan (uncredited)", "id": 1366, "credit_id": "52fe456d9251416c7505630b", "cast_id": 116, "profile_path": "/cO6LUWV5gdDnnhFnHTK5d8WOOj6.jpg", "order": 94}, {"name": "Leo Baligaya", "character": "Starfleet Cadet (uncredited)", "id": 1278358, "credit_id": "52fe456d9251416c7505630f", "cast_id": 117, "profile_path": null, "order": 95}, {"name": "Corey Becker", "character": "Starfleet Cadet (uncredited)", "id": 1278359, "credit_id": "52fe456d9251416c75056313", "cast_id": 118, "profile_path": null, "order": 96}, {"name": "Jessica Boss", "character": "Bridgeport Cadet (uncredited)", "id": 1278360, "credit_id": "52fe456d9251416c75056317", "cast_id": 119, "profile_path": null, "order": 97}, {"name": "Neil S. Bulk", "character": "Starfleet Cadet (uncredited)", "id": 1278361, "credit_id": "52fe456d9251416c7505631b", "cast_id": 120, "profile_path": null, "order": 98}, {"name": "James Cawley", "character": "Enterprise Crewmember (uncredited)", "id": 1278363, "credit_id": "52fe456d9251416c7505631f", "cast_id": 121, "profile_path": null, "order": 99}, {"name": "Brad Champagne", "character": "Starfleet Cadet (uncredited)", "id": 1278364, "credit_id": "52fe456d9251416c75056323", "cast_id": 122, "profile_path": null, "order": 100}, {"name": "Zachary Culbertson", "character": "Starfleet Cadet (uncredited)", "id": 1278365, "credit_id": "52fe456d9251416c75056327", "cast_id": 123, "profile_path": null, "order": 101}, {"name": "Calvin Dean", "character": "Security Officer Daniels (uncredited)", "id": 1278367, "credit_id": "52fe456d9251416c7505632b", "cast_id": 124, "profile_path": null, "order": 102}, {"name": "Christopher Doohan", "character": "Starfleet Officer (uncredited)", "id": 1278368, "credit_id": "52fe456d9251416c7505632f", "cast_id": 125, "profile_path": null, "order": 103}, {"name": "Claire Dor\u00e9", "character": "Enterprise Crew Member (uncredited)", "id": 1278369, "credit_id": "52fe456d9251416c75056333", "cast_id": 126, "profile_path": null, "order": 104}, {"name": "Mark Casimir Dyniewicz", "character": "Klingon Prisoner - Nero's Flashback (uncredited)", "id": 97447, "credit_id": "52fe456d9251416c75056337", "cast_id": 127, "profile_path": null, "order": 105}, {"name": "Etienne Eckert", "character": "Vulcan Federation Officer (uncredited)", "id": 1278370, "credit_id": "52fe456d9251416c7505633b", "cast_id": 128, "profile_path": null, "order": 106}, {"name": "Ken Edling", "character": "Doctor (uncredited)", "id": 1278371, "credit_id": "52fe456d9251416c7505633f", "cast_id": 129, "profile_path": null, "order": 107}, {"name": "Aliza Finley", "character": "Hurried Cadet with Clipboard (uncredited)", "id": 1278372, "credit_id": "52fe456d9251416c75056343", "cast_id": 130, "profile_path": null, "order": 108}, {"name": "Ian Fisher", "character": "Shipyard Worker (uncredited)", "id": 129600, "credit_id": "52fe456e9251416c75056347", "cast_id": 131, "profile_path": null, "order": 109}, {"name": "Mathew Thomas Foss", "character": "Starfleet Cadet (uncredited)", "id": 1278373, "credit_id": "52fe456e9251416c7505634b", "cast_id": 132, "profile_path": null, "order": 110}, {"name": "Massi Furlan", "character": "Missile Launcher (uncredited)", "id": 1010873, "credit_id": "52fe456e9251416c7505634f", "cast_id": 133, "profile_path": null, "order": 111}, {"name": "Victor Garber", "character": "Klingon Interrogator (scenes deleted) (uncredited)", "id": 8536, "credit_id": "52fe456e9251416c75056353", "cast_id": 134, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 112}, {"name": "Tommy Germanovich Jr.", "character": "FourSquare (uncredited)", "id": 1278375, "credit_id": "52fe456e9251416c75056357", "cast_id": 135, "profile_path": null, "order": 113}, {"name": "Mary Grace", "character": "Shipyard Bar Patron (uncredited)", "id": 218569, "credit_id": "52fe456e9251416c7505635b", "cast_id": 136, "profile_path": null, "order": 114}, {"name": "Wyatt Gray", "character": "Starfleet Cadet (uncredited)", "id": 1278378, "credit_id": "52fe456e9251416c7505635f", "cast_id": 137, "profile_path": null, "order": 115}, {"name": "Joshua Greene", "character": "Child Running in Snow (uncredited)", "id": 971780, "credit_id": "52fe456e9251416c75056363", "cast_id": 138, "profile_path": null, "order": 116}, {"name": "Nancy Guerriero", "character": "Crew Member (uncredited)", "id": 74504, "credit_id": "52fe456e9251416c75056367", "cast_id": 139, "profile_path": null, "order": 117}, {"name": "Justin Rodgers Hall", "character": "Starfleet Security Officer (uncredited)", "id": 85743, "credit_id": "52fe456e9251416c7505636b", "cast_id": 140, "profile_path": null, "order": 118}, {"name": "Jeffery Hauser", "character": "Kelvin Crew Member (uncredited)", "id": 1278379, "credit_id": "52fe456e9251416c7505636f", "cast_id": 141, "profile_path": null, "order": 119}, {"name": "Brad William Henke", "character": "Uncle Frank (uncredited) (unconfirmed)", "id": 15376, "credit_id": "52fe456e9251416c75056373", "cast_id": 142, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 120}, {"name": "Elizabeth Ingalls", "character": "Enterprise Nurse (uncredited)", "id": 490982, "credit_id": "52fe456e9251416c75056377", "cast_id": 143, "profile_path": null, "order": 121}, {"name": "Christopher Karl Johnson", "character": "Shipyard Worker (uncredited)", "id": 228458, "credit_id": "52fe456e9251416c7505637b", "cast_id": 144, "profile_path": null, "order": 122}, {"name": "Jolene Kay", "character": "Enterprise Crew Member (uncredited)", "id": 1278380, "credit_id": "52fe456e9251416c7505637f", "cast_id": 145, "profile_path": null, "order": 123}, {"name": "Sarah Klaren", "character": "Starfleet Cadet (uncredited)", "id": 1278381, "credit_id": "52fe456e9251416c75056383", "cast_id": 146, "profile_path": null, "order": 124}, {"name": "Makiko Konishi", "character": "Enterprise Crew Member (uncredited)", "id": 1278382, "credit_id": "52fe456e9251416c75056387", "cast_id": 147, "profile_path": null, "order": 125}, {"name": "Bryan Lee", "character": "Starfleet Cadet (uncredited)", "id": 1014618, "credit_id": "52fe456e9251416c7505638b", "cast_id": 148, "profile_path": null, "order": 126}, {"name": "Daniel D. Lee", "character": "Starfleet Commander (uncredited)", "id": 1278383, "credit_id": "52fe456e9251416c7505638f", "cast_id": 149, "profile_path": null, "order": 127}, {"name": "Anne Leighton", "character": "Enterprise Crew Member (uncredited)", "id": 139553, "credit_id": "52fe456e9251416c75056393", "cast_id": 150, "profile_path": null, "order": 128}, {"name": "Steve Luna", "character": "Lieutenant Star Fleet Command (uncredited)", "id": 1103961, "credit_id": "52fe456e9251416c75056397", "cast_id": 151, "profile_path": null, "order": 129}, {"name": "Aaron Lynch", "character": "Flight Operational Air Safety Conductor (uncredited)", "id": 1278384, "credit_id": "52fe456e9251416c7505639b", "cast_id": 152, "profile_path": null, "order": 130}, {"name": "Justin Malachi", "character": "Starfleet Cadet (uncredited)", "id": 1278385, "credit_id": "52fe456e9251416c7505639f", "cast_id": 153, "profile_path": null, "order": 131}, {"name": "Nav Mann", "character": "Romulan Crew Member Placing Bomb (uncredited)", "id": 989924, "credit_id": "52fe456e9251416c750563a3", "cast_id": 154, "profile_path": null, "order": 132}, {"name": "Paul Marshall", "character": "Bar Patron (uncredited)", "id": 1278386, "credit_id": "52fe456e9251416c750563a7", "cast_id": 155, "profile_path": null, "order": 133}, {"name": "Owen Martin", "character": "Alien Cadet / Enterprise Crew (uncredited)", "id": 1114365, "credit_id": "52fe456e9251416c750563ab", "cast_id": 156, "profile_path": null, "order": 134}, {"name": "Taylor McCluskey", "character": "Kelvin Alien (uncredited)", "id": 1278387, "credit_id": "52fe456e9251416c750563af", "cast_id": 157, "profile_path": null, "order": 135}, {"name": "Matthew McGregor", "character": "Starfleet Cadet (uncredited)", "id": 1278388, "credit_id": "52fe456e9251416c750563b3", "cast_id": 158, "profile_path": null, "order": 136}, {"name": "Caitlin McKenna-Wilkinson", "character": "Kelvin Computer (uncredited)", "id": 59055, "credit_id": "52fe456e9251416c750563b7", "cast_id": 159, "profile_path": null, "order": 137}, {"name": "Patrizia Milano", "character": "Councilwoman (uncredited)", "id": 1278389, "credit_id": "52fe456e9251416c750563bb", "cast_id": 160, "profile_path": null, "order": 138}, {"name": "Kevin Moser", "character": "Enterprise Crewman (uncredited)", "id": 1278390, "credit_id": "52fe456e9251416c750563bf", "cast_id": 161, "profile_path": null, "order": 139}, {"name": "Jonathan W.D. Newkerk", "character": "Starfleet Cadet (uncredited)", "id": 1278391, "credit_id": "52fe456e9251416c750563c3", "cast_id": 162, "profile_path": null, "order": 140}, {"name": "Westley Nguyen", "character": "Enterprise Crew Member (uncredited)", "id": 1278392, "credit_id": "52fe456e9251416c750563c7", "cast_id": 163, "profile_path": null, "order": 141}, {"name": "Jim Nieb", "character": "Sal (uncredited)", "id": 1278393, "credit_id": "52fe456e9251416c750563cb", "cast_id": 164, "profile_path": null, "order": 142}, {"name": "Andres Perez-Molina", "character": "Romulan Crew Member (uncredited)", "id": 1226016, "credit_id": "52fe456e9251416c750563cf", "cast_id": 165, "profile_path": null, "order": 143}, {"name": "Mark Phelan", "character": "Romulan (uncredited)", "id": 149466, "credit_id": "52fe456e9251416c750563d3", "cast_id": 166, "profile_path": null, "order": 144}, {"name": "Damion Poitier", "character": "Drill Hanson #1 (uncredited)", "id": 150194, "credit_id": "52fe456e9251416c750563d7", "cast_id": 167, "profile_path": "/zBoq4SAauhVmbHSyWZXYXvA36Ky.jpg", "order": 145}, {"name": "Rahvaunia", "character": "Academy Teacher (uncredited)", "id": 986700, "credit_id": "52fe456e9251416c750563db", "cast_id": 168, "profile_path": null, "order": 146}, {"name": "Bertrand Roberson Jr.", "character": "Shuttle Cadet (uncredited)", "id": 97466, "credit_id": "52fe456e9251416c750563df", "cast_id": 169, "profile_path": null, "order": 147}, {"name": "Deborah Rombaut", "character": "Starfleet Cadet (uncredited)", "id": 588647, "credit_id": "52fe456e9251416c750563e3", "cast_id": 170, "profile_path": null, "order": 148}, {"name": "Leonard Jonathan Ruebe", "character": "Starfleet Cadet (uncredited)", "id": 1278394, "credit_id": "52fe456e9251416c750563e7", "cast_id": 171, "profile_path": null, "order": 149}, {"name": "Ramona Seymour", "character": "Starfleet Cadet (uncredited)", "id": 1278395, "credit_id": "52fe456e9251416c750563eb", "cast_id": 172, "profile_path": null, "order": 150}, {"name": "William Morgan Sheppard", "character": "Vulcan Science Minister (uncredited)", "id": 938390, "credit_id": "52fe456e9251416c750563ef", "cast_id": 173, "profile_path": "/waLqlHPegD7GgbnCVfLk3K4rDuA.jpg", "order": 151}, {"name": "Katie Soo", "character": "Enterprise Crew Member (uncredited)", "id": 1278397, "credit_id": "52fe456e9251416c750563f3", "cast_id": 174, "profile_path": null, "order": 152}, {"name": "Arne Starr", "character": "Lt. Cmdr. Engineeriring (uncredited)", "id": 1202554, "credit_id": "52fe456e9251416c750563f7", "cast_id": 175, "profile_path": null, "order": 153}, {"name": "Ronnie Steadman", "character": "Shuttle Pilot (uncredited)", "id": 121905, "credit_id": "52fe456e9251416c750563fb", "cast_id": 176, "profile_path": null, "order": 154}, {"name": "Joseph Stephens Jr.", "character": "Cadet Officer (uncredited)", "id": 1278398, "credit_id": "52fe456e9251416c750563ff", "cast_id": 177, "profile_path": null, "order": 155}, {"name": "Joseph Steven", "character": "Romulan Engineer (uncredited)", "id": 1278399, "credit_id": "52fe456e9251416c75056403", "cast_id": 178, "profile_path": null, "order": 156}, {"name": "T.J. Storm", "character": "Klingon Agitator (uncredited)", "id": 980805, "credit_id": "52fe456e9251416c75056407", "cast_id": 179, "profile_path": "/mjDnRk9PC4MKB7De7mVpx4NayrB.jpg", "order": 157}, {"name": "Paul Townsend", "character": "Starfleet Security Officer (uncredited)", "id": 203279, "credit_id": "52fe456e9251416c7505640b", "cast_id": 180, "profile_path": null, "order": 158}, {"name": "Scott Trimble", "character": "Klingon Prison Guard (uncredited)", "id": 1235227, "credit_id": "52fe456e9251416c7505640f", "cast_id": 181, "profile_path": null, "order": 159}, {"name": "Errik Tustenuggee", "character": "Federation Captain Cartwright (uncredited)", "id": 1278508, "credit_id": "52fe456e9251416c75056413", "cast_id": 182, "profile_path": null, "order": 160}, {"name": "Ravi Valleti", "character": "Cadet at Trial (uncredited)", "id": 1278509, "credit_id": "52fe456e9251416c75056417", "cast_id": 183, "profile_path": null, "order": 161}, {"name": "Jason Vaughn", "character": "Starfleet Cadet (uncredited)", "id": 1278514, "credit_id": "52fe456e9251416c7505641b", "cast_id": 184, "profile_path": null, "order": 162}, {"name": "A.J. Verel", "character": "Enterprise Crewman (uncredited)", "id": 1278515, "credit_id": "52fe456e9251416c7505641f", "cast_id": 185, "profile_path": null, "order": 163}, {"name": "Brian Waller", "character": "Vulcan Council Member (uncredited)", "id": 1202555, "credit_id": "52fe456e9251416c75056423", "cast_id": 186, "profile_path": null, "order": 164}, {"name": "Steve Wharton", "character": "Star Fleet Cadet (uncredited)", "id": 1278516, "credit_id": "52fe456e9251416c75056427", "cast_id": 187, "profile_path": null, "order": 165}, {"name": "Wil Wheaton", "character": "Romulan (voice) (uncredited)", "id": 3033, "credit_id": "52fe456e9251416c7505642b", "cast_id": 188, "profile_path": "/1lrCjrsazL3O82DsP7ICfMHWJTU.jpg", "order": 166}, {"name": "Brianna Womick", "character": "Starfleet Cadet (uncredited)", "id": 1278521, "credit_id": "52fe456e9251416c7505642f", "cast_id": 189, "profile_path": null, "order": 167}, {"name": "Lynnanne Zager", "character": "Enterprise Computer (voice) (uncredited)", "id": 64451, "credit_id": "52fe456e9251416c75056433", "cast_id": 190, "profile_path": "/bfxb3RNWKKxCdurwYQz7t48dCZI.jpg", "order": 168}, {"name": "Pavel Lychnikoff", "character": "Romulan Officer", "id": 52762, "credit_id": "54e8a4569251412eb1001f2f", "cast_id": 199, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 169}], "directors": [{"name": "J.J. Abrams", "department": "Directing", "job": "Director", "credit_id": "52fe456c9251416c75056141", "profile_path": "/7tOozDlTGNpCxFQZ6AjSju7uehf.jpg", "id": 15344}], "vote_average": 7.3, "runtime": 127}, "13477": {"poster_path": "/drI7GrwMyqXonKsr0i6pIKpTbHc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36699403, "overview": "After fishing out coins from a water fountain in Italy, cynical New Yorker Beth Harper finds herself being wooed by several ardent suitors. As she deals with the attention, Beth tries to figure out whether a charming reporter really loves her.", "video": false, "id": 13477, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "When in Rome", "tagline": "Did you ever wish for the impossible?", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1185416", "adult": false, "backdrop_path": "/yT0dZm5EicwHZIWTJZvK2MvjDqO.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "2010-01-29", "popularity": 0.590763227816928, "original_title": "When in Rome", "budget": 0, "cast": [{"name": "Josh Duhamel", "character": "Nick Beamon", "id": 19536, "credit_id": "52fe456e9251416c750564d3", "cast_id": 1, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 0}, {"name": "Kristen Bell", "character": "Beth Harper", "id": 40462, "credit_id": "52fe456e9251416c750564d7", "cast_id": 2, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Anjelica Huston", "character": "Celeste", "id": 5657, "credit_id": "52fe456e9251416c75056523", "cast_id": 15, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 2}, {"name": "Will Arnett", "character": "Antonio", "id": 21200, "credit_id": "52fe456f9251416c75056527", "cast_id": 16, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 3}, {"name": "Jon Heder", "character": "Lance", "id": 53926, "credit_id": "52fe456f9251416c7505652b", "cast_id": 17, "profile_path": "/mLcCixjexwM7oc6OqwTJxf52L5C.jpg", "order": 4}, {"name": "Dax Shepard", "character": "Gale", "id": 51298, "credit_id": "52fe456f9251416c7505652f", "cast_id": 18, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 5}, {"name": "Alexis Dziena", "character": "Joan", "id": 4433, "credit_id": "52fe456f9251416c75056533", "cast_id": 19, "profile_path": "/gaVHjCbmK8el3k2TTuV7j0pKweR.jpg", "order": 6}, {"name": "Kate Micucci", "character": "Stacy", "id": 132354, "credit_id": "52fe456f9251416c75056537", "cast_id": 20, "profile_path": "/qoUOtNflMZb9l1zgg9aeMiu1MF7.jpg", "order": 7}, {"name": "Bobby Moynihan", "character": "Puck", "id": 452205, "credit_id": "52fe456f9251416c7505653b", "cast_id": 21, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 8}, {"name": "Peggy Lipton", "character": "Priscilla", "id": 152759, "credit_id": "52fe456f9251416c7505653f", "cast_id": 22, "profile_path": "/ufFeqwjB6GGdZCRnkZtNS2hDoz9.jpg", "order": 9}, {"name": "Keir O'Donnell", "character": "Priest", "id": 39213, "credit_id": "52fe456f9251416c75056543", "cast_id": 23, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 10}, {"name": "Lee Pace", "character": "Brady Sacks", "id": 72095, "credit_id": "52fe456f9251416c75056547", "cast_id": 24, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 11}, {"name": "Kristen Schaal", "character": "Ilona", "id": 109869, "credit_id": "52fe456f9251416c7505654b", "cast_id": 25, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 12}, {"name": "Shaquille O'Neal", "character": "Himself", "id": 35806, "credit_id": "52fe456f9251416c7505654f", "cast_id": 26, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 13}], "directors": [{"name": "Mark Steven Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe456e9251416c750564dd", "profile_path": "/3rsOvXICk3jukbkAkDqZY3a9pvx.jpg", "id": 16837}], "vote_average": 5.8, "runtime": 91}, "152742": {"poster_path": "/bXk6T8npfh2Ly24VMWSeZLsTLhC.jpg", "production_countries": [{"iso_3166_1": "IT", "name": "Italy"}], "revenue": 19255873, "overview": "Virgil Oldman is a world renowned antiques expert and auctioneer. An eccentric genius, he leads a solitary life, going to extreme lengths to keep his distance from the messiness of human relationships. When appointed by the beautiful but emotionally damaged Claire to oversee the valuation and sale of her family\u2019s priceless art collection, Virgil allows himself to form an attachment to her \u2013 and soon he is engulfed by a passion which will rock his bland existence to the core.", "video": false, "id": 152742, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "The Best Offer", "tagline": "A Master of Possession. A Crime of Obsession", "vote_count": 146, "homepage": "http://lamiglioreoffertailfilm.it", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1924396", "adult": false, "backdrop_path": "/vH1FgUSUo3Js8BxuePINqfqMogr.jpg", "production_companies": [{"name": "Regione Lazio", "id": 20416}, {"name": "Paco Cinematografica", "id": 3110}, {"name": "Warner Bros.", "id": 6194}, {"name": "Business Location Sudtirol Alto Adige", "id": 20644}, {"name": "Friuli Venezia Giulia Film Commission", "id": 38591}, {"name": "UniCredit Group", "id": 38592}], "release_date": "2013-01-01", "popularity": 1.13672960931306, "original_title": "La migliore offerta", "budget": 13500000, "cast": [{"name": "Geoffrey Rush", "character": "Virgil Oldman", "id": 118, "credit_id": "52fe4b299251416c910d1e35", "cast_id": 5, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 0}, {"name": "Jim Sturgess", "character": "Robert", "id": 38941, "credit_id": "52fe4b299251416c910d1e39", "cast_id": 6, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 1}, {"name": "Sylvia Hoeks", "character": "Claire", "id": 104632, "credit_id": "52fe4b299251416c910d1e3d", "cast_id": 7, "profile_path": "/nwweo6SsGJ2YBuQcRoTrOzU9jxw.jpg", "order": 2}, {"name": "Donald Sutherland", "character": "Billy", "id": 55636, "credit_id": "52fe4b299251416c910d1e41", "cast_id": 8, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 3}, {"name": "Maximilian Dirr", "character": "Virgil's Assistant", "id": 1133330, "credit_id": "52fe4b299251416c910d1e45", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Philip Jackson", "character": "Fred", "id": 25532, "credit_id": "52fe4b299251416c910d1e49", "cast_id": 10, "profile_path": "/5pVwSFvjEgOprlMn3s6O7bQM1qc.jpg", "order": 5}, {"name": "Dermot Crowley", "character": "Lambert", "id": 17484, "credit_id": "52fe4b299251416c910d1e4d", "cast_id": 11, "profile_path": "/z2flyEd3eV8Ho8mXa8rXOHZw9Yg.jpg", "order": 6}, {"name": "Liya Kebede", "character": "Sarah", "id": 111662, "credit_id": "52fe4b299251416c910d1e51", "cast_id": 12, "profile_path": "/b4gwjWAqL0B7BwAXaY4sWak35ET.jpg", "order": 7}, {"name": "Brigitte Christensen", "character": "The Sister", "id": 1073181, "credit_id": "52fe4b299251416c910d1e5b", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Kiruna Stamell", "character": "Girl in the Bar", "id": 1250098, "credit_id": "546925a8eaeb816b46001876", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Caterina Capodilista", "character": "Young Woman", "id": 1386133, "credit_id": "546925d4eaeb816b550019bb", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Gen Seto", "character": "Housekeeper", "id": 1386137, "credit_id": "54692636eaeb816b550019c6", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Klaus Tauber", "character": "Virgil's Assistant #1", "id": 1386139, "credit_id": "54692659eaeb8101730000eb", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Maximilian Dirr", "character": "Virgil's Assistant #2", "id": 1133330, "credit_id": "54692675eaeb816b4b0018f3", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Laurence Belgrave", "character": "Virgil's Assistant #3", "id": 1386142, "credit_id": "5469269d22136e68c9001c96", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Sean Buchanan", "character": "Virgil's Assistant #4", "id": 1386143, "credit_id": "546926b6eaeb816b43001878", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "John Benfield", "character": "Barman", "id": 42642, "credit_id": "546926d3eaeb8101730000f5", "cast_id": 22, "profile_path": null, "order": 16}], "directors": [{"name": "Giuseppe Tornatore", "department": "Directing", "job": "Director", "credit_id": "52fe4b299251416c910d1e1f", "profile_path": "/jAQnThw8ouqJtuy8XaKgDuDKbn2.jpg", "id": 65314}], "vote_average": 7.6, "runtime": 124}, "38055": {"poster_path": "/amXAUSAUrnGuLGEyc1ZNhBvgbnF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60500000, "overview": "Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.", "video": false, "id": 38055, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Megamind", "tagline": "His brain is off the chain.", "vote_count": 665, "homepage": "http://www.megamind.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1001526", "adult": false, "backdrop_path": "/o6anuGPog9853CPiaPQEMmdBVT0.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2010-11-04", "popularity": 1.70716235422447, "original_title": "Megamind", "budget": 3000000, "cast": [{"name": "Will Ferrell", "character": "Megamind (voice)", "id": 23659, "credit_id": "52fe468e9251416c910583d1", "cast_id": 5, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 0}, {"name": "Brad Pitt", "character": "Metro Man (voice)", "id": 287, "credit_id": "52fe468e9251416c910583cd", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 1}, {"name": "Tina Fey", "character": "Roxanne Ritchi (voice)", "id": 56323, "credit_id": "52fe468e9251416c910583d5", "cast_id": 6, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 2}, {"name": "Jonah Hill", "character": "Titan (voice)", "id": 21007, "credit_id": "52fe468e9251416c910583d9", "cast_id": 7, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 3}, {"name": "David Cross", "character": "Minion", "id": 212, "credit_id": "52fe468e9251416c910583dd", "cast_id": 8, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 4}, {"name": "Justin Long", "character": "Minions", "id": 15033, "credit_id": "52fe468e9251416c910583e1", "cast_id": 9, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 5}, {"name": "Bill Hader", "character": "Bob Prickles", "id": 19278, "credit_id": "52fe468e9251416c910583e5", "cast_id": 10, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 6}, {"name": "Amy Poehler", "character": "Linda Prickles", "id": 56322, "credit_id": "52fe468e9251416c910583e9", "cast_id": 11, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 7}, {"name": "Rob Corddry", "character": "Random Citizen", "id": 52997, "credit_id": "52fe468e9251416c910583ed", "cast_id": 12, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 8}, {"name": "J.K. Simmons", "character": "Warden", "id": 18999, "credit_id": "52fe468e9251416c910583f1", "cast_id": 13, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 9}, {"name": "Ben Stiller", "character": "Bernard", "id": 7399, "credit_id": "52fe468e9251416c910583f5", "cast_id": 14, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 10}, {"name": "Justin Theroux", "character": "Megaminds's Father", "id": 15009, "credit_id": "52fe468f9251416c910583f9", "cast_id": 15, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 11}, {"name": "Christopher Knights", "character": "Prison Guard", "id": 12097, "credit_id": "52fe468f9251416c910583fd", "cast_id": 16, "profile_path": "/q5Kmagm0PP6TQUCZIXJJyVViorX.jpg", "order": 12}, {"name": "Jack Blessing", "character": "Newscaster", "id": 102336, "credit_id": "52fe468f9251416c91058401", "cast_id": 17, "profile_path": "/xadJ0CFul9YT84hRTZ3c0YmFASy.jpg", "order": 13}, {"name": "Joey Dinitere", "character": "Baby Megamind", "id": 141772, "credit_id": "52fe468f9251416c91058409", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Noah Dinitere", "character": "Babby Metro Man", "id": 141773, "credit_id": "52fe468f9251416c9105840d", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "L\u00e6rke Winther Andersen", "character": "Roxanne (Voice: Danish Version)", "id": 587170, "credit_id": "52fe468f9251416c91058441", "cast_id": 29, "profile_path": "/1GTPguBCgLA0x5rwKilVm9qW53E.jpg", "order": 17}, {"name": "Jessica Schulte", "character": "Megamind's Mother (voice)", "id": 936672, "credit_id": "552dc7bcc3a368618e0069f0", "cast_id": 33, "profile_path": "/apZtLC6mjAGEZLctvprrOhTw95W.jpg", "order": 18}, {"name": "Tom McGrath", "character": "Lord Scott / Prison Guard (voice)", "id": 18864, "credit_id": "552dc86cc3a3683f0d0007be", "cast_id": 34, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 19}, {"name": "Emily Nordwind", "character": "Lady Scott (voice)", "id": 1364656, "credit_id": "552dc89d9251413873006f7c", "cast_id": 35, "profile_path": null, "order": 20}, {"name": "Ella Olivia Stiller", "character": "Schoolchild (voice)", "id": 1454400, "credit_id": "552dc995c3a36875010021a8", "cast_id": 36, "profile_path": null, "order": 21}, {"name": "Quinn Dempsey Stiller", "character": "Schoolchild (voice)", "id": 1077795, "credit_id": "552dcaa09251413838000714", "cast_id": 37, "profile_path": null, "order": 22}, {"name": "Brian Hopkins", "character": "Prisoner (voice)", "id": 1454420, "credit_id": "552dcbd49251413838000755", "cast_id": 38, "profile_path": null, "order": 23}, {"name": "Mike Mitchell", "character": "Father in Crowd (voice)", "id": 64151, "credit_id": "552dcc90c3a368618e006b12", "cast_id": 39, "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "order": 24}, {"name": "Jasper Johannes Andrews", "character": "Crying Baby (voice)", "id": 1454441, "credit_id": "552dce53925141311100088e", "cast_id": 40, "profile_path": null, "order": 25}, {"name": "Stephen Kearin", "character": "Mayor (voice)", "id": 1448984, "credit_id": "552dcfc3c3a36872ef000e4c", "cast_id": 41, "profile_path": null, "order": 26}], "directors": [{"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe468e9251416c910583c9", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}], "vote_average": 6.4, "runtime": 95}, "5289": {"poster_path": "/xcIrMCMwfdK6hYbAvdfVFhVN1DJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10289, "overview": "Two cops, a rookie and a grizzled vet, pursue an accomplished bank robber.", "video": false, "id": 5289, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Chaos", "tagline": "When the system breaks down... someone is about to get rich.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0402910", "adult": false, "backdrop_path": "/ni3DtIc0rm7OgxenOPKEktUjgsU.jpg", "production_companies": [{"name": "Mobius International", "id": 26147}, {"name": "Chaotic Productions", "id": 26146}, {"name": "Current Entertainment", "id": 972}, {"name": "Rampage Entertainment", "id": 26144}, {"name": "Pierce-Williams", "id": 1896}, {"name": "Zero Gravity Management", "id": 5357}, {"name": "Epsilon Motion Pictures", "id": 1171}, {"name": "M\u00f6bius Entertainment", "id": 21869}], "release_date": "2005-01-17", "popularity": 0.975912250918601, "original_title": "Chaos", "budget": 12000000, "cast": [{"name": "Jason Statham", "character": "Det. Quentin Conners", "id": 976, "credit_id": "52fe4402c3a36847f807d077", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Ryan Phillippe", "character": "Det. Shane Dekker", "id": 11864, "credit_id": "52fe4402c3a36847f807d07b", "cast_id": 2, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 1}, {"name": "Wesley Snipes", "character": "Lorenz / Jason York", "id": 10814, "credit_id": "52fe4402c3a36847f807d07f", "cast_id": 3, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 2}, {"name": "Henry Czerny", "character": "Capt. Martin Jenkins", "id": 15319, "credit_id": "52fe4402c3a36847f807d083", "cast_id": 4, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 3}, {"name": "Justine Waddell", "character": "Det. Teddy Galloway", "id": 42705, "credit_id": "52fe4402c3a36847f807d087", "cast_id": 5, "profile_path": "/CjphDEmppD6a4X9R6ncQfAJFNv.jpg", "order": 4}, {"name": "Nicholas Lea", "character": "Det. Vincent Durano", "id": 42706, "credit_id": "52fe4402c3a36847f807d08b", "cast_id": 6, "profile_path": "/tXfhqYTwSixZW623zvM9QyPbyPV.jpg", "order": 5}, {"name": "Jessica Steen", "character": "Karen Cross", "id": 42707, "credit_id": "52fe4402c3a36847f807d08f", "cast_id": 7, "profile_path": "/lZMvl7tJZPThfF7Lnui4wgEoOIf.jpg", "order": 6}, {"name": "Rob LaBelle", "character": "Bank Manager", "id": 42708, "credit_id": "52fe4402c3a36847f807d093", "cast_id": 8, "profile_path": "/v1cEWVrGmwDiePK5QxkUq5PjbQP.jpg", "order": 7}, {"name": "John Cassini", "character": "Det. Bernie Callo", "id": 12055, "credit_id": "52fe4402c3a36847f807d097", "cast_id": 9, "profile_path": "/9FUiUgK2Z4KqgvUphiehW0UJgfR.jpg", "order": 8}, {"name": "Damon Johnson", "character": "Brendan Dax", "id": 42709, "credit_id": "52fe4402c3a36847f807d09b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Paul Perri", "character": "Harry Hume", "id": 17933, "credit_id": "52fe4402c3a36847f807d09f", "cast_id": 11, "profile_path": "/knYjauMHtrFyptiZ2V2f9pjuh0F.jpg", "order": 10}, {"name": "Keegan Connor Tracy", "character": "Marnie Rollins", "id": 42710, "credit_id": "52fe4402c3a36847f807d0a3", "cast_id": 12, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 11}, {"name": "Natassia Malthe", "character": "Gina Lopez", "id": 21430, "credit_id": "52fe4402c3a36847f807d0a7", "cast_id": 13, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 12}, {"name": "Ty Olsson", "character": "Damon Richards", "id": 42711, "credit_id": "52fe4402c3a36847f807d0ab", "cast_id": 14, "profile_path": "/rd1M0tIIPKkoc1lX8yktMndHUjU.jpg", "order": 13}, {"name": "Terry Chen", "character": "Chris Lei", "id": 11677, "credit_id": "52fe4402c3a36847f807d0af", "cast_id": 15, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 14}, {"name": "Ken Medlock", "character": "Officer MacDunner", "id": 181067, "credit_id": "52fe4402c3a36847f807d0d1", "cast_id": 21, "profile_path": "/mHWHCbYkOwUPVHdAo7LvIMe1967.jpg", "order": 15}, {"name": "Pascale Hutton", "character": "Pretty Waitress", "id": 64917, "credit_id": "52fe4402c3a36847f807d0d5", "cast_id": 22, "profile_path": "/ilZSs16aNVySDEpU9k2xNShu0Ht.jpg", "order": 16}, {"name": "Michasha Armstrong", "character": "Xander Harrington", "id": 1237734, "credit_id": "53ae953f0e0a26598900428d", "cast_id": 38, "profile_path": null, "order": 17}, {"name": "Mike Dopud", "character": "Lamar Galt", "id": 64674, "credit_id": "53ae95e40e0a2659890042a3", "cast_id": 39, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 18}, {"name": "Garvin Cross", "character": "SWAT Commander", "id": 21264, "credit_id": "53ae96540e0a2659830041e6", "cast_id": 40, "profile_path": "/gQ5UZq9pR7d96wWvwFVEX1fCPsB.jpg", "order": 19}, {"name": "Fulvio Cecere", "character": "Det. Thomas Branch", "id": 65808, "credit_id": "53ae96e30e0a265986004131", "cast_id": 41, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 20}], "directors": [{"name": "Tony Giglio", "department": "Directing", "job": "Director", "credit_id": "52fe4402c3a36847f807d0b5", "profile_path": null, "id": 42712}], "vote_average": 6.7, "runtime": 106}, "152747": {"poster_path": "/9hdfc5MA50LUBwGXwHyO4BoFi57.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6108720, "overview": "Deep into a solo voyage in the Indian Ocean, an unnamed man (Redford) wakes to find his 39-foot yacht taking on water after a collision with a shipping container left floating on the high seas. With his navigation equipment and radio disabled, the man sails unknowingly into the path of a violent storm. Despite his success in patching the breached hull, his mariner's intuition and a strength that belies his age, the man barely survives the tempest. Using only a sextant and nautical maps to chart his progress, he is forced to rely on ocean currents to carry him into a shipping lane in hopes of hailing a passing vessel. But with the sun unrelenting, sharks circling and his meager supplies dwindling, the ever-resourceful sailor soon finds himself staring his mortality in the face.", "video": false, "id": 152747, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "All Is Lost", "tagline": "Never give up.", "vote_count": 221, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2017038", "adult": false, "backdrop_path": "/ygQQHmscHQWmJ2uQzXdxLE9Yszz.jpg", "production_companies": [{"name": "Before the Door Pictures", "id": 14861}, {"name": "Washington Square Films", "id": 14862}, {"name": "Black Bear Pictures", "id": 22146}, {"name": "Treehouse Pictures", "id": 14580}, {"name": "Sudden Storm Productions", "id": 6742}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2013-10-18", "popularity": 0.908562748355665, "original_title": "All Is Lost", "budget": 9000000, "cast": [{"name": "Robert Redford", "character": "Our Man", "id": 4135, "credit_id": "52fe4b299251416c910d1f2b", "cast_id": 7, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 0}], "directors": [{"name": "J.C. Chandor ", "department": "Directing", "job": "Director", "credit_id": "52fe4b299251416c910d1f09", "profile_path": "/mvNMQ2c23j6mVG0jqplWRneHLmU.jpg", "id": 556172}], "vote_average": 6.4, "runtime": 106}, "46261": {"poster_path": "/yZlKw02AuEJQ4oOFC3kUjFxqiUj.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young girl sent to live with her father and his new girlfriend discovers creatures in her new home who want to claim her as one of their own.", "video": false, "id": 46261, "genres": [{"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Don't Be Afraid of the Dark", "tagline": "Fear is never just make believe", "vote_count": 79, "homepage": "http://www.dontbeafraidofthedark.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1270761", "adult": false, "backdrop_path": "/zW9Ia77f4ROD5IPWBIjBCxGBs9E.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "FilmDistrict", "id": 7263}, {"name": "Necropia", "id": 11627}, {"name": "Gran Via Productions", "id": 2605}, {"name": "Tequila Gang", "id": 11628}], "release_date": "2010-11-06", "popularity": 0.61148197664632, "original_title": "Don't Be Afraid of the Dark", "budget": 12500000, "cast": [{"name": "Katie Holmes", "character": "Kim", "id": 3897, "credit_id": "52fe46edc3a36847f811a2c3", "cast_id": 10, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Alex Hirst", "id": 529, "credit_id": "52fe46edc3a36847f811a2c7", "cast_id": 11, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "Bailee Madison", "character": "Sally Hirst", "id": 54479, "credit_id": "52fe46edc3a36847f811a2cb", "cast_id": 12, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 2}, {"name": "Alan Dale", "character": "Jacoby", "id": 52760, "credit_id": "52fe46edc3a36847f811a2cf", "cast_id": 13, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 3}, {"name": "Jack Thompson", "character": "Harris", "id": 12536, "credit_id": "52fe46edc3a36847f811a2bb", "cast_id": 8, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 4}, {"name": "Emelia Burns", "character": "Caterer", "id": 210653, "credit_id": "52fe46edc3a36847f811a2bf", "cast_id": 9, "profile_path": "/d9NVU4P7zb0GqOhQr147gjTzqcU.jpg", "order": 5}, {"name": "Eddie Ritchard", "character": "Housekeeper", "id": 1014916, "credit_id": "52fe46edc3a36847f811a2d3", "cast_id": 14, "profile_path": "/wPdNitE84aZ5OvCzfl6BDo6EtqF.jpg", "order": 6}, {"name": "Nicholas Bell", "character": "Psychiatrist", "id": 15340, "credit_id": "52fe46edc3a36847f811a32b", "cast_id": 30, "profile_path": "/jtwLg2u2Zjoi0DFkmadvFIcfhdp.jpg", "order": 7}, {"name": "James Mackay", "character": "Librarian", "id": 1112872, "credit_id": "52fe46edc3a36847f811a32f", "cast_id": 31, "profile_path": null, "order": 8}], "directors": [{"name": "Troy Nixey", "department": "Directing", "job": "Director", "credit_id": "52fe46edc3a36847f811a2ab", "profile_path": null, "id": 135601}], "vote_average": 5.3, "runtime": 99}, "226486": {"poster_path": "/cq6wvDqETqJXgpQplkL0FBw2leM.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After losing her job and learning that her husband has been unfaithful, a woman hits the road with her profane, hard-drinking grandmother.", "video": false, "id": 226486, "genres": [{"id": 35, "name": "Comedy"}], "title": "Tammy", "tagline": "She hit the road. The road hit back.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103254", "adult": false, "backdrop_path": "/vmrDTWGTupJQ8KRUNrx4RLGtTVp.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Gary Sanchez Productions", "id": 4740}], "release_date": "2014-07-03", "popularity": 0.925061413011991, "original_title": "Tammy", "budget": 0, "cast": [{"name": "Melissa McCarthy", "character": "Tammy", "id": 55536, "credit_id": "52fe4e7f9251416c75158661", "cast_id": 4, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Pearl", "id": 4038, "credit_id": "52fe4e7f9251416c75158665", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Kathy Bates", "character": "Lenore", "id": 8534, "credit_id": "52fe4e7f9251416c75158671", "cast_id": 8, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 2}, {"name": "Allison Janney", "character": "Deb", "id": 19, "credit_id": "52fe4e7f9251416c75158669", "cast_id": 6, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 3}, {"name": "Dan Aykroyd", "character": "Don", "id": 707, "credit_id": "52fe4e7f9251416c75158675", "cast_id": 9, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 4}, {"name": "Gary Cole", "character": "Earl", "id": 21163, "credit_id": "52fe4e7f9251416c7515867d", "cast_id": 11, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 5}, {"name": "Sandra Oh", "character": "Susan", "id": 25540, "credit_id": "539b0f050e0a264508001464", "cast_id": 14, "profile_path": "/ojy6psDO5f0O7N2RBxCVUImGrpD.jpg", "order": 6}, {"name": "Mark Duplass", "character": "Bobby", "id": 45407, "credit_id": "52fe4e7f9251416c7515866d", "cast_id": 7, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 7}, {"name": "Toni Collette", "character": "Missi", "id": 3051, "credit_id": "539b0f110e0a264508001467", "cast_id": 15, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 8}, {"name": "Nat Faxon", "character": "Greg", "id": 105648, "credit_id": "52fe4e7f9251416c75158681", "cast_id": 12, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 9}, {"name": "Ben Falcone", "character": "Keith", "id": 170820, "credit_id": "539b0f1e0e0a26450200128b", "cast_id": 16, "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "order": 10}, {"name": "Sarah Baker", "character": "Becky", "id": 461542, "credit_id": "52fe4e7f9251416c75158679", "cast_id": 10, "profile_path": "/A1mwwdupm77sGDHmpUA8dec6VGT.jpg", "order": 11}, {"name": "Mia Rose Frampton", "character": "Karen", "id": 1169063, "credit_id": "533b4e5a9251413bb2000321", "cast_id": 13, "profile_path": "/3wUGNSzifgTMfRjT9w7kuOoccvH.jpg", "order": 12}, {"name": "Rich Williams", "character": "Larry", "id": 191156, "credit_id": "547cac619251412d780032dd", "cast_id": 17, "profile_path": "/AeZNgueQbNZJETRX4koAlAzyn2x.jpg", "order": 13}, {"name": "Steve Little", "character": "Jet Ski Rental Guy", "id": 1218547, "credit_id": "547d84c2c3a3685af0005581", "cast_id": 18, "profile_path": "/dbmJRG0M1gQ6jI3Sjvm2AOcW2pu.jpg", "order": 14}, {"name": "Dakota Lee", "character": "Kathleen", "id": 1392593, "credit_id": "547d859d9251411f4e003c58", "cast_id": 19, "profile_path": "/xf92Cr2xLSYqtMey7nnyKwj9L4n.jpg", "order": 15}, {"name": "Mark L. Young", "character": "Jesse", "id": 81197, "credit_id": "547d87139251412d6d004df5", "cast_id": 20, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 16}, {"name": "Steve Mallory", "character": "Cashier", "id": 1221605, "credit_id": "547d8982c3a3685af0005644", "cast_id": 21, "profile_path": "/x2N0Z1uaa39Hg151XaAvjLI0Tgg.jpg", "order": 17}, {"name": "Big Al Hall", "character": "Possum Creek Bluegrass Band", "id": 1392624, "credit_id": "547d89d0c3a36841e1001bf9", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Jones Smith", "character": "Possum Creek Bluegrass Band", "id": 1392626, "credit_id": "547d8a549251412d75004828", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Joe Baxter", "character": "Possum Creek Bluegrass Band", "id": 1392630, "credit_id": "547d8a929251412d75004834", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Benjamin Chontos", "character": "Possum Creek Bluegrass Band", "id": 1392631, "credit_id": "547d8ac49251412d78004dd3", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Sean Gould", "character": "Possum Creek Bluegrass Band", "id": 1392632, "credit_id": "547d8afbc3a3685af900478d", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Keith Welborn", "character": "DJ", "id": 1392634, "credit_id": "547d8b649251412d7f004f8c", "cast_id": 27, "profile_path": "/7bK4eYTQhUmhZA6WzB1mZXByemc.jpg", "order": 23}, {"name": "Oscar Gale", "character": "Javier", "id": 1392647, "credit_id": "547d8d17c3a3685afd0051ac", "cast_id": 28, "profile_path": "/sR7T2pQY0k9qodzyhuIwxOETZ10.jpg", "order": 24}, {"name": "Willie Hill", "character": "Prison Guard", "id": 1392666, "credit_id": "547d937e9251412d7f005097", "cast_id": 29, "profile_path": "/3IYh0MuyUxQR1Er3yxTzTlUSJ77.jpg", "order": 25}, {"name": "Zach Hanner", "character": "Man at Blue Post Bar-B-Que", "id": 1392671, "credit_id": "547d94059251411f4e003e34", "cast_id": 30, "profile_path": "/hzVLp8wVZ9YfDZ0R7QHi0fzKCdw.jpg", "order": 26}, {"name": "Jason Vail", "character": "Man at Blue Post Bar-B-Que", "id": 1019097, "credit_id": "547d95dbc3a3685b05005541", "cast_id": 31, "profile_path": "/rk308AVn1yU9LuYNiF3ZMwOBMB3.jpg", "order": 27}, {"name": "Leon Lamar", "character": "Old Man with Walker", "id": 80770, "credit_id": "547d97419251412d7c005430", "cast_id": 32, "profile_path": "/6yWKCRnzDXNfhHa8x3I0P1OuIPn.jpg", "order": 28}, {"name": "Larry Dorf", "character": "Officer Mannis", "id": 156106, "credit_id": "547d97b79251412d7c005443", "cast_id": 33, "profile_path": "/781fSdnTDfVvqHZ9xTrEPeYPlcW.jpg", "order": 29}, {"name": "Ricky Muse", "character": "Officer Curtis", "id": 1181570, "credit_id": "547d9890c3a3685afd00536d", "cast_id": 34, "profile_path": "/xThzRMWFym3eHMJ4mlWMEW367NX.jpg", "order": 30}, {"name": "Barbara Weetman", "character": "Officer Carty", "id": 174158, "credit_id": "547d99aa9251412d7c00549e", "cast_id": 35, "profile_path": "/nBGWWPAMdQHLmJQ4srzPk5AofpD.jpg", "order": 31}, {"name": "William Flaman", "character": "La Grange Bail Cop", "id": 174193, "credit_id": "547d9c809251412d75004abf", "cast_id": 36, "profile_path": "/h4dKauE8wgtye8l8IPalsB1dak7.jpg", "order": 32}, {"name": "Rey Hernandez", "character": "Cop at Lakehouse", "id": 118367, "credit_id": "547d9e8b9251412d7f00525e", "cast_id": 37, "profile_path": "/6vZLiu6mTxzm7v8sebHLOGAEeGB.jpg", "order": 33}, {"name": "Penn Charles Holderness", "character": "News Anchor", "id": 1392758, "credit_id": "547d9f019251412d700059da", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Michelle Li", "character": "News Reporter", "id": 1392764, "credit_id": "547da018c3a3685b00005930", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Raven Whisnant", "character": "Charlotte", "id": 1392779, "credit_id": "547da6a49251412d6d0052e3", "cast_id": 40, "profile_path": "/4eTTmkHTSWJf0OmNLxWbRcdGmDe.jpg", "order": 36}, {"name": "Damon Jones", "character": "Jerry Miller", "id": 190423, "credit_id": "547daa41c3a36841e1002075", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Sandy McCarthy", "character": "Two Old Ladies Leaving a Bar", "id": 1392789, "credit_id": "547daa699251412d6d005367", "cast_id": 42, "profile_path": null, "order": 38}, {"name": "Margo Passas", "character": "Two Old Ladies Leaving a Bar", "id": 1392790, "credit_id": "547daaab9251412d6d005374", "cast_id": 43, "profile_path": null, "order": 39}], "directors": [{"name": "Ben Falcone", "department": "Directing", "job": "Director", "credit_id": "52fe4e7f9251416c75158651", "profile_path": "/6MGVHVSgGRQ4XQFTCKV1k9iAlV5.jpg", "id": 170820}], "vote_average": 5.2, "runtime": 97}, "152760": {"poster_path": "/m4puTcUAFtFJBLMVoRs0FLk3ET3.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154984035, "overview": "Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world\u2019s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?", "video": false, "id": 152760, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "The Monuments Men", "tagline": "It was the greatest art heist in history", "vote_count": 542, "homepage": "http://www.monumentsmen.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2177771", "adult": false, "backdrop_path": "/q83wt7MsAWHNN1jNFXQb0bnCghe.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Columbia Pictures", "id": 5}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Smokehouse Pictures", "id": 22695}, {"name": "Obelisk Productions", "id": 24970}], "release_date": "2014-02-20", "popularity": 1.81824169771768, "original_title": "The Monuments Men", "budget": 80000000, "cast": [{"name": "Matt Damon", "character": "James Granger", "id": 1892, "credit_id": "52fe4b2b9251416c910d21ad", "cast_id": 7, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Claire Simone", "id": 112, "credit_id": "52fe4b2b9251416c910d21b1", "cast_id": 8, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "George Clooney", "character": "Frank Stokes", "id": 1461, "credit_id": "52fe4b2b9251416c910d21b5", "cast_id": 9, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 2}, {"name": "Bill Murray", "character": "Richard Campbell", "id": 1532, "credit_id": "52fe4b2b9251416c910d21b9", "cast_id": 10, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "John Goodman", "character": "Walter Garfield", "id": 1230, "credit_id": "52fe4b2b9251416c910d21bd", "cast_id": 11, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "Hugh Bonneville", "character": "Donald Jeffries", "id": 19923, "credit_id": "52fe4b2b9251416c910d21c1", "cast_id": 12, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 5}, {"name": "Jean Dujardin", "character": "Jean Claude Clermont", "id": 56024, "credit_id": "52fe4b2b9251416c910d21c5", "cast_id": 13, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 6}, {"name": "Bob Balaban", "character": "Preston Savitz", "id": 12438, "credit_id": "52fe4b2b9251416c910d21c9", "cast_id": 14, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 7}, {"name": "Holger Handtke", "character": "Colonel Wegner", "id": 1050916, "credit_id": "52fe4b2b9251416c910d21e5", "cast_id": 20, "profile_path": "/3Fji2GcNKyUcdUdv7aOOH3XcFLf.jpg", "order": 8}, {"name": "Dimitri Leonidas", "character": "Sam Epstein", "id": 89821, "credit_id": "52fe4b2b9251416c910d21e9", "cast_id": 21, "profile_path": "/lRi0kPKkno8TVOUnVHngPBSXC7B.jpg", "order": 9}, {"name": "Justus von Dohn\u00e1nyi", "character": "Viktor Stahl", "id": 5646, "credit_id": "534bd6340e0a2640c800338f", "cast_id": 25, "profile_path": "/llyjSaezSTFUuUb17LcPkvMSi4M.jpg", "order": 10}, {"name": "Zahary Baharov", "character": "Commander Elya", "id": 84197, "credit_id": "52fe4b2b9251416c910d21f1", "cast_id": 24, "profile_path": "/2ezWsP0k0Q4vQORvqzU8xqtJysd.jpg", "order": 11}, {"name": "Sam Hazeldine", "character": "Colonel Langton", "id": 563559, "credit_id": "5399695fc3a3681d1b001109", "cast_id": 31, "profile_path": "/12ev9KVmZ1xF4FNeZFGYRHjvJkQ.jpg", "order": 12}, {"name": "Diarmaid Murtagh", "character": "Captain Harpen", "id": 1330044, "credit_id": "53996994c3a3681d070010c6", "cast_id": 32, "profile_path": "/mGYuCYKnPojosNhviSoB1BifofA.jpg", "order": 13}, {"name": "Serge Hazanavicius", "character": "Rene Armand", "id": 54274, "credit_id": "539969c7c3a3681d0a00112f", "cast_id": 33, "profile_path": "/42VGG0jLTFoRcbGZd0PTpQRYEKE.jpg", "order": 14}, {"name": "Udo Kroschwald", "character": "Hermann Goering", "id": 48392, "credit_id": "539969f6c3a3681d0a001139", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Grant Heslov", "character": "Doctor", "id": 31511, "credit_id": "53996a6ac3a3681cfd0010d9", "cast_id": 35, "profile_path": "/mV9DTcqcNDcv12VykvjnEH6T4xs.jpg", "order": 16}, {"name": "Michael Brandner", "character": "Dentist", "id": 38486, "credit_id": "540766ab0e0a261893001d36", "cast_id": 45, "profile_path": "/nKPHHKj8gzKiTI4nCK27zZamp7m.jpg", "order": 17}, {"name": "Alexandre Desplat", "character": "Emile", "id": 2949, "credit_id": "54076757c3a36868ff001137", "cast_id": 46, "profile_path": "/sdGjvOGJqjK1CTbxRedE64Txk0t.jpg", "order": 18}, {"name": "Luc Feit", "character": "Aachen Vicar", "id": 235807, "credit_id": "540767abc3a36868f60010af", "cast_id": 47, "profile_path": null, "order": 19}, {"name": "Claudia Geisler", "character": "Stahl's Wife", "id": 6087, "credit_id": "540767f90e0a261896001c4b", "cast_id": 48, "profile_path": null, "order": 20}], "directors": [{"name": "George Clooney", "department": "Directing", "job": "Director", "credit_id": "52fe4b2b9251416c910d2191", "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "id": 1461}], "vote_average": 5.8, "runtime": 118}, "38073": {"poster_path": "/2WRQiwOsy0LZj4PNSKCjQQk19e3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42045846, "overview": "Erin's wry wit and unfiltered frankness charm newly single Garrett over beer, bar trivia and breakfast the next morning. Their chemistry sparks a full-fledged summer fling, but neither expects it to last once Erin heads home to San Francisco and Garrett stays behind for his job in New York City. But when six weeks of romping through the city inadvertently become meaningful, neither is sure they want it to end. And while Garrett's friends, Box and Dan, joke about his pre-flight calorie-cutting and his full-time relationship with his cell phone, they don't like losing their best drinking buddy to yet another rocky romance.", "video": false, "id": 38073, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Going the Distance", "tagline": "A comedy about meeting each other halfway.", "vote_count": 66, "homepage": "http://going-the-distance.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1322312", "adult": false, "backdrop_path": "/oFT8EGTXeBthnEsf4UQkHUBqI6X.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Offspring Entertainment", "id": 2378}], "release_date": "2010-09-03", "popularity": 0.634185214039891, "original_title": "Going the Distance", "budget": 32000000, "cast": [{"name": "Drew Barrymore", "character": "Erin", "id": 69597, "credit_id": "52fe46919251416c9105882b", "cast_id": 3, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Justin Long", "character": "Garrett", "id": 15033, "credit_id": "52fe46919251416c9105882f", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 1}, {"name": "Christina Applegate", "character": "Corinne", "id": 18979, "credit_id": "52fe46919251416c91058833", "cast_id": 5, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 2}, {"name": "Ron Livingston", "character": "Will", "id": 17402, "credit_id": "52fe46919251416c91058837", "cast_id": 6, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 3}, {"name": "Charlie Day", "character": "Dan", "id": 95101, "credit_id": "52fe46919251416c9105883b", "cast_id": 7, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 4}, {"name": "Kelli Garner", "character": "Brianna", "id": 17442, "credit_id": "52fe46919251416c9105883f", "cast_id": 8, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 5}, {"name": "Kristen Schaal", "character": "Female Bartender", "id": 109869, "credit_id": "52fe46919251416c91058843", "cast_id": 10, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 6}, {"name": "Charlie Hewson", "character": "Douchebag", "id": 133046, "credit_id": "52fe46919251416c91058847", "cast_id": 11, "profile_path": "/37SPYdqVqUmikOAWcTXaHtIfAE9.jpg", "order": 7}, {"name": "Jason Sudeikis", "character": "Box", "id": 58224, "credit_id": "52fe46919251416c9105884b", "cast_id": 12, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 8}], "directors": [{"name": "Nanette Burstein", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c91058821", "profile_path": "/2FSwFLtjklTI2CWiNIozXCPj3l.jpg", "id": 96439}], "vote_average": 6.5, "runtime": 102}, "35019": {"poster_path": "/yBNytVM6U3godvMcwcOQWOvL0f.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93251121, "overview": "Nanny McPhee appears at the door of a harried young mother, Mrs. Isabel Green, who is trying to run the family farm while her husband is away at war. But once she\u2019s arrived, Nanny McPhee discovers that the children are fighting a war of their own against two spoiled city cousins who have just moved in. Relying on everything from a flying motorcycle and a statue that comes to life to a tree-climbing piglet and a baby elephant, Nanny uses her magic to teach her mischievous charges five new lessons.", "video": false, "id": 35019, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Nanny McPhee and the Big Bang", "tagline": "You'll Believe That Pigs Can Fly!", "vote_count": 97, "homepage": "http://www.nannymcphee.co.uk/", "belongs_to_collection": {"backdrop_path": "/zxj5yar9KeGiCfZu57GfalPsBbL.jpg", "poster_path": "/iM75l6CCjaMOLUAIyAEfv6ISyQJ.jpg", "id": 35792, "name": "Nanny McPhee Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1415283", "adult": false, "backdrop_path": "/ugZHd1zRu8dIXQwgJXzlKj8s9MM.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}], "release_date": "2010-03-26", "popularity": 0.380730986769393, "original_title": "Nanny McPhee and the Big Bang", "budget": 35000000, "cast": [{"name": "Emma Thompson", "character": "Nanny McPhee", "id": 7056, "credit_id": "52fe458b9251416c91036213", "cast_id": 11, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Lord Gray", "id": 5469, "credit_id": "52fe458b9251416c91036217", "cast_id": 12, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Maggie Gyllenhaal", "character": "Mrs. Green", "id": 1579, "credit_id": "52fe458b9251416c9103621b", "cast_id": 13, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 2}, {"name": "Maggie Smith", "character": "Mrs. Docherty", "id": 10978, "credit_id": "52fe458b9251416c9103621f", "cast_id": 14, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Uncle Phil", "id": 7026, "credit_id": "52fe458b9251416c91036223", "cast_id": 15, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Asa Butterfield", "character": "Norman", "id": 77996, "credit_id": "52fe458b9251416c91036227", "cast_id": 16, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 5}, {"name": "Daniel Mays", "character": "Blenkinsop", "id": 1670, "credit_id": "52fe458b9251416c9103622b", "cast_id": 17, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 6}, {"name": "Bill Bailey", "character": "Farmer MacReadie", "id": 24265, "credit_id": "52fe458b9251416c9103622f", "cast_id": 18, "profile_path": "/1e1XFFesh5cQJWf3brBgfMxznE9.jpg", "order": 7}, {"name": "Ewan McGregor", "character": "Mr. Green", "id": 3061, "credit_id": "52fe458b9251416c91036245", "cast_id": 22, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 8}, {"name": "Eros Vlahos", "character": "Cyril Gray", "id": 81269, "credit_id": "539a5fdbc3a3684b730007a3", "cast_id": 24, "profile_path": "/bif3MhLYabK4Qr4mpdi9viBHoxN.jpg", "order": 9}], "directors": [{"name": "Susanna White", "department": "Directing", "job": "Director", "credit_id": "52fe458b9251416c910361d9", "profile_path": null, "id": 113600}], "vote_average": 6.1, "runtime": 109}, "103620": {"poster_path": "/ag1IgAqYartblOy0IiDIMNoJUVI.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31081, "overview": "As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop's deadly, suppressed desires come to the surface.", "video": false, "id": 103620, "genres": [{"id": 80, "name": "Crime"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Maniac", "tagline": "I Warned You Not to Go Out Tonight.", "vote_count": 109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2103217", "adult": false, "backdrop_path": "/cosApMCd8Ik6KPhDEybl16ct0tp.jpg", "production_companies": [{"name": "La Petite Reine", "id": 1992}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "Studio 37", "id": 2577}], "release_date": "2013-06-21", "popularity": 1.01424700954623, "original_title": "Maniac", "budget": 6000000, "cast": [{"name": "Elijah Wood", "character": "Frank", "id": 109, "credit_id": "52fe4a21c3a36847f81bba97", "cast_id": 1, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "America Olivo", "character": "Frank's Mother", "id": 78434, "credit_id": "52fe4a21c3a36847f81bba9b", "cast_id": 2, "profile_path": "/jcKVwKxJEV2xRpkokNe0Om4GKHA.jpg", "order": 1}, {"name": "Nora Arnezeder", "character": "Anna", "id": 453272, "credit_id": "52fe4a21c3a36847f81bba9f", "cast_id": 3, "profile_path": "/eb8vIgDx2dcncSwnxGW7xtGR1DS.jpg", "order": 2}, {"name": "Zoe Aggeliki", "character": "Jenna", "id": 932095, "credit_id": "52fe4a21c3a36847f81bbaa3", "cast_id": 4, "profile_path": "/wCyrznRHDFSG2A1CHirXVAmWuRl.jpg", "order": 3}, {"name": "Jan Broberg", "character": "Rita", "id": 430313, "credit_id": "52fe4a21c3a36847f81bbae9", "cast_id": 16, "profile_path": "/gFqzDJ05UfHdOz6CJGvTxB0O97X.jpg", "order": 4}, {"name": "Joshua De La Garza", "character": "Martin", "id": 993897, "credit_id": "52fe4a21c3a36847f81bbaed", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Danny Hunter", "character": "Nick", "id": 992221, "credit_id": "52fe4a21c3a36847f81bbaf5", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Genevieve Alexandra", "character": "Jessica", "id": 1337067, "credit_id": "53b5b200c3a3685eb40012c0", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Liane Balaban", "character": "Judy", "id": 54817, "credit_id": "53b5b221c3a3685ec10012e5", "cast_id": 21, "profile_path": "/way8YUaXSxxJ5PYg0tM92savRMD.jpg", "order": 8}, {"name": "Megan Duffy", "character": "Lucie", "id": 191251, "credit_id": "53b5b26bc3a3685ec10012ed", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Luis Fernandez-Gil", "character": "Waiter", "id": 74501, "credit_id": "52fe4a21c3a36847f81bbaf1", "cast_id": 18, "profile_path": "/3gFkUQW6tbBaRMQuA4PMEJ6IHUG.jpg", "order": 10}], "directors": [{"name": "Franck Khalfoun", "department": "Directing", "job": "Director", "credit_id": "52fe4a21c3a36847f81bbaa9", "profile_path": null, "id": 64211}], "vote_average": 5.8, "runtime": 89}, "13510": {"poster_path": "/pRiwPdjweHx0BYGB3DNJGrgU8O3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Eden Lake is a relentlessly tense and immaculately paced horror-thriller about modern youth gone wild. When a young couple goes to a remote wooded lake for a romantic getaway, their quiet weekend is shattered by an aggressive group of local kids. Rowdiness quickly turns to rage as the teens terrorize the couple in unimaginable ways, and a weekend outing becomes a bloody battle for survival.", "video": false, "id": 13510, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Eden Lake", "tagline": "A weekend by the lake, with views to die for.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1020530", "adult": false, "backdrop_path": "/iPocIUHB4gW3dfV6ve4KLvgWOHw.jpg", "production_companies": [{"name": "Rollercoaster Films", "id": 8575}, {"name": "Aramid Entertainment Fund", "id": 3272}], "release_date": "2008-09-12", "popularity": 0.405023874719985, "original_title": "Eden Lake", "budget": 0, "cast": [{"name": "Kelly Reilly", "character": "Jenny", "id": 17521, "credit_id": "52fe45739251416c75056ff9", "cast_id": 1, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "Steve", "id": 17288, "credit_id": "52fe45739251416c75056ffd", "cast_id": 2, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Tara Ellis", "character": "Abi", "id": 85064, "credit_id": "52fe45739251416c75057001", "cast_id": 3, "profile_path": null, "order": 2}, {"name": "Jack O'Connell", "character": "Brett", "id": 85065, "credit_id": "52fe45739251416c75057005", "cast_id": 4, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 3}, {"name": "Finn Atkins", "character": "Paige", "id": 85066, "credit_id": "52fe45739251416c75057009", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jumayn Hunter", "character": "Mark", "id": 85067, "credit_id": "52fe45739251416c7505700d", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Thomas Turgoose", "character": "Cooper", "id": 70517, "credit_id": "52fe45739251416c75057011", "cast_id": 7, "profile_path": "/5cZboxmFmALIr7qIAvsJRnIJ9eO.jpg", "order": 6}, {"name": "James Burrows", "character": "Harry", "id": 85068, "credit_id": "52fe45739251416c75057015", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Tom Gill", "character": "Ricky", "id": 85069, "credit_id": "52fe45739251416c75057019", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Lorraine Bruce", "character": "Tanya", "id": 85070, "credit_id": "52fe45739251416c7505701d", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Shaun Dooley", "character": "Jon", "id": 85071, "credit_id": "52fe45739251416c75057021", "cast_id": 11, "profile_path": "/3jFprpFHI3pYPAXW6cxMevf8u7D.jpg", "order": 10}, {"name": "James Gandhi", "character": "Adam", "id": 85072, "credit_id": "52fe45739251416c75057025", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Bronson Webb", "character": "Reece", "id": 75076, "credit_id": "52fe45739251416c75057029", "cast_id": 13, "profile_path": "/oBADYTZzjZI2wAhgnf0ZeKy9q3T.jpg", "order": 12}, {"name": "Lorraine Stanley", "character": "Nat", "id": 85073, "credit_id": "52fe45739251416c7505702d", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Rachel Gleeves", "character": "Mel (as Rachel Gleaves)", "id": 85074, "credit_id": "52fe45739251416c75057031", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "James Watkins", "department": "Directing", "job": "Director", "credit_id": "52fe45739251416c75057037", "profile_path": null, "id": 63306}], "vote_average": 7.0, "runtime": 91}, "13515": {"poster_path": "/h0Lf0PoLqvcDDpWhvCpiLGSREmp.jpg", "production_countries": [{"iso_3166_1": "RO", "name": "Romania"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72436439, "overview": "An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.", "video": false, "id": 13515, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Mirrors", "tagline": "There is evil...On the other side.", "vote_count": 89, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iKyRjgpQVkPZGXYUeFk6zezoNkL.jpg", "poster_path": "/uiEEpqieH4kXQqps2QC19wOqd8v.jpg", "id": 105324, "name": "Mirrors Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0790686", "adult": false, "backdrop_path": "/lFUvdqHYFwumtDsM9fdbzSE1Rqe.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Luna Pictures", "id": 15361}, {"name": "ASAF", "id": 3273}, {"name": "Castel Film Romania", "id": 1370}], "release_date": "2008-08-15", "popularity": 0.602638736432488, "original_title": "Mirrors", "budget": 35000000, "cast": [{"name": "Kiefer Sutherland", "character": "Ben Carson", "id": 2628, "credit_id": "52fe45749251416c750571e1", "cast_id": 6, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "Paula Patton", "character": "Amy Carson", "id": 52851, "credit_id": "52fe45749251416c750571e5", "cast_id": 7, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 1}, {"name": "Amy Smart", "character": "Angela Carson", "id": 20189, "credit_id": "52fe45749251416c750571e9", "cast_id": 8, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 2}, {"name": "Cameron Boyce", "character": "Michael Carson", "id": 75041, "credit_id": "52fe45749251416c750571ed", "cast_id": 9, "profile_path": "/374sfaE0nrXUlddVhOn2uydoiBl.jpg", "order": 3}, {"name": "Erica Gluck", "character": "Daisy Carson", "id": 75042, "credit_id": "52fe45749251416c750571f1", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Jason Flemyng", "character": "Larry Byrne", "id": 973, "credit_id": "52fe45749251416c750571f5", "cast_id": 11, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Darren Kent", "character": "Jimmy Esseker", "id": 1035907, "credit_id": "52fe45749251416c750571f9", "cast_id": 12, "profile_path": "/erhPfnASkKB5ITTAi8OVf6tVz0B.jpg", "order": 6}, {"name": "Ezra Buzzington", "character": "Terrence Berry", "id": 59285, "credit_id": "54d6b3d6c3a3683b8f0037bf", "cast_id": 22, "profile_path": "/dl0SIqpOqS05UpJHKuDQqZTwUvP.jpg", "order": 7}, {"name": "Julian Glover", "character": "Robert Esseker", "id": 740, "credit_id": "54d6b400c3a3683b8f0037d9", "cast_id": 23, "profile_path": "/ej1OFxyfucl3QQjHGHjdqzwdDA1.jpg", "order": 8}], "directors": [{"name": "Alexandre Aja", "department": "Directing", "job": "Director", "credit_id": "52fe45749251416c750571c5", "profile_path": "/rGRsSYJasSprgPANHnVJPVzT0Za.jpg", "id": 59291}], "vote_average": 5.9, "runtime": 110}, "136400": {"poster_path": "/30lM3Uvzs6HOG5l4hzhwxYTWgd3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 131940411, "overview": "A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob -- the very organization the two men believe they have been stealing money from.", "video": false, "id": 136400, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "2 Guns", "tagline": "2 Guns, 1 Bank.", "vote_count": 653, "homepage": "http://www.2guns.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1272878", "adult": false, "backdrop_path": "/wZsX7160l5feO646shRx3liMutx.jpg", "production_companies": [{"name": "Universal Studios", "id": 13}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment Corporation", "id": 11030}, {"name": "Marc Platt Productions", "id": 2527}], "release_date": "2013-08-02", "popularity": 1.82493024000269, "original_title": "2 Guns", "budget": 74000000, "cast": [{"name": "Denzel Washington", "character": "Robert 'Bobby' Trench", "id": 5292, "credit_id": "52fe4c15c3a368484e1a614b", "cast_id": 10, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Michael 'Stig' Stigman", "id": 13240, "credit_id": "52fe4c15c3a368484e1a6147", "cast_id": 9, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Paula Patton", "character": "Deb", "id": 52851, "credit_id": "52fe4c15c3a368484e1a6157", "cast_id": 13, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Earl", "id": 2053, "credit_id": "52fe4c15c3a368484e1a6153", "cast_id": 12, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Fred Ward", "character": "Admiral Tuwey", "id": 10430, "credit_id": "52fe4c15c3a368484e1a6167", "cast_id": 17, "profile_path": "/ybRDXraWsQ6zyqPUIAWITwuOWug.jpg", "order": 4}, {"name": "James Marsden", "character": "Quince", "id": 11006, "credit_id": "52fe4c15c3a368484e1a614f", "cast_id": 11, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 5}, {"name": "Edward James Olmos", "character": "Papi Greco", "id": 587, "credit_id": "52fe4c15c3a368484e1a615b", "cast_id": 14, "profile_path": "/i7zKqsFqL5L1HPmAMeSA1xZzlD5.jpg", "order": 6}, {"name": "Robert John Burke", "character": "Jessup", "id": 31512, "credit_id": "52fe4c15c3a368484e1a615f", "cast_id": 15, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 7}, {"name": "Tait Fletcher", "character": "Mini", "id": 1105706, "credit_id": "52fe4c15c3a368484e1a6163", "cast_id": 16, "profile_path": "/b70bowmWAiXqlSCBXy0IFC1Mcw4.jpg", "order": 8}], "directors": [{"name": "Baltasar Korm\u00e1kur", "department": "Directing", "job": "Director", "credit_id": "52fe4c15c3a368484e1a611f", "profile_path": "/Aml85bUldhLbVubYBk38ag8JmVK.jpg", "id": 67813}], "vote_average": 6.7, "runtime": 109}, "13523": {"poster_path": "/bwXrZy2xqsyDnno4z8AENEgVfsO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18755936, "overview": "A high school senior drives cross-country with his best friends to hook up with a babe he met online.", "video": false, "id": 13523, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Sex Drive", "tagline": "He's leaving virgin territory", "vote_count": 71, "homepage": "http://www.sexdrivethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1135985", "adult": false, "backdrop_path": "/1RaVsWb6gz6L5ZzQfviFAjWmLBP.jpg", "production_companies": [{"name": "Summit Entertainment, LLC", "id": 3250}, {"name": "Alloy Entertainment", "id": 10067}, {"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2008-10-17", "popularity": 0.868314604073587, "original_title": "Sex Drive", "budget": 19000000, "cast": [{"name": "Josh Zuckerman", "character": "Ian", "id": 62816, "credit_id": "52fe45769251416c750574c5", "cast_id": 1, "profile_path": "/rasXHgYeUA2X72sF8VuPUcB7c6G.jpg", "order": 0}, {"name": "Amanda Crew", "character": "Felicia", "id": 58370, "credit_id": "52fe45769251416c750574c9", "cast_id": 2, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 1}, {"name": "Clark Duke", "character": "Lance", "id": 54729, "credit_id": "52fe45769251416c750574cd", "cast_id": 3, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 2}, {"name": "James Marsden", "character": "Rex", "id": 11006, "credit_id": "52fe45769251416c750574d1", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 3}, {"name": "Seth Green", "character": "Ezekiel", "id": 13922, "credit_id": "52fe45769251416c750574d5", "cast_id": 5, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 4}, {"name": "Alice Greczyn", "character": "Mary", "id": 52050, "credit_id": "52fe45769251416c750574d9", "cast_id": 6, "profile_path": "/nO3ZLjJ6ZUOgOTX2eB1UOa4tket.jpg", "order": 5}, {"name": "Katrina Bowden", "character": "Ms. Tasty", "id": 74618, "credit_id": "52fe45769251416c750574dd", "cast_id": 7, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 6}, {"name": "Mark L. Young", "character": "Randy", "id": 81197, "credit_id": "52fe45769251416c750574ed", "cast_id": 11, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 7}, {"name": "Charlie McDermott", "character": "Andy", "id": 64135, "credit_id": "52fe45769251416c750574f1", "cast_id": 12, "profile_path": "/r2v4vggSfSQOyUZujyacGI0Kwk0.jpg", "order": 8}], "directors": [{"name": "Sean Anders", "department": "Directing", "job": "Director", "credit_id": "52fe45769251416c750574e3", "profile_path": "/9PsLZSfLinkQJMFzxLp0pKMWkt5.jpg", "id": 74619}], "vote_average": 6.2, "runtime": 109}, "152792": {"poster_path": "/e47ijbXIk9GdIH0w88YWIYo8EuT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The savage murders of three young children sparks a controversial trial of three teenagers accused of killing the kids as part of a satanic ritual.", "video": false, "id": 152792, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Devil's Knot", "tagline": "They say the crimes were satanic. The truth may be scarier.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0804463", "adult": false, "backdrop_path": "/mWBZ2mTm1CQ3xvY6k34wxprOgJB.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}], "release_date": "2013-05-09", "popularity": 0.800265780718776, "original_title": "Devil's Knot", "budget": 15000000, "cast": [{"name": "Reese Witherspoon", "character": "Pam Hobbs", "id": 368, "credit_id": "52fe4b2c9251416c910d24d5", "cast_id": 10, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Colin Firth", "character": "Ron Lax", "id": 5472, "credit_id": "52fe4b2c9251416c910d24e1", "cast_id": 13, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Mireille Enos", "character": "Vicki Hutcherson", "id": 175826, "credit_id": "52fe4b2c9251416c910d24d1", "cast_id": 9, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 2}, {"name": "Stephen Moyer", "character": "John Fogelman", "id": 32203, "credit_id": "52fe4b2c9251416c910d24d9", "cast_id": 11, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 3}, {"name": "Kevin Durand", "character": "John Mark Byers", "id": 79072, "credit_id": "52fe4b2c9251416c910d24dd", "cast_id": 12, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Collette Wolfe", "character": "Glori Shettles", "id": 86624, "credit_id": "52fe4b2c9251416c910d24e5", "cast_id": 14, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 5}, {"name": "Elias Koteas", "character": "Jerry Driver", "id": 13550, "credit_id": "52fe4b2c9251416c910d24e9", "cast_id": 15, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Judge David Burnett", "id": 21089, "credit_id": "52fe4b2c9251416c910d24ed", "cast_id": 16, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Amy Ryan", "character": "Margaret Lax", "id": 39388, "credit_id": "52fe4b2c9251416c910d24f1", "cast_id": 17, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 8}, {"name": "Alessandro Nivola", "character": "Terry Hobbs", "id": 4941, "credit_id": "52fe4b2c9251416c910d24f5", "cast_id": 18, "profile_path": "/lLlaotVNM6dhjXj7GWVLSedugct.jpg", "order": 9}, {"name": "Martin Henderson", "character": "Brent Davis", "id": 26291, "credit_id": "52fe4b2c9251416c910d24f9", "cast_id": 19, "profile_path": "/tWuEwdM7TnM9KenYbRKLSFbo3zx.jpg", "order": 10}, {"name": "Dane DeHaan", "character": "Chris Morgan", "id": 122889, "credit_id": "53691cc20e0a2647c400871d", "cast_id": 21, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 11}], "directors": [{"name": "Atom Egoyan", "department": "Directing", "job": "Director", "credit_id": "52fe4b2c9251416c910d24a3", "profile_path": "/qG15OKx3VaYicQcDnd88XFlIxl3.jpg", "id": 56205}], "vote_average": 5.9, "runtime": 114}, "2255": {"poster_path": "/4vFJileWrCGaBeobCmF0tXpQCUb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12021272, "overview": "Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.", "video": false, "id": 2255, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Chasing Amy", "tagline": "It's not who you love. It's how.", "vote_count": 83, "homepage": "http://www.viewaskew.com/chasingamy/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wH2coU0PquYClgxGJKpKpyvTS08.jpg", "id": 182813, "name": "The Quick Stop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118842", "adult": false, "backdrop_path": "/5VnEfd60Rie9A8HrgZMVzyibdaP.jpg", "production_companies": [{"name": "View Askew Productions", "id": 16934}, {"name": "Miramax Films", "id": 14}], "release_date": "1997-04-04", "popularity": 0.754249526332048, "original_title": "Chasing Amy", "budget": 250000, "cast": [{"name": "Ben Affleck", "character": "Holden McNeil", "id": 880, "credit_id": "52fe4346c3a36847f8047bd1", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Joey Lauren Adams", "character": "Alyssa Jones", "id": 16484, "credit_id": "52fe4346c3a36847f8047bd9", "cast_id": 3, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 1}, {"name": "Jason Lee", "character": "Banky Edwards", "id": 11662, "credit_id": "52fe4346c3a36847f8047bd5", "cast_id": 2, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 2}, {"name": "Dwight Ewell", "character": "Hooper LaMont", "id": 20283, "credit_id": "52fe4346c3a36847f8047be1", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Kevin Smith", "character": "Silent Bob", "id": 19303, "credit_id": "52fe4346c3a36847f8047be5", "cast_id": 6, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 4}, {"name": "Scott Mosier", "character": "Collector", "id": 20503, "credit_id": "52fe4346c3a36847f8047bed", "cast_id": 8, "profile_path": "/9QIQyjKlRGXBHEXFSRFGIbv5Ig4.jpg", "order": 5}, {"name": "Ethan Suplee", "character": "Fan", "id": 824, "credit_id": "52fe4346c3a36847f8047be9", "cast_id": 7, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 6}, {"name": "Casey Affleck", "character": "Little Kid", "id": 1893, "credit_id": "52fe4346c3a36847f8047bdd", "cast_id": 4, "profile_path": "/kPNMpiZHsAzeQar4DiNsrekwHBU.jpg", "order": 7}, {"name": "Jason Mewes", "character": "Jay", "id": 19302, "credit_id": "52fe4346c3a36847f8047c27", "cast_id": 18, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 8}, {"name": "Brian O'Halloran", "character": "Exec. #1", "id": 23629, "credit_id": "52fe4346c3a36847f8047c2b", "cast_id": 19, "profile_path": "/eJsLxovTdcm6QK9PDB2pCe5FMqK.jpg", "order": 9}, {"name": "Matt Damon", "character": "Exec. #2", "id": 1892, "credit_id": "52fe4346c3a36847f8047c2f", "cast_id": 20, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 10}, {"name": "Illeana Douglas", "character": "", "id": 7796, "credit_id": "5456039ac3a368147c006b37", "cast_id": 21, "profile_path": "/e9jWY46k7q4ABvBw9FgVTwpqYw2.jpg", "order": 11}, {"name": "Carmen Llywelyn", "character": "Kim", "id": 143963, "credit_id": "54c56abc9251412d9c001e0d", "cast_id": 22, "profile_path": null, "order": 12}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4346c3a36847f8047c0b", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 6.6, "runtime": 113}, "193756": {"poster_path": "/c7Sqof18FgkoNcA0r5BFUcPLER1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149300000, "overview": "Based on the failed June 28, 2005 mission \"Operation Red Wing.\" Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shah. Only one member of the team survived.", "video": false, "id": 193756, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Lone Survivor", "tagline": "Based on True Acts of Courage", "vote_count": 562, "homepage": "http://www.lonesurvivorfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1091191", "adult": false, "backdrop_path": "/pPFbXcONHBntJIAsEn8TaIPPCpZ.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Closest to the Hole Productions", "id": 8537}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment Corporation", "id": 11030}, {"name": "Film 44", "id": 20153}, {"name": "Foresight Unlimited", "id": 21897}, {"name": "Herrick Entertainment", "id": 6666}, {"name": "Hollywood Studios International", "id": 22610}, {"name": "Leverage Management", "id": 8536}, {"name": "Spikings Entertainment", "id": 22611}, {"name": "Weed Road Pictures", "id": 433}], "release_date": "2013-12-24", "popularity": 1.47030402666216, "original_title": "Lone Survivor", "budget": 50000000, "cast": [{"name": "Mark Wahlberg", "character": "Marcus Luttrell", "id": 13240, "credit_id": "52fe4cd89251416c91101fc3", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Taylor Kitsch", "character": "Mike Murphy", "id": 60900, "credit_id": "52fe4cd89251416c91101fc7", "cast_id": 4, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 1}, {"name": "Emile Hirsch", "character": "Danny Dietz", "id": 46593, "credit_id": "52fe4cd89251416c91101fcf", "cast_id": 6, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 2}, {"name": "Ben Foster", "character": "Matt Axelson", "id": 11107, "credit_id": "52fe4cd89251416c91101fd3", "cast_id": 7, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 3}, {"name": "Yousuf Azami", "character": "Shah", "id": 123102, "credit_id": "52fe4cd89251416c91101ff7", "cast_id": 16, "profile_path": "/lEB2ryIlwygt5msLv4ICxPKBYxX.jpg", "order": 4}, {"name": "Ali Suliman", "character": "Gulab", "id": 762, "credit_id": "52fe4cd89251416c91101fdf", "cast_id": 11, "profile_path": "/orQk2ePFL6er4TrdhD0jZ9my3E3.jpg", "order": 5}, {"name": "Eric Bana", "character": "Lt. Cmdr. Erik S. Kristensen", "id": 8783, "credit_id": "52fe4cd89251416c91101fcb", "cast_id": 5, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 6}, {"name": "Alexander Ludwig", "character": "Shane Patton", "id": 23498, "credit_id": "52fe4cd89251416c91101fd7", "cast_id": 9, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 7}, {"name": "Rich Ting", "character": "James Suh", "id": 1278776, "credit_id": "52fe4cd89251416c91101fe3", "cast_id": 12, "profile_path": "/2yerUuH9NAEOr02vSJk19C8gTeb.jpg", "order": 8}, {"name": "Dan Bilzerian", "character": "Healy", "id": 1278777, "credit_id": "52fe4cd89251416c91101fe7", "cast_id": 13, "profile_path": "/xNvGQiUfsJh6vXGJiyreQ8aHhMO.jpg", "order": 9}, {"name": "Jerry Ferrara", "character": "Hasslert", "id": 98953, "credit_id": "52fe4cd89251416c91101ffb", "cast_id": 17, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 10}, {"name": "Rick Vargas", "character": "Crew Chief", "id": 1283040, "credit_id": "52fe4cd89251416c91101fff", "cast_id": 18, "profile_path": "/Pan48d8UfvPB3LDr9gIfJ1fite.jpg", "order": 11}, {"name": "Scott Elrod", "character": "Peter Musselman", "id": 108532, "credit_id": "52fe4cd89251416c91101fdb", "cast_id": 10, "profile_path": "/b7nV383fAzIcygOAsuvcDukJlK1.jpg", "order": 12}, {"name": "Gregory Rockwood", "character": "Chinook Pilot No. 1", "id": 1283041, "credit_id": "52fe4cd89251416c91102003", "cast_id": 19, "profile_path": "/66rzcJYED4S5lzOYKRnTJnIWUV7.jpg", "order": 13}, {"name": "Ryan Kay", "character": "Chinook Pilot No. 2", "id": 1283042, "credit_id": "52fe4cd89251416c91102007", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Patrick Griffin", "character": "Chinook Co-Pilot", "id": 1042362, "credit_id": "52fe4cd89251416c9110200b", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Josh Berry", "character": "Communication SEAL", "id": 108037, "credit_id": "52fe4cd89251416c9110200f", "cast_id": 22, "profile_path": "/urXSysxyuVeE4OCKGInIhT9IqyR.jpg", "order": 16}, {"name": "Eric Steinig", "character": "SEAL Lieutenant", "id": 1283043, "credit_id": "52fe4cd89251416c91102013", "cast_id": 23, "profile_path": "/3efAfmvUn1ea5f6qGUczkuvfa4w.jpg", "order": 17}, {"name": "David Shepard", "character": "CJSOTF Commander", "id": 1283044, "credit_id": "52fe4cd89251416c91102017", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "Justin Tade", "character": "CJSOTF Marine", "id": 1283045, "credit_id": "52fe4cd89251416c9110201b", "cast_id": 25, "profile_path": "/8WyRV4ogNwoG64pHsEGdGiacYfT.jpg", "order": 19}, {"name": "Sterling Jones", "character": "Bagram Comms Guy", "id": 168834, "credit_id": "52fe4cd89251416c9110201f", "cast_id": 26, "profile_path": "/aZ1Y9MITLHgeK23ne3FnoVlhaCV.jpg", "order": 20}, {"name": "Jason Riggins", "character": "50 Cal Gunner", "id": 1283046, "credit_id": "52fe4cd89251416c91102023", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Matthew Page", "character": "Army Intel Guy", "id": 1094319, "credit_id": "52fe4cd89251416c91102027", "cast_id": 28, "profile_path": "/nTAAP1s4Y0e6bW1Vyq9MqzCG95y.jpg", "order": 22}, {"name": "Johnny Bautista", "character": "Lt. Edwards", "id": 1283047, "credit_id": "52fe4cd89251416c9110202b", "cast_id": 29, "profile_path": "/mCMDNLlDNlgvuHku7Wy1P49YS2q.jpg", "order": 23}, {"name": "Sammy Sheik", "character": "Taraq", "id": 1230897, "credit_id": "52fe4cd89251416c9110202f", "cast_id": 30, "profile_path": "/6v7kafnGC2c3lJyW6IRMsXrXjRB.jpg", "order": 24}, {"name": "Nicholas Patel", "character": "Goat Boy", "id": 1283048, "credit_id": "52fe4cd89251416c91102033", "cast_id": 31, "profile_path": "/ehWCGx9g6T2JxMRI5CbeHapQWD6.jpg", "order": 25}, {"name": "Daniel Arroyo", "character": "Teenage Goat Boy", "id": 944151, "credit_id": "52fe4cd89251416c91102037", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Zarin Rahimi", "character": "Goat Man", "id": 1283049, "credit_id": "52fe4cd89251416c9110203b", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "Rohan Chand", "character": "Gulab's Young Son", "id": 935701, "credit_id": "52fe4cd89251416c9110203f", "cast_id": 34, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 28}, {"name": "Anthony McKenzie", "character": "TOC Sr. Air Officer", "id": 1283050, "credit_id": "52fe4cd89251416c91102043", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Brian Call", "character": "TOC SEAL", "id": 1283051, "credit_id": "52fe4cd89251416c91102047", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Ishmael Antonio", "character": "Doctor", "id": 1283052, "credit_id": "52fe4cd89251416c9110204b", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Samuel Cloud", "character": "JAG", "id": 1283053, "credit_id": "52fe4cd89251416c9110204f", "cast_id": 38, "profile_path": "/qoBpIOrR1pLSPM5I5MJEsqBhQn2.jpg", "order": 32}, {"name": "Perparim 'Peter' Bici", "character": "Communication SEAL Perry", "id": 1283054, "credit_id": "52fe4cd89251416c91102053", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Henry Penzi", "character": "Villager", "id": 944326, "credit_id": "52fe4cd89251416c91102057", "cast_id": 40, "profile_path": "/myrL9nt3MeONI6Ssb3bh8p7GRev.jpg", "order": 34}, {"name": "Robert Loerke", "character": "Captain Jacoby", "id": 1283055, "credit_id": "52fe4cd89251416c9110205b", "cast_id": 41, "profile_path": null, "order": 35}, {"name": "Kurt Carlson", "character": "Captain Lovas", "id": 1283056, "credit_id": "52fe4cd89251416c9110205f", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "Daniel Fulcoly", "character": "Lt. Andrews", "id": 1283057, "credit_id": "52fe4cd89251416c91102063", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Michael P. Herrmann", "character": "Wallace", "id": 1283058, "credit_id": "52fe4cd89251416c91102067", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Paul Craig", "character": "'EOD' Paul", "id": 1283059, "credit_id": "52fe4cd89251416c9110206b", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Zabiullah Mirzai", "character": "Zabi", "id": 1283060, "credit_id": "52fe4cd89251416c9110206f", "cast_id": 46, "profile_path": "/8PIge1GnMukN6zDd0JXqMkkfhwX.jpg", "order": 40}, {"name": "John Hocker", "character": "Hocker", "id": 1283061, "credit_id": "52fe4cd89251416c91102073", "cast_id": 47, "profile_path": null, "order": 41}, {"name": "Robert H. Doudell", "character": "Village Elder", "id": 1283062, "credit_id": "52fe4cd89251416c91102077", "cast_id": 48, "profile_path": null, "order": 42}, {"name": "Hillel Michael Shamam", "character": "Angry Villager", "id": 1283063, "credit_id": "52fe4cd89251416c9110207b", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Edmund Blanchet", "character": "PJ No. 1", "id": 1283064, "credit_id": "52fe4cd89251416c9110207f", "cast_id": 50, "profile_path": null, "order": 44}, {"name": "Jim Cusic", "character": "PJ No. 2", "id": 1283065, "credit_id": "52fe4cd89251416c91102083", "cast_id": 51, "profile_path": null, "order": 45}, {"name": "Corey Large", "character": "SEAL Captain Kenney (uncredited)", "id": 77109, "credit_id": "52fe4cd89251416c91102087", "cast_id": 52, "profile_path": "/3hSM22jb76VYviAmPSi30EelDbh.jpg", "order": 46}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe4cd79251416c91101fb9", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 7.6, "runtime": 121}, "29917": {"poster_path": "/2MLOMNKejfX3L1PVB2ZdxYOmf3A.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "The final candidates for a highly desirable corporate job are locked together in an exam room and given a test so simple and confusing that tension begins to unravel.", "video": false, "id": 29917, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Exam", "tagline": "How far would you go to win the ultimate job?", "vote_count": 90, "homepage": "http://www.examthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1258197", "adult": false, "backdrop_path": "/AtLHKulhe6VTsnU3pe4i0As5zOb.jpg", "production_companies": [{"name": "Bedlam Productions", "id": 5005}, {"name": "Hazeldine Films", "id": 5004}], "release_date": "2009-06-19", "popularity": 0.347237067727493, "original_title": "Exam", "budget": 0, "cast": [{"name": "Luke Mably", "character": "White", "id": 68307, "credit_id": "52fe4603c3a368484e07bf39", "cast_id": 1, "profile_path": "/cBs0W1IB8qhn89xkubT6u1nJx8K.jpg", "order": 0}, {"name": "Adar Beck", "character": "Dark", "id": 105235, "credit_id": "52fe4603c3a368484e07bf3d", "cast_id": 2, "profile_path": "/rGUVixlx2rUz1xbmElZ4nNEFKuR.jpg", "order": 1}, {"name": "Chris Carey", "character": "Guard", "id": 105236, "credit_id": "52fe4603c3a368484e07bf41", "cast_id": 3, "profile_path": "/iUAMeVkIxCaopuTq0KjepJ1BesR.jpg", "order": 2}, {"name": "Gemma Chan", "character": "Chinese", "id": 97576, "credit_id": "52fe4603c3a368484e07bf45", "cast_id": 4, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 3}, {"name": "Nathalie Cox", "character": "Blonde", "id": 17337, "credit_id": "52fe4603c3a368484e07bf49", "cast_id": 5, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 4}, {"name": "John Lloyd Fillingham", "character": "Deaf", "id": 105237, "credit_id": "52fe4603c3a368484e07bf4d", "cast_id": 6, "profile_path": "/oV1Dmx2uKcFweYeGFuEUCSx8VHr.jpg", "order": 5}, {"name": "Chukwudi Iwuji", "character": "Black", "id": 105238, "credit_id": "52fe4603c3a368484e07bf51", "cast_id": 7, "profile_path": "/ykTTYOYvSDHnx5ClCwPjV50grYJ.jpg", "order": 6}, {"name": "Pollyanna McIntosh", "character": "Brunette", "id": 92730, "credit_id": "52fe4603c3a368484e07bf55", "cast_id": 8, "profile_path": "/u1T42rrc26kGDfwmE6jCVtiH04v.jpg", "order": 7}, {"name": "Jimi Mistry", "character": "Brown", "id": 16756, "credit_id": "52fe4603c3a368484e07bf59", "cast_id": 9, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 8}, {"name": "Colin Salmon", "character": "Invigilator", "id": 5414, "credit_id": "52fe4603c3a368484e07bf5d", "cast_id": 10, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 9}], "directors": [{"name": "Stuart Hazeldine", "department": "Directing", "job": "Director", "credit_id": "52fe4603c3a368484e07bf63", "profile_path": "/7ILjmwLXlv9q8WmtQzGE3nqcwXZ.jpg", "id": 105239}], "vote_average": 6.4, "runtime": 101}, "185567": {"poster_path": "/hRuFJHZ9BMaljX2Ii4dKwdJYttB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "As a child, Ali Neuman narrowly escaped being murdered by Inkhata, a militant political party at war with Nelson Mandela's African National Congress. Only he and his mother survived the carnage of those years. But as with many survivors, the psychological scars remain.", "video": false, "id": 185567, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Zulu", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2249221", "adult": false, "backdrop_path": "/a8sZUH8cxH2jFQX8oPpXH4YuIIa.jpg", "production_companies": [{"name": "M6 Films", "id": 1115}, {"name": "Eskwad", "id": 616}, {"name": "Path\u00e9 Films", "id": 4959}, {"name": "Lobster Tree", "id": 34044}], "release_date": "2013-12-04", "popularity": 0.656119714340902, "original_title": "Zulu", "budget": 0, "cast": [{"name": "Orlando Bloom", "character": "Brian Epkeen", "id": 114, "credit_id": "52fe4ce49251416c75128e9f", "cast_id": 2, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Ali Sokhela", "id": 2178, "credit_id": "52fe4ce49251416c75128ea3", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Tanya van Graan", "character": "Tara", "id": 1139816, "credit_id": "52fe4ce49251416c75128eab", "cast_id": 6, "profile_path": "/zirNh4FdTo4U3EpdKCjSZZLbw8v.jpg", "order": 2}, {"name": "Natasha Loring", "character": "Marjorie", "id": 1070853, "credit_id": "52fe4ce49251416c75128eaf", "cast_id": 7, "profile_path": "/ffBTZ3sQL0cK3Slbxt0PZUpwBOj.jpg", "order": 3}, {"name": "Sven Ruygrok", "character": "David Epkeen", "id": 1003249, "credit_id": "52fe4ce49251416c75128eb3", "cast_id": 8, "profile_path": "/e077YIdw0J2kv5tFqaBjyd5pBzC.jpg", "order": 4}, {"name": "Conrad Kemp", "character": "Dan Fletcher", "id": 228372, "credit_id": "52fe4ce49251416c75128ea7", "cast_id": 4, "profile_path": "/abaE6en6JJWaoRPD3d9AbL9YP5J.jpg", "order": 5}, {"name": "Roxanne Prentice", "character": "Judith Botha", "id": 1168610, "credit_id": "52fe4ce49251416c75128eb7", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Adrian Galley", "character": "Nils Botha", "id": 981282, "credit_id": "52fe4ce49251416c75128ebb", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Tinarie Van Wyk-Loots", "character": "Claire Fletcher", "id": 113228, "credit_id": "52fe4ce49251416c75128ebf", "cast_id": 11, "profile_path": "/kfbaCF3fqkWwHukElS1FrMOTB6v.jpg", "order": 8}, {"name": "Kelsey Egan", "character": "Nicole Weiss", "id": 1168611, "credit_id": "52fe4ce49251416c75128ec3", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Inge Beckmann", "character": "Ruby", "id": 1353810, "credit_id": "53f0b983c3a3685af8002a70", "cast_id": 16, "profile_path": "/viWwSkpbXJDU5Q9F8BVVTGi2jj7.jpg", "order": 10}], "directors": [{"name": "J\u00e9r\u00f4me Salle", "department": "Directing", "job": "Director", "credit_id": "52fe4ce49251416c75128e9b", "profile_path": "/f2ceHe91bv2Gyv5QhPDZ1BnhCHs.jpg", "id": 69987}], "vote_average": 6.9, "runtime": 110}, "136418": {"poster_path": "/tVOPEBdjoIqaRDE5INctTcoI0Va.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 8352885, "overview": "Homeless and on the run from a military court martial, a damaged ex-special forces soldier navigating London's criminal underworld seizes an opportunity to assume another man's identity, transforming into an avenging angel in the process.", "video": false, "id": 136418, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Hummingbird", "tagline": "All roads don't lead to salvation.", "vote_count": 269, "homepage": "http://www.hummingbirdmovie.co.uk", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1893256", "adult": false, "backdrop_path": "/1ZRCJL17jnAfT0EnKIeP9ncOeN6.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2013-06-27", "popularity": 0.655466179537224, "original_title": "Hummingbird", "budget": 20000000, "cast": [{"name": "Jason Statham", "character": "Joey Jones", "id": 976, "credit_id": "52fe4c16c3a368484e1a63ed", "cast_id": 5, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Agata Buzek", "character": "Christina", "id": 37982, "credit_id": "52fe4c16c3a368484e1a6415", "cast_id": 17, "profile_path": "/qwYm1VhJ5lDhH811zj12EUjAXXf.jpg", "order": 1}, {"name": "Vicky McClure", "character": "Dawn", "id": 148139, "credit_id": "52fe4c16c3a368484e1a63f9", "cast_id": 8, "profile_path": "/e5eucukisVx2CTxZbAMIQraIFcA.jpg", "order": 2}, {"name": "Lee Asquith-Coe", "character": "Silver Mercedes Driver", "id": 531772, "credit_id": "52fe4c16c3a368484e1a63f1", "cast_id": 6, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 3}, {"name": "Benedict Wong", "character": "Mr. Choy", "id": 30082, "credit_id": "52fe4c16c3a368484e1a63f5", "cast_id": 7, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 4}, {"name": "Siobhan Hewlett", "character": "Tracey", "id": 19997, "credit_id": "52fe4c16c3a368484e1a63fd", "cast_id": 11, "profile_path": "/iOrfWRWcmi7wq1dSo9PjnnlrKzW.jpg", "order": 5}, {"name": "Lee Nicholas Harris", "character": "Meat Market Manager", "id": 578690, "credit_id": "52fe4c16c3a368484e1a6409", "cast_id": 14, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 7}, {"name": "Andrew Ellis", "character": "Football Supporter 1", "id": 225611, "credit_id": "52fe4c16c3a368484e1a6401", "cast_id": 12, "profile_path": "/kuYkAcqfCy0Lp5Q7fPUEFPIgqPv.jpg", "order": 8}, {"name": "Ian Pirie", "character": "Pimp", "id": 95716, "credit_id": "52fe4c16c3a368484e1a640d", "cast_id": 15, "profile_path": "/wBQsI3PN3r0cDri8gt3z12kQgoY.jpg", "order": 9}, {"name": "Senem Temiz", "character": "Banker's Wife", "id": 1180974, "credit_id": "52fe4c16c3a368484e1a6411", "cast_id": 16, "profile_path": "/38WmT4xlaV6QWLozjkCP3jPWqDV.jpg", "order": 10}, {"name": "Paul Blackwell", "character": "Factory Worker", "id": 37293, "credit_id": "52fe4c16c3a368484e1a6419", "cast_id": 18, "profile_path": "/trKFaMohgm2kAACO4lDAg47kawN.jpg", "order": 11}, {"name": "Ger Ryan", "character": "Mother Superior", "id": 70685, "credit_id": "52fe4c16c3a368484e1a641d", "cast_id": 19, "profile_path": "/s28QyTEZsflL7W7BvemRseMJqVt.jpg", "order": 12}, {"name": "David Bradley", "character": "Billy", "id": 1357431, "credit_id": "53fe12c9c3a3684c800012fc", "cast_id": 27, "profile_path": null, "order": 13}], "directors": [{"name": "Steven Knight", "department": "Directing", "job": "Director", "credit_id": "52fe4c16c3a368484e1a63d7", "profile_path": "/6QiGHyAWJv5wSyWNUxZuMlBCXgy.jpg", "id": 23227}], "vote_average": 5.8, "runtime": 100}, "119675": {"poster_path": "/wXKnEJ06avNF1dp0DH9hqiOggTN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15600000, "overview": "Based on the autobiographical novel, the tempestuous 6-year relationship between Liberace and his (much younger) lover, Scott Thorson, is recounted.", "video": false, "id": 119675, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Behind the Candelabra", "tagline": "Too much of a good thing is wonderful", "vote_count": 108, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1291580", "adult": false, "backdrop_path": "/4k4caZuJUSGQD6BYk3Vuyb3gB6W.jpg", "production_companies": [{"name": "HBO Films", "id": 7429}], "release_date": "2013-05-26", "popularity": 1.09329802250981, "original_title": "Behind the Candelabra", "budget": 23000000, "cast": [{"name": "Michael Douglas", "character": "Liberace", "id": 3392, "credit_id": "52fe4c08c3a36847f821e643", "cast_id": 1, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Matt Damon", "character": "Scott Thorson", "id": 1892, "credit_id": "52fe4c08c3a36847f821e647", "cast_id": 2, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Rob Lowe", "character": "Dr. Jack Startz", "id": 2879, "credit_id": "52fe4c08c3a36847f821e657", "cast_id": 5, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 2}, {"name": "Dan Aykroyd", "character": "Seymour Heller", "id": 707, "credit_id": "52fe4c08c3a36847f821e65b", "cast_id": 6, "profile_path": "/h2PT9yZYv5ml5hL9jvCpWBTWgU.jpg", "order": 3}, {"name": "Scott Bakula", "character": "Bob Black", "id": 2154, "credit_id": "52fe4c08c3a36847f821e65f", "cast_id": 7, "profile_path": "/o0lOdRjvFe0DEjquR1miMnjUUzt.jpg", "order": 4}, {"name": "Debbie Reynolds", "character": "Frances", "id": 8857, "credit_id": "52fe4c08c3a36847f821e663", "cast_id": 8, "profile_path": "/mH7nCnfOuyXhllNanlJu6L99lG9.jpg", "order": 5}, {"name": "Cheyenne Jackson", "character": "Billy Leatherwood", "id": 212828, "credit_id": "52fe4c08c3a36847f821e667", "cast_id": 9, "profile_path": "/BmxkPSoapQ6ZZcEMSUqN2apewZ.jpg", "order": 6}, {"name": "Paul Reiser", "character": "Mr. Felder", "id": 781, "credit_id": "52fe4c08c3a36847f821e66b", "cast_id": 10, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 7}, {"name": "Boyd Holbrook", "character": "", "id": 467645, "credit_id": "52fe4c08c3a36847f821e66f", "cast_id": 11, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 8}, {"name": "Nicky Katt", "character": "Mr. Y", "id": 18070, "credit_id": "52fe4c08c3a36847f821e673", "cast_id": 12, "profile_path": "/dbAeUQXzyf2HDFYtifWkHfE3SNW.jpg", "order": 9}, {"name": "Eddie Jemison", "character": "Second Assistant Director", "id": 1898, "credit_id": "52fe4c08c3a36847f821e677", "cast_id": 13, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 10}, {"name": "Mike O'Malley", "character": "", "id": 87192, "credit_id": "52fe4c08c3a36847f821e67b", "cast_id": 14, "profile_path": "/9VwiKnQySJN7buvCg53v4NB5Tj7.jpg", "order": 11}, {"name": "Josh Meyers", "character": "", "id": 124471, "credit_id": "52fe4c08c3a36847f821e67f", "cast_id": 15, "profile_path": "/5bqoQVKHCtDz9MYZ3pcjy5jD28Y.jpg", "order": 12}, {"name": "David Koechner", "character": "", "id": 28638, "credit_id": "52fe4c08c3a36847f821e683", "cast_id": 16, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 13}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe4c08c3a36847f821e64d", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.5, "runtime": 118}, "22949": {"poster_path": "/38CSbFiJMlVJW8sQxDKZYajCSOI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92219310, "overview": "Charlie and Dan have been best friends and business partners for thirty years; their Manhattan public relations firm is on the verge of a huge business deal with a Japanese company. With two weeks to sew up the contract, Dan gets a surprise: a woman he married on a drunken impulse nearly nine years before (annulled the next day) shows up to tell him he's the father of her twins, now seven, and she'll be in jail for 14 days for a political protest. Dan volunteers to keep the tykes, although he's up tight and clueless. With Charlie's help is there any way they can be dad and uncle, meet the kids' expectations, and still land the account?", "video": false, "id": 22949, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Old Dogs", "tagline": "Life is Not Child-Proof.", "vote_count": 59, "homepage": "http://disney.go.com/olddogs/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}], "imdb_id": "tt0976238", "adult": false, "backdrop_path": "/umf3xzegzsqT9lXVdYKxG8OR1No.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Tapestry Films", "id": 870}], "release_date": "2009-11-24", "popularity": 0.343182284050607, "original_title": "Old Dogs", "budget": 35000000, "cast": [{"name": "Robin Williams", "character": "Dan", "id": 2157, "credit_id": "52fe4457c3a368484e01d873", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "John Travolta", "character": "Charlie", "id": 8891, "credit_id": "52fe4457c3a368484e01d877", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Seth Green", "character": "Ralph White", "id": 13922, "credit_id": "52fe4457c3a368484e01d87b", "cast_id": 3, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 2}, {"name": "Justin Long", "character": "Adam Devlin", "id": 15033, "credit_id": "52fe4457c3a368484e01d87f", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 3}, {"name": "Matt Dillon", "character": "Yancy Devlin", "id": 2876, "credit_id": "52fe4457c3a368484e01d883", "cast_id": 5, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 4}, {"name": "Kelly Preston", "character": "Vicki", "id": 11164, "credit_id": "52fe4457c3a368484e01d887", "cast_id": 6, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 5}, {"name": "Bernie Mac", "character": "Jimmy Lunchbox", "id": 1897, "credit_id": "52fe4457c3a368484e01d88b", "cast_id": 7, "profile_path": "/3qIk1hVV82kcZSEffbuUHpMQBCq.jpg", "order": 6}, {"name": "Dax Shepard", "character": "Trent Rice", "id": 51298, "credit_id": "52fe4457c3a368484e01d88f", "cast_id": 8, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 7}, {"name": "Rita Wilson", "character": "Gloria Lawrence", "id": 12931, "credit_id": "52fe4457c3a368484e01d893", "cast_id": 9, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 8}, {"name": "Laura Allen", "character": "Kelly", "id": 79792, "credit_id": "52fe4457c3a368484e01d897", "cast_id": 10, "profile_path": "/afD3Hl84bxdDDmO3OMQNFfKEFIW.jpg", "order": 9}, {"name": "DeRay Davis", "character": "Julio", "id": 11827, "credit_id": "52fe4457c3a368484e01d89b", "cast_id": 11, "profile_path": "/n8alI78oMlcJ3gEhF2Ws4MOUCtc.jpg", "order": 10}, {"name": "Lori Loughlin", "character": "Amanda", "id": 92509, "credit_id": "54c02aa6c3a368389c009e0b", "cast_id": 15, "profile_path": "/jhnD0llXY2S0zwwQ0EPt7h3VxFY.jpg", "order": 11}, {"name": "Ann-Margret", "character": "Martha", "id": 13567, "credit_id": "54c02ac9c3a3687c40009d91", "cast_id": 16, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 12}, {"name": "Amy Sedaris", "character": "Condo Woman", "id": 12110, "credit_id": "54c02ae7c3a368145e00e59f", "cast_id": 17, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 13}, {"name": "Sab Shimono", "character": "Yoshiro Nishamura", "id": 85500, "credit_id": "54c02afe925141315a002300", "cast_id": 18, "profile_path": "/lI2eHIHABEM3s2EaHpeGgzZFd2J.jpg", "order": 14}, {"name": "Luis Guzm\u00e1n", "character": "Nick - Child Proofer #2 (uncredited)", "id": 40481, "credit_id": "54c02b5192514148b000d4e2", "cast_id": 19, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 15}], "directors": [{"name": "Walt Becker", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a368484e01d8a1", "profile_path": "/ioshEghgcfUsaDN2rYfEJDPBUqZ.jpg", "id": 68573}], "vote_average": 5.4, "runtime": 88}, "38117": {"poster_path": "/zQXN6pry2ZlJTGKwRH9eSlWAX6t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38028230, "overview": "A curse transforms a handsome and arrogant young man into everything he detests in this contemporary retelling of Beauty and the Beast. Wealthy Kyle Kingson has everything a teenager could want in life, but he still gets off on humiliating the weaker and less attractive. When Kyle invites his misfit classmate Kendra to an environmental rally at their school, she questions his motivations but reluctantly accepts. Later, Kyle blows Kendra off, prompting the spurned goth girl to cast a dark spell on the swaggering egotist.", "video": false, "id": 38117, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Beastly", "tagline": "Love is never ugly.", "vote_count": 175, "homepage": "http://www.beastlythemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1152398", "adult": false, "backdrop_path": "/afjvvcJEM7GMnsx3uo6tkfca6lc.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}], "release_date": "2011-01-21", "popularity": 0.962881659002602, "original_title": "Beastly", "budget": 17000000, "cast": [{"name": "Alex Pettyfer", "character": "Kyle", "id": 61363, "credit_id": "52fe46969251416c910591a3", "cast_id": 4, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 0}, {"name": "Dakota Johnson", "character": "Sloan", "id": 118545, "credit_id": "52fe46969251416c910591a7", "cast_id": 6, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 1}, {"name": "Erik Knudsen", "character": "Trey", "id": 2681, "credit_id": "52fe46969251416c910591ab", "cast_id": 7, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 2}, {"name": "Mary-Kate Olsen", "character": "Kendra", "id": 67849, "credit_id": "52fe46969251416c910591af", "cast_id": 8, "profile_path": "/fxTJRxHrNyZVrWZWQZOTXJnGwDY.jpg", "order": 3}, {"name": "Vanessa Hudgens", "character": "Lindy", "id": 67599, "credit_id": "52fe46969251416c910591b3", "cast_id": 9, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 4}, {"name": "Karl Graboshas", "character": "Male Teacher", "id": 119706, "credit_id": "52fe46969251416c910591b7", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Lisa Gay Hamilton", "character": "Zola", "id": 64908, "credit_id": "52fe46969251416c910591bb", "cast_id": 11, "profile_path": "/a9DRGto0Dm63mbqq56dhw4aZBzM.jpg", "order": 6}, {"name": "Jonathan Dubsky", "character": "Student at Green Party", "id": 119707, "credit_id": "52fe46969251416c910591bf", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "David Francis", "character": "Dr. Davis", "id": 119708, "credit_id": "52fe46969251416c910591c3", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Neil Patrick Harris", "character": "Will", "id": 41686, "credit_id": "52fe46969251416c910591c7", "cast_id": 14, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 9}, {"name": "Rhiannon Moller-Trotter", "character": "Halloween Partygoer", "id": 119709, "credit_id": "52fe46969251416c910591cb", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Gio Perez", "character": "Victor", "id": 114144, "credit_id": "52fe46969251416c910591cf", "cast_id": 16, "profile_path": "/xE18CS5KtkMaQEyPzcEX800T2Xw.jpg", "order": 11}, {"name": "Miguel Mendoza", "character": "Victor's Brother", "id": 119710, "credit_id": "52fe46969251416c910591d3", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Roc LaFortune", "character": "Lindy's Father", "id": 96596, "credit_id": "52fe46969251416c910591d7", "cast_id": 18, "profile_path": "/7vwjjbdLKLp1qpTjTyH0U80t2SG.jpg", "order": 13}, {"name": "Peter Krause", "character": "Rob", "id": 23119, "credit_id": "52fe46969251416c910591db", "cast_id": 19, "profile_path": "/fI0dpVKdPIcSiS7MAAo3lw6EcFD.jpg", "order": 14}], "directors": [{"name": "Daniel Barnz", "department": "Directing", "job": "Director", "credit_id": "52fe46969251416c91059193", "profile_path": "/rBlhnxatVxjdLah2nrSNhGuKVu6.jpg", "id": 84061}], "vote_average": 5.7, "runtime": 86}, "103663": {"poster_path": "/63KA9DNWQqB21cb7nzFwTpHQBFx.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 16800000, "overview": "A teacher lives a lonely life, all the while struggling over his son\u2019s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.", "video": false, "id": 103663, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hunt", "tagline": "The lie is spreading.", "vote_count": 228, "homepage": "", "belongs_to_collection": null, "original_language": "da", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2106476", "adult": false, "backdrop_path": "/AhFA76jQDkqnFu1rTNCIkwL1wMu.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}], "release_date": "2012-10-25", "popularity": 0.66378513699885, "original_title": "Jagten", "budget": 3800000, "cast": [{"name": "Mads Mikkelsen", "character": "Lucas", "id": 1019, "credit_id": "52fe4a22c3a36847f81bc00d", "cast_id": 7, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "Alexandra Rapaport", "character": "Nadja", "id": 92416, "credit_id": "52fe4a22c3a36847f81bc011", "cast_id": 8, "profile_path": "/hsvrdVk9bCo4MiLNbhd25lMB8z9.jpg", "order": 1}, {"name": "Thomas Bo Larsen", "character": "Theo", "id": 4457, "credit_id": "52fe4a22c3a36847f81bc015", "cast_id": 9, "profile_path": "/duza8j6FcbmT6J0f4mayUeTlMvS.jpg", "order": 2}, {"name": "Anne Louise Hassing", "character": "Agnes", "id": 6122, "credit_id": "52fe4a22c3a36847f81bc019", "cast_id": 10, "profile_path": "/nl3XzXVRifRNEnVl08n2S6DsN6y.jpg", "order": 3}, {"name": "Lars Ranthe", "character": "Bruun", "id": 588175, "credit_id": "52fe4a22c3a36847f81bc01d", "cast_id": 11, "profile_path": "/qMbcmZDykjm0K1spNjzv5HDoL9f.jpg", "order": 4}, {"name": "Susse Wold", "character": "Grethe", "id": 47156, "credit_id": "52fe4a22c3a36847f81bc021", "cast_id": 12, "profile_path": "/iw9rtraAUpEfTOSQSLUQCY2c0oL.jpg", "order": 5}, {"name": "Ole Dupont", "character": "Godsejer / Advokat", "id": 1034508, "credit_id": "52fe4a22c3a36847f81bc025", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Annika Wedderkopp", "character": "Klara", "id": 1112385, "credit_id": "52fe4a22c3a36847f81bc029", "cast_id": 14, "profile_path": "/3NGDD5a40tMwjYHHivYfnmZlQ1h.jpg", "order": 7}, {"name": "Lasse Fogelstr\u00f8m", "character": "Marcus", "id": 1188827, "credit_id": "52fe4a22c3a36847f81bc02d", "cast_id": 15, "profile_path": "/byABnjqyW1LT5MTgiwsFuQXCoZK.jpg", "order": 8}, {"name": "Bjarne Henriksen", "character": "", "id": 4464, "credit_id": "550c875f9251414695004078", "cast_id": 22, "profile_path": "/kG3ZlQlMDbl61gJmtpgu2P7LHfl.jpg", "order": 9}, {"name": "Sebastian Bull Sarning", "character": "", "id": 1442695, "credit_id": "550c878a92514146a0003e61", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Steen Ordell Guldbrandsen", "character": "", "id": 1442696, "credit_id": "550c8796c3a36848830042ad", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Daniel Engstrup", "character": "", "id": 1441931, "credit_id": "550c87a0c3a3681db2003a27", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Troels Thorsen", "character": "", "id": 1442697, "credit_id": "550c87aa9251413554001d4a", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "S\u00f8ren R\u00f8nholt", "character": "", "id": 1442698, "credit_id": "550c87b5c3a3684872004481", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Jytte Kvinesdal", "character": "", "id": 564610, "credit_id": "550c87c09251413554001d4e", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Josefine Gr\u00e5b\u00f8l", "character": "", "id": 1442699, "credit_id": "550c87cb9251414695004080", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Nicolai Dahl Hamilton", "character": "", "id": 1353300, "credit_id": "550c87d69251414695004084", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "\u00d8yvind Hagen-Traberg", "character": "", "id": 1348437, "credit_id": "550c87e3c3a3684877003f82", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Allan Wibor Christensen", "character": "", "id": 1442700, "credit_id": "550c87ed92514146a0003e6b", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Rikke Bergmann", "character": "", "id": 1442701, "credit_id": "550c87f5c3a3684886004285", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Rasmus Lind Rubin", "character": "", "id": 234895, "credit_id": "550c880092514146a0003e71", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Frank Rub\u00e6k", "character": "", "id": 1442702, "credit_id": "550c880cc3a368487d004391", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Nina Christrup", "character": "", "id": 1433678, "credit_id": "550c88169251414695004089", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Birgit Petersen", "character": "", "id": 1442703, "credit_id": "550c8822c3a368488600428b", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Karina Fogh Holmkj\u00e6r", "character": "", "id": 1442704, "credit_id": "550c882d9251413443001c7d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Heidi Gross", "character": "", "id": 1442705, "credit_id": "550c8836925141469c00408b", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Marie Aktor", "character": "", "id": 1442706, "credit_id": "550c8840c3a3684877003f88", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Mona C. Soliman", "character": "", "id": 1442707, "credit_id": "550c884bc3a3684874004751", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Mie Ravn Nielsen", "character": "", "id": 1442708, "credit_id": "550c88599251414699003fc8", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Kim Westi Rasmussen", "character": "", "id": 1440936, "credit_id": "550c8866c3a3684874004756", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Thomas Ravn", "character": "", "id": 1310986, "credit_id": "550c8875c3a368487d004397", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Katrine Brygmann", "character": "", "id": 1442709, "credit_id": "550c8882c3a3684877003f8d", "cast_id": 45, "profile_path": null, "order": 32}], "directors": [{"name": "Thomas Vinterberg", "department": "Directing", "job": "Director", "credit_id": "52fe4a22c3a36847f81bbfeb", "profile_path": "/dFev1iqFyoSigPRyCQ7r9NwZXiv.jpg", "id": 4453}], "vote_average": 7.9, "runtime": 115}, "169209": {"poster_path": "/rlGhBE58cEAWU6hWh77MQlQ1DRo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3639345, "overview": "After failing to get into the police academy, Chris Potamitis (Hemsworth), settles for a security guard job with the EMPIRE STATE Armored Truck Company. He makes the mistake of mentioning the company's lax security to his best friend, Eddie (Angarano) & is unwittingly drawn into an elaborate scheme to rob the abundant amounts of cash being stored there - resulting in the largest cash heist in U.S. History. As the stakes continue to rise, Chris and Eddie must outwit James Ransone (Johnson), the veteran NYPD Detective hot on their trail, & the local crime bosses that want to know who pulled a job on their turf.", "video": false, "id": 169209, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Empire State", "tagline": "Based on a true story.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2171867", "adult": false, "backdrop_path": "/tkNJlMk4uJFC9jBq3UACbgugF4y.jpg", "production_companies": [{"name": "Knightsbridge Entertainment", "id": 46961}, {"name": "Grindstone Entertainment Group", "id": 3604}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Envision Entertainment Corporation", "id": 11030}, {"name": "24P Media Group", "id": 14581}, {"name": "Kind Hearts Entertainment", "id": 47287}, {"name": "Cheetah Vision", "id": 5830}, {"name": "Picture Perfect Corporation", "id": 27993}, {"name": "Voltage Pictures", "id": 10255}], "release_date": "2013-09-03", "popularity": 1.04421867555609, "original_title": "Empire State", "budget": 11000000, "cast": [{"name": "Liam Hemsworth", "character": "Chris Potamitis", "id": 96066, "credit_id": "52fe4cddc3a36847f82422c5", "cast_id": 2, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 0}, {"name": "Dwayne Johnson", "character": "Detective James Ransome", "id": 18918, "credit_id": "52fe4cddc3a36847f82422c1", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 1}, {"name": "Emma Roberts", "character": "Nancy Michaelides", "id": 34847, "credit_id": "52fe4cddc3a36847f82422c9", "cast_id": 3, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 2}, {"name": "Nikki Reed", "character": "Lizzette", "id": 59252, "credit_id": "52fe4cddc3a36847f82422cd", "cast_id": 4, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 3}, {"name": "Lydia Hull", "character": "Maria", "id": 1042684, "credit_id": "5405d338c3a3684366008601", "cast_id": 28, "profile_path": "/w0QwXxbofjNdraTJkmMKQv2d6RG.jpg", "order": 4}, {"name": "Michael Angarano", "character": "Eddie", "id": 11665, "credit_id": "52fe4cddc3a36847f82422d1", "cast_id": 5, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 5}, {"name": "Shenae Grimes", "character": "Eleni", "id": 88619, "credit_id": "52fe4cdec3a36847f82422d5", "cast_id": 6, "profile_path": "/zDa5eWttJdzv1Fxp2lx3PUzVXT0.jpg", "order": 6}, {"name": "Jerry Ferrara", "character": "Jimmy", "id": 98953, "credit_id": "52fe4cdec3a36847f82422d9", "cast_id": 7, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 7}, {"name": "James Ransone", "character": "Agent Nugent", "id": 5296, "credit_id": "52fe4cdec3a36847f82422dd", "cast_id": 8, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 8}, {"name": "Gia Mantegna", "character": "Vicky", "id": 137424, "credit_id": "5405d354c3a368119c003b80", "cast_id": 29, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 9}, {"name": "Chris Diamantopoulos", "character": "Spyro", "id": 1217648, "credit_id": "52fe4cdec3a36847f8242305", "cast_id": 18, "profile_path": "/fd9RKydcraURoZnsy0EDzwVyP80.jpg", "order": 10}, {"name": "Michael Rispoli", "character": "Tony", "id": 18313, "credit_id": "52fe4cdec3a36847f82422e1", "cast_id": 10, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 11}, {"name": "Gia Mantegna", "character": "Vicky", "id": 137424, "credit_id": "52fe4cdec3a36847f82422e5", "cast_id": 11, "profile_path": "/7kyM76HV3wz8g3sXHbdJ4bJuX8E.jpg", "order": 12}, {"name": "Paul Ben-Victor", "character": "Tommy", "id": 85142, "credit_id": "52fe4cdec3a36847f82422e9", "cast_id": 12, "profile_path": "/350FIsnn84w2RLAhNPRtzeaUqLO.jpg", "order": 13}, {"name": "Sharon Angela", "character": "Dina", "id": 139703, "credit_id": "52fe4cdec3a36847f82422ed", "cast_id": 13, "profile_path": "/2aegDkuLTH1jZ2yCFBmUZIMkpdV.jpg", "order": 14}, {"name": "Roger Guenveur Smith", "character": "Agent Marichal", "id": 40377, "credit_id": "52fe4cdec3a36847f82422f1", "cast_id": 14, "profile_path": "/c6yUnUcbNxCUKAjucLlh6VHzmCd.jpg", "order": 15}, {"name": "Bonnie Bentley", "character": "Mother", "id": 1060475, "credit_id": "52fe4cdec3a36847f82422f5", "cast_id": 15, "profile_path": "/eLYeb5I7NCQj4JtvPivNLv3W5Ri.jpg", "order": 16}, {"name": "Wayne P\u00e9re", "character": "Williams", "id": 31528, "credit_id": "5405d376c3a368068c0083b5", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Tony Bentley", "character": "Sam Wallace", "id": 120253, "credit_id": "5405d389c3a36843630082dd", "cast_id": 31, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 18}, {"name": "Karen Clark", "character": "Karen", "id": 177150, "credit_id": "5405d3a1c3a36816af0037ee", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "Dito Montiel", "department": "Directing", "job": "Director", "credit_id": "52fe4cdec3a36847f82422fb", "profile_path": "/j0ZiIL5HMwQJXqEs3halOPrrrXS.jpg", "id": 53935}], "vote_average": 5.2, "runtime": 94}, "21755": {"poster_path": "/dFjfFhbsYCkMoc3fMk3ZQX7HMls.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5530764, "overview": "The Brothers Bloom are the best con men in the world, swindling millionaires with complex scenarios of lust and intrigue. Now they've decided to take on one last job - showing a beautiful and eccentric heiress the time of her life with a romantic adventure that takes them around the world.", "video": false, "id": 21755, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Brothers Bloom", "tagline": "They'd never let the truth come between them.", "vote_count": 55, "homepage": "http://www.brothersbloom.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0844286", "adult": false, "backdrop_path": "/cKTpfaao3g9rdW4imF34tpd3Dio.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Summit Entertainment", "id": 491}, {"name": "Endgame Entertainment", "id": 1205}], "release_date": "2008-09-09", "popularity": 0.697272909615634, "original_title": "The Brothers Bloom", "budget": 20000000, "cast": [{"name": "Rachel Weisz", "character": "Penelope", "id": 3293, "credit_id": "52fe4425c3a368484e01235d", "cast_id": 1, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 0}, {"name": "Adrien Brody", "character": "Bloom", "id": 3490, "credit_id": "52fe4425c3a368484e012361", "cast_id": 2, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Stephen", "id": 103, "credit_id": "52fe4425c3a368484e012365", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Rinko Kikuchi", "character": "Bang Bang", "id": 18054, "credit_id": "52fe4425c3a368484e012369", "cast_id": 4, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 3}, {"name": "Robbie Coltrane", "character": "Curator", "id": 1923, "credit_id": "52fe4425c3a368484e01236d", "cast_id": 5, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 4}, {"name": "Maximilian Schell", "character": "Diamond Dog", "id": 12150, "credit_id": "52fe4425c3a368484e012371", "cast_id": 6, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 5}, {"name": "Ricky Jay", "character": "Narrator (voice)", "id": 10743, "credit_id": "52fe4425c3a368484e012375", "cast_id": 7, "profile_path": "/gc0cJJzCb1tAe6pWQpXDMWtTDVj.jpg", "order": 6}, {"name": "Zachary Gordon", "character": "Young Bloom", "id": 89819, "credit_id": "52fe4425c3a368484e012379", "cast_id": 8, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 7}, {"name": "Max Records", "character": "Young Stephen", "id": 80576, "credit_id": "52fe4426c3a368484e0123cb", "cast_id": 23, "profile_path": "/5RgV2oMl1OsUKUMW9C8vyrM8G0c.jpg", "order": 8}, {"name": "Andy Nyman", "character": "Charleston", "id": 22810, "credit_id": "52fe4426c3a368484e0123cf", "cast_id": 24, "profile_path": "/zForezOSjYIF1IspQQwXyD8jJKF.jpg", "order": 9}, {"name": "Noah Segan", "character": "The Duke", "id": 48312, "credit_id": "52fe4426c3a368484e0123d3", "cast_id": 25, "profile_path": "/hxRWVwtxvzz0NTaaZMQwtPz8CDE.jpg", "order": 10}, {"name": "Nora Zehetner", "character": "Rose", "id": 34070, "credit_id": "52fe4426c3a368484e0123d7", "cast_id": 26, "profile_path": "/qzP1MWNCugzf180ZDX8zdfBk3zk.jpg", "order": 11}, {"name": "Ram Bergman", "character": "Himself", "id": 60047, "credit_id": "553ae1b792514135c8000f2e", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Craig Johnson", "character": "Apple Cart Vendor", "id": 69074, "credit_id": "553ae1d3925141125600886d", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Dubravko Jovanovi\u0107", "character": "Albino", "id": 1049501, "credit_id": "553ae21c92514138a90054a8", "cast_id": 33, "profile_path": "/cn7LiKMvFPS3gXDQ4uaIWniWiWN.jpg", "order": 14}, {"name": "Esme Tyler", "character": "Young Girl", "id": 1458761, "credit_id": "553ae22ac3a3687845009645", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Jovan Vitas", "character": "Young Boy", "id": 1458762, "credit_id": "553ae23dc3a3683e5500247e", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Ana Sofrenovi\u0107", "character": "Charleston's Wife", "id": 32358, "credit_id": "52fe4426c3a368484e0123e7", "cast_id": 29, "profile_path": "/wNH3XmjO5Y2b6mFvBvE0IZC5oWP.jpg", "order": 17}, {"name": "Vladimir Kulhavy", "character": "Chief of Police", "id": 25723, "credit_id": "52fe4426c3a368484e0123eb", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Alek Rodic", "character": "Snack Car Attendant", "id": 1458763, "credit_id": "553ae284925141678800224e", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Josif Tati\u0107", "character": "Oafish Foster Father", "id": 110980, "credit_id": "553ae2a99251411256008891", "cast_id": 37, "profile_path": "/uMxTdE818ffdYCubg5Okr4x8vak.jpg", "order": 20}, {"name": "Slobodan \u0106usti\u0107", "character": "Foster Dad", "id": 1045425, "credit_id": "553ae2e6c3a3683e55002499", "cast_id": 38, "profile_path": "/mMtap9WxiqUGciCRqlZnRZGkyU9.jpg", "order": 21}, {"name": "Branka Puji\u0107", "character": "Foster Mom", "id": 1043267, "credit_id": "553ae309c3a3683e140023ce", "cast_id": 39, "profile_path": "/wBKzUiUagPMU97RSJhnyI3Q8sqf.jpg", "order": 22}, {"name": "George Bocchetti", "character": "Excited Boy", "id": 1458764, "credit_id": "553ae31792514135c8000f65", "cast_id": 40, "profile_path": null, "order": 23}, {"name": "Elis Derham", "character": "Excited Boy", "id": 1458765, "credit_id": "553ae31f925141275e0041cf", "cast_id": 41, "profile_path": null, "order": 24}], "directors": [{"name": "Rian Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4425c3a368484e01237f", "profile_path": "/pCdsaqBaG6SozL5HGwVRyIfjWtM.jpg", "id": 67367}], "vote_average": 6.9, "runtime": 114}, "38142": {"poster_path": "/wX7RbjclqHoSWd4NGouDisBHq1o.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Takaki and Akari are two classmates in elementary school. During their time together they have become close friends. Their relationship is tested when Akari moves to another city because of her parents' jobs. Both of them struggle to keep their friendship alive, as time and distance slowly pulls them apart. When Takaki finds out that he is moving further away, he decides to visit Akari one last time.", "video": false, "id": 38142, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}], "title": "5 Centimeters Per Second", "tagline": "A chain of short stories about their distance", "vote_count": 120, "homepage": "http://5cm.yahoo.co.jp", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0983213", "adult": false, "backdrop_path": "/na51OUflawJy5K2cgvF07nrgGrl.jpg", "production_companies": [{"name": "CoMix Wave Films", "id": 10198}], "release_date": "2007-03-03", "popularity": 0.488234448441557, "original_title": "Byousoku 5 Centimeter", "budget": 295000, "cast": [{"name": "Kenji Mizuhashi", "character": "Takaki Toono", "id": 79006, "credit_id": "52fe46989251416c910596df", "cast_id": 3, "profile_path": "/5GSiheT7gHfm5u2roSuNOU19tqG.jpg", "order": 0}, {"name": "Yoshimi Kondou", "character": "Akari Shinohara", "id": 122180, "credit_id": "52fe46989251416c910596e3", "cast_id": 4, "profile_path": "/lAEyKFMkK59w0LsWZwZnDd5ZkAA.jpg", "order": 1}, {"name": "Satomi Hanamura", "character": "Kanae Sumita", "id": 85976, "credit_id": "52fe46989251416c910596e7", "cast_id": 5, "profile_path": "/5KEkffbZnEXbBjL3ryYQnkphZWg.jpg", "order": 2}, {"name": "Ayaka Onoue", "character": "Akari Shinohara", "id": 122181, "credit_id": "52fe46989251416c910596eb", "cast_id": 6, "profile_path": "/TgyKKwd7Q8dB1sr5jb3lrquItS.jpg", "order": 3}, {"name": "Risa Mizuno", "character": "", "id": 116323, "credit_id": "52fe46989251416c910596fb", "cast_id": 9, "profile_path": null, "order": 4}, {"name": "Yuka Terazaki", "character": "", "id": 135523, "credit_id": "52fe46989251416c910596ff", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Y\u00fbko Nakamura", "character": "", "id": 237168, "credit_id": "52fe46989251416c91059703", "cast_id": 11, "profile_path": "/6WvIbVHRfaayiGEU6Qsn7LncO1t.jpg", "order": 6}, {"name": "Masami Iwasaki", "character": "", "id": 225656, "credit_id": "52fe46989251416c91059707", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Rei Kondo", "character": "", "id": 1173793, "credit_id": "52fe46989251416c9105970b", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Hiroshi Shimozaki", "character": "", "id": 1173794, "credit_id": "52fe46989251416c9105970f", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Takahiro Hirano", "character": "", "id": 1124541, "credit_id": "52fe46989251416c91059713", "cast_id": 15, "profile_path": null, "order": 10}], "directors": [{"name": "Makoto Shinkai", "department": "Directing", "job": "Director", "credit_id": "52fe46989251416c910596db", "profile_path": "/gJw2kEydzdj4uaD1FEfuQ2scQzy.jpg", "id": 74091}], "vote_average": 7.4, "runtime": 63}, "54551": {"poster_path": "/4g7YYjVrSvJPxHztuDOqIjQACB2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Minions fight over a delicious banana.. but is that all they want?!", "video": false, "id": 54551, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me: Banana", "tagline": "", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1814643", "adult": false, "backdrop_path": "/jwYLfJtbEvABmV9FuC3RRoxiTCI.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-12-13", "popularity": 0.532817410488774, "original_title": "Despicable Me: Banana", "budget": 0, "cast": [{"name": "Pierre Coffin", "character": "Minions (various)", "id": 124747, "credit_id": "52fe48a2c3a36847f8171b0b", "cast_id": 1, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 0}], "directors": [{"name": "Kyle Balda", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171b11", "profile_path": null, "id": 8023}, {"name": "Samuel Tourneux", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171b17", "profile_path": null, "id": 220833}], "vote_average": 7.4, "runtime": 4}, "11823": {"poster_path": "/5sWkVDwhS6jsiMDEPPnDG6QYqXg.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 40701767, "overview": "A pro tennis player has lost his ambition and has fallen in rank to 119. Fortunately for him, he meets a young player on the women's circuit who helps him recapture his focus for Wimbledon.", "video": false, "id": 11823, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Wimbledon", "tagline": "She's the golden girl. He's the longshot. It's a match made in...", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0360201", "adult": false, "backdrop_path": "/jO9m4X4ztVJAfdm36MUnHFFWVLL.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2004-09-13", "popularity": 0.746440425704203, "original_title": "Wimbledon", "budget": 31000000, "cast": [{"name": "Kirsten Dunst", "character": "Lizzie Bradbury", "id": 205, "credit_id": "52fe448c9251416c75038afb", "cast_id": 13, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Peter Colt", "id": 6162, "credit_id": "52fe448c9251416c75038aff", "cast_id": 14, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Sam Neill", "character": "Dennis Bradbury", "id": 4783, "credit_id": "52fe448c9251416c75038b03", "cast_id": 15, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "James McAvoy", "character": "Carl Colt", "id": 5530, "credit_id": "52fe448c9251416c75038b07", "cast_id": 16, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 3}, {"name": "Bernard Hill", "character": "Edward Colt", "id": 1369, "credit_id": "52fe448c9251416c75038b0b", "cast_id": 17, "profile_path": "/vnepbY1BOJ2AX20bkngAT7ehJP.jpg", "order": 4}, {"name": "Austin Nichols", "character": "Jake Hammond", "id": 6069, "credit_id": "52fe448c9251416c75038b0f", "cast_id": 18, "profile_path": "/zuPYAE3HC6Sb82vZcef7edN1nkT.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Ron Roth", "id": 15277, "credit_id": "52fe448c9251416c75038b13", "cast_id": 19, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Nikolaj Coster-Waldau", "character": "Dieter Prohl", "id": 12795, "credit_id": "52fe448c9251416c75038b17", "cast_id": 20, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 7}, {"name": "Celia Imrie", "character": "Lydice Kenwood", "id": 9139, "credit_id": "52fe448c9251416c75038b1b", "cast_id": 21, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 8}], "directors": [{"name": "Richard Loncraine", "department": "Directing", "job": "Director", "credit_id": "52fe448c9251416c75038ad3", "profile_path": "/j700yY5SyI1EZegFpL4h77Otu5W.jpg", "id": 33315}], "vote_average": 5.6, "runtime": 98}, "13596": {"poster_path": "/l6OAtXIo1xerbwo8xezvqr6s27Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36620508, "overview": "When Dustin's girlfriend, Alexis, breaks up with him, he employs his best buddy, Tank, to take her out on the worst rebound date imaginable in the hopes that it will send her running back into his arms. But when Tank begins to really fall for Alexis, he finds himself in an impossible position.", "video": false, "id": 13596, "genres": [{"id": 35, "name": "Comedy"}], "title": "My Best Friend's Girl", "tagline": "It's funny what love can make you do...", "vote_count": 50, "homepage": "http://www.mybestfriendsgirlmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1046163", "adult": false, "backdrop_path": "/wEvAB2DlKbnKx41g18cFHjgz4Pj.jpg", "production_companies": [{"name": "New Wave Entertainment", "id": 2953}, {"name": "Lionsgate", "id": 1632}, {"name": "Management 360", "id": 4220}, {"name": "Terra Firma Films", "id": 7948}, {"name": "Superfinger Entertainment", "id": 12020}], "release_date": "2008-09-19", "popularity": 0.821843584834685, "original_title": "My Best Friend's Girl", "budget": 20000000, "cast": [{"name": "Dane Cook", "character": "Tank", "id": 31837, "credit_id": "52fe457e9251416c75058809", "cast_id": 3, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 0}, {"name": "Kate Hudson", "character": "Alexis", "id": 11661, "credit_id": "52fe457e9251416c7505880d", "cast_id": 4, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Professor Turner", "id": 7447, "credit_id": "52fe457e9251416c75058811", "cast_id": 5, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Jason Biggs", "character": "Dustin", "id": 21593, "credit_id": "52fe457e9251416c75058815", "cast_id": 6, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 3}, {"name": "Diora Baird", "character": "Rachel", "id": 59263, "credit_id": "52fe457e9251416c7505881f", "cast_id": 9, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 4}, {"name": "Lizzy Caplan", "character": "Ami", "id": 51988, "credit_id": "52fe457e9251416c75058823", "cast_id": 10, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 5}, {"name": "Riki Lindhome", "character": "Hilary", "id": 453, "credit_id": "52fe457e9251416c75058827", "cast_id": 11, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 6}, {"name": "Mini Anden", "character": "Lizzy", "id": 142953, "credit_id": "52fe457e9251416c7505882b", "cast_id": 12, "profile_path": "/m92JfMnAl6KC5d0ho3r1lFpABQJ.jpg", "order": 7}, {"name": "Nate Torrence", "character": "Craig", "id": 41565, "credit_id": "52fe457e9251416c7505882f", "cast_id": 13, "profile_path": "/nQoVDAd3MeMEW740Z0Ie9sPTnx5.jpg", "order": 8}, {"name": "Hilary Pingle", "character": "Claire", "id": 1077059, "credit_id": "52fe457f9251416c750588a5", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Malcolm Barrett", "character": "Dwalu", "id": 132355, "credit_id": "52fe457f9251416c750588a9", "cast_id": 35, "profile_path": "/hHCXukVEldrRfxpQqJbou7krl5O.jpg", "order": 10}, {"name": "Taran Killam", "character": "Josh", "id": 1213573, "credit_id": "52fe457f9251416c750588b7", "cast_id": 39, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 11}, {"name": "Faye Grant", "character": "Merrilee", "id": 70830, "credit_id": "52fe457f9251416c750588ad", "cast_id": 37, "profile_path": "/jrqwbTemID0U0DisFO7i7iwDkRm.jpg", "order": 12}], "directors": [{"name": "Howard Deutch", "department": "Directing", "job": "Director", "credit_id": "52fe457e9251416c750587ff", "profile_path": "/68Vae1HkU1NxQZ6KEmuxIpno7c9.jpg", "id": 26502}], "vote_average": 5.5, "runtime": 101}, "13597": {"poster_path": "/lt7G8X1E8LUMfh6lPtnoZ4QYsKR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12729917, "overview": "Frustrated with baby-sitting on yet another weekend night, Sarah - a teenager with an active imagination - summons the Goblins from her favourite book, \"Labyrinth\", to take the baby step-brother away. When little Toby actually disappears, Sarah must follow him into the world of the fairy tale to rescue him from the Goblin King!", "video": false, "id": 13597, "genres": [{"id": 14, "name": "Fantasy"}], "title": "Labyrinth", "tagline": "Where everything seems possible and nothing is what it seems.", "vote_count": 177, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091369", "adult": false, "backdrop_path": "/YgLdQEPrQ5Sip26pfmWd7wm6WK.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Henson Associates (HA)", "id": 24931}, {"name": "Lucasfilm", "id": 1}, {"name": "Jim Henson Company, The", "id": 6254}], "release_date": "1986-06-27", "popularity": 0.77885500504933, "original_title": "Labyrinth", "budget": 25000000, "cast": [{"name": "David Bowie", "character": "Jareth", "id": 7487, "credit_id": "52fe457f9251416c750588e5", "cast_id": 2, "profile_path": "/8zSaE85AGofhRL9nbA9XBbpi5Ly.jpg", "order": 0}, {"name": "Jennifer Connelly", "character": "Sarah", "id": 6161, "credit_id": "52fe457f9251416c750588e9", "cast_id": 3, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 1}, {"name": "Toby Froud", "character": "Toby", "id": 68794, "credit_id": "52fe457f9251416c750588ed", "cast_id": 4, "profile_path": "/cA3CE3sTfCk76sNPAwUTeNCIY6H.jpg", "order": 2}, {"name": "Christopher Malcolm", "character": "Father", "id": 47808, "credit_id": "52fe457f9251416c7505892d", "cast_id": 15, "profile_path": "/9Ua0yZoI6dZQ5VDqfU096dAM1Un.jpg", "order": 3}, {"name": "Shelley Thompson", "character": "Stepmother", "id": 68795, "credit_id": "52fe457f9251416c75058931", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Warwick Davis", "character": "Goblin Corps", "id": 11184, "credit_id": "52fe457f9251416c75058935", "cast_id": 17, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 5}, {"name": "Natalie Finland", "character": "Fairy", "id": 1329495, "credit_id": "539708fac3a3686415005bd8", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Shari Weiser", "character": "Hoggle", "id": 1329496, "credit_id": "5397090ec3a3686423005d5f", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Brian Henson", "character": "Hoggle", "id": 65298, "credit_id": "5397101e0e0a266db7009512", "cast_id": 20, "profile_path": "/m2Bczi1gvhnIYCGp8Fhg2QCPuNf.jpg", "order": 8}, {"name": "Ron Mueck", "character": "Ludo", "id": 1329518, "credit_id": "539710310e0a266dce0094f0", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Rob Mills", "character": "Ludo", "id": 220893, "credit_id": "539710440e0a266dbf00950f", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Dave Goelz", "character": "Didymus", "id": 64181, "credit_id": "539710540e0a266dc200933e", "cast_id": 23, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 11}, {"name": "David Alan Barclay", "character": "Didymus", "id": 1329519, "credit_id": "539710630e0a266db4009613", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "David Shaughnessy", "character": "Didymus", "id": 193254, "credit_id": "539710740e0a266dc2009345", "cast_id": 25, "profile_path": "/9lJkB9mFvAiKIMvV7Zmk72vTnUK.jpg", "order": 13}, {"name": "Karen Prell", "character": "The Worm", "id": 189120, "credit_id": "539710810e0a266dca0095a3", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Timothy Bateson", "character": "The Worm", "id": 3548, "credit_id": "5397108e0e0a266db7009520", "cast_id": 27, "profile_path": "/dHSn6dpypXLmNCrCwOy3fJDbPsT.jpg", "order": 15}], "directors": [{"name": "Jim Henson", "department": "Directing", "job": "Director", "credit_id": "52fe457f9251416c750588e1", "profile_path": "/nnPQ50zVkY9JnFUx4Hjtptn4j4p.jpg", "id": 55983}], "vote_average": 6.7, "runtime": 101}, "54559": {"poster_path": "/8mpWQcqeY2NmzCLSNj8FHMAT1mN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "With so many jobs to choose from, the Minions have to make serious decisions after watching an 'Initiation Video'. What could go wrong?!", "video": false, "id": 54559, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Despicable Me: Orientation Day", "tagline": "", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1830748", "adult": false, "backdrop_path": "/8BueE3xOMMd2Z2ix6ayqj2uPIGL.jpg", "production_companies": [{"name": "Illumination Entertainment", "id": 6704}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-12-13", "popularity": 0.637913864514588, "original_title": "Despicable Me: Orientation Day", "budget": 0, "cast": [{"name": "Pierre Coffin", "character": "Minions (various)", "id": 124747, "credit_id": "52fe48a2c3a36847f8171d47", "cast_id": 3, "profile_path": "/enSQNAwRSDPq9M9VZ1yjDwKWbev.jpg", "order": 0}, {"name": "Rob Huebel", "character": "Announcer", "id": 80595, "credit_id": "52fe48a2c3a36847f8171d4b", "cast_id": 4, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 1}], "directors": [{"name": "Kyle Balda", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171d3d", "profile_path": null, "id": 8023}, {"name": "Samuel Tourneux", "department": "Directing", "job": "Director", "credit_id": "52fe48a2c3a36847f8171d43", "profile_path": null, "id": 220833}], "vote_average": 7.0, "runtime": 4}, "13600": {"poster_path": "/vtlcA292oROPaG74amLsAhtBNbB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17869048, "overview": "For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.", "video": false, "id": 13600, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "City of Ember", "tagline": "Escape is the only option", "vote_count": 187, "homepage": "http://www.cityofember.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970411", "adult": false, "backdrop_path": "/npakqXbq7cCKyYLANJaEnnzwbgs.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Playtone", "id": 4171}, {"name": "Walden Media", "id": 10221}], "release_date": "2008-10-07", "popularity": 0.950449241249264, "original_title": "City of Ember", "budget": 55000000, "cast": [{"name": "Saoirse Ronan", "character": "Lina Mayfleet", "id": 36592, "credit_id": "52fe457f9251416c750589b9", "cast_id": 17, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Harry Treadaway", "character": "Doon Harrow", "id": 45051, "credit_id": "52fe457f9251416c75058985", "cast_id": 4, "profile_path": "/bteYHINCsRoIN9IhI1HbLd9TxTw.jpg", "order": 1}, {"name": "Mary Kay Place", "character": "Mrs. Murdo", "id": 5960, "credit_id": "52fe457f9251416c750589ff", "cast_id": 29, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 2}, {"name": "Bill Murray", "character": "Mayor Cole", "id": 1532, "credit_id": "52fe457f9251416c7505898d", "cast_id": 6, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 3}, {"name": "Martin Landau", "character": "Sul", "id": 2641, "credit_id": "52fe457f9251416c75058a03", "cast_id": 30, "profile_path": "/ylT7pqkcPNsHloe2dJsePFSoIkE.jpg", "order": 4}, {"name": "Toby Jones", "character": "Barton Snode", "id": 13014, "credit_id": "52fe457f9251416c75058995", "cast_id": 8, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 5}, {"name": "Tim Robbins", "character": "Loris Harrow", "id": 504, "credit_id": "52fe457f9251416c75058989", "cast_id": 5, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 6}, {"name": "David Ryall", "character": "Chief Builder", "id": 27822, "credit_id": "52fe457f9251416c7505897d", "cast_id": 2, "profile_path": "/kthcBrIdXP9QwlKXkVzzRsHwJkq.jpg", "order": 7}, {"name": "Ian McElhinney", "character": "Builder", "id": 43138, "credit_id": "52fe457f9251416c75058981", "cast_id": 3, "profile_path": "/5uXESGhFNIXSIVnOA5vby8Ctg3n.jpg", "order": 8}, {"name": "B.J. Hogg", "character": "Mayor's Guard", "id": 82142, "credit_id": "52fe457f9251416c75058991", "cast_id": 7, "profile_path": "/fBx6rB5IcS8O297qcPmvodph7O5.jpg", "order": 9}, {"name": "Lucinda Dryzek", "character": "Lizzie Bisco", "id": 82143, "credit_id": "52fe457f9251416c75058999", "cast_id": 9, "profile_path": "/oI6MJR0X9g1ay8iRsNps6lq2UHt.jpg", "order": 10}, {"name": "Matt Jessup", "character": "Joss", "id": 82144, "credit_id": "52fe457f9251416c7505899d", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Lara McIvor", "character": "Roner", "id": 82145, "credit_id": "52fe457f9251416c750589a1", "cast_id": 11, "profile_path": null, "order": 12}, {"name": "Myles Thompson", "character": "Smat", "id": 82146, "credit_id": "52fe457f9251416c750589a5", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Eoin McAndrew", "character": "Student #1", "id": 82147, "credit_id": "52fe457f9251416c750589a9", "cast_id": 13, "profile_path": null, "order": 14}, {"name": "Rachel Morton", "character": "Student #2", "id": 82148, "credit_id": "52fe457f9251416c750589ad", "cast_id": 14, "profile_path": null, "order": 15}, {"name": "Conor MacNeill", "character": "Student #3", "id": 82149, "credit_id": "52fe457f9251416c750589b1", "cast_id": 15, "profile_path": null, "order": 16}, {"name": "Lorraine Hilton", "character": "Miss Thorn", "id": 82150, "credit_id": "52fe457f9251416c750589b5", "cast_id": 16, "profile_path": null, "order": 17}], "directors": [{"name": "Gil Kenan", "department": "Directing", "job": "Director", "credit_id": "52fe457f9251416c75058979", "profile_path": "/ea6Bo4Ad1FTxeyIsGNxWSFCKuMj.jpg", "id": 57193}], "vote_average": 6.2, "runtime": 90}, "2268": {"poster_path": "/mOF2xK2xDgbpOCPgXreM4vfw9dC.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 350983908, "overview": "After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.", "video": false, "id": 2268, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Golden Compass", "tagline": "There are worlds beyond our own - the compass will show the way.", "vote_count": 359, "homepage": "http://www.goldencompassmovie.com/index_german.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0385752", "adult": false, "backdrop_path": "/fxSQuAFg3oZIaTC75D57WAkTZ8c.jpg", "production_companies": [{"name": "Depth of Field", "id": 1473}, {"name": "New Line Cinema", "id": 12}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Scholastic Productions", "id": 1938}], "release_date": "2007-12-07", "popularity": 1.09759008608037, "original_title": "The Golden Compass", "budget": 180000000, "cast": [{"name": "Nicole Kidman", "character": "Marisa Coutter", "id": 2227, "credit_id": "52fe4348c3a36847f8048651", "cast_id": 21, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Daniel Craig", "character": "Lord Asriel", "id": 8784, "credit_id": "52fe4348c3a36847f8048655", "cast_id": 22, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 1}, {"name": "Eva Green", "character": "Serafina Pekkala", "id": 10912, "credit_id": "52fe4348c3a36847f8048659", "cast_id": 24, "profile_path": "/qXlDuXpDlx7JTxtB78qG9DgKIzz.jpg", "order": 2}, {"name": "Ian McShane", "character": "Ragnar Sturlusson (voice)", "id": 6972, "credit_id": "52fe4348c3a36847f8048661", "cast_id": 26, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Lee Scoresby", "id": 16431, "credit_id": "52fe4348c3a36847f804865d", "cast_id": 25, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Tom Courtenay", "character": "Farder Coram", "id": 14011, "credit_id": "52fe4348c3a36847f804868f", "cast_id": 35, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 5}, {"name": "Derek Jacobi", "character": "Magisterial Emissary", "id": 937, "credit_id": "52fe4348c3a36847f8048693", "cast_id": 36, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 6}, {"name": "Ben Walker", "character": "Roger", "id": 45585, "credit_id": "52fe4348c3a36847f8048697", "cast_id": 37, "profile_path": "/90mzQGgOHx12iJUQu9wycc2jByM.jpg", "order": 7}, {"name": "Simon McBurney", "character": "Fra Pavel", "id": 16358, "credit_id": "52fe4348c3a36847f804869b", "cast_id": 38, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 8}, {"name": "Magda Szubanski", "character": "Mrs. Lonsdale", "id": 45586, "credit_id": "52fe4348c3a36847f804869f", "cast_id": 39, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 9}, {"name": "Jack Shepherd", "character": "Master", "id": 45587, "credit_id": "52fe4348c3a36847f80486a3", "cast_id": 40, "profile_path": "/dnqU4tBeRI1zAh0c70PZJJOZCAE.jpg", "order": 10}, {"name": "Clare Higgins", "character": "Ma Coster", "id": 45588, "credit_id": "52fe4348c3a36847f80486a7", "cast_id": 41, "profile_path": "/s8Z51Z1jsVYEzCd916dIb1C6X5F.jpg", "order": 11}, {"name": "Jim Carter", "character": "John Faa", "id": 20070, "credit_id": "52fe4348c3a36847f80486ab", "cast_id": 42, "profile_path": "/ycS14B6YHA2k4IlEPNgh0eQOv7u.jpg", "order": 12}, {"name": "Dakota Blue Richards", "character": "Lyra Belacqua", "id": 45589, "credit_id": "52fe4348c3a36847f80486af", "cast_id": 43, "profile_path": "/6XaRH9lq97NzFBHdL42SWckmcf1.jpg", "order": 13}, {"name": "Ian McKellen", "character": "Iorek Byrnison (voice)", "id": 1327, "credit_id": "52fe4348c3a36847f80486b3", "cast_id": 44, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 14}, {"name": "Freddie Highmore", "character": "Pantalaimon (voice)", "id": 1281, "credit_id": "52fe4348c3a36847f80486b7", "cast_id": 45, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 15}, {"name": "Christopher Lee", "character": "First High Councilor", "id": 113, "credit_id": "52fe4348c3a36847f80486c7", "cast_id": 48, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 16}, {"name": "Helen Soraya", "character": "Witch", "id": 1105459, "credit_id": "52fe4348c3a36847f80486cb", "cast_id": 49, "profile_path": "/sdjlyzUXrx5qAZ0cMISZjnLwvTX.jpg", "order": 17}, {"name": "Kristin Scott Thomas", "character": "Stelmania", "id": 5470, "credit_id": "52fe4348c3a36847f80486cf", "cast_id": 50, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 18}], "directors": [{"name": "Chris Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4348c3a36847f80485e1", "profile_path": "/xlnVbsnoP3PZCjEa2d99ETVLAFB.jpg", "id": 3288}], "vote_average": 5.6, "runtime": 113}, "70954": {"poster_path": "/381HpzyzIUKn1Dmlv3QiEwkIm9w.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 176669, "overview": "Martin, a mercenary, is sent from Europe by an anonymous biotech company to the Tasmanian wilderness on a hunt for the last Tasmanian tiger.", "video": false, "id": 70954, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Hunter", "tagline": "Some mysteries should never be solved.", "vote_count": 61, "homepage": "http://www.thehuntermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1703148", "adult": false, "backdrop_path": "/kA22q4Vvn5VSkvgx4HJdjgHJ9A7.jpg", "production_companies": [{"name": "Porchlight Films", "id": 6237}, {"name": "Screen Australia", "id": 7584}, {"name": "Screen NSW", "id": 10951}, {"name": "Screen Tasmania", "id": 8632}, {"name": "Fulcrum Media Finance", "id": 14430}, {"name": "Madman Entertainment", "id": 21592}], "release_date": "2011-10-06", "popularity": 0.21631111606058, "original_title": "The Hunter", "budget": 0, "cast": [{"name": "Willem Dafoe", "character": "Martin David", "id": 5293, "credit_id": "52fe481cc3a368484e0e9a2d", "cast_id": 2, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 0}, {"name": "Frances O'Connor", "character": "Lucy Armstrong", "id": 1518, "credit_id": "52fe481cc3a368484e0e9a35", "cast_id": 4, "profile_path": "/xLUO4E1lwkwOJ4uWmHuothCHah.jpg", "order": 1}, {"name": "Sam Neill", "character": "Jack Mindy", "id": 4783, "credit_id": "52fe481cc3a368484e0e9a31", "cast_id": 3, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "Morgana Davies", "character": "Sass Armstrong", "id": 144080, "credit_id": "52fe481cc3a368484e0e9a77", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Finn Woodlock", "character": "Bike Armstrong", "id": 1014734, "credit_id": "52fe481cc3a368484e0e9a8b", "cast_id": 21, "profile_path": null, "order": 4}, {"name": "Jacek Koman", "character": "Middleman", "id": 12210, "credit_id": "52fe481cc3a368484e0e9a7b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Callan Mulvey", "character": "Rival Hunter", "id": 208296, "credit_id": "52fe481cc3a368484e0e9a73", "cast_id": 15, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 6}, {"name": "Daniel Wyllie", "character": "Pool Player", "id": 3062, "credit_id": "52fe481cc3a368484e0e9a7f", "cast_id": 18, "profile_path": "/vOE8xx5mWUxamHWvAq5q07Ud2WO.jpg", "order": 7}, {"name": "Sullivan Stapleton", "character": "Doug", "id": 38664, "credit_id": "52fe481cc3a368484e0e9a39", "cast_id": 5, "profile_path": "/jbtXSbo8uqBTn8Nx2Z1fULTQlAz.jpg", "order": 8}, {"name": "Jamie Timony", "character": "Free", "id": 1014729, "credit_id": "52fe481cc3a368484e0e9a87", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Maia Thomas", "character": "Shakti", "id": 223675, "credit_id": "52fe481cc3a368484e0e9a83", "cast_id": 19, "profile_path": "/9BU1pj7n8Sf9wKpE4GiNdEBlSc6.jpg", "order": 10}], "directors": [{"name": "Daniel Nettheim", "department": "Directing", "job": "Director", "credit_id": "52fe481cc3a368484e0e9a29", "profile_path": null, "id": 186783}], "vote_average": 6.6, "runtime": 102}, "62764": {"poster_path": "/twCU43qv4VVqqsIi1NMnGj2kXmp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162700692, "overview": "After she spends all her money, an evil enchantress queen (Julia Roberts) schemes to marry a handsome, wealthy prince (Arnie Hammer). There's just one problem - he's in love with a beautiful princess, Snow White (Lily Collins). Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil...", "video": false, "id": 62764, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Mirror Mirror", "tagline": "The Snow White legend comes alive.", "vote_count": 324, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1667353", "adult": false, "backdrop_path": "/jQiK80zlXDAsAb8MgkdzHSzlTpe.jpg", "production_companies": [{"name": "Misher Films", "id": 11581}, {"name": "Relativity Media", "id": 7295}, {"name": "Yucaipa Films", "id": 12005}, {"name": "Goldmann Pictures", "id": 12006}, {"name": "Rat Entertainment", "id": 12007}, {"name": "Misha Films", "id": 12008}], "release_date": "2012-03-30", "popularity": 1.7540586165026, "original_title": "Mirror Mirror", "budget": 85000000, "cast": [{"name": "Lily Collins", "character": "Snow White", "id": 112561, "credit_id": "52fe468cc3a368484e096e15", "cast_id": 4, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Evil Queen", "id": 1204, "credit_id": "52fe468cc3a368484e096e19", "cast_id": 5, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "Armie Hammer", "character": "Prince Andrew Alcott", "id": 53807, "credit_id": "52fe468cc3a368484e096e1d", "cast_id": 6, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 2}, {"name": "Nathan Lane", "character": "Brighton", "id": 78729, "credit_id": "52fe468cc3a368484e096e27", "cast_id": 10, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 3}, {"name": "Jordan Prentice", "character": "Napoleon", "id": 54476, "credit_id": "52fe468dc3a368484e096e3d", "cast_id": 16, "profile_path": "/6h6zFtJapmtixIenZJV0UYDzCNc.jpg", "order": 4}, {"name": "Mark Povinelli", "character": "Half Pint", "id": 154785, "credit_id": "52fe468dc3a368484e096e41", "cast_id": 17, "profile_path": "/cJbp38kWYicKQf3EFX136sPGswz.jpg", "order": 5}, {"name": "Joe Gnoffo", "character": "Grub", "id": 60958, "credit_id": "52fe468dc3a368484e096e45", "cast_id": 18, "profile_path": "/rKU6r12H7fg6FMveG1jNIA6nmA.jpg", "order": 6}, {"name": "Danny Woodburn", "character": "Grimm", "id": 13645, "credit_id": "52fe468dc3a368484e096e49", "cast_id": 19, "profile_path": "/mT7jSNAoZjB7zlRhWxcnRrFla7d.jpg", "order": 7}, {"name": "Sebastian Saraceno", "character": "Wolf", "id": 1060474, "credit_id": "52fe468dc3a368484e096e4d", "cast_id": 20, "profile_path": "/gHXNIcmwIJ3cgaUtlKm6JWW16g8.jpg", "order": 8}, {"name": "Martin Klebba", "character": "Butcher", "id": 4030, "credit_id": "52fe468dc3a368484e096e51", "cast_id": 21, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 9}, {"name": "Ronald Lee Clark", "character": "Chuckles", "id": 1091866, "credit_id": "52fe468dc3a368484e096e55", "cast_id": 22, "profile_path": "/21wxIUV4LSM1cYGOxOGW0LFfoKg.jpg", "order": 10}, {"name": "Robert Emms", "character": "Charles Renbock", "id": 589652, "credit_id": "52fe468dc3a368484e096e59", "cast_id": 23, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 11}, {"name": "Mare Winningham", "character": "Baker Margaret", "id": 51544, "credit_id": "52fe468dc3a368484e096e5d", "cast_id": 24, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 12}, {"name": "Michael Lerner", "character": "Baron", "id": 4250, "credit_id": "52fe468dc3a368484e096e61", "cast_id": 25, "profile_path": "/nJaZ9MIhfz4KEwZka5Iu1SUC9CI.jpg", "order": 13}, {"name": "Sean Bean", "character": "King", "id": 48, "credit_id": "52fe468dc3a368484e096e65", "cast_id": 26, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 14}, {"name": "Bonnie Bentley", "character": "Caroline", "id": 1060475, "credit_id": "52fe468dc3a368484e096e69", "cast_id": 27, "profile_path": "/eLYeb5I7NCQj4JtvPivNLv3W5Ri.jpg", "order": 15}, {"name": "Arthur Holden", "character": "Noble #1", "id": 115596, "credit_id": "52fe468dc3a368484e096e6d", "cast_id": 28, "profile_path": "/y0aCeMJKAzVJO3pydEiVCV2Ca4k.jpg", "order": 16}, {"name": "Kwasi Songui", "character": "Noble #2", "id": 207881, "credit_id": "52fe468dc3a368484e096e71", "cast_id": 29, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 17}, {"name": "Eric Davis", "character": "Noble #3", "id": 1091867, "credit_id": "52fe468dc3a368484e096e75", "cast_id": 30, "profile_path": "/ti3nDKQMs8L7uzrPqcfFd51Jwki.jpg", "order": 18}, {"name": "Kathleen Fee", "character": "Noble #4", "id": 58170, "credit_id": "52fe468dc3a368484e096e79", "cast_id": 31, "profile_path": "/p7QxiYZCvgCYIBmfoGMN1Xedwo4.jpg", "order": 19}, {"name": "Nadia Verrucci", "character": "Servant", "id": 1015448, "credit_id": "52fe468dc3a368484e096e7d", "cast_id": 32, "profile_path": "/b1r2lWrxcWBYpIMmevAA5DXrzjM.jpg", "order": 20}, {"name": "Dawn Ford", "character": "Townswoman / Old Lady", "id": 1091868, "credit_id": "52fe468dc3a368484e096e81", "cast_id": 33, "profile_path": "/1aKWK9ksGeSUEwWCg3FnvNFEYBq.jpg", "order": 21}, {"name": "Alex Ivanovici", "character": "Town Magistrate", "id": 96594, "credit_id": "52fe468dc3a368484e096e85", "cast_id": 34, "profile_path": "/hCJlQXLMhT9gd6dkmOivS8IAOpw.jpg", "order": 22}, {"name": "M\u00e9lodie Simard", "character": "Child", "id": 1091869, "credit_id": "52fe468dc3a368484e096e89", "cast_id": 36, "profile_path": "/afJLyDe089KlgQ7mT5EM9BbdDUj.jpg", "order": 23}, {"name": "Kimberly-Sue Murray", "character": "Villager", "id": 550522, "credit_id": "52fe468dc3a368484e096e8d", "cast_id": 37, "profile_path": "/uJZlJTzpypPteg78qTu2GDACdKU.jpg", "order": 24}, {"name": "Lisa Roberts Gillan", "character": "Mirror Queen", "id": 15109, "credit_id": "52fe468dc3a368484e096e91", "cast_id": 38, "profile_path": "/buXwQSX1Lo802E9CNlfdf8mHPJ8.jpg", "order": 25}, {"name": "Adam Butcher", "character": "Servant #2", "id": 108534, "credit_id": "52fe468dc3a368484e096e95", "cast_id": 39, "profile_path": "/q0UmfAhN4wPePmkQFIuLv8UHTV8.jpg", "order": 26}, {"name": "Andr\u00e9 Lanthier", "character": "Lord Waverly", "id": 1037341, "credit_id": "52fe468dc3a368484e096e99", "cast_id": 40, "profile_path": "/bd22I1qiV4RHqoQyNbKpyjFDmKm.jpg", "order": 27}, {"name": "Lisa Noto", "character": "Magical Cottage Queen", "id": 1091874, "credit_id": "52fe468dc3a368484e096e9d", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "William Calvert", "character": "Door Guard #1", "id": 1091875, "credit_id": "52fe468dc3a368484e096ea1", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Nicholas Guest", "character": "Door Guard #2", "id": 36821, "credit_id": "52fe468dc3a368484e096ea5", "cast_id": 43, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 30}, {"name": "Frank Welker", "character": "Mannequins / Beast (voice)", "id": 15831, "credit_id": "52fe468dc3a368484e096ea9", "cast_id": 44, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 31}, {"name": "Richard Jutras", "character": "Townsman", "id": 1225492, "credit_id": "52fe468dc3a368484e096f31", "cast_id": 69, "profile_path": null, "order": 32}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe468cc3a368484e096e05", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 5.4, "runtime": 106}, "103731": {"poster_path": "/a0rbqR9UHxM67NQIsrgQXdMCiVQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21587700, "overview": "A drama centered on two teenage boys who encounter a fugitive and pact to help him escape from an island in the Mississippi.", "video": false, "id": 103731, "genres": [{"id": 18, "name": "Drama"}], "title": "Mud", "tagline": "People just sometimes forget why they fell in love in the first place.", "vote_count": 453, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1935179", "adult": false, "backdrop_path": "/cct5idxwiY3wWtGSKvJ09iHNIvf.jpg", "production_companies": [{"name": "Everest Entertainment", "id": 10892}, {"name": "FilmNation Entertainment", "id": 7493}], "release_date": "2013-05-10", "popularity": 1.421755764194, "original_title": "Mud", "budget": 10000000, "cast": [{"name": "Matthew McConaughey", "character": "Mud", "id": 10297, "credit_id": "52fe4a25c3a36847f81bc9b7", "cast_id": 7, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Tye Sheridan", "character": "Ellis", "id": 1034681, "credit_id": "52fe4a25c3a36847f81bc9d3", "cast_id": 14, "profile_path": "/tdplYVnd1bEWjv41B4gk8D1vLfO.jpg", "order": 1}, {"name": "Jacob Lofland", "character": "Neckbone", "id": 1171570, "credit_id": "52fe4a25c3a36847f81bca0f", "cast_id": 26, "profile_path": "/ckR9LXDzRqkktkciEHQ0tJqwKdi.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Tom Blankenship", "id": 9880, "credit_id": "52fe4a25c3a36847f81bc9c3", "cast_id": 10, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Reese Witherspoon", "character": "Juniper", "id": 368, "credit_id": "52fe4a25c3a36847f81bc9b3", "cast_id": 6, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 4}, {"name": "Sarah Paulson", "character": "Mary Lee", "id": 34490, "credit_id": "52fe4a25c3a36847f81bc9bf", "cast_id": 9, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 5}, {"name": "Michael Shannon", "character": "Galen", "id": 335, "credit_id": "52fe4a25c3a36847f81bc9bb", "cast_id": 8, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 6}, {"name": "Ray McKinnon", "character": "Senior", "id": 1472, "credit_id": "52fe4a25c3a36847f81bc9c7", "cast_id": 11, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 7}, {"name": "Joe Don Baker", "character": "King", "id": 10671, "credit_id": "52fe4a25c3a36847f81bc9cb", "cast_id": 12, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 8}, {"name": "Paul Sparks", "character": "Carver", "id": 167564, "credit_id": "52fe4a25c3a36847f81bc9cf", "cast_id": 13, "profile_path": "/i5WIHFWFWl4ytv0nCZHk4CC4m0Q.jpg", "order": 9}, {"name": "Stuart Greer", "character": "Miller", "id": 33262, "credit_id": "52fe4a25c3a36847f81bc9d7", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Michael Abbott Jr.", "character": "James", "id": 71889, "credit_id": "52fe4a25c3a36847f81bc9db", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Bonnie Sturdivant", "character": "May Pearl", "id": 1186193, "credit_id": "52fe4a25c3a36847f81bca13", "cast_id": 27, "profile_path": "/5pnRxVncUeANHLRKXAoEs36RNhE.jpg", "order": 12}], "directors": [{"name": "Jeff Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe4a25c3a36847f81bc99d", "profile_path": "/iFuYiBcv29IbSVMtNaYYtkA0y5X.jpg", "id": 71872}], "vote_average": 6.7, "runtime": 130}, "38199": {"poster_path": "/kRW14N0z8L7zx47rqTlXUCBSNWt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A convert to Islam sends the U.S. government a tape showing him in three nondescript storage rooms, each of which may contain a nuclear bomb set to detonate in less than a week. Helen Brody, an FBI agent in L.A., is tasked with finding the bombs while a CIA \"consultant\", known as H, interrogates the suspect who has allowed himself to be caught. The suspect, whose wife and children have left him and disappeared, seems to know exactly what the interrogation will entail. Even as H ratchets up the pressure, using torture over Brody's objection, the suspect doesn't crack. Should H do the unthinkable, and will Brody acquiesce? Is any Constitutional principle worth possible loss of life?", "video": false, "id": 38199, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Unthinkable", "tagline": "Right and Wrong no longer exist", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0914863", "adult": false, "backdrop_path": "/aGwSgTnv5n66bY6T3yo4NTFAvnt.jpg", "production_companies": [{"name": "Senator Entertainment Co", "id": 3319}, {"name": "Lleju Productions", "id": 12410}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Kimmel International", "id": 12411}, {"name": "ChubbCo Film", "id": 5683}], "release_date": "2010-06-15", "popularity": 0.961799508530771, "original_title": "Unthinkable", "budget": 15000000, "cast": [{"name": "Samuel L. Jackson", "character": "Henry Harold 'H' Humphries", "id": 2231, "credit_id": "52fe469e9251416c9105a26b", "cast_id": 3, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Agent Helen Brody", "id": 530, "credit_id": "52fe469e9251416c9105a277", "cast_id": 6, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Michael Sheen", "character": "Steven Arthur Younger", "id": 3968, "credit_id": "52fe469e9251416c9105a26f", "cast_id": 4, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 2}, {"name": "Stephen Root", "character": "Charles Thompson", "id": 17401, "credit_id": "52fe469e9251416c9105a27b", "cast_id": 7, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 3}, {"name": "Lora Kojovic", "character": "Rina Humphries", "id": 120891, "credit_id": "52fe469e9251416c9105a2b3", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "Martin Donovan", "character": "Jack Saunders", "id": 42993, "credit_id": "52fe469e9251416c9105a2bb", "cast_id": 25, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 5}, {"name": "Gil Bellows", "character": "Agent Vincent", "id": 6575, "credit_id": "52fe469e9251416c9105a2b7", "cast_id": 24, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 6}, {"name": "Brandon Routh", "character": "Agent D.J Jackson", "id": 17271, "credit_id": "52fe469e9251416c9105a273", "cast_id": 5, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 7}, {"name": "Joshua Harto", "character": "Agent Phillips", "id": 34544, "credit_id": "52fe469e9251416c9105a297", "cast_id": 16, "profile_path": "/8jRaYHrZX6sZoUOOXZI1H6EQNQa.jpg", "order": 8}, {"name": "Holmes Osborne", "character": "General Paulson", "id": 1578, "credit_id": "52fe469e9251416c9105a293", "cast_id": 15, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 9}, {"name": "Michael Rose", "character": "Col. Kerkmejian", "id": 53330, "credit_id": "52fe469e9251416c9105a2ab", "cast_id": 21, "profile_path": "/zxVFWG8TIgqV01nL90mfucX83nQ.jpg", "order": 10}, {"name": "Randy Oglesby", "character": "Mr. Bradley", "id": 102567, "credit_id": "52fe469e9251416c9105a2a7", "cast_id": 20, "profile_path": "/i6Zrn7JKMnemYZysNqhkcGs9cjk.jpg", "order": 11}, {"name": "Benito Martinez", "character": "Alvarez", "id": 2137, "credit_id": "52fe469e9251416c9105a28f", "cast_id": 14, "profile_path": "/6cMiGYgjFFYY8sWITXiE0SrEnt8.jpg", "order": 12}, {"name": "Sasha Roiz", "character": "Lubitchich", "id": 6071, "credit_id": "52fe469e9251416c9105a287", "cast_id": 12, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 13}, {"name": "Dayo Ade", "character": "Winston", "id": 120889, "credit_id": "52fe469e9251416c9105a29f", "cast_id": 18, "profile_path": "/sYqnpw8Yy3iWjdw1TjzeAt9HwWG.jpg", "order": 14}, {"name": "Yara Shahidi", "character": "Katie", "id": 118372, "credit_id": "52fe469e9251416c9105a283", "cast_id": 11, "profile_path": "/v3AVrFCOGVoehv4zeyqH26rydot.jpg", "order": 15}, {"name": "Necar Zadegan", "character": "Jehan Younger", "id": 119834, "credit_id": "52fe469e9251416c9105a27f", "cast_id": 9, "profile_path": "/vf8BZpdXjOTf5NuYEIiyRQhl8di.jpg", "order": 16}, {"name": "Vincent Laresca", "character": "Agent Leandro", "id": 1983, "credit_id": "52fe469e9251416c9105a28b", "cast_id": 13, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 17}, {"name": "Geoff Meed", "character": "Young Sergent", "id": 86204, "credit_id": "52fe469e9251416c9105a29b", "cast_id": 17, "profile_path": "/rv3ClSULRuvxuQvvXpC6Ki8BAKD.jpg", "order": 18}, {"name": "Kirk B.R. Woller", "character": "Observer", "id": 6864, "credit_id": "52fe469e9251416c9105a2a3", "cast_id": 19, "profile_path": "/5IRGhRmv0rFCM3epJCuE1aoKlZv.jpg", "order": 19}, {"name": "Chris McGarry", "character": "Major Pierce", "id": 120890, "credit_id": "52fe469e9251416c9105a2af", "cast_id": 22, "profile_path": "/fGQtYAn6tGudVerMn8u6USdbnkX.jpg", "order": 20}, {"name": "Jillian Bruno", "character": "Samura Younger", "id": 207672, "credit_id": "52fe469e9251416c9105a307", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Coby Seyrafi", "character": "Ali Younger", "id": 1065555, "credit_id": "52fe469e9251416c9105a30b", "cast_id": 39, "profile_path": null, "order": 22}], "directors": [{"name": "Gregor Jordan", "department": "Directing", "job": "Director", "credit_id": "52fe469e9251416c9105a261", "profile_path": "/ldjIS0AD7i4mKRqOGWj0kuebNdh.jpg", "id": 57030}], "vote_average": 6.6, "runtime": 97}, "13635": {"poster_path": "/kX572fQIR1nVfONRlp3j6htYq3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 31055440, "overview": "The early career (1959-\u201970) of outlaw Jacques Mesrine (Cassel), covering his military service in Algeria, apprenticeship with a Paris gang-lord (Depardieu), crime-spree partnership with soulmate Jeanne (De France) and escape from a tough Canadian prison.", "video": false, "id": 13635, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mesrine: Killer Instinct", "tagline": "", "vote_count": 60, "homepage": "http://www.mesrine-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/3SirYFnkQwYhAec3ugZS8BKpMbk.jpg", "poster_path": "/kFUC6s54Q8jn1eNBqs6xOGa2jeL.jpg", "id": 85945, "name": "The Mesrine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1259014", "adult": false, "backdrop_path": "/fmRdkt5PCvGYY9swmLky8xfdoKv.jpg", "production_companies": [{"name": "La Petite Reine", "id": 1992}, {"name": "Remstar Productions", "id": 4298}, {"name": "Novo RPI", "id": 1996}], "release_date": "2008-10-22", "popularity": 0.473035768753766, "original_title": "L'Instinct de mort", "budget": 0, "cast": [{"name": "Vincent Cassel", "character": "Jacques Mesrine", "id": 1925, "credit_id": "52fe45859251416c75059647", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "C\u00e9cile De France", "character": "Jeanne Schneider", "id": 17522, "credit_id": "52fe45859251416c7505964b", "cast_id": 3, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 1}, {"name": "G\u00e9rard Depardieu", "character": "Guido", "id": 16927, "credit_id": "52fe45859251416c7505964f", "cast_id": 4, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 2}, {"name": "Gilles Lellouche", "character": "Paul", "id": 54291, "credit_id": "52fe45859251416c75059653", "cast_id": 5, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 3}, {"name": "Roy Dupuis", "character": "Jean-Paul Mercier", "id": 56977, "credit_id": "52fe45859251416c75059693", "cast_id": 16, "profile_path": "/nciXJYsOO0UvIZL1HnKlBVmeyWT.jpg", "order": 4}, {"name": "Elena Anaya", "character": "Sofia", "id": 3623, "credit_id": "52fe45859251416c75059697", "cast_id": 17, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 5}, {"name": "Florence Thomassin", "character": "Sarah", "id": 66838, "credit_id": "52fe45859251416c7505969b", "cast_id": 18, "profile_path": "/dTl02iZ9mgxbXOLElidgqr79ZDX.jpg", "order": 6}, {"name": "Michel Duchaussoy", "character": "Pierre Andr\u00e9 Mesrine", "id": 19062, "credit_id": "52fe45859251416c7505969f", "cast_id": 19, "profile_path": "/AeLrVLGaXr96zCZQCo4JWiMiOZq.jpg", "order": 7}, {"name": "Abdelhafid Metalsi", "character": "Ahmed", "id": 67145, "credit_id": "52fe45859251416c750596a3", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Deano Clavet", "character": "Roger Andr\u00e9", "id": 548035, "credit_id": "52fe45859251416c750596a7", "cast_id": 21, "profile_path": "/fGFF153oy3GLRdCOp4r6ewlnp41.jpg", "order": 9}, {"name": "Ludivine Sagnier", "character": "Sylvie Jeanjacquot", "id": 4390, "credit_id": "52fe45859251416c750596ab", "cast_id": 22, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 10}], "directors": [{"name": "Jean-Fran\u00e7ois Richet", "department": "Directing", "job": "Director", "credit_id": "52fe45859251416c75059659", "profile_path": null, "id": 58324}], "vote_average": 7.5, "runtime": 113}, "70981": {"poster_path": "/idXq7NctkwoH59DRAIQlHEPtn95.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 403170142, "overview": "A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.", "video": false, "id": 70981, "genres": [{"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Prometheus", "tagline": "The Search for Our Beginning Could Lead to Our End.", "vote_count": 2477, "homepage": "http://www.prometheus-movie.co.uk/", "belongs_to_collection": {"backdrop_path": "/cK83Pq8SJoeSTnLJucr8IWn35KF.jpg", "poster_path": "/c5PMV2IjDiCfQFX8EFv196xra1y.jpg", "id": 135416, "name": "Prometheus Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "gd", "name": ""}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1446714", "adult": false, "backdrop_path": "/rRhoMIqgdX9wEtRUOLsqXKkH9I0.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Twentieth Century Fox", "id": 7392}, {"name": "Scott Free Productions", "id": 1645}, {"name": "Brandywine Productions", "id": 19747}], "release_date": "2012-06-08", "popularity": 2.49374103119471, "original_title": "Prometheus", "budget": 130000000, "cast": [{"name": "Noomi Rapace", "character": "Elizabeth Shaw", "id": 87722, "credit_id": "52fe481dc3a368484e0e9d7b", "cast_id": 5, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 0}, {"name": "Michael Fassbender", "character": "David", "id": 17288, "credit_id": "52fe481dc3a368484e0e9d6b", "cast_id": 1, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 1}, {"name": "Charlize Theron", "character": "Meredith Vickers", "id": 6885, "credit_id": "52fe481dc3a368484e0e9d6f", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 2}, {"name": "Idris Elba", "character": "Janek", "id": 17605, "credit_id": "52fe481dc3a368484e0e9d73", "cast_id": 3, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 3}, {"name": "Guy Pearce", "character": "Peter Weyland", "id": 529, "credit_id": "52fe481dc3a368484e0e9d77", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 4}, {"name": "Logan Marshall-Green", "character": "Charlie Holloway", "id": 130253, "credit_id": "52fe481dc3a368484e0e9d7f", "cast_id": 6, "profile_path": "/bLVRAvM9WnTVQ42Nm4jVR0IpOIk.jpg", "order": 5}, {"name": "Sean Harris", "character": "Fifield", "id": 16702, "credit_id": "52fe481dc3a368484e0e9e1d", "cast_id": 42, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 6}, {"name": "Rafe Spall", "character": "Millburn", "id": 28847, "credit_id": "52fe481dc3a368484e0e9d83", "cast_id": 7, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 7}, {"name": "Emun Elliott", "character": "Chance", "id": 228968, "credit_id": "52fe481dc3a368484e0e9d8b", "cast_id": 10, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 8}, {"name": "Kate Dickie", "character": "Ford", "id": 71083, "credit_id": "52fe481dc3a368484e0e9d87", "cast_id": 9, "profile_path": "/nEcvqwrXakqhOX8fa3WZIhGAjA1.jpg", "order": 9}, {"name": "Branwell Donaghey", "character": "Mercenary 1", "id": 1074615, "credit_id": "52fe481dc3a368484e0e9e03", "cast_id": 35, "profile_path": "/kYcZAqo3cJm9lKe7I1dhZyiOYPf.jpg", "order": 10}, {"name": "Patrick Wilson", "character": "Shaw's Father", "id": 17178, "credit_id": "52fe481dc3a368484e0e9d99", "cast_id": 16, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 11}, {"name": "Vladimir Furdik", "character": "Mercenary 2", "id": 1074616, "credit_id": "52fe481dc3a368484e0e9e07", "cast_id": 36, "profile_path": "/p2Q0GW2XsLD0lH4g6tBB0gZbsgZ.jpg", "order": 12}, {"name": "Benedict Wong", "character": "Ravel", "id": 30082, "credit_id": "52fe481dc3a368484e0e9d8f", "cast_id": 11, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 13}, {"name": "C.C. Smiff", "character": "Mercenary 3", "id": 1074617, "credit_id": "52fe481dc3a368484e0e9e21", "cast_id": 43, "profile_path": "/vAtwe2ECLPbh8duZKW9BR1xggCQ.jpg", "order": 14}, {"name": "Shane Steyn", "character": "Mercenary 4", "id": 1074618, "credit_id": "52fe481dc3a368484e0e9e25", "cast_id": 44, "profile_path": "/9yv0EGeVDda19q9WTwcQEC8fFMC.jpg", "order": 15}, {"name": "Ian Whyte", "character": "Last Engineer", "id": 946696, "credit_id": "52fe481dc3a368484e0e9e29", "cast_id": 45, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 16}, {"name": "John Lebar", "character": "Ghost Engineer", "id": 938419, "credit_id": "52fe481dc3a368484e0e9e2d", "cast_id": 46, "profile_path": "/1Fvz9CmOQ1rGVB5e7yU22ls3odC.jpg", "order": 17}, {"name": "Lucy Hutchinson", "character": "Young Shaw", "id": 564941, "credit_id": "52fe481dc3a368484e0e9e31", "cast_id": 47, "profile_path": "/xTZWqaVPPXqmKGeLfYv6PgUO0sN.jpg", "order": 18}, {"name": "Anil Biltoo", "character": "Linguist Teacher", "id": 1272932, "credit_id": "52fe481dc3a368484e0e9e39", "cast_id": 49, "profile_path": "/7cIuBGHMiNTEtImsliBcI6wfmzG.jpg", "order": 19}, {"name": "Giannina Facio", "character": "Shaw's Mother", "id": 58787, "credit_id": "52fe481dc3a368484e0e9e35", "cast_id": 48, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 20}, {"name": "Louisa Staples", "character": "Greeting Message Violinist", "id": 1272933, "credit_id": "52fe481dc3a368484e0e9e3d", "cast_id": 50, "profile_path": null, "order": 21}, {"name": "James Embree", "character": "Mechanic", "id": 1390394, "credit_id": "54784a95c3a36849bd00024a", "cast_id": 104, "profile_path": null, "order": 22}, {"name": "Annie Penn", "character": "Ship Computer Voice (voice)", "id": 1390388, "credit_id": "54784abf9251416a27000330", "cast_id": 105, "profile_path": null, "order": 23}, {"name": "Robin Atkin Downes", "character": "Ship Computer Voice (voice)", "id": 130081, "credit_id": "54784b4492514103b8001c81", "cast_id": 106, "profile_path": "/pCnIQMMgrFc4hBOE4LJDdebqRZ4.jpg", "order": 24}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe481dc3a368484e0e9d95", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.1, "runtime": 124}, "13648": {"poster_path": "/vcduy3H9RelaER3F7jn7OGby1ws.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "A zombie attack brings chaos to Harvardville Airport. Leon Kennedy and Claire Redfield , who fought the sinister Umbrella Corporation during the Raccoon City tragedy 7 years ago, are back. In high-octane Resident Evil style, they're ready to battle a rogue warrior who is seeking revenge after his family was killed in Raccoon City. The deadly G-Virus is unleashed and a new mutated monster rampages.", "video": false, "id": 13648, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Degeneration", "tagline": "", "vote_count": 84, "homepage": "http://www.sonypictures.com/homevideo/residentevildegeneration", "belongs_to_collection": {"backdrop_path": "/24misnowJVJDEzglb0emeG1YKxI.jpg", "poster_path": "/3AbleHQeAzz8O5iGaiorfe2qbnK.jpg", "id": 133352, "name": "Resident Evil: Biohazard Collection"}, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1174954", "adult": false, "backdrop_path": "/imz5ZodpQFYR9kbEmuNiJ5xvt2Q.jpg", "production_companies": [{"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Capcom", "id": 7220}], "release_date": "2008-10-18", "popularity": 0.750561765513111, "original_title": "Baiohaz\u00e2do: Dijener\u00eashon", "budget": 0, "cast": [{"name": "Alyson Court", "character": "Claire Redfield (Voice)", "id": 74951, "credit_id": "52fe45879251416c750599ef", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Paul Mercier", "character": "Leon S. Kennedy (Voice)", "id": 74953, "credit_id": "52fe45879251416c750599f3", "cast_id": 4, "profile_path": null, "order": 1}, {"name": "Laura Bailey", "character": "Angela Miller (voice)", "id": 75037, "credit_id": "52fe45879251416c750599f7", "cast_id": 5, "profile_path": "/213MerOuZFAVdMFoGaO6r3SwgZV.jpg", "order": 2}, {"name": "Roger Craig Smith", "character": "Curtis Miller (voice)", "id": 75038, "credit_id": "52fe45879251416c750599fb", "cast_id": 6, "profile_path": "/kGBdh92GpLs8gA4OaAL5JCDoTjw.jpg", "order": 3}, {"name": "Crispin Freeman", "character": "Frederic Downing (voice)", "id": 75039, "credit_id": "52fe45879251416c750599ff", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Salli Saffioti", "character": "Ingrid Hunnigan (Voice)", "id": 81378, "credit_id": "52fe45879251416c75059a03", "cast_id": 8, "profile_path": "/kN2QHQrnviJ1slercUlfRPcrJeh.jpg", "order": 5}, {"name": "Steve Blum", "character": "Greg Glenn (Voice)", "id": 81379, "credit_id": "52fe45879251416c75059a07", "cast_id": 9, "profile_path": "/asCL6bWSZ7Xl2kSoRqrPB0CUUUU.jpg", "order": 6}, {"name": "Michelle Ruff", "character": "Rani Chawla (Voice)", "id": 81380, "credit_id": "52fe45879251416c75059a0b", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Michael Sorich", "character": "Senator Ron Davis (Voice)", "id": 61308, "credit_id": "52fe45879251416c75059a0f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Michael McConnohie", "character": "WilPharma CEO (Voice)", "id": 81381, "credit_id": "52fe45879251416c75059a13", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Kirk Thornton", "character": "President (Voice)", "id": 81382, "credit_id": "52fe45879251416c75059a17", "cast_id": 13, "profile_path": null, "order": 10}], "directors": [{"name": "Makoto Kamiya", "department": "Directing", "job": "Director", "credit_id": "52fe45879251416c750599e5", "profile_path": null, "id": 74950}], "vote_average": 6.1, "runtime": 97}, "13649": {"poster_path": "/oZ0u3CLAdSzJWAVXsHhGqzmCiNG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7000000, "overview": "The East High Wildcats are ready to have the time of their lives. Troy (Zac Efron) is thrilled when he\u2019s offered a job in a country club, but it\u2019s all part of Sharpay\u2019s (Ashley Tisdale) plot to lure him away from Gabriella (Vanessa Hudgens). How will it all turn out? All questions are answered on the night of the club\u2019s Talent Show.", "video": false, "id": 13649, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "High School Musical 2", "tagline": "", "vote_count": 134, "homepage": "http://www.disneychannel.com/highschoolmusical2", "belongs_to_collection": {"backdrop_path": "/t1mwGPJi3NkwMeyeUHr9zlQhlTo.jpg", "poster_path": "/dXIgM9sEWIkUfRH8GZUKHv1t5n.jpg", "id": 87253, "name": "High School Musical Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0810900", "adult": false, "backdrop_path": "/9csHsEuRjY9DqjbWmAU3pCI6y2o.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2007-08-17", "popularity": 0.356049290148674, "original_title": "High School Musical 2", "budget": 0, "cast": [{"name": "Zac Efron", "character": "Troy Bolton", "id": 29222, "credit_id": "52fe45879251416c75059a49", "cast_id": 5, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Vanessa Hudgens", "character": "Gabriella Montez", "id": 67599, "credit_id": "52fe45879251416c75059a4d", "cast_id": 6, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 1}, {"name": "Ashley Tisdale", "character": "Sharpay Evans", "id": 67600, "credit_id": "52fe45879251416c75059a51", "cast_id": 7, "profile_path": "/bRB3bV2yPDnFtsMBl3NMFAxJBO9.jpg", "order": 2}, {"name": "Lucas Grabeel", "character": "Ryan Evans", "id": 67601, "credit_id": "52fe45879251416c75059a55", "cast_id": 8, "profile_path": "/heSgRPG1Mlyta4FzuPXqXxKhysq.jpg", "order": 3}, {"name": "Corbin Bleu", "character": "Chad Danforth", "id": 67602, "credit_id": "52fe45879251416c75059a59", "cast_id": 9, "profile_path": "/1fTGgTuAa2EdvVJEj8Vu5PGifAn.jpg", "order": 4}, {"name": "Monique Coleman", "character": "Taylor McKessie", "id": 180279, "credit_id": "544994250e0a267483002433", "cast_id": 12, "profile_path": "/phGefy73dHXXisjZi0Egb0zUS3h.jpg", "order": 5}, {"name": "Brandon Cyrus", "character": "Boy At Pool", "id": 1329572, "credit_id": "53973504c3a3684f45003d3c", "cast_id": 11, "profile_path": "/7B0jeEfFzJSKkUA4XdPjVnPJA1t.jpg", "order": 6}], "directors": [{"name": "Kenny Ortega", "department": "Directing", "job": "Director", "credit_id": "52fe45879251416c75059a33", "profile_path": "/rumgPYE4NRoV6eHL1gwzD1KPN8B.jpg", "id": 65310}], "vote_average": 5.6, "runtime": 104}, "1371": {"poster_path": "/7PM9662AGMsQR9BLlNV8aLgCY1k.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124000000, "overview": "Now the world champion, Rocky Balboa is living in luxury and only fighting opponents who pose no threat to him in the ring. His lifestyle of wealth and idleness is shaken when a powerful young fighter known as Clubber Lang challenges him to a bout. After taking a pounding from Lang, the humbled champ turns to former bitter rival Apollo Creed to help him regain his form for a rematch with Lang.", "video": false, "id": 1371, "genres": [{"id": 18, "name": "Drama"}], "title": "Rocky III", "tagline": "His life is happy, his fights have seemed easy. Now a young upstart is going to make him prove just how far he can still go...", "vote_count": 223, "homepage": "", "belongs_to_collection": {"backdrop_path": "/rmfyTF8AVVZqdd5i7JsSfU4X3Lr.jpg", "poster_path": "/57GTZXXq1r96F4yIciQEYbSvJQy.jpg", "id": 1575, "name": "Rocky Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0084602", "adult": false, "backdrop_path": "/6qYptQG2ynJANbyjjYOt4fpHfxF.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1982-05-28", "popularity": 0.919031404973126, "original_title": "Rocky III", "budget": 17000000, "cast": [{"name": "Sylvester Stallone", "character": "Rocky Balboa", "id": 16483, "credit_id": "52fe42f0c3a36847f802e547", "cast_id": 21, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Talia Shire", "character": "Adrianna \"Adrian\" Pennino Balboa", "id": 3094, "credit_id": "52fe42f0c3a36847f802e54b", "cast_id": 22, "profile_path": "/d2uI8tGSdpmXMh96C238J2A30RA.jpg", "order": 1}, {"name": "Burt Young", "character": "Paulie", "id": 4521, "credit_id": "52fe42f0c3a36847f802e54f", "cast_id": 23, "profile_path": "/aBbBzPS7pGgyfRYZdafMvtrmpnB.jpg", "order": 2}, {"name": "Carl Weathers", "character": "Apollo Creed", "id": 1101, "credit_id": "52fe42f0c3a36847f802e553", "cast_id": 24, "profile_path": "/5oiSUbvNt3ergjkumjQYUNnzgyP.jpg", "order": 3}, {"name": "Burgess Meredith", "character": "Mickey Goldmill", "id": 16523, "credit_id": "52fe42f0c3a36847f802e557", "cast_id": 25, "profile_path": "/lm98oKloU33Q7QDIIMSyc4Pr2jA.jpg", "order": 4}, {"name": "Tony Burton", "character": "Duke", "id": 16504, "credit_id": "52fe42f0c3a36847f802e55b", "cast_id": 26, "profile_path": "/8VY0hZcxMhwM1wUzNZTSfG7cwAX.jpg", "order": 5}, {"name": "Mr. T", "character": "Clubber Lang", "id": 16619, "credit_id": "52fe42f0c3a36847f802e55f", "cast_id": 27, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 6}, {"name": "Hulk Hogan", "character": "Thunderlips", "id": 16620, "credit_id": "52fe42f0c3a36847f802e563", "cast_id": 28, "profile_path": "/jDWQ3FLbbPSIHPgfOdmuUaWWnON.jpg", "order": 7}, {"name": "Ian Fried", "character": "Rocky Junior", "id": 16621, "credit_id": "52fe42f0c3a36847f802e567", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Al Silvani", "character": "Al", "id": 16528, "credit_id": "52fe42f0c3a36847f802e56b", "cast_id": 30, "profile_path": "/tHjzbzaPTDPvkewRwmiXH0zQkdI.jpg", "order": 9}, {"name": "Wally Taylor", "character": "Clubber Lang's manager", "id": 6771, "credit_id": "52fe42f0c3a36847f802e56f", "cast_id": 31, "profile_path": "/nqUN3VZYRiuLRFflvdl50z7Qbsc.jpg", "order": 10}, {"name": "Jim Hill", "character": "Sportscaster", "id": 16622, "credit_id": "52fe42f0c3a36847f802e573", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Don Sherman", "character": "Andy", "id": 16623, "credit_id": "52fe42f0c3a36847f802e577", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Dennis James", "character": "Wrestling commentator 1", "id": 16624, "credit_id": "52fe42f0c3a36847f802e57b", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Jim Healy", "character": "Wrestling commentator 2", "id": 16625, "credit_id": "52fe42f0c3a36847f802e57f", "cast_id": 35, "profile_path": null, "order": 14}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe42f0c3a36847f802e4d1", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.4, "runtime": 99}, "177494": {"poster_path": "/nS3L07mQfcNJcisLEKgi8fWoBS1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Years after walking away from her past as a teenage private eye, Veronica Mars gets pulled back to her hometown - just in time for her high school reunion - in order to help her old flame Logan Echolls, who's embroiled in a murder mystery.", "video": false, "id": 177494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Veronica Mars", "tagline": "She thought she was out", "vote_count": 174, "homepage": "http://theveronicamarsmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2771372", "adult": false, "backdrop_path": "/s8891Ox7a5O7Gk0SbPUOY6EKiGN.jpg", "production_companies": [{"name": "Rob Thomas Productions", "id": 19019}, {"name": "Warner Bros.", "id": 6194}, {"name": "Warner Bros. Interactive Entertainment", "id": 13034}], "release_date": "2014-03-14", "popularity": 0.628323523072447, "original_title": "Veronica Mars", "budget": 0, "cast": [{"name": "Kristen Bell", "character": "Veronica Mars", "id": 40462, "credit_id": "52fe4d87c3a36847f8265c37", "cast_id": 1, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Jason Dohring", "character": "Logan Echolls", "id": 158095, "credit_id": "52fe4d87c3a36847f8265c3b", "cast_id": 2, "profile_path": "/8DrH4ERl7JPv1FXDhkAQPOYIL1S.jpg", "order": 1}, {"name": "Enrico Colantoni", "character": "Keith Mars", "id": 15029, "credit_id": "531f4da1c3a3685c56009d66", "cast_id": 22, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 2}, {"name": "Chris Lowell", "character": "Stosh \"Piz\" Piznarski", "id": 84300, "credit_id": "52fe4d87c3a36847f8265c5b", "cast_id": 12, "profile_path": "/7j5M2vrnMBE0dEHKPQECiE8WSCe.jpg", "order": 3}, {"name": "Percy Daggs III", "character": "Wallace Fennel", "id": 1180945, "credit_id": "52fe4d87c3a36847f8265c3f", "cast_id": 5, "profile_path": "/gDcFFDMIy8bxR97XNSUnUSoK7x.jpg", "order": 4}, {"name": "Tina Majorino", "character": "Cindy \"Mac\" Mackenzie", "id": 53930, "credit_id": "52fe4d87c3a36847f8265c47", "cast_id": 7, "profile_path": "/kGzCUaPddOm84cRlExLKOvZEoqP.jpg", "order": 5}, {"name": "Krysten Ritter", "character": "Gia Goodman", "id": 78080, "credit_id": "52fe4d87c3a36847f8265c43", "cast_id": 6, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 6}, {"name": "Martin Starr", "character": "Stu \"Cobb\" Cobbler", "id": 41089, "credit_id": "52fe4d87c3a36847f8265c57", "cast_id": 11, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 7}, {"name": "Gaby Hoffmann", "character": "Ruby Jetson", "id": 12930, "credit_id": "52fe4d87c3a36847f8265c63", "cast_id": 14, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 8}, {"name": "Andrea Estella", "character": "Bonnie DeVille", "id": 1301181, "credit_id": "5324d277c3a36824af001227", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Jerry O'Connell", "character": "Sheriff Dan Lamb", "id": 3035, "credit_id": "531f4dbdc3a3685c51009bda", "cast_id": 23, "profile_path": "/hkEBKk79L0ptmxGTng0v6X7Lzws.jpg", "order": 10}, {"name": "Francis Capra", "character": "Eli \"Weevil\" Navarro", "id": 17918, "credit_id": "52fe4d87c3a36847f8265c4b", "cast_id": 8, "profile_path": "/fmFbfu6OeimG24ShcEAybcsEDNz.jpg", "order": 11}, {"name": "Ryan Hansen", "character": "Dick Casablancas", "id": 78433, "credit_id": "52fe4d87c3a36847f8265c6f", "cast_id": 17, "profile_path": "/b5gl8ACOpevd4oRm7dlQVenXQ0L.jpg", "order": 12}, {"name": "Brandon Hillock", "character": "Deputy Jerry Sacks", "id": 1224448, "credit_id": "5324d30dc3a36823780019f9", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Maury Sterling", "character": "Deputy Lyles", "id": 65726, "credit_id": "5324d3bac3a3685725008aac", "cast_id": 27, "profile_path": "/4Kj5xu4cREwmBxGOnWM0XoypFM4.jpg", "order": 14}, {"name": "Sam Huntington", "character": "Luke Haldeman", "id": 53492, "credit_id": "52fe4d87c3a36847f8265c73", "cast_id": 18, "profile_path": "/nq7pwic6Xe6XTRzOfXjMCuUqbjt.jpg", "order": 15}, {"name": "Max Greenfield", "character": "Leo D'Amato", "id": 1213603, "credit_id": "52fe4d87c3a36847f8265c67", "cast_id": 15, "profile_path": "/f3yPmKIEjMAMNYLFCwvbWXSML34.jpg", "order": 16}, {"name": "Daran Norris", "character": "Cliff McCormack", "id": 31162, "credit_id": "531f4dd4c3a368726d00264e", "cast_id": 24, "profile_path": "/8sSi35l8BkWIbTaJcgmW2VFAgTz.jpg", "order": 17}, {"name": "Amanda Noret", "character": "Madison Sinclair", "id": 109045, "credit_id": "5324d43ac3a3684133001852", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Jonathan Chesner", "character": "Corny", "id": 1224424, "credit_id": "5324d468c3a36824b5007bfb", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Christiann Castellanos", "character": "Jade", "id": 936308, "credit_id": "5324d481c3a3683f040017f1", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Akiko Ann Morison", "character": "Mrs. Quan", "id": 1297415, "credit_id": "5324d49ec3a3683f040017f6", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Eden Sher", "character": "Penny", "id": 1214430, "credit_id": "5324d501c3a36824b5007c08", "cast_id": 32, "profile_path": "/x0ZUKUx9l3TmI1DxMeBg154Q7Ua.jpg", "order": 22}, {"name": "Christine Lakin", "character": "Susan Knight", "id": 30882, "credit_id": "52fe4d87c3a36847f8265c4f", "cast_id": 9, "profile_path": "/gjhJYhtmVKRsn5hecrQIplSP8Dd.jpg", "order": 23}, {"name": "Lisa Thornhill", "character": "Celeste Kane", "id": 47058, "credit_id": "5324d530c3a3683dbf0018a9", "cast_id": 33, "profile_path": "/AfnRDI8DUlYjutYXcDjksXDr8Jo.jpg", "order": 24}, {"name": "Charles Latibeaudiere", "character": "Himself", "id": 1301186, "credit_id": "5324d542c3a3683f04001801", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Harvey Levin", "character": "Himself", "id": 1218634, "credit_id": "5324d577c3a3683dbf0018ae", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Adam Johnson", "character": "The Low Rent DJ", "id": 107793, "credit_id": "5324d6319251410c87000d8d", "cast_id": 37, "profile_path": "/jr3cne62q08VNZu7OhSTd4FdirF.jpg", "order": 27}, {"name": "Ira Glass", "character": "Himself", "id": 210160, "credit_id": "5324d63c9251411708000d72", "cast_id": 38, "profile_path": "/12J92rMKpHjJBuW45MaBuMzMIrr.jpg", "order": 28}, {"name": "Alejandro Escovedo", "character": "Grungy Busker", "id": 1023117, "credit_id": "5324d64e9251411f850067ea", "cast_id": 39, "profile_path": "/tWnErRLtkYfjCefVe7gPyKni0PC.jpg", "order": 29}, {"name": "Larry Bates", "character": "Leonard March", "id": 177162, "credit_id": "5324d65c9251410d95000d7f", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Matthew Arkin", "character": "Doctor", "id": 164003, "credit_id": "5324d68b9251411544000d0e", "cast_id": 41, "profile_path": "/x7ab4U5xQAZlVZOxBHY3L91FqLV.jpg", "order": 31}, {"name": "Dave Allen", "character": "60-Year-Old Rocker (as Dave (Gruber) Allen)", "id": 88971, "credit_id": "5324d6ef925141652a000b0b", "cast_id": 42, "profile_path": "/rvSLaWzULGUqwieZyMJ3BNCZYTd.jpg", "order": 32}, {"name": "Eddie Jemison", "character": "JC Borden", "id": 1898, "credit_id": "5324d6ff9251411f850067f2", "cast_id": 43, "profile_path": "/zRrs9hAJcKNdWkCPWJ3XRkoFGAm.jpg", "order": 33}, {"name": "Alex Poncio", "character": "Drunken Canadian", "id": 1046150, "credit_id": "5324d7459251411439000cee", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Helen Slayton-Hughes", "character": "Mrs. Barnes", "id": 31510, "credit_id": "5324d7579251411f850067f9", "cast_id": 45, "profile_path": "/j3KIRdFgiAyqtdsLQXxgMZO6el4.jpg", "order": 35}, {"name": "Patrick Cox", "character": "Bouncer", "id": 1301187, "credit_id": "539955cc0e0a263e36001304", "cast_id": 58, "profile_path": "/9lKuRkqi571TImeqs4iizrkmHUp.jpg", "order": 36}, {"name": "Ryan Lane", "character": "Slick Fellow Applicant", "id": 983536, "credit_id": "5324d76492514113b9000d28", "cast_id": 46, "profile_path": null, "order": 37}, {"name": "Ingo Neuhaus", "character": "Beefy Deputy", "id": 149471, "credit_id": "5324d7729251411544000d1c", "cast_id": 47, "profile_path": null, "order": 38}, {"name": "Jessica Camacho", "character": "Martina Vasquez", "id": 1030995, "credit_id": "5324d783925141652a000b14", "cast_id": 48, "profile_path": "/51pVkQBx30Pn0ScWXCtJSyVb75N.jpg", "order": 39}, {"name": "Meredith Eaton", "character": "Receptionist", "id": 172388, "credit_id": "5324d7929251411439000cf1", "cast_id": 49, "profile_path": "/22nYWyz1DxrGWyCtiJVXY6MoC2G.jpg", "order": 40}, {"name": "Robert Hallak", "character": "TV Reporter Two", "id": 165422, "credit_id": "5324d7be92514113b9000d2c", "cast_id": 50, "profile_path": null, "order": 41}, {"name": "Jamie Lee Curtis", "character": "Gayle Buckley", "id": 8944, "credit_id": "52fe4d87c3a36847f8265c53", "cast_id": 10, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 42}, {"name": "Dax Shepard", "character": "Overconfident Club Boy", "id": 51298, "credit_id": "5324d80c9251411439000cf9", "cast_id": 51, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 43}, {"name": "Jeremy Fitzgerald", "character": "'Roid Tale", "id": 126841, "credit_id": "5324d81d92514113b9000d3a", "cast_id": 52, "profile_path": null, "order": 44}, {"name": "Dorian Kingi", "character": "Vapid Tool", "id": 62735, "credit_id": "5324d82b925141652a000b1f", "cast_id": 53, "profile_path": null, "order": 45}, {"name": "Ken Marino", "character": "Vinnie Van Lowe", "id": 77089, "credit_id": "52fe4d87c3a36847f8265c6b", "cast_id": 16, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 46}, {"name": "Kevin Sheridan", "character": "Sean Friedrich", "id": 84895, "credit_id": "5324d8a09251410c87000da4", "cast_id": 54, "profile_path": "/4BYcvbP2XcBK1j0INM0njU0c6Ox.jpg", "order": 47}, {"name": "Duane Daniels", "character": "Principal Van Clemmons", "id": 180208, "credit_id": "5324d8ba9251411708000d8c", "cast_id": 55, "profile_path": "/8OyS7vwyqCQ6smYQgMTwBw4ocbx.jpg", "order": 48}, {"name": "Mario Ardila Jr.", "character": "Punk #1", "id": 204078, "credit_id": "5324d8c79251410d95000d93", "cast_id": 56, "profile_path": "/AkudIKQ1cmuFI8P0rvQYn0Z5Zd5.jpg", "order": 49}, {"name": "Justin Long", "character": "Drunken Wingman (uncredited)", "id": 15033, "credit_id": "52fe4d87c3a36847f8265c5f", "cast_id": 13, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 50}, {"name": "James Franco", "character": "Himself (uncredited)", "id": 17051, "credit_id": "5324da51c3a3685725008b16", "cast_id": 57, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 51}], "directors": [{"name": "Rob Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4d87c3a36847f8265c7d", "profile_path": "/ksd5zcrzvyQ4RemsanCxQ9b6GvF.jpg", "id": 1224425}], "vote_average": 6.3, "runtime": 107}, "13655": {"poster_path": "/dTYrXKIJkiiDFDY8hrxXwZpDPb7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Mitchie gets a chance to attend Camp Rock, her life takes an unpredictable twist, and she learns just how important it is to be true to yourself.", "video": false, "id": 13655, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}, {"id": 10770, "name": "TV Movie"}], "title": "Camp Rock", "tagline": "", "vote_count": 69, "homepage": "http://disneychannel.com/camprock/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/kfYLaRTq2UEG31tdrvsg4JeTM4O.jpg", "id": 148055, "name": "Camp Rock Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1055366", "adult": false, "backdrop_path": "/frQfDFEEhrCQzQFpxXlvtP2h0Fo.jpg", "production_companies": [], "release_date": "2008-06-20", "popularity": 0.517948374107549, "original_title": "Camp Rock", "budget": 0, "cast": [{"name": "Demi Lovato", "character": "Mitchie Torres", "id": 85138, "credit_id": "52fe45889251416c75059bed", "cast_id": 1, "profile_path": "/bfAQFvBe2M3FifZVfFnb3joqDnO.jpg", "order": 0}, {"name": "Joe Jonas", "character": "Shane Gray", "id": 85757, "credit_id": "52fe45889251416c75059bf1", "cast_id": 2, "profile_path": "/chP0tAO3UfgmyipvNNqlGD7ctID.jpg", "order": 1}, {"name": "Maria Canals-Barrera", "character": "Connie Torres", "id": 85759, "credit_id": "52fe45889251416c75059bf5", "cast_id": 3, "profile_path": "/61u61cPmoHO6WeSOa0XtBnBM9gh.jpg", "order": 2}, {"name": "Meaghan Jette Martin", "character": "Tess Tyler", "id": 130567, "credit_id": "52fe45889251416c75059c0b", "cast_id": 7, "profile_path": "/xZAKFoELIpW8ghKEXAL17yQjyg.jpg", "order": 3}, {"name": "Alyson Stoner", "character": "Caitlyn Geller", "id": 58965, "credit_id": "52fe45889251416c75059c0f", "cast_id": 8, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 4}, {"name": "Daniel Fathers", "character": "Brown Cesario", "id": 133327, "credit_id": "52fe45889251416c75059c13", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Anna Maria Perez de Tagle", "character": "Ella", "id": 133328, "credit_id": "52fe45889251416c75059c17", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Julie Brown", "character": "Dee La Duke", "id": 40680, "credit_id": "52fe45889251416c75059c21", "cast_id": 13, "profile_path": "/8a1NwjIyjOWmYTqdj4fuxqKlzR5.jpg", "order": 7}, {"name": "Kevin Jonas", "character": "", "id": 130566, "credit_id": "52fe45889251416c75059c25", "cast_id": 14, "profile_path": "/demDxdp2PHLCaQI87LtmCHab0J4.jpg", "order": 8}, {"name": "Nick Jonas", "character": "", "id": 130565, "credit_id": "52fe45889251416c75059c29", "cast_id": 15, "profile_path": "/5xKjPntwYmTeCNaYS0w30ekyXRZ.jpg", "order": 9}], "directors": [{"name": "Matthew Diamond", "department": "Directing", "job": "Director", "credit_id": "52fe45889251416c75059bfb", "profile_path": "/5jQm4Tm1xIATDcxWBPQ5YYPoAyD.jpg", "id": 116370}], "vote_average": 5.7, "runtime": 94}, "9038": {"poster_path": "/fYUc7bKhhC3uwiFjyeRbu1USKOE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story centers on a man who is convinced that he has finally met the right girl and marries too quickly. While on his honeymoon and in the process of discovering that his new bride is a nightmare, he meets the girl of his dreams", "video": false, "id": 9038, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Heartbreak Kid", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0408839", "adult": false, "backdrop_path": "/hHpWbON0DNGTnzRuHwuvhqrndSt.jpg", "production_companies": [{"name": "Conundrum Entertainment", "id": 1156}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Radar Pictures Inc.", "id": 350}, {"name": "DreamWorks SKG", "id": 27}, {"name": "DreamWorks Pictures", "id": 7293}], "release_date": "2007-10-05", "popularity": 0.373789498937038, "original_title": "The Heartbreak Kid", "budget": 0, "cast": [{"name": "Ben Stiller", "character": "Eddie Cantrow", "id": 7399, "credit_id": "52fe44d5c3a36847f80aca07", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Malin Akerman", "character": "Lila", "id": 50463, "credit_id": "52fe44d5c3a36847f80aca0b", "cast_id": 2, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 1}, {"name": "Michelle Monaghan", "character": "Miranda", "id": 11705, "credit_id": "52fe44d5c3a36847f80aca0f", "cast_id": 3, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 2}, {"name": "Jerry Stiller", "character": "Doc", "id": 26042, "credit_id": "52fe44d5c3a36847f80aca13", "cast_id": 4, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 3}, {"name": "Rob Corddry", "character": "Mac", "id": 52997, "credit_id": "52fe44d5c3a36847f80aca17", "cast_id": 5, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 4}, {"name": "Mae LaBorde", "character": "Cute Elderly Couple Diner", "id": 63217, "credit_id": "52fe44d5c3a36847f80aca51", "cast_id": 16, "profile_path": "/8AfENrZpycuHFTTMDB58jDZvNSq.jpg", "order": 5}, {"name": "Carlos Mencia", "character": "Tito", "id": 87588, "credit_id": "53bb112cc3a368661e000138", "cast_id": 17, "profile_path": "/6huOFzF9kcXaeH4UrBvew3vRRwJ.jpg", "order": 6}, {"name": "Scott Wilson", "character": "Boo", "id": 6914, "credit_id": "53bb1135c3a3686638000172", "cast_id": 18, "profile_path": "/kEiTh9SOYdawbYO72mmsu9Tizrm.jpg", "order": 7}, {"name": "Polly Holliday", "character": "Beryl", "id": 11715, "credit_id": "53bb1145c3a3686623000143", "cast_id": 19, "profile_path": "/eCPxOz8ZPIHWImk0Rv5yt28kDVP.jpg", "order": 8}, {"name": "Danny McBride", "character": "Martin", "id": 62862, "credit_id": "53bb1150c3a368663400015f", "cast_id": 20, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 9}, {"name": "Roy Jenkins", "character": "Buzz", "id": 1237248, "credit_id": "53bb1158c3a3686623000146", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Stephanie Courtney", "character": "Gayla", "id": 159396, "credit_id": "53bb1166c3a368662e000139", "cast_id": 22, "profile_path": "/r5pxOlIdCMJArRsRluIrQFM12nW.jpg", "order": 11}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80aca1d", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe44d5c3a36847f80aca23", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.6, "runtime": 116}, "111969": {"poster_path": "/wxrH3NZ4wTtHVzbquknLRRQMFWW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 81071, "overview": "An acclaimed writer, his ex-wife, and their teenaged children come to terms with the complexities of love in all its forms over the course of one tumultuous year.", "video": false, "id": 111969, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Stuck in Love", "tagline": "A story about first loves and second chances.", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2205697", "adult": false, "backdrop_path": "/sypQlfdD6dij70dzpQMRE4QjGVA.jpg", "production_companies": [{"name": "Informant Media", "id": 9325}], "release_date": "2012-09-09", "popularity": 0.630460688801565, "original_title": "Stuck in Love", "budget": 0, "cast": [{"name": "Greg Kinnear", "character": "William Borgens", "id": 17141, "credit_id": "52fe4b08c3a36847f81eebcb", "cast_id": 1007, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 0}, {"name": "Logan Lerman", "character": "Lou", "id": 33235, "credit_id": "52fe4b08c3a36847f81eebb7", "cast_id": 1002, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 1}, {"name": "Lily Collins", "character": "Samantha Borgens", "id": 112561, "credit_id": "52fe4b08c3a36847f81eebc3", "cast_id": 1005, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 2}, {"name": "Jennifer Connelly", "character": "Erica", "id": 6161, "credit_id": "52fe4b08c3a36847f81eebbb", "cast_id": 1003, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 3}, {"name": "Kristen Bell", "character": "Tricia", "id": 40462, "credit_id": "52fe4b08c3a36847f81eebbf", "cast_id": 1004, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 4}, {"name": "Stephen King", "character": "Himself", "id": 3027, "credit_id": "52fe4b08c3a36847f81eebc7", "cast_id": 1006, "profile_path": "/qCGKepqazqcurcD39eIiQZHLosz.jpg", "order": 5}, {"name": "Liana Liberato", "character": "Kate", "id": 60458, "credit_id": "52fe4b08c3a36847f81eebcf", "cast_id": 1008, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 6}, {"name": "Rusty Joiner", "character": "Martin", "id": 177508, "credit_id": "52fe4b08c3a36847f81eebd3", "cast_id": 1009, "profile_path": "/3NemNSqpl6ge0SUXFZVR7ISaFxi.jpg", "order": 7}, {"name": "Nat Wolff", "character": "Rusty Borgens", "id": 232006, "credit_id": "52fe4b08c3a36847f81eebd7", "cast_id": 1010, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 8}, {"name": "Patrick Schwarzenegger", "character": "Glen", "id": 1053422, "credit_id": "52fe4b08c3a36847f81eebdb", "cast_id": 1011, "profile_path": "/cUyMEVB8e2zD5UJIEW88Hb3Ejr0.jpg", "order": 9}, {"name": "Alex ter Avest", "character": "Becky", "id": 1053423, "credit_id": "52fe4b08c3a36847f81eebdf", "cast_id": 1012, "profile_path": null, "order": 10}, {"name": "Glen Powell", "character": "Glen", "id": 83271, "credit_id": "52fe4b08c3a36847f81eebe3", "cast_id": 1013, "profile_path": "/sCeY5nuPUhfwWElxNtXuwRYKMBr.jpg", "order": 11}, {"name": "Karen Malina", "character": "Funeral Relative", "id": 1053424, "credit_id": "52fe4b08c3a36847f81eebe7", "cast_id": 1014, "profile_path": null, "order": 12}, {"name": "Barbara Weetman", "character": "Diane", "id": 174158, "credit_id": "52fe4b09c3a36847f81eebeb", "cast_id": 1015, "profile_path": "/nBGWWPAMdQHLmJQ4srzPk5AofpD.jpg", "order": 13}], "directors": [{"name": "Josh Boone", "department": "Directing", "job": "Director", "credit_id": "52fe4b08c3a36847f81eebad", "profile_path": "/w7a0LNrGto3RE2sJv2OfUMXY1Tk.jpg", "id": 1053420}], "vote_average": 7.0, "runtime": 97}, "44603": {"poster_path": "/iyC8fKWncwX2d06NwUz5qbf2P1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32741596, "overview": "A supernatural thriller centered on three people -- a blue-collar American, a French journalist and a London school boy -- who are touched by death in different ways.", "video": false, "id": 44603, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Hereafter", "tagline": "Touched by death. Changed by life.", "vote_count": 143, "homepage": "http://hereafter.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1212419", "adult": false, "backdrop_path": "/hqoT9VmekkuQ9vQFPjJOzLPdPfb.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Malpaso Productions", "id": 171}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Amblin Entertainment", "id": 56}], "release_date": "2010-10-15", "popularity": 0.656618354545646, "original_title": "Hereafter", "budget": 50000000, "cast": [{"name": "Matt Damon", "character": "George Lonegan", "id": 1892, "credit_id": "52fe4691c3a36847f8106215", "cast_id": 19, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Bryce Dallas Howard", "character": "Melanie", "id": 18997, "credit_id": "52fe4691c3a36847f810621d", "cast_id": 21, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 1}, {"name": "George McLaren", "character": "Markus/Jason", "id": 142365, "credit_id": "52fe4691c3a36847f8106209", "cast_id": 16, "profile_path": "/kDKue84plyFUaf1JwKcyZHwnXwh.jpg", "order": 2}, {"name": "Thierry Neuvic", "character": "Didier", "id": 83813, "credit_id": "52fe4691c3a36847f81061e9", "cast_id": 8, "profile_path": "/vCHCg1rA5gKc2kxn1xcgsiHo5aa.jpg", "order": 3}, {"name": "Cyndi Mayo Davis", "character": "Island Hotel Clerk", "id": 142359, "credit_id": "52fe4691c3a36847f81061ed", "cast_id": 9, "profile_path": "/eJCqlqouTVokzIYfDV64YzUWEkC.jpg", "order": 4}, {"name": "Lisa Griffiths", "character": "Stall Owner", "id": 142360, "credit_id": "52fe4691c3a36847f81061f1", "cast_id": 10, "profile_path": "/qS3c6jwj3YB0TqhCPIaqbXOaJ0f.jpg", "order": 5}, {"name": "Jessica Griffiths", "character": "Island Girl", "id": 142361, "credit_id": "52fe4691c3a36847f81061f5", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Ferguson Reid", "character": "Rescuer", "id": 142362, "credit_id": "52fe4691c3a36847f81061f9", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Derek Sakakura", "character": "Rescuer", "id": 142363, "credit_id": "52fe4691c3a36847f81061fd", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Charlie Creed-Miles", "character": "Photographer", "id": 8397, "credit_id": "52fe4691c3a36847f8106201", "cast_id": 14, "profile_path": "/2T4DYXNCDInWCfpxURVLQdKIgwK.jpg", "order": 9}, {"name": "Frankie McLaren", "character": "Markus/Jason", "id": 142364, "credit_id": "52fe4691c3a36847f8106205", "cast_id": 15, "profile_path": "/qWmefnb8IA70u6nEHf4PQgLnQp5.jpg", "order": 10}, {"name": "Lyndsey Marshal", "character": "Jackie", "id": 8442, "credit_id": "52fe4691c3a36847f810620d", "cast_id": 17, "profile_path": "/r661RpVSsy6cS7m5adhT8QFydPf.jpg", "order": 11}, {"name": "Rebekah Staton", "character": "Social Worker", "id": 78334, "credit_id": "52fe4691c3a36847f8106211", "cast_id": 18, "profile_path": "/6fyJjlVFs0puUoO2OtYz23g2HrB.jpg", "order": 12}, {"name": "C\u00e9cile De France", "character": "Marie Lelay", "id": 17522, "credit_id": "52fe4691c3a36847f8106219", "cast_id": 20, "profile_path": "/uT7XqtuF0XzLXsrjO4qvepOJnXA.jpg", "order": 13}, {"name": "Jay Mohr", "character": "Billy", "id": 12217, "credit_id": "52fe4691c3a36847f8106221", "cast_id": 22, "profile_path": "/lLICNIywduxjo1KA3okgXxGqws3.jpg", "order": 14}, {"name": "Richard Kind", "character": "Christos", "id": 21125, "credit_id": "52fe4691c3a36847f8106225", "cast_id": 23, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 15}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4691c3a36847f81061e5", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 5.5, "runtime": 129}, "21861": {"poster_path": "/nINXF8CgKUEFw1Q2vxNXQRknMfQ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Lola, a striking teenaged girl who is on the cusp of adulthood, who longs to rush into the adult world of independence, freedom and sexual exploits, but is tenaciously held back by her mother.", "video": false, "id": 21861, "genres": [{"id": 35, "name": "Comedy"}], "title": "LOL (Laughing Out Loud)", "tagline": "", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1194616", "adult": false, "backdrop_path": "/uCfeXjn5aBTN2aHATK4mO9bbohD.jpg", "production_companies": [{"name": "Path\u00e9 Films", "id": 4959}], "release_date": "2008-06-06", "popularity": 0.275183207971927, "original_title": "LOL (Laughing Out Loud)", "budget": 0, "cast": [{"name": "Sophie Marceau", "character": "Anne", "id": 1957, "credit_id": "52fe442bc3a368484e01364b", "cast_id": 1, "profile_path": "/5pJ16f9QxzZMzcr9CpSnr6dTwGG.jpg", "order": 0}, {"name": "Christa Theret", "character": "Lola", "id": 91355, "credit_id": "52fe442bc3a368484e01364f", "cast_id": 2, "profile_path": "/zHwGQ1ybMJmqJ2bJc8nDvnVFuls.jpg", "order": 1}, {"name": "Alexandre Astier", "character": "Alain", "id": 47826, "credit_id": "52fe442bc3a368484e013653", "cast_id": 3, "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "order": 2}, {"name": "J\u00e9r\u00e9my Kapone", "character": "Ma\u00ebl", "id": 930289, "credit_id": "52fe442bc3a368484e01365d", "cast_id": 5, "profile_path": "/wwOGdez4dcmVKijPFmP7LekFraf.jpg", "order": 3}, {"name": "Marion Chabassol", "character": "Charlotte", "id": 1134004, "credit_id": "52fe442bc3a368484e013661", "cast_id": 6, "profile_path": "/3S2qzF4bjgNICZyTE39RVnTrS86.jpg", "order": 4}, {"name": "Lou Lesage", "character": "St\u00e9phane", "id": 1104340, "credit_id": "52fe442bc3a368484e013665", "cast_id": 7, "profile_path": "/qV7OgJ3rcRmwKPkgaSqnGLnb8Ni.jpg", "order": 5}, {"name": "\u00c9mile Bertherat", "character": "Paul-Henri", "id": 1134005, "credit_id": "52fe442bc3a368484e013669", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "F\u00e9lix Moati", "character": "Arthur", "id": 930288, "credit_id": "52fe442bc3a368484e01366d", "cast_id": 9, "profile_path": "/2rk1x5mXDI05ukPOqRU4nC8mi0I.jpg", "order": 7}, {"name": "Louis Sommer", "character": "Mehdi", "id": 1134006, "credit_id": "52fe442bc3a368484e013671", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Ad\u00e8le Choubard", "character": "Provence", "id": 1134007, "credit_id": "52fe442bc3a368484e013675", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Jade-Rose Parker", "character": "Isabelle de Peyrefitte", "id": 587905, "credit_id": "52fe442bc3a368484e013679", "cast_id": 12, "profile_path": "/ai7I6QeYdRXHkRTuSsZ8mnNqq44.jpg", "order": 10}, {"name": "Warren Guetta", "character": "David L\u00e9vy", "id": 1134008, "credit_id": "52fe442bc3a368484e01367d", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Jocelyn Quivrin", "character": "Lucas", "id": 2970, "credit_id": "52fe442bc3a368484e013681", "cast_id": 14, "profile_path": "/bRA811QtMSH8JAu2gdZ6Cjta9Br.jpg", "order": 12}], "directors": [{"name": "Lisa Azuelos", "department": "Directing", "job": "Director", "credit_id": "52fe442bc3a368484e013659", "profile_path": "/lJCesY1XCxjJLG405fX6xLyPFHd.jpg", "id": 229568}], "vote_average": 6.6, "runtime": 103}, "13680": {"poster_path": "/v16hfzkZJj1Cs3kgNr9OLKWOlMT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144608461, "overview": "NFL quarterback Joe Kingman was living the bachelor lifestyle when one day he discovers that he has a 8-year-old daughter from a previous relationship.", "video": false, "id": 13680, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Game Plan", "tagline": "Half his size, twice the trouble ... and she's moving in.", "vote_count": 96, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0492956", "adult": false, "backdrop_path": "/4ms5L2HzxEeGOYKWzjcbLz9rvNx.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2007-09-28", "popularity": 0.650995037381846, "original_title": "The Game Plan", "budget": 22000000, "cast": [{"name": "Dwayne Johnson", "character": "Joe Kingman", "id": 18918, "credit_id": "52fe458a9251416c7505a1df", "cast_id": 1, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Madison Pettis", "character": "Peyton Kelly", "id": 74929, "credit_id": "52fe458a9251416c7505a1e3", "cast_id": 2, "profile_path": "/lEYkyecOFfRTCftwG75aVZZVfhw.jpg", "order": 1}, {"name": "Kyra Sedgwick", "character": "Stella Peck", "id": 26467, "credit_id": "52fe458a9251416c7505a1e7", "cast_id": 3, "profile_path": "/ough6OByEcqr99KQ9kZ4lAB9qRU.jpg", "order": 2}, {"name": "Roselyn S\u00e1nchez", "character": "Monique Vasquez", "id": 41901, "credit_id": "52fe458a9251416c7505a1eb", "cast_id": 4, "profile_path": "/ctkNxIjd0lQY8tV14n8J6YoFJuA.jpg", "order": 3}, {"name": "Morris Chestnut", "character": "Travis Sanders", "id": 9779, "credit_id": "52fe458a9251416c7505a1ef", "cast_id": 5, "profile_path": "/xHgWktsqPDsSsq8RWTe98IwxIIM.jpg", "order": 4}, {"name": "Hayes MacArthur", "character": "Kyle Cooper", "id": 74930, "credit_id": "52fe458a9251416c7505a1f3", "cast_id": 6, "profile_path": "/semGIgbhjhtBR0PncRzRmdttSJz.jpg", "order": 5}, {"name": "Brian J. White", "character": "Jamal Webber", "id": 31137, "credit_id": "52fe458a9251416c7505a1f7", "cast_id": 7, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 6}, {"name": "Jamal Duff", "character": "Clarence Monroe", "id": 74931, "credit_id": "52fe458a9251416c7505a1fb", "cast_id": 8, "profile_path": "/nH7XAMTsoomzS3hrciKWTVOzOlR.jpg", "order": 7}, {"name": "Paige Turco", "character": "Karen Kelly", "id": 74932, "credit_id": "52fe458a9251416c7505a1ff", "cast_id": 9, "profile_path": "/lVRiduEjilaStMw7wCWKtWaUred.jpg", "order": 8}, {"name": "Gordon Clapp", "character": "Coach Mark Maddox", "id": 26008, "credit_id": "52fe458a9251416c7505a203", "cast_id": 10, "profile_path": "/lXj4dp11IHY8pAk4yUoK83989zA.jpg", "order": 9}, {"name": "Kate Nauta", "character": "Tatianna", "id": 57346, "credit_id": "52fe458a9251416c7505a207", "cast_id": 11, "profile_path": "/2fZTljbCJm2oxVp5Eq1dm623zid.jpg", "order": 10}, {"name": "Robert Torti", "character": "Samuel Blake, Jr.", "id": 74933, "credit_id": "52fe458a9251416c7505a20b", "cast_id": 12, "profile_path": "/dPzxmVKTdMPhYiMjAbScn3peKFt.jpg", "order": 11}, {"name": "Jackie Flynn", "character": "Larry the Doorman", "id": 74934, "credit_id": "52fe458a9251416c7505a20f", "cast_id": 13, "profile_path": "/qDRdefQexpycxyvyYdl7XJw34kF.jpg", "order": 12}, {"name": "Lauren Storm", "character": "Nanny Cindy", "id": 74935, "credit_id": "52fe458a9251416c7505a213", "cast_id": 14, "profile_path": "/yJCPx1b6inJgGCHGpc1eGFvEJsa.jpg", "order": 13}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe458a9251416c7505a219", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.8, "runtime": 110}, "79218": {"poster_path": "/bBKkG54YXVTFCKeZ4a5pmRubTQg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Sid accidentally destroys Manny's heirloom Christmas rock and ends up on Santa's naughty list, he leads a hilarious quest to the North Pole to make things right and ends up making things much worse. Now it's up to Manny and his prehistoric posse to band together and save Christmas for the entire world!", "video": false, "id": 79218, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}, {"id": 10770, "name": "TV Movie"}], "title": "Ice Age: A Mammoth Christmas", "tagline": "Why am I on Santa's naughty list? Why? Why?", "vote_count": 53, "homepage": "http://www.blueskystudios.com", "belongs_to_collection": {"backdrop_path": "/2Mb92Ssoe1eUecvrCe2pEvgAlmv.jpg", "poster_path": "/stQoHvo0q6ZcEkji2Z1wlAxKnDq.jpg", "id": 8354, "name": "Ice Age Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2100546", "adult": false, "backdrop_path": "/y1mEaUanOhCtUmTyDrdGO1FAsc8.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Blue Sky Studios", "id": 9383}], "release_date": "2011-11-24", "popularity": 0.57932013723686, "original_title": "Ice Age: A Mammoth Christmas", "budget": 0, "cast": [{"name": "Billy Gardell", "character": "Santa", "id": 64344, "credit_id": "52fe49c7c3a368484e13f34b", "cast_id": 2, "profile_path": "/6GB2WYCGSJDPbKjjK0zot8nxJe9.jpg", "order": 0}, {"name": "Ray Romano", "character": "Manny", "id": 15757, "credit_id": "52fe49c7c3a368484e13f34f", "cast_id": 3, "profile_path": "/dpM63UfZE7HEFTYL41pB3eqLDhG.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Sid", "id": 5723, "credit_id": "52fe49c7c3a368484e13f353", "cast_id": 4, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Queen Latifah", "character": "Ellie", "id": 15758, "credit_id": "52fe49c7c3a368484e13f357", "cast_id": 5, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 3}, {"name": "Denis Leary", "character": "Diego", "id": 5724, "credit_id": "52fe49c7c3a368484e13f35b", "cast_id": 6, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 4}], "directors": [{"name": "Karen Disher", "department": "Directing", "job": "Director", "credit_id": "52fe49c7c3a368484e13f347", "profile_path": null, "id": 87055}], "vote_average": 6.4, "runtime": 26}, "74643": {"poster_path": "/i0mpvMIIjyubXsVKug9vX0lYpnd.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.", "video": false, "id": 74643, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Artist", "tagline": "", "vote_count": 325, "homepage": "http://www.warnerbros.fr/the-artist", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1655442", "adult": false, "backdrop_path": "/tr6OExnBfjLADi9OyZoW308mPAp.jpg", "production_companies": [{"name": "La Petite Reine", "id": 1992}, {"name": "Studio 37", "id": 2577}], "release_date": "2011-10-11", "popularity": 1.20166647943622, "original_title": "The Artist", "budget": 12000000, "cast": [{"name": "Jean Dujardin", "character": "George Valentin", "id": 56024, "credit_id": "52fe48d7c3a368484e10d8cb", "cast_id": 6, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 0}, {"name": "B\u00e9r\u00e9nice Bejo", "character": "Peppy Miller", "id": 82923, "credit_id": "52fe48d7c3a368484e10d8cf", "cast_id": 7, "profile_path": "/lczQWfdK8GrdcUKc6TkSD96Sr3r.jpg", "order": 1}, {"name": "John Goodman", "character": "Al Zimmer", "id": 1230, "credit_id": "52fe48d7c3a368484e10d8d3", "cast_id": 8, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "James Cromwell", "character": "Clifton", "id": 2505, "credit_id": "52fe48d7c3a368484e10d8d7", "cast_id": 9, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 3}, {"name": "Penelope Ann Miller", "character": "Doris", "id": 14698, "credit_id": "52fe48d7c3a368484e10d8db", "cast_id": 10, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 4}, {"name": "Missi Pyle", "character": "Constance", "id": 1294, "credit_id": "52fe48d7c3a368484e10d8df", "cast_id": 11, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 5}, {"name": "Beth Grant", "character": "Peppy's Maid", "id": 5151, "credit_id": "52fe48d7c3a368484e10d8e3", "cast_id": 12, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 6}, {"name": "Ed Lauter", "character": "Peppy's Butler", "id": 21523, "credit_id": "52fe48d7c3a368484e10d8e7", "cast_id": 13, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 7}, {"name": "Joel Murray", "character": "Policeman Fire", "id": 155649, "credit_id": "52fe48d7c3a368484e10d8eb", "cast_id": 14, "profile_path": "/euFBBlZ7Q8clCJE3VYPutQR35R7.jpg", "order": 8}, {"name": "Bitsie Tulloch", "character": "Norma", "id": 74577, "credit_id": "52fe48d7c3a368484e10d8ef", "cast_id": 15, "profile_path": "/ckC19oA4a7ixmvruDtQsu4ZB3iA.jpg", "order": 9}, {"name": "Ken Davitian", "character": "Pawnbroker", "id": 6734, "credit_id": "52fe48d7c3a368484e10d8f3", "cast_id": 16, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 10}, {"name": "Malcolm McDowell", "character": "The Butler", "id": 56890, "credit_id": "52fe48d7c3a368484e10d8fd", "cast_id": 19, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 11}, {"name": "Basil Hoffman", "character": "Auctioneer", "id": 91369, "credit_id": "52fe48d7c3a368484e10d943", "cast_id": 31, "profile_path": "/3kIPq25xlD05KZWJa6T835mlUMc.jpg", "order": 12}, {"name": "Bill Fagerbakke", "character": "Policeman Tuxedo", "id": 34398, "credit_id": "52fe48d7c3a368484e10d947", "cast_id": 32, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 13}, {"name": "Nina Siemaszko", "character": "Admiring Woman (as Nina Siemazko)", "id": 42133, "credit_id": "52fe48d7c3a368484e10d94b", "cast_id": 33, "profile_path": "/htNzOMMh4Hys3EhTDWdJOlbtKpL.jpg", "order": 14}, {"name": "Stephen Mendillo", "character": "Set Assistant", "id": 19023, "credit_id": "52fe48d7c3a368484e10d94f", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Dash Pomerantz", "character": "Peppy's Boyfriend", "id": 1194485, "credit_id": "52fe48d7c3a368484e10d953", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Beau Nelson", "character": "Peppy's Boyfriend", "id": 1193414, "credit_id": "52fe48d7c3a368484e10d957", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Alex Holliday", "character": "Guard", "id": 1194487, "credit_id": "52fe48d7c3a368484e10d95b", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Wiley M. Pickett", "character": "Guard (as Wiley Pickett)", "id": 104191, "credit_id": "52fe48d7c3a368484e10d95f", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Ben Kurland", "character": "Audition Casting Assistant", "id": 1194488, "credit_id": "52fe48d7c3a368484e10d963", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Katie Nisa", "character": "Audition Dancer", "id": 104496, "credit_id": "52fe48d7c3a368484e10d967", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Katie Wallack", "character": "Audition Dancer (as Katie Wallick)", "id": 1194493, "credit_id": "52fe48d7c3a368484e10d96b", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Hal Landon Jr.", "character": "Napoleon", "id": 14801, "credit_id": "52fe48d7c3a368484e10d96f", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Uggie", "character": "The Dog", "id": 1353977, "credit_id": "53f1a0230e0a2675a90053c0", "cast_id": 43, "profile_path": null, "order": 24}], "directors": [{"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe48d7c3a368484e10d8bb", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}], "vote_average": 7.2, "runtime": 100}, "62838": {"poster_path": "/el1pKVogVwmE1dpbeAO1Ol6y1Vl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The lives of several couples and singles in New York intertwine over the course of New Year's Eve.", "video": false, "id": 62838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "New Year's Eve", "tagline": "The one night anything is possible.", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1598822", "adult": false, "backdrop_path": "/ytraAX7JDhWF855MLa6R8gYaZ2y.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}], "release_date": "2011-12-09", "popularity": 1.0211476237591, "original_title": "New Year's Eve", "budget": 0, "cast": [{"name": "Robert De Niro", "character": "Harry", "id": 380, "credit_id": "52fe468fc3a368484e0976dd", "cast_id": 3, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Katherine Heigl", "character": "Laura Carrington", "id": 25541, "credit_id": "52fe468fc3a368484e0976e1", "cast_id": 4, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 1}, {"name": "Ashton Kutcher", "character": "Randy", "id": 18976, "credit_id": "52fe468fc3a368484e0976e5", "cast_id": 5, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 2}, {"name": "Carla Gugino", "character": "", "id": 17832, "credit_id": "52fe468fc3a368484e0976e9", "cast_id": 6, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 3}, {"name": "Lea Michele", "character": "Elise", "id": 128206, "credit_id": "52fe468fc3a368484e0976ed", "cast_id": 7, "profile_path": "/3oInWU00oD2QHOwMxyYxVOl5ZWK.jpg", "order": 4}, {"name": "Zac Efron", "character": "Paul", "id": 29222, "credit_id": "52fe468fc3a368484e0976f1", "cast_id": 8, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 5}, {"name": "Josh Duhamel", "character": "Sam", "id": 19536, "credit_id": "52fe468fc3a368484e0976f5", "cast_id": 9, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 6}, {"name": "Jessica Biel", "character": "Tess", "id": 10860, "credit_id": "52fe468fc3a368484e0976f9", "cast_id": 10, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 7}, {"name": "Halle Berry", "character": "", "id": 4587, "credit_id": "52fe468fc3a368484e0976fd", "cast_id": 11, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 8}, {"name": "Sof\u00eda Vergara", "character": "Ava", "id": 63522, "credit_id": "52fe468fc3a368484e097701", "cast_id": 12, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 9}, {"name": "Abigail Breslin", "character": "Hailey", "id": 17140, "credit_id": "52fe468fc3a368484e097705", "cast_id": 13, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 10}, {"name": "Alyssa Milano", "character": "Melanie", "id": 24967, "credit_id": "52fe468fc3a368484e097709", "cast_id": 14, "profile_path": "/s1aew8uoqK993VBU33LE5JwtOkO.jpg", "order": 11}, {"name": "Hilary Swank", "character": "Claire Morgan", "id": 448, "credit_id": "52fe468fc3a368484e09770d", "cast_id": 15, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 12}, {"name": "Sarah Jessica Parker", "character": "Kate", "id": 520, "credit_id": "52fe468fc3a368484e097711", "cast_id": 16, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 13}, {"name": "Michelle Pfeiffer", "character": "Ingrid", "id": 1160, "credit_id": "52fe468fc3a368484e097715", "cast_id": 17, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 14}, {"name": "Cary Elwes", "character": "Stan's Doctor", "id": 2130, "credit_id": "5382fc1e0e0a2624b400c283", "cast_id": 19, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 16}, {"name": "Seth Meyers", "character": "", "id": 62856, "credit_id": "5382fc5e0e0a2624b700c2fc", "cast_id": 24, "profile_path": "/pAw8sFWinnfxKe906nSYDw6UsUr.jpg", "order": 21}, {"name": "Fiona Choi", "character": "Balinese Woman - Resolution Tour", "id": 1358760, "credit_id": "5402776fc3a3682d9800250b", "cast_id": 25, "profile_path": "/vvAQXfJJ5sZO4twkRceDkxTz3w3.jpg", "order": 22}], "directors": [{"name": "Garry Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe468fc3a368484e0976d3", "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "id": 1201}], "vote_average": 5.7, "runtime": 118}, "13690": {"poster_path": "/qNkuK6f2MwKInBdsfsEUAHJjXKg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Boog and Elliot are back for more crazy adventures! After falling head over hooves in love with Giselle, Elliot's road to the alter takes a detour when Mr Weenie is kidnapped by a group of pampered pets determined to return him to his owners. Boog, Elliot, McSqizzy and the rest of the woodland creatures launch a full-scale mission to rescue their friend and soon find themselves in enemy camp...", "video": false, "id": 13690, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Open Season 2", "tagline": "This time it's pets against wilds. Wiener takes all!", "vote_count": 65, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cnaLzqjxlqGMIp7AGCizfVXUhSn.jpg", "poster_path": "/ePeybVSOnCmuWrrvGEp8hzWn979.jpg", "id": 66761, "name": "Open Season Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1107365", "adult": false, "backdrop_path": "/nyPzpQ2myGLpEfnc9KDa0GUhImK.jpg", "production_companies": [{"name": "Sony Pictures Home Entertainment", "id": 5388}, {"name": "Sony Pictures Animation", "id": 2251}, {"name": "Reel FX Creative Studios", "id": 2787}], "release_date": "2008-11-06", "popularity": 0.578385150205488, "original_title": "Open Season 2", "budget": 0, "cast": [{"name": "Mike Epps", "character": "Boog (Voice)", "id": 51944, "credit_id": "52fe458c9251416c7505a54b", "cast_id": 3, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 0}, {"name": "Joel McHale", "character": "Elliot (Voice)", "id": 74949, "credit_id": "52fe458c9251416c7505a54f", "cast_id": 4, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 1}, {"name": "Jane Krakowski", "character": "Giselle (Voice)", "id": 13636, "credit_id": "52fe458c9251416c7505a553", "cast_id": 5, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 2}, {"name": "Billy Connolly", "character": "McSquizzy (voice)", "id": 9188, "credit_id": "52fe458c9251416c7505a55d", "cast_id": 7, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 3}, {"name": "Crispin Glover", "character": "Fifi (voice)", "id": 1064, "credit_id": "52fe458c9251416c7505a561", "cast_id": 8, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 4}, {"name": "Steve Schirripa", "character": "Roberto (voice)", "id": 97188, "credit_id": "52fe458c9251416c7505a565", "cast_id": 9, "profile_path": "/qz3X10hyuKC0Cn4ni4SQhfWnB9I.jpg", "order": 5}, {"name": "Georgia Engel", "character": "Bobbie (voice)", "id": 52697, "credit_id": "52fe458c9251416c7505a569", "cast_id": 10, "profile_path": "/7WfD6MAZtQgT6qIthTDvYzfYj0c.jpg", "order": 6}, {"name": "Diedrich Bader", "character": "Rufus (voice)", "id": 5727, "credit_id": "52fe458c9251416c7505a56d", "cast_id": 11, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 7}, {"name": "Cody Cameron", "character": "Mr. Weenie (voice)", "id": 12095, "credit_id": "52fe458c9251416c7505a571", "cast_id": 12, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 8}, {"name": "Fred Stoller", "character": "Stanley (voice)", "id": 162610, "credit_id": "52fe458c9251416c7505a575", "cast_id": 13, "profile_path": "/jLwQE3IUKRPRcriaXBbk7FsOQ6E.jpg", "order": 9}, {"name": "Olivia Hack", "character": "Charlene (voice)", "id": 116437, "credit_id": "52fe458c9251416c7505a579", "cast_id": 14, "profile_path": "/sL2ocsjvwZxbStRcYoUnnZ4G3XR.jpg", "order": 10}, {"name": "Danny Mann", "character": "Serge (voice)", "id": 52699, "credit_id": "52fe458c9251416c7505a57d", "cast_id": 15, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 11}, {"name": "Matthew W. Taylor", "character": "Deni / Buddy / Ian (voice)", "id": 144219, "credit_id": "52fe458c9251416c7505a581", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Nika Futterman", "character": "Rosie (voice)", "id": 52698, "credit_id": "52fe458c9251416c7505a585", "cast_id": 17, "profile_path": "/xHBt7N6YVvfgQJuWAJ74xLKF9Dr.jpg", "order": 13}, {"name": "Sean Mullen", "character": "Roger (voice)", "id": 144218, "credit_id": "52fe458c9251416c7505a589", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Michelle Murdocca", "character": "Maria (voice)", "id": 52700, "credit_id": "52fe458c9251416c7505a58d", "cast_id": 19, "profile_path": "/finkYD4yK5hbvXNKwiN8PToWPa2.jpg", "order": 15}, {"name": "Jacquie Barnbrook", "character": "Fifi's Owner (voice)", "id": 42291, "credit_id": "52fe458c9251416c7505a591", "cast_id": 20, "profile_path": "/5quzMDQwCHVdkoZmHuhjsgt2m6y.jpg", "order": 16}], "directors": [{"name": "Matthew O'Callaghan", "department": "Directing", "job": "Director", "credit_id": "52fe458c9251416c7505a541", "profile_path": null, "id": 61290}, {"name": "Todd Wilderman", "department": "Directing", "job": "Director", "credit_id": "52fe458c9251416c7505a547", "profile_path": null, "id": 74948}], "vote_average": 5.6, "runtime": 76}, "87421": {"poster_path": "/duoN6oNGp1emHkkhlTcY76Wz2ED.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 98337295, "overview": "Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.", "video": false, "id": 87421, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Riddick", "tagline": "Survival Is His Revenge", "vote_count": 1031, "homepage": "http://www.riddick-movie.com", "belongs_to_collection": {"backdrop_path": "/xb5zyHecWA7UACdiNPXDA3m5HSY.jpg", "poster_path": "/4R2zrqk9KzgxU9UDH3yUUsENXR.jpg", "id": 2794, "name": "The Chronicles of Riddick Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1411250", "adult": false, "backdrop_path": "/bMMhbyEUudWOLOcgHORZ57LArRL.jpg", "production_companies": [{"name": "One Race Productions", "id": 1225}, {"name": "Radar Pictures", "id": 14718}, {"name": "Riddick Canada Productions", "id": 23634}], "release_date": "2013-09-06", "popularity": 3.00918728242402, "original_title": "Riddick", "budget": 38000000, "cast": [{"name": "Vin Diesel", "character": "Riddick", "id": 12835, "credit_id": "52fe49c39251416c910b810b", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Karl Urban", "character": "Lord Vaako", "id": 1372, "credit_id": "52fe49c39251416c910b810f", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 1}, {"name": "Katee Sackhoff", "character": "Dahl", "id": 51798, "credit_id": "52fe49c39251416c910b8113", "cast_id": 3, "profile_path": "/2L1I8xKtXQG5DxKPmuaVdgWyWQl.jpg", "order": 2}, {"name": "Jordi Moll\u00e0", "character": "Santana", "id": 31384, "credit_id": "52fe49c39251416c910b8117", "cast_id": 4, "profile_path": "/A648UpxxLlgdqziafgSCAVaR0Sc.jpg", "order": 3}, {"name": "Bokeem Woodbine", "character": "Moss", "id": 71913, "credit_id": "52fe49c39251416c910b811b", "cast_id": 5, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 4}, {"name": "Nolan Gerard Funk", "character": "Luna", "id": 82819, "credit_id": "52fe49c39251416c910b811f", "cast_id": 7, "profile_path": "/ngXbdQRDXQRWpHgWrrjyunWMKai.jpg", "order": 5}, {"name": "Noah Danby", "character": "Nunez", "id": 172915, "credit_id": "52fe49c39251416c910b8135", "cast_id": 15, "profile_path": "/ws7b5qTz54hv6bIhi5pg8TYNSQy.jpg", "order": 6}, {"name": "Neil Napier", "character": "Rubio", "id": 105496, "credit_id": "52fe49c39251416c910b8139", "cast_id": 16, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 7}, {"name": "Keri Hilson", "character": "Santana's Prisoner", "id": 1151352, "credit_id": "52fe49c39251416c910b813d", "cast_id": 17, "profile_path": "/bmrHsGOx35pcYKXjn1aEL7sb5Rd.jpg", "order": 8}, {"name": "Dave Bautista", "character": "Diaz", "id": 543530, "credit_id": "52fe49c39251416c910b8141", "cast_id": 18, "profile_path": "/21bkLWMVWkSWy0KHrvJrfZFJ94V.jpg", "order": 9}, {"name": "Matthew Nable", "character": "Boss Johns", "id": 123879, "credit_id": "52fe49c39251416c910b8145", "cast_id": 19, "profile_path": "/yE5MHKIUreuzL5bEgh8NTN8bSYe.jpg", "order": 10}, {"name": "Andreas Apergis", "character": "Krone", "id": 102852, "credit_id": "5300c5669251416adb336bdc", "cast_id": 32, "profile_path": "/gJkFCQB8qHw5woqxyOqoqfgFqlT.jpg", "order": 11}], "directors": [{"name": "David Twohy", "department": "Directing", "job": "Director", "credit_id": "52fe49c49251416c910b8187", "profile_path": "/7hJbNy5XKO5je9FsSGvl4QbGyMM.jpg", "id": 28239}], "vote_average": 6.1, "runtime": 119}, "5503": {"poster_path": "/wT4WciVkwwcMYFZpdnaId3d14s7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 368875760, "overview": "Dr. Richard Kimble, unjustly accused of murdering his wife, must find the real killer while being the target of a nationwide manhunt.", "video": false, "id": 5503, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Fugitive", "tagline": "A murdered wife. A one-armed man. An obsessed detective. The chase begins.", "vote_count": 383, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/idhUzfuEC24PTYhkWasivjoA3O0.jpg", "id": 134011, "name": "The Fugitive / U.S. Marshals Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106977", "adult": false, "backdrop_path": "/3Ysxx71oqh3ibroruBKntJH2rfu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1993-08-05", "popularity": 1.24862263437459, "original_title": "The Fugitive", "budget": 40000000, "cast": [{"name": "Harrison Ford", "character": "Dr. Kimble", "id": 3, "credit_id": "52fe440ac3a36847f807eb29", "cast_id": 2, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Samuel Gerard", "id": 2176, "credit_id": "52fe440ac3a36847f807eb2d", "cast_id": 3, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Sela Ward", "character": "Helen Kimble", "id": 6068, "credit_id": "52fe440ac3a36847f807eb31", "cast_id": 4, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 2}, {"name": "Julianne Moore", "character": "Dr. Anne Eastman", "id": 1231, "credit_id": "52fe440ac3a36847f807eb35", "cast_id": 5, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 3}, {"name": "Thomas Mills Wood", "character": "Newman", "id": 43772, "credit_id": "52fe440ac3a36847f807eb39", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Joe Pantoliano", "character": "Cosmo Renfro", "id": 532, "credit_id": "52fe440ac3a36847f807eb3d", "cast_id": 7, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 5}, {"name": "Andreas Katsulas", "character": "Sykes", "id": 43773, "credit_id": "52fe440ac3a36847f807eb41", "cast_id": 8, "profile_path": "/z1bbvx6O7VWGrtxCFugo5aCyqMS.jpg", "order": 6}, {"name": "Jeroen Krabb\u00e9", "character": "Dr. Charles Nichols", "id": 1924, "credit_id": "52fe440ac3a36847f807eb45", "cast_id": 9, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 7}, {"name": "Daniel Roebuck", "character": "Biggs", "id": 43774, "credit_id": "52fe440ac3a36847f807eb49", "cast_id": 10, "profile_path": "/uFt0W1kfHylxEZwXFfwzhThG5Jd.jpg", "order": 8}, {"name": "L. Scott Caldwell", "character": "Poole", "id": 29051, "credit_id": "52fe440ac3a36847f807eb4d", "cast_id": 11, "profile_path": "/p5W9yIDt269Tb4KMMKI8AeO4jJi.jpg", "order": 9}, {"name": "Jane Lynch", "character": "Dr. Kathy Wahlund", "id": 43775, "credit_id": "52fe440ac3a36847f807eb51", "cast_id": 12, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 10}, {"name": "Neil Flynn", "character": "Polizist", "id": 43776, "credit_id": "52fe440ac3a36847f807eb55", "cast_id": 13, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 11}], "directors": [{"name": "Andrew Davis", "department": "Directing", "job": "Director", "credit_id": "52fe440ac3a36847f807eb25", "profile_path": "/vE3ls4wUsHQZAtu4gIzTIeQEmMG.jpg", "id": 12989}], "vote_average": 6.8, "runtime": 130}, "87428": {"poster_path": "/2SuDV2uwRGgvpYgTI9CKErtyro1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "While in his teens, Donny fathered a son, Todd, and raised him as a single parent up until Todd's 18th birthday. Now, after not seeing each other for years, Todd's world comes crashing down when Donny resurfaces just before Todd's wedding.", "video": false, "id": 87428, "genres": [{"id": 35, "name": "Comedy"}], "title": "That's My Boy", "tagline": "The story of a child\u2026 and his son.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1232200", "adult": false, "backdrop_path": "/hgOcs1nIrwKKEcB4roDcIAwuql8.jpg", "production_companies": [{"name": "Happy Madison Productions", "id": 2608}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2012-06-15", "popularity": 0.657127228165194, "original_title": "That's My Boy", "budget": 70000000, "cast": [{"name": "Adam Sandler", "character": "Donny", "id": 19292, "credit_id": "52fe49c49251416c910b81dd", "cast_id": 3, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Mary McGarricle", "id": 4038, "credit_id": "52fe49c49251416c910b81e1", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Eva Amurri", "character": "Ms. McGarricle", "id": 56757, "credit_id": "52fe49c49251416c910b81fb", "cast_id": 12, "profile_path": "/nQiWOJKo3l9yjVNu28p5egp3Hxj.jpg", "order": 2}, {"name": "Leighton Meester", "character": "Jamie", "id": 85825, "credit_id": "52fe49c49251416c910b81e5", "cast_id": 7, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 3}, {"name": "Andy Samberg", "character": "Todd", "id": 62861, "credit_id": "52fe49c49251416c910b81e9", "cast_id": 8, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 4}, {"name": "Dan Patrick", "character": "Randall Morgan", "id": 166029, "credit_id": "52fe49c49251416c910b81f3", "cast_id": 10, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 5}, {"name": "James Caan", "character": "Father McNally", "id": 3085, "credit_id": "52fe49c49251416c910b81f7", "cast_id": 11, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "Carrie Wiita", "character": "Bridesmaid", "id": 967540, "credit_id": "532a0570c3a3681fea000407", "cast_id": 16, "profile_path": "/2QavBKpi3pgvU1OktSN0lM3HAEk.jpg", "order": 7}, {"name": "Vanilla Ice", "character": "Vanilla Ice", "id": 17338, "credit_id": "5341d2df0e0a2679a4002b8f", "cast_id": 17, "profile_path": "/zAMN2U7PM75gTheQhlWAD6ttHzb.jpg", "order": 8}, {"name": "Todd Bridges", "character": "Todd Bridges", "id": 75340, "credit_id": "5341d3050e0a2679aa002b45", "cast_id": 18, "profile_path": "/706FZ1kwFTEP1G6cTyk7ANPwfiu.jpg", "order": 9}], "directors": [{"name": "Sean Anders", "department": "Directing", "job": "Director", "credit_id": "52fe49c49251416c910b81d9", "profile_path": "/9PsLZSfLinkQJMFzxLp0pKMWkt5.jpg", "id": 74619}], "vote_average": 5.7, "runtime": 116}, "5516": {"poster_path": "/mqky2h0qDlQAZyeBwkauyRZPtiC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord: a sharp old woman.", "video": false, "id": 5516, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Ladykillers", "tagline": "The greatest criminal minds of all time have finally met their match.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "vi", "name": "Ti\u1ebfng Vi\u1ec7t"}], "imdb_id": "tt0335245", "adult": false, "backdrop_path": "/nS1Vol9k3hkISYRyGK6w9bh5XP.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "The Jacobson Company", "id": 3638}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2004-03-26", "popularity": 0.749424631598972, "original_title": "The Ladykillers", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Professor G.H. Dorr", "id": 31, "credit_id": "52fe440bc3a36847f807ef5f", "cast_id": 14, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Irma P. Hall", "character": "Marva Munson", "id": 43853, "credit_id": "52fe440bc3a36847f807ef63", "cast_id": 15, "profile_path": "/g9iOsZ3BaX1lmJTXWXkDNvQMjZn.jpg", "order": 1}, {"name": "Marlon Wayans", "character": "Gawain MacSam", "id": 9562, "credit_id": "52fe440bc3a36847f807ef67", "cast_id": 16, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 2}, {"name": "J.K. Simmons", "character": "Garth Pancake", "id": 18999, "credit_id": "52fe440bc3a36847f807ef6b", "cast_id": 17, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 3}, {"name": "Tzi Ma", "character": "The General", "id": 21629, "credit_id": "52fe440bc3a36847f807ef6f", "cast_id": 18, "profile_path": "/qhE0WSceO8bwZcZ7Ssi8qhQb7xD.jpg", "order": 4}, {"name": "Ryan Hurst", "character": "Lump Hudson", "id": 43858, "credit_id": "52fe440bc3a36847f807ef73", "cast_id": 19, "profile_path": "/gxfxKYgEM370QgnRs3Q4iUHf2Gm.jpg", "order": 5}, {"name": "Diane Delano", "character": "Mountain Girl", "id": 43859, "credit_id": "52fe440bc3a36847f807ef77", "cast_id": 20, "profile_path": "/rzgAYv4C1pwwefA18LNb1ukw9FI.jpg", "order": 6}, {"name": "George Wallace", "character": "Sherriff Wyner", "id": 552139, "credit_id": "52fe440bc3a36847f807ef7f", "cast_id": 23, "profile_path": "/dlELhZZSyzTXY7IVkFzwwcfMlFU.jpg", "order": 7}, {"name": "John McConnell", "character": "Deputy Sheriff", "id": 16459, "credit_id": "52fe440bc3a36847f807ef7b", "cast_id": 22, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 8}], "directors": [{"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe440bc3a36847f807ef1f", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}, {"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe440bc3a36847f807ef25", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}], "vote_average": 5.9, "runtime": 104}, "8367": {"poster_path": "/bDqqiu3yi7V5idgdei61XBairBZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 390493908, "overview": "When the dastardly Sheriff of Nottingham murders Robin's father, the legendary archer vows vengeance. To accomplish his mission, Robin joins forces with a band of exiled villagers (and comely Maid Marian), and together they battle to end the evil sheriff's reign of terror.", "video": false, "id": 8367, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Robin Hood: Prince of Thieves", "tagline": "For the good of all men, and the love of one woman, he fought to uphold justice by breaking the law.", "vote_count": 237, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102798", "adult": false, "backdrop_path": "/5WcDtLGWvV7VMBpTah1Xrw5325A.jpg", "production_companies": [{"name": "Morgan Creek Productions", "id": 10210}, {"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1991-06-14", "popularity": 0.599325636206425, "original_title": "Robin Hood: Prince of Thieves", "budget": 48000000, "cast": [{"name": "Kevin Costner", "character": "Robin Hood", "id": 1269, "credit_id": "52fe44a3c3a36847f80a17d9", "cast_id": 1, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Azeem", "id": 192, "credit_id": "52fe44a3c3a36847f80a17dd", "cast_id": 2, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Christian Slater", "character": "Will Scarlett", "id": 2224, "credit_id": "52fe44a3c3a36847f80a17e1", "cast_id": 3, "profile_path": "/9CB3uFqhYla5QTzyRbQ2dJBzepJ.jpg", "order": 2}, {"name": "Mary Elizabeth Mastrantonio", "character": "Marian", "id": 1161, "credit_id": "52fe44a3c3a36847f80a17e5", "cast_id": 4, "profile_path": "/jNIGODCEy216bbPnj28ky5E4L3Q.jpg", "order": 3}, {"name": "Alan Rickman", "character": "Sheriff von Nottingham", "id": 4566, "credit_id": "52fe44a3c3a36847f80a17e9", "cast_id": 5, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 4}, {"name": "Geraldine McEwan", "character": "Mortianna", "id": 8326, "credit_id": "52fe44a3c3a36847f80a1823", "cast_id": 15, "profile_path": "/99RxYdI81YBS6sZO3AW6rtYlmfH.jpg", "order": 5}, {"name": "Michael McShane", "character": "Friar Tuck (as Micheal McShane)", "id": 8316, "credit_id": "52fe44a3c3a36847f80a1827", "cast_id": 16, "profile_path": "/aCiOde1ijVveYObBCxtWWRi9UP9.jpg", "order": 6}, {"name": "Brian Blessed", "character": "Lord Locksley", "id": 8318, "credit_id": "52fe44a3c3a36847f80a182b", "cast_id": 17, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 7}, {"name": "Michael Wincott", "character": "Guy of Gisborne", "id": 7486, "credit_id": "52fe44a3c3a36847f80a182f", "cast_id": 18, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 8}, {"name": "Nick Brimble", "character": "Little John", "id": 8319, "credit_id": "52fe44a3c3a36847f80a1833", "cast_id": 19, "profile_path": "/mVp18zKRN4OjEJFwBD1i5SRMI3x.jpg", "order": 9}, {"name": "Soo Drouet", "character": "Fanny", "id": 1039998, "credit_id": "52fe44a3c3a36847f80a1837", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Sean Connery", "character": "King Richard (uncredited)", "id": 738, "credit_id": "52fe44a3c3a36847f80a183b", "cast_id": 21, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 11}, {"name": "Bryan Adams", "character": "The Balladeer (uncredited)", "id": 56683, "credit_id": "52fe44a3c3a36847f80a183f", "cast_id": 22, "profile_path": "/exOjr77iCikhWMG46IjGGStmbAG.jpg", "order": 12}], "directors": [{"name": "Kevin Reynolds", "department": "Directing", "job": "Director", "credit_id": "52fe44a3c3a36847f80a17ef", "profile_path": "/drxXtPvCxVtw0VLn1on073OrW9s.jpg", "id": 8300}], "vote_average": 6.4, "runtime": 143}, "144789": {"poster_path": "/qMqjv4RhGkX53SysJ6yP5HCStY8.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "The film is an ensemble comedy written and directed by Pedro Almod\u00f3var. When it appears as though the end is in sight, the pilots, flight crew, and passengers of a plane heading to Mexico City look to forget the anguish of the moment and face the greatest danger, which we carry within ourselves.", "video": false, "id": 144789, "genres": [{"id": 35, "name": "Comedy"}], "title": "I'm So Excited!", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2243389", "adult": false, "backdrop_path": "/sIfz9wz5O8yApfzqNILGvwRg2ym.jpg", "production_companies": [{"name": "El Deseo S.A.", "id": 11736}], "release_date": "2013-03-08", "popularity": 0.237817238267052, "original_title": "Los amantes pasajeros", "budget": 0, "cast": [{"name": "Antonio Banderas", "character": "Le\u00f3n", "id": 3131, "credit_id": "52fe4b429251416c750fd2eb", "cast_id": 6, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Jessica", "id": 955, "credit_id": "52fe4b429251416c750fd2e7", "cast_id": 5, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Javier C\u00e1mara", "character": "Joserra", "id": 1610, "credit_id": "52fe4b429251416c750fd2ff", "cast_id": 11, "profile_path": "/pbS8PFYTSh2LqODPUuygKLmytVu.jpg", "order": 2}, {"name": "Carlos Areces", "character": "Fajas", "id": 114461, "credit_id": "52fe4b429251416c750fd33b", "cast_id": 23, "profile_path": "/cFZOFofSWOZUDTprP3xMxfkunFi.jpg", "order": 3}, {"name": "Ra\u00fal Ar\u00e9valo", "character": "Ulloa", "id": 34021, "credit_id": "52fe4b429251416c750fd33f", "cast_id": 24, "profile_path": "/eFy3FCRCprRsCsaVQ63yrZJsy5W.jpg", "order": 4}, {"name": "Paz Vega", "character": "Alba", "id": 3627, "credit_id": "52fe4b429251416c750fd2ef", "cast_id": 7, "profile_path": "/udWWXRwyoqTr9vBqTJWyyJ7An5q.jpg", "order": 5}, {"name": "Antonio de la Torre", "character": "\u00c1lex Acero", "id": 3483, "credit_id": "52fe4b429251416c750fd34b", "cast_id": 27, "profile_path": "/6gLwqdiKMB2s7ymeRAaHZlvGjvR.jpg", "order": 6}, {"name": "Lola Due\u00f1as", "character": "Bruna", "id": 2759, "credit_id": "52fe4b429251416c750fd2f7", "cast_id": 9, "profile_path": "/r5rHHPDV7flRGF2qQ885VsKTp5K.jpg", "order": 7}, {"name": "Hugo Silva", "character": "Benito Mor\u00f3n", "id": 112901, "credit_id": "52fe4b429251416c750fd303", "cast_id": 12, "profile_path": "/sVwz2GJptxt2ZQIuRx3zfsTHBVe.jpg", "order": 8}, {"name": "Blanca Su\u00e1rez", "character": "Ruth", "id": 106817, "credit_id": "52fe4b429251416c750fd2f3", "cast_id": 8, "profile_path": "/cJuwbx6SEdBEWqBUHZoZysyiIm8.jpg", "order": 9}, {"name": "Cecilia Roth", "character": "Norma Bosch", "id": 953, "credit_id": "52fe4b429251416c750fd2fb", "cast_id": 10, "profile_path": "/oqZ6V4dE5iztjM6bXjqyg7PkYZX.jpg", "order": 10}, {"name": "Miguel \u00c1ngel Silvestre", "character": "El novio", "id": 121689, "credit_id": "52fe4b429251416c750fd307", "cast_id": 14, "profile_path": "/kg7NGJSc8nEP5luYe2mwqDfVrPT.jpg", "order": 11}, {"name": "Laya Mart\u00ed", "character": "Novia", "id": 590299, "credit_id": "52fe4b429251416c750fd347", "cast_id": 26, "profile_path": "/wQRLsCiUcQkPUYxyTzxUQ3GewXc.jpg", "order": 12}, {"name": "Jos\u00e9 Mar\u00eda Yazpik", "character": "Infante", "id": 72128, "credit_id": "52fe4b429251416c750fd34f", "cast_id": 28, "profile_path": "/nAqoMEyfAtRbLjvREkncXYbnZeE.jpg", "order": 13}, {"name": "Guillermo Toledo", "character": "Ricardo Gal\u00e1n", "id": 27460, "credit_id": "52fe4b429251416c750fd353", "cast_id": 29, "profile_path": "/6uFnKwU9kgGZsOADnZz5G4CpLEb.jpg", "order": 14}, {"name": "Agust\u00edn Almod\u00f3var", "character": "Controlador", "id": 952, "credit_id": "52fe4b429251416c750fd357", "cast_id": 31, "profile_path": "/ooCA6ucXzgTZ1NhiwFNnzW7uRsH.jpg", "order": 15}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe4b429251416c750fd2d1", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 5.8, "runtime": 90}, "5528": {"poster_path": "/mQUHKT3XuhxzmtuCZC6NgZ70Alc.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Set in 1940's France, a new teacher at a school for disruptive boys gives hope and inspiration.", "video": false, "id": 5528, "genres": [{"id": 18, "name": "Drama"}], "title": "The Chorus", "tagline": "", "vote_count": 96, "homepage": "http://www.pathedistribution.com/accueil/filmcatalogue.php?IDFilm=498", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0372824", "adult": false, "backdrop_path": "/cBjvmFoFSF2rpu1WNsLj6VmbhQK.jpg", "production_companies": [{"name": "Galat\u00e9e Films", "id": 793}, {"name": "Path\u00e9 Renn Productions", "id": 866}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Novo Arturo Films", "id": 1168}, {"name": "Vega Film", "id": 8138}], "release_date": "2004-03-17", "popularity": 0.235964199174144, "original_title": "Les choristes", "budget": 0, "cast": [{"name": "G\u00e9rard Jugnot", "character": "Cl\u00e9ment Mathieu", "id": 21171, "credit_id": "52fe440cc3a36847f807f4f3", "cast_id": 11, "profile_path": "/xlFmLH6cGfHPKdvyoYZitfB8Txf.jpg", "order": 0}, {"name": "Fran\u00e7ois Berl\u00e9and", "character": "Rachin", "id": 7693, "credit_id": "52fe440cc3a36847f807f4f7", "cast_id": 12, "profile_path": "/aYovCmuWKIuNRMUwePdH5b6ZlKF.jpg", "order": 1}, {"name": "Jean-Baptiste Maunier", "character": "Pierre Morhange", "id": 43996, "credit_id": "52fe440cc3a36847f807f4fb", "cast_id": 13, "profile_path": "/AhaMIUITEAZeV8vcFYS43lVkaiC.jpg", "order": 2}, {"name": "Kad Merad", "character": "Chabert", "id": 22306, "credit_id": "52fe440cc3a36847f807f4ff", "cast_id": 14, "profile_path": "/f4JcXZqLZBPZyCMmqES4zOWlji6.jpg", "order": 3}, {"name": "Maxence Perrin", "character": "P\u00e9pinot", "id": 43997, "credit_id": "52fe440cc3a36847f807f503", "cast_id": 15, "profile_path": "/zW2xdHp5H7L8R1ed74ZReubong5.jpg", "order": 4}, {"name": "Marie Bunel", "character": "Violette Morhange", "id": 28793, "credit_id": "52fe440cc3a36847f807f507", "cast_id": 16, "profile_path": "/mN0zV9yyYwifkM8Kpywd9nJL9p6.jpg", "order": 5}, {"name": "Jean-Paul Bonnaire", "character": "P\u00e8re Maxence", "id": 43998, "credit_id": "52fe440cc3a36847f807f50b", "cast_id": 17, "profile_path": "/r0O1V4ppKvcJIaekUnZO6pZQZPF.jpg", "order": 6}, {"name": "Gr\u00e9gory Gatignol", "character": "Pascal Mondain", "id": 43999, "credit_id": "53a9d44fc3a3684d0b0001b6", "cast_id": 18, "profile_path": "/rctSbXAxJX1keEN46XeriSaYAfL.jpg", "order": 7}, {"name": "Thomas Blumenthal", "character": "Corbin", "id": 1334021, "credit_id": "53a9d47fc3a3684d100001c6", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Cyril Bernicot", "character": "Le Querrec", "id": 1334022, "credit_id": "53a9d4f30e0a2646d5000227", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Simon Fargeot", "character": "Boniface", "id": 1334023, "credit_id": "53a9d5400e0a2646d500022c", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Th\u00e9odule Carr\u00e9-Cassaigne", "character": "Leclerc", "id": 1334024, "credit_id": "53a9d5920e0a2646c8000298", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Philippe du Janerand", "character": "Monsieur Langlois", "id": 550110, "credit_id": "53a9d5df0e0a2646cc000252", "cast_id": 23, "profile_path": "/h6cm0cwVnaLu3i3KD2AOwxeinPf.jpg", "order": 12}, {"name": "Carole Weiss", "character": "La comtesse", "id": 583220, "credit_id": "53a9d6110e0a2646cf000260", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Erick Desmarestz", "character": "Le docteur Dervaux", "id": 48418, "credit_id": "53a9d6390e0a2646cf000263", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Didier Flamand", "character": "P\u00e9pinot adulte", "id": 35077, "credit_id": "53a9d65b0e0a2646d200026a", "cast_id": 26, "profile_path": "/mYIHYvT9D6tw7zxXI6f5W89kyus.jpg", "order": 15}, {"name": "Jacques Perrin", "character": "Pierre Morhange adulte", "id": 20030, "credit_id": "53a9d68b0e0a2646c500024d", "cast_id": 27, "profile_path": "/dC3hgCkcTvsrw6fKxxTegJDQRzp.jpg", "order": 16}], "directors": [{"name": "Christophe Barratier", "department": "Directing", "job": "Director", "credit_id": "52fe440cc3a36847f807f4bf", "profile_path": "/Eci3c1JhMmURu7uP8s2VxXfXOV.jpg", "id": 43993}], "vote_average": 7.4, "runtime": 93}, "38303": {"poster_path": "/8WdXpoFCEUReirxSn3SDAMXG1q5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32005248, "overview": "History -- make that high school -- may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn't change its stripes. On Marni's side is her mother, while Joanna's backed by her wealthy aunt.", "video": false, "id": 38303, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "You Again", "tagline": "What doesn't kill you... is going to marry your brother.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1414382", "adult": false, "backdrop_path": "/5UzOjubnaMZRrFYzvNrPvZFqFez.jpg", "production_companies": [{"name": "Oops Doughnuts Productions", "id": 5698}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Frontier Pictures", "id": 11837}], "release_date": "2010-09-24", "popularity": 0.703540552738685, "original_title": "You Again", "budget": 20000000, "cast": [{"name": "Kristen Bell", "character": "Marni", "id": 40462, "credit_id": "52fe46a89251416c9105b72f", "cast_id": 3, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 0}, {"name": "Sigourney Weaver", "character": "Aunt Ramona", "id": 10205, "credit_id": "52fe46a89251416c9105b733", "cast_id": 4, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 1}, {"name": "Betty White", "character": "Grandma Bunny", "id": 71727, "credit_id": "52fe46a89251416c9105b737", "cast_id": 5, "profile_path": "/4cPsS3xppS2EKPwf6j4VJMzIBZ8.jpg", "order": 2}, {"name": "Kristin Chenoweth", "character": "Georgia King", "id": 52775, "credit_id": "52fe46a89251416c9105b73b", "cast_id": 6, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 3}, {"name": "Odette Annable", "character": "Joanna", "id": 51992, "credit_id": "52fe46a89251416c9105b73f", "cast_id": 7, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 4}, {"name": "Jamie Lee Curtis", "character": "Gail", "id": 8944, "credit_id": "52fe46a89251416c9105b743", "cast_id": 8, "profile_path": "/c4poMDwQ0nUj81m4WPriiv96ExZ.jpg", "order": 5}, {"name": "Christine Lakin", "character": "Taylor", "id": 30882, "credit_id": "52fe46a89251416c9105b747", "cast_id": 9, "profile_path": "/gjhJYhtmVKRsn5hecrQIplSP8Dd.jpg", "order": 6}, {"name": "Cloris Leachman", "character": "Helen", "id": 9599, "credit_id": "52fe46a89251416c9105b74b", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 7}, {"name": "James Wolk", "character": "Will", "id": 222129, "credit_id": "52fe46a89251416c9105b74f", "cast_id": 12, "profile_path": "/eMCEJTHXosfuX5hJfAM4uT5eIv7.jpg", "order": 8}, {"name": "Victor Garber", "character": "Mark", "id": 8536, "credit_id": "52fe46a89251416c9105b795", "cast_id": 24, "profile_path": "/xFgPEfVEqz7Li2xoyjRPEKCjCrH.jpg", "order": 9}, {"name": "Kyle Bornheimer", "character": "Tim", "id": 1215836, "credit_id": "52fe46a89251416c9105b7a1", "cast_id": 28, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 10}, {"name": "Sean Wing", "character": "Charlie", "id": 98276, "credit_id": "52fe46a89251416c9105b799", "cast_id": 26, "profile_path": "/ssK2BjuzKVeJ609RIxSqBwEB2BL.jpg", "order": 11}, {"name": "Patrick Duffy", "character": "Richie Phillips", "id": 112574, "credit_id": "52fe46a89251416c9105b79d", "cast_id": 27, "profile_path": "/yYL8sdYVTYw0ZgLnS3TDbo49Lff.jpg", "order": 12}, {"name": "Ashley Fink", "character": "Sunday", "id": 564629, "credit_id": "52fe46a89251416c9105b7a5", "cast_id": 29, "profile_path": "/xC7bgJSis5sQscRrRi0ChncOLiU.jpg", "order": 13}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe46a89251416c9105b725", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.9, "runtime": 105}, "35056": {"poster_path": "/fzzPht9KId6Ollow30jYtABhDY3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152263880, "overview": "The mild-mannered married couple Phil and Claire fear that their relationship may be falling into a stale rut. During their weekly date night, they impetuously steal a dinner reservation, which leads to a case of mistaken identity. Turns out the reservation was for a pair of thieves, and now a number of unsavory characters want Phil and Claire killed.", "video": false, "id": 35056, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "Date Night", "tagline": "One ordinary couple. One little white lie.", "vote_count": 482, "homepage": "http://www.datenight-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1279935", "adult": false, "backdrop_path": "/plnmzCMPAb3suBAUJ4Yi2NC1APA.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Media Magik Entertainment", "id": 5627}], "release_date": "2010-04-08", "popularity": 0.854593091942927, "original_title": "Date Night", "budget": 55000000, "cast": [{"name": "Steve Carell", "character": "Phil Foster", "id": 4495, "credit_id": "52fe458e9251416c91036855", "cast_id": 1, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Tina Fey", "character": "Claire Foster", "id": 56323, "credit_id": "52fe458e9251416c91036859", "cast_id": 2, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 1}, {"name": "Mark Wahlberg", "character": "Holbrooke", "id": 13240, "credit_id": "52fe458e9251416c9103685d", "cast_id": 3, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 2}, {"name": "Taraji P. Henson", "character": "Detective Arroyo", "id": 40036, "credit_id": "52fe458e9251416c91036891", "cast_id": 12, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 3}, {"name": "Jimmi Simpson", "character": "Armstrong", "id": 22125, "credit_id": "52fe458e9251416c91036895", "cast_id": 13, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 4}, {"name": "William Fichtner", "character": "DA Frank Crenshaw", "id": 886, "credit_id": "52fe458e9251416c91036899", "cast_id": 14, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 5}, {"name": "Leighton Meester", "character": "Katy", "id": 85825, "credit_id": "52fe458e9251416c9103689d", "cast_id": 15, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 6}, {"name": "Kristen Wiig", "character": "Haley Sullivan", "id": 41091, "credit_id": "52fe458e9251416c910368a1", "cast_id": 16, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 7}, {"name": "Mark Ruffalo", "character": "Brad Sullivan", "id": 103, "credit_id": "52fe458e9251416c910368a5", "cast_id": 17, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 8}, {"name": "James Franco", "character": "Taste", "id": 17051, "credit_id": "52fe458e9251416c910368a9", "cast_id": 18, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 9}, {"name": "Mila Kunis", "character": "Whippit", "id": 18973, "credit_id": "52fe458e9251416c910368ad", "cast_id": 19, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 10}, {"name": "Olivia Munn", "character": "Claw Hostess", "id": 81364, "credit_id": "52fe458e9251416c910368b1", "cast_id": 20, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 11}, {"name": "Common", "character": "Collins", "id": 4238, "credit_id": "52fe458e9251416c910368b5", "cast_id": 21, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 12}, {"name": "Gal Gadot", "character": "Natanya", "id": 90633, "credit_id": "52fe458f9251416c910368b9", "cast_id": 22, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 13}, {"name": "Jon Bernthal", "character": "Young Man", "id": 19498, "credit_id": "5321b0ecc3a36824b5002053", "cast_id": 23, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 14}, {"name": "Lauren Weedman", "character": "Wendy", "id": 1375338, "credit_id": "54bb5d0392514148f0005011", "cast_id": 24, "profile_path": "/lOv2Uva44YRDvw2Ar4je2HToWID.jpg", "order": 15}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe458e9251416c91036863", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 5.8, "runtime": 97}, "177572": {"poster_path": "/3zQvuSAUdC3mrx9vnSEpkFX0968.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 224100000, "overview": "The special bond that develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.", "video": false, "id": 177572, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Big Hero 6", "tagline": "Balalalala", "vote_count": 1132, "homepage": "http://movies.disney.com/big-hero-6", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2245084", "adult": false, "backdrop_path": "/2BXd0t9JdVqCp9sKf6kzMkr7QjB.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2014-11-07", "popularity": 14.6797944042499, "original_title": "Big Hero 6", "budget": 165000000, "cast": [{"name": "Scott Adsit", "character": "Baymax (voice)", "id": 66580, "credit_id": "542e468fc3a3681e720017df", "cast_id": 23, "profile_path": "/8VTCE0c8RSLYsgRqA8UDPRbBvYm.jpg", "order": 0}, {"name": "Ryan Potter", "character": "Hiro Hamada (voice)", "id": 515510, "credit_id": "542e46770e0a261fd90018f1", "cast_id": 21, "profile_path": "/lKC6fdpcLaYJpDEQxitByUJQQZq.jpg", "order": 1}, {"name": "Daniel Henney", "character": "Tadashi Hamada (voice)", "id": 82093, "credit_id": "542e4682c3a36859d8001a94", "cast_id": 22, "profile_path": "/kR4h7S7ny30HaqJpe5rv88RrKYA.jpg", "order": 2}, {"name": "T.J. Miller", "character": "Fred (voice)", "id": 51990, "credit_id": "54a099a3c3a3685542008669", "cast_id": 33, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 3}, {"name": "Jamie Chung", "character": "GoGo Tomago (voice)", "id": 78324, "credit_id": "535e7927c3a36830a9005523", "cast_id": 4, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 4}, {"name": "Damon Wayans Jr.", "character": "Wasabi (voice)", "id": 87822, "credit_id": "542e4641c3a3682187001a7c", "cast_id": 18, "profile_path": "/wOYJdq19v0rnUTY9vC0BZJowQiC.jpg", "order": 5}, {"name": "G\u00e9nesis Rodr\u00edguez", "character": "Honey Lemon (voice)", "id": 589162, "credit_id": "542e4631c3a36859d8001a83", "cast_id": 17, "profile_path": "/vxpfF5QZWny1PflPXNePe5am4RI.jpg", "order": 6}, {"name": "James Cromwell", "character": "Professor Robert Callaghan (voice)", "id": 2505, "credit_id": "542e4663c3a36859d00018d9", "cast_id": 20, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 7}, {"name": "Alan Tudyk", "character": "Alistair Krei (voice)", "id": 21088, "credit_id": "542e46560e0a261fdf00192b", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 8}, {"name": "Maya Rudolph", "character": "Aunt Cass (voice)", "id": 52792, "credit_id": "53752be80e0a263031000337", "cast_id": 5, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 9}, {"name": "Abraham Benrubi", "character": "General (voice)", "id": 21132, "credit_id": "54d69f0fc3a3683b8f002fcb", "cast_id": 34, "profile_path": "/yfW6bAm2jTtt80guxhyNbaaUSV3.jpg", "order": 10}, {"name": "Katie Lowes", "character": "Abigail (voice)", "id": 108253, "credit_id": "54d69f4a9251415f75002ceb", "cast_id": 35, "profile_path": "/yn29ZcNXEyFewrrNtcCpyBfjXnR.jpg", "order": 11}, {"name": "Billy Bush", "character": "Newscaster (voice)", "id": 287341, "credit_id": "54d69f60c3a3683b92003529", "cast_id": 36, "profile_path": "/xBomzqbPgyG7SGySt77BKEZ3KMF.jpg", "order": 12}, {"name": "Dan Gerson", "character": "Desk Sergeant (voice)", "id": 7884, "credit_id": "54d69f93c3a3683b95002f44", "cast_id": 37, "profile_path": "/fB1vefUJ9hwKewW5BafNQImsslC.jpg", "order": 13}, {"name": "Paul Briggs", "character": "Yama (voice)", "id": 1340669, "credit_id": "54d69faec3a3683b8f002fe4", "cast_id": 38, "profile_path": "/vccGfQWvG6nBaMD080uDS4Vaj26.jpg", "order": 14}, {"name": "Charlie Adler", "character": "Yokai (voice)", "id": 81178, "credit_id": "54467e05c3a368277b00285c", "cast_id": 32, "profile_path": "/eSZtf1oCn8PY3VEBclD7VkCEWS.jpg", "order": 15}, {"name": "Marcella Lentz-Pope", "character": "Additional Voices (voice)", "id": 54698, "credit_id": "542e46bf0e0a261fd90018ff", "cast_id": 25, "profile_path": "/eMxlMzKb1qRLr1fnjORhwAJCNL4.jpg", "order": 16}], "directors": [{"name": "Don Hall", "department": "Directing", "job": "Director", "credit_id": "52fe4d89c3a36847f8266145", "profile_path": null, "id": 227439}, {"name": "Chris Williams", "department": "Directing", "job": "Director", "credit_id": "53752d53c3a3681ee900021c", "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "id": 70238}], "vote_average": 8.0, "runtime": 102}, "46503": {"poster_path": "/vhK2BESu5lBskZqWCmtGaH24vDS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "\"All Good Things\" is a love story and murder mystery based on the most notorious unsolved murder case in New York history. The original screenplay uses newly discovered facts, court records and speculation as the foundation for an imaginative spellbinding story of family, obsession, love and loss.", "video": false, "id": 46503, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "All Good Things", "tagline": "The perfect love story. Until it became the perfect crime.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1175709", "adult": false, "backdrop_path": "/gnYou2YNreivwarZoGqf4YDgd0c.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}], "release_date": "2010-12-03", "popularity": 0.582573065502192, "original_title": "All Good Things", "budget": 0, "cast": [{"name": "Kirsten Dunst", "character": "Katie Marks", "id": 205, "credit_id": "52fe46fbc3a36847f811d41f", "cast_id": 2, "profile_path": "/3fjUI92bQaGOnbxHBbyR0z9h619.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "David Marks", "id": 30614, "credit_id": "52fe46fbc3a36847f811d423", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Kristen Wiig", "character": "Lauren Fleck", "id": 41091, "credit_id": "52fe46fbc3a36847f811d427", "cast_id": 4, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 2}, {"name": "Frank Langella", "character": "Sanford Marks", "id": 8924, "credit_id": "52fe46fbc3a36847f811d42b", "cast_id": 5, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 3}, {"name": "Lily Rabe", "character": "Deborah Lehrman", "id": 4888, "credit_id": "52fe46fbc3a36847f811d43b", "cast_id": 8, "profile_path": "/5qTAKNY5zTBQlDjdAb2Nq1FOhNi.jpg", "order": 4}, {"name": "Philip Baker Hall", "character": "Malvern Bump", "id": 4492, "credit_id": "52fe46fbc3a36847f811d43f", "cast_id": 9, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 5}, {"name": "Michael Esper", "character": "Daniel Marks", "id": 6183, "credit_id": "52fe46fbc3a36847f811d443", "cast_id": 10, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 6}, {"name": "Diane Venora", "character": "Janice Rizzo", "id": 6200, "credit_id": "52fe46fbc3a36847f811d447", "cast_id": 11, "profile_path": "/yQ5M4w71wjwBTH5bQHIxx46pxWq.jpg", "order": 7}, {"name": "John Cullum", "character": "Richard Panatierre", "id": 53085, "credit_id": "52fe46fbc3a36847f811d44b", "cast_id": 12, "profile_path": "/9DQEL4iaQOdfsGm16mBKaMgrHQJ.jpg", "order": 8}, {"name": "Trini Alvarado", "character": "Sarah Davis", "id": 17187, "credit_id": "52fe46fbc3a36847f811d44f", "cast_id": 13, "profile_path": "/7BNAOaI5ges8cer7ZQ0rUi0JRwX.jpg", "order": 9}, {"name": "David Margulies", "character": "The Mayor", "id": 8875, "credit_id": "52fe46fbc3a36847f811d457", "cast_id": 15, "profile_path": "/gxzWJuIokIQxVfncRrPOnBbczuq.jpg", "order": 11}, {"name": "Nick Offerman", "character": "Jim McCarthy", "id": 17039, "credit_id": "54b9d59e9251411d79005465", "cast_id": 16, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 12}, {"name": "Mia Dillon", "character": "Katie's Aunt", "id": 1218005, "credit_id": "5538c185c3a3687845006110", "cast_id": 17, "profile_path": null, "order": 13}], "directors": [{"name": "Andrew Jarecki", "department": "Directing", "job": "Director", "credit_id": "52fe46fbc3a36847f811d41b", "profile_path": "/nMqUvLq522KDsDx6D5xOI1rDMuE.jpg", "id": 23287}], "vote_average": 6.0, "runtime": 101}, "205724": {"poster_path": "/xNYexoVAHKpm7eL0op08H5RgATw.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "PR", "name": "Puerto Rico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A company retreat on a tropical island goes terribly awry.", "video": false, "id": 205724, "genres": [{"id": 35, "name": "Comedy"}], "title": "Welcome to the Jungle", "tagline": "Unleash your inner beast!", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2193265", "adult": false, "backdrop_path": "/hAtQFystljBvSKQEinFYhxgYRl5.jpg", "production_companies": [{"name": "Private Island Trax", "id": 38506}, {"name": "The Salt Company International", "id": 25953}, {"name": "Pimienta", "id": 24513}, {"name": "120dB Films", "id": 5113}, {"name": "Stun Creative", "id": 38507}], "release_date": "2013-04-27", "popularity": 0.978403947244237, "original_title": "Welcome to the Jungle", "budget": 3500000, "cast": [{"name": "Kristen Schaal", "character": "Brenda", "id": 109869, "credit_id": "52fe4d0ec3a368484e1d4a61", "cast_id": 4, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 0}, {"name": "Megan Boone", "character": "Lisa", "id": 222141, "credit_id": "52fe4d0ec3a368484e1d4a5d", "cast_id": 3, "profile_path": "/fqCZZb33w8RhWl2GVGdWOqXBQNO.jpg", "order": 1}, {"name": "Jean-Claude Van Damme", "character": "Storm", "id": 15111, "credit_id": "52fe4d0ec3a368484e1d4a69", "cast_id": 6, "profile_path": "/aqZ9RjL5j44HMlBMvTaawhHiGOH.jpg", "order": 2}, {"name": "Adam Brody", "character": "Chris", "id": 11702, "credit_id": "52fe4d0ec3a368484e1d4a59", "cast_id": 2, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "Bianca Bree", "character": "Ashley", "id": 1084848, "credit_id": "52fe4d0ec3a368484e1d4a71", "cast_id": 8, "profile_path": "/yUshICTGhQjqjbHoU3fa5AnxDWD.jpg", "order": 4}, {"name": "Rob Huebel", "character": "Phil", "id": 80595, "credit_id": "52fe4d0ec3a368484e1d4a65", "cast_id": 5, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 5}, {"name": "Aaron Takahashi", "character": "Troy", "id": 1053940, "credit_id": "52fe4d0ec3a368484e1d4a6d", "cast_id": 7, "profile_path": "/qhvi1JlCwgYOdnprP7MT9f2XZpS.jpg", "order": 6}, {"name": "Eric Edelstein", "character": "Jared", "id": 59297, "credit_id": "52fe4d0ec3a368484e1d4a75", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Robert Peters", "character": "Dale", "id": 155946, "credit_id": "52fe4d0ec3a368484e1d4a79", "cast_id": 10, "profile_path": "/9sTEon9OXhTzUL92vD4toMGEdg6.jpg", "order": 8}, {"name": "Dennis Haysbert", "character": "", "id": 352, "credit_id": "52fe4d0ec3a368484e1d4a89", "cast_id": 13, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 9}, {"name": "Aaron Takahashi", "character": "Troy", "id": 1053940, "credit_id": "52fe4d0ec3a368484e1d4a8d", "cast_id": 14, "profile_path": "/qhvi1JlCwgYOdnprP7MT9f2XZpS.jpg", "order": 10}, {"name": "Brian Tester", "character": "Senior Naval Officer", "id": 76802, "credit_id": "52fe4d0ec3a368484e1d4a91", "cast_id": 15, "profile_path": null, "order": 11}], "directors": [{"name": "Rob Meltzer", "department": "Directing", "job": "Director", "credit_id": "52fe4d0ec3a368484e1d4a7f", "profile_path": null, "id": 1204338}], "vote_average": 5.0, "runtime": 95}, "5548": {"poster_path": "/gtGreTdzYBuQsEwTliEFdTzPleV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53000000, "overview": "In a dystopic, future crime-ridden Detroit controlled by a powerful corporation, a terminally wounded cop returns to the force as a company-owned cyborg with submerged memories haunting him.", "video": false, "id": 5548, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "RoboCop", "tagline": "Part man. Part machine. All cop. The future of law enforcement.", "vote_count": 389, "homepage": "", "belongs_to_collection": {"backdrop_path": "/azQScQWHpz5puIV4YeCcqgiT9Tn.jpg", "poster_path": "/foJBQb9oEOH0mGh77tXyoxXCfzU.jpg", "id": 5547, "name": "RoboCop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093870", "adult": false, "backdrop_path": "/cCu1TazB95Fykw3min9W0lgLNUs.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1987-07-17", "popularity": 1.07488246272677, "original_title": "RoboCop", "budget": 13000000, "cast": [{"name": "Peter Weller", "character": "RoboCop / Officer Alex J. Murphy", "id": 27811, "credit_id": "52fe440dc3a36847f807f6b5", "cast_id": 9, "profile_path": "/qTdm4vdZPsplJpnTU4fSprp0CxJ.jpg", "order": 0}, {"name": "Nancy Allen", "character": "Officer Anne Lewis", "id": 44038, "credit_id": "52fe440dc3a36847f807f6b9", "cast_id": 11, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 1}, {"name": "Ronny Cox", "character": "Dick Jones", "id": 780, "credit_id": "52fe440dc3a36847f807f6bd", "cast_id": 13, "profile_path": "/da980JmsVnK9w9MLZsF240Q8t9k.jpg", "order": 2}, {"name": "Kurtwood Smith", "character": "Clarence Boddicker", "id": 2115, "credit_id": "52fe440dc3a36847f807f6c1", "cast_id": 14, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 3}, {"name": "Miguel Ferrer", "character": "Bob Morton", "id": 15860, "credit_id": "52fe440dc3a36847f807f6c5", "cast_id": 15, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 4}, {"name": "Ray Wise", "character": "Leon Nash", "id": 6719, "credit_id": "52fe440dc3a36847f807f6c9", "cast_id": 17, "profile_path": "/z1EXC8gYfFddC010e9YK5kI5NKC.jpg", "order": 5}, {"name": "Felton Perry", "character": "Johnson", "id": 44042, "credit_id": "52fe440dc3a36847f807f6cd", "cast_id": 18, "profile_path": "/ax2YtmbicXvsjayLtK5VUxQh8fC.jpg", "order": 6}, {"name": "Paul McCrane", "character": "Emil Antonowsky", "id": 32393, "credit_id": "52fe440dc3a36847f807f6d1", "cast_id": 19, "profile_path": "/p2GTILRmUBQCKB507Pc8CeFM5Qw.jpg", "order": 7}, {"name": "Jesse D. Goins", "character": "Joe Cox", "id": 44043, "credit_id": "52fe440dc3a36847f807f6d5", "cast_id": 20, "profile_path": "/rjNRg0SgCo31mCCYRb3NvtjFu18.jpg", "order": 8}, {"name": "Robert Doqui", "character": "Sgt. Warren Reed", "id": 30615, "credit_id": "52fe440dc3a36847f807f6d9", "cast_id": 21, "profile_path": "/gbV4NbJWrvbQzEghB9it4pVIG1c.jpg", "order": 9}, {"name": "Dan O'Herlihy", "character": "The Old Man", "id": 6836, "credit_id": "52fe440dc3a36847f807f6dd", "cast_id": 22, "profile_path": "/amXueiRr8cy4sTjb7h4W5GrKe14.jpg", "order": 10}, {"name": "Sage Parker", "character": "Tyler", "id": 194347, "credit_id": "52fe440dc3a36847f807f6e1", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Stephen Berrier", "character": "Roosevelt", "id": 999510, "credit_id": "52fe440dc3a36847f807f6e5", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "John S. Davies", "character": "Chessman", "id": 936924, "credit_id": "536f50d8c3a36839c1004590", "cast_id": 74, "profile_path": null, "order": 13}, {"name": "Tyress Allen", "character": "Starkweather", "id": 999512, "credit_id": "52fe440dc3a36847f807f6ed", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Yolanda Williams", "character": "Ramirez", "id": 999513, "credit_id": "52fe440dc3a36847f807f6f1", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ken Page", "character": "Kinsey", "id": 154878, "credit_id": "52fe440dc3a36847f807f6f5", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Charles Carroll", "character": "Bail Bondsman", "id": 60287, "credit_id": "52fe440dc3a36847f807f6f9", "cast_id": 30, "profile_path": "/5sGsNA3iVsjt3vXxNH5aK3P7toG.jpg", "order": 17}, {"name": "Gregory Poudevigne", "character": "Slimey lawyer", "id": 999514, "credit_id": "52fe440dc3a36847f807f6fd", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Gene Wolande", "character": "Prisoner", "id": 152993, "credit_id": "52fe440dc3a36847f807f701", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Neil Summers", "character": "Dougy", "id": 179188, "credit_id": "52fe440dc3a36847f807f705", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Fred Hice", "character": "Bobby", "id": 999519, "credit_id": "52fe440dc3a36847f807f709", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Edward Edwards", "character": "Manson", "id": 999520, "credit_id": "52fe440dc3a36847f807f70d", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Michael Gregory", "character": "Lieutenant Hedgecock", "id": 59221, "credit_id": "52fe440dc3a36847f807f711", "cast_id": 36, "profile_path": "/9jcib4XkMutiPe9O6e98us6WCml.jpg", "order": 23}, {"name": "Lee de Broux", "character": "Sal", "id": 106768, "credit_id": "52fe440dc3a36847f807f715", "cast_id": 37, "profile_path": "/mqrbS1epUSBe8SgV3JNz2ifkiAC.jpg", "order": 24}, {"name": "Rick Lieberman", "character": "Walker", "id": 999522, "credit_id": "52fe440dc3a36847f807f719", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Calvin Jung", "character": "Steve Minh", "id": 105312, "credit_id": "52fe440dc3a36847f807f71d", "cast_id": 39, "profile_path": null, "order": 26}, {"name": "Del Zamora", "character": "Kaplan", "id": 100062, "credit_id": "52fe440dc3a36847f807f721", "cast_id": 40, "profile_path": "/tEjPy2OihDfEhxJooR3uIjQM9Z8.jpg", "order": 27}, {"name": "Karen Radcliffe", "character": "Technician #1", "id": 194275, "credit_id": "52fe440dc3a36847f807f725", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Darryl Cox", "character": "Technician #2", "id": 97391, "credit_id": "52fe440dc3a36847f807f729", "cast_id": 42, "profile_path": null, "order": 29}, {"name": "Jerry Haynes", "character": "Dr. McNamara", "id": 2850, "credit_id": "52fe440dc3a36847f807f72d", "cast_id": 43, "profile_path": null, "order": 30}, {"name": "Bill Schockley", "character": "Creep", "id": 999536, "credit_id": "52fe440dc3a36847f807f731", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Donna Keegan", "character": "Rape victim", "id": 157969, "credit_id": "52fe440dc3a36847f807f735", "cast_id": 45, "profile_path": null, "order": 32}, {"name": "Mike Moroff", "character": "Hophead", "id": 100260, "credit_id": "52fe440dc3a36847f807f739", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Marjorie Rynearson", "character": "Grocery mom", "id": 999537, "credit_id": "52fe440dc3a36847f807f73d", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Jo Livingston", "character": "Grocery pop", "id": 999539, "credit_id": "52fe440dc3a36847f807f741", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Joan Pirkle", "character": "Barbara", "id": 193637, "credit_id": "52fe440dc3a36847f807f745", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Diane Robin", "character": "Chandra", "id": 157549, "credit_id": "52fe440dc3a36847f807f749", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Adrianne Sachs", "character": "Tammy", "id": 999540, "credit_id": "52fe440dc3a36847f807f74d", "cast_id": 51, "profile_path": null, "order": 38}, {"name": "Maarten Goslins", "character": "Salesman", "id": 192088, "credit_id": "52fe440dc3a36847f807f751", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Angie Bolling", "character": "Murphy's wife", "id": 194418, "credit_id": "52fe440dc3a36847f807f755", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Jason Levine", "character": "Murphy's son", "id": 999541, "credit_id": "52fe440dc3a36847f807f759", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "S.D. Nemeth", "character": "Bobby Snyder", "id": 44062, "credit_id": "52fe440dc3a36847f807f75d", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Bill Farmer", "character": "Justin Ballard-Watkins", "id": 84213, "credit_id": "52fe440dc3a36847f807f761", "cast_id": 56, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 43}, {"name": "Michael Hunter", "character": "Peter the Homeowner", "id": 113468, "credit_id": "52fe440dc3a36847f807f765", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Spencer Prokop", "character": "Gas station attendant", "id": 999542, "credit_id": "52fe440dc3a36847f807f769", "cast_id": 58, "profile_path": null, "order": 45}, {"name": "L.J. King", "character": "Emergency Doctor", "id": 999543, "credit_id": "52fe440dc3a36847f807f76d", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "David Packer", "character": "Emergency Doctor", "id": 86542, "credit_id": "52fe440dc3a36847f807f771", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "Leeza Gibbons", "character": "Jesse Perkins, TV announcer", "id": 44051, "credit_id": "52fe440dc3a36847f807f775", "cast_id": 61, "profile_path": "/nZOYAQ2hbLk0gnwtfuvvwokp38o.jpg", "order": 48}, {"name": "Mario Machado", "character": "Casey Wong, TV announcer", "id": 44050, "credit_id": "52fe440dc3a36847f807f779", "cast_id": 62, "profile_path": null, "order": 49}, {"name": "Laird Stuart", "character": "Cecil the Clerk", "id": 65746, "credit_id": "52fe440dc3a36847f807f7b9", "cast_id": 73, "profile_path": null, "order": 50}], "directors": [{"name": "Paul Verhoeven", "department": "Directing", "job": "Director", "credit_id": "52fe440dc3a36847f807f687", "profile_path": "/mlIV2V9OYcnmudqv1iZw7QrdSSh.jpg", "id": 10491}], "vote_average": 6.6, "runtime": 102}, "38317": {"poster_path": "/qVsaDvFLnGSH6WdTgatzc2nXt7e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78230732, "overview": "A comedy about a zookeeper who might be great with animals, but he doesn't know anything about the birds and the bees. The man can't find love, so he decides to quit his job at the zoo, but his animal friends try to stop him and teach him that Mother Nature knows best when it comes to love.", "video": false, "id": 38317, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Zookeeper", "tagline": "Welcome to his jungle.", "vote_count": 147, "homepage": "http://www.zookeeper-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1222817", "adult": false, "backdrop_path": "/8imTBLgQMJcfYrAGOsqVHFFXs3l.jpg", "production_companies": [{"name": "Zookeeper Productions", "id": 46221}, {"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Broken Road Productions", "id": 8000}, {"name": "Hey Eddie", "id": 46222}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2011-07-08", "popularity": 1.20363495848234, "original_title": "Zookeeper", "budget": 80000000, "cast": [{"name": "Kevin James", "character": "Griffin Keyes", "id": 32895, "credit_id": "52fe46aa9251416c9105bb29", "cast_id": 4, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 0}, {"name": "Rosario Dawson", "character": "Kate", "id": 5916, "credit_id": "52fe46aa9251416c9105bb53", "cast_id": 14, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 1}, {"name": "Sylvester Stallone", "character": "Lion (voice)", "id": 16483, "credit_id": "52fe46aa9251416c9105bb1d", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 2}, {"name": "Nick Nolte", "character": "Bernie The Gorilla", "id": 1733, "credit_id": "52fe46aa9251416c9105bb57", "cast_id": 15, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 3}, {"name": "Jon Favreau", "character": "Bear (voice)", "id": 15277, "credit_id": "52fe46aa9251416c9105bb21", "cast_id": 2, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 4}, {"name": "Adam Sandler", "character": "Monkey (voice)", "id": 19292, "credit_id": "52fe46aa9251416c9105bb25", "cast_id": 3, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 5}, {"name": "Judd Apatow", "character": "Elephant (voice)", "id": 41039, "credit_id": "52fe46aa9251416c9105bb2d", "cast_id": 5, "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "order": 6}, {"name": "Thomas Gottschalk", "character": "Fashiondesigner", "id": 38832, "credit_id": "52fe46aa9251416c9105bb43", "cast_id": 10, "profile_path": "/nEEGPc5OblVTmnCREfwP3L7qSQZ.jpg", "order": 7}, {"name": "Ken Jeong", "character": "Venom", "id": 83586, "credit_id": "52fe46aa9251416c9105bb47", "cast_id": 11, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 8}, {"name": "Donnie Wahlberg", "character": "Shane", "id": 2680, "credit_id": "52fe46aa9251416c9105bb4b", "cast_id": 12, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 9}, {"name": "Leslie Bibb", "character": "Stephanie", "id": 57451, "credit_id": "52fe46aa9251416c9105bb4f", "cast_id": 13, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 10}, {"name": "Nat Faxon", "character": "Dave", "id": 105648, "credit_id": "52fe46aa9251416c9105bb5b", "cast_id": 16, "profile_path": "/wlHRlyx6lGiBDyoMcKglcfaokI8.jpg", "order": 11}, {"name": "Cher", "character": "Janet the Lioness (voice)", "id": 38225, "credit_id": "52fe46aa9251416c9105bb5f", "cast_id": 17, "profile_path": "/nLi4qPXWEuhjc31bmbeINLVZ8zS.jpg", "order": 12}, {"name": "Joe Rogan", "character": "Gale", "id": 91609, "credit_id": "52fe46aa9251416c9105bb63", "cast_id": 18, "profile_path": "/uiUuuvsVTyFPul78eO6v9BlpZDr.jpg", "order": 13}, {"name": "Faizon Love", "character": "Bruce the Bear (voice)", "id": 62066, "credit_id": "52fe46aa9251416c9105bb67", "cast_id": 19, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 14}, {"name": "Maya Rudolph", "character": "Mollie the Giraffe (voice)", "id": 52792, "credit_id": "52fe46aa9251416c9105bb6b", "cast_id": 20, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 15}, {"name": "Bas Rutten", "character": "Sebastian the Wolf (voice)", "id": 89402, "credit_id": "52fe46aa9251416c9105bb6f", "cast_id": 21, "profile_path": "/zP3CzVPJiGmkGSxiMYQeXmpV6lM.jpg", "order": 16}, {"name": "Steffiana De La Cruz", "character": "Robin", "id": 1431853, "credit_id": "54ee5c129251417971004aa2", "cast_id": 22, "profile_path": "/s6plNtUhJj9vDyd2aWMfBSENnPj.jpg", "order": 17}, {"name": "Crystal the Monkey", "character": "Donald the Monkey", "id": 1428580, "credit_id": "550a88a0c3a368487d000e65", "cast_id": 24, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 18}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe46aa9251416c9105bb33", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 5.4, "runtime": 102}, "5550": {"poster_path": "/sJiPU5x0ch4u32KCXdqXMVuL3K1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Robocop saves the day once more. This time the half man/half robot takes on ruthless developers who want to evict some people on \"their\" land.", "video": false, "id": 5550, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "RoboCop 3", "tagline": "He's back to lay down the law.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": "/azQScQWHpz5puIV4YeCcqgiT9Tn.jpg", "poster_path": "/foJBQb9oEOH0mGh77tXyoxXCfzU.jpg", "id": 5547, "name": "RoboCop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0107978", "adult": false, "backdrop_path": "/rCe0TxpHsfEz3N4aRiQy3xYsQsN.jpg", "production_companies": [{"name": "Orion Pictures", "id": 41}], "release_date": "1993-11-05", "popularity": 0.269598506458179, "original_title": "RoboCop 3", "budget": 22000000, "cast": [{"name": "Robert John Burke", "character": "RoboCop", "id": 31512, "credit_id": "52fe440ec3a36847f807fbd1", "cast_id": 11, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 0}, {"name": "Nancy Allen", "character": "Officer Anne Lewis", "id": 44038, "credit_id": "52fe440ec3a36847f807fbfd", "cast_id": 23, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 1}, {"name": "Mario Machado", "character": "Casey Wong", "id": 44050, "credit_id": "52fe440ec3a36847f807fbd5", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Jodi Long", "character": "Nikkos Mom", "id": 44059, "credit_id": "52fe440ec3a36847f807fbdd", "cast_id": 14, "profile_path": "/1Jc60wX4lOYwRPTonHDPI8l3Msv.jpg", "order": 3}, {"name": "John Posey", "character": "Nikkos Dad", "id": 44060, "credit_id": "52fe440ec3a36847f807fbe1", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Mako", "character": "Kanemitsu", "id": 10134, "credit_id": "52fe440ec3a36847f807fbe5", "cast_id": 17, "profile_path": "/gU3eoZP8OQZLFMPZ9MYWa6pajvT.jpg", "order": 5}, {"name": "Rip Torn", "character": "The CEO", "id": 9626, "credit_id": "52fe440ec3a36847f807fbf5", "cast_id": 21, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 6}, {"name": "John Castle", "character": "Paul McDaggett", "id": 15198, "credit_id": "52fe440ec3a36847f807fbe9", "cast_id": 18, "profile_path": "/yXMWGwbbMB67Gt0EAFMfN4kxA8W.jpg", "order": 7}, {"name": "Edith Ivey", "character": "Eiderly Woman", "id": 44063, "credit_id": "52fe440ec3a36847f807fbf1", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Remy Ryan", "character": "Nikko", "id": 44058, "credit_id": "52fe440ec3a36847f807fbd9", "cast_id": 13, "profile_path": "/byFrezFlXudQHnf1C2961DrzE1z.jpg", "order": 9}, {"name": "Bradley Whitford", "character": "Fleck", "id": 11367, "credit_id": "52fe440ec3a36847f807fbf9", "cast_id": 22, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 10}, {"name": "S.D. Nemeth", "character": "Bixby Snyder", "id": 44062, "credit_id": "52fe440ec3a36847f807fbed", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Stephen Root", "character": "Coontz", "id": 17401, "credit_id": "52fe440ec3a36847f807fc05", "cast_id": 25, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 12}, {"name": "C. C. H. Pounder", "character": "Bertha", "id": 30485, "credit_id": "52fe440ec3a36847f807fc01", "cast_id": 24, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 13}, {"name": "Robert Doqui", "character": "Sergeant Warren Reed", "id": 30615, "credit_id": "52fe440ec3a36847f807fc09", "cast_id": 26, "profile_path": "/gbV4NbJWrvbQzEghB9it4pVIG1c.jpg", "order": 14}, {"name": "Jeff Garlin", "character": "Donut Jerk", "id": 60074, "credit_id": "52fe440ec3a36847f807fc0d", "cast_id": 27, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 15}, {"name": "James Lorinz", "character": "Upset Driver", "id": 167080, "credit_id": "52fe440ec3a36847f807fc11", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Jill Hennessy", "character": "Dr. Marie Lazarus", "id": 50877, "credit_id": "536b7dba0e0a2647d800beaf", "cast_id": 29, "profile_path": "/maXA4XgLsHLFy2ww3UvI4jUK27z.jpg", "order": 17}], "directors": [{"name": "Fred Dekker", "department": "Directing", "job": "Director", "credit_id": "52fe440ec3a36847f807fb97", "profile_path": null, "id": 44056}], "vote_average": 4.2, "runtime": 104}, "5551": {"poster_path": "/3nXVQ0eHRML8xqnB2Mtz6zszYqP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 90000000, "overview": "Frank Corvin, \"Hawk\" Hawkins, Jerry O'Neill and Tank Sullivan were hotdog members of Project DAEDALUS, the Air Force's test program for space travel. Their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious Ikon communications satellite's orbit begins to degrade and threatens to crash into Earth.", "video": false, "id": 5551, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Space Cowboys", "tagline": "Space will never be the same.", "vote_count": 105, "homepage": "http://movies.warnerbros.com/spacecowboys/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0186566", "adult": false, "backdrop_path": "/aWx6Y7sFfJgNmDupHGajPP5HLlP.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Clipsal Films", "id": 10566}, {"name": "Mad Chance", "id": 1757}, {"name": "Malpaso Productions", "id": 171}, {"name": "Village Roadshow Pictures", "id": 79}], "release_date": "2000-07-31", "popularity": 0.797954410211837, "original_title": "Space Cowboys", "budget": 65000000, "cast": [{"name": "Clint Eastwood", "character": "Frank Corvin", "id": 190, "credit_id": "52fe440ec3a36847f807fc81", "cast_id": 11, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Tommy Lee Jones", "character": "Hawk Hawkins", "id": 2176, "credit_id": "52fe440ec3a36847f807fc85", "cast_id": 12, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 1}, {"name": "Donald Sutherland", "character": "Jerry O`Neill", "id": 55636, "credit_id": "52fe440ec3a36847f807fc89", "cast_id": 13, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 2}, {"name": "James Garner", "character": "Tank Sullivan", "id": 16896, "credit_id": "52fe440ec3a36847f807fc8d", "cast_id": 14, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 3}, {"name": "James Cromwell", "character": "Bob Gerson", "id": 2505, "credit_id": "52fe440ec3a36847f807fc91", "cast_id": 15, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 4}, {"name": "Marcia Gay Harden", "character": "Sara Holland", "id": 4726, "credit_id": "52fe440ec3a36847f807fc95", "cast_id": 16, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 5}, {"name": "William Devane", "character": "Eugene Davis", "id": 21416, "credit_id": "52fe440ec3a36847f807fc99", "cast_id": 17, "profile_path": "/xETR7SMsY8qdIR0AsOV8FHyVLb9.jpg", "order": 6}, {"name": "Loren Dean", "character": "Ethan Glance", "id": 11628, "credit_id": "52fe440ec3a36847f807fc9d", "cast_id": 18, "profile_path": "/wmRzRes0gXtlhcmkYDeLjxD1Xjq.jpg", "order": 7}, {"name": "Courtney B. Vance", "character": "Roger Hines", "id": 24047, "credit_id": "52fe440ec3a36847f807fca1", "cast_id": 19, "profile_path": "/x1kO6TTg3rnz0WAxYgmunsPaxvR.jpg", "order": 8}, {"name": "Barbara Babcock", "character": "Barbara Corvin", "id": 15746, "credit_id": "52fe440ec3a36847f807fca5", "cast_id": 20, "profile_path": "/gKQge0krT6yuh4zTOOWQlsTfRBf.jpg", "order": 9}, {"name": "Rade \u0160erbed\u017eija", "character": "General Vostov", "id": 1118, "credit_id": "52fe440ec3a36847f807fca9", "cast_id": 21, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 10}, {"name": "Blair Brown", "character": "Dr. Anne Caruthers", "id": 7571, "credit_id": "52fe440ec3a36847f807fcad", "cast_id": 22, "profile_path": "/zBMLu9wTu36i0RkQGSQ5adH6Lvu.jpg", "order": 11}, {"name": "James MacDonald", "character": "Capcom", "id": 1188456, "credit_id": "52fe440ec3a36847f807fcb1", "cast_id": 23, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 12}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe440ec3a36847f807fc47", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.5, "runtime": 130}, "38321": {"poster_path": "/pE28BDqICBPe3FgphsYSxtH6FcZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76504014, "overview": "In an alternate world, humanity and vampires have warred for centuries. After the last Vampire War, the veteran Warrior Priest lives in obscurity with other humans inside one of the Church's walled cities. When the Priest's niece is kidnapped by vampires, the Priest breaks his vows to hunt them down. He is accompanied by the niece's boyfriend, who is a wasteland sheriff, and a former Warrior Priestess.", "video": false, "id": 38321, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Priest", "tagline": "Vampire Killer", "vote_count": 222, "homepage": "http://www.priest-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0822847", "adult": false, "backdrop_path": "/7pCsrkl7yPNFU7wIuWy52wdAFQs.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "Stars Road Entertainment", "id": 8931}, {"name": "TOKYOPOP", "id": 22641}, {"name": "Buckaroo Entertainment", "id": 11250}], "release_date": "2011-05-05", "popularity": 0.796553821081546, "original_title": "Priest", "budget": 60000000, "cast": [{"name": "Paul Bettany", "character": "Priest", "id": 6162, "credit_id": "52fe46ab9251416c9105bd7d", "cast_id": 10, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 0}, {"name": "Cam Gigandet", "character": "Hicks", "id": 55086, "credit_id": "52fe46ab9251416c9105bd65", "cast_id": 3, "profile_path": "/bJC9iA16bMomtoOdNSgMnH7pdth.jpg", "order": 1}, {"name": "Karl Urban", "character": "Black Hat", "id": 1372, "credit_id": "52fe46ab9251416c9105bd69", "cast_id": 5, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 2}, {"name": "Lily Collins", "character": "Lucy", "id": 112561, "credit_id": "52fe46ab9251416c9105bd6d", "cast_id": 6, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 3}, {"name": "Maggie Q", "character": "Priestess", "id": 21045, "credit_id": "52fe46ab9251416c9105bd81", "cast_id": 11, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 4}, {"name": "Stephen Moyer", "character": "Aaron", "id": 32203, "credit_id": "52fe46ab9251416c9105bd71", "cast_id": 7, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 5}, {"name": "M\u00e4dchen Amick", "character": "Shannon", "id": 6714, "credit_id": "52fe46ab9251416c9105bd75", "cast_id": 8, "profile_path": "/y9qpjIzfm78aPHR8wxeTo20bDyV.jpg", "order": 6}, {"name": "Christopher Plummer", "character": "Monsignor Orelas", "id": 290, "credit_id": "52fe46ab9251416c9105bd79", "cast_id": 9, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 7}, {"name": "Brad Dourif", "character": "Salesman", "id": 1370, "credit_id": "52fe46ab9251416c9105bd91", "cast_id": 14, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 8}, {"name": "Alan Dale", "character": "Monsignor Chamberlain", "id": 52760, "credit_id": "52fe46ab9251416c9105bddd", "cast_id": 27, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 9}], "directors": [{"name": "Scott Stewart", "department": "Directing", "job": "Director", "credit_id": "52fe46ab9251416c9105bd61", "profile_path": "/uFhftOKdeSRbJkOsylcJSJoaimQ.jpg", "id": 116357}], "vote_average": 5.4, "runtime": 87}, "38322": {"poster_path": "/tm2EddDwAfH79K4WAmSnvpHwoje.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83615414, "overview": "FBI agent Malcolm Turner and his 17-year-old son, Trent, go undercover at an all-girls performing arts school after Trent witnesses a murder. Posing as Big Momma and Charmaine, they must find the murderer before he finds them.", "video": false, "id": 38322, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Big Mommas: Like Father, Like Son", "tagline": "Momma's got back-up.", "vote_count": 84, "homepage": "http://www.bigmommaslikefatherlikeson.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/nFJauk5E72nZNZJU4TZFCdMycYE.jpg", "id": 44979, "name": "Big Momma's House Collection"}, "original_language": "en", "status": "Post Production", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1464174", "adult": false, "backdrop_path": "/gxrLAo0uGy9uzIleogDOrPlQnFf.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2011-02-16", "popularity": 1.01972109095614, "original_title": "Big Mommas: Like Father, Like Son", "budget": 32000000, "cast": [{"name": "Portia Doubleday", "character": "Jasmine Lee", "id": 117669, "credit_id": "52fe46ab9251416c9105be05", "cast_id": 3, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 0}, {"name": "Martin Lawrence", "character": "Malcolm / Big Momma", "id": 78029, "credit_id": "52fe46ab9251416c9105be09", "cast_id": 4, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 1}, {"name": "Brandon T. Jackson", "character": "Trent / Charmaine", "id": 53336, "credit_id": "52fe46ab9251416c9105be0d", "cast_id": 5, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 2}, {"name": "Mari Morrow", "character": "Dance Instructor", "id": 42743, "credit_id": "52fe46ab9251416c9105be11", "cast_id": 7, "profile_path": "/fXMimR1tEki45D0e7mz789cfNHX.jpg", "order": 3}, {"name": "Faizon Love", "character": "Kurtis Kool", "id": 62066, "credit_id": "52fe46ab9251416c9105be15", "cast_id": 8, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 4}, {"name": "Ana Ortiz", "character": "Headmistress", "id": 38333, "credit_id": "52fe46ab9251416c9105be19", "cast_id": 10, "profile_path": "/ggLr90PvlHbrhcwBN2vYhUDBbxP.jpg", "order": 6}, {"name": "Steve Warren", "character": "GGSA Showcase Audience Member", "id": 123703, "credit_id": "52fe46ab9251416c9105be1d", "cast_id": 11, "profile_path": "/vITQCfJtrHbgOjl8zAFZqneUlUM.jpg", "order": 7}, {"name": "Marc John Jefferies", "character": "Rembrandt", "id": 62646, "credit_id": "52fe46ab9251416c9105be21", "cast_id": 12, "profile_path": "/zpsC9yA8TzJFFtoSokZvbgcUiAY.jpg", "order": 8}, {"name": "Jessica Lucas", "character": "Haley", "id": 51989, "credit_id": "52fe46ab9251416c9105be25", "cast_id": 13, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 9}, {"name": "Emily Rios", "character": "Isabelle", "id": 211474, "credit_id": "532585679251410c87001b4c", "cast_id": 14, "profile_path": "/qOkaoTCgKPgELM1yG26ezyTkuzm.jpg", "order": 10}], "directors": [{"name": "John Whitesell", "department": "Directing", "job": "Director", "credit_id": "52fe46ab9251416c9105bdfb", "profile_path": "/9wNZkrN7DnPjGIgaVNTnlCC1fpt.jpg", "id": 61175}], "vote_average": 5.4, "runtime": 107}, "10483": {"poster_path": "/2WeQQVy9FFYX7Z60Kea8C2n7yIq.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 73762516, "overview": "Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.", "video": false, "id": 10483, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Death Race", "tagline": "Get ready for a killer race.", "vote_count": 448, "homepage": "http://www.deathracemovie.net/", "belongs_to_collection": {"backdrop_path": "/cGaVuq8ZjX1UPD9wPRlzx6lP9kK.jpg", "poster_path": "/uffHLg0ekFlErCp7OkpecXkWPng.jpg", "id": 86116, "name": "Death Race Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452608", "adult": false, "backdrop_path": "/m0JIsX9SLfHLxU1q6ud3ifJjXmC.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Cruise/Wagner Productions", "id": 44}, {"name": "H2S2 Filmproduktionsgesellschaft", "id": 28121}, {"name": "Scion Films", "id": 7419}], "release_date": "2008-08-22", "popularity": 1.09552527012898, "original_title": "Death Race", "budget": 45000000, "cast": [{"name": "Jason Statham", "character": "Jensen Ames", "id": 976, "credit_id": "52fe43789251416c75011ac3", "cast_id": 12, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Joan Allen", "character": "Warden Hennessey", "id": 11148, "credit_id": "52fe43789251416c75011ac7", "cast_id": 13, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 1}, {"name": "Ian McShane", "character": "Coach", "id": 6972, "credit_id": "52fe43789251416c75011acb", "cast_id": 14, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 2}, {"name": "Tyrese Gibson", "character": "Machine Gun Joe Mason", "id": 8169, "credit_id": "52fe43789251416c75011acf", "cast_id": 15, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 3}, {"name": "Natalie Martinez", "character": "Elizabeth Case", "id": 76511, "credit_id": "52fe43789251416c75011ad3", "cast_id": 16, "profile_path": "/9F8hCTTuDfPn5DPjsSuwxaJVwT4.jpg", "order": 4}, {"name": "Max Ryan", "character": "Pachenko", "id": 21942, "credit_id": "52fe43789251416c75011ad7", "cast_id": 17, "profile_path": "/mf9oUuBjpmX4B3nm11e9T2jKc7n.jpg", "order": 5}, {"name": "Jacob Vargas", "character": "Gunner", "id": 16429, "credit_id": "52fe43789251416c75011adb", "cast_id": 18, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 6}, {"name": "Jason Clarke", "character": "Guard Ulrich", "id": 76512, "credit_id": "52fe43789251416c75011adf", "cast_id": 19, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 7}, {"name": "Fred Koehler", "character": "Lists", "id": 76513, "credit_id": "52fe43789251416c75011ae3", "cast_id": 20, "profile_path": "/f52RmqmKKbHS9JFb2sJ28dnyaUr.jpg", "order": 8}, {"name": "Justin Mader", "character": "Travis Colt", "id": 76514, "credit_id": "52fe43789251416c75011ae7", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Robert LaSardo", "character": "Hector Grimm", "id": 65831, "credit_id": "52fe43789251416c75011aeb", "cast_id": 22, "profile_path": "/wyV4nxnRJFtVTkaZ4Cq8eoMV63Y.jpg", "order": 10}, {"name": "Robin Shou", "character": "14K", "id": 57250, "credit_id": "52fe43789251416c75011aef", "cast_id": 23, "profile_path": "/g3l02KaSOv0sDVRijyEO78PXfqy.jpg", "order": 11}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe43789251416c75011a83", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.9, "runtime": 105}, "5559": {"poster_path": "/QhbOzpYfBOwrRiuTu9otPk919R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 287594577, "overview": "Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.", "video": false, "id": 5559, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Bee Movie", "tagline": "Born to bee wild.", "vote_count": 400, "homepage": "http://www.beemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0389790", "adult": false, "backdrop_path": "/eKXTOIqSFrfN8WTTxrzHMBNiUpB.jpg", "production_companies": [{"name": "Columbus 81 Productions", "id": 1903}, {"name": "DreamWorks Animation", "id": 521}, {"name": "Pacific Data Images (PDI)", "id": 520}], "release_date": "2007-10-28", "popularity": 0.954235968734339, "original_title": "Bee Movie", "budget": 150000000, "cast": [{"name": "Jerry Seinfeld", "character": "Barry B. Benson", "id": 16377, "credit_id": "52fe440fc3a36847f807feaf", "cast_id": 19, "profile_path": "/cAsXoVf0UmotNUjMggHMnmAj8w.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Vanessa Bloome", "id": 9137, "credit_id": "52fe440fc3a36847f807feb3", "cast_id": 20, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Matthew Broderick", "character": "Adam Flayman", "id": 4756, "credit_id": "52fe440fc3a36847f807feb7", "cast_id": 21, "profile_path": "/j9ETatVKFxYR5Ijk8l5tzKO4HPn.jpg", "order": 2}, {"name": "Patrick Warburton", "character": "Ken", "id": 9657, "credit_id": "52fe440fc3a36847f807febb", "cast_id": 22, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 3}, {"name": "John Goodman", "character": "Layton T. Montgomery", "id": 1230, "credit_id": "52fe440fc3a36847f807febf", "cast_id": 23, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 4}, {"name": "Chris Rock", "character": "Mooseblood", "id": 2632, "credit_id": "52fe440fc3a36847f807fec3", "cast_id": 24, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Janet Benson", "id": 8534, "credit_id": "52fe440fc3a36847f807fec7", "cast_id": 25, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "Barry Levinson", "character": "Martin Benson", "id": 8246, "credit_id": "52fe440fc3a36847f807fecb", "cast_id": 26, "profile_path": "/2GuJ17voadJUYg0MiQd91dg35Qh.jpg", "order": 7}, {"name": "Larry King", "character": "Bee Larry King", "id": 44127, "credit_id": "52fe440fc3a36847f807fecf", "cast_id": 27, "profile_path": "/bx1m0FpxGUBposPVY960fOtto8c.jpg", "order": 8}, {"name": "Ray Liotta", "character": "Ray Liotta", "id": 11477, "credit_id": "52fe440fc3a36847f807fed3", "cast_id": 28, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 9}, {"name": "Sting", "character": "Sting", "id": 982, "credit_id": "52fe440fc3a36847f807fed7", "cast_id": 29, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 10}, {"name": "Oprah Winfrey", "character": "Judge Bumbleton", "id": 13309, "credit_id": "52fe440fc3a36847f807fedb", "cast_id": 30, "profile_path": "/jlsGiD71V3sZYrGG5aNgcQsElMn.jpg", "order": 11}, {"name": "Larry Miller", "character": "Buzzwell", "id": 1211, "credit_id": "52fe440fc3a36847f807fedf", "cast_id": 31, "profile_path": "/34dS3zf1VKMFvgQY6K6ZHaXYFFN.jpg", "order": 12}, {"name": "Rip Torn", "character": "Lou Lo Duca", "id": 9626, "credit_id": "52fe440fc3a36847f807fee3", "cast_id": 32, "profile_path": "/rzGaoGikjMuLDruABKdLcQLtkZk.jpg", "order": 13}, {"name": "Sting", "character": "Sting", "id": 982, "credit_id": "52fe440fc3a36847f807fee7", "cast_id": 33, "profile_path": "/6T1LrN9Hsn9pHpuzzC6LsKyf3Zx.jpg", "order": 14}, {"name": "Megan Mullally", "character": "Trudy", "id": 52119, "credit_id": "52fe440fc3a36847f807feeb", "cast_id": 34, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 15}, {"name": "John Di Maggio", "character": "Janitor / Bailiff", "id": 31531, "credit_id": "52fe440fc3a36847f807feef", "cast_id": 35, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 16}], "directors": [{"name": "Steve Hickner", "department": "Directing", "job": "Director", "credit_id": "52fe440fc3a36847f807fe45", "profile_path": "/3pI5lLmKJCeHJ6t0zZYhDjxfiEi.jpg", "id": 44113}, {"name": "Simon J. Smith", "department": "Directing", "job": "Director", "credit_id": "52fe440fc3a36847f807fe4b", "profile_path": "/bCbQtXtrOuKpPLdbSLn72KlYc2Z.jpg", "id": 44114}], "vote_average": 5.7, "runtime": 91}, "46529": {"poster_path": "/adgjVW0rtZ3fO00hoY71cDogzwE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 144492830, "overview": "A teenage fugitive with an incredible secret races to stay one step ahead of the mysterious forces seeking destroy him in this sci-fi action thriller. With three dead and one on the run, the race to find the elusive Number Four begins. Outwardly normal teen John Smith never gets too comfortable in the same identity, and along with his guardian, Henri, he is constantly moving from town to town. With each passing day, John gains a stronger grasp on his extraordinary new powers, and his bond to the beings that share his fantastic fate grows stronger.", "video": false, "id": 46529, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "I Am Number Four", "tagline": "Three like him have already been killed\u2026he is Number Four.", "vote_count": 518, "homepage": "http://www.findnumberfour.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1464540", "adult": false, "backdrop_path": "/b6rXH9f1UMP01qtyN5LiBX4ubIU.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance BIG Entertainment", "id": 6733}, {"name": "Bay Films", "id": 6734}], "release_date": "2011-02-18", "popularity": 0.990406820528536, "original_title": "I Am Number Four", "budget": 50000000, "cast": [{"name": "Alex Pettyfer", "character": "John", "id": 61363, "credit_id": "52fe46fdc3a36847f811da03", "cast_id": 2, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 0}, {"name": "Timothy Olyphant", "character": "Henri", "id": 18082, "credit_id": "52fe46fdc3a36847f811da07", "cast_id": 3, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 1}, {"name": "Teresa Palmer", "character": "Number 6", "id": 20374, "credit_id": "52fe46fdc3a36847f811da0b", "cast_id": 4, "profile_path": "/tuylHaajvnkJTPgyqbXGWuwAkbr.jpg", "order": 2}, {"name": "Dianna Agron", "character": "Sarah", "id": 141687, "credit_id": "52fe46fdc3a36847f811da0f", "cast_id": 5, "profile_path": "/fS4vAPA6ErhHCWRBY2PVIwvnajU.jpg", "order": 3}, {"name": "Garrett M. Brown", "character": "Mr. Simms", "id": 27492, "credit_id": "52fe46fdc3a36847f811da23", "cast_id": 10, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 4}, {"name": "Callan McAuliffe", "character": "Sam", "id": 236851, "credit_id": "52fe46fdc3a36847f811da27", "cast_id": 11, "profile_path": "/a4oVlU0LMJjwOjP5a1jHol1Nv5l.jpg", "order": 5}, {"name": "Kevin Durand", "character": "Mogadorian Commander", "id": 79072, "credit_id": "52fe46fdc3a36847f811da13", "cast_id": 6, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 6}, {"name": "Jake Abel", "character": "Mark", "id": 105727, "credit_id": "52fe46fdc3a36847f811da17", "cast_id": 7, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 7}, {"name": "Patrick Sebes", "character": "Kevin", "id": 211860, "credit_id": "52fe46fdc3a36847f811da1b", "cast_id": 8, "profile_path": "/pE7ux4GFM49W6i0sDIxmAfnT1Bf.jpg", "order": 8}, {"name": "Emily Wickersham", "character": "Nicole", "id": 204679, "credit_id": "52fe46fdc3a36847f811da1f", "cast_id": 9, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 9}, {"name": "Jeff Hochendoner", "character": "Sherriff James", "id": 170145, "credit_id": "52fe46fdc3a36847f811da2b", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Greg Townley", "character": "Number 3", "id": 237162, "credit_id": "52fe46fdc3a36847f811da2f", "cast_id": 13, "profile_path": "/mHA3zhlMl1OfVNn1I20O1SJt4j.jpg", "order": 11}, {"name": "Reuben Langdon", "character": "Number 3's Guardian", "id": 237163, "credit_id": "52fe46fdc3a36847f811da33", "cast_id": 14, "profile_path": "/oppPILAmMxJjpP1RBCBd7lfqsaN.jpg", "order": 12}, {"name": "Molly McGinnis", "character": "Receptionist", "id": 237174, "credit_id": "52fe46fdc3a36847f811da37", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Brian Howe", "character": "Frank", "id": 1990, "credit_id": "52fe46fdc3a36847f811da3b", "cast_id": 16, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 14}, {"name": "Andy Owen", "character": "Bret", "id": 237178, "credit_id": "52fe46fdc3a36847f811da3f", "cast_id": 17, "profile_path": null, "order": 15}, {"name": "Sophia Caruso", "character": "Girl on Street", "id": 1205735, "credit_id": "52fe46fdc3a36847f811dab5", "cast_id": 37, "profile_path": null, "order": 16}, {"name": "Charles Carroll", "character": "Sam's Stepdad", "id": 60287, "credit_id": "52fe46fdc3a36847f811dab9", "cast_id": 38, "profile_path": "/5sGsNA3iVsjt3vXxNH5aK3P7toG.jpg", "order": 17}, {"name": "L. Derek Leonidoff", "character": "Mr. Berhman", "id": 114608, "credit_id": "52fe46fdc3a36847f811dabd", "cast_id": 39, "profile_path": null, "order": 18}, {"name": "Garrett M. Brown", "character": "Principal Simms", "id": 27492, "credit_id": "52fe46fdc3a36847f811dac1", "cast_id": 40, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 19}, {"name": "Sabrina de Matteo", "character": "Physics Teacher", "id": 1205736, "credit_id": "52fe46fdc3a36847f811dac5", "cast_id": 41, "profile_path": null, "order": 20}, {"name": "Cooper Thornton", "character": "Sarah's Dad", "id": 162828, "credit_id": "52fe46fdc3a36847f811dac9", "cast_id": 42, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 21}, {"name": "Judith Hoag", "character": "Sarah's Mom", "id": 45041, "credit_id": "52fe46fdc3a36847f811dacd", "cast_id": 43, "profile_path": "/mP2EqWWhy6iP2PCbbky78pj10VK.jpg", "order": 22}, {"name": "Jack Walz", "character": "Sarah's Brother", "id": 1205737, "credit_id": "52fe46fdc3a36847f811dad1", "cast_id": 44, "profile_path": null, "order": 23}, {"name": "Bill Laing", "character": "Demented Farmer", "id": 27553, "credit_id": "52fe46fdc3a36847f811dad5", "cast_id": 45, "profile_path": null, "order": 24}, {"name": "Beau Mirchoff", "character": "Drew", "id": 117525, "credit_id": "52fe46fdc3a36847f811dad9", "cast_id": 46, "profile_path": "/pL7zdESU9X7xKdMXxtrISR9pJfh.jpg", "order": 25}, {"name": "Cody Johns", "character": "Kern", "id": 1205738, "credit_id": "52fe46fdc3a36847f811dadd", "cast_id": 47, "profile_path": null, "order": 26}, {"name": "Isabella Robbins", "character": "Teen At Party", "id": 1205739, "credit_id": "52fe46fdc3a36847f811dae1", "cast_id": 48, "profile_path": null, "order": 27}, {"name": "Damien Walters", "character": "MOG Warrior", "id": 1205740, "credit_id": "52fe46fdc3a36847f811dae5", "cast_id": 49, "profile_path": null, "order": 28}, {"name": "Jon Braver", "character": "MOG Warrior", "id": 183933, "credit_id": "52fe46fdc3a36847f811dae9", "cast_id": 50, "profile_path": null, "order": 29}, {"name": "Kevin Cassidy", "character": "MOG Warrior", "id": 1205741, "credit_id": "52fe46fdc3a36847f811daed", "cast_id": 51, "profile_path": "/7rW1lmNEqZx32JkRrOaL0oZ9ukg.jpg", "order": 30}, {"name": "Matt Leonard", "character": "MOG Warrior", "id": 1205742, "credit_id": "52fe46fdc3a36847f811daf1", "cast_id": 52, "profile_path": "/nxKRJPiFS0aO8PJBnevBAUrRmi7.jpg", "order": 31}, {"name": "Carrick O'Quinn", "character": "MOG Warrior", "id": 550900, "credit_id": "52fe46fdc3a36847f811daf5", "cast_id": 53, "profile_path": null, "order": 32}, {"name": "Tim Sitarz", "character": "MOG Warrior", "id": 37010, "credit_id": "52fe46fdc3a36847f811daf9", "cast_id": 54, "profile_path": null, "order": 33}, {"name": "Steve Upton", "character": "MOG Warrior", "id": 1205743, "credit_id": "52fe46fdc3a36847f811dafd", "cast_id": 55, "profile_path": null, "order": 34}, {"name": "Tucker Albrizzi", "character": "Tuck (uncredited)", "id": 558925, "credit_id": "52fe46fdc3a36847f811db01", "cast_id": 56, "profile_path": "/jeivgdxm1gDFP8ECJe4HM5p0bdM.jpg", "order": 35}, {"name": "Karen Allen", "character": "Sam's Mom (scenes deleted) (uncredited)", "id": 650, "credit_id": "52fe46fdc3a36847f811db05", "cast_id": 57, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 36}, {"name": "Amelia Compton", "character": "Girl in Car (uncredited)", "id": 1205744, "credit_id": "52fe46fdc3a36847f811db09", "cast_id": 58, "profile_path": null, "order": 37}, {"name": "Megan Follows", "character": "Supermarket Cashier (uncredited)", "id": 45446, "credit_id": "52fe46fdc3a36847f811db0d", "cast_id": 59, "profile_path": "/dlKpppqXcGgqcwMQ4ljFQYnm7CN.jpg", "order": 38}, {"name": "Brittany Forringer", "character": "Cheerleader / Party Guest (uncredited)", "id": 1205745, "credit_id": "52fe46fdc3a36847f811db11", "cast_id": 60, "profile_path": null, "order": 39}, {"name": "Ally Hydeman", "character": "High School Student (uncredited)", "id": 1187502, "credit_id": "52fe46fdc3a36847f811db15", "cast_id": 61, "profile_path": null, "order": 40}, {"name": "William Kania", "character": "Carnival Patron (uncredited)", "id": 127060, "credit_id": "52fe46fdc3a36847f811db19", "cast_id": 62, "profile_path": null, "order": 41}, {"name": "Kira Marie", "character": "Friend (uncredited)", "id": 1205746, "credit_id": "52fe46fdc3a36847f811db1d", "cast_id": 63, "profile_path": null, "order": 42}, {"name": "Andre' Mason", "character": "Sheriff Deputy (uncredited)", "id": 1205747, "credit_id": "52fe46fdc3a36847f811db21", "cast_id": 64, "profile_path": null, "order": 43}, {"name": "Doug Michaels", "character": "Student / Party Boy (uncredited)", "id": 1205748, "credit_id": "52fe46fdc3a36847f811db25", "cast_id": 65, "profile_path": null, "order": 44}, {"name": "Jackson Nunn", "character": "Neighbor (uncredited)", "id": 1205749, "credit_id": "52fe46fdc3a36847f811db29", "cast_id": 66, "profile_path": null, "order": 45}, {"name": "Brenna Roth", "character": "News Reporter (uncredited)", "id": 106147, "credit_id": "52fe46fdc3a36847f811db2d", "cast_id": 67, "profile_path": "/45IxL9cIqRZHKBX3X1kMslPrhXU.jpg", "order": 46}, {"name": "Zoe Simek", "character": "Girl in Classroom (uncredited)", "id": 1205750, "credit_id": "52fe46fdc3a36847f811db31", "cast_id": 68, "profile_path": null, "order": 47}, {"name": "Michelle Vezzani", "character": "Carnival Patron (uncredited)", "id": 1205751, "credit_id": "52fe46fdc3a36847f811db35", "cast_id": 69, "profile_path": null, "order": 48}, {"name": "Morgan Wolk", "character": "Teen #1 (uncredited)", "id": 1205752, "credit_id": "52fe46fdc3a36847f811db39", "cast_id": 70, "profile_path": null, "order": 49}], "directors": [{"name": "D.J. Caruso", "department": "Directing", "job": "Director", "credit_id": "52fe46fdc3a36847f811d9ff", "profile_path": "/dLSaCHhZ4zfimzCz11JdcTZC4SA.jpg", "id": 40256}], "vote_average": 6.1, "runtime": 109}, "87492": {"poster_path": "/vLZ8vG6qAeMW5iAtc4pJ5kJyqjr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15000000, "overview": "The greatest Olympic Wrestling Champion brother team joins Team Foxcatcher led by multimillionaire sponsor John E. du Pont as they train for the 1988 games in Seoul - a union that leads to unlikely circumstances.", "video": false, "id": 87492, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Foxcatcher", "tagline": "Based on the shocking true story", "vote_count": 261, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1100089", "adult": false, "backdrop_path": "/fFISF7IlLoAk52jUU7ehbOGxgsf.jpg", "production_companies": [{"name": "Annapurna Pictures", "id": 13184}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Likely Story", "id": 1785}], "release_date": "2015-01-16", "popularity": 2.25221378333011, "original_title": "Foxcatcher", "budget": 24000000, "cast": [{"name": "Steve Carell", "character": "John du Pont", "id": 4495, "credit_id": "52fe49c99251416c910b8b17", "cast_id": 5, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Mark Schultz", "id": 38673, "credit_id": "52fe49c99251416c910b8b13", "cast_id": 4, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "David Schultz", "id": 103, "credit_id": "52fe49c99251416c910b8b1b", "cast_id": 6, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Sienna Miller", "character": "Nancy Schultz", "id": 23459, "credit_id": "52fe49c99251416c910b8b23", "cast_id": 8, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 3}, {"name": "Vanessa Redgrave", "character": "Jean du Pont", "id": 13333, "credit_id": "52fe49c99251416c910b8b27", "cast_id": 9, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 4}, {"name": "Anthony Michael Hall", "character": "Jack", "id": 1904, "credit_id": "52fe49c99251416c910b8b1f", "cast_id": 7, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 5}, {"name": "Guy Boyd", "character": "Henry Beck", "id": 19752, "credit_id": "546413d30e0a2629460007ff", "cast_id": 23, "profile_path": "/89KKXCgVKlB67FtjeTN6AlJYjlS.jpg", "order": 6}, {"name": "Brett Rice", "character": "Fred Cole", "id": 29934, "credit_id": "546413e0c3a36804ce000781", "cast_id": 24, "profile_path": "/1gWgDmlT9WCIPTDzkYQSs1NIt7F.jpg", "order": 7}, {"name": "Jackson Frazer", "character": "Alexander Schultz", "id": 1385043, "credit_id": "546413f20e0a26293b0007eb", "cast_id": 25, "profile_path": "/x6xI236inmbO5iIzbyx7rjw7qJq.jpg", "order": 8}, {"name": "Samara Lee", "character": "Danielle Schultz", "id": 1378130, "credit_id": "54641401c3a36804ce000785", "cast_id": 26, "profile_path": "/5a6QLIBrnMhna6S4GD6h3YHbbz3.jpg", "order": 9}, {"name": "Francis J. Murphy III", "character": "Wayne Kendall", "id": 1385044, "credit_id": "5464140fc3a36804ac000764", "cast_id": 27, "profile_path": "/zsYyhziJ87BgJb0nIUBS9x2LrHx.jpg", "order": 10}, {"name": "Jane Mowder", "character": "Rosie", "id": 1385045, "credit_id": "5464141b0e0a26294600080c", "cast_id": 28, "profile_path": "/9ijRxNKHTTBTNxgZk66vj91Lx4.jpg", "order": 11}, {"name": "David Bennett", "character": "Documentary Director", "id": 1431311, "credit_id": "54ecda5bc3a3680b800023a1", "cast_id": 30, "profile_path": null, "order": 12}, {"name": "Lee Perkins", "character": "Corporal Daly", "id": 98175, "credit_id": "54ecdaaa9251417968002240", "cast_id": 31, "profile_path": "/6Zy5TrYeol8di9HUJVneFc1mHwt.jpg", "order": 13}, {"name": "Robert Haramia", "character": "Banquet Guest", "id": 1431401, "credit_id": "54ed0ad69251412f7a000504", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Daniel Hilt", "character": "Roberto Garcia", "id": 1431403, "credit_id": "54ed0b2dc3a3680b800028bb", "cast_id": 33, "profile_path": "/qxvoeNWqg42jLgRWlKf5EsbMDbV.jpg", "order": 15}, {"name": "Bryan Cook", "character": "Ben Langer", "id": 1431410, "credit_id": "54ed0c9092514179710026d6", "cast_id": 36, "profile_path": null, "order": 18}], "directors": [{"name": "Bennett Miller", "department": "Directing", "job": "Director", "credit_id": "52fe49c99251416c910b8b03", "profile_path": "/jlnO6Hg6jChoGWr6ScVBpLJBAiI.jpg", "id": 5345}], "vote_average": 6.5, "runtime": 134}, "13767": {"poster_path": "/kvKXyrc3cUGqXin2u76Ef8lApMI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 84500122, "overview": "Now that Santa and Mrs. Claus have the North Pole running smoothly, the Counsel of Legendary Figures has called an emergency meeting on Christmas Eve! The evil Jack Frost has been making trouble, looking to take over the holiday! So he launches a plan to sabotage the toy factory and compel Scott to invoke the little-known Escape Clause and wish he'd never become Santa.", "video": false, "id": 13767, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Santa Clause 3: The Escape Clause", "tagline": "His time at the North Pole is about to go South.", "vote_count": 61, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/1h8iA6i2DpPhsHC65nUB2voVnm5.jpg", "id": 53159, "name": "The Santa Clause Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452681", "adult": false, "backdrop_path": "/wTWoDOydYrOS5eMRluB59cmj1MT.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2006-11-03", "popularity": 0.239125454366315, "original_title": "The Santa Clause 3: The Escape Clause", "budget": 0, "cast": [{"name": "Tim Allen", "character": "Santa", "id": 12898, "credit_id": "52fe45969251416c7505b9fd", "cast_id": 1, "profile_path": "/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg", "order": 0}, {"name": "Elizabeth Mitchell", "character": "Mrs.Clause", "id": 31167, "credit_id": "52fe45969251416c7505ba01", "cast_id": 2, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 1}, {"name": "Eric Lloyd", "character": "Charlie", "id": 27564, "credit_id": "52fe45969251416c7505ba05", "cast_id": 3, "profile_path": "/qemoEBG9JeAerb3RsXUOa2peZxQ.jpg", "order": 2}, {"name": "Judge Reinhold", "character": "neil miller", "id": 777, "credit_id": "52fe45969251416c7505ba09", "cast_id": 4, "profile_path": "/q7jNBwyRMq60uFG2rLefYnYgzSY.jpg", "order": 3}, {"name": "Wendy Crewson", "character": "Laura Miller", "id": 19957, "credit_id": "52fe45969251416c7505ba0d", "cast_id": 5, "profile_path": "/e20JNF2oF7B0uGcoepL8j3uY0iE.jpg", "order": 4}, {"name": "Martin Short", "character": "Jack Frost", "id": 519, "credit_id": "52fe45969251416c7505ba11", "cast_id": 6, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 5}, {"name": "Spencer Breslin", "character": "Curtis", "id": 35654, "credit_id": "52fe45969251416c7505ba15", "cast_id": 7, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 6}, {"name": "Liliana Mumy", "character": "Lucy Miller", "id": 71861, "credit_id": "52fe45969251416c7505ba19", "cast_id": 8, "profile_path": "/4c6lvdaHUVwGris03W8XadYOOwk.jpg", "order": 7}, {"name": "Ann-Margret", "character": "Sylvia Newman", "id": 13567, "credit_id": "52fe45969251416c7505ba1d", "cast_id": 9, "profile_path": "/A29kdBewUchqsMid1QuEH6e1fXf.jpg", "order": 8}, {"name": "Alan Arkin", "character": "Bud Newman", "id": 1903, "credit_id": "52fe45969251416c7505ba21", "cast_id": 10, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 9}, {"name": "Abigail Breslin", "character": "Trish", "id": 17140, "credit_id": "52fe45969251416c7505ba25", "cast_id": 11, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 10}, {"name": "Art LaFleur", "character": "Tooth Fairy", "id": 44792, "credit_id": "52fe45969251416c7505ba29", "cast_id": 12, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 11}, {"name": "Aisha Tyler", "character": "Mother Nature", "id": 38674, "credit_id": "52fe45969251416c7505ba2d", "cast_id": 13, "profile_path": "/hAp5Sln9no6SEXszrHAoC4wEP4C.jpg", "order": 12}, {"name": "Kevin Pollak", "character": "Cupid", "id": 7166, "credit_id": "52fe45969251416c7505ba31", "cast_id": 14, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 13}, {"name": "Jay Thomas", "character": "Easter Bunny", "id": 21105, "credit_id": "52fe45969251416c7505ba35", "cast_id": 15, "profile_path": "/1NOyIfDuK7fPv6NAxXGE16dvmUG.jpg", "order": 14}, {"name": "Michael Dorn", "character": "Sandman", "id": 2391, "credit_id": "52fe45969251416c7505ba39", "cast_id": 16, "profile_path": "/d89cHhByE4kpzQcUB7z51YV3EjA.jpg", "order": 15}, {"name": "Peter Boyle", "character": "Father Time", "id": 1039, "credit_id": "52fe45969251416c7505ba3d", "cast_id": 17, "profile_path": "/hAZw6rJlAemlqND09Km7qGvpZ6D.jpg", "order": 16}], "directors": [{"name": "Michael Lembeck", "department": "Directing", "job": "Director", "credit_id": "52fe45969251416c7505ba43", "profile_path": "/nSksRzDoUToxdS2MqIeV7LGAiVk.jpg", "id": 15045}], "vote_average": 5.1, "runtime": 98}, "87496": {"poster_path": "/8tP3MK8A5Qah2bMHcXB6E7QF1aN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5133027, "overview": "A thriller centered on a former Weather Underground activist who goes on the run from a journalist who has discovered his identity.", "video": false, "id": 87496, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Company You Keep", "tagline": "The greatest manhunt in history.", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1381404", "adult": false, "backdrop_path": "/2p4dSrGUij4Geg17C2N7augYL4T.jpg", "production_companies": [{"name": "Voltage pictures", "id": 6633}], "release_date": "2012-09-06", "popularity": 0.874952236767447, "original_title": "The Company You Keep", "budget": 0, "cast": [{"name": "Anna Kendrick", "character": "Diana", "id": 84223, "credit_id": "52fe49c99251416c910b8b87", "cast_id": 4, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Benjamin Schulberg", "id": 10959, "credit_id": "52fe49c99251416c910b8b8b", "cast_id": 5, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Donal", "id": 1733, "credit_id": "52fe49c99251416c910b8b8f", "cast_id": 6, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Ray Fuller", "id": 2283, "credit_id": "52fe49c99251416c910b8b93", "cast_id": 7, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Mac McLeod", "id": 16431, "credit_id": "52fe49c99251416c910b8b97", "cast_id": 8, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Robert Redford", "character": "Jim Grant", "id": 4135, "credit_id": "52fe49c99251416c910b8b9b", "cast_id": 9, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 5}, {"name": "Terrence Howard", "character": "Cornelius", "id": 18288, "credit_id": "52fe49c99251416c910b8b9f", "cast_id": 11, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 6}, {"name": "Susan Sarandon", "character": "Sharon Solarz", "id": 4038, "credit_id": "52fe49c99251416c910b8ba3", "cast_id": 12, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 7}, {"name": "Brendan Gleeson", "character": "Henry Osborne", "id": 2039, "credit_id": "52fe49c99251416c910b8ba7", "cast_id": 13, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 8}, {"name": "Brit Marling", "character": "Isabel", "id": 222330, "credit_id": "52fe49c99251416c910b8bab", "cast_id": 14, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 9}, {"name": "Chris Cooper", "character": "Daniel", "id": 2955, "credit_id": "52fe49c99251416c910b8baf", "cast_id": 15, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 10}, {"name": "Stephen Root", "character": "Billy Cusimano", "id": 17401, "credit_id": "52fe49c99251416c910b8bb3", "cast_id": 16, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 11}, {"name": "Julie Christie", "character": "Mimi Lurie", "id": 1666, "credit_id": "52fe49c99251416c910b8bbd", "cast_id": 18, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 12}, {"name": "Richard Jenkins", "character": "Jed Lewis", "id": 28633, "credit_id": "52fe49c99251416c910b8bc1", "cast_id": 19, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 13}, {"name": "Keegan Connor Tracy", "character": "Jim Grant's secretary", "id": 42710, "credit_id": "52fe49c99251416c910b8bc5", "cast_id": 21, "profile_path": "/LSq3wiNbQunsvUmGBeRPu0AoOM.jpg", "order": 14}], "directors": [{"name": "Robert Redford", "department": "Directing", "job": "Director", "credit_id": "52fe49c99251416c910b8b77", "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "id": 4135}], "vote_average": 6.0, "runtime": 121}, "87499": {"poster_path": "/n6n0rMFsQhdNoMygr2pyL26wUfM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2401510, "overview": "An operative for an elite private intelligence firm finds her priorities irrevocably changed after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.", "video": false, "id": 87499, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The East", "tagline": "Spy on us, we'll spy on you.", "vote_count": 109, "homepage": "http://www.theeastmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1869716", "adult": false, "backdrop_path": "/x2JxMN1baKIhlyNJeuvC8HlnE5t.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}], "release_date": "2013-05-31", "popularity": 1.20737092846637, "original_title": "The East", "budget": 6500000, "cast": [{"name": "Brit Marling", "character": "Sarah", "id": 222330, "credit_id": "52fe49ca9251416c910b8c2f", "cast_id": 6, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 0}, {"name": "Alexander Skarsg\u00e5rd", "character": "Benji", "id": 28846, "credit_id": "52fe49ca9251416c910b8c2b", "cast_id": 5, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 1}, {"name": "Ellen Page", "character": "Izzy", "id": 27578, "credit_id": "52fe49ca9251416c910b8c27", "cast_id": 4, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 2}, {"name": "Toby Kebbell", "character": "Doc", "id": 20286, "credit_id": "52fe49ca9251416c910b8c37", "cast_id": 8, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 3}, {"name": "Shiloh Fernandez", "character": "Luca", "id": 79795, "credit_id": "52fe49ca9251416c910b8c3b", "cast_id": 9, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 4}, {"name": "Aldis Hodge", "character": "Thumbs", "id": 83860, "credit_id": "52fe49ca9251416c910b8c43", "cast_id": 11, "profile_path": "/lPYksVSaRdaHOhC4OzBEOw4uRbp.jpg", "order": 5}, {"name": "Danielle Macdonald", "character": "Tess", "id": 1203789, "credit_id": "52fe49ca9251416c910b8c47", "cast_id": 12, "profile_path": "/5fMaAMGIzwYCTYepPfi1LnszFu6.jpg", "order": 6}, {"name": "Hillary Baack", "character": "Eve", "id": 207467, "credit_id": "52fe49ca9251416c910b8c4b", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Patricia Clarkson", "character": "Sharon", "id": 1276, "credit_id": "52fe49ca9251416c910b8c33", "cast_id": 7, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 8}, {"name": "Jason Ritter", "character": "Tim", "id": 50095, "credit_id": "52fe49ca9251416c910b8c4f", "cast_id": 14, "profile_path": "/ysWVNRFfk7oGngurF7VWkWhvyQS.jpg", "order": 9}, {"name": "Julia Ormond", "character": "Paige", "id": 15887, "credit_id": "52fe49ca9251416c910b8c3f", "cast_id": 10, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 10}, {"name": "Billy Magnussen", "character": "Porty McCabe", "id": 141034, "credit_id": "52fe49ca9251416c910b8c53", "cast_id": 15, "profile_path": "/9iEugwAOkNLIzkwl2388OnCLHEw.jpg", "order": 11}, {"name": "Wilbur Fitzgerald", "character": "Robert McCabe", "id": 41019, "credit_id": "52fe49ca9251416c910b8c57", "cast_id": 16, "profile_path": "/zkt1tKQpdmDcFtmoRSuZHIXQtDm.jpg", "order": 12}, {"name": "John Neisler", "character": "Rory Huston", "id": 565505, "credit_id": "52fe49ca9251416c910b8c85", "cast_id": 25, "profile_path": "/yfqtwgV4ettobFyPn6x7LW6u5AI.jpg", "order": 13}, {"name": "Jamey Sheridan", "character": "Richard Cannon", "id": 2977, "credit_id": "52fe49ca9251416c910b8c89", "cast_id": 26, "profile_path": "/jpyh4Wd6AZ1oBCsbIxB72otXtcy.jpg", "order": 14}], "directors": [{"name": "Zal Batmanglij", "department": "Directing", "job": "Director", "credit_id": "52fe49ca9251416c910b8c23", "profile_path": "/kkDU7v5eDZTWbRIoPsRYT3AdcoG.jpg", "id": 933739}], "vote_average": 6.4, "runtime": 116}, "87502": {"poster_path": "/8XEbkjgorAm9xk15mF63jqJ4ByV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 161772375, "overview": "Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he's managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober -- but when the crash investigation exposes his addiction, he finds himself in an even worse situation.", "video": false, "id": 87502, "genres": [{"id": 18, "name": "Drama"}], "title": "Flight", "tagline": "", "vote_count": 1378, "homepage": "http://www.paramount.com/flight", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1907668", "adult": false, "backdrop_path": "/yogIqTNfrDIybDQTGPDawi409PD.jpg", "production_companies": [{"name": "Parkes/MacDonald Productions", "id": 11084}, {"name": "Paramount Pictures", "id": 4}, {"name": "ImageMovers", "id": 11395}], "release_date": "2012-11-02", "popularity": 0.44524698772638, "original_title": "Flight", "budget": 31000000, "cast": [{"name": "Denzel Washington", "character": "Whip Whitaker", "id": 5292, "credit_id": "5310d0d7925141102a001274", "cast_id": 50, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Hugh Lang", "id": 1896, "credit_id": "5310d0f692514110080013c8", "cast_id": 51, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Bruce Greenwood", "character": "Charlie Anderson", "id": 21089, "credit_id": "5310d11092514110350012ee", "cast_id": 52, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 3}, {"name": "Kelly Reilly", "character": "Nicole", "id": 17521, "credit_id": "5310d12a92514110130012d2", "cast_id": 53, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 4}, {"name": "John Goodman", "character": "Harling Mays", "id": 1230, "credit_id": "5310d188925141102a00127b", "cast_id": 54, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 5}, {"name": "Brian Geraghty", "character": "Ken Evans", "id": 49271, "credit_id": "5310d1be925141102a00127d", "cast_id": 55, "profile_path": "/3risyyYIFDQaz0EHRVqNOCToaDe.jpg", "order": 6}, {"name": "Nadine Velazquez", "character": "Katerina Marquez", "id": 65196, "credit_id": "5310d2029251410fe60012e4", "cast_id": 56, "profile_path": "/7bd8Qtmz25PtMuVN8uSzTp8wemx.jpg", "order": 7}, {"name": "Tamara Tunie", "character": "Margaret Thomason", "id": 42694, "credit_id": "5310d21a925141102a001282", "cast_id": 57, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 8}, {"name": "Melissa Leo", "character": "Ellen Block", "id": 6832, "credit_id": "5310d235925141101f00123b", "cast_id": 58, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 9}, {"name": "Garcelle Beauvais", "character": "Deana", "id": 31647, "credit_id": "5310d24f925141101f00123d", "cast_id": 59, "profile_path": "/fuZx5JL2VeMM1nwrZw2pkAMxuVt.jpg", "order": 10}, {"name": "Justin Martin", "character": "Will Whitaker Jr.", "id": 208956, "credit_id": "5310d2e692514110080013d2", "cast_id": 60, "profile_path": "/AnBe95UyEgPvC1xU159PlWy0nrH.jpg", "order": 11}, {"name": "Peter Gerety", "character": "Avington Carr", "id": 1986, "credit_id": "5310d31e925141104d00138b", "cast_id": 61, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 12}], "directors": [{"name": "Robert Zemeckis", "department": "Directing", "job": "Director", "credit_id": "52fe49ca9251416c910b8d73", "profile_path": "/jJpbvGw4xTC8lWMqNYpLVCMMVV.jpg", "id": 24}], "vote_average": 6.2, "runtime": 138}, "38356": {"poster_path": "/sZY3ls18QTY0pFBJn2vl2MmauTQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1123746996, "overview": "Sam Witwicky takes his first tenuous steps into adulthood while remaining a reluctant human ally of Autobot-leader Optimus Prime. The film centers around the space race between the USSR and the USA, suggesting there was a hidden Transformers role in it all that remains one of the planet's most dangerous secrets.", "video": false, "id": 38356, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers: Dark of the Moon", "tagline": "The invasion we always feared. An enemy we never expected.", "vote_count": 1825, "homepage": "http://www.transformersmovie.com/", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1399103", "adult": false, "backdrop_path": "/76ZUJdlSUISSapiKXK3uG3Y8cuO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Hasbro", "id": 2598}, {"name": "Indochina Productions", "id": 19751}], "release_date": "2011-06-28", "popularity": 0.67619397319348, "original_title": "Transformers: Dark of the Moon", "budget": 195000000, "cast": [{"name": "Shia LaBeouf", "character": "Sam Witwicky", "id": 10959, "credit_id": "52fe46af9251416c9105c5f5", "cast_id": 3, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 0}, {"name": "John Malkovich", "character": "Bruce Brazos", "id": 6949, "credit_id": "52fe46af9251416c9105c5f9", "cast_id": 5, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Ken Jeong", "character": "Jerry Wang", "id": 83586, "credit_id": "52fe46af9251416c9105c5fd", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 2}, {"name": "Frances McDormand", "character": "National Intelligence Director", "id": 3910, "credit_id": "52fe46af9251416c9105c601", "cast_id": 7, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 3}, {"name": "Josh Duhamel", "character": "Lt. Colonel William Lennox", "id": 19536, "credit_id": "52fe46af9251416c9105c605", "cast_id": 9, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 4}, {"name": "Tyrese Gibson", "character": "Robert Epps", "id": 8169, "credit_id": "52fe46af9251416c9105c609", "cast_id": 10, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 5}, {"name": "Hugo Weaving", "character": "Megatron (voice)", "id": 1331, "credit_id": "52fe46af9251416c9105c60d", "cast_id": 11, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 6}, {"name": "Leonard Nimoy", "character": "Sentinel Prime (voice)", "id": 1749, "credit_id": "52fe46af9251416c9105c611", "cast_id": 12, "profile_path": "/5B5blUXy0PDvToh2nxZk4SVTdyP.jpg", "order": 7}, {"name": "John Turturro", "character": "Simmons", "id": 1241, "credit_id": "52fe46af9251416c9105c615", "cast_id": 13, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 8}, {"name": "Rosie Huntington-Whiteley", "character": "Carly", "id": 236048, "credit_id": "52fe46af9251416c9105c619", "cast_id": 14, "profile_path": "/thEKQmAHhhaxuFHxbks08gDwlij.jpg", "order": 9}, {"name": "Patrick Dempsey", "character": "Dylan", "id": 18352, "credit_id": "52fe46b09251416c9105c62f", "cast_id": 18, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 10}, {"name": "Alan Tudyk", "character": "Dutch", "id": 21088, "credit_id": "52fe46b09251416c9105c633", "cast_id": 19, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 11}, {"name": "Peter Cullen", "character": "Optimus Prime (voice)", "id": 19540, "credit_id": "52fe46b09251416c9105c637", "cast_id": 20, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 12}, {"name": "Glenn Morshower", "character": "General Morshower", "id": 12797, "credit_id": "52fe46b09251416c9105c63b", "cast_id": 21, "profile_path": "/ighVr61WoYsMVGvKeRXvubI0AkF.jpg", "order": 13}, {"name": "Charlie Adler", "character": "Starscream (voice) (as Charlie Adler)", "id": 81178, "credit_id": "52fe46b09251416c9105c63f", "cast_id": 22, "profile_path": "/eSZtf1oCn8PY3VEBclD7VkCEWS.jpg", "order": 14}, {"name": "Robert Foxworth", "character": "Ratchet (voice)", "id": 2962, "credit_id": "52fe46b09251416c9105c643", "cast_id": 23, "profile_path": "/ofBWY1UDjnYMCSjrSXARlKs4yn9.jpg", "order": 15}, {"name": "James Remar", "character": "Sideswipe (voice)", "id": 1736, "credit_id": "52fe46b09251416c9105c647", "cast_id": 24, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 16}, {"name": "Frank Welker", "character": "Shockwave/Soundwave/Barricade (voice)", "id": 15831, "credit_id": "52fe46b09251416c9105c64b", "cast_id": 26, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 17}, {"name": "Jess Harnell", "character": "Ironhide (voice)", "id": 84495, "credit_id": "52fe46b09251416c9105c64f", "cast_id": 27, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 18}, {"name": "Tom Kenny", "character": "Wheelie (voice)", "id": 78798, "credit_id": "52fe46b09251416c9105c653", "cast_id": 28, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 19}, {"name": "Reno Wilson", "character": "Brains (voice)", "id": 117187, "credit_id": "52fe46b09251416c9105c657", "cast_id": 29, "profile_path": "/xrxGdoGcF3p79NlWHEFvmj2eyx1.jpg", "order": 20}, {"name": "Ron Bottitta", "character": "Roadbuster/Amp (voice)", "id": 60602, "credit_id": "52fe46b09251416c9105c65b", "cast_id": 31, "profile_path": "/9qqT4usrllY5XWONGbDYusnP7yL.jpg", "order": 21}, {"name": "Scott Krinsky", "character": "Accuretta Executive", "id": 206334, "credit_id": "52fe46b09251416c9105c65f", "cast_id": 34, "profile_path": "/xznaXTt8fMrTtnp3Ey0qu4owB2A.jpg", "order": 22}, {"name": "John Di Maggio", "character": "Leadfoot/Target (voice)", "id": 31531, "credit_id": "52fe46b09251416c9105c663", "cast_id": 35, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 23}, {"name": "Julie White", "character": "Judy Witwicki", "id": 24305, "credit_id": "52fe46b09251416c9105c667", "cast_id": 36, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 24}, {"name": "Kevin Dunn", "character": "Ron Witwicki", "id": 14721, "credit_id": "52fe46b09251416c9105c66b", "cast_id": 37, "profile_path": "/85thH2pUn2tPP97QhnYQI7MBiCW.jpg", "order": 25}, {"name": "Keith Szarabajka", "character": "Laserbeak (voice)", "id": 87957, "credit_id": "52fe46b09251416c9105c66f", "cast_id": 38, "profile_path": "/rNeAyOrLNiP1YeCWXpBLTa7pLxZ.jpg", "order": 26}, {"name": "George Coe", "character": "Que / Wheeljack (voice)", "id": 14102, "credit_id": "52fe46b09251416c9105c673", "cast_id": 39, "profile_path": "/2ygklxHSWcNuWg4hjZe5J9MlzNR.jpg", "order": 27}, {"name": "Derek Miller", "character": "Mailroom Worker", "id": 1318952, "credit_id": "53712545c3a3687019000468", "cast_id": 42, "profile_path": "/tgxhxukteS84UkaIJlU48vqiusL.jpg", "order": 28}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe46af9251416c9105c5eb", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.2, "runtime": 154}, "38357": {"poster_path": "/cm56bLezP4aXHBNV1EQITE0yPBk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58785180, "overview": "When hard-working TV producer Becky Fuller is fired from a local news program, her career begins to look as bleak as her hapless love life. Stumbling into a job at \"Daybreak\" (the last-place national morning news show), Becky decides to revitalize the show by bringing on legendary TV anchor Mike Pomeroy. \u00a0Unfortunately, Pomeroy refuses to cover morning show staples like celebrity gossip, weather, fashion and crafts \u2013 let alone work with his new co-host, Colleen Peck, a former beauty queen and longtime morning show personality who is more than happy covering morning \"news.\" As Mike and Colleen clash, first behind the scenes and then on the air, Becky's blossoming love affair with fellow producer, Adam Bennett begins to unravel \u2013 and soon Becky is struggling to save her relationship, her reputation, her job and ultimately, the show itself.", "video": false, "id": 38357, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Morning Glory", "tagline": "Breakfast TV just got interesting.", "vote_count": 97, "homepage": "http://www.morningglorymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}], "imdb_id": "tt1126618", "adult": false, "backdrop_path": "/i12y0PWtU8GhhLG3bMiHJNIueWd.jpg", "production_companies": [{"name": "Goldcrest Films International", "id": 500}, {"name": "Bad Robot", "id": 11461}], "release_date": "2010-11-10", "popularity": 0.360967105318432, "original_title": "Morning Glory", "budget": 40000000, "cast": [{"name": "Rachel McAdams", "character": "Becky Fuller", "id": 53714, "credit_id": "52fe46b09251416c9105c6b3", "cast_id": 3, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Mike Pomeroy", "id": 3, "credit_id": "52fe46b09251416c9105c6b7", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Patrick Wilson", "character": "Adam Bennett", "id": 17178, "credit_id": "52fe46b09251416c9105c6bb", "cast_id": 5, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 2}, {"name": "Jeff Goldblum", "character": "Jerry Barnes", "id": 4785, "credit_id": "52fe46b09251416c9105c6bf", "cast_id": 6, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 3}, {"name": "Diane Keaton", "character": "Colleen Peck", "id": 3092, "credit_id": "52fe46b09251416c9105c6c3", "cast_id": 7, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 3}, {"name": "50 Cent", "character": "Himself", "id": 62644, "credit_id": "52fe46b09251416c9105c6c7", "cast_id": 8, "profile_path": "/gsEwsWWtC5xwFCzL2CnPmc24uIO.jpg", "order": 4}, {"name": "Arden Myrin", "character": "Day Break Producer #3", "id": 120244, "credit_id": "52fe46b09251416c9105c6cb", "cast_id": 9, "profile_path": "/phq9JCHOvSOvpTqBQktWjyZ2imh.jpg", "order": 5}, {"name": "Noah Bean", "character": "First Date", "id": 111945, "credit_id": "52fe46b09251416c9105c6cf", "cast_id": 11, "profile_path": "/1sHoJtjyYkPX8bMk5hmeJBkFUGt.jpg", "order": 6}, {"name": "Vanessa Aspillaga", "character": "Anna", "id": 143235, "credit_id": "52fe46b09251416c9105c6d3", "cast_id": 12, "profile_path": "/eGdYfaOMYNUvEtIq6LVQrfhMnek.jpg", "order": 7}, {"name": "Jeff Hiller", "character": "Sam", "id": 143236, "credit_id": "52fe46b09251416c9105c6d7", "cast_id": 13, "profile_path": "/xqQjqDiiJwzgLnvNJLyRPyKYrod.jpg", "order": 8}, {"name": "Linda Powell", "character": "Louanne", "id": 143237, "credit_id": "52fe46b09251416c9105c6db", "cast_id": 14, "profile_path": "/ybteH4NNVjm5FfWAk1C4iLFf2rz.jpg", "order": 9}, {"name": "Mike Hydeck", "character": "Ralph", "id": 143238, "credit_id": "52fe46b09251416c9105c6df", "cast_id": 15, "profile_path": "/86rl3Q5WdBf0NiETYFpO1Xp1l8U.jpg", "order": 10}, {"name": "Joseph J. Vargas", "character": "Channel 9 Director", "id": 143239, "credit_id": "52fe46b09251416c9105c6e3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "David Fonteno", "character": "Oscar", "id": 55276, "credit_id": "52fe46b09251416c9105c6e7", "cast_id": 17, "profile_path": "/kfuVHdttluE6KaSx0gOcSHudgCJ.jpg", "order": 12}, {"name": "Patti D'Arbanville", "character": "Becky's Mom", "id": 38160, "credit_id": "52fe46b09251416c9105c6eb", "cast_id": 18, "profile_path": "/zVx90KTPLdqRogcMCj3rMajjwd1.jpg", "order": 13}, {"name": "Ty Burrell", "character": "Paul McVee", "id": 15232, "credit_id": "52fe46b09251416c9105c6ef", "cast_id": 19, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 14}], "directors": [{"name": "Roger Michell", "department": "Directing", "job": "Director", "credit_id": "52fe46b09251416c9105c6a9", "profile_path": "/zDjSgsAY44QJljrvzIZWnWauqlg.jpg", "id": 7017}], "vote_average": 6.1, "runtime": 102}, "38358": {"poster_path": "/iWPm2Xlc5arD0oRb18k6MurmqHD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41000000, "overview": "After years of performing \u201cexorcisms\u201d and taking believers\u2019 money, Reverend Marcus travels to rural Louisiana with a film crew so he can dispel what he believes is the myth of demonic possession. The dynamic reverend is certain that this will be another routine \u201cexorcism\u201d on a disturbed religious fanatic but instead comes upon the blood-soaked farm of the Sweetzer family and a true evil he would have never thought imaginable.", "video": false, "id": 38358, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Last Exorcism", "tagline": "Believe In Him.", "vote_count": 100, "homepage": "http://thelastexorcism.com/", "belongs_to_collection": {"backdrop_path": "/5Sqzzmn7ApjfcuasUrnyRlDcpUu.jpg", "poster_path": "/AktaOzAg0QnEdz9Ss1KctsNh5bc.jpg", "id": 177675, "name": "The Last Exorcism Collection"}, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1320244", "adult": false, "backdrop_path": "/swXcukNqS52UffiBSrG0M1pm3t6.jpg", "production_companies": [{"name": "Strike Entertainment", "id": 655}, {"name": "StudioCanal", "id": 694}, {"name": "Arcade Pictures", "id": 11112}], "release_date": "2010-10-03", "popularity": 0.348031008624092, "original_title": "The Last Exorcism", "budget": 3000000, "cast": [{"name": "Ashley Bell", "character": "Nell Sweetzer", "id": 120248, "credit_id": "52fe46b09251416c9105c729", "cast_id": 4, "profile_path": "/rPc2n1A1ieTvh30hv2CNozyCv6O.jpg", "order": 0}, {"name": "Patrick Fabian", "character": "Cotton Marcus", "id": 58791, "credit_id": "52fe46b09251416c9105c72d", "cast_id": 5, "profile_path": "/qVBTTDdWkMaElKx77VFz8zy3Noq.jpg", "order": 1}, {"name": "Iris Bahr", "character": "Iris", "id": 120249, "credit_id": "52fe46b09251416c9105c731", "cast_id": 6, "profile_path": "/pl1ayIV9qbR1gV0Zqx0h5fWq3Vr.jpg", "order": 2}, {"name": "Shanna Forrestall", "character": "Mrs. Cotton Marcus", "id": 120251, "credit_id": "52fe46b09251416c9105c735", "cast_id": 8, "profile_path": "/3obLXjztke735vaes6XAdP0o1P8.jpg", "order": 3}, {"name": "Louis Herthum", "character": "Louis Sweetzer", "id": 93228, "credit_id": "52fe46b09251416c9105c739", "cast_id": 9, "profile_path": "/2aOsAMpQM3ntF755IIZ7l4AQvJ5.jpg", "order": 4}, {"name": "Allen Boudreaux", "character": "Satanic Worshiper", "id": 120252, "credit_id": "52fe46b09251416c9105c73d", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Tony Bentley", "character": "Gerald", "id": 120253, "credit_id": "52fe46b09251416c9105c741", "cast_id": 11, "profile_path": "/68Lph2NFNv3WFemZYKUYP3fmoqj.jpg", "order": 6}], "directors": [{"name": "Daniel Stamm", "department": "Directing", "job": "Director", "credit_id": "52fe46b09251416c9105c719", "profile_path": null, "id": 120245}], "vote_average": 5.6, "runtime": 87}, "38363": {"poster_path": "/yE8uba2FkmFagMpeNNoo0cPyJ7D.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Wife and mother Valerie Plame (Naomi Watts) has a double life as a CIA operative, hiding her vocation from family and friends. Her husband, Joseph Wilson (Sean Penn), writes a controversial article in The New York Times, refuting stories about the sale of enriched uranium to Iraq, Then Valerie's secret work and identity is leaked to the press. With her cover blown and other people endangered, Valerie's career and personal life begin to unravel.", "video": false, "id": 38363, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fair Game", "tagline": "Wife. Mother. Spy.", "vote_count": 58, "homepage": "http://www.fairgame-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0977855", "adult": false, "backdrop_path": "/2M7cOIHvoUS81JNO91FY7TViYUz.jpg", "production_companies": [{"name": "River Road Entertainment", "id": 1246}, {"name": "Participant Media", "id": 6735}], "release_date": "2010-05-20", "popularity": 0.186990536787994, "original_title": "Fair Game", "budget": 22000000, "cast": [{"name": "Naomi Watts", "character": "Valerie Plame", "id": 3489, "credit_id": "52fe46b19251416c9105c8b9", "cast_id": 4, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Sean Penn", "character": "Joseph Wilson", "id": 2228, "credit_id": "52fe46b19251416c9105c8bd", "cast_id": 5, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Ty Burrell", "character": "Fred", "id": 15232, "credit_id": "52fe46b19251416c9105c8c1", "cast_id": 6, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 2}, {"name": "Brooke Smith", "character": "Diana", "id": 31649, "credit_id": "52fe46b19251416c9105c8c5", "cast_id": 7, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 3}, {"name": "Bruce McGill", "character": "Jim Pavitt", "id": 14888, "credit_id": "52fe46b19251416c9105c8c9", "cast_id": 8, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 4}, {"name": "Anand Tiwari", "character": "Hafiz", "id": 86884, "credit_id": "52fe46b19251416c9105c8cd", "cast_id": 9, "profile_path": "/fybpO08cl8VhnikM9bFCWaZ1hup.jpg", "order": 5}, {"name": "Jessica Hecht", "character": "Sue", "id": 14984, "credit_id": "52fe46b19251416c9105c8e9", "cast_id": 19, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 6}, {"name": "Norbert Leo Butz", "character": "Steve", "id": 52020, "credit_id": "52fe46b19251416c9105c8d1", "cast_id": 11, "profile_path": "/yYonYgBHg9ocOWWNJnQaEtmMhrq.jpg", "order": 7}, {"name": "Rebecca Rigg", "character": "Lisa", "id": 80278, "credit_id": "52fe46b19251416c9105c8d5", "cast_id": 12, "profile_path": "/ash2ZyHj7BX5mVad47PfwCbZ0xI.jpg", "order": 8}, {"name": "Thomas McCarthy", "character": "Jeff", "id": 17867, "credit_id": "52fe46b19251416c9105c8d9", "cast_id": 14, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 9}, {"name": "Quinn Broggy", "character": "Trevor Wilson", "id": 142189, "credit_id": "52fe46b19251416c9105c8dd", "cast_id": 16, "profile_path": "/ztDPPcrNv4rLWPkrPGy6hleNhyO.jpg", "order": 10}, {"name": "Nicholas Sadler", "character": "CIA Tour Leader", "id": 50402, "credit_id": "52fe46b19251416c9105c8e1", "cast_id": 17, "profile_path": "/97hL5ECPZONeQtVBYEgj4osqfgx.jpg", "order": 11}, {"name": "Ashley Gerasimovich", "character": "Samantha Wilson", "id": 1074512, "credit_id": "52fe46b19251416c9105c8e5", "cast_id": 18, "profile_path": "/btJSb3raZ5U8yFpCU5xrbvufJoB.jpg", "order": 12}, {"name": "Michael Kelly", "character": "Jack", "id": 50217, "credit_id": "52fe46b19251416c9105c8ed", "cast_id": 20, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 13}, {"name": "Noah Emmerich", "character": "Bill", "id": 11315, "credit_id": "52fe46b19251416c9105c8f1", "cast_id": 21, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 14}, {"name": "David Denman", "character": "Dave", "id": 62562, "credit_id": "52fe46b19251416c9105c8f5", "cast_id": 22, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 15}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe46b19251416c9105c8a9", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 6.4, "runtime": 108}, "87516": {"poster_path": "/cmspwpe1usgG5hYijfEcTrueKRC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An everyday man has only three and a half days and limited resources to discover why he was imprisoned in a nondescript room for 20 years without any explanation.", "video": false, "id": 87516, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Oldboy", "tagline": "Ask not why you were imprisoned. Ask why you were set free.", "vote_count": 193, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321511", "adult": false, "backdrop_path": "/bk7oQqahFMarYBFri6xzjvXDzwm.jpg", "production_companies": [{"name": "40 Acres & A Mule Filmworks", "id": 4319}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Good Universe", "id": 17393}, {"name": "OB Productions", "id": 17395}], "release_date": "2013-11-27", "popularity": 1.01189615737379, "original_title": "Oldboy", "budget": 0, "cast": [{"name": "Josh Brolin", "character": "Joe Doucett", "id": 16851, "credit_id": "52fe49cb9251416c910b9039", "cast_id": 4, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 0}, {"name": "Elizabeth Olsen", "character": "Marie Sebastian", "id": 550843, "credit_id": "52fe49cc9251416c910b904d", "cast_id": 8, "profile_path": "/jNS9KvsupdxW3s05mk6LezoB93T.jpg", "order": 1}, {"name": "Samuel L. Jackson", "character": "Chaney", "id": 2231, "credit_id": "52fe49cc9251416c910b9049", "cast_id": 7, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 2}, {"name": "Sharlto Copley", "character": "Adrian Pryce", "id": 82191, "credit_id": "52fe49cc9251416c910b9051", "cast_id": 9, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 3}, {"name": "Lance Reddick", "character": "Daniel Newcombe", "id": 129101, "credit_id": "52fe49cc9251416c910b9055", "cast_id": 10, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 4}, {"name": "Michael Imperioli", "character": "Chucky", "id": 11486, "credit_id": "52fe49cc9251416c910b9059", "cast_id": 11, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 5}, {"name": "Max Casella", "character": "James Prestley", "id": 7133, "credit_id": "52fe49cc9251416c910b9061", "cast_id": 13, "profile_path": "/eYdODjmmMJm1PVCV5MaNp1JTYZI.jpg", "order": 6}, {"name": "Richard Portnow", "character": "Bernie Sharkey", "id": 4255, "credit_id": "52fe49cc9251416c910b905d", "cast_id": 12, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 7}, {"name": "Ilfenesh Hadera", "character": "Judy", "id": 1181354, "credit_id": "52fe49cc9251416c910b9065", "cast_id": 14, "profile_path": "/eAqNW8ZEwmgAgSx9lgPMG4JObHl.jpg", "order": 8}, {"name": "Grey Damon", "character": "Young Joe", "id": 130769, "credit_id": "52fe49cc9251416c910b9069", "cast_id": 16, "profile_path": "/q3Dw5yaDiGTyET52YvYfi2Fa4Pv.jpg", "order": 9}, {"name": "Rami Malek", "character": "Browning", "id": 17838, "credit_id": "52fe49cc9251416c910b906d", "cast_id": 17, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 10}, {"name": "James Ransone", "character": "Dr. Tom Melby", "id": 5296, "credit_id": "52fe49cc9251416c910b9071", "cast_id": 18, "profile_path": "/7E37MLGVDnuzfEvF8TBOqaL232m.jpg", "order": 11}, {"name": "Linda Emond", "character": "Edwina Burke", "id": 58643, "credit_id": "52fe49cc9251416c910b9075", "cast_id": 19, "profile_path": "/tJJs1Mj1e7G03bEBoin6JcGLlW7.jpg", "order": 12}, {"name": "Hannah Simone", "character": "Stephanie Lee", "id": 1181326, "credit_id": "52fe49cc9251416c910b9079", "cast_id": 20, "profile_path": "/hCTaw1EmmNWzxLXLpGQvAc5S2SM.jpg", "order": 13}, {"name": "Pom Klementieff", "character": "Haeng-Bok", "id": 139820, "credit_id": "5513bea2c3a3686195002c6a", "cast_id": 35, "profile_path": "/s3Cv5Z11yhrUqBP9cMcLZ6J4cRQ.jpg", "order": 14}], "directors": [{"name": "Spike Lee", "department": "Directing", "job": "Director", "credit_id": "52fe49cb9251416c910b902f", "profile_path": "/BRq4UHdeI6QUd17vcD9Hnxf0ch.jpg", "id": 5281}], "vote_average": 6.0, "runtime": 104}, "38365": {"poster_path": "/rKPU178ngGRXPYnuO3cpCnZP6wJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 267420265, "overview": "After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.", "video": false, "id": 38365, "genres": [{"id": 35, "name": "Comedy"}], "title": "Grown Ups", "tagline": "Boys will be boys. . . some longer than others.", "vote_count": 686, "homepage": "http://www.grownups-movie.com/", "belongs_to_collection": {"backdrop_path": "/ahlmYgIHI6oye76bgoUtC01mcrC.jpg", "poster_path": "/8m9PIgdP6Nj18P3thsyI70qs76s.jpg", "id": 180546, "name": "Grown Ups Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1375670", "adult": false, "backdrop_path": "/q4s8RTQFyLrEn2S8akWGMmc8mYX.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2010-06-24", "popularity": 1.01594501423804, "original_title": "Grown Ups", "budget": 80000000, "cast": [{"name": "Adam Sandler", "character": "Lenny Feder", "id": 19292, "credit_id": "52fe46b29251416c9105c999", "cast_id": 4, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Roxanne Chase-Feder", "id": 3136, "credit_id": "52fe46b29251416c9105c99d", "cast_id": 5, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Maria Bello", "character": "Sally Lamonsoff", "id": 49, "credit_id": "52fe46b29251416c9105c9a5", "cast_id": 7, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 2}, {"name": "Steve Buscemi", "character": "Wiley", "id": 884, "credit_id": "52fe46b29251416c9105c9a1", "cast_id": 6, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 3}, {"name": "Maya Rudolph", "character": "Deanne McKenzie", "id": 52792, "credit_id": "52fe46b29251416c9105c9ad", "cast_id": 9, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 4}, {"name": "Kevin James", "character": "Eric Lamonsoff", "id": 32895, "credit_id": "52fe46b29251416c9105c9a9", "cast_id": 8, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 5}, {"name": "Rob Schneider", "character": "Rob Hilliard", "id": 60949, "credit_id": "52fe46b29251416c9105c9b1", "cast_id": 10, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 6}, {"name": "Chris Rock", "character": "Kurt McKenzie", "id": 2632, "credit_id": "52fe46b29251416c9105c9b5", "cast_id": 11, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 7}, {"name": "Jamie Chung", "character": "Amber Hilliard", "id": 78324, "credit_id": "52fe46b29251416c9105c9b9", "cast_id": 12, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 8}, {"name": "David Spade", "character": "Marcus Higgins", "id": 60950, "credit_id": "52fe46b29251416c9105c9bd", "cast_id": 14, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 9}, {"name": "Ebony Jo-Ann", "character": "Mama Ronzoni", "id": 142377, "credit_id": "52fe46b29251416c9105c9c1", "cast_id": 15, "profile_path": "/Ra17Zik0PfabOcHTayW4k8CwB9.jpg", "order": 10}, {"name": "Di Quon", "character": "Rita", "id": 53281, "credit_id": "52fe46b29251416c9105c9c5", "cast_id": 16, "profile_path": "/9WAHACcLROdTOePDHi0hOUd6of0.jpg", "order": 11}, {"name": "Colin Quinn", "character": "Dickie Bailey", "id": 1219901, "credit_id": "52fe46b29251416c9105c9d5", "cast_id": 22, "profile_path": "/qKP3sURBluc5NG2g5LrKoVnY5iG.jpg", "order": 12}, {"name": "Tim Meadows", "character": "Malcolm", "id": 51857, "credit_id": "52fe46b29251416c9105c9c9", "cast_id": 19, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 13}, {"name": "Madison Riley", "character": "Jasmine Hilliard", "id": 101565, "credit_id": "52fe46b29251416c9105c9cd", "cast_id": 20, "profile_path": "/4TKPa7fkHSWB8V2KLamLyF3PlwD.jpg", "order": 14}, {"name": "Dan Patrick", "character": "Norby The Ride Guy", "id": 166029, "credit_id": "52fe46b29251416c9105c9d1", "cast_id": 21, "profile_path": "/9tgxUP2r24g3NoXXMJoQEb8HAVM.jpg", "order": 15}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe46b29251416c9105c989", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 6.1, "runtime": 102}, "13223": {"poster_path": "/9ip2LgCyVMdovhJqY4mttTWfyo6.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 269958228, "overview": "Walt Kowalski, an iron-willed and inflexible Korean War veteran living in a changing world, is forced by his immigrant neighbors to confront his long-held prejudices.", "video": false, "id": 13223, "genres": [{"id": 18, "name": "Drama"}], "title": "Gran Torino", "tagline": "Ever come across somebody you shouldn't have messed with?", "vote_count": 880, "homepage": "http://www.thegrantorino.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1205489", "adult": false, "backdrop_path": "/w7oBCXL7gAwmYD7g0W17q8q1Ozc.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Matten Productions", "id": 27351}, {"name": "Double Nickel Entertainment", "id": 10138}, {"name": "Gerber Pictures", "id": 975}, {"name": "Malpaso Productions", "id": 171}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "WV Films IV", "id": 27352}], "release_date": "2008-12-11", "popularity": 1.49471451013287, "original_title": "Gran Torino", "budget": 33000000, "cast": [{"name": "Clint Eastwood", "character": "Walt Kowalski", "id": 190, "credit_id": "52fe454f9251416c750523ff", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Cory Hardrict", "character": "Duke", "id": 74302, "credit_id": "52fe454f9251416c75052403", "cast_id": 2, "profile_path": "/zxorRz2Gjdyp4qXH2BHGMuKWoBy.jpg", "order": 1}, {"name": "John Carroll Lynch", "character": "Barber", "id": 3911, "credit_id": "52fe454f9251416c75052407", "cast_id": 3, "profile_path": "/5eEGOANKnCCj7FLa3oV28gGYWkW.jpg", "order": 2}, {"name": "Geraldine Hughes", "character": "Karen Kowalski", "id": 16502, "credit_id": "52fe454f9251416c7505240b", "cast_id": 4, "profile_path": "/c1RaGjdaoRdX6n5BidukIg26J1A.jpg", "order": 3}, {"name": "Brian Haley", "character": "Mitch Kowalski", "id": 10138, "credit_id": "52fe454f9251416c7505240f", "cast_id": 5, "profile_path": "/oGaZ2sa0nHJ95vW7nN2TgjeeXGM.jpg", "order": 4}, {"name": "Dreama Walker", "character": "Ashley Kowalski", "id": 74303, "credit_id": "52fe454f9251416c75052413", "cast_id": 6, "profile_path": "/s0d0pYG4ZECFGt87bBu4iEORh0K.jpg", "order": 5}, {"name": "Doua Moua", "character": "Fong/Spider", "id": 74304, "credit_id": "52fe454f9251416c75052417", "cast_id": 7, "profile_path": "/d5ngQiY17waxRTRJxs5hfW6uTpQ.jpg", "order": 6}, {"name": "Brian Howe", "character": "Steve Kowalski", "id": 1990, "credit_id": "52fe454f9251416c7505241b", "cast_id": 8, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 7}, {"name": "Sarah Neubauer", "character": "Paralegal", "id": 74305, "credit_id": "52fe454f9251416c7505241f", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Lee Mong Vang", "character": "Hmong Gang Banger 3", "id": 74306, "credit_id": "52fe45509251416c75052423", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Nana Gbewonyo", "character": "Monk", "id": 74307, "credit_id": "52fe45509251416c75052427", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Christopher Carley", "character": "Father Janovich", "id": 74308, "credit_id": "52fe45509251416c7505242b", "cast_id": 12, "profile_path": "/BBn5WiOk52PjSixM4winXVL1Fp.jpg", "order": 11}, {"name": "Bee Vang", "character": "Tao Vang Lor", "id": 74309, "credit_id": "52fe45509251416c7505242f", "cast_id": 13, "profile_path": "/A66mKZmc2rTBm8to0UwucQWYGAq.jpg", "order": 12}, {"name": "John Anton", "character": "Family Friend", "id": 74310, "credit_id": "52fe45509251416c75052433", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Austin Douglas Smith", "character": "Daniel Kowalski", "id": 74311, "credit_id": "52fe45509251416c75052437", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Ahney Her", "character": "Sue Lor", "id": 74312, "credit_id": "52fe45509251416c7505243b", "cast_id": 16, "profile_path": "/7M4ygS8JbfLBMbJet1j7PXtHfrZ.jpg", "order": 15}, {"name": "Ramon Camacho", "character": "Latino #3", "id": 74313, "credit_id": "52fe45509251416c7505243f", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Rio Scafone", "character": "Day Planner", "id": 74314, "credit_id": "52fe45509251416c75052443", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Chee Thao", "character": "Grandma Vang Lor", "id": 1445218, "credit_id": "5511c154c3a3683e7f007d67", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Choua Kue", "character": "Youa", "id": 1445219, "credit_id": "5511c18fc3a36801bb001ee0", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe45509251416c75052449", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 7.4, "runtime": 116}, "13804": {"poster_path": "/kC8pOjxYpTDYWWmNLo41kkpPYux.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 363164265, "overview": "When a crime brings them back to L.A., fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy, Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.", "video": false, "id": 13804, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Fast & Furious", "tagline": "New Model. Original Parts.", "vote_count": 1120, "homepage": "http://www.fastandfuriousmovie.net", "belongs_to_collection": {"backdrop_path": "/3gp744RzKvFB0X5Nbc2UeHW3mX2.jpg", "poster_path": "/uv63yAGg1zETAs1XQsOQpava87l.jpg", "id": 9485, "name": "The Fast and the Furious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1013752", "adult": false, "backdrop_path": "/ivtqSfKW3JFDdnbBf9BRCL9ngLQ.jpg", "production_companies": [{"name": "Dentsu Inc.", "id": 1778}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "One Race Productions", "id": 1225}], "release_date": "2009-04-03", "popularity": 2.36198046589511, "original_title": "Fast & Furious", "budget": 85000000, "cast": [{"name": "Vin Diesel", "character": "Dominic Toretto", "id": 12835, "credit_id": "52fe45a29251416c7505d387", "cast_id": 1, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Paul Walker", "character": "Brian O'Conner", "id": 8167, "credit_id": "52fe45a29251416c7505d391", "cast_id": 3, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Letty", "id": 17647, "credit_id": "52fe45a29251416c7505d395", "cast_id": 4, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "Jordana Brewster", "character": "Mia Toretto", "id": 22123, "credit_id": "52fe45a29251416c7505d399", "cast_id": 5, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 3}, {"name": "John Ortiz", "character": "Campos", "id": 40543, "credit_id": "52fe45a29251416c7505d39d", "cast_id": 8, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 4}, {"name": "Laz Alonso", "character": "Fenix Rise", "id": 10964, "credit_id": "52fe45a29251416c7505d3a1", "cast_id": 9, "profile_path": "/6zqlURffzAErl4g4d8kiUWYWmoz.jpg", "order": 5}, {"name": "Gal Gadot", "character": "Gisele Harabo", "id": 90633, "credit_id": "52fe45a29251416c7505d3a5", "cast_id": 10, "profile_path": "/2cg8JtFg7WhUkYTNKXqlL9F1M3v.jpg", "order": 6}, {"name": "Jack Conley", "character": "Penning", "id": 21675, "credit_id": "52fe45a29251416c7505d3a9", "cast_id": 11, "profile_path": "/yVBZWNakcgP2sUbNh1UGQNEAZ72.jpg", "order": 7}, {"name": "Shea Whigham", "character": "Agent Ben Stasiak", "id": 74242, "credit_id": "52fe45a29251416c7505d3ad", "cast_id": 12, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 8}, {"name": "Liza Lapira", "character": "Agent Sophie Trinh", "id": 51998, "credit_id": "52fe45a39251416c7505d3b1", "cast_id": 13, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 9}, {"name": "Sung Kang", "character": "Han Lue", "id": 61697, "credit_id": "52fe45a39251416c7505d3b5", "cast_id": 14, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 10}, {"name": "Don Omar", "character": "Himself", "id": 90634, "credit_id": "52fe45a39251416c7505d3b9", "cast_id": 15, "profile_path": "/f1INIG2TE9jXXp5A3gGJR9UkePK.jpg", "order": 11}, {"name": "Brandon T. Jackson", "character": "Alex", "id": 53336, "credit_id": "52fe45a39251416c7505d3e1", "cast_id": 25, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 12}, {"name": "Mousa Kraish", "character": "Silvia Driver", "id": 54712, "credit_id": "53f6cb090e0a267f80006dfa", "cast_id": 35, "profile_path": "/bATns500G3T6he2yBeIVQSFRpiU.jpg", "order": 13}], "directors": [{"name": "Justin Lin", "department": "Directing", "job": "Director", "credit_id": "52fe45a29251416c7505d38d", "profile_path": "/4usb3KMBq9fHU1ujMqbedjbXTGZ.jpg", "id": 58189}], "vote_average": 6.3, "runtime": 107}, "13805": {"poster_path": "/6xBrOsf8RtHem3diXDGFsiKltYz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 14109284, "overview": "In DISASTER MOVIE, the filmmaking team behind the hits \"Scary Movie,\" \"Date Movie,\" \"Epic Movie\" and \"Meet The Spartans\" this time puts its unique, inimitable stamp on one of the biggest and most bloated movie genres of all time -- the disaster film.", "video": false, "id": 13805, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Disaster Movie", "tagline": "Your favorite movies are going to be destroyed.", "vote_count": 59, "homepage": "http://www.disastermovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1213644", "adult": false, "backdrop_path": "/rskyc6jadodyM1619SE7TIVdSYB.jpg", "production_companies": [{"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "LionsGate", "id": 7571}, {"name": "3 in the Box", "id": 19248}], "release_date": "2008-08-29", "popularity": 0.165434637307116, "original_title": "Disaster Movie", "budget": 25000000, "cast": [{"name": "Matt Lanter", "character": "Will", "id": 34202, "credit_id": "52fe45a39251416c7505d463", "cast_id": 5, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 0}, {"name": "Vanessa Lachey", "character": "Amy", "id": 20404, "credit_id": "52fe45a39251416c7505d467", "cast_id": 6, "profile_path": "/pS4nxWDSwimJz1yobwhgtFQ1u0M.jpg", "order": 1}, {"name": "Nicole Ari Parker", "character": "Enchanted Princess / Amy Winehouse Look-A-Like / Jessica Simpson Look-A-Like", "id": 74615, "credit_id": "52fe45a39251416c7505d46b", "cast_id": 7, "profile_path": "/vvEt8sXPKm9HxxDrHyg9aIxwvEM.jpg", "order": 2}, {"name": "Crista Flanagan", "character": "Juney / Hannah Montana", "id": 58957, "credit_id": "52fe45a39251416c7505d46f", "cast_id": 8, "profile_path": "/pLXGRqfV0nXNN1PdbfdleT8aQ5j.jpg", "order": 3}, {"name": "Gary 'G. Thang' Johnson", "character": "Calvin", "id": 1114053, "credit_id": "52fe45a39251416c7505d4af", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Ike Barinholtz", "character": "Wolf / Javier Bardem Look-A-Like / Police Officer / Hellboy / Batman / Beowulf / Prince Caspian", "id": 198150, "credit_id": "52fe45a39251416c7505d4b3", "cast_id": 20, "profile_path": "/j4cOnT9kT6AePfbPe3aZ5dSeDEk.jpg", "order": 5}, {"name": "Carmen Electra", "character": "Beautiful Assassin", "id": 28639, "credit_id": "52fe45a39251416c7505d4b7", "cast_id": 21, "profile_path": "/oFjqvsVleDaMtuJaLnSJdx7LUOg.jpg", "order": 6}, {"name": "Tony Cox", "character": "Indiana Jones", "id": 19754, "credit_id": "52fe45a39251416c7505d4bb", "cast_id": 22, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 7}, {"name": "Tad Hilgenbrink", "character": "Prince", "id": 54593, "credit_id": "52fe45a39251416c7505d4bf", "cast_id": 23, "profile_path": "/uAZIVadEM5iaVlQPkxGCpZImYuF.jpg", "order": 8}, {"name": "Nick Steele", "character": "Underwear Model", "id": 181685, "credit_id": "52fe45a39251416c7505d4c3", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "John Di Domenico", "character": "Dr. Phil Look-A-Like / Love Guru", "id": 1114054, "credit_id": "52fe45a39251416c7505d4c7", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Valerie Wildman", "character": "Samantha", "id": 47884, "credit_id": "52fe45a39251416c7505d4cb", "cast_id": 26, "profile_path": "/6VveQx5v1ELVNjnvPWZg0Bgzw29.jpg", "order": 11}, {"name": "Jason Boegh", "character": "Male Carrie", "id": 981262, "credit_id": "52fe45a39251416c7505d4cf", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Kim Kardashian", "character": "Lisa", "id": 212225, "credit_id": "54cab719925141678c012489", "cast_id": 28, "profile_path": "/xUZiyy7GNAJIp69tTiKxDbFqOOq.jpg", "order": 13}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe45a39251416c7505d453", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe45a39251416c7505d459", "profile_path": null, "id": 35734}], "vote_average": 3.6, "runtime": 87}, "8643": {"poster_path": "/7QXvngB8daM5OXFGP9wlFPPgMTZ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a younger girl called Emily Rose (Carpenter) dies, everyone puts blame on the exorcism which was performed on her by Father Moore (Wilkinson) prior to her death. The priest is arrested on suspicion of murder. The trail begins with lawyer Erin Bruner (Linney) representing Moore, but it is not going to be easy, as no one wants to believe what Father Moore says is true.", "video": false, "id": 8643, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Exorcism of Emily Rose", "tagline": "What happened to Emily?", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404032", "adult": false, "backdrop_path": "/6thnbe32tzVJlNHGmAKaHoQJRwP.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Firm Films", "id": 1838}], "release_date": "2005-09-09", "popularity": 0.958880391580391, "original_title": "The Exorcism of Emily Rose", "budget": 0, "cast": [{"name": "Laura Linney", "character": "Erin Bruner", "id": 350, "credit_id": "52fe44b1c3a36847f80a4a21", "cast_id": 1, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Father Moore", "id": 207, "credit_id": "52fe44b1c3a36847f80a4a25", "cast_id": 2, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Campbell Scott", "character": "Ethan Thomas", "id": 55152, "credit_id": "52fe44b1c3a36847f80a4a29", "cast_id": 3, "profile_path": "/LpYIN2jh58sHaUFM2r3G4G0iE6.jpg", "order": 2}, {"name": "Jennifer Carpenter", "character": "Emily Rose", "id": 53828, "credit_id": "52fe44b1c3a36847f80a4a2d", "cast_id": 4, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 3}, {"name": "Kenneth Welsh", "character": "Dr. Mueller", "id": 6074, "credit_id": "52fe44b1c3a36847f80a4a31", "cast_id": 5, "profile_path": "/q44fb9FLrA9ZWzP8xGv6PcX24V6.jpg", "order": 4}, {"name": "Mary Beth Hurt", "character": "Judge Brewster", "id": 54782, "credit_id": "52fe44b1c3a36847f80a4a35", "cast_id": 6, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 5}, {"name": "Colm Feore", "character": "Karl Gunderson", "id": 10132, "credit_id": "52fe44b1c3a36847f80a4a39", "cast_id": 7, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 6}, {"name": "Henry Czerny", "character": "Dr. Briggs", "id": 15319, "credit_id": "54fc58c1925141237d002036", "cast_id": 70, "profile_path": "/tRhRecHzqpbZfro5P1BpErf37d5.jpg", "order": 7}, {"name": "Shohreh Aghdashloo", "character": "Dr. Adani", "id": 21041, "credit_id": "54fc58dd92514122be001eb3", "cast_id": 71, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 8}, {"name": "Duncan Fraser", "character": "Dr. Cartwright", "id": 14595, "credit_id": "54fc5906c3a368163800132a", "cast_id": 72, "profile_path": "/65nwyXassO3PmeL8vvC7DKDXcSM.jpg", "order": 9}, {"name": "Mary Black", "character": "Dr. Vogel", "id": 11831, "credit_id": "54fc592a9251412329001ed7", "cast_id": 73, "profile_path": "/q7gftvbA1cgwldgcEabf1wXBAkj.jpg", "order": 10}, {"name": "Julian Christopher", "character": "District Attorney", "id": 60606, "credit_id": "54fc594ec3a36869fb004548", "cast_id": 74, "profile_path": null, "order": 11}], "directors": [{"name": "Scott Derrickson", "department": "Directing", "job": "Director", "credit_id": "52fe44b1c3a36847f80a4a4b", "profile_path": "/2498q7kKjApqbUMh4WEMxbtSDjn.jpg", "id": 55499}], "vote_average": 6.6, "runtime": 122}, "13809": {"poster_path": "/9tnHUDuUDrNJxJ3raxpKIrnYXlH.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 25739015, "overview": "When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.", "video": false, "id": 13809, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "RockNRolla", "tagline": "A story of sex, thugs and rock 'n roll.", "vote_count": 249, "homepage": "http://rocknrolla.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1032755", "adult": false, "backdrop_path": "/axbO2zZWdSzF7Y2tnSve9QIEhiV.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Toff Guy Films", "id": 2900}], "release_date": "2008-10-30", "popularity": 0.590004281280566, "original_title": "RockNRolla", "budget": 18000000, "cast": [{"name": "Mark Strong", "character": "Archy", "id": 2983, "credit_id": "52fe45a49251416c7505d67b", "cast_id": 20, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 0}, {"name": "Tom Wilkinson", "character": "Lenny Cole", "id": 207, "credit_id": "52fe45a49251416c7505d65b", "cast_id": 10, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 1}, {"name": "Toby Kebbell", "character": "Johnny Quid", "id": 20286, "credit_id": "52fe45a49251416c7505d64b", "cast_id": 6, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 2}, {"name": "Gerard Butler", "character": "One-Two", "id": 17276, "credit_id": "52fe45a49251416c7505d647", "cast_id": 5, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 3}, {"name": "Tom Hardy", "character": "Handsome Bob", "id": 2524, "credit_id": "52fe45a49251416c7505d663", "cast_id": 12, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 4}, {"name": "Idris Elba", "character": "Mumbles", "id": 17605, "credit_id": "52fe45a49251416c7505d677", "cast_id": 19, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 5}, {"name": "Karel Roden", "character": "Uri Omovich", "id": 10841, "credit_id": "52fe45a49251416c7505d657", "cast_id": 9, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 6}, {"name": "Thandie Newton", "character": "Stella", "id": 9030, "credit_id": "52fe45a49251416c7505d653", "cast_id": 8, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 7}, {"name": "Matt King", "character": "Cookie", "id": 23776, "credit_id": "52fe45a49251416c7505d65f", "cast_id": 11, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 8}, {"name": "Gemma Arterton", "character": "June", "id": 59620, "credit_id": "52fe45a49251416c7505d643", "cast_id": 4, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 9}, {"name": "Jeremy Piven", "character": "Roman", "id": 12799, "credit_id": "52fe45a49251416c7505d673", "cast_id": 17, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 10}, {"name": "Jimi Mistry", "character": "Councillor", "id": 16756, "credit_id": "52fe45a49251416c7505d64f", "cast_id": 7, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 11}, {"name": "Jamie Campbell Bower", "character": "Rocker", "id": 83356, "credit_id": "52fe45a49251416c7505d6cb", "cast_id": 35, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 12}, {"name": "Nonso Anozie", "character": "Tank", "id": 43547, "credit_id": "52fe45a49251416c7505d63b", "cast_id": 2, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 13}, {"name": "Charlotte Armer", "character": "Nurse", "id": 76970, "credit_id": "52fe45a49251416c7505d63f", "cast_id": 3, "profile_path": null, "order": 14}, {"name": "Ludacris", "character": "Mickey", "id": 8171, "credit_id": "52fe45a49251416c7505d67f", "cast_id": 21, "profile_path": "/xLfq9wFO6dtYuUK96hbJ8I8EKFw.jpg", "order": 15}], "directors": [{"name": "Guy Ritchie", "department": "Directing", "job": "Director", "credit_id": "52fe45a49251416c7505d637", "profile_path": "/kD7MnjSFBil7FjJkD2sG1tArR0H.jpg", "id": 956}], "vote_average": 6.7, "runtime": 114}, "13811": {"poster_path": "/xEVriTTbxSSCJaPPdDSkDVs4qgv.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 155446362, "overview": "A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold.", "video": false, "id": 13811, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Knowing", "tagline": "Knowing is everything...", "vote_count": 343, "homepage": "http://knowing-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0448011", "adult": false, "backdrop_path": "/p6WG7DkWT7VmUwgQuEZyPpKXWyX.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Escape Artists", "id": 1423}, {"name": "Mystery Clock Cinema", "id": 908}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Kaplan/Perrone Entertainment", "id": 11844}, {"name": "Wintergreen Productions", "id": 11845}], "release_date": "2009-03-20", "popularity": 1.09935380832699, "original_title": "Knowing", "budget": 50000000, "cast": [{"name": "Nicolas Cage", "character": "John Koestler", "id": 2963, "credit_id": "52fe45a49251416c7505d729", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Diana Wayland", "id": 9827, "credit_id": "52fe45a49251416c7505d72d", "cast_id": 3, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Chandler Canterbury", "character": "Caleb Koestler", "id": 77334, "credit_id": "52fe45a49251416c7505d731", "cast_id": 4, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 2}, {"name": "Ben Mendelsohn", "character": "Phil Bergman", "id": 77335, "credit_id": "52fe45a49251416c7505d735", "cast_id": 5, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 3}, {"name": "Nadia Townsend", "character": "Grace Koestler", "id": 77336, "credit_id": "52fe45a49251416c7505d739", "cast_id": 6, "profile_path": "/77grxfgmX7ysAy6C3IIKphHgeaz.jpg", "order": 4}, {"name": "D.G. Maloney", "character": "The Stranger", "id": 84963, "credit_id": "52fe45a49251416c7505d74f", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Lara Robinson", "character": "Lucinda Embry / Abby Wayland", "id": 84964, "credit_id": "52fe45a49251416c7505d753", "cast_id": 11, "profile_path": "/ycvh7d0pO4yiaeGM09JiBTdmD8m.jpg", "order": 6}, {"name": "Alan Hopgood", "character": "Rev. Koestler", "id": 44842, "credit_id": "52fe45a49251416c7505d757", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Adrienne Pickering", "character": "Allison", "id": 37292, "credit_id": "52fe45a49251416c7505d75b", "cast_id": 13, "profile_path": "/yMR3N1oXPbcfntLZrI2Tv2MpBXo.jpg", "order": 8}, {"name": "Joshua Long", "character": "Younger Caleb", "id": 84965, "credit_id": "52fe45a49251416c7505d75f", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Alethea McGrath", "character": "Miss Taylor (2009)", "id": 79106, "credit_id": "52fe45a49251416c7505d763", "cast_id": 15, "profile_path": "/5AuTSkd7hdv5zCa6Kr1oVncEmwB.jpg", "order": 10}, {"name": "Danielle Carter", "character": "Miss Taylor (1959)", "id": 84966, "credit_id": "52fe45a49251416c7505d767", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Tamara Donnellan", "character": "Lucinda's Mother", "id": 84967, "credit_id": "52fe45a49251416c7505d76b", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Travis Waite", "character": "Lucinda's Father", "id": 84968, "credit_id": "52fe45a49251416c7505d76f", "cast_id": 18, "profile_path": null, "order": 13}], "directors": [{"name": "Alex Proyas", "department": "Directing", "job": "Director", "credit_id": "52fe45a49251416c7505d725", "profile_path": "/yRSdtJ9WAK7UL8z7XI3LYQUBPpG.jpg", "id": 21085}], "vote_average": 5.6, "runtime": 121}, "13812": {"poster_path": "/diJgLy6vSGbNYNW5jZ1YpX7PHJ4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40855419, "overview": "A television reporter and her cameraman are trapped inside a building quarantined by the CDC after the outbreak of a mysterious virus which turns humans into bloodthirsty killers.", "video": false, "id": 13812, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Quarantine", "tagline": "Contain The Truth.", "vote_count": 78, "homepage": "", "belongs_to_collection": {"backdrop_path": "/89oRW30VYEZaQHo94Vcuct9uF7G.jpg", "poster_path": "/Aa0hh5DGedQPdFs2e43uRzqXw50.jpg", "id": 123932, "name": "Quarantine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1082868", "adult": false, "backdrop_path": "/mQXCYqGUPt4Ld6UX6uljM5azbGb.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Andale Pictures", "id": 22791}, {"name": "Vertigo Entertainment", "id": 829}], "release_date": "2008-10-10", "popularity": 0.174555822953716, "original_title": "Quarantine", "budget": 12000000, "cast": [{"name": "Jennifer Carpenter", "character": "Angela Vidal", "id": 53828, "credit_id": "52fe45a59251416c7505d7ef", "cast_id": 1, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 0}, {"name": "Steve Harris", "character": "Scott Percival", "id": 2202, "credit_id": "52fe45a59251416c7505d7f3", "cast_id": 2, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 1}, {"name": "Jay Hernandez", "character": "Jake", "id": 19487, "credit_id": "52fe45a59251416c7505d7f7", "cast_id": 3, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 2}, {"name": "Johnathon Schaech", "character": "George Fletcher", "id": 51670, "credit_id": "52fe45a59251416c7505d7fb", "cast_id": 4, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 3}, {"name": "Columbus Short", "character": "Danny Wilensky", "id": 31132, "credit_id": "535e4108c3a368309100512d", "cast_id": 13, "profile_path": "/9RaKHG9aODBaTOxdytmWEM8LEHa.jpg", "order": 4}, {"name": "Andrew Fiscella", "character": "James McCreedy", "id": 65699, "credit_id": "535e411bc3a3682273001840", "cast_id": 14, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 5}, {"name": "Rade \u0160erbed\u017eija", "character": "Yuri Ivanov", "id": 1118, "credit_id": "535e4143c3a3683091005137", "cast_id": 15, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 6}, {"name": "Greg Germann", "character": "Lawrence", "id": 19974, "credit_id": "535e4151c3a3683099005339", "cast_id": 16, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 7}, {"name": "Bernard White", "character": "Bernard", "id": 156739, "credit_id": "535e4162c3a36830a0005141", "cast_id": 17, "profile_path": "/1DEmHQyjfMLQssEE8PeFOtTYGn3.jpg", "order": 8}, {"name": "Dania Ramirez", "character": "Sadie", "id": 37046, "credit_id": "52fe45a59251416c7505d805", "cast_id": 6, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 9}, {"name": "Marin Hinkle", "character": "Kathy", "id": 65760, "credit_id": "52fe45a59251416c7505d815", "cast_id": 10, "profile_path": "/gqMABmd8yE6nhpdK900zqRDEjor.jpg", "order": 10}, {"name": "Joey King", "character": "Briana", "id": 125025, "credit_id": "52fe45a59251416c7505d809", "cast_id": 7, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 11}, {"name": "Jermaine Jackson", "character": "Nadif", "id": 207070, "credit_id": "52fe45a59251416c7505d80d", "cast_id": 8, "profile_path": "/mZd9phXItSn0NuPqyMNdF1S8BQ0.jpg", "order": 12}, {"name": "Denis O'Hare", "character": "Randy", "id": 81681, "credit_id": "52fe45a59251416c7505d811", "cast_id": 9, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 13}], "directors": [{"name": "John Erick Dowdle", "department": "Directing", "job": "Director", "credit_id": "52fe45a59251416c7505d801", "profile_path": null, "id": 77147}], "vote_average": 5.6, "runtime": 89}, "13813": {"poster_path": "/3Iu1jCiWxeLJZeNczzRwMi9OWPk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 56462926, "overview": "During World War II, four Jewish brothers escape their Nazi-occupied homeland of West Belarus in Poland and join the Soviet partisans to combat the Nazis. The brothers begin the rescue of roughly 1,200 Jews still trapped in the ghettos of Poland. Based on a true story.", "video": false, "id": 13813, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Defiance", "tagline": "Freedom begins with an act of defiance!", "vote_count": 139, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1034303", "adult": false, "backdrop_path": "/aUTWjvYrIl1ssc1QQje91WaqbZ4.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Grosvenor Park Productions", "id": 17449}, {"name": "Bedford Falls Company, The", "id": 20634}, {"name": "Defiance Productions", "id": 20635}, {"name": "Pistachio Pictures", "id": 20636}], "release_date": "2008-12-31", "popularity": 0.523332726835204, "original_title": "Defiance", "budget": 32000000, "cast": [{"name": "Daniel Craig", "character": "Tuvia Bielski", "id": 8784, "credit_id": "52fe45a59251416c7505d841", "cast_id": 2, "profile_path": "/h8pfDEYJEIFhIuhwiYZGmgtwc8s.jpg", "order": 0}, {"name": "Liev Schreiber", "character": "Zus Bielski", "id": 23626, "credit_id": "52fe45a59251416c7505d845", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 1}, {"name": "Jamie Bell", "character": "Asael Bielski", "id": 478, "credit_id": "52fe45a59251416c7505d849", "cast_id": 4, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 2}, {"name": "Mia Wasikowska", "character": "Chaya Dziencielsky", "id": 76070, "credit_id": "52fe45a59251416c7505d84d", "cast_id": 5, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 3}, {"name": "Alexa Davalos", "character": "Lilka Ticktin", "id": 28109, "credit_id": "52fe45a59251416c7505d85d", "cast_id": 8, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 4}, {"name": "Iben Hjejle", "character": "Bella", "id": 1562, "credit_id": "52fe45a59251416c7505d861", "cast_id": 9, "profile_path": "/t0areKrmJIoopPaKzPCY7ILuUze.jpg", "order": 5}, {"name": "Allan Corduner", "character": "Shimon Haretz", "id": 78018, "credit_id": "531997b4c3a3685c5d002ad3", "cast_id": 17, "profile_path": "/t9w2Hi6DLMMXa4tVfnBWmW8ky71.jpg", "order": 6}, {"name": "Mark Feuerstein", "character": "Isaac Malbin", "id": 11365, "credit_id": "531997cfc3a3685c31002ad4", "cast_id": 18, "profile_path": "/jIYKKgr0pMUwuvajITsFSPv6ash.jpg", "order": 7}, {"name": "Tomas Arana", "character": "Ben Zion Gulkowitz", "id": 941, "credit_id": "531997e3c3a3685c37002ae8", "cast_id": 19, "profile_path": "/sx8tDGA7e7d5oDYpQwaydmGcc93.jpg", "order": 8}, {"name": "Jodhi May", "character": "Tamara Skidelsky", "id": 57449, "credit_id": "531997f9c3a3685c37002aea", "cast_id": 20, "profile_path": "/dJQrUVE4Pl9c5FPL0OVNB8DPY0Y.jpg", "order": 9}, {"name": "Kate Fahy", "character": "Riva Reich", "id": 239494, "credit_id": "53199809c3a3685c37002aee", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Iddo Goldberg", "character": "Yitzhak Shulman", "id": 94958, "credit_id": "5319983dc3a3685c5d002ada", "cast_id": 22, "profile_path": "/VXjK4ZcvDMLOpkE3egiKNzM9HN.jpg", "order": 11}, {"name": "Martin Hancock", "character": "Peretz Shorshaty", "id": 28158, "credit_id": "53199868c3a3685c3d002ab4", "cast_id": 24, "profile_path": "/dgM78QCzhwi7T8US2GxLytsngke.jpg", "order": 13}, {"name": "Ravil Isyanov", "character": "Viktor Panchenko", "id": 41742, "credit_id": "531998abc3a3685c510029ec", "cast_id": 25, "profile_path": "/wwrLkNCbk6f81dwJgajZjU9TiwG.jpg", "order": 14}, {"name": "Jacek Koman", "character": "Konstanty 'Koscik' Kozlowski", "id": 12210, "credit_id": "531998bec3a3685c43002b39", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "George MacKay", "character": "Aron Bielski", "id": 146750, "credit_id": "531998cdc3a3685c31002ae1", "cast_id": 27, "profile_path": "/8V5uGgbl57gbAyj59kIRFFdvoXd.jpg", "order": 16}, {"name": "Antanas \u0160urna", "character": "Orthodox Rabbi", "id": 1153516, "credit_id": "53aaaf450e0a2646d8003626", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Markus von Lingen", "character": "German SS Scout", "id": 32448, "credit_id": "54ceb500925141475500691d", "cast_id": 82, "profile_path": null, "order": 18}, {"name": "Klemens Becker", "character": "SS Captain", "id": 1332515, "credit_id": "54ceb54e9251415fb30050fe", "cast_id": 83, "profile_path": null, "order": 19}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe45a59251416c7505d83d", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.6, "runtime": 137}, "38408": {"poster_path": "/u7Gei2Hvh0ux4weJRDZsgMoXSTI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105610124, "overview": "Holly and Eric were set up on a blind date by their friends, Peter and Allison who are married. A few years later after Peter and Allison were killed in an accident, they learn that Peter and Allison have named them as the guardians to their daughter, Sophie. So they move into their house and try their best to honor their friends' wishes. But raising a child puts a crimp on their style and they don't exactly get along.", "video": false, "id": 38408, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Life as We Know It", "tagline": "A comedy about taking it one step at a time.", "vote_count": 164, "homepage": "http://lifeasweknowitmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1055292", "adult": false, "backdrop_path": "/few3uz5eiHGc0d87PGXG9pSHfMU.jpg", "production_companies": [{"name": "Josephson Entertainment", "id": 1894}], "release_date": "2010-10-08", "popularity": 0.817088524749681, "original_title": "Life as We Know It", "budget": 38000000, "cast": [{"name": "Katherine Heigl", "character": "Holly Berenson", "id": 25541, "credit_id": "52fe46b69251416c9105d34f", "cast_id": 4, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Eric Messer", "id": 19536, "credit_id": "52fe46b69251416c9105d353", "cast_id": 5, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Christina Hendricks", "character": "Alison Novack", "id": 110014, "credit_id": "52fe46b69251416c9105d357", "cast_id": 6, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 2}, {"name": "Josh Lucas", "character": "Sam", "id": 6164, "credit_id": "52fe46b69251416c9105d35b", "cast_id": 7, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 3}, {"name": "Jean Smart", "character": "Helen Berenson", "id": 5376, "credit_id": "52fe46b69251416c9105d35f", "cast_id": 8, "profile_path": "/jkCvCeviX1zFSBpvoAT6LRi6kTF.jpg", "order": 4}, {"name": "Melissa McCarthy", "character": "DeeDee", "id": 55536, "credit_id": "52fe46b69251416c9105d363", "cast_id": 9, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 5}, {"name": "Faizon Love", "character": "Walter", "id": 62066, "credit_id": "52fe46b69251416c9105d367", "cast_id": 11, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 6}, {"name": "Majandra Delfino", "character": "Jenna", "id": 35552, "credit_id": "52fe46b69251416c9105d36b", "cast_id": 12, "profile_path": "/uT6P72uBNBTyYxzIEMDTbYDpvMA.jpg", "order": 7}, {"name": "Alexis Clagett", "character": "Sophie", "id": 970332, "credit_id": "52fe46b69251416c9105d399", "cast_id": 20, "profile_path": "/qs19Ioqp82NMtFmi4abSUMx0qp4.jpg", "order": 8}, {"name": "Hayes MacArthur", "character": "Peter Novak", "id": 74930, "credit_id": "52fe46b69251416c9105d39d", "cast_id": 21, "profile_path": "/semGIgbhjhtBR0PncRzRmdttSJz.jpg", "order": 9}, {"name": "Johanna Jowett", "character": "Jill", "id": 168688, "credit_id": "52fe46b69251416c9105d3a1", "cast_id": 22, "profile_path": "/km29q7BsjIPUwJpVKcPlfmFLAx3.jpg", "order": 10}], "directors": [{"name": "Greg Berlanti", "department": "Directing", "job": "Director", "credit_id": "52fe46b69251416c9105d33f", "profile_path": "/eJSBZ7N6YDL7d50Z1t0gJp1CgZx.jpg", "id": 88967}], "vote_average": 6.4, "runtime": 115}, "13836": {"poster_path": "/jKGmK0nWoPNnHypfWgL7ZI7fN5Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 106303988, "overview": "A taxi driver gets more than he bargained for when he picks up two teen runaways. Not only does the pair possess supernatural powers, but they're also trying desperately to escape people who have made them their targets.", "video": false, "id": 13836, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "Race to Witch Mountain", "tagline": "The race is on", "vote_count": 139, "homepage": "http://disneydvd.disney.go.com/race-to-witch-mountain.html", "belongs_to_collection": {"backdrop_path": "/aXZ0LmSgLT1ZiNWnJ5qKaQHqBiC.jpg", "poster_path": "/oRRNvL1dqOUtagbRL1vainpibJf.jpg", "id": 90348, "name": "Witch Mountain Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1075417", "adult": false, "backdrop_path": "/8hevGT9ggNAXE8YB0iueOkx6OxT.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Gunn Films", "id": 3538}], "release_date": "2009-03-12", "popularity": 0.663071582881536, "original_title": "Race to Witch Mountain", "budget": 50000000, "cast": [{"name": "Dwayne Johnson", "character": "Jack Bruno", "id": 18918, "credit_id": "52fe45ac9251416c7505e7e1", "cast_id": 2, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "AnnaSophia Robb", "character": "Sara", "id": 1285, "credit_id": "52fe45ac9251416c7505e7dd", "cast_id": 1, "profile_path": "/bFUVeM3XfAqb0tzshthI52ZrXip.jpg", "order": 1}, {"name": "Alexander Ludwig", "character": "Seth", "id": 23498, "credit_id": "52fe45ac9251416c7505e7eb", "cast_id": 4, "profile_path": "/sKBzp9sgDYXquPnsGvJJveTOAT6.jpg", "order": 2}, {"name": "Carla Gugino", "character": "Dr. Alex Friedman", "id": 17832, "credit_id": "52fe45ac9251416c7505e7ef", "cast_id": 5, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 3}, {"name": "Chris Marquette", "character": "Pope", "id": 59238, "credit_id": "52fe45ac9251416c7505e7f3", "cast_id": 6, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 4}, {"name": "Kim Richards", "character": "Tina", "id": 53261, "credit_id": "52fe45ac9251416c7505e7f7", "cast_id": 7, "profile_path": "/jTO90DPcHXesL7cSudasucD9xGW.jpg", "order": 5}, {"name": "Meredith Salenger", "character": "Natalie Gann", "id": 18706, "credit_id": "52fe45ac9251416c7505e7fb", "cast_id": 8, "profile_path": "/tSViHUajIO0k49bFwIy42OqfbGq.jpg", "order": 6}, {"name": "Ciar\u00e1n Hinds", "character": "Burke", "id": 8785, "credit_id": "52fe45ac9251416c7505e80b", "cast_id": 11, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 7}, {"name": "Tom Everett Scott", "character": "Matheson", "id": 16857, "credit_id": "52fe45ac9251416c7505e80f", "cast_id": 12, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 8}, {"name": "Billy Brown", "character": "Carson", "id": 64805, "credit_id": "52fe45ac9251416c7505e813", "cast_id": 13, "profile_path": "/tEyVvi3dY3LDxSpTA3a7nK6nMGv.jpg", "order": 9}, {"name": "Tom Woodruff Jr.", "character": "Siphon", "id": 109870, "credit_id": "52fe45ac9251416c7505e817", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Bob Clendenin", "character": "Lloyd", "id": 129661, "credit_id": "52fe45ac9251416c7505e81b", "cast_id": 15, "profile_path": "/312jxn8pUhINNnxQSujnTUlwlwT.jpg", "order": 11}, {"name": "Robert Torti", "character": "Dominick", "id": 74933, "credit_id": "52fe45ac9251416c7505e81f", "cast_id": 16, "profile_path": "/dPzxmVKTdMPhYiMjAbScn3peKFt.jpg", "order": 12}, {"name": "John Kassir", "character": "Chuck", "id": 31365, "credit_id": "52fe45ac9251416c7505e823", "cast_id": 17, "profile_path": "/dC0Icg60BabhLJFwR0FbZzFazPq.jpg", "order": 13}, {"name": "Garry Marshall", "character": "Dr. Donald Harlan", "id": 1201, "credit_id": "52fe45ac9251416c7505e827", "cast_id": 18, "profile_path": "/kx77E8p5rnEmKxIhFT0qWCEMEik.jpg", "order": 14}, {"name": "Ike Eisenmann", "character": "Sheriff Antony", "id": 87066, "credit_id": "52fe45ac9251416c7505e82b", "cast_id": 19, "profile_path": "/w37MJao2bS0EgGRpryckVlkjd90.jpg", "order": 15}, {"name": "Cheech Marin", "character": "Eddie", "id": 11159, "credit_id": "52fe45ac9251416c7505e82f", "cast_id": 20, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 16}], "directors": [{"name": "Andy Fickman", "department": "Directing", "job": "Director", "credit_id": "52fe45ac9251416c7505e7e7", "profile_path": "/jc7Uh9eDTCkC8MxxziRTMCevAqM.jpg", "id": 58375}], "vote_average": 5.5, "runtime": 98}, "87567": {"poster_path": "/bPYDvbXRrb5d4FFyn4kb93J8I4X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21819348, "overview": "To the amusement of their adult children and friends, long divorced couple Don and Ellie Griffin are once again forced to play the happy couple for the sake of their adopted son's wedding after his ultra conservative biological mother unexpectedly decides to fly halfway across the world to attend. With all of the wedding guests looking on, the Griffins are hilariously forced to confront their past, present and future - and hopefully avoid killing each other in the process.", "video": false, "id": 87567, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Big Wedding", "tagline": "It's never too late to start acting like a family", "vote_count": 136, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt1931435", "adult": false, "backdrop_path": "/aNoSj41EVXCCLF0x7jiEVzbm1fb.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Two Ton Films", "id": 17049}], "release_date": "2013-04-25", "popularity": 0.690117662550662, "original_title": "The Big Wedding", "budget": 35000000, "cast": [{"name": "Robert De Niro", "character": "Don Griffin", "id": 380, "credit_id": "52fe49cd9251416c910b9399", "cast_id": 13, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Ellie Griffin", "id": 3092, "credit_id": "52fe49cd9251416c910b93a5", "cast_id": 16, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Katherine Heigl", "character": "Lyla Griffin", "id": 25541, "credit_id": "52fe49cd9251416c910b9395", "cast_id": 12, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Missy O'Connor", "id": 71070, "credit_id": "52fe49cd9251416c910b9391", "cast_id": 11, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Topher Grace", "character": "Jared Griffin", "id": 17052, "credit_id": "52fe49cd9251416c910b93a1", "cast_id": 15, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 4}, {"name": "Susan Sarandon", "character": "Bebe McBride", "id": 4038, "credit_id": "52fe49cd9251416c910b93ad", "cast_id": 18, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 5}, {"name": "Robin Williams", "character": "Father Monaghan", "id": 2157, "credit_id": "52fe49cd9251416c910b939d", "cast_id": 14, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 6}, {"name": "Ben Barnes", "character": "Alejandro Griffin", "id": 25130, "credit_id": "52fe49cd9251416c910b93a9", "cast_id": 17, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 7}, {"name": "Christa Campbell", "character": "Kim", "id": 85178, "credit_id": "52fe49cd9251416c910b93b1", "cast_id": 20, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 8}, {"name": "Kyle Bornheimer", "character": "Andrew", "id": 1215836, "credit_id": "52fe49cd9251416c910b93d1", "cast_id": 28, "profile_path": "/ucMZNXfcG8NlVIPBGujt15fFPcX.jpg", "order": 9}, {"name": "Christine Ebersole", "character": "Muffin", "id": 4003, "credit_id": "52fe49cd9251416c910b93c1", "cast_id": 24, "profile_path": "/ssK8MpVP2v258iyS2QWXInjllLL.jpg", "order": 10}, {"name": "David Rasche", "character": "Barry", "id": 33533, "credit_id": "52fe49cd9251416c910b93c5", "cast_id": 25, "profile_path": "/i4q2WtUwedoHvzODnY0A2KeGqsN.jpg", "order": 11}, {"name": "Patricia Rae", "character": "Madonna", "id": 5973, "credit_id": "52fe49cd9251416c910b93c9", "cast_id": 26, "profile_path": "/vkVhCraBD2yOzEwCIFTGwyCbWNO.jpg", "order": 12}, {"name": "Ana Ayora", "character": "Nuria", "id": 1077805, "credit_id": "52fe49cd9251416c910b93cd", "cast_id": 27, "profile_path": "/wgGn3cdDLE34d2bpBEQ2SyuEuyb.jpg", "order": 13}, {"name": "Megan Ketch", "character": "Jane", "id": 995197, "credit_id": "52fe49cd9251416c910b93d5", "cast_id": 29, "profile_path": "/cu4ltcT6bUXhUREo4fXy54Jwscw.jpg", "order": 14}], "directors": [{"name": "Justin Zackham", "department": "Directing", "job": "Director", "credit_id": "52fe49cd9251416c910b9357", "profile_path": "/9o2IlJ8teyCULKzxG9NGMGugxBR.jpg", "id": 52599}], "vote_average": 5.5, "runtime": 90}, "2309": {"poster_path": "/3yIVMwPDrWLeZ8fJ5HLbGWnCz9f.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57490374, "overview": "An adventure of a father and his young daughter, searching for a long lost book that will help reunite a missing, close relative, this fantasy takes a darker side whenever we hear Mo 'Silvertongue' Folchart reading out aloud from books.", "video": false, "id": 2309, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Inkheart", "tagline": "Every story ever written is just waiting to become real.", "vote_count": 126, "homepage": "http://www.inkheartmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0494238", "adult": false, "backdrop_path": "/a5N45mYvCVd7Pmy4JKdvgBKZscG.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Internationale Filmproduktion Blackbird Erste", "id": 20360}], "release_date": "2008-12-17", "popularity": 0.871725907767514, "original_title": "Inkheart", "budget": 60000000, "cast": [{"name": "Brendan Fraser", "character": "Mo 'Silvertongue' Folchart", "id": 18269, "credit_id": "52fe434cc3a36847f8049b5f", "cast_id": 28, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Sienna Guillory", "character": "Resa", "id": 7055, "credit_id": "52fe434cc3a36847f8049b57", "cast_id": 26, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 1}, {"name": "Andy Serkis", "character": "Capricorn", "id": 1333, "credit_id": "52fe434cc3a36847f8049b3b", "cast_id": 19, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 2}, {"name": "Eliza Bennett", "character": "Meggie Folchart", "id": 23775, "credit_id": "52fe434cc3a36847f8049b3f", "cast_id": 20, "profile_path": "/fdJ729tbU48xUNVqG4k27NrPYMg.jpg", "order": 3}, {"name": "Paul Bettany", "character": "Dustfinger", "id": 6162, "credit_id": "52fe434cc3a36847f8049b43", "cast_id": 21, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 4}, {"name": "Jim Broadbent", "character": "Fenoglio", "id": 388, "credit_id": "52fe434cc3a36847f8049b47", "cast_id": 22, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 5}, {"name": "Helen Mirren", "character": "Elinor Loredan", "id": 15735, "credit_id": "52fe434cc3a36847f8049b4b", "cast_id": 23, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 6}, {"name": "Matt King", "character": "Cockerell", "id": 23776, "credit_id": "52fe434cc3a36847f8049b4f", "cast_id": 24, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 7}, {"name": "Rafi Gavron", "character": "Farid", "id": 21660, "credit_id": "52fe434cc3a36847f8049b53", "cast_id": 25, "profile_path": "/nAAPaOxSb5uCPGuS2AFqTp5FHE0.jpg", "order": 8}, {"name": "Marnix Van Den Broeke", "character": "The Shadow", "id": 56475, "credit_id": "52fe434cc3a36847f8049b5b", "cast_id": 27, "profile_path": null, "order": 9}, {"name": "Richard Strange", "character": "Bookshop Proprietor", "id": 79502, "credit_id": "52fe434cc3a36847f8049b63", "cast_id": 29, "profile_path": "/gW6LnjcXxcfaAMpM5YyEKePeezR.jpg", "order": 10}, {"name": "Steve Speirs", "character": "Flatnose", "id": 25441, "credit_id": "52fe434cc3a36847f8049b67", "cast_id": 30, "profile_path": "/cCNJouXVxnXJv9j26PaEWJxIkOE.jpg", "order": 11}, {"name": "Jamie Foreman", "character": "Basta", "id": 3543, "credit_id": "52fe434cc3a36847f8049b6b", "cast_id": 31, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 12}, {"name": "Stephen Graham", "character": "Fulvio", "id": 1115, "credit_id": "52fe434cc3a36847f8049b6f", "cast_id": 32, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 13}, {"name": "Mirabel O'Keefe", "character": "Young Meggie", "id": 983695, "credit_id": "52fe434cc3a36847f8049b73", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "John Thomson", "character": "Darius", "id": 7321, "credit_id": "52fe434cc3a36847f8049b77", "cast_id": 34, "profile_path": "/4KJpOMWTVn71rSddvlvByOVRoNb.jpg", "order": 15}, {"name": "Lesley Sharp", "character": "Mortola", "id": 80366, "credit_id": "52fe434cc3a36847f8049b83", "cast_id": 38, "profile_path": "/xaZY2lBXwS2Oa4a87qg1yxN6EgE.jpg", "order": 16}, {"name": "Tereza Srbova", "character": "Rapunzel", "id": 230178, "credit_id": "52fe434cc3a36847f8049b7b", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Helen Soraya", "character": "Masquerade Ball Dancer", "id": 1105459, "credit_id": "52fe434cc3a36847f8049b7f", "cast_id": 37, "profile_path": "/sdjlyzUXrx5qAZ0cMISZjnLwvTX.jpg", "order": 18}], "directors": [{"name": "Iain Softley", "department": "Directing", "job": "Director", "credit_id": "52fe434cc3a36847f8049ad1", "profile_path": "/9aZEIa63z625ovFubXzxjKRjwe9.jpg", "id": 1978}], "vote_average": 6.1, "runtime": 106}, "205321": {"poster_path": "/fhjfcjNBY8FcyxR8hRZ2H19zN6Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A freak hurricane hits Los Angeles, causing man-eating sharks to be scooped up in tornadoes and flooding the city with shark-infested seawater. Surfer and bar-owner Fin sets out with his friends Baz and Nova to rescue his estranged wife April and teenage daughter Claudia", "video": false, "id": 205321, "genres": [{"id": 27, "name": "Horror"}], "title": "Sharknado", "tagline": "Enough said!", "vote_count": 167, "homepage": "http://www.theasylum.cc/product.php?id=230", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 286023, "name": "Sharknado Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2724064", "adult": false, "backdrop_path": "/nQ5Is9ZfFNMk7cRophov7ISPkrA.jpg", "production_companies": [{"name": "The Asylum", "id": 1311}, {"name": "Southward Films", "id": 22872}], "release_date": "2013-07-11", "popularity": 0.463931024853865, "original_title": "Sharknado", "budget": 1000000, "cast": [{"name": "Ian Ziering", "character": "Fin Shepard", "id": 19146, "credit_id": "52fe4d05c3a368484e1d2c93", "cast_id": 15, "profile_path": "/j4enDmt6JL3hmWlLuEbQW0xe40Z.jpg", "order": 0}, {"name": "Tara Reid", "character": "April", "id": 1234, "credit_id": "52fe4d05c3a368484e1d2c5f", "cast_id": 3, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 1}, {"name": "Cassie Scerbo", "character": "Nova", "id": 78031, "credit_id": "52fe4d06c3a368484e1d2caf", "cast_id": 22, "profile_path": "/5AB4NfbGSGvrSqGi6KpHnCVrWLW.jpg", "order": 2}, {"name": "John Heard", "character": "George", "id": 11512, "credit_id": "52fe4d05c3a368484e1d2c97", "cast_id": 16, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Jaason Simmons", "character": "Baz", "id": 31633, "credit_id": "52fe4d06c3a368484e1d2cb3", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "Sumiko Braun", "character": "Deanna", "id": 1189243, "credit_id": "52fe4d05c3a368484e1d2c9b", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Adrian Bustamante", "character": "Kelso", "id": 1157373, "credit_id": "52fe4d05c3a368484e1d2c9f", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Diane Chambers", "character": "Agnes", "id": 1181340, "credit_id": "52fe4d05c3a368484e1d2ca3", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Chuck Hittinger", "character": "Matt", "id": 78045, "credit_id": "52fe4d06c3a368484e1d2ca7", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Aubrey Peeples", "character": "Claudia", "id": 1189982, "credit_id": "52fe4d06c3a368484e1d2cab", "cast_id": 21, "profile_path": "/iSHAtU1Q90Dnian3NYWaG3EY8Hc.jpg", "order": 9}, {"name": "Connor Weil", "character": "Luellyn", "id": 1085677, "credit_id": "52fe4d06c3a368484e1d2cb7", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Christopher Wolfe", "character": "Colin", "id": 1189983, "credit_id": "52fe4d06c3a368484e1d2cbb", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Robbie Rist", "character": "Bus Driver", "id": 77157, "credit_id": "52fe4d06c3a368484e1d2cbf", "cast_id": 26, "profile_path": "/bFpVHAJNNKOPQ230ALYLepwm1yE.jpg", "order": 12}], "directors": [{"name": "Anthony C. Ferrante", "department": "Directing", "job": "Director", "credit_id": "52fe4d05c3a368484e1d2c55", "profile_path": null, "id": 85822}], "vote_average": 3.8, "runtime": 86}, "226857": {"poster_path": "/wWkTnQosziIXEePOyunr53el8fe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34077920, "overview": "When beautiful Jade (Gabriella Wilde) meets charismatic David (Alex Pettyfer), her sheltered world of privilege is turned upside down as the pair's instant desire sparks a reckless summer love affair. While Jade leaves behind her inhibitions and innocence as she falls for David, he works to prove himself worthy of her love. But when David's mysterious past and Jade's overprotective father threaten to tear them apart, their romance will be put to the ultimate test.", "video": false, "id": 226857, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Endless Love", "tagline": "Say Goodbye to Innocence", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2318092", "adult": false, "backdrop_path": "/bYbNcN0l3131wmdkMfnUE30SzLI.jpg", "production_companies": [{"name": "Bluegrass Films", "id": 13778}, {"name": "Fake Empire", "id": 13204}, {"name": "Universal Pictures", "id": 33}], "release_date": "2014-02-14", "popularity": 0.8468581295016, "original_title": "Endless Love", "budget": 20000000, "cast": [{"name": "Alex Pettyfer", "character": "David Axelrod", "id": 61363, "credit_id": "52fe4e8a9251416c75159ddd", "cast_id": 4, "profile_path": "/fLuVmmpqxe6IrQF2AP7KvgW34Q5.jpg", "order": 0}, {"name": "Gabriella Wilde", "character": "Jade Butterfield", "id": 1014932, "credit_id": "52fe4e8a9251416c75159df5", "cast_id": 10, "profile_path": "/xbhScoMy3P6pK8Eg5V3EbGoxRSg.jpg", "order": 1}, {"name": "Robert Patrick", "character": "Anne Butterfield", "id": 418, "credit_id": "52fe4e8a9251416c75159de1", "cast_id": 5, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 2}, {"name": "Rhys Wakefield", "character": "Anne Butterfield", "id": 55899, "credit_id": "52fe4e8a9251416c75159de9", "cast_id": 7, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 3}, {"name": "Emma Rigby", "character": "Jenny", "id": 1078568, "credit_id": "52fe4e8a9251416c75159de5", "cast_id": 6, "profile_path": "/5pMA7z3BZP7YdWqphbPRqu2peWq.jpg", "order": 4}, {"name": "Joely Richardson", "character": "Anne Butterfield", "id": 20810, "credit_id": "52fe4e8a9251416c75159ded", "cast_id": 8, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 5}, {"name": "Bruce Greenwood", "character": "Hugh Butterfield", "id": 21089, "credit_id": "52fe4e8a9251416c75159df1", "cast_id": 9, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 6}, {"name": "Dayo Okeniyi", "character": "Mace", "id": 1030512, "credit_id": "52fe4e8a9251416c75159dfd", "cast_id": 12, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 7}, {"name": "Anna Enger", "character": "Sabine", "id": 963547, "credit_id": "52fe4e8a9251416c75159df9", "cast_id": 11, "profile_path": "/Ah8ztt9BfW2n28BDEH8lUGRSs8P.jpg", "order": 8}, {"name": "Fabianne Therese", "character": "Checka", "id": 576223, "credit_id": "52fe4e8a9251416c75159e1f", "cast_id": 19, "profile_path": "/3HLRTbikOyRPIZjaFw134ytxknx.jpg", "order": 9}], "directors": [{"name": "Shana Feste", "department": "Directing", "job": "Director", "credit_id": "52fe4e8a9251416c75159dd3", "profile_path": "/Ai9XWB3Nq5w0ueTgMfx8JkxptIp.jpg", "id": 129718}], "vote_average": 6.6, "runtime": 103}, "8645": {"poster_path": "/lHo1G0bbxcrUuyWqFZlQzX73oHS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163403799, "overview": "When a deadly airborne virus threatens to wipe out the northeastern United States, teacher Elliott Moore (Mark Wahlberg) and his wife (Zooey Deschanel) flee from contaminated cities into the countryside in a fight to discover the truth. Is it terrorism, the accidental release of some toxic military bio weapon -- or something even more sinister? John Leguizamo and Betty Buckley co-star in this thriller from writer-director M. Night Shyamalan.", "video": false, "id": 8645, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Happening", "tagline": "We've Sensed It. We've Seen The Signs. Now... It's Happening.", "vote_count": 248, "homepage": "http://www.thehappeningmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0949731", "adult": false, "backdrop_path": "/z0Cl9Q0uLptRxcAhtE0MnnS6z6n.jpg", "production_companies": [{"name": "UTV Motion Pictures", "id": 2320}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2008-06-13", "popularity": 0.873691858053708, "original_title": "The Happening", "budget": 60000000, "cast": [{"name": "Mark Wahlberg", "character": "Elliot Moore", "id": 13240, "credit_id": "52fe44b1c3a36847f80a4b25", "cast_id": 6, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Alma Moore", "id": 11664, "credit_id": "52fe44b1c3a36847f80a4b29", "cast_id": 7, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "John Leguizamo", "character": "Julian", "id": 5723, "credit_id": "52fe44b1c3a36847f80a4b2d", "cast_id": 8, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 2}, {"name": "Spencer Breslin", "character": "Josh", "id": 35654, "credit_id": "52fe44b1c3a36847f80a4b31", "cast_id": 9, "profile_path": "/r2bjs7UQ9ioVpVLxmySeQI1waeD.jpg", "order": 3}, {"name": "Betty Buckley", "character": "Mrs. Jones", "id": 52462, "credit_id": "52fe44b1c3a36847f80a4b35", "cast_id": 10, "profile_path": "/5lt3xmuJOBpAiOyboKJaAurmlCb.jpg", "order": 4}, {"name": "Ashlyn Sanchez", "character": "Jess", "id": 18290, "credit_id": "52fe44b1c3a36847f80a4b39", "cast_id": 11, "profile_path": "/flE8FT2vKQDCHp1C3sTB17bZQEg.jpg", "order": 5}, {"name": "Robert Bailey Jr.", "character": "Jared", "id": 55426, "credit_id": "52fe44b1c3a36847f80a4b3d", "cast_id": 12, "profile_path": "/z2FbepmcNkWn12Tuv76kLavQRyS.jpg", "order": 6}, {"name": "Frank Collison", "character": "Nursery Owner", "id": 1479, "credit_id": "52fe44b1c3a36847f80a4b41", "cast_id": 13, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 7}, {"name": "Jeremy Strong", "character": "Private Auster", "id": 239271, "credit_id": "52fe44b1c3a36847f80a4b45", "cast_id": 14, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 8}, {"name": "Alan Ruck", "character": "Principal", "id": 2394, "credit_id": "52fe44b1c3a36847f80a4b49", "cast_id": 15, "profile_path": "/qA9Cc6wtJBzenxfkhwFlKhoFQkk.jpg", "order": 9}, {"name": "Victoria Clark", "character": "Nursery Owner's Wife", "id": 171633, "credit_id": "52fe44b1c3a36847f80a4b4d", "cast_id": 16, "profile_path": "/3fB8A2pBGFhI8u5f6kFa76RX7OJ.jpg", "order": 10}, {"name": "M. Night Shyamalan", "character": "Joey", "id": 11614, "credit_id": "52fe44b1c3a36847f80a4b51", "cast_id": 17, "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "order": 11}, {"name": "Alison Folland", "character": "Woman Reading on Bench with Hair Pin", "id": 2841, "credit_id": "52fe44b1c3a36847f80a4b55", "cast_id": 18, "profile_path": "/j4LkS9pycdpKECqZ4bCTqMtZrHA.jpg", "order": 12}, {"name": "Kristen Connolly", "character": "Woman Reading on Bench", "id": 210824, "credit_id": "52fe44b1c3a36847f80a4b59", "cast_id": 19, "profile_path": "/lP7rReayiC5hDhJJjCwUy3IFfTC.jpg", "order": 13}, {"name": "Cornell Womack", "character": "Construction Foreman", "id": 164494, "credit_id": "52fe44b1c3a36847f80a4b5d", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Mara Hobel", "character": "Woman with Hands Over Ears", "id": 1217565, "credit_id": "53c962570e0a2664900024d3", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Roberto Lombardi", "character": "Father in Elliot's Group", "id": 1209900, "credit_id": "53c962870e0a2664990025ce", "cast_id": 36, "profile_path": "/qgrG57sp91kCwPJsPvH15psg6UL.jpg", "order": 16}, {"name": "Art Lyle", "character": "Businessman", "id": 1343298, "credit_id": "53c962ab0e0a26648d0027f4", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Brian Anthony Wilson", "character": "Arguing Man in Crowd", "id": 127070, "credit_id": "53c962d90e0a2664a00026a4", "cast_id": 38, "profile_path": "/eyD5AboJVg4Z47qsQrKNKf8jKkK.jpg", "order": 18}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe44b1c3a36847f80a4b09", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 5.0, "runtime": 91}, "210479": {"poster_path": "/jC1soM3OUOzehbxp7IMumgQEDvB.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4635300, "overview": "Ivan Locke (Tom Hardy) has worked hard to craft a good life for himself. Tonight, that life will collapse around him. On the eve of the biggest challenge of his career, Ivan receives a phone call that sets in motion a series of events that will unravel his family, job, and soul.", "video": false, "id": 210479, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Locke", "tagline": "No turning back", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2692904", "adult": false, "backdrop_path": "/6clmTvA4hmP2M41JTJ0RHV2ODYj.jpg", "production_companies": [{"name": "Shoebox Films", "id": 28473}, {"name": "IM Global", "id": 7437}], "release_date": "2014-04-18", "popularity": 1.31203429072394, "original_title": "Locke", "budget": 2000000, "cast": [{"name": "Tom Hardy", "character": "Ivan Locke", "id": 2524, "credit_id": "52fe4d7cc3a368484e1ebfc5", "cast_id": 3, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Ruth Wilson", "character": "Katrina", "id": 47720, "credit_id": "52fe4d7cc3a368484e1ebfc9", "cast_id": 4, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 1}, {"name": "Andrew Scott", "character": "Donal", "id": 125660, "credit_id": "52fe4d7cc3a368484e1ebfcd", "cast_id": 5, "profile_path": "/3yu4zC3OVq2lvmMqnPT4RYH4sBU.jpg", "order": 2}, {"name": "Olivia Colman", "character": "Bethan", "id": 39187, "credit_id": "52fe4d7cc3a368484e1ebfd1", "cast_id": 6, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 3}, {"name": "Tom Holland", "character": "Eddie", "id": 1136406, "credit_id": "52fe4d7cc3a368484e1ebfd5", "cast_id": 7, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 4}, {"name": "Ben Daniels", "character": "Gareth", "id": 27632, "credit_id": "52fe4d7dc3a368484e1ebfd9", "cast_id": 8, "profile_path": "/x6MI4Fdz1XbERbNbXYoxTK6NAgv.jpg", "order": 5}, {"name": "Bill Milner", "character": "Sean", "id": 81260, "credit_id": "52fe4d7dc3a368484e1ebfdd", "cast_id": 9, "profile_path": "/gc1aD7V6mnEKuLhHJX9ssjxT2H7.jpg", "order": 6}, {"name": "Alice Lowe", "character": "Sister Margaret", "id": 182327, "credit_id": "52fe4d7dc3a368484e1ebfe1", "cast_id": 10, "profile_path": "/kpBWGfjNfGZ6aAStg7n6upGj9g3.jpg", "order": 7}, {"name": "Danny Webb", "character": "Cassidy", "id": 53917, "credit_id": "52fe4d7dc3a368484e1ebfe5", "cast_id": 11, "profile_path": "/dEAZ46qwZWF9CGxzaijoE0qnFMb.jpg", "order": 8}, {"name": "Lee Ross", "character": "PC Davids", "id": 93177, "credit_id": "52fe4d7dc3a368484e1ebfe9", "cast_id": 12, "profile_path": "/lMOJz7ZSs4iOWYON0NdKlVuWvlo.jpg", "order": 9}, {"name": "Silas Carson", "character": "Dr. Gullu", "id": 20806, "credit_id": "52fe4d7dc3a368484e1ebfed", "cast_id": 13, "profile_path": "/cT7Qyu8Zl8IDsgYzduzuCm1zxpt.jpg", "order": 10}, {"name": "Kirsty Dillon", "character": "Gareth's Wife", "id": 1194117, "credit_id": "52fe4d7dc3a368484e1ebff1", "cast_id": 14, "profile_path": null, "order": 11}], "directors": [{"name": "Steven Knight", "department": "Directing", "job": "Director", "credit_id": "52fe4d7cc3a368484e1ebfbb", "profile_path": "/6QiGHyAWJv5wSyWNUxZuMlBCXgy.jpg", "id": 23227}], "vote_average": 6.7, "runtime": 85}, "5689": {"poster_path": "/niNKABdbAYGEqilL4InJ2ZlOZ8p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 58000000, "overview": "Two small children and a ship's cook survive a shipwreck and find safety on an idyllic tropical island. Soon, however, the cook dies and the young boy and girl are left on their own. Days become years and Emmeline (Brooke Shields) and Richard (Christopher Atkins) make a home for themselves surrounded by exotic creatures and nature's beauty. But will they ever see civilization again?", "video": false, "id": 5689, "genres": [{"id": 12, "name": "Adventure"}], "title": "The Blue Lagoon", "tagline": "A sensuous story of natural love.", "vote_count": 58, "homepage": "", "belongs_to_collection": {"backdrop_path": "/m8LAOuIhlCBr6dWdtVF2C2ioMrc.jpg", "poster_path": "/A4U11Zhp5KjiKOrghNlqNlmrbhw.jpg", "id": 59586, "name": "The Blue Lagoon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0080453", "adult": false, "backdrop_path": "/3x59nJ0umJAh0NWk9F8heCJt9nk.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1980-07-05", "popularity": 0.532187502725547, "original_title": "The Blue Lagoon", "budget": 4500000, "cast": [{"name": "Brooke Shields", "character": "Emmeline", "id": 15110, "credit_id": "52fe4418c3a36847f8081fbf", "cast_id": 7, "profile_path": "/qxzEGmZCfEMsggT63MvjRdAiseU.jpg", "order": 0}, {"name": "Christopher Atkins", "character": "Richard", "id": 42740, "credit_id": "52fe4418c3a36847f8081fc3", "cast_id": 8, "profile_path": "/9IJgm1gd9saqSbkxRniQ6J34ywI.jpg", "order": 1}, {"name": "Leo McKern", "character": "Paddy Button", "id": 7192, "credit_id": "52fe4418c3a36847f8081fc7", "cast_id": 9, "profile_path": "/qcO1TFO6SowLOQAwKRMKrqmrk6A.jpg", "order": 2}, {"name": "William Daniels", "character": "Arthur Lestrange", "id": 10775, "credit_id": "52fe4418c3a36847f8081fcb", "cast_id": 10, "profile_path": "/4zIlfvoSPHVTWIpZ9JvZODD8vnn.jpg", "order": 3}, {"name": "Jeffrey Kleiser", "character": "Lookout", "id": 44841, "credit_id": "52fe4418c3a36847f8081fcf", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Gus Mercurio", "character": "Officer", "id": 44843, "credit_id": "52fe4418c3a36847f8081fd7", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Elva Josephson", "character": "Young Emmeline", "id": 136853, "credit_id": "52fe4418c3a36847f8081fe1", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Glenn Kohan", "character": "Young Richard", "id": 136854, "credit_id": "52fe4418c3a36847f8081fe5", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Bradley Pryce", "character": "Little Paddy", "id": 1037039, "credit_id": "530b65a492514111110050f0", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Chad Timmerman", "character": "Infant Paddy", "id": 1296157, "credit_id": "530b65b4925141111a004c6d", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Gert Jacoby", "character": "Sailor", "id": 136855, "credit_id": "530b65c69251415e710022f0", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Alex Hamilton", "character": "Sailor", "id": 136856, "credit_id": "530b65d9925141111700506c", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Richard Evanson", "character": "Sailor", "id": 136857, "credit_id": "530b65e59251411114004dd2", "cast_id": 21, "profile_path": null, "order": 13}], "directors": [{"name": "Randal Kleiser", "department": "Directing", "job": "Director", "credit_id": "52fe4418c3a36847f8081fa3", "profile_path": "/lK8FzeNDwD9VmNvKPRGd3dFVzJy.jpg", "id": 8876}], "vote_average": 6.0, "runtime": 104}, "13885": {"poster_path": "/ltp5qmaHLtzDHHj42V2Uzk4yOrc.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 152000000, "overview": "The infamous story of Benjamin Barker, a.k.a Sweeney Todd, who sets up a barber shop down in London which is the basis for a sinister partnership with his fellow tenant, Mrs. Lovett. Based on the hit Broadway musical.", "video": false, "id": 13885, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 10402, "name": "Music"}], "title": "Sweeney Todd: The Demon Barber of Fleet Street", "tagline": "Never Forget. Never Forgive.", "vote_count": 437, "homepage": "http://www.sweeneytoddmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0408236", "adult": false, "backdrop_path": "/oZRsdp7H8ZIvo4ZH4IDOLpPjlMI.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2007-12-20", "popularity": 0.85526527824505, "original_title": "Sweeney Todd: The Demon Barber of Fleet Street", "budget": 50000000, "cast": [{"name": "Johnny Depp", "character": "Sweeney Todd", "id": 85, "credit_id": "52fe45af9251416c7505efcb", "cast_id": 1, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Helena Bonham Carter", "character": "Mrs. Lovett", "id": 1283, "credit_id": "52fe45af9251416c7505efcf", "cast_id": 2, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 1}, {"name": "Alan Rickman", "character": "Judge Turpin", "id": 4566, "credit_id": "52fe45af9251416c7505efd3", "cast_id": 3, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 2}, {"name": "Timothy Spall", "character": "Beadle", "id": 9191, "credit_id": "52fe45af9251416c7505efd7", "cast_id": 4, "profile_path": "/wqPqtdxObseJikozhcWLNDU5Pao.jpg", "order": 3}, {"name": "Sacha Baron Cohen", "character": "Pirelli", "id": 6730, "credit_id": "52fe45af9251416c7505efdb", "cast_id": 5, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 4}, {"name": "Jamie Campbell Bower", "character": "Anthony Hope", "id": 83356, "credit_id": "52fe45af9251416c7505eff1", "cast_id": 9, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 5}, {"name": "Jayne Wisener", "character": "Johanna Barker", "id": 444008, "credit_id": "52fe45af9251416c7505eff5", "cast_id": 10, "profile_path": "/wEBqOkuKJmTeew401wvWgtri1Q9.jpg", "order": 6}, {"name": "Ed Sanders", "character": "Toby Ragg", "id": 1161752, "credit_id": "52fe45af9251416c7505eff9", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Laura Michelle Kelly", "character": "Lucy Barker", "id": 1161753, "credit_id": "52fe45af9251416c7505effd", "cast_id": 12, "profile_path": null, "order": 8}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe45af9251416c7505efe1", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.8, "runtime": 116}, "112198": {"poster_path": "/pGsBX3XKrIS4uP6lNPnhg9TR7HY.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Vincent, a wealthy real estate agent, is invited to dinner by his sister Elizabeth and her husband Peter, both professors in Paris. Claude, a childhood friend and trombonist in a symphony orchestra, is also present. Vincent brings news from the prenatal examination of his and his wife Anna's unborn son. The name chosen by the soon-to-be parents strongly offends the others for many reasons. The dispute between the guests quickly escalates and before long the resurgence of old grudges and hidden secrets is unavoidable ...", "video": false, "id": 112198, "genres": [{"id": 35, "name": "Comedy"}], "title": "What's in a Name", "tagline": "A child is the beginning of happiness. A name is the beginning of despair.", "vote_count": 66, "homepage": "http://www.pathefilms.com/film/le-prenom", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2179121", "adult": false, "backdrop_path": "/oVJczyZofj44rXopmpZTNZv3BmO.jpg", "production_companies": [{"name": "Chapter 2", "id": 20339}, {"name": "Path\u00e9", "id": 7981}, {"name": "TF1 Films Production", "id": 3823}, {"name": "M6 Films", "id": 1115}, {"name": "Nexus Factory", "id": 7561}, {"name": "Canal+", "id": 5358}, {"name": "M6", "id": 11261}, {"name": "uFilm", "id": 8676}, {"name": "uFund", "id": 22127}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}], "release_date": "2012-04-25", "popularity": 0.545561310757267, "original_title": "Le Pr\u00e9nom", "budget": 0, "cast": [{"name": "Patrick Bruel", "character": "Vincent", "id": 73827, "credit_id": "52fe4b11c3a36847f81f09cf", "cast_id": 6, "profile_path": "/1s6eR0MEbxulZPUteVnHxpwXF4F.jpg", "order": 0}, {"name": "Val\u00e9rie Benguigui", "character": "\u00c9lisabeth", "id": 136489, "credit_id": "52fe4b11c3a36847f81f09d3", "cast_id": 7, "profile_path": "/tHh7G038Hh9KXREgNYpTKtuZc9f.jpg", "order": 1}, {"name": "Charles Berling", "character": "Pierre", "id": 48576, "credit_id": "52fe4b11c3a36847f81f09d7", "cast_id": 8, "profile_path": "/5W9uDe33eFYFNOW5lqJVvlzHkzb.jpg", "order": 2}, {"name": "Guillaume de Tonqu\u00e9dec", "character": "Claude", "id": 17896, "credit_id": "52fe4b11c3a36847f81f09db", "cast_id": 9, "profile_path": "/gx6Kh89dbkSo2cnfXTrzNNqWIBe.jpg", "order": 3}, {"name": "Judith El Zein", "character": "Anna", "id": 64590, "credit_id": "52fe4b11c3a36847f81f09df", "cast_id": 10, "profile_path": "/hNOoT8PHPll504DgweJMpE0oscu.jpg", "order": 4}, {"name": "Fran\u00e7oise Fabian", "character": "Fran\u00e7oise", "id": 9765, "credit_id": "52fe4b11c3a36847f81f09e3", "cast_id": 11, "profile_path": "/l8fJpeV3naLD53CEqxWD1shXI2a.jpg", "order": 5}, {"name": "Yaniss Lespert", "character": "Livreur pizza", "id": 72333, "credit_id": "52fe4b11c3a36847f81f09e7", "cast_id": 12, "profile_path": "/s6HYJQpCki7cIXeetNf4kmoDkdP.jpg", "order": 6}, {"name": "Miren Pradier", "character": "Infirmi\u00e8re bracelet", "id": 1054294, "credit_id": "52fe4b11c3a36847f81f09eb", "cast_id": 13, "profile_path": "/keSFZWNrwIzeJBCz9j7Gz405Zw2.jpg", "order": 7}, {"name": "Alexis Leprise", "character": "Apollin", "id": 1054295, "credit_id": "52fe4b11c3a36847f81f09ef", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Juliette Levant", "character": "Myrtille", "id": 1054296, "credit_id": "52fe4b11c3a36847f81f09f3", "cast_id": 15, "profile_path": "/c88qA7hjZ7iBoiye88csRhyjW5Y.jpg", "order": 9}], "directors": [{"name": "Alexandre de La Patelli\u00e8re", "department": "Directing", "job": "Director", "credit_id": "52fe4b11c3a36847f81f09b3", "profile_path": "/uiX43adOgjShLPrTnOItqZaASCi.jpg", "id": 58255}, {"name": "Matthieu Delaporte", "department": "Directing", "job": "Director", "credit_id": "52fe4b11c3a36847f81f09b9", "profile_path": "/2mhmEKkA0E3qI72IN6CFjShZea5.jpg", "id": 144845}], "vote_average": 7.2, "runtime": 109}, "112205": {"poster_path": "/9Qnug9QrwUCQhd7dSfGJfJMO1zS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36894225, "overview": "The Manzoni family, a notorious mafia clan, is relocated to Normandy, France under the witness protection program, where fitting in soon becomes challenging as their old habits die hard.", "video": false, "id": 112205, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Family", "tagline": "Some call it organized crime. Others call it family.", "vote_count": 346, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2404311", "adult": false, "backdrop_path": "/3igy0yH1ihCBbvzWo2AeldRzbSg.jpg", "production_companies": [{"name": "Malavita", "id": 31824}, {"name": "EuropaCorp", "id": 6896}, {"name": "Relativity Media", "id": 7295}, {"name": "TF1 Films Production", "id": 3823}, {"name": "Grive Productions", "id": 6877}, {"name": "Canal+", "id": 5358}, {"name": "TF1", "id": 22123}], "release_date": "2013-09-13", "popularity": 1.40270875496385, "original_title": "The Family", "budget": 30000000, "cast": [{"name": "Robert De Niro", "character": "Fred Blake / Giovanni Manzoni", "id": 380, "credit_id": "52fe4b11c3a36847f81f0b49", "cast_id": 5, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Michelle Pfeiffer", "character": "Maggie Blake", "id": 1160, "credit_id": "52fe4b11c3a36847f81f0b4d", "cast_id": 6, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 1}, {"name": "Dianna Agron", "character": "Belle Blake", "id": 141687, "credit_id": "52fe4b11c3a36847f81f0b55", "cast_id": 8, "profile_path": "/fS4vAPA6ErhHCWRBY2PVIwvnajU.jpg", "order": 2}, {"name": "John D'Leo", "character": "Warren Blake", "id": 1056523, "credit_id": "52fe4b11c3a36847f81f0b59", "cast_id": 9, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 3}, {"name": "Tommy Lee Jones", "character": "Robert Stansfield", "id": 2176, "credit_id": "52fe4b11c3a36847f81f0b51", "cast_id": 7, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 4}, {"name": "Jimmy Palumbo", "character": "DiCicco", "id": 157059, "credit_id": "52fe4b11c3a36847f81f0b81", "cast_id": 19, "profile_path": "/lUC10q4XgIUBlVAacIXh2FDtizr.jpg", "order": 5}, {"name": "Gino Cafarelli", "character": "BBQ guest #2", "id": 1179643, "credit_id": "52fe4b11c3a36847f81f0b61", "cast_id": 11, "profile_path": "/2uK2Srt5c3G6MhiiG0VU7J31qYq.jpg", "order": 6}, {"name": "Dominic Chianese", "character": "Don Mimino", "id": 68186, "credit_id": "52fe4b11c3a36847f81f0b65", "cast_id": 12, "profile_path": "/szL093yLdzjRvqVWQfu0KPfitDQ.jpg", "order": 7}, {"name": "David Belle", "character": "Mezzo", "id": 62439, "credit_id": "52fe4b11c3a36847f81f0b69", "cast_id": 13, "profile_path": "/c1sAW2qExXUb1zwpsm0RPt7NQVH.jpg", "order": 8}, {"name": "Vincent Pastore", "character": "Fat Willy", "id": 47774, "credit_id": "52fe4b11c3a36847f81f0b71", "cast_id": 15, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 9}, {"name": "Paul Borghese", "character": "Albert", "id": 7466, "credit_id": "551422e9c3a368351e00096a", "cast_id": 25, "profile_path": "/mYKqeQyMRmVokGSuObL1SBcMfLG.jpg", "order": 10}, {"name": "Stan Carp", "character": "Don Luchese", "id": 171584, "credit_id": "52fe4b11c3a36847f81f0b91", "cast_id": 23, "profile_path": "/hcPfAPHXUm1rNyQT56W3POsqewI.jpg", "order": 12}, {"name": "Domenick Lombardozzi", "character": "Caputo", "id": 17941, "credit_id": "530507edc3a3682cab047e4f", "cast_id": 24, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 13}], "directors": [{"name": "Luc Besson", "department": "Directing", "job": "Director", "credit_id": "52fe4b11c3a36847f81f0b33", "profile_path": "/2TzRsqSx0xb1DK3HsEQKSXhRGcu.jpg", "id": 59}], "vote_average": 6.2, "runtime": 111}, "241251": {"poster_path": "/h28t2JNNGrZx0fIuAw8aHQFhIxR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A recently cheated on married woman falls for a younger man who has moved in next door, but their torrid affair soon takes a dangerous turn.", "video": false, "id": 241251, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Boy Next Door", "tagline": "A Moment She Couldn't Resist. An Obsession He Can't Control.", "vote_count": 61, "homepage": "http://www.theboynextdoorfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3181822", "adult": false, "backdrop_path": "/vftRmYldszLcIMuhVoxvhDhUbiK.jpg", "production_companies": [{"name": "Smart Entertainment", "id": 44783}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Nuyorican Productions", "id": 1620}, {"name": "Universal Pictures", "id": 33}], "release_date": "2015-01-23", "popularity": 8.64946894736425, "original_title": "The Boy Next Door", "budget": 0, "cast": [{"name": "Jennifer Lopez", "character": "Claire Peterson", "id": 16866, "credit_id": "52fe4eb5c3a36847f82a2c89", "cast_id": 3, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Ryan Guzman", "character": "Noah Sandborn", "id": 932091, "credit_id": "52fe4eb5c3a36847f82a2c8d", "cast_id": 4, "profile_path": "/yJR4t5PlBdsiPAP9JdGjqomkVv7.jpg", "order": 1}, {"name": "John Corbett", "character": "Garrett Peterson", "id": 38405, "credit_id": "52fe4eb5c3a36847f82a2c91", "cast_id": 5, "profile_path": "/rysozQX6fbbd0PXhkH5tVWa3Wt3.jpg", "order": 2}, {"name": "Kristin Chenoweth", "character": "Vicky Lansing", "id": 52775, "credit_id": "52fe4eb5c3a36847f82a2c95", "cast_id": 6, "profile_path": "/nZuynlyNec2G1QEIj0iHbKToaft.jpg", "order": 3}, {"name": "Ian Nelson", "character": "Kevin Peterson", "id": 1348957, "credit_id": "54aa555f9251414d630065bb", "cast_id": 7, "profile_path": "/e5UxvFTHRFI2o8RDiTAjb9tJXLL.jpg", "order": 4}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe4eb5c3a36847f82a2c7f", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 5.2, "runtime": 91}, "136795": {"poster_path": "/tM3hDt8JcU8Y8i6vzTcbnocM2bx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 158674180, "overview": "Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s \"finest,\" is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: Buddies.", "video": false, "id": 136795, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Heat", "tagline": "Action's never been so hot!", "vote_count": 673, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "bg", "name": "\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0435\u0437\u0438\u043a"}], "imdb_id": "tt2404463", "adult": false, "backdrop_path": "/2wKw8M6g7wj0RNz9zAeqU9s1BKl.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2013-06-28", "popularity": 1.71144244451518, "original_title": "The Heat", "budget": 43000000, "cast": [{"name": "Sandra Bullock", "character": "Sarah Ashburn", "id": 18277, "credit_id": "52fe4c1ec3a368484e1a8143", "cast_id": 11, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Melissa McCarthy", "character": "Shannon Mullins", "id": 55536, "credit_id": "52fe4c1ec3a368484e1a8147", "cast_id": 12, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 1}, {"name": "Demi\u00e1n Bichir", "character": "Hale", "id": 76961, "credit_id": "52fe4c1ec3a368484e1a8153", "cast_id": 18, "profile_path": "/hIldnp3pj3LeDq1rVfGgVy4a7cT.jpg", "order": 2}, {"name": "Michael Rapaport", "character": "Jason Mullins", "id": 4688, "credit_id": "52fe4c1ec3a368484e1a814b", "cast_id": 15, "profile_path": "/i39bAISjAUWYlXZZA0wmjYWnZGf.jpg", "order": 3}, {"name": "Taran Killam", "character": "Adam", "id": 1213573, "credit_id": "52fe4c1ec3a368484e1a81a1", "cast_id": 34, "profile_path": "/zK0nDa7hCVpPp92h5DOQgbdHPzn.jpg", "order": 4}, {"name": "Marlon Wayans", "character": "Levy", "id": 9562, "credit_id": "52fe4c1ec3a368484e1a8173", "cast_id": 26, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 5}, {"name": "Andy Buckley", "character": "Robin", "id": 170635, "credit_id": "52fe4c1ec3a368484e1a815b", "cast_id": 20, "profile_path": "/jGOCrJXTzIAGAx1GlBu3Y3NMBma.jpg", "order": 6}, {"name": "Bill Burr", "character": "Mark Mullins", "id": 109708, "credit_id": "52fe4c1ec3a368484e1a8157", "cast_id": 19, "profile_path": "/fXvur9kJ3Pw9CWqHvEkvyyRVuuU.jpg", "order": 7}, {"name": "Steve Bannos", "character": "Wayne", "id": 54720, "credit_id": "52fe4c1ec3a368484e1a815f", "cast_id": 21, "profile_path": "/xiapg97am8zqjcB60lRGBIQeFqA.jpg", "order": 8}, {"name": "Jane Curtin", "character": "Mrs. Mullins", "id": 58184, "credit_id": "52fe4c1ec3a368484e1a8163", "cast_id": 22, "profile_path": "/lPiGlFpjsgb1uD3zPOkaEv4T3Es.jpg", "order": 9}, {"name": "Spoken Reasons", "character": "Rojas", "id": 1186010, "credit_id": "52fe4c1ec3a368484e1a8167", "cast_id": 23, "profile_path": "/4SevKt90oltaAjq2dF3jBWcn2t2.jpg", "order": 10}, {"name": "Dan Bakkedahl", "character": "Craig", "id": 1183546, "credit_id": "52fe4c1ec3a368484e1a816b", "cast_id": 24, "profile_path": "/oAZhhAPfh9maSN7airJZUaJXh60.jpg", "order": 11}, {"name": "Thomas F. Wilson", "character": "Captain Woods", "id": 1065, "credit_id": "52fe4c1ec3a368484e1a816f", "cast_id": 25, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 12}, {"name": "Tony Hale", "character": "The John", "id": 25147, "credit_id": "52fe4c1ec3a368484e1a814f", "cast_id": 17, "profile_path": "/ce7FDoJbRSI6TkMvKXsXvGpcUfp.jpg", "order": 13}, {"name": "Joey McIntyre", "character": "Peter Mullins", "id": 112261, "credit_id": "52fe4c1ec3a368484e1a81a5", "cast_id": 35, "profile_path": "/zmY3vZJNAMKkQSliNJB24Tj6cl8.jpg", "order": 14}, {"name": "Michael Tucci", "character": "Mr. Mullins", "id": 8897, "credit_id": "52fe4c1ec3a368484e1a81a9", "cast_id": 36, "profile_path": "/reUFx7dyg2d5PMPMLjDagwqlrtP.jpg", "order": 15}, {"name": "Nate Corddry", "character": "Michael Mullins", "id": 127048, "credit_id": "52fe4c1ec3a368484e1a81ad", "cast_id": 37, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 16}, {"name": "Zach Woods", "character": "Paramedic", "id": 464993, "credit_id": "52fe4c1ec3a368484e1a81b1", "cast_id": 38, "profile_path": "/hAYHvDs4TfHmqICelPcxe2furD8.jpg", "order": 17}], "directors": [{"name": "Paul Feig", "department": "Directing", "job": "Director", "credit_id": "52fe4c1ec3a368484e1a811b", "profile_path": "/6CI4revRSc9qCy6kVlyGntHblcI.jpg", "id": 116805}], "vote_average": 6.6, "runtime": 117}, "136797": {"poster_path": "/lN0mP3BNaKirkKl6FJ0yL0wmjSJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63444939, "overview": "The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer's head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.", "video": false, "id": 136797, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Need for Speed", "tagline": "For honor. For love. For redemption.", "vote_count": 608, "homepage": "http://hd24hr.blogspot.com/1991/03/need-for-speed.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2369135", "adult": false, "backdrop_path": "/kiLEAfRQhs93r3tSsQFpD2EpbyR.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Bandito Brothers", "id": 8403}, {"name": "Electronic Arts", "id": 34890}], "release_date": "2014-03-14", "popularity": 2.10371258757119, "original_title": "Need for Speed", "budget": 66000000, "cast": [{"name": "Aaron Paul", "character": "Tobey Marshall", "id": 84497, "credit_id": "52fe4c1ec3a368484e1a81fd", "cast_id": 8, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Dino Brewster", "id": 55470, "credit_id": "52fe4c1ec3a368484e1a8205", "cast_id": 10, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Imogen Poots", "character": "Julia", "id": 17606, "credit_id": "52fe4c1ec3a368484e1a8201", "cast_id": 9, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 2}, {"name": "Rami Malek", "character": "Finn", "id": 17838, "credit_id": "52fe4c1ec3a368484e1a820d", "cast_id": 12, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 3}, {"name": "Ram\u00f3n Rodr\u00edguez", "character": "Joe Peck", "id": 72985, "credit_id": "52fe4c1ec3a368484e1a8209", "cast_id": 11, "profile_path": "/y3g9JGu8utZG6D3Dwn7OBCUUqw7.jpg", "order": 4}, {"name": "Harrison Gilbertson", "character": "Little Pete", "id": 127281, "credit_id": "52fe4c1ec3a368484e1a8211", "cast_id": 13, "profile_path": "/wQEbVoP4x7zUUQs01skmBlinKGc.jpg", "order": 5}, {"name": "Dakota Johnson", "character": "Anita", "id": 118545, "credit_id": "52fe883292514167a802167e", "cast_id": 16, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 6}, {"name": "Michael Keaton", "character": "Monarch", "id": 2232, "credit_id": "52fe4c1ec3a368484e1a81f9", "cast_id": 7, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 7}, {"name": "Scott Mescudi", "character": "Benny", "id": 484359, "credit_id": "52fe4c1ec3a368484e1a8215", "cast_id": 14, "profile_path": "/431ip65azwGdciT8CdMKzezCFv3.jpg", "order": 8}, {"name": "Sir Maejor", "character": "Leigh Dennis", "id": 1262082, "credit_id": "52fe8846925141679f0291b0", "cast_id": 17, "profile_path": "/AtTbDuBT00cGbHoEEtylNp547vj.jpg", "order": 9}, {"name": "Carmela Zumbado", "character": "Jeny B", "id": 1292730, "credit_id": "52fe885b925141679601b24c", "cast_id": 18, "profile_path": "/yms4gxPdLzLwBO2nkuSWzI6TyCz.jpg", "order": 10}, {"name": "Nick Chinlund", "character": "Officer Lejeune", "id": 18461, "credit_id": "52fe886d92514167a8021884", "cast_id": 19, "profile_path": "/7x7DFGRV3Z8RAfTiMsMvU1vOtdP.jpg", "order": 11}, {"name": "Libby Blanton", "character": "San Fran Girl", "id": 1292731, "credit_id": "52fe889792514167ab018b22", "cast_id": 21, "profile_path": "/zK0AvDFFqPcAjEx1vY3UPF2pvV0.jpg", "order": 13}, {"name": "Beth Waugh", "character": "Investor's Wife", "id": 1292732, "credit_id": "52fe88a792514167a802201c", "cast_id": 22, "profile_path": "/v5rTkYCYi6rxv1DAdzGDCBJZfIL.jpg", "order": 14}, {"name": "Michael Rose", "character": "Investor", "id": 53330, "credit_id": "53d0bf47c3a3687761009d57", "cast_id": 32, "profile_path": "/zxVFWG8TIgqV01nL90mfucX83nQ.jpg", "order": 15}, {"name": "Han Soto", "character": "News Producer", "id": 1116011, "credit_id": "53d0c1ef0e0a265dea00c556", "cast_id": 33, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 16}], "directors": [{"name": "Scott Waugh", "department": "Directing", "job": "Director", "credit_id": "52fe4c1ec3a368484e1a81d7", "profile_path": null, "id": 293911}], "vote_average": 6.4, "runtime": 130}, "9738": {"poster_path": "/aJwUBmUA11lkNVSJ3if3h3xHSFd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 330000000, "overview": "During a space voyage, four scientists are altered by cosmic rays: Reed Richards gains the ability to stretch his body; Sue Storm can become invisible; Johnny Storm controls fire; and Ben Grimm is turned into a super-strong \u2026 thing. Together, these \"Fantastic Four\" must now thwart the evil plans of Dr. Doom and save the world from certain destruction.", "video": false, "id": 9738, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Fantastic Four", "tagline": "4 times the action. 4 times the adventure. 4 times the fantastic.", "vote_count": 947, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3JFe9AWoKuQWox7HO8HKgYRMOF7.jpg", "poster_path": "/prObnUSCHIBC8ZjkGo2KHgjkWOo.jpg", "id": 9744, "name": "Fantastic Four Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120667", "adult": false, "backdrop_path": "/6RaH2Znu7dUQq7c8surf7hRp44f.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "1492 Pictures", "id": 436}], "release_date": "2005-07-07", "popularity": 1.53084443282712, "original_title": "Fantastic Four", "budget": 100000000, "cast": [{"name": "Ioan Gruffudd", "character": "Reed Richards", "id": 65524, "credit_id": "52fe4524c3a36847f80bed7d", "cast_id": 1, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Sue Storm", "id": 56731, "credit_id": "52fe4524c3a36847f80bed81", "cast_id": 2, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Chris Evans", "character": "Johnny Storm", "id": 16828, "credit_id": "52fe4524c3a36847f80bed85", "cast_id": 3, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Michael Chiklis", "character": "Ben Grimm", "id": 19654, "credit_id": "52fe4524c3a36847f80bed89", "cast_id": 4, "profile_path": "/fkJnjCERaqOky0gJrSHmwjQ9oOZ.jpg", "order": 3}, {"name": "Julian McMahon", "character": "Victor von Doom", "id": 20402, "credit_id": "52fe4524c3a36847f80bed8d", "cast_id": 5, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 4}, {"name": "Kerry Washington", "character": "Alicia Masters", "id": 11703, "credit_id": "52fe4524c3a36847f80bedf1", "cast_id": 23, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 5}, {"name": "Hamish Linklater", "character": "Leonard", "id": 184581, "credit_id": "52fe4524c3a36847f80bedf5", "cast_id": 24, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 6}, {"name": "Laurie Holden", "character": "Debbie McIlvane", "id": 8332, "credit_id": "52fe4524c3a36847f80bedf9", "cast_id": 25, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 7}, {"name": "David Parker", "character": "Ernie", "id": 77036, "credit_id": "52fe4524c3a36847f80bedfd", "cast_id": 26, "profile_path": "/5jWveoI0K8j2sCeRCC4zrEOegeM.jpg", "order": 8}, {"name": "Kevin McNulty", "character": "Jimmy O'Hoolihan", "id": 27111, "credit_id": "52fe4524c3a36847f80bee01", "cast_id": 27, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 9}, {"name": "Maria Menounos", "character": "Sexy Nurse", "id": 74353, "credit_id": "52fe4524c3a36847f80bee05", "cast_id": 28, "profile_path": "/dkaPcN5586IIDo9P6jGkfDqkzrj.jpg", "order": 10}, {"name": "Stan Lee", "character": "Willie Lumpkin", "id": 7624, "credit_id": "52fe4524c3a36847f80bee09", "cast_id": 29, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 11}, {"name": "Pascale Hutton", "character": "Nightclub Girlfriend", "id": 64917, "credit_id": "52fe4524c3a36847f80bee0d", "cast_id": 30, "profile_path": "/ilZSs16aNVySDEpU9k2xNShu0Ht.jpg", "order": 12}], "directors": [{"name": "Tim Story", "department": "Directing", "job": "Director", "credit_id": "52fe4524c3a36847f80beded", "profile_path": "/30HZn70vyclGRRn5AU3szpKyfgC.jpg", "id": 20400}], "vote_average": 5.4, "runtime": 106}, "192102": {"poster_path": "/mj1aAY5WbVhb62nw3MvZinsbhke.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GR", "name": "Greece"}, {"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission - even if it means juggling the two toughest assignments yet: hunting down the world's most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.", "video": false, "id": 192102, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "3 Days to Kill", "tagline": "The question is, kill or die?", "vote_count": 352, "homepage": "http://www.movie-censorship.com/report.php?ID=689035", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2172934", "adult": false, "backdrop_path": "/hMuPjDgT3MyZkGpST4vky8t0m6h.jpg", "production_companies": [{"name": "EuropaCorp", "id": 6896}, {"name": "Relativity Media", "id": 7295}, {"name": "3DTK", "id": 22947}, {"name": "Feelgood Entertainment", "id": 22948}, {"name": "Paradise/MGN", "id": 22949}, {"name": "Wonderland Sound and Vision", "id": 4022}], "release_date": "2014-02-14", "popularity": 2.33842724110644, "original_title": "3 Days to Kill", "budget": 28000000, "cast": [{"name": "Kevin Costner", "character": "Ethan Renner", "id": 1269, "credit_id": "52fe4c9b9251416c910fa44b", "cast_id": 2, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 0}, {"name": "Amber Heard", "character": "Vivi Delay", "id": 55085, "credit_id": "52fe4c9b9251416c910fa447", "cast_id": 1, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Hailee Steinfeld", "character": "Zoey Renner", "id": 130640, "credit_id": "52fe4c9b9251416c910fa44f", "cast_id": 3, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 2}, {"name": "Connie Nielsen", "character": "Christine Renner", "id": 935, "credit_id": "52fe4c9b9251416c910fa453", "cast_id": 4, "profile_path": "/zBW19um2qW6uGIrl9LvUTZoD4MM.jpg", "order": 3}, {"name": "Richard Sammel", "character": "The Wolf", "id": 49487, "credit_id": "52fe4c9b9251416c910fa457", "cast_id": 5, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 4}, {"name": "T\u00f3mas Lemarquis", "character": "The Albino", "id": 18818, "credit_id": "52fe4c9b9251416c910fa45b", "cast_id": 6, "profile_path": "/6qWyGbPWE020wTezwoWx1wIPuPQ.jpg", "order": 5}, {"name": "Eriq Ebouaney", "character": "Jules", "id": 25078, "credit_id": "52fe4c9b9251416c910fa45f", "cast_id": 7, "profile_path": "/wfxFCJ85tNTUvFRLsOayUQmHgSC.jpg", "order": 6}, {"name": "Big John", "character": "Louis", "id": 1033668, "credit_id": "52fe4c9b9251416c910fa463", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Bruno Ricci", "character": "Guido", "id": 145161, "credit_id": "530399be92514161a234562e", "cast_id": 12, "profile_path": "/3LJJpZBfvdom5pVpJ8IlhIrIS6D.jpg", "order": 8}, {"name": "Jonas Bloquet", "character": "Hugh", "id": 566080, "credit_id": "530399cd92514121955d5247", "cast_id": 13, "profile_path": "/yti6Pj05UzCIc2lLKHcpl8kNEzB.jpg", "order": 9}, {"name": "Marc Andr\u00e9oni", "character": "Mitat Yilmaz", "id": 585700, "credit_id": "53039a0092514121a463f32b", "cast_id": 14, "profile_path": "/9hf2rlWsQV3pTKUG4TKIzn26L2s.jpg", "order": 10}, {"name": "Alison Valence", "character": "Sumia", "id": 1333450, "credit_id": "53a72e9c0e0a26143200459c", "cast_id": 31, "profile_path": "/zLKNK3vawgJzlpJSf5PBaGFsirP.jpg", "order": 11}], "directors": [{"name": "McG", "department": "Directing", "job": "Director", "credit_id": "52fe4c9b9251416c910fa469", "profile_path": "/hT0I4rLSOhIQoEYuYAP4tG16AjH.jpg", "id": 36425}], "vote_average": 6.1, "runtime": 113}, "13929": {"poster_path": "/1yqWnnRtbixqolHARRH4KymNBhj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An aging codger named Geri plays a daylong game of chess in the park against himself. Somehow, he begins losing to his livelier opponent. But just when the game's nearly over, Geri manages to turn the tables.", "video": false, "id": 13929, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Geri's Game", "tagline": "Sometimes you don't need more than one person to not feel alone", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0131409", "adult": false, "backdrop_path": "/baddGVlv1zk1RDhf0dKUHyKxcQq.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "1997-11-24", "popularity": 0.477984860838636, "original_title": "Geri's Game", "budget": 0, "cast": [{"name": "Bob Peterson", "character": "Geri (voice)", "id": 10, "credit_id": "52fe45b59251416c7505fc65", "cast_id": 3, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 0}], "directors": [{"name": "Jan Pinkava", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c7505fc5b", "profile_path": "/rzQqU5P6NJie92Ltc5iJPtGsuPa.jpg", "id": 7930}], "vote_average": 7.9, "runtime": 4}, "13930": {"poster_path": "/r7FxAytbH046wQh5LnZLQKvXgNx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "One by one, a flock of small birds perches on a telephone wire. Sitting close together has problems enough, and then comes along a large dopey bird that tries to join them. The birds of a feather can't help but make fun of him - and their clique mentality proves embarrassing in the end.", "video": false, "id": 13930, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "For the Birds", "tagline": "", "vote_count": 118, "homepage": "http://www.pixar.com/short_films/Theatrical-Shorts/For-the-Birds", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0248808", "adult": false, "backdrop_path": "/pCshecgO5A15qURScLMqFtyPer4.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2000-11-02", "popularity": 0.426206829777743, "original_title": "For the Birds", "budget": 0, "cast": [{"name": "Ralph Eggleston", "character": "Bird (voice) (uncredited)", "id": 7883, "credit_id": "52fe45b59251416c7505fc7d", "cast_id": 3, "profile_path": "/uUfcGKDsKO1aROMpXRs67Hn6RvR.jpg", "order": 0}], "directors": [{"name": "Ralph Eggleston", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c7505fc79", "profile_path": "/uUfcGKDsKO1aROMpXRs67Hn6RvR.jpg", "id": 7883}], "vote_average": 7.8, "runtime": 3}, "13932": {"poster_path": "/btnyGcvjMbN4MpwLE7A6J7gNV01.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Kari the babysitter thinks she's in for a night of routine babysitting. She's prepared to provide neurological stimulation with some soothing musical accompaniment for little Jack-Jack, the smallest member of the incredible Parr family. Little does she know that Jack-Jack will teach her a thing or two about babies with \"special needs.\"", "video": false, "id": 13932, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Jack-Jack Attack", "tagline": "", "vote_count": 58, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455565", "adult": false, "backdrop_path": "/mUcfavkzBSlJbhS6cXZyInM9jix.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2005-03-15", "popularity": 0.715943021276798, "original_title": "Jack-Jack Attack", "budget": 0, "cast": [{"name": "Bud Luckey", "character": "Agent Rick Dicker", "id": 7918, "credit_id": "52fe45b59251416c7505fce9", "cast_id": 8, "profile_path": "/pcCh7G19FKMNijmPQg1PMH1btic.jpg", "order": 2}, {"name": "Eli Fucile", "character": "Jack-Jack Parr", "id": 59358, "credit_id": "52fe45b59251416c7505fced", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Jason Lee", "character": "Buddy Pine / Syndrome", "id": 11662, "credit_id": "52fe45b59251416c7505fcf1", "cast_id": 10, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Bret 'Brook' Parker", "character": "Kari McKeen", "id": 7998, "credit_id": "5442bade0e0a266340002a72", "cast_id": 17, "profile_path": "/776ZYJGQO4Wer1cDq9XXAZ0z4C1.jpg", "order": 5}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe45b59251416c7505fcf7", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 7.4, "runtime": 5}, "256274": {"poster_path": "/e4GGbcdTMO8VRQYyLkNyAt1Oz89.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40100000, "overview": "When a team of explorers ventures into the catacombs that lie beneath the streets of Paris, they uncover the dark secret that lies within this city of the dead.", "video": false, "id": 256274, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "As Above, So Below", "tagline": "The only way out is down.", "vote_count": 182, "homepage": "http://www.asabovesobelowmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2870612", "adult": false, "backdrop_path": "/gseZiVBq0E8iHCPno9noyzdNTGy.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}], "release_date": "2014-08-29", "popularity": 0.782461139506547, "original_title": "As Above, So Below", "budget": 5000000, "cast": [{"name": "Perdita Weeks", "character": "Scarlett", "id": 207549, "credit_id": "535935a40e0a26640d0000be", "cast_id": 3, "profile_path": "/fm0VLOVkhV6Op9X0DB2NcVOB13x.jpg", "order": 1}, {"name": "Ben Feldman", "character": "George", "id": 78431, "credit_id": "535935ab0e0a2664160000d8", "cast_id": 4, "profile_path": "/cve3khwonn7sWBwDThA44XwH2Fo.jpg", "order": 2}, {"name": "Edwin Hodge", "character": "Benji", "id": 56679, "credit_id": "535935b40e0a26641d0000f7", "cast_id": 5, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 3}, {"name": "Fran\u00e7ois Civil", "character": "Papillon", "id": 78124, "credit_id": "5371c8d8c3a3684343000b18", "cast_id": 6, "profile_path": "/ngKymMbs7r5dUyegMm4X4dvL4aS.jpg", "order": 4}, {"name": "Marion Lambert", "character": "Souxie", "id": 1319096, "credit_id": "5371c8e3c3a3684351000b4e", "cast_id": 7, "profile_path": "/s0C9uB552BIfzvoXvUzoVEatIEi.jpg", "order": 5}, {"name": "Ali Marhyar", "character": "Zed", "id": 939100, "credit_id": "53fc24820e0a267a72009dd4", "cast_id": 10, "profile_path": "/2dJKavVasaDFpudUV0CtPygyNHh.jpg", "order": 6}, {"name": "Cosme Castro", "character": "La Taupe", "id": 1357018, "credit_id": "53fc248b0e0a267a6c009d83", "cast_id": 11, "profile_path": "/ewEDARc4gACGkKSbiCy8dVI1ECw.jpg", "order": 7}, {"name": "Hamid Djavadan", "character": "Reza", "id": 1178738, "credit_id": "53fc24950e0a267a66009bde", "cast_id": 12, "profile_path": "/4SQCmcBDbJeBwHNcmtNWXMvxXta.jpg", "order": 8}, {"name": "Th\u00e9o Cholbi", "character": "Gloomy Teenager", "id": 1139801, "credit_id": "53fc249f0e0a267a66009be1", "cast_id": 13, "profile_path": "/jZP5iOPzSsiZkeg6vuYb64ETCvO.jpg", "order": 9}, {"name": "Emy L\u00e9vy", "character": "Tour Guide", "id": 1175840, "credit_id": "53fc24a90e0a267a69009df3", "cast_id": 14, "profile_path": "/ikd2tjjaxI67MYIFsEIhIH3cfZp.jpg", "order": 10}, {"name": "Roger Van Hool", "character": "Scarlett's Father", "id": 28190, "credit_id": "53fc24b30e0a267a69009df5", "cast_id": 15, "profile_path": "/6rXpe83p5cHMiH8S4D6PzZbvtgL.jpg", "order": 11}, {"name": "Olivia Csiky Trnka", "character": "Strange Young Woman", "id": 1357019, "credit_id": "53fc24bd0e0a267a7b00998d", "cast_id": 16, "profile_path": "/4Z5A1sGoY0mWTLRLTQJoWc8EUBM.jpg", "order": 12}, {"name": "Hellyette Bess", "character": "Strange Old Woman", "id": 1357020, "credit_id": "53fc24c70e0a267a69009df9", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Aryan Rahimian", "character": "Iranian Armed Guard", "id": 226025, "credit_id": "53fc24d10e0a267a78009a0d", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Samuel Aouizerate", "character": "Danny", "id": 1357021, "credit_id": "53fc24da0e0a267a6c009d8c", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Kaya Blocksage", "character": "Female Curator", "id": 1357022, "credit_id": "53fc24e50e0a267a75009e55", "cast_id": 20, "profile_path": "/fK4hKOCEOdzMZ4oI0eqljjsTmwT.jpg", "order": 16}], "directors": [{"name": "John Erick Dowdle", "department": "Directing", "job": "Director", "credit_id": "5303f1a392514177e1002e42", "profile_path": null, "id": 77147}], "vote_average": 5.9, "runtime": 93}, "46705": {"poster_path": "/k14hfSW7udPCHHPUGfAXDtYZ1HE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12355734, "overview": "The film centers on a contemporary married couple, charting their evolution over a span of years by cross-cutting between time periods.", "video": false, "id": 46705, "genres": [{"id": 18, "name": "Drama"}], "title": "Blue Valentine", "tagline": "Nobody Baby But You And Me", "vote_count": 189, "homepage": "http://www.bluevalentinemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1120985", "adult": false, "backdrop_path": "/n7f6SnsVbrsmEKhzyjVZibQ7Iq.jpg", "production_companies": [{"name": "Cottage Industries", "id": 11338}, {"name": "Incentive Filmed Entertainment", "id": 7215}, {"name": "Silverwood Films", "id": 2293}, {"name": "Hunting Lane Films", "id": 2290}, {"name": "Chrysler Corporation", "id": 11335}, {"name": "Shade Pictures", "id": 11336}, {"name": "Motel Movies", "id": 11337}], "release_date": "2010-12-27", "popularity": 0.844601568623845, "original_title": "Blue Valentine", "budget": 1000000, "cast": [{"name": "Ryan Gosling", "character": "Dean", "id": 30614, "credit_id": "52fe4707c3a36847f811fdab", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Michelle Williams", "character": "Cindy", "id": 1812, "credit_id": "52fe4707c3a36847f811fdaf", "cast_id": 4, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 1}, {"name": "Mike Vogel", "character": "Bobby", "id": 6858, "credit_id": "52fe4707c3a36847f811fdb3", "cast_id": 5, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 2}, {"name": "John Doman", "character": "Jerry", "id": 4735, "credit_id": "52fe4707c3a36847f811fdb7", "cast_id": 6, "profile_path": "/xfcSluMohRbnMySSlosFmlZyLLy.jpg", "order": 3}, {"name": "Faith Wladyka", "character": "Frankie", "id": 968528, "credit_id": "52fe4708c3a36847f811fe21", "cast_id": 27, "profile_path": "/kakeL3goTIb1AGYKBAiRxlR9J9Q.jpg", "order": 4}, {"name": "Marshall Johnson", "character": "Marshall", "id": 1117293, "credit_id": "52fe4708c3a36847f811fe25", "cast_id": 28, "profile_path": null, "order": 5}, {"name": "Jen Jones", "character": "Gramma", "id": 171463, "credit_id": "52fe4708c3a36847f811fe29", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Maryann Plunkett", "character": "Glenda", "id": 171472, "credit_id": "52fe4708c3a36847f811fe2d", "cast_id": 30, "profile_path": "/4aTUH3LkiTHKeRUO5efx0hqjS2Q.jpg", "order": 7}, {"name": "James Benatti", "character": "Jamie", "id": 1117294, "credit_id": "52fe4708c3a36847f811fe31", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Barbara Troy", "character": "Jo", "id": 1117295, "credit_id": "52fe4708c3a36847f811fe35", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Carey Westbrook", "character": "Charley", "id": 1117296, "credit_id": "52fe4708c3a36847f811fe39", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Ben Shenkman", "character": "Dr. Feinberg", "id": 6437, "credit_id": "52fe4708c3a36847f811fe3d", "cast_id": 34, "profile_path": "/ocLEexcLxffgLJ41wuqc80YmdeY.jpg", "order": 11}, {"name": "Eileen Rosen", "character": "Mimi", "id": 968530, "credit_id": "52fe4708c3a36847f811fe41", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Enid Graham", "character": "Professor", "id": 155574, "credit_id": "52fe4708c3a36847f811fe45", "cast_id": 36, "profile_path": null, "order": 13}, {"name": "Ashley Gurnari", "character": "Checker", "id": 1117297, "credit_id": "52fe4708c3a36847f811fe49", "cast_id": 37, "profile_path": null, "order": 14}], "directors": [{"name": "Derek Cianfrance", "department": "Directing", "job": "Director", "credit_id": "52fe4707c3a36847f811fda7", "profile_path": "/zGhozVaRDCU5Tpu026X0al2lQN3.jpg", "id": 139098}], "vote_average": 6.8, "runtime": 112}, "10515": {"poster_path": "/4RTG2AaqZ9eleL51ryWwv78WwDu.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 3106327, "overview": "The orphan Sheeta inherited a mysterious crystal that links her to the mythical sky-kingdom of Laputa. With the help of resourceful Pazu and a rollicking band of sky pirates, she makes her way to the ruins of the once-great civilization. Sheeta and Pazu must outwit the evil Muska, who plans to use Laputa's science to make himself ruler of the world.", "video": false, "id": 10515, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Castle in the Sky", "tagline": "", "vote_count": 264, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0092067", "adult": false, "backdrop_path": "/pU8cdLJiyOnFrFlWJEUlIu8S4hQ.jpg", "production_companies": [{"name": "Tokuma Shoten", "id": 1779}, {"name": "Nibariki", "id": 12516}, {"name": "Studio Ghibli", "id": 10342}], "release_date": "1986-08-02", "popularity": 1.29365390508985, "original_title": "\u5929\u7a7a\u306e\u57ce\u30e9\u30d4\u30e5\u30bf", "budget": 0, "cast": [{"name": "Keiko Yokozawa", "character": "Sheeta (voice)", "id": 65509, "credit_id": "52fe437e9251416c750128a9", "cast_id": 9, "profile_path": "/leNw9OGQdkiiBpsbk6Y108wXQrt.jpg", "order": 0}, {"name": "Mayumi Tanaka", "character": "Pazu (voice)", "id": 65510, "credit_id": "52fe437e9251416c750128ad", "cast_id": 10, "profile_path": "/rGUGLXCbdEb3KO7lRmLg0szNn4k.jpg", "order": 1}, {"name": "Minori Terada", "character": "Muska (voice)", "id": 65511, "credit_id": "52fe437e9251416c750128b1", "cast_id": 11, "profile_path": "/iWUhewafl85w1wH5PBj2Ga6XD1V.jpg", "order": 2}, {"name": "Kotoe Hatsui", "character": "Dola", "id": 65512, "credit_id": "52fe437e9251416c750128b5", "cast_id": 12, "profile_path": "/k3BhnRlm5HFHHxwpoEaL1e4SXgE.jpg", "order": 3}, {"name": "Fujio Tokita", "character": "Uncle Pomme", "id": 142455, "credit_id": "52fe437e9251416c750128b9", "cast_id": 13, "profile_path": "/qB7mFr6AbUZl0zFJcWMydySa25F.jpg", "order": 4}, {"name": "Ichir\u014d Nagai", "character": "Shogun Mouro", "id": 617, "credit_id": "52fe437e9251416c750128bd", "cast_id": 14, "profile_path": "/dI7cAwwF6LJ9uQs0BB6jbr8mghm.jpg", "order": 5}, {"name": "Hiroshi Itoh", "character": "Oyakata", "id": 551814, "credit_id": "52fe437e9251416c750128c1", "cast_id": 15, "profile_path": "/yqaXzX31MRsWDCekIqFuDTkZqkz.jpg", "order": 6}, {"name": "Machiko Washio", "character": "Okami", "id": 105818, "credit_id": "52fe437e9251416c750128c5", "cast_id": 16, "profile_path": "/ixgpXftZYXLCDNss5K0wfFu3RkQ.jpg", "order": 7}, {"name": "Takumi Kamiyama", "character": "Charles", "id": 552678, "credit_id": "52fe437e9251416c750128c9", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Yoshito Yasuhara", "character": "Louis", "id": 142701, "credit_id": "52fe437e9251416c750128cd", "cast_id": 18, "profile_path": "/9b2jdsbc815AQuttDtwkhhXFg7p.jpg", "order": 9}, {"name": "Sukekiyo Kameyama", "character": "Henri", "id": 552679, "credit_id": "52fe437e9251416c750128d1", "cast_id": 19, "profile_path": "/xhyFlZ6zAo4rosof2xZhqtQTota.jpg", "order": 10}, {"name": "Eken Mine", "character": "Underling", "id": 552680, "credit_id": "52fe437e9251416c750128d5", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Tarako", "character": "Madge (Daffy's daughter)", "id": 100127, "credit_id": "52fe437e9251416c750128d9", "cast_id": 21, "profile_path": "/kLHM1cugBLAdyEm3xgdnAzdmKhx.jpg", "order": 12}, {"name": "Reiko Suzuki", "character": "Additional Voices", "id": 552681, "credit_id": "52fe437e9251416c750128dd", "cast_id": 22, "profile_path": "/oMVxECTYnRq8ywc8f5ESnDtWznU.jpg", "order": 13}, {"name": "Masashi Sugawara", "character": "Underling", "id": 222339, "credit_id": "52fe437e9251416c750128e1", "cast_id": 23, "profile_path": "/43HDvANWH1B85x4yjAAGGvfwKVn.jpg", "order": 14}, {"name": "Toshihiko Seki", "character": "Additional Voices", "id": 90571, "credit_id": "52fe437e9251416c750128e5", "cast_id": 25, "profile_path": "/1lBmZJfFuV1FVxnrJt4kfaO1rJk.jpg", "order": 15}, {"name": "H\u00f4ch\u00fb \u00d4tsuka", "character": "Additional Voices", "id": 552683, "credit_id": "52fe437e9251416c750128e9", "cast_id": 26, "profile_path": "/bvqLZYjQUwnhFUbnNryTrxpNHke.jpg", "order": 16}, {"name": "Megumi Hayashibara", "character": "Additional Voices", "id": 40325, "credit_id": "52fe437e9251416c750128ed", "cast_id": 27, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 17}, {"name": "Tomomichi Nishimura", "character": "Additional Voices", "id": 81859, "credit_id": "52fe437e9251416c75012921", "cast_id": 36, "profile_path": "/kZXRpvXwI0F1qbKNff3dOG2BodA.jpg", "order": 18}], "directors": [{"name": "Hayao Miyazaki", "department": "Directing", "job": "Director", "credit_id": "52fe437e9251416c75012887", "profile_path": "/6aaAvZbGdhkyAXBIneyqqN60aa1.jpg", "id": 608}], "vote_average": 7.5, "runtime": 124}, "284276": {"poster_path": "/wnX7WTcrwi30DyBusT1qJpQ8LzG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After having visions of a member of her support group who killed herself, a woman who also suffers with chronic pain seeks out the widower of the suicide.", "video": false, "id": 284276, "genres": [{"id": 18, "name": "Drama"}], "title": "Cake", "tagline": "Forgiveness is a bitter pill to swallow.", "vote_count": 63, "homepage": "http://cakemovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3442006", "adult": false, "backdrop_path": "/iGRutrtJcsdk5y3xvVU8WewSowZ.jpg", "production_companies": [{"name": "We're Not Brothers Productions", "id": 39643}, {"name": "Cinelou Films", "id": 39644}, {"name": "Echo Films", "id": 7382}], "release_date": "2014-12-31", "popularity": 3.70694135921465, "original_title": "Cake", "budget": 7000000, "cast": [{"name": "Jennifer Aniston", "character": "Claire Simmons", "id": 4491, "credit_id": "53d7de94c3a3683a1c001818", "cast_id": 0, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 0}, {"name": "Anna Kendrick", "character": "Nina", "id": 84223, "credit_id": "5409f9500e0a262b40000577", "cast_id": 2, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 1}, {"name": "William H. Macy", "character": "Leonard", "id": 3905, "credit_id": "541696e7c3a3684cec00486d", "cast_id": 7, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 2}, {"name": "Adriana Barraza", "character": "Silvana", "id": 270, "credit_id": "5416974dc3a3684cec0048eb", "cast_id": 11, "profile_path": "/8g2uMVkzZSTSvmeBbCaYLmByVAS.jpg", "order": 3}, {"name": "Felicity Huffman", "character": "Annette", "id": 7427, "credit_id": "5416972cc3a3684cf7004a3e", "cast_id": 9, "profile_path": "/wtFoENVM5jo4NhcWx9qFWuvFuXC.jpg", "order": 4}, {"name": "Sam Worthington", "character": "Roy", "id": 65731, "credit_id": "5409f9560e0a262b4000057b", "cast_id": 3, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 5}, {"name": "Britt Robertson", "character": "Becky", "id": 52018, "credit_id": "541696850e0a261c27004a92", "cast_id": 4, "profile_path": "/vHQgCsQ7ERMbsL7mulZaDgwWJDK.jpg", "order": 6}, {"name": "Lucy Punch", "character": "Nurse Gayle", "id": 66446, "credit_id": "541696cbc3a3684d0a004c34", "cast_id": 5, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 7}, {"name": "Chris Messina", "character": "Jason", "id": 61659, "credit_id": "541696d9c3a3684d06004add", "cast_id": 6, "profile_path": "/9G8FHatnQP2SyjlEiuDlzFgbVGC.jpg", "order": 8}, {"name": "Mamie Gummer", "character": "Bonnie", "id": 47281, "credit_id": "541696f8c3a3684cec00487d", "cast_id": 8, "profile_path": "/ptz8SYBGt8XJlH6m7pjqhQMr6D3.jpg", "order": 9}, {"name": "Camille Guaty", "character": "Tina", "id": 81106, "credit_id": "5416973d0e0a261c32004ade", "cast_id": 10, "profile_path": "/clscQjYVHl6JmXa4sqZFFeixrIy.jpg", "order": 10}, {"name": "Manuel Garcia-Rulfo", "character": "Arturo", "id": 1168097, "credit_id": "54c3049092514124c8004749", "cast_id": 31, "profile_path": "/ohtV4uA906RgEZoFacqLKfJupHc.jpg", "order": 11}, {"name": "Misty Upham", "character": "Liz", "id": 64136, "credit_id": "54c304abc3a36878fb0044e6", "cast_id": 32, "profile_path": "/78YVlWbvZiEO9Z1F4NfWiIrv2SS.jpg", "order": 12}, {"name": "Rose Abdoo", "character": "Innocencia", "id": 31507, "credit_id": "54c304b79251416e6000e1c2", "cast_id": 33, "profile_path": null, "order": 13}], "directors": [{"name": "Daniel Barnz", "department": "Directing", "job": "Director", "credit_id": "53d7df2bc3a3683a1c001827", "profile_path": "/rBlhnxatVxjdLah2nrSNhGuKVu6.jpg", "id": 84061}], "vote_average": 6.4, "runtime": 92}, "251519": {"poster_path": "/3KsZUcifrnHqs6AGrZBW4iUTLYs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Batman learns that he has a violent, unruly pre-teen son with Talia al Ghul named Damian Wayne who is secretly being raised by Ra's al Ghul and the League of Assassins. When Ra's al Ghul apparently dies after a battle with Deathstroke, Batman must work to stop his long-lost son from taking revenge and guiding him to a righteous path, in addition to the chance for the pair to truly acknowledging each other as family.", "video": false, "id": 251519, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}], "title": "Son of Batman", "tagline": "Vengeance runs in the blood.", "vote_count": 108, "homepage": "", "belongs_to_collection": {"backdrop_path": "/sVvEkTNx6SjwOb80iyURe5KHtcD.jpg", "poster_path": "/145njLUZoHKWbqTuzOJKQXuYpcS.jpg", "id": 334996, "name": "Son of Batman collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3139072", "adult": false, "backdrop_path": "/omK35Mr3oks6bd5efrgsO7CzmLP.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "DC Entertainment", "id": 9993}, {"name": "Warner Bros. Animation", "id": 2785}, {"name": "Warner Premiere", "id": 4811}, {"name": "Warner Home Video", "id": 2786}], "release_date": "2014-04-20", "popularity": 0.372212781900264, "original_title": "Son of Batman", "budget": 0, "cast": [{"name": "Jason O'Mara", "character": "Bruce Wayne / Batman", "id": 183812, "credit_id": "52fe4e1b9251416c91126a91", "cast_id": 4, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 0}, {"name": "Stuart Allan", "character": "Damian", "id": 1164238, "credit_id": "52fe4e1b9251416c91126aa9", "cast_id": 10, "profile_path": "/lNQdGVXZOj46LKZIcli5tJ83PvM.jpg", "order": 1}, {"name": "Thomas Gibson", "character": "Slade Wilson / Deathstroke", "id": 13638, "credit_id": "52fe4e1b9251416c91126a99", "cast_id": 6, "profile_path": "/xi0vxwCqAxTSUPiBH3O00kyVoWq.jpg", "order": 2}, {"name": "Morena Baccarin", "character": "Talia al Ghul", "id": 54882, "credit_id": "52fe4e1b9251416c91126a85", "cast_id": 1, "profile_path": "/gUG9fnudV5Ev1MIr3adngn1GuZJ.jpg", "order": 3}, {"name": "Giancarlo Esposito", "character": "Ra's al Ghul", "id": 4808, "credit_id": "52fe4e1b9251416c91126a89", "cast_id": 2, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 4}, {"name": "David McCallum", "character": "Alfred Pennyworth", "id": 24813, "credit_id": "52fe4e1b9251416c91126a8d", "cast_id": 3, "profile_path": "/po7qYZYW0RMTl4BavHIZCxqopCD.jpg", "order": 5}, {"name": "Xander Berkeley", "character": "Dr. Kirk Langstrom", "id": 3982, "credit_id": "52fe4e1b9251416c91126a95", "cast_id": 5, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 6}, {"name": "Jeff Bennett", "character": "Alfred Pennyworth", "id": 34982, "credit_id": "52fe4e1b9251416c91126aa1", "cast_id": 8, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 7}, {"name": "Cameron Bowen", "character": "Robin / Tim Drake", "id": 4736, "credit_id": "52fe4e1b9251416c91126aa5", "cast_id": 9, "profile_path": "/c6Gy2DzAPE3fRW8IwFp9ING3DlM.jpg", "order": 8}], "directors": [{"name": "Ethan Spaulding", "department": "Directing", "job": "Director", "credit_id": "52fe4e1b9251416c91126aaf", "profile_path": null, "id": 529806}], "vote_average": 7.0, "runtime": 74}, "9739": {"poster_path": "/k0PN3Ho12cGGIVJW7SCS7apLYaP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159055768, "overview": "Simon Phoenix, a violent criminal cryogenically frozen in 1996, has escaped during a parole hearing in 2032 in the utopia of San Angeles. Police are incapable of dealing with his violent ways and turn to his captor, John Spartan, who had also been cryogenically frozen when wrongfully accused of killing 30 innocent people while apprehending Phoenix.", "video": false, "id": 9739, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Demolition Man", "tagline": "The 21st Century's most dangerous cop. The 21st Century's most ruthless criminal.", "vote_count": 322, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106697", "adult": false, "backdrop_path": "/fj6nbVd7FVENNLtusyd1U8bcUFu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}], "release_date": "1993-10-06", "popularity": 0.978942381311141, "original_title": "Demolition Man", "budget": 57000000, "cast": [{"name": "Sylvester Stallone", "character": "John Spartan", "id": 16483, "credit_id": "52fe4525c3a36847f80bee55", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Wesley Snipes", "character": "Simon Phoenix", "id": 10814, "credit_id": "52fe4525c3a36847f80bee59", "cast_id": 2, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 1}, {"name": "Sandra Bullock", "character": "Lt. Lenina Huxley", "id": 18277, "credit_id": "52fe4525c3a36847f80bee5d", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 2}, {"name": "Nigel Hawthorne", "character": "Dr. Raymond Cocteau", "id": 15788, "credit_id": "52fe4525c3a36847f80bee61", "cast_id": 4, "profile_path": "/66PJ2LGSowVC1qPR4QIE62PnBd5.jpg", "order": 3}, {"name": "Denis Leary", "character": "Edgar Friendly", "id": 5724, "credit_id": "52fe4525c3a36847f80beebf", "cast_id": 21, "profile_path": "/lnk4HjUeqDlT6Kg9PaQsVIDpl56.jpg", "order": 4}, {"name": "Benjamin Bratt", "character": "Alfredo Garcia", "id": 4589, "credit_id": "52fe4525c3a36847f80beec3", "cast_id": 22, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 5}, {"name": "Bob Gunton", "character": "Chief George Earle", "id": 4029, "credit_id": "52fe4525c3a36847f80beec7", "cast_id": 23, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 6}, {"name": "Bill Cobbs", "character": "Zachary Lamb - Aged", "id": 8854, "credit_id": "52fe4525c3a36847f80beecb", "cast_id": 24, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 7}, {"name": "Brandy Ledford", "character": "Fiber Op Girl (as Brandy Sanders)", "id": 119759, "credit_id": "52fe4525c3a36847f80beecf", "cast_id": 25, "profile_path": "/bYdCmsZZF5W7aHx0aphEFoQ8ALQ.jpg", "order": 8}, {"name": "Jesse Ventura", "character": "CryoCon", "id": 1104, "credit_id": "52fe4525c3a36847f80beed3", "cast_id": 26, "profile_path": "/25AzScRxybPMRxEfv9iB116jj7a.jpg", "order": 9}, {"name": "Rob Schneider", "character": "Erwin (uncredited)", "id": 60949, "credit_id": "52fe4525c3a36847f80beed7", "cast_id": 27, "profile_path": "/vDbjHkAc4OMKObi9W5xW9OuDhDI.jpg", "order": 10}, {"name": "Toshishiro Obata", "character": "CryoCon", "id": 953728, "credit_id": "52fe4525c3a36847f80beedb", "cast_id": 28, "profile_path": "/fgHL5HDrxD4zelKQrzQdARy0WSL.jpg", "order": 11}], "directors": [{"name": "Marco Brambilla", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80bee67", "profile_path": "/uFzVGRzub6RxyN5SjIPUZOnWVtW.jpg", "id": 58838}], "vote_average": 6.2, "runtime": 115}, "284293": {"poster_path": "/9pCG7OFUVDAUVwONZRgmTw24Ezj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.", "video": false, "id": 284293, "genres": [{"id": 18, "name": "Drama"}], "title": "Still Alice", "tagline": "", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3316960", "adult": false, "backdrop_path": "/l2dMBfhJ8QadJ2dmoU6nBpeIqg2.jpg", "production_companies": [{"name": "Killer Films", "id": 1422}, {"name": "BSM Studio", "id": 28361}, {"name": "Backup Media", "id": 26590}, {"name": "Big Indie Pictures", "id": 6831}], "release_date": "2014-12-05", "popularity": 3.65165606327692, "original_title": "Still Alice", "budget": 5000000, "cast": [{"name": "Julianne Moore", "character": "Dr. Alice Howland", "id": 1231, "credit_id": "53d7f9b40e0a26034000260f", "cast_id": 1, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Dr. John Howland", "id": 7447, "credit_id": "53d7f9e30e0a2603340025ce", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Kristen Stewart", "character": "Lydia Howland", "id": 37917, "credit_id": "53d7f9a70e0a2603440024dc", "cast_id": 0, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 2}, {"name": "Kate Bosworth", "character": "Anna", "id": 7517, "credit_id": "53d7f9c30e0a260347002573", "cast_id": 2, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 3}, {"name": "Hunter Parrish", "character": "Tom Howland", "id": 35236, "credit_id": "53d7f9d50e0a2603310025ec", "cast_id": 3, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 4}, {"name": "Victoria Cartagena", "character": "Prof. Hooper", "id": 118388, "credit_id": "547a3517925141298d002eab", "cast_id": 17, "profile_path": "/uJ84HU2eEF4skZJ5e4eq9NSJDO1.jpg", "order": 5}, {"name": "Erin Darke", "character": "Jenny", "id": 1285592, "credit_id": "547a3522c3a3685c48003030", "cast_id": 18, "profile_path": "/s01fpaZ27cwxxnXV2XIfgShXslL.jpg", "order": 6}, {"name": "Shane McRae", "character": "Charlie", "id": 83222, "credit_id": "547a352ec3a36848e300096a", "cast_id": 19, "profile_path": "/27WYwLZHb0wFVSOBEWPl1YxlhTn.jpg", "order": 7}, {"name": "Stephen Kunken", "character": "Dr. Benjamin", "id": 79991, "credit_id": "547a3544925141297e00310f", "cast_id": 20, "profile_path": "/a0phhoaFskKNICOLjniYpIO9072.jpg", "order": 8}, {"name": "Eha Urbsalu", "character": "Alice Howland's Mother", "id": 1391351, "credit_id": "547a3550c3a3685c42002c9e", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Cat Lynch", "character": "Pinkberry Worker", "id": 1391352, "credit_id": "547a3561925141297e003114", "cast_id": 22, "profile_path": null, "order": 10}], "directors": [{"name": "Richard Glatzer", "department": "Directing", "job": "Director", "credit_id": "53d7fa010e0a2603440024ef", "profile_path": null, "id": 82335}, {"name": "Wash Westmoreland", "department": "Directing", "job": "Director", "credit_id": "53d7fa1f0e0a26033a0024c9", "profile_path": null, "id": 82337}], "vote_average": 7.5, "runtime": 99}, "284296": {"poster_path": "/chmkg6j7vRmw4sFRGj2xl95btBk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A comedian tries to make it as a serious actor when his reality-TV star fianc\u00e9 talks him into broadcasting their wedding on her TV show.", "video": false, "id": 284296, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Top Five", "tagline": "", "vote_count": 53, "homepage": "http://www.topfivemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2784678", "adult": false, "backdrop_path": "/bN5StoTeTmI3zJ6qPs2fHMzXFFz.jpg", "production_companies": [{"name": "Jax Media", "id": 24021}, {"name": "IAC Film", "id": 10351}], "release_date": "2014-12-12", "popularity": 2.23229128730609, "original_title": "Top Five", "budget": 0, "cast": [{"name": "Chris Rock", "character": "Andre", "id": 2632, "credit_id": "53d7fceb0e0a2603470025c3", "cast_id": 0, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 0}, {"name": "Rosario Dawson", "character": "Chelsea Brown", "id": 5916, "credit_id": "53d7fcfc0e0a2603470025c9", "cast_id": 1, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 1}, {"name": "J. B. Smoove", "character": "Silk", "id": 65920, "credit_id": "546426f7c3a36804c5000a8a", "cast_id": 13, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 2}, {"name": "Gabrielle Union", "character": "Erica Long", "id": 17773, "credit_id": "53d7fd150e0a26034000267d", "cast_id": 3, "profile_path": "/1UeaAGWmzmTPCZ9mYQVA27yTMPJ.jpg", "order": 3}, {"name": "Romany Malco", "character": "Benny", "id": 71530, "credit_id": "546426e20e0a26294f000abe", "cast_id": 10, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 4}, {"name": "Hayley Marie Norman", "character": "Tammy", "id": 66623, "credit_id": "546426d8c3a36804a7000ac5", "cast_id": 9, "profile_path": "/gXUwyT5CG6wfwI2gV6X193AaGOk.jpg", "order": 5}, {"name": "Anders Holm", "character": "Brad", "id": 521563, "credit_id": "5494f51cc3a3686ae9002f8e", "cast_id": 25, "profile_path": "/gIZLXRBwYCgTMXr0CoTnHfLKXH9.jpg", "order": 6}, {"name": "Cedric the Entertainer", "character": "Jazzy Dee", "id": 5726, "credit_id": "546426efc3a36804ac000a71", "cast_id": 12, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 7}, {"name": "Kevin Hart", "character": "Charles", "id": 55638, "credit_id": "53d7fd200e0a260337002574", "cast_id": 4, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 8}, {"name": "Adam Sandler", "character": "Adam Sandler", "id": 19292, "credit_id": "546426a50e0a262938000a87", "cast_id": 6, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 9}, {"name": "Whoopi Goldberg", "character": "Herself", "id": 2395, "credit_id": "546426b8c3a36804b0000a89", "cast_id": 7, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 10}, {"name": "Jerry Seinfeld", "character": "Himself", "id": 16377, "credit_id": "546426ce0e0a26293b000ad3", "cast_id": 8, "profile_path": "/cAsXoVf0UmotNUjMggHMnmAj8w.jpg", "order": 11}, {"name": "Tracy Morgan", "character": "Fred", "id": 56903, "credit_id": "546426e80e0a26294f000ac0", "cast_id": 11, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 12}, {"name": "Sherri Shepherd", "character": "Vanessa", "id": 109561, "credit_id": "546426ffc3a36804be000a91", "cast_id": 14, "profile_path": "/hQyyGPUHmbp5A4f9vI7z0dQGpuY.jpg", "order": 13}, {"name": "Leslie Jones", "character": "Lisa", "id": 168452, "credit_id": "5464270ec3a36804b0000a96", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Ben Vereen", "character": "Carl Allen", "id": 26664, "credit_id": "54642722c3a36804ac000a77", "cast_id": 16, "profile_path": "/hE2UTj9gQPdBgQ8E8Qn8uzoTS8a.jpg", "order": 15}, {"name": "Tom Papa", "character": "Drunk businessman", "id": 170364, "credit_id": "5464274dc3a36804be000a9a", "cast_id": 17, "profile_path": "/aWhxq4lUIY8iLVUqYPLhTi7Di4c.jpg", "order": 16}, {"name": "Brian Regan", "character": "Engineer", "id": 83995, "credit_id": "5494f50fc3a3686ae1003035", "cast_id": 24, "profile_path": "/xNYoKjkKhpTEdIAOoS79aSg47dz.jpg", "order": 17}, {"name": "DMX", "character": "Himself", "id": 21355, "credit_id": "5494f5369251412c4e0017ec", "cast_id": 26, "profile_path": "/eoAfTjFs6SiXGBmdlfasb0J9fHw.jpg", "order": 18}, {"name": "Jay Pharoah", "character": "Mike", "id": 1099717, "credit_id": "5494f55fc3a3686ae9002f92", "cast_id": 28, "profile_path": "/yRD2vypRF0niEdoCCI0pNZENzvm.jpg", "order": 19}, {"name": "Taraji P. Henson", "character": "Herself", "id": 40036, "credit_id": "54ce8800c3a3687f92005c4c", "cast_id": 29, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 20}, {"name": "Gabourey Sidibe", "character": "Herself", "id": 109560, "credit_id": "54ce8809c3a3681c9c003bcb", "cast_id": 30, "profile_path": "/qo4Byo9e4QpWHjrD8YiWt8mySUu.jpg", "order": 21}], "directors": [{"name": "Chris Rock", "department": "Directing", "job": "Director", "credit_id": "53d7fd2c0e0a260340002682", "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "id": 2632}], "vote_average": 6.7, "runtime": 102}, "38543": {"poster_path": "/vgRPlYHiottQpDav3nfw9Q1zAJJ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In the year 1215, the rebel barons of England have forced their despised King John to put his royal seal on the Magna Carta, a seminal document that upheld the rights of free men. Yet within months of pledging himself to the great charter, the King reneged on his word and assembled a mercenary army on the south coast of England with the intention of bringing the barons and the country back under his tyrannical rule. Barring his way stood the mighty Rochester castle, a place that would become the symbol of the rebel's momentous struggle for justice and freedom.", "video": false, "id": 38543, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Ironclad", "tagline": "Heavy metal goes medieval.", "vote_count": 76, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dwkPbDOYCOZ7Wxan1YJ2taVF7zu.jpg", "id": 259085, "name": "Ironclad Collection"}, "original_language": "ru", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt1233301", "adult": false, "backdrop_path": "/hxGSxNREU4xbA1kfiJRvnPPoL29.jpg", "production_companies": [{"name": "Mythic International Entertainment", "id": 5706}, {"name": "ContentFilm", "id": 1420}, {"name": "Rising Star", "id": 1208}, {"name": "Silver Reel", "id": 12075}, {"name": "Wales Creative IP Fund", "id": 11841}, {"name": "Molinare Investment", "id": 19579}, {"name": "Perpetual Media Capital", "id": 13792}], "release_date": "2011-03-03", "popularity": 0.593329922996564, "original_title": "Ironclad", "budget": 25000000, "cast": [{"name": "James Purefoy", "character": "Thomas Marshall", "id": 17648, "credit_id": "52fe46c59251416c9105f201", "cast_id": 5, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 0}, {"name": "Kate Mara", "character": "Lady Isabel", "id": 51072, "credit_id": "52fe46c59251416c9105f1fd", "cast_id": 4, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 1}, {"name": "Jason Flemyng", "character": "Becket", "id": 973, "credit_id": "52fe46c59251416c9105f205", "cast_id": 6, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "King John", "id": 13242, "credit_id": "52fe46c59251416c9105f209", "cast_id": 7, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Brian Cox", "character": "Albany", "id": 1248, "credit_id": "52fe46c59251416c9105f20d", "cast_id": 8, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 4}, {"name": "Derek Jacobi", "character": "Cornhill", "id": 937, "credit_id": "52fe46c59251416c9105f21d", "cast_id": 11, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 5}, {"name": "Charles Dance", "character": "Stephen Langton, Archbishop of Canterbury", "id": 4391, "credit_id": "52fe46c59251416c9105f221", "cast_id": 12, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 6}, {"name": "Aneurin Barnard", "character": "Guy", "id": 145143, "credit_id": "52fe46c59251416c9105f225", "cast_id": 13, "profile_path": "/tYvKJ5N6J5tG6bAzAvUp6j4P9TT.jpg", "order": 7}, {"name": "Jamie Foreman", "character": "Coteral", "id": 3543, "credit_id": "52fe46c59251416c9105f23b", "cast_id": 17, "profile_path": "/mhv1ly0lMRQBTte8LPEsa6BYCv5.jpg", "order": 8}, {"name": "Mackenzie Crook", "character": "Marks", "id": 1711, "credit_id": "52fe46c59251416c9105f23f", "cast_id": 18, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 9}, {"name": "Rhys Parry Jones", "character": "Wulfstan", "id": 1080281, "credit_id": "52fe46c59251416c9105f243", "cast_id": 19, "profile_path": "/aQvPMAwKwI4YysHHvs0AkgM2mxJ.jpg", "order": 10}, {"name": "Vladimir Kulich", "character": "Tiberius", "id": 19898, "credit_id": "52fe46c59251416c9105f247", "cast_id": 20, "profile_path": "/A2g8P9LbEhi34s4I5my4Soo5Y30.jpg", "order": 11}, {"name": "David Melville", "character": "Baron Darnay", "id": 1080282, "credit_id": "52fe46c59251416c9105f24b", "cast_id": 21, "profile_path": "/3dXPHz4FuGx5MkaRFX4t1rp1o7S.jpg", "order": 12}], "directors": [{"name": "Jonathan English", "department": "Directing", "job": "Director", "credit_id": "52fe46c59251416c9105f1ed", "profile_path": null, "id": 83730}], "vote_average": 6.4, "runtime": 121}, "210577": {"poster_path": "/gdiLTof3rbPDAmPaCf4g6op46bj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 335193000, "overview": "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.", "video": false, "id": 210577, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Gone Girl", "tagline": "You don't know what you've got 'til it's...", "vote_count": 1506, "homepage": "http://www.gonegirlmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2267998", "adult": false, "backdrop_path": "/bt6DhdALyhf90gReozoQ0y3R3vZ.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2014-10-03", "popularity": 8.90355911199049, "original_title": "Gone Girl", "budget": 61000000, "cast": [{"name": "Ben Affleck", "character": "Nick Dunne", "id": 880, "credit_id": "52fe4d7fc3a368484e1ec763", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Rosamund Pike", "character": "Amy Dunne", "id": 10882, "credit_id": "52fe4d7fc3a368484e1ec767", "cast_id": 8, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 1}, {"name": "Tyler Perry", "character": "Tanner Bolt", "id": 80602, "credit_id": "52fe4d7fc3a368484e1ec76b", "cast_id": 9, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 2}, {"name": "Neil Patrick Harris", "character": "Desi Collins", "id": 41686, "credit_id": "52fe4d7fc3a368484e1ec76f", "cast_id": 10, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 3}, {"name": "Missi Pyle", "character": "Ellen Abbott", "id": 1294, "credit_id": "52fe4d7fc3a368484e1ec773", "cast_id": 11, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 4}, {"name": "Patrick Fugit", "character": "Detective Jim Gilpin", "id": 11663, "credit_id": "52fe4d7fc3a368484e1ec777", "cast_id": 12, "profile_path": "/vndJENwYkWunTNEuRtAskVifOu3.jpg", "order": 5}, {"name": "Kim Dickens", "character": "Detective Rhonda Boney", "id": 21165, "credit_id": "52fe4d7fc3a368484e1ec77b", "cast_id": 13, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 6}, {"name": "Casey Wilson", "character": "Noelle Hawthorne", "id": 83872, "credit_id": "52fe4d7fc3a368484e1ec78b", "cast_id": 16, "profile_path": "/pS81iG4Dt64I8ibh3teGzigi3eu.jpg", "order": 7}, {"name": "Kathleen Rose Perkins", "character": "Shawna Kelly", "id": 149334, "credit_id": "52fe4d7fc3a368484e1ec78f", "cast_id": 17, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 8}, {"name": "Emily Ratajkowski", "character": "Andie Fitzgerald", "id": 1186505, "credit_id": "52fe4d7fc3a368484e1ec793", "cast_id": 18, "profile_path": "/fBymmBzKuF4rphytsRiT0MA7EjM.jpg", "order": 9}, {"name": "Scoot McNairy", "character": "Tommy", "id": 59233, "credit_id": "52fe4d7fc3a368484e1ec797", "cast_id": 19, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 10}, {"name": "Boyd Holbrook", "character": "Jeff", "id": 467645, "credit_id": "52fe4d7fc3a368484e1ec79b", "cast_id": 20, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 11}, {"name": "Lola Kirke", "character": "Greta", "id": 1345418, "credit_id": "53ff85f50e0a2658db0006f1", "cast_id": 26, "profile_path": "/lhYAzJYPHBrzejDZgnRt0yJe0L9.jpg", "order": 12}, {"name": "Carrie Coon", "character": "Margo Dunne", "id": 1308445, "credit_id": "542f5d5d0e0a264f07000b82", "cast_id": 27, "profile_path": "/lOHLdgQe1DXomdLzAIbxL7BF89M.jpg", "order": 13}, {"name": "Sela Ward", "character": "Sharon Schieber", "id": 6068, "credit_id": "54b556b8c3a368094e009afd", "cast_id": 28, "profile_path": "/4N8MGB6oau5UQ0olJpYZi6wgmJZ.jpg", "order": 14}, {"name": "Lee Norris", "character": "Police Officer", "id": 166897, "credit_id": "54b5571cc3a368094000972e", "cast_id": 29, "profile_path": "/sE16s5VE42RuTJvRZA5wuDzTDYB.jpg", "order": 15}, {"name": "David Clennon", "character": "Rand Elliott", "id": 15412, "credit_id": "5502e07fc3a3685b9b004293", "cast_id": 87, "profile_path": "/lt3jaAmhJhScJvXwDmE5JKOsTaf.jpg", "order": 16}, {"name": "Lisa Banes", "character": "Marybeth Elliott", "id": 52878, "credit_id": "5502e0e69251413da80048b6", "cast_id": 88, "profile_path": "/rXBe8lx88ESRIoKLqUMIYWpfoCq.jpg", "order": 17}, {"name": "Jamie McShane", "character": "Donnelly", "id": 79079, "credit_id": "5502e8139251413d9f0047a8", "cast_id": 89, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 18}, {"name": "Leonard Kelly-Young", "character": "Bill Dunne", "id": 1438995, "credit_id": "5502e93cc3a3685b9e0041ca", "cast_id": 90, "profile_path": "/m6FeP3hJl5Dkbou9YYh2TOg3W9p.jpg", "order": 19}, {"name": "Pete Housman", "character": "Walter", "id": 1439007, "credit_id": "5502ebeec3a3685bab004303", "cast_id": 91, "profile_path": null, "order": 20}, {"name": "Lynn A. Freedman", "character": "Kelly Capitono", "id": 549831, "credit_id": "5502eec99251414ea60025ea", "cast_id": 92, "profile_path": "/1p5K0J4SEnGoD9haqk0KqLxL5S1.jpg", "order": 21}, {"name": "Mark Atteberry", "character": "FBI", "id": 1192412, "credit_id": "5502f479c3a3685bab0043ed", "cast_id": 93, "profile_path": "/nFHzunT4sOFOyi0pH2TGjDFTqSg.jpg", "order": 22}, {"name": "Darin Cooper", "character": "Mustached Man", "id": 1235973, "credit_id": "5502f7b5c3a3685b9b004440", "cast_id": 94, "profile_path": "/ewACr0jcusD6d3psRFpVdjAq4La.jpg", "order": 23}, {"name": "Kate Campbell", "character": "Above-It-All Journalist", "id": 1439089, "credit_id": "5502ff1fc3a3687b69003e25", "cast_id": 95, "profile_path": "/pDQwNRcXhquim1MmPf9INU3zjqR.jpg", "order": 24}, {"name": "Brett Leigh", "character": "Nervous Intern", "id": 1439098, "credit_id": "5503018292514174f6000f8f", "cast_id": 96, "profile_path": "/nl4eus0kRy4L1i6uma88zDpS9uZ.jpg", "order": 25}, {"name": "Antonio St. James", "character": "Security Guard", "id": 1439105, "credit_id": "550302bf9251413da8004b2b", "cast_id": 97, "profile_path": "/nzzozryKaKgEe2FYm3iFOUJr5nF.jpg", "order": 26}, {"name": "Lauren Glazier", "character": "Fashionista", "id": 118592, "credit_id": "5503042bc3a3687b69003e92", "cast_id": 98, "profile_path": "/bvpmxumWqD9K5MoNzGtEvavlQXu.jpg", "order": 27}, {"name": "Julia Prud'homme", "character": "Female Officer", "id": 1439112, "credit_id": "5503059f92514174f6000fc8", "cast_id": 99, "profile_path": "/4t39UeNsXOVq5hlcuYAFXin9eCX.jpg", "order": 28}, {"name": "Cooper Thornton", "character": "Doctor", "id": 162828, "credit_id": "550308bdc3a3685b96004b4e", "cast_id": 100, "profile_path": "/A0rZn1YC69t2iRcBmyqbQNeiof2.jpg", "order": 29}, {"name": "Casey Ruggieri", "character": "Earnest Girl", "id": 1439125, "credit_id": "550309d4925141282f003d39", "cast_id": 101, "profile_path": "/cbiC792SXkzeW6fWt4j0FCdUY7h.jpg", "order": 30}, {"name": "Cyd Strittmatter", "character": "Maureen Dunne", "id": 1367129, "credit_id": "55030badc3a3685ba20052e2", "cast_id": 102, "profile_path": "/pTtwAc67FxQzQPE9vQE17Ep9FFt.jpg", "order": 31}, {"name": "Ashley Didion", "character": "Friend 1", "id": 1439141, "credit_id": "55030cc2925141282f003d7f", "cast_id": 103, "profile_path": "/uklcsbamATGDeRInYmmun7Zcuuq.jpg", "order": 32}, {"name": "Lexis Nutt", "character": "Friend 2", "id": 1439150, "credit_id": "55030e4bc3a36826b9002f53", "cast_id": 104, "profile_path": "/wcY6qyOzHyHWNOtR7dQFvdHcrbZ.jpg", "order": 33}, {"name": "L.A. Williams", "character": "Guard", "id": 1439155, "credit_id": "55030f6b9251413d9f004ab4", "cast_id": 105, "profile_path": null, "order": 34}, {"name": "Blake Sheldon", "character": "Tweaker Teen 1", "id": 1439167, "credit_id": "5503103dc3a3685b96004bcf", "cast_id": 106, "profile_path": "/7nLPErsyKII2x2QP9dxRNzJdnPi.jpg", "order": 35}, {"name": "Sean Guse", "character": "Tweaker Teen 2", "id": 1439180, "credit_id": "5503128d9251413d9f004ae6", "cast_id": 107, "profile_path": "/qAnjjbWMexiRUsQFFGF9I5spAU0.jpg", "order": 36}, {"name": "Ricky Wood", "character": "Jason", "id": 1439192, "credit_id": "55031399c3a36826b9002fa9", "cast_id": 108, "profile_path": "/xNo1lBz1tguwv9NV451MGf1UWb3.jpg", "order": 37}, {"name": "Fred Cross", "character": "Airport Traveler", "id": 969294, "credit_id": "550314d29251413da1004405", "cast_id": 109, "profile_path": "/8IVRSHVKBvXTE8JNt20JyKAwZyM.jpg", "order": 38}, {"name": "Scott Takeda", "character": "Producer", "id": 1439204, "credit_id": "550315879251413d9f004b2d", "cast_id": 110, "profile_path": "/boNzT15JQ92aKHkHJkLc4Cwx5p0.jpg", "order": 39}, {"name": "Donna Rusch", "character": "Lauren Nevens", "id": 1439207, "credit_id": "550316dac3a3685ba20053a4", "cast_id": 111, "profile_path": "/wpr3PoPDPuiTfFktzK42lOKJByZ.jpg", "order": 40}, {"name": "Kathy Sweeney-Meadows", "character": "Reporter One", "id": 1439208, "credit_id": "550317799251413d9b0048a1", "cast_id": 112, "profile_path": null, "order": 41}, {"name": "Mark T Anderson", "character": "Reporter", "id": 1439213, "credit_id": "550317c0c3a3685b96004c4e", "cast_id": 113, "profile_path": "/iswbwgE5Gv3uRftrOSypwz6Dyqr.jpg", "order": 42}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4d7fc3a368484e1ec741", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 8.0, "runtime": 145}, "46738": {"poster_path": "/o34nmXtxEZPwCe4VIc4oIWRxwCd.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 7103838, "overview": "A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.", "video": false, "id": 46738, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10752, "name": "War"}], "title": "Incendies", "tagline": "The search began at the opening of their mother's will.", "vote_count": 76, "homepage": "http://www.sonyclassics.com/incendies/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1255953", "adult": false, "backdrop_path": "/b7BxW3C4cjVKOlKzFBoMUgyNt6A.jpg", "production_companies": [{"name": "TS Productions", "id": 313}, {"name": "Micro scope", "id": 7272}, {"name": "Phi Group", "id": 7273}], "release_date": "2010-09-17", "popularity": 0.892261607704937, "original_title": "Incendies", "budget": 6800000, "cast": [{"name": "Lubna Azabal", "character": "Nawal", "id": 77498, "credit_id": "52fe470ac3a36847f812058b", "cast_id": 6, "profile_path": "/lGvB2xP7sotwSslSTovL5nxnzBC.jpg", "order": 0}, {"name": "M\u00e9lissa D\u00e9sormeaux-Poulin", "character": "Jeanne Marwan", "id": 84573, "credit_id": "52fe470ac3a36847f812058f", "cast_id": 7, "profile_path": "/yRBRYSJTOn6DeAnRxHxnNUOGWNn.jpg", "order": 1}, {"name": "Maxim Gaudette", "character": "Simon Marwan", "id": 88592, "credit_id": "52fe470ac3a36847f8120593", "cast_id": 8, "profile_path": "/9gwYhjJ7d3U39kSfNLW33Pky7ci.jpg", "order": 2}, {"name": "R\u00e9my Girard", "character": "le notaire Lebel", "id": 38526, "credit_id": "52fe470ac3a36847f8120597", "cast_id": 9, "profile_path": "/iOluYYBxiLzb5fS5F0Y8Xc5bQVo.jpg", "order": 3}, {"name": "Allen Altman", "character": "Notaire Maddad", "id": 196737, "credit_id": "54e475c2c3a3684897002f7e", "cast_id": 13, "profile_path": "/6giwU33Jo0SNYlKVQaXXVqL4eK8.jpg", "order": 4}, {"name": "Abdelghafour Elaaziz", "character": "Abou Tarek/Nihad", "id": 970213, "credit_id": "55069053c3a3680581002e1a", "cast_id": 14, "profile_path": "/zRPVrpN8zFyre4aXw6jbHyAgLr7.jpg", "order": 5}], "directors": [{"name": "Denis Villeneuve", "department": "Directing", "job": "Director", "credit_id": "52fe470ac3a36847f8120587", "profile_path": "/f3bWCti2AYoAxRnFYIirQyf6A7j.jpg", "id": 137427}], "vote_average": 8.0, "runtime": 130}, "120467": {"poster_path": "/nX5XotM9yprCKarRH4fzOq1VM1J.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted prot\u00e9g\u00e9. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.", "video": false, "id": 120467, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Grand Budapest Hotel", "tagline": "", "vote_count": 1094, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2278388", "adult": false, "backdrop_path": "/3AZX2KB73kSza76h9O4bzdNeIac.jpg", "production_companies": [{"name": "TSG Entertainment", "id": 22213}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Indian Paintbrush", "id": 9350}, {"name": "Studio Babelsberg", "id": 264}, {"name": "American Empirical Pictures", "id": 23449}], "release_date": "2014-03-07", "popularity": 3.30111239493847, "original_title": "The Grand Budapest Hotel", "budget": 0, "cast": [{"name": "Ralph Fiennes", "character": "M. Gustave", "id": 5469, "credit_id": "52fe4a47c3a368484e14a76d", "cast_id": 2, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 0}, {"name": "Tony Revolori", "character": "Zero Moustafa", "id": 1291350, "credit_id": "5319c2e0c3a3685c43002ea6", "cast_id": 30, "profile_path": "/m5WMX7TYk2VhsKkVDFRlBGpvr55.jpg", "order": 1}, {"name": "F. Murray Abraham", "character": "Mr. Moustafa", "id": 1164, "credit_id": "52fe4a47c3a368484e14a79d", "cast_id": 14, "profile_path": "/luHava7pnJLEqGH05bqENXkOsKH.jpg", "order": 2}, {"name": "Mathieu Amalric", "character": "Serge", "id": 8789, "credit_id": "52fe4a47c3a368484e14a7a1", "cast_id": 16, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 3}, {"name": "Adrien Brody", "character": "Dmitri", "id": 3490, "credit_id": "52fe4a47c3a368484e14a789", "cast_id": 9, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 4}, {"name": "Willem Dafoe", "character": "Jopling", "id": 5293, "credit_id": "52fe4a47c3a368484e14a785", "cast_id": 8, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 5}, {"name": "Jeff Goldblum", "character": "Kovacs", "id": 4785, "credit_id": "52fe4a47c3a368484e14a791", "cast_id": 11, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 6}, {"name": "Harvey Keitel", "character": "Ludwig", "id": 1037, "credit_id": "52fe4a47c3a368484e14a795", "cast_id": 12, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 7}, {"name": "Jude Law", "character": "Young Writer", "id": 9642, "credit_id": "52fe4a47c3a368484e14a779", "cast_id": 5, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 8}, {"name": "Bill Murray", "character": "M. Ivan", "id": 1532, "credit_id": "52fe4a47c3a368484e14a775", "cast_id": 4, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 9}, {"name": "Edward Norton", "character": "Henckels", "id": 819, "credit_id": "52fe4a47c3a368484e14a77d", "cast_id": 6, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 10}, {"name": "Saoirse Ronan", "character": "Agatha", "id": 36592, "credit_id": "52fe4a47c3a368484e14a771", "cast_id": 3, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 11}, {"name": "Jason Schwartzman", "character": "M. Jean", "id": 17881, "credit_id": "52fe4a47c3a368484e14a799", "cast_id": 13, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 12}, {"name": "L\u00e9a Seydoux", "character": "Clotilde", "id": 121529, "credit_id": "52fe4a47c3a368484e14a7c1", "cast_id": 23, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 13}, {"name": "Tilda Swinton", "character": "Madame D.", "id": 3063, "credit_id": "52fe4a47c3a368484e14a78d", "cast_id": 10, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 14}, {"name": "Tom Wilkinson", "character": "Author", "id": 207, "credit_id": "52fe4a48c3a368484e14a7e3", "cast_id": 29, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 15}, {"name": "Owen Wilson", "character": "M. Chuck", "id": 887, "credit_id": "52fe4a47c3a368484e14a781", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 16}, {"name": "Florian Lukas", "character": "Pinky", "id": 4795, "credit_id": "52fe4a47c3a368484e14a7a5", "cast_id": 17, "profile_path": "/g3AW6IIUEjmjCLTnS0Q5SfjcsUd.jpg", "order": 17}, {"name": "Bob Balaban", "character": "M. Martin", "id": 12438, "credit_id": "52fe4a47c3a368484e14a7bd", "cast_id": 22, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 18}, {"name": "Fisher Stevens", "character": "M. Robin", "id": 26473, "credit_id": "5319c315c3a3685c31002eb4", "cast_id": 31, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 19}, {"name": "Wallace Wolodarsky", "character": "M. Georges", "id": 486, "credit_id": "5319c325c3a3685c4a00300f", "cast_id": 32, "profile_path": "/dvmEq92L4UwL20uO2BOQ8vnpPBP.jpg", "order": 20}, {"name": "Waris Ahluwalia", "character": "M. Dino", "id": 5301, "credit_id": "5319c330c3a3685c4a003012", "cast_id": 33, "profile_path": "/608mxzVDmbQtWt3IedJyQ72FNg5.jpg", "order": 21}, {"name": "Larry Pine", "character": "Mr. Mosher", "id": 19511, "credit_id": "5375305a0e0a263037000381", "cast_id": 42, "profile_path": "/cVw0dH0MKSu6ckFuqkbQK4rNcRI.jpg", "order": 22}, {"name": "Karl Markovics", "character": "Wolf", "id": 38459, "credit_id": "537530670e0a26303d000386", "cast_id": 43, "profile_path": "/9ryaqvn9VnqHE97stunzmyNEyaG.jpg", "order": 23}, {"name": "Volker Michalowski", "character": "Gunther", "id": 1052284, "credit_id": "537530780e0a263031000398", "cast_id": 44, "profile_path": "/t6zyNaYfALilSOAd0JHhdLmuKqk.jpg", "order": 24}, {"name": "Daniel Steiner", "character": "Anatole", "id": 1064525, "credit_id": "537530920e0a26303100039c", "cast_id": 45, "profile_path": "/o4IfD5CslMvI0WKUYzOHTKBuBCw.jpg", "order": 25}, {"name": "Hendrik von B\u00fcltzingsl\u00f6wen", "character": "Ernst", "id": 56604, "credit_id": "537530a40e0a2630340003b2", "cast_id": 46, "profile_path": "/9EzFEZGguM2Z65KbF0IYcxfOSin.jpg", "order": 26}, {"name": "Lisa Kreuzer", "character": "Grande Dame", "id": 22612, "credit_id": "537530b60e0a263043000391", "cast_id": 47, "profile_path": "/ur06QfGJtQDONbLGeY11JsPNaf3.jpg", "order": 27}, {"name": "Rainer Reiners", "character": "Herr Mendl", "id": 1309014, "credit_id": "537530cf0e0a263043000397", "cast_id": 48, "profile_path": "/uV6zomMFl16asOzfSsivi75xhya.jpg", "order": 28}, {"name": "Sabine Urig", "character": "Laetizia", "id": 145467, "credit_id": "537530e10e0a263043000399", "cast_id": 49, "profile_path": "/lihOuAlrt6AjuGJ50oCrr6KYzjF.jpg", "order": 29}, {"name": "Claudia Jung", "character": "Usherette", "id": 1191623, "credit_id": "537530f50e0a26303d000395", "cast_id": 50, "profile_path": "/cfAceCdPOOTbCYwlUMxipklp9E7.jpg", "order": 30}, {"name": "Matthias Matschke", "character": "Prison Guard", "id": 40565, "credit_id": "537531080e0a26303d000397", "cast_id": 51, "profile_path": "/aFUN3nhSDBAbO49kAzlGE2VEw8x.jpg", "order": 31}, {"name": "Philipp Sonntag", "character": "Monk", "id": 48737, "credit_id": "537531160e0a26304300039e", "cast_id": 52, "profile_path": "/4RzKSkq9F1x34UD9SjVC8xpPpXX.jpg", "order": 32}, {"name": "Hans Martin Stier", "character": "Monk", "id": 2315, "credit_id": "537531280e0a26303a0003b4", "cast_id": 53, "profile_path": "/dt5DPEmk9VF23BSWxE3ZZmpcsGf.jpg", "order": 33}], "directors": [{"name": "Wes Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4a47c3a368484e14a769", "profile_path": "/r6mr3gvbuocMznHXSlXVKDj7mEI.jpg", "id": 5655}], "vote_average": 7.9, "runtime": 99}, "218778": {"poster_path": "/yup7xOCpOSHeUyalUH6mpFuBDpG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.", "video": false, "id": 218778, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Alexander and the Terrible, Horrible, No Good, Very Bad Day", "tagline": "Get ready for the best worst day of your life.", "vote_count": 130, "homepage": "http://movies.disney.com/alexander-and-the-terrible-horrible-no-good-very-bad-day/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1698641", "adult": false, "backdrop_path": "/z5e275a7iDNCQNx0NelsX5LYmDU.jpg", "production_companies": [{"name": "Walt Disney Studios Motion Pictures", "id": 3036}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2014-10-10", "popularity": 1.80890196903454, "original_title": "Alexander and the Terrible, Horrible, No Good, Very Bad Day", "budget": 0, "cast": [{"name": "Bella Thorne", "character": "Celia", "id": 98285, "credit_id": "52fe4e55c3a368484e21afa9", "cast_id": 8, "profile_path": "/8dHvzSKt9Lfz75kMzN2eznQ8ci8.jpg", "order": 0}, {"name": "Steve Carell", "character": "Ben", "id": 4495, "credit_id": "53757fc4c3a3681efb00086a", "cast_id": 20, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Jennifer Garner", "character": "Kelly", "id": 9278, "credit_id": "52fe4e55c3a368484e21afa1", "cast_id": 6, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 2}, {"name": "Dick Van Dyke", "character": "Himself", "id": 61303, "credit_id": "54022952c3a368068c003831", "cast_id": 21, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 3}, {"name": "Jennifer Coolidge", "character": "Ms. Suggs", "id": 38334, "credit_id": "52fe4e55c3a368484e21afa5", "cast_id": 7, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 4}, {"name": "Megan Mullally", "character": "Nina", "id": 52119, "credit_id": "52fe4e55c3a368484e21afad", "cast_id": 9, "profile_path": "/r28VUUM1Yi0HDy8BVxC2qyNq2yc.jpg", "order": 5}, {"name": "Kerris Dorsey", "character": "Emily", "id": 220064, "credit_id": "52fe4e55c3a368484e21afb1", "cast_id": 10, "profile_path": "/v2Sy5s73M7QyGdpbTZSJH1YzYjr.jpg", "order": 6}, {"name": "Donald Glover", "character": "", "id": 119589, "credit_id": "5402295bc3a368437200380b", "cast_id": 22, "profile_path": "/dHQ9gpLg2fGUUHNy5zVQ4zNgcYC.jpg", "order": 7}, {"name": "Burn Gorman", "character": "Mr. Brand", "id": 39659, "credit_id": "52fe4e55c3a368484e21afb5", "cast_id": 11, "profile_path": "/qV6MEseSjTkz1SKw9RoNHaesdRr.jpg", "order": 8}, {"name": "Dylan Minnette", "character": "Anthony", "id": 112476, "credit_id": "52fe4e55c3a368484e21afb9", "cast_id": 12, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 9}, {"name": "Toni Trucks", "character": "Steph", "id": 105831, "credit_id": "52fe4e55c3a368484e21afc1", "cast_id": 14, "profile_path": "/pmXJ5l5udyotzZzeRbhLq62f4wa.jpg", "order": 10}, {"name": "Jesse Garcia", "character": "Dwayne", "id": 66525, "credit_id": "54022968c3a3682d98001ef5", "cast_id": 23, "profile_path": "/9bxoEyjrGODKEyopYWtGgDeCauB.jpg", "order": 11}, {"name": "Mary Mouser", "character": "Audrey Gibson", "id": 1223084, "credit_id": "54022975c3a368060300346e", "cast_id": 24, "profile_path": "/1E081ChzTHOdyb1fEXVqNq2WRhF.jpg", "order": 12}, {"name": "Samantha Logan", "character": "Heather", "id": 1096930, "credit_id": "52fe4e55c3a368484e21afc9", "cast_id": 16, "profile_path": "/2SCGV1RJ3Q5ksJLhgSrpJD0uiUS.jpg", "order": 13}, {"name": "Eric Edelstein", "character": "Mr. Tanucci", "id": 59297, "credit_id": "54022982c3a3682d98001efa", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Reese C. Hartwig", "character": "Elliot", "id": 1203524, "credit_id": "54023bd7c3a3684366003968", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Ed Oxenbould", "character": "Alexander", "id": 1198286, "credit_id": "542aad660e0a261c1500055f", "cast_id": 34, "profile_path": "/eBn6o6ZksPsfmbmMrECE3Ck9zgO.jpg", "order": 16}], "directors": [{"name": "Miguel Arteta", "department": "Directing", "job": "Director", "credit_id": "52fe4e55c3a368484e21af87", "profile_path": "/c1StX0L6loDCLcQODL8Z6CPYF1t.jpg", "id": 61069}], "vote_average": 6.3, "runtime": 81}, "9740": {"poster_path": "/wmuxJ9Kscg0SuGlfg2ARmGgHvOF.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 165092266, "overview": "After having successfully eluded the authorities for years, Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he is discovered leaving a deserving few dead in the process. He returns back to America to once again make contact with now disgraced Agent Clarice Starling who is suffering the wrath of a malicious FBI official/rival as well as the media.", "video": false, "id": 9740, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Hannibal", "tagline": "His genius undeniable. His evil, unspeakable.", "vote_count": 442, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0212985", "adult": false, "backdrop_path": "/oMFi7PwDSSsnZGJohH9qLHVhBiO.jpg", "production_companies": [{"name": "MGM", "id": 5899}, {"name": "Universal Pictures", "id": 33}, {"name": "Dino de Laurentiis Cinematografica", "id": 1216}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2001-02-08", "popularity": 0.398852101055107, "original_title": "Hannibal", "budget": 87000000, "cast": [{"name": "Anthony Hopkins", "character": "Hannibal Lecter", "id": 4173, "credit_id": "52fe4525c3a36847f80bef29", "cast_id": 1, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Julianne Moore", "character": "Clarice Starling", "id": 1231, "credit_id": "52fe4525c3a36847f80bef2d", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Mason Verger", "id": 64, "credit_id": "52fe4525c3a36847f80bef31", "cast_id": 3, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Paul Krendler", "id": 11477, "credit_id": "52fe4525c3a36847f80bef35", "cast_id": 4, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "David Andrews", "character": "FBI Agent Pearsall", "id": 7219, "credit_id": "52fe4525c3a36847f80bef75", "cast_id": 16, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 4}, {"name": "Frankie Faison", "character": "Barney Matthews", "id": 13936, "credit_id": "52fe4525c3a36847f80bef7f", "cast_id": 18, "profile_path": "/hQ3eh75xtCdxEZCeGaw1q67w593.jpg", "order": 5}, {"name": "Giancarlo Giannini", "character": "Insp. Renaldo Pazzi", "id": 3753, "credit_id": "52fe4525c3a36847f80bef83", "cast_id": 19, "profile_path": "/mQhczMQRP26B4LBsKA7ZUnzxMFN.jpg", "order": 6}, {"name": "Francesca Neri", "character": "Allegra Pazzi", "id": 3809, "credit_id": "52fe4525c3a36847f80bef87", "cast_id": 20, "profile_path": "/A6vL0QH8TjxjLBLAZW47XGBLNE8.jpg", "order": 7}, {"name": "\u017deljko Ivanek", "character": "Dr. Cordell Doemling", "id": 6752, "credit_id": "52fe4525c3a36847f80bef8b", "cast_id": 21, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 8}, {"name": "Hazelle Goodman", "character": "Evelda Drumgo", "id": 91756, "credit_id": "52fe4525c3a36847f80bef8f", "cast_id": 22, "profile_path": "/kTa2cn8cuJdxKJBqFnYHibIknI9.jpg", "order": 9}, {"name": "Francis Guinan", "character": "FBI Asst. Director Noonan", "id": 162754, "credit_id": "52fe4525c3a36847f80bef93", "cast_id": 23, "profile_path": "/aInGPcXUo7GOefwXSJyN7MtELW9.jpg", "order": 10}, {"name": "James Opher", "character": "DEA Agent John Eldridge", "id": 953778, "credit_id": "52fe4525c3a36847f80bef97", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Enrico Lo Verso", "character": "Gnocco", "id": 27392, "credit_id": "52fe4525c3a36847f80bef9b", "cast_id": 25, "profile_path": "/iXKr7JZ163MxgqNVQlqllSFBFpL.jpg", "order": 12}, {"name": "Ivano Marescotti", "character": "Carlo", "id": 15918, "credit_id": "52fe4525c3a36847f80bef9f", "cast_id": 26, "profile_path": "/iPO3IGgwBgroaYnKhp7v7O4PTLo.jpg", "order": 13}, {"name": "Fabrizio Gifuni", "character": "Matteo", "id": 35106, "credit_id": "52fe4525c3a36847f80befa3", "cast_id": 27, "profile_path": "/3Ns39WsR02vGg65prDvqcmyFNRE.jpg", "order": 14}, {"name": "Giannina Facio", "character": "Verger's Fingerprint Technician", "id": 58787, "credit_id": "52fe4525c3a36847f80befa7", "cast_id": 28, "profile_path": "/1S5raNCzDtTLERUftxr4Zgg80Bv.jpg", "order": 15}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80bef3b", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 6.2, "runtime": 131}, "13989": {"poster_path": "/vvNVGdJV75Xfmyx7CSVxEhZW9Xy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 0, "overview": "Former federal agent Jack Bauer confronts African dictator Benjamin Juma, whose forces have been ordered to capture the children Bauer oversees for malicious military training.", "video": false, "id": 13989, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "24: Redemption", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0813980", "adult": false, "backdrop_path": "/aFSR0AmG57ku2MLW3chUr5TwfTg.jpg", "production_companies": [{"name": "Imagine Television", "id": 2850}, {"name": "Teakwood Lane Productions", "id": 10850}, {"name": "Real Time Productions", "id": 10851}], "release_date": "2008-11-23", "popularity": 0.537397044374361, "original_title": "24: Redemption", "budget": 0, "cast": [{"name": "Kiefer Sutherland", "character": "Jack Bauer", "id": 2628, "credit_id": "52fe45bf9251416c75061253", "cast_id": 2, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 0}, {"name": "Cherry Jones", "character": "President Elect Allison Taylor", "id": 1956, "credit_id": "52fe45bf9251416c75061263", "cast_id": 5, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Ethan Kanin", "id": 4029, "credit_id": "52fe45bf9251416c75061267", "cast_id": 6, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "Colm Feore", "character": "Henry Taylor", "id": 10132, "credit_id": "52fe45bf9251416c7506126b", "cast_id": 7, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 3}, {"name": "Jon Voight", "character": "Jonas Hodges", "id": 10127, "credit_id": "5450a0340e0a2601d80039aa", "cast_id": 8, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 4}], "directors": [{"name": "Jon Cassar", "department": "Directing", "job": "Director", "credit_id": "52fe45bf9251416c7506124f", "profile_path": "/oTRxoPrHd08tC5gDrWBolMeomM.jpg", "id": 25873}], "vote_average": 7.0, "runtime": 102}, "49730": {"poster_path": "/tH8FpMbtePqGqeZ10cnXEkHKIMB.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89162162, "overview": "Valerie is in love with a brooding outsider, Peter, but her parents have arranged for her to marry the wealthy Henry. Unwilling to lose each other, Valerie and Peter plan to run away together when they learn that Valerie's older sister has been killed by a werewolf that prowls the dark forest surrounding their village. Hungry for revenge, the people call on famed werewolf hunter, Father Solomon, to help them kill the wolf. But Solomon's arrival brings unintended consequences as he warns that the wolf, who takes human form by day, could be any one of them.", "video": false, "id": 49730, "genres": [{"id": 53, "name": "Thriller"}], "title": "Red Riding Hood", "tagline": "Who's afraid?", "vote_count": 226, "homepage": "http://www.redridinghoodmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1486185", "adult": false, "backdrop_path": "/1hPMsHO2KMBCtVLevPdXtN1ohrA.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Appian Way", "id": 562}, {"name": "Random Films", "id": 7262}], "release_date": "2011-03-11", "popularity": 1.31153973716331, "original_title": "Red Riding Hood", "budget": 42000000, "cast": [{"name": "Amanda Seyfried", "character": "Valerie", "id": 71070, "credit_id": "52fe47a3c3a36847f81408c3", "cast_id": 1, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Father Soloman", "id": 64, "credit_id": "52fe47a3c3a36847f81408c7", "cast_id": 2, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Billy Burke", "character": "Cesaire", "id": 21029, "credit_id": "52fe47a3c3a36847f81408d3", "cast_id": 5, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 2}, {"name": "Shiloh Fernandez", "character": "Peter", "id": 79795, "credit_id": "52fe47a3c3a36847f81408e3", "cast_id": 8, "profile_path": "/fIgfnIVyJYmBMG9RjsK50TyUNcO.jpg", "order": 3}, {"name": "Max Irons", "character": "Henry", "id": 232396, "credit_id": "52fe47a3c3a36847f81408e7", "cast_id": 9, "profile_path": "/mFKJvG49Gr1Fb0HgsTDg4YSZzJc.jpg", "order": 4}, {"name": "Julie Christie", "character": "Grandmother", "id": 1666, "credit_id": "52fe47a4c3a36847f81408eb", "cast_id": 10, "profile_path": "/73SExI7sunDfkSQmHQhUMryUSR2.jpg", "order": 5}, {"name": "Lukas Haas", "character": "Father August", "id": 526, "credit_id": "52fe47a3c3a36847f81408cb", "cast_id": 3, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 6}, {"name": "Virginia Madsen", "character": "Suzette", "id": 12519, "credit_id": "52fe47a3c3a36847f81408cf", "cast_id": 4, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 7}, {"name": "Shauna Kain", "character": "Roxanne", "id": 941988, "credit_id": "5301dc50c3a3680a19262a96", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Michael Hogan", "character": "The Reeve", "id": 164114, "credit_id": "5301dcc3c3a3680a09249447", "cast_id": 18, "profile_path": "/c14qQjStwZEs7caQCArYNbdOK2i.jpg", "order": 9}, {"name": "Adrian Holmes", "character": "Captain", "id": 33348, "credit_id": "5301dd00925141219e24bd59", "cast_id": 19, "profile_path": "/jGvsYbrvsok5QAYEJ9V8VHvDy9I.jpg", "order": 10}, {"name": "Cole Heppell", "character": "Claude", "id": 11830, "credit_id": "5301dd11925141219228cde4", "cast_id": 20, "profile_path": "/eaYBjHbpZ16j16pLhXBDnAgNVJq.jpg", "order": 11}, {"name": "Christine Willes", "character": "Madame Lazar", "id": 189719, "credit_id": "5301dd23925141219228d0c2", "cast_id": 21, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 12}, {"name": "Michael Shanks", "character": "Adrien Lazar", "id": 26086, "credit_id": "5301dd35925141218c2661d5", "cast_id": 22, "profile_path": "/68CBHM3SELxDh9SBgts7tSaqg7Z.jpg", "order": 13}, {"name": "Kacey Rohl", "character": "Prudence", "id": 1038625, "credit_id": "5301dd44925141219228d18c", "cast_id": 23, "profile_path": "/ic3DvvbrfxzJ3uKxYDBpER0sbxy.jpg", "order": 14}], "directors": [{"name": "Catherine Hardwicke", "department": "Directing", "job": "Director", "credit_id": "52fe47a3c3a36847f81408d9", "profile_path": "/yUOoXg1couvQvZftVvONhcQIEhd.jpg", "id": 19850}], "vote_average": 5.6, "runtime": 100}, "38575": {"poster_path": "/l13emtM0cz0HyJeWSxb6ml5RvzT.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 357852395, "overview": "12-year-old Dre Parker could have been the most popular kid in Detroit, but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse, Dre's feelings make him an enemy of the class bully, Cheng. With no friends in a strange land, Dre has nowhere to turn but maintenance man Mr. Han, who is a kung fu master. As Han teaches Dre that kung fu is not about punches and parries, but maturity and calm, Dre realizes that facing down the bullies will be the fight of his life.", "video": false, "id": 38575, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10751, "name": "Family"}], "title": "The Karate Kid", "tagline": "A Challenge He Never Imagined. A Teacher He Never Expected.", "vote_count": 507, "homepage": "http://www.karatekid-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1155076", "adult": false, "backdrop_path": "/rfhnEYubWD4hnUUm8xXmotpqffb.jpg", "production_companies": [{"name": "Jerry Weintraub Productions", "id": 2596}, {"name": "Columbia Pictures", "id": 5}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "China Film Group", "id": 5635}], "release_date": "2010-06-10", "popularity": 0.897299119954321, "original_title": "The Karate Kid", "budget": 40000000, "cast": [{"name": "Jaden Smith", "character": "Dre Parker", "id": 120724, "credit_id": "52fe46c79251416c9105f621", "cast_id": 1, "profile_path": "/tBbdquEBuIPqLcJxmfWOMaMqy6K.jpg", "order": 0}, {"name": "Jackie Chan", "character": "Mr. Han", "id": 18897, "credit_id": "52fe46c79251416c9105f625", "cast_id": 2, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 1}, {"name": "Taraji P. Henson", "character": "Sherry Parker", "id": 40036, "credit_id": "52fe46c79251416c9105f629", "cast_id": 3, "profile_path": "/ylWJRomOZKjg7ZxnB6TfL9bGaXe.jpg", "order": 2}, {"name": "Yu Rong-Guang", "character": "Master Li", "id": 120725, "credit_id": "52fe46c79251416c9105f62d", "cast_id": 4, "profile_path": "/9LxWXXXJM8R0O9LGnec3ajURVfa.jpg", "order": 3}, {"name": "Tess Liu", "character": "History Teacher", "id": 120726, "credit_id": "52fe46c79251416c9105f631", "cast_id": 5, "profile_path": "/7VA2ZJSIuVthaFOPM607YNm9lx3.jpg", "order": 4}, {"name": "Xu Ming", "character": "Bao", "id": 120727, "credit_id": "52fe46c79251416c9105f635", "cast_id": 6, "profile_path": "/etOSqd7M9I5BJZw9RU4JUSm2iV0.jpg", "order": 5}, {"name": "Ji Wang", "character": "", "id": 1050418, "credit_id": "5330e7e5c3a3686aa50006a2", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Wenwen Han", "character": "Meiying", "id": 1443364, "credit_id": "550da4ebc3a36848860061dd", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Rongguang Yu", "character": "Master Li", "id": 1443370, "credit_id": "550da51a92514133c3003db0", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Zhensu Wu", "character": "Meiying's Dad", "id": 1443373, "credit_id": "550da53f9251413554003b15", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Zhiheng Wang", "character": "Meiying's Mom", "id": 1443374, "credit_id": "550da55192514146a0005cb4", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Zhenwei Wang", "character": "Cheng", "id": 1443375, "credit_id": "550da57fc3a36848860061ec", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Jared Minns", "character": "Dre's Detroit Friend", "id": 1443376, "credit_id": "550da5b49251414695005fd7", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Shijia L\u00fc", "character": "Liang", "id": 1443377, "credit_id": "550da5c49251413554003b29", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Yi Zhao", "character": "Zhuang", "id": 1102674, "credit_id": "550da5d692514133c3003dca", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Bo Zhang", "character": "Song", "id": 1443378, "credit_id": "550da5e99251414695005fe4", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Luke Carberry", "character": "Harry", "id": 1443379, "credit_id": "550da5fa92514146a0005cc7", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Cameron Hillman", "character": "Mark", "id": 1443380, "credit_id": "550da60cc3a368487d006325", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Ghye Samuel Brown", "character": "Oz", "id": 1443381, "credit_id": "550da61bc3a3684883006089", "cast_id": 24, "profile_path": null, "order": 19}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe46c79251416c9105f63b", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 6.0, "runtime": 140}, "14001": {"poster_path": "/gRe2XJPOSFH9ZJe5oOsrtnX0eeB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22217407, "overview": "Jamie returns to his hometown in search of answers to his wife's murder, which occurred after receiving a weird package containing a ventriloquist dummy named Billy, which may be linked to the legend of ventriloquist Mary Shaw. Destined to find out the truth, Jamie goes to the town of Raven's Fair, where Shaw used to perform and is buried. But Jamie is in for more than he expected.", "video": false, "id": 14001, "genres": [{"id": 27, "name": "Horror"}], "title": "Dead Silence", "tagline": "You scream. You die.", "vote_count": 106, "homepage": "http://www.deadsilencemovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455760", "adult": false, "backdrop_path": "/zrrPpisTkQG4fzIXiuTJh6ZCjJD.jpg", "production_companies": [{"name": "Evolution Entertainment", "id": 23019}, {"name": "Universal Pictures", "id": 33}, {"name": "Twisted Pictures", "id": 2061}], "release_date": "2007-03-16", "popularity": 1.30533513592197, "original_title": "Dead Silence", "budget": 20000000, "cast": [{"name": "Ryan Kwanten", "character": "Jamie Ashen", "id": 133212, "credit_id": "52fe45c19251416c750615f3", "cast_id": 3, "profile_path": "/gbAhDfCKKUtGJhQJIukkiZGgQBW.jpg", "order": 0}, {"name": "Donnie Wahlberg", "character": "Jim Lipton", "id": 2680, "credit_id": "52fe45c19251416c750615f7", "cast_id": 4, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 1}, {"name": "Bob Gunton", "character": "Edward Ashen", "id": 4029, "credit_id": "52fe45c19251416c750615fb", "cast_id": 5, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 2}, {"name": "Amber Valletta", "character": "Ella", "id": 38425, "credit_id": "52fe45c19251416c750615ff", "cast_id": 6, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Laura Regan", "character": "Lisa Ashen", "id": 73836, "credit_id": "52fe45c19251416c75061603", "cast_id": 7, "profile_path": "/v6rn1OlsveWTOOjWyycxmQYQeVt.jpg", "order": 4}, {"name": "Steve Adams", "character": "Police officer", "id": 66934, "credit_id": "52fe45c19251416c75061607", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Michael Fairman", "character": "Henry", "id": 84707, "credit_id": "52fe45c19251416c7506160b", "cast_id": 9, "profile_path": "/7xdaQL4hxatCFWXottzdFsUKGJU.jpg", "order": 6}, {"name": "Keir Gilchrist", "character": "Henry (young)", "id": 132712, "credit_id": "52fe45c19251416c7506160f", "cast_id": 10, "profile_path": "/3qD75fzIrNvTAgYQCVczZ0SBsxI.jpg", "order": 7}, {"name": "Judith Roberts", "character": "Mary Shaw", "id": 14797, "credit_id": "52fe45c19251416c75061613", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Joan Heney", "character": "Marion Walker", "id": 59199, "credit_id": "52fe45c19251416c75061617", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "5387759cc3a3681aed0033e4", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.3, "runtime": 89}, "2334": {"poster_path": "/fftXYsaMhS1EbP0IZGr2gGysYeS.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A gang of thieves calling themselves the Santa Claus Gang are wreaking havoc, and the police can't keep up. Police Captain Gilbert is distracted by a Chinese reporter writing a story on his squad, and taxi driver Daniel is in the midst of a relationship crisis. After a string of mistakes in which the thieves outsmart the police time and time again, Daniel and his super-taxi pitch in.", "video": false, "id": 2334, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Taxi 3", "tagline": "", "vote_count": 80, "homepage": "", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0295721", "adult": false, "backdrop_path": "/j2JjcTi5jW0ZVKJ1K6dYOhROHzH.jpg", "production_companies": [{"name": "Europa Corp", "id": 1075}], "release_date": "2003-01-29", "popularity": 0.571901174769621, "original_title": "Taxi 3", "budget": 20817650, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804a98d", "cast_id": 1, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804a991", "cast_id": 2, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Lilly Bertineau", "id": 8293, "credit_id": "52fe434fc3a36847f804a995", "cast_id": 3, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804a999", "cast_id": 4, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 3}, {"name": "Bernard Farcy", "character": "Commissaire Gibert", "id": 23984, "credit_id": "52fe434fc3a36847f804a9c7", "cast_id": 12, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 4}, {"name": "Bai Ling", "character": "Qui", "id": 39126, "credit_id": "52fe434fc3a36847f804a9cb", "cast_id": 13, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 5}, {"name": "\u00c9douard Montoute", "character": "Alain", "id": 5441, "credit_id": "530e567ec3a3685c20002dc0", "cast_id": 14, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 6}, {"name": "Jean-Christophe Bouvet", "character": "G\u00e9n\u00e9ral Edmond Bertineau", "id": 19776, "credit_id": "530e568fc3a3685c20002dc2", "cast_id": 15, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 7}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a9ab", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 5.5, "runtime": 82}, "2335": {"poster_path": "/2LAR3nFYjozHQiFJYKRjT4OAeK7.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Before being extradited to Africa to stand trial, a notorious Belgian criminal is entrusted to the Marseilles police department for less than 24 hours. But the wily crook convinces bumbling policeman Emilien he's a lowly Belgian embassy employee who got railroaded by the brilliant master criminal.", "video": false, "id": 2335, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Taxi 4", "tagline": "", "vote_count": 73, "homepage": "http://www.taxi4-lefilm.com/", "belongs_to_collection": {"backdrop_path": "/74R8bq4RDuxK3F0VPGlse4YH3Ab.jpg", "poster_path": "/nCzy28TbMJDJLxuaPgQZrLgmuT7.jpg", "id": 211721, "name": "Taxi Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0804540", "adult": false, "backdrop_path": "/9AGdVqkrf5NRQ8pV7VQqyQJsjWf.jpg", "production_companies": [{"name": "Apipoula\u00ef", "id": 1076}], "release_date": "2007-02-14", "popularity": 0.673026072838481, "original_title": "Taxi 4", "budget": 0, "cast": [{"name": "Samy Naceri", "character": "Daniel Morales", "id": 20666, "credit_id": "52fe434fc3a36847f804aa09", "cast_id": 6, "profile_path": "/mQoZ0Z66qeQllehULpdw2wTTzxd.jpg", "order": 0}, {"name": "Fr\u00e9d\u00e9ric Diefenthal", "character": "\u00c9milien Coutant-Kerbalec", "id": 23943, "credit_id": "52fe434fc3a36847f804aa0d", "cast_id": 7, "profile_path": "/klYXzEuucpO4D8X4gfsRg2eeY8h.jpg", "order": 1}, {"name": "Emma Wiklund", "character": "Petra", "id": 23944, "credit_id": "52fe434fc3a36847f804aa11", "cast_id": 8, "profile_path": "/36j2pZvY4MnCWYpI8MTYYmdisC6.jpg", "order": 2}, {"name": "\u00c9douard Montoute", "character": "Alain", "id": 5441, "credit_id": "52fe434fc3a36847f804aa15", "cast_id": 9, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 3}, {"name": "Jean-Christophe Bouvet", "character": "G\u00e9n\u00e9ral Edmond Bertineau", "id": 19776, "credit_id": "52fe434fc3a36847f804aa19", "cast_id": 10, "profile_path": "/z0QvNiJ2RDtOqOmxSgYm4cEC0jc.jpg", "order": 4}, {"name": "Jean-Luc Couchard", "character": "Le Belge", "id": 24040, "credit_id": "52fe434fc3a36847f804aa1d", "cast_id": 11, "profile_path": null, "order": 5}, {"name": "Fran\u00e7ois Damiens", "character": "Serge", "id": 24041, "credit_id": "52fe434fc3a36847f804aa21", "cast_id": 12, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 6}, {"name": "Mourade Zeguendi", "character": "Sukk", "id": 24042, "credit_id": "52fe434fc3a36847f804aa25", "cast_id": 13, "profile_path": "/biinZ4XKNIIEPJFdUgAnSTX7TR9.jpg", "order": 7}], "directors": [{"name": "G\u00e9rard Krawczyk", "department": "Directing", "job": "Director", "credit_id": "52fe434fc3a36847f804a9ed", "profile_path": "/kU4UlASZQDRuGvYgIRkcamXgZ0e.jpg", "id": 21647}], "vote_average": 5.5, "runtime": 91}, "79548": {"poster_path": "/2B4l3iPw6gZZVD3xNXnVrDisWiT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When her sister disappears, Jill is convinced the serial killer who kidnapped her two years ago has returned, and she sets out to once again face her abductor.", "video": false, "id": 79548, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Gone", "tagline": "No one believes her. Nothing will stop her.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1838544", "adult": false, "backdrop_path": "/h7irq9vkqYy8W3PHx2pAr26sXoj.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2012-02-24", "popularity": 0.556270716012457, "original_title": "Gone", "budget": 0, "cast": [{"name": "Amanda Seyfried", "character": "Jill", "id": 71070, "credit_id": "52fe49d8c3a368484e143069", "cast_id": 3, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Jennifer Carpenter", "character": "Sharon Ames", "id": 53828, "credit_id": "52fe49d8c3a368484e14306d", "cast_id": 4, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 1}, {"name": "Daniel Sunjata", "character": "Powers", "id": 10582, "credit_id": "52fe49d8c3a368484e143071", "cast_id": 5, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 2}, {"name": "Emily Wickersham", "character": "Molly", "id": 204679, "credit_id": "52fe49d8c3a368484e143093", "cast_id": 12, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 3}, {"name": "Sebastian Stan", "character": "Billy", "id": 60898, "credit_id": "52fe49d8c3a368484e143097", "cast_id": 13, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 4}, {"name": "Wes Bentley", "character": "Peter Hood", "id": 8210, "credit_id": "52fe49d8c3a368484e14309b", "cast_id": 14, "profile_path": "/zQMEswmsafMRXjydPAKQRfvS9YT.jpg", "order": 5}, {"name": "Socratis Otto", "character": "Jim", "id": 75174, "credit_id": "52fe49d8c3a368484e14309f", "cast_id": 15, "profile_path": "/fPkCBzEfOAnpnk4iFtiyxBeOaUI.jpg", "order": 6}, {"name": "Katherine Moennig", "character": "Erica Lonsdale", "id": 122231, "credit_id": "52fe49d8c3a368484e1430a3", "cast_id": 16, "profile_path": "/rAXQOstsWgKqlVjYjeRx1R3AP7c.jpg", "order": 7}], "directors": [{"name": "Heitor Dhalia", "department": "Directing", "job": "Director", "credit_id": "52fe49d8c3a368484e14305f", "profile_path": null, "id": 111094}], "vote_average": 5.6, "runtime": 94}, "5825": {"poster_path": "/uh2sQFjRXCwexWcBtV7OEnL1c5G.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71320000, "overview": "It's Christmas time and the Griswolds are preparing for a family seasonal celebration, but things never run smoothly for Clark, his wife Ellen and their two kids. Clark's continual bad luck is worsened by his obnoxious family guests, but he manages to keep going knowing that his Christmas bonus is due soon.", "video": false, "id": 5825, "genres": [{"id": 35, "name": "Comedy"}], "title": "National Lampoon's Christmas Vacation", "tagline": "Yule crack up.", "vote_count": 242, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gwKsTIUgBRtTd4M2m5EKuTQrYaf.jpg", "poster_path": "/66PJIC2ahIZOCg7AkQFszllroCm.jpg", "id": 108693, "name": "National Lampoon's Vacation Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0097958", "adult": false, "backdrop_path": "/o5yflApN9GuOkmnv6O9l4z83U5F.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1989-12-01", "popularity": 0.936143229032352, "original_title": "National Lampoon's Christmas Vacation", "budget": 27000000, "cast": [{"name": "Chevy Chase", "character": "Clark Griswold", "id": 54812, "credit_id": "52fe4424c3a36847f8084af5", "cast_id": 9, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 0}, {"name": "Beverly D'Angelo", "character": "Ellen Griswold", "id": 821, "credit_id": "52fe4424c3a36847f8084af9", "cast_id": 10, "profile_path": "/eBZ4KtczZVaFiUlMfYS9R5NmKAJ.jpg", "order": 1}, {"name": "Juliette Lewis", "character": "Audry Griswold", "id": 3196, "credit_id": "52fe4424c3a36847f8084afd", "cast_id": 11, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 2}, {"name": "Johnny Galecki", "character": "Russel Rusty Griswold", "id": 16478, "credit_id": "52fe4424c3a36847f8084b01", "cast_id": 12, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 3}, {"name": "John Randolph", "character": "Clark Wilhelm Griswold Sr.", "id": 18649, "credit_id": "52fe4424c3a36847f8084b05", "cast_id": 13, "profile_path": "/4mfEMVfzxPuRRcVBtcPyIXF5KoE.jpg", "order": 4}, {"name": "Diane Ladd", "character": "Nora Griswold", "id": 6587, "credit_id": "52fe4424c3a36847f8084b09", "cast_id": 14, "profile_path": "/sjYwUGAFcSsAcK44hnO8UwVtKX3.jpg", "order": 5}, {"name": "E.G. Marshall", "character": "Art Smith", "id": 5249, "credit_id": "52fe4424c3a36847f8084b0d", "cast_id": 15, "profile_path": "/mgOGJP3tBmVWUbGeXJDZpA8GJLd.jpg", "order": 6}, {"name": "Doris Roberts", "character": "Frances Smith", "id": 45863, "credit_id": "52fe4424c3a36847f8084b11", "cast_id": 16, "profile_path": "/4J9jniy4ZEd6NRTfkzq9prKoEIt.jpg", "order": 7}, {"name": "Randy Quaid", "character": "Cousin Eddie", "id": 1811, "credit_id": "52fe4424c3a36847f8084b15", "cast_id": 17, "profile_path": "/7rywy6gbSTG60xQWepRktD0feek.jpg", "order": 8}, {"name": "Miriam Flynn", "character": "Cousin Catherine", "id": 35109, "credit_id": "52fe4424c3a36847f8084b19", "cast_id": 18, "profile_path": "/6VKACA883vyve6uuviO4I6QpluL.jpg", "order": 9}, {"name": "Cody Burger", "character": "Cousin Rocky", "id": 45864, "credit_id": "52fe4424c3a36847f8084b1d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Ellen Hamilton Latzen", "character": "Cousin Ruby Sue", "id": 45865, "credit_id": "52fe4424c3a36847f8084b21", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "William Hickey", "character": "Uncle Lewis", "id": 21282, "credit_id": "52fe4424c3a36847f8084b25", "cast_id": 21, "profile_path": "/zr7UJxP5MdEksn6ZaxeHbwr6o5Z.jpg", "order": 12}, {"name": "Mae Questel", "character": "Aunt Bethany", "id": 58530, "credit_id": "52fe4424c3a36847f8084b29", "cast_id": 22, "profile_path": "/wsUsW4fo8u82fbYQlXVaql6fgbk.jpg", "order": 13}, {"name": "Sam McMurray", "character": "Bill", "id": 5176, "credit_id": "52fe4424c3a36847f8084b2d", "cast_id": 23, "profile_path": "/5NgEWVYgGWCj4N6bzEzU5a7c0wN.jpg", "order": 14}, {"name": "Nicholas Guest", "character": "Todd Chester", "id": 36821, "credit_id": "52fe4424c3a36847f8084b31", "cast_id": 24, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 15}, {"name": "Julia Louis-Dreyfus", "character": "Margo Chester", "id": 15886, "credit_id": "52fe4424c3a36847f8084b35", "cast_id": 25, "profile_path": "/ndKR1FmZ7LU9A0HHykdTQOVXYXb.jpg", "order": 16}, {"name": "Nicolette Scorsese", "character": "Mary", "id": 106731, "credit_id": "52fe4424c3a36847f8084b39", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Keith MacKechnie", "character": "Delivery Boy", "id": 239021, "credit_id": "52fe4424c3a36847f8084b3d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Brian Doyle-Murray", "character": "Mr. Frank Shirley", "id": 1535, "credit_id": "52fe4424c3a36847f8084b41", "cast_id": 28, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 19}, {"name": "Natalija Nogulich", "character": "Mrs. Helen Shirley", "id": 65017, "credit_id": "52fe4424c3a36847f8084b45", "cast_id": 29, "profile_path": "/dymzTDnnnfhBO6BruKBJvJMUx3X.jpg", "order": 20}], "directors": [{"name": "Jeremiah S. Chechik", "department": "Directing", "job": "Director", "credit_id": "52fe4424c3a36847f8084ac7", "profile_path": "/avEcJTGsWFEzxpSOutwhkP3adQ8.jpg", "id": 34682}], "vote_average": 6.9, "runtime": 97}, "262338": {"poster_path": "/p1WgHQdMlae7ekJZVrZvnNOKmKa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tom and Anna Reed, a young American couple, fall into severe debt while renovating Anna's family home in London. As the couple faces the loss of their dream to have a house and start a family, they discover that the tenant in the apartment below them is dead, and he's left behind a stash of cash\u2014$400,000 worth. Though initially hesitant, Tom and Anna decide that the plan is simple: all they have to do is quietly take the money and use only what's necessary to get them out of debt. But when they start spending the money and can't seem to stop, they find themselves the target of a deadly adversary\u2014the thief who stole it\u2014and that's when very bad things start happening to good people.", "video": false, "id": 262338, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Good People", "tagline": "Money changes everything", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1361318", "adult": false, "backdrop_path": "/c6fa0bNRC66nkGgQ3ijjUno8ZsF.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Filmgate Films", "id": 18230}, {"name": "Maguire Entertainment", "id": 2236}, {"name": "Material Pictures", "id": 12139}], "release_date": "2014-09-26", "popularity": 0.933287269008549, "original_title": "Good People", "budget": 0, "cast": [{"name": "James Franco", "character": "Tom Reed", "id": 17051, "credit_id": "5339934d9251411302003885", "cast_id": 2, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Kate Hudson", "character": "Anna Reed", "id": 11661, "credit_id": "533993569251417da7004913", "cast_id": 3, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 2}, {"name": "Anna Friel", "character": "Sarah", "id": 58016, "credit_id": "533993619251417da1004b0a", "cast_id": 4, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 3}, {"name": "Omar Sy", "character": "Khan", "id": 78423, "credit_id": "533993689251417dad0048f8", "cast_id": 5, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "DI John Halden", "id": 207, "credit_id": "5339936f9251417dad0048fa", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "Sam Spruell", "character": "Jack Witkowski", "id": 55585, "credit_id": "5339937d9251417d9b004b90", "cast_id": 7, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 6}, {"name": "Michael Jibson", "character": "Mike Calloway", "id": 56098, "credit_id": "533993899251411302003889", "cast_id": 8, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 7}, {"name": "Diana Hardcastle", "character": "", "id": 346352, "credit_id": "533993af9251417daa00496f", "cast_id": 10, "profile_path": "/hl58zPrWbo1mfatgVxEnGsKGZ1b.jpg", "order": 9}, {"name": "Diarmaid Murtagh", "character": "Marshall", "id": 1330044, "credit_id": "5485fbb19251416a630033fe", "cast_id": 14, "profile_path": "/mGYuCYKnPojosNhviSoB1BifofA.jpg", "order": 10}, {"name": "Oliver Dimsdale", "character": "Superintendent Ray Martin", "id": 1239834, "credit_id": "5486000f9251416a5d003852", "cast_id": 15, "profile_path": "/gpq8z17QqDZsyLYjDqov7FrzQ2a.jpg", "order": 11}, {"name": "Lasco Atkins", "character": "Clubber", "id": 1363049, "credit_id": "54860431c3a368666a0026db", "cast_id": 16, "profile_path": "/ollrIPt4sG3vr9dQ8tNkN1JCtMJ.jpg", "order": 12}, {"name": "Nigel Genis", "character": "American Tourist", "id": 1379268, "credit_id": "548609739251416a63003505", "cast_id": 17, "profile_path": "/8R9QgXbyK2DyxyrjS6B1pKmaA6Y.jpg", "order": 13}, {"name": "Maarten Dannenberg", "character": "Andre", "id": 1396599, "credit_id": "54860a629251416a600037cb", "cast_id": 18, "profile_path": "/pH5ntpSmGDIvdbr0sAw3LtdOtQz.jpg", "order": 14}, {"name": "Anick Wiget", "character": "Rehabilitation patient", "id": 1396600, "credit_id": "54860b4bc3a3680b38003a45", "cast_id": 19, "profile_path": "/r4vknP06DNZIEZQpqOZ1UsPZujY.jpg", "order": 15}, {"name": "Michael Fox", "character": "Bobby Witkowski", "id": 1396601, "credit_id": "54860e7cc3a3680b36003be9", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Waj Ali", "character": "Bailiff", "id": 1396602, "credit_id": "54860fb0c3a3680b48002e36", "cast_id": 21, "profile_path": "/nbMofZiQ9xAfZziYMLLy3R9R7Hf.jpg", "order": 17}, {"name": "Nick Turner", "character": "Clubber", "id": 1396611, "credit_id": "5486142fc3a3686767001e7e", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Amanda Edwards", "character": "Policewoman", "id": 1396616, "credit_id": "548617f99251416a63003607", "cast_id": 23, "profile_path": "/lYbrWcmIsWR0GmRqBZAdK2HJ7l9.jpg", "order": 19}, {"name": "George Kirby", "character": "Malek", "id": 1396620, "credit_id": "548618f3c3a368666a002896", "cast_id": 24, "profile_path": "/6LtJ01CA25nvanplYm7EW7sFuhJ.jpg", "order": 20}], "directors": [{"name": "Henrik Ruben Genz", "department": "Directing", "job": "Director", "credit_id": "533993329251417d9e0049c5", "profile_path": null, "id": 82351}], "vote_average": 5.6, "runtime": 90}, "112336": {"poster_path": "/qQGr8DQiAelkcy4w8cXn2qTMkMq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6002708, "overview": "Hitchcock follows the relationship between director Alfred Hitchcock and his wife Alma Reville during the making of his most famous film \"Psycho\" - and the trials and tribulations the director faced from Hollywood censors.", "video": false, "id": 112336, "genres": [{"id": 18, "name": "Drama"}], "title": "Hitchcock", "tagline": "Good evening.", "vote_count": 181, "homepage": "http://www.hitchcockthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0975645", "adult": false, "backdrop_path": "/wLczRlndrKOFcBffSzUEKNyBEi2.jpg", "production_companies": [{"name": "Montecito Picture Company, The", "id": 4607}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2012-11-22", "popularity": 0.373414319813809, "original_title": "Hitchcock", "budget": 0, "cast": [{"name": "Anthony Hopkins", "character": "Alfred Hitchcock", "id": 4173, "credit_id": "52fe4b15c3a36847f81f1807", "cast_id": 5, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Helen Mirren", "character": "Alma Reville", "id": 15735, "credit_id": "52fe4b15c3a36847f81f180b", "cast_id": 6, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 1}, {"name": "Scarlett Johansson", "character": "Janet Leigh", "id": 1245, "credit_id": "52fe4b15c3a36847f81f180f", "cast_id": 7, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 2}, {"name": "James D'Arcy", "character": "Anthony Perkins", "id": 19655, "credit_id": "52fe4b15c3a36847f81f1813", "cast_id": 8, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 3}, {"name": "Jessica Biel", "character": "Vera Miles", "id": 10860, "credit_id": "52fe4b15c3a36847f81f1817", "cast_id": 9, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 4}, {"name": "Michael Stuhlbarg", "character": "Lew Wasserman", "id": 72873, "credit_id": "52fe4b15c3a36847f81f181b", "cast_id": 10, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 5}, {"name": "Ralph Macchio", "character": "Joe Stefano", "id": 2877, "credit_id": "52fe4b15c3a36847f81f181f", "cast_id": 11, "profile_path": "/nTiV5ux56X4dmX5Qvriw8r7SgLz.jpg", "order": 6}, {"name": "Toni Collette", "character": "Peggy Robertson", "id": 3051, "credit_id": "52fe4b15c3a36847f81f1823", "cast_id": 12, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 7}, {"name": "Danny Huston", "character": "Whitfield Cook", "id": 6413, "credit_id": "52fe4b15c3a36847f81f1827", "cast_id": 13, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 8}, {"name": "Michael Wincott", "character": "Ed Gein", "id": 7486, "credit_id": "52fe4b15c3a36847f81f182b", "cast_id": 14, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 9}, {"name": "Kurtwood Smith", "character": "Geoffrey Shurlock", "id": 2115, "credit_id": "52fe4b15c3a36847f81f182f", "cast_id": 15, "profile_path": "/3yTfpjjLXK6efurRGwXhoPeIQTk.jpg", "order": 10}, {"name": "Judith Hoag", "character": "Lillian", "id": 45041, "credit_id": "52fe4b15c3a36847f81f1833", "cast_id": 16, "profile_path": "/mP2EqWWhy6iP2PCbbky78pj10VK.jpg", "order": 11}, {"name": "Currie Graham", "character": "Flack", "id": 156590, "credit_id": "52fe4b15c3a36847f81f1837", "cast_id": 17, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 12}, {"name": "Wallace Langham", "character": "Saul Bass", "id": 17421, "credit_id": "52fe4b15c3a36847f81f183b", "cast_id": 18, "profile_path": "/UODZ2FuyJixy8CCqv190KIlncR.jpg", "order": 13}], "directors": [{"name": "Sacha Gervasi", "department": "Directing", "job": "Director", "credit_id": "52fe4b15c3a36847f81f17f1", "profile_path": "/sb02iw4jRlZdCMdUC8DCH7CQf4F.jpg", "id": 8686}], "vote_average": 6.2, "runtime": 98}, "6435": {"poster_path": "/wLSnpiAawuJI177pBbyDa0N8BiV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian's vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov -- and unwittingly inject his corpse with an evil spirit that threatens to end their family line.", "video": false, "id": 6435, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Practical Magic", "tagline": "For two sisters from a family of witches, falling in love is the trickiest spell of all.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120791", "adult": false, "backdrop_path": "/5sH0E0F7n08mFnm71uPqRkTUo96.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1998-10-16", "popularity": 0.553053094129145, "original_title": "Practical Magic", "budget": 75000000, "cast": [{"name": "Sandra Bullock", "character": "Sally Owens", "id": 18277, "credit_id": "52fe4451c3a36847f808ee83", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Gillian Owens", "id": 2227, "credit_id": "52fe4451c3a36847f808ee87", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Evan Rachel Wood", "character": "Kylie Owens", "id": 38940, "credit_id": "52fe4451c3a36847f808eed7", "cast_id": 17, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 2}, {"name": "Stockard Channing", "character": "Tante Frances 'Fran' Owens", "id": 8893, "credit_id": "52fe4451c3a36847f808eec7", "cast_id": 13, "profile_path": "/5UFMOfbzod42UiPUna59Ch1e37a.jpg", "order": 3}, {"name": "Dianne Wiest", "character": "Tante Bridget 'Jet' Owens", "id": 1902, "credit_id": "52fe4451c3a36847f808eecb", "cast_id": 14, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 4}, {"name": "Goran Vi\u0161nji\u0107", "character": "Jimmy Angelov", "id": 5725, "credit_id": "52fe4451c3a36847f808eecf", "cast_id": 15, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 5}, {"name": "Aidan Quinn", "character": "Gary Hallet", "id": 18992, "credit_id": "52fe4451c3a36847f808eed3", "cast_id": 16, "profile_path": "/fOiuJIBJUdiuqjQtGkffpSbRQ49.jpg", "order": 6}, {"name": "Alexandra Artrip", "character": "Antonia Owens", "id": 51681, "credit_id": "52fe4451c3a36847f808eedb", "cast_id": 18, "profile_path": null, "order": 7}], "directors": [{"name": "Griffin Dunne", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a36847f808ee8d", "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "id": 2171}], "vote_average": 6.3, "runtime": 104}, "218836": {"poster_path": "/b5Xn7UQf7s6ZPsDTVT0NeLqiiHY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 151165787, "overview": "When world-famous air racer Dusty learns that his engine is damaged and he may never race again, he must shift gears and is launched into the world of aerial firefighting. Dusty joins forces with veteran fire and rescue helicopter Blade Ranger and his team, a bunch of all-terrain vehicles known as The Smokejumpers. Together, the fearless team battles a massive wildfire, and Dusty learns what it takes to become a true hero.", "video": false, "id": 218836, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Planes: Fire & Rescue", "tagline": "When others fly out, heroes fly in.", "vote_count": 102, "homepage": "http://movies.disney.com/planes-fire-and-rescue", "belongs_to_collection": {"backdrop_path": "/zGoePWKFLVJlxDWUUJhxSQgmkCa.jpg", "poster_path": "/tvzKXcXiJuUwOlni9MV00LCtqNm.jpg", "id": 270252, "name": "Planes Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2980706", "adult": false, "backdrop_path": "/3MET6hEfk8n8i0KFRq9BHnJq7ju.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Prana Animation Studios", "id": 22135}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Prana Studios", "id": 18713}], "release_date": "2014-07-18", "popularity": 1.59806659520186, "original_title": "Planes: Fire & Rescue", "budget": 50000000, "cast": [{"name": "Dane Cook", "character": "Dusty Crophopper (voice)", "id": 31837, "credit_id": "52fe4e57c3a368484e21b687", "cast_id": 2, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 0}, {"name": "Ed Harris", "character": "Blade Ranger (voice)", "id": 228, "credit_id": "5455068d0e0a2648cb004778", "cast_id": 16, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 1}, {"name": "Julie Bowen", "character": "Dipper (voice)", "id": 31171, "credit_id": "52fe4e57c3a368484e21b683", "cast_id": 1, "profile_path": "/fbELrYxMYvUftgceh0KXnw2mQ8r.jpg", "order": 2}, {"name": "Curtis Armstrong", "character": "Maru (voice)", "id": 87003, "credit_id": "545507000e0a2635de002273", "cast_id": 17, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 3}, {"name": "John Michael Higgins", "character": "Cad (voice)", "id": 8265, "credit_id": "5455071d0e0a2648c50048e4", "cast_id": 18, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Mayday (voice)", "id": 11066, "credit_id": "54550756c3a368146f0044ad", "cast_id": 19, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Wes Studi", "character": "Windlifter", "id": 15853, "credit_id": "53307ce19251413a78005c3e", "cast_id": 8, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 6}, {"name": "Brad Garrett", "character": "Chug (voice)", "id": 18, "credit_id": "5455079c0e0a2648c2004787", "cast_id": 20, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 7}, {"name": "Teri Hatcher", "character": "Dottie (voice)", "id": 10742, "credit_id": "545507b40e0a2648cf004888", "cast_id": 21, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 8}, {"name": "Stacy Keach", "character": "Skipper (voice)", "id": 825, "credit_id": "545507ea0e0a26386300232e", "cast_id": 22, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 9}, {"name": "Cedric the Entertainer", "character": "Leadbottom (voice)", "id": 5726, "credit_id": "545507ffc3a368148d0046df", "cast_id": 23, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 10}, {"name": "Danny Mann", "character": "Sparky (voice)", "id": 52699, "credit_id": "5455083c0e0a2648d60046e0", "cast_id": 24, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 11}, {"name": "Barry Corbin", "character": "Ol' Jammer (voice)", "id": 12852, "credit_id": "54550872c3a368147800479b", "cast_id": 25, "profile_path": "/sI9LkzJYancOxTdC3othmzCxdp4.jpg", "order": 12}, {"name": "Regina King", "character": "Dynamite (voice)", "id": 9788, "credit_id": "53307cb99251413a78005c3b", "cast_id": 5, "profile_path": "/iykUtoT739peV0Q15YQRjp8rrXG.jpg", "order": 13}, {"name": "Anne Meara", "character": "Winnie (voice)", "id": 32394, "credit_id": "53307cef9251413a7e005b7e", "cast_id": 9, "profile_path": "/oNZszKpUZHfbT1mk2cD53uuZsnp.jpg", "order": 14}, {"name": "Jerry Stiller", "character": "Harvey (voice)", "id": 26042, "credit_id": "53307cd79251413a75005d1a", "cast_id": 7, "profile_path": "/t8UdAbLxCIzQpQos4AeDU1PcJrH.jpg", "order": 15}, {"name": "Fred Willard", "character": "Secretary of the Interior (voice)", "id": 20753, "credit_id": "53307cca9251413a85005d24", "cast_id": 6, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 16}, {"name": "Dale Dye", "character": "Cabbie (voice)", "id": 3211, "credit_id": "53307d089251413a72005d6f", "cast_id": 10, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 17}, {"name": "Matt Jones", "character": "Drip (voice)", "id": 191202, "credit_id": "545508f40e0a2648cb0047c6", "cast_id": 26, "profile_path": "/wcB788lpiyc58s0F3nzqZnspISA.jpg", "order": 18}, {"name": "Bryan Callen", "character": "Avalanche (voice)", "id": 78320, "credit_id": "545509150e0a2648c5004912", "cast_id": 27, "profile_path": "/txjiaY5FeERiMNkg0WJ6hVh1Zev.jpg", "order": 19}, {"name": "Danny Pardo", "character": "Blackout (voice)", "id": 1304336, "credit_id": "53307d289251413a6f005ead", "cast_id": 11, "profile_path": "/aY164UTFbcnGEgxCk0ed9N3eFro.jpg", "order": 20}, {"name": "Corri English", "character": "Pinecone (voice)", "id": 63107, "credit_id": "53307d369251413a85005d2c", "cast_id": 12, "profile_path": "/fuhQDZVGe6JF8JtmWT6Tp7DNTtk.jpg", "order": 21}, {"name": "Kari Wahlgren", "character": "Patch (voice)", "id": 116315, "credit_id": "545509430e0a2648c500491a", "cast_id": 28, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 22}, {"name": "Patrick Warburton", "character": "Pulaski (voice)", "id": 9657, "credit_id": "54550953c3a36814800048b6", "cast_id": 29, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 23}, {"name": "Rene Auberjonois", "character": "Concierge (voice)", "id": 9807, "credit_id": "54550963c3a368148d004712", "cast_id": 30, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 24}, {"name": "Rene Auberjonois", "character": "Ryker (voice)", "id": 9807, "credit_id": "545509750e0a2648d60046fa", "cast_id": 31, "profile_path": "/eAF43tqzBqq7Lgi7jG27BBUZ6Bp.jpg", "order": 25}, {"name": "Erik Estrada", "character": "Nick 'Loop'n' Lopez (voice)", "id": 102209, "credit_id": "54550984c3a36814730045f2", "cast_id": 32, "profile_path": "/fYQn64bMuP5kYoQvmPDCShzF1WZ.jpg", "order": 26}, {"name": "Steve Schirripa", "character": "Steve (voice)", "id": 97188, "credit_id": "545509920e0a2648c20047c8", "cast_id": 33, "profile_path": "/qz3X10hyuKC0Cn4ni4SQhfWnB9I.jpg", "order": 27}, {"name": "Brent Musburger", "character": "Brent Mustangburger (voice)", "id": 188559, "credit_id": "545509a2c3a368147c004605", "cast_id": 34, "profile_path": "/fZXRho9StEBcblGYtplxiFTxD73.jpg", "order": 28}, {"name": "John Ratzenberger", "character": "Brodi (voice)", "id": 7907, "credit_id": "545509b10e0a2648c500492b", "cast_id": 35, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 29}, {"name": "Caroline Aaron", "character": "Additional Voices (voice)", "id": 1910, "credit_id": "545509c3c3a368147c00460b", "cast_id": 36, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 30}, {"name": "Ferrell Barron", "character": "Additional Voices (voice)", "id": 60729, "credit_id": "545509d6c3a368148d004722", "cast_id": 37, "profile_path": "/zRnZEXS4r61VW7wWbjn6nNzBKpx.jpg", "order": 31}, {"name": "Roberts Gannaway", "character": "Additional Voices (voice)", "id": 210053, "credit_id": "54550bb8c3a3681480004915", "cast_id": 38, "profile_path": "/VtgixrvPeTluyAB1po1hY3W6oA.jpg", "order": 32}, {"name": "Kate Micucci", "character": "Additional Voices (voice)", "id": 132354, "credit_id": "54550c720e0a2648cb00484a", "cast_id": 39, "profile_path": "/qoUOtNflMZb9l1zgg9aeMiu1MF7.jpg", "order": 33}, {"name": "Masasa Moyo", "character": "Additional Voices (voice)", "id": 34520, "credit_id": "54550c810e0a2648c2004832", "cast_id": 40, "profile_path": "/kyghWHugRBGhyNEu5ne7p5INu3s.jpg", "order": 34}, {"name": "Brad Paisley", "character": "Additional Voices (voice)", "id": 181472, "credit_id": "54550c970e0a2648c200483b", "cast_id": 41, "profile_path": "/A3XNR1cDHGsMKQkzR1PIecWoNtE.jpg", "order": 35}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "54550ca50e0a2648d6004779", "cast_id": 42, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 36}], "directors": [{"name": "Roberts Gannaway", "department": "Directing", "job": "Director", "credit_id": "53307c9e9251413a7b005d40", "profile_path": "/VtgixrvPeTluyAB1po1hY3W6oA.jpg", "id": 210053}], "vote_average": 6.1, "runtime": 83}, "5851": {"poster_path": "/a1vRxRQFRwheHXJESIt2cnfudaH.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77741732, "overview": "A spoof of buddy cop movies where two very different cops are forced to team up on a new reality based T.V. cop show.", "video": false, "id": 5851, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Showtime", "tagline": "Lights. Camera. Aggravation.", "vote_count": 59, "homepage": "http://www.warnerbros.de/movies/showtime/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0284490", "adult": false, "backdrop_path": "/rQwWtujstlG3dzfGsnp57Hh3pmj.jpg", "production_companies": [{"name": "Warner Bros Pictures", "id": 4209}], "release_date": "2002-03-14", "popularity": 0.544827870954754, "original_title": "Showtime", "budget": 85000000, "cast": [{"name": "Robert De Niro", "character": "Det. Mitch Preston", "id": 380, "credit_id": "52fe4426c3a36847f808536b", "cast_id": 1, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Rachael Harris", "character": "Lehrerin", "id": 46074, "credit_id": "52fe4426c3a36847f808536f", "cast_id": 2, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 1}, {"name": "Eddie Murphy", "character": "Officer Trey Sellars", "id": 776, "credit_id": "52fe4426c3a36847f8085373", "cast_id": 3, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 2}, {"name": "Zaid Farid", "character": "Polizeichef Ben", "id": 46075, "credit_id": "52fe4426c3a36847f8085377", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "William Shatner", "character": "William Shatner", "id": 1748, "credit_id": "52fe4427c3a36847f80853f3", "cast_id": 25, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 4}, {"name": "Pedro Dami\u00e1n", "character": "Ceasar Vargas", "id": 1405014, "credit_id": "55203030c3a3684dc9001b28", "cast_id": 26, "profile_path": null, "order": 5}], "directors": [{"name": "Tom Dey", "department": "Directing", "job": "Director", "credit_id": "52fe4426c3a36847f808537d", "profile_path": "/7YmdGtMlVmxwky3hWcDOPTZ5rv3.jpg", "id": 46076}], "vote_average": 5.3, "runtime": 95}, "177888": {"poster_path": "/vPdz4rk4TzfihH9w72VcGaQCDNq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Cowabunga! Catch a perfect wave of fun in the sun, splashed with excitement, surprises and budding romance. Life's a beach for surfers Brady (Ross Lynch) and McKenzie (Maia Mitchell) \u2013 until a rogue wave magically transports them inside the classic '60s beach party flick, \"Wet Side Story,\" where a full-blown rivalry between bikers and surfers threatens to erupt. There, amidst a sea of surfing, singing and dancing, Brady and Mack accidentally change the storyline, and the film\u2019s dreamy hero and heroine fall for them instead of for each other! Can our heroes get the plot back on track, or will they be trapped there forever? Overflowing with hilarious comedy and high-energy musical numbers, \"Teen Beach Movie\" makes it an endless summer all year long!", "video": false, "id": 177888, "genres": [{"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}, {"id": 10770, "name": "TV Movie"}], "title": "Teen Beach Movie", "tagline": "Getting trapped in a movie... is no day at the beach.", "vote_count": 84, "homepage": "http://www.disneychannel.disney.com/teen-beach-movie", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2325989", "adult": false, "backdrop_path": "/ywuB4HikdBkW2AVFTY6eCcO8M60.jpg", "production_companies": [{"name": "Disney Channel", "id": 3213}], "release_date": "2013-07-19", "popularity": 0.122188254792873, "original_title": "Teen Beach Movie", "budget": 0, "cast": [{"name": "Ross Lynch", "character": "Brady", "id": 973385, "credit_id": "52fe4d8cc3a36847f8266fd3", "cast_id": 1, "profile_path": "/xh1xbSZf6NpP6rnAKzkmNWIiRDM.jpg", "order": 0}, {"name": "Maia Mitchell", "character": "McKenzie", "id": 992366, "credit_id": "52fe4d8cc3a36847f8266fd7", "cast_id": 3, "profile_path": "/1ggNur1TDBuag5X3GlL3I9AuyXb.jpg", "order": 1}, {"name": "Grace Phipps", "character": "Lela", "id": 519735, "credit_id": "52fe4d8cc3a36847f8266fdb", "cast_id": 4, "profile_path": "/aJwlJ8bAiECH14x2LTzkSHGoRhL.jpg", "order": 2}, {"name": "Garrett Clayton", "character": "Tanner", "id": 1031685, "credit_id": "52fe4d8dc3a36847f8266fdf", "cast_id": 5, "profile_path": "/1bOQmLp96v8y7I717MQSOKOlOCX.jpg", "order": 3}, {"name": "John DeLuca", "character": "Butchy", "id": 1094568, "credit_id": "52fe4d8dc3a36847f8266fe3", "cast_id": 6, "profile_path": "/u5vGKQmkFAXPa2oo4lT6sgZSE4D.jpg", "order": 4}, {"name": "Chrissie Fit", "character": "Cheechee", "id": 1160310, "credit_id": "52fe4d8dc3a36847f8266fe7", "cast_id": 7, "profile_path": "/dyKLKopiH53I5qLYen882LCDmwo.jpg", "order": 5}, {"name": "Kevin Chamberlin", "character": "Dr. Fusion", "id": 34395, "credit_id": "52fe4d8dc3a36847f8266feb", "cast_id": 8, "profile_path": "/37FDBOmTdLRwKQMnNmm1MfJ6Dk4.jpg", "order": 6}, {"name": "Steve Valentine", "character": "Les Camembert", "id": 78311, "credit_id": "52fe4d8dc3a36847f8266fef", "cast_id": 9, "profile_path": "/77wqwNpMvXEDquLU9LLkPEPZr48.jpg", "order": 7}, {"name": "Jordan Fisher", "character": "Seacat", "id": 1192274, "credit_id": "52fe4d8dc3a36847f8267011", "cast_id": 15, "profile_path": "/fh05kpNu0IZ3n7Hd15y3DaJ7TQF.jpg", "order": 8}, {"name": "Oskar Rodriguez", "character": "Dancer", "id": 1057972, "credit_id": "53bf3171c3a3684cec003c5a", "cast_id": 16, "profile_path": "/rLLSPx0Wl7x47IsDbvpPrMoh4sZ.jpg", "order": 9}, {"name": "Mollee Gray", "character": "Giggles", "id": 1426656, "credit_id": "54e956d392514111b800271c", "cast_id": 17, "profile_path": "/rHLQST1kF3lbcm0QR6p5XTcoqV0.jpg", "order": 10}, {"name": "Jessica Lee Keller", "character": "Struts", "id": 1426658, "credit_id": "54e9576392514111b800272d", "cast_id": 18, "profile_path": "/2IXLalX7HgAJekvH3FEhQ6bJ3vr.jpg", "order": 11}, {"name": "Kent Boyd", "character": "Rascal", "id": 1426657, "credit_id": "54e958cd92514111b8002750", "cast_id": 19, "profile_path": "/mWAfX6M24bGdXx2ORJIx2IpTPne.jpg", "order": 12}, {"name": "William Loftis", "character": "Lugnut", "id": 1426660, "credit_id": "54e95b219251412eb10032cc", "cast_id": 20, "profile_path": "/qQVqM9NoSTFys4llyHMMIRnBABc.jpg", "order": 13}], "directors": [{"name": "Jeffrey Hornaday", "department": "Directing", "job": "Director", "credit_id": "52fe4d8dc3a36847f8266ff5", "profile_path": null, "id": 150207}], "vote_average": 6.0, "runtime": 110}, "145135": {"poster_path": "/kaqkurs0iDCJGmJBBa6DRGacfA8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25174316, "overview": "From the producers of Paranormal Activity, Insidious, and Sinister comes Dark Skies: a supernatural thriller that follows a young family living in the suburbs. As husband and wife Daniel and Lacey Barret witness an escalating series of disturbing events involving their family, their safe and peaceful home quickly unravels. When it becomes clear that the Barret family is being targeted by an unimaginably terrifying and deadly force, Daniel and Lacey take matters in their own hands to solve the mystery of what is after their family.", "video": false, "id": 145135, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dark Skies", "tagline": "Once you have been chosen. You belong to them.", "vote_count": 222, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2387433", "adult": false, "backdrop_path": "/cuTt0S1Pl04HYrIYFIfF8JK8Ce1.jpg", "production_companies": [{"name": "Cinema Vehicle Services", "id": 25673}, {"name": "Alliance Films", "id": 2514}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2013-02-21", "popularity": 1.02140116912683, "original_title": "Dark Skies", "budget": 3500000, "cast": [{"name": "Keri Russell", "character": "Lacy Barrett", "id": 41292, "credit_id": "52fe4b4e9251416c750fed0d", "cast_id": 2, "profile_path": "/6YDkRvqdUhh4hTw1CRnpt9Drr7h.jpg", "order": 0}, {"name": "Josh Hamilton", "character": "Daniel", "id": 52419, "credit_id": "52fe4b4e9251416c750fed15", "cast_id": 4, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 1}, {"name": "Dakota Goyo", "character": "Jesse", "id": 234479, "credit_id": "52fe4b4e9251416c750fed09", "cast_id": 1, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 2}, {"name": "J.K. Simmons", "character": "Edwin Pollard", "id": 18999, "credit_id": "52fe4b4e9251416c750fed11", "cast_id": 3, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 3}, {"name": "Trevor St. John", "character": "Alex Holcombe", "id": 199298, "credit_id": "52fe4b4e9251416c750fed19", "cast_id": 5, "profile_path": "/nLzyfCCDK3TPPHjbMi7x7NMrGUP.jpg", "order": 4}, {"name": "Annie Thurman", "character": "Shelly", "id": 1131606, "credit_id": "52fe4b4e9251416c750fed1d", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Myndy Crist", "character": "Karen", "id": 156875, "credit_id": "52fe4b4f9251416c750fed4b", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Ron Ostrow", "character": "Richard", "id": 168400, "credit_id": "52fe4b4f9251416c750fed4f", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "Josh Wingate", "character": "Gun Salesperson", "id": 206790, "credit_id": "52fe4b4f9251416c750fed53", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Kadan Rockett", "character": "Sam Barrett", "id": 1391884, "credit_id": "547edfa792514124b9000e08", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "L.J. Benet", "character": "Kevin Ratner", "id": 1393310, "credit_id": "547edfd8c3a368395c00100a", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Rich Hutchman", "character": "Mike Jessop", "id": 52924, "credit_id": "547edfeec3a368396c000f0d", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Jake Brennan", "character": "Bobby Jessop (as Jake Washburn)", "id": 1393311, "credit_id": "547ee00e92514124bf000d9a", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Tom Costello", "character": "Young Father", "id": 1329618, "credit_id": "547ee029c3a368395c001015", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Marion Kerr", "character": "Young Mother", "id": 968185, "credit_id": "547ee037c3a368395c00101b", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Alyvia Alyn Lind", "character": "Young Daughter", "id": 1274510, "credit_id": "547ee044c3a368395e000f6f", "cast_id": 24, "profile_path": "/iRgOBaCvrBLJm1q2vob9lQNpQa6.jpg", "order": 15}, {"name": "Josh Stamberg", "character": "Police Officer", "id": 21882, "credit_id": "547ee050c3a368396c000f1b", "cast_id": 25, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 16}, {"name": "Tiffany Jeneen", "character": "Protection One Operator", "id": 1393312, "credit_id": "547ee05cc3a3683961000be8", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Brian Stepanek", "character": "Security System Technician", "id": 146391, "credit_id": "547ee06bc3a3683968000d4b", "cast_id": 27, "profile_path": "/fJxYgUk3O8BtmqBl1J4m9pDlio2.jpg", "order": 18}, {"name": "Judith Moreland", "character": "Janice Rhodes", "id": 1350210, "credit_id": "547ee079c3a368395e000f74", "cast_id": 28, "profile_path": "/1uc3kgTw3VYrhKq7yAqdPQB9YXD.jpg", "order": 19}, {"name": "Adam Schneider", "character": "Young Husband", "id": 1393313, "credit_id": "547ee08792514124b9000e27", "cast_id": 29, "profile_path": null, "order": 20}, {"name": "Jessica Borden", "character": "Young Wife", "id": 109907, "credit_id": "547ee09492514124ad000de8", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Kenneth Meseroll", "character": "Pete", "id": 1236010, "credit_id": "547ee0a092514124b9000e2d", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "Trevor St. John", "character": "Alex Holcombe", "id": 199298, "credit_id": "547ee0ad92514124af000d63", "cast_id": 32, "profile_path": "/nLzyfCCDK3TPPHjbMi7x7NMrGUP.jpg", "order": 23}, {"name": "Andy Umberger", "character": "Doctor Jonathan Kooper", "id": 142204, "credit_id": "547ee0b9c3a368396f000f9d", "cast_id": 33, "profile_path": "/nDuiFTa0qzfaD1KFmoq97Ae10N9.jpg", "order": 24}, {"name": "Michael Patrick McGill", "character": "Ratner's Father", "id": 154816, "credit_id": "547ee0c6c3a368395c00102c", "cast_id": 34, "profile_path": "/9M7pqxB3NZm7zVrpGqFkFI25nrw.jpg", "order": 25}, {"name": "Alexandra Anthony", "character": "Naughty Cheerleader (as Alexandra Fulton)", "id": 1301697, "credit_id": "547ee0e892514124aa000f65", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Scott Anthony", "character": "Naughty Teacher", "id": 1393315, "credit_id": "547ee0ff92514124b6000f1d", "cast_id": 36, "profile_path": null, "order": 27}], "directors": [{"name": "Scott Stewart", "department": "Directing", "job": "Director", "credit_id": "52fe4b4e9251416c750fed23", "profile_path": "/uFhftOKdeSRbJkOsylcJSJoaimQ.jpg", "id": 116357}], "vote_average": 6.0, "runtime": 97}, "5876": {"poster_path": "/uYVheUBf8ITaocUP4Og9GXxOMIH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57096190, "overview": "After a violent storm, a dense cloud of mist envelops a small Maine town, trapping artist David Drayton and his five-year-old son in a local grocery store with other people. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.", "video": false, "id": 5876, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Mist", "tagline": "Belief divides them, mystery surrounds them, but fear changes everything.", "vote_count": 263, "homepage": "http://www.themist-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0884328", "adult": false, "backdrop_path": "/xUYTWv2W3wCakBw4fOpTfFQ5e1I.jpg", "production_companies": [{"name": "Darkwoods Productions", "id": 3982}, {"name": "Dimension Films", "id": 7405}], "release_date": "2007-11-21", "popularity": 0.753728899408703, "original_title": "The Mist", "budget": 18000000, "cast": [{"name": "Thomas Jane", "character": "David Drayton", "id": 11155, "credit_id": "52fe4429c3a36847f8085c77", "cast_id": 15, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Mrs. Carmody", "id": 4726, "credit_id": "52fe4429c3a36847f8085c7b", "cast_id": 16, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "Laurie Holden", "character": "Amanda", "id": 8332, "credit_id": "52fe4429c3a36847f8085c7f", "cast_id": 17, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 2}, {"name": "Toby Jones", "character": "Ollie", "id": 13014, "credit_id": "52fe4429c3a36847f8085c83", "cast_id": 18, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 3}, {"name": "Jeffrey DeMunn", "character": "Dan Miller", "id": 12645, "credit_id": "52fe4429c3a36847f8085c87", "cast_id": 19, "profile_path": "/wMRlF3VRApPduQBAuNEVM4ncYcN.jpg", "order": 4}, {"name": "Frances Sternhagen", "character": "Irene", "id": 36926, "credit_id": "52fe4429c3a36847f8085c8b", "cast_id": 20, "profile_path": "/uFPwqtJObVUyRymTZbgBDWlFxtw.jpg", "order": 5}, {"name": "Nathan Gamble", "character": "Billy Drayton", "id": 18052, "credit_id": "52fe4429c3a36847f8085c8f", "cast_id": 21, "profile_path": "/zn5ueTFn51JQMzyu5aoIpVMfb48.jpg", "order": 6}, {"name": "William Sadler", "character": "Jim", "id": 6573, "credit_id": "52fe4429c3a36847f8085c93", "cast_id": 22, "profile_path": "/deRJUFbO8uqPSQT3B6Vgp4jiJir.jpg", "order": 7}, {"name": "Andre Braugher", "character": "Norton", "id": 6861, "credit_id": "52fe4429c3a36847f8085c97", "cast_id": 23, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 8}, {"name": "Alexa Davalos", "character": "Sally", "id": 28109, "credit_id": "52fe4429c3a36847f8085c9b", "cast_id": 24, "profile_path": "/onvfPN3sVPiNKrmUwpAV5XgjzsX.jpg", "order": 9}, {"name": "Samuel Witwer", "character": "Jessup", "id": 46362, "credit_id": "52fe4429c3a36847f8085c9f", "cast_id": 25, "profile_path": "/e4FRojd6SmiyRLo2nQQGUXwi16v.jpg", "order": 10}, {"name": "Chris Owen", "character": "Norm", "id": 26999, "credit_id": "52fe4429c3a36847f8085caf", "cast_id": 29, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 11}, {"name": "Melissa McBride", "character": "Woman with Kids at Home", "id": 31535, "credit_id": "52fe4429c3a36847f8085cb9", "cast_id": 31, "profile_path": "/mWx65szXSk2iywkkKSM8tTVHap5.jpg", "order": 12}], "directors": [{"name": "Frank Darabont", "department": "Directing", "job": "Director", "credit_id": "52fe4429c3a36847f8085c31", "profile_path": "/9KVvZtDyy8DXacw2TTsjC9VLxQi.jpg", "id": 4027}], "vote_average": 6.6, "runtime": 126}, "14069": {"poster_path": "/oPpy4N3qyI3r1nRVl60F69vFQwK.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 3800000, "overview": "When 17-year-old Makoto Konno gains the ability to, quite literally, \"leap\" backwards through time, she immediately sets about improving her grades and preventing personal mishaps. However, she soon realises that changing the past isn't as simple as it seems, and eventually, will have to rely on her new powers to shape the future of herself and her friends.", "video": false, "id": 14069, "genres": [{"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Girl Who Leapt Through Time", "tagline": "", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0808506", "adult": false, "backdrop_path": "/p4ZsArF1dDWPoKjUpGJ7FthmUB0.jpg", "production_companies": [{"name": "Mad House", "id": 2862}, {"name": "Happinet Pictures", "id": 822}, {"name": "Kadokawa Pictures", "id": 2073}, {"name": "Kadokawa Shoten Publishing Co.", "id": 9068}, {"name": "Memory Tech", "id": 12540}, {"name": "Q-Tec", "id": 12541}, {"name": "Toki wo Kakeru Sh\u00f4jo Seisaku Iinkai 2006", "id": 12542}], "release_date": "2006-07-15", "popularity": 0.698628390655245, "original_title": "Toki o kakeru sh\u00f4jo", "budget": 0, "cast": [{"name": "Riisa Naka", "character": "Makoto Konno", "id": 122468, "credit_id": "52fe45c89251416c750625d5", "cast_id": 7, "profile_path": "/xG0KT9CkOp3ozWGopeuv5Bd0CqP.jpg", "order": 0}, {"name": "Takuya Ishida", "character": "Chiaki Mamiya", "id": 122469, "credit_id": "52fe45c89251416c750625d9", "cast_id": 8, "profile_path": "/7ie3IFpCGG0h4iDSioc7T8Sneum.jpg", "order": 1}, {"name": "Mitsutaka Itakura", "character": "Kousuke Tsuda", "id": 122470, "credit_id": "52fe45c89251416c750625dd", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "Fumihiko Tachiki", "character": "Fukushima sensei", "id": 77934, "credit_id": "52fe45c89251416c750625e1", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Ayami Kakiuchi", "character": "Yuri Hayakawa", "id": 122471, "credit_id": "52fe45c89251416c750625e5", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Yuki Sekido", "character": "Miyuki Konno", "id": 122472, "credit_id": "52fe45c89251416c750625e9", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Sachie Hara", "character": "Kazuko Yoshiyama", "id": 122473, "credit_id": "52fe45c89251416c750625ed", "cast_id": 13, "profile_path": null, "order": 6}, {"name": "Mitsuki Tanimura", "character": "Kaho Fujitani (voice)", "id": 118577, "credit_id": "52fe45c99251416c7506261b", "cast_id": 21, "profile_path": "/44o4Coq0GficqAd4tsul39T903P.jpg", "order": 7}, {"name": "Midori Ando", "character": "Makoto's mother", "id": 1133289, "credit_id": "52fe45c99251416c7506261f", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Takayuki Handa", "character": "Kato", "id": 1133290, "credit_id": "52fe45c99251416c75062623", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Utawaka Katsura", "character": "Makoto's father", "id": 1133291, "credit_id": "52fe45c99251416c75062627", "cast_id": 24, "profile_path": null, "order": 10}], "directors": [{"name": "Mamoru Hosoda", "department": "Directing", "job": "Director", "credit_id": "52fe45c89251416c750625b9", "profile_path": "/oh1GS6x8cdGkyL4QPKmpMSaD6Wu.jpg", "id": 81718}], "vote_average": 7.6, "runtime": 95}, "46838": {"poster_path": "/rKrTwUSmc1hU29RcldAlTgUrws7.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo's West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.", "video": false, "id": 46838, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Tucker and Dale vs Evil", "tagline": "Evil just messed with the wrong hillbillies.", "vote_count": 220, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1465522", "adult": false, "backdrop_path": "/mjsS5mcMjLPE31yGTU5mMqRhyCc.jpg", "production_companies": [{"name": "Eden Rock Media", "id": 2273}], "release_date": "2010-01-22", "popularity": 0.478799035606691, "original_title": "Tucker and Dale vs Evil", "budget": 0, "cast": [{"name": "Alan Tudyk", "character": "Tucker", "id": 21088, "credit_id": "52fe470fc3a36847f8121399", "cast_id": 1, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 0}, {"name": "Tyler Labine", "character": "Dale", "id": 51383, "credit_id": "52fe470fc3a36847f812139d", "cast_id": 2, "profile_path": "/gStB79JsVygb7BmU0SpIp8BZLr9.jpg", "order": 1}, {"name": "Katrina Bowden", "character": "Allison", "id": 74618, "credit_id": "52fe470fc3a36847f81213a1", "cast_id": 3, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 2}, {"name": "Jesse Moss", "character": "Chad", "id": 59926, "credit_id": "52fe470fc3a36847f81213a5", "cast_id": 4, "profile_path": "/d4FY9ZdC5imLXq3wp6eCBUjy8vq.jpg", "order": 3}, {"name": "Philip Granger", "character": "Sheriff", "id": 64670, "credit_id": "52fe470fc3a36847f81213c1", "cast_id": 11, "profile_path": "/fBxj7XTznAIIqjHpOtoVVZ9YQcd.jpg", "order": 4}, {"name": "Brandon Jay McLaren", "character": "Jason", "id": 58371, "credit_id": "52fe470fc3a36847f81213c5", "cast_id": 12, "profile_path": "/4E6tZJhsgkyI5VNrZCV91XP7o6o.jpg", "order": 5}, {"name": "Christie Laing", "character": "Naomi", "id": 168554, "credit_id": "52fe470fc3a36847f81213c9", "cast_id": 13, "profile_path": "/vdhQtqfz6FooxMEZbjXW2U1j4eD.jpg", "order": 6}, {"name": "Chelan Simmons", "character": "Chloe", "id": 27775, "credit_id": "52fe470fc3a36847f81213cd", "cast_id": 14, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 7}, {"name": "Travis Nelson", "character": "Chuck", "id": 236702, "credit_id": "52fe470fc3a36847f81213d1", "cast_id": 15, "profile_path": "/3BgBOSywPEimyMkruUolPjrfjLX.jpg", "order": 8}, {"name": "Alex Arsenault", "character": "Todd", "id": 212952, "credit_id": "52fe470fc3a36847f81213d5", "cast_id": 16, "profile_path": "/r4BX0CCnEUCDzOwgKPitCTp1tX9.jpg", "order": 9}, {"name": "Adam Beauchesne", "character": "Mitch", "id": 236703, "credit_id": "52fe470fc3a36847f81213d9", "cast_id": 17, "profile_path": "/nMQRz571nzwchTlgdhZPP0gLXuU.jpg", "order": 10}, {"name": "Joseph Allan Sutherland", "character": "Mike", "id": 236704, "credit_id": "52fe470fc3a36847f81213dd", "cast_id": 18, "profile_path": "/bnlUd1PUzWo0d7qsE4Fdk9f98vC.jpg", "order": 11}, {"name": "Karen Reigh", "character": "Cheryl", "id": 236705, "credit_id": "52fe470fc3a36847f81213e1", "cast_id": 19, "profile_path": "/4uqs8PvaNgFwxycCZwXJhVMRFNL.jpg", "order": 12}, {"name": "Tye Evans", "character": "Chad's Dad", "id": 236706, "credit_id": "52fe470fc3a36847f81213e5", "cast_id": 20, "profile_path": "/xs07QzuyGYAeDEeCghf5DIFOASF.jpg", "order": 13}, {"name": "Bill Baksa", "character": "BJ Hillbilly", "id": 236707, "credit_id": "52fe470fc3a36847f81213e9", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Eli Craig", "department": "Directing", "job": "Director", "credit_id": "52fe470fc3a36847f81213ab", "profile_path": null, "id": 52479}], "vote_average": 7.3, "runtime": 89}, "144340": {"poster_path": "/jxNBmnP2Q1hTWuqCPUTRavGrjLt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18000000, "overview": "Straitlaced Princeton University admissions officer Portia Nathan (Tina Fey) is caught off-guard when she makes a recruiting visit to an alternative high school overseen by her former college classmate, the freewheeling John Pressman (Paul Rudd). Pressman has surmised that Jeremiah (Nat Wolff), his gifted yet very unconventional student, might well be the son that Portia secretly gave up for adoption many years ago. Soon, Portia finds herself bending the rules for Jeremiah, putting at risk the life she thought she always wanted -- but in the process finding her way to a surprising and exhilarating life and romance she never dreamed of having.", "video": false, "id": 144340, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Admission", "tagline": "Let someone in.", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1814621", "adult": false, "backdrop_path": "/4HpJObAMo6SzZXACPnUMo9aX9Ob.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}], "release_date": "2013-03-22", "popularity": 0.87087117385596, "original_title": "Admission", "budget": 13000000, "cast": [{"name": "Tina Fey", "character": "Portia Nathan", "id": 56323, "credit_id": "52fe4b2e9251416c750faf87", "cast_id": 8, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 0}, {"name": "Paul Rudd", "character": "John Pressman", "id": 22226, "credit_id": "52fe4b2e9251416c750faf9f", "cast_id": 14, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Ann Harada", "character": "Mrs. Lafont", "id": 196181, "credit_id": "52fe4b2e9251416c750faf8b", "cast_id": 9, "profile_path": null, "order": 2}, {"name": "Ben Levin", "character": "Junior Lafont", "id": 1046140, "credit_id": "52fe4b2e9251416c750faf8f", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Dan Levy", "character": "James", "id": 66867, "credit_id": "52fe4b2e9251416c750faf93", "cast_id": 11, "profile_path": "/hHloLBNnosCsmHDatVZmW8vXZ9H.jpg", "order": 4}, {"name": "Maggie Keenan-Bolger", "character": "Girl on Tour", "id": 1023253, "credit_id": "52fe4b2e9251416c750faf97", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Gloria Reuben", "character": "Corinne", "id": 21369, "credit_id": "52fe4b2e9251416c750faf9b", "cast_id": 13, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 6}, {"name": "Wallace Shawn", "character": "Clearence", "id": 12900, "credit_id": "52fe4b2e9251416c750fafa3", "cast_id": 15, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 7}, {"name": "Elaine Kussack", "character": "Abby", "id": 187734, "credit_id": "52fe4b2e9251416c750fafa7", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Christopher Evan Welch", "character": "Brandt", "id": 60021, "credit_id": "52fe4b2e9251416c750fafab", "cast_id": 17, "profile_path": "/motP6X0ROpykbFuXe5QH43mHvHz.jpg", "order": 9}, {"name": "Michael Genadry", "character": "Ben", "id": 1161587, "credit_id": "52fe4b2e9251416c750fafaf", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Juliet Brett", "character": "Praying Applicant", "id": 1052686, "credit_id": "52fe4b2e9251416c750fafb3", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "John Brodsky", "character": "Smug Kid", "id": 1161588, "credit_id": "52fe4b2e9251416c750fafb7", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Camille Branton", "character": "Gymnast", "id": 1161589, "credit_id": "52fe4b2e9251416c750fafbb", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Sarita Choudhury", "character": "Rachel", "id": 20275, "credit_id": "52fe4b2e9251416c750fafbf", "cast_id": 22, "profile_path": "/2YNa0h5lCq5lMYyGFLJmSe09ZeW.jpg", "order": 14}, {"name": "Lily Tomlin", "character": "Susannah", "id": 10437, "credit_id": "52fe4b2e9251416c750fafc3", "cast_id": 23, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 15}, {"name": "Travaris Spears", "character": "Nelson", "id": 1189241, "credit_id": "52fe4b2e9251416c750fafc7", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Nat Wolff", "character": "Jeremiah", "id": 232006, "credit_id": "52fe4b2e9251416c750fafcb", "cast_id": 25, "profile_path": "/rLm4OjcAbkMwUwXpbRETv9CYIqq.jpg", "order": 17}, {"name": "Michael Sheen", "character": "Mark", "id": 3968, "credit_id": "52fe4b2e9251416c750fafcf", "cast_id": 26, "profile_path": "/rbDgZ38bn22MUC2mMpkrG0L6nhB.jpg", "order": 18}, {"name": "Sonya Walger", "character": "Helen", "id": 47953, "credit_id": "52fe4b2e9251416c750fafd3", "cast_id": 27, "profile_path": "/59bNOklO83gLE9XJVkQPbAlnlHI.jpg", "order": 19}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe4b2e9251416c750faf6b", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 5.4, "runtime": 107}, "87818": {"poster_path": "/cJvaW8eZCFS7JncM6HRKyykVTYC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29926388, "overview": "The film is composed of multiple comedy shorts presented through an overarching segment titled \"The Pitch\", in which Charlie Wessler, a mad screenwriter, is attempting to pitch a script to film executive Griffin Schraeder. After revealing several of the stories in his script, Wessler becomes agitated when Schraeder dismisses his outrageous ideas, and he pulls a gun on him and forces him to listen to multiple other stories before making Schraeder consult his manager, Bob Mone, to purchase the film.", "video": false, "id": 87818, "genres": [{"id": 35, "name": "Comedy"}], "title": "Movie 43", "tagline": "The biggest cast ever assembled for the most outrageous comedy ever made.", "vote_count": 320, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1333125", "adult": false, "backdrop_path": "/eGWVsZhgEyNpQ327udKz5iCLHcF.jpg", "production_companies": [{"name": "Witness Protection Films", "id": 8891}, {"name": "Relativity Media", "id": 7295}, {"name": "Virgin Produced", "id": 8852}, {"name": "Greenestreet Films", "id": 2150}, {"name": "Wessler Entertainment", "id": 8890}], "release_date": "2013-01-25", "popularity": 1.0297303686287, "original_title": "Movie 43", "budget": 6000000, "cast": [{"name": "Dennis Quaid", "character": "Charlie Wessler (segment \"The Pitch\")", "id": 6065, "credit_id": "52fe49d89251416c910baa8b", "cast_id": 72, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Griffin Schraeder (segment \"The Pitch\")", "id": 17141, "credit_id": "52fe49d89251416c910baa8f", "cast_id": 73, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Common", "character": "Bob Mone (segment \"The Pitch\")", "id": 4238, "credit_id": "52fe49d89251416c910baa93", "cast_id": 74, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 2}, {"name": "Charlie Saxton", "character": "Jay (segment \"The Pitch\")", "id": 95356, "credit_id": "52fe49d89251416c910baa97", "cast_id": 75, "profile_path": "/rbbNI51dRJlNtUtkCBQXUPjYBLe.jpg", "order": 3}, {"name": "Will Sasso", "character": "Jerry (segment \"The Pitch\")", "id": 39125, "credit_id": "52fe49d89251416c910baa9b", "cast_id": 76, "profile_path": "/x4hlPAdmkXwLtHimIp8kjy9HuL9.jpg", "order": 4}, {"name": "Odessa Rae", "character": "Danita (segment \"The Pitch\")", "id": 27579, "credit_id": "52fe49d89251416c910baa9f", "cast_id": 77, "profile_path": "/yDTam4xkQWJH5qDUKtuoL26Xc8P.jpg", "order": 5}, {"name": "Seth MacFarlane", "character": "Seth MacFarlane (segment", "id": 52139, "credit_id": "52fe49d89251416c910baaa3", "cast_id": 78, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 6}, {"name": "Mike Meldman", "character": "Mike Meldman (segment \"The Pitch\")", "id": 1281299, "credit_id": "52fe49d99251416c910bac11", "cast_id": 140, "profile_path": null, "order": 7}, {"name": "Hugh Jackman", "character": "Davis (segment \"The Catch\")", "id": 6968, "credit_id": "52fe49d79251416c910ba9b5", "cast_id": 14, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 8}, {"name": "Kate Winslet", "character": "Beth (segment \"The Catch\")", "id": 204, "credit_id": "52fe49d79251416c910ba9bd", "cast_id": 17, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 9}, {"name": "Julie Claire", "character": "Pamela (segment \"The Catch\")", "id": 1212483, "credit_id": "52fe49d99251416c910bac19", "cast_id": 142, "profile_path": "/sH4sPaNli1Vmf6nwvQkqcfeMCil.jpg", "order": 10}, {"name": "Katie Finneran", "character": "Angie (segment \"The Catch\")", "id": 58771, "credit_id": "52fe49d99251416c910bac15", "cast_id": 141, "profile_path": "/5bFxhH09QG5RXjyaUXIFWN3kSnw.jpg", "order": 11}, {"name": "Roy Jenkins", "character": "Ray (segment \"The Catch\")", "id": 1237248, "credit_id": "52fe49d99251416c910bac1d", "cast_id": 143, "profile_path": null, "order": 12}, {"name": "Rocky Madigan", "character": "Waiter Jake (segment \"The Catch\")", "id": 1281300, "credit_id": "52fe49d99251416c910bac21", "cast_id": 144, "profile_path": null, "order": 13}, {"name": "Anna Madigan", "character": "Abby (segment \"The Catch\")", "id": 1281301, "credit_id": "52fe49d99251416c910bac25", "cast_id": 145, "profile_path": null, "order": 14}, {"name": "Jeremy Allen White", "character": "Kevin (segment \"Homeschooled\")", "id": 206905, "credit_id": "52fe49d89251416c910baa87", "cast_id": 71, "profile_path": "/9zJ1f35J651eIacipXaYb32ePlh.jpg", "order": 15}, {"name": "Liev Schreiber", "character": "Robert (segment \"Homeschooled\")", "id": 23626, "credit_id": "52fe49d89251416c910baa1f", "cast_id": 43, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 16}, {"name": "Naomi Watts", "character": "Samantha (segment \"Homeschooled\")", "id": 3489, "credit_id": "52fe49d79251416c910ba9c9", "cast_id": 20, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 17}, {"name": "Alex Cranmer", "character": "Sean (segment \"Homeschooled\")", "id": 1217584, "credit_id": "52fe49d99251416c910bac29", "cast_id": 146, "profile_path": null, "order": 18}, {"name": "Austin Cope", "character": "High School Student (segment \"Homeschooled\")", "id": 1281302, "credit_id": "52fe49d99251416c910bac31", "cast_id": 148, "profile_path": null, "order": 19}, {"name": "Julie Ann Emery", "character": "Clare (segment \"Homeschooled\")", "id": 55256, "credit_id": "52fe49d99251416c910bac2d", "cast_id": 147, "profile_path": "/9E6kRGO5gWoZ8NQOwkOXw5roe3U.jpg", "order": 20}, {"name": "Anna Faris", "character": "Vanessa (segment \"The Proposition\")", "id": 1772, "credit_id": "52fe49d79251416c910ba9c1", "cast_id": 18, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 21}, {"name": "Chris Pratt", "character": "Jason (segment \"The Proposition\")", "id": 73457, "credit_id": "52fe49d89251416c910baa23", "cast_id": 44, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 22}, {"name": "J. B. Smoove", "character": "Larry (segment \"The Proposition\")", "id": 65920, "credit_id": "52fe49d89251416c910baa27", "cast_id": 45, "profile_path": "/aT4Cw7HTDvdnMcJmTuW4BQqLI3x.jpg", "order": 23}, {"name": "Jarrad Paul", "character": "Bill (segment \"The Proposition\")", "id": 62763, "credit_id": "52fe49d99251416c910bac3d", "cast_id": 151, "profile_path": null, "order": 24}, {"name": "Maria Arc\u00e9", "character": "Christine (segment \"The Proposition\")", "id": 78843, "credit_id": "52fe49d99251416c910bac35", "cast_id": 149, "profile_path": null, "order": 25}, {"name": "Aaron LaPlante", "character": "Friend (segment \"The Proposition\")", "id": 1281304, "credit_id": "52fe49d99251416c910bac39", "cast_id": 150, "profile_path": null, "order": 26}, {"name": "Kieran Culkin", "character": "Neil (segment \"Veronica\")", "id": 18793, "credit_id": "52fe49d89251416c910baa2b", "cast_id": 46, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 27}, {"name": "Emma Stone", "character": "Veronica (segment \"Veronica\")", "id": 54693, "credit_id": "52fe49d79251416c910ba9a9", "cast_id": 11, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 28}, {"name": "Arthur French", "character": "Old Man (segment \"Veronica\")", "id": 91827, "credit_id": "52fe49d99251416c910bac41", "cast_id": 152, "profile_path": null, "order": 29}, {"name": "Brooke Davis", "character": "Tall Lady (segment \"Veronica\")", "id": 156887, "credit_id": "52fe49d99251416c910bac45", "cast_id": 153, "profile_path": null, "order": 30}, {"name": "John Shuman", "character": "Short Guy (segment \"Veronica\")", "id": 189146, "credit_id": "52fe49d99251416c910bac49", "cast_id": 154, "profile_path": null, "order": 31}, {"name": "Cathy Cliften", "character": "Robert (segment \"iBabe\")", "id": 1281305, "credit_id": "52fe49d99251416c910bac4d", "cast_id": 155, "profile_path": null, "order": 32}, {"name": "Cherina Monteniques Scott", "character": "iBabe #2 (segment \"iBabe\")", "id": 1281306, "credit_id": "52fe49d99251416c910bac51", "cast_id": 156, "profile_path": null, "order": 33}, {"name": "Richard Gere", "character": "Robert (segment \"iBabe\")", "id": 1205, "credit_id": "52fe49d89251416c910baa2f", "cast_id": 47, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 34}, {"name": "Kate Bosworth", "character": "Arlene (segment \"iBabe\")", "id": 7517, "credit_id": "52fe49d89251416c910baa37", "cast_id": 49, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 35}, {"name": "Jack McBrayer", "character": "Brian (segment \"iBabe\")", "id": 58737, "credit_id": "52fe49d89251416c910baa33", "cast_id": 48, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 36}, {"name": "Aasif Mandvi", "character": "Robert (segment \"iBabe\")", "id": 20644, "credit_id": "52fe49d89251416c910baa3b", "cast_id": 50, "profile_path": "/9Ui6ocqnWxqNjv0o0RnFTugTwvr.jpg", "order": 37}, {"name": "Zach Lasry", "character": "Boy (segment \"iBabe\")", "id": 1281307, "credit_id": "52fe49d99251416c910bac59", "cast_id": 158, "profile_path": null, "order": 38}, {"name": "Darby Lynn Totten", "character": "Woman (segment \"iBabe\")", "id": 1281308, "credit_id": "52fe49d99251416c910bac55", "cast_id": 157, "profile_path": null, "order": 39}, {"name": "Marc Ambrose", "character": "Chappy (segment \"iBabe\")", "id": 1137065, "credit_id": "52fe49d99251416c910bac5d", "cast_id": 159, "profile_path": null, "order": 40}, {"name": "Justin Long", "character": "Fake Wonder Woman (segment \"Super Hero Speed Dating\")", "id": 15033, "credit_id": "52fe49d89251416c910baa3f", "cast_id": 51, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 41}, {"name": "Jason Sudeikis", "character": "Fake Batman (segment \"Super Hero Speed Dating\")", "id": 58224, "credit_id": "52fe49d89251416c910baa43", "cast_id": 52, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 42}, {"name": "Uma Thurman", "character": "Fake Lois Lane (segment \"Super Hero Speed Dating\")", "id": 139, "credit_id": "52fe49d89251416c910baa47", "cast_id": 53, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 43}, {"name": "Bobby Cannavale", "character": "Fake Superman (segment \"Super Hero Speed Dating\")", "id": 21127, "credit_id": "52fe49d89251416c910baa4b", "cast_id": 54, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 44}, {"name": "Kristen Bell", "character": "Fake Supergirl (segment \"Super Hero Speed Dating\")", "id": 40462, "credit_id": "52fe49d79251416c910ba9ad", "cast_id": 12, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 45}, {"name": "John Hodgman", "character": "Fake Penguin (segment \"Super Hero Speed Dating\")", "id": 77344, "credit_id": "52fe49d89251416c910baa4f", "cast_id": 55, "profile_path": "/qMFcDuOUgz3HkD5OMjkHYa677VE.jpg", "order": 46}, {"name": "Leslie Bibb", "character": "Fake Wonder Woman (segment \"Super Hero Speed Dating\")", "id": 57451, "credit_id": "52fe49d79251416c910ba9c5", "cast_id": 19, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 47}, {"name": "Will Carlough", "character": "Fake Riddler (segment \"Super Hero Speed Dating\")", "id": 938683, "credit_id": "52fe49d99251416c910bac61", "cast_id": 160, "profile_path": null, "order": 48}, {"name": "Katrina Bowden", "character": "Woman (segment \"Super Hero Speed Dating\")", "id": 74618, "credit_id": "52fe49d89251416c910baaa7", "cast_id": 79, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 49}, {"name": "Phil Crowley", "character": "Narrator (segment \"Machine Kids\")", "id": 220546, "credit_id": "52fe49d99251416c910bac65", "cast_id": 161, "profile_path": null, "order": 50}, {"name": "Ed Blythe", "character": "Vending Machine Man (segment \"Machine Kids\")", "id": 1281309, "credit_id": "52fe49d99251416c910bac69", "cast_id": 162, "profile_path": null, "order": 51}, {"name": "Olivia Roberts Payne", "character": "Vending Machine Child (segment \"Machine Kids\")", "id": 1281310, "credit_id": "52fe49d99251416c910bac6d", "cast_id": 163, "profile_path": null, "order": 52}, {"name": "Monique Delee", "character": "Vending Machine Child (segment \"Machine Kids\")", "id": 1281311, "credit_id": "52fe49d99251416c910bac71", "cast_id": 164, "profile_path": null, "order": 53}, {"name": "Jaron Henrie-McCrea", "character": "ATM Man (segment \"Machine Kids\")", "id": 1109615, "credit_id": "52fe49d99251416c910bac75", "cast_id": 166, "profile_path": null, "order": 54}, {"name": "Sebastian Brodziak", "character": "ATM Child (segment \"Machine Kids\")", "id": 1281312, "credit_id": "52fe49d99251416c910bac79", "cast_id": 167, "profile_path": null, "order": 55}, {"name": "Severyn K. Brodziak", "character": "ATM Child (segment \"Machine Kids\")", "id": 1281313, "credit_id": "52fe49d99251416c910bac7d", "cast_id": 168, "profile_path": null, "order": 56}, {"name": "Rightor Doyle", "character": "Photocopier Man 1 (segment \"Machine Kids\")", "id": 209728, "credit_id": "52fe49d99251416c910bac81", "cast_id": 169, "profile_path": null, "order": 57}, {"name": "Raven Burnett", "character": "Photocopier Man 2 (segment \"Machine Kids\")", "id": 1281314, "credit_id": "52fe49d99251416c910bac85", "cast_id": 170, "profile_path": null, "order": 58}, {"name": "Montana Byrne", "character": "Photocopier Child (segment \"Machine Kids\")", "id": 1281315, "credit_id": "52fe49d99251416c910bac89", "cast_id": 171, "profile_path": null, "order": 59}, {"name": "Jarrett Carter", "character": "Photocopier Child (segment \"Machine Kids\")", "id": 1281316, "credit_id": "52fe49d99251416c910bac8d", "cast_id": 172, "profile_path": null, "order": 60}, {"name": "Phillip Michaels", "character": "Photocopier Child (segment \"Machine Kids\")", "id": 1281317, "credit_id": "52fe49d99251416c910bac91", "cast_id": 173, "profile_path": null, "order": 61}, {"name": "Christopher Mintz-Plasse", "character": "Mikey (segment \"Middleschool Date\")", "id": 54691, "credit_id": "52fe49d89251416c910baa53", "cast_id": 56, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 62}, {"name": "Chlo\u00eb Grace Moretz", "character": "Amanda (segment \"Middleschool Date\")", "id": 56734, "credit_id": "52fe49d89251416c910baa1b", "cast_id": 42, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 63}, {"name": "Patrick Warburton", "character": "Dad (segment \"Middleschool Date\")", "id": 9657, "credit_id": "52fe49d89251416c910baa57", "cast_id": 57, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 64}, {"name": "Jimmy Bennett", "character": "Nathan (segment \"Middleschool Date\")", "id": 6860, "credit_id": "52fe49d89251416c910baa5b", "cast_id": 58, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 65}, {"name": "Matt Walsh", "character": "Amanda's Dad (segment \"Middleschool Date\")", "id": 59841, "credit_id": "52fe49d89251416c910baab1", "cast_id": 81, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 66}, {"name": "Coleen Hoffman", "character": "Blonde Woman (segment \"Tampax\")", "id": 1281318, "credit_id": "52fe49d99251416c910bac95", "cast_id": 174, "profile_path": null, "order": 67}, {"name": "Elbe Van Der Merwe", "character": "Brunette Woman (segment \"Tampax\")", "id": 1281319, "credit_id": "52fe49d99251416c910bac99", "cast_id": 175, "profile_path": null, "order": 68}, {"name": "Gerard Butler", "character": "Leprechaun 1 & 2 (segment \"Happy Birthday\")", "id": 17276, "credit_id": "52fe49d79251416c910ba9b9", "cast_id": 16, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 69}, {"name": "Seann William Scott", "character": "Pete (segment \"Happy Birthday\")", "id": 57599, "credit_id": "52fe49d89251416c910baa63", "cast_id": 61, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 70}, {"name": "Johnny Knoxville", "character": "Pete (segment \"Happy Birthday\")", "id": 9656, "credit_id": "52fe49d89251416c910baa5f", "cast_id": 60, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 71}, {"name": "Esti Ginzburg", "character": "Fairy (segment \"Happy Birthday\")", "id": 223132, "credit_id": "52fe49d99251416c910bac9d", "cast_id": 176, "profile_path": null, "order": 72}, {"name": "Halle Berry", "character": "Emily (segment \"Truth or Dare\")", "id": 4587, "credit_id": "52fe49d89251416c910baa67", "cast_id": 62, "profile_path": "/AmCXHowNbUXpNf41dNrxNB0naM2.jpg", "order": 73}, {"name": "Stephen Merchant", "character": "Donald (segment \"Truth or Dare\")", "id": 39189, "credit_id": "52fe49d89251416c910baa6b", "cast_id": 63, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 74}, {"name": "Sayed Badreya", "character": "Large Man (segment \"Truth or Dare\")", "id": 173810, "credit_id": "52fe49d99251416c910baca1", "cast_id": 177, "profile_path": "/wMpSb8QfErr5a0NBKWc2a3Zxj47.jpg", "order": 75}, {"name": "Nicole 'Snooki' Polizzi", "character": "Snooki (segment \"Truth or Dare\") (as Nicole Elizabeth Polizzi)", "id": 224173, "credit_id": "52fe49d89251416c910baa6f", "cast_id": 64, "profile_path": "/tHBeHEBn0YWI7NuO0PJfLgrs2FJ.jpg", "order": 76}, {"name": "Caryl Lippman West", "character": "Waitress (segment \"Truth or Dare\")", "id": 1281320, "credit_id": "52fe49d99251416c910baca5", "cast_id": 178, "profile_path": null, "order": 77}, {"name": "Ricki Lander", "character": "Nurse Elizabeth (segment \"Truth or Dare\")", "id": 210842, "credit_id": "52fe49d99251416c910baca9", "cast_id": 179, "profile_path": "/9B9h9aK16tZpbdDIH1XJR62o5Ls.jpg", "order": 78}, {"name": "Paloma Felisberto", "character": "Bachelorette Party Girl (segment \"Truth or Dare\")", "id": 1281321, "credit_id": "52fe49d99251416c910bacad", "cast_id": 180, "profile_path": null, "order": 79}, {"name": "Jasper Grey", "character": "Patron (segment \"Truth or Dare\")", "id": 1281322, "credit_id": "52fe49d99251416c910bacb1", "cast_id": 181, "profile_path": null, "order": 80}, {"name": "Ben Harris", "character": "Blanco the Bartender (segment \"Truth or Dare\")", "id": 1281323, "credit_id": "52fe49d99251416c910bacb5", "cast_id": 182, "profile_path": null, "order": 81}, {"name": "Zen Gesner", "character": "Stripper (segment \"Truth or Dare\")", "id": 60672, "credit_id": "52fe49d99251416c910bacb9", "cast_id": 183, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 82}, {"name": "Terrence Howard", "character": "Coach Jackson (segment \"Victory's Glory\")", "id": 18288, "credit_id": "52fe49d89251416c910baa73", "cast_id": 65, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 83}, {"name": "Aaron Jennings", "character": "Anthony (segment \"Victory's Glory\")", "id": 1119691, "credit_id": "52fe49d99251416c910bacbd", "cast_id": 184, "profile_path": "/13UQ3tRjxcYX88McTpJpcs0ZFjC.jpg", "order": 84}, {"name": "Jared Dudley", "character": "Moses (segment \"Victory's Glory\")", "id": 1281324, "credit_id": "52fe49d99251416c910bacc1", "cast_id": 185, "profile_path": null, "order": 85}, {"name": "Corey Wayne Brewer", "character": "Wallace (segment \"Victory's Glory\")", "id": 1281325, "credit_id": "52fe49d99251416c910bacc5", "cast_id": 186, "profile_path": null, "order": 86}, {"name": "Larry Eugene Sanders II", "character": "Bishop (segment \"Victory's Glory\")", "id": 1281326, "credit_id": "52fe49d99251416c910bacc9", "cast_id": 187, "profile_path": null, "order": 87}, {"name": "Jay Ellis", "character": "Lucious (segment \"Victory's Glory\")", "id": 151680, "credit_id": "52fe49d99251416c910baccd", "cast_id": 188, "profile_path": null, "order": 88}, {"name": "Brian Flaccus", "character": "White Guy 1 (segment \"Victory's Glory\")", "id": 1281327, "credit_id": "52fe49d99251416c910bacd1", "cast_id": 189, "profile_path": null, "order": 89}, {"name": "Brett Davern", "character": "White Guy 2 (segment \"Victory's Glory\")", "id": 116295, "credit_id": "52fe49d99251416c910bacd5", "cast_id": 190, "profile_path": "/AfuaJGco1bfmj1l3UJoEWZQQvCC.jpg", "order": 90}, {"name": "Evan Dumouchel", "character": "White Guy 3 (segment \"Victory's Glory\")", "id": 1281328, "credit_id": "52fe49d99251416c910bacd9", "cast_id": 191, "profile_path": null, "order": 91}, {"name": "Sean Rosales", "character": "White Guy 4 (segment \"Victory's Glory\")", "id": 1078839, "credit_id": "52fe49d99251416c910bacdd", "cast_id": 192, "profile_path": null, "order": 92}, {"name": "Logan Holladay", "character": "White Guy 5 (segment \"Victory's Glory\")", "id": 984363, "credit_id": "52fe49d99251416c910bace1", "cast_id": 193, "profile_path": null, "order": 93}, {"name": "Mandy Kowalski", "character": "Cheerleader (segment \"Victory's Glory\")", "id": 1005944, "credit_id": "52fe49d99251416c910bace5", "cast_id": 194, "profile_path": null, "order": 94}, {"name": "Eric Stuart", "character": "Narrator (segment \"Victory's Glory\")", "id": 67833, "credit_id": "52fe49d99251416c910bace9", "cast_id": 195, "profile_path": "/bJrK0dfooRS2h7pSkVMLgFqesi3.jpg", "order": 95}, {"name": "Elizabeth Banks", "character": "Amy (segment \"Beezel\")", "id": 9281, "credit_id": "52fe49d79251416c910ba9b1", "cast_id": 13, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 96}, {"name": "Josh Duhamel", "character": "Anson (segment \"Beezel\")", "id": 19536, "credit_id": "52fe49d89251416c910baa77", "cast_id": 66, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 97}, {"name": "Emily Alyn Lind", "character": "Birthday Girl (segment \"Beezel\")", "id": 112742, "credit_id": "52fe49d99251416c910baced", "cast_id": 196, "profile_path": null, "order": 98}, {"name": "Michelle Gunn", "character": "Mommy (segment \"Beezel\")", "id": 85101, "credit_id": "52fe49d99251416c910bacf1", "cast_id": 197, "profile_path": null, "order": 99}, {"name": "Christina Linhardt", "character": "Party Clown (segment \"Beezel\")", "id": 1281329, "credit_id": "52fe49d99251416c910bacf5", "cast_id": 198, "profile_path": null, "order": 100}, {"name": "Devin Eash", "character": "Baxter (uncredited)", "id": 1144389, "credit_id": "52fe49d89251416c910baa7b", "cast_id": 67, "profile_path": null, "order": 102}, {"name": "Mark L. Young", "character": "Calvin (uncredited)", "id": 81197, "credit_id": "52fe49d89251416c910baa83", "cast_id": 69, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 103}, {"name": "Julie McNiven", "character": "ATM Woman (segment \"Machine Kids\")", "id": 1222219, "credit_id": "52fe49d99251416c910bacf9", "cast_id": 199, "profile_path": "/jyjtrHTQeagGFynt49RFc6PdU2i.jpg", "order": 104}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba981", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}, {"name": "Elizabeth Banks", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba987", "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "id": 9281}, {"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba98d", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}, {"name": "Rusty Cundieff", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba993", "profile_path": null, "id": 153882}, {"name": "James Duffy", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9cf", "profile_path": null, "id": 938681}, {"name": "Griffin Dunne", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9d5", "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "id": 2171}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9db", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}, {"name": "Patrik Forsberg", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9e1", "profile_path": null, "id": 938682}, {"name": "James Gunn", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9e7", "profile_path": "/lTXlad2538FyIbElyDyO5jCTeCX.jpg", "id": 15218}, {"name": "Bob Odenkirk", "department": "Directing", "job": "Director", "credit_id": "52fe49d79251416c910ba9ed", "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "id": 59410}, {"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe49d89251416c910baaad", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 4.6, "runtime": 90}, "5902": {"poster_path": "/ormdFwSHGVgsWdrzP5pRPaA6nme.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50750000, "overview": "Tells the story of operation Market Garden. A failed attempt by the allies in the latter stages of WWII to end the war quickly by securing three bridges in Holland allowing access over the Rhine into Germany. A combination of poor allied intelligence and the presence of two crack German panzer divisions meant that the final part of this operation (the bridge in Arnhem over the Rhine) was doomed to failure.", "video": false, "id": 5902, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "A Bridge Too Far", "tagline": "Out of the sky comes the screen's most incredible spectacle of men and war!", "vote_count": 55, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0075784", "adult": false, "backdrop_path": "/hmmeABwz4MWH3eelrMpq97dU6Bw.jpg", "production_companies": [{"name": "Joseph E. Levine Productions", "id": 11503}], "release_date": "1977-06-15", "popularity": 1.05915665343076, "original_title": "A Bridge Too Far", "budget": 22000000, "cast": [{"name": "Dirk Bogarde", "character": "Lt. Gen. Fredrick. Browning", "id": 21605, "credit_id": "52fe442bc3a36847f808665d", "cast_id": 4, "profile_path": "/bVGGxCReJGOO9Iq80B4P7EjZYwg.jpg", "order": 0}, {"name": "James Caan", "character": "Sgt. Eddie Dohun", "id": 3085, "credit_id": "52fe442bc3a36847f8086661", "cast_id": 5, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 1}, {"name": "Michael Caine", "character": "Lt. Col. John O.E. Vandeleur", "id": 3895, "credit_id": "52fe442bc3a36847f8086665", "cast_id": 6, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 2}, {"name": "Sean Connery", "character": "Maj. Gen. Robert E. Urquhart", "id": 738, "credit_id": "52fe442bc3a36847f8086669", "cast_id": 7, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 3}, {"name": "Edward Fox", "character": "Lt. Gen. Brian G. Horrocks", "id": 9126, "credit_id": "52fe442bc3a36847f808666d", "cast_id": 8, "profile_path": "/iNk3GvWMWm37PjsidHY9M6Unmwm.jpg", "order": 4}, {"name": "Elliott Gould", "character": "Col. Robert Stout", "id": 827, "credit_id": "52fe442bc3a36847f8086671", "cast_id": 9, "profile_path": "/bo5jSwWyFRsKVAkELT9n7AKQqMk.jpg", "order": 5}, {"name": "Gene Hackman", "character": "Maj. Gen. Stanislaw F. Sosabowski", "id": 193, "credit_id": "52fe442bc3a36847f8086675", "cast_id": 10, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 6}, {"name": "Anthony Hopkins", "character": "Lt. Col. John D. Frost", "id": 4173, "credit_id": "52fe442bc3a36847f8086679", "cast_id": 11, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 7}, {"name": "Hardy Kr\u00fcger", "character": "Generalmajor der Waffen-SS Karl Ludwig", "id": 37777, "credit_id": "52fe442bc3a36847f80866c7", "cast_id": 26, "profile_path": "/yZd3hiAk3ZR3LdsPXdwtjNk05hR.jpg", "order": 8}, {"name": "Laurence Olivier", "character": "Dr. Jan Spaander", "id": 3359, "credit_id": "52fe442bc3a36847f80866a1", "cast_id": 19, "profile_path": "/n8jDSq91O95HSbtCJLRsM367kKx.jpg", "order": 9}, {"name": "Ryan O'Neal", "character": "Brig. Gen. James M. Gavin", "id": 31070, "credit_id": "52fe442bc3a36847f80866a5", "cast_id": 20, "profile_path": "/fTqIq5voXV1hQd3Ol4VtnUWy7j2.jpg", "order": 10}, {"name": "Robert Redford", "character": "Maj. Julian Cook", "id": 4135, "credit_id": "52fe442bc3a36847f8086695", "cast_id": 16, "profile_path": "/b4mJIBWvEyzB8yyZWbmvfzwrdtp.jpg", "order": 11}, {"name": "Maximilian Schell", "character": "General der Waffen-SS Wilhelm Bittrich", "id": 12150, "credit_id": "52fe442bc3a36847f808669d", "cast_id": 18, "profile_path": "/xhjyQpOmwDwU48Kq2b1XCEO9G7E.jpg", "order": 12}, {"name": "Liv Ullmann", "character": "Kate ter Horst - \"the Angel of Arnhem\"", "id": 11916, "credit_id": "52fe442bc3a36847f8086699", "cast_id": 17, "profile_path": "/8fJYPEx6RCt2QjjnMkUyREYSJCp.jpg", "order": 13}], "directors": [{"name": "Richard Attenborough", "department": "Directing", "job": "Director", "credit_id": "52fe442bc3a36847f808664d", "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "id": 4786}], "vote_average": 6.8, "runtime": 175}, "87825": {"poster_path": "/vNWFhlTseaTupYmpnXxJLoShJe3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.", "video": false, "id": 87825, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Trouble with the Curve", "tagline": "Whatever Life Throws at You", "vote_count": 120, "homepage": "http://troublewiththecurve.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2083383", "adult": false, "backdrop_path": "/9fN6z7JcO5o3jDmJ0fHSq4PXwUT.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Malpaso Productions", "id": 171}], "release_date": "2012-09-21", "popularity": 0.591135806526268, "original_title": "Trouble with the Curve", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Gus", "id": 190, "credit_id": "52fe49da9251416c910baefb", "cast_id": 15, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Amy Adams", "character": "Mickey", "id": 9273, "credit_id": "52fe49da9251416c910baeef", "cast_id": 12, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Johnny Flanagan", "id": 12111, "credit_id": "52fe49da9251416c910baeeb", "cast_id": 10, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "John Goodman", "character": "Pete Klein", "id": 1230, "credit_id": "52fe49da9251416c910baeff", "cast_id": 16, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Matthew Lillard", "character": "Phillip Sanderson", "id": 26457, "credit_id": "52fe49da9251416c910baef3", "cast_id": 13, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 4}, {"name": "Joe Massingill", "character": "Bo Gentry", "id": 935497, "credit_id": "52fe49da9251416c910baef7", "cast_id": 14, "profile_path": "/1b91bnQqdkkTUuwbvo3WbIBmhtU.jpg", "order": 5}, {"name": "Robert Patrick", "character": "Vince", "id": 418, "credit_id": "52fe49da9251416c910baf03", "cast_id": 17, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 6}, {"name": "Ed Lauter", "character": "Max", "id": 21523, "credit_id": "52fe49da9251416c910baf07", "cast_id": 18, "profile_path": "/cr9WYGps3NZXkSFKrpB9BKnz0yo.jpg", "order": 7}, {"name": "Chelcie Ross", "character": "Smitty", "id": 10486, "credit_id": "52fe49da9251416c910baf0b", "cast_id": 19, "profile_path": "/gtUOc36bK5MrjdRPQJi1b0cc0LT.jpg", "order": 8}, {"name": "Peter Hermann", "character": "Greg", "id": 50117, "credit_id": "52fe49da9251416c910baf4f", "cast_id": 32, "profile_path": "/owkeQDjexezNZ4ENv1UVkrG6hED.jpg", "order": 9}, {"name": "Matt Bush", "character": "Danny", "id": 130227, "credit_id": "52fe49da9251416c910baf0f", "cast_id": 20, "profile_path": "/kyBLgeVnvnsx3zOZXlZwSF5BFEE.jpg", "order": 10}, {"name": "Scott Eastwood", "character": "Billy Clark", "id": 928572, "credit_id": "52fe49da9251416c910baf13", "cast_id": 21, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 11}, {"name": "Jay Galloway", "character": "Rigo Sanchez", "id": 1127807, "credit_id": "52fe49da9251416c910baf17", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Bob Gunton", "character": "Watson", "id": 4029, "credit_id": "52fe49da9251416c910baf77", "cast_id": 42, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 13}, {"name": "Jack Gilpin", "character": "Schwartz", "id": 77023, "credit_id": "52fe49da9251416c910baf7b", "cast_id": 43, "profile_path": "/cYaMYTd4TawSeF9eUSwXR1rP3th.jpg", "order": 14}, {"name": "George Wyner", "character": "Rosenbloom", "id": 14669, "credit_id": "52fe49da9251416c910baf6f", "cast_id": 40, "profile_path": "/hB6RJqnUhodxHRBdWbDnWIL73Io.jpg", "order": 15}, {"name": "James Patrick Freetly", "character": "Todd", "id": 1181555, "credit_id": "52fe49da9251416c910baf4b", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Norma Alvarez", "character": "Grace Sanchez", "id": 1181556, "credit_id": "52fe49da9251416c910baf53", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Rus Blackwell", "character": "Rick", "id": 52483, "credit_id": "52fe49da9251416c910baf73", "cast_id": 41, "profile_path": "/xYMkiZQuoramEeabUPnrtiS19vn.jpg", "order": 18}, {"name": "Raymond Anthony Thomas", "character": "Lucious", "id": 1181562, "credit_id": "52fe49da9251416c910baf7f", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Josh Warren", "character": "Pitcher", "id": 1181557, "credit_id": "52fe49da9251416c910baf57", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Seth Meriwether", "character": "Wilson", "id": 1181558, "credit_id": "52fe49da9251416c910baf5b", "cast_id": 35, "profile_path": null, "order": 21}, {"name": "Bart Hansard", "character": "Bo's Father", "id": 1181559, "credit_id": "52fe49da9251416c910baf5f", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Patricia French", "character": "Diner Waitress", "id": 128207, "credit_id": "52fe49da9251416c910baf63", "cast_id": 37, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 23}, {"name": "Tom Nowicki", "character": "Red Sox GM", "id": 94854, "credit_id": "52fe49da9251416c910baf67", "cast_id": 38, "profile_path": "/nm6XdgwH6IDE4nroYQwhNtlFtn9.jpg", "order": 24}, {"name": "Julia Walters", "character": "Young Mickey", "id": 587508, "credit_id": "52fe49da9251416c910baf6b", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Tyler Silva", "character": "Carlos Sanchez", "id": 1181564, "credit_id": "52fe49da9251416c910baf83", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Darren Le Gallo", "character": "Nurse", "id": 1181565, "credit_id": "52fe49da9251416c910baf87", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Clayton Landey", "character": "Manager", "id": 101013, "credit_id": "52fe49db9251416c910baf8b", "cast_id": 47, "profile_path": "/4e1GziFKqLh5V5tEnqwT1NvMMvL.jpg", "order": 28}, {"name": "Matthew Brady", "character": "Swannanoa Manager (as Matt Brady)", "id": 1181566, "credit_id": "52fe49db9251416c910baf8f", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Jackie Prucha", "character": "Secretary", "id": 223020, "credit_id": "52fe49db9251416c910baf93", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Ricky Muse", "character": "Jimmy", "id": 1181570, "credit_id": "52fe49db9251416c910baf97", "cast_id": 50, "profile_path": "/xThzRMWFym3eHMJ4mlWMEW367NX.jpg", "order": 31}, {"name": "Tom Dreesen", "character": "Rock", "id": 180649, "credit_id": "52fe49db9251416c910baf9b", "cast_id": 51, "profile_path": "/vWtJg0UNtXmdrfCYhpocSomU5zM.jpg", "order": 32}], "directors": [{"name": "Robert Lorenz", "department": "Directing", "job": "Director", "credit_id": "52fe49da9251416c910baeb7", "profile_path": "/tvDhilrjknm4uQZoOcUgRSd31uN.jpg", "id": 4746}], "vote_average": 6.7, "runtime": 111}, "87826": {"poster_path": "/sB7UeSr1D4uIhTm76GdtA1e7F0t.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school's music program.", "video": false, "id": 87826, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "Here Comes the Boom", "tagline": "No one will fight for his students like Mr. Voss.", "vote_count": 274, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1648179", "adult": false, "backdrop_path": "/ftgPQvQCKP4IBd0jA7HJRDWqlmu.jpg", "production_companies": [{"name": "Broken Road Productions", "id": 8000}, {"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2012-10-12", "popularity": 1.49136192055916, "original_title": "Here Comes the Boom", "budget": 0, "cast": [{"name": "Salma Hayek", "character": "Bella Flores", "id": 3136, "credit_id": "52fe49db9251416c910bb00d", "cast_id": 1011, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 0}, {"name": "Kevin James", "character": "Scott Voss", "id": 32895, "credit_id": "52fe49db9251416c910bb011", "cast_id": 1012, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 1}, {"name": "Henry Winkler", "character": "Marty", "id": 31903, "credit_id": "52fe49db9251416c910bb015", "cast_id": 1013, "profile_path": "/o3QkTZkDYMkKYJphYJkvMSx8eB3.jpg", "order": 2}, {"name": "Joe Rogan", "character": "Joe Rogan", "id": 91609, "credit_id": "52fe49db9251416c910bb019", "cast_id": 1014, "profile_path": "/uiUuuvsVTyFPul78eO6v9BlpZDr.jpg", "order": 3}, {"name": "Reggie Lee", "character": "Mr. De La Cruz", "id": 22075, "credit_id": "52fe49db9251416c910bb01d", "cast_id": 1015, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 4}, {"name": "Greg Germann", "character": "Principal Becher", "id": 19974, "credit_id": "52fe49db9251416c910bb021", "cast_id": 1016, "profile_path": "/oP3ogELIPIaWxShJst905uuOn3L.jpg", "order": 5}, {"name": "Bas Rutten", "character": "Niko", "id": 89402, "credit_id": "52fe49db9251416c910bb025", "cast_id": 1017, "profile_path": "/zP3CzVPJiGmkGSxiMYQeXmpV6lM.jpg", "order": 6}, {"name": "Charice", "character": "Malia De La Cruz", "id": 232500, "credit_id": "52fe49db9251416c910bb029", "cast_id": 1018, "profile_path": "/ntg0onXrw3SmM1Eh3v0GrfWudJu.jpg", "order": 7}, {"name": "Nicholas R. Grava", "character": "Jacob", "id": 935500, "credit_id": "52fe49db9251416c910bb02d", "cast_id": 1019, "profile_path": "/6OWvJpqCImPShLaEGzWBmHBRkDZ.jpg", "order": 8}, {"name": "Frank Coraci", "character": "Disoriented Gym Patron", "id": 57370, "credit_id": "52fe49db9251416c910bb031", "cast_id": 1020, "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "order": 9}], "directors": [{"name": "Frank Coraci", "department": "Directing", "job": "Director", "credit_id": "52fe49db9251416c910bb03d", "profile_path": "/powRFECDI9oW7hr75PLGZ4UFM1v.jpg", "id": 57370}], "vote_average": 6.0, "runtime": 105}, "87827": {"poster_path": "/rXhuBgQyRKB7cW5BRImyVkO89K7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "TW", "name": "Taiwan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 609016565, "overview": "The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.", "video": false, "id": 87827, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Life of Pi", "tagline": "Believe The Unbelievable", "vote_count": 3066, "homepage": "http://www.lifeofpimovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "ta", "name": "\u0ba4\u0bae\u0bbf\u0bb4\u0bcd"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0454876", "adult": false, "backdrop_path": "/tk159LPfy69zSHw4dabehfAaJXi.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Media", "id": 290}, {"name": "Haishang Films", "id": 13480}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2012-11-21", "popularity": 1.60296162688759, "original_title": "Life of Pi", "budget": 120000000, "cast": [{"name": "Suraj Sharma", "character": "Pi Patel (16 / 17 Years)", "id": 933160, "credit_id": "52fe49db9251416c910bb0c1", "cast_id": 15, "profile_path": "/88CEbHFIGIkDLD8lEejG5580kcO.jpg", "order": 0}, {"name": "Irrfan Khan", "character": "Pi Patel (Adult)", "id": 76793, "credit_id": "52fe49db9251416c910bb0b9", "cast_id": 13, "profile_path": "/9O71WSILj1af9smwuN44nGd198Q.jpg", "order": 1}, {"name": "Ayush Tandon", "character": "Pi Patel (11 / 12 Years)", "id": 935504, "credit_id": "52fe49db9251416c910bb0c9", "cast_id": 17, "profile_path": "/lF1gIGzEZWZJJsQmIJpBzT9SYOW.jpg", "order": 2}, {"name": "Gautam Belur", "character": "Pi Patel (5 Years)", "id": 1133846, "credit_id": "52fe49db9251416c910bb0e3", "cast_id": 25, "profile_path": "/bbVao6AG13Aw9haRlZm3DwLfugF.jpg", "order": 3}, {"name": "Adil Hussain", "character": "Santosh Patel", "id": 227849, "credit_id": "52fe49db9251416c910bb0c5", "cast_id": 16, "profile_path": "/jARVXAtB0x6XjvmyTLsCfcJoHKv.jpg", "order": 4}, {"name": "Tabu", "character": "Gita Patel", "id": 55062, "credit_id": "52fe49db9251416c910bb0bd", "cast_id": 14, "profile_path": "/6XIVS1BIceOpTxzgu7R8Xw0esFg.jpg", "order": 5}, {"name": "Rafe Spall", "character": "Writer", "id": 28847, "credit_id": "52fe49db9251416c910bb0d3", "cast_id": 21, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 6}, {"name": "G\u00e9rard Depardieu", "character": "Cook", "id": 16927, "credit_id": "52fe49db9251416c910bb0b5", "cast_id": 12, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 7}, {"name": "James Saito", "character": "Older Insurance Investigator", "id": 77155, "credit_id": "52fe49db9251416c910bb0d7", "cast_id": 22, "profile_path": "/qwiY0k1tHFSmOPMJiwRL2wSEYK0.jpg", "order": 8}, {"name": "Jun Naito", "character": "Younger Insurance Investigator", "id": 121702, "credit_id": "52fe49db9251416c910bb0db", "cast_id": 23, "profile_path": "/zuMqxes5OnJyZSLsCqwV7QRcivb.jpg", "order": 9}, {"name": "Andrea Di Stefano", "character": "Priest", "id": 40541, "credit_id": "52fe49db9251416c910bb0df", "cast_id": 24, "profile_path": "/nIB8fSk0yJN7PWGJZoNcyM0hJ7l.jpg", "order": 10}, {"name": "Vibish Sivakumar", "character": "Ravi Patel (18/19 years)", "id": 1133849, "credit_id": "52fe49db9251416c910bb0e7", "cast_id": 28, "profile_path": "/eZJvIx1M59rP4gyVYxsY82tH4QB.jpg", "order": 11}, {"name": "Mohd Abbas Khaleeli", "character": "Ravi Patel ( 13/ 14 years)", "id": 1133848, "credit_id": "52fe49db9251416c910bb103", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Shravanthi Sainath", "character": "Anandi", "id": 1271647, "credit_id": "52fe49db9251416c910bb107", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Elie Alouf", "character": "Mamaji", "id": 1271648, "credit_id": "52fe49db9251416c910bb10b", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Padmini Ramachandran", "character": "Dance Master", "id": 1271649, "credit_id": "52fe49db9251416c910bb10f", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "T.M. Karthik", "character": "Science Teacher", "id": 1271650, "credit_id": "52fe49db9251416c910bb113", "cast_id": 42, "profile_path": null, "order": 16}, {"name": "Amarendran Ramanan", "character": "Indian History Teacher", "id": 1271651, "credit_id": "52fe49db9251416c910bb117", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Hari Mina Bala", "character": "Librarian", "id": 1271652, "credit_id": "52fe49db9251416c910bb11b", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Wang Bo-Chieh", "character": "Buddhist Sailor", "id": 966327, "credit_id": "53436f450e0a2679a40051de", "cast_id": 50, "profile_path": "/n8n4jh6I2VsTX2y3glVdvegPJiM.jpg", "order": 19}, {"name": "Ayaan Khan", "character": "Ravi Patel (7 Years)", "id": 1377778, "credit_id": "544cd9110e0a2608be00209f", "cast_id": 51, "profile_path": null, "order": 20}], "directors": [{"name": "Ang Lee", "department": "Directing", "job": "Director", "credit_id": "52fe49db9251416c910bb08d", "profile_path": "/yNygfTGsGaaRMBy6ya1gThOahCl.jpg", "id": 1614}], "vote_average": 7.0, "runtime": 127}, "93828": {"poster_path": "/eJwSM618opISwPkzia9fNeFvW4Z.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9747, "overview": "When notorious criminal Jacob Sternwood is forced to return to London, it gives detective Max Lewinsky one last chance to take down the man he's always been after.", "video": false, "id": 93828, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 80, "name": "Crime"}], "title": "Welcome to the Punch", "tagline": "A Stunning, Intelligent Thriller", "vote_count": 121, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1684233", "adult": false, "backdrop_path": "/8H21Fq1iki6xNIUFjZQJilvIzxC.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}, {"name": "Between The Eyes", "id": 9016}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "IM Global", "id": 7437}, {"name": "Scott Free Productions", "id": 1645}], "release_date": "2013-03-15", "popularity": 0.842903961408153, "original_title": "Welcome to the Punch", "budget": 8500000, "cast": [{"name": "James McAvoy", "character": "Max Lewinsky", "id": 5530, "credit_id": "52fe49409251416c750c1fc7", "cast_id": 1004, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 0}, {"name": "Mark Strong", "character": "Jacob Sternwood", "id": 2983, "credit_id": "52fe49409251416c750c1fcb", "cast_id": 1005, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 1}, {"name": "David Morrissey", "character": "Thomas Geiger", "id": 18616, "credit_id": "52fe49409251416c750c1fcf", "cast_id": 1006, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 2}, {"name": "Peter Mullan", "character": "Roy Edwards", "id": 3064, "credit_id": "52fe49409251416c750c1fd3", "cast_id": 1007, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 3}, {"name": "Daniel Mays", "character": "Nathan Bartnick", "id": 1670, "credit_id": "52fe49409251416c750c1fd7", "cast_id": 1008, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 4}, {"name": "Andrea Riseborough", "character": "Sarah Hawks", "id": 127558, "credit_id": "52fe49409251416c750c1fdb", "cast_id": 1009, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 5}, {"name": "Daniel Kaluuya", "character": "Juka", "id": 206919, "credit_id": "52fe49409251416c750c1fdf", "cast_id": 1010, "profile_path": "/dbRChcSEsQR9opDoZzA0b21Ipci.jpg", "order": 6}, {"name": "Elyes Gabel", "character": "Ruan Sternwood", "id": 78050, "credit_id": "52fe49409251416c750c1fe3", "cast_id": 1011, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 7}, {"name": "Jason Maza", "character": "Luke", "id": 142289, "credit_id": "52fe49409251416c750c1fe7", "cast_id": 1012, "profile_path": "/8juQFrWbtYTWb2opYqMPIDC6L77.jpg", "order": 8}, {"name": "Johnny Harris", "character": "Dean Warns", "id": 32300, "credit_id": "52fe49409251416c750c1feb", "cast_id": 1013, "profile_path": "/1iKpLfSiJBFDrvt4RCJOGJrq2NM.jpg", "order": 9}, {"name": "Steve Oram", "character": "Journalist", "id": 219367, "credit_id": "52fe49409251416c750c1fef", "cast_id": 1014, "profile_path": "/xHlaXXdSROQBIJOD69PCloDShjb.jpg", "order": 10}], "directors": [{"name": "Eran Creevy", "department": "Directing", "job": "Director", "credit_id": "52fe49409251416c750c1fb1", "profile_path": null, "id": 999760}], "vote_average": 5.5, "runtime": 99}, "5915": {"poster_path": "/lHyYgaocXR6KcJLxVmxZDj115hH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37682065, "overview": "Based on a true story. After graduating from Emory University in 1992, top student and athlete Christopher McCandless abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness. Along the way, Christopher encounters a series of characters who shape his life.", "video": false, "id": 5915, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Into the Wild", "tagline": "Into the heart. Into the soul.", "vote_count": 647, "homepage": "http://www.intothewild.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758758", "adult": false, "backdrop_path": "/9yJehIjvR7ULOLxeDJoth4kDDNe.jpg", "production_companies": [{"name": "River Road Entertainment", "id": 1246}, {"name": "Paramount Vantage", "id": 838}, {"name": "Art Linson Productions", "id": 8769}, {"name": "Into the Wild", "id": 41051}], "release_date": "2007-09-20", "popularity": 1.70332103679774, "original_title": "Into the Wild", "budget": 15000000, "cast": [{"name": "Emile Hirsch", "character": "Christopher McCandless", "id": 46593, "credit_id": "52fe442dc3a36847f8086c83", "cast_id": 15, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Marcia Gay Harden", "character": "Billie McCandless", "id": 4726, "credit_id": "52fe442dc3a36847f8086c87", "cast_id": 16, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 1}, {"name": "William Hurt", "character": "Walt McCandless", "id": 227, "credit_id": "52fe442dc3a36847f8086c8b", "cast_id": 17, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 2}, {"name": "Jena Malone", "character": "Carine McCandless", "id": 20089, "credit_id": "52fe442dc3a36847f8086c8f", "cast_id": 18, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 3}, {"name": "Brian H. Dierker", "character": "Rainey", "id": 46594, "credit_id": "52fe442dc3a36847f8086c93", "cast_id": 19, "profile_path": null, "order": 4}, {"name": "Catherine Keener", "character": "Jan Burres", "id": 2229, "credit_id": "52fe442dc3a36847f8086c97", "cast_id": 20, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 5}, {"name": "Vince Vaughn", "character": "Wayne Westerberg", "id": 4937, "credit_id": "52fe442dc3a36847f8086c9b", "cast_id": 21, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 6}, {"name": "Kristen Stewart", "character": "Tracy", "id": 37917, "credit_id": "52fe442dc3a36847f8086caf", "cast_id": 27, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 7}, {"name": "Hal Holbrook", "character": "Ron Franz", "id": 11066, "credit_id": "52fe442dc3a36847f8086c9f", "cast_id": 23, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 8}, {"name": "Thure Lindhardt", "character": "Thomas", "id": 20258, "credit_id": "52fe442dc3a36847f8086ca3", "cast_id": 24, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 9}, {"name": "Signe Egholm Olsen", "character": "Sonja", "id": 46595, "credit_id": "52fe442dc3a36847f8086ca7", "cast_id": 25, "profile_path": "/dqULuupcz7gu4V34wOJ42GukX9I.jpg", "order": 10}, {"name": "Cheryl Francis Harrington", "character": "Sozialarbeiterin", "id": 46596, "credit_id": "52fe442dc3a36847f8086cab", "cast_id": 26, "profile_path": "/iJnAelIV0GB7p3aiMydJchwpplm.jpg", "order": 11}, {"name": "Zach Galifianakis", "character": "Kevin", "id": 58225, "credit_id": "53cf1b27c3a368777a00637f", "cast_id": 28, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 12}], "directors": [{"name": "Sean Penn", "department": "Directing", "job": "Director", "credit_id": "52fe442dc3a36847f8086c31", "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "id": 2228}], "vote_average": 7.6, "runtime": 148}, "38684": {"poster_path": "/jINBiay4lfGyIaQUI0fpyvE5BBk.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 34710627, "overview": "After a bleak childhood, Jane Eyre goes out into the world to become a governess. As she lives happily in her new position at Thornfield Hall, she meet the dark, cold, and abrupt master of the house, Mr. Rochester. Jane and her employer grow close in friendship and she soon finds herself falling in love with him. Happiness seems to have found Jane at last, but could Mr. Rochester's terrible secret be about to destroy it forever?", "video": false, "id": 38684, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Jane Eyre", "tagline": "", "vote_count": 71, "homepage": "http://janeeyrethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1229822", "adult": false, "backdrop_path": "/qmERQjNTQ8HhBi5dxwv8BNzrOX.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Ruby Films", "id": 2054}], "release_date": "2011-03-11", "popularity": 0.446037594914626, "original_title": "Jane Eyre", "budget": 0, "cast": [{"name": "Mia Wasikowska", "character": "Jane Eyre", "id": 76070, "credit_id": "52fe46d09251416c91060a01", "cast_id": 4, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 0}, {"name": "Jamie Bell", "character": "St. John", "id": 478, "credit_id": "52fe46d09251416c91060a05", "cast_id": 5, "profile_path": "/7HgepK5YE8u0xrv3lJZjaEoENwl.jpg", "order": 1}, {"name": "Michael Fassbender", "character": "Edward Rochester", "id": 17288, "credit_id": "52fe46d09251416c91060a09", "cast_id": 6, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 2}, {"name": "Judi Dench", "character": "Mrs. Fairfax", "id": 5309, "credit_id": "52fe46d09251416c91060a0d", "cast_id": 7, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 3}, {"name": "Su Elliott", "character": "Hannah", "id": 1221007, "credit_id": "52fe46d19251416c91060a89", "cast_id": 39, "profile_path": "/6IlvNaDF0JRF9hhIVTOEyLDjS36.jpg", "order": 4}, {"name": "Holliday Grainger", "character": "Diana Rivers", "id": 302165, "credit_id": "52fe46d09251416c91060a11", "cast_id": 9, "profile_path": "/1DvpsjoDK2mTT4J7MzyHOqbIkXf.jpg", "order": 5}, {"name": "Tamzin Merchant", "character": "Mary Rivers", "id": 36672, "credit_id": "52fe46d09251416c91060a15", "cast_id": 10, "profile_path": "/fFqq6Qj96iF3P1KwhN4JhmqRyi0.jpg", "order": 6}, {"name": "Amelia Clarkson", "character": "Young Jane", "id": 927703, "credit_id": "52fe46d09251416c91060a19", "cast_id": 11, "profile_path": "/3Fa67tAICbTqqHNcXhnJ1FceQgg.jpg", "order": 7}, {"name": "Craig Roberts", "character": "John Reed", "id": 104561, "credit_id": "52fe46d09251416c91060a1d", "cast_id": 12, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 8}, {"name": "Sally Hawkins", "character": "Mrs. Reed", "id": 39658, "credit_id": "52fe46d09251416c91060a21", "cast_id": 13, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 9}, {"name": "Lizzie Hopley", "character": "Miss Abbot", "id": 1089514, "credit_id": "52fe46d09251416c91060a25", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Jayne Wisener", "character": "Bessie", "id": 444008, "credit_id": "52fe46d09251416c91060a29", "cast_id": 15, "profile_path": "/wEBqOkuKJmTeew401wvWgtri1Q9.jpg", "order": 11}, {"name": "Freya Wilson", "character": "Eliza Reed", "id": 548169, "credit_id": "52fe46d09251416c91060a2d", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Emily Haigh", "character": "Georgiana Reed", "id": 1089516, "credit_id": "52fe46d09251416c91060a31", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Simon McBurney", "character": "Mr. Brocklehurst", "id": 16358, "credit_id": "52fe46d09251416c91060a35", "cast_id": 18, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 14}, {"name": "Sandy McDade", "character": "Miss Scatcherd", "id": 195383, "credit_id": "52fe46d09251416c91060a39", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Freya Parks", "character": "Helen Burns", "id": 970737, "credit_id": "52fe46d09251416c91060a3d", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Edwina Elek", "character": "Miss Temple", "id": 1089517, "credit_id": "52fe46d09251416c91060a41", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Ewart James Walters", "character": "John", "id": 207031, "credit_id": "52fe46d09251416c91060a45", "cast_id": 22, "profile_path": "/z4WRDB2e4koEf5X9kcr1AeoqVYn.jpg", "order": 18}, {"name": "Georgia Bourke", "character": "Leah", "id": 1089518, "credit_id": "52fe46d09251416c91060a49", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Sally Reeve", "character": "Martha", "id": 1089519, "credit_id": "52fe46d19251416c91060a4d", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Romy Settbon Moore", "character": "Ad\u00e8le Varens", "id": 1089520, "credit_id": "52fe46d19251416c91060a51", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Eglantine Rembauville-Nicolle", "character": "Sophie", "id": 84926, "credit_id": "52fe46d19251416c91060a55", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Rosie Cavaliero", "character": "Grace Poole", "id": 151949, "credit_id": "549a0b6192514131320007bf", "cast_id": 41, "profile_path": "/dyoSavGoRf5FAM3Xc2q62J57or.jpg", "order": 23}, {"name": "Angela Curran", "character": "Undercook", "id": 174700, "credit_id": "52fe46d19251416c91060a5d", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Imogen Poots", "character": "Blanche Ingram", "id": 17606, "credit_id": "52fe46d19251416c91060a61", "cast_id": 29, "profile_path": "/5MUoPYyFriqsVBuDq0VHqPjkcHn.jpg", "order": 26}, {"name": "Sophie Ward", "character": "Lady Ingram", "id": 31921, "credit_id": "52fe46d19251416c91060a65", "cast_id": 30, "profile_path": "/rwI6NnPu7Tbv7DhzYk2MMqUacoS.jpg", "order": 27}, {"name": "Joe Van Moyland", "character": "Lord Ingram", "id": 126458, "credit_id": "52fe46d19251416c91060a69", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Hayden Phillips", "character": "Colonel Dent", "id": 1089522, "credit_id": "52fe46d19251416c91060a6d", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Laura Phillips", "character": "Mrs. Dent", "id": 1089523, "credit_id": "52fe46d19251416c91060a71", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "Harry Lloyd", "character": "Richard Mason", "id": 205258, "credit_id": "52fe46d19251416c91060a75", "cast_id": 34, "profile_path": "/vI6FWizXNa5quCyIiTd06gxNQu1.jpg", "order": 31}, {"name": "Ned Dennehy", "character": "Dr. Carter", "id": 63362, "credit_id": "52fe46d19251416c91060a79", "cast_id": 35, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 32}, {"name": "Joseph Kloska", "character": "Clergyman Wood", "id": 209631, "credit_id": "52fe46d19251416c91060a7d", "cast_id": 36, "profile_path": null, "order": 33}, {"name": "Ben Roberts", "character": "Briggs", "id": 186164, "credit_id": "52fe46d19251416c91060a81", "cast_id": 37, "profile_path": null, "order": 34}, {"name": "Valentina Cervi", "character": "Bertha Mason", "id": 21965, "credit_id": "52fe46d19251416c91060a85", "cast_id": 38, "profile_path": "/cfYU52DcAa4ZM7GrHJKRinFTV7W.jpg", "order": 35}], "directors": [{"name": "Cary Fukunaga", "department": "Directing", "job": "Director", "credit_id": "52fe46d09251416c910609f1", "profile_path": "/9BDeASL8E1Rr55fn0uQwEv1EAH6.jpg", "id": 87257}], "vote_average": 6.9, "runtime": 120}, "30497": {"poster_path": "/hXF5nuEvUIlMXv4fOCIhA8KWaN2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Five friends visiting their grandfather's house in the country are hunted and terrorized by a chain-saw wielding killer and his family of grave-robbing cannibals.", "video": false, "id": 30497, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Texas Chain Saw Massacre", "tagline": "Who will survive and what will be left of them?", "vote_count": 86, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0072271", "adult": false, "backdrop_path": "/sOw7TZzt3vRQXXCrwdspSHwCJDR.jpg", "production_companies": [{"name": "Vortex", "id": 1197}], "release_date": "1974-10-01", "popularity": 1.01384652875984, "original_title": "The Texas Chain Saw Massacre", "budget": 85000, "cast": [{"name": "Allen Danziger", "character": "Jerry", "id": 122454, "credit_id": "52fe44209251416c91005c53", "cast_id": 3, "profile_path": "/nwxGMag4AYEQJcB7x5l8snDtDjE.jpg", "order": 1}, {"name": "Paul A. Partain", "character": "Franklin Hardesty", "id": 122455, "credit_id": "52fe44209251416c91005c57", "cast_id": 4, "profile_path": null, "order": 2}, {"name": "William Vail", "character": "Kirk", "id": 122456, "credit_id": "52fe44209251416c91005c5b", "cast_id": 5, "profile_path": null, "order": 3}, {"name": "Teri McMinn", "character": "Pam", "id": 122457, "credit_id": "52fe44209251416c91005c5f", "cast_id": 6, "profile_path": "/z9V7RSDbGyOf1OnphMlpOwWXoli.jpg", "order": 4}, {"name": "Edwin Neal", "character": "Hitchhiker", "id": 27803, "credit_id": "52fe44209251416c91005c63", "cast_id": 7, "profile_path": "/2pggldtOoONkXwzK2nDNHPXzOgk.jpg", "order": 5}, {"name": "Jim Siedow", "character": "Old Man", "id": 104014, "credit_id": "52fe44209251416c91005c67", "cast_id": 8, "profile_path": "/s6ILyhAwoUsZYyyslG5t9nlUjXc.jpg", "order": 6}, {"name": "Gunnar Hansen", "character": "Leatherface", "id": 27804, "credit_id": "52fe44209251416c91005c6b", "cast_id": 9, "profile_path": "/bwqo7HNyvYqPCnTWlOHSUnstg2F.jpg", "order": 7}, {"name": "Marilyn Burns", "character": "Sally Hardesty", "id": 27798, "credit_id": "52fe44209251416c91005c6f", "cast_id": 10, "profile_path": "/bEPYa5U36XHiTBdZqZkcRq3cdPP.jpg", "order": 8}, {"name": "John Dugan", "character": "Grandfather", "id": 104892, "credit_id": "552bd386c3a3681f5c006f90", "cast_id": 22, "profile_path": "/4rhSibBG8MY7qtcoOtXI7NGqBfh.jpg", "order": 9}, {"name": "Robert Courtin", "character": "Window Washer", "id": 1453740, "credit_id": "552bd43c92514121d6003bbb", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "William Creamer", "character": "Bearded Man", "id": 565191, "credit_id": "552beae5925141265f004c9b", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "John Henry Faulk", "character": "Storyteller", "id": 1372356, "credit_id": "552bf19d925141288b002d63", "cast_id": 25, "profile_path": "/2Bew8g9tK8ToXFn1ZnKedLrUPlt.jpg", "order": 12}, {"name": "Jerry Green", "character": "Cowboy", "id": 1453812, "credit_id": "552bf32ac3a36843cd000f16", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Ed Guinn", "character": "Cattle Truck Driver", "id": 1453813, "credit_id": "552bf3de925141265f004e93", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Joe Bill Hogan", "character": "Drunk", "id": 1453814, "credit_id": "552bf445c3a36858d6006927", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Perry Lorenz", "character": "Pick Up Driver", "id": 1453815, "credit_id": "552bf4a9c3a3681f56008225", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "John Larroquette", "character": "Narrator (voice)", "id": 14101, "credit_id": "552bf56d9251412845002daa", "cast_id": 30, "profile_path": "/ilQ3NBO3LDsfSIuVpoh1C9sz6eb.jpg", "order": 17}], "directors": [{"name": "Tobe Hooper", "department": "Directing", "job": "Director", "credit_id": "52fe44209251416c91005c4f", "profile_path": "/fsPSiL7qhUBULig72zdfKWSDa1V.jpg", "id": 10051}], "vote_average": 6.8, "runtime": 83}, "5924": {"poster_path": "/q1tmTQvEWbJgf8eccX1XWXxWKkK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53267000, "overview": "A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.", "video": false, "id": 5924, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Papillon", "tagline": "Not just a Great Escape. It was the Greatest.", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0070511", "adult": false, "backdrop_path": "/80MH0jVCqSbcC2Z0a6xkkwCCPbZ.jpg", "production_companies": [{"name": "Allied Artists", "id": 517}, {"name": "Solar Productions", "id": 599}], "release_date": "1973-12-16", "popularity": 1.22167742099536, "original_title": "Papillon", "budget": 12000000, "cast": [{"name": "Steve McQueen", "character": "Henri \"Papillon\" Charriere", "id": 13565, "credit_id": "52fe442ec3a36847f80870cf", "cast_id": 1, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 0}, {"name": "Dustin Hoffman", "character": "Louis Dega", "id": 4483, "credit_id": "52fe442ec3a36847f80870d3", "cast_id": 2, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 1}, {"name": "Victor Jory", "character": "Indian Chief", "id": 15666, "credit_id": "52fe442ec3a36847f8087119", "cast_id": 15, "profile_path": "/4phylVED6xN2gFYeUQnywahstGG.jpg", "order": 2}, {"name": "Don Gordon", "character": "Julot", "id": 14062, "credit_id": "52fe442ec3a36847f808711d", "cast_id": 16, "profile_path": "/oSX1fJ1PY7RzOelwratXJX7kVTQ.jpg", "order": 3}, {"name": "Anthony Zerbe", "character": "Toussaint", "id": 2516, "credit_id": "52fe442ec3a36847f8087115", "cast_id": 14, "profile_path": "/hCxhuiCamxs0SOoQH46psnjT8xJ.jpg", "order": 4}, {"name": "Robert Deman", "character": "Maturette", "id": 49356, "credit_id": "52fe442ec3a36847f8087111", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Woodrow Parfrey", "character": "Clusiot", "id": 13263, "credit_id": "52fe442ec3a36847f808710d", "cast_id": 12, "profile_path": "/eKbfFahTG0h0b47QXwKTGY1eZaS.jpg", "order": 6}, {"name": "Bill Mumy", "character": "Lariot", "id": 49357, "credit_id": "52fe442ec3a36847f8087121", "cast_id": 17, "profile_path": "/ciFUMYHa9tmGdz52vedmoTOfJde.jpg", "order": 7}, {"name": "George Coulouris", "character": "Dr. Chatal", "id": 11028, "credit_id": "52fe442ec3a36847f8087125", "cast_id": 18, "profile_path": "/6lZrP9zhuFyL0uOHYJU09FpUV9.jpg", "order": 8}, {"name": "Ratna Assan", "character": "Zoraima", "id": 993183, "credit_id": "52fe442ec3a36847f8087129", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "William Smithers", "character": "Warden Barrot", "id": 16030, "credit_id": "52fe442ec3a36847f808712d", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Val Avery", "character": "Pascal", "id": 3014, "credit_id": "52fe442ec3a36847f8087131", "cast_id": 21, "profile_path": "/jIBEZ5xoM7I5PxG3pW62VeWwYih.jpg", "order": 11}, {"name": "Gregory Sierra", "character": "Antonio", "id": 18914, "credit_id": "52fe442ec3a36847f8087135", "cast_id": 22, "profile_path": "/lbF2GRIs3juRAzfevwsUOq5PzFF.jpg", "order": 12}, {"name": "Vic Tayback", "character": "Sergeant (as Victor Tayback)", "id": 14069, "credit_id": "52fe442ec3a36847f8087139", "cast_id": 23, "profile_path": "/rddNsgbWGeYckB9IB0i2s8uQdv5.jpg", "order": 13}, {"name": "Mills Watson", "character": "Guard", "id": 140345, "credit_id": "52fe442ec3a36847f808713d", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Len Lesser", "character": "Guard", "id": 78087, "credit_id": "54d7fdd2c3a3683b920070a8", "cast_id": 26, "profile_path": "/h6mL9dHhYa4sHppv4GRJIkUTqwe.jpg", "order": 15}], "directors": [{"name": "Franklin J. Schaffner", "department": "Directing", "job": "Director", "credit_id": "52fe442ec3a36847f80870e5", "profile_path": "/dqrDUANz8sf0BXTBh0gr1heUr5U.jpg", "id": 13265}], "vote_average": 7.7, "runtime": 151}, "5925": {"poster_path": "/qhy4HgUqhEbwQ1ekKTv7yEB3b0e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5000000, "overview": "The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocates them to a high-security \"escape-proof\" camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.", "video": false, "id": 5925, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "The Great Escape", "tagline": "Put a fence in front of these men...and they'll climb it...", "vote_count": 211, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0057115", "adult": false, "backdrop_path": "/nb70B4EXuoegiQ0C5N1fNVHIaYc.jpg", "production_companies": [{"name": "The Mirisch Corporation", "id": 219}], "release_date": "1963-07-04", "popularity": 1.49385595210194, "original_title": "The Great Escape", "budget": 4000000, "cast": [{"name": "Steve McQueen", "character": "Captain Hilts", "id": 13565, "credit_id": "52fe442ec3a36847f8087195", "cast_id": 1, "profile_path": "/7ghOqGqA5OAFD2bvC8s0ZsNS0X9.jpg", "order": 0}, {"name": "James Garner", "character": "Flight Lt. Hendley", "id": 16896, "credit_id": "52fe442ec3a36847f8087199", "cast_id": 2, "profile_path": "/sIbb107Y0KdJ1wMITPSiOsQqfv1.jpg", "order": 1}, {"name": "Richard Attenborough", "character": "Roger Bartlett", "id": 4786, "credit_id": "52fe442ec3a36847f808719d", "cast_id": 3, "profile_path": "/qzedA4XCNjbmR7z3fWiFinGukzx.jpg", "order": 2}, {"name": "James Donald", "character": "Group Capt. Ramsey \"The SBO\"", "id": 12250, "credit_id": "52fe442ec3a36847f80871b7", "cast_id": 9, "profile_path": "/37GWNFPrHxo6RZf8uY0bdk47BD8.jpg", "order": 3}, {"name": "Charles Bronson", "character": "Flight Lt. Danny Velinski", "id": 4960, "credit_id": "52fe442ec3a36847f80871a1", "cast_id": 4, "profile_path": "/hxZR2w0LXX47VKtxibDyZDsTAkH.jpg", "order": 4}, {"name": "Donald Pleasence", "character": "Flight Lt. Colin Blythe \"The Forger\"", "id": 9221, "credit_id": "52fe442ec3a36847f80871bb", "cast_id": 10, "profile_path": "/fr9lf679ZsHbDZsbcpKZfbFO1Pu.jpg", "order": 5}, {"name": "James Coburn", "character": "Flying Officer Louis Sedgwick \"The Manufacturer\"", "id": 5563, "credit_id": "52fe442ec3a36847f80871bf", "cast_id": 11, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 6}, {"name": "Hannes Messemer", "character": "Kommandant von Luger", "id": 23696, "credit_id": "52fe442ec3a36847f80871c3", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "David McCallum", "character": "Lt. Cmdr. Eric Ashley-Pitt \"Dispersal\"", "id": 24813, "credit_id": "52fe442ec3a36847f80871c7", "cast_id": 13, "profile_path": "/po7qYZYW0RMTl4BavHIZCxqopCD.jpg", "order": 8}, {"name": "Gordon Jackson", "character": "Flight Lt. Sandy MacDonald \"Intelligence\"", "id": 41998, "credit_id": "52fe442ec3a36847f80871cb", "cast_id": 14, "profile_path": "/yz1S8Ge93l9DoC3zmElq26KN2Ug.jpg", "order": 9}, {"name": "John Leyton", "character": "Flight Lt. William Dickes \"The Tunneler\"", "id": 93125, "credit_id": "52fe442ec3a36847f80871cf", "cast_id": 15, "profile_path": "/hBY34TxEM03HcgMCYOu8454D2mM.jpg", "order": 10}, {"name": "Angus Lennie", "character": "Flying Officer Archibald Ives \"The Mole\"", "id": 78942, "credit_id": "52fe442ec3a36847f80871d3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Nigel Stock", "character": "Flight Lt. Denys Cavendish \"The Surveyor\"", "id": 108637, "credit_id": "52fe442ec3a36847f80871d7", "cast_id": 17, "profile_path": "/yv4cY1k6KWAQgsln2IHobAyVEtg.jpg", "order": 12}, {"name": "Robert Graf", "character": "Werner 'The Ferret'", "id": 1054816, "credit_id": "534d526e0e0a2679dc00013e", "cast_id": 41, "profile_path": null, "order": 13}, {"name": "Jud Taylor", "character": "Goff", "id": 117865, "credit_id": "52fe442ec3a36847f80871df", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Hans Reiser", "character": "Herr Kuhn", "id": 26586, "credit_id": "52fe442ec3a36847f80871e3", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Harry Riebauer", "character": "Stratwitch", "id": 37531, "credit_id": "52fe442ec3a36847f80871e7", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "William Russell", "character": "Sorren", "id": 32041, "credit_id": "52fe442ec3a36847f80871eb", "cast_id": 22, "profile_path": "/mIkzbyEG7cBMB2Tyr9sjwChkdVs.jpg", "order": 17}, {"name": "Robert Freitag", "character": "Capt. Posen", "id": 19574, "credit_id": "52fe442ec3a36847f80871ef", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Ulrich Beiger", "character": "Preissen", "id": 26937, "credit_id": "52fe442ec3a36847f80871f3", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "George Mikell", "character": "Lt. Dietrich", "id": 137383, "credit_id": "52fe442ec3a36847f80871f7", "cast_id": 25, "profile_path": "/ak4YIVTrl5KWuxbIW9n7tOjtxzp.jpg", "order": 20}, {"name": "Robert Desmond", "character": "Griffith 'Tailor'", "id": 140146, "credit_id": "52fe442ec3a36847f80871fb", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Til Kiwe", "character": "Frick", "id": 5800, "credit_id": "52fe442ec3a36847f80871ff", "cast_id": 28, "profile_path": "/qvomclFht6GeE03tLNKJU6cDcOw.jpg", "order": 22}, {"name": "Heinz Weiss", "character": "Kramer", "id": 18968, "credit_id": "52fe442ec3a36847f8087203", "cast_id": 29, "profile_path": "/A8qaf0ce3YY675Pc45y4Dzl50dX.jpg", "order": 23}, {"name": "Tom Adams", "character": "Dai Nimmo ('Diversions')", "id": 23910, "credit_id": "52fe442ec3a36847f8087207", "cast_id": 30, "profile_path": "/mz3VR8o8rftlPMUIpXVKUiVpAbV.jpg", "order": 24}, {"name": "Karl-Otto Alberty", "character": "S.S. Officer Steinach", "id": 78094, "credit_id": "52fe442fc3a36847f808720b", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Lawrence Montaigne", "character": "Haynes ('Diversions')", "id": 1213151, "credit_id": "52fe442fc3a36847f808723f", "cast_id": 40, "profile_path": "/5VJJu5gljLTPwHrUHJYLElg0srU.jpg", "order": 26}], "directors": [{"name": "John Sturges", "department": "Directing", "job": "Director", "credit_id": "52fe442ec3a36847f80871ad", "profile_path": "/addeAxOXQmqXAZ7FB6ztGQ9daWC.jpg", "id": 14520}], "vote_average": 7.3, "runtime": 172}, "50619": {"poster_path": "/5Vp3N1Gp147Yd8A8kQspvxJ7ByG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 701315261, "overview": "The new found married bliss of Bella Swan and vampire Edward Cullen is cut short when a series of betrayals and misfortunes threatens to destroy their world. Bella soon discovers she is pregnant, and during a nearly fatal childbirth, Edward finally fulfills her wish to become immortal. But the arrival of their remarkable daughter, Renesmee, sets in motion a perilous chain of events that pits the Cullens and their allies against the Volturi, the fearsome council of vampire leaders, setting the stage for an all-out battle.", "video": false, "id": 50619, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: Breaking Dawn - Part 1", "tagline": "Forever is just the beginning", "vote_count": 1010, "homepage": "http://www.breakingdawn-themovie.com/", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1324999", "adult": false, "backdrop_path": "/brbsq016UiQgwWb4qKPdCysnXjg.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "TSBD Canada Productions", "id": 7490}, {"name": "Zohar International", "id": 7491}], "release_date": "2011-11-17", "popularity": 1.20935105777554, "original_title": "The Twilight Saga: Breaking Dawn - Part 1", "budget": 263000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe47cec3a36847f8149513", "cast_id": 5, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe47cec3a36847f8149517", "cast_id": 6, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe47cec3a36847f814951b", "cast_id": 7, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe47cec3a36847f814951f", "cast_id": 8, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 3}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe47cec3a36847f8149523", "cast_id": 10, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 4}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe47cec3a36847f8149527", "cast_id": 11, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 5}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe47cec3a36847f814952b", "cast_id": 12, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 6}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe47cec3a36847f8149547", "cast_id": 18, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 7}, {"name": "Booboo Stewart", "character": "Seth", "id": 121868, "credit_id": "52fe47cec3a36847f814954b", "cast_id": 19, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 8}, {"name": "Julia Jones", "character": "Leah", "id": 87310, "credit_id": "52fe47cec3a36847f814954f", "cast_id": 20, "profile_path": "/jw08w0ySlHa5qmQWaNp2FLFeAEq.jpg", "order": 9}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe47cec3a36847f8149553", "cast_id": 21, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 10}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe47cec3a36847f8149557", "cast_id": 22, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 11}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe47cec3a36847f814955b", "cast_id": 23, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 12}, {"name": "Maggie Grace", "character": "Irina Denali", "id": 11825, "credit_id": "52fe47cec3a36847f814955f", "cast_id": 24, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 13}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe47cec3a36847f8149563", "cast_id": 25, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 14}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe47cec3a36847f8149567", "cast_id": 26, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 15}, {"name": "Sarah Clarke", "character": "Ren\u00e9e", "id": 25836, "credit_id": "52fe47cec3a36847f814956b", "cast_id": 27, "profile_path": "/50umNQSJOGuz09Sb6R5BIRP5IoD.jpg", "order": 16}, {"name": "MyAnna Buring", "character": "Tanya Denali", "id": 57578, "credit_id": "52fe47cec3a36847f814956f", "cast_id": 28, "profile_path": "/7OIcEU8hlPqtQDWq2uE8UbLHNAs.jpg", "order": 17}, {"name": "Tanaya Beatty", "character": "Rachel", "id": 1301092, "credit_id": "53242b189251410c870004c2", "cast_id": 29, "profile_path": "/y9HyH4jRXOZ6Ob32ojOkxaO8eRl.jpg", "order": 18}, {"name": "Christian Camargo", "character": "Eleazar", "id": 122029, "credit_id": "54e677c59251416f54000339", "cast_id": 30, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 19}], "directors": [{"name": "Bill Condon", "department": "Directing", "job": "Director", "credit_id": "52fe47cec3a36847f8149503", "profile_path": "/lMNARbVEd2VKcEZCBQwy1fPWWVG.jpg", "id": 15557}], "vote_average": 5.8, "runtime": 117}, "145197": {"poster_path": "/ckbUVwa9r7h348upwiRvjpl4sQp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 444098, "overview": "A man and woman are drawn together, entangled in the lifecycle of an ageless organism. Identity becomes an illusion as they struggle to assemble the loose fragments of wrecked lives.", "video": false, "id": 145197, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Upstream Color", "tagline": "", "vote_count": 78, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2084989", "adult": false, "backdrop_path": "/kAP1HdlU4rnqC7mYMx2Rg7KZST3.jpg", "production_companies": [{"name": "erbp", "id": 44640}], "release_date": "2013-04-05", "popularity": 0.371065389292621, "original_title": "Upstream Color", "budget": 100000, "cast": [{"name": "Amy Seimetz", "character": "Kris", "id": 139150, "credit_id": "52fe4b519251416c750ff2d3", "cast_id": 5, "profile_path": "/zMJK3v7GvyYAgVVkStSFWTEHHHl.jpg", "order": 0}, {"name": "Shane Carruth", "character": "Jeff", "id": 76624, "credit_id": "52fe4b519251416c750ff2cf", "cast_id": 4, "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "order": 1}, {"name": "Andrew Sensenig", "character": "The Sampler", "id": 141226, "credit_id": "52fe4b519251416c750ff2d7", "cast_id": 6, "profile_path": "/oiPTOeTpMnEHq1sydiLgsMtwDVa.jpg", "order": 2}, {"name": "Thiago Martins", "character": "Thief", "id": 50362, "credit_id": "52fe4b519251416c750ff2db", "cast_id": 7, "profile_path": "/2QrPAoTAtgIY69UvJUNWT62moLc.jpg", "order": 3}], "directors": [{"name": "Shane Carruth", "department": "Directing", "job": "Director", "credit_id": "52fe4b519251416c750ff2bf", "profile_path": "/8cMxWDxLkjSKSSQpHWHZ6YvwriK.jpg", "id": 76624}], "vote_average": 6.5, "runtime": 96}, "9745": {"poster_path": "/q50TLYePXUqpPHTwb8UJyFdRI8U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A father, who can't keep his promises, dies in a car accident. One year later, he returns as a snowman, who has the final chance to put things right with his son before he is gone forever.", "video": false, "id": 9745, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Jack Frost", "tagline": "Jack Frost is getting a second chance to be the world's coolest dad... if he doesn't melt first.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0141109", "adult": false, "backdrop_path": "/3PRXD9ntyhuAjLDltma2cEuid3Y.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1998-12-11", "popularity": 0.805402144822791, "original_title": "Jack Frost", "budget": 27000000, "cast": [{"name": "Michael Keaton", "character": "Jack Frost", "id": 2232, "credit_id": "52fe4525c3a36847f80bf0e7", "cast_id": 1, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Kelly Preston", "character": "Gabby Frost", "id": 11164, "credit_id": "52fe4525c3a36847f80bf0eb", "cast_id": 2, "profile_path": "/pkvxII0q9uV6XqWDVzYKmVUJaTu.jpg", "order": 1}, {"name": "Mark Addy", "character": "Mac MacArthur", "id": 13633, "credit_id": "52fe4525c3a36847f80bf0ef", "cast_id": 3, "profile_path": "/gwQQlLSnMdW8IZD9l7PnqQPucAY.jpg", "order": 2}, {"name": "Joseph Cross", "character": "Charlie Frost", "id": 33528, "credit_id": "52fe4525c3a36847f80bf117", "cast_id": 10, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 3}, {"name": "Henry Rollins", "character": "Sid Gronic", "id": 9290, "credit_id": "52fe4526c3a36847f80bf11b", "cast_id": 11, "profile_path": "/8VdK7CbNPTJeXeAjYuQv7UbJ0ns.jpg", "order": 4}, {"name": "Mika Boorem", "character": "Natalie", "id": 21027, "credit_id": "52fe4526c3a36847f80bf11f", "cast_id": 12, "profile_path": "/amQuR9PGz0yt6IXNnwLOAEkfPcq.jpg", "order": 5}, {"name": "Andrew Lawrence", "character": "Tuck Gronic", "id": 16479, "credit_id": "52fe4526c3a36847f80bf123", "cast_id": 13, "profile_path": "/rW9mqQf9KABcEkkaOyeY8F67n16.jpg", "order": 6}, {"name": "Eli Marienthal", "character": "Spencer", "id": 116027, "credit_id": "52fe4526c3a36847f80bf127", "cast_id": 14, "profile_path": "/eK4kfRpE12lCoCamBJWyHfWDDbq.jpg", "order": 7}, {"name": "Will Rothhaar", "character": "Dennis", "id": 149484, "credit_id": "52fe4526c3a36847f80bf12b", "cast_id": 15, "profile_path": "/oigxlX2GoRu50q0u6CNwNhfjvyB.jpg", "order": 8}, {"name": "Taylor Handley", "character": "Rory Buck", "id": 66741, "credit_id": "52fe4526c3a36847f80bf12f", "cast_id": 16, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 9}, {"name": "Paul F. Tompkins", "character": "Audience Member", "id": 1219029, "credit_id": "54b09089c3a3680945000e5b", "cast_id": 17, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 10}, {"name": "Dweezil Zappa", "character": "John Kaplan", "id": 120952, "credit_id": "54b090adc3a368094e000fea", "cast_id": 18, "profile_path": "/d2HSXwuYiTKzL1Lo1IEtMsAa0WX.jpg", "order": 11}, {"name": "Jay Johnston", "character": "TV Weatherman", "id": 1215262, "credit_id": "54b090c5c3a368094e000fec", "cast_id": 19, "profile_path": "/tez2yLdvX40JNvZVTePuEYecda0.jpg", "order": 12}, {"name": "Googy Gress", "character": "Spencer's Dad", "id": 93846, "credit_id": "54b090f4c3a3680939000dc4", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Wayne Federman", "character": "Policeman Dave", "id": 170759, "credit_id": "54b09113c3a3680945000e6d", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Trevor Rabin", "character": "Trevor (Lead Guitar)", "id": 894, "credit_id": "54b0912bc3a3680940000d40", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Moon Unit Zappa", "character": "School Teacher (uncredited)", "id": 140387, "credit_id": "5506e29792514179fb001f60", "cast_id": 25, "profile_path": null, "order": 16}], "directors": [{"name": "Troy Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4525c3a36847f80bf0f5", "profile_path": null, "id": 58868}], "vote_average": 5.7, "runtime": 101}, "22327": {"poster_path": "/nQ45Ypo7fdgBWGUICyT0XR5RPU6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The outrageous and heartwarming tale of Nick Twisp and his quest to win the heart of Sheeni and hopefully lose his virginity along the way.", "video": false, "id": 22327, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Youth in Revolt", "tagline": "Every \"Revolution\" Needs A Leader", "vote_count": 90, "homepage": "http://youthinrevolt-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0403702", "adult": false, "backdrop_path": "/qTmXP26RbQMPxBUiTz9qdHg0eoH.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}], "release_date": "2009-09-11", "popularity": 1.12471742594756, "original_title": "Youth in Revolt", "budget": 18000000, "cast": [{"name": "Michael Cera", "character": "Nick Twisp", "id": 39995, "credit_id": "52fe443cc3a368484e017681", "cast_id": 1, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 0}, {"name": "Zach Galifianakis", "character": "Jerry", "id": 58225, "credit_id": "52fe443cc3a368484e01768b", "cast_id": 3, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 1}, {"name": "Justin Long", "character": "Paul Saunders", "id": 15033, "credit_id": "52fe443cc3a368484e01768f", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 2}, {"name": "Ray Liotta", "character": "Lance Wescott", "id": 11477, "credit_id": "52fe443cc3a368484e017693", "cast_id": 5, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "George Twisp", "id": 884, "credit_id": "52fe443cc3a368484e017697", "cast_id": 6, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Ari Graynor", "character": "Lacey", "id": 71552, "credit_id": "52fe443cc3a368484e01769b", "cast_id": 7, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 5}, {"name": "Portia Doubleday", "character": "Sheeni Saunders", "id": 117669, "credit_id": "52fe443cc3a368484e01769f", "cast_id": 8, "profile_path": "/yg4VCAMHDUOqb54t5UjEB74NOO5.jpg", "order": 6}, {"name": "Rooney Mara", "character": "Taggarty", "id": 108916, "credit_id": "52fe443cc3a368484e0176a3", "cast_id": 9, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 7}, {"name": "Erik Knudsen", "character": "Lefty", "id": 2681, "credit_id": "5372724b0e0a2672f1002214", "cast_id": 11, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 8}, {"name": "Adhir Kalyan", "character": "Vijay Joshi", "id": 440306, "credit_id": "5372725c0e0a2672e5002328", "cast_id": 12, "profile_path": "/aMrG4CWhYGjKPgEgmzKTG3w5JqA.jpg", "order": 9}, {"name": "Fred Willard", "character": "Mr. Ferguson", "id": 20753, "credit_id": "537272690e0a2672ee00227e", "cast_id": 13, "profile_path": "/j1jWdqmklfIH4hpAbw1DK0gPMX0.jpg", "order": 10}, {"name": "Jade Fusco", "character": "Bernice Lynch", "id": 1286238, "credit_id": "537272860e0a2672e500232b", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Lise Lacasse", "character": "Matron", "id": 1319235, "credit_id": "5372729a0e0a2672fb002316", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "M. Emmet Walsh", "character": "Mr. Saunders", "id": 588, "credit_id": "537272a80e0a2672e5002330", "cast_id": 16, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 13}, {"name": "Mary Kay Place", "character": "Mrs. Saunders", "id": 5960, "credit_id": "537272b30e0a2672fb00231b", "cast_id": 17, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 14}, {"name": "Jonathan B. Wright", "character": "Trent", "id": 71554, "credit_id": "537272c30e0a2672f40022ff", "cast_id": 18, "profile_path": "/jAeOOEvIupm2xNDLSS4XM6fDj7A.jpg", "order": 15}], "directors": [{"name": "Miguel Arteta", "department": "Directing", "job": "Director", "credit_id": "52fe443cc3a368484e017687", "profile_path": "/c1StX0L6loDCLcQODL8Z6CPYF1t.jpg", "id": 61069}], "vote_average": 5.5, "runtime": 90}, "145220": {"poster_path": "/bxDby1r6WW3HyWzA9vd8uCMG9E6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80383113, "overview": "While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.", "video": false, "id": 145220, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10751, "name": "Family"}], "title": "Muppets Most Wanted", "tagline": "Taking the world by farce", "vote_count": 125, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gMqWZhJnAYhVuHB6kVFh7Hjvwfo.jpg", "poster_path": "/8Ew8EIdFFurMMYjSbWPu1Hl4vLX.jpg", "id": 256377, "name": "The Muppet Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2281587", "adult": false, "backdrop_path": "/j5KtmMiOzLlyW0VWVP74exW3N5F.jpg", "production_companies": [{"name": "Buena Vista", "id": 32}, {"name": "Disney", "id": 6421}], "release_date": "2014-03-20", "popularity": 0.9718424389205, "original_title": "Muppets Most Wanted", "budget": 50000000, "cast": [{"name": "Ricky Gervais", "character": "Dominic", "id": 17835, "credit_id": "52fe4b539251416c750ff6d5", "cast_id": 15, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 0}, {"name": "Ty Burrell", "character": "Jean Pierre Napoleon", "id": 15232, "credit_id": "52fe4b539251416c750ff6d9", "cast_id": 16, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 1}, {"name": "Tina Fey", "character": "Nadya", "id": 56323, "credit_id": "52fe4b539251416c750ff6cd", "cast_id": 13, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 2}, {"name": "Steve Whitmire", "character": "Kermit / Beaker / Statler / Rizzo / Newsman / Foo-Foo (voice)", "id": 64180, "credit_id": "52fe4b549251416c750ff6e5", "cast_id": 19, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 3}, {"name": "Eric Jacobson", "character": "Miss Piggy / Fozzie Bear / Animal / Sam Eagle (voice)", "id": 97185, "credit_id": "52fe4b549251416c750ff6ed", "cast_id": 21, "profile_path": "/mfrQc4O4ntkCTSUYjdsnRXKvHXb.jpg", "order": 4}, {"name": "Dave Goelz", "character": "Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf (voice)", "id": 64181, "credit_id": "52fe4b549251416c750ff6f1", "cast_id": 22, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 5}, {"name": "Bill Barretta", "character": "Swedish Chef / Rowlf / Dr. Teeth / Pepe the Prawn / Bobo (voice)", "id": 64182, "credit_id": "52fe4b549251416c750ff6f9", "cast_id": 24, "profile_path": "/vqJkiA95qahSGcf2HoXfueOzUU4.jpg", "order": 6}, {"name": "Matt Vogel", "character": "Sgt. Floyd Pepper / Camilla / Sweetums / Lew Zealand / Crazy Harry (voice)", "id": 135467, "credit_id": "52fe4b549251416c750ff705", "cast_id": 27, "profile_path": "/A8675oSlBx3Gt18xgFXPHupmVkr.jpg", "order": 7}, {"name": "Peter Linz", "character": "Walter (voice)", "id": 360193, "credit_id": "52fe4b539251416c750ff6e1", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Tom Hiddleston", "character": "Great Escapo", "id": 91606, "credit_id": "52fe4b549251416c750ff715", "cast_id": 31, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 9}, {"name": "Salma Hayek", "character": "", "id": 3136, "credit_id": "52fe4b549251416c750ff719", "cast_id": 32, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 10}, {"name": "Ray Liotta", "character": "", "id": 11477, "credit_id": "52fe4b539251416c750ff6d1", "cast_id": 14, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 11}, {"name": "Kenneth Collard", "character": "The Berliner", "id": 997569, "credit_id": "52fe4b539251416c750ff6dd", "cast_id": 17, "profile_path": "/7w29ibbniZoMEkTYVtsxiNSLamf.jpg", "order": 12}, {"name": "Pamela Betsy Cooper", "character": "German Lady in the Audience", "id": 1147918, "credit_id": "52fe4b549251416c750ff6e9", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "James Pasierbowicz", "character": "Joe", "id": 1147919, "credit_id": "52fe4b549251416c750ff6f5", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Richard Herdman", "character": "Commuter", "id": 1147920, "credit_id": "52fe4b549251416c750ff6fd", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "David Rudman", "character": "Scooter / Janice (voice)", "id": 192632, "credit_id": "52fe4b549251416c750ff701", "cast_id": 26, "profile_path": "/gbK487QzcdwHul2HKrEEiaCY9co.jpg", "order": 16}, {"name": "Luke Howard", "character": "Spanish Train Porter", "id": 1138597, "credit_id": "52fe4b549251416c750ff709", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Pete Meads", "character": "German Audience Member", "id": 1147921, "credit_id": "52fe4b549251416c750ff70d", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Ricky Rajpal", "character": "Audience Member", "id": 1106760, "credit_id": "52fe4b549251416c750ff711", "cast_id": 30, "profile_path": "/uIogtsdVzDWRxvANRdoL0FtGM7S.jpg", "order": 19}, {"name": "Danny Trejo", "character": "", "id": 11160, "credit_id": "52fe4b549251416c750ff71d", "cast_id": 33, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 20}, {"name": "Stanley Tucci", "character": "", "id": 2283, "credit_id": "53033ee4c3a3680a3f580256", "cast_id": 34, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 21}, {"name": "Jemaine Clement", "character": "Prison King", "id": 55936, "credit_id": "532f0a849251413a7e00373c", "cast_id": 35, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 22}, {"name": "Zach Galifianakis", "character": "Hobo Joe", "id": 58225, "credit_id": "547065c192514112ee0042bd", "cast_id": 39, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 23}, {"name": "Tom Hollander", "character": "Theater Manager", "id": 2441, "credit_id": "547065e192514112f3004951", "cast_id": 40, "profile_path": "/8htmKElTa8dauMN8c3JWPQliNTW.jpg", "order": 24}, {"name": "Toby Jones", "character": "", "id": 13014, "credit_id": "547065f192514170660022e9", "cast_id": 41, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 25}, {"name": "Frank Langella", "character": "Beefeater Vicar", "id": 8924, "credit_id": "5470660cc3a36830c4000924", "cast_id": 42, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 26}, {"name": "James McAvoy", "character": "UPS Guy", "id": 5530, "credit_id": "5470661cc3a36828e0000dc1", "cast_id": 43, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 27}, {"name": "Chlo\u00eb Grace Moretz", "character": "Newspaper Girl", "id": 56734, "credit_id": "54706636c3a3682fa70045b1", "cast_id": 44, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 28}, {"name": "Miranda Richardson", "character": "Berliner at Window", "id": 8436, "credit_id": "5470665b92514112e90044a2", "cast_id": 45, "profile_path": "/kTs3t6pnO3zR7WYSVYzQfJ9yKMW.jpg", "order": 29}, {"name": "Saoirse Ronan", "character": "Herself", "id": 36592, "credit_id": "5470667092514112e7004bac", "cast_id": 46, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 30}, {"name": "Til Schweiger", "character": "German Cop", "id": 1844, "credit_id": "54706681c3a3682f9a004bb1", "cast_id": 47, "profile_path": "/mRQ9URazBbImeV0NxHZsGS3Px7D.jpg", "order": 31}, {"name": "Russell Tovey", "character": "Delivery Man", "id": 55469, "credit_id": "5470669592514112ee0042e5", "cast_id": 48, "profile_path": "/qpL1Zl5NjNTcYpRBlwpm9DPsl1I.jpg", "order": 32}, {"name": "Christoph Waltz", "character": "Himself", "id": 27319, "credit_id": "547066afc3a3682f9a004bb7", "cast_id": 49, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 33}, {"name": "Christoph Waltz", "character": "Christopher Waltz", "id": 27319, "credit_id": "547066c092514112ee0042ed", "cast_id": 50, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 34}, {"name": "Hugh Bonneville", "character": "Irish Journalist", "id": 19923, "credit_id": "547066f29251413813000bce", "cast_id": 51, "profile_path": "/4527blb8nyLolaIBsZIeUR83vzm.jpg", "order": 35}, {"name": "Mackenzie Crook", "character": "Prado Museum Guard #1", "id": 1711, "credit_id": "54706704c3a36814aa000381", "cast_id": 52, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 36}], "directors": [{"name": "James Bobin", "department": "Directing", "job": "Director", "credit_id": "52fe4b539251416c750ff6b7", "profile_path": "/reixB8bAjIoVDyTwjNwRzB47yT2.jpg", "id": 26205}], "vote_average": 6.4, "runtime": 112}, "5966": {"poster_path": "/nIY4kvJTTnxoBR0wycrXng5MOYs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13639253, "overview": "Reuben Feffer (Ben Stiller) is a guy who's spent his entire life playing it safe. Polly Prince (Jennifer Aniston) is irresistible as a free-spirit who lives for the thrill of the moment. When these two comically mismatched souls collide, Reuben's world is turned upside down, as he makes an uproarious attempt to change his life from middle-of-the-road to totally-out-there!", "video": false, "id": 5966, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Along Came Polly", "tagline": "For the most cautious man on Earth, life is about to get interesting.", "vote_count": 194, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0343135", "adult": false, "backdrop_path": "/rRyvFnKBlO2sDCbYugtAByn7ywL.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Jersey Films", "id": 216}], "release_date": "2004-01-12", "popularity": 1.08611813832619, "original_title": "Along Came Polly", "budget": 42000000, "cast": [{"name": "Ben Stiller", "character": "Reuben Feffer", "id": 7399, "credit_id": "52fe4432c3a36847f808804d", "cast_id": 8, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Polly Prince", "id": 4491, "credit_id": "52fe4432c3a36847f8088051", "cast_id": 9, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Philip Seymour Hoffman", "character": "Sandy Lyle", "id": 1233, "credit_id": "52fe4433c3a36847f8088055", "cast_id": 10, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 2}, {"name": "Debra Messing", "character": "Lisa Kramer", "id": 23959, "credit_id": "52fe4433c3a36847f8088059", "cast_id": 11, "profile_path": "/d2LQbdccJbMSDC9Qm6vTn4qa0Ly.jpg", "order": 3}, {"name": "Alec Baldwin", "character": "Stan", "id": 7447, "credit_id": "52fe4433c3a36847f808805d", "cast_id": 12, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 4}, {"name": "Hank Azaria", "character": "Claude", "id": 5587, "credit_id": "52fe4433c3a36847f8088061", "cast_id": 13, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 5}, {"name": "Bryan Brown", "character": "Leland Van Lew", "id": 29092, "credit_id": "52fe4433c3a36847f8088065", "cast_id": 14, "profile_path": "/ppE8Gy8jyjB5oQwwryVFgvQlHUr.jpg", "order": 6}, {"name": "Jsu Garcia", "character": "Javier", "id": 13657, "credit_id": "52fe4433c3a36847f8088069", "cast_id": 15, "profile_path": "/wbmmHxDtEMECvgmjwsgGX5HRmsr.jpg", "order": 7}, {"name": "Michele Lee", "character": "Vivian Feffer", "id": 46944, "credit_id": "52fe4433c3a36847f808806d", "cast_id": 16, "profile_path": "/eAFkwA216b6bFbkenlAqp03luT5.jpg", "order": 8}, {"name": "Bob Dishy", "character": "Irving Feffer", "id": 19889, "credit_id": "52fe4433c3a36847f8088071", "cast_id": 17, "profile_path": "/g4pWDvBoJ5kn61sAL2lpobqsbnu.jpg", "order": 9}, {"name": "Missi Pyle", "character": "Roxanne", "id": 1294, "credit_id": "52fe4433c3a36847f8088075", "cast_id": 18, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 10}], "directors": [{"name": "John Hamburg", "department": "Directing", "job": "Director", "credit_id": "52fe4433c3a36847f8088081", "profile_path": "/sOLaBjtlparS5GWGhI3a8Rx5Qzr.jpg", "id": 17871}], "vote_average": 5.8, "runtime": 90}, "63311": {"poster_path": "/iFIgRIhz3CdWDuKBqEDURV4a4Ly.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 5774854, "overview": "A brilliant plastic surgeon creates a synthetic skin that withstands any kind of damage. His guinea pig: a mysterious and volatile woman who holds the key to his obsession.", "video": false, "id": 63311, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Skin I Live In", "tagline": "", "vote_count": 207, "homepage": "http://www.lapielquehabito.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1189073", "adult": false, "backdrop_path": "/4j4hMGrcQ3EymMCi5lYo4SOVQgh.jpg", "production_companies": [{"name": "El Deseo", "id": 49}, {"name": "Televisi\u00f3n Espa\u00f1ola TVE", "id": 6780}, {"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "Instituto de la Cinematograf\u00eda y de las Artes Audiovisuales (ICAA)", "id": 9974}, {"name": "Instituto de Cr\u00e9dito Oficial (ICO)", "id": 11427}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Blue Haze Entertainment", "id": 11898}], "release_date": "2011-09-02", "popularity": 0.78653408595889, "original_title": "La piel que habito", "budget": 13000000, "cast": [{"name": "Antonio Banderas", "character": "Doctor Robert Ledgard", "id": 3131, "credit_id": "52fe46a4c3a368484e09be3f", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Elena Anaya", "character": "Vera Cruz", "id": 3623, "credit_id": "52fe46a4c3a368484e09be43", "cast_id": 2, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 1}, {"name": "Marisa Paredes", "character": "Marilia", "id": 954, "credit_id": "52fe46a4c3a368484e09bea9", "cast_id": 24, "profile_path": "/vUCGRyx1IjRvlNekMkqoFQAf8sD.jpg", "order": 2}, {"name": "Jan Cornet", "character": "Vicente", "id": 440879, "credit_id": "52fe46a4c3a368484e09be57", "cast_id": 6, "profile_path": "/mSvPtwX5nP9gkoXsXtTHripMU4G.jpg", "order": 3}, {"name": "Roberto \u00c1lamo", "character": "Zeca", "id": 225017, "credit_id": "52fe46a4c3a368484e09be61", "cast_id": 9, "profile_path": "/v6Q86u8PXIsDZzKrHhTODDoUFOI.jpg", "order": 4}, {"name": "Eduard Fern\u00e1ndez", "character": "Fulgencio", "id": 87015, "credit_id": "52fe46a4c3a368484e09be65", "cast_id": 10, "profile_path": "/amJKpgzBvEr9d6WIuT1MjADzDZT.jpg", "order": 5}, {"name": "Jos\u00e9 G\u00f3mez", "character": "Presidente del Instituto de Biotecnolog\u00eda", "id": 858618, "credit_id": "52fe46a4c3a368484e09be69", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Blanca Su\u00e1rez", "character": "Norma Ledgard", "id": 106817, "credit_id": "52fe46a4c3a368484e09be53", "cast_id": 5, "profile_path": "/cJuwbx6SEdBEWqBUHZoZysyiIm8.jpg", "order": 7}, {"name": "Susi S\u00e1nchez", "character": "Madre de Vicente", "id": 101401, "credit_id": "52fe46a4c3a368484e09be6d", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "B\u00e1rbara Lennie", "character": "Cristina", "id": 724188, "credit_id": "52fe46a4c3a368484e09be71", "cast_id": 13, "profile_path": "/gPrMindirpIXTP38sBQgpQ9W9PT.jpg", "order": 9}, {"name": "Fernando Cayo", "character": "M\u00e9dico", "id": 51902, "credit_id": "52fe46a4c3a368484e09be75", "cast_id": 14, "profile_path": "/oDbXZgeh03v6OzgeIcrk0YZ556L.jpg", "order": 10}, {"name": "Chema Ruiz", "character": "Polic\u00eda", "id": 102226, "credit_id": "52fe46a4c3a368484e09bead", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Buika", "character": "Cantante", "id": 1356487, "credit_id": "53fa02d4c3a3687358003117", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Ana Mena", "character": "Norma joven", "id": 1275996, "credit_id": "53fa0364c3a368734f002f42", "cast_id": 28, "profile_path": "/57RjSGXoqat9xobplgrP3GWm1Jm.jpg", "order": 13}, {"name": "Teresa Manresa", "character": "Casilda Efraiz", "id": 1356491, "credit_id": "53fa03c80e0a267a72005121", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Fernando Iglesias", "character": "", "id": 1356494, "credit_id": "53fa04b90e0a267a750051a8", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Agust\u00edn Almod\u00f3var", "character": "Agust\u00edn", "id": 952, "credit_id": "53fa058c0e0a267a66005038", "cast_id": 32, "profile_path": "/ooCA6ucXzgTZ1NhiwFNnzW7uRsH.jpg", "order": 17}, {"name": "Miguel Almod\u00f3var", "character": "Hijo de Agust\u00edn", "id": 1356510, "credit_id": "53fa05f80e0a267a66005047", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Marta R. Mahou", "character": "Profesora de Yoga en TV", "id": 1356515, "credit_id": "53fa06530e0a267a750051e8", "cast_id": 34, "profile_path": null, "order": 19}], "directors": [{"name": "Pedro Almod\u00f3var", "department": "Directing", "job": "Director", "credit_id": "52fe46a4c3a368484e09be49", "profile_path": "/Y32fKy8z0xTRq4LESm2yN6W7NJ.jpg", "id": 309}], "vote_average": 6.9, "runtime": 117}, "14160": {"poster_path": "/eqpys83jPDAieV3NOIrW8T5lhHF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 731342744, "overview": "After a lifetime of dreaming of traveling the world, 78-year-old homebody Carl flies away on an unbelievable adventure with Russell, an 8-year-old Wilderness Explorer, unexpectedly in tow. Together, the unlikely pair embarks on a thrilling odyssey full of jungle beasts and rough terrain.", "video": false, "id": 14160, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Up", "tagline": "Fly Up to Venezuela", "vote_count": 2311, "homepage": "http://disney.go.com/disneypictures/up/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "no", "name": "Norsk"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1049413", "adult": false, "backdrop_path": "/fI3ucpgaVKOUcQ82vhgWmWuLlg2.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2009-05-13", "popularity": 2.98675180448531, "original_title": "Up", "budget": 175000000, "cast": [{"name": "Ed Asner", "character": "Carl Fredricksen (voice)", "id": 68812, "credit_id": "52fe45d19251416c75063875", "cast_id": 4, "profile_path": "/1EysZS86vozSb9pwD7HVGqInfDQ.jpg", "order": 0}, {"name": "Christopher Plummer", "character": "Charles Muntz (voice)", "id": 290, "credit_id": "52fe45d19251416c75063879", "cast_id": 5, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 1}, {"name": "Jordan Nagai", "character": "Russell (voice)", "id": 80676, "credit_id": "52fe45d19251416c7506387d", "cast_id": 6, "profile_path": "/cE0ylwj9U3vii34XQGFE3zk8n80.jpg", "order": 2}, {"name": "Bob Peterson", "character": "Dug / Alpha (voice)", "id": 10, "credit_id": "52fe45d19251416c75063881", "cast_id": 7, "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "order": 3}, {"name": "Delroy Lindo", "character": "Beta (voice)", "id": 18792, "credit_id": "52fe45d19251416c75063885", "cast_id": 8, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 4}, {"name": "Jerome Ranft", "character": "Gamma (voice)", "id": 7960, "credit_id": "52fe45d19251416c750638ad", "cast_id": 19, "profile_path": "/pmiQZq5JEhCjhdsIuMaP6Fkt0e9.jpg", "order": 5}, {"name": "John Ratzenberger", "character": "Construction Foreman Tom (voice)", "id": 7907, "credit_id": "52fe45d19251416c75063889", "cast_id": 10, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 6}, {"name": "David Kaye", "character": "Newsreel Announcer (voice)", "id": 84490, "credit_id": "52fe45d19251416c7506388d", "cast_id": 11, "profile_path": "/iNZ54XcY5KvlJxjAFeEBOql4BCz.jpg", "order": 7}, {"name": "Elie Docter", "character": "Young Ellie (voice)", "id": 84491, "credit_id": "52fe45d19251416c75063891", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Jeremy Leary", "character": "Young Carl (voice)", "id": 84492, "credit_id": "52fe45d19251416c75063895", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Mickie McGowan", "character": "Police Officer Edith (voice)", "id": 84493, "credit_id": "52fe45d19251416c75063899", "cast_id": 14, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 10}, {"name": "Danny Mann", "character": "Construction Worker Steve (voice)", "id": 52699, "credit_id": "52fe45d19251416c7506389d", "cast_id": 15, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 11}, {"name": "Donald Fullilove", "character": "Nurse George (voice)", "id": 84494, "credit_id": "52fe45d19251416c750638a1", "cast_id": 16, "profile_path": "/dInPIKh7AfGLR1LT3aZnL8jPKwQ.jpg", "order": 12}, {"name": "Jess Harnell", "character": "Nurse AJ (voice)", "id": 84495, "credit_id": "52fe45d19251416c750638a5", "cast_id": 17, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 13}, {"name": "Josh Cooley", "character": "Omega (voice)", "id": 84496, "credit_id": "52fe45d19251416c750638a9", "cast_id": 18, "profile_path": "/dgzQ40iedoCTzWYsqftYtdcrTxb.jpg", "order": 14}, {"name": "Pete Docter", "character": "Campmaster Strauch (voice)", "id": 12890, "credit_id": "52fe45d19251416c750638b1", "cast_id": 20, "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "order": 15}, {"name": "Mark Andrews", "character": "Additional Voices (voice)", "id": 126638, "credit_id": "52fe45d19251416c750638b5", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Bob Bergen", "character": "Additional Voices (voice)", "id": 78317, "credit_id": "52fe45d19251416c750638b9", "cast_id": 22, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 17}, {"name": "Brenda Chapman", "character": "Additional Voices (voice)", "id": 59803, "credit_id": "52fe45d19251416c750638bd", "cast_id": 23, "profile_path": "/3wEdiMLQObBcBbtg131ZRQG2hfK.jpg", "order": 18}, {"name": "Emma Coats", "character": "Additional Voices (voice)", "id": 1266117, "credit_id": "52fe45d19251416c750638c1", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "John Cygan", "character": "Additional Voices (voice)", "id": 167295, "credit_id": "52fe45d19251416c750638c5", "cast_id": 25, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 20}, {"name": "Paul Eiding", "character": "Additional Voices (voice)", "id": 86006, "credit_id": "52fe45d19251416c750638c9", "cast_id": 26, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 21}, {"name": "Tony Fucile", "character": "Additional Voices (voice)", "id": 1260745, "credit_id": "52fe45d19251416c750638cd", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Teresa Ganzel", "character": "Additional Voices (voice)", "id": 117081, "credit_id": "52fe45d19251416c750638d1", "cast_id": 28, "profile_path": "/4cIwealxv1bizPJks34Gfk7okBF.jpg", "order": 23}, {"name": "Sherry Lynn", "character": "Additional Voices (voice)", "id": 214701, "credit_id": "52fe45d19251416c750638d5", "cast_id": 29, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 24}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "52fe45d19251416c750638d9", "cast_id": 30, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 25}, {"name": "Teddy Newton", "character": "Additional Voices (voice)", "id": 59357, "credit_id": "52fe45d19251416c750638dd", "cast_id": 31, "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "order": 26}, {"name": "Jeff Pidgeon", "character": "Additional Voices (voice)", "id": 7882, "credit_id": "52fe45d19251416c750638e1", "cast_id": 32, "profile_path": "/yLddkg5HcgbJg00cS13GVBnP0HY.jpg", "order": 27}, {"name": "Valerie LaPointe", "character": "Additional Voices (voice)", "id": 225978, "credit_id": "52fe45d19251416c750638e5", "cast_id": 33, "profile_path": null, "order": 28}, {"name": "Jan Rabson", "character": "Additional Voices (voice)", "id": 157626, "credit_id": "52fe45d19251416c750638e9", "cast_id": 34, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 29}, {"name": "Bob Scott", "character": "Additional Voices (voice)", "id": 954958, "credit_id": "52fe45d19251416c750638ed", "cast_id": 35, "profile_path": null, "order": 30}, {"name": "Sebastian Warholm", "character": "Russell (uncredited)", "id": 1266119, "credit_id": "52fe45d19251416c750638f1", "cast_id": 36, "profile_path": null, "order": 31}], "directors": [{"name": "Pete Docter", "department": "Directing", "job": "Director", "credit_id": "52fe45d19251416c75063865", "profile_path": "/kEG0VlxnzZ5InKgTKWhwqVypqpw.jpg", "id": 12890}, {"name": "Bob Peterson", "department": "Directing", "job": "Director", "credit_id": "52fe45d19251416c7506386b", "profile_path": "/13YNM8lBKnK26MYd2Lp3OpU6JdI.jpg", "id": 10}], "vote_average": 7.3, "runtime": 96}, "14161": {"poster_path": "/5tIW9nTuxxy8iXSvsKJqFDVZpyg.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 769653595, "overview": "Dr. Adrian Helmsley, part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms, learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population, the entire race is doomed. Meanwhile, writer Jackson Curtis stumbles on the same information. While the world's leaders race to build \"arks\" to escape the impending cataclysm, Curtis struggles to find a way to save his family. Meanwhile, volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.", "video": false, "id": 14161, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "2012", "tagline": "We Were Warned.", "vote_count": 2612, "homepage": "http://www.sonypictures.com/movies/2012", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "bo", "name": ""}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "tr", "name": "T\u00fcrk\u00e7e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1190080", "adult": false, "backdrop_path": "/ywxrdkfbr8Dg3SBW2gi4kC59qOb.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Farewell Productions", "id": 10905}, {"name": "The Mark Gordon Company", "id": 1557}], "release_date": "2009-10-10", "popularity": 1.84398584426232, "original_title": "2012", "budget": 200000000, "cast": [{"name": "John Cusack", "character": "Jackson Curtis", "id": 3036, "credit_id": "52fe45d29251416c75063953", "cast_id": 1, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Amanda Peet", "character": "Kate Curtis", "id": 2956, "credit_id": "52fe45d29251416c75063957", "cast_id": 2, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 1}, {"name": "Chiwetel Ejiofor", "character": "Adrian Helmsley", "id": 5294, "credit_id": "52fe45d29251416c7506395b", "cast_id": 3, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 2}, {"name": "Thandie Newton", "character": "Laura Wilson", "id": 9030, "credit_id": "52fe45d29251416c75063969", "cast_id": 7, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 3}, {"name": "Oliver Platt", "character": "Carl Anheuser", "id": 17485, "credit_id": "52fe45d29251416c7506397d", "cast_id": 12, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 4}, {"name": "Thomas McCarthy", "character": "Dr. Gordon Silberman", "id": 17867, "credit_id": "52fe45d29251416c75063979", "cast_id": 11, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 5}, {"name": "Woody Harrelson", "character": "Charlie Frost", "id": 57755, "credit_id": "52fe45d29251416c7506396d", "cast_id": 8, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 6}, {"name": "Danny Glover", "character": "President Wilson", "id": 2047, "credit_id": "52fe45d29251416c7506395f", "cast_id": 4, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 7}, {"name": "Liam James", "character": "Noah Curtis", "id": 83852, "credit_id": "52fe45d29251416c75063971", "cast_id": 9, "profile_path": "/heAbNsKPFDCFIrzy7zDeZm6w2xd.jpg", "order": 8}, {"name": "Morgan Lily", "character": "Lilly Curtis", "id": 74227, "credit_id": "52fe45d29251416c75063975", "cast_id": 10, "profile_path": "/iYa30gYkaxXLsGvUZ9WhieQw2xo.jpg", "order": 9}, {"name": "Zlatko Buric", "character": "Yuri Karpov", "id": 31960, "credit_id": "52fe45d29251416c75063981", "cast_id": 13, "profile_path": "/eMqFfRzrtHuQVq8jDQE1R6C5SMJ.jpg", "order": 10}, {"name": "Beatrice Rosen", "character": "Tamara", "id": 101014, "credit_id": "52fe45d29251416c75063985", "cast_id": 14, "profile_path": "/897MnsgQUwXuN0OfMwY19BMFULl.jpg", "order": 11}, {"name": "Johann Urb", "character": "Sasha", "id": 101017, "credit_id": "52fe45d29251416c75063999", "cast_id": 19, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 12}, {"name": "John Billingsley", "character": "Professor Frederic West", "id": 21722, "credit_id": "52fe45d29251416c75063995", "cast_id": 18, "profile_path": "/fHQ6ecMufxLwUAbN3dX3yxFAn5d.jpg", "order": 13}, {"name": "Chin Han", "character": "Tenzin", "id": 101015, "credit_id": "52fe45d29251416c75063989", "cast_id": 15, "profile_path": "/xvMCVDvrQ2WlAB2LmkG6HAzlYag.jpg", "order": 14}, {"name": "Osric Chau", "character": "Nima", "id": 101016, "credit_id": "52fe45d29251416c7506398d", "cast_id": 16, "profile_path": "/v3y3W0Xelyy4ge87S1YfcmpXcgO.jpg", "order": 15}, {"name": "Lisa Lu", "character": "Grandma Sonam", "id": 86633, "credit_id": "52fe45d29251416c75063991", "cast_id": 17, "profile_path": "/cMmnEKqgUNrZq5v82nTqnE7m5KY.jpg", "order": 16}, {"name": "Blu Mankuma", "character": "Harry Helmsley", "id": 44150, "credit_id": "52fe45d29251416c750639a1", "cast_id": 21, "profile_path": "/uazVph0ws1sQvxkE7PmNDQMXIE4.jpg", "order": 17}, {"name": "George Segal", "character": "Tony Delgatto", "id": 18364, "credit_id": "52fe45d29251416c7506399d", "cast_id": 20, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 18}, {"name": "Stephen McHattie", "character": "Captain Michaels", "id": 230, "credit_id": "52fe45d29251416c750639a9", "cast_id": 24, "profile_path": "/iGkMgtmCQGc3Tbk1P7TS76j0PMP.jpg", "order": 19}, {"name": "Jimi Mistry", "character": "Dr. Satnam Tsurutani", "id": 16756, "credit_id": "52fe45d29251416c750639a5", "cast_id": 22, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 20}, {"name": "Ryan McDonald", "character": "Scotty", "id": 153516, "credit_id": "52fe45d29251416c750639b9", "cast_id": 27, "profile_path": "/v5tU21dnVVdBHUyQjmba1swoGpf.jpg", "order": 21}, {"name": "Alexandre Haussmann", "character": "Alec", "id": 967933, "credit_id": "52fe45d29251416c75063a1d", "cast_id": 46, "profile_path": "/r08ILrtm94QvPBRf9DEVCoBwKEW.jpg", "order": 22}, {"name": "John Mee", "character": "Angry Billionaire", "id": 1205803, "credit_id": "52fe45d29251416c75063a21", "cast_id": 47, "profile_path": null, "order": 23}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe45d29251416c75063965", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.6, "runtime": 158}, "227156": {"poster_path": "/4g19qQ4pfQz6nlVctA0q3y7Dieg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66980456, "overview": "The haunting story of 'The Giver' centers on Jonas (Brenton Thwaites), a young man who lives in a seemingly ideal, if colorless, world of conformity and contentment. Yet as he begins to spend time with The Giver (Jeff Bridges), who is the sole keeper of all the community\u2019s memories, Jonas quickly begins to discover the dark and deadly truths of his community\u2019s secret past. With this newfound power of knowledge, he realizes that the stakes are higher than imagined \u2013 a matter of life and death for himself and those he loves most. At extreme odds, Jonas knows that he must escape their world to protect them all \u2013 a challenge that no one has ever succeeded at before.", "video": false, "id": 227156, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "The Giver", "tagline": "You can make things better.", "vote_count": 364, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0435651", "adult": false, "backdrop_path": "/9heGSxkxgVCo1yScmkIgvLL2ytD.jpg", "production_companies": [{"name": "Tonik Productions", "id": 17145}, {"name": "The Weinstein Company", "id": 308}, {"name": "Walden Media", "id": 10221}, {"name": "As Is Productions", "id": 37411}], "release_date": "2014-08-11", "popularity": 1.51293689606356, "original_title": "The Giver", "budget": 25000000, "cast": [{"name": "Jeff Bridges", "character": "The Giver", "id": 1229, "credit_id": "52fe4e979251416c7515baa1", "cast_id": 7, "profile_path": "/eronr4zagxsKCBkGsFBDBCOqyma.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Chief Elder", "id": 5064, "credit_id": "52fe4e979251416c7515ba99", "cast_id": 5, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Brenton Thwaites", "character": "Jonas", "id": 1017347, "credit_id": "5331c2f3c3a3686a95002037", "cast_id": 10, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 2}, {"name": "Odeya Rush", "character": "Fiona", "id": 1121786, "credit_id": "5331c30bc3a3686a9d00206b", "cast_id": 12, "profile_path": "/f9PSkyIjHUE5I5riVRZrUDav4YM.jpg", "order": 3}, {"name": "Alexander Skarsg\u00e5rd", "character": "Jonas's father", "id": 28846, "credit_id": "52fe4e979251416c7515ba91", "cast_id": 3, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 4}, {"name": "Katie Holmes", "character": "Jonas' mother", "id": 3897, "credit_id": "52fe4e979251416c7515ba9d", "cast_id": 6, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 5}, {"name": "Taylor Swift", "character": "Rosemary", "id": 212208, "credit_id": "52fe4e979251416c7515ba95", "cast_id": 4, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 6}, {"name": "Cameron Monaghan", "character": "Asher", "id": 37089, "credit_id": "5331c2e8c3a3686a86001fa4", "cast_id": 9, "profile_path": "/rmzBfqHRUnJjXCL6l7VH8FmVpZu.jpg", "order": 7}, {"name": "Katharina Damm", "character": "Nurturer", "id": 1274509, "credit_id": "5331c301c3a3686a95002039", "cast_id": 11, "profile_path": "/eBUOGjlqrWTkqOZNIsFXNePcrNX.jpg", "order": 8}, {"name": "Emma Tremblay", "character": "Lily", "id": 1272862, "credit_id": "52fe4e979251416c7515baa5", "cast_id": 8, "profile_path": "/p6sRtFi1cNmR2qOXWX6buzDTFIr.jpg", "order": 9}, {"name": "Alexander Jillings", "character": "Gabriel 12 Months", "id": 1412927, "credit_id": "54b45d7792514173690032b0", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "James Jillings", "character": "Gabriel 12 Months", "id": 1412928, "credit_id": "54b45df3c3a36805d3002748", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Jordan Nicholas Smal", "character": "Gabriel 3 Months", "id": 1412929, "credit_id": "54b45e8b92514107e0006602", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Saige Fernandes", "character": "Gabriel 6 Months", "id": 1412930, "credit_id": "54b45ec7c3a3687a630014e9", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Renate Stuurman", "character": "Dinah", "id": 1412934, "credit_id": "54b45feac3a368028700219d", "cast_id": 36, "profile_path": "/7eS6Yj9uLuchhWyCTw0ilcftN57.jpg", "order": 14}, {"name": "Vanessa Cooke", "character": "Elder", "id": 1084896, "credit_id": "54b46225c3a368028700221b", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "John Whiteley", "character": "Elder", "id": 129333, "credit_id": "54b4631ac3a36809400078f3", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Kira Wilkinson", "character": "Chief Elder's Assistant", "id": 1412940, "credit_id": "54b4638292514114a2004b35", "cast_id": 39, "profile_path": null, "order": 17}, {"name": "Meganne Young", "character": "Bride", "id": 1412941, "credit_id": "54b4657a9251417369003431", "cast_id": 40, "profile_path": "/iRWXuCcktwCxGPPldMsyGij3bEt.jpg", "order": 18}, {"name": "Thabo Rametsi", "character": "Robbie", "id": 1412942, "credit_id": "54b46613c3a368210c003fd3", "cast_id": 41, "profile_path": null, "order": 19}, {"name": "Vaughn Lucas", "character": "Security Officer", "id": 1412943, "credit_id": "54b466c6c3a368094e007cec", "cast_id": 42, "profile_path": null, "order": 20}, {"name": "Jaime Coue", "character": "Vietcong Sniper", "id": 1412944, "credit_id": "54b467bac3a368783b000c22", "cast_id": 43, "profile_path": null, "order": 21}, {"name": "Jefferson Mays", "character": "Community (voice)", "id": 1218235, "credit_id": "54b468f29251412ffc002185", "cast_id": 44, "profile_path": "/6kO6OeqD2tkka15pHrVEglUMxmI.jpg", "order": 22}], "directors": [{"name": "Phillip Noyce", "department": "Directing", "job": "Director", "credit_id": "52fe4e979251416c7515ba87", "profile_path": "/5Nv3ZWdlI697wp6fcbg1bolVRxN.jpg", "id": 13015}], "vote_average": 6.4, "runtime": 94}, "169813": {"poster_path": "/dZ2h9AiBPNwz2CeiEoJQ03WiL8J.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1600000, "overview": "A 20-something supervising staff member of a residential treatment facility navigates the troubled waters of that world alongside her co-worker and longtime boyfriend.", "video": false, "id": 169813, "genres": [{"id": 18, "name": "Drama"}], "title": "Short Term 12", "tagline": "", "vote_count": 108, "homepage": "http://www.shortterm12.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2370248", "adult": false, "backdrop_path": "/ddlMODFJUjvhzrymuW7O7KPuhVL.jpg", "production_companies": [{"name": "Traction Media", "id": 2294}, {"name": "Animal Kingdom", "id": 26995}], "release_date": "2013-08-23", "popularity": 1.09715190658288, "original_title": "Short Term 12", "budget": 0, "cast": [{"name": "Brie Larson", "character": "Grace", "id": 60073, "credit_id": "52fe4ceac3a36847f82447d5", "cast_id": 3, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 0}, {"name": "John Gallagher Jr.", "character": "Mason", "id": 17487, "credit_id": "52fe4ceac3a36847f82447d9", "cast_id": 4, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 1}, {"name": "Kaitlyn Dever", "character": "Jayden", "id": 481337, "credit_id": "52fe4ceac3a36847f82447dd", "cast_id": 5, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 2}, {"name": "Melora Walters", "character": "Dr. Hendler", "id": 4766, "credit_id": "52fe4ceac3a36847f82447e1", "cast_id": 6, "profile_path": "/ffxBL8NSiXYJMSMzY37FgYuYRTw.jpg", "order": 3}, {"name": "Stephanie Beatriz", "character": "Jessica", "id": 968367, "credit_id": "52fe4ceac3a36847f82447e5", "cast_id": 7, "profile_path": "/aDERKj5dwtRzGPAYTPp9BPiqfHT.jpg", "order": 4}, {"name": "Rami Malek", "character": "Nate", "id": 17838, "credit_id": "52fe4ceac3a36847f82447e9", "cast_id": 8, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 5}, {"name": "Alex Calloway", "character": "Sammy", "id": 1200862, "credit_id": "52fe4ceac3a36847f82447ed", "cast_id": 9, "profile_path": "/cXzSQaK481iRJVcJhd1QXVjyuF6.jpg", "order": 6}, {"name": "Kevin Hernandez", "character": "Luis", "id": 999329, "credit_id": "52fe4ceac3a36847f82447f1", "cast_id": 10, "profile_path": "/lz0H1XbddF4jOwuoIi2IuV1bs3A.jpg", "order": 7}, {"name": "Lydia Du Veaux", "character": "Kendra", "id": 1200863, "credit_id": "52fe4ceac3a36847f82447f5", "cast_id": 11, "profile_path": "/dVK3pf7JBhEhZq1NDxqnpLk2wKT.jpg", "order": 8}, {"name": "Keith Stanfield", "character": "Marcus", "id": 1200864, "credit_id": "52fe4ceac3a36847f82447f9", "cast_id": 12, "profile_path": "/iqn7EWoEjqdzcaOJQ1DOYt8mpiy.jpg", "order": 9}, {"name": "Frantz Turner", "character": "Jack", "id": 116536, "credit_id": "52fe4ceac3a36847f82447fd", "cast_id": 13, "profile_path": "/bcU0XFsc5WNMnd60xLZav66vM8I.jpg", "order": 10}, {"name": "Diana Maria Riva", "character": "Nurse Beth", "id": 34488, "credit_id": "52fe4ceac3a36847f8244801", "cast_id": 14, "profile_path": "/pVK8NLnPyoGZ6eOHkSEZClqDx4I.jpg", "order": 11}, {"name": "Harold Cannon", "character": "Mason's Dad", "id": 109626, "credit_id": "52fe4ceac3a36847f8244805", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Silvia Curiel", "character": "Mason's Mom", "id": 945426, "credit_id": "52fe4ceac3a36847f8244809", "cast_id": 16, "profile_path": "/jPbaQ6ej6WnqkheUwhubnQA9fJk.jpg", "order": 13}, {"name": "Bran'dee Allen", "character": "Shawnta", "id": 1200866, "credit_id": "52fe4ceac3a36847f8244811", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Danny Roper", "character": "David", "id": 1410284, "credit_id": "54ad4239c3a3684091004cae", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Elyssa Gutierrez", "character": "Anna", "id": 1410285, "credit_id": "54ad4487c3a3680c2100beb7", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Garryson Zamora", "character": "Thom", "id": 1410286, "credit_id": "54ad44f2c3a3687769000127", "cast_id": 37, "profile_path": null, "order": 18}, {"name": "Michael Marto", "character": "Connor", "id": 1410287, "credit_id": "54ad458dc3a3680c3000bc34", "cast_id": 38, "profile_path": null, "order": 19}, {"name": "Patricia Barrett", "character": "Tracy", "id": 1410289, "credit_id": "54ad4b409251415679005e3e", "cast_id": 39, "profile_path": null, "order": 20}, {"name": "Tanya Marie A. Bitanga", "character": "Nikki", "id": 1410290, "credit_id": "54ad4b88925141737700005f", "cast_id": 40, "profile_path": null, "order": 21}, {"name": "Zoe Wilkens", "character": "Spring", "id": 1410293, "credit_id": "54ad4bd59251417377000069", "cast_id": 41, "profile_path": null, "order": 22}, {"name": "Angel Amaral", "character": "Trevor", "id": 1305390, "credit_id": "54ad4d80c3a3684091004da5", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Arnold Barrera", "character": "Mariachi Band Member, Trumpet", "id": 1410297, "credit_id": "54ad500592514173770000f1", "cast_id": 43, "profile_path": null, "order": 24}, {"name": "Joseph Bruley", "character": "Mariachi Band Member, Guitar", "id": 1410324, "credit_id": "54ad56e092514116dc00171e", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Fred Herrera", "character": "Mariachi Band Member, Guitarron", "id": 1410325, "credit_id": "54ad57709251413258000061", "cast_id": 45, "profile_path": null, "order": 26}, {"name": "Shika Moran", "character": "Guest at Mason's Parents' Party", "id": 1410326, "credit_id": "54ad57fe925141183c0016b5", "cast_id": 46, "profile_path": null, "order": 27}, {"name": "Nikki Chapman", "character": "Guest at Mason's Parents' Party", "id": 1410329, "credit_id": "54ad595ec3a36806ce00010f", "cast_id": 47, "profile_path": null, "order": 28}, {"name": "Fay DeLaCruz", "character": "Guest at Mason's Parents' Party", "id": 1410331, "credit_id": "54ad59adc3a3682fd5000004", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Cameron Gore", "character": "Guest at Mason's Parents' Party", "id": 1410334, "credit_id": "54ad5a23c3a3682fd5000017", "cast_id": 49, "profile_path": null, "order": 30}, {"name": "Anthony Puentes", "character": "Guest at Mason's Parents' Party", "id": 1410336, "credit_id": "54ad5a5cc3a3682fdf000017", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Veronica Puentes", "character": "Guest at Mason's Parents' Party", "id": 1410338, "credit_id": "54ad5a959251414b5700001c", "cast_id": 51, "profile_path": null, "order": 32}, {"name": "Laura Macias", "character": "Guest at Mason's Parents' Party", "id": 1410339, "credit_id": "54ad5ad6c3a3682fcc000044", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Ana Shiravi", "character": "Guest at Mason's Parents' Party", "id": 1410341, "credit_id": "54ad5b31c3a3682fcf000041", "cast_id": 53, "profile_path": null, "order": 34}, {"name": "Mohammad Shiravi", "character": "Guest at Mason's Parents' Party", "id": 1410343, "credit_id": "54ad5bba9251414b6000004e", "cast_id": 54, "profile_path": null, "order": 35}, {"name": "Edward Goldstein", "character": "Guest at Mason's Parents' Party", "id": 1410344, "credit_id": "54ad5bf7c3a3682fc6000068", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Etta Goldstein", "character": "Guest at Mason's Parents' Party", "id": 1410347, "credit_id": "54ad5c3e9251414b5a00004f", "cast_id": 56, "profile_path": null, "order": 37}, {"name": "Brett Goldstein", "character": "Guest at Mason's Parents' Party", "id": 1410349, "credit_id": "54ad5cae9251414b4d000071", "cast_id": 57, "profile_path": null, "order": 38}, {"name": "Alexandra Estrada", "character": "Guest at Mason's Parents' Party", "id": 1410352, "credit_id": "54ad5d87c3a3682fcc0000b0", "cast_id": 58, "profile_path": null, "order": 39}, {"name": "Michelle Nordahl", "character": "Guest at Mason's Parents' Party", "id": 1410354, "credit_id": "54ad5e7a9251414b4d0000b5", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Jared Callahan", "character": "Guest at Mason's Parents' Party", "id": 1410361, "credit_id": "54ad5ef19251414e400000a0", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Joel P. West", "character": "Guest at Mason's Parents' Party", "id": 1302430, "credit_id": "54ad5fa9c3a368430b000061", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Jessica Nordahl", "character": "Guest at Mason's Parents' Party", "id": 1410368, "credit_id": "54ad5fd59251414b5a0000da", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Andrea Macias", "character": "Guest at Mason's Parents' Party", "id": 1410369, "credit_id": "54ad606b9251414b5d0000f9", "cast_id": 63, "profile_path": null, "order": 44}, {"name": "Kaily McCoy", "character": "Guest at Mason's Parents' Party", "id": 1410370, "credit_id": "54ad60d89251416b64000014", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Thaddeus McRae", "character": "Guest at Mason's Parents' Party", "id": 1410371, "credit_id": "54ad611bc3a3685373000017", "cast_id": 65, "profile_path": null, "order": 46}, {"name": "Kenny Laubbacher", "character": "Guest at Mason's Parents' Party", "id": 1410372, "credit_id": "54ad61bc9251416b6700002b", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "Pamela Luna", "character": "Guest at Mason's Parents' Party", "id": 1410373, "credit_id": "54ad61f89251416b76000036", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Valentina I. Valentini", "character": "Guest at Mason's Parents' Party", "id": 1410374, "credit_id": "54ad624cc3a368537b000044", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Brad Kester", "character": "Guest at Mason's Parents' Party", "id": 1410376, "credit_id": "54ad63389251416b7000005d", "cast_id": 69, "profile_path": null, "order": 50}, {"name": "James Abraham", "character": "Guest at Mason's Parents' Party", "id": 1410378, "credit_id": "54ad63c99251416b6c00007f", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Angelina Assereto", "character": "Guest at Mason's Parents' Party", "id": 1025968, "credit_id": "54ad6502c3a368536d0000b0", "cast_id": 71, "profile_path": "/qePNBNokzs1ysjHTe26YG5w5MuB.jpg", "order": 52}, {"name": "Merrily Cretton", "character": "Guest at Mason's Parents' Party", "id": 1410379, "credit_id": "54ad652b9251416b640000c3", "cast_id": 72, "profile_path": null, "order": 53}, {"name": "Spring Cretton", "character": "Guest at Mason's Parents' Party", "id": 1410380, "credit_id": "54ad6589c3a36802f1000002", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Patrick James", "character": "Guest at Mason's Parents' Party", "id": 1410382, "credit_id": "54ad66109251416b70000104", "cast_id": 74, "profile_path": null, "order": 55}, {"name": "Christopher Jun", "character": "Guest at Mason's Parents' Party", "id": 1410383, "credit_id": "54ad671d9251416b670000fa", "cast_id": 75, "profile_path": "/x6FXN3MfzUXlHq6D9kAdYqLpWqj.jpg", "order": 56}], "directors": [{"name": "Destin Cretton", "department": "Directing", "job": "Director", "credit_id": "52fe4ceac3a36847f82447cb", "profile_path": null, "id": 1144604}], "vote_average": 8.1, "runtime": 96}, "227159": {"poster_path": "/zRkLCOx7o9tjPYb9s7u6mpw8VOs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 106645357, "overview": "Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.", "video": false, "id": 227159, "genres": [{"id": 35, "name": "Comedy"}], "title": "Horrible Bosses 2", "tagline": "New Crime. Same Tools.", "vote_count": 385, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/zU3dVVBa3JW1nQVUsaFM0BeTnK.jpg", "id": 280588, "name": "Horrible Bosses Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2170439", "adult": false, "backdrop_path": "/7OluTl9LoaMDZ2MVdrFVuU2os09.jpg", "production_companies": [{"name": "RatPac Entertainment", "id": 28732}, {"name": "BenderSpink", "id": 6363}, {"name": "New Line Cinema", "id": 12}], "release_date": "2014-11-26", "popularity": 7.01311796191906, "original_title": "Horrible Bosses 2", "budget": 42000000, "cast": [{"name": "Jason Bateman", "character": "Nick Hendricks", "id": 23532, "credit_id": "52fe4e979251416c7515bac7", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 0}, {"name": "Jason Sudeikis", "character": "Kurt Buckman", "id": 58224, "credit_id": "52fe4e979251416c7515bac3", "cast_id": 3, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 1}, {"name": "Charlie Day", "character": "Dale Arbus", "id": 95101, "credit_id": "52fe4e979251416c7515bacb", "cast_id": 5, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 2}, {"name": "Jennifer Aniston", "character": "Dr. Julia Harris, D.D.S.", "id": 4491, "credit_id": "5479c408c3a3685c4b0024ba", "cast_id": 8, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 3}, {"name": "Kevin Spacey", "character": "Dave Harken", "id": 1979, "credit_id": "5479c44dc3a36803df000015", "cast_id": 10, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 4}, {"name": "Jamie Foxx", "character": "Dean \"MF\" Jones", "id": 134, "credit_id": "5479c43fc3a3685c450024c9", "cast_id": 9, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 5}, {"name": "Chris Pine", "character": "Rex Hanson", "id": 62064, "credit_id": "52fe4e979251416c7515bacf", "cast_id": 6, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 6}, {"name": "Christoph Waltz", "character": "Bert Hanson", "id": 27319, "credit_id": "53c50ba3c3a368246e001384", "cast_id": 7, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 7}, {"name": "Jonathan Banks", "character": "Detective Hatcher", "id": 783, "credit_id": "547fcac69251416e7e000aea", "cast_id": 11, "profile_path": "/s6K0lromCtmSTzuX9hig8OPiRsC.jpg", "order": 8}, {"name": "Lindsay Sloane", "character": "Stacy Arbus", "id": 41662, "credit_id": "547fcae2c3a36829a7000b3c", "cast_id": 12, "profile_path": "/t6eTNADrVDCGhkSJpfNwwMexoHR.jpg", "order": 9}, {"name": "Keegan-Michael Key", "character": "Mike", "id": 298410, "credit_id": "547fcaf29251416e78000af2", "cast_id": 13, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 10}, {"name": "Kelly Stables", "character": "Rachel", "id": 107791, "credit_id": "547fcb06c3a36829ab000afe", "cast_id": 14, "profile_path": "/vw7kfaITPSFNwQrDMrubNOt7uuZ.jpg", "order": 11}, {"name": "Jerry Lambert", "character": "Skip", "id": 61113, "credit_id": "54e7b8ae9251412eb800069c", "cast_id": 16, "profile_path": "/j6jT5Zif7C5lmwberf47IiuwrOD.jpg", "order": 12}, {"name": "Sam Richardson", "character": "Producer", "id": 1429453, "credit_id": "54e7b9539251412eb10006da", "cast_id": 17, "profile_path": "/29V5uw2sgJexqKGm9qQ54uXlSkx.jpg", "order": 13}, {"name": "Brianne Howey", "character": "Candy", "id": 132312, "credit_id": "54e7baffc3a36836d90006a7", "cast_id": 18, "profile_path": "/znB9fvTAj1Q9hRv32ocJljZ2Wr3.jpg", "order": 14}, {"name": "Lidia Porto", "character": "Lupe", "id": 180527, "credit_id": "54e7bd719251412ebb000776", "cast_id": 19, "profile_path": "/pf93ztgaIlecCLhLd0t4yId8Dvb.jpg", "order": 15}, {"name": "Jaye Razor", "character": "Ray", "id": 1429456, "credit_id": "54e7bf07c3a36836e40007fd", "cast_id": 20, "profile_path": "/9SjQ4Fx7iKcjKrcL8P7mitPeX6P.jpg", "order": 16}], "directors": [{"name": "Sean Anders", "department": "Directing", "job": "Director", "credit_id": "52fe4e979251416c7515bab9", "profile_path": "/9PsLZSfLinkQJMFzxLp0pKMWkt5.jpg", "id": 74619}], "vote_average": 6.3, "runtime": 108}, "38745": {"poster_path": "/7LipqR0RSfPYzZJf2TajeI5598M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 237382724, "overview": "Travel writer Lemuel Gulliver takes an assignment in Bermuda, but ends up on the island of Liliput, where he towers over its tiny citizens.", "video": false, "id": 38745, "genres": [{"id": 35, "name": "Comedy"}], "title": "Gulliver's Travels", "tagline": "Something big is going down.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1320261", "adult": false, "backdrop_path": "/ijxUVmcBPf5j4osEtKebB4cSWF1.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Davis Entertainment", "id": 1302}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2010-12-25", "popularity": 1.165276893918, "original_title": "Gulliver's Travels", "budget": 112000000, "cast": [{"name": "Emily Blunt", "character": "Princess Mary", "id": 5081, "credit_id": "52fe46d99251416c91061c69", "cast_id": 4, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Jason Segel", "character": "Horatio", "id": 41088, "credit_id": "52fe46d99251416c91061c6d", "cast_id": 5, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Jack Black", "character": "Lemuel Gulliver", "id": 70851, "credit_id": "52fe46d99251416c91061c71", "cast_id": 6, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 2}, {"name": "Amanda Peet", "character": "Darcy Silverman", "id": 2956, "credit_id": "52fe46d99251416c91061c75", "cast_id": 7, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 3}, {"name": "Chris O'Dowd", "character": "General Edward", "id": 40477, "credit_id": "52fe46d99251416c91061c79", "cast_id": 8, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 4}, {"name": "Billy Connolly", "character": "King Theodore", "id": 9188, "credit_id": "52fe46d99251416c91061c7d", "cast_id": 9, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 5}, {"name": "Catherine Tate", "character": "Queen Isabel", "id": 47646, "credit_id": "52fe46d99251416c91061c81", "cast_id": 11, "profile_path": "/tQunVpag1mJy5LWQ33eDexBWDwH.jpg", "order": 6}, {"name": "James Corden", "character": "Jinks", "id": 55466, "credit_id": "52fe46d99251416c91061c85", "cast_id": 12, "profile_path": "/kqzPda5DJmiLWJRdFEY4VIaFr07.jpg", "order": 7}, {"name": "Emmanuel Quatra", "character": "King Leopold", "id": 289628, "credit_id": "52fe46d99251416c91061c89", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Olly Alexander", "character": "Prince August", "id": 89823, "credit_id": "52fe46d99251416c91061c8d", "cast_id": 14, "profile_path": "/11MOco4DycbgPxRtYKa1Hwhe9oC.jpg", "order": 9}, {"name": "Richard Laing", "character": "Nigel Travel Writer", "id": 40687, "credit_id": "52fe46d99251416c91061c91", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "David Sterne", "character": "Foreman", "id": 117654, "credit_id": "52fe46d99251416c91061c95", "cast_id": 16, "profile_path": "/vZaOmbLpbh3rbDa3CGoj7cBkotI.jpg", "order": 11}, {"name": "Stewart Scudamore", "character": "Blefuscian Captain", "id": 25095, "credit_id": "52fe46d99251416c91061c99", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Jonathan Aris", "character": "Lilliputian Scientist", "id": 28477, "credit_id": "52fe46d99251416c91061c9d", "cast_id": 18, "profile_path": "/6RMuwGYfLLGq01LNGBydj9jpTWn.jpg", "order": 13}, {"name": "Joe Lo Truglio", "character": "Butt-Crack Man", "id": 21131, "credit_id": "52fe46d99251416c91061ca1", "cast_id": 19, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 14}], "directors": [{"name": "Rob Letterman", "department": "Directing", "job": "Director", "credit_id": "52fe46d99251416c91061c59", "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "id": 65630}], "vote_average": 5.1, "runtime": 85}, "145247": {"poster_path": "/z3WWCravNWd5lhPQYFAvifq8UrI.jpg", "production_countries": [{"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "This unlikely story follows a 100-year-old man who decides it's not too late to start over. For most people it would be the adventure of a lifetime, but Allan Karlsson's unexpected journey is not his first. For a century he's made the world uncertain, and now he is on the loose again. Based on the internationally best-selling novel by Jonas Jonasson.", "video": false, "id": 145247, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The 100-Year-Old Man Who Climbed Out the Window and Disappeared", "tagline": "For a century he's made the world uncertain, and now he is on the loose again.", "vote_count": 106, "homepage": "http://nicedrama.se/niceflx/", "belongs_to_collection": null, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt2113681", "adult": false, "backdrop_path": "/mtWZqyT3QRoJ0nTilg2FDe9cm7G.jpg", "production_companies": [{"name": "FLX Comedy AB", "id": 28003}, {"name": "NICE FLX Pictures", "id": 28004}, {"name": "Nice Drama", "id": 28005}], "release_date": "2013-12-25", "popularity": 1.7159903272988, "original_title": "Hundra\u00e5ringen som klev ut genom f\u00f6nstret och f\u00f6rsvann", "budget": 9250000, "cast": [{"name": "Robert Gustafsson", "character": "Allan Karlsson", "id": 74699, "credit_id": "52fe4b559251416c750ff999", "cast_id": 2, "profile_path": "/nycRr8utK7C6JMICPksy2kb3Cbz.jpg", "order": 0}, {"name": "Iwar Wiklander", "character": "Julius", "id": 282449, "credit_id": "535d5d64c3a36830b900451a", "cast_id": 11, "profile_path": null, "order": 1}, {"name": "David Wiberg", "character": "Benny", "id": 1314260, "credit_id": "535d5d81c3a3683099004425", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Mia Sk\u00e4ringer", "character": "Gunilla", "id": 135692, "credit_id": "535d5d16c3a36830a9004365", "cast_id": 10, "profile_path": "/22SPiCuuL4eSgiAKRx1vcaWn7nt.jpg", "order": 3}, {"name": "Jens Hult\u00e9n", "character": "Gunnar \"G\u00e4ddan\" G\u00e4rdin", "id": 92429, "credit_id": "535d5dcc0e0a264fe1005107", "cast_id": 13, "profile_path": "/3dgP1WpqlKoKhC8GntrKAB3ozFB.jpg", "order": 4}, {"name": "Sven L\u00f6nn", "character": "Hans \"Hinken\" Claesson", "id": 1314261, "credit_id": "535d5ded0e0a264fe500545c", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Bianca Cruzeiro", "character": "Caracas", "id": 1314262, "credit_id": "535d5e3c0e0a264fe80051e9", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Alan Ford", "character": "Pim", "id": 1116, "credit_id": "535d5e4b0e0a264fe1005117", "cast_id": 16, "profile_path": "/3HtCLGRkuLmObyp1oJNJzplxOkI.jpg", "order": 7}, {"name": "Simon S\u00e4ppenen", "character": "Bulten", "id": 1314263, "credit_id": "535d5eac0e0a264fe500546b", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Kerry Shale", "character": "Harry S Truman", "id": 101034, "credit_id": "52fe4b559251416c750ff995", "cast_id": 1, "profile_path": "/4Yp5quLSRapOvoNJhdUarwLvDgn.jpg", "order": 9}, {"name": "Miglen Mirtchev", "character": "Vladimir Karpov", "id": 146500, "credit_id": "52fe4b559251416c750ff99d", "cast_id": 3, "profile_path": "/rqFyD0EAFczEqn8ZSFwksD3GnQq.jpg", "order": 10}, {"name": "Lateef Lovejoy", "character": "Douglas Freeman", "id": 1122545, "credit_id": "52fe4b559251416c750ff9a1", "cast_id": 4, "profile_path": null, "order": 11}, {"name": "Manuel Dubra", "character": "Esteban", "id": 1122546, "credit_id": "52fe4b559251416c750ff9a5", "cast_id": 5, "profile_path": null, "order": 12}, {"name": "David Shackleton", "character": "Herbert Einstein", "id": 1184049, "credit_id": "535d5e7b0e0a264fdb004f84", "cast_id": 17, "profile_path": "/dqF3yxhkCdOznLIFseOpZY47KgM.jpg", "order": 13}, {"name": "Johan Rheborg", "character": "Tage Erlander", "id": 79171, "credit_id": "535d611bc3a36822730009ae", "cast_id": 19, "profile_path": "/8YOSKwz0liPqOaVXKYowdsPe55P.jpg", "order": 14}, {"name": "Eiffel Mattsson", "character": "Seaman", "id": 1314274, "credit_id": "535d62880e0a264fe1005144", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Alfred Svensson", "character": "Gas station attendant", "id": 1314275, "credit_id": "535d62ad0e0a264fde0051dc", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Donald H\u00f6gberg", "character": "Professor Lundborg", "id": 1314277, "credit_id": "535d6337c3a36830a90043c5", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Donald H\u00f6gberg", "character": "Sigvard Eklund", "id": 1264193, "credit_id": "535d639dc3a36830a00042cd", "cast_id": 23, "profile_path": null, "order": 18}, {"name": "Keith Chanter", "character": "Ronald Reagan", "id": 1314278, "credit_id": "535d63c0c3a36830910042b0", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Philip Rosch", "character": "Robert Oppenheimer", "id": 1314279, "credit_id": "535d63edc3a36830b9004574", "cast_id": 25, "profile_path": null, "order": 20}, {"name": "Cory Peterson", "character": "CIA Ryan Hutton", "id": 232979, "credit_id": "535d6442c3a3683084004469", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Ralph Carlsson", "character": "Chief Inspector Aronsson", "id": 114580, "credit_id": "54f79492c3a368351d002858", "cast_id": 27, "profile_path": null, "order": 22}], "directors": [{"name": "Felix Herngren", "department": "Directing", "job": "Director", "credit_id": "52fe4b559251416c750ff9bd", "profile_path": "/zeK3qvDQ5PQfSDwcwgvhy6pgXEn.jpg", "id": 74730}], "vote_average": 6.8, "runtime": 114}, "10555": {"poster_path": "/8hgmA0U2WgMA8EOSKgTH5tJNUfd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 367275019, "overview": "Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.", "video": false, "id": 10555, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Shark Tale", "tagline": "The story of what happens when one little fish tells a great white lie...", "vote_count": 313, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0307453", "adult": false, "backdrop_path": "/tjUxWH1ru5zEfViPwtn6FzJ5rfO.jpg", "production_companies": [{"name": "DreamWorks Pictures", "id": 7293}], "release_date": "2004-10-01", "popularity": 1.84950036917041, "original_title": "Shark Tale", "budget": 75000000, "cast": [{"name": "Will Smith", "character": "Oscar (voice)", "id": 2888, "credit_id": "52fe43879251416c75013e51", "cast_id": 12, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Robert De Niro", "character": "Don Lino (voice)", "id": 380, "credit_id": "52fe43879251416c75013e55", "cast_id": 13, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 1}, {"name": "Ren\u00e9e Zellweger", "character": "Angie (voice)", "id": 9137, "credit_id": "52fe43879251416c75013e59", "cast_id": 14, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 2}, {"name": "Jack Black", "character": "Lenny (voice)", "id": 70851, "credit_id": "52fe43879251416c75013e5d", "cast_id": 15, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 3}, {"name": "Angelina Jolie", "character": "Lola (voice)", "id": 11701, "credit_id": "52fe43879251416c75013e61", "cast_id": 16, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 4}, {"name": "Ziggy Marley", "character": "Ernie (voice)", "id": 154857, "credit_id": "52fe43879251416c75013e65", "cast_id": 17, "profile_path": "/QeUHklq4p6He9vQJfssRwT9scs.jpg", "order": 5}, {"name": "Martin Scorsese", "character": "Sykes (voice)", "id": 1032, "credit_id": "52fe43879251416c75013e69", "cast_id": 18, "profile_path": "/yGs4PPDPTJV687P1NdydeEFzYRK.jpg", "order": 6}], "directors": [{"name": "Bibo Bergeron", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013e11", "profile_path": null, "id": 65629}, {"name": "Vicky Jenson", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013e17", "profile_path": "/eFk4SIk0nDpSfb1u8qG8DZ7Ya3e.jpg", "id": 12058}, {"name": "Rob Letterman", "department": "Directing", "job": "Director", "credit_id": "52fe43879251416c75013e1d", "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "id": 65630}], "vote_average": 5.6, "runtime": 90}, "38757": {"poster_path": "/nD4WoN1VQmDpoD5SpYxU4v2V85I.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 590721936, "overview": "When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower, he's taken hostage by Rapunzel, a beautiful and feisty tower-bound teen with 70 feet of magical, golden hair. Flynn's curious captor, who's looking for her ticket out of the tower where she's been locked away for years, strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade, complete with a super-cop horse, an over-protective chameleon and a gruff gang of pub thugs.", "video": false, "id": 38757, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Tangled", "tagline": "They're taking adventure to new lengths.", "vote_count": 1183, "homepage": "http://disney.go.com/disneypictures/tangled/", "belongs_to_collection": {"backdrop_path": "/hz2V5ArAbox1dq0vu78ARGaTVLC.jpg", "poster_path": "/hp1djgq1YgewS9HzTczTUPDwOJQ.jpg", "id": 129777, "name": "Tangled Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398286", "adult": false, "backdrop_path": "/uFg02Gt69UM6Ouam4slMdD0s029.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2010-11-24", "popularity": 2.19049662476319, "original_title": "Tangled", "budget": 260000000, "cast": [{"name": "Mandy Moore", "character": "Rapunzel (voice)", "id": 16855, "credit_id": "530d35a2925141141e0017ff", "cast_id": 33, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 0}, {"name": "Zachary Levi", "character": "Flynn Rider (voice)", "id": 69899, "credit_id": "530d35bf9251411435001765", "cast_id": 34, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 1}, {"name": "Donna Murphy", "character": "Mother Gothel (voice)", "id": 2517, "credit_id": "530d35d4925141141e001802", "cast_id": 35, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Stabbington Brother (voice)", "id": 2372, "credit_id": "530d35e59251411421001835", "cast_id": 36, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Big Nose Thug (voice)", "id": 4175, "credit_id": "530d3624925141142400188e", "cast_id": 38, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Brad Garrett", "character": "Hook Hand Thug (voice)", "id": 18, "credit_id": "530d363e92514114310017d7", "cast_id": 39, "profile_path": "/mVIo16Ms5jwNs1u4z1Ot1ilmCwa.jpg", "order": 5}, {"name": "Paul F. Tompkins", "character": "Short Thug (voice)", "id": 1219029, "credit_id": "533539b8c3a3680a1e003e08", "cast_id": 71, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 6}, {"name": "Richard Kiel", "character": "Vlad (voice)", "id": 10460, "credit_id": "530d36b0c3a3685c0c001aad", "cast_id": 41, "profile_path": "/5maNnMNe6DHxanWQ86gqVSihEGn.jpg", "order": 7}, {"name": "Delaney Rose Stein", "character": "Young Rapunzel / Little Girl (voice)", "id": 1273208, "credit_id": "530d3712c3a3685bee001acb", "cast_id": 42, "profile_path": null, "order": 8}, {"name": "Nathan Greno", "character": "Guard 1 / Thug 1 (voice)", "id": 121830, "credit_id": "530d373cc3a3685c28001a22", "cast_id": 43, "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "order": 9}, {"name": "Byron Howard", "character": "Guard 2 / Thug 2 (voice)", "id": 76595, "credit_id": "530d37b8c3a3685c12001a4d", "cast_id": 45, "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "order": 10}, {"name": "Tim Mertens", "character": "Guard 3 (voice)", "id": 61958, "credit_id": "530d37c9c3a3685c03001a1a", "cast_id": 46, "profile_path": "/bTvLvMndvtu3oN7qFHJgqgRqCws.jpg", "order": 11}, {"name": "Michael Bell", "character": "Additional Voices (voice)", "id": 19546, "credit_id": "530d382792514114440016f5", "cast_id": 47, "profile_path": "/izjtUFQ3zJsInc0TSIhrVmUpSd7.jpg", "order": 12}, {"name": "Bob Bergen", "character": "Additional Voices (voice)", "id": 78317, "credit_id": "530d385d92514114240018e4", "cast_id": 48, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 13}, {"name": "Susanne Blakeslee", "character": "Additional Voices (voice)", "id": 89042, "credit_id": "53fedeb2c3a368573b0002b8", "cast_id": 72, "profile_path": "/mJ3dkcAX9STU3SPN06IsTltham8.jpg", "order": 14}, {"name": "June Christopher", "character": "Additional Voices (voice)", "id": 172696, "credit_id": "530d38a992514114350017ba", "cast_id": 50, "profile_path": null, "order": 15}, {"name": "Roy Conli", "character": "Additional Voices (voice)", "id": 56612, "credit_id": "530d38b792514114240018f4", "cast_id": 51, "profile_path": null, "order": 16}, {"name": "David Cowgill", "character": "Additional Voices (voice)", "id": 60232, "credit_id": "530d38c7925141144600161b", "cast_id": 52, "profile_path": "/kcGjj4EuHfMp0VILRVoacoPqNFL.jpg", "order": 17}, {"name": "Terri Douglas", "character": "Additional Voices (voice)", "id": 186605, "credit_id": "530d38d69251411444001700", "cast_id": 53, "profile_path": "/lECiABogAKm5Zl8Je6niNAoqz5N.jpg", "order": 18}, {"name": "Chad Einbinder", "character": "Additional Voices (voice)", "id": 166421, "credit_id": "530d38ee925141142100188e", "cast_id": 54, "profile_path": null, "order": 19}, {"name": "Pat Fraley", "character": "Additional Voices (voice)", "id": 34737, "credit_id": "530d38fc9251411428001804", "cast_id": 55, "profile_path": "/AgkuaIlLifSE5i9MzFepIfd8RTw.jpg", "order": 20}, {"name": "Eddie Frierson", "character": "Additional Voices (voice)", "id": 1225791, "credit_id": "530d3959c3a3685c2f001a4d", "cast_id": 56, "profile_path": null, "order": 21}, {"name": "Jackie Gonneau", "character": "Additional Voices (voice)", "id": 950773, "credit_id": "530d3978c3a3685bfb001a85", "cast_id": 57, "profile_path": null, "order": 22}, {"name": "Nicholas Guest", "character": "Additional Voices (voice)", "id": 36821, "credit_id": "530d3985c3a3685c12001aa4", "cast_id": 58, "profile_path": "/ohlltWmy7xiyQ7CwEZhV6KnyeKO.jpg", "order": 23}, {"name": "Bridget Hoffman", "character": "Additional Voices (voice)", "id": 173428, "credit_id": "530d3997c3a3685c1a001ae2", "cast_id": 59, "profile_path": null, "order": 24}, {"name": "Daniel Katz", "character": "Additional Voices (voice)", "id": 102207, "credit_id": "530d39a9c3a3685bf4001ae8", "cast_id": 60, "profile_path": null, "order": 25}, {"name": "Anne Lockhart", "character": "Additional Voices (voice)", "id": 41227, "credit_id": "530d39b8c3a3685c1a001ae8", "cast_id": 61, "profile_path": "/c2gcaCg9q9uBEyieeaxSWWlrhN1.jpg", "order": 26}, {"name": "Mona Marshall", "character": "Additional Voices (voice)", "id": 111466, "credit_id": "530d39c3c3a3685c1a001aea", "cast_id": 62, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 27}, {"name": "Scott Menville", "character": "Additional Voices (voice)", "id": 113916, "credit_id": "530d39cfc3a3685c2f001a56", "cast_id": 63, "profile_path": "/otVTyLzkIRp8ovXL0pciJ1MnFtl.jpg", "order": 28}, {"name": "Laraine Newman", "character": "Additional Voices (voice)", "id": 35159, "credit_id": "530d39e1c3a3685c03001a61", "cast_id": 64, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 29}, {"name": "Paul Pape", "character": "Additional Voices (voice)", "id": 1233370, "credit_id": "530d39f7c3a3685c2f001a63", "cast_id": 65, "profile_path": null, "order": 30}, {"name": "Lynwood Robinson", "character": "Additional Voices (voice)", "id": 1296646, "credit_id": "530d3a17c3a3685bf4001af1", "cast_id": 66, "profile_path": null, "order": 31}, {"name": "Fred Tatasciore", "character": "Additional Voices (voice)", "id": 60279, "credit_id": "530d3a25c3a3685c20001a4a", "cast_id": 67, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 32}, {"name": "Hynden Walch", "character": "Additional Voices (voice)", "id": 113919, "credit_id": "530d3a34c3a3685c12001abb", "cast_id": 68, "profile_path": "/gCHMyVwt2vlQt3AYPfoknVmklXI.jpg", "order": 33}, {"name": "Kari Wahlgren", "character": "Additional Voices (voice)", "id": 116315, "credit_id": "530d3a3fc3a3685c2f001a69", "cast_id": 69, "profile_path": "/mwfd0eofUWQrM0Q4NzijISuDJPC.jpg", "order": 34}, {"name": "M.C. Gainey", "character": "Captain of the Guard (voice)", "id": 22132, "credit_id": "53254b82c3a36824b500886a", "cast_id": 70, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 35}], "directors": [{"name": "Nathan Greno", "department": "Directing", "job": "Director", "credit_id": "52fe46db9251416c910620ad", "profile_path": "/7MobIiqJBvbgJ2pnUvo6E7XfFFx.jpg", "id": 121830}, {"name": "Byron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe46db9251416c910620bf", "profile_path": "/fFV0pdhOWSxUnAsQDVkzEzhXCfy.jpg", "id": 76595}], "vote_average": 7.1, "runtime": 100}, "5994": {"poster_path": "/tL3ehhaFBkXnp51FCn6kCs2CuiW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75764085, "overview": "Cutthroat investment banker Jack Campbell, who eschews emotional ties, is transported into the prosaic life he might have had if he'd wed his college sweetheart. Instead of a Ferrari, Campbell drives a malfunctioning minivan in the suburbs and is saddled with two screaming kids -- but he learns to love every minute of it.", "video": false, "id": 5994, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Family Man", "tagline": "What if...", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0218967", "adult": false, "backdrop_path": "/ysUwLsrJfRkkWGttH1fhpy8uuRf.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2000-12-12", "popularity": 0.622270558766033, "original_title": "The Family Man", "budget": 60000000, "cast": [{"name": "Nicolas Cage", "character": "Jack Campbell", "id": 2963, "credit_id": "52fe4434c3a36847f80885bd", "cast_id": 11, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Kate Reynolds", "id": 4939, "credit_id": "52fe4434c3a36847f80885c1", "cast_id": 12, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Don Cheadle", "character": "Cash", "id": 1896, "credit_id": "52fe4434c3a36847f80885c5", "cast_id": 13, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 2}, {"name": "Saul Rubinek", "character": "Peter Lassiter", "id": 3712, "credit_id": "52fe4434c3a36847f80885c9", "cast_id": 14, "profile_path": "/1gsXmCmJIegqK0U8dwLz005UM0.jpg", "order": 3}, {"name": "Makenzie Vega", "character": "Annie Campbell", "id": 2139, "credit_id": "52fe4434c3a36847f80885cd", "cast_id": 15, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 4}, {"name": "Ryan Milkovich", "character": "Josh Campbell", "id": 47057, "credit_id": "52fe4434c3a36847f80885d1", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Jake Milkovich", "character": "Josh Campbell", "id": 47056, "credit_id": "52fe4434c3a36847f80885d5", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Lisa Thornhill", "character": "Evelyn Thompson", "id": 47058, "credit_id": "52fe4434c3a36847f80885d9", "cast_id": 18, "profile_path": "/AfnRDI8DUlYjutYXcDjksXDr8Jo.jpg", "order": 7}, {"name": "Jeremy Piven", "character": "Arnie", "id": 12799, "credit_id": "52fe4434c3a36847f80885dd", "cast_id": 19, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 8}, {"name": "Amber Valletta", "character": "Paula", "id": 38425, "credit_id": "52fe4434c3a36847f80885e1", "cast_id": 20, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 9}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe4434c3a36847f8088583", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.3, "runtime": 125}, "14191": {"poster_path": "/6diHusTm8eQJnfoI7MyCSDgaBRp.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 23006849, "overview": "Two teenage girls discover a mermaid in their beach club's swimming pool.", "video": false, "id": 14191, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Aquamarine", "tagline": "A Fish-Out-Of-Water Comedy.", "vote_count": 59, "homepage": "http://www.aquamarinemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0429591", "adult": false, "backdrop_path": "/6LN4NJfNWzpJMcfzfqplsm8lVfe.jpg", "production_companies": [{"name": "Storefront Pictures", "id": 7747}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-03-03", "popularity": 0.340685029867431, "original_title": "Aquamarine", "budget": 12000000, "cast": [{"name": "Emma Roberts", "character": "Claire", "id": 34847, "credit_id": "52fe45d59251416c750640ed", "cast_id": 1, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 0}, {"name": "Joanna 'JoJo' Levesque", "character": "Hailey", "id": 57855, "credit_id": "52fe45d59251416c750640f1", "cast_id": 2, "profile_path": "/vKGPm1Y7H39mfIc2kSAUnCZRCMm.jpg", "order": 1}, {"name": "Sara Paxton", "character": "Aquamarine", "id": 60072, "credit_id": "52fe45d59251416c750640f5", "cast_id": 3, "profile_path": "/6tgy3NOeP2Cd1NiW9xHETQSbfvB.jpg", "order": 2}, {"name": "Jake McDorman", "character": "Raymond", "id": 94791, "credit_id": "52fe45d59251416c750640f9", "cast_id": 4, "profile_path": "/7DHDZrBne3diRwoWirg9djgKzTg.jpg", "order": 3}, {"name": "Arielle Kebbel", "character": "Cecilia Banks", "id": 20373, "credit_id": "52fe45d59251416c750640fd", "cast_id": 5, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 4}, {"name": "Claudia Karvan", "character": "Ginny", "id": 79966, "credit_id": "52fe45d59251416c75064101", "cast_id": 6, "profile_path": "/8o2xMWxL9SkkxXrJOGI8THZhS8Q.jpg", "order": 5}, {"name": "Bruce Spence", "character": "Leonard", "id": 27752, "credit_id": "52fe45d59251416c75064105", "cast_id": 7, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 6}, {"name": "Tammin Sursok", "character": "Marjorie", "id": 94792, "credit_id": "52fe45d59251416c75064109", "cast_id": 8, "profile_path": "/ghyiaX0upZev0shZcQ0OuE5AZ8y.jpg", "order": 7}, {"name": "Roy Billing", "character": "Grandpa Bob", "id": 94793, "credit_id": "52fe45d59251416c7506410d", "cast_id": 9, "profile_path": "/4fnmZ3ANu7KcjsOizlzNPjWQSpm.jpg", "order": 8}, {"name": "Julia Blake", "character": "Grandma Maggie", "id": 77561, "credit_id": "52fe45d59251416c75064111", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Shaun Micallef", "character": "Storm Banks", "id": 75949, "credit_id": "52fe45d59251416c75064115", "cast_id": 11, "profile_path": "/lqi9p3oMrcM3oIlWPC6qYyW6qgw.jpg", "order": 10}, {"name": "Lulu McClatchy", "character": "Bonnie", "id": 94795, "credit_id": "52fe45d59251416c75064119", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Natasha Cunningham", "character": "Patty", "id": 94796, "credit_id": "52fe45d59251416c7506411d", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Dichen Lachman", "character": "Beth-Ann", "id": 94797, "credit_id": "52fe45d59251416c75064121", "cast_id": 14, "profile_path": "/3Z4qUhsXxXhjVGX5bEecoty7H1n.jpg", "order": 13}, {"name": "Lincoln Lewis", "character": "Theo", "id": 94798, "credit_id": "52fe45d59251416c75064125", "cast_id": 15, "profile_path": "/lvvMmWd4Xx4FBDO6uXuLdLVGbHv.jpg", "order": 14}, {"name": "Joey Massey", "character": "Little Boy", "id": 1115764, "credit_id": "52fe45d59251416c75064141", "cast_id": 20, "profile_path": "/vo8VTfp9nUTx3xtvdWRIq0YhrpQ.jpg", "order": 15}], "directors": [{"name": "Elizabeth Allen", "department": "Directing", "job": "Director", "credit_id": "52fe45d59251416c7506412b", "profile_path": "/8Njf10gbKo1IMan4KgK2669xJ5K.jpg", "id": 78896}], "vote_average": 5.6, "runtime": 104}, "33909": {"poster_path": "/3W7hi95b4lUklAP14pFVz21VSW5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 134748021, "overview": "As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader's mentor.", "video": false, "id": 33909, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Wall Street: Money Never Sleeps", "tagline": "Gordon never gives up.", "vote_count": 156, "homepage": "http://www.wallstreetmoneyneversleeps.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/dmGQDIrfvmr5rahYcVhpS2xx6oy.jpg", "id": 52783, "name": "Wall Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1027718", "adult": false, "backdrop_path": "/jCIjDZJj0S7sagS2Wppd3H3uP9w.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Edward R. Pressman Film", "id": 6455}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2010-09-20", "popularity": 0.533738379078259, "original_title": "Wall Street: Money Never Sleeps", "budget": 70000000, "cast": [{"name": "Michael Douglas", "character": "Gordon Gekko", "id": 3392, "credit_id": "52fe45429251416c9102c3df", "cast_id": 8, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Jacob Moore", "id": 10959, "credit_id": "52fe45429251416c9102c3cf", "cast_id": 4, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Bretton James", "id": 16851, "credit_id": "52fe45429251416c9102c3d3", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Carey Mulligan", "character": "Winnie Gekko", "id": 36662, "credit_id": "52fe45429251416c9102c3d7", "cast_id": 6, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 3}, {"name": "Frank Langella", "character": "Lewis Zabel", "id": 8924, "credit_id": "52fe45429251416c9102c3eb", "cast_id": 11, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 4}, {"name": "Susan Sarandon", "character": "Sylvia Moore", "id": 4038, "credit_id": "52fe45429251416c9102c3e3", "cast_id": 9, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 5}, {"name": "Eli Wallach", "character": "Julie Steinhardt", "id": 3265, "credit_id": "52fe45429251416c9102c3e7", "cast_id": 10, "profile_path": "/s79fK5MSt7xumFuX3nO9RS6CkNp.jpg", "order": 6}, {"name": "Vanessa Ferlito", "character": "Audrey", "id": 20491, "credit_id": "52fe45429251416c9102c3ef", "cast_id": 12, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 7}, {"name": "Jason Clarke", "character": "Jack Schwietzer", "id": 76512, "credit_id": "52fe45429251416c9102c3f3", "cast_id": 15, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 8}, {"name": "Alexander Wraith", "character": "Jake's friend at club", "id": 118753, "credit_id": "52fe45429251416c9102c3f7", "cast_id": 16, "profile_path": "/6SrcyLh1k7EAmB0ZzewzZdWhGcF.jpg", "order": 9}, {"name": "John Bedford Lloyd", "character": "Bill Clark", "id": 60118, "credit_id": "52fe45429251416c9102c3fb", "cast_id": 17, "profile_path": "/6tE1lFrmKiOVsHt3fUay62ttn3U.jpg", "order": 10}, {"name": "Anna Kuchma", "character": "Office Blogger", "id": 115335, "credit_id": "52fe45429251416c9102c3ff", "cast_id": 18, "profile_path": "/31df19CsbXPNTKVf5dumZHSM2t6.jpg", "order": 11}, {"name": "Julianne Michelle", "character": "Natasha", "id": 71810, "credit_id": "52fe45429251416c9102c403", "cast_id": 19, "profile_path": "/21NnomYF7mkIJFsG4VmSqLGRYfV.jpg", "order": 12}, {"name": "Keith Middlebrook", "character": "Clark Wildman", "id": 118755, "credit_id": "52fe45429251416c9102c407", "cast_id": 21, "profile_path": "/5Qg9QNOdY1bCSAuZCC94DKd5PK9.jpg", "order": 13}, {"name": "Chuck Pfeiffer", "character": "Chuckie", "id": 118757, "credit_id": "52fe45429251416c9102c40b", "cast_id": 23, "profile_path": "/shBqO45qp7SscsWZGvJ1BclYpKL.jpg", "order": 14}, {"name": "Charlie Sheen", "character": "Bud Fox", "id": 6952, "credit_id": "52fe45429251416c9102c3db", "cast_id": 7, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 15}, {"name": "Natalie Morales", "character": "Churchill Schwartz Trader", "id": 118752, "credit_id": "52fe45429251416c9102c415", "cast_id": 26, "profile_path": "/eJopyLzoYJpzKXVu3HYpLB7zwxU.jpg", "order": 16}, {"name": "Sebastian Sozzi", "character": "Diego", "id": 53066, "credit_id": "52fe45429251416c9102c419", "cast_id": 27, "profile_path": "/6XiSiPEhZjatykjZnNusp2u5wKF.jpg", "order": 17}, {"name": "Tet Wada", "character": "VIP Party Patron", "id": 1417527, "credit_id": "54c28374c3a368792c003a2f", "cast_id": 29, "profile_path": "/gqbYiD2Lsw0srPRgueu2wgemOGT.jpg", "order": 18}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe45429251416c9102c3bf", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 5.7, "runtime": 133}, "284536": {"poster_path": "/sB03tHmWpIU9oKo4axwOJUf57qV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Literature professor and gambler Jim Bennett's debt causes him to borrow money from his mother and a loan shark. Further complicating his situation is his relationship with one of his students. Will Bennett risk his life for a second chance?", "video": false, "id": 284536, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Gambler", "tagline": "The only way out is all in", "vote_count": 83, "homepage": "http://www.thegamblermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2039393", "adult": false, "backdrop_path": "/lFwMaNxhRNXn4VwqYynp7Iiw377.jpg", "production_companies": [{"name": "Winkler Films", "id": 8880}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2014-12-25", "popularity": 3.24741660021152, "original_title": "The Gambler", "budget": 25000000, "cast": [{"name": "Mark Wahlberg", "character": "Jim Bennett", "id": 13240, "credit_id": "540b0876c3a368799c00154a", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Jessica Lange", "character": "Roberta", "id": 4431, "credit_id": "540b08fcc3a368799c001558", "cast_id": 5, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 1}, {"name": "John Goodman", "character": "Frank", "id": 1230, "credit_id": "540b08f2c3a36879ab00158f", "cast_id": 4, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Brie Larson", "character": "Amy Phillips", "id": 60073, "credit_id": "540b08e0c3a36879a20015de", "cast_id": 3, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 3}, {"name": "Michael Kenneth Williams", "character": "Neville Baraka", "id": 39390, "credit_id": "54b0f155c3a36809400017a4", "cast_id": 16, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 4}, {"name": "Da'Vone McDonald", "character": "Neville's Muscle", "id": 221945, "credit_id": "54b0f15f925141747e001680", "cast_id": 17, "profile_path": "/yZZR2uyPkieCrWXdlb7g57kQtka.jpg", "order": 5}, {"name": "George Kennedy", "character": "Ed", "id": 12950, "credit_id": "54b0f1409251416fe1000f3d", "cast_id": 14, "profile_path": "/vNYRh8f0QuA2eK8ahKftOBxtDN7.jpg", "order": 6}, {"name": "Griffin Cleveland", "character": "Young Jim", "id": 1259760, "credit_id": "54b0f107c3a36809450018e6", "cast_id": 9, "profile_path": "/i7eK6LXNV37wxVGxLQISBGwrVAV.jpg", "order": 7}, {"name": "Omar Leyva", "character": "Valet", "id": 205349, "credit_id": "54b0f112c3a36809450018ea", "cast_id": 10, "profile_path": "/3yVSBEeThM5poF3XczMQn8kjTte.jpg", "order": 8}, {"name": "Anthony Kelley", "character": "Lamar Allen", "id": 1411657, "credit_id": "54b0f11e925141746c001682", "cast_id": 11, "profile_path": "/rA6lohqHm6fB1ajocFXdtwNWEHW.jpg", "order": 9}, {"name": "Steve Park", "character": "Number 2", "id": 4025, "credit_id": "54b0f12ac3a368094e001a60", "cast_id": 12, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 10}, {"name": "Emory Cohen", "character": "Dexter", "id": 1041440, "credit_id": "54b0f135c3a3680939001857", "cast_id": 13, "profile_path": "/eyRIUg5abdjtvT6SWZ8Tzh0tw2G.jpg", "order": 11}, {"name": "Chil Kong", "character": "Blackjack Dealer #1", "id": 1411658, "credit_id": "54b0f14bc3a368413800108d", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Amin Joseph", "character": "Neville's Bookkeeper", "id": 131772, "credit_id": "54b0f169c3a368094e001a6e", "cast_id": 18, "profile_path": "/skvXr7EjcsgVfwoZnmNNjIk4Jmr.jpg", "order": 13}, {"name": "Cjon Saulsberry", "character": "Neville's Posse", "id": 1371506, "credit_id": "54b0f17292514174750018a5", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Teebone Mitchell", "character": "Neville's Posse", "id": 1411659, "credit_id": "54b0f17cc3a36840120010b7", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Lauren Weedman", "character": "Banker", "id": 1375338, "credit_id": "54bb5d2f9251411d6a0082e2", "cast_id": 29, "profile_path": "/lOv2Uva44YRDvw2Ar4je2HToWID.jpg", "order": 16}, {"name": "Alvin Ing", "character": "Mister Lee", "id": 1429649, "credit_id": "551d82bec3a3683a1c000803", "cast_id": 30, "profile_path": "/m6Ag38UtD22LyGzxDJ2WL4F1Mad.jpg", "order": 17}, {"name": "Andre Braugher", "character": "Dean Fuller", "id": 6861, "credit_id": "551d83a09251413748000784", "cast_id": 31, "profile_path": "/lpjuPm6gjoUCbdqxD0lBAWQAfvv.jpg", "order": 18}, {"name": "Leland Orser", "character": "Larry Jones", "id": 2221, "credit_id": "551d83cec3a3683a2500079d", "cast_id": 32, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 19}], "directors": [{"name": "Rupert Wyatt", "department": "Directing", "job": "Director", "credit_id": "540b081dc3a36879ab001579", "profile_path": "/v3ws9iAETreGVuoHXKGFPkZszgy.jpg", "id": 77357}], "vote_average": 5.6, "runtime": 111}, "38778": {"poster_path": "/3eaNh9o4idemfhnWGt95mBJks9H.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86387857, "overview": "Rising executive Tim Wagner works for a boss who hosts a monthly dinner in which the guest who brings the biggest buffoon gets a career-boost. Tim plans on not attending until he meets Barry, a man who builds dioramas using stuffed mice. Barry's blundering but good intentions send Tim's life into a downward spiral, threatening a major business deal and possibly scuttling Tim's engagement to his fiancee.", "video": false, "id": 38778, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dinner for Schmucks", "tagline": "Takes One To Know One.", "vote_count": 168, "homepage": "http://www.dinnerforschmucks.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427152", "adult": false, "backdrop_path": "/qiX6NXakuUQqZsEj60AfZj1tWRb.jpg", "production_companies": [{"name": "Everyman Pictures", "id": 2242}, {"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Reliance BIG Entertainment", "id": 6733}, {"name": "Parkes/MacDonald Productions", "id": 11084}], "release_date": "2010-07-30", "popularity": 0.794426686215268, "original_title": "Dinner for Schmucks", "budget": 69000000, "cast": [{"name": "Steve Carell", "character": "Barry", "id": 4495, "credit_id": "52fe46df9251416c910628e5", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Paul Rudd", "character": "Tim Wagner", "id": 22226, "credit_id": "52fe46df9251416c910628e9", "cast_id": 5, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Stephanie Szostak", "character": "Julie", "id": 121953, "credit_id": "52fe46df9251416c910628f1", "cast_id": 8, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 2}, {"name": "Jemaine Clement", "character": "Kieran Vollard", "id": 55936, "credit_id": "52fe46df9251416c910628ed", "cast_id": 7, "profile_path": "/crxCXudFMxuPqrYqYiTYKbhImhv.jpg", "order": 3}, {"name": "Zach Galifianakis", "character": "Therman", "id": 58225, "credit_id": "52fe46df9251416c910628f5", "cast_id": 9, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 5}, {"name": "Lucy Punch", "character": "Darla", "id": 66446, "credit_id": "52fe46df9251416c910628f9", "cast_id": 10, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Lance Fender", "id": 21089, "credit_id": "52fe46df9251416c910628fd", "cast_id": 11, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "David Walliams", "character": "M\u00fceller", "id": 80536, "credit_id": "52fe46df9251416c91062901", "cast_id": 12, "profile_path": "/3CrenEjzotOmk2FidLQ1mePjPNS.jpg", "order": 8}, {"name": "Ron Livingston", "character": "Caldwell", "id": 17402, "credit_id": "52fe46df9251416c91062905", "cast_id": 13, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 9}, {"name": "Kristen Schaal", "character": "Susana", "id": 109869, "credit_id": "52fe46df9251416c91062909", "cast_id": 15, "profile_path": "/rn84XtsczLSvJOWWNXLocaLx2df.jpg", "order": 11}, {"name": "Andrea Savage", "character": "Robin", "id": 71402, "credit_id": "52fe46df9251416c9106290d", "cast_id": 17, "profile_path": "/t6XAuQGq0vk7Kk3kbf3MeZSHNVv.jpg", "order": 13}, {"name": "Randall Park", "character": "Henderson", "id": 79082, "credit_id": "52fe46df9251416c91062911", "cast_id": 19, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 15}, {"name": "Lucy Davenport", "character": "Birgit", "id": 31737, "credit_id": "52fe46df9251416c91062915", "cast_id": 20, "profile_path": "/fPI671zQ9z0WtX9uYWvgnMlfRHp.jpg", "order": 16}, {"name": "Chris O'Dowd", "character": "Marco", "id": 40477, "credit_id": "52fe46df9251416c91062919", "cast_id": 21, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 17}, {"name": "Jeff Dunham", "character": "Lewis the Ventriloquist", "id": 76982, "credit_id": "52fe46df9251416c9106291d", "cast_id": 22, "profile_path": "/2xEF6hiAPSeObVAeUxH5SXV040F.jpg", "order": 18}, {"name": "Octavia Spencer", "character": "Madame Nora", "id": 6944, "credit_id": "52fe46df9251416c91062921", "cast_id": 23, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 19}, {"name": "Patrick Fischler", "character": "Vincenzo", "id": 52801, "credit_id": "52fe46df9251416c91062925", "cast_id": 24, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 20}, {"name": "Rick Overton", "character": "Chuck", "id": 1539, "credit_id": "52fe46df9251416c91062929", "cast_id": 25, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 21}, {"name": "Blanca Soto", "character": "Catherine", "id": 230852, "credit_id": "52fe46df9251416c9106292d", "cast_id": 26, "profile_path": "/gc4SkCkfqfZwF9mHmC20wFr73rE.jpg", "order": 22}], "directors": [{"name": "Jay Roach", "department": "Directing", "job": "Director", "credit_id": "52fe46df9251416c910628d5", "profile_path": "/oRUzROYVL3inqtWeAp5wT6It33X.jpg", "id": 6737}], "vote_average": 5.6, "runtime": 114}, "158015": {"poster_path": "/3dXjXaApTLOhzwGHCDtl5dKmy7Z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.", "video": false, "id": 158015, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Purge", "tagline": "One night a year, all crime is legal.", "vote_count": 761, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/e6THO6zwWxuI8QRQxDI2OcLW7BI.jpg", "id": 256322, "name": "The Purge Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2184339", "adult": false, "backdrop_path": "/sq8fc6005RAzyBvnWDIaaRYSe4V.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Why Not Productions", "id": 729}], "release_date": "2013-06-06", "popularity": 1.06616494119024, "original_title": "The Purge", "budget": 3000000, "cast": [{"name": "Lena Headey", "character": "Mary Sandin", "id": 17286, "credit_id": "52fe4bd99251416c910e7967", "cast_id": 3, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "James Sandin", "id": 569, "credit_id": "52fe4bd99251416c910e796b", "cast_id": 4, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Max Burkholder", "character": "Charlie Sandin", "id": 81083, "credit_id": "52fe4bd99251416c910e796f", "cast_id": 5, "profile_path": "/8tM61XfapNvBnXum2WcBKlmDDeE.jpg", "order": 2}, {"name": "Adelaide Kane", "character": "Zoey Sandin", "id": 131781, "credit_id": "52fe4bd99251416c910e7973", "cast_id": 6, "profile_path": "/rxhR0vpqpdPsn9pWwDfxGvq58WL.jpg", "order": 3}, {"name": "Rhys Wakefield", "character": "Polite Leader", "id": 55899, "credit_id": "52fe4bd99251416c910e7977", "cast_id": 7, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 4}, {"name": "Tony Oller", "character": "Henry", "id": 458286, "credit_id": "52fe4bd99251416c910e797b", "cast_id": 8, "profile_path": "/7DkByOn4GxSNyYFLS187xSfNRiL.jpg", "order": 5}, {"name": "Edwin Hodge", "character": "Bloody Stranger", "id": 56679, "credit_id": "52fe4bd99251416c910e797f", "cast_id": 9, "profile_path": "/3T6xlpUq3d0qHIuOOzKyAUK87nZ.jpg", "order": 6}, {"name": "Tom Yi", "character": "Mr. Cali", "id": 305993, "credit_id": "52fe4bd99251416c910e7983", "cast_id": 10, "profile_path": "/9PQ91swJgHLJsoVZkcKGfd9NWgw.jpg", "order": 7}, {"name": "Arija Bareikis", "character": "Mrs. Grace Ferrin", "id": 33432, "credit_id": "52fe4bd99251416c910e7987", "cast_id": 11, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 8}, {"name": "Chris Mulkey", "character": "Mr. Halverson", "id": 15824, "credit_id": "52fe4bd99251416c910e798b", "cast_id": 12, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 9}, {"name": "Tisha French", "character": "Mrs. Halverson", "id": 1186023, "credit_id": "52fe4bd99251416c910e798f", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Dana Bunch", "character": "Mr. Ferrin", "id": 1186024, "credit_id": "52fe4bd99251416c910e7993", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Peter Gvozdas", "character": "Dr. Peter Buynak", "id": 1186025, "credit_id": "52fe4bd99251416c910e7997", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "John Weselcouch", "character": "Freak Interrupting", "id": 1186026, "credit_id": "52fe4bd99251416c910e799b", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Alicia Vela-Bailey", "character": "Female Freak", "id": 1186027, "credit_id": "52fe4bd99251416c910e799f", "cast_id": 17, "profile_path": "/kVuyn6sS7ZSBlXVjjxq0LSE3k4I.jpg", "order": 14}], "directors": [{"name": "James DeMonaco", "department": "Directing", "job": "Director", "credit_id": "52fe4bd99251416c910e7963", "profile_path": null, "id": 53120}], "vote_average": 5.7, "runtime": 86}, "71552": {"poster_path": "/yfOZaUh08d1YtLCtgvfRRAssrR7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 234989584, "overview": "In the comedy American Reunion, all the American Pie characters we met a little more than a decade ago are returning to East Great Falls for their high-school reunion. In one long-overdue weekend, they will discover what has changed, who hasn\u2019t and that time and distance can\u2019t break the bonds of friendship. It was summer 1999 when four small-town Michigan boys began a quest to lose their virginity. In the years that have passed, Jim and Michelle married while Kevin and Vicky said goodbye. Oz and Heather grew apart, but Finch still longs for Stifler\u2019s mom. Now these lifelong friends have come home as adults to reminisce about - and get inspired by - the hormonal teens who launched a comedy legend.", "video": false, "id": 71552, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Reunion", "tagline": "Save the best piece for last.", "vote_count": 833, "homepage": "http://www.americanreunionmovie.com/", "belongs_to_collection": {"backdrop_path": "/3ptXtaqzAZlMXn3nZxaYke4anmK.jpg", "poster_path": "/twY1eM88fu8CCGVtem5ItlrgeDA.jpg", "id": 2806, "name": "American Pie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1605630", "adult": false, "backdrop_path": "/tF32ruwlUGECw25FKVyWdIiTuxu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2012-04-06", "popularity": 1.09633513497778, "original_title": "American Reunion", "budget": 50000000, "cast": [{"name": "Jason Biggs", "character": "Jim Levenstein", "id": 21593, "credit_id": "52fe4839c3a368484e0eea65", "cast_id": 11, "profile_path": "/cjuZBrqyVjtcBX6fOOnKnhI7ndw.jpg", "order": 0}, {"name": "Alyson Hannigan", "character": "Michelle Flaherty-Levenstein", "id": 21595, "credit_id": "52fe4839c3a368484e0eea57", "cast_id": 6, "profile_path": "/vZw7AEUOs9lbkS0lYzDyaFp9Tjv.jpg", "order": 1}, {"name": "Seann William Scott", "character": "Steve Stifler", "id": 57599, "credit_id": "52fe4839c3a368484e0eea47", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 2}, {"name": "Chris Klein", "character": "Chris 'Oz' Ostreicher", "id": 21594, "credit_id": "52fe4839c3a368484e0eea61", "cast_id": 10, "profile_path": "/foKh17RAUIhmfNgZ3TIvHJrNkDR.jpg", "order": 3}, {"name": "Thomas Ian Nicholas", "character": "Kevin Myers", "id": 21403, "credit_id": "52fe4839c3a368484e0eea79", "cast_id": 16, "profile_path": "/tYiQ6Ift5S8ZVeWQ8f7CJnQLkT.jpg", "order": 4}, {"name": "Tara Reid", "character": "Victoria 'Vicky' Lathum", "id": 1234, "credit_id": "52fe4839c3a368484e0eea53", "cast_id": 5, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 5}, {"name": "Mena Suvari", "character": "Heather", "id": 8211, "credit_id": "52fe4839c3a368484e0eea4b", "cast_id": 3, "profile_path": "/lboJv2MtnVOrl6ug9lwUnOBiIPb.jpg", "order": 6}, {"name": "Eddie Kaye Thomas", "character": "Paul Finch", "id": 52480, "credit_id": "52fe4839c3a368484e0eea81", "cast_id": 18, "profile_path": "/9a2EMnXkN0ImC66A9JCHTprHxa9.jpg", "order": 7}, {"name": "John Cho", "character": "John", "id": 68842, "credit_id": "52fe4839c3a368484e0eea71", "cast_id": 14, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 8}, {"name": "Jennifer Coolidge", "character": "Stifler's Mom", "id": 38334, "credit_id": "52fe4839c3a368484e0eea69", "cast_id": 12, "profile_path": "/jOVVWdfxLQ9MOumqM3VxiwAlT9a.jpg", "order": 9}, {"name": "Eugene Levy", "character": "Jim's Father", "id": 26510, "credit_id": "52fe4839c3a368484e0eea7d", "cast_id": 17, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 10}, {"name": "Natasha Lyonne", "character": "Jessica", "id": 10871, "credit_id": "52fe4839c3a368484e0eea75", "cast_id": 15, "profile_path": "/8rhl25eCPQQFhv1Mvqe9eMP3MpS.jpg", "order": 11}, {"name": "Dania Ramirez", "character": "Selena", "id": 37046, "credit_id": "52fe4839c3a368484e0eeab5", "cast_id": 27, "profile_path": "/r07yPtTqrjwKQORyzpCpD6OVXFp.jpg", "order": 12}, {"name": "Katrina Bowden", "character": "Mia", "id": 74618, "credit_id": "52fe4839c3a368484e0eea6d", "cast_id": 13, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 13}, {"name": "Ali Cobrin", "character": "Kara", "id": 496731, "credit_id": "52fe4839c3a368484e0eeab9", "cast_id": 28, "profile_path": "/koAUk1iZtZcl3kXNZ08hNqhbeAN.jpg", "order": 14}, {"name": "Shannon Elizabeth", "character": "Nadia", "id": 21596, "credit_id": "52fe4839c3a368484e0eea4f", "cast_id": 4, "profile_path": "/c7l0KsU2PAXXseofmSvsmIMQH1N.jpg", "order": 15}, {"name": "Chris Owen", "character": "Chuck Sherman", "id": 26999, "credit_id": "53bc38510e0a26198400341a", "cast_id": 31, "profile_path": "/1E23sADcIzpaRhsUHiAWMfvOPFm.jpg", "order": 16}, {"name": "Justin Isfeld", "character": "Justin", "id": 88507, "credit_id": "53bc38690e0a2619780033ef", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Neil Patrick Harris", "character": "Celebrity Dance-Off Host", "id": 41686, "credit_id": "53bc389a0e0a26196b00326f", "cast_id": 33, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 18}, {"name": "Molly Cheek", "character": "Jim's Mother", "id": 54586, "credit_id": "53bc38d10e0a26197400328c", "cast_id": 34, "profile_path": "/47iPOiKc0otACk0vIDm6VnlQBO6.jpg", "order": 19}, {"name": "Rebecca De Mornay", "character": "Finch's Mother", "id": 28412, "credit_id": "52fe4839c3a368484e0eeabd", "cast_id": 29, "profile_path": "/riQQkeijtaPIAVhPdCcJFPB4FOA.jpg", "order": 20}], "directors": [{"name": "Jon Hurwitz", "department": "Directing", "job": "Director", "credit_id": "52fe4839c3a368484e0eea87", "profile_path": "/bWiSwwmkEqgDk0KkeodRQQ3MR02.jpg", "id": 68843}, {"name": "Hayden Schlossberg", "department": "Directing", "job": "Director", "credit_id": "52fe4839c3a368484e0eeac3", "profile_path": null, "id": 68844}], "vote_average": 5.9, "runtime": 113}, "137093": {"poster_path": "/ylZnvqSWnGXxFRgDmQ8nihtFBv6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 134402450, "overview": "Three sixty-something friends take a break from their day-to-day lives to throw a bachelor party in Las Vegas for their last remaining single pal.", "video": false, "id": 137093, "genres": [{"id": 35, "name": "Comedy"}], "title": "Last Vegas", "tagline": "It's going to be legendary", "vote_count": 322, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1204975", "adult": false, "backdrop_path": "/7gzF9anIxP8Gg5UswMPLWcMGDbj.jpg", "production_companies": [{"name": "Gidden Media", "id": 34886}, {"name": "CBS Films", "id": 5490}, {"name": "Good Universe", "id": 17393}, {"name": "Laurence Mark Productions", "id": 415}, {"name": "Outlaw Sinema", "id": 13444}], "release_date": "2013-11-01", "popularity": 1.06691540713624, "original_title": "Last Vegas", "budget": 28000000, "cast": [{"name": "Robert De Niro", "character": "Paddy", "id": 380, "credit_id": "52fe4c25c3a368484e1a9d29", "cast_id": 12, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Archie", "id": 192, "credit_id": "52fe4c25c3a368484e1a9d2d", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Michael Douglas", "character": "Billy", "id": 3392, "credit_id": "52fe4c25c3a368484e1a9d31", "cast_id": 14, "profile_path": "/nmlitv4g2jXO3sJrnA9g980j2uc.jpg", "order": 2}, {"name": "Kevin Kline", "character": "Sam", "id": 8945, "credit_id": "52fe4c25c3a368484e1a9d39", "cast_id": 16, "profile_path": "/u9QXn3fL7zCC2c6HA2vFgH1JxZg.jpg", "order": 3}, {"name": "Mary Steenburgen", "character": "Diana", "id": 2453, "credit_id": "52fe4c25c3a368484e1a9d35", "cast_id": 15, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 4}, {"name": "Jerry Ferrara", "character": "Dean", "id": 98953, "credit_id": "52fe4c25c3a368484e1a9d3d", "cast_id": 17, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 5}, {"name": "Romany Malco", "character": "Lonnie", "id": 71530, "credit_id": "52fe4c25c3a368484e1a9d41", "cast_id": 18, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 6}, {"name": "Roger Bart", "character": "Maurice", "id": 45566, "credit_id": "52fe4c25c3a368484e1a9d45", "cast_id": 19, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 7}, {"name": "Joanna Gleason", "character": "Miriam", "id": 20747, "credit_id": "52fe4c25c3a368484e1a9d49", "cast_id": 20, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 8}, {"name": "Michael Ealy", "character": "Ezra", "id": 8177, "credit_id": "52fe4c25c3a368484e1a9d4d", "cast_id": 21, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 9}, {"name": "Bre Blair", "character": "Lisa", "id": 131934, "credit_id": "52fe4c25c3a368484e1a9d51", "cast_id": 22, "profile_path": "/g2HjztIVWknuxOCAQj46JRtBsDl.jpg", "order": 10}, {"name": "April Billingsley", "character": "Maid of Honor", "id": 93224, "credit_id": "52fe4c25c3a368484e1a9d55", "cast_id": 23, "profile_path": "/kksOuQSUHZKCWH4AONvjsTiiHWX.jpg", "order": 11}, {"name": "Stephen Scott Scarpulla", "character": "Danny the Greaser", "id": 1277225, "credit_id": "52fe4c25c3a368484e1a9d59", "cast_id": 24, "profile_path": "/f0wf6upckV5ePpiaokQHAAhwjrl.jpg", "order": 12}, {"name": "Andrea Moore", "character": "Bachelorette", "id": 1046200, "credit_id": "52fe4c25c3a368484e1a9d5d", "cast_id": 25, "profile_path": "/q4AfAMZTLSCtsqWEjfSRoXewc6p.jpg", "order": 13}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4c25c3a368484e1a9cef", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 6.6, "runtime": 105}, "137094": {"poster_path": "/jBibISmRBUO35p0Picv0nOo33sc.jpg", "production_countries": [{"iso_3166_1": "RU", "name": "Russia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50549107, "overview": "Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.", "video": false, "id": 137094, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Jack Ryan: Shadow Recruit", "tagline": "Trust no one.", "vote_count": 499, "homepage": "", "belongs_to_collection": {"backdrop_path": "/GQuLrIZlBEC9uRKbhb50JtrTq6.jpg", "poster_path": "/uCuiExsQDyJagov5aVAyw38YEm.jpg", "id": 192492, "name": "The Jack Ryan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1205537", "adult": false, "backdrop_path": "/7WURHOyx05AWAoNcBGp72clvB49.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Etalon film", "id": 9341}, {"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "Mace Neufeld Productions", "id": 2767}, {"name": "Buckaroo Entertainment", "id": 11250}], "release_date": "2014-01-17", "popularity": 1.40993649424668, "original_title": "Jack Ryan: Shadow Recruit", "budget": 60000000, "cast": [{"name": "Chris Pine", "character": "Jack Ryan", "id": 62064, "credit_id": "52fe4c26c3a368484e1a9deb", "cast_id": 14, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Cathy Muller", "id": 116, "credit_id": "52fe4c26c3a368484e1a9de7", "cast_id": 13, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Kevin Costner", "character": "William Harper", "id": 1269, "credit_id": "52fe4c26c3a368484e1a9def", "cast_id": 15, "profile_path": "/ybwfOhuuDPJ6NCcX7Y5XJxE6nMs.jpg", "order": 2}, {"name": "Nonso Anozie", "character": "Embee", "id": 43547, "credit_id": "52fe4c26c3a368484e1a9df3", "cast_id": 16, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 3}, {"name": "Gemma Chan", "character": "Amy Chan", "id": 97576, "credit_id": "52fe4c26c3a368484e1a9df7", "cast_id": 17, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 4}, {"name": "Deborah Rosan", "character": "Customer", "id": 1106755, "credit_id": "52fe4c26c3a368484e1a9dfb", "cast_id": 18, "profile_path": "/u5TLr9M4qo7jlzTsFb7XDPRilEW.jpg", "order": 5}, {"name": "Lenn Kudrjawizki", "character": "Constantin", "id": 12766, "credit_id": "52fe4c26c3a368484e1a9dff", "cast_id": 19, "profile_path": "/m8Sn5H6CHHrD8vxhLun2c3gMcs4.jpg", "order": 6}, {"name": "Price Lindsey", "character": "Waiter", "id": 1106757, "credit_id": "52fe4c26c3a368484e1a9e03", "cast_id": 20, "profile_path": "/vVoVJOaMVypRA8pJhfNqty7VjX.jpg", "order": 7}, {"name": "Celine Jedidi", "character": "Restaurant Diner", "id": 1106759, "credit_id": "52fe4c26c3a368484e1a9e07", "cast_id": 21, "profile_path": "/oLJHSKWVt2d211myMtm10lO1Xme.jpg", "order": 8}, {"name": "Ricky Rajpal", "character": "VIP Business Man", "id": 1106760, "credit_id": "52fe4c26c3a368484e1a9e0b", "cast_id": 22, "profile_path": "/uIogtsdVzDWRxvANRdoL0FtGM7S.jpg", "order": 9}, {"name": "Kenneth Branagh", "character": "Viktor Cherevin", "id": 11181, "credit_id": "52fe4c26c3a368484e1a9e0f", "cast_id": 23, "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "order": 10}, {"name": "Karen David", "character": "FBI Lead Agent", "id": 79124, "credit_id": "52fe4c26c3a368484e1a9e13", "cast_id": 24, "profile_path": "/pBR1dQvCEBpRaaL6dF8L9FtfJE8.jpg", "order": 11}, {"name": "Elena Velikanova", "character": "Katya", "id": 521001, "credit_id": "52fe4c26c3a368484e1a9e17", "cast_id": 25, "profile_path": "/bZ4BMVpQasIHOictMW1CjJVe9kh.jpg", "order": 12}, {"name": "Aleksandar Aleksiev", "character": "Cherevin's Bodyguard", "id": 1202317, "credit_id": "52fe4c26c3a368484e1a9e1b", "cast_id": 27, "profile_path": "/pxThnyg2FU5NVZ6DhP58GZ2XRWG.jpg", "order": 13}, {"name": "Colm Feore", "character": "Rob Behringer", "id": 10132, "credit_id": "52fe4c26c3a368484e1a9e1f", "cast_id": 28, "profile_path": "/ack88BRQ7mApRMOdaiOqEUh2FDu.jpg", "order": 14}, {"name": "Peter Andersson", "character": "Dimitri Lemkov", "id": 21193, "credit_id": "52fe4c26c3a368484e1a9e23", "cast_id": 29, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 15}, {"name": "David Paymer", "character": "Dixon Lewis", "id": 19839, "credit_id": "52fe4c26c3a368484e1a9e27", "cast_id": 30, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 16}, {"name": "David Hayman", "character": "Sergey Dostal", "id": 54014, "credit_id": "52fe4c26c3a368484e1a9e2b", "cast_id": 31, "profile_path": "/tXhC9zlniU4SYpjOcMKxDIHdQBB.jpg", "order": 17}, {"name": "Amy J. Kim", "character": "UN Announcer", "id": 1327764, "credit_id": "5390313e0e0a262986001f68", "cast_id": 49, "profile_path": null, "order": 18}, {"name": "Bogdan Kominowski", "character": "Mr. Borovsky", "id": 1327765, "credit_id": "53903192c3a3680d750013ed", "cast_id": 50, "profile_path": null, "order": 19}, {"name": "Maggie Daniels", "character": "Mrs. Borovsky", "id": 1085742, "credit_id": "53903254c3a3680d5e001443", "cast_id": 51, "profile_path": "/jm1xxwpQtftzyqMCfSU2hbjSp9H.jpg", "order": 20}], "directors": [{"name": "Kenneth Branagh", "department": "Directing", "job": "Director", "credit_id": "52fe4c25c3a368484e1a9da1", "profile_path": "/bmpGjbqvAVNOK3ggiuET2Jl96tZ.jpg", "id": 11181}], "vote_average": 6.0, "runtime": 105}, "6023": {"poster_path": "/esfuYEvv7WrLvXNkCg7MCufEEdH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 156835339, "overview": "A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.", "video": false, "id": 6023, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "P.S. I Love You", "tagline": "His life ended. Now, a new one will begin.", "vote_count": 284, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0431308", "adult": false, "backdrop_path": "/75ybu5PY5ujvghe1hbn5x1DdESl.jpg", "production_companies": [{"name": "Wendy Finerman Productions", "id": 412}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "Grosvenor Park Films LLP", "id": 1983}], "release_date": "2007-12-21", "popularity": 1.09743306661633, "original_title": "P.S. I Love You", "budget": 30000000, "cast": [{"name": "Hilary Swank", "character": "Holly", "id": 448, "credit_id": "52fe4438c3a36847f8089405", "cast_id": 19, "profile_path": "/mRWArmuQNB2TXEKc1OxrQx1p2an.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Gerry", "id": 17276, "credit_id": "52fe4438c3a36847f8089409", "cast_id": 20, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Lisa Kudrow", "character": "Denise", "id": 14406, "credit_id": "52fe4438c3a36847f808940d", "cast_id": 21, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 2}, {"name": "Harry Connick Jr.", "character": "Daniel", "id": 18688, "credit_id": "52fe4438c3a36847f8089411", "cast_id": 22, "profile_path": "/zdIXPJyfpje8BGBjNQAe73CzSTx.jpg", "order": 3}, {"name": "Gina Gershon", "character": "Sharon", "id": 11150, "credit_id": "52fe4438c3a36847f8089415", "cast_id": 23, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 4}, {"name": "Jeffrey Dean Morgan", "character": "William", "id": 47296, "credit_id": "52fe4438c3a36847f8089419", "cast_id": 24, "profile_path": "/85X7WMg1lx3FToNz9k8WBlSDIkz.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Patricia", "id": 8534, "credit_id": "52fe4438c3a36847f808941d", "cast_id": 25, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "James Marsters", "character": "John", "id": 47297, "credit_id": "52fe4438c3a36847f8089421", "cast_id": 26, "profile_path": "/asmCNHg9nUC2Yv1d7LMQrQ5Adul.jpg", "order": 7}, {"name": "Nellie McKay", "character": "Ciara", "id": 47298, "credit_id": "52fe4438c3a36847f8089425", "cast_id": 27, "profile_path": "/edSlVTUExk3IVb2TSpNc04XW1HP.jpg", "order": 8}, {"name": "Anne Kent", "character": "Rose Kennedy", "id": 47777, "credit_id": "52fe4438c3a36847f8089429", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Brian McGrath", "character": "Martin Kennedy", "id": 47778, "credit_id": "52fe4438c3a36847f808942d", "cast_id": 29, "profile_path": null, "order": 10}], "directors": [{"name": "Richard LaGravenese", "department": "Directing", "job": "Director", "credit_id": "52fe4438c3a36847f808939b", "profile_path": "/8AF47SFj7L50qpWIz8PmdOEcU62.jpg", "id": 2163}], "vote_average": 6.8, "runtime": 126}, "137106": {"poster_path": "/lMHbadNmznKs5vgBAkHxKGHulOa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 373141707, "overview": "An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.", "video": false, "id": 137106, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Lego Movie", "tagline": "The story of a nobody who saved everybody.", "vote_count": 1178, "homepage": "http://www.thelegomovie.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 325470, "name": "The LEGO Movie collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1490017", "adult": false, "backdrop_path": "/wPRiV4TVpRCV2es81q0S1eRaUbm.jpg", "production_companies": [{"name": "Warner Bros. Animation", "id": 2785}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "DC Comics", "id": 429}, {"name": "LEGO", "id": 4081}, {"name": "Animal Logic", "id": 8089}, {"name": "Warner Animation Group", "id": 25120}], "release_date": "2014-02-07", "popularity": 3.01414089401675, "original_title": "The Lego Movie", "budget": 60000000, "cast": [{"name": "Will Arnett", "character": "Batman / Bruce Wayne (voice)", "id": 21200, "credit_id": "52fe4c27c3a368484e1aa0a3", "cast_id": 17, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 0}, {"name": "Elizabeth Banks", "character": "Wyldstyle / Lucy (voice)", "id": 9281, "credit_id": "52fe4c27c3a368484e1aa093", "cast_id": 13, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 1}, {"name": "Craig Berry", "character": "Blake / Additional Voices (voice)", "id": 1370749, "credit_id": "542f53b6c3a3686868000829", "cast_id": 35, "profile_path": null, "order": 2}, {"name": "Alison Brie", "character": "Unikitty (voice)", "id": 88029, "credit_id": "52fe4c27c3a368484e1aa0b7", "cast_id": 23, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 3}, {"name": "David Burrows", "character": "Octan Robot / Additional Voices (voice)", "id": 970287, "credit_id": "542f53f5c3a3686868000836", "cast_id": 36, "profile_path": null, "order": 4}, {"name": "Anthony Daniels", "character": "C-3PO (voice)", "id": 6, "credit_id": "52fe4c27c3a368484e1aa0cb", "cast_id": 28, "profile_path": "/cljvryjb3VwTsNR7fjQKjNPMaBB.jpg", "order": 5}, {"name": "Charlie Day", "character": "Benny (voice)", "id": 95101, "credit_id": "52fe4c27c3a368484e1aa0bf", "cast_id": 25, "profile_path": "/irtCEk7XlszzNzAEwzQNtW27VsM.jpg", "order": 6}, {"name": "Amanda Farinos", "character": "Mom (voice)", "id": 1370751, "credit_id": "542f5491c3a3686865000928", "cast_id": 37, "profile_path": null, "order": 7}, {"name": "Keith Ferguson", "character": "Han Solo (voice)", "id": 143346, "credit_id": "542f54c90e0a264f15000922", "cast_id": 38, "profile_path": "/sXZ1nVUUnt36PPC0LbhrcZKK7id.jpg", "order": 8}, {"name": "Will Ferrell", "character": "Lord Business (voice) / President Business (voice) / The Man Upstairs", "id": 23659, "credit_id": "52fe4c27c3a368484e1aa0ab", "cast_id": 20, "profile_path": "/dGxt3uGPlUJKIfHYiLasnEgR90e.jpg", "order": 9}, {"name": "Will Forte", "character": "Abraham Lincoln (voice) (as Orville Forte)", "id": 62831, "credit_id": "52fe4c27c3a368484e1aa0c7", "cast_id": 27, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 10}, {"name": "Dave Franco", "character": "Wally (voice)", "id": 54697, "credit_id": "52fe4c27c3a368484e1aa0c3", "cast_id": 26, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 11}, {"name": "Morgan Freeman", "character": "Vitruvius (voice)", "id": 192, "credit_id": "52fe4c27c3a368484e1aa09b", "cast_id": 15, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 12}, {"name": "Todd Hansen", "character": "Gandalf / Additional Voices (voice)", "id": 1370753, "credit_id": "542f55b8c3a368685f000952", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Jonah Hill", "character": "Green Lantern (voice)", "id": 21007, "credit_id": "52fe4c27c3a368484e1aa0a7", "cast_id": 19, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 14}, {"name": "Jake M. Johnson", "character": "Barry (voice) (as Jake Johnson)", "id": 543505, "credit_id": "542f56190e0a264f070009b5", "cast_id": 40, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 15}, {"name": "Keegan-Michael Key", "character": "Foreman Jim (voice)", "id": 298410, "credit_id": "542f5636c3a368686200096c", "cast_id": 41, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 16}, {"name": "Kelly Lafferty", "character": "Lord Business' Assistant (voice)", "id": 1370755, "credit_id": "542f56480e0a264f0100094b", "cast_id": 42, "profile_path": null, "order": 17}, {"name": "Chris McKay", "character": "Larry the Barista / Additional Voices (voice)", "id": 144816, "credit_id": "542f566cc3a368685f000987", "cast_id": 43, "profile_path": null, "order": 18}, {"name": "Christopher Miller", "character": "TV Presenter (voice)", "id": 1230981, "credit_id": "542f57110e0a264f0100097f", "cast_id": 44, "profile_path": null, "order": 19}, {"name": "Graham Miller", "character": "Duplo (voice)", "id": 1370756, "credit_id": "542f5736c3a368685a000939", "cast_id": 45, "profile_path": null, "order": 20}, {"name": "Liam Neeson", "character": "Bad Cop/ Good Cop / Pa Cop (voice)", "id": 3896, "credit_id": "52fe4c27c3a368484e1aa0b3", "cast_id": 22, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 21}, {"name": "Doug Nicholas", "character": "Surfer Dave / Additional Voices (voice)", "id": 1370757, "credit_id": "542f5790c3a368686800090f", "cast_id": 46, "profile_path": null, "order": 22}, {"name": "Shaquille O'Neal", "character": "Shaq (voice)", "id": 35806, "credit_id": "542f579fc3a368685a00094d", "cast_id": 47, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 23}, {"name": "Nick Offerman", "character": "Metal Beard (voice)", "id": 17039, "credit_id": "52fe4c27c3a368484e1aa0bb", "cast_id": 24, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 24}, {"name": "Chris Paluszek", "character": "Robot Foreman (voice)", "id": 1370758, "credit_id": "542f58080e0a2605e7000862", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Chris Pratt", "character": "Emmet Brickowski (voice)", "id": 73457, "credit_id": "52fe4c27c3a368484e1aa09f", "cast_id": 16, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 26}, {"name": "Chris Romano", "character": "Joe (voice)", "id": 1370759, "credit_id": "542f583e0e0a264f150009f5", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Jadon Sand", "character": "Finn", "id": 1340685, "credit_id": "53ea709b0e0a266038001cea", "cast_id": 34, "profile_path": "/uM4knNZ0kZJMtJt669vRBb8TtSo.jpg", "order": 28}, {"name": "Cobie Smulders", "character": "Wonder Woman (voice)", "id": 71189, "credit_id": "52fe4c27c3a368484e1aa0af", "cast_id": 21, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 29}, {"name": "Melissa Sturm", "character": "Gail / Ma Cop (voice)", "id": 587697, "credit_id": "542f58ad0e0a2605e7000895", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Jorma Taccone", "character": "Shakespeare / Additional Voices (voice)", "id": 62863, "credit_id": "542f58bc0e0a264f010009f1", "cast_id": 51, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 31}, {"name": "Channing Tatum", "character": "Superman (voice)", "id": 38673, "credit_id": "52fe4c27c3a368484e1aa097", "cast_id": 14, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 32}, {"name": "Billy Dee Williams", "character": "Lando (voice)", "id": 3799, "credit_id": "542f58c90e0a264f07000a4f", "cast_id": 52, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 33}, {"name": "Leiki Veskimets", "character": "Voice of Computer (voice)", "id": 1370760, "credit_id": "542f58d90e0a264f04000a4b", "cast_id": 53, "profile_path": null, "order": 34}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe4c26c3a368484e1aa053", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe5e0692514148c6022049", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 7.7, "runtime": 100}, "6038": {"poster_path": "/2H2h2Qdt2TXLQslCHi8xEDDONpq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60470220, "overview": "The dynamic duo of Chon Wang and Roy O'Bannon return for another crazy adventure. This time, they're in London to avenge the murder of Chon's father, but end up on an even bigger case. Chon's sister is there to do the same, but instead unearths a plot to kill the royal family. No one believes her, though, and it's up to Chon and Roy (who has romance on his mind) to prove her right.", "video": false, "id": 6038, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "Shanghai Knights", "tagline": "A Royal Kick In The Arse.", "vote_count": 165, "homepage": "http://www.shanghaiknights.com/", "belongs_to_collection": {"backdrop_path": "/xkA3OKXATV7c0hIXoETdHXUIpE8.jpg", "poster_path": "/mycCmimAQ1mDsWweKQQimCkPtDh.jpg", "id": 59567, "name": "Shanghai Noon Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0300471", "adult": false, "backdrop_path": "/izqIXYopCnJbL5LDm3X30RF8gLI.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2003-02-07", "popularity": 1.10659969369078, "original_title": "Shanghai Knights", "budget": 50000000, "cast": [{"name": "Jackie Chan", "character": "Chon Wang", "id": 18897, "credit_id": "52fe443ac3a36847f8089907", "cast_id": 1, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Roy O\u2019Bannon", "id": 887, "credit_id": "52fe443ac3a36847f808990b", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Fann Wong", "character": "Chon Lin", "id": 49734, "credit_id": "52fe443ac3a36847f808993f", "cast_id": 11, "profile_path": "/fvZkLKQunSJgDldqhrwSXvyddzS.jpg", "order": 2}, {"name": "Aaron Taylor-Johnson", "character": "Charlie Chaplin", "id": 27428, "credit_id": "52fe443ac3a36847f8089943", "cast_id": 12, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 3}, {"name": "Aidan Gillen", "character": "Lord Nelson Rathbone", "id": 49735, "credit_id": "52fe443ac3a36847f8089947", "cast_id": 13, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 4}, {"name": "Donnie Yen", "character": "Wu Chow", "id": 1341, "credit_id": "52fe443ac3a36847f808994b", "cast_id": 14, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 5}, {"name": "Oliver Cotton", "character": "Jack the Ripper", "id": 24627, "credit_id": "52fe443ac3a36847f808994f", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Alison King", "character": "Prostitute", "id": 195562, "credit_id": "52fe443ac3a36847f8089953", "cast_id": 16, "profile_path": "/b8s3jtv81kq15uWAZs5cVK2Iqrg.jpg", "order": 7}, {"name": "Constantine Gregory", "character": "The Mayor", "id": 27425, "credit_id": "52fe443ac3a36847f8089957", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Jonathan Harvey", "character": "Fagin #1", "id": 554276, "credit_id": "52fe443ac3a36847f808995b", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Richard Haas", "character": "Street Preacher", "id": 25678, "credit_id": "52fe443ac3a36847f808995f", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Anna-Louise Plowman", "character": "Debutante", "id": 172790, "credit_id": "52fe443ac3a36847f8089963", "cast_id": 20, "profile_path": "/eGQbXKXcVX66yrKN9scAf256ifL.jpg", "order": 11}, {"name": "Georgina Chapman", "character": "Debutante", "id": 41547, "credit_id": "52fe443ac3a36847f8089967", "cast_id": 21, "profile_path": "/nSdhtkVAJ2N0YWWviLS42mMktwC.jpg", "order": 12}, {"name": "John Owens", "character": "Server", "id": 161030, "credit_id": "52fe443ac3a36847f808996b", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Richard Bremmer", "character": "Master at Arms", "id": 19903, "credit_id": "52fe443ac3a36847f808996f", "cast_id": 23, "profile_path": "/eRLxQ7sTWqtI24OPo5wz3p95RI3.jpg", "order": 14}, {"name": "Kim Chan", "character": "Chon Wang's Father", "id": 8400, "credit_id": "52fe443ac3a36847f8089973", "cast_id": 24, "profile_path": "/wJbM5cuNIjglX0l2ZCuVXjaxIzW.jpg", "order": 15}, {"name": "Gemma Jones", "character": "Queen Victoria", "id": 9138, "credit_id": "52fe443ac3a36847f8089977", "cast_id": 25, "profile_path": "/doDUez5AkN0bfqmZWB0bKO9mcJe.jpg", "order": 16}, {"name": "Daisy Beaumont", "character": "Cigarette Girl", "id": 211847, "credit_id": "52fe443ac3a36847f808997b", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Eric Meyers", "character": "Front Desk Clerk", "id": 933883, "credit_id": "52fe443ac3a36847f808997f", "cast_id": 28, "profile_path": "/mDMzeDh9TMrfcxoEXZmvtWqgGZ3.jpg", "order": 18}], "directors": [{"name": "David Dobkin", "department": "Directing", "job": "Director", "credit_id": "52fe443ac3a36847f8089911", "profile_path": "/qpXTNNOkFmMoAtcEo0qNNFR9bls.jpg", "id": 42994}], "vote_average": 5.8, "runtime": 115}, "137113": {"poster_path": "/tpoVEYvm6qcXueZrQYJNRLXL88s.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 369200000, "overview": "Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.", "video": false, "id": 137113, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Edge of Tomorrow", "tagline": "Live, Die, Repeat", "vote_count": 1556, "homepage": "http://www.edgeoftomorrow-movie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1631867", "adult": false, "backdrop_path": "/7mgKeg18Qml5nJQa56RBZO7dIu0.jpg", "production_companies": [{"name": "RatPac-Dune Entertainment", "id": 41624}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros.", "id": 6194}, {"name": "3 Arts Entertainment", "id": 36390}, {"name": "Viz Media", "id": 6687}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}], "release_date": "2014-06-06", "popularity": 4.75889945182494, "original_title": "Edge of Tomorrow", "budget": 178000000, "cast": [{"name": "Tom Cruise", "character": "Maj. William \"Bill\" Cage", "id": 500, "credit_id": "52fe4c27c3a368484e1aa209", "cast_id": 12, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Emily Blunt", "character": "Sgt. Rita Vrataski", "id": 5081, "credit_id": "53b524de0e0a2676c4002173", "cast_id": 27, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 1}, {"name": "Brendan Gleeson", "character": "General Brigham", "id": 2039, "credit_id": "5391fab70e0a266dca0001ae", "cast_id": 26, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 2}, {"name": "Bill Paxton", "character": "Msg. Farell", "id": 2053, "credit_id": "52fe4c27c3a368484e1aa20d", "cast_id": 13, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 3}, {"name": "Jonas Armstrong", "character": "Skinner", "id": 119224, "credit_id": "52fe4c27c3a368484e1aa219", "cast_id": 16, "profile_path": "/ig43aP36ZRxDAOU9R3hNotImkE7.jpg", "order": 4}, {"name": "Tony Way", "character": "Kimmel", "id": 147255, "credit_id": "52fe4c27c3a368484e1aa221", "cast_id": 18, "profile_path": "/uk8OCXbEGXnkmKvf7EgVzfKq918.jpg", "order": 5}, {"name": "Kick Gurry", "character": "Griff", "id": 93111, "credit_id": "52fe4c27c3a368484e1aa21d", "cast_id": 17, "profile_path": "/8XzZ6hw2ctF55O4Ia6WaH2Fnx0Y.jpg", "order": 6}, {"name": "Franz Drameh", "character": "Ford", "id": 1363086, "credit_id": "541211790e0a266637002360", "cast_id": 30, "profile_path": "/1s3XS0AZ3Obx4OcLGetBipKR5En.jpg", "order": 7}, {"name": "Dragomir Mrsic", "character": "Kuntz", "id": 125740, "credit_id": "52fe4c27c3a368484e1aa225", "cast_id": 19, "profile_path": "/pQfV252X7iCAWNUytMIi16op7jq.jpg", "order": 8}, {"name": "Charlotte Riley", "character": "Nance", "id": 115679, "credit_id": "52fe4c27c3a368484e1aa211", "cast_id": 14, "profile_path": "/pkiZKysfb0oXvaBBm6zWQkWSvVu.jpg", "order": 9}, {"name": "Masayoshi Haneda", "character": "Takeda", "id": 1095404, "credit_id": "541211ab0e0a26663f002302", "cast_id": 31, "profile_path": "/dtUmoOUtsxeEbODCXjLILUunLmm.jpg", "order": 10}, {"name": "Terence Maynard", "character": "Cruel Sergeant", "id": 67205, "credit_id": "541210260e0a266631002383", "cast_id": 28, "profile_path": "/pFxcJnlfp1lAnDbgumYynzlkfQE.jpg", "order": 11}, {"name": "Noah Taylor", "character": "Dr. Carter", "id": 1284, "credit_id": "539155710e0a260fc9000daa", "cast_id": 25, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 12}, {"name": "Lee Asquith-Coe", "character": "Russian Soldier", "id": 531772, "credit_id": "52fe4c27c3a368484e1aa215", "cast_id": 15, "profile_path": "/bnmw4wXIo7Tb7NWN8jcMiSPTbxK.jpg", "order": 13}, {"name": "Lara Pulver", "character": "Karen Lord", "id": 213083, "credit_id": "541210690e0a266634002331", "cast_id": 29, "profile_path": "/ve68vtNYVXmKjzn81zKhI7TWEvy.jpg", "order": 14}, {"name": "Madeleine Mantock", "character": "Julie", "id": 1258664, "credit_id": "52fe4c27c3a368484e1aa231", "cast_id": 22, "profile_path": "/rDvJ1QkneXiGFzCZytTJzOjLKPp.jpg", "order": 15}, {"name": "Marianne Jean-Baptiste", "character": "Dr. Whittle", "id": 17352, "credit_id": "52fe4c27c3a368484e1aa239", "cast_id": 24, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 16}, {"name": "Jeremy Piven", "character": "Col. Walter Marx", "id": 12799, "credit_id": "52fe4c27c3a368484e1aa22d", "cast_id": 21, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 17}], "directors": [{"name": "Doug Liman", "department": "Directing", "job": "Director", "credit_id": "52fe4c27c3a368484e1aa1cb", "profile_path": "/eVHEeHoXVeopbXm9lzfHZCUEljm.jpg", "id": 11694}], "vote_average": 7.8, "runtime": 113}, "38810": {"poster_path": "/8hQbM6n2wnB5U1T0mHFIGwTtSeI.jpg", "production_countries": [{"iso_3166_1": "GR", "name": "Greece"}], "revenue": 0, "overview": "Three teenagers are confined to an isolated country estate that could very well be on another planet. The trio spend their days listening to endless homemade tapes that teach them a whole new vocabulary. Any word that comes from beyond their family abode is instantly assigned a new meaning. Hence 'the sea' refers to a large armchair and 'zombies' are little yellow flowers. Having invented a brother whom they claim to have ostracized for his disobedience, the uber-controlling parents terrorize their offspring into submission.", "video": false, "id": 38810, "genres": [{"id": 18, "name": "Drama"}], "title": "Dogtooth", "tagline": "The cat is the most feared animal there is!", "vote_count": 51, "homepage": "http://www.dogtooth.gr/", "belongs_to_collection": null, "original_language": "el", "status": "Released", "spoken_languages": [{"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}], "imdb_id": "tt1379182", "adult": false, "backdrop_path": "/bRY5Mg2TsE1A71ColgZXhHBMEa6.jpg", "production_companies": [{"name": "Boo Productions", "id": 15113}, {"name": "Horsefly Productions", "id": 15115}], "release_date": "2009-10-22", "popularity": 0.569515265404834, "original_title": "\u039a\u03c5\u03bd\u03cc\u03b4\u03bf\u03bd\u03c4\u03b1\u03c2", "budget": 0, "cast": [{"name": "Hristos Passalis", "character": "Son", "id": 122424, "credit_id": "52fe46e29251416c91062fc3", "cast_id": 10, "profile_path": "/wafoi998LbWsaHY4dn46jmEKGri.jpg", "order": 0}, {"name": "Aggeliki Papoulia", "character": "Older Daughter", "id": 122426, "credit_id": "52fe46e29251416c91062fc7", "cast_id": 11, "profile_path": "/syzlL5KWDhF89NFF0m7OC0lvIeY.jpg", "order": 1}, {"name": "Mary Tsoni", "character": "Younger Daughter", "id": 122425, "credit_id": "52fe46e29251416c91062fd3", "cast_id": 14, "profile_path": "/pLLHGEebGOtqzAjlRycmFCjeKmf.jpg", "order": 2}, {"name": "Christos Stergioglou", "character": "Father", "id": 122428, "credit_id": "52fe46e29251416c91062fcb", "cast_id": 12, "profile_path": "/6qsXPyQ85tVejBrnK6WCeK3o2Xz.jpg", "order": 3}, {"name": "Michele Valley", "character": "Mother", "id": 17587, "credit_id": "52fe46e29251416c91062fcf", "cast_id": 13, "profile_path": null, "order": 4}, {"name": "Anna Kalaitzidou", "character": "Christina", "id": 122422, "credit_id": "52fe46e29251416c91062fb9", "cast_id": 1, "profile_path": null, "order": 5}, {"name": "Steve Krikris", "character": "Colleague", "id": 1185439, "credit_id": "52fe46e29251416c91062fe3", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Sissy Petropoulou", "character": "Secretary (as Athanasia Petropoulou)", "id": 1185440, "credit_id": "52fe46e29251416c91062fe7", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Alexander Voulgaris", "character": "Dog trainer", "id": 1185441, "credit_id": "52fe46e29251416c91062feb", "cast_id": 21, "profile_path": null, "order": 8}], "directors": [{"name": "Yorgos Lanthimos", "department": "Directing", "job": "Director", "credit_id": "52fe46e29251416c91062fbf", "profile_path": "/qUjyfVUwX8XFXlhSSJtFXMeXi2X.jpg", "id": 122423}], "vote_average": 7.3, "runtime": 94}, "210860": {"poster_path": "/chgpheyKaJzOVN6u3n2tJupO4aC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Art dealer, Charles Mortdecai, searches for a stolen painting rumored to contain a secret code that gains access to hidden Nazi gold.", "video": false, "id": 210860, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Mortdecai", "tagline": "Sophistication Has a Name.", "vote_count": 65, "homepage": "http://mortdecaithemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3045616", "adult": false, "backdrop_path": "/fodTLXCoyxB9rbZ7dQacjw20KLQ.jpg", "production_companies": [{"name": "OddLot Entertainment", "id": 36209}, {"name": "Mad Chance", "id": 1757}, {"name": "Huayi Brothers Media", "id": 39649}], "release_date": "2015-01-23", "popularity": 7.4219198353092, "original_title": "Mortdecai", "budget": 60000000, "cast": [{"name": "Johnny Depp", "character": "Charles Mortdecai", "id": 85, "credit_id": "52fe4d87c3a368484e1ee10d", "cast_id": 3, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Johanna Mortdecai", "id": 12052, "credit_id": "52fe4d87c3a368484e1ee115", "cast_id": 5, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Ewan McGregor", "character": "Inspektor Alistair Martland", "id": 3061, "credit_id": "52fe4d87c3a368484e1ee119", "cast_id": 6, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 2}, {"name": "Paul Bettany", "character": "Jock Strapp", "id": 6162, "credit_id": "54bad977c3a3684046001c53", "cast_id": 12, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 3}, {"name": "Olivia Munn", "character": "Georgina Krampf", "id": 81364, "credit_id": "52fe4d87c3a368484e1ee111", "cast_id": 4, "profile_path": "/wnaT8PFZkE0m3WoVVbJU729UqBQ.jpg", "order": 4}, {"name": "Jeff Goldblum", "character": "Krampf", "id": 4785, "credit_id": "52fe4d87c3a368484e1ee12d", "cast_id": 11, "profile_path": "/iDW7y4R8cx4SZzWd8nN2gvL7My1.jpg", "order": 5}, {"name": "Jonny Pasvolsky", "character": "Emil Strago", "id": 75130, "credit_id": "52fe4d87c3a368484e1ee121", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Michael Culkin", "character": "Sir Graham Archer", "id": 8445, "credit_id": "54c214a39251416e6000cb6a", "cast_id": 14, "profile_path": "/ROLw9EhtO44DPwdRrmX6RyFPZN.jpg", "order": 7}, {"name": "Ulrich Thomsen", "character": "Romanov", "id": 4455, "credit_id": "54c2150792514124ed00336d", "cast_id": 15, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 8}, {"name": "Alec Utgoff", "character": "Dmitri", "id": 1196960, "credit_id": "52fe4d87c3a368484e1ee125", "cast_id": 9, "profile_path": "/sO96ld7tkq53XGnfxMZDK5aZVBh.jpg", "order": 9}, {"name": "Guy Burnet", "character": "Maurice", "id": 545195, "credit_id": "52fe4d87c3a368484e1ee11d", "cast_id": 7, "profile_path": null, "order": 10}, {"name": "Jamie Bernadette", "character": "Bikini Babe", "id": 138860, "credit_id": "54bad99892514148b0003e00", "cast_id": 13, "profile_path": null, "order": 11}], "directors": [{"name": "David Koepp", "department": "Directing", "job": "Director", "credit_id": "52fe4d87c3a368484e1ee103", "profile_path": "/3A7kfyMXaVjGcSbGdRD25msbHcj.jpg", "id": 508}], "vote_average": 5.8, "runtime": 106}, "14254": {"poster_path": "/2EK387xtxj7ypUXKXdoV8RRYXga.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 41624046, "overview": "Anna returns home after spending time in a psychiatric facility following her mother's tragic death and discovers that her mother's former nurse, Rachel, has moved into their house and become engaged to her father, Steven. Soon after she learns this shocking news, Anna is visited by her mother's ghost, who warns her that Rachel has evil intentions.", "video": false, "id": 14254, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Uninvited", "tagline": "Can you believe what you see?", "vote_count": 86, "homepage": "http://www.uninvitedmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0815245", "adult": false, "backdrop_path": "/wfHmHHL1EVv0WOnJlpF82oj7yRX.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}, {"name": "Vertigo Entertainment", "id": 829}, {"name": "Cold Spring Pictures", "id": 2363}, {"name": "The Montecito Picture Company", "id": 2364}, {"name": "MacDonald/Parkes Productions", "id": 384}, {"name": "Medien 5 Filmproduktion", "id": 23856}], "release_date": "2009-01-30", "popularity": 0.241095308894203, "original_title": "The Uninvited", "budget": 0, "cast": [{"name": "Emily Browning", "character": "Anna", "id": 70456, "credit_id": "52fe45df9251416c750655af", "cast_id": 1, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 0}, {"name": "Arielle Kebbel", "character": "Alex", "id": 20373, "credit_id": "52fe45df9251416c750655b3", "cast_id": 2, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 1}, {"name": "David Strathairn", "character": "Steven", "id": 11064, "credit_id": "52fe45df9251416c750655b7", "cast_id": 3, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Elizabeth Banks", "character": "Rachael", "id": 9281, "credit_id": "52fe45df9251416c750655bb", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 3}, {"name": "Maya Massar", "character": "Mom", "id": 172997, "credit_id": "52fe45df9251416c75065601", "cast_id": 17, "profile_path": "/wEqC0RkeyTVmknuKZKL5RQYuqIe.jpg", "order": 4}, {"name": "Kevin McNulty", "character": "Sheriff Emery", "id": 27111, "credit_id": "52fe45df9251416c75065605", "cast_id": 18, "profile_path": "/bsobqFkP1Oe7CQzs3pAy0FZT3yg.jpg", "order": 5}, {"name": "Jesse Moss", "character": "Matthew Hendricks", "id": 59926, "credit_id": "52fe45df9251416c75065609", "cast_id": 19, "profile_path": "/d4FY9ZdC5imLXq3wp6eCBUjy8vq.jpg", "order": 6}, {"name": "Dean Paul Gibson", "character": "Dr. Silberling", "id": 168565, "credit_id": "52fe45df9251416c7506560d", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Heather Doerksen", "character": "Mildred Kemp", "id": 83423, "credit_id": "52fe45df9251416c75065611", "cast_id": 21, "profile_path": "/nIF1GLQ2WPGS5pdogVGhOm2nYmh.jpg", "order": 8}], "directors": [{"name": "Charles Guard", "department": "Directing", "job": "Director", "credit_id": "52fe45df9251416c750655c1", "profile_path": null, "id": 81201}, {"name": "Thomas Guard", "department": "Directing", "job": "Director", "credit_id": "52fe45df9251416c750655d3", "profile_path": null, "id": 223886}], "vote_average": 6.1, "runtime": 87}, "10022": {"poster_path": "/relmzmNmlF8EkyYJy2kJjXjxiMi.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113006880, "overview": "Disgraced Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.", "video": false, "id": 10022, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Pacifier", "tagline": "Welcome to the infantry.", "vote_count": 189, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0395699", "adult": false, "backdrop_path": "/dOoVzgreblVRuUR0NaFevXxls8T.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Spyglass Entertainment", "id": 158}], "release_date": "2005-03-04", "popularity": 1.07290163555999, "original_title": "The Pacifier", "budget": 56000000, "cast": [{"name": "Vin Diesel", "character": "Shane Wolf", "id": 12835, "credit_id": "52fe43099251416c7500111b", "cast_id": 15, "profile_path": "/qwyfzMKIhxJ7ols66FgEf7eGdcI.jpg", "order": 0}, {"name": "Lauren Graham", "character": "Principal Claire Fletcher", "id": 16858, "credit_id": "52fe43099251416c7500111f", "cast_id": 16, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 1}, {"name": "Faith Ford", "character": "Julie Plummer", "id": 62054, "credit_id": "52fe43099251416c75001123", "cast_id": 17, "profile_path": "/sUF4Xpbzb2AI4f3l9lt8Ld3KY2O.jpg", "order": 2}, {"name": "Brittany Snow", "character": "Zoe Plummer", "id": 29221, "credit_id": "52fe43099251416c75001127", "cast_id": 18, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 3}, {"name": "Max Thieriot", "character": "Seth Plummer", "id": 41883, "credit_id": "52fe430a9251416c75001131", "cast_id": 20, "profile_path": "/nRvceSSrvU7NStHGvZZVZauYX5y.jpg", "order": 4}, {"name": "Carol Kane", "character": "Helga", "id": 10556, "credit_id": "52fe430a9251416c75001135", "cast_id": 21, "profile_path": "/tftY60jQYQBcpGjqAzKIiFNZV2J.jpg", "order": 5}, {"name": "Tate Donovan", "character": "Howard Plummer", "id": 15455, "credit_id": "52fe430a9251416c75001139", "cast_id": 22, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 6}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe43099251416c750010cf", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.6, "runtime": 95}, "6068": {"poster_path": "/H0xSwk150VJY3mVB0QxFk8L0r7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 164000000, "overview": "When Quinn, a grouchy pilot living the good life in the South Pacific, agrees to transfer a savvy fashion editor, Robin, to Tahiti, he ends up stranded on a deserted island with her after their plane crashes. The pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.", "video": false, "id": 6068, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Six Days Seven Nights", "tagline": "After this week in paradise, they\u2019re going to need a vacation.", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120828", "adult": false, "backdrop_path": "/yeK1MPP6wDAnf4wATPqRfMvXHSS.jpg", "production_companies": [{"name": "Caravan Pictures", "id": 175}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1998-06-12", "popularity": 0.578092362424936, "original_title": "Six Days Seven Nights", "budget": 70000000, "cast": [{"name": "Harrison Ford", "character": "Quinn Harris", "id": 3, "credit_id": "52fe443bc3a36847f8089c0b", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Anne Heche", "character": "Robin Monroe", "id": 8256, "credit_id": "52fe443bc3a36847f8089c0f", "cast_id": 2, "profile_path": "/aXMySUgcAJ09dq0oD0qY1mcsr1c.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Frank Martin", "id": 14409, "credit_id": "52fe443bc3a36847f8089c19", "cast_id": 4, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Jacqueline Obradors", "character": "Angelica", "id": 49818, "credit_id": "52fe443bc3a36847f8089c41", "cast_id": 11, "profile_path": "/p7QydGjTdM6sya62gSvMNMEqMT4.jpg", "order": 3}, {"name": "Temuera Morrison", "character": "Jager", "id": 7242, "credit_id": "52fe443bc3a36847f8089c45", "cast_id": 12, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 4}, {"name": "Allison Janney", "character": "Marjorie", "id": 19, "credit_id": "52fe443bc3a36847f8089c49", "cast_id": 13, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 5}, {"name": "Cliff Curtis", "character": "Pierce", "id": 7248, "credit_id": "531233ed925141101f002730", "cast_id": 14, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 6}, {"name": "Danny Trejo", "character": "Pierce", "id": 11160, "credit_id": "53123414925141101f002736", "cast_id": 22, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 14}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089c15", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 5.8, "runtime": 98}, "6069": {"poster_path": "/bbSI4kC8LlqwQPUUlJbcq6sw1qT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63766510, "overview": "Three single women in a picturesque village have their wishes granted - at a cost - when a mysterious and flamboyant man arrives in their lives.", "video": false, "id": 6069, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}], "title": "The Witches of Eastwick", "tagline": "Three Beautiful Women. One Lucky Devil.", "vote_count": 71, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094332", "adult": false, "backdrop_path": "/uwOY1y1YrtSnHPAlxiyRfCdGrFB.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1987-06-12", "popularity": 0.283188955091255, "original_title": "The Witches of Eastwick", "budget": 0, "cast": [{"name": "Jack Nicholson", "character": "Daryl Van Horne", "id": 514, "credit_id": "52fe443bc3a36847f8089c73", "cast_id": 1, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Cher", "character": "Alexandra Medford", "id": 38225, "credit_id": "52fe443bc3a36847f8089c77", "cast_id": 2, "profile_path": "/nLi4qPXWEuhjc31bmbeINLVZ8zS.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Jane Spofford", "id": 4038, "credit_id": "52fe443bc3a36847f8089c7b", "cast_id": 3, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Michelle Pfeiffer", "character": "Sukie Ridgemont", "id": 1160, "credit_id": "52fe443bc3a36847f8089c7f", "cast_id": 4, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 3}, {"name": "Veronica Cartwright", "character": "Felicia Alden", "id": 5047, "credit_id": "52fe443bc3a36847f8089c83", "cast_id": 5, "profile_path": "/9TorYWWIO0Q5nXYOmAzvJUnL7Rf.jpg", "order": 4}, {"name": "Richard Jenkins", "character": "Clyde Alden", "id": 28633, "credit_id": "52fe443bc3a36847f8089c87", "cast_id": 6, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 5}, {"name": "Keith Jochim", "character": "Walter Neff", "id": 49820, "credit_id": "52fe443bc3a36847f8089cbb", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Carel Struycken", "character": "Fidel", "id": 9631, "credit_id": "52fe443bc3a36847f8089cbf", "cast_id": 16, "profile_path": "/2uiIEeb6f3cYFIXKOUZpMHMQdcQ.jpg", "order": 7}, {"name": "Helen Lloyd Breed", "character": "Mrs. Biddle", "id": 49821, "credit_id": "52fe443bc3a36847f8089cc3", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Caroline Struzik", "character": "Carol Medford", "id": 49822, "credit_id": "52fe443bc3a36847f8089cc7", "cast_id": 18, "profile_path": null, "order": 9}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089c8d", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 6.1, "runtime": 118}, "6073": {"poster_path": "/a7PuqWv0ENFg8dt9k51AID6P1kh.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147845033, "overview": "Jerry Welbach is given two ultimatums. His mob boss wants him to travel to Mexico to get a priceless antique pistol called \"The Mexican\" or he will suffer the consequences. The other ultimatum comes from his girlfriend Samantha, who wants him to end his association with the mob. Jerry figures that being alive, although in trouble with his girlfriend is the better alternative so he heads south of the border. Finding the pistol is easy but getting it home is a whole other matter. The pistol supposedly carries a curse - a curse Jerry is given every reason to believe, especially when Samantha is held hostage by the gay hit man Leroy to ensure the safe return of the pistol.", "video": false, "id": 6073, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 10749, "name": "Romance"}], "title": "The Mexican", "tagline": "love with the safety off", "vote_count": 117, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0236493", "adult": false, "backdrop_path": "/elTdq4oZ2jmYFrG6OEHnh4wpklC.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2001-03-01", "popularity": 1.12289598472146, "original_title": "The Mexican", "budget": 57000000, "cast": [{"name": "Brad Pitt", "character": "Jerry Welbach", "id": 287, "credit_id": "52fe443bc3a36847f8089dd5", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Julia Roberts", "character": "Samantha Barzel", "id": 1204, "credit_id": "52fe443bc3a36847f8089dd9", "cast_id": 2, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Winston Baldry", "id": 4691, "credit_id": "52fe443bc3a36847f8089ddd", "cast_id": 3, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "J.K. Simmons", "character": "Ted Slocum", "id": 18999, "credit_id": "52fe443bc3a36847f8089de1", "cast_id": 4, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 3}, {"name": "Gene Hackman", "character": "Arnold Margolese", "id": 193, "credit_id": "52fe443bc3a36847f8089de5", "cast_id": 5, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 4}, {"name": "Bob Balaban", "character": "Bernie Nayman", "id": 12438, "credit_id": "52fe443bc3a36847f8089e13", "cast_id": 13, "profile_path": "/3g7IKz8ycv0opDxmpoBxsQkUslU.jpg", "order": 5}, {"name": "Michael Cerveris", "character": "Frank", "id": 49827, "credit_id": "52fe443bc3a36847f8089e17", "cast_id": 14, "profile_path": "/1cMSbaBloNvWYHLPRxeSHoHrj1U.jpg", "order": 6}, {"name": "Richard Coca", "character": "Car Thief #1", "id": 157609, "credit_id": "52ffc251c3a368400f099a67", "cast_id": 16, "profile_path": "/pbCDsYaIFzAYHJ5vBvjPLYEsC7O.jpg", "order": 7}, {"name": "David Krumholtz", "character": "Beck", "id": 38582, "credit_id": "52ffc2fec3a3683fdc0a0fc8", "cast_id": 17, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 8}, {"name": "Castulo Guerra", "character": "Joe the Pawnshop Owner", "id": 3979, "credit_id": "5300dedbc3a368400638f679", "cast_id": 19, "profile_path": "/njap7gZlVKHMKFb0aMQB17kMUNh.jpg", "order": 10}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089deb", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 5.6, "runtime": 123}, "6075": {"poster_path": "/tGPqPHuOCbyFxwllrYgKkPDu9xB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36516012, "overview": "A Puerto-Rican ex-con, just released from prison, pledges to stay away from drugs and violence despite the pressure around him and lead on to a better life outside of NYC.", "video": false, "id": 6075, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Carlito's Way", "tagline": "He's got a good future if he can live past next week.", "vote_count": 109, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0106519", "adult": false, "backdrop_path": "/dqf2uDLUDhqJIaPAZNVoIpTUeq0.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Epic Productions", "id": 1988}, {"name": "Bregman/Baer Productions", "id": 11393}], "release_date": "1993-11-10", "popularity": 1.42298402269061, "original_title": "Carlito's Way", "budget": 0, "cast": [{"name": "Al Pacino", "character": "Carlito Brigante", "id": 1158, "credit_id": "52fe443bc3a36847f8089edb", "cast_id": 4, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Sean Penn", "character": "David Kleinfeld", "id": 2228, "credit_id": "52fe443bc3a36847f8089edf", "cast_id": 5, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Penelope Ann Miller", "character": "Gail", "id": 14698, "credit_id": "52fe443bc3a36847f8089ee3", "cast_id": 6, "profile_path": "/zWLuLhmDgnK0BpiXofKdHI5epH8.jpg", "order": 2}, {"name": "John Leguizamo", "character": "Benny Blanco", "id": 5723, "credit_id": "52fe443bc3a36847f8089ee7", "cast_id": 7, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 3}, {"name": "Ingrid Rogers", "character": "Steffie", "id": 47769, "credit_id": "52fe443bc3a36847f8089eeb", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Pachanga", "id": 40481, "credit_id": "52fe443bc3a36847f8089eef", "cast_id": 9, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Adrian Pasdar", "character": "Frankie Taglialucci", "id": 17304, "credit_id": "52fe443bc3a36847f8089ef3", "cast_id": 10, "profile_path": "/yNqnfWmzlDC5qB5Ll6PgK2JfGIi.jpg", "order": 6}, {"name": "Viggo Mortensen", "character": "Lalin", "id": 110, "credit_id": "52fe443bc3a36847f8089ef7", "cast_id": 11, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 7}, {"name": "James Rebhorn", "character": "Norwalk", "id": 8986, "credit_id": "52fe443bc3a36847f8089efb", "cast_id": 12, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 8}, {"name": "Joseph Siravo", "character": "Vincent Taglialucci", "id": 47770, "credit_id": "52fe443bc3a36847f8089eff", "cast_id": 13, "profile_path": "/rh9Vt4JH5MZKMolhOzElTBEWic5.jpg", "order": 9}, {"name": "Richard Foronjy", "character": "Pete Amadesso", "id": 47771, "credit_id": "52fe443bc3a36847f8089f03", "cast_id": 14, "profile_path": "/rz8GA26g2uISlcjfVOnSFby6fMw.jpg", "order": 10}, {"name": "Jorge Porcel", "character": "Saso", "id": 47772, "credit_id": "52fe443bc3a36847f8089f07", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "John Ortiz", "character": "Guarijo", "id": 40543, "credit_id": "52fe443bc3a36847f8089f0b", "cast_id": 16, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 12}, {"name": "Paul Mazursky", "character": "Richter Feinstein", "id": 47773, "credit_id": "52fe443bc3a36847f8089f0f", "cast_id": 17, "profile_path": "/6YUp0e6fM0OmrB6STNY1ESwHcdG.jpg", "order": 13}, {"name": "Vincent Pastore", "character": "Copa Wiseguy", "id": 47774, "credit_id": "52fe443bc3a36847f8089f13", "cast_id": 18, "profile_path": "/4SlzY9TtgQKDVu2GIYu3M73MxeP.jpg", "order": 14}, {"name": "Jon Seda", "character": "Dominikaner", "id": 288, "credit_id": "52fe443bc3a36847f8089f17", "cast_id": 19, "profile_path": "/zYDXb5F4IyzuODWSuGa2mLU8HMz.jpg", "order": 15}, {"name": "Marc Anthony", "character": "S\u00e4nger in Disco", "id": 47775, "credit_id": "52fe443bc3a36847f8089f1b", "cast_id": 20, "profile_path": "/b6E5BCQkOXlxT1E4nHRyOpehuYU.jpg", "order": 16}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe443bc3a36847f8089ed1", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 7.2, "runtime": 144}, "169917": {"poster_path": "/xxe77USOk2tPnq7G4cL42gf1OxQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53181600, "overview": "Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.", "video": false, "id": 169917, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "A Walk Among the Tombstones", "tagline": "Some people are afraid of all the wrong things", "vote_count": 347, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0365907", "adult": false, "backdrop_path": "/e56QsaJy1weAUukiK2ZmIGVUALF.jpg", "production_companies": [{"name": "Traveling Picture Show Company (TPSC)", "id": 39043}, {"name": "Jersey Films", "id": 216}, {"name": "Free State Pictures", "id": 40106}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Da Vinci Media Ventures", "id": 40107}, {"name": "Double Feature Films", "id": 215}], "release_date": "2014-09-19", "popularity": 5.10708695087475, "original_title": "A Walk Among the Tombstones", "budget": 28000000, "cast": [{"name": "Liam Neeson", "character": "Matthew Scudder", "id": 3896, "credit_id": "52fe4cedc3a36847f82450a1", "cast_id": 7, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Dan Stevens", "character": "Kenny Kristo", "id": 221018, "credit_id": "52fe4cedc3a36847f82450a5", "cast_id": 8, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 1}, {"name": "David Harbour", "character": "Ray", "id": 35029, "credit_id": "5303f333c3a3683aa100180e", "cast_id": 16, "profile_path": "/dujrjSQGtjfj9Y0LzMScexzMAx.jpg", "order": 2}, {"name": "Boyd Holbrook", "character": "Peter Kristo", "id": 467645, "credit_id": "54ca1574925141678900a700", "cast_id": 77, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 3}, {"name": "Adam David Thompson", "character": "Albert", "id": 1216908, "credit_id": "54f0a221c3a3682e71001d47", "cast_id": 79, "profile_path": "/4U299AQGRLiJpAkNQZDkJZzt7mu.jpg", "order": 4}, {"name": "Razane Jammal", "character": "Carrie Kristo", "id": 1075789, "credit_id": "54f0a3819251410ebe0015ec", "cast_id": 80, "profile_path": "/pPgEDnrzVhUShtsp5bP6MeVhceg.jpg", "order": 5}, {"name": "Astro", "character": "TJ", "id": 544123, "credit_id": "5303f366c3a3683a7a003765", "cast_id": 21, "profile_path": "/w544ooVz3Gcws163vkvLk3d2D3z.jpg", "order": 6}, {"name": "\u00d3lafur Darri \u00d3lafsson", "character": "Jonas Loogan", "id": 110902, "credit_id": "5303f33cc3a3683a6d000bde", "cast_id": 17, "profile_path": "/fDUMXqM9UALD86fiC076XVgitDO.jpg", "order": 7}, {"name": "Marina Squerciati", "character": "Hostess", "id": 1100549, "credit_id": "5303f302c3a3683a6d000a2a", "cast_id": 11, "profile_path": "/wIHVGmFXqSeErZZN6q3mpXXmrPO.jpg", "order": 8}, {"name": "Sebastian Roch\u00e9", "character": "Yuri Landau", "id": 23789, "credit_id": "5303f30dc3a3683a6d000a42", "cast_id": 12, "profile_path": "/bOSLShSCLhZ4VtbgInX6SjhqlRb.jpg", "order": 9}, {"name": "Mark Consuelos", "character": "Reuben", "id": 112143, "credit_id": "5303f316c3a3683a91000c66", "cast_id": 13, "profile_path": "/dDb9g7xYYFKoD45q9E1PiWAhKoK.jpg", "order": 10}, {"name": "Whitney Able", "character": "Twelve Step Girl", "id": 56677, "credit_id": "5303f31fc3a3683a7a003387", "cast_id": 14, "profile_path": "/6y5KdwVTlB3o9ZGJ9iIoSCW850M.jpg", "order": 11}, {"name": "Maurice Compte", "character": "Ortiz", "id": 48530, "credit_id": "5303f329c3a3683ab2001481", "cast_id": 15, "profile_path": "/gt8vrkSOmv4dt5AfIcVsevNQ05b.jpg", "order": 12}, {"name": "Marielle Heller", "character": "Marie Gotteskind", "id": 177532, "credit_id": "5303f347c3a3683ab20017fe", "cast_id": 18, "profile_path": "/nhJcxbFAeHLuNEbsHU9GaaRZj2i.jpg", "order": 13}, {"name": "Annika Peterson", "character": "Anita", "id": 76464, "credit_id": "5303f35bc3a3683a8900382b", "cast_id": 20, "profile_path": "/bi9MLY4H6UNHtzJtfPAxxNM5X3.jpg", "order": 14}, {"name": "Frank De Julio", "character": "Eduardo Solomon", "id": 206900, "credit_id": "54117ec7c3a368020f000c9c", "cast_id": 23, "profile_path": "/qPUo6sUAiIiNyxCQPKBt7UC5uoO.jpg", "order": 15}, {"name": "Laura Birn", "character": "Leila Alvarez", "id": 212815, "credit_id": "54251e28c3a3680876005340", "cast_id": 24, "profile_path": "/hUoWTbiGH9VsXTotzthe8yXLHMd.jpg", "order": 16}, {"name": "Toshiko Onizawa", "character": "Witness", "id": 1294270, "credit_id": "5303f352c3a3683aab001934", "cast_id": 19, "profile_path": "/8xSe8XoG0RBZUCC1Yiue7YuSwK8.jpg", "order": 17}, {"name": "Patrick McDade", "character": "Bar Owner", "id": 1128450, "credit_id": "5536505b9251416518002a46", "cast_id": 81, "profile_path": null, "order": 18}, {"name": "Luciano Acuna Jr.", "character": "Dominican Banger #1", "id": 1400512, "credit_id": "553650e4c3a368447c0022c9", "cast_id": 82, "profile_path": null, "order": 19}, {"name": "Hans Marrero", "character": "Dominican Banger #2", "id": 131423, "credit_id": "553651a992514147160037af", "cast_id": 83, "profile_path": null, "order": 20}, {"name": "Kim Rosen", "character": "Waitress - Jenny", "id": 1457425, "credit_id": "553653a6c3a368447c00235e", "cast_id": 84, "profile_path": null, "order": 21}, {"name": "Eric Nelsen", "character": "Howie", "id": 1362512, "credit_id": "55365571c3a36817850028cd", "cast_id": 85, "profile_path": "/pRS0lQPsRV24eqLvsYPnEgxeWfN.jpg", "order": 22}, {"name": "Jon Goracy", "character": "Bag Boy", "id": 1457427, "credit_id": "553655b0c3a368222600b332", "cast_id": 86, "profile_path": null, "order": 23}, {"name": "Stephanie Andujar", "character": "Cashier", "id": 109562, "credit_id": "553656e092514152cf002c33", "cast_id": 87, "profile_path": null, "order": 24}, {"name": "Al Nazemian", "character": "Manager - Roland", "id": 1218124, "credit_id": "5536577b92514152cf002c47", "cast_id": 88, "profile_path": null, "order": 25}, {"name": "Sophia Frank", "character": "Teenage Cashier", "id": 1457442, "credit_id": "553659aa92514166aa003563", "cast_id": 89, "profile_path": null, "order": 26}, {"name": "Susham Bedi", "character": "Mrs. Youness", "id": 1232507, "credit_id": "55365a769251416518002c1f", "cast_id": 90, "profile_path": null, "order": 27}, {"name": "Purva Bedi", "character": "Neighbor", "id": 109024, "credit_id": "55365af492514142b2002d98", "cast_id": 91, "profile_path": "/c1hnJKpSqWSOlSVdSqnIJAGbeYC.jpg", "order": 28}, {"name": "Novella Nelson", "character": "Librarian", "id": 55272, "credit_id": "55365bb5c3a368222600b3f7", "cast_id": 92, "profile_path": "/bAx0RY3x9ljh3Fwo8Xy4OlzIkVp.jpg", "order": 29}, {"name": "Natia Dune", "character": "Nurse Anna", "id": 1431807, "credit_id": "55365e70c3a368222600b426", "cast_id": 93, "profile_path": null, "order": 30}, {"name": "Genevieve Adams", "character": "Waitress - The Flame", "id": 1375636, "credit_id": "55365edd92514152cf002cfd", "cast_id": 94, "profile_path": "/oxzLpiRniaIUHZa3wBRvtKFNX2L.jpg", "order": 31}, {"name": "Liana De Laurent", "character": "Yuri's Wife", "id": 1457460, "credit_id": "55365f6392514152cf002d07", "cast_id": 95, "profile_path": null, "order": 32}, {"name": "Danielle Rose Russell", "character": "Lucia", "id": 1457461, "credit_id": "55365fdbc3a368222600b44b", "cast_id": 96, "profile_path": null, "order": 33}, {"name": "David Anzuelo", "character": "Bodega Owner", "id": 138027, "credit_id": "553660aac3a36815ac002a30", "cast_id": 97, "profile_path": "/g2nVgJvSxCzSQKj7KYwnqiQczGp.jpg", "order": 34}, {"name": "Samuel Mercedes", "character": "Jacinto", "id": 1457463, "credit_id": "5536610592514166aa00360f", "cast_id": 98, "profile_path": null, "order": 35}, {"name": "Mike Figueroa", "character": "Tattooed Man", "id": 100707, "credit_id": "553661e99251416518002cb5", "cast_id": 99, "profile_path": null, "order": 36}, {"name": "Mike Carlsen", "character": "Flannel Shirt", "id": 1457476, "credit_id": "5536627a92514166aa00363c", "cast_id": 100, "profile_path": null, "order": 37}, {"name": "Leon Addison Brown", "character": "Stover", "id": 171601, "credit_id": "5536641ec3a36815ac002a8c", "cast_id": 101, "profile_path": null, "order": 38}, {"name": "Damion Lee", "character": "Baller #1", "id": 1457478, "credit_id": "55366465c3a368222600b4e8", "cast_id": 102, "profile_path": null, "order": 39}, {"name": "Jolly Abraham", "character": "Bellevue Doctor", "id": 187776, "credit_id": "553665a7c3a368523e006e8f", "cast_id": 103, "profile_path": null, "order": 40}, {"name": "Nina Polan", "character": "Old Woman", "id": 1457479, "credit_id": "553665f2c3a36831dd001383", "cast_id": 104, "profile_path": null, "order": 41}, {"name": "Briana Marin", "character": "Screaming Woman", "id": 1157088, "credit_id": "553666dbc3a3681785002a85", "cast_id": 105, "profile_path": "/nPfddD8cKuZfUgU12odBpZmauMj.jpg", "order": 42}, {"name": "Arthur Gerunda", "character": "Dani", "id": 1348209, "credit_id": "5536673a92514166aa0036a1", "cast_id": 106, "profile_path": null, "order": 43}, {"name": "Fabrizio Brienza", "character": "Thug", "id": 1340885, "credit_id": "553667fec3a368523e006eb1", "cast_id": 107, "profile_path": null, "order": 44}, {"name": "Dennis Jay Funny", "character": "AA Speaker", "id": 1457481, "credit_id": "553668629251414201000985", "cast_id": 108, "profile_path": null, "order": 45}, {"name": "Chinasa Ogbuagu", "character": "AA Woman - Denise", "id": 205718, "credit_id": "55366ac6c3a36815ac002af9", "cast_id": 109, "profile_path": null, "order": 46}, {"name": "Louise G. Col\u00f3n", "character": "Latin Old Woman", "id": 1457484, "credit_id": "55366b059251416518002d5e", "cast_id": 110, "profile_path": null, "order": 47}], "directors": [{"name": "Scott Frank", "department": "Directing", "job": "Director", "credit_id": "52fe4cedc3a36847f824507f", "profile_path": "/hV0DEtOsiiQAMb7Oqo2VEII8o2l.jpg", "id": 2199}], "vote_average": 6.3, "runtime": 113}, "88005": {"poster_path": "/86v2AXXQP6mKNn3Nne910h7UlNK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6619173, "overview": "As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.", "video": false, "id": 88005, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Seeking a Friend for the End of the World", "tagline": "Nice knowing you.", "vote_count": 210, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1307068", "adult": false, "backdrop_path": "/14twu14BYNVyOBs5OxoawaYNxg.jpg", "production_companies": [{"name": "Indian Paintbrush", "id": 9350}, {"name": "Mandate Pictures", "id": 771}, {"name": "Focus Features", "id": 10146}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2012-06-22", "popularity": 0.584034782495333, "original_title": "Seeking a Friend for the End of the World", "budget": 10000000, "cast": [{"name": "Keira Knightley", "character": "Penny", "id": 116, "credit_id": "52fe49e59251416c910bc63f", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Steve Carell", "character": "Dodge", "id": 4495, "credit_id": "52fe49e59251416c910bc643", "cast_id": 3, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Melanie Lynskey", "character": "Karen", "id": 15091, "credit_id": "52fe49e59251416c910bc647", "cast_id": 4, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 2}, {"name": "Patton Oswalt", "character": "Roache", "id": 10872, "credit_id": "52fe49e59251416c910bc64b", "cast_id": 5, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Frank", "id": 8349, "credit_id": "52fe49e59251416c910bc66d", "cast_id": 11, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "William Petersen", "character": "Trucker", "id": 52267, "credit_id": "52fe49e59251416c910bc671", "cast_id": 12, "profile_path": "/mDVOf1CQaynoIUtREJUfJzzVViD.jpg", "order": 5}, {"name": "Rob Corddry", "character": "Warren", "id": 52997, "credit_id": "52fe49e59251416c910bc675", "cast_id": 13, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 6}, {"name": "Gillian Jacobs", "character": "Waitress / Katie", "id": 94098, "credit_id": "52fe49e59251416c910bc679", "cast_id": 14, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 7}, {"name": "Adam Brody", "character": "Owen", "id": 11702, "credit_id": "52fe49e59251416c910bc67d", "cast_id": 15, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 8}, {"name": "Amy Schumer", "character": "Lacey", "id": 440414, "credit_id": "53fe8d850e0a262df2002f26", "cast_id": 25, "profile_path": "/fIlfZxxdEPQIyzokwYs73X571yk.jpg", "order": 9}], "directors": [{"name": "Lorene Scafaria", "department": "Directing", "job": "Director", "credit_id": "52fe49e59251416c910bc63b", "profile_path": null, "id": 71551}], "vote_average": 6.1, "runtime": 101}, "42684": {"poster_path": "/AdadT2HuwHkYWxbzme4QP77M6Wt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66821036, "overview": "When strange lights descend on the city of Los Angeles, people are drawn outside like moths to a flame where an extraterrestrial force threatens to swallow the entire human population off the face of the Earth. Now the band of survivors must fight for their lives as the world unravels around them.", "video": false, "id": 42684, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Skyline", "tagline": "Don't look up", "vote_count": 160, "homepage": "http://www.iamrogue.com/skyline", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1564585", "adult": false, "backdrop_path": "/7DDQp1l72rXjYZRwEgHg2TkbPcH.jpg", "production_companies": [{"name": "Hydraulx", "id": 10936}, {"name": "Transmission Pictures", "id": 12158}, {"name": "Relativity Media", "id": 7295}, {"name": "Rat Entertainment", "id": 12007}, {"name": "Rogue Pictures", "id": 134}], "release_date": "2010-11-12", "popularity": 0.859449446583773, "original_title": "Skyline", "budget": 10000000, "cast": [{"name": "Eric Balfour", "character": "Jarrod", "id": 34489, "credit_id": "52fe4611c3a36847f80ead35", "cast_id": 1, "profile_path": "/rDgVBp74eQlFHPXZ0kSUssWBh7B.jpg", "order": 0}, {"name": "Scottie Thompson", "character": "Elaine", "id": 128628, "credit_id": "52fe4611c3a36847f80ead39", "cast_id": 2, "profile_path": "/o7S0MQHMiylNurOcdxAT85NXJP.jpg", "order": 1}, {"name": "David Zayas", "character": "Oliver", "id": 22821, "credit_id": "52fe4611c3a36847f80ead3d", "cast_id": 3, "profile_path": "/eglTZ63x2lu9I2LiDmeyPxhgwc8.jpg", "order": 2}, {"name": "Donald Faison", "character": "Terry", "id": 49002, "credit_id": "52fe4611c3a36847f80ead41", "cast_id": 4, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 3}, {"name": "Brittany Daniel", "character": "Candice", "id": 35476, "credit_id": "52fe4611c3a36847f80ead45", "cast_id": 5, "profile_path": "/3c7mCIY8wiUBANoxzl3oz1UOpgp.jpg", "order": 4}, {"name": "Crystal Reed", "character": "Denise", "id": 128629, "credit_id": "52fe4611c3a36847f80ead49", "cast_id": 6, "profile_path": "/fGINQ7WhuSOr6FkMHCWScWk9bms.jpg", "order": 5}, {"name": "Neil Hopkins", "character": "Ray", "id": 59755, "credit_id": "52fe4611c3a36847f80ead4d", "cast_id": 7, "profile_path": "/lM3qUSG1jjD3EofZnsv4pE7TzUa.jpg", "order": 6}, {"name": "J. Paul Boehmer", "character": "Colin", "id": 128630, "credit_id": "52fe4611c3a36847f80ead51", "cast_id": 8, "profile_path": "/ivatzHFemBYmmrwH9eB5UohmGRN.jpg", "order": 7}, {"name": "Tanya Newbould", "character": "Jen", "id": 128631, "credit_id": "52fe4611c3a36847f80ead55", "cast_id": 9, "profile_path": "/rLlIXGGH4nF4Efp0OhL4q1EkQJo.jpg", "order": 8}, {"name": "Pam Levin", "character": "Cindy", "id": 128632, "credit_id": "52fe4611c3a36847f80ead59", "cast_id": 10, "profile_path": "/ujfi9qJXgDn4BJsLefLMjJRhisv.jpg", "order": 9}, {"name": "Phet Mahathongdy", "character": "Mandy", "id": 128633, "credit_id": "52fe4611c3a36847f80ead5d", "cast_id": 11, "profile_path": "/6R5fKNfzaAUQhVxIY5ZGFFqhVh7.jpg", "order": 10}, {"name": "Tony Black", "character": "Derek", "id": 128634, "credit_id": "52fe4611c3a36847f80ead61", "cast_id": 12, "profile_path": "/3WoVQGxIB6ZCWcrr0UHztWW60RK.jpg", "order": 11}], "directors": [{"name": "Colin Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4611c3a36847f80ead67", "profile_path": "/mM95v1bWGdz8Ira7K4drueKRT01.jpg", "id": 6037}, {"name": "Greg Strause", "department": "Directing", "job": "Director", "credit_id": "52fe4611c3a36847f80ead7f", "profile_path": "/xcEcDFHoTkIuOkLeWRuX3ksJmy1.jpg", "id": 6038}], "vote_average": 4.7, "runtime": 100}, "14301": {"poster_path": "/zlAjTMaWakkoJidwsYO0QNwtPqy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3, "overview": "Dr. Horrible, an aspiring supervillain with his own video blog, is attempting to join the prestigious Evil League of Evil (led by the legendary \"thoroughbred of sin\", Bad Horse), but his plans are usually foiled by the egotistical superhero Captain Hammer. Dr. Horrible's life is thrown for a loop when he falls in love with Penny, a beautiful and optimistic advocate for the homeless he meets at the laundromat.", "video": false, "id": 14301, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 878, "name": "Science Fiction"}], "title": "Dr. Horrible's Sing-Along Blog", "tagline": "He has a Ph.D. in horribleness!", "vote_count": 73, "homepage": "http://www.drhorrible.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1227926", "adult": false, "backdrop_path": "/6uqmwt36mogSf07j2Wk87PDzbF0.jpg", "production_companies": [], "release_date": "2008-07-15", "popularity": 0.266183432784794, "original_title": "Dr. Horrible's Sing-Along Blog", "budget": 200000, "cast": [{"name": "Neil Patrick Harris", "character": "Billy / ... (3 episodes, 2008)", "id": 41686, "credit_id": "52fe45e49251416c75065fdb", "cast_id": 1, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "Nathan Fillion", "character": "Captain Hammer (3 episodes, 2008)", "id": 51797, "credit_id": "52fe45e49251416c75065fdf", "cast_id": 2, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 1}, {"name": "Felicia Day", "character": "Penny (3 episodes, 2008)", "id": 76527, "credit_id": "52fe45e49251416c75065fe3", "cast_id": 3, "profile_path": "/mlTqR0XorYqvPvgu1mLVT8Fso6s.jpg", "order": 2}, {"name": "Simon Helberg", "character": "Moist (3 episodes, 2008)", "id": 53863, "credit_id": "52fe45e49251416c75065fe7", "cast_id": 4, "profile_path": "/zic1gEH1qEMHhbm5Vxwp9J2XrAO.jpg", "order": 3}, {"name": "Nick Towne", "character": "Bad Horse Chorus #1 (3 episodes, 2008)", "id": 76531, "credit_id": "52fe45e49251416c75065feb", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Jed Whedon", "character": "Bad Horse Chorus #2 / ... (3 episodes, 2008)", "id": 76532, "credit_id": "52fe45e49251416c75065fef", "cast_id": 6, "profile_path": "/bfAKVMn1sCTYXy97vr55Vyl2X8a.jpg", "order": 5}, {"name": "Rob Reinis", "character": "Bad Horse Chorus #3 / ... (3 episodes, 2008)", "id": 76533, "credit_id": "52fe45e49251416c75065ff3", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Otto Michael Penzato", "character": "Van Driver / ... (3 episodes, 2008)", "id": 76534, "credit_id": "52fe45e49251416c75065ff7", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Lance Lanfear", "character": "Hawaiian Shirt Guy (3 episodes, 2008)", "id": 76535, "credit_id": "52fe45e49251416c75065ffb", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe45e49251416c75066001", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 7.6, "runtime": 42}, "22494": {"poster_path": "/jVdh1uwZKRjOZ9AncirPDgCMU3p.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Three men walk into a bar; two geeks and a cynic. They are three ordinary blokes who all have dreams and hopes for an exciting and better future", "video": false, "id": 22494, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Frequently Asked Questions About Time Travel", "tagline": "Three guys. One pub. Too much time on their hands.", "vote_count": 51, "homepage": "http://www.faqmovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0910554", "adult": false, "backdrop_path": "/2qzPibT376A2nLxDGdSmD6J4xek.jpg", "production_companies": [{"name": "BBC Films", "id": 288}, {"name": "Dog Lamp Films", "id": 4128}, {"name": "HBO Films", "id": 7429}], "release_date": "2009-04-24", "popularity": 0.247703045828091, "original_title": "Frequently Asked Questions About Time Travel", "budget": 0, "cast": [{"name": "Chris O'Dowd", "character": "Ray", "id": 40477, "credit_id": "52fe4443c3a368484e019053", "cast_id": 1, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 0}, {"name": "Dean Lennox Kelly", "character": "Pete", "id": 1669, "credit_id": "52fe4443c3a368484e019057", "cast_id": 2, "profile_path": "/5YPM68tm2rxpz43cSfoAHdeF7JU.jpg", "order": 1}, {"name": "Anna Faris", "character": "Cassie", "id": 1772, "credit_id": "52fe4443c3a368484e01905b", "cast_id": 3, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Meredith MacNeill", "character": "Millie", "id": 63606, "credit_id": "52fe4443c3a368484e01905f", "cast_id": 4, "profile_path": "/tQior85M2Tm8teA2nYjUVIQBv0h.jpg", "order": 3}, {"name": "Marc Wootton", "character": "Toby", "id": 92574, "credit_id": "52fe4443c3a368484e019063", "cast_id": 5, "profile_path": "/vcQq2epz9CvIOOCaE9T5RW8spB5.jpg", "order": 4}, {"name": "Ray Gardner", "character": "Mellor", "id": 207199, "credit_id": "532575989251411708001ab9", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Nick Ewans", "character": "Barry", "id": 175393, "credit_id": "532575a49251410d950019e3", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Arthur Nightingale", "character": "Old Man", "id": 186275, "credit_id": "532575b39251410c87001a62", "cast_id": 10, "profile_path": "/rmHgVma3jk8snCVkIO7MKCtzxlF.jpg", "order": 7}, {"name": "Paul Adams", "character": "Tramp", "id": 1301293, "credit_id": "532575c59251411544001987", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "John Warman", "character": "Dart Player", "id": 1209055, "credit_id": "532575d8925141154400198b", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Gareth Carrivick", "department": "Directing", "job": "Director", "credit_id": "52fe4443c3a368484e019069", "profile_path": null, "id": 93468}], "vote_average": 7.1, "runtime": 83}, "14306": {"poster_path": "/uyVj4K1DiYpxxRpFYdN1ZWSBJ2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 244082376, "overview": "A newly married couple who, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.", "video": false, "id": 14306, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Marley & Me", "tagline": "Heel the love", "vote_count": 307, "homepage": "http://marleyandmemovie.com/", "belongs_to_collection": {"backdrop_path": "/gRoCEiWVcTsV0HxWIezuhVoDiAa.jpg", "poster_path": "/2GTOEdjaUbElrXhH0XhOADDoZxf.jpg", "id": 230532, "name": "Marley & Me Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0822832", "adult": false, "backdrop_path": "/xu54k4O5F9OlLWncWmXtyQO9Uyj.jpg", "production_companies": [{"name": "Dune Entertainment III", "id": 6332}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "Sunswept Entertainment", "id": 5219}], "release_date": "2008-12-25", "popularity": 0.768212781083633, "original_title": "Marley & Me", "budget": 60000000, "cast": [{"name": "Owen Wilson", "character": "John Grogan", "id": 887, "credit_id": "52fe45e49251416c750660ff", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Jennifer Grogan", "id": 4491, "credit_id": "52fe45e49251416c75066103", "cast_id": 2, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Eric Dane", "character": "Sebastian Tunney", "id": 58115, "credit_id": "52fe45e49251416c75066107", "cast_id": 3, "profile_path": "/l0O73xzcQqmlVr8ACX5n9C7PYYC.jpg", "order": 2}, {"name": "Kathleen Turner", "character": "Ms. Kornblut", "id": 3391, "credit_id": "52fe45e49251416c7506610b", "cast_id": 4, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 3}, {"name": "Alan Arkin", "character": "Arnie Klein", "id": 1903, "credit_id": "52fe45e49251416c7506610f", "cast_id": 5, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 4}, {"name": "Nathan Gamble", "character": "Patrick (Age 10)", "id": 18052, "credit_id": "52fe45e49251416c75066125", "cast_id": 9, "profile_path": "/zn5ueTFn51JQMzyu5aoIpVMfb48.jpg", "order": 5}, {"name": "Haley Bennett", "character": "Lisa", "id": 58754, "credit_id": "52fe45e49251416c75066129", "cast_id": 10, "profile_path": "/wYmPPXn61F1ecMwIFF8AGla8pKQ.jpg", "order": 6}, {"name": "Ann Dowd", "character": "Dr. Platt", "id": 43366, "credit_id": "52fe45e49251416c7506612d", "cast_id": 11, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 7}, {"name": "Clarke Peters", "character": "Editor", "id": 61011, "credit_id": "52fe45e49251416c75066131", "cast_id": 12, "profile_path": "/7a3OTcJlncY32LDvdTjLS6bTMxh.jpg", "order": 8}, {"name": "Finley Jacobsen", "character": "Conor (Age 8)", "id": 965819, "credit_id": "52fe45e49251416c75066135", "cast_id": 13, "profile_path": "/4dEyL8uoHqf8lqDjPwW2QqRR25q.jpg", "order": 9}, {"name": "Lucy Merriam", "character": "Colleen (Age 5)", "id": 979104, "credit_id": "52fe45e49251416c75066139", "cast_id": 14, "profile_path": "/mmNNDIeuOjnZhTueC6tQTIGjpRn.jpg", "order": 10}, {"name": "Bryce Robinson", "character": "Patrick (Age 7)", "id": 204629, "credit_id": "52fe45e49251416c7506613d", "cast_id": 15, "profile_path": "/12H91Rs1ux1hoWzxAjN9a14Vtmb.jpg", "order": 11}, {"name": "Ben Hyland", "character": "Conor (Age 5)", "id": 979105, "credit_id": "52fe45e49251416c75066141", "cast_id": 16, "profile_path": "/g32doECKvHzsYJPmv8jr0CqY400.jpg", "order": 12}, {"name": "Sarah O'Kelly", "character": "Neighbor Mom", "id": 1077801, "credit_id": "52fe45e49251416c75066145", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Keith Hudson", "character": "Big Guy", "id": 76540, "credit_id": "52fe45e49251416c75066149", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Haley Hudson", "character": "Debby", "id": 159985, "credit_id": "52fe45e49251416c7506614d", "cast_id": 19, "profile_path": "/4He22Zr4W5w2oHUzqnAnxtNe1fa.jpg", "order": 15}, {"name": "Tom Irwin", "character": "Dr. Sherman", "id": 27544, "credit_id": "52fe45e49251416c75066151", "cast_id": 20, "profile_path": "/8veWAQr2kXYL3EP4ZkAjJhVcZGq.jpg", "order": 16}, {"name": "Sandy Martin", "character": "Lori", "id": 53931, "credit_id": "52fe45e59251416c75066159", "cast_id": 22, "profile_path": "/WfdT2V1DxUvoBlgUzeCVq340IH.jpg", "order": 18}, {"name": "Joyce Van Patten", "character": "Mrs. Butterly", "id": 14108, "credit_id": "52fe45e59251416c7506615d", "cast_id": 23, "profile_path": "/wEUXn5Zgz88SZlTLZPrecfxGFOO.jpg", "order": 19}, {"name": "Zabryna Guevara", "character": "OB-GYN Nurse", "id": 171955, "credit_id": "52fe45e59251416c75066161", "cast_id": 24, "profile_path": "/n2BnG5lNW5Bxj4c27L4DcUb9HM8.jpg", "order": 20}, {"name": "Megan Grace", "character": "Secretary", "id": 1077803, "credit_id": "52fe45e59251416c75066165", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Haley Higgins", "character": "Shannon", "id": 1077804, "credit_id": "52fe45e59251416c75066169", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Ana Ayora", "character": "Viviana", "id": 1077805, "credit_id": "52fe45e59251416c7506616d", "cast_id": 27, "profile_path": "/wgGn3cdDLE34d2bpBEQ2SyuEuyb.jpg", "order": 23}, {"name": "Matthew J. Walters", "character": "Billy", "id": 1077806, "credit_id": "52fe45e59251416c75066171", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Nicole Herold", "character": "Sunbather", "id": 1077807, "credit_id": "52fe45e59251416c75066175", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Paul Tei", "character": "Dude", "id": 208043, "credit_id": "52fe45e59251416c75066179", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "Gaston Renaud", "character": "Metro Reporter", "id": 1077809, "credit_id": "52fe45e59251416c7506617d", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Angelina Assereto", "character": "Waitress", "id": 1025968, "credit_id": "52fe45e59251416c75066181", "cast_id": 32, "profile_path": "/qePNBNokzs1ysjHTe26YG5w5MuB.jpg", "order": 28}, {"name": "Emmett Robin", "character": "Boy", "id": 1077810, "credit_id": "52fe45e59251416c75066185", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Lisa Varga", "character": "Still Photographer", "id": 915692, "credit_id": "52fe45e59251416c75066189", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Dylan Henry", "character": "Patrick (Age 3)", "id": 1077811, "credit_id": "52fe45e59251416c7506618d", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Stephen Lee Davis", "character": "Neighbor Steve", "id": 1077813, "credit_id": "52fe45e59251416c75066191", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Michael Baskin", "character": "Party Guy Michael", "id": 939760, "credit_id": "52fe45e59251416c75066195", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Bradley Frishman", "character": "Patrick (Age 20 Months)", "id": 1077814, "credit_id": "52fe45e59251416c75066199", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Eric Conger", "character": "Newscaster", "id": 992174, "credit_id": "52fe45e59251416c7506619d", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Alec Mapa", "character": "Jorge", "id": 12224, "credit_id": "54edd8f39251413ae8001635", "cast_id": 40, "profile_path": "/e6Lj0IihgcmBw6FuzU5y8toEREq.jpg", "order": 36}], "directors": [{"name": "David Frankel", "department": "Directing", "job": "Director", "credit_id": "52fe45e49251416c75066115", "profile_path": "/l71Hbg4JVoo7GiVZc5PGthmNrdu.jpg", "id": 5065}], "vote_average": 6.5, "runtime": 115}, "243683": {"poster_path": "/zjzD9DLYNThg3JnPJJOxZc0sxhO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86165646, "overview": "All-stars from the previous Step Up installments come together in glittering Las Vegas, battling for a victory that could define their dreams and their careers.", "video": false, "id": 243683, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Step Up All In", "tagline": "Every Step Has Led To This", "vote_count": 155, "homepage": "http://stepupmovie.com/", "belongs_to_collection": {"backdrop_path": "/3jr0rQcsWyfqBlmzE0h0igjJohS.jpg", "poster_path": "/vGZB6adfSbTElRcPRzfD40xGsYt.jpg", "id": 86092, "name": "Step Up Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2626350", "adult": false, "backdrop_path": "/24uuwm3w99OYkV6qlfVfbG1IzKR.jpg", "production_companies": [{"name": "Summit Entertainment, LLC", "id": 3250}, {"name": "Lionsgate", "id": 1632}], "release_date": "2014-07-25", "popularity": 2.5190206817126, "original_title": "Step Up All In", "budget": 0, "cast": [{"name": "Ryan Guzman", "character": "Sean", "id": 932091, "credit_id": "52fe4ee1c3a36847f82adffb", "cast_id": 1, "profile_path": "/yJR4t5PlBdsiPAP9JdGjqomkVv7.jpg", "order": 0}, {"name": "Briana Evigan", "character": "Andie", "id": 54499, "credit_id": "52fe4ee1c3a36847f82adfff", "cast_id": 2, "profile_path": "/aCNDUEvMJYofz9EzIguET7KRfqT.jpg", "order": 1}, {"name": "Stephen Boss", "character": "Jason", "id": 110743, "credit_id": "52fe4ee1c3a36847f82ae003", "cast_id": 3, "profile_path": "/5mGP9IXwtmCFAK8dSiOVaFxjSRM.jpg", "order": 2}, {"name": "Misha Gabriel", "character": "Eddy", "id": 1278721, "credit_id": "52fe4ee1c3a36847f82ae007", "cast_id": 4, "profile_path": "/pNlaafa667jsNhB4ehxLKyFyHZy.jpg", "order": 3}, {"name": "Izabella Miko", "character": "Alexa", "id": 59592, "credit_id": "52fe4ee1c3a36847f82ae00b", "cast_id": 5, "profile_path": "/y17WPWE0tOFroVttwayzU3Q2Mxb.jpg", "order": 4}, {"name": "Alyson Stoner", "character": "Camille", "id": 58965, "credit_id": "52fe4ee1c3a36847f82ae00f", "cast_id": 6, "profile_path": "/h4zNQl27UeWzAls6iKk3zPZPLV9.jpg", "order": 5}, {"name": "Adam G. Sevani", "character": "Moose", "id": 54503, "credit_id": "52fe4ee1c3a36847f82ae013", "cast_id": 7, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 6}, {"name": "Chadd Smith", "character": "Vladd", "id": 1341648, "credit_id": "53c477c50e0a261df7000375", "cast_id": 10, "profile_path": "/aAFFe4w9TbPTjfuBRt3rZAR96bG.jpg", "order": 7}, {"name": "Christopher Scott", "character": "Hair", "id": 1341649, "credit_id": "53c478160e0a261df70003ae", "cast_id": 11, "profile_path": "/xqIgvt7rqj1Id0wPiCz8wh41z3s.jpg", "order": 8}, {"name": "Chaton Anderson", "character": "Sophie", "id": 73410, "credit_id": "53c478380e0a261e03000397", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Mari Koda", "character": "Jenny Kido", "id": 1189078, "credit_id": "53c478560e0a261e080003b5", "cast_id": 13, "profile_path": "/oFrTgN8bhNmHSFY2PN5MISLa2IL.jpg", "order": 10}, {"name": "Stephen Stevo Jones", "character": "Jasper", "id": 1290588, "credit_id": "54897f1ec3a3686f4e0014d5", "cast_id": 16, "profile_path": "/7nWO9auqUfPOhLQGS7BTW7coLI3.jpg", "order": 11}, {"name": "David Shreibman", "character": "Chad", "id": 1397742, "credit_id": "5489811892514161c70015da", "cast_id": 17, "profile_path": "/jYgtyJ0wqm2JaKPnKo9GaduYoQx.jpg", "order": 12}, {"name": "Luis Rosado", "character": "Monster", "id": 1148762, "credit_id": "54898863c3a3686f4e0015eb", "cast_id": 18, "profile_path": "/3WQyLA5js8eioERwZBNdCLlejdd.jpg", "order": 13}, {"name": "Facundo Lombard", "character": "Marcos Santiago", "id": 1397762, "credit_id": "548991acc3a3687b91001530", "cast_id": 19, "profile_path": "/dixi9Cn16IUpAHR8pV1jamMVEjw.jpg", "order": 14}, {"name": "Mart\u00edn Lombard", "character": "Martin Santiago", "id": 1397768, "credit_id": "5489938392514161d0001685", "cast_id": 20, "profile_path": "/90JgwlpMJK0YMvK1GC9pL93phe9.jpg", "order": 15}, {"name": "Parris Goebel", "character": "Violet", "id": 1397770, "credit_id": "5489962692514161cc0016bf", "cast_id": 21, "profile_path": null, "order": 16}, {"name": "Cyrus Spencer", "character": "Gauge", "id": 1397772, "credit_id": "548996d492514161d3001712", "cast_id": 22, "profile_path": null, "order": 17}, {"name": "Karin Konoval", "character": "Ana", "id": 58395, "credit_id": "5489980fc3a3686f58001739", "cast_id": 23, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 18}, {"name": "Frank Crudele", "character": "Boris", "id": 120323, "credit_id": "54899ac2c3a3686f5b001615", "cast_id": 24, "profile_path": "/p8lLsWDs2nRdySsr47SpZ1Id75X.jpg", "order": 19}, {"name": "Jay Brazeau", "character": "Mr. McGowan", "id": 63791, "credit_id": "54899b04c3a3686f5500181d", "cast_id": 25, "profile_path": "/oSFswqMxjLCAwVpEG2yK6NzLUiP.jpg", "order": 20}, {"name": "Dzajna 'Jaja' Vankov\u00e1", "character": "Robot Girl", "id": 1397782, "credit_id": "54899bd8c3a3686f4e001755", "cast_id": 26, "profile_path": null, "order": 21}, {"name": "Jenny Dailey", "character": "Grim Knight's Hot Twin #1", "id": 1397787, "credit_id": "54899de192514161d000175c", "cast_id": 27, "profile_path": null, "order": 22}, {"name": "Jayme Rae Dailey", "character": "Grim Knight's Hot Twin #2", "id": 1397789, "credit_id": "54899e6d92514161cc00175d", "cast_id": 28, "profile_path": null, "order": 23}, {"name": "Elizabeth Weinstein", "character": "Casting Agent", "id": 172883, "credit_id": "5489a0e292514161d000179e", "cast_id": 29, "profile_path": "/yN3g7tFMdSi4n0Sty4XdV91c8Kn.jpg", "order": 24}, {"name": "Viv Leacock", "character": "Bartender (Club)", "id": 60601, "credit_id": "5489a1a292514161d50017f8", "cast_id": 30, "profile_path": "/65ey92fHi13NBpvFLSsm7GWAXRL.jpg", "order": 25}, {"name": "Leah Christ", "character": "Model #1", "id": 1397794, "credit_id": "5489a213c3a3686f58001843", "cast_id": 31, "profile_path": "/yC66Bsr88HaaCCno0lNls3sbrSR.jpg", "order": 26}, {"name": "Fiona Vroom", "character": "Assistant Stylist", "id": 1397812, "credit_id": "5489b44992514161d3001995", "cast_id": 32, "profile_path": "/cnPbymf9M9Oxut1OiP0IPDuV5sp.jpg", "order": 27}, {"name": "Laura Soltis", "character": "Stylist", "id": 59230, "credit_id": "5489b73092514161c900192a", "cast_id": 33, "profile_path": "/eG0G2b2KD56z670KKHFbClAMG9n.jpg", "order": 28}, {"name": "Anthony Joseph", "character": "Bellman #2", "id": 1398051, "credit_id": "548aa1aac3a3680724000d9c", "cast_id": 34, "profile_path": null, "order": 29}, {"name": "Yoshiharu Hashimoto", "character": "Kido's Uncle", "id": 1398052, "credit_id": "548aa26b9251412608000ec4", "cast_id": 35, "profile_path": null, "order": 30}, {"name": "Tae Helgeth", "character": "Kid's Aunt", "id": 1398053, "credit_id": "548aa37dc3a3686dc5000bbe", "cast_id": 36, "profile_path": null, "order": 31}, {"name": "Fulvio Cecere", "character": "Uncle (Pizza Place)", "id": 65808, "credit_id": "548aa4e0c3a368071d000ec2", "cast_id": 37, "profile_path": "/a6jvKeyNWuMHDI5YKvciNlJDqST.jpg", "order": 32}, {"name": "Allie Meixner", "character": "Dancing Bachelorette", "id": 1398054, "credit_id": "548aa6c09251412615000e06", "cast_id": 38, "profile_path": "/6o1Yz0srVnn7PvpIg3394LpmR4t.jpg", "order": 33}, {"name": "Peter Newman", "character": "Interviewer", "id": 1398056, "credit_id": "548aa7b99251414fa2000d53", "cast_id": 39, "profile_path": null, "order": 34}, {"name": "Patricia Mayen-Salazar", "character": "Maid", "id": 158441, "credit_id": "548aa9f7c3a368071400108a", "cast_id": 40, "profile_path": null, "order": 35}, {"name": "Graeme Duffy", "character": "Ad Agency Executive #1", "id": 116972, "credit_id": "548aab6b925141260e000fe4", "cast_id": 41, "profile_path": "/a3M42NdkydMXgASfez3DlMWgRGa.jpg", "order": 36}, {"name": "Jill Morrison", "character": "Ad Agency Executive #2", "id": 203294, "credit_id": "548aacc09251412611000ddb", "cast_id": 42, "profile_path": "/2uqJoGoRa5uhwjdvb7w88JT7Xr8.jpg", "order": 37}, {"name": "Christie Laing", "character": "Hotel Executive", "id": 168554, "credit_id": "548aad5cc3a3680724000e72", "cast_id": 43, "profile_path": "/vdhQtqfz6FooxMEZbjXW2U1j4eD.jpg", "order": 38}, {"name": "Aason Nadjiwan", "character": "Voodoo Dancer", "id": 1398061, "credit_id": "548aad8d925141261b000f3d", "cast_id": 44, "profile_path": null, "order": 39}, {"name": "Hayden Fong", "character": "Voodoo Dancer", "id": 1398062, "credit_id": "548aade1c3a36837bb000d7d", "cast_id": 45, "profile_path": null, "order": 40}, {"name": "Mackenzie Green", "character": "Voodoo Dancer", "id": 1398063, "credit_id": "548aae619251412611000dff", "cast_id": 46, "profile_path": null, "order": 41}, {"name": "Chelsee Albo", "character": "Fire Dancer", "id": 1398064, "credit_id": "548aaeaa925141261b000f51", "cast_id": 47, "profile_path": null, "order": 42}, {"name": "Carly Louth", "character": "Fire Dancer", "id": 1398065, "credit_id": "548aaeda9251412606001048", "cast_id": 48, "profile_path": null, "order": 43}, {"name": "Marc Inniss", "character": "MOB Dancer", "id": 1398066, "credit_id": "548aaf71c3a3680724000e98", "cast_id": 49, "profile_path": "/bDmUPzT6Y6O12oT640jN9MEjaMo.jpg", "order": 44}, {"name": "Nolan Padilla", "character": "MOB Dancer", "id": 1398067, "credit_id": "548ab0959251412618000f30", "cast_id": 50, "profile_path": null, "order": 45}, {"name": "Phillip Chbeeb", "character": "MOB Dancer", "id": 1398068, "credit_id": "548ab158c3a3680728000eab", "cast_id": 51, "profile_path": "/2XrTJfgyLDOTdsdXuPMNdCQEXDg.jpg", "order": 46}, {"name": "Bianca Brewton", "character": "MOB Dancer", "id": 1290631, "credit_id": "548ab2979251412615000efc", "cast_id": 52, "profile_path": null, "order": 47}, {"name": "Tony Bellissimo", "character": "MOB Dancer", "id": 1398069, "credit_id": "548ab310c3a3680716000ee6", "cast_id": 53, "profile_path": "/943MEFcvwv2ONDAd7e1cKA0TSJP.jpg", "order": 48}, {"name": "Josue Anthony", "character": "MOB Dancer", "id": 1398070, "credit_id": "548ab485925141261b000fd1", "cast_id": 54, "profile_path": null, "order": 49}, {"name": "Brandy Lamkin", "character": "MOB Dancer", "id": 1398073, "credit_id": "548ab5eac3a3680716000f33", "cast_id": 55, "profile_path": null, "order": 50}, {"name": "Brittny Sugarman", "character": "MOB Dancer", "id": 1290652, "credit_id": "548ab68e9251412615000f6c", "cast_id": 56, "profile_path": null, "order": 51}, {"name": "Celestina Aladekoba", "character": "Celestina", "id": 1234191, "credit_id": "548ab8bdc3a3680724000f5f", "cast_id": 57, "profile_path": "/cC4ogX4QInjkCSSkTilh2HceXRH.jpg", "order": 52}, {"name": "Brandon Shaw", "character": "Grim Knight Dancer", "id": 1398106, "credit_id": "548ac53ec3a36807280010a0", "cast_id": 58, "profile_path": null, "order": 53}, {"name": "Emilio Dosal", "character": "Grim Knight Dancer", "id": 1398109, "credit_id": "548ac5f2925141261b0011a2", "cast_id": 59, "profile_path": null, "order": 54}, {"name": "Comfort Fedoke", "character": "Grim Knight Dancer", "id": 964776, "credit_id": "548ac81cc3a36807240010d6", "cast_id": 60, "profile_path": "/yYYxj2dpmkH68sU0U8psY1wewlF.jpg", "order": 55}, {"name": "Kim Marko Germar", "character": "Grim Knight Dancer", "id": 1398113, "credit_id": "548ac877c3a36807280010f9", "cast_id": 61, "profile_path": null, "order": 56}, {"name": "Raymond Alexander Cham Jr.", "character": "Grim Knight Dancer", "id": 1398114, "credit_id": "548ac942c3a368071400143c", "cast_id": 62, "profile_path": "/gjLCFmJu7AKZTXAcgBh2pTgIgbe.jpg", "order": 57}, {"name": "Nicholas Stewart", "character": "Grim Knight Dancer", "id": 1398116, "credit_id": "548aca8ec3a36837bb00102f", "cast_id": 63, "profile_path": null, "order": 58}, {"name": "Gui DaSilva-Greene", "character": "Grim Knight Dancer", "id": 1398122, "credit_id": "548acbd192514126060012ed", "cast_id": 64, "profile_path": "/wQdzsChmkxLcVQG5GIxOSfGqbW8.jpg", "order": 59}, {"name": "Jeffrey 'Machine' McCann", "character": "Grim Knight Dancer", "id": 1398124, "credit_id": "548acc9a925141260e001376", "cast_id": 65, "profile_path": null, "order": 60}, {"name": "Jesse 'Casper' Brown", "character": "Grim Knight Dancer", "id": 1398129, "credit_id": "548acde9925141260600133f", "cast_id": 66, "profile_path": "/zzcC8wPzmZ8jyAyqiP53enF99iH.jpg", "order": 61}, {"name": "Janick Arseneau", "character": "Divine Intention Dancer", "id": 1398138, "credit_id": "548acf74c3a36807120013a9", "cast_id": 67, "profile_path": null, "order": 62}, {"name": "Julie Dombrowski", "character": "Divine Intention Dancer", "id": 1398141, "credit_id": "548acfcec3a36807120013b9", "cast_id": 68, "profile_path": null, "order": 63}, {"name": "Sarah Katie Holmes", "character": "Divine Intention Dancer", "id": 1398143, "credit_id": "548ad010c3a36807120013c1", "cast_id": 69, "profile_path": null, "order": 64}, {"name": "Erika Kurata-Prevost", "character": "Divine Intention Dancer", "id": 1398147, "credit_id": "548ad05b92514126180012b9", "cast_id": 70, "profile_path": null, "order": 65}, {"name": "Marina Bastarache", "character": "Divine Intention Dancer", "id": 1398148, "credit_id": "548ad0e09251414fa2001158", "cast_id": 71, "profile_path": null, "order": 66}, {"name": "Edith Collin-Marcoux", "character": "Divine Intention Dancer", "id": 1398150, "credit_id": "548ad120c3a36837bb001111", "cast_id": 72, "profile_path": null, "order": 67}, {"name": "Adrienne Chan", "character": "Divine Intention Dancer", "id": 1398154, "credit_id": "548ad1909251412608001383", "cast_id": 73, "profile_path": null, "order": 68}, {"name": "Tiger Kirchharz", "character": "Sweet Beaches Dancer", "id": 1398158, "credit_id": "548ad21fc3a3686dc5001065", "cast_id": 74, "profile_path": null, "order": 69}, {"name": "Lorella Boccia", "character": "Sweet Beaches Dancer", "id": 1398162, "credit_id": "548ad27f9251414fa2001180", "cast_id": 75, "profile_path": null, "order": 70}, {"name": "Kenny Mugisha", "character": "Sweet Beaches Dancer", "id": 1398165, "credit_id": "548ad2fcc3a3686dc500107e", "cast_id": 76, "profile_path": null, "order": 71}, {"name": "Brian Yang", "character": "Sweet Beaches Dancer", "id": 1252034, "credit_id": "548ad4c6c3a3686dc50010a7", "cast_id": 77, "profile_path": "/dtQZAbEvutcXPJzbn26w8GMLgkL.jpg", "order": 72}, {"name": "Teya Wild", "character": "Sweet Beaches Dancer", "id": 1398169, "credit_id": "548ad5749251412606001408", "cast_id": 78, "profile_path": "/JeR7prd3Ujirim3QaXJhTIAXAc.jpg", "order": 73}, {"name": "Lorena Liebman", "character": "Blueprint Dancer", "id": 1398170, "credit_id": "548ad5d3c3a368071600128c", "cast_id": 79, "profile_path": null, "order": 74}, {"name": "Nicolas Begin", "character": "Blueprint Dancer", "id": 1398172, "credit_id": "548ad64a925141261b001365", "cast_id": 80, "profile_path": null, "order": 75}, {"name": "Derek Rice", "character": "Blueprint Dancer", "id": 1398173, "credit_id": "548ad686925141260e0014d1", "cast_id": 81, "profile_path": null, "order": 76}, {"name": "Ian Arcudi", "character": "Blueprint Dancer", "id": 1398175, "credit_id": "548ad6be925141260e0014df", "cast_id": 82, "profile_path": null, "order": 77}, {"name": "Saxon Fraser", "character": "Blueprint Dancer", "id": 1398179, "credit_id": "548ad71cc3a36807160012c2", "cast_id": 83, "profile_path": null, "order": 78}, {"name": "Handy Yacinthe", "character": "Blueprint Dancer", "id": 1398181, "credit_id": "548ad770c3a368071d001407", "cast_id": 84, "profile_path": null, "order": 79}, {"name": "Mecdy Jean-Pierre", "character": "Blueprint Dancer", "id": 1398183, "credit_id": "548ad7acc3a3680714001616", "cast_id": 85, "profile_path": null, "order": 80}, {"name": "Vincent Poirier", "character": "Blueprint Dancer", "id": 1398191, "credit_id": "548ad872c3a36807160012de", "cast_id": 86, "profile_path": null, "order": 81}, {"name": "Axelle Munezero", "character": "Blueprint Dancer", "id": 1398192, "credit_id": "548ad8b6c3a3680712001492", "cast_id": 87, "profile_path": null, "order": 82}, {"name": "Martine Bruneau", "character": "Blueprint Dancer", "id": 1398195, "credit_id": "548ad906c3a368071d001439", "cast_id": 88, "profile_path": null, "order": 83}, {"name": "Marc Antoine Millette", "character": "Petronas Dancer", "id": 1398196, "credit_id": "548ad9489251412606001491", "cast_id": 89, "profile_path": null, "order": 84}, {"name": "Stephane Charbonneau", "character": "Petronas Dancer", "id": 1398197, "credit_id": "548ad98a9251414fa2001243", "cast_id": 90, "profile_path": null, "order": 85}, {"name": "Olivier Blais", "character": "Petronas Dancer", "id": 1398199, "credit_id": "548ad9c4c3a3686dc5001152", "cast_id": 91, "profile_path": null, "order": 86}, {"name": "Max Paradis", "character": "Petronas Dancer", "id": 1398200, "credit_id": "548ada0cc3a368071d001460", "cast_id": 92, "profile_path": null, "order": 87}, {"name": "Eric Ardila Quinonez", "character": "Petronas Dancer", "id": 1398201, "credit_id": "548ada45c3a3686dc5001161", "cast_id": 93, "profile_path": null, "order": 88}, {"name": "Eric Martel", "character": "Tech-Stylz Dancer", "id": 1398202, "credit_id": "548ada8fc3a36807240012b7", "cast_id": 94, "profile_path": null, "order": 89}, {"name": "Mathieu Dumoulin", "character": "Tech-Stylz Dancer", "id": 1398203, "credit_id": "548adad3c3a368071600133a", "cast_id": 95, "profile_path": null, "order": 90}, {"name": "Daniel Morrison", "character": "Tech-Stylz Dancer", "id": 1398204, "credit_id": "548adc45925141260e001598", "cast_id": 96, "profile_path": null, "order": 91}, {"name": "Mark Siller", "character": "Tech-Stylz Dancer", "id": 1398205, "credit_id": "548add1d925141260600150a", "cast_id": 97, "profile_path": null, "order": 92}, {"name": "Dean Placzek", "character": "Tech-Stylz Dancer", "id": 1398206, "credit_id": "548add54c3a368072800131c", "cast_id": 98, "profile_path": null, "order": 93}, {"name": "Lawrence Devera", "character": "Poreotics Dancer", "id": 1398207, "credit_id": "548add9092514126080014ec", "cast_id": 99, "profile_path": null, "order": 94}, {"name": "Can Nguyen", "character": "Poreotics Dancer", "id": 1398211, "credit_id": "548ade47c3a3680714001715", "cast_id": 100, "profile_path": null, "order": 95}, {"name": "Charles Nguyen", "character": "Poreotics Dancer", "id": 1398213, "credit_id": "548adee19251412618001490", "cast_id": 101, "profile_path": null, "order": 96}, {"name": "Chad Mayate", "character": "Poreotics Dancer", "id": 1398214, "credit_id": "548adf30c3a3680724001344", "cast_id": 102, "profile_path": null, "order": 97}, {"name": "Justin Valles", "character": "Poreotics Dancer", "id": 1398215, "credit_id": "548adf7ec3a3680728001352", "cast_id": 103, "profile_path": null, "order": 98}], "directors": [{"name": "Trish Sie", "department": "Directing", "job": "Director", "credit_id": "52fe4ee1c3a36847f82ae019", "profile_path": null, "id": 1278722}], "vote_average": 7.1, "runtime": 112}, "243684": {"poster_path": "/vXo8FhmIf8cxVQL7S3VB4xBSQL2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 461162, "overview": "Follows the story of a group of high school teenagers and their parents as they attempt to navigate the many ways the internet has changed their relationships, their communication, their self-image, and their love lives.", "video": false, "id": 243684, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Men, Women & Children", "tagline": "Discover how little you know about the people you know.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3179568", "adult": false, "backdrop_path": "/4IamAvByBWnclmbwlnZB8otMyB7.jpg", "production_companies": [{"name": "Right of Way Films", "id": 32157}, {"name": "Paramount Pictures", "id": 4}], "release_date": "2014-10-17", "popularity": 1.41787034032835, "original_title": "Men, Women & Children", "budget": 0, "cast": [{"name": "Rosemarie DeWitt", "character": "Rachel Truby", "id": 14892, "credit_id": "52fe4ee1c3a36847f82ae059", "cast_id": 4, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Patricia Beltmeyer", "id": 9278, "credit_id": "52fe4ee1c3a36847f82ae05d", "cast_id": 5, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Judy Greer", "character": "Joan Clint", "id": 20750, "credit_id": "52fe4ee1c3a36847f82ae061", "cast_id": 6, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 2}, {"name": "Dean Norris", "character": "Kent Mooney", "id": 14329, "credit_id": "52fe4ee1c3a36847f82ae065", "cast_id": 7, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 3}, {"name": "Adam Sandler", "character": "Don Truby", "id": 19292, "credit_id": "52fe4ee1c3a36847f82ae069", "cast_id": 8, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 4}, {"name": "Emma Thompson", "character": "(voice)", "id": 7056, "credit_id": "52fe4ee1c3a36847f82ae06d", "cast_id": 9, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 5}, {"name": "Olivia Crocicchia", "character": "Hannah Clint", "id": 172056, "credit_id": "52fe4ee1c3a36847f82ae071", "cast_id": 10, "profile_path": "/pRO0gxG1a9Pd5d7VuaX7GPo8g1m.jpg", "order": 6}, {"name": "Kaitlyn Dever", "character": "Brandy Beltmeyer", "id": 481337, "credit_id": "52fe4ee1c3a36847f82ae075", "cast_id": 11, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 7}, {"name": "Ansel Elgort", "character": "Tim Mooney", "id": 1159982, "credit_id": "52fe4ee1c3a36847f82ae079", "cast_id": 12, "profile_path": "/lKapN59YeY8CmTNviAAFyQ4aGdu.jpg", "order": 8}, {"name": "Elena Kampouris", "character": "Allison Doss", "id": 1278724, "credit_id": "52fe4ee1c3a36847f82ae07d", "cast_id": 13, "profile_path": "/aEUCTT2jsbtWqrI7kF3yKJRCBSO.jpg", "order": 9}, {"name": "Travis Tope", "character": "Chris Truby", "id": 1278725, "credit_id": "52fe4ee1c3a36847f82ae081", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "David Denman", "character": "Jim Vance", "id": 62562, "credit_id": "52fe4ee1c3a36847f82ae085", "cast_id": 15, "profile_path": "/rT1dvSLZjlfiZm7VvD1qEbvZ34O.jpg", "order": 11}, {"name": "Jason Douglas", "character": "Ray Beltmeyer", "id": 20496, "credit_id": "52fe4ee1c3a36847f82ae089", "cast_id": 16, "profile_path": "/u0crUL9bnGRdaiofB2MzYvoOI4Y.jpg", "order": 12}, {"name": "Dennis Haysbert", "character": "", "id": 352, "credit_id": "52fe4ee1c3a36847f82ae08d", "cast_id": 17, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 13}, {"name": "Phil LaMarr", "character": "School Shrink", "id": 31549, "credit_id": "54088f8dc3a36858330012d0", "cast_id": 18, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 14}, {"name": "J.K. Simmons", "character": "Mr. Doss", "id": 18999, "credit_id": "54088facc3a3685818001411", "cast_id": 19, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 15}, {"name": "Timoth\u00e9e Chalamet", "character": "Danny Vance", "id": 1190668, "credit_id": "5472b054c3a36805d8001b1a", "cast_id": 20, "profile_path": "/modd4Fp0OCkEIgSTYcejZMxgPr1.jpg", "order": 16}, {"name": "Nick W. Nicholson", "character": "Mayor of East View (uncredited)", "id": 1429470, "credit_id": "54e7e9429251412ebd000c8d", "cast_id": 21, "profile_path": null, "order": 17}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4ee1c3a36847f82ae049", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.4, "runtime": 116}, "100042": {"poster_path": "/uoRqumEGSlDGnR3SrokqHhu55GK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "20 years after the dimwits set out on their first adventure, they head out in search of one of their long lost children in the hope of gaining a new kidney.", "video": false, "id": 100042, "genres": [{"id": 35, "name": "Comedy"}], "title": "Dumb and Dumber To", "tagline": "The Second Parts Are More Fools", "vote_count": 348, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/fdB86tl7SKIBWZzm0CbrYjOdE1K.jpg", "id": 96665, "name": "Dumb and Dumber Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2096672", "adult": false, "backdrop_path": "/pMNSiNT55XrxWPmoI5ytJyinRa8.jpg", "production_companies": [{"name": "Red Granite Pictures", "id": 19177}, {"name": "New Line Cinema", "id": 12}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Conundrum Entertainment", "id": 1156}], "release_date": "2014-11-14", "popularity": 7.78813453161764, "original_title": "Dumb and Dumber To", "budget": 0, "cast": [{"name": "Jim Carrey", "character": "Lloyd Christmas", "id": 206, "credit_id": "52fe49c8c3a36847f81a5ee7", "cast_id": 6, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Jeff Daniels", "character": "Harry Dunne", "id": 8447, "credit_id": "52fe49c8c3a36847f81a5eeb", "cast_id": 7, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 1}, {"name": "Rachel Melvin", "character": "Penny", "id": 1220838, "credit_id": "52fe49c8c3a36847f81a5eef", "cast_id": 8, "profile_path": "/hnJuutQi3EMewOP7Vxr1ajzqEn3.jpg", "order": 2}, {"name": "Kathleen Turner", "character": "Fraida", "id": 3391, "credit_id": "52fe49c8c3a36847f81a5ef3", "cast_id": 9, "profile_path": "/v29u1cYB9YWkYnliVTm9MGlVBrS.jpg", "order": 3}, {"name": "Brady Bluhm", "character": "Billy", "id": 77547, "credit_id": "52fe49c8c3a36847f81a5ef7", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Laurie Holden", "character": "Adele", "id": 8332, "credit_id": "52fe49c8c3a36847f81a5efb", "cast_id": 11, "profile_path": "/wGXQYDu0xkWDYUDM9d9UmfUGNOm.jpg", "order": 5}, {"name": "Steve Tom", "character": "Dr. Pinchelow", "id": 58512, "credit_id": "52fe49c8c3a36847f81a5eff", "cast_id": 12, "profile_path": "/ptnGjngOH5rbGDDewk5OESqxs3A.jpg", "order": 6}, {"name": "Rob Riggle", "character": "Travis / Captain Lippincott", "id": 71403, "credit_id": "52fe49c8c3a36847f81a5f03", "cast_id": 13, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 7}, {"name": "Don Lake", "character": "Dr. Meldman", "id": 27530, "credit_id": "545f6ec4c3a3680b5d000605", "cast_id": 15, "profile_path": "/zwm0HhAhxay84Co22rSkHwhJPBG.jpg", "order": 8}, {"name": "Patricia French", "character": "Ms. Sourpuss", "id": 128207, "credit_id": "545f6ed90e0a264d600020aa", "cast_id": 16, "profile_path": "/gr8JifkoddGbSanIPVbBjHWUbrD.jpg", "order": 9}, {"name": "Gregory Fears", "character": "Man at Gas Station", "id": 1383478, "credit_id": "545f6ef30e0a261fbd008ff5", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Tembi Locke", "character": "Dr. Walcott", "id": 51699, "credit_id": "545f6f03c3a3685358008b7e", "cast_id": 18, "profile_path": "/853PZa1bQYGEie0RB9yZaM66QvF.jpg", "order": 11}, {"name": "Paul Blackthorne", "character": "Dr. Meldman", "id": 43231, "credit_id": "545f6f170e0a262359001c03", "cast_id": 19, "profile_path": "/cr11VQutjQCjPK8sq1ec08c04yw.jpg", "order": 12}, {"name": "Eddie Shin", "character": "Gordy", "id": 1215759, "credit_id": "545f6f2d0e0a26042c008cc6", "cast_id": 20, "profile_path": "/lYLFubBTj00nB9glBv9gQkwhlFE.jpg", "order": 13}, {"name": "Atkins Estimonds", "character": "Gus", "id": 1383480, "credit_id": "545f6f410e0a266177001527", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Tommy Snider", "character": "Tom", "id": 204419, "credit_id": "545f6f4cc3a3686e49001d90", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Lindsay Ayliffe", "character": "Professor Garabedian", "id": 1092419, "credit_id": "545f6f600e0a261fb30091aa", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Matthew Cardarople", "character": "Inventor No. 1", "id": 979412, "credit_id": "545f6f6f0e0a262ca20000db", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Bill Murray", "character": "Ice Pick", "id": 1532, "credit_id": "546b7620c3a3680d78001f47", "cast_id": 86, "profile_path": "/eb58HuFIrxS0zUmbmW4d8YXTbje.jpg", "order": 18}, {"name": "Grant James", "character": "Mr. Stainer", "id": 116433, "credit_id": "545f6f7d0e0a26042c008cd1", "cast_id": 25, "profile_path": "/sgOV6UORfBnba13gVlz38tnm7Wn.jpg", "order": 19}, {"name": "Taylor St. Clair", "character": "Mrs. Steiner", "id": 1382356, "credit_id": "545f6f8dc3a3680b58000650", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Erin Allin O'Reilly", "character": "Asylum Nurse No. 1", "id": 1224127, "credit_id": "545f6f9e0e0a26617700153c", "cast_id": 27, "profile_path": "/x35MI7gldVHupb6MPnRrjyT0seu.jpg", "order": 21}, {"name": "Tim Campione", "character": "Conference Attendee", "id": 1383481, "credit_id": "545f6faf0e0a266177001542", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Jennifer Cocker", "character": "Young Inventor", "id": 1383482, "credit_id": "545f6fbdc3a3680b5d000624", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Derrick Dean", "character": "Hospital Visitor", "id": 1383483, "credit_id": "545f6fcb0e0a26042c008cdc", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Garret H. Dumas", "character": "Conference Patron", "id": 1383484, "credit_id": "545f6fdbc3a368536200890e", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Shelton Foreman", "character": "Patron", "id": 1383486, "credit_id": "545f6fe5c3a3680b5a0006d9", "cast_id": 32, "profile_path": null, "order": 26}, {"name": "Jeff Matthew Glover", "character": "Orderly", "id": 1383487, "credit_id": "545f6ffc0e0a26617700154f", "cast_id": 33, "profile_path": null, "order": 27}, {"name": "William Goodrum", "character": "Prom Singer", "id": 60009, "credit_id": "545f7008c3a3680b5a0006e6", "cast_id": 34, "profile_path": null, "order": 28}, {"name": "Walter Hendrix III", "character": "Street Patron", "id": 1383490, "credit_id": "545f7021c3a3686cbb00404c", "cast_id": 35, "profile_path": null, "order": 29}, {"name": "Lauren Henneberg", "character": "Upscale Guest", "id": 1383491, "credit_id": "545f703a0e0a261fbd009021", "cast_id": 36, "profile_path": null, "order": 30}, {"name": "Michael Jaegers", "character": "Computer Convention Attendee", "id": 1383493, "credit_id": "545f704e0e0a26042c008cf0", "cast_id": 37, "profile_path": null, "order": 31}, {"name": "Angela Kerecz", "character": "Waitress", "id": 1285499, "credit_id": "545f705b0e0a264d600020d8", "cast_id": 38, "profile_path": "/pTsh8auk8614t2rghDD4waA6l7A.jpg", "order": 32}, {"name": "Aaron Kischnick", "character": "Ken Philanthropist", "id": 1383495, "credit_id": "545f706e0e0a261fb30091c4", "cast_id": 39, "profile_path": null, "order": 33}, {"name": "Rob Koebel", "character": "Officer Stone", "id": 1383496, "credit_id": "545f707dc3a3680b5a0006ee", "cast_id": 40, "profile_path": null, "order": 34}, {"name": "Taylor McPherson", "character": "Electronic Convention Attendee", "id": 1383498, "credit_id": "545f70960e0a266177001570", "cast_id": 41, "profile_path": null, "order": 35}, {"name": "David Pascua", "character": "Mariachi Trumpet Player", "id": 1383499, "credit_id": "545f70abc3a3685358008bad", "cast_id": 42, "profile_path": null, "order": 36}, {"name": "William R. Phillips", "character": "Waiter", "id": 1383501, "credit_id": "545f70b80e0a262359001c2e", "cast_id": 43, "profile_path": null, "order": 37}, {"name": "Josh Turner", "character": "KEN Convention Employee", "id": 1383502, "credit_id": "545f70ccc3a3685362008924", "cast_id": 44, "profile_path": null, "order": 38}, {"name": "Stefan Walker Armstrong", "character": "Audience Member", "id": 1383504, "credit_id": "545f70e1c3a3680b5a0006fa", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Walt Arnett", "character": "KEN Audience Member", "id": 1383505, "credit_id": "545f70ef0e0a262359001c36", "cast_id": 46, "profile_path": null, "order": 40}, {"name": "Paul Bednarz", "character": "KEN Convention Employee", "id": 1383507, "credit_id": "545f7101c3a3685358008bc2", "cast_id": 47, "profile_path": null, "order": 41}, {"name": "Erika Bierman", "character": "Fanny at Age 13", "id": 1383509, "credit_id": "545f711c0e0a261fbd00903a", "cast_id": 48, "profile_path": "/r5zw8kHfyDTk7zNd5pm2nkKE3CL.jpg", "order": 42}, {"name": "Derek Blankenship", "character": "Store Clerk", "id": 1383511, "credit_id": "545f712f0e0a261fb30091da", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Kassidy Claire", "character": "Fanny at Age 5", "id": 1383512, "credit_id": "545f713d0e0a261fb30091e2", "cast_id": 50, "profile_path": null, "order": 44}, {"name": "Jesse Clark", "character": "Club-Goer", "id": 1383514, "credit_id": "545f7149c3a3680b5d000659", "cast_id": 51, "profile_path": null, "order": 45}, {"name": "Carly Craig", "character": "Young Fraida", "id": 1020027, "credit_id": "545f7155c3a36841d3002685", "cast_id": 52, "profile_path": null, "order": 46}, {"name": "Bryan Dilbeck", "character": "DR Dilbeck", "id": 1235997, "credit_id": "545f7165c3a3680b5d000662", "cast_id": 53, "profile_path": null, "order": 47}, {"name": "Joe Foley", "character": "EMT", "id": 1309646, "credit_id": "545f716f0e0a262359001c45", "cast_id": 54, "profile_path": null, "order": 48}, {"name": "Abigail Gamache", "character": "Prom Attendee", "id": 1383515, "credit_id": "545f7183c3a3680b58000680", "cast_id": 55, "profile_path": null, "order": 49}, {"name": "Dalton E. Gray", "character": "Young Harry", "id": 1383516, "credit_id": "545f71920e0a262ca200012a", "cast_id": 56, "profile_path": null, "order": 50}, {"name": "Llauryn P. Hendrix", "character": "Conference Patron", "id": 1383517, "credit_id": "545f71cbc3a368536200893c", "cast_id": 57, "profile_path": null, "order": 51}, {"name": "Ron Hudson", "character": "Club Patron", "id": 1383518, "credit_id": "545f71d7c3a3680b5d00066a", "cast_id": 58, "profile_path": null, "order": 52}, {"name": "Kathlene Huslin", "character": "KEN Vendor", "id": 1383519, "credit_id": "545f71ebc3a3686cbb00408c", "cast_id": 59, "profile_path": null, "order": 53}, {"name": "Erick Reihs Jackson", "character": "Gas Station Patron", "id": 1383520, "credit_id": "545f71fdc3a36841d300269c", "cast_id": 60, "profile_path": null, "order": 54}, {"name": "Darien Johnson", "character": "KEN Convention Attendee", "id": 1383521, "credit_id": "545f720bc3a3686e49001def", "cast_id": 61, "profile_path": null, "order": 55}, {"name": "Jeffrey Karantza", "character": "Doctor", "id": 1383522, "credit_id": "545f72190e0a261fb90090c3", "cast_id": 62, "profile_path": null, "order": 56}, {"name": "Debi Kimsey", "character": "Knitting Lady on porch", "id": 1383523, "credit_id": "545f722bc3a3680b58000698", "cast_id": 63, "profile_path": null, "order": 57}, {"name": "Anthony R. McClara", "character": "Security Guard", "id": 1383524, "credit_id": "545f72400e0a264d6000211e", "cast_id": 64, "profile_path": null, "order": 58}, {"name": "Michael McCrudden", "character": "Audience Member", "id": 1383525, "credit_id": "545f724e0e0a26042c008d24", "cast_id": 65, "profile_path": null, "order": 59}, {"name": "Richard Melton", "character": "Chaperone", "id": 1383526, "credit_id": "545f725b0e0a264d60002126", "cast_id": 66, "profile_path": null, "order": 60}, {"name": "Maia Moss-Fife", "character": "Receptionist", "id": 1383527, "credit_id": "545f7269c3a368536200894d", "cast_id": 67, "profile_path": null, "order": 61}, {"name": "Ryan Nesset", "character": "Pedestrian", "id": 1383528, "credit_id": "545f7273c3a3686e49001df8", "cast_id": 68, "profile_path": null, "order": 62}, {"name": "Orbert Rogers", "character": "Park Patron", "id": 1383529, "credit_id": "545f727f0e0a264d6000212c", "cast_id": 69, "profile_path": null, "order": 63}, {"name": "Sade Shearer", "character": "Prom Attendee", "id": 1383530, "credit_id": "545f728cc3a3680b5a000737", "cast_id": 70, "profile_path": null, "order": 64}, {"name": "Dereck Smith", "character": "Convention Center Nerd", "id": 1383531, "credit_id": "545f729b0e0a262359001c66", "cast_id": 71, "profile_path": null, "order": 65}, {"name": "Jeff Sumner", "character": "Convention Official", "id": 1383532, "credit_id": "545f72ae0e0a262ca200014b", "cast_id": 72, "profile_path": null, "order": 66}, {"name": "Dave Walpole", "character": "KEN Converence Attendee", "id": 1383533, "credit_id": "545f72bcc3a3686e49001e01", "cast_id": 73, "profile_path": null, "order": 67}, {"name": "Dave Walpole", "character": "KEN Conference Attendee", "id": 1383533, "credit_id": "545f72c7c3a3680b5a000747", "cast_id": 74, "profile_path": null, "order": 68}, {"name": "Christina Michelle Williams", "character": "KEN Convention Employee", "id": 1383534, "credit_id": "545f72df0e0a261fbd00906c", "cast_id": 75, "profile_path": null, "order": 69}, {"name": "Brett Wyman", "character": "Inventor No. 2", "id": 1383535, "credit_id": "545f72ed0e0a261fbd009071", "cast_id": 76, "profile_path": null, "order": 70}, {"name": "Bennett Wayne Dean Sr.", "character": "Hospital Visitor", "id": 1204292, "credit_id": "545f72ff0e0a2661770015b9", "cast_id": 77, "profile_path": null, "order": 71}, {"name": "Doris Dean", "character": "Hospital Visitor", "id": 1383536, "credit_id": "545f730f0e0a26042c008d33", "cast_id": 78, "profile_path": null, "order": 72}, {"name": "John Deifer", "character": "Mental patient", "id": 1383537, "credit_id": "545f731dc3a3680b5d000687", "cast_id": 79, "profile_path": null, "order": 73}, {"name": "Jacklyn Edney", "character": "KEN Con Scientist", "id": 1383538, "credit_id": "545f732fc3a3685358008c04", "cast_id": 80, "profile_path": null, "order": 74}, {"name": "David Emmett", "character": "Hospital Visitor", "id": 1383539, "credit_id": "545f73390e0a2661770015c1", "cast_id": 81, "profile_path": null, "order": 75}, {"name": "Cody Mark Hanna", "character": "Audience Member", "id": 1383540, "credit_id": "545f7347c3a36841d30026d4", "cast_id": 82, "profile_path": null, "order": 76}, {"name": "Billy Boy Johnson", "character": "Scientist", "id": 1383541, "credit_id": "545f73530e0a264d60002150", "cast_id": 83, "profile_path": null, "order": 77}, {"name": "John Merical", "character": "Neighbor", "id": 1383542, "credit_id": "545f735fc3a3680b5d000690", "cast_id": 84, "profile_path": null, "order": 78}, {"name": "Barbara Prince", "character": "Street Patron", "id": 1309641, "credit_id": "545f736bc3a3686cbb0040b2", "cast_id": 85, "profile_path": null, "order": 79}, {"name": "June Shannon", "character": "Harry's Trailer Park Wife", "id": 1386858, "credit_id": "546c298092514130530008e2", "cast_id": 87, "profile_path": null, "order": 80}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe49c8c3a36847f81a5ecb", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe49c8c3a36847f81a5ed1", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.9, "runtime": 110}, "227306": {"poster_path": "/qvRHvtjNfvq0R0IwV2oVmW6DduS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.", "video": false, "id": 227306, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Unbroken", "tagline": "Survival. Resilience. Redemption", "vote_count": 244, "homepage": "http://www.unbrokenfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1809398", "adult": false, "backdrop_path": "/eSbKT3v3RKFRGeOmxJbZhIvrevR.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "3 Arts Entertainment", "id": 36390}, {"name": "Jolie Pas", "id": 39443}], "release_date": "2014-12-25", "popularity": 5.86279842476959, "original_title": "Unbroken", "budget": 65000000, "cast": [{"name": "Jack O'Connell", "character": "Louis Zamperini", "id": 85065, "credit_id": "52fe4e9d9251416c7515c84d", "cast_id": 11, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 0}, {"name": "Domhnall Gleeson", "character": "Russel Allen 'Phil' Phillips", "id": 93210, "credit_id": "52fe4e9d9251416c7515c845", "cast_id": 9, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 1}, {"name": "Garrett Hedlund", "character": "John Fitzgerald", "id": 9828, "credit_id": "52fe4e9d9251416c7515c849", "cast_id": 10, "profile_path": "/2UXqL30fM8ygySH0I5iy5RFx9Tp.jpg", "order": 2}, {"name": "Takamasa Ishihara", "character": "Mutsuhiro 'The Bird' Watanabe", "id": 1391420, "credit_id": "547a6ef592514150d1000397", "cast_id": 15, "profile_path": "/wg5qf8FzVgcTT1hr8qW1mUuXb0D.jpg", "order": 3}, {"name": "Finn Wittrock", "character": "Francis 'Mac' McNamara", "id": 168877, "credit_id": "52fe4e9d9251416c7515c851", "cast_id": 12, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 4}, {"name": "Jai Courtney", "character": "Hugh 'Cup' Cuppernell", "id": 224181, "credit_id": "547a6f8492514152220003e7", "cast_id": 16, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 5}, {"name": "Maddalena Ischiale", "character": "Louise Zamperini", "id": 1394424, "credit_id": "5480861ec3a36829ae0029fd", "cast_id": 24, "profile_path": "/9j8MflwWHuVonIaBg1wJcUoYjL6.jpg", "order": 6}, {"name": "Vincenzo Amato", "character": "Anthony Zamperini", "id": 20588, "credit_id": "5480866b9251416e81002c8d", "cast_id": 28, "profile_path": "/oIsX2gS7k4wGYspeQzhjxy2Jxnc.jpg", "order": 7}, {"name": "John Magaro", "character": "Frank A. Tinker", "id": 37154, "credit_id": "52fe4e9d9251416c7515c855", "cast_id": 13, "profile_path": "/v1SUpbMcu46dRBACoTnzkdfBgIn.jpg", "order": 8}, {"name": "Luke Treadaway", "character": "Miller", "id": 103351, "credit_id": "548085cd9251416e7e002e29", "cast_id": 19, "profile_path": "/uSROaOirY0WIBhz9fuIcroK1gA2.jpg", "order": 9}, {"name": "Louis McIntosh", "character": "Lt. William Harris", "id": 1394446, "credit_id": "548087d69251416e7e002e7d", "cast_id": 55, "profile_path": "/7ldhZGZ40FmaVX2BTifK3sLy8iJ.jpg", "order": 10}, {"name": "Ross Anderson", "character": "Blackie", "id": 1374534, "credit_id": "54808658c3a36829a3002d24", "cast_id": 27, "profile_path": "/ro1vTt7RGVq21LEfG8ilgU4J02m.jpg", "order": 11}, {"name": "C.J. Valleroy", "character": "Young Louis", "id": 1394425, "credit_id": "54808638c3a36829b5003599", "cast_id": 26, "profile_path": "/kTEaI0wQEsdaoZMrwkCshge7CAS.jpg", "order": 12}, {"name": "John D'Leo", "character": "Young Pete", "id": 1056523, "credit_id": "548085e8c3a36829b5003583", "cast_id": 21, "profile_path": "/aNjV02nk7DPIFllFYsFNAM4lZ9d.jpg", "order": 13}, {"name": "Alex Russell", "character": "Pete Zamperini", "id": 558466, "credit_id": "547a6f9992514150d10003bf", "cast_id": 17, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 14}, {"name": "Jordan Patrick Smith", "character": "Cliff", "id": 1394429, "credit_id": "548086ae9251416e78002cb1", "cast_id": 33, "profile_path": "/hojSqFG4889Mi81FaarYF47cTDY.jpg", "order": 15}, {"name": "Spencer Lofranco", "character": "Harry Brooks", "id": 1174927, "credit_id": "548085bf9251414d21002a1a", "cast_id": 18, "profile_path": "/i7SxEptxFjkFsVghBGIkPYQYMgu.jpg", "order": 16}, {"name": "Stephen J. Douglas", "character": "Clarence Douglas", "id": 1394448, "credit_id": "54808804c3a368299f0023b7", "cast_id": 59, "profile_path": "/z57qUsSaLaSxhs4ZMXhxYW2gdqN.jpg", "order": 17}, {"name": "Marcus Vanco", "character": "Lambert", "id": 1394447, "credit_id": "548087eec3a36829ae002a3c", "cast_id": 57, "profile_path": "/2KGjYqYpoNQzAmD9KXhGQ2ZOyST.jpg", "order": 18}, {"name": "Dylan James Watson", "character": "Green Hornet Engineer", "id": 1394431, "credit_id": "548086e0c3a36829b50035be", "cast_id": 37, "profile_path": "/2TwXltri7Ia8Urfo9Hsk3oAOiw4.jpg", "order": 19}, {"name": "Ryan Ahern", "character": "Glassman", "id": 970534, "credit_id": "5480877ec3a36817a5002b5a", "cast_id": 50, "profile_path": "/2tBMelAO96HXjgqgEa2KXMFeSCY.jpg", "order": 20}, {"name": "Ross Langley", "character": "Mitchell", "id": 1394444, "credit_id": "548087c6c3a368299f0023ac", "cast_id": 54, "profile_path": "/jk3FeEYklIm6cIBVCSrTirfbkTg.jpg", "order": 21}, {"name": "Michael Whalley", "character": "Stanley Pillsbury", "id": 212730, "credit_id": "548087339251414d21002a62", "cast_id": 44, "profile_path": "/yg9prbJYaJXIDrLM55caBvPgqTr.jpg", "order": 22}, {"name": "Sophie Dalah", "character": "Virginia", "id": 1394420, "credit_id": "548085dac3a36829a7002cd6", "cast_id": 20, "profile_path": null, "order": 23}, {"name": "Morgan Griffin", "character": "Cynthia Applewhite", "id": 98306, "credit_id": "548085f59251416e74002ee6", "cast_id": 22, "profile_path": null, "order": 24}, {"name": "Sean O'Donnell", "character": "Boy(s) (voice)", "id": 1394423, "credit_id": "54808610c3a36829ab002d83", "cast_id": 23, "profile_path": null, "order": 25}, {"name": "Ken Watanabe", "character": "Omori officer", "id": 3899, "credit_id": "548086799251416e81002c91", "cast_id": 29, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 26}, {"name": "Savannah Lamble", "character": "Sylvia Zamperini", "id": 1394426, "credit_id": "5480868ec3a36817a5002b2d", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Travis Jeffery", "character": "Jimmy", "id": 1394427, "credit_id": "54808699c3a36829a7002cf5", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "James McEnery", "character": "Marine at Airbase", "id": 1394428, "credit_id": "548086a49251416e6c00292f", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Stephen Stanton", "character": "Berlin Olympics Radio Announcer (voice)", "id": 1213640, "credit_id": "548086bc9251416e78002cb6", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Talia Mano", "character": "Young Sylvia", "id": 1394430, "credit_id": "548086c69251414efa002e1f", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "Yutaka Izumihara", "character": "Radio Tokyo Man", "id": 75748, "credit_id": "548086d19251416e78002cbd", "cast_id": 36, "profile_path": "/rGPYp0jWNplBEv1vWDbmpysaGte.jpg", "order": 32}, {"name": "Hisa Goto", "character": "Omori guard", "id": 1394432, "credit_id": "548086ebc3a36829ab002da4", "cast_id": 38, "profile_path": null, "order": 33}, {"name": "Hiroshi Kasuga", "character": "Naoetsu Guard 1", "id": 1394433, "credit_id": "548086f6c3a36829a7002d05", "cast_id": 39, "profile_path": null, "order": 34}, {"name": "Akira Fujii", "character": "Japanese Athlete", "id": 1394434, "credit_id": "548087059251414d21002a55", "cast_id": 40, "profile_path": null, "order": 35}, {"name": "Chris Proctor", "character": "James", "id": 1110812, "credit_id": "548087119251416e7e002e5a", "cast_id": 41, "profile_path": null, "order": 36}, {"name": "Shinji Ikefuji", "character": "Japanese Translator", "id": 1205489, "credit_id": "5480871d9251416e7e002e5c", "cast_id": 42, "profile_path": "/6m1scLGa91uDDYBftdEcEOuXrAm.jpg", "order": 37}, {"name": "Brodie Henson", "character": "British p.o.w", "id": 1394435, "credit_id": "54808728c3a36829ab002db0", "cast_id": 43, "profile_path": null, "order": 38}, {"name": "Shingo Usami", "character": "Corporal Kono", "id": 1059787, "credit_id": "5480873ec3a36817a5002b4d", "cast_id": 45, "profile_path": null, "order": 39}, {"name": "Stefan Mogel", "character": "SS Guard", "id": 1394437, "credit_id": "54808749c3a36829a3002d46", "cast_id": 46, "profile_path": null, "order": 40}, {"name": "Clay Zamperini", "character": "Torch Bearer", "id": 1394438, "credit_id": "548087549251414d21002a6e", "cast_id": 47, "profile_path": null, "order": 41}, {"name": "Jess Terrell", "character": "American POW", "id": 1394439, "credit_id": "54808764c3a36829a3002d4d", "cast_id": 48, "profile_path": null, "order": 42}, {"name": "Sean-Ryan Petersen", "character": "Boy", "id": 1394440, "credit_id": "548087719251416e81002cc1", "cast_id": 49, "profile_path": null, "order": 43}, {"name": "Toby Fuller", "character": "Spike Runner", "id": 1394442, "credit_id": "54808796c3a36829ab002dc4", "cast_id": 51, "profile_path": null, "order": 44}, {"name": "Conor Fogarty", "character": "American POW", "id": 1394443, "credit_id": "548087ab9251416e78002cdd", "cast_id": 52, "profile_path": null, "order": 45}, {"name": "Jack Marshall", "character": "Bully", "id": 117020, "credit_id": "548087b7c3a36829a7002d1f", "cast_id": 53, "profile_path": null, "order": 46}, {"name": "Taki Abe", "character": "Radio Tokyo Man", "id": 1179405, "credit_id": "548087e1c3a36817a5002b6c", "cast_id": 56, "profile_path": null, "order": 47}, {"name": "Keiichi Enomoto", "character": "Omori Guard", "id": 1381319, "credit_id": "548087f99251416e81002cd9", "cast_id": 58, "profile_path": "/swWMjjTX4t8gyxRFh7HJvx6S4LI.jpg", "order": 48}, {"name": "Taka Uematsu", "character": "Kwajalein Guard", "id": 1394450, "credit_id": "548088109251416e81002cde", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Yoji Tatsuta", "character": "Naoetsu Guard 2", "id": 1394451, "credit_id": "5480881d9251416e7e002e8a", "cast_id": 61, "profile_path": null, "order": 50}, {"name": "John Michael Burdon", "character": "Man in Stadium", "id": 1361564, "credit_id": "54808829c3a36829b50035f5", "cast_id": 62, "profile_path": null, "order": 51}, {"name": "Ben Rossberg", "character": "British POW Officer", "id": 1394452, "credit_id": "54808834c3a36829ab002dda", "cast_id": 63, "profile_path": null, "order": 52}, {"name": "Sean Edward Frazer", "character": "US Officer p.o.w", "id": 1328711, "credit_id": "5480883fc3a36817a5002b74", "cast_id": 64, "profile_path": null, "order": 53}, {"name": "Yoshinao Aonuma", "character": "Kwajalein Guard", "id": 1394454, "credit_id": "5480884ac3a36829ab002de2", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "James Storer", "character": "American P.O.W.", "id": 1394455, "credit_id": "54808855c3a368299f0023c4", "cast_id": 66, "profile_path": null, "order": 55}, {"name": "Joel Knights", "character": "British POW Officer", "id": 1394456, "credit_id": "548088619251416e6c002973", "cast_id": 67, "profile_path": null, "order": 56}, {"name": "Kristopher Bos", "character": "U.S. Officer P.O.W.", "id": 1394457, "credit_id": "54808876c3a36829b20035c7", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Katsu Nojiri", "character": "Omori Guard", "id": 1394458, "credit_id": "548088879251416e81002cf0", "cast_id": 69, "profile_path": null, "order": 58}, {"name": "Matt Hurley", "character": "US Officer P.O.W", "id": 1394459, "credit_id": "54808895c3a36829ae002a5d", "cast_id": 70, "profile_path": null, "order": 59}, {"name": "Shane Leckenby", "character": "British POW", "id": 1394460, "credit_id": "548088a09251416e6c002983", "cast_id": 71, "profile_path": null, "order": 60}, {"name": "Connor Clarke", "character": "American P.O.W", "id": 1394461, "credit_id": "548088ab9251416e7e002ea1", "cast_id": 72, "profile_path": null, "order": 61}, {"name": "Steven Carnuccio", "character": "Church Attendee", "id": 1394462, "credit_id": "548088b69251416e74002f62", "cast_id": 73, "profile_path": null, "order": 62}, {"name": "Matthew Crocker", "character": "Australian P.O.W", "id": 1394463, "credit_id": "548088c0c3a36829a7002d3a", "cast_id": 74, "profile_path": null, "order": 63}, {"name": "Connor Zegenhagen", "character": "British Soldier", "id": 1394464, "credit_id": "548088cac3a36829ab002dfa", "cast_id": 75, "profile_path": null, "order": 64}, {"name": "Nicholas Farris", "character": "Olympic Race Starter", "id": 1394465, "credit_id": "548088d69251416e74002f6c", "cast_id": 76, "profile_path": null, "order": 65}, {"name": "Sarah Alison", "character": "Virginia", "id": 1394466, "credit_id": "548088e1c3a36829a7002d46", "cast_id": 77, "profile_path": null, "order": 66}, {"name": "Mathew Hislop", "character": "Australian POW", "id": 1394467, "credit_id": "548088ec9251416e7b002ac8", "cast_id": 78, "profile_path": null, "order": 67}, {"name": "Matthew McConnell", "character": "American P.O.W", "id": 1394468, "credit_id": "548088fac3a36817a5002b91", "cast_id": 79, "profile_path": null, "order": 68}, {"name": "Dougal Walker", "character": "British POW", "id": 1394469, "credit_id": "548089049251416e7b002acf", "cast_id": 80, "profile_path": null, "order": 69}, {"name": "Jack Alcock", "character": "American POW", "id": 1394470, "credit_id": "5480890e9251416e6c002990", "cast_id": 81, "profile_path": null, "order": 70}, {"name": "Darren Wyer", "character": "Infirmary p.o.w", "id": 1394471, "credit_id": "5480891b9251416e6c00299a", "cast_id": 82, "profile_path": null, "order": 71}, {"name": "Andy de Lore", "character": "Infirmary POW", "id": 1394472, "credit_id": "5480892fc3a36829a3002d84", "cast_id": 83, "profile_path": null, "order": 72}, {"name": "Mitch Christen", "character": "British POW (uncredited)", "id": 1394473, "credit_id": "5480893c9251416e81002d14", "cast_id": 84, "profile_path": null, "order": 73}, {"name": "Matt Clayton", "character": "US Enlisted POW (uncredited)", "id": 1394474, "credit_id": "5480895fc3a36829b5003628", "cast_id": 85, "profile_path": null, "order": 74}, {"name": "Graeme Ford", "character": "British P.O.W. (uncredited)", "id": 1394475, "credit_id": "5480896cc3a36829a3002d94", "cast_id": 86, "profile_path": null, "order": 75}, {"name": "Darren Gallagher", "character": "Soldier (uncredited)", "id": 1394476, "credit_id": "548089769251416e81002d23", "cast_id": 87, "profile_path": null, "order": 76}, {"name": "Kent Lee", "character": "Olympic spectator / Japanese Olympic team member (uncredited)", "id": 1394477, "credit_id": "54808983c3a368299f0023f8", "cast_id": 88, "profile_path": null, "order": 77}, {"name": "Beau Paley", "character": "American POW (uncredited)", "id": 1394478, "credit_id": "5480898fc3a36829ae002a79", "cast_id": 89, "profile_path": null, "order": 78}, {"name": "Craig Walker", "character": "Berlin Olympics Spectator (uncredited)", "id": 1194035, "credit_id": "548089d3c3a36829ab002e20", "cast_id": 90, "profile_path": null, "order": 79}], "directors": [{"name": "Angelina Jolie", "department": "Directing", "job": "Director", "credit_id": "52fe4e9d9251416c7515c817", "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "id": 11701}], "vote_average": 7.1, "runtime": 137}, "21208": {"poster_path": "/dVP8tE9bV2oIv1l0aWtTUJndZvc.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41596251, "overview": "A married couple with a rocky past adopt the 9-year old Esther to fill the void created by a recently-stillborn baby. However, Esther is not quite what she seems.", "video": false, "id": 21208, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Orphan", "tagline": "Can you keep a secret?", "vote_count": 277, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "et", "name": "Eesti"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1148204", "adult": false, "backdrop_path": "/eqSYJq4zBEWx2EW61fLCrCcQtCW.jpg", "production_companies": [{"name": "Appian Way", "id": 562}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Studio Babelsberg StudioBabelsberg Motion Pictures", "id": 4252}, {"name": "Don Carmody Productions", "id": 4253}, {"name": "Studio Canal", "id": 5870}, {"name": "DCP Orphan Productions", "id": 12484}], "release_date": "2009-07-24", "popularity": 0.812790542122733, "original_title": "Orphan", "budget": 20000000, "cast": [{"name": "Vera Farmiga", "character": "Kate Coleman", "id": 21657, "credit_id": "52fe440fc3a368484e00d345", "cast_id": 1, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 0}, {"name": "Peter Sarsgaard", "character": "John Coleman", "id": 133, "credit_id": "52fe440fc3a368484e00d349", "cast_id": 2, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 1}, {"name": "Isabelle Fuhrman", "character": "Esther", "id": 77517, "credit_id": "52fe440fc3a368484e00d34d", "cast_id": 3, "profile_path": "/bZslEz0bSkA7lxVZfK4zMoNny7I.jpg", "order": 2}, {"name": "C. C. H. Pounder", "character": "Sister Abigail", "id": 30485, "credit_id": "52fe440fc3a368484e00d351", "cast_id": 4, "profile_path": "/4Xu155Rt87p42HVxI2L6Hf9AB4w.jpg", "order": 3}, {"name": "Jimmy Bennett", "character": "Daniel Coleman", "id": 6860, "credit_id": "52fe440fc3a368484e00d355", "cast_id": 5, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 4}, {"name": "Margo Martindale", "character": "Dr. Browning", "id": 452, "credit_id": "52fe440fc3a368484e00d359", "cast_id": 6, "profile_path": "/cpY603oKxm3euQyXWhXhEh7FkCO.jpg", "order": 5}, {"name": "Karel Roden", "character": "Dr. V\u00e4rava", "id": 10841, "credit_id": "52fe440fc3a368484e00d35d", "cast_id": 7, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 6}, {"name": "Aryana Engineer", "character": "Max Coleman", "id": 90455, "credit_id": "52fe440fc3a368484e00d361", "cast_id": 8, "profile_path": "/vDNKdLsBDdbGZiklrXMGlRHzWTL.jpg", "order": 7}, {"name": "Rosemary Dunsmore", "character": "Grandma Barbara", "id": 44275, "credit_id": "52fe440fc3a368484e00d365", "cast_id": 9, "profile_path": "/qdEePC5X5yvnKXVv9lsOAp1EOGl.jpg", "order": 8}, {"name": "Jamie Young", "character": "Brenda", "id": 90456, "credit_id": "52fe440fc3a368484e00d369", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Lorry Ayers", "character": "Joyce", "id": 90457, "credit_id": "52fe440fc3a368484e00d36d", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Brendan Wall", "character": "Detective", "id": 59602, "credit_id": "52fe440fc3a368484e00d371", "cast_id": 12, "profile_path": "/h2csRawwCKv7AyRbCNOiauIfDqd.jpg", "order": 11}, {"name": "Genelle Williams", "character": "Sister Judith", "id": 80969, "credit_id": "52fe440fc3a368484e00d375", "cast_id": 13, "profile_path": "/kIes099gCcRGxusOeRLlyE9RoZF.jpg", "order": 12}, {"name": "Mustafa Abdelkarim", "character": "Daniel's Friend #1", "id": 90458, "credit_id": "52fe440fc3a368484e00d379", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Landon Norris", "character": "Daniel's Friend #2", "id": 90459, "credit_id": "52fe440fc3a368484e00d37d", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Julien Elia", "character": "Hospital Receptionist", "id": 90460, "credit_id": "52fe440fc3a368484e00d381", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Leni Parker", "character": "Delivery Room Nurse", "id": 90461, "credit_id": "52fe440fc3a368484e00d385", "cast_id": 17, "profile_path": "/4fjzruUJHV5EvTwOipQZ92qg7Td.jpg", "order": 16}, {"name": "Gemma James Smith", "character": "Teacher", "id": 90462, "credit_id": "52fe440fc3a368484e00d389", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Pia Ajango", "character": "Saarne Institute Receptionist", "id": 90463, "credit_id": "52fe440fc3a368484e00d38d", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Matthew Raudsepp", "character": "Saarne Institute Orderly", "id": 90464, "credit_id": "52fe440fc3a368484e00d391", "cast_id": 20, "profile_path": "/aDXbrn4F77zEv7vF81dGQthy3Kp.jpg", "order": 19}, {"name": "Sugith Varughese", "character": "ICU Doctor", "id": 44191, "credit_id": "52fe440fc3a368484e00d395", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Luis Olivia", "character": "ICU Nurse", "id": 90465, "credit_id": "52fe440fc3a368484e00d399", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Ferelith Young", "character": "Waiting Room Nurse", "id": 90466, "credit_id": "52fe440fc3a368484e00d39d", "cast_id": 23, "profile_path": null, "order": 22}, {"name": "Andrew Shaver", "character": "Injection Doctor", "id": 90467, "credit_id": "52fe440fc3a368484e00d3a1", "cast_id": 24, "profile_path": null, "order": 23}], "directors": [{"name": "Jaume Collet-Serra", "department": "Directing", "job": "Director", "credit_id": "52fe440fc3a368484e00d3a7", "profile_path": "/dnvJaF8sd6sdFzCVraeR7Z3jvBX.jpg", "id": 59521}], "vote_average": 6.5, "runtime": 123}, "43347": {"poster_path": "/4jU64i4kAEtQUlsYsQPAdfpI7aP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102313925, "overview": "Maggie, an alluring free spirit who won't let anyone - or anything - tie her down. But she meets her match in Jamie, whose relentless and nearly infallible charm serve him well with the ladies and in the cutthroat world of pharmaceutical sales. Maggie and Jamie's evolving relationship takes them both by surprise, as they find themselves under the influence of the ultimate drug: love.", "video": false, "id": 43347, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Love & Other Drugs", "tagline": "Addicted to one-night stands or dependent on one another?", "vote_count": 275, "homepage": "http://www.loveandotherdrugsthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0758752", "adult": false, "backdrop_path": "/qLgI8jkKv8pAo2O6GLrIK48xN6j.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Stuber Productions", "id": 4403}, {"name": "Bedford Falls Productions", "id": 348}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2010-11-22", "popularity": 1.17050926219928, "original_title": "Love & Other Drugs", "budget": 30000000, "cast": [{"name": "Jake Gyllenhaal", "character": "Jamie Reidy", "id": 131, "credit_id": "52fe4640c3a36847f80f4a8f", "cast_id": 2, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 0}, {"name": "Anne Hathaway", "character": "Maggie Murdock", "id": 1813, "credit_id": "52fe4640c3a36847f80f4a93", "cast_id": 3, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 1}, {"name": "Oliver Platt", "character": "Bruce Winston", "id": 17485, "credit_id": "52fe4640c3a36847f80f4a97", "cast_id": 4, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Dr. Stan Knight", "id": 5587, "credit_id": "52fe4640c3a36847f80f4a9b", "cast_id": 5, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 4}, {"name": "Gabriel Macht", "character": "Trey Hannigan", "id": 16856, "credit_id": "52fe4640c3a36847f80f4a9f", "cast_id": 7, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 6}, {"name": "Judy Greer", "character": "Cindy", "id": 20750, "credit_id": "52fe4640c3a36847f80f4aa3", "cast_id": 8, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 7}, {"name": "George Segal", "character": "James Randall", "id": 18364, "credit_id": "52fe4640c3a36847f80f4aa7", "cast_id": 9, "profile_path": "/Abj4bNVuiCerQISSQBZd0cfgqx4.jpg", "order": 8}, {"name": "Jill Clayburgh", "character": "Nancy Randall", "id": 20362, "credit_id": "52fe4640c3a36847f80f4aab", "cast_id": 10, "profile_path": "/twrfhIvbqHuJ7nXVpehvU6nyi6R.jpg", "order": 9}, {"name": "Kate Jennings Grant", "character": "Gina", "id": 59697, "credit_id": "52fe4640c3a36847f80f4aaf", "cast_id": 11, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 10}, {"name": "Katheryn Winnick", "character": "Lisa", "id": 26723, "credit_id": "52fe4640c3a36847f80f4ab3", "cast_id": 12, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 10}, {"name": "Kimberly Scott", "character": "Gail", "id": 1984, "credit_id": "52fe4640c3a36847f80f4ab7", "cast_id": 13, "profile_path": "/2NHByGn6NlQ8ECoQybaKXrezZ0.jpg", "order": 11}, {"name": "Peter Friedman", "character": "California Man", "id": 54246, "credit_id": "52fe4640c3a36847f80f4abb", "cast_id": 14, "profile_path": "/1plom5G0I425wj8l8xXhnvaFcPs.jpg", "order": 11}, {"name": "Nikki DeLoach", "character": "Christy", "id": 59750, "credit_id": "52fe4640c3a36847f80f4abf", "cast_id": 15, "profile_path": "/h8lP9YDAksFxBSBiSjhclc8h2qt.jpg", "order": 12}, {"name": "Natalie Gold", "character": "Dr. Helen Randall", "id": 143256, "credit_id": "52fe4640c3a36847f80f4ac3", "cast_id": 16, "profile_path": "/rpXCiaLqeQYcZN1Wic6TeE2PBHX.jpg", "order": 13}, {"name": "Josh Gad", "character": "Josh Randall", "id": 54415, "credit_id": "52fe4640c3a36847f80f4ac7", "cast_id": 17, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 14}, {"name": "Ian Novick", "character": "Pfizer Trainee #3", "id": 587701, "credit_id": "52fe4641c3a36847f80f4ad7", "cast_id": 20, "profile_path": "/aHDg0cm7c0A1b0FE9K1h7P5BgRD.jpg", "order": 15}], "directors": [{"name": "Edward Zwick", "department": "Directing", "job": "Director", "credit_id": "52fe4640c3a36847f80f4a8b", "profile_path": "/ucBi071XeIGMEHaEGKtU6PN1FwN.jpg", "id": 9181}], "vote_average": 6.4, "runtime": 112}, "71668": {"poster_path": "/s0HZqE2Q8Pta2Cttyal0tcQRxwD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After the events at Lake Victoria, the prehistoric school of blood-thirsty piranhas make their way into swimming pools, plumbing, and a newly opened water park.", "video": false, "id": 71668, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Piranha 3DD", "tagline": "Twice the Teeth. Twice the Terror.", "vote_count": 90, "homepage": "http://piranha-3d.com/", "belongs_to_collection": {"backdrop_path": "/6FzU0eEVXOizfDEdJUlaCEt2t3m.jpg", "poster_path": "/gjFaylmB7ZMK7BsKzAcuu0UKc4j.jpg", "id": 104830, "name": "Piranha 3D Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1714203", "adult": false, "backdrop_path": "/yVfZlZyOtE8QoBSL6gojfopMxr8.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "Mark Canton Productions", "id": 11761}, {"name": "Intellectual Properties Worldwide", "id": 18524}], "release_date": "2012-06-01", "popularity": 0.532508181376688, "original_title": "Piranha 3DD", "budget": 20000000, "cast": [{"name": "Katrina Bowden", "character": "Shelby", "id": 74618, "credit_id": "52fe4841c3a368484e0efc35", "cast_id": 4, "profile_path": "/6p01U3WklVJAoU9pvDcuD8wM8bg.jpg", "order": 0}, {"name": "Danielle Panabaker", "character": "Maddy", "id": 31838, "credit_id": "52fe4841c3a368484e0efc39", "cast_id": 5, "profile_path": "/mZJBKATPpwnzmqODJKj61YfnVF6.jpg", "order": 1}, {"name": "Christopher Lloyd", "character": "Mr. Goodman", "id": 1062, "credit_id": "52fe4841c3a368484e0efc3d", "cast_id": 6, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 2}, {"name": "Ving Rhames", "character": "Deputy Fallon", "id": 10182, "credit_id": "52fe4841c3a368484e0efc41", "cast_id": 7, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 3}, {"name": "Matt Bush", "character": "Barry", "id": 130227, "credit_id": "52fe4841c3a368484e0efc45", "cast_id": 8, "profile_path": "/kyBLgeVnvnsx3zOZXlZwSF5BFEE.jpg", "order": 4}, {"name": "David Koechner", "character": "Chet", "id": 28638, "credit_id": "52fe4841c3a368484e0efc49", "cast_id": 9, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 5}, {"name": "Gary Busey", "character": "Clayton", "id": 2048, "credit_id": "52fe4841c3a368484e0efc4d", "cast_id": 10, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 6}, {"name": "David Hasselhoff", "character": "Himself", "id": 28238, "credit_id": "52fe4841c3a368484e0efc51", "cast_id": 11, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 7}, {"name": "Jean-Luc Bilodeau", "character": "Josh", "id": 205204, "credit_id": "52fe4841c3a368484e0efc55", "cast_id": 12, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 8}, {"name": "Sylvia Jefferies", "character": "Young Mother", "id": 1104568, "credit_id": "52fe4841c3a368484e0efca7", "cast_id": 26, "profile_path": "/jtbJjvDrGAuBW3OGHSCGekuVo8J.jpg", "order": 9}, {"name": "Paul Scheer", "character": "Andrew", "id": 59843, "credit_id": "542534cbc3a3681eca003e8e", "cast_id": 27, "profile_path": "/A81J8vYUdhVGhXFac1XHy2xO5QD.jpg", "order": 10}, {"name": "Irina Voronina", "character": "Kiki", "id": 138970, "credit_id": "54ef99999251417974006a81", "cast_id": 28, "profile_path": "/mCQ6fVaPGCN84GLBnuxHuYcc4bT.jpg", "order": 11}], "directors": [{"name": "John Gulager", "department": "Directing", "job": "Director", "credit_id": "52fe4841c3a368484e0efc25", "profile_path": null, "id": 62797}], "vote_average": 4.8, "runtime": 83}, "71676": {"poster_path": "/tqwWzmp5ISh64SJbNKQ9fyItnDj.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149217355, "overview": "Nicolas Cage reprises his role as Johnny Blaze in Ghost Rider Spirit of Vengeance. In this gritty new vision for the character, Johnny is still struggling with his curse as the devil's bounty hunter - but he may risk everything as he teams up with the leader of a group of rebel monks (Idris Elba) to save a young boy from the devil... and possibly rid himself of his curse forever", "video": false, "id": 71676, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Ghost Rider: Spirit of Vengeance", "tagline": "He Rides Again.", "vote_count": 453, "homepage": "http://www.thespiritofvengeance.com/", "belongs_to_collection": {"backdrop_path": "/ee8zhn4VIXQh1J5t7efyybcvHLj.jpg", "poster_path": "/bZBasloaMhjxCwH6tV0eziNMqut.jpg", "id": 90306, "name": "Ghost Rider Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1071875", "adult": false, "backdrop_path": "/9w9UtpeRPK797GzT7xQXuVRSUSj.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Crystal Sky Pictures", "id": 20241}, {"name": "Michael De Luca Productions", "id": 27551}], "release_date": "2011-12-10", "popularity": 1.44839746617912, "original_title": "Ghost Rider: Spirit of Vengeance", "budget": 57000000, "cast": [{"name": "Nicolas Cage", "character": "Johnny Blaze / Ghost Rider", "id": 2963, "credit_id": "52fe4842c3a368484e0efee3", "cast_id": 5, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Ciar\u00e1n Hinds", "character": "Roarke / The Devil", "id": 8785, "credit_id": "52fe4842c3a368484e0efee7", "cast_id": 6, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 1}, {"name": "Violante Placido", "character": "Nadya", "id": 44649, "credit_id": "52fe4842c3a368484e0efeeb", "cast_id": 7, "profile_path": "/371gOs0Tdd8mUFet7PwzCP0s47I.jpg", "order": 2}, {"name": "Fergus Riordan", "character": "Danny", "id": 567332, "credit_id": "52fe4842c3a368484e0eff0f", "cast_id": 15, "profile_path": "/l25jr61ieo05Y9mmaqoFDBw41Jc.jpg", "order": 3}, {"name": "Johnny Whitworth", "character": "Ray Carrigan / Blackout", "id": 73589, "credit_id": "52fe4842c3a368484e0efeef", "cast_id": 8, "profile_path": "/xkeywGnloZXCsHjKz6eqbKoClrh.jpg", "order": 4}, {"name": "Christopher Lambert", "character": "Methodius", "id": 38559, "credit_id": "52fe4842c3a368484e0eff0b", "cast_id": 14, "profile_path": "/sIl2F9LDTjfnAVBxEG5CTtZGuJU.jpg", "order": 5}, {"name": "Idris Elba", "character": "Moreau", "id": 17605, "credit_id": "52fe4842c3a368484e0eff13", "cast_id": 16, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 6}, {"name": "Anthony Stewart Head", "character": "Benedict", "id": 34257, "credit_id": "52fe4842c3a368484e0eff17", "cast_id": 17, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 7}, {"name": "Spencer Wilding", "character": "Grannik", "id": 25451, "credit_id": "52fe4842c3a368484e0eff1b", "cast_id": 18, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 8}, {"name": "Jacek Koman", "character": "Terrokov", "id": 12210, "credit_id": "52fe4842c3a368484e0eff1f", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Vincent Regan", "character": "Toma Nikasevic", "id": 9831, "credit_id": "52fe4842c3a368484e0effa7", "cast_id": 42, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 10}], "directors": [{"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe4842c3a368484e0efed3", "profile_path": null, "id": 20193}, {"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe4842c3a368484e0efed9", "profile_path": null, "id": 20192}], "vote_average": 4.8, "runtime": 95}, "71679": {"poster_path": "/qRhi9UDgfstP9aIJTCoO9u13Q7t.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 240159255, "overview": "The Umbrella Corporation\u2019s deadly T-virus continues to ravage the Earth, transforming the global population into legions of the flesh eating Undead. The human race\u2019s last and only hope, Alice, awakens in the heart of Umbrella\u2019s most clandestine operations facility and unveils more of her mysterious past as she delves further into the complex. Without a safe haven, Alice continues to hunt those responsible for the outbreak; a chase that takes her from Tokyo to New York, Washington, D.C. and Moscow, culminating in a mind-blowing revelation that will force her to rethink everything that she once thought to be true. Aided by new found allies and familiar friends, Alice must fight to survive long enough to escape a hostile world on the brink of oblivion. The countdown has begun.", "video": false, "id": 71679, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Retribution", "tagline": "The Ultimate Battle Begins", "vote_count": 882, "homepage": "http://www.residentevil-movie.com/site/", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1855325", "adult": false, "backdrop_path": "/qBFghEBzPKvWUAWD2ABumbVOoW8.jpg", "production_companies": [{"name": "Impact Pictures", "id": 248}, {"name": "Constantin Film International", "id": 12162}, {"name": "Davis Films/Impact Pictures (RE5)", "id": 12163}, {"name": "Capcom Company", "id": 14788}, {"name": "Davis-Films", "id": 342}], "release_date": "2012-09-14", "popularity": 0.298629665271487, "original_title": "Resident Evil: Retribution", "budget": 65000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe4842c3a368484e0f00a7", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "52fe4842c3a368484e0f00af", "cast_id": 3, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Rain Ocampo", "id": 17647, "credit_id": "52fe4842c3a368484e0f00ef", "cast_id": 14, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "Aryana Engineer", "character": "Becky", "id": 90455, "credit_id": "52fe4842c3a368484e0f010d", "cast_id": 22, "profile_path": "/vDNKdLsBDdbGZiklrXMGlRHzWTL.jpg", "order": 3}, {"name": "Li Bingbing", "character": "Ada Wong", "id": 109432, "credit_id": "52fe4842c3a368484e0f00fb", "cast_id": 18, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 4}, {"name": "Boris Kodjoe", "character": "Luther West", "id": 80758, "credit_id": "52fe4842c3a368484e0f0111", "cast_id": 23, "profile_path": "/wJ9DwJ5KufQ6adRjvbRjAvhLZpV.jpg", "order": 5}, {"name": "Johann Urb", "character": "Leon S. Kennedy", "id": 101017, "credit_id": "52fe4842c3a368484e0f00ff", "cast_id": 19, "profile_path": "/k6a9aeo801gVQe7Exia0wopnjHJ.jpg", "order": 6}, {"name": "Robin Kasyanov", "character": "Sergei", "id": 222910, "credit_id": "52fe4842c3a368484e0f0115", "cast_id": 24, "profile_path": "/9HciFNpgaLzfs9bZrT6cxEE809m.jpg", "order": 7}, {"name": "Kevin Durand", "character": "Barry Burton", "id": 79072, "credit_id": "52fe4842c3a368484e0f00f3", "cast_id": 15, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 8}, {"name": "Ofilio Portillo", "character": "Tony", "id": 1095911, "credit_id": "52fe4842c3a368484e0f0119", "cast_id": 25, "profile_path": "/uoRyQfhsofoPz7USwzQ1eubcmh4.jpg", "order": 9}, {"name": "Oded Fehr", "character": "Todd / Carlos", "id": 18041, "credit_id": "52fe4842c3a368484e0f00f7", "cast_id": 17, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 10}, {"name": "Colin Salmon", "character": "James 'One' Shade", "id": 5414, "credit_id": "52fe4842c3a368484e0f0103", "cast_id": 20, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 11}, {"name": "Shawn Roberts", "character": "Albert Wesker", "id": 81097, "credit_id": "52fe4842c3a368484e0f011d", "cast_id": 26, "profile_path": "/feIAgSwfksSwusNO5VLTmK00I0g.jpg", "order": 12}, {"name": "Megan Charpentier", "character": "The Red Queen", "id": 223126, "credit_id": "52fe4842c3a368484e0f0129", "cast_id": 29, "profile_path": "/WNe7mkDzSQl2uRhvQlqiXLBp66.jpg", "order": 13}, {"name": "Ali Larter", "character": "Claire Redfield (archive footage)", "id": 17303, "credit_id": "52fe4842c3a368484e0f00ab", "cast_id": 2, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 14}, {"name": "Wentworth Miller", "character": "Chris Redfield (archive footage)", "id": 3972, "credit_id": "52fe4842c3a368484e0f0125", "cast_id": 28, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 15}, {"name": "Spencer Locke", "character": "K-Mart (archive footage)", "id": 57192, "credit_id": "52fe4842c3a368484e0f0121", "cast_id": 27, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 16}, {"name": "Anna Bolt", "character": "Dr. Green (archive footage)", "id": 195535, "credit_id": "52fe4842c3a368484e0f012d", "cast_id": 30, "profile_path": "/7pE1zAqODmqFGPbnE6A0tKlFTFF.jpg", "order": 17}, {"name": "Indra Ov\u00e9", "character": "Ms. Black (archive footage)", "id": 232174, "credit_id": "52fe4842c3a368484e0f0131", "cast_id": 31, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 18}, {"name": "Heike Makatsch", "character": "Dr. Lisa Addison (archive footage)", "id": 7059, "credit_id": "52fe4842c3a368484e0f0135", "cast_id": 32, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 19}, {"name": "Sandrine Holt", "character": "Terri Morales (archive footage)", "id": 65345, "credit_id": "52fe4842c3a368484e0f013d", "cast_id": 34, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 20}, {"name": "Liz May Brice", "character": "Medic (archive footage)", "id": 68224, "credit_id": "52fe4842c3a368484e0f0139", "cast_id": 33, "profile_path": "/5cAhs4oR33lHJcjEIfDCnnOynX7.jpg", "order": 21}, {"name": "Thomas Kretschmann", "character": "Major Tom Caine (archive footage)", "id": 3491, "credit_id": "53bc7eba0e0a2615890002c4", "cast_id": 41, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 22}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4842c3a368484e0f00b5", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.6, "runtime": 95}, "6145": {"poster_path": "/z8dmpPvIybKIlSuzPnt0TQmrYxd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39000000, "overview": "A husband is on trial for the attempted murder of his wife, in what is seemingly an open/shut case for the ambitious district attorney trying to put him away. However, there are surprises for both around every corner, and, as a suspenseful game of cat-and-mouse is played out, each must manipulate and outwit the other.", "video": false, "id": 6145, "genres": [{"id": 53, "name": "Thriller"}], "title": "Fracture", "tagline": "I shot my wife...prove it.", "vote_count": 175, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0488120", "adult": false, "backdrop_path": "/rf5j1avHtvLkVnBLdGmqh1LbIN0.jpg", "production_companies": [{"name": "M7 Filmproduktion", "id": 41359}, {"name": "New Line Cinema", "id": 12}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "Weinstock Productions", "id": 16946}], "release_date": "2007-04-20", "popularity": 1.38421215452647, "original_title": "Fracture", "budget": 0, "cast": [{"name": "Anthony Hopkins", "character": "Theodore Crawford", "id": 4173, "credit_id": "52fe4440c3a36847f808b07d", "cast_id": 3, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "DDA William Beachum", "id": 30614, "credit_id": "52fe4440c3a36847f808b081", "cast_id": 4, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "David Strathairn", "character": "DA Joe Lobruto", "id": 11064, "credit_id": "52fe4440c3a36847f808b085", "cast_id": 5, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Embeth Davidtz", "character": "Jennifer Crawford", "id": 6368, "credit_id": "52fe4440c3a36847f808b089", "cast_id": 6, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 3}, {"name": "Billy Burke", "character": "Lt. Robert Nunally", "id": 21029, "credit_id": "52fe4440c3a36847f808b08d", "cast_id": 7, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 4}, {"name": "Cliff Curtis", "character": "Detective Flores", "id": 7248, "credit_id": "52fe4440c3a36847f808b091", "cast_id": 8, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 5}, {"name": "Fiona Shaw", "character": "Judge Robinson", "id": 10981, "credit_id": "52fe4440c3a36847f808b095", "cast_id": 9, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 6}, {"name": "Josh Stamberg", "character": "Norman Foster", "id": 21882, "credit_id": "52fe4440c3a36847f808b099", "cast_id": 10, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 7}, {"name": "Xander Berkeley", "character": "Judge Moran", "id": 3982, "credit_id": "52fe4440c3a36847f808b09d", "cast_id": 11, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 8}, {"name": "Zoe Kazan", "character": "Mona", "id": 35028, "credit_id": "52fe4440c3a36847f808b0a1", "cast_id": 12, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 9}, {"name": "Judith Scott", "character": "Resident", "id": 44185, "credit_id": "52fe4440c3a36847f808b0a5", "cast_id": 13, "profile_path": "/8PXHC5SMNyUuNNXgDc6m9yJuQcp.jpg", "order": 10}, {"name": "Gary Carlos Cervantes", "character": "Ciro", "id": 48136, "credit_id": "52fe4440c3a36847f808b0af", "cast_id": 15, "profile_path": "/13kjmeYYdJzdeccnJEXo56KH7CO.jpg", "order": 11}, {"name": "Petrea Burchard", "character": "Dr. Marion Kang", "id": 48138, "credit_id": "52fe4440c3a36847f808b0b3", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Rosamund Pike", "character": "Nikki Gardner", "id": 10882, "credit_id": "52fe4440c3a36847f808b0cf", "cast_id": 21, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 13}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe4440c3a36847f808b0ab", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 6.9, "runtime": 113}, "210947": {"poster_path": "/rJeJXo3ZyEM5lpOn0kXab7TIrb6.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 121179, "overview": "Best friends Derek and Clif set out on a trip of a lifetime. Their plan: travel to the ends of the earth, see the world, and live life to the fullest. But the trip soon takes a dark and bloody turn. Just days in, one of the men shows signs of a mysterious affliction which gradually takes over his entire body and being. Now, thousands of miles from home, in a foreign land, they must race to uncover the source of his illness before it consumes him completely. Footage of their travelsmeant to document pleasant memoriesmay now become evidence of one of the most shocking discoveries ever captured on film\u2026and may be their only postcard home.", "video": false, "id": 210947, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Afflicted", "tagline": "Captured. On Film.", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2309961", "adult": false, "backdrop_path": "/ucMw5eHwZ8zLxcb9KUy6M7GlX7h.jpg", "production_companies": [{"name": "Automatik Entertainment", "id": 7625}, {"name": "Panorama Films", "id": 5561}, {"name": "T\u00e9l\u00e9film Canada", "id": 806}], "release_date": "2013-09-09", "popularity": 1.25907835060736, "original_title": "Afflicted", "budget": 318000, "cast": [{"name": "Baya Rehaz", "character": "Audrey", "id": 1194750, "credit_id": "52fe4d89c3a368484e1eea63", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Derek Lee", "character": "Derek", "id": 1194748, "credit_id": "52fe4d89c3a368484e1eea6d", "cast_id": 6, "profile_path": null, "order": 1}, {"name": "Clif Prowse", "character": "Cliff Prowse", "id": 1194749, "credit_id": "52fe4d89c3a368484e1eea71", "cast_id": 7, "profile_path": null, "order": 2}, {"name": "Edo Van Breemen", "character": "Edo Van Breeman (as Edo Van Breeman)", "id": 1205435, "credit_id": "52fe4d8ac3a368484e1eea81", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Zachary Gray", "character": "Zachary Gray (as Zachary Gray)", "id": 1205436, "credit_id": "52fe4d8ac3a368484e1eea85", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Michael Gill", "character": "Michael Gill", "id": 1318680, "credit_id": "5370177bc3a368121800eb8f", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Jason Lee", "character": "Jason Lee", "id": 1318681, "credit_id": "53701789c3a3683bf900620a", "cast_id": 17, "profile_path": null, "order": 6}], "directors": [{"name": "Clif Prowse", "department": "Directing", "job": "Director", "credit_id": "52fe4d89c3a368484e1eea5f", "profile_path": null, "id": 1194749}, {"name": "Derek Lee", "department": "Directing", "job": "Director", "credit_id": "52fe4d89c3a368484e1eea7d", "profile_path": null, "id": 1194748}], "vote_average": 6.3, "runtime": 85}, "63492": {"poster_path": "/yugpF7km9nEE5GLpSWMSkGKHGNd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30426096, "overview": "Ally Darling (Anna Faris) is realizing she's a little lost in life. Her latest romance has just fizzled out, and she's just been fired from her marketing job. Then she reads an eye-opening magazine article that warns that 96 percent of women who've been with 20 or more lovers are unlikely to find a husband. Determined to turn her life around and prove the article wrong, Ally embarks on a mission to find the perfect mate from among her numerous ex-boyfriends.", "video": false, "id": 63492, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "What's Your Number?", "tagline": "Ally's looking for the best ex of her life.", "vote_count": 125, "homepage": "http://www.whatsyournumbermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0770703", "adult": false, "backdrop_path": "/jErMBy0pcJIUMfzaVPzfrXhsn9W.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "New Regency Pictures", "id": 10104}, {"name": "Contrafilm", "id": 1836}], "release_date": "2011-09-30", "popularity": 0.978780422300708, "original_title": "What's Your Number?", "budget": 20000000, "cast": [{"name": "Chris Evans", "character": "Colin Shea", "id": 16828, "credit_id": "52fe46adc3a368484e09dd1b", "cast_id": 2, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 0}, {"name": "Anna Faris", "character": "Ally Darling", "id": 1772, "credit_id": "52fe46adc3a368484e09dd1f", "cast_id": 3, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Martin Freeman", "character": "Simon Forester", "id": 7060, "credit_id": "52fe46adc3a368484e09dd23", "cast_id": 4, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 2}, {"name": "Chris Pratt", "character": "Disgusting Donald", "id": 73457, "credit_id": "52fe46adc3a368484e09dd27", "cast_id": 5, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 3}, {"name": "Ari Graynor", "character": "Daisy Darling", "id": 71552, "credit_id": "52fe46adc3a368484e09dd37", "cast_id": 10, "profile_path": "/bAauKjFsKFDJpwMfOrEBSiun0P5.jpg", "order": 4}, {"name": "Blythe Danner", "character": "Ava Darling", "id": 10401, "credit_id": "52fe46adc3a368484e09dd3b", "cast_id": 11, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 5}, {"name": "Ed Begley Jr.", "character": "Mr. Darling", "id": 42157, "credit_id": "52fe46adc3a368484e09dd3f", "cast_id": 12, "profile_path": "/m264FJDCnB5H6qyU2sDKjs9tM86.jpg", "order": 6}, {"name": "Dave Annable", "character": "Jake Adams", "id": 176653, "credit_id": "52fe46adc3a368484e09dd43", "cast_id": 13, "profile_path": "/mXFKhZTVnHufqKizKjhJEJTZz4r.jpg", "order": 7}, {"name": "Joel McHale", "character": "Roger the Boss", "id": 74949, "credit_id": "52fe46adc3a368484e09dd47", "cast_id": 14, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 8}, {"name": "Zachary Quinto", "character": "Rick", "id": 17306, "credit_id": "52fe46adc3a368484e09dd4b", "cast_id": 15, "profile_path": "/gSBxQWda0T67hrK3pNyqreRYoyw.jpg", "order": 9}, {"name": "Eliza Coupe", "character": "Sheila", "id": 210050, "credit_id": "52fe46adc3a368484e09dd4f", "cast_id": 16, "profile_path": "/nb6JlI2OxCDUwksjZ4PjqIHu3IN.jpg", "order": 10}, {"name": "Mike Vogel", "character": "Dave Hansen", "id": 6858, "credit_id": "52fe46adc3a368484e09dd53", "cast_id": 17, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 11}, {"name": "Andy Samberg", "character": "Gerry Perry", "id": 62861, "credit_id": "52fe46adc3a368484e09dd57", "cast_id": 19, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 12}, {"name": "Thomas Lennon", "character": "Dr. Barrett Ingold", "id": 539, "credit_id": "52fe46adc3a368484e09dd5b", "cast_id": 20, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 13}, {"name": "Anthony Mackie", "character": "Tom Piper", "id": 53650, "credit_id": "52fe46adc3a368484e09dd5f", "cast_id": 21, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 14}, {"name": "Jackson Nicoll", "character": "Justin", "id": 1148130, "credit_id": "540b8ab90e0a263640000425", "cast_id": 22, "profile_path": "/2sEyIlZFLIzAgBUcL5dovdwQOUa.jpg", "order": 15}], "directors": [{"name": "Mark Mylod", "department": "Directing", "job": "Director", "credit_id": "52fe46adc3a368484e09dd17", "profile_path": "/e8besvnWIcbvD8NLjcsi5jmxxOe.jpg", "id": 57199}], "vote_average": 6.1, "runtime": 106}, "55301": {"poster_path": "/31IPWvH2l4ycyK8EsMOmmwiJC7n.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 342695435, "overview": "Playing around while aboard a cruise ship, the Chipmunks and Chipettes accidentally go overboard and end up marooned in a tropical paradise. They discover their new turf is not as deserted as it seems.", "video": false, "id": 55301, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Alvin and the Chipmunks: Chipwrecked", "tagline": "This holiday it's gonna get squeaky.", "vote_count": 140, "homepage": "http://www.munkyourself.com/", "belongs_to_collection": {"backdrop_path": "/qI483yHct3PBtIiOH3K3SVNUDq5.jpg", "poster_path": "/fLvRQcuk5ZFKnDvUC553XK3OnPC.jpg", "id": 167613, "name": "Alvin and the Chipmunks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1615918", "adult": false, "backdrop_path": "/qc0NReaia4MNsr8Ens054x6udrX.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2011-12-14", "popularity": 0.6969153889529, "original_title": "Alvin and the Chipmunks: Chipwrecked", "budget": 75000000, "cast": [{"name": "Amy Poehler", "character": "Eleanor (voice)", "id": 56322, "credit_id": "52fe48c5c3a36847f817883d", "cast_id": 4, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 0}, {"name": "Jenny Slate", "character": "Zoe", "id": 213001, "credit_id": "52fe48c5c3a36847f8178841", "cast_id": 7, "profile_path": "/bKyUz4N566bXBEhj1TkFfMiNFyT.jpg", "order": 1}, {"name": "Andy Buckley", "character": "Captain Correlli", "id": 170635, "credit_id": "52fe48c5c3a36847f8178845", "cast_id": 8, "profile_path": "/jGOCrJXTzIAGAx1GlBu3Y3NMBma.jpg", "order": 2}, {"name": "Jesse McCartney", "character": "Theodore (voice)", "id": 49915, "credit_id": "52fe48c5c3a36847f8178849", "cast_id": 9, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 3}, {"name": "Jason Lee", "character": "David Seville", "id": 11662, "credit_id": "52fe48c5c3a36847f817884d", "cast_id": 10, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 4}, {"name": "Anna Faris", "character": "Jeanette (voice)", "id": 1772, "credit_id": "52fe48c5c3a36847f8178851", "cast_id": 11, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 5}, {"name": "Christina Applegate", "character": "Brittany (voice)", "id": 18979, "credit_id": "52fe48c5c3a36847f8178855", "cast_id": 12, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 6}, {"name": "Justin Long", "character": "Alvin (voice)", "id": 15033, "credit_id": "52fe48c5c3a36847f8178859", "cast_id": 13, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 7}], "directors": [{"name": "Mike Mitchell", "department": "Directing", "job": "Director", "credit_id": "52fe48c5c3a36847f817882d", "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "id": 64151}], "vote_average": 5.7, "runtime": 87}, "71688": {"poster_path": "/e67tal4u66eFz8yGnJGTO5FYRxY.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 114956699, "overview": "A look at the life of Margaret Thatcher (Meryl Streep), the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.", "video": false, "id": 71688, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Iron Lady", "tagline": "Never compromise", "vote_count": 158, "homepage": "http://weinsteinco.com/sites/iron-lady/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1007029", "adult": false, "backdrop_path": "/dfM5XwQcw36HAnKhowEh5776MJl.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "Canal+", "id": 5358}, {"name": "DJ Films", "id": 5654}, {"name": "Cin\u00e9Cin\u00e9ma", "id": 6301}, {"name": "Path\u00e9", "id": 7981}, {"name": "Film4", "id": 9349}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Yuk Films", "id": 19749}], "release_date": "2011-12-30", "popularity": 0.216283938273574, "original_title": "The Iron Lady", "budget": 13000000, "cast": [{"name": "Meryl Streep", "character": "Margaret Thatcher", "id": 5064, "credit_id": "52fe4843c3a368484e0f022b", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Anthony Stewart Head", "character": "Geoffrey Howe", "id": 34257, "credit_id": "52fe4843c3a368484e0f022f", "cast_id": 3, "profile_path": "/17LzSGKGZElKVZZ51TIAMvHtQKJ.jpg", "order": 1}, {"name": "Harry Lloyd", "character": "Young Denis Thatcher", "id": 205258, "credit_id": "52fe4843c3a368484e0f0233", "cast_id": 4, "profile_path": "/vI6FWizXNa5quCyIiTd06gxNQu1.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Denis Thatcher", "id": 388, "credit_id": "52fe4843c3a368484e0f0237", "cast_id": 5, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Susan Brown", "character": "June", "id": 438859, "credit_id": "52fe4843c3a368484e0f0271", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Alice da Cunha", "character": "Cleaner", "id": 1023482, "credit_id": "52fe4843c3a368484e0f0275", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Phoebe Waller-Bridge", "character": "Susie", "id": 1023483, "credit_id": "52fe4843c3a368484e0f0279", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Iain Glen", "character": "Alfred Roberts", "id": 20508, "credit_id": "52fe4843c3a368484e0f027d", "cast_id": 18, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 7}, {"name": "Alexandra Roach", "character": "Young Margaret Thatcher", "id": 237020, "credit_id": "52fe4843c3a368484e0f0281", "cast_id": 19, "profile_path": "/jWJlrPYvdDN2kMCWKDkDnnFm1mP.jpg", "order": 8}, {"name": "Victoria Bewick", "character": "Muriel Roberts", "id": 1023484, "credit_id": "52fe4843c3a368484e0f0285", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Olivia Colman", "character": "Carol Thatcher", "id": 39187, "credit_id": "52fe4843c3a368484e0f0289", "cast_id": 21, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 10}, {"name": "Eloise Webb", "character": "Young Carol", "id": 1394373, "credit_id": "550bd56bc3a3687c11000d6f", "cast_id": 24, "profile_path": null, "order": 11}], "directors": [{"name": "Phyllida Lloyd", "department": "Directing", "job": "Director", "credit_id": "52fe4843c3a368484e0f0227", "profile_path": "/jNZ2wVL5lsFvM6pPmRGFWI4SFvm.jpg", "id": 71068}], "vote_average": 6.3, "runtime": 105}, "22538": {"poster_path": "/lafRuPbjEQrrHG9QEaoyV2znZC.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 46489927, "overview": "Scott Pilgrim is a film adaptation of the critically acclaimed, award-winning series of graphic novels of the same name by Canadian cartoonist Bryan Lee O\u2019Malley. Scott Pilgrim is a 23 year old Canadian slacker and wannabe rockstar who falls in love with an American delivery girl, Ramona V. Flowers, and must defeat her seven \"evil exes\" to be able to date her.", "video": false, "id": 22538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Scott Pilgrim vs. the World", "tagline": "Get the hot girl. Defeat her evil exes. Hit love where it hurts.", "vote_count": 670, "homepage": "http://www.scottpilgrimthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0446029", "adult": false, "backdrop_path": "/9UBtFxBdWDtwMLX5brS45Ryo840.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Marc Platt Productions", "id": 2527}], "release_date": "2010-07-27", "popularity": 1.04944532821786, "original_title": "Scott Pilgrim vs. the World", "budget": 60000000, "cast": [{"name": "Michael Cera", "character": "Scott Pilgrim", "id": 39995, "credit_id": "52fe4445c3a368484e01985f", "cast_id": 1, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 0}, {"name": "Mary Elizabeth Winstead", "character": "Ramona V. Flowers", "id": 17628, "credit_id": "52fe4445c3a368484e019863", "cast_id": 2, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 1}, {"name": "Kieran Culkin", "character": "Wallace Wells", "id": 18793, "credit_id": "52fe4445c3a368484e019867", "cast_id": 3, "profile_path": "/lyD1q1vex69Nxg3UoXw2gyow3Xg.jpg", "order": 2}, {"name": "Chris Evans", "character": "Lucas Lee", "id": 16828, "credit_id": "52fe4445c3a368484e01986b", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 3}, {"name": "Anna Kendrick", "character": "Stacey Pilgrim", "id": 84223, "credit_id": "52fe4445c3a368484e01986f", "cast_id": 5, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 4}, {"name": "Brandon Routh", "character": "Todd Ingram", "id": 17271, "credit_id": "52fe4445c3a368484e019873", "cast_id": 6, "profile_path": "/1bEEwmBOiQY9a7WBAqg2oj2Fl2R.jpg", "order": 5}, {"name": "Alison Pill", "character": "Kim Pine", "id": 17486, "credit_id": "52fe4445c3a368484e019877", "cast_id": 7, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 6}, {"name": "Jason Schwartzman", "character": "Gideon Gordon Graves", "id": 17881, "credit_id": "52fe4445c3a368484e01987b", "cast_id": 8, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 7}, {"name": "Ellen Wong", "character": "Knives Chau", "id": 88902, "credit_id": "52fe4445c3a368484e01987f", "cast_id": 9, "profile_path": "/53v3oEH5JEtrlMj6CNLbzhFncWb.jpg", "order": 8}, {"name": "Satya Bhabha", "character": "Matthew Patel", "id": 88903, "credit_id": "52fe4445c3a368484e019883", "cast_id": 10, "profile_path": "/6RHD03Mzpu4yMquIlwFAHF8MyW4.jpg", "order": 9}, {"name": "Mae Whitman", "character": "Roxy Richter", "id": 52404, "credit_id": "52fe4445c3a368484e01988d", "cast_id": 15, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 10}, {"name": "Johnny Simmons", "character": "Young Neil", "id": 27104, "credit_id": "52fe4445c3a368484e019891", "cast_id": 16, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 11}, {"name": "Brie Larson", "character": "Envy Adams", "id": 60073, "credit_id": "52fe4445c3a368484e019895", "cast_id": 17, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 12}, {"name": "John Patrick Amedori", "character": "Smoking hipster kid", "id": 43464, "credit_id": "52fe4445c3a368484e019899", "cast_id": 19, "profile_path": "/xK63u0TCH5MD0rlXcjGgzuWUwIf.jpg", "order": 13}, {"name": "Mark Webber", "character": "Stephen Stills", "id": 4451, "credit_id": "52fe4445c3a368484e01989d", "cast_id": 20, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 14}, {"name": "Erik Knudsen", "character": "Luke 'Crash' Wilson", "id": 2681, "credit_id": "52fe4445c3a368484e0198a1", "cast_id": 21, "profile_path": "/9dCxpo70l0BmjKhCsETESFXsoT9.jpg", "order": 15}, {"name": "Nelson Franklin", "character": "Comeau", "id": 88928, "credit_id": "52fe4445c3a368484e0198a5", "cast_id": 22, "profile_path": "/lk2A1zZezjIrmiXD507Chr24SyJ.jpg", "order": 16}, {"name": "Jean Yoon", "character": "Mother Chau", "id": 88929, "credit_id": "52fe4445c3a368484e0198a9", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Kristina Pesic", "character": "Sandra", "id": 88930, "credit_id": "52fe4445c3a368484e0198ad", "cast_id": 24, "profile_path": "/2e30dfLAMGcPaNQzXwpnWMsgmsY.jpg", "order": 18}, {"name": "Abigail Chu", "character": "Trisha 'Trasha' Ha", "id": 88931, "credit_id": "52fe4445c3a368484e0198b1", "cast_id": 25, "profile_path": "/erbfyBNGmUGb0X84lItZBBZ8trk.jpg", "order": 19}, {"name": "Ben Lewis", "character": "Other Scott", "id": 33702, "credit_id": "52fe4445c3a368484e0198b5", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Ingrid Haas", "character": "Monique", "id": 88932, "credit_id": "52fe4445c3a368484e0198b9", "cast_id": 27, "profile_path": "/sq5qC5Rtxl1nLreXFiEehGe5UaY.jpg", "order": 21}, {"name": "Chantelle Chung", "character": "Tamara", "id": 88933, "credit_id": "52fe4445c3a368484e0198bd", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Emily Kassie", "character": "Winifred Hailey", "id": 88934, "credit_id": "52fe4445c3a368484e0198c1", "cast_id": 29, "profile_path": null, "order": 23}, {"name": "Aubrey Plaza", "character": "Julie Powers", "id": 119592, "credit_id": "52fe4445c3a368484e0198d1", "cast_id": 33, "profile_path": "/2XGSggdxneGZM7zkyuWfIs5VdKr.jpg", "order": 24}, {"name": "Marlee Otto", "character": "Party Goer", "id": 193539, "credit_id": "52fe4445c3a368484e0198e7", "cast_id": 37, "profile_path": null, "order": 25}, {"name": "Will Seatle Bowes", "character": "Party Goer", "id": 224724, "credit_id": "52fe4445c3a368484e0198eb", "cast_id": 38, "profile_path": "/ifgJ4S5QH1m7PUgNZ823zyCeh7q.jpg", "order": 26}], "directors": [{"name": "Edgar Wright", "department": "Directing", "job": "Director", "credit_id": "52fe4445c3a368484e019889", "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg", "id": 11090}], "vote_average": 7.1, "runtime": 112}, "127867": {"poster_path": "/4Pxtx487zw0HTpbO4k341Es33nO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.", "video": false, "id": 127867, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "The Brass Teapot", "tagline": "Everyone Has A Price. What's Yours?", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1935902", "adult": false, "backdrop_path": "/yWcYCpA6EWJE9nMCbzxlIVdHRXo.jpg", "production_companies": [{"name": "Laundry Films", "id": 13552}], "release_date": "2013-04-05", "popularity": 0.455374373959891, "original_title": "The Brass Teapot", "budget": 0, "cast": [{"name": "Juno Temple", "character": "Alice", "id": 36594, "credit_id": "52fe4b0bc3a368484e174ad7", "cast_id": 2, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 0}, {"name": "Michael Angarano", "character": "John", "id": 11665, "credit_id": "52fe4b0bc3a368484e174adf", "cast_id": 4, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 1}, {"name": "Alexis Bledel", "character": "Payton", "id": 6279, "credit_id": "52fe4b0bc3a368484e174adb", "cast_id": 3, "profile_path": "/soIlyGwryTHV4Y7LNn1tDejT4TC.jpg", "order": 2}, {"name": "Billy Magnussen", "character": "Arnie", "id": 141034, "credit_id": "52fe4b0bc3a368484e174aed", "cast_id": 7, "profile_path": "/9iEugwAOkNLIzkwl2388OnCLHEw.jpg", "order": 3}, {"name": "Alia Shawkat", "character": "Louise", "id": 61178, "credit_id": "52fe4b0bc3a368484e174ae9", "cast_id": 6, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 4}, {"name": "Bobby Moynihan", "character": "Chuck", "id": 452205, "credit_id": "52fe4b0bc3a368484e174af1", "cast_id": 8, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 5}, {"name": "Steve Park", "character": "Dr. Ling", "id": 4025, "credit_id": "52fe4b0bc3a368484e174af5", "cast_id": 9, "profile_path": "/o0OEyfHM4IJ7PFMk9X87hivxtJs.jpg", "order": 6}, {"name": "Ben Rappaport", "character": "Ricky", "id": 224183, "credit_id": "52fe4b0bc3a368484e174af9", "cast_id": 10, "profile_path": "/9rBUqIJ07u8FKOHvI8dn0UMDGGR.jpg", "order": 7}, {"name": "Lucy Walters", "character": "Mary", "id": 1141384, "credit_id": "52fe4b0bc3a368484e174afd", "cast_id": 11, "profile_path": "/mAtULQvwCDqArnioiV4qggrXQl7.jpg", "order": 8}, {"name": "Jack McBrayer", "character": "Joe", "id": 58737, "credit_id": "52fe4b0bc3a368484e174b01", "cast_id": 12, "profile_path": "/nTvIqj2pRhQPaaxB1CUj7QipY8j.jpg", "order": 9}, {"name": "Debra Monk", "character": "Trudy", "id": 10386, "credit_id": "52fe4b0bc3a368484e174b05", "cast_id": 13, "profile_path": "/ufZO6Uo9cy4ayM6jJfHfnqL5Elt.jpg", "order": 10}, {"name": "Michael Delaney", "character": "Mr. Tutor", "id": 94602, "credit_id": "52fe4b0bc3a368484e174b09", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Tara Copeland", "character": "Mrs. Tutor", "id": 1179253, "credit_id": "52fe4b0bc3a368484e174b0d", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Thomas Middleditch", "character": "Gilad", "id": 111678, "credit_id": "52fe4b0bc3a368484e174b11", "cast_id": 16, "profile_path": "/eejkzd9gtYm7pMFiVdjsGBYde5H.jpg", "order": 13}, {"name": "Bob McClure", "character": "Yoel (as Robert Michael McClure)", "id": 1179254, "credit_id": "52fe4b0bc3a368484e174b15", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Rebecca Darke", "character": "Mollia", "id": 1179255, "credit_id": "52fe4b0bc3a368484e174b19", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Ian Scott McGregor", "character": "Interviewer", "id": 1179256, "credit_id": "52fe4b0bc3a368484e174b1d", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Travis Myers", "character": "Bartender", "id": 1179257, "credit_id": "52fe4b0bc3a368484e174b21", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Matt Walsh", "character": "Antique Dealer", "id": 59841, "credit_id": "52fe4b0bc3a368484e174b25", "cast_id": 21, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 18}, {"name": "Danielle Kotch", "character": "Eight Year Old", "id": 1179260, "credit_id": "52fe4b0bc3a368484e174b29", "cast_id": 22, "profile_path": "/sg9sLO7NPquAcwaiMrBp8lLifPs.jpg", "order": 19}, {"name": "M.K. Walsh", "character": "Female Reporter (as Mary Kate Walsh)", "id": 1179261, "credit_id": "52fe4b0bc3a368484e174b2d", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Claudia Mason", "character": "Donna", "id": 1179262, "credit_id": "52fe4b0bc3a368484e174b31", "cast_id": 24, "profile_path": null, "order": 21}, {"name": "Cristin Milioti", "character": "Brandi", "id": 204392, "credit_id": "52fe4b0bc3a368484e174b35", "cast_id": 25, "profile_path": "/mf0qpQCRYkWc17CTA03Ar5ELpHj.jpg", "order": 22}, {"name": "Roland J. Walton", "character": "BMW Dealer", "id": 1179263, "credit_id": "52fe4b0bc3a368484e174b39", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Christopher Maggi", "character": "Antiques Roadshow Attendee 1", "id": 1179264, "credit_id": "52fe4b0bc3a368484e174b3d", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Matthew Backer", "character": "Antiques Roadshow Attendee 2", "id": 1179265, "credit_id": "52fe4b0bc3a368484e174b41", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Yuen Byun", "character": "Waxer", "id": 1179266, "credit_id": "52fe4b0bc3a368484e174b45", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Adam Files", "character": "Mr. Tutor's Lover", "id": 1179267, "credit_id": "52fe4b0bc3a368484e174b49", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Kirk Roos", "character": "Highway Patrolman", "id": 937873, "credit_id": "52fe4b0bc3a368484e174b4d", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Christopher Jon Gombos", "character": "Cowboy (uncredited)", "id": 1179268, "credit_id": "52fe4b0bc3a368484e174b51", "cast_id": 32, "profile_path": "/c03IFIpAvZlquugkX46DwRC7Ak0.jpg", "order": 29}, {"name": "William Todd Levinson", "character": "Reception Attendee (uncredited)", "id": 1179269, "credit_id": "52fe4b0bc3a368484e174b55", "cast_id": 33, "profile_path": null, "order": 30}, {"name": "Harry L. Seddon", "character": "Antique Collector (uncredited)", "id": 118387, "credit_id": "52fe4b0bc3a368484e174b59", "cast_id": 34, "profile_path": null, "order": 31}], "directors": [{"name": "Ramaa Mosley", "department": "Directing", "job": "Director", "credit_id": "52fe4b0bc3a368484e174ad3", "profile_path": null, "id": 1085904}], "vote_average": 5.8, "runtime": 100}, "10025": {"poster_path": "/vjA1TA9h2gyysAovW1MZHZdFGqS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17326650, "overview": "Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.", "video": false, "id": 10025, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Just My Luck", "tagline": "Everything changed in the wink of an eye.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0397078", "adult": false, "backdrop_path": "/yVs7C9FmYS2GaqOSoTLLHRocMW8.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2006-05-12", "popularity": 0.910811185382972, "original_title": "Just My Luck", "budget": 28000000, "cast": [{"name": "Lindsay Lohan", "character": "Ashley Albright", "id": 49265, "credit_id": "52fe430a9251416c75001371", "cast_id": 22, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 0}, {"name": "Samaire Armstrong", "character": "Maggie", "id": 19664, "credit_id": "52fe430a9251416c75001375", "cast_id": 23, "profile_path": "/n1EvtBt47rE7VgiBNipnV589YYw.jpg", "order": 1}, {"name": "Chris Pine", "character": "Jake Hardin", "id": 62064, "credit_id": "52fe430a9251416c7500137f", "cast_id": 25, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 2}, {"name": "Missi Pyle", "character": "Peggy Braden", "id": 1294, "credit_id": "52fe430a9251416c75001383", "cast_id": 26, "profile_path": "/rRVORUpcHPO9MqgK26H1JWwMZLn.jpg", "order": 3}, {"name": "Makenzie Vega", "character": "Katy", "id": 2139, "credit_id": "52fe430a9251416c75001387", "cast_id": 27, "profile_path": "/uoWRfXAD8O9hUQlcgenGXfPoCGh.jpg", "order": 4}, {"name": "Bree Turner", "character": "Dana", "id": 62065, "credit_id": "52fe430a9251416c7500138f", "cast_id": 29, "profile_path": "/vR34cXXPh9JFPrPy7DS0fjOaeIc.jpg", "order": 5}, {"name": "Faizon Love", "character": "Damon Phillips", "id": 62066, "credit_id": "52fe430a9251416c7500138b", "cast_id": 28, "profile_path": "/kJ71egBJZdajLisOXWgBIRfYjvI.jpg", "order": 6}, {"name": "Danny Jones", "character": "Himself - McFly Band Member", "id": 62069, "credit_id": "52fe430a9251416c75001393", "cast_id": 30, "profile_path": null, "order": 7}, {"name": "Tom Fletcher", "character": "Himself - McFly Band Member", "id": 62068, "credit_id": "52fe430a9251416c7500139b", "cast_id": 32, "profile_path": null, "order": 8}, {"name": "Carlos Ponce", "character": "Antonio", "id": 62067, "credit_id": "52fe430a9251416c75001397", "cast_id": 31, "profile_path": "/uf1p8bgNokfbelZLjhelhxdLbT0.jpg", "order": 9}, {"name": "Harry Judd", "character": "Himself - McFly Band Member", "id": 62070, "credit_id": "52fe430a9251416c7500139f", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Dougie Poynter", "character": "Himself - McFly Band Member", "id": 62071, "credit_id": "52fe430a9251416c750013a3", "cast_id": 34, "profile_path": null, "order": 11}, {"name": "Tovah Feldshuh", "character": "Madame Z", "id": 41640, "credit_id": "52fe430a9251416c750013a7", "cast_id": 35, "profile_path": "/1haWbhXrJRJyhPBIoxRhTuIEWBw.jpg", "order": 12}, {"name": "Dane Rhodes", "character": "Mac", "id": 60874, "credit_id": "52fe430a9251416c750013ab", "cast_id": 36, "profile_path": "/cB1iGmzJe5OEillQvPWDGRkkSAC.jpg", "order": 13}, {"name": "Jaqueline Fleming", "character": "Tiffany", "id": 62072, "credit_id": "52fe430a9251416c750013af", "cast_id": 37, "profile_path": "/bAR3JD4dbuknBbPdtsuytWGgDaU.jpg", "order": 14}, {"name": "Ira Hawkins", "character": "Doorman Oscar", "id": 62074, "credit_id": "52fe430a9251416c750013b3", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "J.C. Sealy", "character": "Aunt Martha", "id": 62075, "credit_id": "52fe430a9251416c750013b7", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Mikki Val", "character": "Tough Jailbird", "id": 62073, "credit_id": "52fe430a9251416c750013bb", "cast_id": 40, "profile_path": null, "order": 17}, {"name": "Marcus Hester", "character": "Tom Gilpin", "id": 62076, "credit_id": "52fe430b9251416c750013bf", "cast_id": 41, "profile_path": "/mOlrvlDpYUzDJhG6yc2wiRCdH5X.jpg", "order": 18}, {"name": "Ameer Baraka", "character": "Phillips Minion", "id": 62077, "credit_id": "52fe430b9251416c750013c3", "cast_id": 42, "profile_path": null, "order": 19}, {"name": "Hannah Tointon", "character": "Concert Goer", "id": 228431, "credit_id": "52fe430b9251416c750013c7", "cast_id": 43, "profile_path": "/9Rtrh32jGdNNjY76GpirVnRLE2s.jpg", "order": 20}], "directors": [{"name": "Donald Petrie", "department": "Directing", "job": "Director", "credit_id": "52fe430a9251416c750012fb", "profile_path": "/qskPnj70VE5zyG4tcXKSzDQh7Va.jpg", "id": 18281}], "vote_average": 5.3, "runtime": 103}, "227348": {"poster_path": "/iyXkJYM99gKkFgIRoACv88UiqIv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 86362372, "overview": "Seventeen-year-old Jesse has been hearing terrifying sounds coming from his neighbor\u2019s apartment, but when he turns on his camera and sets out to uncover their source, he encounters an ancient evil that won\u2019t rest until it\u2019s claimed his very soul.", "video": false, "id": 227348, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Paranormal Activity: The Marked Ones", "tagline": "You're one of us now.", "vote_count": 138, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2473682", "adult": false, "backdrop_path": "/zEgaJ33dWkXBcl7J5IjRBTWdyLL.jpg", "production_companies": [{"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}, {"name": "Room 101", "id": 6302}], "release_date": "2014-01-03", "popularity": 1.02275319644469, "original_title": "Paranormal Activity: The Marked Ones", "budget": 5000000, "cast": [{"name": "Richard Cabral", "character": "Arturo", "id": 1105711, "credit_id": "52fe4ea09251416c7515cccd", "cast_id": 3, "profile_path": "/wKNdJXC66ajHXz8cUQGAaHHlcZr.jpg", "order": 0}, {"name": "Carlos Pratts", "character": "Oscar Hernandez", "id": 1116973, "credit_id": "52fe4ea09251416c7515ccd1", "cast_id": 4, "profile_path": "/qKqAIpsyIK8rPtLIWuSB7NrT1Cn.jpg", "order": 1}, {"name": "Eddie J. Fernandez", "character": "Carlos", "id": 18300, "credit_id": "52fe4ea09251416c7515ccd5", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Jorge Diaz", "character": "Hector", "id": 188347, "credit_id": "52fe4ea09251416c7515ccd9", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "David Fernandez Jr.", "character": "Cholo", "id": 1117232, "credit_id": "52fe4ea09251416c7515ccdd", "cast_id": 7, "profile_path": "/eJvgc6jgVOePGvYbEyI1ZUy7KdG.jpg", "order": 4}, {"name": "Molly Ephraim", "character": "Ali", "id": 141374, "credit_id": "52fe4ea09251416c7515cce1", "cast_id": 8, "profile_path": "/d0jIHbnipL3VpDSk25sqyFT2Y7O.jpg", "order": 5}, {"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe4ea09251416c7515cce5", "cast_id": 9, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 6}, {"name": "Andrew Jacobson", "character": "Jesse", "id": 66517, "credit_id": "52fe4ea09251416c7515cce9", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Crystal Santos", "character": "Santos", "id": 1282218, "credit_id": "52fe4ea09251416c7515cced", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Catherine Toribio", "character": "Penelope", "id": 1282221, "credit_id": "52fe4ea09251416c7515ccf1", "cast_id": 12, "profile_path": null, "order": 9}], "directors": [{"name": "Christopher B. Landon", "department": "Directing", "job": "Director", "credit_id": "52fe4ea09251416c7515ccc3", "profile_path": null, "id": 54248}], "vote_average": 5.5, "runtime": 84}, "14359": {"poster_path": "/cW2ZEfjWsHKIsO0fRjL7NldbbId.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 50907234, "overview": "In 1964, a Catholic school nun questions a priest's ambiguous relationship with a troubled young student, suspecting him of abuse. He denies the charges, and much of the film's quick-fire dialogue tackles themes of religion, morality, and authority.", "video": false, "id": 14359, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Doubt", "tagline": "There is no evidence. There are no witnesses. But for one, there is no doubt.", "vote_count": 79, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0918927", "adult": false, "backdrop_path": "/3cYFrihyj3RijnPtLDlMjQHTx3p.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2008-12-11", "popularity": 0.328206640444467, "original_title": "Doubt", "budget": 20000000, "cast": [{"name": "Amy Adams", "character": "Sister James", "id": 9273, "credit_id": "52fe45ea9251416c75066cf7", "cast_id": 1, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Father Brendan Flynn", "id": 1233, "credit_id": "52fe45ea9251416c75066cfb", "cast_id": 2, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Meryl Streep", "character": "Sister Aloysius Beauvier", "id": 5064, "credit_id": "52fe45ea9251416c75066cff", "cast_id": 3, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 2}, {"name": "Viola Davis", "character": "Mrs. Miller", "id": 19492, "credit_id": "52fe45ea9251416c75066d21", "cast_id": 9, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 3}, {"name": "Alice Drummond", "character": "Sister Veronica", "id": 17488, "credit_id": "53938d7dc3a368642b001d0e", "cast_id": 10, "profile_path": "/f1O8suDhVloKdPvhyltj017SPTo.jpg", "order": 4}], "directors": [{"name": "John Patrick Shanley", "department": "Directing", "job": "Director", "credit_id": "52fe45ea9251416c75066d05", "profile_path": "/qQkpdZyhoslrX5DcfQuaXp87NQv.jpg", "id": 26095}], "vote_average": 6.5, "runtime": 104}, "6171": {"poster_path": "/A85mIkXdJvOwHxIQIEaN147GSLD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75715436, "overview": "Four boyhood pals perform a heroic act and are changed by the powers they gain in return. Years later, on a hunting trip in the Maine woods, they're overtaken by a vicious blizzard that harbors an ominous presence. Challenged to stop an alien force, the friends must first prevent the slaughter of innocent civilians by a military vigilante ... and then overcome a threat to the bond that unites the four of them.", "video": false, "id": 6171, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Dreamcatcher", "tagline": "A circle of friendship. A web of mystery. A pattern of fear.", "vote_count": 125, "homepage": "http://dreamcatchermovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0285531", "adult": false, "backdrop_path": "/5O3OxhgGr7pn1g22fPOaueGwCnn.jpg", "production_companies": [{"name": "Kasdan Pictures", "id": 13040}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Castle Rock Entertainment", "id": 97}, {"name": "NPV Entertainment", "id": 172}, {"name": "WV Films II", "id": 24939}], "release_date": "2003-03-21", "popularity": 0.259633528195335, "original_title": "Dreamcatcher", "budget": 68000000, "cast": [{"name": "Morgan Freeman", "character": "Col. Abraham Curtis", "id": 192, "credit_id": "52fe4442c3a36847f808baa7", "cast_id": 2, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Thomas Jane", "character": "Dr. Henry Devlin", "id": 11155, "credit_id": "52fe4442c3a36847f808baab", "cast_id": 3, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 1}, {"name": "Jason Lee", "character": "Joe 'Beaver' Clarenden", "id": 11662, "credit_id": "52fe4442c3a36847f808baaf", "cast_id": 4, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 2}, {"name": "Damian Lewis", "character": "Gary 'Jonesy' Jones", "id": 20186, "credit_id": "52fe4442c3a36847f808bab3", "cast_id": 5, "profile_path": "/3cQpH6BvgK8C1TmcVYC9BPaICUB.jpg", "order": 3}, {"name": "Timothy Olyphant", "character": "Pete Moore", "id": 18082, "credit_id": "52fe4442c3a36847f808bab7", "cast_id": 6, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 4}, {"name": "Tom Sizemore", "character": "Lt. Owen Underhill", "id": 3197, "credit_id": "52fe4442c3a36847f808babb", "cast_id": 7, "profile_path": "/zmmNvyDm2PNOrBEYFtPQ0Kp62Nb.jpg", "order": 5}, {"name": "Donnie Wahlberg", "character": "Douglas 'Duddits' Cavell", "id": 2680, "credit_id": "52fe4442c3a36847f808babf", "cast_id": 8, "profile_path": "/pfOBnEKWRMJpkJ1l0SMJF8I5z2K.jpg", "order": 6}, {"name": "Mikey Holekamp", "character": "Young Henry", "id": 48462, "credit_id": "52fe4443c3a36847f808baf3", "cast_id": 17, "profile_path": "/vfi5LAyl2znJ5hqY1VuwU6YtoN4.jpg", "order": 7}, {"name": "Reece Thompson", "character": "Young Beaver", "id": 48463, "credit_id": "52fe4443c3a36847f808baf7", "cast_id": 18, "profile_path": "/87u9LekMLrRmli8fV3JPV7wj8zS.jpg", "order": 8}, {"name": "Giacomo Baessato", "character": "Young Jonesy", "id": 33049, "credit_id": "52fe4443c3a36847f808bafb", "cast_id": 19, "profile_path": "/67zoEItDFyl0YdPJNOevUxc5SPq.jpg", "order": 9}, {"name": "Joel Palmer", "character": "Young Pete", "id": 48464, "credit_id": "52fe4443c3a36847f808baff", "cast_id": 20, "profile_path": "/aMYct4B4gu2S2Kvw46XrYLl0RzN.jpg", "order": 10}, {"name": "Andrew Robb", "character": "Young Duddits", "id": 48465, "credit_id": "52fe4443c3a36847f808bb03", "cast_id": 21, "profile_path": "/qZ5Cu3lL1DOW5oQL4TtF4OhxyrX.jpg", "order": 11}, {"name": "Rosemary Dunsmore", "character": "Roberta Cavell", "id": 44275, "credit_id": "52fe4443c3a36847f808bb07", "cast_id": 23, "profile_path": "/qdEePC5X5yvnKXVv9lsOAp1EOGl.jpg", "order": 13}, {"name": "Michael O'Neill", "character": "General Matheson", "id": 21710, "credit_id": "52fe4443c3a36847f808bb0b", "cast_id": 24, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 14}, {"name": "Eric Keenleyside", "character": "Rick McCarthy", "id": 2250, "credit_id": "52fe4443c3a36847f808bb0f", "cast_id": 25, "profile_path": "/iYZq5nqJxcU3PPSkKBe3NH88w8Z.jpg", "order": 15}], "directors": [{"name": "Lawrence Kasdan", "department": "Directing", "job": "Director", "credit_id": "52fe4442c3a36847f808baa3", "profile_path": "/pBAB9NAMRhL2IBYcgLu6P1CdXbW.jpg", "id": 8844}], "vote_average": 5.2, "runtime": 136}, "2395": {"poster_path": "/tKL0RJOeuccc1rrpcDKg8qhedIz.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 132900000, "overview": "Ast\u00e9rix and Ob\u00e9lix have to win the Olympic Games in order to help their friend Alafolix marry Princess Irina (portrayed by supermodel Vanessa Hessler). Brutus (Beno\u00eet Poelvoorde) uses every trick in the book to have his own team win the game, and get rid of his father Julius Caesar (Alain Delon) in the process.", "video": false, "id": 2395, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Asterix at the Olympic Games", "tagline": "", "vote_count": 77, "homepage": "http://www.asterixauxjeuxolympiques.com/index.php", "belongs_to_collection": {"backdrop_path": "/vm0i4KIscrTiUsri21z1SOIG4fo.jpg", "poster_path": "/sC6NY40I794YnSNxgDDCnX4B3Se.jpg", "id": 2396, "name": "Asterix and Obelix Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0463872", "adult": false, "backdrop_path": "/ryjrqoX1ST2tNS18M3KlVdBJnro.jpg", "production_companies": [{"name": "TF1 Films Productions", "id": 356}, {"name": "Constantin Film", "id": 47}, {"name": "Path\u00e9 Renn Productions", "id": 866}, {"name": "La Petite Reine", "id": 1992}, {"name": "Tri Pictures", "id": 1994}, {"name": "Sorolla Films", "id": 1995}, {"name": "Novo RPI", "id": 1996}, {"name": "Canal+", "id": 5358}, {"name": "uFilm", "id": 8676}, {"name": "Canal+ Espa\u00f1a", "id": 9335}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 11921}, {"name": "Les Editions Albert Ren\u00e9", "id": 20409}], "release_date": "2008-01-13", "popularity": 0.952284600570931, "original_title": "Ast\u00e9rix aux Jeux Olympiques", "budget": 97250400, "cast": [{"name": "Clovis Cornillac", "character": "Asterix", "id": 24891, "credit_id": "52fe4354c3a36847f804c0c1", "cast_id": 15, "profile_path": "/mJSv0RaNOVcZNs9lN4I3oSou93A.jpg", "order": 0}, {"name": "G\u00e9rard Depardieu", "character": "Obelix", "id": 16927, "credit_id": "52fe4354c3a36847f804c0c5", "cast_id": 16, "profile_path": "/kWGuy8UI8y3uqqCVoFvBVBe8w0J.jpg", "order": 1}, {"name": "Franck Dubosc", "character": "Troubadix", "id": 24893, "credit_id": "52fe4354c3a36847f804c0c9", "cast_id": 17, "profile_path": "/4YV7cy1mBF48wdrf9Std7a94Dv2.jpg", "order": 2}, {"name": "Jos\u00e9 Garcia", "character": "Vielverdrus", "id": 24895, "credit_id": "52fe4354c3a36847f804c0cd", "cast_id": 18, "profile_path": "/9OlwiWiBgxCGd85HcxuljDXZn3U.jpg", "order": 3}, {"name": "St\u00e9phane Rousseau", "character": "Romantix", "id": 24896, "credit_id": "52fe4354c3a36847f804c0d1", "cast_id": 19, "profile_path": "/6jvSD50ZebWufJ6oc0KCFyz2x7H.jpg", "order": 4}, {"name": "Jean-Pierre Cassel", "character": "Miraculix", "id": 19162, "credit_id": "52fe4354c3a36847f804c0d5", "cast_id": 20, "profile_path": "/yWIAIvRdx0omV9ZOUwLINzHKois.jpg", "order": 5}, {"name": "M\u00f3nica Cruz", "character": "Esmeralda", "id": 24899, "credit_id": "52fe4354c3a36847f804c0d9", "cast_id": 21, "profile_path": "/zoi3DC3KjQjLdy0jESmmdwzdNGY.jpg", "order": 6}, {"name": "Alain Delon", "character": "Julus C\u00e4sar", "id": 15135, "credit_id": "52fe4354c3a36847f804c0dd", "cast_id": 22, "profile_path": "/jNXHnLspNoh1ZOH7gwCkMrjLA7R.jpg", "order": 7}, {"name": "Beno\u00eet Poelvoorde", "character": "Brutus", "id": 47820, "credit_id": "52fe4354c3a36847f804c111", "cast_id": 31, "profile_path": "/aoyfdOFUwlaKKSgAAV7No7tkIT.jpg", "order": 8}, {"name": "Vanessa Hessler", "character": "Prinzessin Irina", "id": 47821, "credit_id": "52fe4354c3a36847f804c115", "cast_id": 32, "profile_path": "/kntvEAgUVwumQNk6BaTztiRQgLa.jpg", "order": 9}, {"name": "Michael Herbig", "character": "Redkeinstus", "id": 18072, "credit_id": "52fe4354c3a36847f804c119", "cast_id": 33, "profile_path": "/n4HuBxCVORNVdZaPQa2sanSFNMF.jpg", "order": 10}, {"name": "Santiago Segura", "character": "Doktormabus", "id": 10847, "credit_id": "52fe4354c3a36847f804c11d", "cast_id": 34, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 11}, {"name": "Bouli Lanners", "character": "K\u00f6nig Aderlas", "id": 47822, "credit_id": "52fe4354c3a36847f804c121", "cast_id": 35, "profile_path": "/nnM1Yq5sodVTC95oav9iPK9ZiNw.jpg", "order": 12}, {"name": "Adriana Sklena\u0159\u00edkov\u00e1", "character": "Madame Methusalix", "id": 47824, "credit_id": "52fe4354c3a36847f804c125", "cast_id": 37, "profile_path": "/oBn7gKG25NYvRgm6gMkNdPVl9Np.jpg", "order": 13}, {"name": "J\u00e9r\u00f4me Le Banner", "character": "Claudius Muscullus", "id": 47825, "credit_id": "52fe4354c3a36847f804c129", "cast_id": 38, "profile_path": "/eKwzGpMOFOb3I3fNFwlbC6e3eMC.jpg", "order": 14}, {"name": "Alexandre Astier", "character": "Obstinatus", "id": 47826, "credit_id": "52fe4354c3a36847f804c12d", "cast_id": 39, "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "order": 15}, {"name": "Luca Bizzarri", "character": "Alpha", "id": 47827, "credit_id": "52fe4354c3a36847f804c131", "cast_id": 40, "profile_path": "/t1qJo5IjLPYBpSjnkSKiMZ0q9vi.jpg", "order": 16}, {"name": "Paolo Kessisoglu", "character": "Beta", "id": 47828, "credit_id": "52fe4354c3a36847f804c135", "cast_id": 41, "profile_path": "/yqqTokJ6hWT0wEMchTmM4QKe4pJ.jpg", "order": 17}, {"name": "Elie Semoun", "character": "Omega", "id": 47829, "credit_id": "52fe4354c3a36847f804c139", "cast_id": 42, "profile_path": "/fdVGGPIf4sXIZ2yiBVgEySUK7CK.jpg", "order": 18}, {"name": "Francis Lalanne", "character": "Lalanix", "id": 228780, "credit_id": "52fe4354c3a36847f804c141", "cast_id": 44, "profile_path": "/zuSyhEGOOx69o24D3ffqsIH72Yy.jpg", "order": 20}, {"name": "Michael Schumacher", "character": "Schumix", "id": 216299, "credit_id": "52fe4354c3a36847f804c145", "cast_id": 46, "profile_path": "/x3tFUWZiUNh5TdIzQ0nWfBeGJvB.jpg", "order": 21}, {"name": "Zinedine Zidane", "character": "Num\u00e9rodis", "id": 19731, "credit_id": "52fe4354c3a36847f804c149", "cast_id": 47, "profile_path": "/vIoeQEIg8XdMFYtUfas2F1BDVm2.jpg", "order": 22}, {"name": "Tony Parker", "character": "Tonus Parker", "id": 1177654, "credit_id": "52fe4354c3a36847f804c14d", "cast_id": 48, "profile_path": "/dfcLocFcH6e4wCKhi3wR7hmlIjt.jpg", "order": 23}, {"name": "Sim", "character": "Agecanonix", "id": 35957, "credit_id": "552af867c3a3683e52003d95", "cast_id": 49, "profile_path": "/eTUYBLL1hTDQvrsALIb6tnp6Vpm.jpg", "order": 24}], "directors": [{"name": "Fr\u00e9d\u00e9ric Forestier", "department": "Directing", "job": "Director", "credit_id": "52fe4354c3a36847f804c07b", "profile_path": "/qmTmDaWdwzbm3ppoALxi7gU5xFz.jpg", "id": 24886}, {"name": "Thomas Langmann", "department": "Directing", "job": "Director", "credit_id": "52fe4354c3a36847f804c087", "profile_path": "/3dUr93spIPeXeAwi6wRqfDekewz.jpg", "id": 20674}], "vote_average": 4.4, "runtime": 116}, "10589": {"poster_path": "/seEavscJqc1TuHfSZMeXQwohkNf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61347797, "overview": "Two master thieves (Brosnan and Hayek) are finally retiring after one last succesful mission. Residing in their own tropical paradise, their old nemesis, FBI Agent Stan P. Lloyd shows up to make sure they really are retired. Docked in the port is an ocean liner called the \"Diamond Cruise\" and Stan is convinced that they're not really retired at all, and that this is the next set up.", "video": false, "id": 10589, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "After the Sunset", "tagline": "Who will walk away?", "vote_count": 68, "homepage": "http://www.afterthesunset.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367479", "adult": false, "backdrop_path": "/8Ghuhi363sv5NNA3ckIJUhhYRXk.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}, {"name": "Firm Films", "id": 1838}], "release_date": "2004-11-12", "popularity": 1.11637968457863, "original_title": "After the Sunset", "budget": 60000000, "cast": [{"name": "Pierce Brosnan", "character": "Max Burdett", "id": 517, "credit_id": "52fe438d9251416c75014e5d", "cast_id": 12, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Lola Cirillo", "id": 3136, "credit_id": "52fe438d9251416c75014e67", "cast_id": 14, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Woody Harrelson", "character": "Stan Lloyd", "id": 57755, "credit_id": "52fe438d9251416c75014e83", "cast_id": 19, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 2}, {"name": "Troy Garity", "character": "Luc", "id": 31711, "credit_id": "52fe438d9251416c75014e87", "cast_id": 21, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 3}, {"name": "Russell Hornsby", "character": "Jean-Paul", "id": 62649, "credit_id": "52fe438d9251416c75014e8b", "cast_id": 22, "profile_path": "/sLWQehUFWePO3jVSJLBCHfJYi1o.jpg", "order": 4}, {"name": "Rex Linn", "character": "Agent Kowalski", "id": 16937, "credit_id": "52fe438d9251416c75014e95", "cast_id": 25, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 5}, {"name": "Michael Bowen", "character": "FBI Driver", "id": 2234, "credit_id": "52fe438d9251416c75014e99", "cast_id": 26, "profile_path": "/xGNcy5uCe0Ke5vqC7oZlOV3GGDx.jpg", "order": 6}, {"name": "Mark Moses", "character": "Lakers FBI Agent", "id": 11889, "credit_id": "52fe438d9251416c75014e9d", "cast_id": 27, "profile_path": "/98Pkb6phOJldkCHud8MXt7ftFL4.jpg", "order": 7}, {"name": "Chris Penn", "character": "Rowdy Fan", "id": 2969, "credit_id": "52fe438d9251416c75014ea1", "cast_id": 28, "profile_path": "/57imnLRyaOowXElsxNESvhG1UZk.jpg", "order": 8}, {"name": "Obba Babatunde", "character": "Zacharias", "id": 52057, "credit_id": "52fe438d9251416c75014ea5", "cast_id": 29, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 9}, {"name": "Gianni Russo", "character": "Clippers Fan", "id": 3095, "credit_id": "52fe438d9251416c75014ea9", "cast_id": 30, "profile_path": "/ttNwx2hFyQ7RkhAFhcfXtOYr6md.jpg", "order": 10}, {"name": "Don Cheadle", "character": "Henri Moor\u00e9", "id": 1896, "credit_id": "52fe438d9251416c75014eb1", "cast_id": 32, "profile_path": "/4PvWfLvABO5n1ZfzK76vol9Bqae.jpg", "order": 12}, {"name": "Tony Ledard", "character": "Referee", "id": 65696, "credit_id": "52fe438d9251416c75014eb9", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Shaquille O'Neal", "character": "Himself", "id": 35806, "credit_id": "52fe438d9251416c75014eb5", "cast_id": 33, "profile_path": "/ZyJsGaqE6DxcFkdvxAoq5PfDyl.jpg", "order": 14}, {"name": "Naomie Harris", "character": "Sophie", "id": 2038, "credit_id": "52fe438d9251416c75014ebd", "cast_id": 35, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 15}, {"name": "Andrew Fiscella", "character": "Popcorn Victim", "id": 65699, "credit_id": "52fe438d9251416c75014ec5", "cast_id": 37, "profile_path": "/1N7GzORPgFgHLeHHK09NJNkTAL4.jpg", "order": 16}, {"name": "Karl Malone", "character": "Himself", "id": 65697, "credit_id": "52fe438d9251416c75014ec1", "cast_id": 36, "profile_path": "/d4l7fbcGy6oLSXN8eDtzdbTmBoT.jpg", "order": 17}, {"name": "Gary Payton", "character": "Himself", "id": 65698, "credit_id": "52fe438d9251416c75014ec9", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Mykelti Williamson", "character": "Agent Stafford", "id": 34, "credit_id": "52fe438d9251416c75014eeb", "cast_id": 44, "profile_path": "/8TTxzpuvvpw2tB8xZBCDslYupNU.jpg", "order": 19}, {"name": "Alan Dale", "character": "Security Chief", "id": 52760, "credit_id": "52fe438d9251416c75014eef", "cast_id": 45, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 20}, {"name": "Robert Curtis Brown", "character": "Lakers FBI Agent", "id": 233298, "credit_id": "532ffa529251413a78005181", "cast_id": 46, "profile_path": "/1plgmYJoFzTUJwPD1YbMtl9NQxD.jpg", "order": 21}], "directors": [{"name": "Brett Ratner", "department": "Directing", "job": "Director", "credit_id": "52fe438d9251416c75014ecf", "profile_path": "/957qMp4h7kLlWehsDhznI39G7zr.jpg", "id": 11091}], "vote_average": 6.0, "runtime": 97}, "55347": {"poster_path": "/gE6VUgK9zS0QVD5brMKSF9knUy2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5332926, "overview": "A young man is rocked by two announcements from his elderly father: that he has terminal cancer, and that he has a young male lover.", "video": false, "id": 55347, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Beginners", "tagline": "When it comes to relationships, we\u2019re all beginners.", "vote_count": 92, "homepage": "http://focusfeatures.com/beginners", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1532503", "adult": false, "backdrop_path": "/ySQqn2UcQOhuc2UxGhHhEaYEMxY.jpg", "production_companies": [{"name": "Olympus Pictures", "id": 7400}], "release_date": "2010-09-11", "popularity": 0.431624875675911, "original_title": "Beginners", "budget": 3200000, "cast": [{"name": "Ewan McGregor", "character": "Oliver", "id": 3061, "credit_id": "52fe48c7c3a36847f8178f7f", "cast_id": 3, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Christopher Plummer", "character": "Hal", "id": 290, "credit_id": "52fe48c7c3a36847f8178f83", "cast_id": 4, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 1}, {"name": "M\u00e9lanie Laurent", "character": "Anna", "id": 19119, "credit_id": "52fe48c7c3a36847f8178f87", "cast_id": 5, "profile_path": "/n10Yr6LtckIcgw3EdPxkVjwkBYS.jpg", "order": 2}, {"name": "Goran Vi\u0161nji\u0107", "character": "Andy", "id": 5725, "credit_id": "52fe48c7c3a36847f8178f8b", "cast_id": 6, "profile_path": "/lIMvB4XqJnKuoCrVvbC8Ai5ZqJ6.jpg", "order": 3}, {"name": "Kai Lennox", "character": "Elliot", "id": 21633, "credit_id": "52fe48c7c3a36847f8178f8f", "cast_id": 7, "profile_path": "/m0mkP40z9aIQ0fYZxXmphdhpWk8.jpg", "order": 4}, {"name": "Mary Page Keller", "character": "Georgia", "id": 82653, "credit_id": "52fe48c7c3a36847f8178f93", "cast_id": 8, "profile_path": "/gY4phh7b54ttOplZLMEdP0DAsEe.jpg", "order": 5}, {"name": "Keegan Boos", "character": "Young Oliver", "id": 235847, "credit_id": "52fe48c7c3a36847f8178f97", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "China Shavers", "character": "Shauna", "id": 235848, "credit_id": "52fe48c7c3a36847f8178f9b", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Melissa Tang", "character": "Liz", "id": 212778, "credit_id": "52fe48c7c3a36847f8178f9f", "cast_id": 11, "profile_path": "/x3emNzx65NPNoYcL13iI6fHC5I0.jpg", "order": 8}, {"name": "Amanda Payton", "character": "Party Person", "id": 211768, "credit_id": "52fe48c7c3a36847f8178fa3", "cast_id": 12, "profile_path": "/6kgBc9pUtMhGqP6khaxVcKwuOfp.jpg", "order": 9}, {"name": "Luke Dilberto", "character": "Green Witch", "id": 235849, "credit_id": "52fe48c7c3a36847f8178fa7", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Lou Taylor Pucci", "character": "Magician", "id": 17441, "credit_id": "52fe48c7c3a36847f8178fab", "cast_id": 14, "profile_path": "/bl2iZAdBRjq9I7LhZTmxfxKdNcQ.jpg", "order": 11}, {"name": "Jennifer Lauren Grant", "character": "Record Company Rep", "id": 97923, "credit_id": "52fe48c7c3a36847f8178faf", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Reynaldo Pacheco", "character": "Julio", "id": 235850, "credit_id": "52fe48c7c3a36847f8178fb3", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Jodi Long", "character": "Dr. Long", "id": 44059, "credit_id": "52fe48c7c3a36847f8178fb7", "cast_id": 17, "profile_path": "/1Jc60wX4lOYwRPTonHDPI8l3Msv.jpg", "order": 14}, {"name": "Bruce French", "character": "Dr. Wright", "id": 157582, "credit_id": "52fe48c7c3a36847f8178fbb", "cast_id": 18, "profile_path": "/cH88DF3XQGS3hIkkveAiObPyAOy.jpg", "order": 15}, {"name": "Leslie Shea", "character": "ICU Nurse #1", "id": 235851, "credit_id": "52fe48c7c3a36847f8178fbf", "cast_id": 19, "profile_path": null, "order": 16}, {"name": "Michael Chieffo", "character": "Hal's Priest", "id": 112053, "credit_id": "52fe48c7c3a36847f8178fc3", "cast_id": 20, "profile_path": null, "order": 17}, {"name": "Jennifer Hasty", "character": "Secretary", "id": 191897, "credit_id": "52fe48c7c3a36847f8178fc7", "cast_id": 21, "profile_path": "/p2MKBorcVylJoYl7XKNVd4EsB9s.jpg", "order": 18}, {"name": "Rodney Saulsberry", "character": "1978 Museum Staff", "id": 159068, "credit_id": "52fe48c7c3a36847f8178fcb", "cast_id": 22, "profile_path": null, "order": 19}, {"name": "June Saunders", "character": "1978 Fancy Woman", "id": 235852, "credit_id": "52fe48c7c3a36847f8178fcf", "cast_id": 23, "profile_path": null, "order": 20}, {"name": "Catherine McGoohan", "character": "1978 Older Woman", "id": 65749, "credit_id": "52fe48c7c3a36847f8178fd3", "cast_id": 24, "profile_path": "/oVFDGAuDNM5wMwBqggIfnePVZla.jpg", "order": 21}, {"name": "Terry Walters", "character": "Terse Nurse", "id": 142263, "credit_id": "52fe48c7c3a36847f8178fd7", "cast_id": 25, "profile_path": null, "order": 22}, {"name": "Lana Young", "character": "ICU Nurse #2", "id": 44578, "credit_id": "52fe48c7c3a36847f8178fdb", "cast_id": 26, "profile_path": null, "order": 23}, {"name": "Algerita Wynn Lewis", "character": "Nice Nurse", "id": 66664, "credit_id": "52fe48c7c3a36847f8178fdf", "cast_id": 27, "profile_path": null, "order": 24}, {"name": "Regine Redwing", "character": "Strict Nurse", "id": 235853, "credit_id": "52fe48c7c3a36847f8178fe3", "cast_id": 28, "profile_path": null, "order": 25}, {"name": "Sunday Burke", "character": "Home Nurse #1", "id": 235854, "credit_id": "52fe48c7c3a36847f8178fe7", "cast_id": 29, "profile_path": null, "order": 26}, {"name": "Patrick L. Birkett", "character": "Hal Look-Alike", "id": 235855, "credit_id": "52fe48c7c3a36847f8178feb", "cast_id": 30, "profile_path": null, "order": 27}, {"name": "Sabera Wise", "character": "Skating Rink Manager", "id": 235856, "credit_id": "52fe48c7c3a36847f8178fef", "cast_id": 31, "profile_path": null, "order": 28}, {"name": "Rafael J. Noble", "character": "Brian", "id": 168913, "credit_id": "52fe48c7c3a36847f8178ff3", "cast_id": 32, "profile_path": null, "order": 29}, {"name": "Jose Yenque", "character": "Robert", "id": 118045, "credit_id": "52fe48c7c3a36847f8178ff7", "cast_id": 33, "profile_path": "/i4WQ5gbb337in746o176trTFPNZ.jpg", "order": 30}], "directors": [{"name": "Mike Mills", "department": "Directing", "job": "Director", "credit_id": "52fe48c7c3a36847f8178f75", "profile_path": "/or8FfvzxImBemZ7zI07oVRkRNPQ.jpg", "id": 17439}], "vote_average": 7.0, "runtime": 105}, "22586": {"poster_path": "/lHx67Tg3vrMi0EveONGoREyTGRk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "As children, Prince Derek and Princess Odette are forced to spend their summers together by their widowed parents, who hope that the two will eventually fall in love and marry, so that the kingdoms of the two will be united. As children and adolescents, Derek and Odette can't stand each other, but as young adults they begin to see each other in a different light and fall in love with each other. B", "video": false, "id": 22586, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Swan Princess", "tagline": "An enchanting classic destined to capture your heart and free your spirit.", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wxKt5KHvMYUSLHvyPf2xj64y3dJ.jpg", "poster_path": "/3qBPAUFUMOOT9KqUEYXWAKy93Ge.jpg", "id": 144200, "name": "The Swan Princess Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0111333", "adult": false, "backdrop_path": "/emhVT7rsvPbhkIEmlXVQ7ZcJxma.jpg", "production_companies": [{"name": "NEST Family Entertainment", "id": 4107}, {"name": "Rich Animation Studios", "id": 4108}], "release_date": "1994-11-18", "popularity": 0.42247952565896, "original_title": "The Swan Princess", "budget": 0, "cast": [{"name": "Michelle Nicastro", "character": "Adult Princess Odette (voice)", "id": 9260, "credit_id": "52fe4447c3a368484e019f1d", "cast_id": 1, "profile_path": "/mwaoMLHrMKFLHKyYqlVAqdfsJuY.jpg", "order": 0}, {"name": "Howard McGillin", "character": "Adult Prince Derek (voice)", "id": 88946, "credit_id": "52fe4447c3a368484e019f21", "cast_id": 2, "profile_path": "/3e8MACqsCYhPIjtCOCSapPLZPZ2.jpg", "order": 1}, {"name": "Jack Palance", "character": "Lord Rothbart (voice)", "id": 3785, "credit_id": "52fe4447c3a368484e019f25", "cast_id": 3, "profile_path": "/RKqKZ2rRDNkv0jaQscDARfRh9D.jpg", "order": 2}, {"name": "John Cleese", "character": "Jean-Bob (voice)", "id": 8930, "credit_id": "52fe4447c3a368484e019f29", "cast_id": 4, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 3}, {"name": "Steven Wright", "character": "Speed (voice)", "id": 3214, "credit_id": "52fe4447c3a368484e019f2d", "cast_id": 5, "profile_path": "/m9827iUNPGTbAsfjHD9tpMCXYbR.jpg", "order": 4}, {"name": "Sandy Duncan", "character": "Queen Uberta (voice)", "id": 88947, "credit_id": "52fe4447c3a368484e019f31", "cast_id": 6, "profile_path": "/AuNmo9KppBRuHQpyAiSELrZ0R7A.jpg", "order": 5}, {"name": "Steve Vinovich", "character": "Puffin (voice)", "id": 88948, "credit_id": "52fe4447c3a368484e019f35", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Mark Harelik", "character": "Lord Rogers (voice)", "id": 88949, "credit_id": "52fe4447c3a368484e019f39", "cast_id": 8, "profile_path": "/iiWjqkiQc9StJjC0KTSjg5AZFSa.jpg", "order": 7}, {"name": "Joel McKinnon Miller", "character": "Bromley (voice)", "id": 88950, "credit_id": "52fe4447c3a368484e019f3d", "cast_id": 9, "profile_path": "/3Ogco60XoPVmbLTzqmhgxDgsQBW.jpg", "order": 8}, {"name": "Dakin Matthews", "character": "King William (voice)", "id": 43364, "credit_id": "52fe4447c3a368484e019f41", "cast_id": 10, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 9}], "directors": [{"name": "Richard Rich", "department": "Directing", "job": "Director", "credit_id": "52fe4447c3a368484e019f47", "profile_path": null, "id": 107274}], "vote_average": 6.5, "runtime": 90}, "9754": {"poster_path": "/8L6Cegh3Sk4XKLw5oVhKyGWQqs0.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 82800000, "overview": "State-of-the-art security system creator Jack Stanfield has cemented his reputation as a man who's thought of everything. But when a criminal finds a way into Jack's personal life, everything Jack holds dear is suddenly at stake.", "video": false, "id": 9754, "genres": [{"id": 53, "name": "Thriller"}], "title": "Firewall", "tagline": "Nothing Is More Dangerous Than A Man With Everything To Lose.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0408345", "adult": false, "backdrop_path": "/jC6pdiupSoUuuQdQ39cWxG6OiA1.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Beacon Pictures", "id": 10157}, {"name": "Thunder Road Pictures", "id": 3528}, {"name": "Jon Shestack Productions", "id": 10991}], "release_date": "2006-02-10", "popularity": 0.294890208746306, "original_title": "Firewall", "budget": 45000000, "cast": [{"name": "Harrison Ford", "character": "Jack Stanfield", "id": 3, "credit_id": "52fe4527c3a36847f80bf513", "cast_id": 1, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Paul Bettany", "character": "Bill Cox", "id": 6162, "credit_id": "52fe4527c3a36847f80bf517", "cast_id": 2, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 1}, {"name": "Virginia Madsen", "character": "Beth Stanfield", "id": 12519, "credit_id": "52fe4527c3a36847f80bf51b", "cast_id": 3, "profile_path": "/opdvsRunQgmw5AuGGpyAnQCz0q8.jpg", "order": 2}, {"name": "Carly Schroeder", "character": "Sarah Stanfield", "id": 58899, "credit_id": "52fe4527c3a36847f80bf51f", "cast_id": 4, "profile_path": "/ihcZ1cj61Qz5vRoCdtJDxPcqArq.jpg", "order": 3}, {"name": "Jimmy Bennett", "character": "Andy Stanfield", "id": 6860, "credit_id": "52fe4527c3a36847f80bf523", "cast_id": 5, "profile_path": "/foP9jZ5EeqRzT3AoUEDvl3U6vbh.jpg", "order": 4}, {"name": "Mary Lynn Rajskub", "character": "Janet Stone", "id": 25884, "credit_id": "52fe4527c3a36847f80bf527", "cast_id": 6, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 5}, {"name": "Gail Ann Lewis", "character": "Bank Employee #1", "id": 58900, "credit_id": "52fe4527c3a36847f80bf52b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Robert Patrick", "character": "Gary Mitchell", "id": 418, "credit_id": "52fe4527c3a36847f80bf52f", "cast_id": 8, "profile_path": "/dpUIbzLpExv69faSRyww8A4ydxf.jpg", "order": 7}, {"name": "Robert Forster", "character": "Harry", "id": 5694, "credit_id": "52fe4527c3a36847f80bf533", "cast_id": 9, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 8}, {"name": "Alan Arkin", "character": "Arlin Forester", "id": 1903, "credit_id": "52fe4527c3a36847f80bf537", "cast_id": 10, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 9}, {"name": "Matthew Currie Holmes", "character": "Bobby", "id": 58901, "credit_id": "52fe4527c3a36847f80bf53b", "cast_id": 11, "profile_path": "/aW2pvKZC0iMSmriIoeTwkSENu47.jpg", "order": 10}, {"name": "Candus Churchill", "character": "Betty", "id": 41432, "credit_id": "52fe4527c3a36847f80bf53f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "David Lewis", "character": "Rich", "id": 4095, "credit_id": "52fe4527c3a36847f80bf543", "cast_id": 13, "profile_path": "/jnQ7KVRV72fkBzU629XlUPsupTH.jpg", "order": 12}, {"name": "Zahf Paroo", "character": "Ravi", "id": 58902, "credit_id": "52fe4527c3a36847f80bf547", "cast_id": 14, "profile_path": "/jFrVBricxCWGIRYV7XxvNYM9Jcp.jpg", "order": 13}, {"name": "Pat Jenkinson", "character": "Laurie", "id": 58903, "credit_id": "52fe4527c3a36847f80bf54b", "cast_id": 15, "profile_path": null, "order": 14}], "directors": [{"name": "Richard Loncraine", "department": "Directing", "job": "Director", "credit_id": "52fe4527c3a36847f80bf551", "profile_path": "/j700yY5SyI1EZegFpL4h77Otu5W.jpg", "id": 33315}], "vote_average": 5.6, "runtime": 105}, "14411": {"poster_path": "/6LELf4ZzVBJwR9mNq86Mf5QVERS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26288320, "overview": "The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.", "video": false, "id": 14411, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Sinbad: Legend of the Seven Seas", "tagline": "", "vote_count": 67, "homepage": "http://sinbad-themovie.com/main.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0165982", "adult": false, "backdrop_path": "/bqzJsag3BAx1d6GkS3lthC2XCga.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}, {"name": "DreamWorks SKG", "id": 27}], "release_date": "2003-07-02", "popularity": 0.549273587082214, "original_title": "Sinbad: Legend of the Seven Seas", "budget": 60000000, "cast": [{"name": "Brad Pitt", "character": "Sinbad", "id": 287, "credit_id": "52fe45f09251416c75067ad5", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Catherine Zeta-Jones", "character": "Marina", "id": 1922, "credit_id": "52fe45f09251416c75067ad9", "cast_id": 2, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 1}, {"name": "Michelle Pfeiffer", "character": "Eris", "id": 1160, "credit_id": "52fe45f09251416c75067add", "cast_id": 3, "profile_path": "/nhfGgJMRJvAxIEm1JJM7DOYutwy.jpg", "order": 2}, {"name": "Joseph Fiennes", "character": "Proteus", "id": 12763, "credit_id": "52fe45f09251416c75067ae1", "cast_id": 4, "profile_path": "/qbGRmhRN3f2prrgcTDmBGAa46Qd.jpg", "order": 3}, {"name": "Dennis Haysbert", "character": "Kale", "id": 352, "credit_id": "53b051cc0e0a26598c00693e", "cast_id": 9, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 4}, {"name": "Timothy West", "character": "Dymas", "id": 35257, "credit_id": "53b051de0e0a265980006713", "cast_id": 10, "profile_path": "/PsZdCMfSBQA8wmq84PE51ATUhV.jpg", "order": 5}, {"name": "Timothy West", "character": "Rat", "id": 35257, "credit_id": "53b051f20e0a265983006659", "cast_id": 11, "profile_path": "/PsZdCMfSBQA8wmq84PE51ATUhV.jpg", "order": 6}, {"name": "Raman Hui", "character": "Jin", "id": 12099, "credit_id": "53b052030e0a26598c006943", "cast_id": 12, "profile_path": "/BmPYRLBeb2Ln881ihfemK1lo4w.jpg", "order": 7}, {"name": "Chung Chan", "character": "Li", "id": 1335620, "credit_id": "53b0521f0e0a265989006663", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Jim Cummings", "character": "Luca", "id": 12077, "credit_id": "53b052320e0a26598c00694b", "cast_id": 14, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 9}, {"name": "Conrad Vernon", "character": "Jed", "id": 12080, "credit_id": "53b052410e0a265979006677", "cast_id": 15, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 10}, {"name": "Andrew Birch", "character": "Grum / Chum", "id": 1335621, "credit_id": "53b052600e0a26598900666e", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Chris Miller", "character": "Tower guard", "id": 1335622, "credit_id": "53b052780e0a26598c006952", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Tim Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe45f09251416c75067ae7", "profile_path": null, "id": 52870}, {"name": "Patrick Gilmore", "department": "Directing", "job": "Director", "credit_id": "52fe45f09251416c75067af3", "profile_path": null, "id": 1205756}], "vote_average": 6.4, "runtime": 86}, "1571": {"poster_path": "/8czarUCdvqPnulkLX8mdXyrLk2D.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 383531464, "overview": "John McClane is back and badder than ever, and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.", "video": false, "id": 1571, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Live Free or Die Hard", "tagline": "The old school cop is back!", "vote_count": 951, "homepage": "http://www.livefreeordiehard.com/", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0337978", "adult": false, "backdrop_path": "/yo3LesueMprtgjRiIRmjiIrFIKj.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Cheyenne Enterprises", "id": 890}, {"name": "Wintergreen Productions", "id": 11845}], "release_date": "2007-06-21", "popularity": 1.87887230176146, "original_title": "Live Free or Die Hard", "budget": 110000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe42fec3a36847f8032857", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Mary Elizabeth Winstead", "character": "Lucy McClane", "id": 17628, "credit_id": "52fe42fec3a36847f803285b", "cast_id": 2, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 1}, {"name": "Justin Long", "character": "Matthew 'Matt' Farrell", "id": 15033, "credit_id": "52fe42fec3a36847f803285f", "cast_id": 3, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 2}, {"name": "Timothy Olyphant", "character": "Thomas Gabriel", "id": 18082, "credit_id": "52fe42fec3a36847f8032863", "cast_id": 4, "profile_path": "/qPqm3mx3xzROFjlSGvh5dqR0XtV.jpg", "order": 3}, {"name": "Maggie Q", "character": "Mai Linh", "id": 21045, "credit_id": "52fe42fec3a36847f80328b5", "cast_id": 18, "profile_path": "/xPqbBTBJucEyRGtmWk5wP6PB986.jpg", "order": 4}, {"name": "Yorgo Constantine", "character": "Russo", "id": 21051, "credit_id": "52fe42fec3a36847f80328b9", "cast_id": 20, "profile_path": "/e5kenJiOgpX9bvldQibR8ODpm4U.jpg", "order": 6}, {"name": "Kevin Smith", "character": "The Warlock", "id": 19303, "credit_id": "52fe42fec3a36847f80328bd", "cast_id": 22, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 7}, {"name": "Cliff Curtis", "character": "Bowman", "id": 7248, "credit_id": "52fe42fec3a36847f80328c1", "cast_id": 23, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 8}, {"name": "Cyril Raffaelli", "character": "Rand", "id": 21946, "credit_id": "52fe42fec3a36847f80328c5", "cast_id": 24, "profile_path": "/4VUUp5gzLrfcpkumkpCrTEGpoBz.jpg", "order": 9}, {"name": "Jonathan Sadowski", "character": "Trey", "id": 21047, "credit_id": "52fe42fec3a36847f80328e1", "cast_id": 29, "profile_path": "/lTWNXJ5y7RlZ4ia1REb1RocKTxE.jpg", "order": 10}, {"name": "Andrew Friedman", "character": "Casper", "id": 74124, "credit_id": "52fe42fec3a36847f80328e5", "cast_id": 30, "profile_path": "/kIQj1KGXJAovEFbUOfren84UDoq.jpg", "order": 11}, {"name": "Chris Palermo", "character": "Del", "id": 35546, "credit_id": "52fe42fec3a36847f80328f5", "cast_id": 33, "profile_path": "/tt6esR3LjJ3XOVknYzCTXdHtpii.jpg", "order": 12}, {"name": "Sung Kang", "character": "Raj", "id": 61697, "credit_id": "52fe42fec3a36847f80328f9", "cast_id": 34, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 13}, {"name": "\u017deljko Ivanek", "character": "Agent Molina", "id": 6752, "credit_id": "52fe42fec3a36847f80328fd", "cast_id": 35, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 14}, {"name": "Christina Chang", "character": "Taylor", "id": 1215689, "credit_id": "52fe42fec3a36847f8032901", "cast_id": 36, "profile_path": "/gwUBGb6l1Qr1l1Q5yVQ3nbMHxhA.jpg", "order": 15}, {"name": "Jake McDorman", "character": "Jim", "id": 94791, "credit_id": "52fe42fec3a36847f8032905", "cast_id": 37, "profile_path": "/7DHDZrBne3diRwoWirg9djgKzTg.jpg", "order": 16}, {"name": "Allen Maldonado", "character": "Goatee", "id": 141432, "credit_id": "52fe42fec3a36847f8032909", "cast_id": 38, "profile_path": "/yjVKDl9IMrkOUk0ANyFZtOkdM05.jpg", "order": 17}, {"name": "Chris Ellis", "character": "Scalvino", "id": 8191, "credit_id": "52fe42fec3a36847f803290d", "cast_id": 39, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 18}, {"name": "Matt O'Leary", "character": "Clay", "id": 71467, "credit_id": "52fe42fec3a36847f8032911", "cast_id": 40, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 19}, {"name": "Nadine Ellis", "character": "Teller", "id": 168925, "credit_id": "52fe42fec3a36847f8032915", "cast_id": 41, "profile_path": "/7HxzDtQgpcWbE8BoMmTRmqZ3rny.jpg", "order": 20}, {"name": "Tim Russ", "character": "Chuck Summer", "id": 55538, "credit_id": "52fe42fec3a36847f8032919", "cast_id": 42, "profile_path": "/a6t2lHZHePoUOWz1aHotrAEgz7v.jpg", "order": 21}, {"name": "Yancey Arias", "character": "Agent Johnson", "id": 21049, "credit_id": "52fe42fec3a36847f803291d", "cast_id": 43, "profile_path": "/yXePNE3sFAHk1CAgdObHhUrWsKL.jpg", "order": 22}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe42fec3a36847f8032869", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 6.3, "runtime": 128}, "14435": {"poster_path": "/iuMSi4ibVwHuXcBjrLvijih72os.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59157085, "overview": "Ten years ago, a tragedy changed the town of Harmony forever. Tom Hanniger, an inexperienced coal miner, caused an accident in the tunnels that trapped and killed five men and sent the only survivor, Harry Warden, into a permanent coma. But Harry Warden wanted revenge. Exactly one year later, on Valentine\u2019s Day, he woke up\u2026and brutally murdered twenty-two people with a pickaxe before being killed.", "video": false, "id": 14435, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "My Bloody Valentine", "tagline": "He's gonna break your heart.", "vote_count": 62, "homepage": "http://www.mybloodyvalentinein3d.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 264437, "name": "My Bloody Valentine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179891", "adult": false, "backdrop_path": "/sWgf8vXNFFcUSThDs0P8r7ol5Me.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2009-01-16", "popularity": 0.462208886959387, "original_title": "My Bloody Valentine", "budget": 15000000, "cast": [{"name": "Jensen Ackles", "character": "Tom Hanniger", "id": 49624, "credit_id": "52fe45f39251416c75068091", "cast_id": 2, "profile_path": "/3PEwDCpJwA6ZKzD1hJdp334EGbp.jpg", "order": 0}, {"name": "Jaime King", "character": "Sarah Palmer", "id": 5915, "credit_id": "52fe45f39251416c75068095", "cast_id": 3, "profile_path": "/kB8LNi7Amt0RBA0JCzAY0SBAnI5.jpg", "order": 1}, {"name": "Kerr Smith", "character": "Axel Palmer", "id": 43442, "credit_id": "52fe45f39251416c75068099", "cast_id": 4, "profile_path": "/8CVdfA5L27Nh2fPyLwax3Tn9Xkr.jpg", "order": 2}, {"name": "Betsy Rue", "character": "Irene", "id": 76886, "credit_id": "52fe45f39251416c7506809d", "cast_id": 5, "profile_path": "/ijVVm6V486kul5o8bMZbT1kOW2B.jpg", "order": 3}, {"name": "Edi Gathegi", "character": "Deputy Martin", "id": 39391, "credit_id": "52fe45f39251416c750680a1", "cast_id": 6, "profile_path": "/xruASZjRYdM36ml9OFfrjf6u5FJ.jpg", "order": 4}, {"name": "Tom Atkins", "character": "Sheriff Jim Burke", "id": 11784, "credit_id": "52fe45f39251416c750680b1", "cast_id": 9, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 5}, {"name": "Kevin Tighe", "character": "Ben Foley", "id": 17770, "credit_id": "52fe45f39251416c750680b5", "cast_id": 10, "profile_path": "/5Q1Z89xsrnLdQWdHLuiaraS89vV.jpg", "order": 6}, {"name": "Megan Boone", "character": "Megan", "id": 222141, "credit_id": "52fe45f39251416c750680d5", "cast_id": 19, "profile_path": "/fqCZZb33w8RhWl2GVGdWOqXBQNO.jpg", "order": 7}, {"name": "Karen Baum", "character": "Deputy Ferris", "id": 966102, "credit_id": "52fe45f39251416c750680b9", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Joy de la Paz", "character": "Rosa", "id": 1114306, "credit_id": "52fe45f39251416c750680bd", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Marc Macaulay", "character": "Riggs", "id": 6908, "credit_id": "52fe45f39251416c750680c1", "cast_id": 14, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 10}, {"name": "Todd Farmer", "character": "Frank the Trucker", "id": 61117, "credit_id": "52fe45f39251416c750680c5", "cast_id": 15, "profile_path": "/xMd0pkgpgjfLwKX01mXpW68eYAu.jpg", "order": 11}, {"name": "Jeff Hochendoner", "character": "Red", "id": 170145, "credit_id": "52fe45f39251416c750680c9", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Bingo O'Malley", "character": "Officer Hinch", "id": 104046, "credit_id": "52fe45f39251416c750680cd", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Liam Rhodes", "character": "Michael", "id": 1114307, "credit_id": "52fe45f39251416c750680d1", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Richard John Walters", "character": "Harry Warden", "id": 1344290, "credit_id": "53cc3cccc3a368776d001b60", "cast_id": 25, "profile_path": null, "order": 15}], "directors": [{"name": "Patrick Lussier", "department": "Directing", "job": "Director", "credit_id": "52fe45f39251416c7506808d", "profile_path": "/xBZm3o2FtAH0RjEdmAau8OqkoZg.jpg", "id": 27226}], "vote_average": 5.3, "runtime": 101}, "39013": {"poster_path": "/lUFZr1hEgFbowMHzJhAKx08VMGA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13831503, "overview": "17 year-old Ree Dolly sets out to track down her father, who put their house up for his bail bond and then disappeared. If she fails, Ree and her family will be turned out into the Ozark woods. Challenging her outlaw kin's code of silence and risking her life, Ree hacks through the lies, evasions and threats offered up by her relatives and begins to piece together the truth.", "video": false, "id": 39013, "genres": [{"id": 18, "name": "Drama"}], "title": "Winter's Bone", "tagline": "Talking Just Causes Witnesses", "vote_count": 135, "homepage": "http://www.wintersbonemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1399683", "adult": false, "backdrop_path": "/A9qia4GnGJsUPvRpNmmaCFe6e5Z.jpg", "production_companies": [{"name": "Anonymous Content", "id": 10039}, {"name": "Winter's Bone Productions", "id": 19778}], "release_date": "2010-06-11", "popularity": 1.15735805372852, "original_title": "Winter's Bone", "budget": 2000000, "cast": [{"name": "Jennifer Lawrence", "character": "Ree Dolly", "id": 72129, "credit_id": "52fe46f19251416c91064f27", "cast_id": 2, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 0}, {"name": "John Hawkes", "character": "Teardrop", "id": 16861, "credit_id": "52fe46f19251416c91064f2b", "cast_id": 3, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 1}, {"name": "Kevin Breznahan", "character": "Little Arthur", "id": 54711, "credit_id": "52fe46f19251416c91064f2f", "cast_id": 4, "profile_path": "/lF0rs9N5qBsXN68BNksZYEiVnAQ.jpg", "order": 2}, {"name": "Dale Dickey", "character": "Merab", "id": 46814, "credit_id": "52fe46f19251416c91064f33", "cast_id": 5, "profile_path": "/g74v4UBE0NIqvZ9XUFYSuLuYN0h.jpg", "order": 3}, {"name": "Garret Dillahunt", "character": "Sheriff Baskin", "id": 39520, "credit_id": "52fe46f19251416c91064f37", "cast_id": 6, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 4}, {"name": "Sheryl Lee", "character": "April", "id": 6726, "credit_id": "52fe46f29251416c91064f85", "cast_id": 20, "profile_path": "/gNIW72Xgw6Jj2NTzjgHA7NY1C4I.jpg", "order": 5}, {"name": "Shelley Waggener", "character": "Sonya", "id": 126487, "credit_id": "52fe46f19251416c91064f3b", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Isaiah Stone", "character": "Sonny", "id": 1163717, "credit_id": "52fe46f29251416c91064f8d", "cast_id": 23, "profile_path": null, "order": 7}, {"name": "Ashlee Thompson", "character": "Ashlee", "id": 1163718, "credit_id": "52fe46f29251416c91064f91", "cast_id": 24, "profile_path": null, "order": 8}, {"name": "Valerie Richards", "character": "Connie", "id": 1163719, "credit_id": "52fe46f29251416c91064f95", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Lauren Sweetser", "character": "Gail", "id": 126488, "credit_id": "52fe46f19251416c91064f3f", "cast_id": 8, "profile_path": null, "order": 10}, {"name": "Cinnamon Schultz", "character": "Victoria", "id": 1163723, "credit_id": "52fe46f29251416c91064fa9", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Casey MacLaren", "character": "Megan", "id": 1163720, "credit_id": "52fe46f29251416c91064f9d", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Tate Taylor", "character": "Satterfield", "id": 55789, "credit_id": "52fe46f29251416c91064f89", "cast_id": 21, "profile_path": "/7RQEzoruBo10j78z8fH6cIEmjNK.jpg", "order": 13}, {"name": "Ronnie Hall", "character": "Thump Milton (as Ron 'Stray Dog' Hall)", "id": 1163716, "credit_id": "52fe46f29251416c91064fbd", "cast_id": 35, "profile_path": null, "order": 14}, {"name": "Cody Brown", "character": "Floyd", "id": 180805, "credit_id": "52fe46f29251416c91064f99", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "William White", "character": "Blond Milton", "id": 1163722, "credit_id": "52fe46f29251416c91064fa5", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Beth Domann", "character": "Alice", "id": 1163725, "credit_id": "52fe46f29251416c91064fb1", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Charlotte Jeane Lucas", "character": "Tilly", "id": 1163726, "credit_id": "52fe46f29251416c91064fb5", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Ramona Blair", "character": "Parenting Teacher", "id": 1163724, "credit_id": "52fe46f29251416c91064fad", "cast_id": 31, "profile_path": null, "order": 19}, {"name": "Russell Schalk", "character": "Army Recruiter (as Sgt. Russel A. Schalk)", "id": 1163727, "credit_id": "52fe46f29251416c91064fb9", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Marideth Sisco", "character": "Singer at Party", "id": 1163721, "credit_id": "52fe46f29251416c91064fa1", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Debra Granik", "department": "Directing", "job": "Director", "credit_id": "52fe46f19251416c91064f23", "profile_path": "/lHCc1iNR57bVF5QO3mGgQxVsv1.jpg", "id": 121873}], "vote_average": 6.6, "runtime": 100}, "194662": {"poster_path": "/rSZs93P0LLxqlVEbI001UKoeCQC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 21822413, "overview": "A fading actor best known for his portrayal of a popular superhero attempts to mount a comeback by appearing in a Broadway play. As opening night approaches, his attempts to become more altruistic, rebuild his career, and reconnect with friends and family prove more difficult than expected.", "video": false, "id": 194662, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Birdman", "tagline": "or (The Unexpected Virtue of Ignorance)", "vote_count": 864, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2562232", "adult": false, "backdrop_path": "/AsJVim0Hk3KbQPbfjyijfjqmaoZ.jpg", "production_companies": [{"name": "Worldview Entertainment", "id": 9015}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2014-10-17", "popularity": 17.701406813592, "original_title": "Birdman", "budget": 18000000, "cast": [{"name": "Michael Keaton", "character": "Riggan Thomson / Birdman", "id": 2232, "credit_id": "52fe4cf29251416c91105647", "cast_id": 2, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 0}, {"name": "Zach Galifianakis", "character": "Jake", "id": 58225, "credit_id": "52fe4cf29251416c9110564f", "cast_id": 4, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 1}, {"name": "Edward Norton", "character": "Mike Shiner", "id": 819, "credit_id": "52fe4cf29251416c91105653", "cast_id": 5, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 2}, {"name": "Emma Stone", "character": "Sam Thomson", "id": 54693, "credit_id": "52fe4cf29251416c9110564b", "cast_id": 3, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 3}, {"name": "Naomi Watts", "character": "Lesley", "id": 3489, "credit_id": "52fe4cf29251416c91105657", "cast_id": 6, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 4}, {"name": "Amy Ryan", "character": "Sylvia", "id": 39388, "credit_id": "52fe4cf29251416c9110565b", "cast_id": 7, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 5}, {"name": "Andrea Riseborough", "character": "Laura", "id": 127558, "credit_id": "534d5e0b0e0a2679e300024f", "cast_id": 10, "profile_path": "/zQPFvKnNjmvpTb1SM66SBnOgth4.jpg", "order": 6}, {"name": "Merritt Wever", "character": "Annie", "id": 28044, "credit_id": "543e79be0e0a266f8e00231a", "cast_id": 17, "profile_path": "/scrfqDWvfyRBZlVvTEJvZbJxcER.jpg", "order": 7}, {"name": "Lindsay Duncan", "character": "Tabitha", "id": 30083, "credit_id": "543e79c80e0a266f7700233d", "cast_id": 18, "profile_path": "/ddjjwMEHLBvzkZzZ5frEvJyWnZ6.jpg", "order": 8}, {"name": "Natalie Gold", "character": "Clara", "id": 143256, "credit_id": "54f0a82e9251417974008532", "cast_id": 35, "profile_path": "/rpXCiaLqeQYcZN1Wic6TeE2PBHX.jpg", "order": 9}, {"name": "Kenny Chin", "character": "Korean Grocer", "id": 1099876, "credit_id": "54f0a7689251417968008521", "cast_id": 34, "profile_path": "/yMF6twG8daFYdD6vDmonHHwpU77.jpg", "order": 10}, {"name": "Jeremy Shamos", "character": "Ralph", "id": 155222, "credit_id": "552303d19251417096004404", "cast_id": 36, "profile_path": "/xZSJqN8pBNDX7dwXavI4DUOYBEn.jpg", "order": 11}], "directors": [{"name": "Alejandro Gonz\u00e1lez I\u00f1\u00e1rritu", "department": "Directing", "job": "Director", "credit_id": "52fe4cf29251416c91105643", "profile_path": "/qh6Bom66huviIJ2HheE29kI7y96.jpg", "id": 223}], "vote_average": 7.6, "runtime": 119}, "137321": {"poster_path": "/7svFBuWKSB1CQGHBW43z7x85vfD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 30800231, "overview": "A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.", "video": false, "id": 137321, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Winter's Tale", "tagline": "This is not a true story. This is true love.", "vote_count": 131, "homepage": "http://www.winterstalemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1837709", "adult": false, "backdrop_path": "/1MotwPyOk8pChJS5UcFH1A61ROI.jpg", "production_companies": [{"name": "Weed Road Pictures", "id": 433}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2014-02-13", "popularity": 1.30988524919989, "original_title": "Winter's Tale", "budget": 60000000, "cast": [{"name": "Jennifer Connelly", "character": "Virginia Gamely", "id": 6161, "credit_id": "52fe4c2ec3a368484e1ab623", "cast_id": 7, "profile_path": "/jjsSmMATyYbM6cKauHOAcfKEk4F.jpg", "order": 0}, {"name": "Will Smith", "character": "Judge", "id": 2888, "credit_id": "52fe4c2ec3a368484e1ab62f", "cast_id": 12, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 1}, {"name": "Russell Crowe", "character": "Pearly Soames", "id": 934, "credit_id": "52fe4c2ec3a368484e1ab617", "cast_id": 4, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 2}, {"name": "Colin Farrell", "character": "Peter Lake", "id": 72466, "credit_id": "52fe4c2ec3a368484e1ab61b", "cast_id": 5, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 3}, {"name": "Matt Bomer", "character": "Young Man", "id": 66743, "credit_id": "52fe4c2ec3a368484e1ab62b", "cast_id": 11, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 4}, {"name": "Jessica Brown Findlay", "character": "Beverly Penn", "id": 567269, "credit_id": "52fe4c2ec3a368484e1ab61f", "cast_id": 6, "profile_path": "/j7FQ5U7Bg7jUhvQ9PQt4XeZ5k4T.jpg", "order": 5}, {"name": "Kevin Durand", "character": "Cesar Tan", "id": 79072, "credit_id": "52fe4c2ec3a368484e1ab633", "cast_id": 13, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 6}, {"name": "William Hurt", "character": "Isaac Penn", "id": 227, "credit_id": "52fe4c2ec3a368484e1ab627", "cast_id": 8, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 7}, {"name": "Eva Marie Saint", "character": "Willa (Adult)", "id": 2639, "credit_id": "52fe4c2ec3a368484e1ab637", "cast_id": 14, "profile_path": "/6pJ4SS4JabH9LBeIBUDjeBd1FZc.jpg", "order": 8}, {"name": "Kevin Corrigan", "character": "Romeo Tan", "id": 18472, "credit_id": "52fe4c2ec3a368484e1ab63b", "cast_id": 15, "profile_path": "/trRjEABsF2BCqn6pib3bYhYIxNH.jpg", "order": 9}, {"name": "Lucy Griffiths", "character": "Mrs. Lake", "id": 205257, "credit_id": "52fe4c2ec3a368484e1ab63f", "cast_id": 16, "profile_path": "/haPj7VrjPPZJITPup5gQNKBM7mV.jpg", "order": 10}, {"name": "Graham Greene", "character": "Humpstone John", "id": 6804, "credit_id": "52fe4c2ec3a368484e1ab643", "cast_id": 17, "profile_path": "/vG3j0Phs144Rz2dQnDAYpdhhflG.jpg", "order": 11}, {"name": "Finn Wittrock", "character": "Gabriel", "id": 168877, "credit_id": "54a6d69e925141212700dc9e", "cast_id": 28, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 12}], "directors": [{"name": "Akiva Goldsman", "department": "Directing", "job": "Director", "credit_id": "52fe4c2ec3a368484e1ab607", "profile_path": "/smyKiXX4rAfehztrmg3lxgRAuZF.jpg", "id": 5575}], "vote_average": 6.0, "runtime": 118}, "14442": {"poster_path": "/kmobKaIKO9ZvjD3p9SYuLAcHNFg.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 27388767, "overview": "Ella of Frell is given the \"gift of obedience\" by a fairy, only to realize that it's more of a curse because it could separate her from her true love, Prince Charmont. Will Ella manage to conjure a \"cure\" that enables her to live happily ever after?", "video": false, "id": 14442, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Ella Enchanted", "tagline": "Get enchanted", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327679", "adult": false, "backdrop_path": "/2IiaMCcQKinMY2JgXpED9lq3RlE.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}], "release_date": "2004-04-09", "popularity": 1.25494837363052, "original_title": "Ella Enchanted", "budget": 31000000, "cast": [{"name": "Anne Hathaway", "character": "Ella", "id": 1813, "credit_id": "52fe45f49251416c75068289", "cast_id": 1, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 0}, {"name": "Hugh Dancy", "character": "Char", "id": 12791, "credit_id": "52fe45f49251416c750682b7", "cast_id": 9, "profile_path": "/ivFvPpua1zl3GIs7A2Px7QKric5.jpg", "order": 1}, {"name": "Cary Elwes", "character": "Edgar", "id": 2130, "credit_id": "52fe45f49251416c750682bb", "cast_id": 10, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 2}, {"name": "Aidan McArdle", "character": "Slannen", "id": 47653, "credit_id": "52fe45f49251416c750682bf", "cast_id": 11, "profile_path": "/dy7uQlhYrp71mkj7EOYOr3C4uJk.jpg", "order": 3}, {"name": "Joanna Lumley", "character": "Dame Olga", "id": 34901, "credit_id": "52fe45f49251416c750682c3", "cast_id": 12, "profile_path": "/6cF4wLK8PNvBd2WSuKEgdgS5GW1.jpg", "order": 4}, {"name": "Lucy Punch", "character": "Hattie", "id": 66446, "credit_id": "52fe45f49251416c750682c7", "cast_id": 13, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 5}, {"name": "Jennifer Higham", "character": "Olive", "id": 64411, "credit_id": "52fe45f49251416c750682cb", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Minnie Driver", "character": "Mandy", "id": 6613, "credit_id": "52fe45f49251416c750682cf", "cast_id": 15, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 7}, {"name": "Eric Idle", "character": "Narrator", "id": 10713, "credit_id": "52fe45f49251416c750682d3", "cast_id": 16, "profile_path": "/8bIEjD3ZNRdveo6avslTX6PB22U.jpg", "order": 8}, {"name": "Steve Coogan", "character": "Heston (voice)", "id": 4581, "credit_id": "52fe45f49251416c750682d7", "cast_id": 17, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 9}, {"name": "Jimi Mistry", "character": "Benny", "id": 16756, "credit_id": "52fe45f49251416c750682db", "cast_id": 18, "profile_path": "/zpesazswDICSbbaOenfMc1JvTnE.jpg", "order": 10}, {"name": "Vivica A. Fox", "character": "Lucinda", "id": 2535, "credit_id": "52fe45f49251416c750682df", "cast_id": 19, "profile_path": "/uxTOzgRhk0VkbK1ZiOrQSTYuzAl.jpg", "order": 11}, {"name": "Parminder Nagra", "character": "Areida", "id": 231610, "credit_id": "52fe45f49251416c750682e3", "cast_id": 20, "profile_path": "/dwOh7WvwhcK8qXzGuMLhueiy1C.jpg", "order": 12}], "directors": [{"name": "Tommy O'Haver", "department": "Directing", "job": "Director", "credit_id": "52fe45f49251416c7506828f", "profile_path": "/9mLTBNTLML7hOBzH9hDWKV0pGMh.jpg", "id": 62514}], "vote_average": 5.7, "runtime": 96}, "14451": {"poster_path": "/nDWI0SP3go01b5STPcAwQSK3eCc.jpg", "production_countries": [{"iso_3166_1": "NO", "name": "Norway"}], "revenue": 1984662, "overview": "Eight medical students on a ski trip to Norway discover that Hitler's horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.", "video": false, "id": 14451, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Dead Snow", "tagline": "Eins, Zwei, Die!", "vote_count": 68, "homepage": "http://www.deadsnow.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 286038, "name": "Dead Snow Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "no", "name": "Norsk"}], "imdb_id": "tt1278340", "adult": false, "backdrop_path": "/ctwDTO8iOC4xnktJhnHVSLJTYMr.jpg", "production_companies": [{"name": "Zwart Arbeid", "id": 44997}, {"name": "Euforia Film", "id": 3553}, {"name": "FilmCamp", "id": 23682}, {"name": "Miho Film", "id": 44992}, {"name": "Barentsfilm", "id": 44993}, {"name": "Yellow Bastard Production", "id": 44995}, {"name": "News On Request (NOR)", "id": 44996}], "release_date": "2009-01-09", "popularity": 0.168263660257312, "original_title": "D\u00f8d sn\u00f8", "budget": 800000, "cast": [{"name": "Charlotte Frogner", "character": "Hanna", "id": 76917, "credit_id": "52fe45f59251416c750685d5", "cast_id": 1, "profile_path": "/2KEuV50NGFQ0kVv6Boi0A7NxNst.jpg", "order": 0}, {"name": "Stig Frode Henriksen", "character": "Roy", "id": 76919, "credit_id": "52fe45f59251416c750685d9", "cast_id": 2, "profile_path": "/9dmquAOhzmBSmIIIcaw8MiQMFoK.jpg", "order": 1}, {"name": "Vegar Hoel", "character": "Martin", "id": 76920, "credit_id": "52fe45f59251416c750685dd", "cast_id": 3, "profile_path": "/ekteFS1uufBQuRQX5Xwi7s23Nci.jpg", "order": 2}, {"name": "Jeppe Beck Laursen", "character": "Erlend", "id": 1287263, "credit_id": "52fe45f69251416c75068617", "cast_id": 20, "profile_path": null, "order": 3}, {"name": "Evy Kasseth R\u00f8sten", "character": "Liv", "id": 76922, "credit_id": "52fe45f59251416c750685e1", "cast_id": 5, "profile_path": "/leTHCUG4uTM63BwrRvPNO2iOmwP.jpg", "order": 4}, {"name": "Lasse Valdal", "character": "Vegard", "id": 76924, "credit_id": "52fe45f59251416c750685e5", "cast_id": 6, "profile_path": "/zWViV3T5UDpq1hN3wXINSScqfdL.jpg", "order": 5}, {"name": "Jenny Skavlan", "character": "Chris", "id": 76925, "credit_id": "52fe45f59251416c750685e9", "cast_id": 7, "profile_path": "/6lK8MsS0rlyenFu1UPxSn6JTLn1.jpg", "order": 6}, {"name": "Bj\u00f8rn Sundquist", "character": "The Wanderer", "id": 71186, "credit_id": "52fe45f59251416c750685ed", "cast_id": 8, "profile_path": "/4e4fDL75LqtIQXLtbkvc2oCx209.jpg", "order": 7}, {"name": "Ane Dahl Torp", "character": "Sara", "id": 63769, "credit_id": "52fe45f59251416c750685f1", "cast_id": 9, "profile_path": "/a0oCtEVw7qvlv8OJ0MOiBJOIgzd.jpg", "order": 8}, {"name": "\u00d8rjan Gamst", "character": "Herzog", "id": 76926, "credit_id": "52fe45f59251416c750685f5", "cast_id": 10, "profile_path": "/guvI7kfvXzN3FcKDH06JNiVlhYH.jpg", "order": 9}], "directors": [{"name": "Tommy Wirkola", "department": "Directing", "job": "Director", "credit_id": "52fe45f59251416c750685fb", "profile_path": "/vkpnQg4eX722Tz283OZOpzSyweK.jpg", "id": 76927}], "vote_average": 6.2, "runtime": 91}, "84329": {"poster_path": "/7oAia3Qim3tVCtNlY6eJRghePOd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3325038, "overview": "A delightful dramatic comedy, a buddy picture, and, for good measure, a heist film. Curmudgeonly old Frank lives by himself. His routine involves daily visits to his local library, where he has a twinkle in his eye for the librarian. His grown children are concerned about their father\u2019s well-being and buy him a caretaker robot. Initially resistant to the idea, Frank soon appreciates the benefits of robotic support \u2013 like nutritious meals and a clean house \u2013 and eventually begins to treat his robot like a true companion. With his robot\u2019s assistance, Frank\u2019s passion for his old, unlawful profession is reignited, for better or worse.", "video": false, "id": 84329, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Robot & Frank", "tagline": "Friendship doesn't have an off switch", "vote_count": 151, "homepage": "http://robotandfrank-film.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1990314", "adult": false, "backdrop_path": "/vWrWTEXfkF3r1sIgZlORVN7UPVr.jpg", "production_companies": [{"name": "Park Pictures", "id": 13466}, {"name": "TBB", "id": 13467}, {"name": "Dog Run Pictures", "id": 13468}, {"name": "White Hat", "id": 13469}, {"name": "Samuel Goldwyn Films", "id": 9118}, {"name": "Stage 6 Films", "id": 11341}], "release_date": "2012-08-16", "popularity": 1.13881584317454, "original_title": "Robot & Frank", "budget": 2500000, "cast": [{"name": "Frank Langella", "character": "Frank", "id": 8924, "credit_id": "52fe48eb9251416c9109cb03", "cast_id": 2, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 0}, {"name": "Liv Tyler", "character": "Madison", "id": 882, "credit_id": "52fe48eb9251416c9109cb07", "cast_id": 3, "profile_path": "/lD2YnrKdnRUvFDMSiK2pw13ZMIB.jpg", "order": 1}, {"name": "James Marsden", "character": "Hunter", "id": 11006, "credit_id": "52fe48eb9251416c9109cb0b", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Jennifer", "id": 4038, "credit_id": "52fe48eb9251416c9109cb0f", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Peter Sarsgaard", "character": "Robot (voice)", "id": 133, "credit_id": "52fe48eb9251416c9109cb13", "cast_id": 6, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 4}, {"name": "Jeremy Strong", "character": "Jake", "id": 239271, "credit_id": "52fe48eb9251416c9109cb17", "cast_id": 7, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 5}, {"name": "Jeremy Sisto", "character": "Sheriff Rowlings", "id": 23958, "credit_id": "52fe48ec9251416c9109cb63", "cast_id": 26, "profile_path": "/wEjqGLX0cfuXIC4E8vtudFQzSQq.jpg", "order": 6}, {"name": "Bonnie Bentley", "character": "Ava", "id": 1060475, "credit_id": "52fe48ec9251416c9109cb73", "cast_id": 30, "profile_path": "/eLYeb5I7NCQj4JtvPivNLv3W5Ri.jpg", "order": 7}, {"name": "Dario Barosso", "character": "Flattop", "id": 995205, "credit_id": "52fe48ec9251416c9109cb45", "cast_id": 18, "profile_path": "/wkV04IPLZMmQdQZDW9fzKiwja40.jpg", "order": 8}, {"name": "Rachael Ma", "character": "Robot", "id": 1094159, "credit_id": "52fe48ec9251416c9109cb49", "cast_id": 21, "profile_path": "/zxCiHevb3G2wW5rwwFIUqadx0M3.jpg", "order": 9}, {"name": "Joshua Ormond", "character": "Freckles", "id": 1094160, "credit_id": "52fe48ec9251416c9109cb4d", "cast_id": 22, "profile_path": "/bmLtTIulHbUbDSdut3WBnSOlrmp.jpg", "order": 10}, {"name": "Katherine Waterston", "character": "Shopgirl", "id": 77795, "credit_id": "52fe48ec9251416c9109cb67", "cast_id": 27, "profile_path": "/fc8hqenrbXWohV83MeEIUC5L06t.jpg", "order": 11}, {"name": "Jesse Newman", "character": "Reception Guest", "id": 1145459, "credit_id": "52fe48ec9251416c9109cb6b", "cast_id": 28, "profile_path": "/4cFg1bJJFaNO9pXSaiZWTR6r0FY.jpg", "order": 12}, {"name": "Ana Gasteyer", "character": "Shoplady", "id": 86267, "credit_id": "52fe48ec9251416c9109cb6f", "cast_id": 29, "profile_path": "/8Gp1zad6m0QBpqP7wgIah1Ka1l3.jpg", "order": 13}, {"name": "Dana Morgan", "character": "Additional Robot", "id": 1168927, "credit_id": "52fe48ec9251416c9109cb77", "cast_id": 31, "profile_path": "/jvY9KAKVOxT7tE7s3HWhbcnTrkY.jpg", "order": 14}], "directors": [{"name": "Jake Schreier", "department": "Directing", "job": "Director", "credit_id": "52fe48eb9251416c9109caff", "profile_path": null, "id": 836732}], "vote_average": 6.7, "runtime": 85}, "55420": {"poster_path": "/yvjrhdXPEPB5rZbLjXCnfL4zY6V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1776935, "overview": "On the night of the discovery of a duplicate Earth in the Solar system, an ambitious young student and an accomplished composer cross paths in a tragic accident.", "video": false, "id": 55420, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Another Earth", "tagline": "", "vote_count": 146, "homepage": "http://www.anotherearth.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1549572", "adult": false, "backdrop_path": "/pVixMBjeICME6a8oezSGymkpmXs.jpg", "production_companies": [{"name": "Artists Public Domain", "id": 8145}], "release_date": "2011-07-22", "popularity": 0.729733280454602, "original_title": "Another Earth", "budget": 200000, "cast": [{"name": "Brit Marling", "character": "Rhoda Williams", "id": 222330, "credit_id": "52fe48cbc3a36847f8179cc3", "cast_id": 2, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 0}, {"name": "William Mapother", "character": "John Burroughs", "id": 15338, "credit_id": "52fe48cbc3a36847f8179cbf", "cast_id": 1, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 1}, {"name": "Jordan Baker", "character": "Kim Williams", "id": 149550, "credit_id": "52fe48cbc3a36847f8179cc7", "cast_id": 3, "profile_path": "/8bFw6Xx532O39le7YTTJTrnBIzJ.jpg", "order": 2}, {"name": "Flint Beverage", "character": "Robert Williams", "id": 185766, "credit_id": "52fe48cbc3a36847f8179ccb", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Robin Lord Taylor", "character": "Jeff Williams", "id": 59262, "credit_id": "543940430e0a2649b2000273", "cast_id": 38, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 4}, {"name": "Matthew-Lee Erlbach", "character": "Alex", "id": 1114903, "credit_id": "52fe48cbc3a36847f8179d1b", "cast_id": 23, "profile_path": null, "order": 5}, {"name": "Meggan Lennon", "character": "Maya Burroughs", "id": 1114904, "credit_id": "52fe48cbc3a36847f8179d1f", "cast_id": 24, "profile_path": null, "order": 6}, {"name": "AJ Diana", "character": "Amos Burroughs", "id": 1114905, "credit_id": "52fe48cbc3a36847f8179d23", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "DJ Flava", "character": "Himself", "id": 1301641, "credit_id": "5326e7939251410d9500343f", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Bruce Colbert", "character": "Symposium Speaker", "id": 1301642, "credit_id": "5326e7ad925141652a0032f1", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Paul Mezey", "character": "Symposium Speaker", "id": 946074, "credit_id": "5326e7b99251411439003494", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Ana Valle", "character": "Symposium Speaker", "id": 1301643, "credit_id": "5326e7c89251411708003727", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Jeffrey Goldenberg", "character": "Symposium Speaker", "id": 549355, "credit_id": "5326e7d69251411439003497", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Joseph A. Bove", "character": "Symposium Speaker", "id": 1301644, "credit_id": "5326e7eb925141143900349b", "cast_id": 34, "profile_path": null, "order": 13}, {"name": "Rupert Reid", "character": "Keith Harding", "id": 187189, "credit_id": "5326e809925141652a0032f7", "cast_id": 35, "profile_path": "/jDJKsbUB2zgwgx5c51tHF35kafY.jpg", "order": 14}], "directors": [{"name": "Mike Cahill", "department": "Directing", "job": "Director", "credit_id": "52fe48cbc3a36847f8179cd5", "profile_path": "/mHnomJ1nar2xq8z0ht2iReFolof.jpg", "id": 45459}], "vote_average": 6.6, "runtime": 92}, "14462": {"poster_path": "/nT0mdDKWWicVSigXTUV275xaHXE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96105964, "overview": "When his army unit was ambushed during the first Gulf War, Sergeant Raymond Shaw saved his fellow soldiers just as his commanding officer, then-Captain Ben Marco, was knocked unconscious. Brokering the incident for political capital, Shaw eventually becomes a vice-presidential nominee, while Marco is haunted by dreams of what happened -- or didn't happen -- in Kuwait. As Marco (now a Major) investigates, the story begins to unravel, to the point where he questions if it happened at all. Is it possible the entire unit was kidnapped and brainwashed to believe Shaw is a war hero as part of a plot to seize the White House? Some very powerful people at Manchurian Global corporation appear desperate to stop him from finding out.", "video": false, "id": 14462, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Manchurian Candidate", "tagline": "This summer everything is under control.", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368008", "adult": false, "backdrop_path": "/2EK85HcE4qNdpRHkUWNC1CjNsTW.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2004-07-30", "popularity": 0.344699234013972, "original_title": "The Manchurian Candidate", "budget": 80000000, "cast": [{"name": "Denzel Washington", "character": "Major Bennett Ezekiel Marco", "id": 5292, "credit_id": "52fe45f79251416c750688b5", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Meryl Streep", "character": "Senator Eleanor Prentiss Shaw (D-VA)", "id": 5064, "credit_id": "52fe45f79251416c750688b9", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 1}, {"name": "Liev Schreiber", "character": "Congressman Raymond Prentiss Shaw (D-NY)", "id": 23626, "credit_id": "52fe45f79251416c750688bd", "cast_id": 3, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 2}, {"name": "Jon Voight", "character": "Senator Thomas Jordan (D-CT)", "id": 10127, "credit_id": "52fe45f79251416c750688c5", "cast_id": 5, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 3}, {"name": "Kimberly Elise", "character": "FBI Ag. Eugenie Rose", "id": 55314, "credit_id": "52fe45f79251416c750688c1", "cast_id": 4, "profile_path": "/315K0qi3aFmcgGweUiLwhdrvcfU.jpg", "order": 4}, {"name": "Vera Farmiga", "character": "Jocelyne Jordan", "id": 21657, "credit_id": "52fe45f79251416c750688c9", "cast_id": 6, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "CPL Al Melvin", "id": 2954, "credit_id": "52fe45f79251416c750688cd", "cast_id": 7, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Simon McBurney", "character": "Dr. Atticus Noyle", "id": 16358, "credit_id": "52fe45f79251416c750688d1", "cast_id": 8, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 7}, {"name": "Bruno Ganz", "character": "Delp", "id": 2310, "credit_id": "52fe45f79251416c750688d5", "cast_id": 9, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 8}, {"name": "Ann Dowd", "character": "Congresswoman Beckett", "id": 43366, "credit_id": "54eee966c3a3686b9a0034ab", "cast_id": 23, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 9}, {"name": "Ted Levine", "character": "Colonel Howard", "id": 15854, "credit_id": "52fe45f79251416c750688dd", "cast_id": 11, "profile_path": "/7O3vgqgicfNeGr3leC0qB074fjX.jpg", "order": 10}, {"name": "Miguel Ferrer", "character": "Colonel Garret", "id": 15860, "credit_id": "52fe45f79251416c750688f9", "cast_id": 16, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 11}, {"name": "Dean Stockwell", "character": "Mark Whiting", "id": 923, "credit_id": "52fe45f79251416c7506890d", "cast_id": 21, "profile_path": "/7lcbZFt1cVEBlHk9AGDBbCNy8bk.jpg", "order": 12}, {"name": "Charles Napier", "character": "General Sloan", "id": 16119, "credit_id": "54eee978c3a3684aff001042", "cast_id": 24, "profile_path": "/hZ3bCBxnHc7Zvrm3Rt2CPgXSLLT.jpg", "order": 13}, {"name": "Jude Ciccolella", "character": "David Donovan", "id": 8693, "credit_id": "54eee987c3a368402d002ed9", "cast_id": 25, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 14}, {"name": "Tom Stechschulte", "character": "Governor Robert \"Bob\" Arthur", "id": 1237357, "credit_id": "54eee9a89251417961005a27", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Pablo Schreiber", "character": "PFC Eddie Ingram", "id": 59254, "credit_id": "54eee9b69251413ae8002f49", "cast_id": 27, "profile_path": "/uNNgZmEVvhV0WUf11oGMpYb6oWE.jpg", "order": 16}, {"name": "Anthony Mackie", "character": "PFC Robert Baker III", "id": 53650, "credit_id": "54eee9c49251413ae8002f4b", "cast_id": 28, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 17}, {"name": "Robyn Hitchcock", "character": "Laurent Tokar", "id": 73913, "credit_id": "54eeea07c3a3686d6600668b", "cast_id": 29, "profile_path": "/tQIuW5rsKV8SOps95hjInc14Y2y.jpg", "order": 18}, {"name": "Obba Babatunde", "character": "Senator Wells", "id": 52057, "credit_id": "52fe45f79251416c75068901", "cast_id": 18, "profile_path": "/vUYCsIIoasA6rnxGuN7ZjaRIBrn.jpg", "order": 19}, {"name": "\u017deljko Ivanek", "character": "Vaughn Utly", "id": 6752, "credit_id": "52fe45f79251416c750688fd", "cast_id": 17, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 20}, {"name": "Adam LeFevre", "character": "Congressman Healy", "id": 61607, "credit_id": "52fe45f79251416c75068905", "cast_id": 19, "profile_path": "/y17YQ7F99kpqJuCUYfOoeArAkKz.jpg", "order": 21}, {"name": "Jose Pablo Cantillo", "character": "Villalobos", "id": 20191, "credit_id": "52fe45f79251416c75068911", "cast_id": 22, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 22}, {"name": "David Keeley", "character": "Agent Evan Anderson", "id": 44302, "credit_id": "52fe45f79251416c750688d9", "cast_id": 10, "profile_path": null, "order": 23}], "directors": [{"name": "Jonathan Demme", "department": "Directing", "job": "Director", "credit_id": "52fe45f79251416c750688e3", "profile_path": "/suxo4qCWhq2Giep8UKhrf8bF4vc.jpg", "id": 16294}], "vote_average": 6.1, "runtime": 129}, "26123": {"poster_path": "/hOcgDwslaaMhBLa3x8WyGYZUVO4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Ten years after the first American Pie movie, three new hapless virgins discover the Bible hidden in the school library at East Great Falls High. Unfortunately for them, the book is ruined, and with incomplete advice, the Bible leads them on a hilarious journey to lose their virginity.", "video": false, "id": 26123, "genres": [{"id": 35, "name": "Comedy"}], "title": "American Pie Presents: The Book of Love", "tagline": "", "vote_count": 109, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/deSui9fZHgArlSmOGxRV1ZBqYTO.jpg", "id": 298820, "name": "American Pie Presents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1407050", "adult": false, "backdrop_path": "/nhERy8lKNOFgBDuIZAMkks8Znt7.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Capital Arts Entertainment", "id": 2365}], "release_date": "2009-12-04", "popularity": 0.653262719921578, "original_title": "American Pie Presents: The Book of Love", "budget": 0, "cast": [{"name": "Eugene Levy", "character": "Mr. Levenstein", "id": 26510, "credit_id": "52fe44eec3a368484e03f159", "cast_id": 1, "profile_path": "/69IBiDjU1gSqtrcGOA7PA7aEYsc.jpg", "order": 0}, {"name": "Bug Hall", "character": "Rob", "id": 69395, "credit_id": "52fe44eec3a368484e03f15d", "cast_id": 2, "profile_path": "/7B2KfTPVnldxMT7pCgxd14oo6LF.jpg", "order": 1}, {"name": "Kevin M. Horton", "character": "Nathan", "id": 94769, "credit_id": "52fe44eec3a368484e03f161", "cast_id": 3, "profile_path": "/oqlX8lzDYrSzd81F5GzIjW83hlR.jpg", "order": 2}, {"name": "Brandon Hardesty", "character": "Lube", "id": 94906, "credit_id": "52fe44eec3a368484e03f16b", "cast_id": 5, "profile_path": "/mVhfytLuaYipXQX00PKqpl3JrmY.jpg", "order": 3}, {"name": "Beth Behrs", "character": "Heidi", "id": 482044, "credit_id": "52fe44efc3a368484e03f177", "cast_id": 10, "profile_path": "/fsqd93OGqBmzd17W3p9Ipt2ADEm.jpg", "order": 4}, {"name": "Melanie Papalia", "character": "Dana", "id": 453588, "credit_id": "52fe44efc3a368484e03f183", "cast_id": 13, "profile_path": "/axWncHqOabSzUIsUzCv906OjJ0o.jpg", "order": 5}, {"name": "Rosanna Arquette", "character": "Rob's Mom", "id": 2165, "credit_id": "52fe44efc3a368484e03f16f", "cast_id": 8, "profile_path": "/rQMQYQUF9QzD6oDfkP6tsjmyZhS.jpg", "order": 6}, {"name": "Edwin Perez", "character": "Gibbs", "id": 1121562, "credit_id": "52fe44efc3a368484e03f173", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Melanie Papalia", "character": "Dana", "id": 453588, "credit_id": "52fe44efc3a368484e03f17b", "cast_id": 11, "profile_path": "/axWncHqOabSzUIsUzCv906OjJ0o.jpg", "order": 8}, {"name": "Jennifer Holland", "character": "Ashley", "id": 87165, "credit_id": "52fe44efc3a368484e03f17f", "cast_id": 12, "profile_path": "/xMKumMcwi2UEEu47QisQDEY55RK.jpg", "order": 9}, {"name": "Louisa Lytton", "character": "Imogen", "id": 1224744, "credit_id": "52fe44efc3a368484e03f187", "cast_id": 14, "profile_path": "/bHGbPdbmmnwp7K5QnWM4CPMdbhR.jpg", "order": 10}, {"name": "Curtis Armstrong", "character": "Mr. O'Donnell", "id": 87003, "credit_id": "52fe44efc3a368484e03f18b", "cast_id": 15, "profile_path": "/vXR54kdnRTJn25tuhRevA9jSbrj.jpg", "order": 11}, {"name": "Cindy Busby", "character": "Amy", "id": 111920, "credit_id": "52fe44efc3a368484e03f18f", "cast_id": 16, "profile_path": "/fJouHvx2hRoUa1e9HWxIglEEoMN.jpg", "order": 12}, {"name": "Naomi Hewer", "character": "Alyson", "id": 1287722, "credit_id": "52fe44efc3a368484e03f193", "cast_id": 17, "profile_path": "/78Fwy0flojbwpW3Avsx31gQZR4k.jpg", "order": 13}, {"name": "Karin Konoval", "character": "Store Manager", "id": 58395, "credit_id": "52fe44efc3a368484e03f197", "cast_id": 18, "profile_path": "/oEfoDJXIMTDYQqS9SsyxfV4BY9X.jpg", "order": 14}, {"name": "Carrie Keagan", "character": "Sales Lady", "id": 970104, "credit_id": "52fe44efc3a368484e03f19b", "cast_id": 19, "profile_path": "/vLYbT8NYY0P3GvqCiSwLVSjqxGZ.jpg", "order": 15}, {"name": "Jasmine Mooney", "character": "Jackie", "id": 1288767, "credit_id": "52fe44efc3a368484e03f19f", "cast_id": 20, "profile_path": "/1jk0nLmviulXiAMMyXXgCv8wpKz.jpg", "order": 16}, {"name": "Jill Teed", "character": "Miss Johnson", "id": 21214, "credit_id": "52fe44efc3a368484e03f1a3", "cast_id": 21, "profile_path": "/oiIvgxGTDfh3l8Sellhn9W7Ve4b.jpg", "order": 17}, {"name": "Cindy Lucas", "character": "French Canadian Babe", "id": 1004839, "credit_id": "52fe44efc3a368484e03f1a7", "cast_id": 22, "profile_path": "/493IOTKU7fRnOKWrgA95VY1pIeC.jpg", "order": 18}], "directors": [{"name": "John Putch", "department": "Directing", "job": "Director", "credit_id": "52fe44eec3a368484e03f167", "profile_path": "/9JBDOLXqdJiAvUOU0fO5bWnk292.jpg", "id": 21475}], "vote_average": 5.4, "runtime": 93}, "6278": {"poster_path": "/iK8kFLLZ1p035nQW8FwyXAqAkNb.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43061982, "overview": "In post-apocalyptic England, an American volunteer and a British survivor team up to fight off a brood of fire-breathing dragons seeking to return to global dominance after centuries of rest underground. The Brit -- leading a clan of survivors to hunt down the King of the Dragons -- has much at stake: His mother was killed by a dragon, but his love is still alive.", "video": false, "id": 6278, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Reign of Fire", "tagline": "Fight Fire With Fire", "vote_count": 159, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0253556", "adult": false, "backdrop_path": "/1R7c18aWnoe0RUEcPnc23sIxeFg.jpg", "production_companies": [{"name": "The Zanuck Company", "id": 80}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Tripod Entertainment", "id": 22902}, {"name": "World 2000 Entertainment", "id": 7692}], "release_date": "2002-07-11", "popularity": 0.85005569140886, "original_title": "Reign of Fire", "budget": 60000000, "cast": [{"name": "Christian Bale", "character": "Quinn Abercromby", "id": 3894, "credit_id": "52fe4449c3a36847f808d26d", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Matthew McConaughey", "character": "Denton Van Zan", "id": 10297, "credit_id": "52fe4449c3a36847f808d271", "cast_id": 2, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 1}, {"name": "Izabella Scorupco", "character": "Alex Jensen", "id": 10695, "credit_id": "52fe4449c3a36847f808d275", "cast_id": 3, "profile_path": "/7lQ494byqcFfVkJtZYLl38MvfKS.jpg", "order": 2}, {"name": "Gerard Butler", "character": "Creedy", "id": 17276, "credit_id": "52fe4449c3a36847f808d27f", "cast_id": 5, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 3}, {"name": "Alexander Siddig", "character": "Ajay", "id": 2957, "credit_id": "52fe4449c3a36847f808d283", "cast_id": 6, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 4}, {"name": "Scott Moutter", "character": "Jared Wilke", "id": 56137, "credit_id": "52fe4449c3a36847f808d2b1", "cast_id": 14, "profile_path": "/vytmy0dmB7uLkw7A63S0Jy6FEbT.jpg", "order": 5}, {"name": "David Kennedy", "character": "Eddie Stax", "id": 62498, "credit_id": "52fffb9f9251416ae1165d1e", "cast_id": 16, "profile_path": "/refiQ4V3hLc9xzBwCbemVrXXpNB.jpg", "order": 6}, {"name": "Alexander Siddig", "character": "Ajay", "id": 2957, "credit_id": "52fffbf39251416ae1166213", "cast_id": 17, "profile_path": "/8siT9u88QIdybk45RAbZWlyxk6u.jpg", "order": 7}, {"name": "Ned Dennehy", "character": "Barlow", "id": 63362, "credit_id": "52fffc1e9251416ade1591a8", "cast_id": 18, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 8}, {"name": "Rory Keenan", "character": "Devon", "id": 1041731, "credit_id": "52fffcc99251416ad814c230", "cast_id": 19, "profile_path": "/lWvTE3d8JQVQbPyIVadoy6OYbEk.jpg", "order": 9}, {"name": "Terence Maynard", "character": "Gideon", "id": 67205, "credit_id": "52fffdaf9251416ade15de73", "cast_id": 20, "profile_path": "/pFxcJnlfp1lAnDbgumYynzlkfQE.jpg", "order": 10}, {"name": "Doug Cockle", "character": "Goosh", "id": 1047370, "credit_id": "52fffdc89251412a16113598", "cast_id": 21, "profile_path": "/pCfFEf86vkctm9rtoyajgKKlVJW.jpg", "order": 11}, {"name": "Randall Carlton", "character": "Burke (Tito)", "id": 1293209, "credit_id": "52fffecc9251416ad216ce62", "cast_id": 22, "profile_path": "/ouCYGoy7FIMBOyVKt7B2W4RIWsl.jpg", "order": 12}, {"name": "Chris Kelly", "character": "Mead", "id": 65802, "credit_id": "52ffffc69251416ae416f34e", "cast_id": 23, "profile_path": "/zDQTq30efWD5UWv62tYXziLTn64.jpg", "order": 13}, {"name": "Ben Thornton", "character": "Young Quinn", "id": 945121, "credit_id": "5300002c9251416ae1175772", "cast_id": 24, "profile_path": "/cYKvmGcKMrPmyAaB6rGjzg5GDfP.jpg", "order": 14}, {"name": "Alice Krige", "character": "Karen Abercromby", "id": 2506, "credit_id": "530001309251412a16124a2b", "cast_id": 25, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 15}], "directors": [{"name": "Rob Bowman", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d27b", "profile_path": "/u9iJgOc7XOkStRXbAHZe2qJ2O8p.jpg", "id": 12523}], "vote_average": 6.0, "runtime": 101}, "6279": {"poster_path": "/tLbvfUYw8Pr7DMI5TGL5DX1bx5S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57319029, "overview": "Deloris Van Cartier is again asked to don the nun's habit to help a run-down Catholic school, presided over by Mother Superior. And if trying to reach out to a class full of uninterested students wasn't bad enough, the sisters discover that the school is due to be closed by the unscrupulous local authority chief Mr. Crisp.", "video": false, "id": 6279, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}], "title": "Sister Act 2: Back in the Habit", "tagline": "", "vote_count": 70, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5zLMzYgpx2TNmISTk1MnRyRWY9M.jpg", "poster_path": "/m9xbNgB8MrrGOCvc4vjOtSWdqh9.jpg", "id": 103573, "name": "Sister Act Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108147", "adult": false, "backdrop_path": "/dvt6M1gtdUUg5NJVkkGw5Fleomd.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1993-12-09", "popularity": 0.391313601463671, "original_title": "Sister Act 2: Back in the Habit", "budget": 0, "cast": [{"name": "Whoopi Goldberg", "character": "Deloris Van Cartier", "id": 2395, "credit_id": "52fe4449c3a36847f808d2e7", "cast_id": 1, "profile_path": "/n3lF8w4X4rDa4J2LMDIxMEcuUeH.jpg", "order": 0}, {"name": "Kathy Najimy", "character": "Sister Mary Patrick", "id": 11074, "credit_id": "52fe4449c3a36847f808d2eb", "cast_id": 2, "profile_path": "/eFFh5QU9ErNKls7WfyG8VHEc2MY.jpg", "order": 1}, {"name": "James Coburn", "character": "Mr. Crisp", "id": 5563, "credit_id": "52fe4449c3a36847f808d2ef", "cast_id": 3, "profile_path": "/4VkbAYRB5FRt3ZpEsOQ5TbuvRz9.jpg", "order": 2}, {"name": "Barnard Hughes", "character": "Father Maurice", "id": 2549, "credit_id": "52fe4449c3a36847f808d2f9", "cast_id": 5, "profile_path": "/73ZdhiQ6IzIOl8SHX73dzq7qAQW.jpg", "order": 3}, {"name": "Mary Wickes", "character": "Sister Mary Lazarus", "id": 20624, "credit_id": "52fe4449c3a36847f808d2fd", "cast_id": 6, "profile_path": "/5j9h5zBcsElyv0dHImPieBuQ4eL.jpg", "order": 4}, {"name": "Michael Jeter", "character": "Father Ignatius", "id": 2169, "credit_id": "52fe4449c3a36847f808d301", "cast_id": 7, "profile_path": "/oJTjyq7RGOd1m49RvDpw12bQcvT.jpg", "order": 5}, {"name": "Wendy Makkena", "character": "Sister Mary Robert", "id": 20623, "credit_id": "52fe4449c3a36847f808d305", "cast_id": 8, "profile_path": "/9Nx0N6vQP3czBYSiRgAZbETqAiC.jpg", "order": 6}, {"name": "Sheryl Lee Ralph", "character": "Florence Watson", "id": 33613, "credit_id": "52fe4449c3a36847f808d309", "cast_id": 9, "profile_path": "/sdd9mXYACgINvzY6uB8flchcUnC.jpg", "order": 7}, {"name": "Robert Pastorelli", "character": "Joey Bustamente", "id": 7866, "credit_id": "52fe4449c3a36847f808d30d", "cast_id": 10, "profile_path": "/bgoNfv93PaKf6Pg3mwyxJZN8CVp.jpg", "order": 8}, {"name": "Thomas Gottschalk", "character": "Father Wolfgang", "id": 38832, "credit_id": "52fe4449c3a36847f808d311", "cast_id": 11, "profile_path": "/nEEGPc5OblVTmnCREfwP3L7qSQZ.jpg", "order": 9}, {"name": "Maggie Smith", "character": "Mother Superior", "id": 10978, "credit_id": "52fe4449c3a36847f808d315", "cast_id": 12, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 10}, {"name": "Lauryn Hill", "character": "Rita Louise Watson", "id": 4244, "credit_id": "52fe4449c3a36847f808d319", "cast_id": 13, "profile_path": "/2HinYxGXU0bj7DJrOaB0iVwYgpS.jpg", "order": 11}, {"name": "Brad Sullivan", "character": "Father Thomas", "id": 1274, "credit_id": "52fe4449c3a36847f808d31d", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Alanna Ubach", "character": "Maria", "id": 10402, "credit_id": "52fe4449c3a36847f808d321", "cast_id": 15, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 13}, {"name": "Ron Johnson", "character": "Richard 'Sketch' Pinshum", "id": 182691, "credit_id": "52fe4449c3a36847f808d325", "cast_id": 16, "profile_path": null, "order": 14}, {"name": "Jennifer Love Hewitt", "character": "Margare", "id": 33259, "credit_id": "52fe4449c3a36847f808d329", "cast_id": 17, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 15}, {"name": "Devin Kamin", "character": "Frankie", "id": 174966, "credit_id": "52fe4449c3a36847f808d32d", "cast_id": 18, "profile_path": null, "order": 16}], "directors": [{"name": "Bill Duke", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d2f5", "profile_path": "/46uPgJKKjAhPak4G7526ZFHiRvA.jpg", "id": 1103}], "vote_average": 5.8, "runtime": 107}, "6280": {"poster_path": "/bwt2hkLGKo5KAVMCw4u1umUPhax.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108, "overview": "As part of a fertility research project, a male scientist agrees to carry a pregnancy in his own body.", "video": false, "id": 6280, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Junior", "tagline": "Nothing is inconceivable", "vote_count": 82, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0110216", "adult": false, "backdrop_path": "/6N3PAKNCUs1JA3VVqt59pqc6yUU.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1994-11-22", "popularity": 0.577291670522538, "original_title": "Junior", "budget": 60000000, "cast": [{"name": "Arnold Schwarzenegger", "character": "Dr. Alex Hesse", "id": 1100, "credit_id": "52fe4449c3a36847f808d369", "cast_id": 1, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 0}, {"name": "Danny DeVito", "character": "Dr. Larry Arbogast", "id": 518, "credit_id": "52fe4449c3a36847f808d36d", "cast_id": 2, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Emma Thompson", "character": "Dr. Diana Reddin", "id": 7056, "credit_id": "52fe4449c3a36847f808d371", "cast_id": 3, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 2}, {"name": "Frank Langella", "character": "Noah Banes", "id": 8924, "credit_id": "52fe4449c3a36847f808d3a5", "cast_id": 12, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 3}, {"name": "Pamela Reed", "character": "Angela", "id": 14699, "credit_id": "52fe4449c3a36847f808d3a9", "cast_id": 13, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 4}, {"name": "Aida Turturro", "character": "Louise", "id": 106791, "credit_id": "52fe4449c3a36847f808d3ad", "cast_id": 14, "profile_path": "/efqEyVJwU2o4zmfvlbuxOxlbEXj.jpg", "order": 5}, {"name": "Megan Cavanagh", "character": "Willow", "id": 53570, "credit_id": "52fe4449c3a36847f808d3b1", "cast_id": 15, "profile_path": "/xZML4JXgD7Yd0f19hXhq7bXLXfC.jpg", "order": 6}, {"name": "Welker White", "character": "Jenny", "id": 93620, "credit_id": "52fe4449c3a36847f808d3b5", "cast_id": 16, "profile_path": "/aR8bLPY8Z74JIYSQ4RK5VlDz19O.jpg", "order": 7}, {"name": "Christopher Meloni", "character": "Mr. Lanzarotta", "id": 22227, "credit_id": "52fe4449c3a36847f808d3b9", "cast_id": 17, "profile_path": "/qUxRtuQxWcuaUitnKoTyKgeIitu.jpg", "order": 8}, {"name": "Misa Koprova", "character": "Lyndon Receptionist", "id": 198878, "credit_id": "532558e1925141652a001578", "cast_id": 19, "profile_path": "/AsKAZK6lscFlV8FOyTMct3N20mM.jpg", "order": 9}, {"name": "James Eckhouse", "character": "Ned Sneller", "id": 19151, "credit_id": "54505b9cc3a36802420034ea", "cast_id": 21, "profile_path": "/4CUK6M7fGVK5Z1Qg65rMLDI6BdO.jpg", "order": 10}, {"name": "Mindy Seeger", "character": "Alice", "id": 1235819, "credit_id": "54505cd6c3a3680245003210", "cast_id": 22, "profile_path": "/qOMJAS5rLXQeuq3rNkehXW9cELM.jpg", "order": 11}, {"name": "Alexander Enberg", "character": "Arthur", "id": 1219384, "credit_id": "54505e06c3a368024200354d", "cast_id": 23, "profile_path": "/2nRIHKmA1SdFee6u6aSZd6PxFlP.jpg", "order": 12}, {"name": "Mary Gordon Murray", "character": "Betty", "id": 1190638, "credit_id": "54505f550e0a2642c2000376", "cast_id": 24, "profile_path": "/2n81SNTBdliBrEMRDdFWSMIhpVK.jpg", "order": 13}, {"name": "Stefan Gierasch", "character": "Edward Sawyer", "id": 52463, "credit_id": "545060d90e0a263a1000343e", "cast_id": 25, "profile_path": "/y4w2yNJYdAcaKddQyCYm4qtmLqO.jpg", "order": 14}, {"name": "Ryan Doss", "character": "Jake", "id": 1378990, "credit_id": "5450615cc3a368532b0033a1", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Zachary Doss", "character": "Jake", "id": 1378991, "credit_id": "545062b90e0a2639fe003587", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Brianna McConnell", "character": "Junior", "id": 1378995, "credit_id": "545063ee0e0a263a04003590", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Brittany McConnell", "character": "Junior", "id": 1378998, "credit_id": "54506595c3a3680245003366", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Lawrence T. Wrentz", "character": "l'agent de s\u00e9curit\u00e9 du campus", "id": 192268, "credit_id": "545066950e0a262d4600090f", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Tom Dugan", "character": "l'homme langouste", "id": 1144361, "credit_id": "5450c1530e0a2601d8003cf4", "cast_id": 31, "profile_path": "/obQfb3EhWnbxEYK7S0bLZw6oMJ6.jpg", "order": 20}, {"name": "Monika Schnarre", "character": "l'infirmi\u00e8re ang\u00e9lique", "id": 101905, "credit_id": "5450c23a0e0a263a04004101", "cast_id": 32, "profile_path": "/asyQVu4HXsWW3HNT2Itp00E5zSO.jpg", "order": 21}, {"name": "Cassandra Wilson", "character": "la chanteuse", "id": 1246316, "credit_id": "5450c3f6c3a368022a00400c", "cast_id": 33, "profile_path": "/4udA0ZJcqRSQVxzRQtWP7BdiSrA.jpg", "order": 22}, {"name": "Holly Wortell", "character": "la femme langouste", "id": 1229280, "credit_id": "5450c656c3a3680239003c7e", "cast_id": 34, "profile_path": "/oNyq9c2sh3pMd7hcoZneyhl4vrg.jpg", "order": 23}, {"name": "Charmaine Alicia Mancil", "character": "la gardienne du Scanner", "id": 1379075, "credit_id": "5450c69a0e0a2639fe0040dc", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Ellen McLaughlin", "character": "la pr\u00e9sidente de FDA", "id": 171661, "credit_id": "5450c8740e0a262d46001463", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Julie Nunis", "character": "le contr\u00f4leur des billets", "id": 1379079, "credit_id": "5450c969c3a3680233003c92", "cast_id": 37, "profile_path": "/9CzoJdJOCE8H3WQeeFfm1Ax5gWI.jpg", "order": 26}, {"name": "Dee Hengstler", "character": "les danseurs au banquet", "id": 100970, "credit_id": "5450cbc3c3a3680239003d2b", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Bubba Dean Rambo", "character": "les danseurs au banquet", "id": 1193101, "credit_id": "5450cc230e0a263a0a003fd3", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Daryl Richardson", "character": "les danseurs au banquet", "id": 1379080, "credit_id": "5450cc7e0e0a263a0400421f", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "Jerald Vincent", "character": "les danseurs au banquet", "id": 1379081, "credit_id": "5450cce2c3a3680236003f02", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Maurice Schwartzman", "character": "les danseurs au banquet", "id": 1379082, "credit_id": "5450cd54c3a368022a004109", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "Kim Wolfe", "character": "les danseurs au banquet", "id": 1379084, "credit_id": "5450ce24c3a3680245003ec4", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Charles McGowan", "character": "les danseurs au banquet", "id": 19263, "credit_id": "5450ce990e0a2642c2000ffd", "cast_id": 44, "profile_path": null, "order": 33}, {"name": "Kevin West", "character": "les dirigeants de Lyndon", "id": 57869, "credit_id": "5450cf6a0e0a263a04004274", "cast_id": 45, "profile_path": "/xkgRvORUYLButBebCpbd09Qg10H.jpg", "order": 34}, {"name": "Ira Newborn", "character": "les dirigeants de Lyndon", "id": 12939, "credit_id": "5450d05ac3a368023c003f86", "cast_id": 46, "profile_path": null, "order": 35}, {"name": "Lisa Summerour", "character": "les femmes du cours d'exercices Casitas Madres", "id": 1318896, "credit_id": "5450d0ccc3a3680233003d74", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Jodi Knotts", "character": "les femmes en salle d'attente", "id": 1379090, "credit_id": "5450d2940e0a2639fe004229", "cast_id": 48, "profile_path": "/piLL0E5ytxmNam3wsH6iTt8Quu9.jpg", "order": 37}, {"name": "Michele Abrams", "character": "les femmes en salle d'attente", "id": 77012, "credit_id": "5450d39dc3a368023c003fd5", "cast_id": 49, "profile_path": "/mtAz09TCkJrr3O1QFfbf7neFdWK.jpg", "order": 38}, {"name": "Susan Dills", "character": "les filles du campus", "id": 1379091, "credit_id": "5450d3e2c3a368532b00419d", "cast_id": 50, "profile_path": null, "order": 39}, {"name": "Maggy Myers Davidson", "character": "les filles du campus", "id": 1379092, "credit_id": "5450d452c3a368022a0041b2", "cast_id": 51, "profile_path": null, "order": 40}, {"name": "Brandon Ross", "character": "les musiciens du banquet", "id": 1379096, "credit_id": "5450d50f0e0a263a1800406e", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Steven 'Lance' Carter", "character": "les musiciens du banquet", "id": 1379100, "credit_id": "5450d60f0e0a2642c20010a7", "cast_id": 53, "profile_path": null, "order": 42}, {"name": "Kathleen Chalfant", "character": "les r\u00e9ceptionnistes de Casitas Madres", "id": 52003, "credit_id": "5450d6f7c3a368022a004207", "cast_id": 54, "profile_path": "/sxsYCRctVv85Ebzgwm32Mx9UpDd.jpg", "order": 43}, {"name": "Anna Gunn", "character": "les r\u00e9ceptionnistes de Casitas Madres", "id": 134531, "credit_id": "5450d768c3a368532b004206", "cast_id": 55, "profile_path": "/6yLKtfYFWbJp5HAjvCecQCYlmqk.jpg", "order": 44}, {"name": "Antoinette Peragine", "character": "Mrs. Lanzarotta", "id": 1379101, "credit_id": "5450d7f5c3a3680233003e3b", "cast_id": 56, "profile_path": "/oKg9HwC5iwVpxzdg7N3yXfp28yM.jpg", "order": 45}, {"name": "Leah Teweles", "character": "Mrs. Logan", "id": 1379106, "credit_id": "5450d8c2c3a368024200436c", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Judy Collins", "character": "Naomi", "id": 1226857, "credit_id": "5450da760e0a262d4600165f", "cast_id": 58, "profile_path": "/bYPQaFJFaUMpWKFFJQ4x9R5O6XP.jpg", "order": 47}, {"name": "Merle Kennedy", "character": "Samantha", "id": 105000, "credit_id": "5450dbb2c3a368023c0040a3", "cast_id": 59, "profile_path": null, "order": 48}, {"name": "Dean Jacobson", "character": "Turkel", "id": 68497, "credit_id": "5450dc49c3a368023600409f", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Peter Chen", "character": "un chauffeur de taxi", "id": 190312, "credit_id": "5450ddc6c3a368532b0042be", "cast_id": 61, "profile_path": "/vony2LVCFJyGYoow76FMPBbg2QY.jpg", "order": 50}, {"name": "Lawrence Tierney", "character": "un d\u00e9m\u00e9nageur", "id": 6937, "credit_id": "5450decac3a368022a004307", "cast_id": 62, "profile_path": "/iFPg06kGUTdgRUkrYir3xt1Dt7c.jpg", "order": 51}, {"name": "Matt Mulhern", "character": "un d\u00e9m\u00e9nageur", "id": 85867, "credit_id": "5450e02f0e0a2642c2001200", "cast_id": 63, "profile_path": "/weHecbtH8o8PCSKv0Ukkm0yER8u.jpg", "order": 52}, {"name": "John Pinette", "character": "un employ\u00e9", "id": 82415, "credit_id": "5450e0810e0a263a100042ea", "cast_id": 64, "profile_path": "/A2sBHjPuNRuBdju9y4LuMHS2Nr3.jpg", "order": 53}, {"name": "Christopher Pray", "character": "un journaliste", "id": 1379113, "credit_id": "5450e0df0e0a262d4600171a", "cast_id": 65, "profile_path": null, "order": 54}, {"name": "John Yang", "character": "un journaliste", "id": 1171087, "credit_id": "5450e289c3a368023c00415b", "cast_id": 66, "profile_path": null, "order": 55}, {"name": "Sara Peery", "character": "une journaliste", "id": 1379116, "credit_id": "5450e360c3a3680239003f98", "cast_id": 68, "profile_path": null, "order": 57}, {"name": "Jan Yanehiro", "character": "un journaliste", "id": 1035519, "credit_id": "5450e4650e0a2642c2001274", "cast_id": 69, "profile_path": null, "order": 58}, {"name": "Dennis O'Donnell", "character": "un journaliste", "id": 1379117, "credit_id": "5450e4ad0e0a263a10004357", "cast_id": 70, "profile_path": null, "order": 59}, {"name": "Beth Campbell Fitzgerald", "character": "une journaliste", "id": 1379118, "credit_id": "5450e5460e0a263a18004204", "cast_id": 71, "profile_path": null, "order": 60}, {"name": "Fred Stoller", "character": "un serveur", "id": 1223828, "credit_id": "5450ea640e0a2639fe0044ed", "cast_id": 72, "profile_path": "/e6SNPg0VwUPlzeni9zRSMbGAIKZ.jpg", "order": 61}, {"name": "Allen Walls", "character": "un serveur au banquet", "id": 1379140, "credit_id": "5450ead5c3a368532b004442", "cast_id": 73, "profile_path": "/l9uGptKDu67ErPG3KuquduvR25.jpg", "order": 62}, {"name": "Kevin Sifuentes", "character": "un valet au banquet", "id": 102578, "credit_id": "5450ed310e0a2601d8004185", "cast_id": 74, "profile_path": "/8sX4lmfYnU0q0XXoxfbxju4c4tW.jpg", "order": 63}, {"name": "Maggie Han", "character": "une assistante du labo", "id": 11396, "credit_id": "5450ed84c3a36802390040a8", "cast_id": 75, "profile_path": null, "order": 64}, {"name": "Judy Ovitz", "character": "une h\u00f4tesse", "id": 1379150, "credit_id": "5450edc4c3a36802330040a4", "cast_id": 76, "profile_path": null, "order": 65}, {"name": "Dayna Winston", "character": "une h\u00f4tesse \u00e0 la porte d'embarquement", "id": 1379153, "credit_id": "5450ef160e0a263a180042fd", "cast_id": 77, "profile_path": "/rN936L9JvFwMgBjlZllw9yehTEg.jpg", "order": 66}], "directors": [{"name": "Ivan Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d377", "profile_path": "/9XDAJ2VrY7pl7x08KScHpFepG7F.jpg", "id": 8858}], "vote_average": 4.8, "runtime": 109}, "6282": {"poster_path": "/15A92dWMP4anntYpAQ0Mzq7wtru.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113916474, "overview": "When gorgeous, talented Violet Sanford lands in New York City with hopes of becoming a famous songwriter, she's forced to make ends meet by working at Coyote Ugly, a hot new club filled with beautiful bartenders and outrageous entertainment. Shaking her assets behind the bar certainly helps to boost the shy Violet's confidence. But it hasn't completely cured her crippling case of stage fright.", "video": false, "id": 6282, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Coyote Ugly", "tagline": "The Party Never Ends.", "vote_count": 154, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0200550", "adult": false, "backdrop_path": "/tm1Mv4t32RXLoeouGnxw6W0t5jk.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2000-07-30", "popularity": 0.678516116166829, "original_title": "Coyote Ugly", "budget": 80000000, "cast": [{"name": "Piper Perabo", "character": "Violet Sanford", "id": 15555, "credit_id": "52fe4449c3a36847f808d4a9", "cast_id": 1, "profile_path": "/50RVTSH3dmQYp8osJeogzOhQFyN.jpg", "order": 0}, {"name": "Adam Garcia", "character": "Kevin O'Donnell", "id": 28472, "credit_id": "52fe4449c3a36847f808d4ad", "cast_id": 2, "profile_path": "/mNN5sBCsBbx1F9pG6QTqQtQ7vA3.jpg", "order": 1}, {"name": "John Goodman", "character": "Bill", "id": 1230, "credit_id": "52fe4449c3a36847f808d4b1", "cast_id": 3, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Izabella Miko", "character": "Cammie", "id": 59592, "credit_id": "52fe4449c3a36847f808d4bb", "cast_id": 5, "profile_path": "/y17WPWE0tOFroVttwayzU3Q2Mxb.jpg", "order": 3}, {"name": "Tyra Banks", "character": "Zoe", "id": 77897, "credit_id": "52fe4449c3a36847f808d4bf", "cast_id": 6, "profile_path": "/tmNsskMEGCDdTyWS2vNDvzCtyM9.jpg", "order": 4}, {"name": "Maria Bello", "character": "Lil", "id": 49, "credit_id": "52fe4449c3a36847f808d4c3", "cast_id": 7, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 5}, {"name": "Greg Collins", "character": "Coyote Ugly Bar Patron", "id": 58950, "credit_id": "52fe4449c3a36847f808d4fd", "cast_id": 17, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 6}, {"name": "Chip Chinery", "character": "Cop", "id": 155692, "credit_id": "52fe4449c3a36847f808d501", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Michael Bay", "character": "Photographer", "id": 865, "credit_id": "52fe4449c3a36847f808d505", "cast_id": 19, "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "order": 8}, {"name": "Stephanie Hodge", "character": "Dancing Girl in Bar", "id": 164944, "credit_id": "52fe4449c3a36847f808d509", "cast_id": 20, "profile_path": "/l5GsrC7iHU9tg98LZhh8MzQktRL.jpg", "order": 9}, {"name": "Carla Alapont", "character": "Dancing Girl in Bar", "id": 1290175, "credit_id": "52fe4449c3a36847f808d50d", "cast_id": 21, "profile_path": "/c9Ty0lTIrCtgzDtfmAbj5wTQ8LS.jpg", "order": 10}, {"name": "Sarah Jane Morris", "character": "Girl at the Surprise Party", "id": 70304, "credit_id": "52fe4449c3a36847f808d511", "cast_id": 22, "profile_path": "/ykk7CjHP7iXcX0XBWrtEYVG9Nc4.jpg", "order": 11}, {"name": "Kaitlin Olson", "character": "Bidding Customer", "id": 95102, "credit_id": "52fe4449c3a36847f808d515", "cast_id": 24, "profile_path": "/oRSDYUN7fXVWHp7FNq1P874i1Yf.jpg", "order": 12}, {"name": "Melanie Lynskey", "character": "Gloria", "id": 15091, "credit_id": "52fe4449c3a36847f808d519", "cast_id": 25, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 13}, {"name": "Susan Yeagley", "character": "Bidding Customer", "id": 1221086, "credit_id": "52fe4449c3a36847f808d51d", "cast_id": 26, "profile_path": "/jMF7RzbaPgdqhE58qT17LxDAWaZ.jpg", "order": 14}, {"name": "JJ Snyder", "character": "Bidding Customer", "id": 1290425, "credit_id": "52fe444ac3a36847f808d521", "cast_id": 27, "profile_path": "/kYuLKfy0p1jHUwVrzfRLoY0Pqt6.jpg", "order": 15}, {"name": "Whitney Dylan", "character": "Fiji Mermaid Worker", "id": 1219596, "credit_id": "533032809251413a78005641", "cast_id": 28, "profile_path": "/haj7cQlcCNKVTvGlOao25kROZAV.jpg", "order": 16}], "directors": [{"name": "David McNally", "department": "Directing", "job": "Director", "credit_id": "52fe4449c3a36847f808d4b7", "profile_path": "/zDWpttAr1LAYj7uuOA0LCWO76TU.jpg", "id": 48980}], "vote_average": 6.0, "runtime": 100}, "152599": {"poster_path": "/s1KTOHIQkn78NT74bz7pmxM6c7x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5867686, "overview": "An innocent immigrant woman is tricked into a life of burlesque and vaudeville until a dazzling magician tries to save her and reunite her with her sister who is being held in the confines of Ellis Island.", "video": false, "id": 152599, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Immigrant", "tagline": "", "vote_count": 52, "homepage": "http://theimmigrant-lefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt1951181", "adult": false, "backdrop_path": "/qnvApBAWbXNm4C1PaiMsOcWfjnj.jpg", "production_companies": [{"name": "Kingsgate Films", "id": 770}, {"name": "Worldview Entertainment", "id": 9015}], "release_date": "2013-11-27", "popularity": 1.22060429065963, "original_title": "The Immigrant", "budget": 16000000, "cast": [{"name": "Jeremy Renner", "character": "Orlando the Magician", "id": 17604, "credit_id": "52fe4b259251416c910d15cd", "cast_id": 4, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Marion Cotillard", "character": "Ewa Cybulski", "id": 8293, "credit_id": "52fe4b259251416c910d15d1", "cast_id": 5, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 1}, {"name": "Joaquin Phoenix", "character": "Bruno Weiss", "id": 73421, "credit_id": "52fe4b259251416c910d15d5", "cast_id": 6, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 2}, {"name": "Dagmara Domi\u0144czyk", "character": "Belva", "id": 52776, "credit_id": "52fe4b259251416c910d15df", "cast_id": 8, "profile_path": "/wQ15ftdMUkwt281XZYBhyHAci0z.jpg", "order": 3}, {"name": "Gabriel Rush", "character": "Delivery Boy", "id": 1142686, "credit_id": "52fe4b259251416c910d15e3", "cast_id": 9, "profile_path": "/cUVwfWMapARIFYwiL75fndjpQMn.jpg", "order": 4}, {"name": "Antoni Corone", "character": "Thomas MacNally", "id": 20562, "credit_id": "52fe4b259251416c910d15e7", "cast_id": 10, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 5}, {"name": "Deedee Luxe", "character": "Bandits Roost Tart", "id": 1182185, "credit_id": "52fe4b259251416c910d15eb", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Angela Sarafyan", "character": "Magda Cybulska", "id": 85143, "credit_id": "54678f46eaeb8118be0003bb", "cast_id": 24, "profile_path": "/wJoJLYaSpRF9Ihca1reca1uR9he.jpg", "order": 7}], "directors": [{"name": "James Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4b259251416c910d15bd", "profile_path": "/y9yj1f72VATeq8JSQEvTYpQe4AP.jpg", "id": 20561}], "vote_average": 5.7, "runtime": 120}, "80035": {"poster_path": "/llVq0170tBmPCcqVuFnV7CilrLj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34350553, "overview": "Four everyday suburban guys come together as an excuse to escape their humdrum lives one night a week. But when they accidentally discover that their town has become overrun with aliens posing as ordinary suburbanites, they have no choice but to save their neighborhood - and the world - from total extermination.", "video": false, "id": 80035, "genres": [{"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Watch", "tagline": "Got Protection?", "vote_count": 345, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1298649", "adult": false, "backdrop_path": "/2AqqmCXBzYh0Pyf6L6t8cHtsrGX.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}, {"name": "21 Laps Entertainment", "id": 2575}], "release_date": "2012-07-27", "popularity": 1.2749157731002, "original_title": "The Watch", "budget": 68000000, "cast": [{"name": "Jonah Hill", "character": "Franklin", "id": 21007, "credit_id": "52fe479e9251416c91070355", "cast_id": 5, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Evan", "id": 7399, "credit_id": "52fe479e9251416c91070359", "cast_id": 6, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Vince Vaughn", "character": "Bob", "id": 4937, "credit_id": "52fe479e9251416c9107035d", "cast_id": 7, "profile_path": "/1Ta0BKSJ1wku88M8qCfmlTQLzAf.jpg", "order": 2}, {"name": "Richard Ayoade", "character": "Jamarcus", "id": 98103, "credit_id": "52fe479e9251416c91070361", "cast_id": 9, "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "order": 3}, {"name": "Rosemarie DeWitt", "character": "Evan's wife", "id": 14892, "credit_id": "52fe479e9251416c91070365", "cast_id": 10, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 4}, {"name": "R. Lee Ermey", "character": "Manfred", "id": 8655, "credit_id": "52fe479e9251416c91070369", "cast_id": 11, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 5}, {"name": "Doug Jones", "character": "Hero Alien", "id": 17005, "credit_id": "52fe479e9251416c9107036d", "cast_id": 12, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 6}, {"name": "Will Forte", "character": "Sergeant Bressman", "id": 62831, "credit_id": "52fe479e9251416c91070371", "cast_id": 13, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 7}, {"name": "Nicholas Braun", "character": "Jason", "id": 85139, "credit_id": "52fe479e9251416c91070375", "cast_id": 14, "profile_path": "/l8abR6GX9US4AvvVOuEeotvR3kZ.jpg", "order": 8}, {"name": "Johnny Pemberton", "character": "Punk Kid", "id": 1060081, "credit_id": "52fe479e9251416c91070379", "cast_id": 15, "profile_path": "/lV9UognW1VG8P8nESSrArveBRou.jpg", "order": 9}, {"name": "Jorma Taccone", "character": "Casual Wanker #2", "id": 62863, "credit_id": "52fe479e9251416c9107037d", "cast_id": 16, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 10}, {"name": "Justin Wheelon", "character": "Kyle", "id": 1046354, "credit_id": "52fe479e9251416c91070381", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Willam Belli", "character": "Olivia", "id": 170432, "credit_id": "52fe479e9251416c91070385", "cast_id": 18, "profile_path": "/yJxx10mp93U5jpG3bb3Id2pYVm3.jpg", "order": 12}, {"name": "Carissa Capobianco", "character": "Mandy", "id": 450951, "credit_id": "52fe479e9251416c91070389", "cast_id": 19, "profile_path": "/hXCzjFx0GwG4ipxi2ZhWanSEFRe.jpg", "order": 13}, {"name": "Billy Crudup", "character": "Neighbor", "id": 8289, "credit_id": "52fe479e9251416c910703ab", "cast_id": 27, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 14}, {"name": "Erin Moriarty", "character": "Chelsea", "id": 990393, "credit_id": "52fe479e9251416c910703cd", "cast_id": 33, "profile_path": "/v0jDVSB0HugI3mRjkirOgLBawM7.jpg", "order": 15}], "directors": [{"name": "Akiva Schaffer", "department": "Directing", "job": "Director", "credit_id": "52fe479e9251416c91070345", "profile_path": "/AndF7ndhBbCgHTicoHjCKDxmoi5.jpg", "id": 62854}], "vote_average": 5.3, "runtime": 98}, "80038": {"poster_path": "/8P1iId23hDMVQL00k2IbzW46qQG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12186625, "overview": "Revolves around a pair of best friends in their 30s who observe the effect of having kids has taken on the couples they know. To avoid that toll, the best friends resolve to have a child and then date other people.", "video": false, "id": 80038, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Friends with Kids", "tagline": "Family doesn't always go according to plan.", "vote_count": 64, "homepage": "http://www.friendswithkids.com/#", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1720616", "adult": false, "backdrop_path": "/uDT5U5VBn2TVjUQsoV9hxouHmtH.jpg", "production_companies": [{"name": "Locomotive", "id": 6404}], "release_date": "2011-09-09", "popularity": 0.781319300810492, "original_title": "Friends with Kids", "budget": 7251073, "cast": [{"name": "Kristen Wiig", "character": "Missy", "id": 41091, "credit_id": "52fe479e9251416c91070493", "cast_id": 1, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 0}, {"name": "Jon Hamm", "character": "Ben", "id": 65717, "credit_id": "52fe479e9251416c91070497", "cast_id": 2, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 1}, {"name": "Jennifer Westfeldt", "character": "Julie Keller", "id": 119368, "credit_id": "52fe479f9251416c910704f1", "cast_id": 21, "profile_path": "/ZCuD043X1SS5yIHXQcPJ8Tg9Vs.jpg", "order": 2}, {"name": "Megan Fox", "character": "Mary Jane", "id": 19537, "credit_id": "52fe479e9251416c9107049b", "cast_id": 3, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 3}, {"name": "Chris O'Dowd", "character": "Alex", "id": 40477, "credit_id": "52fe479e9251416c9107049f", "cast_id": 4, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 4}, {"name": "Maya Rudolph", "character": "Leslie", "id": 52792, "credit_id": "52fe479e9251416c910704a3", "cast_id": 5, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 5}, {"name": "Edward Burns", "character": "Kurt", "id": 12833, "credit_id": "52fe479e9251416c910704a7", "cast_id": 6, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 6}, {"name": "Adam Scott", "character": "Jason", "id": 36801, "credit_id": "52fe479e9251416c910704ab", "cast_id": 7, "profile_path": "/5x21CfDeZo2Fq1AOskE1o6vYzlZ.jpg", "order": 7}, {"name": "Lee Bryant", "character": "Elaine Keller", "id": 160328, "credit_id": "52fe479e9251416c910704bb", "cast_id": 10, "profile_path": "/riFEbXO78dRCTxzQ358AVr1m4uD.jpg", "order": 8}, {"name": "Kelly Bishop", "character": "Marcy Fryman", "id": 728, "credit_id": "52fe479e9251416c910704bf", "cast_id": 11, "profile_path": "/rXjKYHafK17IiqgjWvmZYdmpdo9.jpg", "order": 9}, {"name": "Cotter Smith", "character": "Phil Fryman", "id": 115858, "credit_id": "52fe479e9251416c910704c3", "cast_id": 12, "profile_path": "/4lMLsN7hLmtGPqOt626dnui64Cb.jpg", "order": 10}], "directors": [{"name": "Jennifer Westfeldt", "department": "Directing", "job": "Director", "credit_id": "52fe479e9251416c910704b1", "profile_path": "/ZCuD043X1SS5yIHXQcPJ8Tg9Vs.jpg", "id": 119368}], "vote_average": 6.1, "runtime": 107}, "6312": {"poster_path": "/4jDtKADOlvE2HyqKAFvzvYFwKdy.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 70752904, "overview": "In 18th century France, the Chevalier de Fronsac and his native American friend Mani are sent by the King to the Gevaudan province to investigate the killings of hundreds by a mysterious beast.", "video": false, "id": 6312, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}, {"id": 27, "name": "Horror"}], "title": "Brotherhood of the Wolf", "tagline": "", "vote_count": 113, "homepage": "http://www.brotherhoodofthewolf.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0237534", "adult": false, "backdrop_path": "/l0GhQUGBjNxCA1kdDWaTPgsgNxF.jpg", "production_companies": [{"name": "TF1 Films Production", "id": 3823}, {"name": "Canal+", "id": 5358}, {"name": "Davis-Films", "id": 342}, {"name": "Eskwad", "id": 616}, {"name": "Natexis Banques Populaires Images", "id": 25863}, {"name": "Studio Image Soficas", "id": 25862}], "release_date": "2001-03-20", "popularity": 0.454078820400907, "original_title": "Le Pacte des loups", "budget": 29000000, "cast": [{"name": "Samuel Le Bihan", "character": "Gr\u00e9goire de Fronsac", "id": 49025, "credit_id": "52fe444ac3a36847f808d787", "cast_id": 1, "profile_path": "/j3OLT8ccuFREbG5TUwqfuHDZDkA.jpg", "order": 0}, {"name": "Vincent Cassel", "character": "Jean-Fran\u00e7ois de Morangias", "id": 1925, "credit_id": "52fe444ac3a36847f808d78b", "cast_id": 2, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 1}, {"name": "\u00c9milie Dequenne", "character": "Marianne de Morangias", "id": 23671, "credit_id": "52fe444ac3a36847f808d78f", "cast_id": 3, "profile_path": "/hvDRr36AcX8JjfhiU5qsvQNQKWw.jpg", "order": 2}, {"name": "Monica Bellucci", "character": "Sylvia", "id": 28782, "credit_id": "52fe444ac3a36847f808d793", "cast_id": 4, "profile_path": "/z3sLuRKP7hQVrvSTsqdLjGSldwG.jpg", "order": 3}, {"name": "J\u00e9r\u00e9mie Renier", "character": "Thomas d'Apcher", "id": 51325, "credit_id": "52fe444ac3a36847f808d7c7", "cast_id": 13, "profile_path": "/oIb19NzIJg0Rz9z2o2KvpeEy55t.jpg", "order": 4}, {"name": "Mark Dacascos", "character": "Mani", "id": 18702, "credit_id": "52fe444ac3a36847f808d7cb", "cast_id": 14, "profile_path": "/rg28gJ7hVgoKehCIzA7sf4dDuRN.jpg", "order": 5}, {"name": "Jean Yanne", "character": "Le Comte de Morangias", "id": 24381, "credit_id": "52fe444ac3a36847f808d7cf", "cast_id": 15, "profile_path": "/79Z1qcDpbyRp5HPSBQvm15xwqOI.jpg", "order": 6}, {"name": "Jean-Fran\u00e7ois St\u00e9venin", "character": "Sardis", "id": 6304, "credit_id": "52fe444ac3a36847f808d7d3", "cast_id": 16, "profile_path": "/82NUI5wvm0viU6U9PzGyRNLlnk5.jpg", "order": 7}, {"name": "Johan Leysen", "character": "Beauterne", "id": 53904, "credit_id": "52fe444ac3a36847f808d7d7", "cast_id": 17, "profile_path": "/cjLEEzFfEGoEEpHnNxjfso04Dd0.jpg", "order": 8}, {"name": "Jacques Perrin", "character": "Thomas Ag\u00e9", "id": 20030, "credit_id": "52fe444ac3a36847f808d7db", "cast_id": 18, "profile_path": "/dC3hgCkcTvsrw6fKxxTegJDQRzp.jpg", "order": 9}, {"name": "Bernard Farcy", "character": "Laffont", "id": 23984, "credit_id": "52fe444ac3a36847f808d7df", "cast_id": 19, "profile_path": "/OHzFbqBQDwAGYofJNFFH2Z8mPp.jpg", "order": 10}, {"name": "\u00c9dith Scob", "character": "Mme de Morangias", "id": 27980, "credit_id": "52fe444ac3a36847f808d7e3", "cast_id": 20, "profile_path": "/DbTl7eoRq2rFmRbXuIi9i2lJjz.jpg", "order": 11}, {"name": "Hans Meyer", "character": "Marquis d'Apcher", "id": 22796, "credit_id": "52fe444ac3a36847f808d7e7", "cast_id": 21, "profile_path": "/gk0VN84CbpRwdh9mO7d2EcoQyEJ.jpg", "order": 12}, {"name": "Virginie Darmon", "character": "La Bavarde", "id": 1130631, "credit_id": "52fe444ac3a36847f808d7eb", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Philippe Nahon", "character": "Jean Chastel", "id": 5444, "credit_id": "52fe444ac3a36847f808d7ef", "cast_id": 24, "profile_path": "/1ZrnApxh9qZz1EdEB1vKWwoFd5B.jpg", "order": 14}, {"name": "Nicky Naude", "character": "La F\u00ealure", "id": 370383, "credit_id": "53a93b7fc3a3687a34006987", "cast_id": 35, "profile_path": "/7o0JhUIHRd7R0A5yY6g0blNNQNf.jpg", "order": 15}, {"name": "Ga\u00eblle Cohen", "character": "La Loutre", "id": 132541, "credit_id": "53a93bb4c3a3687495005dd6", "cast_id": 36, "profile_path": "/4cZJreyjEceeISLTxX0eZuW656h.jpg", "order": 16}, {"name": "Charles Maquignon", "character": "Valet Maison Teissier", "id": 185296, "credit_id": "53a93be8c3a3687a2e006a87", "cast_id": 37, "profile_path": "/eHOiahagStCC3TssKOEpvulstY9.jpg", "order": 17}, {"name": "Gaspard Ulliel", "character": "Louis", "id": 16790, "credit_id": "53a93cb2c3a3687a430069c1", "cast_id": 38, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 18}, {"name": "Pascal Laugier", "character": "Assistant de Machemort", "id": 59611, "credit_id": "53a93cfac3a3687a4000697b", "cast_id": 39, "profile_path": null, "order": 19}], "directors": [{"name": "Christophe Gans", "department": "Directing", "job": "Director", "credit_id": "52fe444ac3a36847f808d799", "profile_path": "/8tFxHa7RT3MOBTs72j9pSwkG6MJ.jpg", "id": 8296}], "vote_average": 6.5, "runtime": 137}, "55465": {"poster_path": "/8zdGMb5lfq2JB5OpipASK85URHC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34413079, "overview": "Six years have elapsed since Guantanamo Bay, leaving Harold and Kumar estranged from one another with very different families, friends and lives. But when Kumar arrives on Harold's doorstep during the holiday season with a mysterious package in hand, he inadvertently burns down Harold's father-in-law's beloved Christmas tree. To fix the problem, Harold and Kumar embark on a mission through New York City to find the perfect Christmas tree, once again stumbling into trouble at every single turn.", "video": false, "id": 55465, "genres": [{"id": 35, "name": "Comedy"}], "title": "A Very Harold & Kumar Christmas", "tagline": "Christmas comes prematurely.", "vote_count": 118, "homepage": "http://haroldandkumar.warnerbros.com", "belongs_to_collection": {"backdrop_path": "/b70mFgsSn2hl3CvC0nRx0SHUEX0.jpg", "poster_path": "/9OBP4MQBAXnBZ1uXLZykIWRGnBb.jpg", "id": 30663, "name": "Harold & Kumar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1268799", "adult": false, "backdrop_path": "/2o8CFr4bqmYDiWQp1DRwC7Jh4VX.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Mandate Pictures", "id": 771}], "release_date": "2011-11-04", "popularity": 0.566965729001248, "original_title": "A Very Harold & Kumar Christmas", "budget": 19000000, "cast": [{"name": "Neil Patrick Harris", "character": "Neil", "id": 41686, "credit_id": "52fe48cec3a36847f817a74b", "cast_id": 1003, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 0}, {"name": "John Cho", "character": "Harold Lee", "id": 68842, "credit_id": "52fe48cec3a36847f817a74f", "cast_id": 1004, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Sergie Katsov", "id": 13550, "credit_id": "52fe48cec3a36847f817a753", "cast_id": 1005, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Danneel Ackles", "character": "Vanessa Fanning", "id": 81164, "credit_id": "52fe48cec3a36847f817a757", "cast_id": 1006, "profile_path": "/xy3LuMjbhkJ6KU8nMVPrWjuzKIA.jpg", "order": 3}, {"name": "Kal Penn", "character": "Kumar Patel", "id": 53493, "credit_id": "52fe48cec3a36847f817a75b", "cast_id": 1007, "profile_path": "/yxXuL1HVWaBMvrbwdDY1id3JwRZ.jpg", "order": 4}, {"name": "Patton Oswalt", "character": "Mall Santa", "id": 10872, "credit_id": "52fe48cec3a36847f817a75f", "cast_id": 1009, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 5}, {"name": "Isabella Gielniak", "character": "Caren", "id": 935275, "credit_id": "52fe48cec3a36847f817a763", "cast_id": 1010, "profile_path": "/wkCHnl1Ue9dScUIubKMQxqvbwHp.jpg", "order": 6}, {"name": "Austin Bickel", "character": "Kid in Line", "id": 935276, "credit_id": "52fe48cec3a36847f817a767", "cast_id": 1011, "profile_path": "/6WrySypnJGUSOHuqj2yPLmJFWXp.jpg", "order": 7}, {"name": "Inga R. Wilson", "character": "Mom in Line", "id": 935277, "credit_id": "52fe48cec3a36847f817a76b", "cast_id": 1012, "profile_path": null, "order": 8}, {"name": "Brett Gelman", "character": "T.V. Director", "id": 224197, "credit_id": "52fe48cec3a36847f817a793", "cast_id": 1020, "profile_path": "/ox8Tetm16FgBmwR3U2eYZGxRomN.jpg", "order": 9}, {"name": "Danny Trejo", "character": "Mr. Perez", "id": 11160, "credit_id": "52fe48cec3a36847f817a797", "cast_id": 1021, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Paula Garc\u00e9s", "character": "Maria", "id": 21124, "credit_id": "52fe48cec3a36847f817a7a1", "cast_id": 1023, "profile_path": "/bc1NhQCaUsoJFCi6vIGxiljQl86.jpg", "order": 11}, {"name": "Thomas Lennon", "character": "Todd", "id": 539, "credit_id": "52fe48cec3a36847f817a7a5", "cast_id": 1024, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 12}, {"name": "Eric Kissack", "character": "Wafflebot (voice)", "id": 224530, "credit_id": "54c0315692514148b000d542", "cast_id": 1026, "profile_path": null, "order": 13}], "directors": [{"name": "Todd Strauss-Schulson", "department": "Directing", "job": "Director", "credit_id": "52fe48cec3a36847f817a73b", "profile_path": null, "id": 222470}], "vote_average": 6.1, "runtime": 108}, "71859": {"poster_path": "/782lwRsgRBmt3OCdLZvASuedS1q.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6038942, "overview": "The mother of a teenage sociopath who went on a high-school killing spree recalls her son's deranged behavior during childhood, as she deals with her grief.", "video": false, "id": 71859, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "We Need to Talk About Kevin", "tagline": "", "vote_count": 117, "homepage": "http://kevin.oscilloscope.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1242460", "adult": false, "backdrop_path": "/6426SMwaHfMTdmygfQ5WGmly7Ya.jpg", "production_companies": [{"name": "BBC Films", "id": 288}], "release_date": "2011-05-12", "popularity": 0.423740857908726, "original_title": "We Need to Talk About Kevin", "budget": 7000000, "cast": [{"name": "John C. Reilly", "character": "Franklin", "id": 4764, "credit_id": "52fe484cc3a368484e0f1d43", "cast_id": 2, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 0}, {"name": "Tilda Swinton", "character": "Eva", "id": 3063, "credit_id": "52fe484cc3a368484e0f1d47", "cast_id": 3, "profile_path": "/eGNo9qwlunvAi4kCVUEFtQFM5X.jpg", "order": 1}, {"name": "Ezra Miller", "character": "Kevin", "id": 132157, "credit_id": "52fe484cc3a368484e0f1d4b", "cast_id": 4, "profile_path": "/swxGHWhm95cgQgwt7XNqAlnAUwF.jpg", "order": 2}, {"name": "Siobhan Fallon", "character": "Wanda", "id": 6751, "credit_id": "52fe484cc3a368484e0f1d4f", "cast_id": 5, "profile_path": "/eRQ5PAXOzrD3Ej4xlkp0RaK8WiZ.jpg", "order": 3}], "directors": [{"name": "Lynne Ramsay", "department": "Directing", "job": "Director", "credit_id": "52fe484cc3a368484e0f1d3f", "profile_path": null, "id": 83287}], "vote_average": 7.2, "runtime": 112}, "71864": {"poster_path": "/a4NMxSD6BbKT2zEMp2uqOn3uGXY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A childless couple bury a box in their backyard, containing all of their wishes for an infant. Soon, a child is born, though Timothy Green is not all that he appears.", "video": false, "id": 71864, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Odd Life of Timothy Green", "tagline": "He's a force of nature.", "vote_count": 118, "homepage": "http://disney.go.com/disneypictures/the-odd-life-of-timothy-green/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1462769", "adult": false, "backdrop_path": "/qUPiStKKvtfqfOxZ0rzmNcFgbdh.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2012-08-15", "popularity": 0.408265224960964, "original_title": "The Odd Life of Timothy Green", "budget": 0, "cast": [{"name": "Jennifer Garner", "character": "Cindy Green", "id": 9278, "credit_id": "52fe484cc3a368484e0f1ddf", "cast_id": 3, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 0}, {"name": "Joel Edgerton", "character": "Jim Green", "id": 33192, "credit_id": "52fe484cc3a368484e0f1de3", "cast_id": 4, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 1}, {"name": "Ron Livingston", "character": "Franklin Crudstaff", "id": 17402, "credit_id": "52fe484cc3a368484e0f1de7", "cast_id": 5, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 2}, {"name": "Rosemarie DeWitt", "character": "Brenda Best", "id": 14892, "credit_id": "52fe484cc3a368484e0f1deb", "cast_id": 6, "profile_path": "/uVbDEpLjOidwm92b23l0aMrJ9CG.jpg", "order": 3}, {"name": "CJ Adams", "character": "Timothy Green", "id": 1107800, "credit_id": "52fe484cc3a368484e0f1def", "cast_id": 7, "profile_path": "/czZGg0TvKY38w0cd7XXqvTIqXy0.jpg", "order": 4}, {"name": "Patrick Brouder", "character": "Dash Best", "id": 1108054, "credit_id": "52fe484cc3a368484e0f1df3", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Kendall Ryan Sanders", "character": "Rod Best (as Kendall Sanders)", "id": 1108055, "credit_id": "52fe484cc3a368484e0f1df7", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Chan Creswell", "character": "Billy CrudStaff", "id": 1108057, "credit_id": "52fe484cc3a368484e0f1dfb", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "William J. Harrison", "character": "Bobby Crudstaff", "id": 1108059, "credit_id": "52fe484cc3a368484e0f1dff", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Odeya Rush", "character": "Joni Jerome", "id": 1121786, "credit_id": "52fe484cc3a368484e0f1e03", "cast_id": 12, "profile_path": "/f9PSkyIjHUE5I5riVRZrUDav4YM.jpg", "order": 9}, {"name": "Shohreh Aghdashloo", "character": "Evette Onat", "id": 21041, "credit_id": "52fe484cc3a368484e0f1e07", "cast_id": 13, "profile_path": "/iSx8zmrDe4jd7xXZvLpfJ2d3rmM.jpg", "order": 10}, {"name": "David Morse", "character": "James Green, Sr.", "id": 52, "credit_id": "52fe484cc3a368484e0f1e0b", "cast_id": 14, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 11}, {"name": "M. Emmet Walsh", "character": "Uncle Bub", "id": 588, "credit_id": "52fe484cc3a368484e0f1e0f", "cast_id": 15, "profile_path": "/dLf79xlsmE40rog0gryjxsZJzml.jpg", "order": 12}, {"name": "Lois Smith", "character": "Aunt Mel", "id": 2207, "credit_id": "52fe484cc3a368484e0f1e13", "cast_id": 16, "profile_path": "/oyIYQpGu3L0yDzXH4utRb24xI5h.jpg", "order": 13}, {"name": "Dianne Wiest", "character": "Ms. Bernice Crudstaff", "id": 1902, "credit_id": "52fe484cc3a368484e0f1e17", "cast_id": 17, "profile_path": "/sWm7Oar69rHGJzKgcP4iutwUmLb.jpg", "order": 14}, {"name": "Ron Livingston", "character": "Franklin Crudstaff", "id": 17402, "credit_id": "52fe484cc3a368484e0f1e1b", "cast_id": 18, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 15}, {"name": "James Rebhorn", "character": "Joseph Crudstaff", "id": 8986, "credit_id": "52fe484cc3a368484e0f1e1f", "cast_id": 19, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 16}, {"name": "Common", "character": "Coach Cal", "id": 4238, "credit_id": "52fe484cc3a368484e0f1e23", "cast_id": 20, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 17}], "directors": [{"name": "Peter Hedges", "department": "Directing", "job": "Director", "credit_id": "52fe484cc3a368484e0f1dd5", "profile_path": "/sj2jd4t9nDYol6oNdupbQE2VVaC.jpg", "id": 3290}], "vote_average": 6.2, "runtime": 105}, "14534": {"poster_path": "/lkimdKMignuOmaZ3SmEtpvBTbdQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 22750363, "overview": "Rudy grew up in a steel mill town where most people ended up working, but wanted to play football at Notre Dame instead. There were only a couple of problems. His grades were a little low, his athletic skills were poor, and he was only half the size of the other players. But he had the drive and the spirit of 5 people and has set his sights upon joining the team.", "video": false, "id": 14534, "genres": [{"id": 18, "name": "Drama"}], "title": "Rudy", "tagline": "It's not the size of the dog in the fight, It's the size of the fight in the dog.", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0108002", "adult": false, "backdrop_path": "/zQdYrlENSC2VOs9GVv3XjfHJfT0.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1993-10-13", "popularity": 0.136256682070047, "original_title": "Rudy", "budget": 12000000, "cast": [{"name": "Sean Astin", "character": "Daniel E. 'Rudy' Ruettiger", "id": 1328, "credit_id": "52fe45fc9251416c75069477", "cast_id": 1, "profile_path": "/ezv9hRbgrR6Uuz4xWqX22cpiRXJ.jpg", "order": 0}, {"name": "Jon Favreau", "character": "D-Bob", "id": 15277, "credit_id": "52fe45fc9251416c7506947b", "cast_id": 2, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 1}, {"name": "Ned Beatty", "character": "Daniel Ruettiger", "id": 13726, "credit_id": "52fe45fc9251416c7506947f", "cast_id": 3, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 2}, {"name": "Greta Lind", "character": "Mary", "id": 76986, "credit_id": "52fe45fc9251416c75069483", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Scott Benjaminson", "character": "Frank Ruettiger", "id": 76987, "credit_id": "52fe45fc9251416c75069487", "cast_id": 5, "profile_path": null, "order": 4}, {"name": "Mary Ann Thebus", "character": "Betty", "id": 76988, "credit_id": "52fe45fd9251416c7506948b", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Charles S. Dutton", "character": "Fortune", "id": 17764, "credit_id": "52fe45fd9251416c7506948f", "cast_id": 7, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 6}, {"name": "Lili Taylor", "character": "Sherry", "id": 3127, "credit_id": "52fe45fd9251416c75069493", "cast_id": 8, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 7}, {"name": "Christopher Reed", "character": "Pete", "id": 76989, "credit_id": "52fe45fd9251416c75069497", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Deborah Wittenberg", "character": "Young Sherry", "id": 76990, "credit_id": "52fe45fd9251416c7506949b", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Christopher Erwin", "character": "7-Year-Old Mark", "id": 76991, "credit_id": "52fe45fd9251416c7506949f", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Kevin Duda", "character": "9-Year-Old Bernie", "id": 76992, "credit_id": "52fe45fd9251416c750694a3", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Robert Benirschke", "character": "11-Year-Old Mark", "id": 76993, "credit_id": "52fe45fd9251416c750694a7", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Luke Massery", "character": "13-Year-Old Rudy", "id": 76994, "credit_id": "52fe45fd9251416c750694ab", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Robert J. Steinmiller Jr.", "character": "13-Year-Old Pete", "id": 76995, "credit_id": "52fe45fd9251416c750694af", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Lauren Katz", "character": "Elza", "id": 162607, "credit_id": "532b80bbc3a3684bb100025f", "cast_id": 18, "profile_path": null, "order": 15}], "directors": [{"name": "David Anspaugh", "department": "Directing", "job": "Director", "credit_id": "52fe45fd9251416c750694b5", "profile_path": null, "id": 44847}], "vote_average": 7.0, "runtime": 114}, "71880": {"poster_path": "/yI6tiyhRbeK6CbIHPrNYfEjJCeg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jack Sadelstein, a successful advertising executive in Los Angeles with a beautiful wife and kids, dreads one event each year: the Thanksgiving visit of his twin sister Jill. Jill's neediness and passive-aggressiveness is maddening to Jack, turning his normally tranquil life upside down.", "video": false, "id": 71880, "genres": [{"id": 35, "name": "Comedy"}], "title": "Jack and Jill", "tagline": "His twin sister is coming for the holidays... ...and it ain't pretty.", "vote_count": 178, "homepage": "http://www.jackandjill-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0810913", "adult": false, "backdrop_path": "/2eDCJy4x4r403hUhu7lcffwsLRv.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}], "release_date": "2011-11-11", "popularity": 0.507792664992434, "original_title": "Jack and Jill", "budget": 79000000, "cast": [{"name": "Adam Sandler", "character": "Jack / Jill", "id": 19292, "credit_id": "52fe484dc3a368484e0f2067", "cast_id": 2, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Al Pacino", "character": "Himself", "id": 1158, "credit_id": "52fe484dc3a368484e0f206b", "cast_id": 3, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 1}, {"name": "Katie Holmes", "character": "Erin", "id": 3897, "credit_id": "52fe484dc3a368484e0f206f", "cast_id": 4, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 2}, {"name": "Dana Carvey", "character": "", "id": 56159, "credit_id": "52fe484dc3a368484e0f2073", "cast_id": 5, "profile_path": "/exD2vy5X0KevVZsLBLsuvjJxEiP.jpg", "order": 3}, {"name": "Santiago Segura", "character": "", "id": 10847, "credit_id": "52fe484dc3a368484e0f2077", "cast_id": 6, "profile_path": "/lNWgadL9NksUCdSaiJRDBRsT8oB.jpg", "order": 4}, {"name": "Elodie Tougne", "character": "Sofia Sadelstein", "id": 935700, "credit_id": "52fe484dc3a368484e0f207b", "cast_id": 7, "profile_path": "/44f61cF2J9x6coQy4eqFgdwhVx8.jpg", "order": 5}, {"name": "Rohan Chand", "character": "Gary Sadelstein", "id": 935701, "credit_id": "52fe484dc3a368484e0f207f", "cast_id": 8, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 6}, {"name": "Eugenio Derbez", "character": "Felipe", "id": 239574, "credit_id": "52fe484dc3a368484e0f2083", "cast_id": 9, "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "order": 7}, {"name": "David Spade", "character": "Monica", "id": 60950, "credit_id": "52fe484dc3a368484e0f2087", "cast_id": 10, "profile_path": "/tamKFAKdB1Q2mllHYHXxqg3YUXr.jpg", "order": 8}, {"name": "Nick Swardson", "character": "Todd", "id": 32907, "credit_id": "52fe484dc3a368484e0f208b", "cast_id": 11, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 9}, {"name": "Tim Meadows", "character": "", "id": 51857, "credit_id": "52fe484dc3a368484e0f208f", "cast_id": 12, "profile_path": "/4V8Jde8DuFBnXOFPGjTVxs7lqlt.jpg", "order": 10}, {"name": "Allen Covert", "character": "Joel Farley", "id": 20818, "credit_id": "52fe484dc3a368484e0f2093", "cast_id": 13, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 11}, {"name": "Norm Macdonald", "character": "", "id": 77075, "credit_id": "52fe484dc3a368484e0f20a3", "cast_id": 18, "profile_path": "/5jAVTWdeGGtSCZ37jT4uOyP2O0T.jpg", "order": 12}, {"name": "Rachel Reynolds", "character": "The Price Is Right Showcase Girl", "id": 1106959, "credit_id": "52fe484dc3a368484e0f20a7", "cast_id": 19, "profile_path": "/1Y1g0QhU4jY2cFp6mXtJpmvXYOC.jpg", "order": 13}, {"name": "Ruben Rabasa", "character": "Bathroom Attendant", "id": 1434041, "credit_id": "54f3b1c69251410bfe00025b", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Dennis Dugan", "department": "Directing", "job": "Director", "credit_id": "52fe484dc3a368484e0f2063", "profile_path": "/jyi8S58fqNkOiZzkeMc0Lza1osC.jpg", "id": 17494}], "vote_average": 4.4, "runtime": 91}, "88273": {"poster_path": "/eGUHutZExVyG59jdQILbT1TZWfE.jpg", "production_countries": [{"iso_3166_1": "DK", "name": "Denmark"}], "revenue": 534, "overview": "\u201cA young queen, who is married to an insane king, falls secretly in love with his physician - and together they start a revolution that changes a nation forever.\u201d A ROYAL AFFAIR is a gripping tale of brave idealists who risk everything in their pursuit of freedom for the people, but above all it is the story of a passionate and forbidden romance that changed an entire nation.", "video": false, "id": 88273, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "A Royal Affair", "tagline": "They changed the nation forever", "vote_count": 59, "homepage": "http://www.aroyalaffairthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "da", "name": "Dansk"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1276419", "adult": false, "backdrop_path": "/ieuuAFyYHDWZ4VtFw3Y5bJZHPev.jpg", "production_companies": [{"name": "Zentropa Entertainments", "id": 76}, {"name": "Film i V\u00e4st", "id": 6417}], "release_date": "2012-03-29", "popularity": 0.321218515498142, "original_title": "En kongelig aff\u00e6re", "budget": 8000000, "cast": [{"name": "Mads Mikkelsen", "character": "Johann Friedrich Struensee", "id": 1019, "credit_id": "52fe49ee9251416c910bd99d", "cast_id": 4, "profile_path": "/hJTB5odoUVrVmLJdkuAMNBRvyvw.jpg", "order": 0}, {"name": "David Dencik", "character": "Ove H\u00f8egh-Guldberg", "id": 93236, "credit_id": "52fe49ee9251416c910bd9a1", "cast_id": 5, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 1}, {"name": "Alicia Vikander", "character": "Caroline Mathilde", "id": 227454, "credit_id": "52fe49ee9251416c910bd9a5", "cast_id": 6, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 2}, {"name": "Mikkel Boe F\u00f8lsgaard", "character": "Christian VII", "id": 1013156, "credit_id": "52fe49ee9251416c910bd9a9", "cast_id": 7, "profile_path": "/7mf9wuKTuThpGHFpJxKtWSnx7jG.jpg", "order": 3}, {"name": "Trine Dyrholm", "character": "Juliane Marie", "id": 4460, "credit_id": "52fe49ee9251416c910bd9ad", "cast_id": 8, "profile_path": "/ue2dx6F4g7uOR5nZJh8YEFlccJd.jpg", "order": 4}, {"name": "Thomas W. Gabrielsson", "character": "Schack Carl Rantzau", "id": 234741, "credit_id": "52fe49ee9251416c910bd9b1", "cast_id": 9, "profile_path": "/ipaBpGGUgBBCbfwxZUI8L9MX0X3.jpg", "order": 5}, {"name": "William J\u00f8hnk Nielsen", "character": "Frederik VI", "id": 230033, "credit_id": "52fe49ee9251416c910bd9b5", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Cyron Bj\u00f8rn Melville", "character": "Enevold Brandt", "id": 112733, "credit_id": "52fe49ee9251416c910bd9b9", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Laura Bro", "character": "Louise von Plessen", "id": 34867, "credit_id": "52fe49ee9251416c910bd9bd", "cast_id": 12, "profile_path": "/3FqEEa0NKYfXOjv2dKoqrCUD9fI.jpg", "order": 8}], "directors": [{"name": "Nikolaj Arcel", "department": "Directing", "job": "Director", "credit_id": "52fe49ee9251416c910bd98d", "profile_path": null, "id": 74752}], "vote_average": 6.9, "runtime": 137}, "47327": {"poster_path": "/afYwV0EAO8YLRyrTnNaSRysDrCh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 28931401, "overview": "Milton is a hardened felon who has broken out of Hell, intent on finding the vicious cult who brutally murdered his daughter and kidnapped her baby. He joins forces with Piper, a sexy, tough-as-nails waitress with a 69 Charger, who's also seeking redemption of her own. Caught in a deadly race against time, Milton has three days to avoid capture, avenge his daughter's death, and save her baby before she's mercilessly sacrificed by the cult.", "video": false, "id": 47327, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Drive Angry", "tagline": "One hell of a ride.", "vote_count": 199, "homepage": "http://www.driveangry3d.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1502404", "adult": false, "backdrop_path": "/fjJyicmZ7wfsZrRuv1Ve2Vv0Zlf.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Summit Entertainment", "id": 491}, {"name": "Saturn Films", "id": 831}, {"name": "Nu Image Films", "id": 925}, {"name": "Michael De Luca Productions", "id": 11370}], "release_date": "2011-02-24", "popularity": 1.22013461701214, "original_title": "Drive Angry", "budget": 50000000, "cast": [{"name": "Nicolas Cage", "character": "Milton", "id": 2963, "credit_id": "52fe472dc3a36847f812754b", "cast_id": 4, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Amber Heard", "character": "Piper", "id": 55085, "credit_id": "52fe472dc3a36847f812754f", "cast_id": 5, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "William Fichtner", "character": "Accountant", "id": 886, "credit_id": "52fe472dc3a36847f8127557", "cast_id": 7, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 2}, {"name": "Billy Burke", "character": "Jonah King", "id": 21029, "credit_id": "52fe472dc3a36847f812755b", "cast_id": 8, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 3}, {"name": "David Morse", "character": "Webster", "id": 52, "credit_id": "52fe472dc3a36847f8127599", "cast_id": 19, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 4}, {"name": "Katy Mixon", "character": "Norma Jean", "id": 59450, "credit_id": "52fe472dc3a36847f8127553", "cast_id": 6, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 5}, {"name": "Charlotte Ross", "character": "Candy", "id": 82622, "credit_id": "52fe472dc3a36847f81275a1", "cast_id": 21, "profile_path": "/ebmggJ92pgxMesN2DcTKLAwJSWj.jpg", "order": 6}, {"name": "Christa Campbell", "character": "Mona", "id": 85178, "credit_id": "52fe472dc3a36847f812755f", "cast_id": 9, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 7}, {"name": "Todd Farmer", "character": "Frank", "id": 61117, "credit_id": "52fe472dc3a36847f812759d", "cast_id": 20, "profile_path": "/xMd0pkgpgjfLwKX01mXpW68eYAu.jpg", "order": 8}, {"name": "Jack McGee", "character": "Fat Lou", "id": 10489, "credit_id": "52fe472dc3a36847f81275a5", "cast_id": 22, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 9}, {"name": "Tom Atkins", "character": "Cap", "id": 11784, "credit_id": "52fe472dc3a36847f81275a9", "cast_id": 23, "profile_path": "/gZZx9ByxKyt2idABNwr2XTN9jzU.jpg", "order": 10}, {"name": "Wanetah Walmsley", "character": "American Indian Mother", "id": 550117, "credit_id": "52fe472dc3a36847f81275ad", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Edrick Browne", "character": "Rookie", "id": 112286, "credit_id": "52fe472dc3a36847f81275b1", "cast_id": 25, "profile_path": "/cj7f8xZb3JgjDgR4XdW1CD33fHd.jpg", "order": 12}, {"name": "Robin McGee", "character": "Guy with Camera Phone", "id": 138611, "credit_id": "547a297fc3a368737f0004ea", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Fabian C. Moreno", "character": "Latino Busboy", "id": 1391321, "credit_id": "547a298e9251412986002b31", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Marc Macaulay", "character": "Sarge", "id": 6908, "credit_id": "547a299f9251417bd7000beb", "cast_id": 35, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 15}, {"name": "Pruitt Taylor Vince", "character": "Roy", "id": 3201, "credit_id": "547a29ae925141298a002d22", "cast_id": 36, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 16}, {"name": "Julius Washington", "character": "Uniformed Officer", "id": 204833, "credit_id": "547a29c09251414c6500011d", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Jamie Teer", "character": "Babysitter", "id": 1391322, "credit_id": "547a29d3c3a3685c42002ba1", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Bryan Massey", "character": "Trooper #1", "id": 1253910, "credit_id": "547a29e09251414c65000121", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Timothy Walter", "character": "Trooper #2", "id": 1391323, "credit_id": "547a29ee9251412986002b3f", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Kent Jude Bernard", "character": "Teen #1", "id": 138613, "credit_id": "547a29f89251417bd7000bf5", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Brent Phillip Henry", "character": "Teen #2", "id": 1391324, "credit_id": "547a2a03c3a36803df00095b", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Gerry May", "character": "TV Male News Reporter #1", "id": 1363398, "credit_id": "547a2a0e9251414c65000125", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Sherri Talley", "character": "TV Female News Reporter #2", "id": 1391325, "credit_id": "547a2a18c3a36803df000960", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Arianne Margot", "character": "Milton's Daughter (Older)", "id": 1391326, "credit_id": "547a2a25c3a36803df000965", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Con Schell", "character": "Fucking Driver", "id": 90041, "credit_id": "547a2a31925141298a002d31", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Nick Gomez", "character": "Fucking Middle", "id": 84760, "credit_id": "547a2a3e925141298a002d34", "cast_id": 47, "profile_path": "/aBMQnvk2zayzgfWrp0rS0Ji1xIs.jpg", "order": 27}, {"name": "Joe Chrest", "character": "Fucking Passenger", "id": 141762, "credit_id": "547a2a4c925141298d002dc3", "cast_id": 48, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 28}, {"name": "Oakley Lehman", "character": "Cultist with Iron Pipe", "id": 1391327, "credit_id": "547a2a5692514127690004cf", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Thirl Haston", "character": "Cultist with Sickle", "id": 1132300, "credit_id": "547a2a6092514127690004d3", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Jake Brake", "character": "Cultist with Machete", "id": 1391328, "credit_id": "547a2a6bc3a36803df000972", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Tim J. Smith", "character": "Cultist with Hatchet", "id": 1271752, "credit_id": "547a2a74925141298a002d3c", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Jeffrey J. Dashnaw", "character": "Cowboy with Cattle Prod", "id": 23285, "credit_id": "547a2a7fc3a36803df000976", "cast_id": 53, "profile_path": null, "order": 33}, {"name": "Tim Trella", "character": "Cultist with Sledge", "id": 200402, "credit_id": "547a2a899251417bd7000c02", "cast_id": 54, "profile_path": null, "order": 34}, {"name": "James Landry H\u00e9bert", "character": "Man in Leather Jacket", "id": 1170659, "credit_id": "547a2a9a925141298d002dcb", "cast_id": 55, "profile_path": "/iFFAjpK2cvBTDpWXzyi7zaLSVUo.jpg", "order": 35}, {"name": "Kenneth Wayne Bradley", "character": "Man with Wig", "id": 557448, "credit_id": "547a2aa39251412986002b4e", "cast_id": 56, "profile_path": null, "order": 36}, {"name": "Kendrick Hudson", "character": "Burly Dude", "id": 1391329, "credit_id": "547a2aac9251412990002ce4", "cast_id": 57, "profile_path": null, "order": 37}, {"name": "Michael Papajohn", "character": "Tattooed Guy", "id": 20582, "credit_id": "547a2ab4c3a3685c48002f4e", "cast_id": 58, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 38}, {"name": "April Littlejohn", "character": "Business Woman", "id": 1391330, "credit_id": "547a2abd92514127690004db", "cast_id": 59, "profile_path": null, "order": 39}, {"name": "Henry Kingi", "character": "Thin Old Man", "id": 24969, "credit_id": "547a2ac7c3a36835be0003ba", "cast_id": 60, "profile_path": "/7NfbNpe2PQZI5BcdvBxAfVfmroi.jpg", "order": 40}, {"name": "Simona Williams", "character": "Lady in Leopard Skin", "id": 1167492, "credit_id": "547a2ad1c3a36835be0003bc", "cast_id": 61, "profile_path": "/74lse4DdBGC4COF7tWNYTjiI1KP.jpg", "order": 41}, {"name": "Shelby Swatek", "character": "Truck Driving Woman", "id": 1391331, "credit_id": "547a2ad99251412986002b53", "cast_id": 62, "profile_path": null, "order": 42}, {"name": "Joseph Blackstone", "character": "Bar Patron", "id": 1391332, "credit_id": "547a2ae4c3a3685c48002f57", "cast_id": 63, "profile_path": null, "order": 43}, {"name": "Dan Forest", "character": "American Indian Dad", "id": 1391333, "credit_id": "547a2aedc3a36868f200001f", "cast_id": 64, "profile_path": null, "order": 44}, {"name": "Elise Fyke", "character": "Laughing Cowgirl", "id": 1391334, "credit_id": "547a2af7c3a3685c48002f5c", "cast_id": 65, "profile_path": null, "order": 45}, {"name": "Jonathan O'Rear", "character": "Resturant Patron", "id": 1391335, "credit_id": "547a2b00c3a36868f2000028", "cast_id": 66, "profile_path": null, "order": 46}, {"name": "James Paul", "character": "Bar Patron", "id": 1391337, "credit_id": "547a2b1892514127690004e8", "cast_id": 67, "profile_path": null, "order": 47}, {"name": "Alice Searcy", "character": "Restaurant Patron", "id": 1391338, "credit_id": "547a2b23c3a3685c42002bba", "cast_id": 68, "profile_path": null, "order": 48}, {"name": "Lanie Taylor", "character": "Milton's Daughter - Younger", "id": 1133579, "credit_id": "547a2b2e9251412990002cf4", "cast_id": 69, "profile_path": "/xVZ9gGBGbWZcwMGYIVh4ZC7Ctux.jpg", "order": 49}, {"name": "David Lee Valle", "character": "Highway Patrol", "id": 1391339, "credit_id": "547a2b3ac3a368737f00050e", "cast_id": 70, "profile_path": null, "order": 50}], "directors": [{"name": "Patrick Lussier", "department": "Directing", "job": "Director", "credit_id": "52fe472dc3a36847f812753b", "profile_path": "/xBZm3o2FtAH0RjEdmAau8OqkoZg.jpg", "id": 27226}], "vote_average": 5.5, "runtime": 105}, "14560": {"poster_path": "/iQpC6Yia7LpwjYlmHkeyEOeG9w2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122517153, "overview": "Mild-mannered Paul Blart (Kevin James) has always had huge dreams of becoming a State Trooper. Until then, he patrols the local mall as a security guard. With his closely cropped moustache, personal transporter and gung-ho attitude, only Blart seems to take his job seriously. All that changes when a team of thugs raids the mall and takes hostages. Untrained, unarmed and a super-size target, Blart has to become a real cop to save the day.", "video": false, "id": 14560, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Paul Blart: Mall Cop", "tagline": "Safety Never Takes A Holiday.", "vote_count": 210, "homepage": "http://paulblartmallcop.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 328372, "name": "Mall Cop Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1114740", "adult": false, "backdrop_path": "/v0emjNwZGlhKhELLmkvaAjCqje9.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Happy Madison Productions", "id": 2608}, {"name": "Relativity Media", "id": 7295}], "release_date": "2009-01-15", "popularity": 1.16336160257203, "original_title": "Paul Blart: Mall Cop", "budget": 26000000, "cast": [{"name": "Kevin James", "character": "Paul Blart", "id": 32895, "credit_id": "52fe46019251416c75069d3f", "cast_id": 1, "profile_path": "/aLkMKiCdolQPJNb1KGQ4Me4M9Ju.jpg", "order": 0}, {"name": "Keir O'Donnell", "character": "Veck Sims", "id": 39213, "credit_id": "52fe46019251416c75069d55", "cast_id": 5, "profile_path": "/uGNKMREdVeNALjCFKjaPSgNIfNV.jpg", "order": 1}, {"name": "Jayma Mays", "character": "Amy", "id": 34195, "credit_id": "52fe46019251416c75069d59", "cast_id": 6, "profile_path": "/pkpgHy6Ea8sBYrTADOM6t0F57Ns.jpg", "order": 2}, {"name": "Raini Rodriguez", "character": "Maya Blart", "id": 78436, "credit_id": "52fe46019251416c75069d5d", "cast_id": 7, "profile_path": "/6FSx2N2xbQ7Iq7us5uMiG3UfZ9e.jpg", "order": 3}, {"name": "Shirley Knight", "character": "Mom", "id": 28778, "credit_id": "52fe46019251416c75069d61", "cast_id": 8, "profile_path": "/k5ZyaQYd8Vg5QWOSnyBlVV0Uuo4.jpg", "order": 4}, {"name": "Stephen Rannazzisi", "character": "Stuart", "id": 78437, "credit_id": "52fe46019251416c75069d65", "cast_id": 9, "profile_path": "/dEzQ5W9ghBXxsJ41Ke6xIyoQESc.jpg", "order": 5}, {"name": "Peter Gerety", "character": "Chief Brooks", "id": 1986, "credit_id": "52fe46019251416c75069d69", "cast_id": 10, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 6}, {"name": "Bobby Cannavale", "character": "Cmdr. James Kent", "id": 21127, "credit_id": "52fe46019251416c75069d6d", "cast_id": 11, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 7}, {"name": "Adam Ferrara", "character": "Sergeant Howard", "id": 113245, "credit_id": "52fe46019251416c75069d71", "cast_id": 12, "profile_path": "/rRDSZwVG2AvzTiRPhhOlYiYGuAI.jpg", "order": 8}, {"name": "Jamal Mixon", "character": "Leon", "id": 59019, "credit_id": "52fe46019251416c75069d75", "cast_id": 13, "profile_path": "/uTbShfB1S25jC2wM5Y8EEZvCg0W.jpg", "order": 9}, {"name": "Adhir Kalyan", "character": "Pahud", "id": 440306, "credit_id": "52fe46019251416c75069d79", "cast_id": 14, "profile_path": "/aMrG4CWhYGjKPgEgmzKTG3w5JqA.jpg", "order": 10}, {"name": "Erick Avari", "character": "Vijay", "id": 18917, "credit_id": "52fe46019251416c75069d7d", "cast_id": 15, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 11}, {"name": "Gary Valentine", "character": "Karaoke Singer", "id": 179508, "credit_id": "52fe46019251416c75069d81", "cast_id": 16, "profile_path": "/fx5UveYyZE4G1N8pqLTIGONaJi0.jpg", "order": 12}, {"name": "Allen Covert", "character": "Jerky Security Guy", "id": 20818, "credit_id": "52fe46019251416c75069d85", "cast_id": 17, "profile_path": "/wpcbF6UZXJ5u4tuL4A72hAoqiNL.jpg", "order": 13}, {"name": "Mike Vallely", "character": "Rudolph", "id": 558036, "credit_id": "52fe46019251416c75069d89", "cast_id": 18, "profile_path": "/hrty7GRM2pdwrNiMDJaBHk8XRU8.jpg", "order": 14}, {"name": "Mike Escamilla", "character": "Blitzen", "id": 1021579, "credit_id": "52fe46019251416c75069d8d", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Jason Ellis", "character": "Prancer", "id": 117267, "credit_id": "52fe46019251416c75069d91", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Jason Packham", "character": "Comet", "id": 953838, "credit_id": "52fe46019251416c75069d95", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Rick Thorne", "character": "Cupid", "id": 558038, "credit_id": "52fe46019251416c75069d99", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Victor T. Lopez", "character": "Donner", "id": 1077984, "credit_id": "52fe46019251416c75069d9d", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Natascha Hopkins", "character": "Vixen", "id": 200441, "credit_id": "52fe46019251416c75069da1", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Jackie Sandler", "character": "Victoria's Secret Sales Associate", "id": 60959, "credit_id": "52fe46019251416c75069da5", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Mookie Barker", "character": "Mr. Ferguson", "id": 204120, "credit_id": "52fe46019251416c75069da9", "cast_id": 26, "profile_path": null, "order": 22}, {"name": "Jackie Flynn", "character": "Officer", "id": 74934, "credit_id": "52fe46019251416c75069dad", "cast_id": 27, "profile_path": "/qDRdefQexpycxyvyYdl7XJw34kF.jpg", "order": 23}, {"name": "Richie Minervini", "character": "Bank Manager", "id": 207005, "credit_id": "52fe46019251416c75069db1", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Brie Hill Arbaugh", "character": "Bank Teller", "id": 981323, "credit_id": "52fe46019251416c75069db5", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Steffiana De La Cruz", "character": "Shopper with Kids", "id": 1431853, "credit_id": "54ee5bea925141795f004bed", "cast_id": 30, "profile_path": "/s6plNtUhJj9vDyd2aWMfBSENnPj.jpg", "order": 26}], "directors": [{"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe46019251416c75069d45", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}], "vote_average": 5.3, "runtime": 91}, "1576": {"poster_path": "/fttmSgLEOdBNwQepW2lC6t0mbOm.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102441078, "overview": "When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak. Alice and Rain are charged with leading the mission. But they only have three hours before the pathogen becomes airborne and infects the world.", "video": false, "id": 1576, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil", "tagline": "A secret experiment. A deadly virus. A fatal mistake.", "vote_count": 665, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120804", "adult": false, "backdrop_path": "/s41Er80jGJf3tNkgYHxUCttjmwv.jpg", "production_companies": [{"name": "New Legacy", "id": 939}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Davis-Films", "id": 342}, {"name": "Impact Pictures", "id": 248}], "release_date": "2002-03-15", "popularity": 1.09529293870657, "original_title": "Resident Evil", "budget": 33000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe42ffc3a36847f8032c0f", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Michelle Rodriguez", "character": "Rain", "id": 17647, "credit_id": "52fe42ffc3a36847f8032c13", "cast_id": 2, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 1}, {"name": "Eric Mabius", "character": "Matt", "id": 11867, "credit_id": "52fe42ffc3a36847f8032c17", "cast_id": 3, "profile_path": "/mfYqgYHkvJRgPus0kN2V1GhsFOU.jpg", "order": 2}, {"name": "Ryan McCluskey", "character": "Mr. Grey", "id": 146784, "credit_id": "52fe42ffc3a36847f8032c59", "cast_id": 16, "profile_path": "/wZlyqnBXgYqYHlGmQiljcLAo1mU.jpg", "order": 3}, {"name": "Oscar Pearce", "character": "Mr. Red", "id": 1104994, "credit_id": "52fe42ffc3a36847f8032c5d", "cast_id": 17, "profile_path": "/hrBYefEH3Bbl1CI5MLNeTTQgSI4.jpg", "order": 4}, {"name": "Indra Ov\u00e9", "character": "Ms. Black", "id": 232174, "credit_id": "52fe42ffc3a36847f8032c51", "cast_id": 14, "profile_path": "/2NkIw6p5iGfBqM4P0u8FEq02wX7.jpg", "order": 5}, {"name": "Anna Bolt", "character": "Dr. Green", "id": 195535, "credit_id": "52fe42ffc3a36847f8032c61", "cast_id": 18, "profile_path": "/7pE1zAqODmqFGPbnE6A0tKlFTFF.jpg", "order": 6}, {"name": "Joseph May", "character": "Dr. Blue", "id": 72100, "credit_id": "52fe42ffc3a36847f8032c65", "cast_id": 19, "profile_path": "/qd3OQaoXMtGf1Ev9xXgAyYEHrG9.jpg", "order": 7}, {"name": "Robert Tannion", "character": "Dr. Brown", "id": 947006, "credit_id": "52fe42ffc3a36847f8032c7d", "cast_id": 25, "profile_path": "/fId63b7nGYl1H81298ncSJ9n3EF.jpg", "order": 8}, {"name": "Heike Makatsch", "character": "Lisa", "id": 7059, "credit_id": "52fe42ffc3a36847f8032c2b", "cast_id": 7, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 9}, {"name": "Jaymes Butler", "character": "Clarence", "id": 74225, "credit_id": "52fe42ffc3a36847f8032c69", "cast_id": 20, "profile_path": "/eKIytH97XBE8Oe87qGsmKTifHVF.jpg", "order": 10}, {"name": "Stephen Billington", "character": "Mr. White", "id": 2477, "credit_id": "52fe42ffc3a36847f8032c6d", "cast_id": 21, "profile_path": "/fWuIZcI6syFBM9UuNOj2OY4b3Yi.jpg", "order": 11}, {"name": "Fiona Glascott", "character": "Ms. Gold", "id": 43135, "credit_id": "52fe42ffc3a36847f8032c71", "cast_id": 22, "profile_path": "/hiN07YjI7jfbKmlqahFlm3k221X.jpg", "order": 12}, {"name": "Colin Salmon", "character": "One", "id": 5414, "credit_id": "52fe42ffc3a36847f8032c4d", "cast_id": 13, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 13}, {"name": "Martin Crewes", "character": "Kaplan", "id": 557323, "credit_id": "52fe42ffc3a36847f8032c55", "cast_id": 15, "profile_path": "/2ZcBr9htL48ywr78Lg8zqp8eONa.jpg", "order": 14}, {"name": "Pasquale Aleardi", "character": "Rain", "id": 47779, "credit_id": "52fe42ffc3a36847f8032c75", "cast_id": 23, "profile_path": "/cwcEHtDV3lMRwzSdI074Ki2tEQt.jpg", "order": 15}, {"name": "Liz May Brice", "character": "Medic", "id": 68224, "credit_id": "52fe42ffc3a36847f8032c79", "cast_id": 24, "profile_path": "/5cAhs4oR33lHJcjEIfDCnnOynX7.jpg", "order": 16}, {"name": "Torsten Jerabek", "character": "Commando 1", "id": 951657, "credit_id": "52fe42ffc3a36847f8032c81", "cast_id": 26, "profile_path": "/ek0o1o0uCLDrgFX6pgDlnxVVJrj.jpg", "order": 17}, {"name": "Marc Logan-Black", "character": "Commando 2", "id": 952506, "credit_id": "52fe42ffc3a36847f8032c85", "cast_id": 27, "profile_path": "/wJupeL6qEdCcoELJ0KLNbGGTR4k.jpg", "order": 18}, {"name": "James Purefoy", "character": "Spence", "id": 17648, "credit_id": "52fe42ffc3a36847f8032c1b", "cast_id": 4, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 19}, {"name": "Michaela Dicker", "character": "Red Queen", "id": 949700, "credit_id": "52fe42ffc3a36847f8032c89", "cast_id": 28, "profile_path": "/i8n0UCvAzj0RP1YHEItJksNYZdG.jpg", "order": 20}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032c21", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 6.3, "runtime": 100}, "9255": {"poster_path": "/x6yVFU815O2c5YpcIgWeK789IZ9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 133752825, "overview": "Topper Harley is found to be working as an odd-job-man in a monastery. The CIA want him to lead a rescue mission into Iraq, to rescue the last rescue team, who went in to rescue the last rescue team who... who went in to rescue hostages left behind after Desert Storm.", "video": false, "id": 9255, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10752, "name": "War"}], "title": "Hot Shots! Part Deux", "tagline": "Just deux it.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iGrRouADMV9MbidImsgRORaV3q.jpg", "poster_path": "/5uzldxeEVqvdaZhE4uCT9TTz9p1.jpg", "id": 52988, "name": "Hot Shots! Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107144", "adult": false, "backdrop_path": "/4nYzn99ZPfAEQY4ypopoXa7RdPU.jpg", "production_companies": [{"name": "Sidley Wright & Associates", "id": 11751}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1993-05-21", "popularity": 0.663478057832236, "original_title": "Hot Shots! Part Deux", "budget": 25000000, "cast": [{"name": "Charlie Sheen", "character": "Topper Harley", "id": 6952, "credit_id": "52fe44ddc3a36847f80ae8f5", "cast_id": 11, "profile_path": "/3sl1p2ZAfdotM2LEmu4JiNAZbc6.jpg", "order": 0}, {"name": "Lloyd Bridges", "character": "President Thomas 'Tug' Benson", "id": 2177, "credit_id": "52fe44ddc3a36847f80ae8f9", "cast_id": 12, "profile_path": "/qez0xZiQGt3f530vAGcoYAWd7FM.jpg", "order": 1}, {"name": "Valeria Golino", "character": "Ramada Rodham Hayman", "id": 3124, "credit_id": "52fe44ddc3a36847f80ae8fd", "cast_id": 13, "profile_path": "/kK13NzfxGQBJ8Th9SiPbu0FFJq7.jpg", "order": 2}, {"name": "Richard Crenna", "character": "Col. Denton Walters", "id": 16554, "credit_id": "52fe44ddc3a36847f80ae901", "cast_id": 14, "profile_path": "/fUCwfoN3JurrzltOyJT9rDNZRbV.jpg", "order": 3}, {"name": "Rowan Atkinson", "character": "Dexter Hayman", "id": 10730, "credit_id": "52fe44ddc3a36847f80ae905", "cast_id": 15, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 4}, {"name": "Miguel Ferrer", "character": "Commander Arvid Harbinger", "id": 15860, "credit_id": "52fe44ddc3a36847f80ae909", "cast_id": 16, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 5}, {"name": "Brenda Bakke", "character": "Michelle Rodham Huddleston", "id": 32290, "credit_id": "52fe44ddc3a36847f80ae90d", "cast_id": 17, "profile_path": "/nhTQaWKjWnTpYvTN1Le8piHTN0w.jpg", "order": 6}, {"name": "Jerry Haleva", "character": "Saddam Hussein", "id": 1000228, "credit_id": "52fe44ddc3a36847f80ae929", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "David Wohl", "character": "Gerou", "id": 92811, "credit_id": "52fe44ddc3a36847f80ae92d", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Mitchell Ryan", "character": "Gray Edwards", "id": 14312, "credit_id": "52fe44ddc3a36847f80ae931", "cast_id": 24, "profile_path": "/8GV2XiQCXOQ69it7OHGCjWGUkqO.jpg", "order": 9}, {"name": "Michael Colyar", "character": "Williams", "id": 54430, "credit_id": "52fe44ddc3a36847f80ae935", "cast_id": 25, "profile_path": "/mPFHpTOxGyGuyTdxre202ZqSoLu.jpg", "order": 10}, {"name": "Ryan Stiles", "character": "Rabinowitz", "id": 162606, "credit_id": "52fe44ddc3a36847f80ae939", "cast_id": 26, "profile_path": "/eSrcWZW7wKdb1bXvYywo3vAGfiJ.jpg", "order": 11}, {"name": "Rosemary Johnston", "character": "Lavinia Rodham Benson", "id": 1123116, "credit_id": "52fe44ddc3a36847f80ae93d", "cast_id": 27, "profile_path": null, "order": 12}], "directors": [{"name": "Jim Abrahams", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a36847f80ae8bb", "profile_path": "/lXpyiQ7tSxrxBeop8LLIltOorUN.jpg", "id": 12936}], "vote_average": 6.1, "runtime": 86}, "14574": {"poster_path": "/f40R9to84FGF7T5bp3KGB84Lklb.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20416563, "overview": "Set during World War II, a story seen through the innocent eyes of Bruno, the eight-year-old son of the commandant at a concentration camp, whose forbidden friendship with a Jewish boy on the other side of the camp fence has startling and unexpected consequences.", "video": false, "id": 14574, "genres": [{"id": 18, "name": "Drama"}], "title": "The Boy in the Striped Pajamas", "tagline": "Lines may divide us, but hope will unite us.", "vote_count": 320, "homepage": "http://www.boyinthestripedpajamas.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0914798", "adult": false, "backdrop_path": "/prhrYZvQN1eXxBeZdLlNSyLfPQb.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "BBC Films", "id": 288}, {"name": "Heyday Films", "id": 7364}], "release_date": "2008-09-12", "popularity": 0.843884803926884, "original_title": "The Boy in the Striped Pyjamas", "budget": 12500000, "cast": [{"name": "David Thewlis", "character": "Father", "id": 11207, "credit_id": "52fe46029251416c7506a019", "cast_id": 2, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 0}, {"name": "Asa Butterfield", "character": "Bruno", "id": 77996, "credit_id": "52fe46029251416c7506a029", "cast_id": 5, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 1}, {"name": "Zac Mattoon O'Brien", "character": "Leon", "id": 77997, "credit_id": "52fe46029251416c7506a02d", "cast_id": 6, "profile_path": null, "order": 2}, {"name": "Domonkos N\u00e9meth", "character": "Martin", "id": 77998, "credit_id": "52fe46029251416c7506a031", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Henry Kingsmill", "character": "Karl", "id": 77999, "credit_id": "52fe46029251416c7506a035", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Vera Farmiga", "character": "Mother", "id": 21657, "credit_id": "52fe46029251416c7506a039", "cast_id": 9, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 5}, {"name": "Jack Scanlon", "character": "Shmuel", "id": 224188, "credit_id": "52fe46029251416c7506a03d", "cast_id": 10, "profile_path": "/lZXxoJ2dyv3tD0ookIKNx5hkxsF.jpg", "order": 6}, {"name": "Cara Horgan", "character": "Maria", "id": 961840, "credit_id": "52fe46029251416c7506a071", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Amber Beattie", "character": "Gretel", "id": 234072, "credit_id": "52fe46029251416c7506a075", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Zsuzsa Holl", "character": "Berlin Cook", "id": 1117339, "credit_id": "52fe46029251416c7506a079", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "L\u00e1szl\u00f3 \u00c1ron", "character": "Lars", "id": 76475, "credit_id": "52fe46029251416c7506a07d", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Richard Johnson", "character": "Grandpa", "id": 20510, "credit_id": "52fe46029251416c7506a081", "cast_id": 23, "profile_path": "/miDA5sN3ijfED6M4oRZ0NTdBfBR.jpg", "order": 11}, {"name": "Sheila Hancock", "character": "Grandma", "id": 93839, "credit_id": "52fe46029251416c7506a085", "cast_id": 24, "profile_path": "/jZv0I2HNE4BbFTatSXPotNvZWRS.jpg", "order": 12}, {"name": "Charlie Baker", "character": "Palm Court Singer", "id": 1252551, "credit_id": "530b483d9251411117004f03", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Iv\u00e1n Vereb\u00e9ly", "character": "Meinberg", "id": 1296078, "credit_id": "530b484c9251411111004f8c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "B\u00e9la Fesztbaum", "character": "Schultz", "id": 1037718, "credit_id": "530b48599251411105005175", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Rupert Friend", "character": "Lieutenant Kurt Kotler", "id": 36669, "credit_id": "548de059c3a368153b0026d6", "cast_id": 28, "profile_path": "/150MAsf9QGUbyROBkF2cEeazbfX.jpg", "order": 16}], "directors": [{"name": "Mark Herman", "department": "Directing", "job": "Director", "credit_id": "52fe46029251416c7506a015", "profile_path": null, "id": 55299}], "vote_average": 7.3, "runtime": 94}, "9257": {"poster_path": "/Aa9U6KrKZjQP5TF4rC3ZEVyuPXU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 116643346, "overview": "An imprisoned drug kingpin offers a huge cash reward to anyone that can break him out of police custody and only the LAPD's Special Weapons and Tactics team can prevent it.", "video": false, "id": 9257, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "S.W.A.T.", "tagline": "Even cops dial 911", "vote_count": 268, "homepage": "http://www.sonypictures.com/homevideo/swat/", "belongs_to_collection": {"backdrop_path": "/75To7hSFaAuciz4EXAFfj4LH6Od.jpg", "poster_path": "/7nMTOAbEEL3i65Y1gIVftWVEtOr.jpg", "id": 221111, "name": "S.W.A.T. Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0257076", "adult": false, "backdrop_path": "/hauh8JKUNwLUiWRymC2gNmFIVCW.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Original Film", "id": 333}, {"name": "Camelot Pictures", "id": 11728}, {"name": "Chris Lee Productions", "id": 20033}, {"name": "Illusion Entertainment", "id": 20034}], "release_date": "2003-08-08", "popularity": 0.428955762606783, "original_title": "S.W.A.T.", "budget": 80000000, "cast": [{"name": "Samuel L. Jackson", "character": "Sgt. Dan 'Hondo' Harrelson", "id": 2231, "credit_id": "52fe44ddc3a36847f80aea97", "cast_id": 25, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Jim Street", "id": 72466, "credit_id": "52fe44ddc3a36847f80aea9b", "cast_id": 26, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Michelle Rodriguez", "character": "Chris Sanchez", "id": 17647, "credit_id": "52fe44ddc3a36847f80aea23", "cast_id": 3, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 2}, {"name": "LL Cool J", "character": "Deacon 'Deke' Kay", "id": 36424, "credit_id": "52fe44ddc3a36847f80aea27", "cast_id": 4, "profile_path": "/bPZmMROI8KXbZl3ljNRmkU6Tnb3.jpg", "order": 3}, {"name": "Josh Charles", "character": "T.J. McCabe", "id": 2694, "credit_id": "52fe44ddc3a36847f80aea83", "cast_id": 20, "profile_path": "/gO5zHbDQ38bZKJULUk9wIrFW1w4.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Brian Gamble", "id": 17604, "credit_id": "52fe44ddc3a36847f80aea87", "cast_id": 21, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "Brian Van Holt", "character": "Michael Boxer", "id": 12792, "credit_id": "52fe44ddc3a36847f80aea8b", "cast_id": 22, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 6}, {"name": "Olivier Martinez", "character": "Alex Montel", "id": 15533, "credit_id": "52fe44ddc3a36847f80aea8f", "cast_id": 23, "profile_path": "/2jGpw7G64BlnONreDZMsVEBQgXQ.jpg", "order": 7}, {"name": "Reg E. Cathey", "character": "Lt. Greg Velasquez", "id": 38951, "credit_id": "52fe44ddc3a36847f80aea93", "cast_id": 24, "profile_path": "/5SKwwUhSCgzggT6iRcO951e13XM.jpg", "order": 8}, {"name": "Domenick Lombardozzi", "character": "GQ", "id": 17941, "credit_id": "52fe44ddc3a36847f80aea7f", "cast_id": 19, "profile_path": "/wDRD21PpTrP8MDAskbQ0NsftM57.jpg", "order": 9}, {"name": "Larry Poindexter", "character": "Capt. Thomas Fuller", "id": 25944, "credit_id": "52fe44ddc3a36847f80aea9f", "cast_id": 27, "profile_path": "/r1i1ra67xbNSscB2TDGyanBy1cb.jpg", "order": 10}, {"name": "Page Kennedy", "character": "Travis", "id": 177214, "credit_id": "52fe44ddc3a36847f80aeaa3", "cast_id": 28, "profile_path": "/x33dFKAzV0IJEZuHE5hrrLyPQmF.jpg", "order": 11}, {"name": "James DuMont", "character": "Gus", "id": 97446, "credit_id": "52fe44ddc3a36847f80aeaa7", "cast_id": 29, "profile_path": "/A448koSIESyi91EmOrCJwIC2wDA.jpg", "order": 12}, {"name": "Denis Arndt", "character": "Sgt. Howard", "id": 10480, "credit_id": "52fe44ddc3a36847f80aeaab", "cast_id": 30, "profile_path": "/yyEYxsqbXF69RgwbhckzxRvHehQ.jpg", "order": 13}, {"name": "Lindsey Ginter", "character": "Agent Hauser", "id": 156038, "credit_id": "54f2deac9251416b3100389e", "cast_id": 40, "profile_path": null, "order": 14}], "directors": [{"name": "Clark Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe44ddc3a36847f80aea2d", "profile_path": "/ud7Xtakgpkm0djkWGAbQDDTOUCT.jpg", "id": 47640}], "vote_average": 5.8, "runtime": 117}, "260346": {"poster_path": "/c2SSjUVYawDUnQ92bmTqsZsPEiB.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 325600000, "overview": "Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.", "video": false, "id": 260346, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Taken 3", "tagline": "It Ends Here", "vote_count": 509, "homepage": "http://www.taken3movie.com/", "belongs_to_collection": {"backdrop_path": "/hO1R1TI429PjkOjby4dTPBrWFwn.jpg", "poster_path": "/4PNFiSaJWvWhkdOw0KF9Vf7v3gC.jpg", "id": 135483, "name": "Taken Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2446042", "adult": false, "backdrop_path": "/razvUuLkF7CX4XsLyj02ksC0ayy.jpg", "production_companies": [{"name": "M6 Films", "id": 1115}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}], "release_date": "2015-01-09", "popularity": 14.966557607713, "original_title": "Taken 3", "budget": 48000000, "cast": [{"name": "Liam Neeson", "character": "Bryan Mills", "id": 3896, "credit_id": "532c5e6fc3a3686eec0000a0", "cast_id": 3, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Inspector Frank Dotzler", "id": 2178, "credit_id": "532c5e82c3a3686ee50000ab", "cast_id": 6, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Lenore Mills - St. John", "id": 10696, "credit_id": "532c5e75c3a3686ef80000af", "cast_id": 4, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Maggie Grace", "character": "Kim Mills", "id": 11825, "credit_id": "532c5e7bc3a3686ee50000a7", "cast_id": 5, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 3}, {"name": "Dougray Scott", "character": "Stuart St. John", "id": 15336, "credit_id": "54304082c3a36831a9000e13", "cast_id": 7, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 4}, {"name": "Sam Spruell", "character": "Oleg Malankov", "id": 55585, "credit_id": "543040a0c3a36831af000eaf", "cast_id": 10, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 5}, {"name": "Don Harvey", "character": "Garcia", "id": 1280, "credit_id": "543040e1c3a36831a6000f42", "cast_id": 16, "profile_path": "/8MOYT034RV1XULZ4RI5AHnStVJF.jpg", "order": 6}, {"name": "Dylan Bruno", "character": "Smith", "id": 52476, "credit_id": "543040bfc3a36831a9000e23", "cast_id": 13, "profile_path": "/pNOG54RGO9sCKzbpM33pUEr9F2Y.jpg", "order": 7}, {"name": "Leland Orser", "character": "Sam", "id": 2221, "credit_id": "54304095c3a36831a9000e18", "cast_id": 9, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 8}, {"name": "David Warshofsky", "character": "Bernie (Harris)", "id": 37204, "credit_id": "551eef8a9251417e1e000214", "cast_id": 31, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 9}, {"name": "Jon Gries", "character": "(Mark) Casey", "id": 9629, "credit_id": "5430408c0e0a264649000ef4", "cast_id": 8, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 10}, {"name": "Jonny Weston", "character": "Jimy", "id": 928575, "credit_id": "543040a7c3a36831b8000ec0", "cast_id": 11, "profile_path": "/qv8lrHTf22WO92kdWcIu8ZMee0J.jpg", "order": 11}, {"name": "Andrew Borba", "character": "Clarence", "id": 167720, "credit_id": "551eefdfc3a3685ab10001bf", "cast_id": 32, "profile_path": "/knHlGxYCOO3tqFTiSoYWusjzdm1.jpg", "order": 12}, {"name": "Judi Beecher", "character": "Claire", "id": 167755, "credit_id": "543040c9c3a36831a6000f3e", "cast_id": 14, "profile_path": "/wjjXkDA5Z2DTR2spHUfywnWMDqX.jpg", "order": 13}, {"name": "Andrew Howard", "character": "Maxim", "id": 67206, "credit_id": "543040b30e0a26464f000eb6", "cast_id": 12, "profile_path": "/qXEWZDXQRX7UsGlJzKO9dLoCLhq.jpg", "order": 14}, {"name": "Al Sapienza", "character": "Detective Johnson", "id": 154917, "credit_id": "543040d30e0a264649000efe", "cast_id": 15, "profile_path": "/acfzjSs4lbz5EdCWfZkB45Zxn8y.jpg", "order": 15}, {"name": "Alexander Wraith", "character": "Cop Utility Room", "id": 118753, "credit_id": "543040ed0e0a26464c000e30", "cast_id": 17, "profile_path": "/6SrcyLh1k7EAmB0ZzewzZdWhGcF.jpg", "order": 16}], "directors": [{"name": "Olivier Megaton", "department": "Directing", "job": "Director", "credit_id": "54aeddd0c3a368666a00212e", "profile_path": "/kihfuDNnnl41DyYz3uRiMG9pYgU.jpg", "id": 75035}], "vote_average": 6.3, "runtime": 109}, "190847": {"poster_path": "/4qeyW474FZWxUccDrR7pUJ8wfJ7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On the last day of the first manned mission to Mars, a crew member of Tantalus Base believes he has made an astounding discovery \u2013 fossilized evidence of bacterial life. Unwilling to let the relief crew claims all the glory, he disobeys orders to pack up and goes out on an unauthorized expedition to collect further samples. But a routine excavation turns to disaster when the porous ground collapses and he falls into a deep crevice and near certain death. His devastated colleagues attempt to recover his body. However, when another vanishes, they start to suspect that the life-form they have discovered is not without danger.", "video": false, "id": 190847, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Last Days on Mars", "tagline": "The search for life is about to end.", "vote_count": 91, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1709143", "adult": false, "backdrop_path": "/eerkyCF9nRXQK8tkwbuHAT0vDI7.jpg", "production_companies": [{"name": "British Film Institute (BFI)", "id": 7281}, {"name": "Irish Film Board", "id": 5267}, {"name": "Qwerty Films", "id": 892}, {"name": "Fantastic Films", "id": 18078}], "release_date": "2013-12-06", "popularity": 0.638696731253418, "original_title": "The Last Days on Mars", "budget": 0, "cast": [{"name": "Liev Schreiber", "character": "Vincent Campbell", "id": 23626, "credit_id": "52fe4c6e9251416c910f4b7b", "cast_id": 7, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 0}, {"name": "Romola Garai", "character": "Rebecca Lane", "id": 6979, "credit_id": "52fe4c6e9251416c910f4b83", "cast_id": 9, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 1}, {"name": "Elias Koteas", "character": "Charles Brunel", "id": 13550, "credit_id": "52fe4c6e9251416c910f4b7f", "cast_id": 8, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 2}, {"name": "Olivia Williams", "character": "Kim Aldrich", "id": 11616, "credit_id": "52fe4c6e9251416c910f4b87", "cast_id": 10, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 3}, {"name": "Johnny Harris", "character": "Robert Irwin", "id": 32300, "credit_id": "52fe4c6e9251416c910f4b8b", "cast_id": 11, "profile_path": "/1iKpLfSiJBFDrvt4RCJOGJrq2NM.jpg", "order": 4}, {"name": "Goran Kosti\u0107", "character": "Marko Petrovic", "id": 44736, "credit_id": "52fe4c6e9251416c910f4b8f", "cast_id": 12, "profile_path": "/3L0bBollvrXMH7BcuUKpcMue8Lo.jpg", "order": 5}, {"name": "Tom Cullen", "character": "Richard Harrington", "id": 586000, "credit_id": "52fe4c6e9251416c910f4b93", "cast_id": 13, "profile_path": "/zsjAPTZ3EcADUK8jfGOBCbjKxnp.jpg", "order": 6}, {"name": "Yusra Warsama", "character": "Lauren Dalby", "id": 1272903, "credit_id": "52fe4c6e9251416c910f4b97", "cast_id": 14, "profile_path": null, "order": 7}], "directors": [{"name": "Ruairi Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe4c6e9251416c910f4b59", "profile_path": "/lEvsZXpTu4MwV4LRF2kRQWbKetU.jpg", "id": 90508}], "vote_average": 5.2, "runtime": 98}, "1577": {"poster_path": "/2RxmbaRKRIJ9zMgZ7ijWMhFppx3.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "As the city is locked down under quarantine, Alice joins a small band of elite soldiers, enlisted to rescue the missing daughter of the creator of the mutating T-virus. It's a heart-pounding race against time as the group faces off against hordes of blood- thirsty zombies, stealthy Lickers, mutant canines and the most sinister foe yet.", "video": false, "id": 1577, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Apocalypse", "tagline": "You're all going to die.", "vote_count": 450, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0318627", "adult": false, "backdrop_path": "/HiQeRDggI5EYLawYNHRJvB026S.jpg", "production_companies": [{"name": "Constantin Film", "id": 47}, {"name": "Impact Pictures", "id": 248}], "release_date": "2004-09-10", "popularity": 1.20208988608836, "original_title": "Resident Evil: Apocalypse", "budget": 0, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe42ffc3a36847f8032d51", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Sienna Guillory", "character": "Jill Valentine", "id": 7055, "credit_id": "52fe42ffc3a36847f8032d61", "cast_id": 4, "profile_path": "/pWyLeJCldGteBbSu9FhC0ef5LZx.jpg", "order": 1}, {"name": "Oded Fehr", "character": "Carlos Olivera", "id": 18041, "credit_id": "52fe42ffc3a36847f8032d65", "cast_id": 5, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 2}, {"name": "Thomas Kretschmann", "character": "Major Cain", "id": 3491, "credit_id": "52fe42ffc3a36847f8032d69", "cast_id": 6, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 3}, {"name": "Sophie Vavasseur", "character": "Angie Ashford", "id": 96787, "credit_id": "52fe42ffc3a36847f8032da1", "cast_id": 16, "profile_path": "/zKuMsTRN79Rly8EoWN9i3zr2C4R.jpg", "order": 4}, {"name": "Razaaq Adoti", "character": "Sgt. Peyton Wells (as Raz Adoti)", "id": 12801, "credit_id": "52fe42ffc3a36847f8032da5", "cast_id": 17, "profile_path": "/8tyDtkUerIQfghpdX1G08EdSEie.jpg", "order": 5}, {"name": "Jared Harris", "character": "Dr. Ashford", "id": 15440, "credit_id": "52fe42ffc3a36847f8032da9", "cast_id": 18, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 6}, {"name": "Mike Epps", "character": "L.J.", "id": 51944, "credit_id": "52fe42ffc3a36847f8032dad", "cast_id": 19, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 7}, {"name": "Sandrine Holt", "character": "Terri Morales", "id": 65345, "credit_id": "52fe42ffc3a36847f8032d6d", "cast_id": 7, "profile_path": "/oWRKAr4vRmqX2LM4zy38q08HUcJ.jpg", "order": 8}, {"name": "Matthew G. Taylor", "character": "Nemesis", "id": 59198, "credit_id": "52fe42ffc3a36847f8032db1", "cast_id": 20, "profile_path": "/il8bIgN6sANpmMSohJGvpNbeN8A.jpg", "order": 9}, {"name": "Zack Ward", "character": "Nicholai Ginovaeff", "id": 12714, "credit_id": "52fe42ffc3a36847f8032db5", "cast_id": 21, "profile_path": "/fuWd404vjKvxBRZLX5y8iFFzHqT.jpg", "order": 10}, {"name": "Iain Glen", "character": "Dr. Isaacs", "id": 20508, "credit_id": "52fe42ffc3a36847f8032db9", "cast_id": 22, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 11}, {"name": "Dave Nichols", "character": "Captain Henderson", "id": 185183, "credit_id": "52fe42ffc3a36847f8032dbd", "cast_id": 23, "profile_path": "/9wpYxMZxrILqFywDqhle0987Xd6.jpg", "order": 12}, {"name": "Stefan Hayes", "character": "Yuri Loginova", "id": 1282733, "credit_id": "52fe42ffc3a36847f8032dc1", "cast_id": 24, "profile_path": "/9u3VUfH0Sm4W8jiAePhunv5VX2z.jpg", "order": 13}, {"name": "Geoffrey Pounsett", "character": "Mackenzie", "id": 108892, "credit_id": "52fe42ffc3a36847f8032dc5", "cast_id": 25, "profile_path": "/xbp0HABLoF0onvNg8OsiLxO8yVx.jpg", "order": 14}, {"name": "Shaun Austin-Olsen", "character": "Priest", "id": 181010, "credit_id": "52fe42ffc3a36847f8032dc9", "cast_id": 26, "profile_path": "/aunxQUbkpZjiEmSAncNtvInID33.jpg", "order": 15}, {"name": "Geny Walters", "character": "Mrs. Priest", "id": 1282734, "credit_id": "52fe42ffc3a36847f8032dcd", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "Megan Fahlenbock", "character": "Marla Mapes", "id": 87779, "credit_id": "52fe42ffc3a36847f8032dd1", "cast_id": 28, "profile_path": "/3bGOWBBpUoZ0lfjp1lKSD8XXmJX.jpg", "order": 17}, {"name": "Robert Morelli", "character": "Director", "id": 1001608, "credit_id": "52fe42ffc3a36847f8032dd5", "cast_id": 29, "profile_path": null, "order": 18}, {"name": "Aaron Abrams", "character": "Assistant", "id": 56262, "credit_id": "52fe42ffc3a36847f8032dd9", "cast_id": 30, "profile_path": "/weVv0AxBDJvk3pCf8ADnHjJRjtC.jpg", "order": 19}, {"name": "Chris Benson", "character": "Lance Halloran", "id": 76105, "credit_id": "52fe42ffc3a36847f8032ddd", "cast_id": 31, "profile_path": "/emkHKSAhTIVlLnz29T97NbTIGgJ.jpg", "order": 20}, {"name": "Martin Martinuzzi", "character": "Overworked Detective", "id": 159628, "credit_id": "52fe42ffc3a36847f8032de1", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Brad Borbridge", "character": "Overworked Sergeant", "id": 188632, "credit_id": "52fe42ffc3a36847f8032de5", "cast_id": 33, "profile_path": "/cPNnMmvViPM1GAzf3aFxiwNUYs.jpg", "order": 22}, {"name": "Frank Chiesurin", "character": "Sniper", "id": 119478, "credit_id": "52fe42ffc3a36847f8032de9", "cast_id": 34, "profile_path": "/sV3ApeDZxWV7feCodwMou2l4g55.jpg", "order": 23}, {"name": "Ron Benjamin", "character": "Bum", "id": 1282737, "credit_id": "52fe42ffc3a36847f8032ded", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Kevin Hare", "character": "Home Owner / Scientist", "id": 188609, "credit_id": "52fe42ffc3a36847f8032df1", "cast_id": 36, "profile_path": "/z2jRUQCVjcRTT7VFqsJ1a6I6yfO.jpg", "order": 25}, {"name": "Heather Dick", "character": "Older Woman", "id": 1282738, "credit_id": "52fe42ffc3a36847f8032df5", "cast_id": 37, "profile_path": "/9OQyCGt4mgAKLMtUy0v5slV85rJ.jpg", "order": 26}, {"name": "Alex Courey", "character": "Suit #1", "id": 1282739, "credit_id": "52fe42ffc3a36847f8032df9", "cast_id": 38, "profile_path": "/uvmklHNCLohRQsUR1aD77XzUgnk.jpg", "order": 27}, {"name": "John Detoro", "character": "Suit #2", "id": 1035179, "credit_id": "52fe42ffc3a36847f8032dfd", "cast_id": 39, "profile_path": "/eVzsEWszPRtDNZxNFesKVlzWvXL.jpg", "order": 28}, {"name": "Billy Khoury", "character": "Suit #3", "id": 180940, "credit_id": "52fe42ffc3a36847f8032e01", "cast_id": 40, "profile_path": "/2vGIhQQMNT3zlHozJf8waYzXXqj.jpg", "order": 29}, {"name": "Sava Drayton", "character": "Suit #4", "id": 168624, "credit_id": "52fe42ffc3a36847f8032e05", "cast_id": 41, "profile_path": "/vSZbKnORHLYEBIxQNDRrOccNGsP.jpg", "order": 30}, {"name": "Nicole Ann St. Hill", "character": "Undead Gaudy Hooker", "id": 1282740, "credit_id": "52fe42ffc3a36847f8032e09", "cast_id": 42, "profile_path": "/nqoehc5iM4femY6rgWkhOltPLcH.jpg", "order": 31}, {"name": "Ricardo Betancourt", "character": "Burly Cop #1", "id": 168611, "credit_id": "52fe42ffc3a36847f8032e0d", "cast_id": 43, "profile_path": "/4vXuYQWN8svVHemrOmTPdUtNuiP.jpg", "order": 32}, {"name": "Ted Ludzik", "character": "Burly Cop #2", "id": 40386, "credit_id": "52fe42ffc3a36847f8032e11", "cast_id": 44, "profile_path": "/fz7de231z4eWHkIA8vSqPSmB9US.jpg", "order": 33}, {"name": "Michelle Latimer", "character": "Tech #1", "id": 1233591, "credit_id": "52fe42ffc3a36847f8032e15", "cast_id": 45, "profile_path": "/3o3JyzkT5x3tQZdCWJZzhDTkLaT.jpg", "order": 34}, {"name": "Catherine Burdon", "character": "Tech #2", "id": 981162, "credit_id": "52fe42ffc3a36847f8032e19", "cast_id": 46, "profile_path": "/1OOrjAGa1s1SMU2WYpdyhBoeRKZ.jpg", "order": 35}, {"name": "Rebecca Sims", "character": "Undead Little Girl", "id": 1282741, "credit_id": "52fe42ffc3a36847f8032e1d", "cast_id": 47, "profile_path": null, "order": 36}, {"name": "Christopher Weedon", "character": "Undead Little Boy #1", "id": 1282742, "credit_id": "52fe42ffc3a36847f8032e21", "cast_id": 48, "profile_path": null, "order": 37}, {"name": "Billy Parrott", "character": "Security Guard", "id": 62674, "credit_id": "52fe42ffc3a36847f8032e25", "cast_id": 49, "profile_path": "/kVCaH4rHM5T2rTkDroyHZTTyR1S.jpg", "order": 38}, {"name": "Derek Aasland", "character": "Featured Graveyard Undead 1 (as Derek Asland) / Featured \"Surplus\" Undead #3", "id": 199822, "credit_id": "52fe42ffc3a36847f8032e29", "cast_id": 50, "profile_path": "/q04CZ3srSgdDACzxcAmbkbKXlHq.jpg", "order": 39}, {"name": "Richard Harte", "character": "Featured Graveyard Undead 2 / Featured Rooftop Undead #2", "id": 1282743, "credit_id": "52fe42ffc3a36847f8032e2d", "cast_id": 51, "profile_path": "/g8Sx0wbYpy8EljfUXYnGSW6EH5Z.jpg", "order": 40}, {"name": "Simon Girard", "character": "Chopper Pilot #1", "id": 1282744, "credit_id": "52fe42ffc3a36847f8032e31", "cast_id": 52, "profile_path": null, "order": 41}, {"name": "Dean Copkov", "character": "Chopper Pilot #2", "id": 8358, "credit_id": "52fe42ffc3a36847f8032e35", "cast_id": 53, "profile_path": "/iLGNYLW04d24GfaDt8Skgnlf8bt.jpg", "order": 42}, {"name": "Jeff White", "character": "Chopper Pilot #4", "id": 1282746, "credit_id": "52fe42ffc3a36847f8032e39", "cast_id": 54, "profile_path": "/2JUDsYrU9MJ7gXQaisQfO9IgJOX.jpg", "order": 43}, {"name": "Tim Burd", "character": "Refugee #1", "id": 2686, "credit_id": "52fe42ffc3a36847f8032e3d", "cast_id": 55, "profile_path": "/inSi2m7IYXK7pUlEk2bPEvnri4J.jpg", "order": 44}, {"name": "Natalie Charles", "character": "Refugee #2", "id": 201683, "credit_id": "52fe42ffc3a36847f8032e41", "cast_id": 56, "profile_path": null, "order": 45}, {"name": "Pierre Henry", "character": "Screaming Soldier", "id": 8370, "credit_id": "52fe42ffc3a36847f8032e45", "cast_id": 57, "profile_path": null, "order": 46}, {"name": "Jim Codrington", "character": "Lieutenant", "id": 64514, "credit_id": "52fe4300c3a36847f8032e49", "cast_id": 58, "profile_path": "/eapfLVW8DNZdW9zJ67baEiqfpsY.jpg", "order": 47}, {"name": "Deborah Valente", "character": "Tech", "id": 74279, "credit_id": "52fe4300c3a36847f8032e4d", "cast_id": 59, "profile_path": "/vY7Is15KFcXaEgjyGiIT8ziqwH0.jpg", "order": 48}, {"name": "Malcolm Fiddick", "character": "Reflection Undead", "id": 175201, "credit_id": "52fe4300c3a36847f8032e51", "cast_id": 60, "profile_path": null, "order": 49}, {"name": "Malcolm Xerxes", "character": "Featured City Hall Undead #1", "id": 180922, "credit_id": "52fe4300c3a36847f8032e55", "cast_id": 61, "profile_path": null, "order": 50}, {"name": "Michy Gustavia", "character": "Featured City Hall Undead #2", "id": 1282758, "credit_id": "52fe4300c3a36847f8032e59", "cast_id": 62, "profile_path": "/naffyoDuhp6BrZOv3pzyR3SMimO.jpg", "order": 51}, {"name": "Shane Mackinnon", "character": "Featured City Hall Undead #3", "id": 1282760, "credit_id": "52fe4300c3a36847f8032e5d", "cast_id": 63, "profile_path": "/woRI8mTxkrJEVWiR89wc46lrfCN.jpg", "order": 52}, {"name": "Ed Fielding", "character": "Featured City Hall Undead #4", "id": 166441, "credit_id": "52fe4300c3a36847f8032e61", "cast_id": 64, "profile_path": "/gWMUS5AnD9GMhA1Vqn3WRtOSyk.jpg", "order": 53}, {"name": "Stephen R. Hart", "character": "Featured City Hall Undead #5 (as Stephen Hart)", "id": 224723, "credit_id": "52fe4300c3a36847f8032e65", "cast_id": 65, "profile_path": "/ug7iJfFhZXTmB7UoBhQKrkB09Ia.jpg", "order": 54}, {"name": "Sandi Stahlbrand", "character": "Reporter #1", "id": 181018, "credit_id": "52fe4300c3a36847f8032e69", "cast_id": 66, "profile_path": "/1JKsfF6aDwni2ge5JJt2xq6ds2v.jpg", "order": 55}, {"name": "Christopher Marren", "character": "Guard (as Chris Marren)", "id": 186491, "credit_id": "52fe4300c3a36847f8032e6d", "cast_id": 67, "profile_path": "/iGPSLtbi2X3EXprcefvRhsSQ0Ec.jpg", "order": 56}, {"name": "Tom Gerhardt", "character": "Zombie Dad", "id": 57852, "credit_id": "52fe4300c3a36847f8032e71", "cast_id": 68, "profile_path": "/l5tIaPiOi76AnG2Di9MIqkBBvAz.jpg", "order": 57}, {"name": "Amber Marshall", "character": "Daughter", "id": 200920, "credit_id": "52fe4300c3a36847f8032e75", "cast_id": 69, "profile_path": "/ey6ZgAepsH8BahsYZg1Mteuz3Eb.jpg", "order": 58}, {"name": "Venice Grant", "character": "Undead Stripper #1", "id": 184392, "credit_id": "52fe4300c3a36847f8032e79", "cast_id": 70, "profile_path": "/1GhhGqrQKlos4NdxrLjKbERGuCQ.jpg", "order": 59}, {"name": "Ana Danilina", "character": "Undead Stripper #2", "id": 1282767, "credit_id": "52fe4300c3a36847f8032e7d", "cast_id": 71, "profile_path": "/wstIzuk3cX0ACR0gokbd2Au26rw.jpg", "order": 60}, {"name": "Ingrid Johansson", "character": "Featured IV Woman Undead", "id": 1282769, "credit_id": "52fe4300c3a36847f8032e81", "cast_id": 72, "profile_path": "/aa67SQjtKtHVJISTRY5Qj2F4iaP.jpg", "order": 61}, {"name": "Jeffrey Weedon", "character": "Undead Little Boy #2", "id": 1282773, "credit_id": "52fe4300c3a36847f8032e85", "cast_id": 73, "profile_path": null, "order": 62}, {"name": "Melanie Tonello", "character": "Featured Undead Kid #1", "id": 1227294, "credit_id": "52fe4300c3a36847f8032e89", "cast_id": 74, "profile_path": "/ibbo2kzrIufzcZo4c9nnyqNRPfj.jpg", "order": 63}, {"name": "Annabel Chu", "character": "Featured Undead Kid #2", "id": 1282774, "credit_id": "52fe4300c3a36847f8032e8d", "cast_id": 75, "profile_path": "/c1ceLXbbRtt2SinkC8AVU0LRzct.jpg", "order": 64}, {"name": "Joey Jefferson", "character": "Featured Undead Kid #3", "id": 1282775, "credit_id": "52fe4300c3a36847f8032e91", "cast_id": 76, "profile_path": null, "order": 65}, {"name": "Heather Braaten", "character": "Featured Rooftop Undead #1", "id": 1282777, "credit_id": "52fe4300c3a36847f8032e95", "cast_id": 77, "profile_path": null, "order": 66}, {"name": "Joey Beck", "character": "Featured Rooftop Undead #3", "id": 1282780, "credit_id": "52fe4300c3a36847f8032e99", "cast_id": 78, "profile_path": "/usi93Z0kZHXmySFGhPsRMXOZmcw.jpg", "order": 67}, {"name": "Eric Morgan", "character": "Featured Undead City Walker #1", "id": 1282783, "credit_id": "52fe4300c3a36847f8032e9d", "cast_id": 79, "profile_path": null, "order": 68}, {"name": "Gene Pyrz", "character": "Featured Undead City Walker #2", "id": 14903, "credit_id": "52fe4300c3a36847f8032ea1", "cast_id": 80, "profile_path": "/ydANqjUBcAKXTT3QCtdrihxXCRi.jpg", "order": 69}, {"name": "Torquil Colbo", "character": "Featured Undead City Walker #3", "id": 1282788, "credit_id": "52fe4300c3a36847f8032ea5", "cast_id": 81, "profile_path": null, "order": 70}, {"name": "Joan Moore", "character": "Featured Undead City Walker #4", "id": 1282791, "credit_id": "52fe4300c3a36847f8032ea9", "cast_id": 82, "profile_path": null, "order": 71}, {"name": "Peter C. Wylde", "character": "Featured Undead City Walker #5", "id": 1282793, "credit_id": "52fe4300c3a36847f8032ead", "cast_id": 83, "profile_path": null, "order": 72}, {"name": "Garry Geddes", "character": "Featured Undead City Walker #6", "id": 1282795, "credit_id": "52fe4300c3a36847f8032eb1", "cast_id": 84, "profile_path": null, "order": 73}, {"name": "Dionne Renee", "character": "Featured Undead City Walker #7", "id": 1282796, "credit_id": "52fe4300c3a36847f8032eb5", "cast_id": 85, "profile_path": null, "order": 74}, {"name": "Janessa Crimi", "character": "Featured Undead Kid #4", "id": 1282801, "credit_id": "52fe4300c3a36847f8032eb9", "cast_id": 86, "profile_path": "/wjOaXE5eri5moTElZQt0XN1iB9R.jpg", "order": 75}, {"name": "Dan Ellery", "character": "Featured Graveyard Undead 1 (as Derek Asland) / Featured \"Surplus\" Undead #3", "id": 1282802, "credit_id": "52fe4300c3a36847f8032ebd", "cast_id": 87, "profile_path": "/duu0n4CP140keYRxgrtpjAZftCb.jpg", "order": 76}, {"name": "Sharon Moore", "character": "Featured \"Surplus\" Undead #2", "id": 1282804, "credit_id": "52fe4300c3a36847f8032ec1", "cast_id": 88, "profile_path": "/x9QTUXivnX87p3SCIVY86j0pLpi.jpg", "order": 77}, {"name": "Jo Chim", "character": "Network Anchor #1", "id": 174584, "credit_id": "52fe4300c3a36847f8032ec5", "cast_id": 89, "profile_path": "/ygK2v0pRaTu1p9O7zvNnmYUWYEG.jpg", "order": 78}, {"name": "Bobby Prochaska", "character": "Network Anchor #2", "id": 1282808, "credit_id": "52fe4300c3a36847f8032ec9", "cast_id": 90, "profile_path": null, "order": 79}, {"name": "Jazz Mann", "character": "Reporter #2", "id": 111809, "credit_id": "52fe4300c3a36847f8032ecd", "cast_id": 91, "profile_path": "/ytC4z303UaxdWmmfoakVaQTfVOf.jpg", "order": 80}, {"name": "Larissa Gomes", "character": "Reporter #3", "id": 55572, "credit_id": "52fe4300c3a36847f8032ed1", "cast_id": 92, "profile_path": "/xddMqErSIlOJeAKwhWSxwlNV6g7.jpg", "order": 81}, {"name": "Gregory White", "character": "Lab Technician", "id": 1282809, "credit_id": "52fe4300c3a36847f8032ed5", "cast_id": 93, "profile_path": "/yncmZS8mByfyqzABQnpejouGc8T.jpg", "order": 82}, {"name": "Roman Podhora", "character": "Leader Umbrella Guard", "id": 55588, "credit_id": "52fe4300c3a36847f8032ed9", "cast_id": 94, "profile_path": "/bsLXnsfdwKkeQw7Q6vCFb5SD2Wv.jpg", "order": 83}, {"name": "Brian King", "character": "Umbrella Gate Guard", "id": 204547, "credit_id": "52fe4300c3a36847f8032edd", "cast_id": 95, "profile_path": "/11He62tWcInsk61w7NNZVHeDUCF.jpg", "order": 84}, {"name": "Rob Hall", "character": "Featured School Undead", "id": 1038790, "credit_id": "52fe4300c3a36847f8032ee1", "cast_id": 96, "profile_path": null, "order": 85}, {"name": "Eric Mabius", "character": "Matt Addison (archive footage)", "id": 11867, "credit_id": "52fe4300c3a36847f8032ee5", "cast_id": 97, "profile_path": "/mfYqgYHkvJRgPus0kN2V1GhsFOU.jpg", "order": 86}], "directors": [{"name": "Alexander Witt", "department": "Directing", "job": "Director", "credit_id": "52fe42ffc3a36847f8032d5d", "profile_path": "/3hegIe4CixeZCFls7g5TpauQL9K.jpg", "id": 17649}], "vote_average": 6.2, "runtime": 94}, "22794": {"poster_path": "/75QV0rNm6QHpMnpIGrZK0ev08rH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 242988466, "overview": "Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?", "video": false, "id": 22794, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cloudy with a Chance of Meatballs", "tagline": "Prepare to get served.", "vote_count": 640, "homepage": "http://www.cloudywithachanceofmeatballs.com/", "belongs_to_collection": {"backdrop_path": "/eANL41F9Zp1xHMD6VnHnD3QS7ui.jpg", "poster_path": "/pRAzOs9cZN8LlhaCKo6LQ0bSfyi.jpg", "id": 177467, "name": "Cloudy with a Chance of Meatballs Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0844471", "adult": false, "backdrop_path": "/vYovS909jUV3wxms4DmHGjZ1lhw.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2009-09-16", "popularity": 1.31642694930513, "original_title": "Cloudy with a Chance of Meatballs", "budget": 100000000, "cast": [{"name": "Bill Hader", "character": "Flint Lockwood (voice)", "id": 19278, "credit_id": "52fe444fc3a368484e01be1b", "cast_id": 1, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 0}, {"name": "Anna Faris", "character": "Sam Sparks (voice)", "id": 1772, "credit_id": "52fe444fc3a368484e01be1f", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "James Caan", "character": "Tim Lockwood (voice)", "id": 3085, "credit_id": "52fe444fc3a368484e01be23", "cast_id": 3, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 2}, {"name": "Mr. T", "character": "Earl Devereaux (voice)", "id": 16619, "credit_id": "52fe444fc3a368484e01be27", "cast_id": 5, "profile_path": "/qOkwEXmkoSIP65BcJlpv48n0vnP.jpg", "order": 3}, {"name": "Benjamin Bratt", "character": "Manny (voice)", "id": 4589, "credit_id": "52fe444fc3a368484e01be31", "cast_id": 7, "profile_path": "/nTJQPpn8OBkFM31rukjxM32rA0F.jpg", "order": 4}, {"name": "Bruce Campbell", "character": "Mayor Shelbourne (voice)", "id": 11357, "credit_id": "52fe444fc3a368484e01be35", "cast_id": 8, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 5}, {"name": "Neil Patrick Harris", "character": "Steve (voice)", "id": 41686, "credit_id": "52fe444fc3a368484e01be39", "cast_id": 9, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 6}, {"name": "Al Roker", "character": "Patrick Patrickson (voice)", "id": 111875, "credit_id": "52fe444fc3a368484e01be3d", "cast_id": 10, "profile_path": "/gl113PsTnmLTAFCjNthTyXwZJyI.jpg", "order": 7}, {"name": "Lauren Graham", "character": "Fran Lockwood (voice)", "id": 16858, "credit_id": "52fe444fc3a368484e01be41", "cast_id": 11, "profile_path": "/fnNv7OCvO7ySSh1Bf5xNAn5mXGC.jpg", "order": 8}, {"name": "Andy Samberg", "character": "'Baby' Brent (voice)", "id": 62861, "credit_id": "52fe444fc3a368484e01be4b", "cast_id": 16, "profile_path": "/gneiMN0OldoxNfmu6dkcBEy0u2k.jpg", "order": 9}, {"name": "Bobb'e J. Thompson", "character": "Cal Devereaux (voice)", "id": 75633, "credit_id": "52fe444fc3a368484e01bea3", "cast_id": 32, "profile_path": "/egf09lgTqjSmSCxGLTROpkb5ZGS.jpg", "order": 10}, {"name": "Will Forte", "character": "Joe Towne (voice)", "id": 62831, "credit_id": "52fe444fc3a368484e01bea7", "cast_id": 33, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 11}, {"name": "Max Neuwirth", "character": "Young Flint (voice)", "id": 968412, "credit_id": "52fe444fc3a368484e01beab", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Peter Siragusa", "character": "Rufus (voice)", "id": 154693, "credit_id": "52fe444fc3a368484e01beaf", "cast_id": 35, "profile_path": "/ujsyxmkFL2Co1kJeNPPTVQrE9Dq.jpg", "order": 13}, {"name": "Angela Shelton", "character": "Regina Devereaux (voice)", "id": 470529, "credit_id": "52fe444fc3a368484e01beb3", "cast_id": 36, "profile_path": "/svMM0OLs39SSBIVuxSLSkt4J5of.jpg", "order": 14}, {"name": "Neil Flynn", "character": "Weather News Network Producer (voice)", "id": 43776, "credit_id": "52fe444fc3a368484e01beb7", "cast_id": 37, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 15}, {"name": "Liz Cackowski", "character": "Flint's Teacher (voice)", "id": 448309, "credit_id": "52fe444fc3a368484e01bebb", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Isabella Acres", "character": "(voice)", "id": 210877, "credit_id": "550e919ec3a3683e7f0020f2", "cast_id": 39, "profile_path": "/xYfOE6mlvuuzQR4nFhleaw8w12V.jpg", "order": 17}, {"name": "Lori Alan", "character": "(voice)", "id": 24358, "credit_id": "550e9aefc3a368487400a65e", "cast_id": 40, "profile_path": "/mNfJWzuaKgkIaK7CuirXOMosd2h.jpg", "order": 18}, {"name": "Shane Baumel", "character": "(voice)", "id": 52868, "credit_id": "550e9d9d925141065c002335", "cast_id": 41, "profile_path": "/lcb0H1H2hPF2RzSeGq2OadilEMy.jpg", "order": 19}, {"name": "Bob Bergen", "character": "(voice)", "id": 78317, "credit_id": "550e9dda925141073d002442", "cast_id": 42, "profile_path": "/kuWDjNTw6OVnc3q1ugMGBYpMMMa.jpg", "order": 20}, {"name": "Cody Cameron", "character": "(voice)", "id": 12095, "credit_id": "550e9e3c925141065c00234f", "cast_id": 43, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 21}, {"name": "Marsha Clark", "character": "(voice)", "id": 155639, "credit_id": "550e9e8292514107010023ec", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "John Cygan", "character": "(voice)", "id": 167295, "credit_id": "550e9eb1c3a3683f39002326", "cast_id": 45, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 23}, {"name": "Ann Dominic", "character": "(voice)", "id": 1443837, "credit_id": "550e9ec9925141065c002375", "cast_id": 46, "profile_path": null, "order": 24}, {"name": "Paul Eiding", "character": "(voice)", "id": 86006, "credit_id": "550e9ef6c3a3683dd6002087", "cast_id": 47, "profile_path": "/73yCY9QBAKqFilmVLXATsrIzL2Q.jpg", "order": 25}, {"name": "Jess Harnell", "character": "(voice)", "id": 84495, "credit_id": "550e9f0f92514146990096fb", "cast_id": 48, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 26}, {"name": "Gary A. Hecker", "character": "(voice) (as Gary Hecker)", "id": 1077782, "credit_id": "550e9f3b9251414699009703", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Phil Lord", "character": "(voice)", "id": 107446, "credit_id": "550ecf4d9251410701002bea", "cast_id": 50, "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "order": 28}, {"name": "Sherry Lynn", "character": "(voice)", "id": 214701, "credit_id": "550ecfa09251410701002bf5", "cast_id": 51, "profile_path": "/kQDSC2z7sb6S5HcpOH6cmeJokKE.jpg", "order": 29}, {"name": "Danny Mann", "character": "(voice)", "id": 52699, "credit_id": "550ecfe19251416bd100083c", "cast_id": 52, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 30}, {"name": "Mona Marshall", "character": "(voice)", "id": 111466, "credit_id": "550ed016925141065c002b21", "cast_id": 53, "profile_path": "/9BK7xa1tn6lPIuYOR2fPvUxP6fw.jpg", "order": 31}, {"name": "Mickie McGowan", "character": "(voice)", "id": 84493, "credit_id": "550ed03ec3a3681db2009649", "cast_id": 54, "profile_path": "/k7TjJBfINsg8vLQxJwos6XObAD6.jpg", "order": 32}, {"name": "Christopher Miller", "character": "(voice)", "id": 1230981, "credit_id": "550ed06b925141065c002b2e", "cast_id": 55, "profile_path": null, "order": 33}, {"name": "Laraine Newman", "character": "(voice)", "id": 35159, "credit_id": "550ed095925141065c002b38", "cast_id": 56, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 34}, {"name": "Jan Rabson", "character": "(voice)", "id": 157626, "credit_id": "550ed2949251414699009f01", "cast_id": 57, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 35}, {"name": "Grace Rolek", "character": "(voice)", "id": 946462, "credit_id": "550ed2d3c3a3683f39002b36", "cast_id": 58, "profile_path": "/ejn2P2z5KwnLHxNmxHwLCCDuIph.jpg", "order": 36}, {"name": "Jeremy Shada", "character": "(voice)", "id": 204131, "credit_id": "550ed308c3a3683f0a0029ec", "cast_id": 59, "profile_path": "/oyBtYOnOCSp2yX8shxqoQsqtBF9.jpg", "order": 37}, {"name": "Will Shadley", "character": "(voice)", "id": 1281596, "credit_id": "550ed33992514146a000a033", "cast_id": 60, "profile_path": "/lXftbxNXncsiYBBXXTVrVYmiASF.jpg", "order": 38}, {"name": "Melissa Sturm", "character": "(voice)", "id": 587697, "credit_id": "550ed377c3a368487400afb9", "cast_id": 61, "profile_path": null, "order": 39}, {"name": "Ariel Winter", "character": "(voice)", "id": 42160, "credit_id": "550ed3a992514164ac000993", "cast_id": 62, "profile_path": "/268OydCvx5y5rpK1S9swMSZZtvW.jpg", "order": 40}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe444fc3a368484e01be2d", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe444fc3a368484e01be47", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 6.3, "runtime": 90}, "22798": {"poster_path": "/llpanXzIJq65qEM4weBaYaLEiY9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Bodeen, Texas, Land Of The Dragon, an indie-rock loving misfit finds a way of dealing with her small-town misery after she discovers a roller derby league in nearby Austin.", "video": false, "id": 22798, "genres": [{"id": 18, "name": "Drama"}], "title": "Whip It", "tagline": "Be Your Own Hero", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1172233", "adult": false, "backdrop_path": "/iIU2NlC0EpL5NTPtGWmupyoMPhN.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Vincent Pictures", "id": 8818}], "release_date": "2009-09-13", "popularity": 0.47382305332608, "original_title": "Whip It", "budget": 15000000, "cast": [{"name": "Ellen Page", "character": "Bliss Cavendar", "id": 27578, "credit_id": "52fe4450c3a368484e01bfa3", "cast_id": 2, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Smashley Simpson", "id": 69597, "credit_id": "52fe4450c3a368484e01bfa7", "cast_id": 3, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Sarah Habel", "character": "Corbi", "id": 87444, "credit_id": "52fe4450c3a368484e01bfab", "cast_id": 4, "profile_path": "/eIEv1BHPIvxUtLxeTqQ4JFJa6Bj.jpg", "order": 2}, {"name": "Shannon Eagen", "character": "Amber", "id": 92019, "credit_id": "52fe4450c3a368484e01bfaf", "cast_id": 5, "profile_path": "/cNhj8b2IB7FsaswCwV4t6vBDF1Y.jpg", "order": 3}, {"name": "Kristen Wiig", "character": "Maggie Mayhem", "id": 41091, "credit_id": "52fe4450c3a368484e01bfb3", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 4}, {"name": "Zo\u00eb Bell", "character": "Bloody Holly", "id": 20494, "credit_id": "52fe4450c3a368484e01bfb7", "cast_id": 7, "profile_path": "/44OHciSZtHTggiXyNM8jntKMsot.jpg", "order": 5}, {"name": "Juliette Lewis", "character": "Iron Maven", "id": 3196, "credit_id": "52fe4450c3a368484e01bfc1", "cast_id": 9, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 6}, {"name": "Marcia Gay Harden", "character": "Brooke Cavendar", "id": 4726, "credit_id": "52fe4450c3a368484e01bfc5", "cast_id": 10, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 7}, {"name": "Jimmy Fallon", "character": "\"Hot Tub\" Johnny Rocket", "id": 11669, "credit_id": "52fe4450c3a368484e01bfc9", "cast_id": 11, "profile_path": "/ywTK7uDQjeNeKTK54kRYajt8Wss.jpg", "order": 8}, {"name": "Eve", "character": "Rosa Sparks", "id": 230176, "credit_id": "52fe4450c3a368484e01bfcd", "cast_id": 12, "profile_path": "/3V7Um9JXpwcuTx6wnO2u1hZ1Jfa.jpg", "order": 9}, {"name": "Daniel Stern", "character": "Earl Cavendar", "id": 11511, "credit_id": "52fe4450c3a368484e01bfd1", "cast_id": 13, "profile_path": "/fyiJWh0zdIOBOSqcB8qaFw5U8bA.jpg", "order": 10}, {"name": "Alia Shawkat", "character": "Pash", "id": 61178, "credit_id": "52fe4450c3a368484e01bfd5", "cast_id": 14, "profile_path": "/3A9fLNoFLkbMlSpzoOCWlVIdKKw.jpg", "order": 11}, {"name": "Har Mar Superstar", "character": "Fight Attendants Coach", "id": 1107306, "credit_id": "52fe4450c3a368484e01bfd9", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Andrew Wilson", "character": "Razor", "id": 71555, "credit_id": "534d32c1c3a368607c000dae", "cast_id": 16, "profile_path": "/tGwZ3P9xENc0C8HD7wiuspCm8tM.jpg", "order": 13}], "directors": [{"name": "Drew Barrymore", "department": "Directing", "job": "Director", "credit_id": "52fe444fc3a368484e01bf9f", "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "id": 69597}], "vote_average": 6.6, "runtime": 111}, "6415": {"poster_path": "/uB9Kl71W50q5KwM6d06ho6sNuq1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108000000, "overview": "A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.", "video": false, "id": 6415, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}], "title": "Three Kings", "tagline": "It's good to be King.", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0120188", "adult": false, "backdrop_path": "/d2fSA6N7xUvj5jA62SAsGvLdVk5.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Village-A.M. Partnership", "id": 23689}, {"name": "Coast Ridge", "id": 23690}, {"name": "Atlas Entertainment", "id": 507}, {"name": "Junger Witt Productions", "id": 23691}], "release_date": "1999-09-27", "popularity": 0.80228629780176, "original_title": "Three Kings", "budget": 75000000, "cast": [{"name": "George Clooney", "character": "Archie Gates", "id": 1461, "credit_id": "52fe4450c3a36847f808ecd1", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Troy Barlow", "id": 13240, "credit_id": "52fe4450c3a36847f808ecd5", "cast_id": 2, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Ice Cube", "character": "Chief Elgin", "id": 9778, "credit_id": "52fe4450c3a36847f808ecd9", "cast_id": 3, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 2}, {"name": "Spike Jonze", "character": "Conrad Vig", "id": 5953, "credit_id": "52fe4450c3a36847f808ed07", "cast_id": 11, "profile_path": "/1gsdqWauZctl7h65N1wg4IKNmhl.jpg", "order": 3}, {"name": "Cliff Curtis", "character": "Amir Abdullah", "id": 7248, "credit_id": "52fe4450c3a36847f808ed0b", "cast_id": 12, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 4}, {"name": "Nora Dunn", "character": "Adriana Cruz", "id": 4496, "credit_id": "52fe4450c3a36847f808ed0f", "cast_id": 13, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 5}, {"name": "Jamie Kennedy", "character": "Walter Wogaman", "id": 6213, "credit_id": "52fe4450c3a36847f808ed13", "cast_id": 14, "profile_path": "/e4f2GSeSjrg9kJ0LQtJCnV1n6vp.jpg", "order": 6}], "directors": [{"name": "David O. Russell", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a36847f808ecdf", "profile_path": "/s2ZYJ96e0qMUngghXLB9SsO70R4.jpg", "id": 17883}], "vote_average": 6.3, "runtime": 114}, "252178": {"poster_path": "/qvcL0xrm72wWuTLdw5sLcq1JvFM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A young British soldier must find his way back to safety after his unit accidentally abandons him during a riot in the streets of Belfast.", "video": false, "id": 252178, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "'71", "tagline": "", "vote_count": 57, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2614684", "adult": false, "backdrop_path": "/n3kLxEkfUI8LQu6izXFI8fByH2l.jpg", "production_companies": [{"name": "British Film Institute (BFI)", "id": 16974}, {"name": "Screen Yorkshire", "id": 2690}, {"name": "Creative Scotland", "id": 8087}, {"name": "Film4", "id": 9349}, {"name": "Warp Films", "id": 12180}, {"name": "Crab Apple Films", "id": 41517}], "release_date": "2014-10-10", "popularity": 2.06462699295693, "original_title": "'71", "budget": 0, "cast": [{"name": "Jack O'Connell", "character": "Gary", "id": 85065, "credit_id": "52fe4e319251416c9112980b", "cast_id": 6, "profile_path": "/16kiKsFHvGOOHBk5M6kuZ0wvjMZ.jpg", "order": 0}, {"name": "Paul Anderson", "character": "MRF NCO Lewis", "id": 220448, "credit_id": "52fe4e319251416c91129801", "cast_id": 3, "profile_path": "/fHLtf1RvQ2i6ZudyL0WRwmEeTxv.jpg", "order": 1}, {"name": "Sean Harris", "character": "Captain Sandy Browning", "id": 16702, "credit_id": "52fe4e319251416c9112980f", "cast_id": 7, "profile_path": "/zTUONNd9Lq063lpp7GvtjzZmMLW.jpg", "order": 2}, {"name": "Sam Reid", "character": "Lt. Armitage", "id": 589650, "credit_id": "52fe4e319251416c91129813", "cast_id": 8, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 3}, {"name": "Sam Hazeldine", "character": "C.O.", "id": 563559, "credit_id": "52fe4e319251416c91129817", "cast_id": 9, "profile_path": "/12ev9KVmZ1xF4FNeZFGYRHjvJkQ.jpg", "order": 4}, {"name": "Charlie Murphy", "character": "Brigid", "id": 1356630, "credit_id": "53fcdfbac3a3687361006c1c", "cast_id": 11, "profile_path": "/m7Tq2K3iNPGJDyLVlI8PjDgkzYC.jpg", "order": 5}, {"name": "Valene Kane", "character": "Orla (Spitting Woman)", "id": 583815, "credit_id": "53fcdfdcc3a3687361006c20", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "David Wilmot", "character": "Boyle", "id": 73287, "credit_id": "549aba8e9251413126001921", "cast_id": 13, "profile_path": "/qo5xQnnzKm9DiRccTz87SWULRca.jpg", "order": 7}, {"name": "Killian Scott", "character": "Quinn", "id": 1189005, "credit_id": "549aba9b9251413132001831", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ben Peel", "character": "Ruc Man", "id": 1205630, "credit_id": "549abaa9c3a3682f19001940", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Richard Dormer", "character": "Eamon", "id": 97416, "credit_id": "549abab8c3a3680b27001070", "cast_id": 16, "profile_path": "/wVQ3YFe4VCjgcfj56hmgOXaLwAW.jpg", "order": 10}, {"name": "Martin McCann", "character": "Paul Haggerty", "id": 76104, "credit_id": "549abacc9251413123001828", "cast_id": 17, "profile_path": "/665LYyzjbJnmTpTI9HlyJRs3vZq.jpg", "order": 11}], "directors": [{"name": "Yann Demange", "department": "Directing", "job": "Director", "credit_id": "52fe4e319251416c91129807", "profile_path": null, "id": 208527}], "vote_average": 6.7, "runtime": 99}, "22803": {"poster_path": "/eaq6sH6JkS8ypbtCo9GCiopry0Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 126690726, "overview": "A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family's killers free. He targets not only the killer but also the district attorney and others involved in the deal.", "video": false, "id": 22803, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Law Abiding Citizen", "tagline": "The System Must Pay.", "vote_count": 493, "homepage": "http://www.lawabidingcitizenfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1197624", "adult": false, "backdrop_path": "/xFBmZefwrKNeuN7IOksPSdX5ETG.jpg", "production_companies": [{"name": "Film Department, The", "id": 5257}, {"name": "Evil Twins", "id": 5802}, {"name": "Warp Films", "id": 12180}], "release_date": "2009-10-15", "popularity": 1.29131152367383, "original_title": "Law Abiding Citizen", "budget": 53000000, "cast": [{"name": "Jamie Foxx", "character": "Nick Rice", "id": 134, "credit_id": "52fe4450c3a368484e01c135", "cast_id": 4, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 0}, {"name": "Gerard Butler", "character": "Clyde Alexander Shelton", "id": 17276, "credit_id": "52fe4450c3a368484e01c131", "cast_id": 3, "profile_path": "/wRKkVe5uugkx4KnmphBSjJUWPTo.jpg", "order": 1}, {"name": "Colm Meaney", "character": "Detective Dunnigan", "id": 17782, "credit_id": "52fe4450c3a368484e01c13d", "cast_id": 6, "profile_path": "/irPAowqDk7llCvm8uyCJuBClzJw.jpg", "order": 2}, {"name": "Bruce McGill", "character": "Jonas Cantrell", "id": 14888, "credit_id": "52fe4450c3a368484e01c141", "cast_id": 7, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 3}, {"name": "Leslie Bibb", "character": "Sarah Lowell", "id": 57451, "credit_id": "52fe4450c3a368484e01c139", "cast_id": 5, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 4}, {"name": "Michael Irby", "character": "Detective Garza", "id": 124304, "credit_id": "52fe4450c3a368484e01c145", "cast_id": 8, "profile_path": "/6LET9IafZO6BHT0iO1wifdmYb8w.jpg", "order": 5}, {"name": "Gregory Itzin", "character": "Warden Iger", "id": 21142, "credit_id": "52fe4450c3a368484e01c149", "cast_id": 9, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 6}, {"name": "Regina Hall", "character": "Kelly Rice", "id": 35705, "credit_id": "52fe4450c3a368484e01c14d", "cast_id": 10, "profile_path": "/d38Fk5Uee1RZVebCSWB2B0OXd35.jpg", "order": 7}, {"name": "Emerald-Angel Young", "character": "Denise Rice", "id": 124305, "credit_id": "52fe4450c3a368484e01c151", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Christian Stolte", "character": "Clarence Darby", "id": 36091, "credit_id": "52fe4450c3a368484e01c155", "cast_id": 12, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 9}, {"name": "Annie Corley", "character": "Judge Laura Burch", "id": 6907, "credit_id": "52fe4450c3a368484e01c159", "cast_id": 13, "profile_path": "/ypA6im4I1S5SzzNAJOdRmZq01YX.jpg", "order": 10}, {"name": "Richard Portnow", "character": "Bill Reynolds", "id": 4255, "credit_id": "52fe4450c3a368484e01c15d", "cast_id": 14, "profile_path": "/dTHXuSFIZI6FkGxtB24dSRBdmSJ.jpg", "order": 11}, {"name": "Viola Davis", "character": "Mayor April Henry", "id": 19492, "credit_id": "52fe4450c3a368484e01c161", "cast_id": 15, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 12}, {"name": "Michael Kelly", "character": "Bray", "id": 50217, "credit_id": "52fe4450c3a368484e01c169", "cast_id": 18, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 13}, {"name": "Josh Stewart", "character": "Rupert Ames", "id": 40039, "credit_id": "52fe4450c3a368484e01c165", "cast_id": 17, "profile_path": "/x9ZQibxASPwVWGeQn4Y5dcU2ZJG.jpg", "order": 14}, {"name": "Roger Bart", "character": "Brian Bringham", "id": 45566, "credit_id": "540642070e0a2658db00dbe3", "cast_id": 19, "profile_path": "/x2lNUnY0icRm2Itq4nEBscXPH43.jpg", "order": 15}, {"name": "Dan Bittner", "character": "Sereno", "id": 1152008, "credit_id": "54c4139b9251416eae00f0e8", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "F. Gary Gray", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a368484e01c127", "profile_path": "/6p11B9eBjvoiAY5Nyoao6Pm7a2J.jpg", "id": 37932}], "vote_average": 7.0, "runtime": 109}, "22804": {"poster_path": "/iCVk1uniEoQLXdluUGUXBaAgD1H.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 68233629, "overview": "Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw's legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw's grand scheme is finally understood.", "video": false, "id": 22804, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Saw VI", "tagline": "The Game Has Come Full Circle", "vote_count": 147, "homepage": "http://www.saw6film.com/", "belongs_to_collection": {"backdrop_path": "/oLfS1lOmN2KIU2IQ200SDEPVEZe.jpg", "poster_path": "/xmC2A7qPEfiOkQC58fZh8srWQ5v.jpg", "id": 656, "name": "Saw Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1233227", "adult": false, "backdrop_path": "/n7rXLeKo28a3Rxiyg9MQBoX7heX.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Twisted Pictures", "id": 2061}], "release_date": "2009-10-23", "popularity": 0.580097703571641, "original_title": "Saw VI", "budget": 11000000, "cast": [{"name": "Tobin Bell", "character": "Jigsaw / John", "id": 2144, "credit_id": "52fe4450c3a368484e01c18f", "cast_id": 3, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 0}, {"name": "Costas Mandylor", "character": "Hoffman", "id": 36055, "credit_id": "52fe4450c3a368484e01c193", "cast_id": 4, "profile_path": "/b5eTYRzYgnrvs73FhshJ62zrtGn.jpg", "order": 1}, {"name": "Betsy Russell", "character": "Jill", "id": 22434, "credit_id": "52fe4450c3a368484e01c197", "cast_id": 5, "profile_path": "/4uELRGwPn9bJ9H1BF5bZKlu32go.jpg", "order": 2}, {"name": "Mark Rolston", "character": "Erickson", "id": 6576, "credit_id": "52fe4450c3a368484e01c19b", "cast_id": 6, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 3}, {"name": "Peter Outerbridge", "character": "William", "id": 12978, "credit_id": "52fe4450c3a368484e01c19f", "cast_id": 7, "profile_path": "/nRGnRHtjtWnowESjTyN7fnOCp6f.jpg", "order": 4}, {"name": "Shawnee Smith", "character": "Amanda", "id": 2138, "credit_id": "52fe4450c3a368484e01c1a3", "cast_id": 8, "profile_path": "/yx1HYEalFsiNVc2imDDfhIZthkn.jpg", "order": 5}, {"name": "George Newbern", "character": "Harold", "id": 59222, "credit_id": "52fe4450c3a368484e01c1a7", "cast_id": 9, "profile_path": "/48Ouqe1g8QrZ6qjvap5NvhfKuly.jpg", "order": 6}, {"name": "James Gilbert", "character": "Aaron", "id": 268743, "credit_id": "52fe4450c3a368484e01c1ab", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Athena Karkanis", "character": "Agent Perez", "id": 51037, "credit_id": "54c6da8392514167940005c1", "cast_id": 21, "profile_path": "/jy7XvLoZDcO2iHMzxtntHNXXRd0.jpg", "order": 8}, {"name": "Tanedra Howard", "character": "Simone", "id": 1241157, "credit_id": "54c6da99c3a36874b0000592", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Kevin Greutert", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a368484e01c185", "profile_path": "/ffijXhDTs8Up2YQyKRQFIjk5fwc.jpg", "id": 2150}], "vote_average": 5.9, "runtime": 90}, "102780": {"poster_path": "/xUbV45dXe0cASV6qxubs2snHejI.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 85252, "overview": "Two mysterious women seek refuge in a run-down coastal resort. Clara meets lonely Noel, who provides shelter in his deserted guesthouse, Byzantium. Schoolgirl Eleanor befriends Frank and tells him their lethal secret. They were born 200 years ago and survive on human blood. As knowledge of their secret spreads, their past catches up on them with deathly consequence.", "video": false, "id": 102780, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Byzantium", "tagline": "Irresistible. Immoral. Immortal.", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1531901", "adult": false, "backdrop_path": "/gE9KKg3xahfQoccYkgp25HqAvSr.jpg", "production_companies": [{"name": "WestEnd Films", "id": 20782}, {"name": "Demarest Films", "id": 13241}, {"name": "Lipsync Productions", "id": 9987}, {"name": "Number 9 Films", "id": 11752}, {"name": "Parallel Film Productions", "id": 16486}, {"name": "Irish Film Board", "id": 5267}], "release_date": "2013-05-30", "popularity": 1.05059166102235, "original_title": "Byzantium", "budget": 8000000, "cast": [{"name": "Saoirse Ronan", "character": "Eleanor Webb", "id": 36592, "credit_id": "52fe4a10c3a36847f81b6da3", "cast_id": 3, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Clara Webb", "id": 59620, "credit_id": "52fe4a10c3a36847f81b6da7", "cast_id": 4, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Sam Riley", "character": "Darvell", "id": 32987, "credit_id": "52fe4a10c3a36847f81b6db1", "cast_id": 7, "profile_path": "/4PfVxrZ4pXXZjTvMzf9UfGpV53K.jpg", "order": 2}, {"name": "Caleb Landry Jones", "character": "Frank", "id": 572541, "credit_id": "52fe4a10c3a36847f81b6db5", "cast_id": 9, "profile_path": "/73T6DLPggbDaIDLz162o01dCg6I.jpg", "order": 3}, {"name": "Daniel Mays", "character": "Noel", "id": 1670, "credit_id": "52fe4a10c3a36847f81b6db9", "cast_id": 10, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 4}, {"name": "Warren Brown", "character": "Gareth", "id": 211521, "credit_id": "52fe4a10c3a36847f81b6dc3", "cast_id": 12, "profile_path": "/oDs6F2vYAo7aY65WVNt74OJWwmt.jpg", "order": 5}, {"name": "Thure Lindhardt", "character": "Werner", "id": 20258, "credit_id": "52fe4a10c3a36847f81b6dc7", "cast_id": 13, "profile_path": "/q1idmyiaxds2ElxwXOQac75wMAh.jpg", "order": 6}, {"name": "Barry Cassin", "character": "Robert Fowlds", "id": 1186012, "credit_id": "52fe4a10c3a36847f81b6dcb", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "David Heap", "character": "Lap Dancing Client", "id": 188437, "credit_id": "52fe4a10c3a36847f81b6dcf", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Ruby Snape", "character": "Wendy", "id": 1186013, "credit_id": "52fe4a10c3a36847f81b6dd3", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jenny Kavanagh", "character": "Barmaid", "id": 1186014, "credit_id": "52fe4a10c3a36847f81b6dd7", "cast_id": 17, "profile_path": null, "order": 10}, {"name": "Glenn Doherty", "character": "Steve", "id": 549567, "credit_id": "52fe4a10c3a36847f81b6ddb", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Edyta Budnik", "character": "Nadia", "id": 1168076, "credit_id": "52fe4a10c3a36847f81b6ddf", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Gabriela Marcinkova", "character": "Anya", "id": 937219, "credit_id": "52fe4a10c3a36847f81b6de3", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Uri Gavriel", "character": "Savella", "id": 145313, "credit_id": "52fe4a10c3a36847f81b6de7", "cast_id": 22, "profile_path": "/dfQQUOj5kbboElu6676OXLqAeju.jpg", "order": 14}, {"name": "Christine Marzano", "character": "Mrs. Strange", "id": 1170656, "credit_id": "53aa891e0e0a2646d800339e", "cast_id": 38, "profile_path": "/kyPcf8uN1BC6bYNXh1NLK71QNWl.jpg", "order": 15}, {"name": "Kate Ashfield", "character": "Gabi", "id": 11110, "credit_id": "53aa89400e0a2646c2001536", "cast_id": 39, "profile_path": "/nDMZjd8dM7kQqh6agwMIP5l3Q2l.jpg", "order": 16}, {"name": "Jeff Mash", "character": "Mark", "id": 1140091, "credit_id": "53aa89950e0a2646c200153f", "cast_id": 40, "profile_path": "/9CfRm0zsWztCSDo1QiBu0slIr98.jpg", "order": 17}, {"name": "Maria Doyle Kennedy", "character": "Morag", "id": 33394, "credit_id": "53aa89ce0e0a2646d80033a8", "cast_id": 41, "profile_path": "/t7wdC2MGTXEmvJ2LL42j6u6EIcG.jpg", "order": 18}], "directors": [{"name": "Neil Jordan", "department": "Directing", "job": "Director", "credit_id": "52fe4a10c3a36847f81b6d99", "profile_path": "/4OWdIhT5gcfcHoBUzGL7E8tu9T1.jpg", "id": 17016}], "vote_average": 5.6, "runtime": 118}, "14620": {"poster_path": "/nw0qNvyIGiGMvQOTNpxYeERyCn8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After his girlfriend, Julie (Erica Durance), and two best friends are killed in a tragic auto accident, Nick (Eric Lively) struggles to cope with his loss and grief. Suffering from migraine-like seizures, Nick soon discovers that he has the power to change the past via his memories. However, his time-traveling attempts to alter the past and save his one true love have unexpected and dire consequen", "video": false, "id": 14620, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Butterfly Effect 2", "tagline": "Can you change your past without destroying your future?", "vote_count": 65, "homepage": "http://www.newline.com/properties/butterflyeffect2the.html", "belongs_to_collection": {"backdrop_path": "/bj0jcRYfap4gcI2VsThUMYV2ZAG.jpg", "poster_path": "/2kzjiPuc8pOXreeDQWtskp8QtdU.jpg", "id": 52749, "name": "The Butterfly Effect Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0457297", "adult": false, "backdrop_path": "/5BNh4agStvdhbGQdR774LwmlIS5.jpg", "production_companies": [{"name": "BenderSpink", "id": 6363}, {"name": "New Line Cinema", "id": 12}, {"name": "FilmEngine", "id": 816}], "release_date": "2006-10-10", "popularity": 0.614538463463288, "original_title": "The Butterfly Effect 2", "budget": 0, "cast": [{"name": "Eric Lively", "character": "Nick Larson", "id": 53116, "credit_id": "52fe46089251416c7506aced", "cast_id": 8, "profile_path": "/wEl6qozyL6UrjsNcMmAG2T2r9n0.jpg", "order": 0}, {"name": "Erica Durance", "character": "Julie Miller", "id": 46897, "credit_id": "52fe46089251416c7506acf1", "cast_id": 9, "profile_path": "/rNadmNwfATIBboIzE9HGaeeBlVr.jpg", "order": 1}, {"name": "Dustin Milligan", "character": "Trevor Eastman", "id": 53117, "credit_id": "52fe46089251416c7506acf5", "cast_id": 10, "profile_path": "/yn0g5VpGYwuTcIl9BK5gc8bWXmg.jpg", "order": 2}, {"name": "Gina Holden", "character": "Amanda", "id": 33336, "credit_id": "52fe46089251416c7506acf9", "cast_id": 11, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 3}, {"name": "David Lewis", "character": "Dave Bristol", "id": 4095, "credit_id": "52fe46089251416c7506acfd", "cast_id": 12, "profile_path": "/jnQ7KVRV72fkBzU629XlUPsupTH.jpg", "order": 4}, {"name": "Andrew Airlie", "character": "Ron Callahan", "id": 41436, "credit_id": "52fe46089251416c7506ad01", "cast_id": 13, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 5}, {"name": "Chris Gauthier", "character": "Ted", "id": 53119, "credit_id": "52fe46089251416c7506ad05", "cast_id": 14, "profile_path": "/tzXtw8Mwdfv5Ofy6U9l27YZjZ0v.jpg", "order": 6}, {"name": "Susan Hogan", "character": "Katherine Larson", "id": 71763, "credit_id": "52fe46089251416c7506ad09", "cast_id": 15, "profile_path": "/sBt0r86BsJE3rzxPIIqByfdC8gM.jpg", "order": 7}, {"name": "J. R. Bourne", "character": "Malcolm Williams", "id": 62911, "credit_id": "52fe46089251416c7506ad0d", "cast_id": 16, "profile_path": "/wb1t1dHDk4UkNAjRCeHtuKmC5ra.jpg", "order": 8}, {"name": "Lindsay Maxwell", "character": "Grace Callahan", "id": 53118, "credit_id": "52fe46089251416c7506ad11", "cast_id": 17, "profile_path": "/vjCVmfBl4bEFEpvQaEenCyxLvcS.jpg", "order": 9}, {"name": "Zoran Vukelic", "character": "Christopher", "id": 173059, "credit_id": "53aa84c50e0a2646c500171b", "cast_id": 33, "profile_path": null, "order": 10}, {"name": "Jerry Wasserman", "character": "Alberto Fuentes", "id": 21091, "credit_id": "53aa84f20e0a2646c20014e4", "cast_id": 34, "profile_path": "/wNIZZXmI0LMnf2231auSExQz7FT.jpg", "order": 11}, {"name": "John Mann", "character": "Wayne", "id": 12367, "credit_id": "53aa85390e0a2646cc00157d", "cast_id": 35, "profile_path": "/ivL5otVmV67DTunWgaXPGQYZbK4.jpg", "order": 12}, {"name": "Veena Sood", "character": "Nurse", "id": 63563, "credit_id": "53aa857c0e0a2646c5001732", "cast_id": 36, "profile_path": null, "order": 13}], "directors": [{"name": "John R. Leonetti", "department": "Directing", "job": "Director", "credit_id": "52fe46089251416c7506accb", "profile_path": "/7cKC9u81p5OL5loj2PzjepPcjFV.jpg", "id": 26714}], "vote_average": 4.7, "runtime": 95}, "31011": {"poster_path": "/jxd2XSsnUHHUbo50nzVnVnHRPVJ.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Nemo Nobody leads an ordinary existence with his wife and 3 children; one day, he wakes up as a mortal centenarian in the year 2092.", "video": false, "id": 31011, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10749, "name": "Romance"}], "title": "Mr. Nobody", "tagline": "Nothing is real, everything is possible.", "vote_count": 265, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0485947", "adult": false, "backdrop_path": "/r9jAdQDK1tYq2wlFPBJBH9UX5TX.jpg", "production_companies": [{"name": "Pan Europ\u00e9enne Production", "id": 796}, {"name": "Virtual Films", "id": 2366}], "release_date": "2009-09-11", "popularity": 0.801446097342229, "original_title": "Mr. Nobody", "budget": 47000000, "cast": [{"name": "Jared Leto", "character": "Nemo Nobody", "id": 7499, "credit_id": "52fe44559251416c9100d115", "cast_id": 2, "profile_path": "/msugySeTCyCmlRWtyB6sMixTQYY.jpg", "order": 0}, {"name": "Diane Kruger", "character": "Anna", "id": 9824, "credit_id": "52fe44559251416c9100d11f", "cast_id": 4, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "Linh Dan Pham", "character": "Jean", "id": 19115, "credit_id": "52fe44559251416c9100d123", "cast_id": 6, "profile_path": "/pkSbKTJupgoxQS5o8ErvYIEli0x.jpg", "order": 2}, {"name": "Sarah Polley", "character": "Elise", "id": 98, "credit_id": "52fe44559251416c9100d12f", "cast_id": 12, "profile_path": "/px9pkAuUh3upN8fYyPr1B6y3SNl.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Nemo's Father", "id": 7026, "credit_id": "52fe44559251416c9100d133", "cast_id": 13, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Natasha Little", "character": "Nemo's Mother", "id": 110581, "credit_id": "52fe44559251416c9100d137", "cast_id": 14, "profile_path": "/vpR1lI7Na56Ap3vB6BLAhLHs1cP.jpg", "order": 5}, {"name": "Toby Regbo", "character": "Nemo age 16", "id": 116606, "credit_id": "52fe44559251416c9100d127", "cast_id": 9, "profile_path": "/a8CuXhqdtjICxLNwm0yrydDo5Yy.jpg", "order": 6}, {"name": "Clare Stone", "character": "Elise age 15", "id": 129395, "credit_id": "52fe44559251416c9100d12b", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Juno Temple", "character": "Anna age 15", "id": 36594, "credit_id": "52fe44559251416c9100d13b", "cast_id": 15, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 8}, {"name": "Audrey Giacomini", "character": "Jean age 15", "id": 1335454, "credit_id": "53afde8bc3a3682edf004870", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Daniel Mays", "character": "Journalist", "id": 1670, "credit_id": "52fe44559251416c9100d13f", "cast_id": 16, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 10}, {"name": "Thomas Byrne", "character": "Nemo age 9", "id": 150543, "credit_id": "543c2b85c3a3681989005d19", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Laura Brumagne", "character": "Anna age 9", "id": 1373642, "credit_id": "543c2bbdc3a368198c0060bb", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Allan Corduner", "character": "Dr. Feldheim", "id": 78018, "credit_id": "543c2be20e0a2649ab006125", "cast_id": 21, "profile_path": "/t9w2Hi6DLMMXa4tVfnBWmW8ky71.jpg", "order": 13}, {"name": "Daniel Mays", "character": "Young Journalist", "id": 1670, "credit_id": "543c2c02c3a36819900061a2", "cast_id": 22, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 14}, {"name": "Daniel Mays", "character": "Harry", "id": 1670, "credit_id": "543c2c720e0a2649a5006251", "cast_id": 23, "profile_path": "/1IEMFjJdY8x2Na12Dcn9XJo3rv4.jpg", "order": 15}, {"name": "Harold Manning", "character": "TV Host", "id": 931304, "credit_id": "543c2c8e0e0a267283004f93", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Pascal Duquenne", "character": "Henry", "id": 534031, "credit_id": "543c2cc60e0a2649b2005f01", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "David Schaal", "character": "", "id": 137472, "credit_id": "543c2d21c3a368198c0060e6", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Laurent Capelluto", "character": "", "id": 228719, "credit_id": "543c2d39c3a36819a5005e1b", "cast_id": 27, "profile_path": "/fE6HK47D9rLnHwspIt27aCcFhz6.jpg", "order": 19}, {"name": "Harry Cleven", "character": "", "id": 1161618, "credit_id": "543c2d490e0a2649b6006458", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Andrew Simms", "character": "", "id": 190098, "credit_id": "543c2d65c3a36819a1006189", "cast_id": 29, "profile_path": "/cowTaScHEybfhneLfcJ0Ax7ux8A.jpg", "order": 21}, {"name": "Ben Mansfield", "character": "", "id": 220141, "credit_id": "543c2d7cc3a36819a100618e", "cast_id": 30, "profile_path": "/sjYazyor9CncGhYw0YTK7FfD3mO.jpg", "order": 22}], "directors": [{"name": "Jaco Van Dormael", "department": "Directing", "job": "Director", "credit_id": "52fe44559251416c9100d111", "profile_path": null, "id": 107490}], "vote_average": 7.6, "runtime": 141}, "22821": {"poster_path": "/hjU3caMd9O3h21e5kzJeUOAoy7h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10115258, "overview": "Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.", "video": false, "id": 22821, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Boondock Saints II: All Saints Day", "tagline": "The Saints Are Calling", "vote_count": 91, "homepage": "http://www.sonypictures.com/movies/boondocksaints2/", "belongs_to_collection": {"backdrop_path": "/9VUPq4aFG5VVTFGkv9z5pCD3GSn.jpg", "poster_path": "/u4hp2I1DgWw2ZnkX2VTZDixGP87.jpg", "id": 87186, "name": "The Boondock Saints Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1300851", "adult": false, "backdrop_path": "/cyoM4hIMHnIOWcLvfMlpmbpRer4.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Chris Brinker Productions", "id": 2461}], "release_date": "2009-11-24", "popularity": 0.606956287618101, "original_title": "The Boondock Saints II: All Saints Day", "budget": 8000000, "cast": [{"name": "Sean Patrick Flanery", "character": "Connor MacManus", "id": 54789, "credit_id": "52fe4450c3a368484e01c395", "cast_id": 3, "profile_path": "/eydhpVBF1jSSaaGeox8sMaFk2Mq.jpg", "order": 0}, {"name": "Norman Reedus", "character": "Murphy MacManus", "id": 4886, "credit_id": "52fe4450c3a368484e01c399", "cast_id": 4, "profile_path": "/wJBL3VdMdMD5OarXEVHmSoupiLT.jpg", "order": 1}, {"name": "Billy Connolly", "character": "Poppa Il Duce", "id": 9188, "credit_id": "52fe4450c3a368484e01c3a1", "cast_id": 6, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 2}, {"name": "Clifton Collins, Jr.", "character": "Romeo", "id": 5365, "credit_id": "52fe4450c3a368484e01c3a5", "cast_id": 7, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 3}, {"name": "Julie Benz", "character": "Eunice Bloom", "id": 35551, "credit_id": "52fe4450c3a368484e01c391", "cast_id": 2, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 4}, {"name": "Peter Fonda", "character": "The Roman", "id": 8949, "credit_id": "52fe4450c3a368484e01c3a9", "cast_id": 8, "profile_path": "/itxzMl2GUCGdAG3fv2Yh7ksjyeb.jpg", "order": 5}, {"name": "Paul Johansson", "character": "Rick", "id": 73035, "credit_id": "52fe4451c3a368484e01c3ad", "cast_id": 9, "profile_path": "/2pSPtm9D6FsZqdza8OLH3GD9bvN.jpg", "order": 6}, {"name": "Judd Nelson", "character": "Concezio Yakavetta", "id": 21624, "credit_id": "52fe4451c3a368484e01c3b1", "cast_id": 10, "profile_path": "/6mwumgsKDEYy0F9GVdfw8TsNDHL.jpg", "order": 7}, {"name": "David Della Rocco", "character": "Rocco", "id": 54790, "credit_id": "52fe4450c3a368484e01c39d", "cast_id": 5, "profile_path": "/pgzIf45tq5R58K9ZWMlrAa9J62Z.jpg", "order": 8}, {"name": "Bob Marley", "character": "Detective Greenly", "id": 105776, "credit_id": "52fe4451c3a368484e01c3b5", "cast_id": 11, "profile_path": "/qtvL2i75yqBZ0kpUgbHfR11OVwG.jpg", "order": 9}, {"name": "Brian Mahoney", "character": "Detective Duffy", "id": 54792, "credit_id": "52fe4451c3a368484e01c3b9", "cast_id": 12, "profile_path": "/v6pTsqgOHE5TldFV63Kr44idQNe.jpg", "order": 10}, {"name": "David Ferry", "character": "Detective Dolly", "id": 54791, "credit_id": "52fe4451c3a368484e01c3bd", "cast_id": 13, "profile_path": "/bzz3Vx2QavSL6ODXDLubvFR3L54.jpg", "order": 11}, {"name": "Gerard Parkes", "character": "Doc", "id": 105777, "credit_id": "52fe4451c3a368484e01c3c1", "cast_id": 14, "profile_path": "/AgmAajLs8xJJdeCEe7OZa89XOr4.jpg", "order": 12}, {"name": "Richard Fitzpatrick", "character": "The Chief", "id": 44103, "credit_id": "52fe4451c3a368484e01c3c5", "cast_id": 15, "profile_path": "/8TOv7jLMt0ueCsdfCgCV5uwai42.jpg", "order": 13}, {"name": "Robert Mauriell", "character": "Louie", "id": 105778, "credit_id": "52fe4451c3a368484e01c3c9", "cast_id": 16, "profile_path": "/qoT5qLR642NQ4O2fHhTNOPPYfda.jpg", "order": 14}, {"name": "Willem Dafoe", "character": "Paul Smecker", "id": 5293, "credit_id": "52fe4451c3a368484e01c3d3", "cast_id": 18, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 15}, {"name": "Daniel DeSanto", "character": "Crew Cut", "id": 1212955, "credit_id": "54d28eaa9251413fcd0003de", "cast_id": 35, "profile_path": "/s40Uk5qXc5DA43jI7HJzrxNKAaR.jpg", "order": 16}, {"name": "Robb Wells", "character": "Jimmy the Gofer", "id": 60966, "credit_id": "54d296e5c3a3686abf00034e", "cast_id": 37, "profile_path": "/dMnez0ZRY63FP8LHhG2M9iFLqhM.jpg", "order": 18}, {"name": "Pedro Salv\u00edn", "character": "Uncle Cesar", "id": 185165, "credit_id": "54d298be9251413fd60004cf", "cast_id": 38, "profile_path": "/nlARMfccPSdkOleKmGT9jbyma13.jpg", "order": 19}, {"name": "Dwayne McLean", "character": "Father McKinney", "id": 200598, "credit_id": "54d29d23c3a3686ab9000531", "cast_id": 39, "profile_path": "/d23GNIBEg3Mbb3OrZsTiJviKSxD.jpg", "order": 20}, {"name": "Tom Barnett", "character": "Irish Gun Dealer", "id": 1224674, "credit_id": "54d29e769251413fc70005d3", "cast_id": 40, "profile_path": "/wYaR2hgl9mgOvgygR59c6WxqjCl.jpg", "order": 21}, {"name": "Bob Rubin", "character": "Gorgeous George", "id": 193939, "credit_id": "54d2a1bdc3a3686ab60009d7", "cast_id": 41, "profile_path": "/8Gk1fofqQQSYDb2paJUEE6GTrhf.jpg", "order": 22}, {"name": "Mairtin O'Carrigan", "character": "Father Sibeal", "id": 1045822, "credit_id": "54d2a36c9251413fc40004cb", "cast_id": 42, "profile_path": "/fEfZPewAN2ZfvPCh1x7j6KtXKzV.jpg", "order": 23}, {"name": "Sweeney MacArthur", "character": "Jacob McManus", "id": 1423212, "credit_id": "54d2a4bdc3a3686abc0004b3", "cast_id": 43, "profile_path": "/6oY0Doi1ipJzREgthnDZ3zMD4qv.jpg", "order": 24}, {"name": "Aaron Berg", "character": "Jo Jo Rhama", "id": 54200, "credit_id": "54d2a63e9251413fc1000549", "cast_id": 44, "profile_path": "/iGvsSJpPXrDxH6rvLIBNtCzDHwy.jpg", "order": 25}, {"name": "Joris Jarsky", "character": "Lloyd", "id": 76973, "credit_id": "54d2a6bb9251413fc40004ff", "cast_id": 45, "profile_path": "/mtzNrX8Z0WYbtot82o4gM3FDqYa.jpg", "order": 26}, {"name": "Zachary Bennett", "character": "Roy", "id": 5918, "credit_id": "54d2a7749251413fc1000564", "cast_id": 46, "profile_path": "/iI6iexASIXzF9OQeX0QxYoP1kkB.jpg", "order": 27}, {"name": "Erika Bruun-Andersen", "character": "Massage Therapist", "id": 1042709, "credit_id": "54d2a924c3a3686ac8000474", "cast_id": 47, "profile_path": "/n8kmltFIkeyaUoIEl3A5UwT5Upg.jpg", "order": 28}, {"name": "Matthew Chaffee", "character": "Officer Chaffey", "id": 1287890, "credit_id": "54d2aac2c3a3686ac8000488", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Carlo Berardinucci", "character": "50's Mafioso", "id": 1423219, "credit_id": "54d2abe49251413fc10005c0", "cast_id": 49, "profile_path": "/66KxpkTKNQlG313Sspg2HFV6Xe8.jpg", "order": 30}, {"name": "Joe Parro", "character": "50's Mafioso", "id": 1423376, "credit_id": "54d33e2f9251413fca00289f", "cast_id": 50, "profile_path": null, "order": 31}, {"name": "Joseph Di Mambro", "character": "50's Thug", "id": 180871, "credit_id": "54d3414d92514109ba002667", "cast_id": 51, "profile_path": "/12yf1ZPBxHazIky2CPRuzU8IOxm.jpg", "order": 32}, {"name": "Philip Bucceri", "character": "50's Thug", "id": 1423386, "credit_id": "54d34216c3a3686ac8002941", "cast_id": 52, "profile_path": "/AlRvMieYcPOvOFUu2mbaxbhzkP7.jpg", "order": 33}, {"name": "Tony Munch", "character": "50's Thug", "id": 5927, "credit_id": "54d344da9251413fd6003096", "cast_id": 53, "profile_path": "/1VaMaAImwDWAjzKbrn8T1prnOdf.jpg", "order": 34}, {"name": "Matthew G. Taylor", "character": "Giant", "id": 59198, "credit_id": "54d3467892514109ba00275b", "cast_id": 54, "profile_path": "/il8bIgN6sANpmMSohJGvpNbeN8A.jpg", "order": 35}, {"name": "Paul De La Rosa", "character": "Cab Driver", "id": 1423391, "credit_id": "54d347479251413fc10030a3", "cast_id": 55, "profile_path": null, "order": 36}, {"name": "Paulino Nunes", "character": "Capo", "id": 1233146, "credit_id": "54d34825c3a3686ac2002998", "cast_id": 56, "profile_path": "/ixxEYcNGo0UyBUQdj3YsZ85OTTV.jpg", "order": 37}, {"name": "A. Frank Ruffo", "character": "Capo", "id": 1423398, "credit_id": "54d349849251413fcd003068", "cast_id": 57, "profile_path": "/ytM7LXVQMpbG4aZw7ThiTCno9cN.jpg", "order": 38}, {"name": "Stefano DiMatteo", "character": "Capo", "id": 224309, "credit_id": "54d356739251413fd30031ce", "cast_id": 58, "profile_path": "/7kuOp3Yqm1ADFqQR0ZNXDjisoCA.jpg", "order": 39}, {"name": "Marco Bianco", "character": "Capo", "id": 8356, "credit_id": "54d358999251410963002b5b", "cast_id": 59, "profile_path": "/sm9ZVJnC5m1z6GZ8DLEyxGQ1OGy.jpg", "order": 40}, {"name": "Paul Rapovski", "character": "Capo", "id": 28242, "credit_id": "54d35bfcc3a3686ab90037b5", "cast_id": 60, "profile_path": "/1hjxQcz3Fr1vz1FkTESAN2j7kC0.jpg", "order": 41}, {"name": "Santino Buda", "character": "Capo", "id": 1396708, "credit_id": "54d35e0e9251413fca003326", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Jeremy Wright", "character": "Dock Worker", "id": 1244111, "credit_id": "54d35eac9251413fc400328a", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "Darryl Flatman", "character": "G-Man", "id": 1423450, "credit_id": "54d35fe19251410963002c51", "cast_id": 63, "profile_path": "/fU9pJXqcVTKwiZwYqt67ShMGN3q.jpg", "order": 44}, {"name": "Darryl Pring", "character": "Hot Dog Vendor", "id": 1423451, "credit_id": "54d361a79251413fc10034da", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Rolando Alvarez Giacoman", "character": "Mexican Seaman", "id": 1423453, "credit_id": "54d3669dc3a3686ab9003903", "cast_id": 65, "profile_path": "/6Mrqk280ZALRpGeUctzpfEUyE3X.jpg", "order": 46}, {"name": "Brad Davis", "character": "North Side Bruglione", "id": 1423454, "credit_id": "54d368a09251413fcd0034d3", "cast_id": 66, "profile_path": "/30tMJEaUfos586IIGCdg9vVVASm.jpg", "order": 47}, {"name": "Ermes Blarasin", "character": "North Side Bruglione", "id": 1423458, "credit_id": "54d36c2b9251413fd3003482", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Flint Eagle", "character": "North Side Bruglione", "id": 216224, "credit_id": "54d36dd4c3a3686ab90039f4", "cast_id": 68, "profile_path": "/flPFEezO4VPaZuRyHF99S4Jc8Co.jpg", "order": 49}, {"name": "Brian Frank", "character": "North Side Bruglione", "id": 100464, "credit_id": "54d36f0dc3a3686ab6003f04", "cast_id": 69, "profile_path": null, "order": 50}, {"name": "Steve 'Shack' Shackleton", "character": "North Side Bruglione", "id": 1423459, "credit_id": "54d36ff5c3a3686ac8002f3d", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Brendan Wall", "character": "North Side Bruglione", "id": 59602, "credit_id": "54d371f8c3a3686ac2002f1d", "cast_id": 71, "profile_path": "/h2csRawwCKv7AyRbCNOiauIfDqd.jpg", "order": 52}, {"name": "Shamus Fynes", "character": "Police Officer", "id": 1423460, "credit_id": "54d372919251413fca0035a5", "cast_id": 72, "profile_path": "/4csc1l4VYczTCW7qaLth809tsJz.jpg", "order": 53}, {"name": "Louis Di Bianco", "character": "Patronazzi", "id": 1225378, "credit_id": "54d3781c9251413fc40035ba", "cast_id": 73, "profile_path": "/gaxG4eAg4nZ54fXNpVSTGoHidOQ.jpg", "order": 54}, {"name": "Louis Di Bianco", "character": "Pedestrian", "id": 1225378, "credit_id": "54d379ae9251413fca0036b4", "cast_id": 74, "profile_path": "/gaxG4eAg4nZ54fXNpVSTGoHidOQ.jpg", "order": 55}, {"name": "George Nickolas K.", "character": "Pedestrian", "id": 1423473, "credit_id": "54d37a279251413fcd0036fc", "cast_id": 75, "profile_path": "/3aOl9rU1q9bfsU0XTRMhugd7hKK.jpg", "order": 56}, {"name": "Howard Hoover", "character": "Reporter #1", "id": 1239425, "credit_id": "54d37c209251410963002fdd", "cast_id": 76, "profile_path": "/A0AWlSRvgJ7Kq64nIMeFi551Ij.jpg", "order": 57}, {"name": "Joey Amorosino", "character": "Reporter #2", "id": 1423474, "credit_id": "54d37d2ec3a368616e003063", "cast_id": 77, "profile_path": "/4mzfCpH4lhHXM3ZEFIUU3fl96m1.jpg", "order": 58}, {"name": "Mark Stables", "character": "Prison Guard", "id": 1423475, "credit_id": "54d37e4ac3a3686ab9003c8c", "cast_id": 78, "profile_path": null, "order": 59}, {"name": "Jerry Azzopardi", "character": "FBI Agent", "id": 1423476, "credit_id": "54d37ee1c3a3686ab9003cb5", "cast_id": 79, "profile_path": null, "order": 60}, {"name": "Brendan Carmody", "character": "Thug in the Woods", "id": 1423477, "credit_id": "54d37f7292514109ba002f5b", "cast_id": 80, "profile_path": null, "order": 61}, {"name": "Scott Savitz", "character": "Street Interviewee", "id": 1423478, "credit_id": "54d37ff19251413fc40036be", "cast_id": 81, "profile_path": null, "order": 62}, {"name": "Paul Joyce", "character": "Street Interviewee", "id": 1423479, "credit_id": "54d3807bc3a3686abc0038b9", "cast_id": 82, "profile_path": null, "order": 63}, {"name": "John Herman", "character": "Street Interviewee", "id": 1423480, "credit_id": "54d380f29251413fc10038ec", "cast_id": 83, "profile_path": null, "order": 64}, {"name": "Kara Apostolica", "character": "Street Interviewee", "id": 1423481, "credit_id": "54d3813bc3a3686abf0039b1", "cast_id": 84, "profile_path": null, "order": 65}, {"name": "Kimberly Tuscano", "character": "Street Interviewee", "id": 1423482, "credit_id": "54d38197c3a3686ab9003d0a", "cast_id": 85, "profile_path": null, "order": 66}], "directors": [{"name": "Troy Duffy", "department": "Directing", "job": "Director", "credit_id": "52fe4450c3a368484e01c38d", "profile_path": "/2Rsz5SXZruHG5LqswvEeD62pXLl.jpg", "id": 54795}], "vote_average": 6.0, "runtime": 118}, "22824": {"poster_path": "/wrCL8WQdyYR7wbmAqXyJZ1xK0WK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42333295, "overview": "A thriller involving an ongoing unsolved mystery in Alaska, where one town has seen an extraordinary number of unexplained disappearances during the past 40 years and there are accusations of a federal cover up.", "video": false, "id": 22824, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Fourth Kind", "tagline": "There are four kinds of alien encounters. The fourth kind is abduction.", "vote_count": 122, "homepage": "http://www.thefourthkind.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1220198", "adult": false, "backdrop_path": "/zPGo5CVwkiLqMyDpR3hcrbLv17M.jpg", "production_companies": [{"name": "Dead Crow Productions", "id": 26082}, {"name": "Universal Pictures", "id": 33}, {"name": "Gold Circle Films", "id": 12026}, {"name": "Chambara Pictures", "id": 12234}, {"name": "Focus Films", "id": 49799}, {"name": "Saga Film", "id": 859}], "release_date": "2009-11-06", "popularity": 0.383625730256691, "original_title": "The Fourth Kind", "budget": 10000000, "cast": [{"name": "Milla Jovovich", "character": "Abbey", "id": 63, "credit_id": "52fe4451c3a368484e01c4f9", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Will Patton", "character": "Sheriff August", "id": 883, "credit_id": "52fe4451c3a368484e01c503", "cast_id": 3, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 1}, {"name": "Hakeem Kae-Kazim", "character": "Awolowa Odusami", "id": 2603, "credit_id": "52fe4451c3a368484e01c507", "cast_id": 4, "profile_path": "/cYHDYQbnvju1g8XIAnvwRr0bWSB.jpg", "order": 2}, {"name": "Corey Johnson", "character": "Tommy Fisher", "id": 17199, "credit_id": "52fe4451c3a368484e01c50b", "cast_id": 5, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 3}, {"name": "Enzo Cilenti", "character": "Scott Stracinsky", "id": 91494, "credit_id": "52fe4451c3a368484e01c50f", "cast_id": 6, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 4}, {"name": "Elias Koteas", "character": "Abel Campos", "id": 13550, "credit_id": "52fe4451c3a368484e01c513", "cast_id": 7, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 5}, {"name": "Eric Loren", "character": "Deputy Ryan", "id": 113235, "credit_id": "52fe4451c3a368484e01c517", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Mia McKenna-Bruce", "character": "Ashley Tyler", "id": 113236, "credit_id": "52fe4451c3a368484e01c51b", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Rapha\u00ebl Coleman", "character": "Ronnie Tyler", "id": 89827, "credit_id": "52fe4451c3a368484e01c51f", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Daphne Alexander", "character": "Theresa", "id": 84068, "credit_id": "52fe4451c3a368484e01c523", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Alisha Seaton", "character": "Cindy Stracinski", "id": 113237, "credit_id": "52fe4451c3a368484e01c527", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Tyne Rafaeli", "character": "Sarah Fisher", "id": 113238, "credit_id": "52fe4451c3a368484e01c52b", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Pavel Stefanov", "character": "Timothy Fisher", "id": 113239, "credit_id": "52fe4451c3a368484e01c52f", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Kiera McMaster", "character": "Joe Fisher", "id": 113240, "credit_id": "52fe4451c3a368484e01c533", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Sara Houghton", "character": "Jessica", "id": 113241, "credit_id": "52fe4451c3a368484e01c537", "cast_id": 16, "profile_path": null, "order": 14}], "directors": [{"name": "Olatunde Osunsanmi", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a368484e01c4ff", "profile_path": null, "id": 62367}], "vote_average": 6.0, "runtime": 98}, "22825": {"poster_path": "/1zinhNzY0okQVD1aZBZyrLffugu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33333531, "overview": "Norma and Arthur Lewis, a suburban couple with a young child, receive a simple wooden box as a gift, which bears fatal and irrevocable consequences. A mysterious stranger delivers the message that the box promises to bestow upon its owner $1 million with the press of a button. However pressing this button will simultaneously cause the death of another human being somewhere in the world; someone they don't know. With just 24 hours to have the box in their possession, Norma and Arthur find themselves in the cross-hairs of a startling moral dilemma and must face the true nature of their humanity.", "video": false, "id": 22825, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Box", "tagline": "All you have to do is push the button.", "vote_count": 130, "homepage": "http://thebox-movie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0362478", "adult": false, "backdrop_path": "/mo3Uu6km5pV0iHPRuHjL57RwAvg.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Radar Pictures", "id": 14718}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Darko Entertainment", "id": 12622}, {"name": "Lin Pictures", "id": 2723}], "release_date": "2009-09-17", "popularity": 0.959514762954033, "original_title": "The Box", "budget": 16000000, "cast": [{"name": "Cameron Diaz", "character": "Norma Lewis", "id": 6941, "credit_id": "52fe4451c3a368484e01c56d", "cast_id": 2, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 0}, {"name": "James Marsden", "character": "Arthur Lewis", "id": 11006, "credit_id": "52fe4451c3a368484e01c571", "cast_id": 3, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Frank Langella", "character": "Arlington Steward", "id": 8924, "credit_id": "52fe4451c3a368484e01c575", "cast_id": 4, "profile_path": "/3Eg7dlQQKrjIW2Olc420A4mU6X2.jpg", "order": 2}, {"name": "Michael Zegen", "character": "Garcin", "id": 80661, "credit_id": "52fe4451c3a368484e01c579", "cast_id": 5, "profile_path": "/cTe8u7HNzkQvuaY4spCU3KxKKdl.jpg", "order": 3}, {"name": "James Rebhorn", "character": "Norm Cahill", "id": 8986, "credit_id": "52fe4451c3a368484e01c589", "cast_id": 8, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 4}, {"name": "Holmes Osborne", "character": "Dick Burns", "id": 1578, "credit_id": "52fe4451c3a368484e01c58d", "cast_id": 9, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 5}, {"name": "Gillian Jacobs", "character": "Dana", "id": 94098, "credit_id": "52fe4451c3a368484e01c591", "cast_id": 10, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 6}, {"name": "Celia Weston", "character": "Lana Burns", "id": 1989, "credit_id": "52fe4451c3a368484e01c595", "cast_id": 11, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "Lisa K. Wyatt", "character": "Rhonda Martin", "id": 39127, "credit_id": "52fe4451c3a368484e01c599", "cast_id": 12, "profile_path": "/nuOyrbXXYPuu5IUhoIUVmkrpxQy.jpg", "order": 8}, {"name": "Michele Durrett", "character": "Rebecca Matheson", "id": 997207, "credit_id": "52fe4451c3a368484e01c59d", "cast_id": 13, "profile_path": "/8O8v5LWp1cCLjN88BcjhR2qObPX.jpg", "order": 9}, {"name": "Allyssa Brooke", "character": "Suzanne Weller", "id": 1263931, "credit_id": "52fe4451c3a368484e01c5a1", "cast_id": 14, "profile_path": "/yCQay1LQuECduAv2FyCShUZAU6d.jpg", "order": 10}, {"name": "Cheryl McMahon", "character": "Female 911 Operator", "id": 1263937, "credit_id": "52fe4451c3a368484e01c5a5", "cast_id": 15, "profile_path": "/bn3Q9sPp43MFbqwtZsNxNR4oEdF.jpg", "order": 11}, {"name": "Jenna Lamia", "character": "Diane Carnes", "id": 155595, "credit_id": "52fe4451c3a368484e01c5ad", "cast_id": 17, "profile_path": "/jUOQXfJIxeE2Ug9PXpX9dFYpR58.jpg", "order": 13}, {"name": "Jodie Brunelle", "character": "911 Operator", "id": 1264229, "credit_id": "52fe4451c3a368484e01c5b1", "cast_id": 18, "profile_path": "/693xPmSE5z9E5LUC45GurwpgGjl.jpg", "order": 14}, {"name": "Evelina Turen", "character": "Deborah Burns", "id": 1266054, "credit_id": "53f80dc4c3a368734c000843", "cast_id": 25, "profile_path": "/myOJDfPJuKz27qqKqzLDOHzHz1v.jpg", "order": 15}], "directors": [{"name": "Richard Kelly", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a368484e01c569", "profile_path": "/nHmIALlzcsSu7Uuc4kO34mFb7k2.jpg", "id": 1577}], "vote_average": 5.2, "runtime": 115}, "39210": {"poster_path": "/5K9XPLSIYDPz3zfyaLnxeIjiIFO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A hard-living Hollywood actor re-examines his life after his 11-year-old daughter surprises him with a visit.", "video": false, "id": 39210, "genres": [{"id": 18, "name": "Drama"}], "title": "Somewhere", "tagline": "", "vote_count": 55, "homepage": "http://www.scsomewhere.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1421051", "adult": false, "backdrop_path": "/7uExmIbSz5b5MfsuIqw2rgEOTZC.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Focus Features", "id": 10146}, {"name": "Path\u00e9!", "id": 35461}, {"name": "Tohokushinsha", "id": 51850}], "release_date": "2010-09-03", "popularity": 0.327784470555625, "original_title": "Somewhere", "budget": 8000000, "cast": [{"name": "Stephen Dorff", "character": "Johnny Marco", "id": 10822, "credit_id": "52fe47039251416c91067481", "cast_id": 5, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 0}, {"name": "Chris Pontius", "character": "Sammy", "id": 56586, "credit_id": "52fe47039251416c91067485", "cast_id": 6, "profile_path": "/xTgZUtr8Lw7iKVhAZXW87Nk5IuJ.jpg", "order": 1}, {"name": "Erin Wasson", "character": "Party Girl #1", "id": 147721, "credit_id": "52fe47039251416c91067489", "cast_id": 7, "profile_path": "/6SiaA7RtdRVIPlb6BTBNRR6KH0q.jpg", "order": 2}, {"name": "Alexandra Williams", "character": "Party Girl #2", "id": 147722, "credit_id": "52fe47039251416c9106748d", "cast_id": 8, "profile_path": null, "order": 3}, {"name": "Nathalie Fay", "character": "Party Girl #3", "id": 142375, "credit_id": "52fe47039251416c91067491", "cast_id": 9, "profile_path": "/iPxcnlMUgfT2bKmVOX4ZtM3WH1u.jpg", "order": 4}, {"name": "Kristina Shannon", "character": "Bambi", "id": 147723, "credit_id": "52fe47039251416c91067495", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Karissa Shannon", "character": "Cindy", "id": 147724, "credit_id": "52fe47039251416c91067499", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "John Prudhont", "character": "Chateau Patio Waiter", "id": 147725, "credit_id": "52fe47039251416c9106749d", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Ruby Corley", "character": "Patio Girl", "id": 147726, "credit_id": "52fe47039251416c910674a1", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Angela Lindvall", "character": "Blonde in Mercedes", "id": 42158, "credit_id": "52fe47039251416c910674a5", "cast_id": 14, "profile_path": "/xp0U715ol7HUjBIgvaeYI93f4dm.jpg", "order": 9}, {"name": "Maryna Linchuk", "character": "Vampire Model", "id": 147727, "credit_id": "52fe47039251416c910674a9", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Meghan Collision", "character": "Vampire Model", "id": 147728, "credit_id": "52fe47039251416c910674ad", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Jessica Miller", "character": "Vampire Model", "id": 147729, "credit_id": "52fe47039251416c910674b1", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Elle Fanning", "character": "Cleo", "id": 18050, "credit_id": "52fe47039251416c910674b5", "cast_id": 18, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 13}, {"name": "Lala Sloatman", "character": "Layla", "id": 22072, "credit_id": "52fe47039251416c910674b9", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Eliza Coupe", "character": "Hotel Room Neighbor", "id": 210050, "credit_id": "52fe47039251416c910674c3", "cast_id": 21, "profile_path": "/nb6JlI2OxCDUwksjZ4PjqIHu3IN.jpg", "order": 15}, {"name": "Ellie Kemper", "character": "Claire", "id": 475512, "credit_id": "52fe47039251416c910674c7", "cast_id": 22, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 16}, {"name": "Michelle Monaghan", "character": "Rebecca", "id": 11705, "credit_id": "52fe47039251416c910674cb", "cast_id": 23, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 17}, {"name": "Laura Ramsey", "character": "Naked Blonde with Sailor Cap", "id": 51975, "credit_id": "52fe47039251416c910674cf", "cast_id": 24, "profile_path": "/4dRnDQ7FZu54ZtLXzWARGWvtStR.jpg", "order": 18}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe47039251416c9106747d", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 6.1, "runtime": 98}, "22832": {"poster_path": "/3A3zgkcEOj1z0qflSdvZhydCVBT.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60462347, "overview": "Ninja Assassin follows Raizo (Rain), one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.", "video": false, "id": 22832, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Ninja Assassin", "tagline": "Fear not the weapon, but the hand that wields it.", "vote_count": 120, "homepage": "http://ninja-assassin-movie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1186367", "adult": false, "backdrop_path": "/kmKZVgUPqf9v4c0UitSZlDM3RPv.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2009-09-29", "popularity": 0.661378254629299, "original_title": "Ninja Assassin", "budget": 40000000, "cast": [{"name": "Rain", "character": "Raizo", "id": 112013, "credit_id": "52fe4451c3a368484e01c6b7", "cast_id": 5, "profile_path": "/7oLrI71PNp9iGwJkgr2Bq34t2Yt.jpg", "order": 0}, {"name": "Naomie Harris", "character": "Mika Coretti", "id": 2038, "credit_id": "52fe4451c3a368484e01c6ab", "cast_id": 2, "profile_path": "/3Y55D8wZgg4CkKadhXvSh91Q121.jpg", "order": 1}, {"name": "Sung Kang", "character": "Hollywood", "id": 61697, "credit_id": "52fe4451c3a368484e01c6af", "cast_id": 3, "profile_path": "/fqt53KEfHWsRDcbV2YAY2lKlKrM.jpg", "order": 2}, {"name": "Randall Duk Kim", "character": "Tattoo Master", "id": 9462, "credit_id": "52fe4451c3a368484e01c6b3", "cast_id": 4, "profile_path": "/9AWMELz25S915kaUr5OzHJN4Xtm.jpg", "order": 3}, {"name": "Rick Yune", "character": "Takeshi", "id": 10883, "credit_id": "52fe4451c3a368484e01c6c1", "cast_id": 7, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 4}, {"name": "Yuki Iwamoto", "character": "Yakuza Couch", "id": 53174, "credit_id": "52fe4451c3a368484e01c6c5", "cast_id": 8, "profile_path": "/bUHh5Y6jvJdnMEIb8UmIh3V7hvz.jpg", "order": 5}, {"name": "Sho Kosugi", "character": "Ozunu", "id": 99846, "credit_id": "52fe4451c3a368484e01c6c9", "cast_id": 9, "profile_path": "/yE5fEGNVm7YSWaKXccA3WUB6tex.jpg", "order": 6}, {"name": "Ben Miles", "character": "Maslow", "id": 11280, "credit_id": "52fe4452c3a368484e01c6cd", "cast_id": 10, "profile_path": "/erYrlzzg8F85SqEqG1cRZ9Ftjkh.jpg", "order": 7}, {"name": "Linh Dan Pham", "character": "Pretty Ninja", "id": 19115, "credit_id": "52fe4452c3a368484e01c6d1", "cast_id": 11, "profile_path": "/pkSbKTJupgoxQS5o8ErvYIEli0x.jpg", "order": 8}, {"name": "Lee Joon", "character": "Teenage Raizo", "id": 1257963, "credit_id": "54f53c3ec3a368350000098e", "cast_id": 13, "profile_path": "/gXprVtHGQeDhLQIO0GP88gX8wkv.jpg", "order": 9}, {"name": "Jonathan Chan-Pensley", "character": "Yakuza Henchman", "id": 1086861, "credit_id": "54f53d0c9251412bb60009ad", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Ill-Young Kim", "character": "Yakuza Mohawk", "id": 46021, "credit_id": "54f53d68c3a36835000009b2", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Fang Yu", "character": "Laundromat Manager", "id": 1157287, "credit_id": "54f53e919251412ba20009fb", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Adriana Altaras", "character": "Landlady", "id": 46992, "credit_id": "54f53edec3a36834f3000894", "cast_id": 17, "profile_path": "/vxgyEQAE8OywnXOm1TAEjIZRRYv.jpg", "order": 13}, {"name": "Sh\u00f4 Kosugi", "character": "Ozunu", "id": 1434484, "credit_id": "54f53f049251412bb10009b6", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Kylie Goldstein", "character": "Young Kiriko", "id": 979342, "credit_id": "54f54042c3a36835000009fb", "cast_id": 19, "profile_path": "/wxtm2b6YrqCmlfC516peKZV8WOw.jpg", "order": 15}, {"name": "Sungwoong Yoon", "character": "Young Raizo", "id": 1434485, "credit_id": "54f540cbc3a36834f7000952", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Eleonore Weisgerber", "character": "Mrs. Sabatin", "id": 38621, "credit_id": "54f541069251412bb30009f0", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "Wladimir Tarasjanz", "character": "Aleksei Sabatin", "id": 17060, "credit_id": "54f54144c3a3683500000a15", "cast_id": 22, "profile_path": null, "order": 18}, {"name": "Kai Fung Rieck", "character": "Teenage Takeshi", "id": 1434486, "credit_id": "54f5417d9251412bb60009fb", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Anna Sawai", "character": "Teenage Kiriko", "id": 1434487, "credit_id": "54f541a39251412ba2000a37", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Thorston Manderlay", "character": "Agent Zabranski", "id": 1434488, "credit_id": "54f541d29251412bb6000a09", "cast_id": 25, "profile_path": null, "order": 21}, {"name": "Richard van Weyden", "character": "Battuta", "id": 1186438, "credit_id": "54f5421b9251412bb6000a13", "cast_id": 26, "profile_path": "/pa6szaD0VrR2lI13Kpyfbl1U81i.jpg", "order": 22}, {"name": "Mina Ghousi", "character": "Kid with Envelope", "id": 1434489, "credit_id": "54f542439251412ba2000a4c", "cast_id": 27, "profile_path": null, "order": 23}, {"name": "Hans Hohlbein", "character": "Mika's Neighbor", "id": 147637, "credit_id": "54f5428e9251412ba40009e5", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Stephen Marcus", "character": "Kingpin", "id": 994, "credit_id": "54f542dfc3a36834f10009b2", "cast_id": 29, "profile_path": "/hG6deNAV6EWvhJ1EFEh4XjXzfNK.jpg", "order": 25}, {"name": "Nhi Ngoc Nguyen-Hermann", "character": "Girl on Roof", "id": 1434490, "credit_id": "54f5430dc3a36834ee000bd8", "cast_id": 30, "profile_path": null, "order": 26}, {"name": "Guido F\u00f6hrwei\u00dfer", "character": "Lead Europol Agent", "id": 104246, "credit_id": "54f5436ac3a36834f30008df", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Tim Williams", "character": "Europol Cell Guard", "id": 141778, "credit_id": "54f543bec3a3683500000a4f", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "David Leitch", "character": "Europol Door Guard", "id": 40684, "credit_id": "54f5440cc3a36834f10009cb", "cast_id": 33, "profile_path": "/eVSgvAIsP6mwuVbbhVb4HkVvmsu.jpg", "order": 29}, {"name": "Wolfgang Stegemann", "character": "Europol Pointman", "id": 40738, "credit_id": "54f54440c3a36834f30008f7", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Steffen Groth", "character": "Europol Guard", "id": 6266, "credit_id": "54f5dc969251412ba4002595", "cast_id": 35, "profile_path": "/qM8tgZrfxP28PMbhZX7gl0mwf2m.jpg", "order": 31}, {"name": "Jens Neuhaus", "character": "Europol Guard", "id": 22705, "credit_id": "54f5dcd79251415ad5000003", "cast_id": 36, "profile_path": null, "order": 32}, {"name": "Patriq Pinheiro", "character": "Maslow's Aide", "id": 96226, "credit_id": "54f5dd0fc3a3686253000010", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Matthias Schendel", "character": "Task Force Agent", "id": 40729, "credit_id": "54f5dd439251415ad9000014", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Johannes Ahn", "character": "Medic", "id": 1327310, "credit_id": "54f5de3cc3a368624900001a", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Hoang Dang-Vu", "character": "(uncredited)", "id": 998518, "credit_id": "54f5de73c3a368624d000035", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Paul Leonard", "character": "Jamison (uncredited)", "id": 1278518, "credit_id": "54f5deb19251415ade00002e", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Alexander Yassin", "character": "Indonesian Shopman - Istanbul (uncredited)", "id": 147642, "credit_id": "54f5defec3a368625000003a", "cast_id": 42, "profile_path": null, "order": 38}], "directors": [{"name": "James McTeigue", "department": "Directing", "job": "Director", "credit_id": "52fe4451c3a368484e01c6a7", "profile_path": "/amtLeEkP6UoB41r48vX8mew9MHJ.jpg", "id": 11266}], "vote_average": 6.2, "runtime": 99}, "50780": {"poster_path": "/yE0GIDaivwfSgYAXpVLvq6DjngQ.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 970816, "overview": "Suffering from a severe case of depression, toy company CEO Walter Black (Mel Gibson) begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter (Anton Yelchin) pushes for his parents to get a divorce. Jodie Foster directs and co-stars as Walter's wife in this dark comedy that also features Riley Thomas Stewart and Jennifer Lawrence.", "video": false, "id": 50780, "genres": [{"id": 18, "name": "Drama"}], "title": "The Beaver", "tagline": "He's here to save Walter's life.", "vote_count": 72, "homepage": "http://www.thebeaver-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1321860", "adult": false, "backdrop_path": "/cbEDtWCFs1wJ5w9waTC7fm1obAj.jpg", "production_companies": [], "release_date": "2011-05-05", "popularity": 0.484531508600462, "original_title": "The Beaver", "budget": 21000000, "cast": [{"name": "Jodie Foster", "character": "Meredith Black", "id": 1038, "credit_id": "52fe47d6c3a36847f814aea9", "cast_id": 6, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 0}, {"name": "Mel Gibson", "character": "Walter Black", "id": 2461, "credit_id": "52fe47d6c3a36847f814aead", "cast_id": 7, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 1}, {"name": "Jennifer Lawrence", "character": "Norah", "id": 72129, "credit_id": "52fe47d6c3a36847f814aeb1", "cast_id": 8, "profile_path": "/yz0s4kVEC7Wc4iqi2zK7Gmfx9h9.jpg", "order": 2}, {"name": "Anton Yelchin", "character": "Porter Black", "id": 21028, "credit_id": "52fe47d6c3a36847f814aeb5", "cast_id": 9, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 3}], "directors": [{"name": "Jodie Foster", "department": "Directing", "job": "Director", "credit_id": "52fe47d6c3a36847f814aea5", "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "id": 1038}], "vote_average": 5.9, "runtime": 91}, "104755": {"poster_path": "/1McyfXZO1F0zfrpbqqz3DvvlZ73.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The City of Salem, Massachusetts is visited by a coven of ancient witches.", "video": false, "id": 104755, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Lords of Salem", "tagline": "We've been waiting... we've always been waiting", "vote_count": 52, "homepage": "http://robzombie.com/movies/the-lords-of-salem/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1731697", "adult": false, "backdrop_path": "/kCPm2YcsQWIlv6iGm0063FGk27n.jpg", "production_companies": [{"name": "Alliance Films", "id": 2514}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2013-04-19", "popularity": 0.426662361224303, "original_title": "The Lords of Salem", "budget": 1500000, "cast": [{"name": "Sheri Moon Zombie", "character": "Heidi Hawthrone", "id": 21319, "credit_id": "52fe4a3bc3a36847f81c2a17", "cast_id": 4, "profile_path": "/ecPGCsrhqwR6clWmtqtlS6ZFdY3.jpg", "order": 0}, {"name": "Bruce Davison", "character": "Francis Matthias", "id": 52374, "credit_id": "52fe4a3bc3a36847f81c2a4f", "cast_id": 19, "profile_path": "/6IRITUDhQ3b3ykUsdjiFUyiiO72.jpg", "order": 1}, {"name": "Jeff Daniel Phillips", "character": "Herman Whitey Salvador", "id": 59673, "credit_id": "52fe4a3bc3a36847f81c2a59", "cast_id": 21, "profile_path": "/yNH9BgFV4bl58xbhvwys1bGJCNF.jpg", "order": 2}, {"name": "Judy Geeson", "character": "Lacy Doyle", "id": 41234, "credit_id": "52fe4a3bc3a36847f81c2a7d", "cast_id": 30, "profile_path": "/fgx6sg9NC9eNxaYT3vAWaxt6r9z.jpg", "order": 3}, {"name": "Meg Foster", "character": "Margaret Morgan", "id": 41229, "credit_id": "52fe4a3bc3a36847f81c2a4b", "cast_id": 16, "profile_path": "/j4byQmH2KqFUhFDYKOQCsLnOA9P.jpg", "order": 4}, {"name": "Patricia Quinn", "character": "Megan", "id": 13475, "credit_id": "52fe4a3bc3a36847f81c2a79", "cast_id": 29, "profile_path": "/bfcnDApPbMGN9F2SIgFeFPgUe59.jpg", "order": 5}, {"name": "Ken Foree", "character": "Herman Jackson", "id": 15070, "credit_id": "52fe4a3bc3a36847f81c2a5d", "cast_id": 22, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 6}, {"name": "Dee Wallace", "character": "Sonny", "id": 62001, "credit_id": "52fe4a3bc3a36847f81c2a1b", "cast_id": 7, "profile_path": "/iEgXsPaNVK3ByosROC3zFu3gk7R.jpg", "order": 7}, {"name": "Mar\u00eda Conchita Alonso", "character": "Alice Matthias", "id": 2051, "credit_id": "52fe4a3bc3a36847f81c2a1f", "cast_id": 8, "profile_path": "/pP36Dg6BQlyw0qYERrlOvRvIeaQ.jpg", "order": 8}, {"name": "Sid Haig", "character": "Dean Magnus", "id": 5695, "credit_id": "52fe4a3bc3a36847f81c2a13", "cast_id": 3, "profile_path": "/gi3AjgRi6WySyzUFRjIiB6IYEZ4.jpg", "order": 9}, {"name": "Michael Berryman", "character": "Virgil Magnus", "id": 7073, "credit_id": "52fe4a3bc3a36847f81c2a23", "cast_id": 9, "profile_path": "/vXvztwbkFc0Pz8ty0Jlaomo8P10.jpg", "order": 10}, {"name": "Barbara Crampton", "character": "Virginia Cable", "id": 27995, "credit_id": "52fe4a3bc3a36847f81c2a61", "cast_id": 23, "profile_path": "/5bQhuSrBSMyXP70SNOFim1Pf8Ta.jpg", "order": 11}, {"name": "Andrew Prine", "character": "Reverend Jonathan Hawthrone", "id": 15668, "credit_id": "52fe4a3bc3a36847f81c2a65", "cast_id": 24, "profile_path": "/qPN6Y0r9TbA8e8ZUFQd1x1OhG5M.jpg", "order": 12}, {"name": "Michael Shamus Wiles", "character": "Jarrett Perkins", "id": 9291, "credit_id": "52fe4a3bc3a36847f81c2a69", "cast_id": 25, "profile_path": "/upfSW6BGze446iqsZRehzcToNm8.jpg", "order": 13}, {"name": "Torsten Voges", "character": "Count Gorgann", "id": 1238, "credit_id": "52fe4a3bc3a36847f81c2a6d", "cast_id": 26, "profile_path": "/qsqyjQCNuoQdRDF57Q9hzngIRci.jpg", "order": 14}, {"name": "Suzanne Voss", "character": "Elizabeth Jacobs", "id": 986143, "credit_id": "52fe4a3bc3a36847f81c2a71", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Ernest Lee Thomas", "character": "Chip Freakshow McDonald", "id": 75356, "credit_id": "52fe4a3bc3a36847f81c2a75", "cast_id": 28, "profile_path": "/vaovo1tJis3Td7BZjWfT0MgLYGm.jpg", "order": 16}, {"name": "Lisa Marie", "character": "Priscilla Reed", "id": 4452, "credit_id": "52fe4a3bc3a36847f81c2a81", "cast_id": 31, "profile_path": "/2mfDtN2r02eX2Sb317XGYX7nWsx.jpg", "order": 17}, {"name": "Richard Fancy", "character": "AJ Kennedy", "id": 65748, "credit_id": "52fe4a3cc3a36847f81c2a85", "cast_id": 32, "profile_path": "/gqMB9kzTff3X42jhG8doZIftzTe.jpg", "order": 18}, {"name": "Maria Olsen", "character": "Dream Sequence Woman (uncredited)", "id": 142402, "credit_id": "55143f439251412c520014ed", "cast_id": 38, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 19}], "directors": [{"name": "Rob Zombie", "department": "Directing", "job": "Director", "credit_id": "52fe4a3bc3a36847f81c2a0f", "profile_path": "/yolAZ3yukTNn6N7SPBDadHnz7SK.jpg", "id": 16848}], "vote_average": 4.7, "runtime": 101}, "112949": {"poster_path": "/q5u3anNtsMoCFi1uwK2UfWHkOFt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97594140, "overview": "A young woman with a mysterious past lands in Southport, North Carolina where her bond with a widower forces her to confront the dark secret that haunts her.", "video": false, "id": 112949, "genres": [{"id": 10749, "name": "Romance"}], "title": "Safe Haven", "tagline": "You know it when you find it", "vote_count": 295, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1702439", "adult": false, "backdrop_path": "/rxWM3Jnb4sCmmyALeSwK6RlyooP.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Temple Hill Productions", "id": 722}], "release_date": "2013-02-14", "popularity": 1.16265633234089, "original_title": "Safe Haven", "budget": 28000000, "cast": [{"name": "Julianne Hough", "character": "Katie Feldman", "id": 143240, "credit_id": "52fe4b24c3a36847f81f4be3", "cast_id": 9, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 0}, {"name": "Josh Duhamel", "character": "Alex Wheatley", "id": 19536, "credit_id": "52fe4b24c3a36847f81f4be7", "cast_id": 10, "profile_path": "/hi5OzlZAwf22xRRPLFbKnXNoZ9L.jpg", "order": 1}, {"name": "Cobie Smulders", "character": "Jo", "id": 71189, "credit_id": "52fe4b24c3a36847f81f4beb", "cast_id": 11, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 2}, {"name": "David Lyons", "character": "Kevin Tierney", "id": 76941, "credit_id": "52fe4b24c3a36847f81f4bef", "cast_id": 12, "profile_path": "/swz5FmdV35UpzwYJUbkUkJ2bvWM.jpg", "order": 3}, {"name": "Mike Pniewski", "character": "Lieutenant Robinson", "id": 65423, "credit_id": "52fe4b24c3a36847f81f4bf3", "cast_id": 13, "profile_path": "/6oJOSX84GXwuR9HA9RXTOeTeiKC.jpg", "order": 4}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4b24c3a36847f81f4bb5", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.5, "runtime": 115}, "22843": {"poster_path": "/odCtbDVJMxaqsTt4fIkM7UHZ8ta.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 36347110, "overview": "Under constant attack by monstrous creatures called Angels that seek to eradicate humankind, U.N. Special Agency NERV introduces two new EVA pilots to help defend the city of Tokyo-3: the mysterious Makinami Mari Illustrous and the intense Asuka Langley Shikinami. Meanwhile, Gendo Ikari and SEELE proceed with a secret project that involves both Rei and Shinji.", "video": false, "id": 22843, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Evangelion: 2.0 You Can (Not) Advance", "tagline": "In The War Between Heaven and Earth, Salvation is Machine", "vote_count": 54, "homepage": "http://www.evangelion.co.jp/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wTgffGYEuvYDc0oSOMdSZ254VMr.jpg", "id": 210303, "name": "Rebuild of Evangelion"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0860906", "adult": false, "backdrop_path": "/chD4psMHmbIpmFKKlgD5Yfh4eRn.jpg", "production_companies": [{"name": "Studio Khara", "id": 4145}], "release_date": "2009-06-26", "popularity": 0.561976396168697, "original_title": "Evangerion shin gekij\u00f4ban: Ha", "budget": 0, "cast": [{"name": "Megumi Ogata", "character": "Shinji Ikari", "id": 77927, "credit_id": "52fe4452c3a368484e01c779", "cast_id": 4, "profile_path": "/cPGrKRfVzfyhfoLlxGTGUd62bSp.jpg", "order": 0}, {"name": "Y\u016bko Miyamura", "character": "Asuka Langley Shikinami", "id": 83768, "credit_id": "52fe4452c3a368484e01c77d", "cast_id": 6, "profile_path": "/aXRz2l0YzDtiuJSTkKJPaeKdLNN.jpg", "order": 2}, {"name": "Kotono Mitsuishi", "character": "Misato Katsuragi", "id": 77931, "credit_id": "52fe4452c3a368484e01c781", "cast_id": 7, "profile_path": "/5yISpyXWjRlbfvPebO3iLc2s3tF.jpg", "order": 3}, {"name": "Maaya Sakamoto", "character": "Makinami Mari Illustrious", "id": 9711, "credit_id": "52fe4452c3a368484e01c785", "cast_id": 8, "profile_path": "/wEJDH3mzF4cLhUfNQKt8YfhpLjZ.jpg", "order": 4}, {"name": "Megumi Hayashibara", "character": "Rei Ayanami", "id": 40325, "credit_id": "52fe4452c3a368484e01c795", "cast_id": 12, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 5}], "directors": [{"name": "Masayuki", "department": "Directing", "job": "Director", "credit_id": "52fe4452c3a368484e01c76f", "profile_path": null, "id": 77926}, {"name": "Kazuya Tsurumaki", "department": "Directing", "job": "Director", "credit_id": "52fe4452c3a368484e01c775", "profile_path": null, "id": 77923}], "vote_average": 7.8, "runtime": 108}, "76170": {"poster_path": "/o1nFdxKfPE9EFP6lSweEn2mx1Oi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 415440673, "overview": "Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.", "video": false, "id": 76170, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "The Wolverine", "tagline": "When he's most vulnerable, he's most dangerous.", "vote_count": 2045, "homepage": "http://www.thewolverinemovie.com", "belongs_to_collection": {"backdrop_path": "/Abnosho2v3bcdvDww6T7Hfeczm1.jpg", "poster_path": "/eq2kBgmiagXQgo2S96L8DZ9ou0F.jpg", "id": 748, "name": "X-Men Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430132", "adult": false, "backdrop_path": "/oFyaTmJ5ZPPl16uB4Ry9pWKvtDc.jpg", "production_companies": [{"name": "Ingenious Media", "id": 290}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Donners' Company", "id": 431}, {"name": "Marvel Entertainment", "id": 7505}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Big Screen Productions", "id": 10893}, {"name": "TSG Entertainment", "id": 22213}], "release_date": "2013-07-25", "popularity": 0.632823235815675, "original_title": "The Wolverine", "budget": 120000000, "cast": [{"name": "Hugh Jackman", "character": "Logan / Wolverine", "id": 6968, "credit_id": "536e7d3dc3a368122600ce7b", "cast_id": 37, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Tao Okamoto", "character": "Mariko", "id": 1156024, "credit_id": "52fe492ac3a368484e11d99b", "cast_id": 13, "profile_path": "/ahbByaizp6xLkakmTWebPC57v06.jpg", "order": 1}, {"name": "Rila Fukushima", "character": "Yukio", "id": 1179243, "credit_id": "52fe492ac3a368484e11d9a3", "cast_id": 15, "profile_path": "/AsxUTMScQetJ1Iommki98w3rHPH.jpg", "order": 2}, {"name": "Hiroyuki Sanada", "character": "Shingen", "id": 9195, "credit_id": "52fe492ac3a368484e11d9f7", "cast_id": 32, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 3}, {"name": "Svetlana Khodchenkova", "character": "Viper", "id": 94064, "credit_id": "52fe492ac3a368484e11d9b7", "cast_id": 21, "profile_path": "/jiWZn9daZUVYudPBsuQNQQAg0lT.jpg", "order": 4}, {"name": "Brian Tee", "character": "Noburo Mori", "id": 116278, "credit_id": "52fe492ac3a368484e11d993", "cast_id": 9, "profile_path": "/rKo9U4Swi0t4IqUKOU0bhl5BuiZ.jpg", "order": 5}, {"name": "Hal Yamanouchi", "character": "Yashida", "id": 74540, "credit_id": "52fe492ac3a368484e11d99f", "cast_id": 14, "profile_path": "/rP1dLPz5Sn4nSAXTco4sKioEvQZ.jpg", "order": 6}, {"name": "Will Yun Lee", "character": "Harada", "id": 10884, "credit_id": "52fe492ac3a368484e11d997", "cast_id": 10, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 7}, {"name": "Ken Yamamura", "character": "Young Yashida", "id": 1155715, "credit_id": "52fe492ac3a368484e11d9fb", "cast_id": 33, "profile_path": "/jDMgbLU3lziydK9HMS5yvARSPCH.jpg", "order": 8}, {"name": "Famke Janssen", "character": "Jean Grey", "id": 10696, "credit_id": "52fe492ac3a368484e11d9b3", "cast_id": 20, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 9}, {"name": "Shinji Ikefuji", "character": "Pock-Face", "id": 1205489, "credit_id": "52fe492ac3a368484e11d9ff", "cast_id": 34, "profile_path": "/6m1scLGa91uDDYBftdEcEOuXrAm.jpg", "order": 10}, {"name": "Qyoko Kudo", "character": "Aya", "id": 582605, "credit_id": "52fe492ac3a368484e11da03", "cast_id": 35, "profile_path": "/e96dopF0sitsB8LuiOCxbPYauTO.jpg", "order": 11}, {"name": "Conrad Coleby", "character": "Red Beard", "id": 109750, "credit_id": "52fe492ac3a368484e11da07", "cast_id": 36, "profile_path": "/dcDED1SEbsATHAH3Kav6tUDOnu0.jpg", "order": 12}, {"name": "Taris Tyler", "character": "Bar Man (Red Beard's Friend)", "id": 1320015, "credit_id": "537571d3c3a3681f040006e1", "cast_id": 38, "profile_path": null, "order": 13}, {"name": "Sarah Naylor-Liddell", "character": "Yukon Bar Patron", "id": 1320017, "credit_id": "53757216c3a3681ee900079f", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Ian McKellen", "character": "Magneto", "id": 1327, "credit_id": "548eb96792514122ff005fdd", "cast_id": 40, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 15}, {"name": "Patrick Stewart", "character": "Professor Xavier", "id": 2387, "credit_id": "548eb982c3a3684ea100604e", "cast_id": 41, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 16}], "directors": [{"name": "James Mangold", "department": "Directing", "job": "Director", "credit_id": "52fe492ac3a368484e11d989", "profile_path": "/1gt0VmCyBHhQLKhaBDCEIwvRWe.jpg", "id": 366}], "vote_average": 6.4, "runtime": 126}, "87093": {"poster_path": "/z2tqzprHojhgEGYKQepjU28oQg6.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A drama centered on the awakening of the painter Margaret Keane, her phenomenal success in the 1950s, and the subsequent legal difficulties she had with her husband, who claimed credit for her works in the 1960s.", "video": false, "id": 87093, "genres": [{"id": 18, "name": "Drama"}], "title": "Big Eyes", "tagline": "She created it. He sold it. And they bought it.", "vote_count": 174, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1126590", "adult": false, "backdrop_path": "/urnGzQvP8fwWWGkn1k809KqIjbm.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Silverwood Films", "id": 2293}, {"name": "Electric City Entertainment", "id": 8600}, {"name": "Tim Burton Productions", "id": 8601}], "release_date": "2014-12-25", "popularity": 3.0597133072398, "original_title": "Big Eyes", "budget": 10000000, "cast": [{"name": "Amy Adams", "character": "Margaret Keane", "id": 9273, "credit_id": "52fe49b59251416c910b6237", "cast_id": 8, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Christoph Waltz", "character": "Walter Keane", "id": 27319, "credit_id": "52fe49b59251416c910b623b", "cast_id": 9, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 1}, {"name": "Krysten Ritter", "character": "DeeAnn", "id": 78080, "credit_id": "52fe49b59251416c910b623f", "cast_id": 10, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 2}, {"name": "Danny Huston", "character": "Dick Nolan", "id": 6413, "credit_id": "52fe49b59251416c910b6243", "cast_id": 11, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 3}, {"name": "Jason Schwartzman", "character": "Ruben", "id": 17881, "credit_id": "52fe49b59251416c910b6247", "cast_id": 12, "profile_path": "/lWwNtkL8aQtmj7ttCyEbhgqF0oD.jpg", "order": 4}, {"name": "Terence Stamp", "character": "John Canaday", "id": 28641, "credit_id": "52fe49b59251416c910b624b", "cast_id": 13, "profile_path": "/fyGkLjgVfyKIPBaMQs5Df3gMuOV.jpg", "order": 5}, {"name": "Jon Polito", "character": "Enrico Banducci", "id": 4253, "credit_id": "549d15069251413132005192", "cast_id": 24, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 6}, {"name": "Farryn VanHumbeck", "character": "Lily", "id": 1423419, "credit_id": "54d34fe79251413fca003145", "cast_id": 25, "profile_path": null, "order": 7}, {"name": "Emily Fonda", "character": "Sexy Girl", "id": 1411603, "credit_id": "54fb4e359251413aa0001ef8", "cast_id": 26, "profile_path": null, "order": 8}], "directors": [{"name": "Tim Burton", "department": "Directing", "job": "Director", "credit_id": "52fe49b59251416c910b6251", "profile_path": "/z64d13PXggAV5Q2oUqcP9q18qtg.jpg", "id": 510}], "vote_average": 6.6, "runtime": 105}, "6466": {"poster_path": "/smD9JEIKuvsllgjgrGTOzzbATeN.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114908830, "overview": "Evil dream-demon Freddy Krueger devises a plan to manipulate the unstoppable Jason Vorhees into hacking up the teenagers of Elm Street in an effort to make people remember the name Freddy Krueger, thus freeing him from limbo.", "video": false, "id": 6466, "genres": [{"id": 27, "name": "Horror"}], "title": "Freddy vs. Jason", "tagline": "Evil Will Battle Evil", "vote_count": 170, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zGggjeKm7X0CxA8A1ya8RWdcmYb.jpg", "poster_path": "/2BMuz18SvJjfYtY5gUntZGDDS9b.jpg", "id": 9735, "name": "Friday the 13th Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0329101", "adult": false, "backdrop_path": "/pHPi34ysBhhLVM9LVKwJ0nJPFqN.jpg", "production_companies": [{"name": "WTC Productions", "id": 50102}, {"name": "New Line Cinema", "id": 12}, {"name": "Cecchi Gori Group Tiger Cinematografica", "id": 371}, {"name": "Avery Pix", "id": 1565}, {"name": "Crystal Lake Entertainment", "id": 21783}], "release_date": "2003-08-15", "popularity": 0.753465869160725, "original_title": "Freddy vs. Jason", "budget": 30000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe4452c3a36847f808f493", "cast_id": 1, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Ken Kirzinger", "character": "Jason Voorhees", "id": 50094, "credit_id": "52fe4452c3a36847f808f497", "cast_id": 2, "profile_path": "/g90jZeSii6OmNOlNoxGFwCb2spJ.jpg", "order": 1}, {"name": "Jason Ritter", "character": "Will Rollins", "id": 50095, "credit_id": "52fe4453c3a36847f808f49b", "cast_id": 3, "profile_path": "/ysWVNRFfk7oGngurF7VWkWhvyQS.jpg", "order": 2}, {"name": "Monica Keena", "character": "Lori Campbell", "id": 18315, "credit_id": "52fe4453c3a36847f808f49f", "cast_id": 4, "profile_path": "/26ed24koWQ6cjJHCGIllR2CE8Rj.jpg", "order": 3}, {"name": "Lochlyn Munro", "character": "Deputy Scott Stubbs", "id": 58058, "credit_id": "52fe4453c3a36847f808f4d9", "cast_id": 14, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 4}, {"name": "Kelly Rowland", "character": "Kia Waterson", "id": 93527, "credit_id": "52fe4453c3a36847f808f4dd", "cast_id": 15, "profile_path": "/myF0itbCUAzPHkjArAaYyMzpHc9.jpg", "order": 5}, {"name": "Chris Marquette", "character": "Charlie Linderman", "id": 59238, "credit_id": "52fe4453c3a36847f808f4e1", "cast_id": 16, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 6}, {"name": "Brendan Fletcher", "character": "Mark Davis", "id": 32205, "credit_id": "52fe4453c3a36847f808f4e5", "cast_id": 17, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 7}, {"name": "Katharine Isabelle", "character": "Gibb", "id": 27136, "credit_id": "52fe4453c3a36847f808f4e9", "cast_id": 18, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 8}, {"name": "Kyle Labine", "character": "Bill Freeburg", "id": 39353, "credit_id": "52fe4453c3a36847f808f4ed", "cast_id": 19, "profile_path": "/s4JEyQPl1Qoz7U39qGjW8h6Zz1m.jpg", "order": 9}, {"name": "Tom Butler", "character": "Dr. Campbell", "id": 85922, "credit_id": "52fe4453c3a36847f808f4f1", "cast_id": 20, "profile_path": "/25mdyFUsVexK1eTHBvlfd8GPmF0.jpg", "order": 10}, {"name": "David Kopp", "character": "Blake", "id": 89248, "credit_id": "54ba7735c3a3686c61006054", "cast_id": 26, "profile_path": "/qxFUuNHZuhRLdiPfg4QLY6jlsPQ.jpg", "order": 11}, {"name": "Paula Shaw", "character": "Mrs. Pamela Voorhees (Jason's Mother)", "id": 99841, "credit_id": "54ba78bdc3a3686c61006075", "cast_id": 27, "profile_path": "/bqVe6fyo0qtD5ra9KzLTcjm8tF0.jpg", "order": 12}, {"name": "Jesse Hutch", "character": "Trey", "id": 169469, "credit_id": "54ba795ec3a3686c61006082", "cast_id": 28, "profile_path": "/4ES1tgoPAcOecGkq10gHkkBcFBS.jpg", "order": 13}, {"name": "Zack Ward", "character": "Bobby Davis (Mark's Brother)", "id": 12714, "credit_id": "54ba7a01c3a36840460014a8", "cast_id": 29, "profile_path": "/fuWd404vjKvxBRZLX5y8iFFzHqT.jpg", "order": 14}, {"name": "Gary Chalk", "character": "Sheriff Williams", "id": 26089, "credit_id": "54ba7da2925141485900388e", "cast_id": 30, "profile_path": "/1estlif6pDM9uV7sgOsTU3WQeYw.jpg", "order": 15}, {"name": "Brent Chapman", "character": "Blake's Father", "id": 65811, "credit_id": "54ba80c1c3a368404600156c", "cast_id": 31, "profile_path": "/sE8GBHEV978jWYDIoAjSWuPHRaI.jpg", "order": 16}, {"name": "Spencer Stump", "character": "Young Jason Voorhees", "id": 1414721, "credit_id": "54badf8bc3a3684046001cb7", "cast_id": 32, "profile_path": "/tIun5nPGVQiU8xfovZY64E7Iuy7.jpg", "order": 17}, {"name": "Jo\u00eblle Antonissen", "character": "Little Girl", "id": 1414722, "credit_id": "54bae0d89251413635001988", "cast_id": 33, "profile_path": "/iAYj3kU2FI5Z1NhsByWyxLjdpxV.jpg", "order": 18}, {"name": "Alistair Abell", "character": "Officer Goodman", "id": 63797, "credit_id": "54bae2e092514148f0004077", "cast_id": 34, "profile_path": "/8NpOt0Tqszhg23oLPNZ1PTWV9zg.jpg", "order": 19}, {"name": "Robert Shaye", "character": "Principal Shaye", "id": 13663, "credit_id": "54bae3a59251411d77006c7a", "cast_id": 35, "profile_path": "/ylgPcVcvDAZ9IykvDVN4894cEJh.jpg", "order": 20}, {"name": "Chris Gauthier", "character": "Shack", "id": 53119, "credit_id": "54bae4729251411d77006c89", "cast_id": 36, "profile_path": "/tzXtw8Mwdfv5Ofy6U9l27YZjZ0v.jpg", "order": 21}, {"name": "Colby Johannson", "character": "Teammate", "id": 169510, "credit_id": "54bae56ac3a3683eeb001ade", "cast_id": 37, "profile_path": "/ytr983xMiU3LBVzhIVVcNAX7e1V.jpg", "order": 22}, {"name": "Kimberley Warnat", "character": "Beer Line Girl", "id": 102749, "credit_id": "54bae6939251411d6a007357", "cast_id": 38, "profile_path": "/fmyKAEHqF93IOTzMgkHf1VsIgU8.jpg", "order": 23}, {"name": "Kevin Hansen", "character": "Beer Line Guy", "id": 1414727, "credit_id": "54bae724c3a3683eeb001afa", "cast_id": 39, "profile_path": null, "order": 24}, {"name": "Alex Green", "character": "Frisell (Glowing Raver)", "id": 45429, "credit_id": "54bae93b92514148b0003f06", "cast_id": 40, "profile_path": "/afJvBeTr8CEgPcUimeM7onLxEFX.jpg", "order": 25}, {"name": "Odessa Munroe", "character": "Heather", "id": 1244171, "credit_id": "54baea8a92514148b0003f1b", "cast_id": 41, "profile_path": "/adSUmdy4q7UrpRU3shQmGhq5Ws6.jpg", "order": 26}, {"name": "Jamie Mayo", "character": "Dead Girl on Tree", "id": 1414735, "credit_id": "54baeae9c3a368145e0044e6", "cast_id": 42, "profile_path": null, "order": 27}, {"name": "Blake Mawson", "character": "Dead Boy on Tree", "id": 1414736, "credit_id": "54baebe79251411d79006b1c", "cast_id": 43, "profile_path": "/15gI9YEfdlHoqJKiZvSwzNOh7UZ.jpg", "order": 28}, {"name": "Viv Leacock", "character": "Kinsey Park (Male Nurse)", "id": 60601, "credit_id": "54baedd19251411d79006b4d", "cast_id": 44, "profile_path": "/65ey92fHi13NBpvFLSsm7GWAXRL.jpg", "order": 29}, {"name": "Tony Willett", "character": "Asylum Guard", "id": 1414738, "credit_id": "54baf028c3a3687c40000030", "cast_id": 45, "profile_path": null, "order": 30}, {"name": "Claire Riley", "character": "TV Reporter", "id": 1234350, "credit_id": "54baf1dbc3a3686c610069c4", "cast_id": 46, "profile_path": null, "order": 31}, {"name": "Sharon Peters", "character": "Lori's Mother", "id": 1414739, "credit_id": "54baf2889251411d77006d74", "cast_id": 47, "profile_path": null, "order": 32}, {"name": "Sarah-Anne Hepher", "character": "Skipping Girl", "id": 1414740, "credit_id": "54baf33792514148bd00433a", "cast_id": 48, "profile_path": null, "order": 33}, {"name": "Kirsti Forbes", "character": "Skipping Girl", "id": 1414741, "credit_id": "54baf3a592514148590040f3", "cast_id": 49, "profile_path": null, "order": 34}, {"name": "Taryn McCulloch", "character": "Skipping Girl", "id": 1414742, "credit_id": "54baf3e09251413635001ac1", "cast_id": 50, "profile_path": null, "order": 35}, {"name": "Eileen Pedde", "character": "School Nurse", "id": 52457, "credit_id": "54baf530c3a3686c6b00831f", "cast_id": 51, "profile_path": "/pPrvpJqNN0teedsj1A8f93KUmxk.jpg", "order": 36}, {"name": "Sean Tyler Foley", "character": "Male Counselor", "id": 1414745, "credit_id": "54baf5ef92514148bd00436f", "cast_id": 52, "profile_path": null, "order": 37}, {"name": "Jacqueline Stewart", "character": "Female Counselor", "id": 1414747, "credit_id": "54baf6f09251411d77006dc4", "cast_id": 53, "profile_path": null, "order": 38}, {"name": "Laura Boddington", "character": "Female Counselor", "id": 1414748, "credit_id": "54baf7b1c3a368145e0045ec", "cast_id": 54, "profile_path": null, "order": 39}, {"name": "Colton Shock", "character": "Cruel Child", "id": 1414749, "credit_id": "54baf8d6c3a3681411003e43", "cast_id": 55, "profile_path": null, "order": 40}, {"name": "Spencer Doduk", "character": "Cruel Child", "id": 1414750, "credit_id": "54baf9229251413635001b58", "cast_id": 56, "profile_path": null, "order": 41}, {"name": "Anysha Berthot", "character": "Cruel Child", "id": 1414751, "credit_id": "54baf97a9251416e9b000043", "cast_id": 57, "profile_path": null, "order": 42}], "directors": [{"name": "Ronny Yu", "department": "Directing", "job": "Director", "credit_id": "52fe4453c3a36847f808f4a5", "profile_path": "/ttF6ZrZFNznZr79wPSZWYKz2g3m.jpg", "id": 17268}], "vote_average": 5.8, "runtime": 97}, "1852": {"poster_path": "/hYbKIxMGqm0YaxGBYW52NbkYNAx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162945894, "overview": "On September, 11th 2001, after the terrorist attack to the World Trade Center, the building collapses over the rescue team from the Port Authority Police Department. Will Jimeno and his sergeant John McLoughlin are found alive trapped under the wreckage while the rescue teams fight to save them.", "video": false, "id": 1852, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "World Trade Center", "tagline": "The World Saw Evil That Day. Two Men Saw Something Else.", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0469641", "adult": false, "backdrop_path": "/qBPsdNP23qqHUE7niOgKSPNnUSO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Double Feature Films", "id": 215}, {"name": "Intermedia Films", "id": 763}, {"name": "Kernos Filmproduktionsgesellschaft & Company", "id": 20396}], "release_date": "2006-08-09", "popularity": 0.698617897441024, "original_title": "World Trade Center", "budget": 63000000, "cast": [{"name": "Nicolas Cage", "character": "John McLoughlin", "id": 2963, "credit_id": "52fe431bc3a36847f803a98b", "cast_id": 7, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Maria Bello", "character": "Donna McLoughlin", "id": 49, "credit_id": "52fe431bc3a36847f803a98f", "cast_id": 8, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 1}, {"name": "Maggie Gyllenhaal", "character": "Allison Jimeno", "id": 1579, "credit_id": "52fe431bc3a36847f803a993", "cast_id": 9, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Will Jimeno", "id": 454, "credit_id": "52fe431bc3a36847f803a997", "cast_id": 10, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Jay Hernandez", "character": "Dominick Pezzulo", "id": 19487, "credit_id": "52fe431bc3a36847f803a99b", "cast_id": 11, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 4}, {"name": "Danny Nucci", "character": "Officer Giraldi", "id": 8540, "credit_id": "52fe431bc3a36847f803a99f", "cast_id": 12, "profile_path": "/q1KztDGVWkVzbKYlj5GAoojpQc4.jpg", "order": 5}, {"name": "Michael Shannon", "character": "Dave Karnes", "id": 335, "credit_id": "52fe431bc3a36847f803a9a3", "cast_id": 13, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 6}, {"name": "Dorothy Lyman", "character": "Allison's Mother", "id": 19488, "credit_id": "52fe431bc3a36847f803a9a7", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Peter McRobbie", "character": "Allison's Father", "id": 19489, "credit_id": "52fe431bc3a36847f803a9ab", "cast_id": 15, "profile_path": "/kx0PjY89aGd3WX1Bf1zSw3lKYvg.jpg", "order": 8}, {"name": "Wass Stevens", "character": "Pat McLoughlin", "id": 19490, "credit_id": "52fe431bc3a36847f803a9af", "cast_id": 16, "profile_path": "/p9nrtklmbqBlpbnHMru246LXW4J.jpg", "order": 9}, {"name": "Stephen Dorff", "character": "Scott Strauss", "id": 10822, "credit_id": "52fe431bc3a36847f803a9b3", "cast_id": 17, "profile_path": "/5rY1hkIpxOg0dWvhGFXCdcCUfM3.jpg", "order": 10}, {"name": "Frank Whaley", "character": "Chuck Sereika", "id": 11805, "credit_id": "52fe431bc3a36847f803a9b7", "cast_id": 18, "profile_path": "/ma1lgPwUHUlgdt9BIcIbEPjdx0h.jpg", "order": 11}, {"name": "Stoney Westmoreland", "character": "Paddy McGee", "id": 19491, "credit_id": "52fe431bc3a36847f803a9bb", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Viola Davis", "character": "Mother in Hospital with Donna", "id": 19492, "credit_id": "52fe431bc3a36847f803a9bf", "cast_id": 20, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 13}, {"name": "Lola Cook", "character": "Olivia Jimeno", "id": 19493, "credit_id": "52fe431bc3a36847f803a9c3", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Connor Paolo", "character": "Steven McLoughlin", "id": 4738, "credit_id": "52fe431bc3a36847f803a9c7", "cast_id": 22, "profile_path": "/oOUW9uOmIjWXb98oPlmJlm4PZEJ.jpg", "order": 15}, {"name": "Anthony Piccininni", "character": "JJ McLoughlin", "id": 19494, "credit_id": "52fe431bc3a36847f803a9cb", "cast_id": 23, "profile_path": "/zWWtx8hYrKEKUzMEnbjvI7UzEF2.jpg", "order": 16}, {"name": "Alexa Gerasimovich", "character": "Erin McLoughlin", "id": 19495, "credit_id": "52fe431bc3a36847f803a9cf", "cast_id": 24, "profile_path": "/8sc37y1xlzCQJNdo0UVBD4hOcX7.jpg", "order": 17}, {"name": "Morgan Flynn", "character": "Caitlin McLoughlin", "id": 19496, "credit_id": "52fe431bc3a36847f803a9d3", "cast_id": 25, "profile_path": "/cJqIaWZ0dCoQxUQ1OrSlez6vtjj.jpg", "order": 18}, {"name": "Armando Riesco", "character": "Antonio Rodrigues", "id": 19497, "credit_id": "52fe431bc3a36847f803a9d7", "cast_id": 26, "profile_path": "/zjcmycjVPTHIGX8Mr1uAvCYpeC8.jpg", "order": 19}, {"name": "Jon Bernthal", "character": "Christopher Amoroso", "id": 19498, "credit_id": "52fe431bc3a36847f803a9db", "cast_id": 27, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 20}, {"name": "Jude Ciccolella", "character": "Inspector Fields", "id": 8693, "credit_id": "52fe431bc3a36847f803a9df", "cast_id": 28, "profile_path": "/6nuAG4DVlCc0h2rfrbpJhdmKudx.jpg", "order": 21}], "directors": [{"name": "Oliver Stone", "department": "Directing", "job": "Director", "credit_id": "52fe431ac3a36847f803a969", "profile_path": "/y3Ernjw1FYo6ZvahEHcoqJ5mzV4.jpg", "id": 1152}], "vote_average": 5.7, "runtime": 128}, "6477": {"poster_path": "/sAt2yb4dgrpkHjbB9dQaKD9Caor.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361366633, "overview": "A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin, brainy Simon, and chubby, impressionable Theodore.", "video": false, "id": 6477, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Alvin and the Chipmunks", "tagline": "Get your squeak on!", "vote_count": 324, "homepage": "http://www.chipmunks.com", "belongs_to_collection": {"backdrop_path": "/qI483yHct3PBtIiOH3K3SVNUDq5.jpg", "poster_path": "/fLvRQcuk5ZFKnDvUC553XK3OnPC.jpg", "id": 167613, "name": "Alvin and the Chipmunks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0952640", "adult": false, "backdrop_path": "/9gm6655C6a3M6hJt0MQ180gmd8.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Regency Enterprises", "id": 508}, {"name": "Bagdasarian Productions", "id": 10930}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2007-12-13", "popularity": 1.17195462462039, "original_title": "Alvin and the Chipmunks", "budget": 60000000, "cast": [{"name": "Jason Lee", "character": "Dave (voice)", "id": 11662, "credit_id": "52fe4454c3a36847f808fac1", "cast_id": 19, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 0}, {"name": "David Cross", "character": "Ian (voice)", "id": 212, "credit_id": "52fe4454c3a36847f808fac5", "cast_id": 20, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 1}, {"name": "Cameron Richardson", "character": "Claire (voice)", "id": 49914, "credit_id": "52fe4454c3a36847f808fac9", "cast_id": 21, "profile_path": "/lPCQYDmuSWkEXpTsNLWuLpUVa2m.jpg", "order": 2}, {"name": "Jane Lynch", "character": "Gail (voice)", "id": 43775, "credit_id": "52fe4454c3a36847f808facd", "cast_id": 22, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 3}, {"name": "Justin Long", "character": "Alvin (voice)", "id": 15033, "credit_id": "52fe4454c3a36847f808fad1", "cast_id": 23, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 4}, {"name": "Matthew Gray Gubler", "character": "Simon (voice)", "id": 5661, "credit_id": "52fe4454c3a36847f808fad5", "cast_id": 24, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 5}, {"name": "Jesse McCartney", "character": "Theodore (voice)", "id": 49915, "credit_id": "52fe4454c3a36847f808fad9", "cast_id": 25, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 6}, {"name": "Veronica Alicino", "character": "Amy (voice)", "id": 49916, "credit_id": "52fe4454c3a36847f808fadd", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Allison Karman", "character": "Female Intern #1 (voice)", "id": 1080067, "credit_id": "52fe4454c3a36847f808fae1", "cast_id": 27, "profile_path": null, "order": 8}, {"name": "Tiara Parker", "character": "Female Intern #2 (voice)", "id": 208332, "credit_id": "52fe4454c3a36847f808fae5", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Kira Verrastro", "character": "Female Intern #3 (voice)", "id": 1080068, "credit_id": "52fe4454c3a36847f808fae9", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Beth Riesgraf", "character": "Mother in Store (voice)", "id": 46928, "credit_id": "52fe4454c3a36847f808faed", "cast_id": 30, "profile_path": "/x8Mr6UKn5CMw0w53SwHc08P3J9a.jpg", "order": 11}, {"name": "Adriane Lenox", "character": "Vet (voice)", "id": 53260, "credit_id": "52fe4454c3a36847f808faf1", "cast_id": 31, "profile_path": "/pVvBJyRhJtSAYKfDlrEeQ5GBiij.jpg", "order": 12}, {"name": "Don Tiffany", "character": "Engineer (voice)", "id": 159398, "credit_id": "52fe4454c3a36847f808faf5", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Frank Maharajh", "character": "Barry (voice)", "id": 120723, "credit_id": "52fe4454c3a36847f808faf9", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Kevin Symons", "character": "Ted (voice)", "id": 1228919, "credit_id": "52fe4454c3a36847f808fafd", "cast_id": 35, "profile_path": "/ai79pjcASGhSDrlwzB8l6xik91E.jpg", "order": 15}], "directors": [{"name": "Tim Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4454c3a36847f808fa57", "profile_path": "/jN6KyRKLoI1UgC1EnyAEYJ5uDYy.jpg", "id": 49903}], "vote_average": 5.4, "runtime": 92}, "6479": {"poster_path": "/pfvQ3kkSbFsIPC5exKPUf5nOf60.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 585349010, "overview": "Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.", "video": false, "id": 6479, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "I Am Legend", "tagline": "The last man on Earth is not alone", "vote_count": 1772, "homepage": "http://iamlegend.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480249", "adult": false, "backdrop_path": "/u6Qg7TH7Oh1IFWCQSRr4htFFt0A.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Overbrook Entertainment", "id": 12485}, {"name": "Heyday Films", "id": 7364}, {"name": "Original Film", "id": 333}], "release_date": "2007-12-13", "popularity": 1.3865032858335, "original_title": "I Am Legend", "budget": 150000000, "cast": [{"name": "Will Smith", "character": "Robert Neville", "id": 2888, "credit_id": "52fe4455c3a36847f808fc19", "cast_id": 19, "profile_path": "/2iYXDlCvLyVO49louRyDDXagZ0G.jpg", "order": 0}, {"name": "Alice Braga", "character": "Anna Montez", "id": 8602, "credit_id": "52fe4455c3a36847f808fc1d", "cast_id": 20, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 2}, {"name": "Charlie Tahan", "character": "Ethan", "id": 49918, "credit_id": "52fe4455c3a36847f808fc21", "cast_id": 21, "profile_path": "/iOMqxwzCSI5zYNhG7PkX2iIldll.jpg", "order": 3}, {"name": "Salli Richardson-Whitfield", "character": "Zoe Neville", "id": 53918, "credit_id": "52fe4455c3a36847f808fc3f", "cast_id": 29, "profile_path": "/huQHvzHVULR965KGFcHSw9IYXbN.jpg", "order": 4}, {"name": "Willow Smith", "character": "Marley Neville", "id": 49920, "credit_id": "52fe4455c3a36847f808fc25", "cast_id": 23, "profile_path": "/1wd5w9wYSwMBOvMSzGYrf2Ilk9H.jpg", "order": 5}, {"name": "Joanna Numata", "character": "Alpha Female", "id": 49922, "credit_id": "52fe4455c3a36847f808fc35", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Darrell Foster", "character": "Mike - Military Escort", "id": 49921, "credit_id": "52fe4455c3a36847f808fc29", "cast_id": 24, "profile_path": "/9DPSxjhKhoi3YGCDRADEYVKNbKz.jpg", "order": 7}, {"name": "Dash Mihok", "character": "Alpha Male", "id": 6066, "credit_id": "52fe4455c3a36847f808fc31", "cast_id": 26, "profile_path": "/jvjJXMo1GxhbyPaCgP1yLp4wr3u.jpg", "order": 8}, {"name": "Samuel Glen", "character": "Military Driver - Jay", "id": 964035, "credit_id": "52fe4455c3a36847f808fc4f", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Pedro Mojica", "character": "Sergeant", "id": 1075145, "credit_id": "52fe4455c3a36847f808fc5b", "cast_id": 35, "profile_path": null, "order": 12}, {"name": "Emma Thompson", "character": "Dr. Alice Krippin", "id": 7056, "credit_id": "52fe4455c3a36847f808fc5f", "cast_id": 36, "profile_path": "/cWTBHN8kLf6yapxiaQD9C6N1uMw.jpg", "order": 13}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4455c3a36847f808fbaf", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 6.7, "runtime": 101}, "3489": {"poster_path": "/b5d3iWimQXvjAx9Grjuk912DSij.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16930884, "overview": "\"88 Minutes\" focuses on a college professor (Pacino) who moonlights as a forensic psychiatrist for the FBI and receives a death threat claiming he has only 88 minutes to live.", "video": false, "id": 3489, "genres": [{"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "88 Minutes", "tagline": "", "vote_count": 66, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411061", "adult": false, "backdrop_path": "/ddMTbjChBrkdTsrUKi8l8Jcljei.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Nu Image Entertainment", "id": 713}, {"name": "Brightlight Pictures", "id": 1063}], "release_date": "2008-04-18", "popularity": 1.10779934852964, "original_title": "88 Minutes", "budget": 30000000, "cast": [{"name": "Al Pacino", "character": "Jack Gramm", "id": 1158, "credit_id": "52fe4396c3a36847f805fe2d", "cast_id": 1, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 0}, {"name": "Alicia Witt", "character": "Kim Cummings", "id": 3128, "credit_id": "52fe4396c3a36847f805fe7f", "cast_id": 19, "profile_path": "/pmKMhehztGEv2i7PPY20nP68j0f.jpg", "order": 1}, {"name": "Leelee Sobieski", "character": "Lauren Douglas", "id": 22290, "credit_id": "52fe4396c3a36847f805fe83", "cast_id": 20, "profile_path": "/aEltFc3gLQTVFbfjiVhPmpxe5xa.jpg", "order": 2}, {"name": "Amy Brenneman", "character": "Shelly Barnes", "id": 15851, "credit_id": "52fe4396c3a36847f805fe87", "cast_id": 21, "profile_path": "/xC408loYq7tQlkpS5YH68SoaDND.jpg", "order": 3}, {"name": "William Forsythe", "character": "Frank Parks", "id": 4520, "credit_id": "52fe4396c3a36847f805fe8b", "cast_id": 22, "profile_path": "/3oaz2y7hIm3r3OyDKvQ1i2D8cLR.jpg", "order": 4}, {"name": "Deborah Kara Unger", "character": "Carol", "id": 13549, "credit_id": "52fe4396c3a36847f805fe8f", "cast_id": 23, "profile_path": "/AshML8NumG0rxi4dhMoiqn9XF4f.jpg", "order": 5}, {"name": "Ben McKenzie", "character": "Mike Stemp", "id": 17245, "credit_id": "52fe4396c3a36847f805fe93", "cast_id": 24, "profile_path": "/rm3vfSXk6FDGRpjaOfM7VSsp5sd.jpg", "order": 6}, {"name": "Neal McDonough", "character": "Jon Forster", "id": 2203, "credit_id": "52fe4396c3a36847f805fe97", "cast_id": 25, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 7}, {"name": "Leah Cairns", "character": "Sara Pollard", "id": 32202, "credit_id": "52fe4396c3a36847f805fe9b", "cast_id": 26, "profile_path": "/Asuotouxe6Se3stoMP7vrLE1EaD.jpg", "order": 8}, {"name": "Stephen Moyer", "character": "Guy LaForge", "id": 32203, "credit_id": "52fe4396c3a36847f805fe9f", "cast_id": 27, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 9}, {"name": "Christopher Redman", "character": "Jeremy Guber", "id": 32204, "credit_id": "52fe4396c3a36847f805fea3", "cast_id": 28, "profile_path": "/oRUUfZV89SH3l040RZTRNis3IIS.jpg", "order": 10}, {"name": "Brendan Fletcher", "character": "Johnny D`Franco", "id": 32205, "credit_id": "52fe4396c3a36847f805fea7", "cast_id": 29, "profile_path": "/pt6kjBmnhamO1nvc1YqX3AczYpS.jpg", "order": 11}, {"name": "Paul Campbell", "character": "Albert Jackson", "id": 62909, "credit_id": "54e6579b9251416f46000109", "cast_id": 34, "profile_path": "/gmMt9mKExBd796rsfTuRvrP2SAu.jpg", "order": 12}], "directors": [{"name": "Jon Avnet", "department": "Directing", "job": "Director", "credit_id": "52fe4396c3a36847f805fead", "profile_path": "/ckcE5lD7KNCh6iYHwCbfbs4r2y2.jpg", "id": 18250}], "vote_average": 5.7, "runtime": 108}, "39254": {"poster_path": "/drtXi58nN6P3zcoLh6wUlsZAYqh.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 299268508, "overview": "In the near-future, Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After Charlie's robot is trashed, he reluctantly teams up with his estranged son Max to rebuild and train an unlikely contender.", "video": false, "id": 39254, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Real Steel", "tagline": "If you get one shot, make it real.", "vote_count": 1039, "homepage": "http://www.steelgetsreal.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0433035", "adult": false, "backdrop_path": "/m3aK5gSRZdG5aN65gJsK5QvHUMA.jpg", "production_companies": [{"name": "ImageMovers", "id": 11395}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Angry Films", "id": 12087}], "release_date": "2011-10-06", "popularity": 1.23813871712305, "original_title": "Real Steel", "budget": 110000000, "cast": [{"name": "Hugh Jackman", "character": "Charlie Kenton", "id": 6968, "credit_id": "52fe47079251416c91067de7", "cast_id": 13, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Dakota Goyo", "character": "Max Kenton", "id": 234479, "credit_id": "52fe47079251416c91067def", "cast_id": 15, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 1}, {"name": "Evangeline Lilly", "character": "Bailey Tallet", "id": 19034, "credit_id": "52fe47079251416c91067de3", "cast_id": 12, "profile_path": "/lsXb0Qt9WyYDJUdON26vmtKVkE6.jpg", "order": 2}, {"name": "Anthony Mackie", "character": "Finn", "id": 53650, "credit_id": "52fe47079251416c91067ddf", "cast_id": 11, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 3}, {"name": "Kevin Durand", "character": "Ricky", "id": 79072, "credit_id": "52fe47079251416c91067deb", "cast_id": 14, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Hope Davis", "character": "Aunt Debra", "id": 15250, "credit_id": "52fe47079251416c91067ddb", "cast_id": 10, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 5}, {"name": "James Rebhorn", "character": "Marvin", "id": 8986, "credit_id": "52fe47079251416c91067df3", "cast_id": 16, "profile_path": "/cRbeDNPpcWKP0nLkXo5Bi1tq61w.jpg", "order": 6}, {"name": "Marco Ruggeri", "character": "Cliff", "id": 930729, "credit_id": "52fe47079251416c91067df7", "cast_id": 17, "profile_path": "/1Ox63ukTd2yfOf1LVJOMXwmeQjO.jpg", "order": 7}, {"name": "Karl Yune", "character": "Tak Mashido", "id": 19860, "credit_id": "52fe47079251416c91067dfb", "cast_id": 18, "profile_path": "/qK315vPObCNdywdRN66971FtFez.jpg", "order": 8}, {"name": "Olga Fonda", "character": "Farra Lemkova", "id": 111206, "credit_id": "52fe47079251416c91067dff", "cast_id": 19, "profile_path": "/j1qabOHf3Pf82f1lFpUmdF5XvSp.jpg", "order": 9}, {"name": "John Gatins", "character": "Kingpin", "id": 53176, "credit_id": "52fe47089251416c91067e81", "cast_id": 41, "profile_path": "/A2MqnSKVzOuBf8MVfNyve2h2LxJ.jpg", "order": 10}, {"name": "Sophie Levy", "character": "Big Sister", "id": 1126350, "credit_id": "52fe47089251416c91067e85", "cast_id": 42, "profile_path": null, "order": 11}, {"name": "Tess Levy", "character": "Little Sister", "id": 1126351, "credit_id": "52fe47089251416c91067e89", "cast_id": 43, "profile_path": null, "order": 12}, {"name": "Charlie Levy", "character": "Littlest Sister", "id": 1126352, "credit_id": "52fe47089251416c91067e8d", "cast_id": 44, "profile_path": null, "order": 13}, {"name": "Gregory Sims", "character": "Bill Panner", "id": 187983, "credit_id": "52fe47089251416c91067e91", "cast_id": 45, "profile_path": null, "order": 14}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe47079251416c91067dd7", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.4, "runtime": 127}, "6488": {"poster_path": "/pz4TWF3r6xqXN41Iqsjbf06rAQs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53208180, "overview": "A large spider from the jungles of South America is accidentally transported in a crate with a dead body to America where it mates with a local spider. Soon after, the residents of a small California town disappear as the result of spider bites from the deadly spider offspring. It's up to a couple of doctors with the help of an insect exterminator to annihilate these eight legged freaks.", "video": false, "id": 6488, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Arachnophobia", "tagline": "Eight legs, two fangs, and an attitude.", "vote_count": 74, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0099052", "adult": false, "backdrop_path": "/a29CEDZI05HuMF2oiLihuMoPBfl.jpg", "production_companies": [{"name": "Amblin Entertainment", "id": 56}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Tangled Web Productions", "id": 2104}], "release_date": "1990-08-09", "popularity": 0.464028811942077, "original_title": "Arachnophobia", "budget": 31000000, "cast": [{"name": "Jeff Daniels", "character": "Dr. Ross Jennings", "id": 8447, "credit_id": "52fe4455c3a36847f808fe4b", "cast_id": 1, "profile_path": "/vjn5pomAQOEQriemYxl6REQUX9Z.jpg", "order": 0}, {"name": "Harley Jane Kozak", "character": "Molly Jennings", "id": 27106, "credit_id": "52fe4455c3a36847f808fe4f", "cast_id": 2, "profile_path": "/VXtpLchVBUib398pwahLPbgSeT.jpg", "order": 1}, {"name": "John Goodman", "character": "Delbert McClintock", "id": 1230, "credit_id": "52fe4455c3a36847f808fe53", "cast_id": 3, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 2}, {"name": "Julian Sands", "character": "Doctor James Atherton", "id": 6104, "credit_id": "52fe4455c3a36847f808fe93", "cast_id": 14, "profile_path": "/hDb4UlbeTvvVK53Cmh7W0Ijo41h.jpg", "order": 3}, {"name": "Stuart Pankin", "character": "Sheriff Lloyd Parsons", "id": 52043, "credit_id": "52fe4455c3a36847f808fe97", "cast_id": 15, "profile_path": "/yFYrCahBSro1J2Eyj8Qoko31trL.jpg", "order": 4}, {"name": "Brandy Norwood", "character": "Brandy Beechwood", "id": 33285, "credit_id": "52fe4455c3a36847f808fe9b", "cast_id": 16, "profile_path": "/2HA5qGd6MSVM6hqE8yclbpnOfgw.jpg", "order": 5}, {"name": "Brian McNamara", "character": "Chris Collins", "id": 27238, "credit_id": "52fe4455c3a36847f808fe9f", "cast_id": 17, "profile_path": "/eHBvnSkMrhNB57yU2nlQCfH8Kl8.jpg", "order": 6}, {"name": "Mark L. Taylor", "character": "Jerry Manley", "id": 78003, "credit_id": "52fe4455c3a36847f808fea3", "cast_id": 18, "profile_path": "/uvqfJeuIQEHvbEDJWDZJcTBlzNy.jpg", "order": 7}, {"name": "Henry Jones", "character": "Doctor Sam Metcalf", "id": 5732, "credit_id": "52fe4455c3a36847f808fea7", "cast_id": 19, "profile_path": "/hOO3CG2qUq6wvM4BkjtJ05kIU1C.jpg", "order": 8}, {"name": "Peter Jason", "character": "Henry Beechwood", "id": 6916, "credit_id": "52fe4455c3a36847f808feab", "cast_id": 20, "profile_path": "/aiitfS96xAaJsjLVyliKX2LWtup.jpg", "order": 9}, {"name": "Roy Brocksmith", "character": "Irv Kendall", "id": 12888, "credit_id": "52fe4455c3a36847f808feaf", "cast_id": 22, "profile_path": "/2mLWMlroPa18WsH1QZtiSBJbhYo.jpg", "order": 10}, {"name": "Kathy Kinney", "character": "Blaire Kendall", "id": 162605, "credit_id": "52fe4455c3a36847f808feb3", "cast_id": 23, "profile_path": "/AtDo8MWLonRXSXUGFIF5dAPpn0J.jpg", "order": 11}, {"name": "Mary Carver", "character": "Margaret Hollins", "id": 152696, "credit_id": "52fe4455c3a36847f808feb7", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Garette Ratliff Henson", "character": "Tommy Jennings", "id": 76239, "credit_id": "52fe4455c3a36847f808febb", "cast_id": 25, "profile_path": "/xXzXov8q56YxH8pbHb1DrJ8hrV.jpg", "order": 13}, {"name": "James Handy", "character": "Milton Briggs", "id": 51551, "credit_id": "52fe4455c3a36847f808febf", "cast_id": 26, "profile_path": "/vm0WQmuP8jEGgFTd3VCcJe7zpUi.jpg", "order": 14}], "directors": [{"name": "Frank Marshall", "department": "Directing", "job": "Director", "credit_id": "52fe4455c3a36847f808fe59", "profile_path": "/iZrDellT1OWf1syKzBgQHjY2hJe.jpg", "id": 664}], "vote_average": 6.3, "runtime": 103}, "22881": {"poster_path": "/wEGFSgPebLk6g1ngKsJ6a46PYLV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 309208309, "overview": "Oversized African American Michael Oher, the teen from across the tracks and a broken home, has nowhere to sleep at age 16. Taken in by an affluent Memphis couple, Leigh Anne and Sean, Michael embarks on a remarkable rise to play for the NFL.", "video": false, "id": 22881, "genres": [{"id": 18, "name": "Drama"}], "title": "The Blind Side", "tagline": "Based on the extraordinary true story", "vote_count": 664, "homepage": "http://www.theblindsidemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0878804", "adult": false, "backdrop_path": "/qVjKZMB0IdOc2JlwiiGsuKTvTJs.jpg", "production_companies": [{"name": "Alcon Entertainment", "id": 1088}, {"name": "Left Tackle Pictures", "id": 12193}, {"name": "Zucker/Netter Productions", "id": 12194}], "release_date": "2009-11-20", "popularity": 1.59467202665639, "original_title": "The Blind Side", "budget": 29000000, "cast": [{"name": "Sandra Bullock", "character": "Leigh Anne Touhy", "id": 18277, "credit_id": "52fe4453c3a368484e01cd1b", "cast_id": 1, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Quinton Aaron", "character": "Michael Oher", "id": 112560, "credit_id": "52fe4453c3a368484e01cd33", "cast_id": 6, "profile_path": "/5NeAJi2BTY4f75zTVSgGPnZZUa6.jpg", "order": 1}, {"name": "Kathy Bates", "character": "Miss Sue", "id": 8534, "credit_id": "52fe4453c3a368484e01cd1f", "cast_id": 2, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 2}, {"name": "Tim McGraw", "character": "Sean Tuohy", "id": 74428, "credit_id": "52fe4453c3a368484e01cd2f", "cast_id": 5, "profile_path": "/lotQwKKAUe3hI4EnmMySNpJGKGO.jpg", "order": 3}, {"name": "Jae Head", "character": "S.J. Tuohy", "id": 66658, "credit_id": "52fe4453c3a368484e01cd37", "cast_id": 7, "profile_path": "/iq3GxDOVoTssnByU1CjWYkhPKmz.jpg", "order": 4}, {"name": "Lily Collins", "character": "Collins Touhy", "id": 112561, "credit_id": "52fe4453c3a368484e01cd3b", "cast_id": 8, "profile_path": "/6nwPOZSw6dAz2uAhJxhdmKYjlnJ.jpg", "order": 5}, {"name": "Ray McKinnon", "character": "Coach Burt Cotton", "id": 1472, "credit_id": "52fe4453c3a368484e01cd3f", "cast_id": 9, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 6}, {"name": "Kim Dickens", "character": "Mrs. Boswell", "id": 21165, "credit_id": "52fe4453c3a368484e01cd43", "cast_id": 10, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 7}, {"name": "Adriane Lenox", "character": "Denise Oher", "id": 53260, "credit_id": "52fe4453c3a368484e01cd47", "cast_id": 11, "profile_path": "/pVvBJyRhJtSAYKfDlrEeQ5GBiij.jpg", "order": 8}, {"name": "Catherine Dyer", "character": "Mrs. Smith", "id": 112562, "credit_id": "52fe4453c3a368484e01cd4b", "cast_id": 12, "profile_path": "/bjSNlEfh87rh1LIkLjhSKYRihDi.jpg", "order": 9}, {"name": "Sharon Morris", "character": "Investigator Granger", "id": 142374, "credit_id": "52fe4453c3a368484e01cd4f", "cast_id": 14, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 10}, {"name": "Andy Stahl", "character": "Principal Sandstrom", "id": 21083, "credit_id": "52fe4454c3a368484e01cdad", "cast_id": 30, "profile_path": "/3t0TIakWeRkIRiCICPFImVggwOy.jpg", "order": 11}, {"name": "Tom Nowicki", "character": "Literature Teacher", "id": 94854, "credit_id": "52fe4454c3a368484e01cdb1", "cast_id": 31, "profile_path": "/nm6XdgwH6IDE4nroYQwhNtlFtn9.jpg", "order": 12}, {"name": "Libby Whittemore", "character": "Sarcastic Teacher", "id": 226537, "credit_id": "52fe4454c3a368484e01cdb5", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Brian Hollan", "character": "Jay Collis", "id": 1127790, "credit_id": "52fe4454c3a368484e01cdb9", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Melody Weintraub", "character": "History Teacher", "id": 968305, "credit_id": "52fe4454c3a368484e01cdbd", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "IronE Singleton", "character": "Alton", "id": 1040864, "credit_id": "52fe4454c3a368484e01cdc1", "cast_id": 35, "profile_path": "/gUEWX9HIw2iN6bsMvRF7q0xF395.jpg", "order": 16}, {"name": "Omar J. Dorsey", "character": "'Big Tony' Hamilton", "id": 59844, "credit_id": "52fe4454c3a368484e01cdc5", "cast_id": 36, "profile_path": "/20Lrh4XaRrNEMapJGMl9uToHSQn.jpg", "order": 17}, {"name": "Paul Amadi", "character": "Steven Hamilton", "id": 1039342, "credit_id": "52fe4454c3a368484e01cdc9", "cast_id": 37, "profile_path": null, "order": 18}], "directors": [{"name": "John Lee Hancock", "department": "Directing", "job": "Director", "credit_id": "52fe4453c3a368484e01cd2b", "profile_path": "/1eCqzsuFp0xKGeTEErXyEifN82U.jpg", "id": 54040}], "vote_average": 6.9, "runtime": 129}, "22894": {"poster_path": "/mXJJPsVfQdf0OWxgoWgDUFyzJQo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 48052429, "overview": "An out-of-the-way diner becomes the unlikely battleground for the survival of the human race. When God loses faith in humankind, he sends his legion of angels to bring on the Apocalypse. Humanity's only hope lies in a group of strangers trapped in a desert diner with the Archangel Michael.", "video": false, "id": 22894, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Legion", "tagline": "When the last angel falls, the fight for mankind begins.", "vote_count": 212, "homepage": "http://www.legionmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1038686", "adult": false, "backdrop_path": "/gWaMoxVrkiMJ5xgvnXDhpKtP10E.jpg", "production_companies": [{"name": "Bold Films", "id": 2266}], "release_date": "2010-01-22", "popularity": 1.31378509421618, "original_title": "Legion", "budget": 26000000, "cast": [{"name": "Paul Bettany", "character": "Michael", "id": 6162, "credit_id": "52fe4454c3a368484e01cf65", "cast_id": 1, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 0}, {"name": "Dennis Quaid", "character": "Bob Hanson", "id": 6065, "credit_id": "52fe4454c3a368484e01cf69", "cast_id": 2, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 1}, {"name": "Kevin Durand", "character": "Gabriel", "id": 79072, "credit_id": "52fe4454c3a368484e01cf75", "cast_id": 5, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 2}, {"name": "Kate Walsh", "character": "Sandra Anderson", "id": 61114, "credit_id": "52fe4454c3a368484e01cf79", "cast_id": 6, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 3}, {"name": "Doug Jones", "character": "Ice Cream Man", "id": 17005, "credit_id": "52fe4454c3a368484e01cf6d", "cast_id": 3, "profile_path": "/4vTqBn4pQxb4Unou10ONZvgzf3Z.jpg", "order": 4}, {"name": "Lucas Black", "character": "Jeep Hanson", "id": 155, "credit_id": "52fe4454c3a368484e01cf71", "cast_id": 4, "profile_path": "/41qZZc6vRVm5ZOoXWfEf5NGoIZR.jpg", "order": 5}, {"name": "Tyrese Gibson", "character": "Kyle Williams", "id": 8169, "credit_id": "52fe4454c3a368484e01cf7d", "cast_id": 7, "profile_path": "/2eQsxfTHsARKXOtPu3W4c2n5RzQ.jpg", "order": 6}, {"name": "Adrianne Palicki", "character": "Charlie", "id": 88995, "credit_id": "52fe4454c3a368484e01cff3", "cast_id": 29, "profile_path": "/iaJuVBKWN9G532b6sWX5SwSt18d.jpg", "order": 7}, {"name": "Charles S. Dutton", "character": "Percy Walker", "id": 17764, "credit_id": "52fe4454c3a368484e01cff7", "cast_id": 30, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 8}, {"name": "Jon Tenney", "character": "Howard Anderson", "id": 4602, "credit_id": "52fe4454c3a368484e01cffb", "cast_id": 31, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 9}, {"name": "Kate Walsh", "character": "Sandra Anderson", "id": 61114, "credit_id": "52fe4454c3a368484e01cfff", "cast_id": 32, "profile_path": "/dj1hTxA4RggArUE0PmTzV5kf2tn.jpg", "order": 10}, {"name": "Jeanette Miller", "character": "Gladys Foster", "id": 58929, "credit_id": "52fe4454c3a368484e01d003", "cast_id": 33, "profile_path": "/mpWlUmcibBwYRGZSYn1jY8Ot5Ne.jpg", "order": 11}, {"name": "Cameron Harlow", "character": "Minivan Boy", "id": 1125192, "credit_id": "52fe4454c3a368484e01d007", "cast_id": 34, "profile_path": null, "order": 12}, {"name": "Josh Stamberg", "character": "Burton", "id": 21882, "credit_id": "52fe4454c3a368484e01d00b", "cast_id": 35, "profile_path": "/h2JX69r9c61AzGwq7oK921r9jBa.jpg", "order": 13}, {"name": "Yancey Arias", "character": "Estevez", "id": 21049, "credit_id": "52fe4454c3a368484e01d00f", "cast_id": 36, "profile_path": "/yXePNE3sFAHk1CAgdObHhUrWsKL.jpg", "order": 14}, {"name": "Willa Holland", "character": "Audrey Anderson", "id": 1223171, "credit_id": "52fe4454c3a368484e01d019", "cast_id": 38, "profile_path": "/wSn01hjcRFnamCrvhbUJyeMIbxo.jpg", "order": 15}], "directors": [{"name": "Scott Stewart", "department": "Directing", "job": "Director", "credit_id": "52fe4454c3a368484e01cf83", "profile_path": "/uFhftOKdeSRbJkOsylcJSJoaimQ.jpg", "id": 116357}], "vote_average": 5.1, "runtime": 100}, "22897": {"poster_path": "/foHRwmVZG7m0XMDq15wRuNoKca6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219069702, "overview": "Ten years after their divorce, Jane and Jake Adler unite for their son's college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect, Adam. Now, she has to sort out her life -- just when she thought she had it all figured out.", "video": false, "id": 22897, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "It's Complicated", "tagline": "First comes marriage. Then comes divorce. And then...", "vote_count": 99, "homepage": "http://itscomplicatedmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1230414", "adult": false, "backdrop_path": "/lt7K8envOZJGRDfZ8GcN4epSzPd.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Waverly Films", "id": 735}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Dentsu", "id": 6452}], "release_date": "2009-12-25", "popularity": 0.602506362690984, "original_title": "It's Complicated", "budget": 85000000, "cast": [{"name": "Meryl Streep", "character": "Jane Adler", "id": 5064, "credit_id": "52fe4454c3a368484e01d0c1", "cast_id": 2, "profile_path": "/oTJj6bLpbmseLww03MOn0eDqYuh.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "Jake Adler", "id": 7447, "credit_id": "52fe4454c3a368484e01d0c9", "cast_id": 4, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Steve Martin", "character": "Adam Schaffer", "id": 67773, "credit_id": "52fe4454c3a368484e01d0cd", "cast_id": 5, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 2}, {"name": "Lake Bell", "character": "Agness Adler", "id": 25703, "credit_id": "52fe4454c3a368484e01d0f5", "cast_id": 14, "profile_path": "/mUB3J8qVWXvpxbVWfwjXiTt3bGk.jpg", "order": 3}, {"name": "Mary Kay Place", "character": "Joanne", "id": 5960, "credit_id": "52fe4454c3a368484e01d0f9", "cast_id": 15, "profile_path": "/hWD8EiKv8x0fdiTJVwbrgghBwDE.jpg", "order": 4}, {"name": "John Krasinski", "character": "Harley", "id": 17697, "credit_id": "52fe4454c3a368484e01d0c5", "cast_id": 3, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 5}, {"name": "Rita Wilson", "character": "Trisha", "id": 12931, "credit_id": "52fe4454c3a368484e01d11b", "cast_id": 21, "profile_path": "/ziWP0Qv2GvVj48dwxccQed79zeq.jpg", "order": 6}, {"name": "Alexandra Wentworth", "character": "Diane", "id": 104998, "credit_id": "52fe4454c3a368484e01d11f", "cast_id": 22, "profile_path": "/rhROnBBAcL9UFJ4YFMPReqMafrG.jpg", "order": 7}, {"name": "Hunter Parrish", "character": "Luke Adler", "id": 35236, "credit_id": "52fe4454c3a368484e01d123", "cast_id": 23, "profile_path": "/7dRzHeH8OBsO51ZuUi0peTm0ZfQ.jpg", "order": 8}, {"name": "Zoe Kazan", "character": "Gabby Adler", "id": 35028, "credit_id": "52fe4454c3a368484e01d127", "cast_id": 24, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 9}, {"name": "Caitlin Fitzgerald", "character": "Lauren Adler", "id": 211993, "credit_id": "52fe4454c3a368484e01d12b", "cast_id": 25, "profile_path": "/y6Oqdicw18Ecu6u4IxylAqrsHGh.jpg", "order": 10}, {"name": "Nora Dunn", "character": "Sally", "id": 4496, "credit_id": "52fe4455c3a368484e01d133", "cast_id": 27, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 12}, {"name": "Bruce Altman", "character": "Ted", "id": 27545, "credit_id": "52fe4455c3a368484e01d137", "cast_id": 28, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 13}, {"name": "Robert Curtis Brown", "character": "Peter", "id": 233298, "credit_id": "52fe4455c3a368484e01d13b", "cast_id": 29, "profile_path": "/1plgmYJoFzTUJwPD1YbMtl9NQxD.jpg", "order": 14}, {"name": "James Patrick Stuart", "character": "Dr. Moss", "id": 105641, "credit_id": "52fe4455c3a368484e01d13f", "cast_id": 30, "profile_path": "/hB1IPN8O16pVy5vOPjyIFLToLWl.jpg", "order": 15}, {"name": "Peter MacKenzie", "character": "Dr. Allen", "id": 62597, "credit_id": "52fe4455c3a368484e01d143", "cast_id": 31, "profile_path": "/mAnOLlLQDEtUvAqEjKPLiQSJ0w5.jpg", "order": 16}, {"name": "Emily Kinney", "character": "Waitress", "id": 1223878, "credit_id": "530353ad9251412195520c83", "cast_id": 32, "profile_path": "/nKsvhL2T8srsEiUYUS4HhWeeXcT.jpg", "order": 17}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe4454c3a368484e01d0bd", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 6.3, "runtime": 121}, "6519": {"poster_path": "/ts0KZTwWfpaPm4X6jaus3xBV8gN.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 110803676, "overview": "Bo and Luke Duke are southern cousins. In Hazzard County, Bo and Luke help their Uncle Jesse and their sexy cousin Daisy run the Moonshine business and always getting into trouble with Sherriff Roscoe P. Coltrane and recklessly driving in their orange car \"General Lee\". Boss Hogg, the mean and corrupt local county commissioner who hates The Dukes evicts The Dukes from their farm. Bo and Duke travels to Atlanta and meets up with old friend Katie Johnson and her friend Annette as they set out to find out why Boss Hogg has evicted them from their farm and what he plans to do. With local ace race car driver Billy Prickett in town to take part in the Annual Hazzard Road Race rally, Bo and Luke sets out to save their farm and foil Boss Hogg's scheme", "video": false, "id": 6519, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Dukes of Hazzard", "tagline": "Cousins. Outlaws. Thrillbillies.", "vote_count": 88, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/5xE2YWrBLCn7bETXtX0cDZfxdTi.jpg", "id": 332357, "name": "The Dukes Of Hazzard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0377818", "adult": false, "backdrop_path": "/wb6XwD8z16nATOFlkGoPCVnbv6Y.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Gerber Pictures", "id": 975}, {"name": "WV Films III", "id": 12202}], "release_date": "2005-08-05", "popularity": 0.345940877867447, "original_title": "The Dukes of Hazzard", "budget": 50000000, "cast": [{"name": "Johnny Knoxville", "character": "Luke Duke", "id": 9656, "credit_id": "52fe4457c3a36847f8090595", "cast_id": 1, "profile_path": "/vUultoYGh6mZraKoKPbuwkIZqRD.jpg", "order": 0}, {"name": "Seann William Scott", "character": "Bo Duke", "id": 57599, "credit_id": "52fe4457c3a36847f8090599", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 1}, {"name": "Jessica Simpson", "character": "Daisy Duke", "id": 52052, "credit_id": "52fe4457c3a36847f80905c9", "cast_id": 11, "profile_path": "/1PDbqQoEriziHHaAcRwtOkI2SHq.jpg", "order": 2}, {"name": "M.C. Gainey", "character": "Sheriff Rosco P. Coltrane", "id": 22132, "credit_id": "52fe4457c3a36847f809063f", "cast_id": 37, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 3}, {"name": "Burt Reynolds", "character": "Jefferson Davis 'Boss' Hogg", "id": 16475, "credit_id": "52fe4457c3a36847f80905cd", "cast_id": 13, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 4}, {"name": "Willie Nelson", "character": "Uncle Jesse Duke", "id": 8261, "credit_id": "52fe4457c3a36847f8090637", "cast_id": 35, "profile_path": "/9G0q9ISCbCy3lPP7Uly53xwRlJA.jpg", "order": 5}, {"name": "James Roday", "character": "Billy Prickett", "id": 80219, "credit_id": "52fe4457c3a36847f809062b", "cast_id": 31, "profile_path": "/uDRDtNTlY8JXsrratw29dj1C1cr.jpg", "order": 6}, {"name": "David Koechner", "character": "Cooter Davenport", "id": 28638, "credit_id": "52fe4457c3a36847f8090633", "cast_id": 34, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 7}, {"name": "Michael Weston", "character": "Deputy Enos Strate", "id": 51381, "credit_id": "52fe4457c3a36847f8090617", "cast_id": 26, "profile_path": "/1bZX1MS5NZxiqFmhmZhnhAJI2hB.jpg", "order": 8}, {"name": "Nikki Griffin", "character": "Katie Johnson", "id": 88677, "credit_id": "53a469e2c3a3682a450013fa", "cast_id": 40, "profile_path": "/rRGP3vx9LiLguZQzvE4RLWcIEeG.jpg", "order": 9}, {"name": "Alice Greczyn", "character": "Laurie Pullman", "id": 52050, "credit_id": "52fe4457c3a36847f80905c1", "cast_id": 9, "profile_path": "/nO3ZLjJ6ZUOgOTX2eB1UOa4tket.jpg", "order": 10}, {"name": "Joe Don Baker", "character": "Governor Jim Applewhite", "id": 10671, "credit_id": "52fe4457c3a36847f80905d1", "cast_id": 14, "profile_path": "/bLvWzzb9SyoyjwPpj5pgzXb9tuC.jpg", "order": 11}, {"name": "Lynda Carter", "character": "Pauline", "id": 44935, "credit_id": "53a4687b0e0a2667c6001945", "cast_id": 38, "profile_path": "/lC89jUGkfwEm9bD732uJ2nHzavl.jpg", "order": 12}, {"name": "Jack Polick", "character": "Deputy Cletus Hogg", "id": 60930, "credit_id": "52fe4457c3a36847f809063b", "cast_id": 36, "profile_path": "/bavt2S9iwHSjQAUfvtEkxeHT5SI.jpg", "order": 13}, {"name": "Kevin Heffernan", "character": "Sheev", "id": 56251, "credit_id": "53a46980c3a3682a3f00145b", "cast_id": 39, "profile_path": "/afuCF27oMcjV8wNf6YIPXl3XZPE.jpg", "order": 14}, {"name": "Steve Lemme", "character": "Jimmy", "id": 52051, "credit_id": "52fe4457c3a36847f80905c5", "cast_id": 10, "profile_path": "/kZtGtYLBVA6AGp8TZOF95dHobD5.jpg", "order": 15}, {"name": "Michael Roof", "character": "Dil Driscoll", "id": 53347, "credit_id": "52fe4457c3a36847f809061f", "cast_id": 28, "profile_path": "/52LqQBBrjzqhcrwuh3eNMdcBPMb.jpg", "order": 16}], "directors": [{"name": "Jay Chandrasekhar", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a36847f809059f", "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "id": 52049}], "vote_average": 5.5, "runtime": 104}, "6520": {"poster_path": "/muRn0We7BisyezWUsPyGknEOq6R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 127600435, "overview": "The timeless tale of King Arthur and the legend of Camelot are retold in this passionate period drama. Arthur is reluctant to hand the crown to Lancelot, and Guinevere is torn between her loyalty to her husband and her growing love for his rival. But Lancelot must balance his loyalty to the throne with the rewards of true love.", "video": false, "id": 6520, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "First Knight", "tagline": "Their greatest battle would be for her love.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113071", "adult": false, "backdrop_path": "/wKOoD7RvfJOIW13tQWYV7cMzzn0.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "First Knight Productions", "id": 10158}], "release_date": "1995-07-07", "popularity": 0.328519400287988, "original_title": "First Knight", "budget": 55000000, "cast": [{"name": "Sean Connery", "character": "King Arthur", "id": 738, "credit_id": "52fe4457c3a36847f8090683", "cast_id": 1, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 0}, {"name": "Richard Gere", "character": "Lancelot", "id": 1205, "credit_id": "52fe4457c3a36847f8090687", "cast_id": 2, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 1}, {"name": "Julia Ormond", "character": "Guinevere", "id": 15887, "credit_id": "52fe4457c3a36847f809068b", "cast_id": 3, "profile_path": "/GYnXYOvBhzPfNmTpeIiO0XRTUu.jpg", "order": 2}, {"name": "Ben Cross", "character": "Prince Malagant", "id": 29068, "credit_id": "52fe4457c3a36847f809068f", "cast_id": 4, "profile_path": "/oSGwl0y9ZQOKDYXbrEd2zeid1Bq.jpg", "order": 3}, {"name": "Liam Cunningham", "character": "Agravaine", "id": 15498, "credit_id": "52fe4458c3a36847f80906a5", "cast_id": 8, "profile_path": "/8RMX0M8AEaldVAC6WUJIViUdDkm.jpg", "order": 4}, {"name": "Christopher Villiers", "character": "Sir Kay", "id": 34720, "credit_id": "52fe4458c3a36847f80906a9", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Valentine Pelka", "character": "Sir Patrise", "id": 52375, "credit_id": "52fe4458c3a36847f80906ad", "cast_id": 10, "profile_path": "/478wMmYjjio8h2kaHkHsRJTqfYX.jpg", "order": 6}, {"name": "Colin McCormack", "character": "Sir Mador", "id": 186032, "credit_id": "52fe4458c3a36847f80906b1", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Ralph Ineson", "character": "Ralf", "id": 202032, "credit_id": "52fe4458c3a36847f80906b5", "cast_id": 12, "profile_path": "/zqvpAuiocN9hHjg6f9Dqu2S8y9x.jpg", "order": 8}, {"name": "John Gielgud", "character": "Oswald", "id": 11857, "credit_id": "52fe4458c3a36847f80906b9", "cast_id": 13, "profile_path": "/vLXym0KxtYTHXqq1KEzdCl74F5n.jpg", "order": 9}, {"name": "Stuart Bunce", "character": "Peter, King's Stableman", "id": 107398, "credit_id": "52fe4458c3a36847f80906bd", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Jane Robbins", "character": "Elise", "id": 193360, "credit_id": "52fe4458c3a36847f80906c1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Jean Marie Coffey", "character": "Petronella", "id": 1075038, "credit_id": "52fe4458c3a36847f80906c5", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Paul Kynman", "character": "Mark", "id": 200365, "credit_id": "52fe4458c3a36847f80906c9", "cast_id": 17, "profile_path": "/o1EPKfTbNTER88NsG0tr0o5wuqk.jpg", "order": 13}, {"name": "Tom Lucy", "character": "Sir Sagramore", "id": 1063141, "credit_id": "52fe4458c3a36847f80906cd", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Jerry Zucker", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a36847f8090695", "profile_path": "/41K8iRmKGYozbiRvybjW6tiwjyP.jpg", "id": 3415}], "vote_average": 6.1, "runtime": 134}, "217": {"poster_path": "/qY1x6v5daMDTr904G3y84WVgpfC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 786636033, "overview": "During the Cold War, Soviet agents watch Professor Henry Jones when a young man brings him a coded message from an aged, demented colleague, Henry Oxley. Led by the brilliant Irina Spalko, the Soviets tail Jones and the young man, Mutt, to Peru. With Oxley's code, they find a legendary skull made of a single piece of quartz. If Jones can deliver the skull to its rightful place, all may be well; but if Irina takes it to its origin, she'll gain powers that could endanger the West. Aging professor and young buck join forces with a woman from Jones's past to face the dangers of the jungle, Russia, and the supernatural.", "video": false, "id": 217, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "Indiana Jones and the Kingdom of the Crystal Skull", "tagline": "The adventure continues . . .", "vote_count": 892, "homepage": "http://www.indianajones.com/site/index.html", "belongs_to_collection": {"backdrop_path": "/9f8kjuytZPJEPf1bhJgkekaoanr.jpg", "poster_path": "/lpxDrACKJhbbGOlwVMNz5YCj6SI.jpg", "id": 84, "name": "Indiana Jones Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0367882", "adult": false, "backdrop_path": "/wJByCdlvHxoAvmktWaI2jSNzHbl.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Lucasfilm", "id": 1}], "release_date": "2008-05-22", "popularity": 1.58836054411006, "original_title": "Indiana Jones and the Kingdom of the Crystal Skull", "budget": 185000000, "cast": [{"name": "Harrison Ford", "character": "Indiana Jones", "id": 3, "credit_id": "52fe4227c3a36847f8008477", "cast_id": 4, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 0}, {"name": "Cate Blanchett", "character": "Irina Spalko", "id": 112, "credit_id": "52fe4228c3a36847f8008499", "cast_id": 10, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 1}, {"name": "Shia LaBeouf", "character": "Mutt", "id": 10959, "credit_id": "52fe4228c3a36847f800849d", "cast_id": 11, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 2}, {"name": "Ray Winstone", "character": "Mac", "id": 5538, "credit_id": "52fe4228c3a36847f80084a1", "cast_id": 12, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 3}, {"name": "Karen Allen", "character": "Marion Ravenwood", "id": 650, "credit_id": "52fe4228c3a36847f80084a5", "cast_id": 13, "profile_path": "/6TzVbX52cAOqe9LH6GZ5xutbW5G.jpg", "order": 4}, {"name": "John Hurt", "character": "Ox", "id": 5049, "credit_id": "52fe4228c3a36847f80084a9", "cast_id": 14, "profile_path": "/rpuH2YRLpxJjMxHq4T1QdOSVtlN.jpg", "order": 5}, {"name": "Jim Broadbent", "character": "Dean Charles Stanforth", "id": 388, "credit_id": "52fe4228c3a36847f80084ad", "cast_id": 15, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 6}, {"name": "Andrew Divoff", "character": "Russian Soldier", "id": 36218, "credit_id": "52fe4228c3a36847f80084b1", "cast_id": 16, "profile_path": "/3ana0vJs5uLDXb6dSHvp5naKmcl.jpg", "order": 7}, {"name": "Igor Jijikine", "character": "Colonel Dovchenko", "id": 52761, "credit_id": "52fe4228c3a36847f80084b5", "cast_id": 17, "profile_path": "/4ArqFlvP6Fe77DLxPu1U5LvkpXC.jpg", "order": 8}, {"name": "Pavel Lychnikoff", "character": "Russian Soldier", "id": 52762, "credit_id": "52fe4228c3a36847f80084b9", "cast_id": 18, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 9}, {"name": "Alan Dale", "character": "General Ross", "id": 52760, "credit_id": "52fe4228c3a36847f80084bd", "cast_id": 19, "profile_path": "/3eguw755Dl5a4PlDBAeOmTcgZLb.jpg", "order": 10}, {"name": "Ernie Reyes, Jr.", "character": "Cemetery Warrior", "id": 58210, "credit_id": "52fe4228c3a36847f80084c1", "cast_id": 20, "profile_path": "/vtsmZGZ1ifJikn888NSVMWSvKZp.jpg", "order": 11}, {"name": "Dimitri Diatchenko", "character": "Russian Suit", "id": 173269, "credit_id": "54e0d8ba9251411956005d67", "cast_id": 26, "profile_path": "/vPScVMpccnmNQSsvYhdwGcReblD.jpg", "order": 12}, {"name": "Ilia Volok", "character": "Russian Suit", "id": 109667, "credit_id": "54e0d9fc925141469f003a2d", "cast_id": 27, "profile_path": "/k5ACLMgPMrZjKbnOmHmaeBLx2Te.jpg", "order": 13}, {"name": "Emmanuel Todorov", "character": "Russian Soldier", "id": 1133682, "credit_id": "54e0db5fc3a36845410066ee", "cast_id": 28, "profile_path": "/m6fjgWmTDAvM93fRukUYG4br9U6.jpg", "order": 14}, {"name": "Venya Manzyuk", "character": "Russian Soldier", "id": 1427626, "credit_id": "54e0e18ec3a368455100632f", "cast_id": 29, "profile_path": "/klsCxeiEX2cyd4MgXmbRUauAdt9.jpg", "order": 15}, {"name": "Joel Stoffer", "character": "Taylor", "id": 155978, "credit_id": "54e0e4ec925141454f0035e2", "cast_id": 30, "profile_path": "/5c1Q86rb4ibXK40zcZmdjZkRQAS.jpg", "order": 16}, {"name": "Neil Flynn", "character": "Smith", "id": 43776, "credit_id": "54e0e584c3a36855c7003b92", "cast_id": 31, "profile_path": "/2s934K6IOUhtjXul54wJbmkeZhK.jpg", "order": 17}, {"name": "V.J. Foster", "character": "Minister", "id": 122596, "credit_id": "54e0e739925141195a0056c2", "cast_id": 32, "profile_path": "/9Blp9NazzcDGRykkeDFaWcZrRas.jpg", "order": 18}, {"name": "Chet Hanks", "character": "Student in Library", "id": 1421688, "credit_id": "54e113fc9251411099000116", "cast_id": 33, "profile_path": "/tMZi5ZCAIrA0Vf8nDlUmpZuAwdZ.jpg", "order": 19}, {"name": "Brian Knutson", "character": "Letterman", "id": 1427682, "credit_id": "54e11522c3a368454d006068", "cast_id": 34, "profile_path": null, "order": 20}, {"name": "Dean Grimes", "character": "Letterman", "id": 1427688, "credit_id": "54e11605c3a3685446004e32", "cast_id": 35, "profile_path": "/qDO9ZAcPeEZcDE792IFOXX6tKOa.jpg", "order": 21}, {"name": "Sasha Spielberg", "character": "Slugger", "id": 8700, "credit_id": "54e117359251411099000167", "cast_id": 36, "profile_path": "/3ltMYYXQ6lZUxqLiAsTSn29cVCS.jpg", "order": 22}, {"name": "Nicole Luther", "character": "Diner Waitress", "id": 1427692, "credit_id": "54e13b59c3a368409500011f", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Sophia Stewart", "character": "Malt Shop Teen", "id": 1427695, "credit_id": "54e13ba69251411956006610", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Chris Todd", "character": "College Brawler", "id": 1427698, "credit_id": "54e13cccc3a368454d00640b", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Dennis Nusbaum", "character": "College Brawler", "id": 1365062, "credit_id": "54e13e80c3a36855c700434b", "cast_id": 40, "profile_path": "/kDpdYkJRWEVFuNROuKBfIOp8fhU.jpg", "order": 26}, {"name": "T. Ryan Mooney", "character": "Teenage Boy", "id": 1427700, "credit_id": "54e13f5092514119560066bb", "cast_id": 41, "profile_path": "/5WMUQhRaw1EXyirDJ2Z8sv9WlTN.jpg", "order": 27}, {"name": "Audi Resendez", "character": "Teenage Girl", "id": 1058026, "credit_id": "54e141039251411956006707", "cast_id": 42, "profile_path": "/u95S40GGvtwyko9QGIM02rBihtD.jpg", "order": 28}, {"name": "Helena Barrett", "character": "Teenage Girl", "id": 204408, "credit_id": "54e1420ec3a36857560046cf", "cast_id": 43, "profile_path": "/k2gWbKpoteeY2XEQzPfcwRdY6et.jpg", "order": 29}, {"name": "Carlos Linares", "character": "Fast Speaking Inmate", "id": 1031791, "credit_id": "54e143269251411956006773", "cast_id": 44, "profile_path": "/g9mbHUziIX8UrAglnySp8Cnse3z.jpg", "order": 30}, {"name": "Gustavo Hernandez", "character": "Shouting Inmate", "id": 1427707, "credit_id": "54e14395c3a368087b0005c6", "cast_id": 45, "profile_path": null, "order": 31}, {"name": "Maria Luisa Minelli", "character": "Sanitarium Nun", "id": 1427708, "credit_id": "54e1440292514119500062c6", "cast_id": 46, "profile_path": null, "order": 32}, {"name": "Nito Larioza", "character": "Cemetery Warrior", "id": 1427711, "credit_id": "54e144b6925141109900068a", "cast_id": 47, "profile_path": "/5kdiSdTIKFeOrnkQmrx4IVBug5c.jpg", "order": 33}, {"name": "Jon Valera", "character": "Cave Warrior", "id": 1427715, "credit_id": "54e14716c3a36857560047bb", "cast_id": 48, "profile_path": "/pQkberrVb0s47V9Sw0iK1HybgxY.jpg", "order": 34}, {"name": "Kevin Collins", "character": "M.P. in Guard Hut", "id": 1427716, "credit_id": "54e149fac3a3684551006d2e", "cast_id": 49, "profile_path": "/6ApKOlxu3OYup7qWpcIqDCGOMg7.jpg", "order": 35}, {"name": "Robert Baker", "character": "M.P. Sergeant", "id": 21723, "credit_id": "54e14bf6c3a36855c7004576", "cast_id": 50, "profile_path": "/6nywOWGA7dJLzwDhHY4AzFRQ3b8.jpg", "order": 36}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4227c3a36847f800846d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 5.6, "runtime": 122}, "22907": {"poster_path": "/zwepORN3ONa5qSLzmcZSPlpQxce.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 42005172, "overview": "A seasoned team of bank robbers, including Gordon Jennings (Idris Elba), John Rahway (Paul Walker), A.J. (Hayden Christensen), and brothers Jake (Michael Ealy) and Jesse Attica (Chris Brown) successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost (Tip T.I. Harris), a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the \"Takers\" carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer (Matt Dillon) inches closer to apprehending the criminals.", "video": false, "id": 22907, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Takers", "tagline": "Who's Taking Who?", "vote_count": 136, "homepage": "http://www.whoarethetakers.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1135084", "adult": false, "backdrop_path": "/n6FokmbxhCWH0ad7i1lJzAbrZqK.jpg", "production_companies": [{"name": "Rainforest Films", "id": 1309}], "release_date": "2010-08-26", "popularity": 1.08090237832791, "original_title": "Takers", "budget": 32000000, "cast": [{"name": "Chris Brown", "character": "Jesse Attica", "id": 31136, "credit_id": "52fe4455c3a368484e01d249", "cast_id": 11, "profile_path": "/4k8sacCMG9jI2jo7x5XVSzq2Mnt.jpg", "order": 0}, {"name": "Hayden Christensen", "character": "A.J.", "id": 17244, "credit_id": "52fe4455c3a368484e01d24d", "cast_id": 12, "profile_path": "/lz6mI2hhVrGu640fxm9GQkv4V7l.jpg", "order": 1}, {"name": "Matt Dillon", "character": "Jack Welles", "id": 2876, "credit_id": "52fe4455c3a368484e01d251", "cast_id": 13, "profile_path": "/sqHNX9iyxdxZffl6wYWSoc7QoVG.jpg", "order": 2}, {"name": "Michael Ealy", "character": "Jake Attica", "id": 8177, "credit_id": "52fe4455c3a368484e01d255", "cast_id": 14, "profile_path": "/oqzMgyxyZUjE8kTpjHhQ6YlMPov.jpg", "order": 3}, {"name": "Idris Elba", "character": "Gordon Jennings", "id": 17605, "credit_id": "52fe4455c3a368484e01d259", "cast_id": 15, "profile_path": "/4fuJRkT2TdfznRONUvQmdcayTTx.jpg", "order": 4}, {"name": "T.I.", "character": "Ghost (as Tip 'T.I'. Harris)", "id": 76126, "credit_id": "52fe4455c3a368484e01d25d", "cast_id": 17, "profile_path": "/ycNO8wU6H75wDDfojMCTjoxtEmt.jpg", "order": 5}, {"name": "Zoe Saldana", "character": "Rachel Jansen", "id": 8691, "credit_id": "52fe4455c3a368484e01d261", "cast_id": 19, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 6}, {"name": "Paul Walker", "character": "John Rahway", "id": 8167, "credit_id": "52fe4455c3a368484e01d265", "cast_id": 21, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 7}, {"name": "Marianne Jean-Baptiste", "character": "Naomi", "id": 17352, "credit_id": "52fe4455c3a368484e01d269", "cast_id": 22, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 8}, {"name": "Johnathon Schaech", "character": "Scott", "id": 51670, "credit_id": "52fe4455c3a368484e01d26d", "cast_id": 23, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 9}, {"name": "Jay Hernandez", "character": "Eddie Hatcher", "id": 19487, "credit_id": "52fe4455c3a368484e01d271", "cast_id": 24, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 10}, {"name": "Steve Harris", "character": "Lt. Carver", "id": 2202, "credit_id": "52fe4455c3a368484e01d275", "cast_id": 25, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 11}, {"name": "Trevor Donovan", "character": "Rahway Body Double", "id": 1233560, "credit_id": "52fe4455c3a368484e01d29d", "cast_id": 32, "profile_path": "/4S4JlcxIHpU6UXnskZucQo8zOHE.jpg", "order": 12}], "directors": [{"name": "John Luessenhop", "department": "Directing", "job": "Director", "credit_id": "52fe4455c3a368484e01d245", "profile_path": "/HI2jnUyVBZu2xYOohzjM4nB8XQ.jpg", "id": 97026}], "vote_average": 6.3, "runtime": 107}, "1089": {"poster_path": "/qzKNI8b8EZZhwGFqPavPO04abf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 105000000, "overview": "In the coastal town of Los Angeles, a gang of bank robbers call themselves The Ex-Presidents commit their crimes while wearing masks of Reagan, Carter, Nixon and Johnson. The F.B.I. believes that the members of the gang could be surfers and send young agent Johnny Utah undercover at the beach to mix with the surfers and gather information.", "video": false, "id": 1089, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Point Break", "tagline": "Twenty-seven banks in three years. Anything to catch the perfect wave.", "vote_count": 186, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102685", "adult": false, "backdrop_path": "/vaFuy8olnsULqdd09DsxWf1ry1k.jpg", "production_companies": [{"name": "JVC Entertainment Networks", "id": 4248}, {"name": "Largo Entertainment", "id": 1644}], "release_date": "1991-07-12", "popularity": 1.21438016915815, "original_title": "Point Break", "budget": 24000000, "cast": [{"name": "Patrick Swayze", "character": "Bodhi", "id": 723, "credit_id": "52fe42e7c3a36847f802b89d", "cast_id": 11, "profile_path": "/roWUcnbsNIA1IJRsZ897Wc1960K.jpg", "order": 0}, {"name": "Keanu Reeves", "character": "FBI Special Agent John 'Johnny' Utah", "id": 6384, "credit_id": "52fe42e7c3a36847f802b8a1", "cast_id": 12, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 1}, {"name": "Gary Busey", "character": "FBI Agent Angelo Pappas", "id": 2048, "credit_id": "52fe42e7c3a36847f802b8a5", "cast_id": 13, "profile_path": "/n66ycv61ZoqusHthcQde1g3JY6T.jpg", "order": 2}, {"name": "Lori Petty", "character": "Tyler Ann Endicott", "id": 15309, "credit_id": "52fe42e7c3a36847f802b8a9", "cast_id": 14, "profile_path": "/u2D3zteSlOj4zLp7jBcGqQVBsR1.jpg", "order": 3}, {"name": "John C. McGinley", "character": "FBI Agent Ben Harp", "id": 11885, "credit_id": "52fe42e7c3a36847f802b8ad", "cast_id": 15, "profile_path": "/6AJL0ylRtJ9vcR57yEenhWHXHFt.jpg", "order": 4}, {"name": "James Le Gros", "character": "Roach", "id": 6474, "credit_id": "52fe42e7c3a36847f802b8b1", "cast_id": 16, "profile_path": "/rqBjmSkcRGwtwpb2tTjGcqLtKyG.jpg", "order": 5}, {"name": "Anthony Kiedis", "character": "Tone", "id": 15310, "credit_id": "52fe42e7c3a36847f802b8b5", "cast_id": 17, "profile_path": "/88vsdNuncMZ8cOwSvKmpEnchoGa.jpg", "order": 6}, {"name": "Christopher Pettiet", "character": "15", "id": 15311, "credit_id": "52fe42e7c3a36847f802b8b9", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Lee Tergesen", "character": "Rosie", "id": 6906, "credit_id": "5323fdd9c3a3684133000456", "cast_id": 19, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 8}, {"name": "John Philbin", "character": "Nathanial", "id": 103011, "credit_id": "5511d7b69251415caa001fe1", "cast_id": 20, "profile_path": "/hVRZLok1DmiiUQ5lBXOYx04Ibk4.jpg", "order": 9}, {"name": "Bojesse Christopher", "character": "Grommet", "id": 170231, "credit_id": "5511d7d29251415c96001f2f", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Daniel Beer", "character": "Babbit", "id": 107368, "credit_id": "5511d8ea9251412a880014d5", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Vincent Klyn", "character": "Warchild", "id": 63934, "credit_id": "5511d9009251415c96001f47", "cast_id": 25, "profile_path": "/gL0vJkLbWGzZnDOU5mrM8K8zMzQ.jpg", "order": 14}, {"name": "Dave Olson", "character": "Archbold", "id": 1445331, "credit_id": "5511d948925141065c00808f", "cast_id": 26, "profile_path": null, "order": 15}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802b863", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 6.4, "runtime": 120}, "6537": {"poster_path": "/3DMsF5gbTfEZoDp6fQH0QATOc7l.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 44000000, "overview": "A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.", "video": false, "id": 6537, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Orphanage", "tagline": "A tale of love. A story of horror.", "vote_count": 109, "homepage": "http://www.clubcultura.com/clubcine/clubcineastas/guillermodeltoro/elorfanato/", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0464141", "adult": false, "backdrop_path": "/rce3RkZfMzBvdZfqluLaUx6QSI0.jpg", "production_companies": [{"name": "Esta Vivo! Laboratorio de Nuevos Talentos", "id": 11649}, {"name": "Grupo Rodar", "id": 11650}, {"name": "Rodar y Rodar Cine y Televisi\u00f3n", "id": 11651}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Telecinco", "id": 1182}, {"name": "Televisi\u00f3 de Catalunya TV3", "id": 6778}, {"name": "Warner Bros. Pictures de Espa\u00f1a", "id": 11652}, {"name": "Wild Bunch", "id": 856}], "release_date": "2007-10-11", "popularity": 0.71427785719212, "original_title": "El orfanato", "budget": 0, "cast": [{"name": "Bel\u00e9n Rueda", "character": "Laura", "id": 19907, "credit_id": "52fe4459c3a36847f8090cc1", "cast_id": 11, "profile_path": "/fBUoGHdAJhrm1R1tX9BtgAogXQt.jpg", "order": 0}, {"name": "Fernando Cayo", "character": "Carlos", "id": 51902, "credit_id": "52fe4459c3a36847f8090cc5", "cast_id": 12, "profile_path": "/oDbXZgeh03v6OzgeIcrk0YZ556L.jpg", "order": 1}, {"name": "Roger Pr\u00edncep", "character": "Sim\u00f3n", "id": 51903, "credit_id": "52fe4459c3a36847f8090cc9", "cast_id": 13, "profile_path": null, "order": 2}, {"name": "Mabel Rivera", "character": "Pilar", "id": 33409, "credit_id": "52fe4459c3a36847f8090ccd", "cast_id": 14, "profile_path": "/A4MguHpfBb5yVz0MJ5EW11BxxJx.jpg", "order": 3}, {"name": "Montserrat Carulla", "character": "Benigna", "id": 51904, "credit_id": "52fe4459c3a36847f8090cd1", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Andr\u00e9s Gertr\u00fadix", "character": "Enrique", "id": 51905, "credit_id": "52fe4459c3a36847f8090cd5", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "\u00c9dgar Vivar", "character": "Balaban", "id": 51906, "credit_id": "52fe4459c3a36847f8090cd9", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "\u00d3scar Casas", "character": "Tom\u00e1s", "id": 51943, "credit_id": "52fe4459c3a36847f8090ce1", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Geraldine Chaplin", "character": "Aurora", "id": 400, "credit_id": "52fe4459c3a36847f8090cdd", "cast_id": 18, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 8}], "directors": [{"name": "Juan Antonio Bayona", "department": "Directing", "job": "Director", "credit_id": "52fe4459c3a36847f8090c8d", "profile_path": "/wBsdjDeNy9IEGlQ4God71IOmlOC.jpg", "id": 51894}], "vote_average": 6.9, "runtime": 105}, "6538": {"poster_path": "/uN9tN0ZDyol7VsTlugDZhGc11xQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119000410, "overview": "A drama based on Texas congressman Charlie Wilson's covert dealings in Afghanistan, where his efforts to assist rebels in their war with the Soviets had some unforeseen and long-reaching effects.", "video": false, "id": 6538, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Charlie Wilson's War", "tagline": "Based on a true story. You think we could make all this up?", "vote_count": 75, "homepage": "http://www.charliewilsonswar.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "ur", "name": "\u0627\u0631\u062f\u0648"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt0472062", "adult": false, "backdrop_path": "/nZfkRAT1pYLc4VkzkUaHqzTkF5v.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Participant Productions", "id": 2030}, {"name": "Playtone Production", "id": 2031}], "release_date": "2007-12-19", "popularity": 0.884997271493375, "original_title": "Charlie Wilson's War", "budget": 75000000, "cast": [{"name": "Tom Hanks", "character": "Charlie Wilson", "id": 31, "credit_id": "52fe4459c3a36847f8090d7d", "cast_id": 12, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Gust Avrakotos", "id": 1233, "credit_id": "52fe4459c3a36847f8090d81", "cast_id": 13, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Julia Roberts", "character": "Joanne Herring", "id": 1204, "credit_id": "52fe4459c3a36847f8090d85", "cast_id": 14, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 2}, {"name": "Amy Adams", "character": "Bonnie Bach", "id": 9273, "credit_id": "52fe4459c3a36847f8090d89", "cast_id": 15, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 3}, {"name": "Om Puri", "character": "President Zia", "id": 11851, "credit_id": "52fe4459c3a36847f8090d8d", "cast_id": 16, "profile_path": "/omm9W5Ae1uwccnLPeVB5PWqh0ix.jpg", "order": 4}, {"name": "Shiri Appleby", "character": "Charlies Engel", "id": 50346, "credit_id": "52fe4459c3a36847f8090d91", "cast_id": 17, "profile_path": "/8c93ox1w2opQfWmxGQKn9lsqYzZ.jpg", "order": 5}, {"name": "John Slattery", "character": "Cravely", "id": 21134, "credit_id": "52fe4459c3a36847f8090d95", "cast_id": 18, "profile_path": "/jKlkyLBTSQH3AIEkITGaplFdbj.jpg", "order": 6}, {"name": "Rachel Nichols", "character": "Charlies Engel", "id": 50347, "credit_id": "52fe4459c3a36847f8090d99", "cast_id": 19, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 7}, {"name": "Erick Avari", "character": "Avi Perlman", "id": 18917, "credit_id": "52fe4459c3a36847f8090d9d", "cast_id": 20, "profile_path": "/ZtoLoKTlsZbCxc0JVqb8UeSIBS.jpg", "order": 8}, {"name": "Cyia Batten", "character": "Stacey", "id": 42515, "credit_id": "52fe4459c3a36847f8090da1", "cast_id": 22, "profile_path": "/w14tg1GarixC9tqqYzTERkroS2P.jpg", "order": 10}, {"name": "Denis O'Hare", "character": "Harold Holt", "id": 81681, "credit_id": "52fe4459c3a36847f8090da5", "cast_id": 23, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 11}, {"name": "Ned Beatty", "character": "Doc Long", "id": 13726, "credit_id": "52fe4459c3a36847f8090da9", "cast_id": 24, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 12}, {"name": "Emily Blunt", "character": "Jane Liddle", "id": 5081, "credit_id": "52fe4459c3a36847f8090dad", "cast_id": 25, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 13}], "directors": [{"name": "Mike Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe4459c3a36847f8090d3d", "profile_path": "/9d0W5i6jOlKR3XlWzdV04Lg7fHs.jpg", "id": 5342}], "vote_average": 6.1, "runtime": 102}, "1090": {"poster_path": "/19XUd3YoAY2cwWJnutvq5VEtiIO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18564088, "overview": "Computer scientist Hannon Fuller has discovered something extremely important. He's about to tell the discovery to his colleague, Douglas Hall, but knowing someone is after him, the old man leaves a letter in his computer generated parallel world that's just like the 30's with seemingly real people with real emotions.", "video": false, "id": 1090, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Thirteenth Floor", "tagline": "You can go there even though it doesn't exist.", "vote_count": 92, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0139809", "adult": false, "backdrop_path": "/yT0FxS7LogdVEJz3FcdzPetzDTK.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Centropolis Film Productions", "id": 620}], "release_date": "1999-04-16", "popularity": 0.857959615032253, "original_title": "The Thirteenth Floor", "budget": 16000000, "cast": [{"name": "Craig Bierko", "character": "Douglas Hall/John Ferguson/David", "id": 14886, "credit_id": "52fe42e7c3a36847f802b97b", "cast_id": 21, "profile_path": "/if81Ym3HF45GhIJs9qYc1grdCuL.jpg", "order": 0}, {"name": "Armin Mueller-Stahl", "character": "Hannon Fuller/Grierson", "id": 12647, "credit_id": "52fe42e7c3a36847f802b97f", "cast_id": 22, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 1}, {"name": "Gretchen Mol", "character": "Jane Fuller/Natasha Molinaro", "id": 15370, "credit_id": "52fe42e7c3a36847f802b983", "cast_id": 23, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 2}, {"name": "Vincent D'Onofrio", "character": "Jason Whitney/Jerry Ashton", "id": 7132, "credit_id": "52fe42e7c3a36847f802b987", "cast_id": 24, "profile_path": "/4pgzL6eP5Qdf2PhagqTNVEshv5e.jpg", "order": 3}, {"name": "Dennis Haysbert", "character": "Detective Larry McBain", "id": 352, "credit_id": "52fe42e7c3a36847f802b98b", "cast_id": 25, "profile_path": "/mn5Nc5Q31GslpVVWs8p41W4TBma.jpg", "order": 4}, {"name": "Steven Schub", "character": "Detective Zev Bernstein", "id": 15371, "credit_id": "52fe42e7c3a36847f802b98f", "cast_id": 26, "profile_path": null, "order": 5}, {"name": "Jeremy Roberts", "character": "Tom Jones", "id": 15372, "credit_id": "52fe42e7c3a36847f802b993", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Rif Hutton", "character": "Joe", "id": 15373, "credit_id": "52fe42e7c3a36847f802b997", "cast_id": 28, "profile_path": "/7bfADzIlo4ShEFK0dGBWkJbUXTz.jpg", "order": 7}, {"name": "Leon Rippy", "character": "Jane's Lawyer", "id": 15374, "credit_id": "52fe42e7c3a36847f802b99b", "cast_id": 29, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 8}, {"name": "Janet MacLachlan", "character": "Ellen", "id": 15375, "credit_id": "52fe42e7c3a36847f802b99f", "cast_id": 30, "profile_path": "/5YWXEDMcNG9HHxk5fV2vLAyAGmw.jpg", "order": 9}, {"name": "Brad William Henke", "character": "Cop #1", "id": 15376, "credit_id": "52fe42e7c3a36847f802b9a3", "cast_id": 31, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 10}, {"name": "Burt Bulos", "character": "Bellhop", "id": 15377, "credit_id": "52fe42e7c3a36847f802b9a7", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Venessia Valentino", "character": "Concierge", "id": 1174009, "credit_id": "52fe42e7c3a36847f802b9ab", "cast_id": 33, "profile_path": null, "order": 12}, {"name": "Tia Texada", "character": "Natasha's Roommate", "id": 68430, "credit_id": "52fe42e7c3a36847f802b9af", "cast_id": 34, "profile_path": "/7aYFh7W6mUkOBTfqRqSMpOh1i7P.jpg", "order": 13}], "directors": [{"name": "Josef Rusnak", "department": "Directing", "job": "Director", "credit_id": "52fe42e7c3a36847f802b905", "profile_path": null, "id": 15361}], "vote_average": 6.7, "runtime": 100}, "80271": {"poster_path": "/vlG6iHT1RuT9xLj17SmNNUd8jJZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a world connected by YouTube, iTunes, and Facebook, Lola and her friends navigate the peer pressures of high school romance and friendship while dodging their sometimes overbearing and confused parents. When Lola's mom, Anne, \"accidentally\" reads her teenage daughter's racy journal, she realizes just how wide their communication gap has grown.", "video": false, "id": 80271, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "LOL", "tagline": "You can change your status, but not your heart.", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1592873", "adult": false, "backdrop_path": "/qFdqdBiqTsfXYvKDeCfxTucxQzU.jpg", "production_companies": [{"name": "Double Feature Films", "id": 215}], "release_date": "2012-05-04", "popularity": 0.522137609446938, "original_title": "LOL", "budget": 0, "cast": [{"name": "Ashley Greene", "character": "Ashley", "id": 45827, "credit_id": "52fe47b29251416c91072c35", "cast_id": 3, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 0}, {"name": "Demi Moore", "character": "Anne", "id": 3416, "credit_id": "52fe47b29251416c91072c39", "cast_id": 4, "profile_path": "/eLNoOYnxvhpV0BMSkNNnyyo5In7.jpg", "order": 1}, {"name": "Miley Cyrus", "character": "Lola", "id": 76594, "credit_id": "52fe47b29251416c91072c3d", "cast_id": 5, "profile_path": "/4cWl6nJTQMexqZFFDfaJucwhqGY.jpg", "order": 2}, {"name": "Jean-Luc Bilodeau", "character": "Jeremy", "id": 205204, "credit_id": "52fe47b29251416c91072c41", "cast_id": 6, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 3}, {"name": "Fisher Stevens", "character": "", "id": 26473, "credit_id": "52fe47b29251416c91072c45", "cast_id": 7, "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "order": 4}, {"name": "Thomas Jane", "character": "", "id": 11155, "credit_id": "52fe47b29251416c91072c49", "cast_id": 8, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 5}, {"name": "Gina Gershon", "character": "", "id": 11150, "credit_id": "52fe47b29251416c91072c4d", "cast_id": 9, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 6}, {"name": "Adam G. Sevani", "character": "Max", "id": 54503, "credit_id": "52fe47b29251416c91072c51", "cast_id": 10, "profile_path": "/xrDL7kg9CDBGsfczWX4HZ8s1xcN.jpg", "order": 7}, {"name": "Jay Hernandez", "character": "James", "id": 19487, "credit_id": "52fe47b29251416c91072c55", "cast_id": 11, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 8}, {"name": "Douglas Booth", "character": "Kyle", "id": 230680, "credit_id": "52fe47b29251416c91072c59", "cast_id": 12, "profile_path": "/3YMp0bU20VKCzJj6xTEO2u34VRE.jpg", "order": 9}, {"name": "Austin Nichols", "character": "Mr. Ross", "id": 6069, "credit_id": "52fe47b29251416c91072c5d", "cast_id": 13, "profile_path": "/zuPYAE3HC6Sb82vZcef7edN1nkT.jpg", "order": 10}, {"name": "Marlo Thomas", "character": "Gran", "id": 104997, "credit_id": "52fe47b29251416c91072c61", "cast_id": 14, "profile_path": "/pGYjCIod2iyRXo4eKCRMkU6MJjb.jpg", "order": 11}, {"name": "Michelle Burke", "character": "Lauren", "id": 58001, "credit_id": "52fe47b29251416c91072c65", "cast_id": 15, "profile_path": "/3yWWTYt6HJHueLPawrDdyoI2gYs.jpg", "order": 12}, {"name": "Nora Dunn", "character": "Emily's Mom", "id": 4496, "credit_id": "52fe47b29251416c91072c69", "cast_id": 16, "profile_path": "/MOkX8tcOBljXqpTA88KCv09QgI.jpg", "order": 13}, {"name": "Ashley Hinshaw", "character": "Emily", "id": 589098, "credit_id": "52fe47b29251416c91072c6d", "cast_id": 17, "profile_path": "/7PgDm9aDweOtr6y0dmtemoR4nFW.jpg", "order": 14}], "directors": [{"name": "Lisa Azuelos", "department": "Directing", "job": "Director", "credit_id": "52fe47b29251416c91072c2b", "profile_path": "/lJCesY1XCxjJLG405fX6xLyPFHd.jpg", "id": 229568}], "vote_average": 5.8, "runtime": 97}, "80274": {"poster_path": "/zHRNhCkrFEMoudPr0uics5WZe7j.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 125537191, "overview": "Based on the classic novel by Orson Scott Card, Ender's Game is the story of the Earth's most gifted children training to defend their homeplanet in the space wars of the future.", "video": false, "id": 80274, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Ender's Game", "tagline": "This is not a game.", "vote_count": 813, "homepage": "http://www.if-sentinel.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1731141", "adult": false, "backdrop_path": "/98Xb6UIC9TjoVpczIaCTRENZy45.jpg", "production_companies": [{"name": "Digital Domain", "id": 31825}, {"name": "Summit Entertainment", "id": 491}, {"name": "Odd Lot Entertainment", "id": 3263}, {"name": "Chartoff Productions", "id": 3200}, {"name": "Taleswapper", "id": 31826}, {"name": "K/O Paper Products", "id": 7296}], "release_date": "2013-11-01", "popularity": 1.46562526181296, "original_title": "Ender's Game", "budget": 110000000, "cast": [{"name": "Asa Butterfield", "character": "Ender Wiggin", "id": 77996, "credit_id": "52fe47b29251416c91072cd3", "cast_id": 1, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Colonel Hyrum Graff", "id": 3, "credit_id": "52fe47b39251416c91072cdb", "cast_id": 3, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Hailee Steinfeld", "character": "Petra Arkanian", "id": 130640, "credit_id": "52fe47b29251416c91072cd7", "cast_id": 2, "profile_path": "/5IqFYnPBblaDFtNVDXYYDyfZskN.jpg", "order": 2}, {"name": "Abigail Breslin", "character": "Valentine Wiggin", "id": 17140, "credit_id": "52fe47b39251416c91072ce5", "cast_id": 6, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 3}, {"name": "Ben Kingsley", "character": "Mazer Rackham", "id": 2282, "credit_id": "52fe47b39251416c91072d0b", "cast_id": 16, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 4}, {"name": "Viola Davis", "character": "Major Gwen Anderson", "id": 19492, "credit_id": "52fe47b39251416c91072cfb", "cast_id": 13, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}, {"name": "Aramis Knight", "character": "Bean", "id": 204191, "credit_id": "52fe47b39251416c91072ce9", "cast_id": 7, "profile_path": "/8YwHVJtJGvSDg6leZDggV8xKPd8.jpg", "order": 6}, {"name": "Suraj Partha", "character": "Alai", "id": 1266195, "credit_id": "52fe47b39251416c91072d0f", "cast_id": 17, "profile_path": "/nSJG3b1XnAh0XTToI2teAoCciYV.jpg", "order": 7}, {"name": "Mois\u00e9s Arias", "character": "Bonzo Madrid", "id": 57412, "credit_id": "52fe47b39251416c91072ced", "cast_id": 8, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 8}, {"name": "Khylin Rhambo", "character": "Dink Meeker", "id": 994016, "credit_id": "530298759251412198416a7a", "cast_id": 34, "profile_path": "/p3uMyMyAZrTerFdTkhwjrSTW6v1.jpg", "order": 9}, {"name": "Jimmy \"Jax\" Pinchak", "character": "Peter Wiggin", "id": 284628, "credit_id": "52fe47b39251416c91072cf1", "cast_id": 9, "profile_path": "/ztVfjHJ9fbuzgQVUKVPQvEsVCRK.jpg", "order": 10}, {"name": "Conor Carroll", "character": "Bernard", "id": 84409, "credit_id": "52fe47b39251416c91072d17", "cast_id": 19, "profile_path": "/f3CCrxgBoLRD3CtWapsGwlRnZkQ.jpg", "order": 11}, {"name": "Nonso Anozie", "character": "Sergeant Dap", "id": 43547, "credit_id": "54f058b99251417961007d82", "cast_id": 144, "profile_path": "/zNCiBHzoh8c8TB2jycuTJn7kcIo.jpg", "order": 12}, {"name": "Stevie Ray Dallimore", "character": "John Wiggin", "id": 155077, "credit_id": "54f059009251417974007ed6", "cast_id": 145, "profile_path": null, "order": 13}, {"name": "Andrea Powell", "character": "Theresa Wiggin", "id": 106949, "credit_id": "54f05921925141795f00828b", "cast_id": 146, "profile_path": "/62rV4dGQTW7G4wZcSsD6AoVul5L.jpg", "order": 14}, {"name": "Brandon Soo Hoo", "character": "Fly Molo", "id": 1115122, "credit_id": "54f0594cc3a3682e5000126a", "cast_id": 147, "profile_path": "/yZse73nxYlk9Ypr5r43PUkpuZGB.jpg", "order": 15}, {"name": "Han Soto", "character": "Lieutenant Soto", "id": 1116011, "credit_id": "54f05981c3a3687be2001548", "cast_id": 148, "profile_path": "/yNeZnnkO7aux7uKRM7AoOxX3mbG.jpg", "order": 16}, {"name": "Tony Mirrcandani", "character": "Admiral Chjamrajnagar", "id": 1116145, "credit_id": "54f059a69251417971007ecf", "cast_id": 149, "profile_path": null, "order": 17}], "directors": [{"name": "Gavin Hood", "department": "Directing", "job": "Director", "credit_id": "52fe47b39251416c91072ce1", "profile_path": "/1W4NlD5YpGHnXdD2HGeG9bWSqYV.jpg", "id": 13079}], "vote_average": 6.7, "runtime": 114}, "80278": {"poster_path": "/h2VxS5qjkoiHFOBSYJOWSKIc737.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 130708631, "overview": "In December 2004, close-knit family Maria (Naomi Watts), Henry (Ewan McGregor) and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.", "video": false, "id": 80278, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Impossible", "tagline": "Nothing is more powerful than the human spirit.", "vote_count": 634, "homepage": "http://www.loimposible-lapelicula.com/#trailer", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1649419", "adult": false, "backdrop_path": "/r6LI3kLwRUMiyoo5HofgOIlnNCI.jpg", "production_companies": [{"name": "Apaches Entertainment", "id": 8111}, {"name": "Mediaset Espa\u00f1a", "id": 21632}, {"name": "Summit Entertainment", "id": 491}, {"name": "Telecinco Cinema", "id": 2674}, {"name": "Canal+ Espa\u00f1a", "id": 9335}], "release_date": "2012-10-11", "popularity": 0.927236443861116, "original_title": "Lo imposible", "budget": 42000000, "cast": [{"name": "Naomi Watts", "character": "Maria", "id": 3489, "credit_id": "52fe47b39251416c91072e37", "cast_id": 3, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Henry", "id": 3061, "credit_id": "52fe47b39251416c91072e33", "cast_id": 2, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Marta Etura ", "character": "Simone", "id": 587930, "credit_id": "52fe47b39251416c91072e3b", "cast_id": 4, "profile_path": "/oeJdzgkM4u6rnay5zkjlK11deSG.jpg", "order": 2}, {"name": "Geraldine Chaplin", "character": "Old Woman", "id": 400, "credit_id": "52fe47b39251416c91072e3f", "cast_id": 5, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 3}, {"name": "Tom Holland", "character": "Lucas", "id": 1136406, "credit_id": "52fe47b39251416c91072e55", "cast_id": 10, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 4}, {"name": "S\u00f6nke M\u00f6hring", "character": "Karl", "id": 147446, "credit_id": "52fe47b39251416c91072e59", "cast_id": 11, "profile_path": "/bFu7ecYD1ts7m0qO5pxeRndGhAK.jpg", "order": 5}, {"name": "Ploy Jindachote", "character": "Caregiver", "id": 1026231, "credit_id": "52fe47b39251416c91072e5d", "cast_id": 12, "profile_path": "/67WyPlFCHD2E1wtn9U2rWhogEO.jpg", "order": 6}], "directors": [{"name": "Juan Antonio Bayona", "department": "Directing", "job": "Director", "credit_id": "52fe47b39251416c91072e2f", "profile_path": "/wBsdjDeNy9IEGlQ4God71IOmlOC.jpg", "id": 51894}], "vote_average": 6.8, "runtime": 113}, "80280": {"poster_path": "/xVo5vRdq8siODzQTBCbmYaihqre.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 10158047, "overview": "The action now takes place miles away from the original location and partly in broad daylight, giving the film an entirely fresh yet disturbing new reality. The infection has left the building. In a clever twist that draws together the plots of the first two movies, this third part of the saga also works as a decoder to uncover information hidden in the first two films and leaves the door open for the final installment, the future '[REC] 4 Apocalypse.'", "video": false, "id": 80280, "genres": [{"id": 27, "name": "Horror"}], "title": "[REC]\u00b3 Genesis", "tagline": "You may kiss the bride.", "vote_count": 76, "homepage": "http://www.magnetreleasing.com/rec3/", "belongs_to_collection": {"backdrop_path": "/rDzuccVBZSyNVQ26hTRT0DvneVA.jpg", "poster_path": "/jTA37dMZVUFej20EoM5SomKtnYi.jpg", "id": 74508, "name": "[REC] Collection"}, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ca", "name": "Catal\u00e0"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1649444", "adult": false, "backdrop_path": "/uGICpuXLa64Pq4iTbidFU4WUUxf.jpg", "production_companies": [{"name": "Filmax", "id": 3631}], "release_date": "2012-03-30", "popularity": 0.779315305833807, "original_title": "[REC]\u00b3 G\u00e9nesis", "budget": 0, "cast": [{"name": "Leticia Dolera", "character": "Clara", "id": 45060, "credit_id": "52fe47b39251416c91072eaf", "cast_id": 2, "profile_path": "/6YH2rpENETOqi6iRI66Sbr54hvJ.jpg", "order": 0}, {"name": "Javier Botet", "character": "Ni\u00f1a Medeiros", "id": 111090, "credit_id": "52fe47b39251416c91072eb3", "cast_id": 3, "profile_path": "/4u8ZkMMt5ipQgfpb81YudFW5rQG.jpg", "order": 1}, {"name": "Diego Mart\u00edn", "character": "Koldo", "id": 126771, "credit_id": "52fe47b39251416c91072eb7", "cast_id": 4, "profile_path": "/4WKXdMHCmjgEleKBFccr7KWW3Du.jpg", "order": 2}, {"name": "Ismael Mart\u00ednez", "character": "Rafa", "id": 141018, "credit_id": "52fe47b39251416c91072ef1", "cast_id": 14, "profile_path": "/pcTml82WwCSwJcL04mhtQbE4NpA.jpg", "order": 3}, {"name": "\u00c0lex Monner", "character": "Adri\u00e1n", "id": 1031744, "credit_id": "52fe47b49251416c91072ef5", "cast_id": 15, "profile_path": "/yIoNNRAjCIam5HNb3bcoWCB9ybN.jpg", "order": 4}, {"name": "Carla Nieto", "character": "Rebeca Vi\u00f1as", "id": 1031745, "credit_id": "52fe47b49251416c91072ef9", "cast_id": 16, "profile_path": "/17IbDzKeU6e6GyprBoLKQRKdRPN.jpg", "order": 5}, {"name": "Claire Baschet", "character": "Natalie", "id": 1031746, "credit_id": "52fe47b49251416c91072efd", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Mireia Ros", "character": "Menchu", "id": 256062, "credit_id": "52fe47b49251416c91072f01", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Ana Isabel Vel\u00e1squez", "character": "Wendy", "id": 1031748, "credit_id": "52fe47b49251416c91072f05", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Emilio Mencheta", "character": "T\u00edo V\u00edctor", "id": 1031749, "credit_id": "52fe47b49251416c91072f09", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Jose Mellinas", "character": "", "id": 1149925, "credit_id": "52fe47b49251416c91072f0d", "cast_id": 21, "profile_path": null, "order": 10}], "directors": [{"name": "Paco Plaza", "department": "Directing", "job": "Director", "credit_id": "52fe47b39251416c91072eab", "profile_path": "/kj5tBKhLcC8PcZHwGerEMZakXi5.jpg", "id": 54526}], "vote_average": 4.8, "runtime": 80}, "6557": {"poster_path": "/ausIGc4Mm7eHCRaqI197EmWWv7Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 160300000, "overview": "After serving as a bridesmaid 27 times, a young woman wrestles with the idea of standing by her sister's side as her sibling marries the man she's secretly in love with.", "video": false, "id": 6557, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "27 Dresses", "tagline": "She's about to find the perfect fit.", "vote_count": 254, "homepage": "http://www.27dressesthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0988595", "adult": false, "backdrop_path": "/jwV0wmhEqHGxM5nrOPO0ifQug56.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2008-01-10", "popularity": 0.651281485998258, "original_title": "27 Dresses", "budget": 30000000, "cast": [{"name": "Katherine Heigl", "character": "Jane", "id": 25541, "credit_id": "52fe445bc3a36847f8091235", "cast_id": 14, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 0}, {"name": "James Marsden", "character": "Kevin", "id": 11006, "credit_id": "52fe445bc3a36847f8091239", "cast_id": 15, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Malin Akerman", "character": "Tess", "id": 50463, "credit_id": "52fe445bc3a36847f809123d", "cast_id": 16, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 2}, {"name": "Judy Greer", "character": "Casey", "id": 20750, "credit_id": "52fe445bc3a36847f8091241", "cast_id": 17, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 3}, {"name": "Edward Burns", "character": "George", "id": 12833, "credit_id": "52fe445bc3a36847f8091245", "cast_id": 18, "profile_path": "/jR0Z5bkcYxQ1V603v2RuWJZ4Uew.jpg", "order": 4}, {"name": "Brian Kerwin", "character": "Hal", "id": 50464, "credit_id": "52fe445bc3a36847f8091249", "cast_id": 19, "profile_path": "/cC69Vc7F59RKBZUldffhWJWx57A.jpg", "order": 5}, {"name": "Michael Ziegfeld", "character": "Taxi Fahrer Khaleel", "id": 50465, "credit_id": "52fe445bc3a36847f809124d", "cast_id": 20, "profile_path": "/z9chWF86RtEEfEJyY0GvxzxYEM6.jpg", "order": 6}, {"name": "Melora Hardin", "character": "Maureen", "id": 404, "credit_id": "52fe445bc3a36847f8091251", "cast_id": 21, "profile_path": "/uecs9JKOqgYj3PrSGECaFzc3E2r.jpg", "order": 7}, {"name": "David Castro", "character": "Pedro", "id": 50466, "credit_id": "52fe445bc3a36847f8091255", "cast_id": 22, "profile_path": "/9qcalPZ5g1A7zid5VueB77Yq6kq.jpg", "order": 8}, {"name": "Peyton List", "character": "Young Jane", "id": 1254435, "credit_id": "52fe445bc3a36847f8091277", "cast_id": 32, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 9}, {"name": "Jennifer Lim", "character": "Bridal Salesgirl", "id": 1154564, "credit_id": "52fe445bc3a36847f809125f", "cast_id": 25, "profile_path": "/2sxWwQIbR9dyYzYlI95gaZFT0jK.jpg", "order": 10}, {"name": "Danielle Skraastad", "character": "Bride Suzanne", "id": 209730, "credit_id": "52fe445bc3a36847f8091263", "cast_id": 26, "profile_path": "/rsG8yVlPQbR0jAh6SJU8uL8sbgr.jpg", "order": 11}, {"name": "Yetta Gottesman", "character": "Hip Bridesmaid", "id": 203430, "credit_id": "52fe445bc3a36847f8091267", "cast_id": 27, "profile_path": "/k9Ocag8HH6osMpoqRceskNvEk8f.jpg", "order": 12}, {"name": "Erin Fogel", "character": "Shari Rabinowitz", "id": 993689, "credit_id": "52fe445bc3a36847f809126b", "cast_id": 28, "profile_path": "/lE4sLFKOYjJWeVh0U3q1LQVCC3H.jpg", "order": 13}, {"name": "Bern Cohen", "character": "Rabbi", "id": 550851, "credit_id": "52fe445bc3a36847f809126f", "cast_id": 29, "profile_path": "/oj0Gz4UnFr3K3EHX0jIx9fM1Ofc.jpg", "order": 14}, {"name": "Maulik Pancholy", "character": "Trent", "id": 1214403, "credit_id": "52fe445bc3a36847f809127b", "cast_id": 33, "profile_path": "/z0MJgOgDyViARuDT9u3Wo9VyY5W.jpg", "order": 15}, {"name": "Krysten Ritter", "character": "Gina the Goth", "id": 78080, "credit_id": "52fe445bc3a36847f8091273", "cast_id": 31, "profile_path": "/e1RzQfMHsWVB3IIjAbsc07nMA4c.jpg", "order": 16}], "directors": [{"name": "Anne Fletcher", "department": "Directing", "job": "Director", "credit_id": "52fe445ac3a36847f80911ef", "profile_path": "/piR4AwJX9lqJt454iVsI7sQf6Y0.jpg", "id": 29214}], "vote_average": 5.9, "runtime": 111}, "22947": {"poster_path": "/mlH82Vp7U6sKTS0Rqm4ZU61CypY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163670000, "overview": "George Clooney plays the dry cynical character of Ryan Bingham, an executive who specializes in \"downsizing\". Ryan lives out of his suitcase, traveling the country for the sole purpose terminating unwanted employees day after day. Just as Ryan is about to reach his life-long goal of the ten million mile frequent flyer mark some major changes come his way. Changes that threaten to crack the cold heartless exterior that is Ryan Bingham.", "video": false, "id": 22947, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Up in the Air", "tagline": "The story of a man ready to make a connection.", "vote_count": 380, "homepage": "http://www.theupintheairmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1193138", "adult": false, "backdrop_path": "/nlCfq030puwR9P98gBJ4rRK7LUF.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2009-09-05", "popularity": 0.583327333511754, "original_title": "Up in the Air", "budget": 25000000, "cast": [{"name": "George Clooney", "character": "Ryan Bingham", "id": 1461, "credit_id": "52fe4457c3a368484e01d815", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Vera Farmiga", "character": "Alex", "id": 21657, "credit_id": "52fe4457c3a368484e01d819", "cast_id": 5, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Natalie", "id": 84223, "credit_id": "52fe4457c3a368484e01d81d", "cast_id": 6, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Jason Bateman", "character": "Craig Gregory", "id": 23532, "credit_id": "52fe4457c3a368484e01d821", "cast_id": 7, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 3}, {"name": "Melanie Lynskey", "character": "Julie Bingham", "id": 15091, "credit_id": "52fe4457c3a368484e01d825", "cast_id": 8, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 4}, {"name": "Sam Elliott", "character": "Maynard Finch", "id": 16431, "credit_id": "52fe4457c3a368484e01d829", "cast_id": 11, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 6}, {"name": "Amy Morton", "character": "Kara Bingham", "id": 26930, "credit_id": "52fe4457c3a368484e01d82d", "cast_id": 12, "profile_path": "/cf0V37Bw9BX2jlBCxrVETz0jkcl.jpg", "order": 7}, {"name": "J.K. Simmons", "character": "Bob", "id": 18999, "credit_id": "52fe4457c3a368484e01d831", "cast_id": 13, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 8}, {"name": "Danny McBride", "character": "Jim Miller", "id": 62862, "credit_id": "52fe4457c3a368484e01d835", "cast_id": 15, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 9}, {"name": "Zach Galifianakis", "character": "Steve", "id": 58225, "credit_id": "52fe4457c3a368484e01d839", "cast_id": 16, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 10}, {"name": "Steve Eastin", "character": "Samuels", "id": 9276, "credit_id": "52fe4457c3a368484e01d83d", "cast_id": 18, "profile_path": "/fTsO3ZWAA4ZadRCftYyMbBCt6Mm.jpg", "order": 11}, {"name": "Adrienne Lamping", "character": "Tammy", "id": 142384, "credit_id": "52fe4457c3a368484e01d841", "cast_id": 19, "profile_path": "/mVuTnyGto4EEcb45JbrvAc9hy1h.jpg", "order": 12}, {"name": "Tamala Jones", "character": "Karen Barnes", "id": 59154, "credit_id": "52fe4457c3a368484e01d845", "cast_id": 20, "profile_path": "/gG0PHm94ArObvF8LqbuoaWP2ye5.jpg", "order": 13}, {"name": "Chris Lowell", "character": "Kevin", "id": 84300, "credit_id": "52fe4457c3a368484e01d849", "cast_id": 21, "profile_path": "/7j5M2vrnMBE0dEHKPQECiE8WSCe.jpg", "order": 14}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a368484e01d805", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.5, "runtime": 109}, "14756": {"poster_path": "/8knFfuqW289DJi2cpPl4RVTDkbo.jpg", "production_countries": [{"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 21888598, "overview": "A semi-biographical account of Yip Man, the first martial arts master to teach the Chinese martial art of Wing Chun. The film focuses on events surrounding Ip that took place in the city of Foshan between the 1930s to 1940s during the Second Sino-Japanese War. Directed by Wilson Yip, the film stars Donnie Yen in the lead role, and features fight choreography by Sammo Hung.", "video": false, "id": 14756, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Ip Man", "tagline": "The celebrated Kung Fu master of Bruce Lee.", "vote_count": 584, "homepage": "http://www.ipman-movie.com/", "belongs_to_collection": {"backdrop_path": "/1oCPXe4e0VHZTJX4nLkvxzayXK9.jpg", "poster_path": "/8GDy6v6mnlQ8YwSBloBvQFrs6iu.jpg", "id": 70068, "name": "Ip Man Collection"}, "original_language": "cn", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1220719", "adult": false, "backdrop_path": "/lcRGF2RpurdvBiSQVocfzRrxV9u.jpg", "production_companies": [{"name": "Mandarin Films Distribution Co.", "id": 4054}], "release_date": "2008-12-12", "popularity": 1.16459915469272, "original_title": "\u8449\u554f", "budget": 11715578, "cast": [{"name": "Donnie Yen", "character": "Ip Man", "id": 1341, "credit_id": "52fe46169251416c7506caa3", "cast_id": 9, "profile_path": "/vlKBbOc0htUsDGvcxeULcFXDMRo.jpg", "order": 0}, {"name": "Simon Yam", "character": "Chow Ching-Chuen", "id": 20519, "credit_id": "52fe46169251416c7506ca7b", "cast_id": 1, "profile_path": "/Apus3dKsGBSRgsQg6N5T41F10at.jpg", "order": 1}, {"name": "Xing Yu", "character": "Master Zealot Lin", "id": 78878, "credit_id": "52fe46169251416c7506caa7", "cast_id": 10, "profile_path": "/thV1sYGuyGe2DJhOJzxjZCiJDlx.jpg", "order": 2}, {"name": "Wong Yau-Nam", "character": "Shao Dan Yuan", "id": 105422, "credit_id": "52fe46169251416c7506caab", "cast_id": 11, "profile_path": "/4UmBIDgFWcCL2eIW4beTpIGNOOI.jpg", "order": 3}, {"name": "Chen Zhi Hui", "character": "Master Liao", "id": 224927, "credit_id": "52fe46169251416c7506caaf", "cast_id": 12, "profile_path": "/2xvVLsDA8x2ezMZLwvOpbfIf1TB.jpg", "order": 4}, {"name": "Gordon Lam Ka-Tung", "character": "Captain Lei Chiu", "id": 83820, "credit_id": "52fe46169251416c7506cab9", "cast_id": 14, "profile_path": "/oG1viIlfpK4MXaPQSqJwJSi5u1M.jpg", "order": 5}, {"name": "Lynn Hung", "character": "Cheung Wing-Sing", "id": 117760, "credit_id": "52fe46169251416c7506cabd", "cast_id": 16, "profile_path": "/fcpvkrle1JA944eylXERw3gqgus.jpg", "order": 6}, {"name": "Hiroyuki Ikeuchi", "character": "Miura", "id": 234641, "credit_id": "52fe46169251416c7506cac1", "cast_id": 17, "profile_path": "/ebgO93vtBz8xskTh5QMC1UMkShD.jpg", "order": 7}, {"name": "Fan Siu-Wong", "character": "Jin Shan Zhao / Kam Shan-Chau", "id": 130598, "credit_id": "52fe46169251416c7506cac5", "cast_id": 18, "profile_path": "/tFfXqPjqhVItv5lkUVtSMbw1SPd.jpg", "order": 8}, {"name": "Tenma Shibuya", "character": "Colonel Sato", "id": 1360176, "credit_id": "5407370c0e0a261882001751", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Wilson Yip", "department": "Directing", "job": "Director", "credit_id": "52fe46169251416c7506ca81", "profile_path": "/6TDvEZYjxBLqZW6ER5fBi8d0ydK.jpg", "id": 63571}], "vote_average": 7.3, "runtime": 108}, "9286": {"poster_path": "/fO7QneBmdE9dEJUewiYMfsEp3IL.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 117719158, "overview": "In this third installment of the Final Destination series, a student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself which seeks out those who escaped their fate.", "video": false, "id": 9286, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Final Destination 3", "tagline": "This Ride Will Be The Death Of You.", "vote_count": 267, "homepage": "", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0414982", "adult": false, "backdrop_path": "/6sCto39wgQGCzDojAr5c4UPBjDZ.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Zide-Perry Productions", "id": 3169}, {"name": "Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 1 KG", "id": 12067}, {"name": "Hard Eight Pictures", "id": 48772}, {"name": "Matinee Pictures", "id": 48785}, {"name": "Practical Pictures", "id": 48788}], "release_date": "2006-02-10", "popularity": 0.66330952786043, "original_title": "Final Destination 3", "budget": 25000000, "cast": [{"name": "Mary Elizabeth Winstead", "character": "Wendy Christensen", "id": 17628, "credit_id": "52fe44e1c3a36847f80afabf", "cast_id": 11, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 0}, {"name": "Ryan Merriman", "character": "Kevin Fischer", "id": 57136, "credit_id": "52fe44e1c3a36847f80afac3", "cast_id": 12, "profile_path": "/sdo2IMtBRjiIJOLpmBrebAJaF89.jpg", "order": 1}, {"name": "Kris Lemche", "character": "Ian McKinley", "id": 20176, "credit_id": "52fe44e1c3a36847f80afac7", "cast_id": 13, "profile_path": "/tugdbJ5M7wTNb6v52jqhEkWNDtu.jpg", "order": 2}, {"name": "Alexz Johnson", "character": "Erin Ulmer", "id": 57137, "credit_id": "52fe44e1c3a36847f80afacb", "cast_id": 14, "profile_path": "/eqdre0uSyBI1Nf5Ru6k19pO2HVf.jpg", "order": 3}, {"name": "Sam Easton", "character": "Frankie Cheeks", "id": 37700, "credit_id": "52fe44e1c3a36847f80afacf", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Jesse Moss", "character": "Jason Wise", "id": 59926, "credit_id": "52fe44e1c3a36847f80afad3", "cast_id": 16, "profile_path": "/d4FY9ZdC5imLXq3wp6eCBUjy8vq.jpg", "order": 5}, {"name": "Gina Holden", "character": "Carrie Dreyer", "id": 33336, "credit_id": "52fe44e1c3a36847f80afad7", "cast_id": 17, "profile_path": "/1yw48NuEtDQ6VC5TWAN86VJYMOX.jpg", "order": 6}, {"name": "Texas Battle", "character": "Lewis Romero", "id": 53185, "credit_id": "52fe44e1c3a36847f80afadb", "cast_id": 18, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 7}, {"name": "Chelan Simmons", "character": "Ashley Freund", "id": 27775, "credit_id": "52fe44e1c3a36847f80afadf", "cast_id": 19, "profile_path": "/gNeWQz9oqFiZ8B8Tsr8Nmu5km28.jpg", "order": 8}, {"name": "Crystal Lowe", "character": "Ashlyn Halperin", "id": 58393, "credit_id": "52fe44e1c3a36847f80afae3", "cast_id": 20, "profile_path": "/qnD1hQSJNrKPWZaiYFrUGUfZLBV.jpg", "order": 9}, {"name": "Amanda Crew", "character": "Julie Christensen", "id": 58370, "credit_id": "52fe44e1c3a36847f80afae7", "cast_id": 21, "profile_path": "/agkUNwyootzekZzeEJ4oV68oRJx.jpg", "order": 10}, {"name": "Ecstasia Sanders", "character": "Amber Regan", "id": 77052, "credit_id": "52fe44e1c3a36847f80afaef", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Jody Racicot", "character": "Bludworth", "id": 33339, "credit_id": "52fe44e1c3a36847f80afaf3", "cast_id": 24, "profile_path": "/aayVafgphvhN4aHOBVxA6sI88t6.jpg", "order": 13}, {"name": "Patrick Gallagher", "character": "Colquitt", "id": 17837, "credit_id": "52fe44e2c3a36847f80afaf7", "cast_id": 25, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 14}, {"name": "Maggie Ma", "character": "Perry Malinowski", "id": 59247, "credit_id": "54e9d8c3c3a36836ed004122", "cast_id": 28, "profile_path": "/leaxTMd5VihtWO5BhOC2R7wWTck.jpg", "order": 15}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe44e1c3a36847f80afa85", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 5.6, "runtime": 93}, "162215": {"poster_path": "/p2uUWeuPTePuofay6oClacXnHrC.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "An American girl on holiday in the English countryside with her family finds herself in hiding and fighting for her survival as war breaks out.", "video": false, "id": 162215, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "How I Live Now", "tagline": "Love will lead you home", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1894476", "adult": false, "backdrop_path": "/4jrOUW5EA5NSMnXIJXUcK4Bny9n.jpg", "production_companies": [{"name": "BFI Film Fund", "id": 16877}, {"name": "Passion Pictures", "id": 11594}, {"name": "Cowboy Films", "id": 245}], "release_date": "2013-11-08", "popularity": 1.01857082515443, "original_title": "How I Live Now", "budget": 0, "cast": [{"name": "Saoirse Ronan", "character": "Daisy", "id": 36592, "credit_id": "52fe4c56c3a36847f8229329", "cast_id": 1, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Tom Holland", "character": "Isaac", "id": 1136406, "credit_id": "52fe4c56c3a36847f822932d", "cast_id": 2, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 1}, {"name": "Anna Chancellor", "character": "Aunt Penn", "id": 10731, "credit_id": "52fe4c56c3a36847f8229331", "cast_id": 3, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 2}, {"name": "George MacKay", "character": "Eddie", "id": 146750, "credit_id": "52fe4c56c3a36847f822933b", "cast_id": 5, "profile_path": "/8V5uGgbl57gbAyj59kIRFFdvoXd.jpg", "order": 3}, {"name": "Corey Johnson", "character": "Consular Official", "id": 17199, "credit_id": "52fe4c56c3a36847f822933f", "cast_id": 6, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 4}, {"name": "Sophie Ellis", "character": "Farm Girl", "id": 1198487, "credit_id": "52fe4c56c3a36847f8229343", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Harley Bird", "character": "Piper", "id": 1198488, "credit_id": "52fe4c56c3a36847f8229347", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Sabrina Dickens", "character": "Guerilla Soldier Girlfriend", "id": 1198489, "credit_id": "52fe4c56c3a36847f822934b", "cast_id": 9, "profile_path": null, "order": 7}, {"name": "Natasha Jones", "character": "Woman in Truck", "id": 1198490, "credit_id": "52fe4c56c3a36847f822934f", "cast_id": 10, "profile_path": null, "order": 8}], "directors": [{"name": "Kevin Macdonald", "department": "Directing", "job": "Director", "credit_id": "52fe4c56c3a36847f8229337", "profile_path": "/k46Er5HaZ8FqbNEpBXf9FlnxxOX.jpg", "id": 17350}], "vote_average": 6.4, "runtime": 101}, "55721": {"poster_path": "/x5ucaJZ4FP589Gn3I8l3ZFV3Nl8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 206686000, "overview": "Annie\u2019s life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian\u2019s maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she\u2019ll show Lillian and her bridesmaids just how far you\u2019ll go for someone you love.", "video": false, "id": 55721, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bridesmaids", "tagline": "Save the date", "vote_count": 437, "homepage": "http://www.bridesmaidsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1478338", "adult": false, "backdrop_path": "/1J6s0TW6nhfjwoffzDL98Synw5H.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}], "release_date": "2011-04-28", "popularity": 0.632209276973591, "original_title": "Bridesmaids", "budget": 32500000, "cast": [{"name": "Kristen Wiig", "character": "Annie", "id": 41091, "credit_id": "52fe48dcc3a36847f817d667", "cast_id": 4, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Helen", "id": 9827, "credit_id": "52fe48dcc3a36847f817d65f", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Jon Hamm", "character": "Ted", "id": 65717, "credit_id": "52fe48dcc3a36847f817d663", "cast_id": 3, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 2}, {"name": "Melissa McCarthy", "character": "Megan", "id": 55536, "credit_id": "52fe48dcc3a36847f817d66b", "cast_id": 5, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 3}, {"name": "Maya Rudolph", "character": "Lillian", "id": 52792, "credit_id": "52fe48dcc3a36847f817d67b", "cast_id": 8, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 4}, {"name": "Chris O'Dowd", "character": "Officer Rhodes", "id": 40477, "credit_id": "52fe48dcc3a36847f817d67f", "cast_id": 9, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 5}, {"name": "Ellie Kemper", "character": "Becca", "id": 475512, "credit_id": "52fe48ddc3a36847f817d68f", "cast_id": 12, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 6}, {"name": "Jessica St. Clair", "character": "Whitney", "id": 200237, "credit_id": "52fe48ddc3a36847f817d693", "cast_id": 13, "profile_path": "/wdYjtfUHGtUV55U9iK1E3E2Do4q.jpg", "order": 7}, {"name": "Tom Yi", "character": "Jewelry Store Couple", "id": 305993, "credit_id": "52fe48ddc3a36847f817d697", "cast_id": 14, "profile_path": "/9PQ91swJgHLJsoVZkcKGfd9NWgw.jpg", "order": 8}, {"name": "Elaine Kao", "character": "Jewelry Store Couple", "id": 117775, "credit_id": "52fe48ddc3a36847f817d69b", "cast_id": 15, "profile_path": "/esREDboeuXIrtXHLEroKHrDoVNe.jpg", "order": 9}, {"name": "Michael Hitchcock", "character": "Don Cholodecki", "id": 75463, "credit_id": "52fe48ddc3a36847f817d69f", "cast_id": 16, "profile_path": "/6OuyZXfWMJ82c96VHOOLU1xFPG0.jpg", "order": 10}, {"name": "Kali Hawk", "character": "Kahlua", "id": 89462, "credit_id": "52fe48ddc3a36847f817d6a3", "cast_id": 17, "profile_path": "/kx8aBd8FcC1gqWQ2OMV63hFza2Z.jpg", "order": 11}, {"name": "Joe Nunez", "character": "Oscar the Security Guard", "id": 54696, "credit_id": "52fe48ddc3a36847f817d6a7", "cast_id": 18, "profile_path": "/ah78XNC4ygtGFHP1kD4BR4j8RbR.jpg", "order": 12}, {"name": "Rebel Wilson", "character": "Brynn", "id": 221581, "credit_id": "52fe48ddc3a36847f817d6ab", "cast_id": 19, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 13}, {"name": "Matt Lucas", "character": "Gil", "id": 26209, "credit_id": "52fe48ddc3a36847f817d6af", "cast_id": 20, "profile_path": "/jeDy8LONCjOapC551F1EKCurWan.jpg", "order": 14}, {"name": "Jill Clayburgh", "character": "Annie's Mom", "id": 20362, "credit_id": "52fe48ddc3a36847f817d6b3", "cast_id": 21, "profile_path": "/twrfhIvbqHuJ7nXVpehvU6nyi6R.jpg", "order": 15}, {"name": "Wendi McLendon-Covey", "character": "Rita", "id": 63234, "credit_id": "52fe48ddc3a36847f817d6b7", "cast_id": 22, "profile_path": "/uEZjQVJjwzMvMkvXZu1gDKq8lA6.jpg", "order": 16}, {"name": "Greg Tuculescu", "character": "Kevin", "id": 570559, "credit_id": "52fe48ddc3a36847f817d6bb", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Terry Crews", "character": "Boot Camp Instructor", "id": 53256, "credit_id": "52fe48ddc3a36847f817d6bf", "cast_id": 24, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 18}, {"name": "Carnie Wilson", "character": "Carnie Wilson", "id": 1186394, "credit_id": "52fe48ddc3a36847f817d6cf", "cast_id": 27, "profile_path": "/mjZW1ykrZjWlS52cyZEVnCtOpSy.jpg", "order": 19}, {"name": "Wendy Wilson", "character": "Wendy Wilson", "id": 1186421, "credit_id": "52fe48ddc3a36847f817d6d3", "cast_id": 28, "profile_path": "/ps3sXdFTSCoY2wgN0g7qU661CI2.jpg", "order": 20}, {"name": "Chynna Philips", "character": "Chynna Philips", "id": 1186422, "credit_id": "52fe48ddc3a36847f817d6d7", "cast_id": 29, "profile_path": "/xIk4incToGSiWSPiMKvDsSNMqLE.jpg", "order": 21}, {"name": "Brennan Crewe", "character": "", "id": 1192944, "credit_id": "52fe48ddc3a36847f817d6db", "cast_id": 30, "profile_path": "/6REyDX6OIDtFeEAhzxdS1ZumJgn.jpg", "order": 22}, {"name": "Mia Rose Frampton", "character": "Jewelry Store Girl", "id": 1169063, "credit_id": "533b4e139251413bad0002f2", "cast_id": 31, "profile_path": "/3wUGNSzifgTMfRjT9w7kuOoccvH.jpg", "order": 23}], "directors": [{"name": "Paul Feig", "department": "Directing", "job": "Director", "credit_id": "52fe48dcc3a36847f817d65b", "profile_path": "/6CI4revRSc9qCy6kVlyGntHblcI.jpg", "id": 116805}], "vote_average": 6.4, "runtime": 125}, "22954": {"poster_path": "/esOAiQi9jLb9JyLIyLt2JuVd8fa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 122233971, "overview": "Newly elected President Nelson Mandela knows his nation remains racially and economically divided in the wake of apartheid. Believing he can bring his people together through the universal language of sport, Mandela rallies South Africa's rugby team as they make their historic run to the 1995 Rugby World Cup Championship match.", "video": false, "id": 22954, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "Invictus", "tagline": "His people needed a leader. He gave them a champion.", "vote_count": 299, "homepage": "http://invictusmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1057500", "adult": false, "backdrop_path": "/xYBKpoSlw2bkk515alcFwoGiigc.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Revelations Entertainment", "id": 906}], "release_date": "2009-12-10", "popularity": 1.13433981100608, "original_title": "Invictus", "budget": 50000000, "cast": [{"name": "Morgan Freeman", "character": "Nelson Mandela", "id": 192, "credit_id": "52fe4457c3a368484e01d931", "cast_id": 3, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Matt Damon", "character": "Francois Pienaar", "id": 1892, "credit_id": "52fe4457c3a368484e01d955", "cast_id": 13, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 1}, {"name": "Tony Kgoroge", "character": "Jason Tshabalala", "id": 2606, "credit_id": "52fe4457c3a368484e01d935", "cast_id": 5, "profile_path": "/6SYs40gVJNmzKjz4kFQOwXG5BH6.jpg", "order": 2}, {"name": "Patrick Mofokeng", "character": "Linga Moonsamy", "id": 63136, "credit_id": "52fe4457c3a368484e01d939", "cast_id": 6, "profile_path": "/xLLSvpScEFg2oGShGww99JOwCo7.jpg", "order": 3}, {"name": "Matt Stern", "character": "Hendrick Booyens", "id": 109649, "credit_id": "52fe4457c3a368484e01d93d", "cast_id": 7, "profile_path": "/rtCVR8ajjLXuQ2Ss5DqpL1GsOG0.jpg", "order": 4}, {"name": "Julian Lewis Jones", "character": "Etienne Feyder", "id": 109650, "credit_id": "52fe4457c3a368484e01d941", "cast_id": 8, "profile_path": "/yYB4vsidFakP6oAfeXU3PZvDpM6.jpg", "order": 5}, {"name": "Adjoa Andoh", "character": "Brenda Mazibuko", "id": 109651, "credit_id": "52fe4457c3a368484e01d945", "cast_id": 9, "profile_path": "/oJ4JLVfcA7kEQGA5ZBAqbgNH6uw.jpg", "order": 6}, {"name": "Marguerite Wheatley", "character": "Nerine", "id": 109652, "credit_id": "52fe4457c3a368484e01d949", "cast_id": 10, "profile_path": "/rM7srhKg4fAlPCjEbndEz8bavXM.jpg", "order": 7}, {"name": "Leleti Khumalo", "character": "Mary", "id": 2609, "credit_id": "52fe4457c3a368484e01d94d", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Patrick Lyster", "character": "Mr. Pienaar", "id": 109653, "credit_id": "52fe4457c3a368484e01d951", "cast_id": 12, "profile_path": "/175ns2a0dS1Q8Dg3S9xlZKSH7ge.jpg", "order": 9}, {"name": "Scott Eastwood", "character": "Joel Stransky", "id": 928572, "credit_id": "52fe4457c3a368484e01d96b", "cast_id": 17, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 10}, {"name": "Langley Kirkwood", "character": "George", "id": 37093, "credit_id": "52fe4457c3a368484e01d96f", "cast_id": 18, "profile_path": "/tjX3GUBhLujP4s3KCM763V7bQge.jpg", "order": 11}, {"name": "Bonnie Henna", "character": "Zindzi", "id": 15544, "credit_id": "52fe4457c3a368484e01d9af", "cast_id": 32, "profile_path": "/5MMvcT7PIIXl0PrOrnaOvx7tu0j.jpg", "order": 12}, {"name": "Danny Keough", "character": "Rugby President", "id": 93919, "credit_id": "52fe4457c3a368484e01d9b3", "cast_id": 33, "profile_path": "/uTxupzSk2IpTIHrhyybPkXR4P8K.jpg", "order": 13}, {"name": "Robin Smith", "character": "Johan De Villiers", "id": 1071690, "credit_id": "52fe4457c3a368484e01d9b7", "cast_id": 34, "profile_path": "/lBYwXNeGupuaFWsxqnoJmpCTTVZ.jpg", "order": 14}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4457c3a368484e01d927", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 6.9, "runtime": 134}, "72113": {"poster_path": "/1nhY2l0SffJ5nK8FaeiRaMblN3d.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Brooklyn Bridge Park, eleven year old Zachary Cowan strikes his eleven year old classmate Ethan Longstreet across the face with a stick after an argument. Among the more serious of Ethan's injuries is a permanently missing tooth and the possibility of a second tooth also being lost. Their respective parents learn of the altercation through Ethan's parents questioning him about his injuries. The Longstreet parents invite the Cowan parents to their Brooklyn apartment to deal with the incident in a civilized manner. They are: Penelope Longstreet, whose idea it was to invite the Cowans, she whose priorities in life include human rights and justice; Michael Longstreet, who tries to be as accommodating as possible to retain civility in any situation; Nancy Cowan, a nervous and emotionally stressed woman; and Alan Cowan, who is married more to his work as evidenced by the attachment he has to his cell phone and taking work calls at the most inopportune times.", "video": false, "id": 72113, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Carnage", "tagline": "A new comedy of no manners", "vote_count": 158, "homepage": "http://www.sonyclassics.com/carnage/site/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1692486", "adult": false, "backdrop_path": "/wD1flEI4QYrFKAaDq0ymWlShGGe.jpg", "production_companies": [{"name": "Constantin Film Production", "id": 7158}], "release_date": "2011-09-16", "popularity": 0.639298230738854, "original_title": "Carnage", "budget": 0, "cast": [{"name": "Kate Winslet", "character": "Nancy", "id": 204, "credit_id": "52fe4859c3a368484e0f462b", "cast_id": 3, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Jodie Foster", "character": "Penelope", "id": 1038, "credit_id": "52fe4859c3a368484e0f462f", "cast_id": 4, "profile_path": "/eAIE6bnOQ8rm0f933gyeAQdIwrP.jpg", "order": 1}, {"name": "Christoph Waltz", "character": "Alan", "id": 27319, "credit_id": "52fe4859c3a368484e0f4633", "cast_id": 5, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 2}, {"name": "John C. Reilly", "character": "Michael", "id": 4764, "credit_id": "52fe4859c3a368484e0f4637", "cast_id": 7, "profile_path": "/kUo2TPQp4kOWWvijvkjLl0v9PQB.jpg", "order": 3}], "directors": [{"name": "Roman Polanski", "department": "Directing", "job": "Director", "credit_id": "52fe4859c3a368484e0f4621", "profile_path": "/qI12N0XzSQanAUv6sTucTLWi3az.jpg", "id": 3556}], "vote_average": 6.9, "runtime": 80}, "293299": {"poster_path": "/4XFN435sO7t9sMiWGMtWcV9qfmq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This Oscar-winning animated short film tells the story of one man's love life is seen through the eyes of his best friend and dog, Winston, and revealed bite by bite through the meals they share.", "video": false, "id": 293299, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Feast", "tagline": "", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3689498", "adult": false, "backdrop_path": "/60cvl34Go8dvtDiHs9L82a79VXm.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2014-11-07", "popularity": 1.46769453386656, "original_title": "Feast", "budget": 0, "cast": [{"name": "Tommy Snider", "character": "James", "id": 204419, "credit_id": "54f825f292514124110041f9", "cast_id": 9, "profile_path": null, "order": 0}, {"name": "Katie Lowes", "character": "Additional Voices (voice)", "id": 108253, "credit_id": "54f8210ec3a36833bb003d51", "cast_id": 7, "profile_path": "/yn29ZcNXEyFewrrNtcCpyBfjXnR.jpg", "order": 2}, {"name": "Ben Bledsoe", "character": "Additional Voices", "id": 989809, "credit_id": "54f9071a9251414a06000488", "cast_id": 10, "profile_path": "/urbnSojnuamgoqwHzO2UzqAqo8L.jpg", "order": 4}], "directors": [{"name": "Patrick Osborne", "department": "Directing", "job": "Director", "credit_id": "54197dffc3a3686da70014bc", "profile_path": null, "id": 1364881}], "vote_average": 8.5, "runtime": 6}, "22970": {"poster_path": "/t8cW3FSCDYCaWRiNHSvI6SDuWeA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 66486080, "overview": "Five college friends spend the weekend at a remote cabin in the woods, where they get more than they bargained for. Together, they must discover the truth behind the cabin in the woods.", "video": false, "id": 22970, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Cabin in the Woods", "tagline": "If you hear a strange sound outside... have sex", "vote_count": 798, "homepage": "http://www.discoverthecabininthewoods.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1259521", "adult": false, "backdrop_path": "/214TKe8WBBbFXVrBRV9RECeE4oW.jpg", "production_companies": [{"name": "LionsGate", "id": 7571}, {"name": "Mutant Enemy Productions", "id": 10567}], "release_date": "2012-04-12", "popularity": 1.65939020703361, "original_title": "The Cabin in the Woods", "budget": 30000000, "cast": [{"name": "Kristen Connolly", "character": "Dana Polk", "id": 210824, "credit_id": "52fe4458c3a368484e01dc0b", "cast_id": 9, "profile_path": "/lP7rReayiC5hDhJJjCwUy3IFfTC.jpg", "order": 0}, {"name": "Chris Hemsworth", "character": "Curt Vaughn", "id": 74568, "credit_id": "52fe4458c3a368484e01dc03", "cast_id": 7, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 1}, {"name": "Anna Hutchison", "character": "Jules Louden", "id": 486603, "credit_id": "52fe4458c3a368484e01dc17", "cast_id": 12, "profile_path": "/8yAMcrMbWZS8DXpuoelIM7PxZBR.jpg", "order": 2}, {"name": "Fran Kranz", "character": "Marty Mikalski", "id": 51533, "credit_id": "52fe4458c3a368484e01dc07", "cast_id": 8, "profile_path": "/rcd82G7YYnJNhA9Vz0bMOmM4dAK.jpg", "order": 3}, {"name": "Jesse Williams", "character": "Holden McCrea", "id": 210695, "credit_id": "52fe4458c3a368484e01dbff", "cast_id": 6, "profile_path": "/9nOsvWaXwKzHVeSbb7N6YzhAzty.jpg", "order": 4}, {"name": "Richard Jenkins", "character": "Richard Sitterson", "id": 28633, "credit_id": "52fe4458c3a368484e01dbf7", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 5}, {"name": "Bradley Whitford", "character": "Steve Hadley", "id": 11367, "credit_id": "52fe4458c3a368484e01dbfb", "cast_id": 5, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 6}, {"name": "Brian J. White", "character": "Daniel Truman (as Brian White)", "id": 31137, "credit_id": "52fe4458c3a368484e01dc0f", "cast_id": 10, "profile_path": "/A5xkyJ0hI6F81hHRm0xBOQEYonz.jpg", "order": 7}, {"name": "Amy Acker", "character": "Wendy Lin", "id": 81133, "credit_id": "52fe4458c3a368484e01dc13", "cast_id": 11, "profile_path": "/dEjVHDwZ50VUjH9rxHjoKqrfA9e.jpg", "order": 8}, {"name": "Tim De Zarn", "character": "Mordecai (as Tim DeZarn)", "id": 956719, "credit_id": "52fe4458c3a368484e01dc47", "cast_id": 21, "profile_path": "/bvj6Kaq1VzAEBkqCGVDvOaQKOhi.jpg", "order": 9}, {"name": "Tom Lenk", "character": "Ronald The Intern", "id": 62849, "credit_id": "52fe4458c3a368484e01dc6d", "cast_id": 28, "profile_path": "/nXCTMTV3pTgpMlpIKwQrZk6stQ6.jpg", "order": 10}, {"name": "Dan Payne", "character": "Matthew Buckner", "id": 85505, "credit_id": "52fe4458c3a368484e01dc71", "cast_id": 29, "profile_path": "/fbp4DoIjJqTe7GnnD5sTirKnto5.jpg", "order": 11}, {"name": "Jodelle Ferland", "character": "Patience Buckner", "id": 8338, "credit_id": "52fe4458c3a368484e01dc21", "cast_id": 14, "profile_path": "/hdg5z3IW67kD8m49JnwUYcg4IM.jpg", "order": 12}, {"name": "Dan Shea", "character": "Father Buckner", "id": 1222908, "credit_id": "52fe4458c3a368484e01dc75", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Maya Massar", "character": "Mother Buckner", "id": 172997, "credit_id": "52fe4458c3a368484e01dc79", "cast_id": 31, "profile_path": "/wEqC0RkeyTVmknuKZKL5RQYuqIe.jpg", "order": 14}, {"name": "Matt Drake", "character": "Judah Buckner", "id": 1275701, "credit_id": "52fe4458c3a368484e01dc7d", "cast_id": 32, "profile_path": null, "order": 15}, {"name": "Nels Lennarson", "character": "Clean Man", "id": 63564, "credit_id": "52fe4458c3a368484e01dc81", "cast_id": 33, "profile_path": "/fA6Qt7EdoVO4kLWyg4KneFSIPwl.jpg", "order": 16}, {"name": "Rukiya Bernard", "character": "Labcoat Girl", "id": 83948, "credit_id": "52fe4458c3a368484e01dc85", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Peter Kelamis", "character": "Demo Guy", "id": 89551, "credit_id": "52fe4458c3a368484e01dc89", "cast_id": 35, "profile_path": null, "order": 18}, {"name": "Adrian Holmes", "character": "Demo Guy", "id": 33348, "credit_id": "52fe4458c3a368484e01dc8d", "cast_id": 36, "profile_path": "/jGvsYbrvsok5QAYEJ9V8VHvDy9I.jpg", "order": 19}, {"name": "Chelah Horsdal", "character": "Demo Girl", "id": 70175, "credit_id": "52fe4458c3a368484e01dc91", "cast_id": 37, "profile_path": "/v6Av8yrD3C34ngdROP31rNr9vD3.jpg", "order": 20}, {"name": "Terry Chen", "character": "Operations Guy", "id": 11677, "credit_id": "52fe4458c3a368484e01dc95", "cast_id": 38, "profile_path": "/zHmlacDItyaJ0uFmormpVeN06mU.jpg", "order": 21}, {"name": "Heather Doerksen", "character": "Accountant", "id": 83423, "credit_id": "52fe4458c3a368484e01dc99", "cast_id": 39, "profile_path": "/nIF1GLQ2WPGS5pdogVGhOm2nYmh.jpg", "order": 22}, {"name": "Patrick Sabongui", "character": "Elevator Guard", "id": 102742, "credit_id": "52fe4458c3a368484e01dc9d", "cast_id": 40, "profile_path": "/aEJ7963PHcFLBrXE0qJdS5GfU2L.jpg", "order": 23}, {"name": "Phillip Mitchell", "character": "Lead Guard", "id": 158390, "credit_id": "52fe4458c3a368484e01dca1", "cast_id": 41, "profile_path": null, "order": 24}, {"name": "Naomi Dane", "character": "Japanese Floaty Girl", "id": 111933, "credit_id": "52fe4458c3a368484e01dca5", "cast_id": 42, "profile_path": null, "order": 25}, {"name": "Ellie Harvie", "character": "Military Liaison", "id": 158644, "credit_id": "52fe4458c3a368484e01dca9", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Patrick Gilmore", "character": "Werewolf Wrangler", "id": 76828, "credit_id": "52fe4458c3a368484e01dcad", "cast_id": 44, "profile_path": "/iIODRkPruE6Lh2EccZhsW3KU3h5.jpg", "order": 27}, {"name": "Brad Dryborough", "character": "Chem Department Guy", "id": 172836, "credit_id": "52fe4458c3a368484e01dcb1", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "Emili Kawashima", "character": "Japanese Frog Girl", "id": 1275703, "credit_id": "52fe4458c3a368484e01dcb5", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Aya Furukawa", "character": "Japanese School Girl", "id": 1275704, "credit_id": "52fe4458c3a368484e01dcb9", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Maria Go", "character": "Japanese School Girl", "id": 1275705, "credit_id": "52fe4458c3a368484e01dcbd", "cast_id": 48, "profile_path": null, "order": 31}, {"name": "Serena Akane Chi", "character": "Japanese School Girl", "id": 1275706, "credit_id": "52fe4458c3a368484e01dcc1", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Abbey Imai", "character": "Japanese School Girl", "id": 1275707, "credit_id": "52fe4458c3a368484e01dcc5", "cast_id": 50, "profile_path": null, "order": 33}, {"name": "Marina Ishibashi", "character": "Japanese School Girl", "id": 1275708, "credit_id": "52fe4458c3a368484e01dcc9", "cast_id": 51, "profile_path": null, "order": 34}, {"name": "Miku Katsuura", "character": "Japanese School Girl", "id": 1275709, "credit_id": "52fe4458c3a368484e01dccd", "cast_id": 52, "profile_path": null, "order": 35}, {"name": "Alicia Takase Lui", "character": "Japanese School Girl", "id": 1275711, "credit_id": "52fe4458c3a368484e01dcd1", "cast_id": 53, "profile_path": null, "order": 36}, {"name": "Jodi Tabuchi", "character": "Japanese School Girl", "id": 1275712, "credit_id": "52fe4458c3a368484e01dcd5", "cast_id": 54, "profile_path": null, "order": 37}, {"name": "Sara Taira", "character": "Japanese School Girl", "id": 1275713, "credit_id": "52fe4458c3a368484e01dcd9", "cast_id": 55, "profile_path": null, "order": 38}, {"name": "Alyssandra Yamamoto", "character": "Japanese School Girl", "id": 1275714, "credit_id": "52fe4458c3a368484e01dcdd", "cast_id": 56, "profile_path": null, "order": 39}, {"name": "Richard Cetrone", "character": "Werewolf/Merman", "id": 12371, "credit_id": "52fe4458c3a368484e01dce1", "cast_id": 57, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 40}, {"name": "Phoebe Galvan", "character": "Sugarplum Fairy", "id": 1275715, "credit_id": "52fe4458c3a368484e01dce5", "cast_id": 58, "profile_path": null, "order": 41}, {"name": "Simon Pidgeon", "character": "Dismemberment Goblin", "id": 190232, "credit_id": "52fe4458c3a368484e01dce9", "cast_id": 59, "profile_path": null, "order": 42}, {"name": "Matt Phillips", "character": "Dismemberment Goblin", "id": 168815, "credit_id": "52fe4458c3a368484e01dced", "cast_id": 60, "profile_path": null, "order": 43}, {"name": "Lori Stewart", "character": "Floating Witch", "id": 196686, "credit_id": "52fe4458c3a368484e01dcf1", "cast_id": 61, "profile_path": null, "order": 44}, {"name": "Greg Zach", "character": "Fornicus, Lord of Bondage and Pain (as Gregory Zach)", "id": 1275716, "credit_id": "52fe4458c3a368484e01dcf5", "cast_id": 62, "profile_path": null, "order": 45}, {"name": "Sigourney Weaver", "character": "The Director", "id": 10205, "credit_id": "52fe4458c3a368484e01dc43", "cast_id": 20, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 46}, {"name": "Terry Notary", "character": "The Clown (uncredited)", "id": 236696, "credit_id": "52fe4458c3a368484e01dc57", "cast_id": 24, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 47}], "directors": [{"name": "Drew Goddard", "department": "Directing", "job": "Director", "credit_id": "52fe4458c3a368484e01dbe7", "profile_path": "/j5Le3QQljdGJ3kPAcjAZr9V4QUC.jpg", "id": 47506}], "vote_average": 6.3, "runtime": 95}, "211387": {"poster_path": "/eiw4sh6ieAVuJq6E1bSHQkZPfwm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The film takes place one year after the events of Captain America: The First Avenger, in which Agent Carter, a member of the Strategic Scientific Reserve, is in search of the mysterious Zodiac.", "video": false, "id": 211387, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Marvel One-Shot: Agent Carter", "tagline": "In an all-new Captain America adventure", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 334164, "name": "Marvel One-Shot"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3067038", "adult": false, "backdrop_path": "/jpMVir4cCQJbtmruzpNd12yJj7Y.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2013-09-23", "popularity": 0.831067635491939, "original_title": "Marvel One-Shot: Agent Carter", "budget": 0, "cast": [{"name": "Hayley Atwell", "character": "Peggy Carter", "id": 39459, "credit_id": "52fe4d93c3a368484e1f0d05", "cast_id": 2, "profile_path": "/mUp8PkCiIvtiFb4tOzMVtowEJBt.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Howard Stark", "id": 55470, "credit_id": "52fe4d93c3a368484e1f0d09", "cast_id": 3, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Greg Haines", "character": "Agent Johnson", "id": 1195388, "credit_id": "52fe4d93c3a368484e1f0d0d", "cast_id": 4, "profile_path": "/rF2FgRw3ujROyrbwLkfBzGxzu7N.jpg", "order": 2}, {"name": "Neal McDonough", "character": "Timothy 'Dum Dum' Dugan", "id": 2203, "credit_id": "52fe4d93c3a368484e1f0d11", "cast_id": 5, "profile_path": "/8Vg7WKE4QEGz18at8mQHP9aqEbB.jpg", "order": 3}, {"name": "Bradley Whitford", "character": "Agent Flynn", "id": 11367, "credit_id": "52fe4d93c3a368484e1f0d15", "cast_id": 6, "profile_path": "/66brylvzWLg94TRMd6QFrVyMOei.jpg", "order": 4}, {"name": "Shane Black", "character": "(voice)", "id": 1108, "credit_id": "52fe4d93c3a368484e1f0d19", "cast_id": 7, "profile_path": "/9slEH8S7APuw3PifJNSYJ04ceJA.jpg", "order": 5}, {"name": "Tim Trobec", "character": "Hefty Guard", "id": 1294882, "credit_id": "5305f5bb92514134a21e7fef", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Jon Barinholtz", "character": "Analyst", "id": 1294883, "credit_id": "5305f5ca925141349a200d7a", "cast_id": 9, "profile_path": null, "order": 7}], "directors": [{"name": "Louis D'Esposito", "department": "Directing", "job": "Director", "credit_id": "52fe4d93c3a368484e1f0d01", "profile_path": null, "id": 57027}], "vote_average": 7.8, "runtime": 15}, "22972": {"poster_path": "/7O3IkeHvp1sq5yMN0O8FsTee1C0.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 94882889, "overview": "During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors were dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.", "video": false, "id": 22972, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Green Zone", "tagline": "Chief Warrant Officer Roy Miller is done following orders", "vote_count": 242, "homepage": "http://www.greenzonemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0947810", "adult": false, "backdrop_path": "/lxxkBvUqfCDTh5o4Ny0RQ3CNwlG.jpg", "production_companies": [{"name": "Dentsu", "id": 6452}, {"name": "Universal Pictures", "id": 33}, {"name": "StudioCanal", "id": 694}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2010-03-11", "popularity": 0.793315074472797, "original_title": "Green Zone", "budget": 100000000, "cast": [{"name": "Matt Damon", "character": "Roy Miller", "id": 1892, "credit_id": "52fe4458c3a368484e01de3b", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Greg Kinnear", "character": "Clark Poundstone", "id": 17141, "credit_id": "52fe4458c3a368484e01de43", "cast_id": 5, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 1}, {"name": "Brendan Gleeson", "character": "Martin Brown", "id": 2039, "credit_id": "52fe4459c3a368484e01df37", "cast_id": 61, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 2}, {"name": "Amy Ryan", "character": "Lawrie Dayne", "id": 39388, "credit_id": "52fe4458c3a368484e01de47", "cast_id": 6, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 3}, {"name": "Jason Isaacs", "character": "Maj. Briggs", "id": 11355, "credit_id": "52fe4458c3a368484e01de3f", "cast_id": 4, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 4}, {"name": "Khalid Abdalla", "character": "Freddy", "id": 53480, "credit_id": "52fe4458c3a368484e01de4b", "cast_id": 7, "profile_path": "/hGeH9kjx7vRxeLi7yTz8zxPcRMF.jpg", "order": 5}, {"name": "Yigal Naor", "character": "General Al Rawi", "id": 41316, "credit_id": "52fe4459c3a368484e01e027", "cast_id": 120, "profile_path": "/fywzghy8kLToNRH4OvrLkFSuXqA.jpg", "order": 6}, {"name": "Antoni Corone", "character": "Col. Lyons", "id": 20562, "credit_id": "52fe4458c3a368484e01de4f", "cast_id": 8, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 7}, {"name": "Said Faraj", "character": "Seyyed Hamza", "id": 109670, "credit_id": "52fe4459c3a368484e01decb", "cast_id": 32, "profile_path": "/kC26rThX0RbOHzddmSdhqVqnxrF.jpg", "order": 8}, {"name": "Michael O'Neill", "character": "Colonel Bethel", "id": 21710, "credit_id": "52fe4459c3a368484e01e031", "cast_id": 122, "profile_path": "/jm8iT6YrP0waMjv9ZYVvtYXd66i.jpg", "order": 9}, {"name": "Jerry Della Salla", "character": "Wilkins", "id": 122281, "credit_id": "52fe4459c3a368484e01dedb", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Faycal Attougui", "character": "Al Rawi Bodyguard", "id": 122279, "credit_id": "52fe4459c3a368484e01decf", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Aymen Hamdouchi", "character": "Ayad Hamza", "id": 122280, "credit_id": "52fe4459c3a368484e01ded3", "cast_id": 34, "profile_path": "/rwqlYbVbdPUpFhx21jCvZAD6wxX.jpg", "order": 12}, {"name": "Nicoye Banks", "character": "Perry", "id": 93131, "credit_id": "52fe4459c3a368484e01ded7", "cast_id": 35, "profile_path": null, "order": 13}, {"name": "Sean Huze", "character": "Conway", "id": 122282, "credit_id": "52fe4459c3a368484e01dedf", "cast_id": 37, "profile_path": "/tR4TVQlKpg9PZ3QKXgJpa2A9fdS.jpg", "order": 14}, {"name": "Michael Dwyer", "character": "Met-D", "id": 18995, "credit_id": "52fe4459c3a368484e01dee3", "cast_id": 38, "profile_path": null, "order": 15}, {"name": "Edouard H.R. Gluck", "character": "Met-D", "id": 122283, "credit_id": "52fe4459c3a368484e01dee7", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Brian Siefkes", "character": "Met-D", "id": 122285, "credit_id": "52fe4459c3a368484e01deeb", "cast_id": 40, "profile_path": "/gH3q3HTHGlyNYkb4vhFkHgHtcMj.jpg", "order": 17}, {"name": "Adam Wendling", "character": "Met-D", "id": 122286, "credit_id": "52fe4459c3a368484e01deef", "cast_id": 41, "profile_path": null, "order": 18}, {"name": "Abdul Henderson", "character": "Met-D", "id": 122287, "credit_id": "52fe4459c3a368484e01def3", "cast_id": 42, "profile_path": "/7quLCDs2977yk1VuM5D8VgqIPsV.jpg", "order": 19}, {"name": "Paul Karsko", "character": "Met-D", "id": 122288, "credit_id": "52fe4459c3a368484e01def7", "cast_id": 43, "profile_path": null, "order": 20}, {"name": "Robert Miller", "character": "Met-D", "id": 1426429, "credit_id": "54dcf7b2c3a3682252000046", "cast_id": 125, "profile_path": null, "order": 21}, {"name": "Eugene Cherry", "character": "Met-D", "id": 122289, "credit_id": "52fe4459c3a368484e01deff", "cast_id": 45, "profile_path": null, "order": 22}, {"name": "Alexander Drum", "character": "Met-D", "id": 122290, "credit_id": "52fe4459c3a368484e01df03", "cast_id": 46, "profile_path": null, "order": 23}, {"name": "Brian VanRiper", "character": "Met-D", "id": 122291, "credit_id": "52fe4459c3a368484e01df07", "cast_id": 47, "profile_path": "/3y9e7IFr1CMNW05jJ1H2dUYjQpQ.jpg", "order": 24}, {"name": "Matthew Knott", "character": "Met-D", "id": 122292, "credit_id": "52fe4459c3a368484e01df0b", "cast_id": 48, "profile_path": null, "order": 25}, {"name": "Nathan Lewis", "character": "Met-D", "id": 81672, "credit_id": "52fe4459c3a368484e01df0f", "cast_id": 49, "profile_path": null, "order": 26}, {"name": "John Roberson", "character": "Infantery Sergeant", "id": 122293, "credit_id": "52fe4459c3a368484e01df13", "cast_id": 50, "profile_path": "/hPL55RJv5VuNU2bFuAtwXnMQvU1.jpg", "order": 27}, {"name": "Troy Brown", "character": "Soldier at WMD Site", "id": 122294, "credit_id": "52fe4459c3a368484e01df17", "cast_id": 51, "profile_path": null, "order": 28}, {"name": "Raad Rawi", "character": "Ahmed Zubaidi", "id": 73710, "credit_id": "52fe4459c3a368484e01df1b", "cast_id": 52, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 29}, {"name": "Bijan Daneshmand", "character": "Zubaidi's Aide", "id": 122295, "credit_id": "52fe4459c3a368484e01df1f", "cast_id": 53, "profile_path": "/Alr2NQlyDT5Ji2encRiBiDGMGW1.jpg", "order": 30}, {"name": "Bryan Reents", "character": "Poundstone Aide", "id": 122296, "credit_id": "52fe4459c3a368484e01df23", "cast_id": 54, "profile_path": "/jG2djIJpg21105tC3syRUohtKIw.jpg", "order": 31}, {"name": "Michael Judge", "character": "JMOC Tech", "id": 122297, "credit_id": "52fe4459c3a368484e01df27", "cast_id": 55, "profile_path": null, "order": 32}, {"name": "Patrick St. Esprit", "character": "Military Intel 2 Star", "id": 117437, "credit_id": "52fe4459c3a368484e01df2b", "cast_id": 58, "profile_path": "/bcbLFQUGDcgrlbJz0blywlfGutL.jpg", "order": 33}, {"name": "Allen Vaught", "character": "Colonel Jonathan Vaught", "id": 122299, "credit_id": "52fe4459c3a368484e01df2f", "cast_id": 59, "profile_path": "/h1hl2AZTeZPpm8Owm5NXGXjgQBr.jpg", "order": 34}, {"name": "Paul Rieckhoff", "character": "Gonzales", "id": 122300, "credit_id": "52fe4459c3a368484e01df33", "cast_id": 60, "profile_path": null, "order": 35}, {"name": "Martin McDougall", "character": "Brown's Aide", "id": 36901, "credit_id": "52fe4459c3a368484e01df3b", "cast_id": 62, "profile_path": null, "order": 36}, {"name": "Antoni Corone", "character": "Colonel Lyons", "id": 20562, "credit_id": "52fe4459c3a368484e01df3f", "cast_id": 63, "profile_path": "/2Zyedc6NhCmRIIgf7INEf7Gqq7i.jpg", "order": 37}, {"name": "Timothy Ahern", "character": "General at VTC", "id": 122302, "credit_id": "52fe4459c3a368484e01df43", "cast_id": 64, "profile_path": null, "order": 38}, {"name": "Ben Sliney", "character": "Bureaucrat at VTC", "id": 122303, "credit_id": "52fe4459c3a368484e01df47", "cast_id": 65, "profile_path": "/vtJFIEtFCWAOJNfdmFp79gGpiWJ.jpg", "order": 39}, {"name": "Whitley Bruner", "character": "Senior CIA Man at VTC", "id": 122304, "credit_id": "52fe4459c3a368484e01df4b", "cast_id": 66, "profile_path": null, "order": 40}, {"name": "Khalid Abdalla", "character": "Freddy", "id": 53480, "credit_id": "52fe4459c3a368484e01df4f", "cast_id": 67, "profile_path": "/hGeH9kjx7vRxeLi7yTz8zxPcRMF.jpg", "order": 41}, {"name": "Intishal Al Timimi", "character": "Hawkish Iraqi", "id": 122305, "credit_id": "52fe4459c3a368484e01df53", "cast_id": 68, "profile_path": null, "order": 42}, {"name": "Driss Roukhe", "character": "Tahir al-Malik", "id": 122306, "credit_id": "52fe4459c3a368484e01df57", "cast_id": 69, "profile_path": null, "order": 43}, {"name": "Muayad Ali", "character": "Quasim", "id": 122307, "credit_id": "52fe4459c3a368484e01df5b", "cast_id": 70, "profile_path": null, "order": 44}, {"name": "Jamal Selmaoui", "character": "Hawkish Aide", "id": 122308, "credit_id": "52fe4459c3a368484e01df5f", "cast_id": 71, "profile_path": null, "order": 45}, {"name": "Mohamed Kafi", "character": "Iraqi Officer", "id": 105980, "credit_id": "52fe4459c3a368484e01df63", "cast_id": 72, "profile_path": null, "order": 46}, {"name": "Kadhum Sabur", "character": "Mystery Man", "id": 122309, "credit_id": "52fe4459c3a368484e01df67", "cast_id": 73, "profile_path": null, "order": 47}, {"name": "Hillal Boubker", "character": "Qasim Aide", "id": 122310, "credit_id": "52fe4459c3a368484e01df6b", "cast_id": 74, "profile_path": null, "order": 48}, {"name": "Soumaya Akaaboune", "character": "Sanaa", "id": 122311, "credit_id": "52fe4459c3a368484e01df6f", "cast_id": 75, "profile_path": null, "order": 49}, {"name": "Thamou El Metouani", "character": "Seyyed's Housekeeper", "id": 122312, "credit_id": "52fe4459c3a368484e01df73", "cast_id": 76, "profile_path": null, "order": 50}, {"name": "Salah Eddine Elamari", "character": "Seyyed's Son", "id": 122313, "credit_id": "52fe4459c3a368484e01df77", "cast_id": 77, "profile_path": null, "order": 51}, {"name": "Naji El Jouhary", "character": "Seyyed's Son", "id": 122314, "credit_id": "52fe4459c3a368484e01df7b", "cast_id": 78, "profile_path": null, "order": 52}, {"name": "Aroun Benchkaroun", "character": "Seyyed's Son", "id": 122315, "credit_id": "52fe4459c3a368484e01df7f", "cast_id": 79, "profile_path": null, "order": 53}, {"name": "Hajar Machroune", "character": "Seyyed's Daughter", "id": 122316, "credit_id": "52fe4459c3a368484e01df83", "cast_id": 80, "profile_path": null, "order": 54}, {"name": "Scott Berendes", "character": "TF221s", "id": 122317, "credit_id": "52fe4459c3a368484e01df87", "cast_id": 81, "profile_path": null, "order": 55}, {"name": "Abdelkrim Assad", "character": "TF221s", "id": 122318, "credit_id": "52fe4459c3a368484e01df8b", "cast_id": 82, "profile_path": "/tFTXAvMqs3FtyNLUhrPd8nYczDT.jpg", "order": 56}, {"name": "Michael Diaz", "character": "TF221s", "id": 122319, "credit_id": "52fe4459c3a368484e01df8f", "cast_id": 83, "profile_path": null, "order": 57}, {"name": "Tyler Christen", "character": "TF221s", "id": 122321, "credit_id": "52fe4459c3a368484e01df93", "cast_id": 85, "profile_path": null, "order": 58}, {"name": "Adam Mackey", "character": "TF221s", "id": 122322, "credit_id": "52fe4459c3a368484e01df97", "cast_id": 86, "profile_path": null, "order": 59}, {"name": "Ben Holland", "character": "TF221s", "id": 122323, "credit_id": "52fe4459c3a368484e01df9b", "cast_id": 87, "profile_path": null, "order": 60}, {"name": "Jeffrey John Carisalez", "character": "TF221s", "id": 122324, "credit_id": "52fe4459c3a368484e01df9f", "cast_id": 88, "profile_path": null, "order": 61}, {"name": "Jonathan Stone", "character": "TF221s", "id": 122325, "credit_id": "52fe4459c3a368484e01dfa3", "cast_id": 89, "profile_path": null, "order": 62}, {"name": "James Hodges", "character": "TF221s", "id": 122327, "credit_id": "52fe4459c3a368484e01dfa7", "cast_id": 90, "profile_path": null, "order": 63}, {"name": "Larry Lewis", "character": "TF221s", "id": 122328, "credit_id": "52fe4459c3a368484e01dfab", "cast_id": 91, "profile_path": null, "order": 64}, {"name": "William Oakes", "character": "Camp Cropper Tech", "id": 122329, "credit_id": "52fe4459c3a368484e01dfaf", "cast_id": 92, "profile_path": null, "order": 65}, {"name": "Ziad Adwan", "character": "Translator", "id": 122330, "credit_id": "52fe4459c3a368484e01dfb3", "cast_id": 93, "profile_path": null, "order": 66}, {"name": "Ian Bendel", "character": "Camp Cropper Guards", "id": 122331, "credit_id": "52fe4459c3a368484e01dfb7", "cast_id": 94, "profile_path": null, "order": 67}, {"name": "Venie Joshua", "character": "Camp Cropper Guards", "id": 122332, "credit_id": "52fe4459c3a368484e01dfbb", "cast_id": 95, "profile_path": null, "order": 68}, {"name": "Miguel Berroa", "character": "Camp Cropper Guards", "id": 122333, "credit_id": "52fe4459c3a368484e01dfbf", "cast_id": 96, "profile_path": null, "order": 69}, {"name": "Peter Shayhorn", "character": "Camp Cropper Guards", "id": 122334, "credit_id": "52fe4459c3a368484e01dfc3", "cast_id": 97, "profile_path": null, "order": 70}, {"name": "Miguel Palaugalarza", "character": "Camp Cropper Wardens", "id": 122335, "credit_id": "52fe4459c3a368484e01dfc7", "cast_id": 98, "profile_path": null, "order": 71}, {"name": "Christopher Lilly", "character": "Camp Cropper Wardens", "id": 122336, "credit_id": "52fe4459c3a368484e01dfcb", "cast_id": 99, "profile_path": null, "order": 72}, {"name": "Sabir Ed-Dayab", "character": "Iraqi Prisoner", "id": 122337, "credit_id": "52fe4459c3a368484e01dfcf", "cast_id": 100, "profile_path": null, "order": 73}, {"name": "Omar Berdouni", "character": "Righteous Ali", "id": 122338, "credit_id": "52fe4459c3a368484e01dfd3", "cast_id": 101, "profile_path": "/7xi3jrfet3wb1m2pjtlLNkgpZPt.jpg", "order": 74}, {"name": "Alex Moore", "character": "CIA Techs", "id": 122339, "credit_id": "52fe4459c3a368484e01dfd7", "cast_id": 102, "profile_path": "/dgSCGvKcc3qF1hVmV4pzGAdPxcW.jpg", "order": 75}, {"name": "Alistair Bailey", "character": "CIA Techs", "id": 122341, "credit_id": "52fe4459c3a368484e01dfdb", "cast_id": 103, "profile_path": null, "order": 76}, {"name": "Eric Loren", "character": "CIA Techs", "id": 113235, "credit_id": "52fe4459c3a368484e01dfdf", "cast_id": 104, "profile_path": null, "order": 77}, {"name": "Paul Cloutier", "character": "Special Forces Tech", "id": 122342, "credit_id": "52fe4459c3a368484e01dfe3", "cast_id": 105, "profile_path": null, "order": 78}, {"name": "Wallace Bagwell", "character": "Alpha Leader 1", "id": 122343, "credit_id": "52fe4459c3a368484e01dfe7", "cast_id": 106, "profile_path": null, "order": 79}, {"name": "William Meredith", "character": "CPA Presser", "id": 122344, "credit_id": "52fe4459c3a368484e01dfeb", "cast_id": 107, "profile_path": "/5AFiiW7d8MBsnhJhjcVE2LmlqPg.jpg", "order": 80}, {"name": "Tommy Campbell", "character": "Chopper Comms Commander", "id": 122345, "credit_id": "52fe4459c3a368484e01dfef", "cast_id": 108, "profile_path": "/pmg7YmD3Dib00CItssxpPVzQIP8.jpg", "order": 81}, {"name": "James Wills", "character": "Chopper Comms Tech", "id": 122346, "credit_id": "52fe4459c3a368484e01dff3", "cast_id": 109, "profile_path": null, "order": 82}, {"name": "Jered Bezemek", "character": "Convoy Commander", "id": 122347, "credit_id": "52fe4459c3a368484e01dff7", "cast_id": 110, "profile_path": null, "order": 83}, {"name": "Johnny Nilsson", "character": "Republican Palace Reporter", "id": 122349, "credit_id": "52fe4459c3a368484e01dffb", "cast_id": 111, "profile_path": null, "order": 84}, {"name": "Salman Hassan", "character": "Zubaide Conference Speaker #1", "id": 122350, "credit_id": "52fe4459c3a368484e01dfff", "cast_id": 112, "profile_path": null, "order": 85}, {"name": "Ammar Khdir", "character": "Zubaide Conference Speaker #2", "id": 122351, "credit_id": "52fe4459c3a368484e01e003", "cast_id": 113, "profile_path": null, "order": 86}, {"name": "Youssif Falah-Jassem", "character": "Zubaide Conference Speaker #3", "id": 122352, "credit_id": "52fe4459c3a368484e01e007", "cast_id": 114, "profile_path": null, "order": 87}, {"name": "Latif Al Anzi", "character": "Zubaide Conference Speaker #4", "id": 122353, "credit_id": "52fe4459c3a368484e01e00b", "cast_id": 115, "profile_path": null, "order": 88}], "directors": [{"name": "Paul Greengrass", "department": "Directing", "job": "Director", "credit_id": "52fe4458c3a368484e01de31", "profile_path": "/zyJyLdHvV98Nv9mrctQsH64RxkE.jpg", "id": 25598}], "vote_average": 6.2, "runtime": 115}, "14784": {"poster_path": "/pCeKYtVfljkU3C94xD8PO4EVVhv.jpg", "production_countries": [{"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3648572, "overview": "In a hospital on the outskirts of 1920s Los Angeles, an injured stuntman begins to tell a fellow patient, a little girl with a broken arm, a fantastic story about 5 mythical heroes. Thanks to his fractured state of mind and her vivid imagination, the line between fiction and reality starts to blur as the tale advances.", "video": false, "id": 14784, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Fall", "tagline": "A little blessing in disguise.", "vote_count": 124, "homepage": "http://www.thefallthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ro", "name": "Rom\u00e2n\u0103"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0460791", "adult": false, "backdrop_path": "/pJA8TQ4c0X0EM4RXVYOHeSvuL3K.jpg", "production_companies": [{"name": "Roadside Attractions", "id": 911}, {"name": "Absolute Entertainment", "id": 3586}, {"name": "Googly Films", "id": 11150}, {"name": "Deep Films", "id": 11151}, {"name": "Radical Media", "id": 11152}, {"name": "Tree Top Films Inc.", "id": 11153}], "release_date": "2006-09-09", "popularity": 0.69940047914533, "original_title": "The Fall", "budget": 0, "cast": [{"name": "Catinca Untaru", "character": "Alexandria", "id": 77289, "credit_id": "52fe46189251416c7506cfab", "cast_id": 4, "profile_path": "/3fqgAApEYlj0BeduivJxkHFYyMs.jpg", "order": 0}, {"name": "Justine Waddell", "character": "Nurse Evelyn / Sister Evelyn", "id": 42705, "credit_id": "52fe46189251416c7506cfaf", "cast_id": 5, "profile_path": "/CjphDEmppD6a4X9R6ncQfAJFNv.jpg", "order": 1}, {"name": "Lee Pace", "character": "Roy Walker / Blue Bandit", "id": 72095, "credit_id": "52fe46189251416c7506cfb3", "cast_id": 6, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 2}, {"name": "Kim Uylenbroek", "character": "Doctor / Alexander The Great", "id": 77290, "credit_id": "52fe46189251416c7506cfb7", "cast_id": 7, "profile_path": "/eM3ZVulJJ2PuGQ3pm7m7BFmPhy0.jpg", "order": 3}, {"name": "Aiden Lithgow", "character": "Alexander's Messenger", "id": 77291, "credit_id": "52fe46189251416c7506cfbb", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Sean Gilder", "character": "Walt Purdy", "id": 77292, "credit_id": "52fe46189251416c7506cfbf", "cast_id": 9, "profile_path": "/3k9U78b90A93O5KtbSSb4QDOJ19.jpg", "order": 5}, {"name": "Ronald France", "character": "Otto", "id": 204112, "credit_id": "52fe46199251416c7506d065", "cast_id": 37, "profile_path": null, "order": 6}, {"name": "Andrew Roussouw", "character": "Mr. Sabatini", "id": 1127904, "credit_id": "52fe46199251416c7506d069", "cast_id": 38, "profile_path": null, "order": 7}, {"name": "Michael Huff", "character": "Dr. Whitaker", "id": 1050718, "credit_id": "52fe46199251416c7506d06d", "cast_id": 39, "profile_path": null, "order": 8}, {"name": "Grant Swanby", "character": "Father Augustine", "id": 67059, "credit_id": "52fe46199251416c7506d071", "cast_id": 40, "profile_path": null, "order": 9}, {"name": "Emil Hostina", "character": "Alexandria's Father / Blue Bandit", "id": 209884, "credit_id": "52fe46199251416c7506d075", "cast_id": 41, "profile_path": "/xbhDDWD7eoutHP795gpvpy2kjFV.jpg", "order": 10}, {"name": "Jeetu Verma", "character": "Indian / Orange Picker", "id": 956054, "credit_id": "52fe46199251416c7506d079", "cast_id": 43, "profile_path": null, "order": 11}, {"name": "Leo Bill", "character": "Darwin / Orderly", "id": 29237, "credit_id": "52fe46199251416c7506d07d", "cast_id": 44, "profile_path": null, "order": 12}, {"name": "Marcus Wesley", "character": "Otta Benga / Ice Delivery Man", "id": 964325, "credit_id": "52fe46199251416c7506d081", "cast_id": 45, "profile_path": null, "order": 13}, {"name": "Ayesha Verman", "character": "Indian's Bride", "id": 1127905, "credit_id": "52fe46199251416c7506d085", "cast_id": 46, "profile_path": null, "order": 14}, {"name": "Robin Smith", "character": "Luigi / One Legged Actor", "id": 1071690, "credit_id": "52fe46199251416c7506d089", "cast_id": 47, "profile_path": "/lBYwXNeGupuaFWsxqnoJmpCTTVZ.jpg", "order": 15}], "directors": [{"name": "Tarsem Singh", "department": "Directing", "job": "Director", "credit_id": "52fe46189251416c7506cfa7", "profile_path": "/5FQvWHNWtRvP8gYEOF2YVHfDbWM.jpg", "id": 56512}], "vote_average": 7.9, "runtime": 117}, "80321": {"poster_path": "/q79YojIzPEUb0JaEpuzDbLJT3yv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 742000000, "overview": "Alex, Marty, Gloria and Melman are still trying to get back to the Big Apple and their beloved Central Park zoo, but first they need to find the penguins. When they travel to Monte Carlo, they attract the attention of Animal Control after gate crashing a party and are joined by the penguins, King Julian and Co., and the monkeys. How do a lion, zebra, hippo, giraffe, four penguins, two monkeys, three lemurs travel through Europe without attracting attention and get back to New York? They join a traveling circus. Their attempts to get back to New York are consistently hampered by the Captain of Animal Control who wants to make Alex part of her collection. Once they make it back to New York Marty, Alex, Gloria and Melman realize that they want to be part of the traveling circus.", "video": false, "id": 80321, "genres": [{"id": 16, "name": "Animation"}], "title": "Madagascar 3: Europe's Most Wanted", "tagline": "Six years ago, they disappeared without a trace. Next summer, they finally resurface.", "vote_count": 894, "homepage": "", "belongs_to_collection": {"backdrop_path": "/lzTIAbvMeGWB7PUrmBZXulGA28M.jpg", "poster_path": "/kjA2VkYx929rPKMPFQRb0lPqY3w.jpg", "id": 14740, "name": "Madagascar Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1277953", "adult": false, "backdrop_path": "/uHnLhm4AybDCbz6sAVkxZKNNXV3.jpg", "production_companies": [{"name": "Pacific Data Images (PDI)", "id": 520}, {"name": "DreamWorks Animation", "id": 521}], "release_date": "2012-06-08", "popularity": 1.33889502720602, "original_title": "Madagascar 3: Europe's Most Wanted", "budget": 145000000, "cast": [{"name": "Ben Stiller", "character": "Alex", "id": 7399, "credit_id": "52fe47b79251416c91073785", "cast_id": 2, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Sacha Baron Cohen", "character": "King Julien XIII", "id": 6730, "credit_id": "52fe47b79251416c91073789", "cast_id": 3, "profile_path": "/9UWxlTsGAfRAcxG2LcUMbfR3FiF.jpg", "order": 1}, {"name": "David Schwimmer", "character": "Melman", "id": 14409, "credit_id": "52fe47b89251416c9107378d", "cast_id": 4, "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "order": 2}, {"name": "Frances McDormand", "character": "Captain Chantel DuBois", "id": 3910, "credit_id": "52fe47b89251416c910737c7", "cast_id": 14, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 3}, {"name": "Chris Rock", "character": "Marty", "id": 2632, "credit_id": "52fe47b89251416c910737cb", "cast_id": 15, "profile_path": "/5JCYKerIL0SdiqygtLUpG9Sw37P.jpg", "order": 4}, {"name": "Jada Pinkett Smith", "character": "Gloria", "id": 9575, "credit_id": "52fe47b89251416c910737cf", "cast_id": 16, "profile_path": "/9F9om3LeN7xM1yPcUn9e2qSpkDh.jpg", "order": 5}, {"name": "John Di Maggio", "character": "Rico", "id": 31531, "credit_id": "52fe47b89251416c910737d3", "cast_id": 18, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 6}, {"name": "Cedric the Entertainer", "character": "Maurice", "id": 5726, "credit_id": "52fe47b89251416c910737d7", "cast_id": 19, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 7}, {"name": "Jessica Chastain", "character": "Gia", "id": 83002, "credit_id": "52fe47b89251416c910737e1", "cast_id": 22, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 8}, {"name": "Bryan Cranston", "character": "Vitaly", "id": 17419, "credit_id": "52fe47b89251416c910737e5", "cast_id": 23, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 9}, {"name": "Martin Short", "character": "Stefano", "id": 519, "credit_id": "52fe47b89251416c910737e9", "cast_id": 24, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 10}], "directors": [{"name": "Eric Darnell", "department": "Directing", "job": "Director", "credit_id": "52fe47b79251416c91073781", "profile_path": "/8aRWzSXl6fR0b2g3td44JJAU3es.jpg", "id": 18863}, {"name": "Tom McGrath", "department": "Directing", "job": "Director", "credit_id": "52fe47b89251416c910737ef", "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "id": 18864}, {"name": "Conrad Vernon", "department": "Directing", "job": "Director", "credit_id": "52fe47b89251416c910737f5", "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "id": 12080}], "vote_average": 6.4, "runtime": 93}, "227783": {"poster_path": "/rXdSfDu08cs0fU9S6l3AK1bJqy8.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "KR", "name": "South Korea"}], "revenue": 0, "overview": "Surly, a curmudgeon, independent squirrel is banished from his park and forced to survive in the city. Lucky for him, he stumbles on the one thing that may be able to save his life, and the rest of park community, as they gear up for winter - Maury's Nut Store.", "video": false, "id": 227783, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Nut Job", "tagline": "Let's Get Nuts!", "vote_count": 112, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1821658", "adult": false, "backdrop_path": "/TCtQLLO9PRqCcPCFgpx77a3Pct.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Gulfstream Pictures", "id": 20788}, {"name": "Red Rover International", "id": 20789}, {"name": "ToonBox Entertainment", "id": 20790}], "release_date": "2014-01-17", "popularity": 1.50347375129445, "original_title": "The Nut Job", "budget": 0, "cast": [{"name": "Will Arnett", "character": "Surly", "id": 21200, "credit_id": "52fe4eb29251416c7515f36f", "cast_id": 1, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 0}, {"name": "Katherine Heigl", "character": "Andie", "id": 25541, "credit_id": "52fe4eb29251416c7515f373", "cast_id": 2, "profile_path": "/dsMdrdIOD4xl1shUv1zl6RvXiUb.jpg", "order": 1}, {"name": "Brendan Fraser", "character": "Grayson", "id": 18269, "credit_id": "52fe4eb29251416c7515f377", "cast_id": 3, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 2}, {"name": "Liam Neeson", "character": "Raccoon", "id": 3896, "credit_id": "52fe4eb29251416c7515f37b", "cast_id": 4, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 3}, {"name": "Stephen Lang", "character": "King", "id": 32747, "credit_id": "52fe4eb29251416c7515f37f", "cast_id": 5, "profile_path": "/tqF6ibURpLvRPlgvLRvjCQqWaa2.jpg", "order": 4}, {"name": "Sarah Gadon", "character": "Lana", "id": 190895, "credit_id": "52fe4eb29251416c7515f383", "cast_id": 6, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 5}, {"name": "Maya Rudolph", "character": "Precious", "id": 52792, "credit_id": "52fe4eb29251416c7515f39f", "cast_id": 11, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 6}, {"name": "Jeff Dunham", "character": "Mole", "id": 76982, "credit_id": "52fe4eb29251416c7515f3a3", "cast_id": 12, "profile_path": "/2xEF6hiAPSeObVAeUxH5SXV040F.jpg", "order": 7}, {"name": "Gabriel Iglesias", "character": "Jimmy", "id": 86498, "credit_id": "52fe4eb29251416c7515f3a7", "cast_id": 13, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 8}, {"name": "Scott Yaphe", "character": "Lucky", "id": 70445, "credit_id": "52fe4eb29251416c7515f3ab", "cast_id": 14, "profile_path": null, "order": 9}, {"name": "Joe Pingue", "character": "Johnny", "id": 86237, "credit_id": "52fe4eb29251416c7515f3af", "cast_id": 15, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 10}, {"name": "Julie Lemieux", "character": "Girl Scout", "id": 1129487, "credit_id": "52fe4eb29251416c7515f3b3", "cast_id": 16, "profile_path": null, "order": 11}, {"name": "Robert Tinkler", "character": "Redline/ Buddy", "id": 118814, "credit_id": "52fe4eb29251416c7515f3b7", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Peter Lepeniotis", "department": "Directing", "job": "Director", "credit_id": "52fe4eb29251416c7515f389", "profile_path": null, "id": 1262197}], "vote_average": 5.5, "runtime": 85}, "193612": {"poster_path": "/dlMln6CldiB5pt9vSSJBiNL83bh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A university student and some classmates are recruited to carry out a private experiment -- to create a poltergeist. Their subject: an alluring, but dangerously disturbed young woman. Their quest: to explore the dark energy that her damaged psyche might manifest. As the experiment unravels along with their sanity, the rogue PHD students, led by their determined professor, are soon confronted with a terrifying reality: they have triggered an unspeakable force with a power beyond all explanation.", "video": false, "id": 193612, "genres": [{"id": 27, "name": "Horror"}], "title": "The Quiet Ones", "tagline": "A shocking experiment. An unspeakable evil.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2235779", "adult": false, "backdrop_path": "/v5M3sr71qXWXZ44XzhDOHkxPxdW.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Hammer Film Productions", "id": 1314}, {"name": "Travelling Picture Show Company", "id": 20791}], "release_date": "2014-04-01", "popularity": 0.87821900716119, "original_title": "The Quiet Ones", "budget": 0, "cast": [{"name": "Jared Harris", "character": "Professor Coupland", "id": 15440, "credit_id": "52fe4cd39251416c911016a5", "cast_id": 2, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 0}, {"name": "Sam Claflin", "character": "Brian McNeil", "id": 237455, "credit_id": "52fe4cd39251416c911016a9", "cast_id": 3, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 1}, {"name": "Olivia Cooke", "character": "Jane Harper", "id": 1173984, "credit_id": "52fe4cd39251416c911016ad", "cast_id": 4, "profile_path": "/5C8XBogUpSPA2fk9YeiCDJzroLk.jpg", "order": 2}, {"name": "Erin Richards", "character": "Kristina Dalton", "id": 990300, "credit_id": "52fe4cd39251416c911016b1", "cast_id": 5, "profile_path": "/3oIHsTEFUJd1jpnfOguM5s7hI6E.jpg", "order": 3}, {"name": "Rory Fleck-Byrne", "character": "Harry Abrams", "id": 1267122, "credit_id": "52fe4cd39251416c911016b5", "cast_id": 6, "profile_path": "/cra6Pud2jFOBUbuslpg7VwGG4Ds.jpg", "order": 4}, {"name": "Laurie Calvert", "character": "Phillip", "id": 1267123, "credit_id": "52fe4cd39251416c911016b9", "cast_id": 7, "profile_path": "/vxMKhtLG7bCkHhlar7tJiM6OPs6.jpg", "order": 5}, {"name": "Max Pirkis", "character": "David Q", "id": 215661, "credit_id": "532c7dc69251413a78000001", "cast_id": 12, "profile_path": "/9NJw1YV4fcOTYQ8UOuIynmbu2rD.jpg", "order": 6}, {"name": "Richard Cunningham", "character": "Provost", "id": 1097456, "credit_id": "532c7dd39251413a7e000001", "cast_id": 13, "profile_path": "/jGo9wrCxV81pgNVkzO2B1Wnuett.jpg", "order": 7}, {"name": "Aldo Maland", "character": "young David Q", "id": 550553, "credit_id": "532c7dde9251413a81000005", "cast_id": 14, "profile_path": "/y8kWKeqEFozjllaFJ3OT5PvjBF6.jpg", "order": 8}], "directors": [{"name": "John Pogue", "department": "Directing", "job": "Director", "credit_id": "52fe4cd39251416c911016a1", "profile_path": null, "id": 59328}], "vote_average": 5.5, "runtime": 98}, "96721": {"poster_path": "/cjEepHZOZAwmK6nAj5jis6HV75E.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 90247624, "overview": "A biography of Formula 1 champion driver Niki Lauda and the 1976 crash that almost claimed his life. Mere weeks after the accident, he got behind the wheel to challenge his rival, James Hunt.", "video": false, "id": 96721, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Rush", "tagline": "Everyone's driven by something.", "vote_count": 693, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1979320", "adult": false, "backdrop_path": "/w41zFKYTsq4wf5QnQJWMXuzWl2F.jpg", "production_companies": [{"name": "Double Negative", "id": 31922}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Revolution Films", "id": 163}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-09-27", "popularity": 1.59740534728553, "original_title": "Rush", "budget": 38000000, "cast": [{"name": "Daniel Br\u00fchl", "character": "Niki Lauda", "id": 3872, "credit_id": "52fe49be9251416c750d20a7", "cast_id": 2, "profile_path": "/tDAPTmHnCpctMn7Uk3v8YYiA0No.jpg", "order": 0}, {"name": "Chris Hemsworth", "character": "James Hunt", "id": 74568, "credit_id": "52fe49be9251416c750d20ab", "cast_id": 3, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 1}, {"name": "Olivia Wilde", "character": "Suzy Miller", "id": 59315, "credit_id": "52fe49be9251416c750d20af", "cast_id": 4, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 2}, {"name": "Alexandra Maria Lara", "character": "Marlene Lauda", "id": 5644, "credit_id": "52fe49bf9251416c750d20b3", "cast_id": 5, "profile_path": "/aQS8gK9zJDu2eIUEHUIWqWFcTSj.jpg", "order": 3}, {"name": "Natalie Dormer", "character": "Gemma", "id": 58502, "credit_id": "52fe49bf9251416c750d20b7", "cast_id": 6, "profile_path": "/kidtvcQhVIUN31LEzvYtUSHk3Fz.jpg", "order": 4}, {"name": "Christian McKay", "character": "Lord Hesketh", "id": 28478, "credit_id": "52fe49bf9251416c750d20bb", "cast_id": 7, "profile_path": "/sNzMFhhayZvBCYak24Y306xajA.jpg", "order": 5}, {"name": "Tom Wlaschiha", "character": "Harald Ertl", "id": 52639, "credit_id": "52fe49bf9251416c750d20c5", "cast_id": 9, "profile_path": "/uauUSlcDvrjSuH9rXavOwiYTMoV.jpg", "order": 6}, {"name": "Pierfrancesco Favino", "character": "Clay Regazzoni", "id": 17839, "credit_id": "52fe49bf9251416c750d20c9", "cast_id": 10, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 7}, {"name": "David Calder", "character": "Louis Stanley", "id": 10779, "credit_id": "52fe49bf9251416c750d20cd", "cast_id": 11, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 8}, {"name": "Stephen Mangan", "character": "Alastair Caldwell", "id": 21345, "credit_id": "52fe49bf9251416c750d20d1", "cast_id": 12, "profile_path": "/aVJZoNHIvHkwuTdEz53Bqn9pD6s.jpg", "order": 9}, {"name": "Alistair Petrie", "character": "Stirling Moss", "id": 56100, "credit_id": "52fe49bf9251416c750d20d5", "cast_id": 13, "profile_path": "/tC5CHVPnxAMqF0W0csTqcDAawwj.jpg", "order": 10}, {"name": "Julian Rhind-Tutt", "character": "Anthony 'Bubbles' Horsley", "id": 7031, "credit_id": "52fe49bf9251416c750d20d9", "cast_id": 14, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 11}, {"name": "Colin Stinton", "character": "Teddy Mayer", "id": 23608, "credit_id": "5305483e9251413491084d6e", "cast_id": 30, "profile_path": "/hQAOFqXtTOrnbx1LYBMDkcAPyop.jpg", "order": 12}, {"name": "Jamie de Courcey", "character": "Harvey 'Doc' Postlethwaite", "id": 1294711, "credit_id": "530549129251413494094916", "cast_id": 31, "profile_path": "/L5I2BCkw0SljzRCffKWJ36s492.jpg", "order": 13}, {"name": "Ilario Calvo", "character": "Luca Di Montezemolo", "id": 1294712, "credit_id": "530549d1925141348e07f098", "cast_id": 32, "profile_path": "/jKuVxOWKOAA7BrhnPHBicLj5nDP.jpg", "order": 14}, {"name": "Patrick Baladi", "character": "John Hogan", "id": 43019, "credit_id": "53054af592514134940a13f8", "cast_id": 33, "profile_path": "/5l8DPsvvTvvSb3F52eXnyn8Xf8F.jpg", "order": 15}, {"name": "Vincent Riotta", "character": "Lauda's Mechanic", "id": 26669, "credit_id": "53054b1f925141348e08178c", "cast_id": 34, "profile_path": "/4xlR6xTLzzxv6yudPZOunAVmR9n.jpg", "order": 16}, {"name": "Martin Savage", "character": "McLaren Mechanic", "id": 30328, "credit_id": "53054c1a92514134880a1bc4", "cast_id": 35, "profile_path": "/7r3KEXwIQT8PPGxfqIgDNffMop3.jpg", "order": 17}, {"name": "Jamie Sives", "character": "BRM Mechanic", "id": 1833, "credit_id": "53054c56925141348509af9c", "cast_id": 36, "profile_path": "/92BcXrr2W7gZri6xVlLhpLLaPsf.jpg", "order": 18}, {"name": "James Norton", "character": "Guy Edwards", "id": 1205278, "credit_id": "53fcdd240e0a267a6c00b2cf", "cast_id": 37, "profile_path": "/rseiJUwdoDe1yNXgRROyAPo8NEA.jpg", "order": 19}, {"name": "Michael Vardian", "character": "German Press Officer", "id": 1426167, "credit_id": "54dbcfd1c3a3682f24002211", "cast_id": 38, "profile_path": "/zY4xOBvFDu9GZemU5FGSNg1MD6v.jpg", "order": 20}], "directors": [{"name": "Ron Howard", "department": "Directing", "job": "Director", "credit_id": "52fe49be9251416c750d20a3", "profile_path": "/67WIgpOGIeb4NSN9yIxsOITbnns.jpg", "id": 6159}], "vote_average": 7.9, "runtime": 123}, "96724": {"poster_path": "/vueoajubjMMmDpcLOZnrU9wW95E.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 68929150, "overview": "Trapped in a loveless marriage, aristocrat Anna Karenina enters into a life-changing affair with the affluent Count Vronsky.", "video": false, "id": 96724, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Anna Karenina", "tagline": "An epic story of love.", "vote_count": 191, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1781769", "adult": false, "backdrop_path": "/uTu5sqOXPSIQ0WLedyHdr6l7F2D.jpg", "production_companies": [{"name": "Working Title Films", "id": 10163}, {"name": "Universal Pictures", "id": 33}, {"name": "Focus Features", "id": 10146}], "release_date": "2012-09-06", "popularity": 0.485849249124643, "original_title": "Anna Karenina", "budget": 0, "cast": [{"name": "Keira Knightley", "character": "Anna Karenina", "id": 116, "credit_id": "52fe49bf9251416c750d2195", "cast_id": 4, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Jude Law", "character": "Alexei Karenin", "id": 9642, "credit_id": "52fe49bf9251416c750d2199", "cast_id": 5, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 1}, {"name": "Aaron Taylor-Johnson", "character": "Count Vronsky", "id": 27428, "credit_id": "52fe49bf9251416c750d21a9", "cast_id": 9, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 2}, {"name": "Kelly Macdonald", "character": "Dolly", "id": 9015, "credit_id": "52fe49bf9251416c750d219d", "cast_id": 6, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 3}, {"name": "Matthew Macfadyen", "character": "Oblonsky", "id": 15576, "credit_id": "52fe49bf9251416c750d21a1", "cast_id": 7, "profile_path": "/azJrQPOaWGYA1oLWXpwgmKDqPyV.jpg", "order": 4}, {"name": "Michelle Dockery", "character": "Princess Myagkaya", "id": 70904, "credit_id": "52fe49bf9251416c750d21a5", "cast_id": 8, "profile_path": "/lbXBpE9jUITuDWzI9YPOR6Ej1eq.jpg", "order": 5}, {"name": "Emily Watson", "character": "Countess Lydia", "id": 1639, "credit_id": "52fe49bf9251416c750d21ad", "cast_id": 10, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 6}, {"name": "Olivia Williams", "character": "Countess Vronskaya", "id": 11616, "credit_id": "52fe49bf9251416c750d21b1", "cast_id": 11, "profile_path": "/sFPpzOuDOLyB0YmTstS7MTSzEb6.jpg", "order": 7}, {"name": "Ruth Wilson", "character": "Princess Betsy", "id": 47720, "credit_id": "52fe49bf9251416c750d21b5", "cast_id": 12, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 8}, {"name": "Holliday Grainger", "character": "The Baroness", "id": 302165, "credit_id": "52fe49bf9251416c750d21b9", "cast_id": 13, "profile_path": "/1DvpsjoDK2mTT4J7MzyHOqbIkXf.jpg", "order": 9}, {"name": "Alexandra Roach", "character": "Countess Nordston", "id": 237020, "credit_id": "52fe49bf9251416c750d21bd", "cast_id": 14, "profile_path": "/jWJlrPYvdDN2kMCWKDkDnnFm1mP.jpg", "order": 10}, {"name": "Domhnall Gleeson", "character": "Levin", "id": 93210, "credit_id": "52fe49bf9251416c750d21c1", "cast_id": 15, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 11}, {"name": "Alicia Vikander", "character": "Kitty", "id": 227454, "credit_id": "52fe49bf9251416c750d21c5", "cast_id": 16, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 12}, {"name": "Bill Skarsg\u00e5rd", "character": "Captain Machouten", "id": 137905, "credit_id": "52fe49bf9251416c750d21c9", "cast_id": 17, "profile_path": "/5tChIWkdTHdvR8IzjMeJosWsDuQ.jpg", "order": 13}, {"name": "Rapha\u00ebl Personnaz", "character": "Alexander", "id": 147041, "credit_id": "52fe49bf9251416c750d21cd", "cast_id": 18, "profile_path": "/y2RpQaWgFAxNkuXszSG3Diya1Kv.jpg", "order": 14}, {"name": "Eros Vlahos", "character": "Boris", "id": 81269, "credit_id": "52fe49bf9251416c750d21d1", "cast_id": 19, "profile_path": "/bif3MhLYabK4Qr4mpdi9viBHoxN.jpg", "order": 15}, {"name": "Kenneth Collard", "character": "Prince Tverskoy", "id": 997569, "credit_id": "52fe49bf9251416c750d21d5", "cast_id": 20, "profile_path": "/7w29ibbniZoMEkTYVtsxiNSLamf.jpg", "order": 16}, {"name": "Tannishtha Chatterjee", "character": "Masha", "id": 87297, "credit_id": "52fe49bf9251416c750d21d9", "cast_id": 21, "profile_path": "/fl6vKGFT4SilKJPH3oFdN1jwGoE.jpg", "order": 17}, {"name": "Hera Hilmar", "character": "Varya", "id": 586286, "credit_id": "52fe49bf9251416c750d21dd", "cast_id": 24, "profile_path": "/yYS5Q4xDdIv59t6UscDxsbCeHIU.jpg", "order": 18}, {"name": "John Bradley", "character": "Austrian Prince", "id": 1010135, "credit_id": "52fe49bf9251416c750d21e1", "cast_id": 27, "profile_path": "/NYYgcHhFNLOwYVAGePUq9NsV3N.jpg", "order": 19}, {"name": "Thomas Howes", "character": "Yashvin", "id": 224192, "credit_id": "52fe49bf9251416c750d21e5", "cast_id": 28, "profile_path": "/aEwvsQpuElqKrcNOBXdFejjsQa0.jpg", "order": 20}, {"name": "Shirley Henderson", "character": "Opera House Wife", "id": 1834, "credit_id": "52fe49bf9251416c750d21e9", "cast_id": 29, "profile_path": "/yxFCumQ2vjMgpdENmroOFN6KENO.jpg", "order": 21}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe49bf9251416c750d2185", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.1, "runtime": 130}, "6615": {"poster_path": "/t8CjVSDVT5fy2AMZRwL0l9OCVhG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sometimes you find love where you'd least expect it. Just ask Lars, a sweet but quirky guy who thinks he's found the girl of his dreams in a life-sized doll named Bianca. Lars is completely content with his artificial girlfriend, but when he develops feelings for Margo, an attractive co-worker, Lars finds himself lost in a unique love triangle, hoping to somehow discover the real meaning of true love.", "video": false, "id": 6615, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Lars and the Real Girl", "tagline": "The search for true love begins outside the box.", "vote_count": 125, "homepage": "http://www.larsandtherealgirl-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0805564", "adult": false, "backdrop_path": "/g3u8v1uupvHZBcR48nlvI3lpQOc.jpg", "production_companies": [{"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Metro-Goldwyn-Mayer Pictures", "id": 6127}, {"name": "Lars Productions", "id": 19731}], "release_date": "2007-10-12", "popularity": 0.372222171627597, "original_title": "Lars and the Real Girl", "budget": 0, "cast": [{"name": "Ryan Gosling", "character": "Lars Lindstrom", "id": 30614, "credit_id": "52fe445ec3a36847f8091e1f", "cast_id": 13, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Emily Mortimer", "character": "Karin", "id": 1246, "credit_id": "52fe445ec3a36847f8091e23", "cast_id": 14, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 1}, {"name": "Paul Schneider", "character": "Gus", "id": 15684, "credit_id": "52fe445ec3a36847f8091e27", "cast_id": 15, "profile_path": "/u3FUCSYpivGpCliH22PJdCk2pIY.jpg", "order": 2}, {"name": "Kelli Garner", "character": "Margo", "id": 17442, "credit_id": "52fe445ec3a36847f8091e2b", "cast_id": 16, "profile_path": "/cERCIHtSlqISEbRwAV1pkTDCNyn.jpg", "order": 3}, {"name": "Lauren Ash", "character": "Holly", "id": 50773, "credit_id": "52fe445ec3a36847f8091e2f", "cast_id": 17, "profile_path": "/8VdUJzYSZJkLwYnNw71FcznAH3S.jpg", "order": 4}, {"name": "Patricia Clarkson", "character": "Dr. Dagmar Berman", "id": 1276, "credit_id": "52fe445ec3a36847f8091e33", "cast_id": 18, "profile_path": "/10ZSyaUqzUlKTd60HmeiGhlytZG.jpg", "order": 5}, {"name": "R. D. Reid", "character": "Reverend Bock", "id": 44183, "credit_id": "52fe445ec3a36847f8091e37", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Nancy Beatty", "character": "Mrs. Gruner", "id": 50774, "credit_id": "52fe445ec3a36847f8091e3b", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Doug Lennox", "character": "Mr. Hofstedter", "id": 50775, "credit_id": "52fe445ec3a36847f8091e3f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Joe Bostick", "character": "Mr. Shaw", "id": 50776, "credit_id": "52fe445ec3a36847f8091e43", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Liz Gordon", "character": "Mrs. Schindler", "id": 50777, "credit_id": "52fe445ec3a36847f8091e47", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Nicky Guadagni", "character": "Mrs. Petersen", "id": 5889, "credit_id": "52fe445ec3a36847f8091e4b", "cast_id": 24, "profile_path": "/2HJwL5EmMQSggNKfO9xc6DANmL6.jpg", "order": 11}], "directors": [{"name": "Craig Gillespie", "department": "Directing", "job": "Director", "credit_id": "52fe445ec3a36847f8091de5", "profile_path": null, "id": 50767}], "vote_average": 7.1, "runtime": 106}, "6620": {"poster_path": "/7ITDmatHa2yf5UTzjwaKAvf3Xr6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Linus and David Larrabee are the two sons of a very wealthy family. Linus is all work -- busily running the family corporate empire, he has no time for a wife and family. David is all play -- technically he is employed by the family business, but never shows up for work, spends all his time entertaining, and has been married and divorced three times. Meanwhile, Sabrina Fairchild is the young, shy, and awkward daughter of the household chauffeur, who has been infatuated with David all her life, but David hardly notices her -- \"doesn't even know I exist\" -- until she goes away to Paris for two years, and returns an elegant, sophisticated, beautiful woman. Suddenly, she finds that she has captured David's attention, but just as she does so, she finds herself falling in love with Linus, and she finds that Linus is also falling in love with her.", "video": false, "id": 6620, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Sabrina", "tagline": "...the chauffeur's daughter who learned her stuff in Paris", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0047437", "adult": false, "backdrop_path": "/nd7qPxPBVgqlixRXgjIHiOafNBf.jpg", "production_companies": [], "release_date": "1954-09-09", "popularity": 0.736643608966106, "original_title": "Sabrina", "budget": 0, "cast": [{"name": "Humphrey Bogart", "character": "Linus Larrabee", "id": 4110, "credit_id": "52fe445fc3a36847f8091fc9", "cast_id": 5, "profile_path": "/pxJrZluJHhbWRo2QXAG99FvXUi7.jpg", "order": 0}, {"name": "Audrey Hepburn", "character": "Sabrina Fairchild", "id": 1932, "credit_id": "52fe445fc3a36847f8091fcd", "cast_id": 6, "profile_path": "/lNmmbyKxwnMSe0vb4kzZroa8lzr.jpg", "order": 1}, {"name": "William Holden", "character": "David Larrabee", "id": 8252, "credit_id": "52fe445fc3a36847f8091fd1", "cast_id": 7, "profile_path": "/6sa5f8p1KBhYxJDEmCLxn7QLcBe.jpg", "order": 2}, {"name": "Walter Hampden", "character": "Oliver Larrabee", "id": 50833, "credit_id": "52fe445fc3a36847f8091fd5", "cast_id": 8, "profile_path": "/mMEusAjmxvQ9kiH4fcyvvAbRDsA.jpg", "order": 3}, {"name": "John Williams", "character": "Thomas Fairchild", "id": 5182, "credit_id": "52fe445fc3a36847f8092007", "cast_id": 20, "profile_path": "/esXPldHaXSEz8dQmahcGz4VWJ8R.jpg", "order": 4}, {"name": "Joan Vohs", "character": "Gretchen Van Horn", "id": 50834, "credit_id": "52fe445fc3a36847f8091fdd", "cast_id": 10, "profile_path": "/mSDcZQMhT4lIxD1wyZ3uFHAhvV4.jpg", "order": 5}, {"name": "Martha Hyer", "character": "Elizabeth Tyson", "id": 16759, "credit_id": "52fe445fc3a36847f8091fd9", "cast_id": 9, "profile_path": "/pTYajZSqj8OIPuDbKWupC5AkOYi.jpg", "order": 6}, {"name": "Marcel Dalio", "character": "Baron St. Foritanel", "id": 4121, "credit_id": "52fe445fc3a36847f8091fe1", "cast_id": 11, "profile_path": "/1lrGhscbhXoqVHOAI8Iv1hNQMAd.jpg", "order": 7}, {"name": "Marcel Hillaire", "character": "Professor", "id": 50835, "credit_id": "52fe445fc3a36847f8091fe5", "cast_id": 12, "profile_path": "/kUt6flere8BdiQgh4ZKoCvFO7DX.jpg", "order": 8}, {"name": "Francis X. Bushman", "character": "Mr. Tyson", "id": 50837, "credit_id": "52fe445fc3a36847f8091fed", "cast_id": 14, "profile_path": "/3rCvbcgcjdMubVc6tXpAtkirq3H.jpg", "order": 9}, {"name": "Ellen Corby", "character": "Miss McCardie", "id": 5738, "credit_id": "52fe445fc3a36847f8091ff1", "cast_id": 15, "profile_path": "/sgVSpnL4dJ8d0Y273lonNM4GuHK.jpg", "order": 10}, {"name": "Nella Walker", "character": "Maude Larrabee", "id": 50836, "credit_id": "52fe445fc3a36847f8091fe9", "cast_id": 13, "profile_path": "/kl8WuqmPAuwqaOne9fod7kkwcTQ.jpg", "order": 11}, {"name": "Marjorie Bennett", "character": "Margaret", "id": 97257, "credit_id": "535d4d9f0e0a264fd80050ac", "cast_id": 24, "profile_path": "/cyY0ltPueaqENXEBnd0KWE5VHRd.jpg", "order": 12}, {"name": "Emory Parnell", "character": "Charles", "id": 124875, "credit_id": "535d4dae0e0a264fde0050ae", "cast_id": 25, "profile_path": "/1duv3EnZjZSz8jgtXGZS4MOArNK.jpg", "order": 13}, {"name": "Nancy Kulp", "character": "Jenny", "id": 30519, "credit_id": "535d4dba0e0a264fdb004e8b", "cast_id": 26, "profile_path": "/b7paqBqgqbbGZs1hTsXC0sfBtSQ.jpg", "order": 14}, {"name": "Paul Harvey", "character": "Dr. Calaway", "id": 34320, "credit_id": "535d4dcd0e0a264fdb004e93", "cast_id": 27, "profile_path": "/cmj2DL8XIN1rSdA7tlsHzzS0ZsT.jpg", "order": 15}, {"name": "Kay Riehl", "character": "Mrs. Tyson", "id": 119506, "credit_id": "535d4df80e0a264fe500537f", "cast_id": 28, "profile_path": null, "order": 16}], "directors": [{"name": "Billy Wilder", "department": "Directing", "job": "Director", "credit_id": "52fe445fc3a36847f8091fb3", "profile_path": "/dSi2FnzgL50gODQpqABR0ABtHTP.jpg", "id": 3146}], "vote_average": 7.5, "runtime": 113}, "6623": {"poster_path": "/1yemGzqs99QAWuwm6lR5wMH0Xn0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.", "video": false, "id": 6623, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Peacemaker", "tagline": "How do you get the world's attention?", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "sr", "name": "Srpski"}, {"iso_639_1": "bs", "name": ""}, {"iso_639_1": "hr", "name": "Hrvatski"}], "imdb_id": "tt0119874", "adult": false, "backdrop_path": "/4fLG140YT6DX3rmqIX4OfBqym2o.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "1997-09-26", "popularity": 0.502067370444708, "original_title": "The Peacemaker", "budget": 50000000, "cast": [{"name": "George Clooney", "character": "Lt. Col. Thomas Devoe", "id": 1461, "credit_id": "52fe445fc3a36847f80920cb", "cast_id": 1, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Nicole Kidman", "character": "Dr. Julia Kelly", "id": 2227, "credit_id": "52fe445fc3a36847f80920cf", "cast_id": 2, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 1}, {"name": "Marcel Iures", "character": "Dusan Gavrich", "id": 15320, "credit_id": "52fe445fc3a36847f80920d9", "cast_id": 4, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 2}, {"name": "Armin Mueller-Stahl", "character": "Dimitri Vertikoff", "id": 12647, "credit_id": "52fe445fc3a36847f80920dd", "cast_id": 5, "profile_path": "/77rn5ZNosxPjBtYAIQg2U4ip2Sc.jpg", "order": 3}, {"name": "Tamara Tunie", "character": "Jody", "id": 42694, "credit_id": "52fe445fc3a36847f8092105", "cast_id": 13, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 4}, {"name": "Aleksandr Baluev", "character": "General Aleksandr Kodoroff", "id": 93225, "credit_id": "52fe445fc3a36847f8092109", "cast_id": 14, "profile_path": "/yP7iVx8lbrh1OezJESCIk8aIKFn.jpg", "order": 5}, {"name": "Rene Medvesek", "character": "Vlado Mirich", "id": 1008309, "credit_id": "52fe445fc3a36847f809210d", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Gary Werntz", "character": "Terry Hamilton", "id": 81830, "credit_id": "52fe445fc3a36847f8092111", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Randall Batinkoff", "character": "Ken", "id": 36631, "credit_id": "52fe445fc3a36847f8092115", "cast_id": 17, "profile_path": "/aXj1Q2pr70lMPJPRuNB6EIYCujr.jpg", "order": 8}, {"name": "Jim Haynie", "character": "General Garnett", "id": 10380, "credit_id": "52fe445fc3a36847f8092119", "cast_id": 18, "profile_path": "/aFXy2ef18bE6gqibhDoZ7EAsq8n.jpg", "order": 9}, {"name": "Alexander Strobele", "character": "Dietrich Schuhmacher", "id": 134469, "credit_id": "52fe445fc3a36847f809211d", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Holt McCallany", "character": "Mark Appleton", "id": 7497, "credit_id": "52fe445fc3a36847f8092121", "cast_id": 20, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 11}, {"name": "Michael Boatman", "character": "CPN Beach", "id": 66101, "credit_id": "52fe445fc3a36847f8092125", "cast_id": 21, "profile_path": "/sBqoDOi8atsaoTt6fYd3mPE6sj8.jpg", "order": 12}, {"name": "Joan Copeland", "character": "Senator Helen Bevens", "id": 31504, "credit_id": "52fe445fc3a36847f8092129", "cast_id": 22, "profile_path": "/Ysia52uqzGx3wN0rwslRSp6E46.jpg", "order": 13}, {"name": "Carlos G\u00f3mez", "character": "Santiago", "id": 115874, "credit_id": "52fe445fc3a36847f809212d", "cast_id": 23, "profile_path": "/nBxwoMv1zrhNXyEjYXbcdmAdmF0.jpg", "order": 14}, {"name": "Slavko Juraga", "character": "Stevo", "id": 1077987, "credit_id": "52fe445fc3a36847f8092131", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Aleksandr Peskov", "character": "Vassily", "id": 632849, "credit_id": "52fe445fc3a36847f8092135", "cast_id": 25, "profile_path": "/5gkqja2opMni0DRy1c53rBh8g2Z.jpg", "order": 16}, {"name": "Dejan A\u0107imovi\u0107", "character": "Kodoroff's Driver", "id": 4640, "credit_id": "52fe445fc3a36847f8092139", "cast_id": 26, "profile_path": "/kCpX3KMWoRQCuGqMtOinpE3AXiJ.jpg", "order": 17}, {"name": "Harsh Nayyar", "character": "Dr. Taraki", "id": 20807, "credit_id": "52fe445fc3a36847f809213d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Matt Adler", "character": "Alan", "id": 92623, "credit_id": "52fe445fc3a36847f8092141", "cast_id": 28, "profile_path": "/hklcdXdKkvW15x4g1XrrdrDiLGX.jpg", "order": 19}, {"name": "Tamara Tunie", "character": "Jody", "id": 42694, "credit_id": "52fe445fc3a36847f8092145", "cast_id": 29, "profile_path": "/hqIRJyTyryqus2hdsLBApznPDGA.jpg", "order": 20}, {"name": "Aleksandr Yatsko", "character": "Russian Corporal", "id": 119050, "credit_id": "52fe445fc3a36847f8092149", "cast_id": 30, "profile_path": "/zNf94ydbRhiTb9nHV2DIv8UJ6c1.jpg", "order": 21}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe445fc3a36847f80920d5", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 5.6, "runtime": 124}, "55779": {"poster_path": "/hlauDPAuNcikSj5os7NjmcddqAo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 157887643, "overview": "In this fifth installment, Death is just as omnipresent as ever, and is unleashed after one man\u2019s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Death\u2019s sinister agenda.", "video": false, "id": 55779, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Final Destination 5", "tagline": "We all share a common destination.", "vote_count": 234, "homepage": "http://finaldestinationmovie.warnerbros.com/index.html", "belongs_to_collection": {"backdrop_path": "/y3aWOInifbGKXM34KjtcMITrZRZ.jpg", "poster_path": "/mZUyhsfIthTl5rfdeSox702Ircr.jpg", "id": 8864, "name": "Final Destination Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt1622979", "adult": false, "backdrop_path": "/3ngwmwSSSymtg7XXw2rgjnML2yT.jpg", "production_companies": [{"name": "Parallel Zide", "id": 48792}, {"name": "New Line Cinema", "id": 12}, {"name": "Practical Pictures", "id": 48788}], "release_date": "2011-08-12", "popularity": 1.17762101321892, "original_title": "Final Destination 5", "budget": 47000000, "cast": [{"name": "Emma Bell", "character": "Molly", "id": 131820, "credit_id": "52fe48e0c3a36847f817e161", "cast_id": 3, "profile_path": "/h5gQ1jUduNv6SmFFBPADvDie4nY.jpg", "order": 0}, {"name": "Nicholas D'agosto", "character": "Sam Lawton", "id": 37059, "credit_id": "52fe48e0c3a36847f817e165", "cast_id": 4, "profile_path": "/4EgYTRYaAmCoV3qG1XJQKCXudz5.jpg", "order": 1}, {"name": "Tony Todd", "character": "Bludworth", "id": 19384, "credit_id": "52fe48e0c3a36847f817e169", "cast_id": 5, "profile_path": "/lAU9F4FLcthAdSqs0HSAsbKbYSW.jpg", "order": 2}, {"name": "Jacqueline MacInnes Wood", "character": "Olivia", "id": 103389, "credit_id": "52fe48e0c3a36847f817e16d", "cast_id": 6, "profile_path": "/q9sM5Ur8HfZsKO92rGy95YAtBxX.jpg", "order": 3}, {"name": "Ellen Wroe", "character": "Candice", "id": 223124, "credit_id": "52fe48e0c3a36847f817e171", "cast_id": 7, "profile_path": "/eWwlXbwGLmrR4rVyYT3nwdWIlIp.jpg", "order": 4}, {"name": "David Koechner", "character": "Dennis", "id": 28638, "credit_id": "52fe48e0c3a36847f817e175", "cast_id": 8, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 5}], "directors": [{"name": "Steven Quale", "department": "Directing", "job": "Director", "credit_id": "52fe48e0c3a36847f817e157", "profile_path": null, "id": 93214}], "vote_average": 5.8, "runtime": 95}, "55787": {"poster_path": "/yL2GKiIZTnr8w3M9NkCXSdbDTxA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114156230, "overview": "In this captivating Depression-era melodrama, impetuous veterinary student Jacob Jankowski joins a celebrated circus as an animal caretaker but faces a wrenching dilemma when he's transfixed by angelic married performer Marlena.", "video": false, "id": 55787, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Water for Elephants", "tagline": "Life is the most spectacular show on earth.", "vote_count": 226, "homepage": "http://waterforelephantsfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pl", "name": "Polski"}], "imdb_id": "tt1067583", "adult": false, "backdrop_path": "/3gu944cvSn9fY4ON9z7m26v3Rxh.jpg", "production_companies": [{"name": "Big Screen Productions", "id": 10893}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Flashpoint Entertainment", "id": 7717}, {"name": "Dune Entertainment", "id": 444}, {"name": "Ingenious Media", "id": 290}], "release_date": "2011-03-15", "popularity": 1.02726674401609, "original_title": "Water for Elephants", "budget": 38000000, "cast": [{"name": "Robert Pattinson", "character": "Jacob Jankowski", "id": 11288, "credit_id": "52fe48e0c3a36847f817e3bf", "cast_id": 2, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Marlena Rosenbluth", "id": 368, "credit_id": "52fe48e0c3a36847f817e3c3", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Christoph Waltz", "character": "August Rosenbluth", "id": 27319, "credit_id": "52fe48e0c3a36847f817e3c7", "cast_id": 4, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 2}, {"name": "Tatum Etheridge", "character": "Jacob's Daughter", "id": 223518, "credit_id": "52fe48e0c3a36847f817e3cb", "cast_id": 5, "profile_path": "/ksF9F16jE3YUe0ZcO1ePN4jHnPS.jpg", "order": 3}, {"name": "Hal Holbrook", "character": "Old Jacob", "id": 11066, "credit_id": "52fe48e0c3a36847f817e3cf", "cast_id": 6, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 4}, {"name": "Richard Brake", "character": "Grady", "id": 3901, "credit_id": "52fe48e0c3a36847f817e3e5", "cast_id": 10, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 5}, {"name": "Stephen Taylor", "character": "Wade (as Stephen Monroe Taylor)", "id": 220059, "credit_id": "52fe48e0c3a36847f817e3e9", "cast_id": 11, "profile_path": "/bS2KoKPpzG6gH8c1py0GsQDyrrz.jpg", "order": 6}, {"name": "Paul Schneider", "character": "Charlie", "id": 15684, "credit_id": "52fe48e0c3a36847f817e3ed", "cast_id": 12, "profile_path": "/u3FUCSYpivGpCliH22PJdCk2pIY.jpg", "order": 7}, {"name": "Sam Anderson", "character": "Mr. Hyde", "id": 36221, "credit_id": "52fe48e0c3a36847f817e3fd", "cast_id": 15, "profile_path": "/2zcmQEBeArztSQJ317nZCHwCVtF.jpg", "order": 8}, {"name": "William Morse", "character": "Big Top Band (as William Scott Morse)", "id": 109794, "credit_id": "52fe48e0c3a36847f817e401", "cast_id": 17, "profile_path": "/hrwminfZeqELFfaD5csD8zNDu1n.jpg", "order": 9}, {"name": "Jim Norton", "character": "Camel", "id": 14950, "credit_id": "5385db1d0e0a2614470015e0", "cast_id": 29, "profile_path": "/lndFtmSwtCzoeWkgjqJBqVRKGk2.jpg", "order": 10}, {"name": "Mark Povinelli", "character": "Kinko / Walter", "id": 154785, "credit_id": "5385db530e0a2614530016c0", "cast_id": 30, "profile_path": "/cJbp38kWYicKQf3EFX136sPGswz.jpg", "order": 11}, {"name": "Ken Foree", "character": "Earl", "id": 15070, "credit_id": "5385db810e0a26144d001666", "cast_id": 31, "profile_path": "/wGgcIcKwF4n8yLuaoAKtXoHAOZt.jpg", "order": 12}, {"name": "Sarah Karijan", "character": "Speakeasy Socialite (uncredited)", "id": 1337696, "credit_id": "53b85037c3a3685eb40042a8", "cast_id": 32, "profile_path": "/rL28fIEVtLZw6HZXIL2W0KjLmMH.jpg", "order": 13}, {"name": "Kyle Jordan", "character": "Russ", "id": 1340108, "credit_id": "53bea98dc3a3684cf400320d", "cast_id": 33, "profile_path": "/2WYXIBljCo4E46zek2xOjevkH2F.jpg", "order": 14}], "directors": [{"name": "Francis Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe48e0c3a36847f817e3bb", "profile_path": "/i9jUg8CnionKZvgBHZ7qpNczOnC.jpg", "id": 10943}], "vote_average": 6.5, "runtime": 120}, "6637": {"poster_path": "/5fOwo57lLZ3TFPG5jL6Db9Qaq8Q.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 457363168, "overview": "Benjamin Franklin Gates and Dr. Abigail Chase -- who found riches and romance at the end of their first hunt for national treasure -- reteam with their wisecracking partner in crime, Riley Poole, for another romp through U.S. history. Now, armed with a stack of long-lost pages from John Wilkes Booth's diary, Ben must follow a clue left there to prove his ancestor's innocence in the assassination of Abraham Lincoln.", "video": false, "id": 6637, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "National Treasure: Book of Secrets", "tagline": "The Greatest Adventure History Has Ever Revealed", "vote_count": 642, "homepage": "http://disney.go.com/disneypictures/nationaltreasure/", "belongs_to_collection": {"backdrop_path": "/9QtM9ie1x8z0vl6IFFepmyoOLQN.jpg", "poster_path": "/z5EIRaI8XS0brelYwDFEVlxcpzM.jpg", "id": 52984, "name": "National Treasure Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0465234", "adult": false, "backdrop_path": "/oKLa1SGDlT0Zi9lyLcl2N2sFxsc.jpg", "production_companies": [{"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Junction Entertainment", "id": 19097}, {"name": "Saturn Films", "id": 831}, {"name": "Sparkler Entertainment", "id": 20012}, {"name": "NT2 Productions", "id": 20013}, {"name": "Walt Disney", "id": 5888}], "release_date": "2007-12-13", "popularity": 1.27114925372801, "original_title": "National Treasure: Book of Secrets", "budget": 130000000, "cast": [{"name": "Nicolas Cage", "character": "Benjamin Franklin Gates", "id": 2963, "credit_id": "52fe4460c3a36847f80925ff", "cast_id": 1, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Jon Voight", "character": "Patrick Gates", "id": 10127, "credit_id": "52fe4460c3a36847f8092603", "cast_id": 2, "profile_path": "/c7BvyqlvqDkfkFqSBUCiR21fvTh.jpg", "order": 1}, {"name": "Harvey Keitel", "character": "Agent Sadusky", "id": 1037, "credit_id": "52fe4460c3a36847f8092607", "cast_id": 3, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 2}, {"name": "Ed Harris", "character": "Mitch Wilkinson", "id": 228, "credit_id": "52fe4460c3a36847f809260b", "cast_id": 4, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "Diane Kruger", "character": "Abigail Chase", "id": 9824, "credit_id": "52fe4460c3a36847f809260f", "cast_id": 5, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 4}, {"name": "Justin Bartha", "character": "Riley Poole", "id": 21180, "credit_id": "52fe4460c3a36847f8092613", "cast_id": 6, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 5}, {"name": "Helen Mirren", "character": "Emily Appleton", "id": 15735, "credit_id": "52fe4460c3a36847f8092617", "cast_id": 7, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "USA President", "id": 21089, "credit_id": "52fe4460c3a36847f809261b", "cast_id": 8, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Ty Burrell", "character": "Connor", "id": 15232, "credit_id": "52fe4460c3a36847f809261f", "cast_id": 9, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 8}, {"name": "Albert Hall", "character": "Dr. Nichols", "id": 8354, "credit_id": "52fe4460c3a36847f8092623", "cast_id": 10, "profile_path": "/yHGN2pIdBcBk19sAu0EchOxfYMY.jpg", "order": 9}, {"name": "Joel Gretsch", "character": "Thomas Gates", "id": 25376, "credit_id": "52fe4460c3a36847f8092627", "cast_id": 11, "profile_path": "/5CeKN4wIQUAvF3mlRdeVAQ5ybSs.jpg", "order": 10}, {"name": "Randy Travis", "character": "Celebrity Music Star", "id": 55725, "credit_id": "549ff1e1925141236b0015a7", "cast_id": 32, "profile_path": "/gzPEoDeNwySzNtMMnqepY5Wgv2B.jpg", "order": 11}, {"name": "Christian Camargo", "character": "John Wilkes Booth", "id": 122029, "credit_id": "549ff1f8c3a3682f2300a881", "cast_id": 33, "profile_path": "/jx39oEHjGJ2oExhgC7beq0VoCei.jpg", "order": 12}], "directors": [{"name": "Jon Turteltaub", "department": "Directing", "job": "Director", "credit_id": "52fe4460c3a36847f809262d", "profile_path": "/borF48XTUkOCKE3ryh3BFxe4Unr.jpg", "id": 12962}], "vote_average": 5.9, "runtime": 124}, "23023": {"poster_path": "/zqNo3IDzrhE9qyak87wun7uvkF7.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When minor-league hockey player Derek Thompson -- who has a penchant for knocking out his opponents' teeth every time he plays -- disillusions a fan, he is sentenced to a stint for one week as a bona fide, tutu-clad, real-life tooth fairy. Soon, Derek is inspired to rekindle his youthful dreams.", "video": false, "id": 23023, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Tooth Fairy", "tagline": "You can't handle the tooth.", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/xhACByxlfPJfAJloTOs7KNEX5U7.jpg", "poster_path": "/2P7Ua3qTgM5COjBfdBV0614wXaw.jpg", "id": 222634, "name": "Tooth Fairy Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0808510", "adult": false, "backdrop_path": "/kaa4PBGpNJgicEIeIqWaCKrUkXy.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "SF Film", "id": 5674}], "release_date": "2010-01-22", "popularity": 0.703121818511541, "original_title": "Tooth Fairy", "budget": 0, "cast": [{"name": "Dwayne Johnson", "character": "Derek Thompson / Tooth Fairy", "id": 18918, "credit_id": "52fe445bc3a368484e01e5eb", "cast_id": 4, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Julie Andrews", "character": "Lily", "id": 5823, "credit_id": "52fe445bc3a368484e01e5ef", "cast_id": 6, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 1}, {"name": "Stephen Merchant", "character": "Tracy", "id": 39189, "credit_id": "52fe445bc3a368484e01e5f3", "cast_id": 7, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 1}, {"name": "Ryan Sheckler", "character": "Mick Donnelly", "id": 116131, "credit_id": "52fe445bc3a368484e01e5f7", "cast_id": 8, "profile_path": "/zkEcTxJzD6IGK7FZBJWGQ6wvOJh.jpg", "order": 2}, {"name": "Ashley Judd", "character": "Carly", "id": 15852, "credit_id": "52fe445bc3a368484e01e5fb", "cast_id": 9, "profile_path": "/jtucIayPiRtuqM4ybMUIatHuJzk.jpg", "order": 3}, {"name": "Seth MacFarlane", "character": "Ziggy", "id": 52139, "credit_id": "52fe445bc3a368484e01e5ff", "cast_id": 10, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 4}, {"name": "Chase Ellison", "character": "Randy", "id": 64148, "credit_id": "52fe445bc3a368484e01e603", "cast_id": 12, "profile_path": "/zNDpEo3p5zJPxwFlbRJfVtLSeCj.jpg", "order": 6}, {"name": "Darien Provost", "character": "Gabe", "id": 208246, "credit_id": "52fe445bc3a368484e01e60d", "cast_id": 14, "profile_path": "/21OHv3iBvz6BpKk72sdSmwrGdkq.jpg", "order": 7}, {"name": "Alex Ferris", "character": "Shelter Cove Kid", "id": 59243, "credit_id": "52fe445bc3a368484e01e611", "cast_id": 15, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 8}, {"name": " Nicole Mu\u00f1oz", "character": "Kelly", "id": 1112033, "credit_id": "52fe445bc3a368484e01e615", "cast_id": 16, "profile_path": "/o972tzpQwLr6W2u9nCRDW4oN4H5.jpg", "order": 9}, {"name": "Brendan Meyer", "character": "Ben", "id": 558927, "credit_id": "52fe445bc3a368484e01e619", "cast_id": 17, "profile_path": "/ykafA2ATSL1Cyae5KTOuPxRZLIF.jpg", "order": 10}, {"name": "Destiny Whitlock", "character": "Tess (as Destiny Grace Whitlock)", "id": 964590, "credit_id": "52fe445bc3a368484e01e61d", "cast_id": 18, "profile_path": "/vRLmnHUaV4eomSnHdNht4IFuAht.jpg", "order": 11}], "directors": [{"name": "Michael Lembeck", "department": "Directing", "job": "Director", "credit_id": "52fe445bc3a368484e01e5e1", "profile_path": "/nSksRzDoUToxdS2MqIeV7LGAiVk.jpg", "id": 15045}], "vote_average": 5.4, "runtime": 101}, "14836": {"poster_path": "/1E9DfFpaGOjXNLn7HOGMH52UkLL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124596398, "overview": "When Coraline moves to an old house, she feels bored and neglected by her parents. She finds a hidden door with a bricked up passage. During the night, she crosses the passage and finds a parallel world where everybody has buttons instead of eyes, with caring parents and all her dreams coming true. When the Other Mother invites Coraline to stay in her world forever, the girl refuses and finds that the alternate reality where she is trapped is only a trick to lure her.", "video": false, "id": 14836, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Coraline", "tagline": "Be careful what you wish for.", "vote_count": 328, "homepage": "http://coraline.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0327597", "adult": false, "backdrop_path": "/obBsMjC9dkDeoYsLxHURikW87UZ.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Laika Entertainment", "id": 11537}, {"name": "Pandemonium", "id": 8915}], "release_date": "2009-02-05", "popularity": 1.21757194987135, "original_title": "Coraline", "budget": 60000000, "cast": [{"name": "Dakota Fanning", "character": "Coraline Jones (voice)", "id": 501, "credit_id": "52fe461e9251416c7506dc73", "cast_id": 1, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 0}, {"name": "Teri Hatcher", "character": "Mother / Other Mother (voice)", "id": 10742, "credit_id": "52fe461e9251416c7506dc77", "cast_id": 2, "profile_path": "/xnvUJvf0vjHliYa2PlXyLGaJe9l.jpg", "order": 1}, {"name": "Jennifer Saunders", "character": "Miss Spink (voice)", "id": 12094, "credit_id": "52fe461e9251416c7506dc7b", "cast_id": 3, "profile_path": "/nlxiFy0LUYGlICaFY3rF2DRovcc.jpg", "order": 2}, {"name": "Dawn French", "character": "Miss Forcible (voice)", "id": 5539, "credit_id": "52fe461e9251416c7506dc7f", "cast_id": 4, "profile_path": "/z81mKzCqmLttRVpBBGwjSlATOK3.jpg", "order": 3}, {"name": "Keith David", "character": "Cat (voice)", "id": 65827, "credit_id": "52fe461e9251416c7506dc83", "cast_id": 5, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 4}, {"name": "John Hodgman", "character": "Father / Other Father (voice)", "id": 77344, "credit_id": "52fe461e9251416c7506dc87", "cast_id": 6, "profile_path": "/qMFcDuOUgz3HkD5OMjkHYa677VE.jpg", "order": 5}, {"name": "Robert Bailey Jr.", "character": "Wyborne 'Wybie' Lovat", "id": 55426, "credit_id": "52fe461e9251416c7506dc9d", "cast_id": 10, "profile_path": "/z2FbepmcNkWn12Tuv76kLavQRyS.jpg", "order": 6}, {"name": "Ian McShane", "character": "Mr. Sergei Alexander Bobinsky / Other Bobinsky", "id": 6972, "credit_id": "52fe461e9251416c7506dca1", "cast_id": 11, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 7}], "directors": [{"name": "Henry Selick", "department": "Directing", "job": "Director", "credit_id": "52fe461e9251416c7506dc8d", "profile_path": "/kiTzGq0peOTsjQnzQI3ttwqqsOv.jpg", "id": 57646}], "vote_average": 6.8, "runtime": 100}, "72105": {"poster_path": "/5ExgYTRafm4kFRwHp2jH6C23Yl4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 549368315, "overview": "Family Guy creator Seth MacFarlane brings his boundary-pushing brand of humor to the big screen for the first time as writer, director and voice star of Ted. In the live action/CG-animated comedy, he tells the story of John Bennett, a grown man who must deal with the cherished teddy bear who came to life as the result of a childhood wish, and has refused to leave his side ever since.", "video": false, "id": 72105, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Ted", "tagline": "Ted is coming.", "vote_count": 1969, "homepage": "http://www.tedisreal.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/yaJUgLygyp0kXj7mAl2q6wpqKHi.jpg", "id": 266672, "name": "Ted Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1637725", "adult": false, "backdrop_path": "/sPiFgbWMSQxVMO6TuRFrkeWwarI.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Fuzzy Door Productions", "id": 8789}], "release_date": "2012-06-29", "popularity": 1.88047787800558, "original_title": "Ted", "budget": 50000000, "cast": [{"name": "Mark Wahlberg", "character": "John Bennett", "id": 13240, "credit_id": "52fe4858c3a368484e0f446d", "cast_id": 10, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Mila Kunis", "character": "Lori Collins", "id": 18973, "credit_id": "52fe4858c3a368484e0f447d", "cast_id": 17, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 1}, {"name": "Seth MacFarlane", "character": "Ted (voice)", "id": 52139, "credit_id": "52fe4858c3a368484e0f4469", "cast_id": 9, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 2}, {"name": "Joel McHale", "character": "Rex", "id": 74949, "credit_id": "52fe4858c3a368484e0f4479", "cast_id": 16, "profile_path": "/1oGLtQZPQs2K8JJZ5OhvHT6u3Cz.jpg", "order": 3}, {"name": "Giovanni Ribisi", "character": "Donny", "id": 1771, "credit_id": "52fe4858c3a368484e0f4475", "cast_id": 15, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 4}, {"name": "Patrick Warburton", "character": "Guy", "id": 9657, "credit_id": "52fe4858c3a368484e0f449f", "cast_id": 25, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 5}, {"name": "Matt Walsh", "character": "Thomas", "id": 59841, "credit_id": "52fe4858c3a368484e0f44b7", "cast_id": 31, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 6}, {"name": "Jessica Barth", "character": "Tami-Lynn", "id": 207150, "credit_id": "52fe4858c3a368484e0f44a3", "cast_id": 26, "profile_path": "/zYkr25I5Wk7tbow4JrSfRngBYb7.jpg", "order": 7}, {"name": "Aedin Mincks", "character": "Robert", "id": 1204318, "credit_id": "52fe4858c3a368484e0f44c7", "cast_id": 35, "profile_path": "/qQEZjqiy2fNUsh4gSUds11tK9sN.jpg", "order": 8}, {"name": "Bill Smitrovich", "character": "Frank", "id": 17200, "credit_id": "52fe4858c3a368484e0f4493", "cast_id": 21, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 9}, {"name": "Patrick Stewart", "character": "Narrator", "id": 2387, "credit_id": "52fe4858c3a368484e0f44a7", "cast_id": 27, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 10}, {"name": "Laura Vandervoort", "character": "Tanya", "id": 43286, "credit_id": "52fe4858c3a368484e0f4471", "cast_id": 14, "profile_path": "/5IWtsAzhSISq1gGxFx9G3kONprX.jpg", "order": 11}, {"name": "Bretton Manley", "character": "Young John", "id": 1063947, "credit_id": "52fe4858c3a368484e0f4497", "cast_id": 23, "profile_path": "/mMZjjVAzq8G9AUa7556LK8e4Dgo.jpg", "order": 12}, {"name": "Alex Borstein", "character": "John's Mom", "id": 24357, "credit_id": "52fe4858c3a368484e0f449b", "cast_id": 24, "profile_path": "/2cXAomdqdd3PsgHcobS2JsF1gTa.jpg", "order": 13}, {"name": "Jessica Stroup", "character": "Tracy", "id": 55463, "credit_id": "52fe4858c3a368484e0f44ab", "cast_id": 28, "profile_path": "/l1UABSlmGse4QWtHefxZSm82Axp.jpg", "order": 14}, {"name": "Tara Strong", "character": "Bellybutton", "id": 15762, "credit_id": "52fe4858c3a368484e0f44af", "cast_id": 29, "profile_path": "/cGLs0YGPrKVY71pBSXsjgTZ1NwE.jpg", "order": 15}, {"name": "Norah Jones", "character": "Herself", "id": 20472, "credit_id": "52fe4858c3a368484e0f44b3", "cast_id": 30, "profile_path": "/2EcSIKQe3BsHY4zJkPKdvA8QpRH.jpg", "order": 16}, {"name": "Sam J. Jones", "character": "Himself", "id": 33321, "credit_id": "52fe4858c3a368484e0f44cb", "cast_id": 36, "profile_path": "/w0C7aONaeB6a5DqdzTa23TzcvPm.jpg", "order": 17}, {"name": "Robert Wu", "character": "Asian Man 'Ming'", "id": 17041, "credit_id": "52fe4858c3a368484e0f44c3", "cast_id": 34, "profile_path": "/A8yLtkCeY7wvVlfL6TakeiUSmEa.jpg", "order": 18}, {"name": "John Viener", "character": "Alix", "id": 130836, "credit_id": "52fe4858c3a368484e0f44cf", "cast_id": 37, "profile_path": "/AjzFj009CPtewjT9jyYFx0AumBR.jpg", "order": 19}, {"name": "Ginger Gonzaga", "character": "Gina", "id": 1181314, "credit_id": "52fe4858c3a368484e0f44d3", "cast_id": 38, "profile_path": "/bIyLNXCqRdHzYEXjvr6IUFYXmKT.jpg", "order": 20}, {"name": "Melissa Ordway", "character": "Michelle", "id": 114602, "credit_id": "52fe4858c3a368484e0f44d7", "cast_id": 39, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 21}, {"name": "Max Harris", "character": "Greenbaum Kid", "id": 1204326, "credit_id": "52fe4858c3a368484e0f44db", "cast_id": 40, "profile_path": "/tuGgSv6zov0wfeoBXazDaHq4uuZ.jpg", "order": 22}, {"name": "Tom Skerritt", "character": "Himself", "id": 4139, "credit_id": "52fe4858c3a368484e0f44bb", "cast_id": 32, "profile_path": "/fceYkRIZkLKIbpIxPg0jVUIci50.jpg", "order": 23}, {"name": "Kristina Ellery", "character": "Heavenly", "id": 1204327, "credit_id": "52fe4858c3a368484e0f44df", "cast_id": 41, "profile_path": "/kVspTfxGDz9WpPUnjLIFiXgqnj1.jpg", "order": 24}, {"name": "Katelyn Lorren", "character": "Cherene", "id": 1204328, "credit_id": "52fe4858c3a368484e0f44e3", "cast_id": 42, "profile_path": "/fBySOW0NGL5HLDs73qmGwIwfATJ.jpg", "order": 25}, {"name": "Chanty Sok", "character": "Angelique", "id": 999772, "credit_id": "52fe4858c3a368484e0f44e7", "cast_id": 43, "profile_path": "/jRj1uUrPSsyQEzoTB4pHM6T8SVR.jpg", "order": 26}, {"name": "Sarah Fischer", "character": "Sauvignon Blanc", "id": 1204329, "credit_id": "52fe4858c3a368484e0f44eb", "cast_id": 44, "profile_path": "/vmMnW4o0CWsHoDBZDvY7A92A7Qb.jpg", "order": 27}, {"name": "Ryan Reynolds", "character": "Jared (uncredited)", "id": 10859, "credit_id": "52fe4858c3a368484e0f44bf", "cast_id": 33, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 28}, {"name": "Ted Danson", "character": "Ted Danson (uncredited)", "id": 12836, "credit_id": "52fe4858c3a368484e0f44ef", "cast_id": 45, "profile_path": "/wWm9eDLuPDw29R76KAjg6gIE9dS.jpg", "order": 29}], "directors": [{"name": "Seth MacFarlane", "department": "Directing", "job": "Director", "credit_id": "52fe4858c3a368484e0f444d", "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "id": 52139}], "vote_average": 6.3, "runtime": 106}, "72190": {"poster_path": "/gAt1PrsrFY1nX6UzebeiHP8njE9.jpg", "production_countries": [{"iso_3166_1": "MT", "name": "Malta"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 531865000, "overview": "Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.", "video": false, "id": 72190, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "World War Z", "tagline": "Remember Philly!", "vote_count": 2126, "homepage": "http://www.worldwarzmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0816711", "adult": false, "backdrop_path": "/xMOQVYLeIKBXenJ9KMeasj7S64y.jpg", "production_companies": [{"name": "GK Films", "id": 3281}, {"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "Hemisphere Media Capital", "id": 9169}, {"name": "2DUX\u00b2", "id": 23644}, {"name": "Apparatus Productions", "id": 11956}, {"name": "Latina Pictures", "id": 19108}], "release_date": "2013-06-21", "popularity": 2.34551765124808, "original_title": "World War Z", "budget": 200000000, "cast": [{"name": "Brad Pitt", "character": "Gerry Lane", "id": 287, "credit_id": "52fe485dc3a368484e0f5061", "cast_id": 4, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Mireille Enos", "character": "Karen Lane", "id": 175826, "credit_id": "52fe485dc3a368484e0f5065", "cast_id": 6, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 1}, {"name": "James Badge Dale", "character": "Captain Speke", "id": 18473, "credit_id": "52fe485dc3a368484e0f5069", "cast_id": 7, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 2}, {"name": "Elyes Gabel", "character": "Andrew Fassbach", "id": 78050, "credit_id": "52fe485dc3a368484e0f506d", "cast_id": 8, "profile_path": "/tNAexPOefzEJEpnOVBWs34BNLsh.jpg", "order": 3}, {"name": "David Andrews", "character": "Navy Captain Mullenaro", "id": 7219, "credit_id": "52fe485dc3a368484e0f5071", "cast_id": 10, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 4}, {"name": "Abigail Hargrove", "character": "Rachel Lane", "id": 1027850, "credit_id": "52fe485dc3a368484e0f5075", "cast_id": 14, "profile_path": "/tVw4OP6JbhU4PtSfeB6eeEbkJwA.jpg", "order": 5}, {"name": "Daniella Kertesz", "character": "Segen", "id": 1180907, "credit_id": "52fe485dc3a368484e0f5079", "cast_id": 18, "profile_path": "/1t358QxDsYsnwoWVSZK0UB6srqw.jpg", "order": 6}, {"name": "Ludi Boeken", "character": "Jurgen Warmbrunn", "id": 119297, "credit_id": "52fe485dc3a368484e0f507d", "cast_id": 19, "profile_path": "/aexWCA6QUGsGrohQ3tdSCyAz09W.jpg", "order": 7}, {"name": "Matthew Fox", "character": "Parajumper", "id": 28657, "credit_id": "52fe485dc3a368484e0f5081", "cast_id": 20, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 8}, {"name": "Fana Mokoena", "character": "Thierry Umutoni", "id": 2607, "credit_id": "52fe485dc3a368484e0f5085", "cast_id": 21, "profile_path": "/skuKjL1Ep1SHrZuNl0lYVfZ9VM0.jpg", "order": 9}, {"name": "David Morse", "character": "Ex-CIA Agent", "id": 52, "credit_id": "52fe485dc3a368484e0f5089", "cast_id": 22, "profile_path": "/9HbsItGl8Zw4U4SVyA4TfC9t6Am.jpg", "order": 10}, {"name": "Peter Capaldi", "character": "W.H.O. Doctor", "id": 12982, "credit_id": "52fe485dc3a368484e0f508d", "cast_id": 23, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 11}, {"name": "Moritz Bleibtreu", "character": "W.H.O. Doctor", "id": 677, "credit_id": "52fe485dc3a368484e0f5091", "cast_id": 24, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 12}, {"name": "Fabrizio Zacharee Guido", "character": "Tomas", "id": 1180908, "credit_id": "52fe485dc3a368484e0f5095", "cast_id": 25, "profile_path": "/kkleqqCoTiDoUuxfGIUylw4SRLb.jpg", "order": 13}, {"name": "Ruth Negga", "character": "W.H.O. Doctor", "id": 17018, "credit_id": "52fe485dc3a368484e0f5099", "cast_id": 26, "profile_path": "/fIVB9H48rDgcV0hhnP7gYrv18zB.jpg", "order": 14}, {"name": "Pierfrancesco Favino", "character": "WHO Doctor", "id": 17839, "credit_id": "52fe485dc3a368484e0f5121", "cast_id": 50, "profile_path": "/p8jnATuI8fdRUBXHxq5iUOdPDob.jpg", "order": 15}, {"name": "Konstantin Khabenskiy", "character": "Russian Fighter", "id": 23440, "credit_id": "535279ce0e0a2655fe0030c2", "cast_id": 51, "profile_path": "/dSZhT7njGfcOCqvRhWrX2WANVOt.jpg", "order": 16}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe485dc3a368484e0f505d", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.8, "runtime": 116}, "72197": {"poster_path": "/z3abtsVuypFShFkfvTOjzATkeg9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 118338361, "overview": "In The Pirates! Band of Misfits, Hugh Grant stars in his first animated role as the luxuriantly bearded Pirate Captain \u2013 a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side (Martin Freeman, Brendan Gleeson, Russell Tovey, and Ashley Jensen), and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy (Jeremy Piven) and Cutlass Liz (Salma Hayek) to the much coveted Pirate Of The Year Award. It\u2019s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen (Imelda Staunton) and team up with a haplessly smitten young scientist (David Tennant), but never lose sight of what a pirate loves best: adventure!", "video": false, "id": 72197, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Pirates! In an Adventure with Scientists!", "tagline": "It's A Plunderful Life", "vote_count": 153, "homepage": "http://www.thepirates-movie.com/site/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1430626", "adult": false, "backdrop_path": "/yJT2JCdjtuH5K202bC4YL0wOYD2.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}, {"name": "Aardman Animations", "id": 297}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2012-03-28", "popularity": 0.66771717847396, "original_title": "The Pirates! In an Adventure with Scientists!", "budget": 60000000, "cast": [{"name": "Hugh Grant", "character": "Pirate Captain (voice)", "id": 3291, "credit_id": "52fe485dc3a368484e0f51c7", "cast_id": 1, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Brendan Gleeson", "character": "The Pirate with Gout (voice)", "id": 2039, "credit_id": "52fe485dc3a368484e0f51cb", "cast_id": 2, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 1}, {"name": "Jeremy Piven", "character": "Black Bellamy (voice)", "id": 12799, "credit_id": "52fe485dc3a368484e0f51cf", "cast_id": 3, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 2}, {"name": "Brian Blessed", "character": "The Pirate King (voice)", "id": 8318, "credit_id": "52fe485dc3a368484e0f51d3", "cast_id": 4, "profile_path": "/wrDUKxDlyVZWK2E7Aak7I4IiVBg.jpg", "order": 3}, {"name": "Salma Hayek", "character": "Cutlass Liz (voice)", "id": 3136, "credit_id": "52fe485dc3a368484e0f51d7", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 4}, {"name": "Imelda Staunton", "character": "Queen Victoria (voice)", "id": 11356, "credit_id": "52fe485dc3a368484e0f51db", "cast_id": 9, "profile_path": "/mKlkh0AuYPD5HjmnlrW0uPm5QvJ.jpg", "order": 5}, {"name": "Ashley Jensen", "character": "The Surprisingly Curvaceous Pirate (voice)", "id": 55398, "credit_id": "52fe485dc3a368484e0f51df", "cast_id": 10, "profile_path": "/ocQOgCeR7rviHAfeAymDT1AnhQg.jpg", "order": 6}, {"name": "David Tennant", "character": "Charles Darwin (voice)", "id": 20049, "credit_id": "52fe485dc3a368484e0f51f9", "cast_id": 15, "profile_path": "/4753hvSUCRiT1AwTAsTsN4yfZCQ.jpg", "order": 8}, {"name": "Lenny Henry", "character": "Peg Leg Hastings (voice)", "id": 53519, "credit_id": "52fe485dc3a368484e0f51fd", "cast_id": 16, "profile_path": "/nVvimLFmbCImntmAlqaOwRTWf1D.jpg", "order": 9}, {"name": "Martin Freeman", "character": "The Pirate with a Scarf (voice)", "id": 7060, "credit_id": "52fe485dc3a368484e0f5201", "cast_id": 17, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 10}, {"name": "Russell Tovey", "character": "The Albino Pirate (voice)", "id": 55469, "credit_id": "53c5935fc3a3680caf000173", "cast_id": 18, "profile_path": "/qpL1Zl5NjNTcYpRBlwpm9DPsl1I.jpg", "order": 11}], "directors": [{"name": "Peter Lord", "department": "Directing", "job": "Director", "credit_id": "52fe485dc3a368484e0f51e9", "profile_path": "/fBaZLXX3rBwhSXvtplQEtvW7VS3.jpg", "id": 53304}, {"name": "Jeff Newitt", "department": "Directing", "job": "Director", "credit_id": "52fe485dc3a368484e0f51ef", "profile_path": null, "id": 565297}], "vote_average": 6.3, "runtime": 88}, "23047": {"poster_path": "/idpwvaksByFW2gCsU3div1nDMRa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88100000, "overview": "A 14th century Crusader (Cage) returns with his comrade (Perlman) to a homeland devastated by the Black Plague. The Church commands the two knights to transport a witch (Foy) to a remote abbey, where monks will perform a ritual in hopes of ending the pestilence.", "video": false, "id": 23047, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Season of the Witch", "tagline": "Not all souls can be saved.", "vote_count": 226, "homepage": "http://www.seasonofthewitchmovie.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0479997", "adult": false, "backdrop_path": "/dtmmUCOjCtrjzRCtXHXwaBSySjN.jpg", "production_companies": [{"name": "Atlas Entertainment", "id": 507}, {"name": "Relativity Media", "id": 7295}], "release_date": "2011-01-07", "popularity": 0.482858283750056, "original_title": "Season of the Witch", "budget": 40000000, "cast": [{"name": "Nicolas Cage", "character": "Behman", "id": 2963, "credit_id": "52fe445bc3a368484e01e85d", "cast_id": 2, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Ron Perlman", "character": "Felson", "id": 2372, "credit_id": "52fe445bc3a368484e01e861", "cast_id": 3, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 1}, {"name": "Ulrich Thomsen", "character": "Eckhardt", "id": 4455, "credit_id": "52fe445bc3a368484e01e865", "cast_id": 5, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 3}, {"name": "Christopher Lee", "character": "Cardinal D'Ambroise", "id": 113, "credit_id": "52fe445bc3a368484e01e869", "cast_id": 7, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 4}, {"name": "Fernanda Dorogi", "character": "Givaudon", "id": 143548, "credit_id": "52fe445bc3a368484e01e86d", "cast_id": 8, "profile_path": "/jz4Tr25t23oNvF1xmUynjL5wUE7.jpg", "order": 5}, {"name": "Stephen Graham", "character": "Hagamar", "id": 1115, "credit_id": "52fe445bc3a368484e01e871", "cast_id": 9, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 6}, {"name": "Rebekah Kennedy", "character": "Peasant Trurk Girl", "id": 143549, "credit_id": "52fe445bc3a368484e01e875", "cast_id": 10, "profile_path": "/4s42w82j6SKUcR9mNR85DH5QaZc.jpg", "order": 7}, {"name": "Matt Devere", "character": "Sergeant in Arms", "id": 25445, "credit_id": "52fe445bc3a368484e01e879", "cast_id": 11, "profile_path": "/mtp0cfPOGZG2aLEw0N6RuJFYA6j.jpg", "order": 7}, {"name": "Robert Michael Sheehan", "character": "Kay", "id": 118616, "credit_id": "52fe445bc3a368484e01e883", "cast_id": 13, "profile_path": "/47OUDEpraCrTeqpAMlIFuqm8q0L.jpg", "order": 8}, {"name": "Claire Foy", "character": "The Girl", "id": 120932, "credit_id": "52fe445bc3a368484e01e887", "cast_id": 14, "profile_path": "/cE6R6hil91rzKg3yj71czNsuK8K.jpg", "order": 9}, {"name": "Stephen Campbell Moore", "character": "Debelzaq", "id": 55467, "credit_id": "52fe445bc3a368484e01e88b", "cast_id": 15, "profile_path": "/9LPG6fCe2ct82Io5zI8iyvJ8NsP.jpg", "order": 10}, {"name": "Rory McCann", "character": "Soldier Commander", "id": 3075, "credit_id": "52fe445bc3a368484e01e88f", "cast_id": 16, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 11}], "directors": [{"name": "Dominic Sena", "department": "Directing", "job": "Director", "credit_id": "52fe445bc3a368484e01e859", "profile_path": "/ofWADCsDpNxbTFfoK1CpU8KnBGF.jpg", "id": 58498}], "vote_average": 5.4, "runtime": 95}, "23048": {"poster_path": "/7Ol1VgQl19XAIIB38nZLNA58ZsX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61336869, "overview": "A malfunctioning time machine at a ski resort takes a man back to 1986 with his two friends and nephew, where they must relive a fateful night and not change anything to make sure the nephew is born.", "video": false, "id": 23048, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Hot Tub Time Machine", "tagline": "Kick some past", "vote_count": 284, "homepage": "http://www.mgm.com/view/Movie/2387/Hot-T...", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/iEhb00TGPucF0b4joM1ieyY026U.jpg", "id": 313576, "name": "Hot Tub Time Machine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1231587", "adult": false, "backdrop_path": "/ubuwk7cHsPMfKvTrXqfyPtMcqIz.jpg", "production_companies": [{"name": "United Artists", "id": 60}, {"name": "New Crime Productions", "id": 12886}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "2010-03-26", "popularity": 0.995455367331372, "original_title": "Hot Tub Time Machine", "budget": 36000000, "cast": [{"name": "John Cusack", "character": "Adam", "id": 3036, "credit_id": "52fe445cc3a368484e01e911", "cast_id": 2, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 0}, {"name": "Lizzy Caplan", "character": "April", "id": 51988, "credit_id": "52fe445cc3a368484e01e919", "cast_id": 4, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 1}, {"name": "Rob Corddry", "character": "Lou", "id": 52997, "credit_id": "52fe445cc3a368484e01e935", "cast_id": 13, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 2}, {"name": "Craig Robinson", "character": "Nick", "id": 64342, "credit_id": "52fe445cc3a368484e01e929", "cast_id": 10, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 3}, {"name": "Clark Duke", "character": "Jacob", "id": 54729, "credit_id": "52fe445cc3a368484e01e921", "cast_id": 8, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 4}, {"name": "Chevy Chase", "character": "The Repairman", "id": 54812, "credit_id": "52fe445cc3a368484e01e931", "cast_id": 12, "profile_path": "/svjpyYtPwtjvRxX9IZnOmOkhDOt.jpg", "order": 5}, {"name": "Sebastian Stan", "character": "Blaine", "id": 60898, "credit_id": "52fe445cc3a368484e01e91d", "cast_id": 7, "profile_path": "/zHkz5iVgM51ffsEaaMExGj7W5zd.jpg", "order": 6}, {"name": "Collette Wolfe", "character": "Kelly", "id": 86624, "credit_id": "52fe445cc3a368484e01e925", "cast_id": 9, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 7}, {"name": "Lyndsy Fonseca", "character": "Jennie", "id": 116882, "credit_id": "52fe445cc3a368484e01e92d", "cast_id": 11, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 8}, {"name": "Crispin Glover", "character": "Phil", "id": 1064, "credit_id": "52fe445cc3a368484e01e915", "cast_id": 3, "profile_path": "/thA5rOv5XE1oFpxD9DSp0tDrIIR.jpg", "order": 9}, {"name": "William Zabka", "character": "Rick", "id": 56124, "credit_id": "52fe445cc3a368484e01e951", "cast_id": 18, "profile_path": "/kHcFbjmtF3CPK8uIDzKh5aj2bUv.jpg", "order": 10}, {"name": "Jessica Par\u00e9", "character": "Tara", "id": 82096, "credit_id": "52fe445cc3a368484e01e955", "cast_id": 19, "profile_path": "/5Rd21jddpoBeN4Zv8odhppG76LD.jpg", "order": 11}], "directors": [{"name": "Steve Pink", "department": "Directing", "job": "Director", "credit_id": "52fe445cc3a368484e01e90d", "profile_path": "/myHOgo8mQSCiCAZNGMRdHVr03jr.jpg", "id": 3227}], "vote_average": 5.9, "runtime": 101}, "72207": {"poster_path": "/202Je4e793JH11Ce4JoAwuzCRZ0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53909751, "overview": "Exactly one year after Tom meets Violet, he surprises her with a wedding ring. By all accounts, Tom and Violet are destined for their happily ever after. However, this engaged couple just keep getting tripped up on the long walk down the aisle.", "video": false, "id": 72207, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Five-Year Engagement", "tagline": "A comedy about the journey between popping the question and tying the knot.", "vote_count": 174, "homepage": "http://www.thefiveyearengagementmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1195478", "adult": false, "backdrop_path": "/NV9FSiCEcnzuJFeSTm3JycufyD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}, {"name": "Relativity Media", "id": 7295}, {"name": "Stoller Global Solutions", "id": 23876}, {"name": "Dentsu", "id": 6452}], "release_date": "2012-04-27", "popularity": 0.967258702420618, "original_title": "The Five-Year Engagement", "budget": 30000000, "cast": [{"name": "Emily Blunt", "character": "Violet Barnes", "id": 5081, "credit_id": "52fe485ec3a368484e0f539f", "cast_id": 1, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Alison Brie", "character": "Suzie Barnes", "id": 88029, "credit_id": "52fe485ec3a368484e0f53a3", "cast_id": 3, "profile_path": "/y6dawLsl3USTGBalq7e5ld1IMcB.jpg", "order": 1}, {"name": "Jason Segel", "character": "Tom Solomon", "id": 41088, "credit_id": "52fe485ec3a368484e0f53ad", "cast_id": 7, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 2}, {"name": "Rhys Ifans", "character": "Winton Childs", "id": 7026, "credit_id": "52fe485ec3a368484e0f53b1", "cast_id": 8, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 3}, {"name": "Chris Pratt", "character": "Alex Eilhauer", "id": 73457, "credit_id": "52fe485ec3a368484e0f53b5", "cast_id": 9, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 4}, {"name": "Jacki Weaver", "character": "Sylvia Dickerson-Barnes", "id": 67837, "credit_id": "52fe485ec3a368484e0f53c5", "cast_id": 12, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 5}, {"name": "Mindy Kaling", "character": "Vaneetha", "id": 125167, "credit_id": "52fe485ec3a368484e0f53c9", "cast_id": 13, "profile_path": "/O3d0uQDznAHS4uWobaP0WLR35n.jpg", "order": 6}, {"name": "Jim Piddock", "character": "George Barnes", "id": 120560, "credit_id": "52fe485ec3a368484e0f53cd", "cast_id": 14, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 7}, {"name": "David Paymer", "character": "Pete Solomon", "id": 19839, "credit_id": "52fe485ec3a368484e0f53d1", "cast_id": 15, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 8}, {"name": "Kevin Hart", "character": "Doug", "id": 55638, "credit_id": "52fe485ec3a368484e0f53d5", "cast_id": 16, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 9}, {"name": "Brian Posehn", "character": "Tarquin", "id": 20405, "credit_id": "52fe485ec3a368484e0f53d9", "cast_id": 17, "profile_path": "/AfxSZidOeClXdBDz5yAY3vUiaQU.jpg", "order": 10}, {"name": "Dakota Johnson", "character": "Audrey", "id": 118545, "credit_id": "52fe485ec3a368484e0f53dd", "cast_id": 18, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 11}, {"name": "Mimi Kennedy", "character": "Carol Solomon", "id": 91495, "credit_id": "52fe485ec3a368484e0f53e1", "cast_id": 19, "profile_path": "/2bg8ItAMtb18GCX7OEICxxjxVID.jpg", "order": 12}, {"name": "Adam Campbell", "character": "Gideon", "id": 58952, "credit_id": "52fe485ec3a368484e0f53e5", "cast_id": 20, "profile_path": "/tOqtFuVOrb5b9SQRlRfknMPQEyx.jpg", "order": 13}, {"name": "Randall Park", "character": "Ming", "id": 79082, "credit_id": "52fe485ec3a368484e0f53e9", "cast_id": 21, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 14}, {"name": "Lauren Weedman", "character": "Chef Sally", "id": 1375338, "credit_id": "54bb5d1bc3a3684046002c1e", "cast_id": 31, "profile_path": "/lOv2Uva44YRDvw2Ar4je2HToWID.jpg", "order": 15}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe485ec3a368484e0f53bb", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 5.7, "runtime": 124}, "14869": {"poster_path": "/29eW5c5DaCFQejdt9V14RrA51yD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 302469017, "overview": "From the Egyptian desert to deep below the polar ice caps, the elite G.I. JOE team uses the latest in next-generation spy and military equipment to fight the corrupt arms dealer Destro and the growing threat of the mysterious Cobra organization to prevent them from plunging the world into chaos.", "video": false, "id": 14869, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "G.I. Joe: The Rise of Cobra", "tagline": "When all else fails, they don't.", "vote_count": 1082, "homepage": "http://www.gijoemovie.com/", "belongs_to_collection": {"backdrop_path": "/m3ip0ci0TnX0ATUxpweqElYCeq4.jpg", "poster_path": "/5LtZM6zLB2TDbdIaOC5uafjYZY1.jpg", "id": 135468, "name": "G.I. Joe (Live-Action Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "gd", "name": ""}], "imdb_id": "tt1046173", "adult": false, "backdrop_path": "/bAmhm8pfLqbzxNRzZw08512h4RE.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Hasbro", "id": 2598}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2009-08-06", "popularity": 1.14801810794641, "original_title": "G.I. Joe: The Rise of Cobra", "budget": 175000000, "cast": [{"name": "Dennis Quaid", "character": "General Hawk", "id": 6065, "credit_id": "52fe46229251416c7506e4b5", "cast_id": 1, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Duke", "id": 38673, "credit_id": "52fe46229251416c7506e4b9", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Marlon Wayans", "character": "Ripcord", "id": 9562, "credit_id": "52fe46229251416c7506e4bd", "cast_id": 3, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 2}, {"name": "Sienna Miller", "character": "Ana / Baroness", "id": 23459, "credit_id": "52fe46229251416c7506e4c1", "cast_id": 4, "profile_path": "/83YFewW40Irf6hk6MP5vJa8yKiP.jpg", "order": 3}, {"name": "Joseph Gordon-Levitt", "character": "The Doctor / Rex", "id": 24045, "credit_id": "52fe46229251416c7506e4c5", "cast_id": 5, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 4}, {"name": "Sa\u00efd Taghmaoui", "character": "Breaker", "id": 5419, "credit_id": "52fe46229251416c7506e4c9", "cast_id": 6, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 5}, {"name": "Christopher Eccleston", "character": "McCullen / Destro", "id": 2040, "credit_id": "52fe46229251416c7506e4cd", "cast_id": 7, "profile_path": "/9zI0Ed8aGxLPdTQeV0He9Rl0eSX.jpg", "order": 6}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Heavy Duty", "id": 31164, "credit_id": "52fe46229251416c7506e4d1", "cast_id": 8, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 7}, {"name": "Lee Byung-hun", "character": "Storm Shadow", "id": 25002, "credit_id": "52fe46229251416c7506e4ed", "cast_id": 13, "profile_path": "/snuA1bKjeh4SKUmF0sNqip1zVpJ.jpg", "order": 8}, {"name": "Rachel Nichols", "character": "Scarlet", "id": 50347, "credit_id": "52fe46229251416c7506e4f1", "cast_id": 16, "profile_path": "/80d14kDiIzkrB40mSuINBQbdls6.jpg", "order": 9}, {"name": "Ray Park", "character": "Snake Eyes", "id": 11007, "credit_id": "52fe46229251416c7506e4f5", "cast_id": 17, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 10}, {"name": "Arnold Vosloo", "character": "Zartan", "id": 16743, "credit_id": "52fe46229251416c7506e4f9", "cast_id": 18, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 11}, {"name": "Kevin J. O'Connor", "character": "Doctor Mindbender", "id": 18916, "credit_id": "52fe46229251416c7506e4fd", "cast_id": 19, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 12}, {"name": "Gr\u00e9gory Fitoussi", "character": "Baron de Cobray", "id": 1040850, "credit_id": "52fe46229251416c7506e501", "cast_id": 20, "profile_path": "/qPl77DjeQ3L689mTIqBXovY2jdm.jpg", "order": 13}, {"name": "Jonathan Pryce", "character": "U.S. President", "id": 378, "credit_id": "52fe46229251416c7506e51d", "cast_id": 28, "profile_path": "/dAgcoPcDtlhIUTrksPtsWdlfBX.jpg", "order": 14}, {"name": "Leo Howard", "character": "Young Snake Eyes", "id": 557921, "credit_id": "52fe46229251416c7506e505", "cast_id": 22, "profile_path": "/3lL32Wjcg852LIapVomWGzb4wyB.jpg", "order": 15}, {"name": "Brandon Soo Hoo", "character": "Young Storm Shadow", "id": 1115122, "credit_id": "52fe46229251416c7506e509", "cast_id": 23, "profile_path": "/yZse73nxYlk9Ypr5r43PUkpuZGB.jpg", "order": 16}, {"name": "Gerald Okamura", "character": "Hard Master", "id": 105047, "credit_id": "52fe46229251416c7506e50d", "cast_id": 24, "profile_path": "/wF4lMsaIKiClRU5mpHaaQ4oei7F.jpg", "order": 17}, {"name": "Karolina Kurkova", "character": "Cover Girl", "id": 215317, "credit_id": "52fe46229251416c7506e511", "cast_id": 25, "profile_path": "/AuHa3iOKnZgt7SuKGECd7sJdKiX.jpg", "order": 18}, {"name": "David Murray", "character": "James McCullen - 1641", "id": 93211, "credit_id": "52fe46229251416c7506e515", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Brendan Fraser", "character": "Sgt. Stone", "id": 18269, "credit_id": "52fe46229251416c7506e519", "cast_id": 27, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 20}, {"name": "Frederic Doss", "character": "Apache Navigator", "id": 209680, "credit_id": "54e89a9592514111b8001437", "cast_id": 37, "profile_path": null, "order": 21}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe46229251416c7506e4d7", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 5.7, "runtime": 118}, "14873": {"poster_path": "/9MXnhnqbubPy9NbFCvLJpg5VUns.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135680000, "overview": "Mowgli, missing the jungle and his old friends, runs away from the man village unaware of the danger he's in by going back to the wild.", "video": false, "id": 14873, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Jungle Book 2", "tagline": "", "vote_count": 59, "homepage": "", "belongs_to_collection": {"backdrop_path": "/7F5dqdq8GXhqDpLNX43pODtaevW.jpg", "poster_path": "/3Z4vzPkmnyrLnfFyr5cEHUUT1HN.jpg", "id": 97459, "name": "The Jungle Book Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0283426", "adult": false, "backdrop_path": "/mJP6tf0ScfoRZtagfsnWW7Jon1l.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}, {"name": "DisneyToon Studios", "id": 5391}, {"name": "Walt Disney Animation Australia", "id": 3476}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2003-02-13", "popularity": 1.02906581824979, "original_title": "The Jungle Book 2", "budget": 20000000, "cast": [{"name": "John Goodman", "character": "Baloo", "id": 1230, "credit_id": "52fe46239251416c7506e59d", "cast_id": 1, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 0}, {"name": "Haley Joel Osment", "character": "Mowgli", "id": 9640, "credit_id": "52fe46239251416c7506e5a1", "cast_id": 2, "profile_path": "/znbiMgFoGnY3NMANOa8u13wJqFm.jpg", "order": 1}, {"name": "Mae Whitman", "character": "Shanti", "id": 52404, "credit_id": "52fe46239251416c7506e5a5", "cast_id": 3, "profile_path": "/j4fIjf2giXPsZQ2dGlLNQecf0LK.jpg", "order": 2}, {"name": "Phil Collins", "character": "Lucky", "id": 110001, "credit_id": "52fe46239251416c7506e5a9", "cast_id": 5, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 3}, {"name": "Connor Funk", "character": "Ranjan", "id": 945115, "credit_id": "52fe46239251416c7506e5b3", "cast_id": 7, "profile_path": "/rTlenqxvCHusU0YgLCzTdoZhzpe.jpg", "order": 4}, {"name": "Bob Joles", "character": "Bagheera", "id": 179702, "credit_id": "53d371650e0a262838001646", "cast_id": 8, "profile_path": "/1cbsuNkocUcvOw5D60KtsqjgLEG.jpg", "order": 5}, {"name": "Tony Jay", "character": "Shere Khan", "id": 65598, "credit_id": "53d3717f0e0a2628470014b1", "cast_id": 9, "profile_path": "/cPnNEnzW0tqIHk0DL2w7t3bdt4b.jpg", "order": 6}, {"name": "John Rhys-Davies", "character": "Ranjan's Father", "id": 655, "credit_id": "53d371990e0a2628470014b3", "cast_id": 10, "profile_path": "/zZ67PuoFfik9QlZyfaEsFBC1yVJ.jpg", "order": 7}, {"name": "Jim Cummings", "character": "Kaa / Colonel Hathi / M.C. Monkey", "id": 12077, "credit_id": "53d371b10e0a262838001656", "cast_id": 11, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 8}, {"name": "Phil Collins", "character": "Lucky (voice)", "id": 110001, "credit_id": "54357efb0e0a264d600000dd", "cast_id": 12, "profile_path": "/kNfOqOCX9mhBOWwWjWmVKevaVwl.jpg", "order": 9}], "directors": [{"name": "Steve Trenbirth", "department": "Directing", "job": "Director", "credit_id": "52fe46239251416c7506e5af", "profile_path": null, "id": 142007}], "vote_average": 5.6, "runtime": 72}, "170522": {"poster_path": "/3qy4O0iRz1smlvzkJ37nFGI7MBH.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In order to wipe out the Gaulish village by any means necessary, Caesar plans to absorb the villagers into Roman culture by having an estate built next to the village to start a new Roman colony.", "video": false, "id": 170522, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}], "title": "Asterix: The Land of the Gods", "tagline": "", "vote_count": 64, "homepage": "http://www.sndm6group.com/Product/130/ASTERIX--the-Land-of-the-Gods", "belongs_to_collection": {"backdrop_path": "/zFfDpoDL1td5PLu6VCeSqQjaZbw.jpg", "poster_path": "/aZAIDg6sYbVl5CzvdwJSdn9qpxC.jpg", "id": 94039, "name": "Asterix and Obelix (Animation) Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3759416", "adult": false, "backdrop_path": "/vm7Ngs3THbsvf5XzbtX78vSUyn2.jpg", "production_companies": [{"name": "M6 Studio", "id": 4888}], "release_date": "2014-11-26", "popularity": 2.91485842985161, "original_title": "Ast\u00e9rix: Le domaine des dieux", "budget": 0, "cast": [{"name": "Roger Carel", "character": "Ast\u00e9rix", "id": 34676, "credit_id": "52fe4cf8c3a36847f8247a87", "cast_id": 2, "profile_path": "/wMJNiP6uVkoQN6tHnXU35rORbSy.jpg", "order": 0}, {"name": "Alexandre Astier", "character": "Un Centurion", "id": 47826, "credit_id": "52fe4cf8c3a36847f8247a8b", "cast_id": 4, "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "order": 1}, {"name": "Lionnel Astier", "character": "C\u00e9tautomatix", "id": 145231, "credit_id": "52fe4cf8c3a36847f8247a8f", "cast_id": 5, "profile_path": "/oubpsdlW3vBvbcsaz9uHnhZT8Na.jpg", "order": 2}, {"name": "Serge Papagalli", "character": "Abraracourcix", "id": 225853, "credit_id": "52fe4cf8c3a36847f8247a93", "cast_id": 6, "profile_path": "/1F8ulJH82Gw9mjlCUNrolJuI1EV.jpg", "order": 3}, {"name": "Fran\u00e7ois Morel", "character": "Ordralfab\u00e9tix", "id": 77929, "credit_id": "52fe4cf8c3a36847f8247a9b", "cast_id": 8, "profile_path": "/k22m9DV2EjTho6IL3TMpVeIU2Bf.jpg", "order": 5}, {"name": "Elie Semoun", "character": "Cubitus (Chef de Cohorte)", "id": 47829, "credit_id": "52fe4cf8c3a36847f8247a9f", "cast_id": 9, "profile_path": "/fdVGGPIf4sXIZ2yiBVgEySUK7CK.jpg", "order": 6}, {"name": "Guillaume Briat", "character": "Ob\u00e9lix", "id": 1152669, "credit_id": "52fe4cf8c3a36847f8247aa9", "cast_id": 11, "profile_path": "/nZRgXiCfW7ZMKi0DdivdPISPzU7.jpg", "order": 7}, {"name": "Lor\u00e0nt Deutsch", "character": "Anglaigus", "id": 25347, "credit_id": "53074e87c3a3682b7200032e", "cast_id": 12, "profile_path": "/r6kF1vGoKMcRVvYxpKfx91Ra4EK.jpg", "order": 8}, {"name": "Alain Chabat", "character": "S\u00e9nateur Prospectus", "id": 4275, "credit_id": "53074ee3c3a368538000069b", "cast_id": 13, "profile_path": "/5F1vlPLkLXYwfxo3LYlkp8HpjOZ.jpg", "order": 9}, {"name": "G\u00e9raldine Nakache", "character": "Dulcia", "id": 114953, "credit_id": "53074f23c3a36822f1000523", "cast_id": 14, "profile_path": "/zLoLsZlHqhKkpJHdQWNFb512t2V.jpg", "order": 10}, {"name": "Florence Foresti", "character": "Bonemine", "id": 56226, "credit_id": "53074f3bc3a368363a00014d", "cast_id": 15, "profile_path": "/pBv0EiKkQWgU6YIS0Db4hQwcVZ7.jpg", "order": 11}, {"name": "Laurent Lafitte", "character": "Duplicatha", "id": 93532, "credit_id": "53074f54c3a36878010001e1", "cast_id": 16, "profile_path": "/58rntvDjklRQBDsrtar4Nw8lRde.jpg", "order": 12}, {"name": "Baptiste Lecaplain", "character": "un gladiateur", "id": 1115077, "credit_id": "53074f87c3a3685181000457", "cast_id": 17, "profile_path": "/c4b6Tu2yzlDb5sNIqjQReT8SmB9.jpg", "order": 13}, {"name": "Brice Fournier", "character": "Un S\u00e9nateur", "id": 587147, "credit_id": "53074fc0c3a3682b72000336", "cast_id": 18, "profile_path": "/tO9yEcc8jHaelRqtJTe9xMdhGu.jpg", "order": 14}, {"name": "Pascal Demolon", "character": "Cordius", "id": 1033622, "credit_id": "53075094c3a3685181000460", "cast_id": 19, "profile_path": "/o5zw4UUxmO9Jo5st5lkAohNqOYQ.jpg", "order": 15}], "directors": [{"name": "Alexandre Astier", "department": "Directing", "job": "Director", "credit_id": "52fe4cf8c3a36847f8247a83", "profile_path": "/wRa1DsdpMpttU1ypzslpbfKM9Gb.jpg", "id": 47826}, {"name": "Louis Clichy", "department": "Directing", "job": "Director", "credit_id": "5488a2adc3a3684145001de8", "profile_path": null, "id": 1397397}], "vote_average": 6.8, "runtime": 85}, "39451": {"poster_path": "/vpVa9AaUHokKoRzDQmEPGgAWpaX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 310650585, "overview": "It has taken 10 years, two little Fockers with wife Pam and countless hurdles for Greg to finally get in with his tightly wound father-in-law, Jack. After the cash-strapped dad takes a job moonlighting for a drug company, Jack's suspicions about his favorite male nurse come roaring back. When Greg and Pam's entire clan descends for the twins' birthday party, Greg must prove to the skeptical Jack that he's fully capable as the man of the house.", "video": false, "id": 39451, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Little Fockers", "tagline": "Kids bring everyone closer, right?", "vote_count": 413, "homepage": "http://www.littlefockers.net/", "belongs_to_collection": {"backdrop_path": "/fgcgqjw37RThZCbVrfLLkJsqNNR.jpg", "poster_path": "/WFkinadVm4NRynRKuUcaLFNIDx.jpg", "id": 51509, "name": "Meet the Parents Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970866", "adult": false, "backdrop_path": "/gpodYxsJZ6OVlpPo0fYkubTBWx9.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "2010-12-21", "popularity": 0.902544077284135, "original_title": "Little Fockers", "budget": 100000000, "cast": [{"name": "Robert De Niro", "character": "Jack Byrnes", "id": 380, "credit_id": "52fe471a9251416c9106a125", "cast_id": 13, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Greg Focker", "id": 7399, "credit_id": "52fe471a9251416c9106a129", "cast_id": 14, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Kevin Rawley", "id": 887, "credit_id": "52fe471a9251416c9106a12d", "cast_id": 15, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Dustin Hoffman", "character": "Bernie Focker", "id": 4483, "credit_id": "52fe471a9251416c9106a131", "cast_id": 16, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 3}, {"name": "Barbra Streisand", "character": "Rozalin Focker", "id": 10400, "credit_id": "52fe471a9251416c9106a135", "cast_id": 17, "profile_path": "/iLkX0Qwz2BH42rcZ0yWqPtyKSeN.jpg", "order": 4}, {"name": "Teri Polo", "character": "Pam Byrnes-Focker", "id": 10399, "credit_id": "52fe471a9251416c9106a139", "cast_id": 18, "profile_path": "/67k0q1YYVIeMd0wZalfqJ2FYLuu.jpg", "order": 5}, {"name": "Blythe Danner", "character": "Dina Byrnes", "id": 10401, "credit_id": "52fe471a9251416c9106a13d", "cast_id": 19, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 6}, {"name": "Jessica Alba", "character": "Andi Garcia", "id": 56731, "credit_id": "52fe471a9251416c9106a141", "cast_id": 21, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 7}, {"name": "Harvey Keitel", "character": "Randy Weir", "id": 1037, "credit_id": "52fe471a9251416c9106a145", "cast_id": 22, "profile_path": "/oP3A0NaJShM1BbI7WwMFui72b7O.jpg", "order": 8}, {"name": "Laura Dern", "character": "Prudence", "id": 4784, "credit_id": "52fe471a9251416c9106a149", "cast_id": 23, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 9}, {"name": "Colin Baiocchi", "character": "Henry Focker", "id": 145374, "credit_id": "52fe471a9251416c9106a14d", "cast_id": 24, "profile_path": "/tcIKr5ByT1CaGbGnjc7lLBxO6UI.jpg", "order": 10}, {"name": "Daisy Tahan", "character": "Samantha Focker", "id": 80002, "credit_id": "52fe471a9251416c9106a151", "cast_id": 25, "profile_path": "/tcu4J8a6cpefCa55eZ9OWl8W4wG.jpg", "order": 11}, {"name": "Robert Miano", "character": "Party Parent", "id": 62715, "credit_id": "52fe471a9251416c9106a155", "cast_id": 26, "profile_path": "/jdooBgF7c24ehqBWPJHjC1f09f8.jpg", "order": 12}, {"name": "Sergio Calder\u00f3n", "character": "Gustavo", "id": 9630, "credit_id": "52fe471a9251416c9106a159", "cast_id": 27, "profile_path": "/idF5aYegbTJzZF7Uhe3GarfKSsZ.jpg", "order": 13}], "directors": [{"name": "Paul Weitz", "department": "Directing", "job": "Director", "credit_id": "52fe471a9251416c9106a115", "profile_path": "/u6VYkIxricoJ31MkmljXs2ZCSFQ.jpg", "id": 3289}], "vote_average": 5.5, "runtime": 98}, "7942": {"poster_path": "/s6ehbUfScpU0408ahsxCzlUwAzG.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 33000000, "overview": "Five years after jilting his pregnant fianc\u00e9e on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.", "video": false, "id": 7942, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Run, Fatboy, Run", "tagline": "Love. Commitment. Responsibility. There's nothing he won't run away from.", "vote_count": 56, "homepage": "http://www.runfatboyrunmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0425413", "adult": false, "backdrop_path": "/ataSToX6mARHLbv0NpEmKr7IJJs.jpg", "production_companies": [{"name": "Entertainment Films", "id": 2245}, {"name": "Material Entertainment", "id": 2246}, {"name": "Beech Hill Films", "id": 6847}], "release_date": "2007-09-06", "popularity": 0.415361934774286, "original_title": "Run Fatboy Run", "budget": 10000000, "cast": [{"name": "Simon Pegg", "character": "Dennis", "id": 11108, "credit_id": "52fe4489c3a36847f809b9b3", "cast_id": 9, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Thandie Newton", "character": "Libby", "id": 9030, "credit_id": "52fe4489c3a36847f809b9b7", "cast_id": 10, "profile_path": "/byGtD0HVMgWFSluh1UlwB0qMhh7.jpg", "order": 1}, {"name": "Hank Azaria", "character": "Whit", "id": 5587, "credit_id": "52fe4489c3a36847f809b9bb", "cast_id": 11, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 2}, {"name": "Dylan Moran", "character": "Gordon", "id": 7028, "credit_id": "52fe4489c3a36847f809b9bf", "cast_id": 12, "profile_path": "/fRytf4KnZQmwYgVx7HZDs1w4F5b.jpg", "order": 3}, {"name": "Harish Patel", "character": "Mr. Goshdashtidar", "id": 53362, "credit_id": "52fe4489c3a36847f809b9c3", "cast_id": 13, "profile_path": "/rj5JnECTU0CR8vS9cVBhFPG5vs5.jpg", "order": 4}, {"name": "India de Beaufort", "character": "Maya Goshdashtidar", "id": 53364, "credit_id": "52fe4489c3a36847f809b9c7", "cast_id": 14, "profile_path": "/lwo8G0R4TW4Nyc6jPw6GdILkleu.jpg", "order": 5}, {"name": "Matthew Fenton", "character": "Jake", "id": 53365, "credit_id": "52fe4489c3a36847f809b9cb", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Simon Day", "character": "Vincent", "id": 53366, "credit_id": "52fe4489c3a36847f809b9cf", "cast_id": 16, "profile_path": "/abYgLYkQFueO7GRYi3q2COdm2oH.jpg", "order": 7}, {"name": "Ruth Sheen", "character": "Claudine", "id": 53367, "credit_id": "52fe4489c3a36847f809b9d3", "cast_id": 17, "profile_path": "/1A8sHqgO7vkzcaHAnGr0Ya4Dxte.jpg", "order": 8}, {"name": "Nevan Finegan", "character": "Mickey", "id": 53388, "credit_id": "52fe4489c3a36847f809b9d7", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Tyrone Huggins", "character": "Grover", "id": 53389, "credit_id": "52fe4489c3a36847f809b9db", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Iddo Goldberg", "character": "News Reporter", "id": 94958, "credit_id": "52fe4489c3a36847f809b9df", "cast_id": 20, "profile_path": "/VXjK4ZcvDMLOpkE3egiKNzM9HN.jpg", "order": 11}, {"name": "Ameet Chana", "character": "Taxi Driver", "id": 6239, "credit_id": "52fe448ac3a36847f809b9e3", "cast_id": 21, "profile_path": "/yS2siAYTSMqUBwtPpVQ7ONrJbrC.jpg", "order": 12}, {"name": "Chris Hollins", "character": "Himself", "id": 1089425, "credit_id": "52fe448ac3a36847f809b9e7", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Denis Lewis", "character": "Herself", "id": 1089426, "credit_id": "52fe448ac3a36847f809b9eb", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Lorna Gayle", "character": "Nurse", "id": 209990, "credit_id": "52fe448ac3a36847f809b9ef", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Gabriel Fleary", "character": "Drag Queen", "id": 1013050, "credit_id": "52fe448ac3a36847f809b9f3", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Pandora Colin", "character": "Claire", "id": 199523, "credit_id": "52fe448ac3a36847f809b9f7", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Stephen Merchant", "character": "Man with Broken Leg", "id": 39189, "credit_id": "52fe448ac3a36847f809b9fb", "cast_id": 27, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 18}, {"name": "David Walliams", "character": "Man in Bakery", "id": 80536, "credit_id": "52fe448ac3a36847f809b9ff", "cast_id": 28, "profile_path": "/3CrenEjzotOmk2FidLQ1mePjPNS.jpg", "order": 19}, {"name": "Hazel Douglas", "character": "Older Woman", "id": 94742, "credit_id": "52fe448ac3a36847f809ba03", "cast_id": 29, "profile_path": "/nT2a4oiWM8hk34hRvQcKA7in89g.jpg", "order": 20}, {"name": "Anna Tolputt", "character": "Receptionist", "id": 73967, "credit_id": "52fe448ac3a36847f809ba07", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Simon Lenagan", "character": "Undercover Cop / Dad", "id": 30446, "credit_id": "52fe448ac3a36847f809ba0b", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "David Cann", "character": "Marathon Official", "id": 193340, "credit_id": "52fe448ac3a36847f809ba0f", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "T.R. Bowen", "character": "Doctor", "id": 133038, "credit_id": "52fe448ac3a36847f809ba13", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Margaret John", "character": "Libby's Grandmother", "id": 119906, "credit_id": "52fe448ac3a36847f809ba17", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Floella Benjamin", "character": "Libby's Mum", "id": 220167, "credit_id": "52fe448ac3a36847f809ba1b", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "David Milner", "character": "Libby's Dad", "id": 1017831, "credit_id": "52fe448ac3a36847f809ba1f", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Henrietta Clemett", "character": "Reception Nurse", "id": 1089427, "credit_id": "52fe448ac3a36847f809ba23", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Peter Serafinowicz", "character": "TV Commentator", "id": 11115, "credit_id": "52fe448ac3a36847f809ba27", "cast_id": 38, "profile_path": "/nfXHDKeetwO16agC0S7tDmLt1il.jpg", "order": 29}], "directors": [{"name": "David Schwimmer", "department": "Directing", "job": "Director", "credit_id": "52fe4489c3a36847f809b985", "profile_path": "/kJBQNeB3k4iVtff8VfTG1mPaVwx.jpg", "id": 14409}], "vote_average": 6.3, "runtime": 100}, "55846": {"poster_path": "/9TKwBFjvOM2yoNYVCOug94iIBWo.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 741875, "overview": "A tough cop is dispatched to take down a serial killer who has been targeting police officers.", "video": false, "id": 55846, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Blitz", "tagline": "It's cop-killer versus killer-cop.", "vote_count": 166, "homepage": "http://www.blitzmovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1297919", "adult": false, "backdrop_path": "/3QSBDya9ZI7AqGfcXqTfrrEOot0.jpg", "production_companies": [{"name": "Lipsync Productions", "id": 9987}, {"name": "Lionsgate", "id": 1632}, {"name": "Davis-Films", "id": 342}, {"name": "Current Entertainment", "id": 972}, {"name": "Kushner/Wyman Productions", "id": 25629}, {"name": "Blitz Films", "id": 25628}], "release_date": "2011-05-20", "popularity": 0.65051423727813, "original_title": "Blitz", "budget": 15774948, "cast": [{"name": "Jason Statham", "character": "Detective Sergeant Tom Brant", "id": 976, "credit_id": "52fe48e2c3a36847f817ea43", "cast_id": 9, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Paddy Considine", "character": "Porter Nash", "id": 14887, "credit_id": "52fe48e2c3a36847f817ea2b", "cast_id": 3, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 1}, {"name": "Aidan Gillen", "character": "Barry Weiss", "id": 49735, "credit_id": "52fe48e2c3a36847f817ea2f", "cast_id": 4, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 2}, {"name": "Zawe Ashton", "character": "WPC Elizabeth Falls", "id": 118034, "credit_id": "52fe48e2c3a36847f817ea33", "cast_id": 5, "profile_path": "/eZH93X0uu3OfbzELkQeXdQGbS3c.jpg", "order": 3}, {"name": "Luke Evans", "character": "DI Craig Stokes", "id": 114019, "credit_id": "52fe48e2c3a36847f817ea47", "cast_id": 10, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 4}, {"name": "David Morrissey", "character": "Dunlop", "id": 18616, "credit_id": "52fe48e2c3a36847f817ea4b", "cast_id": 11, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 5}, {"name": "Ron Donachie", "character": "Sergeant Cross", "id": 63141, "credit_id": "52fe48e2c3a36847f817ea4f", "cast_id": 12, "profile_path": "/eYU99aaSs2D0EZXbRTn5oFo3kaG.jpg", "order": 6}, {"name": "Joe Dempsie", "character": "Theo Nelson", "id": 570296, "credit_id": "52fe48e2c3a36847f817ea53", "cast_id": 13, "profile_path": "/yfFYFrVFGc5pVnc4tn5wrZgMENG.jpg", "order": 7}, {"name": "Elly Fairman", "character": "DC Sandra Bates (as Ellie Fairman)", "id": 293071, "credit_id": "52fe48e2c3a36847f817ea57", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ned Dennehy", "character": "Radnor", "id": 63362, "credit_id": "52fe48e2c3a36847f817ea5b", "cast_id": 15, "profile_path": "/k4kgPvUND2eTrgmotrVWVJM0JUG.jpg", "order": 9}, {"name": "Bill Champion", "character": "Dr. Leonard", "id": 1332498, "credit_id": "53a54b250e0a26143f000d60", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Richard Riddell", "character": "McDonald", "id": 103352, "credit_id": "53a54b5e0e0a261445000dc8", "cast_id": 31, "profile_path": "/48lJtJRVzuBK2ac8JBQZiBbVkYT.jpg", "order": 11}, {"name": "Ron Donachie", "character": "Cross", "id": 63141, "credit_id": "53a54bc6c3a36874950003fc", "cast_id": 32, "profile_path": "/eYU99aaSs2D0EZXbRTn5oFo3kaG.jpg", "order": 12}], "directors": [{"name": "Elliott Lester", "department": "Directing", "job": "Director", "credit_id": "52fe48e2c3a36847f817ea27", "profile_path": "/2VVIVzl47jSwYGAds5pCniGz17v.jpg", "id": 119406}], "vote_average": 6.1, "runtime": 97}, "244264": {"poster_path": "/dNcoXoRC7JHiqbe7k5Ufo6syiPP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Overeducated and underemployed, 28 year old Megan is in the throes of a quarterlife crisis. Squarely into adulthood with no career prospects, no particular motivation to think about her future and no one to relate to, Megan is comfortable lagging a few steps behind - while her friends check off milestones and celebrate their new grown-up status. When her high-school sweetheart proposes, Megan panics and- given an unexpected opportunity to escape for a week - hides out in the home of her new friend, 16-year old Annika and Annika's world-weary single dad Craig.", "video": false, "id": 244264, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Laggies", "tagline": "Acting your age is so overrated.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2034031", "adult": false, "backdrop_path": "/3hOPv3w5mmPV3MA9fk0nPI5MyXV.jpg", "production_companies": [{"name": "Merced Media Partners", "id": 45358}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2014-10-24", "popularity": 1.42399931139669, "original_title": "Laggies", "budget": 0, "cast": [{"name": "Keira Knightley", "character": "Megan", "id": 116, "credit_id": "52fe4eefc3a36847f82b1a53", "cast_id": 5, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Annika", "id": 56734, "credit_id": "52fe4eefc3a36847f82b1a5b", "cast_id": 7, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 2}, {"name": "Sam Rockwell", "character": "Craig", "id": 6807, "credit_id": "551f017f9251415c7700004b", "cast_id": 8, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 3}, {"name": "Kaitlyn Dever", "character": "Misty", "id": 481337, "credit_id": "551f018dc3a3684dcd00003e", "cast_id": 9, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 4}, {"name": "Ellie Kemper", "character": "Allison", "id": 475512, "credit_id": "551f01aec3a3684dda000077", "cast_id": 10, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 5}, {"name": "Mark Webber", "character": "Anthony", "id": 4451, "credit_id": "551f01d6c3a3684dda00007e", "cast_id": 11, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 6}, {"name": "Jeff Garlin", "character": "Ed", "id": 60074, "credit_id": "551f01e6c3a3684dcf000064", "cast_id": 12, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 7}, {"name": "Daniel Zovatto", "character": "Junior", "id": 1172147, "credit_id": "551f01f7c3a3684dcd000049", "cast_id": 13, "profile_path": "/hfohvPNLolPSLSsw4jPzHW7if2R.jpg", "order": 8}, {"name": "Gretchen Mol", "character": "Bethany", "id": 15370, "credit_id": "553a12aac3a3683e55000f9d", "cast_id": 14, "profile_path": "/vJLYBnJI3EpJtQaRrnHA7246QFl.jpg", "order": 9}], "directors": [{"name": "Lynn Shelton", "department": "Directing", "job": "Director", "credit_id": "52fe4eefc3a36847f82b1a3d", "profile_path": "/rKidRtakuSjXv13CjkYXcOeiKPq.jpg", "id": 90492}], "vote_average": 6.2, "runtime": 100}, "23082": {"poster_path": "/3A6AjKUo63tfpt7Dj4md8cOR5Gg.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31912793, "overview": "Set in a world where the concept of lying doesn't exist, a loser changes his lot when he invents lying and uses it to get ahead.", "video": false, "id": 23082, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Invention of Lying", "tagline": "In a world where everyone can only tell the truth... This guy can lie.", "vote_count": 146, "homepage": "http://the-invention-of-lying.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1058017", "adult": false, "backdrop_path": "/aT9YzyaNTr3vItKnfG60yyDM2PS.jpg", "production_companies": [{"name": "Wintergreen Productions", "id": 11845}, {"name": "Warner Bros.", "id": 6194}, {"name": "Radar Pictures", "id": 14718}, {"name": "Media Rights Capital", "id": 2531}, {"name": "1821 Pictures", "id": 14358}, {"name": "Lin Pictures", "id": 2723}, {"name": "Lynda Obst Productions", "id": 13769}], "release_date": "2009-09-13", "popularity": 0.699539342436836, "original_title": "The Invention of Lying", "budget": 18500000, "cast": [{"name": "Ricky Gervais", "character": "Mark Bellison", "id": 17835, "credit_id": "52fe445dc3a368484e01eca7", "cast_id": 1, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 0}, {"name": "Jennifer Garner", "character": "Anna McDoogles", "id": 9278, "credit_id": "52fe445dc3a368484e01ecab", "cast_id": 2, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 1}, {"name": "Jonah Hill", "character": "Frank", "id": 21007, "credit_id": "52fe445dc3a368484e01ecaf", "cast_id": 3, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 2}, {"name": "Louis C.K.", "character": "Greg", "id": 52849, "credit_id": "52fe445dc3a368484e01ecb3", "cast_id": 4, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 3}, {"name": "Jeffrey Tambor", "character": "Anthony", "id": 4175, "credit_id": "52fe445dc3a368484e01ecb7", "cast_id": 5, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 4}, {"name": "Fionnula Flanagan", "character": "Martha Bellison", "id": 58068, "credit_id": "52fe445dc3a368484e01ecbb", "cast_id": 6, "profile_path": "/bQPNTSyBXdfwOXcwjCdzFXDSDVO.jpg", "order": 5}, {"name": "Rob Lowe", "character": "Brad Kessler", "id": 2879, "credit_id": "52fe445dc3a368484e01ecbf", "cast_id": 7, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 6}, {"name": "Tina Fey", "character": "Shelley", "id": 56323, "credit_id": "52fe445dc3a368484e01ecc3", "cast_id": 8, "profile_path": "/7yJNtRogHfDFkeB6I0WCjCwTwfh.jpg", "order": 7}, {"name": "Stephanie March", "character": "Blonde", "id": 59156, "credit_id": "52fe445dc3a368484e01ecd3", "cast_id": 11, "profile_path": "/cHEnLAOfLW0sMQ83mdmlZXzuvnj.jpg", "order": 8}, {"name": "Ruben Santiago-Hudson", "character": "Landlord", "id": 31839, "credit_id": "52fe445dc3a368484e01ecd7", "cast_id": 12, "profile_path": "/2YJuTKgNMqHWZnLqzSZ5kOXYSCm.jpg", "order": 9}, {"name": "John Hodgman", "character": "Wedding Overseer", "id": 77344, "credit_id": "52fe445dc3a368484e01ecdb", "cast_id": 13, "profile_path": "/qMFcDuOUgz3HkD5OMjkHYa677VE.jpg", "order": 10}, {"name": "Nate Corddry", "character": "News Reporter", "id": 127048, "credit_id": "52fe445dc3a368484e01ecdf", "cast_id": 14, "profile_path": "/ycgZemGvsNvCEmrNf75zOr0VUQq.jpg", "order": 11}, {"name": "Jimmi Simpson", "character": "Bob", "id": 22125, "credit_id": "52fe445dc3a368484e01ece3", "cast_id": 15, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 12}, {"name": "Martin Starr", "character": "Waiter #1", "id": 41089, "credit_id": "52fe445dc3a368484e01ece7", "cast_id": 16, "profile_path": "/rpjKbiS2z4miGHTXbndlSzl7Xnk.jpg", "order": 13}, {"name": "Jason Bateman", "character": "Doctor", "id": 23532, "credit_id": "52fe445dc3a368484e01eceb", "cast_id": 17, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 14}, {"name": "Christopher Guest", "character": "Nathan Goldfrappe", "id": 13524, "credit_id": "52fe445dc3a368484e01ecef", "cast_id": 18, "profile_path": "/fhEQq0q2aR2sh4HU824xunoyAce.jpg", "order": 15}, {"name": "Philip Seymour Hoffman", "character": "Jim the Bartender", "id": 1233, "credit_id": "52fe445dc3a368484e01ecf3", "cast_id": 19, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 16}, {"name": "Edward Norton", "character": "Cop", "id": 819, "credit_id": "52fe445dc3a368484e01ecf7", "cast_id": 20, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 17}, {"name": "Bobby Moynihan", "character": "Assistant", "id": 452205, "credit_id": "52fe445dc3a368484e01ecfb", "cast_id": 21, "profile_path": "/oMnwyuUAJOUWLgG3nomfQqtRvzf.jpg", "order": 18}, {"name": "Stephen Merchant", "character": "Man at the Door", "id": 39189, "credit_id": "52fe445dc3a368484e01ed05", "cast_id": 23, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 19}, {"name": "Dreama Walker", "character": "Receptionist", "id": 74303, "credit_id": "52fe445dc3a368484e01ed09", "cast_id": 24, "profile_path": "/s0d0pYG4ZECFGt87bBu4iEORh0K.jpg", "order": 20}], "directors": [{"name": "Ricky Gervais", "department": "Directing", "job": "Director", "credit_id": "52fe445dc3a368484e01ecc9", "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "id": 17835}], "vote_average": 5.9, "runtime": 100}, "244267": {"poster_path": "/8yBrj7mXCcNaHOJja7CL7tAnqlc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 336472, "overview": "I Origins follows a molecular biologist studying the evolution of the human eye. He finds his work permeating his life after a brief encounter with an exotic young woman who slips away from him. As his research continues years later with his lab partner, they make a stunning scientific discovery that has far reaching implications and complicates both his scientific and and spiritual beliefs. Traveling half way around the world, he risks everything he has ever known to validate his theory.", "video": false, "id": 244267, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "I Origins", "tagline": "", "vote_count": 173, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2884206", "adult": false, "backdrop_path": "/aCqtptDwByuW6gL9rm085KU9eVg.jpg", "production_companies": [{"name": "Bersin Pictures", "id": 36186}, {"name": "Verisimilitude", "id": 22632}, {"name": "WeWork Studios", "id": 36187}], "release_date": "2014-07-18", "popularity": 1.65085335869697, "original_title": "I Origins", "budget": 0, "cast": [{"name": "Michael Pitt", "character": "Ian Gray", "id": 10692, "credit_id": "52fe4eefc3a36847f82b1ac7", "cast_id": 9, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 0}, {"name": "Steven Yeun", "character": "Kenny", "id": 215055, "credit_id": "52fe4eefc3a36847f82b1ad3", "cast_id": 12, "profile_path": "/ijQd15rEvkqaEBONW7szFZMpRyP.jpg", "order": 1}, {"name": "Astrid Berg\u00e8s-Frisbey", "character": "Sofi", "id": 469759, "credit_id": "52fe4eefc3a36847f82b1acf", "cast_id": 11, "profile_path": "/tyegg8trgGSRfWwnmbX69DG5rQ5.jpg", "order": 2}, {"name": "Brit Marling", "character": "Karen", "id": 222330, "credit_id": "52fe4eefc3a36847f82b1acb", "cast_id": 10, "profile_path": "/bm7EfTr28eYHgUdDQjRjYU0BwfI.jpg", "order": 3}, {"name": "Dorien Makhloghi", "character": "7-Eleven Attendant", "id": 1455931, "credit_id": "5532131292514140b50003cc", "cast_id": 19, "profile_path": "/2vNFOZgFRha79oT903ccFuMR15n.jpg", "order": 4}, {"name": "Charles W. Gray", "character": "Marriage Clerk", "id": 45448, "credit_id": "53c693f1c3a36862470022ce", "cast_id": 15, "profile_path": "/vH5sb42b01saWMdMBCmGC5xhym7.jpg", "order": 5}, {"name": "Johns Schiumo", "character": "TV Anchor", "id": 1342356, "credit_id": "53c694c70e0a267ff10022f7", "cast_id": 18, "profile_path": "/jyWS7chcSdWv97vbwubMn3FT9ym.jpg", "order": 6}, {"name": "Farasha Baylock", "character": "Posh Waitress", "id": 1455943, "credit_id": "5532169dc3a3682226002287", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Ako", "character": "Nurse", "id": 1113467, "credit_id": "553217ba92514164d500133a", "cast_id": 23, "profile_path": "/JR7IlN2W676n4GiMrvyy9pYoRs.jpg", "order": 8}, {"name": "Christopher Santamaria", "character": "Baby Tobias", "id": 1455945, "credit_id": "55321a3cc3a368221d00229a", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Sebastian Santamaria", "character": "Baby Tobias", "id": 1455946, "credit_id": "55321a4d925141529100217f", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Cara Seymour", "character": "Dr. Jane Simmons", "id": 2617, "credit_id": "52fe4eefc3a36847f82b1adb", "cast_id": 14, "profile_path": "/d1Svp0CCc9kad2mCxKn3L6VZrcq.jpg", "order": 11}, {"name": "Rhonda Ayers", "character": "Waitress", "id": 1342355, "credit_id": "53c6947ac3a368624b00211e", "cast_id": 17, "profile_path": "/kQCYRwOoz4yvxucTc2dREZ4WZnF.jpg", "order": 13}, {"name": "Crystal Anne Dickinson", "character": "Julie Dairy", "id": 1422497, "credit_id": "55321ac6925141529b00210b", "cast_id": 27, "profile_path": "/6MLUT6nd6X44qqICZG9T8hphUgk.jpg", "order": 14}, {"name": "Venida Evans", "character": "Margaret Dairy", "id": 1232607, "credit_id": "55321bb4c3a368222a0020fb", "cast_id": 28, "profile_path": "/jAV8n1n0uIvRnYsL0UvjmT3I82h.jpg", "order": 15}, {"name": "William Mapother", "character": "Darryl Mackenzie", "id": 15338, "credit_id": "55321bcd92514152910021c3", "cast_id": 29, "profile_path": "/dEfuqLZOo5YfPcOJUftPq1q3hFL.jpg", "order": 16}, {"name": "Archie Panjabi", "character": "Priya Varma", "id": 128645, "credit_id": "52fe4eefc3a36847f82b1ad7", "cast_id": 13, "profile_path": "/3oUmHnp1GIS9lgB1KQYrsuoAR20.jpg", "order": 17}], "directors": [{"name": "Mike Cahill", "department": "Directing", "job": "Director", "credit_id": "52fe4eefc3a36847f82b1a99", "profile_path": "/mHnomJ1nar2xq8z0ht2iReFolof.jpg", "id": 45459}], "vote_average": 7.2, "runtime": 106}, "10316": {"poster_path": "/4RTZVVFVFUxndkjlyauDIi0jANt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75993061, "overview": "An idealistic staffer for a newbie presidential candidate gets a crash course on dirty politics during his stint on the campaign trail. Based on the play by Beau Willimon.", "video": false, "id": 10316, "genres": [{"id": 18, "name": "Drama"}], "title": "The Ides of March", "tagline": "Ambition seduces. Power corrupts.", "vote_count": 284, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1124035", "adult": false, "backdrop_path": "/fWy4ATlV8T3mYKicihloXfBeVAd.jpg", "production_companies": [{"name": "Crystal City Entertainment", "id": 9018}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Exclusive Media Group", "id": 11448}, {"name": "Smokehouse Pictures", "id": 22695}], "release_date": "2011-10-07", "popularity": 1.18174026811333, "original_title": "The Ides of March", "budget": 12500000, "cast": [{"name": "Ryan Gosling", "character": "Stephen Meyers", "id": 30614, "credit_id": "52fe43589251416c7500cc2f", "cast_id": 6, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "George Clooney", "character": "Governer Mike Morris", "id": 1461, "credit_id": "52fe43589251416c7500cc2b", "cast_id": 5, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 1}, {"name": "Philip Seymour Hoffman", "character": "Paul Zara", "id": 1233, "credit_id": "52fe43589251416c7500cc3f", "cast_id": 10, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 2}, {"name": "Paul Giamatti", "character": "Tom Duffy", "id": 13242, "credit_id": "52fe43589251416c7500cc3b", "cast_id": 9, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 3}, {"name": "Evan Rachel Wood", "character": "Molly Stearns", "id": 38940, "credit_id": "52fe43589251416c7500cc33", "cast_id": 7, "profile_path": "/6jK9l7OG6aeneLQhh3yvUnUT2sT.jpg", "order": 4}, {"name": "Marisa Tomei", "character": "Ida Horowicz", "id": 3141, "credit_id": "52fe43589251416c7500cc37", "cast_id": 8, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 5}, {"name": "Jeffrey Wright", "character": "Senator Franklin Thompson", "id": 2954, "credit_id": "52fe43589251416c7500cc43", "cast_id": 11, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 6}, {"name": "Jennifer Ehle", "character": "Cindy Morris", "id": 49971, "credit_id": "52fe43589251416c7500ccd5", "cast_id": 37, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 7}, {"name": "Gregory Itzin", "character": "Jack Stearns", "id": 21142, "credit_id": "52fe43589251416c7500ccd9", "cast_id": 38, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 8}, {"name": "Michael Mantell", "character": "Senator Ted Pullman", "id": 91030, "credit_id": "52fe43589251416c7500ccdd", "cast_id": 39, "profile_path": "/80CLXfrPC9BoqhjsV5k5rzm5XQL.jpg", "order": 9}, {"name": "Max Minghella", "character": "Ben Harpen", "id": 2978, "credit_id": "52fe43589251416c7500ccd1", "cast_id": 36, "profile_path": "/l3Nln69A24hs5qB9BLNsCs8da3V.jpg", "order": 10}, {"name": "Yuriy Sardarov", "character": "Mike", "id": 150672, "credit_id": "52fe43589251416c7500cce1", "cast_id": 40, "profile_path": "/kM5kbXtXEPfD76EbulrAGiAuF1u.jpg", "order": 11}, {"name": "Bella Ivory", "character": "Jenny", "id": 972921, "credit_id": "52fe43589251416c7500cce5", "cast_id": 41, "profile_path": null, "order": 12}, {"name": "Maya Sayre", "character": "Sue", "id": 972922, "credit_id": "52fe43589251416c7500cce9", "cast_id": 42, "profile_path": null, "order": 13}, {"name": "Danny Mooney ", "character": "Campaign Editor", "id": 146413, "credit_id": "52fe43589251416c7500cced", "cast_id": 43, "profile_path": null, "order": 14}], "directors": [{"name": "George Clooney", "department": "Directing", "job": "Director", "credit_id": "52fe43589251416c7500cc1b", "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "id": 1461}], "vote_average": 6.3, "runtime": 101}, "9316": {"poster_path": "/t4TIJWdnxcKXcsLYqKUoNzDkeU8.jpg", "production_countries": [{"iso_3166_1": "TH", "name": "Thailand"}], "revenue": 4563167, "overview": "When the head of a statue sacred to a village is stolen, a young martial artist goes to the big city and finds himself taking on the underworld to retrieve it.", "video": false, "id": 9316, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Ong Bak", "tagline": "No computer graphics. No stunt doubles. No wires.", "vote_count": 167, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wqyznAkjOn5nhRYYH7Gl6Bcq3kg.jpg", "poster_path": "/30jBLzjAGQ8YZSqyhNEcVP6XZCU.jpg", "id": 94589, "name": "Ong Bak Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368909", "adult": false, "backdrop_path": "/357wFlr9KaqWXqoE2HudCmsyvvt.jpg", "production_companies": [{"name": "Baa-Ram-Ewe", "id": 4206}, {"name": "Sahamongkolfilm Co.", "id": 4207}], "release_date": "2003-01-21", "popularity": 0.270620465200758, "original_title": "Ong Bak", "budget": 0, "cast": [{"name": "Tony Jaa", "character": "Ting", "id": 57207, "credit_id": "52fe44e6c3a36847f80b0b7d", "cast_id": 2, "profile_path": "/qq0uXKe3aKaAE04QQ0BvbbFFufF.jpg", "order": 0}, {"name": "Petchtai Wongkamlao", "character": "Humlae / Dirty Balls / George", "id": 57208, "credit_id": "52fe44e6c3a36847f80b0b79", "cast_id": 1, "profile_path": "/nfzruEoq39lHtbyfHbameRAPY8m.jpg", "order": 1}, {"name": "Pumwaree Yodkamol", "character": "Muay Lek", "id": 57272, "credit_id": "52fe44e6c3a36847f80b0b81", "cast_id": 3, "profile_path": "/9xiahRqcr2VflvdcyaC1Wv8c0XG.jpg", "order": 2}, {"name": "Suchao Pongwilai", "character": "Komtuan", "id": 57273, "credit_id": "52fe44e6c3a36847f80b0b85", "cast_id": 4, "profile_path": "/zUcE8O2y7oOFCX3hpHCKmZ1czbD.jpg", "order": 3}, {"name": "Chumphorn Thepphithak", "character": "Uncle Mao", "id": 149862, "credit_id": "52fe44e6c3a36847f80b0bd1", "cast_id": 19, "profile_path": "/7shjeY2dZLKzEmOsORvq9wSlyvR.jpg", "order": 4}, {"name": "Cheathavuth Watcharakhun", "character": "Peng", "id": 1052080, "credit_id": "52fe44e6c3a36847f80b0bd5", "cast_id": 20, "profile_path": "/tJkWynIa34GK8uHwDq6BsAs7Dqa.jpg", "order": 5}, {"name": "Wannakit Sirioput", "character": "Don", "id": 1003459, "credit_id": "52fe44e6c3a36847f80b0c03", "cast_id": 28, "profile_path": "/z5DDVOVyIoBZlpqaxilagLtehdC.jpg", "order": 6}, {"name": "Rungrawee Barijindakul", "character": "Ngek", "id": 1003463, "credit_id": "52fe44e6c3a36847f80b0c07", "cast_id": 29, "profile_path": "/isi9pmpObt9jzTkmZQ7vk8gwk8A.jpg", "order": 7}, {"name": "Chatthapong Pantanaunkul", "character": "Saming", "id": 64366, "credit_id": "52fe44e6c3a36847f80b0c0b", "cast_id": 30, "profile_path": "/mb4y01r0EdQopEVmnm8O0bPTc8S.jpg", "order": 8}, {"name": "Nudhapol Asavabhakhin", "character": "Toshiro", "id": 1003462, "credit_id": "52fe44e6c3a36847f80b0c0f", "cast_id": 31, "profile_path": null, "order": 9}, {"name": "Pornpimol Chookanthong", "character": "Mae Waan", "id": 1125641, "credit_id": "52fe44e6c3a36847f80b0c13", "cast_id": 32, "profile_path": null, "order": 10}, {"name": "Udom Chouncheun", "character": "Ta Meun", "id": 1125642, "credit_id": "52fe44e6c3a36847f80b0c17", "cast_id": 33, "profile_path": null, "order": 11}, {"name": "Boonsri Yindee", "character": "Yai Hom", "id": 1125643, "credit_id": "52fe44e6c3a36847f80b0c1b", "cast_id": 34, "profile_path": null, "order": 12}], "directors": [{"name": "Prachya Pinkaew", "department": "Directing", "job": "Director", "credit_id": "52fe44e6c3a36847f80b0b8b", "profile_path": "/mdylkarwiTruUbrYFigolTFya7q.jpg", "id": 57214}], "vote_average": 6.8, "runtime": 105}, "39514": {"poster_path": "/q2mwTRKrq1etP9S4SZVDIJq0wI2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71664962, "overview": "When his peaceful life is threatened by a high-tech assassin, former black-ops agent Frank Moses reassembles his old team in a last ditch effort to survive and uncover his assailants.", "video": false, "id": 39514, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "RED", "tagline": "Still armed. Still dangerous. Still got it.", "vote_count": 1489, "homepage": "http://www.red-themovie.com/", "belongs_to_collection": {"backdrop_path": "/fLQjbO5Y2a4hXTPYsZCcWAdjcdS.jpg", "poster_path": "/d9T3DkXxDahif4eXPzrH28yayaL.jpg", "id": 163902, "name": "RED Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1245526", "adult": false, "backdrop_path": "/1TFEtFxD1M9OvMGlGcSAR5Pg53I.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Summit Entertainment", "id": 491}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2010-10-14", "popularity": 1.4031515573914, "original_title": "RED", "budget": 58000000, "cast": [{"name": "Bruce Willis", "character": "Frank Moses", "id": 62, "credit_id": "52fe47219251416c9106b043", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "John Malkovich", "character": "Marvin Boggs", "id": 6949, "credit_id": "52fe47229251416c9106b04b", "cast_id": 7, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 1}, {"name": "Helen Mirren", "character": "Victoria", "id": 15735, "credit_id": "52fe47229251416c9106b04f", "cast_id": 8, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 2}, {"name": "Mary-Louise Parker", "character": "Sarah", "id": 18248, "credit_id": "52fe47229251416c9106b047", "cast_id": 5, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 3}, {"name": "Karl Urban", "character": "William Cooper", "id": 1372, "credit_id": "52fe47229251416c9106b059", "cast_id": 10, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 4}, {"name": "Richard Dreyfuss", "character": "Alexander Dunning", "id": 3037, "credit_id": "52fe47229251416c9106b05d", "cast_id": 12, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 5}, {"name": "Julian McMahon", "character": "VP Stanton", "id": 20402, "credit_id": "52fe47229251416c9106b061", "cast_id": 13, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 6}, {"name": "James Remar", "character": "Gabriel Loeb", "id": 1736, "credit_id": "52fe47229251416c9106b065", "cast_id": 14, "profile_path": "/AeSuQlBclvWqztlpkf9nIhvvhsc.jpg", "order": 7}, {"name": "Brian Cox", "character": "Ivan Simanov", "id": 1248, "credit_id": "52fe47229251416c9106b099", "cast_id": 27, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 8}, {"name": "Ernest Borgnine", "character": "Henry", "id": 7502, "credit_id": "52fe47229251416c9106b069", "cast_id": 15, "profile_path": "/jncvBRxHzlmfilXBDYJw1udTSB0.jpg", "order": 9}, {"name": "Michelle Nolden", "character": "Michelle Cooper", "id": 95635, "credit_id": "52fe47229251416c9106b06d", "cast_id": 16, "profile_path": "/a72FYiArZuG0TjYXtdzPsNvtTyY.jpg", "order": 10}, {"name": "Jonathan Walker", "character": "Burbacher", "id": 52702, "credit_id": "52fe47229251416c9106b071", "cast_id": 17, "profile_path": "/1rIItto71vrSYzcS4yXMsXWk2Yu.jpg", "order": 11}, {"name": "John Stead", "character": "Agent", "id": 126257, "credit_id": "52fe47229251416c9106b075", "cast_id": 18, "profile_path": "/3pK59vDWOPNhvRFbCRkjVFXF4cC.jpg", "order": 12}, {"name": "Robert Morse", "character": "Interrogator", "id": 40173, "credit_id": "52fe47229251416c9106b079", "cast_id": 19, "profile_path": "/va3BC55HSkbKiuphzgYCF9Jaa1x.jpg", "order": 13}, {"name": "Morgan Freeman", "character": "Joe Matheson", "id": 192, "credit_id": "52fe47229251416c9106b095", "cast_id": 26, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 14}, {"name": "Laura DeCarteret", "character": "Fundraiser Greeter", "id": 63858, "credit_id": "52fe47229251416c9106b09d", "cast_id": 28, "profile_path": "/3Uj7eCO8zxLMFyUd6aNwevhXFA7.jpg", "order": 15}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe47229251416c9106b055", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 6.4, "runtime": 111}, "146015": {"poster_path": "/u401upGPw0CZRDbwCWBla7rH6Do.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "An awkward office drone (Jesse Eisenberg) becomes increasingly unhinged after a charismatic and confident look-alike takes a job at his workplace and seduces the woman (Mia Wasikowska) he desires.", "video": false, "id": 146015, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Double", "tagline": "", "vote_count": 94, "homepage": "http://www.magpictures.com/thedouble/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1825157", "adult": false, "backdrop_path": "/gSNqUnQSgYWxsFQ59xH077dW1Zx.jpg", "production_companies": [{"name": "Alcove Entertainment", "id": 11785}, {"name": "Attercop Productions", "id": 11786}, {"name": "British Film Institute (BFI)", "id": 7281}], "release_date": "2014-04-04", "popularity": 0.790660358873094, "original_title": "The Double", "budget": 0, "cast": [{"name": "Jesse Eisenberg", "character": "Simon / James", "id": 44735, "credit_id": "52fe4b6f9251416c75102b3f", "cast_id": 5, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 0}, {"name": "Mia Wasikowska", "character": "Hannah", "id": 76070, "credit_id": "52fe4b6f9251416c75102b3b", "cast_id": 4, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 1}, {"name": "Wallace Shawn", "character": "Mr. Papadopoulos", "id": 12900, "credit_id": "52fe4b6f9251416c75102b43", "cast_id": 6, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 2}, {"name": "Noah Taylor", "character": "Harris", "id": 1284, "credit_id": "52fe4b6f9251416c75102b47", "cast_id": 7, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Rade \u0160erbed\u017eija", "character": "Frightening Old Man", "id": 1118, "credit_id": "52fe4b6f9251416c75102b4b", "cast_id": 8, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 4}, {"name": "Yasmin Paige", "character": "Melanie Papadopoulos", "id": 81571, "credit_id": "52fe4b6f9251416c75102b4f", "cast_id": 9, "profile_path": "/t18rPozXhXpUDzKX6gWF0YBMrca.jpg", "order": 5}, {"name": "Cathy Moriarty", "character": "Kiki", "id": 14702, "credit_id": "52fe4b6f9251416c75102b53", "cast_id": 10, "profile_path": "/sxSwB6uVUMjmeCw3XZzZytbqgRp.jpg", "order": 6}, {"name": "James Fox", "character": "The Colonel", "id": 1292, "credit_id": "52fe4b6f9251416c75102b6d", "cast_id": 15, "profile_path": "/ioQ2RxdK9Th5cONWm0XN3NeedoZ.jpg", "order": 7}, {"name": "Phyllis Somerville", "character": "Simon's Mother", "id": 17184, "credit_id": "52fe4b6f9251416c75102b75", "cast_id": 17, "profile_path": "/urk7FglqBEQVHQibXOAbBgBIMZv.jpg", "order": 8}, {"name": "Chris O'Dowd", "character": "Nurse", "id": 40477, "credit_id": "54b58835c3a36877db0009c5", "cast_id": 20, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 9}, {"name": "Craig Roberts", "character": "Young Detective", "id": 104561, "credit_id": "54bb56979251411d77007a9a", "cast_id": 21, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 10}, {"name": "Kobna Holdbrook-Smith", "character": "Guard / Doctor", "id": 202775, "credit_id": "54bb56a89251416e9b000e04", "cast_id": 22, "profile_path": "/k7ybvCDaMpb4hx7SeFKLmMrMRen.jpg", "order": 11}, {"name": "Tony Rohr", "character": "Rudolph", "id": 44930, "credit_id": "54bb56c39251416e9b000e07", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Sally Hawkins", "character": "Receptionist at Ball", "id": 39658, "credit_id": "54bb56d0c3a3687c40000ee7", "cast_id": 24, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 13}, {"name": "Kierston Wareing", "character": "James' Funeral Date", "id": 8309, "credit_id": "54bb56dec3a3686c610076a6", "cast_id": 25, "profile_path": "/5o3sAfFNmG1r6ot40sHZB5toTBp.jpg", "order": 14}, {"name": "Paddy Considine", "character": "'The Replicator' - Jack", "id": 14887, "credit_id": "54bb56ecc3a368145e005437", "cast_id": 26, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 15}, {"name": "Nathalie Cox", "character": "'The Replicator' - Jack's Wife", "id": 17337, "credit_id": "54bb5707c3a3686c610076ac", "cast_id": 28, "profile_path": "/AaSRMDbLHYqDFUIu7QCPjs4eMtb.jpg", "order": 16}, {"name": "Dirk Van Der Gert", "character": "'The Replicator' - Head Judge", "id": 1447653, "credit_id": "551928aa9251412b6d00580b", "cast_id": 29, "profile_path": null, "order": 17}, {"name": "Liam Bewley", "character": "'The Replicator' - Wise Judge", "id": 1447654, "credit_id": "551929069251412b6d005829", "cast_id": 30, "profile_path": null, "order": 18}, {"name": "Gemma Chan", "character": "'The Replicator' - Glamourous Judge", "id": 97576, "credit_id": "52fe4b6f9251416c75102b69", "cast_id": 14, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 19}, {"name": "Gabrielle Downey", "character": "Strange Woman", "id": 1457303, "credit_id": "553618b3c3a3681785001ed1", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Jon Korkes", "character": "Detective", "id": 14836, "credit_id": "5536199ec3a36842ae0006b0", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Susan Blommaert", "character": "Liz", "id": 1913, "credit_id": "553636dd9251414201000265", "cast_id": 33, "profile_path": "/jY0FMFay4Gwk5SxgKsBYAlkY9lA.jpg", "order": 22}, {"name": "Bruce Byron", "character": "Skinhead", "id": 25675, "credit_id": "553637639251414201000278", "cast_id": 34, "profile_path": null, "order": 23}, {"name": "J. Mascis", "character": "Janitor", "id": 1059867, "credit_id": "553638d2c3a36817850023c5", "cast_id": 35, "profile_path": null, "order": 24}, {"name": "Karima Riachy", "character": "Secretary", "id": 1457361, "credit_id": "553639ba92514142010002d9", "cast_id": 36, "profile_path": null, "order": 25}, {"name": "Tim Key", "character": "Care Worker", "id": 1016119, "credit_id": "55363af09251416518002689", "cast_id": 37, "profile_path": null, "order": 26}, {"name": "Andrew Gruen", "character": "Man on Train", "id": 1457369, "credit_id": "55363b21c3a368222600aebc", "cast_id": 38, "profile_path": null, "order": 27}, {"name": "Kim Noble", "character": "Box Man / 'The Replicator' - Guard 1", "id": 1250279, "credit_id": "55363c6792514152cf00278f", "cast_id": 39, "profile_path": null, "order": 28}, {"name": "Morrison Thomas", "character": "Coughing Man", "id": 1457380, "credit_id": "55363d639251417049001663", "cast_id": 40, "profile_path": null, "order": 29}, {"name": "Lloyd Woolf", "character": "Investigator", "id": 1457381, "credit_id": "55363e5ec3a36817850024b7", "cast_id": 41, "profile_path": null, "order": 30}, {"name": "Lydia Ayoade", "character": "Well-Dressed Woman at Ball / Test Invigilator", "id": 1457382, "credit_id": "55363ef8925141651800273d", "cast_id": 42, "profile_path": null, "order": 31}, {"name": "Stuart Silver", "character": "Waiter / 'The Replicator' - Guard 2", "id": 1457383, "credit_id": "55363fc2c3a368222600af79", "cast_id": 43, "profile_path": null, "order": 32}, {"name": "Chris Morris", "character": "Workers' Services Executive", "id": 117794, "credit_id": "55364119925141420100040b", "cast_id": 44, "profile_path": "/wsOfuOHaNGENT1d9rGEinqbYXsW.jpg", "order": 33}, {"name": "Donal Cox", "character": "Priest", "id": 1457385, "credit_id": "553642b4c3a368523e0069fa", "cast_id": 45, "profile_path": null, "order": 34}], "directors": [{"name": "Richard Ayoade", "department": "Directing", "job": "Director", "credit_id": "52fe4b6f9251416c75102b59", "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "id": 98103}], "vote_average": 6.4, "runtime": 93}, "22971": {"poster_path": "/2Fen9XsCscjupGJUhi2zaCvOaGd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 114977104, "overview": "Sergeant John Tyree is home on a 2 week leave from Germany. He meets Savannah after he dives into the ocean to retrieve Savannah's purse that had fallen off the pier. John falls in love with Savannah who is a student on spring break helping build a house for Habitat for Humanity. A romance occurs and Savannah falls deeply in love with John. She promises to write John overseas until he returns.", "video": false, "id": 22971, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}, {"id": 10752, "name": "War"}], "title": "Dear John", "tagline": "Love brought them together will fate tear them apart.", "vote_count": 257, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0989757", "adult": false, "backdrop_path": "/hQIPa1oKM6fSzyp1UBxBfVpSCj2.jpg", "production_companies": [{"name": "Temple Hill Productions", "id": 722}], "release_date": "2010-02-04", "popularity": 1.08113283914063, "original_title": "Dear John", "budget": 25000000, "cast": [{"name": "Amanda Seyfried", "character": "Savannah Lynn Curtis", "id": 71070, "credit_id": "52fe4458c3a368484e01dd11", "cast_id": 1, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 0}, {"name": "Channing Tatum", "character": "John Tyree", "id": 38673, "credit_id": "52fe4458c3a368484e01dd15", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Henry Thomas", "character": "Tim Wheddon", "id": 9976, "credit_id": "52fe4458c3a368484e01dd19", "cast_id": 3, "profile_path": "/2Y1N64fOGxhCIph6cAaJDszORvQ.jpg", "order": 2}, {"name": "Richard Jenkins", "character": "Mr. Tyree", "id": 28633, "credit_id": "52fe4458c3a368484e01dd1d", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 3}, {"name": "Scott Porter", "character": "Randy", "id": 53368, "credit_id": "52fe4458c3a368484e01dd21", "cast_id": 5, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 4}, {"name": "Keith Robinson", "character": "Captain Stone", "id": 15564, "credit_id": "52fe4458c3a368484e01dd25", "cast_id": 6, "profile_path": "/qa0NhCHbhoDBFT1V6EK4JVS4CJW.jpg", "order": 5}, {"name": "Luke Benward", "character": "Alan at 14", "id": 84482, "credit_id": "52fe4458c3a368484e01dd29", "cast_id": 7, "profile_path": "/i17S4LHKcTXbLsg56IetMEsHbzJ.jpg", "order": 6}, {"name": "David Andrews", "character": "Mr. Curtis", "id": 7219, "credit_id": "52fe4458c3a368484e01dd2d", "cast_id": 8, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 7}, {"name": "D.J. Cotrona", "character": "Noodles", "id": 51976, "credit_id": "52fe4458c3a368484e01dd31", "cast_id": 9, "profile_path": "/5eQPcmvZRJuVKBrwER2nIpmn91X.jpg", "order": 8}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4458c3a368484e01dd37", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.6, "runtime": 115}, "39538": {"poster_path": "/kbC6I0AOSLTHFA2dieyat9h8QHP.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 135, "overview": "Contagion follows the rapid progress of a lethal airborne virus that kills within days. As the fast\u2013moving epidemic grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself. At the same time, ordinary people struggle to survive in a society coming apart.", "video": false, "id": 39538, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Contagion", "tagline": "Nothing spreads like fear", "vote_count": 463, "homepage": "http://contagionmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt1598778", "adult": false, "backdrop_path": "/njVTBUU5VK60KsOjju86L4HJS5y.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Participant Media", "id": 6735}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Double Feature Films", "id": 215}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2011-09-09", "popularity": 0.915324219245972, "original_title": "Contagion", "budget": 60, "cast": [{"name": "Matt Damon", "character": "Thomas Emhoff", "id": 1892, "credit_id": "52fe47249251416c9106b4f7", "cast_id": 8, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Gwyneth Paltrow", "character": "Beth Emhoff", "id": 12052, "credit_id": "52fe47249251416c9106b4fb", "cast_id": 9, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 1}, {"name": "Kate Winslet", "character": "Dr. Erin Mears", "id": 204, "credit_id": "52fe47249251416c9106b4eb", "cast_id": 4, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 2}, {"name": "Jude Law", "character": "Alan Krumwiede", "id": 9642, "credit_id": "52fe47249251416c9106b4ff", "cast_id": 10, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 3}, {"name": "Marion Cotillard", "character": "Dr. Leonora Orantes", "id": 8293, "credit_id": "52fe47249251416c9106b4ef", "cast_id": 6, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 4}, {"name": "Laurence Fishburne", "character": "Dr. Ellis Cheever", "id": 2975, "credit_id": "52fe47249251416c9106b4f3", "cast_id": 7, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 5}, {"name": "Bryan Cranston", "character": "Haggerty", "id": 17419, "credit_id": "52fe47249251416c9106b51f", "cast_id": 17, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 6}, {"name": "Sanaa Lathan", "character": "Aubrey Cheever", "id": 5411, "credit_id": "52fe47249251416c9106b503", "cast_id": 11, "profile_path": "/hNGPCe0q8prMkBebLzpi2vBwEWr.jpg", "order": 7}, {"name": "Jennifer Ehle", "character": "Dr. Ally Hextall", "id": 49971, "credit_id": "52fe47249251416c9106b529", "cast_id": 19, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 8}, {"name": "Daria Strokous", "character": "Irina", "id": 1106973, "credit_id": "52fe47249251416c9106b52d", "cast_id": 20, "profile_path": "/tag1RcMsJhQdPYbItRfubUDG0vm.jpg", "order": 9}, {"name": "Anna Jacoby-Heron", "character": "Jory Emhoff", "id": 1107177, "credit_id": "52fe47249251416c9106b531", "cast_id": 21, "profile_path": "/oqnuadAg2Dr6YEEuStZzLc7gMjw.jpg", "order": 10}, {"name": "Enrico Colantoni", "character": "Dennis French", "id": 15029, "credit_id": "52fe47249251416c9106b57d", "cast_id": 34, "profile_path": "/2MiGbHuTdUxMJOo4udBQ8x0XGHd.jpg", "order": 11}, {"name": "Demetri Martin", "character": "Dr. David Eisenberg", "id": 84075, "credit_id": "530fb95992514110350000c1", "cast_id": 35, "profile_path": "/puyGH5mGvsky1RU3rcXqB93xq9S.jpg", "order": 12}], "directors": [{"name": "Steven Soderbergh", "department": "Directing", "job": "Director", "credit_id": "52fe47249251416c9106b4e7", "profile_path": "/dxdMRsAosaGlMRd7EMmm9lrXXsW.jpg", "id": 1884}], "vote_average": 6.1, "runtime": 106}, "178809": {"poster_path": "/4E1jXxHcUzAQYOTlFCIANMg29YA.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "Forced underground by the next ice age, a struggling outpost of survivors must fight to preserve humanity against a threat even more savage than nature.", "video": false, "id": 178809, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "The Colony", "tagline": "One day, it started to snow .. and it never stopped", "vote_count": 186, "homepage": "http://www.afterthefreeze.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1160996", "adult": false, "backdrop_path": "/kCF76wyci4fe4DYsOIRLq1KI92t.jpg", "production_companies": [{"name": "RLJ Entertainment", "id": 43808}, {"name": "Alcina Pictures", "id": 4909}, {"name": "120dB Films", "id": 5113}, {"name": "Item 7", "id": 7177}, {"name": "Sierra Pictures (II)", "id": 14495}, {"name": "Mad Samurai Productions", "id": 43807}], "release_date": "2013-09-20", "popularity": 0.617738542739652, "original_title": "The Colony", "budget": 16000000, "cast": [{"name": "Laurence Fishburne", "character": "Briggs", "id": 2975, "credit_id": "52fe4d9cc3a36847f826a581", "cast_id": 2, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 0}, {"name": "Kevin Zegers", "character": "Sam", "id": 7431, "credit_id": "52fe4d9cc3a36847f826a585", "cast_id": 3, "profile_path": "/aztFaCIPiv9Me2DjTtiT7Qnbtm0.jpg", "order": 1}, {"name": "Bill Paxton", "character": "Mason", "id": 2053, "credit_id": "52fe4d9cc3a36847f826a589", "cast_id": 4, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 2}, {"name": "John Tench", "character": "Viktor", "id": 27143, "credit_id": "52fe4d9cc3a36847f826a58d", "cast_id": 6, "profile_path": "/ekWT5nRPRq1EqXbE6gED6nHvFVZ.jpg", "order": 3}, {"name": "Atticus Mitchell", "character": "Graydon", "id": 237756, "credit_id": "52fe4d9cc3a36847f826a591", "cast_id": 7, "profile_path": "/hbZ0MoE695UElVmZCAgFguIEWZ1.jpg", "order": 4}, {"name": "Dru Viergever", "character": "Feral Leader", "id": 1068995, "credit_id": "52fe4d9cc3a36847f826a595", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Romano Orzari", "character": "Reynolds", "id": 96591, "credit_id": "52fe4d9cc3a36847f826a599", "cast_id": 9, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 6}, {"name": "Earl Pastko", "character": "Scientist", "id": 26093, "credit_id": "52fe4d9cc3a36847f826a59d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Lisa Berry", "character": "Nara", "id": 207713, "credit_id": "52fe4d9cc3a36847f826a5a1", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Lucius Hoyos", "character": "Rowan", "id": 1178763, "credit_id": "52fe4d9cc3a36847f826a5a5", "cast_id": 12, "profile_path": "/qLGb1mhjSdriSyC5jhgGwdHlFY7.jpg", "order": 9}, {"name": "Michael Mando", "character": "Cooper", "id": 829372, "credit_id": "52fe4d9cc3a36847f826a5a9", "cast_id": 13, "profile_path": "/zIX25FFBJwqcvzwFeVoJuKTbpCR.jpg", "order": 10}, {"name": "Eric Murdoch", "character": "Terrified Man", "id": 1178764, "credit_id": "52fe4d9cc3a36847f826a5ad", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Kimberly-Sue Murray", "character": "Janelle", "id": 550522, "credit_id": "52fe4d9cc3a36847f826a5b1", "cast_id": 15, "profile_path": "/uJZlJTzpypPteg78qTu2GDACdKU.jpg", "order": 12}, {"name": "Julian Richings", "character": "Leland", "id": 2320, "credit_id": "52fe4d9cc3a36847f826a5b5", "cast_id": 16, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 13}, {"name": "Charlotte Sullivan", "character": "Kai", "id": 1212960, "credit_id": "52fe4d9cc3a36847f826a62b", "cast_id": 36, "profile_path": "/9DLhP3ziNxUen8HZJ26DAMNdGTL.jpg", "order": 14}], "directors": [{"name": "Jeff Renfroe", "department": "Directing", "job": "Director", "credit_id": "52fe4d9cc3a36847f826a57d", "profile_path": null, "id": 229002}], "vote_average": 5.2, "runtime": 95}, "23168": {"poster_path": "/zX4fKmDXKGt4hlzhAJirdlRKFgO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154026136, "overview": "Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. But when a bank job leads to the group kidnapping attractive branch manager Claire Keesey, he takes on the role of monitoring her, but their burgeoning relationship threatens to unveil the identities of Doug and his crew to FBI Agent Adam Frawley who is on their case.", "video": false, "id": 23168, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Town", "tagline": "Welcome to the bank robbery capital of America.", "vote_count": 477, "homepage": "http://thetownmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0840361", "adult": false, "backdrop_path": "/zpaTddJYsrQApEnWxe783DNhTqD.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "GK Films", "id": 3281}, {"name": "Thunder Road Pictures", "id": 3528}], "release_date": "2010-09-15", "popularity": 1.01095029874536, "original_title": "The Town", "budget": 37000000, "cast": [{"name": "Ben Affleck", "character": "Doug MacRay", "id": 880, "credit_id": "52fe4461c3a368484e01faa5", "cast_id": 4, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Rebecca Hall", "character": "Claire", "id": 15556, "credit_id": "52fe4461c3a368484e01faad", "cast_id": 6, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 1}, {"name": "Jeremy Renner", "character": "James Coughlin", "id": 17604, "credit_id": "52fe4461c3a368484e01fab1", "cast_id": 7, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 2}, {"name": "Jon Hamm", "character": "Adam Frawley", "id": 65717, "credit_id": "52fe4461c3a368484e01faa9", "cast_id": 5, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 3}, {"name": "Blake Lively", "character": "Krista", "id": 59175, "credit_id": "52fe4461c3a368484e01faa1", "cast_id": 3, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 4}, {"name": "Slaine (George Carroll)", "character": "Albert 'Gloansy' Magloan", "id": 133067, "credit_id": "52fe4461c3a368484e01fab5", "cast_id": 8, "profile_path": "/wq0FQBzfiFfEXfjaGm3FE43IuTJ.jpg", "order": 5}, {"name": "Owen Burke", "character": "Desmond Elden", "id": 133068, "credit_id": "52fe4461c3a368484e01fab9", "cast_id": 9, "profile_path": "/qZvzQhocdmrjU6wnQXdCV155G3i.jpg", "order": 6}, {"name": "Titus Welliver", "character": "Dino Ciampa", "id": 39389, "credit_id": "52fe4461c3a368484e01fabd", "cast_id": 10, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 7}, {"name": "Pete Postlethwaite", "character": "Fergus 'Fergie' Colm", "id": 4935, "credit_id": "52fe4461c3a368484e01fac1", "cast_id": 11, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 8}, {"name": "Chris Cooper", "character": "Stephen MacRay", "id": 2955, "credit_id": "52fe4461c3a368484e01fac5", "cast_id": 12, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 9}, {"name": "Dennis McLaughlin", "character": "Rusty", "id": 133069, "credit_id": "52fe4461c3a368484e01fac9", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Corena Chase", "character": "Agent Quinlan", "id": 133070, "credit_id": "52fe4461c3a368484e01facd", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Brian Scannell", "character": "Henry", "id": 64143, "credit_id": "52fe4461c3a368484e01fad1", "cast_id": 15, "profile_path": "/cuWZ8wo23r5P2iXRhVjrjb27VNF.jpg", "order": 12}, {"name": "Kerri Dunbar", "character": "Henry\u2019s Girl", "id": 133071, "credit_id": "52fe4461c3a368484e01fad5", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Tony V.", "character": "Vericom Crew Chief", "id": 133072, "credit_id": "52fe4461c3a368484e01fad9", "cast_id": 17, "profile_path": "/aIY4IyVrdMqYZNbVbynuUGxKzgK.jpg", "order": 14}, {"name": "Stephen Bishop", "character": "Derrick", "id": 55205, "credit_id": "52fe4461c3a368484e01fb19", "cast_id": 29, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 15}], "directors": [{"name": "Ben Affleck", "department": "Directing", "job": "Director", "credit_id": "52fe4461c3a368484e01fa97", "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "id": 880}], "vote_average": 6.8, "runtime": 125}, "23169": {"poster_path": "/4zmupVCoEjVkwXfHUsX4GZq4aCQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Still reeling from a heartbreaking family event and his parents' subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother's death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.", "video": false, "id": 23169, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Remember Me", "tagline": "Live in the moments.", "vote_count": 181, "homepage": "http://rememberme-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1403981", "adult": false, "backdrop_path": "/11RZtcc6e7wcZliIUjHNemQ1YF9.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}], "release_date": "2010-03-12", "popularity": 0.760227328223015, "original_title": "Remember Me", "budget": 20000000, "cast": [{"name": "Robert Pattinson", "character": "Tyler", "id": 11288, "credit_id": "52fe4461c3a368484e01fb51", "cast_id": 2, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 0}, {"name": "Pierce Brosnan", "character": "Charles", "id": 517, "credit_id": "52fe4461c3a368484e01fb55", "cast_id": 3, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 1}, {"name": "Emilie de Ravin", "character": "Ally Craig", "id": 28660, "credit_id": "52fe4461c3a368484e01fb59", "cast_id": 4, "profile_path": "/8BpprXp7VdbASWBH3aAbHBi71D0.jpg", "order": 2}, {"name": "Chris Cooper", "character": "Neil Craig", "id": 2955, "credit_id": "52fe4461c3a368484e01fb5d", "cast_id": 5, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 3}, {"name": "Lena Olin", "character": "Diane Hirsch", "id": 5313, "credit_id": "52fe4461c3a368484e01fb61", "cast_id": 6, "profile_path": "/cmekM6MgihkMoFZ1ZNAoSMbcjv4.jpg", "order": 4}, {"name": "Martha Plimpton", "character": "Helen Craig", "id": 17495, "credit_id": "52fe4461c3a368484e01fb65", "cast_id": 7, "profile_path": "/4AoCoaH6agenxberK7QenEQigUc.jpg", "order": 5}, {"name": "Meghan Markle", "character": "Megan", "id": 1216701, "credit_id": "52fe4461c3a368484e01fbb7", "cast_id": 24, "profile_path": "/vCYRriV2w19TBoRWn65Bo8vKy0l.jpg", "order": 6}, {"name": "Peyton List", "character": "Samantha", "id": 1254435, "credit_id": "52fe4461c3a368484e01fbbb", "cast_id": 25, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 7}, {"name": "Emily Wickersham", "character": "Miami Blonde", "id": 204679, "credit_id": "541723850e0a261c27005c0e", "cast_id": 26, "profile_path": "/yJDzlLiPf3RIot0s7bhLzvejwWW.jpg", "order": 8}], "directors": [{"name": "Allen Coulter", "department": "Directing", "job": "Director", "credit_id": "52fe4461c3a368484e01fb4d", "profile_path": "/7nJKeRFBDdH6kJRp9UAd5f2iEXA.jpg", "id": 16834}], "vote_average": 6.9, "runtime": 113}, "14979": {"poster_path": "/qYMmEa4al0Xo5xU26d1ipM2DiDj.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A master thief recruits a notorious thief to help him steal two famous Faberge eggs from an impenetrable vault in an effort to pull off one final job and repay his debt to the Russian mob.", "video": false, "id": 14979, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Thick as Thieves", "tagline": "Never trust a thief.", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "nl", "name": "Nederlands"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1112782", "adult": false, "backdrop_path": "/dkFI8Nyav6IVhX1w2f9Jpsuj9to.jpg", "production_companies": [{"name": "Equity Pictures Medienfonds GmbH & Co. KG IV", "id": 20363}, {"name": "Revelations Entertainment", "id": 906}, {"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "Nu Image Entertainment GmbH", "id": 4741}, {"name": "Millennium Films", "id": 10254}, {"name": "Emmett/Furla Films", "id": 10405}], "release_date": "2009-01-09", "popularity": 0.63396511455388, "original_title": "Thick as Thieves", "budget": 25000000, "cast": [{"name": "Morgan Freeman", "character": "Keith Ripley", "id": 192, "credit_id": "52fe462c9251416c7506fb3b", "cast_id": 22, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 0}, {"name": "Antonio Banderas", "character": "Gabriel Martin", "id": 3131, "credit_id": "52fe462d9251416c7506fb3f", "cast_id": 23, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 1}, {"name": "Radha Mitchell", "character": "Alexandra Korolenko", "id": 8329, "credit_id": "52fe462d9251416c7506fb43", "cast_id": 24, "profile_path": "/kKbnljNC07nqiucGeouxhKESXUC.jpg", "order": 2}, {"name": "Robert Forster", "character": "Lt. Weber", "id": 5694, "credit_id": "52fe462d9251416c7506fb47", "cast_id": 25, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 3}, {"name": "Rade \u0160erbed\u017eija", "character": "Nicky / Victor", "id": 1118, "credit_id": "52fe462d9251416c7506fb4b", "cast_id": 26, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 4}, {"name": "Michael Hayden", "character": "Sudimack", "id": 81829, "credit_id": "52fe462d9251416c7506fb4f", "cast_id": 27, "profile_path": null, "order": 5}, {"name": "Marcel Iures", "character": "Zykov", "id": 15320, "credit_id": "52fe462d9251416c7506fb53", "cast_id": 28, "profile_path": "/3xONkmWY24E9HyKJw9iy5Sw8o9C.jpg", "order": 6}, {"name": "Gary Werntz", "character": "Donley", "id": 81830, "credit_id": "52fe462d9251416c7506fb57", "cast_id": 29, "profile_path": null, "order": 7}, {"name": "Ivan Petrushinov", "character": "\u00c9migr\u00e9 #1", "id": 94694, "credit_id": "52fe462d9251416c7506fb6d", "cast_id": 33, "profile_path": null, "order": 8}, {"name": "Gerrit Vooren", "character": "Bakker", "id": 163910, "credit_id": "52fe462d9251416c7506fb71", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Joshua Rubin", "character": "Joost", "id": 85510, "credit_id": "52fe462d9251416c7506fb75", "cast_id": 35, "profile_path": null, "order": 10}, {"name": "Victor Boichev", "character": "\u00c9migr\u00e9 #2", "id": 1129506, "credit_id": "52fe462d9251416c7506fb79", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Tom Hardy", "character": "Michaels", "id": 2524, "credit_id": "52fe462d9251416c7506fb7d", "cast_id": 37, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 12}, {"name": "Corey Johnson", "character": "Voutiritsas", "id": 17199, "credit_id": "52fe462d9251416c7506fb81", "cast_id": 38, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 13}, {"name": "Marianne Stanicheva", "character": "Madame Irina", "id": 61860, "credit_id": "52fe462d9251416c7506fb85", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Vladimir Kolev", "character": "Andrei", "id": 22016, "credit_id": "52fe462d9251416c7506fb89", "cast_id": 40, "profile_path": "/tVEzKxT0gyRyO565SXvkHP6YMMA.jpg", "order": 15}], "directors": [{"name": "Mimi Leder", "department": "Directing", "job": "Director", "credit_id": "52fe462c9251416c7506fad1", "profile_path": "/m7jCbodHv31618aBqMd3UNK92aR.jpg", "id": 51984}], "vote_average": 5.7, "runtime": 104}, "23172": {"poster_path": "/iObJG0OORpRR5xzycjBCNNzSK17.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45236543, "overview": "Former CIA spy Bob Ho takes on his toughest assignment to date: looking after his girlfriend's three kids, who haven't exactly warmed to their mom's beau. And when one of the youngsters accidentally downloads a top-secret formula, Bob's longtime nemesis, a Russian terrorist, pays a visit to the family.", "video": false, "id": 23172, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "The Spy Next Door", "tagline": "Spying is easy, Babysitting is hard", "vote_count": 115, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1273678", "adult": false, "backdrop_path": "/uJpcuIK7EP0RU8WaBzxIiTxYxFB.jpg", "production_companies": [{"name": "Spy Next Door", "id": 46062}, {"name": "Relativity Media", "id": 7295}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2010-01-15", "popularity": 0.444963283855205, "original_title": "The Spy Next Door", "budget": 28000000, "cast": [{"name": "Amber Valletta", "character": "Gillian", "id": 38425, "credit_id": "52fe4461c3a368484e01fbe7", "cast_id": 4, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 0}, {"name": "Lucas Till", "character": "Larry", "id": 429, "credit_id": "52fe4461c3a368484e01fbeb", "cast_id": 5, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 1}, {"name": "Jackie Chan", "character": "Bob Ho", "id": 18897, "credit_id": "52fe4461c3a368484e01fbef", "cast_id": 6, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 2}, {"name": "Billy Ray Cyrus", "character": "Colton James", "id": 78887, "credit_id": "52fe4461c3a368484e01fbf3", "cast_id": 7, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 3}, {"name": "George Lopez", "character": "Glaze", "id": 41798, "credit_id": "52fe4461c3a368484e01fbf7", "cast_id": 8, "profile_path": "/q8PBlu9uOR35HBg6DM7esQRdh8Q.jpg", "order": 4}, {"name": "Madeline Carroll", "character": "Farren", "id": 62564, "credit_id": "52fe4461c3a368484e01fbfb", "cast_id": 9, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 5}, {"name": "Will Shadley", "character": "Ian", "id": 1281596, "credit_id": "52fe4461c3a368484e01fbff", "cast_id": 10, "profile_path": "/lXftbxNXncsiYBBXXTVrVYmiASF.jpg", "order": 6}, {"name": "Alina Foley", "character": "Nora", "id": 1251285, "credit_id": "54d67a32c3a3683b8f002a97", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Magn\u00fas Scheving", "character": "Anton Poldark", "id": 224446, "credit_id": "54d67a4cc3a3683b8c002b32", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Billy Ray Cyrus", "character": "Colton James", "id": 78887, "credit_id": "54d67a649251416ba100279e", "cast_id": 13, "profile_path": "/5CGfOYR4lWWJU4ZjD11eeC2ikb2.jpg", "order": 9}, {"name": "Katherine Boecher", "character": "Creel", "id": 211488, "credit_id": "54d67a84c3a3683ba0002df1", "cast_id": 14, "profile_path": "/dRhesZZDvEoXLjbeeALlDdOBQW5.jpg", "order": 10}, {"name": "Mia Stallard", "character": "Cute Girl", "id": 129713, "credit_id": "54d67a949251416ba10027a1", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Maverick McWilliams", "character": "Chad", "id": 1424323, "credit_id": "54d67aa2c3a3683b890027f9", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Quinn Mason", "character": "Carl", "id": 1424324, "credit_id": "54d67ab19251415f9c0027e8", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Margaret Murphy", "character": "Mom", "id": 1396029, "credit_id": "54d67abfc3a3683b950028e9", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Esodie Geiger", "character": "Principal", "id": 1424325, "credit_id": "54d67ad3c3a3683b99002891", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Arron Shiver", "character": "Scientist", "id": 105786, "credit_id": "551c1be89251416a2300001d", "cast_id": 20, "profile_path": "/whHOz0t0JWvZd1LgeRm4oQe9KjO.jpg", "order": 16}], "directors": [{"name": "Brian Levant", "department": "Directing", "job": "Director", "credit_id": "52fe4461c3a368484e01fbd7", "profile_path": "/6fM0CJSEqwC50wivfx8Z7sPcikb.jpg", "id": 13581}], "vote_average": 5.6, "runtime": 94}, "129670": {"poster_path": "/w4kyrNpIhN3Ul4UDFGudpIRVyvt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An aging, booze-addled father makes the trip from Montana to Nebraska with his estranged son in order to claim a million dollar Publisher's Clearing House sweepstakes prize.", "video": false, "id": 129670, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Nebraska", "tagline": "", "vote_count": 211, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1821549", "adult": false, "backdrop_path": "/pjVhL1UZ33jBWPBd8HxOpfhAiA7.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Bona Fide Productions", "id": 2570}], "release_date": "2013-11-15", "popularity": 0.65098191045392, "original_title": "Nebraska", "budget": 13000000, "cast": [{"name": "Bruce Dern", "character": "Woody Grant", "id": 6905, "credit_id": "52fe4b43c3a368484e1800bf", "cast_id": 3, "profile_path": "/fYhCiXGBARWUevnWDkeCEpwi4h4.jpg", "order": 0}, {"name": "Will Forte", "character": "David Grant", "id": 62831, "credit_id": "52fe4b43c3a368484e1800bb", "cast_id": 2, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 1}, {"name": "Bob Odenkirk", "character": "Ross Grant", "id": 59410, "credit_id": "52fe4b43c3a368484e1800ed", "cast_id": 11, "profile_path": "/1NrWxUR86TnHzqxl4Cs9qTzJhtm.jpg", "order": 2}, {"name": "June Squibb", "character": "Kate Grant", "id": 35515, "credit_id": "52fe4b43c3a368484e1800f1", "cast_id": 12, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 3}, {"name": "Stacy Keach", "character": "Ed Pegram", "id": 825, "credit_id": "52fe4b43c3a368484e1800f5", "cast_id": 13, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 4}, {"name": "Missy Doty", "character": "Noel", "id": 162342, "credit_id": "52fe4b43c3a368484e1800f9", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Rance Howard", "character": "Uncle Ray", "id": 22250, "credit_id": "53832e280e0a2624cb00c1d3", "cast_id": 28, "profile_path": "/i7tkpb7GLJXjwUNyrpOy63FiStt.jpg", "order": 6}, {"name": "Kevin Kunkel", "character": "Cousin Randy", "id": 1202600, "credit_id": "52fe4b43c3a368484e180101", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Angela McEwan", "character": "Peg Nagy", "id": 1033573, "credit_id": "52fe4b43c3a368484e180105", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Devin Ratray", "character": "Cole", "id": 11516, "credit_id": "52fe4b43c3a368484e180109", "cast_id": 18, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 9}, {"name": "Mary Louise Wilson", "character": "Aunt Martha", "id": 115767, "credit_id": "52fe4b43c3a368484e180115", "cast_id": 21, "profile_path": "/tsvPhvPSlKrhcincuq8FMH2PAUq.jpg", "order": 10}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe4b43c3a368484e1800b7", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 7.4, "runtime": 115}, "187017": {"poster_path": "/gNlV5FhDZ1PjxSv2aqTPS30GEon.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 188441614, "overview": "After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.", "video": false, "id": 187017, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "22 Jump Street", "tagline": "They're not 21 anymore", "vote_count": 1013, "homepage": "http://www.22jumpstreetmovie.com", "belongs_to_collection": {"backdrop_path": "/iiAbTNYXpMadPDH4MkjUoJzcGn4.jpg", "poster_path": "/vufY0iuDNXGEdYOgZNcJFAEZeak.jpg", "id": 212562, "name": "Jump Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2294449", "adult": false, "backdrop_path": "/9NmTVqQ9f2ltecPZgXIj4Bk2c6s.jpg", "production_companies": [{"name": "LStar Capital", "id": 34034}, {"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "Media Rights Capital", "id": 2531}, {"name": "Original Film", "id": 333}, {"name": "Cannell Studios", "id": 9194}, {"name": "33andOut Productions", "id": 34035}, {"name": "JHF Productions", "id": 34036}], "release_date": "2014-06-13", "popularity": 4.18088360949376, "original_title": "22 Jump Street", "budget": 50000000, "cast": [{"name": "Jonah Hill", "character": "Schmidt", "id": 21007, "credit_id": "52fe4d0e9251416c7512e751", "cast_id": 6, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Jenko", "id": 38673, "credit_id": "52fe4d0e9251416c7512e755", "cast_id": 7, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Dave Franco", "character": "Eric Molson", "id": 54697, "credit_id": "531f60cf92514177ae009196", "cast_id": 9, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 2}, {"name": "Ice Cube", "character": "Captain Dickson", "id": 9778, "credit_id": "52fe4d0e9251416c7512e759", "cast_id": 8, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 3}, {"name": "Nick Offerman", "character": "Deputy Chief Hardy", "id": 17039, "credit_id": "533079429251413a85005ce8", "cast_id": 10, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Big Meat", "id": 53, "credit_id": "5330794b9251413a81005e09", "cast_id": 11, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Rob Riggle", "character": "Mr. Walters", "id": 71403, "credit_id": "533079599251413a75005cd8", "cast_id": 12, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 6}, {"name": "Wyatt Russell", "character": "Benji", "id": 986808, "credit_id": "5330796f9251413a78005bfa", "cast_id": 13, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 7}, {"name": "Richard Grieco", "character": "Dennis Booker", "id": 87295, "credit_id": "533079809251413a7e005b31", "cast_id": 14, "profile_path": "/lku5ybzKvQvon1GXhu0eXSx8Czc.jpg", "order": 8}, {"name": "Amber Stevens", "character": "Maya", "id": 1187106, "credit_id": "533079899251413a78005bfd", "cast_id": 15, "profile_path": "/cekEtPDD53639Y0231Al8ov0uGr.jpg", "order": 9}, {"name": "Jillian Bell", "character": "Brandi", "id": 1226302, "credit_id": "533079969251413a75005cdb", "cast_id": 16, "profile_path": "/kcMhnv8e1RVInN14D0UMGEaUT5a.jpg", "order": 10}, {"name": "Jimmy Tatro", "character": "Rooster", "id": 1304335, "credit_id": "533079a39251413a72005d28", "cast_id": 17, "profile_path": "/d4zjmOOGcGKiZ4jVTO9uVwh2cvD.jpg", "order": 11}, {"name": "Caroline Aaron", "character": "Annie Schmidt", "id": 1910, "credit_id": "53a2842f0e0a26227f000d2b", "cast_id": 18, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 12}, {"name": "Joe Chrest", "character": "David Schmidt", "id": 141762, "credit_id": "53a2843c0e0a26226e000cdb", "cast_id": 19, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 13}, {"name": "Marc Evan Jackson", "character": "Dr. Murphy", "id": 141956, "credit_id": "53a284840e0a262271000d52", "cast_id": 20, "profile_path": "/739YCwcRkcTnbyCHD0Qo526bTrG.jpg", "order": 14}, {"name": "Eddie J. Fernandez", "character": "Scarface", "id": 18300, "credit_id": "53a284910e0a262274000d51", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Dax Flame", "character": "Zack", "id": 996700, "credit_id": "53a2849e0e0a262271000d54", "cast_id": 22, "profile_path": "/rEuR09MllLRYpg7gZCgtipOwuAj.jpg", "order": 16}, {"name": "Johnny Pemberton", "character": "Delroy", "id": 1060081, "credit_id": "53a284c80e0a262271000d58", "cast_id": 23, "profile_path": "/lV9UognW1VG8P8nESSrArveBRou.jpg", "order": 17}, {"name": "Anna Faris", "character": "Anna (30 Jump Street: Flight Academy)", "id": 1772, "credit_id": "53a285acc3a368320a000cc3", "cast_id": 24, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 18}, {"name": "Bill Hader", "character": "Culinary School Villain", "id": 19278, "credit_id": "53a285bcc3a36831f6000cd8", "cast_id": 25, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 19}, {"name": "Patton Oswalt", "character": "MC State Professor", "id": 10872, "credit_id": "53a285cbc3a3683202000c8c", "cast_id": 26, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 20}, {"name": "Seth Rogen", "character": "Morton Schmidt", "id": 19274, "credit_id": "53a285d7c3a3683205000cd9", "cast_id": 27, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 21}, {"name": "Queen Latifah", "character": "Mrs. Dickinson", "id": 15758, "credit_id": "53a2861ac3a36831f6000cde", "cast_id": 28, "profile_path": "/ht52no1SMDhYBwRAmWL9a5YCss1.jpg", "order": 22}, {"name": "Dustin Nguyen", "character": "Vietnamese Jesus", "id": 61632, "credit_id": "53c529ec0e0a261e080019a9", "cast_id": 29, "profile_path": "/meiy61tBgaVQlivu42f7A0xsVG1.jpg", "order": 23}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe4d0e9251416c7512e73b", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe4d0e9251416c7512e741", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 7.3, "runtime": 112}, "6795": {"poster_path": "/amqgIuISRBt8tsZM6cTT6gO9WLR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 64321501, "overview": "After their father (Tim Robbins) is called into work, two young boys, Walter (Josh Hutcherson) and Danny (Jonah Bobo), are left in the care of their teenage sister, Lisa (Kristen Stewart), and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut (Dax Shepard), the boys attempt to return home.", "video": false, "id": 6795, "genres": [{"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Zathura: A Space Adventure", "tagline": "Adventure Is Waiting", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0406375", "adult": false, "backdrop_path": "/cfoMONErxEBSnWtRZUprBYZLkGk.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Radar Pictures", "id": 14718}, {"name": "Teitler Film", "id": 2550}, {"name": "Michael De Luca Productions", "id": 11370}], "release_date": "2005-11-06", "popularity": 1.37921017733419, "original_title": "Zathura: A Space Adventure", "budget": 65000000, "cast": [{"name": "Jonah Bobo", "character": "Danny", "id": 51297, "credit_id": "52fe4466c3a36847f80939e1", "cast_id": 5, "profile_path": "/ujDjz3FtyCA3h2vF0rouoqatGNR.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Walter", "id": 27972, "credit_id": "52fe4466c3a36847f80939e5", "cast_id": 6, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Dax Shepard", "character": "Astronaut", "id": 51298, "credit_id": "52fe4466c3a36847f80939e9", "cast_id": 7, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 2}, {"name": "Tim Robbins", "character": "Dad", "id": 504, "credit_id": "52fe4466c3a36847f80939ed", "cast_id": 9, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 4}, {"name": "Frank Oz", "character": "Robot ( voice )", "id": 7908, "credit_id": "52fe4466c3a36847f80939f1", "cast_id": 10, "profile_path": "/9KqCa2wS4EO2yymrVIgMiFHh6M4.jpg", "order": 5}, {"name": "Derek Mears", "character": "Lead Zorgon", "id": 51300, "credit_id": "52fe4466c3a36847f80939f5", "cast_id": 12, "profile_path": "/jsHyZmBZEmhrmK5XBDFJWsPsTwL.jpg", "order": 6}, {"name": "Douglas Tait", "character": "Zorgon", "id": 51301, "credit_id": "52fe4466c3a36847f80939f9", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Joe Bucaro III", "character": "Zorgon", "id": 51302, "credit_id": "52fe4466c3a36847f80939fd", "cast_id": 14, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 8}, {"name": "Jeff Wolfe", "character": "Zorgon", "id": 51303, "credit_id": "52fe4466c3a36847f8093a01", "cast_id": 15, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 9}, {"name": "Kristen Stewart", "character": "Lisa", "id": 37917, "credit_id": "52fe4466c3a36847f8093a2f", "cast_id": 23, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 10}, {"name": "John Alexander", "character": "Robot", "id": 443770, "credit_id": "52fe4466c3a36847f8093a33", "cast_id": 24, "profile_path": "/5tcxoXCC4hh12OowR1kITzkrCmC.jpg", "order": 11}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe4466c3a36847f80939cb", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 5.7, "runtime": 101}, "192538": {"poster_path": "/4UH8anWng3X9Vl5J8QNz3ZWfqm7.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Action epic sees a passionate young man transform into a brutal warrior as he travels the unforgiving landscape in search of his long lost brother Hakan The Ferrocious, whose people are relying on him to restore order to their kingdom.", "video": false, "id": 192538, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 36, "name": "History"}], "title": "Hammer of the Gods", "tagline": "Blood will Reign", "vote_count": 59, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2193418", "adult": false, "backdrop_path": "/8gWjHiLeIRWIHNLScAs8LKbEJ4F.jpg", "production_companies": [{"name": "Vertigo Films", "id": 10393}], "release_date": "2013-07-05", "popularity": 0.728585196482582, "original_title": "Hammer of the Gods", "budget": 0, "cast": [{"name": "Charlie Bewley", "character": "Steinar", "id": 84221, "credit_id": "52fe4cab9251416c910fc3a5", "cast_id": 3, "profile_path": "/3uiZaU1NwEPNmiAZT2vJM7EeXvb.jpg", "order": 0}, {"name": "Clive Standen", "character": "Hagen", "id": 85977, "credit_id": "52fe4cab9251416c910fc3a9", "cast_id": 4, "profile_path": "/euJCWcex56bTA9TZ9qrOtVVd1gV.jpg", "order": 1}, {"name": "James Cosmo", "character": "King Bagsecg", "id": 2467, "credit_id": "52fe4cab9251416c910fc3ad", "cast_id": 5, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 2}, {"name": "Elliot Cowan", "character": "Hakan", "id": 51120, "credit_id": "52fe4cab9251416c910fc3b1", "cast_id": 6, "profile_path": "/2qfMXSC5zjPEQ8iYluK7t7IpG1s.jpg", "order": 3}, {"name": "Ivan Kaye", "character": "Ivar", "id": 39683, "credit_id": "52fe4cab9251416c910fc3b5", "cast_id": 8, "profile_path": "/kYVCt7fF3U6VwCipPqlZvHnP2sX.jpg", "order": 4}, {"name": "Michael Jibson", "character": "Grim", "id": 56098, "credit_id": "52fe4cab9251416c910fc3b9", "cast_id": 9, "profile_path": "/wrqxxPSQuLOoih2QLCG35gS2Csk.jpg", "order": 5}, {"name": "Guy Flanagan", "character": "Jokul", "id": 1174091, "credit_id": "52fe4cab9251416c910fc3bd", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Theo Barklem-Biggs", "character": "Vali", "id": 1013048, "credit_id": "52fe4cab9251416c910fc3c1", "cast_id": 11, "profile_path": "/9KHUtdVl8GhEUDUQeYOUKGKluBY.jpg", "order": 7}, {"name": "Glynis Barber", "character": "Astrid", "id": 1222446, "credit_id": "52fe4cab9251416c910fc3ef", "cast_id": 19, "profile_path": "/wJFTzWcTcFw3xjWwKAbH0yaRUeB.jpg", "order": 8}, {"name": "Alexandra Dowling", "character": "Agnes", "id": 1403115, "credit_id": "54bdabc3c3a3686c6b00dd89", "cast_id": 20, "profile_path": "/vxPHlongjSyNC2EQZbqbPOWj3Sf.jpg", "order": 9}], "directors": [{"name": "Farren Blackburn", "department": "Directing", "job": "Director", "credit_id": "52fe4cab9251416c910fc39b", "profile_path": null, "id": 1174090}], "vote_average": 4.7, "runtime": 99}, "10693": {"poster_path": "/n69umC19fsIKXlQBm0eD6waSwpI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29445131, "overview": "Leaving the safety of their nursery behind, Wendy, Michael and John follow Peter Pan to a magical world where childhood lasts forever. But while in Neverland, the kids must face Captain Hook and foil his attempts to get rid of Peter for good.", "video": false, "id": 10693, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Peter Pan", "tagline": "It will live in your heart forever!", "vote_count": 324, "homepage": "", "belongs_to_collection": {"backdrop_path": "/AnhKboZjfeGuHI6qg7pp9RCesTF.jpg", "poster_path": "/t0mINaIut2aDKdGseQtC7UcbRNW.jpg", "id": 55422, "name": "Peter Pan Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0046183", "adult": false, "backdrop_path": "/nXII61245PlG2vOH8Yl15WIhJFP.jpg", "production_companies": [{"name": "Walt Disney Productions", "id": 3166}], "release_date": "1953-02-05", "popularity": 1.49395441186682, "original_title": "Peter Pan", "budget": 4000000, "cast": [{"name": "Bobby Driscoll", "character": "Peter Pan (voice)", "id": 50997, "credit_id": "52fe43a49251416c7501854f", "cast_id": 1, "profile_path": "/ib5Age9peuCwy6L5eZBN7W3egt3.jpg", "order": 0}, {"name": "Kathryn Beaumont", "character": "Wendy Darling (voice)", "id": 67228, "credit_id": "52fe43a49251416c75018553", "cast_id": 2, "profile_path": "/zpN8J3nmzDGoBNC7UeglDIDXtae.jpg", "order": 1}, {"name": "Hans Conried", "character": "Captain Hook / Mr. Darling (voice)", "id": 16421, "credit_id": "52fe43a49251416c75018557", "cast_id": 3, "profile_path": "/yR8MucKyASrgwEXLOm3vQOEVHqP.jpg", "order": 2}, {"name": "Bill Thompson", "character": "Mr. Smee (voice)", "id": 67230, "credit_id": "52fe43a49251416c7501855b", "cast_id": 4, "profile_path": "/ljYjNdijPQ97NELZ1wopGriWsUu.jpg", "order": 3}, {"name": "Heather Angel", "character": "Mrs. Darling (voice)", "id": 93897, "credit_id": "52fe43a49251416c7501857d", "cast_id": 10, "profile_path": "/eyi5es3S6iYNFlRdu1VbpruYgIw.jpg", "order": 4}, {"name": "Paul Collins", "character": "John Darling (voice)", "id": 143574, "credit_id": "52fe43a49251416c75018581", "cast_id": 11, "profile_path": "/lPyoH2djWZ01Sred0WPmF8BlYKJ.jpg", "order": 5}, {"name": "Tommy Luske", "character": "Michael Darling (voice)", "id": 1079611, "credit_id": "52fe43a49251416c75018585", "cast_id": 12, "profile_path": "/kB5NNFayWelNUO327kgOPoGUiVb.jpg", "order": 6}, {"name": "Candy Candido", "character": "Indian Chief (voice)", "id": 61676, "credit_id": "52fe43a49251416c75018589", "cast_id": 13, "profile_path": "/5tjykiBmPIrnpPfHALfOqgEY7Nh.jpg", "order": 7}, {"name": "Tom Conway", "character": "Narrator (voice)", "id": 48962, "credit_id": "52fe43a49251416c7501858d", "cast_id": 14, "profile_path": "/p2J2JRaKOrWuvIZ5UruXTxYLnXL.jpg", "order": 8}], "directors": [{"name": "Clyde Geronimi", "department": "Directing", "job": "Director", "credit_id": "52fe43a49251416c75018561", "profile_path": "/tirfI2HLxHZUpls0UpXuCoPrf63.jpg", "id": 64864}, {"name": "Wilfred Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe43a49251416c75018567", "profile_path": "/iQgvspjL7upXGHSG6EbOuzBMg3Y.jpg", "id": 11434}], "vote_average": 6.4, "runtime": 77}, "23202": {"poster_path": "/8q4JxH8JWjv9O150hP8NwuzSg2Y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Four interwoven stories that occur on Halloween: An everyday high school principal has a secret life as a serial killer; a college virgin might have just met the one guy for her; a group of teenagers pull a mean prank; a woman who loathes the night has to contend with her holiday-obsessed husband.", "video": false, "id": 23202, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Trick 'r Treat", "tagline": "Poison, Drowning, Claw, Or Knife. So Many Ways To Take A Life.", "vote_count": 72, "homepage": "http://trickrtreat-movie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0862856", "adult": false, "backdrop_path": "/oFxeGxRjlwzf0qct3g1HGBujGqH.jpg", "production_companies": [{"name": "Legendary Pictures", "id": 923}, {"name": "Bad Hat Harry Productions", "id": 9168}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Little Sam Films", "id": 23784}], "release_date": "2007-10-05", "popularity": 0.766068017186009, "original_title": "Trick 'r Treat", "budget": 12000000, "cast": [{"name": "Anna Paquin", "character": "Laurie", "id": 10690, "credit_id": "52fe4462c3a368484e01ffa1", "cast_id": 6, "profile_path": "/5Q4vZK2PqHkreQLmbPspIgrSLUP.jpg", "order": 0}, {"name": "Brian Cox", "character": "Mr. Kreeg", "id": 1248, "credit_id": "52fe4462c3a368484e01ff91", "cast_id": 2, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 1}, {"name": "Leslie Bibb", "character": "Emma", "id": 57451, "credit_id": "52fe4462c3a368484e01ff99", "cast_id": 4, "profile_path": "/oBoQFa4vvwXsW8PhaAsOmm75gkW.jpg", "order": 2}, {"name": "Rochelle Aytes", "character": "Maria", "id": 80760, "credit_id": "52fe4462c3a368484e01ff9d", "cast_id": 5, "profile_path": "/r5JMfr0A7V4VEKIXx5EPy7Y51Ed.jpg", "order": 3}, {"name": "Quinn Lord", "character": "Sam", "id": 89885, "credit_id": "52fe4462c3a368484e01ff8d", "cast_id": 1, "profile_path": "/lsvehrliOkHJYOMaDLXuPVDS4mH.jpg", "order": 4}, {"name": "Dylan Baker", "character": "Steven", "id": 19152, "credit_id": "52fe4462c3a368484e01ff95", "cast_id": 3, "profile_path": "/zVxYWjJOvLxiBbvpfFXWdiaml9z.jpg", "order": 5}, {"name": "Moneca Delain", "character": "Janet", "id": 74609, "credit_id": "52fe4462c3a368484e01ffa5", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Tahmoh Penikett", "character": "Henry", "id": 77223, "credit_id": "52fe4462c3a368484e01ffa9", "cast_id": 8, "profile_path": "/uHnfPSFXdJJTaE0rjwj3I2b91I8.jpg", "order": 7}, {"name": "Lauren Lee Smith", "character": "Danielle", "id": 52394, "credit_id": "52fe4462c3a368484e01ffcb", "cast_id": 15, "profile_path": "/bJ9ZEHet5jxAgHrDZJtVzzR4akF.jpg", "order": 8}, {"name": "Britt McKillip", "character": "Marcy", "id": 74365, "credit_id": "52fe4462c3a368484e01ffcf", "cast_id": 16, "profile_path": "/wGJL4rVEQUNtEF7WTvFBzcxjeQn.jpg", "order": 9}, {"name": "Brett Kelly", "character": "Charlie", "id": 63992, "credit_id": "52fe4462c3a368484e020015", "cast_id": 28, "profile_path": "/lrNCvvtopyLTtwQQUxjfu8JfIpj.jpg", "order": 10}, {"name": "Jean-Luc Bilodeau", "character": "Schrader", "id": 205204, "credit_id": "52fe4462c3a368484e020019", "cast_id": 29, "profile_path": "/6bRMvFaB8Dk62X6Hl1gj0sB3WGX.jpg", "order": 11}, {"name": "Christine Willes", "character": "Mrs. Henderson", "id": 189719, "credit_id": "52fe4462c3a368484e02001d", "cast_id": 30, "profile_path": "/tKdxF8wiCo2DlijEfTE5divpsuC.jpg", "order": 12}], "directors": [{"name": "Michael Dougherty", "department": "Directing", "job": "Director", "credit_id": "52fe4462c3a368484e01ffaf", "profile_path": null, "id": 11012}], "vote_average": 6.6, "runtime": 82}, "72358": {"poster_path": "/4T0nPirZLeLEaXOgLT7SGgopCui.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18450127, "overview": "Jack McCall is a fast-talking literary agent, who can close any deal, any time, any way. He has set his sights on New Age guru Dr. Sinja (Cliff Curtis) for his own selfish purposes. But Dr. Sinja is on to him, and Jack\u2019s life comes unglued after a magical Bodhi tree mysteriously appears in his backyard. With every word Jack speaks, a leaf falls from the tree and he realizes that when the last leaf falls, both he and the tree are toast. Words have never failed Jack McCall, but now he\u2019s got to stop talking and conjure up some outrageous ways to communicate or he\u2019s a goner.", "video": false, "id": 72358, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "A Thousand Words", "tagline": "He only has 1000 words left to discover what matters the most.", "vote_count": 112, "homepage": "http://www.thousandwordsmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0763831", "adult": false, "backdrop_path": "/iskupQlVbYmWrxNH6ifatWf2X5n.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Saturn Films", "id": 831}, {"name": "Varsity Pictures", "id": 6024}], "release_date": "2012-03-08", "popularity": 0.802404430627337, "original_title": "A Thousand Words", "budget": 40000000, "cast": [{"name": "Eddie Murphy", "character": "Jack McCall", "id": 776, "credit_id": "52fe4866c3a368484e0f6b7f", "cast_id": 3, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Allison Janney", "character": "Samantha Davis", "id": 19, "credit_id": "52fe4866c3a368484e0f6b83", "cast_id": 4, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 1}, {"name": "Cliff Curtis", "character": "Dr. Sinja", "id": 7248, "credit_id": "52fe4866c3a368484e0f6b87", "cast_id": 5, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 2}, {"name": "Clark Duke", "character": "Aaron Wiseberger", "id": 54729, "credit_id": "52fe4866c3a368484e0f6b8b", "cast_id": 6, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 3}, {"name": "Kerry Washington", "character": "Caroline McCall", "id": 11703, "credit_id": "52fe4866c3a368484e0f6b8f", "cast_id": 7, "profile_path": "/laTgHUUK2mBBAJDqwjWPlAqA1a0.jpg", "order": 4}, {"name": "Emanuel Ragsdale", "character": "Tyler McCall", "id": 1014850, "credit_id": "52fe4866c3a368484e0f6b93", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Jill Basey", "character": "Woman in Starbucks", "id": 177838, "credit_id": "52fe4866c3a368484e0f6b97", "cast_id": 9, "profile_path": "/wnPPZL3pBdxfzb1E0P3t77g4z79.jpg", "order": 6}, {"name": "Greg Collins", "character": "Construction Worker", "id": 58950, "credit_id": "52fe4866c3a368484e0f6b9b", "cast_id": 10, "profile_path": "/lrY41HBJIjWWBdxRZlfLM0av3JE.jpg", "order": 7}, {"name": "Robert LeQuang", "character": "Starbucks Customer", "id": 1014851, "credit_id": "52fe4866c3a368484e0f6b9f", "cast_id": 11, "profile_path": "/lQAI6hL2xq5Q8vLoygud6H4GKoK.jpg", "order": 8}, {"name": "Michael G. Wilkinson", "character": "Starbucks Customer", "id": 1014852, "credit_id": "52fe4866c3a368484e0f6ba3", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Lyndsey Nelson", "character": "Starbucks Customer", "id": 1014853, "credit_id": "52fe4866c3a368484e0f6ba7", "cast_id": 13, "profile_path": "/yrkkcPUQ6NgU4lerZSThGDgPsfC.jpg", "order": 10}, {"name": "Michael Cody Gilbert", "character": "Starbucks Customer", "id": 1014854, "credit_id": "52fe4866c3a368484e0f6bab", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Lou Saliba", "character": "Shrink", "id": 199625, "credit_id": "52fe4866c3a368484e0f6baf", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Edi Patterson", "character": "Young Female Agent", "id": 205213, "credit_id": "52fe4866c3a368484e0f6bb3", "cast_id": 16, "profile_path": null, "order": 13}], "directors": [{"name": "Brian Robbins", "department": "Directing", "job": "Director", "credit_id": "52fe4866c3a368484e0f6bb9", "profile_path": "/l7UfY9nBeus8bHHXvf3mUmtagQJ.jpg", "id": 53177}], "vote_average": 5.7, "runtime": 91}, "96936": {"poster_path": "/9Z2KAOP1X3ACE22moHu9QdYUK7U.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19145732, "overview": "Inspired by actual events, a group of fame-obsessed teenagers use the Internet to track celebrities' whereabouts in order to rob their homes.", "video": false, "id": 96936, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Bling Ring", "tagline": "Living the Dream, One Heist at a Time", "vote_count": 305, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2132285", "adult": false, "backdrop_path": "/nq4fAIN7oIn3NUP4mqZZACmhMAo.jpg", "production_companies": [{"name": "Path\u00e9 Distribution", "id": 3012}], "release_date": "2013-06-21", "popularity": 1.33990188419804, "original_title": "The Bling Ring", "budget": 15000000, "cast": [{"name": "Emma Watson", "character": "Nicki", "id": 10990, "credit_id": "52fe49c79251416c750d2ef7", "cast_id": 3, "profile_path": "/q1U3QmdWEBhW80swZxy3zSYdjjA.jpg", "order": 0}, {"name": "Israel Broussard", "character": "Marc", "id": 969140, "credit_id": "52fe49c79251416c750d2f2b", "cast_id": 16, "profile_path": "/ztE0nfwxNRYSh4EpDyhs9OrYFAT.jpg", "order": 1}, {"name": "Taissa Farmiga", "character": "Sam", "id": 527313, "credit_id": "52fe49c79251416c750d2eff", "cast_id": 5, "profile_path": "/oXQIaGXFWKUJESZqN0VgKWGFtV0.jpg", "order": 2}, {"name": "Katie Chang", "character": "Rebecca", "id": 1053170, "credit_id": "52fe49c79251416c750d2f2f", "cast_id": 17, "profile_path": "/kHrMqBM7tYkDdEQ1eTkGqa7QM4j.jpg", "order": 3}, {"name": "Claire Julien", "character": "Chloe", "id": 1172491, "credit_id": "52fe49c79251416c750d2f33", "cast_id": 18, "profile_path": "/dAuU0EZzVNJF72r15xlYAlkLkcM.jpg", "order": 4}, {"name": "Georgia Rock", "character": "Emily", "id": 1172494, "credit_id": "52fe49c79251416c750d2f37", "cast_id": 19, "profile_path": "/us2UgCk36UyZaZTOJTz6M1th2gP.jpg", "order": 5}, {"name": "Leslie Mann", "character": "Nicki's Mom", "id": 41087, "credit_id": "52fe49c79251416c750d2efb", "cast_id": 4, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 6}, {"name": "Carlos Miranda", "character": "Rob", "id": 39007, "credit_id": "52fe49c79251416c750d2f3b", "cast_id": 20, "profile_path": "/4AaU3V2VYU9SLZpt11Mv7BONbgG.jpg", "order": 7}, {"name": "Gavin Rossdale", "character": "Ricky", "id": 10961, "credit_id": "52fe49c79251416c750d2f23", "cast_id": 13, "profile_path": "/1tgaFlNL7dO9kzJADYtwQJqTeeF.jpg", "order": 8}, {"name": "Stacy Edwards", "character": "Debbie", "id": 43372, "credit_id": "52fe49c79251416c750d2f27", "cast_id": 14, "profile_path": "/3FBtBFrmjUx0W0bbKYqW2gpgIkI.jpg", "order": 9}, {"name": "Erin Daniels", "character": "Shannon", "id": 18662, "credit_id": "52fe49c79251416c750d2f1b", "cast_id": 11, "profile_path": "/pRKxu8MQaI6ybhdfYt5Zp8Zphen.jpg", "order": 10}, {"name": "Nina Siemaszko", "character": "Vegas Detective", "id": 42133, "credit_id": "52fe49c79251416c750d2f1f", "cast_id": 12, "profile_path": "/htNzOMMh4Hys3EhTDWdJOlbtKpL.jpg", "order": 11}, {"name": "Brenda Koo", "character": "Sarah", "id": 568714, "credit_id": "52fe49c79251416c750d2f3f", "cast_id": 21, "profile_path": "/uEU0wAFtFLfh3mGvrgPic2ILFYI.jpg", "order": 12}, {"name": "Joe Nieves", "character": "Police Officer", "id": 1222174, "credit_id": "52fe49c79251416c750d2f55", "cast_id": 25, "profile_path": "/zwuhBtnZNudwm9VMBa7576qf3Fk.jpg", "order": 13}], "directors": [{"name": "Sofia Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe49c79251416c750d2ef3", "profile_path": "/zG1WS4sS5jvYkObHMxsK6fGK7Uk.jpg", "id": 1769}], "vote_average": 5.3, "runtime": 90}, "88751": {"poster_path": "/nlYk34gpPfM6KFujxB9HTHZyeiL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101702060, "overview": "On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth.", "video": false, "id": 88751, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Journey to the Center of the Earth", "tagline": "Same Planet. Different World.", "vote_count": 319, "homepage": "", "belongs_to_collection": {"backdrop_path": "/76AoK99XDWgIRrhtyrB0kOWYyfe.jpg", "poster_path": "/f3InNhgFNIvW3pwmjzB7lVtr028.jpg", "id": 72547, "name": "Journey Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "is", "name": "\u00cdslenska"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0373051", "adult": false, "backdrop_path": "/tBMh4ig85nU6EC57pXhWfosSGlW.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Walden Media", "id": 10221}], "release_date": "2008-07-11", "popularity": 1.2508578858903, "original_title": "Journey to the Center of the Earth", "budget": 45000000, "cast": [{"name": "Brendan Fraser", "character": "Trevor Anderson", "id": 18269, "credit_id": "52fe4a019251416c910c0167", "cast_id": 1, "profile_path": "/uNUsbLspmJxSKbix7ot2mBNFP6K.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Sean Anderson", "id": 27972, "credit_id": "52fe4a019251416c910c016b", "cast_id": 2, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 1}, {"name": "Anita Briem", "character": "Hannah \u00c1sgeirsson", "id": 70785, "credit_id": "52fe4a019251416c910c016f", "cast_id": 3, "profile_path": "/voeG3UzEEe9VaEZdAR5LreNpuht.jpg", "order": 2}, {"name": "Seth Meyers", "character": "Professor Alan Kitzens", "id": 62856, "credit_id": "52fe4a019251416c910c0173", "cast_id": 4, "profile_path": "/pAw8sFWinnfxKe906nSYDw6UsUr.jpg", "order": 3}, {"name": "Jean Michel Par\u00e9", "character": "Max Anderson", "id": 70786, "credit_id": "52fe4a019251416c910c01b3", "cast_id": 15, "profile_path": null, "order": 4}, {"name": "Jane Wheeler", "character": "Elizabeth", "id": 110887, "credit_id": "52fe4a019251416c910c01b7", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Frank Fontaine", "character": "Old Man", "id": 60910, "credit_id": "52fe4a019251416c910c01bb", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Giancarlo Caltabiano", "character": "Leonard", "id": 110888, "credit_id": "52fe4a019251416c910c01bf", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Kaniehtiio Horn", "character": "Gum-Chewing Girl", "id": 70787, "credit_id": "52fe4a019251416c910c01c3", "cast_id": 19, "profile_path": "/osp3WEMHeI2aBl3WoB1zllJyDTZ.jpg", "order": 8}, {"name": "Garth Gilker", "character": "Sigurbj\u00f6rn \u00c1sgeirsson", "id": 110889, "credit_id": "52fe4a019251416c910c01c7", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Eric Brevig", "department": "Directing", "job": "Director", "credit_id": "52fe4a019251416c910c0179", "profile_path": "/QqS6wJAVIxQCC7khem22Hq0a4b.jpg", "id": 9622}], "vote_average": 5.4, "runtime": 93}, "117251": {"poster_path": "/niYdnzkrtBduR5lKtfeLXKXNaTT.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205366737, "overview": "Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.", "video": false, "id": 117251, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "White House Down", "tagline": "It Will Start Like Any Other Day.", "vote_count": 779, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2334879", "adult": false, "backdrop_path": "/dyVFl6I0IQEKE3YAbLKwYLGymyp.jpg", "production_companies": [{"name": "Iron Horse Entertainment (II)", "id": 34981}, {"name": "Columbia Pictures", "id": 5}, {"name": "Mythology Entertainment (II)", "id": 34982}, {"name": "Centropolis Entertainment", "id": 347}], "release_date": "2013-06-28", "popularity": 1.52082956636676, "original_title": "White House Down", "budget": 150000000, "cast": [{"name": "Channing Tatum", "character": "Cale", "id": 38673, "credit_id": "52fe4baec3a36847f820f3d9", "cast_id": 9, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Jamie Foxx", "character": "President James Sawyer", "id": 134, "credit_id": "52fe4baec3a36847f820f3e7", "cast_id": 13, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 1}, {"name": "Joey King", "character": "Emily", "id": 125025, "credit_id": "52fe4baec3a36847f820f3f1", "cast_id": 15, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 2}, {"name": "Maggie Gyllenhaal", "character": "Finnerty", "id": 1579, "credit_id": "52fe4baec3a36847f820f3dd", "cast_id": 10, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Raphelson", "id": 28633, "credit_id": "52fe4baec3a36847f820f3f5", "cast_id": 16, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "James Woods", "character": "Walker", "id": 4512, "credit_id": "52fe4baec3a36847f820f3f9", "cast_id": 17, "profile_path": "/fl5Jx1WFvBcg1b9VZRfXTH6LPUE.jpg", "order": 5}, {"name": "Nicolas Wright", "character": "Donnie the Guide", "id": 73609, "credit_id": "52fe4baec3a36847f820f3fd", "cast_id": 18, "profile_path": "/kOaA9J1XVB2r1jJVPdLi9jLbSpQ.jpg", "order": 6}, {"name": "Jimmi Simpson", "character": "Tyler", "id": 22125, "credit_id": "52fe4baec3a36847f820f401", "cast_id": 19, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 7}, {"name": "Michael Murphy", "character": "Vice President Hammond", "id": 4776, "credit_id": "52fe4baec3a36847f820f405", "cast_id": 20, "profile_path": "/ebbKhFgIHugUywSL5udMFNfRxvQ.jpg", "order": 8}, {"name": "Rachelle Lefevre", "character": "Melanie", "id": 58168, "credit_id": "52fe4baec3a36847f820f409", "cast_id": 21, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 9}, {"name": "Lance Reddick", "character": "General Caulfield", "id": 129101, "credit_id": "52fe4baec3a36847f820f40d", "cast_id": 22, "profile_path": "/5t4j7zvsjG5UyVxBJzly5OUMR3x.jpg", "order": 10}, {"name": "Matt Craven", "character": "Agent Kellerman", "id": 13525, "credit_id": "52fe4baec3a36847f820f411", "cast_id": 23, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 11}, {"name": "Jake Weber", "character": "Agent Hope", "id": 4177, "credit_id": "52fe4baec3a36847f820f415", "cast_id": 24, "profile_path": "/rS1ymvAvmQMghNeVm0oiSx9aKxe.jpg", "order": 12}, {"name": "Peter Jacobson", "character": "Wallace", "id": 31514, "credit_id": "52fe4baec3a36847f820f419", "cast_id": 25, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 13}, {"name": "Jason Clarke", "character": "Stenz", "id": 76512, "credit_id": "52fe4baec3a36847f820f41d", "cast_id": 26, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 14}, {"name": "Kevin Rankin", "character": "Killick", "id": 114000, "credit_id": "52fe4baec3a36847f820f45d", "cast_id": 37, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 15}, {"name": "Garcelle Beauvais", "character": "Alison Sawyer", "id": 31647, "credit_id": "52fe4baec3a36847f820f461", "cast_id": 38, "profile_path": "/fuZx5JL2VeMM1nwrZw2pkAMxuVt.jpg", "order": 16}, {"name": "Falk Hentschel", "character": "Motts", "id": 118643, "credit_id": "52fe4baec3a36847f820f465", "cast_id": 39, "profile_path": "/6NFuHgdtpJ6dY8wqZ8CV95N82Z7.jpg", "order": 17}, {"name": "Romano Orzari", "character": "Mulcahy", "id": 96591, "credit_id": "52fe4baec3a36847f820f469", "cast_id": 40, "profile_path": "/eKvEVVIpk33ftiNkXGZ8fBWVEs.jpg", "order": 18}, {"name": "Jackie Geary", "character": "Jenna", "id": 166688, "credit_id": "52fe4baec3a36847f820f46d", "cast_id": 41, "profile_path": "/saIV0KEUYjfDSKsCyODWxCGqbUr.jpg", "order": 19}, {"name": "Andrew Simms", "character": "Roger Skinner", "id": 190098, "credit_id": "52fe4baec3a36847f820f471", "cast_id": 42, "profile_path": "/cowTaScHEybfhneLfcJ0Ax7ux8A.jpg", "order": 20}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4baec3a36847f820f3b1", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.5, "runtime": 131}, "6844": {"poster_path": "/iEwS3ZaavaTEWmMqCapaw1T0f0X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65000000, "overview": "Escaping death, a Hebrew infant is raised in a royal household to become a prince. Upon discovery of his true heritage, Moses embarks on a personal quest to reclaim his destiny as the leader and liberator of the Hebrew people.", "video": false, "id": 6844, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Ten Commandments", "tagline": "The Greatest Event in Motion Picture History", "vote_count": 131, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0049833", "adult": false, "backdrop_path": "/sO6AnUEirDnaxjy8dxaqYEKDxGi.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Motion Picture Associates", "id": 12275}], "release_date": "1956-10-05", "popularity": 0.287175212747561, "original_title": "The Ten Commandments", "budget": 13000000, "cast": [{"name": "Charlton Heston", "character": "Moses", "id": 10017, "credit_id": "52fe4466c3a36847f8093ad9", "cast_id": 9, "profile_path": "/6EssaZBaM5bFkJ21OQ2KGcGqAVU.jpg", "order": 0}, {"name": "Anne Baxter", "character": "Nofretete", "id": 10606, "credit_id": "52fe4466c3a36847f8093add", "cast_id": 10, "profile_path": "/jOnJoazpO6q2vAVL37IQfzQbjav.jpg", "order": 1}, {"name": "Yul Brynner", "character": "Ramses", "id": 14528, "credit_id": "52fe4466c3a36847f8093ae1", "cast_id": 11, "profile_path": "/6UerE2q3iPcr4Y1ZsZJEf1Aom2g.jpg", "order": 2}, {"name": "Edward G. Robinson", "character": "Dathan", "id": 13566, "credit_id": "52fe4466c3a36847f8093ae5", "cast_id": 12, "profile_path": "/af1aBRi4UccaxtmDPWEtlfy1vXE.jpg", "order": 3}, {"name": "Yvonne De Carlo", "character": "Sephora", "id": 41240, "credit_id": "52fe4466c3a36847f8093ae9", "cast_id": 13, "profile_path": "/gVhYTejACw6CbdLJpo2suRPUXx9.jpg", "order": 4}, {"name": "Debra Paget", "character": "Lilia", "id": 48958, "credit_id": "52fe4466c3a36847f8093aed", "cast_id": 14, "profile_path": "/hu9oG6bt7WohvU4G0ydKZ1aeDuf.jpg", "order": 5}, {"name": "Nina Foch", "character": "Bithiah", "id": 13026, "credit_id": "52fe4466c3a36847f8093af1", "cast_id": 15, "profile_path": "/jd5qWtnZdEvfwuo57CpJVzazYc0.jpg", "order": 6}, {"name": "Martha Scott", "character": "Yochabel", "id": 10022, "credit_id": "52fe4466c3a36847f8093af5", "cast_id": 16, "profile_path": "/ncuwnj0bgG62KlT8RSAhEdssamg.jpg", "order": 7}, {"name": "Judith Anderson", "character": "Memnet", "id": 3362, "credit_id": "52fe4466c3a36847f8093af9", "cast_id": 17, "profile_path": "/ryTVWN7XI2WejLsFhicfx3yJ6y9.jpg", "order": 8}, {"name": "Vincent Price", "character": "Baka", "id": 1905, "credit_id": "52fe4466c3a36847f8093afd", "cast_id": 18, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 9}, {"name": "John Carradine", "character": "Aaron", "id": 8516, "credit_id": "52fe4466c3a36847f8093b01", "cast_id": 19, "profile_path": "/iWHObxmwHuUS7g4uJFT2SS2hHXu.jpg", "order": 10}, {"name": "Douglass Dumbrille", "character": "Jannes", "id": 34748, "credit_id": "52fe4466c3a36847f8093b05", "cast_id": 20, "profile_path": "/ggD9NRWlRDofqVhVR6XaTHvLhp4.jpg", "order": 11}, {"name": "Frank Dekova", "character": "Abiram", "id": 50574, "credit_id": "52fe4466c3a36847f8093b09", "cast_id": 21, "profile_path": "/73gXe4nNFYXVnS3wB1DIJkaoO82.jpg", "order": 12}, {"name": "Henry Wilcoxon", "character": "Pentaur", "id": 51310, "credit_id": "52fe4466c3a36847f8093b0d", "cast_id": 22, "profile_path": "/6s1QdX3AcRKZ5fBKD1jKVI1nnCV.jpg", "order": 13}, {"name": "Cedric Hardwicke", "character": "Sethi", "id": 99461, "credit_id": "52fe4466c3a36847f8093b2f", "cast_id": 28, "profile_path": "/xldbAfjrbY6ny9r13SUDGtSwoSb.jpg", "order": 14}, {"name": "John Derek", "character": "Joshua", "id": 39608, "credit_id": "52fe4466c3a36847f8093b33", "cast_id": 29, "profile_path": "/5MEgaXvF8NgKUffKGA8otititib.jpg", "order": 15}, {"name": "Vincent Price", "character": "Baka", "id": 1905, "credit_id": "52fe4466c3a36847f8093b37", "cast_id": 30, "profile_path": "/w9wcf7hWLD2I2K0PojJaqd9vbHL.jpg", "order": 16}, {"name": "John Carradine", "character": "Aaron", "id": 8516, "credit_id": "52fe4466c3a36847f8093b3b", "cast_id": 31, "profile_path": "/iWHObxmwHuUS7g4uJFT2SS2hHXu.jpg", "order": 17}, {"name": "Olive Deering", "character": "Miriam", "id": 100788, "credit_id": "52fe4466c3a36847f8093b3f", "cast_id": 32, "profile_path": "/yMowZ3ZiH0M7zV6SIhP9YABG1vu.jpg", "order": 18}, {"name": "Douglass Dumbrille", "character": "Jannes", "id": 34748, "credit_id": "52fe4466c3a36847f8093b43", "cast_id": 33, "profile_path": "/ggD9NRWlRDofqVhVR6XaTHvLhp4.jpg", "order": 19}, {"name": "Eduard Franz", "character": "Jethro", "id": 94070, "credit_id": "52fe4466c3a36847f8093b4b", "cast_id": 35, "profile_path": "/v6qqXmGXvHUbWnaG0L0z2JQ63zA.jpg", "order": 21}, {"name": "Donald Curtis", "character": "Mered", "id": 35847, "credit_id": "52fe4466c3a36847f8093b4f", "cast_id": 36, "profile_path": "/tW9pHQ3GlfLgbDup4Q70p0QPfoK.jpg", "order": 22}, {"name": "Lawrence Dobkin", "character": "Hur Ben Caleb", "id": 15625, "credit_id": "52fe4466c3a36847f8093b53", "cast_id": 37, "profile_path": "/mI7q9C7Z0tagylB9ew4C6mmKwFp.jpg", "order": 23}, {"name": "Woody Strode", "character": "King of Ethiopia", "id": 4963, "credit_id": "52fe4466c3a36847f8093b57", "cast_id": 38, "profile_path": "/hL6mQBnCxBxhUeG5rjx9SfO7AXM.jpg", "order": 24}, {"name": "Joan Woodbury", "character": "Korah's Wife", "id": 89746, "credit_id": "52fe4466c3a36847f8093b5b", "cast_id": 39, "profile_path": "/iN5cJbzUThqlwbmVsoEkNiZ1Pi4.jpg", "order": 25}, {"name": "Henry Brandon", "character": "Commander of the Hosts", "id": 30553, "credit_id": "52fe4466c3a36847f8093b5f", "cast_id": 40, "profile_path": "/xjkd8VhfGkYidjMiqJ4tjihLHsH.jpg", "order": 26}, {"name": "Clint Walker", "character": "Sardinian Captain", "id": 40207, "credit_id": "52fe4466c3a36847f8093b63", "cast_id": 41, "profile_path": "/z9EwnoNgmO9hwTHWtkuX3aBkwgv.jpg", "order": 27}, {"name": "Luis Alberni", "character": "Old Hebrew", "id": 30264, "credit_id": "52fe4466c3a36847f8093b67", "cast_id": 42, "profile_path": "/reMnlbERut9m3VWis9if3i9lCJw.jpg", "order": 28}, {"name": "Michael Ansara", "character": "Taskmaster", "id": 16074, "credit_id": "52fe4466c3a36847f8093b6b", "cast_id": 43, "profile_path": "/hljiouuRhicMyfxIm2SMBmjOlMr.jpg", "order": 29}, {"name": "Terence De Marney", "character": "Hebrew at Rameses' Gate", "id": 100790, "credit_id": "52fe4466c3a36847f8093b6f", "cast_id": 44, "profile_path": null, "order": 30}, {"name": "Richard Farnsworth", "character": "Chariot Driver", "id": 5605, "credit_id": "52fe4466c3a36847f8093b73", "cast_id": 45, "profile_path": "/7obpMM5f6zdDVHGe3SkvXMWOL0q.jpg", "order": 31}, {"name": "Gavin Gordon", "character": "Trojan Ambassador", "id": 2927, "credit_id": "52fe4466c3a36847f8093b77", "cast_id": 46, "profile_path": "/kmCRZ3fBfnoNZQqW92T0bI8QZMe.jpg", "order": 32}, {"name": "Patricia Hitchcock", "character": "Court Lady", "id": 12500, "credit_id": "52fe4466c3a36847f8093b7b", "cast_id": 47, "profile_path": "/aB59dttMS0KHSv2frlqcx43HCeC.jpg", "order": 33}, {"name": "Michael Mark", "character": "Hebrew at Dathan's Tent / Old Man", "id": 30163, "credit_id": "52fe4466c3a36847f8093b7f", "cast_id": 48, "profile_path": null, "order": 34}, {"name": "Gordon Mitchell", "character": "Egyptian Guard", "id": 30898, "credit_id": "52fe4466c3a36847f8093b83", "cast_id": 49, "profile_path": "/szzvsqfFlkHBUJEiZtRquIhxHqn.jpg", "order": 35}, {"name": "George Robotham", "character": "Attendant", "id": 34131, "credit_id": "52fe4466c3a36847f8093b87", "cast_id": 50, "profile_path": null, "order": 36}, {"name": "Robert Vaughn", "character": "Spearman / Hebrew at Golden Calf", "id": 14060, "credit_id": "52fe4466c3a36847f8093b8b", "cast_id": 52, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 37}, {"name": "Carl Switzer", "character": "Slave", "id": 941239, "credit_id": "532a56dd925141083f000a0e", "cast_id": 62, "profile_path": "/2HUMr4YzycNA40D2Xt8gpfG5KSn.jpg", "order": 38}, {"name": "Mike Connors", "character": "Amalekite Herder (as Touch Connors)", "id": 29718, "credit_id": "52fe4466c3a36847f8093b99", "cast_id": 55, "profile_path": "/4Jg5SxHYjIpC5bngQRFv7O5v2ys.jpg", "order": 39}, {"name": "Henry Corden", "character": "Sheik of Sinai", "id": 106102, "credit_id": "52fe4466c3a36847f8093b9d", "cast_id": 56, "profile_path": "/65f9Etk8mM8oQxN20eQPM8p5Wo1.jpg", "order": 40}, {"name": "Mimi Gibson", "character": "Little Egyptian Girl", "id": 16762, "credit_id": "52fe4466c3a36847f8093ba1", "cast_id": 57, "profile_path": null, "order": 41}, {"name": "Babette Bain", "character": "Little Miriam", "id": 1458725, "credit_id": "553ab96792514138a900510c", "cast_id": 63, "profile_path": null, "order": 42}], "directors": [{"name": "Cecil B. DeMille", "department": "Directing", "job": "Director", "credit_id": "52fe4466c3a36847f8093ab1", "profile_path": "/oZnXG7WjQ9FXaQkzOtAmzYGDoH5.jpg", "id": 8636}], "vote_average": 7.1, "runtime": 220}, "170687": {"poster_path": "/54F92cg4moKVShH5VKgqfDXHIl5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108255770, "overview": "The Boxtrolls is a comedic fable that unfolds in Cheesebridge, a posh Victorian-era town obsessed with wealth, class and the stinkiest of fine cheeses. Beneath its charming cobblestone streets dwell the Boxtrolls, foul monsters who crawl out of the sewers at night and steal what the townspeople hold most dear: their children and their cheeses. At least that\u2019s the legend residents have always believed. In truth, the Boxtrolls are an underground cavern-dwelling community of quirky and lovable oddballs who wear recycled cardboard boxes the way turtles wear their shells. The Boxtrolls have raised an orphaned human boy since infancy as one of their dumpster-diving and mechanical junk-collecting own. When the Boxtrolls are targeted by a villainous pest exterminator who is bent on eradicating them as his ticket to Cheesebridge society, the kind-hearted band of tinkerers must turn to their adopted charge and an adventurous rich girl to bridge two worlds amidst the winds of change \u2013 and cheese.", "video": false, "id": 170687, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Boxtrolls", "tagline": "Dare to be square.", "vote_count": 169, "homepage": "http://www.theboxtrolls.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0787474", "adult": false, "backdrop_path": "/yFtr1BD7AHeruIm9jsVnoebEN2v.jpg", "production_companies": [{"name": "Laika Entertainment", "id": 11537}, {"name": "Focus Features", "id": 10146}], "release_date": "2014-09-26", "popularity": 2.1018602261331, "original_title": "The Boxtrolls", "budget": 60000000, "cast": [{"name": "Isaac Hempstead Wright", "character": "Eggs", "id": 239020, "credit_id": "52fe4cfbc3a36847f82485b1", "cast_id": 8, "profile_path": "/qF1Ca4aNDkpSGQt9Q7qfpRbwNOk.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Archibald Snatcher", "id": 2282, "credit_id": "52fe4cfbc3a36847f824859d", "cast_id": 3, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Elle Fanning", "character": "Winnie Portley-Rind", "id": 18050, "credit_id": "52fe4cfbc3a36847f8248599", "cast_id": 2, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 2}, {"name": "Simon Pegg", "character": "Herbert Trubshaw", "id": 11108, "credit_id": "52fe4cfbc3a36847f8248595", "cast_id": 1, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 3}, {"name": "Toni Collette", "character": "Lady Portley-Rind", "id": 3051, "credit_id": "52fe4cfbc3a36847f82485a1", "cast_id": 4, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 4}, {"name": "Jared Harris", "character": "Lord Portley-Rind", "id": 15440, "credit_id": "52fe4cfbc3a36847f82485a5", "cast_id": 5, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 5}, {"name": "Nick Frost", "character": "Mr. Trout", "id": 11109, "credit_id": "52fe4cfbc3a36847f82485a9", "cast_id": 6, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 6}, {"name": "Tracy Morgan", "character": "Mr. Gristle", "id": 56903, "credit_id": "52fe4cfbc3a36847f82485b5", "cast_id": 9, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 7}, {"name": "Richard Ayoade", "character": "Mr. Pickles", "id": 98103, "credit_id": "52fe4cfbc3a36847f82485ad", "cast_id": 7, "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "order": 8}, {"name": "Laraine Newman", "character": "", "id": 35159, "credit_id": "5331bb6ec3a3686a7f001faf", "cast_id": 14, "profile_path": "/stc0H1GhIaLF4MAHh0rNVgxKlfn.jpg", "order": 9}], "directors": [{"name": "Graham Annable", "department": "Directing", "job": "Director", "credit_id": "52fe4cfbc3a36847f82485bb", "profile_path": null, "id": 1152981}, {"name": "Anthony Stacchi", "department": "Directing", "job": "Director", "credit_id": "52fe4cfcc3a36847f82485c1", "profile_path": "/w4xXHA8eG9HIQFw3YXprZqggV4N.jpg", "id": 52691}], "vote_average": 6.8, "runtime": 97}, "10048": {"poster_path": "/tiezxIq6TJO4B09c13Z8a675dDy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76932943, "overview": "Deeply ensconced in a top-secret military program, three pilots struggle to bring an artificial intelligence program under control ... before it initiates the next world war.", "video": false, "id": 10048, "genres": [{"id": 28, "name": "Action"}], "title": "Stealth", "tagline": "Fear The Sky", "vote_count": 111, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0382992", "adult": false, "backdrop_path": "/uiw9D7ud7oUsQtTFoXzTkXlc9u3.jpg", "production_companies": [{"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Original Film", "id": 333}, {"name": "Phoenix Pictures", "id": 11317}, {"name": "Laura Ziskin Productions", "id": 326}, {"name": "AFG Talons Productions", "id": 19523}], "release_date": "2005-07-28", "popularity": 0.671792477724259, "original_title": "Stealth", "budget": 135000000, "cast": [{"name": "Josh Lucas", "character": "Lt. Ben Gannon", "id": 6164, "credit_id": "52fe43139251416c7500278d", "cast_id": 21, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 0}, {"name": "Jessica Biel", "character": "Lt. Kara Wade", "id": 10860, "credit_id": "52fe43139251416c75002797", "cast_id": 23, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 1}, {"name": "Jamie Foxx", "character": "Lt. Henry Purcell", "id": 134, "credit_id": "52fe43139251416c7500279b", "cast_id": 24, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Capt. George Cummings", "id": 9880, "credit_id": "52fe43139251416c7500279f", "cast_id": 25, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Richard Roxburgh", "character": "Dr. Keith Orbit", "id": 12206, "credit_id": "52fe43139251416c750027a3", "cast_id": 26, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 4}, {"name": "Joe Morton", "character": "Capt. Dick Marshfield", "id": 3977, "credit_id": "52fe43139251416c750027a7", "cast_id": 27, "profile_path": "/5adJxjbFX2GeuTTCNqc9dg4Twgx.jpg", "order": 5}, {"name": "Ebon Moss-Bachrach", "character": "Tim", "id": 21042, "credit_id": "52fe43139251416c750027ab", "cast_id": 28, "profile_path": "/ur1xAkenuiahTeQ8cIo20hwAvnm.jpg", "order": 6}, {"name": "Michael Denkha", "character": "Naval Controller", "id": 62487, "credit_id": "52fe43139251416c750027bf", "cast_id": 32, "profile_path": null, "order": 7}, {"name": "Clayton Adams", "character": "USS Abraham Lincoln Sailor", "id": 62489, "credit_id": "52fe43139251416c750027bb", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Rocky Helton", "character": "Master at Arms", "id": 62488, "credit_id": "52fe43139251416c750027c3", "cast_id": 33, "profile_path": null, "order": 9}, {"name": "Ian Bliss", "character": "Lt. Aaron Shaftsbury", "id": 62486, "credit_id": "52fe43139251416c750027cb", "cast_id": 35, "profile_path": "/cPBbJE6Pn0dU1LgPzrkE2Lfu0MJ.jpg", "order": 10}, {"name": "Maurice Morgan", "character": "USS Abraham Lincoln Sailor", "id": 62490, "credit_id": "52fe43139251416c750027c7", "cast_id": 34, "profile_path": "/96fM22kWShDIlWNS7ZVsd8s1kLo.jpg", "order": 11}, {"name": "Woody Naismith", "character": "USS Abraham Lincoln Sailor", "id": 62491, "credit_id": "52fe43139251416c750027cf", "cast_id": 36, "profile_path": null, "order": 12}, {"name": "Nicholas Hammond", "character": "Executive Officer", "id": 29095, "credit_id": "52fe43139251416c750027d3", "cast_id": 37, "profile_path": "/u7PRHFksaCypSKGIaEjk0Q3lYwN.jpg", "order": 13}, {"name": "Joel Tobeck", "character": "Black Ops Leader", "id": 41785, "credit_id": "52fe43139251416c750027d7", "cast_id": 38, "profile_path": "/14Oobz8bwcd3jiqnoCFTQnPBJdB.jpg", "order": 14}, {"name": "John Waters", "character": "Black Ops Doctor", "id": 10367, "credit_id": "52fe43139251416c750027db", "cast_id": 39, "profile_path": "/3qDSp0LlJ1Q2y802OyJcHVARsbZ.jpg", "order": 15}, {"name": "Charles Ndibe", "character": "USS Abraham Lincoln Sailor", "id": 62492, "credit_id": "52fe43139251416c750027df", "cast_id": 40, "profile_path": null, "order": 16}, {"name": "Michael McCabe", "character": "Commander 3rd Fleet", "id": 62493, "credit_id": "52fe43139251416c750027e3", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Jim Diamond", "character": "Rangoon Terrorist", "id": 62495, "credit_id": "52fe43139251416c750027e7", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Sara Saliba", "character": "Korean Girl", "id": 62494, "credit_id": "52fe43139251416c750027eb", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Caroline de Souza Correa", "character": "Henry's Date", "id": 1291386, "credit_id": "52fe43139251416c750027fb", "cast_id": 46, "profile_path": "/2xm5jeoy2NPaV69C1nXZ3Ujgc6r.jpg", "order": 20}], "directors": [{"name": "Rob Cohen", "department": "Directing", "job": "Director", "credit_id": "52fe43139251416c750027f1", "profile_path": "/kiNncBrjCFMIfLZ5huX4Dw2ogW2.jpg", "id": 18878}], "vote_average": 4.9, "runtime": 121}, "72387": {"poster_path": "/eoiqqDHohBCDwFWQOvczUeNoixK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After a former elite agent rescues a 12-year-old Chinese girl who's been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.", "video": false, "id": 72387, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Safe", "tagline": "She has the code. He is the key.", "vote_count": 347, "homepage": "http://www.safethefilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1656190", "adult": false, "backdrop_path": "/eZ7XAU70UcMvMsDajqphFeQNQ8S.jpg", "production_companies": [{"name": "IM Global", "id": 7437}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Lawrence Bender Productions", "id": 2253}, {"name": "Trigger Street Productions", "id": 11801}, {"name": "87Eleven", "id": 23008}], "release_date": "2012-04-16", "popularity": 0.937963741650963, "original_title": "Safe", "budget": 27000000, "cast": [{"name": "Jason Statham", "character": "Luke Wright", "id": 976, "credit_id": "52fe4868c3a368484e0f714f", "cast_id": 3, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Chris Sarandon", "character": "Mayor Tremello", "id": 14541, "credit_id": "52fe4868c3a368484e0f7153", "cast_id": 4, "profile_path": "/1Wf3WoXEdPqGyO6onKfFkseDFef.jpg", "order": 1}, {"name": "Adam S. Gottbetter", "character": "T Bonero", "id": 1072642, "credit_id": "5537636e92514166aa006354", "cast_id": 37, "profile_path": "/mf8jKshykbLDRBvqtlyCn85ipWp.jpg", "order": 2}, {"name": "James Hong", "character": "Han Jiao", "id": 20904, "credit_id": "52fe4868c3a368484e0f7157", "cast_id": 5, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 3}, {"name": "Catherine Chan", "character": "Mei", "id": 565675, "credit_id": "52fe4868c3a368484e0f715b", "cast_id": 6, "profile_path": "/3O5PgeCN28g5rtT1LkGMSCsBzdq.jpg", "order": 4}, {"name": "Robert John Burke", "character": "Captain Wolf", "id": 31512, "credit_id": "52fe4868c3a368484e0f715f", "cast_id": 7, "profile_path": "/ctVRWqY0KfSBIpaGulJMbhyE3jy.jpg", "order": 5}, {"name": "Anson Mount", "character": "Alex Rosen", "id": 56675, "credit_id": "52fe4868c3a368484e0f7163", "cast_id": 8, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 6}, {"name": "Reggie Lee", "character": "Quan Chang", "id": 22075, "credit_id": "52fe4868c3a368484e0f7167", "cast_id": 10, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 7}, {"name": "Joseph Sikora", "character": "Vassily Docheski", "id": 82631, "credit_id": "52fe4869c3a368484e0f71b9", "cast_id": 25, "profile_path": "/rNGXbssgOE9clqMyqGSdeiKvBJD.jpg", "order": 8}, {"name": "Igor Jijikine", "character": "Chemyakin", "id": 52761, "credit_id": "52fe4869c3a368484e0f71bd", "cast_id": 26, "profile_path": "/4ArqFlvP6Fe77DLxPu1U5LvkpXC.jpg", "order": 9}, {"name": "Reggie Lee", "character": "Quan Chang", "id": 22075, "credit_id": "52fe4869c3a368484e0f71c1", "cast_id": 27, "profile_path": "/t3kM9otyaduJseoqFgfBXndtKa5.jpg", "order": 10}, {"name": "Jack Gwaltney", "character": "Detective Reddick", "id": 159850, "credit_id": "52fe4869c3a368484e0f71c5", "cast_id": 30, "profile_path": "/umRHAAGWzE0jh88JWnC2w1UHL53.jpg", "order": 11}, {"name": "Barry Bradford", "character": "Detective Benoit", "id": 163976, "credit_id": "52fe4869c3a368484e0f71c9", "cast_id": 31, "profile_path": "/dKsacfla3ZgSzsgLbxHwZd6RO7x.jpg", "order": 12}, {"name": "Jay Giannone", "character": "Detective Kolfax", "id": 170240, "credit_id": "52fe4869c3a368484e0f71cd", "cast_id": 32, "profile_path": "/5T3PAzHKZudfot8FNY9hXqAjYgb.jpg", "order": 13}], "directors": [{"name": "Boaz Yakin", "department": "Directing", "job": "Director", "credit_id": "52fe4868c3a368484e0f7145", "profile_path": "/4NL3F6iwVlwdWvBKue5H8OpZrp2.jpg", "id": 52358}], "vote_average": 6.2, "runtime": 94}, "44833": {"poster_path": "/8R80QyDq7MCuBD8zMsNlminyXxy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 303025485, "overview": "When mankind beams a radio signal into space, a reply comes from \"Planet G\", in the form of several alien crafts that splash down in the waters off Hawaii. Lieutenant Alex Hopper (Taylor Kitsch) is a navel weapons officer assigned to the ship USS John Paul Jones, part of an international naval coalition which becomes the world's last hope for survival as they engage the hostile alien force of unimaginable strength. While takng on the invaders, Hopper must also try to live up to the potential his brother Stone (Alexander Skarsg\u00e5rd) and his fianc\u00e9e's father, Admiral Shane (Liam Neeson), expect of him.", "video": false, "id": 44833, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Battleship", "tagline": "The Battle for Earth Begins at Sea", "vote_count": 1043, "homepage": "http://www.battleshipmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1440129", "adult": false, "backdrop_path": "/gK3HCLid5M9AjzcIlKvhXjTHsfb.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Hasbro", "id": 2598}, {"name": "Bluegrass Films", "id": 13778}, {"name": "Film 44", "id": 20153}], "release_date": "2012-05-18", "popularity": 1.03228818303624, "original_title": "Battleship", "budget": 209000000, "cast": [{"name": "Taylor Kitsch", "character": "Lieutenant Alex Hopper", "id": 60900, "credit_id": "52fe469ec3a36847f8108ccb", "cast_id": 3, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 0}, {"name": "Alexander Skarsg\u00e5rd", "character": "Commander Stone Hopper", "id": 28846, "credit_id": "52fe469ec3a36847f8108cd7", "cast_id": 8, "profile_path": "/qCkSiXNskBQKe8Ic2cyN8M1OJfj.jpg", "order": 1}, {"name": "Rihanna", "character": "Petty Officer Cora", "id": 131519, "credit_id": "52fe469ec3a36847f8108ccf", "cast_id": 4, "profile_path": "/ssguCAeEMq74FS2ICMJ3Q9Wy7Bf.jpg", "order": 2}, {"name": "Brooklyn Decker", "character": "Sam", "id": 131520, "credit_id": "52fe469ec3a36847f8108cd3", "cast_id": 6, "profile_path": "/ll0ujxAqZUTcWSuA8NNsXoLppsG.jpg", "order": 3}, {"name": "Tadanobu Asano", "character": "Captain Yugi Nagata", "id": 13275, "credit_id": "52fe469ec3a36847f8108d1b", "cast_id": 21, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 4}, {"name": "Liam Neeson", "character": "Admiral Shane", "id": 3896, "credit_id": "52fe469ec3a36847f8108cdb", "cast_id": 9, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 5}, {"name": "Gregory D. Gadson", "character": "Lieutenant Colonel Mick Canales", "id": 1052162, "credit_id": "539f697ac3a3682820000da6", "cast_id": 43, "profile_path": "/p6NCHRjMiukaPxnrXcgsBalvJlf.jpg", "order": 6}, {"name": "Hamish Linklater", "character": "Cal Zapata", "id": 184581, "credit_id": "52fe469ec3a36847f8108d63", "cast_id": 35, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 7}, {"name": "Jesse Plemons", "character": "Boatswain Mate Seaman Jimmy \"Ordy\" Ord", "id": 88124, "credit_id": "52fe469ec3a36847f8108d17", "cast_id": 20, "profile_path": "/5EOD7UtSHYWR66BcDE2EnSvrQ1L.jpg", "order": 8}, {"name": "John Tui", "character": "Chief Petty Officer Walter \"The Beast\" Lynch", "id": 205406, "credit_id": "52fe469ec3a36847f8108d67", "cast_id": 36, "profile_path": "/7ZBf1x5SFm8iFiKG5trd5VaQCIO.jpg", "order": 9}, {"name": "Jerry Ferrara", "character": "Sampson JOOD Strodell", "id": 98953, "credit_id": "52fe469ec3a36847f8108d6f", "cast_id": 38, "profile_path": "/naen3YM6abkGCV89iBjMhi38fYX.jpg", "order": 10}, {"name": "David Jensen", "character": "NASA Director", "id": 60875, "credit_id": "52fe469ec3a36847f8108d5b", "cast_id": 33, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 11}, {"name": "Peter Berg", "character": "JPJ 2nd Gunner", "id": 36602, "credit_id": "52fe469ec3a36847f8108d5f", "cast_id": 34, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 12}, {"name": "Adam Godley", "character": "Dr. Nogrady", "id": 23429, "credit_id": "53a159c2c3a3687bbc001fcf", "cast_id": 51, "profile_path": "/bpS9H0TYn67BMGBNv32180j8LX7.jpg", "order": 13}, {"name": "Rico McClinton", "character": "Captain Browley", "id": 987677, "credit_id": "53a159fdc3a3687ba60020be", "cast_id": 52, "profile_path": null, "order": 14}, {"name": "Joji Yoshida", "character": "Chief Engineer Hiroki", "id": 1331643, "credit_id": "53a15a43c3a3687bbc001fe1", "cast_id": 53, "profile_path": null, "order": 15}, {"name": "Stephen Bishop", "character": "JPJ OOD", "id": 55205, "credit_id": "53a15a74c3a3687bb000221d", "cast_id": 54, "profile_path": "/wQIuryd9RY0zCBZRFMnyDt7civt.jpg", "order": 16}, {"name": "Austin Naulty", "character": "JPJ Fireman", "id": 1044953, "credit_id": "53a15abec3a3685b2c000987", "cast_id": 55, "profile_path": null, "order": 17}, {"name": "James Rawlings", "character": "JPJ Scat", "id": 565508, "credit_id": "53a15b02c3a3687b980020ac", "cast_id": 56, "profile_path": "/cxADb4TZ27Rsfww4lcd74iJMBwm.jpg", "order": 18}, {"name": "Dustin J. Reno", "character": "Electronic Warfare Supervisor", "id": 1337274, "credit_id": "549ac3a6925141312c001711", "cast_id": 151, "profile_path": "/4NWEMZPw5n7aqg7oVlH2b2htUv4.jpg", "order": 19}, {"name": "Rick Hoffman", "character": "Chairman, Joint Chiefs of Staff", "id": 1216133, "credit_id": "549ac3e5925141312300190f", "cast_id": 152, "profile_path": "/d1B41muPxihy4YXsWRiXKfpzq0y.jpg", "order": 20}, {"name": "Gary Grubbs", "character": "Air Force Chief of Staff", "id": 68180, "credit_id": "549ac409c3a3680b2700114e", "cast_id": 153, "profile_path": "/zbSSBFW8oRl4M1u2vyr1PUnWqCw.jpg", "order": 21}], "directors": [{"name": "Peter Berg", "department": "Directing", "job": "Director", "credit_id": "52fe469ec3a36847f8108cc7", "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "id": 36602}], "vote_average": 5.5, "runtime": 131}, "80585": {"poster_path": "/k5au98wpdbViuRWZMy6RbxMBXjl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Young Drew Boley (Diego Boneta) and Sherrie Christian (Julianne Hough) fall in love during the rock music scene of 1987.", "video": false, "id": 80585, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Rock of Ages", "tagline": "Nothin' but a good time", "vote_count": 110, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1336608", "adult": false, "backdrop_path": "/epwiE1BS0WqnHoKdT1GcOh8VYYW.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Corner Store Entertainment", "id": 8871}], "release_date": "2012-06-13", "popularity": 0.352828142768076, "original_title": "Rock of Ages", "budget": 75000000, "cast": [{"name": "Tom Cruise", "character": "Stacee Jaxx", "id": 500, "credit_id": "52fe47c99251416c91075af7", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Bryan Cranston", "character": "Mayor Mike Whitmore", "id": 17419, "credit_id": "52fe47c99251416c91075b01", "cast_id": 3, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 1}, {"name": "Malin Akerman", "character": "Constance Sack", "id": 50463, "credit_id": "52fe47c99251416c91075b05", "cast_id": 4, "profile_path": "/QBCe0Nu7WQ7Xqp2JPdq1y0iSYt.jpg", "order": 2}, {"name": "Russell Brand", "character": "Lonny Barnett", "id": 59919, "credit_id": "52fe47c99251416c91075b09", "cast_id": 5, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 3}, {"name": "Catherine Zeta-Jones", "character": "Patricia Whitmore", "id": 1922, "credit_id": "52fe47c99251416c91075b0d", "cast_id": 6, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 4}, {"name": "Alec Baldwin", "character": "Dennis Dupree", "id": 7447, "credit_id": "52fe47c99251416c91075b11", "cast_id": 7, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 5}, {"name": "Paul Giamatti", "character": "Paul Gill", "id": 13242, "credit_id": "52fe47c99251416c91075b4b", "cast_id": 17, "profile_path": "/rX4LRmkYshMRfQ6lVbeZVAfqVKI.jpg", "order": 6}, {"name": "Diego Boneta", "character": "Drew Boley", "id": 935201, "credit_id": "52fe47c99251416c91075b4f", "cast_id": 18, "profile_path": "/qcjr8SqbjkoK5kU4OTdL0tKvH17.jpg", "order": 7}, {"name": "Julianne Hough", "character": "Sherrie Christian", "id": 143240, "credit_id": "52fe47c99251416c91075b53", "cast_id": 19, "profile_path": "/4x1xQbvsMZvlOLK36WV3nKSpUbv.jpg", "order": 8}, {"name": "Erica Frene", "character": "Beth", "id": 1064157, "credit_id": "52fe47c99251416c91075b57", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Shane Hartline", "character": "Bartender Jimmy", "id": 1064158, "credit_id": "52fe47c99251416c91075b5b", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "James Martin Kelly", "character": "Doug Flintlock", "id": 162849, "credit_id": "52fe47c99251416c91075b5f", "cast_id": 22, "profile_path": "/vxXibUg2bfMThYnGHtEjjaV9ukF.jpg", "order": 11}, {"name": "Mary J. Blige", "character": "Justice", "id": 84933, "credit_id": "52fe47c99251416c91075b63", "cast_id": 23, "profile_path": "/mWT23vVYLuSLGDlaXhFql4BqW6T.jpg", "order": 12}, {"name": "Will Forte", "character": "Mitch Miley", "id": 62831, "credit_id": "52fe47c99251416c91075b67", "cast_id": 24, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 13}, {"name": "Eli Roth", "character": "Stefano", "id": 16847, "credit_id": "52fe47c99251416c91075b6b", "cast_id": 25, "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "order": 14}], "directors": [{"name": "Adam Shankman", "department": "Directing", "job": "Director", "credit_id": "52fe47c99251416c91075afd", "profile_path": "/s5JF4UX0yQj4ejQxgHHVvB4cc8e.jpg", "id": 20739}], "vote_average": 5.6, "runtime": 123}, "36643": {"poster_path": "/tCarTEKvXjALk87r3wAxB4jb1ON.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 361832400, "overview": "Greed, revenge, world dominance, high-tech terrorism -- it's all in a day's work for cunning MI6 agent James Bond, who's on a mission to protect beautiful oil heiress Elektra King from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.", "video": false, "id": 36643, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The World Is Not Enough", "tagline": "As the countdown begins for the new millennium there is still one number you can always count on.", "vote_count": 258, "homepage": "http://www.mgm.com/view/movie/231/The-World-Is-Not-Enough/", "belongs_to_collection": {"backdrop_path": "/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg", "poster_path": "/HORpg5CSkmeQlAolx3bKMrKgfi.jpg", "id": 645, "name": "James Bond Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0143145", "adult": false, "backdrop_path": "/4xAb2zAe5Pmno928hBQqff4RVwr.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer", "id": 21}, {"name": "Eon Productions", "id": 7576}, {"name": "Danjaq", "id": 10761}, {"name": "United Artists", "id": 60}], "release_date": "1999-11-21", "popularity": 1.79316087311734, "original_title": "The World Is Not Enough", "budget": 135000000, "cast": [{"name": "Pierce Brosnan", "character": "James Bond", "id": 517, "credit_id": "52fe45fc9251416c910452db", "cast_id": 4, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 0}, {"name": "Sophie Marceau", "character": "Elektra King", "id": 1957, "credit_id": "52fe45fc9251416c910452df", "cast_id": 5, "profile_path": "/5pJ16f9QxzZMzcr9CpSnr6dTwGG.jpg", "order": 1}, {"name": "Robert Carlyle", "character": "Renard", "id": 18023, "credit_id": "52fe45fc9251416c910452e3", "cast_id": 6, "profile_path": "/qOvOpvSDyS9XfUhOFdzZNnU6nni.jpg", "order": 2}, {"name": "Denise Richards", "character": "Dr. Christmas Jones", "id": 9205, "credit_id": "52fe45fc9251416c910452e7", "cast_id": 7, "profile_path": "/r273Tmck64anm3uuccE8zfJD8da.jpg", "order": 3}, {"name": "Robbie Coltrane", "character": "Valentin Zukovsky", "id": 1923, "credit_id": "52fe45fc9251416c910452eb", "cast_id": 8, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 4}, {"name": "Desmond Llewelyn", "character": "Q", "id": 9906, "credit_id": "52fe45fc9251416c910452ef", "cast_id": 9, "profile_path": "/kJxILFKzFPSVVkpVsCOW7BWFVfy.jpg", "order": 5}, {"name": "John Cleese", "character": "R", "id": 8930, "credit_id": "52fe45fc9251416c910452f3", "cast_id": 10, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 6}, {"name": "Maria Grazia Cucinotta", "character": "Cigar Girl", "id": 10777, "credit_id": "52fe45fc9251416c910452f7", "cast_id": 11, "profile_path": "/bgI6qh8V7zKslCcGxRflom4H7yS.jpg", "order": 7}, {"name": "Samantha Bond", "character": "Miss Moneypenny", "id": 10699, "credit_id": "52fe45fc9251416c910452fb", "cast_id": 12, "profile_path": "/7kpP2OWmDYWnSWQq3Mi6R47SjPD.jpg", "order": 8}, {"name": "Michael Kitchen", "character": "Bill Tanner", "id": 10648, "credit_id": "52fe45fc9251416c910452ff", "cast_id": 13, "profile_path": "/bt1UWcegfSflLONcFN6XNqgayZt.jpg", "order": 9}, {"name": "Colin Salmon", "character": "Charles Robinson", "id": 5414, "credit_id": "52fe45fc9251416c91045303", "cast_id": 14, "profile_path": "/65NLTMVHkjLIMjxasspMjwa6dLu.jpg", "order": 10}, {"name": "David Calder", "character": "Sir Robert King", "id": 10779, "credit_id": "52fe45fc9251416c91045307", "cast_id": 15, "profile_path": "/ixaxa85cJRQuyVihWjr27Dyh9Bf.jpg", "order": 11}, {"name": "Serena Scott Thomas", "character": "Dr. Molly Warmflash", "id": 10780, "credit_id": "52fe45fc9251416c9104530b", "cast_id": 16, "profile_path": "/dvTjb6V46wOo9JGgcViU54UoZNN.jpg", "order": 12}, {"name": "Judi Dench", "character": "M", "id": 5309, "credit_id": "52fe45fc9251416c9104530f", "cast_id": 17, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 13}, {"name": "Ulrich Thomsen", "character": "Davidov", "id": 4455, "credit_id": "5401f5580e0a2658e2005262", "cast_id": 21, "profile_path": "/eq8XlXcUsZNlv2Q7tjVQLVby74r.jpg", "order": 14}, {"name": "Claude-Oliver Rudolph", "character": "Colonel Akakievich", "id": 5234, "credit_id": "5401f5840e0a2658e60051b7", "cast_id": 22, "profile_path": "/3dydKxmunb3m7UbOlRdNIaSEEKf.jpg", "order": 15}, {"name": "Patrick Malahide", "character": "Lachaise", "id": 8979, "credit_id": "5401f5970e0a2658de0052af", "cast_id": 23, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 16}, {"name": "Omid Djalili", "character": "Foreman", "id": 41379, "credit_id": "5401f5a70e0a2658e2005269", "cast_id": 24, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 17}, {"name": "Jeff Nuttall", "character": "Dr. Arkov", "id": 102761, "credit_id": "5401f5f90e0a2658e60051bb", "cast_id": 25, "profile_path": null, "order": 18}], "directors": [{"name": "Michael Apted", "department": "Directing", "job": "Director", "credit_id": "52fe45fc9251416c910452cb", "profile_path": "/j5KoJlZUepN36ZD8VoDLuvV5BG5.jpg", "id": 10781}], "vote_average": 6.0, "runtime": 128}, "326359": {"poster_path": "/lKJiVPzsAO9IJ4LKWXZ8vkR2bg4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On Anna's birthday, Elsa and Kristoff are determined to give her the best celebration ever, but Elsa's icy powers may put more than just the party at risk.", "video": false, "id": 326359, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}], "title": "Frozen Fever", "tagline": "", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Post Production", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt4007502", "adult": false, "backdrop_path": "/aC73wIEQhmgBefBngW9iSnTSAbp.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2015-03-13", "popularity": 0.873861406398035, "original_title": "Frozen Fever", "budget": 0, "cast": [{"name": "Kristen Bell", "character": "Anna (voice)", "id": 40462, "credit_id": "54e7501792514126ae000a2a", "cast_id": 0, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 1}, {"name": "Idina Menzel", "character": "Elsa (voice)", "id": 19394, "credit_id": "54e7502592514110f6001079", "cast_id": 1, "profile_path": "/h7xxQ7jVPBy5jjOsE89V3LSAkns.jpg", "order": 2}, {"name": "Jonathan Groff", "character": "Kristoff (voice)", "id": 221611, "credit_id": "54e75039c3a3685af7001ae9", "cast_id": 2, "profile_path": "/iGQSz9GIWQ88jS9OZeF78wVwXtR.jpg", "order": 3}, {"name": "Josh Gad", "character": "Olaf (voice)", "id": 54415, "credit_id": "54e750449251416f490018a0", "cast_id": 3, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 4}, {"name": "Chris Williams", "character": "Oaken (voice)", "id": 70238, "credit_id": "550d7e92c3a368487d005e40", "cast_id": 6, "profile_path": "/lHhLOhdQvX8Cs5MjbONGBtj51Yb.jpg", "order": 5}, {"name": "Paul Briggs", "character": "Marshmallow (voice)", "id": 1340669, "credit_id": "550d7ea3925141469c005ac1", "cast_id": 7, "profile_path": "/vccGfQWvG6nBaMD080uDS4Vaj26.jpg", "order": 6}], "directors": [{"name": "Chris Buck", "department": "Directing", "job": "Director", "credit_id": "54e75064c3a3685b0000164d", "profile_path": null, "id": 15774}, {"name": "Jennifer Lee", "department": "Directing", "job": "Director", "credit_id": "54e7507a92514110f600107e", "profile_path": "/9BkQnsppXFWcNSRGo4GJ6QNq313.jpg", "id": 1120694}], "vote_average": 7.0, "runtime": 7}, "88794": {"poster_path": "/upACO9i21lb5lG7ovf51m3lIPcv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 37258650, "overview": "As the face of law enforcement in America for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career and his life.", "video": false, "id": 88794, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "J. Edgar", "tagline": "The Most Powerful Man in the World", "vote_count": 184, "homepage": "http://jedgarmovie.warnerbros.com/dvd/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1616195", "adult": false, "backdrop_path": "/dqaUwCBK2Omdy5RRzTk6oBrP18p.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Malpaso Productions", "id": 171}, {"name": "Wintergreen Productions", "id": 11845}], "release_date": "2011-11-09", "popularity": 0.995130221178806, "original_title": "J. Edgar", "budget": 35000000, "cast": [{"name": "Leonardo DiCaprio", "character": "J. Edgar Hoover", "id": 6193, "credit_id": "52fe4a039251416c910c04d9", "cast_id": 1, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Geoff Pierson", "character": "Mitchell Palmer", "id": 25879, "credit_id": "52fe4a039251416c910c04e3", "cast_id": 5, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 1}, {"name": "Naomi Watts", "character": "Helen Gandy", "id": 3489, "credit_id": "52fe4a039251416c910c04e7", "cast_id": 6, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 2}, {"name": "Josh Hamilton", "character": "Robert Irwin", "id": 52419, "credit_id": "52fe4a039251416c910c04eb", "cast_id": 7, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 3}, {"name": "Judi Dench", "character": "Anna Marie Hoover", "id": 5309, "credit_id": "52fe4a039251416c910c04ef", "cast_id": 8, "profile_path": "/7zqn87hMABLWVoEEUvowkBGgOu8.jpg", "order": 4}, {"name": "Gunner Wright", "character": "Dwight Eisenhower", "id": 113231, "credit_id": "52fe4a039251416c910c04f9", "cast_id": 10, "profile_path": "/4GoIrUIbioXEgoDuctyzyzxmReP.jpg", "order": 5}, {"name": "Kaitlyn Dever", "character": "Palmer's Daughter", "id": 481337, "credit_id": "52fe4a039251416c910c04fd", "cast_id": 11, "profile_path": "/ybWdxglFyo38t2SHrhDxlVdsHzF.jpg", "order": 6}, {"name": "Adam Driver", "character": "Walter Lyle", "id": 1023139, "credit_id": "52fe4a039251416c910c0501", "cast_id": 12, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 7}, {"name": "Armie Hammer", "character": "Clyde Tolson", "id": 53807, "credit_id": "52fe4a039251416c910c0505", "cast_id": 13, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 8}, {"name": "Ed Westwick", "character": "Agent Smith", "id": 21662, "credit_id": "52fe4a039251416c910c0509", "cast_id": 14, "profile_path": "/as5iYeI7C6FygvJ9LJebWEiz0y7.jpg", "order": 9}, {"name": "Jessica Hecht", "character": "Emma Goldman", "id": 14984, "credit_id": "52fe4a039251416c910c050d", "cast_id": 15, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 10}, {"name": "Josh Lucas", "character": "Charles Lindbergh", "id": 6164, "credit_id": "52fe4a039251416c910c0547", "cast_id": 26, "profile_path": "/gv7jI1SZLRXRVJnNGOS1zK6yWB.jpg", "order": 11}, {"name": "Dermot Mulroney", "character": "Colonel Schwarzkopf", "id": 20212, "credit_id": "52fe4a039251416c910c054b", "cast_id": 27, "profile_path": "/4ZqA0SJ8KKZ1HvVdZZJlrqjxlq1.jpg", "order": 12}, {"name": "Denis O'Hare", "character": "Albert Osborne", "id": 81681, "credit_id": "52fe4a039251416c910c054f", "cast_id": 28, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 13}, {"name": "Lea Thompson", "character": "Lela Rogers", "id": 1063, "credit_id": "52fe4a039251416c910c0553", "cast_id": 29, "profile_path": "/dA1BESp4Now9aULstKMReI8hzui.jpg", "order": 14}, {"name": "Sadie Calvano", "character": "Edgar's Niece", "id": 1258702, "credit_id": "54200ddcc3a3687985001f66", "cast_id": 31, "profile_path": "/sjtMD4t8O09Our3kz2CUepL1f6M.jpg", "order": 15}], "directors": [{"name": "Clint Eastwood", "department": "Directing", "job": "Director", "credit_id": "52fe4a039251416c910c04df", "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "id": 190}], "vote_average": 5.8, "runtime": 137}, "6877": {"poster_path": "/sJUEp6HGFitc3Ai2ZnaSJEGy96T.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88715192, "overview": "Tripp, an attractive man in his thirties, is still living with his parents Al and Sue. Tripp's best friends Demo and Ace are also still living in their parents' homes and seem proud of it. Al and Sue are not happy, however, and are fascinated when friends whose adult son has recently moved away from home reveal they hired an expert to arrange the matter and couldn't be happier with the result.", "video": false, "id": 6877, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Failure to Launch", "tagline": "To leave the nest, some men just need a little push.", "vote_count": 92, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427229", "adult": false, "backdrop_path": "/hH4DgWuT8wsENtm1n3wzcUkpeoC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2006-03-10", "popularity": 0.979599222557457, "original_title": "Failure to Launch", "budget": 50000000, "cast": [{"name": "Matthew McConaughey", "character": "Tripp", "id": 10297, "credit_id": "52fe4466c3a36847f8093c6d", "cast_id": 4, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Sarah Jessica Parker", "character": "Paula", "id": 520, "credit_id": "52fe4466c3a36847f8093c71", "cast_id": 5, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 1}, {"name": "Zooey Deschanel", "character": "Kit", "id": 11664, "credit_id": "52fe4466c3a36847f8093c75", "cast_id": 6, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 2}, {"name": "Justin Bartha", "character": "Ace", "id": 21180, "credit_id": "52fe4466c3a36847f8093c79", "cast_id": 7, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 3}, {"name": "Bradley Cooper", "character": "Demo", "id": 51329, "credit_id": "52fe4466c3a36847f8093c7d", "cast_id": 8, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 4}, {"name": "Terry Bradshaw", "character": "Al", "id": 51330, "credit_id": "52fe4466c3a36847f8093c81", "cast_id": 9, "profile_path": "/oMUyNy9hbeYacBrLVbY4LhW4KAw.jpg", "order": 5}, {"name": "Kathy Bates", "character": "Sue", "id": 8534, "credit_id": "52fe4466c3a36847f8093c85", "cast_id": 10, "profile_path": "/vEGWm5zpddEi0hS6vo8o9LBI7V2.jpg", "order": 6}, {"name": "Tyrel Jackson Williams", "character": "Jeffrey", "id": 51331, "credit_id": "52fe4466c3a36847f8093c89", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Katheryn Winnick", "character": "Melissa", "id": 26723, "credit_id": "52fe4466c3a36847f8093c8d", "cast_id": 12, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 8}, {"name": "Patton Oswalt", "character": "Techie Guy", "id": 10872, "credit_id": "52fe4466c3a36847f8093c91", "cast_id": 14, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 9}, {"name": "Rob Corddry", "character": "Gun Salesman", "id": 52997, "credit_id": "52fe4466c3a36847f8093cb3", "cast_id": 20, "profile_path": "/k2zJL0V1nEZuFT08xUdOd3ucfXz.jpg", "order": 10}, {"name": "Stephen Tobolowsky", "character": "Bud", "id": 537, "credit_id": "5504d277c3a3682529001a66", "cast_id": 21, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 11}], "directors": [{"name": "Tom Dey", "department": "Directing", "job": "Director", "credit_id": "52fe4466c3a36847f8093c5d", "profile_path": "/7YmdGtMlVmxwky3hWcDOPTZ5rv3.jpg", "id": 46076}], "vote_average": 5.4, "runtime": 97}, "20533": {"poster_path": "/vz6nzozaX12hUAUEQE4DdVsbCGx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 10539000, "overview": "Gunsliger Jonah Hex (Josh Brolin) is appointed by President Ulysses Grant to track down terrorist Quentin Turnbull (John Malkovich), a former Confederate officer determined on unleashing hell on earth. Jonah not only secures freedom by accepting this task, he also gets revenge on the man who slayed his wife and child. Megan Fox plays a prostitute as well as Jonah Hex's love interst in the film.", "video": false, "id": 20533, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}, {"id": 37, "name": "Western"}], "title": "Jonah Hex", "tagline": "Revenge gets ugly.", "vote_count": 129, "homepage": "http://jonah-hex.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1075747", "adult": false, "backdrop_path": "/i8gJF3ERZphPTHMYw8N4dWd68o8.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Weed Road Pictures", "id": 433}, {"name": "Legendary Pictures", "id": 923}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Mad Chance", "id": 1757}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2010-06-18", "popularity": 0.912779064033386, "original_title": "Jonah Hex", "budget": 47000000, "cast": [{"name": "Megan Fox", "character": "Leila", "id": 19537, "credit_id": "52fe43ebc3a368484e006015", "cast_id": 1, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Jonah Hex", "id": 16851, "credit_id": "52fe43ebc3a368484e006019", "cast_id": 2, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "John Malkovich", "character": "Turnbull", "id": 6949, "credit_id": "52fe43ebc3a368484e00601d", "cast_id": 3, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Michael Shannon", "character": "Doc Cross Williams", "id": 335, "credit_id": "52fe43ebc3a368484e006021", "cast_id": 4, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 3}, {"name": "Michael Fassbender", "character": "Burke", "id": 17288, "credit_id": "52fe43ebc3a368484e006025", "cast_id": 5, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 4}, {"name": "Brandi Coleman", "character": "Olean", "id": 86271, "credit_id": "52fe43ebc3a368484e006029", "cast_id": 6, "profile_path": "/zGxT5vYR90UGUtob2iNxkOQeHqx.jpg", "order": 5}, {"name": "David Jensen", "character": "Turnbull's Guard", "id": 60875, "credit_id": "52fe43ebc3a368484e00602d", "cast_id": 7, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 6}, {"name": "Natacha Itzel", "character": "Jonah's Wife", "id": 86272, "credit_id": "52fe43ebc3a368484e006031", "cast_id": 8, "profile_path": "/5sSsXEsAa6WVnGzyHoLhtGwI7WY.jpg", "order": 7}, {"name": "John Gallagher Jr.", "character": "Second Lt. Evan", "id": 17487, "credit_id": "52fe43ebc3a368484e006035", "cast_id": 9, "profile_path": "/2mn6gmPdFKaGBBAEMtTEk1tCVyi.jpg", "order": 8}, {"name": "Lisa Rotondi", "character": "The Lovely Prostitute", "id": 86273, "credit_id": "52fe43ebc3a368484e006039", "cast_id": 10, "profile_path": "/jDVmNj6WdJN4yn3saxm9dxE35B8.jpg", "order": 9}, {"name": "Michael Arnona", "character": "Train Engineer", "id": 86274, "credit_id": "52fe43ebc3a368484e00603d", "cast_id": 11, "profile_path": "/Ab5M4nndSLpITCm8TJ1xPbquZFJ.jpg", "order": 10}, {"name": "Veronica Russell", "character": "Red Haired Prostitute", "id": 86275, "credit_id": "52fe43ebc3a368484e006041", "cast_id": 12, "profile_path": "/9tDrawBPDjaOQqdPb5DoIVjMMjD.jpg", "order": 11}, {"name": "Sean Boyd", "character": "The Preacher", "id": 86276, "credit_id": "52fe43ebc3a368484e006045", "cast_id": 13, "profile_path": "/jeQ4xtuMpX4cPzPSE6iNwa7qLOG.jpg", "order": 12}, {"name": "Danny Cosmo", "character": "Grimey Local", "id": 86278, "credit_id": "52fe43ebc3a368484e006049", "cast_id": 15, "profile_path": "/fP7gwFDo6xEP5tY3rbfbtXkrid1.jpg", "order": 14}, {"name": "Sean M. Sellers", "character": "Turnbull Man", "id": 86279, "credit_id": "52fe43ebc3a368484e00604d", "cast_id": 16, "profile_path": null, "order": 15}, {"name": "Will Arnett", "character": "Lieutenant Grass", "id": 21200, "credit_id": "52fe43ebc3a368484e006075", "cast_id": 23, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 16}, {"name": "Alexander Asefa", "character": "Peasant", "id": 1025647, "credit_id": "52fe43ebc3a368484e006079", "cast_id": 24, "profile_path": "/fxrz9gOX1YqD3vCuBXu09mukQUT.jpg", "order": 17}, {"name": "Billy Blair", "character": "Billy", "id": 968889, "credit_id": "54466ce6c3a368277b002631", "cast_id": 49, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 18}], "directors": [{"name": "Jimmy Hayward", "department": "Directing", "job": "Director", "credit_id": "52fe43ebc3a368484e006053", "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "id": 8029}], "vote_average": 4.7, "runtime": 80}, "244458": {"poster_path": "/lmnPpYkSFsuAxnO6WJhQOlVZCA0.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jerry (Ryan Reynolds) is that chipper guy clocking the nine-to-five at a bathtub factory, with the offbeat charm of anyone who could use a few friends. With the help of his court-appointed psychiatrist, he pursues his office crush (Gemma Arterton). However, the relationship takes a sudden, murderous turn after she stands him up for a date. Guided by his evil talking cat and benevolent talking dog, Jerry must decide whether to keep striving for normalcy, or indulge in a much more sinister path.", "video": false, "id": 244458, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "The Voices", "tagline": "Hearing voices can be murder.", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1567437", "adult": false, "backdrop_path": "/3KiBuEKLBAQSyBbWbYXiKK0RXDS.jpg", "production_companies": [{"name": "1984 Private Defense Contractors", "id": 8532}, {"name": "Mandalay Vision", "id": 6667}, {"name": "Studio Babelsberg", "id": 264}], "release_date": "2014-01-19", "popularity": 1.72772412505608, "original_title": "The Voices", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Jerry / Mr. Whiskers (voice) / Bosco (voice) / Deer (voice) / Bunny Monkey (voice)", "id": 10859, "credit_id": "52fe4ef1c3a36847f82b26cf", "cast_id": 7, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Fiona", "id": 59620, "credit_id": "52fe4ef1c3a36847f82b26d3", "cast_id": 8, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Lisa", "id": 84223, "credit_id": "52fe4ef1c3a36847f82b26d7", "cast_id": 9, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Jacki Weaver", "character": "Dr. Warren", "id": 67837, "credit_id": "52fe4ef1c3a36847f82b26db", "cast_id": 10, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 3}, {"name": "Ella Smith", "character": "Alison", "id": 118036, "credit_id": "54d5845dc3a3683ba000105d", "cast_id": 11, "profile_path": "/sEjXwPmTi3jRjoGMJJjBmvdKC6X.jpg", "order": 4}, {"name": "Paul Chahidi", "character": "Dennis Kowalski", "id": 75074, "credit_id": "54d58474c3a368439a000c7b", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Stanley Townsend", "character": "Sheriff Weinbacher", "id": 25074, "credit_id": "54d584899251416b9f000f08", "cast_id": 13, "profile_path": "/nZZWcRY77Cc01E4bWJhHUyHOJhZ.jpg", "order": 6}, {"name": "Adi Shankar", "character": "John", "id": 1046154, "credit_id": "54d584969251415f75000bee", "cast_id": 14, "profile_path": null, "order": 7}, {"name": "Sam Spruell", "character": "Dave", "id": 55585, "credit_id": "54d584a3c3a3683b95000ec3", "cast_id": 15, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 8}, {"name": "Valerie Koch", "character": "Jerry's Mother", "id": 52666, "credit_id": "54d584b19251416b93000e66", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Gulliver McGrath", "character": "Jerry (12 years old)", "id": 234983, "credit_id": "54d584c7c3a3683ba0001078", "cast_id": 17, "profile_path": "/jpDJNQtrtHMPqpssxd8RudVhn5x.jpg", "order": 10}, {"name": "Paul Brightwell", "character": "Jerry's Stepfather", "id": 1256066, "credit_id": "54d584d8c3a3683ba000107c", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Alessa Kordeck", "character": "Sheryl", "id": 1424051, "credit_id": "54d584e69251416b93000e70", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Michael Pink", "character": "Jesus", "id": 48151, "credit_id": "54d584f69251416ba8000e39", "cast_id": 20, "profile_path": null, "order": 13}], "directors": [{"name": "Marjane Satrapi", "department": "Directing", "job": "Director", "credit_id": "52fe4ef1c3a36847f82b26ad", "profile_path": "/zkUWH6rO4TC8Jb8IhSo2QyDN3Ty.jpg", "id": 20659}], "vote_average": 6.0, "runtime": 101}, "72431": {"poster_path": "/Atq5js5fbsu5EXubZRizWaSXoBJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.", "video": false, "id": 72431, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10752, "name": "War"}], "title": "Red Tails", "tagline": "High-Octane Action and Daring Dogfights!", "vote_count": 77, "homepage": "http://www.redtails2012.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0485985", "adult": false, "backdrop_path": "/3qAM6vvbf6RXR9pLL9yUwHvhEA3.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Partnership Pictures", "id": 22883}, {"name": "Lucasfilm Ltd.", "id": 535}], "release_date": "2012-01-20", "popularity": 0.474968198424859, "original_title": "Red Tails", "budget": 58000000, "cast": [{"name": "Bryan Cranston", "character": "Colonel William Mortamus", "id": 17419, "credit_id": "52fe486bc3a368484e0f786d", "cast_id": 2, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 0}, {"name": "David Oyelowo", "character": "Joe 'Lightning' Little", "id": 35013, "credit_id": "52fe486bc3a368484e0f7871", "cast_id": 3, "profile_path": "/uhFLGQqNmhLgcqgITkoGoHy9FTl.jpg", "order": 1}, {"name": "Cuba Gooding Jr.", "character": "Major Emanuelle Stance", "id": 9777, "credit_id": "52fe486bc3a368484e0f7875", "cast_id": 4, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 2}, {"name": "Daniela Ruah", "character": "Sofia", "id": 221019, "credit_id": "52fe486bc3a368484e0f7879", "cast_id": 5, "profile_path": "/yKgVFpXptMnLgdkH7ivDPBooqXn.jpg", "order": 3}, {"name": "Terrence Howard", "character": "Col. A.J. Bullard", "id": 18288, "credit_id": "52fe486bc3a368484e0f787d", "cast_id": 6, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 4}, {"name": "Andre Royo", "character": "Antwan 'Coffee' Coleman", "id": 74957, "credit_id": "52fe486bc3a368484e0f7881", "cast_id": 7, "profile_path": "/cRddvyvY3PUdiNTJbzBGayMRs5L.jpg", "order": 5}, {"name": "Robert Kazinsky", "character": "Chester", "id": 1038379, "credit_id": "52fe486bc3a368484e0f7885", "cast_id": 8, "profile_path": "/h54Qs5LK19NT2ZA2ysRzjjnuODH.jpg", "order": 6}, {"name": "Lee Tergesen", "character": "Colonel Jack Tomlinson", "id": 6906, "credit_id": "5323ffc4c3a3683dbf000526", "cast_id": 11, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 7}, {"name": "Matthew Leitch", "character": "Lt. David Long", "id": 141770, "credit_id": "53d7247d0e0a260334000c1b", "cast_id": 20, "profile_path": "/94OPadjJLEp4FzeXndx24mUyF0o.jpg", "order": 8}], "directors": [{"name": "Anthony Hemingway", "department": "Directing", "job": "Director", "credit_id": "5330213bc3a3685fac006561", "profile_path": "/hQXmrbAyybOvEflrRX4uLAz9pIS.jpg", "id": 1216147}], "vote_average": 6.2, "runtime": 125}, "15092": {"poster_path": "/6WLcJkIwyycyUDDfZ5VWU1TcLwF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29953858, "overview": "Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.", "video": false, "id": 15092, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Crank: High Voltage", "tagline": "He was dead...But he got better", "vote_count": 298, "homepage": "http://www.crank2.com/", "belongs_to_collection": {"backdrop_path": "/nHq1qCXy4QKM1BaPG1PbWOcFEcg.jpg", "poster_path": "/wmUzRqcAi0KOW7sqnaAvEQtM8l.jpg", "id": 64751, "name": "Crank Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1121931", "adult": false, "backdrop_path": "/yr9ZWlNyR8Yz43q5gv2YZPt4Bbw.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Radical Media", "id": 11152}], "release_date": "2009-04-16", "popularity": 1.27808409419835, "original_title": "Crank: High Voltage", "budget": 20000000, "cast": [{"name": "Jason Statham", "character": "Chev Chelios", "id": 976, "credit_id": "52fe46389251416c7507132b", "cast_id": 1, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Amy Smart", "character": "Eve", "id": 20189, "credit_id": "52fe46389251416c7507132f", "cast_id": 2, "profile_path": "/gDIto4RCKHOSKfC0rSn8nxmThpN.jpg", "order": 1}, {"name": "Bai Ling", "character": "Ria", "id": 39126, "credit_id": "52fe46389251416c75071333", "cast_id": 3, "profile_path": "/bZUGN7PsOCWWVTvs6jZgNbq19uu.jpg", "order": 2}, {"name": "Corey Haim", "character": "Randy", "id": 17444, "credit_id": "52fe46389251416c75071337", "cast_id": 4, "profile_path": "/viodPG7i2x0cJHGVHRVs6C8pIrE.jpg", "order": 3}, {"name": "Dwight Yoakam", "character": "Doc Miles", "id": 20309, "credit_id": "52fe46389251416c7507133b", "cast_id": 5, "profile_path": "/xvhz9OakUlut7wWwH2s8ag5a7up.jpg", "order": 4}, {"name": "Glenn Howerton", "character": "Doctor", "id": 77870, "credit_id": "52fe46389251416c7507133f", "cast_id": 6, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 5}, {"name": "Jenna Haze", "character": "Pornstar on Strike", "id": 54725, "credit_id": "52fe46389251416c7507135b", "cast_id": 11, "profile_path": "/zhCjA1ldivu2yO7C6BwUowBd6bC.jpg", "order": 6}, {"name": "Efren Ramirez", "character": "Venus", "id": 20190, "credit_id": "52fe46389251416c7507135f", "cast_id": 12, "profile_path": "/6VqjTlLm469PDyNbATyqyuSvIw0.jpg", "order": 7}, {"name": "Julanne Chidi Hill", "character": "Dark Chocolate", "id": 168974, "credit_id": "52fe46389251416c75071363", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Jose Pablo Cantillo", "character": "Ricky Verona", "id": 20191, "credit_id": "52fe46389251416c75071367", "cast_id": 14, "profile_path": "/xYIoTIVroBdW7HoZzxvbsxjcau4.jpg", "order": 9}, {"name": "Reno Wilson", "character": "Orlando", "id": 117187, "credit_id": "52fe46389251416c7507136b", "cast_id": 15, "profile_path": "/xrxGdoGcF3p79NlWHEFvmj2eyx1.jpg", "order": 10}, {"name": "Keone Young", "character": "Don Kim", "id": 91387, "credit_id": "52fe46389251416c7507136f", "cast_id": 16, "profile_path": "/bzJWn4q0Vt6l5zZ33Q0dtB77g4S.jpg", "order": 11}, {"name": "Art Hsu", "character": "Johnny Vang", "id": 590820, "credit_id": "52fe46389251416c75071373", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Joseph Julian Soria", "character": "Chico", "id": 73127, "credit_id": "52fe46389251416c75071377", "cast_id": 18, "profile_path": "/q86EirhxSYY3RGtlR0tOXIBwFUx.jpg", "order": 13}, {"name": "Clifton Collins, Jr.", "character": "El Huron", "id": 5365, "credit_id": "52fe46389251416c7507137b", "cast_id": 19, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 14}, {"name": "David Carradine", "character": "Poon Dong", "id": 141, "credit_id": "52fe46389251416c7507137f", "cast_id": 20, "profile_path": "/wCvrY9PUKtN6NwkmLHWLJivCCov.jpg", "order": 15}, {"name": "Geri Halliwell", "character": "Karen Chelios", "id": 47987, "credit_id": "52fe46389251416c75071383", "cast_id": 21, "profile_path": "/thyQB6JVyengXacMX5iyi8kYt0q.jpg", "order": 16}, {"name": "Yeva-Genevieve Lavlinski", "character": "Pepper", "id": 1284345, "credit_id": "52fe46389251416c750713b1", "cast_id": 29, "profile_path": "/iEhikuzsKHQFTboBqXPMxS6a45.jpg", "order": 17}, {"name": "Nick Manning", "character": "Male Porn Star", "id": 132093, "credit_id": "54451b2e0e0a266333007d37", "cast_id": 30, "profile_path": "/tegkgXpY7BtzpFn29qpjOCrZTYU.jpg", "order": 18}], "directors": [{"name": "Mark Neveldine", "department": "Directing", "job": "Director", "credit_id": "52fe46389251416c75071345", "profile_path": null, "id": 20193}, {"name": "Brian Taylor", "department": "Directing", "job": "Director", "credit_id": "52fe46389251416c7507134b", "profile_path": null, "id": 20192}], "vote_average": 5.8, "runtime": 96}, "59860": {"poster_path": "/sXgh0TTEsJdK1Z390W6beu5tMNu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17425000, "overview": "Three young women vacationing in Paris find themselves whisked away to Monte Carlo after one of the girls is mistaken for a British heiress.", "video": false, "id": 59860, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Monte Carlo", "tagline": "", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1067774", "adult": false, "backdrop_path": "/6zud4RXjAEp23Hq1cfOiqDLg1Oy.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2011-07-01", "popularity": 0.516090226934509, "original_title": "Monte Carlo", "budget": 20000000, "cast": [{"name": "Selena Gomez", "character": "Grace", "id": 77948, "credit_id": "52fe499dc3a36847f81a3adb", "cast_id": 2, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Katie Cassidy", "character": "Emma", "id": 55775, "credit_id": "52fe499dc3a36847f81a3adf", "cast_id": 3, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 1}, {"name": "Cory Monteith", "character": "Owen", "id": 33352, "credit_id": "52fe499dc3a36847f81a3ae3", "cast_id": 4, "profile_path": "/oaz0CoWbU5h0rasU6MFdtqyIMzb.jpg", "order": 2}, {"name": "Leighton Meester", "character": "Meg", "id": 85825, "credit_id": "52fe499dc3a36847f81a3ae7", "cast_id": 5, "profile_path": "/v2HC3ok4JZoha6A0KtHzbiswj49.jpg", "order": 3}, {"name": "Andie MacDowell", "character": "", "id": 1533, "credit_id": "52fe499dc3a36847f81a3aeb", "cast_id": 6, "profile_path": "/b445v6iiaIfXAnzw5Hbk8imm1XS.jpg", "order": 4}], "directors": [{"name": "Thomas Bezucha", "department": "Directing", "job": "Director", "credit_id": "52fe499dc3a36847f81a3ad7", "profile_path": "/kEoJG7HI8RMGUr3ubRvgwfARzL0.jpg", "id": 56789}], "vote_average": 6.1, "runtime": 109}, "97020": {"poster_path": "/hFQcC5eSSHqJfk70RdgrMMxGuYt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 239379423, "overview": "In RoboCop, the year is 2028 and multinational conglomerate OmniCorp is at the center of robot technology. Overseas, their drones have been used by the military for years, but have been forbidden for law enforcement in America. Now OmniCorp wants to bring their controversial technology to the home front, and they see a golden opportunity to do it. When Alex Murphy (Joel Kinnaman) \u2013 a loving husband, father and good cop doing his best to stem the tide of crime and corruption in Detroit \u2013 is critically injured, OmniCorp sees their chance to build a part-man, part-robot police officer. OmniCorp envisions a RoboCop in every city and even more billions for their shareholders, but they never counted on one thing: there is still a man inside the machine.", "video": false, "id": 97020, "genres": [{"id": 878, "name": "Science Fiction"}], "title": "RoboCop", "tagline": "We've got the future under control.", "vote_count": 904, "homepage": "http://www.robocop.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1234721", "adult": false, "backdrop_path": "/zkBSu5jNI9YrAGvvy8cAAc7BZX5.jpg", "production_companies": [{"name": "Strike Entertainment", "id": 655}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2014-02-07", "popularity": 2.41085175501487, "original_title": "RoboCop", "budget": 120000000, "cast": [{"name": "Joel Kinnaman", "character": "RoboCop", "id": 92404, "credit_id": "52fe49cd9251416c750d3c55", "cast_id": 7, "profile_path": "/kn3AcrSxa0ApgQVcjQ8m6YsWVq.jpg", "order": 0}, {"name": "Gary Oldman", "character": "Norton", "id": 64, "credit_id": "52fe49cd9251416c750d3c59", "cast_id": 8, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 1}, {"name": "Michael Keaton", "character": "Raymond Sellars", "id": 2232, "credit_id": "52fe49cd9251416c750d3c5d", "cast_id": 9, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 2}, {"name": "Abbie Cornish", "character": "Ellen Murphy", "id": 37260, "credit_id": "52fe49cd9251416c750d3c69", "cast_id": 12, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 3}, {"name": "Jackie Earle Haley", "character": "Maddox", "id": 17183, "credit_id": "52fe49cd9251416c750d3c6d", "cast_id": 13, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 4}, {"name": "Michael Kenneth Williams", "character": "Jack Lewis", "id": 39390, "credit_id": "536d48a10e0a2647d800e2e8", "cast_id": 22, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 5}, {"name": "Jennifer Ehle", "character": "Liz Kline", "id": 49971, "credit_id": "52fe49cd9251416c750d3c71", "cast_id": 14, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 6}, {"name": "Jay Baruchel", "character": "Pope", "id": 449, "credit_id": "52fe49cd9251416c750d3c65", "cast_id": 11, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 7}, {"name": "Marianne Jean-Baptiste", "character": "Karen Dean", "id": 17352, "credit_id": "52fe49cd9251416c750d3c75", "cast_id": 15, "profile_path": "/rebllXb0X8assTqlePmPj1m8AQ4.jpg", "order": 8}, {"name": "Samuel L. Jackson", "character": "Pat Novak", "id": 2231, "credit_id": "52fe49cd9251416c750d3c61", "cast_id": 10, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 9}, {"name": "Aimee Garcia", "character": "Kim", "id": 56457, "credit_id": "52fe49cd9251416c750d3c95", "cast_id": 21, "profile_path": "/lkXrwXShVpGhSTxGunNwJkkO84l.jpg", "order": 10}, {"name": "Douglas Urbanski", "character": "Mayor Durant", "id": 113526, "credit_id": "536d48f00e0a2647c400e4ba", "cast_id": 23, "profile_path": "/pISbMb3NbOb6meKgl4GrKLp7hUo.jpg", "order": 11}, {"name": "John Paul Ruttan", "character": "David Murphy", "id": 1154244, "credit_id": "536d4a090e0a2647c800e723", "cast_id": 24, "profile_path": "/zt8R71Ec4WqHxLUNgVYfiJlXtbm.jpg", "order": 12}, {"name": "Patrick Garrow", "character": "Antoine Vallon", "id": 190961, "credit_id": "536d4b160e0a2647ce00dcd0", "cast_id": 25, "profile_path": "/4jcTiet490Nd6A3VvyAkt6oAWoi.jpg", "order": 13}, {"name": "K. C. Collins", "character": "Andre Daniels", "id": 74278, "credit_id": "536d6de4c3a368122600bc2b", "cast_id": 28, "profile_path": "/7GRgZGqTZ2e1j2FZLJWND75a4My.jpg", "order": 14}, {"name": "WBBrown II", "character": "AC Freeman", "id": 1096272, "credit_id": "52fe49cd9251416c750d3c79", "cast_id": 16, "profile_path": "/98Zav9HRIlYydLBnEgmNYchhC9a.jpg", "order": 15}], "directors": [{"name": "Jos\u00e9 Padilha", "department": "Directing", "job": "Director", "credit_id": "52fe49cd9251416c750d3c33", "profile_path": "/856kyjsiBGksnzpNHgxkkcd0TZr.jpg", "id": 52576}], "vote_average": 5.9, "runtime": 102}, "7978": {"poster_path": "/lKa0Bu8aKNJcEzxvRHM6BN3o5ml.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This werewolf-themed horror film set in Victorian England centers on Lawrence Talbot, an American man who, upon a visit to London, gets bitten by a werewolf. Talbot had come to England to make amends with his estranged father, but after a moonlight transformation leaves him with a savage hunger for flesh, family harmony is the least of his worries.", "video": false, "id": 7978, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Wolfman", "tagline": "When the moon is full the legend comes to life", "vote_count": 136, "homepage": "http://www.thewolfmanmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780653", "adult": false, "backdrop_path": "/kUXciLXDo2Igxw9PDPhXWIDkA5E.jpg", "production_companies": [{"name": "Stuber Productions", "id": 4403}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}], "release_date": "2010-02-11", "popularity": 0.320658229007024, "original_title": "The Wolfman", "budget": 150000000, "cast": [{"name": "Benicio del Toro", "character": "Lawrence Talbot", "id": 1121, "credit_id": "52fe448ac3a36847f809bd6d", "cast_id": 3, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 0}, {"name": "Anthony Hopkins", "character": "Sir John Talbot", "id": 4173, "credit_id": "52fe448ac3a36847f809bd69", "cast_id": 2, "profile_path": "/wSKCjkfZ90i9vbDwKf0mlvsgdCX.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Gwen Conliffe", "id": 5081, "credit_id": "52fe448ac3a36847f809bd83", "cast_id": 7, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "Hugo Weaving", "character": "Inspector Francis Abberline", "id": 1331, "credit_id": "52fe448ac3a36847f809bd87", "cast_id": 8, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 3}, {"name": "Cristina Contes", "character": "Solana Talbot", "id": 119684, "credit_id": "52fe448ac3a36847f809bd8b", "cast_id": 9, "profile_path": "/3UImAupAsNarYvOIXsbzTeQAsbU.jpg", "order": 4}, {"name": "David Sterne", "character": "Kirk", "id": 117654, "credit_id": "52fe448ac3a36847f809bd8f", "cast_id": 10, "profile_path": "/vZaOmbLpbh3rbDa3CGoj7cBkotI.jpg", "order": 5}, {"name": "Elizabeth Croft", "character": "Ophelia", "id": 119685, "credit_id": "52fe448ac3a36847f809bd9f", "cast_id": 13, "profile_path": "/4lV9DkzSJt55BGSe1M2XfBJn7cP.jpg", "order": 6}, {"name": "Simon Merrells", "character": "Ben Talbot", "id": 119687, "credit_id": "52fe448ac3a36847f809bda3", "cast_id": 15, "profile_path": "/xg2s7DU3IHzZ2egTmooRaIUTZGD.jpg", "order": 7}, {"name": "Art Malik", "character": "Singh", "id": 10672, "credit_id": "52fe448ac3a36847f809bda7", "cast_id": 16, "profile_path": "/dJ8isTdH4hLfQHDEJu7DQYdfeIz.jpg", "order": 8}, {"name": "Asa Butterfield", "character": "Young Ben", "id": 77996, "credit_id": "52fe448ac3a36847f809bdab", "cast_id": 18, "profile_path": "/zvaIeivqGmWgCtWusKmItMq3eeC.jpg", "order": 9}, {"name": "Geraldine Chaplin", "character": "Maleva", "id": 400, "credit_id": "52fe448ac3a36847f809bdaf", "cast_id": 19, "profile_path": "/x7N40x101QmzkNe9nrKWVKzT9n5.jpg", "order": 10}], "directors": [{"name": "Joe Johnston", "department": "Directing", "job": "Director", "credit_id": "52fe448ac3a36847f809bd65", "profile_path": "/dBLdJJo551G2WH0TPv6ze0FC1ei.jpg", "id": 4945}], "vote_average": 5.4, "runtime": 102}, "15121": {"poster_path": "/e06tZRg2xmqM3Q31x3Ln979dt0a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 163214286, "overview": "Rodgers and Hammerstein's The Sound of Music is a 1965 American musical film directed by Robert Wise and starring Julie Andrews and Christopher Plummer. The film is based on the Broadway musical The Sound of Music, with songs written by Richard Rodgers and Oscar Hammerstein II. It was photographed in 70mm Todd-AO by Ted D. McCord. It won a total of five Academy Awards including Best Picture in 1965 and is one of the most popular musicals ever produced. The cast album was nominated for a Grammy Award for Album of the Year. Adjusted for inflation, it made $1.046 billion domestically at 2010 prices, putting it third on the list of all-time inflation-adjusted box office hits, behind Gone with the Wind and Star Wars. The movie is based on a postulant nun, Maria, who leaves her Abbey to become a Governess to a retired Austrian Naval Captain and his 7 children.", "video": false, "id": 15121, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}, {"id": 10752, "name": "War"}], "title": "The Sound of Music", "tagline": "The happiest sound in all the world!", "vote_count": 346, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0059742", "adult": false, "backdrop_path": "/weiACHVZa0lQ10cd3BhJm9d8YUF.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "Robert Wise Productions", "id": 6304}, {"name": "Argyle Enterprises", "id": 6305}], "release_date": "1965-03-02", "popularity": 1.37048629822556, "original_title": "The Sound of Music", "budget": 8200000, "cast": [{"name": "Julie Andrews", "character": "Maria", "id": 5823, "credit_id": "52fe463b9251416c75071a4b", "cast_id": 1, "profile_path": "/aSJYNCyNmM1v6NPBfLcJ3noxkCE.jpg", "order": 0}, {"name": "Christopher Plummer", "character": "Captain Von Trapp", "id": 290, "credit_id": "52fe463b9251416c75071a4f", "cast_id": 2, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 1}, {"name": "Eleanor Parker", "character": "The Baroness", "id": 7331, "credit_id": "52fe463b9251416c75071a53", "cast_id": 3, "profile_path": "/pmauDYeIjoaGtZCy1PdY7lwXZ96.jpg", "order": 2}, {"name": "Richard Haydn", "character": "Max Detweiler", "id": 29283, "credit_id": "52fe463b9251416c75071a57", "cast_id": 4, "profile_path": "/fEUsWCS5Pd2pnarasaPIV9ksEst.jpg", "order": 3}, {"name": "Peggy Wood", "character": "Mother Abbess", "id": 77895, "credit_id": "52fe463b9251416c75071a5b", "cast_id": 5, "profile_path": "/o2DCNjwCeZEZeIFF4vGUNIQiwfz.jpg", "order": 4}, {"name": "Charmian Carr", "character": "Liesl", "id": 1041410, "credit_id": "52fe463c9251416c75071a7d", "cast_id": 11, "profile_path": "/1UJWpZE4Z7L0TJf8WDYTiB2jlS1.jpg", "order": 5}, {"name": "Anna Lee", "character": "Sister Margareta", "id": 88460, "credit_id": "52fe463c9251416c75071a81", "cast_id": 12, "profile_path": "/bOTG0vDCvANAMsGHlvJOYfBomEU.jpg", "order": 6}, {"name": "Portia Nelson", "character": "Sister Berthe", "id": 198948, "credit_id": "52fe463c9251416c75071a85", "cast_id": 13, "profile_path": "/fOhxKucuutEwKNZMvg00BuFUBsa.jpg", "order": 7}, {"name": "Heather Menzies", "character": "Louisa", "id": 92691, "credit_id": "52fe463c9251416c75071a9b", "cast_id": 17, "profile_path": "/sTBlteCkfkPL4gD3b5Vk2gH7FQ1.jpg", "order": 8}, {"name": "Nicholas Hammond", "character": "Friedrich", "id": 29095, "credit_id": "52fe463c9251416c75071a9f", "cast_id": 18, "profile_path": "/u7PRHFksaCypSKGIaEjk0Q3lYwN.jpg", "order": 9}, {"name": "Duane Chase", "character": "Kurt", "id": 1243355, "credit_id": "52fe463c9251416c75071acb", "cast_id": 32, "profile_path": "/qKAjYwI0zRP0V1vxXSfOCABK81R.jpg", "order": 10}, {"name": "Angela Cartwright", "character": "Brigitta", "id": 121640, "credit_id": "52fe463c9251416c75071aa3", "cast_id": 20, "profile_path": "/ngoU570GKnzVuq21RKdGDYq8itE.jpg", "order": 11}, {"name": "Debbie Turner", "character": "Marta", "id": 1198142, "credit_id": "52fe463c9251416c75071aa7", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Kym Kareth", "character": "Gretl", "id": 1194314, "credit_id": "52fe463c9251416c75071aab", "cast_id": 22, "profile_path": "/oTKlyl4Agb8HYYbvEiX1S40xj6X.jpg", "order": 13}, {"name": "Ben Wright", "character": "Herr Zeller", "id": 71781, "credit_id": "52fe463c9251416c75071aaf", "cast_id": 23, "profile_path": "/tZNIdYR7rtzhj0aBOafrU4XmhQ2.jpg", "order": 14}, {"name": "Norma Varden", "character": "Frau Schmidt", "id": 10926, "credit_id": "52fe463c9251416c75071ab3", "cast_id": 24, "profile_path": "/2Ypt67es6XciWAyihkcG2MSjUzT.jpg", "order": 15}, {"name": "Marni Nixon", "character": "Sister Sophia", "id": 187678, "credit_id": "52fe463c9251416c75071ab7", "cast_id": 27, "profile_path": "/hPWlkETSB5V7OQkixZic3QDxmwq.jpg", "order": 16}, {"name": "Evadne Baker", "character": "Sister Bernice", "id": 1198143, "credit_id": "52fe463c9251416c75071abb", "cast_id": 28, "profile_path": null, "order": 17}, {"name": "Doris Lloyd", "character": "Baroness Ebberfield", "id": 21878, "credit_id": "52fe463c9251416c75071abf", "cast_id": 29, "profile_path": "/4QJ0iSrOQ9rwfgEaDnqTaXem6c5.jpg", "order": 18}, {"name": "Gilchrist Stuart", "character": "Franz", "id": 1198144, "credit_id": "52fe463c9251416c75071ac3", "cast_id": 30, "profile_path": null, "order": 19}, {"name": "Daniel Truhitte", "character": "Rolfe", "id": 1016770, "credit_id": "52fe463c9251416c75071ac7", "cast_id": 31, "profile_path": "/16AcEJbuwTPdlS4xWWffXKgNNv0.jpg", "order": 20}], "directors": [{"name": "Robert Wise", "department": "Directing", "job": "Director", "credit_id": "52fe463b9251416c75071a61", "profile_path": "/6EPkRgYsDMQOYmE9s1vZt2O470R.jpg", "id": 1744}], "vote_average": 7.0, "runtime": 174}, "9348": {"poster_path": "/94P6kzKH8aPmQmPr9yZjgy7BtQQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.", "video": false, "id": 9348, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Species", "tagline": "Our time is up.", "vote_count": 94, "homepage": "", "belongs_to_collection": {"backdrop_path": "/vnpcoCTZhg1EdEog1kAS0pklx1o.jpg", "poster_path": "/ksrne0PBm57edJZtvDv7fYM8lVW.jpg", "id": 9887, "name": "Species Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0114508", "adult": false, "backdrop_path": "/fVXXpHfyTl7Ovk2R2gVyvHj2c4t.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}], "release_date": "1995-07-07", "popularity": 0.931837152165992, "original_title": "Species", "budget": 35000000, "cast": [{"name": "Natasha Henstridge", "character": "Sil", "id": 57395, "credit_id": "52fe44ebc3a36847f80b1d41", "cast_id": 5, "profile_path": "/z0gm11WfolcmUUGDsTusUZsR60Y.jpg", "order": 0}, {"name": "Ben Kingsley", "character": "Xavier Fitch", "id": 2282, "credit_id": "52fe44ebc3a36847f80b1d31", "cast_id": 1, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 1}, {"name": "Michael Madsen", "character": "Preston Lennox", "id": 147, "credit_id": "52fe44ebc3a36847f80b1d35", "cast_id": 2, "profile_path": "/yPvagJYARJb0JAeAbCFdcXcaPs2.jpg", "order": 2}, {"name": "Alfred Molina", "character": "Dr. Stephen Arden", "id": 658, "credit_id": "52fe44ebc3a36847f80b1d39", "cast_id": 3, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 3}, {"name": "Forest Whitaker", "character": "Dan Smithson, Empath", "id": 2178, "credit_id": "52fe44ebc3a36847f80b1d3d", "cast_id": 4, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 4}, {"name": "Michelle Williams", "character": "Young Sil", "id": 1812, "credit_id": "52fe44ebc3a36847f80b1d45", "cast_id": 6, "profile_path": "/zUvxAK66dVIOMH7M0yZWGkkwZGL.jpg", "order": 5}, {"name": "Marg Helgenberger", "character": "Dr. Laura Baker", "id": 19838, "credit_id": "52fe44ebc3a36847f80b1d79", "cast_id": 16, "profile_path": "/9jIgVEJGZkfjQI1bItxFIaNN3b3.jpg", "order": 6}, {"name": "Jordan Lund", "character": "Aide", "id": 33713, "credit_id": "52fe44ebc3a36847f80b1d7d", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Herta Ware", "character": "Mrs. Morris", "id": 136482, "credit_id": "52fe44ebc3a36847f80b1d81", "cast_id": 18, "profile_path": null, "order": 8}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe44ebc3a36847f80b1d6f", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.5, "runtime": 108}, "97051": {"poster_path": "/pzTQXGzj8XrGQVunHe50pQpcCY4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Desperate to help her ailing brother, a young woman agrees to compete in a deadly game of \"Would You Rather,\" hosted by a sadistic aristocrat.", "video": false, "id": 97051, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Would You Rather", "tagline": "Tell yourself it's just a game.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1999995", "adult": false, "backdrop_path": "/6x2WjNkHTOPuRs7bKbtYjk8qsG8.jpg", "production_companies": [{"name": "Periscope Entertainment", "id": 4917}, {"name": "Social Construct", "id": 20319}, {"name": "Dreamher Productions", "id": 23857}, {"name": "Lambrick Foundation, The", "id": 23858}], "release_date": "2012-10-14", "popularity": 0.203901299876479, "original_title": "Would You Rather", "budget": 0, "cast": [{"name": "Brittany Snow", "character": "Iris", "id": 29221, "credit_id": "52fe49cf9251416c750d4143", "cast_id": 4, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 0}, {"name": "Jeffrey Combs", "character": "Shepard Lambrick", "id": 27993, "credit_id": "52fe49cf9251416c750d4133", "cast_id": 1, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 1}, {"name": "Jonny Coyne", "character": "Bevans", "id": 1323612, "credit_id": "53805f2b0e0a26588c002bee", "cast_id": 20, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 2}, {"name": "Sasha Grey", "character": "Amy", "id": 74251, "credit_id": "52fe49cf9251416c750d416f", "cast_id": 18, "profile_path": "/yuDlbdjZgxxSmeqQlj0Ru0zK2Sl.jpg", "order": 3}, {"name": "Lawrence Gilliard Jr.", "character": "Dr. Barden", "id": 37947, "credit_id": "52fe49cf9251416c750d416b", "cast_id": 17, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 4}, {"name": "Enver Gjokaj", "character": "Lucas", "id": 1224022, "credit_id": "52fe49cf9251416c750d4173", "cast_id": 19, "profile_path": "/xatmqOREk6e051ZgaO4VSv4HCnr.jpg", "order": 5}, {"name": "John Heard", "character": "Conway", "id": 11512, "credit_id": "52fe49cf9251416c750d414b", "cast_id": 9, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 6}, {"name": "Charlie Hofheimer", "character": "Travis", "id": 12790, "credit_id": "52fe49cf9251416c750d414f", "cast_id": 10, "profile_path": "/gXQkqXYrlAGJgXRPpOwEv0NjSgT.jpg", "order": 7}, {"name": "Eddie Steeples", "character": "Cal", "id": 202958, "credit_id": "52fe49cf9251416c750d415b", "cast_id": 13, "profile_path": "/eerNYpn8kZbG9Z4nHjo24JwxyDP.jpg", "order": 8}, {"name": "June Squibb", "character": "Linda", "id": 35515, "credit_id": "52fe49cf9251416c750d4157", "cast_id": 12, "profile_path": "/2QDE0wZ9B9a4Kd2S4e9XP65agrf.jpg", "order": 9}, {"name": "Robin Lord Taylor", "character": "Julian (as Robin Lord Taylor)", "id": 59262, "credit_id": "52fe49cf9251416c750d415f", "cast_id": 14, "profile_path": "/du7DRDeJpLHXr0vPHnynZ6BTD9V.jpg", "order": 10}, {"name": "Robb Wells", "character": "Peter", "id": 60966, "credit_id": "52fe49cf9251416c750d4163", "cast_id": 15, "profile_path": "/dMnez0ZRY63FP8LHhG2M9iFLqhM.jpg", "order": 11}, {"name": "Logan Miller", "character": "Raleigh", "id": 116088, "credit_id": "52fe49cf9251416c750d4153", "cast_id": 11, "profile_path": "/4KGktClGusmqFr1b193Fair5rlK.jpg", "order": 12}, {"name": "Larry Cedar", "character": "The Driver", "id": 94304, "credit_id": "52fe49cf9251416c750d4167", "cast_id": 16, "profile_path": "/m4WnOfVhUEX82QtFHZU4qwwuflg.jpg", "order": 13}, {"name": "Ptolemy Slocum", "character": "Shift Manager", "id": 207453, "credit_id": "538060920e0a2624c00075e7", "cast_id": 21, "profile_path": "/gdqpZq8VSETKF1a1GqeWfuMp8cv.jpg", "order": 14}], "directors": [{"name": "David Guy Levy", "department": "Directing", "job": "Director", "credit_id": "52fe49cf9251416c750d4139", "profile_path": null, "id": 543842}], "vote_average": 5.8, "runtime": 93}, "244509": {"poster_path": "/1d5Loksk4nzmLyBtdHwody6sMUj.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "How can a split-second decision change your life? While investigating noises in his house one balmy Texas night in 1989, Richard Dane puts a bullet in the brain of low-life burglar Freddy Russell. Although he\u2019s hailed as a small-town hero, Dane soon finds himself fearing for his family\u2019s safety when Freddy\u2019s ex-con father, Ben, rolls into town, hell-bent on revenge.", "video": false, "id": 244509, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Cold in July", "tagline": "How many men can one bullet kill?", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179031", "adult": false, "backdrop_path": "/bT6neJ41gV1ZY8xlrsYxsh8OWJu.jpg", "production_companies": [{"name": "Bullet Pictures", "id": 36956}, {"name": "Backup Media", "id": 26590}, {"name": "Paradise City", "id": 28360}, {"name": "BSM Studio", "id": 28361}], "release_date": "2014-05-23", "popularity": 1.11124563543801, "original_title": "Cold in July", "budget": 0, "cast": [{"name": "Michael C. Hall", "character": "Richard Dane", "id": 53820, "credit_id": "52fe4ef3c3a36847f82b2beb", "cast_id": 7, "profile_path": "/nJipub3fTadJnrBrDYXZhWNN3O0.jpg", "order": 0}, {"name": "Don Johnson", "character": "Jim Bob", "id": 25129, "credit_id": "52fe4ef3c3a36847f82b2bef", "cast_id": 8, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 1}, {"name": "Sam Shepard", "character": "Russell", "id": 9880, "credit_id": "52fe4ef3c3a36847f82b2bf3", "cast_id": 9, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 2}, {"name": "Vinessa Shaw", "character": "Ann Dane", "id": 5025, "credit_id": "52fe4ef3c3a36847f82b2bf7", "cast_id": 10, "profile_path": "/jMEm0tSVH3ZSqj5iXrHUhz9oLpu.jpg", "order": 3}, {"name": "Nick Damici", "character": "Ray Price", "id": 67580, "credit_id": "52fe4ef3c3a36847f82b2bfb", "cast_id": 11, "profile_path": "/vkZ2H5vLITyVyl4OkYe4r8cBMrS.jpg", "order": 4}, {"name": "Wyatt Russell", "character": "Freddy", "id": 986808, "credit_id": "52fe4ef3c3a36847f82b2bff", "cast_id": 12, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 5}, {"name": "Lanny Flaherty", "character": "Jack Crow", "id": 3204, "credit_id": "543024fb0e0a26464c000acb", "cast_id": 19, "profile_path": "/tu6UZVHRKRNLbtmHUsjHWHctprz.jpg", "order": 6}, {"name": "Brianda Agramonte", "character": "la jeune fille latine sur la cassette", "id": 1370971, "credit_id": "5430259ec3a36831a9000ae7", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Tim Lajcik", "character": "Mex", "id": 89344, "credit_id": "5430264b0e0a26463d000b6f", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Brogan Hall", "character": "Jordan Dane", "id": 1370972, "credit_id": "5430268bc3a36831bb000b10", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Ken Holmes", "character": "un voleur", "id": 1118347, "credit_id": "543027c30e0a26464f000b90", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Rachel Zeiger-Haag", "character": "Valerie", "id": 1370983, "credit_id": "54302802c3a36831bb000b46", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Kristin Griffith", "character": "Kay", "id": 164343, "credit_id": "543028830e0a26464f000bb2", "cast_id": 25, "profile_path": "/dRQh5YUXcCVVCxTRKaIjWbKT2qo.jpg", "order": 12}, {"name": "Laurent Rejto", "character": "Perp", "id": 1084956, "credit_id": "543029230e0a26464c000b3f", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Joe Lanza", "character": "un officier", "id": 1370985, "credit_id": "5430296ec3a36831a9000b54", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Kris Eivers", "character": "un inspecteur", "id": 122250, "credit_id": "543029d50e0a264640000bff", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Happy Anderson", "character": "Ted", "id": 1370986, "credit_id": "54302a2e0e0a264646000bfe", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Joseph Anthony Jerez", "character": "l'homme gros", "id": 1370987, "credit_id": "5430311cc3a36831a9000c5e", "cast_id": 30, "profile_path": null, "order": 17}], "directors": [{"name": "Jim Mickle", "department": "Directing", "job": "Director", "credit_id": "52fe4ef2c3a36847f82b2bc9", "profile_path": null, "id": 87082}], "vote_average": 6.6, "runtime": 109}, "154400": {"poster_path": "/lj8AMCjWx0jU93XajzUEOUUNKZF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18658381, "overview": "Bob Saginowski finds himself at the center of a robbery gone awry and entwined in an investigation that digs deep into the neighborhood's past where friends, families, and foes all work together to make a living - no matter the cost.", "video": false, "id": 154400, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Drop", "tagline": "", "vote_count": 224, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1600196", "adult": false, "backdrop_path": "/zddiDFf3X97pCimAOGKh3m0PwJV.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Chernin Entertainment", "id": 7076}], "release_date": "2014-09-12", "popularity": 4.13970837607002, "original_title": "The Drop", "budget": 12600000, "cast": [{"name": "Tom Hardy", "character": "Bob", "id": 2524, "credit_id": "52fe4b5f9251416c910d855b", "cast_id": 1, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Nadia", "id": 87722, "credit_id": "52fe4b5f9251416c910d855f", "cast_id": 2, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "James Gandolfini", "character": "Cousin Marv", "id": 4691, "credit_id": "52fe4b5f9251416c910d8563", "cast_id": 3, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 2}, {"name": "Matthias Schoenaerts", "character": "Eric Deeds", "id": 73381, "credit_id": "52fe4b5f9251416c910d8567", "cast_id": 4, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 3}, {"name": "John Ortiz", "character": "Detective Torres", "id": 40543, "credit_id": "52fe4b5f9251416c910d856b", "cast_id": 5, "profile_path": "/eLAPF96eGKcnpV837CciBiFsI7C.jpg", "order": 4}, {"name": "Ann Dowd", "character": "Dottie", "id": 43366, "credit_id": "52fe4b5f9251416c910d856f", "cast_id": 6, "profile_path": "/jOQzwDvGuFuPnzsVOKNBIF4Un5g.jpg", "order": 5}, {"name": "James Frecheville", "character": "Fitz", "id": 968863, "credit_id": "52fe4b5f9251416c910d8573", "cast_id": 7, "profile_path": "/fdm3sOJgXVgM1yo7a5GF53mVi7I.jpg", "order": 6}, {"name": "Michael Aronov", "character": "Chovka", "id": 126686, "credit_id": "54a1e1bdc3a36851ce004425", "cast_id": 14, "profile_path": "/anTDhvjmQDVnicNsAEooAKDNjBm.jpg", "order": 8}, {"name": "Morgan Spector", "character": "Andre", "id": 937913, "credit_id": "54a1e1c99251411d53008014", "cast_id": 15, "profile_path": "/idWtVvI0GBcpdSNBcHp2JYxOGxi.jpg", "order": 9}, {"name": "Michael Esper", "character": "Rardy", "id": 6183, "credit_id": "54a1e1d6c3a3680b2700bc4d", "cast_id": 16, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 10}, {"name": "Ross Bickell", "character": "Father Regan", "id": 67784, "credit_id": "54a1e1ea9251412127004712", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Tobias Segal", "character": "Briele", "id": 187919, "credit_id": "54a1e1f89251414d2700852c", "cast_id": 18, "profile_path": "/kn1zn5VdjhRWcanQgSWPFs8dolE.jpg", "order": 12}, {"name": "Patricia Squire", "character": "Millie", "id": 1405915, "credit_id": "54a1e204c3a3680b2700bc58", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Chris Sullivan", "character": "Jimmy", "id": 1091347, "credit_id": "54a1e2199251414d27008531", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Lucas Caleb Rooney", "character": "Paul", "id": 112264, "credit_id": "54a1e224c3a3680b2700bc5d", "cast_id": 21, "profile_path": "/5xBBRy2tU8e4WeMxkeYEaTqflb5.jpg", "order": 15}, {"name": "Jeremy Bobb", "character": "Stevie", "id": 74961, "credit_id": "54a1e230c3a3680b2700bc60", "cast_id": 22, "profile_path": "/fhrfN6vEVwIRcuNRGhwxHlOvEif.jpg", "order": 16}, {"name": "James Colby", "character": "Sully", "id": 115975, "credit_id": "54a1e23c925141313200d521", "cast_id": 23, "profile_path": "/ys2yWvjfLJAKBQ8vZ0G3T49Y18H.jpg", "order": 17}, {"name": "Mike Houston", "character": "Donny", "id": 205128, "credit_id": "54a1e2479251411d53008017", "cast_id": 24, "profile_path": "/nqdMHdfOQuRvwzRAuHtgPKIAMwS.jpg", "order": 18}, {"name": "Michael O'Hara", "character": "Sean", "id": 1433546, "credit_id": "54f2dbec9251416b380038a1", "cast_id": 36, "profile_path": null, "order": 19}, {"name": "Scott Johnsen", "character": "Car Guy", "id": 1375162, "credit_id": "54a1e25fc3a368764f00a040", "cast_id": 26, "profile_path": "/10wpICE5Pyvy02Ensq74ZQ9a2c6.jpg", "order": 20}, {"name": "Elizabeth Rodriguez", "character": "Detective Romsey", "id": 65421, "credit_id": "550e0d7ec3a3683f390002c9", "cast_id": 37, "profile_path": "/lwJXQ7DDRY9W4pdzQzJKdeKuCFl.jpg", "order": 21}], "directors": [{"name": "Micha\u00ebl R. Roskam", "department": "Directing", "job": "Director", "credit_id": "53fd98850e0a262de200150f", "profile_path": "/3BJ6YRmntYmuSqAJNwwVPHTJNN5.jpg", "id": 236859}], "vote_average": 6.6, "runtime": 106}, "15137": {"poster_path": "/uCIKdMLppi4MjPFnxQWT2GA8W5r.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 18, "overview": "After the Second Impact, Tokyo-3 is being attacked by giant creatures called Angels that seek to eradicate humankind. The child Shinji's objective is to fight the Angels by piloting one of the mysterious Evangelion mecha units. A remake of the first six episodes of GAINAX's famous 1996 anime series.", "video": false, "id": 15137, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Evangelion: 1.0: You Are (Not) Alone", "tagline": "", "vote_count": 55, "homepage": "http://www.funimation.com/evangelion/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/wTgffGYEuvYDc0oSOMdSZ254VMr.jpg", "id": 210303, "name": "Rebuild of Evangelion"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0923811", "adult": false, "backdrop_path": "/ufqKwX5bz2jXfPf6WGw7fAnuhoE.jpg", "production_companies": [{"name": "Studio Khara", "id": 4145}], "release_date": "2007-09-01", "popularity": 0.350305879805061, "original_title": "Evangerion shin gekij\u00f4ban: Jo", "budget": 0, "cast": [{"name": "Megumi Ogata", "character": "Shinji Ikari", "id": 77927, "credit_id": "52fe463d9251416c75071cb7", "cast_id": 4, "profile_path": "/cPGrKRfVzfyhfoLlxGTGUd62bSp.jpg", "order": 0}, {"name": "Megumi Hayashibara", "character": "Rei Ayanami", "id": 40325, "credit_id": "52fe463d9251416c75071cbb", "cast_id": 5, "profile_path": "/aYeXdOAsEh2xItISYDefJfvcdA.jpg", "order": 1}, {"name": "Kotono Mitsuishi", "character": "Misato Katsuragi", "id": 77931, "credit_id": "52fe463d9251416c75071cbf", "cast_id": 6, "profile_path": "/5yISpyXWjRlbfvPebO3iLc2s3tF.jpg", "order": 2}, {"name": "Yuriko Yamaguchi", "character": "Ritsuko Akagi", "id": 77933, "credit_id": "52fe463d9251416c75071cc3", "cast_id": 7, "profile_path": null, "order": 3}, {"name": "Fumihiko Tachiki", "character": "Gendo Ikari", "id": 77934, "credit_id": "52fe463d9251416c75071cc7", "cast_id": 8, "profile_path": null, "order": 4}], "directors": [{"name": "Kazuya Tsurumaki", "department": "Directing", "job": "Director", "credit_id": "52fe463d9251416c75071cad", "profile_path": null, "id": 77923}, {"name": "Masayuki", "department": "Directing", "job": "Director", "credit_id": "52fe463d9251416c75071cb3", "profile_path": null, "id": 77926}], "vote_average": 7.1, "runtime": 97}, "6947": {"poster_path": "/8Jr4C1bLEerDxP7NBssmO8VUek.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 256697520, "overview": "When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever in this atmospheric thriller featuring a star-studded cast.", "video": false, "id": 6947, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Village", "tagline": "There is no turning back", "vote_count": 188, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0368447", "adult": false, "backdrop_path": "/sWypV7T6AXwmpoSEGrmPkkSsAo0.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2004-07-26", "popularity": 0.689034631993119, "original_title": "The Village", "budget": 71682975, "cast": [{"name": "Bryce Dallas Howard", "character": "Ivy Walker", "id": 18997, "credit_id": "52fe4469c3a36847f8094821", "cast_id": 3, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Lucius Hunt", "id": 73421, "credit_id": "52fe4469c3a36847f8094825", "cast_id": 4, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "Adrien Brody", "character": "Noah Percy", "id": 3490, "credit_id": "52fe4469c3a36847f8094829", "cast_id": 5, "profile_path": "/zvMslH1C8xmEBpGgDsdzL797Rv.jpg", "order": 2}, {"name": "William Hurt", "character": "Edward Walker", "id": 227, "credit_id": "52fe4469c3a36847f809482d", "cast_id": 6, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Sigourney Weaver", "character": "Alice Hunt", "id": 10205, "credit_id": "52fe4469c3a36847f8094831", "cast_id": 7, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 4}, {"name": "Brendan Gleeson", "character": "August Nicholson", "id": 2039, "credit_id": "52fe4469c3a36847f8094835", "cast_id": 8, "profile_path": "/pUTBk2sqFgg4aFBXHckD0qKLUYP.jpg", "order": 5}, {"name": "Cherry Jones", "character": "Mrs. Clack", "id": 1956, "credit_id": "52fe4469c3a36847f8094839", "cast_id": 9, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 6}, {"name": "Celia Weston", "character": "Vivian Percy", "id": 1989, "credit_id": "52fe4469c3a36847f809483d", "cast_id": 10, "profile_path": "/s1PvoXw5lfVCeqpBpjOwKnc51LJ.jpg", "order": 7}, {"name": "John Christopher Jones", "character": "Robert Percy", "id": 51532, "credit_id": "52fe4469c3a36847f8094841", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Frank Collison", "character": "Victor", "id": 1479, "credit_id": "52fe4469c3a36847f8094845", "cast_id": 12, "profile_path": "/mrFWmvxe72WwrjyYOZXtNpJLLfQ.jpg", "order": 9}, {"name": "Jayne Atkinson", "character": "Tabitha Walker", "id": 18261, "credit_id": "52fe4469c3a36847f8094849", "cast_id": 13, "profile_path": "/Ae4wkn9x4JABoFWlNtdABYv2uol.jpg", "order": 10}, {"name": "Judy Greer", "character": "Kitty Walker", "id": 20750, "credit_id": "52fe4469c3a36847f809484d", "cast_id": 14, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 11}, {"name": "Fran Kranz", "character": "Christop Crane", "id": 51533, "credit_id": "52fe4469c3a36847f8094851", "cast_id": 15, "profile_path": "/rcd82G7YYnJNhA9Vz0bMOmM4dAK.jpg", "order": 12}, {"name": "Jesse Eisenberg", "character": "Jamison", "id": 44735, "credit_id": "52fe4469c3a36847f809487f", "cast_id": 23, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 13}, {"name": "Michael Pitt", "character": "Finton Coin", "id": 10692, "credit_id": "52fe4469c3a36847f8094883", "cast_id": 24, "profile_path": "/e0UbPlJX4zC205Dfvi7w4ubGR5.jpg", "order": 14}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe4469c3a36847f8094817", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 6.1, "runtime": 108}, "6950": {"poster_path": "/yuQ75cmuGLBqpub7EVO1H1FXdBn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 189859560, "overview": "A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House.", "video": false, "id": 6950, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Outbreak", "tagline": "This animal carries a deadly virus... and the greatest medical crisis in the world is about to happen.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt0114069", "adult": false, "backdrop_path": "/wrlZRyyOnD24KQzo3OVi4lWyqdF.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "1995-03-10", "popularity": 1.06807283296562, "original_title": "Outbreak", "budget": 0, "cast": [{"name": "Dustin Hoffman", "character": "Sam Daniels", "id": 4483, "credit_id": "52fe4469c3a36847f80949b5", "cast_id": 1, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 0}, {"name": "Rene Russo", "character": "Robby Keough", "id": 14343, "credit_id": "52fe4469c3a36847f80949b9", "cast_id": 2, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 1}, {"name": "Morgan Freeman", "character": "Billy Ford", "id": 192, "credit_id": "52fe4469c3a36847f80949bd", "cast_id": 3, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 2}, {"name": "Kevin Spacey", "character": "Casey Schuler", "id": 1979, "credit_id": "52fe446ac3a36847f80949c1", "cast_id": 4, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 3}, {"name": "Cuba Gooding Jr.", "character": "Salt", "id": 9777, "credit_id": "52fe446ac3a36847f80949c5", "cast_id": 5, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 4}, {"name": "Donald Sutherland", "character": "Donald McClintock", "id": 55636, "credit_id": "52fe446ac3a36847f80949c9", "cast_id": 6, "profile_path": "/tPLVaPjxEscGPKS3ieByloa8Mqj.jpg", "order": 5}, {"name": "Patrick Dempsey", "character": "Jimbo Scott", "id": 18352, "credit_id": "52fe446ac3a36847f80949cd", "cast_id": 7, "profile_path": "/7knZb76iYnIDf3r7YcJahEC7HbI.jpg", "order": 6}, {"name": "Benito Martinez", "character": "Dr. Julio Ruiz", "id": 2137, "credit_id": "52fe446ac3a36847f80949e3", "cast_id": 11, "profile_path": "/6cMiGYgjFFYY8sWITXiE0SrEnt8.jpg", "order": 7}, {"name": "Malick Bowens", "character": "Dr. Raswani", "id": 10649, "credit_id": "52fe446ac3a36847f80949e7", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Zakes Mokae", "character": "Dr. Benjamin Iwabi", "id": 47458, "credit_id": "52fe446ac3a36847f80949eb", "cast_id": 13, "profile_path": "/sxzqrmSm7Kd7eSHzos7UeiT0mke.jpg", "order": 9}, {"name": "Bruce Jarchow", "character": "Dr. Mascelli", "id": 53005, "credit_id": "52fe446ac3a36847f80949ef", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Dale Dye", "character": "Lt. Col. Briggs", "id": 3211, "credit_id": "52fe446ac3a36847f80949f3", "cast_id": 15, "profile_path": "/hsY9fG3RdFVosJaGh20wyztpe35.jpg", "order": 11}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a36847f80949d3", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 5.9, "runtime": 127}, "6951": {"poster_path": "/oSvaWdWISYCIySdg2TUOHTTapkS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 71079915, "overview": "Scott Turner has 3 days left in the local police department before he moves to a bigger city to get some \"real\" cases, not just misdemeanors. Then Amos Reed is murdered, and Scott Turner sets himself on the case. The closest thing to a witness in the case is Amos Reed's dog, Hooch, which Scott Turner has to take care of if it's going to avoid being \"put to sleep\".", "video": false, "id": 6951, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "Turner & Hooch", "tagline": "The Oddest Couple Ever Unleashed!", "vote_count": 72, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0098536", "adult": false, "backdrop_path": "/3AQ7BNf15GYoNTa9ZXlhK9oxnng.jpg", "production_companies": [{"name": "Silver Screen Partners III", "id": 554}, {"name": "Touchstone Pictures", "id": 9195}], "release_date": "1989-07-28", "popularity": 0.258375415296007, "original_title": "Turner & Hooch", "budget": 0, "cast": [{"name": "Tom Hanks", "character": "Scott Turner", "id": 31, "credit_id": "52fe446ac3a36847f8094a57", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 0}, {"name": "Mare Winningham", "character": "Emily Carson", "id": 51544, "credit_id": "52fe446ac3a36847f8094a5b", "cast_id": 2, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 1}, {"name": "Craig T. Nelson", "character": "Howard Hyde", "id": 8977, "credit_id": "52fe446ac3a36847f8094a5f", "cast_id": 3, "profile_path": "/mhKSd2uLhNX7TahlNhwJgDYMRwN.jpg", "order": 2}, {"name": "Scott Paulin", "character": "Zack Gregory", "id": 48810, "credit_id": "52fe446ac3a36847f8094a93", "cast_id": 12, "profile_path": "/hXCaNiAPOuV16eLEWfnPmNHBX2L.jpg", "order": 3}, {"name": "John McIntire", "character": "Amos Reed", "id": 53010, "credit_id": "52fe446ac3a36847f8094a97", "cast_id": 13, "profile_path": "/mqg5Cs6d6FCXlkR0ntUZfmR4As6.jpg", "order": 4}, {"name": "David Knell", "character": "Ernie", "id": 41253, "credit_id": "52fe446ac3a36847f8094a9b", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Reginald VelJohnson", "character": "Det. David Sutton", "id": 7672, "credit_id": "52fe446ac3a36847f8094a9f", "cast_id": 15, "profile_path": "/dZtIIOI0PpD3dmTVfUOWiQzOY28.jpg", "order": 6}, {"name": "Mary McCusker", "character": "Katie", "id": 53011, "credit_id": "52fe446ac3a36847f8094aa3", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Linda Eve Miller", "character": "Mrs. Pine", "id": 203022, "credit_id": "52fe446ac3a36847f8094aad", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Andrew Walker", "character": "Police Officer", "id": 207667, "credit_id": "5339e0d79251417d9e004e1f", "cast_id": 22, "profile_path": null, "order": 9}], "directors": [{"name": "Roger Spottiswoode", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a36847f8094a65", "profile_path": "/hH8tIBh0RI7VwI4jQgphtB0qABR.jpg", "id": 1724}], "vote_average": 5.9, "runtime": 97}, "15144": {"poster_path": "/rzTrRQg5ek47Yl0Vfenc69r9gOd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Samantha's life is going downhill fast. She has a crush on the most popular boy in school, but the geekiest boy in school has a crush on her. Her sister's getting married, and with all the excitement the rest of her family forgets her sixteenth birthday!", "video": false, "id": 15144, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Sixteen Candles", "tagline": "When you're just sixteen anything can happen!", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0088128", "adult": false, "backdrop_path": "/if7IlmJHgi5Oo6SObOshWn1ZlOP.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}], "release_date": "1984-05-04", "popularity": 0.443907651592328, "original_title": "Sixteen Candles", "budget": 0, "cast": [{"name": "Molly Ringwald", "character": "Samantha Baker", "id": 21625, "credit_id": "52fe463d9251416c75071eab", "cast_id": 1, "profile_path": "/8uxFmjvkIAlNGXOdgWyMy6jkCnd.jpg", "order": 0}, {"name": "Anthony Michael Hall", "character": "The Geek", "id": 1904, "credit_id": "52fe463d9251416c75071eaf", "cast_id": 2, "profile_path": "/ui3mCBPiNiDlYvhztJ0F1onSB4j.jpg", "order": 1}, {"name": "John Cusack", "character": "Bryce", "id": 3036, "credit_id": "52fe463d9251416c75071eb3", "cast_id": 3, "profile_path": "/p12tX1pGsPQNeggsXBpyXKIBUGx.jpg", "order": 2}, {"name": "Gedde Watanabe", "character": "Long Duk Dong", "id": 16183, "credit_id": "52fe463d9251416c75071ebd", "cast_id": 6, "profile_path": "/nyTEOm2sEMJONOp3oWFKUZuJNTv.jpg", "order": 3}, {"name": "Michael Schoeffling", "character": "Jake Ryan", "id": 140777, "credit_id": "52fe463d9251416c75071ec1", "cast_id": 7, "profile_path": "/oljZUaJspbVhoVovMMdn7jKep8q.jpg", "order": 4}, {"name": "Paul Dooley", "character": "Jim Baker", "id": 15900, "credit_id": "52fe463d9251416c75071ec5", "cast_id": 8, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 5}, {"name": "Billie Bird", "character": "Dorthy Baker", "id": 140778, "credit_id": "52fe463e9251416c75071ec9", "cast_id": 9, "profile_path": "/jJzRnD39UAvbU1ihaXMRcPZN9Xq.jpg", "order": 6}, {"name": "Carole Cook", "character": "Grandma Helen", "id": 41730, "credit_id": "52fe463e9251416c75071ecd", "cast_id": 11, "profile_path": "/nqOpt2uNlPgFsRx9FTJ0p1SIYFe.jpg", "order": 8}, {"name": "Max Showalter", "character": "Grandpa Fred", "id": 85409, "credit_id": "52fe463e9251416c75071ed1", "cast_id": 12, "profile_path": "/xwxc6tyDORQqvw6KoYD51H9IyD3.jpg", "order": 9}, {"name": "Justin Henry", "character": "Mike Baker", "id": 71241, "credit_id": "52fe463e9251416c75071ed5", "cast_id": 13, "profile_path": "/s7Lu0NXISdK2kYpUN2KIZvIQXkR.jpg", "order": 10}, {"name": "Haviland Morris", "character": "Caroline Mulford", "id": 16181, "credit_id": "52fe463e9251416c75071ed9", "cast_id": 14, "profile_path": "/4lFaYG2lyob69bFXBZJ1GdkZjwj.jpg", "order": 11}, {"name": "Blanche Baker", "character": "Ginny Baker", "id": 21525, "credit_id": "52fe463e9251416c75071ee3", "cast_id": 16, "profile_path": "/gj4w0bcSYcycKx28Yff38oXFKKc.jpg", "order": 12}, {"name": "Joan Cusack", "character": "Geek Girl #1", "id": 3234, "credit_id": "52fe463e9251416c75071ee7", "cast_id": 17, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 13}, {"name": "Zelda Rubinstein", "character": "Organist", "id": 10091, "credit_id": "52fe463e9251416c75071eeb", "cast_id": 18, "profile_path": "/mYW44c9DYrt9xARj0I3HWjwZCLn.jpg", "order": 14}, {"name": "Edward Andrews", "character": "Howard Baker", "id": 29719, "credit_id": "52fe463e9251416c75071eef", "cast_id": 19, "profile_path": "/8tbeVNxs6puN3GiyOmoq70IchLb.jpg", "order": 15}, {"name": "Liane Curtis", "character": "Randy", "id": 157054, "credit_id": "54a879dcc3a3680c21002b3a", "cast_id": 20, "profile_path": "/zOdmZINjH8J7Cfn3C9dy12nuw4.jpg", "order": 16}, {"name": "Jami Gertz", "character": "Robin", "id": 9995, "credit_id": "54a87a51c3a3680c2900293a", "cast_id": 21, "profile_path": "/gqmX3nFtx1pFfuXoR0QR608eWT2.jpg", "order": 17}, {"name": "Brian Doyle-Murray", "character": "Reverend", "id": 1535, "credit_id": "54a87a79c3a3680c1c00282e", "cast_id": 22, "profile_path": "/fRLFXdb8UQvJs4euZ2sE6CpjbXn.jpg", "order": 18}], "directors": [{"name": "John Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe463d9251416c75071eb9", "profile_path": "/94s7xNr8qVz136TI76TlMPNby8L.jpg", "id": 11505}], "vote_average": 6.7, "runtime": 93}, "6957": {"poster_path": "/wAKUo12pRBGyFJQV27LFJoTvMU5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 109449237, "overview": "Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.", "video": false, "id": 6957, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The 40 Year Old Virgin", "tagline": "The longer you wait, the harder it gets.", "vote_count": 497, "homepage": "http://www.universalstudiosentertainment.com/the-40-year-old-virgin/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0405422", "adult": false, "backdrop_path": "/rjDrnIzQGR7A3fik2RlLesVo4NY.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Apatow Productions", "id": 10105}], "release_date": "2005-08-11", "popularity": 1.48346399599829, "original_title": "The 40 Year Old Virgin", "budget": 26000000, "cast": [{"name": "Steve Carell", "character": "Andy Stitzer", "id": 4495, "credit_id": "52fe446ac3a36847f8094c2b", "cast_id": 1, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 0}, {"name": "Catherine Keener", "character": "Trish", "id": 2229, "credit_id": "52fe446ac3a36847f8094c2f", "cast_id": 2, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 1}, {"name": "Paul Rudd", "character": "David", "id": 22226, "credit_id": "52fe446ac3a36847f8094c33", "cast_id": 3, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 2}, {"name": "Romany Malco", "character": "Jay", "id": 71530, "credit_id": "52fe446ac3a36847f8094c37", "cast_id": 4, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 3}, {"name": "Seth Rogen", "character": "Cal", "id": 19274, "credit_id": "52fe446ac3a36847f8094c5f", "cast_id": 11, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 4}, {"name": "Jane Lynch", "character": "Paula", "id": 43775, "credit_id": "52fe446ac3a36847f8094c63", "cast_id": 12, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 5}, {"name": "Leslie Mann", "character": "Nicky", "id": 41087, "credit_id": "52fe446ac3a36847f8094c67", "cast_id": 13, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 6}, {"name": "Elizabeth Banks", "character": "Beth", "id": 9281, "credit_id": "52fe446ac3a36847f8094c6b", "cast_id": 14, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 7}, {"name": "Stormy Daniels", "character": "Porn Star", "id": 99803, "credit_id": "52fe446ac3a36847f8094c6f", "cast_id": 15, "profile_path": "/nYBTZ7yDDvmLZMGYauoe5lbFhIg.jpg", "order": 8}, {"name": "Kat Dennings", "character": "Marla", "id": 52852, "credit_id": "52fe446ac3a36847f8094c73", "cast_id": 16, "profile_path": "/vqEZLXJof3W7zYh1apTWr5sRBCP.jpg", "order": 9}, {"name": "Jonah Hill", "character": "Shop Customer", "id": 21007, "credit_id": "52fe446ac3a36847f8094c77", "cast_id": 17, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 10}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a36847f8094c3d", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 6.1, "runtime": 116}, "146223": {"poster_path": "/dFMktkaCqd5D2lDouzvpXfwd94h.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5733310, "overview": "A terrorist attack in London results in the capture of suspect Farroukh Erdogan (Denis Moschitto). The attorney general appoints Claudia Simmons-Howe (Rebecca Hall) as special advocate on Erdogan's legal team. On the eve of the trial, Erdogan's lawyer dies, and a new defense attorney, Martin Rose (Eric Bana), steps in. Martin and Claudia are former lovers, a fact which must remain hidden. As Martin assembles his case, he uncovers a sinister conspiracy, placing him and Claudia in danger.", "video": false, "id": 146223, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Closed Circuit", "tagline": "They see your every move", "vote_count": 62, "homepage": "http://www.focusfeatures.com/closed_circuit", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2218003", "adult": false, "backdrop_path": "/y3zMDdYfgEbqs2p0dHNkvS5HGgk.jpg", "production_companies": [{"name": "Focus Features", "id": 10146}, {"name": "Working Title Films", "id": 10163}], "release_date": "2013-08-28", "popularity": 0.818268546614946, "original_title": "Closed Circuit", "budget": 0, "cast": [{"name": "Eric Bana", "character": "Martin Rose", "id": 8783, "credit_id": "52fe4b789251416c75103d65", "cast_id": 20, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Rebecca Hall", "character": "Claudia Simmons-Howe", "id": 15556, "credit_id": "52fe4b789251416c75103d11", "cast_id": 2, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 1}, {"name": "Ciar\u00e1n Hinds", "character": "Devlin", "id": 8785, "credit_id": "52fe4b789251416c75103d69", "cast_id": 21, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 2}, {"name": "Jim Broadbent", "character": "Attorney General", "id": 388, "credit_id": "52fe4b789251416c75103d6d", "cast_id": 22, "profile_path": "/atBa5ONgpQtbiXCIZrlNOKEFgA5.jpg", "order": 3}, {"name": "Kenneth Cranham", "character": "Cameron Fischer", "id": 26258, "credit_id": "52fe4b789251416c75103d29", "cast_id": 9, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 4}, {"name": "Isaac Hempstead Wright", "character": "Tom Rose", "id": 239020, "credit_id": "53769ffac3a368554a000281", "cast_id": 23, "profile_path": "/qF1Ca4aNDkpSGQt9Q7qfpRbwNOk.jpg", "order": 5}, {"name": "Julia Stiles", "character": "Joanna Reece", "id": 12041, "credit_id": "5376a0990e0a261425000382", "cast_id": 24, "profile_path": "/wqFYU1IS1xhn4yBjlkXt9LwFYr0.jpg", "order": 6}, {"name": "Anne-Marie Duff", "character": "Melissa", "id": 37058, "credit_id": "5376a0c40e0a261422000371", "cast_id": 25, "profile_path": "/oSHNwLcaVledYycyhmXX0mqqXQF.jpg", "order": 7}, {"name": "Riz Ahmed", "character": "Nazrul Sharma", "id": 53240, "credit_id": "5376a12a0e0a2614310003d7", "cast_id": 27, "profile_path": "/u74E6LqKnLKrsfGdZ8oEGDfUdqL.jpg", "order": 8}, {"name": "Jemma Powell", "character": "Elizabeth", "id": 282628, "credit_id": "5376a1070e0a261425000392", "cast_id": 26, "profile_path": "/hnvxKYa1JFztBf4h0laEwcxoA7F.jpg", "order": 9}, {"name": "Kate Lock", "character": "Mother", "id": 962885, "credit_id": "52fe4b789251416c75103d21", "cast_id": 7, "profile_path": null, "order": 10}, {"name": "Katherine Press", "character": "Pregnant Daughter", "id": 1202386, "credit_id": "52fe4b789251416c75103d25", "cast_id": 8, "profile_path": null, "order": 11}, {"name": "Patrick Warner", "character": "Young Man on Cellphone", "id": 1209911, "credit_id": "52fe4b789251416c75103d5d", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Ricky Nixon", "character": "Fish Trader", "id": 178625, "credit_id": "52fe4b789251416c75103d61", "cast_id": 19, "profile_path": null, "order": 13}], "directors": [{"name": "John Crowley", "department": "Directing", "job": "Director", "credit_id": "52fe4b789251416c75103d17", "profile_path": "/breF41bB4NuPrWfppQcUzuJeiWh.jpg", "id": 77269}], "vote_average": 5.6, "runtime": 96}, "15152": {"poster_path": "/9s12p1lRWbOyXpLh2NJSxNlhUrn.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Secret agent OSS 117 foils Nazis, beds local beauties, and brings peace to the Middle East.", "video": false, "id": 15152, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "OSS 117: Cairo, Nest of Spies", "tagline": "", "vote_count": 71, "homepage": "http://www.oss117.fr/accueil.htm", "belongs_to_collection": {"backdrop_path": "/tWFDaP55PdguD0VfgYTWZ3NyfoK.jpg", "poster_path": "/bCrDUHGcncm51H21AyEyBN13W4t.jpg", "id": 91588, "name": "OSS 117 Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0464913", "adult": false, "backdrop_path": "/lLULF5WVANFtzxq3QdJAnhRIDzP.jpg", "production_companies": [{"name": "Artemis Film", "id": 1521}], "release_date": "2006-04-05", "popularity": 0.606529923094888, "original_title": "OSS 117 : Le Caire, nid d'espions", "budget": 0, "cast": [{"name": "Jean Dujardin", "character": "Hubert Bonisseur de La Bath, alias OSS 117", "id": 56024, "credit_id": "52fe463e9251416c75072099", "cast_id": 1, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 0}, {"name": "B\u00e9r\u00e9nice Bejo", "character": "Larmina El Akmar Betouche", "id": 82923, "credit_id": "52fe463e9251416c7507209d", "cast_id": 2, "profile_path": "/lczQWfdK8GrdcUKc6TkSD96Sr3r.jpg", "order": 1}, {"name": "Aure Atika", "character": "La princesse Al Tarouk", "id": 19116, "credit_id": "52fe463e9251416c750720a1", "cast_id": 3, "profile_path": "/b74jwDYzlCxteiFTBJ9GlmU4qVX.jpg", "order": 2}, {"name": "Philippe Lefebvre", "character": "Jack Jefferson", "id": 66839, "credit_id": "52fe463e9251416c750720a5", "cast_id": 4, "profile_path": "/3OgeaSSNSQCWliABQcQoq2NrwvC.jpg", "order": 3}, {"name": "Constantin Alexandrov", "character": "Setine", "id": 82924, "credit_id": "52fe463e9251416c750720a9", "cast_id": 5, "profile_path": "/jnolrqmf30NS6dZbSGmhIKpgmzs.jpg", "order": 4}, {"name": "Sa\u00efd Amadis", "character": "Le ministre \u00e9gyptien", "id": 25083, "credit_id": "52fe463e9251416c750720ad", "cast_id": 6, "profile_path": "/4aIDHg39uexNfeJefAeAHMzQjrZ.jpg", "order": 5}, {"name": "Laurent Bateau", "character": "Gardenborough", "id": 78479, "credit_id": "52fe463e9251416c750720b1", "cast_id": 7, "profile_path": "/2zrgonxMwGTMTivBUlHs6MzCMZD.jpg", "order": 6}, {"name": "Claude Brosset", "character": "Le patron", "id": 25076, "credit_id": "52fe463e9251416c750720b5", "cast_id": 8, "profile_path": "/oRYurJPdcaWogp9YXmGx8MUN0bw.jpg", "order": 7}, {"name": "Fran\u00e7ois Damiens", "character": "Raymond Pelletier", "id": 24041, "credit_id": "52fe463e9251416c750720b9", "cast_id": 9, "profile_path": "/6dFouLZKPpUS5kxecZKO1kY5nL3.jpg", "order": 8}, {"name": "Youssef Hamid", "character": "L'imam", "id": 17899, "credit_id": "52fe463e9251416c750720bd", "cast_id": 10, "profile_path": "/jD2oFxZC8Tw1GWJOB8Qbo3gSPdv.jpg", "order": 9}, {"name": "Khalid Maadour", "character": "Le suiveur", "id": 82925, "credit_id": "52fe463e9251416c750720c1", "cast_id": 11, "profile_path": "/8Wg1nvtzl2jVceWpr9BqbzBogxa.jpg", "order": 10}, {"name": "Ars\u00e8ne Mosca", "character": "Loktar", "id": 82926, "credit_id": "52fe463e9251416c750720c5", "cast_id": 12, "profile_path": "/sGB2TdgKDu7X6j74r5dXFkrTvES.jpg", "order": 11}, {"name": "Abdellah Moundy", "character": "Slimane", "id": 82927, "credit_id": "52fe463e9251416c750720c9", "cast_id": 13, "profile_path": "/ajof4U2l2jQ6yvPUSLP6dsJUSJ3.jpg", "order": 12}, {"name": "Eric Prat", "character": "Plantieux", "id": 49748, "credit_id": "52fe463e9251416c750720cd", "cast_id": 14, "profile_path": "/l7I4H9nVkGKoJJDGm4VIEKOIVot.jpg", "order": 13}, {"name": "Richard Sammel", "character": "Moeller", "id": 49487, "credit_id": "52fe463f9251416c750720d1", "cast_id": 15, "profile_path": "/fa1eHH0Tg7CugDg9qIsxTsF2STX.jpg", "order": 14}], "directors": [{"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe463f9251416c750720d7", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}], "vote_average": 7.2, "runtime": 99}, "132232": {"poster_path": "/8yy5nw7SD4VZMZIlebS96HDpp2g.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "ES", "name": "Spain"}], "revenue": 146497771, "overview": "Guillermo del Toro presents Mama, a supernatural thriller that tells the haunting tale of two little girls who disappeared into the woods the day that their parents were killed. When they are rescued years later and begin a new life, they find that someone or something still wants to come tuck them in at night.", "video": false, "id": 132232, "genres": [{"id": 27, "name": "Horror"}], "title": "Mama", "tagline": "A Mother's Love is Forever", "vote_count": 558, "homepage": "http://www.mamamovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2023587", "adult": false, "backdrop_path": "/l3QG6qJECcyOsP3yAmHtvp4XZCv.jpg", "production_companies": [{"name": "Toma 78", "id": 10677}, {"name": "De Milo", "id": 10678}, {"name": "Universal Pictures", "id": 33}], "release_date": "2013-01-18", "popularity": 1.13287156975673, "original_title": "Mama", "budget": 15000000, "cast": [{"name": "Jessica Chastain", "character": "Annabel", "id": 83002, "credit_id": "52fe4b8cc3a368484e18e703", "cast_id": 1, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 0}, {"name": "Nikolaj Coster-Waldau", "character": "Lucas", "id": 12795, "credit_id": "52fe4b8cc3a368484e18e707", "cast_id": 2, "profile_path": "/7FGmv5Hrknmsnpxbox2V4GG2xdx.jpg", "order": 1}, {"name": "Megan Charpentier", "character": "Victoria", "id": 223126, "credit_id": "52fe4b8cc3a368484e18e70b", "cast_id": 3, "profile_path": "/WNe7mkDzSQl2uRhvQlqiXLBp66.jpg", "order": 2}, {"name": "Isabelle N\u00e9lisse", "character": "Lilly", "id": 1094759, "credit_id": "52fe4b8cc3a368484e18e70f", "cast_id": 4, "profile_path": "/gkWNefDoAFgruXKAgdozVg9ONHd.jpg", "order": 3}, {"name": "Daniel Kash", "character": "Dr. Dreyfuss", "id": 10210, "credit_id": "52fe4b8cc3a368484e18e713", "cast_id": 5, "profile_path": "/b6lvtpkTRHHcv4YMW3FnGRtyXJ4.jpg", "order": 4}, {"name": "Melina Matthews", "character": "Mama (voice)", "id": 1289925, "credit_id": "54990b33c3a36826f6000411", "cast_id": 21, "profile_path": null, "order": 5}], "directors": [{"name": "Andr\u00e9s Muschietti", "department": "Directing", "job": "Director", "credit_id": "52fe4b8cc3a368484e18e743", "profile_path": null, "id": 1113116}], "vote_average": 6.0, "runtime": 100}, "6963": {"poster_path": "/g36DKoIbvdhSpngVel9U8rAO3el.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 12482775, "overview": "A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.", "video": false, "id": 6963, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Weather Man", "tagline": "Dave Spritz is about to take his best shot . . . at life", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0384680", "adult": false, "backdrop_path": "/2CviKS5DKi64jixx3V5ag1XJ8dQ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}], "release_date": "2005-10-20", "popularity": 0.395573841057746, "original_title": "The Weather Man", "budget": 20000000, "cast": [{"name": "Nicolas Cage", "character": "David Spritz", "id": 2963, "credit_id": "52fe446bc3a36847f8094f59", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Michael Caine", "character": "Robert Spritzel", "id": 3895, "credit_id": "52fe446bc3a36847f8094f5d", "cast_id": 4, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Hope Davis", "character": "Noreen", "id": 15250, "credit_id": "52fe446bc3a36847f8094f61", "cast_id": 5, "profile_path": "/m1RBUwfxms0o4PAOaHYaGT0DpAj.jpg", "order": 2}, {"name": "Gemmenne de la Pe\u00f1a", "character": "Shelly", "id": 51609, "credit_id": "52fe446bc3a36847f8094f65", "cast_id": 6, "profile_path": "/ii2qoCx7dVa7hpG3M0cZRhMaAI0.jpg", "order": 3}, {"name": "Nicholas Hoult", "character": "Mike", "id": 3292, "credit_id": "52fe446bc3a36847f8094f69", "cast_id": 7, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 4}, {"name": "Michael Rispoli", "character": "Russ", "id": 18313, "credit_id": "52fe446bc3a36847f8094f6d", "cast_id": 8, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 5}, {"name": "Gil Bellows", "character": "Don", "id": 6575, "credit_id": "52fe446bc3a36847f8094f71", "cast_id": 9, "profile_path": "/f5An5NqejnTEflFmW7Vp18zVOvJ.jpg", "order": 6}, {"name": "Judith McConnell", "character": "Lauren", "id": 51610, "credit_id": "52fe446bc3a36847f8094f75", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Chris Marrs", "character": "Guy", "id": 51611, "credit_id": "52fe446bc3a36847f8094f79", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Bryant Gumbel", "character": "Himself", "id": 1223819, "credit_id": "54fd9cfac3a36869fb0071f6", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Ed McMahon", "character": "Himself", "id": 112884, "credit_id": "54fd9d059251416c3200101d", "cast_id": 21, "profile_path": "/AL5XqZZZ1O19xtWPoQMI1DaqhX.jpg", "order": 10}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a36847f8094f4f", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.0, "runtime": 101}, "6964": {"poster_path": "/q1DO4rwTGz1VSX2sEqqboPwsXUF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 266728738, "overview": "Harry Sanborn is an aged music industry exec with a fondness for younger women like Marin, his latest trophy girlfriend. Things get a little awkward when Harry suffers a heart attack at the home of Marin's mother Erica. Left in the care of Erica and his doctor, a love triangle starts to take shape.", "video": false, "id": 6964, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Something's Gotta Give", "tagline": "Schmucks are people too.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0337741", "adult": false, "backdrop_path": "/3QdaSf5akgTo2qWHMftvA7nq0qu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Columbia Pictures Corporation", "id": 441}, {"name": "Waverly Films", "id": 735}], "release_date": "2003-12-12", "popularity": 0.478708349168995, "original_title": "Something's Gotta Give", "budget": 80000000, "cast": [{"name": "Jack Nicholson", "character": "Harry Sanborn", "id": 514, "credit_id": "52fe446bc3a36847f8094fc7", "cast_id": 1, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Diane Keaton", "character": "Erica Barry", "id": 3092, "credit_id": "52fe446bc3a36847f8094fcb", "cast_id": 2, "profile_path": "/fzgUMnbOkxC6E3EFcYHWHFaiKyp.jpg", "order": 1}, {"name": "Keanu Reeves", "character": "Julian Mercer", "id": 6384, "credit_id": "52fe446bc3a36847f8094fcf", "cast_id": 3, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 2}, {"name": "Frances McDormand", "character": "Zoe", "id": 3910, "credit_id": "52fe446bc3a36847f8094fd3", "cast_id": 4, "profile_path": "/jodV4NuQAvxQWIHxqnop1jUX77N.jpg", "order": 3}, {"name": "Amanda Peet", "character": "Marin", "id": 2956, "credit_id": "52fe446bc3a36847f8094fd7", "cast_id": 5, "profile_path": "/wISLW1GYpXqTzqYZP4CfoK2drQs.jpg", "order": 4}, {"name": "Jon Favreau", "character": "Leo", "id": 15277, "credit_id": "52fe446bc3a36847f8094fe7", "cast_id": 8, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 5}, {"name": "Paul Michael Glaser", "character": "Dave", "id": 12988, "credit_id": "52fe446bc3a36847f8094feb", "cast_id": 9, "profile_path": "/yc39Cj9ZmaEnrKZIRnYLPAdDyCK.jpg", "order": 6}, {"name": "Rachel Ticotin", "character": "Dr. Martinez", "id": 10768, "credit_id": "52fe446bc3a36847f8094fef", "cast_id": 10, "profile_path": "/eauJo24G6HSHnJcuTSZvP4gX2uN.jpg", "order": 7}], "directors": [{"name": "Nancy Meyers", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a36847f8094fdd", "profile_path": "/5KfVpyOCzdEGqo8mtcnowxmZQJI.jpg", "id": 17698}], "vote_average": 5.8, "runtime": 128}, "15157": {"poster_path": "/fLdCKCfHT8A6bnWybBsQFjC4fCo.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A guy who danced with what could be the girl of his dreams at a costume ball only has one hint at her identity: the Zune she left behind as she rushed home in order to make her curfew. And with a once-in-a-lifetime opportunity in front of him, he sets out to find his masked beauty.", "video": false, "id": 15157, "genres": [{"id": 10402, "name": "Music"}], "title": "Another Cinderella Story", "tagline": "Once upon a time....can happen again.", "vote_count": 60, "homepage": "http://anothercinderellastory.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/c9RAmtGUgoa7ljS6MHLqZPBEyTx.jpg", "poster_path": "/34X6jwkjrvrtZiH6kNBhEaN2NcF.jpg", "id": 178799, "name": "A Cinderella Story Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1071358", "adult": false, "backdrop_path": "/dIBCsGWAACJMNoZrBE3ZspdJK4J.jpg", "production_companies": [{"name": "Warner Premiere", "id": 4811}, {"name": "CS2 Films", "id": 8806}, {"name": "Dylan Sellers Productions", "id": 8807}], "release_date": "2008-09-16", "popularity": 0.596273036363683, "original_title": "Another Cinderella Story", "budget": 5000000, "cast": [{"name": "Selena Gomez", "character": "Mary Santiago", "id": 77948, "credit_id": "52fe463f9251416c750721a3", "cast_id": 1, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 0}, {"name": "Jane Lynch", "character": "Dominique Blatt", "id": 43775, "credit_id": "52fe463f9251416c750721bf", "cast_id": 7, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 1}, {"name": "Katharine Isabelle", "character": "Bree", "id": 27136, "credit_id": "52fe463f9251416c750721c3", "cast_id": 8, "profile_path": "/8XnsEr2CHi1HHnach14oXcUImSL.jpg", "order": 2}, {"name": "Emily Perkins", "character": "Britt", "id": 64914, "credit_id": "52fe463f9251416c750721c7", "cast_id": 9, "profile_path": "/z9XbUJ83nKoHjvdvbzrQFrQVx7R.jpg", "order": 3}, {"name": "Jessica Parker Kennedy", "character": "Tami", "id": 211540, "credit_id": "52fe463f9251416c750721dd", "cast_id": 13, "profile_path": "/s6F7jEHFfTZjSDr6yVURqIokT91.jpg", "order": 4}, {"name": "Nicole LaPlaca", "character": "Natalia Faroush", "id": 175234, "credit_id": "52fe463f9251416c750721e1", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Marcus T. Paulk", "character": "Dustin", "id": 60038, "credit_id": "548c392892514122ed001885", "cast_id": 16, "profile_path": "/vYbpojpt8wQweXoGjYSG5gIHpGD.jpg", "order": 7}, {"name": "Stuart Cowan", "character": "Debate Team Dude", "id": 930508, "credit_id": "548c395692514122fc0017e5", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Giacomo Baessato", "character": "Football Jock", "id": 33049, "credit_id": "548c396a92514122ed00188d", "cast_id": 19, "profile_path": "/67zoEItDFyl0YdPJNOevUxc5SPq.jpg", "order": 10}, {"name": "Maija Tailfeathers", "character": "Amazonian Model Girl", "id": 1398489, "credit_id": "548c397ec3a36820be0014b7", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Donald Adams", "character": "Teacher", "id": 233227, "credit_id": "548c398e92514122ff001682", "cast_id": 21, "profile_path": "/tyn9BCHeqfhWttmBdi0yjSdegE8.jpg", "order": 12}, {"name": "Jagoda Janik", "character": "Goth Girl", "id": 1398491, "credit_id": "548c39a192514122ed0018a2", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Laura Carswell", "character": "Moon-eyed Cheerleader", "id": 1088068, "credit_id": "548c39b492514122ff00168a", "cast_id": 23, "profile_path": "/fTnsiGN4Ls5K0vj9FqaLc5RNy0A.jpg", "order": 14}, {"name": "Alex Zahara", "character": "British Director", "id": 62919, "credit_id": "55168f299251413eaf001038", "cast_id": 24, "profile_path": "/7nL163KHo0LpGlzndjNfKVrwpkZ.jpg", "order": 15}, {"name": "Drew Seeley", "character": "Joey Parker", "id": 92619, "credit_id": "55244dc89251415c7c009d59", "cast_id": 25, "profile_path": "/3KUn2RzvBXIyiLw6Ad4fCKwLRHi.jpg", "order": 16}], "directors": [{"name": "Damon Santostefano", "department": "Directing", "job": "Director", "credit_id": "52fe463f9251416c750721af", "profile_path": null, "id": 66039}], "vote_average": 6.1, "runtime": 90}, "228150": {"poster_path": "/il9XWx5CbNd2KdDUwrcClEZiLkv.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Last months of World War II in April 1945. As the Allies make their final push in the European Theater, a battle-hardened U.S. Army sergeant in the 2nd Armored Division named Wardaddy commands a Sherman tank called \"Fury\" and its five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.", "video": false, "id": 228150, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Fury", "tagline": "War never ends quietly.", "vote_count": 901, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2713180", "adult": false, "backdrop_path": "/pKawqrtCBMmxarft7o1LbEynys7.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "QED International", "id": 11029}, {"name": "Crave Films", "id": 16312}, {"name": "LStar Capital", "id": 34034}, {"name": "Huayi Brothers Media", "id": 39649}, {"name": "Le Grisbi Productions", "id": 47169}], "release_date": "2014-10-17", "popularity": 8.18406457967029, "original_title": "Fury", "budget": 80000000, "cast": [{"name": "Brad Pitt", "character": "Don 'Wardaddy' Collier", "id": 287, "credit_id": "52fe4ec09251416c7516126f", "cast_id": 1, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Shia LaBeouf", "character": "Boyd 'Bible' Swan", "id": 10959, "credit_id": "52fe4ec09251416c75161273", "cast_id": 2, "profile_path": "/anP0tygzniIok6L3OxcSZ9TYCF3.jpg", "order": 1}, {"name": "Logan Lerman", "character": "Norman Ellison", "id": 33235, "credit_id": "52fe4ec09251416c75161277", "cast_id": 3, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 2}, {"name": "Michael Pe\u00f1a", "character": "Trini 'Gordo' Garcia", "id": 454, "credit_id": "53a8da4b0e0a261439006bc8", "cast_id": 9, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 3}, {"name": "Jon Bernthal", "character": "Grady 'Coon-Ass' Travis", "id": 19498, "credit_id": "52fe4ec09251416c7516127b", "cast_id": 4, "profile_path": "/hFpuhH1RGX9g1c2ZkUsog6yyYwa.jpg", "order": 4}, {"name": "Jim Parrack", "character": "Sergeant Binkowski", "id": 83968, "credit_id": "5477f4d9c3a3685f910032a0", "cast_id": 15, "profile_path": "/7ATHioOgrx9og5WO3d0AWnQu4Uo.jpg", "order": 5}, {"name": "Brad William Henke", "character": "Sergeant Davis", "id": 15376, "credit_id": "5477f4e9c3a3685873000e99", "cast_id": 17, "profile_path": "/mrczPKKtc6a2AuVAdjqLLTnWhh5.jpg", "order": 6}, {"name": "Kevin Vance", "character": "Sergeant Peterson", "id": 1345133, "credit_id": "5477f4f992514160e30082bb", "cast_id": 18, "profile_path": "/tS7SsfqYiODwobJItpzrykMKDiD.jpg", "order": 7}, {"name": "Xavier Samuel", "character": "Lt. Parker", "id": 109438, "credit_id": "5341bb9f0e0a2679b1002790", "cast_id": 8, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 8}, {"name": "Jason Isaacs", "character": "Captain Waggoner", "id": 11355, "credit_id": "5477f516c3a368530f0017b8", "cast_id": 19, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 9}, {"name": "Anamaria Marinca", "character": "Irma", "id": 20699, "credit_id": "5477f524c3a3685f910032b0", "cast_id": 20, "profile_path": "/ajLN2RMuYHgTEFAzs8x8vZH0Rlu.jpg", "order": 10}, {"name": "Alicia von Rittberg", "character": "Emma", "id": 572648, "credit_id": "5477f531c3a3685f910032bb", "cast_id": 21, "profile_path": "/wX98jY8BavEkGMSjf9563METMWA.jpg", "order": 11}, {"name": "Scott Eastwood", "character": "Sergeant Miles", "id": 928572, "credit_id": "52fe4ec09251416c7516127f", "cast_id": 5, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 12}, {"name": "Eugenia Kuzmina", "character": "Hilda Meier", "id": 1333845, "credit_id": "53a8dab9c3a368749500573f", "cast_id": 10, "profile_path": "/5TpGe5oRdZ7pt9Rzrjjjt9THL9E.jpg", "order": 14}, {"name": "Adam Ganne", "character": "SS Lieutenant", "id": 1430505, "credit_id": "54eb0369c3a36836ea0066b3", "cast_id": 108, "profile_path": null, "order": 15}, {"name": "Marek Oravec", "character": "SS Officer", "id": 219473, "credit_id": "54eb038fc3a3681002000ec0", "cast_id": 109, "profile_path": null, "order": 16}, {"name": "Zach Avery", "character": "SS Medic (uncredited)", "id": 1412094, "credit_id": "54f791929251416ee4002584", "cast_id": 112, "profile_path": null, "order": 17}], "directors": [{"name": "David Ayer", "department": "Directing", "job": "Director", "credit_id": "52fe4ec09251416c75161289", "profile_path": "/xocQcb37QEKElPKaPGvJDMEup39.jpg", "id": 19769}], "vote_average": 7.5, "runtime": 135}, "15159": {"poster_path": "/bVGiumWel8Lixi87SXqlDIGwjqQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75871032, "overview": "When legendary treasures from around the world are stolen, including the priceless Pink Panther Diamond, Chief Inspector Dreyfus is forced to assign Inspector Clouseau to a team of international detectives and experts charged with catching the thief and retrieving the stolen artifacts.", "video": false, "id": 15159, "genres": [{"id": 35, "name": "Comedy"}, {"id": 9648, "name": "Mystery"}], "title": "The Pink Panther 2", "tagline": "Inspect the unexpected.", "vote_count": 79, "homepage": "http://www.sonypictures.com/movies/thepinkpanther2/", "belongs_to_collection": {"backdrop_path": "/tuE4QPHLHaMUkAW4Yggig5U92rl.jpg", "poster_path": "/xYbMC6vo4rMIX8hkTUZva86r0i5.jpg", "id": 130440, "name": "The Pink Panther Collection (Steve Martin Series)"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0838232", "adult": false, "backdrop_path": "/yrPoJR97AiOB1db0LscrYpH0t7j.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Columbia Pictures", "id": 5}, {"name": "Robert Simonds Productions", "id": 3929}], "release_date": "2009-02-06", "popularity": 1.78522062357296, "original_title": "The Pink Panther 2", "budget": 0, "cast": [{"name": "Steve Martin", "character": "Inspecteur Jacques Clouseau", "id": 67773, "credit_id": "52fe463f9251416c7507228b", "cast_id": 7, "profile_path": "/8Weyf4wJdKqmWLVN7L3jLw4qf5.jpg", "order": 0}, {"name": "Jean Reno", "character": "Ponton", "id": 1003, "credit_id": "52fe463f9251416c7507228f", "cast_id": 8, "profile_path": "/cdsN5efCYGQWlPrj7vFlZRBTR16.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Nicole", "id": 1246, "credit_id": "52fe463f9251416c75072293", "cast_id": 9, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Andy Garc\u00eda", "character": "Vicenzo", "id": 1271, "credit_id": "52fe463f9251416c75072297", "cast_id": 10, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 3}, {"name": "Alfred Molina", "character": "Pepperidge", "id": 658, "credit_id": "52fe463f9251416c7507229b", "cast_id": 11, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 4}, {"name": "Yuki Matsuzaki", "character": "Kenji", "id": 77955, "credit_id": "52fe463f9251416c7507229f", "cast_id": 12, "profile_path": "/2wpDHE2XW805ql9LMgYxhbJto1h.jpg", "order": 5}, {"name": "Aishwarya Rai Bachchan", "character": "Sonia", "id": 87773, "credit_id": "52fe463f9251416c750722a3", "cast_id": 13, "profile_path": "/3iSTsyBx5FwfbIrMJXMKFJ0eWlL.jpg", "order": 6}, {"name": "John Cleese", "character": "Chief Inspector Dreyfus", "id": 8930, "credit_id": "52fe463f9251416c750722a7", "cast_id": 14, "profile_path": "/iGFWzoHz4ruCSfeEY54CRdMnFJ8.jpg", "order": 7}, {"name": "Lily Tomlin", "character": "Mrs. Berenger", "id": 10437, "credit_id": "52fe463f9251416c750722e7", "cast_id": 25, "profile_path": "/csePQdmmnWhDqyQ5PCWlEleMeyp.jpg", "order": 8}, {"name": "Jeremy Irons", "character": "Avellaneda", "id": 16940, "credit_id": "52fe463f9251416c750722eb", "cast_id": 26, "profile_path": "/9AWphjIgGX7JjTrwrx3tsTZlUgv.jpg", "order": 9}, {"name": "Johnny Hallyday", "character": "Milliken", "id": 35084, "credit_id": "52fe463f9251416c750722ef", "cast_id": 27, "profile_path": "/18kJzn9NuGH0WMCEqm92DLFwqJt.jpg", "order": 10}, {"name": "Geoffrey Palmer", "character": "Joubert", "id": 10746, "credit_id": "52fe463f9251416c750722f3", "cast_id": 28, "profile_path": "/6ouSoFGy8Rd9viyHmWHoEJfknFa.jpg", "order": 11}, {"name": "Philip Goodwin", "character": "Renard", "id": 163873, "credit_id": "52fe46409251416c750722f7", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Armel Bellec", "character": "Louis", "id": 993771, "credit_id": "52fe46409251416c750722fb", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Jack Metzger", "character": "Antoine", "id": 164387, "credit_id": "52fe46409251416c750722ff", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Yevgeni Lazarev", "character": "The Pope", "id": 19301, "credit_id": "52fe46409251416c75072309", "cast_id": 34, "profile_path": "/hLtyGhAuEeJc8qPjQDZswIMpYDd.jpg", "order": 15}], "directors": [{"name": "Harald Zwart", "department": "Directing", "job": "Director", "credit_id": "52fe463f9251416c7507226f", "profile_path": "/bWVYiM0svNXuV7A5C8Uj06EK0IY.jpg", "id": 21981}], "vote_average": 5.6, "runtime": 92}, "146233": {"poster_path": "/yAhqW57pwMAsCgmZpM5zSIVQVTh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 122126687, "overview": "When Keller Dover's daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts. But just how far will this desperate father go to protect his family?", "video": false, "id": 146233, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Prisoners", "tagline": "Every moment matters.", "vote_count": 810, "homepage": "http://prisonersmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1392214", "adult": false, "backdrop_path": "/cLGKawjQ5tUJCuDyR0OnGYT4fyf.jpg", "production_companies": [{"name": "Madhouse Entertainment", "id": 12199}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "8:38 Productions", "id": 18208}], "release_date": "2013-09-21", "popularity": 2.01351076776546, "original_title": "Prisoners", "budget": 46000000, "cast": [{"name": "Hugh Jackman", "character": "Keller Dover", "id": 6968, "credit_id": "52fe4b799251416c75103ef7", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Detective Loki", "id": 131, "credit_id": "52fe4b789251416c75103ef3", "cast_id": 1, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Paul Dano", "character": "Alex Jones", "id": 17142, "credit_id": "52fe4b799251416c75103efb", "cast_id": 3, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 2}, {"name": "Maria Bello", "character": "Grace Dover", "id": 49, "credit_id": "52fe4b799251416c75103eff", "cast_id": 4, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 3}, {"name": "Melissa Leo", "character": "Holly Jones", "id": 6832, "credit_id": "52fe4b799251416c75103f03", "cast_id": 5, "profile_path": "/pWP5xzOtoOcqJ0lZo2xguQ5BnrB.jpg", "order": 4}, {"name": "Viola Davis", "character": "Nancy Birch", "id": 19492, "credit_id": "52fe4b799251416c75103f07", "cast_id": 6, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}, {"name": "Terrence Howard", "character": "Franklin Birch", "id": 18288, "credit_id": "52fe4b799251416c75103f2f", "cast_id": 14, "profile_path": "/MZeLxOH0PgL7xcvt865WVBvQDw.jpg", "order": 6}, {"name": "Dylan Minnette", "character": "Ralph Dover", "id": 112476, "credit_id": "52fe4b799251416c75103f57", "cast_id": 22, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 7}, {"name": "Zo\u00eb Borde", "character": "Eliza Birch", "id": 1208406, "credit_id": "52fe4b799251416c75103f5b", "cast_id": 23, "profile_path": "/m40sSN2l2tQtpKbhRbjm7sksNV9.jpg", "order": 8}, {"name": "Wayne Duvall", "character": "Captain Richard O'Malley", "id": 1470, "credit_id": "52fe4b799251416c75103f5f", "cast_id": 24, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 9}, {"name": "David Dastmalchian", "character": "Bob Taylor", "id": 83854, "credit_id": "52fe4b799251416c75103f63", "cast_id": 25, "profile_path": "/kl4bxkrd9yc6oPYZGs4jKHLI3f2.jpg", "order": 10}, {"name": "Len Cariou", "character": "Father Patrick Dunn", "id": 41247, "credit_id": "52fe4b799251416c75103f67", "cast_id": 26, "profile_path": "/sXYaqG6en0MGbXG0zpVaWD7y76W.jpg", "order": 11}, {"name": "Sandra Ellis Lafferty", "character": "Mrs. Milland", "id": 427, "credit_id": "52fe4b799251416c75103f6b", "cast_id": 27, "profile_path": "/x84X0jwGl063wTGSmw7M8J0SxhS.jpg", "order": 12}], "directors": [{"name": "Denis Villeneuve", "department": "Directing", "job": "Director", "credit_id": "52fe4b799251416c75103f0d", "profile_path": "/f3bWCti2AYoAxRnFYIirQyf6A7j.jpg", "id": 137427}], "vote_average": 7.8, "runtime": 153}, "47931": {"poster_path": "/65Uy9xucPOAZDKa54RlojVyP24k.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}], "revenue": 63027681, "overview": "After a bloody invasion of the BOPE in the High-Security Penitentiary Bangu 1 in Rio de Janeiro to control a rebellion of interns, the Lieutenant-Colonel Roberto Nascimento and the second in command Captain Andr\u00e9 Matias are accused by the Human Right Aids member Diogo Fraga of execution of prisoners. Matias is transferred to the corrupted Military Police and Nascimento is exonerated from the BOPE by the Governor.", "video": false, "id": 47931, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Elite Squad: The Enemy Within", "tagline": "", "vote_count": 152, "homepage": "http://www.tropa2.com.br/", "belongs_to_collection": {"backdrop_path": "/nNUFlXdj8JIV6HnjVS58r0qCvE7.jpg", "poster_path": "/mdB0vaxi8TTnKIOeaYv25vUrkY3.jpg", "id": 119581, "name": "Elite Squad Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt1555149", "adult": false, "backdrop_path": "/oMaCjoomZ1ZvFX7sASAbcDrkxU7.jpg", "production_companies": [{"name": "Feij\u00e3o Filmes", "id": 47044}, {"name": "Globo filmes", "id": 10954}, {"name": "Riofilme", "id": 21454}, {"name": "Zazen Produ\u00e7\u00f5es", "id": 2427}], "release_date": "2010-10-08", "popularity": 0.62083665486258, "original_title": "Tropa de Elite 2", "budget": 0, "cast": [{"name": "Wagner Moura", "character": "Tenente-Coronel Nascimento", "id": 52583, "credit_id": "52fe474ec3a36847f812e68f", "cast_id": 6, "profile_path": "/bESNWiGHjMhMGoqBMVtbpJBazKx.jpg", "order": 0}, {"name": "Irandhir Santos", "character": "Diogo Fraga", "id": 223286, "credit_id": "52fe474ec3a36847f812e693", "cast_id": 7, "profile_path": "/46RVPauvZjxpoxedo0u2XafRKB0.jpg", "order": 1}, {"name": "Andr\u00e9 Ramiro", "character": "Andr\u00e9 Matias", "id": 52585, "credit_id": "52fe474ec3a36847f812e697", "cast_id": 8, "profile_path": "/qFROuhLJIHPv0tiZ9TXdYZkYOfU.jpg", "order": 2}, {"name": "Pedro Van-Held", "character": "Rafael", "id": 223288, "credit_id": "52fe474ec3a36847f812e69b", "cast_id": 9, "profile_path": "/j95ufSzPXr2krPVp01v0E18ecsq.jpg", "order": 3}, {"name": "Maria Ribeiro", "character": "Rosane", "id": 12397, "credit_id": "52fe474ec3a36847f812e69f", "cast_id": 10, "profile_path": "/vh8e9h0f8AxKwZ01uKp7WWoSGP5.jpg", "order": 4}, {"name": "Sandro Rocha", "character": "Russo", "id": 223289, "credit_id": "52fe474ec3a36847f812e6a3", "cast_id": 11, "profile_path": "/vJ59YipVXfGS76RchcCZPjhgtt3.jpg", "order": 5}, {"name": "Milhem Cortaz", "character": "Tenente-Coronel F\u00e1bio", "id": 52586, "credit_id": "52fe474ec3a36847f812e6a7", "cast_id": 12, "profile_path": "/7OLA77PUeO38jqbRhpFPzQUankN.jpg", "order": 6}, {"name": "Tain\u00e1 M\u00fcller", "character": "Clara", "id": 127110, "credit_id": "52fe474ec3a36847f812e6ab", "cast_id": 13, "profile_path": "/Tvzjcm9sKQFcWnLL1TUhT96Ys1.jpg", "order": 7}, {"name": "Seu Jorge", "character": "Beirada", "id": 5659, "credit_id": "52fe474ec3a36847f812e6af", "cast_id": 14, "profile_path": "/ggUYDS85gpTLAXaDzznLw2mpTfS.jpg", "order": 8}, {"name": "Andr\u00e9 Mattos", "character": "Fortunato", "id": 223293, "credit_id": "52fe474ec3a36847f812e6b3", "cast_id": 15, "profile_path": "/uQh6iQjnYjaaIgFOnGgpnzGoQBt.jpg", "order": 9}], "directors": [{"name": "Jos\u00e9 Padilha", "department": "Directing", "job": "Director", "credit_id": "52fe474ec3a36847f812e673", "profile_path": "/856kyjsiBGksnzpNHgxkkcd0TZr.jpg", "id": 52576}], "vote_average": 7.4, "runtime": 115}, "6972": {"poster_path": "/rjyseZNRuMiomWbQZt6BQMwyyE2.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 49554002, "overview": "Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin, Australia, by Japanese forces firsthand.", "video": false, "id": 6972, "genres": [{"id": 18, "name": "Drama"}], "title": "Australia", "tagline": "Welcome to Australia!", "vote_count": 207, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0455824", "adult": false, "backdrop_path": "/yMHcsO8PY2J7CzxtcWxvgfT0iUz.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Bazmark Films", "id": 240}, {"name": "ScreenWest", "id": 7888}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Ingenious Film Partners", "id": 289}], "release_date": "2008-11-18", "popularity": 0.367621269465933, "original_title": "Australia", "budget": 130000000, "cast": [{"name": "Nicole Kidman", "character": "Lady Sarah Ashley", "id": 2227, "credit_id": "52fe446cc3a36847f809544b", "cast_id": 3, "profile_path": "/hnX12EBKXIK7XwBhLCGGcEnFdpf.jpg", "order": 0}, {"name": "Hugh Jackman", "character": "The Drover", "id": 6968, "credit_id": "52fe446cc3a36847f809544f", "cast_id": 4, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 1}, {"name": "Essie Davis", "character": "Katherine", "id": 33449, "credit_id": "52fe446cc3a36847f8095453", "cast_id": 5, "profile_path": "/4fRr8V4harQBxJCvR8dhPP40tYA.jpg", "order": 2}, {"name": "David Wenham", "character": "Neil Fletcher", "id": 1371, "credit_id": "52fe446cc3a36847f8095457", "cast_id": 6, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 3}, {"name": "Bryan Brown", "character": "King Carney", "id": 29092, "credit_id": "52fe446cc3a36847f809545b", "cast_id": 7, "profile_path": "/ppE8Gy8jyjB5oQwwryVFgvQlHUr.jpg", "order": 4}, {"name": "David Gulpilil", "character": "King George", "id": 53023, "credit_id": "52fe446cc3a36847f809545f", "cast_id": 8, "profile_path": "/pns5wVD4GNEPo0FwtZHrjGX6j5n.jpg", "order": 5}, {"name": "John Jarratt", "character": "Sergeant", "id": 45210, "credit_id": "53464d5bc3a3682f20000db7", "cast_id": 23, "profile_path": "/pG2OV7KBXbMzcirLuoLWN7Uoyfq.jpg", "order": 7}, {"name": "Shea Adams", "character": "Carney Boy", "id": 208282, "credit_id": "536167c7c3a3683965000366", "cast_id": 24, "profile_path": "/36C0GE42kUgzP6i2vWwJjl8NLHB.jpg", "order": 8}, {"name": "Nathin Butler", "character": "Carney Boy", "id": 55903, "credit_id": "539c409dc3a368653d001918", "cast_id": 34, "profile_path": null, "order": 9}, {"name": "Eddie Baroo", "character": "Bull", "id": 217046, "credit_id": "539c40cfc3a36810c9001f7e", "cast_id": 35, "profile_path": "/2VA0cPaaqRCDLylXTQCPSLl73AF.jpg", "order": 10}, {"name": "Arthur Dignam", "character": "Father Benedict", "id": 108924, "credit_id": "539c4113c3a36810c9001f81", "cast_id": 36, "profile_path": null, "order": 11}, {"name": "Sandy Gore", "character": "Gloria Carney", "id": 144098, "credit_id": "539c41aac3a36810c9001f9f", "cast_id": 37, "profile_path": null, "order": 12}, {"name": "Bill Hunter", "character": "Skipper (Qantas Sloop)", "id": 23, "credit_id": "539c41e9c3a36810e3001e9e", "cast_id": 38, "profile_path": "/fDYf8bxLtyy3vnSFX27QBe3mG8d.jpg", "order": 13}, {"name": "Jacek Koman", "character": "Ivan", "id": 12210, "credit_id": "539c4301c3a36810ba00207f", "cast_id": 39, "profile_path": null, "order": 14}, {"name": "Ben Mendelsohn", "character": "Captain Dutton", "id": 77335, "credit_id": "54958188c3a3686ae300408d", "cast_id": 117, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 15}, {"name": "Barry Otto", "character": "Administrator Allsop", "id": 150536, "credit_id": "549581bac3a3680ff50029fe", "cast_id": 118, "profile_path": null, "order": 16}, {"name": "David Ngoombujarra", "character": "Magarri", "id": 1222753, "credit_id": "549582d69251412c4e002827", "cast_id": 119, "profile_path": null, "order": 17}, {"name": "Bruce Spence", "character": "Dr. Barker", "id": 27752, "credit_id": "5495837ac3a36831b8001acf", "cast_id": 120, "profile_path": "/pwJJBmO9MG3OxVX9efGrB6BTFyw.jpg", "order": 18}, {"name": "Jack Thompson", "character": "Kipling Flynn", "id": 12536, "credit_id": "549583ff9251416e1e003ca5", "cast_id": 121, "profile_path": "/l2NNfs9bd6qxqzIOahcz2hErrq8.jpg", "order": 19}, {"name": "Yuen Wah", "character": "Sing Song", "id": 57609, "credit_id": "549584b29251416e1e003cb4", "cast_id": 122, "profile_path": "/dz71IIr8cfECAOD3KFosz8aj15T.jpg", "order": 20}, {"name": "Kerry Walker", "character": "Myrtle Allsop", "id": 10756, "credit_id": "549584cd9251416e2b00411a", "cast_id": 123, "profile_path": null, "order": 21}, {"name": "David Wenham", "character": "Neil Fletcher", "id": 1371, "credit_id": "5495850b9251413f75002798", "cast_id": 124, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 22}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe446cc3a36847f8095441", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 6.1, "runtime": 165}, "146238": {"poster_path": "/vh3pmcySB3sWkNwLRIyrbTugSrD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 62616646, "overview": "When a poor college student who cracks an online poker game goes bust, he arranges a face-to-face with the man he thinks cheated him, a sly offshore entrepreneur.", "video": false, "id": 146238, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Runner Runner", "tagline": "The house always wins.", "vote_count": 239, "homepage": "http://www.runnerrunnermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2364841", "adult": false, "backdrop_path": "/wULBSnY3AaR9PfN6kYT8vLA8HfW.jpg", "production_companies": [{"name": "Stone Village Pictures", "id": 7420}, {"name": "Appian Way", "id": 562}, {"name": "Double Feature Films", "id": 215}, {"name": "New Regency Pictures", "id": 10104}], "release_date": "2013-10-02", "popularity": 2.09494863285235, "original_title": "Runner Runner", "budget": 30000000, "cast": [{"name": "Ben Affleck", "character": "Ivan Block", "id": 880, "credit_id": "52fe4b799251416c75103fe3", "cast_id": 1, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 0}, {"name": "Gemma Arterton", "character": "Rebecca Shafran", "id": 59620, "credit_id": "52fe4b799251416c75103fe7", "cast_id": 2, "profile_path": "/8W245myilWWBg37BDOreMUayOfY.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Richie Furst", "id": 12111, "credit_id": "52fe4b799251416c75103feb", "cast_id": 3, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Anthony Mackie", "character": "Shavers", "id": 53650, "credit_id": "52fe4b799251416c75103fef", "cast_id": 4, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 3}, {"name": "David Costabile", "character": "Professor Hornstein", "id": 82167, "credit_id": "52fe4b799251416c75104005", "cast_id": 8, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 4}, {"name": "John Heard", "character": "Harry Furst", "id": 11512, "credit_id": "52fe4b799251416c75104009", "cast_id": 9, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 5}, {"name": "Michael Esper", "character": "Billy 'Pet' Petricoff", "id": 6183, "credit_id": "52fe4b799251416c7510400d", "cast_id": 10, "profile_path": "/5BWyi5UY1hm6qeGcEztULi2vzmR.jpg", "order": 6}, {"name": "Oliver Cooper", "character": "Andrew Cronin", "id": 225694, "credit_id": "52fe4b799251416c75104011", "cast_id": 11, "profile_path": "/1eBIzPMwi7xgOAqGztXByHfqrHc.jpg", "order": 7}, {"name": "Christian George", "character": "Wilson", "id": 996296, "credit_id": "52fe4b799251416c75104015", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Yul Vazquez", "character": "Delegate Herrera", "id": 75604, "credit_id": "52fe4b799251416c75104019", "cast_id": 13, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 9}, {"name": "James Molina", "character": "Esteban", "id": 200446, "credit_id": "52fe4b799251416c7510401d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Louis Lombardi", "character": "Archie", "id": 3218, "credit_id": "52fe4b799251416c75104021", "cast_id": 15, "profile_path": "/xQxODNK3RKu0DZvJYQKBLamSmad.jpg", "order": 11}, {"name": "Vincent Laresca", "character": "Sergeant Barrancas", "id": 1983, "credit_id": "52fe4b799251416c75104025", "cast_id": 16, "profile_path": "/7tHu85FMT8417SNlwLmVFG7lY8N.jpg", "order": 12}, {"name": "Sam Palladio", "character": "Shecky", "id": 1097967, "credit_id": "52fe4b799251416c75104029", "cast_id": 17, "profile_path": "/sKvNvDHxHHYEOYPVkOzn55xrXc1.jpg", "order": 13}, {"name": "Dayo Okeniyi", "character": "Lionel", "id": 1030512, "credit_id": "54e9da71c3a36836ed004153", "cast_id": 26, "profile_path": "/vRZ0pA5b7lePzHDWL3UPgGGFEdT.jpg", "order": 14}], "directors": [{"name": "Brad Furman", "department": "Directing", "job": "Director", "credit_id": "52fe4b799251416c75103ff5", "profile_path": "/o1NbAcrBHaX8Qsk2AV95TEY0iLR.jpg", "id": 144221}], "vote_average": 5.7, "runtime": 91}, "6977": {"poster_path": "/3FgiDYTJiOUMQIsOVZ29jD70uXd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171600000, "overview": "Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.", "video": false, "id": 6977, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "No Country for Old Men", "tagline": "There are no clean getaways.", "vote_count": 689, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0477348", "adult": false, "backdrop_path": "/7hx7ANh11TbbvHLDXUuywYkg5rK.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Miramax Films", "id": 14}, {"name": "Scott Rudin Productions", "id": 258}, {"name": "Mike Zoss Productions", "id": 2092}], "release_date": "2007-11-08", "popularity": 1.23752222435188, "original_title": "No Country for Old Men", "budget": 25000000, "cast": [{"name": "Tommy Lee Jones", "character": "Sheriff Ed Tom Bell", "id": 2176, "credit_id": "52fe446dc3a36847f80957af", "cast_id": 1, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 0}, {"name": "Javier Bardem", "character": "Anton Chigurh", "id": 3810, "credit_id": "52fe446dc3a36847f80957b3", "cast_id": 2, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 1}, {"name": "Josh Brolin", "character": "Llewelyn Moss", "id": 16851, "credit_id": "52fe446dc3a36847f80957b7", "cast_id": 3, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 2}, {"name": "Woody Harrelson", "character": "Carson Wells", "id": 57755, "credit_id": "52fe446dc3a36847f80957bb", "cast_id": 4, "profile_path": "/ivfalpnvELPaSILqP6K6rabXfsU.jpg", "order": 3}, {"name": "Kelly Macdonald", "character": "Carla Jean Moss", "id": 9015, "credit_id": "52fe446dc3a36847f80957bf", "cast_id": 5, "profile_path": "/y3F46gN6iZPEeXZMSn1nEFnJYwt.jpg", "order": 4}, {"name": "Garret Dillahunt", "character": "Wendell", "id": 39520, "credit_id": "52fe446dc3a36847f80957c3", "cast_id": 6, "profile_path": "/72VwNIJ7s9LhdsDHTNdsbkEsVyK.jpg", "order": 5}, {"name": "Tess Harper", "character": "Loretta Bell", "id": 41249, "credit_id": "52fe446dc3a36847f80957c7", "cast_id": 7, "profile_path": "/gJT9fBX04LjmbOzOzYcNbA2ZLF1.jpg", "order": 6}, {"name": "Barry Corbin", "character": "Ellis", "id": 12852, "credit_id": "52fe446dc3a36847f80957cb", "cast_id": 8, "profile_path": "/sI9LkzJYancOxTdC3othmzCxdp4.jpg", "order": 7}, {"name": "Stephen Root", "character": "Man who hires Wells", "id": 17401, "credit_id": "52fe446dc3a36847f80957cf", "cast_id": 9, "profile_path": "/sceCvLiv8xe2jQzrVn39wvosVHG.jpg", "order": 8}, {"name": "Rodger Boyce", "character": "El Paso Sheriff", "id": 51732, "credit_id": "52fe446dc3a36847f80957d3", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Beth Grant", "character": "Carla Jeans Mother", "id": 5151, "credit_id": "52fe446dc3a36847f80957d7", "cast_id": 11, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 10}, {"name": "Ana Reeder", "character": "Poolside Woman", "id": 51733, "credit_id": "52fe446dc3a36847f80957db", "cast_id": 12, "profile_path": "/4tC2l2BZjui5rUeUB5Zgjvn1EV9.jpg", "order": 11}, {"name": "Kit Gwin", "character": "Sheriff's Secretary", "id": 51734, "credit_id": "52fe446dc3a36847f80957df", "cast_id": 13, "profile_path": "/n7kR0B7fErQvOqWNzpdCU6FQ13s.jpg", "order": 12}, {"name": "Zach Hopkins", "character": "Strangled Deputy", "id": 51735, "credit_id": "52fe446dc3a36847f80957e3", "cast_id": 14, "profile_path": null, "order": 13}], "directors": [{"name": "Joel Coen", "department": "Directing", "job": "Director", "credit_id": "52fe446dc3a36847f80957f5", "profile_path": "/wUUNwsgOGtelsU8yJI64s8r7XiY.jpg", "id": 1223}, {"name": "Ethan Coen", "department": "Directing", "job": "Director", "credit_id": "52fe446dc3a36847f80957fb", "profile_path": "/knZuxatmyGpb1M8vWoprAmhv4WQ.jpg", "id": 1224}], "vote_average": 7.3, "runtime": 122}, "6978": {"poster_path": "/9U88cwgT8nKLTaQu4l7QpiHWTX2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11000000, "overview": "When trucker Jack Burton agreed to take his friend Wang Chi to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for an immortal sorcerer named Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.", "video": false, "id": 6978, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Big Trouble in Little China", "tagline": "Adventure doesn't come any bigger!", "vote_count": 183, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0090728", "adult": false, "backdrop_path": "/fE78fvLAlOiwQYksd11Q511tAXr.jpg", "production_companies": [{"name": "TAFT Entertainment Pictures", "id": 965}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1986-05-30", "popularity": 1.02182424409516, "original_title": "Big Trouble in Little China", "budget": 25000000, "cast": [{"name": "Kurt Russell", "character": "Jack Burton", "id": 6856, "credit_id": "52fe446ec3a36847f8095899", "cast_id": 1, "profile_path": "/r3oJkdyBOs3ZWmamgNQzcvDGaxc.jpg", "order": 0}, {"name": "Kim Cattrall", "character": "Gracie Law", "id": 2109, "credit_id": "52fe446ec3a36847f809589d", "cast_id": 2, "profile_path": "/A6jOlVc2aMgVSLZSGJHppYdzafq.jpg", "order": 1}, {"name": "Dennis Dun", "character": "Wang Chi", "id": 11392, "credit_id": "52fe446ec3a36847f80958a1", "cast_id": 3, "profile_path": "/t8jiYbpljN07h2lgDle16dVDkT3.jpg", "order": 2}, {"name": "James Hong", "character": "David Lo Pan", "id": 20904, "credit_id": "52fe446ec3a36847f80958ab", "cast_id": 5, "profile_path": "/8k4RrDRsqkvJDePU8ciMOOx5Zso.jpg", "order": 2}, {"name": "Victor Wong", "character": "Egg Shen", "id": 11395, "credit_id": "52fe446ec3a36847f80958af", "cast_id": 6, "profile_path": "/70vAqnH2QFhLOenNQCVcaG1JhN3.jpg", "order": 3}, {"name": "Kate Burton", "character": "Margo", "id": 20879, "credit_id": "52fe446ec3a36847f80958b3", "cast_id": 7, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 4}, {"name": "James Pax", "character": "Lightning", "id": 53024, "credit_id": "52fe446ec3a36847f80958b7", "cast_id": 8, "profile_path": "/rGohfLMMuUcbJ1uORku4EFg96s1.jpg", "order": 5}, {"name": "Peter Kwong", "character": "Rain", "id": 97695, "credit_id": "52fe446ec3a36847f80958eb", "cast_id": 17, "profile_path": "/7IWgFkoeWvESueJHphnd9Q8RqzZ.jpg", "order": 6}, {"name": "Carter Wong", "character": "Thunder", "id": 238896, "credit_id": "52fe446ec3a36847f80958ef", "cast_id": 18, "profile_path": "/hM7FNEsOcND2I5IZ0Wu6HMMj4LD.jpg", "order": 7}, {"name": "Rummel Mor", "character": "Joe Lucky", "id": 159078, "credit_id": "52fe446ec3a36847f80958f9", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Donald Li", "character": "Eddie Lee", "id": 168246, "credit_id": "52fe446ec3a36847f809592d", "cast_id": 29, "profile_path": "/7TeLJzqIoSUMAZJRkSLMp53wujn.jpg", "order": 9}, {"name": "Suzee Pai", "character": "Miao Yin", "id": 943369, "credit_id": "52fe446ec3a36847f8095931", "cast_id": 30, "profile_path": "/8xQ6vojVW2eiE3miKbPyirZvcD1.jpg", "order": 10}, {"name": "Chao Li Chi", "character": "Uncle Chu", "id": 995587, "credit_id": "52fe446ec3a36847f8095935", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Jeff Imada", "character": "Needles", "id": 169628, "credit_id": "52fe446ec3a36847f8095939", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Craig Ng", "character": "One Ear", "id": 156058, "credit_id": "52fe446ec3a36847f809593d", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "June Kyoto Lu", "character": "White Tiger", "id": 1115618, "credit_id": "52fe446ec3a36847f8095941", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "John Carpenter", "department": "Directing", "job": "Director", "credit_id": "52fe446ec3a36847f80958a7", "profile_path": "/5Xv3IyZaXJ2qw4ZgRmuIcdtU8xU.jpg", "id": 11770}], "vote_average": 6.7, "runtime": 99}, "228165": {"poster_path": "/9wChSuUoQDiBKUnGTcYMkzRha60.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.", "video": false, "id": 228165, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}], "title": "The SpongeBob Movie: Sponge Out of Water", "tagline": "He's leaving his world behind, to redeem himself of these past 10 years", "vote_count": 101, "homepage": "http://www.spongebobmovie.com/", "belongs_to_collection": {"backdrop_path": "/82aBKm6QfMzNYl7jk9VG4mMPOYu.jpg", "poster_path": "/aTnC0WJcpXbTiz7hqqR0Wj7JCTV.jpg", "id": 275402, "name": "SpongeBob Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [], "imdb_id": "tt2279373", "adult": false, "backdrop_path": "/1DMrM1RDSClzeabdrTejEYtTFMU.jpg", "production_companies": [{"name": "Paramount Animation", "id": 24955}, {"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Nickelodeon Animation Studios", "id": 4859}, {"name": "United Plankton Pictures", "id": 8921}, {"name": "Disruption Entertainment", "id": 10256}], "release_date": "2015-02-06", "popularity": 1.6621930317565, "original_title": "The SpongeBob Movie: Sponge Out of Water", "budget": 30000000, "cast": [{"name": "Tom Kenny", "character": "SpongeBob / Gary / Agreeable Mob Member / Waffle (voice)", "id": 78798, "credit_id": "54cd3855925141475d001b60", "cast_id": 9, "profile_path": "/uU2VLWHkKZN0UkYVJBf1s1z2l3k.jpg", "order": 1}, {"name": "Bill Fagerbakke", "character": "Patrick / Male Fish / Eager Customer (voice)", "id": 34398, "credit_id": "54cd387d9251414749001b9d", "cast_id": 10, "profile_path": "/dj9dWLPEqjsquhhC9QxndNAsm9X.jpg", "order": 2}, {"name": "Rodger Bumpass", "character": "Doctor / Squidward / Angry Mob Member #2 / Doughnut / Squidasaurus Rex (voice)", "id": 70615, "credit_id": "54cd38bb925141475d001b65", "cast_id": 11, "profile_path": "/bb6AubJGVbWrWwr6Fol95zDuCny.jpg", "order": 3}, {"name": "Clancy Brown", "character": "Mr.Krabs (voice)", "id": 6574, "credit_id": "54cd38f6c3a3687f80001a70", "cast_id": 12, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 4}, {"name": "Carolyn Lawrence", "character": "Sandy (voice)", "id": 78799, "credit_id": "54cd3951c3a3687f84001eac", "cast_id": 13, "profile_path": "/dKxOl2EsuXrFPrBhyNud7vP8I6W.jpg", "order": 5}, {"name": "Mr. Lawrence", "character": "Plankton / Plankton Robot / News Anchor Fish / Mob Member (voice)", "id": 1215951, "credit_id": "54cd3987c3a3687f94001d28", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Antonio Banderas", "character": "Burger Beard", "id": 3131, "credit_id": "54cd39b69251415cb8000673", "cast_id": 15, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 7}, {"name": "Eric Bauza", "character": "Seagull (voice)", "id": 89599, "credit_id": "55340de8c3a36848ca004c27", "cast_id": 149, "profile_path": null, "order": 8}, {"name": "Tim Conway", "character": "Seagull (voice)", "id": 83414, "credit_id": "55340df59251416f88000e14", "cast_id": 150, "profile_path": "/non96yYuFTWnopBgNtj1MWcm0Z5.jpg", "order": 9}, {"name": "Eddie Deezen", "character": "Seagull (voice)", "id": 42362, "credit_id": "55340e009251415291005cfa", "cast_id": 151, "profile_path": "/ippZciGOX0PKn4QexVlcym4LZNS.jpg", "order": 10}, {"name": "Rob Paulsen", "character": "Seagull (voice)", "id": 43125, "credit_id": "55340e0c92514125dc00202e", "cast_id": 152, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 11}, {"name": "Kevin Michael Richardson", "character": "Seagull (voice)", "id": 24362, "credit_id": "55340e16c3a368222600602d", "cast_id": 153, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 12}, {"name": "April Stewart", "character": "Seagull (voice)", "id": 111467, "credit_id": "55340e1f92514125dc002032", "cast_id": 154, "profile_path": "/hGOsh1a7zwBTz9S8MbnyfFCNgLv.jpg", "order": 13}, {"name": "Cree Summer", "character": "Seagull (voice)", "id": 34985, "credit_id": "55340e29c3a368523e002039", "cast_id": 155, "profile_path": "/f2ezohBr8bBuLl85YTV2UNOa5j5.jpg", "order": 14}, {"name": "Billy West", "character": "Seagull (voice)", "id": 23679, "credit_id": "55340e34c3a3682226006032", "cast_id": 156, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 15}, {"name": "Carlos Alazraqui", "character": "Seagull / Dead Parrot (voice)", "id": 59784, "credit_id": "55340e41925141529b005b3a", "cast_id": 157, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 16}, {"name": "Nolan North", "character": "Seagull / Dead Parrot / Pigeon Cabbie (voice)", "id": 19508, "credit_id": "55340e4bc3a3682219006343", "cast_id": 158, "profile_path": "/3mCPGjyH6bzSZ6yYE4Um1ntsz6x.jpg", "order": 17}, {"name": "Paul Tibbitt", "character": "Kyle / Helpful Angry Mob Member (voice)", "id": 217174, "credit_id": "55340e569251416f88000e1d", "cast_id": 159, "profile_path": null, "order": 18}, {"name": "Jill Talley", "character": "Karen (the Computer Wife) / Harold\u2019s Wife / Ice Cream Cone #2 (voice)", "id": 17414, "credit_id": "55340e7bc3a36822230059ca", "cast_id": 160, "profile_path": "/1a6pmvxeBa7aWMJIgwxwRsoi7b3.jpg", "order": 19}, {"name": "Dee Bradley Baker", "character": "Sandals / Customer #1 / Fish on Bubble / Perch Perkins / Angry Fish / Maple Syrup Jar / Waffle / Ice Cream Cone #1 / Furballs / Giant Cute Kitty / Rainbow / Spotlight Guard / Angry Guard #1 / Tough Mob Member (voice)", "id": 23680, "credit_id": "55340e86c3a3682dc2000863", "cast_id": 161, "profile_path": "/zFXwtsdvUCeNkzCzYpYZdAmTkJY.jpg", "order": 20}, {"name": "Sirena Irwin", "character": "Computer Voice / Shocked Mob Member (voice)", "id": 48163, "credit_id": "55340e99c3a3682dc2000867", "cast_id": 162, "profile_path": null, "order": 21}, {"name": "Mary Jo Catlett", "character": "Mrs. Puff (voice)", "id": 80634, "credit_id": "55340ea39251411014004265", "cast_id": 163, "profile_path": "/iC6TbqiOEAYhZ9mcOoXIaRuiSDp.jpg", "order": 22}, {"name": "Mark Fite", "character": "Customer #2 (voice)", "id": 122805, "credit_id": "55340ec2c3a368222600603b", "cast_id": 164, "profile_path": "/A46OLuNRFPu1NA61VQBf0NzQNFN.jpg", "order": 23}, {"name": "Thomas F. Wilson", "character": "Angry Customer #1 (voice)", "id": 1065, "credit_id": "55340ecfc3a3680bdc00061e", "cast_id": 165, "profile_path": "/n5Vk17hmXW5OqltDYH3i0qOTHcZ.jpg", "order": 24}, {"name": "Riki Lindhome", "character": "Popsicle (voice)", "id": 453, "credit_id": "55340ed9c3a3682219006351", "cast_id": 166, "profile_path": "/6JTLAdPdnceC5jGYOOmfG8k4uJy.jpg", "order": 25}, {"name": "Kate Micucci", "character": "Popsicle (voice)", "id": 132354, "credit_id": "55340ee69251415291005d0f", "cast_id": 167, "profile_path": "/qoUOtNflMZb9l1zgg9aeMiu1MF7.jpg", "order": 26}, {"name": "Matt Berry", "character": "Bubbles (voice)", "id": 119904, "credit_id": "55340efcc3a3680bdc000630", "cast_id": 168, "profile_path": "/xlPqH1tKaBUZVTZpwH7E3EkqbUR.jpg", "order": 27}, {"name": "Ezra James Colbert", "character": "Boy on the Beach", "id": 1381855, "credit_id": "55340f39c3a368523e002049", "cast_id": 169, "profile_path": null, "order": 28}, {"name": "Lillian Ellen Jones", "character": "Sandcastle Girl", "id": 1456704, "credit_id": "55340f449251411014004276", "cast_id": 170, "profile_path": null, "order": 29}, {"name": "Brody Rose", "character": "Kicking Boy", "id": 1360421, "credit_id": "55340f4ec3a368523e00204b", "cast_id": 171, "profile_path": "/rvFQEcA9Avve03X4lWErgLdjL3e.jpg", "order": 30}, {"name": "Noah Lomax", "character": "Mikey", "id": 524503, "credit_id": "55340f589251417ae3003bca", "cast_id": 172, "profile_path": null, "order": 31}, {"name": "Jesica Ahlberg", "character": "Tanning Woman", "id": 1456705, "credit_id": "55340f62925141101400427b", "cast_id": 173, "profile_path": null, "order": 32}, {"name": " Nina Repeta", "character": "Woman with Stroller", "id": 933509, "credit_id": "55340f6e92514125dc002040", "cast_id": 174, "profile_path": null, "order": 33}, {"name": "Corinne Engstrom", "character": "Young Woman Customer", "id": 1456706, "credit_id": "55340f7ac3a3680bdc000641", "cast_id": 175, "profile_path": null, "order": 34}, {"name": "Chip Lane", "character": "Customer", "id": 1190891, "credit_id": "55340f88c3a3682dc2000877", "cast_id": 176, "profile_path": null, "order": 35}, {"name": "Brick Jackson", "character": "Customer", "id": 1456708, "credit_id": "55340f91c3a368523e002053", "cast_id": 177, "profile_path": null, "order": 36}, {"name": "Keller Moore", "character": "Older Boy Customer", "id": 1456709, "credit_id": "55340f9b9251417ae3003bcf", "cast_id": 178, "profile_path": null, "order": 37}, {"name": "Bailey Campbell", "character": "Boy Customer #2", "id": 1456710, "credit_id": "55340fa69251416f88000e38", "cast_id": 179, "profile_path": null, "order": 38}, {"name": "Henry Davis Morales", "character": "Young Boy with Cone", "id": 1456711, "credit_id": "55340fb092514125dc002047", "cast_id": 180, "profile_path": null, "order": 39}, {"name": "Nicolette Noble", "character": "Surfer Girl with Cone", "id": 1456712, "credit_id": "55340fbb925141675e000368", "cast_id": 181, "profile_path": null, "order": 40}, {"name": "Kari Klinkenborg", "character": "Woman on Sidewalk #1", "id": 1248289, "credit_id": "55340fc792514140b5003e7d", "cast_id": 182, "profile_path": null, "order": 41}, {"name": "Lisa Datz", "character": "Amy", "id": 138035, "credit_id": "55340fcf925141101400428e", "cast_id": 183, "profile_path": null, "order": 42}, {"name": "Dane Northcutt", "character": "Nut Vendor Customer", "id": 159452, "credit_id": "55340fdec3a3680bdc00064c", "cast_id": 184, "profile_path": null, "order": 43}, {"name": "Meredith Jackson", "character": "Mother with Cone", "id": 1456713, "credit_id": "55340fea92514140b5003e82", "cast_id": 185, "profile_path": null, "order": 44}, {"name": "Ella Adele Burns", "character": "Young Girl with Cone", "id": 1456714, "credit_id": "55340ff8925141675e000373", "cast_id": 186, "profile_path": null, "order": 45}, {"name": "Mike Benitez", "character": "Nut Vendor", "id": 171896, "credit_id": "55341000c3a3682219006362", "cast_id": 187, "profile_path": null, "order": 46}, {"name": "Kron Moore", "character": "Woman on Sidewalk", "id": 1395039, "credit_id": "5534100cc3a36848ca004c51", "cast_id": 188, "profile_path": "/y0FhbSiVnGtaWQnGNk2XUpNsQYG.jpg", "order": 47}, {"name": "Eamon Sheehan", "character": "Young Father", "id": 1456715, "credit_id": "55341017c3a3680bdc000652", "cast_id": 189, "profile_path": null, "order": 48}, {"name": "Matteo Spears Satriano", "character": "Little Boy on Lifeguard Chair", "id": 1456716, "credit_id": "55341022c3a36848ca004c55", "cast_id": 190, "profile_path": null, "order": 49}, {"name": "John Brown", "character": "Food Truck Patron", "id": 1456717, "credit_id": "5534104e925141529b005b68", "cast_id": 191, "profile_path": null, "order": 50}, {"name": "David Dickson", "character": "Man Eating Krabby Patty", "id": 1456718, "credit_id": "5534105ac3a3680bdc00065d", "cast_id": 192, "profile_path": null, "order": 51}, {"name": "Ashley Nicole Hudson", "character": "ND Beach Goer", "id": 1456719, "credit_id": "55341064c3a3682219006371", "cast_id": 193, "profile_path": null, "order": 52}, {"name": "Amy Lynn Tuttle", "character": "ND Beach Goer", "id": 1456720, "credit_id": "5534106e925141101400429c", "cast_id": 194, "profile_path": null, "order": 53}, {"name": "Marian Green", "character": "ND Beach Goer", "id": 1456721, "credit_id": "5534107b925141675e000384", "cast_id": 195, "profile_path": null, "order": 54}, {"name": "Jake Kilfoyle", "character": "ND Beach Goer", "id": 1456722, "credit_id": "5534108592514125dc002060", "cast_id": 196, "profile_path": null, "order": 55}, {"name": "Dean Neistat", "character": "ND Beach Goer", "id": 1456723, "credit_id": "5534108f9251417ae3003be5", "cast_id": 197, "profile_path": null, "order": 56}, {"name": "Ashley Siloac", "character": "Beach Goer", "id": 1456724, "credit_id": "5534109bc3a3680bdc000668", "cast_id": 198, "profile_path": null, "order": 57}, {"name": "Epic Lloyd", "character": "Surfer Dude (voice)", "id": 1456725, "credit_id": "553410a69251415291005d2f", "cast_id": 199, "profile_path": null, "order": 58}, {"name": "Nice Peter", "character": "Surfer Dude", "id": 1456726, "credit_id": "553410b2c3a36852de0020d4", "cast_id": 200, "profile_path": null, "order": 59}, {"name": "Stephen Hillenburg", "character": "Baby in Stroller (voice)", "id": 70651, "credit_id": "553410bfc3a36822230059eb", "cast_id": 201, "profile_path": null, "order": 60}, {"name": "Lori Alan", "character": "Pearl (voice)", "id": 24358, "credit_id": "553410d0925141529b005b76", "cast_id": 202, "profile_path": "/mNfJWzuaKgkIaK7CuirXOMosd2h.jpg", "order": 61}], "directors": [{"name": "Paul Tibbitt", "department": "Directing", "job": "Director", "credit_id": "52fe4ec19251416c751613bb", "profile_path": null, "id": 217174}], "vote_average": 6.1, "runtime": 93}, "64328": {"poster_path": "/Ai7JRZFEXXOX7rhgfeL861zZtWv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88355068, "overview": "When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet roommate, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.", "video": false, "id": 64328, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "The Muppets", "tagline": "They're closer than you think.", "vote_count": 184, "homepage": "http://disney.go.com/muppets/", "belongs_to_collection": {"backdrop_path": "/gMqWZhJnAYhVuHB6kVFh7Hjvwfo.jpg", "poster_path": "/8Ew8EIdFFurMMYjSbWPu1Hl4vLX.jpg", "id": 256377, "name": "The Muppet Movie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1204342", "adult": false, "backdrop_path": "/pf2sIKxykHdiJofo3o35S33UIC0.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2011-11-23", "popularity": 0.99474280032113, "original_title": "The Muppets", "budget": 50000000, "cast": [{"name": "Amy Adams", "character": "Mary", "id": 9273, "credit_id": "52fe46d5c3a368484e0a63b9", "cast_id": 7, "profile_path": "/mOVp1AthjoSC5jb6b5gdXtvH86s.jpg", "order": 0}, {"name": "Jason Segel", "character": "Gary", "id": 41088, "credit_id": "52fe46d5c3a368484e0a63c1", "cast_id": 9, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 1}, {"name": "Emily Blunt", "character": "Miss Piggy's Receptionist", "id": 5081, "credit_id": "52fe46d5c3a368484e0a63bd", "cast_id": 8, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 2}, {"name": "John Krasinski", "character": "Himself", "id": 17697, "credit_id": "52fe46d5c3a368484e0a63ad", "cast_id": 3, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 3}, {"name": "Zach Galifianakis", "character": "Hobo Joe", "id": 58225, "credit_id": "52fe46d5c3a368484e0a63b1", "cast_id": 4, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 4}, {"name": "Jack Black", "character": "Himself", "id": 70851, "credit_id": "52fe46d5c3a368484e0a63b5", "cast_id": 5, "profile_path": "/vMXgtzMdt2jSAjOECFQ5F53blbr.jpg", "order": 5}, {"name": "Jim Parsons", "character": "Human Walter", "id": 5374, "credit_id": "52fe46d5c3a368484e0a63c5", "cast_id": 10, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 6}, {"name": "Mickey Rooney", "character": "Smalltown Resident", "id": 1937, "credit_id": "52fe46d5c3a368484e0a63c9", "cast_id": 11, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 7}, {"name": "Neil Patrick Harris", "character": "Himself", "id": 41686, "credit_id": "52fe46d5c3a368484e0a63cd", "cast_id": 13, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 8}, {"name": "Chris Cooper", "character": "Tex Richman", "id": 2955, "credit_id": "52fe46d5c3a368484e0a63d1", "cast_id": 15, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 9}, {"name": "Ken Jeong", "character": "'Punch Teacher' Host", "id": 83586, "credit_id": "52fe46d5c3a368484e0a63d5", "cast_id": 16, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 10}, {"name": "Alan Arkin", "character": "Tour Guide", "id": 1903, "credit_id": "52fe46d5c3a368484e0a63d9", "cast_id": 17, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 11}, {"name": "Matt Vogel", "character": "Sgt. Floyd Pepper / Camilla / Sweetums / 80's Robot / Lew Zealand / Uncle Deadly / Roowlf / Crazy Harry (voice)", "id": 135467, "credit_id": "52fe46d5c3a368484e0a63dd", "cast_id": 18, "profile_path": "/A8675oSlBx3Gt18xgFXPHupmVkr.jpg", "order": 12}, {"name": "David Rudman", "character": "Scooter / Janice / Miss Poogy / Wayne (voice)", "id": 192632, "credit_id": "52fe46d5c3a368484e0a63e1", "cast_id": 19, "profile_path": "/gbK487QzcdwHul2HKrEEiaCY9co.jpg", "order": 13}, {"name": "Rashida Jones", "character": "Veronica Martin", "id": 80591, "credit_id": "52fe46d5c3a368484e0a63e5", "cast_id": 20, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 14}, {"name": "Steve Whitmire", "character": "Kermit / Beaker / Statler / Rizzo / Link Hogthrob / The Newsman (voice)", "id": 64180, "credit_id": "52fe46d5c3a368484e0a63e9", "cast_id": 21, "profile_path": "/47ovNnEHh2fMYjTPH7A3MEAuKdW.jpg", "order": 15}, {"name": "Dave Grohl", "character": "Animool", "id": 533061, "credit_id": "52fe46d5c3a368484e0a6405", "cast_id": 28, "profile_path": "/ywJweFzFBeZXXJNmDnWT0xLrH37.jpg", "order": 16}, {"name": "Eric Jacobson", "character": "Miss Piggy / Fozzie Bear / Animal / Sam Eagle / Marvin Suggs (voice)", "id": 97185, "credit_id": "52fe46d5c3a368484e0a63ed", "cast_id": 22, "profile_path": "/mfrQc4O4ntkCTSUYjdsnRXKvHXb.jpg", "order": 17}, {"name": "Dave Goelz", "character": "Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf / Kermit Moopet (voice)", "id": 64181, "credit_id": "52fe46d5c3a368484e0a63f1", "cast_id": 23, "profile_path": "/hVfv7gsUPDRDFxUk7fyCktIL7Ar.jpg", "order": 18}, {"name": "Justin Tinucci", "character": "Laughing Kid", "id": 1030312, "credit_id": "52fe46d5c3a368484e0a63fb", "cast_id": 26, "profile_path": "/97TNa2Ba4gsLlEA6QXfSXsEVhiK.jpg", "order": 19}, {"name": "Sarah Silverman", "character": "Greeter", "id": 7404, "credit_id": "52fe46d5c3a368484e0a6409", "cast_id": 29, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 20}, {"name": "Eddie Pepitone", "character": "Postman", "id": 1214063, "credit_id": "53f3ab59c3a36822f20001dd", "cast_id": 30, "profile_path": "/90SZlLy5HQ0DcE2R0NwEpsvqfXJ.jpg", "order": 21}], "directors": [{"name": "James Bobin", "department": "Directing", "job": "Director", "credit_id": "52fe46d5c3a368484e0a63a9", "profile_path": "/reixB8bAjIoVDyTwjNwRzB47yT2.jpg", "id": 26205}], "vote_average": 6.3, "runtime": 103}, "9356": {"poster_path": "/7HtSFUYBPOUd9ylUXU0LyPsxpRm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Mollie and James are together and raising a family, which now consists of an older Mikey and his baby sister, Julie. Tension between the siblings arises, and as well with Mollie and James when Mollie's brother Stuart moves in. Mikey is also learning how to use the toilet for the first time.", "video": false, "id": 9356, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Look Who's Talking Too", "tagline": "Mikey\u2019s back and about to face his greatest challenge\u2026 his new sister.", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/2jEwMXBICqARNmhFFFDu1IvmJCK.jpg", "poster_path": "/ez7hA34uLtOuGIwZvwhlpr53tXh.jpg", "id": 9521, "name": "Look Who's Talking Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0100050", "adult": false, "backdrop_path": "/AtQGCV8719WlfGYGRapkupivzk.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}], "release_date": "1990-12-14", "popularity": 0.330293692788807, "original_title": "Look Who's Talking Too", "budget": 0, "cast": [{"name": "John Travolta", "character": "James Ubriacco", "id": 8891, "credit_id": "52fe44ecc3a36847f80b21e1", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Kirstie Alley", "character": "Mollie Ubriacco", "id": 1796, "credit_id": "52fe44ecc3a36847f80b21e5", "cast_id": 2, "profile_path": "/fQ1EOV3dazf05uhrEVqMN2S3T0U.jpg", "order": 1}, {"name": "Bruce Willis", "character": "Mikey (voice)", "id": 62, "credit_id": "52fe44ecc3a36847f80b21e9", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 2}, {"name": "Roseanne Barr", "character": "Julie (voice)", "id": 46393, "credit_id": "52fe44edc3a36847f80b221b", "cast_id": 13, "profile_path": "/p36LMNfQssOQb5vUyYJRBEhQsaR.jpg", "order": 3}, {"name": "Gilbert Gottfried", "character": "Joey", "id": 15832, "credit_id": "52fe44ecc3a36847f80b21ed", "cast_id": 5, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 4}, {"name": "Damon Wayans", "character": "Eddie (voice)", "id": 22675, "credit_id": "5482285dc3a36829ae0064c4", "cast_id": 14, "profile_path": "/rQ1KV896Hm0jzLTOdksbHoXh67l.jpg", "order": 5}, {"name": "Mel Brooks", "character": "Mr. Toilet Man (voice)", "id": 14639, "credit_id": "54822898c3a36829ae0064c8", "cast_id": 15, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 6}, {"name": "Olympia Dukakis", "character": "Rosie", "id": 3019, "credit_id": "548228d6c3a36829a3006b9a", "cast_id": 16, "profile_path": "/A6Lb6pUF1Rr755Oi2vQvxzf0eHH.jpg", "order": 7}], "directors": [{"name": "Amy Heckerling", "department": "Directing", "job": "Director", "credit_id": "52fe44edc3a36847f80b220b", "profile_path": "/c68tZT9Be1triBbKmSOKCS3dsBI.jpg", "id": 57434}], "vote_average": 5.2, "runtime": 81}, "47964": {"poster_path": "/xO42aJxjWiVnvWaAliq9iWjMpHZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 304654182, "overview": "Iconoclastic, take-no-prisoners cop John McClane, finds himself for the first time on foreign soil after traveling to Moscow to help his wayward son Jack - unaware that Jack is really a highly-trained CIA operative out to stop a nuclear weapons heist. With the Russian underworld in pursuit, and battling a countdown to war, the two McClanes discover that their opposing methods make them unstoppable heroes.", "video": false, "id": 47964, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "A Good Day to Die Hard", "tagline": "Yippee Ki-Yay Mother Russia", "vote_count": 2567, "homepage": "http://www.diehardmovie.com/", "belongs_to_collection": {"backdrop_path": "/5kHVblr87FUScuab1PVSsK692IL.jpg", "poster_path": "/nglknikAiEbsF9CW5xV9fC378JH.jpg", "id": 1570, "name": "Die Hard Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1606378", "adult": false, "backdrop_path": "/17zArExB7ztm6fjUXZwQWgGMC9f.jpg", "production_companies": [{"name": "Mid Atlantic Films", "id": 2735}, {"name": "Ingenious Media", "id": 290}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Dune Entertainment", "id": 444}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Temple Hill Entertainment", "id": 12292}, {"name": "TSG Entertainment", "id": 22213}, {"name": "Giant Pictures", "id": 34396}, {"name": "Origo Film Group", "id": 34397}], "release_date": "2013-02-14", "popularity": 2.12771543095477, "original_title": "A Good Day to Die Hard", "budget": 92000000, "cast": [{"name": "Bruce Willis", "character": "John McClane", "id": 62, "credit_id": "52fe4751c3a36847f812f049", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Jai Courtney", "character": "Jack McClane", "id": 224181, "credit_id": "52fe4751c3a36847f812f05f", "cast_id": 5, "profile_path": "/lyEGjeoijr813uWUzNcT3WnqenA.jpg", "order": 1}, {"name": "Sebastian Koch", "character": "Komorov", "id": 8197, "credit_id": "52fe4751c3a36847f812f063", "cast_id": 7, "profile_path": "/prOBkJMjlvPJL3ja20fcwpm9XZA.jpg", "order": 2}, {"name": "Mary Elizabeth Winstead", "character": "Lucy McClane", "id": 17628, "credit_id": "52fe4751c3a36847f812f087", "cast_id": 18, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 3}, {"name": "Yuliya Snigir", "character": "Irina", "id": 80998, "credit_id": "52fe4751c3a36847f812f07b", "cast_id": 15, "profile_path": "/ozW9ofRD0nFgzfMQv4w5h0sNRC1.jpg", "order": 4}, {"name": "Radivoje Bukvi\u0107", "character": "Alik", "id": 230400, "credit_id": "5324f548c3a3683f04001b71", "cast_id": 22, "profile_path": "/aiTCplxQF67wOASBAdHGp7fhZ6U.jpg", "order": 5}, {"name": "Cole Hauser", "character": "Collins", "id": 6614, "credit_id": "52fe4751c3a36847f812f067", "cast_id": 8, "profile_path": "/2izzcOrZpt22ObHjSNq3qRhrGHu.jpg", "order": 6}, {"name": "Amaury Nolasco", "character": "Murphy", "id": 17341, "credit_id": "52fe4751c3a36847f812f06b", "cast_id": 9, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 7}, {"name": "Sergey Kolesnikov", "character": "Chagarin", "id": 1150430, "credit_id": "52fe4751c3a36847f812f08b", "cast_id": 19, "profile_path": "/n7NDZIAlWL8NJAJ2y5aFUG3DhC4.jpg", "order": 8}, {"name": "Roman Lukn\u00e1r", "character": "Anton", "id": 130903, "credit_id": "5324f5b0c3a36824af00158f", "cast_id": 23, "profile_path": "/dp5HqVOoksyEENiQ7WqPA2SGZmN.jpg", "order": 9}, {"name": "Zolee Ganxsta", "character": "Russian Mafia Member", "id": 64413, "credit_id": "52fe4751c3a36847f812f07f", "cast_id": 16, "profile_path": "/HuBAMnIyHU096JIyQM4PkjNcjp.jpg", "order": 10}, {"name": "P\u00e9ter Tak\u00e1tsy", "character": "Prosecutor", "id": 456735, "credit_id": "5324f698c3a3683f04001ba1", "cast_id": 24, "profile_path": "/l0mth8pVJoB1lMUE45tkjJIwOrN.jpg", "order": 11}, {"name": "Pavel Lychnikoff", "character": "Taxi driver", "id": 52762, "credit_id": "52fe4751c3a36847f812f077", "cast_id": 14, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 12}, {"name": "Megalyn Echikunwoke", "character": "Reporter", "id": 25382, "credit_id": "52fe4751c3a36847f812f08f", "cast_id": 20, "profile_path": "/8orS1eGrZ9RMN7HlXtX2hYHWtIl.jpg", "order": 13}, {"name": "Melissa Tang", "character": "Lucas", "id": 212778, "credit_id": "5324f807c3a3685725008e64", "cast_id": 25, "profile_path": "/x3emNzx65NPNoYcL13iI6fHC5I0.jpg", "order": 14}, {"name": "Anne Vyalitsyna", "character": "", "id": 1059926, "credit_id": "52fe4751c3a36847f812f06f", "cast_id": 12, "profile_path": "/abJPt45QwZk4clCgaDP95hdkOPv.jpg", "order": 15}, {"name": "Attila \u00c1rpa", "character": "Russian Mafia Member", "id": 125684, "credit_id": "52fe4751c3a36847f812f073", "cast_id": 13, "profile_path": "/8QdXIFpA4eCSM97wVyD0MD7Bw8R.jpg", "order": 16}, {"name": "Norbert N\u00f6v\u00e9nyi", "character": "Russian Mafia Member", "id": 235317, "credit_id": "52fe4751c3a36847f812f083", "cast_id": 17, "profile_path": "/yYaAsahgvLNEBqOCBMCaFxq2ztw.jpg", "order": 17}, {"name": "Yuliya Snigir", "character": "Irina", "id": 1394094, "credit_id": "54803be9c3a36829ae001d97", "cast_id": 33, "profile_path": null, "order": 18}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4751c3a36847f812f04f", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.2, "runtime": 98}, "13455": {"poster_path": "/shk0MSuHOdBiQfHjLdcXDF6iXC9.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45465299, "overview": "After his father, an assassin, is brutally murdered, Nick Gant vows revenge on Division, the covert government agency that dabbles in psychic warfare and experimental drugs. Hiding in Hong Kong's underworld, Nick assembles a band of rogue psychics dedicated to destroying Division. Together with Cassie, a teenage clairvoyant, Nick goes in search of a missing girl and a stolen suitcase that could be the key to accomplishing their mutual goal.", "video": false, "id": 13455, "genres": [{"id": 28, "name": "Action"}], "title": "Push", "tagline": "One push can change everything.", "vote_count": 179, "homepage": "http://www.push-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0465580", "adult": false, "backdrop_path": "/cta0YLPKH1Xb9EHmZAWFmLVQHeS.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Icon Productions", "id": 152}, {"name": "Infinity Features Entertainment", "id": 212}], "release_date": "2009-02-06", "popularity": 0.536965621601548, "original_title": "Push", "budget": 38000000, "cast": [{"name": "Dakota Fanning", "character": "Cassie Holmes", "id": 501, "credit_id": "52fe456b9251416c75055c0f", "cast_id": 19, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 0}, {"name": "Camilla Belle", "character": "Alyssa English", "id": 38670, "credit_id": "52fe456b9251416c75055c13", "cast_id": 20, "profile_path": "/dbfyIG91T5ROjDKRjWN8FpMcTay.jpg", "order": 1}, {"name": "Chris Evans", "character": "Nick Gant", "id": 16828, "credit_id": "52fe456b9251416c75055c17", "cast_id": 21, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Djimon Hounsou", "character": "Agent Henry Carver", "id": 938, "credit_id": "52fe456b9251416c75055c1b", "cast_id": 22, "profile_path": "/y22Pb0XAVqC0l7ukzKKtXzPEuHk.jpg", "order": 3}, {"name": "Maggie Siff", "character": "Teresa Stowe", "id": 74537, "credit_id": "52fe456b9251416c75055c1f", "cast_id": 23, "profile_path": "/99XSlFi6GlBPGLmbW0i1Jv4aR6T.jpg", "order": 4}, {"name": "Cliff Curtis", "character": "Hook", "id": 7248, "credit_id": "52fe456b9251416c75055c23", "cast_id": 24, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 5}, {"name": "Joel Gretsch", "character": "Nick's Father", "id": 25376, "credit_id": "52fe456b9251416c75055c27", "cast_id": 25, "profile_path": "/5CeKN4wIQUAvF3mlRdeVAQ5ybSs.jpg", "order": 6}, {"name": "Neil Jackson", "character": "Victor Budarin", "id": 20289, "credit_id": "52fe456b9251416c75055c2b", "cast_id": 26, "profile_path": "/9AUKjkBXLHAMaAD8nVtqTXcyPA6.jpg", "order": 7}, {"name": "Nate Mooney", "character": "Pinky Stein", "id": 74538, "credit_id": "52fe456b9251416c75055c2f", "cast_id": 27, "profile_path": "/g9GCabrHoMfNP7NfhS8Q0VkVJ2E.jpg", "order": 8}, {"name": "Colin Ford", "character": "Young Nick", "id": 74539, "credit_id": "52fe456b9251416c75055c33", "cast_id": 28, "profile_path": "/6S1dOJnIuaKAXoVxTePNOQJbsFU.jpg", "order": 9}, {"name": "Scott Michael Campbell", "character": "Agent Holden", "id": 65728, "credit_id": "52fe456b9251416c75055c37", "cast_id": 29, "profile_path": "/kMHZLJUwa8QCaLsBEAdEj8UtMGL.jpg", "order": 10}, {"name": "Brandon Rhea", "character": "Special Department Medical Officer", "id": 52902, "credit_id": "52fe456b9251416c75055c3b", "cast_id": 30, "profile_path": "/yev7IxmjSviqaOIkvw53C8pAV8K.jpg", "order": 11}, {"name": "Hal Yamanouchi", "character": "Pop Father", "id": 74540, "credit_id": "52fe456b9251416c75055c3f", "cast_id": 31, "profile_path": "/rP1dLPz5Sn4nSAXTco4sKioEvQZ.jpg", "order": 12}, {"name": "Corey Stoll", "character": "Agent Mack", "id": 74541, "credit_id": "52fe456b9251416c75055c43", "cast_id": 32, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 13}, {"name": "Ming-Na Wen", "character": "Emily Hu", "id": 21702, "credit_id": "52fe456b9251416c75055c47", "cast_id": 33, "profile_path": "/916sVknhRRxUkr70sxqa5AQvyJP.jpg", "order": 14}], "directors": [{"name": "Paul McGuigan", "department": "Directing", "job": "Director", "credit_id": "52fe456a9251416c75055ba5", "profile_path": "/6p6uzaEtKfx7ota7AdQXlantt5W.jpg", "id": 2291}], "vote_average": 5.9, "runtime": 111}, "269148": {"poster_path": "/8I5RSXcyZqXcXXUaMbKrHZCzf5i.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Samba migrated to France 10 years ago from Senegal, and has since been plugging away at various lowly jobs. Alice is a senior executive who has recently undergone a burnout. Both struggle to get out of their dead-end lives Samba's willing to do whatever it takes to get working papers, while Alice tries to get her life back on track until fate draws them together", "video": false, "id": 269148, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Samba", "tagline": "", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt3399024", "adult": false, "backdrop_path": "/4GLL1cNyQgSNDkKPrbjzNGHTWl.jpg", "production_companies": [{"name": "Ten Films", "id": 8018}, {"name": "Gaumont", "id": 9}, {"name": "Quad Productions", "id": 7038}], "release_date": "2014-10-15", "popularity": 1.18475735843955, "original_title": "Samba", "budget": 0, "cast": [{"name": "Omar Sy", "character": "Samba", "id": 78423, "credit_id": "536dff140e0a2647d400fa40", "cast_id": 2, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 1}, {"name": "Tahar Rahim", "character": "Wilson", "id": 81051, "credit_id": "536dff1e0e0a2647d800fd18", "cast_id": 3, "profile_path": "/wXKlcceUG1aRzisnL2nxbQVe18w.jpg", "order": 2}, {"name": "Charlotte Gainsbourg", "character": "Alice", "id": 4273, "credit_id": "536dff260e0a2647c400ff53", "cast_id": 4, "profile_path": "/4TKuzaPGVH1BRMp6v22hAPkclkK.jpg", "order": 3}, {"name": "Izia Higelin", "character": "Manu", "id": 1121169, "credit_id": "536dff310e0a2647c400ff58", "cast_id": 5, "profile_path": "/loTZGs7xPNJ8avd6p5fxogbKS50.jpg", "order": 4}, {"name": "H\u00e9l\u00e8ne Vincent", "character": "Marcelle", "id": 1141, "credit_id": "54dd08d1c3a3684558000125", "cast_id": 6, "profile_path": "/6hNLe48tHMucffEPGUQyQxR9Zr4.jpg", "order": 5}, {"name": "Christiane Millet", "character": "Madeleine", "id": 20083, "credit_id": "54dd08f4925141194d000136", "cast_id": 7, "profile_path": "/w2M5WrwtyHkflfZW6EMXO65hkxo.jpg", "order": 6}], "directors": [{"name": "Eric Toledano", "department": "Directing", "job": "Director", "credit_id": "536dfee60e0a2647d800fd09", "profile_path": null, "id": 84425}, {"name": "Olivier Nakache", "department": "Directing", "job": "Director", "credit_id": "536dfef20e0a2647c80101c5", "profile_path": null, "id": 84426}], "vote_average": 6.6, "runtime": 120}, "72545": {"poster_path": "/jMu45saMeqB2RGDqV3HoQ3XgZ2a.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 355692760, "overview": "Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.", "video": false, "id": 72545, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Journey 2: The Mysterious Island", "tagline": "Believe the Impossible. Discover the Incredible.", "vote_count": 291, "homepage": "http://www.themysteriousisland.com/", "belongs_to_collection": {"backdrop_path": "/76AoK99XDWgIRrhtyrB0kOWYyfe.jpg", "poster_path": "/f3InNhgFNIvW3pwmjzB7lVtr028.jpg", "id": 72547, "name": "Journey Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1397514", "adult": false, "backdrop_path": "/hFyKO3lkv6hY0goDa1Zv6MLtCD5.jpg", "production_companies": [{"name": "Walden Media", "id": 10221}, {"name": "New Line Cinema", "id": 12}, {"name": "Contrafilm", "id": 1836}], "release_date": "2012-02-10", "popularity": 1.36575382319577, "original_title": "Journey 2: The Mysterious Island", "budget": 79000000, "cast": [{"name": "Dwayne Johnson", "character": "Hank", "id": 18918, "credit_id": "52fe4871c3a368484e0f87e1", "cast_id": 12, "profile_path": "/akweMz59qsSoPUJYe7QpjAc2rQp.jpg", "order": 0}, {"name": "Josh Hutcherson", "character": "Sean", "id": 27972, "credit_id": "52fe4871c3a368484e0f87e5", "cast_id": 14, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 2}, {"name": "Kristin Davis", "character": "Liz", "id": 38025, "credit_id": "52fe4871c3a368484e0f87e9", "cast_id": 15, "profile_path": "/rSfRRPlWj1idJRMCwbkXYNunrlm.jpg", "order": 3}, {"name": "Vanessa Hudgens", "character": "Kailani", "id": 67599, "credit_id": "52fe4871c3a368484e0f87ed", "cast_id": 17, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Gabato", "id": 40481, "credit_id": "52fe4871c3a368484e0f87f1", "cast_id": 18, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Michael Caine", "character": "Alexander", "id": 3895, "credit_id": "52fe4871c3a368484e0f87f5", "cast_id": 19, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 6}, {"name": "Anna Colwell", "character": "Jessica", "id": 118593, "credit_id": "54d7380bc3a3685431002094", "cast_id": 20, "profile_path": "/8DTt6UmSOWfLwesT95pJtILXKfs.jpg", "order": 7}, {"name": "Stephen Caudill", "character": "Cop", "id": 223021, "credit_id": "54d7381f9251417160005639", "cast_id": 21, "profile_path": "/kK3YtJmfHzJ6s25ZWG6B1LizeYl.jpg", "order": 8}, {"name": "Branscombe Richmond", "character": "Tour Guide", "id": 106730, "credit_id": "54d73834c3a3683b8f0056c3", "cast_id": 22, "profile_path": "/d8i0tFr9JDfhGUhKtr25HnZey3s.jpg", "order": 9}, {"name": "Walter Bankson", "character": "Hockey Player", "id": 1424580, "credit_id": "54d73849c3a368543100209e", "cast_id": 23, "profile_path": null, "order": 10}], "directors": [{"name": "Brad Peyton", "department": "Directing", "job": "Director", "credit_id": "52fe4871c3a368484e0f87a1", "profile_path": "/v71weTNgqA1oQCfduUu40iG5RQy.jpg", "id": 132876}], "vote_average": 5.8, "runtime": 94}, "228194": {"poster_path": "/zQWT270zHKC4xVs0ogUwrU8EwqB.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88880821, "overview": "A story centered around an Indian family who moves to France and opens a restaurant across the street from a Michelin-starred French restaurant.", "video": false, "id": 228194, "genres": [{"id": 18, "name": "Drama"}], "title": "The Hundred-Foot Journey", "tagline": "Competition is the Spice of Life", "vote_count": 148, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "hi", "name": "\u0939\u093f\u0928\u094d\u0926\u0940"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2980648", "adult": false, "backdrop_path": "/7xHnyT8i7aO9AzGSBAEuH0a9Amy.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Harpo Films", "id": 3298}, {"name": "DreamWorks Studios", "id": 31893}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Participant Media", "id": 6735}, {"name": "Reliance Entertainment", "id": 7294}], "release_date": "2014-08-08", "popularity": 1.42358747583911, "original_title": "The Hundred-Foot Journey", "budget": 22000000, "cast": [{"name": "Helen Mirren", "character": "Madam Mallory", "id": 15735, "credit_id": "52fe4ec29251416c75161571", "cast_id": 1, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 0}, {"name": "Manish Dayal", "character": "Hassan", "id": 964971, "credit_id": "52fe4ec29251416c75161575", "cast_id": 2, "profile_path": "/orzIF6tazSEMQE9DmA8iC50eokd.jpg", "order": 1}, {"name": "Om Puri", "character": "Papa", "id": 11851, "credit_id": "52fe4ec29251416c75161579", "cast_id": 3, "profile_path": "/omm9W5Ae1uwccnLPeVB5PWqh0ix.jpg", "order": 2}, {"name": "Charlotte Le Bon", "character": "Marguerite", "id": 1021684, "credit_id": "52fe4ec29251416c7516157d", "cast_id": 4, "profile_path": "/vozgdySw0fnS3ue6AFcTsfHRbYq.jpg", "order": 3}, {"name": "Rohan Chand", "character": "Young Hassan", "id": 935701, "credit_id": "538e1cd60e0a2632c6000121", "cast_id": 7, "profile_path": "/6lTLuGmxXUmGZ2hN1Obz1alc1rt.jpg", "order": 4}, {"name": "Juhi Chawla", "character": "Mama", "id": 35810, "credit_id": "538e1cdd0e0a2632b7000112", "cast_id": 8, "profile_path": "/xi127HU2YD1H06d116XlGLhJHVF.jpg", "order": 5}, {"name": "Farzana Dua Elahe", "character": "Mahira", "id": 1327299, "credit_id": "538e1ce60e0a2632b7000115", "cast_id": 9, "profile_path": "/y9P19N082ldmrgS8cvjSJUmj7Wn.jpg", "order": 6}, {"name": "Dillon Mitra", "character": "Mukthar Kadam", "id": 1327300, "credit_id": "538e1cf20e0a2632c3000125", "cast_id": 10, "profile_path": "/69ocNhK1S4u37NmKTchG3uPHNCD.jpg", "order": 7}, {"name": "Jean Kinsell", "character": "French Critic", "id": 1327301, "credit_id": "538e1cfd0e0a2632c9000117", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Amit Shah", "character": "Mansur", "id": 150072, "credit_id": "551bf076c3a368766900354c", "cast_id": 44, "profile_path": "/bd5zJCXXA2h9TCuPVO0XkwU8fw3.jpg", "order": 9}, {"name": "Aria Pandya", "character": "Aisha", "id": 1418323, "credit_id": "54c4c9b79251416eae01022b", "cast_id": 15, "profile_path": "/r4ht3xWZilU6hHVMJzHfoeAJ9uX.jpg", "order": 11}, {"name": "Michel Blanc", "character": "Mayor", "id": 21175, "credit_id": "54c4ca82c3a36814210138dd", "cast_id": 16, "profile_path": "/6sLalr8OqR6WMlxzBR4C6OrsrnU.jpg", "order": 12}, {"name": "Cl\u00e9ment Sibony", "character": "Jean-Pierre", "id": 40939, "credit_id": "54c4cc04c3a3681421013909", "cast_id": 17, "profile_path": "/wEH1cT6DavVB5c3H0mn2iR88cPa.jpg", "order": 13}, {"name": "Vincent Elbaz", "character": "Paul", "id": 54918, "credit_id": "54c4ccab925141243200785c", "cast_id": 18, "profile_path": "/qfATCrMWRBVMiryb34uhrYTK3G6.jpg", "order": 14}, {"name": "Alban Aumard", "character": "Marcel", "id": 1088197, "credit_id": "54c4ce89925141243200787f", "cast_id": 19, "profile_path": "/4Y41NxGrTNCN3ZqSptehr5zDLs4.jpg", "order": 15}, {"name": "Shuna Lemoine", "character": "Mayor's Wife", "id": 1418346, "credit_id": "54c4ceff9251412432007897", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Antoine Blanquefort", "character": "Thomas", "id": 305036, "credit_id": "54c4d06f9251412ece001205", "cast_id": 21, "profile_path": "/9Dmf3M7rbOQxubxLyA1kbjkuLTq.jpg", "order": 17}, {"name": "Malcolm Granath", "character": "Swedish Chef", "id": 1418363, "credit_id": "54c4d1a89251412d9c001165", "cast_id": 22, "profile_path": "/aOboF7KDP0H9jShisJqwZJ5xlSU.jpg", "order": 18}, {"name": "Abhijit Buddhisagar", "character": "Baleine Grise Porter", "id": 1418368, "credit_id": "54c4d22c9251412e830012b5", "cast_id": 23, "profile_path": "/ba91RRkvriXFqeEkAwDVXrsq42t.jpg", "order": 19}, {"name": "Masood Akhtar", "character": "Anwar", "id": 35821, "credit_id": "54c4d645c3a3684a1f0012e1", "cast_id": 24, "profile_path": null, "order": 20}, {"name": "Arthur Mazet", "character": "Waiter", "id": 228718, "credit_id": "54c4d73dc3a36878d0007d81", "cast_id": 25, "profile_path": "/32HIGA41JAfCpGX8pvqxLVQouIR.jpg", "order": 21}, {"name": "Laetitia de Fombelle", "character": "Female Officer", "id": 1076707, "credit_id": "54c4d88dc3a368789b007d9f", "cast_id": 26, "profile_path": "/qKzzJE6NyOpXXKQ2H6T3GRFgq6p.jpg", "order": 22}, {"name": "C\u00e9dric Weber", "character": "Officer", "id": 1375629, "credit_id": "54c4d9eac3a368333800350f", "cast_id": 27, "profile_path": "/AnBbnt7VO8k5CyeALn1VP7bpuUW.jpg", "order": 23}, {"name": "Piero Filippi", "character": "Dog Walker", "id": 1418556, "credit_id": "54c52560c3a36878fb00755f", "cast_id": 28, "profile_path": null, "order": 24}, {"name": "Robert Gailhard", "character": "Mushroom Stall Holder", "id": 1418558, "credit_id": "54c525b7c3a368792900879f", "cast_id": 29, "profile_path": null, "order": 25}, {"name": "Matyelok Gibbs", "character": "Lady Shepherd", "id": 17479, "credit_id": "54c52702c3a368789b008526", "cast_id": 30, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 26}, {"name": "Paul Daubeze", "character": "Poultry Man", "id": 1418560, "credit_id": "54c5272bc3a3684a1f001aa0", "cast_id": 31, "profile_path": null, "order": 27}, {"name": "Didier Joy", "character": "Monsieur Itan", "id": 1418561, "credit_id": "54c527619251412ece001caf", "cast_id": 32, "profile_path": null, "order": 28}, {"name": "Max Rangotte", "character": "Angry Man", "id": 1418562, "credit_id": "54c527b99251416eae010a63", "cast_id": 33, "profile_path": null, "order": 29}, {"name": "Saachi Parekh", "character": "Young Aisha", "id": 1418563, "credit_id": "54c527ecc3a36878fb00759b", "cast_id": 34, "profile_path": null, "order": 30}, {"name": "Shaunak Parekh", "character": "Young Mukhtar", "id": 1418564, "credit_id": "54c52831c3a368792c0076e5", "cast_id": 35, "profile_path": null, "order": 31}, {"name": "St\u00e9phanie Renouvin", "character": "Newsreader", "id": 1418569, "credit_id": "54c52ec8c3a36878fb00760f", "cast_id": 36, "profile_path": "/rB1F4IPeCoN9ers1CpBWNAPjF0m.jpg", "order": 32}, {"name": "Audrey Meschi", "character": "Baleine Grise Cook", "id": 1402174, "credit_id": "54c5301d9251416185003810", "cast_id": 37, "profile_path": null, "order": 33}, {"name": "Christian Allieres", "character": "Cafe Server", "id": 1418572, "credit_id": "54c53042925141219b00058d", "cast_id": 38, "profile_path": null, "order": 34}, {"name": "Patrick Blatger", "character": "Mechanic", "id": 1418573, "credit_id": "54c53089c3a368789b0085e3", "cast_id": 39, "profile_path": null, "order": 35}, {"name": "Frederic Violante", "character": "Bike Rider", "id": 1418574, "credit_id": "54c530c5c3a368789b0085ee", "cast_id": 40, "profile_path": null, "order": 36}, {"name": "Chantal Filippi", "character": "Dog Walker's Wife", "id": 1418575, "credit_id": "54c530f8c3a368792c007793", "cast_id": 41, "profile_path": null, "order": 37}, {"name": "Sanjay Sharma", "character": "Mob Leader", "id": 1418576, "credit_id": "54c531e4c3a36823e30005be", "cast_id": 42, "profile_path": "/jiJ8haJRVZJvv0o4ADlFXbF6Ck1.jpg", "order": 38}, {"name": "Morgan Perez", "character": "Guard", "id": 458905, "credit_id": "54c533cb9251412ece001daa", "cast_id": 43, "profile_path": null, "order": 39}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe4ec29251416c75161587", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 7.5, "runtime": 122}, "39781": {"poster_path": "/fB8DRRd1aw3bug7toO9IRAmCp0d.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 34705850, "overview": "Two women, Nic and Jules brought a son and daughter into the world through artificial insemination. When one their children reaches age, both kids go behind their mother's backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.", "video": false, "id": 39781, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Kids Are All Right", "tagline": "Nic and Jules had the perfect family, until they met the man who made it all possible.", "vote_count": 92, "homepage": "http://filminfocus.com/focusfeatures/film/the_kids_are_all_right/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0842926", "adult": false, "backdrop_path": "/zvVo3p1L0LxoTKhxzXpKRZLYj6b.jpg", "production_companies": [{"name": "Focus Features", "id": 17301}, {"name": "Gilbert Films", "id": 10161}, {"name": "Saint Aire Production", "id": 23910}, {"name": "Artist International", "id": 23911}, {"name": "10th Hole Productions", "id": 6691}, {"name": "Antidote Films (I)", "id": 23912}, {"name": "Mandalay Vision", "id": 6667}, {"name": "Artist International Management", "id": 23913}], "release_date": "2010-07-09", "popularity": 0.475615048387883, "original_title": "The Kids Are All Right", "budget": 4000000, "cast": [{"name": "Julianne Moore", "character": "Jules", "id": 1231, "credit_id": "52fe47309251416c9106cfd7", "cast_id": 2, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 0}, {"name": "Annette Bening", "character": "Nic", "id": 516, "credit_id": "52fe47309251416c9106cfdb", "cast_id": 3, "profile_path": "/cVgrbhUo7EVWZKIgbJ7oAVMNkqn.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Paul", "id": 103, "credit_id": "52fe47309251416c9106cfdf", "cast_id": 4, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Mia Wasikowska", "character": "Joni", "id": 76070, "credit_id": "52fe47309251416c9106cfe3", "cast_id": 5, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 3}, {"name": "Josh Hutcherson", "character": "Laser", "id": 27972, "credit_id": "52fe47309251416c9106cfe7", "cast_id": 6, "profile_path": "/fuLYoaiiFhkJzAVj5jOtdZ8FlEl.jpg", "order": 4}, {"name": "Yaya DaCosta", "character": "Tanya", "id": 60033, "credit_id": "52fe47319251416c9106d02d", "cast_id": 18, "profile_path": "/4wsDc5bNsU7CNolFraPGTRdJfQR.jpg", "order": 5}, {"name": "James MacDonald", "character": "Clay's Dad", "id": 1188456, "credit_id": "52fe47319251416c9106d031", "cast_id": 19, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 6}, {"name": "Zosia Mamet", "character": "Sophia", "id": 206966, "credit_id": "539770a60e0a266db400a465", "cast_id": 20, "profile_path": "/sE3uZmkndftC1Z6yHT6WRycruHQ.jpg", "order": 7}, {"name": "Kunal Sharma", "character": "Jai", "id": 1224166, "credit_id": "548044dec3a36829ae001fb3", "cast_id": 21, "profile_path": "/6MMLQyvbGK1JWbg8aNKhzm15QWO.jpg", "order": 8}, {"name": "Eddie Hassell", "character": "Clay", "id": 170333, "credit_id": "5480452b9251416e74002361", "cast_id": 22, "profile_path": "/bHsGK8lh4i6lRteWtR3iy0odnbB.jpg", "order": 9}, {"name": "Joaqu\u00edn Garrido", "character": "Luis", "id": 104381, "credit_id": "54804546c3a36829ab002221", "cast_id": 23, "profile_path": "/13S8ckTXL5kwU6Oogm3f1HX9v9L.jpg", "order": 10}, {"name": "Rebecca Lawrence Levy", "character": "Brooke (as Rebecca Lawrence)", "id": 1188240, "credit_id": "548045589251416e7b001fe8", "cast_id": 24, "profile_path": "/yTEvXi1tFDTd77IDhLrC6a6lCDd.jpg", "order": 11}, {"name": "Lisa Eisner", "character": "Stella", "id": 1394120, "credit_id": "54804565c3a36817a5002022", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Eric Eisner", "character": "Joel", "id": 1394121, "credit_id": "548045859251416e7e002311", "cast_id": 26, "profile_path": "/gjgal7fuCZ8G12brxcs4i0DonH7.jpg", "order": 13}, {"name": "Sasha Spielberg", "character": "Waify Girl", "id": 8700, "credit_id": "5480459ec3a36817a5002034", "cast_id": 27, "profile_path": "/3ltMYYXQ6lZUxqLiAsTSn29cVCS.jpg", "order": 14}, {"name": "James MacDonald", "character": "Clay's Dad (as James Macdonald)", "id": 1188456, "credit_id": "548045b2c3a36829b50028a0", "cast_id": 28, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 15}, {"name": "Margo Victor", "character": "Bartender", "id": 1394124, "credit_id": "548045be9251416e81002154", "cast_id": 29, "profile_path": null, "order": 16}], "directors": [{"name": "Lisa Cholodenko", "department": "Directing", "job": "Director", "credit_id": "52fe47309251416c9106cfd3", "profile_path": "/xoEjXL2gjZ4b32Kx0ZRwfUzCyi4.jpg", "id": 75699}], "vote_average": 6.2, "runtime": 106}, "23398": {"poster_path": "/dpY7igIBW0Gw8LVLYgbCvjgc2aR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 443140005, "overview": "Pop sensations Alvin, Simon and Theodore end up in the care of Dave Seville's twenty-something nephew Toby. The boys must put aside music super stardom to return to school, and are tasked with saving the school's music program by winning the $25,000 prize in a battle of the bands. But the Chipmunks unexpectedly meet their match in three singing chipmunks known as The Chipettes - Brittany, Eleanor and Jeanette. Romantic and musical sparks are ignited when the Chipmunks and Chipettes square off.", "video": false, "id": 23398, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10402, "name": "Music"}, {"id": 10751, "name": "Family"}], "title": "Alvin and the Chipmunks: The Squeakquel", "tagline": "The Boys are back in town... and they have competition.", "vote_count": 170, "homepage": "http://www.munkyourself.com/", "belongs_to_collection": {"backdrop_path": "/qI483yHct3PBtIiOH3K3SVNUDq5.jpg", "poster_path": "/fLvRQcuk5ZFKnDvUC553XK3OnPC.jpg", "id": 167613, "name": "Alvin and the Chipmunks Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1231580", "adult": false, "backdrop_path": "/fltrFAIcNp8Ut41DpAHQRVdmn7I.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Bagdasarian Productions", "id": 10930}, {"name": "Regency Enterprises", "id": 508}], "release_date": "2009-12-21", "popularity": 0.870090114889189, "original_title": "Alvin and the Chipmunks: The Squeakquel", "budget": 75000000, "cast": [{"name": "Zachary Levi", "character": "Toby", "id": 69899, "credit_id": "52fe4468c3a368484e0215b9", "cast_id": 1, "profile_path": "/gAXGlrS9RlNA1sxJqi9C8gVsnUB.jpg", "order": 0}, {"name": "David Cross", "character": "Ian", "id": 212, "credit_id": "52fe4468c3a368484e0215bd", "cast_id": 2, "profile_path": "/y2W2HvL5bK2Y6HpjotO2AN63NU8.jpg", "order": 1}, {"name": "Jason Lee", "character": "Dave", "id": 11662, "credit_id": "52fe4468c3a368484e0215c1", "cast_id": 3, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 2}, {"name": "Justin Long", "character": "Alvin (voice)", "id": 15033, "credit_id": "52fe4468c3a368484e0215c5", "cast_id": 4, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 3}, {"name": "Matthew Gray Gubler", "character": "Simon (voice)", "id": 5661, "credit_id": "52fe4468c3a368484e0215c9", "cast_id": 5, "profile_path": "/q2O6kAh3xtkWny2zREjXyJtPdnq.jpg", "order": 4}, {"name": "Jesse McCartney", "character": "Theodore (voice)", "id": 49915, "credit_id": "52fe4468c3a368484e0215cd", "cast_id": 6, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 5}, {"name": "Amy Poehler", "character": "Eleanor (voice)", "id": 56322, "credit_id": "52fe4468c3a368484e0215d1", "cast_id": 7, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 6}, {"name": "Anna Faris", "character": "Jeanette (voice)", "id": 1772, "credit_id": "52fe4468c3a368484e0215d5", "cast_id": 8, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 7}, {"name": "Christina Applegate", "character": "Brittany (voice)", "id": 18979, "credit_id": "52fe4468c3a368484e0215d9", "cast_id": 9, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 8}, {"name": "Wendie Malick", "character": "Dr. Rubin", "id": 61980, "credit_id": "52fe4468c3a368484e0215dd", "cast_id": 10, "profile_path": "/1Av0jIi4Hk30kruQjaRH2Am2TIE.jpg", "order": 9}, {"name": "Anjelah N. Johnson", "character": "Julie", "id": 106934, "credit_id": "52fe4468c3a368484e0215e1", "cast_id": 11, "profile_path": "/dsa7J2Odf9iuMblrY55RxcRMjsY.jpg", "order": 10}, {"name": "Kathryn Joosten", "character": "Aunt Jackie", "id": 106935, "credit_id": "52fe4468c3a368484e0215e5", "cast_id": 12, "profile_path": "/jvZVB4qJT6EmDBcYhwsRkKjCnUP.jpg", "order": 11}, {"name": "Kevin G. Schmidt", "character": "Ryan", "id": 85140, "credit_id": "52fe4468c3a368484e0215e9", "cast_id": 13, "profile_path": "/vbGOkejEE7GmVBn5BeS5MmZZZqw.jpg", "order": 12}, {"name": "Chris Warren, Jr.", "character": "Xander", "id": 77196, "credit_id": "52fe4468c3a368484e0215ed", "cast_id": 14, "profile_path": "/zpNs0erSBOPg1PIpIz2uZz4gWC3.jpg", "order": 13}, {"name": "Bridgit Mendler", "character": "Becca", "id": 85176, "credit_id": "52fe4468c3a368484e0215f1", "cast_id": 15, "profile_path": "/ckfgebXa5RH6gniWiESgwDKEvIx.jpg", "order": 14}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe4468c3a368484e0215f7", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.5, "runtime": 88}, "50321": {"poster_path": "/6S7pkMjLrtmzn8uU5vRyTn5Az2A.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39549758, "overview": "Take out the trash, eat your broccoli - who needs moms, anyway? Nine-year-old Milo finds out just how much he needs his mom when she's nabbed by Martians who plan to steal her mom-ness for their own young. Milo's quest to save his mom involves stowing away on a spaceship, navigating an elaborate, multi-level planet and taking on the alien nation and their leader. With the help of a tech-savvy, underground earthman named Gribble and a rebel Martian girl called Ki, Milo just might find his way back to his mom - in more ways than one.", "video": false, "id": 50321, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Mars Needs Moms", "tagline": "Mom needs a little space.", "vote_count": 68, "homepage": "http://disney.go.com/disneypictures/marsneedsmoms/#home", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1305591", "adult": false, "backdrop_path": "/3TTP2qVda479YgtOLDWxhzaASXU.jpg", "production_companies": [{"name": "Walt Disney Animation Studios", "id": 6125}], "release_date": "2011-03-09", "popularity": 0.39416403705847, "original_title": "Mars Needs Moms", "budget": 150000000, "cast": [{"name": "Seth Green", "character": "Milo (voice)", "id": 13922, "credit_id": "52fe47c3c3a36847f8146d5d", "cast_id": 3, "profile_path": "/7ksgEtZZIhSkJmt7zMyVDOQfdxu.jpg", "order": 0}, {"name": "Joan Cusack", "character": "Mom (voice)", "id": 3234, "credit_id": "52fe47c3c3a36847f8146d61", "cast_id": 4, "profile_path": "/3jcrXcFYoSKEUvokzqrQ2UJGtw.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Gribble (voice)", "id": 58873, "credit_id": "52fe47c3c3a36847f8146d65", "cast_id": 5, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Breckin Meyer", "character": "Alien (voice)", "id": 33654, "credit_id": "52fe47c3c3a36847f8146d69", "cast_id": 6, "profile_path": "/reEueVJJwaDgJUyubFL7Ud87bpB.jpg", "order": 3}, {"name": "Elisabeth Harnois", "character": "Ki (voice)", "id": 78197, "credit_id": "52fe47c3c3a36847f8146d6d", "cast_id": 7, "profile_path": "/bBVitNtkzupyXn8HKtLTduPclje.jpg", "order": 4}, {"name": "Tom Everett Scott", "character": "Milo's Dad (voice)", "id": 16857, "credit_id": "52fe47c3c3a36847f8146d71", "cast_id": 8, "profile_path": "/5f85Hirx8TYIvb9irRtBSrqsq11.jpg", "order": 5}, {"name": "Mindy Sterling", "character": "Supervisor (voice)", "id": 13924, "credit_id": "52fe47c3c3a36847f8146d75", "cast_id": 9, "profile_path": "/ffeLktZ7JFCVK1uV2tuw4epSqz0.jpg", "order": 6}, {"name": "Julene Renee", "character": "Martian (voice)", "id": 42286, "credit_id": "52fe47c3c3a36847f8146d79", "cast_id": 10, "profile_path": "/gONOL0vTflEd5yH1x3hcr2maFV5.jpg", "order": 7}, {"name": "Raymond Ochoa", "character": "Martian Hatchling (voice)", "id": 963134, "credit_id": "52fe47c3c3a36847f8146d7d", "cast_id": 11, "profile_path": "/iayG9g3yq7OIrrzhN7FTQqfGqgW.jpg", "order": 8}, {"name": "Robert Ochoa", "character": "Martian Hatchling (voice)", "id": 984263, "credit_id": "52fe47c3c3a36847f8146d81", "cast_id": 12, "profile_path": "/y6y7isfgDHkWAFormHNPPGGLZhy.jpg", "order": 9}, {"name": "Ryan Ochoa", "character": "Martian Hatchling (voice)", "id": 492081, "credit_id": "52fe47c3c3a36847f8146d85", "cast_id": 13, "profile_path": "/mkWaVHOCScHYN26JXMHmamn9dkD.jpg", "order": 10}, {"name": "Seth Robert Dusky", "character": "Milo (voice) (as Seth Dusky)", "id": 1108010, "credit_id": "52fe47c3c3a36847f8146d89", "cast_id": 14, "profile_path": "/7nKCmACWqBpEpbjCskT216knfni.jpg", "order": 11}], "directors": [{"name": "Simon Wells", "department": "Directing", "job": "Director", "credit_id": "52fe47c3c3a36847f8146d53", "profile_path": "/sfartDj5d9bclP91YuunnaL7Fer.jpg", "id": 21879}], "vote_average": 5.8, "runtime": 88}, "249660": {"poster_path": "/XEK5B6a55ErDzRkupZ3rbq3SbN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 29789000, "overview": "Radisson finds the topic of religion painful because his Christian mother died when he was 12, though he had prayed and begged God to spare her life. This may be what led him to study philosophy so in depth that he ultimately became a philosophy professor, but his desire to now avoid the topic of religion does not mesh well with his career as a philosophy professor. His anger at God has him requesting his students quote Friedrich Nietzsche and, in exchange, he promises to allow them to skip the chapter on religion. This is not the only clue the movie makers give that they have read atheist material extensively. Radisson tells Josh that if he won't reach a consensus with the class, he must prove God is not dead. Radisson had already explained this was a metaphor and, taken in the context of Nietzsche's point, Josh does an excellent job of proving this.", "video": false, "id": 249660, "genres": [{"id": 18, "name": "Drama"}], "title": "God's Not Dead", "tagline": "", "vote_count": 68, "homepage": "http://godsnotdeadthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2528814", "adult": false, "backdrop_path": "/ikCGlDrdKPewgPBwHIP3QPtGvfu.jpg", "production_companies": [{"name": "Pure Flix Entertainment", "id": 6427}], "release_date": "2014-03-21", "popularity": 0.562393482298899, "original_title": "God's Not Dead", "budget": 17000000, "cast": [{"name": "Kevin Sorbo", "character": "Professor Radisson", "id": 51965, "credit_id": "52fe4f48c3a36847f82ca995", "cast_id": 1, "profile_path": "/kPwVLsAMDZDsFVmXjg1zG5cLltT.jpg", "order": 0}, {"name": "Shane Harper", "character": "Josh Wheaton", "id": 226371, "credit_id": "52fe4f48c3a36847f82ca999", "cast_id": 2, "profile_path": "/6As8XFBxrWaHsTiIk92Pn2BFQEu.jpg", "order": 1}, {"name": "David A.R. White", "character": "Reverend Dave", "id": 116431, "credit_id": "53fe25100e0a262df2002410", "cast_id": 20, "profile_path": "/klqX1BfakxcpjhiOuDtRS1aZoOh.jpg", "order": 2}, {"name": "Dean Cain", "character": "Mark", "id": 21721, "credit_id": "52fe4f48c3a36847f82ca9af", "cast_id": 7, "profile_path": "/cICjOmo5KZWdfJLBvIExDE6Ma5f.jpg", "order": 3}, {"name": "Willie Robertson", "character": "Willie Robertson", "id": 1003836, "credit_id": "52fe4f48c3a36847f82ca9a3", "cast_id": 4, "profile_path": null, "order": 4}, {"name": "Korie Robertson", "character": "Korie Robertson", "id": 1003840, "credit_id": "52fe4f48c3a36847f82ca9a7", "cast_id": 5, "profile_path": null, "order": 5}, {"name": "Hadeel Sittu", "character": "Ayisha", "id": 1357478, "credit_id": "53fe26970e0a262ddc00244c", "cast_id": 21, "profile_path": null, "order": 6}, {"name": "Paul Kwo", "character": "Martin Yip", "id": 1357479, "credit_id": "53fe26f00e0a262de800238e", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Trisha LaFache", "character": "Amy Ryan", "id": 5373, "credit_id": "53fe271c0e0a262de2002482", "cast_id": 23, "profile_path": null, "order": 8}, {"name": "Cory Oliver", "character": "Mina", "id": 184185, "credit_id": "52fe4f48c3a36847f82ca9b3", "cast_id": 8, "profile_path": null, "order": 9}, {"name": "Benjamin Ochieng", "character": "Reverend Jude", "id": 1235875, "credit_id": "53fe28060e0a262deb0024d7", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Marco Khan", "character": "Misrab", "id": 964347, "credit_id": "52fe4f48c3a36847f82ca9ab", "cast_id": 6, "profile_path": "/3clgQLGpIcPE7jW3LvJHijDY15d.jpg", "order": 11}, {"name": "Cassidy Gifford", "character": "Kara", "id": 1357480, "credit_id": "53fe28590e0a262de80023b5", "cast_id": 25, "profile_path": "/fNehfXVwco1XSsBJDfXIEpiYIMv.jpg", "order": 12}, {"name": "Jesse Wang", "character": "Martin's Father", "id": 1357481, "credit_id": "53fe28ab0e0a262def002545", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Lenore Banks", "character": "Mina's Mother", "id": 20765, "credit_id": "53fe28f90e0a262deb0024ed", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Russell Wolfe", "character": "Dr. Stevens", "id": 1085785, "credit_id": "53fe293a0e0a262de5002465", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Alex Aristidis", "character": "Fahid", "id": 1205881, "credit_id": "5344280bc3a36825b1000084", "cast_id": 11, "profile_path": "/szNg9vupjQrZ17iWOUyh2S1wpdU.jpg", "order": 16}, {"name": "Lisa Arnold", "character": "June Wheaton", "id": 78199, "credit_id": "5344281ac3a36825a8000071", "cast_id": 12, "profile_path": null, "order": 17}], "directors": [{"name": "Harold Cronk", "department": "Directing", "job": "Director", "credit_id": "52fe4f48c3a36847f82ca99f", "profile_path": "/lXyA8DhBSzNfwPkr7gNJBqgaJad.jpg", "id": 937340}], "vote_average": 6.6, "runtime": 113}, "277355": {"poster_path": "/hVOaBp86KZnsk2LJ71lr7BsvuPb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After she betrays a powerful mob boss, a woman matches wits and weaponry with a legion of killers who are out to collect the bounty on the heads of her and her family.", "video": false, "id": 277355, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Everly", "tagline": "Enter if you dare.", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1945084", "adult": false, "backdrop_path": "/pIZTDlgwbGojhUymHkPrdpTwdIV.jpg", "production_companies": [{"name": "Anonymous Content", "id": 30420}, {"name": "Crime Scene Pictures", "id": 13472}, {"name": "Vega, Baby!", "id": 43906}], "release_date": "2014-09-20", "popularity": 1.32122863625609, "original_title": "Everly", "budget": 0, "cast": [{"name": "Salma Hayek", "character": "Everly", "id": 3136, "credit_id": "53a0f3e10e0a26654b0013a4", "cast_id": 0, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Hiroyuki Watanabe", "character": "Taiko", "id": 554073, "credit_id": "53a0f450c3a3687ba6001078", "cast_id": 1, "profile_path": "/yFPTPGg04TuZJOvYb4zH04aBwK5.jpg", "order": 2}, {"name": "Jennifer Blanc", "character": "Dena", "id": 130024, "credit_id": "54b52818c3a3687a63002d20", "cast_id": 5, "profile_path": "/6Yf8rENETtZUIUPzWXlAdrcSeV7.jpg", "order": 3}, {"name": "Togo Igawa", "character": "Sadist", "id": 9192, "credit_id": "54b52826c3a3680940009267", "cast_id": 6, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 4}, {"name": "Caroline Chikezie", "character": "Zelda", "id": 25448, "credit_id": "54b528339251417369004af6", "cast_id": 7, "profile_path": "/qXHS3UhFx2dd6tSuBpPqfSbAy3.jpg", "order": 5}, {"name": "Gabriella Wright", "character": "Anna", "id": 118200, "credit_id": "54b5283d92514152d4001871", "cast_id": 8, "profile_path": "/tKPC9lweFGHwSOgEmhklw7OjHlR.jpg", "order": 6}, {"name": "Akie Kotabe", "character": "Dead Man", "id": 1322309, "credit_id": "54b528479251412ffc0035b5", "cast_id": 9, "profile_path": "/kML3sC3PH4BolXQBYkpY44p6G4a.jpg", "order": 7}], "directors": [{"name": "Joe Lynch", "department": "Directing", "job": "Director", "credit_id": "53a0f46ec3a3687bbc001026", "profile_path": null, "id": 84335}], "vote_average": 5.2, "runtime": 90}, "184125": {"poster_path": "/5MPJ0anWmqo29DCbUMgE2ZPzGJx.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "Jim is an average New Yorker living a peaceful life with a well paying job and a loving family. Suddenly, everything changes when the economy crashes causing Jim to lose everything. Filled with anger and rage, Jim snaps and goes to extreme lengths to seek revenge for the life taken from him.", "video": false, "id": 184125, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Assault on Wall Street", "tagline": "Power. Greed. Justice.", "vote_count": 98, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2368553", "adult": false, "backdrop_path": "/13aAN3iqwiYQ8TAKUCDgHl1DNxU.jpg", "production_companies": [{"name": "Lynn Peak Productions", "id": 18769}, {"name": "Studio West Productions(VCC)", "id": 23633}], "release_date": "2013-06-30", "popularity": 0.889852386542922, "original_title": "Assault on Wall Street", "budget": 0, "cast": [{"name": "Dominic Purcell", "character": "Jim", "id": 10862, "credit_id": "52fe4cb69251416c75123303", "cast_id": 1, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 0}, {"name": "Erin Karpluk", "character": "Rosie", "id": 59313, "credit_id": "52fe4cb69251416c75123307", "cast_id": 2, "profile_path": "/zYqwFR661S8pPigwHci6HlTnPly.jpg", "order": 1}, {"name": "Edward Furlong", "character": "Sean", "id": 820, "credit_id": "52fe4cb69251416c7512330b", "cast_id": 3, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 2}, {"name": "John Heard", "character": "Jeremy Stancroft", "id": 11512, "credit_id": "52fe4cb69251416c7512330f", "cast_id": 4, "profile_path": "/rz9E9VyZXeyspfCshXFKHIy5rP0.jpg", "order": 3}, {"name": "Keith David", "character": "Freddy", "id": 65827, "credit_id": "52fe4cb69251416c75123313", "cast_id": 5, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 4}, {"name": "Michael Par\u00e9", "character": "Frank", "id": 60650, "credit_id": "52fe4cb69251416c75123317", "cast_id": 6, "profile_path": "/g1cVLWWAgl3J1nNFhg67qXs8GUT.jpg", "order": 5}, {"name": "Lochlyn Munro", "character": "Robert", "id": 58058, "credit_id": "52fe4cb69251416c7512331b", "cast_id": 7, "profile_path": "/caBPICexFi48JIvsEdwJGjQrTmY.jpg", "order": 6}, {"name": "Tyron Leitso", "character": "Spalding Smith", "id": 67977, "credit_id": "52fe4cb69251416c7512331f", "cast_id": 8, "profile_path": "/3JYD6W7nIWRDjv68ClGHGuSoRyI.jpg", "order": 7}, {"name": "Mike Dopud", "character": "Tom Allgard", "id": 64674, "credit_id": "52fe4cb69251416c75123323", "cast_id": 9, "profile_path": "/2AWev6Jib3VJ3p2FPTxm7Erx81o.jpg", "order": 8}, {"name": "Barclay Hope", "character": "Ian Marwood", "id": 43431, "credit_id": "52fe4cb69251416c75123327", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Heather Feeney", "character": "Mary Jean", "id": 37697, "credit_id": "52fe4cb69251416c7512332b", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Maurice Cherrie", "character": "Nate", "id": 1167221, "credit_id": "52fe4cb69251416c7512332f", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Clint Howard", "character": "Chuck", "id": 15661, "credit_id": "52fe4cb69251416c75123333", "cast_id": 13, "profile_path": "/fIaMzJ5qbInzseGGjZi57Rx7Gv3.jpg", "order": 12}], "directors": [{"name": "Uwe Boll", "department": "Directing", "job": "Director", "credit_id": "52fe4cb69251416c75123339", "profile_path": "/8i6o27RrRGRR5iAcLSOBt06fcM7.jpg", "id": 23799}], "vote_average": 5.6, "runtime": 99}, "115348": {"poster_path": "/b6xylFodkxtChKRtS6Ng3X60YHT.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13785015, "overview": "An entry-level employee at a powerful corporation finds himself occupying a corner office, but at a dangerous price: he must spy on his boss's old mentor to secure for him a multi-billion dollar advantage.", "video": false, "id": 115348, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Paranoia", "tagline": "In a war between kings even a pawn can change the game.", "vote_count": 126, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1413495", "adult": false, "backdrop_path": "/wjQLsKKwBFZNWcj6lrEZc4rWk2.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Gaumont", "id": 9}, {"name": "Kintop Pictures", "id": 1490}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "IM Global", "id": 7437}, {"name": "Demarest Films", "id": 13241}, {"name": "EMJAG Productions", "id": 14654}, {"name": "Film 360", "id": 34077}, {"name": "E Stars Films", "id": 36353}], "release_date": "2013-08-16", "popularity": 1.42313235346649, "original_title": "Paranoia", "budget": 35000000, "cast": [{"name": "Liam Hemsworth", "character": "Adam Cassidy", "id": 96066, "credit_id": "52fe4b68c3a36847f82024f3", "cast_id": 9, "profile_path": "/eVeBiqx1vTsd1QCHOr24Cf13wb.jpg", "order": 0}, {"name": "Harrison Ford", "character": "Jock Goddard", "id": 3, "credit_id": "52fe4b68c3a36847f82024ef", "cast_id": 8, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Nicholas Wyatt", "id": 64, "credit_id": "52fe4b68c3a36847f82024f7", "cast_id": 10, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Amber Heard", "character": "Emma Jennings", "id": 55085, "credit_id": "52fe4b68c3a36847f82024eb", "cast_id": 7, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 3}, {"name": "Josh Holloway", "character": "Agent Gamble", "id": 142636, "credit_id": "52fe4b68c3a36847f82024fb", "cast_id": 11, "profile_path": "/4vMj8zIMSZoxxXefanh5SuEDDJ6.jpg", "order": 4}, {"name": "Embeth Davidtz", "character": "Judith Bolton", "id": 6368, "credit_id": "52fe4b68c3a36847f82024ff", "cast_id": 12, "profile_path": "/gmc4nZtGc6bge9DnriR57VYq0dA.jpg", "order": 5}, {"name": "Richard Dreyfuss", "character": "Frank Cassidy", "id": 3037, "credit_id": "52fe4b68c3a36847f8202503", "cast_id": 13, "profile_path": "/qJW1IQD4XjzwKfcrP0ESRvDSBar.jpg", "order": 6}, {"name": "Julian McMahon", "character": "Meechum", "id": 20402, "credit_id": "52fe4b68c3a36847f8202507", "cast_id": 14, "profile_path": "/jg3SSavvKPMVqUy4vKPaQWNFRIc.jpg", "order": 7}, {"name": "Lucas Till", "character": "Kevin", "id": 429, "credit_id": "52fe4b68c3a36847f820250b", "cast_id": 15, "profile_path": "/tzRh4clufpcLp7fQSP1nFFMwQi.jpg", "order": 8}, {"name": "Angela Sarafyan", "character": "Alison", "id": 85143, "credit_id": "52fe4b68c3a36847f820250f", "cast_id": 16, "profile_path": "/wJoJLYaSpRF9Ihca1reca1uR9he.jpg", "order": 9}, {"name": "Charlie Hofheimer", "character": "Richard McCallister", "id": 12790, "credit_id": "52fe4b68c3a36847f8202513", "cast_id": 17, "profile_path": "/gXQkqXYrlAGJgXRPpOwEv0NjSgT.jpg", "order": 10}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe4b68c3a36847f82024c9", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 5.8, "runtime": 106}, "269173": {"poster_path": "/7STXBkSO5WEVF98B3ZOXanKMNK6.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A former soldier is taken captive and awakens in the back of a van where he learns that he only has a few moments to figure out how he got there.", "video": false, "id": 269173, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Anomaly", "tagline": "If you only had 09 minutes 47 seconds, What would you do?", "vote_count": 50, "homepage": "https://www.facebook.com/TheAnomalyMovie?fref=ts", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2962726", "adult": false, "backdrop_path": "/tp6GSi9CuptS149015jwsW6tY2k.jpg", "production_companies": [{"name": "Tea Shop & Film Company", "id": 36735}, {"name": "Unstoppable Entertainment", "id": 6371}, {"name": "thefyzz", "id": 36109}], "release_date": "2014-07-04", "popularity": 0.996308971269391, "original_title": "The Anomaly", "budget": 0, "cast": [{"name": "Ian Somerhalder", "character": "Harkin", "id": 19211, "credit_id": "536e48b0c3a368124a00d1b7", "cast_id": 0, "profile_path": "/5LwxVwxf5pLVycUeYE3uMmk5oS7.jpg", "order": 1}, {"name": "Alexis Knapp", "character": "Dana", "id": 999790, "credit_id": "536e48d7c3a368122600cb4e", "cast_id": 1, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 2}, {"name": "Noel Clarke", "character": "Ryan", "id": 76242, "credit_id": "536e48e5c3a36839c100331e", "cast_id": 2, "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "order": 3}, {"name": "Luke Hemsworth", "character": "", "id": 216986, "credit_id": "536e4901c3a368122600cb51", "cast_id": 3, "profile_path": "/524YwxvMCtwVzpxW1DkAgmE3j5d.jpg", "order": 4}, {"name": "Michael Bisping", "character": "Sergio", "id": 78909, "credit_id": "536e4a12c3a3687e6c0004a7", "cast_id": 4, "profile_path": "/wj6i8K1JGruCuE9dhXDO2iVnTI9.jpg", "order": 5}, {"name": "Art Parkinson", "character": "Alex", "id": 1050248, "credit_id": "536e4a30c3a3683bf900431c", "cast_id": 5, "profile_path": "/lm6BkM9uf69sd30o87kJ83ezKzN.jpg", "order": 6}, {"name": "Ali Cook", "character": "l'agent Travis", "id": 1056072, "credit_id": "536e4a4fc3a368122600cb5c", "cast_id": 6, "profile_path": "/9WxC22HycnaenkF0H6oMvmjNwmE.jpg", "order": 7}, {"name": "Reuben Dabrow", "character": "Polska", "id": 1379064, "credit_id": "5450b528c3a3680233003b0d", "cast_id": 38, "profile_path": "/68ezKAD9q6WeHKbxcEa1XeLrafJ.jpg", "order": 8}, {"name": "Victoria Broom", "character": "Alex's mother", "id": 120888, "credit_id": "5450b5410e0a2642c2000dc4", "cast_id": 39, "profile_path": "/1SDwFNV3IsgURu96h0ShzVTbXhs.jpg", "order": 9}, {"name": "Lee Charles", "character": "Patch", "id": 1301638, "credit_id": "5450b5620e0a2601d8003c17", "cast_id": 40, "profile_path": null, "order": 10}, {"name": "Eleanor Gecks", "character": "Officer Sanchez", "id": 119413, "credit_id": "5450b5980e0a263a18003daa", "cast_id": 41, "profile_path": "/qBLF5CITi2A8ZKx6fdrQn7PFqNL.jpg", "order": 11}, {"name": "Brian Cox", "character": "Dr. Langham", "id": 1248, "credit_id": "54730a3fc3a36822ba000fd7", "cast_id": 42, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 12}, {"name": "Niall Greig Fulton", "character": "Leonid", "id": 122648, "credit_id": "54730c61c3a368058e0015d9", "cast_id": 43, "profile_path": "/jVbIWnCYirZqprAh0RTW9SWE6XW.jpg", "order": 13}, {"name": "Kumud Pant", "character": "Shanghai's friend", "id": 1326945, "credit_id": "5473137dc3a36833ad00331e", "cast_id": 44, "profile_path": "/gxdg4QzAuuZ466NQBAqGjPOLQri.jpg", "order": 14}, {"name": "Jozef Aoki", "character": "Marble game player", "id": 1388891, "credit_id": "547317cfc3a36833ad003397", "cast_id": 45, "profile_path": "/yROpOphdySQ4jNYh0RWvdx9ASJE.jpg", "order": 15}, {"name": "Paul Blackwell", "character": "Futuristic police", "id": 37293, "credit_id": "54731b30c3a3682c55000e17", "cast_id": 46, "profile_path": "/trKFaMohgm2kAACO4lDAg47kawN.jpg", "order": 16}, {"name": "Siegfrid Calizo", "character": "Shanghai Boy", "id": 1388902, "credit_id": "54731cc1c3a368058e0017a8", "cast_id": 47, "profile_path": "/nIDGR3inuoyA0hdqe3BYLIYKEdW.jpg", "order": 17}, {"name": "Olivia Chenery", "character": "Sandy", "id": 1388903, "credit_id": "54731e17c3a3682cbe0000b9", "cast_id": 48, "profile_path": "/zxOcxtmh3kIbEFDFWCluV3dguiy.jpg", "order": 18}, {"name": "Anthony Farrelly", "character": "NYPD Officer", "id": 1369015, "credit_id": "54731f5ac3a3682cbe0000d4", "cast_id": 49, "profile_path": null, "order": 19}, {"name": "Shane Hart", "character": "Futuristic NYPD", "id": 1358596, "credit_id": "54732bb59251416dc3001a2b", "cast_id": 50, "profile_path": "/uc73DMBz9EcvvcdvRAwWvcY0lgA.jpg", "order": 20}, {"name": "osy ikhile", "character": "Actor", "id": 1388917, "credit_id": "54732c83c3a368058e001917", "cast_id": 51, "profile_path": "/xXG5aCvSUmnW3Fe0OyBnvjROaij.jpg", "order": 21}, {"name": "Jean-Paul Jesstiece", "character": "Beefqoe", "id": 1164005, "credit_id": "54732d399251412e25000c46", "cast_id": 52, "profile_path": null, "order": 22}, {"name": "Mathew Kaye", "character": "Milyya", "id": 1388918, "credit_id": "54732da0c3a3682cbe000221", "cast_id": 53, "profile_path": null, "order": 23}, {"name": "Andreas Matopoulos", "character": "Mario Luigi", "id": 1388919, "credit_id": "54732e32c3a36812de00033e", "cast_id": 54, "profile_path": null, "order": 24}, {"name": "Allistair McNab", "character": "Delphingogol", "id": 1265256, "credit_id": "54732ee89251416dc3001a7b", "cast_id": 55, "profile_path": "/f5bpEswRRUHNVY3XAqc5JDatsVC.jpg", "order": 25}, {"name": "Shane Nolan", "character": "Futuristic police officer", "id": 93778, "credit_id": "54732f879251414b4b000295", "cast_id": 56, "profile_path": null, "order": 26}, {"name": "Lydia Piechowiak", "character": "Madame Koschechka", "id": 1388920, "credit_id": "54732fe99251413a5d0044fc", "cast_id": 57, "profile_path": null, "order": 27}, {"name": "Craig Russell", "character": "Terkye", "id": 1388922, "credit_id": "5473323ec3a36812de0003b3", "cast_id": 58, "profile_path": "/onhYpWmQFhIws3U6Kf6IZBVGdT2.jpg", "order": 28}, {"name": "Jamie Swayer", "character": "Myshtsy", "id": 1388924, "credit_id": "547332e69251416dc3001adc", "cast_id": 59, "profile_path": null, "order": 29}, {"name": "Nick Thomas-Webster", "character": "Riot Police Commander", "id": 209657, "credit_id": "547333cd9251412b6d000796", "cast_id": 60, "profile_path": "/Acc5d0jcpf5xLFfayYTWqbldwHT.jpg", "order": 30}, {"name": "Buppha Witt", "character": "Supporting", "id": 1388925, "credit_id": "547334159251412b6d0007aa", "cast_id": 61, "profile_path": null, "order": 31}, {"name": "Leila Wong", "character": "Shanghai Girl", "id": 1312524, "credit_id": "54733524c3a3682cbe0002dd", "cast_id": 62, "profile_path": "/fbFl7hbj7UYLrrbdKB2VddiLf8e.jpg", "order": 32}], "directors": [{"name": "Noel Clarke", "department": "Directing", "job": "Director", "credit_id": "53ca34ef0e0a26473f001ae4", "profile_path": "/2ggZZ3bHvXyvD2fODiAjLLTQ4kx.jpg", "id": 76242}], "vote_average": 5.1, "runtime": 97}, "138103": {"poster_path": "/fLfpaNso9leKIMp72CjvHEC7VLv.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 204000000, "overview": "Barney (Stallone), Christmas (Statham) and the rest of the team comes face-to-face with Conrad Stonebanks (Gibson), who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill... or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables' most personal battle yet.", "video": false, "id": 138103, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "The Expendables 3", "tagline": "New team. New attitude. New mission.", "vote_count": 657, "homepage": "http://theexpendables3film.com/", "belongs_to_collection": {"backdrop_path": "/lA7oDSt6LkyDqtbFGbyuG0afmTI.jpg", "poster_path": "/mpzHpaXjBc7bHAhwcerIznnq9qV.jpg", "id": 126125, "name": "The Expendables Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2333784", "adult": false, "backdrop_path": "/5ldMfEYNk0fea8QQ0mjyrksIr1M.jpg", "production_companies": [{"name": "Davis-Films", "id": 342}, {"name": "Nu Image Films", "id": 925}, {"name": "LionsGate", "id": 7571}, {"name": "Millennium Films", "id": 10254}, {"name": "Ex3 Productions", "id": 28384}, {"name": "Fipex Holding", "id": 40822}], "release_date": "2014-08-15", "popularity": 3.04720426858812, "original_title": "The Expendables 3", "budget": 90000000, "cast": [{"name": "Sylvester Stallone", "character": "Barney Ross", "id": 16483, "credit_id": "52fe4c3fc3a368484e1aeb5d", "cast_id": 1, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Jason Statham", "character": "Lee Christmas", "id": 976, "credit_id": "52fe4c3fc3a368484e1aeb61", "cast_id": 2, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Harrison Ford", "character": "Max Drummer", "id": 3, "credit_id": "52fe4c3fc3a368484e1aeb87", "cast_id": 13, "profile_path": "/7CcoVFTogQgex2kJkXKMe8qHZrC.jpg", "order": 2}, {"name": "Arnold Schwarzenegger", "character": "Trench", "id": 1100, "credit_id": "52fe4c3fc3a368484e1aeb8b", "cast_id": 14, "profile_path": "/3cWGPgdJn1s4O2Rvo6zN7yHkzOe.jpg", "order": 3}, {"name": "Mel Gibson", "character": "Conrad Stonebanks", "id": 2461, "credit_id": "52fe4c3fc3a368484e1aeb83", "cast_id": 12, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 4}, {"name": "Wesley Snipes", "character": "Doc", "id": 10814, "credit_id": "52fe4c3fc3a368484e1aeb7b", "cast_id": 10, "profile_path": "/hQ6EBa6vgu7HoZpzms8Y10VL5Iw.jpg", "order": 5}, {"name": "Randy Couture", "character": "Toll Road", "id": 74748, "credit_id": "52fe4c3fc3a368484e1aeb69", "cast_id": 6, "profile_path": "/rsUeCsaKCY01iWK1chOW9VZkOMO.jpg", "order": 6}, {"name": "Dolph Lundgren", "character": "Gunnar Jensen", "id": 16644, "credit_id": "52fe4c3fc3a368484e1aeb7f", "cast_id": 11, "profile_path": "/hjR1tpZV5XKX8daIKmU80ZuOfMO.jpg", "order": 7}, {"name": "Terry Crews", "character": "Hale Caesar", "id": 53256, "credit_id": "52fe4c3fc3a368484e1aeb65", "cast_id": 4, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 8}, {"name": "Kelsey Grammer", "character": "Bonaparte", "id": 7090, "credit_id": "52fe4c3fc3a368484e1aeb93", "cast_id": 16, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 9}, {"name": "Glen Powell", "character": "Thorn", "id": 83271, "credit_id": "53d6f28d0e0a260331000656", "cast_id": 35, "profile_path": "/sCeY5nuPUhfwWElxNtXuwRYKMBr.jpg", "order": 10}, {"name": "Antonio Banderas", "character": "Galgo", "id": 3131, "credit_id": "52fe4c3fc3a368484e1aeb73", "cast_id": 8, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 11}, {"name": "Victor Ortiz", "character": "Mars", "id": 1347239, "credit_id": "53d6f7fac3a3683a31000502", "cast_id": 36, "profile_path": "/ljz37lDYLjOgE7BSc0vy9rdWFoF.jpg", "order": 12}, {"name": "Ronda Rousey", "character": "Luna", "id": 997887, "credit_id": "52fe4c3fc3a368484e1aeb9b", "cast_id": 18, "profile_path": "/rspN0StWezXvYevDlN6AOJeg9rA.jpg", "order": 13}, {"name": "Kellan Lutz", "character": "John Smilee", "id": 34502, "credit_id": "52fe4c3fc3a368484e1aeb8f", "cast_id": 15, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 14}, {"name": "Jet Li", "character": "Yin Yang", "id": 1336, "credit_id": "52fe4c3fc3a368484e1aeb77", "cast_id": 9, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 15}, {"name": "Ivan Kostadinov", "character": "Krug", "id": 1409017, "credit_id": "54a9b374c3a3680c2b004fd8", "cast_id": 101, "profile_path": "/r0PK7rpI0h5zSTXuBVbtC3koBoW.jpg", "order": 16}, {"name": "Robert Davi", "character": "Vata", "id": 2055, "credit_id": "52fe4c3fc3a368484e1aeb97", "cast_id": 17, "profile_path": "/vKmIyAdXrO0G6N92xCmWSysxiZv.jpg", "order": 17}, {"name": "Nikolay Stoyanov Ilchev", "character": "Local Cop #1", "id": 1409123, "credit_id": "54aa2ef0c3a3680c1e006220", "cast_id": 102, "profile_path": "/3naDommvIfvRt8I47mwughcBcga.jpg", "order": 18}, {"name": "Daniel Angelov", "character": "Local Cop #2", "id": 1409132, "credit_id": "54aa320c9251417e0600343e", "cast_id": 103, "profile_path": null, "order": 19}, {"name": "Slavi Slavov", "character": "Warden", "id": 90116, "credit_id": "54aa33b1c3a3680c1e0062a3", "cast_id": 104, "profile_path": "/QeOYzHdXviA7zcoqMEThlKQP9U.jpg", "order": 20}, {"name": "Dimiter Doichinov", "character": "Head Bodyguard", "id": 1350263, "credit_id": "54aa36c7c3a3680c300067f5", "cast_id": 105, "profile_path": null, "order": 21}, {"name": "Nikolay Stanoev", "character": "Tech Guy", "id": 559369, "credit_id": "54aa393392514155f2000f1c", "cast_id": 106, "profile_path": "/jKlUrkyC4GhZ25dJua17ieGwdX.jpg", "order": 22}, {"name": "Harry Anichkin", "character": "Colonel", "id": 131101, "credit_id": "54aa3acac3a36822b7000ea4", "cast_id": 107, "profile_path": "/g4p8QC0VnYkCyYBtRBSiFEtIC71.jpg", "order": 23}, {"name": "Boswell Maloka", "character": "Somali Drug Warlord", "id": 1409157, "credit_id": "54aa3b8d9251414d630062ee", "cast_id": 108, "profile_path": null, "order": 24}, {"name": "Natalie Burn", "character": "Conrad's Wife", "id": 1317159, "credit_id": "54aa3e2ac3a368241e000c4b", "cast_id": 109, "profile_path": "/gX2F7OfsLT2NhjgaQzPQ1viyH1M.jpg", "order": 25}, {"name": "Velizar Binev", "character": "Art Broker", "id": 22018, "credit_id": "5486ced6c3a3681cfd001861", "cast_id": 99, "profile_path": "/rp5hKo8WEFcqIuh6eDGix2QxYwA.jpg", "order": 26}, {"name": "Sarai Givaty", "character": "Camilla", "id": 206024, "credit_id": "5486cf1c92514175fa0012e7", "cast_id": 100, "profile_path": "/i52Gaf6Q0NcisixV38ytRCEdDYj.jpg", "order": 27}, {"name": "Liubomir Simeonov", "character": "Cyclops", "id": 1409178, "credit_id": "54aa41c69251415757000f09", "cast_id": 110, "profile_path": "/88RTVUA64u0eCYOr1wbJjRFICcM.jpg", "order": 28}, {"name": "Frank Pesce", "character": "Fight Watcher", "id": 101615, "credit_id": "54aa4423c3a3680c30006988", "cast_id": 111, "profile_path": "/qkMpNT7rJj8offjNuv5OZ0VeUVQ.jpg", "order": 29}, {"name": "Thomas Canestraro", "character": "Conrad's Henchman", "id": 1409187, "credit_id": "54aa458a9251417e060035f8", "cast_id": 112, "profile_path": "/gz67lEoYDSpaXF7cCUH5vvV8GeI.jpg", "order": 30}], "directors": [{"name": "Patrick Hughes", "department": "Directing", "job": "Director", "credit_id": "52fe4c3fc3a368484e1aeb6f", "profile_path": "/bzGqSV7Y3I9KWTcCd3u4TDQqW6A.jpg", "id": 143059}], "vote_average": 6.4, "runtime": 127}, "72570": {"poster_path": "/uh8t52yMz0WWsZkuk1c6i9JgEwE.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 124, "overview": "Happy young married couple Paige (McAdams) and Leo (Tatum) are, well, happy. Then a car accident puts Paige into a life-threatening coma. Upon awakening she has lost the previous five years of memories, including those of her beloved Leo, her wedding, a confusing relationship with her parents, or the ending of her relationship with her ex-fiance. Despite these complications, Leo endeavors to win her heart again and rebuild their marriage.", "video": false, "id": 72570, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Vow", "tagline": "Inspired by True Events", "vote_count": 328, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1606389", "adult": false, "backdrop_path": "/cfp28CJU7Xak3MEjjIMkZLkTtIW.jpg", "production_companies": [{"name": "Spyglass Entertainment", "id": 158}, {"name": "Screen Gems", "id": 3287}], "release_date": "2012-02-10", "popularity": 1.29393445165899, "original_title": "The Vow", "budget": 30000000, "cast": [{"name": "Rachel McAdams", "character": "Paige", "id": 53714, "credit_id": "52fe4873c3a368484e0f8ed1", "cast_id": 1001, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Leo", "id": 38673, "credit_id": "52fe4873c3a368484e0f8ed5", "cast_id": 1002, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Sam Neill", "character": "Bill Thornton", "id": 4783, "credit_id": "52fe4873c3a368484e0f8ed9", "cast_id": 1003, "profile_path": "/bmTxJ3szZaQNCgYOaVRRQxBDQlF.jpg", "order": 2}, {"name": "Scott Speedman", "character": "Jeremy", "id": 100, "credit_id": "52fe4873c3a368484e0f8edd", "cast_id": 1004, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 3}, {"name": "Jessica Lange", "character": "Rita Thornton", "id": 4431, "credit_id": "52fe4873c3a368484e0f8ee1", "cast_id": 1005, "profile_path": "/hC862LK6M6mMcCnhOzIyfvTmQk4.jpg", "order": 4}, {"name": "Lucas Bryant", "character": "Kyle", "id": 213315, "credit_id": "52fe4873c3a368484e0f8ee5", "cast_id": 1006, "profile_path": "/jtTHFknoCanVoP2N99Pga9Y8Rz3.jpg", "order": 5}, {"name": "Kristina Pesic", "character": "Lizbet", "id": 88930, "credit_id": "52fe4873c3a368484e0f8ee9", "cast_id": 1007, "profile_path": "/2e30dfLAMGcPaNQzXwpnWMsgmsY.jpg", "order": 6}, {"name": "Jessica McNamee", "character": "Gwen", "id": 136347, "credit_id": "52fe4874c3a368484e0f8ef9", "cast_id": 1011, "profile_path": "/6ib5u2Xgo2TPgzamfNHPTFqmhxL.jpg", "order": 7}, {"name": "Dillon Casey", "character": "Ryan", "id": 1235237, "credit_id": "52fe4874c3a368484e0f8f03", "cast_id": 1013, "profile_path": "/kt2hCY9L96GeHTQnYvGojm7Sx5v.jpg", "order": 8}, {"name": "Tatiana Maslany", "character": "Lily", "id": 61134, "credit_id": "52fe4874c3a368484e0f8f07", "cast_id": 1014, "profile_path": "/ab7IuPThWGtcAxxwn9po9Npk5xf.jpg", "order": 9}], "directors": [{"name": "Michael Sucsy", "department": "Directing", "job": "Director", "credit_id": "52fe4873c3a368484e0f8ecd", "profile_path": null, "id": 566328}], "vote_average": 6.6, "runtime": 104}, "72571": {"poster_path": "/uDO3wyyxrMm93lZZBuslLQxNMgJ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 205703818, "overview": "In 1988, evil begins to terrorize young sisters Katie and Kristi for the first time when an invisible entity resides in their home.", "video": false, "id": 72571, "genres": [{"id": 27, "name": "Horror"}], "title": "Paranormal Activity 3", "tagline": "It Runs In The Family", "vote_count": 200, "homepage": "http://www.paranormalmovie.com/", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1778304", "adult": false, "backdrop_path": "/7b0ksqDWSZzmfOLSOok7Hh8eKqk.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}, {"name": "Room 101", "id": 6302}], "release_date": "2011-10-19", "popularity": 0.850251257362021, "original_title": "Paranormal Activity 3", "budget": 5000000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe4874c3a368484e0f8f41", "cast_id": 1003, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "Sprague Grayden", "character": "Kristi Rey", "id": 118243, "credit_id": "52fe4874c3a368484e0f8f45", "cast_id": 1004, "profile_path": "/xgFJngEapZILERHqwkxu07LNZwN.jpg", "order": 1}, {"name": "Lauren Bittner", "character": "Julie", "id": 176748, "credit_id": "52fe4874c3a368484e0f8f49", "cast_id": 1005, "profile_path": "/rhOQKwVr1DhEGXEARRTXeqfOzZ1.jpg", "order": 2}, {"name": "Christopher Nicholas Smith", "character": "Dennis", "id": 579064, "credit_id": "52fe4874c3a368484e0f8f4d", "cast_id": 1006, "profile_path": null, "order": 3}, {"name": "Chloe Csengery", "character": "Young Katie", "id": 995457, "credit_id": "52fe4874c3a368484e0f8f5d", "cast_id": 1010, "profile_path": null, "order": 4}, {"name": "Jessica Tyler Brown", "character": "Young Kristi", "id": 995458, "credit_id": "52fe4874c3a368484e0f8f61", "cast_id": 1011, "profile_path": null, "order": 5}, {"name": "Hallie Foote", "character": "Grandma Lois", "id": 571244, "credit_id": "52fe4874c3a368484e0f8f65", "cast_id": 1012, "profile_path": null, "order": 6}, {"name": "Marilyn Alex", "character": "Creepy Lady", "id": 995459, "credit_id": "52fe4874c3a368484e0f8f69", "cast_id": 1013, "profile_path": null, "order": 7}, {"name": "Dustin Ingram", "character": "Randy Rosen", "id": 206112, "credit_id": "52fe4874c3a368484e0f8f6d", "cast_id": 1014, "profile_path": null, "order": 8}, {"name": "Jessica Berger", "character": "Kid", "id": 155037, "credit_id": "52fe4874c3a368484e0f8f71", "cast_id": 1015, "profile_path": null, "order": 9}, {"name": "Maria Olsen", "character": "Creepy Lady", "id": 142402, "credit_id": "55143e56c3a36861950035e3", "cast_id": 1024, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 10}], "directors": [{"name": "Henry Joost", "department": "Directing", "job": "Director", "credit_id": "52fe4874c3a368484e0f8f37", "profile_path": "/wP5btUyPGGinHoa3GJmudZB8Pwt.jpg", "id": 142272}, {"name": "Ariel Schulman", "department": "Directing", "job": "Director", "credit_id": "52fe4874c3a368484e0f8f3d", "profile_path": "/jWQRMBFA4AajaA0DJ3CrLzZ2Vby.jpg", "id": 142276}], "vote_average": 6.2, "runtime": 83}, "190955": {"poster_path": "/qDLbBFoIeGqJhWHI0vnxU85E3De.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.", "video": false, "id": 190955, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Blood Ties", "tagline": "Crime runs in the family.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1747958", "adult": false, "backdrop_path": "/ytm4breWckabzpae7zFGOeSbl9Y.jpg", "production_companies": [{"name": "Chi-Fou-Mi Productions", "id": 34780}, {"name": "Wild Bunch", "id": 856}, {"name": "LGM Productions", "id": 2490}, {"name": "Les Productions du Tr\u00e9sor", "id": 2612}, {"name": "Mars Distribution", "id": 2908}, {"name": "Canal+", "id": 5358}, {"name": "France T\u00e9l\u00e9vision", "id": 7454}, {"name": "Worldview Entertainment", "id": 9015}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "M6", "id": 11261}, {"name": "France 3 Cinema", "id": 16804}, {"name": "Caneo Films", "id": 19690}, {"name": "Grisbi Productions", "id": 32242}, {"name": "France 4", "id": 33928}, {"name": "W9", "id": 34774}, {"name": "Treasure Company", "id": 34782}], "release_date": "2013-10-28", "popularity": 1.20794783925524, "original_title": "Blood Ties", "budget": 0, "cast": [{"name": "Clive Owen", "character": "Chris Pierzynski", "id": 2296, "credit_id": "52fe4c749251416c910f55e5", "cast_id": 8, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Billy Crudup", "character": "Frank", "id": 8289, "credit_id": "52fe4c749251416c910f55e9", "cast_id": 9, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 1}, {"name": "Marion Cotillard", "character": "Monica", "id": 8293, "credit_id": "52fe4c739251416c910f55dd", "cast_id": 6, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 2}, {"name": "Mila Kunis", "character": "Natalie", "id": 18973, "credit_id": "52fe4c739251416c910f55d9", "cast_id": 5, "profile_path": "/bnuXAsWKpQGqoB5SPQ8vuJLqVRV.jpg", "order": 3}, {"name": "Zoe Saldana", "character": "Vanessa", "id": 8691, "credit_id": "52fe4c739251416c910f55e1", "cast_id": 7, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 4}, {"name": "Matthias Schoenaerts", "character": "Anthony Scarfo", "id": 73381, "credit_id": "52fe4c749251416c910f55f5", "cast_id": 12, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 5}, {"name": "James Caan", "character": "Leon", "id": 3085, "credit_id": "52fe4c749251416c910f55ed", "cast_id": 10, "profile_path": "/g4bxNXWft1jLZX8gKk4G6ypkTUf.jpg", "order": 6}, {"name": "Lili Taylor", "character": "Marie", "id": 3127, "credit_id": "52fe4c749251416c910f55f1", "cast_id": 11, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 7}, {"name": "Griffin Dunne", "character": "McNally", "id": 2171, "credit_id": "52fe4c749251416c910f55f9", "cast_id": 13, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 8}, {"name": "Noah Emmerich", "character": "Lt. Colon", "id": 11315, "credit_id": "52fe4c749251416c910f55fd", "cast_id": 14, "profile_path": "/iTPoDQq2R5zU17hRwLtWkm2gCmK.jpg", "order": 9}, {"name": "Eve Hewson", "character": "Yvonne", "id": 933271, "credit_id": "52fe4c749251416c910f5605", "cast_id": 16, "profile_path": "/cDVb2oR75CCflAvEIyTNuEO4ceS.jpg", "order": 11}, {"name": "Yul Vazquez", "character": "Fabio DeSoto", "id": 75604, "credit_id": "52fe4c749251416c910f5609", "cast_id": 17, "profile_path": "/d4MEi4pl2YvY7zHniiN6rQ4lQVx.jpg", "order": 12}, {"name": "Daisy Tahan", "character": "Robin", "id": 80002, "credit_id": "53ef1f710e0a2675b8000eb2", "cast_id": 18, "profile_path": "/tcu4J8a6cpefCa55eZ9OWl8W4wG.jpg", "order": 13}, {"name": "Richard Petrocelli", "character": "Romero", "id": 171791, "credit_id": "543468690e0a265915009122", "cast_id": 50, "profile_path": null, "order": 14}, {"name": "Olek Krupa", "character": "Tommy", "id": 53573, "credit_id": "543468890e0a2658b2009257", "cast_id": 51, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 15}], "directors": [{"name": "Guillaume Canet", "department": "Directing", "job": "Director", "credit_id": "52fe4c739251416c910f55c3", "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "id": 19866}], "vote_average": 6.0, "runtime": 128}, "23437": {"poster_path": "/zPdMcikD993AQRd92iNv0Dxb67T.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112362985, "overview": "The film that brings back horror icon Freddy Krueger as a darker and more sinister character than ever before. While Freddy is on the prowl a group of teenagers being stalked soon learn they all have a common factor making them targets for this twisted killer.", "video": false, "id": 23437, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street", "tagline": "Never Sleep Again.", "vote_count": 210, "homepage": "http://www.nightmareonelmstreet.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179056", "adult": false, "backdrop_path": "/1n3dtLjIVwsMj50aVcjUe5aqflq.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Platinum Dunes", "id": 2481}], "release_date": "2010-04-30", "popularity": 0.845503534258295, "original_title": "A Nightmare on Elm Street", "budget": 35000000, "cast": [{"name": "Jackie Earle Haley", "character": "Freddy Krueger", "id": 17183, "credit_id": "52fe4469c3a368484e02198d", "cast_id": 1, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 0}, {"name": "Katie Cassidy", "character": "Kris Fowles", "id": 55775, "credit_id": "52fe4469c3a368484e021991", "cast_id": 2, "profile_path": "/lRhzzdmt29n8PDi63QX5MLPAUFz.jpg", "order": 1}, {"name": "Kyle Gallner", "character": "Quentin Smith", "id": 59219, "credit_id": "52fe4469c3a368484e021995", "cast_id": 3, "profile_path": "/vwZAjscP6YUMc8HNuyCzXazyz1f.jpg", "order": 2}, {"name": "Kellan Lutz", "character": "Dean Russell", "id": 34502, "credit_id": "52fe4469c3a368484e021999", "cast_id": 4, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 3}, {"name": "Thomas Dekker", "character": "Jesse Braun", "id": 34199, "credit_id": "52fe4469c3a368484e02199d", "cast_id": 5, "profile_path": "/1wDz8UVkG7rx6t96QKuMrKCo9wj.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Alan Smith", "id": 6574, "credit_id": "52fe4469c3a368484e0219a1", "cast_id": 6, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Connie Britton", "character": "Marge Thompson", "id": 86310, "credit_id": "52fe4469c3a368484e0219a5", "cast_id": 7, "profile_path": "/dbX2i37hwEst6FeL0QH5QgZcsQ3.jpg", "order": 6}, {"name": "Rooney Mara", "character": "Nancy Holbrook", "id": 108916, "credit_id": "52fe4469c3a368484e0219e5", "cast_id": 19, "profile_path": "/foWvIBTr0HrjAV7PaoUErRvkJIc.jpg", "order": 7}, {"name": "Christian Stolte", "character": "Jesse's Father", "id": 36091, "credit_id": "52fe4469c3a368484e0219ef", "cast_id": 22, "profile_path": "/e59b4ctAFcJAut16JWHiWrOsqrJ.jpg", "order": 9}], "directors": [{"name": "Samuel Bayer", "department": "Directing", "job": "Director", "credit_id": "52fe4469c3a368484e0219b1", "profile_path": "/cZmM450OogsiyTgU99nlzFtW6Y5.jpg", "id": 20031}], "vote_average": 5.6, "runtime": 95}, "57157": {"poster_path": "/h6oOvsNVNO0hwHKzws3YKcxUJ9m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A divorced writer from the Midwest returns to her hometown to reconnect with an old flame, who's now married with a family.", "video": false, "id": 57157, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Young Adult", "tagline": "Everyone gets old. Not everyone grows up.", "vote_count": 103, "homepage": "http://www.youngadultmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1625346", "adult": false, "backdrop_path": "/exAFMvwgze8wYSDcLJsyQLbvZ7y.jpg", "production_companies": [], "release_date": "2011-12-09", "popularity": 0.620741247527898, "original_title": "Young Adult", "budget": 0, "cast": [{"name": "Charlize Theron", "character": "Mavis Gary", "id": 6885, "credit_id": "52fe4926c3a36847f818b6d5", "cast_id": 2, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 0}, {"name": "Patton Oswalt", "character": "Matt Freehauf", "id": 10872, "credit_id": "52fe4926c3a36847f818b709", "cast_id": 18, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 1}, {"name": "Patrick Wilson", "character": "Buddy Slade", "id": 17178, "credit_id": "52fe4926c3a36847f818b6d9", "cast_id": 5, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 2}, {"name": "Elizabeth Reaser", "character": "Beth Slade", "id": 53755, "credit_id": "52fe4926c3a36847f818b6dd", "cast_id": 6, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 3}, {"name": "Collette Wolfe", "character": "Sandra Freehauf", "id": 86624, "credit_id": "52fe4926c3a36847f818b6e1", "cast_id": 7, "profile_path": "/aSD4h5379b2eEw3bLou9ByLimmq.jpg", "order": 4}, {"name": "Jill Eikenberry", "character": "Hedda Gary", "id": 44712, "credit_id": "52fe4926c3a36847f818b6e5", "cast_id": 8, "profile_path": "/l5rLlXkcK0G2VTp3V3mPRiQV6IC.jpg", "order": 5}, {"name": "Richard Bekins", "character": "David Gary", "id": 59691, "credit_id": "52fe4926c3a36847f818b6e9", "cast_id": 9, "profile_path": "/zNn7lSWpuiWIUriG48GfO6OzSLS.jpg", "order": 6}, {"name": "Brian McElhaney", "character": "Book Associate", "id": 132310, "credit_id": "52fe4926c3a36847f818b705", "cast_id": 16, "profile_path": null, "order": 7}, {"name": "Mary Beth Hurt", "character": "Jan", "id": 54782, "credit_id": "52fe4926c3a36847f818b6ed", "cast_id": 10, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 8}, {"name": "Kate Nowlin", "character": "Mary Ellen Trantowski", "id": 206479, "credit_id": "52fe4926c3a36847f818b6f1", "cast_id": 11, "profile_path": "/emNIOj1pLShjugG3qooRrSpGBpe.jpg", "order": 9}, {"name": "Jenny Dare Paulin", "character": "Nipple Confusion Bassist", "id": 116568, "credit_id": "52fe4926c3a36847f818b6f5", "cast_id": 12, "profile_path": null, "order": 10}, {"name": "Rebecca Hart", "character": "Nipple Confusion Guitarist", "id": 999654, "credit_id": "52fe4926c3a36847f818b6f9", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Louisa Krause", "character": "Front Desk Girl", "id": 131871, "credit_id": "52fe4926c3a36847f818b6fd", "cast_id": 14, "profile_path": "/nae3zfkGZvr56xaP8k2QBfQArxm.jpg", "order": 12}, {"name": "Elizabeth Ward Land", "character": "Sales Lady", "id": 999655, "credit_id": "52fe4926c3a36847f818b701", "cast_id": 15, "profile_path": "/nFyHymjwsgHC73hBUOo0UnKA0oF.jpg", "order": 13}, {"name": "Hettienne Park", "character": "Vicki", "id": 1218184, "credit_id": "52fe4926c3a36847f818b713", "cast_id": 20, "profile_path": "/iQJMXqr5GeZogy1Ku6kPRtNl1mJ.jpg", "order": 14}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4926c3a36847f818b6d1", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 5.3, "runtime": 94}, "48034": {"poster_path": "/zTi0FYTvkS6ZAPrR4LisJVXJOlh.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Despite a traumatic event, a group of friends decide to go ahead with their annual beach vacation. Their relationships, convictions, sense of guilt and friendship are sorely tested. They are finally forced to own up to the little white lies they've been telling each other.", "video": false, "id": 48034, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Little White Lies", "tagline": "", "vote_count": 68, "homepage": "http://www.littlewhiteliesmovie.co.uk/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1440232", "adult": false, "backdrop_path": "/j2RxIz3HYDiG6vjZ1CwVdbN6de3.jpg", "production_companies": [{"name": "Les Productions du Tr\u00e9sor", "id": 2612}, {"name": "M6 Films", "id": 1115}, {"name": "EuropaCorp", "id": 6896}], "release_date": "2010-10-20", "popularity": 0.132686806539311, "original_title": "Les petits mouchoirs", "budget": 0, "cast": [{"name": "Fran\u00e7ois Cluzet", "character": "Max Cantara", "id": 33161, "credit_id": "52fe4753c3a36847f812f845", "cast_id": 1, "profile_path": "/rE7utJuaZiR9NLjxmtQJZET0q4d.jpg", "order": 0}, {"name": "Beno\u00eet Magimel", "character": "Vincent Ribaud", "id": 5442, "credit_id": "52fe4753c3a36847f812f849", "cast_id": 3, "profile_path": "/mbOvuJivoZlhNrIIqYMSZEs6Mud.jpg", "order": 1}, {"name": "Jean Dujardin", "character": "Ludo", "id": 56024, "credit_id": "52fe4753c3a36847f812f84d", "cast_id": 4, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 2}, {"name": "Val\u00e9rie Bonneton", "character": "V\u00e9ronique Cantara", "id": 54324, "credit_id": "52fe4753c3a36847f812f851", "cast_id": 5, "profile_path": "/uqWDC3lrOjD87OI3Lfg3QEqENbL.jpg", "order": 3}, {"name": "Jo\u00ebl Dupuch", "character": "Jean-Louis", "id": 139855, "credit_id": "52fe4753c3a36847f812f855", "cast_id": 6, "profile_path": "/r3L5h7EKTxeo780fOYN9nIfThMQ.jpg", "order": 4}, {"name": "Gilles Lellouche", "character": "Eric", "id": 54291, "credit_id": "52fe4753c3a36847f812f859", "cast_id": 7, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 5}, {"name": "Laurent Lafitte", "character": "Antoine", "id": 93532, "credit_id": "52fe4753c3a36847f812f85d", "cast_id": 8, "profile_path": "/58rntvDjklRQBDsrtar4Nw8lRde.jpg", "order": 6}, {"name": "Pascale Arbillot", "character": "Isabelle Ribaud", "id": 83966, "credit_id": "52fe4753c3a36847f812f861", "cast_id": 9, "profile_path": "/4DZR4zlueuyC21STg9H4g4cDcaH.jpg", "order": 7}, {"name": "Anne Marivin", "character": "Juliette", "id": 54168, "credit_id": "52fe4753c3a36847f812f865", "cast_id": 10, "profile_path": "/oDRecloG3jOMsQy0H1zmLLld7Ti.jpg", "order": 8}, {"name": "Hocine M\u00e9rabet", "character": "Nassim", "id": 139856, "credit_id": "52fe4753c3a36847f812f869", "cast_id": 11, "profile_path": "/b6WAVLgFrt3HYlvbyL3y0qWbGsx.jpg", "order": 9}, {"name": "Louise Monot", "character": "L\u00e9a", "id": 78425, "credit_id": "52fe4753c3a36847f812f86d", "cast_id": 12, "profile_path": "/u0RFwvaNeGUuNpJOhfy3hGgiIUu.jpg", "order": 10}, {"name": "Maxim Nucci", "character": "Franck", "id": 139857, "credit_id": "52fe4753c3a36847f812f871", "cast_id": 13, "profile_path": "/4rF5Gzmy1ClJ195BlLmiYarehZH.jpg", "order": 11}, {"name": "Marion Cotillard", "character": "Marie", "id": 8293, "credit_id": "52fe4753c3a36847f812f881", "cast_id": 16, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 12}, {"name": "Sara Martins", "character": "La copine lesbienne de Marie", "id": 23390, "credit_id": "52fe4753c3a36847f812f8bf", "cast_id": 29, "profile_path": "/gXX5NfXheVoBRLibWMR2gnMrf2U.jpg", "order": 14}, {"name": "\u00c9douard Montoute", "character": "L'ami de Ludo au Baron", "id": 5441, "credit_id": "52fe4754c3a36847f812f8c9", "cast_id": 31, "profile_path": "/d2e7IBZgvTxAKZnHvb6X1wQIdFa.jpg", "order": 15}, {"name": "Mathieu Chedid", "character": "L'amant de Marie", "id": 66841, "credit_id": "53026ff9c3a3680a114040e4", "cast_id": 32, "profile_path": "/xti6TXbhKfOlQqAlYZjuhWxJTNc.jpg", "order": 16}], "directors": [{"name": "Guillaume Canet", "department": "Directing", "job": "Director", "credit_id": "52fe4753c3a36847f812f877", "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "id": 19866}], "vote_average": 7.2, "runtime": 154}, "252838": {"poster_path": "/u3gLkiOpkNb01r7yvrbbOfBJv3R.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jimmy provides best man services for socially challenged guys, who \u2013 for whatever reason \u2013 have no one close enough to agree to stand by them on the day of their wedding. Doug a groom-to-be, has found himself in just such a situation, but, to make matters worse, he fabricates the names of not only a best man but nine groomsmen as well. When all else fails, Doug seeks out Jimmy\u2019s services to carry out a charade designed to make Doug look his best, but threatens to destroy everything if it fails.", "video": false, "id": 252838, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Wedding Ringer", "tagline": "He's the best man... Money can buy", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0884732", "adult": false, "backdrop_path": "/7S9Y0txZ1SHyfS608xaXs4J5Ajx.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "LStar Capital", "id": 34034}, {"name": "Miramax Films", "id": 14}], "release_date": "2015-01-16", "popularity": 5.97929064648722, "original_title": "The Wedding Ringer", "budget": 0, "cast": [{"name": "Kevin Hart", "character": "Jimmy Callahan / Bic", "id": 55638, "credit_id": "52fe4e579251416c9112e62b", "cast_id": 1, "profile_path": "/nTYKqSQzJ9VlYKgqoES7WIDHywi.jpg", "order": 0}, {"name": "Josh Gad", "character": "Doug Harris", "id": 54415, "credit_id": "52fe4e579251416c9112e62f", "cast_id": 2, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 1}, {"name": "Kaley Cuoco", "character": "Gretchen Palmer", "id": 53862, "credit_id": "52fe4e579251416c9112e633", "cast_id": 3, "profile_path": "/sEIjKRSWUn8bxLCsxNArfxncvpO.jpg", "order": 2}, {"name": "Affion Crockett", "character": "Reggie / DrysDale", "id": 98394, "credit_id": "52fe4e579251416c9112e637", "cast_id": 4, "profile_path": "/moqCMggBapY4mHArUjaRKZ2xzIn.jpg", "order": 3}, {"name": "Jorge Garcia", "character": "Lurch / Garvey", "id": 1215525, "credit_id": "52fe4e579251416c9112e63b", "cast_id": 5, "profile_path": "/sPvMz5gWUbYc1vw0waieVIhkyb0.jpg", "order": 4}, {"name": "Corey Holcomb", "character": "Otis / Alzado", "id": 215074, "credit_id": "52fe4e579251416c9112e63f", "cast_id": 6, "profile_path": "/jbJOr0gOb7jcWs5bSGgCgrdfehh.jpg", "order": 5}, {"name": "Ken Howard", "character": "Ed Palmer", "id": 18328, "credit_id": "52fe4e579251416c9112e643", "cast_id": 7, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 6}, {"name": "Cloris Leachman", "character": "Grandma Palmer", "id": 9599, "credit_id": "52fe4e579251416c9112e647", "cast_id": 8, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 7}, {"name": "Jenifer Lewis", "character": "Doris Jenkins", "id": 15899, "credit_id": "52fe4e579251416c9112e64b", "cast_id": 9, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 8}, {"name": "Mimi Rogers", "character": "Lois Palmer", "id": 13920, "credit_id": "52fe4e579251416c9112e64f", "cast_id": 10, "profile_path": "/iuaRcB2bfNuZkXaApJtCFTA06f9.jpg", "order": 9}, {"name": "Aaron Takahashi", "character": "Endo", "id": 1053940, "credit_id": "52fe4e579251416c9112e653", "cast_id": 11, "profile_path": "/qhvi1JlCwgYOdnprP7MT9f2XZpS.jpg", "order": 10}, {"name": "Olivia Thirlby", "character": "Alison Palmer", "id": 52442, "credit_id": "52fe4e579251416c9112e657", "cast_id": 12, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 11}, {"name": "Nicky Whelan", "character": "Nadia", "id": 212833, "credit_id": "52fe4e579251416c9112e65b", "cast_id": 13, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 12}], "directors": [{"name": "Jeremy Garelick", "department": "Directing", "job": "Director", "credit_id": "52fe4e579251416c9112e661", "profile_path": null, "id": 59027}], "vote_average": 7.0, "runtime": 101}, "151368": {"poster_path": "/ATI8sLJ0pYNyJOIPaxX8tzcBsF.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Nick is excited to discover that he's won a dinner date with his favorite actress, Jill Goddard. But when Jill refuses to honor the contest, her manager Chord makes an offer he can't refuse: the ability to view Jill secretly via computer. Nick begins watching the unknowing star on her webcam, not realizing that this decision will put both himself and Jill at risk as they enter a terrifying world of cat-and-mouse where nothing-and no one-are as they seem.", "video": false, "id": 151368, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Open Windows", "tagline": "The 21st Century REAR WINDOW.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2409818", "adult": false, "backdrop_path": "/xyBLT9V5auaRl5d1g4Ow36ncVgw.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "Apaches Entertainment", "id": 8111}, {"name": "Atresmedia Cine", "id": 29566}, {"name": "La Panda", "id": 17727}, {"name": "Sayaka Producciones Audiovisuales", "id": 7344}, {"name": "SpectreVision", "id": 34519}], "release_date": "2014-07-04", "popularity": 1.35149845110521, "original_title": "Open Windows", "budget": 0, "cast": [{"name": "Elijah Wood", "character": "Nick Chambers", "id": 109, "credit_id": "52fe4aff9251416c910cc771", "cast_id": 1, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 0}, {"name": "Sasha Grey", "character": "Jill Goddard", "id": 74251, "credit_id": "52fe4aff9251416c910cc785", "cast_id": 6, "profile_path": "/yuDlbdjZgxxSmeqQlj0Ru0zK2Sl.jpg", "order": 1}, {"name": "Neil Maskell", "character": "Chord", "id": 30433, "credit_id": "52fe4aff9251416c910cc781", "cast_id": 5, "profile_path": "/bBFkVz1paGmnxHDvmTcVIV5M5GJ.jpg", "order": 2}, {"name": "Nacho Vigalondo", "character": "Richy Gabilondo", "id": 118303, "credit_id": "533d6969c3a36878e6003218", "cast_id": 7, "profile_path": "/pYgf9PwkQ1gPjus4bw3f27yGCrh.jpg", "order": 3}, {"name": "Brian Elder", "character": "Fantastic Fest Attendee", "id": 1306732, "credit_id": "533d697cc3a368790300335c", "cast_id": 8, "profile_path": null, "order": 4}, {"name": "Scott Weinberg", "character": "Don Delano", "id": 124732, "credit_id": "533d6989c3a36878e600321b", "cast_id": 9, "profile_path": null, "order": 5}], "directors": [{"name": "Nacho Vigalondo", "department": "Directing", "job": "Director", "credit_id": "52fe4aff9251416c910cc777", "profile_path": "/pYgf9PwkQ1gPjus4bw3f27yGCrh.jpg", "id": 118303}], "vote_average": 5.5, "runtime": 101}, "7095": {"poster_path": "/nOgHa5ggt6vbmIuoNW7exrJQJq9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Jack Powell suffers from an affliction that makes him grow four times faster than normal, so the 10-year-old looks like a 40-year-old man. After years of being tutored at home, Jack convinces his overprotective parents to send him to public school. The children don't know what to make of Jack, but with the help of his fifth-grade teacher, he makes an effort to win them over.", "video": false, "id": 7095, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}], "title": "Jack", "tagline": "Jack Powell is about to tackle his biggest adventure ever... the fifth grade!", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0116669", "adult": false, "backdrop_path": "/2hsd6MbbhVyfjozeU9oonyyKymR.jpg", "production_companies": [{"name": "American Zoetrope", "id": 70}, {"name": "Hollywood Pictures", "id": 915}, {"name": "Great Oaks Entertainment", "id": 2173}], "release_date": "1996-08-09", "popularity": 0.359950747786638, "original_title": "Jack", "budget": 45000000, "cast": [{"name": "Robin Williams", "character": "Jack Charles Powell", "id": 2157, "credit_id": "52fe4471c3a36847f8096541", "cast_id": 1, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 0}, {"name": "Diane Lane", "character": "Karen Powell", "id": 2882, "credit_id": "52fe4471c3a36847f8096545", "cast_id": 2, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 1}, {"name": "Brian Kerwin", "character": "Brian Powell", "id": 50464, "credit_id": "52fe4471c3a36847f8096549", "cast_id": 3, "profile_path": "/cC69Vc7F59RKBZUldffhWJWx57A.jpg", "order": 2}, {"name": "Jennifer Lopez", "character": "Miss Marquez", "id": 16866, "credit_id": "52fe4471c3a36847f809654d", "cast_id": 4, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 3}, {"name": "Bill Cosby", "character": "Lawrence Woodruff", "id": 51962, "credit_id": "52fe4471c3a36847f8096551", "cast_id": 5, "profile_path": "/74QfZIdzeCziphi251ueaCVXbW7.jpg", "order": 4}, {"name": "Fran Drescher", "character": "Dolores Durante", "id": 53122, "credit_id": "52fe4471c3a36847f8096573", "cast_id": 11, "profile_path": "/vQxr8CRgyDkH3GTFLwacs9W9tF4.jpg", "order": 5}, {"name": "Adam Zolotin", "character": "Louis Durante", "id": 53123, "credit_id": "52fe4471c3a36847f8096577", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Irwin Corey", "character": "Poppy", "id": 28035, "credit_id": "53e2f0840e0a262b8000305e", "cast_id": 13, "profile_path": "/rLpmlAF4SVjjUX1mv3KIbDSV8qn.jpg", "order": 7}], "directors": [{"name": "Francis Ford Coppola", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a36847f8096557", "profile_path": "/z60KH0VzNO071wagvzMxMKNj9ZQ.jpg", "id": 1776}], "vote_average": 5.7, "runtime": 113}, "23483": {"poster_path": "/gtfggr5n3ED1neoTqVYmsVCoSS.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 96188903, "overview": "Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.", "video": false, "id": 23483, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}], "title": "Kick-Ass", "tagline": "Shut up. Kick ass.", "vote_count": 1847, "homepage": "http://www.kickass-themovie.com/", "belongs_to_collection": {"backdrop_path": "/kelR7BTeIP2ENVjmSz76lD3r5Ht.jpg", "poster_path": "/2DtPSyODKWXluIRV7PVru0SSzja.jpg", "id": 179892, "name": "Kick-Ass Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1250777", "adult": false, "backdrop_path": "/qf59pVUHbY9z0Ke9Jg6HQghNJhM.jpg", "production_companies": [{"name": "Marv Films", "id": 5374}, {"name": "Plan B Entertainment", "id": 81}], "release_date": "2010-04-16", "popularity": 1.87381961745973, "original_title": "Kick-Ass", "budget": 28000000, "cast": [{"name": "Aaron Taylor-Johnson", "character": "Dave Lizewski / Kick-Ass", "id": 27428, "credit_id": "52fe446ac3a368484e021def", "cast_id": 9, "profile_path": "/iQrBTHUtKVI2kN4u0hRKQz667cx.jpg", "order": 0}, {"name": "Chlo\u00eb Grace Moretz", "character": "Hit Girl / Mindy Macready", "id": 56734, "credit_id": "52fe446ac3a368484e021de3", "cast_id": 6, "profile_path": "/5m9dvPMzbvcXXJJd8iVbWy1xMY5.jpg", "order": 1}, {"name": "Christopher Mintz-Plasse", "character": "Chris D'Amico / Red Mist", "id": 54691, "credit_id": "52fe446ac3a368484e021ddb", "cast_id": 4, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 2}, {"name": "Nicolas Cage", "character": "Damon Macready / Big Daddy", "id": 2963, "credit_id": "52fe446ac3a368484e021dd7", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 3}, {"name": "Mark Strong", "character": "Frank D'Amico", "id": 2983, "credit_id": "52fe446ac3a368484e021ddf", "cast_id": 5, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Omari Hardwick", "character": "Marcus", "id": 41556, "credit_id": "52fe446ac3a368484e021deb", "cast_id": 8, "profile_path": "/gW4eSrYlyFhuC4QrMD0whDxA9DS.jpg", "order": 5}, {"name": "Xander Berkeley", "character": "Detective Vic Gigante", "id": 3982, "credit_id": "52fe446ac3a368484e021de7", "cast_id": 7, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 6}, {"name": "Clark Duke", "character": "Marty", "id": 54729, "credit_id": "52fe446ac3a368484e021df3", "cast_id": 10, "profile_path": "/hvzUtE31lUqZaRqxBtBp044kRAT.jpg", "order": 7}, {"name": "Garrett M. Brown", "character": "Mr. Lizewski", "id": 27492, "credit_id": "52fe446ac3a368484e021df7", "cast_id": 11, "profile_path": "/u48DQ2SziopfHBOTrtk7NOCshCp.jpg", "order": 8}, {"name": "Evan Peters", "character": "Todd", "id": 55089, "credit_id": "52fe446ac3a368484e021dfb", "cast_id": 12, "profile_path": "/2a1XA1ynmbZZj2nauwsc03OzRB.jpg", "order": 9}, {"name": "Deborah Twiss", "character": "Mrs. Zane", "id": 116881, "credit_id": "52fe446ac3a368484e021dff", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Lyndsy Fonseca", "character": "Katie Deauxma", "id": 116882, "credit_id": "52fe446ac3a368484e021e03", "cast_id": 14, "profile_path": "/3d3MkcCmo3Ssf65xFpnXQRyfWcc.jpg", "order": 11}, {"name": "Sophie Wu", "character": "Erika Cho", "id": 116883, "credit_id": "52fe446ac3a368484e021e07", "cast_id": 15, "profile_path": "/AtwCdj7Dk8qe3otYLAjARxlaD7.jpg", "order": 12}, {"name": "Elizabeth McGovern", "character": "Mrs. Lizewski", "id": 4513, "credit_id": "52fe446ac3a368484e021e29", "cast_id": 22, "profile_path": "/oECBsmiZ8OWxm6iQCV5o0eViLRg.jpg", "order": 13}, {"name": "Stu 'Large' Riley", "character": "Huge Goon", "id": 164250, "credit_id": "52fe446ac3a368484e021e2d", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Michael Rispoli", "character": "Big Joe", "id": 18313, "credit_id": "52fe446ac3a368484e021e31", "cast_id": 24, "profile_path": "/mRS7DAXhuLu8Z7PAlicm6kP0EZz.jpg", "order": 15}, {"name": "Corey Johnson", "character": "Sporty Goon", "id": 17199, "credit_id": "52fe446ac3a368484e021e35", "cast_id": 25, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 16}, {"name": "Kenneth Simmons", "character": "Scary Goon", "id": 1132694, "credit_id": "52fe446ac3a368484e021e39", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Anthony Desio", "character": "Baby Goon", "id": 185737, "credit_id": "52fe446ac3a368484e021e3d", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Randall Batinkoff", "character": "Tre Fernandez", "id": 36631, "credit_id": "52fe446ac3a368484e021e57", "cast_id": 35, "profile_path": "/aXj1Q2pr70lMPJPRuNB6EIYCujr.jpg", "order": 19}, {"name": "Dexter Fletcher", "character": "Cody", "id": 974, "credit_id": "52fe446ac3a368484e021e41", "cast_id": 29, "profile_path": "/did9anJiAFYvTbeQyNZaxts7GaT.jpg", "order": 20}, {"name": "Yancy Butler", "character": "Angie D'Amico", "id": 20759, "credit_id": "52fe446ac3a368484e021e45", "cast_id": 30, "profile_path": "/emcS8cLp5aEEMdJS4Am0TLiX6WA.jpg", "order": 21}, {"name": "Craig Ferguson", "character": "Himself", "id": 24264, "credit_id": "52fe446ac3a368484e021e49", "cast_id": 31, "profile_path": "/lFtfTVqEIU7tE7XM7ZgqHW7DYiM.jpg", "order": 22}, {"name": "Jason Flemyng", "character": "Lobby Goon", "id": 973, "credit_id": "52fe446ac3a368484e021e53", "cast_id": 34, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 23}], "directors": [{"name": "Matthew Vaughn", "department": "Directing", "job": "Director", "credit_id": "52fe446ac3a368484e021dcd", "profile_path": "/n3NxrrSgLZUvT8FJPAyRt0I4ktL.jpg", "id": 957}], "vote_average": 6.9, "runtime": 117}, "23488": {"poster_path": "/tL0JgGir10RFXZ1M0H3TgyrGdtp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 4706919, "overview": "A vain London playboy offers his soul in exchange for eternal beauty in this adaptation of the chilling tale by author Oscar Wilde. Seduced into the decadent world of Lord Henry Wotton (Colin Firth), handsome young aristocrat Dorian Gray (Ben Barnes) becomes obsessed with maintaining his youthful appearance, and commissions a special portrait that will weather the winds of time while he remains forever young. When Gray's obsession spirals out of control, his desperate attempts to safeguard his secret turn his once-privileged life into a living hell.", "video": false, "id": 23488, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Dorian Gray", "tagline": "Forever Young. Forever Cursed.", "vote_count": 81, "homepage": "http://doriangraymovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1235124", "adult": false, "backdrop_path": "/qG8MPYWkBQs0htKnsH6yBq0iCPJ.jpg", "production_companies": [{"name": "Ealing Studios", "id": 2650}, {"name": "Fragile Films", "id": 2651}], "release_date": "2009-09-09", "popularity": 0.450920708106586, "original_title": "Dorian Gray", "budget": 0, "cast": [{"name": "Ben Barnes", "character": "Dorian Gray", "id": 25130, "credit_id": "52fe446bc3a368484e021eb9", "cast_id": 3, "profile_path": "/uaqyZo945YT0TScQgiaui5v0iTn.jpg", "order": 0}, {"name": "Colin Firth", "character": "Lord Henry Wotton", "id": 5472, "credit_id": "52fe446bc3a368484e021eb5", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 1}, {"name": "Rebecca Hall", "character": "Emily Wotton", "id": 15556, "credit_id": "52fe446bc3a368484e021ebd", "cast_id": 5, "profile_path": "/pDY00JdSgDxXxMsBOJcShJjDVxl.jpg", "order": 2}, {"name": "Emilia Fox", "character": "Lady Victoria Wotton", "id": 6639, "credit_id": "52fe446bc3a368484e021ec1", "cast_id": 6, "profile_path": "/xbOxrak2VaQTVX2pNdqRG3NZvK2.jpg", "order": 3}, {"name": "Ben Chaplin", "character": "Basil Hallward", "id": 21343, "credit_id": "52fe446bc3a368484e021ec5", "cast_id": 7, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 4}, {"name": "Fiona Shaw", "character": "Agatha", "id": 10981, "credit_id": "52fe446bc3a368484e021ec9", "cast_id": 8, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 5}, {"name": "Caroline Goodall", "character": "Lady Radly", "id": 6692, "credit_id": "52fe446bc3a368484e021ecd", "cast_id": 9, "profile_path": "/f3L5WmEtGjjONTe8qvBZOy2dWTJ.jpg", "order": 6}, {"name": "Maryam d'Abo", "character": "Gladys", "id": 10670, "credit_id": "52fe446bc3a368484e021ed1", "cast_id": 10, "profile_path": "/2KQONgibNNv1zM3AMVwtsO9jUdU.jpg", "order": 7}, {"name": "Douglas Henshall", "character": "Alan Campbell", "id": 35862, "credit_id": "52fe446bc3a368484e021ed5", "cast_id": 11, "profile_path": "/liGX3t9DqAXK6vdq3SromuJYcqE.jpg", "order": 8}, {"name": "Rachel Hurd-Wood", "character": "Sibyl Vane", "id": 129050, "credit_id": "52fe446bc3a368484e021ed9", "cast_id": 12, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 9}, {"name": "Max Irons", "character": "Lucius", "id": 232396, "credit_id": "52fe446bc3a368484e021eef", "cast_id": 16, "profile_path": "/mFKJvG49Gr1Fb0HgsTDg4YSZzJc.jpg", "order": 10}], "directors": [{"name": "Oliver Parker", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a368484e021edf", "profile_path": "/3qdUN7qhcQn4P3tEOTKJgTUdCIr.jpg", "id": 56710}], "vote_average": 5.9, "runtime": 112}, "146375": {"poster_path": "/bB5w3vSw9M4MyGCwDsZGGqkIkE9.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 24, "overview": "Two mismatched cops team up to investigate the murder of a business mogul's wife.", "video": false, "id": 146375, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "On the Other Side of the Tracks", "tagline": "", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1937133", "adult": false, "backdrop_path": "/rdhruSs0snPbFg4NmwJvtETb68m.jpg", "production_companies": [{"name": "Mandarin Film", "id": 7839}, {"name": "Mars Distribution", "id": 2908}, {"name": "M6 Films", "id": 1115}], "release_date": "2012-12-15", "popularity": 0.479951741869721, "original_title": "De l'autre c\u00f4t\u00e9 du p\u00e9riph", "budget": 0, "cast": [{"name": "Omar Sy", "character": "Ousmane Diakhit\u00e9", "id": 78423, "credit_id": "52fe4b7e9251416c75104b11", "cast_id": 5, "profile_path": "/fsI7UQYwgOUDMLODv5nfRj8Oeaq.jpg", "order": 0}, {"name": "Laurent Lafitte", "character": "Fran\u00e7ois Monge", "id": 93532, "credit_id": "52fe4b7e9251416c75104b15", "cast_id": 6, "profile_path": "/58rntvDjklRQBDsrtar4Nw8lRde.jpg", "order": 1}, {"name": "Sabrina Ouazani", "character": "Yasmine", "id": 17475, "credit_id": "52fe4b7e9251416c75104b19", "cast_id": 7, "profile_path": "/ipMrh3XlBrYDvSoNpMP28wXEpsX.jpg", "order": 2}, {"name": "Lionel Abelanski", "character": "Daniel Cardinet", "id": 7278, "credit_id": "52fe4b7e9251416c75104b1d", "cast_id": 8, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 3}, {"name": "Youssef Hajdi", "character": "Giovanni / Nabil", "id": 458904, "credit_id": "52fe4b7e9251416c75104b21", "cast_id": 9, "profile_path": "/aPV6h5YknWBxkaJRyLEAddXoqTi.jpg", "order": 4}, {"name": "Maxime Motte", "character": "Van Gogh", "id": 1124073, "credit_id": "52fe4b7e9251416c75104b25", "cast_id": 10, "profile_path": "/cLTDZI0DpKBz6dxUbxtGsqIGV6N.jpg", "order": 5}, {"name": "L\u00e9o L\u00e9othier", "character": "G\u00e9rard", "id": 1124074, "credit_id": "52fe4b7e9251416c75104b29", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Andr\u00e9 Marcon", "character": "Chaligny", "id": 55805, "credit_id": "52fe4b7e9251416c75104b2d", "cast_id": 12, "profile_path": "/dsuU4KIb8Av5rGk5T605S7utlpg.jpg", "order": 7}, {"name": "Zabou Breitman", "character": "Morland", "id": 54675, "credit_id": "52fe4b7e9251416c75104b31", "cast_id": 13, "profile_path": "/8zaqoSPo3VHTwLYnSE5BsBAKluE.jpg", "order": 8}, {"name": "Patrick Bonnel", "character": "Balard", "id": 79035, "credit_id": "52fe4b7e9251416c75104b77", "cast_id": 25, "profile_path": "/nhGCkmkLheXUAMoo74Omn95yirX.jpg", "order": 9}, {"name": "Roch Leibovici", "character": "Patrick", "id": 38876, "credit_id": "52fe4b7e9251416c75104b7b", "cast_id": 26, "profile_path": null, "order": 10}, {"name": "Rebecca Azan", "character": "Laurence", "id": 1171518, "credit_id": "52fe4b7f9251416c75104b7f", "cast_id": 27, "profile_path": "/q8mC3hxPm07hbLV91Un0l6gvqOh.jpg", "order": 11}, {"name": "Tchewk Essafi", "character": "Samir (as Tchewik Essafi)", "id": 1171519, "credit_id": "52fe4b7f9251416c75104b83", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Patrick Kodjo Topou", "character": "Tyson", "id": 1171520, "credit_id": "52fe4b7f9251416c75104b87", "cast_id": 29, "profile_path": null, "order": 13}], "directors": [{"name": "David Charhon", "department": "Directing", "job": "Director", "credit_id": "52fe4b7e9251416c75104afb", "profile_path": null, "id": 78226}], "vote_average": 5.6, "runtime": 96}, "179144": {"poster_path": "/nDBRRkZgaGhJw91wdcUFYwWIbFF.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 8371085, "overview": "Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.", "video": false, "id": 179144, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Great Beauty", "tagline": "", "vote_count": 117, "homepage": "http://www.indigofilm.it/produzioni/film/61/la-grande-bellezza/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt2358891", "adult": false, "backdrop_path": "/v1XhOGAE5wvhaXdNTwVH8Z5gxNm.jpg", "production_companies": [{"name": "Indigo Film", "id": 1533}, {"name": "Medusa Film", "id": 6246}, {"name": "Babe Films", "id": 3366}, {"name": "Path\u00e9", "id": 7981}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Mediaset", "id": 1677}, {"name": "Canal+", "id": 5358}, {"name": "France T\u00e9l\u00e9visions", "id": 11795}, {"name": "Regione Lazio", "id": 20416}, {"name": "Banca Popolare di Vicenza", "id": 20418}, {"name": "Lazio Film Commission", "id": 20419}, {"name": "Fonds Eurimages du Conseil de l'Europe", "id": 11011}, {"name": "Programme MEDIA de la Communaut\u00e9 Europ\u00e9enne", "id": 11248}, {"name": "Biscottificio Verona", "id": 20420}], "release_date": "2013-05-21", "popularity": 1.48818970183352, "original_title": "La grande bellezza", "budget": 12400000, "cast": [{"name": "Toni Servillo", "character": "Jep Gambardella", "id": 72782, "credit_id": "52fe4da2c3a36847f826bcbf", "cast_id": 2, "profile_path": "/1TIbNwPHpcb0HWledxIPBqe7elu.jpg", "order": 0}, {"name": "Carlo Verdone", "character": "Romano", "id": 89193, "credit_id": "52fe4da2c3a36847f826bcc3", "cast_id": 3, "profile_path": "/6Llxs7g6cjPrOVnp2omFhpEsbNy.jpg", "order": 1}, {"name": "Sabrina Ferilli", "character": "Ramona", "id": 128236, "credit_id": "52fe4da2c3a36847f826bcc7", "cast_id": 4, "profile_path": "/hYWbUuersG0ws8ZMu8B2zKMeuNU.jpg", "order": 2}, {"name": "Carlo Buccirosso", "character": "Lello Cava", "id": 120638, "credit_id": "52fe4da2c3a36847f826bccb", "cast_id": 5, "profile_path": "/Lp5KJrP3N8wls9Ee7gT7reNCSk.jpg", "order": 3}, {"name": "Iaia Forte", "character": "Trumeau", "id": 68166, "credit_id": "52fe4da2c3a36847f826bccf", "cast_id": 6, "profile_path": null, "order": 4}, {"name": "Pamela Villoresi", "character": "Viola", "id": 137353, "credit_id": "52fe4da2c3a36847f826bcdf", "cast_id": 9, "profile_path": "/dpPVKxi8Q6iAm7uNWDxj4RRetUh.jpg", "order": 5}, {"name": "Galatea Ranzi", "character": "Stefania", "id": 137812, "credit_id": "52fe4da2c3a36847f826bce3", "cast_id": 10, "profile_path": null, "order": 6}, {"name": "Franco Graziosi", "character": "Conte Colonna", "id": 5566, "credit_id": "52fe4da2c3a36847f826bce7", "cast_id": 11, "profile_path": "/vxjNtPJxFhnY4t89NNKLQO0VZxV.jpg", "order": 7}, {"name": "Giorgio Pasotti", "character": "Stefano", "id": 27274, "credit_id": "52fe4da2c3a36847f826bceb", "cast_id": 12, "profile_path": "/QvMLacHL5CH80zj6bGoZAK1QQ4.jpg", "order": 8}, {"name": "Massimo Popolizio", "character": "Alfio Bracco", "id": 131632, "credit_id": "52fe4da2c3a36847f826bcef", "cast_id": 13, "profile_path": null, "order": 9}], "directors": [{"name": "Paolo Sorrentino", "department": "Directing", "job": "Director", "credit_id": "52fe4da2c3a36847f826bcbb", "profile_path": "/A4N12piSSJQ80WQnIbHKPXp3H4L.jpg", "id": 56194}], "vote_average": 7.1, "runtime": 150}, "36685": {"poster_path": "/v2NC7o8f7AZvQbOAwrfRbe5Z106.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 139800000, "overview": "It's the weird and wonderful as newly engaged couple Brad and Janet encounter a problem when they car halts in the rain. They both look for contact only to find themselves at the castle of Dr. Frank-N-Furter a transvestite. A place to stay is offered, but will Brad and Janet want to remain there? Especially when a large group of Transylvanians dance to the 'Time Warp', Dr. Frank-N-Furter builds his own man and a whole host of participation for the audience to enjoy.", "video": false, "id": 36685, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 878, "name": "Science Fiction"}], "title": "The Rocky Horror Picture Show", "tagline": "A Different Set Of Jaws.", "vote_count": 108, "homepage": "http://www.rockyhorror.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/av74GpX6RjxQxPqWm1Hkcbc7dAE.jpg", "id": 281644, "name": "Rocky Horror Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0073629", "adult": false, "backdrop_path": "/6Fp3am76rkv3AqevktmTMiupdnz.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "1975-09-29", "popularity": 0.224626443274705, "original_title": "The Rocky Horror Picture Show", "budget": 1200000, "cast": [{"name": "Meat Loaf", "character": "Eddie", "id": 7470, "credit_id": "52fe46029251416c91045ee3", "cast_id": 7, "profile_path": "/43nyfW3TxD3PxDqYB8tyqaKpDBH.jpg", "order": 0}, {"name": "Susan Sarandon", "character": "Janet Weiss", "id": 4038, "credit_id": "52fe46019251416c91045ecb", "cast_id": 1, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 1}, {"name": "Barry Bostwick", "character": "Brad Majors", "id": 13473, "credit_id": "52fe46019251416c91045ecf", "cast_id": 2, "profile_path": "/p25f5yLOLqhFC40RmcxAmWDLtP4.jpg", "order": 2}, {"name": "Richard O'Brien", "character": "Riff Raff", "id": 13474, "credit_id": "52fe46019251416c91045ed3", "cast_id": 3, "profile_path": "/pCxCt82DQQLTgOryp6FPczmN3L9.jpg", "order": 3}, {"name": "Patricia Quinn", "character": "Magenta", "id": 13475, "credit_id": "52fe46019251416c91045ed7", "cast_id": 4, "profile_path": "/bfcnDApPbMGN9F2SIgFeFPgUe59.jpg", "order": 6}, {"name": "Nell Campbell", "character": "Columbia", "id": 13476, "credit_id": "52fe46029251416c91045edb", "cast_id": 5, "profile_path": null, "order": 7}, {"name": "Tim Curry", "character": "Dr. Frank-N-Furtert", "id": 13472, "credit_id": "52fe46029251416c91045ee7", "cast_id": 8, "profile_path": "/e4B4EeQCBj1bAdP7OAtAs8HLlCL.jpg", "order": 7}, {"name": "Charles Gray", "character": "The Criminologist", "id": 10074, "credit_id": "52fe46029251416c91045f21", "cast_id": 19, "profile_path": "/ejgGEya19V1jUBqixTz9D8xIjlR.jpg", "order": 8}, {"name": "Jonathan Adams", "character": "Dr. Everett V. Scott", "id": 1137209, "credit_id": "539d26fe0e0a261332002d6c", "cast_id": 21, "profile_path": "/p6KSYFUCoEvWduHdVhY9FzMEcBJ.jpg", "order": 9}, {"name": "Fran Fullenwider", "character": "The Transylvanians", "id": 123208, "credit_id": "551da689c3a3683a18000e0d", "cast_id": 22, "profile_path": "/KLFIlzxqCRTxscVZnKF1i6wir.jpg", "order": 10}], "directors": [{"name": "Jim Sharman", "department": "Directing", "job": "Director", "credit_id": "52fe46029251416c91045eed", "profile_path": null, "id": 13484}], "vote_average": 6.4, "runtime": 100}, "23514": {"poster_path": "/hYtMOXjSur5QccB4pZYWbKHMDor.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24000000, "overview": "Tired of the noise and madness of New York and the crushing conventions of late Eisenhower-era America, itinerant journalist Paul Kemp travels to the pristine island of Puerto Rico to write for a local San Juan newspaper run by the downtrodden editor Lotterman. Adopting the rum-soaked lifestyle of the late \u201850s version of Hemingway\u2019s \u201cThe Lost Generation,\u201d Paul soon becomes entangled with a very attractive American woman, Chenaults and her fianc\u00e9e Sanderson, a businessman involved in shady property development deals.\u00a0 It is within this world that Kemp ultimately discovers his true voice as a writer and integrity as a man.", "video": false, "id": 23514, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Rum Diary", "tagline": "One part outrage. One part justice. Three parts rum. Mix well.", "vote_count": 117, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0376136", "adult": false, "backdrop_path": "/nBZfHNrQY3YXKTh6tqWLnfgrVK0.jpg", "production_companies": [{"name": "FilmEngine", "id": 816}, {"name": "GK Films", "id": 3281}, {"name": "Infinitum Nihil", "id": 2691}], "release_date": "2011-10-27", "popularity": 0.551949968551351, "original_title": "The Rum Diary", "budget": 45000000, "cast": [{"name": "Johnny Depp", "character": "Paul Kemp", "id": 85, "credit_id": "52fe446bc3a368484e02214f", "cast_id": 11, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Amber Heard", "character": "Chenault", "id": 55085, "credit_id": "52fe446bc3a368484e022127", "cast_id": 2, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 1}, {"name": "Aaron Eckhart", "character": "Sanderson", "id": 6383, "credit_id": "52fe446bc3a368484e02212b", "cast_id": 3, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 2}, {"name": "Giovanni Ribisi", "character": "Moberg", "id": 1771, "credit_id": "52fe446bc3a368484e022133", "cast_id": 5, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Lotterman", "id": 28633, "credit_id": "52fe446bc3a368484e022137", "cast_id": 6, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Amaury Nolasco", "character": "Segurra", "id": 17341, "credit_id": "52fe446bc3a368484e02212f", "cast_id": 4, "profile_path": "/tFH2iQmCIARuPJwjqcw7STwLeEr.jpg", "order": 5}, {"name": "Marshall Bell", "character": "Donavon", "id": 3041, "credit_id": "52fe446bc3a368484e02213b", "cast_id": 7, "profile_path": "/ptTcW6xP3FeZnXOmAQIyeuF1UCJ.jpg", "order": 6}, {"name": "Bill Smitrovich", "character": "Zimburger", "id": 17200, "credit_id": "52fe446bc3a368484e02213f", "cast_id": 8, "profile_path": "/rO5wJpx7ZlT6RaunZw20OGF6O2Y.jpg", "order": 7}, {"name": "Julian Holloway", "character": "Wolsley", "id": 79635, "credit_id": "52fe446bc3a368484e02215f", "cast_id": 14, "profile_path": "/pUIJv2p67qpWGNsBnppoqO4KJMJ.jpg", "order": 8}, {"name": "Enzo Cilenti", "character": "Digby", "id": 91494, "credit_id": "52fe446bc3a368484e022163", "cast_id": 15, "profile_path": "/6dlgtWOJtgaMpR2Q4asUeqFBG5W.jpg", "order": 9}, {"name": "Aaron Lustig", "character": "Monk", "id": 140237, "credit_id": "5516758ac3a3683485000f06", "cast_id": 18, "profile_path": "/3Ay4BadhJtyTWxhOwxvryHkE3dj.jpg", "order": 10}, {"name": "Natalia Rivera", "character": "Chenault's Friend", "id": 973259, "credit_id": "52fe446bc3a368484e02216b", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Bruce Robinson", "department": "Directing", "job": "Director", "credit_id": "52fe446bc3a368484e022145", "profile_path": "/mImqLKRBNPUZz8dIAzoIvkADDwS.jpg", "id": 8966}], "vote_average": 5.4, "runtime": 120}, "7131": {"poster_path": "/gPFn6CIe4Af6jeFmyIpyk5hGV4.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300257475, "overview": "Famed monster slayer Gabriel Van Helsing (Hugh Jackman) is dispatched to Transylvania to assist the last of the Valerious bloodline in defeating Count Dracula. Anna Valerious (Kate Beckinsale) reveals that Dracula has formed an unholy alliance with Dr. Frankenstein's monster and is hell-bent on exacting a centuries-old curse on her family.", "video": false, "id": 7131, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Van Helsing", "tagline": "The One Name They All Fear.", "vote_count": 470, "homepage": "", "belongs_to_collection": {"backdrop_path": "/uBNNmICsBnLhB2zhQ8PpwoluoYR.jpg", "poster_path": "/kuqxOT5Ox7mrHUSvwuDCJG6tuRL.jpg", "id": 109608, "name": "Van Helsing Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0338526", "adult": false, "backdrop_path": "/xL05gsaqt6p78L5rBC9fDJBRnEy.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Sommers Company, The", "id": 19643}, {"name": "Stillking Films", "id": 11345}, {"name": "Carpathian Pictures", "id": 2174}], "release_date": "2004-05-06", "popularity": 0.999974996584815, "original_title": "Van Helsing", "budget": 160000000, "cast": [{"name": "Hugh Jackman", "character": "Van Helsing", "id": 6968, "credit_id": "52fe4471c3a36847f80965d3", "cast_id": 2, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Anna Valerious", "id": 3967, "credit_id": "52fe4471c3a36847f80965d7", "cast_id": 3, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Richard Roxburgh", "character": "Vladislaus Dracula", "id": 12206, "credit_id": "52fe4471c3a36847f80965db", "cast_id": 4, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 2}, {"name": "Josie Maran", "character": "Marishka", "id": 74651, "credit_id": "52fe4471c3a36847f80965f7", "cast_id": 9, "profile_path": "/jkH3k2NS5qLdIQZbpxGCXmXLcrG.jpg", "order": 3}, {"name": "David Wenham", "character": "Carl", "id": 1371, "credit_id": "52fe4471c3a36847f80965fb", "cast_id": 10, "profile_path": "/hOG5mAd5pzT30V6adkwkpe87HY7.jpg", "order": 4}, {"name": "Shuler Hensley", "character": "Frankenstein's Monster", "id": 96892, "credit_id": "52fe4471c3a36847f80965ff", "cast_id": 11, "profile_path": "/xAeK7my9ZFHcHGCrgDeUUDFTty1.jpg", "order": 5}, {"name": "Elena Anaya", "character": "Aleera", "id": 3623, "credit_id": "52fe4471c3a36847f8096603", "cast_id": 12, "profile_path": "/5qq1tPZQ8XLn4oa6YwCuj1gqTQI.jpg", "order": 6}, {"name": "Will Kemp", "character": "Velkan", "id": 54500, "credit_id": "52fe4471c3a36847f8096607", "cast_id": 13, "profile_path": "/cQAKDIsxoZlzp8OmEiXGUCFjxre.jpg", "order": 7}, {"name": "Kevin J. O'Connor", "character": "Igor", "id": 18916, "credit_id": "52fe4471c3a36847f809660b", "cast_id": 14, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 8}, {"name": "Alun Armstrong", "character": "Cardinal Jinette", "id": 2629, "credit_id": "52fe4472c3a36847f809660f", "cast_id": 15, "profile_path": "/ycP0KgF9OJ5seFGFPpUDPFfU7CI.jpg", "order": 9}, {"name": "Silvia Colloca", "character": "Verona", "id": 141492, "credit_id": "52fe4472c3a36847f8096613", "cast_id": 16, "profile_path": "/94IqIgrhQQgw6YC562vyayH2XwP.jpg", "order": 10}, {"name": "Tom Fisher", "character": "Top Hat", "id": 27678, "credit_id": "52fe4472c3a36847f8096617", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Samuel West", "character": "Dr. Victor Frankenstein", "id": 54447, "credit_id": "52fe4472c3a36847f809661b", "cast_id": 18, "profile_path": "/w6L9AZSFx1n3O4fDcAml6BDt1t.jpg", "order": 12}, {"name": "Robbie Coltrane", "character": "Mr. Hyde (voice)", "id": 1923, "credit_id": "52fe4472c3a36847f809661f", "cast_id": 19, "profile_path": "/wp09MuNtqjSOKEjdQuOFem79IfT.jpg", "order": 13}, {"name": "Stephen Fisher", "character": "Dr. Jekyll", "id": 141493, "credit_id": "52fe4472c3a36847f8096623", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a36847f80965cf", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 5.8, "runtime": 131}, "121824": {"poster_path": "/ybrl9mix93XF3E5M5KO9sLi3nGt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After serving 28 years in prison for accidentally killing the son of a crime boss, newly paroled gangster Val (Al Pacino) reunites with his former partners in crime, Doc (Christopher Walken) and Hirsch (Alan Arkin), for a night on the town. As the three men revisit old haunts, reflect on their glory days and try to make up for lost time, one wrestles with a terrible quandary: Doc has orders to kill Val, and time is running out for him to figure out a way out of his dilemma.", "video": false, "id": 121824, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Stand Up Guys", "tagline": "They don't make 'em like they used to.", "vote_count": 131, "homepage": "http://www.standupguysfilm.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1389096", "adult": false, "backdrop_path": "/8bZtmUCYPDyJI5xV7yzElH67FLz.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}], "release_date": "2012-09-01", "popularity": 0.479646057006237, "original_title": "Stand Up Guys", "budget": 0, "cast": [{"name": "Alan Arkin", "character": "Richard Hirsch", "id": 1903, "credit_id": "52fe4a6ec3a368484e152cf9", "cast_id": 2, "profile_path": "/gcrKO2z0YVUXBXVeB9V8PndG0IJ.jpg", "order": 0}, {"name": "Julianna Margulies", "character": "Nina Hirsch", "id": 25654, "credit_id": "52fe4a6ec3a368484e152cfd", "cast_id": 3, "profile_path": "/exVtcqLTMYRsmSFLxVhTwxHfWbN.jpg", "order": 1}, {"name": "Al Pacino", "character": "Valentine \"Val\"", "id": 1158, "credit_id": "52fe4a6ec3a368484e152d01", "cast_id": 4, "profile_path": "/lk0nt14sH96SYHDkX7qsLlpqRjJ.jpg", "order": 2}, {"name": "Christopher Walken", "character": "Doc", "id": 4690, "credit_id": "52fe4a6ec3a368484e152d05", "cast_id": 5, "profile_path": "/t0gzpYe6FOWH1yKeRBOIpTKgFsB.jpg", "order": 3}, {"name": "Katheryn Winnick", "character": "Oxana", "id": 26723, "credit_id": "52fe4a6ec3a368484e152d09", "cast_id": 6, "profile_path": "/m5SDxIj3noQe2B3Cbmocyrob6rz.jpg", "order": 4}, {"name": "Mark Margolis", "character": "Claphands", "id": 1173, "credit_id": "52fe4a6ec3a368484e152d13", "cast_id": 9, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 5}, {"name": "Vanessa Ferlito", "character": "Sylvia", "id": 20491, "credit_id": "52fe4a6ec3a368484e152d17", "cast_id": 10, "profile_path": "/zfugHDsDHurBIf13xvYZtM9OdLG.jpg", "order": 6}, {"name": "Addison Timlin", "character": "Alex", "id": 56542, "credit_id": "52fe4a6ec3a368484e152d1b", "cast_id": 11, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 7}, {"name": "Lucy Punch", "character": "Wendy", "id": 66446, "credit_id": "52fe4a6ec3a368484e152d1f", "cast_id": 12, "profile_path": "/3ONWq6dz2cJYvk9VBRcfMyFTFo3.jpg", "order": 8}, {"name": "Bill Burr", "character": "Larry", "id": 109708, "credit_id": "54cd4de4c3a3687f94001f94", "cast_id": 19, "profile_path": "/fXvur9kJ3Pw9CWqHvEkvyyRVuuU.jpg", "order": 9}, {"name": "Craig Sheffer", "character": "Jargoniew #1", "id": 4138, "credit_id": "54cd4e0dc3a3687f94001fa0", "cast_id": 20, "profile_path": "/izAHksLjKOhOUMJmOPkwcNs6Kls.jpg", "order": 10}], "directors": [{"name": "Fisher Stevens", "department": "Directing", "job": "Director", "credit_id": "52fe4a6ec3a368484e152cf5", "profile_path": "/hSjXJ172t9pgsfhtgonyjgYqdnj.jpg", "id": 26473}], "vote_average": 6.1, "runtime": 95}, "121826": {"poster_path": "/9XJCnqQA1Yl3hiIHeH1jpibyT1i.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 57138219, "overview": "The directorial debut of Dustin Hoffman, Quartet is a high-drama comedy about temperamental divas and old grudges, passion and pride, romance and Rigoletto, starring Maggie Smith, Tom Courtenay, Billy Connolly and Pauline Collins as four retired opera singers.", "video": false, "id": 121826, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Quartet", "tagline": "Four Friends Looking For A Little Harmony", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1441951", "adult": false, "backdrop_path": "/cTOZopbtjnaSSptIlGgVFtnYATV.jpg", "production_companies": [{"name": "Headline Pictures", "id": 13151}], "release_date": "2012-09-08", "popularity": 0.543998361284338, "original_title": "Quartet", "budget": 0, "cast": [{"name": "Maggie Smith", "character": "Jean Horton", "id": 10978, "credit_id": "52fe4a6ec3a368484e152d6d", "cast_id": 6, "profile_path": "/8OtS7JhL12Qa8QzSuZZAzNRbFnu.jpg", "order": 0}, {"name": "Tom Courtenay", "character": "Reginald Paget", "id": 14011, "credit_id": "52fe4a6ec3a368484e152d65", "cast_id": 4, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 1}, {"name": "Billy Connolly", "character": "Wilf Bond", "id": 9188, "credit_id": "52fe4a6ec3a368484e152d61", "cast_id": 3, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 2}, {"name": "Pauline Collins", "character": "Cissy Robson", "id": 83437, "credit_id": "52fe4a6ec3a368484e152d5d", "cast_id": 2, "profile_path": "/nygjw5eWU5UDvJvfZJSO36Vlpko.jpg", "order": 3}, {"name": "Michael Gambon", "character": "Cedric Livingston", "id": 5658, "credit_id": "52fe4a6ec3a368484e152d69", "cast_id": 5, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 4}, {"name": "Sheridan Smith", "character": "Dr. Lucy Cogan", "id": 110080, "credit_id": "52fe4a6ec3a368484e152d71", "cast_id": 7, "profile_path": "/1B6CdF4gsnedHUd0nudAozqvVFC.jpg", "order": 5}, {"name": "Jumayn Hunter", "character": "", "id": 85067, "credit_id": "542f2b70c3a3680442000c46", "cast_id": 8, "profile_path": null, "order": 6}], "directors": [{"name": "Dustin Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe4a6ec3a368484e152d59", "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "id": 4483}], "vote_average": 6.4, "runtime": 98}, "56292": {"poster_path": "/96k0SkL6bXqKyOj50hYu3fRRbmV.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 694713380, "overview": "In the 4th installment of the Mission Impossible series, Ethan Hunt (Cruise) and his team are racing against time to track down a dangerous terrorist named Hendricks (Nyqvist), who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.", "video": false, "id": 56292, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Mission: Impossible - Ghost Protocol", "tagline": "No Plan. No Backup. No Choice.", "vote_count": 2048, "homepage": "http://www.missionimpossible.com/", "belongs_to_collection": {"backdrop_path": "/bEOri3OCJ7EKaruUSQhD8W6CPjn.jpg", "poster_path": "/gwyJPIhCK4Xz2WogeBnhCSQfUek.jpg", "id": 87359, "name": "Mission: Impossible Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "sv", "name": "svenska"}], "imdb_id": "tt1229238", "adult": false, "backdrop_path": "/wLRRjb0GEUCuBMx3YFksg2xyH4S.jpg", "production_companies": [{"name": "Bad Robot", "id": 11461}, {"name": "Paramount Pictures", "id": 4}, {"name": "Skydance Productions", "id": 6277}, {"name": "TC Productions", "id": 21777}], "release_date": "2011-12-21", "popularity": 2.37925140608446, "original_title": "Mission: Impossible - Ghost Protocol", "budget": 140000000, "cast": [{"name": "Tom Cruise", "character": "Ethan Hunt", "id": 500, "credit_id": "52fe48f7c3a36847f8182983", "cast_id": 5, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Jeremy Renner", "character": "Brandt", "id": 17604, "credit_id": "52fe48f7c3a36847f818297f", "cast_id": 4, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 1}, {"name": "Simon Pegg", "character": "Benji Dunn", "id": 11108, "credit_id": "52fe48f7c3a36847f8182987", "cast_id": 6, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 2}, {"name": "Paula Patton", "character": "Jane Carter", "id": 52851, "credit_id": "52fe48f7c3a36847f8182993", "cast_id": 10, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 3}, {"name": "Anil Kapoor", "character": "Brij Nath", "id": 72118, "credit_id": "52fe48f7c3a36847f818298b", "cast_id": 7, "profile_path": "/m3GKtXU8DeP5DH1UD352c5ITOrc.jpg", "order": 4}, {"name": "Josh Holloway", "character": "Trevor Hanaway", "id": 142636, "credit_id": "52fe48f7c3a36847f818298f", "cast_id": 9, "profile_path": "/4vMj8zIMSZoxxXefanh5SuEDDJ6.jpg", "order": 5}, {"name": "Ving Rhames", "character": "Luther Stickell", "id": 10182, "credit_id": "52fe48f7c3a36847f8182997", "cast_id": 11, "profile_path": "/qfp236BgZ8S8sfFJvDTd3gjB3Ml.jpg", "order": 6}, {"name": "Miraj Grbic", "character": "Bogdan", "id": 508582, "credit_id": "52fe48f7c3a36847f818299b", "cast_id": 12, "profile_path": "/pdbaK0gzkSS4B1EEa2FE9VsdjGq.jpg", "order": 7}, {"name": "Ivan Shvedoff", "character": "Leonid Lisenker", "id": 6079, "credit_id": "52fe48f7c3a36847f818299f", "cast_id": 13, "profile_path": "/AkzSvrLAo3e4rFb1vrT7HzAQM6R.jpg", "order": 8}, {"name": "Samuli Edelmann", "character": "Wistrom", "id": 92428, "credit_id": "52fe48f7c3a36847f81829a3", "cast_id": 14, "profile_path": "/r89sCuJlxYOWGQh6JinCUYQXrDc.jpg", "order": 9}, {"name": "Michael Nyqvist", "character": "Kurt Hendricks", "id": 6283, "credit_id": "52fe48f7c3a36847f81829a7", "cast_id": 15, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 10}, {"name": "L\u00e9a Seydoux", "character": "Sabine Moreau", "id": 121529, "credit_id": "52fe48f7c3a36847f81829ab", "cast_id": 16, "profile_path": "/zeAhFa8SljdoRaojPWmQNHbqFDk.jpg", "order": 11}, {"name": "Michelle Monaghan", "character": "Julia Meade", "id": 11705, "credit_id": "52fe48f7c3a36847f81829bb", "cast_id": 19, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 12}, {"name": "Tom Wilkinson", "character": "IMF Secretary", "id": 207, "credit_id": "52fe48f7c3a36847f81829bf", "cast_id": 20, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 13}, {"name": "Tammy Hui", "character": "Julia's Friend", "id": 173079, "credit_id": "533030fa9251413a7b005736", "cast_id": 21, "profile_path": "/xqL92MfcUjJ77c9B1SCkodQCfsl.jpg", "order": 14}], "directors": [{"name": "Brad Bird", "department": "Directing", "job": "Director", "credit_id": "52fe48f7c3a36847f818296f", "profile_path": "/2XwJyYs6XNLaQuC1O2gbEHT3jxx.jpg", "id": 7087}], "vote_average": 6.5, "runtime": 133}, "62630": {"poster_path": "/umXaJpx6MMO9MKx2KIcMzPctVyF.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "NL", "name": "Netherlands"}], "revenue": 1284399, "overview": "A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.", "video": false, "id": 62630, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "The Devil's Double", "tagline": "The 80's were brilliant, if you were in charge.", "vote_count": 71, "homepage": "http://www.corsandd.com/be-en/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1270262", "adult": false, "backdrop_path": "/98OmSugAkjJqLGw5rrejj3qjQ9H.jpg", "production_companies": [{"name": "Corrino Media Corporation", "id": 7178}, {"name": "Corsan", "id": 7299}, {"name": "Staccato Films", "id": 7300}], "release_date": "2011-02-11", "popularity": 0.318204787082312, "original_title": "The Devil's Double", "budget": 21051437, "cast": [{"name": "Dominic Cooper", "character": "Latif Yahia / Uday Hussein", "id": 55470, "credit_id": "52fe4685c3a368484e09542d", "cast_id": 6, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 0}, {"name": "Ludivine Sagnier", "character": "Sarrab", "id": 4390, "credit_id": "52fe4685c3a368484e095431", "cast_id": 7, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 1}, {"name": "Raad Rawi", "character": "Munem", "id": 73710, "credit_id": "52fe4685c3a368484e095435", "cast_id": 8, "profile_path": "/dpD5ZqCgLGk5vaEzRBpB70qOCRA.jpg", "order": 2}, {"name": "Mehmet Ferda", "character": "Kamel Hannah", "id": 112429, "credit_id": "52fe4685c3a368484e095429", "cast_id": 5, "profile_path": "/ziDwUNNts043kUrErYWA1OigjYm.jpg", "order": 3}, {"name": "Philip Quast", "character": "Saddam Hussein / Faoaz", "id": 117314, "credit_id": "52fe4685c3a368484e095445", "cast_id": 11, "profile_path": "/olNUiKdIDH5njTMyl7I9fbBrD6v.jpg", "order": 3}, {"name": "Mimoun Oa\u00efssa", "character": "Ali", "id": 446906, "credit_id": "52fe4685c3a368484e095461", "cast_id": 16, "profile_path": "/atkte2MuXaXKqiAkieiGIwYUTBi.jpg", "order": 4}, {"name": "Khalid Laith", "character": "Yassem Al-Helou", "id": 219506, "credit_id": "52fe4685c3a368484e095465", "cast_id": 17, "profile_path": null, "order": 5}, {"name": "Nasser Memarzia", "character": "Latif's Father", "id": 946350, "credit_id": "52fe4685c3a368484e09546d", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Dar Salim", "character": "Azzam", "id": 234907, "credit_id": "52fe4685c3a368484e095469", "cast_id": 18, "profile_path": "/3CrPTwZJ0hsWzX7oi7sKFfzDo82.jpg", "order": 8}, {"name": "Pano Masti", "character": "Said", "id": 1423442, "credit_id": "54d35b8ec3a3686ab90037a0", "cast_id": 63, "profile_path": null, "order": 9}, {"name": "Stewart Scudamore", "character": "Father of School Girl", "id": 25095, "credit_id": "54d35bda9251413fca0032e1", "cast_id": 65, "profile_path": null, "order": 11}, {"name": "Amrita Acharia", "character": "School Girl", "id": 1048692, "credit_id": "54d35bf89251413fd30032a2", "cast_id": 66, "profile_path": "/uwz4vjtIMxD9y7uq3CFpPjrznVR.jpg", "order": 12}, {"name": "Amber Rose Revah", "character": "Bride", "id": 574378, "credit_id": "54d35c1392514109ba002ad0", "cast_id": 67, "profile_path": "/uWKJDbkZqttvc1os3UNanSmh5Aa.jpg", "order": 13}, {"name": "Selva Rasalingam", "character": "Rokan", "id": 24607, "credit_id": "54d35c3492514109ba002ad5", "cast_id": 68, "profile_path": null, "order": 14}, {"name": "Jamie Harding", "character": "Qusay", "id": 549331, "credit_id": "54d35c9ec3a3686abf003466", "cast_id": 69, "profile_path": null, "order": 15}, {"name": "Akin Gazi", "character": "Saad", "id": 1261092, "credit_id": "551861a6c3a36862f90047b3", "cast_id": 71, "profile_path": null, "order": 16}], "directors": [{"name": "Lee Tamahori", "department": "Directing", "job": "Director", "credit_id": "52fe4685c3a368484e095425", "profile_path": "/prKk2YCHZhp9ChoWOPEFRDsJhcv.jpg", "id": 7256}], "vote_average": 6.5, "runtime": 109}, "228326": {"poster_path": "/fhq87M6NNXqYH4OUoIfsM6oDUA3.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "From producer Guillermo del Toro and director Jorge Gutierrez comes an animated comedy with a unique visual style. THE BOOK OF LIFE is the journey of Manolo, a young man who is torn between fulfilling the expectations of his family and following his heart. Before choosing which path to follow, he embarks on an incredible adventure that spans three fantastical worlds where he must face his greatest fears. Rich with a fresh take on pop music favorites, THE BOOK OF LIFE encourages us to celebrate the past while looking forward to the future.", "video": false, "id": 228326, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Book of Life", "tagline": "", "vote_count": 148, "homepage": "http://www.bookoflifemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2262227", "adult": false, "backdrop_path": "/lVshZpxU5EB8zXJrnXxblaDps6m.jpg", "production_companies": [{"name": "Reel FX Creative Studios", "id": 2787}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2014-10-17", "popularity": 1.7908949518846, "original_title": "The Book of Life", "budget": 0, "cast": [{"name": "Diego Luna", "character": "Manolo (voice)", "id": 8688, "credit_id": "52fe4ec79251416c75162175", "cast_id": 1, "profile_path": "/9f1y0pLqohP8U3eEVCa4di1tESb.jpg", "order": 0}, {"name": "Channing Tatum", "character": "Joaquin (voice)", "id": 38673, "credit_id": "52fe4ec79251416c75162179", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 1}, {"name": "Zoe Saldana", "character": "Maria (voice)", "id": 8691, "credit_id": "52fe4ec79251416c7516217d", "cast_id": 3, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 2}, {"name": "Christina Applegate", "character": "Mary Beth (voice)", "id": 18979, "credit_id": "52fe4ec79251416c75162181", "cast_id": 4, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 3}, {"name": "Eugenio Derbez", "character": "Chato (voice)", "id": 239574, "credit_id": "52fe4ec79251416c75162185", "cast_id": 5, "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "order": 4}, {"name": "Cheech Marin", "character": "Pancho Rodriguez (voice)", "id": 11159, "credit_id": "52fe4ec79251416c75162189", "cast_id": 6, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 5}, {"name": "Gabriel Iglesias", "character": "Pepe Rodriguez (voice)", "id": 86498, "credit_id": "52fe4ec79251416c7516218d", "cast_id": 7, "profile_path": "/n4RRL96ftX4dYWSZyEiakbpHnz1.jpg", "order": 6}, {"name": "Ron Perlman", "character": "Xibalba (voice)", "id": 2372, "credit_id": "543720790e0a2617d20006a7", "cast_id": 10, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 7}, {"name": "Kate del Castillo", "character": "La Muerte (voice)", "id": 36628, "credit_id": "54cfeee4925141475700b0c4", "cast_id": 13, "profile_path": "/p5aq3I9P53C1bN7yN8sTUhUwfrs.jpg", "order": 8}, {"name": "Ana de la Reguera", "character": "Carmen S\u00e1nchez (voice)", "id": 57409, "credit_id": "54cfef66c3a3681c9c008b82", "cast_id": 14, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 9}, {"name": "Anjelah Johnson", "character": "Adelita / Nina (voice)", "id": 933835, "credit_id": "54cfefc3c3a3687f8200b029", "cast_id": 15, "profile_path": "/8C2qTejJ1qjwOvpUgmwnTR4oGSf.jpg", "order": 10}, {"name": "Dan Navarro", "character": "Chakal", "id": 1422233, "credit_id": "54cff0a5c3a3687f8200b046", "cast_id": 17, "profile_path": null, "order": 12}], "directors": [{"name": "Jorge R. Gutierrez", "department": "Directing", "job": "Director", "credit_id": "52fe4ec79251416c75162199", "profile_path": null, "id": 1265056}], "vote_average": 7.4, "runtime": 95}, "76617": {"poster_path": "/ejts0R0cfTWLduGsdEqOiMvFxHP.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47241945, "overview": "A young woman learns that she has inherited a Texas estate from her deceased grandmother.\u00a0After embarking on a road trip with friends to uncover her roots, she finds she is the sole owner of a lavish, isolated Victorian mansion. But her newfound wealth comes at a price as she stumbles upon a horror that awaits her in the mansion\u2019s dank cellars.", "video": false, "id": 76617, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Texas Chainsaw 3D", "tagline": "Evil wears many faces.", "vote_count": 188, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1572315", "adult": false, "backdrop_path": "/l7hHzXb5cly5dlo6smdpUkOMaoI.jpg", "production_companies": [{"name": "Lions Gate", "id": 6644}, {"name": "Nu Image Films", "id": 925}], "release_date": "2013-01-04", "popularity": 1.12699868242046, "original_title": "Texas Chainsaw 3D", "budget": 20000000, "cast": [{"name": "Alexandra Daddario", "character": "Heather Miller", "id": 109513, "credit_id": "52fe4944c3a368484e122de9", "cast_id": 4, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 0}, {"name": "Dan Yeager", "character": "Leatherface", "id": 1054724, "credit_id": "52fe4944c3a368484e122ded", "cast_id": 5, "profile_path": null, "order": 1}, {"name": "Bill Moseley", "character": "Drayton Sawyer", "id": 27737, "credit_id": "52fe4944c3a368484e122df1", "cast_id": 6, "profile_path": "/zZP7ijcocjYN6cNKwpPwmRDWsv1.jpg", "order": 2}, {"name": "Marilyn Burns", "character": "Verna Carson", "id": 27798, "credit_id": "52fe4944c3a368484e122df5", "cast_id": 7, "profile_path": "/bEPYa5U36XHiTBdZqZkcRq3cdPP.jpg", "order": 3}, {"name": "Tania Raymonde", "character": "Nikki", "id": 38666, "credit_id": "52fe4944c3a368484e122df9", "cast_id": 8, "profile_path": "/2sJuL0fveM1K8z9wuQZiDpAgY0H.jpg", "order": 4}, {"name": "Trey Songz", "character": "Ryan", "id": 224231, "credit_id": "52fe4944c3a368484e122dfd", "cast_id": 9, "profile_path": null, "order": 5}, {"name": "Scott Eastwood", "character": "Deputy Carl Hartman", "id": 928572, "credit_id": "52fe4944c3a368484e122e01", "cast_id": 10, "profile_path": "/ufi3VMDT1MsA5udcKyw8SHagjzi.jpg", "order": 6}, {"name": "Richard Riehle", "character": "Farnsworth", "id": 18262, "credit_id": "52fe4944c3a368484e122e05", "cast_id": 11, "profile_path": "/fFFjfOX7BUsfBQQP54K8QEkkEC2.jpg", "order": 7}, {"name": "Shaun Sipos", "character": "Darryl", "id": 65772, "credit_id": "52fe4944c3a368484e122e09", "cast_id": 12, "profile_path": "/zg0BVYdso2eaPuGu9zT6e2uKIIj.jpg", "order": 8}, {"name": "Thom Barry", "character": "Sheriff Hooper", "id": 8175, "credit_id": "52fe4944c3a368484e122e0d", "cast_id": 13, "profile_path": "/AhUa78UoZ5oGk5kWiatnDaPxSnO.jpg", "order": 9}, {"name": "Keram Malicki-S\u00e1nchez", "character": "Kenny", "id": 4134, "credit_id": "52fe4944c3a368484e122e11", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sue Rock", "character": "Arlene Miller", "id": 969635, "credit_id": "52fe4944c3a368484e122e15", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Paul Rae", "character": "Mayor Burt Hartman", "id": 61260, "credit_id": "52fe4944c3a368484e122e19", "cast_id": 16, "profile_path": "/ny1kzrULA4dA4j95oETiYZCl6GV.jpg", "order": 12}, {"name": "Gunnar Hansen", "character": "Leatherface (Archive Footage)", "id": 27804, "credit_id": "52fe4944c3a368484e122e1d", "cast_id": 17, "profile_path": "/bwqo7HNyvYqPCnTWlOHSUnstg2F.jpg", "order": 13}, {"name": "John Dugan", "character": "Grandfather", "id": 104892, "credit_id": "52fe4944c3a368484e122e21", "cast_id": 18, "profile_path": "/4rhSibBG8MY7qtcoOtXI7NGqBfh.jpg", "order": 14}, {"name": "Dodie Brown", "character": "Loretta Sawyer", "id": 138608, "credit_id": "52fe4944c3a368484e122e25", "cast_id": 19, "profile_path": null, "order": 15}, {"name": "Kari J. Kramer", "character": "Pig Man", "id": 1054725, "credit_id": "52fe4944c3a368484e122e29", "cast_id": 20, "profile_path": null, "order": 16}, {"name": "Sam McKinzie", "character": "Young Leatherface", "id": 1054726, "credit_id": "52fe4944c3a368484e122e2d", "cast_id": 21, "profile_path": null, "order": 17}, {"name": "James MacDonald", "character": "Officer Marvin", "id": 1188456, "credit_id": "52fe4944c3a368484e122e67", "cast_id": 31, "profile_path": "/1Ktzfgvq7wdTbavMC594rKYvx7R.jpg", "order": 18}], "directors": [{"name": "John Luessenhop", "department": "Directing", "job": "Director", "credit_id": "52fe4944c3a368484e122de5", "profile_path": "/HI2jnUyVBZu2xYOohzjM4nB8XQ.jpg", "id": 97026}], "vote_average": 5.4, "runtime": 92}, "8967": {"poster_path": "/ptDOdfOg0srtk4TGdeYbLqxv2nd.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54674226, "overview": "The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.", "video": false, "id": 8967, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Tree of Life", "tagline": "Nothing stands still.", "vote_count": 254, "homepage": "http://www.twowaysthroughlife.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0478304", "adult": false, "backdrop_path": "/zJyDbdoyNquF2GnfFdvD54y2OBG.jpg", "production_companies": [{"name": "Fox Searchlight", "id": 7391}], "release_date": "2011-05-27", "popularity": 0.891261852002461, "original_title": "The Tree of Life", "budget": 32000000, "cast": [{"name": "Brad Pitt", "character": "Mr. O'Brien", "id": 287, "credit_id": "52fe44ccc3a36847f80aa95b", "cast_id": 2, "profile_path": "/kc3M04QQAuZ9woUvH3Ju5T7ZqG5.jpg", "order": 0}, {"name": "Sean Penn", "character": "Jack", "id": 2228, "credit_id": "52fe44ccc3a36847f80aa95f", "cast_id": 3, "profile_path": "/f2uy1zq0qmtLBpsr6N9uQ8FktOr.jpg", "order": 1}, {"name": "Jessica Chastain", "character": "Mrs. O'Brien", "id": 83002, "credit_id": "52fe44ccc3a36847f80aa963", "cast_id": 4, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 2}, {"name": "Fiona Shaw", "character": "Grandmother", "id": 10981, "credit_id": "52fe44ccc3a36847f80aa967", "cast_id": 5, "profile_path": "/dbNqgCaBZAfcICh5lLkmGCvEN4H.jpg", "order": 3}, {"name": "Tye Sheridan", "character": "Steve", "id": 1034681, "credit_id": "52fe44ccc3a36847f80aa981", "cast_id": 10, "profile_path": "/tdplYVnd1bEWjv41B4gk8D1vLfO.jpg", "order": 4}, {"name": "Joanna Going", "character": "Jack's Wife", "id": 59662, "credit_id": "52fe44ccc3a36847f80aa96b", "cast_id": 6, "profile_path": "/8wPmJGGj4HEUfaYzYjoL1AzOSlf.jpg", "order": 5}], "directors": [{"name": "Terrence Malick", "department": "Directing", "job": "Director", "credit_id": "52fe44ccc3a36847f80aa957", "profile_path": "/4w0C0RaJ3qS6YZ7Ons6VZcEdfl7.jpg", "id": 30715}], "vote_average": 6.7, "runtime": 139}, "211954": {"poster_path": "/dhf4A9Hwg1ZSsq6FkqEhX33SruX.jpg", "production_countries": [{"iso_3166_1": "MX", "name": "Mexico"}], "revenue": 99067206, "overview": "Valentin is Acapulco's resident playboy, until a former fling leaves a baby on his doorstep and him heading with her out of Mexico.", "video": false, "id": 211954, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Instructions Not Included", "tagline": "Life doesn't care if you're ready.", "vote_count": 75, "homepage": "", "belongs_to_collection": null, "original_language": "es", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2378281", "adult": false, "backdrop_path": "/iswBaKVDpxdzYJg57rbuVCG5jb2.jpg", "production_companies": [{"name": "Pantaleon Films", "id": 15194}], "release_date": "2013-07-20", "popularity": 0.897555021273445, "original_title": "No se Aceptan Devoluciones", "budget": 5500000, "cast": [{"name": "Loreto Peralta", "character": "Maggie", "id": 1202611, "credit_id": "52fe4da0c3a368484e1f3abf", "cast_id": 18, "profile_path": null, "order": 0}, {"name": "Eugenio Derbez", "character": "Valent\u00edn", "id": 239574, "credit_id": "52fe4da0c3a368484e1f3a93", "cast_id": 7, "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "order": 1}, {"name": "Jessica Lindsey", "character": "Julie", "id": 1178995, "credit_id": "52fe4da0c3a368484e1f3a97", "cast_id": 8, "profile_path": "/1HtWGanA2Duom5aWKA1P19Y5SOQ.jpg", "order": 2}, {"name": "Daniel Raymont", "character": "Frank Ryan", "id": 181876, "credit_id": "52fe4da0c3a368484e1f3a9b", "cast_id": 9, "profile_path": "/rp7gfIafpH5LzBmuIWReXVjKcj3.jpg", "order": 3}, {"name": "Hugo Stiglitz", "character": "Johnny Bravo", "id": 38764, "credit_id": "52fe4da0c3a368484e1f3a9f", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Arcelia Ram\u00edrez", "character": "Judeisy", "id": 932160, "credit_id": "52fe4da0c3a368484e1f3aa3", "cast_id": 11, "profile_path": "/doJY9OkV9mVGW9ZpPGga9Urc5ck.jpg", "order": 5}, {"name": "Agust\u00edn Bernal", "character": "Lupe", "id": 1044093, "credit_id": "52fe4da0c3a368484e1f3aa7", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Karla Souza", "character": "Jackie", "id": 144275, "credit_id": "52fe4da0c3a368484e1f3aab", "cast_id": 13, "profile_path": "/eYwArgBl9ArlGGQi1VvYY44Zpu3.jpg", "order": 7}, {"name": "Roger Cudney", "character": "Abogado Julie", "id": 78006, "credit_id": "52fe4da0c3a368484e1f3aaf", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Ari Brickman", "character": "Director", "id": 556129, "credit_id": "52fe4da0c3a368484e1f3ab3", "cast_id": 15, "profile_path": null, "order": 9}, {"name": "Jeannine Derbez", "character": "Directora", "id": 140603, "credit_id": "52fe4da0c3a368484e1f3ab7", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Jes\u00fas Ochoa", "character": "Himself", "id": 69865, "credit_id": "52fe4da0c3a368484e1f3abb", "cast_id": 17, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 11}, {"name": "Andr\u00e9s V\u00e1zquez", "character": "Valent\u00edn ni\u00f1o", "id": 1458151, "credit_id": "5538dc66c3a36815ac0095c1", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Leia Freitas", "character": "Amante Brasile\u00f1a", "id": 1458152, "credit_id": "5538e0e1c3a3681be4004c52", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "\u00c1ngela Moreno", "character": "Amante dominicana", "id": 1458153, "credit_id": "5538e176c3a36878fd005703", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Gilda Gentile", "character": "Amante argentina", "id": 1458154, "credit_id": "5538e204c3a36878fd005735", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Nancy Taira", "character": "Amante oriental", "id": 1458155, "credit_id": "5538e27ac3a3685cf8001434", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Sammy P\u00e9rez", "character": "Sammy", "id": 1458158, "credit_id": "5538e48ec3a36878fd00579a", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Gregg Lucas", "character": "Agente migraci\u00f3n", "id": 1383942, "credit_id": "5538e9d692514112560059ba", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Migael Penix", "character": "Portero hotel L.A.", "id": 1458162, "credit_id": "5538eb6c92514138a90026ee", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Alenka R\u00edos", "character": "Camarera", "id": 1058176, "credit_id": "5538ed2d925141275e001420", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Camila Gallegos", "character": "Maggie beb\u00e9", "id": 1458167, "credit_id": "5538ed7192514140b7001da9", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Matilda Gallegos", "character": "Maggie beb\u00e9", "id": 1458169, "credit_id": "5538edb192514138a9002721", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Danny Lopez", "character": "Aztecman", "id": 1458709, "credit_id": "553aa7529251416874001d7f", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Eduardo Gleason", "character": "Hern\u00e1n Cort\u00e9s", "id": 1458710, "credit_id": "553aa7df925141651800bc54", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Javier De la Vega", "character": "Staff 'Aztecman'", "id": 1087382, "credit_id": "553aae7dc3a3683e55001fad", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Jake Koenig", "character": "Mr. Anders", "id": 1376390, "credit_id": "553aaefb925141125600842e", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Margarita Wynne", "character": "Directora escuela", "id": 1262022, "credit_id": "553abffbc3a3683e550020f8", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Melissa Temme", "character": "Maestra Maggie", "id": 1276161, "credit_id": "553ac0a89251416874001fbd", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Laura Krystine", "character": "Ni\u00f1a bullying", "id": 1458737, "credit_id": "553ac133c3a3683e14002075", "cast_id": 36, "profile_path": null, "order": 29}, {"name": "Francisco Avenda\u00f1o", "character": "Doctor", "id": 1250862, "credit_id": "553ac234925141275e003eaf", "cast_id": 37, "profile_path": null, "order": 30}], "directors": [{"name": "Eugenio Derbez", "department": "Directing", "job": "Director", "credit_id": "52fe4da0c3a368484e1f3a71", "profile_path": "/qbdFijrdgGKc4QKL6rL9eh6zJOP.jpg", "id": 239574}], "vote_average": 7.6, "runtime": 115}, "9386": {"poster_path": "/vXgWOXa7m3cEhOhYjR5q2UZCBBp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 102243874, "overview": "Veteran Secret Service agent Frank Horrigan is a man haunted by his failure to save President Kennedy while serving protection detail in Dallas. Thirty years later, a man calling himself \"Booth\" threatens the life of the current President, forcing Horrigan to come back to protection detail to confront the ghosts from his past.", "video": false, "id": 9386, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "In the Line of Fire", "tagline": "An assassin on the loose. A president in danger. Only one man stands between them...", "vote_count": 67, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107206", "adult": false, "backdrop_path": "/lWmRtLisFIZzfvhbFeyx61af0zZ.jpg", "production_companies": [{"name": "Castle Rock Entertainment", "id": 97}, {"name": "Columbia Pictures Corporation", "id": 441}], "release_date": "1993-07-08", "popularity": 0.82244563120416, "original_title": "In the Line of Fire", "budget": 0, "cast": [{"name": "Clint Eastwood", "character": "Secret Service Agent Frank Horrigan", "id": 190, "credit_id": "52fe44f0c3a36847f80b3101", "cast_id": 1, "profile_path": "/n8h4ZHteFFXfmzUW6OEaPWanDnm.jpg", "order": 0}, {"name": "Rene Russo", "character": "Secret Service Agent Lilly Raines", "id": 14343, "credit_id": "52fe44f0c3a36847f80b3109", "cast_id": 3, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 1}, {"name": "John Malkovich", "character": "Mitch Leary", "id": 6949, "credit_id": "52fe44f0c3a36847f80b3105", "cast_id": 2, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 2}, {"name": "Dylan McDermott", "character": "Secret Service Agent Al D'Andrea", "id": 32597, "credit_id": "52fe44f0c3a36847f80b310d", "cast_id": 4, "profile_path": "/4VVyvrxVVrrX9GsKlkSnUz32Ft6.jpg", "order": 3}, {"name": "Gary Cole", "character": "Secret Service Presidential Detail Agent-In-Charge Bill Watts", "id": 21163, "credit_id": "52fe44f0c3a36847f80b3147", "cast_id": 15, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 4}, {"name": "Fred Thompson", "character": "White House Chief of Staff Harry Sargent", "id": 17874, "credit_id": "52fe44f0c3a36847f80b314b", "cast_id": 16, "profile_path": "/wk6ihO1JvxBwfvPGkYLKMHpQcGb.jpg", "order": 5}, {"name": "Tobin Bell", "character": "Mendoza", "id": 2144, "credit_id": "52fe44f0c3a36847f80b314f", "cast_id": 17, "profile_path": "/9zC81ykEW26DCvo4H4IxQxks0Re.jpg", "order": 6}], "directors": [{"name": "Wolfgang Petersen", "department": "Directing", "job": "Director", "credit_id": "52fe44f0c3a36847f80b3113", "profile_path": "/2dXaZDJWOmjWagbnbfDxaPqCAbj.jpg", "id": 5231}], "vote_average": 6.3, "runtime": 128}, "15362": {"poster_path": "/mdjCA5crpk0tiftH2v91c7js0qF.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "The story of Jacques Mesrine, France's public enemy No. 1 during the 1970s. After nearly two decades of legendary criminal feats -- from multiple bank robberies and to prison breaks -- Mesrine was gunned down by the French police in Paris.", "video": false, "id": 15362, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Mesrine: Public Enemy #1", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3SirYFnkQwYhAec3ugZS8BKpMbk.jpg", "poster_path": "/kFUC6s54Q8jn1eNBqs6xOGa2jeL.jpg", "id": 85945, "name": "The Mesrine Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0411272", "adult": false, "backdrop_path": "/eCkYOAH6ffHKTZYQpLZbL1H9MDF.jpg", "production_companies": [{"name": "Remstar Productions", "id": 4298}, {"name": "La Petite Reine", "id": 1992}], "release_date": "2008-11-19", "popularity": 0.53736630644706, "original_title": "L'ennemi public n\u00b01", "budget": 80000000, "cast": [{"name": "Vincent Cassel", "character": "Jacques Mesrine", "id": 1925, "credit_id": "52fe46519251416c75074781", "cast_id": 3, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 0}, {"name": "Ludivine Sagnier", "character": "Sylvie Jeanjacquot", "id": 4390, "credit_id": "52fe46519251416c75074785", "cast_id": 4, "profile_path": "/sc0yD6DWgYsMKBpKrYqaZDYz8SX.jpg", "order": 1}, {"name": "Mathieu Amalric", "character": "Fran\u00e7ois Besse", "id": 8789, "credit_id": "52fe46519251416c75074789", "cast_id": 5, "profile_path": "/yJlm02FobTETwbyaCTOOU26OfmS.jpg", "order": 2}, {"name": "G\u00e9rard Lanvin", "character": "Charly Bauer", "id": 70165, "credit_id": "52fe46519251416c7507478d", "cast_id": 6, "profile_path": "/qK3YBWuTC0CuXL0wmRo7Zhcz8tJ.jpg", "order": 3}, {"name": "Samuel Le Bihan", "character": "Michel Ardouin", "id": 49025, "credit_id": "537dc7cbc3a368059e000fee", "cast_id": 7, "profile_path": "/j3OLT8ccuFREbG5TUwqfuHDZDkA.jpg", "order": 4}, {"name": "Olivier Gourmet", "character": "Commissaire Broussard", "id": 45152, "credit_id": "53a961b60e0a261439007810", "cast_id": 8, "profile_path": "/30MOkEJL3qFtAV9dlbSrFVgcNAU.jpg", "order": 5}], "directors": [{"name": "Jean-Fran\u00e7ois Richet", "department": "Directing", "job": "Director", "credit_id": "52fe46519251416c75074777", "profile_path": null, "id": 58324}], "vote_average": 7.4, "runtime": 133}, "39939": {"poster_path": "/egJdSR2XVOC0P8P6bVa5CCvxStN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18492362, "overview": "Four bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.", "video": false, "id": 39939, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 9648, "name": "Mystery"}], "title": "Super Troopers", "tagline": "Altered State Police", "vote_count": 147, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0247745", "adult": false, "backdrop_path": "/dyHIPT1Q2nZjsciWBuTPikYOxzA.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Broken Lizard Industries", "id": 2773}], "release_date": "2001-01-18", "popularity": 0.857268469294238, "original_title": "Super Troopers", "budget": 3000000, "cast": [{"name": "Jay Chandrasekhar", "character": "Thorny", "id": 52049, "credit_id": "52fe47409251416c9106f229", "cast_id": 8, "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "order": 1}, {"name": "Steve Lemme", "character": "Mac", "id": 52051, "credit_id": "52fe47409251416c9106f22d", "cast_id": 9, "profile_path": "/kZtGtYLBVA6AGp8TZOF95dHobD5.jpg", "order": 2}, {"name": "Kevin Heffernan", "character": "Farva", "id": 56251, "credit_id": "52fe47409251416c9106f231", "cast_id": 10, "profile_path": "/afuCF27oMcjV8wNf6YIPXl3XZPE.jpg", "order": 3}, {"name": "Paul Soter", "character": "Foster", "id": 56253, "credit_id": "52fe47409251416c9106f235", "cast_id": 11, "profile_path": "/t3Sl0MLEWvYFCuQ31foB5gnYVBa.jpg", "order": 4}, {"name": "Geoffrey Arend", "character": "College Boy 3", "id": 5375, "credit_id": "52fe47409251416c9106f239", "cast_id": 12, "profile_path": "/srwmNiqd8cYa2bjbzSEq6Ic0ilm.jpg", "order": 5}, {"name": "Brian Cox", "character": "Captain O'Hagan", "id": 1248, "credit_id": "52fe47409251416c9106f23d", "cast_id": 13, "profile_path": "/m15C58NWii5WCIg57Llr7hejnfy.jpg", "order": 6}, {"name": "Erik Stolhanske", "character": "Rabbit", "id": 56252, "credit_id": "52fe47409251416c9106f247", "cast_id": 15, "profile_path": "/RLlVv6cLfJQrMrwzNXJXdILoRp.jpg", "order": 7}, {"name": "Marisa Coughlan", "character": "Ursula", "id": 56595, "credit_id": "52fe47409251416c9106f251", "cast_id": 17, "profile_path": "/iATJK8gWf8pXwJIKB0w8lQ38TTH.jpg", "order": 8}], "directors": [{"name": "Jay Chandrasekhar", "department": "Directing", "job": "Director", "credit_id": "52fe47409251416c9106f213", "profile_path": "/8uJuSNCnDrsIJQVE257XnhYCPVO.jpg", "id": 52049}], "vote_average": 6.7, "runtime": 100}, "195589": {"poster_path": "/bpj8myebvnTw5HDmzTSI8N6WFYr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 268157400, "overview": "A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.", "video": false, "id": 195589, "genres": [{"id": 35, "name": "Comedy"}], "title": "Neighbors", "tagline": "Family vs. Frat", "vote_count": 781, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2004420", "adult": false, "backdrop_path": "/aRzZhu6hNg3FgSH8ZsOPJG4ie0Y.jpg", "production_companies": [{"name": "Good Universe", "id": 17393}, {"name": "Point Grey Pictures", "id": 16615}], "release_date": "2014-05-09", "popularity": 2.13528700002512, "original_title": "Neighbors", "budget": 18000000, "cast": [{"name": "Seth Rogen", "character": "Mac Radner", "id": 19274, "credit_id": "52fe4d169251416c9110a20b", "cast_id": 1, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Zac Efron", "character": "Teddy Sanders", "id": 29222, "credit_id": "52fe4d169251416c9110a213", "cast_id": 3, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 1}, {"name": "Rose Byrne", "character": "Kelly Radner", "id": 9827, "credit_id": "52fe4d169251416c9110a20f", "cast_id": 2, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 2}, {"name": "Dave Franco", "character": "Pete", "id": 54697, "credit_id": "52fe4d169251416c9110a217", "cast_id": 4, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 3}, {"name": "Christopher Mintz-Plasse", "character": "Scoonie", "id": 54691, "credit_id": "52fe4d169251416c9110a21b", "cast_id": 5, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 4}, {"name": "Jake M. Johnson", "character": "Sebastian Cremmington", "id": 543505, "credit_id": "52fe4d169251416c9110a235", "cast_id": 10, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 5}, {"name": "Lisa Kudrow", "character": "Carol Gladstone", "id": 14406, "credit_id": "52fe4d169251416c9110a231", "cast_id": 9, "profile_path": "/z3LoUDhedZWabyLjbOyIwli0YU7.jpg", "order": 6}, {"name": "Carla Gallo", "character": "Paula", "id": 54708, "credit_id": "52fe4d169251416c9110a239", "cast_id": 11, "profile_path": "/sVcLxI1DUtV6eXLvI9tsIHVwA2R.jpg", "order": 7}, {"name": "Chasty Ballesteros", "character": "Alecia", "id": 1158832, "credit_id": "52fe4d169251416c9110a23d", "cast_id": 12, "profile_path": "/ciHZCLB504QF9cptNy9ecLahPlJ.jpg", "order": 9}, {"name": "Halston Sage", "character": "Brooke", "id": 934243, "credit_id": "5326a290c3a3683dbf003e48", "cast_id": 20, "profile_path": "/qS5j5apFwdFdNP4ECoNEU4nLEHm.jpg", "order": 10}, {"name": "Cassandra Starr", "character": "Sorority Girl", "id": 1203537, "credit_id": "52fe4d169251416c9110a255", "cast_id": 18, "profile_path": "/jh2lsW9pwTa7fAUJf1df91VnJSF.jpg", "order": 11}, {"name": "Craig Roberts", "character": "Assjuice", "id": 104561, "credit_id": "52fe4d169251416c9110a249", "cast_id": 15, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 13}, {"name": "Hannibal Buress", "character": "Officer Watkins", "id": 500427, "credit_id": "5326a2b3c3a3682378003f42", "cast_id": 21, "profile_path": "/diJUQc3FWB0ol1MCBZQJsMZpMoK.jpg", "order": 14}, {"name": "Jason Mantzoukas", "character": "Dr. Theodorakis", "id": 111683, "credit_id": "52fe4d169251416c9110a24d", "cast_id": 16, "profile_path": "/lBMDmGGuhLrg0Q4cZi2vDc2ucgF.jpg", "order": 15}, {"name": "Ike Barinholtz", "character": "Jimmy", "id": 198150, "credit_id": "52fe4d169251416c9110a245", "cast_id": 14, "profile_path": "/j4cOnT9kT6AePfbPe3aZ5dSeDEk.jpg", "order": 16}, {"name": "Ali Cobrin", "character": "Whitney", "id": 496731, "credit_id": "53fd31e7c3a3684c8c0004da", "cast_id": 40, "profile_path": "/koAUk1iZtZcl3kXNZ08hNqhbeAN.jpg", "order": 17}, {"name": "Natasha Leggero", "character": "Prostitute", "id": 1214835, "credit_id": "542719230e0a2655660005f7", "cast_id": 41, "profile_path": "/xLHMLRHRrQ03zHukUNi1q5yroxt.jpg", "order": 18}, {"name": "Jerrod Carmichael", "character": "Garf", "id": 1400880, "credit_id": "54cf6fef92514147570082cf", "cast_id": 42, "profile_path": "/5a08qc6pLzSBlGdNnwmK8IaQXpV.jpg", "order": 19}, {"name": "Maria Olsen", "character": "Prostitute (uncredited)", "id": 142402, "credit_id": "55143ac392514103e9003032", "cast_id": 43, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 20}], "directors": [{"name": "Nicholas Stoller", "department": "Directing", "job": "Director", "credit_id": "52fe4d169251416c9110a221", "profile_path": "/yggs0rsWBN8tji9GaMxncGZqs1J.jpg", "id": 52934}], "vote_average": 6.2, "runtime": 96}, "72710": {"poster_path": "/jnPOLAPQLhqMeDLV2BsQfrd6R11.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 63327201, "overview": "A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, \"Wanda\" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.", "video": false, "id": 72710, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "The Host", "tagline": "You will be one of us", "vote_count": 908, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1517260", "adult": false, "backdrop_path": "/eurvLB7prqNEFFwlwSSmf0sLGtY.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Silver Reel", "id": 12075}, {"name": "Chockstone Pictures", "id": 13649}], "release_date": "2013-03-29", "popularity": 1.04817896447352, "original_title": "The Host", "budget": 44000000, "cast": [{"name": "Saoirse Ronan", "character": "Melanie Stryder / Wanda", "id": 36592, "credit_id": "52fe487bc3a368484e0fa99d", "cast_id": 52, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 0}, {"name": "Diane Kruger", "character": "The Seeker / Lacey", "id": 9824, "credit_id": "52fe487bc3a368484e0fa8eb", "cast_id": 11, "profile_path": "/r6W7hk4zlSfUdsT3pBY8NhfeT4a.jpg", "order": 1}, {"name": "Jake Abel", "character": "Ian O'Shea", "id": 105727, "credit_id": "52fe487bc3a368484e0fa8ef", "cast_id": 12, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 2}, {"name": "William Hurt", "character": "Jeb Stryder", "id": 227, "credit_id": "52fe487bc3a368484e0fa8f3", "cast_id": 13, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 3}, {"name": "Frances Fisher", "character": "Maggie Stryder", "id": 3713, "credit_id": "52fe487bc3a368484e0fa8f7", "cast_id": 14, "profile_path": "/yaBISljHMuNpq58hXIOET8WfEEO.jpg", "order": 4}, {"name": "Max Irons", "character": "Jared Howe", "id": 232396, "credit_id": "52fe487bc3a368484e0fa8fb", "cast_id": 15, "profile_path": "/mFKJvG49Gr1Fb0HgsTDg4YSZzJc.jpg", "order": 5}, {"name": "Chandler Canterbury", "character": "Jamie Stryder", "id": 77334, "credit_id": "52fe487bc3a368484e0fa8ff", "cast_id": 16, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 6}, {"name": "Boyd Holbrook", "character": "Kyle O'Shea", "id": 467645, "credit_id": "52fe487bc3a368484e0fa903", "cast_id": 17, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 7}, {"name": "Stephen Rider", "character": "Seeker Reed", "id": 936403, "credit_id": "52fe487bc3a368484e0fa913", "cast_id": 20, "profile_path": "/oS4eTt8qKF9320mGceFgArbFO0v.jpg", "order": 8}, {"name": "Emily Browning", "character": "Wanda", "id": 70456, "credit_id": "52fe487bc3a368484e0fa91d", "cast_id": 22, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 9}, {"name": "Rachel Roberts", "character": "Soul Fleur", "id": 35198, "credit_id": "52fe487bc3a368484e0fa939", "cast_id": 27, "profile_path": "/70ICch4alwBoHAYygFzmIi6cwcE.jpg", "order": 10}, {"name": "Shyaam Karra", "character": "Soul Anshu", "id": 1273231, "credit_id": "52fe487bc3a368484e0fa93d", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Brent Wendell Williams", "character": "Soul Winters", "id": 1273232, "credit_id": "52fe487bc3a368484e0fa941", "cast_id": 29, "profile_path": null, "order": 12}, {"name": "Jhil McEntyre", "character": "Soul Lake", "id": 1273233, "credit_id": "52fe487bc3a368484e0fa945", "cast_id": 30, "profile_path": null, "order": 13}, {"name": "Jalen Coleman", "character": "Soul Nafisa", "id": 1273234, "credit_id": "52fe487bc3a368484e0fa949", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Jaylen Moore", "character": "Seeker Song", "id": 1181296, "credit_id": "52fe487bc3a368484e0fa94d", "cast_id": 32, "profile_path": "/xpRNJYs1ogkSIUPIUo5XLNfRW3.jpg", "order": 15}, {"name": "Stephen Conroy", "character": "Seeker Sands", "id": 1273235, "credit_id": "52fe487bc3a368484e0fa951", "cast_id": 33, "profile_path": null, "order": 16}, {"name": "Michael L. Parker", "character": "Seeker Wolfe", "id": 1273236, "credit_id": "52fe487bc3a368484e0fa955", "cast_id": 34, "profile_path": null, "order": 17}, {"name": "Phil Austin", "character": "Seeker Waverley", "id": 92058, "credit_id": "52fe487bc3a368484e0fa959", "cast_id": 35, "profile_path": "/gZfvR7jJCqYx64Y6QWdizQXsx3j.jpg", "order": 18}, {"name": "Marcus Lyle Brown", "character": "Healer Fords", "id": 16460, "credit_id": "52fe487bc3a368484e0fa95d", "cast_id": 36, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 19}, {"name": "J.D. Evermore", "character": "Trevor Stryder", "id": 129868, "credit_id": "52fe487bc3a368484e0fa961", "cast_id": 37, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 20}, {"name": "John Wilmot", "character": "Soul Raines", "id": 1273237, "credit_id": "52fe487bc3a368484e0fa965", "cast_id": 38, "profile_path": null, "order": 21}, {"name": "Evan Cleaver", "character": "Seeker Pavo", "id": 1273238, "credit_id": "52fe487bc3a368484e0fa969", "cast_id": 39, "profile_path": "/1Ejju8eS7c8lyAlI3v7L6lujndP.jpg", "order": 22}, {"name": "Mustafa Harris", "character": "Brandt", "id": 1273239, "credit_id": "52fe487bc3a368484e0fa96d", "cast_id": 40, "profile_path": "/e0moNlfMRCJkdzU3nfblnWxd2vC.jpg", "order": 23}, {"name": "Scott Lawrence", "character": "Doc", "id": 42317, "credit_id": "52fe487bc3a368484e0fa971", "cast_id": 41, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 24}, {"name": "Shawn Carter Peterson", "character": "Wes", "id": 176491, "credit_id": "52fe487bc3a368484e0fa975", "cast_id": 42, "profile_path": "/bamePsxo8GTU6BZgvyGT94NmRGm.jpg", "order": 25}, {"name": "Raeden Greer", "character": "Lily", "id": 1123886, "credit_id": "52fe487bc3a368484e0fa979", "cast_id": 43, "profile_path": null, "order": 26}, {"name": "Tatanka Means", "character": "Seeker Hawke", "id": 1112417, "credit_id": "52fe487bc3a368484e0fa97d", "cast_id": 44, "profile_path": null, "order": 27}, {"name": "Erika Schultz", "character": "Seeker Zephyr", "id": 1035349, "credit_id": "52fe487bc3a368484e0fa981", "cast_id": 45, "profile_path": null, "order": 28}, {"name": "David House", "character": "Seeker Summers", "id": 79211, "credit_id": "52fe487bc3a368484e0fa985", "cast_id": 46, "profile_path": null, "order": 29}, {"name": "Ruby Lou Smith", "character": "Soul Pearle", "id": 1273240, "credit_id": "52fe487bc3a368484e0fa989", "cast_id": 47, "profile_path": null, "order": 30}, {"name": "Andrea Frankle", "character": "Healer Skye", "id": 946356, "credit_id": "52fe487bc3a368484e0fa98d", "cast_id": 48, "profile_path": "/nyT3rKJzK7egF7lyhRXa1Xb8N6V.jpg", "order": 31}, {"name": "Yohance Myles", "character": "Seeker Nova", "id": 1049735, "credit_id": "52fe487bc3a368484e0fa991", "cast_id": 49, "profile_path": null, "order": 32}, {"name": "Alex Russell", "character": "Seeker Burns", "id": 558466, "credit_id": "52fe487bc3a368484e0fa995", "cast_id": 50, "profile_path": "/yTv2ULMklkITzYZMYgQH79RVJQw.jpg", "order": 33}, {"name": "Bokeem Woodbine", "character": "Nate", "id": 71913, "credit_id": "52fe487bc3a368484e0fa999", "cast_id": 51, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 34}], "directors": [{"name": "Andrew Niccol", "department": "Directing", "job": "Director", "credit_id": "52fe487bc3a368484e0fa8bd", "profile_path": "/ufWm8st5GYkWjTFEATiNKidtwy0.jpg", "id": 8685}], "vote_average": 5.8, "runtime": 125}, "9388": {"poster_path": "/v8PKsbAGIvAhKbbRUjdQ3jgFD2S.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 24793509, "overview": "The chief spokesperson and lobbyist Nick Naylor is the Vice-President of the Academy of Tobacco Studies. He is talented in speaking and spins argument to defend the cigarette industry in the most difficult situations. His best friends are Polly Bailey that works in the Moderation Council in alcohol business, and Bobby Jay Bliss of the gun business own advisory group SAFETY. They frequently meet each other in a bar and they self-entitle the Mod Squad a.k.a. Merchants of Death, disputing which industry has killed more people. Nick's greatest enemy is Vermont's Senator Ortolan Finistirre, who defends in the Senate the use a skull and crossed bones in the cigarette packs. Nick's son Joey Naylor lives with his mother, and has the chance to know his father in a business trip. When the ambitious reporter Heather Holloway betrays Nick disclosing confidences he had in bed with her, his life turns upside-down. But Nick is good in what he does for the mortgage.", "video": false, "id": 9388, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Thank You for Smoking", "tagline": "Tobacco lobbyist Nick Naylor is trying to SAVE YOUR ASH!", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0427944", "adult": false, "backdrop_path": "/cv6GPeRbvlS0Vp9zVSu954nhxtR.jpg", "production_companies": [{"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Room 9 Entertainment", "id": 3567}], "release_date": "2005-09-05", "popularity": 0.626784196106171, "original_title": "Thank You for Smoking", "budget": 6500000, "cast": [{"name": "Aaron Eckhart", "character": "Nick Naylor", "id": 6383, "credit_id": "52fe44f1c3a36847f80b32c1", "cast_id": 23, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 0}, {"name": "Maria Bello", "character": "Polly Bailey", "id": 49, "credit_id": "52fe44f1c3a36847f80b32c5", "cast_id": 24, "profile_path": "/wU5I528qHPG9pAGNnghYVEW69gr.jpg", "order": 1}, {"name": "Cameron Bright", "character": "Joey Naylor", "id": 52414, "credit_id": "52fe44f1c3a36847f80b32c9", "cast_id": 25, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 2}, {"name": "Adam Brody", "character": "Jack", "id": 11702, "credit_id": "52fe44f1c3a36847f80b32cd", "cast_id": 26, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 3}, {"name": "Sam Elliott", "character": "Lorne Lutch", "id": 16431, "credit_id": "52fe44f1c3a36847f80b32d1", "cast_id": 27, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 4}, {"name": "Katie Holmes", "character": "Heather Holloway", "id": 3897, "credit_id": "52fe44f1c3a36847f80b32d5", "cast_id": 28, "profile_path": "/eYeE0Z1sOvqxt7LsQHK30vUfWaM.jpg", "order": 5}, {"name": "Rob Lowe", "character": "Jeff Megall", "id": 2879, "credit_id": "52fe44f1c3a36847f80b32d9", "cast_id": 29, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 6}, {"name": "William H. Macy", "character": "Senator Ortolan Finistirre", "id": 3905, "credit_id": "52fe44f1c3a36847f80b32dd", "cast_id": 30, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 7}, {"name": "Robert Duvall", "character": "The Captain", "id": 3087, "credit_id": "52fe44f1c3a36847f80b32e1", "cast_id": 31, "profile_path": "/1aBC7NxPy10ofng6HsJBecJ1vMZ.jpg", "order": 8}, {"name": "David Koechner", "character": "Bobby Jay Bliss", "id": 28638, "credit_id": "52fe44f1c3a36847f80b32e5", "cast_id": 32, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 9}, {"name": "J.K. Simmons", "character": "BR", "id": 18999, "credit_id": "52fe44f1c3a36847f80b32e9", "cast_id": 33, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 10}, {"name": "Kim Dickens", "character": "Jill Naylor", "id": 21165, "credit_id": "52fe44f1c3a36847f80b32ed", "cast_id": 34, "profile_path": "/yIXBljS46WXvRk2gma3ravVBBgU.jpg", "order": 11}, {"name": "Connie Ray", "character": "Pearl", "id": 35517, "credit_id": "52fe44f1c3a36847f80b32f1", "cast_id": 35, "profile_path": "/yJriGT19J24uceLCxVLbE70pd9p.jpg", "order": 12}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe44f1c3a36847f80b3269", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 7.1, "runtime": 92}, "15370": {"poster_path": "/liASKLjYzk6aJ4GbQDlfYfQk02h.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 0, "overview": "Haru, a schoolgirl bored by her ordinary routine, saves the life of an unusual cat and suddenly her world is transformed beyond anything she ever imagined. The Cat King rewards her good deed with a flurry of presents, including a very shocking proposal of marriage to his son! Haru embarks on an unexpected journey to the Kingdom of Cats where her eyes are opened to a whole other world.", "video": false, "id": 15370, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Cat Returns", "tagline": "Journey to another world.", "vote_count": 80, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt0347618", "adult": false, "backdrop_path": "/tZ1nTCUFr0cMqKKoATzCFRA0LLB.jpg", "production_companies": [{"name": "Studio Ghibli", "id": 10342}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi", "id": 11847}, {"name": "Nippon Television Network Corporation (NTV)", "id": 6755}, {"name": "Toho Company", "id": 882}, {"name": "Tokuma Shoten", "id": 1779}], "release_date": "2002-07-19", "popularity": 0.667140069875707, "original_title": "Neko no ongaeshi", "budget": 0, "cast": [{"name": "Chizuru Ikewaki", "character": "Haru Yoshioka (voice)", "id": 118651, "credit_id": "52fe46519251416c7507491f", "cast_id": 17, "profile_path": "/gBucVAeyn2njLhHcvJ2sjzmf4bp.jpg", "order": 0}, {"name": "Yoshihiko Hakamada", "character": "Baron Humbert von Gikkingen (voice)", "id": 96569, "credit_id": "52fe46519251416c75074923", "cast_id": 18, "profile_path": "/bCYcIEvaN9QTuhqdpimS9uN4tqH.jpg", "order": 1}, {"name": "Aki Maeda", "character": "Yuki (voice)", "id": 31079, "credit_id": "52fe46519251416c75074933", "cast_id": 21, "profile_path": "/wpRkVndISU2bjhOyM61cT6OTDs9.jpg", "order": 2}, {"name": "Takayuki Yamada", "character": "Lune (voice)", "id": 74377, "credit_id": "52fe46519251416c75074937", "cast_id": 22, "profile_path": "/piORAl3VEo7U26ql0GiDStrJqWO.jpg", "order": 3}, {"name": "Hitomi Sat\u00f4", "character": "Hiromi (voice)", "id": 27780, "credit_id": "52fe46519251416c7507493b", "cast_id": 23, "profile_path": "/ghGh2wiQTivTcADNJMJ6PTecZJg.jpg", "order": 4}, {"name": "Kenta Satoi", "character": "Natori (voice)", "id": 544090, "credit_id": "52fe46519251416c7507493f", "cast_id": 24, "profile_path": "/3rnxniooJ2Ze9De3oFzd0WPeg3A.jpg", "order": 5}, {"name": "Mari Hamada", "character": "Natoru (voice)", "id": 556785, "credit_id": "52fe46519251416c75074943", "cast_id": 25, "profile_path": "/gT8jfzzQ1GCDWgtkl330Smef0cd.jpg", "order": 6}, {"name": "Tetsu Watanabe", "character": "Muta (voice)", "id": 20335, "credit_id": "52fe46519251416c75074947", "cast_id": 26, "profile_path": "/6dlabJPfVvTARfd7ZWEdncfJ3SI.jpg", "order": 7}, {"name": "Y\u00f4suke Sait\u00f4", "character": "Toto (voice)", "id": 556787, "credit_id": "52fe46519251416c7507494b", "cast_id": 27, "profile_path": "/oH6RvWqxSzqLk5Wlpj1x3fe5KiG.jpg", "order": 8}, {"name": "Kumiko Okae", "character": "Haru's Mother (voice)", "id": 1132552, "credit_id": "52fe46519251416c7507494f", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Tetsur\u014d Tamba", "character": "Cat King (voice)", "id": 10071, "credit_id": "52fe46519251416c75074953", "cast_id": 29, "profile_path": "/uGToyc24HrsIrYJh4OEzbiqLa1F.jpg", "order": 10}, {"name": "Yo Oizumi", "character": "Additional voice (voice)", "id": 40450, "credit_id": "52fe46519251416c75074957", "cast_id": 30, "profile_path": "/avSKuYQiEHYY0eJoCFiKCyhGvcL.jpg", "order": 11}, {"name": "Y\u014dko Honna", "character": "Additional voice (voice)", "id": 119263, "credit_id": "52fe46519251416c7507495b", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Ken Yasuda", "character": "Additional voices (voice)", "id": 1039220, "credit_id": "52fe46519251416c7507495f", "cast_id": 32, "profile_path": null, "order": 13}], "directors": [{"name": "Hiroyuki Morita", "department": "Directing", "job": "Director", "credit_id": "52fe46519251416c750748c7", "profile_path": null, "id": 78173}], "vote_average": 7.0, "runtime": 75}, "15373": {"poster_path": "/bq6wxu0rv1GIkEwslBT2rVgLkxe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 92380927, "overview": "Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.", "video": false, "id": 15373, "genres": [{"id": 35, "name": "Comedy"}], "title": "Role Models", "tagline": "They're about to get more than they plea-bargained for.", "vote_count": 149, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0430922", "adult": false, "backdrop_path": "/z8K4NtRJMRyNB6PVuTbwgxIWlHu.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Internationale Filmproduktion Stella-del-S\u00fcd", "id": 3075}], "release_date": "2008-02-03", "popularity": 0.828643799137072, "original_title": "Role Models", "budget": 28000000, "cast": [{"name": "Seann William Scott", "character": "Wheeler", "id": 57599, "credit_id": "52fe46529251416c75074ac9", "cast_id": 2, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 0}, {"name": "Paul Rudd", "character": "Danny Donahue", "id": 22226, "credit_id": "52fe46529251416c75074acd", "cast_id": 3, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 1}, {"name": "Elizabeth Banks", "character": "Beth", "id": 9281, "credit_id": "52fe46529251416c75074ad1", "cast_id": 4, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 2}, {"name": "Christopher Mintz-Plasse", "character": "Augie Farks", "id": 54691, "credit_id": "52fe46529251416c75074ad5", "cast_id": 5, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 3}, {"name": "Bobb'e J. Thompson", "character": "Ronnie Shields", "id": 75633, "credit_id": "52fe46529251416c75074ad9", "cast_id": 6, "profile_path": "/egf09lgTqjSmSCxGLTROpkb5ZGS.jpg", "order": 4}, {"name": "Jane Lynch", "character": "Gayle Sweeny", "id": 43775, "credit_id": "52fe46529251416c75074add", "cast_id": 7, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 5}, {"name": "Ken Jeong", "character": "King Argotron", "id": 83586, "credit_id": "52fe46529251416c75074ae1", "cast_id": 8, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 6}, {"name": "Amanda Righetti", "character": "Isabel", "id": 74289, "credit_id": "52fe46529251416c75074b4b", "cast_id": 26, "profile_path": "/aCRof0Sfqrbz2vgoWqVZuPWfvD8.jpg", "order": 7}, {"name": "Joe Lo Truglio", "character": "Kuzzik", "id": 21131, "credit_id": "52fe46529251416c75074b4f", "cast_id": 27, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 8}, {"name": "Ken Marino", "character": "Jim Stansel", "id": 77089, "credit_id": "52fe46529251416c75074b53", "cast_id": 28, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 9}, {"name": "Kerri Kenney-Silver", "character": "Lynette", "id": 63220, "credit_id": "52fe46529251416c75074b57", "cast_id": 29, "profile_path": "/jYTKAjioRFDuKlcaSitjMFYV1va.jpg", "order": 10}, {"name": "A.D. Miles", "character": "Martin", "id": 22225, "credit_id": "52fe46529251416c75074b5b", "cast_id": 30, "profile_path": "/gkQpAzE07jLmbUQrXNDpGJ4W977.jpg", "order": 11}, {"name": "Matt Walsh", "character": "Davith of Glencracken", "id": 59841, "credit_id": "52fe46529251416c75074b5f", "cast_id": 31, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 12}, {"name": "Nicole Randall Johnson", "character": "Karen", "id": 155687, "credit_id": "52fe46529251416c75074b63", "cast_id": 32, "profile_path": "/nwLrlB3QsFQk0ads0ox53SdKjbT.jpg", "order": 13}, {"name": "Allie Stamler", "character": "Esplen", "id": 983661, "credit_id": "52fe46529251416c75074b67", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Carly Craig", "character": "Connie", "id": 1020027, "credit_id": "52fe46529251416c75074b6b", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Jessica Morris", "character": "Linda the Teacher", "id": 104912, "credit_id": "52fe46529251416c75074b6f", "cast_id": 35, "profile_path": "/vF227oxsvYSSAObqlgZXW5juT2A.jpg", "order": 16}, {"name": "Vincent Martella", "character": "Artonius", "id": 188024, "credit_id": "52fe46529251416c75074b73", "cast_id": 36, "profile_path": "/oj6wwVmB0NgGPk9jqKkYWNVC9vz.jpg", "order": 17}, {"name": "Jorma Taccone", "character": "Mitch from Graphics", "id": 62863, "credit_id": "52fe46529251416c75074b77", "cast_id": 37, "profile_path": "/8NqZvjdsMIT3HgfdltoMBqxsEcB.jpg", "order": 18}, {"name": "Nate Hartley", "character": "Rule Master", "id": 55097, "credit_id": "52fe46529251416c75074b7b", "cast_id": 38, "profile_path": "/AtqrlvIIQVEQCSMranOewGtCxt8.jpg", "order": 19}, {"name": "David Wain", "character": "Chevron Baine", "id": 22214, "credit_id": "52fe46529251416c75074b7f", "cast_id": 39, "profile_path": "/253GyLoZKOhwXPCEgn4w8RMegzW.jpg", "order": 20}, {"name": "Louis C.K.", "character": "Security Guard", "id": 52849, "credit_id": "52fe46529251416c75074b83", "cast_id": 40, "profile_path": "/6x5c5IaJOo1nHZh0AykVEw1od7h.jpg", "order": 21}, {"name": "Keegan-Michael Key", "character": "Duane", "id": 298410, "credit_id": "52fe46529251416c75074b87", "cast_id": 41, "profile_path": "/gqPRozx8ppAg2TSjW3ww56LnIZr.jpg", "order": 22}], "directors": [{"name": "David Wain", "department": "Directing", "job": "Director", "credit_id": "52fe46529251416c75074ac5", "profile_path": "/253GyLoZKOhwXPCEgn4w8RMegzW.jpg", "id": 22214}], "vote_average": 6.2, "runtime": 99}, "121875": {"poster_path": "/4qAnWMNKUadx10jlCrkRAAuT4bN.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A sixteen-year-old boy insinuates himself into the house of a fellow student from his literature class and writes about it in essays for his French teacher. Faced with this gifted and unusual pupil, the teacher rediscovers his enthusiasm for his work, but the boy\u2019s intrusion will unleash a series of uncontrollable events.", "video": false, "id": 121875, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "In the House", "tagline": "There's always a way in.", "vote_count": 65, "homepage": "", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1964624", "adult": false, "backdrop_path": "/vvRlCks4HEZktmAhDIqghyamKiY.jpg", "production_companies": [{"name": "Wild Bunch", "id": 856}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Mandarin Film", "id": 7839}, {"name": "FOZ", "id": 149}], "release_date": "2012-10-08", "popularity": 0.957528781206647, "original_title": "Dans la maison", "budget": 0, "cast": [{"name": "Kristin Scott Thomas", "character": "Jeanne", "id": 5470, "credit_id": "52fe4a70c3a368484e153319", "cast_id": 3, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 0}, {"name": "Emmanuelle Seigner", "character": "Esther", "id": 8925, "credit_id": "52fe4a70c3a368484e15331d", "cast_id": 4, "profile_path": "/llh2iFcVslY8PEFAvuEKLI7y8U3.jpg", "order": 1}, {"name": "Denis M\u00e9nochet", "character": "Rapha p\u00e8re", "id": 81125, "credit_id": "52fe4a70c3a368484e153321", "cast_id": 5, "profile_path": "/n5xfK8tJlmR9I2d4yJe0ySB0kUP.jpg", "order": 2}, {"name": "Jean-Fran\u00e7ois Balmer", "character": "Le proviseur", "id": 35527, "credit_id": "52fe4a70c3a368484e153325", "cast_id": 7, "profile_path": "/b1nC316aY3wpyqN3casQdtVkUbY.jpg", "order": 3}, {"name": "Fabrice Colson", "character": "Client de la galerie", "id": 1075111, "credit_id": "52fe4a70c3a368484e153329", "cast_id": 8, "profile_path": "/dyEYNic0mFfOPoJmenJdMKaG5ah.jpg", "order": 4}, {"name": "Diana Stewart", "character": "Une femme au balcon", "id": 1075112, "credit_id": "52fe4a70c3a368484e15332d", "cast_id": 9, "profile_path": "/xB2EnRPDXhBsm3QgpfXIdlNiFjz.jpg", "order": 5}, {"name": "Ernst Umhauer", "character": "Claude", "id": 1075113, "credit_id": "52fe4a70c3a368484e153331", "cast_id": 10, "profile_path": "/scqntEjR99Mb8dgg2L84hokFrcJ.jpg", "order": 6}, {"name": "St\u00e9phanie Campion", "character": "Une femme au balcon", "id": 1075114, "credit_id": "52fe4a70c3a368484e153335", "cast_id": 11, "profile_path": "/llTea3DvWZQVISqizTOy6ZPfV7T.jpg", "order": 7}, {"name": "Bastien Ughetto", "character": "Rapha fils", "id": 1075115, "credit_id": "52fe4a70c3a368484e153339", "cast_id": 12, "profile_path": "/fblcTWDQe13KYpFC78skIWXM1c0.jpg", "order": 8}, {"name": "Fabrice Luchini", "character": "Germain", "id": 28255, "credit_id": "52fe4a70c3a368484e15333d", "cast_id": 13, "profile_path": "/wtdwJeLGUBkXSm0ElDlsGTDZcJD.jpg", "order": 9}], "directors": [{"name": "Fran\u00e7ois Ozon", "department": "Directing", "job": "Director", "credit_id": "52fe4a70c3a368484e153315", "profile_path": "/uTqoYgeKs6zmHjViolp1OspLcEF.jpg", "id": 4387}], "vote_average": 7.1, "runtime": 105}, "7191": {"poster_path": "/as01o40tJ2FhtheqeXf7bVZ0EQO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 170764026, "overview": "Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.", "video": false, "id": 7191, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Cloverfield", "tagline": "Some Thing Has Found Us", "vote_count": 488, "homepage": "http://www.cloverfieldmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1060277", "adult": false, "backdrop_path": "/6kVVfNT0auG6fU5SFQ1zbayNWUC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Bad Robot", "id": 11461}], "release_date": "2008-01-15", "popularity": 1.0576344964766, "original_title": "Cloverfield", "budget": 25000000, "cast": [{"name": "Lizzy Caplan", "character": "Marlena", "id": 51988, "credit_id": "52fe4472c3a36847f809690d", "cast_id": 11, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 0}, {"name": "Jessica Lucas", "character": "Lily", "id": 51989, "credit_id": "52fe4472c3a36847f8096911", "cast_id": 12, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 1}, {"name": "Odette Annable", "character": "Beth", "id": 51992, "credit_id": "52fe4472c3a36847f8096921", "cast_id": 16, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 2}, {"name": "Michael Stahl-David", "character": "Rob", "id": 51991, "credit_id": "52fe4472c3a36847f8096919", "cast_id": 14, "profile_path": "/aPy8ph7kNIEPUMcraThfZonVs70.jpg", "order": 3}, {"name": "Mike Vogel", "character": "Jason", "id": 6858, "credit_id": "52fe4472c3a36847f809691d", "cast_id": 15, "profile_path": "/ihmq6dZLJmJUeFKX0ExdRbeNLbW.jpg", "order": 4}, {"name": "T.J. Miller", "character": "Hud", "id": 51990, "credit_id": "52fe4472c3a36847f8096915", "cast_id": 13, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 5}, {"name": "Anjul Nigam", "character": "Kassierer", "id": 51993, "credit_id": "52fe4472c3a36847f8096925", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Margot Farley", "character": "Jenn", "id": 51994, "credit_id": "52fe4472c3a36847f8096929", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Theo Rossi", "character": "Antonio", "id": 51995, "credit_id": "52fe4472c3a36847f809692d", "cast_id": 19, "profile_path": "/5lvHsqU7pmZjy9E7TcKkFzljAuy.jpg", "order": 8}, {"name": "Brian Klugman", "character": "Charlie", "id": 51996, "credit_id": "52fe4472c3a36847f8096931", "cast_id": 20, "profile_path": "/jlzEmXQGYOnoKC9ipLSEC5Ioz9E.jpg", "order": 9}, {"name": "Kelvin Yu", "character": "Clark", "id": 51997, "credit_id": "52fe4472c3a36847f8096935", "cast_id": 21, "profile_path": "/tYLvMxo3EBXmAdYUzJp5ymTygS.jpg", "order": 10}, {"name": "Liza Lapira", "character": "Heather", "id": 51998, "credit_id": "52fe4472c3a36847f8096939", "cast_id": 22, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 11}, {"name": "Lili Mirojnick", "character": "Lei", "id": 51999, "credit_id": "52fe4472c3a36847f809693d", "cast_id": 23, "profile_path": "/yWYc6S2ZJW5SL7wuWno6tm9AdDu.jpg", "order": 12}, {"name": "Ben Feldman", "character": "Travis", "id": 78431, "credit_id": "52fe4472c3a36847f809694d", "cast_id": 26, "profile_path": "/cve3khwonn7sWBwDThA44XwH2Fo.jpg", "order": 13}, {"name": "Elena Caruso", "character": "Party Goer", "id": 209670, "credit_id": "52fe4472c3a36847f8096951", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Vakisha Coleman", "character": "Party Goer", "id": 1205127, "credit_id": "52fe4472c3a36847f8096955", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Will Greenberg", "character": "Party Goer", "id": 203750, "credit_id": "52fe4472c3a36847f8096959", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Rob Kerkovich", "character": "Party Goer", "id": 150209, "credit_id": "52fe4472c3a36847f809695d", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Ryan Key", "character": "Party Goer", "id": 1205128, "credit_id": "52fe4472c3a36847f8096961", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Hooman Khalili", "character": "Party Goer", "id": 1205129, "credit_id": "52fe4472c3a36847f8096965", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Rasika Mathur", "character": "Party Goer", "id": 204460, "credit_id": "52fe4472c3a36847f8096969", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Baron Vaughn", "character": "Party Goer", "id": 1187107, "credit_id": "52fe4472c3a36847f809696d", "cast_id": 34, "profile_path": "/uWOWEDTBuekStc6l5FPWq32qWdV.jpg", "order": 21}, {"name": "Charlyne Yi", "character": "Party Goer", "id": 93285, "credit_id": "52fe4472c3a36847f8096971", "cast_id": 35, "profile_path": "/nH6Wfy1ikRNj97RWLZ2FRPbxSOA.jpg", "order": 22}, {"name": "Roma Torre", "character": "Herself", "id": 162555, "credit_id": "52fe4472c3a36847f8096975", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Rick Overton", "character": "Frantic Man", "id": 1539, "credit_id": "52fe4472c3a36847f8096979", "cast_id": 37, "profile_path": "/siD7GffMvlYyEj6lvEOgxxQ2Jci.jpg", "order": 24}, {"name": "Martin Cohen", "character": "Burly Guy", "id": 328645, "credit_id": "52fe4472c3a36847f809697d", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Jason Cerbone", "character": "Police Officer", "id": 60432, "credit_id": "52fe4472c3a36847f8096981", "cast_id": 39, "profile_path": "/6JDSTbmt33EPgGpjkURWSaF7x8T.jpg", "order": 26}, {"name": "Pavel Lychnikoff", "character": "Russian Man on Street", "id": 52762, "credit_id": "52fe4472c3a36847f8096985", "cast_id": 40, "profile_path": "/zfuvpqQqrLudmaEQ5UwgXYJbCid.jpg", "order": 27}, {"name": "Billy Brown", "character": "Staff Sgt. Pryce", "id": 64805, "credit_id": "52fe4472c3a36847f8096989", "cast_id": 41, "profile_path": "/tEyVvi3dY3LDxSpTA3a7nK6nMGv.jpg", "order": 28}, {"name": "Scott Lawrence", "character": "Lead Soldier", "id": 42317, "credit_id": "52fe4472c3a36847f809698d", "cast_id": 42, "profile_path": "/mschdp0EoTCi93GY4So08YlyeYI.jpg", "order": 29}, {"name": "Jeffrey De Serrano", "character": "Soldier", "id": 1016151, "credit_id": "52fe4472c3a36847f8096991", "cast_id": 43, "profile_path": "/sg7Nb65NnNWqpmFRUw4s5ynuXbZ.jpg", "order": 30}, {"name": "Tim Griffin", "character": "Command Center Officer", "id": 27031, "credit_id": "52fe4472c3a36847f8096995", "cast_id": 44, "profile_path": "/hwGjdnFT8MAowE4oYsIGQovqUsD.jpg", "order": 31}, {"name": "Chris Mulkey", "character": "Lt. Col. Graff", "id": 15824, "credit_id": "52fe4472c3a36847f8096999", "cast_id": 45, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 32}, {"name": "Susse Budde", "character": "Medic", "id": 62852, "credit_id": "52fe4472c3a36847f809699d", "cast_id": 46, "profile_path": null, "order": 33}, {"name": "Jason Lombard", "character": "Second Medic", "id": 565187, "credit_id": "52fe4472c3a36847f80969a1", "cast_id": 47, "profile_path": null, "order": 34}, {"name": "Jamie Martz", "character": "Helicopter Pilot", "id": 99764, "credit_id": "52fe4472c3a36847f80969a5", "cast_id": 48, "profile_path": null, "order": 35}, {"name": "Don Abernathy", "character": "New York Street Pedestrian (uncredited)", "id": 208360, "credit_id": "52fe4472c3a36847f80969a9", "cast_id": 49, "profile_path": null, "order": 36}, {"name": "Michael Ark", "character": "Party Goer (uncredited)", "id": 1174981, "credit_id": "52fe4472c3a36847f80969ad", "cast_id": 50, "profile_path": null, "order": 37}, {"name": "Caley Bisson", "character": "Party Bartender (uncredited)", "id": 1205130, "credit_id": "52fe4472c3a36847f80969b1", "cast_id": 51, "profile_path": null, "order": 38}, {"name": "James Thomas Bligh", "character": "EMS Commander (uncredited)", "id": 115978, "credit_id": "52fe4472c3a36847f80969b5", "cast_id": 52, "profile_path": null, "order": 39}, {"name": "Maylen Calienes", "character": "Frantic Girl on Bridge (uncredited)", "id": 1205131, "credit_id": "52fe4472c3a36847f80969b9", "cast_id": 53, "profile_path": null, "order": 40}, {"name": "Craig Dabbs", "character": "Army Sgt. First Class (uncredited)", "id": 1205132, "credit_id": "52fe4472c3a36847f80969bd", "cast_id": 54, "profile_path": null, "order": 41}, {"name": "Tommy Gerrits", "character": "Boy Looking at Magazines (uncredited)", "id": 1205133, "credit_id": "52fe4472c3a36847f80969c1", "cast_id": 55, "profile_path": null, "order": 42}, {"name": "Jason Giffin", "character": "National Guardsman / Tank Gunner (uncredited)", "id": 1205134, "credit_id": "52fe4472c3a36847f80969c5", "cast_id": 56, "profile_path": null, "order": 43}, {"name": "Adam Greeves", "character": "Military Personnel (uncredited)", "id": 1205135, "credit_id": "52fe4472c3a36847f80969c9", "cast_id": 57, "profile_path": null, "order": 44}, {"name": "Brandon G. Holley", "character": "Military Personnel (uncredited)", "id": 208008, "credit_id": "52fe4472c3a36847f80969cd", "cast_id": 58, "profile_path": null, "order": 45}, {"name": "Hisonni Johnson", "character": "Party Goer (uncredited)", "id": 97532, "credit_id": "52fe4472c3a36847f80969d1", "cast_id": 59, "profile_path": null, "order": 46}, {"name": "Adam Karst", "character": "New Yorker (uncredited)", "id": 1205136, "credit_id": "52fe4472c3a36847f80969d5", "cast_id": 60, "profile_path": null, "order": 47}, {"name": "Julio Leal", "character": "Rocketeer / Soldier (uncredited)", "id": 1205137, "credit_id": "52fe4472c3a36847f80969d9", "cast_id": 61, "profile_path": null, "order": 48}, {"name": "Jake McLaughlin", "character": "Helicopter Pilot (voice) (uncredited)", "id": 51683, "credit_id": "52fe4473c3a36847f80969dd", "cast_id": 62, "profile_path": "/ocDxrwFDqbDmkpmgXpwpwdSzl7T.jpg", "order": 49}, {"name": "Rachel Mower", "character": "Injured Girl (uncredited)", "id": 1205138, "credit_id": "52fe4473c3a36847f80969e1", "cast_id": 63, "profile_path": null, "order": 50}, {"name": "Gene Richards", "character": "First Man Coughing (uncredited)", "id": 128973, "credit_id": "52fe4473c3a36847f80969e5", "cast_id": 64, "profile_path": null, "order": 51}, {"name": "Bertrand Roberson Jr.", "character": "Military Personnel (uncredited)", "id": 97466, "credit_id": "52fe4473c3a36847f80969e9", "cast_id": 65, "profile_path": null, "order": 52}, {"name": "John Robert", "character": "Injured Guy on Bridge (uncredited)", "id": 1205139, "credit_id": "52fe4473c3a36847f80969ed", "cast_id": 66, "profile_path": null, "order": 53}, {"name": "Chris Spinelli", "character": "Party Goer (uncredited)", "id": 210849, "credit_id": "52fe4473c3a36847f80969f1", "cast_id": 67, "profile_path": null, "order": 54}, {"name": "Andrew Trujillo", "character": "Military Personel (uncredited)", "id": 1205140, "credit_id": "52fe4473c3a36847f80969f5", "cast_id": 68, "profile_path": null, "order": 55}, {"name": "Maria Zambrana", "character": "Brooklyn Bridge Victim (uncredited)", "id": 1205141, "credit_id": "52fe4473c3a36847f80969f9", "cast_id": 69, "profile_path": null, "order": 56}], "directors": [{"name": "Matt Reeves", "department": "Directing", "job": "Director", "credit_id": "52fe4472c3a36847f80968d3", "profile_path": "/4SPhLx107Y7m0tvzlLpCquxFxE8.jpg", "id": 32278}], "vote_average": 6.1, "runtime": 85}, "244761": {"poster_path": "/nAoEP5QJtC2sgVOKJQdQ9Y7VqWJ.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}], "revenue": 0, "overview": "Eight years after the disappearance of Cassandra, some disturbing incidents seem to indicate that she's still alive. Police, parents and Cassandra herself, will try to unravel the mystery of her disappearance.", "video": false, "id": 244761, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Captive", "tagline": "When hope is all you have.", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2326612", "adult": false, "backdrop_path": "/rvGnXccypAbDqE237SXxDGQuGmo.jpg", "production_companies": [{"name": "The Film Farm", "id": 22884}, {"name": "Ego Film Arts", "id": 12800}], "release_date": "2014-09-05", "popularity": 2.21306266739028, "original_title": "The Captive", "budget": 0, "cast": [{"name": "Ryan Reynolds", "character": "Jeffrey", "id": 10859, "credit_id": "530f8875925141739000113a", "cast_id": 3, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Scott Speedman", "character": "Jeffrey", "id": 100, "credit_id": "540a79c1c3a36879a800098f", "cast_id": 4, "profile_path": "/hxDr3YjCYaHPEFbEfC0eXjMps0u.jpg", "order": 1}, {"name": "Rosario Dawson", "character": "Nicole", "id": 5916, "credit_id": "540a7a4dc3a368799f0009f6", "cast_id": 6, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 2}, {"name": "Mireille Enos", "character": "Tina", "id": 175826, "credit_id": "540a7a9ec3a36879a5000997", "cast_id": 9, "profile_path": "/iTj8HzuKXh8G1lwNSdFgT5gsLA5.jpg", "order": 3}, {"name": "Kevin Durand", "character": "Mika", "id": 79072, "credit_id": "540a7a60c3a36879a500098f", "cast_id": 7, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 4}, {"name": "Alexia Fast", "character": "Cass", "id": 203630, "credit_id": "540a7a76c3a36879ab0009ff", "cast_id": 8, "profile_path": "/rjCu0ywbStoEAhyKAcGHPSVZmX6.jpg", "order": 5}, {"name": "Peyton Kennedy", "character": "Young Cass", "id": 1074125, "credit_id": "540a7ac90e0a262b400014d6", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Bruce Greenwood", "character": "Vince", "id": 21089, "credit_id": "540a7b06c3a36879a2000a73", "cast_id": 16, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Brendan Gall", "character": "Teddy", "id": 449223, "credit_id": "540a7b1ac3a36879a80009a6", "cast_id": 17, "profile_path": "/lrbWl3RxsIn12OYVRMos9UZ667X.jpg", "order": 8}, {"name": "Aaron Poole", "character": "Mike", "id": 180942, "credit_id": "540a7b2bc3a36879a2000a78", "cast_id": 18, "profile_path": "/1b6oirh48FaFvyMhcuWsrZzbO0R.jpg", "order": 9}, {"name": "Jason Blicker", "character": "Sam", "id": 44169, "credit_id": "540a7b3cc3a36879a80009aa", "cast_id": 19, "profile_path": "/pDFZFGUQPDF0kt2izRPz4LhNCfd.jpg", "order": 10}, {"name": "Aidan Shipley", "character": "Albert", "id": 1361219, "credit_id": "540ae143c3a368799f001226", "cast_id": 22, "profile_path": null, "order": 11}], "directors": [{"name": "Atom Egoyan", "department": "Directing", "job": "Director", "credit_id": "530f879d925141733200120c", "profile_path": "/qG15OKx3VaYicQcDnd88XFlIxl3.jpg", "id": 56205}], "vote_average": 5.9, "runtime": 112}, "80389": {"poster_path": "/un6gJozywc4ZG2HCwIqf6rAOziu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A career criminal (Gibson) nabbed by Mexican authorities is placed in a tough prison where he learns to survive with the help of a 9-year-old boy.", "video": false, "id": 80389, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Get the Gringo", "tagline": "The odds are against him. So is everyone else.", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1567609", "adult": false, "backdrop_path": "/gxbO2y8jeEvwGHDLC8ErqSf61ca.jpg", "production_companies": [{"name": "Icon Productions", "id": 152}, {"name": "Airborne Productions", "id": 11732}], "release_date": "2012-05-01", "popularity": 0.821899260792808, "original_title": "Get the Gringo", "budget": 35000000, "cast": [{"name": "Mel Gibson", "character": "Driver", "id": 2461, "credit_id": "52fe47bd9251416c910742bd", "cast_id": 1001, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Peter Stormare", "character": "Frank", "id": 53, "credit_id": "52fe47bd9251416c910742c1", "cast_id": 1002, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 1}, {"name": "Dean Norris", "character": "Bill", "id": 14329, "credit_id": "52fe47bd9251416c910742c5", "cast_id": 1003, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 2}, {"name": "Bob Gunton", "character": "Mr. Kaufmann", "id": 4029, "credit_id": "52fe47bd9251416c910742c9", "cast_id": 1004, "profile_path": "/b3NfI0IzPYI40eIEtO9O0XQiR8j.jpg", "order": 3}, {"name": "Kevin Hernandez", "character": "Kid", "id": 999329, "credit_id": "52fe47bd9251416c91074321", "cast_id": 1022, "profile_path": "/lz0H1XbddF4jOwuoIi2IuV1bs3A.jpg", "order": 4}, {"name": "Daniel Gim\u00e9nez Cacho", "character": "Javi", "id": 1603, "credit_id": "52fe47bd9251416c91074325", "cast_id": 1023, "profile_path": "/9kP26DdoH55mdVhH9whbFiFNP0j.jpg", "order": 5}, {"name": "Jes\u00fas Ochoa", "character": "Caracas", "id": 69865, "credit_id": "52fe47bd9251416c91074329", "cast_id": 1024, "profile_path": "/v5YFGpmO4MOt8G09SywgPB0M6k6.jpg", "order": 6}, {"name": "Dolores Heredia", "character": "Kid's Mother", "id": 224507, "credit_id": "52fe47bd9251416c9107432d", "cast_id": 1025, "profile_path": "/iBDhc3pqreLpIoF8pSzcyBOYjt5.jpg", "order": 7}, {"name": "Peter Gerety", "character": "Embassy Guy", "id": 1986, "credit_id": "52fe47bd9251416c91074331", "cast_id": 1026, "profile_path": "/3mW2LNp2a926BudSOwikbz8TsLq.jpg", "order": 8}, {"name": "Roberto Sosa", "character": "Carnal", "id": 61059, "credit_id": "52fe47bd9251416c91074335", "cast_id": 1027, "profile_path": "/bIyASaMwSnBTMp9SdhsNkwfCx2p.jpg", "order": 9}, {"name": "Mario Zaragoza", "character": "Vasquez", "id": 942967, "credit_id": "52fe47bd9251416c91074339", "cast_id": 1028, "profile_path": "/1xKrDGEjuKkyTdVTPByX8WY8gIj.jpg", "order": 10}, {"name": "Gerardo Taracena", "character": "Romero", "id": 17689, "credit_id": "52fe47bd9251416c9107433d", "cast_id": 1029, "profile_path": "/mZhY59OxD5sy4uHkzG9EOwEkvDb.jpg", "order": 11}, {"name": "Tenoch Huerta", "character": "Carlos", "id": 87265, "credit_id": "52fe47bd9251416c91074341", "cast_id": 1030, "profile_path": "/5m0gBfMPVaSZZmLfjNq8QHuDsgA.jpg", "order": 12}, {"name": "Fernando Becerril", "character": "Prison Director", "id": 238139, "credit_id": "52fe47bd9251416c91074345", "cast_id": 1031, "profile_path": "/bV4gNQUv2rqsdarLd63IVktP7lP.jpg", "order": 13}, {"name": "Scott Cohen", "character": "Frank's Lawyer", "id": 83721, "credit_id": "52fe47bd9251416c91074349", "cast_id": 1032, "profile_path": "/hYAGNWaiLj2zY3kj7TBUkJuGoTV.jpg", "order": 14}], "directors": [{"name": "Adrian Grunberg", "department": "Directing", "job": "Director", "credit_id": "52fe47bd9251416c910742b9", "profile_path": null, "id": 589402}], "vote_average": 6.0, "runtime": 95}, "244772": {"poster_path": "/vvmv1R2jDXJeeeyYcGg0ypXc2XK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Estranged twins Maggie and Milo coincidentally cheat death on the same day, prompting them to reunite and confront the reasons their lives went so wrong. As the twins' reunion reinvigorates them, they realize the key to fixing their lives may just lie in repairing their relationship.", "video": false, "id": 244772, "genres": [{"id": 18, "name": "Drama"}], "title": "The Skeleton Twins", "tagline": "Family is a cruel joke.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1571249", "adult": false, "backdrop_path": "/kQwzsrP1V2pMyM5wzRHUGqEXNa0.jpg", "production_companies": [{"name": "Venture Forth", "id": 20313}, {"name": "Duplass Brothers Productions", "id": 1974}], "release_date": "2014-09-12", "popularity": 0.89686530890024, "original_title": "The Skeleton Twins", "budget": 0, "cast": [{"name": "Kristen Wiig", "character": "Maggie", "id": 41091, "credit_id": "52fe4ef6c3a36847f82b3ddf", "cast_id": 6, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 0}, {"name": "Bill Hader", "character": "Milo", "id": 19278, "credit_id": "52fe4ef6c3a36847f82b3de3", "cast_id": 7, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 1}, {"name": "Luke Wilson", "character": "Lance", "id": 36422, "credit_id": "52fe4ef6c3a36847f82b3de7", "cast_id": 8, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 2}, {"name": "Ty Burrell", "character": "Rich", "id": 15232, "credit_id": "52fe4ef6c3a36847f82b3deb", "cast_id": 9, "profile_path": "/qyh6WVOERqqXmJd3NQWPACdQxSc.jpg", "order": 3}, {"name": "Boyd Holbrook", "character": "Billy", "id": 467645, "credit_id": "52fe4ef6c3a36847f82b3def", "cast_id": 10, "profile_path": "/hI9D0u1mdFm9TmRml0fuOE1lsMa.jpg", "order": 4}, {"name": "Joanna Gleason", "character": "Judy", "id": 20747, "credit_id": "52fe4ef6c3a36847f82b3df3", "cast_id": 11, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 5}, {"name": "Kathleen Rose Perkins", "character": "Carlie", "id": 149334, "credit_id": "52fe4ef6c3a36847f82b3df7", "cast_id": 12, "profile_path": "/1BGldxkKa8p5xPG105QNSVrF4hg.jpg", "order": 6}, {"name": "Ian Hyland", "character": "Waiter", "id": 25909, "credit_id": "52fe4ef6c3a36847f82b3dfb", "cast_id": 13, "profile_path": "/kkDyz4ar65adYaWhUpNkKh07x9y.jpg", "order": 7}], "directors": [{"name": "Craig Johnson", "department": "Directing", "job": "Director", "credit_id": "52fe4ef6c3a36847f82b3dc3", "profile_path": null, "id": 303056}], "vote_average": 6.9, "runtime": 90}, "203819": {"poster_path": "/ysXVxDpfPvl6YmojfNYDz9zjVtb.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 4878242, "overview": "Accompanied only by her faithful dog and four camels, an Australian satisfies her craving for solitude by embarking on a solo trip across the desert from Alice Springs to the Indian Ocean.", "video": false, "id": 203819, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Tracks", "tagline": "Leave everything behind.", "vote_count": 54, "homepage": "http://tracks-movie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2167266", "adult": false, "backdrop_path": "/zLGbK69ZyWPzj5Pgb8tXjDJk8J2.jpg", "production_companies": [{"name": "See-Saw Films", "id": 7217}], "release_date": "2014-04-25", "popularity": 0.015452373666893, "original_title": "Tracks", "budget": 0, "cast": [{"name": "Mia Wasikowska", "character": "Robyn Davidson", "id": 76070, "credit_id": "52fe4ce7c3a368484e1cbfeb", "cast_id": 1, "profile_path": "/nKAEc6rTdd2HoVgUyJr0F8gqqLm.jpg", "order": 0}, {"name": "Adam Driver", "character": "Rick Smolan", "id": 1023139, "credit_id": "52fe4ce7c3a368484e1cbfef", "cast_id": 2, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 1}, {"name": "Emma Booth", "character": "Marg", "id": 1318710, "credit_id": "53703d5ec3a3687e6c0025a7", "cast_id": 12, "profile_path": null, "order": 2}, {"name": "Jessica Tovey", "character": "Jenny", "id": 1318711, "credit_id": "53703d68c3a3683bf9006567", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Rainer Bock", "character": "Kurt Posel", "id": 1318712, "credit_id": "53703d72c3a36839c10055b4", "cast_id": 14, "profile_path": null, "order": 4}, {"name": "Lily Pearl", "character": "Robyn Davidson (young)", "id": 1318714, "credit_id": "53703d8dc3a368122000f326", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Robert Coleby", "character": "Pop", "id": 190826, "credit_id": "537bbde20e0a267f1b0005c5", "cast_id": 17, "profile_path": "/45zlanh745ym7y8WMV1H11Hr43Q.jpg", "order": 7}, {"name": "Bryan Probets", "character": "Geoff", "id": 1014587, "credit_id": "537bbdeb0e0a267f1b0005c8", "cast_id": 18, "profile_path": "/wp0o01OuR5YF3DWjBBUYAWUbzHA.jpg", "order": 8}, {"name": "John Flaus", "character": "Sallay", "id": 147134, "credit_id": "537bbdf50e0a267f0f000576", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Melanie Zanetti", "character": "Annie", "id": 1312450, "credit_id": "5438f6220e0a266ebd001547", "cast_id": 39, "profile_path": null, "order": 10}], "directors": [{"name": "John Curran", "department": "Directing", "job": "Director", "credit_id": "52fe4ce7c3a368484e1cbff5", "profile_path": "/cA9M4wA38ONyMUCWAn43up6VO8n.jpg", "id": 96166}], "vote_average": 7.1, "runtime": 112}, "91314": {"poster_path": "/ykIZB9dYBIKV13k5igGFncT5th6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 245500000, "overview": "As humanity picks up the pieces, following the conclusion of \"Transformers: Dark of the Moon,\" Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.", "video": false, "id": 91314, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "Transformers: Age of Extinction", "tagline": "This is not war. It's extinction.", "vote_count": 1183, "homepage": "http://www.transformersmovie.com", "belongs_to_collection": {"backdrop_path": "/zvZBNNDWd5LcsIBpDhJyCB2MDT7.jpg", "poster_path": "/2riFSDDaAenWplKVEcxQu4xnTn8.jpg", "id": 8650, "name": "Transformers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2109248", "adult": false, "backdrop_path": "/cHy7nSitAVgvZ7qfCK4JO47t3oZ.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Hasbro", "id": 2598}, {"name": "Tom DeSanto/Don Murphy Production", "id": 38831}, {"name": "Ian Bryce Productions", "id": 38833}], "release_date": "2014-06-27", "popularity": 4.52443469625033, "original_title": "Transformers: Age of Extinction", "budget": 210000000, "cast": [{"name": "Mark Wahlberg", "character": "Cade Yeager", "id": 13240, "credit_id": "52fe48cc9251416c750b3ad1", "cast_id": 6, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Stanley Tucci", "character": "Joshua", "id": 2283, "credit_id": "52fe48cc9251416c750b3ad9", "cast_id": 8, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 1}, {"name": "Nicola Peltz", "character": "Tessa Yeager", "id": 61186, "credit_id": "52fe48cc9251416c750b3ad5", "cast_id": 7, "profile_path": "/3NLYsEVZON71ceR01bb6gf13iRJ.jpg", "order": 2}, {"name": "Jack Reynor", "character": "Shane", "id": 1007683, "credit_id": "52fe48cc9251416c750b3ae7", "cast_id": 11, "profile_path": "/j2EqR9pXwirSdug1cFSY3Su7v2O.jpg", "order": 3}, {"name": "Li Bingbing", "character": "Su Yueming", "id": 109432, "credit_id": "52fe48cc9251416c750b3aeb", "cast_id": 12, "profile_path": "/hAUy6dsBkDCJspQ3DlqmysFpW6P.jpg", "order": 4}, {"name": "Frank Welker", "character": "Galvatron (voice)", "id": 15831, "credit_id": "52fe48cc9251416c750b3ac1", "cast_id": 2, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 5}, {"name": "Miguel Ferrer", "character": "Scourge (voice)", "id": 15860, "credit_id": "52fe48cc9251416c750b3ac5", "cast_id": 3, "profile_path": "/fvRncqShcaV8R45IJGYZ7IAvrsO.jpg", "order": 6}, {"name": "Jeffrey Combs", "character": "Powerglide (voice)", "id": 27993, "credit_id": "52fe48cc9251416c750b3ac9", "cast_id": 4, "profile_path": "/3dUeJgdLYu8Gb56MEgXsFaCyiqN.jpg", "order": 7}, {"name": "Mark Rolston", "character": "Thrust (voice)", "id": 6576, "credit_id": "52fe48cc9251416c750b3acd", "cast_id": 5, "profile_path": "/bsh3cqDNwVvux4NdaY1Bj4S7mNS.jpg", "order": 8}, {"name": "Sophia Myles", "character": "Darcy", "id": 3971, "credit_id": "52fe48cc9251416c750b3ae3", "cast_id": 10, "profile_path": "/eUZW5X1FJ5utHKSw0ZqmOPhuUI.jpg", "order": 9}, {"name": "Titus Welliver", "character": "Savoy", "id": 39389, "credit_id": "52fe48cc9251416c750b3aef", "cast_id": 13, "profile_path": "/4CPGRpTuy6naurhkvRgsuae1qKR.jpg", "order": 10}, {"name": "Peter Cullen", "character": "Optimus Prime (voice)", "id": 19540, "credit_id": "53069ef4c3a36870480004de", "cast_id": 14, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 11}, {"name": "John Goodman", "character": "Hound (voice)", "id": 1230, "credit_id": "536cf84bc3a368122600b443", "cast_id": 15, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 12}, {"name": "Ken Watanabe", "character": "Drift (voice)", "id": 3899, "credit_id": "536cf871c3a368122000b72c", "cast_id": 16, "profile_path": "/v8WQ5wCIZsnqVZn7jQveaDqurox.jpg", "order": 13}, {"name": "Kelsey Grammer", "character": "Harold Attinger", "id": 7090, "credit_id": "5379f470c3a368553a005bbc", "cast_id": 17, "profile_path": "/8h3ThicYhj6fEMSMtSdzFXrUyx2.jpg", "order": 14}, {"name": "Geng Han", "character": "Convertible Passenger", "id": 937809, "credit_id": "537bb6e4c3a3684b4b00020c", "cast_id": 18, "profile_path": "/kaPIaWVrsiSSamXkbmIWZ6RKLLV.jpg", "order": 15}, {"name": "Charles Parnell", "character": "CIA Director", "id": 124112, "credit_id": "546c87fdc3a368097d001395", "cast_id": 79, "profile_path": "/9n3gI7ilMMnsnzfIdvLfpT6nxur.jpg", "order": 16}, {"name": "Erika Fong", "character": "CIA Analyst", "id": 971234, "credit_id": "546c8816c3a368096b001290", "cast_id": 80, "profile_path": "/o14jl1gCFlPJsQ4zaVnKjro63j8.jpg", "order": 17}, {"name": "David Midthunder", "character": "Arctic Site Guard", "id": 1039678, "credit_id": "546c8857c3a36809700013c6", "cast_id": 81, "profile_path": "/f0piRndy8kXPUh4onNoNNoeIO9u.jpg", "order": 18}, {"name": "Glenn Keogh", "character": "Arctic Site Foreman", "id": 1347386, "credit_id": "546c88729251413056001325", "cast_id": 82, "profile_path": "/qUVUw3maSdfLsRu2gRHr7brVICn.jpg", "order": 19}, {"name": "Richard Gallion", "character": "Air Force Operator", "id": 592343, "credit_id": "546c8895c3a368097d0013a9", "cast_id": 83, "profile_path": null, "order": 20}, {"name": "T.J. Miller", "character": "Lucas Flannery", "id": 51990, "credit_id": "54c71eb8c3a36874ac000f0c", "cast_id": 84, "profile_path": "/wkm8YvulYwuB4pxEvOAlwv8AWdr.jpg", "order": 21}], "directors": [{"name": "Michael Bay", "department": "Directing", "job": "Director", "credit_id": "52fe48cc9251416c750b3abd", "profile_path": "/cJNLMOqIkGZDdwkwSq1YpgiMp9P.jpg", "id": 865}], "vote_average": 6.1, "runtime": 165}, "7214": {"poster_path": "/8c6BeOIrDStz2aiPceYdI5sd9pL.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76669806, "overview": "Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.", "video": false, "id": 7214, "genres": [{"id": 18, "name": "Drama"}], "title": "Coach Carter", "tagline": "It begins on the street. It ends here.", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0393162", "adult": false, "backdrop_path": "/qgmcpz4ZyDxtAOTvqN6oIpBez7d.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "MTV Films", "id": 746}, {"name": "Tollin/Robbins Productions", "id": 2184}], "release_date": "2005-01-14", "popularity": 0.732920917500169, "original_title": "Coach Carter", "budget": 30000000, "cast": [{"name": "Samuel L. Jackson", "character": "Ken Carter", "id": 2231, "credit_id": "52fe4473c3a36847f8096c81", "cast_id": 1, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 0}, {"name": "Rob Brown", "character": "Kenyon Stone", "id": 10689, "credit_id": "52fe4473c3a36847f8096c85", "cast_id": 2, "profile_path": "/m8VAOhTpIQYWDYg2MOc9lOFLahF.jpg", "order": 1}, {"name": "Robert Ri'chard", "character": "Damien Carter", "id": 52037, "credit_id": "52fe4473c3a36847f8096c89", "cast_id": 3, "profile_path": "/rB75BONTtezBafFI4TzYzYYO8T3.jpg", "order": 2}, {"name": "Rick Gonzalez", "character": "Timo Cruz", "id": 53184, "credit_id": "52fe4473c3a36847f8096cf3", "cast_id": 21, "profile_path": "/goh90mno2bYXjOIncrJWoNYbhXy.jpg", "order": 3}, {"name": "Channing Tatum", "character": "Jason Lyle", "id": 38673, "credit_id": "52fe4473c3a36847f8096cf7", "cast_id": 22, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 4}, {"name": "Texas Battle", "character": "Maddux", "id": 53185, "credit_id": "52fe4473c3a36847f8096cfb", "cast_id": 23, "profile_path": "/x61WA9qDHEkh5i7G9lOfakbmWNc.jpg", "order": 5}, {"name": "Lacey Beeman", "character": "Susan", "id": 168897, "credit_id": "52fe4473c3a36847f8096cff", "cast_id": 24, "profile_path": "/h8coFumNNoCK6wJ0XYXSeO6Q6C7.jpg", "order": 6}, {"name": "Octavia Spencer", "character": "Mrs. Battle", "id": 6944, "credit_id": "52fe4473c3a36847f8096d03", "cast_id": 25, "profile_path": "/4FEVru6fBFyJECqwqjHwlZdsL4c.jpg", "order": 7}], "directors": [{"name": "Thomas Carter", "department": "Directing", "job": "Director", "credit_id": "52fe4473c3a36847f8096c8f", "profile_path": "/j51pRbB8nCYrziSnjmB2PS9SIVh.jpg", "id": 52038}], "vote_average": 7.0, "runtime": 136}, "244786": {"poster_path": "/lIv1QinFqz4dlp5U4lQ6HaiskOZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15000000, "overview": "Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.", "video": false, "id": 244786, "genres": [{"id": 18, "name": "Drama"}], "title": "Whiplash", "tagline": "The road to greatness can take you to the edge.", "vote_count": 667, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2582802", "adult": false, "backdrop_path": "/6bbZ6XyvgfjhQwbplnUh1LSj1ky.jpg", "production_companies": [{"name": "Right of Way Films", "id": 32157}, {"name": "Bold Films", "id": 2266}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-10-10", "popularity": 10.5121661416207, "original_title": "Whiplash", "budget": 3300000, "cast": [{"name": "Miles Teller", "character": "Andrew Neimann", "id": 996701, "credit_id": "52fe4ef7c3a36847f82b3fc3", "cast_id": 5, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 0}, {"name": "J.K. Simmons", "character": "Terence Fletcher", "id": 18999, "credit_id": "52fe4ef7c3a36847f82b3fc7", "cast_id": 6, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 1}, {"name": "Melissa Benoist", "character": "Nicole", "id": 129104, "credit_id": "52fe4ef7c3a36847f82b3fe3", "cast_id": 11, "profile_path": "/etSJcWeCKInA87G9jNrKUG7Ph4m.jpg", "order": 2}, {"name": "Austin Stowell", "character": "Ryan", "id": 970216, "credit_id": "52fe4ef7c3a36847f82b3fe7", "cast_id": 12, "profile_path": "/su6KMYwfr4qVXRjlXi4u0h16Fxg.jpg", "order": 3}, {"name": "Jayson Blair", "character": "Travis", "id": 223012, "credit_id": "52fe4ef7c3a36847f82b3feb", "cast_id": 13, "profile_path": "/lqWVUUOBrv4ANxyvsv5aagc6CBq.jpg", "order": 4}, {"name": "Kavita Patil", "character": "Assistant - Sophie", "id": 159366, "credit_id": "52fe4ef7c3a36847f82b3fef", "cast_id": 14, "profile_path": null, "order": 5}, {"name": "Paul Reiser", "character": "Mr. Neyman", "id": 781, "credit_id": "5466cd46eaeb817274000acb", "cast_id": 15, "profile_path": "/fr53dQQrDGfETgbliCktwKqteRU.jpg", "order": 6}, {"name": "Nate Lang", "character": "Carl Tanner", "id": 1451540, "credit_id": "5525414d925141720c001b56", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Chris Mulkey", "character": "Uncle Frank", "id": 15824, "credit_id": "5525415fc3a3687df80016c4", "cast_id": 23, "profile_path": "/ibXN9Ho0nCF4jbGHeQYRHI8AMjH.jpg", "order": 8}, {"name": "Damon Gupton", "character": "Mr. Kramer", "id": 53454, "credit_id": "5525416c9251417276001927", "cast_id": 24, "profile_path": "/1mZvC9YKcFciPIl5vUUP01F6Fjy.jpg", "order": 9}, {"name": "Suanne Spoke", "character": "Aunt Emma", "id": 1212459, "credit_id": "55254179c3a3687ded0016cf", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Max Kasch", "character": "Dorm Neighbor", "id": 52939, "credit_id": "552541869251417be200a8f2", "cast_id": 26, "profile_path": "/4NzNJEJ6NWU40GKO6BS1Ne6ECNL.jpg", "order": 11}, {"name": "Charlie Ian", "character": "Dustin", "id": 1451542, "credit_id": "552541959251415c7c00bd61", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Jayson Blair", "character": "Travis", "id": 223012, "credit_id": "552541a1c3a3687ded0016d7", "cast_id": 28, "profile_path": "/lqWVUUOBrv4ANxyvsv5aagc6CBq.jpg", "order": 13}, {"name": "Kofi Siriboe", "character": "Bassist", "id": 1451543, "credit_id": "552541ae925141720c001b71", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "C.J. Vana", "character": "Metz", "id": 1451545, "credit_id": "552541c7c3a3687e08001774", "cast_id": 31, "profile_path": null, "order": 16}], "directors": [{"name": "Damien Chazelle", "department": "Directing", "job": "Director", "credit_id": "52fe4ef7c3a36847f82b3fad", "profile_path": "/x5bpTU8b2mwgPpPDGJGWsJ1Qt3t.jpg", "id": 136495}], "vote_average": 8.6, "runtime": 105}, "7220": {"poster_path": "/ikTj6Bf5LGd9bZHDbQbsI39Hbu2.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 54700105, "overview": "FBI agent Frank Castle had it all: a loving family, a great life, and an adventurous job. But when all he held dear is taken away by a ruthless crime lord, Castle returns from the dead as \"The Punisher,\" serving as judge, jury and executioner.", "video": false, "id": 7220, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Punisher", "tagline": "The punishment has begun", "vote_count": 183, "homepage": "", "belongs_to_collection": {"backdrop_path": "/jteeWEHZAR92MVjEe9rpecGUpZI.jpg", "poster_path": "/bESkPNkKg79S4TLfs8j93bFYH0N.jpg", "id": 101496, "name": "The Punisher Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0330793", "adult": false, "backdrop_path": "/4ZkbsV7EXvCiRoy6TNAlXb4AVGW.jpg", "production_companies": [{"name": "Artisan Entertainment", "id": 2188}, {"name": "Lions Gate Films", "id": 35}, {"name": "Marvel Enterprises", "id": 19551}, {"name": "Valhalla Motion Pictures", "id": 11533}, {"name": "VIP 2 Medienfonds", "id": 36326}], "release_date": "2004-04-15", "popularity": 1.42973865820825, "original_title": "The Punisher", "budget": 33000000, "cast": [{"name": "Thomas Jane", "character": "Frank Castle", "id": 11155, "credit_id": "52fe4474c3a36847f8096f85", "cast_id": 1, "profile_path": "/8a64r7RuY68bFwZogt0EBK7Pm9W.jpg", "order": 0}, {"name": "John Travolta", "character": "Howard Saint", "id": 8891, "credit_id": "52fe4474c3a36847f8096f89", "cast_id": 2, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 1}, {"name": "Will Patton", "character": "Quentin Glass", "id": 883, "credit_id": "52fe4474c3a36847f8096f8d", "cast_id": 3, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 2}, {"name": "Samantha Mathis", "character": "Maria", "id": 20767, "credit_id": "52fe4474c3a36847f8096fbb", "cast_id": 13, "profile_path": "/dzUjIFu7AAbwwJfj6aFRPfvYgC3.jpg", "order": 3}, {"name": "Rebecca Romijn", "character": "Joan", "id": 11008, "credit_id": "52fe4474c3a36847f8096fbf", "cast_id": 14, "profile_path": "/wgXgMaURH3yAugKt9gn3rHLrWdN.jpg", "order": 4}, {"name": "James Carpinello", "character": "Bobby Saint", "id": 53198, "credit_id": "52fe4474c3a36847f8096fc3", "cast_id": 15, "profile_path": "/t2aCdkepUU0yHi1gTGgltQ7CMvE.jpg", "order": 5}, {"name": "Mark Collie", "character": "Harry Heck", "id": 53199, "credit_id": "52fe4474c3a36847f8096fc7", "cast_id": 16, "profile_path": "/67TK0G8LwJlD9zM5Rdve2iob8JW.jpg", "order": 6}, {"name": "Laura Harring", "character": "Livia Saint", "id": 15007, "credit_id": "52fe4474c3a36847f8096fcb", "cast_id": 17, "profile_path": "/ng0u5d41FhJDS9mJ74nYnd7XNZP.jpg", "order": 7}, {"name": "Ben Foster", "character": "Specker Dave", "id": 11107, "credit_id": "52fe4474c3a36847f8096fcf", "cast_id": 18, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 8}, {"name": "Marcus Johns", "character": "Will Castle", "id": 53200, "credit_id": "52fe4474c3a36847f8096fd3", "cast_id": 19, "profile_path": "/hmXd91UC0zmK5Fi4aGO7RSvtkBc.jpg", "order": 9}, {"name": "Roy Scheider", "character": "Frank Castle, Sr.", "id": 6355, "credit_id": "52fe4474c3a36847f8096fd7", "cast_id": 20, "profile_path": "/t8EE1BdYo6BcGVj8EOz8mt1mw0Q.jpg", "order": 10}], "directors": [{"name": "Jonathan Hensleigh", "department": "Directing", "job": "Director", "credit_id": "52fe4474c3a36847f8096f93", "profile_path": "/hi3YCs3kiSZ3Oz711r1FqIo4Qat.jpg", "id": 876}], "vote_average": 5.8, "runtime": 124}, "203833": {"poster_path": "/rUJbwJkJNjwEcFYzEktOrgm5YUd.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76586316, "overview": "While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refuge is being sheltered by her adoptive parents.", "video": false, "id": 203833, "genres": [{"id": 18, "name": "Drama"}], "title": "The Book Thief", "tagline": "Courage beyond words.", "vote_count": 294, "homepage": "http://www.thebookthief.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0816442", "adult": false, "backdrop_path": "/rDP6NMuBTsjLvyaMub7BOT7Au4l.jpg", "production_companies": [{"name": "Studio Babelsberg", "id": 264}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "Sunswept Entertainment", "id": 5219}], "release_date": "2013-11-08", "popularity": 1.68248647863507, "original_title": "The Book Thief", "budget": 0, "cast": [{"name": "Roger Allam", "character": "Narrator / Death (voice)", "id": 11279, "credit_id": "52fe4ce7c3a368484e1cc19f", "cast_id": 14, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 0}, {"name": "Sophie N\u00e9lisse", "character": "Liesel Meminger", "id": 1008607, "credit_id": "52fe4ce7c3a368484e1cc16d", "cast_id": 3, "profile_path": "/qDXt4dEgiVNz8sNOc149aEV8stJ.jpg", "order": 1}, {"name": "Heike Makatsch", "character": "Liesel's mother", "id": 7059, "credit_id": "52fe4ce7c3a368484e1cc1d7", "cast_id": 25, "profile_path": "/1WTc8X43BlxCw6Nn5gTrENzvu9L.jpg", "order": 2}, {"name": "Julian Lehmann", "character": "Liesel's Brother", "id": 1327255, "credit_id": "545e3847c3a368536b0060fd", "cast_id": 78, "profile_path": null, "order": 3}, {"name": "Gotthard Lange", "character": "Grave Digger", "id": 42445, "credit_id": "55132f58925141045c00201e", "cast_id": 103, "profile_path": null, "order": 4}, {"name": "Rainer Reiners", "character": "Priest", "id": 1309014, "credit_id": "55132f75c3a3686195001d03", "cast_id": 104, "profile_path": "/uV6zomMFl16asOzfSsivi75xhya.jpg", "order": 5}, {"name": "Kirsten Block", "character": "Frau Heinrich", "id": 49766, "credit_id": "5475d8ee9251415273002868", "cast_id": 80, "profile_path": null, "order": 6}, {"name": "Geoffrey Rush", "character": "Hans Hubermann", "id": 118, "credit_id": "52fe4ce7c3a368484e1cc165", "cast_id": 1, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 7}, {"name": "Emily Watson", "character": "Rosa Hubermann", "id": 1639, "credit_id": "52fe4ce7c3a368484e1cc169", "cast_id": 2, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 8}, {"name": "Nico Liersch", "character": "Rudy Steiner", "id": 1153024, "credit_id": "52fe4ce7c3a368484e1cc175", "cast_id": 5, "profile_path": "/kk1dTISD93MDVZatgC4YHFOjp9z.jpg", "order": 9}, {"name": "Ludger B\u00f6kelmann", "character": "Football Urchin", "id": 1445749, "credit_id": "5513756892514104450027ec", "cast_id": 105, "profile_path": null, "order": 10}, {"name": "Paul Schalper", "character": "Football Urchin", "id": 1445750, "credit_id": "55137572925141070100a792", "cast_id": 106, "profile_path": null, "order": 11}, {"name": "Nozomi Linus Kaisar", "character": "Fat Faced Goalie", "id": 1277223, "credit_id": "5513758c9251412be4000581", "cast_id": 107, "profile_path": null, "order": 12}, {"name": "Oliver Stokowski", "character": "Alex Steiner", "id": 7804, "credit_id": "52fe4ce7c3a368484e1cc1cb", "cast_id": 22, "profile_path": "/lsw8F9zJSr1kfCaiIdQBKabUPI6.jpg", "order": 13}, {"name": "Robert Beyer", "character": "Jewish Accountant", "id": 1277224, "credit_id": "5475db3c92514160e3003ab8", "cast_id": 84, "profile_path": null, "order": 14}, {"name": "Hildegard Schroedter", "character": "Frau Becker", "id": 571188, "credit_id": "5513762ac3a3686195002508", "cast_id": 108, "profile_path": null, "order": 15}, {"name": "Levin Liam", "character": "Franz Deutscher", "id": 1193609, "credit_id": "5393a354c3a3686423001e5f", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Ben Schnetzer", "character": "Max Vandenburg", "id": 224167, "credit_id": "52fe4ce7c3a368484e1cc171", "cast_id": 4, "profile_path": "/ac6KVM4Uc1Y0WPU7yptRQERPzO4.jpg", "order": 17}, {"name": "Sandra Nedeleff", "character": "Max's Mother", "id": 42432, "credit_id": "5475d8a5925141527300285c", "cast_id": 79, "profile_path": null, "order": 18}, {"name": "Rafael Gareisen", "character": "Walter, Nazi Soldier", "id": 1086352, "credit_id": "55137694c3a368410300059e", "cast_id": 109, "profile_path": "/5aBrZjJb6Kw5uZxpmWoWzRBn4rZ.jpg", "order": 19}, {"name": "Carl Heinz Choynski", "character": "J\u00fcrgen the Groundsman", "id": 22945, "credit_id": "551376af9251412cec00058d", "cast_id": 110, "profile_path": null, "order": 20}, {"name": "Carina N. Wiese", "character": "Barbara Steiner (as Carina Wiese)", "id": 1328579, "credit_id": "5393a383c3a368643c001e1a", "cast_id": 39, "profile_path": null, "order": 21}, {"name": "Rainer Bock", "character": "B\u00fcrgermeister Hermann", "id": 65054, "credit_id": "5393a4dcc3a368425200000c", "cast_id": 40, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 22}, {"name": "Barbara Auer", "character": "Ilsa Hermann", "id": 2340, "credit_id": "52fe4ce7c3a368484e1cc1d3", "cast_id": 24, "profile_path": "/4QzzYELXioI2MhRS67t0usB6abB.jpg", "order": 23}, {"name": "Mike Maas", "character": "Rolf Fischer", "id": 44464, "credit_id": "5513775b9251412be40005ae", "cast_id": 111, "profile_path": null, "order": 24}, {"name": "Sebastian H\u00fclk", "character": "Gestapo Agent", "id": 550554, "credit_id": "53bc0910c3a368661e00247a", "cast_id": 74, "profile_path": "/1lgRo298X6MZMzf2cWKuELXE74T.jpg", "order": 25}, {"name": "Matthias Matschke", "character": "Wolfgang", "id": 40565, "credit_id": "53bc0958c3a3686623002315", "cast_id": 75, "profile_path": "/aFUN3nhSDBAbO49kAzlGE2VEw8x.jpg", "order": 26}, {"name": "Beata Lehmann", "character": "Woman with Champagne", "id": 1130367, "credit_id": "5475da27c3a3686ba100279a", "cast_id": 82, "profile_path": null, "order": 27}, {"name": "Laina Schwarz", "character": "Neighbor", "id": 1445754, "credit_id": "551377a1925141070100a7d3", "cast_id": 112, "profile_path": null, "order": 28}, {"name": "Marie Burchard", "character": "Neighbor", "id": 1195041, "credit_id": "551377b39251412cec0005ac", "cast_id": 113, "profile_path": null, "order": 29}, {"name": "Georg Tryphon", "character": "Neighbor", "id": 1196724, "credit_id": "551377cec3a3686195002532", "cast_id": 114, "profile_path": null, "order": 30}, {"name": "Joachim Paul Assb\u00f6ck", "character": "Officer", "id": 51651, "credit_id": "53bc09cec3a368661a0023cd", "cast_id": 76, "profile_path": null, "order": 31}, {"name": "Martin Ontrop", "character": "Herr Lehmann", "id": 70153, "credit_id": "5475da64c3a3683012000ca8", "cast_id": 83, "profile_path": null, "order": 32}, {"name": "Jan Andres", "character": "Fellow Conscript", "id": 1445755, "credit_id": "551377f39251412be40005bf", "cast_id": 115, "profile_path": null, "order": 33}, {"name": "Stephanie Stremler", "character": "Post Woman", "id": 1313028, "credit_id": "5513781cc3a36841030005c7", "cast_id": 116, "profile_path": null, "order": 34}], "directors": [{"name": "Brian Percival", "department": "Directing", "job": "Director", "credit_id": "52fe4ce7c3a368484e1cc18b", "profile_path": null, "id": 126945}], "vote_average": 7.4, "runtime": 131}, "203834": {"poster_path": "/zq1Er49rSBTkytVbinH9P1RoEOb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A young woman recuperating at her father's run-down home after a tragic accident soon encounters a terrifying presence with a connection to her long-deceased mother.", "video": false, "id": 203834, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Jessabelle", "tagline": "The dead are back for life.", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2300975", "adult": false, "backdrop_path": "/o7cOd6E3IXkkUcaDckdGdVqm55U.jpg", "production_companies": [{"name": "Principato-Young Entertainment", "id": 37845}, {"name": "Lionsgate", "id": 1632}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-08-29", "popularity": 0.787201838489624, "original_title": "Jessabelle", "budget": 0, "cast": [{"name": "Sarah Snook", "character": "Jessie", "id": 235416, "credit_id": "52fe4ce7c3a368484e1cc1ef", "cast_id": 1, "profile_path": "/dvAVmiGlckhgqCfhAdTrcUudHOp.jpg", "order": 0}, {"name": "Mark Webber", "character": "Preston", "id": 4451, "credit_id": "52fe4ce7c3a368484e1cc1f3", "cast_id": 2, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 1}, {"name": "Joelle Carter", "character": "Kate", "id": 3237, "credit_id": "52fe4ce7c3a368484e1cc1f7", "cast_id": 3, "profile_path": "/zdu1LYyKidGrqqSnUkkQ9blMO83.jpg", "order": 2}, {"name": "David Andrews", "character": "Leon", "id": 7219, "credit_id": "52fe4ce7c3a368484e1cc1fb", "cast_id": 4, "profile_path": "/pxmxn29UHW9r6uvLrd7bEwLswlQ.jpg", "order": 3}, {"name": "Chris Ellis", "character": "Sheriff Pruitt", "id": 8191, "credit_id": "52fe4ce7c3a368484e1cc1ff", "cast_id": 5, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 4}, {"name": "Ana de la Reguera", "character": "Rosaura", "id": 57409, "credit_id": "52fe4ce7c3a368484e1cc207", "cast_id": 7, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 6}, {"name": "Brian Hallisay", "character": "Mark", "id": 207396, "credit_id": "54d23feec3a3687388002b34", "cast_id": 41, "profile_path": "/oFPwpghpgIcqKV3Qb9YV8NMCKaq.jpg", "order": 7}, {"name": "Larisa Oleynik", "character": "Samantha", "id": 40978, "credit_id": "54d240459251411b5f002955", "cast_id": 42, "profile_path": "/qhRcTWcXykI29zsuEC4po563sJC.jpg", "order": 8}], "directors": [{"name": "Kevin Greutert", "department": "Directing", "job": "Director", "credit_id": "52fe4ce7c3a368484e1cc20d", "profile_path": "/ffijXhDTs8Up2YQyKRQFIjk5fwc.jpg", "id": 2150}], "vote_average": 5.1, "runtime": 90}, "50357": {"poster_path": "/rbZCAQhcOXzL5ToI4GlG4OtO0eF.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25562924, "overview": "Officially, Apollo 17 was the last manned mission to the moon. But a year later in 1973, two American astronauts were sent on a secret mission to the moon funded by the US Department of Defense. What you are about to see is the actual footage which the astronauts captured on that mission. While NASA denies it's authenticity, others say it's the real reason we've never gone back to the moon.", "video": false, "id": 50357, "genres": [{"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Apollo 18", "tagline": "There's a reason we've never gone back to the moon.", "vote_count": 107, "homepage": "http://apollo18movie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1772240", "adult": false, "backdrop_path": "/aHE8y4A4mlRCQbJ5oLbPkr5iznx.jpg", "production_companies": [{"name": "Bazelevs Production", "id": 1038}, {"name": "Dimension Films", "id": 7405}, {"name": "Bekmambetov Projects Ltd.", "id": 24923}], "release_date": "2011-07-20", "popularity": 0.332474194856006, "original_title": "Apollo 18", "budget": 5000000, "cast": [{"name": "Ryan Robbins", "character": "Lt. Col. John Grey", "id": 77164, "credit_id": "52fe47c5c3a36847f8147395", "cast_id": 14, "profile_path": "/sDEb7Y5mkPFLQpjYDNxbSEs2ofB.jpg", "order": 0}, {"name": "Warren Christie", "character": "Capt. Benjamin Anderson", "id": 232525, "credit_id": "52fe47c5c3a36847f814737d", "cast_id": 5, "profile_path": "/AhIoN1YIXpTxWAgf4lTyR30oU8Y.jpg", "order": 1}, {"name": "Lloyd Owen", "character": "Cdr. Nathan Walker", "id": 172935, "credit_id": "52fe47c5c3a36847f8147381", "cast_id": 8, "profile_path": "/pcTQxHzzkvrisBfaufenLWLv8gp.jpg", "order": 2}, {"name": "Andrew Airlie", "character": "Mission Control", "id": 41436, "credit_id": "52fe47c5c3a36847f8147391", "cast_id": 13, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 3}, {"name": "Michael Kopsa", "character": "Deputy Secretary of Defense", "id": 583061, "credit_id": "52fe47c5c3a36847f8147385", "cast_id": 10, "profile_path": "/A29sJzf8T6vKzhL0wqxhz7jPSvH.jpg", "order": 4}, {"name": "Ali Liebert", "character": "Nate's Girlfriend", "id": 91402, "credit_id": "52fe47c5c3a36847f814738d", "cast_id": 12, "profile_path": "/u6p3tN2w0PM3TR0i278xn2oNkk5.jpg", "order": 6}, {"name": "Kurt Max Runte", "character": "Lab Tech", "id": 60721, "credit_id": "548592eac3a36867d5001938", "cast_id": 33, "profile_path": "/eDZnFqvorS8FTL2QVKEhYx9Vcib.jpg", "order": 7}, {"name": "Kim Wylie", "character": "Laura Anderson", "id": 1400438, "credit_id": "5491740dc3a368466b0017db", "cast_id": 87, "profile_path": null, "order": 8}, {"name": "Noah Wylie", "character": "Ryan Anderson", "id": 1400439, "credit_id": "54917424925141473b00156b", "cast_id": 88, "profile_path": null, "order": 9}, {"name": "Erica Carroll", "character": "John's Fianc\u00e9e", "id": 188656, "credit_id": "5491744f9251411226000fc4", "cast_id": 89, "profile_path": "/imr1SLIHR1efVUToXeIns0r4dAm.jpg", "order": 10}, {"name": "Jan Bos", "character": "Lab Tech", "id": 1252128, "credit_id": "54917472925141472e0016a1", "cast_id": 90, "profile_path": null, "order": 11}], "directors": [{"name": "Gonzalo L\u00f3pez-Gallego", "department": "Directing", "job": "Director", "credit_id": "52fe47c5c3a36847f814736d", "profile_path": "/2C0IA635PgBHctQd60RJdROuJ1j.jpg", "id": 77123}], "vote_average": 5.0, "runtime": 86}, "50359": {"poster_path": "/avbiy6qaRMbfeI8HRpNg2HLaNwD.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 177324359, "overview": "E.B., the Easter Bunny's teenage son, heads to Hollywood, determined to become a drummer in a rock 'n' roll band. In LA, he's taken in by Fred after the out-of-work slacker hits E.B. with his car.", "video": false, "id": 50359, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Hop", "tagline": "Candy, chicks and rock 'n' roll.", "vote_count": 128, "homepage": "http://www.iwantcandy.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1411704", "adult": false, "backdrop_path": "/4ROkS8GjAfOe71PJn5ocFlKmMF8.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Illumination Entertainment", "id": 6704}], "release_date": "2011-03-30", "popularity": 0.766620988192356, "original_title": "Hop", "budget": 63000000, "cast": [{"name": "Russell Brand", "character": "Easter Bunny (voice)", "id": 59919, "credit_id": "52fe47c5c3a36847f8147403", "cast_id": 1, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 0}, {"name": "James Marsden", "character": "Fred", "id": 11006, "credit_id": "52fe47c5c3a36847f8147407", "cast_id": 2, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Kaley Cuoco", "character": "Samantha O'Hare", "id": 53862, "credit_id": "52fe47c5c3a36847f814740b", "cast_id": 3, "profile_path": "/sEIjKRSWUn8bxLCsxNArfxncvpO.jpg", "order": 2}, {"name": "Hank Azaria", "character": "Carlos / Phil (voice)", "id": 5587, "credit_id": "52fe47c5c3a36847f814740f", "cast_id": 4, "profile_path": "/3vIdbP73nKnKpMAcgGWoALPF2JO.jpg", "order": 3}, {"name": "Elizabeth Perkins", "character": "Bonnie O'Hare", "id": 20, "credit_id": "52fe47c5c3a36847f8147413", "cast_id": 5, "profile_path": "/nVI0CWJoVtB0ycDCF6YtYmEbtZq.jpg", "order": 4}, {"name": "Gary Cole", "character": "Henry O'Hare", "id": 21163, "credit_id": "52fe47c5c3a36847f8147417", "cast_id": 6, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 5}, {"name": "Hugh Laurie", "character": "E.B.'s Dad (voice)", "id": 41419, "credit_id": "52fe47c5c3a36847f814741b", "cast_id": 7, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 6}, {"name": "Tiffany Espensen", "character": "Alex O'Hare", "id": 211937, "credit_id": "52fe47c5c3a36847f814745b", "cast_id": 20, "profile_path": "/g4gRyKc9fqnz0iL8CPcCiJe0nrq.jpg", "order": 7}, {"name": "David Hasselhoff", "character": "Himself", "id": 28238, "credit_id": "52fe47c5c3a36847f814745f", "cast_id": 21, "profile_path": "/lt3ASHyd1bfMn7Q2wjADnkMAtFP.jpg", "order": 8}, {"name": "Chelsea Handler", "character": "Mrs. Beck", "id": 151254, "credit_id": "52fe47c5c3a36847f8147463", "cast_id": 22, "profile_path": "/pACHYdiEy4NHtu4bJIgKqeRji85.jpg", "order": 9}], "directors": [{"name": "Tim Hill", "department": "Directing", "job": "Director", "credit_id": "52fe47c5c3a36847f8147421", "profile_path": "/jN6KyRKLoI1UgC1EnyAEYJ5uDYy.jpg", "id": 49903}], "vote_average": 5.5, "runtime": 95}, "23629": {"poster_path": "/s5SjC5pXsBQG3wx9iVzaIzJzpFl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89792502, "overview": "A young girl is institutionalized by her abusive stepfather. Retreating to an alternative reality as a coping strategy, she envisions a plan which will help her escape from the mental facility.", "video": false, "id": 23629, "genres": [{"id": 28, "name": "Action"}, {"id": 14, "name": "Fantasy"}, {"id": 53, "name": "Thriller"}], "title": "Sucker Punch", "tagline": "You Will Be Unprepared.", "vote_count": 520, "homepage": "http://suckerpunchmovie.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0978764", "adult": false, "backdrop_path": "/hVpUs9zBGDuAG6RcTeHkBQshJkk.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Cruel & Unusual Films", "id": 9995}, {"name": "Lennox House Films", "id": 22119}], "release_date": "2011-03-25", "popularity": 1.19661609810598, "original_title": "Sucker Punch", "budget": 82000000, "cast": [{"name": "Emily Browning", "character": "Baby Doll", "id": 70456, "credit_id": "52fe4471c3a368484e023597", "cast_id": 20, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 0}, {"name": "Abbie Cornish", "character": "Sweet Pea", "id": 37260, "credit_id": "52fe4471c3a368484e023593", "cast_id": 19, "profile_path": "/1y69MrA1EYsSVtQC6q2tqV9Ufq2.jpg", "order": 1}, {"name": "Jena Malone", "character": "Rocket", "id": 20089, "credit_id": "52fe4471c3a368484e023567", "cast_id": 6, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 2}, {"name": "Vanessa Hudgens", "character": "Blondie", "id": 67599, "credit_id": "52fe4471c3a368484e02355f", "cast_id": 3, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 3}, {"name": "Jamie Chung", "character": "Amber", "id": 78324, "credit_id": "52fe4471c3a368484e02356b", "cast_id": 7, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 4}, {"name": "Carla Gugino", "character": "Madame Vera Gorski / Dr. Vera Gorski", "id": 17832, "credit_id": "52fe4471c3a368484e02355b", "cast_id": 2, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 5}, {"name": "Oscar Isaac", "character": "Blue Jones", "id": 25072, "credit_id": "52fe4471c3a368484e02356f", "cast_id": 9, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 6}, {"name": "Richard Cetrone", "character": "CJ", "id": 12371, "credit_id": "52fe4471c3a368484e023577", "cast_id": 11, "profile_path": "/63LiC0atGVnNUUaEu86tce2il8Z.jpg", "order": 7}, {"name": "Jon Hamm", "character": "The Doctor / The High Roller", "id": 65717, "credit_id": "52fe4471c3a368484e023563", "cast_id": 5, "profile_path": "/7sjEnFaFNOzPeu5GhCeNJWhnOLt.jpg", "order": 8}, {"name": "Scott Glenn", "character": "The Wise Man / The General / The Bus Driver", "id": 349, "credit_id": "52fe4471c3a368484e023573", "cast_id": 10, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 9}, {"name": "Gerard Plunkett", "character": "The Stepfather / The Priest", "id": 27124, "credit_id": "52fe4471c3a368484e0235bb", "cast_id": 29, "profile_path": "/4HLZrDmeWMgxeMRtDDnb4OrFeLj.jpg", "order": 10}, {"name": "Malcolm Scott", "character": "The Cook", "id": 52514, "credit_id": "52fe4471c3a368484e02357b", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Ron Selmour", "character": "Danforth", "id": 10874, "credit_id": "52fe4471c3a368484e02357f", "cast_id": 14, "profile_path": "/zh4wuPDU4ftPd4THoXItmryfmAM.jpg", "order": 12}, {"name": "Revard Dufresne", "character": "Big Boss Thug", "id": 229694, "credit_id": "52fe4471c3a368484e023583", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Alan C. Peterson", "character": "Mayor / Lighter Orderly", "id": 52703, "credit_id": "52fe4471c3a368484e02359b", "cast_id": 21, "profile_path": "/esrNQmnKq7GYF810l3MmoKjYpsn.jpg", "order": 14}, {"name": "Kelora Clingwall", "character": "Babydoll's Mother", "id": 1079146, "credit_id": "52fe4471c3a368484e02359f", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Frederique De Raucourt", "character": "Babydoll's Sister", "id": 1079147, "credit_id": "52fe4471c3a368484e0235a3", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Monique Ganderton", "character": "Lobotomy Nurse / High Roller Girl #1", "id": 102744, "credit_id": "52fe4471c3a368484e0235a7", "cast_id": 24, "profile_path": "/8BNtDzQwv8CWW0jmtcwa2YiJqta.jpg", "order": 17}, {"name": "Lee Tomaschefski", "character": "Lobotomy Nurse / High Roller Girl #2", "id": 449127, "credit_id": "52fe4471c3a368484e0235ab", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Eli Snyder", "character": "Tommy Soldier #1", "id": 963118, "credit_id": "52fe4471c3a368484e0235af", "cast_id": 26, "profile_path": "/vM41JkLOM4i6UFy7XmaMwQxMfsT.jpg", "order": 19}, {"name": "Cainan Wiebe", "character": "Tommy Soldier #2", "id": 58402, "credit_id": "52fe4471c3a368484e0235b3", "cast_id": 27, "profile_path": "/aaMIrNZ3eVNo6NGHVG4ycxk5Vou.jpg", "order": 20}, {"name": "Danny Bristol", "character": "Tommy Soldier #3", "id": 1079148, "credit_id": "52fe4471c3a368484e0235b7", "cast_id": 28, "profile_path": null, "order": 21}], "directors": [{"name": "Zack Snyder", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a368484e023557", "profile_path": "/jDzkAorXMwsrHF3VzpvNiK8JS9y.jpg", "id": 15217}], "vote_average": 5.8, "runtime": 110}, "23631": {"poster_path": "/3RCX4EzTrpO6wNz536EQPhYM2Fk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31327899, "overview": "After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.", "video": false, "id": 23631, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Machete", "tagline": "He was given an offer he couldn't refuse...", "vote_count": 367, "homepage": "http://www.vivamachete.com/", "belongs_to_collection": {"backdrop_path": "/vURYjEnOd8if3juhZh6HRcTJs7T.jpg", "poster_path": "/7kN9MY7htPG0sI598VJK2pB6zEs.jpg", "id": 210006, "name": "Machete Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt0985694", "adult": false, "backdrop_path": "/hyNTEAXWNvPANHYw80b79NAhnU9.jpg", "production_companies": [{"name": "Troublemaker Studios", "id": 10807}, {"name": "Dune Entertainment", "id": 444}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Overnight Films", "id": 10808}], "release_date": "2010-09-01", "popularity": 0.977088136702211, "original_title": "Machete", "budget": 20000000, "cast": [{"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe4471c3a368484e02363d", "cast_id": 4, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 0}, {"name": "Michelle Rodriguez", "character": "Luz", "id": 17647, "credit_id": "52fe4471c3a368484e023641", "cast_id": 5, "profile_path": "/v37VK0MNuRuJOCKPKJcZAJXRA5r.jpg", "order": 1}, {"name": "Jessica Alba", "character": "Sartana Rivera", "id": 56731, "credit_id": "52fe4471c3a368484e023645", "cast_id": 6, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 2}, {"name": "Robert De Niro", "character": "Senator John McLaughlin", "id": 380, "credit_id": "52fe4471c3a368484e023649", "cast_id": 7, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 3}, {"name": "Lindsay Lohan", "character": "April Booth", "id": 49265, "credit_id": "52fe4471c3a368484e02364d", "cast_id": 8, "profile_path": "/nyuMqqunhaMF343q7tcqZqjSznF.jpg", "order": 4}, {"name": "Cheech Marin", "character": "Padre Cortez", "id": 11159, "credit_id": "52fe4471c3a368484e023651", "cast_id": 9, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 5}, {"name": "Steven Seagal", "character": "Rogelio Torrez", "id": 23880, "credit_id": "52fe4471c3a368484e023655", "cast_id": 10, "profile_path": "/f8OFR4h3ngyFesiudCygrNFdsCE.jpg", "order": 6}, {"name": "Daryl Sabara", "character": "Julio", "id": 57675, "credit_id": "52fe4471c3a368484e02365d", "cast_id": 12, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 8}, {"name": "Don Johnson", "character": "Von Jackson", "id": 25129, "credit_id": "52fe4471c3a368484e023661", "cast_id": 13, "profile_path": "/zPYtZrbhBTsoKMg9wg24OINHaXe.jpg", "order": 9}, {"name": "Jeff Fahey", "character": "Michael Booth", "id": 20495, "credit_id": "52fe4471c3a368484e023665", "cast_id": 14, "profile_path": "/6l44xDPdJE4dQAEDN9eShnJOSo8.jpg", "order": 10}, {"name": "Tom Savini", "character": "Osiris Amanpour", "id": 11161, "credit_id": "52fe4471c3a368484e023669", "cast_id": 15, "profile_path": "/yOZPKC3TXlxkvx4HoDrhq1PgXrU.jpg", "order": 11}, {"name": "Tina Rodriguez", "character": "Tristana", "id": 122416, "credit_id": "52fe4471c3a368484e02366d", "cast_id": 16, "profile_path": "/8DJfBQUsR4wKsTIQXQv84IeTlLH.jpg", "order": 12}, {"name": "Tito Larriva", "character": "Culebra Cruzado", "id": 53763, "credit_id": "52fe4472c3a368484e0236d1", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Stacy Keach", "character": "Doc Franklin", "id": 825, "credit_id": "52fe4472c3a368484e0236d5", "cast_id": 40, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 14}, {"name": "James Parks", "character": "Edgar McGraw", "id": 87312, "credit_id": "52fe4472c3a368484e0236d9", "cast_id": 41, "profile_path": "/hPhUTpSmtAyeQGtsZIEQAncQvsR.jpg", "order": 15}, {"name": "Billy Blair", "character": "Billy", "id": 968889, "credit_id": "54466bec0e0a26633a00b0d4", "cast_id": 42, "profile_path": "/7DI7VBgFjRA0AnrV9jEFt3GfwgE.jpg", "order": 16}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a368484e023633", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}, {"name": "Ethan Maniquis", "department": "Directing", "job": "Director", "credit_id": "52fe4471c3a368484e023639", "profile_path": "/63ehvs9X6lb36mBP2zbS0m9IEpL.jpg", "id": 61847}], "vote_average": 6.4, "runtime": 105}, "72784": {"poster_path": "/idcOD8kqY8BtT90G8MySZyoGcUL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Five friends who share a loft for their extramarital affairs begin to question one another after the body of an unknown woman is found in the property. American remake of the Belgian film 'Loft'.", "video": false, "id": 72784, "genres": [{"id": 53, "name": "Thriller"}], "title": "The Loft", "tagline": "If you accept the key, you accept the rules.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1850397", "adult": false, "backdrop_path": "/j7qWyikT1eKNezNKxqPkkC8lKz8.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Dark Castle Entertainment", "id": 1786}, {"name": "Anonymous Content", "id": 10039}], "release_date": "2014-10-14", "popularity": 2.2404816185362, "original_title": "The Loft", "budget": 13000000, "cast": [{"name": "Karl Urban", "character": "Vincent", "id": 1372, "credit_id": "52fe487ec3a368484e0fb477", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 0}, {"name": "James Marsden", "character": "Chris Vanowen", "id": 11006, "credit_id": "52fe487ec3a368484e0fb47f", "cast_id": 4, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Wentworth Miller", "character": "Luke Seacord", "id": 3972, "credit_id": "52fe487ec3a368484e0fb483", "cast_id": 5, "profile_path": "/z5qjqYgWfZsBrLWWm9jMRSJOtQ2.jpg", "order": 2}, {"name": "Matthias Schoenaerts", "character": "Filip", "id": 73381, "credit_id": "540fcf09c3a3685eae000b7a", "cast_id": 17, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 3}, {"name": "Eric Stonestreet", "character": "Marty Landry", "id": 156962, "credit_id": "52fe487ec3a368484e0fb48f", "cast_id": 8, "profile_path": "/pphQCQ2rZMahePbXMiIkW0sEOM4.jpg", "order": 4}, {"name": "Rhona Mitra", "character": "Allison", "id": 25702, "credit_id": "52fe487ec3a368484e0fb47b", "cast_id": 3, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 5}, {"name": "Rachael Taylor", "character": "Ann", "id": 19538, "credit_id": "5403ff5ac3a3684363005e2e", "cast_id": 16, "profile_path": "/5fEOhNYux8ihz9XTyto9qgc3eAh.jpg", "order": 6}, {"name": "Elaine Cassidy", "character": "Ellie Seacord", "id": 20054, "credit_id": "52fe487ec3a368484e0fb493", "cast_id": 9, "profile_path": "/k6Nlte5S62h2A7sDSA2h91Uq23V.jpg", "order": 7}, {"name": "Madison Burge", "character": "Zoe", "id": 224136, "credit_id": "52fe487ec3a368484e0fb497", "cast_id": 10, "profile_path": "/egh6eWa8mH4cEjzswYQp8LZTDKw.jpg", "order": 8}, {"name": "Kristin Lehman", "character": "Detective Huggins", "id": 148112, "credit_id": "52fe487ec3a368484e0fb49b", "cast_id": 11, "profile_path": "/Ap4B4W3eR8WWaFmMn9sSrigBkYQ.jpg", "order": 9}, {"name": "Robert Wisdom", "character": "Detective Cohagan", "id": 21505, "credit_id": "52fe487ec3a368484e0fb49f", "cast_id": 12, "profile_path": "/zAoS4BCgTOJHA88wD7lmjlXOfnP.jpg", "order": 10}, {"name": "Kali Rocha", "character": "Mimi Landry", "id": 149665, "credit_id": "52fe487ec3a368484e0fb4a3", "cast_id": 13, "profile_path": "/uhigi00Mz43MpzXFYk06N5vApqj.jpg", "order": 11}, {"name": "Laura Cayouette", "character": "Mrs. Kotkin", "id": 565498, "credit_id": "52fe487ec3a368484e0fb4a7", "cast_id": 14, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 12}, {"name": "Isabel Lucas", "character": "Sarah Deakins", "id": 103554, "credit_id": "530b1957c3a3684201005698", "cast_id": 15, "profile_path": "/2HGHfMicjK03LEYWWf7kOKTaoAx.jpg", "order": 13}], "directors": [{"name": "Erik Van Looy", "department": "Directing", "job": "Director", "credit_id": "52fe487ec3a368484e0fb473", "profile_path": null, "id": 82418}], "vote_average": 6.8, "runtime": 108}, "7249": {"poster_path": "/bIde0Qs4OkgyMBmGOZOZyiD92AW.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Planet Express crew return from cancellation, only to be robbed blind by hideous \"sprunging\" scam artists. Things go from bad to worse when the scammers hack Bender, start traveling through time, and take Earth over entirely! Will the crew be able to save the day, or will Bender's larcenous tendencies and their general incompetence doom them all?", "video": false, "id": 7249, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Futurama: Bender's Big Score", "tagline": "Just when you thought it was safe to watch something else!", "vote_count": 53, "homepage": "", "belongs_to_collection": {"backdrop_path": "/wZ1Xuwhu4hbcHPAAZz9sFTIZTKX.jpg", "poster_path": "/vkrtsW1Fyzu4rRpWYz2ybDfKXb0.jpg", "id": 13800, "name": "Futurama Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0471711", "adult": false, "backdrop_path": "/9ZBiK6zW4I1CgbmMJsLqZgizmxy.jpg", "production_companies": [{"name": "20th Century Fox Television", "id": 1556}], "release_date": "2007-11-27", "popularity": 0.398758441643818, "original_title": "Futurama: Bender's Big Score", "budget": 0, "cast": [{"name": "John Di Maggio", "character": "Bender (voice)", "id": 31531, "credit_id": "52fe4475c3a36847f80973bb", "cast_id": 1, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 0}, {"name": "Al Gore", "character": "Al Gore (voice)", "id": 19013, "credit_id": "52fe4475c3a36847f80973bf", "cast_id": 2, "profile_path": "/coo3dI3upX7j1q4bYeQC2CG0vPt.jpg", "order": 1}, {"name": "Billy West", "character": "Philip J. Fry (voice)", "id": 23679, "credit_id": "52fe4475c3a36847f80973c3", "cast_id": 3, "profile_path": "/9V9fsfmWjHEDbS8tB5EOdHkyMFg.jpg", "order": 2}, {"name": "Katey Sagal", "character": "Turanga Leela (voice)", "id": 18980, "credit_id": "52fe4475c3a36847f80973c7", "cast_id": 6, "profile_path": "/35sEVpaGxVIfd9wJIJ0iNxz5llN.jpg", "order": 3}], "directors": [{"name": "Dwayne Carey-Hill", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a36847f80973cd", "profile_path": null, "id": 53216}], "vote_average": 7.3, "runtime": 88}, "97365": {"poster_path": "/cHCwW8xPl8yPKQwpNzKVinwvirT.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "Put in charge of his young son, Ali leaves Belgium for Antibes to live with his sister and her husband as a family. Ali's bond with Stephanie, a killer whale trainer, grows deeper after Stephanie suffers a horrible accident.", "video": false, "id": 97365, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Rust and Bone", "tagline": "", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2053425", "adult": false, "backdrop_path": "/7rgmxIgzN9yI8LnyJIvTVSN8sMK.jpg", "production_companies": [{"name": "Why Not Productions", "id": 729}, {"name": "Les Films Du Fleuve", "id": 1926}, {"name": "France 2 Cin\u00e9ma", "id": 83}, {"name": "Page 114", "id": 11779}, {"name": "Radio T\u00e9l\u00e9vision Belge Francophone (RTBF)", "id": 7466}, {"name": "Lumi\u00e8re", "id": 11793}, {"name": "Lunanime", "id": 11794}, {"name": "Canal+", "id": 5358}, {"name": "Cin\u00e9+", "id": 10611}, {"name": "France T\u00e9l\u00e9visions", "id": 11795}, {"name": "Centre du Cin\u00e9ma et de l'Audiovisuel de la F\u00e9d\u00e9ration Wallonie-Bruxelles", "id": 11796}, {"name": "VOO", "id": 11797}, {"name": "Vlaams Audiovisueel fonds", "id": 3132}, {"name": "R\u00e9gion Provence-Alpes-C\u00f4te d'Azur", "id": 11798}, {"name": "D\u00e9partement des Alpes-Maritimes", "id": 11799}, {"name": "Casa Kafka Pictures Movie Tax Shelter Empowered by Dexia", "id": 11800}], "release_date": "2012-05-17", "popularity": 0.224369960267258, "original_title": "De rouille et d'os", "budget": 0, "cast": [{"name": "Marion Cotillard", "character": "Stephanie", "id": 8293, "credit_id": "52fe49dd9251416c750d5dbd", "cast_id": 2, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 0}, {"name": "Matthias Schoenaerts", "character": "Ali", "id": 73381, "credit_id": "52fe49dd9251416c750d5dc1", "cast_id": 3, "profile_path": "/3FP76x2YX7fuaTRxFzlNeQwC1vd.jpg", "order": 1}, {"name": "Bouli Lanners", "character": "Martial", "id": 47822, "credit_id": "52fe49dd9251416c750d5de3", "cast_id": 9, "profile_path": "/nnM1Yq5sodVTC95oav9iPK9ZiNw.jpg", "order": 2}, {"name": "C\u00e9line Sallette", "character": "Louise", "id": 72255, "credit_id": "52fe49dd9251416c750d5de7", "cast_id": 10, "profile_path": "/gei5LHBer7tNDh55f0VTDO4y5uv.jpg", "order": 3}, {"name": "Corinne Masiero", "character": "Anna", "id": 1033671, "credit_id": "52fe49dd9251416c750d5deb", "cast_id": 11, "profile_path": "/xDzKEomTMyzfY1zMCaULswUTUH7.jpg", "order": 4}, {"name": "Mourad Frarema", "character": "Foued", "id": 1033672, "credit_id": "52fe49dd9251416c750d5def", "cast_id": 12, "profile_path": null, "order": 5}, {"name": "Jean-Michel Correia", "character": "Richard", "id": 1033673, "credit_id": "52fe49dd9251416c750d5df3", "cast_id": 13, "profile_path": "/yW9GnEKd1k0ccX3eHzE2GrTEJzj.jpg", "order": 6}, {"name": "Armand Verdure", "character": "Sam", "id": 1123784, "credit_id": "52fe49dd9251416c750d5e27", "cast_id": 22, "profile_path": null, "order": 7}, {"name": "Yannick Choirat", "character": "Simon", "id": 1123785, "credit_id": "52fe49dd9251416c750d5e2b", "cast_id": 23, "profile_path": "/yICkawhbfX0QHfy6Owj5bOghwPY.jpg", "order": 8}, {"name": "Fred Menut", "character": "Le patron d'ELP S\u00e9curit\u00e9", "id": 1123786, "credit_id": "52fe49dd9251416c750d5e2f", "cast_id": 24, "profile_path": null, "order": 9}, {"name": "Duncan Versteegh", "character": "Soigneur d'orques", "id": 1123787, "credit_id": "52fe49dd9251416c750d5e33", "cast_id": 25, "profile_path": null, "order": 10}, {"name": "Katia Chaperon", "character": "Soigneuse d'orques", "id": 1123788, "credit_id": "52fe49dd9251416c750d5e37", "cast_id": 26, "profile_path": null, "order": 11}, {"name": "Catherine Fa", "character": "Soigneuse d'orques", "id": 1123789, "credit_id": "52fe49dd9251416c750d5e3b", "cast_id": 27, "profile_path": null, "order": 12}, {"name": "Fran\u00e7oise Michaud", "character": "La m\u00e8re de St\u00e9phanie", "id": 144261, "credit_id": "52fe49dd9251416c750d5e3f", "cast_id": 28, "profile_path": null, "order": 13}], "directors": [{"name": "Jacques Audiard", "department": "Directing", "job": "Director", "credit_id": "52fe49dd9251416c750d5db9", "profile_path": "/AwkHfUzBQLC9RJfm8WjX646TblA.jpg", "id": 17496}], "vote_average": 7.1, "runtime": 123}, "97367": {"poster_path": "/cdsRBoAditFXVhSr8SgnJ2WTBkX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35485608, "overview": "A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.", "video": false, "id": 97367, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "The Place Beyond the Pines", "tagline": "If you ride like lightning you're gonna crash like thunder", "vote_count": 689, "homepage": "http://www.focusfeatures.com/the_place_beyond_the_pines", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1817273", "adult": false, "backdrop_path": "/kamIvkwKZUdUgxtudMThuY8EiJ4.jpg", "production_companies": [{"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "Electric City Entertainment", "id": 8600}, {"name": "Verisimilitude", "id": 22632}], "release_date": "2012-09-07", "popularity": 0.921550600086687, "original_title": "The Place Beyond the Pines", "budget": 15000000, "cast": [{"name": "Ryan Gosling", "character": "Luke", "id": 30614, "credit_id": "52fe49dd9251416c750d5ea1", "cast_id": 3, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Bradley Cooper", "character": "Avery Cross", "id": 51329, "credit_id": "52fe49dd9251416c750d5ea5", "cast_id": 4, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Romina", "id": 8170, "credit_id": "52fe49dd9251416c750d5ead", "cast_id": 6, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Dane DeHaan", "character": "Jason", "id": 122889, "credit_id": "52fe49dd9251416c750d5eb9", "cast_id": 10, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 3}, {"name": "Emory Cohen", "character": "AJ", "id": 1041440, "credit_id": "52fe49de9251416c750d5f59", "cast_id": 40, "profile_path": "/eyRIUg5abdjtvT6SWZ8Tzh0tw2G.jpg", "order": 4}, {"name": "Rose Byrne", "character": "Jennifer", "id": 9827, "credit_id": "52fe49dd9251416c750d5ea9", "cast_id": 5, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 5}, {"name": "Mahershalalhashbaz Ali", "character": "Kofi", "id": 932967, "credit_id": "52fe49dd9251416c750d5ec9", "cast_id": 14, "profile_path": "/qrN1ylYpI1f4q2Vz18GiH2VnqWH.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Bill Killcullen", "id": 21089, "credit_id": "52fe49dd9251416c750d5eb1", "cast_id": 7, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Harris Yulin", "character": "Al Cross", "id": 1166, "credit_id": "52fe49de9251416c750d5f4d", "cast_id": 37, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 8}, {"name": "Ben Mendelsohn", "character": "Robin", "id": 77335, "credit_id": "52fe49dd9251416c750d5ebd", "cast_id": 11, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 9}, {"name": "Ray Liotta", "character": "Deluca", "id": 11477, "credit_id": "52fe49dd9251416c750d5eb5", "cast_id": 8, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 10}, {"name": "Robert Clohessy", "character": "Chief Weirzbowski", "id": 2256, "credit_id": "52fe49de9251416c750d5f51", "cast_id": 38, "profile_path": "/mtXOGkDYBZhcbKaNbcSYfZJsUY7.jpg", "order": 11}, {"name": "Gabe Fazio", "character": "Scott", "id": 1129833, "credit_id": "52fe49dd9251416c750d5ed1", "cast_id": 16, "profile_path": "/1ruWGcoMmyxarZOyMLk5qlSwNJE.jpg", "order": 12}, {"name": "Olga Merediz", "character": "Malena", "id": 53937, "credit_id": "52fe49dd9251416c750d5ecd", "cast_id": 15, "profile_path": "/ejdSa9boSe6492csOavWb21FxK4.jpg", "order": 13}, {"name": "Anthony Pizza", "character": "Baby Jason", "id": 1183823, "credit_id": "52fe49dd9251416c750d5ec1", "cast_id": 12, "profile_path": null, "order": 14}, {"name": "Craig Van Hook", "character": "Jack", "id": 1183824, "credit_id": "52fe49dd9251416c750d5ec5", "cast_id": 13, "profile_path": null, "order": 15}, {"name": "Luca Pierucci", "character": "Doc Crowley", "id": 1193623, "credit_id": "52fe49de9251416c750d5f55", "cast_id": 39, "profile_path": null, "order": 16}, {"name": "Jennifer Sober", "character": "Public Defender", "id": 1193624, "credit_id": "52fe49de9251416c750d5f5d", "cast_id": 41, "profile_path": null, "order": 17}, {"name": "Kayla Smalls", "character": "Vanessa", "id": 1193625, "credit_id": "52fe49de9251416c750d5f61", "cast_id": 42, "profile_path": null, "order": 18}, {"name": "Frank J. Falvo", "character": "Pharmacy Clerk", "id": 1193626, "credit_id": "52fe49de9251416c750d5f65", "cast_id": 43, "profile_path": null, "order": 19}, {"name": "Hugh T. Farley", "character": "State Senator", "id": 1193627, "credit_id": "52fe49de9251416c750d5f69", "cast_id": 44, "profile_path": null, "order": 20}, {"name": "Greta Seacat", "character": "Cory Gilbeau", "id": 1193629, "credit_id": "52fe49de9251416c750d5f6d", "cast_id": 45, "profile_path": null, "order": 21}], "directors": [{"name": "Derek Cianfrance", "department": "Directing", "job": "Director", "credit_id": "52fe49dd9251416c750d5e9d", "profile_path": "/zGhozVaRDCU5Tpu026X0al2lQN3.jpg", "id": 139098}], "vote_average": 6.7, "runtime": 140}, "97370": {"poster_path": "/vYbCF0Hn6f4kVtOtVF3FiktiiXd.jpg", "production_countries": [{"iso_3166_1": "CH", "name": "Switzerland"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 2605039, "overview": "Jonathan Glazer's atmospheric, visually arresting abstraction stars Scarlett Johansson as a seductive alien who prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell, only to be consumed by a strange liquid pool.", "video": false, "id": 97370, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Under the Skin", "tagline": "A mysterious seductress preys upon the population of Scotland", "vote_count": 314, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1441395", "adult": false, "backdrop_path": "/cGOnS9rVOPXsyUwVUfTQP5yi3Ti.jpg", "production_companies": [{"name": "Scottish Screen", "id": 698}, {"name": "UK Film Council", "id": 2452}, {"name": "FilmNation Entertainment", "id": 7493}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Creative Scotland", "id": 8087}, {"name": "British Film Institute", "id": 8092}, {"name": "Film4", "id": 9349}, {"name": "Silver Reel", "id": 12075}, {"name": "JW Films", "id": 27543}], "release_date": "2014-04-04", "popularity": 1.38115441133816, "original_title": "Under the Skin", "budget": 0, "cast": [{"name": "Scarlett Johansson", "character": "Laura", "id": 1245, "credit_id": "52fe49de9251416c750d5fa3", "cast_id": 5, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 0}, {"name": "Kry\u0161tof H\u00e1dek", "character": "The Swimmer", "id": 136796, "credit_id": "5427eaa20e0a265562002252", "cast_id": 52, "profile_path": "/73fDGqzbeJtGy6fvNhILsTe7alL.jpg", "order": 1}, {"name": "Paul Brannigan", "character": "Andrew", "id": 1034704, "credit_id": "52fe49de9251416c750d5faf", "cast_id": 8, "profile_path": "/5d8FMoDGCskHGTogLyp7ubyQFWk.jpg", "order": 2}, {"name": "Michael Moreland", "character": "The Quiet Man", "id": 1047642, "credit_id": "52fe49de9251416c750d5fb3", "cast_id": 9, "profile_path": null, "order": 3}, {"name": "Scott Dymond", "character": "The Nervous Man", "id": 1047643, "credit_id": "52fe49de9251416c750d5fb7", "cast_id": 10, "profile_path": null, "order": 4}, {"name": "Jeremy McWilliams", "character": "The Bad Man", "id": 1047644, "credit_id": "52fe49de9251416c750d5fbb", "cast_id": 11, "profile_path": null, "order": 5}], "directors": [{"name": "Jonathan Glazer", "department": "Directing", "job": "Director", "credit_id": "52fe49de9251416c750d5f8d", "profile_path": "/uzxOQxv6DtiEPIl06TWJ9hORKCV.jpg", "id": 66728}], "vote_average": 6.0, "runtime": 108}, "130150": {"poster_path": "/4TKMiTqZnG6KJWjmxy2ZCDuG3M0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Depressed single mom Adele and her son Henry offer a wounded, fearsome man a ride. As police search town for the escaped convict, the mother and son gradually learn his true story as their options become increasingly limited.", "video": false, "id": 130150, "genres": [{"id": 18, "name": "Drama"}], "title": "Labor Day", "tagline": "", "vote_count": 86, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1967545", "adult": false, "backdrop_path": "/etWGD7y6SewUFDJHz4uTbFIOCBT.jpg", "production_companies": [{"name": "Right of Way Films", "id": 32157}, {"name": "Mr. Mudd Production", "id": 2130}, {"name": "Indian Paintbrush", "id": 9350}], "release_date": "2013-12-27", "popularity": 1.14093629233268, "original_title": "Labor Day", "budget": 0, "cast": [{"name": "Josh Brolin", "character": "Frank", "id": 16851, "credit_id": "52fe4b51c3a368484e183121", "cast_id": 5, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 0}, {"name": "Kate Winslet", "character": "Adele", "id": 204, "credit_id": "52fe4b51c3a368484e183125", "cast_id": 6, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 1}, {"name": "Clark Gregg", "character": "Gerald", "id": 9048, "credit_id": "52fe4b51c3a368484e183129", "cast_id": 7, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 2}, {"name": "James Van Der Beek", "character": "Officer Treadwell", "id": 19210, "credit_id": "52fe4b51c3a368484e18312d", "cast_id": 8, "profile_path": "/p6FC3Zn6OHLCCy2913GWmo64o8B.jpg", "order": 3}, {"name": "Tobey Maguire", "character": "Older Henry Wheeler", "id": 2219, "credit_id": "52fe4b51c3a368484e18311d", "cast_id": 4, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 4}, {"name": "Maika Monroe", "character": "Mandy", "id": 1094091, "credit_id": "52fe4b51c3a368484e183131", "cast_id": 9, "profile_path": "/3MyvscK0RoxmwLSIWzxRA2UrC6v.jpg", "order": 5}, {"name": "Brooke Smith", "character": "Evelyn", "id": 31649, "credit_id": "52fe4b51c3a368484e183135", "cast_id": 10, "profile_path": "/jkc1nGG3SnWXFdNbINrG82MlPDx.jpg", "order": 6}, {"name": "Dylan Minnette", "character": "Henry at 16", "id": 112476, "credit_id": "52fe4b51c3a368484e183139", "cast_id": 11, "profile_path": "/4H7ycJx7nU3PRUEn5N3843DJASM.jpg", "order": 7}, {"name": "Gattlin Griffith", "character": "Henry Wheeler", "id": 117885, "credit_id": "52fe4b51c3a368484e18313d", "cast_id": 12, "profile_path": "/ac5MJnC9olgP8bhUnLfLfBP4BYy.jpg", "order": 8}, {"name": "Greg Nutcher", "character": "Officer Benson", "id": 968746, "credit_id": "52fe4b51c3a368484e183141", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "Tom Lipinski", "character": "Young Frank", "id": 995198, "credit_id": "52fe4b51c3a368484e183145", "cast_id": 14, "profile_path": "/sp8yn6M94BjGXZXYJL8BOuX3dOn.jpg", "order": 10}, {"name": "Alexie Gilmore", "character": "Marjorie", "id": 87669, "credit_id": "52fe4b51c3a368484e183149", "cast_id": 15, "profile_path": "/lvWDTug0Jythcqhy3pr4yRx5MEH.jpg", "order": 11}, {"name": "Alexandra East", "character": "", "id": 1175452, "credit_id": "52fe4b51c3a368484e18314d", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Matthew Rauch", "character": "Bank Manager", "id": 111116, "credit_id": "52fe4b51c3a368484e183151", "cast_id": 17, "profile_path": "/qer9HYndRiL7rb8cCAAqWIKm0sf.jpg", "order": 13}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4b51c3a368484e18310d", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.6, "runtime": 111}, "48231": {"poster_path": "/alhzRpJVVhkQyvrWg6Y1tBxeTPS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In 1904 a Russian woman named Sabina Spielrein arrives at Carl Jung's clinic, seeking treatment for hysteria. Jung is eager to test Sigmund Freud's theories on Sabina and, in fact, successfully treats her. Two years later Jung and Sabina meet Freud in person, and Jung takes over the treatment of Otto Gross, whose influence leads Jung to begin an affair with Sabina, contributing to a rift with Freud.", "video": false, "id": 48231, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "A Dangerous Method", "tagline": "Why deny what you desire the most.", "vote_count": 102, "homepage": "http://adangerousmethod-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1571222", "adult": false, "backdrop_path": "/zLlbwDz6aKsrURSrwYfTrR53sUM.jpg", "production_companies": [{"name": "Lago Films", "id": 2624}, {"name": "Recorded Picture Company (RPC)", "id": 11561}], "release_date": "2011-11-10", "popularity": 0.802547890352967, "original_title": "A Dangerous Method", "budget": 15000000, "cast": [{"name": "Viggo Mortensen", "character": "Sigmund Freud", "id": 110, "credit_id": "52fe475bc3a36847f8131221", "cast_id": 1, "profile_path": "/hKMk7FsqzBDkQt72fOAOLePZEko.jpg", "order": 0}, {"name": "Keira Knightley", "character": "Sabina Spielrein", "id": 116, "credit_id": "52fe475bc3a36847f8131225", "cast_id": 2, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 1}, {"name": "Michael Fassbender", "character": "Carl Jung", "id": 17288, "credit_id": "52fe475bc3a36847f8131229", "cast_id": 3, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 2}, {"name": "Vincent Cassel", "character": "Otto Gross", "id": 1925, "credit_id": "52fe475bc3a36847f813122d", "cast_id": 4, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 3}, {"name": "Sarah Gadon", "character": "Emma Jung", "id": 190895, "credit_id": "52fe475bc3a36847f8131297", "cast_id": 23, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 4}, {"name": "Andr\u00e9 Hennicke", "character": "Professor Eugen Bleuler", "id": 1846, "credit_id": "52fe475bc3a36847f813129b", "cast_id": 24, "profile_path": "/7cjb7ckyLpEFO7uD9mR5g0Yahwv.jpg", "order": 5}, {"name": "Arndt Schwering-Sohnrey", "character": "Sandor Ferenczi", "id": 36463, "credit_id": "52fe475bc3a36847f813129f", "cast_id": 25, "profile_path": null, "order": 6}, {"name": "Katharina Palm", "character": "Martha Freud", "id": 235162, "credit_id": "52fe475bc3a36847f81312a3", "cast_id": 26, "profile_path": null, "order": 7}, {"name": "Mignon Rem\u00e9", "character": "Jung's Secretary", "id": 46028, "credit_id": "52fe475bc3a36847f81312ad", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Mareike Carri\u00e8re", "character": "Food Nurse", "id": 233682, "credit_id": "52fe475bc3a36847f81312b1", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Franziska Arndt", "character": "Bath Nurse", "id": 1089478, "credit_id": "52fe475bc3a36847f81312b5", "cast_id": 30, "profile_path": null, "order": 10}, {"name": "Wladimir Matuchin", "character": "Nikolai Spielrein", "id": 1012899, "credit_id": "52fe475bc3a36847f81312b9", "cast_id": 31, "profile_path": null, "order": 11}, {"name": "Andr\u00e9 Dietz", "character": "Medical Policeman", "id": 583908, "credit_id": "52fe475bc3a36847f81312bd", "cast_id": 32, "profile_path": null, "order": 12}, {"name": "Anna Thalbach", "character": "Bathtub Patient", "id": 38371, "credit_id": "52fe475bc3a36847f81312c1", "cast_id": 33, "profile_path": "/zgJ8eY1FxjDMoYOz7OxWH3JM3Yo.jpg", "order": 13}, {"name": "Sarah Marecek", "character": "Orchard Nurse", "id": 1089480, "credit_id": "52fe475bc3a36847f81312c5", "cast_id": 34, "profile_path": null, "order": 14}, {"name": "Bj\u00f6rn Geske", "character": "Orderly", "id": 1089481, "credit_id": "52fe475bc3a36847f81312c9", "cast_id": 35, "profile_path": null, "order": 15}, {"name": "Markus Haase", "character": "Orderly", "id": 1089482, "credit_id": "52fe475bc3a36847f81312cd", "cast_id": 36, "profile_path": null, "order": 16}, {"name": "Christian Serritiello", "character": "Ship's Officer", "id": 142545, "credit_id": "52fe475bc3a36847f81312d1", "cast_id": 37, "profile_path": null, "order": 17}, {"name": "Clemens Giebel", "character": "Ship's Steward", "id": 1089483, "credit_id": "52fe475bc3a36847f81312d5", "cast_id": 38, "profile_path": null, "order": 18}, {"name": "Theo Meller", "character": "Karl Abraham", "id": 1089484, "credit_id": "52fe475bc3a36847f81312d9", "cast_id": 39, "profile_path": null, "order": 19}, {"name": "Jost Grix", "character": "Leonhard Seif", "id": 1089485, "credit_id": "52fe475bc3a36847f81312dd", "cast_id": 40, "profile_path": null, "order": 20}, {"name": "Severin von Hoensbroech", "character": "Johan van Ophuijsen", "id": 1012903, "credit_id": "52fe475bc3a36847f81312e1", "cast_id": 41, "profile_path": null, "order": 21}, {"name": "Torsten Knippertz", "character": "Ernest Jones", "id": 1012902, "credit_id": "52fe475bc3a36847f81312e5", "cast_id": 42, "profile_path": null, "order": 22}, {"name": "Dirk S. Greis", "character": "Franz Riklin", "id": 1089486, "credit_id": "52fe475bc3a36847f81312e9", "cast_id": 43, "profile_path": null, "order": 23}, {"name": "Nina Azizi", "character": "Minna Bernays", "id": 1089487, "credit_id": "52fe475bc3a36847f81312ed", "cast_id": 44, "profile_path": null, "order": 24}, {"name": "Julie Chevallier", "character": "Anna Freud", "id": 1089488, "credit_id": "52fe475bc3a36847f81312f1", "cast_id": 45, "profile_path": null, "order": 25}, {"name": "Cynthia Cosima", "character": "Sophie Freud", "id": 1089489, "credit_id": "52fe475bc3a36847f81312f5", "cast_id": 46, "profile_path": null, "order": 26}, {"name": "Mirko Guckeisen", "character": "Ernst Freud", "id": 1089490, "credit_id": "52fe475bc3a36847f81312f9", "cast_id": 47, "profile_path": null, "order": 27}, {"name": "Julia Mack", "character": "Mathilde Freud", "id": 1089491, "credit_id": "52fe475bc3a36847f81312fd", "cast_id": 48, "profile_path": null, "order": 28}, {"name": "Andrea Magro", "character": "Jean Freud", "id": 1089492, "credit_id": "52fe475bc3a36847f8131301", "cast_id": 49, "profile_path": null, "order": 29}, {"name": "Aaron Keller", "character": "Oliver Freud", "id": 1089493, "credit_id": "52fe475bc3a36847f8131305", "cast_id": 50, "profile_path": null, "order": 30}, {"name": "Nadine Salomon", "character": "Maid at Freud's House", "id": 1089494, "credit_id": "52fe475bc3a36847f8131309", "cast_id": 51, "profile_path": null, "order": 31}, {"name": "Naike Jaszczyk", "character": "Agathe Jung", "id": 1089495, "credit_id": "52fe475bc3a36847f813130d", "cast_id": 52, "profile_path": null, "order": 32}, {"name": "Sarah Adams", "character": "Gret Jung", "id": 220407, "credit_id": "52fe475bc3a36847f8131311", "cast_id": 53, "profile_path": null, "order": 33}], "directors": [{"name": "David Cronenberg", "department": "Directing", "job": "Director", "credit_id": "52fe475bc3a36847f8131233", "profile_path": "/7Ot4rmLcEXrE42GulBpkgPfxS8k.jpg", "id": 224}], "vote_average": 5.7, "runtime": 99}, "81005": {"poster_path": "/wn4aSJcKiQ0fPzJ92XEf6M9Kmlo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 197687603, "overview": "The story of an ancient war that is reignited when a young farmhand unwittingly opens a gateway between our world and a fearsome race of giants. Unleashed on the Earth for the first time in centuries, the giants strive to reclaim the land they once lost, forcing the young man, Jack into the battle of his life to stop them. Fighting for a kingdom, its people, and the love of a brave princess, he comes face to face with the unstoppable warriors he thought only existed in legend\u2013and gets the chance to become a legend himself.", "video": false, "id": 81005, "genres": [{"id": 28, "name": "Action"}], "title": "Jack the Giant Slayer", "tagline": "Prepare for a giant adventure", "vote_count": 1888, "homepage": "http://jackthegiantkiller.warnerbros.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1351685", "adult": false, "backdrop_path": "/rJw1ecWyu9uoFFmtcYwzeNjZ9yP.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "New Line Cinema", "id": 12}, {"name": "Legendary Pictures", "id": 923}, {"name": "Original Film", "id": 333}, {"name": "Big Kid Pictures", "id": 8406}, {"name": "Bad Hat Harry Productions", "id": 9168}], "release_date": "2013-03-01", "popularity": 1.67438687909994, "original_title": "Jack the Giant Slayer", "budget": 195000000, "cast": [{"name": "Nicholas Hoult", "character": "Jack", "id": 3292, "credit_id": "52fe47ef9251416c9107aa2f", "cast_id": 7, "profile_path": "/cYcIqn3sIrDyN2Cx883O7HnQisU.jpg", "order": 0}, {"name": "Eleanor Tomlinson", "character": "Princess Isabelle", "id": 73357, "credit_id": "52fe47ef9251416c9107aa4b", "cast_id": 15, "profile_path": "/1eDkLc1uz20At0UNGMaTgGaooBR.jpg", "order": 1}, {"name": "Ewan McGregor", "character": "Elmont", "id": 3061, "credit_id": "52fe47ef9251416c9107aa2b", "cast_id": 6, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Roderick", "id": 2283, "credit_id": "52fe47ef9251416c9107aa33", "cast_id": 8, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Ian McShane", "character": "King Brahmwell", "id": 6972, "credit_id": "52fe47ef9251416c9107aa3f", "cast_id": 11, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 4}, {"name": "Eddie Marsan", "character": "Crawe", "id": 1665, "credit_id": "52fe47ef9251416c9107aa47", "cast_id": 13, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 5}, {"name": "Ewen Bremner", "character": "Wicke", "id": 1125, "credit_id": "52fe47ef9251416c9107aa43", "cast_id": 12, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 6}, {"name": "Warwick Davis", "character": "Old Hamm", "id": 11184, "credit_id": "52fe47ef9251416c9107aa37", "cast_id": 9, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 7}, {"name": "Bill Nighy", "character": "General Fallon", "id": 2440, "credit_id": "52fe47ef9251416c9107aa3b", "cast_id": 10, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 8}, {"name": "Ralph Brown", "character": "General Entin", "id": 53916, "credit_id": "52fe47ef9251416c9107aa4f", "cast_id": 16, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 9}, {"name": "Andrew Brooke", "character": "Fye", "id": 202760, "credit_id": "52fe47ef9251416c9107aa53", "cast_id": 17, "profile_path": "/vXyNaZWVYGWQCXYmH7hVRaRAyVP.jpg", "order": 10}, {"name": "Ben Daniels", "character": "Fumm", "id": 27632, "credit_id": "52fe47ef9251416c9107aa57", "cast_id": 18, "profile_path": "/x6MI4Fdz1XbERbNbXYoxTK6NAgv.jpg", "order": 11}, {"name": "Daniel Lapaine", "character": "Jack's Dad", "id": 3072, "credit_id": "52fe47ef9251416c9107aa5b", "cast_id": 19, "profile_path": "/rbjKrUGYsPFvUg8bNU9afBnV4b.jpg", "order": 12}, {"name": "Lee Boardman", "character": "Badger", "id": 590929, "credit_id": "52fe47f09251416c9107aa5f", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Christian Wolf-La'Moy ", "character": "Horse Merchant", "id": 590936, "credit_id": "52fe47f09251416c9107aa63", "cast_id": 22, "profile_path": null, "order": 14}, {"name": "Duncan JC Mais ", "character": "The kings Foot Soldier", "id": 590937, "credit_id": "52fe47f09251416c9107aa67", "cast_id": 23, "profile_path": null, "order": 15}, {"name": "Santi Scinelli ", "character": "Soothsayer", "id": 590938, "credit_id": "52fe47f09251416c9107aa6b", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Caroline Hayes", "character": "Jack's Mum", "id": 590939, "credit_id": "52fe47f09251416c9107aa6f", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Angus Barnett", "character": "Foe", "id": 1714, "credit_id": "52fe47f09251416c9107aaa3", "cast_id": 34, "profile_path": "/usYsWRccdM4Y00RycsQFFOdNVe.jpg", "order": 18}, {"name": "Alex MacQueen", "character": "Tour Guide", "id": 126042, "credit_id": "52fe47f09251416c9107aaa7", "cast_id": 35, "profile_path": null, "order": 19}, {"name": "Tandi Wright", "character": "The Queen", "id": 33310, "credit_id": "52fe47f09251416c9107aaab", "cast_id": 36, "profile_path": "/yVoJwmkHUEiSC1UKmpNV4m49k68.jpg", "order": 20}], "directors": [{"name": "Bryan Singer", "department": "Directing", "job": "Director", "credit_id": "52fe47f09251416c9107aa75", "profile_path": "/fgWDpSgXmkxyc2B57PUkQrBYRyF.jpg", "id": 9032}], "vote_average": 5.5, "runtime": 114}, "61891": {"poster_path": "/tuAI9fT8AzakI5w4V1KZyUEvuDW.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "A political thriller advancing the theory that it was in fact Edward De Vere, Earl of Oxford who penned Shakespeare's plays; set against the backdrop of the succession of Queen Elizabeth I, and the Essex Rebellion against her.", "video": false, "id": 61891, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Anonymous", "tagline": "Was Shakespeare a Fraud?", "vote_count": 103, "homepage": "http://www.anonymous-movie.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1521197", "adult": false, "backdrop_path": "/406C5l8PyTHMUBDbeaea8PTxm71.jpg", "production_companies": [{"name": "Centropolis Entertainment", "id": 347}, {"name": "Columbia Pictures", "id": 5}], "release_date": "2011-10-21", "popularity": 0.670430960087856, "original_title": "Anonymous", "budget": 0, "cast": [{"name": "Jamie Campbell Bower", "character": "Young Oxford", "id": 83356, "credit_id": "52fe4668c3a368484e08f061", "cast_id": 2, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 0}, {"name": "Rhys Ifans", "character": "Edward de Vere", "id": 7026, "credit_id": "52fe4668c3a368484e08f065", "cast_id": 3, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 1}, {"name": "David Thewlis", "character": "William Cecil", "id": 11207, "credit_id": "52fe4668c3a368484e08f069", "cast_id": 4, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 2}, {"name": "Joely Richardson", "character": "Princess Elizabeth Tudor", "id": 20810, "credit_id": "52fe4668c3a368484e08f06d", "cast_id": 5, "profile_path": "/uAl4GWLpmTKEEfYgKXZZXsehfLX.jpg", "order": 3}, {"name": "Vanessa Redgrave", "character": "Queen Elizabeth I", "id": 13333, "credit_id": "52fe4668c3a368484e08f077", "cast_id": 7, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 4}, {"name": "Sebastian Armesto", "character": "Ben Jonson", "id": 229634, "credit_id": "52fe4668c3a368484e08f07b", "cast_id": 8, "profile_path": "/oNflfULqkire4ZPHIrWEdNdqjBU.jpg", "order": 5}, {"name": "Rafe Spall", "character": "William Shakespeare", "id": 28847, "credit_id": "52fe4668c3a368484e08f07f", "cast_id": 9, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 6}, {"name": "Edward Hogg", "character": "Robert Cecil", "id": 114252, "credit_id": "52fe4668c3a368484e08f083", "cast_id": 10, "profile_path": "/cZ9Iqj7l0vmpHcJBA26JYKgqVLP.jpg", "order": 7}, {"name": "Xavier Samuel", "character": "Earl of Southampton", "id": 109438, "credit_id": "52fe4668c3a368484e08f087", "cast_id": 11, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 8}, {"name": "Sam Reid", "character": "Earl of Essex", "id": 589650, "credit_id": "52fe4668c3a368484e08f08b", "cast_id": 12, "profile_path": "/apMtm8JeZbyI6ZCdbqkAfUNr0SW.jpg", "order": 9}, {"name": "Jamie Campbell Bower", "character": "Young Earl of Oxford", "id": 83356, "credit_id": "52fe4668c3a368484e08f08f", "cast_id": 13, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 10}, {"name": "Paolo De Vita", "character": "Francesco", "id": 92094, "credit_id": "52fe4668c3a368484e08f093", "cast_id": 14, "profile_path": null, "order": 11}, {"name": "Trystan Gravelle", "character": "Christopher Marlowe", "id": 589651, "credit_id": "52fe4668c3a368484e08f097", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "Robert Emms", "character": "Thomas Dekker", "id": 589652, "credit_id": "52fe4668c3a368484e08f09b", "cast_id": 16, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 13}, {"name": "Tony Way", "character": "Thomas Nashe", "id": 147255, "credit_id": "52fe4668c3a368484e08f09f", "cast_id": 17, "profile_path": "/uk8OCXbEGXnkmKvf7EgVzfKq918.jpg", "order": 14}, {"name": "Julian Bleach", "character": "Captain Richard Pole", "id": 30086, "credit_id": "52fe4668c3a368484e08f0a3", "cast_id": 18, "profile_path": null, "order": 15}, {"name": "Derek Jacobi", "character": "Prologue", "id": 937, "credit_id": "52fe4668c3a368484e08f0a7", "cast_id": 19, "profile_path": "/3ZK8voe3jDc05FUI70LkI2Xmnum.jpg", "order": 16}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4668c3a368484e08f05d", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 6.1, "runtime": 130}, "15472": {"poster_path": "/9pRod9YBfBwC0tPfMijhYSdSlwU.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 104345682, "overview": "Swedish thriller based on Stieg Larsson's novel about a male journalist and a young female hacker. In the opening of the movie, Mikael Blomkvist, a middle-aged publisher for the magazine Millennium, loses a libel case brought by corrupt Swedish industrialist Hans-Erik Wennerstr\u00f6m. Nevertheless, he is hired by Henrik Vanger in order to solve a cold case, the disappearance of Vanger's niece", "video": false, "id": 15472, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl with the Dragon Tattoo", "tagline": "Based on the Worldwide Best Seller", "vote_count": 341, "homepage": "http://dragontattoofilm.com/", "belongs_to_collection": {"backdrop_path": "/9wLsZPhI7ZafO4fh1MhwCjvkclN.jpg", "poster_path": "/sLeE5pwX9cle1v1TpBylT9MeYJ2.jpg", "id": 24761, "name": "The Millennium Collection"}, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1132620", "adult": false, "backdrop_path": "/7ajX2OJsBecgDDOYfk9VXYfhMIy.jpg", "production_companies": [{"name": "Det Danske Filminstitut", "id": 118}, {"name": "Nordisk Film", "id": 235}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}, {"name": "Yellow Bird Films", "id": 5746}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Filmpool Stockholm M\u00e4lardalen", "id": 33821}, {"name": "Spiltan Underh\u00e5llning", "id": 33822}, {"name": "Svenska Filminstitutet (SFI)", "id": 7446}, {"name": "Nordisk Film & TV Fond", "id": 5403}], "release_date": "2009-02-27", "popularity": 0.993895849661728, "original_title": "M\u00e4n som hatar kvinnor", "budget": 13000000, "cast": [{"name": "Michael Nyqvist", "character": "Mikael Blomkvist", "id": 6283, "credit_id": "52fe465d9251416c75075fb7", "cast_id": 2, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Lisbeth Salander", "id": 87722, "credit_id": "52fe465d9251416c75075fb3", "cast_id": 1, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Lena Endre", "character": "Erika Berger", "id": 79196, "credit_id": "52fe465d9251416c75075fcb", "cast_id": 7, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 2}, {"name": "Sven-Bertil Taube", "character": "Henrik Vanger", "id": 87723, "credit_id": "52fe465d9251416c75075fbb", "cast_id": 3, "profile_path": "/e4ra4ZFKQ5zDijQHh0x3TlGApWW.jpg", "order": 3}, {"name": "Peter Andersson", "character": "Nils Bjurman", "id": 21193, "credit_id": "52fe465d9251416c75075fbf", "cast_id": 4, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 4}, {"name": "Peter Haber", "character": "Martin Vanger", "id": 74709, "credit_id": "52fe465d9251416c75075fc3", "cast_id": 5, "profile_path": "/fMbTKyLcfrcyFi0rdCqayYnNAh0.jpg", "order": 5}, {"name": "Marika Lagercrantz", "character": "Cecilia Vanger", "id": 87724, "credit_id": "52fe465d9251416c75075fc7", "cast_id": 6, "profile_path": "/9SrJ2SZLLy5ApqZScf17s98myTr.jpg", "order": 6}, {"name": "Tomas K\u00f6hler", "character": "'Plague'", "id": 87727, "credit_id": "52fe465d9251416c75075fe7", "cast_id": 15, "profile_path": null, "order": 7}, {"name": "G\u00f6sta Bredefeldt", "character": "Harald Vanger", "id": 87725, "credit_id": "52fe465d9251416c75075fcf", "cast_id": 9, "profile_path": "/qWdzGtD2UsMLh87ytEJDUAFvtCc.jpg", "order": 9}, {"name": "Bj\u00f6rn Granath", "character": "Gustav Morell", "id": 55002, "credit_id": "52fe465d9251416c75075fd3", "cast_id": 10, "profile_path": "/vnAD5t7vyCP7GPicOa2bB3WXJxD.jpg", "order": 10}, {"name": "Ewa Fr\u00f6ling", "character": "Harriet Vanger", "id": 46866, "credit_id": "52fe465d9251416c75075fd7", "cast_id": 11, "profile_path": "/9qZewaRRpxzKfOZyJ6KFx5eqoyl.jpg", "order": 11}, {"name": "Stefan Sauk", "character": "Hans-Erik Wennerstr\u00f6m", "id": 55886, "credit_id": "52fe465d9251416c75075fdb", "cast_id": 12, "profile_path": "/f2H1BUukQbd1pnVuq38anpqsdTr.jpg", "order": 12}, {"name": "Gunnel Lindblom", "character": "Isabella Vanger", "id": 6662, "credit_id": "52fe465d9251416c75075fdf", "cast_id": 13, "profile_path": "/pvyxNIdjoNBPGT3Ig8cKu97yTXo.jpg", "order": 13}, {"name": "Willie Andr\u00e9ason", "character": "Birger Vanger", "id": 87726, "credit_id": "52fe465d9251416c75075fe3", "cast_id": 14, "profile_path": null, "order": 14}, {"name": "Ingvar Hirdwall", "character": "Dirch Frode", "id": 47070, "credit_id": "52fe465d9251416c75076003", "cast_id": 20, "profile_path": "/uYpw3FrLBMdkdBuZ3yqNPBE7gMr.jpg", "order": 15}, {"name": "Annika Hallin", "character": "Annika Giannini", "id": 79270, "credit_id": "53d4de610e0a26283e003c2e", "cast_id": 26, "profile_path": "/xvbhvw0Zt8SCNXVApudzZfd6X2p.jpg", "order": 16}, {"name": "Sofia Ledarp", "character": "Malin Erikson", "id": 83899, "credit_id": "53d4de8a0e0a262844003ba7", "cast_id": 27, "profile_path": "/wYtfaMlSFX7iDpk00xtVuz0Hzof.jpg", "order": 17}, {"name": "David Dencik", "character": "Janne Dahlman", "id": 93236, "credit_id": "53d4debc0e0a26284a003aa3", "cast_id": 28, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 18}, {"name": "Michalis Koutsogiannakis", "character": "Dragan Armanskij", "id": 92897, "credit_id": "53d4deeb0e0a26283e003c37", "cast_id": 29, "profile_path": "/ne1BlRr5i2yFTC7vj8MQoznACPf.jpg", "order": 19}, {"name": "Yasmine Garbi", "character": "Miriam 'Mimmi' Wu", "id": 234908, "credit_id": "53d4e7d8c3a3686b880036c8", "cast_id": 30, "profile_path": null, "order": 20}], "directors": [{"name": "Niels Arden Oplev", "department": "Directing", "job": "Director", "credit_id": "52fe465d9251416c75075fed", "profile_path": "/kC0qwxbWkZkWC3zT8w8x6xatHq1.jpg", "id": 19346}], "vote_average": 7.1, "runtime": 152}, "10771": {"poster_path": "/yDjNnQvyGLTOl9656dGOpxPAva3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A hapless chauffer must take a comatosed secret agent's place using his special gadget-laden tuxedo.", "video": false, "id": 10771, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Tuxedo", "tagline": "Suit up for action!", "vote_count": 95, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0290095", "adult": false, "backdrop_path": "/2nOOz119wBa52YBjeVXS7BVPqw2.jpg", "production_companies": [{"name": "DreamWorks SKG", "id": 27}], "release_date": "2002-09-27", "popularity": 1.07547886928531, "original_title": "The Tuxedo", "budget": 0, "cast": [{"name": "Jackie Chan", "character": "Jimmy Tong", "id": 18897, "credit_id": "52fe43b49251416c7501ad95", "cast_id": 10, "profile_path": "/pmKJ4sGvPQ3imzXaFnjW4Vk5Gyc.jpg", "order": 0}, {"name": "Jennifer Love Hewitt", "character": "Del Blaine", "id": 33259, "credit_id": "52fe43b49251416c7501ad99", "cast_id": 11, "profile_path": "/oSEyFRYQpM47yn7PnRLmdSHd2za.jpg", "order": 1}, {"name": "Jason Isaacs", "character": "Clark Devlin", "id": 11355, "credit_id": "52fe43b49251416c7501ad9d", "cast_id": 12, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 2}, {"name": "Debi Mazar", "character": "Steena", "id": 5578, "credit_id": "52fe43b49251416c7501ada1", "cast_id": 13, "profile_path": "/2KvU83RPF1Iswd402LCQasdK6MP.jpg", "order": 3}, {"name": "Ritchie Coster", "character": "Dietrich Banning", "id": 13939, "credit_id": "54d64c42c3a3683b9500246b", "cast_id": 14, "profile_path": "/4E22BWQJfR48SKx0qTcDSOyDGSw.jpg", "order": 4}, {"name": "Peter Stormare", "character": "Dr. Simms", "id": 53, "credit_id": "54d64c4fc3a368439a00237d", "cast_id": 15, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 5}, {"name": "Mia Cottet", "character": "Cheryl", "id": 149209, "credit_id": "54d64c5ec3a3683b8f00264d", "cast_id": 16, "profile_path": "/6MWsJvBf5VtB7KVAy2G5Ys7JIh2.jpg", "order": 6}, {"name": "Romany Malco", "character": "Mitch", "id": 71530, "credit_id": "54d64c6fc3a3683b8f00265b", "cast_id": 17, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 7}, {"name": "Daniel Kash", "character": "Rogers", "id": 10210, "credit_id": "54d64c7ec3a3683b92002887", "cast_id": 18, "profile_path": "/b6lvtpkTRHHcv4YMW3FnGRtyXJ4.jpg", "order": 8}, {"name": "Jody Racicot", "character": "Kells", "id": 33339, "credit_id": "54d64c899251416b9f0024d2", "cast_id": 19, "profile_path": "/aayVafgphvhN4aHOBVxA6sI88t6.jpg", "order": 9}, {"name": "Jody Racicot", "character": "Vic", "id": 33339, "credit_id": "54d64ca89251417160002726", "cast_id": 20, "profile_path": "/aayVafgphvhN4aHOBVxA6sI88t6.jpg", "order": 10}, {"name": "Scott Wickware", "character": "CSA Agent Wallace", "id": 166510, "credit_id": "54d64cb59251416b9f0024d7", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Christian Potenza", "character": "CSA Agent Joel", "id": 1212946, "credit_id": "54d64cc8c3a3683b89002387", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Karen Glave", "character": "CSA Agent Randa", "id": 79403, "credit_id": "54d64cd3c3a368439a00238b", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Scott Yaphe", "character": "CSA Agent Gabe", "id": 70445, "credit_id": "54d64cdf925141758c0022f9", "cast_id": 24, "profile_path": null, "order": 14}], "directors": [{"name": "Kevin Donovan", "department": "Directing", "job": "Director", "credit_id": "52fe43b49251416c7501ad61", "profile_path": "/juJfwfECTqdYrw7Dcv7Z0pwYNXc.jpg", "id": 66654}], "vote_average": 5.5, "runtime": 98}, "7288": {"poster_path": "/rFtYcCd21ML6s0EuGMEuojFvz3B.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 19322135, "overview": "When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!", "video": false, "id": 7288, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Duplex", "tagline": "", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0266489", "adult": false, "backdrop_path": "/460905or2cCiaG93csoIUBBMwYq.jpg", "production_companies": [{"name": "Miramax Films", "id": 14}, {"name": "Flower Films", "id": 2214}], "release_date": "2003-09-26", "popularity": 0.600448016882684, "original_title": "Duplex", "budget": 40000000, "cast": [{"name": "Ben Stiller", "character": "Alex Rose", "id": 7399, "credit_id": "52fe4477c3a36847f809797d", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 0}, {"name": "Drew Barrymore", "character": "Nancy Kendricks", "id": 69597, "credit_id": "52fe4477c3a36847f8097981", "cast_id": 2, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 1}, {"name": "Eileen Essell", "character": "Mrs. Connelly", "id": 52313, "credit_id": "52fe4477c3a36847f8097985", "cast_id": 3, "profile_path": "/lEMcgUXHVt5tVpMuXBgC1QZ41QW.jpg", "order": 2}, {"name": "Amber Valletta", "character": "C\u00e9line", "id": 38425, "credit_id": "52fe4477c3a36847f8097995", "cast_id": 6, "profile_path": "/339jYuXYKYQnz2NlsADDNY5tRn1.jpg", "order": 3}, {"name": "Justin Theroux", "character": "Coop", "id": 15009, "credit_id": "52fe4477c3a36847f8097999", "cast_id": 7, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 4}, {"name": "Swoosie Kurtz", "character": "Jean", "id": 12967, "credit_id": "52fe4477c3a36847f809799d", "cast_id": 8, "profile_path": "/vMZajDmqbbfzSw6jxgAYIf3CrJm.jpg", "order": 5}], "directors": [{"name": "Danny DeVito", "department": "Directing", "job": "Director", "credit_id": "52fe4477c3a36847f809798b", "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "id": 518}], "vote_average": 5.9, "runtime": 89}, "31867": {"poster_path": "/jAFLg9P6f59JtSNe2PkGwwwKssf.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18409891, "overview": "In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.", "video": false, "id": 31867, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Repo Men", "tagline": "For a price, any organ in your body can be replaced. But it can also be repossessed.", "vote_count": 212, "homepage": "http://www.repomenarecoming.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1053424", "adult": false, "backdrop_path": "/q5LRhDbHCLGzbQoakyjozXhIsPx.jpg", "production_companies": [{"name": "Relativity Media", "id": 7295}, {"name": "Stuber Productions", "id": 4403}, {"name": "Dentsu", "id": 6452}, {"name": "Universal Pictures", "id": 33}], "release_date": "2010-03-18", "popularity": 0.662051818748462, "original_title": "Repo Men", "budget": 32000000, "cast": [{"name": "Jude Law", "character": "Remy", "id": 9642, "credit_id": "52fe44a39251416c91017beb", "cast_id": 1, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 0}, {"name": "Forest Whitaker", "character": "Jake", "id": 2178, "credit_id": "52fe44a39251416c91017bef", "cast_id": 2, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 1}, {"name": "Alice Braga", "character": "Beth", "id": 8602, "credit_id": "52fe44a39251416c91017bf3", "cast_id": 3, "profile_path": "/dVpARhbbj7Ci7KlXgpowVHYhT0g.jpg", "order": 2}, {"name": "Liev Schreiber", "character": "Frank", "id": 23626, "credit_id": "52fe44a39251416c91017bf7", "cast_id": 4, "profile_path": "/qFn3npmqd1qaYOk6yohmi3FbPhc.jpg", "order": 3}, {"name": "Carice van Houten", "character": "Carol", "id": 23229, "credit_id": "52fe44a49251416c91017c43", "cast_id": 17, "profile_path": "/wxPpoC1toWU20OAw8zX0DrLLvtO.jpg", "order": 4}, {"name": "Chandler Canterbury", "character": "Peter", "id": 77334, "credit_id": "52fe44a49251416c91017c47", "cast_id": 18, "profile_path": "/2JAOCvraOPyG6xmwWGvcWRpAPYG.jpg", "order": 5}, {"name": "RZA", "character": "T-Bone", "id": 150, "credit_id": "52fe44a49251416c91017c4b", "cast_id": 19, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 6}, {"name": "Joe Pingue", "character": "Ray", "id": 86237, "credit_id": "52fe44a49251416c91017c4f", "cast_id": 20, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 7}, {"name": "Tiffany Espensen", "character": "Little Alva", "id": 211937, "credit_id": "52fe44a49251416c91017c53", "cast_id": 21, "profile_path": "/g4gRyKc9fqnz0iL8CPcCiJe0nrq.jpg", "order": 8}, {"name": "Liza Lapira", "character": "Alva", "id": 51998, "credit_id": "52fe44a49251416c91017c57", "cast_id": 22, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 9}, {"name": "Yvette Nicole Brown", "character": "Rhodesia", "id": 111513, "credit_id": "52fe44a49251416c91017c5b", "cast_id": 23, "profile_path": "/vdceGnmvEHiW8mjmIqjA9o3Uag7.jpg", "order": 10}, {"name": "Tanya Clarke", "character": "Hooker", "id": 6172, "credit_id": "52fe44a49251416c91017c5f", "cast_id": 24, "profile_path": "/zLpLrVzihPObD6h72KFxTNqdKuq.jpg", "order": 11}, {"name": "John Leguizamo", "character": "Asbury", "id": 5723, "credit_id": "550f1a1d9251416bd1000f27", "cast_id": 28, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 12}], "directors": [{"name": "Miguel Sapochnik", "department": "Directing", "job": "Director", "credit_id": "52fe44a39251416c91017bfd", "profile_path": "/78aERjKz3MGE2eGJXgp92aDQy0D.jpg", "id": 114404}], "vote_average": 6.3, "runtime": 111}, "81025": {"poster_path": "/bzLlr1RhZYQ2uLvNjR9hb5A5kZ9.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 34564651, "overview": "A fisheries expert is approached by a consultant to help realize a sheik's vision of bringing the sport of fly-fishing to the desert and embarks on an upstream journey of faith and fish to prove the impossible possible.", "video": false, "id": 81025, "genres": [{"id": 18, "name": "Drama"}], "title": "Salmon Fishing in the Yemen", "tagline": "Make the Improbable Possible", "vote_count": 101, "homepage": "http://www.fishingintheyemen.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1441952", "adult": false, "backdrop_path": "/4NnYQ4hOWxzqJz2DMUYZLEGKvFc.jpg", "production_companies": [{"name": "Shine Pictures", "id": 16880}, {"name": "UK Film Council", "id": 2452}, {"name": "BBC Films", "id": 288}, {"name": "CBS Films", "id": 5490}, {"name": "Lionsgate", "id": 1632}, {"name": "Kudos Film and Television", "id": 20244}, {"name": "Davis Films", "id": 14175}], "release_date": "2011-09-10", "popularity": 0.483614571558063, "original_title": "Salmon Fishing in the Yemen", "budget": 0, "cast": [{"name": "Emily Blunt", "character": "Harriet Chetwode-Talbot", "id": 5081, "credit_id": "53b5245b0e0a2676d30020ae", "cast_id": 1019, "profile_path": "/A3fiIXjP1xvDn4fESU2Hl7pfmuL.jpg", "order": 0}, {"name": "Ewan McGregor", "character": "Dr. Alfred Jones", "id": 3061, "credit_id": "52fe47f19251416c9107acab", "cast_id": 1008, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Kristin Scott Thomas", "character": "Patricia Maxwell", "id": 5470, "credit_id": "52fe47f19251416c9107acaf", "cast_id": 1009, "profile_path": "/9NuZGaPn3Z1svlbF9ZkdtjgrHZo.jpg", "order": 2}, {"name": "Rachael Stirling", "character": "Mary Jones", "id": 18067, "credit_id": "52fe47f19251416c9107acb3", "cast_id": 1010, "profile_path": "/qG6JbbYVcZQnJhXThyY5U8PMyyb.jpg", "order": 3}, {"name": "Amr Waked", "character": "Sheikh Muhammad", "id": 2960, "credit_id": "52fe47f19251416c9107acb7", "cast_id": 1011, "profile_path": "/am80pES7tfN6RgWqmuQg6e7pkiD.jpg", "order": 4}, {"name": "Catherine Steadman", "character": "Ashley", "id": 443865, "credit_id": "52fe47f19251416c9107acbb", "cast_id": 1012, "profile_path": "/n26Z9iROU8gjtPkOX88XvNxYWqx.jpg", "order": 5}, {"name": "Tom Mison", "character": "Capt. Robert Mayers", "id": 75073, "credit_id": "52fe47f19251416c9107acbf", "cast_id": 1013, "profile_path": "/j7Hs9RStUNrwedqILRMcolI3QZz.jpg", "order": 6}, {"name": "Tom Beard", "character": "Peter Maxwell", "id": 123071, "credit_id": "52fe47f19251416c9107acc3", "cast_id": 1014, "profile_path": null, "order": 7}, {"name": "Jill Baker", "character": "Betty", "id": 37053, "credit_id": "52fe47f19251416c9107acc7", "cast_id": 1015, "profile_path": null, "order": 8}, {"name": "Conleth Hill", "character": "Bernard Sugden", "id": 84423, "credit_id": "52fe47f19251416c9107accb", "cast_id": 1016, "profile_path": "/nxSh1w1MTyAfQ1cCSie3HtjQot6.jpg", "order": 9}, {"name": "Alex Taylor-McDowall", "character": "Edward Maxwell", "id": 1074075, "credit_id": "52fe47f19251416c9107accf", "cast_id": 1017, "profile_path": null, "order": 10}], "directors": [{"name": "Lasse Hallstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe47f19251416c9107acd5", "profile_path": "/xbJQiZNaWbx7PKGpH2sIHHVMYta.jpg", "id": 5306}], "vote_average": 6.4, "runtime": 107}, "121986": {"poster_path": "/mG8gvA3lxxzcJFIAnmMqir6DiWQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Shot in black and white, Frances Ha is about an aspiring dancer (co-writer Greta Gerwig) who moves to New York City and becomes caught up in a whirlwind of flighty fair-weather friends, diminishing fortunes and career setbacks. From director Noah Baumbach (Margot at the Wedding, Greenberg).", "video": false, "id": 121986, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Frances Ha", "tagline": "", "vote_count": 93, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2347569", "adult": false, "backdrop_path": "/gnFUlprcxjDUVONgtMtKZpfMPar.jpg", "production_companies": [{"name": "MFA Filmdistribution", "id": 910}], "release_date": "2012-09-01", "popularity": 0.940057772737921, "original_title": "Frances Ha", "budget": 0, "cast": [{"name": "Greta Gerwig", "character": "Frances", "id": 45400, "credit_id": "52fe4a73c3a368484e153ee3", "cast_id": 4, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 0}, {"name": "Mickey Sumner", "character": "Sophie", "id": 1175394, "credit_id": "52fe4a73c3a368484e153ef3", "cast_id": 7, "profile_path": "/2kA5dkKgymZiaqsjjXroaqJqKeZ.jpg", "order": 1}, {"name": "Adam Driver", "character": "Miles", "id": 1023139, "credit_id": "52fe4a73c3a368484e153ef7", "cast_id": 8, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 2}, {"name": "Michael Zegen", "character": "Benji", "id": 80661, "credit_id": "52fe4a73c3a368484e153efb", "cast_id": 9, "profile_path": "/cTe8u7HNzkQvuaY4spCU3KxKKdl.jpg", "order": 3}, {"name": "Charlotte d'Amboise", "character": "Colleen", "id": 171799, "credit_id": "52fe4a73c3a368484e153eff", "cast_id": 11, "profile_path": null, "order": 4}, {"name": "Josh Hamilton", "character": "Andy", "id": 52419, "credit_id": "52fe4a73c3a368484e153f03", "cast_id": 12, "profile_path": "/uzqTbGXDrVp6j97OkbFBphJUmKf.jpg", "order": 5}, {"name": "Grace Gummer", "character": "Rachel", "id": 504787, "credit_id": "52fe4a73c3a368484e153f07", "cast_id": 13, "profile_path": "/dSATF8DYRGJoSV5jVJ5uSFbmdiI.jpg", "order": 6}], "directors": [{"name": "Noah Baumbach", "department": "Directing", "job": "Director", "credit_id": "52fe4a73c3a368484e153ed3", "profile_path": "/6PuCDnBLURBnLCuat7BfouH9Gus.jpg", "id": 5656}], "vote_average": 7.3, "runtime": 86}, "7299": {"poster_path": "/4bGyKCqV4uYMZYjBJDzoZUMkXL6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5359645, "overview": "In a facist future where all forms of feeling are illegal, a man in charge of enforcing the law rises to overthrow the system.", "video": false, "id": 7299, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Equilibrium", "tagline": "Two men. One battle. No compromise.", "vote_count": 386, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0238380", "adult": false, "backdrop_path": "/tnXrFkhkeBEFXP0tCFGMjw4QN11.jpg", "production_companies": [{"name": "Blue Tulip Productions", "id": 35304}, {"name": "Dimension Films", "id": 7405}], "release_date": "2002-12-06", "popularity": 0.820308941805745, "original_title": "Equilibrium", "budget": 20000000, "cast": [{"name": "Christian Bale", "character": "John Preston", "id": 3894, "credit_id": "52fe4478c3a36847f8097ef1", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Taye Diggs", "character": "Brandt", "id": 17637, "credit_id": "52fe4478c3a36847f8097f19", "cast_id": 11, "profile_path": "/1g1demRAGhwdUpwi8PA0wgFe2IX.jpg", "order": 1}, {"name": "Emily Watson", "character": "Mary O'Brien", "id": 1639, "credit_id": "52fe4478c3a36847f8097f29", "cast_id": 15, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 2}, {"name": "Angus Macfadyen", "character": "Dupont", "id": 2464, "credit_id": "52fe4478c3a36847f8097f0d", "cast_id": 8, "profile_path": "/qTplz89WHXM4dGu0PVSarWEYHcO.jpg", "order": 3}, {"name": "Sean Bean", "character": "Errol Partridge", "id": 48, "credit_id": "52fe4478c3a36847f8097ef9", "cast_id": 3, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Dominic Purcell", "character": "Seamus", "id": 10862, "credit_id": "52fe4478c3a36847f8097ef5", "cast_id": 2, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 5}, {"name": "Christian Kahrmann", "character": "Officer in Charge", "id": 43454, "credit_id": "52fe4478c3a36847f8097efd", "cast_id": 4, "profile_path": "/2JvAMivK1VkjBP2BfEF1CrSUjD2.jpg", "order": 6}, {"name": "Sean Pertwee", "character": "Father", "id": 28848, "credit_id": "52fe4478c3a36847f8097f05", "cast_id": 6, "profile_path": "/mHNlvnrlFvNddFY6isD0S40lAIu.jpg", "order": 7}, {"name": "William Fichtner", "character": "J\u00fcrgen", "id": 886, "credit_id": "52fe4478c3a36847f8097f09", "cast_id": 7, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 8}, {"name": "John Keogh", "character": "Chemist", "id": 49486, "credit_id": "52fe4478c3a36847f8097f01", "cast_id": 5, "profile_path": null, "order": 9}, {"name": "David Barrash", "character": "Evidentiary Storage Officer", "id": 52399, "credit_id": "52fe4478c3a36847f8097f11", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Dirk Martens", "character": "Gate Guard", "id": 52400, "credit_id": "52fe4478c3a36847f8097f15", "cast_id": 10, "profile_path": null, "order": 11}, {"name": "Matthew Harbour", "character": "Robbie Preston", "id": 52401, "credit_id": "52fe4478c3a36847f8097f1d", "cast_id": 12, "profile_path": null, "order": 12}, {"name": "Maria Pia Calzone", "character": "Preston's Wife", "id": 52402, "credit_id": "52fe4478c3a36847f8097f21", "cast_id": 13, "profile_path": "/7EiPEELdXiJXJHW5YmdbdzdQ5bZ.jpg", "order": 13}, {"name": "Emily Siewert", "character": "Lisa Preston", "id": 52403, "credit_id": "52fe4478c3a36847f8097f25", "cast_id": 14, "profile_path": null, "order": 14}], "directors": [{"name": "Kurt Wimmer", "department": "Directing", "job": "Director", "credit_id": "52fe4478c3a36847f8097f2f", "profile_path": "/vO84pZBssHveIxxnh2d2sbNNCLY.jpg", "id": 13927}], "vote_average": 6.8, "runtime": 107}, "7303": {"poster_path": "/3LQ4wKp4lF41yTTRSd6QdgD6eXO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154906693, "overview": "A senatorial candidate falls for a hotel maid, thinking she is a socialite when he sees her trying on a wealthy woman's dress.", "video": false, "id": 7303, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Maid in Manhattan", "tagline": "cupid in central park...", "vote_count": 103, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0252076", "adult": false, "backdrop_path": "/enycOzeSeV4BXbCSQ0ZZN8PXI0n.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Hughes Entertainment", "id": 477}, {"name": "Revolution Studios", "id": 497}, {"name": "Shoelace Productions", "id": 2225}], "release_date": "2002-12-13", "popularity": 0.500050472707918, "original_title": "Maid in Manhattan", "budget": 55000000, "cast": [{"name": "Jennifer Lopez", "character": "Marisa Ventura", "id": 16866, "credit_id": "52fe4479c3a36847f80981a1", "cast_id": 1, "profile_path": "/hNgmDBICnD8La2QN1Pkflh5NJqJ.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Christopher Marshall", "id": 5469, "credit_id": "52fe4479c3a36847f80981a5", "cast_id": 2, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "Natasha Richardson", "character": "Caroline Lane", "id": 20162, "credit_id": "52fe4479c3a36847f80981b5", "cast_id": 5, "profile_path": "/eHBBsS6JLSEoLBi61nYfTs5t55u.jpg", "order": 2}, {"name": "Stanley Tucci", "character": "Jerry Siegel", "id": 2283, "credit_id": "52fe4479c3a36847f80981b9", "cast_id": 6, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 3}, {"name": "Tyler Posey", "character": "Ty Ventura", "id": 53280, "credit_id": "52fe4479c3a36847f80981bd", "cast_id": 7, "profile_path": "/mkh15TUgPCq8AyEm65dno1VPxu0.jpg", "order": 4}, {"name": "Bob Hoskins", "character": "Lionel Bloch", "id": 382, "credit_id": "52fe4479c3a36847f80981c1", "cast_id": 8, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 5}, {"name": "Di Quon", "character": "Lily Kim", "id": 53281, "credit_id": "52fe4479c3a36847f80981c5", "cast_id": 9, "profile_path": "/9WAHACcLROdTOePDHi0hOUd6of0.jpg", "order": 6}, {"name": "Lisa Roberts Gillan", "character": "Cora", "id": 15109, "credit_id": "52fe4479c3a36847f80981c9", "cast_id": 10, "profile_path": "/buXwQSX1Lo802E9CNlfdf8mHPJ8.jpg", "order": 7}, {"name": "Chris Eigeman", "character": "John Bextrum", "id": 78190, "credit_id": "52fe4479c3a36847f80981d3", "cast_id": 12, "profile_path": "/gUPkpZnACB78kRqPnFuQXK0PLjf.jpg", "order": 8}, {"name": "Frances Conroy", "character": "Paula Burns", "id": 4432, "credit_id": "52fe4479c3a36847f80981d7", "cast_id": 13, "profile_path": "/mQsO4JrmYWKTXtFg7u3zhYGiXfM.jpg", "order": 9}], "directors": [{"name": "Wayne Wang", "department": "Directing", "job": "Director", "credit_id": "52fe4479c3a36847f80981ab", "profile_path": "/1eDrTJWdrHVcaV0CWZVi3cOCmg.jpg", "id": 39819}], "vote_average": 5.8, "runtime": 105}, "7304": {"poster_path": "/lTb9focF0HA0JLdj8WVPRHgmEiW.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After a drug-op gone bad, Joey Gazelle is put in charge of disposing the gun that shot a dirty cop. But things goes wrong for Joey after the neighbor kid stole the gun and used it to shoot his abusive father. Now Joey has to find the kid and the gun before the police and the mob find them first.", "video": false, "id": 7304, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Running Scared", "tagline": "Every bullet leaves a trail.", "vote_count": 88, "homepage": "http://www.runningscaredthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0404390", "adult": false, "backdrop_path": "/9rH03A3Twe1rDSizAKngtbvjw3g.jpg", "production_companies": [{"name": "True Grit Productions", "id": 2227}, {"name": "International Production Company", "id": 1507}, {"name": "Pierce/Williams Entertainment", "id": 18621}, {"name": "Zero Gravity Management", "id": 5357}], "release_date": "2006-02-24", "popularity": 0.384232724535562, "original_title": "Running Scared", "budget": 0, "cast": [{"name": "Paul Walker", "character": "Joey Gazelle", "id": 8167, "credit_id": "52fe4479c3a36847f8098217", "cast_id": 1, "profile_path": "/iqvYezRoEY5k8wnlfHriHQfl5dX.jpg", "order": 0}, {"name": "Cameron Bright", "character": "Oleg Yugorsky", "id": 52414, "credit_id": "52fe4479c3a36847f809821b", "cast_id": 2, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 1}, {"name": "Vera Farmiga", "character": "Teresa Gazelle", "id": 21657, "credit_id": "52fe4479c3a36847f809821f", "cast_id": 3, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 2}, {"name": "Chazz Palminteri", "character": "Detective Rydell", "id": 9046, "credit_id": "52fe4479c3a36847f8098223", "cast_id": 4, "profile_path": "/d9VkmkEO50zP0kww6aLLFpu5Ovh.jpg", "order": 3}, {"name": "Karel Roden", "character": "Anzor Yugorsky", "id": 10841, "credit_id": "52fe4479c3a36847f8098227", "cast_id": 5, "profile_path": "/fD8B0QSQReOiJ6nojiulNUZXKCT.jpg", "order": 4}, {"name": "Johnny Messner", "character": "Tommy 'Tombs' Perello", "id": 21798, "credit_id": "52fe4479c3a36847f809822b", "cast_id": 6, "profile_path": "/13nDpBso1wIFMshAFgbmjEM27KK.jpg", "order": 5}, {"name": "Ivana Mili\u010devi\u0107", "character": "Mila Yugorsky", "id": 29930, "credit_id": "52fe4479c3a36847f809822f", "cast_id": 7, "profile_path": "/uWQTBSaZEo5iVIlATgEynocQQsG.jpg", "order": 6}, {"name": "Alex Neuberger", "character": "Nicky Gazelle", "id": 50586, "credit_id": "52fe4479c3a36847f8098233", "cast_id": 8, "profile_path": "/9cgUBGom3nBkS95og3gaaIFvbee.jpg", "order": 7}, {"name": "Michael Cudlitz", "character": "Sal \"Gummy Bear\" Franzone", "id": 52415, "credit_id": "52fe4479c3a36847f8098237", "cast_id": 9, "profile_path": "/BMed7j9hfFNPO7yocDjtQnVgdl.jpg", "order": 8}, {"name": "Bruce Altman", "character": "Dez", "id": 27545, "credit_id": "52fe4479c3a36847f809823b", "cast_id": 10, "profile_path": "/vCArPsn18bhTvBs9OiWyT7SJ6Ro.jpg", "order": 9}, {"name": "Elizabeth Mitchell", "character": "Edele", "id": 31167, "credit_id": "52fe4479c3a36847f809823f", "cast_id": 11, "profile_path": "/rtvX8AN60JS9wMTdC4SZ8HRn33c.jpg", "order": 10}, {"name": "Arthur J. Nascarella", "character": "Frankie Perello (as Arthur Nascarella)", "id": 28033, "credit_id": "52fe4479c3a36847f8098243", "cast_id": 12, "profile_path": "/3hWjDrHfNSS1BxJ5GeIDtxm5975.jpg", "order": 11}, {"name": "John Noble", "character": "Ivan Yugorsky", "id": 1381, "credit_id": "52fe4479c3a36847f8098247", "cast_id": 13, "profile_path": "/4A2mSS9Bea5I2bNur8ZlQZXu0H9.jpg", "order": 12}, {"name": "Idalis DeLe\u00f3n", "character": "Divina", "id": 52416, "credit_id": "52fe4479c3a36847f809824b", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "David Warshofsky", "character": "Lester the Pimp", "id": 37204, "credit_id": "52fe4479c3a36847f809824f", "cast_id": 15, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 14}], "directors": [{"name": "Wayne Kramer", "department": "Directing", "job": "Director", "credit_id": "52fe4479c3a36847f8098255", "profile_path": "/gTUX8TBqihhM9iZYsokdR083AW1.jpg", "id": 19000}], "vote_average": 6.7, "runtime": 122}, "97430": {"poster_path": "/rYnPhYmG4qyWSXRmVUlzmlA0RFg.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15608545, "overview": "In feudal China, a blacksmith who makes weapons for a small village is put in the position where he must defend himself and his fellow villagers.", "video": false, "id": 97430, "genres": [{"id": 28, "name": "Action"}], "title": "The Man with the Iron Fists", "tagline": "You can't spell Kung Fu without F and U!", "vote_count": 150, "homepage": "", "belongs_to_collection": {"backdrop_path": "/nZ5zXUwlkUZVgMHz07e43Nj9Ybs.jpg", "poster_path": "/fthbrFcFkm3YK2tend3F0zAXnvc.jpg", "id": 334356, "name": "The Man with the Iron Fists"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1258972", "adult": false, "backdrop_path": "/tMAQEmldiSl3LYri4vOkqbeZvNL.jpg", "production_companies": [{"name": "Arcade Pictures", "id": 11112}, {"name": "Iron Fists", "id": 11113}], "release_date": "2012-11-02", "popularity": 1.26698078500966, "original_title": "The Man with the Iron Fists", "budget": 15000000, "cast": [{"name": "Russell Crowe", "character": "Jack Knife", "id": 934, "credit_id": "52fe49df9251416c750d628b", "cast_id": 3, "profile_path": "/784nHLVWdenOyVkrZEbNLLOpU5a.jpg", "order": 0}, {"name": "Lucy Liu", "character": "Madame Blossom", "id": 140, "credit_id": "52fe49df9251416c750d6293", "cast_id": 5, "profile_path": "/cOSycUPBNi49YcPHo4Rf7ROHqCC.jpg", "order": 1}, {"name": "Jamie Chung", "character": "Lady Silk", "id": 78324, "credit_id": "52fe49df9251416c750d628f", "cast_id": 4, "profile_path": "/99vO72TfiweEMShZUL9lE7oOhYw.jpg", "order": 2}, {"name": "RZA", "character": "Blacksmith", "id": 150, "credit_id": "52fe49df9251416c750d62f3", "cast_id": 28, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 3}, {"name": "Zhu Zhu", "character": "Chi Chi", "id": 1077356, "credit_id": "52fe49df9251416c750d62c7", "cast_id": 15, "profile_path": "/zJ1lYPLMC53rCZfkFurmmwp9hDC.jpg", "order": 4}, {"name": "Dave Bautista", "character": "Brass Body", "id": 543530, "credit_id": "52fe49df9251416c750d62cb", "cast_id": 16, "profile_path": "/21bkLWMVWkSWy0KHrvJrfZFJ94V.jpg", "order": 5}, {"name": "Cung Le", "character": "Bronze Lion", "id": 116637, "credit_id": "52fe49df9251416c750d62cf", "cast_id": 17, "profile_path": "/hyvxMKFUFQ6RNBHYsYiXJSSAeRX.jpg", "order": 6}, {"name": "Rick Yune", "character": "Zen Yi, The X-Blade", "id": 10883, "credit_id": "52fe49df9251416c750d62d3", "cast_id": 18, "profile_path": "/hIlMvrUSwzOxu7dIoNeVFd2jKUM.jpg", "order": 7}, {"name": "Gordon Liu Chia-Hui", "character": "The Abbott", "id": 240171, "credit_id": "52fe49df9251416c750d630b", "cast_id": 34, "profile_path": "/yTI36A27P9YdFbzrCwjpmEpDGbR.jpg", "order": 8}, {"name": "Mary Christina Brown", "character": "Jasmine", "id": 144503, "credit_id": "52fe49df9251416c750d62d7", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Jin Auyeung", "character": "Chan", "id": 8178, "credit_id": "52fe49df9251416c750d62db", "cast_id": 21, "profile_path": "/kQIGxSJSAcc3zK37zRCGuhxdNmL.jpg", "order": 10}, {"name": "Byron Mann", "character": "Silver Lion", "id": 57748, "credit_id": "52fe49df9251416c750d62df", "cast_id": 22, "profile_path": "/fF6ZlpZ8Jj5iiI5LQjSlaemeNe5.jpg", "order": 11}, {"name": "Andrew Ng", "character": "Senior Monk", "id": 1115351, "credit_id": "52fe49df9251416c750d62e3", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Chen Kuan-Tai", "character": "Gold Lion", "id": 88351, "credit_id": "52fe49df9251416c750d62e7", "cast_id": 25, "profile_path": "/7MLe05oLIhaG7W7iGEFS8v21QHD.jpg", "order": 13}, {"name": "Yoyao Hsueh", "character": "Copper Lion", "id": 965554, "credit_id": "52fe49df9251416c750d62eb", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Telly Liu", "character": "Iron Lion", "id": 1115352, "credit_id": "52fe49df9251416c750d62ef", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Grace Huang", "character": "Gemini Female", "id": 931264, "credit_id": "52fe49df9251416c750d62f7", "cast_id": 29, "profile_path": "/ywiPjy5TbCIuvAXhxlFzkRlPH0S.jpg", "order": 16}, {"name": "Andrew Lin", "character": "Gemini Male", "id": 130562, "credit_id": "52fe49df9251416c750d62fb", "cast_id": 30, "profile_path": "/gFWleSQOWPxFhqirKzUA5GPTasc.jpg", "order": 17}, {"name": "Pam Grier", "character": "Jane", "id": 2230, "credit_id": "52fe49df9251416c750d62ff", "cast_id": 31, "profile_path": "/8NaNIFhKySQ2fkwSlhoOGFgqtHO.jpg", "order": 18}, {"name": "Terence Yin", "character": "Governor", "id": 74196, "credit_id": "52fe49df9251416c750d6303", "cast_id": 32, "profile_path": "/tmkFxlLN2fLMj2qrwzicpgW9lhG.jpg", "order": 19}, {"name": "Daniel Wu", "character": "Poison Dagger", "id": 64436, "credit_id": "52fe49df9251416c750d6307", "cast_id": 33, "profile_path": "/ledeaJcDtVCwGbz6KDcQDSEZ9aa.jpg", "order": 20}], "directors": [{"name": "RZA", "department": "Directing", "job": "Director", "credit_id": "52fe49df9251416c750d629f", "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "id": 150}], "vote_average": 5.3, "runtime": 96}, "8427": {"poster_path": "/6mtUJKyedvQwEKXfWzJt3vtWx1M.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33561137, "overview": "Based on the 1960's television series I Spy. A professional athlete (boxer - Eddie Murphy) has to help a U.S. government agent recover a missing jet.", "video": false, "id": 8427, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "I Spy", "tagline": "Get another field of view", "vote_count": 56, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "hu", "name": "Magyar"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0297181", "adult": false, "backdrop_path": "/olO5ImpkcRykFQ5r7YZzzQ5qh1N.jpg", "production_companies": [{"name": "Colombia Pictures", "id": 4154}], "release_date": "2002-10-31", "popularity": 0.447013302800332, "original_title": "I Spy", "budget": 70000000, "cast": [{"name": "Eddie Murphy", "character": "Kelly Robinson", "id": 776, "credit_id": "52fe44a7c3a36847f80a27e1", "cast_id": 1, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Owen Wilson", "character": "Alexander Scott", "id": 887, "credit_id": "52fe44a7c3a36847f80a27e5", "cast_id": 2, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 1}, {"name": "Famke Janssen", "character": "Rachel", "id": 10696, "credit_id": "52fe44a7c3a36847f80a27e9", "cast_id": 3, "profile_path": "/zGnbcZOdy9ZKk0bamPfzkhqq0Xx.jpg", "order": 2}, {"name": "Keith Dallas", "character": "Lunchbox", "id": 55788, "credit_id": "52fe44a8c3a36847f80a2811", "cast_id": 10, "profile_path": "/4Qhhzd4DxOhKYnhxlrrpCzb5Tio.jpg", "order": 3}, {"name": "Malcolm McDowell", "character": "Gundars", "id": 56890, "credit_id": "52fe44a8c3a36847f80a2815", "cast_id": 11, "profile_path": "/AalAO1Do9egUr07klE78PWw6Hyq.jpg", "order": 4}, {"name": "Tate Taylor", "character": "Lieutenant Percy", "id": 55789, "credit_id": "52fe44a8c3a36847f80a2819", "cast_id": 12, "profile_path": "/7RQEzoruBo10j78z8fH6cIEmjNK.jpg", "order": 5}], "directors": [{"name": "Betty Thomas", "department": "Directing", "job": "Director", "credit_id": "52fe44a7c3a36847f80a27ef", "profile_path": "/rGLAYkddqkTrBCYCwPVnnPxuuAs.jpg", "id": 31024}], "vote_average": 5.3, "runtime": 97}, "15512": {"poster_path": "/8x0WrDcFQDC2eoXJe6iC34wXZE8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 381509870, "overview": "When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...", "video": false, "id": 15512, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Monsters vs Aliens", "tagline": "When aliens attack, monsters fight back.", "vote_count": 470, "homepage": "http://www.monstersvsaliens.com/", "belongs_to_collection": {"backdrop_path": "/uhZJNkODuAYTtsXzKLsao3LbW5H.jpg", "poster_path": "/lDJmx7FeulDKV0d1TnvkJ9tdktp.jpg", "id": 316277, "name": "Monsters vs Aliens Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0892782", "adult": false, "backdrop_path": "/t03uCzKAcYwynMOG4iTcZ75Z23U.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2009-03-26", "popularity": 1.36912486940738, "original_title": "Monsters vs Aliens", "budget": 175000000, "cast": [{"name": "Seth Rogen", "character": "B.O.B. (voice)", "id": 19274, "credit_id": "52fe46639251416c75076a61", "cast_id": 8, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Reese Witherspoon", "character": "Susan Murphy / Ginormica (voice)", "id": 368, "credit_id": "52fe46639251416c75076a65", "cast_id": 9, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 1}, {"name": "Hugh Laurie", "character": "Dr. Cockroach Ph.D. (voice)", "id": 41419, "credit_id": "52fe46639251416c75076a69", "cast_id": 10, "profile_path": "/3qCmEHtq5fBW8dbzsYDSy16Zqb0.jpg", "order": 2}, {"name": "Paul Rudd", "character": "Derek Dietl (voice)", "id": 22226, "credit_id": "52fe46639251416c75076a6d", "cast_id": 11, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 3}, {"name": "Kiefer Sutherland", "character": "General W.R. Monger (voice)", "id": 2628, "credit_id": "52fe46639251416c75076a71", "cast_id": 12, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 4}, {"name": "Rainn Wilson", "character": "Gallaxhar (voice)", "id": 11678, "credit_id": "52fe46639251416c75076a75", "cast_id": 13, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 5}, {"name": "Will Arnett", "character": "The Missing Link (voice)", "id": 21200, "credit_id": "52fe46639251416c75076a79", "cast_id": 14, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 6}, {"name": "Stephen Colbert", "character": "President Hathaway (voice)", "id": 58769, "credit_id": "52fe46639251416c75076a7d", "cast_id": 15, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 7}, {"name": "Jimmy Kimmel", "character": "Insectosaurus (voice)", "id": 78303, "credit_id": "52fe46639251416c75076a81", "cast_id": 16, "profile_path": "/aIGGgXIQcN2UlReL8I5QCJ3AxOn.jpg", "order": 8}, {"name": "Julie White", "character": "Wendy Murphy (voice)", "id": 24305, "credit_id": "52fe46639251416c75076a85", "cast_id": 17, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 9}, {"name": "Jeffrey Tambor", "character": "Carl Murphy (voice)", "id": 4175, "credit_id": "52fe46639251416c75076a89", "cast_id": 18, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 10}, {"name": "Amy Poehler", "character": "Computer (voice)", "id": 56322, "credit_id": "52fe46639251416c75076a8d", "cast_id": 19, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 11}, {"name": "Ed Helms", "character": "News Reporter (voice)", "id": 27105, "credit_id": "52fe46639251416c75076a91", "cast_id": 20, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 12}, {"name": "Ren\u00e9e Zellweger", "character": "Katie (voice)", "id": 9137, "credit_id": "52fe46639251416c75076a95", "cast_id": 21, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 13}, {"name": "Sean Bishop", "character": "Private Bullhorn / Helicopter Pilot / Advisor Ortega (voice)", "id": 64446, "credit_id": "52fe46639251416c75076a99", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Rich Dietl", "character": "Commander / Advisor Smith (voice)", "id": 936666, "credit_id": "52fe46639251416c75076a9d", "cast_id": 24, "profile_path": "/caMJRrUIYD4wHlbwu1NIqZZWGby.jpg", "order": 15}, {"name": "Stephen Kearin", "character": "Technician Bee (voice)", "id": 212439, "credit_id": "52fe46639251416c75076aa1", "cast_id": 25, "profile_path": null, "order": 16}, {"name": "Rob Letterman", "character": "Secret Service Man #1 / Lieutenant (voice)", "id": 65630, "credit_id": "52fe46639251416c75076aa5", "cast_id": 26, "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "order": 17}, {"name": "Tom McGrath", "character": "Wilson (voice)", "id": 18864, "credit_id": "52fe46639251416c75076aa9", "cast_id": 27, "profile_path": "/x522iaZSJUqbPlP3C1PvM5oa0rx.jpg", "order": 18}, {"name": "Chris Miller", "character": "Advisor Cole / Army Commander Jones (voice)", "id": 12098, "credit_id": "52fe46639251416c75076aad", "cast_id": 28, "profile_path": "/3nwwLDbRaTQHp26cuDNw1KRgCZd.jpg", "order": 19}, {"name": "Mike Mitchell", "character": "Advisor Wedgie (voice)", "id": 64151, "credit_id": "52fe46639251416c75076ab1", "cast_id": 29, "profile_path": "/thoCDW89KWWaSYrbvUX0adPcg8S.jpg", "order": 20}, {"name": "Kent Osborne", "character": "Technician Jerry (voice)", "id": 45416, "credit_id": "52fe46639251416c75076ab5", "cast_id": 30, "profile_path": "/iszbGHIPuEMa1YDIiJFST3pZfLy.jpg", "order": 21}, {"name": "Latifa Ouaou", "character": "Advisor Ouaou / Mrs. Ronson / Female Advisor #2 / Panicked Guest (voice)", "id": 936669, "credit_id": "52fe46639251416c75076ab9", "cast_id": 31, "profile_path": "/gJ0ntOXcs0RRdMAM9b5Avo5REga.jpg", "order": 22}, {"name": "Geoffrey Pomeroy", "character": "Soldier #4 / Pilot / Soldier #3 / News Technician (voice)", "id": 1077843, "credit_id": "52fe46639251416c75076abd", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "David P. Smith", "character": "Soldier #1 / Advisor Jackson (voice)", "id": 1077844, "credit_id": "52fe46639251416c75076ac1", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Lisa Stewart", "character": "Bridesmaid Candy (voice)", "id": 11652, "credit_id": "52fe46639251416c75076ac5", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Conrad Vernon", "character": "Advisor Hawk / Advisor Dither / Minister / Secret Service Man #2 / Mama Dietl (voice)", "id": 12080, "credit_id": "52fe46639251416c75076ac9", "cast_id": 35, "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "order": 26}, {"name": "John Krasinski", "character": "Cuthbert (voice)", "id": 17697, "credit_id": "52fe46639251416c75076acd", "cast_id": 36, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 27}], "directors": [{"name": "Rob Letterman", "department": "Directing", "job": "Director", "credit_id": "52fe46639251416c75076a39", "profile_path": "/v2GPTQ41ZqHtML8W1ft3UJej5xA.jpg", "id": 65630}, {"name": "Conrad Vernon", "department": "Directing", "job": "Director", "credit_id": "52fe46639251416c75076a45", "profile_path": "/kSyVrs8NtLoQhfBXFBhnTWzC7Vm.jpg", "id": 12080}], "vote_average": 5.8, "runtime": 94}, "23706": {"poster_path": "/Ap0Lx5mv2tvE3LL8U3VQfCNdziL.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 40105542, "overview": "The story centers on a brilliant crossword constructor (Bullock) who, after one short date, decides that a CNN cameraman (Cooper) is her true love. Because the cameraman's job takes him hither and yon, she crisscrosses the country, turning up at media events as she tries to convince him they are perfect for each other.", "video": false, "id": 23706, "genres": [{"id": 35, "name": "Comedy"}], "title": "All About Steve", "tagline": "A Comedy That Clings", "vote_count": 89, "homepage": "http://www.allaboutstevemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0881891", "adult": false, "backdrop_path": "/2pM9eYWgdFZTbTqIcGFKNk6x7y2.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}, {"name": "Radar Pictures", "id": 14718}, {"name": "Dune Entertainment III", "id": 6332}, {"name": "Fortis Films", "id": 4258}, {"name": "Dune Entertainment", "id": 444}], "release_date": "2009-09-04", "popularity": 0.365171703547665, "original_title": "All About Steve", "budget": 15000000, "cast": [{"name": "Sandra Bullock", "character": "Sandra Horowitz", "id": 18277, "credit_id": "52fe4473c3a368484e023c01", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "Thomas Haden Church", "character": "Hartman", "id": 19159, "credit_id": "52fe4473c3a368484e023c05", "cast_id": 4, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 1}, {"name": "Bradley Cooper", "character": "Steve", "id": 51329, "credit_id": "52fe4473c3a368484e023c09", "cast_id": 5, "profile_path": "/ifjdzZtkR5S5ifSSNQZsVarqFxD.jpg", "order": 2}, {"name": "Ken Jeong", "character": "Angus", "id": 83586, "credit_id": "52fe4473c3a368484e023c0d", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 3}, {"name": "DJ Qualls", "character": "Howard", "id": 132078, "credit_id": "52fe4473c3a368484e023c65", "cast_id": 21, "profile_path": "/foe0XuHIgVHsnrMBYlgYtsR3Z2V.jpg", "order": 4}, {"name": "Howard Hesseman", "character": "Mr. Horowitz", "id": 35516, "credit_id": "52fe4473c3a368484e023c69", "cast_id": 22, "profile_path": "/q0glWtVUVnPoB3AoAMe8SqMRJ5e.jpg", "order": 5}, {"name": "Keith David", "character": "Corbitt", "id": 65827, "credit_id": "52fe4473c3a368484e023c6d", "cast_id": 23, "profile_path": "/nwAC9TgwRkj0Ritq93O8GeublyL.jpg", "order": 6}, {"name": "Beth Grant", "character": "Mrs. Horowitz", "id": 5151, "credit_id": "52fe4473c3a368484e023c71", "cast_id": 24, "profile_path": "/8WYd8N24jUpwk4nKDGPAdt08ltM.jpg", "order": 7}, {"name": "Katy Mixon", "character": "Elizabeth", "id": 59450, "credit_id": "52fe4473c3a368484e023c75", "cast_id": 25, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 8}, {"name": "M.C. Gainey", "character": "Norm the Truck Driver", "id": 22132, "credit_id": "52fe4473c3a368484e023c79", "cast_id": 26, "profile_path": "/icWXPTZlbOytDwMzRLM37TyBcox.jpg", "order": 9}, {"name": "Holmes Osborne", "character": "Soloman", "id": 1578, "credit_id": "52fe4473c3a368484e023c7d", "cast_id": 27, "profile_path": "/gMeHJT6u5VRO8RnAgPuBYrB7Krn.jpg", "order": 10}, {"name": "Delaney Hamilton", "character": "Little Deaf Girl", "id": 967621, "credit_id": "52fe4473c3a368484e023c81", "cast_id": 28, "profile_path": null, "order": 11}, {"name": "Jason Jones", "character": "Vasquez", "id": 185805, "credit_id": "52fe4473c3a368484e023c85", "cast_id": 29, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 12}, {"name": "Carlos G\u00f3mez", "character": "Rescue Supervisor", "id": 115874, "credit_id": "52fe4473c3a368484e023c89", "cast_id": 30, "profile_path": "/nBxwoMv1zrhNXyEjYXbcdmAdmF0.jpg", "order": 13}, {"name": "George Sharperson", "character": "Rescuer", "id": 157058, "credit_id": "52fe4473c3a368484e023c8d", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Luenell", "character": "Protestor Lydia", "id": 6735, "credit_id": "52fe4473c3a368484e023c91", "cast_id": 32, "profile_path": "/qU79UzQhwIgmTCi4HAMj5NOCT4J.jpg", "order": 15}], "directors": [{"name": "Phil Traill", "department": "Directing", "job": "Director", "credit_id": "52fe4473c3a368484e023bfd", "profile_path": null, "id": 78562}], "vote_average": 5.1, "runtime": 99}, "7326": {"poster_path": "/eE64N6PYCSRW2mtQucfK2av5Wk2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 231411584, "overview": "A young girl named Juno gets herself pregnant and tries to stand on her own. She soon learns a few lessons about being grown up.", "video": false, "id": 7326, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Juno", "tagline": "A comedy about growing up... and the bumps along the way.", "vote_count": 618, "homepage": "http://www.foxsearchlight.com/juno/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0467406", "adult": false, "backdrop_path": "/xfcb5Cq5pYrGcAxGjFQqKCPVOK3.jpg", "production_companies": [{"name": "Mandate Pictures", "id": 771}, {"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2007-12-05", "popularity": 1.50294578091807, "original_title": "Juno", "budget": 7500000, "cast": [{"name": "Ellen Page", "character": "Juno MacGuff", "id": 27578, "credit_id": "52fe4479c3a36847f80984c7", "cast_id": 23, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 0}, {"name": "Michael Cera", "character": "Paulie Bleeker", "id": 39995, "credit_id": "52fe4479c3a36847f80984cb", "cast_id": 24, "profile_path": "/kxeJQa9Ae7Ns1J1b5012SMeyXn2.jpg", "order": 1}, {"name": "Jennifer Garner", "character": "Vanessa Loring", "id": 9278, "credit_id": "52fe4479c3a36847f80984cf", "cast_id": 25, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 2}, {"name": "Jason Bateman", "character": "Mark Loring", "id": 23532, "credit_id": "52fe4479c3a36847f80984d3", "cast_id": 26, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 3}, {"name": "Allison Janney", "character": "Bren MacGuff", "id": 19, "credit_id": "52fe4479c3a36847f80984d7", "cast_id": 27, "profile_path": "/qMl84hjDjhfezNhhX7aCC3RtkdI.jpg", "order": 4}, {"name": "J.K. Simmons", "character": "Mac MacGuff", "id": 18999, "credit_id": "52fe4479c3a36847f80984db", "cast_id": 28, "profile_path": "/f2D5wGCqF9t4xsXuaUtIusVKDc1.jpg", "order": 5}, {"name": "Olivia Thirlby", "character": "Leah", "id": 52442, "credit_id": "52fe4479c3a36847f80984df", "cast_id": 29, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 6}, {"name": "Eileen Pedde", "character": "Gerta Rauss", "id": 52457, "credit_id": "52fe4479c3a36847f80984e3", "cast_id": 30, "profile_path": "/pPrvpJqNN0teedsj1A8f93KUmxk.jpg", "order": 7}, {"name": "Rainn Wilson", "character": "Rollo", "id": 11678, "credit_id": "52fe4479c3a36847f80984e7", "cast_id": 31, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 8}, {"name": "Daniel Clark", "character": "Steve Rendazo", "id": 52458, "credit_id": "52fe4479c3a36847f80984eb", "cast_id": 32, "profile_path": "/lF9xP1scm9ZslTPVrhIPRwy6rjy.jpg", "order": 9}, {"name": "Candice Accola", "character": "Girl Lab Partner", "id": 85144, "credit_id": "52fe4479c3a36847f8098501", "cast_id": 36, "profile_path": "/sKcLZRBXWXym0e0u2wXFfembWnl.jpg", "order": 10}, {"name": "Aman Johal", "character": "Vijay", "id": 85616, "credit_id": "52fe4479c3a36847f8098505", "cast_id": 37, "profile_path": "/saVZBiBHJZUzx3SJZNhLmzsEvQp.jpg", "order": 11}, {"name": "Eve Harlow", "character": "Tough Girl", "id": 209723, "credit_id": "52fe4479c3a36847f8098509", "cast_id": 38, "profile_path": "/h3ZqWXWD6EVEzHIm6e9QsNoRL6R.jpg", "order": 12}, {"name": "Valerie Tian", "character": "Su-Chin", "id": 82791, "credit_id": "52fe4479c3a36847f809850d", "cast_id": 39, "profile_path": "/bUlkSkKZqzKvRBKEu3nqj31t63C.jpg", "order": 13}, {"name": "Emily Perkins", "character": "Punk Receptionist", "id": 64914, "credit_id": "52fe4479c3a36847f8098511", "cast_id": 40, "profile_path": "/z9XbUJ83nKoHjvdvbzrQFrQVx7R.jpg", "order": 14}], "directors": [{"name": "Jason Reitman", "department": "Directing", "job": "Director", "credit_id": "52fe4479c3a36847f8098457", "profile_path": "/bW44MnIOve5kqqtcmmbzBre0N7D.jpg", "id": 52443}], "vote_average": 6.6, "runtime": 96}, "48289": {"poster_path": "/mt7PIAIQg2hANBwfCKtDYjutYP1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45636368, "overview": "Rachel Singer is a former Mossad agent who endeavored to capture and bring to trial a notorious Nazi war criminal-the Surgeon of Birkenau-in a secret Israeli mission that ended with his death on the streets of East Berlin. Now, 30 years later, a man claiming to be the doctor has surfaced, and Rachel must go back to Eastern Europe to uncover the truth. Overwhelmed by haunting memories of her younger self and her two fellow agents, the still-celebrated heroine must relive the trauma of those events and confront the debt she has incurred.", "video": false, "id": 48289, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Debt", "tagline": "The secret is only the beginning", "vote_count": 69, "homepage": "http://www.debt-themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1226753", "adult": false, "backdrop_path": "/b7jIi5nqxYrJbUnr6OQrR2YPdZf.jpg", "production_companies": [{"name": "Pioneer Pictures", "id": 9217}, {"name": "Miramax Films", "id": 14}, {"name": "Marv Films", "id": 5374}], "release_date": "2010-09-04", "popularity": 0.789723218089268, "original_title": "The Debt", "budget": 20000000, "cast": [{"name": "Helen Mirren", "character": "Rachel Singer", "id": 15735, "credit_id": "52fe475dc3a36847f8131cb3", "cast_id": 6, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 0}, {"name": "Sam Worthington", "character": "David (Young)", "id": 65731, "credit_id": "52fe475dc3a36847f8131cb7", "cast_id": 7, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Jessica Chastain", "character": "Rachel (Young)", "id": 83002, "credit_id": "52fe475ec3a36847f8131ccb", "cast_id": 11, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 2}, {"name": "Tom Wilkinson", "character": "Stefan", "id": 207, "credit_id": "52fe475ec3a36847f8131cd3", "cast_id": 13, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 3}, {"name": "Ciar\u00e1n Hinds", "character": "David", "id": 8785, "credit_id": "52fe475ec3a36847f8131cbb", "cast_id": 8, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 4}, {"name": "Marton Csokas", "character": "Stefan (Young)", "id": 20982, "credit_id": "52fe475ec3a36847f8131ccf", "cast_id": 12, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 5}, {"name": "Jesper Christensen", "character": "Vogel", "id": 2244, "credit_id": "52fe475ec3a36847f8131cd7", "cast_id": 14, "profile_path": "/fnE1D2BtNex0bUZE4DdxAsju0YR.jpg", "order": 6}, {"name": "Adar Beck", "character": "Politicians Wife", "id": 105235, "credit_id": "52fe475ec3a36847f8131cdb", "cast_id": 15, "profile_path": "/rGUVixlx2rUz1xbmElZ4nNEFKuR.jpg", "order": 7}, {"name": "Romi Aboulafia", "character": "Sarah", "id": 140196, "credit_id": "52fe475ec3a36847f8131cdf", "cast_id": 16, "profile_path": "/hrzhtwOcfIBzru9HjicRVezbdsJ.jpg", "order": 8}], "directors": [{"name": "John Madden", "department": "Directing", "job": "Director", "credit_id": "52fe475dc3a36847f8131c9d", "profile_path": "/8HPERxuUmp44PJcwbweQfICo149.jpg", "id": 18844}], "vote_average": 6.2, "runtime": 113}, "51739": {"poster_path": "/A4w9oSNQUwtkaucy3K7LbSngKrk.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}], "revenue": 148202743, "overview": "14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items \"borrowed\" from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.", "video": false, "id": 51739, "genres": [{"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "The Secret World of Arrietty", "tagline": "Do not be seen by humans. That's been the law of children of the underfloor.", "vote_count": 214, "homepage": "http://disney.go.com/official-sites/arrietty/index", "belongs_to_collection": null, "original_language": "ja", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1568921", "adult": false, "backdrop_path": "/7UfW01brClXNFNNMCwjbuISbVEO.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Toho Company", "id": 882}, {"name": "Dentsu", "id": 6452}, {"name": "Studio Ghibli", "id": 10342}, {"name": "Buena Vista Home Entertainment", "id": 11200}, {"name": "Hakuhodo DY Media Partners", "id": 11846}, {"name": "Mitsubishi Shoji", "id": 20191}, {"name": "Nippon Television Network (NTV)", "id": 20192}, {"name": "Walt Disney Company", "id": 20193}], "release_date": "2010-07-16", "popularity": 1.11105538251871, "original_title": "Kari-gurashi no Arietti", "budget": 37000000, "cast": [{"name": "Mirai Shida", "character": "Arrietty", "id": 227611, "credit_id": "52fe4801c3a36847f8153cc1", "cast_id": 1003, "profile_path": "/pCS5YQSbXsLmxdPVoD8ngyAMkNl.jpg", "order": 0}, {"name": "Ryunosuke Kamiki", "character": "Sh\u00f4", "id": 225730, "credit_id": "52fe4801c3a36847f8153cc5", "cast_id": 1004, "profile_path": "/4YtBdxJ7nTv6CuMvxIA6skfqczn.jpg", "order": 1}, {"name": "Tomokazu Miura", "character": "Pod", "id": 33134, "credit_id": "52fe4801c3a36847f8153cc9", "cast_id": 1005, "profile_path": "/lAO4PsJOPMYH08KIe8FEWaFtWyP.jpg", "order": 2}, {"name": "Tatsuya Fujiwara", "character": "Spiller", "id": 31078, "credit_id": "52fe4801c3a36847f8153ccd", "cast_id": 1006, "profile_path": "/xPFYGeg1tE4e21AnQGuwbbHNXgB.jpg", "order": 3}, {"name": "Shinobu \u014ctake", "character": "Homily", "id": 548756, "credit_id": "52fe4801c3a36847f8153ce3", "cast_id": 1010, "profile_path": "/fYFNo1guAkAXHcRdvnOZwoeo9YF.jpg", "order": 4}, {"name": "Keiko Takeshita", "character": "Sadako Maki", "id": 548758, "credit_id": "52fe4801c3a36847f8153ce7", "cast_id": 1011, "profile_path": null, "order": 5}, {"name": "Kirin Kiki", "character": "Haru", "id": 43663, "credit_id": "52fe4801c3a36847f8153ceb", "cast_id": 1012, "profile_path": "/coAuKp7a67X44gyqJwVYTK4urVk.jpg", "order": 6}, {"name": "Saoirse Ronan", "character": "Arrietty (voice: UK version)", "id": 36592, "credit_id": "52fe4801c3a36847f8153cef", "cast_id": 1013, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 7}, {"name": "Tom Holland", "character": "Sh\u00f4 (voice: UK version)", "id": 1136406, "credit_id": "52fe4802c3a36847f8153cf3", "cast_id": 1014, "profile_path": "/mQtbyKrEjSJsqIXwChwSsZhcnKl.jpg", "order": 8}, {"name": "Luke Allen-Gale", "character": "Spiller (voice: UK version)", "id": 523533, "credit_id": "52fe4802c3a36847f8153cf7", "cast_id": 1015, "profile_path": "/yBYdPWM7AXEVj6XP0KfJ1uk4ZQa.jpg", "order": 9}, {"name": "Olivia Colman", "character": "Homily (voice: UK version)", "id": 39187, "credit_id": "52fe4802c3a36847f8153cfb", "cast_id": 1016, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 10}, {"name": "Mark Strong", "character": "Pod (voice: UK version)", "id": 2983, "credit_id": "52fe4802c3a36847f8153cff", "cast_id": 1017, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 11}, {"name": "Phyllida Law", "character": "Sadako (voice: UK version)", "id": 17787, "credit_id": "52fe4802c3a36847f8153d03", "cast_id": 1018, "profile_path": "/fUQ58cJIqn9KODMyMqGfQe2MTiw.jpg", "order": 12}, {"name": "Geraldine McEwan", "character": "Haru (voice: UK version)", "id": 8326, "credit_id": "52fe4802c3a36847f8153d07", "cast_id": 1019, "profile_path": "/99RxYdI81YBS6sZO3AW6rtYlmfH.jpg", "order": 13}, {"name": "Bridgit Mendler", "character": "Arrietty (US version)", "id": 85176, "credit_id": "52fe4802c3a36847f8153d0b", "cast_id": 1020, "profile_path": "/ckfgebXa5RH6gniWiESgwDKEvIx.jpg", "order": 14}, {"name": "David Henrie", "character": "Shawn (US version)", "id": 95136, "credit_id": "52fe4802c3a36847f8153d0f", "cast_id": 1021, "profile_path": "/yzD9H0890KvgsrSVY2dD1OU1gDS.jpg", "order": 15}, {"name": "Amy Poehler", "character": "Homily (US version)", "id": 56322, "credit_id": "52fe4802c3a36847f8153d13", "cast_id": 1022, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 16}, {"name": "Will Arnett", "character": "Pod (US version)", "id": 21200, "credit_id": "52fe4802c3a36847f8153d17", "cast_id": 1023, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 17}, {"name": "Mois\u00e9s Arias", "character": "Spiller (US version)", "id": 57412, "credit_id": "52fe4802c3a36847f8153d1b", "cast_id": 1024, "profile_path": "/zjobyq05Lejhmq53yL4doWc5sxu.jpg", "order": 18}, {"name": "Carol Burnett", "character": "Hara (US version)", "id": 14837, "credit_id": "52fe4802c3a36847f8153d1f", "cast_id": 1025, "profile_path": "/uUN23A8WtaLcItllwFADuyqF8Ci.jpg", "order": 19}], "directors": [{"name": "Hiromasa Yonebayashi", "department": "Directing", "job": "Director", "credit_id": "52fe4801c3a36847f8153cb1", "profile_path": "/wmHPe8gTwjXYfnIBmMVEpA6DVyz.jpg", "id": 144476}], "vote_average": 7.0, "runtime": 94}, "64678": {"poster_path": "/uuf5YRJ46zktEXmxAW99ElpYhcK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1406224, "overview": "George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.", "video": false, "id": 64678, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Art of Getting By", "tagline": "The toughest lesson is love.", "vote_count": 86, "homepage": "http://www.foxsearchlight.com/theartofgettingby/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1645080", "adult": false, "backdrop_path": "/hJxUb5YljPWhoJPoQyctlMxxNS4.jpg", "production_companies": [{"name": "Goldcrest Films International", "id": 500}, {"name": "Atlantic Pictures", "id": 5387}, {"name": "Gigi Productions", "id": 7499}], "release_date": "2011-06-17", "popularity": 0.444097230420349, "original_title": "The Art of Getting By", "budget": 0, "cast": [{"name": "Freddie Highmore", "character": "George Zinavoy", "id": 1281, "credit_id": "52fe46e3c3a368484e0a96cd", "cast_id": 2, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Emma Roberts", "character": "Sally Howe", "id": 34847, "credit_id": "52fe46e3c3a368484e0a96d1", "cast_id": 3, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 1}, {"name": "Michael Angarano", "character": "Dustin", "id": 11665, "credit_id": "52fe46e3c3a368484e0a96d5", "cast_id": 4, "profile_path": "/zNoj0cJHoD8RPUDOgTpVgJ0KcXM.jpg", "order": 2}, {"name": "Elizabeth Reaser", "character": "Charlotte Howe", "id": 53755, "credit_id": "52fe46e3c3a368484e0a96d9", "cast_id": 5, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 3}, {"name": "Alicia Silverstone", "character": "Ms. Herman", "id": 5588, "credit_id": "54f3d38e925141799d000d01", "cast_id": 14, "profile_path": "/o72bbDIVcCam6HK1sYDav7DoYUe.jpg", "order": 4}], "directors": [{"name": "Gavin Wiesen", "department": "Directing", "job": "Director", "credit_id": "52fe46e3c3a368484e0a96c9", "profile_path": "/b6rlzYdkS5SBmfFRT1mxb3PCzJt.jpg", "id": 119417}], "vote_average": 6.3, "runtime": 83}, "57201": {"poster_path": "/b4vil5ueYJNBNypHmo1tpuevh4z.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 89289910, "overview": "The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.", "video": false, "id": 57201, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 37, "name": "Western"}], "title": "The Lone Ranger", "tagline": "The Legend Returns", "vote_count": 944, "homepage": "http://disney.go.com/the-lone-ranger/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1210819", "adult": false, "backdrop_path": "/sgcgfrlOOB6lVXbfl75YTszF4jI.jpg", "production_companies": [{"name": "Silver Bullet Productions (II)", "id": 37380}, {"name": "Walt Disney Pictures", "id": 2}, {"name": "Jerry Bruckheimer Films", "id": 130}, {"name": "Blind Wink Productions", "id": 37381}, {"name": "Infinitum Nihil", "id": 2691}, {"name": "Classic Media", "id": 37382}], "release_date": "2013-07-03", "popularity": 1.06065984509728, "original_title": "The Lone Ranger", "budget": 255000000, "cast": [{"name": "Johnny Depp", "character": "Tonto", "id": 85, "credit_id": "52fe4928c3a36847f818be99", "cast_id": 4, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 0}, {"name": "Armie Hammer", "character": "John Reid / The Lone Ranger", "id": 53807, "credit_id": "52fe4928c3a36847f818be9d", "cast_id": 5, "profile_path": "/bqzKfZJdchWCgB3mZ7WjYE6lyar.jpg", "order": 1}, {"name": "William Fichtner", "character": "Butch Cavendish", "id": 886, "credit_id": "52fe4928c3a36847f818bead", "cast_id": 9, "profile_path": "/oIGjbztWvTqn4tnolW9rDCjpgxu.jpg", "order": 2}, {"name": "James Badge Dale", "character": "Dan Reid", "id": 18473, "credit_id": "52fe4928c3a36847f818bea1", "cast_id": 6, "profile_path": "/dtv82z6uNuMkY65KcjD1TsTu4gP.jpg", "order": 3}, {"name": "Tom Wilkinson", "character": "Latham Cole", "id": 207, "credit_id": "52fe4928c3a36847f818bea5", "cast_id": 7, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 4}, {"name": "Ruth Wilson", "character": "Rebecca Reid", "id": 47720, "credit_id": "52fe4928c3a36847f818bebd", "cast_id": 13, "profile_path": "/44YvrrZkQkAcEDNRko6PPRgmv46.jpg", "order": 5}, {"name": "Helena Bonham Carter", "character": "Red", "id": 1283, "credit_id": "52fe4928c3a36847f818bea9", "cast_id": 8, "profile_path": "/y09R1VSKmjO43PLocRMZQ9vJihh.jpg", "order": 6}, {"name": "Barry Pepper", "character": "Captain Jay Fuller", "id": 12834, "credit_id": "52fe4928c3a36847f818beb1", "cast_id": 10, "profile_path": "/xLVueyLs2MERkS9RxERa3VCn95s.jpg", "order": 7}, {"name": "James Frain", "character": "Barret", "id": 22063, "credit_id": "52fe4928c3a36847f818beb5", "cast_id": 11, "profile_path": "/eD8JioHl7dIsQOaBrubT7jMqZJV.jpg", "order": 8}, {"name": "Mason Cook", "character": "Will", "id": 583040, "credit_id": "52fe4928c3a36847f818beb9", "cast_id": 12, "profile_path": "/19XPc3ggqJSsh5k7oYyncWGrxVz.jpg", "order": 9}, {"name": "Matt O'Leary", "character": "Skinny", "id": 71467, "credit_id": "52fe4928c3a36847f818bec1", "cast_id": 14, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 10}, {"name": "Leon Rippy", "character": "Collins", "id": 15374, "credit_id": "52fe4928c3a36847f818bec5", "cast_id": 15, "profile_path": "/o0mQPjR67UJzzKbm3nVdOj7fdVm.jpg", "order": 11}, {"name": "Harry Treadaway", "character": "Frank", "id": 45051, "credit_id": "52fe4928c3a36847f818bec9", "cast_id": 17, "profile_path": "/bteYHINCsRoIN9IhI1HbLd9TxTw.jpg", "order": 12}, {"name": "Damon Herriman", "character": "Ray", "id": 62752, "credit_id": "52fe4928c3a36847f818becd", "cast_id": 18, "profile_path": "/dbf7CnLNuMl1sCScOD7MllimLMV.jpg", "order": 13}, {"name": "W. Earl Brown", "character": "Stache", "id": 6951, "credit_id": "52fe4928c3a36847f818bed1", "cast_id": 19, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 14}, {"name": "Matthew Page", "character": "Soldier #3", "id": 1094319, "credit_id": "52fe4928c3a36847f818bee7", "cast_id": 25, "profile_path": "/nTAAP1s4Y0e6bW1Vyq9MqzCG95y.jpg", "order": 15}, {"name": "Nick W. Nicholson", "character": "Saloon Guy (uncredited)", "id": 1429470, "credit_id": "54e7e9ac925141117c000454", "cast_id": 42, "profile_path": null, "order": 16}], "directors": [{"name": "Gore Verbinski", "department": "Directing", "job": "Director", "credit_id": "52fe4928c3a36847f818be95", "profile_path": "/bV0rGSPrK4AUvODjB3zMAwDdeIf.jpg", "id": 1704}], "vote_average": 6.0, "runtime": 149}, "113833": {"poster_path": "/fIf4nLpWHK8BsbH76fPgMbLSjuU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The story of the onset of the HIV-AIDS crisis in New York City in the early 1980s, taking an unflinching look at the nation's sexual politics as gay activists and their allies in the medical community fight to expose the truth about the burgeoning epidemic to a city and nation in denial.", "video": false, "id": 113833, "genres": [{"id": 18, "name": "Drama"}], "title": "The Normal Heart", "tagline": "To win a war, You have to start one.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1684226", "adult": false, "backdrop_path": "/i5r9aTDKo1y6paUX1PHsPhZstZk.jpg", "production_companies": [{"name": "Twentieth Century Fox Television", "id": 24245}, {"name": "HBO Films", "id": 7429}, {"name": "Plan B Entertainment", "id": 81}, {"name": "Ryan Murphy Productions", "id": 19328}, {"name": "Blumhouse Productions", "id": 3172}], "release_date": "2014-05-25", "popularity": 1.11339625588563, "original_title": "The Normal Heart", "budget": 0, "cast": [{"name": "Mark Ruffalo", "character": "Ned Weeks", "id": 103, "credit_id": "52fe4b3fc3a36847f81f9f6d", "cast_id": 3, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 0}, {"name": "Jim Parsons", "character": "Tommy Boatwright", "id": 5374, "credit_id": "52fe4b3fc3a36847f81f9f71", "cast_id": 4, "profile_path": "/1te3kk227XLl5HjBc1WaRuoi0xs.jpg", "order": 1}, {"name": "Matt Bomer", "character": "Felix Turner", "id": 66743, "credit_id": "52fe4b3fc3a36847f81f9f75", "cast_id": 5, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 2}, {"name": "Julia Roberts", "character": "Emma Brookner", "id": 1204, "credit_id": "52fe4b3fc3a36847f81f9f79", "cast_id": 6, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 3}, {"name": "Jonathan Groff", "character": "Craig", "id": 221611, "credit_id": "52fe4b3fc3a36847f81f9f8d", "cast_id": 10, "profile_path": "/iGQSz9GIWQ88jS9OZeF78wVwXtR.jpg", "order": 5}, {"name": "Taylor Kitsch", "character": "Bruce Niles", "id": 60900, "credit_id": "538212f50e0a2624b400a8df", "cast_id": 11, "profile_path": "/2ufaXlRimfG1iVeugWHLNo6kEH0.jpg", "order": 6}, {"name": "Alfred Molina", "character": "Ben Weeks", "id": 658, "credit_id": "538213020e0a2624cb00a386", "cast_id": 12, "profile_path": "/uJQVkqEVJGLMaJbwI2tTDlJ9Oo0.jpg", "order": 7}, {"name": "Denis O'Hare", "character": "Hiram Keebler", "id": 81681, "credit_id": "538213120e0a26588c005f93", "cast_id": 13, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 8}, {"name": "Finn Wittrock", "character": "Albert", "id": 168877, "credit_id": "5382131c0e0a2624cb00a38a", "cast_id": 14, "profile_path": "/k7i0CT4Z3z3MzQ53WnDjOB5LqtT.jpg", "order": 9}, {"name": "Remy Auberjonois", "character": "Examining Doctor", "id": 172529, "credit_id": "538213370e0a2624b400a8e9", "cast_id": 15, "profile_path": "/3v1Rx49zP4LTMu8pH7ElN8gj6QA.jpg", "order": 10}, {"name": "Joe Zaso", "character": "Ernesto", "id": 98206, "credit_id": "538388c60e0a2624cb00cb4e", "cast_id": 16, "profile_path": "/e0VmMPEylktZQTUuHbPu9WBpZD5.jpg", "order": 11}, {"name": "BD Wong", "character": "Buzzy", "id": 14592, "credit_id": "53c2ff5c0e0a26157600bb77", "cast_id": 23, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 18}, {"name": "Danielle Ferland", "character": "Estelle", "id": 1161048, "credit_id": "53c2ffa50e0a26157900b857", "cast_id": 24, "profile_path": null, "order": 19}, {"name": "Corey Stoll", "character": "John Bruno", "id": 74541, "credit_id": "53c2ffba0e0a26158900ba27", "cast_id": 25, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 20}, {"name": "Joe Mantello", "character": "Mickey Marcus", "id": 171000, "credit_id": "54edd3319251413ae80015c4", "cast_id": 26, "profile_path": null, "order": 21}], "directors": [{"name": "Ryan Murphy", "department": "Directing", "job": "Director", "credit_id": "52fe4b3fc3a36847f81f9f63", "profile_path": "/2NjTHDZmJ1ApUfkGWDVPDeGWPPx.jpg", "id": 52779}], "vote_average": 7.8, "runtime": 133}, "64682": {"poster_path": "/7hNTazFLpoaDMxXArIz0Td28LQe.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.", "video": false, "id": 64682, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Great Gatsby", "tagline": "Reserving judgments is a matter of infinite hope. ...I come to the admission that it has a limit.", "vote_count": 1168, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1343092", "adult": false, "backdrop_path": "/w8RV2fu8eja5izgTnhaoL2uokqu.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}, {"name": "Village Roadshow Pictures", "id": 79}, {"name": "Spectrum Films", "id": 14604}, {"name": "Red Wagon Entertainment", "id": 14440}, {"name": "Bazmark Films", "id": 240}, {"name": "A&E Television Networks", "id": 11858}], "release_date": "2013-05-10", "popularity": 2.70383317733054, "original_title": "The Great Gatsby", "budget": 120000000, "cast": [{"name": "Leonardo DiCaprio", "character": "Jay Gatsby", "id": 6193, "credit_id": "52fe46e3c3a368484e0a9783", "cast_id": 2, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Tobey Maguire", "character": "Nick Carraway", "id": 2219, "credit_id": "52fe46e3c3a368484e0a978f", "cast_id": 5, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 1}, {"name": "Carey Mulligan", "character": "Daisy Buchanan", "id": 36662, "credit_id": "52fe46e3c3a368484e0a9787", "cast_id": 3, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Tom Buchanan", "id": 33192, "credit_id": "52fe46e3c3a368484e0a979b", "cast_id": 8, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Elizabeth Debicki", "character": "Jordan Baker", "id": 1133349, "credit_id": "52fe46e3c3a368484e0a9793", "cast_id": 6, "profile_path": "/91YdxLkmQMFuCtj8bEK62fOwJx8.jpg", "order": 4}, {"name": "Isla Fisher", "character": "Myrtle Wilson", "id": 52848, "credit_id": "52fe46e3c3a368484e0a978b", "cast_id": 4, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 5}, {"name": "Jason Clarke", "character": "George Wilson", "id": 76512, "credit_id": "52fe46e3c3a368484e0a9797", "cast_id": 7, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 6}, {"name": "Amitabh Bachchan", "character": "Meyer Wolfsheim", "id": 35780, "credit_id": "52fe46e3c3a368484e0a97e5", "cast_id": 22, "profile_path": "/9daoHX8vQrrk2oLQQdrvRV0UlE6.jpg", "order": 7}, {"name": "Callan McAuliffe", "character": "Teen Jay Gatsby", "id": 236851, "credit_id": "52fe46e3c3a368484e0a97b1", "cast_id": 13, "profile_path": "/a4oVlU0LMJjwOjP5a1jHol1Nv5l.jpg", "order": 8}, {"name": "Adelaide Clemens", "character": "Catherine", "id": 205474, "credit_id": "52fe46e3c3a368484e0a97e9", "cast_id": 23, "profile_path": "/mgOHGacftimR5qBXVzaQoMyVoTX.jpg", "order": 9}, {"name": "Steve Bisley", "character": "Dan Cody", "id": 45211, "credit_id": "52fe46e3c3a368484e0a97ed", "cast_id": 24, "profile_path": "/xvGH1V1zAmbyI2aYWoeHIbu0dsU.jpg", "order": 10}, {"name": "Richard Carter", "character": "Herzog", "id": 44838, "credit_id": "52fe46e3c3a368484e0a97f1", "cast_id": 25, "profile_path": "/8Qo8Gp5zwKM82MK0Gh6rF1ullrx.jpg", "order": 11}, {"name": "Vince Colosimo", "character": "Michaelis", "id": 77496, "credit_id": "52fe46e3c3a368484e0a97f5", "cast_id": 26, "profile_path": "/q7sQhwMo5By0WIh8qpwHnzznSzf.jpg", "order": 12}, {"name": "Max Cullen", "character": "Owl Eyes", "id": 38665, "credit_id": "52fe46e3c3a368484e0a97f9", "cast_id": 27, "profile_path": "/ceHlZnHwEDyMZWNT5PhuJJVPZPZ.jpg", "order": 13}, {"name": "Mal Day", "character": "The Boss-Probity Trust", "id": 1272936, "credit_id": "52fe46e3c3a368484e0a97fd", "cast_id": 28, "profile_path": "/mefuqFRe9miStZwMHkgt9o2WZA2.jpg", "order": 14}, {"name": "Charlize Skinner", "character": "Pammy", "id": 1272937, "credit_id": "52fe46e3c3a368484e0a9801", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Brendan Maclean", "character": "Klipspringer", "id": 1272942, "credit_id": "52fe46e3c3a368484e0a9815", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Kate Mulvany", "character": "Mrs. McKee", "id": 123884, "credit_id": "52fe46e3c3a368484e0a9819", "cast_id": 35, "profile_path": "/qGpy9gYMC5NvU1iZMllHRKRaKWh.jpg", "order": 17}, {"name": "Kahlia Greksa", "character": "The Twins", "id": 1433766, "credit_id": "54f32eea9251416b3800409b", "cast_id": 44, "profile_path": "/fVzATX9UeuPmCBLQlgCeZMbpHhY.jpg", "order": 18}, {"name": "Garrett William Fountain", "character": "Barman", "id": 1272938, "credit_id": "52fe46e3c3a368484e0a9805", "cast_id": 30, "profile_path": "/gzH1t4RKKoV7wt6cCy2AxtV1H2q.jpg", "order": 19}, {"name": "David Furlong", "character": "Walter Chase", "id": 1272939, "credit_id": "52fe46e3c3a368484e0a9809", "cast_id": 31, "profile_path": null, "order": 20}, {"name": "Danniel Gill", "character": "Police Commissioner", "id": 1272940, "credit_id": "52fe46e3c3a368484e0a980d", "cast_id": 32, "profile_path": null, "order": 21}, {"name": "Iota", "character": "Trimalchio the Orchestra Leader", "id": 1272941, "credit_id": "52fe46e3c3a368484e0a9811", "cast_id": 33, "profile_path": null, "order": 22}, {"name": "Barry Otto", "character": "Benny McClenahan", "id": 150536, "credit_id": "52fe46e3c3a368484e0a981d", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "John O'Connell", "character": "Newton Orchid", "id": 1243767, "credit_id": "52fe46e3c3a368484e0a9821", "cast_id": 37, "profile_path": null, "order": 24}], "directors": [{"name": "Baz Luhrmann", "department": "Directing", "job": "Director", "credit_id": "52fe46e3c3a368484e0a977f", "profile_path": "/nVDXwNxDpvqJ9R2Nfy6BAc2YQEA.jpg", "id": 6201}], "vote_average": 7.1, "runtime": 143}, "7340": {"poster_path": "/A5qwZ3IGWglRZtiLOOwwLWYqVWk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 33800000, "overview": "Carrie may be ostracized, but the shy teen has the ability to move objects with her mind. So when the high school \"in crowd\" torments her with a sick joke at the prom, she lashes out with devastating -- and deadly -- power.", "video": false, "id": 7340, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Carrie", "tagline": "If you\u2019ve got a taste for terror, take Carrie to the prom.", "vote_count": 174, "homepage": "", "belongs_to_collection": {"backdrop_path": "/zlMsVqzvjVEioMLA7YNFOSV0OTj.jpg", "poster_path": "/5atZnoMxfDtEJbc1XpdYJLRLsRT.jpg", "id": 257053, "name": "Carrie Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0074285", "adult": false, "backdrop_path": "/4eGiNZtn6hMJvXfXuhoGmlJnk6e.jpg", "production_companies": [{"name": "United Artists", "id": 60}], "release_date": "1976-11-03", "popularity": 0.973046531768639, "original_title": "Carrie", "budget": 1800000, "cast": [{"name": "Sissy Spacek", "character": "Carrie White", "id": 5606, "credit_id": "52fe447ac3a36847f80985bd", "cast_id": 1, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 0}, {"name": "Piper Laurie", "character": "Margaret White", "id": 6721, "credit_id": "52fe447ac3a36847f80985c1", "cast_id": 2, "profile_path": "/eKjVK5MQ5RK9XuVLaCC2oYACmbK.jpg", "order": 1}, {"name": "Amy Irving", "character": "Sue Snell", "id": 27563, "credit_id": "52fe447ac3a36847f80985c5", "cast_id": 3, "profile_path": "/7bKYl70P5UmpaoNnlvZD82FLdR.jpg", "order": 2}, {"name": "William Katt", "character": "Tommy Ross", "id": 45415, "credit_id": "52fe447ac3a36847f80985c9", "cast_id": 4, "profile_path": "/8zgHplikymFmzQhOuwYhin6WJv6.jpg", "order": 3}, {"name": "Betty Buckley", "character": "Miss Collins", "id": 52462, "credit_id": "52fe447ac3a36847f80985cd", "cast_id": 5, "profile_path": "/5lt3xmuJOBpAiOyboKJaAurmlCb.jpg", "order": 4}, {"name": "Nancy Allen", "character": "Christine Hargenson", "id": 44038, "credit_id": "52fe447ac3a36847f80985d1", "cast_id": 6, "profile_path": "/qVtateMn0D1t5T6QIbmuSwo8wUu.jpg", "order": 5}, {"name": "John Travolta", "character": "Billy Nolan", "id": 8891, "credit_id": "52fe447ac3a36847f80985d5", "cast_id": 7, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 6}, {"name": "P.J. Soles", "character": "Norma Watson", "id": 15500, "credit_id": "52fe447ac3a36847f80985d9", "cast_id": 8, "profile_path": "/rzPjxFxrTJYtarrBPCw4E21BHBq.jpg", "order": 7}, {"name": "Priscilla Pointer", "character": "Mrs. Eleanor Snell", "id": 11793, "credit_id": "52fe447ac3a36847f80985dd", "cast_id": 9, "profile_path": "/rmT7Qje6YBG180d1hlY6zQpZmfv.jpg", "order": 8}, {"name": "Sydney Lassick", "character": "Mr. Fromm", "id": 7085, "credit_id": "52fe447ac3a36847f80985e1", "cast_id": 10, "profile_path": null, "order": 9}, {"name": "Stefan Gierasch", "character": "Mr. Henry Morton", "id": 52463, "credit_id": "52fe447ac3a36847f80985e5", "cast_id": 11, "profile_path": "/y4w2yNJYdAcaKddQyCYm4qtmLqO.jpg", "order": 10}, {"name": "Michael Talbott", "character": "Freddy DeLois", "id": 16557, "credit_id": "52fe447ac3a36847f80985e9", "cast_id": 12, "profile_path": "/yOlbGF2VDQHZeESRo0gQq0BfU1B.jpg", "order": 11}, {"name": "Doug Cox", "character": "The Beak", "id": 52464, "credit_id": "52fe447ac3a36847f80985ed", "cast_id": 13, "profile_path": null, "order": 12}, {"name": "Harry Gold", "character": "George Dawson", "id": 52465, "credit_id": "52fe447ac3a36847f80985f1", "cast_id": 14, "profile_path": null, "order": 13}, {"name": "Nichelle North", "character": "Frieda Jason", "id": 52466, "credit_id": "52fe447ac3a36847f80985f5", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Cindy Daly", "character": "Cora Wilson", "id": 52467, "credit_id": "52fe447ac3a36847f80985f9", "cast_id": 16, "profile_path": "/guuo8IvbWBrdGMCWr959tlDE8EL.jpg", "order": 15}, {"name": "Deirdre Berthrong", "character": "Rhonda Wilson", "id": 52468, "credit_id": "52fe447ac3a36847f80985fd", "cast_id": 17, "profile_path": null, "order": 16}, {"name": "Anson Downes", "character": "Ernest Peterson", "id": 52469, "credit_id": "52fe447ac3a36847f8098601", "cast_id": 18, "profile_path": null, "order": 17}, {"name": "Rory Stevens", "character": "Kenny", "id": 52470, "credit_id": "52fe447ac3a36847f8098605", "cast_id": 19, "profile_path": null, "order": 18}, {"name": "Edie McClurg", "character": "Helen Shyres", "id": 3202, "credit_id": "52fe447ac3a36847f8098609", "cast_id": 20, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 19}, {"name": "Cameron De Palma", "character": "Bobby Erbeter, the Boy on the Bike", "id": 52471, "credit_id": "52fe447ac3a36847f809860d", "cast_id": 21, "profile_path": null, "order": 20}, {"name": "Mike Towers", "character": "Vance or Towers", "id": 52472, "credit_id": "52fe447ac3a36847f8098611", "cast_id": 22, "profile_path": null, "order": 21}, {"name": "Glen Vance", "character": "Vance or Towers", "id": 52473, "credit_id": "52fe447ac3a36847f8098615", "cast_id": 23, "profile_path": null, "order": 22}], "directors": [{"name": "Brian De Palma", "department": "Directing", "job": "Director", "credit_id": "52fe447ac3a36847f809861b", "profile_path": "/c61HFkgbl61KzvwAvuuROgn7nqv.jpg", "id": 1150}], "vote_average": 6.8, "runtime": 98}, "64685": {"poster_path": "/EEf53z7xAUZzUHA5KVHVVLwgnQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55247881, "overview": "A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.", "video": false, "id": 64685, "genres": [{"id": 18, "name": "Drama"}], "title": "Extremely Loud & Incredibly Close", "tagline": "This is not a story about September 11th, it's a story about every day after.", "vote_count": 227, "homepage": "http://extremelyloudandincrediblyclose.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0477302", "adult": false, "backdrop_path": "/cSaXqhEIAXK6sVKMoGvxuhEYDe4.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Warner Bros.", "id": 6194}, {"name": "Scott Rudin Productions", "id": 258}], "release_date": "2011-12-24", "popularity": 0.897663666143499, "original_title": "Extremely Loud & Incredibly Close", "budget": 40000000, "cast": [{"name": "Thomas Horn", "character": "Oskar Schell", "id": 929136, "credit_id": "52fe46e4c3a368484e0a988f", "cast_id": 11, "profile_path": "/9PHMHBgFZhaMHIgVOdRQ8y06GaA.jpg", "order": 0}, {"name": "Tom Hanks", "character": "Thomas Schell", "id": 31, "credit_id": "52fe46e4c3a368484e0a9869", "cast_id": 1, "profile_path": "/xxPMucou2wRDxLrud8i2D4dsywh.jpg", "order": 1}, {"name": "Sandra Bullock", "character": "Linda Schell", "id": 18277, "credit_id": "52fe46e4c3a368484e0a986d", "cast_id": 2, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 2}, {"name": "John Goodman", "character": "Stan the Doorman", "id": 1230, "credit_id": "52fe46e4c3a368484e0a9871", "cast_id": 3, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 3}, {"name": "Max von Sydow", "character": "The Renter", "id": 2201, "credit_id": "52fe46e4c3a368484e0a988b", "cast_id": 10, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 4}, {"name": "Dennis Hearn", "character": "Minister", "id": 928297, "credit_id": "52fe46e4c3a368484e0a987b", "cast_id": 6, "profile_path": "/97SrjUqpzGXsPwoMRVYi7gO2vd.jpg", "order": 5}, {"name": "Paul Klementowicz", "character": "Homeless Man", "id": 171567, "credit_id": "52fe46e4c3a368484e0a987f", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Julian Tepper", "character": "Deli Waiter", "id": 928929, "credit_id": "52fe46e4c3a368484e0a9883", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Caleb Reynolds", "character": "Schoolboy", "id": 928930, "credit_id": "52fe46e4c3a368484e0a9887", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Zoe Caldwell", "character": "Oskar's Grandmother", "id": 937681, "credit_id": "53a2d42d0e0a26226e00141e", "cast_id": 15, "profile_path": "/wbVtmnOg8n0JWXthhttzdi9kcNt.jpg", "order": 9}, {"name": "Viola Davis", "character": "Abby Black", "id": 19492, "credit_id": "53a2d44d0e0a26227f0014c8", "cast_id": 16, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 10}, {"name": "Jeffrey Wright", "character": "William Black", "id": 2954, "credit_id": "53a2d4600e0a26227c001417", "cast_id": 17, "profile_path": "/wBh9rwK3aRr1hCrSRLxxPHKzGeU.jpg", "order": 11}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9877", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 6.9, "runtime": 129}, "64686": {"poster_path": "/yAZ9AvAwNPvGte6NoAvSXjKbOTG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 150962475, "overview": "Based on the original 1941 movie from Japan, and from ancient Japan\u2019s most enduring tale, the epic 3D fantasy-adventure 47 Ronin is born. Keanu Reeves leads the cast as Kai, an outcast who joins Oishi (Hiroyuki Sanada), the leader of the 47 outcast samurai. Together they seek vengeance upon the treacherous overlord who killed their master and banished their kind. To restore honor to their homeland, the warriors embark upon a quest that challenges them with a series of trials that would destroy ordinary warriors. 47 Ronin is helmed by visionary director Carl Erik Rinsch (The Gift). Inspired by styles as diverse as Miyazaki and Hokusai, Rinsch will bring to life the stunning landscapes and enormous battles that will display the timeless Ronin story to global audiences in a way that\u2019s never been seen before.", "video": false, "id": 64686, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "47 Ronin", "tagline": "For courage. For loyalty. For honour.", "vote_count": 505, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}], "imdb_id": "tt1335975", "adult": false, "backdrop_path": "/slQkkaBHH1K915HtuN89iu0xqOv.jpg", "production_companies": [{"name": "Stuber Productions", "id": 4403}, {"name": "H2F Entertainment", "id": 20851}, {"name": "Mid Atlantic Films", "id": 2735}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2013-12-25", "popularity": 1.79749510261654, "original_title": "47 Ronin", "budget": 175000000, "cast": [{"name": "Keanu Reeves", "character": "Kai", "id": 6384, "credit_id": "52fe46e4c3a368484e0a98cd", "cast_id": 1001, "profile_path": "/id1qIb7cZs2eQno90KsKwG8VLGN.jpg", "order": 0}, {"name": "Hiroyuki Sanada", "character": "Kuranosuke \u00d4ishi", "id": 9195, "credit_id": "52fe46e4c3a368484e0a98d1", "cast_id": 1002, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 1}, {"name": "Kou Shibasaki", "character": "Mika", "id": 58593, "credit_id": "52fe46e4c3a368484e0a98d5", "cast_id": 1003, "profile_path": "/5TWIdBWk1fQeitEjKD10VtaqKfT.jpg", "order": 2}, {"name": "Tadanobu Asano", "character": "Lord Kira", "id": 13275, "credit_id": "52fe46e4c3a368484e0a98d9", "cast_id": 1004, "profile_path": "/zlZsST8s1Apm6D6bCyYeWrCKZCy.jpg", "order": 3}, {"name": "Min Tanaka", "character": "Lord Asano", "id": 136191, "credit_id": "52fe46e4c3a368484e0a98ff", "cast_id": 1015, "profile_path": "/ppKKjWpEJxaCGqoRdpZV3oxKmmc.jpg", "order": 4}, {"name": "Rinko Kikuchi", "character": "Witch", "id": 18054, "credit_id": "52fe46e4c3a368484e0a98dd", "cast_id": 1005, "profile_path": "/lORc0Kwv1pd5LTIrm2xNiqsLy70.jpg", "order": 5}, {"name": "Jin Akanishi", "character": "Chikara", "id": 1253541, "credit_id": "52fe46e4c3a368484e0a9903", "cast_id": 1016, "profile_path": "/tE4pyo307aDLtw22AZlkudyKUC7.jpg", "order": 6}, {"name": "Masayoshi Haneda", "character": "Yasuno", "id": 1095404, "credit_id": "52fe46e4c3a368484e0a9907", "cast_id": 1017, "profile_path": "/dtUmoOUtsxeEbODCXjLILUunLmm.jpg", "order": 7}, {"name": "Hiroshi Sogabe", "character": "Hazama", "id": 1278788, "credit_id": "52fe46e4c3a368484e0a990b", "cast_id": 1018, "profile_path": "/sG9Au7CrYr5n116YqMFAMcAuDbw.jpg", "order": 8}, {"name": "Takato Yonemoto", "character": "Basho", "id": 1278789, "credit_id": "52fe46e4c3a368484e0a990f", "cast_id": 1019, "profile_path": "/fMIoKXFHTrl8yemqBK9u7O555nt.jpg", "order": 9}, {"name": "Sh\u00fb Nakajima", "character": "Horibe", "id": 550560, "credit_id": "54806f68c3a36829b2003104", "cast_id": 1096, "profile_path": null, "order": 10}, {"name": "Hiroshi Yamada", "character": "Hara", "id": 1184036, "credit_id": "53a962a5c3a368707a005de2", "cast_id": 1028, "profile_path": "/cnAXCyAD7ESIzprVRL3ZInutuEx.jpg", "order": 11}, {"name": "Cary-Hiroyuki Tagawa", "character": "Shogun Tsunayoshi", "id": 11398, "credit_id": "54806e7dc3a36829b50030d6", "cast_id": 1092, "profile_path": "/nOtassmEnTXPOTvlSj2kle2xHNC.jpg", "order": 12}, {"name": "Tanroh Ishida", "character": "Shogun's Adjutant", "id": 1380499, "credit_id": "54806ee5c3a36817a5002764", "cast_id": 1093, "profile_path": "/mg9mM1mEKve5CgDCp2seGYMk9Mi.jpg", "order": 13}, {"name": "Yorick van Wageningen", "character": "Kapitan", "id": 31387, "credit_id": "54806f02c3a36829ae00268a", "cast_id": 1094, "profile_path": null, "order": 14}, {"name": "Ron Bottitta", "character": "Narrator", "id": 60602, "credit_id": "54806f2ec3a36829a300296f", "cast_id": 1095, "profile_path": "/9qqT4usrllY5XWONGbDYusnP7yL.jpg", "order": 15}], "directors": [{"name": "Carl Rinsch", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a98c9", "profile_path": null, "id": 239571}], "vote_average": 6.0, "runtime": 118}, "10781": {"poster_path": "/9elCJIG1TOJ0wew3JVx5ZMkHq5w.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "On one last road trip before they're sent to serve in Vietnam, two brothers and their girlfriends get into an accident that calls their local sheriff to the scene. Thus begins a terrifying experience where the teens are taken to a secluded house of horrors, where a young, would-be killer is being nurtured.", "video": false, "id": 10781, "genres": [{"id": 27, "name": "Horror"}], "title": "The Texas Chainsaw Massacre: The Beginning", "tagline": "What you know about fear... doesn't even come close.", "vote_count": 64, "homepage": "", "belongs_to_collection": {"backdrop_path": "/9V5kaGBAjzwHmqvmZuazY9SbZwi.jpg", "poster_path": "/lxYgt4gS4CEvfC2ZCa83IiOsOiu.jpg", "id": 111751, "name": "The Texas Chainsaw Massacre Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0420294", "adult": false, "backdrop_path": "/t48RyM3pxIkbbQifa8PflY2EUIV.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Platinum Dunes", "id": 2481}, {"name": "Next Entertainment", "id": 1633}, {"name": "Vortex/Henkel/Hooper", "id": 23653}], "release_date": "2006-10-06", "popularity": 0.996593411343835, "original_title": "The Texas Chainsaw Massacre: The Beginning", "budget": 16000000, "cast": [{"name": "Jordana Brewster", "character": "Chrissie", "id": 22123, "credit_id": "52fe43b69251416c7501b287", "cast_id": 13, "profile_path": "/dORwXZWWmDgG66I5i2Fnr27g3fO.jpg", "order": 0}, {"name": "Taylor Handley", "character": "Dean", "id": 66741, "credit_id": "52fe43b69251416c7501b28b", "cast_id": 14, "profile_path": "/wVBqW1Rpy7dqdRHv1BSdT2gcSNg.jpg", "order": 1}, {"name": "Diora Baird", "character": "Bailey", "id": 59263, "credit_id": "52fe43b69251416c7501b28f", "cast_id": 15, "profile_path": "/ncrlzonibLOYGjsPkkWaZo8fy8U.jpg", "order": 2}, {"name": "Matt Bomer", "character": "Eric", "id": 66743, "credit_id": "52fe43b69251416c7501b293", "cast_id": 16, "profile_path": "/5MeRAylq6FeVMyay3sjHNTKnljL.jpg", "order": 3}, {"name": "R. Lee Ermey", "character": "Uncle Charlie Hewitt / Sheriff Hoyt", "id": 8655, "credit_id": "52fe43b69251416c7501b297", "cast_id": 17, "profile_path": "/aRuHY9ct7LA4fEv1bdzOlPK1ClW.jpg", "order": 4}, {"name": "Lew Temple", "character": "Sheriff Winston Hoyt", "id": 37027, "credit_id": "52fe43b69251416c7501b29b", "cast_id": 18, "profile_path": "/5GL9xdAijSG11RFmHxBLN6QKyDa.jpg", "order": 5}, {"name": "Andrew Bryniarski", "character": "Thomas Hewitt (Leatherface)", "id": 52366, "credit_id": "52fe43b69251416c7501b29f", "cast_id": 19, "profile_path": "/xt65UCdoAqreMMbHAkw3qOclCN0.jpg", "order": 6}, {"name": "Tim De Zarn", "character": "Slaughterhouse Supervisor", "id": 956719, "credit_id": "52fe43b69251416c7501b2a3", "cast_id": 20, "profile_path": "/bvj6Kaq1VzAEBkqCGVDvOaQKOhi.jpg", "order": 7}, {"name": "Lee Tergesen", "character": "Holden", "id": 6906, "credit_id": "5323ff339251411f85005cce", "cast_id": 21, "profile_path": "/eb2fKDGpVLYJGGuC4SUHRpezP8U.jpg", "order": 8}, {"name": "Cyia Batten", "character": "Alex", "id": 42515, "credit_id": "53e74441c3a36839950013e1", "cast_id": 29, "profile_path": "/w14tg1GarixC9tqqYzTERkroS2P.jpg", "order": 9}, {"name": "Terrence Evans", "character": "Monty Hewitt", "id": 132054, "credit_id": "53e744b2c3a36839950013ef", "cast_id": 30, "profile_path": "/jhEu0HyHPbFh3cbIoWGW95ubEK1.jpg", "order": 10}, {"name": "Marietta Marich", "character": "Luda Mae Hewitt", "id": 985344, "credit_id": "53e744fbc3a3683991001449", "cast_id": 31, "profile_path": "/qov07poVxBvkMYgYlPQF0RliWJn.jpg", "order": 11}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe43b69251416c7501b241", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 5.8, "runtime": 91}, "64688": {"poster_path": "/mH6xazzfGdszadd1Xy9JgdZYvn1.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 53957072, "overview": "In high school, Schmidt was a dork and Jenko was the popular jock. After graduation, both of them joined the police force and ended up as partners riding bicycles in the city park. Since they are young and look like high school students, they are assigned to an undercover unit to infiltrate a drug ring that is supplying high school students synthetic drugs.", "video": false, "id": 64688, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "21 Jump Street", "tagline": "They thought the streets were mean. Then they went back to high school.", "vote_count": 1918, "homepage": "http://www.21jumpstreet-movie.com/", "belongs_to_collection": {"backdrop_path": "/iiAbTNYXpMadPDH4MkjUoJzcGn4.jpg", "poster_path": "/vufY0iuDNXGEdYOgZNcJFAEZeak.jpg", "id": 212562, "name": "Jump Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1232829", "adult": false, "backdrop_path": "/uOpFdld7CIifSEoGuRVgWqaeyFs.jpg", "production_companies": [{"name": "Stephen J. Cannell Productions", "id": 5585}, {"name": "Columbia Pictures", "id": 5}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 8411}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}], "release_date": "2012-03-12", "popularity": 2.58774901726501, "original_title": "21 Jump Street", "budget": 42000000, "cast": [{"name": "Channing Tatum", "character": "Jenko", "id": 38673, "credit_id": "52fe46e4c3a368484e0a9973", "cast_id": 2, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 0}, {"name": "Jonah Hill", "character": "Schmidt", "id": 21007, "credit_id": "52fe46e4c3a368484e0a9977", "cast_id": 3, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 1}, {"name": "Brie Larson", "character": "Molly", "id": 60073, "credit_id": "52fe46e4c3a368484e0a997b", "cast_id": 4, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 2}, {"name": "Ellie Kemper", "character": "Ms. Griggs", "id": 475512, "credit_id": "52fe46e4c3a368484e0a9985", "cast_id": 6, "profile_path": "/tOelDZAM7N3WQwln6KiAlzxgmEK.jpg", "order": 3}, {"name": "Ice Cube", "character": "Capt. Dickson", "id": 9778, "credit_id": "52fe46e4c3a368484e0a9989", "cast_id": 7, "profile_path": "/iG0Nvnql8NpnySQOLQAIOyRl4tR.jpg", "order": 4}, {"name": "Dave Franco", "character": "Eric", "id": 54697, "credit_id": "52fe46e4c3a368484e0a998d", "cast_id": 8, "profile_path": "/sWsW3mFSJzfbMUf43R0J8tY8BeW.jpg", "order": 5}, {"name": "Nick Offerman", "character": "Captain", "id": 17039, "credit_id": "52fe46e4c3a368484e0a9991", "cast_id": 9, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 6}, {"name": "Rob Riggle", "character": "Mr. Walters", "id": 71403, "credit_id": "52fe46e4c3a368484e0a9999", "cast_id": 11, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 8}, {"name": "Johnny Depp", "character": "Tom Hanson (uncredited)", "id": 85, "credit_id": "52fe46e4c3a368484e0a999d", "cast_id": 12, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 9}, {"name": "Jake M. Johnson", "character": "Principal Dadier", "id": 543505, "credit_id": "52fe46e4c3a368484e0a9a0d", "cast_id": 32, "profile_path": "/7X6pb4SDs9RoXi5gI4Nl8ZiPO4l.jpg", "order": 10}, {"name": "Holly Robinson Peete", "character": "Officer Judy Hoffs", "id": 168581, "credit_id": "53a28659c3a368443e000530", "cast_id": 33, "profile_path": "/lcdP7aJNGxvgwB55gjHPdVsnlB7.jpg", "order": 11}, {"name": "Johnny Pemberton", "character": "Delroy", "id": 1060081, "credit_id": "53a28671c3a3683208000c8e", "cast_id": 34, "profile_path": "/lV9UognW1VG8P8nESSrArveBRou.jpg", "order": 12}, {"name": "Caroline Aaron", "character": "Annie Schmidt", "id": 1910, "credit_id": "53a28691c3a3683205000cf5", "cast_id": 35, "profile_path": "/9v9h9bR4CX6MrpZFgEktTHFIlgT.jpg", "order": 13}, {"name": "Joe Chrest", "character": "David Schmidt", "id": 141762, "credit_id": "53a2869ac3a36831f6000cf1", "cast_id": 36, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 14}, {"name": "Dakota Johnson", "character": "Fugazy", "id": 118545, "credit_id": "53a286a4c3a3683205000cf8", "cast_id": 37, "profile_path": "/wwq1Chbr0aNogp0Ktx7deBYIqGl.jpg", "order": 15}, {"name": "Johnny Simmons", "character": "Billiam Willingham", "id": 27104, "credit_id": "53a286b3c3a36831f6000cf4", "cast_id": 38, "profile_path": "/bsmAdQYSWAuy87tcrDaCvmNUNOq.jpg", "order": 16}], "directors": [{"name": "Phil Lord", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9981", "profile_path": "/3xY4veMGydyYHnOG8CjqIg0odi.jpg", "id": 107446}, {"name": "Chris Miller", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a99af", "profile_path": "/tBJhILp15Gvog1qkeTkYhtb7NBW.jpg", "id": 155267}], "vote_average": 6.4, "runtime": 109}, "7345": {"poster_path": "/bFgqkuAFBHNuq0oTtewHwuLVWSO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76181545, "overview": "When Daniel Plainview - a ruthless oil prospector - learns of oil-rich land in California that can be bought cheaply, he moves his operation there and begins manipulating and exploiting the local landowners into selling him their property. Using his young adopted son H.W. to project the image of a caring family man, Plainview gains the cooperation of almost all the locals with lofty promises to build schools and cultivate the land to make their community flourish. Over time, Plainview's gradual accumulation of wealth and power causes his true self to surface, and he begins to slowly alienate himself from everyone in his life.", "video": false, "id": 7345, "genres": [{"id": 18, "name": "Drama"}], "title": "There Will Be Blood", "tagline": "There Will Be Greed. There Will Be Vengeance.", "vote_count": 309, "homepage": "http://www.therewillbeblood.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0469494", "adult": false, "backdrop_path": "/1DSzHQ9jUEjKMXpVeXhC6gDa3IW.jpg", "production_companies": [{"name": "Paramount Vantage", "id": 838}, {"name": "Miramax Films", "id": 14}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "2007-12-28", "popularity": 1.01226308208005, "original_title": "There Will Be Blood", "budget": 25000000, "cast": [{"name": "Daniel Day-Lewis", "character": "Daniel Plainview", "id": 11856, "credit_id": "52fe447bc3a36847f8098a27", "cast_id": 2, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 0}, {"name": "Paul Dano", "character": "Paul Sunday / Eli Sunday", "id": 17142, "credit_id": "52fe447bc3a36847f8098a61", "cast_id": 12, "profile_path": "/qBIvuBoJ1EuBiDQ8NfJp4ljGMvp.jpg", "order": 1}, {"name": "Dillon Freasier", "character": "H. W.", "id": 52564, "credit_id": "52fe447bc3a36847f8098a6d", "cast_id": 15, "profile_path": "/sGjQ2lnfTnu0QrM1tcc98rYUmyB.jpg", "order": 2}, {"name": "Ciar\u00e1n Hinds", "character": "Fletcher", "id": 8785, "credit_id": "52fe447bc3a36847f8098a69", "cast_id": 14, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 3}, {"name": "Kevin J. O'Connor", "character": "Henry", "id": 18916, "credit_id": "52fe447bc3a36847f8098a65", "cast_id": 13, "profile_path": "/1yeYRXpTbDYLMKUNT4hNQJTJsUX.jpg", "order": 4}, {"name": "Hope Elizabeth Reeves", "character": "Elizabeth", "id": 52565, "credit_id": "52fe447bc3a36847f8098a71", "cast_id": 16, "profile_path": null, "order": 5}, {"name": "Colleen Foy", "character": "Mary Sunday", "id": 52566, "credit_id": "52fe447bc3a36847f8098a75", "cast_id": 17, "profile_path": "/vKRbKBw2PzK8hgLBZ11sEOW1P9O.jpg", "order": 6}, {"name": "Barry Del Sherman", "character": "H. B. Ailman", "id": 8214, "credit_id": "52fe447bc3a36847f8098a79", "cast_id": 18, "profile_path": "/8uUOdG0fTnPYNkSgPpQDhzxSrjw.jpg", "order": 7}, {"name": "David Willis", "character": "Abel Sunday", "id": 53668, "credit_id": "52fe447bc3a36847f8098a7d", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Hans Howes", "character": "Mr. Bandy", "id": 53669, "credit_id": "52fe447bc3a36847f8098a81", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Sydney McCallister", "character": "Mary Sunday (Young)", "id": 53670, "credit_id": "52fe447bc3a36847f8098a85", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Paul F. Tompkins", "character": "Prescott", "id": 1219029, "credit_id": "53353aeec3a3682a940044a7", "cast_id": 23, "profile_path": "/io7wjqqVziL3P9Cg9myX46h9lTd.jpg", "order": 11}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe447bc3a36847f8098a5d", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 7.8, "runtime": 158}, "64690": {"poster_path": "/uhDUaZ2wCoRqxkUSXSexmIfQVWQ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 76175166, "overview": "A mysterious Hollywood stuntman who moonlights as a getaway driver seems to be trying to escape his shady past as he falls for his neighbor - whose husband is in prison and who's looking after her child alone. Meanwhile, his garage mechanic boss is trying to set up a race team using gangland money, which implicates our driver as he is to be used as the race team's main driver. Our hero gets more than he bargained for when he meets the man who is married to the woman he loves.", "video": false, "id": 64690, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Drive", "tagline": "There are no clean getaways.", "vote_count": 1103, "homepage": "http://drive.mgfilm.hr", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0780504", "adult": false, "backdrop_path": "/ekLAySalu0CGoGogPWY0BG6uAul.jpg", "production_companies": [{"name": "FilmDistrict", "id": 7263}, {"name": "Bold Films", "id": 2266}, {"name": "Marc Platt Productions", "id": 2527}, {"name": "Odd Lot Entertainment", "id": 3263}, {"name": "Motel Movies", "id": 11337}, {"name": "Newbridge Film Capital", "id": 46625}], "release_date": "2011-09-16", "popularity": 1.3855908162753, "original_title": "Drive", "budget": 15000000, "cast": [{"name": "Ryan Gosling", "character": "Driver", "id": 30614, "credit_id": "52fe46e4c3a368484e0a9b37", "cast_id": 2, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 0}, {"name": "Carey Mulligan", "character": "Irene", "id": 36662, "credit_id": "52fe46e4c3a368484e0a9b3b", "cast_id": 3, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 1}, {"name": "Christina Hendricks", "character": "Blanche", "id": 110014, "credit_id": "52fe46e4c3a368484e0a9b3f", "cast_id": 4, "profile_path": "/d9KRMyCHigiHoDgmi1GX8EbhkOz.jpg", "order": 2}, {"name": "Albert Brooks", "character": "Bernie Rose", "id": 13, "credit_id": "52fe46e4c3a368484e0a9b43", "cast_id": 5, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 3}, {"name": "Bryan Cranston", "character": "Shannon", "id": 17419, "credit_id": "52fe46e4c3a368484e0a9b53", "cast_id": 8, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 4}, {"name": "Ron Perlman", "character": "Nino", "id": 2372, "credit_id": "52fe46e4c3a368484e0a9b57", "cast_id": 9, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 5}, {"name": "Andy San Dimas", "character": "Stripper", "id": 135461, "credit_id": "52fe46e4c3a368484e0a9b5b", "cast_id": 11, "profile_path": "/5yitCsPcNrW71C6jFOIE5keceSi.jpg", "order": 6}, {"name": "Oscar Isaac", "character": "Standard", "id": 25072, "credit_id": "52fe46e4c3a368484e0a9b5f", "cast_id": 12, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 7}, {"name": "Kaden Leos", "character": "Benicio", "id": 972270, "credit_id": "52fe46e4c3a368484e0a9b63", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Jeff Wolfe", "character": "Tan Suit", "id": 51303, "credit_id": "52fe46e4c3a368484e0a9b67", "cast_id": 14, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 9}, {"name": "James Biberi", "character": "Cook", "id": 37156, "credit_id": "52fe46e4c3a368484e0a9b6b", "cast_id": 15, "profile_path": "/vgkESTjzqdFsbkzGhDPcIDEcTAq.jpg", "order": 10}, {"name": "Russ Tamblyn", "character": "Doc", "id": 6725, "credit_id": "52fe46e4c3a368484e0a9b6f", "cast_id": 16, "profile_path": "/gc0wmr0vyqYRhA7piZsqKVvy0uX.jpg", "order": 11}, {"name": "Joe Bucaro III", "character": "Chauffeur", "id": 51302, "credit_id": "52fe46e4c3a368484e0a9b73", "cast_id": 17, "profile_path": "/6hspwgnTwEtz7tkAQQCHLPMAEBS.jpg", "order": 12}, {"name": "Tiara Parker", "character": "Young Woman", "id": 208332, "credit_id": "52fe46e4c3a368484e0a9b77", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Tim Trella", "character": "Hitman #1", "id": 200402, "credit_id": "52fe46e4c3a368484e0a9b7b", "cast_id": 19, "profile_path": null, "order": 14}, {"name": "Jim Hart", "character": "Hitman #2", "id": 286549, "credit_id": "52fe46e4c3a368484e0a9b7f", "cast_id": 20, "profile_path": null, "order": 15}, {"name": "Tina Huang", "character": "Waitress", "id": 89376, "credit_id": "52fe46e4c3a368484e0a9b83", "cast_id": 21, "profile_path": "/88gyrF0i0oY5rrKUhzu2Y0X1ODK.jpg", "order": 16}, {"name": "John Pyper-Ferguson", "character": "Bearded Redneck", "id": 95638, "credit_id": "52fe46e4c3a368484e0a9b87", "cast_id": 22, "profile_path": "/7mjFl2dYKbbDTKQDTe6kyhKEmHa.jpg", "order": 17}], "directors": [{"name": "Nicolas Winding Refn", "department": "Directing", "job": "Director", "credit_id": "52fe46e4c3a368484e0a9b33", "profile_path": "/zirvhM2ZcK1kbxsEMc3rARnBHoX.jpg", "id": 21183}], "vote_average": 7.0, "runtime": 100}, "7347": {"poster_path": "/kZ9HF82Ude7EH2abjQW2JrGwKMr.jpg", "production_countries": [{"iso_3166_1": "BR", "name": "Brazil"}], "revenue": 0, "overview": "In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operations Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.", "video": false, "id": 7347, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Elite Squad", "tagline": "On the streets of Rio only the elite survive.", "vote_count": 152, "homepage": "http://www.tropadeeliteofilme.com.br/", "belongs_to_collection": {"backdrop_path": "/nNUFlXdj8JIV6HnjVS58r0qCvE7.jpg", "poster_path": "/mdB0vaxi8TTnKIOeaYv25vUrkY3.jpg", "id": 119581, "name": "Elite Squad Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0861739", "adult": false, "backdrop_path": "/7hhmSkzktUm5GxuVUWXlJrVx81L.jpg", "production_companies": [{"name": "Universal Pictures do Brasil", "id": 47046}, {"name": "The Weinstein Company", "id": 308}, {"name": "Zazen Produ\u00e7\u00f5es", "id": 2427}, {"name": "Est\u00fadios Mega", "id": 2430}, {"name": "Quanta Centro de Produ\u00e7\u00f5es Cinematogr\u00e1ficas", "id": 2432}, {"name": "Costa Films", "id": 10187}, {"name": "Posto 9", "id": 47043}, {"name": "Feij\u00e3o Filmes", "id": 47044}], "release_date": "2007-10-11", "popularity": 0.315723334852947, "original_title": "Tropa de Elite", "budget": 4000000, "cast": [{"name": "Wagner Moura", "character": "Capit\u00e3o Nascimento", "id": 52583, "credit_id": "52fe447bc3a36847f8098b57", "cast_id": 12, "profile_path": "/bESNWiGHjMhMGoqBMVtbpJBazKx.jpg", "order": 0}, {"name": "Caio Junqueira", "character": "Neto", "id": 52584, "credit_id": "52fe447bc3a36847f8098b5b", "cast_id": 13, "profile_path": "/hz3UzOo0l9YWfqnSeIYaxqEwwkN.jpg", "order": 1}, {"name": "Andr\u00e9 Ramiro", "character": "Andr\u00e9 Matias", "id": 52585, "credit_id": "52fe447bc3a36847f8098b5f", "cast_id": 14, "profile_path": "/qFROuhLJIHPv0tiZ9TXdYZkYOfU.jpg", "order": 2}, {"name": "Milhem Cortaz", "character": "Capitao Fabio", "id": 52586, "credit_id": "52fe447bc3a36847f8098b63", "cast_id": 15, "profile_path": "/7OLA77PUeO38jqbRhpFPzQUankN.jpg", "order": 3}, {"name": "Fernanda Machado", "character": "Maria", "id": 469968, "credit_id": "52fe447bc3a36847f8098b67", "cast_id": 16, "profile_path": "/9Tg1miqbRaOGkekcMvdXcG55mZx.jpg", "order": 4}, {"name": "Maria Ribeiro", "character": "Rosane", "id": 12397, "credit_id": "52fe447bc3a36847f8098b6b", "cast_id": 17, "profile_path": "/vh8e9h0f8AxKwZ01uKp7WWoSGP5.jpg", "order": 5}, {"name": "Fabio Lago", "character": "Baiano", "id": 575447, "credit_id": "52fe447bc3a36847f8098b6f", "cast_id": 18, "profile_path": "/4dcZ77Tzhjq4bEX9PxLzmSKf5UY.jpg", "order": 6}, {"name": "Erick Oliveira", "character": "Marcinho", "id": 1429606, "credit_id": "54e8627d925141117c0010fc", "cast_id": 49, "profile_path": null, "order": 7}, {"name": "Marcelo Escorel", "character": "Coronel Ot\u00e1vio", "id": 1086172, "credit_id": "54e862ae9251412eb1001957", "cast_id": 50, "profile_path": null, "order": 8}, {"name": "Roberta Santiago", "character": "Rose", "id": 1429607, "credit_id": "54e862c89251412eae001995", "cast_id": 51, "profile_path": null, "order": 9}], "directors": [{"name": "Jos\u00e9 Padilha", "department": "Directing", "job": "Director", "credit_id": "52fe447bc3a36847f8098b17", "profile_path": "/856kyjsiBGksnzpNHgxkkcd0TZr.jpg", "id": 52576}], "vote_average": 7.7, "runtime": 115}, "7350": {"poster_path": "/3ktww154vChp5Y1qOrJZFLvqYz8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 175372502, "overview": "Corporate billionaire Edward and working class mechanic Carter have nothing in common except for their terminal illnesses. While sharing a hospital room together, they decide to escape and do all the things they have ever wanted to do before they die according to their \"bucket list\". In the process, both of them heal each other, become unlikely friends, and ultimately find the joy in life.", "video": false, "id": 7350, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Bucket List", "tagline": "When he closed his eyes, his heart was opened", "vote_count": 353, "homepage": "http://thebucketlist.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0825232", "adult": false, "backdrop_path": "/hO0VEdaUtJYPQjFL1xfe242ZQet.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2007-12-24", "popularity": 0.678402092416656, "original_title": "The Bucket List", "budget": 45000000, "cast": [{"name": "Jack Nicholson", "character": "Edward Cole", "id": 514, "credit_id": "52fe447bc3a36847f8098ca9", "cast_id": 12, "profile_path": "/z5kVLyn3sxj0wNRlFgVgT6deeRO.jpg", "order": 0}, {"name": "Morgan Freeman", "character": "Carter Chambers", "id": 192, "credit_id": "52fe447bc3a36847f8098cad", "cast_id": 13, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 1}, {"name": "Sean Hayes", "character": "Thomas", "id": 52601, "credit_id": "52fe447bc3a36847f8098cb1", "cast_id": 14, "profile_path": "/tkJiMSkm2aEsLiSy5HsgEmxINpZ.jpg", "order": 2}, {"name": "Beverly Todd", "character": "Virginia Chambers", "id": 18292, "credit_id": "52fe447bc3a36847f8098cb9", "cast_id": 16, "profile_path": "/zAorVHFs2eP3YQ91pNbDeMwfymi.jpg", "order": 3}, {"name": "Rob Morrow", "character": "Dr. Hollins", "id": 52602, "credit_id": "52fe447bc3a36847f8098cb5", "cast_id": 15, "profile_path": "/pddqfHQ7AV5I2EUIzz32GFp5m5Q.jpg", "order": 4}, {"name": "Alfonso Freeman", "character": "Roger Chambers", "id": 52603, "credit_id": "52fe447bc3a36847f8098cbd", "cast_id": 17, "profile_path": "/5GBwxHB5AuY7bjujZdBhTKOZZvW.jpg", "order": 5}, {"name": "Rowena King", "character": "Angelica", "id": 47669, "credit_id": "52fe447bc3a36847f8098cc1", "cast_id": 18, "profile_path": "/oCb3Pvs2MImZcej54i2gNIpYfAf.jpg", "order": 6}, {"name": "Annton Berry Jr.", "character": "Kai", "id": 1073868, "credit_id": "52fe447bc3a36847f8098cd1", "cast_id": 21, "profile_path": null, "order": 7}, {"name": "Verda Bridges", "character": "Chandra", "id": 167225, "credit_id": "52fe447bc3a36847f8098cd5", "cast_id": 22, "profile_path": null, "order": 8}, {"name": "Destiny Brownridge", "character": "Maya", "id": 1073869, "credit_id": "52fe447bc3a36847f8098cd9", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Brian Copeland", "character": "Lee", "id": 1073870, "credit_id": "52fe447bc3a36847f8098cdd", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Ian Anthony Dale", "character": "Instructor", "id": 123813, "credit_id": "52fe447bc3a36847f8098ce1", "cast_id": 25, "profile_path": "/8lF1E9MNYDXVPUy4YB3In4mi46N.jpg", "order": 11}, {"name": "Jennifer Defrancisco", "character": "Emily", "id": 1073871, "credit_id": "52fe447bc3a36847f8098ce5", "cast_id": 26, "profile_path": "/aNdGT6gCUZKxu0Xn5MZMwQViVSI.jpg", "order": 12}, {"name": "Angela Gardner", "character": "Female Administrator", "id": 200128, "credit_id": "52fe447bc3a36847f8098ce9", "cast_id": 27, "profile_path": "/zYkJoUlE8Y7mxB2ZkS0r2luaiW8.jpg", "order": 13}, {"name": "Noel Gugliemi", "character": "Mechanic", "id": 53252, "credit_id": "52fe447bc3a36847f8098ced", "cast_id": 28, "profile_path": "/mI5urNyZJAzIGxelTjBkm624DkB.jpg", "order": 14}], "directors": [{"name": "Rob Reiner", "department": "Directing", "job": "Director", "credit_id": "52fe447bc3a36847f8098c81", "profile_path": "/xOr2ySS6EfS34xV8aiZIjaec0aV.jpg", "id": 3026}], "vote_average": 6.8, "runtime": 97}, "23742": {"poster_path": "/cSkPYnVsD7MRNXPhkhBv3Mcxx39.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43659236, "overview": "Officers Jimmy Monroe and Paul Hodges have their weapons drawn on a gun-wielding killer. They agree to shoot on three. But, wait, does that mean 1\u20262\u2026 shoot or 1\u20262\u20263\u2026 then shoot? Punches hit hard and laughs hit harder (or is it the other way \u2019round?) when action star Bruce Willis and ace comic Tracy Morgan pair as bickering-but-got-your-back Brooklyn buddy cops. Kevin Smith (Clerks, Chasing Amy) directs the gritty, goofball goings-on as the guys hunt for a stolen 1952 mint condition baseball card (Jimmy needs it to fund his daughter\u2019s wedding), a hunt plunging them into a gunslinging war with a deadly drug ring. Batter up, fans. The boys are ready to take you out to the ol\u2019 brawl game!", "video": false, "id": 23742, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Cop Out", "tagline": "Rock out with your Glock out", "vote_count": 185, "homepage": "http://copoutmovie.warnerbros.com/dvd/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1385867", "adult": false, "backdrop_path": "/3rRAYIwh1FhdijYkSDgPFhQTTI9.jpg", "production_companies": [{"name": "Marc Platt Productions", "id": 2527}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2010-02-26", "popularity": 0.611336313389323, "original_title": "Cop Out", "budget": 30000000, "cast": [{"name": "Bruce Willis", "character": "Jimmy Monroe", "id": 62, "credit_id": "52fe4475c3a368484e0242eb", "cast_id": 4, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Tracy Morgan", "character": "Paul Hodges", "id": 56903, "credit_id": "52fe4475c3a368484e024333", "cast_id": 20, "profile_path": "/wXLPjDsy4SfqghEAJ8wybHh04nU.jpg", "order": 1}, {"name": "Juan Carlos Hern\u00e1ndez", "character": "Raul", "id": 116714, "credit_id": "52fe4475c3a368484e02432f", "cast_id": 19, "profile_path": "/crzCSBiSwdK7X9B0PJFA6NP0y3o.jpg", "order": 2}, {"name": "Seann William Scott", "character": "Dave", "id": 57599, "credit_id": "52fe4475c3a368484e02431f", "cast_id": 14, "profile_path": "/c7iqFLkgNiTMAS9xGw0GlfJcm4H.jpg", "order": 3}, {"name": "Michelle Trachtenberg", "character": "Ava", "id": 49961, "credit_id": "52fe4475c3a368484e024323", "cast_id": 15, "profile_path": "/sD7wmRtYktLMaIyaMCbv3wJRdxA.jpg", "order": 4}, {"name": "Jason Lee", "character": "Roy", "id": 11662, "credit_id": "52fe4475c3a368484e024327", "cast_id": 17, "profile_path": "/67wSoVHxlOqtRhh3KJFBYf2qrDJ.jpg", "order": 5}, {"name": "Kevin Pollak", "character": "Hunsaker", "id": 7166, "credit_id": "52fe4475c3a368484e02432b", "cast_id": 18, "profile_path": "/MczJhI5ustPAypTDBDKmYsfrfy.jpg", "order": 6}, {"name": "Adam Brody", "character": "Barry Mangold", "id": 11702, "credit_id": "52fe4475c3a368484e024337", "cast_id": 21, "profile_path": "/AvUsfTBgu1zUG3LY9PUlQAJzzpO.jpg", "order": 7}, {"name": "Ana de la Reguera", "character": "Gabriela", "id": 57409, "credit_id": "52fe4475c3a368484e02433b", "cast_id": 22, "profile_path": "/lMFcS5MT1NNDo6gSE6h78nkeMmU.jpg", "order": 8}, {"name": "Rashida Jones", "character": "Debbie", "id": 80591, "credit_id": "52fe4475c3a368484e02433f", "cast_id": 23, "profile_path": "/AfzR031nrmKhnsfrU7VDqpG8pQd.jpg", "order": 9}, {"name": "Francie Swift", "character": "Pam", "id": 118043, "credit_id": "531c29a092514177bf0052df", "cast_id": 24, "profile_path": "/r9lffvZJpFGnL6sIw176bXO6aqN.jpg", "order": 10}], "directors": [{"name": "Kevin Smith", "department": "Directing", "job": "Director", "credit_id": "52fe4475c3a368484e0242db", "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "id": 19303}], "vote_average": 5.7, "runtime": 107}, "236735": {"poster_path": "/al2AhNteG93WZgOaygru0Q87wU1.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 5169755, "overview": "The Spanish deep South, 1980. A series of brutal murders of adolescent girls in a remote and forgotten town bring together two disparate characters - both detectives in the homicide division - to investigate the cases. With deep divisions in their ideology, detectives Juan and Pedro must put aside their differences if they are to successfully hunt down a killer who for years has terrorized a community in the shadow of a general disregard for women rooted in a misogynistic past.", "video": false, "id": 236735, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Marshland", "tagline": "", "vote_count": 53, "homepage": "", "belongs_to_collection": null, "original_language": "nl", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt3253930", "adult": false, "backdrop_path": "/aO1Iu69NRy96SiZxuKtHpzLhmCC.jpg", "production_companies": [{"name": "Sacromonte Films", "id": 31899}, {"name": "Atresmedia Cine", "id": 29566}, {"name": "At\u00edpica Films", "id": 7342}], "release_date": "2014-09-25", "popularity": 0.578848274388988, "original_title": "Marshland", "budget": 0, "cast": [{"name": "Ra\u00fal Ar\u00e9valo", "character": "Pedro", "id": 34021, "credit_id": "52fe4e5fc3a36847f828cb1b", "cast_id": 1, "profile_path": "/eFy3FCRCprRsCsaVQ63yrZJsy5W.jpg", "order": 0}, {"name": "Javier Guti\u00e9rrez", "character": "Juan", "id": 19024, "credit_id": "52fe4e5fc3a36847f828cb23", "cast_id": 3, "profile_path": "/qy8qEkPgnTFvdfXG2utW4feOwmF.jpg", "order": 1}, {"name": "Antonio de la Torre", "character": "Rodrigo", "id": 3483, "credit_id": "52fe4e5fc3a36847f828cb1f", "cast_id": 2, "profile_path": "/6gLwqdiKMB2s7ymeRAaHZlvGjvR.jpg", "order": 2}, {"name": "Nerea Barros", "character": "Roc\u00edo", "id": 1071974, "credit_id": "52fe4e5fc3a36847f828cb2b", "cast_id": 5, "profile_path": "/l8HBLMIXSoT9Lv2J6j5fYmuxXET.jpg", "order": 3}, {"name": "Salva Reina", "character": "Jes\u00fas", "id": 1413918, "credit_id": "54b7d49bc3a3686c5f0020c7", "cast_id": 22, "profile_path": "/pJxHxD8BhSzK8S7vUwkBO56SaoQ.jpg", "order": 4}, {"name": "Jes\u00fas Castro", "character": "Quini", "id": 1271594, "credit_id": "52fe4e5fc3a36847f828cb2f", "cast_id": 6, "profile_path": "/pbrNy0DPuueRCrd4dMMFxTPtkR1.jpg", "order": 5}, {"name": "Manolo Solo", "character": "Periodista", "id": 592709, "credit_id": "54b7d4bdc3a3686c610020fa", "cast_id": 23, "profile_path": "/vIYNmEhVT2b1SP9TTrIdyZzkm1N.jpg", "order": 6}, {"name": "Cecilia Villanueva", "character": "Mar\u00eda", "id": 1271595, "credit_id": "52fe4e5fc3a36847f828cb33", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Juan Carlos Villanueva", "character": "Juez Andrade", "id": 1413922, "credit_id": "54b7d534c3a3686c5d0022c3", "cast_id": 28, "profile_path": "/x9GQo1dYMr4ta5IX3DhjQ1CxvR6.jpg", "order": 8}, {"name": "Jes\u00fas Carroza", "character": "", "id": 6534, "credit_id": "52fe4e5fc3a36847f828cb27", "cast_id": 4, "profile_path": "/m06S1sTzcCCoI5g3K0E6WjoPi1n.jpg", "order": 9}, {"name": "Mercedes Le\u00f3n", "character": "", "id": 1410288, "credit_id": "54ad4787925141480b003651", "cast_id": 9, "profile_path": "/3PHpQVERHXy9IoQgKrH2BAVTyka.jpg", "order": 10}, {"name": "Adelfa Calvo", "character": "", "id": 1331728, "credit_id": "54b7d4f1c3a3686c61002100", "cast_id": 24, "profile_path": "/s0RZe0JiIHDiJ9HMYgkszSCKFGs.jpg", "order": 11}, {"name": "Jes\u00fas Ortiz", "character": "", "id": 1413919, "credit_id": "54b7d4ff9251411d770021e8", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Ana Tomeno", "character": "", "id": 1413920, "credit_id": "54b7d50a9251411d6d0022e0", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "\u00c1ngela Vega", "character": "", "id": 1413921, "credit_id": "54b7d510c3a3686c6f0020ed", "cast_id": 27, "profile_path": null, "order": 14}], "directors": [{"name": "Alberto Rodr\u00edguez", "department": "Directing", "job": "Director", "credit_id": "54b7d356c3a3686c6b00286f", "profile_path": "/uFbBK2aCeBBEa6qGzfLEKN5CT82.jpg", "id": 6521}], "vote_average": 7.3, "runtime": 105}, "236737": {"poster_path": "/xoZikQavGhmBegJTD2AY4u3htUU.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}], "revenue": 0, "overview": "Rafael, a Seville citizen who has never left the Spanish region of Andalucia, decides to leave his homeland to follow Amaia, a Basque girl unlike other women he has known.", "video": false, "id": 236737, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Spanish Affair", "tagline": "", "vote_count": 73, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "eu", "name": "euskera"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt2955316", "adult": false, "backdrop_path": "/ohm7LXOufzAktoainDJwKtA4oDX.jpg", "production_companies": [{"name": "Telecinco Cinema", "id": 2674}, {"name": "Lazonafilms", "id": 4601}, {"name": "Kowalski Films", "id": 13287}], "release_date": "2014-03-14", "popularity": 0.337035719657072, "original_title": "Ocho apellidos vascos", "budget": 0, "cast": [{"name": "Clara Lago", "character": "Amaia", "id": 224731, "credit_id": "52fe4e5fc3a36847f828cb5f", "cast_id": 1, "profile_path": "/eO3vaBbQRVKYagr26VINxlisiSS.jpg", "order": 0}, {"name": "Dani Rovira", "character": "Rafa", "id": 1271600, "credit_id": "52fe4e5fc3a36847f828cb67", "cast_id": 3, "profile_path": "/aXoao0AymeLgRe81Nc9Lsu3LUcl.jpg", "order": 1}, {"name": "Karra Elejalde", "character": "Koldo", "id": 24977, "credit_id": "52fe4e5fc3a36847f828cb63", "cast_id": 2, "profile_path": "/zcxUAKrcvCBN2CsDZS0qt52e3GT.jpg", "order": 2}, {"name": "Carmen Machi", "character": "Merche", "id": 102222, "credit_id": "52fe4e5fc3a36847f828cb6b", "cast_id": 4, "profile_path": "/gPT0nnzZ1M7chwt4zaYIfZJUN34.jpg", "order": 3}, {"name": "Alberto L\u00f3pez", "character": "Joaqu\u00edn", "id": 35722, "credit_id": "545e17460e0a261fb6006789", "cast_id": 24, "profile_path": null, "order": 4}, {"name": "Alfonso S\u00e1nchez", "character": "Curro", "id": 1061663, "credit_id": "545e1751c3a368535d0063f8", "cast_id": 25, "profile_path": null, "order": 5}, {"name": "Aitor Mazo", "character": "Padre Inaxio", "id": 1014909, "credit_id": "545e1766c3a3685362005f0e", "cast_id": 26, "profile_path": "/lATPwtP5S7Egwmb8pvJn93BYBlQ.jpg", "order": 6}, {"name": "Abel Mora", "character": "Pedro", "id": 1382984, "credit_id": "545e1778c3a3686cbb001725", "cast_id": 27, "profile_path": null, "order": 7}, {"name": "Aitziber Garmendia", "character": "Iratxe", "id": 1077139, "credit_id": "545e17830e0a26042c006139", "cast_id": 28, "profile_path": null, "order": 8}, {"name": "Miriam Cabeza", "character": "Edurne", "id": 1382985, "credit_id": "545e178cc3a3686cbb00172d", "cast_id": 29, "profile_path": null, "order": 9}, {"name": "Lander Otaola", "character": "", "id": 544008, "credit_id": "545e47cb0e0a261fa6006c82", "cast_id": 34, "profile_path": null, "order": 10}, {"name": "Santi Ugalde", "character": "", "id": 984078, "credit_id": "545e1799c3a36853500058df", "cast_id": 30, "profile_path": null, "order": 11}, {"name": "Itziar Atienza", "character": "", "id": 1104748, "credit_id": "545e17a6c3a368536b005d2d", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Telmo Esnal", "character": "", "id": 1034476, "credit_id": "545e17aec3a368603c0014b6", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "I\u00f1aki Beraetxe", "character": "", "id": 1124052, "credit_id": "545e17c1c3a3686cbb00173c", "cast_id": 33, "profile_path": null, "order": 14}], "directors": [{"name": "Emilio Mart\u00ednez L\u00e1zaro", "department": "Directing", "job": "Director", "credit_id": "52fe4e5fc3a36847f828cb71", "profile_path": "/mmsxJvBgJC2sBHSYXMKnyQIVjtu.jpg", "id": 27449}], "vote_average": 6.8, "runtime": 98}, "7364": {"poster_path": "/xB5JjL6wLzq5goIWTPoJ4tFreL5.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 119269486, "overview": "Scouring the ocean depths for treasure-laden shipwrecks is business as usual for a thrill-seeking underwater adventurer and his wisecracking buddy. But when these two cross paths with a beautiful doctor, they find themselves on the ultimate treasure hunt.", "video": false, "id": 7364, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Sahara", "tagline": "Dirk Pitt. Adventure has a new name.", "vote_count": 114, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt0318649", "adult": false, "backdrop_path": "/8yTDTKaSrSoz944H2ibPEG11JwC.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Bristol Bay Productions", "id": 2233}, {"name": "Baldwin Entertainment Group", "id": 2234}, {"name": "J.K. Livin Productions", "id": 12124}, {"name": "Desertlands Entertainment", "id": 2235}, {"name": "Kanzaman", "id": 4169}, {"name": "Babelsberg Film GmbH", "id": 424}, {"name": "Moguletta", "id": 12125}, {"name": "Sahara Productions", "id": 12126}, {"name": "Mace Neufeld Productions", "id": 2767}], "release_date": "2005-04-08", "popularity": 0.617837490256457, "original_title": "Sahara", "budget": 160000000, "cast": [{"name": "Matthew McConaughey", "character": "Dirk Pitt", "id": 10297, "credit_id": "52fe447cc3a36847f8098e35", "cast_id": 1, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Pen\u00e9lope Cruz", "character": "Eva Rojas", "id": 955, "credit_id": "52fe447cc3a36847f8098e39", "cast_id": 2, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 1}, {"name": "Steve Zahn", "character": "Al Giordino", "id": 18324, "credit_id": "52fe447cc3a36847f8098e3d", "cast_id": 3, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 2}, {"name": "William H. Macy", "character": "Admiral Jim Sandecker", "id": 3905, "credit_id": "52fe447cc3a36847f8098e41", "cast_id": 4, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 3}, {"name": "Lennie James", "character": "General Zateb Kazim", "id": 1120, "credit_id": "52fe447cc3a36847f8098e8d", "cast_id": 17, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 4}, {"name": "Lambert Wilson", "character": "Yves Massarde", "id": 2192, "credit_id": "52fe447cc3a36847f8098e91", "cast_id": 18, "profile_path": "/p4tfJZVGZmc4S22bKCzHaUVUiqa.jpg", "order": 5}, {"name": "Rainn Wilson", "character": "Rudi Gunn", "id": 11678, "credit_id": "52fe447cc3a36847f8098e95", "cast_id": 19, "profile_path": "/Adq8cYhhzmSYRwMWDTc7O53L7FR.jpg", "order": 6}, {"name": "Glynn Turman", "character": "Dr. Frank Hopper", "id": 114674, "credit_id": "52fe447cc3a36847f8098e99", "cast_id": 20, "profile_path": "/yEW4JrFPyTTsoSeDQYwHxBihMuM.jpg", "order": 7}, {"name": "Clint Dyer", "character": "Oshodi", "id": 109383, "credit_id": "52fe447cc3a36847f8098e9d", "cast_id": 21, "profile_path": "/b8ZkBUWWY5IjqnwnbM8U3WiZrG5.jpg", "order": 8}, {"name": "Delroy Lindo", "character": "Carl", "id": 18792, "credit_id": "52fe447cc3a36847f8098f19", "cast_id": 42, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 9}, {"name": "Robert Cavanah", "character": "Captain Tombs", "id": 20522, "credit_id": "52fe447cc3a36847f8098f1d", "cast_id": 43, "profile_path": "/gHuA2uTVZB8prxpzJozwGWli2kI.jpg", "order": 10}, {"name": "Jude Akuwudike", "character": "Imam", "id": 669820, "credit_id": "52fe447cc3a36847f8098f21", "cast_id": 44, "profile_path": null, "order": 11}, {"name": "Mark Aspinall", "character": "Lawyer", "id": 1126783, "credit_id": "52fe447cc3a36847f8098f25", "cast_id": 45, "profile_path": null, "order": 12}, {"name": "Rakie Ayola", "character": "Mrs. Nwokolo", "id": 195575, "credit_id": "52fe447cc3a36847f8098f29", "cast_id": 46, "profile_path": "/vCdshEaPP8lrClphIMwK65Wv2XA.jpg", "order": 13}, {"name": "Christopher Bello", "character": "Train Driver", "id": 177299, "credit_id": "52fe447cc3a36847f8098f2d", "cast_id": 47, "profile_path": null, "order": 14}, {"name": "Patrick Malahide", "character": "Ambassador Polidori", "id": 8979, "credit_id": "54680ed2eaeb8101300006ee", "cast_id": 50, "profile_path": "/pv65v8oEhLo0ibCz1K23UCoKMuS.jpg", "order": 15}], "directors": [{"name": "Breck Eisner", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f8098e47", "profile_path": "/cT090Hbxtk6xKEoWA516thQcHhp.jpg", "id": 52609}], "vote_average": 5.6, "runtime": 124}, "24438": {"poster_path": "/yBrceyep5ZWaU9XuodM1X5c67K6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 78331000, "overview": "In New York City, an estranged couple who witness a murder are relocated to small-town Wyoming as part of a witness-protection program.", "video": false, "id": 24438, "genres": [{"id": 35, "name": "Comedy"}], "title": "Did You Hear About The Morgans?", "tagline": "We're not in Manhattan anymore.", "vote_count": 87, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "uk", "name": "\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1314228", "adult": false, "backdrop_path": "/fiYymtAvnCJGeYf5HsOo2CZUoRS.jpg", "production_companies": [{"name": "Banter", "id": 45726}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Castle Rock Entertainment", "id": 97}], "release_date": "2009-12-17", "popularity": 0.39067455221556, "original_title": "Did You Hear About The Morgans?", "budget": 58000000, "cast": [{"name": "Hugh Grant", "character": "Paul Morgan", "id": 3291, "credit_id": "52fe4496c3a368484e02b3df", "cast_id": 1, "profile_path": "/r3rSJLJwKmsJyPA3gojzuMthJ4C.jpg", "order": 0}, {"name": "Sarah Jessica Parker", "character": "Meryl Morgan", "id": 520, "credit_id": "52fe4496c3a368484e02b3e3", "cast_id": 2, "profile_path": "/u2fVzLtsqtDVUSXCkVpdDdUoy48.jpg", "order": 1}, {"name": "Natalia Klimas", "character": "Monique Rabelais", "id": 114310, "credit_id": "52fe4496c3a368484e02b41d", "cast_id": 14, "profile_path": null, "order": 2}, {"name": "Vincenzo Amato", "character": "Girard Rabelais", "id": 20588, "credit_id": "52fe4496c3a368484e02b421", "cast_id": 15, "profile_path": "/oIsX2gS7k4wGYspeQzhjxy2Jxnc.jpg", "order": 3}, {"name": "Jesse Liebman", "character": "Adam Feller", "id": 114311, "credit_id": "52fe4496c3a368484e02b425", "cast_id": 16, "profile_path": null, "order": 4}, {"name": "Elisabeth Moss", "character": "Jackie Drake", "id": 32798, "credit_id": "52fe4496c3a368484e02b429", "cast_id": 17, "profile_path": "/nHrsIJFqHzMrYPlsqEhkMelSS4a.jpg", "order": 5}, {"name": "Michael Kelly", "character": "Vincent", "id": 50217, "credit_id": "52fe4496c3a368484e02b42d", "cast_id": 18, "profile_path": "/iivECyPFmK7SeT3iBtmOgz3n3M7.jpg", "order": 6}, {"name": "Sam Elliott", "character": "Clay Wheeler", "id": 16431, "credit_id": "52fe4496c3a368484e02b431", "cast_id": 19, "profile_path": "/td95IbYZf4LMA2wiEjktAsQvzhW.jpg", "order": 7}, {"name": "Kim Shaw", "character": "Nurse Kelly", "id": 111685, "credit_id": "52fe4496c3a368484e02b435", "cast_id": 20, "profile_path": "/l849560Ag8pW8JAKdtJZYTHPTic.jpg", "order": 8}, {"name": "Seth Gilliam", "character": "U.S. Marshal Lasky", "id": 41688, "credit_id": "54d1160f9251417c1d00373e", "cast_id": 23, "profile_path": "/5XL7Nuzt58wXijlFbDJKDWYoLFQ.jpg", "order": 9}, {"name": "S\u00e1ndor T\u00e9csy", "character": "Anton Forenski", "id": 1422570, "credit_id": "54d11623c3a368430a003f27", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Kevin Brown", "character": "U.S. Marshal Henderson", "id": 207324, "credit_id": "54d11645c3a368431400375e", "cast_id": 25, "profile_path": "/kWYNzyF6tLtMWYXsvhvc9C6Fqo4.jpg", "order": 11}, {"name": "Steven Boyer", "character": "U.S. Marshal Ferber", "id": 1422571, "credit_id": "54d11658c3a368431e003b3a", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Sharon Wilkins", "character": "U.S. Marshal King", "id": 176695, "credit_id": "54d116689251413e0b002170", "cast_id": 27, "profile_path": "/sDuWTO0LZpvfPagJPshQWqOmeOE.jpg", "order": 13}, {"name": "Mary Steenburgen", "character": "Emma Wheeler", "id": 2453, "credit_id": "54d11689c3a368430a003f34", "cast_id": 29, "profile_path": "/zUMIAvoCu0lAoMgn9A9RiWnE8ju.jpg", "order": 15}], "directors": [{"name": "Marc Lawrence", "department": "Directing", "job": "Director", "credit_id": "52fe4496c3a368484e02b43b", "profile_path": "/6842GmjEw9svtkqA3XhXWWNY7px.jpg", "id": 18323}], "vote_average": 4.9, "runtime": 103}, "187596": {"poster_path": "/tw8KLqgjlEaOc4i2Y1iPsG1o3Hw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59209, "overview": "A reporter's dream of becoming a news anchor is compromised after a one-night stand leaves her stranded in downtown L.A. without a phone, car, ID or money - and only 8 hours to make it to the most important job interview of her life.", "video": false, "id": 187596, "genres": [{"id": 35, "name": "Comedy"}], "title": "Walk of Shame", "tagline": "Awesome night. Epic aftermath.", "vote_count": 187, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2463288", "adult": false, "backdrop_path": "/dj6AwbjOJ1DLaPls1Ckwer0Izbz.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}, {"name": "Sidney Kimmel Entertainment", "id": 737}, {"name": "FilmDistrict", "id": 7263}], "release_date": "2014-05-02", "popularity": 1.51756727599558, "original_title": "Walk of Shame", "budget": 15000000, "cast": [{"name": "Elizabeth Banks", "character": "Meghan Miles", "id": 9281, "credit_id": "52fe4d1f9251416c75130afb", "cast_id": 1, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 0}, {"name": "James Marsden", "character": "Gordon", "id": 11006, "credit_id": "52fe4d1f9251416c75130aff", "cast_id": 2, "profile_path": "/htBil0Vayd09haeUVoKEPxuantT.jpg", "order": 1}, {"name": "Gillian Jacobs", "character": "Rose", "id": 94098, "credit_id": "52fe4d1f9251416c75130b03", "cast_id": 3, "profile_path": "/mvIaS610vHBhNqappuo57OkAalo.jpg", "order": 2}, {"name": "Ethan Suplee", "character": "Officer Dave", "id": 824, "credit_id": "52fe4d1f9251416c75130b07", "cast_id": 4, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 3}, {"name": "Sarah Mason", "character": "Denise", "id": 131723, "credit_id": "52fe4d1f9251416c75130b0b", "cast_id": 5, "profile_path": "/fKsu9PJ4DuBVja60yKnvLgPHvq3.jpg", "order": 4}, {"name": "Oliver Hudson", "character": "Kyle", "id": 62692, "credit_id": "52fe4d1f9251416c75130b0f", "cast_id": 6, "profile_path": "/hdlPIJyKifjJUat5armDU3bRafM.jpg", "order": 5}, {"name": "Willie Garson", "character": "Dan", "id": 1542, "credit_id": "52fe4d1f9251416c75130b13", "cast_id": 7, "profile_path": "/2KuTzy6hMsTbWLxp1lFjMws8mP6.jpg", "order": 6}, {"name": "Vic Chao", "character": "Shift Captain / Dispatch", "id": 109423, "credit_id": "52fe4d1f9251416c75130b1b", "cast_id": 10, "profile_path": null, "order": 8}, {"name": "Lawrence Gilliard Jr.", "character": "Scrilla", "id": 37947, "credit_id": "52fe4d1f9251416c75130b1f", "cast_id": 11, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 9}, {"name": "Ken Davitian", "character": "Cab Driver", "id": 6734, "credit_id": "52fe4d1f9251416c75130b23", "cast_id": 12, "profile_path": "/kwZE1CPAHe7n3hxAwAFu7WGWSyD.jpg", "order": 10}, {"name": "Alphonso McAuley", "character": "Pookie", "id": 60506, "credit_id": "52fe4d1f9251416c75130b27", "cast_id": 14, "profile_path": "/bF1VjbZ73yr6eX4UpRloJgFpW64.jpg", "order": 11}, {"name": "Da'Vone McDonald", "character": "Hulk", "id": 221945, "credit_id": "52fe4d1f9251416c75130b2f", "cast_id": 16, "profile_path": "/yZZR2uyPkieCrWXdlb7g57kQtka.jpg", "order": 13}, {"name": "Bill Burr", "character": "Officer Walter", "id": 109708, "credit_id": "52fe4d1f9251416c75130b5d", "cast_id": 24, "profile_path": "/fXvur9kJ3Pw9CWqHvEkvyyRVuuU.jpg", "order": 14}, {"name": "P. J. Byrne", "character": "Moshe", "id": 1211946, "credit_id": "52fe4d1f9251416c75130b61", "cast_id": 25, "profile_path": "/n0j7SKO9rcmAPrcB5LrHafSzZG1.jpg", "order": 15}, {"name": "Ann Reilly", "character": "Female Blooper Anchor #2", "id": 1353304, "credit_id": "53ee18460e0a26192e001faa", "cast_id": 34, "profile_path": "/cnqNa114m7DwzJcCKOnjsxmmRne.jpg", "order": 16}], "directors": [{"name": "Steven Brill", "department": "Directing", "job": "Director", "credit_id": "52fe4d1f9251416c75130b35", "profile_path": "/9CpoLVxDKV2XRF3rigTNSVimJK1.jpg", "id": 32593}], "vote_average": 5.6, "runtime": 95}, "236751": {"poster_path": "/70CMoPOVPRzBmZiW0DXSU8Yvukt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91443253, "overview": "Heaven Is for Real is the true story of the 4-year old son of a small-town Nebraska pastor who, during emergency surgery, slips from consciousness and enters heaven. When he awakes, he recounts his experiences on the other side.", "video": false, "id": 236751, "genres": [{"id": 18, "name": "Drama"}], "title": "Heaven Is for Real", "tagline": "Based on the incredible true story", "vote_count": 106, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1929263", "adult": false, "backdrop_path": "/dAXDNDz1RuN3GjEFMnPVIAhmDP.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Roth Films", "id": 16314}], "release_date": "2014-04-16", "popularity": 0.988544750693954, "original_title": "Heaven Is for Real", "budget": 12000000, "cast": [{"name": "Greg Kinnear", "character": "Todd Burpo", "id": 17141, "credit_id": "52fe4e5fc3a36847f828cced", "cast_id": 3, "profile_path": "/agOTbOC76I6rC7TPuCTquvngXRu.jpg", "order": 0}, {"name": "Kelly Reilly", "character": "Sonja Burpo", "id": 17521, "credit_id": "52fe4e5fc3a36847f828ccf1", "cast_id": 4, "profile_path": "/utp6IT1cLk80RgJzehBIWkSQ8FJ.jpg", "order": 1}, {"name": "Connor Corum", "character": "Colton", "id": 1271809, "credit_id": "52fe4e5fc3a36847f828ccf5", "cast_id": 5, "profile_path": "/rnH8IQg3vHdreEcQ1bW9dEAri0S.jpg", "order": 2}, {"name": "Thomas Haden Church", "character": "Jay Wilkins", "id": 19159, "credit_id": "52fe4e5fc3a36847f828ccf9", "cast_id": 6, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 3}, {"name": "Jon Ted Wynne", "character": "Mr. Jackson", "id": 945302, "credit_id": "52fe4e5fc3a36847f828ccfd", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Jacob Vargas", "character": "Michael", "id": 16429, "credit_id": "52fe4e5fc3a36847f828cd01", "cast_id": 8, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 5}, {"name": "Lane Styles", "character": "Cassie", "id": 1271810, "credit_id": "52fe4e5fc3a36847f828cd05", "cast_id": 9, "profile_path": "/5Q3K5wDZROkRNUUUZAS4BVfzAaP.jpg", "order": 6}, {"name": "Darren Felbel", "character": "Mr. Parker", "id": 1191551, "credit_id": "52fe4e5fc3a36847f828cd09", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Darcy Fehr", "character": "Lee Watson", "id": 117051, "credit_id": "52fe4e5fc3a36847f828cd0d", "cast_id": 11, "profile_path": "/nh7X2TlJpeTw6oF6z23ISD8fJJa.jpg", "order": 8}, {"name": "Ali Tataryn", "character": "Arch Angel #2", "id": 1116281, "credit_id": "52fe4e5fc3a36847f828cd11", "cast_id": 12, "profile_path": "/xRxzASuufQ35yTMaoksau1Ose6O.jpg", "order": 9}], "directors": [{"name": "Randall Wallace", "department": "Directing", "job": "Director", "credit_id": "52fe4e5fc3a36847f828cce3", "profile_path": "/sHaZ1TAca9o8f4m8obTOt4p7tlg.jpg", "id": 2460}], "vote_average": 6.2, "runtime": 99}, "64720": {"poster_path": "/jFHe1RSju7m4EyRr7fP7QGq8QpO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 272521, "overview": "Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.", "video": false, "id": 64720, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Take Shelter", "tagline": "A Jeff Nichols Film", "vote_count": 95, "homepage": "http://www.sonyclassics.com/takeshelter/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1675192", "adult": false, "backdrop_path": "/28AjFSyQxqvMm2qVhJuHKsxonG8.jpg", "production_companies": [{"name": "Hydraulx", "id": 10936}, {"name": "REI Capital", "id": 21925}, {"name": "Grove Hill Productions", "id": 21926}, {"name": "Strange Matter Films", "id": 21927}], "release_date": "2011-11-25", "popularity": 0.456651219523622, "original_title": "Take Shelter", "budget": 5000000, "cast": [{"name": "Michael Shannon", "character": "Curtis", "id": 335, "credit_id": "52fe46e6c3a368484e0aa285", "cast_id": 3, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 0}, {"name": "Jessica Chastain", "character": "Samantha", "id": 83002, "credit_id": "52fe46e6c3a368484e0aa289", "cast_id": 4, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 1}, {"name": "Katy Mixon", "character": "Nat", "id": 59450, "credit_id": "52fe46e6c3a368484e0aa28d", "cast_id": 5, "profile_path": "/sDYcaRhmNVz2a5ZWWyNQ3wBvQ7a.jpg", "order": 2}, {"name": "Shea Whigham", "character": "Dewart", "id": 74242, "credit_id": "52fe46e6c3a368484e0aa291", "cast_id": 6, "profile_path": "/xlLI0hrutcyKOIHs4b47iSh65NU.jpg", "order": 3}, {"name": "Ray McKinnon", "character": "Kyle", "id": 1472, "credit_id": "52fe46e6c3a368484e0aa295", "cast_id": 7, "profile_path": "/gjZv4RQfPrOQEn0QRuR1G7HEz0D.jpg", "order": 4}, {"name": "Tova Stewart", "character": "Hannah", "id": 938292, "credit_id": "52fe46e6c3a368484e0aa2a5", "cast_id": 10, "profile_path": "/dMtjVG6jiimTyBujBQvjFlnWdyM.jpg", "order": 5}, {"name": "Natasha Randall", "character": "Cammie", "id": 938309, "credit_id": "52fe46e6c3a368484e0aa2a9", "cast_id": 11, "profile_path": null, "order": 6}, {"name": "Ron Kennard", "character": "Russell", "id": 1117503, "credit_id": "52fe46e6c3a368484e0aa2ad", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Scott Knisley", "character": "Lewis", "id": 1117504, "credit_id": "52fe46e6c3a368484e0aa2b1", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Robert Longstreet", "character": "Jim", "id": 79416, "credit_id": "52fe46e6c3a368484e0aa2b5", "cast_id": 14, "profile_path": "/kOPNnIzXzE2VbGlDBXLzOf2juwu.jpg", "order": 9}, {"name": "Heather Caldwell", "character": "Special Ed Teacher", "id": 1117505, "credit_id": "52fe46e6c3a368484e0aa2b9", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Sheila Hullihen", "character": "Woman in Road", "id": 1117506, "credit_id": "52fe46e6c3a368484e0aa2bd", "cast_id": 16, "profile_path": null, "order": 11}], "directors": [{"name": "Jeff Nichols", "department": "Directing", "job": "Director", "credit_id": "52fe46e6c3a368484e0aa27b", "profile_path": "/iFuYiBcv29IbSVMtNaYYtkA0y5X.jpg", "id": 71872}], "vote_average": 7.2, "runtime": 120}, "48340": {"poster_path": "/vnfSwR7J5dI0fq3fqSz5T515jTu.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108943221, "overview": "The 3-D action-thriller Sanctum, from executive producer James Cameron, follows a team of underwater cave divers on a treacherous expedition to the largest, most beautiful and least accessible cave system on Earth. When a tropical storm forces them deep into the caverns, they must fight raging water, deadly terrain and creeping panic as they search for an unknown escape route to the sea. Master diver Frank McGuire (Richard Roxburgh) has explored the South Pacific's Esa-ala Caves for months. But when his exit is cut off in a flash flood, Frank's team--including 17-year-old son Josh (Rhys Wakefield) and financier Carl Hurley (Ioan Gruffudd)--are forced to radically alter plans. With dwindling supplies, the crew must navigate an underwater labyrinth to make it out. Soon, they are confronted with the unavoidable question: Can they survive, or will they be trapped forever?", "video": false, "id": 48340, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Sanctum", "tagline": "The only way out is down.", "vote_count": 82, "homepage": "http://www.sanctummovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0881320", "adult": false, "backdrop_path": "/6ywCpFiu0lxTNcOeXdkMIzACurg.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Wayfare Entertainment", "id": 5703}, {"name": "Great Wight Productions/ Osford Films", "id": 19960}, {"name": "Sanctum Australia", "id": 6490}, {"name": "Start Motion Pictures", "id": 19961}], "release_date": "2011-02-02", "popularity": 0.531435855217709, "original_title": "Sanctum", "budget": 30000000, "cast": [{"name": "Ioan Gruffudd", "character": "Carl Hurley", "id": 65524, "credit_id": "52fe4760c3a36847f8132575", "cast_id": 4, "profile_path": "/iGJI8szrwaRBd484sGO8OOm1HOH.jpg", "order": 0}, {"name": "Richard Roxburgh", "character": "Frank McGuire", "id": 12206, "credit_id": "52fe4760c3a36847f8132579", "cast_id": 5, "profile_path": "/7PBOfqnGVEhpXBr3UJinDKFLEvS.jpg", "order": 1}, {"name": "Alice Parkinson", "character": "Victoria Elaine", "id": 144286, "credit_id": "52fe4760c3a36847f813257d", "cast_id": 6, "profile_path": "/8dfn4pbCdvf1EYSJhMn4fTF2ZZZ.jpg", "order": 2}, {"name": "Rhys Wakefield", "character": "Josh McGuire", "id": 55899, "credit_id": "52fe4760c3a36847f8132581", "cast_id": 7, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 3}, {"name": "Daniel Wyllie", "character": "Crazy George", "id": 3062, "credit_id": "52fe4760c3a36847f8132585", "cast_id": 8, "profile_path": "/vOE8xx5mWUxamHWvAq5q07Ud2WO.jpg", "order": 4}, {"name": "Allison Cratchley", "character": "Judes", "id": 144287, "credit_id": "52fe4760c3a36847f8132589", "cast_id": 9, "profile_path": "/8Z5i8PPYPPa6TlkOsL77pefwM1R.jpg", "order": 5}, {"name": "Christopher James Baker", "character": "J.D.", "id": 59118, "credit_id": "52fe4760c3a36847f813258d", "cast_id": 10, "profile_path": "/m5MnqQQtgDPUmoPX9Zi0AC7hwzz.jpg", "order": 6}, {"name": "Nicole Downs", "character": "Liz", "id": 1291814, "credit_id": "52fe4760c3a36847f8132591", "cast_id": 11, "profile_path": null, "order": 7}, {"name": "Cramer Cain", "character": "Luko", "id": 948767, "credit_id": "52fe4760c3a36847f8132595", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Andrew Hansen", "character": "Dex", "id": 1227235, "credit_id": "52fe4760c3a36847f8132599", "cast_id": 13, "profile_path": null, "order": 9}, {"name": "John Garvin", "character": "Jim Sergeant", "id": 140265, "credit_id": "52fe4760c3a36847f813259d", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Sean Dennehy", "character": "Chopper Pilot", "id": 559996, "credit_id": "52fe4760c3a36847f81325a1", "cast_id": 15, "profile_path": "/wPwLzkuDBM5bcitNk3G1JhZ50K6.jpg", "order": 11}, {"name": "Nea Diap", "character": "Kastom Shaman", "id": 971257, "credit_id": "52fe4760c3a36847f81325a5", "cast_id": 16, "profile_path": null, "order": 12}], "directors": [{"name": "Alister Grierson", "department": "Directing", "job": "Director", "credit_id": "52fe4760c3a36847f8132565", "profile_path": null, "id": 59126}], "vote_average": 5.7, "runtime": 108}, "122081": {"poster_path": "/dd71jKm9j1AJEP8MDbHYrUAfdsD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 31724284, "overview": "Brit, Candy, Cotty, and Faith have been best friends since grade school. They live together in a boring college dorm and are hungry for adventure. All they have to do is save enough money for spring break to get their shot at having some real fun. A serendipitous encounter with rapper \"Alien\" promises to provide the girls with all the thrill and excitement they could hope for. With the encouragement of their new friend, it soon becomes unclear how far the girls are willing to go to experience a spring break they will never forget.", "video": false, "id": 122081, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Spring Breakers", "tagline": "A little sun can bring out your dark side.", "vote_count": 567, "homepage": "http://www.springbreakersmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2101441", "adult": false, "backdrop_path": "/44njc1OWRwl5GGCYZ5OAuTIVkC.jpg", "production_companies": [{"name": "Radar Pictures", "id": 14718}, {"name": "Muse Productions", "id": 15231}, {"name": "O' Salvation", "id": 26676}, {"name": "Division Films", "id": 14036}, {"name": "Annapurna Pictures", "id": 13184}, {"name": "Iconoclast Films", "id": 26677}, {"name": "RabbitBandini Productions", "id": 8924}], "release_date": "2012-09-05", "popularity": 1.8242386795095, "original_title": "Spring Breakers", "budget": 5000000, "cast": [{"name": "James Franco", "character": "Alien", "id": 17051, "credit_id": "52fe4a74c3a368484e15452b", "cast_id": 3, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Selena Gomez", "character": "Faith", "id": 77948, "credit_id": "52fe4a74c3a368484e15452f", "cast_id": 4, "profile_path": "/ciFJTeObaQAOd5LqrqaDKY0dUbu.jpg", "order": 1}, {"name": "Vanessa Hudgens", "character": "Candy", "id": 67599, "credit_id": "52fe4a74c3a368484e154537", "cast_id": 6, "profile_path": "/4TSmDk5NpIi2pIG6J1gJaxvmx5I.jpg", "order": 2}, {"name": "Ashley Benson", "character": "Brit", "id": 78030, "credit_id": "52fe4a74c3a368484e154533", "cast_id": 5, "profile_path": "/dxi0fMJ7CKGwnCuAGQMqqh7xbBW.jpg", "order": 3}, {"name": "Rachel Korine", "character": "Cotty", "id": 79504, "credit_id": "52fe4a74c3a368484e154543", "cast_id": 9, "profile_path": "/82yhTEX0fi0wZUV6x64LmTgAgSn.jpg", "order": 4}, {"name": "Gucci Mane", "character": "Archie", "id": 224228, "credit_id": "52fe4a75c3a368484e154587", "cast_id": 21, "profile_path": "/clBGlHeBJlQxcfYqncx0pyef710.jpg", "order": 5}, {"name": "Heather Morris", "character": "Bess", "id": 221606, "credit_id": "52fe4a74c3a368484e15453b", "cast_id": 7, "profile_path": "/koExd1GaoNDXtDe07DqfgIYpewC.jpg", "order": 6}, {"name": "Justin Wheelon", "character": "Matt", "id": 1046354, "credit_id": "52fe4a74c3a368484e15453f", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Emma Holzer", "character": "Heather", "id": 1075505, "credit_id": "52fe4a74c3a368484e154547", "cast_id": 10, "profile_path": null, "order": 8}], "directors": [{"name": "Harmony Korine", "department": "Directing", "job": "Director", "credit_id": "52fe4a75c3a368484e154559", "profile_path": "/eNayG8Ed0bJAdpqjWT5Ibk9Jnib.jpg", "id": 51918}], "vote_average": 4.9, "runtime": 94}, "15588": {"poster_path": "/5E0abFYCo7ePxebWxKdLGOEx06f.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "French top secret agent, Hubert Bonisseur de la Bath, is sent to Rio to buy microfilms from a running nazi. To do so, he has to team up with Mossad secret services.", "video": false, "id": 15588, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "OSS 117: Lost in Rio", "tagline": "", "vote_count": 55, "homepage": "", "belongs_to_collection": {"backdrop_path": "/tWFDaP55PdguD0VfgYTWZ3NyfoK.jpg", "poster_path": "/bCrDUHGcncm51H21AyEyBN13W4t.jpg", "id": 91588, "name": "OSS 117 Collection"}, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "he", "name": "\u05e2\u05b4\u05d1\u05b0\u05e8\u05b4\u05d9\u05ea"}], "imdb_id": "tt1167660", "adult": false, "backdrop_path": "/gRZPAilYlNoaTApTk9FpibkqEyW.jpg", "production_companies": [{"name": "Gaumont", "id": 9}], "release_date": "2009-04-14", "popularity": 0.471945562967766, "original_title": "OSS 117 : Rio ne r\u00e9pond plus", "budget": 31165200, "cast": [{"name": "Jean Dujardin", "character": "Hubert Bonisseur de la Bath, OSS 117", "id": 56024, "credit_id": "52fe46699251416c75077745", "cast_id": 4, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 0}, {"name": "Louise Monot", "character": "Dolor\u00e8s", "id": 78425, "credit_id": "52fe46699251416c75077749", "cast_id": 5, "profile_path": "/u0RFwvaNeGUuNpJOhfy3hGgiIUu.jpg", "order": 1}, {"name": "Pierre Bellemare", "character": "Armand Lesignac", "id": 583686, "credit_id": "52fe46699251416c7507774d", "cast_id": 6, "profile_path": "/bWkRv1MpIhMgcghUdoRiAhHhEtE.jpg", "order": 2}, {"name": "Reem Kherici", "character": "Fraulein Frieda", "id": 583687, "credit_id": "52fe46699251416c75077751", "cast_id": 7, "profile_path": "/9ivM4ugrzCAuSxhsropHXjUyEBk.jpg", "order": 3}, {"name": "R\u00fcdiger Vogler", "character": "Von Zimmel", "id": 5266, "credit_id": "52fe46699251416c75077755", "cast_id": 8, "profile_path": "/dUUXAwPRMkRdv5PSGv8ndWvztDW.jpg", "order": 4}, {"name": "Serge Hazanavicius", "character": "Staman", "id": 54274, "credit_id": "52fe46699251416c75077759", "cast_id": 9, "profile_path": "/42VGG0jLTFoRcbGZd0PTpQRYEKE.jpg", "order": 5}], "directors": [{"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe46699251416c75077735", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}], "vote_average": 7.1, "runtime": 100}, "49020": {"poster_path": "/ibYScMoDmBktoIZzUDFrhPpTPlH.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 864659, "overview": "15-year-old deep-thinker Oliver Tate struggles to initiate and maintain a relationship with Jordana, his devilish, dark-haired classmate. As his parents' marriage begins to fall apart, similar problems arise in his relationship with Jordana.", "video": false, "id": 49020, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Submarine", "tagline": "A comedy that doesn't let principles stand in the way of progress.", "vote_count": 89, "homepage": "http://warp.net/films/submarine", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1440292", "adult": false, "backdrop_path": "/jRHZDSOv7WUKaY3NfrwYSXH3uRC.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Film Agency for Wales", "id": 12177}, {"name": "Red Hour Films", "id": 12178}, {"name": "Warp (Submarine)", "id": 12179}, {"name": "Warp Films", "id": 12180}], "release_date": "2010-09-12", "popularity": 0.710800292440563, "original_title": "Submarine", "budget": 0, "cast": [{"name": "Craig Roberts", "character": "Oliver Tate", "id": 104561, "credit_id": "52fe4780c3a36847f81395dd", "cast_id": 6, "profile_path": "/lFLBmmAz0AnMNqKlH65ixCjhJfH.jpg", "order": 0}, {"name": "Sally Hawkins", "character": "Jill Tate", "id": 39658, "credit_id": "52fe4780c3a36847f81395cd", "cast_id": 2, "profile_path": "/bPFRrqTDZKB2mlKV07M9P2FZKnP.jpg", "order": 1}, {"name": "Paddy Considine", "character": "Graham Purvis", "id": 14887, "credit_id": "52fe4780c3a36847f81395d1", "cast_id": 3, "profile_path": "/nmtQR949ev9SnaFMVYtB5N51D31.jpg", "order": 2}, {"name": "Noah Taylor", "character": "Lloyd Tate", "id": 1284, "credit_id": "52fe4780c3a36847f81395d5", "cast_id": 4, "profile_path": "/dSlH0WA09dVqQhgB7LB5xn8WzD.jpg", "order": 3}, {"name": "Gemma Chan", "character": "Kim-Lin", "id": 97576, "credit_id": "52fe4780c3a36847f81395d9", "cast_id": 5, "profile_path": "/aEp5HW7AahsJMlxhoQkbtM26qtk.jpg", "order": 4}, {"name": "Yasmin Paige", "character": "Jordana Bevan", "id": 81571, "credit_id": "52fe4781c3a36847f813966b", "cast_id": 31, "profile_path": "/t18rPozXhXpUDzKX6gWF0YBMrca.jpg", "order": 5}, {"name": "Darren Evans", "character": "Chips", "id": 32266, "credit_id": "52fe4781c3a36847f813966f", "cast_id": 32, "profile_path": null, "order": 6}, {"name": "Osian Cai Dulais", "character": "Mark Pritchard", "id": 1127671, "credit_id": "52fe4781c3a36847f8139673", "cast_id": 33, "profile_path": null, "order": 7}, {"name": "Lily McCann", "character": "Zoe Preece", "id": 1127672, "credit_id": "52fe4781c3a36847f8139677", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Otis Lloyd", "character": "Keiron", "id": 1127673, "credit_id": "52fe4781c3a36847f813967b", "cast_id": 35, "profile_path": null, "order": 9}, {"name": "Elinor Crawley", "character": "Abby Smuts", "id": 972115, "credit_id": "52fe4781c3a36847f813967f", "cast_id": 36, "profile_path": null, "order": 10}, {"name": "Steffan Rhodri", "character": "Mr. Davey", "id": 143892, "credit_id": "52fe4781c3a36847f8139683", "cast_id": 37, "profile_path": "/4bptQdwRKCMveddkpZdCvDwcsHQ.jpg", "order": 11}, {"name": "Melanie Walters", "character": "Jude Bevan", "id": 220587, "credit_id": "52fe4781c3a36847f8139687", "cast_id": 38, "profile_path": "/293QtM0BJBkb5sd5PPb8fk3vOxT.jpg", "order": 12}, {"name": "Sion Tudor Owen", "character": "Brynn Bevan", "id": 189433, "credit_id": "52fe4781c3a36847f813968b", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Lydia Fox", "character": "Miss Dutton", "id": 208526, "credit_id": "52fe4781c3a36847f813968f", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Ben Stiller", "character": "Soap Opera Star", "id": 7399, "credit_id": "52fe4781c3a36847f8139693", "cast_id": 41, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 15}], "directors": [{"name": "Richard Ayoade", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f81395c9", "profile_path": "/70IJ3elpuc87HGeKfqIZeKrHO51.jpg", "id": 98103}], "vote_average": 7.6, "runtime": 97}, "8204": {"poster_path": "/nSLjsBDzwsIpQL534CNfAKidyAm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162839667, "overview": "Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.", "video": false, "id": 8204, "genres": [{"id": 14, "name": "Fantasy"}], "title": "The Spiderwick Chronicles", "tagline": "Their World Is Closer Than You Think.", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0416236", "adult": false, "backdrop_path": "/2Uwv3eUDRJ9UcjN8AlSg4GDm6TN.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Nickelodeon Movies", "id": 2348}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Atmosphere Entertainment MM", "id": 2995}, {"name": "Gotham Group", "id": 3672}, {"name": "Spiderwick Productions", "id": 20342}], "release_date": "2008-02-14", "popularity": 0.391512781716737, "original_title": "The Spiderwick Chronicles", "budget": 90000000, "cast": [{"name": "Freddie Highmore", "character": "Simon", "id": 1281, "credit_id": "52fe4495c3a36847f809e799", "cast_id": 9, "profile_path": "/5wou22G4dMRcnpMrRyPfLclZ2lD.jpg", "order": 0}, {"name": "Sarah Bolger", "character": "Mallory", "id": 33397, "credit_id": "52fe4495c3a36847f809e79d", "cast_id": 10, "profile_path": "/qDpy6RQYxk42R4ZrIFK3eq13bC2.jpg", "order": 1}, {"name": "Nick Nolte", "character": "Mulgarath", "id": 1733, "credit_id": "52fe4495c3a36847f809e7a7", "cast_id": 12, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 2}, {"name": "Mary-Louise Parker", "character": "Helen Grace", "id": 18248, "credit_id": "52fe4495c3a36847f809e7ab", "cast_id": 13, "profile_path": "/3e72qs1QuqMlpieIm2JZtX1WNg2.jpg", "order": 3}, {"name": "David Strathairn", "character": "Arthur Spiderwick", "id": 11064, "credit_id": "52fe4495c3a36847f809e7af", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 4}, {"name": "Martin Short", "character": "Thimbletack (voice)", "id": 519, "credit_id": "52fe4495c3a36847f809e7b3", "cast_id": 15, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 5}, {"name": "Andrew McCarthy", "character": "Richard Grace", "id": 37041, "credit_id": "52fe4495c3a36847f809e7b7", "cast_id": 16, "profile_path": "/5ChWnInkq2BDpIT1Yoa9guqLiQS.jpg", "order": 6}, {"name": "Joan Plowright", "character": "Aunt Lucinda Spiderwick", "id": 23709, "credit_id": "52fe4495c3a36847f809e7bb", "cast_id": 18, "profile_path": "/dGtQVBpLVqb0w53m15A7nVVt30A.jpg", "order": 7}, {"name": "Jordy Benattar", "character": "Young Lucinda", "id": 8712, "credit_id": "52fe4495c3a36847f809e7bf", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Tod Fennell", "character": "Helen's Co-Worker", "id": 8321, "credit_id": "52fe4495c3a36847f809e7c3", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Mark Waters", "department": "Directing", "job": "Director", "credit_id": "52fe4495c3a36847f809e771", "profile_path": "/ktII2pERp8swsnULZhDPzyfVlf6.jpg", "id": 54050}], "vote_average": 5.9, "runtime": 96}, "38319": {"poster_path": "/d0P3WWy3Fc3JuORpdkkHhPrhlVc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 26121638, "overview": "A fantasy movie about an arrogant, lazy prince and his more heroic brother who must complete a quest in order to save their father's kingdom.", "video": false, "id": 38319, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}], "title": "Your Highness", "tagline": "Get your quest on.", "vote_count": 162, "homepage": "http://www.yourhighnessmovie.net/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1240982", "adult": false, "backdrop_path": "/8rxetgG9pp2diwH23HgpC9Coghi.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Stuber Productions", "id": 4403}], "release_date": "2011-04-08", "popularity": 0.698954905441318, "original_title": "Your Highness", "budget": 49000000, "cast": [{"name": "Natalie Portman", "character": "Isabel", "id": 524, "credit_id": "52fe46ab9251416c9105bc8f", "cast_id": 4, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Belladonna", "id": 11664, "credit_id": "52fe46ab9251416c9105bc93", "cast_id": 5, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "James Franco", "character": "Fabious", "id": 17051, "credit_id": "52fe46ab9251416c9105bc97", "cast_id": 6, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 2}, {"name": "Danny McBride", "character": "Thadeous", "id": 62862, "credit_id": "52fe46ab9251416c9105bc9b", "cast_id": 7, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 3}, {"name": "Michael Clarke Duncan", "character": "The Giant Troll", "id": 61981, "credit_id": "52fe46ab9251416c9105bc9f", "cast_id": 8, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 4}, {"name": "Justin Theroux", "character": "Leezar", "id": 15009, "credit_id": "52fe46ab9251416c9105bcaf", "cast_id": 11, "profile_path": "/3Ed13zSHQlJW1sMGugtOZW1My74.jpg", "order": 5}, {"name": "Rasmus Hardiker", "character": "Courtney", "id": 205725, "credit_id": "52fe46ab9251416c9105bcb3", "cast_id": 12, "profile_path": "/hOI4S9JPbNRMfnZTLHLrpBWb2GH.jpg", "order": 6}, {"name": "Damian Lewis", "character": "Boremont", "id": 20186, "credit_id": "52fe46ab9251416c9105bcb7", "cast_id": 13, "profile_path": "/3cQpH6BvgK8C1TmcVYC9BPaICUB.jpg", "order": 7}, {"name": "Toby Jones", "character": "Julie", "id": 13014, "credit_id": "52fe46ab9251416c9105bcbb", "cast_id": 14, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 8}, {"name": "Charles Dance", "character": "King Tallious", "id": 4391, "credit_id": "52fe46ab9251416c9105bcbf", "cast_id": 15, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 9}, {"name": "Simon Farnaby", "character": "Manious the Bold", "id": 114253, "credit_id": "52fe46ab9251416c9105bcc3", "cast_id": 16, "profile_path": "/3u1ObLUvaTyEMmpWQnkRg5Trlng.jpg", "order": 10}, {"name": "Deobia Oparei", "character": "Thundarian", "id": 58758, "credit_id": "52fe46ab9251416c9105bcc7", "cast_id": 17, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 11}, {"name": "B.J. Hogg", "character": "Royal Advisor", "id": 82142, "credit_id": "52fe46ab9251416c9105bccb", "cast_id": 18, "profile_path": "/fBx6rB5IcS8O297qcPmvodph7O5.jpg", "order": 12}, {"name": "Matyelok Gibbs", "character": "Mother", "id": 17479, "credit_id": "52fe46ab9251416c9105bccf", "cast_id": 19, "profile_path": "/mFouHJqFX0Mtj1kgE5zkXXcNr8A.jpg", "order": 13}, {"name": "Angela Pleasence", "character": "Mother", "id": 37440, "credit_id": "52fe46ab9251416c9105bcd3", "cast_id": 20, "profile_path": null, "order": 14}, {"name": "Anna Barry", "character": "Mother", "id": 189320, "credit_id": "52fe46ab9251416c9105bcd7", "cast_id": 21, "profile_path": null, "order": 15}, {"name": "Amber Anderson", "character": "Maiden", "id": 1121198, "credit_id": "52fe46ab9251416c9105bcdb", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "John Fricker", "character": "Marteetee", "id": 1121199, "credit_id": "52fe46ab9251416c9105bcdf", "cast_id": 23, "profile_path": null, "order": 17}, {"name": "Charles Shaughnessy", "character": "Narrator / Soul of the Maze", "id": 63474, "credit_id": "52fe46ab9251416c9105bce3", "cast_id": 24, "profile_path": "/cS7JLeMXZ4d0flSsNt8kfPejmYx.jpg", "order": 18}, {"name": "Rhian Sugden", "character": "Forest Woman", "id": 1121200, "credit_id": "52fe46ab9251416c9105bce7", "cast_id": 25, "profile_path": null, "order": 19}, {"name": "Amii Grove", "character": "Forest Woman", "id": 1121201, "credit_id": "52fe46ab9251416c9105bceb", "cast_id": 26, "profile_path": null, "order": 20}, {"name": "Madison Welch", "character": "Forest Woman", "id": 1121202, "credit_id": "52fe46ab9251416c9105bcef", "cast_id": 27, "profile_path": null, "order": 21}, {"name": "Eva Wyrwal", "character": "Regina", "id": 1121203, "credit_id": "52fe46ab9251416c9105bcf3", "cast_id": 28, "profile_path": null, "order": 22}, {"name": "Brian Steele", "character": "Minotaur", "id": 12359, "credit_id": "52fe46ab9251416c9105bcf7", "cast_id": 29, "profile_path": "/kx9DCr4GR1Fl2kAeGxPNEI6v3q8.jpg", "order": 23}, {"name": "David Garrick", "character": "Daronius the Swift", "id": 1121204, "credit_id": "52fe46ab9251416c9105bcfb", "cast_id": 30, "profile_path": null, "order": 24}, {"name": "Caroline Grace-Cassidy", "character": "Handmaiden", "id": 1121205, "credit_id": "52fe46ab9251416c9105bcff", "cast_id": 31, "profile_path": null, "order": 25}, {"name": "Julian Rhind-Tutt", "character": "Warlock", "id": 7031, "credit_id": "52fe46ab9251416c9105bd03", "cast_id": 32, "profile_path": "/rWzLZMid3NQHJNwJiP9CXg4mW9l.jpg", "order": 26}], "directors": [{"name": "David Gordon Green", "department": "Directing", "job": "Director", "credit_id": "52fe46ab9251416c9105bc7f", "profile_path": "/fwFRS2KmqMzoUT1Qt4wPswpuC24.jpg", "id": 64141}], "vote_average": 5.2, "runtime": 102}, "49022": {"poster_path": "/yQ7xDM7y0mIAuvkRoOFOuxhv0Zy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59901913, "overview": "Though Rachel (Ginnifer Goodwin) is a successful attorney and a loyal, generous friend, she is still single. After one drink too many at her 30th-birthday celebration, Rachel unexpectedly falls into bed with her longtime crush, Dex -- who happens to be engaged to her best friend, Darcy (Kate Hudson). Ramifications of the liaison threaten to destroy the women's lifelong friendship, while Ethan (John Krasinski), Rachel's confidant, harbors a potentially explosive secret of his own.", "video": false, "id": 49022, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Something Borrowed", "tagline": "It's a thin line between love and friendship.", "vote_count": 75, "homepage": "http://somethingborrowedmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0491152", "adult": false, "backdrop_path": "/zsyu6szRiyS1BSEqWQcHegV9uSO.jpg", "production_companies": [{"name": "Wild Ocean Films", "id": 38010}, {"name": "Alcon Entertainment", "id": 1088}, {"name": "2S Films", "id": 38011}], "release_date": "2011-05-05", "popularity": 0.444608252650567, "original_title": "Something Borrowed", "budget": 35000000, "cast": [{"name": "Kate Hudson", "character": "Darcy", "id": 11661, "credit_id": "52fe4781c3a36847f81397d5", "cast_id": 6, "profile_path": "/yUNYh4jpIunwILbbKBAlHPomKIO.jpg", "order": 0}, {"name": "Ginnifer Goodwin", "character": "Rachel", "id": 417, "credit_id": "52fe4781c3a36847f81397d9", "cast_id": 7, "profile_path": "/rXVpvGBXSrRX5iipIpZHPVDvOX3.jpg", "order": 1}, {"name": "John Krasinski", "character": "Ethan", "id": 17697, "credit_id": "52fe4781c3a36847f81397dd", "cast_id": 8, "profile_path": "/nOWwdZURikW22qo6OUSGFCTukgc.jpg", "order": 2}, {"name": "Colin Egglesfield", "character": "Dex", "id": 83225, "credit_id": "52fe4781c3a36847f81397e5", "cast_id": 10, "profile_path": "/ggHUyXwcrxFjSFKwSJOFvV1b0be.jpg", "order": 3}, {"name": "Ashley Williams", "character": "Claire", "id": 122888, "credit_id": "52fe4781c3a36847f81397e1", "cast_id": 9, "profile_path": "/fq4hNuLVpsbrnzjPCtoFIcf3nXN.jpg", "order": 4}], "directors": [{"name": "Luke Greenfield", "department": "Directing", "job": "Director", "credit_id": "52fe4781c3a36847f81397d1", "profile_path": "/5RjsGRArdvXwhwjSExzc833M5oQ.jpg", "id": 65734}], "vote_average": 5.8, "runtime": 112}, "198287": {"poster_path": "/eVChSWb5FJC9tZRfVmEAavhQMLo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "At an international school in Jakarta, a philosophy teacher challenges his class of twenty graduating seniors to choose which ten of them would take shelter underground and reboot the human race in the event of a nuclear apocalypse.", "video": false, "id": 198287, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "After the Dark", "tagline": "", "vote_count": 70, "homepage": "http://www.anolivebranchmedia.com/philosophers.htm", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1928340", "adult": false, "backdrop_path": "/lptL0NT1XHMTxbedSPLSuf0b66r.jpg", "production_companies": [{"name": "An Olive Branch Productions", "id": 8689}, {"name": "SCTV", "id": 18829}], "release_date": "2014-02-07", "popularity": 0.485831236871136, "original_title": "The Philosophers", "budget": 0, "cast": [{"name": "James D'Arcy", "character": "Mr. Zimit", "id": 19655, "credit_id": "52fe4d779251416c91116feb", "cast_id": 1, "profile_path": "/lSwizra0dwaKDiMGsZLWf3fU2Uv.jpg", "order": 0}, {"name": "Sophie Lowe", "character": "Petra", "id": 103994, "credit_id": "52fe4d779251416c91116fef", "cast_id": 3, "profile_path": "/rckY6LcOMB2XRRW2IsMhKEzKnx9.jpg", "order": 1}, {"name": "Freddie Stroma", "character": "Jack", "id": 234934, "credit_id": "52fe4d779251416c91116ff7", "cast_id": 5, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 3}, {"name": "Rhys Wakefield", "character": "James", "id": 55899, "credit_id": "52fe4d779251416c91116ffb", "cast_id": 6, "profile_path": "/1kQ5NA2xJfjG3ZvUAhxSHm4rjKO.jpg", "order": 4}, {"name": "Bonnie Wright", "character": "Georgina", "id": 10991, "credit_id": "52fe4d779251416c91116fff", "cast_id": 7, "profile_path": "/1QzCiWSbESJVANYGHA1RwqZpzD0.jpg", "order": 5}, {"name": "Maia Mitchell", "character": "Beatrice", "id": 992366, "credit_id": "52fe4d779251416c9111700f", "cast_id": 10, "profile_path": "/1ggNur1TDBuag5X3GlL3I9AuyXb.jpg", "order": 6}, {"name": "Katie Findlay", "character": "Bonnie", "id": 1257387, "credit_id": "52fe4d779251416c91117013", "cast_id": 11, "profile_path": "/kaswatZOHY8KzTCH9goUs1jX5VX.jpg", "order": 7}, {"name": "Jacob Artist", "character": "Parker", "id": 1074888, "credit_id": "52fe4d779251416c91117017", "cast_id": 12, "profile_path": "/novsAlYfcku1PCQiZRN7pOnzolA.jpg", "order": 8}, {"name": "George Blagden", "character": "Andy", "id": 1256160, "credit_id": "52fe4d779251416c9111701b", "cast_id": 13, "profile_path": "/yzdb0mV2POyK3Afq1Uoa4QxrHlU.jpg", "order": 9}, {"name": "Cinta Laura Kiehl", "character": "Utami", "id": 1283686, "credit_id": "52fe4d779251416c9111701f", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Toby Sebastian", "character": "Russell", "id": 1290501, "credit_id": "52fe4d779251416c91117027", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Erin Moriarty", "character": "Vivian", "id": 990393, "credit_id": "54434433c3a3683e0b003bca", "cast_id": 51, "profile_path": "/v0jDVSB0HugI3mRjkirOgLBawM7.jpg", "order": 13}], "directors": [{"name": "John Huddles", "department": "Directing", "job": "Director", "credit_id": "52fe4d779251416c9111700b", "profile_path": null, "id": 91382}], "vote_average": 6.2, "runtime": 100}, "10796": {"poster_path": "/baw9Zdb1zJDWs4iJBrmfWKnx62p.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.", "video": false, "id": 10796, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The One", "tagline": "Stealing the power of the universes one by one.", "vote_count": 123, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0267804", "adult": false, "backdrop_path": "/nCK3Api5TteYOhbc7JTrbcD9OlO.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Revolution Studios", "id": 497}], "release_date": "2001-11-02", "popularity": 0.921616145500037, "original_title": "The One", "budget": 49000000, "cast": [{"name": "Jet Li", "character": "Gabe Law / Gabriel Yulaw / Lawless", "id": 1336, "credit_id": "52fe43b89251416c7501b90d", "cast_id": 13, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Jason Statham", "character": "MVA Agent Evan Funsch", "id": 976, "credit_id": "52fe43b89251416c7501b909", "cast_id": 12, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 1}, {"name": "Carla Gugino", "character": "T.K. Law / Massie Walsh", "id": 17832, "credit_id": "52fe43b89251416c7501b905", "cast_id": 11, "profile_path": "/nnHNPqLUgrdu858FJoGaVP4eXco.jpg", "order": 2}, {"name": "Delroy Lindo", "character": "MVA Agent Harry Roedecker / Gas Station Attendant", "id": 18792, "credit_id": "52fe43b89251416c7501b911", "cast_id": 14, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 3}, {"name": "James Morrison", "character": "LAPD Officer Bobby Aldrich / 'A' World Inmate #1", "id": 62003, "credit_id": "52fe43b89251416c7501b915", "cast_id": 15, "profile_path": "/1i72tqL3kSv4BbOvsu8CyDwkKJ0.jpg", "order": 4}, {"name": "Dylan Bruno", "character": "Yates", "id": 52476, "credit_id": "52fe43b89251416c7501b919", "cast_id": 16, "profile_path": "/pNOG54RGO9sCKzbpM33pUEr9F2Y.jpg", "order": 5}, {"name": "Richard Steinmetz", "character": "D'Antoni", "id": 129124, "credit_id": "52fe43b89251416c7501b91d", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Steve Rankin", "character": "MVA Supervisor", "id": 10137, "credit_id": "52fe43b89251416c7501b921", "cast_id": 18, "profile_path": "/5qMs4c4I7tcmubYy0xqBU7BVwSm.jpg", "order": 7}, {"name": "Tucker Smallwood", "character": "Prison Warden", "id": 92777, "credit_id": "52fe43b89251416c7501b925", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Harriet Sansom Harris", "character": "Nurse Besson", "id": 538, "credit_id": "52fe43b89251416c7501b929", "cast_id": 20, "profile_path": "/jbakq0nH4yPKjhwhwhddsfgXQDS.jpg", "order": 9}, {"name": "David Keats", "character": "MRI Technician", "id": 141489, "credit_id": "52fe43b99251416c7501b92d", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Dean Norris", "character": "Sgt. Siegel", "id": 14329, "credit_id": "52fe43b99251416c7501b931", "cast_id": 22, "profile_path": "/fee5Hdms2TWRnOiIY8NeKSJf4ge.jpg", "order": 11}, {"name": "Ron Zimmerman", "character": "Rotten Ronnie", "id": 141490, "credit_id": "52fe43b99251416c7501b935", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Darin Morgan", "character": "Hugo", "id": 141491, "credit_id": "52fe43b99251416c7501b939", "cast_id": 24, "profile_path": null, "order": 13}, {"name": "Mark Borchardt", "character": "Cesar", "id": 87794, "credit_id": "52fe43b99251416c7501b93d", "cast_id": 25, "profile_path": "/d9uBnnjwDNe6fcuFx0YgNInCJdq.jpg", "order": 14}], "directors": [{"name": "James Wong", "department": "Directing", "job": "Director", "credit_id": "52fe43b89251416c7501b8cb", "profile_path": "/4TIHQFKSdS8WDeZ6xYrzZclgoaC.jpg", "id": 57134}], "vote_average": 5.8, "runtime": 87}, "171274": {"poster_path": "/uc5sYJg8wH0RmkIMv5iqHNsP3a6.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In Los Angeles at the turn of the 1970s, drug-fueled detective Larry \"Doc\" Sportello investigates the disappearance of an ex-girlfriend.", "video": false, "id": 171274, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 10749, "name": "Romance"}], "title": "Inherent Vice", "tagline": "Under the paving stones, the beach!", "vote_count": 129, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1791528", "adult": false, "backdrop_path": "/whV2SlkXyH2fWf7a92SGwFQVMTZ.jpg", "production_companies": [{"name": "Ghoulardi Film Company", "id": 178}, {"name": "Warner Bros.", "id": 6194}], "release_date": "2014-12-12", "popularity": 7.23321834799509, "original_title": "Inherent Vice", "budget": 20000000, "cast": [{"name": "Joaquin Phoenix", "character": "Doc Sportello", "id": 73421, "credit_id": "52fe4d07c3a36847f824ad45", "cast_id": 1, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 0}, {"name": "Josh Brolin", "character": "Bigfoot Bjornsen", "id": 16851, "credit_id": "53190b5792514177bf001880", "cast_id": 22, "profile_path": "/x8KKnvHyPvH16M6waAnY1OeCtA8.jpg", "order": 1}, {"name": "Owen Wilson", "character": "Coy Harlingen", "id": 887, "credit_id": "52fe4d08c3a36847f824ad67", "cast_id": 7, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 2}, {"name": "Katherine Waterston", "character": "Shasta Fay Hepworth", "id": 77795, "credit_id": "53190b6392514177b400197a", "cast_id": 23, "profile_path": "/fc8hqenrbXWohV83MeEIUC5L06t.jpg", "order": 3}, {"name": "Reese Witherspoon", "character": "Penny", "id": 368, "credit_id": "52fe4d08c3a36847f824ad6f", "cast_id": 9, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 4}, {"name": "Benicio del Toro", "character": "Sauncho Smilax", "id": 1121, "credit_id": "52fe4d08c3a36847f824ad6b", "cast_id": 8, "profile_path": "/cbkXDtNDFYHKsyQzqvzxjn7F7rX.jpg", "order": 5}, {"name": "Jena Malone", "character": "Hope Harlingen", "id": 20089, "credit_id": "52fe4d08c3a36847f824ad73", "cast_id": 10, "profile_path": "/tx5KR6dAhYag3plX7Rdg8t25QrC.jpg", "order": 6}, {"name": "Maya Rudolph", "character": "Petunia Leeway", "id": 52792, "credit_id": "53190b8392514177ae0018b6", "cast_id": 25, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 7}, {"name": "Martin Short", "character": "Dr. Rudy Blatnoyd", "id": 519, "credit_id": "52fe4d08c3a36847f824ad77", "cast_id": 11, "profile_path": "/oZQorXBjTxrdkTJFpoDwOcQ91ji.jpg", "order": 8}, {"name": "Martin Donovan", "character": "Crocker Fenway", "id": 42993, "credit_id": "538ce190c3a3687155003324", "cast_id": 28, "profile_path": "/bNS43B8maD5A4UYSWy4UjgHru1a.jpg", "order": 9}, {"name": "Sasha Pieterse", "character": "Japonica Fenway", "id": 62168, "credit_id": "53190b7592514177ab0018d8", "cast_id": 24, "profile_path": "/u9LYoHhqb9d4JAhQ7aakfri2R3C.jpg", "order": 10}, {"name": "Eric Roberts", "character": "Mickey Wolfmann", "id": 21315, "credit_id": "538ce13ec3a368713c00344d", "cast_id": 27, "profile_path": "/45i6fsxBwH1UyA74tWQ6am0DntC.jpg", "order": 11}, {"name": "Michael Kenneth Williams", "character": "Tariq Khalil", "id": 39390, "credit_id": "542a070e0e0a2650e60004d2", "cast_id": 31, "profile_path": "/wdOfn1qzXNS29kiCdP5WoHm5AqY.jpg", "order": 12}, {"name": "Joanna Newsom", "character": "Sortil\u00e8ge", "id": 1412012, "credit_id": "54b1b1df9251412ae7001d94", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Jeannie Berlin", "character": "Aunt Reet", "id": 124377, "credit_id": "54b1b1f49251416f2c002324", "cast_id": 33, "profile_path": "/gWaprEjboz0FeIZuNzH71JjFQKQ.jpg", "order": 14}, {"name": "Serena Scott Thomas", "character": "Sloane Wolfmann", "id": 10780, "credit_id": "54b1b20b9251417472002a99", "cast_id": 34, "profile_path": "/dvTjb6V46wOo9JGgcViU54UoZNN.jpg", "order": 15}, {"name": "Hong Chau", "character": "Jade", "id": 1360317, "credit_id": "54b1b220c3a36809510029a9", "cast_id": 35, "profile_path": "/Bf2hoLVNcwLxb6LGeSlWaEJmHB.jpg", "order": 16}, {"name": "Christopher Allen Nelson", "character": "Glenn Charlock", "id": 6446, "credit_id": "54b1b233925141746c0027f9", "cast_id": 36, "profile_path": "/pbXe8gRR81onTWMPrOwrNZaqIoS.jpg", "order": 17}, {"name": "Sam Jaeger", "character": "Agent Flatweed", "id": 65727, "credit_id": "54b1b244c3a368094a00255e", "cast_id": 37, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 18}, {"name": "Timothy Simons", "character": "Agent Borderline", "id": 1181329, "credit_id": "54b1b24ec3a3680940002b2c", "cast_id": 38, "profile_path": "/czKmLeQIELIeR4Zpn6msqdYNHuW.jpg", "order": 19}, {"name": "Jillian Bell", "character": "Chlorinda", "id": 1226302, "credit_id": "54b1b25b9251417472002aa8", "cast_id": 39, "profile_path": "/kcMhnv8e1RVInN14D0UMGEaUT5a.jpg", "order": 20}, {"name": "Christian Williams", "character": "Smedley", "id": 1222834, "credit_id": "54b1b27f9251417479002788", "cast_id": 43, "profile_path": null, "order": 24}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4d07c3a36847f824ad51", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 6.3, "runtime": 148}, "8066": {"poster_path": "/gseatc9N1a4zsaHC4cda7txOiAZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sam Foster (Ewan McGregor), a psychiatrist, has a new patient, Henry Letham (Ryan Gosling), who claims to be suicidal. In trying to diagnose him, Sam visits Henry's prior therapist (Janeane Garofalo) and also finds Henry's mother -- even though Henry has said that he murdered both of his parents. As reality starts to contradict fact, Sam spirals into an unstable mental state. Then he finds a clue as to how and when Henry may try to kill himself, and races to try to stop him.", "video": false, "id": 8066, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Stay", "tagline": "Between the worlds of the living and the dead there is a place you're not supposed to stay.", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371257", "adult": false, "backdrop_path": "/dpo2SgBttTkiWwqdjsC74lv0lOO.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2005-09-24", "popularity": 0.97054954683276, "original_title": "Stay", "budget": 50000000, "cast": [{"name": "Ewan McGregor", "character": "Sam Foster", "id": 3061, "credit_id": "52fe4490c3a36847f809d3c5", "cast_id": 3, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 0}, {"name": "Ryan Gosling", "character": "Henry Letham", "id": 30614, "credit_id": "52fe4490c3a36847f809d3c9", "cast_id": 4, "profile_path": "/5rOcicCrTCWye0O2S3dnbnWaCr1.jpg", "order": 1}, {"name": "Naomi Watts", "character": "Lila Culpepper", "id": 3489, "credit_id": "52fe4490c3a36847f809d3cd", "cast_id": 5, "profile_path": "/8W02WOJI1pEGh2iqQsgITR5tV0P.jpg", "order": 2}, {"name": "Kate Burton", "character": "Mrs. Letham", "id": 20879, "credit_id": "52fe4490c3a36847f809d3d1", "cast_id": 6, "profile_path": "/mYOcwqXSNIxYLET83sNbZ3Uiphh.jpg", "order": 3}, {"name": "Elizabeth Reaser", "character": "Athena", "id": 53755, "credit_id": "52fe4490c3a36847f809d3d5", "cast_id": 7, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 4}, {"name": "Bob Hoskins", "character": "Dr. Leon Patterson", "id": 382, "credit_id": "52fe4490c3a36847f809d3d9", "cast_id": 8, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 5}, {"name": "Janeane Garofalo", "character": "Dr. Beth Levy", "id": 21197, "credit_id": "52fe4490c3a36847f809d3dd", "cast_id": 9, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 6}, {"name": "Jessica Hecht", "character": "Boy's Mother", "id": 14984, "credit_id": "52fe4490c3a36847f809d3e1", "cast_id": 10, "profile_path": "/jT5k2BLOEXaRF94ZV9plQBV6mAL.jpg", "order": 7}, {"name": "BD Wong", "character": "Bradley Ren", "id": 14592, "credit_id": "53fff5620e0a2658ee00149f", "cast_id": 20, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 8}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5800e0a2658e60013f7", "cast_id": 21, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 9}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5810e0a2658e60013f9", "cast_id": 22, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 10}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5810e0a2658de001471", "cast_id": 23, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 11}, {"name": "BD Wong", "character": "Dr. Bradley Ren", "id": 14592, "credit_id": "53fff5810e0a2658e9001435", "cast_id": 24, "profile_path": "/h23xJvjHYzNVSKyJifZFEtZA5of.jpg", "order": 12}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58ec3a3684360000d40", "cast_id": 25, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 13}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58f0e0a2658f10013e0", "cast_id": 26, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 14}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58f0e0a2658e200140f", "cast_id": 27, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 15}, {"name": "Mark Margolis", "character": "Bookstore Owner", "id": 1173, "credit_id": "53fff58f0e0a2658f10013e2", "cast_id": 28, "profile_path": "/ue04GglAWi7FnxLWeESekpRJ8do.jpg", "order": 16}], "directors": [{"name": "Marc Forster", "department": "Directing", "job": "Director", "credit_id": "52fe4490c3a36847f809d3bb", "profile_path": "/mYpqFeHOKTPXLbZRKQjW1xECycl.jpg", "id": 12995}], "vote_average": 6.3, "runtime": 99}, "72976": {"poster_path": "/gkkiDu9srCCbCMxGKwNwKCxK7KF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 275293450, "overview": "A revealing drama that focuses on the 16th President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.", "video": false, "id": 72976, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "Lincoln", "tagline": "", "vote_count": 611, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443272", "adult": false, "backdrop_path": "/haOTy0A9tMaoEEWdoaGavBnPQfY.jpg", "production_companies": [{"name": "DreamWorks", "id": 7}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "Participant Media", "id": 6735}, {"name": "Dune Entertainment", "id": 444}, {"name": "Amblin Entertainment", "id": 56}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2012-11-16", "popularity": 1.0351425524543, "original_title": "Lincoln", "budget": 50000000, "cast": [{"name": "Daniel Day-Lewis", "character": "Abraham Lincoln", "id": 11856, "credit_id": "52fe4886c3a368484e0fd425", "cast_id": 4, "profile_path": "/hknfCSSU6AMeKV9yn9NTtTzIEGc.jpg", "order": 0}, {"name": "Sally Field", "character": "Mary Todd Lincoln", "id": 35, "credit_id": "52fe4886c3a368484e0fd435", "cast_id": 8, "profile_path": "/ymhpsxujOO3a9qaGYSpkenCt9Le.jpg", "order": 1}, {"name": "David Strathairn", "character": "William Seward", "id": 11064, "credit_id": "52fe4886c3a368484e0fd445", "cast_id": 12, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 2}, {"name": "Joseph Gordon-Levitt", "character": "Robert Lincoln", "id": 24045, "credit_id": "52fe4886c3a368484e0fd429", "cast_id": 5, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 3}, {"name": "James Spader", "character": "WN Bilbo", "id": 13548, "credit_id": "52fe4886c3a368484e0fd431", "cast_id": 7, "profile_path": "/gFDjZje8P0S3MzHuw1cxiYuHBX5.jpg", "order": 4}, {"name": "Hal Holbrook", "character": "Preston Blair", "id": 11066, "credit_id": "52fe4886c3a368484e0fd45b", "cast_id": 17, "profile_path": "/afHqi0gPgTG7gEIGM8Lln1V1GFm.jpg", "order": 5}, {"name": "Tommy Lee Jones", "character": "Thaddeus Stevens", "id": 2176, "credit_id": "52fe4886c3a368484e0fd42d", "cast_id": 6, "profile_path": "/gRXugLFvr1oHZ6alLUxmYDq8cgW.jpg", "order": 6}, {"name": "Lee Pace", "character": "Fernando Wood", "id": 72095, "credit_id": "52fe4886c3a368484e0fd439", "cast_id": 9, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 7}, {"name": "Jackie Earle Haley", "character": "Alexander Stephens", "id": 17183, "credit_id": "52fe4886c3a368484e0fd43d", "cast_id": 10, "profile_path": "/9WWADGZW0n2kDINY8JiIXKOc2FW.jpg", "order": 8}, {"name": "Jared Harris", "character": "Ulysses S. Grant", "id": 15440, "credit_id": "52fe4886c3a368484e0fd441", "cast_id": 11, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 9}, {"name": "Bruce McGill", "character": "Edwin Stanton", "id": 14888, "credit_id": "52fe4886c3a368484e0fd44d", "cast_id": 14, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 10}, {"name": "Walton Goggins", "character": "Wells A. Hutchins", "id": 27740, "credit_id": "52fe4886c3a368484e0fd451", "cast_id": 15, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 11}, {"name": "Tim Blake Nelson", "character": "Richard Schell", "id": 1462, "credit_id": "52fe4886c3a368484e0fd489", "cast_id": 32, "profile_path": "/l3dKpvYV9YntYptBDc9EYTvYGTz.jpg", "order": 12}, {"name": "Boris McGiver", "character": "Alexander Coffroth", "id": 151432, "credit_id": "52fe4886c3a368484e0fd499", "cast_id": 35, "profile_path": "/jwbNYQ92bT38FTthAHHxoE48pKp.jpg", "order": 13}, {"name": "Adam Driver", "character": "Samuel Beckwith", "id": 1023139, "credit_id": "52fe4886c3a368484e0fd449", "cast_id": 13, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 14}, {"name": "John Hawkes", "character": "Robert Latham", "id": 16861, "credit_id": "52fe4886c3a368484e0fd49d", "cast_id": 36, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 15}, {"name": "Joseph Cross", "character": "John Hay", "id": 33528, "credit_id": "52fe4886c3a368484e0fd4a1", "cast_id": 37, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 16}, {"name": "Peter McRobbie", "character": "George Pendleton", "id": 19489, "credit_id": "52fe4886c3a368484e0fd4a5", "cast_id": 38, "profile_path": "/kx0PjY89aGd3WX1Bf1zSw3lKYvg.jpg", "order": 17}, {"name": "Gulliver McGrath", "character": "Tad Lincoln", "id": 234983, "credit_id": "52fe4886c3a368484e0fd4a9", "cast_id": 39, "profile_path": "/jpDJNQtrtHMPqpssxd8RudVhn5x.jpg", "order": 18}, {"name": "Gloria Reuben", "character": "Elizabeth Keckley", "id": 21369, "credit_id": "52fe4886c3a368484e0fd4ad", "cast_id": 40, "profile_path": "/8amk1oMBkgcFxMoAGv4x2ZN4RyR.jpg", "order": 19}, {"name": "Jeremy Strong", "character": "John Nicolay", "id": 239271, "credit_id": "52fe4886c3a368484e0fd4b1", "cast_id": 41, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 20}, {"name": "Michael Stuhlbarg", "character": "George Yeaman", "id": 72873, "credit_id": "52fe4886c3a368484e0fd4b5", "cast_id": 42, "profile_path": "/i2AFa0liDriyN93myRSZHTUtoTN.jpg", "order": 21}, {"name": "David Costabile", "character": "James Ashley", "id": 82167, "credit_id": "52fe4886c3a368484e0fd4b9", "cast_id": 43, "profile_path": "/j0WailErU7LN1X82zrHgFsp5yOX.jpg", "order": 22}, {"name": "Stephen Spinella", "character": "Asa Vintner Litton", "id": 57093, "credit_id": "52fe4886c3a368484e0fd4bd", "cast_id": 44, "profile_path": "/oZLaKkLYW61XPR0nTu0H1tbFWbL.jpg", "order": 23}, {"name": "Walton Goggins", "character": "Clay Hawkins", "id": 27740, "credit_id": "52fe4886c3a368484e0fd4c1", "cast_id": 45, "profile_path": "/3ESBPeIUGxB4rptFoWvIcC9UskL.jpg", "order": 24}, {"name": "David Warshofsky", "character": "William Hutton", "id": 37204, "credit_id": "52fe4886c3a368484e0fd4c5", "cast_id": 46, "profile_path": "/alPG9509uMDaTmzsxzz8Rz1ZMZf.jpg", "order": 25}, {"name": "Colman Domingo", "character": "Private Harold Green", "id": 91671, "credit_id": "52fe4886c3a368484e0fd4c9", "cast_id": 47, "profile_path": "/otQg0XX0fSnnOHZphdWwwjJc8lA.jpg", "order": 26}, {"name": "Lukas Haas", "character": "First White Soldier", "id": 526, "credit_id": "52fe4886c3a368484e0fd4cd", "cast_id": 48, "profile_path": "/1J9ca3TFCzK1ywmacqMnVBDU7X2.jpg", "order": 27}, {"name": "Dane DeHaan", "character": "Second White Soldier", "id": 122889, "credit_id": "52fe4886c3a368484e0fd4d1", "cast_id": 49, "profile_path": "/t0j4nTcvQuCgILBWs63SfiY7DGX.jpg", "order": 28}, {"name": "Bill Camp", "character": "Mr.Jolly", "id": 121718, "credit_id": "52fe4886c3a368484e0fd4d5", "cast_id": 50, "profile_path": "/epNFMjOCk9rIujCbLTc4uc1kKmZ.jpg", "order": 29}, {"name": "Elizabeth Marvel", "character": "Mrs. Jolly", "id": 126713, "credit_id": "52fe4886c3a368484e0fd4d9", "cast_id": 51, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 30}, {"name": "Julie White", "character": "Elizabeth Blair Lee", "id": 24305, "credit_id": "52fe4886c3a368484e0fd4dd", "cast_id": 52, "profile_path": "/iYTRxrNPGNLYmKfv5RI7pcLyV2i.jpg", "order": 31}, {"name": "Byron Jennings", "character": "Montgomery Blair", "id": 941524, "credit_id": "52fe4886c3a368484e0fd4e1", "cast_id": 53, "profile_path": "/mEZAdDNFDO6pEcyfeIVz0JERoM8.jpg", "order": 32}, {"name": "Richard Topol", "character": "James Speed", "id": 31282, "credit_id": "52fe4886c3a368484e0fd4e9", "cast_id": 55, "profile_path": "/eKrCl8C3HQJl7xqi1lp3GlTjrwl.jpg", "order": 34}, {"name": "Walter Smith", "character": "William Fessenden", "id": 197009, "credit_id": "52fe4886c3a368484e0fd4ed", "cast_id": 56, "profile_path": "/scjGbgrifbnYS35WLs6MDTosaiu.jpg", "order": 35}, {"name": "Dakin Matthews", "character": "John Usher", "id": 43364, "credit_id": "52fe4886c3a368484e0fd4f1", "cast_id": 57, "profile_path": "/tP63g4n8HPOUubsqUN8xZfXantn.jpg", "order": 36}, {"name": "Wayne Duvall", "character": "Senator Bluff Wade", "id": 1470, "credit_id": "52fe4886c3a368484e0fd4f5", "cast_id": 58, "profile_path": "/zCgi06IEyC3BM36PuscNdcXCTAC.jpg", "order": 37}, {"name": "Bill Raymond", "character": "Schuyler Colfax", "id": 7576, "credit_id": "52fe4886c3a368484e0fd4f9", "cast_id": 59, "profile_path": "/9qUefRsvEzitR2j8CwtXYbddayE.jpg", "order": 38}, {"name": "Drew Sease", "character": "David Homer Bates", "id": 1271708, "credit_id": "52fe4886c3a368484e0fd4fd", "cast_id": 60, "profile_path": "/blF7GxaniTudyugOvd6tTLX5xr0.jpg", "order": 39}, {"name": "John Hutton", "character": "Senator Charles Sumner", "id": 1271709, "credit_id": "52fe4886c3a368484e0fd501", "cast_id": 61, "profile_path": "/wU5BB3H2Jqo4KFmuwtX4hJ23W93.jpg", "order": 40}, {"name": "Chase Edmunds", "character": "Willie Lincoln", "id": 1271710, "credit_id": "52fe4886c3a368484e0fd505", "cast_id": 62, "profile_path": "/8ke2qp2wjaIKLqRtxP1vy8E7FiD.jpg", "order": 41}, {"name": "Gregory Itzin", "character": "Judge John A. Campbell", "id": 21142, "credit_id": "52fe4886c3a368484e0fd509", "cast_id": 63, "profile_path": "/wx5Tvzw9jvSAenXDfv1qJbI9vWF.jpg", "order": 42}, {"name": "John Lescault", "character": "Gustavus Fox", "id": 1271712, "credit_id": "52fe4886c3a368484e0fd50d", "cast_id": 64, "profile_path": "/nTwO6qVUtil8RP2OtPfPnrpnOnT.jpg", "order": 43}, {"name": "Mike Shiflett", "character": "Senator R.M.T. Hunter", "id": 1269695, "credit_id": "52fe4886c3a368484e0fd511", "cast_id": 65, "profile_path": "/AeflowoKIwOhAHHNXWR9yGfu5oX.jpg", "order": 44}, {"name": "Gannon McHale", "character": "Aaron Haddam", "id": 1271713, "credit_id": "52fe4886c3a368484e0fd515", "cast_id": 66, "profile_path": "/cTPCQqKcwBQqhdg8Tz7QRwwpeCL.jpg", "order": 45}, {"name": "Ken Lambert", "character": "August Benjamin", "id": 1271714, "credit_id": "52fe4886c3a368484e0fd519", "cast_id": 67, "profile_path": null, "order": 46}, {"name": "Thomas K. Belgrey", "character": "Arthur Bentleigh", "id": 176315, "credit_id": "52fe4886c3a368484e0fd51d", "cast_id": 68, "profile_path": "/lrlQ525u9a1rFnmAx0G4dqidhY3.jpg", "order": 47}, {"name": "Mary Dunleavy", "character": "Marguerite", "id": 1271715, "credit_id": "52fe4886c3a368484e0fd521", "cast_id": 69, "profile_path": "/tzzenIOS0kjqdgj5uFXhDWMMYRe.jpg", "order": 48}, {"name": "Armistead Wellford", "character": "Nehemiah Cleary", "id": 1271716, "credit_id": "52fe4886c3a368484e0fd525", "cast_id": 70, "profile_path": "/9kQSRApPMcjDEsrkSZTvINIFY8c.jpg", "order": 49}, {"name": "Ted Johnson", "character": "John Ellis", "id": 1271717, "credit_id": "52fe4886c3a368484e0fd529", "cast_id": 71, "profile_path": "/zDfhQ9yxz5OqUuRC3HuImN7eXoi.jpg", "order": 50}, {"name": "Don Henderson Baker", "character": "Walter Appleton", "id": 107406, "credit_id": "52fe4886c3a368484e0fd52d", "cast_id": 72, "profile_path": "/fTFiNzjHu0pxVHuvfSUID5oEVv9.jpg", "order": 51}, {"name": "Raynor Scheine", "character": "Josiah S. 'Beanpole' Burton", "id": 21082, "credit_id": "52fe4886c3a368484e0fd531", "cast_id": 73, "profile_path": "/o5jW5NDeFPIyETEVJQItQEqmJcx.jpg", "order": 52}, {"name": "Todd Fletcher", "character": "Walter H. Washburn", "id": 1189423, "credit_id": "52fe4886c3a368484e0fd535", "cast_id": 74, "profile_path": "/pPaZv7Pzusg8fwmotM9v9iZgMgy.jpg", "order": 53}, {"name": "Charles Kinney", "character": "Myer Strauss", "id": 1271718, "credit_id": "52fe4886c3a368484e0fd539", "cast_id": 75, "profile_path": null, "order": 54}, {"name": "Joseph Carlson", "character": "Joseph Marstern", "id": 1271719, "credit_id": "52fe4886c3a368484e0fd53d", "cast_id": 76, "profile_path": "/h34hoeJDkRfWJO7ZnaAe5rs9ire.jpg", "order": 55}, {"name": "Michael Goodwin", "character": "Chilton A. Elliot", "id": 157961, "credit_id": "52fe4886c3a368484e0fd541", "cast_id": 77, "profile_path": "/hHN4Ik3q8OjpYFsAsD0Qs6ppIpX.jpg", "order": 56}, {"name": "Edward McDonald", "character": "Daniel G. Stuart", "id": 1271720, "credit_id": "52fe4886c3a368484e0fd545", "cast_id": 78, "profile_path": "/jz5RVsiFlkeGHdODRQcRd9g61GN.jpg", "order": 57}, {"name": "Jim Batchelder", "character": "Howard Guillefoyle", "id": 1271721, "credit_id": "52fe4886c3a368484e0fd549", "cast_id": 79, "profile_path": null, "order": 58}, {"name": "Gregory Hosaflook", "character": "John F. McKenzie", "id": 1271722, "credit_id": "52fe4886c3a368484e0fd54d", "cast_id": 80, "profile_path": "/k0iSNkGv776mmJCLVz3V7ZSPX2t.jpg", "order": 59}, {"name": "Joe Kerkes", "character": "Andrew E. Finck", "id": 1271723, "credit_id": "52fe4886c3a368484e0fd551", "cast_id": 81, "profile_path": null, "order": 60}, {"name": "William Kaffenberger", "character": "John A. Casson", "id": 1271724, "credit_id": "52fe4886c3a368484e0fd555", "cast_id": 82, "profile_path": "/ocDQ1eEtMZLpHduqS9oEZQoiD4B.jpg", "order": 61}, {"name": "Larry Van Hoose", "character": "Avon Hanready", "id": 1271725, "credit_id": "52fe4887c3a368484e0fd559", "cast_id": 83, "profile_path": null, "order": 62}, {"name": "C. Brandon Marshall", "character": "Rufus Warren", "id": 1271726, "credit_id": "52fe4887c3a368484e0fd55d", "cast_id": 84, "profile_path": null, "order": 63}, {"name": "Christopher Boyer", "character": "General Robert E. Lee", "id": 153946, "credit_id": "52fe4887c3a368484e0fd561", "cast_id": 85, "profile_path": "/1J4pfvy7XW2LcV2qZkgyGb4xxDU.jpg", "order": 64}, {"name": "S. Epatha Merkerson", "character": "Lydia Smith", "id": 3978, "credit_id": "52fe4887c3a368484e0fd565", "cast_id": 86, "profile_path": "/wuzhs2DR1ImE3Y8kuMoCXpFaHVK.jpg", "order": 65}, {"name": "Robert Shepherd", "character": "Dr. Joseph K. Barnes", "id": 1050565, "credit_id": "52fe4887c3a368484e0fd569", "cast_id": 87, "profile_path": "/2SEUJgHH03owrYRAWBlpYRmTIUC.jpg", "order": 66}, {"name": "Grainger Hines", "character": "Gideon Welles", "id": 169839, "credit_id": "531a451e92514177ae002e32", "cast_id": 99, "profile_path": "/8eKbbE6CCtPS5NcIRQ7evoORr22.jpg", "order": 67}, {"name": "Skye Dennis", "character": "Union Soldier", "id": 1343249, "credit_id": "53dfc92ec3a3686c600027c0", "cast_id": 100, "profile_path": null, "order": 68}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4886c3a368484e0fd421", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.6, "runtime": 149}, "7442": {"poster_path": "/2GsBuNjlbuu6LKifsCiX5c9lgFZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 174999005, "overview": "A young woman fakes her own death in an attempt to escape her nightmarish marriage, but discovers it is impossible to elude her controlling husband.", "video": false, "id": 7442, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Sleeping with the Enemy", "tagline": "Self-Defense is not murder.", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0102945", "adult": false, "backdrop_path": "/fbAI69ystUiS1ESFkkQR0q5shhV.jpg", "production_companies": [{"name": "Twentieth Century Fox", "id": 7392}], "release_date": "1991-02-08", "popularity": 0.516093374294195, "original_title": "Sleeping with the Enemy", "budget": 19000000, "cast": [{"name": "Julia Roberts", "character": "Laura Burney", "id": 1204, "credit_id": "52fe447cc3a36847f809900d", "cast_id": 1, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "Patrick Bergin", "character": "Martin Burney", "id": 29459, "credit_id": "52fe447cc3a36847f8099011", "cast_id": 2, "profile_path": "/wmwtMCZsFTlckrsCpuz0jtuWu35.jpg", "order": 1}, {"name": "Kevin Anderson", "character": "Ben Woodward", "id": 51805, "credit_id": "52fe447cc3a36847f8099015", "cast_id": 3, "profile_path": "/roCItER7LbrJJvAV1Fku3jG9g8k.jpg", "order": 2}, {"name": "Elizabeth Lawrence", "character": "Chloe Williams", "id": 53302, "credit_id": "52fe447cc3a36847f8099043", "cast_id": 11, "profile_path": null, "order": 3}, {"name": "Tony Abatemarco", "character": "Locke", "id": 53303, "credit_id": "52fe447cc3a36847f8099047", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Kyle Secor", "character": "Fleishman", "id": 40258, "credit_id": "52fe447cc3a36847f809904b", "cast_id": 13, "profile_path": "/o5KQW91KqgfCvRUZwBwPx7mzHNC.jpg", "order": 5}, {"name": "Claudette Nevins", "character": "Dr. Rissner", "id": 104291, "credit_id": "52fe447cc3a36847f809904f", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Marita Geraghty", "character": "Julie", "id": 1536, "credit_id": "52fe447cc3a36847f8099053", "cast_id": 15, "profile_path": "/8BojqqNS3vt0zkZj4ctQztjhdcv.jpg", "order": 7}, {"name": "Harley Venton", "character": "Garber", "id": 168265, "credit_id": "52fe447cc3a36847f8099057", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Nancy Fish", "character": "Woman on Bus", "id": 42168, "credit_id": "52fe447cc3a36847f809905b", "cast_id": 17, "profile_path": "/rYbk1PFFTYgqrAkdp2wuV8G3juy.jpg", "order": 9}, {"name": "Sandi Shackelford", "character": "Edna", "id": 1168438, "credit_id": "52fe447cc3a36847f809905f", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Bonnie Johnson", "character": "Mrs. Nepper", "id": 218605, "credit_id": "52fe447cc3a36847f8099063", "cast_id": 19, "profile_path": "/jk2tPblrYHNm1fJOlapoV5zCE1d.jpg", "order": 11}, {"name": "Graham Harrington", "character": "Minister", "id": 1168439, "credit_id": "52fe447cc3a36847f8099067", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "John Ward", "character": "Theater Student", "id": 125910, "credit_id": "52fe447cc3a36847f809906b", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Sharon J. Robinson", "character": "Sharon (the Nurse)", "id": 1168440, "credit_id": "52fe447cc3a36847f809906f", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Joseph Ruben", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a36847f809901b", "profile_path": null, "id": 52629}], "vote_average": 6.4, "runtime": 99}, "23827": {"poster_path": "/ns7J1iMSDs5UkEVjMXLPiss7Lrt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 193355800, "overview": "After a young, middle class couple moves into a suburban 'starter' tract house, they become increasingly disturbed by a presence that may or may not be somehow demonic but is certainly most active in the middle of the night. Especially when they sleep. Or try to.", "video": false, "id": 23827, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}], "title": "Paranormal Activity", "tagline": "What Happens When You Sleep?", "vote_count": 332, "homepage": "http://www.paranormalactivity-movie.com/", "belongs_to_collection": {"backdrop_path": "/hZMiAPeINRH0M2X1PBEgn6YdULy.jpg", "poster_path": "/lYXAMmm9XlYmj5Dr4O9diLQVCJS.jpg", "id": 41437, "name": "Paranormal Activity Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1179904", "adult": false, "backdrop_path": "/sPaDUSuVQy1SL7ybnxilgWzLDAQ.jpg", "production_companies": [{"name": "Blumhouse Productions", "id": 3172}, {"name": "Solana Films", "id": 21223}], "release_date": "2007-09-14", "popularity": 1.21760085011471, "original_title": "Paranormal Activity", "budget": 15000, "cast": [{"name": "Katie Featherston", "character": "Katie", "id": 90596, "credit_id": "52fe4477c3a368484e024aed", "cast_id": 3, "profile_path": "/528ZtOX6HsTBwE9Z4BDFHRDquvE.jpg", "order": 0}, {"name": "Micah Sloat", "character": "Micah", "id": 90597, "credit_id": "52fe4477c3a368484e024af1", "cast_id": 4, "profile_path": "/mOmwvae1N5eZqDZBqaHPe2JiTQV.jpg", "order": 1}, {"name": "Mark Fredrichs", "character": "The Psychic", "id": 90598, "credit_id": "52fe4477c3a368484e024af5", "cast_id": 5, "profile_path": "/h8PmGTdVk5qqEfpEUFHF2JINf6a.jpg", "order": 2}, {"name": "Amber Armstrong", "character": "Amber", "id": 967678, "credit_id": "52fe4477c3a368484e024b35", "cast_id": 16, "profile_path": null, "order": 3}, {"name": "Ashley Palmer", "character": "Diane", "id": 967721, "credit_id": "52fe4477c3a368484e024b39", "cast_id": 17, "profile_path": null, "order": 4}], "directors": [{"name": "Oren Peli", "department": "Directing", "job": "Director", "credit_id": "52fe4477c3a368484e024afb", "profile_path": "/vmdyBa5wixR8cJzvxgvPJxLe6Xi.jpg", "id": 90591}], "vote_average": 6.2, "runtime": 86}, "7445": {"poster_path": "/rfLmpW2tzI40g91GiU0WSiMIxox.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill (Tobey Maguire) is presumed dead. Back home, brother Tommy (Jake Gyllenhaal) steps in to look over Sam\u2019s wife, Grace (Natalie Portman), and two children. Sam\u2019s surprise homecoming triggers domestic mayhem.", "video": false, "id": 7445, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Brothers", "tagline": "There are two sides to every family.", "vote_count": 134, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0765010", "adult": false, "backdrop_path": "/5wWe5mAZ8vK6dv8YLtHuqmgTO1u.jpg", "production_companies": [{"name": "Lionsgate", "id": 1632}, {"name": "Relativity Media", "id": 7295}, {"name": "Sighvatsson Films", "id": 11369}, {"name": "Michael De Luca Productions", "id": 11370}, {"name": "Palomar Pictures (II)", "id": 11371}], "release_date": "2009-12-02", "popularity": 0.627648831798876, "original_title": "Brothers", "budget": 26000000, "cast": [{"name": "Tobey Maguire", "character": "Sam Cahill", "id": 2219, "credit_id": "5301ec7a925141218c285708", "cast_id": 43, "profile_path": "/15mDmFEHoVGpfvEGjhFDgJPqoJ9.jpg", "order": 0}, {"name": "Jake Gyllenhaal", "character": "Tommy Cahill", "id": 131, "credit_id": "5301ec9292514121922b855f", "cast_id": 44, "profile_path": "/wRgIPBzVzIIhWcdJAduPOKJJHsL.jpg", "order": 1}, {"name": "Natalie Portman", "character": "Grace Cahill", "id": 524, "credit_id": "5301eca7925141219828af30", "cast_id": 45, "profile_path": "/s4pcj0A9PIOFiNyaB8NreTJbPsX.jpg", "order": 2}, {"name": "Sam Shepard", "character": "Hank Cahill", "id": 9880, "credit_id": "5301ecd7925141219b2471f8", "cast_id": 46, "profile_path": "/6KincXfDKVQaRHwtX6qMUAwOsR0.jpg", "order": 3}, {"name": "Mare Winningham", "character": "Elsie Cahill", "id": 51544, "credit_id": "5301ecfa92514121a725c633", "cast_id": 47, "profile_path": "/hDaZAbMo9fLranbNDei5e0t8VjL.jpg", "order": 4}, {"name": "Bailee Madison", "character": "Isabelle Cahill", "id": 54479, "credit_id": "5301ed2792514121922b904b", "cast_id": 48, "profile_path": "/bWrZAukMKC8cSvHSJs5SaDbh5z.jpg", "order": 5}, {"name": "Taylor Geare", "character": "Maggie Cahill", "id": 967376, "credit_id": "5301ed42925141218f285383", "cast_id": 49, "profile_path": "/2ITSJXHWdkAFWu1hqIfr53zib8J.jpg", "order": 6}, {"name": "Clifton Collins, Jr.", "character": "Maj. Cavazos", "id": 5365, "credit_id": "5301ed6592514121a725d2aa", "cast_id": 50, "profile_path": "/4gt2oqy6SjJxlbUgKIEbpQrEwas.jpg", "order": 7}, {"name": "Carey Mulligan", "character": "Cassie Willis", "id": 36662, "credit_id": "5301ed8592514121a725d9c4", "cast_id": 51, "profile_path": "/pxLjmBeSNlDlknubfGmFxuZP1ZI.jpg", "order": 8}, {"name": "Patrick John Flueger", "character": "Joe Willis", "id": 115730, "credit_id": "5301eda1925141218c28748e", "cast_id": 52, "profile_path": "/xMGamAcbjj3m8dvl3do0yQNYXg7.jpg", "order": 9}, {"name": "Jenny Wade", "character": "Tina", "id": 33430, "credit_id": "5301edb39251412195260492", "cast_id": 53, "profile_path": "/3f85y7cJfHk05T5fuZem6kfLJoW.jpg", "order": 10}, {"name": "Omid Abtahi", "character": "Yusuf", "id": 167862, "credit_id": "5301edc8925141218f285d9b", "cast_id": 54, "profile_path": "/fk1qZBpQls4G6jV7PzYr5TELAhk.jpg", "order": 11}, {"name": "Ethan Suplee", "character": "Sweeney", "id": 824, "credit_id": "5301edde9251412195260b04", "cast_id": 55, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 12}, {"name": "Navid Negahban", "character": "Murad", "id": 103330, "credit_id": "5301ee0192514121a725e5c0", "cast_id": 57, "profile_path": "/qxp9X0SIA0FWts2qK60IcrmUhnF.jpg", "order": 13}, {"name": "Ray Prewitt", "character": "Owen", "id": 1117439, "credit_id": "5301edf092514121a428b7f1", "cast_id": 56, "profile_path": null, "order": 14}, {"name": "Arron Shiver", "character": "A.J.", "id": 105786, "credit_id": "53a94758c3a3687a31006b7a", "cast_id": 67, "profile_path": "/whHOz0t0JWvZd1LgeRm4oQe9KjO.jpg", "order": 15}, {"name": "Carrie Fleming", "character": "Marine Wife", "id": 209844, "credit_id": "53a947bac3a3687a40006a7a", "cast_id": 68, "profile_path": "/vDKtHr181M2GoMOpPVw0oRLy6xt.jpg", "order": 16}, {"name": "Jason E. Hill", "character": "Lt. Sanderson", "id": 1333907, "credit_id": "53a9480ec3a3687a40006a82", "cast_id": 69, "profile_path": null, "order": 17}, {"name": "Kevin Wiggins", "character": "Navy Chaplain", "id": 1240490, "credit_id": "53a9487fc3a3687495005ee0", "cast_id": 70, "profile_path": null, "order": 18}, {"name": "Yousuf Azami", "character": "Taliban Leader", "id": 123102, "credit_id": "53a948adc3a3687a2b00701f", "cast_id": 71, "profile_path": "/lEB2ryIlwygt5msLv4ICxPKBYxX.jpg", "order": 19}, {"name": "James D. Dever", "character": "Sgt. Major Dever", "id": 1205880, "credit_id": "53a948f6c3a3687a43006ae5", "cast_id": 72, "profile_path": "/npGJyTO5Nq7loQ8s7lZhKZkDdKf.jpg", "order": 20}, {"name": "Luce Rains", "character": "The Nose", "id": 53969, "credit_id": "53a949e2c3a3687a40006ab4", "cast_id": 73, "profile_path": "/1vn8TGhhs1aDSzFHUC0wHp9X9P1.jpg", "order": 21}], "directors": [{"name": "Jim Sheridan", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f80991db", "profile_path": "/mfukw1JcUsXmUzt6IoaayMaescv.jpg", "id": 53334}], "vote_average": 6.5, "runtime": 104}, "23830": {"poster_path": "/dspTY7C3IHXsMm5dZVQqqgfPHbN.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 7644937, "overview": "The story follows a married couple, apart for a night while the husband takes a business trip with a colleague to whom he's attracted. While he's resisting temptation, his wife encounters her past love.", "video": false, "id": 23830, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Last Night", "tagline": "Temptation can lead anywhere.", "vote_count": 53, "homepage": "http://www.lastnightmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1294688", "adult": false, "backdrop_path": "/3JwMtXzTndAQDkRtg43bG6EEkf4.jpg", "production_companies": [{"name": "Gaumont", "id": 9}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Star Entertainment", "id": 23035}], "release_date": "2010-09-18", "popularity": 0.578541300585961, "original_title": "Last Night", "budget": 7000000, "cast": [{"name": "Keira Knightley", "character": "Joanna Reed", "id": 116, "credit_id": "52fe4477c3a368484e024b69", "cast_id": 3, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Sam Worthington", "character": "Michael Reed", "id": 65731, "credit_id": "52fe4477c3a368484e024b6d", "cast_id": 4, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Eva Mendes", "character": "Laura", "id": 8170, "credit_id": "52fe4477c3a368484e024b71", "cast_id": 5, "profile_path": "/6JoVMpn0CcZwb6JK7XW2E6ntU52.jpg", "order": 2}, {"name": "Guillaume Canet", "character": "Alex Mann", "id": 19866, "credit_id": "52fe4477c3a368484e024b75", "cast_id": 6, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 3}, {"name": "Griffin Dunne", "character": "Truman", "id": 2171, "credit_id": "52fe4477c3a368484e024b79", "cast_id": 7, "profile_path": "/v3ahyscvpy5kt97TmfnGJ6w5xL6.jpg", "order": 4}, {"name": "Scott Adsit", "character": "Stuart", "id": 66580, "credit_id": "52fe4477c3a368484e024b7d", "cast_id": 8, "profile_path": "/8VTCE0c8RSLYsgRqA8UDPRbBvYm.jpg", "order": 5}, {"name": "Anson Mount", "character": "Andy", "id": 56675, "credit_id": "52fe4477c3a368484e024b87", "cast_id": 10, "profile_path": "/x7wZITQ3UZihjm7BVDbN63kUv6Q.jpg", "order": 6}, {"name": "Daniel Eric Gold", "character": "Andy", "id": 182280, "credit_id": "52fe4477c3a368484e024b8b", "cast_id": 11, "profile_path": "/vjoblDgnNr5amken3utyM0p6ykR.jpg", "order": 7}, {"name": "Stephanie Romanov", "character": "Sandra", "id": 159485, "credit_id": "52fe4477c3a368484e024b8f", "cast_id": 12, "profile_path": "/h9cDc4SN7jRkn26TDRWCwpW9vFV.jpg", "order": 8}, {"name": "Justine Cotsonas", "character": "Maggie", "id": 144577, "credit_id": "52fe4477c3a368484e024b93", "cast_id": 13, "profile_path": "/9cbHkz3ALfwqOhXepHxX1FFYQhr.jpg", "order": 9}, {"name": "Stephen Mailer", "character": "Client #1", "id": 170977, "credit_id": "52fe4477c3a368484e024b97", "cast_id": 14, "profile_path": null, "order": 10}, {"name": "Rae Ritke", "character": "Barbara", "id": 167293, "credit_id": "52fe4477c3a368484e024b9b", "cast_id": 15, "profile_path": null, "order": 11}, {"name": "Chriselle Almeida", "character": "Chris", "id": 549316, "credit_id": "52fe4477c3a368484e024b9f", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Zach Poole", "character": "Waiter", "id": 206626, "credit_id": "52fe4477c3a368484e024ba3", "cast_id": 17, "profile_path": null, "order": 13}, {"name": "Jon Norman Schneider", "character": "Server", "id": 549318, "credit_id": "52fe4477c3a368484e024ba7", "cast_id": 18, "profile_path": null, "order": 14}], "directors": [{"name": "Massy Tadjedin", "department": "Directing", "job": "Director", "credit_id": "52fe4477c3a368484e024b65", "profile_path": null, "id": 90607}], "vote_average": 6.3, "runtime": 90}, "81796": {"poster_path": "/6Re7l6UQDlTzfmn3yNL35pvr2mG.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 28726864, "overview": "Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President's daughter from rioting convicts at an outer space maximum security prison.", "video": false, "id": 81796, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Lockout", "tagline": "Take no prisoners.", "vote_count": 257, "homepage": "http://www.lockoutfilm.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1592525", "adult": false, "backdrop_path": "/t2qDw8mZlwIvdBVOBogRnFdL018.jpg", "production_companies": [{"name": "Cin\u00e9+", "id": 10611}, {"name": "EuropaCorp", "id": 6896}, {"name": "Canal+", "id": 5358}], "release_date": "2012-04-12", "popularity": 1.08748635301462, "original_title": "Lockout", "budget": 20000000, "cast": [{"name": "Guy Pearce", "character": "Snow", "id": 529, "credit_id": "52fe482c9251416c91082d01", "cast_id": 1, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 0}, {"name": "Maggie Grace", "character": "Emilie Warnock", "id": 11825, "credit_id": "52fe482c9251416c91082d05", "cast_id": 2, "profile_path": "/hW4CEZjGEqSRnhGHI7GTgseOy3e.jpg", "order": 1}, {"name": "Joseph Gilgun", "character": "Hydell", "id": 225610, "credit_id": "52fe482c9251416c91082d09", "cast_id": 3, "profile_path": "/gFU8IhfACrTAuSY6EWuqJ2euOfk.jpg", "order": 2}, {"name": "Lennie James", "character": "Harry Shaw", "id": 1120, "credit_id": "52fe482c9251416c91082d0d", "cast_id": 4, "profile_path": "/ilmHrtWZMa7FP3yCyJoHX6sSZjx.jpg", "order": 3}, {"name": "Peter Stormare", "character": "Scott Langral", "id": 53, "credit_id": "52fe482c9251416c91082d2f", "cast_id": 15, "profile_path": "/dDR0brp5L7fXDyEywrhjQv01LSg.jpg", "order": 4}, {"name": "Vincent Regan", "character": "Alex", "id": 9831, "credit_id": "52fe482c9251416c91082d33", "cast_id": 16, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 5}, {"name": "Jacky Ido", "character": "Hock", "id": 51636, "credit_id": "52fe482c9251416c91082d37", "cast_id": 17, "profile_path": "/eBR6SX0hge1p3gWjxxRsmSzzhmQ.jpg", "order": 6}, {"name": "Yan Dron", "character": "Hitman N1", "id": 118598, "credit_id": "52fe482c9251416c91082d3b", "cast_id": 18, "profile_path": "/m4rLzOWGcz9hJMSZ8smNdavVQo.jpg", "order": 7}, {"name": "Tim Plester", "character": "Mace", "id": 62972, "credit_id": "52fe482c9251416c91082d3f", "cast_id": 19, "profile_path": null, "order": 8}, {"name": "Nick Harding", "character": "The Negociator", "id": 271710, "credit_id": "52fe482c9251416c91082d43", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Dan Savier", "character": "Duke", "id": 1026037, "credit_id": "52fe482c9251416c91082d7d", "cast_id": 31, "profile_path": null, "order": 10}, {"name": "Damijan Oklopdzic", "character": "Slick", "id": 1026038, "credit_id": "52fe482c9251416c91082d81", "cast_id": 32, "profile_path": null, "order": 11}, {"name": "Bojan Peric", "character": "LOPD Technician 1", "id": 1026039, "credit_id": "52fe482c9251416c91082d85", "cast_id": 33, "profile_path": null, "order": 12}], "directors": [{"name": "Stephen St. Leger", "department": "Directing", "job": "Director", "credit_id": "52fe482c9251416c91082d13", "profile_path": "/aD047Tx772IeCqQR6bITIclEsHE.jpg", "id": 936154}], "vote_average": 5.7, "runtime": 95}, "7450": {"poster_path": "/huI8CYyxY0BhzJSLn6XAP4nWAv.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 36754634, "overview": "A young man finds out that he holds the key to restoring hope and insuring survival for the human race, while an alien species called the Dredge are bent on mankind's destruction.", "video": false, "id": 7450, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Titan A.E.", "tagline": "When Earth Ends, The Adventure Begins.", "vote_count": 83, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0120913", "adult": false, "backdrop_path": "/dkOA9O8bWgIz83modVvLnF2DZcW.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}, {"name": "David Kirschner Productions", "id": 11050}, {"name": "Fox Animation Studios", "id": 11231}], "release_date": "2000-06-13", "popularity": 0.781478681040794, "original_title": "Titan A.E.", "budget": 75000000, "cast": [{"name": "Matt Damon", "character": "Cale Tucker", "id": 1892, "credit_id": "52fe447dc3a36847f8099461", "cast_id": 3, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Bill Pullman", "character": "Captain Korso", "id": 8984, "credit_id": "52fe447dc3a36847f8099465", "cast_id": 4, "profile_path": "/lBeo0LqPSRe9JWN2SnQNwY8Rtiu.jpg", "order": 1}, {"name": "Drew Barrymore", "character": "Akima", "id": 69597, "credit_id": "52fe447dc3a36847f8099475", "cast_id": 8, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 2}, {"name": "John Leguizamo", "character": "Gune", "id": 5723, "credit_id": "52fe447dc3a36847f8099469", "cast_id": 5, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 3}, {"name": "Nathan Lane", "character": "Preed", "id": 78729, "credit_id": "52fe447dc3a36847f809946d", "cast_id": 6, "profile_path": "/fKxRV7wAZTUeAp76YGwzMOzuVSv.jpg", "order": 4}, {"name": "Janeane Garofalo", "character": "Stith", "id": 21197, "credit_id": "52fe447dc3a36847f8099471", "cast_id": 7, "profile_path": "/jwZs05qdp8kh6IwfECxDyRrteK8.jpg", "order": 5}, {"name": "Ron Perlman", "character": "Prof. Sam Tucker", "id": 2372, "credit_id": "52fe447dc3a36847f8099479", "cast_id": 9, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 6}, {"name": "Alex D. Linz", "character": "Young Cale", "id": 15789, "credit_id": "52fe447dc3a36847f809947d", "cast_id": 10, "profile_path": "/fkFBjpfC3Wm97SozMrIERc01uyt.jpg", "order": 7}], "directors": [{"name": "Don Bluth", "department": "Directing", "job": "Director", "credit_id": "52fe447dc3a36847f8099457", "profile_path": "/sek7iLDM6J8Poc2FueAkgCUytfn.jpg", "id": 40345}, {"name": "Gary Goldman", "department": "Directing", "job": "Director", "credit_id": "55397b72c3a3685f9b002c33", "profile_path": "/3GPDphDxHIlT3D8GiMCKsf3X4Rj.jpg", "id": 12881}], "vote_average": 6.4, "runtime": 94}, "113947": {"poster_path": "/iGkRA26pMY7Hhqu8uuIR1MuIMiY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Though a childhood bout with polio left him dependent on an iron lung, Mark O'Brien (John Hawkes) maintains a career as a journalist and poet. A writing assignment dealing with sex and the disabled piques Mark's curiosity, and he decides to investigate the possibility of experiencing sex himself. When his overtures toward a caregiver scare her away, he books an appointment with sex surrogate Cheryl Green (Helen Hunt) to lose his virginity.", "video": false, "id": 113947, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Sessions", "tagline": "The festival hit of the year!", "vote_count": 64, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1866249", "adult": false, "backdrop_path": "/1fd15UNDW75q6pAFN9QkB2WWcJW.jpg", "production_companies": [{"name": "Such Much Films", "id": 13195}, {"name": "Rhino Films", "id": 1591}], "release_date": "2012-10-18", "popularity": 0.865713647798176, "original_title": "The Sessions", "budget": 1000000, "cast": [{"name": "John Hawkes", "character": "Mark O'Brien", "id": 16861, "credit_id": "52fe4b42c3a36847f81fa8ad", "cast_id": 3, "profile_path": "/bz4usMR7NWEgVgWTxVBLEjCo3Dv.jpg", "order": 0}, {"name": "Helen Hunt", "character": "Cheryl Cohen Greene", "id": 9994, "credit_id": "52fe4b42c3a36847f81fa8b1", "cast_id": 4, "profile_path": "/ws1ClG9BBUIVLZRYTNKconJn9Sy.jpg", "order": 1}, {"name": "William H. Macy", "character": "Father Brendan", "id": 3905, "credit_id": "52fe4b42c3a36847f81fa8b5", "cast_id": 5, "profile_path": "/cYmHYCGxkOVZgu2oDyhF6lKgfaj.jpg", "order": 2}, {"name": "Moon Bloodgood", "character": "", "id": 56455, "credit_id": "52fe4b42c3a36847f81fa8bf", "cast_id": 7, "profile_path": "/kqzvpsAgrwMaRK80jO6wHN550wI.jpg", "order": 3}, {"name": "Annika Marks", "character": "", "id": 1099170, "credit_id": "52fe4b42c3a36847f81fa8c3", "cast_id": 8, "profile_path": "/lqpnmI2Z1smu0Kw8UpXs4w44UYz.jpg", "order": 4}, {"name": "W. Earl Brown", "character": "", "id": 6951, "credit_id": "52fe4b42c3a36847f81fa8c7", "cast_id": 9, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 5}, {"name": "Blake Lindsley", "character": "", "id": 41690, "credit_id": "52fe4b42c3a36847f81fa8cb", "cast_id": 10, "profile_path": "/jW9esvFejQSyjyZZMqUg4xcbsww.jpg", "order": 6}, {"name": "Adam Arkin", "character": "", "id": 55257, "credit_id": "52fe4b42c3a36847f81fa8cf", "cast_id": 11, "profile_path": "/tJM4zD66sYytoGl6W928NmdbKjJ.jpg", "order": 7}], "directors": [{"name": "Ben Lewin", "department": "Directing", "job": "Director", "credit_id": "52fe4b42c3a36847f81fa8a3", "profile_path": null, "id": 168330}], "vote_average": 6.6, "runtime": 98}, "7453": {"poster_path": "/fOb4cJMhnZ11BoHNUii3Vcfo3XU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 104478416, "overview": "Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of \"The Hitchhiker's Guide to the Galaxy.\"", "video": false, "id": 7453, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "The Hitchhiker's Guide to the Galaxy", "tagline": "Don't leave Earth without it.", "vote_count": 317, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0371724", "adult": false, "backdrop_path": "/lALaxxUVJoZMeRcW3HfvG7QoDua.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Spyglass Entertainment", "id": 158}, {"name": "Everyman Pictures", "id": 2242}, {"name": "Hammer & Tongs", "id": 2243}], "release_date": "2005-01-15", "popularity": 1.01433275041865, "original_title": "The Hitchhiker's Guide to the Galaxy", "budget": 50000000, "cast": [{"name": "Martin Freeman", "character": "Arthur Dent", "id": 7060, "credit_id": "52fe447ec3a36847f8099611", "cast_id": 12, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 0}, {"name": "Zooey Deschanel", "character": "Trillian", "id": 11664, "credit_id": "52fe447ec3a36847f80995f3", "cast_id": 5, "profile_path": "/ktjfylBzoJJik70F5VyGFiRgxUf.jpg", "order": 1}, {"name": "Sam Rockwell", "character": "Zaphod Beeblebrox", "id": 6807, "credit_id": "52fe447ec3a36847f80995e7", "cast_id": 2, "profile_path": "/sKmpynD57Nwd62hrkjlXFK9hzGg.jpg", "order": 2}, {"name": "Mos Def", "character": "Ford Prefect", "id": 4239, "credit_id": "52fe447ec3a36847f80995eb", "cast_id": 3, "profile_path": "/x51WKi3gxwobt9Sov5HeS5kKHUe.jpg", "order": 3}, {"name": "John Malkovich", "character": "Humma Kavula", "id": 6949, "credit_id": "52fe447ec3a36847f80995e3", "cast_id": 1, "profile_path": "/nqiVrEVW3DAHS9K5L3JWO4sYngC.jpg", "order": 4}, {"name": "Helen Mirren", "character": "Deep Thought", "id": 15735, "credit_id": "52fe447ec3a36847f80995ef", "cast_id": 4, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 5}, {"name": "Anna Chancellor", "character": "Questular Rontok", "id": 10731, "credit_id": "52fe447ec3a36847f8099609", "cast_id": 10, "profile_path": "/x4w6AN9CX8s3RhQEqdKFUQlzHgg.jpg", "order": 6}, {"name": "Bill Bailey", "character": "The Whale", "id": 24265, "credit_id": "52fe447ec3a36847f809960d", "cast_id": 11, "profile_path": "/1e1XFFesh5cQJWf3brBgfMxznE9.jpg", "order": 7}, {"name": "Dominique Jackson", "character": "Fook", "id": 53352, "credit_id": "52fe447ec3a36847f8099615", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Thomas Lennon", "character": "Eddie the Computer", "id": 539, "credit_id": "52fe447ec3a36847f8099619", "cast_id": 14, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 9}, {"name": "Bill Nighy", "character": "Slartibartfast", "id": 2440, "credit_id": "52fe447ec3a36847f809961d", "cast_id": 15, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 10}, {"name": "Alan Rickman", "character": "Marvin", "id": 4566, "credit_id": "52fe447ec3a36847f8099621", "cast_id": 16, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 11}, {"name": "Steve Pemberton", "character": "Mr. Prosser", "id": 28485, "credit_id": "52fe447ec3a36847f8099625", "cast_id": 17, "profile_path": "/jToKs3u7DSCA0eZrKP0rcrjS8dR.jpg", "order": 12}, {"name": "Albie Woodington", "character": "Barman", "id": 53353, "credit_id": "52fe447ec3a36847f8099629", "cast_id": 18, "profile_path": null, "order": 13}, {"name": "Warwick Davis", "character": "Marvin", "id": 11184, "credit_id": "5405ce290e0a264d83001e6a", "cast_id": 31, "profile_path": "/5xBunTQJexQOuCmtlh8MNJerbaM.jpg", "order": 14}, {"name": "Jos\u00e9 Wilker", "character": "Narrator version Brazil", "id": 55836, "credit_id": "541c91250e0a2638e70022c1", "cast_id": 32, "profile_path": "/lTliHmuXEZfFSJiZHiA0tDl78yN.jpg", "order": 15}], "directors": [{"name": "Garth Jennings", "department": "Directing", "job": "Director", "credit_id": "52fe447ec3a36847f80995f9", "profile_path": "/ahQh5uW5CXLe1LotxN4Y20aj5Gx.jpg", "id": 52842}], "vote_average": 6.5, "runtime": 109}, "7457": {"poster_path": "/vyFj7ZFm5AWApNGowpUzoakMuyS.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15309302, "overview": "Johnny Truelove likes to see himself as tough. He's the son of an underworld figure and a drug dealer. Johnny also likes to get tough when things don't go his way. When Jake Mazursky fails to pay up for Johnny, things get worse for the Mazursky family, as Johnny and his 'gang' kidnap Jake's 15 year old brother and holds him hostage. Problem now is what to do with 'stolen boy?'", "video": false, "id": 7457, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Alpha Dog", "tagline": "One crime. 38 witnesses. No way back.", "vote_count": 122, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0426883", "adult": false, "backdrop_path": "/LxmZLr6VHeibkq5DG0LvRKJWrX.jpg", "production_companies": [{"name": "A-Mark Entertainment", "id": 2248}], "release_date": "2006-01-27", "popularity": 0.562646832895379, "original_title": "Alpha Dog", "budget": 0, "cast": [{"name": "Bruce Willis", "character": "Sonny Truelove", "id": 62, "credit_id": "52fe447ec3a36847f809974b", "cast_id": 1, "profile_path": "/kI1OluWhLJk3pnR19VjOfABpnTY.jpg", "order": 0}, {"name": "Matthew Barry", "character": "Interviewer (as Matt Barry)", "id": 545, "credit_id": "52fe447ec3a36847f809974f", "cast_id": 2, "profile_path": null, "order": 1}, {"name": "Emile Hirsch", "character": "Johnny Truelove", "id": 46593, "credit_id": "52fe447ec3a36847f8099753", "cast_id": 3, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 2}, {"name": "Fernando Vargas", "character": "Tiko 'TKO' Martinez", "id": 52645, "credit_id": "52fe447ec3a36847f8099757", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Vincent Kartheiser", "character": "Pick Giaimo", "id": 52646, "credit_id": "52fe447ec3a36847f809975b", "cast_id": 5, "profile_path": "/zgSvuYVE59Ry9Q2qIXM7XAe8R03.jpg", "order": 4}, {"name": "Justin Timberlake", "character": "Frankie Ballenbacher", "id": 12111, "credit_id": "52fe447ec3a36847f809975f", "cast_id": 6, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 5}, {"name": "Shawn Hatosy", "character": "Elvis Schmidt", "id": 52647, "credit_id": "52fe447ec3a36847f8099763", "cast_id": 7, "profile_path": "/cpkJ13nGanRHDdjc3txrq8UWPAJ.jpg", "order": 6}, {"name": "Alex Solowitz", "character": "Bobby '911'", "id": 52648, "credit_id": "52fe447ec3a36847f8099767", "cast_id": 8, "profile_path": "/gAIrNVbk2V0PloBaXnosdOxe2Oa.jpg", "order": 7}, {"name": "Alec Vigil", "character": "P.J. Truelove", "id": 52649, "credit_id": "52fe447ec3a36847f809976b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Harry Dean Stanton", "character": "Cosmo Gadabeeti", "id": 5048, "credit_id": "52fe447ec3a36847f809976f", "cast_id": 10, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 9}, {"name": "Frank Cassavetes", "character": "Adrian Jones", "id": 52650, "credit_id": "52fe447ec3a36847f8099773", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Nicole Dubos", "character": "Neighborhood Girl on Couch", "id": 52651, "credit_id": "52fe447ec3a36847f8099777", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Regina Rice", "character": "Dance Bitch Girl", "id": 52652, "credit_id": "52fe447ec3a36847f809977b", "cast_id": 13, "profile_path": "/ggYVpD1WImaJ3sBw8e3HL8UEuHn.jpg", "order": 12}, {"name": "Laura Nativo", "character": "Party Girl", "id": 52653, "credit_id": "52fe447ec3a36847f809977f", "cast_id": 14, "profile_path": "/gXjx1gXM4WQ6RWm0k8FQ0p8ZoLr.jpg", "order": 13}, {"name": "Ben Foster", "character": "Jake Mazursky", "id": 11107, "credit_id": "52fe447ec3a36847f8099783", "cast_id": 15, "profile_path": "/kETVqU8PMDM44wM5mxPeegdGt2F.jpg", "order": 14}, {"name": "Amber Heard", "character": "Alma", "id": 55085, "credit_id": "52fe447ec3a36847f809979f", "cast_id": 20, "profile_path": "/AeHnP2KOu3RmZDobNxLKtfuNeNi.jpg", "order": 15}, {"name": "Anton Yelchin", "character": "Zack Mazursky", "id": 21028, "credit_id": "52fe447ec3a36847f80997a3", "cast_id": 21, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 16}, {"name": "David Thornton", "character": "Butch Mazursky", "id": 76526, "credit_id": "52fe447ec3a36847f80997a7", "cast_id": 22, "profile_path": "/jDcmAwRCUYd3QSVEVc9Xq2Yi9Xf.jpg", "order": 17}, {"name": "Sharon Stone", "character": "Olivia Mazursky", "id": 4430, "credit_id": "52fe447ec3a36847f80997ab", "cast_id": 23, "profile_path": "/n28skoawvqAymYr6gRSm2pfro0i.jpg", "order": 18}, {"name": "Olivia Wilde", "character": "Angela Holden", "id": 59315, "credit_id": "52fe447ec3a36847f80997af", "cast_id": 24, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 19}, {"name": "Heather Wahlquist", "character": "Wanda Haynes", "id": 55317, "credit_id": "52fe447ec3a36847f80997b3", "cast_id": 25, "profile_path": "/232o4HJQu4M5cv6VNOxdvXV8itx.jpg", "order": 20}, {"name": "Amanda Seyfried", "character": "Julie Beckley", "id": 71070, "credit_id": "52fe447ec3a36847f80997b7", "cast_id": 26, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 21}, {"name": "Shera Danese", "character": "Abby", "id": 1220746, "credit_id": "533bb7fbc3a36844e5000e08", "cast_id": 27, "profile_path": "/qKIE9ef0cd401qWfrr6Bws0o7qm.jpg", "order": 22}], "directors": [{"name": "Nick Cassavetes", "department": "Directing", "job": "Director", "credit_id": "52fe447ec3a36847f8099789", "profile_path": "/daXFYs1PxFtrAZJv5iLMpqnIGet.jpg", "id": 11151}], "vote_average": 6.4, "runtime": 122}, "7459": {"poster_path": "/zTplGrRuGcjzB9F9t7MC7DMiM43.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93945766, "overview": "Speed racer is the tale of a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, he must team up with the police and the mysterious Racer X to bring and end to the corruption and criminal activities. Inspired by the cartoon series.", "video": false, "id": 7459, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}, {"id": 10751, "name": "Family"}], "title": "Speed Racer", "tagline": "Go!", "vote_count": 94, "homepage": "http://www.speedracerthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0811080", "adult": false, "backdrop_path": "/5tbEFOVutwr0HdihrGj27eGIsxC.jpg", "production_companies": [{"name": "Village Roadshow Pictures", "id": 79}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "Silver Pictures", "id": 1885}, {"name": "Anarchos Productions", "id": 450}, {"name": "Velocity Productions", "id": 12170}, {"name": "Sechste Babelsberg Film", "id": 12171}], "release_date": "2008-05-09", "popularity": 0.479403301198401, "original_title": "Speed Racer", "budget": 120000000, "cast": [{"name": "Emile Hirsch", "character": "Speed Racer", "id": 46593, "credit_id": "52fe447ec3a36847f8099887", "cast_id": 1, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 0}, {"name": "Christina Ricci", "character": "Trixie", "id": 6886, "credit_id": "52fe447ec3a36847f809988b", "cast_id": 2, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 1}, {"name": "Matthew Fox", "character": "Racer X", "id": 28657, "credit_id": "52fe447ec3a36847f809988f", "cast_id": 3, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 2}, {"name": "Susan Sarandon", "character": "Mom Racer", "id": 4038, "credit_id": "52fe447ec3a36847f8099893", "cast_id": 4, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 3}, {"name": "Scott Porter", "character": "Rex Racer", "id": 53368, "credit_id": "52fe447ec3a36847f8099897", "cast_id": 5, "profile_path": "/1R6q8umfHD4Fka1Qc5em1wWR2mi.jpg", "order": 4}, {"name": "John Goodman", "character": "Pops Racer", "id": 1230, "credit_id": "52fe447ec3a36847f809989b", "cast_id": 6, "profile_path": "/mLJC7sRO3JnGkySJlwCJblvhBHm.jpg", "order": 5}, {"name": "Hiroyuki Sanada", "character": "Mr. Musha", "id": 9195, "credit_id": "52fe447ec3a36847f809989f", "cast_id": 7, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 6}, {"name": "Art LaFleur", "character": "Fuji Announcer", "id": 44792, "credit_id": "52fe447fc3a36847f80998bb", "cast_id": 13, "profile_path": "/4rEvPSEtiOeYfqNzwZ6PnCCAP9F.jpg", "order": 7}, {"name": "Richard Roundtree", "character": "Ben Burns", "id": 6487, "credit_id": "52fe447fc3a36847f80998bf", "cast_id": 14, "profile_path": "/3OyAx3Vrv1mQLOvl7YHaIaFwDuW.jpg", "order": 8}, {"name": "Togo Igawa", "character": "Mr. Togokahn", "id": 9192, "credit_id": "52fe447fc3a36847f80998c3", "cast_id": 15, "profile_path": "/b67aPXMDFfDPKum0hyqAAO7KfSK.jpg", "order": 9}, {"name": "Nan Yu", "character": "Horuko Togokahn", "id": 27084, "credit_id": "52fe447fc3a36847f80998c7", "cast_id": 16, "profile_path": "/xKWnjXyp5wb6HVbj5CbY7gywLTL.jpg", "order": 10}, {"name": "Cosma Shiva Hagen", "character": "Gennie", "id": 16718, "credit_id": "52fe447fc3a36847f80998cb", "cast_id": 17, "profile_path": "/qEx7ERu90J6iHp2gjmTiehJpnZu.jpg", "order": 11}, {"name": "Roger Allam", "character": "Royalton", "id": 11279, "credit_id": "52fe447fc3a36847f80998cf", "cast_id": 18, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 12}, {"name": "Nayo Wallace", "character": "Minx", "id": 1050936, "credit_id": "52fe447fc3a36847f80998d3", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Rain", "character": "Taejo Togokahn", "id": 112013, "credit_id": "52fe447fc3a36847f80998d7", "cast_id": 20, "profile_path": "/7oLrI71PNp9iGwJkgr2Bq34t2Yt.jpg", "order": 14}, {"name": "Moritz Bleibtreu", "character": "Grey Ghost", "id": 677, "credit_id": "5364e89f0e0a2647db001302", "cast_id": 41, "profile_path": "/1b6TCGecTnKDw3HW5bQzHSeIsW1.jpg", "order": 15}, {"name": "Benno F\u00fcrmann", "character": "Inspektor Detektor", "id": 11953, "credit_id": "5364e8ae0e0a2647d10012ed", "cast_id": 42, "profile_path": "/oaOk5Sm3yTxO1QAnYiQVVDfHGMg.jpg", "order": 16}, {"name": "Ralph Herforth", "character": "Cannonball Taylor", "id": 1856, "credit_id": "5364e8bf0e0a2647d80013a7", "cast_id": 43, "profile_path": "/3soxWivaOiRS05nP5KfbCTg9nPs.jpg", "order": 17}], "directors": [{"name": "Lana Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe447ec3a36847f80998a5", "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg", "id": 9340}, {"name": "Andy Wachowski", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f80998b7", "profile_path": "/nh5SBuv9cm1FByTc7dlV0zyO3GO.jpg", "id": 9339}], "vote_average": 5.6, "runtime": 135}, "81188": {"poster_path": "/sIZr3pWcnLTjMkOaTkBrV967lTK.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 302317123, "overview": "When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.", "video": false, "id": 81188, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Rise of the Guardians", "tagline": "You better believe.", "vote_count": 747, "homepage": "http://www.riseoftheguardians.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1446192", "adult": false, "backdrop_path": "/5oULqegVKFW58cgSxPd5DHE81yN.jpg", "production_companies": [{"name": "DreamWorks Animation", "id": 521}], "release_date": "2012-11-29", "popularity": 1.63518018679587, "original_title": "Rise of the Guardians", "budget": 145000000, "cast": [{"name": "Chris Pine", "character": "Jack Frost (voice)", "id": 62064, "credit_id": "52fe47fe9251416c9107c90d", "cast_id": 2, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 0}, {"name": "Alec Baldwin", "character": "North (voice)", "id": 7447, "credit_id": "52fe47fe9251416c9107c919", "cast_id": 5, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 1}, {"name": "Jude Law", "character": "Pitch (voice)", "id": 9642, "credit_id": "52fe47fe9251416c9107c915", "cast_id": 4, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 2}, {"name": "Isla Fisher", "character": "Tooth (voice)", "id": 52848, "credit_id": "52fe47fe9251416c9107c911", "cast_id": 3, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 3}, {"name": "Hugh Jackman", "character": "E. Aster Bunnymund (voice)", "id": 6968, "credit_id": "52fe47fe9251416c9107c909", "cast_id": 1, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 4}, {"name": "Dakota Goyo", "character": "Jamie (voice)", "id": 234479, "credit_id": "52fe47fe9251416c9107c91d", "cast_id": 6, "profile_path": "/ualBwqlfNQgim4xEfbSkODbmRdX.jpg", "order": 5}, {"name": "Khamani Griffin", "character": "Caleb (voice)", "id": 87056, "credit_id": "52fe47fe9251416c9107c93f", "cast_id": 13, "profile_path": "/6gpZY25Hc1B4MgBTrfgP1KxnAP5.jpg", "order": 6}, {"name": "Kamil McFadden", "character": "Claude (voice)", "id": 1271684, "credit_id": "5300c5eb9251416ad534b681", "cast_id": 14, "profile_path": "/wtdSHSw6kUEyNfVPvNR8Wig2rXC.jpg", "order": 7}, {"name": "Georgie Grieve", "character": "Sophie Bennett", "id": 1364655, "credit_id": "5418922bc3a3680ac400038d", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Emily Nordwind", "character": "Jamie's Mom / Jack's Mother", "id": 1364656, "credit_id": "54189243c3a3680abb00036d", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Jacob Bertrand", "character": "Monty", "id": 114446, "credit_id": "54189258c3a3680aca0003f8", "cast_id": 17, "profile_path": "/xB5ifSp4RGUokOVQBJVu4qLOGE3.jpg", "order": 10}, {"name": "Olivia Mattingly", "character": "Pippa / Jack's Sister", "id": 1364657, "credit_id": "5418926ec3a3680ab4000391", "cast_id": 18, "profile_path": null, "order": 11}, {"name": "Dominique Grund", "character": "Cupcake", "id": 1364658, "credit_id": "5418927fc3a3680aaf000376", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Ryan Crego", "character": "Burgess Dog Walker", "id": 1364659, "credit_id": "54189294c3a3680aac0003a7", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "April Lawrence", "character": "Burgess Pedestrian", "id": 1364660, "credit_id": "541892abc3a3680aca000403", "cast_id": 21, "profile_path": null, "order": 14}], "directors": [{"name": "Peter Ramsey", "department": "Directing", "job": "Director", "credit_id": "52fe47fe9251416c9107c923", "profile_path": null, "id": 151007}], "vote_average": 6.7, "runtime": 97}, "7461": {"poster_path": "/2PnFsTzmFC3Ydhj0uBEYjPqHWHO.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The attempted assassination of the American President is told and re-told from several different perspectives.", "video": false, "id": 7461, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Vantage Point", "tagline": "8 Strangers, 8 points of view. 1 Truth.", "vote_count": 243, "homepage": "http://www.vantagepoint-movie.com/index.php", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443274", "adult": false, "backdrop_path": "/7DwOjEHdJ3dc3kBNaN7XQ0yE258.jpg", "production_companies": [{"name": "Kanzaman", "id": 4169}, {"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}, {"name": "Original Film", "id": 333}, {"name": "Art In Motion", "id": 31604}], "release_date": "2008-02-22", "popularity": 0.526066604547091, "original_title": "Vantage Point", "budget": 40000000, "cast": [{"name": "Dennis Quaid", "character": "Thomas Barnes", "id": 6065, "credit_id": "52fe447fc3a36847f8099a33", "cast_id": 1, "profile_path": "/tctj9LayHh6N2MX3G6LIFEEup26.jpg", "order": 0}, {"name": "Matthew Fox", "character": "Kent Taylor", "id": 28657, "credit_id": "52fe447fc3a36847f8099a37", "cast_id": 2, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 1}, {"name": "Forest Whitaker", "character": "Howard Lewis", "id": 2178, "credit_id": "52fe447fc3a36847f8099a3b", "cast_id": 3, "profile_path": "/4pMQkelS5lK661m9Kz3oIxLYiyS.jpg", "order": 2}, {"name": "Sigourney Weaver", "character": "Rex Brooks", "id": 10205, "credit_id": "52fe447fc3a36847f8099a3f", "cast_id": 4, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 3}, {"name": "William Hurt", "character": "President Ashton", "id": 227, "credit_id": "52fe447fc3a36847f8099a43", "cast_id": 5, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 4}, {"name": "Ayelet Zurer", "character": "Veronica", "id": 8786, "credit_id": "52fe447fc3a36847f8099a47", "cast_id": 6, "profile_path": "/mrj36B6kZtE6jE6oNKEMperxBhW.jpg", "order": 5}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Javier", "id": 25616, "credit_id": "52fe447fc3a36847f8099a4b", "cast_id": 7, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 6}, {"name": "Eduardo Noriega", "character": "Enrique", "id": 17093, "credit_id": "52fe447fc3a36847f8099a4f", "cast_id": 8, "profile_path": "/5B1D3MChVAZ5z7cypJbCbSGgDge.jpg", "order": 7}, {"name": "Sa\u00efd Taghmaoui", "character": "Suarez", "id": 5419, "credit_id": "52fe447fc3a36847f8099a53", "cast_id": 9, "profile_path": "/bOh3ZQ64WiGivN6GJrrO8vrw9wU.jpg", "order": 8}, {"name": "Zoe Saldana", "character": "Angie Jones", "id": 8691, "credit_id": "52fe447fc3a36847f8099a93", "cast_id": 20, "profile_path": "/ofNrWiA2KDdqiNxFTLp51HcXUlp.jpg", "order": 9}, {"name": "James Le Gros", "character": "Ted Heinkin", "id": 6474, "credit_id": "52fe447fc3a36847f8099a97", "cast_id": 21, "profile_path": "/rqBjmSkcRGwtwpb2tTjGcqLtKyG.jpg", "order": 10}, {"name": "Bruce McGill", "character": "Phil McCullough", "id": 14888, "credit_id": "543628110e0a2624b9001871", "cast_id": 24, "profile_path": "/26nSF2hvk5YfJCbqnp8aNq9xNak.jpg", "order": 11}], "directors": [{"name": "Pete Travis", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099a59", "profile_path": "/xHxcow0RqzkTM2vwgfnpOT2FoSe.jpg", "id": 43141}], "vote_average": 6.1, "runtime": 90}, "15655": {"poster_path": "/qhiNJzT2IbK9MkMVQFr0Jk4Pj8h.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45554533, "overview": "As it happens, everybody - Pooh, Piglet, Eeyore, Roo, Rabbit, Owl - is busy preparing a suitable winter home for Eeyore. When everything they do seems to get undone by Tigger's exuberant bouncing, Rabbit suggest Tigger go outside and find other tiggers to bounce with - a notion Tigger finds ridiculous because, after all, he's \"the onliest one\" Or is he?", "video": false, "id": 15655, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Tigger Movie", "tagline": "", "vote_count": 56, "homepage": "http://www.tigger.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0220099", "adult": false, "backdrop_path": "/9Mxr5NHa5pRMc9iP7aVwk9l3VqK.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "2000-02-11", "popularity": 0.465272270234319, "original_title": "The Tigger Movie", "budget": 30000000, "cast": [{"name": "Jim Cummings", "character": "Tigger / Winnie the Pooh (voice)", "id": 12077, "credit_id": "52fe466f9251416c7507835b", "cast_id": 2, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 0}, {"name": "Nikita Hopkins", "character": "Roo (voice)", "id": 90453, "credit_id": "52fe466f9251416c75078363", "cast_id": 4, "profile_path": "/i4NrZ1MokeGdp6dvNDthlt7PpoG.jpg", "order": 2}, {"name": "Ken Sansom", "character": "Rabbit (voice)", "id": 77482, "credit_id": "52fe466f9251416c75078367", "cast_id": 5, "profile_path": "/el8Oje4diZsMZBk91q0xDOZH0Bq.jpg", "order": 3}, {"name": "John Fiedler", "character": "Piglet (voice)", "id": 5247, "credit_id": "52fe466f9251416c7507836b", "cast_id": 6, "profile_path": "/wjhOLcxWaum0JIBIRMZaQQjrhQw.jpg", "order": 4}, {"name": "Peter Cullen", "character": "Eeyore (voice)", "id": 19540, "credit_id": "52fe466f9251416c7507836f", "cast_id": 7, "profile_path": "/hS5mwAx1kFqxo75uHWlsddvCD8a.jpg", "order": 5}, {"name": "Andre Stojka", "character": "Owl (voice)", "id": 77546, "credit_id": "52fe466f9251416c75078373", "cast_id": 8, "profile_path": "/n3rq249snLFD1Dik21Qxp8IqOv5.jpg", "order": 6}, {"name": "Kath Soucie", "character": "Kanga (voice)", "id": 60739, "credit_id": "52fe466f9251416c75078377", "cast_id": 9, "profile_path": "/urLkA155Yc19TKyeCUYGwzEt2PO.jpg", "order": 7}, {"name": "Tom Attenborough", "character": "Christopher Robin (voice)", "id": 105503, "credit_id": "52fe466f9251416c7507837b", "cast_id": 10, "profile_path": null, "order": 8}], "directors": [{"name": "Jun Falkenstein", "department": "Directing", "job": "Director", "credit_id": "52fe466f9251416c75078357", "profile_path": null, "id": 93301}], "vote_average": 6.5, "runtime": 77}, "13532": {"poster_path": "/ywI92p2x7D96nuEayGVOMll35SF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 948753, "overview": "Star Wars fanatics take a cross-country trip to George Lucas' Skywalker Ranch so their dying friend can see a screening of Star Wars: Episode I - The Phantom Menace (1999) before its release.", "video": false, "id": 13532, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Fanboys", "tagline": "Never tell them the odds.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0489049", "adult": false, "backdrop_path": "/89udmMtxl8AuQHYoFdSgB5e6xYs.jpg", "production_companies": [{"name": "The Weinstein Company", "id": 308}, {"name": "Third Rail Releasing", "id": 4435}], "release_date": "2009-02-06", "popularity": 0.475253764185308, "original_title": "Fanboys", "budget": 0, "cast": [{"name": "Sam Huntington", "character": "Eric", "id": 53492, "credit_id": "52fe45779251416c75057743", "cast_id": 1, "profile_path": "/nq7pwic6Xe6XTRzOfXjMCuUqbjt.jpg", "order": 0}, {"name": "Chris Marquette", "character": "Linus", "id": 59238, "credit_id": "52fe45779251416c75057747", "cast_id": 2, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 1}, {"name": "Dan Fogler", "character": "Hutch", "id": 58873, "credit_id": "52fe45779251416c7505774b", "cast_id": 3, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 2}, {"name": "Jay Baruchel", "character": "Windows", "id": 449, "credit_id": "52fe45779251416c7505774f", "cast_id": 4, "profile_path": "/9SFoTtDoB0oozIWH7L8BtuWKR37.jpg", "order": 3}, {"name": "Kristen Bell", "character": "Zoe", "id": 40462, "credit_id": "52fe45779251416c75057753", "cast_id": 5, "profile_path": "/iNBkujWieKPcFUkkdDuyoC4039q.jpg", "order": 4}, {"name": "Seth Rogen", "character": "Admiral Seasholtz / Alien / Roach", "id": 19274, "credit_id": "52fe45779251416c75057769", "cast_id": 9, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 5}, {"name": "William Shatner", "character": "Himself", "id": 1748, "credit_id": "52fe45779251416c7505776d", "cast_id": 10, "profile_path": "/5hWNPFmnzlFAkGMleBKkeFFcxhY.jpg", "order": 6}, {"name": "Carrie Fisher", "character": "Doctor", "id": 4, "credit_id": "52fe45779251416c75057771", "cast_id": 11, "profile_path": "/1Kpvl1B7SRrdLKjqDfT6kb7nyRB.jpg", "order": 7}, {"name": "Ethan Suplee", "character": "Harry Knowles", "id": 824, "credit_id": "52fe45779251416c75057775", "cast_id": 12, "profile_path": "/tdfUFBwYm9rjwD2YtVl9LYoyoE2.jpg", "order": 8}, {"name": "Christopher McDonald", "character": "Big Chuck (as Chris McDonald)", "id": 4443, "credit_id": "52fe45779251416c75057779", "cast_id": 13, "profile_path": "/ltaSSI1kGZGSii5W9dJM9kY8Ka.jpg", "order": 9}, {"name": "Danny Trejo", "character": "The Chief", "id": 11160, "credit_id": "52fe45779251416c7505777d", "cast_id": 14, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 10}, {"name": "Billy Dee Williams", "character": "Judge Reinhold", "id": 3799, "credit_id": "52fe45779251416c75057781", "cast_id": 15, "profile_path": "/kkAotKJL1s3Kvh9bRNELDfAOZHs.jpg", "order": 11}, {"name": "Kevin Smith", "character": "Guy at gas station", "id": 19303, "credit_id": "52fe45779251416c75057785", "cast_id": 16, "profile_path": "/3XXThSMqHQgQFjM4bMJ25U1EJTj.jpg", "order": 12}, {"name": "Jason Mewes", "character": "Guy at gas station", "id": 19302, "credit_id": "52fe45779251416c75057789", "cast_id": 17, "profile_path": "/o4YwwLh42lpEsrkPA5VBOFyMNOJ.jpg", "order": 13}, {"name": "Zak Knutson", "character": "Bob the Trucker", "id": 140909, "credit_id": "52fe45779251416c7505778d", "cast_id": 18, "profile_path": null, "order": 14}, {"name": "Ray Park", "character": "THX Security Guard #2", "id": 11007, "credit_id": "52fe45779251416c75057791", "cast_id": 19, "profile_path": "/wfaFcFbtjX9MbuGl4AiijSzXazd.jpg", "order": 15}, {"name": "Danny McBride", "character": "Head of Security (uncredited)", "id": 62862, "credit_id": "52fe45779251416c75057795", "cast_id": 20, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 16}, {"name": "Allie Grant", "character": "Rogue Leader / Kimmy", "id": 1214423, "credit_id": "52fe45779251416c7505779f", "cast_id": 22, "profile_path": "/zGrH4hsc28SPERAu51vQQLXndPL.jpg", "order": 17}, {"name": "Joe Lo Truglio", "character": "Jail Guard", "id": 21131, "credit_id": "52fe45779251416c750577a3", "cast_id": 23, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 18}, {"name": "Craig Robinson", "character": "THX Security Guard #5", "id": 64342, "credit_id": "534672470e0a265fe900135e", "cast_id": 24, "profile_path": "/tVaRMkJXOEVhYxtnnFuhqW0Rjzz.jpg", "order": 19}, {"name": "Will Forte", "character": "THX Security Guard #4", "id": 62831, "credit_id": "534672600e0a265fe60012ff", "cast_id": 25, "profile_path": "/7f1mhkjuV18FABD3pYKwQA45nUg.jpg", "order": 20}], "directors": [{"name": "Kyle Newman", "department": "Directing", "job": "Director", "credit_id": "52fe45779251416c75057759", "profile_path": null, "id": 74623}], "vote_average": 6.3, "runtime": 90}, "204082": {"poster_path": "/6ymSuhG28tF2lnDxVTNibzlYzn0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 43058898, "overview": "Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss' son. He is recently widowed and is left with a 9-years-old daughter,Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy's sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.", "video": false, "id": 204082, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Homefront", "tagline": "How far would you go to protect your home?", "vote_count": 297, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2312718", "adult": false, "backdrop_path": "/vcFs3Vh6g6A5K9zZeFYnQNHLUQb.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}, {"name": "Open Road Films", "id": 10427}], "release_date": "2013-11-27", "popularity": 1.8676320111119, "original_title": "Homefront", "budget": 22000000, "cast": [{"name": "Jason Statham", "character": "Phil Broker", "id": 976, "credit_id": "52fe4cecc3a368484e1cd19f", "cast_id": 2, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "James Franco", "character": "Gator", "id": 17051, "credit_id": "52fe4cecc3a368484e1cd19b", "cast_id": 1, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Winona Ryder", "character": "Sheryl Mott", "id": 1920, "credit_id": "52fe4cecc3a368484e1cd1a7", "cast_id": 4, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 2}, {"name": "Rachelle Lefevre", "character": "Susan Hatch", "id": 58168, "credit_id": "52fe4cecc3a368484e1cd1ab", "cast_id": 5, "profile_path": "/oMfr9uzA5HxGv22W5MfNkI2N2jc.jpg", "order": 3}, {"name": "Kate Bosworth", "character": "Cassie Bodine", "id": 7517, "credit_id": "52fe4cecc3a368484e1cd1a3", "cast_id": 3, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 4}, {"name": "Clancy Brown", "character": "Sheriff Keith Rodrigue", "id": 6574, "credit_id": "52fe4cecc3a368484e1cd1af", "cast_id": 6, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 5}, {"name": "Frank Grillo", "character": "Cyrus Hanks", "id": 81685, "credit_id": "52fe4cecc3a368484e1cd1b3", "cast_id": 7, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 6}, {"name": "Christa Campbell", "character": "Lydia", "id": 85178, "credit_id": "52fe4cecc3a368484e1cd1b7", "cast_id": 8, "profile_path": "/apJu7kmMFs7SxviilnGsnbNLOIq.jpg", "order": 7}, {"name": "Omar Benson Miller", "character": "Tito", "id": 334, "credit_id": "52fe4cecc3a368484e1cd1bb", "cast_id": 9, "profile_path": "/fHd0bvqXMv0MaT8rCRBmVQuycY.jpg", "order": 8}, {"name": "Nicole Andrews", "character": "Ms. Etherby", "id": 1134443, "credit_id": "52fe4cecc3a368484e1cd1bf", "cast_id": 10, "profile_path": "/mjMSw1P3lpzH8uwBkwSQuxudQMQ.jpg", "order": 9}, {"name": "Celeste Star", "character": "Michelle (biker chick)", "id": 135633, "credit_id": "52fe4cecc3a368484e1cd1c3", "cast_id": 11, "profile_path": "/f65N02PSTEyUGomRoDJDksAbN0u.jpg", "order": 10}, {"name": "Stephanie Grote", "character": "Dancer", "id": 1098572, "credit_id": "52fe4cecc3a368484e1cd1c7", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "Amin Joseph", "character": "Senior Agent", "id": 131772, "credit_id": "52fe4cecc3a368484e1cd1cb", "cast_id": 13, "profile_path": "/skvXr7EjcsgVfwoZnmNNjIk4Jmr.jpg", "order": 12}, {"name": "Joe Chrest", "character": "DEA Agent", "id": 141762, "credit_id": "52fe4cecc3a368484e1cd1cf", "cast_id": 14, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 13}, {"name": "Izabela Vidovic", "character": "Maddy", "id": 1109976, "credit_id": "52fe4cecc3a368484e1cd1d3", "cast_id": 15, "profile_path": "/2cGWLlVQeQzp1Li4MgUsL7HspAF.jpg", "order": 14}], "directors": [{"name": "Gary Fleder", "department": "Directing", "job": "Director", "credit_id": "52fe4cecc3a368484e1cd1d9", "profile_path": "/rRxdnJbRT8Ygg8KNpdoxULszClx.jpg", "id": 5501}], "vote_average": 6.6, "runtime": 100}, "1247": {"poster_path": "/s2RYkRXrjUIyOlmzym37kpLTKRz.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 59908565, "overview": "Edward Wilson, the only witness to his father's suicide and member of the Skull and Bones Society while a student at Yale, is a morally upright young man who values honor and discretion, qualities that help him to be recruited for a career in the newly founded OSS. His dedication to his work does not come without a price though, leading him to sacrifice his ideals and eventually his family.", "video": false, "id": 1247, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "The Good Shepherd", "tagline": "The untold story of the most powerful covert agency in the world.", "vote_count": 89, "homepage": "http://www.thegoodshepherdmovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ln", "name": ""}], "imdb_id": "tt0343737", "adult": false, "backdrop_path": "/3qvtPTzdeV5cJFBpJO56KFAkF4d.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "American Zoetrope", "id": 70}], "release_date": "2006-12-11", "popularity": 1.03100078727577, "original_title": "The Good Shepherd", "budget": 85000000, "cast": [{"name": "Matt Damon", "character": "Edward Bell Wilson", "id": 1892, "credit_id": "52fe42eac3a36847f802c69b", "cast_id": 6, "profile_path": "/eLAWpp5BLbTwjj35MbGzpL0QkWv.jpg", "order": 0}, {"name": "Angelina Jolie", "character": "Margaret Ann Russell", "id": 11701, "credit_id": "52fe42eac3a36847f802c6a7", "cast_id": 9, "profile_path": "/6tocswK39SrSjZIRDaTpVyPxDz8.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Sam Murach", "id": 7447, "credit_id": "52fe42eac3a36847f802c69f", "cast_id": 7, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Tammy Blanchard", "character": "Laura", "id": 16859, "credit_id": "52fe42eac3a36847f802c6a3", "cast_id": 8, "profile_path": "/29B6rBXwZfuIfq0bTmiveojpIlR.jpg", "order": 3}, {"name": "Billy Crudup", "character": "Arch Cummings", "id": 8289, "credit_id": "52fe42eac3a36847f802c6ab", "cast_id": 10, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 4}, {"name": "Robert De Niro", "character": "Bill Sullivan", "id": 380, "credit_id": "52fe42eac3a36847f802c6af", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 5}, {"name": "Keir Dullea", "character": "Senator John Russell, Sr.", "id": 245, "credit_id": "52fe42eac3a36847f802c6b3", "cast_id": 12, "profile_path": "/vRkyWW3p2Xd1FfMBKZWV2LQZlkR.jpg", "order": 6}, {"name": "Michael Gambon", "character": "Dr. Fredericks", "id": 5658, "credit_id": "52fe42eac3a36847f802c6b7", "cast_id": 13, "profile_path": "/k6VxRs7xcG6DLEVM1izjb3UWSyC.jpg", "order": 7}, {"name": "Martina Gedeck", "character": "Hanna Schiller", "id": 678, "credit_id": "52fe42eac3a36847f802c6c3", "cast_id": 16, "profile_path": "/a6eR9unTwZk4xqsVKZvJySnVt5A.jpg", "order": 8}, {"name": "William Hurt", "character": "Philip Allen", "id": 227, "credit_id": "52fe42eac3a36847f802c6bf", "cast_id": 15, "profile_path": "/mf5GiYZjURQ72CPtY1kBva7mqIK.jpg", "order": 9}, {"name": "Timothy Hutton", "character": "Thomas Wilson", "id": 16327, "credit_id": "52fe42eac3a36847f802c6c7", "cast_id": 17, "profile_path": "/qSLWuXpkuuqAXzI3dQkYshXAv2O.jpg", "order": 10}, {"name": "Lee Pace", "character": "Richard Hayes", "id": 72095, "credit_id": "52fe42eac3a36847f802c6dd", "cast_id": 22, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 11}, {"name": "Joe Pesci", "character": "Joseph Palmi", "id": 4517, "credit_id": "52fe42eac3a36847f802c6bb", "cast_id": 14, "profile_path": "/4zidewFE0x8OBlW0RjEKlkhw4lr.jpg", "order": 12}, {"name": "John Turturro", "character": "Raymond Brocco", "id": 1241, "credit_id": "52fe42eac3a36847f802c6d9", "cast_id": 21, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 13}, {"name": "Lee Bryant", "character": "Mrs. John Russell, Sr.", "id": 160328, "credit_id": "52fe42eac3a36847f802c6cb", "cast_id": 18, "profile_path": "/riFEbXO78dRCTxzQ358AVr1m4uD.jpg", "order": 14}, {"name": "Eddie Redmayne", "character": "Edward Wilson Jr.", "id": 37632, "credit_id": "54e4d1fa925141454f00936f", "cast_id": 24, "profile_path": "/grB1xp10baoSVZnb4CC854ys94O.jpg", "order": 17}, {"name": "Josh Pence", "character": "Bonesman", "id": 928532, "credit_id": "54e4d2dfc3a368454d00b84e", "cast_id": 25, "profile_path": "/nNMhtY1gBYwnjZZpeGGW16fVXC5.jpg", "order": 18}], "directors": [{"name": "Robert De Niro", "department": "Directing", "job": "Director", "credit_id": "52fe42e9c3a36847f802c685", "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "id": 380}], "vote_average": 5.5, "runtime": 167}, "7484": {"poster_path": "/9TY3wQPNhZ60Mng0JetKEOfXqxU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 197309027, "overview": "Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.", "video": false, "id": 7484, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "Open Season", "tagline": "One Fur All & All Fur One", "vote_count": 175, "homepage": "http://www.sonypictures.com/movies/openseason/", "belongs_to_collection": {"backdrop_path": "/cnaLzqjxlqGMIp7AGCizfVXUhSn.jpg", "poster_path": "/ePeybVSOnCmuWrrvGEp8hzWn979.jpg", "id": 66761, "name": "Open Season Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0400717", "adult": false, "backdrop_path": "/7bmzhqOJ9TGXUU5d4pqYUWl3YZ8.jpg", "production_companies": [{"name": "Sony Pictures Animation", "id": 2251}], "release_date": "2006-09-29", "popularity": 0.897430531022104, "original_title": "Open Season", "budget": 85000000, "cast": [{"name": "Martin Lawrence", "character": "Boog (voice)", "id": 78029, "credit_id": "52fe447fc3a36847f8099bb7", "cast_id": 7, "profile_path": "/oTGIx6JLKgT9Faj75352mequGXR.jpg", "order": 0}, {"name": "Ashton Kutcher", "character": "Elliot (voice)", "id": 18976, "credit_id": "52fe447fc3a36847f8099bbb", "cast_id": 8, "profile_path": "/g9FF8F6zoYlRJGU0KQGSklqsbOd.jpg", "order": 1}, {"name": "Gary Sinise", "character": "Shaw (voice)", "id": 33, "credit_id": "52fe447fc3a36847f8099bbf", "cast_id": 9, "profile_path": "/n5AbjoNfONICaggp2f1QhYAjAoZ.jpg", "order": 2}, {"name": "Debra Messing", "character": "Beth (voice)", "id": 23959, "credit_id": "52fe447fc3a36847f8099bc3", "cast_id": 10, "profile_path": "/d2LQbdccJbMSDC9Qm6vTn4qa0Ly.jpg", "order": 3}, {"name": "Billy Connolly", "character": "McSquizzy (voice)", "id": 9188, "credit_id": "52fe447fc3a36847f8099bc7", "cast_id": 11, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 4}, {"name": "Georgia Engel", "character": "Bobbie (voice)", "id": 52697, "credit_id": "52fe447fc3a36847f8099bcb", "cast_id": 12, "profile_path": "/7WfD6MAZtQgT6qIthTDvYzfYj0c.jpg", "order": 5}, {"name": "Jon Favreau", "character": "Reilly (voice)", "id": 15277, "credit_id": "52fe447fc3a36847f8099bcf", "cast_id": 13, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 6}, {"name": "Jane Krakowski", "character": "Giselle (voice)", "id": 13636, "credit_id": "52fe447fc3a36847f8099bd3", "cast_id": 14, "profile_path": "/sOeuLd0MLBk3M6P0nyvZ8TCDUeK.jpg", "order": 7}, {"name": "Gordon Tootoosis", "character": "Gordy (voice)", "id": 37430, "credit_id": "52fe447fc3a36847f8099bd7", "cast_id": 15, "profile_path": "/l10aLDp4D8ZwWdmfRdlj6FedUYk.jpg", "order": 8}, {"name": "Patrick Warburton", "character": "Ian (voice)", "id": 9657, "credit_id": "52fe447fc3a36847f8099bdb", "cast_id": 16, "profile_path": "/cq8zZ6YfBrq2k4F4aHYLSP9QOJS.jpg", "order": 9}, {"name": "Cody Cameron", "character": "Mr. Weenie (voice)", "id": 12095, "credit_id": "52fe447fc3a36847f8099bdf", "cast_id": 17, "profile_path": "/tEVQtTHkBPuqUzER8mvDyy6NaVO.jpg", "order": 10}, {"name": "Nika Futterman", "character": "Rosie (voice)", "id": 52698, "credit_id": "52fe447fc3a36847f8099be3", "cast_id": 18, "profile_path": "/xHBt7N6YVvfgQJuWAJ74xLKF9Dr.jpg", "order": 11}, {"name": "Danny Mann", "character": "Serge (voice)", "id": 52699, "credit_id": "52fe447fc3a36847f8099be7", "cast_id": 19, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 12}, {"name": "Jack McGee", "character": "Hunter (voice)", "id": 10489, "credit_id": "52fe447fc3a36847f8099beb", "cast_id": 20, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 13}, {"name": "Michelle Murdocca", "character": "Maria (voice)", "id": 52700, "credit_id": "52fe447fc3a36847f8099bef", "cast_id": 21, "profile_path": "/finkYD4yK5hbvXNKwiN8PToWPa2.jpg", "order": 14}, {"name": "Fergal Reilly", "character": "O'Toole (voice)", "id": 52701, "credit_id": "52fe447fc3a36847f8099bf3", "cast_id": 22, "profile_path": "/924xXlQnyah5S7IXy89UMdzXXsh.jpg", "order": 15}, {"name": "Jackie Harris", "character": "Amanda (Voice)", "id": 1226913, "credit_id": "532cd2a4c3a3685fb3000652", "cast_id": 23, "profile_path": "/hWhnGL9punPhCIOJ22rH0C6o6lT.jpg", "order": 16}], "directors": [{"name": "Roger Allers", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099b95", "profile_path": "/eUMjdBRyv5gF1m5sGHm15TUVuFP.jpg", "id": 15812}, {"name": "Jill Culton", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099b9b", "profile_path": null, "id": 7881}, {"name": "Anthony Stacchi", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099ba1", "profile_path": "/w4xXHA8eG9HIQFw3YXprZqggV4N.jpg", "id": 52691}], "vote_average": 5.9, "runtime": 83}, "7485": {"poster_path": "/wCZv0lNx58sfuLT698RYYJVEeTr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 95696996, "overview": "A marksman living in exile is coaxed back into action after learning of a plot to kill the president. Ultimately double-crossed and framed for the attempt, he goes on the run to track the real killer and find out who exactly set him up, and why.", "video": false, "id": 7485, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Shooter", "tagline": "Yesterday was about honor. Today is about justice.", "vote_count": 454, "homepage": "http://www.shootermovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0822854", "adult": false, "backdrop_path": "/wZ2u6C7Fw0DahC3Ilr3judpDWYO.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Di Bonaventura Pictures", "id": 435}], "release_date": "2007-03-22", "popularity": 1.65749561568059, "original_title": "Shooter", "budget": 61000000, "cast": [{"name": "Mark Wahlberg", "character": "Bob Lee Swagger", "id": 13240, "credit_id": "52fe447fc3a36847f8099c23", "cast_id": 1, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 0}, {"name": "Michael Pe\u00f1a", "character": "Nick Memphis", "id": 454, "credit_id": "52fe447fc3a36847f8099c27", "cast_id": 2, "profile_path": "/oqlIKSglghuX7kSTalODn71nlOd.jpg", "order": 1}, {"name": "Danny Glover", "character": "Colonel Isaac Johnson", "id": 2047, "credit_id": "52fe447fc3a36847f8099c2b", "cast_id": 3, "profile_path": "/jSNTEnm0Sxm8FRtoBfJmhmQyozH.jpg", "order": 2}, {"name": "Kate Mara", "character": "Sarah Fenn", "id": 51072, "credit_id": "52fe447fc3a36847f8099c2f", "cast_id": 4, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 3}, {"name": "Elias Koteas", "character": "Jack Payne", "id": 13550, "credit_id": "52fe447fc3a36847f8099c33", "cast_id": 5, "profile_path": "/11pXICpcdGJxGG8H8g1Bk3qc66V.jpg", "order": 4}, {"name": "Rhona Mitra", "character": "Alourdes Galindo", "id": 25702, "credit_id": "52fe447fc3a36847f8099c37", "cast_id": 6, "profile_path": "/5iaixWY0qTK9ouHA1wmlXi3t0ie.jpg", "order": 5}, {"name": "Jonathan Walker", "character": "Louis Dobbler", "id": 52702, "credit_id": "52fe447fc3a36847f8099c3b", "cast_id": 7, "profile_path": "/1rIItto71vrSYzcS4yXMsXWk2Yu.jpg", "order": 6}, {"name": "Louis Ferreira", "character": "Howard Purnell", "id": 51036, "credit_id": "52fe447fc3a36847f8099c3f", "cast_id": 8, "profile_path": "/mqJglT0g3tRMg5cNeJ7C6vdP4E.jpg", "order": 7}, {"name": "Tate Donovan", "character": "Russ Turner", "id": 15455, "credit_id": "52fe447fc3a36847f8099c43", "cast_id": 9, "profile_path": "/ioIZ55gaw9u7NIwmHYqIIIT7ksw.jpg", "order": 8}, {"name": "Rade \u0160erbed\u017eija", "character": "Michael Sandor (as Rade Sherbedgia)", "id": 1118, "credit_id": "52fe447fc3a36847f8099c47", "cast_id": 10, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 9}, {"name": "Alan C. Peterson", "character": "Officer Stanley Timmons", "id": 52703, "credit_id": "52fe447fc3a36847f8099c4b", "cast_id": 11, "profile_path": "/esrNQmnKq7GYF810l3MmoKjYpsn.jpg", "order": 10}, {"name": "Ned Beatty", "character": "Senator Charles F. Meachum", "id": 13726, "credit_id": "52fe447fc3a36847f8099c4f", "cast_id": 12, "profile_path": "/aO5MtnqcZHpsVYz1nINdjqgEJUl.jpg", "order": 11}, {"name": "Lane Garrison", "character": "Donnie Fenn", "id": 52704, "credit_id": "52fe447fc3a36847f8099c53", "cast_id": 13, "profile_path": "/aTITQgb1tnn9cTeXSlNIrS2gIKJ.jpg", "order": 12}, {"name": "Zak Santiago", "character": "Senior Agent", "id": 52705, "credit_id": "52fe447fc3a36847f8099c57", "cast_id": 14, "profile_path": "/vplo4yT9wCAf09o34uVw3uVAtJt.jpg", "order": 13}, {"name": "Michael-Ann Connor", "character": "Junior Agent", "id": 52706, "credit_id": "52fe447fc3a36847f8099c5b", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Roberto Lombardi", "character": "Assassination Witness", "id": 1209900, "credit_id": "53c9946ec3a368777e00012e", "cast_id": 22, "profile_path": "/qgrG57sp91kCwPJsPvH15psg6UL.jpg", "order": 15}], "directors": [{"name": "Antoine Fuqua", "department": "Directing", "job": "Director", "credit_id": "52fe447fc3a36847f8099c61", "profile_path": "/igZG1y2u8WFUGuMFbvNU4jEmN2P.jpg", "id": 20907}], "vote_average": 6.8, "runtime": 124}, "1248": {"poster_path": "/athS1NzNvBRBKsaGni3TEOKUO8N.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IT", "name": "Italy"}], "revenue": 75566697, "overview": "This terrifying prequel attempts to trace the murderous roots of the cannibalistic killer. The film follows Lecter from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a med student he hones his appetite for the kill.", "video": false, "id": 1248, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Hannibal Rising", "tagline": "It started with revenge.", "vote_count": 265, "homepage": "http://hannibalrising.com/", "belongs_to_collection": {"backdrop_path": "/9kKfS2JZDDhxmxd1TCXEBGdYuoy.jpg", "poster_path": "/rIX6rRzskxOYFzpQi3QK4JlWQ97.jpg", "id": 9743, "name": "The Hannibal Lecter Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0367959", "adult": false, "backdrop_path": "/rnRMURXoPku05iuXovoqCfJGr8p.jpg", "production_companies": [{"name": "Young Hannibal Productions", "id": 20394}, {"name": "Carthago Films S.a.r.l.", "id": 20395}, {"name": "Dino De Laurentiis Company", "id": 10308}, {"name": "ETIC Films", "id": 2979}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Quinta Communications", "id": 6370}, {"name": "Zephyr Films", "id": 16923}], "release_date": "2007-02-06", "popularity": 0.611102231664491, "original_title": "Hannibal Rising", "budget": 50000000, "cast": [{"name": "Gaspard Ulliel", "character": "Hannibal Lecter", "id": 16790, "credit_id": "52fe42eac3a36847f802c727", "cast_id": 7, "profile_path": "/urvCqSEN0UQAxLXeGQJP9ayydmr.jpg", "order": 0}, {"name": "Aaran Thomas", "character": "Hannibal Lecter (young)", "id": 16789, "credit_id": "52fe42eac3a36847f802c723", "cast_id": 6, "profile_path": null, "order": 1}, {"name": "Gong Li", "character": "Lady Murasaki", "id": 643, "credit_id": "52fe42eac3a36847f802c73d", "cast_id": 12, "profile_path": "/dgGWKMAP5vbgACkXTazZXt3JQoT.jpg", "order": 2}, {"name": "Dominic West", "character": "Inspector Popil", "id": 17287, "credit_id": "52fe42eac3a36847f802c741", "cast_id": 13, "profile_path": "/56zmVMiuUhqas13xn700hvXUA32.jpg", "order": 3}, {"name": "Rhys Ifans", "character": "Vladis Grutas", "id": 7026, "credit_id": "52fe42eac3a36847f802c745", "cast_id": 14, "profile_path": "/p0rbwzc4Yj2oHW0iiln0X0Wx9EK.jpg", "order": 4}, {"name": "Richard Brake", "character": "Enrikas Dortlich", "id": 3901, "credit_id": "52fe42eac3a36847f802c749", "cast_id": 15, "profile_path": "/abAWQ1teqGMOpbdoSlha26RvmHu.jpg", "order": 5}, {"name": "Kevin McKidd", "character": "Petras Kolnas", "id": 9013, "credit_id": "52fe42eac3a36847f802c755", "cast_id": 18, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 6}, {"name": "Stephen Walters", "character": "Zigmas Milko", "id": 39681, "credit_id": "52fe42eac3a36847f802c75d", "cast_id": 20, "profile_path": null, "order": 7}, {"name": "Ivan Marevich", "character": "Bronys Grentz", "id": 206721, "credit_id": "52fe42eac3a36847f802c761", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Helena-Lia Tachovsk\u00e1", "character": "Mischa", "id": 16791, "credit_id": "52fe42eac3a36847f802c72b", "cast_id": 8, "profile_path": "/75URPQwJneMtJuHw42QI3XkFEBW.jpg", "order": 9}, {"name": "Richard Leaf", "character": "Father Lecter", "id": 16792, "credit_id": "52fe42eac3a36847f802c72f", "cast_id": 9, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 10}, {"name": "Ingeborga Dapkunaite", "character": "Mother Lecter", "id": 14593, "credit_id": "52fe42eac3a36847f802c751", "cast_id": 17, "profile_path": "/hVqzjEBJiaYp9sTJA4IXNLJtLK2.jpg", "order": 11}, {"name": "Michele Wade", "character": "Nanny", "id": 16793, "credit_id": "52fe42eac3a36847f802c733", "cast_id": 10, "profile_path": null, "order": 12}, {"name": "Martin Hub", "character": "Lothar", "id": 1054325, "credit_id": "52fe42eac3a36847f802c74d", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Joerg Stadler", "character": "Berndt", "id": 12838, "credit_id": "52fe42eac3a36847f802c759", "cast_id": 19, "profile_path": "/21XKFl1ZS7HG8YEPPyPkJj5mztp.jpg", "order": 14}], "directors": [{"name": "Peter Webber", "department": "Directing", "job": "Director", "credit_id": "52fe42eac3a36847f802c70d", "profile_path": null, "id": 16785}], "vote_average": 5.9, "runtime": 121}, "40264": {"poster_path": "/ug9h5BJ5XX9bp1nJI6Ji07QC3sx.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80544470, "overview": "Becca, an anxious, non-vampire teen is torn between two boys. Before she can choose, Becca must get around her controlling father, who embarrasses Becca by treating her like a child. Meanwhile, Becca's friends contend with their own romantic issues - all of which collide at the prom.", "video": false, "id": 40264, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "Vampires Suck", "tagline": "Some sagas just won't die.", "vote_count": 64, "homepage": "http://www.dancingwerewolves.com/", "belongs_to_collection": {"backdrop_path": "/rlDK7GYKJP9p1TAj7dIBOuJ7ehO.jpg", "poster_path": "/5lFDNBMJd7Yz6nXWETI8PFVqJXe.jpg", "id": 278920, "name": "Vampires Suck Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1666186", "adult": false, "backdrop_path": "/xU8MoThrmHRF2Oty46pWKTZjrLA.jpg", "production_companies": [{"name": "Regency Enterprises", "id": 508}, {"name": "20th Century Fox", "id": 25}], "release_date": "2010-08-18", "popularity": 0.244498342470907, "original_title": "Vampires Suck", "budget": 20000000, "cast": [{"name": "Chris Riggi", "character": "Jacob White", "id": 108919, "credit_id": "52fe458ac3a36847f80cd123", "cast_id": 7, "profile_path": "/bP2jPaNoWGCEXPwVRGyOB3olEZC.jpg", "order": 0}, {"name": "Matt Lanter", "character": "Edward", "id": 34202, "credit_id": "52fe458ac3a36847f80cd127", "cast_id": 8, "profile_path": "/jqRYoV3YrPXdCPr4p77dDg72X1X.jpg", "order": 1}, {"name": "Jenn Proske", "character": "Becca Crane", "id": 129024, "credit_id": "52fe458ac3a36847f80cd143", "cast_id": 15, "profile_path": "/vM30EPCQi1lC6kCDc1BKz0NxuPB.jpg", "order": 2}, {"name": "Ken Jeong", "character": "Daro", "id": 83586, "credit_id": "52fe458ac3a36847f80cd11f", "cast_id": 6, "profile_path": "/rEebZHRju1WtSOdvQJB5je5ZNGj.jpg", "order": 3}, {"name": "Bradley Dodds", "character": "Salvatore", "id": 129021, "credit_id": "52fe458ac3a36847f80cd12b", "cast_id": 9, "profile_path": "/s8nmGZpiFcevfDjfENAwJFFkU5j.jpg", "order": 4}, {"name": "Kelsey Ford", "character": "Iris Sullen", "id": 129022, "credit_id": "52fe458ac3a36847f80cd12f", "cast_id": 10, "profile_path": null, "order": 5}, {"name": "Arielle Kebbel", "character": "Rachel", "id": 20373, "credit_id": "52fe458ac3a36847f80cd133", "cast_id": 11, "profile_path": "/2uYMvWYDjRw7Kc0Ev7hK5PqTldd.jpg", "order": 6}, {"name": "Jun Hee Lee", "character": "Derric", "id": 26997, "credit_id": "52fe458ac3a36847f80cd137", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Mike Mayhall", "character": "Nicholas", "id": 129023, "credit_id": "52fe458ac3a36847f80cd13b", "cast_id": 13, "profile_path": null, "order": 8}, {"name": "Krystal Mayo", "character": "Buffy the Vampire Slayer", "id": 109785, "credit_id": "52fe458ac3a36847f80cd13f", "cast_id": 14, "profile_path": "/ozbQdVym78joGAt3uSul3X4wKCK.jpg", "order": 9}, {"name": "Nick Eversman", "character": "Jeremiah", "id": 212768, "credit_id": "52fe458ac3a36847f80cd147", "cast_id": 16, "profile_path": "/faWzhLjJZSsLptXzvlnoyiVpmwZ.jpg", "order": 10}, {"name": "David DeLuise", "character": "Fisherman Scully", "id": 97600, "credit_id": "52fe458ac3a36847f80cd175", "cast_id": 29, "profile_path": "/qbYy7xfsJB8QxNy3oB6tBUReNUe.jpg", "order": 11}, {"name": "Dave Foley", "character": "Principal Smith", "id": 21290, "credit_id": "52fe458ac3a36847f80cd179", "cast_id": 30, "profile_path": "/qxZR058ynAwoY3rMYoHErtIz6mZ.jpg", "order": 12}, {"name": "Jeff Witzke", "character": "Dr. Carlton", "id": 144438, "credit_id": "52fe458ac3a36847f80cd17d", "cast_id": 31, "profile_path": "/nvnFz8I3kTKahMGkNOpY2GxXqgv.jpg", "order": 13}, {"name": "Crista Flanagan", "character": "Eden", "id": 58957, "credit_id": "52fe458ac3a36847f80cd181", "cast_id": 32, "profile_path": "/pLXGRqfV0nXNN1PdbfdleT8aQ5j.jpg", "order": 14}, {"name": "Zane Holtz", "character": "Alex", "id": 987572, "credit_id": "52fe458ac3a36847f80cd185", "cast_id": 33, "profile_path": "/4Laz1K9D9r2g5hsb4vOIWrtf2X5.jpg", "order": 15}, {"name": "Anneliese van der Pol", "character": "Jennifer", "id": 1231005, "credit_id": "52fe458ac3a36847f80cd189", "cast_id": 34, "profile_path": "/lSX5PtEPkDRXp6cwPOah4mqZl19.jpg", "order": 16}, {"name": "Diedrich Bader", "character": "Frank Crane", "id": 5727, "credit_id": "52fe458ac3a36847f80cd18d", "cast_id": 35, "profile_path": "/2j2WoLG4eJLu9c6jewrx8ReDnBe.jpg", "order": 17}, {"name": "Charlie Weber", "character": "Jack", "id": 147404, "credit_id": "551109f79251410701006e02", "cast_id": 45, "profile_path": "/iiBq6ciCuHJiy0So58iuhqrirBl.jpg", "order": 18}], "directors": [{"name": "Jason Friedberg", "department": "Directing", "job": "Director", "credit_id": "52fe458ac3a36847f80cd115", "profile_path": null, "id": 35694}, {"name": "Aaron Seltzer", "department": "Directing", "job": "Director", "credit_id": "52fe458ac3a36847f80cd11b", "profile_path": null, "id": 35734}], "vote_average": 4.7, "runtime": 82}, "97614": {"poster_path": "/2Q9xyrHVT3TF2polRXhSEidL7fq.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 597066, "overview": "A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.", "video": false, "id": 97614, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Deadfall", "tagline": "Twisty thriller... a wild ride.", "vote_count": 75, "homepage": "http://www.magpictures.com/deadfall/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1667310", "adult": false, "backdrop_path": "/dVMGKJ9FrgzEHFVwdS1KYLxLqwi.jpg", "production_companies": [{"name": "Magnolia Pictures", "id": 1030}, {"name": "StudioCanal", "id": 694}, {"name": "Madhouse Entertainment", "id": 12199}, {"name": "2929 Productions", "id": 846}, {"name": "Mutual Film Company", "id": 762}], "release_date": "2012-12-07", "popularity": 0.58957916256511, "original_title": "Deadfall", "budget": 12000000, "cast": [{"name": "Eric Bana", "character": "Addison", "id": 8783, "credit_id": "52fe49e79251416c750d725f", "cast_id": 3, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Olivia Wilde", "character": "Liza", "id": 59315, "credit_id": "52fe49e79251416c750d7263", "cast_id": 4, "profile_path": "/3d69fgT1QOTDJxqy7FpBBAQxoM0.jpg", "order": 1}, {"name": "Charlie Hunnam", "character": "Jay", "id": 56365, "credit_id": "52fe49e79251416c750d7267", "cast_id": 5, "profile_path": "/n7aEW9ghTsNOkds4ALtH73m915U.jpg", "order": 2}, {"name": "Patrick Kerton", "character": "State trooper", "id": 207818, "credit_id": "52fe49e79251416c750d7287", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Kris Kristofferson", "character": "Chet", "id": 10823, "credit_id": "52fe49e79251416c750d726f", "cast_id": 7, "profile_path": "/hiGkNoiAwnUgY9XZ3YhiWMvKngi.jpg", "order": 4}, {"name": "Sissy Spacek", "character": "June", "id": 5606, "credit_id": "52fe49e79251416c750d726b", "cast_id": 6, "profile_path": "/ieHG97Qp3Lcf01EbQGV6UhHz4Sj.jpg", "order": 5}, {"name": "Treat Williams", "character": "Becker", "id": 4515, "credit_id": "52fe49e79251416c750d7277", "cast_id": 9, "profile_path": "/uKejRJTEVOy6IOsJX2mJH3SwbTl.jpg", "order": 6}, {"name": "Jason Cavalier", "character": "Travis", "id": 30617, "credit_id": "52fe49e79251416c750d7283", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Allison Graham", "character": "Mandy", "id": 104897, "credit_id": "52fe49e79251416c750d727f", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Kate Mara", "character": "Hanna", "id": 51072, "credit_id": "52fe49e79251416c750d7273", "cast_id": 8, "profile_path": "/vK6eOzrFmQNoRyHIP8N5p5Ri4fp.jpg", "order": 9}, {"name": "Alain Goulem", "character": "Bobby", "id": 21292, "credit_id": "52fe49e79251416c750d727b", "cast_id": 10, "profile_path": null, "order": 10}, {"name": "Kwasi Songui", "character": "Corrections Officer", "id": 207881, "credit_id": "52fe49e79251416c750d72a3", "cast_id": 18, "profile_path": "/ijoVqv6LUD0dwY5C5NO3QDkjCLx.jpg", "order": 11}, {"name": "John Robinson", "character": "Ronnie", "id": 564389, "credit_id": "52fe49e79251416c750d72a7", "cast_id": 19, "profile_path": null, "order": 12}, {"name": "Job Daniel", "character": "Young Boxer", "id": 1207358, "credit_id": "52fe49e79251416c750d72ab", "cast_id": 20, "profile_path": null, "order": 13}, {"name": "Jocelyne Zucco", "character": "Doris", "id": 198708, "credit_id": "52fe49e79251416c750d72af", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Maxime Savaria", "character": "Deputy Brice", "id": 1207359, "credit_id": "52fe49e79251416c750d72b3", "cast_id": 22, "profile_path": null, "order": 15}, {"name": "Kyle Gatehouse", "character": "Deputy Bill", "id": 131335, "credit_id": "52fe49e79251416c750d72b7", "cast_id": 23, "profile_path": null, "order": 16}, {"name": "Tom Jackson", "character": "Old Indian Hunter", "id": 1159002, "credit_id": "52fe49e79251416c750d72bb", "cast_id": 24, "profile_path": null, "order": 17}, {"name": "Tomomi Morimoto", "character": "Suki", "id": 1207360, "credit_id": "52fe49e79251416c750d72bf", "cast_id": 25, "profile_path": null, "order": 18}, {"name": "Nobuya Shimamoto", "character": "Hiro", "id": 930327, "credit_id": "52fe49e79251416c750d72c3", "cast_id": 26, "profile_path": null, "order": 19}, {"name": "Cheryl Diabo", "character": "Ottawa Indian Mother", "id": 1207361, "credit_id": "52fe49e79251416c750d72c7", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Andr\u00e9 Kasper Kolstad", "character": "Ottawa Indian Child", "id": 1207362, "credit_id": "52fe49e79251416c750d72cb", "cast_id": 28, "profile_path": null, "order": 21}, {"name": "Anie Pascale", "character": "Tricia", "id": 59618, "credit_id": "52fe49e79251416c750d72cf", "cast_id": 29, "profile_path": null, "order": 22}, {"name": "Andrew Johnston", "character": "Marvin", "id": 1207363, "credit_id": "52fe49e79251416c750d72d3", "cast_id": 30, "profile_path": null, "order": 23}, {"name": "Sarah Booth", "character": "Amy", "id": 1207364, "credit_id": "52fe49e79251416c750d72d7", "cast_id": 31, "profile_path": null, "order": 24}, {"name": "Teale Hansen", "character": "Lisa", "id": 1207365, "credit_id": "52fe49e79251416c750d72db", "cast_id": 32, "profile_path": null, "order": 25}, {"name": "Victor Cornfoot", "character": "Snowplow Driver", "id": 1207366, "credit_id": "52fe49e79251416c750d72df", "cast_id": 33, "profile_path": null, "order": 26}, {"name": "Warona Setshwaelo", "character": "Female Paramedic", "id": 1207367, "credit_id": "52fe49e79251416c750d72e3", "cast_id": 34, "profile_path": null, "order": 27}, {"name": "Teale Bishopric", "character": "Lisa", "id": 1207368, "credit_id": "52fe49e79251416c750d72e7", "cast_id": 35, "profile_path": null, "order": 28}, {"name": "Catherine Colvey", "character": "Vicky Wienrick", "id": 179267, "credit_id": "52fe49e79251416c750d72eb", "cast_id": 36, "profile_path": "/9ZrCykOw2EnYXfKAu2ILLDLidWY.jpg", "order": 29}, {"name": "Dennis Lafond", "character": "Theo", "id": 1207369, "credit_id": "52fe49e79251416c750d72ef", "cast_id": 37, "profile_path": null, "order": 30}, {"name": "Kevin Desfosses", "character": "State Trooper (uncredited)", "id": 1207370, "credit_id": "52fe49e79251416c750d72f3", "cast_id": 38, "profile_path": null, "order": 31}, {"name": "David Goff", "character": "Harold (uncredited)", "id": 1207371, "credit_id": "52fe49e79251416c750d72f7", "cast_id": 39, "profile_path": null, "order": 32}, {"name": "Benoit Priest", "character": "Stund (uncredited)", "id": 1207372, "credit_id": "52fe49e79251416c750d72fb", "cast_id": 40, "profile_path": null, "order": 33}], "directors": [{"name": "Stefan Ruzowitzky", "department": "Directing", "job": "Director", "credit_id": "52fe49e79251416c750d7255", "profile_path": "/qlN1bMiTQxcOzMMgNQutA6GI47Q.jpg", "id": 15115}], "vote_average": 5.5, "runtime": 95}, "10808": {"poster_path": "/b40aGyixnOfqgeDq1jeU5qzxE5b.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 176104344, "overview": "Dr. John Dolittle the beloved doctor is back, but this time around he plays cupid to bumbling circus bear Archie as he's so smitten by a Pacific Western bear female, Ava. Dr. Dolittle must help a group of forest creatures to save their forest. But with the aid of his mangy, madcap animal friends, Dr. Dolittle must teach Archie the ways of true romance in time to save his species and his home before their habit is gone. So John held a meeting for every animal in the forest to not give up without a fight no matter what kind of animal expression they have and everyone agrees to do it and save their home.", "video": false, "id": 10808, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "Dr. Dolittle 2", "tagline": "The doctor is in again.", "vote_count": 83, "homepage": "", "belongs_to_collection": {"backdrop_path": "/dtz0ju3dikZaiSJ9HmVoMs9imT8.jpg", "poster_path": "/lbETpGm7Fw6LmB0H1LlGwHFwPPw.jpg", "id": 3169, "name": "Dr. Dolittle Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0240462", "adult": false, "backdrop_path": "/lzk4Wp8GUHLZvRgrg8iy2lNqRDN.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2001-06-22", "popularity": 0.590540115154065, "original_title": "Dr. Dolittle 2", "budget": 70000000, "cast": [{"name": "Eddie Murphy", "character": "Dr. John Dolittle", "id": 776, "credit_id": "52fe43bb9251416c7501bf9f", "cast_id": 7, "profile_path": "/WlmlpM6YeQwgEmOX0n4bVZ08dc.jpg", "order": 0}, {"name": "Kristen Wilson", "character": "Lisa Dolittle", "id": 31029, "credit_id": "52fe43bb9251416c7501bfa3", "cast_id": 8, "profile_path": "/c1OmYimnJkLyRYNBHyieRpJXa4J.jpg", "order": 1}, {"name": "Raven-Symon\u00e9", "character": "Charisse Dolittle", "id": 66896, "credit_id": "52fe43bb9251416c7501bfa7", "cast_id": 9, "profile_path": "/nzklI9bgqsUKVWlnQcT5lSrCyaM.jpg", "order": 2}, {"name": "Kyla Pratt", "character": "Maya Dolittle", "id": 31031, "credit_id": "52fe43bb9251416c7501bfab", "cast_id": 10, "profile_path": "/4BGV47PlqqgCcVb7zSveNOFtqjc.jpg", "order": 3}, {"name": "Mandy Moore", "character": "Girl Bear Cub", "id": 16855, "credit_id": "52fe43bb9251416c7501bfb5", "cast_id": 12, "profile_path": "/15sDtRpe301tZWrRYV31wjMuFpx.jpg", "order": 4}, {"name": "John DiMaggio", "character": "Seeing Eye Dog / Wassup Fish / Mouse", "id": 294916, "credit_id": "52fe43bb9251416c7501bfb9", "cast_id": 13, "profile_path": "/rInMiWaCGn7SHE9iQ2DIu3oEYJ.jpg", "order": 5}, {"name": "Andy Richter", "character": "Eugene Wilson", "id": 28637, "credit_id": "52fe43bb9251416c7501bfbd", "cast_id": 14, "profile_path": "/8K63ilOwTUO1yh32oLl2zfwjbKs.jpg", "order": 6}, {"name": "Denise Dowse", "character": "Secretary", "id": 23970, "credit_id": "52fe43bb9251416c7501bfc1", "cast_id": 15, "profile_path": "/tZyRCcBphvpg4AjIWD33j4hVBKy.jpg", "order": 7}, {"name": "James Avery", "character": "Eldon", "id": 51547, "credit_id": "52fe43bb9251416c7501bfc5", "cast_id": 16, "profile_path": "/iDJcKHZ67yQv8nAeAUhM8PhQxzb.jpg", "order": 8}], "directors": [{"name": "Steve Carr", "department": "Directing", "job": "Director", "credit_id": "52fe43bb9251416c7501bfb1", "profile_path": "/sZELa2s3bwRZKXAEcSbNcD6hJey.jpg", "id": 52112}], "vote_average": 5.1, "runtime": 87}, "269650": {"poster_path": "/3lKdgUvWW3yUHRl3Ervjz2PeXFR.jpg", "production_countries": [{"iso_3166_1": "JP", "name": "Japan"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Based on the comic book by the creator of Ghost in the Shell, a young female soldier Deunan and her cyborg partner Briareos survive through the post World War 3 apocalyptic New York in search of human's future hope, the legendary city of Olympus.", "video": false, "id": 269650, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}], "title": "Appleseed Alpha", "tagline": "To find Olympus, they must fight to survive.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/3uFYlHmUZtEGBiwdxtSlphbmfjK.jpg", "poster_path": "/AoM1NzRnSpo6VtIs3wpzKUSObUX.jpg", "id": 87800, "name": "Appleseed Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3638012", "adult": false, "backdrop_path": "/dgyvS3CUtTCfPhtT1SDTR2bwCbf.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 29097}], "release_date": "2014-07-14", "popularity": 0.484971818557684, "original_title": "Appleseed Alpha", "budget": 0, "cast": [{"name": "Luci Christian", "character": "Deunan Knute", "id": 201838, "credit_id": "5373d492c3a368150f001883", "cast_id": 2, "profile_path": "/ceYu0OkR0NkjqaLQDlmQsUXjycl.jpg", "order": 1}, {"name": "David Matranga", "character": "Briareos Hecatonchires", "id": 207012, "credit_id": "5373d4a7c3a36815020018d6", "cast_id": 3, "profile_path": "/lDs2XSnwyN7pvtpbP1f2ehERnnu.jpg", "order": 2}, {"name": "Wendel Calvert", "character": "Two Horns (voice)", "id": 1319569, "credit_id": "5373d500c3a36815390018c8", "cast_id": 6, "profile_path": "/60h5uua8rPn3jC4YgElKPcC2GNO.jpg", "order": 3}, {"name": "Adam Gibbs", "character": "Olson (voice)", "id": 1319570, "credit_id": "5373d50dc3a36815390018d2", "cast_id": 7, "profile_path": null, "order": 4}, {"name": "Elizabeth Bunch", "character": "Nyx (voice)", "id": 1319571, "credit_id": "5373d51dc3a3681530001908", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Chris Hutchinson", "character": "Matthews (voice)", "id": 1319572, "credit_id": "5373d530c3a368153000190d", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Josh Sheltz", "character": "Talos (voice)", "id": 1319573, "credit_id": "5373d540c3a36815280018ab", "cast_id": 10, "profile_path": null, "order": 7}], "directors": [{"name": "Shinji Aramaki", "department": "Directing", "job": "Director", "credit_id": "5373d463c3a36815020018cf", "profile_path": null, "id": 70100}], "vote_average": 6.5, "runtime": 90}, "58595": {"poster_path": "/40iabcM7KQLJzmO8yGm8AvUbxZR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 396600000, "overview": "After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.", "video": false, "id": 58595, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "Snow White and the Huntsman", "tagline": "The Fairytale is Over", "vote_count": 1351, "homepage": "http://www.snowwhiteandthehuntsman.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1735898", "adult": false, "backdrop_path": "/i5qm0Zw4GiN9sWK5yAVQMtK44w5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Roth Films", "id": 16314}], "release_date": "2012-06-01", "popularity": 1.56425102147751, "original_title": "Snow White and the Huntsman", "budget": 170000000, "cast": [{"name": "Kristen Stewart", "character": "Snow White", "id": 37917, "credit_id": "52fe496ac3a36847f8198f9b", "cast_id": 1027, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Queen Ravenna", "id": 6885, "credit_id": "52fe496ac3a36847f8198f35", "cast_id": 1003, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Chris Hemsworth", "character": "The Huntsman", "id": 74568, "credit_id": "52fe496ac3a36847f8198f39", "cast_id": 1005, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 2}, {"name": "Sam Claflin", "character": "William", "id": 237455, "credit_id": "52fe496ac3a36847f8198f3d", "cast_id": 1006, "profile_path": "/uJds0AFjHpirDjxPPVZoflw39Ht.jpg", "order": 3}, {"name": "Ian McShane", "character": "Beith", "id": 6972, "credit_id": "52fe496ac3a36847f8198f71", "cast_id": 1015, "profile_path": "/pY9ud4BJwHekNiO4MMItPbgkdAy.jpg", "order": 4}, {"name": "Ray Winstone", "character": "Gort", "id": 5538, "credit_id": "52fe496ac3a36847f8198f75", "cast_id": 1016, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 5}, {"name": "Nick Frost", "character": "Nion", "id": 11109, "credit_id": "52fe496ac3a36847f8198f79", "cast_id": 1017, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 6}, {"name": "Toby Jones", "character": "Coll", "id": 13014, "credit_id": "52fe496ac3a36847f8198f7d", "cast_id": 1018, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 7}, {"name": "Eddie Marsan", "character": "Duir", "id": 1665, "credit_id": "52fe496ac3a36847f8198f81", "cast_id": 1019, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 8}, {"name": "Bob Hoskins", "character": "Muir", "id": 382, "credit_id": "52fe496ac3a36847f8198f85", "cast_id": 1020, "profile_path": "/mIgAC6q5HcHHxZUIiCOvE6mHLGs.jpg", "order": 9}, {"name": "Sam Spruell", "character": "Finn", "id": 55585, "credit_id": "52fe496ac3a36847f8198fab", "cast_id": 1030, "profile_path": "/ksZuHMo5c5CqFTbGIb8Rk6e44bP.jpg", "order": 10}, {"name": "Johnny Harris", "character": "Quert", "id": 32300, "credit_id": "52fe496ac3a36847f8198faf", "cast_id": 1031, "profile_path": "/1iKpLfSiJBFDrvt4RCJOGJrq2NM.jpg", "order": 11}, {"name": "Brian Gleeson", "character": "Gus", "id": 63364, "credit_id": "52fe496ac3a36847f8198fb3", "cast_id": 1032, "profile_path": "/o0Zic3R5sz2Mmrnz2CfvRuZYulY.jpg", "order": 12}, {"name": "Vincent Regan", "character": "Duke Hammond", "id": 9831, "credit_id": "52fe496ac3a36847f8198fb7", "cast_id": 1033, "profile_path": "/tiyjPHwmX8dMMfx0F8HUpXyLHeY.jpg", "order": 13}, {"name": "Noah Huntley", "character": "King Magnus", "id": 2050, "credit_id": "52fe496ac3a36847f8198fbb", "cast_id": 1034, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 14}, {"name": "Liberty Ross", "character": "Queen Eleanor", "id": 1088912, "credit_id": "52fe496ac3a36847f8198fbf", "cast_id": 1035, "profile_path": null, "order": 15}, {"name": "Christopher Obi", "character": "Mirror Man", "id": 1088913, "credit_id": "52fe496ac3a36847f8198fc3", "cast_id": 1036, "profile_path": "/9mkVa3qKba8S7UcyzUYZPkeRG37.jpg", "order": 16}, {"name": "Lily Cole", "character": "Greta", "id": 53688, "credit_id": "52fe496ac3a36847f8198fc7", "cast_id": 1037, "profile_path": "/9nbOarzgwOXHx9XJFfPBXjTF4IT.jpg", "order": 17}, {"name": "Rachael Stirling", "character": "Anna", "id": 18067, "credit_id": "52fe496ac3a36847f8198fcb", "cast_id": 1038, "profile_path": "/qG6JbbYVcZQnJhXThyY5U8PMyyb.jpg", "order": 18}, {"name": "Hattie Gotobed", "character": "Lily", "id": 1279512, "credit_id": "52fe496ac3a36847f8198fcf", "cast_id": 1039, "profile_path": null, "order": 19}, {"name": "Raffey Cassidy", "character": "Young Snow White", "id": 1055230, "credit_id": "52fe496ac3a36847f8198fd3", "cast_id": 1040, "profile_path": "/zrnh9Xju0UiOr8NeP1060TuNbzo.jpg", "order": 20}, {"name": "Xavier Atkins", "character": "Young William", "id": 1279513, "credit_id": "52fe496ac3a36847f8198fd7", "cast_id": 1041, "profile_path": null, "order": 21}, {"name": "Izzy Meikle-Small", "character": "Young Ravenna", "id": 142388, "credit_id": "52fe496ac3a36847f8198fdb", "cast_id": 1042, "profile_path": "/rEtcyAA8q3GObOL99EYCJUpAEvF.jpg", "order": 22}, {"name": "Anastasia Hille", "character": "Ravenna's mother", "id": 66791, "credit_id": "52fe496ac3a36847f8198fdf", "cast_id": 1043, "profile_path": "/tjUxXrtcF5pZ8k6DMdmXZikHAIP.jpg", "order": 23}, {"name": "Elliot Reeve", "character": "Young Finn", "id": 1279514, "credit_id": "52fe496ac3a36847f8198fe3", "cast_id": 1044, "profile_path": null, "order": 24}, {"name": "Mark Wingett", "character": "Thomas", "id": 65303, "credit_id": "52fe496ac3a36847f8198fe7", "cast_id": 1045, "profile_path": "/p3XQAnB8RZQsvbOoQio4lmH21jM.jpg", "order": 25}, {"name": "Jamie Blackley", "character": "Iain", "id": 221985, "credit_id": "52fe496ac3a36847f8198feb", "cast_id": 1046, "profile_path": "/AiRZjxoqNHh4pR7ngfwhLBvGe3F.jpg", "order": 26}, {"name": "Dave Legeno", "character": "Broch", "id": 60348, "credit_id": "52fe496ac3a36847f8198fef", "cast_id": 1047, "profile_path": "/l7BnFgvUsZrwIuNKnzNp1BsUBvV.jpg", "order": 27}, {"name": "Matt Berry", "character": "Percy", "id": 119904, "credit_id": "52fe496ac3a36847f8198ff3", "cast_id": 1048, "profile_path": "/xlPqH1tKaBUZVTZpwH7E3EkqbUR.jpg", "order": 28}, {"name": "Greg Hicks", "character": "Black Knight General", "id": 183151, "credit_id": "52fe496ac3a36847f8198ff7", "cast_id": 1049, "profile_path": null, "order": 29}, {"name": "Peter Ferdinando", "character": "Black Knight", "id": 109833, "credit_id": "52fe496ac3a36847f8198ffb", "cast_id": 1050, "profile_path": "/jrpB6xsVtTQ3f29dhywY5XH7AVP.jpg", "order": 30}, {"name": "Andrew Hawley", "character": "Guard on Duty", "id": 115683, "credit_id": "52fe496ac3a36847f8198fff", "cast_id": 1051, "profile_path": null, "order": 31}, {"name": "Joey Ansah", "character": "Aldan", "id": 29406, "credit_id": "52fe496ac3a36847f8199003", "cast_id": 1052, "profile_path": "/jHubXiYEiUhonrVzXUJfVTOJ2Jq.jpg", "order": 32}, {"name": "Gregor Truter", "character": "Duke's Commander", "id": 214794, "credit_id": "52fe496ac3a36847f8199007", "cast_id": 1053, "profile_path": null, "order": 33}, {"name": "Tom Mullion", "character": "Soldier", "id": 1279515, "credit_id": "52fe496ac3a36847f819900b", "cast_id": 1054, "profile_path": null, "order": 34}, {"name": "Darren Kent", "character": "Emaciated Peasant (uncredited)", "id": 1035907, "credit_id": "54e526dbc3a3682af600049e", "cast_id": 1056, "profile_path": "/erhPfnASkKB5ITTAi8OVf6tVz0B.jpg", "order": 35}], "directors": [{"name": "Rupert Sanders", "department": "Directing", "job": "Director", "credit_id": "52fe496ac3a36847f8198f91", "profile_path": "/kQyRb1BmPy6or6FHMstS2e7L3J8.jpg", "id": 228134}], "vote_average": 5.5, "runtime": 127}, "7512": {"poster_path": "/fPAhLmWdXDuwDPb37ccc6DqkJiw.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 495303, "overview": "To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.", "video": false, "id": 7512, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Idiocracy", "tagline": "In the future, intelligence is extinct.", "vote_count": 142, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0387808", "adult": false, "backdrop_path": "/1Nb27vtpb6ua72x5KPgdY6MXjYa.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Ternion Pictures", "id": 20992}], "release_date": "2006-09-01", "popularity": 0.798034630098955, "original_title": "Idiocracy", "budget": 30000000, "cast": [{"name": "Luke Wilson", "character": "Joe Bauers", "id": 36422, "credit_id": "52fe4481c3a36847f809a179", "cast_id": 1, "profile_path": "/n7CRA7h1z3FVOzBJ5EjfSrPQbvl.jpg", "order": 0}, {"name": "Maya Rudolph", "character": "Rita", "id": 52792, "credit_id": "52fe4481c3a36847f809a17d", "cast_id": 2, "profile_path": "/qLDuXku39c4uwVf3h2GjFqwZqik.jpg", "order": 1}, {"name": "Dax Shepard", "character": "Frito", "id": 51298, "credit_id": "52fe4481c3a36847f809a181", "cast_id": 3, "profile_path": "/50RfzslPEtaFdctKGU8GbWSheDZ.jpg", "order": 2}, {"name": "Terry Crews", "character": "President Camacho (as Terry Alan Crews)", "id": 53256, "credit_id": "52fe4481c3a36847f809a1df", "cast_id": 23, "profile_path": "/p2JIlYNwjC5ASfmVXvy30DVzXyG.jpg", "order": 3}, {"name": "Anthony 'Citric' Campos", "character": "Secretary of Defense", "id": 52793, "credit_id": "52fe4481c3a36847f809a185", "cast_id": 4, "profile_path": null, "order": 4}, {"name": "David Herman", "character": "Secretary of State", "id": 52794, "credit_id": "52fe4481c3a36847f809a189", "cast_id": 5, "profile_path": "/6S0UlaChdcilaeYk5svTxOCtShC.jpg", "order": 5}, {"name": "Sonny Castillo", "character": "Prosecutor", "id": 52795, "credit_id": "52fe4481c3a36847f809a18d", "cast_id": 6, "profile_path": null, "order": 6}, {"name": "Kevin McAfee", "character": "Bailiff (as Kevin S. McAfee)", "id": 52796, "credit_id": "52fe4481c3a36847f809a191", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Robert Musgrave", "character": "Sgt. Keller", "id": 52797, "credit_id": "52fe4481c3a36847f809a195", "cast_id": 8, "profile_path": null, "order": 8}, {"name": "Michael McCafferty", "character": "Officer Collins (as Mike McCafferty)", "id": 182680, "credit_id": "5441b551c3a3683e0100076c", "cast_id": 25, "profile_path": null, "order": 9}, {"name": "Christopher Ryan", "character": "Hospital Technician (as Ryan Melton)", "id": 52798, "credit_id": "52fe4481c3a36847f809a199", "cast_id": 9, "profile_path": null, "order": 10}, {"name": "Justin Long", "character": "Doctor", "id": 15033, "credit_id": "52fe4481c3a36847f809a19d", "cast_id": 10, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 11}, {"name": "Heath Jones", "character": "Cop #1", "id": 52799, "credit_id": "52fe4481c3a36847f809a1a1", "cast_id": 11, "profile_path": null, "order": 12}, {"name": "Eli Mu\u00f1oz", "character": "Horny Guy", "id": 52800, "credit_id": "52fe4481c3a36847f809a1a5", "cast_id": 12, "profile_path": null, "order": 13}, {"name": "Patrick Fischler", "character": "Yuppie Husband", "id": 52801, "credit_id": "52fe4481c3a36847f809a1a9", "cast_id": 13, "profile_path": "/ccSabJ9XcpsF21OPskhJRxKsz2d.jpg", "order": 14}, {"name": "Darlene Hunt", "character": "Yuppie Wife", "id": 21005, "credit_id": "52fe4481c3a36847f809a1ad", "cast_id": 14, "profile_path": null, "order": 15}, {"name": "Ryan Ransdell", "character": "Trashy Guy", "id": 52802, "credit_id": "52fe4481c3a36847f809a1b1", "cast_id": 15, "profile_path": null, "order": 16}, {"name": "Melissa Sweet", "character": "Slutty Girl", "id": 1375020, "credit_id": "5441b5c0c3a3683e01000779", "cast_id": 26, "profile_path": null, "order": 17}, {"name": "Valerie Posas", "character": "New Slutty Girl", "id": 1375021, "credit_id": "5441b5d50e0a26634d00076b", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Wes Davis", "character": "Trashy Teen Jock", "id": 1375022, "credit_id": "5441b5e20e0a266333000801", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "Andrew Wilson", "character": "Beef Supreme", "id": 71555, "credit_id": "5441b5f9c3a3683e0e000786", "cast_id": 29, "profile_path": "/tGwZ3P9xENc0C8HD7wiuspCm8tM.jpg", "order": 20}, {"name": "Mark Tuner", "character": "Officer", "id": 1375023, "credit_id": "5441b606c3a3683e0e00078d", "cast_id": 30, "profile_path": null, "order": 21}, {"name": "Kevin Klee", "character": "Main Character (Ow! My Balls! Guy)", "id": 1375024, "credit_id": "5441b621c3a3683df20007b5", "cast_id": 31, "profile_path": null, "order": 22}, {"name": "John Dodson", "character": "Additional Officer", "id": 1375025, "credit_id": "5441b642c3a3683e050007db", "cast_id": 32, "profile_path": null, "order": 23}, {"name": "Melissa Espinales", "character": "Counter Woman", "id": 1375026, "credit_id": "5441b650c3a3683e0b0007bf", "cast_id": 33, "profile_path": null, "order": 24}, {"name": "Joseph Cheatham", "character": "Doctor in Waiting Room", "id": 1375027, "credit_id": "5441b679c3a3683e0b0007ca", "cast_id": 34, "profile_path": null, "order": 25}, {"name": "Jason Schaefer", "character": "Prison Guard #1 / Costco Greeter", "id": 1375028, "credit_id": "5441b68fc3a3683df7000739", "cast_id": 35, "profile_path": null, "order": 26}, {"name": "Richard Reeder", "character": "Prison Guard #2", "id": 1375029, "credit_id": "5441b69fc3a3683e08000761", "cast_id": 36, "profile_path": null, "order": 27}, {"name": "Lawrence Castillo", "character": "Prison Guard #3", "id": 1375030, "credit_id": "5441b6a9c3a3683dfb000794", "cast_id": 37, "profile_path": null, "order": 28}, {"name": "Turk Pipkin", "character": "Guy at Costco", "id": 157534, "credit_id": "5441b6c90e0a26633600082a", "cast_id": 38, "profile_path": null, "order": 29}, {"name": "Heather Kafka", "character": "Woman at Carl's Jr.", "id": 71565, "credit_id": "5441b6f50e0a26632d00077b", "cast_id": 39, "profile_path": null, "order": 30}, {"name": "Christopher M. Campos", "character": "Congressman #1", "id": 1375031, "credit_id": "5441b708c3a3683e0e0007ba", "cast_id": 40, "profile_path": null, "order": 31}, {"name": "Roman Ramos", "character": "Congressman #2", "id": 1375032, "credit_id": "5441b7140e0a26633d00085f", "cast_id": 41, "profile_path": null, "order": 32}, {"name": "Randal Reeder", "character": "Secret Service Thug", "id": 215887, "credit_id": "5441b72cc3a3683e0b0007e3", "cast_id": 42, "profile_path": "/8rCIZVcAFwBrvrj9lFXho4HH2Xf.jpg", "order": 33}, {"name": "Scarface", "character": "Upgrayedd (as Brad \"Scarface\" Jordan)", "id": 1087617, "credit_id": "5441b79b0e0a26633d000878", "cast_id": 43, "profile_path": null, "order": 34}, {"name": "Brendan Hill", "character": "Secretary of Energy", "id": 94983, "credit_id": "5441b7b90e0a26633a0007cc", "cast_id": 44, "profile_path": null, "order": 35}, {"name": "Thomas Haden Church", "character": "Brawndo CEO", "id": 19159, "credit_id": "5441b7ebc3a3683df7000786", "cast_id": 45, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 36}, {"name": "Melissa Dawn", "character": "Female Newscaster", "id": 1375033, "credit_id": "5441b808c3a3683e080007ac", "cast_id": 46, "profile_path": null, "order": 37}, {"name": "Derek Southers", "character": "Male Newscaster", "id": 1375034, "credit_id": "5441b814c3a3683df7000798", "cast_id": 47, "profile_path": null, "order": 38}, {"name": "Lidia Porto", "character": "Female Reporter", "id": 180527, "credit_id": "5441b829c3a3683df70007a0", "cast_id": 48, "profile_path": "/pf93ztgaIlecCLhLd0t4yId8Dvb.jpg", "order": 39}, {"name": "Gregory Kelly", "character": "Stadium Guard (as Greg Kelly)", "id": 1375035, "credit_id": "5441b86ec3a3683df2000821", "cast_id": 49, "profile_path": null, "order": 40}, {"name": "Greg Pitts", "character": "Cameraman", "id": 84816, "credit_id": "5441b879c3a3683df70007af", "cast_id": 50, "profile_path": "/gl2maPRYG8s7WcAQRNel26Cswkc.jpg", "order": 41}, {"name": "Jason Konopisos", "character": "Cop at Government Center", "id": 1375036, "credit_id": "5441b906c3a3683dfb000801", "cast_id": 51, "profile_path": null, "order": 42}, {"name": "Mitch Baker", "character": "Doctor (with Trashy Guy)", "id": 32238, "credit_id": "5441b91fc3a3683e01000828", "cast_id": 52, "profile_path": null, "order": 43}, {"name": "Daniel Smith", "character": "Control Room Director", "id": 1375037, "credit_id": "5441b94dc3a3683e0b00084b", "cast_id": 53, "profile_path": null, "order": 44}, {"name": "Chris Warner", "character": "Cop at Costco", "id": 139235, "credit_id": "5441b98fc3a3683e01000840", "cast_id": 54, "profile_path": null, "order": 45}, {"name": "Lonnie Nelson", "character": "Trapped Man", "id": 1375038, "credit_id": "5441b9a20e0a26633d0008e7", "cast_id": 55, "profile_path": null, "order": 46}, {"name": "Danny Cochran", "character": "Secretary of Education", "id": 1375039, "credit_id": "5441b9b1c3a3683e0b000858", "cast_id": 56, "profile_path": null, "order": 47}, {"name": "Marcos Martinez Rios", "character": "Secret Service Thug #2", "id": 1375040, "credit_id": "5441b9cd0e0a26633a00083e", "cast_id": 57, "profile_path": null, "order": 48}, {"name": "Earl Mann", "character": "Narrator", "id": 1375041, "credit_id": "5441b9d90e0a2663330008b0", "cast_id": 58, "profile_path": null, "order": 49}, {"name": "Sara Rue", "character": "Attorney General (uncredited)", "id": 10131, "credit_id": "52fee4299251417cd3099817", "cast_id": 24, "profile_path": "/1OlEg9M8oSsGivjyFJJFyCkKqkk.jpg", "order": 50}], "directors": [{"name": "Mike Judge", "department": "Directing", "job": "Director", "credit_id": "52fe4481c3a36847f809a1b7", "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "id": 17403}], "vote_average": 6.3, "runtime": 84}, "7516": {"poster_path": "/sIxQqvlhqWRiw0czLNuGS8q3P4F.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57103895, "overview": "When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.", "video": false, "id": 7516, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Smokin' Aces", "tagline": "Nobody gets away clean.", "vote_count": 136, "homepage": "http://www.smokinaces.net/", "belongs_to_collection": {"backdrop_path": "/1TbMf5bJnYCP9sXhRSVHULPJDbw.jpg", "poster_path": "/9Y702mgpXAMQsGJ4jGEH1EqrJaW.jpg", "id": 96680, "name": "Smokin' Aces Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0475394", "adult": false, "backdrop_path": "/68DzpzWIOA54ooEvplDxtCfkWY5.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Working Title Films", "id": 10163}, {"name": "StudioCanal", "id": 694}, {"name": "Relativity Media", "id": 7295}, {"name": "Scion Films", "id": 7419}], "release_date": "2006-12-05", "popularity": 0.876814741474845, "original_title": "Smokin' Aces", "budget": 17000000, "cast": [{"name": "Ryan Reynolds", "character": "Richard Messner", "id": 10859, "credit_id": "52fe4482c3a36847f809a3a7", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Ray Liotta", "character": "Donald Carruthers", "id": 11477, "credit_id": "52fe4482c3a36847f809a3ab", "cast_id": 2, "profile_path": "/o4jJSH3sri9dSIJwsCgT4de1535.jpg", "order": 1}, {"name": "Joseph Ruskin", "character": "Primo Sparazza", "id": 15998, "credit_id": "52fe4482c3a36847f809a3af", "cast_id": 3, "profile_path": "/5D0Izyi1qHLhlRWLoXgimfN436.jpg", "order": 2}, {"name": "Alex Rocco", "character": "Serna", "id": 20752, "credit_id": "52fe4482c3a36847f809a3b3", "cast_id": 4, "profile_path": "/lISkRNmrR2P8OXvgPBZc7QmkLWA.jpg", "order": 3}, {"name": "Wayne Newton", "character": "Himself", "id": 10681, "credit_id": "52fe4482c3a36847f809a3b7", "cast_id": 5, "profile_path": "/18fkbXVRlEIXKKmsGq5OeJuTJ9V.jpg", "order": 4}, {"name": "Jeremy Piven", "character": "Buddy Israel", "id": 12799, "credit_id": "52fe4482c3a36847f809a3bb", "cast_id": 6, "profile_path": "/qtho4ZUcValnVvscTGgyWfUr4VP.jpg", "order": 5}, {"name": "Ben Affleck", "character": "Jack Dupree", "id": 880, "credit_id": "52fe4482c3a36847f809a3bf", "cast_id": 7, "profile_path": "/yXtyygmSGtrwTfEmr6g2WgHFJIZ.jpg", "order": 6}, {"name": "Martin Henderson", "character": "Hollis Elmore", "id": 26291, "credit_id": "52fe4482c3a36847f809a3c3", "cast_id": 9, "profile_path": "/tWuEwdM7TnM9KenYbRKLSFbo3zx.jpg", "order": 7}, {"name": "Common", "character": "Sir Ivy", "id": 4238, "credit_id": "52fe4482c3a36847f809a3c7", "cast_id": 10, "profile_path": "/egsBjXzQiGpAPe5s66XqOHMF0SV.jpg", "order": 8}, {"name": "Christopher Michael Holley", "character": "Beanie", "id": 52855, "credit_id": "52fe4482c3a36847f809a3cb", "cast_id": 11, "profile_path": null, "order": 9}, {"name": "Andy Garc\u00eda", "character": "Stanley Locke", "id": 1271, "credit_id": "52fe4482c3a36847f809a3cf", "cast_id": 12, "profile_path": "/q3LAfRFLNhnNrIp7BFthDDosEHt.jpg", "order": 10}, {"name": "Mike Falkow", "character": "Freeman Heller", "id": 52857, "credit_id": "52fe4482c3a36847f809a3d3", "cast_id": 13, "profile_path": null, "order": 11}, {"name": "Joe Drago", "character": "FBI Aid", "id": 52859, "credit_id": "52fe4482c3a36847f809a3d7", "cast_id": 14, "profile_path": null, "order": 12}, {"name": "Jeff Habberstad", "character": "Top Coated Gunman", "id": 9624, "credit_id": "52fe4482c3a36847f809a3db", "cast_id": 15, "profile_path": null, "order": 13}, {"name": "Peter Berg", "character": "\"Pistol\" Pete Deeks", "id": 36602, "credit_id": "52fe4482c3a36847f809a40f", "cast_id": 24, "profile_path": "/vqyuaJWAiFMqDcDaIzvDG1n9E2E.jpg", "order": 14}, {"name": "Matthew Fox", "character": "Bill", "id": 28657, "credit_id": "52fe4482c3a36847f809a413", "cast_id": 25, "profile_path": "/o8hMOleGaZ4BbZQFJXrU0xtMsSI.jpg", "order": 15}, {"name": "Alicia Keys", "character": "Georgia Sykes", "id": 72208, "credit_id": "52fe4482c3a36847f809a41d", "cast_id": 27, "profile_path": "/7s596YUye3gnBg0dD1BC5WCcoXQ.jpg", "order": 16}, {"name": "Tommy Flanagan", "character": "Lazlo Soot", "id": 2478, "credit_id": "52fe4482c3a36847f809a421", "cast_id": 28, "profile_path": "/eVHvVN05wJSINFlkjxjwOwe6C3L.jpg", "order": 17}, {"name": "Kevin Durand", "character": "Jeeves Tremor", "id": 79072, "credit_id": "52fe4482c3a36847f809a425", "cast_id": 29, "profile_path": "/8hd4SCYe27yDBFjndoW2zMBKrYj.jpg", "order": 18}, {"name": "Chris Pine", "character": "Darwin Tremor", "id": 62064, "credit_id": "52fe4482c3a36847f809a429", "cast_id": 30, "profile_path": "/nAYcoQqMEuZzBZzaYCQlabqKhx0.jpg", "order": 19}], "directors": [{"name": "Joe Carnahan", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a3e1", "profile_path": "/5YPrZ1JprLwtU4tn5DG0wqLjsAT.jpg", "id": 40223}], "vote_average": 6.1, "runtime": 109}, "2123": {"poster_path": "/y7OG1Y2UvnaEoQEQIonnykJvdwt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 149270999, "overview": "Rhode Island State Trooper Charlie Baileygates has a multiple personality disorder. One personality is crazy and aggressive, while the other is more friendly and laid back. Both of these personalities fall in love with the same woman named Irene after Charlie loses his medication.", "video": false, "id": 2123, "genres": [{"id": 35, "name": "Comedy"}], "title": "Me, Myself & Irene", "tagline": "From gentle to mental.", "vote_count": 256, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt0183505", "adult": false, "backdrop_path": "/pIKoFpNAGd4J6kOun4PVLBfE4jN.jpg", "production_companies": [{"name": "20th Century Fox", "id": 25}], "release_date": "2000-06-15", "popularity": 1.52425242841699, "original_title": "Me, Myself & Irene", "budget": 51000000, "cast": [{"name": "Jim Carrey", "character": "Off. Charlie Baileygates/Hank Evans", "id": 206, "credit_id": "52fe4338c3a36847f8043759", "cast_id": 14, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Ren\u00e9e Zellweger", "character": "Irene P. Waters", "id": 9137, "credit_id": "52fe4338c3a36847f8043761", "cast_id": 16, "profile_path": "/rAfHyC0IxqwRTKuwosU85ZwQicL.jpg", "order": 1}, {"name": "Anthony Anderson", "character": "Jamaal Baileygates", "id": 18471, "credit_id": "52fe4338c3a36847f8043765", "cast_id": 17, "profile_path": "/gtT7UdBiNohfOuoXeO2c5rMwTvn.jpg", "order": 2}, {"name": "Robert Forster", "character": "Colonel Partington", "id": 5694, "credit_id": "53d606bcc3a3686b8b005932", "cast_id": 29, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Agent Boshane", "id": 28633, "credit_id": "53d604cdc3a3686b850057b2", "cast_id": 26, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Zen Gesner", "character": "Agent Peterson", "id": 60672, "credit_id": "53d606afc3a3686b940055fd", "cast_id": 28, "profile_path": "/a3Bz7jshLx2E2T2HnadtIryYJif.jpg", "order": 5}, {"name": "Mongo Brownlee", "character": "Lee Harvey Baileygates", "id": 21802, "credit_id": "52fe4338c3a36847f8043769", "cast_id": 18, "profile_path": null, "order": 6}, {"name": "Jerod Mixon", "character": "Shante Jr. Bailreygates", "id": 21804, "credit_id": "52fe4338c3a36847f8043771", "cast_id": 20, "profile_path": "/lshCeycr3t6iw3EZvqzGmEYqxPb.jpg", "order": 7}, {"name": "Chris Cooper", "character": "Lieutenant Gerke", "id": 2955, "credit_id": "52fe4338c3a36847f8043775", "cast_id": 21, "profile_path": "/ytZY7YofdiAZyiyr4NyiB77lwwQ.jpg", "order": 8}, {"name": "Cam Neely", "character": "", "id": 184180, "credit_id": "52fe4338c3a36847f8043779", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Shannon Whirry", "character": "Beautiful Mom", "id": 81287, "credit_id": "52fe4338c3a36847f804377d", "cast_id": 23, "profile_path": "/4zeJ3FwTz4R3C76WCXC7eYJWui4.jpg", "order": 10}, {"name": "Traylor Howard", "character": "Layla", "id": 54826, "credit_id": "52fe4338c3a36847f8043781", "cast_id": 24, "profile_path": "/8UYTuF7qOZeLnQnTEvnhha1D7MX.jpg", "order": 11}, {"name": "Tony Cox", "character": "Shonte", "id": 19754, "credit_id": "53d604e0c3a3686b940055e3", "cast_id": 27, "profile_path": "/5b7fTm33ZblMhMhnwK8KqTJ3nry.jpg", "order": 12}, {"name": "Daniel Greene", "character": "Dickie Thurman", "id": 42199, "credit_id": "52fe4338c3a36847f8043785", "cast_id": 25, "profile_path": null, "order": 13}], "directors": [{"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4338c3a36847f804370d", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}, {"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe4338c3a36847f8043713", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}], "vote_average": 6.0, "runtime": 116}, "97630": {"poster_path": "/mjLAlPXAIooAiOqHu5IB98nfHKn.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 138820716, "overview": "A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.", "video": false, "id": 97630, "genres": [{"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 53, "name": "Thriller"}], "title": "Zero Dark Thirty", "tagline": "The Greatest Manhunt in History", "vote_count": 835, "homepage": "http://www.zerodarkthirty-movie.com/site/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}], "imdb_id": "tt1790885", "adult": false, "backdrop_path": "/oSGHRXvdHFbUlSq2DplenVFdqqb.jpg", "production_companies": [{"name": "First Light Production", "id": 20344}, {"name": "Columbia Pictures", "id": 5}, {"name": "Annapurna Pictures", "id": 13184}], "release_date": "2012-12-19", "popularity": 2.30766378711782, "original_title": "Zero Dark Thirty", "budget": 40000000, "cast": [{"name": "Jessica Chastain", "character": "Maya", "id": 83002, "credit_id": "52fe49e89251416c750d7415", "cast_id": 4, "profile_path": "/1kS81Pio4ga1FoeYTVWGkGcmEDS.jpg", "order": 0}, {"name": "Jason Clarke", "character": "Dan", "id": 76512, "credit_id": "52fe49e89251416c750d748f", "cast_id": 38, "profile_path": "/k0wyfdMPh6TSaDKkrreuQIfg1sr.jpg", "order": 1}, {"name": "Mark Strong", "character": "George", "id": 2983, "credit_id": "52fe49e89251416c750d7411", "cast_id": 3, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 2}, {"name": "Joel Edgerton", "character": "Patrick - Squadron Team Leader", "id": 33192, "credit_id": "52fe49e89251416c750d7419", "cast_id": 5, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 3}, {"name": "Chris Pratt", "character": "Justin - DEVGRU", "id": 73457, "credit_id": "52fe49e89251416c750d741d", "cast_id": 6, "profile_path": "/hwzMHnBpfLutaOMVVMkIkLWHBYU.jpg", "order": 4}, {"name": "Kyle Chandler", "character": "Joseph Bradley", "id": 3497, "credit_id": "52fe49e89251416c750d7421", "cast_id": 7, "profile_path": "/1un1X4SxxcSVUYEgQ0HXPPRhKcv.jpg", "order": 5}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Larry from Ground Branch", "id": 25616, "credit_id": "52fe49e89251416c750d7437", "cast_id": 11, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 6}, {"name": "Mark Duplass", "character": "Steve", "id": 45407, "credit_id": "52fe49e89251416c750d743b", "cast_id": 12, "profile_path": "/pY2qE627sM0Wkx6HvQQWeZ6fd15.jpg", "order": 7}, {"name": "Scott Adkins", "character": "John", "id": 78110, "credit_id": "52fe49e89251416c750d743f", "cast_id": 13, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 8}, {"name": "Jennifer Ehle", "character": "Jessica", "id": 49971, "credit_id": "52fe49e89251416c750d7443", "cast_id": 15, "profile_path": "/lZsU6KrXXkIVtcvJmlPKwPRtBkn.jpg", "order": 9}, {"name": "Ricky Sekhon", "character": "Osama Bin Laden", "id": 1061516, "credit_id": "52fe49e89251416c750d7447", "cast_id": 16, "profile_path": "/dalAG4IjRcFSO5tgjNR94qA5EK9.jpg", "order": 10}, {"name": "Reda Kateb", "character": "Ammar", "id": 89626, "credit_id": "52fe49e89251416c750d744b", "cast_id": 18, "profile_path": "/zfrJui3N3UybfLJQOMC6SalcBlJ.jpg", "order": 11}, {"name": "Harold Perrineau", "character": "Jack", "id": 6195, "credit_id": "52fe49e89251416c750d744f", "cast_id": 19, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 12}, {"name": "Jeremy Strong", "character": "Thomas", "id": 239271, "credit_id": "52fe49e89251416c750d7453", "cast_id": 20, "profile_path": "/3q2zQBCEilPEbmDsHBiazuivyKy.jpg", "order": 13}, {"name": "J.J. Kandel", "character": "J.J.", "id": 1140088, "credit_id": "52fe49e89251416c750d7457", "cast_id": 21, "profile_path": "/e1kC4CdKjfS42ytkZaoAUz1jfE9.jpg", "order": 14}, {"name": "James Gandolfini", "character": "C.I.A. Director", "id": 4691, "credit_id": "52fe49e89251416c750d745b", "cast_id": 22, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 15}, {"name": "Stephen Dillane", "character": "National Security Advisor", "id": 8435, "credit_id": "52fe49e89251416c750d745f", "cast_id": 23, "profile_path": "/4LOq4XUIsUTO1VdwqL1BWZIMRL3.jpg", "order": 16}, {"name": "John Schwab", "character": "Deputy National Security Advisor", "id": 207304, "credit_id": "52fe49e89251416c750d7463", "cast_id": 24, "profile_path": "/edY8s4wNBkbBkprdsFm1wTBb1sl.jpg", "order": 17}, {"name": "Martin Delaney", "character": "Assistant to National Security Advisor", "id": 255430, "credit_id": "52fe49e89251416c750d7467", "cast_id": 25, "profile_path": "/iN4EbneAUN6Yfd24424jLlX7q7Q.jpg", "order": 18}, {"name": "John Barrowman", "character": "Jeremy", "id": 182287, "credit_id": "52fe49e89251416c750d746b", "cast_id": 28, "profile_path": "/bqORM8i3H0EFc8UqYMUpFZNA8u6.jpg", "order": 19}, {"name": "Jeff Mash", "character": "Deputy Director of C.I.A.", "id": 1140091, "credit_id": "52fe49e89251416c750d746f", "cast_id": 29, "profile_path": "/9CfRm0zsWztCSDo1QiBu0slIr98.jpg", "order": 20}, {"name": "Taylor Kinney", "character": "Jared - DEVGRU", "id": 210271, "credit_id": "52fe49e89251416c750d7473", "cast_id": 30, "profile_path": "/22OpVOcxlDR2aFX3khIIQekhaEJ.jpg", "order": 21}, {"name": "Callan Mulvey", "character": "Saber - DEVGRU", "id": 208296, "credit_id": "52fe49e89251416c750d7477", "cast_id": 31, "profile_path": "/htTfBckaMml134A9lFKs6uij3yv.jpg", "order": 22}, {"name": "Siaosi Fonua", "character": "Henry - DEVGRU", "id": 1140092, "credit_id": "52fe49e89251416c750d747b", "cast_id": 32, "profile_path": "/dYbFLXKZpitdopX1acst04ay1op.jpg", "order": 23}, {"name": "Phil Somerville", "character": "Phil - DEVGRU", "id": 1140093, "credit_id": "52fe49e89251416c750d747f", "cast_id": 33, "profile_path": "/mCX6RUGErX9sGB6zuCa033eZe13.jpg", "order": 24}, {"name": "Nash Edgerton", "character": "Nate - DEVGRU EOD", "id": 75131, "credit_id": "52fe49e89251416c750d7483", "cast_id": 34, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 25}, {"name": "Mike Colter", "character": "Mike - DEVGRU", "id": 450, "credit_id": "52fe49e89251416c750d7487", "cast_id": 35, "profile_path": "/eP0RelLOZrlMH2W3qFVx87VG9ij.jpg", "order": 26}, {"name": "Jessica Collins", "character": "Debbie", "id": 1215663, "credit_id": "52fe49e89251416c750d749f", "cast_id": 41, "profile_path": "/czZN9Vx2coCDTz1TbkFBsp9LcFH.jpg", "order": 27}, {"name": "Frank Grillo", "character": "Squadron Commanding Officer", "id": 81685, "credit_id": "52fe49e89251416c750d748b", "cast_id": 36, "profile_path": "/eM5oGl5rBaIuZo9KPx1TsRjJVvf.jpg", "order": 28}, {"name": "Fares Fares", "character": "Hakim", "id": 57012, "credit_id": "54ce916c9251415cb8004dad", "cast_id": 54, "profile_path": "/1BE5IG3hcFXfMjBuJJyKs2JpPjI.jpg", "order": 29}], "directors": [{"name": "Kathryn Bigelow", "department": "Directing", "job": "Director", "credit_id": "52fe49e89251416c750d7407", "profile_path": "/z48vj4tHjwWATfA5OIwtXdVMmPA.jpg", "id": 14392}], "vote_average": 6.3, "runtime": 157}, "7520": {"poster_path": "/yT5OPWfdZGxxLYYn7qaVgt4GXvy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 171504781, "overview": "A talented New York bartender takes a job at a bar in Jamaica and falls in love.", "video": false, "id": 7520, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Cocktail", "tagline": "When he pours, he reigns.", "vote_count": 62, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0094889", "adult": false, "backdrop_path": "/xwT7LGaJCpq0lbVgUlxNLPCu3eA.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}], "release_date": "1988-07-29", "popularity": 0.381525359620681, "original_title": "Cocktail", "budget": 0, "cast": [{"name": "Tom Cruise", "character": "Brian Flanagan", "id": 500, "credit_id": "52fe4482c3a36847f809a58d", "cast_id": 1, "profile_path": "/3oWEuo0e8Nx8JvkqYCDec2iMY6K.jpg", "order": 0}, {"name": "Bryan Brown", "character": "Douglas \"Doug\" Coughlin", "id": 29092, "credit_id": "52fe4482c3a36847f809a591", "cast_id": 2, "profile_path": "/ppE8Gy8jyjB5oQwwryVFgvQlHUr.jpg", "order": 1}, {"name": "Elisabeth Shue", "character": "Jordan Mooney", "id": 1951, "credit_id": "52fe4482c3a36847f809a595", "cast_id": 3, "profile_path": "/44AaIXkbZFkdhSW1kRdzCbfYk6c.jpg", "order": 2}, {"name": "Lisa Banes", "character": "Bonnie", "id": 52878, "credit_id": "52fe4482c3a36847f809a599", "cast_id": 4, "profile_path": "/rXBe8lx88ESRIoKLqUMIYWpfoCq.jpg", "order": 3}, {"name": "Kelly Lynch", "character": "Kerry Coughlin", "id": 6473, "credit_id": "52fe4482c3a36847f809a5d3", "cast_id": 14, "profile_path": "/20OsGbyUux00wkeL7BFfYnaXwlo.jpg", "order": 4}, {"name": "Gina Gershon", "character": "Coral", "id": 11150, "credit_id": "5428f4290e0a265562004528", "cast_id": 15, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 5}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe4482c3a36847f809a59f", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.6, "runtime": 104}, "796": {"poster_path": "/6RQu0J2u7viDa34Nn98sKaHv5jD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75902208, "overview": "Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.", "video": false, "id": 796, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10749, "name": "Romance"}], "title": "Cruel Intentions", "tagline": "In the game of seduction, There is only one rule: Never fall in love.", "vote_count": 242, "homepage": "", "belongs_to_collection": {"backdrop_path": "/10KZhETCbOGoffxglHDRyStgdc8.jpg", "poster_path": "/9zX9Ak6JjYpIMWH43X6sNQQG7we.jpg", "id": 52789, "name": "Cruel Intentions Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0139134", "adult": false, "backdrop_path": "/74OOkCoNbMb5bDg1AVXQxmGUTex.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Cruel Productions", "id": 505}, {"name": "Newmarket Capital Group", "id": 506}], "release_date": "1999-03-05", "popularity": 0.956455585029539, "original_title": "Cruel Intentions", "budget": 10500000, "cast": [{"name": "Sarah Michelle Gellar", "character": "Kathryn Merteuil", "id": 11863, "credit_id": "52fe4277c3a36847f8021003", "cast_id": 1, "profile_path": "/rweJ98bNan86oIliWZYT552oRra.jpg", "order": 0}, {"name": "Ryan Phillippe", "character": "Sebastian Valmont", "id": 11864, "credit_id": "52fe4277c3a36847f8021007", "cast_id": 2, "profile_path": "/x45ClG3kzHgTuThl9Rj8GPMuelk.jpg", "order": 1}, {"name": "Reese Witherspoon", "character": "Annette Hargrove", "id": 368, "credit_id": "52fe4277c3a36847f802100b", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 2}, {"name": "Selma Blair", "character": "Cecile Caldwell", "id": 11826, "credit_id": "52fe4277c3a36847f802100f", "cast_id": 4, "profile_path": "/xltCuuG4xjACQ6vQm55iuR5LFJC.jpg", "order": 3}, {"name": "Louise Fletcher", "character": "Helen Rosemond", "id": 7071, "credit_id": "52fe4277c3a36847f8021013", "cast_id": 5, "profile_path": "/A4Cn7LsuLlOXvOMKv5ez4ThyeZL.jpg", "order": 4}, {"name": "Joshua Jackson", "character": "Blaine Tuttle", "id": 11866, "credit_id": "52fe4277c3a36847f8021017", "cast_id": 6, "profile_path": "/e1btrP27otWpSRvgVV9PsOKCpJG.jpg", "order": 5}, {"name": "Eric Mabius", "character": "Greg McConnell", "id": 11867, "credit_id": "52fe4277c3a36847f802101b", "cast_id": 7, "profile_path": "/mfYqgYHkvJRgPus0kN2V1GhsFOU.jpg", "order": 6}, {"name": "Sean Patrick Thomas", "character": "Ronald Clifford", "id": 11868, "credit_id": "52fe4277c3a36847f802101f", "cast_id": 8, "profile_path": "/8cXF4Ywgs70ZL1j2q5A2yOvd2AY.jpg", "order": 7}, {"name": "Christine Baranski", "character": "Bunny Caldwell", "id": 11870, "credit_id": "52fe4277c3a36847f8021023", "cast_id": 10, "profile_path": "/zqa4wSQpkakj1YZFORTknuTDPz4.jpg", "order": 8}, {"name": "Alaina Reed Hall", "character": "Nurse", "id": 11871, "credit_id": "52fe4277c3a36847f8021027", "cast_id": 11, "profile_path": "/gzz8PaJjPbP2j6x8ViZcyHq3C85.jpg", "order": 9}, {"name": "Deborah Offner", "character": "Mrs. Michalak", "id": 11872, "credit_id": "52fe4277c3a36847f802102b", "cast_id": 12, "profile_path": "/ywOLdDO1sXMc5ygatNxeHgg4SQo.jpg", "order": 10}, {"name": "Tara Reid", "character": "Marci Greenbaum", "id": 1234, "credit_id": "52fe4277c3a36847f802102f", "cast_id": 13, "profile_path": "/tnK1AaA3Xt6cjy621s6B3TeIrYV.jpg", "order": 11}, {"name": "Swoosie Kurtz", "character": "Dr. Greenbaum", "id": 12967, "credit_id": "52fe4277c3a36847f8021069", "cast_id": 24, "profile_path": "/vMZajDmqbbfzSw6jxgAYIf3CrJm.jpg", "order": 12}, {"name": "Herta Ware", "character": "Mrs. Sugarman", "id": 136482, "credit_id": "54899b9c92514161d0001717", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Hiep Thi Le", "character": "Mai-Lee", "id": 167166, "credit_id": "54899bb192514161dc0017a9", "cast_id": 27, "profile_path": "/s7eDAproo0vjNpYyw1oK2yirwNS.jpg", "order": 14}, {"name": "Charlie O'Connell", "character": "Court Reynolds", "id": 129122, "credit_id": "54899bbc92514161d500177e", "cast_id": 28, "profile_path": "/w61jQEBWIoTQst0ZZ5Pv4gG27JN.jpg", "order": 15}, {"name": "Fred Norris", "character": "Meter Maid", "id": 1049208, "credit_id": "54899bf4c3a3686f58001782", "cast_id": 29, "profile_path": "/zHDvTYwMA7lMxdmh0voFKWEfl79.jpg", "order": 16}, {"name": "Ginger Williams", "character": "Clorissa", "id": 1395911, "credit_id": "54899bfe92514161d5001786", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Drew Snyder", "character": "Headmaster Hargrove", "id": 52188, "credit_id": "54899c0b92514161cc00171f", "cast_id": 31, "profile_path": "/xW8V4eZaFRm0J2FCNNrcojN8yOg.jpg", "order": 18}, {"name": "Phil Hawn", "character": "", "id": 94561, "credit_id": "54899c1792514161d3001773", "cast_id": 32, "profile_path": null, "order": 19}], "directors": [{"name": "Roger Kumble", "department": "Directing", "job": "Director", "credit_id": "52fe4277c3a36847f8021035", "profile_path": "/uGKg8pacbWifsUK5IBvmPziHDKK.jpg", "id": 11873}], "vote_average": 6.4, "runtime": 97}, "12177": {"poster_path": "/q3g4UFCMPqbKXfc3qMOsYQBOGbl.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 41819064, "overview": "Born in America and raised in an Indian ashram, Pitka (Mike Myers) returns to his native land to seek his fortune as a spiritualist and self-help expert. His skills are put to the test when he must get a brokenhearted hockey player's marriage back on track in time for the man to help his team win the Stanley Cup.", "video": false, "id": 12177, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Love Guru", "tagline": "His Karma is Huge", "vote_count": 68, "homepage": "http://www.lovegurumovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0811138", "adult": false, "backdrop_path": "/6ohE4r6nlg4xZum13Yfoj2wdz5X.jpg", "production_companies": [{"name": "Paramount Pictures", "id": 4}, {"name": "Goldcrest Pictures", "id": 11843}, {"name": "Internationale Filmproduktion", "id": 15742}], "release_date": "2008-06-20", "popularity": 0.851524102360299, "original_title": "The Love Guru", "budget": 62000000, "cast": [{"name": "Mike Myers", "character": "Pitka", "id": 12073, "credit_id": "52fe44c49251416c7504049d", "cast_id": 12, "profile_path": "/sa8MMxXZrHgQ85hTAP11WS4N3ik.jpg", "order": 0}, {"name": "Jessica Alba", "character": "Jane Bullard", "id": 56731, "credit_id": "52fe44c49251416c750404a1", "cast_id": 13, "profile_path": "/pkwAeOcW3ZBhN48SC4fnQt2josF.jpg", "order": 1}, {"name": "Justin Timberlake", "character": "Jacques \"Le Coq\" Grande", "id": 12111, "credit_id": "52fe44c49251416c750404a5", "cast_id": 14, "profile_path": "/lB3pku743f3N82AVXz10fGGBAgL.jpg", "order": 2}, {"name": "Romany Malco", "character": "Darren Roanoke", "id": 71530, "credit_id": "52fe44c49251416c750404a9", "cast_id": 15, "profile_path": "/kfdEZJeokoL1dzqPefMl6daJ2Oe.jpg", "order": 3}, {"name": "Meagan Good", "character": "Prudence", "id": 22122, "credit_id": "52fe44c49251416c750404ad", "cast_id": 16, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 4}, {"name": "Omid Djalili", "character": "Guru Satchabigknoba", "id": 41379, "credit_id": "52fe44c49251416c750404b1", "cast_id": 17, "profile_path": "/2o8UqsQczH3NVW1HXBGCTibvOGF.jpg", "order": 5}, {"name": "Ben Kingsley", "character": "Guru Tugginmypuddha", "id": 2282, "credit_id": "52fe44c49251416c750404b5", "cast_id": 18, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 6}, {"name": "Deepak Chopra", "character": "Deepak Chopra", "id": 71531, "credit_id": "52fe44c49251416c750404b9", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Verne Troyer", "character": "Coach Punch Cherkov", "id": 10987, "credit_id": "52fe44c49251416c750404bd", "cast_id": 20, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 8}, {"name": "Stephen Colbert", "character": "Jay Kell", "id": 58769, "credit_id": "52fe44c49251416c750404c7", "cast_id": 23, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 9}, {"name": "Val Kilmer", "character": "himself", "id": 5576, "credit_id": "52fe44c49251416c750404cb", "cast_id": 24, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 10}, {"name": "Celine Dion", "character": "herself", "id": 16303, "credit_id": "52fe44c49251416c750404cf", "cast_id": 25, "profile_path": "/truzhpeyIihZWO7B9ZOON1CefxK.jpg", "order": 11}, {"name": "Trevor Heins", "character": "Young Pitka", "id": 90748, "credit_id": "53364f5f9251417da10006b8", "cast_id": 27, "profile_path": "/2PGkFw0IzzRLsy3rImmmlEIqjBZ.jpg", "order": 12}, {"name": "Jessica Simpson", "character": "Jessica Simpson", "id": 52052, "credit_id": "5419bca70e0a266ef60002c3", "cast_id": 28, "profile_path": "/1PDbqQoEriziHHaAcRwtOkI2SHq.jpg", "order": 13}], "directors": [{"name": "Marco Schnabel", "department": "Directing", "job": "Director", "credit_id": "52fe44c49251416c75040463", "profile_path": "/kYzNedWDUq1QXvHm7CIJUEDLYdd.jpg", "id": 71527}], "vote_average": 4.6, "runtime": 87}, "9447": {"poster_path": "/yjZ3d2mKC94Lz0XGJYGRbAOrA4Q.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 69131860, "overview": "Babe, fresh from his victory in the sheepherding contest, returns to Farmer Hoggett's farm, but after Farmer Hoggett is injured and unable to work, Babe has to go to the big city to save the farm.", "video": false, "id": 9447, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Babe: Pig in the City", "tagline": "This little pig went to the city...", "vote_count": 75, "homepage": "", "belongs_to_collection": {"backdrop_path": "/cOYRzPx86msMyCJ1E0D4jiMvASp.jpg", "poster_path": "/k42J5jYjvw1DEGBQP63VYYvteY7.jpg", "id": 9435, "name": "Babe Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120595", "adult": false, "backdrop_path": "/lCz18Ft06dHfxHvaQEerVOBCL83.jpg", "production_companies": [{"name": "Kennedy Miller Productions", "id": 2537}], "release_date": "1998-11-25", "popularity": 0.772926590296791, "original_title": "Babe: Pig in the City", "budget": 90000000, "cast": [{"name": "James Cromwell", "character": "Farmer Arthur Hoggett", "id": 2505, "credit_id": "52fe44f8c3a36847f80b5003", "cast_id": 11, "profile_path": "/tbpxLxuVunrNiVUJVORwgAZJQXl.jpg", "order": 0}, {"name": "Mary Stein", "character": "The Landlady", "id": 45386, "credit_id": "52fe44f8c3a36847f80b5007", "cast_id": 12, "profile_path": "/5zVpqXqr3S8y4cMKOQNc1SwBdc7.jpg", "order": 1}, {"name": "Mickey Rooney", "character": "Fugly Floom, the Speechless Man in Hotel", "id": 1937, "credit_id": "52fe44f8c3a36847f80b500b", "cast_id": 13, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 2}, {"name": "Magda Szubanski", "character": "Mrs. Esme Cordelia Hoggett", "id": 45586, "credit_id": "52fe44f8c3a36847f80b500f", "cast_id": 14, "profile_path": "/s67hNKy38DxN8l9GTKOc3oDwQpP.jpg", "order": 3}, {"name": "E.G. Daily", "character": "Babe (voice)", "id": 15274, "credit_id": "52fe44f8c3a36847f80b5013", "cast_id": 15, "profile_path": "/kNvK1Gf6lDjsGemOIv9Opb2Vc9h.jpg", "order": 4}, {"name": "Danny Mann", "character": "Ferdinand / Tug (voice)", "id": 52699, "credit_id": "52fe44f8c3a36847f80b5017", "cast_id": 16, "profile_path": "/28JtvJrUIcHM4s8HV84ncxPD7Uv.jpg", "order": 5}, {"name": "Glenne Headly", "character": "Zootie (voice)", "id": 21104, "credit_id": "52fe44f8c3a36847f80b501b", "cast_id": 17, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 6}, {"name": "Steven Wright", "character": "Bob (voice)", "id": 3214, "credit_id": "52fe44f8c3a36847f80b501f", "cast_id": 18, "profile_path": "/m9827iUNPGTbAsfjHD9tpMCXYbR.jpg", "order": 7}, {"name": "James Cosmo", "character": "Thelonius (voice)", "id": 2467, "credit_id": "52fe44f8c3a36847f80b5023", "cast_id": 19, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 8}, {"name": "Nathan Kress", "character": "Easy / Tough Pup (voice)", "id": 212913, "credit_id": "52fe44f8c3a36847f80b5027", "cast_id": 20, "profile_path": "/4B9z58nrAaNXJi4uVkvWsztK7LF.jpg", "order": 9}, {"name": "Myles Jeffrey", "character": "Easy (voice)", "id": 11157, "credit_id": "52fe44f8c3a36847f80b502b", "cast_id": 21, "profile_path": "/snKwcKNBaIWKNv0dHzlB8h9q935.jpg", "order": 10}, {"name": "Stanley Ralph Ross", "character": "The Bull Terrier / The Doberman (voice)", "id": 46330, "credit_id": "52fe44f8c3a36847f80b502f", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Russi Taylor", "character": "The Pink Poodle / Choir Cat (voice)", "id": 6035, "credit_id": "52fe44f8c3a36847f80b5033", "cast_id": 23, "profile_path": "/3rfnBDgLRc7CjoIw9bGRBlDXxMf.jpg", "order": 12}, {"name": "Adam Goldberg", "character": "Flealick (voice)", "id": 6163, "credit_id": "52fe44f8c3a36847f80b5037", "cast_id": 24, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 13}, {"name": "Eddie Barth", "character": "Nigel / Alan (voice)", "id": 32384, "credit_id": "52fe44f8c3a36847f80b503b", "cast_id": 25, "profile_path": null, "order": 14}, {"name": "Bill Capizzi", "character": "Snoop, The Sniffer Dog (voice)", "id": 108943, "credit_id": "52fe44f8c3a36847f80b503f", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Miriam Margolyes", "character": "Fly (voice)", "id": 6199, "credit_id": "52fe44f8c3a36847f80b5043", "cast_id": 27, "profile_path": "/7Fijg5sZ7gKbooq6tId3MUS5sDY.jpg", "order": 16}, {"name": "Hugo Weaving", "character": "Rex (voice)", "id": 1331, "credit_id": "52fe44f8c3a36847f80b5047", "cast_id": 28, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 17}, {"name": "Roscoe Lee Browne", "character": "The Narrator (voice)", "id": 24368, "credit_id": "52fe44f8c3a36847f80b504b", "cast_id": 29, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 18}, {"name": "Christian Manon", "character": "Lab Technician", "id": 1451740, "credit_id": "5525aaebc3a3687e1100252b", "cast_id": 30, "profile_path": null, "order": 19}], "directors": [{"name": "George Miller", "department": "Directing", "job": "Director", "credit_id": "52fe44f8c3a36847f80b4fc9", "profile_path": "/pYSqeP5nhrdEJBCoZm611MhX9kC.jpg", "id": 20629}], "vote_average": 4.7, "runtime": 92}, "171372": {"poster_path": "/fLKpfI7Aczu83i201sW9Tn8gO3r.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "A comedy about a young wannabe musician (Domhnall Gleeson) who discovers he has bitten off more than he can chew when he joins an eccentric pop band led by the mysterious and enigmatic Frank (Michael Fassbender).", "video": false, "id": 171372, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}], "title": "Frank", "tagline": "When you think you've gone far enough, go farther.", "vote_count": 172, "homepage": "http://www.magpictures.com/frank/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1605717", "adult": false, "backdrop_path": "/wNVht6M9rGWevuURjmUKyP55UqV.jpg", "production_companies": [{"name": "Film4", "id": 9349}, {"name": "Runaway Fridge Productions", "id": 26820}, {"name": "Element Pictures", "id": 3353}], "release_date": "2014-05-09", "popularity": 0.937491162858966, "original_title": "Frank", "budget": 0, "cast": [{"name": "Michael Fassbender", "character": "Frank", "id": 17288, "credit_id": "52fe4d0ac3a36847f824b69b", "cast_id": 4, "profile_path": "/ohGJPTlou8TuZ8VOz5m9kChWgts.jpg", "order": 0}, {"name": "Maggie Gyllenhaal", "character": "Clara", "id": 1579, "credit_id": "52fe4d0ac3a36847f824b6a5", "cast_id": 8, "profile_path": "/dgFGI8y7QUKkwI1o0pJaZtjR30m.jpg", "order": 1}, {"name": "Domhnall Gleeson", "character": "Jon", "id": 93210, "credit_id": "52fe4d0ac3a36847f824b6a9", "cast_id": 9, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 2}, {"name": "Scoot McNairy", "character": "Don", "id": 59233, "credit_id": "52fe4d0ac3a36847f824b6ad", "cast_id": 10, "profile_path": "/5QovJj55flMlh4rZHauomSIrU1k.jpg", "order": 3}, {"name": "Hayley Derryberry", "character": "Simone", "id": 1268081, "credit_id": "54102ff70e0a261264001646", "cast_id": 25, "profile_path": null, "order": 4}, {"name": "Fran\u00e7ois Civil", "character": "Baraque", "id": 78124, "credit_id": "54d504cbc3a368616e0137ee", "cast_id": 26, "profile_path": "/ngKymMbs7r5dUyegMm4X4dvL4aS.jpg", "order": 5}, {"name": "Tess Harper", "character": "Frank's Mom", "id": 41249, "credit_id": "54d505c9c3a368746900ada8", "cast_id": 27, "profile_path": "/gJT9fBX04LjmbOzOzYcNbA2ZLF1.jpg", "order": 6}, {"name": "Bruce McIntosh", "character": "Frank's Dad", "id": 87232, "credit_id": "54d505dec3a36871c100b6a3", "cast_id": 28, "profile_path": null, "order": 7}], "directors": [{"name": "Lenny Abrahamson", "department": "Directing", "job": "Director", "credit_id": "52fe4d0ac3a36847f824b6b3", "profile_path": null, "id": 83281}], "vote_average": 7.0, "runtime": 96}, "32985": {"poster_path": "/n5SHBE4ulsDDVa9gYttUYwp1VZU.jpg", "production_countries": [{"iso_3166_1": "CZ", "name": "Czech Republic"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 7810000, "overview": "A nomadic 16th century warrior, condemned to hell for his brutal past, seeks redemption by renouncing violence, but finds some things are worth burning for as he fights to free a young Puritan woman from the grip of evil.", "video": false, "id": 32985, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Solomon Kane", "tagline": "Fight evil... With evil.", "vote_count": 119, "homepage": "http://www.solomonkane.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0970452", "adult": false, "backdrop_path": "/rEAuvuZLher0Jt9xGT3b90Yx5Zq.jpg", "production_companies": [{"name": "Davis-Films", "id": 342}, {"name": "Czech Anglo Productions", "id": 20473}, {"name": "Wandering Star Pictures", "id": 20474}], "release_date": "2009-09-24", "popularity": 0.674237191416818, "original_title": "Solomon Kane", "budget": 45000000, "cast": [{"name": "James Purefoy", "character": "Solomon Kane", "id": 17648, "credit_id": "52fe44f39251416c9102263d", "cast_id": 1, "profile_path": "/5HJn5a5xHsQYVvbVSDyytZB5Tci.jpg", "order": 0}, {"name": "Pete Postlethwaite", "character": "William Crowthorn", "id": 4935, "credit_id": "52fe44f39251416c91022641", "cast_id": 3, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 1}, {"name": "Alice Krige", "character": "Katherine Crowthorn", "id": 2506, "credit_id": "52fe44f39251416c91022645", "cast_id": 4, "profile_path": "/kUuVEsfZNxXdlK2JQdTEGcfkoY3.jpg", "order": 2}, {"name": "Mackenzie Crook", "character": "Father Michael", "id": 1711, "credit_id": "52fe44f39251416c91022649", "cast_id": 5, "profile_path": "/pkBBzUyeJSI8OY8rf6TM6Dz0NXL.jpg", "order": 3}, {"name": "Max von Sydow", "character": "Josiah Kane", "id": 2201, "credit_id": "52fe44f39251416c9102264d", "cast_id": 7, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 4}, {"name": "Jason Flemyng", "character": "Malachi", "id": 973, "credit_id": "52fe44f39251416c91022657", "cast_id": 11, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 5}, {"name": "Rachel Hurd-Wood", "character": "Meredith Crowthorn", "id": 129050, "credit_id": "52fe44f39251416c9102265b", "cast_id": 12, "profile_path": "/rZX2yJlt3qIJ0HhK2WTWOmiMe3y.jpg", "order": 6}, {"name": "Patrick Hurd-Wood", "character": "Samuel Crowthorn", "id": 1077399, "credit_id": "52fe44f39251416c91022683", "cast_id": 20, "profile_path": "/njuBKQ6ZWkTuio0rpnbqhpS1FRE.jpg", "order": 7}, {"name": "Anthony Wilks", "character": "Edward Crowthorn", "id": 1077400, "credit_id": "52fe44f39251416c91022687", "cast_id": 21, "profile_path": "/rXLOq0E55Fug9Zho1vFofuJ6IpV.jpg", "order": 8}, {"name": "Isabel Bassett", "character": "The Witch", "id": 1077401, "credit_id": "52fe44f39251416c9102268b", "cast_id": 22, "profile_path": "/bO5YrOSXzyG3dUuKdMcHgR0EDK0.jpg", "order": 9}, {"name": "Mark O'Neal", "character": "Kane's Soldier #1", "id": 1297390, "credit_id": "53105a88925141101f000bb3", "cast_id": 26, "profile_path": "/tr9k5xH0uzc5FIKj3TiKhxPzX6g.jpg", "order": 10}, {"name": "Robert Orr", "character": "Kane's Soldier #2", "id": 21014, "credit_id": "53105a9e925141101f000bba", "cast_id": 27, "profile_path": "/1fnh6iPohS10SXQg2a8Xk9kkXaM.jpg", "order": 11}, {"name": "Richard Ryan", "character": "Kane's Soldier #3", "id": 128977, "credit_id": "53105aad925141104d000caf", "cast_id": 28, "profile_path": null, "order": 12}, {"name": "Frantisek Deak", "character": "Cowering Guard", "id": 1297391, "credit_id": "53105ac59251411008000cc0", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Christian Dunckley Clark", "character": "Lieutenant Malthus", "id": 1297392, "credit_id": "53105ae19251410ff1000c04", "cast_id": 30, "profile_path": null, "order": 14}, {"name": "Ian Whyte", "character": "Devil's Reaper", "id": 946696, "credit_id": "53105afe9251410ffc000bdb", "cast_id": 31, "profile_path": "/6mRY7hTtHfDTGuTLmZmODOu9buF.jpg", "order": 15}, {"name": "Thomas McEnchroe", "character": "Young Monk", "id": 1297393, "credit_id": "53105b1a925141101f000bc5", "cast_id": 32, "profile_path": null, "order": 16}, {"name": "Andrew Whitlaw", "character": "Older Monk", "id": 1297394, "credit_id": "53105b36925141102a000bc2", "cast_id": 33, "profile_path": null, "order": 17}, {"name": "Robert Russell", "character": "Abbott", "id": 1011851, "credit_id": "53105b499251411035000c46", "cast_id": 34, "profile_path": null, "order": 18}, {"name": "James Babson", "character": "Skinhead", "id": 25659, "credit_id": "53105b659251410fe6000c23", "cast_id": 35, "profile_path": "/PsYYzL0CcFhCGyq2rpQq8uHF8n.jpg", "order": 19}, {"name": "Marek Va\u0161ut", "character": "Tattoo", "id": 10849, "credit_id": "53105b7f9251411035000c4e", "cast_id": 36, "profile_path": "/f4fs302tc86ZJRWq46kZPmY86KF.jpg", "order": 20}, {"name": "Geoff Bell", "character": "Beard", "id": 6969, "credit_id": "53105b92925141104d000cc3", "cast_id": 37, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 21}, {"name": "Lucas Stone", "character": "Young Solomon", "id": 1297395, "credit_id": "53105bb09251411035000c57", "cast_id": 38, "profile_path": null, "order": 22}, {"name": "Rory McCann", "character": "McNess", "id": 3075, "credit_id": "546eb761c3a3682f9e000c0f", "cast_id": 45, "profile_path": "/zYNJIN6fEXAkLz2APQduYxvGxI1.jpg", "order": 23}], "directors": [{"name": "Michael J. Bassett", "department": "Directing", "job": "Director", "credit_id": "52fe44f39251416c91022691", "profile_path": "/gBtbUmlRtLlA0yQV9Gt9G8bJW70.jpg", "id": 69593}], "vote_average": 5.7, "runtime": 104}, "7549": {"poster_path": "/nPku02hVAFPsAd1pJr81OkdBidw.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6971266, "overview": "Huo Yuan Jia became the most famous martial arts fighter in all of China at the turn of the 20th Century. Huo faced personal tragedy but ultimately fought his way out of darkness, defining the true spirit of martial arts and also inspiring his nation. The son of a great fighter who didn't wish for his child to follow in his footsteps, Huo resolves to teach himself how to fight - and win.", "video": false, "id": 7549, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}], "title": "Fearless", "tagline": "Mastering others is strength. Mastering yourself makes you fearless.", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0446059", "adult": false, "backdrop_path": "/eYzHRuzwaI13ln5eO3XRnCN7Vo5.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Beijing Film Studio", "id": 708}, {"name": "China Film Co-Production Corporation", "id": 2269}, {"name": "Hero China International", "id": 2271}, {"name": "Wide River Investments", "id": 2272}], "release_date": "2006-01-26", "popularity": 1.11911051456667, "original_title": "Huo Yuanjia", "budget": 0, "cast": [{"name": "Jet Li", "character": "Huo Yuanjia", "id": 1336, "credit_id": "52fe4483c3a36847f809a701", "cast_id": 1, "profile_path": "/5himGJzSuLoHwqacTz7sXWqgeMt.jpg", "order": 0}, {"name": "Betty Sun", "character": "Moon", "id": 52898, "credit_id": "52fe4483c3a36847f809a705", "cast_id": 3, "profile_path": "/8oa3WndsHdGnoEDRMVhDwpYRSxv.jpg", "order": 1}, {"name": "Dong Yong", "character": "Nong Jinsun", "id": 52899, "credit_id": "52fe4483c3a36847f809a709", "cast_id": 4, "profile_path": "/9Txr10nViJ38KwV8q9GGoe6CNt4.jpg", "order": 2}, {"name": "Hee Ching Paw", "character": "Yuanjia's Mother", "id": 52900, "credit_id": "52fe4483c3a36847f809a70d", "cast_id": 5, "profile_path": "/qXiRuEQvi6pyawG0TQ67VIVvjww.jpg", "order": 3}, {"name": "Yun Qu", "character": "Grandma", "id": 52901, "credit_id": "52fe4483c3a36847f809a711", "cast_id": 6, "profile_path": "/jPeFLl0pJH9E86Ke4PdE4aDe1jB.jpg", "order": 4}, {"name": "Nathan Jones", "character": "Hercules O'Brien", "id": 24898, "credit_id": "52fe4483c3a36847f809a715", "cast_id": 7, "profile_path": "/8JGCYgqGbFYXsp0wLbwSCEW0BUB.jpg", "order": 5}, {"name": "Brandon Rhea", "character": "Belgian Fighter", "id": 52902, "credit_id": "52fe4483c3a36847f809a719", "cast_id": 8, "profile_path": "/yev7IxmjSviqaOIkvw53C8pAV8K.jpg", "order": 6}, {"name": "Anthony De Longis", "character": "Spanish Swordman", "id": 52903, "credit_id": "52fe4483c3a36847f809a71d", "cast_id": 9, "profile_path": "/iYPnSvLkDxo9jbNFBch0IdbZkav.jpg", "order": 7}, {"name": "Jean Claude Leuyer", "character": "English Boxer", "id": 52904, "credit_id": "52fe4483c3a36847f809a721", "cast_id": 10, "profile_path": "/qwWruzfs5vC4V5FCyNIEGJvupKm.jpg", "order": 8}, {"name": "Mike Leeder", "character": "Fight Referee", "id": 52905, "credit_id": "52fe4483c3a36847f809a725", "cast_id": 11, "profile_path": "/ybQ3a0WH4iEuDoK9KxHng5mh45u.jpg", "order": 9}, {"name": "Jon T. Benn", "character": "American Businessman", "id": 52906, "credit_id": "52fe4483c3a36847f809a729", "cast_id": 12, "profile_path": "/uiJtuNo89wDbQlJgDuRRxXyd1uR.jpg", "order": 10}, {"name": "John Paisley", "character": "English Businessman", "id": 52907, "credit_id": "52fe4483c3a36847f809a72d", "cast_id": 13, "profile_path": "/4seFegLOZzFHNEI2CppgcSqp8Ku.jpg", "order": 11}, {"name": "Collin Chou", "character": "Yuanjia's Father", "id": 52908, "credit_id": "52fe4483c3a36847f809a731", "cast_id": 14, "profile_path": "/Ug1pqZuUcQjW4y9ljgBpFnHpcA.jpg", "order": 12}, {"name": "Masato Harada", "character": "Mita", "id": 52909, "credit_id": "52fe4483c3a36847f809a735", "cast_id": 15, "profile_path": "/1hoOz8hAKe5U01SHn9YLzW7dVtG.jpg", "order": 13}, {"name": "Nakamura Shid\u014d II", "character": "Anno Tanaka", "id": 72202, "credit_id": "52fe4483c3a36847f809a76f", "cast_id": 25, "profile_path": "/jsqasWEn1ls8XQKMxOQHr9IgPTD.jpg", "order": 14}], "directors": [{"name": "Ronny Yu", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a73b", "profile_path": "/ttF6ZrZFNznZr79wPSZWYKz2g3m.jpg", "id": 17268}], "vote_average": 6.9, "runtime": 103}, "7551": {"poster_path": "/abqvTL8xYQLgAtQGmyN7UxvCRGN.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 180557550, "overview": "Called in to recover evidence in the aftermath of a horrific explosion on a New Orleans ferry, Federal agent Doug Carlin gets pulled away from the scene and taken to a top-secret government lab that uses a time-shifting surveillance device to help prevent crime. But can it help Carlin change the past? Hold on to your seat for an explosive and intriguing thrill ride you'll want to experience again and again.", "video": false, "id": 7551, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "D\u00e9j\u00e0 Vu", "tagline": "If you think it's just a feeling, go back... and look again.", "vote_count": 478, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0453467", "adult": false, "backdrop_path": "/94Mb6dnCtmkqPmjFGucghp7UXda.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Touchstone Pictures", "id": 9195}, {"name": "Jerry Bruckheimer Films", "id": 130}], "release_date": "2006-11-21", "popularity": 1.12026805994186, "original_title": "D\u00e9j\u00e0 Vu", "budget": 75000000, "cast": [{"name": "Denzel Washington", "character": "Agent Doug Carlin - ATF", "id": 5292, "credit_id": "52fe4483c3a36847f809a82d", "cast_id": 1, "profile_path": "/t9arcZbg1nLt8GZt2SkWm227YoK.jpg", "order": 0}, {"name": "Paula Patton", "character": "Claire Kuchever", "id": 52851, "credit_id": "52fe4483c3a36847f809a831", "cast_id": 2, "profile_path": "/h4nZkDm4kDzx47FsjQy3PHQrMC8.jpg", "order": 1}, {"name": "Val Kilmer", "character": "Agent Paul Pryzwarra - FBI", "id": 5576, "credit_id": "52fe4483c3a36847f809a835", "cast_id": 3, "profile_path": "/AlhPeiH8R4reMNGNQ9ag1FPbuW9.jpg", "order": 2}, {"name": "Jim Caviezel", "character": "Carroll Oerstadt", "id": 8767, "credit_id": "52fe4483c3a36847f809a839", "cast_id": 4, "profile_path": "/koyFOeFdQyyFs26DNyDHWluBibB.jpg", "order": 3}, {"name": "Adam Goldberg", "character": "Dr. Alexander Denny", "id": 6163, "credit_id": "52fe4483c3a36847f809a83d", "cast_id": 5, "profile_path": "/utlFTzTDP5VDQYXmzdHBbfloYhb.jpg", "order": 4}, {"name": "Elden Henson", "character": "Gunnars", "id": 20220, "credit_id": "52fe4483c3a36847f809a841", "cast_id": 6, "profile_path": "/o4yrwPvnttGEFKcfbjxaMnpy9TP.jpg", "order": 5}, {"name": "Erika Alexander", "character": "Shanti", "id": 33655, "credit_id": "52fe4483c3a36847f809a845", "cast_id": 7, "profile_path": "/4HuPRLihCbjsDsLuHOax5ETfA2V.jpg", "order": 6}, {"name": "Bruce Greenwood", "character": "Agent Jack McCready - FBI", "id": 21089, "credit_id": "52fe4483c3a36847f809a849", "cast_id": 8, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 7}, {"name": "Rich Hutchman", "character": "Agent Stalhuth", "id": 52924, "credit_id": "52fe4483c3a36847f809a84d", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Matt Craven", "character": "Agent Larry Minuti - ATF", "id": 13525, "credit_id": "52fe4483c3a36847f809a851", "cast_id": 10, "profile_path": "/atUkssC0DowpBbFvsnRf92cEf9y.jpg", "order": 9}, {"name": "Donna W. Scott", "character": "Beth", "id": 52925, "credit_id": "52fe4483c3a36847f809a855", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Elle Fanning", "character": "Abbey", "id": 18050, "credit_id": "52fe4483c3a36847f809a859", "cast_id": 12, "profile_path": "/g3UprFCW6CGEhmySoBzaNQYk0i2.jpg", "order": 11}, {"name": "Brian Howe", "character": "Medical Examiner", "id": 1990, "credit_id": "52fe4483c3a36847f809a85d", "cast_id": 13, "profile_path": "/bIyWNR7ZRKE7e8OZCwv6orqzrpu.jpg", "order": 12}, {"name": "Enrique Castillo", "character": "Claire's Father", "id": 16427, "credit_id": "52fe4483c3a36847f809a861", "cast_id": 14, "profile_path": "/ks5zq9TYDA1PpLx5trS7lBTwnsw.jpg", "order": 13}, {"name": "Mark Phinney", "character": "Agent Kevin Donnelly - ATF", "id": 52926, "credit_id": "52fe4483c3a36847f809a865", "cast_id": 15, "profile_path": null, "order": 14}, {"name": "Sylvia Jefferies", "character": "Reporter", "id": 1104568, "credit_id": "52fe4483c3a36847f809a881", "cast_id": 20, "profile_path": "/jtbJjvDrGAuBW3OGHSCGekuVo8J.jpg", "order": 15}], "directors": [{"name": "Tony Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a86b", "profile_path": "/15pOBMK5i72aLVv6M199xW6p3yr.jpg", "id": 893}], "vote_average": 6.4, "runtime": 126}, "7552": {"poster_path": "/nevy1DCIpEOqeuqrBjeSHCrNLQ9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 201580853, "overview": "After losing their high-paying corporate jobs, Jane and Dick Harper (Jim Carrey and T\u00e9a Leoni) turn to robbing banks to maintain their upwardly mobile standard of living in this action-comedy based on the 1977 film of the same name. The couple's hold-up act begins as a desperate measure. But before long, they're actually enjoying it -- and now it's getting to be a habit.", "video": false, "id": 7552, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Fun with Dick and Jane", "tagline": "Giving big businesses a run for their money!", "vote_count": 178, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0369441", "adult": false, "backdrop_path": "/gEXvIMvCT1TuQY7Lu9vN47MpSm4.jpg", "production_companies": [{"name": "Imagine Entertainment", "id": 23}, {"name": "Sony Pictures", "id": 34}], "release_date": "2005-12-21", "popularity": 0.422509458177664, "original_title": "Fun with Dick and Jane", "budget": 100000000, "cast": [{"name": "Jim Carrey", "character": "Dick Harper", "id": 206, "credit_id": "52fe4483c3a36847f809a8a9", "cast_id": 1, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "T\u00e9a Leoni", "character": "Jane Harper", "id": 4939, "credit_id": "52fe4483c3a36847f809a8ad", "cast_id": 2, "profile_path": "/5VyeQNd6rcHiseUu1bL1OTYjJig.jpg", "order": 1}, {"name": "Alec Baldwin", "character": "Jack McCallister", "id": 7447, "credit_id": "52fe4483c3a36847f809a8b1", "cast_id": 3, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 2}, {"name": "Richard Jenkins", "character": "Frank Bascombe", "id": 28633, "credit_id": "52fe4483c3a36847f809a8b5", "cast_id": 4, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 3}, {"name": "Angie Harmon", "character": "Veronica Cleeman", "id": 52929, "credit_id": "52fe4483c3a36847f809a8b9", "cast_id": 5, "profile_path": "/oFsZQuVxgMm9yUl0dZe4ROznIex.jpg", "order": 4}, {"name": "John Michael Higgins", "character": "Garth", "id": 8265, "credit_id": "52fe4483c3a36847f809a8bd", "cast_id": 6, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 5}, {"name": "Richard Burgi", "character": "Joe Cleeman", "id": 25849, "credit_id": "52fe4483c3a36847f809a8c1", "cast_id": 7, "profile_path": "/w5FeMeJ6nsjEqZtwMEITTlKQp38.jpg", "order": 6}, {"name": "Carlos Jacott", "character": "Oz Peterson", "id": 52930, "credit_id": "52fe4483c3a36847f809a8c5", "cast_id": 8, "profile_path": "/7bAXajnMa7BzLU8yDPgzJV5260M.jpg", "order": 7}, {"name": "Aaron Michael Drozin", "character": "Billy Harper", "id": 52931, "credit_id": "52fe4483c3a36847f809a8c9", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Gloria Garayua", "character": "Blanca", "id": 52932, "credit_id": "52fe4483c3a36847f809a8cd", "cast_id": 10, "profile_path": "/myc6J8Hnb9cdFRkzaAAwMdXuOn9.jpg", "order": 9}, {"name": "Michelle Arthur", "character": "Dick's Secretary", "id": 29054, "credit_id": "52fe4483c3a36847f809a8d1", "cast_id": 11, "profile_path": "/zKQFuK3W4LMzfIz8W86RYf6jGp7.jpg", "order": 10}, {"name": "Stacey Travis", "character": "Jack's Receptionist", "id": 31714, "credit_id": "52fe4483c3a36847f809a8d5", "cast_id": 12, "profile_path": "/9a9RvQ8311piSh5sUVaypN9TNDT.jpg", "order": 11}, {"name": "Timm Sharp", "character": "Jack's Assistant", "id": 52933, "credit_id": "52fe4483c3a36847f809a8d9", "cast_id": 13, "profile_path": "/e4gKCKoC2Yx5SXm4vAHFaAsjo26.jpg", "order": 12}, {"name": "David Herman", "character": "Angry Caller (voice)", "id": 52794, "credit_id": "52fe4483c3a36847f809a8dd", "cast_id": 14, "profile_path": "/6S0UlaChdcilaeYk5svTxOCtShC.jpg", "order": 13}], "directors": [{"name": "Dean Parisot", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a8e3", "profile_path": "/3h20QFQ6duhpJ1FMSeJiFju0WGp.jpg", "id": 15002}], "vote_average": 6.0, "runtime": 90}, "7553": {"poster_path": "/3cyqShU9PGMtTpQgnV7Um3nEOmk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 18637690, "overview": "Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.", "video": false, "id": 7553, "genres": [{"id": 35, "name": "Comedy"}], "title": "Waiting...", "tagline": "What happens in the kitchen ends up on the plate.", "vote_count": 51, "homepage": "", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/2gOKaOLhI3vdaE6wO2VpsBa408K.jpg", "id": 93731, "name": "Waiting Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt0348333", "adult": false, "backdrop_path": "/eBHZQOzXAJCAjtJtX2yiiN6G0Mq.jpg", "production_companies": [{"name": "L.I.F.T. Production", "id": 1305}, {"name": "Eden Rock Media", "id": 2273}], "release_date": "2005-10-07", "popularity": 0.388545759770794, "original_title": "Waiting...", "budget": 3000000, "cast": [{"name": "Ryan Reynolds", "character": "Monty", "id": 10859, "credit_id": "52fe4483c3a36847f809a917", "cast_id": 1, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Anna Faris", "character": "Serena", "id": 1772, "credit_id": "52fe4483c3a36847f809a91b", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 1}, {"name": "Justin Long", "character": "Dean", "id": 15033, "credit_id": "52fe4483c3a36847f809a91f", "cast_id": 3, "profile_path": "/4mG8e1MAtkHAFewm2yJI3M1f59s.jpg", "order": 2}, {"name": "David Koechner", "character": "Dan", "id": 28638, "credit_id": "52fe4483c3a36847f809a923", "cast_id": 4, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 3}, {"name": "Luis Guzm\u00e1n", "character": "Raddimus", "id": 40481, "credit_id": "52fe4483c3a36847f809a927", "cast_id": 5, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 4}, {"name": "Chi McBride", "character": "Bishop", "id": 8687, "credit_id": "52fe4483c3a36847f809a92b", "cast_id": 6, "profile_path": "/tOziRGI7cCAVduyIHXFaqfId47L.jpg", "order": 5}, {"name": "John Francis Daley", "character": "Mitch", "id": 52935, "credit_id": "52fe4483c3a36847f809a92f", "cast_id": 7, "profile_path": "/xg5gaLLmB0d79ge91fUCnjBCjwk.jpg", "order": 6}, {"name": "Kaitlin Doubleday", "character": "Amy", "id": 52936, "credit_id": "52fe4483c3a36847f809a933", "cast_id": 8, "profile_path": "/1vYfIYDKhRPLiOqBvQZ8hO21tMH.jpg", "order": 7}, {"name": "Rob Benedict", "character": "Calvin", "id": 52937, "credit_id": "52fe4483c3a36847f809a937", "cast_id": 9, "profile_path": "/iVsPXfFqK6pQPtIFaTYsyO5f9ui.jpg", "order": 8}, {"name": "Alanna Ubach", "character": "Naomi", "id": 10402, "credit_id": "52fe4483c3a36847f809a93b", "cast_id": 10, "profile_path": "/hMCF9h7KtXrepwHbGnPXK4QjBIW.jpg", "order": 9}, {"name": "Vanessa Lengies", "character": "Natasha", "id": 52938, "credit_id": "52fe4483c3a36847f809a93f", "cast_id": 11, "profile_path": "/gmo2myh6zjMheJyGfDpvK4YLB0P.jpg", "order": 10}, {"name": "Max Kasch", "character": "T-Dog", "id": 52939, "credit_id": "52fe4483c3a36847f809a943", "cast_id": 12, "profile_path": "/4NzNJEJ6NWU40GKO6BS1Ne6ECNL.jpg", "order": 11}, {"name": "Andy Milonakis", "character": "Nick", "id": 52940, "credit_id": "52fe4483c3a36847f809a947", "cast_id": 13, "profile_path": "/40PqvS6IbdJXNvJMCp0eUe7zH8t.jpg", "order": 12}, {"name": "Dane Cook", "character": "Floyd", "id": 31837, "credit_id": "52fe4483c3a36847f809a94b", "cast_id": 14, "profile_path": "/kL2zM9B8PDacQQErLIJ8fstk0Xb.jpg", "order": 13}, {"name": "Jordan Ladd", "character": "Danielle", "id": 20492, "credit_id": "52fe4483c3a36847f809a94f", "cast_id": 15, "profile_path": "/bXTFdzN7CA8A6bh5rNkVSK5HUoq.jpg", "order": 14}], "directors": [{"name": "Rob McKittrick", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a955", "profile_path": null, "id": 52941}], "vote_average": 5.9, "runtime": 94}, "7555": {"poster_path": "/nwCm80TFvA7pQAQdcGHs69ZeGOK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 154611774, "overview": "When governments fail to act on behalf of captive missionaries, ex-Green Beret John James Rambo sets aside his peaceful existence along the Salween River in a war-torn region of Thailand to take action. Although he's still haunted by violent memories of his time as a U.S. soldier during the Vietnam War, Rambo can hardly turn his back on the aid workers who so desperately need his help.", "video": false, "id": 7555, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Rambo", "tagline": "Heroes never die... They just reload.", "vote_count": 293, "homepage": "http://www.rambofilm.com/", "belongs_to_collection": {"backdrop_path": "/Yt2ZxbJv2HM842B6FNMr59Vhyb.jpg", "poster_path": "/a61qhaM73Acotl98fAxj6ey7YzE.jpg", "id": 5039, "name": "Rambo Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "my", "name": ""}, {"iso_639_1": "th", "name": "\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22"}], "imdb_id": "tt0462499", "adult": false, "backdrop_path": "/73QE77hOalLxUiheYJrk9XwHL4h.jpg", "production_companies": [{"name": "Rogue Marble", "id": 696}, {"name": "Nu Image Films", "id": 925}, {"name": "LionsGate", "id": 7571}, {"name": "Millennium Films", "id": 10254}, {"name": "Emmett/Furla Films", "id": 10405}, {"name": "Equity Pictures Medienfonds GmbH & Co. KG IV", "id": 20363}], "release_date": "2008-01-24", "popularity": 1.41148132901174, "original_title": "Rambo", "budget": 50000000, "cast": [{"name": "Sylvester Stallone", "character": "John Rambo", "id": 16483, "credit_id": "52fe4484c3a36847f809a9e9", "cast_id": 12, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 0}, {"name": "Julie Benz", "character": "Sarah", "id": 35551, "credit_id": "52fe4484c3a36847f809a9ed", "cast_id": 13, "profile_path": "/ihLJFdbdF1IRgyxYZYZvdWbKDVa.jpg", "order": 1}, {"name": "Matthew Marsden", "character": "School Boy", "id": 12793, "credit_id": "52fe4484c3a36847f809a9f1", "cast_id": 15, "profile_path": "/4vsXCzUknnPmadfp9qVtbaO34NP.jpg", "order": 3}, {"name": "Reynaldo Gallegos", "character": "Diaz", "id": 52946, "credit_id": "52fe4484c3a36847f809a9f5", "cast_id": 16, "profile_path": "/9Auh1zaVGGBTYSDwjBs5PRChju1.jpg", "order": 4}, {"name": "Jake La Botz", "character": "Reese", "id": 52409, "credit_id": "52fe4484c3a36847f809a9f9", "cast_id": 17, "profile_path": "/pf0DFaUPd8ddEAyT5bHJYdhrjuX.jpg", "order": 5}, {"name": "Tim Kang", "character": "En-Joo", "id": 52947, "credit_id": "52fe4484c3a36847f809a9fd", "cast_id": 18, "profile_path": "/1qKA4ODtnF6SiYuSfcC8x9dI7dD.jpg", "order": 6}, {"name": "Maung Maung Khin", "character": "Tint", "id": 52948, "credit_id": "52fe4484c3a36847f809aa01", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Paul Schulze", "character": "Michael Burnett", "id": 36189, "credit_id": "52fe4484c3a36847f809aa05", "cast_id": 20, "profile_path": "/tcGHCA2seYFju3RBKItpyLHAPHc.jpg", "order": 8}, {"name": "Ken Howard", "character": "Arthur Marsh", "id": 18328, "credit_id": "52fe4484c3a36847f809aa09", "cast_id": 21, "profile_path": "/yrFlSyzMCBU4Uw90WGA6XEvZi0X.jpg", "order": 9}, {"name": "Graham McTavish", "character": "Lewis", "id": 95047, "credit_id": "52fe4484c3a36847f809aa13", "cast_id": 23, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 10}, {"name": "Cameron Pearson", "character": "Jeff", "id": 97551, "credit_id": "530b546c9251411114004d07", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Thomas Peterson", "character": "Dentist", "id": 1085469, "credit_id": "530b547c925141785e002e22", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Tony Skarberg", "character": "Videographer", "id": 1296116, "credit_id": "530b54909251411102004dd7", "cast_id": 27, "profile_path": null, "order": 13}, {"name": "James With", "character": "Preacher", "id": 76489, "credit_id": "530b54a99251411105005200", "cast_id": 28, "profile_path": null, "order": 14}, {"name": "Kasikorn Niyompattana", "character": "Snake Hunter #2", "id": 1296117, "credit_id": "530b54c09251411117004fa5", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Shaliew 'Lek' Bamrungbun", "character": "Snake Hunter #1", "id": 1296118, "credit_id": "530b54cd9251411102004dde", "cast_id": 30, "profile_path": null, "order": 16}], "directors": [{"name": "Sylvester Stallone", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a36847f809a9af", "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "id": 16483}], "vote_average": 6.3, "runtime": 92}, "10072": {"poster_path": "/4aMSIhvShIkDrhOsa0WL6KFwnpD.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 44793222, "overview": "It's been many years since Freddy Krueger's first victim, Nancy, came face-to-face with Freddy and his sadistic, evil ways. Now, Nancy's all grown up; she's put her frightening nightmares behind her and is helping teens cope with their dreams. Too bad Freddy's decided to herald his return by invading the kids' dreams and scaring them into committing suicide.", "video": false, "id": 10072, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "A Nightmare on Elm Street 3: Dream Warriors", "tagline": "If you think you're ready for Freddy, think again!", "vote_count": 69, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fg0HtE2tm61vJPrusIaSfQK03vd.jpg", "poster_path": "/nO9j4qsCxBVpPwXtFxQr5gWIzfu.jpg", "id": 8581, "name": "A Nightmare on Elm Street Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0093629", "adult": false, "backdrop_path": "/lNrbMhjhAQK9Hf4Nww7GoBezCMA.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Smart Egg Pictures", "id": 1531}], "release_date": "1987-02-27", "popularity": 0.853320410719287, "original_title": "A Nightmare on Elm Street 3: Dream Warriors", "budget": 5000000, "cast": [{"name": "Robert Englund", "character": "Freddy Krueger", "id": 5139, "credit_id": "52fe431c9251416c75003d51", "cast_id": 2, "profile_path": "/1xIUyS7kzi99Yv4qeg9Ep7QtHDS.jpg", "order": 0}, {"name": "Patricia Arquette", "character": "Kristen Parker", "id": 4687, "credit_id": "52fe431c9251416c75003d4d", "cast_id": 1, "profile_path": "/9Sz0M91CHHkJ5tlPteiXv34gpgK.jpg", "order": 1}, {"name": "Heather Langenkamp", "character": "Nancy Thompson", "id": 5141, "credit_id": "52fe431c9251416c75003d5d", "cast_id": 5, "profile_path": "/aRcb9i4iMLpgycEDn5uTcBka8HK.jpg", "order": 2}, {"name": "John Saxon", "character": "Lt. Donald Thompson", "id": 11163, "credit_id": "52fe431c9251416c75003d61", "cast_id": 6, "profile_path": "/jggn6H9ezT1iizRHI0hJUDJ2jOo.jpg", "order": 3}, {"name": "Craig Wasson", "character": "Dr. Neil Gordon", "id": 62893, "credit_id": "52fe431c9251416c75003d55", "cast_id": 3, "profile_path": "/7LX5Gl56EIodVKCWZ8QaZYVLNaU.jpg", "order": 4}, {"name": "Laurence Fishburne", "character": "Max", "id": 2975, "credit_id": "52fe431c9251416c75003d59", "cast_id": 4, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 5}, {"name": "Ken Sagoes", "character": "Roland Kincaid", "id": 63915, "credit_id": "52fe431c9251416c75003dad", "cast_id": 20, "profile_path": null, "order": 6}, {"name": "Rodney Eastman", "character": "Joey", "id": 63916, "credit_id": "52fe431c9251416c75003db1", "cast_id": 21, "profile_path": "/mxA0J0Ky7XZsn4yXWj5koXTkYBq.jpg", "order": 7}, {"name": "Jennifer Rubin", "character": "Taryn White", "id": 56978, "credit_id": "52fe431c9251416c75003db5", "cast_id": 22, "profile_path": "/xK5ubDqPfiWjXffMJzTvObFlXsV.jpg", "order": 8}, {"name": "Bradley Gregg", "character": "Phillip", "id": 3039, "credit_id": "52fe431c9251416c75003db9", "cast_id": 23, "profile_path": "/l4vc0U4XQ7t07pqekPPVehzs0R.jpg", "order": 9}, {"name": "Ira Heiden", "character": "Will Stanton", "id": 44816, "credit_id": "52fe431c9251416c75003dbd", "cast_id": 24, "profile_path": "/2UrIib1OSEb2oas2MO28Re8yODM.jpg", "order": 10}, {"name": "Penelope Sudrow", "character": "Jennifer Caulfield", "id": 174848, "credit_id": "52fe431c9251416c75003dc1", "cast_id": 25, "profile_path": null, "order": 11}, {"name": "Priscilla Pointer", "character": "Dr. Elizabeth Simms", "id": 11793, "credit_id": "52fe431c9251416c75003dc5", "cast_id": 26, "profile_path": "/rmT7Qje6YBG180d1hlY6zQpZmfv.jpg", "order": 12}, {"name": "Clayton Landey", "character": "Lorenzo", "id": 101013, "credit_id": "52fe431c9251416c75003dc9", "cast_id": 27, "profile_path": "/4e1GziFKqLh5V5tEnqwT1NvMMvL.jpg", "order": 13}, {"name": "Brooke Bundy", "character": "Elaine Parker", "id": 72157, "credit_id": "52fe431c9251416c75003dcd", "cast_id": 28, "profile_path": "/hbmv1jHZNNb7AmpdW8oaMIk3jXs.jpg", "order": 14}, {"name": "Kristen Clayton", "character": "Little Girl", "id": 552162, "credit_id": "52fe431c9251416c75003dd1", "cast_id": 29, "profile_path": null, "order": 15}, {"name": "Sally Piper", "character": "Nurse #1", "id": 553736, "credit_id": "52fe431c9251416c75003dd5", "cast_id": 30, "profile_path": null, "order": 16}, {"name": "Rozlyn Sorrell", "character": "Nurse #2", "id": 553737, "credit_id": "52fe431c9251416c75003dd9", "cast_id": 31, "profile_path": null, "order": 17}, {"name": "Nan Martin", "character": "Sister Mary Helena / Amanda Krueger", "id": 87039, "credit_id": "52fe431c9251416c75003ddd", "cast_id": 32, "profile_path": "/cN7wHsog96Vv3vihOplo4xYRxnH.jpg", "order": 18}, {"name": "Zsa Zsa G\u00e1bor", "character": "Herself", "id": 44715, "credit_id": "52fe431c9251416c75003de9", "cast_id": 35, "profile_path": "/spsHbBoqF6aeLhqjYvsgvL5EBMp.jpg", "order": 19}, {"name": "Stacey Alden", "character": "Marcie", "id": 553738, "credit_id": "52fe431c9251416c75003de1", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Dick Cavett", "character": "Himself", "id": 10565, "credit_id": "52fe431c9251416c75003de5", "cast_id": 34, "profile_path": "/wxur4NDgWKAZsjrjpc75ZTzNqsO.jpg", "order": 21}, {"name": "Michael Rougas", "character": "Priest in Church", "id": 194092, "credit_id": "52fe431c9251416c75003ded", "cast_id": 36, "profile_path": null, "order": 22}, {"name": "Jack Shea", "character": "Priest in Cemetery", "id": 190793, "credit_id": "52fe431c9251416c75003df1", "cast_id": 37, "profile_path": null, "order": 23}, {"name": "Paul Kent", "character": "Dr. Carver", "id": 157612, "credit_id": "52fe431c9251416c75003df5", "cast_id": 38, "profile_path": null, "order": 24}, {"name": "Mary Brown", "character": "Neurosurgeon", "id": 553739, "credit_id": "52fe431c9251416c75003df9", "cast_id": 39, "profile_path": null, "order": 25}, {"name": "Melanie Doctors", "character": "Girl in Cemetery", "id": 553740, "credit_id": "52fe431c9251416c75003dfd", "cast_id": 40, "profile_path": null, "order": 26}, {"name": "Donna Durham", "character": "Girl in Crowd", "id": 553741, "credit_id": "52fe431c9251416c75003e01", "cast_id": 41, "profile_path": null, "order": 27}], "directors": [{"name": "Chuck Russell", "department": "Directing", "job": "Director", "credit_id": "52fe431c9251416c75003d67", "profile_path": "/xy6y3QHm567oX6T3JWwUILu7YJD.jpg", "id": 26713}], "vote_average": 6.1, "runtime": 96}, "89492": {"poster_path": "/aNx4bIjDCTVdIhZqEzBu0utBMsh.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 88058786, "overview": "Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they're on the verge of losing their house, and their relationship is threatening to fall apart.", "video": false, "id": 89492, "genres": [{"id": 35, "name": "Comedy"}], "title": "This Is 40", "tagline": "The sort-of sequel to 'Knocked Up'", "vote_count": 490, "homepage": "http://www.thisis40movie.com/", "belongs_to_collection": {"backdrop_path": "/sVXPlw09BLvqTQQYlqtAHruu1hs.jpg", "poster_path": "/ttZrgOVWavGJM4yPUovcr4BKc4f.jpg", "id": 182436, "name": "Knocked Up / This Is 40 Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1758830", "adult": false, "backdrop_path": "/uu1cPthWjb0ex1cvgI8wPy6kasC.jpg", "production_companies": [{"name": "Apatow Productions", "id": 10105}], "release_date": "2012-12-21", "popularity": 0.601101437621973, "original_title": "This Is 40", "budget": 35000000, "cast": [{"name": "Paul Rudd", "character": "Pete", "id": 22226, "credit_id": "52fe4a1c9251416c910c395f", "cast_id": 2, "profile_path": "/oUJyLVn3kCmQuFeug4SBIo7Tc02.jpg", "order": 0}, {"name": "Leslie Mann", "character": "Debbie", "id": 41087, "credit_id": "52fe4a1c9251416c910c3963", "cast_id": 3, "profile_path": "/lQwcjcy5R4gZZGDkelvWbsKDoZq.jpg", "order": 1}, {"name": "Jason Segel", "character": "Jason", "id": 41088, "credit_id": "52fe4a1c9251416c910c3967", "cast_id": 4, "profile_path": "/49zyYG6HSQm76mN1SLmCCzgIN0Y.jpg", "order": 2}, {"name": "Maude Apatow", "character": "Sadie", "id": 41090, "credit_id": "52fe4a1c9251416c910c397f", "cast_id": 10, "profile_path": "/3VOawL9cIJD2btDRYWoOHnJIkAM.jpg", "order": 3}, {"name": "Megan Fox", "character": "Desi", "id": 19537, "credit_id": "52fe4a1c9251416c910c396b", "cast_id": 5, "profile_path": "/7rq0erGOfRSQeBBqypUyxvMNYhT.jpg", "order": 4}, {"name": "Lena Dunham", "character": "Larry", "id": 139135, "credit_id": "52fe4a1c9251416c910c396f", "cast_id": 6, "profile_path": "/mz9Fz5OxH2CtuM0NOm6v0xxAlrl.jpg", "order": 5}, {"name": "Melissa McCarthy", "character": "Catherine", "id": 55536, "credit_id": "52fe4a1c9251416c910c3973", "cast_id": 7, "profile_path": "/jSLdOktZHZOPEE4DzSShxuEeXPy.jpg", "order": 6}, {"name": "Charlyne Yi", "character": "CAt", "id": 93285, "credit_id": "52fe4a1c9251416c910c3977", "cast_id": 8, "profile_path": "/nH6Wfy1ikRNj97RWLZ2FRPbxSOA.jpg", "order": 7}, {"name": "John Lithgow", "character": "Oliver", "id": 12074, "credit_id": "52fe4a1c9251416c910c397b", "cast_id": 9, "profile_path": "/uquz3dZ0fs0lAK57lCXwxaslVkb.jpg", "order": 8}, {"name": "Robert Smigel", "character": "CAt", "id": 53684, "credit_id": "52fe4a1c9251416c910c3983", "cast_id": 11, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 9}, {"name": "Albert Brooks", "character": "Larry", "id": 13, "credit_id": "52fe4a1c9251416c910c3987", "cast_id": 12, "profile_path": "/kahlMTdygrPJ28VYRhKPavYD9hs.jpg", "order": 10}, {"name": "Chris O'Dowd", "character": "Ronnie", "id": 40477, "credit_id": "52fe4a1c9251416c910c39a3", "cast_id": 17, "profile_path": "/hmTLgS5aT1t1sdg1GfdXM9yYUPI.jpg", "order": 11}, {"name": "Annie Mumolo", "character": "Barb", "id": 174514, "credit_id": "52fe4a1c9251416c910c39a7", "cast_id": 18, "profile_path": "/1VAuKQ5jR98jA638K8E6oiMXasw.jpg", "order": 12}, {"name": "Billie Joe Armstrong", "character": "Billie Joe Armstrong", "id": 95866, "credit_id": "52fe4a1c9251416c910c39ab", "cast_id": 19, "profile_path": "/pSHyO9ykNdjq1tSOAp0ukikPlR9.jpg", "order": 13}, {"name": "Iris Apatow", "character": "Charlotte", "id": 963429, "credit_id": "52fe4a1c9251416c910c39b5", "cast_id": 21, "profile_path": null, "order": 14}, {"name": "Michael Ian Black", "character": "Accountant", "id": 22224, "credit_id": "52fe4a1c9251416c910c39b9", "cast_id": 22, "profile_path": "/aE2Bx6ABC8GWEDkCxzC8sFA7jni.jpg", "order": 15}, {"name": "Wyatt Russell", "character": "Flirty Hockey Player", "id": 986808, "credit_id": "53a288bac3a36831fc000c3d", "cast_id": 23, "profile_path": "/q72sYL63Z7FH2OKa5W4pvdJSkQo.jpg", "order": 16}], "directors": [{"name": "Judd Apatow", "department": "Directing", "job": "Director", "credit_id": "52fe4a1c9251416c910c395b", "profile_path": "/iaMQsCROOcFuaI1vVhLFTvKEp8.jpg", "id": 41039}], "vote_average": 5.4, "runtime": 134}, "9454": {"poster_path": "/1ELrosU04wEbfmxK9wLBjdEECqm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 65705772, "overview": "A unique 16th century woman, Danielle possesses a love of books, and can easily quote from Sir Thomas More\u2019s Utopia. An intriguing mix of tomboyish athleticism and physical beauty, she has more than enough charm to capture the heart of a prince ... after beaning him with an apple.", "video": false, "id": 9454, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Ever After: A Cinderella Story", "tagline": "Desire. Defy. Escape.", "vote_count": 124, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0120631", "adult": false, "backdrop_path": "/iPe4WUji9iSbdTIzY4nNpoyHaiZ.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1998-07-29", "popularity": 0.497526650034681, "original_title": "EverAfter", "budget": 26000000, "cast": [{"name": "Drew Barrymore", "character": "Danielle De Barbarac", "id": 69597, "credit_id": "52fe44f9c3a36847f80b53dd", "cast_id": 12, "profile_path": "/y8GKPHsBXVGIGBdDzdNxjm0IbKF.jpg", "order": 0}, {"name": "Dougray Scott", "character": "Prince Henry", "id": 15336, "credit_id": "52fe44f9c3a36847f80b53e1", "cast_id": 13, "profile_path": "/shnhe5iUvVdZVuenshhW6aVlDXT.jpg", "order": 1}, {"name": "Anjelica Huston", "character": "Baroness Rodmilla De Ghent", "id": 5657, "credit_id": "52fe44f9c3a36847f80b53e5", "cast_id": 14, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 2}, {"name": "Megan Dodds", "character": "Marguerite De Ghent", "id": 17198, "credit_id": "53b092790e0a26597d006bce", "cast_id": 23, "profile_path": "/nI0AsHa4AQco77RIKRb9ehwJCrE.jpg", "order": 3}, {"name": "Melanie Lynskey", "character": "Jacqueline De Ghent", "id": 15091, "credit_id": "52fe44f9c3a36847f80b53e9", "cast_id": 15, "profile_path": "/t05V7kpaV4oJ3lIk3dMY0oWsSuM.jpg", "order": 4}, {"name": "Timothy West", "character": "King Francis", "id": 35257, "credit_id": "53b090c4c3a3682eee005483", "cast_id": 16, "profile_path": "/PsZdCMfSBQA8wmq84PE51ATUhV.jpg", "order": 5}, {"name": "Judy Parfitt", "character": "Queen Marie", "id": 33448, "credit_id": "53b090d6c3a3682ee20057b7", "cast_id": 17, "profile_path": "/vF3gRzpyL5y2rLMOoamYjWmux7U.jpg", "order": 6}, {"name": "Patrick Godfrey", "character": "Leonardo da Vinci", "id": 3568, "credit_id": "53b09113c3a3682ed80053bf", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Richard O'Brien", "character": "Pierre Le Pieu", "id": 13474, "credit_id": "53b091920e0a265983006b01", "cast_id": 19, "profile_path": "/pCxCt82DQQLTgOryp6FPczmN3L9.jpg", "order": 8}, {"name": "Toby Jones", "character": "Royal Page", "id": 13014, "credit_id": "53b091aa0e0a26597d006bc6", "cast_id": 20, "profile_path": "/7Flo5oYhQmcX5vc0TfAA6FB4ncS.jpg", "order": 9}, {"name": "Lee Ingleby", "character": "Gustave", "id": 229672, "credit_id": "53b091f60e0a265979006b07", "cast_id": 21, "profile_path": "/x2OW4t8CerOMObV1opNZ2rmGto1.jpg", "order": 10}, {"name": "Jeroen Krabb\u00e9", "character": "Auguste", "id": 1924, "credit_id": "53b092180e0a265989006b55", "cast_id": 22, "profile_path": "/A5Mks6zi6Xzt9A8fxBWc3wdlvhx.jpg", "order": 11}], "directors": [{"name": "Andy Tennant", "department": "Directing", "job": "Director", "credit_id": "52fe44f9c3a36847f80b539d", "profile_path": "/rbNvrpyWuy4nc1TLHvMKiPwS0HP.jpg", "id": 17167}], "vote_average": 6.8, "runtime": 121}, "125509": {"poster_path": "/olnVrUyoL2ntBBuipvXBecCbTBX.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A small West Virginia town is hosting the legendary Mountain Man Festival on Halloween, where throngs of costumed party goers gather for a wild night of music and mischief. But an inbred family of hillbilly cannibals kill the fun when they trick and treat themselves to a group of visiting college students.", "video": false, "id": 125509, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Wrong Turn 5: Bloodlines", "tagline": "The inbred hillbillies are back!", "vote_count": 54, "homepage": "", "belongs_to_collection": {"backdrop_path": "/32IsLLCoj3mIkZbLfCKSXZVqd3k.jpg", "poster_path": "/dtfQY5ZxvdHNG4HqNDy0ifwk1q6.jpg", "id": 52985, "name": "Wrong Turn Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2375779", "adult": false, "backdrop_path": "/95k1nO0SazGJD2mhJsh1ll5x8TR.jpg", "production_companies": [{"name": "20th Century Fox Home Entertainment", "id": 3635}, {"name": "Constantin Film Produktion", "id": 5755}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2012-10-23", "popularity": 1.25021270648179, "original_title": "Wrong Turn 5: Bloodlines", "budget": 0, "cast": [{"name": "Camilla Arfwedson", "character": "Sheriff Angela", "id": 1073327, "credit_id": "52fe4ac8c3a368484e166a45", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Doug Bradley", "character": "Maynard", "id": 73040, "credit_id": "52fe4ac8c3a368484e166a49", "cast_id": 4, "profile_path": "/hzITESBe6eDN4Y3TNZ6Fk6wsfaC.jpg", "order": 1}, {"name": "Simon Ginty", "character": "Billy", "id": 1081468, "credit_id": "52fe4ac8c3a368484e166a4d", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Oliver Hoare", "character": "Julian", "id": 1081469, "credit_id": "52fe4ac8c3a368484e166a51", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Roxanne McKee", "character": "Lita", "id": 228969, "credit_id": "52fe4ac8c3a368484e166a55", "cast_id": 7, "profile_path": "/oJYawHvbZM48lNTGWKATapFzplL.jpg", "order": 4}, {"name": "Amy Lennox", "character": "Cruz", "id": 1081470, "credit_id": "52fe4ac8c3a368484e166a59", "cast_id": 8, "profile_path": null, "order": 5}, {"name": "Paul Luebke", "character": "Gus", "id": 1108568, "credit_id": "52fe4ac8c3a368484e166a8d", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Duncan Wisbey", "character": "Mose", "id": 1108569, "credit_id": "52fe4ac8c3a368484e166a91", "cast_id": 18, "profile_path": null, "order": 7}, {"name": "Radoslav Parvanov", "character": "One Eye", "id": 1108570, "credit_id": "52fe4ac8c3a368484e166a95", "cast_id": 19, "profile_path": "/81LnVL0LlzMmOk7xQGY9htYvEpr.jpg", "order": 8}, {"name": "George Karlukovski", "character": "Saw Tooth", "id": 1108571, "credit_id": "52fe4ac8c3a368484e166a99", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "Declan O'Brien", "department": "Directing", "job": "Director", "credit_id": "52fe4ac8c3a368484e166a3b", "profile_path": null, "id": 126882}], "vote_average": 4.8, "runtime": 91}, "15789": {"poster_path": "/iXYXjKohQ1j2FNIXLa84aaaE76K.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35348597, "overview": "When Max makes an preposterous promise to his girlfriend, his chances to fulfilling it seem hopeless when he is dragged onto a cross-country trip with his embarrassing father, Goofy.", "video": false, "id": 15789, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "A Goofy Movie", "tagline": "It's the story of a father who couldn't be closer...to driving his son crazy.", "vote_count": 69, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113198", "adult": false, "backdrop_path": "/ijDUMFmb34Fv7jBwxzhNc3lbVP3.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}], "release_date": "1995-04-07", "popularity": 0.477338115881771, "original_title": "A Goofy Movie", "budget": 0, "cast": [{"name": "Bill Farmer", "character": "Goofy Goof (voice)", "id": 84213, "credit_id": "52fe467d9251416c75079ee1", "cast_id": 2, "profile_path": "/4aDBlkt8nEkr1RkEhiKIbDWhpZB.jpg", "order": 0}, {"name": "Jason Marsden", "character": "Max Goof", "id": 61983, "credit_id": "5484cd06c3a3680b48000c5d", "cast_id": 16, "profile_path": "/qlZvyg48eUGth7pzU5UDi3CfdDR.jpg", "order": 1}, {"name": "Rob Paulsen", "character": "P.J. Pete", "id": 43125, "credit_id": "52fe467d9251416c75079ee9", "cast_id": 4, "profile_path": "/bl3b5f5dAWbYkqTN83I1TMHn8WM.jpg", "order": 2}, {"name": "Jim Cummings", "character": "Peter Pete", "id": 12077, "credit_id": "52fe467d9251416c75079eed", "cast_id": 5, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 3}, {"name": "Kellie Martin", "character": "Roxanne", "id": 93663, "credit_id": "52fe467d9251416c75079ef1", "cast_id": 6, "profile_path": "/ey8rv3wW0SxTfNVdYrLaKb80c3Q.jpg", "order": 4}, {"name": "Pauly Shore", "character": "Robert \"Bobby\" Zimmeruski", "id": 64998, "credit_id": "52fe467d9251416c75079ef5", "cast_id": 7, "profile_path": "/jZnwhWMyxZMDPNCYc3UCodpyCB.jpg", "order": 5}, {"name": "Wallace Shawn", "character": "Principal Arthur Mazur", "id": 12900, "credit_id": "52fe467d9251416c75079ef9", "cast_id": 8, "profile_path": "/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg", "order": 6}, {"name": "Frank Welker", "character": "Bigfoot", "id": 15831, "credit_id": "52fe467d9251416c75079efd", "cast_id": 9, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 7}], "directors": [{"name": "Kevin Lima", "department": "Directing", "job": "Director", "credit_id": "52fe467d9251416c75079edd", "profile_path": "/725jzhxXkAPIqo9P5nEnlBW3Q1y.jpg", "id": 15775}, {"name": "Paul Brizzi", "department": "Directing", "job": "Director", "credit_id": "5534701bc3a368523e002aed", "profile_path": null, "id": 56147}], "vote_average": 6.6, "runtime": 78}, "64956": {"poster_path": "/yr6XX4c7BOvxVjV6cJePwZdUlLn.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The Cobol Job is a fourteen-minute animated prequel to Christopher Nolan\u2019s award-winning movie: Inception, detailing the heist on Mr. Kaneda's mind by Nash, Cobb, Arthur, and several Cobol Engineering thugs.", "video": false, "id": 64956, "genres": [{"id": 28, "name": "Action"}, {"id": 16, "name": "Animation"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Inception: The Cobol Job", "tagline": "", "vote_count": 76, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1790736", "adult": false, "backdrop_path": "/2kGP9gJEONx1hjgRjbusXzAbKQf.jpg", "production_companies": [{"name": "Warner Bros. Pictures", "id": 174}], "release_date": "2010-12-07", "popularity": 0.46856250098985, "original_title": "Inception: The Cobol Job", "budget": 0, "cast": [{"name": "Leonardo DiCaprio", "character": "Cobb", "id": 6193, "credit_id": "52fe46f5c3a368484e0ad28b", "cast_id": 6, "profile_path": "/jToSMocaCaS5YnuOJVqQ7S7pr4Q.jpg", "order": 0}, {"name": "Joseph Gordon-Levitt", "character": "Arthur", "id": 24045, "credit_id": "52fe46f5c3a368484e0ad28f", "cast_id": 7, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 1}, {"name": "Tom Hardy", "character": "Eames", "id": 2524, "credit_id": "52fe46f5c3a368484e0ad293", "cast_id": 8, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 2}], "directors": [{"name": "Ian Kirby", "department": "Directing", "job": "Director", "credit_id": "52fe46f5c3a368484e0ad275", "profile_path": null, "id": 1168899}], "vote_average": 7.3, "runtime": 15}, "74997": {"poster_path": "/kFtAdkCO0vXN2RWu2oMcR9GZ9Hi.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Inspired by the fictional Dr. Heiter, disturbed loner Martin dreams of creating a 12-person centipede and sets out to realize his sick fantasy.", "video": false, "id": 74997, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}], "title": "The Human Centipede 2 (Full Sequence)", "tagline": "100% medically INaccurate.", "vote_count": 63, "homepage": "", "belongs_to_collection": {"backdrop_path": "/iNRMelQcaKeVdinF28uU9YOmvYx.jpg", "poster_path": "/mv0MySTqfXg2ndthOkBg6bGwlnk.jpg", "id": 96671, "name": "The Human Centipede Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1530509", "adult": false, "backdrop_path": "/5XgEVKSaULK2jXs4ddqdETpFqCZ.jpg", "production_companies": [{"name": "Six Entertainment", "id": 5652}], "release_date": "2011-10-07", "popularity": 0.59629476889714, "original_title": "The Human Centipede 2 (Full Sequence)", "budget": 0, "cast": [{"name": "Laurence R. Harvey", "character": "Martin", "id": 573773, "credit_id": "52fe48e9c3a368484e111787", "cast_id": 3, "profile_path": null, "order": 0}, {"name": "Ashlynn Yennie", "character": "Miss Yennie", "id": 121575, "credit_id": "52fe48e9c3a368484e11178b", "cast_id": 4, "profile_path": "/g1vpTTRSxNcZRPUZiY5I10sbFki.jpg", "order": 1}, {"name": "Dominic Borrelli", "character": "Paul", "id": 321853, "credit_id": "52fe48e9c3a368484e11178f", "cast_id": 5, "profile_path": null, "order": 2}, {"name": "Georgia Goodrick", "character": "Valerie", "id": 560872, "credit_id": "52fe48e9c3a368484e111793", "cast_id": 6, "profile_path": null, "order": 3}, {"name": "Maddi Black", "character": "Candy", "id": 1080026, "credit_id": "52fe48e9c3a368484e1117b5", "cast_id": 12, "profile_path": null, "order": 4}, {"name": "Kandace Caine", "character": "Karrie", "id": 1080027, "credit_id": "52fe48e9c3a368484e1117b9", "cast_id": 13, "profile_path": null, "order": 5}, {"name": "Lucas Hansen", "character": "Ian", "id": 1080028, "credit_id": "52fe48e9c3a368484e1117bd", "cast_id": 14, "profile_path": null, "order": 6}, {"name": "Lee Nicholas Harris", "character": "Dick", "id": 578690, "credit_id": "52fe48e9c3a368484e1117c1", "cast_id": 15, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 7}, {"name": "Dan Burman", "character": "Greg", "id": 1080029, "credit_id": "52fe48e9c3a368484e1117c5", "cast_id": 16, "profile_path": null, "order": 8}, {"name": "Daniel Jude Gennis", "character": "Tim", "id": 1080030, "credit_id": "52fe48e9c3a368484e1117c9", "cast_id": 17, "profile_path": null, "order": 9}, {"name": "Emma Lock", "character": "Kim", "id": 1080031, "credit_id": "52fe48e9c3a368484e1117cd", "cast_id": 18, "profile_path": null, "order": 10}, {"name": "Katherine Templar", "character": "Rachel", "id": 1080032, "credit_id": "52fe48e9c3a368484e1117d1", "cast_id": 19, "profile_path": null, "order": 11}, {"name": "Peter Blankenstein", "character": "Alan", "id": 121578, "credit_id": "52fe48e9c3a368484e1117d5", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Vivien Bridson", "character": "Misses Lomax", "id": 1080033, "credit_id": "52fe48e9c3a368484e1117d9", "cast_id": 21, "profile_path": null, "order": 13}, {"name": "Bill Hutchens", "character": "Dr. Sebring", "id": 1080034, "credit_id": "52fe48e9c3a368484e1117dd", "cast_id": 22, "profile_path": null, "order": 14}], "directors": [{"name": "Tom Six", "department": "Directing", "job": "Director", "credit_id": "52fe48e9c3a368484e1117e3", "profile_path": "/dkj0gsN4twgJqhQmI4EY2OnGW6D.jpg", "id": 118639}], "vote_average": 4.9, "runtime": 91}, "17654": {"poster_path": "/axFmCRNQsW6Bto8XuJKo08MPPV5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 210819611, "overview": "Aliens land in South Africa and have no way home. Years later after living in a slum and wearing out their welcome the \"Non-Humans\" are being moved to a new tent city overseen by Multi-National United (MNU). The movie follows an MNU employee tasked with leading the relocation and his relationship with one of the alien leaders.", "video": false, "id": 17654, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "District 9", "tagline": "You are not welcome here.", "vote_count": 1091, "homepage": "http://www.d-9.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "af", "name": "Afrikaans"}, {"iso_639_1": "ny", "name": ""}, {"iso_639_1": "st", "name": ""}, {"iso_639_1": "xh", "name": ""}, {"iso_639_1": "zu", "name": "isiZulu"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1136608", "adult": false, "backdrop_path": "/nPBDOLBPdBapuhcv4xXopHX9BAE.jpg", "production_companies": [{"name": "TriStar Pictures", "id": 559}, {"name": "Block / Hanson", "id": 8504}, {"name": "WingNut Films", "id": 11}, {"name": "Canadian Film or Video Production Tax Credit (CPTC)", "id": 8582}, {"name": "District 9", "id": 20667}, {"name": "Key Creatives", "id": 2300}, {"name": "New Zealand Post Digital and Visual Effects Grant", "id": 20668}, {"name": "Province of British Columbia Production Services Tax Credit", "id": 12200}, {"name": "QED International", "id": 11029}, {"name": "The Department of Trade and Industry of South Africa", "id": 10884}], "release_date": "2009-10-15", "popularity": 1.31922489525978, "original_title": "District 9", "budget": 30000000, "cast": [{"name": "Sharlto Copley", "character": "Wikus van der Merwe", "id": 82191, "credit_id": "52fe473b9251416c75092361", "cast_id": 3, "profile_path": "/3ket3t8OFC3o1EYcpypMgJ41Q27.jpg", "order": 0}, {"name": "Jason Cope", "character": "Grey Bradnam", "id": 82193, "credit_id": "52fe473c9251416c75092365", "cast_id": 4, "profile_path": "/scn3r86ekzN1RQpsLc6Rhb7D76x.jpg", "order": 1}, {"name": "Nathalie Boltt", "character": "Sarah Livingstone - Sociologist", "id": 97599, "credit_id": "52fe473c9251416c750923a1", "cast_id": 15, "profile_path": "/5bpt1IKXPqsgDxOJ2BdGKoQCAV3.jpg", "order": 2}, {"name": "Sylvaine Strike", "character": "Dr Katrina McKenzie", "id": 230818, "credit_id": "52fe473c9251416c750923a5", "cast_id": 16, "profile_path": "/toznlVPsbkFnYs8JvZvGBMzz6D5.jpg", "order": 3}, {"name": "Elizabeth Mkandawie", "character": "Interviewee", "id": 1086505, "credit_id": "52fe473c9251416c750923a9", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "John Sumner", "character": "Les Feldman - MIL Engineer", "id": 3495, "credit_id": "52fe473c9251416c750923ad", "cast_id": 18, "profile_path": "/9b3RL7HRtPeqUrnCkO12bevK85a.jpg", "order": 5}, {"name": "William Allen Young", "character": "Dirk Michaels", "id": 53087, "credit_id": "52fe473b9251416c75092359", "cast_id": 1, "profile_path": "/pH8tVh3hnpIUscfT920WLBiHeOU.jpg", "order": 6}, {"name": "Nick Blake", "character": "Francois Moraneu - CIV Engineer Team", "id": 240024, "credit_id": "52fe473c9251416c750923b5", "cast_id": 20, "profile_path": "/7rtqlDb4WnqvL069OA5yZx5yOS8.jpg", "order": 7}, {"name": "Greg Melvill-Smith", "character": "Interviewer", "id": 1029046, "credit_id": "52fe473c9251416c750923b1", "cast_id": 19, "profile_path": "/z4nhS09mhZsQ3NZ6NQCiQsIwnfZ.jpg", "order": 8}, {"name": "Robert Hobbs", "character": "Ross Pienaar", "id": 82190, "credit_id": "52fe473b9251416c7509235d", "cast_id": 2, "profile_path": "/yN6gVehZi1Y5P5kDazI8FmB8Bb0.jpg", "order": 9}, {"name": "Vanessa Haywood", "character": "Tania Van De Merwe", "id": 82192, "credit_id": "52fe473c9251416c75092399", "cast_id": 13, "profile_path": "/iXiTyyrfdlxZ8wdffciAj21Z6Ly.jpg", "order": 10}, {"name": "Kenneth Nkosi", "character": "Thomas", "id": 13094, "credit_id": "52fe473c9251416c7509239d", "cast_id": 14, "profile_path": "/1SLAxQJUYRFWSj7shaSvt4AImJM.jpg", "order": 11}, {"name": "Morena Busa Sesatsa", "character": "Interviewee", "id": 1086506, "credit_id": "52fe473c9251416c750923b9", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Themba Nkosi", "character": "Interviewee", "id": 1086507, "credit_id": "52fe473c9251416c750923bd", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Mzwandile Nqoba", "character": "Interviewee", "id": 1086508, "credit_id": "52fe473c9251416c750923c1", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Barry Strydom", "character": "Interviewee", "id": 1086509, "credit_id": "52fe473c9251416c750923c5", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Jed Brophy", "character": "James Hope - Police Officer", "id": 173451, "credit_id": "52fe473c9251416c750923c9", "cast_id": 25, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 16}, {"name": "Louis Minnaar", "character": "Piet Smit", "id": 967456, "credit_id": "52fe473c9251416c750923cd", "cast_id": 26, "profile_path": "/r8JxisQiVUW3TqiSfHd9d63yHry.jpg", "order": 17}, {"name": "Marian Hooman", "character": "Sandra Van De Merwe", "id": 967457, "credit_id": "52fe473c9251416c750923d1", "cast_id": 27, "profile_path": null, "order": 18}, {"name": "Vittorio Leonardi", "character": "Michael Bloemstein - MNU Alien Civil Affairs", "id": 967458, "credit_id": "52fe473c9251416c750923d5", "cast_id": 28, "profile_path": null, "order": 19}, {"name": "David Clatworthy", "character": "MNU Doctor", "id": 1073473, "credit_id": "5464d2020e0a262942001f5f", "cast_id": 40, "profile_path": "/sYy5IKaWGDlsEm8uiABzIxRlnAr.jpg", "order": 20}], "directors": [{"name": "Neill Blomkamp", "department": "Directing", "job": "Director", "credit_id": "52fe473c9251416c7509236b", "profile_path": "/wM1ACz7B2km2KGkxA1sg3QyHrtL.jpg", "id": 82194}], "vote_average": 6.9, "runtime": 112}, "138697": {"poster_path": "/lyglSFUcbfig1ANSwlg89WwvZnI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.", "video": false, "id": 138697, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Don Jon", "tagline": "Everyone loves a happy ending.", "vote_count": 543, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2229499", "adult": false, "backdrop_path": "/mOq8sc1V3S325htVbqworJqMUgh.jpg", "production_companies": [{"name": "Ram Bergman Productions", "id": 11092}, {"name": "Voltage Pictures", "id": 10255}, {"name": "HitRecord Films", "id": 14578}], "release_date": "2013-09-27", "popularity": 1.63651133193351, "original_title": "Don Jon", "budget": 6000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Jon", "id": 24045, "credit_id": "52fe4c52c3a368484e1b26ab", "cast_id": 8, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Scarlett Johansson", "character": "Barbara", "id": 1245, "credit_id": "52fe4c52c3a368484e1b26af", "cast_id": 9, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 1}, {"name": "Julianne Moore", "character": "Esther", "id": 1231, "credit_id": "52fe4c52c3a368484e1b26b3", "cast_id": 10, "profile_path": "/iw3Ums9WUM4g2IXXYrLFMOxEwkC.jpg", "order": 2}, {"name": "Tony Danza", "character": "Jon Sr.", "id": 18298, "credit_id": "52fe4c52c3a368484e1b26bb", "cast_id": 12, "profile_path": "/zuGqT0ZJQFm0GMUnEa32jYu75Fy.jpg", "order": 3}, {"name": "Glenne Headly", "character": "Angela", "id": 21104, "credit_id": "52fe4c52c3a368484e1b26bf", "cast_id": 13, "profile_path": "/ve8Uj44J2OP8mq2FwwH9r1OszMv.jpg", "order": 4}, {"name": "Brie Larson", "character": "Monica", "id": 60073, "credit_id": "52fe4c52c3a368484e1b26b7", "cast_id": 11, "profile_path": "/w1m6W6BJVIkXZglLE0yrYOMlbiI.jpg", "order": 5}, {"name": "Rob Brown", "character": "Bobby", "id": 10689, "credit_id": "52fe4c52c3a368484e1b26c3", "cast_id": 14, "profile_path": "/m8VAOhTpIQYWDYg2MOc9lOFLahF.jpg", "order": 6}, {"name": "Jeremy Luke", "character": "Danny", "id": 112879, "credit_id": "52fe4c52c3a368484e1b26c7", "cast_id": 15, "profile_path": "/gvBicS8kZjWZ4TFChR7LmC9k3YT.jpg", "order": 7}, {"name": "Paul Ben-Victor", "character": "Priest", "id": 85142, "credit_id": "52fe4c52c3a368484e1b26cb", "cast_id": 16, "profile_path": "/350FIsnn84w2RLAhNPRtzeaUqLO.jpg", "order": 8}, {"name": "Italia Ricci", "character": "Gina", "id": 212429, "credit_id": "52fe4c52c3a368484e1b26cf", "cast_id": 17, "profile_path": "/c2hdp1feyjdjBdTzrLwnnlNBsO4.jpg", "order": 9}, {"name": "Lindsey Broad", "character": "Lauren", "id": 208307, "credit_id": "52fe4c52c3a368484e1b26d3", "cast_id": 18, "profile_path": "/6R4jOm6LOTlbt1L9Zbocl5OjsfQ.jpg", "order": 10}, {"name": "Amanda Perez", "character": "Lisa", "id": 1124795, "credit_id": "52fe4c52c3a368484e1b26d7", "cast_id": 19, "profile_path": "/vDE724lSQIfhdCHwkqtD3O6ZY0J.jpg", "order": 11}, {"name": "Sarah Dumont", "character": "Sequins", "id": 1223438, "credit_id": "52fe4c52c3a368484e1b26db", "cast_id": 20, "profile_path": "/5Co3Oad320D87NhQTqzkSTU3ZAy.jpg", "order": 12}, {"name": "Sloane Avery", "character": "Patricia", "id": 1223439, "credit_id": "52fe4c52c3a368484e1b26df", "cast_id": 21, "profile_path": "/aiiuUk6jAB58DWPKMGIKEAwNvrp.jpg", "order": 13}, {"name": "Loanne Bishop", "character": "Barbara's Mom", "id": 149699, "credit_id": "52fe4c52c3a368484e1b26e3", "cast_id": 22, "profile_path": "/tNwbRqGvb37TA8Ws9trV34UlPts.jpg", "order": 14}, {"name": "Arin Babaian", "character": "Bartender", "id": 1355837, "credit_id": "53f8009ac3a368735b0006cb", "cast_id": 37, "profile_path": null, "order": 15}, {"name": "Arielle Reitsma", "character": "Pink", "id": 1355838, "credit_id": "53f800a9c3a36873550006c3", "cast_id": 38, "profile_path": null, "order": 16}, {"name": "Rizwan Manji", "character": "Teacher", "id": 1223718, "credit_id": "53f800fd0e0a267a69000ab7", "cast_id": 39, "profile_path": "/yB9w540vNe4pwa3ptvO1haDUKWy.jpg", "order": 17}, {"name": "Eva Mah", "character": "Waitress", "id": 1355839, "credit_id": "53f8010a0e0a267a6c000a34", "cast_id": 40, "profile_path": null, "order": 18}, {"name": "Nina Agdal", "character": "Supermodel in Commercial", "id": 1355840, "credit_id": "53f8011c0e0a267a6f000a72", "cast_id": 41, "profile_path": "/nablozfCEzGkZnY33KzM42k7Ejg.jpg", "order": 19}, {"name": "Jason Burnham", "character": "Promoter", "id": 1355841, "credit_id": "53f801290e0a267a69000ac0", "cast_id": 42, "profile_path": null, "order": 20}, {"name": "Johnny Ferrara", "character": "Other Driver", "id": 1355842, "credit_id": "53f801390e0a267a78000a67", "cast_id": 43, "profile_path": null, "order": 21}, {"name": "Tiffany Pulvino", "character": "Hostess", "id": 239974, "credit_id": "53f801600e0a267a7b000a05", "cast_id": 44, "profile_path": null, "order": 22}, {"name": "Olia Voronkova", "character": "Russian Voices", "id": 1355844, "credit_id": "53f801740e0a267a6c000a50", "cast_id": 45, "profile_path": null, "order": 23}, {"name": "Sonni Brown", "character": "Woman in Car", "id": 1355845, "credit_id": "53f801850e0a267a7b000a11", "cast_id": 46, "profile_path": null, "order": 24}, {"name": "Antoinette Kalaj", "character": "Feefee", "id": 1346327, "credit_id": "53f8020dc3a368734c0006b5", "cast_id": 47, "profile_path": null, "order": 25}, {"name": "Arayna Eison", "character": "Beebee", "id": 1355846, "credit_id": "53f8021ac3a368735e000701", "cast_id": 48, "profile_path": null, "order": 26}, {"name": "Becky O'Donohue", "character": "Deedee", "id": 446351, "credit_id": "53f8023cc3a36873550006f2", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Elena Kim", "character": "Purple", "id": 1355847, "credit_id": "53f80248c3a36873580006cc", "cast_id": 50, "profile_path": null, "order": 28}, {"name": "Tanya Mityushina", "character": "White Shorts", "id": 1355848, "credit_id": "53f80255c3a368734f0006d2", "cast_id": 51, "profile_path": null, "order": 29}, {"name": "Craig Marks", "character": "Church Parishioner", "id": 1355849, "credit_id": "53f80263c3a36873550006f7", "cast_id": 52, "profile_path": null, "order": 30}, {"name": "Anne Hathaway", "character": "Hollywood Actress #1", "id": 1813, "credit_id": "539a17300e0a26363b0000a8", "cast_id": 32, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 31}, {"name": "Channing Tatum", "character": "Hollywood Actor #1", "id": 38673, "credit_id": "539a17420e0a2636370000aa", "cast_id": 33, "profile_path": "/5L7BSYbzM8iizvIrS8EaaZoDrI3.jpg", "order": 32}, {"name": "Meagan Good", "character": "Hollywood Actress #2", "id": 22122, "credit_id": "539a17560e0a2636440000ac", "cast_id": 34, "profile_path": "/1CrzG3MgPaaJGXdEdaWn2HIiuJ4.jpg", "order": 33}, {"name": "Cuba Gooding Jr.", "character": "Hollywood Actor #2", "id": 9777, "credit_id": "539a17680e0a2636370000b0", "cast_id": 35, "profile_path": "/yu8Q3ImFu3RJne585jjgeQO2Boo.jpg", "order": 34}, {"name": "Alexis Texas", "character": "Herself (Adult Film Clip)", "id": 124972, "credit_id": "5405e264c3a368119c003cd7", "cast_id": 76, "profile_path": "/iPcg3mtVIGehfJhhG5nRvhSXiIt.jpg", "order": 58}, {"name": "Sunny Lane", "character": "Herself (Adult Film Clip)", "id": 74250, "credit_id": "5405e271c3a36843660086fb", "cast_id": 77, "profile_path": "/sBLW6gy9B4IEl7ORn9sOHJuixnq.jpg", "order": 59}, {"name": "Devon", "character": "Herself (Adult Film Clip)", "id": 124136, "credit_id": "5405e27ec3a3682d98006e2c", "cast_id": 78, "profile_path": "/9tckZpVlheiOkQRQJhdCwb0KwsQ.jpg", "order": 60}, {"name": "Cheyne Collins", "character": "Herself (Adult Film Clip)", "id": 41990, "credit_id": "5405e291c3a3685b74003fdc", "cast_id": 79, "profile_path": null, "order": 61}, {"name": "Aletta Ocean", "character": "Herself (Adult Film Clip)", "id": 135659, "credit_id": "5405e29bc3a3684372008374", "cast_id": 80, "profile_path": "/mccelgZ7Af4SZaEOHSgEiZZxlx3.jpg", "order": 62}, {"name": "Kayden Kross", "character": "Herself (Adult Film Clip)", "id": 132388, "credit_id": "5405e2a6c3a368119c003cdb", "cast_id": 81, "profile_path": "/sEyhB3wszX7fnyesKEEFbPgoZeS.jpg", "order": 63}, {"name": "Jenny Hendrix", "character": "Herself (Adult Film Clip)", "id": 125611, "credit_id": "5405e2b2c3a368068c0084e0", "cast_id": 82, "profile_path": "/FtFwNeeKsK7KLMCbQwzTJgYIyW.jpg", "order": 64}, {"name": "Anita Blond", "character": "Herself (Adult Film Clip)", "id": 88578, "credit_id": "5405e2bfc3a36843660086ff", "cast_id": 83, "profile_path": "/74pEqhwGmP6g4H7dkQ9T2Bfekh6.jpg", "order": 65}, {"name": "Damien Michaels", "character": "Himself (Adult Film Clip)", "id": 1274860, "credit_id": "5405e2d4c3a3685b74003fe0", "cast_id": 84, "profile_path": null, "order": 66}, {"name": "Tori Black", "character": "Herself (Adult Film Clip)", "id": 132381, "credit_id": "5405e356c3a368068c0084ea", "cast_id": 85, "profile_path": "/747fboEtjXNqZQWZLPVssJUlGsm.jpg", "order": 67}, {"name": "Manuel Ferrara", "character": "Himself (Adult Film Clip)", "id": 55680, "credit_id": "5405e372c3a368119c003ced", "cast_id": 86, "profile_path": "/uMF0ZWcfE2GPFmADXD58iUuv6Ye.jpg", "order": 68}, {"name": "Rebeca Linares", "character": "Herself (Adult Film Clip)", "id": 132328, "credit_id": "5405e37fc3a368436600870d", "cast_id": 87, "profile_path": "/uEVrRa95iFfG7AhaAd6vNKnfsU6.jpg", "order": 69}, {"name": "Mia Malkova", "character": "Herself (Adult Film Clip)", "id": 1197172, "credit_id": "5405e38bc3a368068c0084ee", "cast_id": 88, "profile_path": "/fh0gtHmjm0gNtwMrgTvwILG561B.jpg", "order": 70}, {"name": "Jynx Maze", "character": "Herself (Adult Film Clip)", "id": 232271, "credit_id": "5405e395c3a368068c0084f1", "cast_id": 89, "profile_path": null, "order": 71}, {"name": "Dani Daniels", "character": "Herself (Adult Film Clip)", "id": 577492, "credit_id": "5405e3a3c3a36816af00392c", "cast_id": 90, "profile_path": "/zP4G5PeRk0HwcGFRmbVLjFCsUop.jpg", "order": 72}, {"name": "Isis Taylor", "character": "Herself (Adult Film Clip)", "id": 136791, "credit_id": "5405e3b0c3a368119c003cf2", "cast_id": 91, "profile_path": "/alRlMTs1X7XUd4nSP5Cbl5jfYOD.jpg", "order": 73}, {"name": "Bree Olson", "character": "Herself (Adult Film Clip)", "id": 132398, "credit_id": "5405e3bcc3a368119c003cf4", "cast_id": 92, "profile_path": "/53AyqMhJZPgk5KW0n0PUuEDVVIp.jpg", "order": 74}, {"name": "Selena Rose", "character": "Herself (Adult Film Clip)", "id": 136867, "credit_id": "5405e4590e0a2658de00d47d", "cast_id": 93, "profile_path": "/eL6FAo9Tv3WdgKCSvlmTwbrnWhz.jpg", "order": 75}, {"name": "Bree Daniels", "character": "Herself (Adult Film Clip)", "id": 591860, "credit_id": "5405e46d0e0a2658db00d160", "cast_id": 94, "profile_path": "/bL5ktDilduT0GxB2csT8HDyijm0.jpg", "order": 76}, {"name": "Gia Grace", "character": "Herself (Adult Film Clip)", "id": 1263089, "credit_id": "5405e4aa0e0a264b0900212d", "cast_id": 95, "profile_path": null, "order": 77}, {"name": "Missy Stone", "character": "Herself (Adult Film Clip)", "id": 139389, "credit_id": "5405e4b80e0a264d830020aa", "cast_id": 96, "profile_path": "/nCVktpQ5MLFieZMR8L2farnfiCw.jpg", "order": 78}, {"name": "Stoya", "character": "Herself (Adult Film Clip)", "id": 88229, "credit_id": "5405e4c00e0a2649e50021b2", "cast_id": 97, "profile_path": "/jECoyLfHFvZvul5cuAr0xDM2GDe.jpg", "order": 79}, {"name": "Mark Ashley", "character": "Himself (Adult Film Clip)", "id": 55682, "credit_id": "5405e4d20e0a264b09002134", "cast_id": 98, "profile_path": null, "order": 80}], "directors": [{"name": "Joseph Gordon-Levitt", "department": "Directing", "job": "Director", "credit_id": "52fe4c52c3a368484e1b2689", "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "id": 24045}], "vote_average": 6.1, "runtime": 90}, "155084": {"poster_path": "/uYPy89cVgvE1ic0bN39YJrumxwo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A bright but meek salesman, drowning in debt as he's about to get married, receives a mysterious phone call informing him that he's on a hidden camera game show where he must execute 13 tasks to receive a multi-million dollar cash prize.", "video": false, "id": 155084, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "13 Sins", "tagline": "You don't play the game. It plays you.", "vote_count": 101, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2059171", "adult": false, "backdrop_path": "/qn7dV0tAGcH8NvUAUIwGmUGnMMw.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "IM Global", "id": 7437}, {"name": "Automatik Entertainment", "id": 7625}, {"name": "Little Magic Films", "id": 26470}, {"name": "Sahamongkol Film International", "id": 6018}, {"name": "Radius-TWC", "id": 20671}], "release_date": "2014-04-18", "popularity": 0.812777221393804, "original_title": "13 Sins", "budget": 5000000, "cast": [{"name": "Mark Webber", "character": "Elliot", "id": 4451, "credit_id": "52fe4b749251416c910dae07", "cast_id": 3, "profile_path": "/6AA05AS6lnOjgFrA1nreIm9gBEP.jpg", "order": 0}, {"name": "Devon Graye", "character": "Michael", "id": 111518, "credit_id": "52fe4b749251416c910dae23", "cast_id": 9, "profile_path": "/32DcMndRdSXybbbT1EWhlrYCu0Q.jpg", "order": 1}, {"name": "Rutina Wesley", "character": "Shelby", "id": 210773, "credit_id": "546deaa6c3a3685ab6001e5a", "cast_id": 42, "profile_path": "/ewT4aCJsXkfLg7e6IHZFHgIHcoV.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Det. Chilcoat", "id": 2372, "credit_id": "52fe4b749251416c910dae03", "cast_id": 2, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Pruitt Taylor Vince", "character": "Vogler", "id": 3201, "credit_id": "52fe4b749251416c910dae0b", "cast_id": 4, "profile_path": "/A7bmvkrsKdW26AjPkqY6ETzEOlr.jpg", "order": 4}, {"name": "Brittney Alger", "character": "Nurse", "id": 1128522, "credit_id": "52fe4b749251416c910dae0f", "cast_id": 5, "profile_path": "/u1eKIGLkK2GTpqFArNxgAMTMhOj.jpg", "order": 5}, {"name": "Stephanie Honor\u00e9", "character": "Junkie Girl", "id": 94427, "credit_id": "52fe4b749251416c910dae27", "cast_id": 10, "profile_path": "/nSMMEmAcTy9D9XK9recqarOrBg2.jpg", "order": 6}, {"name": "Christopher Berry", "character": "Detective Vance", "id": 1173099, "credit_id": "52fe4b749251416c910dae2b", "cast_id": 11, "profile_path": "/fIq5d1S0xLBapW7EZKKknTdgPA7.jpg", "order": 7}, {"name": "Tom Bower", "character": "Father", "id": 19453, "credit_id": "5387ea27c3a3681add003c42", "cast_id": 15, "profile_path": "/mkjHajbcN9COmJ6tyI92Ztl5avP.jpg", "order": 8}, {"name": "Clyde Jones", "character": "Gerry", "id": 108188, "credit_id": "5387ea37c3a3681ad7003d91", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Sharon Smith", "character": "Hostess", "id": 1336429, "credit_id": "53b3c246c3a3682edb008c06", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Ritchie Montgomery", "character": "Apartment Manager", "id": 52885, "credit_id": "53b3c26bc3a3682edf0087fd", "cast_id": 22, "profile_path": "/znNRxqrYkOskK3jlm3ftHyAzJDg.jpg", "order": 11}, {"name": "Sabrina Gennarino", "character": "Mother", "id": 133386, "credit_id": "53b3c2abc3a3682ed80088dc", "cast_id": 23, "profile_path": "/j2BOZDTXKIq49txsx92vCF5sCxg.jpg", "order": 12}, {"name": "John McConnell", "character": "Detective", "id": 16459, "credit_id": "53b3c2f9c3a3682ed80088e0", "cast_id": 24, "profile_path": "/538J8jF0CUkjhiTRJS1gKvXHA5w.jpg", "order": 13}, {"name": "Judd Lormand", "character": "Diner Cop", "id": 990136, "credit_id": "53b3c33fc3a3682edb008c22", "cast_id": 25, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 14}, {"name": "Lance E. Nichols", "character": "Police Captain", "id": 101847, "credit_id": "53b3c390c3a3682ee200904d", "cast_id": 26, "profile_path": "/zOaZTf9VpPutOxqXHnczoKKiALx.jpg", "order": 15}, {"name": "Danny Cosmo", "character": "Mr. Shaw", "id": 86278, "credit_id": "53b3c3f2c3a3682eea008c7e", "cast_id": 27, "profile_path": "/fP7gwFDo6xEP5tY3rbfbtXkrid1.jpg", "order": 16}], "directors": [{"name": "Daniel Stamm", "department": "Directing", "job": "Director", "credit_id": "52fe4b749251416c910dadff", "profile_path": null, "id": 120245}], "vote_average": 6.4, "runtime": 88}, "2637": {"poster_path": "/746O4Rn8TKRp2UZoenD4dgwmKMj.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 55157539, "overview": "Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.", "video": false, "id": 2637, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Mothman Prophecies", "tagline": "Based on true events", "vote_count": 61, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0265349", "adult": false, "backdrop_path": "/8AYqyt1Pp3Q0MPw2jVilSg7WnoY.jpg", "production_companies": [{"name": "Lakeshore Entertainment", "id": 126}], "release_date": "2002-01-25", "popularity": 0.509272321722098, "original_title": "The Mothman Prophecies", "budget": 32000000, "cast": [{"name": "Richard Gere", "character": "John Klein", "id": 1205, "credit_id": "52fe4361c3a36847f804fdf3", "cast_id": 1, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 0}, {"name": "Laura Linney", "character": "Connie Mills", "id": 350, "credit_id": "52fe4361c3a36847f804fdf7", "cast_id": 2, "profile_path": "/unRRWITXrZsbk9iTmnjVxd6yZv9.jpg", "order": 1}, {"name": "Will Patton", "character": "Gordon Smallwood", "id": 883, "credit_id": "52fe4361c3a36847f804fdfb", "cast_id": 3, "profile_path": "/hAmIWRVgLmu4oXQiJFN8P6EiD5L.jpg", "order": 2}, {"name": "Bob Tracey", "character": "Cyrus Bills", "id": 27550, "credit_id": "52fe4361c3a36847f804fe35", "cast_id": 13, "profile_path": null, "order": 3}, {"name": "Debra Messing", "character": "Mary Klein", "id": 23959, "credit_id": "52fe4361c3a36847f804fe39", "cast_id": 14, "profile_path": "/d2LQbdccJbMSDC9Qm6vTn4qa0Ly.jpg", "order": 4}, {"name": "Tom Stoviak", "character": "Brian", "id": 27551, "credit_id": "52fe4361c3a36847f804fe3d", "cast_id": 15, "profile_path": null, "order": 5}, {"name": "David Eigenberg", "character": "Ed Fleischman", "id": 27552, "credit_id": "52fe4361c3a36847f804fe41", "cast_id": 16, "profile_path": "/6In0iKsH6FRzZ5sCsUjAx4pwHJl.jpg", "order": 6}, {"name": "Bill Laing", "character": "Indrid Cold", "id": 27553, "credit_id": "52fe4361c3a36847f804fe45", "cast_id": 17, "profile_path": null, "order": 7}, {"name": "Alan Bates", "character": "Alexander Leek", "id": 27554, "credit_id": "52fe4361c3a36847f804fe49", "cast_id": 18, "profile_path": "/tXBtdL0JrFFMBP55fn3sh1z0WOG.jpg", "order": 8}, {"name": "Ron Emanuel", "character": "Washington Post Reporter", "id": 27681, "credit_id": "52fe4361c3a36847f804fe4d", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Yvonne Erickson", "character": "Dr. McElroy", "id": 27682, "credit_id": "52fe4361c3a36847f804fe51", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Scott Nunnally", "character": "Orderly", "id": 27683, "credit_id": "52fe4361c3a36847f804fe55", "cast_id": 21, "profile_path": null, "order": 11}, {"name": "Harris Mackenzie", "character": "TV Journalist", "id": 27684, "credit_id": "52fe4361c3a36847f804fe59", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Zachary Mott", "character": "Otto", "id": 27685, "credit_id": "52fe4361c3a36847f804fe5d", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Ann McDonough", "character": "Lucy Griffin", "id": 27686, "credit_id": "52fe4361c3a36847f804fe61", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Shane Callahan", "character": "Nat Griffin", "id": 27687, "credit_id": "52fe4361c3a36847f804fe65", "cast_id": 25, "profile_path": "/rYUkFvz1ZkR1xqWpAbIc7JTiUbw.jpg", "order": 15}, {"name": "Nesbitt Blaisdell", "character": "Chief Josh Jarrett", "id": 21152, "credit_id": "52fe4361c3a36847f804fe69", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Dan Callahan", "character": "C.J.", "id": 27688, "credit_id": "52fe4361c3a36847f804fe6d", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Christin Frame", "character": "Holly", "id": 27689, "credit_id": "52fe4361c3a36847f804fe71", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Rohn Thomas", "character": "Dr. Williams", "id": 27690, "credit_id": "52fe4361c3a36847f804fe75", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Susan Nicholas", "character": "Nachrichtensprecherin", "id": 27691, "credit_id": "52fe4361c3a36847f804fe79", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Tim Hartman", "character": "Sonny", "id": 27692, "credit_id": "52fe4361c3a36847f804fe7d", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Jennifer Martin", "character": "Coffee Shop Angestellte", "id": 27694, "credit_id": "52fe4361c3a36847f804fe81", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Mark Pellington", "character": "Barkeeper, Stimme von Indrid Cold", "id": 11676, "credit_id": "52fe4361c3a36847f804fe85", "cast_id": 33, "profile_path": "/7TR3DIbvsLKHrCkylSJgySGcs3Z.jpg", "order": 23}, {"name": "Murphy Dunne", "character": "Gov. Rob McCallum", "id": 7178, "credit_id": "52fe4361c3a36847f804fe89", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Pete Handelman", "character": "Helfer", "id": 27708, "credit_id": "52fe4361c3a36847f804fe8d", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Matt Miller", "character": "Helfer", "id": 27709, "credit_id": "52fe4361c3a36847f804fe91", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Josh Braun", "character": "Helfer", "id": 27710, "credit_id": "52fe4361c3a36847f804fe95", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Doug Korstanje", "character": "Nachrichtensprecher", "id": 27711, "credit_id": "52fe4361c3a36847f804fe99", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Betsy Zajko", "character": "Tory Pherris", "id": 27712, "credit_id": "52fe4361c3a36847f804fe9d", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Elizabeth Cazenave", "character": "Hotelpage", "id": 27713, "credit_id": "52fe4361c3a36847f804fea1", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Sam Nicotero", "character": "Mann auf Br\u00fccke", "id": 27714, "credit_id": "52fe4361c3a36847f804fea5", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Tom Tully", "character": "Motel Manager", "id": 97593, "credit_id": "52fe4361c3a36847f804fea9", "cast_id": 42, "profile_path": null, "order": 32}], "directors": [{"name": "Mark Pellington", "department": "Directing", "job": "Director", "credit_id": "52fe4361c3a36847f804fe01", "profile_path": "/7TR3DIbvsLKHrCkylSJgySGcs3Z.jpg", "id": 11676}], "vote_average": 6.2, "runtime": 119}, "1272": {"poster_path": "/upgi8oTlMthM9sweAyBoXqr8doZ.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32017803, "overview": "50 years from now the sun is dying and life on earth is threatened by arctic temperatures. Mankind puts together all its resources and sends a spaceship carrying a huge bomb designed to re-ignite the dying sun.", "video": false, "id": 1272, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Sunshine", "tagline": "If the sun dies, so do we.", "vote_count": 263, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0448134", "adult": false, "backdrop_path": "/eS7oirgHKzJ4lg7wOnVg8YPxs73.jpg", "production_companies": [{"name": "UK Film Council", "id": 2452}, {"name": "DNA Films", "id": 284}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Moving Picture Company (MPC)", "id": 20478}], "release_date": "2007-04-05", "popularity": 1.05125411815163, "original_title": "Sunshine", "budget": 50000000, "cast": [{"name": "Cillian Murphy", "character": "Capa", "id": 2037, "credit_id": "52fe42ecc3a36847f802d38b", "cast_id": 5, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Cassie", "id": 9827, "credit_id": "52fe42ecc3a36847f802d38f", "cast_id": 6, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Chris Evans", "character": "Mace", "id": 16828, "credit_id": "52fe42ecc3a36847f802d387", "cast_id": 4, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 2}, {"name": "Michelle Yeoh", "character": "Corazon", "id": 1620, "credit_id": "52fe42ecc3a36847f802d393", "cast_id": 7, "profile_path": "/tx0fVLAFKbNMpqvdi7ywdZaoIMl.jpg", "order": 3}, {"name": "Cliff Curtis", "character": "Searle", "id": 7248, "credit_id": "52fe42ecc3a36847f802d397", "cast_id": 8, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 4}, {"name": "Hiroyuki Sanada", "character": "Kaneda", "id": 9195, "credit_id": "52fe42ecc3a36847f802d39b", "cast_id": 9, "profile_path": "/fljn2lkeej3gAwSOvXXMVVQlA2K.jpg", "order": 5}, {"name": "Troy Garity", "character": "Harvey", "id": 31711, "credit_id": "52fe42ecc3a36847f802d39f", "cast_id": 10, "profile_path": "/r5SNJzEedtdPH2gJKpDosKJ6ZgM.jpg", "order": 6}, {"name": "Benedict Wong", "character": "Trey", "id": 30082, "credit_id": "52fe42ecc3a36847f802d3a3", "cast_id": 11, "profile_path": "/azCIaoC5TT3X99eujsoE3y5Pmnu.jpg", "order": 7}, {"name": "Mark Strong", "character": "Pinbacker", "id": 2983, "credit_id": "52fe42ecc3a36847f802d3a7", "cast_id": 12, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 8}, {"name": "Chipo Chung", "character": "Voice of Icarus", "id": 59151, "credit_id": "52fe42ecc3a36847f802d3ab", "cast_id": 13, "profile_path": "/qMWbTLIm53YE6GlD78OdboIACZF.jpg", "order": 9}, {"name": "Paloma Baeza", "character": "Capa's Sister", "id": 24618, "credit_id": "54b967539251414859001cc0", "cast_id": 25, "profile_path": "/qkctkDdjbDsFtxZY3moNf18lG7c.jpg", "order": 10}, {"name": "Archie Macdonald", "character": "Child", "id": 1414389, "credit_id": "54b96768c3a3686c6b005885", "cast_id": 26, "profile_path": null, "order": 11}], "directors": [{"name": "Danny Boyle", "department": "Directing", "job": "Director", "credit_id": "52fe42ecc3a36847f802d377", "profile_path": "/kc3AwEi5W1Z2PLRADjHJPC9zhAr.jpg", "id": 2034}], "vote_average": 6.8, "runtime": 107}, "24021": {"poster_path": "/7UoOHjmRoOBGsm6k724IMq8saAo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 300476779, "overview": "Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.", "video": false, "id": 24021, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Twilight Saga: Eclipse", "tagline": "It all begins ... With a choice.", "vote_count": 631, "homepage": "http://eclipsethemovie.com", "belongs_to_collection": {"backdrop_path": "/rv5b06YAvmekw0D6Ul2ps9JbH4C.jpg", "poster_path": "/2o4zgGjVryMOPdNqLZWsSPqRkOH.jpg", "id": 33514, "name": "The Twilight Saga Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1325004", "adult": false, "backdrop_path": "/lKCZYVQQb7Agw6WR25WvQBFKJmK.jpg", "production_companies": [{"name": "Sunswept Entertainment", "id": 5219}, {"name": "Summit Entertainment", "id": 491}, {"name": "Temple Hill Entertainment", "id": 12292}, {"name": "Maverick Films", "id": 4000}, {"name": "Imprint Entertainment", "id": 5218}], "release_date": "2010-06-23", "popularity": 1.43931235030561, "original_title": "The Twilight Saga: Eclipse", "budget": 65000000, "cast": [{"name": "Kristen Stewart", "character": "Bella Swan", "id": 37917, "credit_id": "52fe447cc3a368484e025f85", "cast_id": 23, "profile_path": "/5LzRPSHwAmxSln9gvz3ZMd87Z5l.jpg", "order": 0}, {"name": "Robert Pattinson", "character": "Edward Cullen", "id": 11288, "credit_id": "52fe447dc3a368484e025f89", "cast_id": 24, "profile_path": "/xLN4O0KSZhZmdM8kXrzQcBSmWxm.jpg", "order": 1}, {"name": "Taylor Lautner", "character": "Jacob Black", "id": 84214, "credit_id": "52fe447dc3a368484e025f8d", "cast_id": 25, "profile_path": "/xazf3pX3fbScXvi8WojuxsGOJX2.jpg", "order": 2}, {"name": "Ashley Greene", "character": "Alice Cullen", "id": 45827, "credit_id": "52fe447dc3a368484e025f91", "cast_id": 26, "profile_path": "/afm3DTK2oclpiiiuDIrJaDU2XJj.jpg", "order": 3}, {"name": "Peter Facinelli", "character": "Carlisle Cullen", "id": 56857, "credit_id": "52fe447dc3a368484e025f95", "cast_id": 27, "profile_path": "/jVlwcMxC0mtWttvvSbovybpLrBX.jpg", "order": 4}, {"name": "Billy Burke", "character": "Charlie Swan", "id": 21029, "credit_id": "52fe447dc3a368484e025f99", "cast_id": 28, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 5}, {"name": "Elizabeth Reaser", "character": "Esme Cullen", "id": 53755, "credit_id": "52fe447dc3a368484e025f9d", "cast_id": 29, "profile_path": "/xwMhNtsH7ebNVcNS5aaXCt9riP.jpg", "order": 6}, {"name": "Nikki Reed", "character": "Rosalie Hale", "id": 59252, "credit_id": "52fe447dc3a368484e025fa1", "cast_id": 30, "profile_path": "/e0O5w9eajC4qWl2FYVL2XFaMrS2.jpg", "order": 7}, {"name": "Kellan Lutz", "character": "Emmett Cullen", "id": 34502, "credit_id": "52fe447dc3a368484e025fa5", "cast_id": 31, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 8}, {"name": "Jackson Rathbone", "character": "Jasper Hale", "id": 84215, "credit_id": "52fe447dc3a368484e025fa9", "cast_id": 32, "profile_path": "/vbJdMsfDwT5FB5dYPmP1KwpYm1v.jpg", "order": 9}, {"name": "Gil Birmingham", "character": "Billy Black", "id": 84225, "credit_id": "52fe447dc3a368484e025fad", "cast_id": 33, "profile_path": "/hbcG5tET6HMacNRKimbfsG6XRkX.jpg", "order": 10}, {"name": "Anna Kendrick", "character": "Jessica", "id": 84223, "credit_id": "52fe447dc3a368484e025fb1", "cast_id": 34, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 11}, {"name": "Michael Welch", "character": "Mike Newton", "id": 56676, "credit_id": "52fe447dc3a368484e025fb5", "cast_id": 35, "profile_path": "/93sABnjY1mJyFLW12W51vJJ5lrr.jpg", "order": 12}, {"name": "Christian Serratos", "character": "Angela Weber", "id": 84224, "credit_id": "52fe447dc3a368484e025fb9", "cast_id": 36, "profile_path": "/nZWepWfXPH3H6awgyrtw3MdogsI.jpg", "order": 13}, {"name": "Bryce Dallas Howard", "character": "Victoria", "id": 18997, "credit_id": "52fe447dc3a368484e025fbd", "cast_id": 37, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 14}, {"name": "Justin Chon", "character": "Eric", "id": 65225, "credit_id": "52fe447dc3a368484e025fc1", "cast_id": 38, "profile_path": "/4hTyiQgqp6MZgFeW7DosqX4ifUK.jpg", "order": 15}, {"name": "Xavier Samuel", "character": "Riley", "id": 109438, "credit_id": "52fe447dc3a368484e025fc5", "cast_id": 39, "profile_path": "/b3r5cPAp91F9yUFVu7yXr8SHfAs.jpg", "order": 16}, {"name": "Kirsten Prout", "character": "Lucy", "id": 60715, "credit_id": "52fe447dc3a368484e025fc9", "cast_id": 40, "profile_path": "/ohKIk8kA8TJoIfF2BNTPkgf4XEo.jpg", "order": 17}, {"name": "Dakota Fanning", "character": "Jane", "id": 501, "credit_id": "52fe447dc3a368484e025fcd", "cast_id": 41, "profile_path": "/upEXoCEO9vfVPvGeTJJMuIQahrz.jpg", "order": 18}, {"name": "Sarah Clarke", "character": "Ren\u00e9e", "id": 25836, "credit_id": "52fe447dc3a368484e025fd1", "cast_id": 42, "profile_path": "/50umNQSJOGuz09Sb6R5BIRP5IoD.jpg", "order": 19}, {"name": "Cameron Bright", "character": "Alec", "id": 52414, "credit_id": "52fe447dc3a368484e025fd5", "cast_id": 43, "profile_path": "/lLK8sV9teuGLWhoZqhGiuD0t3VO.jpg", "order": 20}, {"name": "Catalina Sandino Moreno", "character": "Maria", "id": 5887, "credit_id": "52fe447dc3a368484e025fd9", "cast_id": 44, "profile_path": "/6TsJDZOmhBxfTKFp6ldC68OW65n.jpg", "order": 21}, {"name": "Booboo Stewart", "character": "Seth", "id": 121868, "credit_id": "52fe447dc3a368484e025fdd", "cast_id": 45, "profile_path": "/q6k24n6IhY44lWIcudCz0lSOKAi.jpg", "order": 22}, {"name": "Julia Jones", "character": "Leah", "id": 87310, "credit_id": "52fe447dc3a368484e025fe1", "cast_id": 46, "profile_path": "/jw08w0ySlHa5qmQWaNp2FLFeAEq.jpg", "order": 23}, {"name": "Chaske Spencer", "character": "Sam Uley", "id": 84219, "credit_id": "52fe447dc3a368484e025fe5", "cast_id": 47, "profile_path": "/1WK07UJ1OehlCRJgRjTTanR1dVk.jpg", "order": 24}], "directors": [{"name": "David Slade", "department": "Directing", "job": "Director", "credit_id": "52fe447cc3a368484e025f4b", "profile_path": "/ksOn4mssJbmdBX1AvzZF4nCUAiQ.jpg", "id": 27571}], "vote_average": 5.7, "runtime": 124}, "44912": {"poster_path": "/zUSEYp9G7Hk9GZIfbPoOiSHvwHV.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 219851172, "overview": "For centuries, a small but powerful force of warriors called the Green Lantern Corps has sworn to keep intergalactic order. Each Green Lantern wears a ring that grants him superpowers. But when a new enemy called Parallax threatens to destroy the balance of power in the Universe, their fate and the fate of Earth lie in the hands of the first human ever recruited.", "video": false, "id": 44912, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Green Lantern", "tagline": "In our darkest hour, there will be light.", "vote_count": 994, "homepage": "http://greenlanternmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1133985", "adult": false, "backdrop_path": "/gulyiqtyuzFRJCnvNwD6Z786kQi.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Pictures", "id": 174}, {"name": "De Line Pictures", "id": 2609}], "release_date": "2011-06-16", "popularity": 1.35410449843991, "original_title": "Green Lantern", "budget": 200000000, "cast": [{"name": "Ryan Reynolds", "character": "Hal Jordan / Green Lantern", "id": 10859, "credit_id": "52fe46a3c3a36847f8109e9d", "cast_id": 6, "profile_path": "/mNcVv9FG76lD67Hw4sEmL84PBZG.jpg", "order": 0}, {"name": "Blake Lively", "character": "Carol Ferris", "id": 59175, "credit_id": "52fe46a3c3a36847f8109ea1", "cast_id": 7, "profile_path": "/3ac8khocFw9Hc87vuNW9RvVq4yc.jpg", "order": 1}, {"name": "Peter Sarsgaard", "character": "Hector Hammond", "id": 133, "credit_id": "52fe46a3c3a36847f8109ea5", "cast_id": 8, "profile_path": "/dGoUlDEJumPY0CFlT7eM6KVdLUu.jpg", "order": 2}, {"name": "Tim Robbins", "character": "Senator Hammond", "id": 504, "credit_id": "52fe46a3c3a36847f8109ea9", "cast_id": 9, "profile_path": "/tuZCyZVVbHcpvtCgriSp5RRPwMX.jpg", "order": 3}, {"name": "Mark Strong", "character": "Sinestro", "id": 2983, "credit_id": "52fe46a3c3a36847f8109ead", "cast_id": 10, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 4}, {"name": "Temuera Morrison", "character": "Abin Sur", "id": 7242, "credit_id": "52fe46a3c3a36847f8109eb1", "cast_id": 11, "profile_path": "/A1nD5J5uRwJM4hnpXd3DdmwZGjP.jpg", "order": 5}, {"name": "Jenna Craig", "character": "Carol Ferris at 11", "id": 109942, "credit_id": "52fe46a3c3a36847f8109eb5", "cast_id": 12, "profile_path": "/9420cGmShU7q6uOdsNJEs3owuy.jpg", "order": 6}, {"name": "Jon Tenney", "character": "Martin Jordan", "id": 4602, "credit_id": "52fe46a3c3a36847f8109eb9", "cast_id": 13, "profile_path": "/fiG1bW6DX1szsRDPIYjfIKPQ0kV.jpg", "order": 7}, {"name": "Mike Doyle", "character": "Jack Jordan", "id": 27107, "credit_id": "52fe46a3c3a36847f8109ebd", "cast_id": 14, "profile_path": "/lvts8lJTazcr8ipvPjjxCkpsuz9.jpg", "order": 8}, {"name": "NicK Jandl", "character": "Jim Jordan", "id": 147719, "credit_id": "52fe46a3c3a36847f8109ec1", "cast_id": 15, "profile_path": "/oVvs1izMeaJz6s0kkRf15oPdPtP.jpg", "order": 9}, {"name": "Dylan James", "character": "Jason Jordan", "id": 147720, "credit_id": "52fe46a3c3a36847f8109ec5", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Leanne Cochran", "character": "Janice Jordan", "id": 60887, "credit_id": "52fe46a3c3a36847f8109ec9", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Angela Bassett", "character": "Dr. Amanda Walker", "id": 9780, "credit_id": "52fe46a3c3a36847f8109ed9", "cast_id": 20, "profile_path": "/tHkgSzhEuJKp5hqp0DZLad8HNZ9.jpg", "order": 12}, {"name": "Taika Waititi", "character": "Tom Kalmaku", "id": 55934, "credit_id": "52fe46a3c3a36847f8109f19", "cast_id": 31, "profile_path": "/qFqOHyuFo1H0RuxQxI4leTZDClY.jpg", "order": 13}, {"name": "Michael Clarke Duncan", "character": "Kilowog (voice)", "id": 61981, "credit_id": "52fe46a3c3a36847f8109f1d", "cast_id": 32, "profile_path": "/CEbgxAwcbIN8DxyD16BviQbgwr.jpg", "order": 14}, {"name": "Geoffrey Rush", "character": "Tomar-Re (voice)", "id": 118, "credit_id": "52fe46a3c3a36847f8109f21", "cast_id": 33, "profile_path": "/c0jbNjWb9DHm5xfBIeEtHZdZJmI.jpg", "order": 15}, {"name": "Clancy Brown", "character": "Parallax (voice)", "id": 6574, "credit_id": "52fe46a3c3a36847f8109f25", "cast_id": 34, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 16}, {"name": "Deke Anderson", "character": "Four Star General Caven", "id": 1195675, "credit_id": "54e8796ec3a3684ea6001187", "cast_id": 38, "profile_path": "/cRQAksi2LKMj6EvEySjDDtWSj19.jpg", "order": 17}], "directors": [{"name": "Martin Campbell", "department": "Directing", "job": "Director", "credit_id": "52fe46a3c3a36847f8109e99", "profile_path": "/e4ihBvNdXIgecqFvaorQIJoVdRi.jpg", "id": 10702}], "vote_average": 5.2, "runtime": 114}, "114150": {"poster_path": "/qtKYrSlnrgLS7wrYvEbcxrtAAqa.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 113042075, "overview": "A comedy set in the middle of a war between rival a cappella groups and centered on a rebellious girl who joins one of the groups as an escape from her unhappy life at school.", "video": false, "id": 114150, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Pitch Perfect", "tagline": "Get Pitch Slapped", "vote_count": 657, "homepage": "http://www.pitchperfectmovie.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 306031, "name": "Pitch Perfect Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1981677", "adult": false, "backdrop_path": "/vcLqVuSMx7dVfuOVKd4IL4RcMsa.jpg", "production_companies": [{"name": "Brownstone Productions", "id": 12365}], "release_date": "2012-09-28", "popularity": 2.70004964479442, "original_title": "Pitch Perfect", "budget": 17000000, "cast": [{"name": "Anna Kendrick", "character": "Beca", "id": 84223, "credit_id": "52fe4b46c3a36847f81fb7f7", "cast_id": 7, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 0}, {"name": "Skylar Astin", "character": "Jesse", "id": 73128, "credit_id": "52fe4b46c3a36847f81fb81f", "cast_id": 17, "profile_path": "/Aj1gqLbzKvcxE61RAR3456RPQ0V.jpg", "order": 1}, {"name": "Ben Platt", "character": "Benji", "id": 1107296, "credit_id": "52fe4b46c3a36847f81fb823", "cast_id": 18, "profile_path": null, "order": 2}, {"name": "Brittany Snow", "character": "Chloe", "id": 29221, "credit_id": "52fe4b46c3a36847f81fb7fb", "cast_id": 8, "profile_path": "/64aj0XyHaVInIu5VFwPSQuMKNl.jpg", "order": 3}, {"name": "Anna Camp", "character": "Aubrey", "id": 221098, "credit_id": "52fe4b46c3a36847f81fb80b", "cast_id": 12, "profile_path": "/uQ8qyoTpgSfNPuzhSWJdiV9r32Y.jpg", "order": 4}, {"name": "Rebel Wilson", "character": "Fat Amy", "id": 221581, "credit_id": "52fe4b46c3a36847f81fb803", "cast_id": 10, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 5}, {"name": "Alexis Knapp", "character": "Stacie", "id": 999790, "credit_id": "52fe4b46c3a36847f81fb7f3", "cast_id": 6, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 6}, {"name": "Ester Dean", "character": "Cynthia Rose", "id": 1072572, "credit_id": "52fe4b46c3a36847f81fb827", "cast_id": 19, "profile_path": null, "order": 7}, {"name": "Hana Mae Lee", "character": "Lilly", "id": 1107297, "credit_id": "52fe4b46c3a36847f81fb82b", "cast_id": 20, "profile_path": null, "order": 8}, {"name": "Kelley Jakle", "character": "Jessica (as Kelley Alice Jakle)", "id": 1107298, "credit_id": "52fe4b46c3a36847f81fb82f", "cast_id": 21, "profile_path": null, "order": 9}, {"name": "Wanetah Walmsley", "character": "Denise", "id": 550117, "credit_id": "52fe4b46c3a36847f81fb833", "cast_id": 22, "profile_path": null, "order": 10}, {"name": "Shelley Regner", "character": "Ashley", "id": 1107299, "credit_id": "52fe4b46c3a36847f81fb837", "cast_id": 23, "profile_path": null, "order": 11}, {"name": "Caroline Fourmy", "character": "Mary Elise", "id": 1107300, "credit_id": "52fe4b46c3a36847f81fb83b", "cast_id": 24, "profile_path": null, "order": 12}, {"name": "Nicole Lovince", "character": "Kori", "id": 1107301, "credit_id": "52fe4b46c3a36847f81fb83f", "cast_id": 25, "profile_path": null, "order": 13}, {"name": "Adam DeVine", "character": "Bumper", "id": 212604, "credit_id": "52fe4b46c3a36847f81fb807", "cast_id": 11, "profile_path": "/6qDsS9jcywuajS7gB8gLuQRJ7Um.jpg", "order": 14}, {"name": "Utkarsh Ambudkar", "character": "Donald", "id": 929511, "credit_id": "52fe4b46c3a36847f81fb843", "cast_id": 26, "profile_path": null, "order": 15}, {"name": "Michael Viruet", "character": "Unicycle", "id": 1107304, "credit_id": "52fe4b46c3a36847f81fb847", "cast_id": 27, "profile_path": null, "order": 16}, {"name": "David Del Rio", "character": "Kolio", "id": 210389, "credit_id": "52fe4b46c3a36847f81fb84b", "cast_id": 28, "profile_path": "/sS5TuSejZqBaneaNjZ0eI0nL40d.jpg", "order": 17}, {"name": "Elizabeth Banks", "character": "Gail", "id": 9281, "credit_id": "52fe4b46c3a36847f81fb81b", "cast_id": 16, "profile_path": "/w2RrVNLQa4ApXhpIgWTkpNVS2kd.jpg", "order": 18}, {"name": "John Michael Higgins", "character": "John", "id": 8265, "credit_id": "52fe4b46c3a36847f81fb817", "cast_id": 15, "profile_path": "/5vGRr36gOQIwDXq9JKu9FBozAKi.jpg", "order": 19}, {"name": "John Benjamin Hickey", "character": "Dr. Mitchell", "id": 21179, "credit_id": "52fe4b46c3a36847f81fb84f", "cast_id": 29, "profile_path": "/4srJbpblPshcmQPI5auoAR8c1bi.jpg", "order": 20}, {"name": "Freddie Stroma", "character": "Luke", "id": 234934, "credit_id": "52fe4b46c3a36847f81fb80f", "cast_id": 13, "profile_path": "/vytAeQwkaoSlxAR1CqN2OFLIaxt.jpg", "order": 21}, {"name": "Jinhee Joung", "character": "Kimmy Jin", "id": 1107305, "credit_id": "52fe4b46c3a36847f81fb853", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Jacob Wysocki", "character": "Justin", "id": 145131, "credit_id": "52fe4b46c3a36847f81fb813", "cast_id": 14, "profile_path": "/hCSwRS4cudr3kHgsSKoAvPYCszT.jpg", "order": 23}, {"name": "Jawan Harris", "character": "Timothy", "id": 1347277, "credit_id": "53d73379c3a3683a0e000abf", "cast_id": 46, "profile_path": null, "order": 24}, {"name": "Richard Kohnke", "character": "Football Player - ATO", "id": 1188269, "credit_id": "53d733c00e0a260340000eb3", "cast_id": 47, "profile_path": "/6zRezgomOpsnGyuyf806XEFpWdx.jpg", "order": 25}, {"name": "Scott Shilstone", "character": "Frat Boy - ATO", "id": 1347281, "credit_id": "53d733eb0e0a260337000e5d", "cast_id": 48, "profile_path": null, "order": 26}, {"name": "Brock Kelly", "character": "Howie - ATO", "id": 205308, "credit_id": "53d7340f0e0a26033a000e83", "cast_id": 49, "profile_path": null, "order": 27}, {"name": "Drew Battles", "character": "Emcee at Regionals", "id": 144843, "credit_id": "53d7345d0e0a260331000ec9", "cast_id": 50, "profile_path": null, "order": 28}, {"name": "Katrina Despain", "character": "UMass Greeter", "id": 1347282, "credit_id": "53d734850e0a260344000e38", "cast_id": 51, "profile_path": null, "order": 29}, {"name": "Cameron Deane Stewart", "character": "Tom (as Cameron Stewart)", "id": 1108829, "credit_id": "53d734af0e0a26033a000ea1", "cast_id": 52, "profile_path": "/shcwxi4AVFyXZSQSBKUjvfY1rTq.jpg", "order": 30}, {"name": "Kether Donohue", "character": "Alice", "id": 588972, "credit_id": "53d734ce0e0a260340000ee4", "cast_id": 53, "profile_path": "/v2wtqKngHKHzeASddJWpFShWVtq.jpg", "order": 31}, {"name": "Karen Gonzales", "character": "Barb", "id": 1347283, "credit_id": "53d734db0e0a26033a000ea8", "cast_id": 54, "profile_path": null, "order": 32}, {"name": "Lauren Gros", "character": "RIAC Representative #1", "id": 1347284, "credit_id": "53d735350e0a260334000e67", "cast_id": 55, "profile_path": null, "order": 33}, {"name": "Alex Biglane", "character": "RIAC Representative #2", "id": 1347285, "credit_id": "53d735460e0a260331000ee5", "cast_id": 56, "profile_path": null, "order": 34}, {"name": "Michael Alexander", "character": "Jewish Student", "id": 1347286, "credit_id": "53d7355c0e0a260344000e6a", "cast_id": 57, "profile_path": null, "order": 35}, {"name": "Tyler Forrest", "character": "High Note #1", "id": 1265767, "credit_id": "53d73582c3a3683a31000adf", "cast_id": 58, "profile_path": null, "order": 36}, {"name": "Joe Lo Truglio", "character": "Clef #1", "id": 21131, "credit_id": "52fe4b46c3a36847f81fb857", "cast_id": 31, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 37}, {"name": "Har Mar Superstar", "character": "Clef #2", "id": 1107306, "credit_id": "52fe4b46c3a36847f81fb85b", "cast_id": 32, "profile_path": null, "order": 38}, {"name": "Jason Jones", "character": "Clef #3", "id": 185805, "credit_id": "52fe4b46c3a36847f81fb85f", "cast_id": 33, "profile_path": "/zpJy5iTu6f7MktAEUjySGNZUHEu.jpg", "order": 39}, {"name": "Donald Faison", "character": "Clef #4", "id": 49002, "credit_id": "52fe4b46c3a36847f81fb863", "cast_id": 34, "profile_path": "/jRkdd99lQOfoXuTKrB8w52HmOTE.jpg", "order": 40}, {"name": "Jabari Thomas", "character": "Emcee - Opening", "id": 109790, "credit_id": "53d73623c3a3683a1c000b4e", "cast_id": 59, "profile_path": null, "order": 41}, {"name": "Judd Lormand", "character": "Emcee at Semi-Finals", "id": 990136, "credit_id": "53d7364ec3a3683a25000b25", "cast_id": 60, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 42}, {"name": "Christopher Mintz-Plasse", "character": "Tommy", "id": 54691, "credit_id": "52fe4b46c3a36847f81fb7ff", "cast_id": 9, "profile_path": "/pioU58yFxKrazfWD9CZCXyyCf74.jpg", "order": 43}, {"name": "Steven Bailey", "character": "Treble #1", "id": 1347288, "credit_id": "53d7369bc3a3683a16000a74", "cast_id": 61, "profile_path": null, "order": 44}, {"name": "Michael Anaya", "character": "Treble #2", "id": 1347289, "credit_id": "53d736a8c3a3683a12000af4", "cast_id": 62, "profile_path": null, "order": 45}, {"name": "Gregory Gorenc", "character": "Treble #3", "id": 1347290, "credit_id": "53d736b4c3a3683a31000af7", "cast_id": 63, "profile_path": null, "order": 46}, {"name": "Brian Silver", "character": "Treble #4", "id": 1347291, "credit_id": "53d736c1c3a3683a1c000b5d", "cast_id": 64, "profile_path": null, "order": 47}, {"name": "Wes Lagarde", "character": "Treble #5", "id": 1347292, "credit_id": "53d736d2c3a3683a25000b32", "cast_id": 65, "profile_path": null, "order": 48}, {"name": "Jonathan Brannan", "character": "Opening Treble #1", "id": 1347293, "credit_id": "53d736ebc3a3683a20000ab0", "cast_id": 66, "profile_path": null, "order": 49}, {"name": "Donald Watkins", "character": "Opening Treble #2", "id": 1347294, "credit_id": "53d736f8c3a3683a2b000b7f", "cast_id": 67, "profile_path": null, "order": 50}, {"name": "Jessica Jain", "character": "High Note #2", "id": 1347295, "credit_id": "53d73707c3a3683a0e000b12", "cast_id": 68, "profile_path": null, "order": 51}, {"name": "Nate Howard", "character": "High Note #7", "id": 1347296, "credit_id": "53d73715c3a3683a31000b12", "cast_id": 69, "profile_path": null, "order": 52}, {"name": "Ben Haist", "character": "BU Harmonics #1", "id": 1347297, "credit_id": "53d73743c3a3683a12000b04", "cast_id": 70, "profile_path": null, "order": 53}, {"name": "Rose Davis", "character": "BU Harmonics #2", "id": 1347298, "credit_id": "53d7374dc3a3683a20000abe", "cast_id": 71, "profile_path": null, "order": 54}, {"name": "Chiara Pittman", "character": "BU Harmonics #3", "id": 1347299, "credit_id": "53d7375cc3a3683a0e000b23", "cast_id": 72, "profile_path": null, "order": 55}, {"name": "Emma Graves", "character": "BU Harmonics #4", "id": 1347300, "credit_id": "53d73766c3a3683a12000b0f", "cast_id": 73, "profile_path": null, "order": 56}, {"name": "Emily Rodriguez", "character": "BU Harmonics #5", "id": 1347301, "credit_id": "53d73773c3a3683a20000aca", "cast_id": 74, "profile_path": null, "order": 57}, {"name": "Sawyer McLeod", "character": "BU Harmonics #6", "id": 1347302, "credit_id": "53d73789c3a3683a12000b18", "cast_id": 75, "profile_path": null, "order": 58}, {"name": "Chase Cooksey", "character": "BU Harmonics #7", "id": 1347303, "credit_id": "53d73791c3a3683a25000b3d", "cast_id": 76, "profile_path": null, "order": 59}, {"name": "Adam Gilbert", "character": "BU Harmonics #8", "id": 1347304, "credit_id": "53d7379ec3a3683a1c000b7e", "cast_id": 77, "profile_path": null, "order": 60}, {"name": "Megan Dupre", "character": "Opening Bellas #1", "id": 1347305, "credit_id": "53d737b5c3a3683a16000a9b", "cast_id": 78, "profile_path": null, "order": 61}, {"name": "Brittney Alger", "character": "Opening Bellas #2", "id": 1347306, "credit_id": "53d737bfc3a3683a20000ad7", "cast_id": 79, "profile_path": null, "order": 62}, {"name": "Monika Guiberteau", "character": "Opening Bellas #3", "id": 1347307, "credit_id": "53d737d2c3a3683a2b000b9b", "cast_id": 80, "profile_path": null, "order": 63}, {"name": "Jessica Poumaroux", "character": "Opening Bellas #3", "id": 1347309, "credit_id": "53d7384ac3a3683a1c000b9f", "cast_id": 81, "profile_path": null, "order": 64}, {"name": "Jackie Tuttle", "character": "Opening Bellas #5", "id": 1347310, "credit_id": "53d73856c3a3683a12000b2e", "cast_id": 82, "profile_path": null, "order": 65}, {"name": "Elizabeth Chance", "character": "Opening Bellas #6", "id": 1347311, "credit_id": "53d73862c3a3683a25000b56", "cast_id": 83, "profile_path": null, "order": 66}, {"name": "Margo Melancon", "character": "Opening Bellas #7", "id": 1347312, "credit_id": "53d7386dc3a3683a0e000b3f", "cast_id": 84, "profile_path": null, "order": 67}, {"name": "Brooke Fontenot", "character": "Opening Bellas #8", "id": 1347313, "credit_id": "53d73878c3a3683a1c000bae", "cast_id": 85, "profile_path": null, "order": 68}, {"name": "C.J. Perry", "character": "Opening Bellas #9 / Footnote #5", "id": 1347314, "credit_id": "53d738a9c3a3683a20000b05", "cast_id": 86, "profile_path": null, "order": 69}, {"name": "Maya Estephanos", "character": "Sockapella #1", "id": 1347316, "credit_id": "53d738d2c3a3683a31000b48", "cast_id": 87, "profile_path": null, "order": 70}, {"name": "Brian Mason", "character": "Sockapella #2", "id": 1290615, "credit_id": "53d738f0c3a3683a31000b4d", "cast_id": 88, "profile_path": null, "order": 71}, {"name": "Xavier Joe Wilcher", "character": "Sockapella #3", "id": 1347318, "credit_id": "53d738fdc3a3683a25000b70", "cast_id": 89, "profile_path": null, "order": 72}, {"name": "Julia Friedman", "character": "Sockapella #4", "id": 1347319, "credit_id": "53d73913c3a3683a12000b50", "cast_id": 90, "profile_path": null, "order": 73}, {"name": "Esther Long", "character": "Sockapella #5", "id": 1347320, "credit_id": "53d7392ec3a3683a25000b7b", "cast_id": 91, "profile_path": null, "order": 74}, {"name": "Aakomon Jones", "character": "Sockapella #6", "id": 1347321, "credit_id": "53d7393ac3a3683a25000b81", "cast_id": 92, "profile_path": null, "order": 75}, {"name": "Sora Connor", "character": "Footnote #2", "id": 1290572, "credit_id": "53d73958c3a3683a25000b8e", "cast_id": 93, "profile_path": null, "order": 76}, {"name": "Elise Wilson", "character": "Footnote #3", "id": 1347322, "credit_id": "53d7396cc3a3683a20000b23", "cast_id": 94, "profile_path": null, "order": 77}, {"name": "Sean Bankhead", "character": "Footnote #4", "id": 1290585, "credit_id": "53d73982c3a3683a20000b29", "cast_id": 95, "profile_path": null, "order": 78}, {"name": "Matthew Laraway", "character": "Footnote #6", "id": 1290642, "credit_id": "53d739cbc3a3683a12000b6d", "cast_id": 96, "profile_path": null, "order": 79}, {"name": "Madison Benson", "character": "Footnote #7", "id": 1290569, "credit_id": "53d739d5c3a3683a16000af2", "cast_id": 97, "profile_path": null, "order": 80}, {"name": "Kenneth Tipton", "character": "Footnote #8", "id": 1347326, "credit_id": "53d739e0c3a3683a1c000bd7", "cast_id": 98, "profile_path": null, "order": 81}, {"name": "Jeremy Strong", "character": "Footnote #9", "id": 1347327, "credit_id": "53d739fcc3a3683a0e000b78", "cast_id": 99, "profile_path": null, "order": 82}, {"name": "Dylan Cheek", "character": "Footnote #10", "id": 1347328, "credit_id": "53d73a05c3a3683a2b000bdb", "cast_id": 100, "profile_path": null, "order": 83}, {"name": "Naeemah McCowan", "character": "Footnote #11", "id": 1347329, "credit_id": "53d73a13c3a3683a20000b39", "cast_id": 101, "profile_path": null, "order": 84}, {"name": "Allison Sahonic", "character": "Footnote #12", "id": 1347330, "credit_id": "53d73a1fc3a3683a0e000b80", "cast_id": 102, "profile_path": null, "order": 85}, {"name": "Codie L. Wiggins", "character": "Footnote #13", "id": 1347331, "credit_id": "53d73a2cc3a3683a1c000bec", "cast_id": 103, "profile_path": null, "order": 86}, {"name": "Kelly Snow", "character": "Hullabahoo #1", "id": 1347332, "credit_id": "53d73a630e0a260334000f13", "cast_id": 104, "profile_path": null, "order": 87}, {"name": "Nathan Swedberg", "character": "Hullabahoo #2", "id": 1347333, "credit_id": "53d73a720e0a260334000f19", "cast_id": 105, "profile_path": null, "order": 88}, {"name": "Matthew Savarese", "character": "Hullabahoo #3", "id": 1347334, "credit_id": "53d73a840e0a260337000f14", "cast_id": 106, "profile_path": null, "order": 89}, {"name": "Sanford Williams", "character": "Hullabahoo #4", "id": 1347335, "credit_id": "53d73a900e0a260340000f8d", "cast_id": 107, "profile_path": null, "order": 90}, {"name": "Charles Miller", "character": "Hullabahoo #5", "id": 1347336, "credit_id": "53d73abe0e0a260347000eff", "cast_id": 108, "profile_path": null, "order": 91}, {"name": "Brandon Borror-Chappell", "character": "Hullabahoo #6", "id": 1347337, "credit_id": "53d73ad40e0a260334000f32", "cast_id": 109, "profile_path": null, "order": 92}, {"name": "Sean McDonald", "character": "Hullabahoo #7", "id": 1347339, "credit_id": "53d73ae70e0a260344000f15", "cast_id": 110, "profile_path": null, "order": 93}, {"name": "Nicholas Cafero", "character": "Hullabahoo #8", "id": 1347340, "credit_id": "53d73af20e0a260337000f26", "cast_id": 111, "profile_path": null, "order": 94}, {"name": "Alexander Fabian", "character": "Hullabahoo #9", "id": 1347341, "credit_id": "53d73afd0e0a260334000f3b", "cast_id": 112, "profile_path": null, "order": 95}, {"name": "Paul Ruess", "character": "Hullabahoo #10", "id": 1347342, "credit_id": "53d73b210e0a260347000f0d", "cast_id": 113, "profile_path": null, "order": 96}, {"name": "Andrew O'Shanick", "character": "Hullabahoo #11", "id": 1347343, "credit_id": "53d73b2f0e0a26033a000f7c", "cast_id": 114, "profile_path": null, "order": 97}, {"name": "Samuel Brennan", "character": "Hullabahoo #12", "id": 1347344, "credit_id": "53d73b3f0e0a260337000f38", "cast_id": 115, "profile_path": null, "order": 98}, {"name": "Thaddeus Potter", "character": "Hullabahoo #13", "id": 1347345, "credit_id": "53d73b490e0a260334000f49", "cast_id": 116, "profile_path": null, "order": 99}, {"name": "Jacob Mainwaring", "character": "Hullabahoo #14", "id": 1347346, "credit_id": "53d73b560e0a260331000f98", "cast_id": 117, "profile_path": null, "order": 100}, {"name": "Alexander Sneider", "character": "Hullabahoo #15", "id": 1347347, "credit_id": "53d73b620e0a260337000f3f", "cast_id": 118, "profile_path": null, "order": 101}, {"name": "William Laverack", "character": "Hullabahoo #16", "id": 1347348, "credit_id": "53d73b7f0e0a260340000fc1", "cast_id": 119, "profile_path": null, "order": 102}, {"name": "Renaldo McClinton", "character": "Rapper #1", "id": 1347349, "credit_id": "53d73b8c0e0a260334000f57", "cast_id": 120, "profile_path": null, "order": 103}, {"name": "Richard Coleman", "character": "ND Auditioner #1", "id": 1347350, "credit_id": "53d73bca0e0a260337000f51", "cast_id": 121, "profile_path": null, "order": 104}, {"name": "Margaret Osburn", "character": "ND Auditioner #2", "id": 1347352, "credit_id": "53d73bd90e0a260331000fb4", "cast_id": 122, "profile_path": null, "order": 105}, {"name": "Dan Iwrey", "character": "ND Auditioner #3", "id": 1347354, "credit_id": "53d73bea0e0a260347000f25", "cast_id": 123, "profile_path": null, "order": 106}, {"name": "Ali Bloomston", "character": "ND Auditioner #4", "id": 1347355, "credit_id": "53d73bf40e0a26033a000f9a", "cast_id": 124, "profile_path": null, "order": 107}, {"name": "Shawn Barry", "character": "ND Auditioner #5", "id": 1347356, "credit_id": "53d73bfe0e0a260340000fd2", "cast_id": 125, "profile_path": null, "order": 108}, {"name": "Alexandra Weinroth", "character": "ND Auditioner #6", "id": 1347357, "credit_id": "53d73c170e0a260344000f47", "cast_id": 126, "profile_path": null, "order": 109}, {"name": "Ciera Dawn Washington", "character": "ND Auditioner #7", "id": 1347358, "credit_id": "53d73c310e0a260337000f65", "cast_id": 127, "profile_path": null, "order": 110}, {"name": "Felipe Fuentes", "character": "ND Auditioner #9", "id": 1347360, "credit_id": "53d73c490e0a26033a000fa9", "cast_id": 128, "profile_path": null, "order": 111}, {"name": "Glen Aucoin", "character": "Beatboxer", "id": 1347362, "credit_id": "53d73c640e0a260331000fd4", "cast_id": 129, "profile_path": null, "order": 112}, {"name": "Deke Sharon", "character": "Male Voice #1", "id": 1347364, "credit_id": "53d73c6f0e0a260340000fe3", "cast_id": 130, "profile_path": null, "order": 113}, {"name": "Ed Boyer", "character": "Male Voice #2", "id": 1347366, "credit_id": "53d73c820e0a260347000f42", "cast_id": 131, "profile_path": null, "order": 114}, {"name": "Brandon Kitchel", "character": "Male Voice #3", "id": 1347367, "credit_id": "53d73c8c0e0a26033a000fb7", "cast_id": 132, "profile_path": null, "order": 115}, {"name": "Jasper Randall", "character": "Male Voice #4", "id": 1347368, "credit_id": "53d73cc3c3a3683a16000b2b", "cast_id": 133, "profile_path": null, "order": 116}, {"name": "Drew Seeley", "character": "Male Voice #5", "id": 1347369, "credit_id": "53d73cdfc3a3683a31000bae", "cast_id": 134, "profile_path": null, "order": 117}, {"name": "Jeff Lewis", "character": "Male Voice #6", "id": 1347370, "credit_id": "53d73d0ac3a3683a16000b32", "cast_id": 135, "profile_path": null, "order": 118}, {"name": "Laura Dickinson", "character": "Female Voice #1", "id": 1347371, "credit_id": "53d73d3cc3a3683a31000bb7", "cast_id": 136, "profile_path": null, "order": 119}, {"name": "Candice Helfand", "character": "Female Voice #2", "id": 1347372, "credit_id": "53d73d60c3a3683a31000bbf", "cast_id": 137, "profile_path": null, "order": 120}, {"name": "Windy Wagner", "character": "Female Voice #3", "id": 1347373, "credit_id": "53d73d82c3a3683a31000bc6", "cast_id": 138, "profile_path": null, "order": 121}, {"name": "Jessica Rotter", "character": "Female Voice #4", "id": 1347374, "credit_id": "53d73d8bc3a3683a31000bcb", "cast_id": 139, "profile_path": null, "order": 122}, {"name": "Kari Kimmel", "character": "Female Voice #5", "id": 1347375, "credit_id": "53d73d95c3a3683a1c000c2b", "cast_id": 140, "profile_path": null, "order": 123}, {"name": "Kala Balch", "character": "Female Voice #6", "id": 1347376, "credit_id": "53d73da5c3a3683a1c000c30", "cast_id": 141, "profile_path": null, "order": 124}, {"name": "Emily Benford", "character": "Female Voice #7", "id": 1347377, "credit_id": "53d73ddcc3a3683a31000bd6", "cast_id": 142, "profile_path": null, "order": 125}], "directors": [{"name": "Jason Moore", "department": "Directing", "job": "Director", "credit_id": "52fe4b46c3a36847f81fb7d7", "profile_path": "/5zNb9ZYiFa9dHrDfw1koDZRW6xt.jpg", "id": 168667}], "vote_average": 6.9, "runtime": 112}, "174675": {"poster_path": "/smbzmGrpVNiZWyHHazrCDihjloV.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Already deep into a second Cold War, Britain\u2019s Ministry of Defense seeks a game-changing weapon. Programmer Vincent McCarthy unwittingly provides an answer in The Machine, a super-strong human cyborg. When a programming bug causes the prototype to decimate his lab, McCarthy takes his obsessive efforts underground, far away from inquisitive eyes.", "video": false, "id": 174675, "genres": [{"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "The Machine", "tagline": "They Rise. We Fall.", "vote_count": 104, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2317225", "adult": false, "backdrop_path": "/fBzNahBViD372cX8ptg2e4COCOp.jpg", "production_companies": [{"name": "Red & Black Films", "id": 21621}], "release_date": "2013-04-25", "popularity": 0.415490205678561, "original_title": "The Machine", "budget": 0, "cast": [{"name": "Caity Lotz", "character": "Ava", "id": 1046143, "credit_id": "52fe4d4fc3a36847f825a1c1", "cast_id": 3, "profile_path": "/j9iU6kRDaKe08084hSFt1FZXIvr.jpg", "order": 0}, {"name": "Toby Stephens", "character": "Vincent", "id": 10881, "credit_id": "52fe4d4fc3a36847f825a1c5", "cast_id": 4, "profile_path": "/zZAbK5QVmZSqZzAe16mXWzgjrSs.jpg", "order": 1}, {"name": "Denis Lawson", "character": "Thomson", "id": 47698, "credit_id": "52fe4d4fc3a36847f825a1c9", "cast_id": 5, "profile_path": "/78Yl1gcn5TpS6WsZ1tjwdX8j7Vd.jpg", "order": 2}, {"name": "Lee Nicholas Harris", "character": "Implant Soldier Harris", "id": 578690, "credit_id": "52fe4d4fc3a36847f825a1cd", "cast_id": 6, "profile_path": "/FdpH7xJhQgx09CnxcXe3PfauHE.jpg", "order": 3}, {"name": "Sam Hazeldine", "character": "James", "id": 563559, "credit_id": "52fe4d4fc3a36847f825a1d1", "cast_id": 7, "profile_path": "/12ev9KVmZ1xF4FNeZFGYRHjvJkQ.jpg", "order": 4}, {"name": "Sule Rimi", "character": "Dr. Giwa-Amu", "id": 1211217, "credit_id": "52fe4d4fc3a36847f825a1d9", "cast_id": 9, "profile_path": null, "order": 6}, {"name": "Stuart Matthews", "character": "Scientist/ Soldier", "id": 1295992, "credit_id": "532c7c14c3a3686eec000354", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Pooneh Hajimohammadi", "character": "Suri", "id": 1303070, "credit_id": "532c7c22c3a3686ef800034a", "cast_id": 11, "profile_path": null, "order": 8}, {"name": "Jonathan Byrne", "character": "Tim", "id": 1036762, "credit_id": "532c7c32c3a3686eec000357", "cast_id": 12, "profile_path": null, "order": 9}, {"name": "Jade Croot", "character": "Mary", "id": 1303071, "credit_id": "532c7c44c3a3686ee500032c", "cast_id": 13, "profile_path": null, "order": 10}, {"name": "Helen Griffin", "character": "Mrs. Dawson", "id": 218330, "credit_id": "5337c8ffc3a3680e76002d12", "cast_id": 14, "profile_path": "/ewsVkKwhumtOsuSDNB2NncNoI4U.jpg", "order": 11}, {"name": "Siwan Morris", "character": "Lucy", "id": 1221038, "credit_id": "53b9e4b4c3a3685ea8006125", "cast_id": 26, "profile_path": "/q6qYy0y82KYi3QbnFgx19o3YAkh.jpg", "order": 12}], "directors": [{"name": "Caradog W. James", "department": "Directing", "job": "Director", "credit_id": "52fe4d4fc3a36847f825a1b7", "profile_path": "/v4mbw7W5rqcNDWuDNBaIN1nVyT3.jpg", "id": 1211216}], "vote_average": 5.7, "runtime": 92}, "9470": {"poster_path": "/dZsfDrNLGWgsIUQL1vGhl8tbnqY.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}, {"iso_3166_1": "HK", "name": "Hong Kong"}], "revenue": 100914445, "overview": "In Shanghai, China in the 1940s, a wannabe gangster aspires to join the notorious \"Axe Gang\" while residents of a housing complex exhibit extraordinary powers in defending their turf.", "video": false, "id": 9470, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 14, "name": "Fantasy"}], "title": "Kung Fu Hustle", "tagline": "From walking disaster to kung fu master.", "vote_count": 307, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cn", "name": "\u5e7f\u5dde\u8bdd / \u5ee3\u5dde\u8a71"}], "imdb_id": "tt0373074", "adult": false, "backdrop_path": "/qpJWj6MI6VLRt9bGbJVZtmFvqWw.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Beijing Film Studio", "id": 708}, {"name": "Columbia Pictures Film Production Asia", "id": 2798}, {"name": "Star Overseas", "id": 3477}], "release_date": "2004-12-20", "popularity": 0.442611691803797, "original_title": "Gong Fu", "budget": 20000000, "cast": [{"name": "Stephen Chow", "character": "Sing", "id": 57607, "credit_id": "52fe44fbc3a36847f80b5b1d", "cast_id": 24, "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "order": 0}, {"name": "Yuen Wah", "character": "Landlord", "id": 57609, "credit_id": "52fe44fbc3a36847f80b5acb", "cast_id": 3, "profile_path": "/dz71IIr8cfECAOD3KFosz8aj15T.jpg", "order": 1}, {"name": "Yuen Qiu", "character": "Landlady", "id": 119426, "credit_id": "52fe44fbc3a36847f80b5b47", "cast_id": 32, "profile_path": "/yhoYlv4ZdSEcUQ2leZErKpqX1mA.jpg", "order": 2}, {"name": "Lam Tze-Chung", "character": "Sing's sidekick", "id": 545277, "credit_id": "52fe44fbc3a36847f80b5b43", "cast_id": 31, "profile_path": "/pP2Y4dTsRKUgPe9NjYG3quTwLaK.jpg", "order": 3}, {"name": "Huang Sheng-Yi", "character": "Fong", "id": 83635, "credit_id": "52fe44fbc3a36847f80b5b21", "cast_id": 25, "profile_path": "/9Gl4V0Nx6VqBAwmuVK5UsR8vDov.jpg", "order": 4}, {"name": "Dung Chi-Wa", "character": "Donut - Hexagonal Staff", "id": 1173200, "credit_id": "52fe44fbc3a36847f80b5b4b", "cast_id": 33, "profile_path": "/eehPAUdsTivKZTkhyu9VMDH83LQ.jpg", "order": 5}, {"name": "Chiu Chi-Ling", "character": "Tailor", "id": 1173216, "credit_id": "52fe44fbc3a36847f80b5b4f", "cast_id": 34, "profile_path": "/gAaJuDds7Bh02ovw9gsCbWcvseH.jpg", "order": 6}, {"name": "Xing Yu", "character": "Coolie - 12 Kicks of Tam School", "id": 78878, "credit_id": "52fe44fbc3a36847f80b5b53", "cast_id": 35, "profile_path": "/thV1sYGuyGe2DJhOJzxjZCiJDlx.jpg", "order": 7}, {"name": "Danny Chan Kwok-Kwan", "character": "Brother Sum", "id": 1173223, "credit_id": "52fe44fbc3a36847f80b5b57", "cast_id": 36, "profile_path": "/lo1Rh5BoWAsXv8xWP5sfZhLMavh.jpg", "order": 8}, {"name": "Bruce Leung Siu-Lung", "character": "The Beast", "id": 576408, "credit_id": "52fe44fbc3a36847f80b5b5b", "cast_id": 37, "profile_path": "/3igH7CvLLYyXWaJ3NmsmFYPMsvK.jpg", "order": 9}, {"name": "Tenky Tin Kai-Man", "character": "Axe Gang Advisor", "id": 1136808, "credit_id": "52fe44fbc3a36847f80b5b5f", "cast_id": 38, "profile_path": "/lCcreZ88cFxhUgw0O7bVwdZc0zY.jpg", "order": 10}, {"name": "Jia Kang-Xi", "character": "Harpist Assassin # 1", "id": 1173224, "credit_id": "52fe44fbc3a36847f80b5b63", "cast_id": 39, "profile_path": null, "order": 11}, {"name": "Fung Hak-On", "character": "Harpist Assassin # 2", "id": 118745, "credit_id": "52fe44fbc3a36847f80b5b6f", "cast_id": 43, "profile_path": "/8ATQ99ZfDKP9cFUHnoxqeQtALzZ.jpg", "order": 12}, {"name": "Lam Suet", "character": "Axe Gang Vice General", "id": 25251, "credit_id": "52fe44fbc3a36847f80b5b67", "cast_id": 41, "profile_path": "/lncRaBwS0ok9PZNHkxz5UhANouT.jpg", "order": 13}, {"name": "Yuen Cheung-Yan", "character": "Beggar", "id": 65975, "credit_id": "52fe44fbc3a36847f80b5b6b", "cast_id": 42, "profile_path": "/4W2c9r7YLsfYjCdaPLoQQj1pAMu.jpg", "order": 15}, {"name": "Feng Xiaogang", "character": "Crocodile Gang Boss", "id": 1287732, "credit_id": "5305f90092514134971f79a7", "cast_id": 44, "profile_path": "/oC7nkf7JaPbJJuEwldVtKFvMyuI.jpg", "order": 16}], "directors": [{"name": "Stephen Chow", "department": "Directing", "job": "Director", "credit_id": "52fe44fbc3a36847f80b5b3f", "profile_path": "/aizTZF5vHoOg6Ck7Nq5X65ULYoa.jpg", "id": 57607}], "vote_average": 7.0, "runtime": 99}, "4347": {"poster_path": "/quaWuwYZd8IbZMCOhW3CZEvyCWJ.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 129266061, "overview": "Fledgling writer Briony Tallis, as a 13-year-old, irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit. Based on the British romance novel by Ian McEwan.", "video": false, "id": 4347, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Atonement", "tagline": "Torn apart by betrayal. Separated by war. Bound by love.", "vote_count": 217, "homepage": "http://www.atonementthemovie.co.uk/site/site.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0783233", "adult": false, "backdrop_path": "/98jCUTFnZdQfICBsi9dZXcIEi8L.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Studio Canal", "id": 5870}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}], "release_date": "2007-08-29", "popularity": 1.38070096717538, "original_title": "Atonement", "budget": 30000000, "cast": [{"name": "Keira Knightley", "character": "Cecilia Tallis", "id": 116, "credit_id": "52fe43bbc3a36847f806b5b1", "cast_id": 11, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "James McAvoy", "character": "Robbie Turner", "id": 5530, "credit_id": "52fe43bbc3a36847f806b5b5", "cast_id": 12, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Romola Garai", "character": "Briony- 18 years old", "id": 6979, "credit_id": "52fe43bbc3a36847f806b5b9", "cast_id": 13, "profile_path": "/3FixGacii1IIJnjwiqcm5BENh6u.jpg", "order": 2}, {"name": "Saoirse Ronan", "character": "Briony Tallis- Age 13", "id": 36592, "credit_id": "52fe43bbc3a36847f806b5bd", "cast_id": 14, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 3}, {"name": "Brenda Blethyn", "character": "Grace Turner", "id": 4154, "credit_id": "52fe43bbc3a36847f806b5c1", "cast_id": 15, "profile_path": "/wp0tIM7dGDmc9TOrm9fgL7JkzQQ.jpg", "order": 4}, {"name": "Vanessa Redgrave", "character": "older Briony", "id": 13333, "credit_id": "52fe43bbc3a36847f806b5c5", "cast_id": 16, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 5}, {"name": "Juno Temple", "character": "Lola", "id": 36594, "credit_id": "52fe43bbc3a36847f806b5c9", "cast_id": 17, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 6}, {"name": "Benedict Cumberbatch", "character": "Paul Marshall", "id": 71580, "credit_id": "52fe43bbc3a36847f806b5d3", "cast_id": 19, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 7}, {"name": "Harriet Walter", "character": "Emily Tallis", "id": 17477, "credit_id": "52fe43bbc3a36847f806b5d7", "cast_id": 20, "profile_path": "/vfpIPsC27D1ONVres7j3DgWYzdN.jpg", "order": 8}, {"name": "Alfie Allen", "character": "Danny Hardman", "id": 71586, "credit_id": "52fe43bbc3a36847f806b5db", "cast_id": 21, "profile_path": "/4q6yzSMi8Q5XeIn5A1yUD1tEfwq.jpg", "order": 9}, {"name": "J\u00e9r\u00e9mie Renier", "character": "Luc Cornet", "id": 51325, "credit_id": "52fe43bbc3a36847f806b5e3", "cast_id": 23, "profile_path": "/oIb19NzIJg0Rz9z2o2KvpeEy55t.jpg", "order": 10}, {"name": "Anthony Minghella", "character": "Interviewer", "id": 2239, "credit_id": "52fe43bbc3a36847f806b5df", "cast_id": 22, "profile_path": "/2BVhY29rW1HeyyMcVOttcZaDK15.jpg", "order": 11}], "directors": [{"name": "Joe Wright", "department": "Directing", "job": "Director", "credit_id": "52fe43bbc3a36847f806b577", "profile_path": "/7eHCX1JRiKIoIaYYFUymddDAUUY.jpg", "id": 36588}], "vote_average": 6.8, "runtime": 123}, "74998": {"poster_path": "/3AeuQK8y8j0hEzSxc9vioruY0ko.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After his wife is assaulted, a husband enlists the services of a vigilante group to help him settle the score.", "video": false, "id": 74998, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Seeking Justice", "tagline": "Vengeance always has a price", "vote_count": 88, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1214962", "adult": false, "backdrop_path": "/47KqyhPlKVdsudOKXKeJaJ6KoV5.jpg", "production_companies": [{"name": "Endgame Entertainment", "id": 1205}, {"name": "Maguire Entertainment", "id": 2236}, {"name": "Aura Film Partnership", "id": 12137}, {"name": "Fierce Entertainment", "id": 12138}, {"name": "Material Pictures", "id": 12139}, {"name": "Ram Bergman Productions", "id": 11092}], "release_date": "2011-09-02", "popularity": 0.815645521113559, "original_title": "Seeking Justice", "budget": 0, "cast": [{"name": "Nicolas Cage", "character": "Will Gerard", "id": 2963, "credit_id": "52fe48e9c3a368484e11184b", "cast_id": 3, "profile_path": "/2ZummZh2lVSIqRjlbQmpbKrDkWP.jpg", "order": 0}, {"name": "Guy Pearce", "character": "Simon", "id": 529, "credit_id": "52fe48e9c3a368484e11184f", "cast_id": 4, "profile_path": "/qpcel7RjjJyiayVmw9zQ389qqwX.jpg", "order": 1}, {"name": "January Jones", "character": "Laura Gerard", "id": 31717, "credit_id": "52fe48e9c3a368484e111847", "cast_id": 2, "profile_path": "/1RyOnp2jr7MKknWfw23XAGqkkhF.jpg", "order": 2}, {"name": "Jennifer Carpenter", "character": "Trudy", "id": 53828, "credit_id": "52fe48e9c3a368484e111853", "cast_id": 5, "profile_path": "/dcrn5LIWCEcpvjWEJ671jKRQSPD.jpg", "order": 3}, {"name": "Harold Perrineau", "character": "Jimmy", "id": 6195, "credit_id": "52fe48e9c3a368484e111857", "cast_id": 6, "profile_path": "/kHdfkvm6KAmYQaoCMegLp9303D2.jpg", "order": 4}, {"name": "Xander Berkeley", "character": "Lieutenant Durgan", "id": 3982, "credit_id": "52fe48e9c3a368484e11185b", "cast_id": 7, "profile_path": "/vlZ9FDMk2Xd1WHixPKxnheZoXgR.jpg", "order": 5}, {"name": "IronE Singleton", "character": "Scar", "id": 1040864, "credit_id": "52fe48e9c3a368484e1118cb", "cast_id": 28, "profile_path": "/gUEWX9HIw2iN6bsMvRF7q0xF395.jpg", "order": 6}, {"name": "David Jensen", "character": "Gas Attendant", "id": 60875, "credit_id": "52fe48e9c3a368484e1118cf", "cast_id": 29, "profile_path": "/ab5Fjno294qQGqd53g6pLv10obq.jpg", "order": 7}, {"name": "Joe Chrest", "character": "Detective Rudeski", "id": 141762, "credit_id": "52fe48e9c3a368484e1118d3", "cast_id": 30, "profile_path": "/fVaVq1UetdXuWyCHeiLsi0704Qg.jpg", "order": 8}, {"name": "Donna DuPlantier", "character": "Gina", "id": 230995, "credit_id": "52fe48e9c3a368484e1118d7", "cast_id": 31, "profile_path": "/u63tRSZ0chExZYX6072CfD5Cg3w.jpg", "order": 9}, {"name": "Alexander Asefa", "character": "Barbeque Friend", "id": 1025647, "credit_id": "52fe48e9c3a368484e1118db", "cast_id": 32, "profile_path": "/fxrz9gOX1YqD3vCuBXu09mukQUT.jpg", "order": 10}, {"name": "Wayne P\u00e9re", "character": "Cancer", "id": 31528, "credit_id": "52fe48e9c3a368484e1118f7", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Marcus Lyle Brown", "character": "Detective Green", "id": 16460, "credit_id": "52fe48e9c3a368484e1118fb", "cast_id": 38, "profile_path": "/u9qyRKABNEhwhGHQRdG52V7b6Tw.jpg", "order": 12}, {"name": "Dikran Tulaine", "character": "Sideburns", "id": 174256, "credit_id": "52fe48e9c3a368484e1118ff", "cast_id": 39, "profile_path": "/2ZzHRGRNCkROZk4cykgdmwFY0C6.jpg", "order": 13}, {"name": "Demetrius Bridges", "character": "Edwin", "id": 1127094, "credit_id": "52fe48e9c3a368484e111903", "cast_id": 40, "profile_path": null, "order": 14}], "directors": [{"name": "Roger Donaldson", "department": "Directing", "job": "Director", "credit_id": "52fe48e9c3a368484e111843", "profile_path": "/qCflHr9YSQW2hjYG82Tdf6EXzU.jpg", "id": 21370}], "vote_average": 5.9, "runtime": 105}, "1281": {"poster_path": "/36B69cweS9xaeQRj0qA4jnaGM6l.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 251212670, "overview": "Bean works as a caretaker at Britain's formidable Royal National Gallery, and his bosses want to fire him because he sleeps at work all the time, but can't because the chairman of the gallery's board defends him. They send him to USA, to the small Los Angeles art gallery instead, where he'll have to officiate at the opening of the greatest US picture ever (called \"Whistler's Mother\").", "video": false, "id": 1281, "genres": [{"id": 35, "name": "Comedy"}], "title": "Bean", "tagline": "One Man. One Masterpiece. One Very Big Mistake.", "vote_count": 119, "homepage": "", "belongs_to_collection": {"backdrop_path": "/aIXcqHz5VKRLXHPsNo0dFoK7YP5.jpg", "poster_path": "/61Jcc1Gwc2KE7sIJ1HPqqdt67ji.jpg", "id": 103372, "name": "Mr. Bean Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118689", "adult": false, "backdrop_path": "/6WytIKEnAT6FX2xffQc4wo6WXcS.jpg", "production_companies": [{"name": "Tiger Aspect Productions", "id": 686}, {"name": "PolyGram Filmed Entertainment", "id": 1382}, {"name": "Working Title Films", "id": 10163}], "release_date": "1997-07-29", "popularity": 0.913342476116229, "original_title": "Bean", "budget": 18000000, "cast": [{"name": "Rowan Atkinson", "character": "Mr. Bean", "id": 10730, "credit_id": "52fe42edc3a36847f802d805", "cast_id": 20, "profile_path": "/2IKeOrTwKlxKur0na88UYUdoDvM.jpg", "order": 0}, {"name": "Peter MacNicol", "character": "David Langley", "id": 12688, "credit_id": "52fe42edc3a36847f802d809", "cast_id": 21, "profile_path": "/ekL1Ko8DLp0ketkwRPr4DoDBfq4.jpg", "order": 1}, {"name": "John Mills", "character": "Chairman", "id": 11859, "credit_id": "52fe42edc3a36847f802d80d", "cast_id": 22, "profile_path": "/5MiJRQj6irdxqCtAhX00YWqmGjZ.jpg", "order": 2}, {"name": "Pamela Reed", "character": "Alison Langley", "id": 14699, "credit_id": "52fe42edc3a36847f802d811", "cast_id": 23, "profile_path": "/lJgMi6Y4OvB8ZTpopFmJ3Efe5Sq.jpg", "order": 3}, {"name": "Harris Yulin", "character": "George Grierson", "id": 1166, "credit_id": "52fe42edc3a36847f802d815", "cast_id": 24, "profile_path": "/MCW4IR3mEB6oeRbX9bfeHkZ3qm.jpg", "order": 4}, {"name": "Burt Reynolds", "character": "General Newton", "id": 16475, "credit_id": "52fe42edc3a36847f802d819", "cast_id": 25, "profile_path": "/n4y5AKTcnKRqBkorcTk24dRy4Zr.jpg", "order": 5}, {"name": "Larry Drake", "character": "Elmer", "id": 16476, "credit_id": "52fe42edc3a36847f802d81d", "cast_id": 26, "profile_path": "/yRtzWEX4wdviO7bV5rH5z4AfGvv.jpg", "order": 6}, {"name": "Danny Goldring", "character": "Security Buck", "id": 16477, "credit_id": "52fe42edc3a36847f802d821", "cast_id": 27, "profile_path": "/nufdKuciAuJ1vzwXnVQcUDeAsoA.jpg", "order": 7}, {"name": "Johnny Galecki", "character": "Stingo Wheelie", "id": 16478, "credit_id": "52fe42edc3a36847f802d825", "cast_id": 28, "profile_path": "/iY3e0Zw5lygRO4BXbhcSxMcPEb9.jpg", "order": 8}, {"name": "Chris Ellis", "character": "Det. Butler", "id": 8191, "credit_id": "52fe42edc3a36847f802d829", "cast_id": 29, "profile_path": "/vbltM7DQXON9xvpiyNuUCglNRmz.jpg", "order": 9}, {"name": "Andrew Lawrence", "character": "Kevin Langley", "id": 16479, "credit_id": "52fe42edc3a36847f802d82d", "cast_id": 30, "profile_path": "/rW9mqQf9KABcEkkaOyeY8F67n16.jpg", "order": 10}, {"name": "Peter Egan", "character": "Lord Walton", "id": 16480, "credit_id": "52fe42edc3a36847f802d831", "cast_id": 31, "profile_path": "/kmJJEd3MXSXzbRACya76avqSB8w.jpg", "order": 11}, {"name": "Peter Capaldi", "character": "Gareth", "id": 12982, "credit_id": "52fe42edc3a36847f802d835", "cast_id": 32, "profile_path": "/elySeUbCxDkBq83GwinPnfcLs5t.jpg", "order": 12}, {"name": "June Brown", "character": "Delilah", "id": 16481, "credit_id": "52fe42edc3a36847f802d839", "cast_id": 33, "profile_path": null, "order": 13}, {"name": "Peter James", "character": "Dr. Rosenblum", "id": 16482, "credit_id": "52fe42edc3a36847f802d83d", "cast_id": 34, "profile_path": null, "order": 14}], "directors": [{"name": "Mel Smith", "department": "Directing", "job": "Director", "credit_id": "52fe42edc3a36847f802d843", "profile_path": "/WutScDw47AhIIErXEZtmI5KvGh.jpg", "id": 141450}], "vote_average": 6.5, "runtime": 85}, "39513": {"poster_path": "/297N75COL0NsJJY5k5U8VTJ1DCe.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97552050, "overview": "For the past 60 years, a space-traveling smart-ass named Paul has been locked up in a top-secret military base, advising world leaders about his kind. But when he worries he\u2019s outlived his usefulness and the dissection table is drawing uncomfortably close, Paul escapes on the first RV that passes by his compound in Area 51. Fortunately, it contains the two earthlings who are most likely to rescue and harbor an alien on the run.", "video": false, "id": 39513, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}], "title": "Paul", "tagline": "Who's up for a close encounter?", "vote_count": 501, "homepage": "http://paulthemovie.co.uk/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1092026", "adult": false, "backdrop_path": "/mFSmjVtZ9hsU8RQm4Cda3fG7SaD.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Working Title Films", "id": 10163}, {"name": "Big Talk Productions", "id": 443}], "release_date": "2011-03-17", "popularity": 0.589428577988997, "original_title": "Paul", "budget": 40000000, "cast": [{"name": "Simon Pegg", "character": "Graeme Willy", "id": 11108, "credit_id": "52fe47219251416c9106af3b", "cast_id": 6, "profile_path": "/onE8N8YciZtSO8hv8TBA6fRpB5b.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Paul (voice)", "id": 19274, "credit_id": "52fe47219251416c9106af27", "cast_id": 1, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Nick Frost", "character": "Clive Gollings", "id": 11109, "credit_id": "52fe47219251416c9106af47", "cast_id": 10, "profile_path": "/33zuHnAnM1aiUbDZX84GR7UQjTa.jpg", "order": 2}, {"name": "Jane Lynch", "character": "Pat Stevenson", "id": 43775, "credit_id": "52fe47219251416c9106af2b", "cast_id": 2, "profile_path": "/2VpBBY7qFGomxEg7oqw5Gt3HD30.jpg", "order": 3}, {"name": "Kristen Wiig", "character": "Ruth Buggs", "id": 41091, "credit_id": "52fe47219251416c9106af2f", "cast_id": 3, "profile_path": "/x5avlvpHlBGGLhzbzuSfmOsMGlw.jpg", "order": 4}, {"name": "Jason Bateman", "character": "Special Agent Lorenzo Zoil", "id": 23532, "credit_id": "52fe47219251416c9106af33", "cast_id": 4, "profile_path": "/ttzLpjvcLkvXyyTBpjmZw11tjlr.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "Tara", "id": 10205, "credit_id": "52fe47219251416c9106af37", "cast_id": 5, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Bill Hader", "character": "Haggard", "id": 19278, "credit_id": "52fe47219251416c9106af3f", "cast_id": 7, "profile_path": "/3Z5JsyLw7YTLZgpA3FAlLmFSN9F.jpg", "order": 7}, {"name": "Blythe Danner", "character": "Tara Walton", "id": 10401, "credit_id": "52fe47219251416c9106af43", "cast_id": 9, "profile_path": "/oYwkfnIyacysbdkmzvi7QG75XsO.jpg", "order": 8}, {"name": "Jeffrey Tambor", "character": "Adam Shadowchild", "id": 4175, "credit_id": "52fe47219251416c9106af5d", "cast_id": 14, "profile_path": "/csB350am07xyRL5Ik1BWuSY12tH.jpg", "order": 9}, {"name": "Steven Spielberg", "character": "Himself", "id": 488, "credit_id": "52fe47219251416c9106af61", "cast_id": 15, "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "order": 10}, {"name": "David Koechner", "character": "Gus", "id": 28638, "credit_id": "52fe47219251416c9106af65", "cast_id": 16, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 11}, {"name": "Jennifer Granger", "character": "Adam Shadowchild Fan", "id": 223176, "credit_id": "52fe47219251416c9106af69", "cast_id": 17, "profile_path": null, "order": 12}, {"name": "Joe Lo Truglio", "character": "O'Reilly", "id": 21131, "credit_id": "52fe47219251416c9106b009", "cast_id": 44, "profile_path": "/uffxrZs4FieVu7pxneSzSxFAwXe.jpg", "order": 13}], "directors": [{"name": "Greg Mottola", "department": "Directing", "job": "Director", "credit_id": "52fe47219251416c9106af4d", "profile_path": "/dC1BKEyTzgTqqy8c5MmSZrRLhNR.jpg", "id": 54733}], "vote_average": 6.4, "runtime": 104}, "65057": {"poster_path": "/5lpBvuPNaPiOpitehczWmJgf6wb.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177243185, "overview": "With his wife Elizabeth on life support after a boating accident, Hawaiian land baron Matt King takes his daughters on a trip from Oahu to Kauai to confront the young real estate broker, who was having an affair with Elizabeth before her misfortune.", "video": false, "id": 65057, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "The Descendants", "tagline": "The South Pacific ain't that terrific.", "vote_count": 307, "homepage": "http://www.foxsearchlight.com/thedescendants/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1033575", "adult": false, "backdrop_path": "/hqz7LxiEATVXgJZMWIHsnbLLAI5.jpg", "production_companies": [{"name": "Dune Entertainment", "id": 444}, {"name": "Fox Searchlight Pictures", "id": 43}, {"name": "Ad Hominem Enterprises", "id": 2361}], "release_date": "2011-11-18", "popularity": 1.09076112740501, "original_title": "The Descendants", "budget": 20000000, "cast": [{"name": "George Clooney", "character": "Matt King", "id": 1461, "credit_id": "52fe46fac3a368484e0ae7fd", "cast_id": 3, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 0}, {"name": "Shailene Woodley", "character": "Alexandra", "id": 94185, "credit_id": "52fe46fac3a368484e0ae809", "cast_id": 6, "profile_path": "/xpwPgCdJZsByrgk41rzRdDKhRp2.jpg", "order": 1}, {"name": "Amara Miller", "character": "Scottie King", "id": 933002, "credit_id": "52fe46fac3a368484e0ae829", "cast_id": 14, "profile_path": "/dmDydvWXHTtWucrXizOTOYV5SKv.jpg", "order": 2}, {"name": "Nick Krause", "character": "Sid", "id": 931945, "credit_id": "52fe46fac3a368484e0ae825", "cast_id": 13, "profile_path": "/1UYyquycT8qGioKPRYNNKXLtlqJ.jpg", "order": 3}, {"name": "Robert Forster", "character": "Scott Thorson", "id": 5694, "credit_id": "52fe46fac3a368484e0ae811", "cast_id": 8, "profile_path": "/82v4FngEiGvtTHQm399t6eaLfXw.jpg", "order": 4}, {"name": "Judy Greer", "character": "Julie Speer", "id": 20750, "credit_id": "52fe46fac3a368484e0ae801", "cast_id": 4, "profile_path": "/qVVXXojIwHSsBhos9rF7v59tDJf.jpg", "order": 5}, {"name": "Beau Bridges", "character": "Cousin Hugh", "id": 2222, "credit_id": "52fe46fac3a368484e0ae80d", "cast_id": 7, "profile_path": "/xv6sDCHxHvBgCK4y96H32kxgcdr.jpg", "order": 6}, {"name": "Matthew Lillard", "character": "Brian", "id": 26457, "credit_id": "52fe46fac3a368484e0ae805", "cast_id": 5, "profile_path": "/gJsQkX20g0ABquHqVpBJzMXR2JF.jpg", "order": 7}, {"name": "Rob Huebel", "character": "Mark Mitchell", "id": 80595, "credit_id": "52fe46fac3a368484e0ae819", "cast_id": 10, "profile_path": "/6K920Xd0JcDoNcBZBOjn0WG4JP2.jpg", "order": 9}, {"name": "Mary Birdsong", "character": "Kai Mitchell", "id": 63232, "credit_id": "52fe46fac3a368484e0ae81d", "cast_id": 11, "profile_path": "/oBXCCLgt3q2KDVQ7Ge6BWANJHZz.jpg", "order": 10}, {"name": "Patricia Hastie", "character": "Elizabeth King", "id": 1356143, "credit_id": "53f90861c3a3687352001c9d", "cast_id": 29, "profile_path": null, "order": 14}, {"name": "Kim Gennaula", "character": "School Counselor", "id": 1394479, "credit_id": "54808a109251416e6c0029c1", "cast_id": 30, "profile_path": null, "order": 15}, {"name": "Grace A. Cruz", "character": "Scottie's Teacher", "id": 1394480, "credit_id": "54808a36c3a36829ae002a91", "cast_id": 31, "profile_path": null, "order": 16}, {"name": "Karen Kuioka Hironaga", "character": "Barb Higgins", "id": 1394481, "credit_id": "54808a5fc3a36829b5003658", "cast_id": 32, "profile_path": null, "order": 17}, {"name": "Carmen Kaichi", "character": "Lani Higgins", "id": 1394482, "credit_id": "54808a78c3a36829b2003621", "cast_id": 33, "profile_path": null, "order": 18}, {"name": "Matt Corboy", "character": "Cousin Ralph", "id": 111451, "credit_id": "54808aabc3a36829a3002dd2", "cast_id": 34, "profile_path": null, "order": 19}, {"name": "Michael Ontkean", "character": "Cousin Milo", "id": 6678, "credit_id": "54808acf9251416e6c0029e9", "cast_id": 35, "profile_path": "/iaBrgD96YOPbjx6sQF8NiL1TA8e.jpg", "order": 20}], "directors": [{"name": "Alexander Payne", "department": "Directing", "job": "Director", "credit_id": "52fe46fac3a368484e0ae7f3", "profile_path": "/i9i7sV3XOGGBp0vKmE2estQBiT2.jpg", "id": 13235}], "vote_average": 6.5, "runtime": 115}, "106021": {"poster_path": "/cSyFaSCdauIsmHoAwDaeVehkTqA.jpg", "production_countries": [{"iso_3166_1": "BE", "name": "Belgium"}, {"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A former agent (Aaron Eckhart) of the CIA and his estranged daughter (Liana Liberato) go on the run after his employers target them for assassination.", "video": false, "id": 106021, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "Erased", "tagline": "Far from home. Far from safe. Far from over.", "vote_count": 105, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1645155", "adult": false, "backdrop_path": "/fG8Ghq7POTd3h0fRBCMJ40frvX0.jpg", "production_companies": [{"name": "Informant Europe SPRL", "id": 48191}, {"name": "uFilm", "id": 8676}, {"name": "Informant Media", "id": 9325}, {"name": "Entertainment Motion Pictures", "id": 18302}, {"name": "Umedia", "id": 19037}, {"name": "uFund", "id": 22127}, {"name": "Le Tax Shelter du Gouvernement F\u00e9d\u00e9ral de Belgique", "id": 33960}, {"name": "Essential Entertainment", "id": 46381}, {"name": "Expatriate Films", "id": 48185}, {"name": "Smash Media", "id": 48186}, {"name": "Transfilm", "id": 48188}, {"name": "National Bank of Canada TV and Motion Picture Group", "id": 48189}], "release_date": "2012-09-26", "popularity": 0.514226140124127, "original_title": "Erased", "budget": 12000000, "cast": [{"name": "Olga Kurylenko", "character": "Anna Brandt", "id": 18182, "credit_id": "52fe4a5dc3a36847f81c9c09", "cast_id": 7, "profile_path": "/8jqQXZ90lxE842F0slFRzNlCdsW.jpg", "order": 0}, {"name": "Aaron Eckhart", "character": "Ben Logan", "id": 6383, "credit_id": "52fe4a5dc3a36847f81c9c0d", "cast_id": 8, "profile_path": "/aRSofX2rMpOhPanB9Wh7veYmFn4.jpg", "order": 1}, {"name": "Liana Liberato", "character": "Amy", "id": 60458, "credit_id": "52fe4a5dc3a36847f81c9c11", "cast_id": 9, "profile_path": "/qNfYhqaudHwclYkiVwryMRGJX8e.jpg", "order": 2}, {"name": "Kate Linder", "character": "Principal Gibbins", "id": 1039359, "credit_id": "52fe4a5dc3a36847f81c9c15", "cast_id": 10, "profile_path": null, "order": 3}, {"name": "Neil Napier", "character": "Derek Kohler", "id": 105496, "credit_id": "52fe4a5dc3a36847f81c9c19", "cast_id": 11, "profile_path": "/irI0HpejL0ugHpyQxvUJ665bhaU.jpg", "order": 4}, {"name": "Eric Godon", "character": "Maitland", "id": 145299, "credit_id": "52fe4a5dc3a36847f81c9c1d", "cast_id": 12, "profile_path": "/iKWCAMxgHIWoJ1EJG4gWKEPYxbE.jpg", "order": 5}, {"name": "Garrick Hagon", "character": "James Halgate III", "id": 17356, "credit_id": "52fe4a5dc3a36847f81c9c21", "cast_id": 13, "profile_path": "/lZYitsCPzlwevNuHzqaSZMQiuUa.jpg", "order": 6}, {"name": "Yassine Fadel", "character": "Nabil", "id": 1157010, "credit_id": "54fdb9e6925141237d004ee3", "cast_id": 40, "profile_path": null, "order": 7}, {"name": "Alexander Fehling", "character": "Floyd", "id": 31663, "credit_id": "54fdba1c925141237d004ee8", "cast_id": 41, "profile_path": "/h6nkEsHxdoV1gQAqJr5OfOp855k.jpg", "order": 8}, {"name": "Fabrice Boutique", "character": "Karim", "id": 1130187, "credit_id": "54fdba409251412204004dfd", "cast_id": 42, "profile_path": null, "order": 9}], "directors": [{"name": "Philipp St\u00f6lzl", "department": "Directing", "job": "Director", "credit_id": "52fe4a5dc3a36847f81c9be7", "profile_path": null, "id": 113500}], "vote_average": 5.5, "runtime": 100}, "97434": {"poster_path": "/5eFWMeUc7C4tpqx7iZP4JBesiUm.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "An art curator decides to seek revenge on his abusive boss by conning him into buying a fake Monet, but his plan requires the help of an eccentric and unpredictable Texas rodeo queen.", "video": false, "id": 97434, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Gambit", "tagline": "A fake masterpiece. The perfect plan.", "vote_count": 70, "homepage": "http://monetgame.gaga.ne.jp/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0404978", "adult": false, "backdrop_path": "/ttY8YjVevl300qJOJ5GCMAXnDpM.jpg", "production_companies": [{"name": "Air-Edel Associates", "id": 12934}, {"name": "Michael Lobell Productions", "id": 13473}, {"name": "Crime Scene Pictures", "id": 13472}], "release_date": "2012-11-07", "popularity": 1.36466669961603, "original_title": "Gambit", "budget": 0, "cast": [{"name": "Stanley Tucci", "character": "Martin Zaidenweber", "id": 2283, "credit_id": "52fe49e09251416c750d636b", "cast_id": 2, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 0}, {"name": "Cameron Diaz", "character": "PJ Puznowski", "id": 6941, "credit_id": "52fe49e09251416c750d636f", "cast_id": 3, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 1}, {"name": "Alan Rickman", "character": "Lionel Shahbandar", "id": 4566, "credit_id": "52fe49e09251416c750d6373", "cast_id": 4, "profile_path": "/q7cZwS6CrGKegJltNwaBY5ZaWCK.jpg", "order": 2}, {"name": "Colin Firth", "character": "Harry Deane", "id": 5472, "credit_id": "52fe49e09251416c750d6377", "cast_id": 5, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 3}, {"name": "Cloris Leachman", "character": "Grandma Merle", "id": 9599, "credit_id": "52fe49e09251416c750d6393", "cast_id": 10, "profile_path": "/nDcQ6O4s5DuDrWsOKwT3r28B993.jpg", "order": 4}, {"name": "Tom Courtenay", "character": "The Major", "id": 14011, "credit_id": "52fe49e09251416c750d6397", "cast_id": 11, "profile_path": "/4FJn6uoL4rXwtJLJstS3yUYiXi7.jpg", "order": 5}, {"name": "Alex MacQueen", "character": "Mr. Dunlop", "id": 126042, "credit_id": "53b597640e0a2676d30032c2", "cast_id": 12, "profile_path": null, "order": 6}, {"name": "Joe Berryman", "character": "Gas Station Cashier", "id": 1179344, "credit_id": "53b597750e0a2676cf0032c2", "cast_id": 13, "profile_path": null, "order": 7}, {"name": "Anna Skellern", "character": "Secretary Fiona", "id": 112894, "credit_id": "53b597850e0a2676cb0032ba", "cast_id": 14, "profile_path": "/A1jx4awTisdd7UIXF53SvXWvHNX.jpg", "order": 8}], "directors": [{"name": "Michael Hoffman", "department": "Directing", "job": "Director", "credit_id": "52fe49e09251416c750d6367", "profile_path": "/xrMI8tNQgHws3o3Ku5cdH3ayXZx.jpg", "id": 52405}], "vote_average": 5.0, "runtime": 89}, "7735": {"poster_path": "/h3FL7Un5LA5dAbg0AoRNjeWvsTK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}], "revenue": 19000000, "overview": "A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.", "video": false, "id": 7735, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Wave", "tagline": "", "vote_count": 131, "homepage": "http://www.welle.film.de/", "belongs_to_collection": null, "original_language": "de", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}], "imdb_id": "tt1063669", "adult": false, "backdrop_path": "/2hFGKZG8G5L22O5que802vUEXF1.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}], "release_date": "2008-03-11", "popularity": 0.343842001404485, "original_title": "Die Welle", "budget": 7500000, "cast": [{"name": "J\u00fcrgen Vogel", "character": "Rainer Wenger", "id": 17373, "credit_id": "52fe4484c3a36847f809aadb", "cast_id": 10, "profile_path": "/6YSNLd5gKHqDua5Qm2kCNOoU6GL.jpg", "order": 0}, {"name": "Frederick Lau", "character": "Tim", "id": 49767, "credit_id": "52fe4484c3a36847f809aadf", "cast_id": 11, "profile_path": "/pVxIeHlFhwFcJqMDClw85HyAwTg.jpg", "order": 1}, {"name": "Max Riemelt", "character": "Marco", "id": 38773, "credit_id": "52fe4484c3a36847f809aae3", "cast_id": 12, "profile_path": "/xEcdqLYpebm2Bv9zEUG0f8oIi6N.jpg", "order": 2}, {"name": "Jennifer Ulrich", "character": "Karo", "id": 692, "credit_id": "52fe4484c3a36847f809aae7", "cast_id": 13, "profile_path": "/zMoYwvJhf5CPr1D0kecFyuEjCmo.jpg", "order": 3}, {"name": "Christiane Paul", "character": "Anke Wenger", "id": 1859, "credit_id": "52fe4484c3a36847f809aaeb", "cast_id": 14, "profile_path": "/uDgcUFWHFky6wVRI4vrPJOg9J5D.jpg", "order": 4}, {"name": "Elyas M\u2019Barek", "character": "Sinan", "id": 25409, "credit_id": "52fe4484c3a36847f809aaef", "cast_id": 15, "profile_path": "/Arh8aKvYeJfigN0sAtNWt0GIZRo.jpg", "order": 5}, {"name": "Cristina do Rego", "character": "Lisa", "id": 52964, "credit_id": "52fe4484c3a36847f809aaf3", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Jacob Matschenz", "character": "Dennis", "id": 52722, "credit_id": "52fe4484c3a36847f809aaf7", "cast_id": 17, "profile_path": "/7TjZ9BDZckXx7DvK7BJ6fbQq5oj.jpg", "order": 7}, {"name": "Maximilian Vollmar", "character": "Bomber", "id": 52965, "credit_id": "52fe4484c3a36847f809aafb", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Tim Oliver Schultz", "character": "Jens", "id": 52966, "credit_id": "52fe4484c3a36847f809aaff", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Amelie Kiefer", "character": "Mona", "id": 52967, "credit_id": "52fe4484c3a36847f809ab03", "cast_id": 20, "profile_path": null, "order": 10}, {"name": "Max Mauff", "character": "Kevin", "id": 28432, "credit_id": "52fe4484c3a36847f809ab07", "cast_id": 21, "profile_path": "/crnmgf5GC318od3PqzkMZYzJGOX.jpg", "order": 11}, {"name": "Fabian Preger", "character": "Kaschi", "id": 55042, "credit_id": "52fe4484c3a36847f809ab0b", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Ferdinand Schmidt-Modrow", "character": "Ferdi", "id": 23171, "credit_id": "53e020d2c3a3686c56002d91", "cast_id": 23, "profile_path": null, "order": 13}, {"name": "Odine Johne", "character": "Maja", "id": 1327616, "credit_id": "53e02212c3a3686c56002da3", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Tino Mewes", "character": "Sch\u00e4del", "id": 20262, "credit_id": "53e02237c3a3683b57000bc8", "cast_id": 25, "profile_path": null, "order": 15}, {"name": "Karoline Teska", "character": "Miri", "id": 52721, "credit_id": "53e02268c3a3686c5a002ca4", "cast_id": 26, "profile_path": null, "order": 16}, {"name": "Marco Bretscher-Coschignano", "character": "Dominik", "id": 1053732, "credit_id": "53e0228fc3a3686c5d002ed5", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Lennard Bertzbach", "character": "Bommel", "id": 63835, "credit_id": "53e022a6c3a3686c4d002f09", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Tommy Schwimmer", "character": "Maxwell", "id": 1349918, "credit_id": "53e022c0c3a3686c51002de9", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Joseph M'Barek", "character": "Thorben", "id": 5209, "credit_id": "53e024130e0a265a8a0056d1", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Jaime Krsto Ferkic", "character": "Bobby", "id": 1314896, "credit_id": "53e0248dc3a3686c4d002f3a", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Lucas Hardt", "character": "Kulle", "id": 1349919, "credit_id": "53e024dec3a3686c56002deb", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Maren Kroymann", "character": "Dr. Kohlhage", "id": 31444, "credit_id": "53e024fdc3a3686c60002c19", "cast_id": 33, "profile_path": "/wWay4ofbGxSwfvOlPbWf0onAHmb.jpg", "order": 23}, {"name": "Teresa Harder", "character": "Karo's Mutter", "id": 588317, "credit_id": "53e02524c3a3686c56002df4", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Thomas Sarbacher", "character": "Karo's Vater", "id": 38609, "credit_id": "53e02541c3a3683fc0000b36", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Alexander Held", "character": "Tim's Vater", "id": 21743, "credit_id": "53e02563c3a3686c4d002f4a", "cast_id": 36, "profile_path": "/v8uTi2CO4eiZ1ofWHHDrrcI9pcG.jpg", "order": 26}, {"name": "Johanna Gastdorf", "character": "Tim's Mutter", "id": 18035, "credit_id": "53e0257dc3a3686c5a002ceb", "cast_id": 37, "profile_path": "/dzVe2SqKBkV4XV1oEmq83vZjv1s.jpg", "order": 27}, {"name": "Friederike Wagner", "character": "Marco's Mutter", "id": 1284699, "credit_id": "53e025b2c3a3686c5d002f21", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Hubert Mulzer", "character": "Dieter Wieland", "id": 4539, "credit_id": "53e025cdc3a3686c4d002f5a", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Dennis Gansel", "character": "Martin", "id": 52961, "credit_id": "53e025f9c3a3686c51002e3e", "cast_id": 40, "profile_path": "/ak21eoJx8goGPPct6IdJqTTN9fi.jpg", "order": 30}], "directors": [{"name": "Dennis Gansel", "department": "Directing", "job": "Director", "credit_id": "52fe4484c3a36847f809aab3", "profile_path": "/ak21eoJx8goGPPct6IdJqTTN9fi.jpg", "id": 52961}], "vote_average": 7.4, "runtime": 107}, "7737": {"poster_path": "/3sAiP55j0souKMCYlo5wmwWAgaG.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 147717833, "overview": "Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.", "video": false, "id": 7737, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Resident Evil: Extinction", "tagline": "The Extinction Is Coming...", "vote_count": 510, "homepage": "http://www.sonypictures.com/movies/residentevilextinction/index.html", "belongs_to_collection": {"backdrop_path": "/y83tkkjfLSEFSjZfle814aJL2tL.jpg", "poster_path": "/bqnMPsZr9vhjJIwLxc3XzHkYORM.jpg", "id": 17255, "name": "Resident Evil Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0432021", "adult": false, "backdrop_path": "/mjQoekfYIT1t18j9hf2JSZEi60Y.jpg", "production_companies": [{"name": "Constantin Film Produktion", "id": 5755}, {"name": "Impact Pictures", "id": 248}, {"name": "Davis-Films", "id": 342}], "release_date": "2007-09-21", "popularity": 0.44864176551016, "original_title": "Resident Evil: Extinction", "budget": 45000000, "cast": [{"name": "Milla Jovovich", "character": "Alice", "id": 63, "credit_id": "52fe4484c3a36847f809abcb", "cast_id": 1, "profile_path": "/mcNgLarIVho7LheWcvd1oQ2tBOg.jpg", "order": 0}, {"name": "Oded Fehr", "character": "Carlos Olivera", "id": 18041, "credit_id": "52fe4484c3a36847f809abcf", "cast_id": 2, "profile_path": "/wPeeUd4AzWG0JNmS0okWsWADgps.jpg", "order": 1}, {"name": "Ali Larter", "character": "Claire Redfield", "id": 17303, "credit_id": "52fe4484c3a36847f809abd3", "cast_id": 3, "profile_path": "/4MVvnnOcZYb7rxfZQnK2EPDhokW.jpg", "order": 2}, {"name": "Iain Glen", "character": "Dr. Isaacs", "id": 20508, "credit_id": "52fe4484c3a36847f809abd7", "cast_id": 4, "profile_path": "/s7NjqBgdc52HUxDTWH5Iq2qIX95.jpg", "order": 3}, {"name": "Mike Epps", "character": "L.J.", "id": 51944, "credit_id": "52fe4484c3a36847f809abdb", "cast_id": 5, "profile_path": "/64S9zCFVzHoloRSzd7yd0covlhC.jpg", "order": 4}, {"name": "Ashanti", "character": "Betty", "id": 57172, "credit_id": "52fe4484c3a36847f809ac21", "cast_id": 17, "profile_path": "/lN5YrFFhCmxvX22Ts9hmzTMYblY.jpg", "order": 5}, {"name": "Spencer Locke", "character": "K-Mart", "id": 57192, "credit_id": "52fe4484c3a36847f809ac29", "cast_id": 19, "profile_path": "/uL0lS5BSDev5AN9otzI2Wwk5ptb.jpg", "order": 7}, {"name": "Matthew Marsden", "character": "Slater", "id": 12793, "credit_id": "52fe4484c3a36847f809ac2d", "cast_id": 20, "profile_path": "/4vsXCzUknnPmadfp9qVtbaO34NP.jpg", "order": 8}, {"name": "Linden Ashby", "character": "Chaser", "id": 57251, "credit_id": "52fe4484c3a36847f809ac31", "cast_id": 21, "profile_path": "/sKcRZFXk4o9Y2373s9oofm93NRU.jpg", "order": 9}, {"name": "Jason O'Mara", "character": "Albert Wesker", "id": 183812, "credit_id": "52fe4484c3a36847f809ac35", "cast_id": 22, "profile_path": "/wVzetn8ZGsTp09NAtFGLUAPt2I1.jpg", "order": 10}, {"name": "Joe Hursley", "character": "Otto", "id": 59264, "credit_id": "52fe4484c3a36847f809ac39", "cast_id": 23, "profile_path": "/euZBX3gW18tpEVaInzq06K4BjhK.jpg", "order": 11}, {"name": "James Tumminia", "character": "Lab Tech", "id": 74500, "credit_id": "52fe4484c3a36847f809ac3d", "cast_id": 24, "profile_path": "/i5CkGRP2JgJaicddxUqD66cS0hX.jpg", "order": 12}, {"name": "Madeline Carroll", "character": "White Queen", "id": 62564, "credit_id": "52fe4484c3a36847f809ac41", "cast_id": 25, "profile_path": "/ghaTBkwT07D8XF6SK4jpP0rxIo9.jpg", "order": 13}, {"name": "Christopher Egan", "character": "", "id": 1312315, "credit_id": "55226591c3a3685733000fe8", "cast_id": 37, "profile_path": "/bheD2SRyi1UtAC6VXBj2K9fNZ0C.jpg", "order": 14}], "directors": [{"name": "Russell Mulcahy", "department": "Directing", "job": "Director", "credit_id": "52fe4484c3a36847f809abe1", "profile_path": "/jScppFv3bbozdAdIPUQ8vp4GbnG.jpg", "id": 52968}], "vote_average": 6.1, "runtime": 94}, "24122": {"poster_path": "/nkkFebe8ZgE843rnTrlaRWJy0g9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Sandy, upon discovering her husband's infidelity while watching her son's birthday video, leaves the suburbs and moves into the city. She gets an apartment that's above a coffee house where she befriends one of the workers, Aram, a guy whose wife only married him so she could get a green card. Aram's family thinks he's wasting his life and education by working in the coffee house. Soon after moving into the apartment, Sandy hires Aram to be her nanny while she takes on work for the first time since her children where born. It isn't long when Aram and Sandy find they get along wonderfully and start to date. But the question is: is their relationship real or is it, in fact, just a rebound for both of them?", "video": false, "id": 24122, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "The Rebound", "tagline": "She's still got it. He's just getting it.", "vote_count": 50, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1205535", "adult": false, "backdrop_path": "/tHskgc02jDVnhsPSmPpfEZeLL5v.jpg", "production_companies": [{"name": "Film Department, The", "id": 5257}], "release_date": "2009-09-16", "popularity": 0.382589409652531, "original_title": "The Rebound", "budget": 0, "cast": [{"name": "Catherine Zeta-Jones", "character": "Sandy", "id": 1922, "credit_id": "52fe4483c3a368484e027585", "cast_id": 1, "profile_path": "/3qDN8It9ulUqpOqkxJgW0WnWFho.jpg", "order": 0}, {"name": "Justin Bartha", "character": "Aram Finklestein", "id": 21180, "credit_id": "52fe4483c3a368484e027589", "cast_id": 2, "profile_path": "/kOBxD9EM0TknwSGnrcdedNWlaTH.jpg", "order": 1}, {"name": "Art Garfunkel", "character": "Harry Finklestein", "id": 64928, "credit_id": "52fe4483c3a368484e0275c3", "cast_id": 14, "profile_path": "/kGbVVEfv7e0O4SjXebP7NfUHXon.jpg", "order": 2}, {"name": "Joanna Gleason", "character": "Roberta Finklestein", "id": 20747, "credit_id": "52fe4483c3a368484e0275c7", "cast_id": 15, "profile_path": "/a2ChI2mBmCtGQpDuhWLicXxnRHa.jpg", "order": 3}, {"name": "Lynn Whitfield", "character": "Laura Reilly", "id": 16217, "credit_id": "52fe4483c3a368484e02759b", "cast_id": 6, "profile_path": "/7NELeIc5qIwSuAKG3Riq0CN2F7t.jpg", "order": 4}, {"name": "Andrew Cherry", "character": "Frank Jr. (Age 7)", "id": 150656, "credit_id": "52fe4483c3a368484e0275cb", "cast_id": 16, "profile_path": null, "order": 6}, {"name": "Kate Jennings Grant", "character": "Daphne", "id": 59697, "credit_id": "52fe4483c3a368484e0275cf", "cast_id": 17, "profile_path": "/uSSYOqIgkxH3cFLWYLwbEaF0rbY.jpg", "order": 7}, {"name": "Rob Kerkovich", "character": "Mitch", "id": 150209, "credit_id": "52fe4483c3a368484e0275d3", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "John Schneider", "character": "Trevor", "id": 55779, "credit_id": "52fe4483c3a368484e0275d7", "cast_id": 19, "profile_path": "/jRKj9EVJTiedOeSYpN6uNOwGbsD.jpg", "order": 9}, {"name": "Sam Robards", "character": "Frank", "id": 8213, "credit_id": "52fe4483c3a368484e0275db", "cast_id": 20, "profile_path": "/xBfl2c80eQtbjKTH6dOwFBnFlE7.jpg", "order": 10}, {"name": "Alice Playten", "character": "Sensei Dana", "id": 80165, "credit_id": "52fe4483c3a368484e0275df", "cast_id": 21, "profile_path": "/oRaMq0i9PI64VKPVivVe0xCPDKB.jpg", "order": 11}, {"name": "Stephanie Szostak", "character": "Alice Marnier", "id": 121953, "credit_id": "52fe4483c3a368484e027593", "cast_id": 4, "profile_path": "/teo7hFo9EDifydLpPgV4ih2Bd0h.jpg", "order": 12}, {"name": "Kelly Gould ", "character": "Sandy young", "id": 928330, "credit_id": "54a086ce9251411d53005a8a", "cast_id": 22, "profile_path": null, "order": 13}], "directors": [{"name": "Bart Freundlich", "department": "Directing", "job": "Director", "credit_id": "52fe4483c3a368484e02758f", "profile_path": null, "id": 86203}], "vote_average": 5.8, "runtime": 95}, "65086": {"poster_path": "/sJ1jGUTMYijpQ4TryTvnC5SkQ4N.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 0, "overview": "The story follows a young lawyer, Arthur Kipps, who is ordered to travel to a remote village and sort out a recently deceased client\u2019s papers. As he works alone in the client\u2019s isolated house, Kipps begins to uncover tragic secrets, his unease growing when he glimpses a mysterious woman dressed only in black. Receiving only silence from the locals, Kipps is forced to uncover the true identity of the Woman in Black on his own, leading to a desperate race against time when he discovers her true identity.", "video": false, "id": 65086, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Woman in Black", "tagline": "What did they see?", "vote_count": 298, "homepage": "http://womaninblack.com/", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/aWMxfo5LEWkL5o4xpQcLVsbcmNp.jpg", "id": 315560, "name": "The Woman in Black Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1596365", "adult": false, "backdrop_path": "/2kUeyJW0ErqMmUjfJJ73sKAXcRD.jpg", "production_companies": [{"name": "Exclusive Media Group", "id": 11448}, {"name": "Hammer Film Productions", "id": 1314}, {"name": "UK Film Council", "id": 2452}, {"name": "Alliance Films", "id": 2514}, {"name": "Film i V\u00e4st", "id": 6417}, {"name": "Talisman Productions", "id": 8989}, {"name": "Cross Creek Pictures", "id": 10246}, {"name": "Filmgate Films", "id": 18230}], "release_date": "2012-02-01", "popularity": 0.748082920145663, "original_title": "The Woman in Black", "budget": 17000000, "cast": [{"name": "Daniel Radcliffe", "character": "Arthur Kipps", "id": 10980, "credit_id": "52fe46fcc3a368484e0aedd3", "cast_id": 2, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Ciar\u00e1n Hinds", "character": "Mr. Daily", "id": 8785, "credit_id": "52fe46fcc3a368484e0aedd7", "cast_id": 3, "profile_path": "/jxJOlvGwg2X5NjAiaiO8Hf0W60W.jpg", "order": 1}, {"name": "Sidney Johnston", "character": "Nicholas Daily", "id": 202360, "credit_id": "52fe46fcc3a368484e0aeddf", "cast_id": 6, "profile_path": "/aoNlKHmhTFN49mtI5Mz2oz41WRb.jpg", "order": 3}, {"name": "Alisa Khazanova", "character": "Alice", "id": 934737, "credit_id": "52fe46fcc3a368484e0aede3", "cast_id": 7, "profile_path": "/gmgZ5Q6EBjSuPpDMTIib3ewBCkv.jpg", "order": 4}, {"name": "Mary Stockley", "character": "Mrs. Fisher", "id": 40672, "credit_id": "52fe46fcc3a368484e0aede7", "cast_id": 8, "profile_path": "/duzAifGRp5avCoefoDapemvBL3h.jpg", "order": 5}, {"name": "Alfie Field ", "character": "Tom Hardy", "id": 582938, "credit_id": "52fe46fcc3a368484e0aedeb", "cast_id": 9, "profile_path": "/gx3C4HViVVRj4ggruNBUaPO57NI.jpg", "order": 6}, {"name": "Roger Allam", "character": "Mr. Bentley", "id": 11279, "credit_id": "52fe46fcc3a368484e0aedef", "cast_id": 10, "profile_path": "/gr59GfVZz9QV6jZyHKOsKCBxXPr.jpg", "order": 7}, {"name": "Sophie Stuckey", "character": "Stella Kipps", "id": 56, "credit_id": "52fe46fcc3a368484e0aedf3", "cast_id": 11, "profile_path": "/detvecq2YxaCYeG6EhHCMdprQbK.jpg", "order": 8}, {"name": "Shaun Dooley", "character": "Fisher", "id": 85071, "credit_id": "52fe46fcc3a368484e0aedf7", "cast_id": 12, "profile_path": "/3jFprpFHI3pYPAXW6cxMevf8u7D.jpg", "order": 9}, {"name": "Liz White", "character": "Jennet Humfrye", "id": 90046, "credit_id": "52fe46fcc3a368484e0aedfb", "cast_id": 13, "profile_path": "/g5MwaqoKPy0lRPff7BaXgteiGUX.jpg", "order": 10}, {"name": "Victor McGuire", "character": "Gerald Hardy", "id": 4318, "credit_id": "52fe46fcc3a368484e0aedff", "cast_id": 14, "profile_path": "/czEQ0XdYIURxBfdiAdGXS6KAWea.jpg", "order": 11}, {"name": "Tim McMullan", "character": "Mr. Jerome", "id": 15740, "credit_id": "52fe46fcc3a368484e0aee03", "cast_id": 15, "profile_path": "/8se9JhmD9LE6tiibkGiV51M8rdD.jpg", "order": 12}, {"name": "Daniel Cerqueira", "character": "Keckwick", "id": 75071, "credit_id": "52fe46fcc3a368484e0aee07", "cast_id": 16, "profile_path": "/edu1hN9hzKm76wwsq1ri09WhxCB.jpg", "order": 13}, {"name": "Janet McTeer", "character": "Mrs. Daily", "id": 47627, "credit_id": "52fe46fcc3a368484e0aee29", "cast_id": 23, "profile_path": "/fVxhoT9udQl9UFXe3qa9cbUq3h4.jpg", "order": 14}, {"name": "David Burke", "character": "PC Collins", "id": 1220099, "credit_id": "532084d49251411f8900163e", "cast_id": 24, "profile_path": "/chZOTgwqyUiD4DgIM392L1mR1kM.jpg", "order": 15}], "directors": [{"name": "James Watkins", "department": "Directing", "job": "Director", "credit_id": "52fe46fcc3a368484e0aedcf", "profile_path": null, "id": 63306}], "vote_average": 6.1, "runtime": 95}, "138832": {"poster_path": "/4Ujmqx7BTaRLBHVmeTe7aj6qSsA.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 269994119, "overview": "A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.", "video": false, "id": 138832, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "We're the Millers", "tagline": "-If anyone asks.", "vote_count": 952, "homepage": "http://werethemillers.warnerbros.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 297923, "name": "We're the Millers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1723121", "adult": false, "backdrop_path": "/zq1jEtJCszbQPFMt65QEsjIRTft.jpg", "production_companies": [{"name": "Vincent Newman Entertainment", "id": 17929}, {"name": "New Line Cinema", "id": 12}, {"name": "Newman/Tooley Films", "id": 16791}, {"name": "Slap Happy Productions (II)", "id": 31073}, {"name": "Heyday Films", "id": 7364}, {"name": "BenderSpink", "id": 6363}], "release_date": "2013-08-07", "popularity": 3.8299339609622, "original_title": "We're the Millers", "budget": 37000000, "cast": [{"name": "Jason Sudeikis", "character": "David Clark", "id": 58224, "credit_id": "52fe4c56c3a368484e1b3213", "cast_id": 37, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Rose O'Reilly", "id": 4491, "credit_id": "52fe4c56c3a368484e1b31ab", "cast_id": 8, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Will Poulter", "character": "Kenny Rossmore", "id": 93491, "credit_id": "52fe4c56c3a368484e1b31c3", "cast_id": 16, "profile_path": "/d3wR8o9y9jmTha426ms1m70h0HC.jpg", "order": 2}, {"name": "Emma Roberts", "character": "Casey Mathis", "id": 34847, "credit_id": "52fe4c56c3a368484e1b31af", "cast_id": 10, "profile_path": "/yzf0nMrsxf1LjeFtoIw6Qwh7GpG.jpg", "order": 3}, {"name": "Ed Helms", "character": "Brad Gurdlinger", "id": 27105, "credit_id": "52fe4c56c3a368484e1b31b3", "cast_id": 12, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 4}, {"name": "Nick Offerman", "character": "Donny Fitzgerald", "id": 17039, "credit_id": "52fe4c56c3a368484e1b31b7", "cast_id": 13, "profile_path": "/nr5BJGQX6G6oGEOwd9FPzbpTekr.jpg", "order": 5}, {"name": "Thomas Lennon", "character": "Rick Nathanson", "id": 539, "credit_id": "52fe4c56c3a368484e1b31bb", "cast_id": 14, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 6}, {"name": "Kathryn Hahn", "character": "Edie Fitzgerald", "id": 17696, "credit_id": "52fe4c56c3a368484e1b31bf", "cast_id": 15, "profile_path": "/nud8mW28WZMHKYmxkjDCumbGpTJ.jpg", "order": 7}, {"name": "Molly C. Quinn", "character": "Melissa Fitzgerald", "id": 96349, "credit_id": "52fe4c56c3a368484e1b31c7", "cast_id": 22, "profile_path": "/8i908NzSx5K4LBxxh5qtzLe6U8e.jpg", "order": 8}, {"name": "Tomer Sisley", "character": "Pablo Chacon", "id": 25089, "credit_id": "53fc8a8a0e0a267a7200ab86", "cast_id": 38, "profile_path": "/s6WMMYArYkMibpTrMMBBLfqqT7t.jpg", "order": 9}, {"name": "Matthew Willig", "character": "One-Eye", "id": 92617, "credit_id": "53fc8a9d0e0a267a7500ac7e", "cast_id": 39, "profile_path": "/5ZW9nqkmFnWTIkr4ALNCiHdPt9S.jpg", "order": 10}, {"name": "Luis Guzm\u00e1n", "character": "Mexican Cop", "id": 40481, "credit_id": "53fc8aac0e0a267a6f00ab33", "cast_id": 40, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 11}, {"name": "Thomas Lennon", "character": "Rick Nathanson", "id": 539, "credit_id": "53fc8ac50e0a267a6900aba5", "cast_id": 41, "profile_path": "/zfvelxD8rwYlQC9HNi6dfPK5g71.jpg", "order": 12}, {"name": "Mark L. Young", "character": "Scottie P.", "id": 81197, "credit_id": "53fc8ad30e0a267a7500ac82", "cast_id": 42, "profile_path": "/9CkVCWt1xTVPTJesAdeZygYaBpZ.jpg", "order": 13}, {"name": "Ken Marino", "character": "Todd - Strip Club Owner", "id": 77089, "credit_id": "53fc8ae10e0a267a6f00ab35", "cast_id": 43, "profile_path": "/h0EU4SvG8iCejG6xO0tF3uj6GfI.jpg", "order": 14}, {"name": "Laura-Leigh", "character": "Kymberly", "id": 211539, "credit_id": "53fc8af00e0a267a7500ac85", "cast_id": 44, "profile_path": "/prUO6jOfVx1ZQHaQV4ZZZywCyok.jpg", "order": 15}, {"name": "Vickie Eng", "character": "Hospital Nurse", "id": 208316, "credit_id": "54f09d7dc3a3687be2001a9c", "cast_id": 45, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 16}], "directors": [{"name": "Rawson Marshall Thurber", "department": "Directing", "job": "Director", "credit_id": "52fe4c56c3a368484e1b318f", "profile_path": "/uucsuvXxMFdeoKr4mtL2UV3UUvP.jpg", "id": 57633}], "vote_average": 6.9, "runtime": 110}, "64635": {"poster_path": "/tWBo7aZk3I1dLxmMj7ZJcN8uke5.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 198802074, "overview": "Welcome to Rekall, the company that can turn your dreams into real memories. For a factory worker named Douglas Quaid, even though he's got a beautiful wife who he loves, the mind-trip sounds like the perfect vacation from his frustrating life - real memories of life as a super-spy might be just what he needs. But when the procedure goes horribly wrong, Quaid becomes a hunted man. Finding himself on the run from the police - controlled by Chancellor Cohaagen, the leader of the free world - Quaid teams up with a rebel fighter to find the head of the underground resistance and stop Cohaagen. The line between fantasy and reality gets blurred and the fate of his world hangs in the balance as Quaid discovers his true identity, his true love, and his true fate.", "video": false, "id": 64635, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Total Recall", "tagline": "What Is Real?", "vote_count": 1341, "homepage": "http://www.welcometorecall.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1386703", "adult": false, "backdrop_path": "/yRaCI0pjb1FGgagYXjg7dV4lkJJ.jpg", "production_companies": [{"name": "Original Film", "id": 333}, {"name": "Rekall Productions", "id": 12676}, {"name": "Prime Focus", "id": 15357}], "release_date": "2012-08-03", "popularity": 1.12375477201766, "original_title": "Total Recall", "budget": 125000000, "cast": [{"name": "Colin Farrell", "character": "Doug Quaid/Carl Hauser", "id": 72466, "credit_id": "52fe46e1c3a368484e0a8fb5", "cast_id": 2, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Kate Beckinsale", "character": "Lori Quaid", "id": 3967, "credit_id": "52fe46e1c3a368484e0a8fbd", "cast_id": 4, "profile_path": "/jQoItQzlKokuhWydbwXUGg3i6bX.jpg", "order": 1}, {"name": "Jessica Biel", "character": "Melina", "id": 10860, "credit_id": "52fe46e1c3a368484e0a8fc5", "cast_id": 6, "profile_path": "/g7TNCEgVmrSRg6s1ptZmiOauanT.jpg", "order": 2}, {"name": "Bryan Cranston", "character": "Cohaagen", "id": 17419, "credit_id": "52fe46e1c3a368484e0a8fb9", "cast_id": 3, "profile_path": "/fnglrIFnI5cK4OAh66AZN86mkFq.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Matthias", "id": 2440, "credit_id": "52fe46e1c3a368484e0a8fc1", "cast_id": 5, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "John Cho", "character": "McClane", "id": 68842, "credit_id": "52fe46e1c3a368484e0a8fc9", "cast_id": 7, "profile_path": "/wlA5pkKGun8BS7GjCqXrzthTOk4.jpg", "order": 5}, {"name": "Bokeem Woodbine", "character": "Harry", "id": 71913, "credit_id": "52fe46e1c3a368484e0a8fcd", "cast_id": 8, "profile_path": "/5jxJLgIsEsKwsHSLVjNvMZzs1Mm.jpg", "order": 6}, {"name": "Will Yun Lee", "character": "Marek", "id": 10884, "credit_id": "52fe46e1c3a368484e0a8fe9", "cast_id": 14, "profile_path": "/orVsiiVI869TGclBba3dFGhqetp.jpg", "order": 7}, {"name": "Steve Byers", "character": "Henry Reed", "id": 43292, "credit_id": "52fe46e1c3a368484e0a8fed", "cast_id": 15, "profile_path": "/idVVOo2FaOTK2EMBNy34Pesqi4H.jpg", "order": 8}, {"name": "Currie Graham", "character": "Bergen", "id": 156590, "credit_id": "52fe46e1c3a368484e0a8ff1", "cast_id": 16, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 9}, {"name": "Jesse Bond", "character": "Lead Federal Police", "id": 1021545, "credit_id": "52fe46e1c3a368484e0a8ff5", "cast_id": 17, "profile_path": "/nyAZ0BNDGZsS4NPmQriDkSmgghS.jpg", "order": 10}, {"name": "Brooks Darnell", "character": "Stevens", "id": 1021546, "credit_id": "52fe46e1c3a368484e0a8ff9", "cast_id": 18, "profile_path": "/qgM1WhQ8DbgfulLqhX1vvg59a7s.jpg", "order": 11}, {"name": "Michael Therriault", "character": "Bank Clerk", "id": 1018325, "credit_id": "52fe46e1c3a368484e0a9051", "cast_id": 35, "profile_path": "/nHkK7i0zhKvSA4JWtE5ITXf4zn2.jpg", "order": 12}, {"name": "Lisa Chandler", "character": "Prostitute", "id": 1075842, "credit_id": "52fe46e1c3a368484e0a9055", "cast_id": 36, "profile_path": "/9bThsDXxbYI1X4V6MUdIwvG41ki.jpg", "order": 13}, {"name": "Milton Barnes", "character": "Resistance Fighter", "id": 1226806, "credit_id": "52fe46e1c3a368484e0a9059", "cast_id": 37, "profile_path": "/8Lb9cegevGfADPuZNQ1BWunisik.jpg", "order": 14}, {"name": "Natalie Lisinska", "character": "Bohemian Nurse", "id": 1228319, "credit_id": "52fe46e1c3a368484e0a905d", "cast_id": 38, "profile_path": "/wVZMqXZjwXOQogwJpAiJVnaN1Hl.jpg", "order": 15}, {"name": "Billy Choi", "character": "Street peddler", "id": 1300910, "credit_id": "5322eb779251411f850049a7", "cast_id": 39, "profile_path": "/hvfV8oe6dXitxfNGdYpChNiRwlC.jpg", "order": 16}, {"name": "Emily Chang", "character": "Newscaster Lien Nguyen", "id": 1190814, "credit_id": "53313602c3a3686a780012b3", "cast_id": 40, "profile_path": "/3IouyREMuGhQN62PnfqbSZLYQ6J.jpg", "order": 17}], "directors": [{"name": "Len Wiseman", "department": "Directing", "job": "Director", "credit_id": "52fe46e1c3a368484e0a8fb1", "profile_path": "/8YblO53JkrcfiZ4I2uy8yGimLxn.jpg", "id": 3950}], "vote_average": 5.7, "runtime": 121}, "138843": {"poster_path": "/xOfaCTulNOFktg99N4h3p2qdyRY.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 318000141, "overview": "Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.", "video": false, "id": 138843, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Conjuring", "tagline": "", "vote_count": 979, "homepage": "http://theconjuring.warnerbros.com", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 313086, "name": "The Conjuring Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1457767", "adult": false, "backdrop_path": "/C9Fiv2lZOuQEWWuXB8C0LVZapC.jpg", "production_companies": [{"name": "Evergreen Media Group", "id": 31375}, {"name": "New Line Cinema", "id": 12}, {"name": "The Safran Company", "id": 11565}], "release_date": "2013-07-19", "popularity": 2.40231005453423, "original_title": "The Conjuring", "budget": 13000000, "cast": [{"name": "Patrick Wilson", "character": "Ed Warren", "id": 17178, "credit_id": "52fe4c56c3a368484e1b3271", "cast_id": 7, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Vera Farmiga", "character": "Lorraine Warren", "id": 21657, "credit_id": "52fe4c56c3a368484e1b3275", "cast_id": 8, "profile_path": "/dNeyqIgD29efuzdoDFGqPZYa1Y0.jpg", "order": 1}, {"name": "Lili Taylor", "character": "Carolyn Perron", "id": 3127, "credit_id": "52fe4c56c3a368484e1b3281", "cast_id": 11, "profile_path": "/rVR37LfGg4e65rHvkN7CB7VIrzs.jpg", "order": 2}, {"name": "Ron Livingston", "character": "Roger Perron", "id": 17402, "credit_id": "52fe4c56c3a368484e1b3279", "cast_id": 9, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 3}, {"name": "Hayley McFarland", "character": "Nancy", "id": 63663, "credit_id": "52fe4c56c3a368484e1b3289", "cast_id": 13, "profile_path": "/m7PKCycRo7Waf3elIJqEfEsUIxZ.jpg", "order": 4}, {"name": "Mackenzie Foy", "character": "Cindy", "id": 851784, "credit_id": "52fe4c56c3a368484e1b327d", "cast_id": 10, "profile_path": "/sC3yotsYEmqoxuaO2xnnqGee4U.jpg", "order": 5}, {"name": "Joey King", "character": "Christine Perron", "id": 125025, "credit_id": "52fe4c56c3a368484e1b3285", "cast_id": 12, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 6}, {"name": "Shanley Caswell", "character": "Andrea Perron", "id": 553504, "credit_id": "52fe4c56c3a368484e1b328d", "cast_id": 14, "profile_path": "/euXGdfscgkJlQDLhboLjFau7Cx5.jpg", "order": 7}, {"name": "Shannon Kook-Chun", "character": "Drew Thomas", "id": 979807, "credit_id": "52fe4c56c3a368484e1b3291", "cast_id": 15, "profile_path": null, "order": 8}, {"name": "Kyla Deaver", "character": "April", "id": 1186839, "credit_id": "52fe4c56c3a368484e1b3295", "cast_id": 16, "profile_path": "/mni61zWABRCHRhEAGEnNPXcwmhR.jpg", "order": 9}, {"name": "Sterling Jerins", "character": "Judy Warren", "id": 1186840, "credit_id": "52fe4c56c3a368484e1b3299", "cast_id": 17, "profile_path": "/Yfls1AkMHuf1uS2D39bRqwrFdx.jpg", "order": 10}, {"name": "Marion Guyot", "character": "Georgiana", "id": 196899, "credit_id": "52fe4c56c3a368484e1b32a1", "cast_id": 19, "profile_path": "/2xX5r4rw06diH0JnubOlmWXZQI2.jpg", "order": 12}, {"name": "Morganna Bridgers", "character": "Debbie", "id": 1186841, "credit_id": "52fe4c56c3a368484e1b32a5", "cast_id": 20, "profile_path": "/f8pJdITRZKygzHFIptxRLf3uAxH.jpg", "order": 13}, {"name": "Amy Tipton", "character": "Camilla", "id": 1186842, "credit_id": "52fe4c56c3a368484e1b32a9", "cast_id": 21, "profile_path": "/k4obOMrtRMtK7PaDiHYESXDAoz3.jpg", "order": 14}, {"name": "John Brotherton", "character": "Brad", "id": 222906, "credit_id": "53539d3bc3a3681d81003de7", "cast_id": 30, "profile_path": "/cxCXFaFpgPRTxuXydI53hGvUMgk.jpg", "order": 15}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4c56c3a368484e1b324f", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 7.3, "runtime": 112}, "150117": {"poster_path": "/o5cKKnjBQJuJ4vWw4pnHuKqkHYR.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 28234657, "overview": "A look at the trials and tribulations of a pair of newlyweds during their first year of marriage.", "video": false, "id": 150117, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "I Give It A Year", "tagline": "", "vote_count": 130, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2244901", "adult": false, "backdrop_path": "/9498vD4khnvpiKIWgr0KyxtThxS.jpg", "production_companies": [{"name": "StudioCanal", "id": 694}], "release_date": "2013-02-08", "popularity": 1.10422899172593, "original_title": "I Give It A Year", "budget": 0, "cast": [{"name": "Rafe Spall", "character": "Josh", "id": 28847, "credit_id": "52fe4ad99251416c910c7cfb", "cast_id": 5, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Nat", "id": 9827, "credit_id": "52fe4ad99251416c910c7cf7", "cast_id": 3, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Anna Faris", "character": "Chloe", "id": 1772, "credit_id": "52fe4ad99251416c910c7cf3", "cast_id": 2, "profile_path": "/57MOp6rD37RJNzbhTVMLpbsqwZd.jpg", "order": 2}, {"name": "Jason Flemyng", "character": "Hugh", "id": 973, "credit_id": "52fe4ad99251416c910c7cff", "cast_id": 6, "profile_path": "/kzzQoiO3bbi2UeDJL9QtBT5jaQn.jpg", "order": 3}, {"name": "Stephen Merchant", "character": "Danny", "id": 39189, "credit_id": "52fe4ad99251416c910c7d03", "cast_id": 7, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 4}, {"name": "Minnie Driver", "character": "Naomi", "id": 6613, "credit_id": "52fe4ad99251416c910c7d07", "cast_id": 8, "profile_path": "/nCA89WYKv8LOsZIFpRdQyYRp3Gz.jpg", "order": 5}, {"name": "Olivia Colman", "character": "Linda", "id": 39187, "credit_id": "52fe4ad99251416c910c7d0b", "cast_id": 9, "profile_path": "/25zMpY01RbxLifJnnz0EKGfQdgy.jpg", "order": 6}, {"name": "Jane Asher", "character": "Diana", "id": 22969, "credit_id": "52fe4ad99251416c910c7d0f", "cast_id": 10, "profile_path": "/vL9Y4ArXO1Q4ctMYw6Q4JEeiiwm.jpg", "order": 7}, {"name": "Tim Key", "character": "Alan", "id": 1016119, "credit_id": "52fe4ad99251416c910c7d19", "cast_id": 12, "profile_path": null, "order": 8}, {"name": "Nigel Planer", "character": "Brian", "id": 117555, "credit_id": "52fe4ad99251416c910c7d45", "cast_id": 23, "profile_path": "/uAmUbKmCVa233CEUcJQenyvknBe.jpg", "order": 9}, {"name": "Alex MacQueen", "character": "Minister", "id": 126042, "credit_id": "52fe4ad99251416c910c7d41", "cast_id": 21, "profile_path": null, "order": 10}, {"name": "Simon Baker", "character": "Guy", "id": 1284159, "credit_id": "52fe4ad99251416c910c7d4d", "cast_id": 25, "profile_path": "/8BOvBLVPsnyvQrwmYLEKdAxciAL.jpg", "order": 11}, {"name": "Daisy Haggard", "character": "Helen", "id": 209458, "credit_id": "536b86150e0a2647d400bce4", "cast_id": 26, "profile_path": "/sAwONMmNmeiI85XOzueXJc2cI3k.jpg", "order": 12}], "directors": [{"name": "Dan Mazer", "department": "Directing", "job": "Director", "credit_id": "52fe4ad99251416c910c7cef", "profile_path": null, "id": 6733}], "vote_average": 5.5, "runtime": 97}, "15969": {"poster_path": "/rsmMSZv6aJf3ua163Iug5eBiKuH.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Aladdin is adjusting to his new life as part of the upper crust. He and Princess Jasmine may not be married yet, but the pressures of palace society have already begun. On top of that, Iago (the parrot pet of Sultan's ex-vizir turned genie, Jafar) appears asking for help and no one is happy to see him. But things begin to look up when Genie returns from his trip around the world. Meanwhile, Jafar's black lamp is discovered by an idiot crook called Abis Mal. By using Abis Mal, Jafar makes his way back to Agrabah with ideas of payback for Aladdin and his friends.", "video": false, "id": 15969, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}, {"id": 10751, "name": "Family"}], "title": "The Return of Jafar", "tagline": "The Aladdin adventure continues...", "vote_count": 135, "homepage": "", "belongs_to_collection": {"backdrop_path": "/acIVr0B6wWxvtEzoIOzWWgY6bs2.jpg", "poster_path": "/9jAbtLbAbebtuF5q1gZIPUCuegd.jpg", "id": 86027, "name": "Aladdin Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107952", "adult": false, "backdrop_path": "/w1Okw5778jLM5cv3gLCCf6zRDSo.jpg", "production_companies": [{"name": "Walt Disney Television Animation", "id": 3475}], "release_date": "1994-05-20", "popularity": 1.22794313357, "original_title": "The Return of Jafar", "budget": 0, "cast": [{"name": "Jason Alexander", "character": "Abis Mal - the Chief of the Thieves (voice)", "id": 1206, "credit_id": "53fb1dbd0e0a267a7800742d", "cast_id": 17, "profile_path": "/ernpSXp2RnkzeV14OEEKXRq1yND.jpg", "order": 1}, {"name": "Jonathan Freeman", "character": "Jafar (voice)", "id": 15830, "credit_id": "53fb1dd00e0a267a72007729", "cast_id": 18, "profile_path": "/zOuESGSTRY0LS3mC9u03evqvjMi.jpg", "order": 2}, {"name": "Jeff Bennett", "character": "Thief (voice)", "id": 34982, "credit_id": "53fb1de10e0a267a78007432", "cast_id": 19, "profile_path": "/bms3A7TA0QItjtUlB28qv4MFFAH.jpg", "order": 3}, {"name": "Gilbert Gottfried", "character": "Iago (voice)", "id": 15832, "credit_id": "53fb1df40e0a267a7b00732e", "cast_id": 20, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 4}, {"name": "Val Bettin", "character": "The Sultan of Agrabah (voice)", "id": 61674, "credit_id": "53fb1e0f0e0a267a6f007783", "cast_id": 21, "profile_path": "/dwdUalc3PdmC1zoAX7qHl6FMvrq.jpg", "order": 5}, {"name": "Brad Kane", "character": "Aladdin (singing voice)", "id": 228428, "credit_id": "53fb1e200e0a267a7800743f", "cast_id": 22, "profile_path": "/g4UmBOKZfYYD5VtyuAO4t4LpCcP.jpg", "order": 6}, {"name": "Liz Callaway", "character": "Princess Jasmine (singing voice)", "id": 58828, "credit_id": "53fb1e310e0a267a7500769b", "cast_id": 23, "profile_path": "/pIZwTupFvJCppbYt26q4ydKIbnl.jpg", "order": 7}, {"name": "Linda Larkin", "character": "Princess Jasmine (voice)", "id": 15829, "credit_id": "53fb1e410e0a267a7200773b", "cast_id": 24, "profile_path": "/7dFMvof0vdGHVvtfpAewjzGOZhf.jpg", "order": 8}, {"name": "Dan Castellaneta", "character": "Blue Genie (voice)", "id": 198, "credit_id": "53fb1e510e0a267a7b00733a", "cast_id": 25, "profile_path": "/dmId1hAL2tluhrgVPChDabeoA0n.jpg", "order": 9}, {"name": "B. J. Ward", "character": "Street Mother (voice)", "id": 88622, "credit_id": "53fb1e640e0a267a7b00733d", "cast_id": 26, "profile_path": "/jTj0AcqLDyMkhdyCYSNR8DS2TpT.jpg", "order": 10}, {"name": "Jim Cummings", "character": "Razoul (voice)", "id": 12077, "credit_id": "53fb1e760e0a267a72007741", "cast_id": 27, "profile_path": "/i9frXvIJsGtoFikBEFVqE7uN8Bq.jpg", "order": 11}, {"name": "Scott Weinger", "character": "Aladdin (voice)", "id": 15827, "credit_id": "53fb1e8c0e0a267a690077be", "cast_id": 28, "profile_path": "/rlZpPoORiJzStzIuAyrPOlLhnaL.jpg", "order": 12}, {"name": "Frank Welker", "character": "Abu the Monkey (voice)", "id": 15831, "credit_id": "53fb1e9d0e0a267a7200774a", "cast_id": 29, "profile_path": "/a3QPvpgqKMGViS2M9mGcRy7xDZ.jpg", "order": 13}], "directors": [{"name": "Toby Shelton", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c7507c5f9", "profile_path": null, "id": 139851}, {"name": "Alan Zaslove", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c7507c621", "profile_path": null, "id": 34480}, {"name": "Tad Stones", "department": "Directing", "job": "Director", "credit_id": "52fe46919251416c7507c627", "profile_path": null, "id": 56852}], "vote_average": 5.7, "runtime": 69}, "228967": {"poster_path": "/2uWb0aSm5cFmRCHP95OdA6hvTEs.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 9005175, "overview": "Dave Skylark is king of the celebrity interview and host of the hit night time talk show \"Skylark Tonight.\" The brain behind Dave's empire is his producer and best friend, Aaron Rapoport. Unfulfilled, Aaron yearns to do meaningful work. He scores the chance of a lifetime when he secures an interview for Dave with Kim Jong-Un, the mysterious and ruthless dictator of a nuclear-armed North Korea. As Dave and Aaron prepare to leave for North Korea, they are approached by the CIA and asked to assassinate Kim. They accept the mission, becoming two of the least qualified men ever to assassinate \u2013 or interview \u2013 the most dangerous man on earth.", "video": false, "id": 228967, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}], "title": "The Interview", "tagline": "Their Trip To North Korea Just Went South.", "vote_count": 650, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "ko", "name": "\ud55c\uad6d\uc5b4/\uc870\uc120\ub9d0"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2788710", "adult": false, "backdrop_path": "/p5n7VTC6qmFIuBFjACWURYCAlKP.jpg", "production_companies": [{"name": "Columbia TriStar", "id": 177}], "release_date": "2014-12-25", "popularity": 6.16600196098147, "original_title": "The Interview", "budget": 0, "cast": [{"name": "James Franco", "character": "Dave Skylark", "id": 17051, "credit_id": "52fe4ede9251416c751652bf", "cast_id": 8, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Aaron Rapaport", "id": 19274, "credit_id": "52fe4ede9251416c751652bb", "cast_id": 7, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Lizzy Caplan", "character": "Agent Lacey", "id": 51988, "credit_id": "52fe4ede9251416c751652b7", "cast_id": 6, "profile_path": "/1QWNsCCDU2cM3CC9P37Lt7WAze9.jpg", "order": 2}, {"name": "Randall Park", "character": "Kim Jung-Un", "id": 79082, "credit_id": "52fe4ede9251416c751652c3", "cast_id": 9, "profile_path": "/xqeb4ha9TRqWVKuAtqQs3wT1tC2.jpg", "order": 3}, {"name": "Diana Bang", "character": "Sook", "id": 583051, "credit_id": "54911230925141472c0009b0", "cast_id": 18, "profile_path": "/sULeEfPOqPPzi29Nd02EF1obx2l.jpg", "order": 4}, {"name": "Timothy Simons", "character": "Malcolm", "id": 1181329, "credit_id": "52fe4ede9251416c751652c7", "cast_id": 10, "profile_path": "/czKmLeQIELIeR4Zpn6msqdYNHuW.jpg", "order": 5}, {"name": "Reese Alexander", "character": "Agent Botwin", "id": 141774, "credit_id": "54911223c3a368465a000b0e", "cast_id": 17, "profile_path": "/eFv7F7LDzkw2mQUfRh9C0FBGvph.jpg", "order": 6}, {"name": "James Yi", "character": "Officer Koh", "id": 1400266, "credit_id": "54911253c3a3684654000aea", "cast_id": 19, "profile_path": "/fPpAOrAGD3YaJZRitRusrqtcdXz.jpg", "order": 7}, {"name": "Paul Bae", "character": "Officer Yu", "id": 1406556, "credit_id": "54a31e3292514117dd00272d", "cast_id": 44, "profile_path": "/6VLZvntggk9Ic7g9IMytQ4sAXWH.jpg", "order": 8}, {"name": "Geoff Gustafson", "character": "Cole", "id": 119810, "credit_id": "54a31e559251411d5300a6a3", "cast_id": 45, "profile_path": "/qBXeCtDRg8tM5Kj0v9zH0CMWmtx.jpg", "order": 9}, {"name": "Dominique Lalonde", "character": "Jackie", "id": 1406557, "credit_id": "54a31eaec3a3684d8f002855", "cast_id": 46, "profile_path": "/dU5nimk1kOuC4Glb2pauXisu7Va.jpg", "order": 10}, {"name": "Anesha Bailey", "character": "Janet", "id": 1274528, "credit_id": "52fe4ede9251416c751652d3", "cast_id": 13, "profile_path": "/sFusvWfTTagpNe6N91cUITcJOdK.jpg", "order": 11}, {"name": "Anders Holm", "character": "Jake", "id": 521563, "credit_id": "54a31ee5c3a368554200d2b7", "cast_id": 47, "profile_path": "/gIZLXRBwYCgTMXr0CoTnHfLKXH9.jpg", "order": 12}, {"name": "Charles Rahi Chun", "character": "General Jong", "id": 62833, "credit_id": "53d727b80e0a260337000cb1", "cast_id": 16, "profile_path": "/eQIo5xMlggtkmWbZDM8UsMqr7pS.jpg", "order": 13}, {"name": "Don Chow", "character": "Two-Fingered Man", "id": 1406558, "credit_id": "54a31f81c3a3682f1e00fb67", "cast_id": 48, "profile_path": null, "order": 14}, {"name": "Jason Cox", "character": "Paparrazi", "id": 550224, "credit_id": "52fe4ede9251416c751652d7", "cast_id": 14, "profile_path": "/9lryEmiSGz3Ks5Zbnsv6QlUly1p.jpg", "order": 15}, {"name": "Tommy Chang", "character": "Presidential Body Guard #1", "id": 201067, "credit_id": "52fe4ede9251416c751652cf", "cast_id": 12, "profile_path": "/rKJsZKtEN98kfoPTM95MNgBFWES.jpg", "order": 16}, {"name": "Eminem", "character": "Eminem", "id": 325, "credit_id": "549f180d925141312f009522", "cast_id": 43, "profile_path": "/mKPPGlIZ2EiKb6LSC46cSzK2NEU.jpg", "order": 17}, {"name": "Ben Schwartz", "character": "Eminem's Publicist", "id": 222121, "credit_id": "549f17fec3a3682f16008aae", "cast_id": 42, "profile_path": "/ty2N3LuUiXO1uKyRg74DUN82xQe.jpg", "order": 18}, {"name": "Rob Lowe", "character": "Himself", "id": 2879, "credit_id": "54c4b0119251416185002d5c", "cast_id": 49, "profile_path": "/okONnij88o4Nv2j5uHEhuQnoiCL.jpg", "order": 19}], "directors": [{"name": "Evan Goldberg", "department": "Directing", "job": "Director", "credit_id": "52fe4ede9251416c751652a1", "profile_path": "/evgasY3JkcPEyQ1Jqz5BHCxb5oc.jpg", "id": 54734}, {"name": "Seth Rogen", "department": "Directing", "job": "Director", "credit_id": "52fe4ede9251416c751652a7", "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "id": 19274}], "vote_average": 6.1, "runtime": 112}, "228970": {"poster_path": "/xyVxo2g0qZBAHJRy5L7FnkMRoKt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.", "video": false, "id": 228970, "genres": [{"id": 18, "name": "Drama"}], "title": "Wild", "tagline": "", "vote_count": 193, "homepage": "http://howwilditwas.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2305051", "adult": false, "backdrop_path": "/pl6mEeLTI4IRnjbBGTMrJSBoYsU.jpg", "production_companies": [{"name": "Pacific Standard", "id": 15829}, {"name": "Fox Searchlight Pictures", "id": 43}], "release_date": "2014-12-05", "popularity": 2.94341935412618, "original_title": "Wild", "budget": 40100000, "cast": [{"name": "Reese Witherspoon", "character": "Cheryl Strayed", "id": 368, "credit_id": "52fe4ede9251416c75165335", "cast_id": 3, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 0}, {"name": "Laura Dern", "character": "Bobbi", "id": 4784, "credit_id": "537243c50e0a2672e5002096", "cast_id": 7, "profile_path": "/6UdGooksu7F4qfXkdvsQkhFVuhK.jpg", "order": 1}, {"name": "Thomas Sadoski", "character": "Paul", "id": 1218218, "credit_id": "537244020e0a2672f1001f70", "cast_id": 13, "profile_path": "/76x2G7gyY25krEc3OBMUWaEzgnB.jpg", "order": 2}, {"name": "Mo McRae", "character": "Jimmy Carter", "id": 59014, "credit_id": "52fe4ede9251416c75165339", "cast_id": 4, "profile_path": null, "order": 3}, {"name": "Michiel Huisman", "character": "Jonathan", "id": 91520, "credit_id": "537243a70e0a2672f400205e", "cast_id": 5, "profile_path": "/sUyhFWPSF13HkoB8aElJuh4D1sp.jpg", "order": 4}, {"name": "Gaby Hoffmann", "character": "Aimee", "id": 12930, "credit_id": "537243bd0e0a2672f4002061", "cast_id": 6, "profile_path": "/lC1rnJYWJIVGxcGpzhwfhsWyMVC.jpg", "order": 5}, {"name": "W. Earl Brown", "character": "Frank", "id": 6951, "credit_id": "537243ce0e0a2672fb0020a1", "cast_id": 8, "profile_path": "/ygTJtQVn9R2NgE1YPybsgk33jBm.jpg", "order": 6}, {"name": "Charles Baker", "character": "TJ", "id": 82945, "credit_id": "537243d60e0a2672f4002067", "cast_id": 9, "profile_path": "/lZ5fOVbTVvHkpSX9PUXNfkYLPUt.jpg", "order": 7}, {"name": "Kevin Rankin", "character": "Greg", "id": 114000, "credit_id": "537243de0e0a2672e500209c", "cast_id": 10, "profile_path": "/qhtCLebsLAPdX7Q7a6rncYq8qJk.jpg", "order": 8}, {"name": "Brian Van Holt", "character": "Ranger", "id": 12792, "credit_id": "537243e70e0a2672eb002042", "cast_id": 11, "profile_path": "/tGRqXOj0pCLjzI8lC3GD3u5HpXM.jpg", "order": 9}, {"name": "J.D. Evermore", "character": "Clint", "id": 129868, "credit_id": "537243f80e0a2672f8001f44", "cast_id": 12, "profile_path": "/iNn9JV3Kk7VJ9ICYKdjgwFq8EpF.jpg", "order": 10}, {"name": "Keene McRae", "character": "Leif", "id": 1223463, "credit_id": "54b66401c3a368779000193a", "cast_id": 28, "profile_path": null, "order": 11}], "directors": [{"name": "Jean-Marc Vall\u00e9e", "department": "Directing", "job": "Director", "credit_id": "52fe4ede9251416c7516532b", "profile_path": "/zFb4XBBx3TYSeeTXYv6GkAKYYcK.jpg", "id": 69371}], "vote_average": 7.1, "runtime": 115}, "179826": {"poster_path": "/mcgYHOqJpS8q02pbZXoECRlIthc.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "In a California desert town, a short-order cook with clairvoyant abilities encounters a mysterious man with a link to dark, threatening forces.", "video": false, "id": 179826, "genres": [{"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "Odd Thomas", "tagline": "I might see dead people... But then, by God, I do something about it.", "vote_count": 85, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1767354", "adult": false, "backdrop_path": "/bEu0Fe8nlc7japuTMp0n5A5QC4Y.jpg", "production_companies": [{"name": "Future Films", "id": 10843}, {"name": "Fusion Films", "id": 16278}, {"name": "Sommers Company, The", "id": 19643}], "release_date": "2013-04-16", "popularity": 0.607015273236379, "original_title": "Odd Thomas", "budget": 27000000, "cast": [{"name": "Anton Yelchin", "character": "Odd Thomas", "id": 21028, "credit_id": "52fe4dacc3a36847f826dfef", "cast_id": 4, "profile_path": "/cUlF4fJMOYclUHA3bTFwlgFKNaH.jpg", "order": 0}, {"name": "Willem Dafoe", "character": "Wyatt Porter", "id": 5293, "credit_id": "52fe4dacc3a36847f826dff3", "cast_id": 5, "profile_path": "/A1uyY0KbYSR8fk7Wkdbs2VfsBw1.jpg", "order": 1}, {"name": "Nico Tortorella", "character": "Simon Varner", "id": 127128, "credit_id": "52fe4dacc3a36847f826dff7", "cast_id": 6, "profile_path": "/A6H0K8h39LcpQpjjjBCoWekDiAf.jpg", "order": 2}, {"name": "Addison Timlin", "character": "Stormy Llewellyn", "id": 56542, "credit_id": "52fe4dacc3a36847f826dffb", "cast_id": 7, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 3}, {"name": "Melissa Ordway", "character": "Lysette", "id": 114602, "credit_id": "52fe4dacc3a36847f826dfff", "cast_id": 8, "profile_path": "/qqjCuGKTZaEmEaoKYAzAsVfhDOv.jpg", "order": 4}, {"name": "Patton Oswalt", "character": "Ozzie P. Boone", "id": 10872, "credit_id": "52fe4dacc3a36847f826e003", "cast_id": 9, "profile_path": "/dq3uNmTB7r8XTtadV3OD3N7LqV6.jpg", "order": 5}, {"name": "Leonor Varela", "character": "Odd's mother", "id": 10839, "credit_id": "52fe4dacc3a36847f826e007", "cast_id": 10, "profile_path": "/rXn3ruoRRSplCyeNXs7z9BMxHAb.jpg", "order": 6}, {"name": "Bryan Head", "character": "Bowling Alley Patron", "id": 1155332, "credit_id": "52fe4dacc3a36847f826e00b", "cast_id": 12, "profile_path": null, "order": 7}, {"name": "Gugu Mbatha-Raw", "character": "Viola", "id": 1216606, "credit_id": "52fe4dacc3a36847f826e00f", "cast_id": 13, "profile_path": "/pHzRhB8HnrlXLpvSF4MlBHyfotF.jpg", "order": 8}, {"name": "Kyle McKeever", "character": "Officer Bern Eckles", "id": 1291691, "credit_id": "52fe4dacc3a36847f826e013", "cast_id": 14, "profile_path": "/m9HI4V1QKgTkUX6Q1BJNiQPG1mq.jpg", "order": 9}, {"name": "Maisha Diatta", "character": "Nicolina", "id": 1291692, "credit_id": "52fe4dacc3a36847f826e017", "cast_id": 15, "profile_path": null, "order": 10}, {"name": "Jack Justice", "character": "Young Odd", "id": 1291693, "credit_id": "52fe4dacc3a36847f826e01b", "cast_id": 16, "profile_path": "/8xMAWjEpg9REb5cNwO6XIqqcLbe.jpg", "order": 11}, {"name": "Ashley Sommers", "character": "Penny Kalisto", "id": 1404645, "credit_id": "549e567b9251414d27002d21", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Matthew Page", "character": "Harlo Landerson", "id": 1094319, "credit_id": "549e5af39251414e28002e94", "cast_id": 26, "profile_path": "/nTAAP1s4Y0e6bW1Vyq9MqzCG95y.jpg", "order": 13}, {"name": "Casey Messer", "character": "Pool Mom", "id": 1404646, "credit_id": "549e5bf9c3a3682f23007a9f", "cast_id": 27, "profile_path": "/mwADMVHBbhs1daCUTZxP6rPAVPd.jpg", "order": 14}, {"name": "Barney Lanning", "character": "Stevie", "id": 1404647, "credit_id": "549e5d789251413132007681", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Carmen Corley", "character": "Levanna", "id": 1404648, "credit_id": "549e5f7cc3a3682f210077e1", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Robin Lanning", "character": "Young Stormy", "id": 1404650, "credit_id": "549e63d5c3a3680b2700673a", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Jesus Mayorga", "character": "Mexican Teenager", "id": 204196, "credit_id": "549e6553c3a3682f21007889", "cast_id": 31, "profile_path": "/dYAnZvjvmpy93jHYDR2aAQdWNnD.jpg", "order": 18}, {"name": "Shuler Hensley", "character": "Fungus Bob Robertson", "id": 96892, "credit_id": "549e665dc3a3682f23007be8", "cast_id": 32, "profile_path": "/xAeK7my9ZFHcHGCrgDeUUDFTty1.jpg", "order": 19}, {"name": "Arnold Vosloo", "character": "Tom Jedd", "id": 16743, "credit_id": "549e66f0925141312f0081a1", "cast_id": 33, "profile_path": "/lyaslPa1B8jPid3Y7mXJcn8urkD.jpg", "order": 20}, {"name": "Talia Lanning", "character": "Ice Cream Girl", "id": 1404651, "credit_id": "549e6788c3a3682f16007866", "cast_id": 34, "profile_path": "/1W7HhNO9Nvt51cVb2B1svZwlWAo.jpg", "order": 21}, {"name": "Morse Bicknell", "character": "Kevin Goss", "id": 223395, "credit_id": "549e68f6c3a3682f23007c3e", "cast_id": 35, "profile_path": "/viBm5279hwLvjZ9rTHutq721aUb.jpg", "order": 22}, {"name": "Laurel Harris", "character": "Karla Porter", "id": 1404652, "credit_id": "549e6990c3a368764f0039ae", "cast_id": 36, "profile_path": "/z4MoI0GRGW4MGWKF0TYhOWQWshi.jpg", "order": 23}, {"name": "Rob Lawrence Brown", "character": "Shamus Cocobolo", "id": 1404689, "credit_id": "549e80f49251413132007a75", "cast_id": 37, "profile_path": null, "order": 24}, {"name": "Andy Ryan", "character": "Police Captain", "id": 1367502, "credit_id": "549e823cc3a3680b27006a7f", "cast_id": 38, "profile_path": null, "order": 25}, {"name": "Kyle T. Cowan", "character": "Lyle", "id": 1391874, "credit_id": "549e83b3c3a3682f21007c0d", "cast_id": 39, "profile_path": "/9wL14PFDT0ODsqsGkRJBiSYPOSV.jpg", "order": 26}, {"name": "Nell Murphy", "character": "Nell", "id": 1404693, "credit_id": "549e841b9251414bb2006168", "cast_id": 40, "profile_path": null, "order": 27}, {"name": "Kevin Wiggins", "character": "Foreman", "id": 1240490, "credit_id": "549e84dac3a3682f1b007b91", "cast_id": 41, "profile_path": null, "order": 28}, {"name": "Kellie Matteson", "character": "Nurse", "id": 1404696, "credit_id": "549e856c9251413132007af9", "cast_id": 42, "profile_path": "/cz0GnGpFAey5pSGrr1DzcMbSpXG.jpg", "order": 29}, {"name": "Jermaine Washington", "character": "Head Bowling Alley Employee", "id": 210700, "credit_id": "549e86b0c3a3682f21007c4d", "cast_id": 43, "profile_path": "/euCpGATxR0ncFXsuuW5tAyKB8U0.jpg", "order": 30}, {"name": "Jimmy Romano", "character": "Bowling Alley Employee #2", "id": 1404697, "credit_id": "549e876bc3a3682f23007f7c", "cast_id": 44, "profile_path": null, "order": 31}, {"name": "Saleem Watley", "character": "Bowling Alley Employee #3", "id": 1404698, "credit_id": "549e880c9251413123007bd0", "cast_id": 45, "profile_path": null, "order": 32}], "directors": [{"name": "Stephen Sommers", "department": "Directing", "job": "Director", "credit_id": "52fe4dacc3a36847f826dfdf", "profile_path": "/7EIjF5ssHi3PVUaceuNaCNW1fm7.jpg", "id": 7775}], "vote_average": 6.7, "runtime": 100}, "12222": {"poster_path": "/rcRoduyCzOA0orAS9By8w9gTxy8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 297138014, "overview": "One day, Horton the elephant hears a cry from help coming from a speck of dust. Even though he can't see anyone on the speck, he decides to help it. As it turns out, the speck of dust is home to the Whos, who live in their city of Whoville. Horton agrees to help protect the Whos and their home", "video": false, "id": 12222, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Horton Hears a Who!", "tagline": "A persons a person no matter how small!", "vote_count": 285, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0451079", "adult": false, "backdrop_path": "/jft2L1Jhe9xhKhB5uYBzYIjGXkw.jpg", "production_companies": [{"name": "Blue Sky Studios", "id": 9383}, {"name": "Twentieth Century Fox Animation", "id": 11749}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "2008-03-03", "popularity": 1.15056717736726, "original_title": "Horton Hears a Who!", "budget": 85000000, "cast": [{"name": "Jim Carrey", "character": "Horton", "id": 206, "credit_id": "52fe44cc9251416c75041599", "cast_id": 3, "profile_path": "/a46mhZ3ZLIx3SOGTj3WhchC7XbQ.jpg", "order": 0}, {"name": "Steve Carell", "character": "The Mayor of Whoville (voice)", "id": 4495, "credit_id": "52fe44cc9251416c7504159d", "cast_id": 4, "profile_path": "/70BJ9xbfkRtEWBeuMcAH8C9lhpA.jpg", "order": 1}, {"name": "Carol Burnett", "character": "Kangaroo (voice)", "id": 14837, "credit_id": "52fe44cc9251416c750415a1", "cast_id": 5, "profile_path": "/uUN23A8WtaLcItllwFADuyqF8Ci.jpg", "order": 2}, {"name": "Seth Rogen", "character": "Morton (voice)", "id": 19274, "credit_id": "52fe44cc9251416c750415a5", "cast_id": 6, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 3}, {"name": "Will Arnett", "character": "Vlad (voice)", "id": 21200, "credit_id": "52fe44cc9251416c750415a9", "cast_id": 7, "profile_path": "/vHCqn3SHfSV6GOWrxzEtoDaSMoU.jpg", "order": 4}, {"name": "Dan Fogler", "character": "Councilman / Yummo Wickersham", "id": 58873, "credit_id": "52fe44cc9251416c750415cb", "cast_id": 13, "profile_path": "/75hCIe6KHpHUlJDcyoxEp035BWz.jpg", "order": 5}, {"name": "Isla Fisher", "character": "Dr. Mary Lou Larue", "id": 52848, "credit_id": "52fe44cc9251416c750415cf", "cast_id": 14, "profile_path": "/f2gbyJ7fWON7w4hMAcUU5Y8uoER.jpg", "order": 6}, {"name": "Jonah Hill", "character": "Tommy", "id": 21007, "credit_id": "52fe44cc9251416c750415d3", "cast_id": 15, "profile_path": "/paKfXGK2gnYHWkqe1NiQR1pGac7.jpg", "order": 7}, {"name": "Amy Poehler", "character": "Sally O'Malley", "id": 56322, "credit_id": "52fe44cc9251416c750415d7", "cast_id": 16, "profile_path": "/qvVYBwZncnWoiu48GklLXQKMngm.jpg", "order": 8}, {"name": "Jaime Pressly", "character": "Mrs. Quilligan", "id": 56824, "credit_id": "52fe44cc9251416c750415db", "cast_id": 17, "profile_path": "/poWVzEIu6gO9wkQ0h5GuSGfY4S3.jpg", "order": 9}, {"name": "Charles Osgood", "character": "Narrator", "id": 974472, "credit_id": "52fe44cc9251416c750415df", "cast_id": 18, "profile_path": "/qdmEZ0wEB0LY9sLMSFWXJka2dzc.jpg", "order": 10}, {"name": "Josh Flitter", "character": "Rudy", "id": 216, "credit_id": "52fe44cc9251416c750415e3", "cast_id": 19, "profile_path": "/6RCA8tDWBxIVk9N3IqUjJEAzYGv.jpg", "order": 11}, {"name": "Niecy Nash", "character": "Miss Yelp", "id": 63231, "credit_id": "52fe44cd9251416c750415e7", "cast_id": 20, "profile_path": "/uDgMY19qLLxJLGGr0JYzbi01JmW.jpg", "order": 12}, {"name": "Jesse McCartney", "character": "JoJo", "id": 49915, "credit_id": "52fe44cd9251416c750415eb", "cast_id": 21, "profile_path": "/puqSuyl7MMZvx2nnRVegk9uVlOS.jpg", "order": 13}, {"name": "Shelby Adamowsky", "character": "Hedy / Hooly / Additional Voices", "id": 215772, "credit_id": "52fe44cd9251416c750415ef", "cast_id": 22, "profile_path": "/s0o3TxZOCorcN4fGzofnaDI2cef.jpg", "order": 14}, {"name": "Jack Angel", "character": "Old Time Who / Additional Voices", "id": 19545, "credit_id": "52fe44cd9251416c750415f3", "cast_id": 23, "profile_path": "/qYvR57QBtXpdvj1jm2a8hjh7E4L.jpg", "order": 15}, {"name": "Caitlin Rose Anderson", "character": "Helen", "id": 1086503, "credit_id": "52fe44cd9251416c750415f7", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Emily Anderson", "character": "Heather", "id": 1086504, "credit_id": "52fe44cd9251416c750415fb", "cast_id": 25, "profile_path": null, "order": 17}, {"name": "Jan Rabson", "character": "Town Cryer / Additional Voices", "id": 157626, "credit_id": "52fe44cd9251416c750415ff", "cast_id": 26, "profile_path": "/lXPM1S9m2YKlSEzMQBWVLnydmyZ.jpg", "order": 18}, {"name": "John Cygan", "character": "Who / Additional Voices", "id": 167295, "credit_id": "52fe44cd9251416c75041603", "cast_id": 27, "profile_path": "/6d0c3tC2wDC79StG2OSt5dAk9Nz.jpg", "order": 19}, {"name": "Jess Harnell", "character": "Another Who / Additional Voices", "id": 84495, "credit_id": "52fe44cd9251416c75041607", "cast_id": 28, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 20}, {"name": "Debi Derryberry", "character": "Who Mom / Additional Voices", "id": 73016, "credit_id": "52fe44cd9251416c7504160b", "cast_id": 29, "profile_path": "/mfmF3MjoL7sV76BSElFkVgDgA30.jpg", "order": 21}], "directors": [{"name": "Jimmy Hayward", "department": "Directing", "job": "Director", "credit_id": "52fe44cc9251416c7504158f", "profile_path": "/uXIBpg7wqefjp0JanzazxjlQKnc.jpg", "id": 8029}, {"name": "Steve Martino", "department": "Directing", "job": "Director", "credit_id": "52fe44cc9251416c75041595", "profile_path": "/rrzPXZh0fj0QBkfWGOZdtb9Ppy1.jpg", "id": 71729}], "vote_average": 6.2, "runtime": 88}, "8999": {"poster_path": "/ArgrsyWKzVTi1AdyetHBV3jmhgM.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57479076, "overview": "When two married business executives having an affair are blackmailed by a violent criminal, they are forced to turn the tables on him to save their families.", "video": false, "id": 8999, "genres": [{"id": 53, "name": "Thriller"}], "title": "Derailed", "tagline": "He never saw it coming.", "vote_count": 77, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0398017", "adult": false, "backdrop_path": "/4tSHqK1Bq61SGLWrGbSVbQ1B2rF.jpg", "production_companies": [{"name": "Di Bonaventura Pictures", "id": 435}, {"name": "Miramax Films", "id": 14}, {"name": "Patalex V Productions Limited", "id": 23635}], "release_date": "2005-11-11", "popularity": 0.941704335482833, "original_title": "Derailed", "budget": 22000000, "cast": [{"name": "Clive Owen", "character": "Charles Schine", "id": 2296, "credit_id": "52fe44d0c3a36847f80ab7ff", "cast_id": 2, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 0}, {"name": "Jennifer Aniston", "character": "Lucinda Harris", "id": 4491, "credit_id": "52fe44d0c3a36847f80ab80b", "cast_id": 5, "profile_path": "/4d4wvNyDuvN86DoneawbLOpr8gH.jpg", "order": 1}, {"name": "Melissa George", "character": "Deanna Schine", "id": 27755, "credit_id": "52fe44d0c3a36847f80ab807", "cast_id": 4, "profile_path": "/6FwOUF7oxvMA7AEZ8uVQwAhQIpH.jpg", "order": 2}, {"name": "Vincent Cassel", "character": "LaRoche", "id": 1925, "credit_id": "52fe44d0c3a36847f80ab7fb", "cast_id": 1, "profile_path": "/yTTyX7xziiMibm0nzcH5z6xxLLv.jpg", "order": 3}, {"name": "Addison Timlin", "character": "Amy Schine", "id": 56542, "credit_id": "52fe44d0c3a36847f80ab803", "cast_id": 3, "profile_path": "/oelV5322pg9o5uTuB6K1V3M8cWi.jpg", "order": 4}, {"name": "Sandra Bee", "character": "Train Conductor", "id": 56543, "credit_id": "52fe44d0c3a36847f80ab80f", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Xzibit", "character": "Dexter", "id": 336, "credit_id": "52fe44d0c3a36847f80ab82b", "cast_id": 14, "profile_path": "/kTQu0lhfCYLgtJ1FsU2ksRSxFkc.jpg", "order": 6}, {"name": "RZA", "character": "Winston Boyko", "id": 150, "credit_id": "52fe44d0c3a36847f80ab853", "cast_id": 22, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 7}, {"name": "Giancarlo Esposito", "character": "Detective Church", "id": 4808, "credit_id": "52fe44d0c3a36847f80ab857", "cast_id": 23, "profile_path": "/d39hOi5lTfqekjFK4JKKPeuGNdW.jpg", "order": 8}, {"name": "Tom Conti", "character": "Eliot Firth", "id": 71010, "credit_id": "52fe44d0c3a36847f80ab85b", "cast_id": 24, "profile_path": "/lpEvoHDWJtuV2h7Yw3NQisb902P.jpg", "order": 9}, {"name": "Richard Leaf", "character": "Night Clerk Ray", "id": 16792, "credit_id": "52fe44d0c3a36847f80ab85f", "cast_id": 25, "profile_path": "/8TLhzJ9VOjZPm9myvZaWMsuOW0j.jpg", "order": 10}, {"name": "Denis O'Hare", "character": "Jerry the Lawyer", "id": 81681, "credit_id": "52fe44d0c3a36847f80ab863", "cast_id": 26, "profile_path": "/rGHuNlTz5qQUTc0xzNic8aFgyGG.jpg", "order": 11}, {"name": "David Morrissey", "character": "Sam Griffin", "id": 18616, "credit_id": "52fe44d0c3a36847f80ab867", "cast_id": 27, "profile_path": "/4w0XlXlk4IKO8g8HejnBHn7xOPG.jpg", "order": 12}], "directors": [{"name": "Mikael H\u00e5fstr\u00f6m", "department": "Directing", "job": "Director", "credit_id": "52fe44d0c3a36847f80ab827", "profile_path": "/gt4zyyOH6Zxz1icHy8RvMqpNTx2.jpg", "id": 29605}], "vote_average": 6.0, "runtime": 108}, "38167": {"poster_path": "/s57E4AfPIU1fxwpGGRahk6A0DUl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 181069591, "overview": "Liz Gilbert had everything a modern woman is supposed to dream of having - a husband, a house, a successful career - yet like so many others, she found herself lost, confused, and searching for what she really wanted in life. Newly divorced and at a crossroads, Gilbert steps out of her comfort zone, risking everything to change her life, embarking on a journey around the world that becomes a quest for self-discovery. In her travels, she discovers the true pleasure of nourishment by eating in Italy; the power of prayer in India, and, finally and unexpectedly, the inner peace and balance of true love in Bali. Based upon the bestselling memoir by Elizabeth Gilbert.", "video": false, "id": 38167, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Eat Pray Love", "tagline": "Let Yourself GO", "vote_count": 162, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "pt", "name": "Portugu\u00eas"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "it", "name": "Italiano"}], "imdb_id": "tt0879870", "adult": false, "backdrop_path": "/2fwHVLvh6kdwCujsMwtNmwRJAf1.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Red Om Films", "id": 2455}], "release_date": "2010-08-12", "popularity": 0.900546542574837, "original_title": "Eat Pray Love", "budget": 60000000, "cast": [{"name": "Julia Roberts", "character": "Elizabeth Gilbert", "id": 1204, "credit_id": "52fe469c9251416c91059e9d", "cast_id": 4, "profile_path": "/yzaIyUEKHSnEYDwltXs8gpF4SVC.jpg", "order": 0}, {"name": "James Franco", "character": "David", "id": 17051, "credit_id": "52fe469c9251416c91059ea1", "cast_id": 5, "profile_path": "/m9he3UnbmAAxkV1XH2EmzkNfkaS.jpg", "order": 1}, {"name": "Javier Bardem", "character": "Felipe", "id": 3810, "credit_id": "52fe469c9251416c91059ea5", "cast_id": 6, "profile_path": "/lLaEcs1N5zuq597M4L7Fec9QnBf.jpg", "order": 2}, {"name": "Billy Crudup", "character": "Steven", "id": 8289, "credit_id": "52fe469c9251416c91059ea9", "cast_id": 7, "profile_path": "/kUcnYaHOjYS2nYz8Zs68KXPXYIx.jpg", "order": 3}, {"name": "Richard Jenkins", "character": "Richard", "id": 28633, "credit_id": "52fe469c9251416c91059ead", "cast_id": 8, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 4}, {"name": "Viola Davis", "character": "Delia", "id": 19492, "credit_id": "52fe469c9251416c91059eb1", "cast_id": 9, "profile_path": "/bqdE1CNQ7LokkzMZgKJlgDE5n6U.jpg", "order": 5}], "directors": [{"name": "Ryan Murphy", "department": "Directing", "job": "Director", "credit_id": "52fe469c9251416c91059e93", "profile_path": "/2NjTHDZmJ1ApUfkGWDVPDeGWPPx.jpg", "id": 52779}], "vote_average": 5.5, "runtime": 133}, "7840": {"poster_path": "/rnGR3EHkL4ryhQd50XBrtRrV8nq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 266000000, "overview": "A prehistoric epic that follows a young mammoth hunter's journey through uncharted territory to secure the future of his tribe.", "video": false, "id": 7840, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "10,000 BC", "tagline": "The legend. The battle. The first hero.", "vote_count": 308, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0443649", "adult": false, "backdrop_path": "/x449jyGofRwbnkYgUnS9VLdPkmu.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Centropolis Entertainment", "id": 347}, {"name": "Legendary Pictures", "id": 923}, {"name": "The Department of Trade and Industry of South Africa", "id": 10884}, {"name": "Moonlighting Films", "id": 9137}], "release_date": "2008-03-05", "popularity": 0.895263075821019, "original_title": "10,000 BC", "budget": 105000000, "cast": [{"name": "Steven Strait", "character": "D'Leh", "id": 54815, "credit_id": "52fe4485c3a36847f809aebd", "cast_id": 7, "profile_path": "/yL9IKHHVaDupVstNLwWWDpdhW8k.jpg", "order": 0}, {"name": "Camilla Belle", "character": "Evolet", "id": 38670, "credit_id": "52fe4485c3a36847f809aeb9", "cast_id": 6, "profile_path": "/dbfyIG91T5ROjDKRjWN8FpMcTay.jpg", "order": 1}, {"name": "Cliff Curtis", "character": "Tic-Tic", "id": 7248, "credit_id": "52fe4485c3a36847f809aec1", "cast_id": 8, "profile_path": "/dkSlTaKKe0uaKKAscVaSHlGq4g3.jpg", "order": 2}, {"name": "Nathanael Baring", "character": "Baku", "id": 54805, "credit_id": "52fe4485c3a36847f809af13", "cast_id": 22, "profile_path": "/xfXZOhnLq9u9Dev1r2akyXV9KvF.jpg", "order": 3}, {"name": "Mo Zinal", "character": "Ka\u2019Ren", "id": 54806, "credit_id": "52fe4485c3a36847f809af17", "cast_id": 23, "profile_path": null, "order": 4}, {"name": "Affif Ben Badra", "character": "Warlord", "id": 54807, "credit_id": "52fe4486c3a36847f809af1b", "cast_id": 24, "profile_path": "/nYYIFy3Rc6iEx8UdpwevSwYdwps.jpg", "order": 5}, {"name": "Mona Hammond", "character": "Old Mother", "id": 54808, "credit_id": "52fe4486c3a36847f809af1f", "cast_id": 25, "profile_path": "/bcKUoLinghTX8OImePyNMGFUSfh.jpg", "order": 6}, {"name": "Marco Khan", "character": "One-Eye", "id": 54809, "credit_id": "52fe4486c3a36847f809af23", "cast_id": 26, "profile_path": "/7ICgwwtohryQmWyLPsaJvrnorDi.jpg", "order": 7}, {"name": "Reece Ritchie", "character": "Moha", "id": 54810, "credit_id": "52fe4486c3a36847f809af27", "cast_id": 27, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 8}, {"name": "Joel Fry", "character": "Lu\u2019Kibu", "id": 54811, "credit_id": "52fe4486c3a36847f809af2b", "cast_id": 28, "profile_path": null, "order": 9}, {"name": "Joel Virgel", "character": "Nakudu", "id": 143647, "credit_id": "52fe4486c3a36847f809af2f", "cast_id": 29, "profile_path": null, "order": 10}, {"name": "Omar Sharif", "character": "Narrator (voice)", "id": 5004, "credit_id": "52fe4486c3a36847f809af33", "cast_id": 30, "profile_path": "/hZTwgZnf1jyDt0vz0iHzsRsBtEY.jpg", "order": 11}, {"name": "Kristian Beazley", "character": "D'Leh's Father", "id": 964350, "credit_id": "52fe4486c3a36847f809af37", "cast_id": 31, "profile_path": null, "order": 12}, {"name": "Junior Oliphant", "character": "Tudu", "id": 964351, "credit_id": "52fe4486c3a36847f809af3b", "cast_id": 32, "profile_path": null, "order": 13}, {"name": "Louise Tu'u", "character": "Baku's Mother", "id": 1080044, "credit_id": "52fe4486c3a36847f809af3f", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Jacob Renton", "character": "Young D'Leh", "id": 1080045, "credit_id": "52fe4486c3a36847f809af43", "cast_id": 34, "profile_path": null, "order": 15}, {"name": "Grayson Hunt Urwin", "character": "Young Evolet", "id": 1080046, "credit_id": "52fe4486c3a36847f809af47", "cast_id": 35, "profile_path": null, "order": 16}, {"name": "Farouk Valley Omar", "character": "High Priest", "id": 953772, "credit_id": "52fe4486c3a36847f809af4b", "cast_id": 36, "profile_path": null, "order": 17}, {"name": "Boubacar Babiane", "character": "Quina", "id": 1080047, "credit_id": "52fe4486c3a36847f809af4f", "cast_id": 37, "profile_path": null, "order": 18}], "directors": [{"name": "Roland Emmerich", "department": "Directing", "job": "Director", "credit_id": "52fe4485c3a36847f809ae9d", "profile_path": "/eJ13f8Hlwwaabr5DrNCnhYbUX14.jpg", "id": 6046}], "vote_average": 5.3, "runtime": 109}, "40619": {"poster_path": "/15yOr3M2lOk8fTkn7Bpxuc19ZU9.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "When Day, a sunny fellow, encounters Night, a stranger of distinctly darker moods, sparks fly! Day and Night are frightened and suspicious of each other at first, and quickly get off on the wrong foot. But as they discover each other's unique qualities--and come to realize that each of them offers a different window onto the same world-the friendship helps both to gain a new perspective.", "video": false, "id": 40619, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Day & Night", "tagline": "", "vote_count": 67, "homepage": "http://www.pixar.com/shorts/d&n/index.html", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1620446", "adult": false, "backdrop_path": "/16Zih6SSQzWrDRMnAaiaszx2mbV.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2010-06-17", "popularity": 0.292744722065318, "original_title": "Day & Night", "budget": 0, "cast": [{"name": "Wayne Dyer", "character": "Radio Lecturer (voice) (archive sound) (uncredited)", "id": 143640, "credit_id": "52fe459ac3a36847f80d0563", "cast_id": 2, "profile_path": "/cwr5I9BOB5E3GemSUkeaU6rFwvm.jpg", "order": 0}], "directors": [{"name": "Teddy Newton", "department": "Directing", "job": "Director", "credit_id": "52fe459ac3a36847f80d055f", "profile_path": "/mftwTs5lza95kOyAZsrfNaqSFtv.jpg", "id": 59357}], "vote_average": 7.3, "runtime": 6}, "24238": {"poster_path": "/k0lQISUC4NuvKYasJn59JHc2rla.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 0, "overview": "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. In the mid-1970's, a homely, friendless Australian girl of 8 picks a name out of a Manhattan phone book and writes to him; she includes a chocolate bar. She's Mary Dinkle, the only child of an alcoholic mother and a distracted father. He's Max Horowitz, living alone in New York, overweight, subject to anxiety attacks. He writes back, with chocolate. Thus begins a 20-year correspondence, interrupted by a stay in an asylum and a few misunderstandings. Mary falls in love with a neighbor, saves money to have a birthmark removed and deals with loss. Max has a friendship with a neighbor, tries to control his weight, and finally gets the dream job. Will the two ever meet face to face?", "video": false, "id": 24238, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Mary and Max", "tagline": "Sometimes perfect strangers make the best friends.", "vote_count": 199, "homepage": "http://www.maryandmax.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "yi", "name": ""}], "imdb_id": "tt0978762", "adult": false, "backdrop_path": "/akUyYgdcY3Q4WfbWLDB9Ur8ttFG.jpg", "production_companies": [{"name": "Melodrama Pictures", "id": 3908}], "release_date": "2009-04-09", "popularity": 0.557139102593417, "original_title": "Mary and Max", "budget": 8000000, "cast": [{"name": "Toni Collette", "character": "Mary Daisy Dinkle", "id": 3051, "credit_id": "52fe448cc3a368484e028ed5", "cast_id": 1, "profile_path": "/t9JGwWaTj3bahyHKUv7KMrcwoiz.jpg", "order": 0}, {"name": "Philip Seymour Hoffman", "character": "Max Jerry Horovitz", "id": 1233, "credit_id": "52fe448cc3a368484e028ed9", "cast_id": 2, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 1}, {"name": "Eric Bana", "character": "Damien", "id": 8783, "credit_id": "52fe448cc3a368484e028edd", "cast_id": 3, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 2}, {"name": "Barry Humphries", "character": "Narrator", "id": 22, "credit_id": "52fe448cc3a368484e028ee1", "cast_id": 4, "profile_path": "/bBXWmZtFbKy6Wzk1fHOCE8j6KfS.jpg", "order": 3}, {"name": "Bethany Whitmore", "character": "Young Mary", "id": 92731, "credit_id": "52fe448cc3a368484e028ee5", "cast_id": 5, "profile_path": "/y5ZKK6lgNWAvVPKobq78eTN0aqE.jpg", "order": 4}, {"name": "Ren\u00e9e Geyer", "character": "Vera", "id": 92732, "credit_id": "52fe448cc3a368484e028ee9", "cast_id": 6, "profile_path": null, "order": 5}], "directors": [{"name": "Adam Elliot", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a368484e028eef", "profile_path": "/6EXr5WTdWQvA45GPULmCnupZzo9.jpg", "id": 92733}], "vote_average": 7.5, "runtime": 92}, "181533": {"poster_path": "/tWwASv4CU1Au1IukacdSUewDCV3.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 349424282, "overview": "When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley (Ben Stiller) spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.", "video": false, "id": 181533, "genres": [{"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Night at the Museum: Secret of the Tomb", "tagline": "One Final Night to Save the Day.", "vote_count": 294, "homepage": "", "belongs_to_collection": {"backdrop_path": "/fOmqiIXfJmeANciOTCN6WkKbwK.jpg", "poster_path": "/q2nwE0Qi8U6tsU5HDmiWS2D3dSJ.jpg", "id": 85943, "name": "Night at the Museum Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2692250", "adult": false, "backdrop_path": "/73hI1zgRALUDrB46JDPBLFqHcqv.jpg", "production_companies": [{"name": "1492 Pictures", "id": 436}, {"name": "21 Laps Entertainment", "id": 2575}, {"name": "Twentieth Century Fox", "id": 7392}], "release_date": "2014-12-19", "popularity": 8.98686579558323, "original_title": "Night at the Museum: Secret of the Tomb", "budget": 127000000, "cast": [{"name": "Rami Malek", "character": "Ahkmenrah", "id": 17838, "credit_id": "537d3527c3a368059e00002a", "cast_id": 14, "profile_path": "/3zj5BkNVAPKIJH7sHImiazU732s.jpg", "order": 0}, {"name": "Ben Stiller", "character": "Larry Daley", "id": 7399, "credit_id": "52fe4c6a9251416c75119c17", "cast_id": 1, "profile_path": "/umikKeCX3vEZoUcx2klxPG8571s.jpg", "order": 1}, {"name": "Rebel Wilson", "character": "Tilly", "id": 221581, "credit_id": "52fe4c6a9251416c75119c35", "cast_id": 7, "profile_path": "/hwgTgqFLFwTBesbCAKtWa1ARrp7.jpg", "order": 2}, {"name": "Robin Williams", "character": "Theodore Roosevelt", "id": 2157, "credit_id": "53454d730e0a267bc0001b04", "cast_id": 10, "profile_path": "/5KebSMXT8uj2D0gkaMFJ8VEp53.jpg", "order": 3}, {"name": "Owen Wilson", "character": "Jedediah Smith", "id": 887, "credit_id": "53454dc60e0a267bc0001b0a", "cast_id": 13, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 4}, {"name": "Dick Van Dyke", "character": "Cecil", "id": 61303, "credit_id": "537d3556c3a368059200001c", "cast_id": 15, "profile_path": "/2yacO5K2VG82B0356XVB1ManB6R.jpg", "order": 5}, {"name": "Rachael Harris", "character": "Madeline Phelps", "id": 46074, "credit_id": "537d3565c3a3680595000020", "cast_id": 16, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Ankmenrah's father", "id": 2282, "credit_id": "52fe4c6a9251416c75119c39", "cast_id": 8, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "Ricky Gervais", "character": "Dr. McPhee", "id": 17835, "credit_id": "52fe4c6a9251416c75119c1b", "cast_id": 2, "profile_path": "/Ar8i0W8jOXYFiqUjWk10hjuNtxy.jpg", "order": 8}, {"name": "Mickey Rooney", "character": "Gus", "id": 1937, "credit_id": "53454cf00e0a267bcd001b29", "cast_id": 9, "profile_path": "/bgCm55k2eo2YV5bMn3D0O4NPwU.jpg", "order": 9}, {"name": "Dan Stevens", "character": "Sir Lancelot", "id": 221018, "credit_id": "52fe4c6a9251416c75119c1f", "cast_id": 3, "profile_path": "/jNiY649MK85UFMosJIDxJ9HgIsC.jpg", "order": 10}, {"name": "Skyler Gisondo", "character": "Nick Daley", "id": 61263, "credit_id": "537d3588c3a36805a8000018", "cast_id": 17, "profile_path": "/aA6PhyCQy32YZwOitQva10hjcq5.jpg", "order": 11}, {"name": "Mizuo Peck", "character": "Sacajawea", "id": 17841, "credit_id": "537d3594c3a3680598000021", "cast_id": 18, "profile_path": "/ohnloj1aKehzgbupxszmgdvdHS3.jpg", "order": 12}, {"name": "Bill Cobbs", "character": "Reginald", "id": 8854, "credit_id": "537d359ec3a368059b00001c", "cast_id": 19, "profile_path": "/ECNKEckbLF2m56COMxKn3U8Ytp.jpg", "order": 13}, {"name": "Brennan Elliott", "character": "Robert Fredericks", "id": 43458, "credit_id": "537d35a8c3a36805a100002e", "cast_id": 20, "profile_path": "/7Wilyo6uHlKK4IiD3HkzJriVEaZ.jpg", "order": 14}, {"name": "Steve Coogan", "character": "Octavius", "id": 4581, "credit_id": "54453b840e0a26633a007f37", "cast_id": 29, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 15}, {"name": "Patrick Gallagher", "character": "Attila the Hun", "id": 17837, "credit_id": "549b6bab925141312f002aab", "cast_id": 32, "profile_path": "/7uyV5Dgp7RD74rmDrlLMM2aagvJ.jpg", "order": 16}, {"name": "Andrea Martin", "character": "Rose (Archivist)", "id": 8263, "credit_id": "549b6bf49251413123002790", "cast_id": 33, "profile_path": "/vt4yKdu8dYOpDNCAZEVX634iBK9.jpg", "order": 17}, {"name": "Alice Eve", "character": "Herself", "id": 59860, "credit_id": "549b6c21c3a3682f23002911", "cast_id": 34, "profile_path": "/G3YOQbFMnPGBO5LrN3WJTs2kJf.jpg", "order": 18}, {"name": "Hugh Jackman", "character": "Himself", "id": 6968, "credit_id": "549b6c32925141312f002abb", "cast_id": 35, "profile_path": "/xl7x58IY1AzoFaXtMoQwDqjb7qm.jpg", "order": 19}, {"name": "Crystal the Monkey", "character": "Dexter", "id": 1428580, "credit_id": "550a870fc3a3684883000edf", "cast_id": 36, "profile_path": "/jClb26jCOX9ZV99A6p88RdEunFk.jpg", "order": 20}], "directors": [{"name": "Shawn Levy", "department": "Directing", "job": "Director", "credit_id": "52fe4c6a9251416c75119c25", "profile_path": "/7f2f8EXdlWsPYN0HPGcIlG21xU.jpg", "id": 17825}], "vote_average": 6.3, "runtime": 97}, "2675": {"poster_path": "/bY9lCUVUajpkKWlfjWF1mtXaSUp.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 408247917, "overview": "A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.", "video": false, "id": 2675, "genres": [{"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Signs", "tagline": "It\u2019s not like they didn\u2019t warn us.", "vote_count": 331, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pt", "name": "Portugu\u00eas"}], "imdb_id": "tt0286106", "adult": false, "backdrop_path": "/ksyOtfDvn3eZZIfEcoRy87YUiwL.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "Blinding Edge Pictures", "id": 12236}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2002-08-02", "popularity": 0.753270234191487, "original_title": "Signs", "budget": 72000000, "cast": [{"name": "Mel Gibson", "character": "Rev. Graham Hess", "id": 2461, "credit_id": "52fe4364c3a36847f805100b", "cast_id": 2, "profile_path": "/6VGgL0bBvPIJ9vDOyyGf5nK2zL4.jpg", "order": 0}, {"name": "Joaquin Phoenix", "character": "Merrill Hess", "id": 73421, "credit_id": "52fe4364c3a36847f805103f", "cast_id": 11, "profile_path": "/3IhxPwyUovZGbsdwhcaU0Kvm37J.jpg", "order": 1}, {"name": "Rory Culkin", "character": "Morgan Hess", "id": 28042, "credit_id": "52fe4364c3a36847f8051043", "cast_id": 12, "profile_path": "/ceb0M0ikZj8kg5oXfGr5wi1MDc6.jpg", "order": 2}, {"name": "Abigail Breslin", "character": "Bo Hess", "id": 17140, "credit_id": "52fe4364c3a36847f8051047", "cast_id": 13, "profile_path": "/y3L3fx9J4EpYpsMboJk5UeW4VhE.jpg", "order": 3}, {"name": "Cherry Jones", "character": "Officer Paski", "id": 1956, "credit_id": "52fe4364c3a36847f805104b", "cast_id": 14, "profile_path": "/vhJQCBWah9L84HefqvJt8fyf7y7.jpg", "order": 4}, {"name": "M. Night Shyamalan", "character": "Ray Reddy", "id": 11614, "credit_id": "52fe4364c3a36847f805104f", "cast_id": 15, "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "order": 5}, {"name": "Patricia Kalember", "character": "Colleen Hess", "id": 23627, "credit_id": "52fe4364c3a36847f8051053", "cast_id": 16, "profile_path": "/zj0sozm8MPcZOkoxIXX5m7uPokn.jpg", "order": 6}, {"name": "Ted Sutton", "character": "SFC Cunningham", "id": 28043, "credit_id": "52fe4364c3a36847f8051057", "cast_id": 17, "profile_path": "/8aqC9afqEiHOwvkIgCVcPxgEyhc.jpg", "order": 7}, {"name": "Merritt Wever", "character": "Tracey Abernathy, die Apothekerin", "id": 28044, "credit_id": "52fe4364c3a36847f805105b", "cast_id": 18, "profile_path": "/scrfqDWvfyRBZlVvTEJvZbJxcER.jpg", "order": 8}, {"name": "Marion McCorry", "character": "Mrs. Nathan", "id": 28046, "credit_id": "52fe4364c3a36847f805105f", "cast_id": 20, "profile_path": "/kLyiSUWs9kmRG1UurMSAJNMg59E.jpg", "order": 10}, {"name": "Michael Showalter", "character": "Lionel Prichard", "id": 22215, "credit_id": "52fe4364c3a36847f8051063", "cast_id": 21, "profile_path": "/5lYlx2Rxrigh1UZqAjviYWNt9md.jpg", "order": 11}, {"name": "Kevin Pires", "character": "Brasilianischer Geburtstags Junge", "id": 28047, "credit_id": "52fe4364c3a36847f8051067", "cast_id": 22, "profile_path": null, "order": 12}, {"name": "Clifford David", "character": "Professor der an Columbia Universit\u00e4t", "id": 28048, "credit_id": "52fe4364c3a36847f805106b", "cast_id": 23, "profile_path": "/nRj0mmoXqn2Q1U9x7rELesrzMOQ.jpg", "order": 13}, {"name": "Rhonda Overby", "character": "Sarah Hughes", "id": 28049, "credit_id": "52fe4364c3a36847f805106f", "cast_id": 24, "profile_path": "/qP5uteKafc8Jto9LtWNLFo9SCR8.jpg", "order": 14}, {"name": "Lanny Flaherty", "character": "Mr. Nathan", "id": 3204, "credit_id": "52fe4364c3a36847f8051079", "cast_id": 26, "profile_path": "/tu6UZVHRKRNLbtmHUsjHWHctprz.jpg", "order": 15}], "directors": [{"name": "M. Night Shyamalan", "department": "Directing", "job": "Director", "credit_id": "52fe4364c3a36847f8051007", "profile_path": "/1svjYDUtS8300HhHMZXiUfMR00i.jpg", "id": 11614}], "vote_average": 6.3, "runtime": 106}, "12233": {"poster_path": "/m54pXsIUy3IJoaGhk3RwKsZQPG8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "This animated take on Oliver Twist re-imagines Oliver as an adorable orphaned kitten who struggles to survive in New York City and falls in with a band of canine criminals led by an evil human. First, Oliver meets Dodger, a carefree mutt with street savoir faire. But when Oliver meets wealthy Jenny on one of the gang's thieving missions, his life changes forever.", "video": false, "id": 12233, "genres": [{"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Oliver & Company", "tagline": "The first Disney movie with attitude.", "vote_count": 90, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0095776", "adult": false, "backdrop_path": "/9kgZc7BRePE2AHqWgF1DBrggQ8J.jpg", "production_companies": [{"name": "Walt Disney Pictures", "id": 2}, {"name": "Silver Screen Partners III", "id": 554}], "release_date": "1988-11-18", "popularity": 0.941288063754801, "original_title": "Oliver & Company", "budget": 0, "cast": [{"name": "Joey Lawrence", "character": "Oliver (voice)", "id": 51750, "credit_id": "52fe44cf9251416c75041c0d", "cast_id": 1, "profile_path": "/oFSF7c9nowbtKU3CK7WKGIm9SuQ.jpg", "order": 0}, {"name": "Billy Joel", "character": "Dodger (voice)", "id": 71791, "credit_id": "52fe44cf9251416c75041c11", "cast_id": 2, "profile_path": "/sXnzN7gfuNoIY1kv422guWYquvx.jpg", "order": 1}, {"name": "Cheech Marin", "character": "Tito (voice)", "id": 11159, "credit_id": "52fe44cf9251416c75041c15", "cast_id": 3, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 2}, {"name": "Richard Mulligan", "character": "Einstein (voice)", "id": 58661, "credit_id": "52fe44cf9251416c75041c19", "cast_id": 4, "profile_path": "/8WhTCXvnAZgfOMQJEZK7DFJcJJI.jpg", "order": 3}, {"name": "Roscoe Lee Browne", "character": "Francis (voice)", "id": 24368, "credit_id": "52fe44cf9251416c75041c1d", "cast_id": 5, "profile_path": "/m0Q5VCyjcXXN5w6MHulOMD1r6ZK.jpg", "order": 4}, {"name": "Sheryl Lee Ralph", "character": "Rita (voice)", "id": 33613, "credit_id": "52fe44cf9251416c75041c21", "cast_id": 6, "profile_path": "/sdd9mXYACgINvzY6uB8flchcUnC.jpg", "order": 5}, {"name": "Dom DeLuise", "character": "Fagin (voice)", "id": 6844, "credit_id": "52fe44cf9251416c75041c61", "cast_id": 17, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 6}, {"name": "Taurean Blacque", "character": "Roscoe (voice)", "id": 70003, "credit_id": "52fe44cf9251416c75041c65", "cast_id": 18, "profile_path": "/28k0MReMW0lYMICw2h74L7MFJPI.jpg", "order": 7}, {"name": "Carl Weintraub", "character": "Desoto (voice)", "id": 157140, "credit_id": "52fe44cf9251416c75041c69", "cast_id": 19, "profile_path": "/fYsFbi57VL49hwCLg6CReiDsbDJ.jpg", "order": 8}, {"name": "Robert Loggia", "character": "Sykes (voice)", "id": 1162, "credit_id": "52fe44cf9251416c75041c6d", "cast_id": 20, "profile_path": "/7xtU12KT12xjy4UY1O6VKpw7FLx.jpg", "order": 9}, {"name": "Natalie Gregory", "character": "Jenny (voice)", "id": 112568, "credit_id": "52fe44cf9251416c75041c71", "cast_id": 21, "profile_path": "/oJ0nbAEFRktkb4sLNC24KTIWVQI.jpg", "order": 10}, {"name": "William Glover", "character": "Winston (voice)", "id": 175078, "credit_id": "52fe44cf9251416c75041c75", "cast_id": 22, "profile_path": "/cBtbH3jCG8AHNk7SXrRcSlbfk9Y.jpg", "order": 11}, {"name": "Bette Midler", "character": "Carlo (voice)", "id": 73931, "credit_id": "52fe44cf9251416c75041c79", "cast_id": 23, "profile_path": "/uLMiatTraccalXoqM4eA9YfYIM6.jpg", "order": 12}, {"name": "Deborah Gates", "character": "Additional Voice (voice)", "id": 128272, "credit_id": "52fe44cf9251416c75041c7d", "cast_id": 24, "profile_path": "/8D5dRcVmNbU43M7NZF9xtNbVQDx.jpg", "order": 13}, {"name": "Charles Bartlett", "character": "Additional Voice (voice)", "id": 1229258, "credit_id": "54dfa930c3a36855c7001b57", "cast_id": 33, "profile_path": null, "order": 14}, {"name": "Jonathan Brandis", "character": "Additional Voice (voice)", "id": 27773, "credit_id": "52fe44cf9251416c75041c85", "cast_id": 26, "profile_path": "/dWKS1zkrHt1mtaTuAjQNr6nNnlb.jpg", "order": 16}, {"name": "Kal David", "character": "Additional Voice (voice)", "id": 1077923, "credit_id": "52fe44cf9251416c75041c89", "cast_id": 27, "profile_path": null, "order": 17}, {"name": "Marcia Del Mar", "character": "Additional Voice (voice)", "id": 1014817, "credit_id": "52fe44cf9251416c75041c8d", "cast_id": 28, "profile_path": null, "order": 18}, {"name": "Victor DiMattia", "character": "Additional Voice (voice)", "id": 939799, "credit_id": "52fe44cf9251416c75041c91", "cast_id": 29, "profile_path": "/3UsT53aqWYmlmXwgYuqUE8OyZuS.jpg", "order": 19}, {"name": "Judi M. Durand", "character": "Additional Voice (voice)", "id": 949895, "credit_id": "52fe44cf9251416c75041c95", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Greg Finley", "character": "Additional Voice (voice)", "id": 30029, "credit_id": "52fe44cf9251416c75041c99", "cast_id": 31, "profile_path": "/uSh4hjwQ80gc61h1mlg7bnMQTtD.jpg", "order": 21}, {"name": "Javier Grajeda", "character": "Additional Voice (voice)", "id": 66148, "credit_id": "52fe44d09251416c75041c9d", "cast_id": 32, "profile_path": "/btMQzeHaFkUDzRjBccPy16yjER.jpg", "order": 22}], "directors": [{"name": "George Scribner", "department": "Directing", "job": "Director", "credit_id": "52fe44cf9251416c75041c27", "profile_path": null, "id": 71792}], "vote_average": 6.1, "runtime": 74}, "24253": {"poster_path": "/qHRpU2d9NWB0WDulwgFwg6a9JRK.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "DK", "name": "Denmark"}, {"iso_3166_1": "SE", "name": "Sweden"}], "revenue": 66995253, "overview": "Mikael Blomkvist, publisher of Millennium magazine, has made his living exposing the crooked and corrupt practices of establishment Swedish figures. So when a young journalist approaches him with a meticulously researched thesis about sex trafficking in Sweden and those in high office who abuse underage girls, Blomkvist immediately throws himself into the investigation.", "video": false, "id": 24253, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Girl Who Played with Fire", "tagline": "Fight Fire with Fire", "vote_count": 206, "homepage": "http://dragontattoofilm.com/about-5/the-girl-who-played-with-fire/", "belongs_to_collection": {"backdrop_path": "/9wLsZPhI7ZafO4fh1MhwCjvkclN.jpg", "poster_path": "/sLeE5pwX9cle1v1TpBylT9MeYJ2.jpg", "id": 24761, "name": "The Millennium Collection"}, "original_language": "sv", "status": "Released", "spoken_languages": [{"iso_639_1": "sv", "name": "svenska"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1216487", "adult": false, "backdrop_path": "/qMDiCjxfv6Y8JN2DFViTX5D1ORH.jpg", "production_companies": [{"name": "Svenska Filminstitutet (SFI)", "id": 7446}, {"name": "ZDF Enterprises", "id": 5747}, {"name": "Sveriges Television (SVT)", "id": 3221}, {"name": "Nordisk Film", "id": 235}, {"name": "Zweites Deutsches Fernsehen (ZDF)", "id": 4606}, {"name": "Filmpool Stockholm M\u00e4lardalen", "id": 33821}, {"name": "Film i V\u00e4st", "id": 17513}, {"name": "Spiltan Underh\u00e5llning", "id": 33822}], "release_date": "2009-09-18", "popularity": 0.549630484644865, "original_title": "Flickan som lekte med elden", "budget": 4000000, "cast": [{"name": "Michael Nyqvist", "character": "Mikael Blomkvist", "id": 6283, "credit_id": "52fe448cc3a368484e029195", "cast_id": 2, "profile_path": "/bDjPDDiSna8FN5rqHdheg2wIYYo.jpg", "order": 0}, {"name": "Noomi Rapace", "character": "Lisbeth Salander", "id": 87722, "credit_id": "52fe448cc3a368484e029191", "cast_id": 1, "profile_path": "/nFD1t8MSFpgNcFgOLwEj9es9u2H.jpg", "order": 1}, {"name": "Lena Endre", "character": "Erika Berger", "id": 79196, "credit_id": "52fe448cc3a368484e029199", "cast_id": 3, "profile_path": "/AqDZhToc9r7tixhz2PQy6MWoIYr.jpg", "order": 2}, {"name": "Peter Andersson", "character": "Nils Bjurman", "id": 21193, "credit_id": "52fe448cc3a368484e0291a1", "cast_id": 5, "profile_path": "/lWbWHUMAeEmTuNyXBMSzqzCbFOc.jpg", "order": 3}, {"name": "Annika Hallin", "character": "Annika Giannini", "id": 79270, "credit_id": "52fe448cc3a368484e0291a5", "cast_id": 6, "profile_path": "/xvbhvw0Zt8SCNXVApudzZfd6X2p.jpg", "order": 4}, {"name": "Per Oscarsson", "character": "Holger Palmgren", "id": 3855, "credit_id": "52fe448cc3a368484e0291ad", "cast_id": 8, "profile_path": "/qCSUP6c7jz8kgJrGEX4tKDf8emr.jpg", "order": 5}, {"name": "Sofia Ledarp", "character": "Malin Erikson", "id": 83899, "credit_id": "52fe448cc3a368484e02919d", "cast_id": 4, "profile_path": "/wYtfaMlSFX7iDpk00xtVuz0Hzof.jpg", "order": 6}, {"name": "Micke Spreitz", "character": "Ronald Niedermann", "id": 92644, "credit_id": "52fe448cc3a368484e0291a9", "cast_id": 7, "profile_path": null, "order": 7}, {"name": "Georgi Staykov", "character": "Alexander Zalachenko", "id": 92645, "credit_id": "52fe448cc3a368484e0291b1", "cast_id": 9, "profile_path": "/uuf8Vkg1hU3jeT1gE0H98UE56Lz.jpg", "order": 8}, {"name": "Paolo Roberto", "character": "Himself", "id": 929148, "credit_id": "53d4e67d0e0a262844003c38", "cast_id": 18, "profile_path": null, "order": 9}, {"name": "Yasmine Garbi", "character": "Miriam 'Mimmi' Wu", "id": 234908, "credit_id": "53d4e6b80e0a262838003cac", "cast_id": 19, "profile_path": null, "order": 10}, {"name": "Micke Spreitz", "character": "Ronald Niedermann", "id": 92644, "credit_id": "53d4e831c3a3686b910038ec", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Tanja Lorentzon", "character": "Sonja Modig", "id": 106659, "credit_id": "53d4e875c3a3686b85003792", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Magnus Krepper", "character": "Hans Faste", "id": 143391, "credit_id": "53d4e89dc3a3686b910038f8", "cast_id": 22, "profile_path": "/iHJ5HM0bV5UfogcOobnKJtyJklf.jpg", "order": 13}, {"name": "Ralph Carlsson", "character": "Gunnar Bj\u00f6rk", "id": 114580, "credit_id": "53d4e8cbc3a3686b940036d8", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Hans-Christian Thulin", "character": "Dag Svensson", "id": 1042033, "credit_id": "53d4e921c3a3686b91003909", "cast_id": 24, "profile_path": null, "order": 15}, {"name": "Michalis Koutsogiannakis", "character": "Dragan Armanskij", "id": 92897, "credit_id": "53d4e954c3a3686b850037ab", "cast_id": 25, "profile_path": "/ne1BlRr5i2yFTC7vj8MQoznACPf.jpg", "order": 16}], "directors": [{"name": "Daniel Alfredson", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a368484e0291b7", "profile_path": "/252U4sFKLzHLb53Lha2pG5D01Gb.jpg", "id": 76325}], "vote_average": 6.9, "runtime": 129}, "48838": {"poster_path": "/dYdfVHlKmHRJi1JcywGWS4gwOu4.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 4644108, "overview": "A parolee battles a gangster for the affections of a reclusive movie star.", "video": false, "id": 48838, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "London Boulevard", "tagline": "Not every criminal wants to be one.", "vote_count": 79, "homepage": "http://www.ifcfilms.com/films/london-boulevard", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1213648", "adult": false, "backdrop_path": "/asSgXEMQkZsSpeFBoifRhsshq92.jpg", "production_companies": [{"name": "London Boulevard", "id": 43792}, {"name": "GK Films", "id": 3281}, {"name": "Henceforth", "id": 6899}, {"name": "Projection Pictures", "id": 21923}], "release_date": "2010-11-10", "popularity": 0.431286316226779, "original_title": "London Boulevard", "budget": 25000000, "cast": [{"name": "Keira Knightley", "character": "Charlotte", "id": 116, "credit_id": "52fe4777c3a36847f813757d", "cast_id": 11, "profile_path": "/b0caJEMemER98VGJTdgV436XJYR.jpg", "order": 0}, {"name": "Colin Farrell", "character": "Mitchell", "id": 72466, "credit_id": "52fe4777c3a36847f8137581", "cast_id": 12, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 1}, {"name": "Anna Friel", "character": "Briony", "id": 58016, "credit_id": "52fe4777c3a36847f8137585", "cast_id": 13, "profile_path": "/iqSbqT143dNikAoC3lmkc3R6LS7.jpg", "order": 2}, {"name": "Ray Winstone", "character": "Gant", "id": 5538, "credit_id": "52fe4777c3a36847f8137589", "cast_id": 14, "profile_path": "/kLh8zKA9M8dCOvr44dGdczxMoz4.jpg", "order": 3}, {"name": "Jamie Campbell Bower", "character": "White Boy", "id": 83356, "credit_id": "52fe4777c3a36847f813758d", "cast_id": 15, "profile_path": "/sx7gRD2w9vyld9ng2gTCew3CoxG.jpg", "order": 4}, {"name": "David Thewlis", "character": "Jordan", "id": 11207, "credit_id": "52fe4777c3a36847f8137591", "cast_id": 17, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 5}, {"name": "Ophelia Lovibond", "character": "Penny", "id": 82639, "credit_id": "52fe4777c3a36847f8137595", "cast_id": 18, "profile_path": "/9aPRtM9omIe2hB48yJEdyqyBNdy.jpg", "order": 6}, {"name": "Eddie Marsan", "character": "DI Bailey", "id": 1665, "credit_id": "52fe4777c3a36847f8137599", "cast_id": 19, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 7}, {"name": "Ben Chaplin", "character": "Billy", "id": 21343, "credit_id": "52fe4777c3a36847f813759d", "cast_id": 20, "profile_path": "/6isUJ1s5U1QfPgNDkK8nTEjlb5X.jpg", "order": 8}, {"name": "Matt King", "character": "Fletcher", "id": 23776, "credit_id": "52fe4777c3a36847f81375a1", "cast_id": 21, "profile_path": "/t9VKFHLXImMX5ubbfpzVFTk5qAJ.jpg", "order": 9}, {"name": "Donald Sumpter", "character": "Pentonville Governor", "id": 20425, "credit_id": "52fe4777c3a36847f81375a5", "cast_id": 22, "profile_path": "/gqNTtHmpiUs4bbGhHTNPSJUR6ZW.jpg", "order": 10}, {"name": "Velibor Topi\u0107", "character": "Storbor", "id": 34515, "credit_id": "52fe4777c3a36847f81375a9", "cast_id": 23, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 11}, {"name": "Lee Boardman", "character": "Lee", "id": 138161, "credit_id": "52fe4777c3a36847f81375ad", "cast_id": 24, "profile_path": "/vdDKY1VzdlUOxkNa9Gn2KsUjbhq.jpg", "order": 12}, {"name": "Andrew Havill", "character": "Unlikely Vagrant", "id": 176191, "credit_id": "52fe4778c3a36847f81375b1", "cast_id": 25, "profile_path": "/xB63b89jPzJ4epvZ0a8maPGdgCI.jpg", "order": 13}, {"name": "Stephen Graham", "character": "Danny", "id": 1115, "credit_id": "52fe4778c3a36847f81375b5", "cast_id": 26, "profile_path": "/81VZiCA6w8nXG0UjqXCgSJare5N.jpg", "order": 14}, {"name": "Jonny Coyne", "character": "Heavy One (as Jonathan Coyne)", "id": 1323612, "credit_id": "538063f8c3a36805a1004b8e", "cast_id": 27, "profile_path": "/ahErjJI8W9RGBCky2rB3W2vFbIm.jpg", "order": 15}], "directors": [{"name": "William Monahan", "department": "Directing", "job": "Director", "credit_id": "52fe4777c3a36847f8137573", "profile_path": null, "id": 34510}], "vote_average": 5.7, "runtime": 103}, "40662": {"poster_path": "/78kjgspmLLOm2Glgpzqo9cS4GpI.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 6629178, "overview": "Batman faces his ultimate challenge as the mysterious Red Hood takes Gotham City by firestorm. One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code.", "video": false, "id": 40662, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 9648, "name": "Mystery"}, {"id": 878, "name": "Science Fiction"}], "title": "Batman: Under the Red Hood", "tagline": "Dare to Look Beneath the Hood.", "vote_count": 157, "homepage": "http://www.warnervideo.com/batmanredhood/", "belongs_to_collection": {"backdrop_path": null, "poster_path": null, "id": 314036, "name": "Batman - DC Universe Animated Movies - Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1569923", "adult": false, "backdrop_path": "/rHNz1AlYG0S9J3CGp9ObSFxUyMH.jpg", "production_companies": [{"name": "DC Comics", "id": 429}, {"name": "Warner Bros. Animation", "id": 2785}], "release_date": "2010-07-27", "popularity": 0.697983174700856, "original_title": "Batman: Under the Red Hood", "budget": 0, "cast": [{"name": "Bruce Greenwood", "character": "Bruce Wayne/Batman", "id": 21089, "credit_id": "52fe459dc3a36847f80d0e99", "cast_id": 3, "profile_path": "/his8sEwC8FLC4dAxVSu9GNicE6Z.jpg", "order": 0}, {"name": "Jensen Ackles", "character": "Red Hood", "id": 49624, "credit_id": "52fe459dc3a36847f80d0e9d", "cast_id": 4, "profile_path": "/3PEwDCpJwA6ZKzD1hJdp334EGbp.jpg", "order": 1}, {"name": "Neil Patrick Harris", "character": "Dick Grayson/Nightwing", "id": 41686, "credit_id": "52fe459dc3a36847f80d0ea1", "cast_id": 5, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 2}, {"name": "Jason Isaacs", "character": "Ra's al Ghul", "id": 11355, "credit_id": "52fe459dc3a36847f80d0ea5", "cast_id": 6, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 3}, {"name": "John Di Maggio", "character": "The Joker", "id": 31531, "credit_id": "52fe459dc3a36847f80d0ea9", "cast_id": 7, "profile_path": "/tVCwtiAHQo7EjVdtbj7FqYqsSyc.jpg", "order": 4}, {"name": "Wade Williams", "character": "Black Mask", "id": 51930, "credit_id": "533009dbc3a3685fb30062ca", "cast_id": 27, "profile_path": "/wCH994G5kzIEhGqgdzfZNXrSRif.jpg", "order": 5}, {"name": "Carlos Alazraqui", "character": "Chi Chi / Thug #1 / Baton", "id": 59784, "credit_id": "52fe459dc3a36847f80d0eb7", "cast_id": 10, "profile_path": "/o62NevO1Vt9n1MdYsWOsDyhUt3A.jpg", "order": 6}, {"name": "Robert Clotworthy", "character": "Leon / Thug", "id": 35172, "credit_id": "52fe459dc3a36847f80d0ebb", "cast_id": 11, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 7}, {"name": "Gary Cole", "character": "Bobo / Commissioner Gordon / Shot / Guard", "id": 21163, "credit_id": "52fe459dc3a36847f80d0ebf", "cast_id": 12, "profile_path": "/yk3HecThETfRIaMF2NKLhJElsbQ.jpg", "order": 8}, {"name": "Brian George", "character": "Ra's Assistant", "id": 58511, "credit_id": "52fe459dc3a36847f80d0ec3", "cast_id": 13, "profile_path": "/g0bVyXsHDhRhd5WuQwRQDv2TkG9.jpg", "order": 9}, {"name": "Kelly Hu", "character": "Ms. Li", "id": 11024, "credit_id": "52fe459dc3a36847f80d0ec7", "cast_id": 14, "profile_path": "/ldIqkVNQoig6tFdF6b1ql1iylAD.jpg", "order": 10}, {"name": "Phil LaMarr", "character": "Rick / Bulk", "id": 31549, "credit_id": "52fe459dc3a36847f80d0ef3", "cast_id": 26, "profile_path": "/zqWHyTaYikghmqiZ5EpJppcy4pE.jpg", "order": 11}, {"name": "Alexander Martella", "character": "Young Robin / Jason Todd", "id": 1128886, "credit_id": "52fe459dc3a36847f80d0ecb", "cast_id": 16, "profile_path": null, "order": 12}, {"name": "Vincent Martella", "character": "Robin / Jason Todd", "id": 188024, "credit_id": "52fe459dc3a36847f80d0ecf", "cast_id": 17, "profile_path": "/oj6wwVmB0NgGPk9jqKkYWNVC9vz.jpg", "order": 13}, {"name": "Jim Piddock", "character": "Alfred Pennyworth", "id": 120560, "credit_id": "52fe459dc3a36847f80d0ed3", "cast_id": 18, "profile_path": "/vdsY1X3LBvXzX84kl9sxCNaTxjw.jpg", "order": 14}, {"name": "Kevin Michael Richardson", "character": "Tyler Bramford", "id": 24362, "credit_id": "52fe459dc3a36847f80d0ed7", "cast_id": 19, "profile_path": "/tT7FG2txNnH6INi9MeQ3NW7r6Y9.jpg", "order": 15}, {"name": "Andrea Romano", "character": "Reporter #1", "id": 34945, "credit_id": "52fe459dc3a36847f80d0edb", "cast_id": 20, "profile_path": "/1XTwon7oYI6nl9YWtrYC4AkjgID.jpg", "order": 16}, {"name": "Dwight Schultz", "character": "Freddie / Drug Dealer", "id": 28248, "credit_id": "52fe459dc3a36847f80d0edf", "cast_id": 21, "profile_path": "/lvhnIeUHMUvjfxRS2xWeF6xbsJc.jpg", "order": 17}, {"name": "Fred Tatasciore", "character": "Mercenary #1 / Amazo / Guard", "id": 60279, "credit_id": "52fe459dc3a36847f80d0ee3", "cast_id": 22, "profile_path": "/lNe4zn9fJ302GehQVaFk5BNcGGM.jpg", "order": 18}, {"name": "Keri Tombazian", "character": "Reporter #2 / Fearsome Hand Leader", "id": 1128887, "credit_id": "52fe459dc3a36847f80d0ee7", "cast_id": 23, "profile_path": null, "order": 19}, {"name": "Bruce Timm", "character": "The Riddler", "id": 34934, "credit_id": "52fe459dc3a36847f80d0eeb", "cast_id": 24, "profile_path": "/2MaucKEFexM0MMcpsHHbDtDVZbk.jpg", "order": 20}, {"name": "Michael Villani", "character": "Reporter #3", "id": 128267, "credit_id": "52fe459dc3a36847f80d0eef", "cast_id": 25, "profile_path": null, "order": 21}], "directors": [{"name": "Brandon Vietti", "department": "Directing", "job": "Director", "credit_id": "52fe459dc3a36847f80d0e8f", "profile_path": null, "id": 124279}], "vote_average": 7.4, "runtime": 75}, "196325": {"poster_path": "/pK9MmQdYpnbvXZmFo5enaw4SVqB.jpg", "production_countries": [{"iso_3166_1": "CN", "name": "China"}], "revenue": 88000000, "overview": "During the economic reform period of the 80\u2019s, three undergraduates bind together by a common ambition \u2013 to live the American dream. They are Cheng Dongqing, a hillbilly who refuses to accept his destiny of being a farmer; Meng Xiaojun, a self-confident, cynical intellectual; and Wang Yang, an idealistic romantic poet. Xiaojun is the first to obtain an US Visa for studying abroad. Yang follows but decides to remain in China for his beloved. Poor Dongqing is rejected by the US Embassy repeatedly. Baffled, he reluctantly accepts the job as an English instructor in the university but eventually gets fired for teaching tutorial classes in private. Across the Pacific, Xiaojun fails to find a decent job and is driven to work as a busboy in a diner.", "video": false, "id": 196325, "genres": [{"id": 18, "name": "Drama"}], "title": "American Dreams in China", "tagline": "", "vote_count": 52, "homepage": "", "belongs_to_collection": null, "original_language": "zh", "status": "Released", "spoken_languages": [{"iso_639_1": "zh", "name": "\u4e2d\u56fd"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2278392", "adult": false, "backdrop_path": "/kbuvi3b2EgqG2KILdbdrcEmhivg.jpg", "production_companies": [{"name": "China Film Group Corporation (CFGC)", "id": 14714}, {"name": "Enlight Pictures", "id": 4053}], "release_date": "2013-05-18", "popularity": 0.0664028036418384, "original_title": "\u4e2d\u56fd\u5408\u4f19\u4eba", "budget": 0, "cast": [{"name": "Huang Xiaoming", "character": "Cheng Dongqing", "id": 109434, "credit_id": "52fe4d2c9251416c9110d221", "cast_id": 1, "profile_path": "/lsJtypOH5BXvIVKk9trdckqUIlR.jpg", "order": 0}, {"name": "Deng Chao", "character": "Meng Xiaojun", "id": 99689, "credit_id": "52fe4d2c9251416c9110d225", "cast_id": 2, "profile_path": "/dz351d0VeDsExPMggWZaQfmyFAB.jpg", "order": 1}, {"name": "Tong Dawei", "character": "Wang Yang", "id": 1031246, "credit_id": "52fe4d2c9251416c9110d229", "cast_id": 3, "profile_path": "/ef7XGxTVz71AyeA5fYd66c21Bbg.jpg", "order": 2}, {"name": "Du Juan", "character": "", "id": 1374141, "credit_id": "543df1ddc3a36825170012cf", "cast_id": 9, "profile_path": null, "order": 3}], "directors": [{"name": "Peter Chan", "department": "Directing", "job": "Director", "credit_id": "52fe4d2c9251416c9110d22f", "profile_path": "/zg3cqkxlB4Ybm1yFbRD5N0CU9fM.jpg", "id": 56739}], "vote_average": 7.0, "runtime": 112}, "212716": {"poster_path": "/wtTAUft8yvsQ954QbGIItlD9d7a.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 0, "overview": "A story of a young man and woman who struggle to navigate their friendship, which has developed a deep romantic undercurrent.", "video": false, "id": 212716, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "What If", "tagline": "...being friends has its benefits?", "vote_count": 174, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1486834", "adult": false, "backdrop_path": "/q9urivCCkANxSdlJopkat8aBu1j.jpg", "production_companies": [{"name": "Fastnet Films", "id": 5353}, {"name": "No Trace Camping", "id": 35846}, {"name": "Caramel Film", "id": 23108}], "release_date": "2013-09-07", "popularity": 1.28205421789893, "original_title": "What If", "budget": 0, "cast": [{"name": "Daniel Radcliffe", "character": "Wallace", "id": 10980, "credit_id": "52fe4db4c3a368484e1f8019", "cast_id": 5, "profile_path": "/yKqkvz9MiWF6LWuHkbjSU3xKd7I.jpg", "order": 0}, {"name": "Zoe Kazan", "character": "Chantry", "id": 35028, "credit_id": "52fe4db4c3a368484e1f801d", "cast_id": 7, "profile_path": "/awDUqd4RT61YlitAAKiIRr9FpiP.jpg", "order": 1}, {"name": "Rafe Spall", "character": "Ben", "id": 28847, "credit_id": "52fe4db4c3a368484e1f8021", "cast_id": 8, "profile_path": "/mPknxP1rKnzRQOS97WISuVavZyy.jpg", "order": 2}, {"name": "Megan Park", "character": "Dalia", "id": 55615, "credit_id": "52fe4db4c3a368484e1f8025", "cast_id": 9, "profile_path": "/AjIaQKbjMgYcJxalCBM4MGREss0.jpg", "order": 3}, {"name": "Adam Driver", "character": "Allan", "id": 1023139, "credit_id": "52fe4db4c3a368484e1f8029", "cast_id": 10, "profile_path": "/3F0dHgLoSOQT81z6KBzLBJmTSiF.jpg", "order": 4}, {"name": "Jemima Rooper", "character": "Ellie", "id": 62932, "credit_id": "52fe4db4c3a368484e1f802d", "cast_id": 11, "profile_path": "/2R1635Z7ezTXcbhEsCF39oteidZ.jpg", "order": 5}, {"name": "Meghan Heffern", "character": "Tabby", "id": 27004, "credit_id": "52fe4db4c3a368484e1f8031", "cast_id": 12, "profile_path": "/djl8gcKuGRREfR51UgF0TUfINwG.jpg", "order": 6}, {"name": "Jordan Hayes", "character": "Becky", "id": 239464, "credit_id": "52fe4db4c3a368484e1f8035", "cast_id": 13, "profile_path": "/aWV8O05SJuYRJ1ZZqUJ9YNdgoBh.jpg", "order": 7}, {"name": "Mackenzie Davis", "character": "Nicole", "id": 1110405, "credit_id": "52fe4db4c3a368484e1f8039", "cast_id": 14, "profile_path": "/csf5dxwk1IKeVA4xYgWsqp9sVCM.jpg", "order": 8}, {"name": "Vanessa Matsui", "character": "Saleswoman", "id": 978906, "credit_id": "52fe4db4c3a368484e1f803d", "cast_id": 15, "profile_path": "/K47Pa8ebusP9MSxmgiGECF8cXH.jpg", "order": 9}, {"name": "Sarah Gadon", "character": "Megan", "id": 190895, "credit_id": "53f5d6f3c3a36834070035b3", "cast_id": 16, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 10}, {"name": "Lucius Hoyos", "character": "Felix", "id": 1178763, "credit_id": "54b15f3d925141747e002197", "cast_id": 27, "profile_path": "/qLGb1mhjSdriSyC5jhgGwdHlFY7.jpg", "order": 11}, {"name": "Tommie-Amber Pirie", "character": "Gretchen", "id": 228332, "credit_id": "54b160f092514174790020ae", "cast_id": 28, "profile_path": "/iD07yPmb6hpA5G7Kep6wDPnG2BF.jpg", "order": 12}, {"name": "Jonathan Cherry", "character": "Josh", "id": 51937, "credit_id": "54b16261c3a36809400023d3", "cast_id": 29, "profile_path": "/9WpmG9INzrUeRO0OkzDMajo0K4v.jpg", "order": 13}, {"name": "Rebecca Northan", "character": "Holly", "id": 23535, "credit_id": "54b1634992514174790020f9", "cast_id": 30, "profile_path": "/idm46AJeOnOMyOfhz2nBWiAiIy5.jpg", "order": 14}, {"name": "Oona Chaplin", "character": "Julianne", "id": 566331, "credit_id": "54b164969251416fe1001a50", "cast_id": 31, "profile_path": "/25hiavig6bfXJ8DjLjbtIkM6mO1.jpg", "order": 15}, {"name": "Adam Fergus", "character": "Rolf", "id": 950197, "credit_id": "54b231b8c3a3682313000fd8", "cast_id": 32, "profile_path": "/iipRd0o7pWqevXkpU5umUkxXl2U.jpg", "order": 16}, {"name": "Sam Moses", "character": "Cabbie", "id": 185147, "credit_id": "54b2336e92514107e0002783", "cast_id": 33, "profile_path": "/sGYtyX8M4gvYJxWdiYYBvB9Dmjf.jpg", "order": 17}, {"name": "Ennis Esmer", "character": "Paramedic", "id": 101251, "credit_id": "54b233fcc3a368231300102c", "cast_id": 34, "profile_path": "/ioD0IGDuSnt5HRrBihHiR2cFvW.jpg", "order": 18}, {"name": "Mike Wilmot", "character": "Murray", "id": 1216471, "credit_id": "54b2379ac3a368094e003f9a", "cast_id": 35, "profile_path": "/iq5vstiLmAzKHTPoUabolzBhJet.jpg", "order": 19}, {"name": "George Tchortov", "character": "Bartender", "id": 1179445, "credit_id": "54b239c09251416fe1003028", "cast_id": 36, "profile_path": "/uZDfTdJiQQIhOVqSELlaxyUxpkO.jpg", "order": 20}, {"name": "Tamara Duarte", "character": "Cute Girl", "id": 1323878, "credit_id": "54b23befc3a368234600133f", "cast_id": 37, "profile_path": "/9hEJUiqbSnNGe1MKya2OPyCQ9De.jpg", "order": 21}, {"name": "Rosalind Feldman", "character": "Antique Employee", "id": 1412070, "credit_id": "54b23d89c3a368210c000de7", "cast_id": 38, "profile_path": "/adpTqLYrtNlzCpqXrM1V2Pcyd1s.jpg", "order": 22}, {"name": "Don Ritter", "character": "Karate Referee", "id": 1412074, "credit_id": "54b24152c3a36820a7000cdc", "cast_id": 39, "profile_path": null, "order": 23}], "directors": [{"name": "Michael Dowse", "department": "Directing", "job": "Director", "credit_id": "52fe4db4c3a368484e1f8003", "profile_path": null, "id": 71280}], "vote_average": 6.9, "runtime": 93}, "294652": {"poster_path": "/pJoofuXXnEsDu5U4L1L48qkgUPf.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}], "revenue": 0, "overview": "Locked up for a minor crime, 19 year old JR quickly learns the harsh realities of prison life. Protection, if you can get it, is paramount. JR soon finds himself under the watchful eye of Australia's most notorious criminal, Brendan Lynch, but protection comes at a price.", "video": false, "id": 294652, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "Son of a Gun", "tagline": "Everyone gets what they deserve", "vote_count": 51, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2452200", "adult": false, "backdrop_path": "/7UWPr9LUq3GizuZDG3e6PvSlvck.jpg", "production_companies": [{"name": "Media House Capital", "id": 13235}, {"name": "Altitude Film Entertainment", "id": 19638}, {"name": "Bridle Path Films", "id": 41636}], "release_date": "2014-10-16", "popularity": 1.92551487615436, "original_title": "Son of a Gun", "budget": 0, "cast": [{"name": "Ewan McGregor", "character": "Brendan", "id": 3061, "credit_id": "5422364bc3a368087a000643", "cast_id": 0, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 1}, {"name": "Brenton Thwaites", "character": "JR", "id": 1017347, "credit_id": "54223652c3a3680883000691", "cast_id": 1, "profile_path": "/cGk7TA4mcacQAdSOWAXC8br7GEp.jpg", "order": 2}, {"name": "Alicia Vikander", "character": "", "id": 227454, "credit_id": "549305309251410918001ac3", "cast_id": 4, "profile_path": "/659AARwEB0xDNdQOr8exRXGk3jA.jpg", "order": 3}, {"name": "Matthew Nable", "character": "Sterlo", "id": 123879, "credit_id": "5493053cc3a3683cfa00145e", "cast_id": 5, "profile_path": "/yE5MHKIUreuzL5bEgh8NTN8bSYe.jpg", "order": 4}, {"name": "Damon Herriman", "character": "Private Wilson", "id": 62752, "credit_id": "5493054bc3a3680efc0004ae", "cast_id": 6, "profile_path": "/dbf7CnLNuMl1sCScOD7MllimLMV.jpg", "order": 5}, {"name": "Nash Edgerton", "character": "Chris", "id": 75131, "credit_id": "54930554925141091300192e", "cast_id": 7, "profile_path": "/1lKEZ4rvjYzfSm5a3W7lIm8k3YN.jpg", "order": 6}, {"name": "Jacek Koman", "character": "Sam", "id": 12210, "credit_id": "54930560c3a3683cf8001a81", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Jesse McGinn", "character": "Swimsuit Girl", "id": 1400921, "credit_id": "5493056fc3a3683cf8001a8a", "cast_id": 9, "profile_path": null, "order": 8}], "directors": [{"name": "Julius Avery", "department": "Directing", "job": "Director", "credit_id": "5446a1c60e0a26632d00b7a9", "profile_path": null, "id": 1299642}], "vote_average": 6.2, "runtime": 108}, "188161": {"poster_path": "/12fqfvUmBOPg2pA0RsEhc31P28O.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.", "video": false, "id": 188161, "genres": [{"id": 35, "name": "Comedy"}, {"id": 37, "name": "Western"}], "title": "A Million Ways to Die in the West", "tagline": "Bring protection.", "vote_count": 545, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2557490", "adult": false, "backdrop_path": "/tkxiEwG9xJIbyzvJSGYUyTkz3Mj.jpg", "production_companies": [{"name": "RGB Media", "id": 31470}, {"name": "Bluegrass Films", "id": 27451}, {"name": "Fuzzy Door Productions", "id": 8789}, {"name": "Media Rights Capital", "id": 2531}], "release_date": "2014-05-30", "popularity": 1.64385816904557, "original_title": "A Million Ways to Die in the West", "budget": 0, "cast": [{"name": "Seth MacFarlane", "character": "Albert", "id": 52139, "credit_id": "52fe4d309251416c75132fb9", "cast_id": 5, "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "order": 0}, {"name": "Charlize Theron", "character": "Anna", "id": 6885, "credit_id": "52fe4d309251416c75132fbd", "cast_id": 6, "profile_path": "/fG0mtmBm3OsvKFucvoQyqBnVwya.jpg", "order": 1}, {"name": "Liam Neeson", "character": "Clinch", "id": 3896, "credit_id": "52fe4d309251416c75132fc1", "cast_id": 7, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 2}, {"name": "Amanda Seyfried", "character": "Louise", "id": 71070, "credit_id": "52fe4d309251416c75132fc5", "cast_id": 8, "profile_path": "/rxROWOeb6osSpZnrXZttCSuPqrI.jpg", "order": 3}, {"name": "Neil Patrick Harris", "character": "Foy", "id": 41686, "credit_id": "52fe4d309251416c75132fe1", "cast_id": 13, "profile_path": "/v5sCdjk0zxwSdFT4kmlVwu6M3Hb.jpg", "order": 4}, {"name": "Giovanni Ribisi", "character": "Edward", "id": 1771, "credit_id": "52fe4d309251416c75132fe5", "cast_id": 14, "profile_path": "/mLQrEU7X7GD5V7i1clGRqpg8PVk.jpg", "order": 5}, {"name": "Sarah Silverman", "character": "Ruth", "id": 7404, "credit_id": "52fe4d309251416c75132fe9", "cast_id": 15, "profile_path": "/AebAScTf671YojkpetdI1G9nIn2.jpg", "order": 6}, {"name": "Wes Studi", "character": "Cochise", "id": 15853, "credit_id": "532c8dde9251413a78000149", "cast_id": 16, "profile_path": "/xwmhqIx6HU2dACyZ2BxGnCWJoXz.jpg", "order": 7}, {"name": "Evan Jones", "character": "Lewis", "id": 333, "credit_id": "532c8de79251413a7b00012c", "cast_id": 17, "profile_path": "/l3HyrWJQZtb6GMmljTfbDR0Ve65.jpg", "order": 8}, {"name": "Preston Bailey", "character": "Young Albert", "id": 80378, "credit_id": "532c8df29251413a72000132", "cast_id": 18, "profile_path": "/d1zkkK3olnyHAVkFGiKqpB2NCcp.jpg", "order": 9}, {"name": "Ralph Garman", "character": "Dan", "id": 60286, "credit_id": "532c8dfa9251413a7800014c", "cast_id": 19, "profile_path": "/vMzb4yCslLhJb7CQkS3R1jbyCO6.jpg", "order": 10}, {"name": "Challen Cates", "character": "Female Passenger", "id": 175570, "credit_id": "532c8e0d9251413a72000137", "cast_id": 20, "profile_path": "/ds3mSbHCMF5WfUoklNXxfyJP2VV.jpg", "order": 11}, {"name": "Dennis Haskins", "character": "Montgomery", "id": 19190, "credit_id": "532c8e199251413a81000174", "cast_id": 21, "profile_path": "/hcC0zWG5iyl6rJBCEbP98mn5HTu.jpg", "order": 12}, {"name": "Rex Linn", "character": "Sheriff / Narrator", "id": 16937, "credit_id": "532c8e229251413a75000105", "cast_id": 22, "profile_path": "/2ze2PNirf4vle9sWRkSxHgv1iH0.jpg", "order": 13}, {"name": "Christopher Lloyd", "character": "Doc Brown", "id": 1062, "credit_id": "5474f755c3a3683e3f001e77", "cast_id": 37, "profile_path": "/iQzG9apaIsHnn7iGrer3YEDp8Zo.jpg", "order": 14}, {"name": "Matt Clark", "character": "Old Prospector", "id": 2454, "credit_id": "5474f7aa9251413981002ac0", "cast_id": 38, "profile_path": "/hDNQhAEns3nl9cgQJ4udgCdBABI.jpg", "order": 15}, {"name": "Gilbert Gottfried", "character": "Abraham Lincoln", "id": 15832, "credit_id": "5474f7c6c3a368364c00097e", "cast_id": 39, "profile_path": "/lzrUS0kqApAqSIlcfNjj3WDmxGd.jpg", "order": 16}, {"name": "Ewan McGregor", "character": "Cowboy at Fair", "id": 3061, "credit_id": "5474f7e0c3a3686bf3001022", "cast_id": 40, "profile_path": "/lVjs6E3vriUXhHrAx0mSzyOVts2.jpg", "order": 17}, {"name": "Jamie Foxx", "character": "Django (uncredited)", "id": 134, "credit_id": "5474f85392514160e30019c4", "cast_id": 41, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 18}, {"name": "Christopher Hagen", "character": "George Stark", "id": 1112414, "credit_id": "547e00e7c3a3685b0500641f", "cast_id": 42, "profile_path": null, "order": 19}], "directors": [{"name": "Seth MacFarlane", "department": "Directing", "job": "Director", "credit_id": "52fe4d309251416c75132fcb", "profile_path": "/v4c6JhGYpjMRBwf95gtPxBnElNu.jpg", "id": 52139}], "vote_average": 6.0, "runtime": 116}, "188166": {"poster_path": "/jspgd5F60RH8sKFfuvVW5jVL1F0.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The quiet life of a beach bum is upended by dreadful news. He sets off for his childhood home to carry out an act of vengeance but proves an inept assassin and finds himself in a brutal fight to protect his estranged family.", "video": false, "id": 188166, "genres": [{"id": 53, "name": "Thriller"}], "title": "Blue Ruin", "tagline": "Revenge comes home", "vote_count": 120, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2359024", "adult": false, "backdrop_path": "/uppaqwgSPiPLmbwoNJByoeTddRz.jpg", "production_companies": [{"name": "Paradise City", "id": 28360}, {"name": "Film Science", "id": 1976}, {"name": "The Lab Of Madness", "id": 2772}, {"name": "Neighborhood Watch", "id": 22700}], "release_date": "2014-04-25", "popularity": 1.41786824700804, "original_title": "Blue Ruin", "budget": 0, "cast": [{"name": "Macon Blair", "character": "Dwight", "id": 209513, "credit_id": "52fe4d319251416c751330c7", "cast_id": 3, "profile_path": "/xnjzgPkHaxDifGzUWJ5Xz6SbsRp.jpg", "order": 0}, {"name": "Devin Ratray", "character": "Ben Gaffney", "id": 11516, "credit_id": "52fe4d319251416c751330cb", "cast_id": 4, "profile_path": "/o973O72eug1EwI9crATBEU3kgUy.jpg", "order": 1}, {"name": "Amy Hargreaves", "character": "Sam", "id": 92728, "credit_id": "52fe4d319251416c751330cf", "cast_id": 5, "profile_path": "/nwNrt6RFP7yLRPKYSUVbGEdeEF8.jpg", "order": 2}, {"name": "Kevin Kolack", "character": "Teddy Cleland", "id": 1194965, "credit_id": "52fe4d319251416c751330d3", "cast_id": 6, "profile_path": "/1DYMl6klAmUB5Vqjo4ldYeGjc1K.jpg", "order": 3}, {"name": "Eve Plumb", "character": "Kris Cleland", "id": 1212485, "credit_id": "52fe4d319251416c751330e7", "cast_id": 12, "profile_path": "/2OACpDEDQe8i2OFVdixikAQ8rTR.jpg", "order": 4}, {"name": "David W. Thompson", "character": "William", "id": 1194966, "credit_id": "52fe4d319251416c751330d7", "cast_id": 8, "profile_path": "/wa7666sN8oARQcvN1c7jQXm6oJd.jpg", "order": 5}, {"name": "Brent Werzner", "character": "Carl Cleland", "id": 1194967, "credit_id": "52fe4d319251416c751330db", "cast_id": 9, "profile_path": "/hVfzu4B92l6BxLwh10L1Hr29Nz8.jpg", "order": 6}, {"name": "Stacy Rock", "character": "Hope Cleland", "id": 1194968, "credit_id": "52fe4d319251416c751330df", "cast_id": 10, "profile_path": "/1pyL8uUhO6JSTcAsztV8OiXJCkZ.jpg", "order": 7}, {"name": "Sidn\u00e9 Anderson", "character": "Officer Eddy", "id": 1194969, "credit_id": "52fe4d319251416c751330e3", "cast_id": 11, "profile_path": "/lwZSpKVXYpk9b7Huv2uyR7icFPi.jpg", "order": 8}, {"name": "Bonnie Johnson", "character": "Margaret", "id": 218605, "credit_id": "54169a8d0e0a261c20004e2a", "cast_id": 32, "profile_path": "/jk2tPblrYHNm1fJOlapoV5zCE1d.jpg", "order": 9}, {"name": "Ydaiber Orozco", "character": "Amanda", "id": 1364103, "credit_id": "54169aa6c3a3684d06004c1c", "cast_id": 33, "profile_path": "/wn48KyfKEWT1AI78fot0Ab8OCRN.jpg", "order": 10}, {"name": "Erica Genereux Smith", "character": "Rock Girl", "id": 1364104, "credit_id": "54169abe0e0a261c2a004bdb", "cast_id": 34, "profile_path": "/1PrNLHOWTophBo8DCPMUww3te2j.jpg", "order": 11}, {"name": "Daniel L. Kelly", "character": "Large Man", "id": 1404728, "credit_id": "549e958b92514131290083de", "cast_id": 35, "profile_path": null, "order": 12}], "directors": [{"name": "Jeremy Saulnier", "department": "Directing", "job": "Director", "credit_id": "52fe4d319251416c751330bd", "profile_path": "/9fjoSOxr3RTEAExWDY48FR8mvSZ.jpg", "id": 74655}], "vote_average": 6.8, "runtime": 92}, "146203": {"poster_path": "/nFWl45XKP3XhZY4K9ngZSBo6BkZ.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 15179302, "overview": "As Nell Sweetzer tries to build a new life after the events of the first movie, the evil force that once possessed her returns with an even more horrific plan.", "video": false, "id": 146203, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Last Exorcism Part II", "tagline": "The second coming", "vote_count": 95, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5Sqzzmn7ApjfcuasUrnyRlDcpUu.jpg", "poster_path": "/AktaOzAg0QnEdz9Ss1KctsNh5bc.jpg", "id": 177675, "name": "The Last Exorcism Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2034139", "adult": false, "backdrop_path": "/8dqbSrHv2MfZ1SNCtm30Eu1I8zI.jpg", "production_companies": [{"name": "CBS Films", "id": 5490}, {"name": "StudioCanal", "id": 694}], "release_date": "2013-02-28", "popularity": 0.568390381552961, "original_title": "The Last Exorcism Part II", "budget": 5000000, "cast": [{"name": "Ashley Bell", "character": "Nell Sweetzer", "id": 120248, "credit_id": "52fe4b779251416c75103b4f", "cast_id": 1, "profile_path": "/rPc2n1A1ieTvh30hv2CNozyCv6O.jpg", "order": 0}, {"name": "Julia Garner", "character": "Gwen", "id": 936970, "credit_id": "52fe4b779251416c75103b79", "cast_id": 10, "profile_path": "/mJkhPDq8QmqW9zbNQ9jBbqoxNJo.jpg", "order": 1}, {"name": "Andrew Sensenig", "character": "Doctor", "id": 141226, "credit_id": "52fe4b779251416c75103b53", "cast_id": 2, "profile_path": "/oiPTOeTpMnEHq1sydiLgsMtwDVa.jpg", "order": 2}, {"name": "Spencer Treat Clark", "character": "Chris", "id": 4012, "credit_id": "52fe4b779251416c75103b57", "cast_id": 3, "profile_path": "/pE1tWrcDDlOYw3TjnbsJ1PU4pZq.jpg", "order": 3}, {"name": "Judd Lormand", "character": "Jared", "id": 990136, "credit_id": "52fe4b779251416c75103b5b", "cast_id": 4, "profile_path": "/aCsSFZuik9bIJGpa7H3ELTC7fQi.jpg", "order": 4}, {"name": "Muse Watson", "character": "Frank", "id": 17348, "credit_id": "52fe4b779251416c75103b5f", "cast_id": 5, "profile_path": "/f7SZHWqYqAndyA7BAcVBonkP3jQ.jpg", "order": 5}, {"name": "Raeden Greer", "character": "Steph", "id": 1123886, "credit_id": "52fe4b779251416c75103b63", "cast_id": 6, "profile_path": null, "order": 6}], "directors": [{"name": "Ed Gass-Donnelly", "department": "Directing", "job": "Director", "credit_id": "52fe4b779251416c75103b69", "profile_path": null, "id": 557179}], "vote_average": 4.6, "runtime": 88}, "73499": {"poster_path": "/7FEQQuznwV1RyNEOxJWhQ3tUqnr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "The mysterious murder of a US senator bearing the distinctive trademark of the legendary Soviet assassin \"Cassius,\" forces Paul Shepherdson (Richard Gere), a retired CIA operative, to team with rookie FBI agent, Ben Geary (Topher Grace), to solve the crime. Having spent his career chasing Cassius, Shepherdson is convinced his nemesis is long dead, but is pushed to take on the case by his former supervisor, Tom Highland (Martin Sheen). Meanwhile, Agent Geary, who wrote his Master's thesis on Shepherdson's pursuit of the Soviet killer, is certain that Cassius has resurfaced. As Shepherdson and Geary work their way through crimes both past and present, they discover that Cassius may not be the person they always thought him to be, forcing both to re-examine everything and everyone around them.", "video": false, "id": 73499, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Double", "tagline": "", "vote_count": 65, "homepage": "http://www.thedoublemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646980", "adult": false, "backdrop_path": "/5pPMcj7JThD2XNehL2kx7Of4V5B.jpg", "production_companies": [{"name": "Industry Entertainment", "id": 376}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Hyde Park Entertainment", "id": 13816}, {"name": "Agent Two", "id": 46353}, {"name": "Brandt/Haas Productions", "id": 46354}], "release_date": "2011-10-27", "popularity": 1.04327360416279, "original_title": "The Double", "budget": 0, "cast": [{"name": "Stephen Moyer", "character": "Brutus", "id": 32203, "credit_id": "52fe489dc3a368484e102099", "cast_id": 4, "profile_path": "/jrneo5RWXrrS2t18wEJMqP08sYX.jpg", "order": 0}, {"name": "Topher Grace", "character": "Ben Geary", "id": 17052, "credit_id": "52fe489dc3a368484e10209d", "cast_id": 5, "profile_path": "/nM4H9Uqn2V4shWCxxnDqT6ZaJOu.jpg", "order": 1}, {"name": "Richard Gere", "character": "Paul Shepherdson", "id": 1205, "credit_id": "52fe489dc3a368484e1020a1", "cast_id": 6, "profile_path": "/wXj3kPwWFo8A9jDCtUVetXAR5Hf.jpg", "order": 2}, {"name": "Stana Katic", "character": "Amber", "id": 34408, "credit_id": "52fe489dc3a368484e1020a5", "cast_id": 7, "profile_path": "/5Uv6wssCvAZfSTaXbiEiySQquHC.jpg", "order": 3}, {"name": "Martin Sheen", "character": "Tom Highland", "id": 8349, "credit_id": "52fe489dc3a368484e1020af", "cast_id": 9, "profile_path": "/io91Rw66fetiClxqKfBYYFkeSX7.jpg", "order": 4}, {"name": "Tamer Hassan", "character": "Bozlovski", "id": 39660, "credit_id": "52fe489dc3a368484e1020b3", "cast_id": 10, "profile_path": "/jMmXLRtmWiUfnTSH7M2TPAQ6i6c.jpg", "order": 5}, {"name": "Chris Marquette", "character": "Oliver", "id": 59238, "credit_id": "52fe489dc3a368484e1020b7", "cast_id": 11, "profile_path": "/kKunkk6VksTnXGj0iK5MNqbYhBt.jpg", "order": 6}, {"name": "Odette Annable", "character": "Natalie Geary", "id": 51992, "credit_id": "52fe489dc3a368484e1020bb", "cast_id": 12, "profile_path": "/njsHUTCrklAhdbpzScUJ5j6qOu.jpg", "order": 7}, {"name": "Yuriy Sardarov", "character": "Leo", "id": 150672, "credit_id": "54db2cb4c3a3682f24001042", "cast_id": 77, "profile_path": "/kM5kbXtXEPfD76EbulrAGiAuF1u.jpg", "order": 8}, {"name": "Ed Kelly", "character": "Senator Dennis Darden", "id": 130408, "credit_id": "54db2cdac3a36812240013b5", "cast_id": 78, "profile_path": null, "order": 9}, {"name": "Jeffrey Pierce", "character": "Agent Weaver", "id": 82821, "credit_id": "54db2d06c3a368122d0014d4", "cast_id": 79, "profile_path": "/ozdNCKCUjrOeKYZIrkhjn5jI4Dz.jpg", "order": 10}, {"name": "Lawrence Gilliard Jr.", "character": "Agent Burton", "id": 37947, "credit_id": "54db2d27c3a368122d0014d7", "cast_id": 80, "profile_path": "/2lfE8pAW8Hb5ounAQL8VqPJHn1.jpg", "order": 11}, {"name": "Dan Lemieux", "character": "Russian Military Officer", "id": 201202, "credit_id": "54db2d75c3a368123b001576", "cast_id": 81, "profile_path": null, "order": 12}], "directors": [{"name": "Michael Brandt", "department": "Directing", "job": "Director", "credit_id": "52fe489dc3a368484e10208f", "profile_path": "/x1z3Eo8ukAPm7JeuZTKxWZqpr4v.jpg", "id": 7865}], "vote_average": 6.0, "runtime": 98}, "139038": {"poster_path": "/ydPHfacCuSHkscuaG9L5GZ0YjL4.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 60141683, "overview": "A spoof of all the \"found-footage/documentary style\" films released in recent years.", "video": false, "id": 139038, "genres": [{"id": 35, "name": "Comedy"}, {"id": 27, "name": "Horror"}], "title": "A Haunted House", "tagline": "This $*%! ain't paranormal.", "vote_count": 200, "homepage": "https://www.facebook.com/AHauntedHouse?fref=ts", "belongs_to_collection": {"backdrop_path": null, "poster_path": "/6OHNDLSvTxvis1oWGdIqmH8jrEH.jpg", "id": 251937, "name": "A Haunted House Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2243537", "adult": false, "backdrop_path": "/AbgdeWvmTv3UI2zknDWzKiuFwrU.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Endgame Entertainment", "id": 1205}, {"name": "Wayans Bros. Entertainment", "id": 1608}, {"name": "IM Global", "id": 7437}], "release_date": "2013-01-11", "popularity": 0.547963257334582, "original_title": "A Haunted House", "budget": 2500000, "cast": [{"name": "Marlon Wayans", "character": "Malcolm", "id": 9562, "credit_id": "52fe4c5ac3a368484e1b3f33", "cast_id": 9, "profile_path": "/yMBaTsPrthko9eYtSjfVduws5Cn.jpg", "order": 0}, {"name": "Essence Atkins", "character": "Keisha", "id": 154000, "credit_id": "52fe4c5ac3a368484e1b3f43", "cast_id": 13, "profile_path": "/3MC6xJrqXZ7LNJpyxC0RzPule72.jpg", "order": 1}, {"name": "Nick Swardson", "character": "Chip the Psychic", "id": 32907, "credit_id": "52fe4c5ac3a368484e1b3f37", "cast_id": 10, "profile_path": "/5RinKDUSsSUNP9l5SzQ7GhXDvVJ.jpg", "order": 2}, {"name": "Cedric the Entertainer", "character": "Father Williams", "id": 5726, "credit_id": "52fe4c5ac3a368484e1b3f3b", "cast_id": 11, "profile_path": "/vNru4woNzFrtEZr5AOSSoCInZdy.jpg", "order": 3}, {"name": "David Koechner", "character": "Dan the Security Man", "id": 28638, "credit_id": "52fe4c5ac3a368484e1b3f3f", "cast_id": 12, "profile_path": "/inMOKno44cGQjUYkuoHNJbEgihi.jpg", "order": 4}, {"name": "Dave Sheridan", "character": "Kisha's Mom", "id": 35701, "credit_id": "52fe4c5ac3a368484e1b3f47", "cast_id": 14, "profile_path": "/xGSXUrszDJhcbXnM3yykT9qGo6U.jpg", "order": 5}, {"name": "Liana Mendoza", "character": "Carmita", "id": 1107486, "credit_id": "52fe4c5ac3a368484e1b3f4b", "cast_id": 15, "profile_path": "/zVGoCH3e12a8edxMZtaPXoFHqMC.jpg", "order": 6}, {"name": "Jamie Noel", "character": "Juanita", "id": 1080246, "credit_id": "52fe4c5ac3a368484e1b3f4f", "cast_id": 16, "profile_path": "/gR5cfKBzveJBcqGTDE2fpRgNdvr.jpg", "order": 7}, {"name": "Marlene Forte", "character": "Rosa", "id": 146004, "credit_id": "52fe4c5ac3a368484e1b3f53", "cast_id": 17, "profile_path": "/qNgRzZvT0YyxaQELeTDGZw6ToDg.jpg", "order": 8}, {"name": "Affion Crockett", "character": "Ray-Ray", "id": 98394, "credit_id": "52fe4c5ac3a368484e1b3f57", "cast_id": 18, "profile_path": "/moqCMggBapY4mHArUjaRKZ2xzIn.jpg", "order": 9}, {"name": "Robin Thede", "character": "Kisha's Mom", "id": 1110105, "credit_id": "52fe4c5ac3a368484e1b3f5b", "cast_id": 19, "profile_path": "/mLaOq1IS6tulHuFlo2lDXaudpiX.jpg", "order": 10}, {"name": "Bobbie Lee", "character": "Thug", "id": 1110108, "credit_id": "52fe4c5ac3a368484e1b3f5f", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Damien Bray", "character": "Entity", "id": 1110109, "credit_id": "52fe4c5ac3a368484e1b3f63", "cast_id": 21, "profile_path": "/phq2CphI7PaIxOH1hIb70hJFttW.jpg", "order": 12}, {"name": "Joel Kelley Dauten", "character": "Egon", "id": 1110110, "credit_id": "52fe4c5ac3a368484e1b3f67", "cast_id": 22, "profile_path": null, "order": 13}, {"name": "Jordenn Thompson", "character": "Little Kisha", "id": 928306, "credit_id": "52fe4c5ac3a368484e1b3f6b", "cast_id": 23, "profile_path": "/a7z5hHQeJ4iQaT0pJxXWaAMRNPZ.jpg", "order": 14}], "directors": [{"name": "Michael Tiddes", "department": "Directing", "job": "Director", "credit_id": "52fe4c5ac3a368484e1b3f0b", "profile_path": null, "id": 1110102}], "vote_average": 5.6, "runtime": 86}, "7972": {"poster_path": "/1Bx9hPcOcytHMoeuWEdqndGB1F5.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25005257, "overview": "When two brothers organize the robbery of their parents' jewelry store, the job goes horribly wrong, triggering a series of events that send them and their family hurtling towards a shattering climax.", "video": false, "id": 7972, "genres": [{"id": 18, "name": "Drama"}], "title": "Before the Devil Knows You're Dead", "tagline": "No one was supposed to get hurt.", "vote_count": 60, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0292963", "adult": false, "backdrop_path": "/93N1ShuTWxG8e8tkXTr6d2XLOwu.jpg", "production_companies": [{"name": "Capitol Films", "id": 826}, {"name": "Funky Buddha Productions", "id": 11542}, {"name": "Unity Productions", "id": 2287}, {"name": "Linsefilm", "id": 2286}], "release_date": "2007-09-26", "popularity": 0.612929085718666, "original_title": "Before the Devil Knows You're Dead", "budget": 18000000, "cast": [{"name": "Philip Seymour Hoffman", "character": "Andy", "id": 1233, "credit_id": "52fe448ac3a36847f809bb0d", "cast_id": 1, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 0}, {"name": "Ethan Hawke", "character": "Hank", "id": 569, "credit_id": "52fe448ac3a36847f809bb11", "cast_id": 2, "profile_path": "/kcby6VYk6Gb0036nUyh8chY5ZAJ.jpg", "order": 1}, {"name": "Albert Finney", "character": "Charles", "id": 3926, "credit_id": "52fe448ac3a36847f809bb15", "cast_id": 3, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 2}, {"name": "Marisa Tomei", "character": "Gina", "id": 3141, "credit_id": "52fe448ac3a36847f809bb19", "cast_id": 4, "profile_path": "/ySjHI2fT8uiTWx9Yf4PYHzESOdV.jpg", "order": 3}, {"name": "Aleksa Palladino", "character": "Chris", "id": 53441, "credit_id": "52fe448ac3a36847f809bb1d", "cast_id": 5, "profile_path": "/nTpCRzn8raVlqLQfBP9oaAT3pXF.jpg", "order": 4}, {"name": "Michael Shannon", "character": "Dex", "id": 335, "credit_id": "52fe448ac3a36847f809bb21", "cast_id": 6, "profile_path": "/5yGCJ6znHM96zTfW2LNP6uPPDCZ.jpg", "order": 5}, {"name": "Amy Ryan", "character": "Martha", "id": 39388, "credit_id": "52fe448ac3a36847f809bb25", "cast_id": 7, "profile_path": "/vjUXYMi5576IogTakMA64Yk4xHk.jpg", "order": 6}, {"name": "Sarah Livingston", "character": "Danielle", "id": 53448, "credit_id": "52fe448ac3a36847f809bb29", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Br\u00edan F. O'Byrne", "character": "Bobby", "id": 31713, "credit_id": "52fe448ac3a36847f809bb2d", "cast_id": 9, "profile_path": "/z3cKgsK3fjAuIGi6GtDfdmKPqT2.jpg", "order": 8}, {"name": "Rosemary Harris", "character": "Nanette", "id": 18998, "credit_id": "52fe448ac3a36847f809bb31", "cast_id": 10, "profile_path": "/lkbjFfS5VhDhWoThG5akyjH4AR9.jpg", "order": 9}, {"name": "Blaine Horton", "character": "Justin", "id": 53453, "credit_id": "52fe448ac3a36847f809bb35", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Arija Bareikis", "character": "Kathrine", "id": 33432, "credit_id": "52fe448ac3a36847f809bb39", "cast_id": 12, "profile_path": "/qxJ6M4eCAhUlXkAaXCK8iGLl14g.jpg", "order": 11}, {"name": "Leonardo Cimino", "character": "William", "id": 12514, "credit_id": "52fe448ac3a36847f809bb3d", "cast_id": 13, "profile_path": "/gb2YuqRIifoTjX0F6YkYP4p4z29.jpg", "order": 12}, {"name": "Lee Wilkof", "character": "Jake", "id": 21154, "credit_id": "52fe448ac3a36847f809bb41", "cast_id": 14, "profile_path": "/hLMn7bvQy1kKuqMxhzOJQxQTjxt.jpg", "order": 13}, {"name": "Damon Gupton", "character": "Doctor", "id": 53454, "credit_id": "52fe448ac3a36847f809bb45", "cast_id": 15, "profile_path": "/1mZvC9YKcFciPIl5vUUP01F6Fjy.jpg", "order": 14}], "directors": [{"name": "Sidney Lumet", "department": "Directing", "job": "Director", "credit_id": "52fe448ac3a36847f809bb4b", "profile_path": "/7iG4z9BPCXw46qp8TOcXzEvXBJu.jpg", "id": 39996}], "vote_average": 6.8, "runtime": 117}, "212778": {"poster_path": "/jc2BCqYtoyUM6rWdtW6KvJjL2Dq.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 45967935, "overview": "A chef who loses his restaurant job starts up a food truck in an effort to reclaim his creative promise, while piecing back together his estranged family.", "video": false, "id": 212778, "genres": [{"id": 35, "name": "Comedy"}], "title": "Chef", "tagline": "Starting from scratch never tasted so good", "vote_count": 348, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2883512", "adult": false, "backdrop_path": "/sbH9aJV7fqhRaazCSWuOwNDIf1m.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Aldamisa Entertainment", "id": 11006}, {"name": "Kilburn Media", "id": 21887}, {"name": "Fetisov Teterin Films", "id": 30030}], "release_date": "2014-05-09", "popularity": 2.11377657922032, "original_title": "Chef", "budget": 0, "cast": [{"name": "Jon Favreau", "character": "Carl Casper", "id": 15277, "credit_id": "52fe4db6c3a368484e1f89b9", "cast_id": 10, "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "order": 0}, {"name": "John Leguizamo", "character": "Martin", "id": 5723, "credit_id": "52fe4db6c3a368484e1f89bd", "cast_id": 11, "profile_path": "/wlcCiSjmcXHJCG7WATmbwYIRnmX.jpg", "order": 1}, {"name": "Bobby Cannavale", "character": "Tony", "id": 21127, "credit_id": "52fe4db6c3a368484e1f89c1", "cast_id": 12, "profile_path": "/iolNhMnWOFXlLTdyVvkvfW7RpNN.jpg", "order": 2}, {"name": "Emjay Anthony", "character": "Percy", "id": 1259762, "credit_id": "52fe4db6c3a368484e1f89c9", "cast_id": 14, "profile_path": "/vGuvafo0ZFRlmv77gxODfY3lCpx.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Molly", "id": 1245, "credit_id": "52fe4db6c3a368484e1f898f", "cast_id": 2, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Dustin Hoffman", "character": "Riva", "id": 4483, "credit_id": "52fe4db6c3a368484e1f8993", "cast_id": 3, "profile_path": "/ffKPo8ATHVXME6cgA5BDyvy2df1.jpg", "order": 5}, {"name": "Sof\u00eda Vergara", "character": "Inez", "id": 63522, "credit_id": "52fe4db6c3a368484e1f8997", "cast_id": 4, "profile_path": "/8B2KF6BkkZZ3xswUzq4Gs9KIkWQ.jpg", "order": 6}, {"name": "Oliver Platt", "character": "Ramsey Michel", "id": 17485, "credit_id": "52fe4db6c3a368484e1f89c5", "cast_id": 13, "profile_path": "/an9n3aUKFAN50GDsbqwIkvWlcus.jpg", "order": 7}, {"name": "Amy Sedaris", "character": "Jen", "id": 12110, "credit_id": "53687e7e0e0a2647cb0076c0", "cast_id": 15, "profile_path": "/ahe3x5UzqGG83uHupLM4l1e0elt.jpg", "order": 8}, {"name": "Robert Downey Jr.", "character": "Marvin", "id": 3223, "credit_id": "52fe4db6c3a368484e1f898b", "cast_id": 1, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 9}, {"name": "Russell Peters", "character": "Miami Cop", "id": 82417, "credit_id": "53687e940e0a2647cb0076c9", "cast_id": 16, "profile_path": "/hL7XitH9iuUonknMr8mpSDC51FG.jpg", "order": 10}, {"name": "Chase Grimm", "character": "Vendor", "id": 1317000, "credit_id": "53687ea40e0a2647ce0073c1", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Will Schutze", "character": "Mr. Bonetangles", "id": 1317001, "credit_id": "53687ec00e0a2647c4007810", "cast_id": 18, "profile_path": null, "order": 12}, {"name": "Gloria Sandoval", "character": "Flora", "id": 1188686, "credit_id": "53687edc0e0a2647cb0076d5", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Jose C. Hernandez", "character": "Abuelito", "id": 1317002, "credit_id": "53687f0b0e0a2647cb0076e0", "cast_id": 20, "profile_path": null, "order": 14}], "directors": [{"name": "Jon Favreau", "department": "Directing", "job": "Director", "credit_id": "52fe4db6c3a368484e1f899d", "profile_path": "/xowOeQYyuInO2qKReau8n41U8j1.jpg", "id": 15277}], "vote_average": 7.3, "runtime": 115}, "89899": {"poster_path": "/udrcXlDU7U0bX7ufh7w4UyhD8hD.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}], "revenue": 0, "overview": "A series of short films set around the theme of infidelity.", "video": false, "id": 89899, "genres": [{"id": 35, "name": "Comedy"}], "title": "The Players", "tagline": "", "vote_count": 53, "homepage": "http://www.lesinfideles-lefilm.com/", "belongs_to_collection": null, "original_language": "fr", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt2087850", "adult": false, "backdrop_path": "/xZYRKMm2lJXqxWNMIaE2rQtOXCo.jpg", "production_companies": [{"name": "Canal+", "id": 5358}, {"name": "Black Dynamite Films", "id": 8728}], "release_date": "2012-02-29", "popularity": 0.703400411828663, "original_title": "Les infid\u00e8les", "budget": 0, "cast": [{"name": "Gilles Lellouche", "character": "Greg / Nicolas / Bernard / Antoine / Eric", "id": 54291, "credit_id": "52fe4a339251416c910c69bd", "cast_id": 14, "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "order": 0}, {"name": "Guillaume Canet", "character": "Thibault", "id": 19866, "credit_id": "52fe4a339251416c910c69c1", "cast_id": 16, "profile_path": "/qnDVthzAPxJTKxkUWIRBhuuMI2x.jpg", "order": 1}, {"name": "Aina Clotet", "character": "Julia", "id": 938080, "credit_id": "52fe4a339251416c910c69c5", "cast_id": 17, "profile_path": "/fo5kTO7UIAvwgu4UfJFH5j9NQ5x.jpg", "order": 2}, {"name": "Jean Dujardin", "character": "Fred / Olivier / Fran\u00e7ois / Laurent / James", "id": 56024, "credit_id": "52fe4a339251416c910c69c9", "cast_id": 19, "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "order": 3}, {"name": "Charles G\u00e9rard", "character": "Richard", "id": 55920, "credit_id": "52fe4a339251416c910c69cd", "cast_id": 20, "profile_path": "/jXmLpLuS3EYkQVBEYFiX455ZMbI.jpg", "order": 4}, {"name": "Rebecca Jameson", "character": "", "id": 209656, "credit_id": "52fe4a339251416c910c69d1", "cast_id": 21, "profile_path": "/jxP4uvbKrQOto9C7WBI1zQrivPI.jpg", "order": 5}, {"name": "Sandrine Kiberlain", "character": "Marie-Christine", "id": 81821, "credit_id": "52fe4a339251416c910c69d5", "cast_id": 22, "profile_path": "/nISERu1XbLVgX4OffyA8nnfBEpq.jpg", "order": 6}, {"name": "Alexandra Lamy", "character": "Lisa", "id": 113617, "credit_id": "52fe4a339251416c910c69d9", "cast_id": 23, "profile_path": "/b7QNDdsqzrI4Wfy26MsigfMftho.jpg", "order": 7}, {"name": "Mathilda May", "character": "Ariane", "id": 44233, "credit_id": "52fe4a339251416c910c69dd", "cast_id": 24, "profile_path": "/nNqf6LXM52lVKI7xFdynKorf1zH.jpg", "order": 8}, {"name": "G\u00e9raldine Nakache", "character": "Christine", "id": 114953, "credit_id": "52fe4a339251416c910c69e1", "cast_id": 25, "profile_path": "/zLoLsZlHqhKkpJHdQWNFb512t2V.jpg", "order": 9}, {"name": "Isabelle Nanty", "character": "St\u00e9phanie", "id": 2412, "credit_id": "52fe4a339251416c910c69e5", "cast_id": 26, "profile_path": "/mWxM84KXqsL11Zj9Onzn6fwDggX.jpg", "order": 10}, {"name": "Manu Payet", "character": "Simon", "id": 83967, "credit_id": "52fe4a339251416c910c69e9", "cast_id": 27, "profile_path": "/q4tzH08ExGGlhasVMxsCUIbnNph.jpg", "order": 11}, {"name": "Clara Ponsot", "character": "In\u00e8s", "id": 938082, "credit_id": "52fe4a339251416c910c69ed", "cast_id": 28, "profile_path": "/fUMn5nohj85bUtxi9eA12TZZpnk.jpg", "order": 12}, {"name": "Lionel Abelanski", "character": "Le directeur de s\u00e9minaire", "id": 7278, "credit_id": "52fe4a349251416c910c6a09", "cast_id": 34, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 13}, {"name": "Bastien Bouillon", "character": "Valentin", "id": 910944, "credit_id": "53ee2522c3a368167c001416", "cast_id": 35, "profile_path": "/k20Uc0q06eitL7597QVrWBkzCla.jpg", "order": 14}], "directors": [{"name": "Emmanuelle Bercot", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6977", "profile_path": "/6qlcTXvdSlTHPjZuWjCYZLzOb4e.jpg", "id": 25340}, {"name": "Fred Cavay\u00e9", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c697d", "profile_path": "/mTRrHYTxjVCPAA9VHxqSsOgccUv.jpg", "id": 77008}, {"name": "Alexandre Courtes", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6983", "profile_path": null, "id": 938077}, {"name": "Jean Dujardin", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6989", "profile_path": "/fpNJxVL3I4atLSmWJqmVzDR4TWI.jpg", "id": 56024}, {"name": "Michel Hazanavicius", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c698f", "profile_path": "/p7C6zhBbIfS4JvODJfVo9uEvLij.jpg", "id": 67717}, {"name": "Eric Lartigau", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c6995", "profile_path": "/7tMUb274bl7JqTzguhWnovKx4Pw.jpg", "id": 85340}, {"name": "Gilles Lellouche", "department": "Directing", "job": "Director", "credit_id": "52fe4a339251416c910c69b3", "profile_path": "/A4bSPMA9aSVumMtz7WRQCvKyYMp.jpg", "id": 54291}], "vote_average": 4.9, "runtime": 109}, "7980": {"poster_path": "/6PpGOkpb8KpCMe15FcfBd7lbP5d.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 93525586, "overview": "When 14-year-old Susie Salmon is murdered, she watches from above as her family deals with her tragic death -- and as her killer prepares to strike again. Torn between vengeance and healing, Susie's loved ones are forever changed.", "video": false, "id": 7980, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}], "title": "The Lovely Bones", "tagline": "The story of a life and everything that came after...", "vote_count": 250, "homepage": "http://www.lovelybones.com", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0380510", "adult": false, "backdrop_path": "/1ob8hisSbDnG4iV19XSZJN97sKI.jpg", "production_companies": [{"name": "WingNut Films", "id": 11}, {"name": "Key Creatives", "id": 2300}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Film4", "id": 9349}, {"name": "New Zealand Large Budget Screen Production Grant", "id": 12248}, {"name": "Goldcrest Pictures", "id": 11843}], "release_date": "2009-12-26", "popularity": 0.797046501334261, "original_title": "The Lovely Bones", "budget": 65000000, "cast": [{"name": "Rachel Weisz", "character": "Abigail Salmon", "id": 3293, "credit_id": "52fe448bc3a36847f809be65", "cast_id": 3, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 0}, {"name": "Mark Wahlberg", "character": "Jack Salmon", "id": 13240, "credit_id": "52fe448bc3a36847f809be69", "cast_id": 4, "profile_path": "/tdPF78kdzxPcCwxKjPykq6u3y5Z.jpg", "order": 1}, {"name": "Susan Sarandon", "character": "Lynn", "id": 4038, "credit_id": "52fe448bc3a36847f809be6d", "cast_id": 5, "profile_path": "/rjK7SERcPfwnRtPtOwH6EcvdWX4.jpg", "order": 2}, {"name": "Saoirse Ronan", "character": "Susie Salmon", "id": 36592, "credit_id": "52fe448bc3a36847f809be71", "cast_id": 6, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 3}, {"name": "Stanley Tucci", "character": "George Harvey", "id": 2283, "credit_id": "52fe448bc3a36847f809be75", "cast_id": 7, "profile_path": "/omGlTJF2IW5r3L3c5y0qkCt3hFr.jpg", "order": 4}, {"name": "Michael Imperioli", "character": "Len Fenerman", "id": 11486, "credit_id": "52fe448bc3a36847f809be79", "cast_id": 8, "profile_path": "/7zfMAQoliPWMEbL9e0cPnpnLMzf.jpg", "order": 5}, {"name": "Rose McIver", "character": "Lindsey", "id": 53485, "credit_id": "52fe448bc3a36847f809be7d", "cast_id": 9, "profile_path": "/wMbfF650SDV9Oyy78EvYOi9aQqV.jpg", "order": 6}, {"name": "Carolyn Dando", "character": "Ruth Connors", "id": 53486, "credit_id": "52fe448bc3a36847f809be81", "cast_id": 10, "profile_path": "/7iv87g89sD8zqZVVBeJtAfNBrjV.jpg", "order": 7}, {"name": "Christian Thomas Ashdale", "character": "Buckley Salmon", "id": 1128255, "credit_id": "52fe448bc3a36847f809bf0f", "cast_id": 34, "profile_path": null, "order": 8}, {"name": "Reece Ritchie", "character": "Ray Singh", "id": 54810, "credit_id": "52fe448bc3a36847f809bf13", "cast_id": 35, "profile_path": "/7zUVjsbIxPkmBNf7DYXH1kR1QVy.jpg", "order": 9}, {"name": "Nikki SooHoo", "character": "Holly", "id": 63676, "credit_id": "52fe448bc3a36847f809bf17", "cast_id": 36, "profile_path": "/zLFLu1UoK2e70wZ1iAnbaa3e9g3.jpg", "order": 10}, {"name": "Jake Abel", "character": "Brian Nelson", "id": 105727, "credit_id": "52fe448bc3a36847f809bf1f", "cast_id": 38, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 12}, {"name": "Amanda Michalka", "character": "Clarissa", "id": 113926, "credit_id": "52fe448bc3a36847f809bf23", "cast_id": 39, "profile_path": "/5bj8eyZsc0UbZAxhhq8krrx5ygn.jpg", "order": 13}, {"name": "Thomas McCarthy", "character": "Principal Caden", "id": 17867, "credit_id": "52fe448bc3a36847f809bf27", "cast_id": 40, "profile_path": "/8k6Nvp7A21Bbwse5zvLHkJjbdmf.jpg", "order": 14}, {"name": "Stink Fisher", "character": "Mr. Connors", "id": 155081, "credit_id": "52fe448bc3a36847f809bf2b", "cast_id": 41, "profile_path": "/3AykyXSvy6l0iYEn7QHhlgDqaJH.jpg", "order": 15}, {"name": "Andrew James Allen", "character": "Samuel Heckler", "id": 1212194, "credit_id": "53a662e60e0a26143f002dce", "cast_id": 43, "profile_path": "/aoZAfQYmY39QgUUmfK0RRscR6D.jpg", "order": 16}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe448bc3a36847f809be61", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.4, "runtime": 135}, "188207": {"poster_path": "/eIHrBHeqfQodgEjSPdZWh9b5lV3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 11775292, "overview": "In Ancient Greece 1200 B.C., a queen succumbs to the lust of Zeus to bear a son promised to overthrow the tyrannical rule of the king and restore peace to a land in hardship. But this prince, Hercules, knows nothing of his real identity or his destiny. He desires only one thing: the love of Hebe, Princess of Crete, who has been promised to his own brother. When Hercules learns of his greater purpose, he must choose: to flee with his true love or to fulfill his destiny and become the true hero of his time. The story behind one of the greatest myths is revealed in this action-packed epic - a tale of love, sacrifice and the strength of the human spirit.", "video": false, "id": 188207, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}], "title": "The Legend of Hercules", "tagline": "Every Man Has a Destiny", "vote_count": 244, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1043726", "adult": false, "backdrop_path": "/xptExiX6KgSVgVw15XOh4Nf2DQq.jpg", "production_companies": [{"name": "Millennium Films", "id": 10254}], "release_date": "2014-01-10", "popularity": 1.02111919079229, "original_title": "The Legend of Hercules", "budget": 70000000, "cast": [{"name": "Kellan Lutz", "character": "Hercules", "id": 34502, "credit_id": "52fe4d329251416c751333b3", "cast_id": 1, "profile_path": "/sNgRpXCVyDesWJReOX2cNa7oijS.jpg", "order": 0}, {"name": "Liam McIntyre", "character": "Sotiris", "id": 934219, "credit_id": "52fe4d329251416c751333b7", "cast_id": 2, "profile_path": "/63TYSVIX456YNsui1Paufw5kM11.jpg", "order": 1}, {"name": "Gaia Weiss", "character": "Hebe", "id": 1165384, "credit_id": "52fe4d329251416c751333c1", "cast_id": 4, "profile_path": "/4uBNMI8idFLWL4lRC4mZpRCKmFl.jpg", "order": 2}, {"name": "Scott Adkins", "character": "King Amphitryon", "id": 78110, "credit_id": "52fe4d329251416c751333c5", "cast_id": 5, "profile_path": "/mX5vlgiyJ8XdvBUMlFe6FVQ9YDh.jpg", "order": 3}, {"name": "Roxanne McKee", "character": "Queen Alcmene", "id": 228969, "credit_id": "52fe4d329251416c751333c9", "cast_id": 6, "profile_path": "/oJYawHvbZM48lNTGWKATapFzplL.jpg", "order": 4}, {"name": "Liam Garrigan", "character": "Iphicles", "id": 165441, "credit_id": "52fe4d329251416c751333cd", "cast_id": 7, "profile_path": "/bE1l5NEOmtn3k1kiGH4ddJW7jpH.jpg", "order": 5}, {"name": "Jukka Hilden", "character": "Creon", "id": 60805, "credit_id": "52fe4d329251416c751333d1", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Rade \u0160erbed\u017eija", "character": "Chiron", "id": 1118, "credit_id": "52fe4d329251416c751333db", "cast_id": 10, "profile_path": "/hbP9ku9cP8Q2cmdB9WIcpkPJaIL.jpg", "order": 7}, {"name": "Johnathon Schaech", "character": "Tarak", "id": 51670, "credit_id": "52fe4d329251416c7513344b", "cast_id": 29, "profile_path": "/lApuT4JulC8xxmfidKlSkgUyOFK.jpg", "order": 8}, {"name": "Luke Newberry", "character": "Agamemnon", "id": 214019, "credit_id": "52fe4d329251416c7513344f", "cast_id": 30, "profile_path": "/9hKoTMk8IE7vGEciYWT883ZyA99.jpg", "order": 9}, {"name": "Kenneth Cranham", "character": "Lucius", "id": 26258, "credit_id": "52fe4d329251416c75133453", "cast_id": 31, "profile_path": "/AbtqNZRiacTCjINwGNxAOKhOOKr.jpg", "order": 10}, {"name": "Sarai Givaty", "character": "Saphirra", "id": 206024, "credit_id": "52fe4d329251416c75133457", "cast_id": 32, "profile_path": "/i52Gaf6Q0NcisixV38ytRCEdDYj.jpg", "order": 11}, {"name": "Dimiter Doichinov", "character": "King Galenus / Champion #1", "id": 1350263, "credit_id": "53e1edd0c3a3684850000458", "cast_id": 67, "profile_path": null, "order": 12}, {"name": "Nikolai Sotirov", "character": "King Tallas", "id": 94702, "credit_id": "53e1edeac3a368484a0004cb", "cast_id": 68, "profile_path": null, "order": 13}, {"name": "Radoslav Parvanov", "character": "Half Face / Champion", "id": 1108570, "credit_id": "53e1ee08c3a3684850000461", "cast_id": 69, "profile_path": "/81LnVL0LlzMmOk7xQGY9htYvEpr.jpg", "order": 14}, {"name": "Spencer Wilding", "character": "Humbaba", "id": 25451, "credit_id": "53e1ee29c3a368485000046a", "cast_id": 70, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 15}, {"name": "Bashar Rahal", "character": "Battalion Commander", "id": 105688, "credit_id": "53e1ee49c3a36848600003da", "cast_id": 71, "profile_path": "/kTDG0QqFEwjeidB4OaSL7E0fDfC.jpg", "order": 16}, {"name": "Vlado Mihailov", "character": "Battalion Commander", "id": 61861, "credit_id": "53e1ee60c3a3684850000477", "cast_id": 72, "profile_path": null, "order": 17}], "directors": [{"name": "Renny Harlin", "department": "Directing", "job": "Director", "credit_id": "52fe4d329251416c751333bd", "profile_path": "/lOCRZzC1UZfkObWpQtKxga5ZV8F.jpg", "id": 16938}], "vote_average": 4.6, "runtime": 99}, "7985": {"poster_path": "/f1onDDba0W85o2eIZr4vcfqI47j.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Forlorn heiress Penelope Wilhern is cursed, and the only way out is to fall in love with someone of suitable stock. But how can she find her soul mate when she's sequestered inside her family's estate with only her parents to keep her company. This untraditional fairy tale about a girl who bucks convention to create her own happy ending.", "video": false, "id": 7985, "genres": [{"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "Penelope", "tagline": "A fairytale like no other.", "vote_count": 75, "homepage": "http://www.penelopethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0472160", "adult": false, "backdrop_path": "/8fYXNzpwjJIUmP6ZtxPO3zpIXJa.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Tatira-Hiller Productions", "id": 273}, {"name": "Grosvenor Park Media Ltd.", "id": 2053}, {"name": "Type A Films", "id": 2308}], "release_date": "2006-03-01", "popularity": 0.47251668431323, "original_title": "Penelope", "budget": 15000000, "cast": [{"name": "Christina Ricci", "character": "Penelope Wilhern", "id": 6886, "credit_id": "52fe448bc3a36847f809c129", "cast_id": 1, "profile_path": "/xe7SJRFdvqPHNoWxhbIFAz5Xx8x.jpg", "order": 0}, {"name": "James McAvoy", "character": "Johnny/Max", "id": 5530, "credit_id": "52fe448bc3a36847f809c12d", "cast_id": 2, "profile_path": "/26UEbgEJ8sH3JUgQd6qDaNnJEbS.jpg", "order": 1}, {"name": "Catherine O'Hara", "character": "Jessica Wilhern", "id": 11514, "credit_id": "52fe448bc3a36847f809c131", "cast_id": 3, "profile_path": "/2iVDBmwip1yZm9WA2ucZj5fHeJz.jpg", "order": 2}, {"name": "Reese Witherspoon", "character": "Annie", "id": 368, "credit_id": "52fe448bc3a36847f809c13d", "cast_id": 6, "profile_path": "/6OPIR8TFcdVhox2obxmIWmJ2Qel.jpg", "order": 3}, {"name": "Peter Dinklage", "character": "Lemon", "id": 22970, "credit_id": "52fe448bc3a36847f809c135", "cast_id": 4, "profile_path": "/xuB7b4GbARu4HN6gq5zMqjGbkwF.jpg", "order": 4}, {"name": "Richard E. Grant", "character": "Franklin Wilhern", "id": 20766, "credit_id": "52fe448bc3a36847f809c139", "cast_id": 5, "profile_path": "/9q6RpZAEU72tceIvlGvHgEiKrfW.jpg", "order": 5}, {"name": "Simon Woods", "character": "Edward Vanderman", "id": 36665, "credit_id": "52fe448bc3a36847f809c141", "cast_id": 7, "profile_path": "/kU3NE79wuOPeIZ8hRKGUkDc203X.jpg", "order": 6}, {"name": "Nigel Havers", "character": "Mr. Vanderman", "id": 53517, "credit_id": "52fe448bc3a36847f809c145", "cast_id": 8, "profile_path": "/yujuXwxZibgl7NMhk0uZ1FX7Nyf.jpg", "order": 7}, {"name": "Christina Greatrex", "character": "Mrs. Vanderman", "id": 53518, "credit_id": "52fe448bc3a36847f809c149", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "Michael Feast", "character": "Jake/Witch", "id": 26259, "credit_id": "52fe448bc3a36847f809c14d", "cast_id": 10, "profile_path": "/ZeCV7CPVG63XE9Eria0pTPRgXh.jpg", "order": 9}, {"name": "Ronni Ancona", "character": "Wanda", "id": 47723, "credit_id": "52fe448bc3a36847f809c151", "cast_id": 11, "profile_path": null, "order": 10}, {"name": "Lenny Henry", "character": "Krull", "id": 53519, "credit_id": "52fe448bc3a36847f809c155", "cast_id": 12, "profile_path": "/nVvimLFmbCImntmAlqaOwRTWf1D.jpg", "order": 11}], "directors": [{"name": "Mark Palansky", "department": "Directing", "job": "Director", "credit_id": "52fe448bc3a36847f809c1a3", "profile_path": null, "id": 53525}], "vote_average": 6.5, "runtime": 103}, "16186": {"poster_path": "/dB2WX5romhtjQ0uF2ma6yedRd54.jpg", "production_countries": [], "revenue": 0, "overview": "Charles McCarter and his wife Helen are about to celebrate their 18th-wedding anniversary when Helen comes home to find her clothes packed up in a U-Haul van parked in the driveway. Charles is divorcing Her. Helen moves in with her grandmother Madea, an old woman who doesn't take any lip from anyone. Madea helps Helen through these tough times by showing her what is really important in life.", "video": false, "id": 16186, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Diary of a Mad Black Woman", "tagline": "", "vote_count": 54, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0422093", "adult": false, "backdrop_path": "/gX5n6DzXF3fOaXRlRiejQRTSBWz.jpg", "production_companies": [{"name": "Lions Gate Films", "id": 35}], "release_date": "2005-02-25", "popularity": 0.332550353740787, "original_title": "Diary of a Mad Black Woman", "budget": 0, "cast": [{"name": "Kimberly Elise", "character": "Helen", "id": 55314, "credit_id": "52fe46b49251416c75080b19", "cast_id": 1, "profile_path": "/315K0qi3aFmcgGweUiLwhdrvcfU.jpg", "order": 0}, {"name": "Steve Harris", "character": "Charles", "id": 2202, "credit_id": "52fe46b49251416c75080b1d", "cast_id": 2, "profile_path": "/ec3hNbeFCvtIe4JqGtskQ0mhITt.jpg", "order": 1}, {"name": "Tyler Perry", "character": "Madea", "id": 80602, "credit_id": "52fe46b49251416c75080b21", "cast_id": 3, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 2}, {"name": "Tyler Perry", "character": "Brian", "id": 80602, "credit_id": "52fe46b49251416c75080b25", "cast_id": 4, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 3}, {"name": "Tyler Perry", "character": "Joe", "id": 80602, "credit_id": "52fe46b49251416c75080b29", "cast_id": 5, "profile_path": "/fdBvkrv4lSKZ97eDLpmjlK1Tnbx.jpg", "order": 4}, {"name": "Shemar Moore", "character": "Orlando", "id": 50266, "credit_id": "52fe46b49251416c75080b33", "cast_id": 7, "profile_path": "/yHhjKqWqfyJbMMIhfLRDfigwm7L.jpg", "order": 5}, {"name": "Vickie Eng", "character": "Doctor", "id": 208316, "credit_id": "54f09e78925141795f008869", "cast_id": 9, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 6}, {"name": "Vickie Eng", "character": "Christina", "id": 208316, "credit_id": "54f09e83c3a3686b9a0061a5", "cast_id": 10, "profile_path": "/tMOywh9r30ZQBYNS8OGeqRjvfDj.jpg", "order": 7}], "directors": [{"name": "Darren Grant", "department": "Directing", "job": "Director", "credit_id": "5483b5419251416e7e009935", "profile_path": null, "id": 77441}], "vote_average": 6.5, "runtime": 116}, "72331": {"poster_path": "/lHcaLiPDDrLmJAL2MTlMzgM2s2x.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 112265139, "overview": "President Lincoln's mother is killed by a supernatural creature, which fuels his passion to crush vampires and their slave-owning helpers.", "video": false, "id": 72331, "genres": [{"id": 27, "name": "Horror"}], "title": "Abraham Lincoln: Vampire Hunter", "tagline": "Are you a patriot or a vampire?", "vote_count": 574, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1611224", "adult": false, "backdrop_path": "/6dJgvOSLD6DKYqd29HsC10Cjyii.jpg", "production_companies": [{"name": "Tim Burton Productions", "id": 8601}, {"name": "Abraham Productions", "id": 36430}, {"name": "Bazelevs Production", "id": 1038}, {"name": "Location Gourmet", "id": 36431}], "release_date": "2012-06-22", "popularity": 0.716150653487074, "original_title": "Abraham Lincoln: Vampire Hunter", "budget": 69000000, "cast": [{"name": "Benjamin Walker", "character": "Abraham Lincoln", "id": 239996, "credit_id": "52fe4864c3a368484e0f6683", "cast_id": 8, "profile_path": "/zd56RC1ifqvQyA90cjtvYD4sO3I.jpg", "order": 0}, {"name": "Dominic Cooper", "character": "Henry Sturgess", "id": 55470, "credit_id": "52fe4865c3a368484e0f6701", "cast_id": 39, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 1}, {"name": "Anthony Mackie", "character": "Will Johnson", "id": 53650, "credit_id": "52fe4864c3a368484e0f667f", "cast_id": 7, "profile_path": "/5VGGJ0Co8SC94iiedWb2o3C36T.jpg", "order": 2}, {"name": "Mary Elizabeth Winstead", "character": "Mary Todd Lincoln", "id": 17628, "credit_id": "52fe4864c3a368484e0f6677", "cast_id": 3, "profile_path": "/fUfNwh6tDtn98Tfr3fMtUXK39r6.jpg", "order": 3}, {"name": "Rufus Sewell", "character": "Adam", "id": 17328, "credit_id": "52fe4864c3a368484e0f667b", "cast_id": 5, "profile_path": "/f2PNMnztHluTOw8YfCJUZ2pKfbe.jpg", "order": 4}, {"name": "John Rothman", "character": "Jefferson Davis", "id": 60205, "credit_id": "52fe4865c3a368484e0f671b", "cast_id": 45, "profile_path": "/bRSoDm75c5fKBbCrbrXwaPiAeST.jpg", "order": 5}, {"name": "Marton Csokas", "character": "Jack Barts", "id": 20982, "credit_id": "52fe4865c3a368484e0f671f", "cast_id": 46, "profile_path": "/y3I1CjTRIqVJnz3HlrnVBDcwWhN.jpg", "order": 6}, {"name": "Alex Lombard", "character": "Gabrielle", "id": 565500, "credit_id": "52fe4864c3a368484e0f6687", "cast_id": 14, "profile_path": "/12KAJdNlqWK1ACdsKTHDw0MUiHr.jpg", "order": 7}, {"name": "Jimmi Simpson", "character": "Joshua Speed", "id": 22125, "credit_id": "52fe4865c3a368484e0f670d", "cast_id": 42, "profile_path": "/eONdiJpMZMdsHgiBVeSW1R2MQWG.jpg", "order": 8}, {"name": "Teri Wyble", "character": "Henry's Wife", "id": 565501, "credit_id": "52fe4864c3a368484e0f668b", "cast_id": 15, "profile_path": "/4peyoUZx7wqQpLCII4Kcb5VmaaV.jpg", "order": 9}, {"name": "Cameron M. Brown", "character": "Willie Lincoln", "id": 565503, "credit_id": "52fe4864c3a368484e0f668f", "cast_id": 17, "profile_path": "/l66Cc8vED4OZ0n7MP320TX9xqvZ.jpg", "order": 10}, {"name": "Frank Brennan", "character": "Jeb Nolan", "id": 565504, "credit_id": "52fe4864c3a368484e0f6693", "cast_id": 18, "profile_path": "/A1Z23UqiwBxX66iJTB4q9xjnG5P.jpg", "order": 11}, {"name": "John Neisler", "character": "Rev. Charles Dresser", "id": 565505, "credit_id": "52fe4864c3a368484e0f6697", "cast_id": 19, "profile_path": "/yfqtwgV4ettobFyPn6x7LW6u5AI.jpg", "order": 12}, {"name": "Meade Patton", "character": "Nancy Lincoln's Doctor", "id": 565506, "credit_id": "52fe4864c3a368484e0f669b", "cast_id": 20, "profile_path": "/nFielXY5gJS2HJFjP0PrMaKAoRL.jpg", "order": 13}, {"name": "Simeon Sj\u00f6berg", "character": "Edward's Dancer #16", "id": 565507, "credit_id": "52fe4864c3a368484e0f669f", "cast_id": 21, "profile_path": "/iqSTfiVrsXEzOz6WkwuUUDq9dN3.jpg", "order": 14}, {"name": "James Rawlings", "character": "Congress Man", "id": 565508, "credit_id": "52fe4864c3a368484e0f66a3", "cast_id": 22, "profile_path": "/cxADb4TZ27Rsfww4lcd74iJMBwm.jpg", "order": 15}, {"name": "Alan Tudyk", "character": "Stephen A. Douglas", "id": 21088, "credit_id": "52fe4865c3a368484e0f6705", "cast_id": 40, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 16}, {"name": "Robin McLeavy", "character": "Nancy Hanks Lincoln", "id": 136348, "credit_id": "52fe4865c3a368484e0f6709", "cast_id": 41, "profile_path": "/hOVhmkIWqWy7CBGXyNdZmZEaHza.jpg", "order": 17}, {"name": "Erin Wasson", "character": "Vadoma", "id": 147721, "credit_id": "52fe4865c3a368484e0f6717", "cast_id": 44, "profile_path": "/6SiaA7RtdRVIPlb6BTBNRR6KH0q.jpg", "order": 18}, {"name": "Jaqueline Fleming", "character": "Harriet Tubman", "id": 62072, "credit_id": "52fe4865c3a368484e0f6723", "cast_id": 47, "profile_path": "/bAR3JD4dbuknBbPdtsuytWGgDaU.jpg", "order": 19}, {"name": "Laura Cayouette", "character": "Vadoma Maid", "id": 565498, "credit_id": "52fe4865c3a368484e0f6727", "cast_id": 48, "profile_path": "/k8z62zDUoFy5hXmkoUStn0eJu7S.jpg", "order": 20}, {"name": "Joseph Mawle", "character": "Thomas Lincoln", "id": 119783, "credit_id": "52fe4865c3a368484e0f672b", "cast_id": 49, "profile_path": "/a7334sICnKRe5RFQEECQsvoyQ8P.jpg", "order": 21}, {"name": "Lux Haney-Jardine", "character": "Young Abraham Lincoln", "id": 1271772, "credit_id": "52fe4865c3a368484e0f672f", "cast_id": 50, "profile_path": "/nWeBQur85McjXYN8R8PzqM60oy3.jpg", "order": 22}, {"name": "Curtis Harris", "character": "Young Will", "id": 221087, "credit_id": "52fe4865c3a368484e0f6733", "cast_id": 51, "profile_path": "/t0bj62C7QmUouCw2QN2imi527hw.jpg", "order": 23}, {"name": "Bill Martin Williams", "character": "RR Pastor", "id": 1271773, "credit_id": "52fe4865c3a368484e0f6737", "cast_id": 52, "profile_path": "/xcSRv55e5sMSFNMyw1VUUiacxtd.jpg", "order": 24}], "directors": [{"name": "Timur Bekmambetov", "department": "Directing", "job": "Director", "credit_id": "52fe4865c3a368484e0f6713", "profile_path": "/7XQsDvrshgbFYvQN0KgUmI691uF.jpg", "id": 23430}], "vote_average": 5.5, "runtime": 94}, "8005": {"poster_path": "/3pd3sdot0HfQTFzqgTUzaF4kcxP.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 35739755, "overview": "Robin Hood comes home after fighting in the Crusades to learn that the noble King Richard is in exile and that the despotic King John now rules England, with the help of the Sheriff of Rottingham. Robin Hood assembles a band of fellow patriots to do battle with King John and the Sheriff.", "video": false, "id": 8005, "genres": [{"id": 35, "name": "Comedy"}], "title": "Robin Hood: Men in Tights", "tagline": "The legend had it coming... Find out where Robin Hood put his Little John, what made Will Scarlet, and what did Friar Tuck into his tights that Maid Marion all of a quiver?", "vote_count": 144, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0107977", "adult": false, "backdrop_path": "/oq3KGdwfK4XRyemPTOBEP1QviIi.jpg", "production_companies": [{"name": "Brooksfilms Ltd.", "id": 617}, {"name": "Gaumont", "id": 9}], "release_date": "1993-07-28", "popularity": 0.861126967946469, "original_title": "Robin Hood: Men in Tights", "budget": 20000000, "cast": [{"name": "Cary Elwes", "character": "Robin Hood", "id": 2130, "credit_id": "52fe448cc3a36847f809c3a5", "cast_id": 1, "profile_path": "/wmvYoJHStQeQzrpqOM9tkvf1wwF.jpg", "order": 0}, {"name": "Dom DeLuise", "character": "Don Giovanni", "id": 6844, "credit_id": "52fe448cc3a36847f809c3d5", "cast_id": 13, "profile_path": "/4surDSbrpCHEKcerb5tWWUJbwDq.jpg", "order": 1}, {"name": "Roger Rees", "character": "Sheriff of Rotingham", "id": 16407, "credit_id": "52fe448cc3a36847f809c3ad", "cast_id": 3, "profile_path": "/gOUeYKeHwYeFULO5SXFN8BSUjaW.jpg", "order": 2}, {"name": "Dave Chappelle", "character": "Ahchoo", "id": 4169, "credit_id": "52fe448cc3a36847f809c3b9", "cast_id": 6, "profile_path": "/pSdXq3a0lxmwR8Rx7Kz6mXJ0JU7.jpg", "order": 3}, {"name": "Eric Allan Kramer", "character": "Little John", "id": 41125, "credit_id": "52fe448cc3a36847f809c3c5", "cast_id": 9, "profile_path": "/dHXrTKp6Ksa4TzC2SJCGHzKKzpI.jpg", "order": 4}, {"name": "Patrick Stewart", "character": "King Richard", "id": 2387, "credit_id": "52fe448cc3a36847f809c3d1", "cast_id": 12, "profile_path": "/9APDd4HgEasZemAcSEBETY9DQoL.jpg", "order": 5}, {"name": "Megan Cavanagh", "character": "Broomhilde", "id": 53570, "credit_id": "52fe448cc3a36847f809c3c1", "cast_id": 8, "profile_path": "/xZML4JXgD7Yd0f19hXhq7bXLXfC.jpg", "order": 6}, {"name": "Richard Lewis", "character": "Prince John", "id": 6105, "credit_id": "52fe448cc3a36847f809c3a9", "cast_id": 2, "profile_path": "/zc2BlkPtYJAsIAVbZ4zQPEMW1t6.jpg", "order": 9}, {"name": "Isaac Hayes", "character": "Asneeze", "id": 6542, "credit_id": "52fe448cc3a36847f809c3bd", "cast_id": 7, "profile_path": "/4igh7emwzt4xBLw1r05gCUHxwzD.jpg", "order": 10}, {"name": "Amy Yasbeck", "character": "Maid Marian", "id": 1219, "credit_id": "52fe448cc3a36847f809c3b1", "cast_id": 4, "profile_path": "/p2wXpK7wRwLre2e37Z6QQ6BvcUg.jpg", "order": 11}, {"name": "Mark Blankfield", "character": "Blinkin", "id": 29709, "credit_id": "52fe448cc3a36847f809c3b5", "cast_id": 5, "profile_path": "/r537yoz3NyRB5I3OZaXqrUH2TaA.jpg", "order": 11}, {"name": "Matthew Porretta", "character": "Will Scarlet O'Hara", "id": 53571, "credit_id": "52fe448cc3a36847f809c3c9", "cast_id": 10, "profile_path": "/w8vC9WumfJl6XyRecgav8Pvp8C1.jpg", "order": 11}, {"name": "Tracey Ullman", "character": "Latrine", "id": 30364, "credit_id": "52fe448cc3a36847f809c3cd", "cast_id": 11, "profile_path": "/eyymB8nyXQj5X0w3l7kPXYySBnW.jpg", "order": 12}, {"name": "Dick Van Patten", "character": "The Abbot", "id": 14671, "credit_id": "52fe448cc3a36847f809c3d9", "cast_id": 14, "profile_path": "/gZumTJacsExMTwMwNCAQ54i2k2l.jpg", "order": 13}, {"name": "Robert Ridgely", "character": "The Hangman", "id": 25626, "credit_id": "52fe448cc3a36847f809c3dd", "cast_id": 15, "profile_path": "/sxvnvaZRpOhFqXk7yiN8iJE9Elw.jpg", "order": 14}, {"name": "Mel Brooks", "character": "Rabbi Tuckman", "id": 14639, "credit_id": "52fe448cc3a36847f809c405", "cast_id": 22, "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "order": 15}], "directors": [{"name": "Mel Brooks", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a36847f809c3e3", "profile_path": "/ndFo3LOYNCUghQTK833N1Wtuynr.jpg", "id": 14639}], "vote_average": 6.2, "runtime": 104}, "57158": {"poster_path": "/gQCiuxGsfiXH1su6lp9n0nd0UeH.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 958400000, "overview": "The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.", "video": false, "id": 57158, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Hobbit: The Desolation of Smaug", "tagline": "Beyond darkness... beyond desolation... lies the greatest danger of all.", "vote_count": 1579, "homepage": "http://www.thehobbit.com/", "belongs_to_collection": {"backdrop_path": "/7wO7MSnP5UcwR2cTHdJFF1vP4Ie.jpg", "poster_path": "/hQghXOjSS2xfzx9XnMyZqt8brCF.jpg", "id": 121938, "name": "The Hobbit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1170358", "adult": false, "backdrop_path": "/hyR7Fs6Tepgu3yCQGtgO4Ilz9tY.jpg", "production_companies": [{"name": "WingNut Films", "id": 11}, {"name": "New Line Cinema", "id": 12}, {"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}], "release_date": "2013-12-13", "popularity": 7.4804638119443, "original_title": "The Hobbit: The Desolation of Smaug", "budget": 250000000, "cast": [{"name": "Martin Freeman", "character": "Bilbo Baggins", "id": 7060, "credit_id": "52fe4926c3a36847f818b775", "cast_id": 3, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 0}, {"name": "Ian McKellen", "character": "Gandalf", "id": 1327, "credit_id": "52fe4926c3a36847f818b779", "cast_id": 7, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 1}, {"name": "Richard Armitage", "character": "Thorin Oakenshield", "id": 30315, "credit_id": "52fe4926c3a36847f818b7c9", "cast_id": 26, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 2}, {"name": "Ken Stott", "character": "Balin", "id": 25136, "credit_id": "52fe4926c3a36847f818b7e9", "cast_id": 35, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 3}, {"name": "Graham McTavish", "character": "Dwalin", "id": 95047, "credit_id": "52fe4926c3a36847f818b7ed", "cast_id": 36, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 4}, {"name": "William Kircher", "character": "Bifur", "id": 67123, "credit_id": "52fe4926c3a36847f818b7e1", "cast_id": 33, "profile_path": "/pgSkxH8LeJhNWKwG3D5690ZTLbs.jpg", "order": 5}, {"name": "James Nesbitt", "character": "Bofur", "id": 34715, "credit_id": "52fe4926c3a36847f818b7f1", "cast_id": 37, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 6}, {"name": "Stephen Hunter", "character": "Bombur", "id": 1193834, "credit_id": "52fe4926c3a36847f818b7dd", "cast_id": 32, "profile_path": "/xGKavu5mcGBOQMSawk9voZeEzN6.jpg", "order": 7}, {"name": "Dean O'Gorman", "character": "Fili", "id": 152566, "credit_id": "52fe4926c3a36847f818b7b5", "cast_id": 21, "profile_path": "/lSXxMaASqm9TfnKaDNaxolEOW3A.jpg", "order": 8}, {"name": "Aidan Turner", "character": "Kili", "id": 207558, "credit_id": "52fe4926c3a36847f818b7e5", "cast_id": 34, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 9}, {"name": "Benedict Cumberbatch", "character": "Smaug / The Necromancer", "id": 71580, "credit_id": "52fe4926c3a36847f818b7ad", "cast_id": 19, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 10}, {"name": "Lee Pace", "character": "Thranduil", "id": 72095, "credit_id": "52fe4926c3a36847f818b7bd", "cast_id": 23, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 11}, {"name": "Luke Evans", "character": "Bard the Bowman", "id": 114019, "credit_id": "52fe4926c3a36847f818b7cd", "cast_id": 27, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 12}, {"name": "Evangeline Lilly", "character": "Tauriel", "id": 19034, "credit_id": "52fe4926c3a36847f818b7c1", "cast_id": 24, "profile_path": "/lsXb0Qt9WyYDJUdON26vmtKVkE6.jpg", "order": 13}, {"name": "Orlando Bloom", "character": "Legolas", "id": 114, "credit_id": "52fe4926c3a36847f818b7c5", "cast_id": 25, "profile_path": "/vq90ECKinICxJYYZpbga4pMwch.jpg", "order": 14}, {"name": "Billy Connolly", "character": "Dain Ironfoot", "id": 9188, "credit_id": "52fe4926c3a36847f818b7d5", "cast_id": 29, "profile_path": "/7e1rVdJah2r0DaMpovrhbR2dHPS.jpg", "order": 15}, {"name": "Mikael Persbrandt", "character": "Beorn", "id": 52398, "credit_id": "52fe4926c3a36847f818b77d", "cast_id": 10, "profile_path": "/yr557miX4IwMLqPfLQs3kWQZTMq.jpg", "order": 16}, {"name": "Manu Bennett", "character": "Azog", "id": 41782, "credit_id": "52fe4926c3a36847f818b7d1", "cast_id": 28, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 17}, {"name": "Stephen Fry", "character": "The Master of Laketown", "id": 11275, "credit_id": "52fe4926c3a36847f818b78b", "cast_id": 13, "profile_path": "/uaRoTAS2D15vdlpHm122UEUg5ck.jpg", "order": 18}, {"name": "John Bell", "character": "Bain", "id": 126667, "credit_id": "52fe4926c3a36847f818b7b1", "cast_id": 20, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 19}, {"name": "Sylvester McCoy", "character": "Radagast", "id": 80112, "credit_id": "52fe4926c3a36847f818b781", "cast_id": 11, "profile_path": "/hgM7jEkkwI0HHx3K44UE48gBbfa.jpg", "order": 20}, {"name": "Terry Notary", "character": "Goblin", "id": 236696, "credit_id": "52fe4926c3a36847f818b7b9", "cast_id": 22, "profile_path": "/js1etZJbHhNKgTfJKVTIAMbZBCO.jpg", "order": 21}, {"name": "Peter Hambleton", "character": "Gloin", "id": 1193832, "credit_id": "52fe4926c3a36847f818b7d9", "cast_id": 31, "profile_path": "/jcsOAVVLyAnJpnZRAWoGtuI4nlk.jpg", "order": 22}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe4926c3a36847f818b83d", "cast_id": 50, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 23}, {"name": "Stephen Colbert", "character": "Laketown Spy", "id": 58769, "credit_id": "532bf221c3a3684bab000fe8", "cast_id": 51, "profile_path": "/xVQMuzz4zNX92XFyCybA9JwMCYs.jpg", "order": 24}, {"name": "Jed Brophy", "character": "Nori", "id": 173451, "credit_id": "534106980e0a2679aa00190c", "cast_id": 52, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 25}, {"name": "Sarah Peirse", "character": "Hilda Blanca", "id": 15092, "credit_id": "53e652d90e0a2628cb001eb5", "cast_id": 61, "profile_path": "/dILxeuQbDxtSxMCL863X4qum29X.jpg", "order": 26}, {"name": "Mary Nesbitt", "character": "Tilda", "id": 1359823, "credit_id": "5405c71cc3a368068c0082ed", "cast_id": 62, "profile_path": "/vgiEo4KYAIoLWECsVBWebRBnwnr.jpg", "order": 27}, {"name": "Peggy Nesbitt", "character": "Sigrid", "id": 1359824, "credit_id": "5405c753c3a3682d98006c39", "cast_id": 63, "profile_path": "/ArwjGFXBsUvLxMvI1VHc0eCkUys.jpg", "order": 28}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4926c3a36847f818b771", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 7.7, "runtime": 161}, "8007": {"poster_path": "/dl1OgKeKxKQsOAqGM7TZRNozbKf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 91753202, "overview": "While flying a routine reconnaissance mission over Bosnia, fighter pilot Chris Burnett photographs something he wasn't supposed to see and gets shot down behind enemy lines, where he must outrun an army led by a ruthless Serbian general. With time running out and a deadly tracker on his trail, Burnett's commanding officer decides to risk his career and launch a renegade rescue mission to save his life.", "video": false, "id": 8007, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}, {"id": 10752, "name": "War"}], "title": "Behind Enemy Lines", "tagline": "His only weapon is his will to survive.", "vote_count": 131, "homepage": "", "belongs_to_collection": {"backdrop_path": "/5sMWk8wutGCFAM7MAFPQJyc0ny0.jpg", "poster_path": "/baDDWPQgZyBKiDNeipLJ9LEZ5BX.jpg", "id": 98513, "name": "Behind Enemy Lines Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "sh", "name": ""}], "imdb_id": "tt0159273", "adult": false, "backdrop_path": "/wv2E3WwZPGTU8eSh8IwtzlgQyaY.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Davis Entertainment", "id": 1302}], "release_date": "2001-11-17", "popularity": 0.942541641129127, "original_title": "Behind Enemy Lines", "budget": 40000000, "cast": [{"name": "Owen Wilson", "character": "Lt. Chris Burnett", "id": 887, "credit_id": "52fe448cc3a36847f809c465", "cast_id": 1, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Admiral Leslie McMahon Reigart", "id": 193, "credit_id": "52fe448cc3a36847f809c469", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Gabriel Macht", "character": "Stackhouse", "id": 16856, "credit_id": "52fe448cc3a36847f809c46d", "cast_id": 3, "profile_path": "/rxrBdBwBdZDnDC8Fa7MpQq8kRQ2.jpg", "order": 2}, {"name": "Charles Malik Whitfield", "character": "Capt. Rodway, USMC", "id": 53572, "credit_id": "52fe448cc3a36847f809c471", "cast_id": 4, "profile_path": "/zejy0VbTCNhoCeFFcs7y5d5ETAo.jpg", "order": 3}, {"name": "David Keith", "character": "Master Chief Tom O'Malley", "id": 18181, "credit_id": "52fe448cc3a36847f809c475", "cast_id": 5, "profile_path": "/s9XKsFGMXkhWVpnzpup7uv3x33J.jpg", "order": 4}, {"name": "Olek Krupa", "character": "Miroslav Lokar", "id": 53573, "credit_id": "52fe448cc3a36847f809c479", "cast_id": 6, "profile_path": "/nv44QkTPkymcd7MiB1K69RsG4B1.jpg", "order": 5}, {"name": "Joaquim de Almeida", "character": "Admiral Piquet", "id": 22462, "credit_id": "52fe448cc3a36847f809c47d", "cast_id": 7, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 6}, {"name": "Vladimir Mashkov", "character": "Sasha", "id": 86151, "credit_id": "537f36f60e0a26588c000239", "cast_id": 19, "profile_path": "/iHbpax1R5fXet4ibr0M1ipJ7VXS.jpg", "order": 7}, {"name": "Marko Igonda", "character": "Bazda", "id": 137336, "credit_id": "537f37020e0a2624ba0045fa", "cast_id": 20, "profile_path": "/pIyYLugGzv2tp2KJX2Nbd9YKYES.jpg", "order": 8}, {"name": "Eyal Podell", "character": "Petty Officer Kennedy", "id": 61855, "credit_id": "537f37180e0a2624c0004b10", "cast_id": 21, "profile_path": "/c5HBvjC98ex55qTR8eOomQ93srd.jpg", "order": 9}, {"name": "Geoff Pierson", "character": "Admiral Donnelly", "id": 25879, "credit_id": "537f37280e0a26588c00024c", "cast_id": 22, "profile_path": "/vhLTZ86i4fa5NbhpHoORIe0pKIl.jpg", "order": 10}, {"name": "Aernout Van Lynden", "character": "Aernout Van Lynden", "id": 1323218, "credit_id": "537f37380e0a26588c000250", "cast_id": 23, "profile_path": "/qBvZpDMFYMRJi9E7lkoepgse0hw.jpg", "order": 11}, {"name": "Sam Jaeger", "character": "Red Crown Operator", "id": 65727, "credit_id": "537f37490e0a2624c0004b18", "cast_id": 24, "profile_path": "/u1b6eyeGBYOrYGidPBWBxjWI6TX.jpg", "order": 12}, {"name": "Shane Johnson", "character": "Red Crown Operator", "id": 76038, "credit_id": "537f37580e0a26588c00025b", "cast_id": 25, "profile_path": "/eyogwkraTiQQlTMvWSxTKsfgayr.jpg", "order": 13}, {"name": "Don Winston", "character": "Red Crown Operator", "id": 1323219, "credit_id": "537f37670e0a2624b7004c4c", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "Laurence Mason", "character": "Brandon", "id": 65141, "credit_id": "53a16bb1c3a3687bab0023f8", "cast_id": 31, "profile_path": "/lYWBLjfpeZS84FhwzrBWFMe3c3C.jpg", "order": 15}, {"name": "Leon Russom", "character": "Ed Burnett", "id": 169920, "credit_id": "53a16bfac3a3687bbc0022a3", "cast_id": 32, "profile_path": "/kITkYMh1VZgHSAMlMxsZ6jaUF7C.jpg", "order": 16}, {"name": "Todd Boyce", "character": "Junior Officer", "id": 17354, "credit_id": "53a16c82c3a3687b9e002471", "cast_id": 33, "profile_path": "/3uT1rplcxrKBmhi9vFQpB4Q6Qop.jpg", "order": 17}, {"name": "Dorothy Lucey", "character": "Dorothy Lucey", "id": 1219107, "credit_id": "53a16ce7c3a3687b9e002494", "cast_id": 34, "profile_path": "/yO5MfrWKwYx149HBusSlt8XfIeU.jpg", "order": 18}], "directors": [{"name": "John Moore", "department": "Directing", "job": "Director", "credit_id": "52fe448cc3a36847f809c483", "profile_path": "/qr12pX27OhWqlW1K75W8RaIg3Kf.jpg", "id": 12028}], "vote_average": 5.9, "runtime": 106}, "8009": {"poster_path": "/6l4t1vWAFMuAiOpDT0mDWlrr5Mp.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 5900000, "overview": "He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.", "video": false, "id": 8009, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "Highlander", "tagline": "There can be only one.", "vote_count": 147, "homepage": "", "belongs_to_collection": {"backdrop_path": "/gY5NPUGGJJdaGPlEM6f2pfHNtit.jpg", "poster_path": "/hxy9GZRAoEIt2OJ2e1YXSRP80ti.jpg", "id": 8050, "name": "Highlander Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "cs", "name": "\u010cesk\u00fd"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0091203", "adult": false, "backdrop_path": "/q6jg0cSixdEGUsyzkuh2qqL6iVq.jpg", "production_companies": [{"name": "EMI Films Ltd.", "id": 538}], "release_date": "1986-03-07", "popularity": 0.884428705531826, "original_title": "Highlander", "budget": 16000000, "cast": [{"name": "Christopher Lambert", "character": "Connor 'The Highlander' MacLeod", "id": 38559, "credit_id": "52fe448cc3a36847f809c58f", "cast_id": 1, "profile_path": "/sIl2F9LDTjfnAVBxEG5CTtZGuJU.jpg", "order": 0}, {"name": "Roxanne Hart", "character": "Brenda J. Wyatt", "id": 29021, "credit_id": "52fe448cc3a36847f809c593", "cast_id": 2, "profile_path": "/2Zale2M3jj2G2rwNSifzklYxluX.jpg", "order": 1}, {"name": "Clancy Brown", "character": "Victor 'The Kurgan' Kruger", "id": 6574, "credit_id": "52fe448cc3a36847f809c597", "cast_id": 3, "profile_path": "/pwiG1ljLoqfcmFH2zFp5NP2ML4B.jpg", "order": 2}, {"name": "Sean Connery", "character": "Juan Sanchez Villa-Lobos Ramirez", "id": 738, "credit_id": "52fe448dc3a36847f809c59b", "cast_id": 4, "profile_path": "/ce84udJZ9QRSR44jxwK2apM3DM8.jpg", "order": 3}, {"name": "Beatie Edney", "character": "Heather MacLeod", "id": 53515, "credit_id": "52fe448dc3a36847f809c59f", "cast_id": 5, "profile_path": "/fV5Mf1AKqsL1IhxZxX9JQ68WrqB.jpg", "order": 4}, {"name": "Alan North", "character": "Lieutenant Frank Moran", "id": 53584, "credit_id": "52fe448dc3a36847f809c5a3", "cast_id": 6, "profile_path": "/q79hT4OeYOYzH2WIfqS6VsCmKzg.jpg", "order": 5}, {"name": "Jon Polito", "character": "Det. Walter Bedsoe", "id": 4253, "credit_id": "52fe448dc3a36847f809c5a7", "cast_id": 7, "profile_path": "/Uin6vfef4tEIqNYcyfnbn6aHb3.jpg", "order": 6}, {"name": "Sheila Gish", "character": "Rachel Ellenstein", "id": 53585, "credit_id": "52fe448dc3a36847f809c5ab", "cast_id": 8, "profile_path": null, "order": 7}, {"name": "Hugh Quarshie", "character": "Sunda Kastagir", "id": 31925, "credit_id": "52fe448dc3a36847f809c5af", "cast_id": 9, "profile_path": "/klpbBUBEwIuVHt2RWCNOxNvuprS.jpg", "order": 8}, {"name": "Peter Diamond", "character": "Aman Fasil", "id": 53587, "credit_id": "52fe448dc3a36847f809c5b3", "cast_id": 11, "profile_path": "/rIf04LU2CsdzdvUJghFVVjdWcm6.jpg", "order": 10}, {"name": "Billy Hartman", "character": "Dugal MacLeod", "id": 53588, "credit_id": "52fe448dc3a36847f809c5b7", "cast_id": 12, "profile_path": null, "order": 11}, {"name": "James Cosmo", "character": "Angus MacLeod", "id": 2467, "credit_id": "52fe448dc3a36847f809c5bb", "cast_id": 13, "profile_path": "/523gSqAG9eSSNmKexFFZYh38SxL.jpg", "order": 12}, {"name": "Celia Imrie", "character": "Kate MacLeod", "id": 9139, "credit_id": "52fe448dc3a36847f809c5bf", "cast_id": 14, "profile_path": "/iLXygE9E54xeVTGGUqrRDPFjAx9.jpg", "order": 13}, {"name": "Christopher Malcolm", "character": "Kirk Matunas", "id": 47808, "credit_id": "52fe448dc3a36847f809c5f3", "cast_id": 23, "profile_path": "/9Ua0yZoI6dZQ5VDqfU096dAM1Un.jpg", "order": 14}, {"name": "Frank Dux", "character": "Old Man in Car", "id": 56985, "credit_id": "52fe448dc3a36847f809c5f7", "cast_id": 24, "profile_path": null, "order": 15}], "directors": [{"name": "Russell Mulcahy", "department": "Directing", "job": "Director", "credit_id": "52fe448dc3a36847f809c5c5", "profile_path": "/jScppFv3bbozdAdIPUQ8vp4GbnG.jpg", "id": 52968}], "vote_average": 6.4, "runtime": 116}, "8012": {"poster_path": "/vWtDUUgQAsVyvRW4mE75LBgVm2e.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 72021008, "overview": "A mobster travels to Hollywood to collect a debt and discovers that the movie business is much the same as his current job.", "video": false, "id": 8012, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Get Shorty", "tagline": "The mob is tough, but it\u2019s nothing like show business.", "vote_count": 60, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6KEpKs5asAqOwEr9XrOZJSMHW7O.jpg", "poster_path": "/lEVceV3akWMUeShECVCow1auUQv.jpg", "id": 91698, "name": "Chili Palmer Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0113161", "adult": false, "backdrop_path": "/g1BfxcnplYEveGqS1ttfhdRBgbR.jpg", "production_companies": [{"name": "Jersey Films", "id": 216}, {"name": "Metro-Goldwyn-Mayer", "id": 21}], "release_date": "1995-10-20", "popularity": 0.547267727592625, "original_title": "Get Shorty", "budget": 30250000, "cast": [{"name": "John Travolta", "character": "Chili Palmer", "id": 8891, "credit_id": "52fe448dc3a36847f809c6eb", "cast_id": 1, "profile_path": "/ns8uZHEHzV18ifqA9secv8c2Ard.jpg", "order": 0}, {"name": "Gene Hackman", "character": "Harry Zimm", "id": 193, "credit_id": "52fe448dc3a36847f809c6ef", "cast_id": 2, "profile_path": "/qEKcmwc1XstymEniGuCs3KIsGfP.jpg", "order": 1}, {"name": "Rene Russo", "character": "Karen Flores", "id": 14343, "credit_id": "52fe448dc3a36847f809c6f3", "cast_id": 3, "profile_path": "/aaPzuXRHdyxamPMXqu70okPaqvB.jpg", "order": 2}, {"name": "Danny DeVito", "character": "Martin Weir", "id": 518, "credit_id": "52fe448dc3a36847f809c6f7", "cast_id": 4, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 3}, {"name": "Dennis Farina", "character": "Ray 'Bones' Barboni", "id": 1117, "credit_id": "52fe448dc3a36847f809c6fb", "cast_id": 5, "profile_path": "/hgok9DkDgyqAxbYGyErhTfLhjxH.jpg", "order": 4}, {"name": "Delroy Lindo", "character": "Bo Catlett", "id": 18792, "credit_id": "52fe448dc3a36847f809c6ff", "cast_id": 6, "profile_path": "/3rMEuNInVsJLFjx1Y50uIxjX46P.jpg", "order": 5}, {"name": "James Gandolfini", "character": "Bear", "id": 4691, "credit_id": "52fe448dc3a36847f809c703", "cast_id": 7, "profile_path": "/19r3knxqTAPUgfItOPXg3ouOcpI.jpg", "order": 6}, {"name": "Jon Gries", "character": "Ronnie Wingate", "id": 9629, "credit_id": "52fe448dc3a36847f809c707", "cast_id": 8, "profile_path": "/yNhP4IZCMN10duIYKdHUFt8mJCU.jpg", "order": 7}, {"name": "Renee Props", "character": "Nicki", "id": 53600, "credit_id": "52fe448dc3a36847f809c70b", "cast_id": 9, "profile_path": null, "order": 8}, {"name": "David Paymer", "character": "Leo Devoe", "id": 19839, "credit_id": "52fe448dc3a36847f809c70f", "cast_id": 10, "profile_path": "/x7XfS0b6g6tf6X6RTH6HJZksPRl.jpg", "order": 9}, {"name": "Martin Ferrero", "character": "Tommy Carlo", "id": 4790, "credit_id": "52fe448dc3a36847f809c713", "cast_id": 11, "profile_path": "/gTIclBDE9q6TFmOx7JIn32zTaVk.jpg", "order": 10}, {"name": "Miguel Sandoval", "character": "Mr. Escobar", "id": 30488, "credit_id": "52fe448dc3a36847f809c717", "cast_id": 12, "profile_path": "/4Vnbl64PeNlqWozQAmvJ1HmI71B.jpg", "order": 11}, {"name": "Jacob Vargas", "character": "Yayo Portillo", "id": 16429, "credit_id": "52fe448dc3a36847f809c71b", "cast_id": 13, "profile_path": "/nkcDgRPpxTwpiRmUOcHFZpmRYY8.jpg", "order": 12}, {"name": "Bobby Slayton", "character": "Dick Allen", "id": 53601, "credit_id": "52fe448dc3a36847f809c71f", "cast_id": 14, "profile_path": "/nFTCMgev1PrIwyn9EpZNDSgeyyN.jpg", "order": 13}, {"name": "Linda Hart", "character": "Fay Devoe", "id": 53602, "credit_id": "52fe448dc3a36847f809c723", "cast_id": 15, "profile_path": "/9gzrHfKwWcwVYikfWhqsOWitpnZ.jpg", "order": 14}, {"name": "Jeffrey J. Stephen", "character": "Bones' Buddy (as Jeffrey J. Stephan)", "id": 141582, "credit_id": "53aa2737c3a3684cf800094d", "cast_id": 25, "profile_path": "/krBGyBelQSG7FOFS7WpKDQSA0eQ.jpg", "order": 15}], "directors": [{"name": "Barry Sonnenfeld", "department": "Directing", "job": "Director", "credit_id": "52fe448dc3a36847f809c729", "profile_path": "/21AEXVpaJt5V6xxn8IxA175F8Q3.jpg", "id": 5174}], "vote_average": 6.5, "runtime": 105}, "57165": {"poster_path": "/Albfq3ziSCQVyh5PzMSsFmmgHmy.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 301000000, "overview": "A decade after his heroic defeat of the monstrous Kraken, Perseus-the demigod son of Zeus-is attempting to live a quieter life as a village fisherman and the sole parent to his 10-year old son, Helius. Meanwhile, a struggle for supremacy rages between the gods and the Titans. Dangerously weakened by humanity's lack of devotion, the gods are losing control of the imprisoned Titans and their ferocious leader, Kronos, father of the long-ruling brothers Zeus, Hades and Poseidon.", "video": false, "id": 57165, "genres": [{"id": 12, "name": "Adventure"}], "title": "Wrath of the Titans", "tagline": "Feel the Wrath", "vote_count": 681, "homepage": "http://www.wrathofthetitansmovie.org", "belongs_to_collection": {"backdrop_path": "/Awy2ye1yJ75ukpDP0qtOx0r7Eng.jpg", "poster_path": "/3TXIuCHr2m9oZcLJOc5qo9o5WsT.jpg", "id": 86780, "name": "Clash of the Titans Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1646987", "adult": false, "backdrop_path": "/mdDiviHKdjYZ8kFZKaoz4ZfYcwM.jpg", "production_companies": [{"name": "Thunder Road Pictures", "id": 3528}, {"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Cott Productions", "id": 24175}, {"name": "Furia de Titanes II, A.I.E.", "id": 24176}], "release_date": "2012-03-29", "popularity": 1.33630157119527, "original_title": "Wrath of the Titans", "budget": 150000000, "cast": [{"name": "Liam Neeson", "character": "Zeus", "id": 3896, "credit_id": "52fe4926c3a36847f818b903", "cast_id": 3, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 0}, {"name": "Sam Worthington", "character": "Perseus", "id": 65731, "credit_id": "52fe4926c3a36847f818b907", "cast_id": 4, "profile_path": "/9XzAE3ZnCnazub4xrSY8YBN7sNq.jpg", "order": 1}, {"name": "Ralph Fiennes", "character": "Hades", "id": 5469, "credit_id": "52fe4926c3a36847f818b90f", "cast_id": 6, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 2}, {"name": "Rosamund Pike", "character": "Andromeda", "id": 10882, "credit_id": "52fe4926c3a36847f818b90b", "cast_id": 5, "profile_path": "/70C0zcKqBdiLskAU9FNFtsrpr8m.jpg", "order": 3}, {"name": "Bill Nighy", "character": "Hephaestus", "id": 2440, "credit_id": "52fe4926c3a36847f818b913", "cast_id": 7, "profile_path": "/x3R0shSJbrssotuWIwWSxfJRQls.jpg", "order": 4}, {"name": "Toby Kebbell", "character": "Argenor", "id": 20286, "credit_id": "52fe4926c3a36847f818b91f", "cast_id": 10, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 5}, {"name": "Danny Huston", "character": "Poseidon", "id": 6413, "credit_id": "52fe4926c3a36847f818b917", "cast_id": 8, "profile_path": "/jc1eGtCShQ2ZkzqWApiWbA1lbTF.jpg", "order": 6}, {"name": "\u00c9dgar Ram\u00edrez", "character": "Ares", "id": 25616, "credit_id": "52fe4926c3a36847f818b91b", "cast_id": 9, "profile_path": "/yQFzQITF35S9VpzO8sHDgxYA3cs.jpg", "order": 7}, {"name": "John Bell", "character": "Helius", "id": 126667, "credit_id": "52fe4926c3a36847f818b977", "cast_id": 27, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 8}, {"name": "Lily James", "character": "Korrina", "id": 1016168, "credit_id": "52fe4926c3a36847f818b97b", "cast_id": 28, "profile_path": "/oBeTe9bKFkyDbuhGbEdp06LRR1K.jpg", "order": 9}, {"name": "Spencer Wilding", "character": "Minotaur", "id": 25451, "credit_id": "52fe4926c3a36847f818b97f", "cast_id": 29, "profile_path": "/g3FJIpQZri7gG515rLehuo81T6W.jpg", "order": 10}, {"name": "Martin Bayfield", "character": "Cyclops", "id": 11177, "credit_id": "52fe4926c3a36847f818b983", "cast_id": 30, "profile_path": "/h14uj9f3EAJAgWqNSFzWN93ZxEQ.jpg", "order": 11}], "directors": [{"name": "Jonathan Liebesman", "department": "Directing", "job": "Director", "credit_id": "52fe4926c3a36847f818b8ff", "profile_path": "/xE44juqNVxXXszLnkL5jShLK6y1.jpg", "id": 66739}], "vote_average": 5.6, "runtime": 99}, "286554": {"poster_path": "/787egmKPQvpL7GiUze7AlkoQB1B.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "After an extremely regrettable one night stand, two strangers wake up to find themselves snowed in after sleeping through a blizzard that put all of Manhattan on ice. They're now trapped together in a tiny apartment, forced to get to know each other way more than any one night stand should.", "video": false, "id": 286554, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Two Night Stand", "tagline": "Before love. After sex.", "vote_count": 125, "homepage": "http://haveatwonightstand.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2140619", "adult": false, "backdrop_path": "/9hR9RTe8olTuM5ZLd2sIOa2KVqN.jpg", "production_companies": [{"name": "Demarest Films", "id": 13241}, {"name": "Flynn Picture Company", "id": 34081}], "release_date": "2014-09-26", "popularity": 1.87719516662386, "original_title": "Two Night Stand", "budget": 0, "cast": [{"name": "Analeigh Tipton", "character": "Megan", "id": 124644, "credit_id": "542679e50e0a2659f60012c4", "cast_id": 0, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 1}, {"name": "Miles Teller", "character": "Alec", "id": 996701, "credit_id": "542679f9c3a3681c250011bd", "cast_id": 1, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 2}, {"name": "Jessica Szohr", "character": "Faiza", "id": 130782, "credit_id": "54267a060e0a265a050012a2", "cast_id": 2, "profile_path": "/ijp9eZ0Toq2WfrHwThfLRmGugWD.jpg", "order": 3}, {"name": "Leven Rambin", "character": "Daisy", "id": 207401, "credit_id": "54267a120e0a2659fd00124a", "cast_id": 3, "profile_path": "/5jdHzpHDYXmMdNoCtXSf4axrqb7.jpg", "order": 4}, {"name": "Scott Mescudi", "character": "Cedric", "id": 484359, "credit_id": "54267a20c3a3681c1e0012cb", "cast_id": 4, "profile_path": "/431ip65azwGdciT8CdMKzezCFv3.jpg", "order": 5}, {"name": "Kellyn Lindsay", "character": "Becca", "id": 1306641, "credit_id": "54267a2dc3a3681c250011c5", "cast_id": 5, "profile_path": null, "order": 6}, {"name": "Michael Showalter", "character": "David Raines", "id": 22215, "credit_id": "54267a390e0a2659fd001250", "cast_id": 6, "profile_path": "/5lYlx2Rxrigh1UZqAjviYWNt9md.jpg", "order": 7}, {"name": "Berto Colon", "character": "Bouncer", "id": 1030204, "credit_id": "54267a6f0e0a2659fa0012ba", "cast_id": 8, "profile_path": "/lJoSGfDlWMHmPr0gcsrxZnK0XQC.jpg", "order": 9}, {"name": "Brian Petsos", "character": "Himself", "id": 1057653, "credit_id": "54267a7cc3a3681c280012cb", "cast_id": 9, "profile_path": "/yDvg1Du0T9hZ2RlAjW5IryaldWE.jpg", "order": 10}, {"name": "Josh Salatin", "character": "Chris", "id": 1152252, "credit_id": "54267a89c3a3681c280012cd", "cast_id": 10, "profile_path": "/tVGxGbNOa2moVc8COjPZcOQnhNq.jpg", "order": 11}, {"name": "Chris Conroy", "character": "Ben", "id": 96032, "credit_id": "54267a9ac3a3681c22001218", "cast_id": 11, "profile_path": "/2EFBCEKccaLJAwguisMm1XJGJte.jpg", "order": 12}, {"name": "Victor Cruz", "character": "Arresting Officer #1", "id": 979216, "credit_id": "542703a8c3a3680b370003ea", "cast_id": 25, "profile_path": "/aDn5Kxft6FcK9fxmgf7oxGSpHaJ.jpg", "order": 13}, {"name": "David Weiss", "character": "Officer Purcell", "id": 1368147, "credit_id": "54270411c3a3680b2100040d", "cast_id": 26, "profile_path": null, "order": 14}, {"name": "David Weiss", "character": "Officer Purcell", "id": 1368148, "credit_id": "542704110e0a26556c00048d", "cast_id": 27, "profile_path": null, "order": 15}, {"name": "Mike Lubik", "character": "Desk Cop", "id": 1368149, "credit_id": "54270424c3a3680b21000413", "cast_id": 28, "profile_path": null, "order": 16}, {"name": "Joey Lauren Adams", "character": "Customer Service Agent (voice)", "id": 16484, "credit_id": "54d8c42792514154a1000972", "cast_id": 40, "profile_path": "/m2yCatm2xbHRH5fUNgnyuAXqaqk.jpg", "order": 17}], "directors": [{"name": "Max Nichols", "department": "Directing", "job": "Director", "credit_id": "54270293c3a3680b2500044d", "profile_path": null, "id": 1368144}], "vote_average": 6.6, "runtime": 86}, "48988": {"poster_path": "/hRvf9rhmwIzvfZwQx4IT6xsUhPe.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 83160734, "overview": "When best buds Rick and Fred begin to show signs of restlessness at home, their wives take a bold approach to revitalize their marriages: they grant the guys a \"hall pass\", one week of freedom to do whatever they want. At first, it seems like a dream come true, but they quickly discover that their expectations of the single life - and themselves - are completely and hilariously out of sync with reality.", "video": false, "id": 48988, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Hall Pass", "tagline": "One Week, No Rules", "vote_count": 241, "homepage": "http://hallpassmovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0480687", "adult": false, "backdrop_path": "/hGWwNxyCvpVW9FSCbVNbcJSgG1h.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Conundrum Entertainment", "id": 1156}], "release_date": "2011-02-25", "popularity": 1.27321654190124, "original_title": "Hall Pass", "budget": 36000000, "cast": [{"name": "Owen Wilson", "character": "Rick", "id": 887, "credit_id": "52fe477ec3a36847f8138bc3", "cast_id": 3, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Jason Sudeikis", "character": "Fred", "id": 58224, "credit_id": "52fe477ec3a36847f8138bc7", "cast_id": 4, "profile_path": "/rrQCFUtlnJo1sy469RCmWdA3aS3.jpg", "order": 1}, {"name": "Jenna Fischer", "character": "Maggie", "id": 51856, "credit_id": "52fe477ec3a36847f8138bcb", "cast_id": 5, "profile_path": "/ceSnU3b5mWMCXQpeA3tTh0x7k0N.jpg", "order": 2}, {"name": "Christina Applegate", "character": "Grace", "id": 18979, "credit_id": "52fe477ec3a36847f8138bcf", "cast_id": 6, "profile_path": "/irUHUE17vDaSSYsOOJAxnHyEiSo.jpg", "order": 3}, {"name": "Nicky Whelan", "character": "Leigh", "id": 212833, "credit_id": "52fe477ec3a36847f8138bd3", "cast_id": 7, "profile_path": "/5jx02LRC88mmIroF4Hz0yI9GTNS.jpg", "order": 4}, {"name": "Stephen Merchant", "character": "Gary", "id": 39189, "credit_id": "52fe477ec3a36847f8138bd7", "cast_id": 8, "profile_path": "/A70Gtg3kkTeCBgtFkSRPu9qfPQu.jpg", "order": 5}, {"name": "Bruce Thomas", "character": "Rick Coleman", "id": 79497, "credit_id": "52fe477ec3a36847f8138bdb", "cast_id": 9, "profile_path": "/mh7ckVcito9SJiMYhAH5Ca7EY3B.jpg", "order": 6}, {"name": "Alexandra Daddario", "character": "Paige", "id": 109513, "credit_id": "52fe477ec3a36847f8138bdf", "cast_id": 10, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 7}, {"name": "Lauren Bowles", "character": "Britney", "id": 168326, "credit_id": "52fe477ec3a36847f8138be3", "cast_id": 11, "profile_path": "/pGLvRMdrTObr3Xg5mxfuMIz3nmt.jpg", "order": 8}, {"name": "Richard Jenkins", "character": "Coakley", "id": 28633, "credit_id": "52fe477ec3a36847f8138be7", "cast_id": 12, "profile_path": "/iz61iPIgNUp0yk48bRNjEJ5GHO4.jpg", "order": 9}, {"name": "Joy Behar", "character": "Dr. Lucille \"Lucy\" Gilbert", "id": 166772, "credit_id": "52fe477ec3a36847f8138bf7", "cast_id": 15, "profile_path": "/85fQO74oEjAYKz9kojRA87svf3F.jpg", "order": 10}, {"name": "Daniel Greene", "character": "Officer #1", "id": 42199, "credit_id": "52fe477ec3a36847f8138bfb", "cast_id": 16, "profile_path": null, "order": 11}], "directors": [{"name": "Bobby Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe477ec3a36847f8138bb9", "profile_path": "/8u9zvuRAhYpNOdjabCkcvtippjD.jpg", "id": 7395}, {"name": "Peter Farrelly", "department": "Directing", "job": "Director", "credit_id": "52fe477ec3a36847f8138bbf", "profile_path": "/gJcM7v6tTOKXfiqhtH3GcCyojgv.jpg", "id": 7396}], "vote_average": 5.3, "runtime": 105}, "73567": {"poster_path": "/mGLeViPOSwkF4rG9c0ZngJECrk2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 3665069, "overview": "A cop (Matthew McConaughey) who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer (Emile Hirsch) in exchange for a tumble with the young man's virginal sister (Juno Temple).", "video": false, "id": 73567, "genres": [{"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "Killer Joe", "tagline": "A Totally Deep-Fried Texas Redneck Trailer Park Murder Story.", "vote_count": 86, "homepage": "http://killerjoethemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1726669", "adult": false, "backdrop_path": "/ynZpOFq3j7A6sD9WLctfMLaKuX3.jpg", "production_companies": [{"name": "ANA Media", "id": 21817}, {"name": "Voltage pictures", "id": 6633}, {"name": "Picture Perfect (I)", "id": 37833}, {"name": "Worldview Entertainment", "id": 9015}], "release_date": "2012-07-27", "popularity": 0.872288643718105, "original_title": "Killer Joe", "budget": 10000000, "cast": [{"name": "Matthew McConaughey", "character": "Killer Joe Cooper", "id": 10297, "credit_id": "52fe48a1c3a368484e102add", "cast_id": 3, "profile_path": "/hHiLJl7yvDwbtbgdvTQKa7HuQCx.jpg", "order": 0}, {"name": "Emile Hirsch", "character": "Chris Smith", "id": 46593, "credit_id": "52fe48a1c3a368484e102ae1", "cast_id": 4, "profile_path": "/qSiUKKhJLD7LCZdfz7rQOhNpxO1.jpg", "order": 1}, {"name": "Thomas Haden Church", "character": "Ansel", "id": 19159, "credit_id": "52fe48a1c3a368484e102ae5", "cast_id": 5, "profile_path": "/A3bV1eIKed7yrswZQW86oswrB9P.jpg", "order": 2}, {"name": "Gina Gershon", "character": "Sharla", "id": 11150, "credit_id": "52fe48a1c3a368484e102ae9", "cast_id": 6, "profile_path": "/11msvQiJrO3Kiv1WixhCn0QQbKv.jpg", "order": 3}, {"name": "Juno Temple", "character": "Dottie Smith", "id": 36594, "credit_id": "52fe48a1c3a368484e102aed", "cast_id": 7, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 4}, {"name": "Marc Macaulay", "character": "Digger Soames", "id": 6908, "credit_id": "52fe48a1c3a368484e102af1", "cast_id": 8, "profile_path": "/eSNgzHn7NUX9iAbG1MLV41lqy14.jpg", "order": 5}, {"name": "Gralen Bryant Banks", "character": "Pizza Patron", "id": 557804, "credit_id": "545f205f0e0a261fbd008542", "cast_id": 17, "profile_path": null, "order": 6}, {"name": "Carol Sutton", "character": "Saleslady", "id": 60877, "credit_id": "545f2077c3a368076e0023f9", "cast_id": 18, "profile_path": "/dIzENUx3Exb0RNb7xC6ZYiYwbvx.jpg", "order": 7}, {"name": "Danny Epper", "character": "G-Man", "id": 574380, "credit_id": "545f208c0e0a265477001fa6", "cast_id": 19, "profile_path": "/51tZpRQ7ECagFytqbdrGMcAW7T.jpg", "order": 8}, {"name": "Jeff Galpin", "character": "Biker Thug", "id": 550473, "credit_id": "545f20a4c3a3686e490013b2", "cast_id": 20, "profile_path": null, "order": 9}, {"name": "Scott A. Martin", "character": "Pizza Manager", "id": 1055739, "credit_id": "545f20b90e0a265477001fbf", "cast_id": 21, "profile_path": "/5XoslX4ZEsiT8k8qvG5olx65r2W.jpg", "order": 10}, {"name": "Gregory C. Bachaud", "character": "Filpatrick", "id": 1383386, "credit_id": "545f20cdc3a3685358008100", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Charley Vance", "character": "Preacher", "id": 1383387, "credit_id": "545f20e00e0a261fb9008684", "cast_id": 23, "profile_path": null, "order": 12}], "directors": [{"name": "William Friedkin", "department": "Directing", "job": "Director", "credit_id": "52fe48a1c3a368484e102ad3", "profile_path": "/egUtSz4yBSvTTv7GJMk4MykWswt.jpg", "id": 15175}], "vote_average": 6.1, "runtime": 102}, "1690": {"poster_path": "/zF3pEs1CUbjPgioxDH4h2MEHsWl.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 80578934, "overview": "Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.", "video": false, "id": 1690, "genres": [{"id": 27, "name": "Horror"}], "title": "Hostel", "tagline": "Welcome To Your Worst Nightmare", "vote_count": 206, "homepage": "http://www.hostelfilm.com/", "belongs_to_collection": {"backdrop_path": "/rXf4gEh8m3ZcK9KHkxT78Kscxee.jpg", "poster_path": "/2jLQFRlH8CC9cptcANY5cEtC1q8.jpg", "id": 86578, "name": "Hostel Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0450278", "adult": false, "backdrop_path": "/9jTL24i6meo6u5hHEPwUY8TD1N4.jpg", "production_companies": [{"name": "Raw Nerve", "id": 1631}, {"name": "Hostel LLC", "id": 17793}, {"name": "International Production Company", "id": 1507}, {"name": "Next Entertainment", "id": 1633}], "release_date": "2005-01-06", "popularity": 0.759182206948243, "original_title": "Hostel", "budget": 4800000, "cast": [{"name": "Jay Hernandez", "character": "Paxton", "id": 19487, "credit_id": "52fe430cc3a36847f8036a43", "cast_id": 13, "profile_path": "/wlJTd9b7rMGNZRVPzw7GWWPFtTJ.jpg", "order": 0}, {"name": "Derek Richardson", "character": "Josh", "id": 33934, "credit_id": "52fe430cc3a36847f8036a47", "cast_id": 14, "profile_path": "/6gGEr4ZBEoPiepdyCxhlG2WKeN3.jpg", "order": 1}, {"name": "Eythor Gudjonsson", "character": "Oli", "id": 33935, "credit_id": "52fe430cc3a36847f8036a4b", "cast_id": 15, "profile_path": null, "order": 2}, {"name": "Barbara Nedeljakova", "character": "Natalya", "id": 33936, "credit_id": "52fe430cc3a36847f8036a4f", "cast_id": 16, "profile_path": "/kAS6W6nbliAUnJnvvAFaRtH7PLQ.jpg", "order": 3}, {"name": "Jana Kaderabkova", "character": "Svetlana", "id": 33937, "credit_id": "52fe430cc3a36847f8036a53", "cast_id": 17, "profile_path": null, "order": 4}, {"name": "Jan Vlas\u00e1k", "character": "The Dutch Businessman", "id": 33938, "credit_id": "52fe430cc3a36847f8036a57", "cast_id": 18, "profile_path": "/yEZ7y8caFgmAIx0QodLXhY95E9J.jpg", "order": 5}, {"name": "Lubomir Bukovy", "character": "Alex", "id": 33939, "credit_id": "52fe430cc3a36847f8036a5b", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Takashi Miike", "character": "Miike Takashi", "id": 17282, "credit_id": "52fe430cc3a36847f8036a5f", "cast_id": 20, "profile_path": "/hFpUsxCjrZNiyHAGsIPWlZl2uTI.jpg", "order": 7}, {"name": "Keiko Seiko", "character": "Yuki", "id": 1265216, "credit_id": "52fe430cc3a36847f8036a67", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Jana Havlickova", "character": "Vala", "id": 1265217, "credit_id": "52fe430cc3a36847f8036a6b", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Rick Hoffman", "character": "The American Client", "id": 1216133, "credit_id": "52fe430cc3a36847f8036a91", "cast_id": 31, "profile_path": "/d1B41muPxihy4YXsWRiXKfpzq0y.jpg", "order": 11}, {"name": "Petr Janis", "character": "The German Surgeon", "id": 1265218, "credit_id": "52fe430cc3a36847f8036a6f", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Jennifer Lim", "character": "Kana", "id": 1154564, "credit_id": "54e3bc81c3a368454b00931d", "cast_id": 32, "profile_path": "/2sxWwQIbR9dyYzYlI95gaZFT0jK.jpg", "order": 13}], "directors": [{"name": "Eli Roth", "department": "Directing", "job": "Director", "credit_id": "52fe430cc3a36847f8036a09", "profile_path": "/lV7xjR2fUXX3u8Ixg8nhKFbuqm3.jpg", "id": 16847}], "vote_average": 5.8, "runtime": 94}, "5723": {"poster_path": "/fEjwJfeDxgsRBlYgEWMgvrKQ6VB.jpg", "production_countries": [{"iso_3166_1": "IE", "name": "Ireland"}], "revenue": 20710513, "overview": "The Guy is a Dublin guitarist/singer-songwriter who makes a living by fixing vacuum cleaners in his Dad's Hoover repair shop by day, and singing and playing for money on the Dublin streets by night. The Girl is a Czech who plays piano when she gets a chance, and does odd jobs by day and takes care of her mom and her daughter by night.", "video": false, "id": 5723, "genres": [{"id": 18, "name": "Drama"}, {"id": 10402, "name": "Music"}, {"id": 10749, "name": "Romance"}], "title": "Once", "tagline": "How often do you find the right person?", "vote_count": 194, "homepage": "http://www.foxsearchlight.com/once/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0907657", "adult": false, "backdrop_path": "/1pmPwJiHGOKjzSHxnogd655cUdL.jpg", "production_companies": [{"name": "RTE", "id": 25489}, {"name": "Samson Films", "id": 11571}, {"name": "Summit Entertainment", "id": 491}], "release_date": "2006-07-14", "popularity": 0.676941166600842, "original_title": "Once", "budget": 160000, "cast": [{"name": "Glen Hansard", "character": "Guy", "id": 45124, "credit_id": "52fe441cc3a36847f8082d75", "cast_id": 21, "profile_path": "/2pP8bMolp7DbquoQ1w25yef2CQl.jpg", "order": 0}, {"name": "Mark\u00e9ta Irglov\u00e1", "character": "Girl", "id": 45127, "credit_id": "52fe441cc3a36847f8082d79", "cast_id": 22, "profile_path": "/ite9YJKyFwZgI9sfX8eN3UfEtf7.jpg", "order": 1}, {"name": "Hugh Walsh", "character": "Timmy Drummer", "id": 231753, "credit_id": "52fe441cc3a36847f8082d7d", "cast_id": 23, "profile_path": null, "order": 2}, {"name": "Gerard Hendrick", "character": "Lead Guitarist", "id": 231754, "credit_id": "52fe441cc3a36847f8082d81", "cast_id": 24, "profile_path": null, "order": 3}, {"name": "Alaistair Foley", "character": "Bassist", "id": 45129, "credit_id": "52fe441cc3a36847f8082d85", "cast_id": 25, "profile_path": null, "order": 4}, {"name": "Geoff Minogue", "character": "Eamon", "id": 45130, "credit_id": "52fe441cc3a36847f8082d89", "cast_id": 26, "profile_path": "/2E8b8k1mxzjhtQBFfuTUWa4Y8vP.jpg", "order": 5}, {"name": "Bill Hodnett", "character": "Guy's Dad", "id": 45131, "credit_id": "52fe441cc3a36847f8082d8d", "cast_id": 27, "profile_path": null, "order": 6}, {"name": "Danuse Ktrestova", "character": "Girl's Mother", "id": 45132, "credit_id": "52fe441cc3a36847f8082d91", "cast_id": 28, "profile_path": null, "order": 7}, {"name": "Darren Healy", "character": "Heroin Addict", "id": 143859, "credit_id": "52fe441cc3a36847f8082d95", "cast_id": 29, "profile_path": null, "order": 8}, {"name": "Mal Whyte", "character": "Bill", "id": 188433, "credit_id": "52fe441cc3a36847f8082d99", "cast_id": 30, "profile_path": null, "order": 9}, {"name": "Marcella Plunkett", "character": "Ex Girlfriend", "id": 163544, "credit_id": "52fe441cc3a36847f8082d9d", "cast_id": 31, "profile_path": "/tnEDag92n7GD8HVBgT0pNKT1rRv.jpg", "order": 10}], "directors": [{"name": "John Carney", "department": "Directing", "job": "Director", "credit_id": "52fe441cc3a36847f8082d71", "profile_path": null, "id": 45117}], "vote_average": 7.1, "runtime": 85}, "9531": {"poster_path": "/1muhBn45uvFWCfdewdFGHLfAnqw.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75800000, "overview": "Aiming to defeat the Man of Steel, wealthy executive Ross Webster hires bumbling but brilliant Gus Gorman to develop synthetic kryptonite, which yields some unexpected psychological effects in the third installment of the 1980s Superman franchise. Between rekindling romance with his high school sweetheart and saving himself, Superman must contend with a powerful supercomputer.", "video": false, "id": 9531, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 878, "name": "Science Fiction"}], "title": "Superman III", "tagline": "If the world's most powerful computer can control even Superman...no one on earth is safe.", "vote_count": 120, "homepage": "", "belongs_to_collection": {"backdrop_path": "/la0EhOrgVAiY8sf3ILz3wgoaNXH.jpg", "poster_path": "/fgTdu62v1jjNDPh68V9TJZMgXbo.jpg", "id": 8537, "name": "Superman Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0086393", "adult": false, "backdrop_path": "/pkqkxX7tkN0QLBtOYzugtBqyu0C.jpg", "production_companies": [{"name": "Cantharus Productions", "id": 51903}, {"name": "Dovemead Films", "id": 51861}], "release_date": "1983-06-17", "popularity": 1.29373590641828, "original_title": "Superman III", "budget": 39000000, "cast": [{"name": "Christopher Reeve", "character": "Superman / Clark Kent", "id": 20006, "credit_id": "52fe4505c3a36847f80b7a13", "cast_id": 1, "profile_path": "/pq8iwQBWrO9YyCpgEhjdEUcsYZP.jpg", "order": 0}, {"name": "Richard Pryor", "character": "Gus Gorman", "id": 9309, "credit_id": "52fe4505c3a36847f80b7a17", "cast_id": 2, "profile_path": "/hzJ3Q7wDLv4m82eMTbK2tzVzCHG.jpg", "order": 1}, {"name": "Jackie Cooper", "character": "Perry White", "id": 55278, "credit_id": "52fe4505c3a36847f80b7a1b", "cast_id": 3, "profile_path": "/3uutX8roJ9nNXwh5nxfnuTPLPGe.jpg", "order": 2}, {"name": "Marc McClure", "character": "Jimmy Olsen", "id": 1067, "credit_id": "52fe4505c3a36847f80b7a1f", "cast_id": 4, "profile_path": "/5VPLVH1eAiIQ3s7aNjrgvzwTt3t.jpg", "order": 3}, {"name": "Annette O'Toole", "character": "Lana Lang", "id": 1734, "credit_id": "52fe4505c3a36847f80b7a23", "cast_id": 5, "profile_path": "/hFmg2LVQD0w0A9uDNu5na9pQamV.jpg", "order": 4}, {"name": "Annie Ross", "character": "Vera Webster", "id": 37368, "credit_id": "52fe4505c3a36847f80b7a27", "cast_id": 6, "profile_path": "/eyegZafZ3RaQ901th5KugONCERL.jpg", "order": 5}, {"name": "Pamela Stephenson", "character": "Lorelei", "id": 43805, "credit_id": "52fe4505c3a36847f80b7a67", "cast_id": 17, "profile_path": "/dePtjeY9OE4VD6RV6L2DmKXEBCp.jpg", "order": 6}, {"name": "Robert Vaughn", "character": "Ross Webster", "id": 14060, "credit_id": "52fe4505c3a36847f80b7a6b", "cast_id": 18, "profile_path": "/tqnTA5PsxCvqZRFEyEyXAcEPQx4.jpg", "order": 7}, {"name": "Margot Kidder", "character": "Lois Lane", "id": 20011, "credit_id": "52fe4505c3a36847f80b7a6f", "cast_id": 19, "profile_path": "/phfr2Lv3ZTS4Kcn53pM6zWzPMtM.jpg", "order": 8}, {"name": "Gavin O'Herlihy", "character": "Brad", "id": 12660, "credit_id": "54099d3fc3a36812b7001833", "cast_id": 20, "profile_path": "/brFrEXHx5vaeWJmqhQJMEaZhUHl.jpg", "order": 9}], "directors": [{"name": "Richard Lester", "department": "Directing", "job": "Director", "credit_id": "52fe4505c3a36847f80b7a2d", "profile_path": "/2H4PFCd4G8BLHK34lTsUs3cn2tM.jpg", "id": 10586}], "vote_average": 4.8, "runtime": 125}, "24420": {"poster_path": "/ayGp00uS6XRrNfbR59XWrJh9jpC.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 101229792, "overview": "Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.", "video": false, "id": 24420, "genres": [{"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 10749, "name": "Romance"}], "title": "The Time Traveler's Wife", "tagline": "", "vote_count": 202, "homepage": "http://www.thetimetravelerswifemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0452694", "adult": false, "backdrop_path": "/2Po4fvS46AAshzDZGDdjkrVxPo8.jpg", "production_companies": [{"name": "New Line Cinema", "id": 12}, {"name": "Plan B Entertainment", "id": 81}, {"name": "Nick Wechsler Productions", "id": 8073}, {"name": "Internationale Scarena Filmproduktionsgesellschaft 2", "id": 23046}], "release_date": "2009-08-14", "popularity": 1.10769431018959, "original_title": "The Time Traveler's Wife", "budget": 39000000, "cast": [{"name": "Eric Bana", "character": "Henry DeTamble", "id": 8783, "credit_id": "52fe4494c3a368484e02af4f", "cast_id": 3, "profile_path": "/36As49OkTNvT96CzzjXNuKMeuyx.jpg", "order": 0}, {"name": "Rachel McAdams", "character": "Clare Abshire", "id": 53714, "credit_id": "52fe4494c3a368484e02af53", "cast_id": 4, "profile_path": "/wqSznVIPp0YDFCuZ9jjbrzDyJhV.jpg", "order": 1}, {"name": "Michelle Nolden", "character": "Annette DeTamble", "id": 95635, "credit_id": "52fe4494c3a368484e02af57", "cast_id": 5, "profile_path": "/a72FYiArZuG0TjYXtdzPsNvtTyY.jpg", "order": 2}, {"name": "Arliss Howard", "character": "Richard DeTamble", "id": 3229, "credit_id": "52fe4494c3a368484e02af5b", "cast_id": 6, "profile_path": "/3mrUl2agLneG40JFd2zzXmxZ65w.jpg", "order": 3}, {"name": "Ron Livingston", "character": "Gomez", "id": 17402, "credit_id": "52fe4494c3a368484e02af63", "cast_id": 8, "profile_path": "/AjR0aCaDOK6S38I8ziICgVbxH5I.jpg", "order": 5}, {"name": "Brian Bisson", "character": "Mark Abshire", "id": 1017085, "credit_id": "52fe4495c3a368484e02afdf", "cast_id": 29, "profile_path": null, "order": 6}, {"name": "Maggie Castle", "character": "Alicia Abshire", "id": 41743, "credit_id": "52fe4495c3a368484e02afe3", "cast_id": 30, "profile_path": "/mNiLxh1UZWXrVoXow3PB094mYCL.jpg", "order": 7}, {"name": "Fiona Reid", "character": "Lucille Abshire", "id": 54652, "credit_id": "52fe4495c3a368484e02afe7", "cast_id": 31, "profile_path": null, "order": 8}, {"name": "Philip Craig", "character": "Philip Abshire", "id": 166529, "credit_id": "52fe4495c3a368484e02afeb", "cast_id": 32, "profile_path": null, "order": 9}, {"name": "Alex Ferris", "character": "Henry at Six", "id": 59243, "credit_id": "547f257a92514124ad001631", "cast_id": 36, "profile_path": "/8IItZFI5cG6c5Y614GVhOp5pt74.jpg", "order": 10}, {"name": "Katherine Trowell", "character": "Hospital Receptionist", "id": 1393528, "credit_id": "547f2595c3a368395a001789", "cast_id": 37, "profile_path": null, "order": 11}, {"name": "Bart Bedford", "character": "Library Researcher", "id": 1393529, "credit_id": "547f25ae92514124aa001792", "cast_id": 38, "profile_path": null, "order": 12}, {"name": "Esther Jun", "character": "Waitress", "id": 1123849, "credit_id": "547f25c0c3a36839650015ed", "cast_id": 39, "profile_path": null, "order": 13}, {"name": "Esther Jun", "character": "Chicago Police #1", "id": 1123849, "credit_id": "547f25fb92514124bb0016c8", "cast_id": 40, "profile_path": null, "order": 14}, {"name": "Craig Snoyer", "character": "Chicago Police #2", "id": 1393530, "credit_id": "547f260bc3a36839610012ed", "cast_id": 41, "profile_path": null, "order": 15}, {"name": "Carly Street", "character": "Librarian", "id": 1393531, "credit_id": "547f264bc3a368396f00183f", "cast_id": 43, "profile_path": null, "order": 17}, {"name": "Romyen Tangsubutra", "character": "Thai Waiter", "id": 1393533, "credit_id": "547f26e5c3a368395a0017ab", "cast_id": 44, "profile_path": null, "order": 18}, {"name": "Brooklynn Proulx", "character": "Clare at Six and Eight", "id": 39518, "credit_id": "547f26f492514124b90015e8", "cast_id": 45, "profile_path": "/yqnhEdUSWYZPUxQFUYHptAlgk4h.jpg", "order": 19}, {"name": "Mario Tufino", "character": "Barber", "id": 1393534, "credit_id": "547f276c92514124b90015f5", "cast_id": 46, "profile_path": null, "order": 20}, {"name": "Shawn Storer", "character": "Moving Man", "id": 115582, "credit_id": "547f2782c3a368395a0017bd", "cast_id": 47, "profile_path": null, "order": 21}, {"name": "David Talbot", "character": "Pastor", "id": 1239413, "credit_id": "547f279292514124af00150b", "cast_id": 48, "profile_path": null, "order": 22}, {"name": "James Lafazanos", "character": "Jeremy (Gallery Owner)", "id": 1178559, "credit_id": "547f27a7c3a368395c001940", "cast_id": 49, "profile_path": "/g3Lj4f9Bxk6rQsAot1RsMBv1QsH.jpg", "order": 23}, {"name": "Dan Duran", "character": "Lottery Announcer", "id": 193040, "credit_id": "547f27b292514124ad001664", "cast_id": 50, "profile_path": null, "order": 24}, {"name": "Kenner Ames", "character": "TV Sales Person", "id": 44246, "credit_id": "547f27bec3a368395e0017c5", "cast_id": 51, "profile_path": null, "order": 25}, {"name": "Alison MacLeod", "character": "Realtor", "id": 1393535, "credit_id": "547f27cc92514124af001511", "cast_id": 52, "profile_path": null, "order": 26}, {"name": "Stephen Tobolowsky", "character": "Dr. Kendrick", "id": 537, "credit_id": "547f27d792514124bb0016f1", "cast_id": 53, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 27}, {"name": "Hailey McCann", "character": "Alba at Nine and Ten", "id": 1393536, "credit_id": "547f27e8c3a368396f001872", "cast_id": 54, "profile_path": null, "order": 28}, {"name": "Donald Carrier", "character": "Dr. Osman", "id": 1393537, "credit_id": "547f27f5c3a368395c001945", "cast_id": 55, "profile_path": null, "order": 29}, {"name": "Jan Caruana", "character": "Dr. Osman's Nurse", "id": 1393538, "credit_id": "547f2802c3a368395a0017d0", "cast_id": 56, "profile_path": null, "order": 30}, {"name": "Jean Yoon", "character": "Dr. Montague", "id": 88929, "credit_id": "547f280dc3a368396f00187c", "cast_id": 57, "profile_path": null, "order": 31}, {"name": "Tatum McCann", "character": "Alba at Four and Five", "id": 1225804, "credit_id": "547f281a92514124aa0017c7", "cast_id": 58, "profile_path": null, "order": 32}, {"name": "Duane Murray", "character": "Resident Doctor", "id": 113931, "credit_id": "547f282692514124aa0017c9", "cast_id": 59, "profile_path": "/7pQ3cybuhdGpOlPA0r6R7vJCwZW.jpg", "order": 33}, {"name": "Jon Bruno", "character": "Chicago Radio Show Host", "id": 1393539, "credit_id": "547f285c92514124aa0017d3", "cast_id": 61, "profile_path": null, "order": 35}, {"name": "Paul Francis", "character": "Hunting Buddy", "id": 91607, "credit_id": "54e7af0cc3a36836e70005f3", "cast_id": 62, "profile_path": null, "order": 36}], "directors": [{"name": "Robert Schwentke", "department": "Directing", "job": "Director", "credit_id": "52fe4494c3a368484e02af45", "profile_path": "/aGJFBcFEAbNZNQsUHVUIC8ZofLo.jpg", "id": 57270}], "vote_average": 6.4, "runtime": 107}, "40805": {"poster_path": "/yQx2tEtuM6gafeF2O7au4Kfg9wf.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 227817248, "overview": "Britt Reid (Seth Rogen), the heir to the largest newspaper fortune in Los Angeles, is a spoiled playboy who has been, thus far, happy to lead an aimless life. After his father (Tom Wilkinson) dies, Britt meets Kato (Jay Chou), a resourceful company employee. Realizing that they have the talent and resources to make something of their lives, Britt and Kato join forces as costumed crime-fighters to bring down the city's most-powerful criminal, Chudnofsky (Christoph Waltz).", "video": false, "id": 40805, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "The Green Hornet", "tagline": "Breaking the Law to Protect It.", "vote_count": 538, "homepage": "http://www.sonypictures.com/movies/thegreenhornet/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0990407", "adult": false, "backdrop_path": "/obqNqj4tBoUkWzufsMLmDABFLEL.jpg", "production_companies": [{"name": "Original Film", "id": 333}, {"name": "Sony Pictures Entertainment", "id": 5752}, {"name": "Reliance BIG Entertainment", "id": 6733}], "release_date": "2011-01-13", "popularity": 1.38949496895035, "original_title": "The Green Hornet", "budget": 120000000, "cast": [{"name": "Seth Rogen", "character": "Britt Reid / Green Hornet", "id": 19274, "credit_id": "52fe45a4c3a36847f80d257f", "cast_id": 1, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 0}, {"name": "Jay Chou", "character": "Kato", "id": 17380, "credit_id": "52fe45a4c3a36847f80d258f", "cast_id": 5, "profile_path": "/g2fvgW2IVgLHt988eYoAl0REILQ.jpg", "order": 1}, {"name": "Christoph Waltz", "character": "Chudnofsky", "id": 27319, "credit_id": "52fe45a4c3a36847f80d2587", "cast_id": 3, "profile_path": "/bPtNS4p3CEDt3Uo9khMCLyQUa0W.jpg", "order": 2}, {"name": "Cameron Diaz", "character": "Lenore Case", "id": 6941, "credit_id": "52fe45a4c3a36847f80d2583", "cast_id": 2, "profile_path": "/ahFkUN9Sm8oF1txUHE5JcJ95Ere.jpg", "order": 3}, {"name": "Edward Furlong", "character": "Tupper", "id": 820, "credit_id": "52fe45a4c3a36847f80d258b", "cast_id": 4, "profile_path": "/o7x6XcLSZSJygjYKLMcElEehmkr.jpg", "order": 4}, {"name": "Tom Wilkinson", "character": "James Reid", "id": 207, "credit_id": "52fe45a4c3a36847f80d2593", "cast_id": 6, "profile_path": "/4mxZKgdem0sQ8hJd0Y7TREwq7TJ.jpg", "order": 5}, {"name": "Edward James Olmos", "character": "Michael Axford", "id": 587, "credit_id": "52fe45a4c3a36847f80d2597", "cast_id": 7, "profile_path": "/i7zKqsFqL5L1HPmAMeSA1xZzlD5.jpg", "order": 6}, {"name": "Analeigh Tipton", "character": "Anna Lee", "id": 124644, "credit_id": "52fe45a4c3a36847f80d259b", "cast_id": 8, "profile_path": "/oFTEyLJykoAWtUOT9RPKco3F1FJ.jpg", "order": 7}, {"name": "Chad L. Coleman", "character": "Chili", "id": 124645, "credit_id": "52fe45a4c3a36847f80d259f", "cast_id": 9, "profile_path": "/soxBAVJOM5qzN7nS78UGzaWNdCv.jpg", "order": 8}, {"name": "Robert Clotworthy", "character": "Politician", "id": 35172, "credit_id": "52fe45a4c3a36847f80d25a3", "cast_id": 10, "profile_path": "/m4poS8cn91Gz2uxSRqve5xrgkGI.jpg", "order": 9}], "directors": [{"name": "Michel Gondry", "department": "Directing", "job": "Director", "credit_id": "52fe45a4c3a36847f80d25a9", "profile_path": "/45eLOWiKfxUn10oRg1XzszqtSv1.jpg", "id": 201}], "vote_average": 5.6, "runtime": 119}, "40807": {"poster_path": "/uDKmnFHqE3rQ9r6ErQsOZWuzXN8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 39185691, "overview": "Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis, and his subsequent struggle to beat the disease.", "video": false, "id": 40807, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "50/50", "tagline": "It takes a pair to beat the odds.", "vote_count": 370, "homepage": "http://www.50-50themovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1306980", "adult": false, "backdrop_path": "/xfXDFAjG37O8DT0oKoRhakwyJdx.jpg", "production_companies": [{"name": "Summit Entertainment", "id": 491}, {"name": "Mandate Pictures", "id": 771}], "release_date": "2011-09-30", "popularity": 0.725815383043353, "original_title": "50/50", "budget": 8000000, "cast": [{"name": "Joseph Gordon-Levitt", "character": "Adam", "id": 24045, "credit_id": "52fe45a4c3a36847f80d263d", "cast_id": 3, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 0}, {"name": "Seth Rogen", "character": "Kyle", "id": 19274, "credit_id": "52fe45a4c3a36847f80d2641", "cast_id": 4, "profile_path": "/3U9s4dvXQuk1l3ZT3MqwqpmeRqI.jpg", "order": 1}, {"name": "Anna Kendrick", "character": "Katherine", "id": 84223, "credit_id": "52fe45a4c3a36847f80d2639", "cast_id": 2, "profile_path": "/yHBnDRFnaojStMwe8fUKzobnyti.jpg", "order": 2}, {"name": "Bryce Dallas Howard", "character": "Rachael", "id": 18997, "credit_id": "52fe45a4c3a36847f80d2635", "cast_id": 1, "profile_path": "/unTaOfAs7zOptJp5j0Xy5PgWNur.jpg", "order": 3}, {"name": "Anjelica Huston", "character": "Diane", "id": 5657, "credit_id": "52fe45a4c3a36847f80d2645", "cast_id": 5, "profile_path": "/aWoffHO62SV8KeqKzct8LeXTW72.jpg", "order": 4}, {"name": "Serge Houde", "character": "Richard", "id": 41746, "credit_id": "52fe45a4c3a36847f80d2655", "cast_id": 10, "profile_path": "/txotfOoZhyo7DXaga0vmHkMS5aD.jpg", "order": 5}, {"name": "Andrew Airlie", "character": "Dr. Ross", "id": 41436, "credit_id": "52fe45a4c3a36847f80d2659", "cast_id": 11, "profile_path": "/cHjR5zfMfUiiMVSKBnlbxNklcFL.jpg", "order": 6}, {"name": "Matt Frewer", "character": "Mitch", "id": 40009, "credit_id": "52fe45a4c3a36847f80d265d", "cast_id": 12, "profile_path": "/yV2gf5TuCU8xl8AyM68HwfeWlEE.jpg", "order": 7}, {"name": "Philip Baker Hall", "character": "Alan", "id": 4492, "credit_id": "52fe45a4c3a36847f80d2661", "cast_id": 13, "profile_path": "/eH7GrivSuLEvhJL85qPkhNvg3E7.jpg", "order": 8}, {"name": "Donna Yamamoto", "character": "Dr. Walderson", "id": 177885, "credit_id": "52fe45a4c3a36847f80d2665", "cast_id": 14, "profile_path": "/cPcpw8nC3zSKfqPNHRVEAlMCHhm.jpg", "order": 9}, {"name": "Yee Jee Tso", "character": "Dr. Lee", "id": 61541, "credit_id": "52fe45a4c3a36847f80d2669", "cast_id": 16, "profile_path": "/9oVMHObp5JoOxnycf8DzWm8JuK0.jpg", "order": 10}, {"name": "Stephanie Beard", "character": "Susan", "id": 1149548, "credit_id": "52fe45a4c3a36847f80d266d", "cast_id": 17, "profile_path": null, "order": 11}, {"name": "Sarah Smyth", "character": "Jenny", "id": 387183, "credit_id": "52fe45a4c3a36847f80d2671", "cast_id": 18, "profile_path": "/2WQokpXOaeXHu2M0k63XfnyzgrO.jpg", "order": 12}, {"name": "Peter Kelamis", "character": "Phil", "id": 89551, "credit_id": "52fe45a4c3a36847f80d2675", "cast_id": 19, "profile_path": null, "order": 13}, {"name": "Jessica Parker Kennedy", "character": "Jackie", "id": 211540, "credit_id": "52fe45a4c3a36847f80d2679", "cast_id": 20, "profile_path": "/s6F7jEHFfTZjSDr6yVURqIokT91.jpg", "order": 14}, {"name": "Daniel Bacon", "character": "Dr. Phillips", "id": 61187, "credit_id": "52fe45a4c3a36847f80d267d", "cast_id": 21, "profile_path": "/thLJx8rAqpxGI1YlCr9SIae1JOU.jpg", "order": 15}, {"name": "P. Lynn Johnson", "character": "Bernie", "id": 59241, "credit_id": "52fe45a4c3a36847f80d2681", "cast_id": 22, "profile_path": null, "order": 16}, {"name": "Laura Bertram", "character": "Claire", "id": 122876, "credit_id": "52fe45a4c3a36847f80d2685", "cast_id": 23, "profile_path": "/x19fvLM5YbvRh8ktbFU9REU7puK.jpg", "order": 17}, {"name": "Matty Finochio", "character": "Ted", "id": 440439, "credit_id": "52fe45a4c3a36847f80d2689", "cast_id": 24, "profile_path": null, "order": 18}, {"name": "Marie Avgeropoulos", "character": "Allison", "id": 140114, "credit_id": "52fe45a4c3a36847f80d26cf", "cast_id": 37, "profile_path": "/xSlt8am4RrYGsSGjZO3Oy46ORyE.jpg", "order": 19}], "directors": [{"name": "Jonathan Levine", "department": "Directing", "job": "Director", "credit_id": "52fe45a4c3a36847f80d264b", "profile_path": "/gfJOKZPSbpzls7FV0Ogv4IpEeXh.jpg", "id": 56661}], "vote_average": 6.6, "runtime": 100}, "24428": {"poster_path": "/cezWGskPY5x7GaglTTRN4Fugfb8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1518594910, "overview": "When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", "video": false, "id": 24428, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}], "title": "The Avengers", "tagline": "Some assembly required.", "vote_count": 6735, "homepage": "http://marvel.com/avengers_movie/", "belongs_to_collection": {"backdrop_path": "/zuW6fOiusv4X9nnW3paHGfXcSll.jpg", "poster_path": "/qJawKUQcIBha507UahUlX0keOT7.jpg", "id": 86311, "name": "The Avengers Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0848228", "adult": false, "backdrop_path": "/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg", "production_companies": [{"name": "Marvel Studios", "id": 420}], "release_date": "2012-05-04", "popularity": 6.80510341137803, "original_title": "The Avengers", "budget": 220000000, "cast": [{"name": "Robert Downey Jr.", "character": "Tony Stark / Iron Man", "id": 3223, "credit_id": "52fe4495c3a368484e02b251", "cast_id": 46, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 0}, {"name": "Chris Evans", "character": "Steve Rogers / Captain America", "id": 16828, "credit_id": "52fe4495c3a368484e02b19b", "cast_id": 2, "profile_path": "/ueIzur9vURNLoqZCdfWltnpuZTq.jpg", "order": 1}, {"name": "Mark Ruffalo", "character": "Bruce Banner / The Hulk", "id": 103, "credit_id": "52fe4495c3a368484e02b221", "cast_id": 32, "profile_path": "/isQ747u0MU8U9gdsNlPngjABclH.jpg", "order": 2}, {"name": "Chris Hemsworth", "character": "Thor", "id": 74568, "credit_id": "52fe4495c3a368484e02b1a5", "cast_id": 4, "profile_path": "/knxtglRJ4pYvEqAEHIZSDF2cZQq.jpg", "order": 3}, {"name": "Scarlett Johansson", "character": "Natasha Romanoff / Black Widow", "id": 1245, "credit_id": "52fe4495c3a368484e02b229", "cast_id": 34, "profile_path": "/yDYpYy09nfyXIWHC6mbsaRdLiDV.jpg", "order": 4}, {"name": "Jeremy Renner", "character": "Clint Barton / Hawkeye", "id": 17604, "credit_id": "52fe4495c3a368484e02b225", "cast_id": 33, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 5}, {"name": "Tom Hiddleston", "character": "Loki", "id": 91606, "credit_id": "52fe4495c3a368484e02b22d", "cast_id": 35, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 6}, {"name": "Clark Gregg", "character": "Agent Phil Coulson", "id": 9048, "credit_id": "52fe4495c3a368484e02b239", "cast_id": 38, "profile_path": "/t8CLS2Zcy7IjcZkE1vtxl40h9rh.jpg", "order": 7}, {"name": "Cobie Smulders", "character": "Agent Maria Hill", "id": 71189, "credit_id": "52fe4495c3a368484e02b235", "cast_id": 37, "profile_path": "/wAoJa7CGo1NXGnDzDRZNiiLIHLo.jpg", "order": 8}, {"name": "Stellan Skarsg\u00e5rd", "character": "Erik Selvig", "id": 1640, "credit_id": "52fe4495c3a368484e02b241", "cast_id": 41, "profile_path": "/hjWdhX7zEI0DkF7gA4hcEVcYCZl.jpg", "order": 9}, {"name": "Samuel L. Jackson", "character": "Nick Fury", "id": 2231, "credit_id": "52fe4495c3a368484e02b231", "cast_id": 36, "profile_path": "/dlW6prW9HwYDsIRXNoFYtyHpSny.jpg", "order": 10}, {"name": "Gwyneth Paltrow", "character": "Virginia \"Pepper\" Potts", "id": 12052, "credit_id": "52fe4495c3a368484e02b23d", "cast_id": 40, "profile_path": "/wMpjgh0p84i6t3G95CcxmasnBG5.jpg", "order": 11}, {"name": "Paul Bettany", "character": "J.A.R.V.I.S. (voice)", "id": 6162, "credit_id": "52fe4495c3a368484e02b245", "cast_id": 42, "profile_path": "/xN2pJ3DIPacYviSSwDovxizPS2w.jpg", "order": 12}, {"name": "Jenny Agutter", "character": "World Security Council", "id": 14464, "credit_id": "52fe4495c3a368484e02b249", "cast_id": 44, "profile_path": "/2AwYEHV0cXXo3vtjiuwHMEkqh6R.jpg", "order": 13}, {"name": "Walter Perez", "character": "Shield Pilot", "id": 101522, "credit_id": "52fe4495c3a368484e02b24d", "cast_id": 45, "profile_path": "/9huEhMUi4x5I2RSaIjvoP5mbP67.jpg", "order": 14}, {"name": "Powers Boothe", "character": "World Security Council", "id": 6280, "credit_id": "52fe4495c3a368484e02b255", "cast_id": 47, "profile_path": "/3nNL6AvMAYq0BmHKM79RnRZVq3i.jpg", "order": 15}, {"name": "Stan Lee", "character": "Old Man in TV Report", "id": 7624, "credit_id": "52fe4495c3a368484e02b259", "cast_id": 48, "profile_path": "/dTr2gJPL7jELKVkcjtoNx80uVKR.jpg", "order": 16}, {"name": "Arthur Darbinyan", "character": "World Security Council", "id": 188758, "credit_id": "52fe4495c3a368484e02b25d", "cast_id": 50, "profile_path": "/efj5VJqc2tlZ15aesmMXit3oner.jpg", "order": 17}, {"name": "Donald Li", "character": "World Security Council", "id": 168246, "credit_id": "52fe4495c3a368484e02b261", "cast_id": 51, "profile_path": "/7TeLJzqIoSUMAZJRkSLMp53wujn.jpg", "order": 18}, {"name": "Ashley Johnson", "character": "Waitress", "id": 34486, "credit_id": "52fe4495c3a368484e02b265", "cast_id": 52, "profile_path": "/e4GJkGmRGvrqPG5jcTNHBCmL1x9.jpg", "order": 19}, {"name": "Harry Dean Stanton", "character": "Security Guard", "id": 5048, "credit_id": "52fe4495c3a368484e02b269", "cast_id": 53, "profile_path": "/nDSav6v9Z8dSJSXoooT2g0LjbCd.jpg", "order": 20}, {"name": "Alicia Sixtos", "character": "Carrier Bridge Techs", "id": 81959, "credit_id": "52fe4495c3a368484e02b26d", "cast_id": 54, "profile_path": "/d26uuvEXN4xIrGaLNOwbwNrX6Z8.jpg", "order": 21}, {"name": "Dieter Riesle", "character": "Gala Scientist", "id": 1033652, "credit_id": "52fe4495c3a368484e02b275", "cast_id": 57, "profile_path": "/yN8sg3spmSs651w0HZVdCdA9HSh.jpg", "order": 23}, {"name": "Jamie McShane", "character": "Celebration Montage Interviewee", "id": 79079, "credit_id": "52fe4495c3a368484e02b279", "cast_id": 61, "profile_path": "/iVfenI8Ojg5QJPnAjHmxsvxLooe.jpg", "order": 25}, {"name": "Jeff Wolfe", "character": "Tall Thug", "id": 51303, "credit_id": "52fe4495c3a368484e02b27d", "cast_id": 62, "profile_path": "/iUALrUyPe6uq9kZQNHNf8cW5yKA.jpg", "order": 26}, {"name": "Jerzy Skolimowski", "character": "Georgi Luchkov", "id": 43553, "credit_id": "52fe4495c3a368484e02b281", "cast_id": 63, "profile_path": "/uQGDiNRAcTrOH9CNEWzTgJFkn7L.jpg", "order": 27}, {"name": "Maximiliano Hern\u00e1ndez", "character": "Agent Jasper Sitwell", "id": 1018947, "credit_id": "52fe4495c3a368484e02b285", "cast_id": 64, "profile_path": "/4oakQGpzryNgjA2gGnAgxGzbH9m.jpg", "order": 28}, {"name": "Jillian Morgese", "character": "Woman in Restaurant (uncredited)", "id": 1263294, "credit_id": "52fe4495c3a368484e02b289", "cast_id": 65, "profile_path": "/lxnn0PCMaDhBABueZYoV0JBlzMg.jpg", "order": 29}, {"name": "Alexis Denisof", "character": "The Other", "id": 1214673, "credit_id": "52fe4495c3a368484e02b28d", "cast_id": 66, "profile_path": "/hAcTJxSbSPHLfa59D8mnJOzxpmE.jpg", "order": 30}, {"name": "James Eckhouse", "character": "Senator Boynton", "id": 19151, "credit_id": "52fe4495c3a368484e02b291", "cast_id": 67, "profile_path": "/4CUK6M7fGVK5Z1Qg65rMLDI6BdO.jpg", "order": 31}, {"name": "Enver Gjokaj", "character": "Young Cop", "id": 1224022, "credit_id": "52fe4495c3a368484e02b295", "cast_id": 68, "profile_path": "/xatmqOREk6e051ZgaO4VSv4HCnr.jpg", "order": 32}, {"name": "Damion Poitier", "character": "Man #1 / Thanos (uncredited)", "id": 150194, "credit_id": "552a8df6c3a36858d60038d8", "cast_id": 188, "profile_path": "/zBoq4SAauhVmbHSyWZXYXvA36Ky.jpg", "order": 33}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe4495c3a368484e02b1a1", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 7.2, "runtime": 143}, "49009": {"poster_path": "/5lPRuICgmMmdrBr6qMNl80psEGo.jpg", "production_countries": [{"iso_3166_1": "AE", "name": "United Arab Emirates"}, {"iso_3166_1": "PL", "name": "Poland"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 20348249, "overview": "Peter Weir's follow-up to Master & Commander (2003) is the stark & brilliant The Way Back, which takes on the theme of man's struggle for freedom. At the dawn of WWII, several men escape from a Russian gulag. The film details their perilous & uncertain journey to freedom, as they cross deserts, mountains, & several nations.", "video": false, "id": 49009, "genres": [{"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}], "title": "The Way Back", "tagline": "Their escape was just the beginning", "vote_count": 92, "homepage": "http://thewaybackthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "pl", "name": "Polski"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1023114", "adult": false, "backdrop_path": "/TXWZrzM8AG0jHEJPlDOVojldZh.jpg", "production_companies": [{"name": "Exclusive Films", "id": 13920}, {"name": "National Geographic Entertainment", "id": 11522}, {"name": "Imagenation Abu Dhabi FZ", "id": 6736}, {"name": "Monolith Films", "id": 18392}, {"name": "On the Road", "id": 23992}, {"name": "Point Blank Productions", "id": 23993}, {"name": "Polish Film Institute", "id": 6555}], "release_date": "2010-09-03", "popularity": 0.505352568620427, "original_title": "The Way Back", "budget": 30000000, "cast": [{"name": "Colin Farrell", "character": "Valka", "id": 72466, "credit_id": "52fe477fc3a36847f8139161", "cast_id": 6, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 0}, {"name": "Dejan Angelov", "character": "Andrei", "id": 94699, "credit_id": "52fe477fc3a36847f8139165", "cast_id": 7, "profile_path": "/zCszCjsbCe80H9ZZhQXXg9pE0ak.jpg", "order": 1}, {"name": "Drago\u0219 Bucur", "character": "Zoran", "id": 129565, "credit_id": "52fe477fc3a36847f8139169", "cast_id": 8, "profile_path": "/gzflxaNSoBcW7f0ZXB0gtztE1Oo.jpg", "order": 2}, {"name": "Ed Harris", "character": "Mr. Smith", "id": 228, "credit_id": "52fe477fc3a36847f813916d", "cast_id": 9, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 3}, {"name": "Jim Sturgess", "character": "Janusz", "id": 38941, "credit_id": "52fe477fc3a36847f813919b", "cast_id": 17, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 4}, {"name": "Saoirse Ronan", "character": "Irena", "id": 36592, "credit_id": "52fe477fc3a36847f813919f", "cast_id": 18, "profile_path": "/zR5yAg0cYxsLKaJH5JJHxdixnmW.jpg", "order": 5}, {"name": "Mark Strong", "character": "Khabarov", "id": 2983, "credit_id": "52fe477fc3a36847f81391a3", "cast_id": 19, "profile_path": "/vC1a35KBxx8f2rkMKyaik7bTOud.jpg", "order": 6}, {"name": "Alexandru Potocean", "character": "Tomasz", "id": 39960, "credit_id": "52fe477fc3a36847f81391a7", "cast_id": 20, "profile_path": "/2W5yDYRs9WSFEb39AFovz44DOg8.jpg", "order": 7}, {"name": "Gustaf Skarsg\u00e5rd", "character": "Voss", "id": 63764, "credit_id": "52fe477fc3a36847f81391ab", "cast_id": 21, "profile_path": "/fdlsUaoS99C3ZwRD6QVqRQZnRzR.jpg", "order": 8}], "directors": [{"name": "Peter Weir", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f813915d", "profile_path": "/gVVmREpiTBK7F9zxJi96hZJ7Nv9.jpg", "id": 2690}], "vote_average": 6.6, "runtime": 133}, "49010": {"poster_path": "/do7uf8m627YnTnspMGY3lD7vDEH.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 672648, "overview": "A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city's crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how - with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.", "video": false, "id": 49010, "genres": [{"id": 28, "name": "Action"}, {"id": 35, "name": "Comedy"}, {"id": 53, "name": "Thriller"}], "title": "Hobo with a Shotgun", "tagline": "Delivering justice, one shell at a time...", "vote_count": 51, "homepage": "http://www.hobowithashotgun.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1640459", "adult": false, "backdrop_path": "/7VtaXw0iT8L3GcCGb8aBZ2YYg8Z.jpg", "production_companies": [{"name": "Yer Dead Productions", "id": 6869}, {"name": "Rhombus Media", "id": 164}, {"name": "Whizbang Films", "id": 17457}, {"name": "Telefilm Canada", "id": 7320}], "release_date": "2011-05-06", "popularity": 0.203114184320856, "original_title": "Hobo with a Shotgun", "budget": 3000000, "cast": [{"name": "Rutger Hauer", "character": "Hobo", "id": 585, "credit_id": "52fe477fc3a36847f81391c3", "cast_id": 2, "profile_path": "/96XEG75LYFFPb9R03EaN8zipWP4.jpg", "order": 0}, {"name": "Gregory Smith", "character": "Slick", "id": 20814, "credit_id": "52fe477fc3a36847f81391c7", "cast_id": 3, "profile_path": "/r8LIuWUfapS9R4TDGJflncy3PCb.jpg", "order": 1}, {"name": "Robb Wells", "character": "Logan (as Rob Wells)", "id": 60966, "credit_id": "52fe477fc3a36847f81391cb", "cast_id": 4, "profile_path": "/dMnez0ZRY63FP8LHhG2M9iFLqhM.jpg", "order": 2}, {"name": "Brian Downey", "character": "Drake", "id": 117458, "credit_id": "52fe477fc3a36847f81391cf", "cast_id": 5, "profile_path": "/nkIjQbpC9t5NExCl0aDxGqS4ba8.jpg", "order": 3}, {"name": "Molly Dunsworth", "character": "Abby", "id": 232684, "credit_id": "52fe477fc3a36847f81391d3", "cast_id": 6, "profile_path": "/7SO0H6Agztjdd0ewhTCt5bCtfJH.jpg", "order": 4}], "directors": [{"name": "Jason Eisener", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f81391bf", "profile_path": "/4EJtYbZVXCUyjUHMLVomgcWqcsZ.jpg", "id": 141673}], "vote_average": 5.7, "runtime": 86}, "8051": {"poster_path": "/350rVL2BZi1xT7pLK6tk0xIJkTy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 17000000, "overview": "A beleaguered small-business owner gets a harmonium and embarks on a romantic journey with a mysterious woman.", "video": false, "id": 8051, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Punch-Drunk Love", "tagline": "", "vote_count": 119, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0272338", "adult": false, "backdrop_path": "/gxoO809imgs2hxDwFUmKamfxSHa.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "New Line Cinema", "id": 12}, {"name": "Ghoulardi Film Company", "id": 178}], "release_date": "2002-10-25", "popularity": 0.729505919472558, "original_title": "Punch-Drunk Love", "budget": 25000000, "cast": [{"name": "Adam Sandler", "character": "Barry Egan", "id": 19292, "credit_id": "52fe448ec3a36847f809cb83", "cast_id": 13, "profile_path": "/tv9V6QsuZ3bcp4ciUJjwjcc4qAg.jpg", "order": 0}, {"name": "Emily Watson", "character": "Lena Leonard", "id": 1639, "credit_id": "52fe448ec3a36847f809cb87", "cast_id": 14, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 1}, {"name": "Philip Seymour Hoffman", "character": "Dean Trumbell", "id": 1233, "credit_id": "52fe448ec3a36847f809cb8b", "cast_id": 15, "profile_path": "/de37JbzZ80KP1LOhzIkVe5XfSwe.jpg", "order": 2}, {"name": "Luis Guzm\u00e1n", "character": "Lance", "id": 40481, "credit_id": "52fe448ec3a36847f809cb8f", "cast_id": 16, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 3}, {"name": "Mary Lynn Rajskub", "character": "Elizabeth", "id": 25884, "credit_id": "52fe448ec3a36847f809cb93", "cast_id": 17, "profile_path": "/icSziituw2XPBKvdgNWcyRyrJMp.jpg", "order": 4}, {"name": "Robert Smigel", "character": "Walter the Dentist", "id": 53684, "credit_id": "52fe448ec3a36847f809cb97", "cast_id": 18, "profile_path": "/fBJaWXCzwnzrdZx6PkFiwhEClSh.jpg", "order": 5}, {"name": "Jason Andrews", "character": "Operator Carter", "id": 177063, "credit_id": "52fe448ec3a36847f809cb9b", "cast_id": 19, "profile_path": null, "order": 6}, {"name": "Don McManus", "character": "Plastic", "id": 79025, "credit_id": "52fe448ec3a36847f809cb9f", "cast_id": 20, "profile_path": "/8JOjJkZBQmhVb6n8yHw70LIgC7i.jpg", "order": 7}, {"name": "David Schrempf", "character": "Customer #1", "id": 554026, "credit_id": "52fe448ec3a36847f809cba3", "cast_id": 21, "profile_path": null, "order": 8}, {"name": "Seann Conway", "character": "Customer #2", "id": 554027, "credit_id": "52fe448ec3a36847f809cba7", "cast_id": 22, "profile_path": null, "order": 9}, {"name": "Rico Bueno", "character": "Rico", "id": 54428, "credit_id": "52fe448ec3a36847f809cbab", "cast_id": 23, "profile_path": null, "order": 10}, {"name": "Hazel Mailloux", "character": "Rhonda", "id": 554028, "credit_id": "52fe448ec3a36847f809cbaf", "cast_id": 24, "profile_path": null, "order": 11}, {"name": "Karen Kilgariff", "character": "Anna", "id": 162609, "credit_id": "52fe448ec3a36847f809cbb3", "cast_id": 25, "profile_path": null, "order": 12}, {"name": "Julie Hermelin", "character": "Kathleen", "id": 149800, "credit_id": "52fe448ec3a36847f809cbb7", "cast_id": 26, "profile_path": null, "order": 13}, {"name": "Salvador Curiel", "character": "Sal", "id": 554029, "credit_id": "52fe448ec3a36847f809cbbb", "cast_id": 27, "profile_path": null, "order": 14}, {"name": "Jorge Barahona", "character": "Jorge", "id": 554030, "credit_id": "52fe448ec3a36847f809cbbf", "cast_id": 28, "profile_path": null, "order": 15}, {"name": "Ernesto Quintero", "character": "Ernesto", "id": 554031, "credit_id": "52fe448ec3a36847f809cbc3", "cast_id": 29, "profile_path": null, "order": 16}, {"name": "Julius Steuer", "character": "Mechanic", "id": 554032, "credit_id": "52fe448ec3a36847f809cbc7", "cast_id": 30, "profile_path": null, "order": 17}, {"name": "Lisa Spector", "character": "Susan", "id": 554033, "credit_id": "52fe448ec3a36847f809cbcb", "cast_id": 31, "profile_path": null, "order": 18}, {"name": "Nicole Gelbard", "character": "Nicole", "id": 554034, "credit_id": "52fe448ec3a36847f809cbcf", "cast_id": 32, "profile_path": null, "order": 19}, {"name": "Mia Weinberg", "character": "Gilda", "id": 554035, "credit_id": "52fe448ec3a36847f809cbd3", "cast_id": 33, "profile_path": null, "order": 20}, {"name": "Karen Hermelin", "character": "Anna", "id": 554036, "credit_id": "52fe448ec3a36847f809cbd7", "cast_id": 34, "profile_path": null, "order": 21}, {"name": "Larry Ring", "character": "Steve / Brother-in-Law", "id": 554037, "credit_id": "52fe448ec3a36847f809cbdb", "cast_id": 35, "profile_path": null, "order": 22}, {"name": "Kerry Gelbard", "character": "Richard / Brother-in-Law", "id": 554038, "credit_id": "52fe448ec3a36847f809cbdf", "cast_id": 36, "profile_path": null, "order": 23}, {"name": "Ashley Clark", "character": "Phone Sex Sister", "id": 554039, "credit_id": "52fe448ec3a36847f809cbe3", "cast_id": 37, "profile_path": null, "order": 24}], "directors": [{"name": "Paul Thomas Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe448ec3a36847f809cb3d", "profile_path": "/6lDE5N6lQUvAbKBRazn2Q0mRk44.jpg", "id": 4762}], "vote_average": 6.8, "runtime": 95}, "49012": {"poster_path": "/28HW1Kc4OwQH50M0XmcEuIYrCWk.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 47787943, "overview": "A drunken playboy stands to lose a wealthy inheritance when he falls for a woman, his family doesn't like.", "video": false, "id": 49012, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10749, "name": "Romance"}], "title": "Arthur", "tagline": "Meet the world's only loveable billionaire.", "vote_count": 96, "homepage": "http://arthurthemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1334512", "adult": false, "backdrop_path": "/nuJWx6hdjSHhEAPU9wUKx2s6J5H.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}], "release_date": "2011-04-08", "popularity": 0.784181722294289, "original_title": "Arthur", "budget": 40000000, "cast": [{"name": "Russell Brand", "character": "Arthur", "id": 59919, "credit_id": "52fe477fc3a36847f81391fb", "cast_id": 7, "profile_path": "/WwyYUbZYq4YJ7Zh7KTy1klJNso.jpg", "order": 0}, {"name": "Helen Mirren", "character": "Hobson", "id": 15735, "credit_id": "52fe477fc3a36847f81391ff", "cast_id": 8, "profile_path": "/4EGgBJPUBz68ZrnFuLVo01r0uND.jpg", "order": 1}, {"name": "Greta Gerwig", "character": "Naomi Quinn", "id": 45400, "credit_id": "52fe477fc3a36847f81391f7", "cast_id": 6, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 2}, {"name": "Jennifer Garner", "character": "Susan Johnson", "id": 9278, "credit_id": "52fe477fc3a36847f8139203", "cast_id": 9, "profile_path": "/tQLAbyf218NlZ9eTy5OBcgUOvDi.jpg", "order": 3}, {"name": "Geraldine James", "character": "Vivienne", "id": 11855, "credit_id": "52fe477fc3a36847f8139207", "cast_id": 10, "profile_path": "/iHKFccX2qpSzMbhIBdfvr835MVg.jpg", "order": 4}, {"name": "Luis Guzm\u00e1n", "character": "Bitterman", "id": 40481, "credit_id": "52fe477fc3a36847f813920b", "cast_id": 11, "profile_path": "/9rj7Qka1tT85J3JoXBexJtLx6vn.jpg", "order": 5}, {"name": "Nick Nolte", "character": "Burt Johnson", "id": 1733, "credit_id": "52fe477fc3a36847f813920f", "cast_id": 12, "profile_path": "/mecF0UBz1RSnf1ggd0ltYoCwqd2.jpg", "order": 6}, {"name": "Peter Van Wagner", "character": "Naomi's Dad", "id": 159828, "credit_id": "52fe477fc3a36847f8139213", "cast_id": 13, "profile_path": null, "order": 7}], "directors": [{"name": "Jason Winer", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f81391f3", "profile_path": "/6X7zuwKp2QMguZt0PgHaEwTuVNK.jpg", "id": 141675}], "vote_average": 5.4, "runtime": 110}, "49013": {"poster_path": "/7WILDjnJggB3bIioS3LRvtvmu1X.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 559852396, "overview": "Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.", "video": false, "id": 49013, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Cars 2", "tagline": "Ka-ciao!", "vote_count": 824, "homepage": "http://www.disney.go.com/cars/", "belongs_to_collection": {"backdrop_path": "/A8DqaTGwZ8iCEjWMNRsZumzfKLw.jpg", "poster_path": "/uq3N2SFj1Y06zA6LzCQPkmBdaaE.jpg", "id": 87118, "name": "Cars Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ja", "name": "\u65e5\u672c\u8a9e"}, {"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1216475", "adult": false, "backdrop_path": "/jEcmZhtJkZQc6ta2vzBd9CU7GIx.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}, {"name": "Walt Disney Pictures", "id": 2}], "release_date": "2011-06-16", "popularity": 1.47547401648015, "original_title": "Cars 2", "budget": 200000000, "cast": [{"name": "Owen Wilson", "character": "Lightning McQueen (voice)", "id": 887, "credit_id": "52fe477fc3a36847f813927b", "cast_id": 4, "profile_path": "/j7oYgvfDiO34VcFdSB7GhM2CSle.jpg", "order": 0}, {"name": "Michael Caine", "character": "Finn McMissile (voice)", "id": 3895, "credit_id": "52fe477fc3a36847f813927f", "cast_id": 5, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Emily Mortimer", "character": "Holley Shiftwell (voice)", "id": 1246, "credit_id": "52fe477fc3a36847f8139283", "cast_id": 6, "profile_path": "/jSw6VNNFXCc0cEAbGHafiWOWRKU.jpg", "order": 2}, {"name": "Michael Keaton", "character": "Chick Hicks (voice)", "id": 2232, "credit_id": "52fe477fc3a36847f8139287", "cast_id": 7, "profile_path": "/niT4arrUKdtaxacmxL4IcUWYE6u.jpg", "order": 3}, {"name": "Jason Isaacs", "character": "Siddeley (voice)", "id": 11355, "credit_id": "52fe477fc3a36847f813928b", "cast_id": 8, "profile_path": "/1GtGhAJz1JloqHARqc2xMsq5rG4.jpg", "order": 4}, {"name": "Bonnie Hunt", "character": "Sally Carrera (voice)", "id": 5149, "credit_id": "52fe477fc3a36847f813928f", "cast_id": 9, "profile_path": "/lwEvPd4SXprCLBnPzXUaH5pm33w.jpg", "order": 5}, {"name": "John Ratzenberger", "character": "Mack (voice)", "id": 7907, "credit_id": "52fe477fc3a36847f8139293", "cast_id": 10, "profile_path": "/yGechiKWL6TJDfVE2KPSJYqdMsY.jpg", "order": 6}, {"name": "Tony Shalhoub", "character": "Luigi (voice)", "id": 4252, "credit_id": "52fe4780c3a36847f8139297", "cast_id": 11, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 7}, {"name": "Larry the Cable Guy", "character": "Mater (voice)", "id": 15897, "credit_id": "52fe4780c3a36847f813929b", "cast_id": 12, "profile_path": "/9yGwJBveIvLidqJEQI4PRuKQhMr.jpg", "order": 8}, {"name": "Eddie Izzard", "character": "Sir Miles Axlerod (voice)", "id": 1926, "credit_id": "52fe4780c3a36847f81392e7", "cast_id": 26, "profile_path": "/j5hzBqmcyWG2GC754uACCoNgAvS.jpg", "order": 9}, {"name": "John Turturro", "character": "Francesco Bernoulli (voice)", "id": 1241, "credit_id": "52fe4780c3a36847f81392eb", "cast_id": 27, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 10}, {"name": "Brent Musburger", "character": "Brent Mustangburger (voice)", "id": 188559, "credit_id": "52fe4780c3a36847f81392ef", "cast_id": 28, "profile_path": "/fZXRho9StEBcblGYtplxiFTxD73.jpg", "order": 11}, {"name": "Joe Mantegna", "character": "Grem (voice)", "id": 3266, "credit_id": "52fe4780c3a36847f81392f3", "cast_id": 29, "profile_path": "/puf1FzUBaysTzPbCR67IWdippCn.jpg", "order": 12}, {"name": "Thomas Kretschmann", "character": "Professor Z (voice)", "id": 3491, "credit_id": "52fe4780c3a36847f81392f7", "cast_id": 30, "profile_path": "/allahLWNWLQpeY46nUg1d6zSO7T.jpg", "order": 13}, {"name": "Darrell Waltrip", "character": "Darrell Cartrip (voice)", "id": 942993, "credit_id": "52fe4780c3a36847f81392fb", "cast_id": 32, "profile_path": null, "order": 14}, {"name": "Franco Nero", "character": "Uncle Topolino (voice)", "id": 22383, "credit_id": "52fe4780c3a36847f81392ff", "cast_id": 33, "profile_path": "/f9ncJubHyIVngr7Itbbf9YA4Us7.jpg", "order": 15}, {"name": "David Hobbs", "character": "David Hobbscap (voice)", "id": 571731, "credit_id": "52fe4780c3a36847f8139303", "cast_id": 34, "profile_path": null, "order": 16}, {"name": "Patrick Walker", "character": "Mel Dorado (voice)", "id": 1117784, "credit_id": "52fe4780c3a36847f8139307", "cast_id": 35, "profile_path": null, "order": 17}, {"name": "Jeff Garlin", "character": "Otis (voice)", "id": 60074, "credit_id": "52fe4780c3a36847f813930b", "cast_id": 36, "profile_path": "/ak3dWU2SecfJzx8NtEmoKSL1Xma.jpg", "order": 18}, {"name": "Michel Michelis", "character": "Tomber (voice)", "id": 1117785, "credit_id": "52fe4780c3a36847f813930f", "cast_id": 37, "profile_path": null, "order": 19}, {"name": "Vanessa Redgrave", "character": "The Queen / Mama Topolino (voice)", "id": 13333, "credit_id": "52fe4780c3a36847f8139313", "cast_id": 38, "profile_path": "/ao9OQJUToMLGtcOwhT7FPjFVQzd.jpg", "order": 20}, {"name": "Cheech Marin", "character": "Ramone (voice)", "id": 11159, "credit_id": "52fe4780c3a36847f8139317", "cast_id": 39, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 21}, {"name": "Peter Jacobson", "character": "Acer (voice)", "id": 31514, "credit_id": "52fe4780c3a36847f813931b", "cast_id": 40, "profile_path": "/mX0CRJQmmi5MAnFtawXDbQKq118.jpg", "order": 22}, {"name": "Lloyd Sherr", "character": "Fillmore / Combat Ship (voice)", "id": 116317, "credit_id": "550dd09ec3a3685be500256e", "cast_id": 42, "profile_path": null, "order": 23}, {"name": "Bruce Campbell", "character": "Rod 'Torque' Redline (voice)", "id": 11357, "credit_id": "550dd11d9251414691006826", "cast_id": 43, "profile_path": "/ox3Mf0pXGEiWfRO2TYcua0EHUQN.jpg", "order": 24}, {"name": "Teresa Gallagher", "character": "Mater's Computer (voice)", "id": 1230799, "credit_id": "550dd17c92514146990065dc", "cast_id": 44, "profile_path": null, "order": 25}, {"name": "Jenifer Lewis", "character": "Flo (voice)", "id": 15899, "credit_id": "550dd1eb92514146990065f0", "cast_id": 45, "profile_path": "/6cc3XdxZfpKwsYRcphH8QZ5sI7B.jpg", "order": 26}, {"name": "Stanley Townsend", "character": "Victor Hugo / Vladimir Trunkov / Ivan the Tow Truck (voice)", "id": 25074, "credit_id": "550e6652925141065c00190a", "cast_id": 46, "profile_path": "/nZZWcRY77Cc01E4bWJhHUyHOJhZ.jpg", "order": 27}, {"name": "Velibor Topi\u0107", "character": "Alexander Hugo (voice)", "id": 34515, "credit_id": "550e6692c3a368488600928a", "cast_id": 47, "profile_path": "/yWqta1oCZfFC0ihBSApmN3CloLg.jpg", "order": 28}, {"name": "Sig Hansen", "character": "Crabby (voice)", "id": 1224968, "credit_id": "550e6839c3a3681db20084a4", "cast_id": 48, "profile_path": null, "order": 29}, {"name": "Guido Quaroni", "character": "Guido (voice)", "id": 15898, "credit_id": "550e69459251413554006bd7", "cast_id": 49, "profile_path": "/qfnm3XzrMljLhU3HoNfYk0YGoBw.jpg", "order": 30}, {"name": "John Mainieri", "character": "J. Curby Gremlin (voice)", "id": 1360072, "credit_id": "550e69ccc3a3683e7f001991", "cast_id": 50, "profile_path": "/d1ULsQupeUfn6KvUa7pLQ80ZMFZ.jpg", "order": 31}, {"name": "Brad Lewis", "character": "Tubbs Pacer (voice)", "id": 32532, "credit_id": "550e6a26c3a3683f0a001881", "cast_id": 51, "profile_path": "/wfIglAFUH6n1Jbxt7P2Wh317jvI.jpg", "order": 32}, {"name": "Jeff Gordon", "character": "Jeff Gorvette (voice)", "id": 932719, "credit_id": "550e6a8d925141793a0028a5", "cast_id": 52, "profile_path": null, "order": 33}, {"name": "Paul Dooley", "character": "Sarge (voice)", "id": 15900, "credit_id": "550e6b0c9251417624002f27", "cast_id": 54, "profile_path": "/rnzvqo7oR2IwSfN2Ayh3ysc4WNt.jpg", "order": 34}, {"name": "Edie McClurg", "character": "Minny (voice)", "id": 3202, "credit_id": "550e6b389251417624002f2e", "cast_id": 55, "profile_path": "/l8iHE1qnlCUlOs1Oq0LzGWO8T1D.jpg", "order": 35}, {"name": "Richard Kind", "character": "Van (voice)", "id": 21125, "credit_id": "550e6b5e9251410701001a9f", "cast_id": 56, "profile_path": "/xpLufPiiFgoCEdIMqD4RY79PKGb.jpg", "order": 36}, {"name": "Katherine Helmond", "character": "Lizzie (voice)", "id": 381, "credit_id": "550e6b81c3a3683dd60017e1", "cast_id": 57, "profile_path": "/m7o1IEKIabcTWz5Qr4yUEoCNHDE.jpg", "order": 37}, {"name": "Michael Wallis", "character": "Sheriff (voice)", "id": 15902, "credit_id": "550e6bb2925141793a0028db", "cast_id": 58, "profile_path": "/4LuttJxXdNZgSDPeY0IOaczfajj.jpg", "order": 38}, {"name": "Lewis Hamilton", "character": "Lewis Hamilton (voice)", "id": 216294, "credit_id": "551c1d589251416a30000053", "cast_id": 77, "profile_path": "/t5zm6EkUfTHgfpS4cVEtein4LLK.jpg", "order": 39}, {"name": "Catherine Bolt", "character": "Additional Voices (voice)", "id": 1443737, "credit_id": "550e6bd7c3a3683f39001a4a", "cast_id": 59, "profile_path": null, "order": 40}, {"name": "Gillian Bolt", "character": "Additional Voices (voice)", "id": 1443742, "credit_id": "550e6bf8925141793a0028ea", "cast_id": 60, "profile_path": null, "order": 41}, {"name": "Jess Fulton", "character": "Additional Voices (voice)", "id": 1443749, "credit_id": "550e6c58c3a3684874009d99", "cast_id": 61, "profile_path": null, "order": 42}, {"name": "Sonoko Konishi", "character": "Additional Voices (voice)", "id": 1443471, "credit_id": "550e6c7b9251410701001ad0", "cast_id": 62, "profile_path": null, "order": 43}, {"name": "John Lasseter", "character": "Additional Voices (voice)", "id": 7879, "credit_id": "550e6ce2925141065c001a4a", "cast_id": 63, "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "order": 44}, {"name": "Daisuke 'Dice' Tsutsumi", "character": "Additional Voices (voice) (as Dice Tsutsumi)", "id": 1290451, "credit_id": "550e6d1ec3a3683f0a001914", "cast_id": 64, "profile_path": null, "order": 45}, {"name": "Fernando Alonso", "character": "Fernando Alonso (voice)", "id": 938203, "credit_id": "550e6d44c3a3684874009dbf", "cast_id": 65, "profile_path": "/acpmwxPnQl3EfZ2UwfoWGICoPyF.jpg", "order": 46}, {"name": "Jan Nilsson", "character": "Flash (voice)", "id": 1443755, "credit_id": "550e6d65925141073d001ba9", "cast_id": 66, "profile_path": null, "order": 47}, {"name": "Vitaly Petrov", "character": "Vitaly Petrov (voice)", "id": 1443756, "credit_id": "550e6d829251410701001b0d", "cast_id": 67, "profile_path": null, "order": 48}, {"name": "Memo Rojas", "character": "Memo Rojas (voice)", "id": 1443757, "credit_id": "550e6da39251414699008e2a", "cast_id": 68, "profile_path": null, "order": 49}, {"name": "Sebastian Vettel", "character": "Sebastian Schnell (voice)", "id": 1443760, "credit_id": "550e6dc7c3a3683f39001aaa", "cast_id": 69, "profile_path": "/aGKbbLALLZ7HnGBQbuzZNfJCGVJ.jpg", "order": 50}, {"name": "Jacques Villeneuve", "character": "Jacques Villeneuve (voice)", "id": 1156310, "credit_id": "550e6e0bc3a3683eb8001975", "cast_id": 70, "profile_path": null, "order": 51}, {"name": "Mark Winterbottom", "character": "Frosty (voice)", "id": 1443765, "credit_id": "550e6e4f925141065c001a96", "cast_id": 71, "profile_path": null, "order": 52}, {"name": "Jess Harnell", "character": "Additional Voices (voice) (uncredited)", "id": 84495, "credit_id": "550e6e8f9251414699008e61", "cast_id": 72, "profile_path": "/k0BOzEyMkZ1CcoCaohjqTyQJjP1.jpg", "order": 53}, {"name": "Junichi Kajioka", "character": "Additional Voices (voice) (uncredited)", "id": 1168129, "credit_id": "550e6ed4c3a3683e7f001aa8", "cast_id": 73, "profile_path": null, "order": 54}, {"name": "Barbara Kottmeier", "character": "Additional Voices (voice) (uncredited)", "id": 175779, "credit_id": "550e6f03925141793a002972", "cast_id": 74, "profile_path": "/kkQXjIbpxVQAtVSejDzQnELY922.jpg", "order": 55}, {"name": "Colleen O'Shaughnessey", "character": "Additional Voices (voice) (uncredited)", "id": 1212864, "credit_id": "550e6f26c3a3683dd6001896", "cast_id": 75, "profile_path": null, "order": 56}, {"name": "Daniel Okeefe", "character": "Additional Voices (voice) (uncredited)", "id": 1443777, "credit_id": "550e700d9251414699008eb7", "cast_id": 76, "profile_path": null, "order": 57}], "directors": [{"name": "John Lasseter", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f8139271", "profile_path": "/nTL3Hi4Fxc5iMNULXgCbRVADBXG.jpg", "id": 7879}, {"name": "Brad Lewis", "department": "Directing", "job": "Director", "credit_id": "52fe477fc3a36847f8139277", "profile_path": "/wfIglAFUH6n1Jbxt7P2Wh317jvI.jpg", "id": 32532}], "vote_average": 5.9, "runtime": 106}, "8054": {"poster_path": "/jcJRTfd2b5db5DpsCh5XnO6pakN.jpg", "production_countries": [{"iso_3166_1": "FR", "name": "France"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 61808775, "overview": "A traveling theater company gives its audience much more than they were expecting.", "video": false, "id": 8054, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 9648, "name": "Mystery"}], "title": "The Imaginarium of Doctor Parnassus", "tagline": "", "vote_count": 223, "homepage": "http://doctorparnassus.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}], "imdb_id": "tt1054606", "adult": false, "backdrop_path": "/xxGhGpmkaa4j9yJYpqu3N8WGxlh.jpg", "production_companies": [{"name": "Infinity Features Entertainment", "id": 212}, {"name": "Poo Poo Pictures", "id": 23116}], "release_date": "2009-12-24", "popularity": 0.67121585170025, "original_title": "The Imaginarium of Doctor Parnassus", "budget": 30000000, "cast": [{"name": "Christopher Plummer", "character": "Doctor Parnassus", "id": 290, "credit_id": "52fe448ec3a36847f809cd35", "cast_id": 4, "profile_path": "/fauMGxa6dc86nHNenQ8X6DlE6YV.jpg", "order": 0}, {"name": "Heath Ledger", "character": "Tony", "id": 1810, "credit_id": "52fe448ec3a36847f809cd39", "cast_id": 5, "profile_path": "/zCemB5iknCmtSCcyNhkSA0LOgp1.jpg", "order": 1}, {"name": "Johnny Depp", "character": "Imaginarium Tony 1", "id": 85, "credit_id": "52fe448ec3a36847f809cd3d", "cast_id": 6, "profile_path": "/ctaca3ALycPP0vPhRSYK5DTBEPF.jpg", "order": 2}, {"name": "Jude Law", "character": "Imaginarium Tony 2", "id": 9642, "credit_id": "52fe448ec3a36847f809cd41", "cast_id": 7, "profile_path": "/4077Cyuo1mw53u1gNjLyQkqeZN0.jpg", "order": 3}, {"name": "Colin Farrell", "character": "Imaginarium Tony 3", "id": 72466, "credit_id": "52fe448ec3a36847f809cd45", "cast_id": 8, "profile_path": "/mmFfPFw9n3ObTqE3nx20uwpnilI.jpg", "order": 4}, {"name": "Andrew Garfield", "character": "Anton", "id": 37625, "credit_id": "52fe448ec3a36847f809cd49", "cast_id": 9, "profile_path": "/dzfWEBDpcfevR6iQRksSZQwXNvv.jpg", "order": 5}, {"name": "Tom Waits", "character": "Devil", "id": 2887, "credit_id": "52fe448ec3a36847f809cd4d", "cast_id": 10, "profile_path": "/dnot1ccAdk15BAFtrpW07UTPpWu.jpg", "order": 6}, {"name": "Lily Cole", "character": "Valentina", "id": 53688, "credit_id": "52fe448ec3a36847f809cd51", "cast_id": 11, "profile_path": "/9nbOarzgwOXHx9XJFfPBXjTF4IT.jpg", "order": 7}, {"name": "Verne Troyer", "character": "Percy", "id": 10987, "credit_id": "52fe448ec3a36847f809cd55", "cast_id": 12, "profile_path": "/AjCmNZ2cA6OXbLZ6ZXfxEveI7LF.jpg", "order": 8}, {"name": "Gwendoline Christie", "character": "Classy Shopper 2", "id": 1011904, "credit_id": "52fe448ec3a36847f809cd59", "cast_id": 13, "profile_path": "/g1J7zfl9EPY4hDzoKUE5J23T4od.jpg", "order": 9}], "directors": [{"name": "Terry Gilliam", "department": "Directing", "job": "Director", "credit_id": "52fe448ec3a36847f809cd25", "profile_path": "/cFno5isSPvfPEkSdVoEzOs0pJCh.jpg", "id": 280}], "vote_average": 6.4, "runtime": 123}, "8055": {"poster_path": "/vxeeviaCZbuTaef25ysOdqMIAto.jpg", "production_countries": [{"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Tells the story of Michael Berg, a German lawyer who as a teenager in the late 1950s had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that at the expense of her freedom.", "video": false, "id": 8055, "genres": [{"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "The Reader", "tagline": "Behind the mystery lies a truth that will make you question everything you know.", "vote_count": 180, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "la", "name": "Latin"}], "imdb_id": "tt0976051", "adult": false, "backdrop_path": "/nsqs8dV3DBeheey1qqnbTD4LSHW.jpg", "production_companies": [{"name": "Mirage Enterprises", "id": 932}, {"name": "The Weinstein Company", "id": 308}, {"name": "Filmf\u00f6rderanstalt (FFA)", "id": 270}, {"name": "Deutsche Filmf\u00f6rderfonds (DFFF)", "id": 11238}, {"name": "Medienboard Berlin-Brandenburg", "id": 7307}, {"name": "Mitteldeutsche Medienf\u00f6rderung (MDM)", "id": 12346}, {"name": "Filmstiftung Nordrhein-Westfalen", "id": 315}], "release_date": "2008-12-10", "popularity": 1.02628061580427, "original_title": "The Reader", "budget": 32000000, "cast": [{"name": "Kate Winslet", "character": "Hanna Schmitz", "id": 204, "credit_id": "52fe448ec3a36847f809cda7", "cast_id": 2, "profile_path": "/fMrygR1QJYKcdanBYMDVm8pr5We.jpg", "order": 0}, {"name": "Ralph Fiennes", "character": "Michael Berg", "id": 5469, "credit_id": "52fe448fc3a36847f809cde3", "cast_id": 15, "profile_path": "/95C56hfbvSA1UNvD433EzXviyV5.jpg", "order": 1}, {"name": "David Kross", "character": "Young Michael Berg", "id": 5847, "credit_id": "52fe448fc3a36847f809cdbb", "cast_id": 7, "profile_path": "/50BcSbOZtfCktGMEepExob45O2h.jpg", "order": 2}, {"name": "Jeanette Hain", "character": "Brigitte", "id": 49018, "credit_id": "52fe448fc3a36847f809cdc3", "cast_id": 9, "profile_path": "/icET9X1pV73INdR7YYZcYXJeCDU.jpg", "order": 3}, {"name": "Bruno Ganz", "character": "Professor Rohl", "id": 2310, "credit_id": "52fe448ec3a36847f809cdb3", "cast_id": 5, "profile_path": "/qhCRUg30CEZ8KZIzcTVhFn6klG7.jpg", "order": 4}, {"name": "Hannah Herzsprung", "character": "Julia", "id": 16783, "credit_id": "52fe448ec3a36847f809cdab", "cast_id": 3, "profile_path": "/3EJlnF0PJyjyciLLJNasKRFcTUQ.jpg", "order": 5}, {"name": "Karoline Herfurth", "character": "Marthe", "id": 17067, "credit_id": "52fe448ec3a36847f809cdb7", "cast_id": 6, "profile_path": "/8HVqhIaLQA3MOTO88Ncn6VOCzdp.jpg", "order": 6}, {"name": "Volker Bruch", "character": "Dieter Spenz", "id": 23182, "credit_id": "52fe448fc3a36847f809cdbf", "cast_id": 8, "profile_path": "/sIVPnaOQwdrt915Xh9Onp7gCpl0.jpg", "order": 7}, {"name": "Alexandra Maria Lara", "character": "Young Ilana Mather", "id": 5644, "credit_id": "52fe448ec3a36847f809cdaf", "cast_id": 4, "profile_path": "/aQS8gK9zJDu2eIUEHUIWqWFcTSj.jpg", "order": 8}, {"name": "Fabian Busch", "character": "Hanna's Defense Council", "id": 17543, "credit_id": "52fe448fc3a36847f809cddf", "cast_id": 14, "profile_path": "/cFgqQEFL9qBPKQFITBgjPSr3QWB.jpg", "order": 9}, {"name": "Vijessna Ferkic", "character": "Sophie", "id": 45811, "credit_id": "531900e492514177b700181c", "cast_id": 34, "profile_path": "/4YWi1weaNFnpiYcUys6nCwv2RqW.jpg", "order": 10}, {"name": "Susanne Lothar", "character": "Carla Berg", "id": 19123, "credit_id": "536b63210e0a2647d100b69b", "cast_id": 35, "profile_path": "/7Lbdxz43iVMlKrNTnc7AE6gfULs.jpg", "order": 11}, {"name": "Matthias Habich", "character": "Peter Berg", "id": 4534, "credit_id": "536b63310e0a2647db00b8cc", "cast_id": 36, "profile_path": "/7YB9tFGl8rbxBhuy9jqjU2qMHU9.jpg", "order": 12}, {"name": "Burghart Klau\u00dfner", "character": "Richter", "id": 3934, "credit_id": "536b63420e0a2647d800bbf4", "cast_id": 37, "profile_path": "/uH3aUfhfgQy4eJvi5otRMKgIbme.jpg", "order": 13}, {"name": "Sylvester Groth", "character": "Staatsanwalt", "id": 41965, "credit_id": "536b63530e0a2647d400b958", "cast_id": 38, "profile_path": "/vMNpftjWH7Q2dGSFYjp6U4pJkNx.jpg", "order": 14}, {"name": "J\u00fcrgen Tarrach", "character": "Gerhard Bade", "id": 10923, "credit_id": "536b63670e0a2647db00b8d1", "cast_id": 39, "profile_path": null, "order": 15}], "directors": [{"name": "Stephen Daldry", "department": "Directing", "job": "Director", "credit_id": "52fe448ec3a36847f809cda3", "profile_path": "/3GLyPLlPY0kn3zuGx2eHPJiYA1p.jpg", "id": 468}], "vote_average": 6.9, "runtime": 124}, "49017": {"poster_path": "/4oy4e0DP6LRwRszfx8NY8EYBj8V.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 215529201, "overview": "Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, including Vlad's son, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he's turned into the mythological vampire Dracula.", "video": false, "id": 49017, "genres": [{"id": 28, "name": "Action"}, {"id": 18, "name": "Drama"}, {"id": 14, "name": "Fantasy"}, {"id": 27, "name": "Horror"}, {"id": 10752, "name": "War"}], "title": "Dracula Untold", "tagline": "Every bloodline has a beginning", "vote_count": 717, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0829150", "adult": false, "backdrop_path": "/6UPlIYKxZqUR6Xbpgu1JKG0J7UC.jpg", "production_companies": [{"name": "Michael De Luca Productions", "id": 27551}, {"name": "Universal Pictures", "id": 33}, {"name": "Legendary Pictures", "id": 923}], "release_date": "2014-10-03", "popularity": 6.2074166074464, "original_title": "Dracula Untold", "budget": 70000000, "cast": [{"name": "Luke Evans", "character": "Dracula (Vlad Tepes)", "id": 114019, "credit_id": "52fe4780c3a36847f81394e1", "cast_id": 6, "profile_path": "/1d31uDYub8TaLOPWfgX78OotduD.jpg", "order": 0}, {"name": "Sarah Gadon", "character": "Mirena", "id": 190895, "credit_id": "52fe4780c3a36847f81394e5", "cast_id": 7, "profile_path": "/2wBgDSA2zk00KXpNSucdIGscu5b.jpg", "order": 1}, {"name": "Dominic Cooper", "character": "Mehmed II", "id": 55470, "credit_id": "52fe4780c3a36847f81394e9", "cast_id": 8, "profile_path": "/z4eKEtwZXVespbZCS2qjYZaztyv.jpg", "order": 2}, {"name": "Art Parkinson", "character": "Ingeras", "id": 1050248, "credit_id": "53a9b9c10e0a2646cc000049", "cast_id": 10, "profile_path": "/lm6BkM9uf69sd30o87kJ83ezKzN.jpg", "order": 3}, {"name": "Charles Dance", "character": "Master Vampire", "id": 4391, "credit_id": "542f0ef0c3a36804360008ac", "cast_id": 16, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 4}, {"name": "Diarmaid Murtagh", "character": "Dimitru", "id": 1330044, "credit_id": "542f0f27c3a3680439000858", "cast_id": 18, "profile_path": "/mGYuCYKnPojosNhviSoB1BifofA.jpg", "order": 5}, {"name": "William Houston", "character": "Cazan", "id": 84865, "credit_id": "53a9bb81c3a3684cfb000065", "cast_id": 12, "profile_path": "/cDRUNHUyHB29YKrTmzkQqBRCdla.jpg", "order": 7}, {"name": "Noah Huntley", "character": "Captain Petru", "id": 2050, "credit_id": "53a9bc8f0e0a2646d5000066", "cast_id": 13, "profile_path": "/tTeks76Ka5KN3EutTZzSr7Z6URO.jpg", "order": 8}, {"name": "Ronan Vibert", "character": "Simion", "id": 20523, "credit_id": "542f0f62c3a3680449000889", "cast_id": 20, "profile_path": "/3mCxRbHuq1aJwrFqLwk3OSdqva9.jpg", "order": 9}, {"name": "Zach McGowan", "character": "Shkelgim", "id": 62307, "credit_id": "542f0f760e0a26259f000953", "cast_id": 21, "profile_path": "/mrnpQbd7n0twHvtfWIx6LqF67M0.jpg", "order": 10}, {"name": "Ferdinand Kingsley", "character": "Hamza Bey", "id": 1211873, "credit_id": "542f0f88c3a368044900088c", "cast_id": 22, "profile_path": "/aqgAnX1yR3e8SLcR4sQRgVgea7r.jpg", "order": 11}, {"name": "Joseph Long", "character": "General Omer", "id": 27649, "credit_id": "542f10090e0a26259f00095d", "cast_id": 24, "profile_path": "/4dWSFArq1Qg9VYQzpS2pmmebqOq.jpg", "order": 12}, {"name": "Thor Kristjansson", "character": "Bright Eyes", "id": 1065016, "credit_id": "542f0ff50e0a26259300091b", "cast_id": 23, "profile_path": "/uXxczPZA9oX2VsMyrNCcVmL4ysJ.jpg", "order": 13}, {"name": "Jakub Giersza\u0142", "character": "Acemi", "id": 489961, "credit_id": "54d54711c3a3683b920001c5", "cast_id": 34, "profile_path": "/qzl317BQRgu9gbZwMEdVecBTopb.jpg", "order": 14}, {"name": "Dilan Gwyn", "character": "Governess", "id": 1334010, "credit_id": "53a9bd150e0a2646c500006b", "cast_id": 14, "profile_path": "/w7KPmbTY2r0bKt2b1mKPvynZIqF.jpg", "order": 15}, {"name": "J.J. Murphy", "character": "The Village Elder", "id": 1352394, "credit_id": "53e996ef0e0a26602b0009ee", "cast_id": 15, "profile_path": "/szTRTFzkTlyLmRPf9BOlBueD2nX.jpg", "order": 16}, {"name": "Paul Kaye", "character": "Brother Lucian", "id": 71281, "credit_id": "54d7b8bfc3a3685431003051", "cast_id": 35, "profile_path": "/lKPoRmfY8cfkd4qdUr2AJwy9tsB.jpg", "order": 17}], "directors": [{"name": "Gary Shore", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f81394d1", "profile_path": null, "id": 1167470}], "vote_average": 6.3, "runtime": 92}, "49018": {"poster_path": "/urAaOffVaxQzRJ8X5Z0oDqOWAjl.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 97009150, "overview": "A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.", "video": false, "id": 49018, "genres": [{"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Insidious", "tagline": "It's not the house that's haunted.", "vote_count": 400, "homepage": "http://www.insidious-movie.com/", "belongs_to_collection": {"backdrop_path": "/bA8UpUuAbET2RMQE96xT7eBPF4Q.jpg", "poster_path": "/fct5wsWu6niDIGRIC4aWEsN5Npa.jpg", "id": 228446, "name": "Insidious Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1591095", "adult": false, "backdrop_path": "/xVNR5eperbCm1DI1JfGhUXd4lqm.jpg", "production_companies": [{"name": "Stage 6 Films", "id": 11341}, {"name": "Alliance Films", "id": 2514}, {"name": "IM Global", "id": 7437}, {"name": "Haunted Movies", "id": 21742}], "release_date": "2010-09-13", "popularity": 1.70277089479311, "original_title": "Insidious", "budget": 1500000, "cast": [{"name": "Patrick Wilson", "character": "Josh Lambert", "id": 17178, "credit_id": "52fe4780c3a36847f813951f", "cast_id": 7, "profile_path": "/djhTpbOvrfdDsWZFFintj2Uv47a.jpg", "order": 0}, {"name": "Rose Byrne", "character": "Renai Lambert", "id": 9827, "credit_id": "52fe4780c3a36847f8139523", "cast_id": 8, "profile_path": "/hTPfz7O0J1uywTjOZxp2RpOhfH2.jpg", "order": 1}, {"name": "Barbara Hershey", "character": "Lorraine Lambert", "id": 10767, "credit_id": "52fe4780c3a36847f8139527", "cast_id": 9, "profile_path": "/gaimK3QeNS32Wjryw03QC0PXWKO.jpg", "order": 2}, {"name": "Leigh Whannell", "character": "Specs", "id": 2128, "credit_id": "52fe4780c3a36847f813952b", "cast_id": 10, "profile_path": "/cEy5gYVsjC7YL5Q53lkwjqYWP22.jpg", "order": 3}, {"name": "Angus Sampson", "character": "Tucker", "id": 59117, "credit_id": "52fe4780c3a36847f813952f", "cast_id": 11, "profile_path": "/jbUAdNqytgyuPPpEBvM4onQWt3Q.jpg", "order": 4}, {"name": "Ty Simpkins", "character": "Dalton Lambert", "id": 17181, "credit_id": "52fe4780c3a36847f8139533", "cast_id": 12, "profile_path": "/zkjGHGH47wm8iNpnoyKBRW2LDV6.jpg", "order": 5}, {"name": "Lin Shaye", "character": "Elise Rainier", "id": 7401, "credit_id": "52fe4780c3a36847f813956d", "cast_id": 22, "profile_path": "/erD3UM1YDkRS46D3XkhTSNXtRyg.jpg", "order": 6}, {"name": "Andrew Astor", "character": "Foster Lambert", "id": 208524, "credit_id": "53a7509a0e0a261442004661", "cast_id": 24, "profile_path": null, "order": 7}], "directors": [{"name": "James Wan", "department": "Directing", "job": "Director", "credit_id": "52fe4780c3a36847f8139515", "profile_path": "/d1LSKfzi5J6QngWS7niN1zPJdud.jpg", "id": 2127}], "vote_average": 6.6, "runtime": 103}, "57212": {"poster_path": "/6wMoQyJddEiLCzLUHiX7LNWhDol.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 177000000, "overview": "Follows a young man named Albert and his horse, Joey, and how their bond is broken when Joey is sold to the cavalry and sent to the trenches of World War One. Despite being too young to enlist, Albert heads to France to save his friend.", "video": false, "id": 57212, "genres": [{"id": 18, "name": "Drama"}, {"id": 10752, "name": "War"}], "title": "War Horse", "tagline": "Separated by War. Tested by Battle. Bound by Friendship.", "vote_count": 303, "homepage": "http://www.warhorsemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1568911", "adult": false, "backdrop_path": "/iO4fslQ9CenAOcg3JfhN6o9va2.jpg", "production_companies": [{"name": "Touchstone Pictures", "id": 9195}, {"name": "DreamWorks SKG", "id": 27}, {"name": "Amblin Entertainment", "id": 56}, {"name": "Reliance Entertainment", "id": 7294}, {"name": "The Kennedy/Marshall Company", "id": 862}], "release_date": "2011-12-25", "popularity": 0.922510691083555, "original_title": "War Horse", "budget": 66000000, "cast": [{"name": "Tom Hiddleston", "character": "Capt. James Nicholls", "id": 91606, "credit_id": "52fe4928c3a36847f818c121", "cast_id": 2, "profile_path": "/rA0aS2GACY2fwrc7mEJR3f5k5FD.jpg", "order": 0}, {"name": "Benedict Cumberbatch", "character": "Maj. Jamie Stewart", "id": 71580, "credit_id": "52fe4928c3a36847f818c125", "cast_id": 3, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 1}, {"name": "Toby Kebbell", "character": "Geordie Soldier", "id": 20286, "credit_id": "52fe4928c3a36847f818c129", "cast_id": 4, "profile_path": "/wQU3uFk2TWjT2qfs2Z6rkdbWbjx.jpg", "order": 2}, {"name": "Emily Watson", "character": "Rose Narracott", "id": 1639, "credit_id": "52fe4928c3a36847f818c12d", "cast_id": 5, "profile_path": "/jyIC8axLoCrbQoKGGjGFRU7hfNI.jpg", "order": 3}, {"name": "Jeremy Irvine", "character": "Albert Narracott", "id": 225692, "credit_id": "52fe4928c3a36847f818c131", "cast_id": 6, "profile_path": "/cNSKuWcb8wdFHsr7tygtEq77s7G.jpg", "order": 4}, {"name": "David Thewlis", "character": "Lyons", "id": 11207, "credit_id": "52fe4928c3a36847f818c13f", "cast_id": 9, "profile_path": "/xS7JZN7op7tk98UKVwTwz4pu0bc.jpg", "order": 6}, {"name": "Peter Mullan", "character": "Ted Narracott", "id": 3064, "credit_id": "52fe4929c3a36847f818c161", "cast_id": 16, "profile_path": "/s6fVtjCu0HshEIbfLklz4e2OoWS.jpg", "order": 7}, {"name": "David Kross", "character": "Pvt. G\u00fcnther Schr\u00f6der", "id": 5847, "credit_id": "52fe4929c3a36847f818c165", "cast_id": 17, "profile_path": "/50BcSbOZtfCktGMEepExob45O2h.jpg", "order": 8}, {"name": "Nicolas Bro", "character": "Friedrich", "id": 15086, "credit_id": "52fe4929c3a36847f818c16f", "cast_id": 19, "profile_path": "/bPfMDMjbFZzelnZQfLzVTk6qlwi.jpg", "order": 9}, {"name": "David Dencik", "character": "Base Camp Officer", "id": 93236, "credit_id": "52fe4929c3a36847f818c173", "cast_id": 20, "profile_path": "/h6ndLvEolmMOQs2hhbSEZMomSUu.jpg", "order": 10}, {"name": "Eddie Marsan", "character": "Sgt. Fry", "id": 1665, "credit_id": "52fe4929c3a36847f818c177", "cast_id": 21, "profile_path": "/zcJ2W9BuiBPohtOkPFcYuFfCzji.jpg", "order": 11}, {"name": "Celine Buckens", "character": "Emilie", "id": 1389549, "credit_id": "5475a3bac3a36859b9001536", "cast_id": 62, "profile_path": "/4g8tU91I2Nba1RnWRpnKPM3f3Zz.jpg", "order": 12}, {"name": "Matt Milne", "character": "Andrew Easton", "id": 1252495, "credit_id": "5475a580925141407a00158f", "cast_id": 64, "profile_path": null, "order": 14}, {"name": "Robert Emms", "character": "David Lyons", "id": 589652, "credit_id": "5475a59f925141527300212b", "cast_id": 65, "profile_path": "/4wdONknsZLWHpH2NSyk0FyPPO8A.jpg", "order": 15}, {"name": "Rainer Bock", "character": "Brandt", "id": 65054, "credit_id": "5475a606925141527300213f", "cast_id": 66, "profile_path": "/ebmPZimivfRFKYnKp2ygazkJO9r.jpg", "order": 16}, {"name": "Geoff Bell", "character": "Sgt. Sam Perkins", "id": 6969, "credit_id": "5475a64cc3a3687fd9000e79", "cast_id": 67, "profile_path": "/1zWgEcKr25XSfHGuXdCuFLUvEoX.jpg", "order": 17}, {"name": "Tony Pitts", "character": "Sgt. Martin", "id": 1229255, "credit_id": "5475a688c3a368364c0025dd", "cast_id": 68, "profile_path": null, "order": 18}, {"name": "Irfan Hussein", "character": "Sgt. Maj. Singh", "id": 1389553, "credit_id": "5475a6a49251414f190005df", "cast_id": 69, "profile_path": null, "order": 19}, {"name": "Pip Torrens", "character": "Maj. Tompkins", "id": 36666, "credit_id": "5475a6bd925141407a0015ca", "cast_id": 70, "profile_path": "/oufazs9fACQgocDos8vEY5IW1Wr.jpg", "order": 20}, {"name": "Patrick Kennedy", "character": "Lt.Waverley", "id": 1225859, "credit_id": "54cd7459c3a3681c9c000276", "cast_id": 71, "profile_path": null, "order": 21}], "directors": [{"name": "Steven Spielberg", "department": "Directing", "job": "Director", "credit_id": "52fe4928c3a36847f818c11d", "profile_path": "/pOK15UNaw75Bzj7BQO1ulehbPPm.jpg", "id": 488}], "vote_average": 6.8, "runtime": 146}, "49021": {"poster_path": "/cnhNUChZVkLxrvfqDEVLKgBPy1z.jpg", "production_countries": [{"iso_3166_1": "AU", "name": "Australia"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 57777106, "overview": "Based on a shocking true story, Killer Elite pits two of the world\u2019s most elite operatives\u2014Danny, an ex-special ops agent and Hunter, his longtime mentor\u2014against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouse\u2014where the predators become the prey.", "video": false, "id": 49021, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 53, "name": "Thriller"}], "title": "Killer Elite", "tagline": "May the Best Man Live", "vote_count": 245, "homepage": "http://www.killerelite.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1448755", "adult": false, "backdrop_path": "/pQcSfSu4hy4AJ1KjjTxXKBQdMzE.jpg", "production_companies": [{"name": "Open Road Films", "id": 10427}, {"name": "Current Entertainment", "id": 972}, {"name": "Omnilab Media", "id": 2729}, {"name": "Ambience Entertainment", "id": 3427}, {"name": "International Traders", "id": 6408}, {"name": "Sighvatsson Films", "id": 11369}, {"name": "Palomar Pictures (II)", "id": 11371}, {"name": "Film Victoria", "id": 11840}, {"name": "Wales Creative IP Fund", "id": 11841}], "release_date": "2011-09-23", "popularity": 1.62095929487664, "original_title": "Killer Elite", "budget": 66000000, "cast": [{"name": "Jason Statham", "character": "Danny", "id": 976, "credit_id": "52fe4781c3a36847f81396f9", "cast_id": 9, "profile_path": "/PhWiWgasncGWD9LdbsGcmxkV4r.jpg", "order": 0}, {"name": "Clive Owen", "character": "Spike", "id": 2296, "credit_id": "52fe4781c3a36847f81396fd", "cast_id": 10, "profile_path": "/jm2as6tLcvHCYQvmMYM4VK6JEnr.jpg", "order": 1}, {"name": "Robert De Niro", "character": "Hunter", "id": 380, "credit_id": "52fe4781c3a36847f8139701", "cast_id": 11, "profile_path": "/8Bgdfv1oN9Mw0YuMHP6fw8KzDkc.jpg", "order": 2}, {"name": "Dominic Purcell", "character": "Davies", "id": 10862, "credit_id": "52fe4781c3a36847f8139705", "cast_id": 12, "profile_path": "/8682xEQh0BdMKJkWki7s7es28Ov.jpg", "order": 3}, {"name": "Yvonne Strahovski", "character": "Anne", "id": 63312, "credit_id": "52fe4781c3a36847f8139709", "cast_id": 13, "profile_path": "/mgcaJaKhZtakVldW2KXYXhQ6ZJY.jpg", "order": 4}, {"name": "Aden Young", "character": "Meier", "id": 144081, "credit_id": "52fe4781c3a36847f813970d", "cast_id": 14, "profile_path": "/yXvlTjXdrMqEtHnL1pofXWNjFCJ.jpg", "order": 5}, {"name": "Ben Mendelsohn", "character": "Martin", "id": 77335, "credit_id": "52fe4781c3a36847f8139711", "cast_id": 15, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 6}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Agent", "id": 31164, "credit_id": "52fe4781c3a36847f8139715", "cast_id": 16, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 7}, {"name": "David Whiteley", "character": "M16 Man", "id": 267790, "credit_id": "52fe4781c3a36847f8139719", "cast_id": 17, "profile_path": null, "order": 8}, {"name": "Matthew Nable", "character": "Pennock", "id": 123879, "credit_id": "52fe4781c3a36847f813971d", "cast_id": 18, "profile_path": "/yE5MHKIUreuzL5bEgh8NTN8bSYe.jpg", "order": 9}, {"name": "Lachy Hulme", "character": "Harris", "id": 75122, "credit_id": "52fe4781c3a36847f8139721", "cast_id": 19, "profile_path": "/w2CvxXsrZWoJUcVgGs7RhpCovc3.jpg", "order": 10}, {"name": "Firass Dirani", "character": "Bakhait", "id": 56450, "credit_id": "52fe4781c3a36847f8139725", "cast_id": 20, "profile_path": "/dqIE2ckazhjMc5ETNCPgn8B4Mr9.jpg", "order": 11}, {"name": "Nick Tate", "character": "Commander B", "id": 85354, "credit_id": "52fe4781c3a36847f8139729", "cast_id": 21, "profile_path": "/1cQlUPh9S59TC4EtbovA7KC68ew.jpg", "order": 12}, {"name": "Bille Brown", "character": "Colonel Fitz", "id": 42393, "credit_id": "52fe4781c3a36847f813972d", "cast_id": 22, "profile_path": "/u6VUTGmbaSt0LfvbXMoY1P2weh8.jpg", "order": 13}, {"name": "Stewart Morritt", "character": "Campbell", "id": 369078, "credit_id": "52fe4781c3a36847f8139731", "cast_id": 23, "profile_path": null, "order": 14}, {"name": "Sandy Greenwood", "character": "Harris' Girlfriend", "id": 1387586, "credit_id": "546f6064c3a3682fa4002190", "cast_id": 48, "profile_path": "/aEpgeweTwS3Ul1mttSJGJG7ycMx.jpg", "order": 15}], "directors": [{"name": "Gary McKendry", "department": "Directing", "job": "Director", "credit_id": "52fe4781c3a36847f81396f5", "profile_path": null, "id": 141688}], "vote_average": 6.1, "runtime": 116}, "57214": {"poster_path": "/cWXkRLmzKfYutvWeJXaednoGKdF.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 100000000, "overview": "Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.", "video": false, "id": 57214, "genres": [{"id": 35, "name": "Comedy"}, {"id": 80, "name": "Crime"}], "title": "Project X", "tagline": "Witness it", "vote_count": 433, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1636826", "adult": false, "backdrop_path": "/eJhymb0SiOd39L3BDe7aO7iQhQx.jpg", "production_companies": [{"name": "Silver Pictures", "id": 1885}, {"name": "Green Hat Films", "id": 3527}], "release_date": "2012-03-02", "popularity": 0.997800248331335, "original_title": "Project X", "budget": 12000000, "cast": [{"name": "Oliver Cooper", "character": "Costa", "id": 225694, "credit_id": "52fe4929c3a36847f818c1c1", "cast_id": 1002, "profile_path": "/1eBIzPMwi7xgOAqGztXByHfqrHc.jpg", "order": 0}, {"name": "Jonathan Daniel Brown", "character": "JB", "id": 225695, "credit_id": "52fe4929c3a36847f818c1c5", "cast_id": 1003, "profile_path": "/qrMeyCIdZw0SM0F5qbGbQEX1iwc.jpg", "order": 1}, {"name": "Thomas Mann", "character": "Thomas", "id": 1142720, "credit_id": "52fe4929c3a36847f818c24f", "cast_id": 1035, "profile_path": "/9URrxF1AKqL8SxxOeAVHKBAlWEx.jpg", "order": 2}, {"name": "Dax Flame", "character": "Dax", "id": 996700, "credit_id": "52fe4929c3a36847f818c1eb", "cast_id": 1017, "profile_path": "/rEuR09MllLRYpg7gZCgtipOwuAj.jpg", "order": 3}, {"name": "Kirby Bliss Blanton", "character": "Kirby", "id": 131771, "credit_id": "52fe4929c3a36847f818c1df", "cast_id": 1013, "profile_path": "/vZkMAkFExFIME3A1SveuHQYAgIn.jpg", "order": 4}, {"name": "Brady Hender", "character": "Everett", "id": 996699, "credit_id": "52fe4929c3a36847f818c1e7", "cast_id": 1016, "profile_path": "/5HwQ5BSG6tho3OGg4qt5bGgrjDK.jpg", "order": 5}, {"name": "Nick Nervies", "character": "Tyler", "id": 1333921, "credit_id": "53a959520e0a2614320078f6", "cast_id": 1037, "profile_path": null, "order": 6}, {"name": "Alexis Knapp", "character": "Alexis", "id": 999790, "credit_id": "52fe4929c3a36847f818c1f7", "cast_id": 1020, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 7}, {"name": "Miles Teller", "character": "Miles", "id": 996701, "credit_id": "52fe4929c3a36847f818c1ef", "cast_id": 1018, "profile_path": "/BP15HuH50mYKjrj62rKKvTtclz.jpg", "order": 8}, {"name": "Peter MacKenzie", "character": "Dad", "id": 62597, "credit_id": "52fe4929c3a36847f818c1f3", "cast_id": 1019, "profile_path": "/mAnOLlLQDEtUvAqEjKPLiQSJ0w5.jpg", "order": 9}, {"name": "Caitlin Dulany", "character": "Mom", "id": 42194, "credit_id": "52fe4929c3a36847f818c1e3", "cast_id": 1015, "profile_path": "/yWc0oe7bMythW2ENVyjCFTNKdrF.jpg", "order": 10}, {"name": "Brendan Miller", "character": "Brendan", "id": 83861, "credit_id": "52fe4929c3a36847f818c1db", "cast_id": 1012, "profile_path": "/dNMco4j668OZ0FkFMxEFyyrfRG9.jpg", "order": 11}, {"name": "Nichole Bloom", "character": "JB's Girl", "id": 996697, "credit_id": "52fe4929c3a36847f818c1d3", "cast_id": 1010, "profile_path": "/lnnOmkblreKRWtG7IBjGeDISmBz.jpg", "order": 12}, {"name": "Martin Klebba", "character": "Angry Little Person", "id": 4030, "credit_id": "52fe4929c3a36847f818c1c9", "cast_id": 1004, "profile_path": "/amlhUrXQ7t1NEPajdj2dQdbC0rt.jpg", "order": 13}, {"name": "Sam Lant", "character": "Freshman Party Crasher", "id": 996698, "credit_id": "52fe4929c3a36847f818c1d7", "cast_id": 1011, "profile_path": "/ncZWeaHR3doeQKiaudYKf7dXHzh.jpg", "order": 14}], "directors": [{"name": "Nima Nourizadeh", "department": "Directing", "job": "Director", "credit_id": "52fe4929c3a36847f818c1bd", "profile_path": null, "id": 225693}], "vote_average": 6.6, "runtime": 88}, "8065": {"poster_path": "/4zKAgycQDJD2zIkmPYV3aMR8tEy.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 69823199, "overview": "Ben Campbell is a young, highly intelligent, student at M.I.T. in Boston who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine with the desire to become a doctor, Ben learns that he cannot afford the $300,000 for the four to five years of schooling as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor Micky Rosa into a small but secretive club of five. Students Jill, Choi, Kianna, and Fisher, who are being trained by Professor Rosa of the skill of card counting at blackjack.", "video": false, "id": 8065, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}], "title": "21", "tagline": "They proved the Vegas Blackjack System was beatable...by beating the hell out of it.", "vote_count": 515, "homepage": "http://www.sonypictures.com/movies/21/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0478087", "adult": false, "backdrop_path": "/avqznLsnPzSROYJTxRMC70MM4Ps.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}, {"name": "Relativity Media", "id": 7295}], "release_date": "2008-03-27", "popularity": 0.783607801414717, "original_title": "21", "budget": 35000000, "cast": [{"name": "Jim Sturgess", "character": "Ben Campbell", "id": 38941, "credit_id": "52fe4490c3a36847f809d2fd", "cast_id": 1, "profile_path": "/kLfKa75auTp7B5l4e2jWtyg1f77.jpg", "order": 0}, {"name": "Kevin Spacey", "character": "Micky Rosa", "id": 1979, "credit_id": "52fe4490c3a36847f809d301", "cast_id": 2, "profile_path": "/cdowETe1PgXLjo72hDb7R7tyavf.jpg", "order": 1}, {"name": "Kate Bosworth", "character": "Jill Taylor", "id": 7517, "credit_id": "52fe4490c3a36847f809d305", "cast_id": 3, "profile_path": "/4TUTLi9zzbvDcBavwpLCGbhbfmO.jpg", "order": 2}, {"name": "Aaron Yoo", "character": "Choi", "id": 54247, "credit_id": "52fe4490c3a36847f809d30d", "cast_id": 5, "profile_path": "/6rJ1u7hmko4ObGrXCA7N53AqbXg.jpg", "order": 3}, {"name": "Liza Lapira", "character": "Kianna", "id": 51998, "credit_id": "52fe4490c3a36847f809d311", "cast_id": 6, "profile_path": "/tV55n4QH4BJcdBvwhqBfBxqyDW0.jpg", "order": 4}, {"name": "Jacob Pitts", "character": "Fisher", "id": 54414, "credit_id": "52fe4490c3a36847f809d315", "cast_id": 7, "profile_path": "/tqXTkN6nWE543VuXXj75zQOVjGa.jpg", "order": 5}, {"name": "Laurence Fishburne", "character": "Cole Williams", "id": 2975, "credit_id": "52fe4490c3a36847f809d309", "cast_id": 4, "profile_path": "/mh0lZ1XsT84FayMNiT6Erh91mVu.jpg", "order": 6}, {"name": "Jack McGee", "character": "Terry", "id": 10489, "credit_id": "52fe4490c3a36847f809d319", "cast_id": 8, "profile_path": "/jSl2RKRaJvtRoS3T5HSw4xeNdwy.jpg", "order": 7}, {"name": "Josh Gad", "character": "Miles", "id": 54415, "credit_id": "52fe4490c3a36847f809d31d", "cast_id": 9, "profile_path": "/oyEprEGF1aqWAqUZNx3yujJ9gPn.jpg", "order": 8}, {"name": "Sam Golzari", "character": "Cam", "id": 54416, "credit_id": "52fe4490c3a36847f809d321", "cast_id": 10, "profile_path": "/1qKufCjC0aV6nHM1sGBiKHUY3pe.jpg", "order": 9}, {"name": "Helen Carey", "character": "Ellen Campbell", "id": 17185, "credit_id": "52fe4490c3a36847f809d389", "cast_id": 28, "profile_path": "/6glnYNpIIFMhtFAbOG6EhOCRjNp.jpg", "order": 10}, {"name": "Jack Gilpin", "character": "Bob Phillips", "id": 77023, "credit_id": "52fe4490c3a36847f809d38d", "cast_id": 29, "profile_path": "/cYaMYTd4TawSeF9eUSwXR1rP3th.jpg", "order": 11}, {"name": "Ben Campbell", "character": "Kartengeber", "id": 54477, "credit_id": "52fe4490c3a36847f809d385", "cast_id": 27, "profile_path": "/zUbrFpDpLZzbbesdeJwrbTGyLQN.jpg", "order": 12}], "directors": [{"name": "Robert Luketic", "department": "Directing", "job": "Director", "credit_id": "52fe4490c3a36847f809d327", "profile_path": "/iD0QrLfka6TwJIfRrqxTaqJKb7p.jpg", "id": 36797}], "vote_average": 6.3, "runtime": 123}, "49026": {"poster_path": "/dEYnvnUfXrqvqeRSqvIEtmzhoA8.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1081041287, "overview": "Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.", "video": false, "id": 49026, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 53, "name": "Thriller"}], "title": "The Dark Knight Rises", "tagline": "The Legend Ends", "vote_count": 4875, "homepage": "http://www.thedarkknightrises.com/", "belongs_to_collection": {"backdrop_path": "/xfKot7lqaiW4XpL5TtDlVBA9ei9.jpg", "poster_path": "/bqS2lMgGkuodIXtDILFWTSWDDpa.jpg", "id": 263, "name": "The Dark Knight Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1345836", "adult": false, "backdrop_path": "/3bgtUfKQKNi3nJsAB5URpP2wdRt.jpg", "production_companies": [{"name": "Syncopy", "id": 9996}, {"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "DC Entertainment", "id": 9993}], "release_date": "2012-07-20", "popularity": 4.68499667586586, "original_title": "The Dark Knight Rises", "budget": 250000000, "cast": [{"name": "Christian Bale", "character": "Bruce Wayne / Batman", "id": 3894, "credit_id": "52fe4781c3a36847f8139869", "cast_id": 2, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Michael Caine", "character": "Alfred", "id": 3895, "credit_id": "52fe4781c3a36847f8139881", "cast_id": 8, "profile_path": "/nlIjMLp9zvvYM2eFm77UhI7s1nW.jpg", "order": 1}, {"name": "Gary Oldman", "character": "Commissioner Gordon", "id": 64, "credit_id": "52fe4781c3a36847f8139875", "cast_id": 5, "profile_path": "/kCWUeBkZ2sf8LObSpUFgRngawQb.jpg", "order": 2}, {"name": "Anne Hathaway", "character": "Selina Kyle", "id": 1813, "credit_id": "52fe4781c3a36847f813986d", "cast_id": 3, "profile_path": "/jUMOKwSUBnTcMeN1HfhutiY49Ad.jpg", "order": 3}, {"name": "Tom Hardy", "character": "Bane", "id": 2524, "credit_id": "52fe4781c3a36847f8139871", "cast_id": 4, "profile_path": "/5HZSvW12xIWqdxasIL92pIiTSkY.jpg", "order": 4}, {"name": "Marion Cotillard", "character": "Miranda", "id": 8293, "credit_id": "52fe4781c3a36847f813988d", "cast_id": 15, "profile_path": "/mJl7ngstco78rgxSAwLCPhTEOh5.jpg", "order": 5}, {"name": "Joseph Gordon-Levitt", "character": "Blake", "id": 24045, "credit_id": "52fe4781c3a36847f8139879", "cast_id": 6, "profile_path": "/zSuXCR6xCKIgo0gWLdp8moMlH3I.jpg", "order": 6}, {"name": "Morgan Freeman", "character": "Fox", "id": 192, "credit_id": "52fe4781c3a36847f813987d", "cast_id": 7, "profile_path": "/oGJQhOpT8S1M56tvSsbEBePV5O1.jpg", "order": 7}, {"name": "Cillian Murphy", "character": "Dr. Jonathan Crane / Scarecrow", "id": 2037, "credit_id": "52fe4781c3a36847f8139939", "cast_id": 46, "profile_path": "/tEERcmKFHXypcwkP28MxVfvf6Ph.jpg", "order": 8}, {"name": "Juno Temple", "character": "Jen", "id": 36594, "credit_id": "52fe4781c3a36847f8139885", "cast_id": 9, "profile_path": "/qOlYQvcnzvBYzfYVeHIr8MlkefY.jpg", "order": 9}, {"name": "Liam Neeson", "character": "Ra's Al Ghul", "id": 3896, "credit_id": "52fe4781c3a36847f813993d", "cast_id": 47, "profile_path": "/oxCCVmDSxWcqIyMknRoOAZkvb6D.jpg", "order": 10}, {"name": "Matthew Modine", "character": "Deputy Commissioner Foley", "id": 8654, "credit_id": "52fe4781c3a36847f813992d", "cast_id": 43, "profile_path": "/tEQG1Us5IuoKYtufZe6waWtxfeg.jpg", "order": 11}, {"name": "Alon Aboutboul", "character": "Dr. Pavel (as Alon Moni Aboutboul)", "id": 16607, "credit_id": "52fe4781c3a36847f8139935", "cast_id": 45, "profile_path": "/g2ER1Yk1jtwMkugOEkK8FdCGUTB.jpg", "order": 12}, {"name": "Ben Mendelsohn", "character": "Daggett", "id": 77335, "credit_id": "52fe4782c3a36847f8139945", "cast_id": 49, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 13}, {"name": "Nestor Carbonell", "character": "The Mayor", "id": 21316, "credit_id": "52fe4781c3a36847f8139889", "cast_id": 10, "profile_path": "/yALf2koeUAc2UNoT5o0hQO6Akzn.jpg", "order": 14}, {"name": "Josh Pence", "character": "Young Ra's Al Ghul", "id": 928532, "credit_id": "52fe4781c3a36847f8139909", "cast_id": 36, "profile_path": "/nNMhtY1gBYwnjZZpeGGW16fVXC5.jpg", "order": 15}, {"name": "Vincent van Ommen", "character": "Chanter (voice)", "id": 102516, "credit_id": "52fe4781c3a36847f8139925", "cast_id": 41, "profile_path": "/ioyMicmlgFB59KQ3JuRVhBGqrtn.jpg", "order": 16}, {"name": "Tom Conti", "character": "Prisoner", "id": 71010, "credit_id": "52fe4781c3a36847f8139929", "cast_id": 42, "profile_path": "/lpEvoHDWJtuV2h7Yw3NQisb902P.jpg", "order": 17}, {"name": "Joey King", "character": "Young Talia Al Ghul", "id": 125025, "credit_id": "52fe4781c3a36847f8139931", "cast_id": 44, "profile_path": "/lGoCVFe0M2Gbt9Q61SVefwnxVPX.jpg", "order": 18}, {"name": "Warren Brown", "character": "Mercenary Security #1", "id": 211521, "credit_id": "52fe4781c3a36847f8139941", "cast_id": 48, "profile_path": "/oDs6F2vYAo7aY65WVNt74OJWwmt.jpg", "order": 19}, {"name": "Daniel Sunjata", "character": "Captain Jones", "id": 10582, "credit_id": "52fe4782c3a36847f8139949", "cast_id": 50, "profile_path": "/k96VSR1Q3p6sWHuY2z7Rd5pA8Hg.jpg", "order": 20}, {"name": "Sam Kennard", "character": "Special Ops Sergeant", "id": 224365, "credit_id": "52fe4782c3a36847f8139951", "cast_id": 52, "profile_path": "/8kK3czVfS2ZQo5B5vxY0lBRmDWk.jpg", "order": 21}, {"name": "Aliash Tepina", "character": "Hooded Man #2", "id": 1334307, "credit_id": "53ab5495c3a3684bb900059a", "cast_id": 53, "profile_path": "/y9w1U8GLxsKRGkNMVueVDKeiwR.jpg", "order": 22}, {"name": "Nick Julian", "character": "Caterer", "id": 1334308, "credit_id": "53ab59d40e0a267622000761", "cast_id": 54, "profile_path": "/ldmu4cPa5QtjA8YWx3fNa4FEPSX.jpg", "order": 23}, {"name": "Miranda Nolan", "character": "Maid #2", "id": 1334309, "credit_id": "53ab5ba70e0a26761f000715", "cast_id": 55, "profile_path": "/lwIOE3hSz4M3l3dab0UrhoK2Xt6.jpg", "order": 24}, {"name": "Aidan Gillen", "character": "CIA Op", "id": 49735, "credit_id": "53e761100e0a266f9d00176c", "cast_id": 56, "profile_path": "/w37z62Ex1kxqLTyI3SRySmiVsDB.jpg", "order": 25}], "directors": [{"name": "Christopher Nolan", "department": "Directing", "job": "Director", "credit_id": "52fe4781c3a36847f8139865", "profile_path": "/7OGmfDF4VHLLgbjxuEwTj3ga0uQ.jpg", "id": 525}], "vote_average": 7.4, "runtime": 165}, "8068": {"poster_path": "/7eVo5DbP7gcsDzHcpRCTA6JAuF2.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 25625110, "overview": "A gunslinger is embroiled in a war with a local drug runner.", "video": false, "id": 8068, "genres": [{"id": 28, "name": "Action"}, {"id": 80, "name": "Crime"}, {"id": 53, "name": "Thriller"}], "title": "Desperado", "tagline": "When the smoke clears, it just means he's reloading.", "vote_count": 186, "homepage": "", "belongs_to_collection": {"backdrop_path": "/6p1OzuIKWnTDfDea7IpB9xra5J.jpg", "poster_path": "/4UMPWCj3MuHLCR2vVPPNCxU6RDV.jpg", "id": 9649, "name": "Mexico Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0112851", "adult": false, "backdrop_path": "/wA3qqVezyktBj92nTVXU7tYd1iG.jpg", "production_companies": [{"name": "Columbia Pictures", "id": 5}], "release_date": "1995-08-25", "popularity": 0.518457476071144, "original_title": "Desperado", "budget": 7000000, "cast": [{"name": "Antonio Banderas", "character": "El Mariachi", "id": 3131, "credit_id": "52fe4490c3a36847f809d4f1", "cast_id": 3, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Salma Hayek", "character": "Carolina", "id": 3136, "credit_id": "52fe4490c3a36847f809d4f5", "cast_id": 4, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 1}, {"name": "Joaquim de Almeida", "character": "Bucho", "id": 22462, "credit_id": "52fe4490c3a36847f809d4f9", "cast_id": 5, "profile_path": "/d4nAEoUEiXnKGLW0ughHQX3fkzw.jpg", "order": 2}, {"name": "Cheech Marin", "character": "Short Bartender", "id": 11159, "credit_id": "52fe4490c3a36847f809d4fd", "cast_id": 6, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 3}, {"name": "Steve Buscemi", "character": "Buscemi", "id": 884, "credit_id": "52fe4490c3a36847f809d501", "cast_id": 7, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 4}, {"name": "Carlos Andr\u00e9s G\u00f3mez", "character": "Right Hand", "id": 5295, "credit_id": "52fe4490c3a36847f809d505", "cast_id": 8, "profile_path": "/fJrzxb24agdScxqXbTWs90mQN0x.jpg", "order": 5}, {"name": "Quentin Tarantino", "character": "Pick-Up Guy", "id": 138, "credit_id": "52fe4490c3a36847f809d509", "cast_id": 9, "profile_path": "/6grjDWpEIPL5QdRbUZFxVEp5TCd.jpg", "order": 6}, {"name": "Tito Larriva", "character": "Tavo", "id": 53763, "credit_id": "52fe4490c3a36847f809d50d", "cast_id": 10, "profile_path": null, "order": 7}, {"name": "Angel Aviles", "character": "Zamira", "id": 53764, "credit_id": "52fe4490c3a36847f809d511", "cast_id": 11, "profile_path": "/40zdLo8BpwlBSQyFLCgiO16prQl.jpg", "order": 8}, {"name": "Danny Trejo", "character": "Navajas", "id": 11160, "credit_id": "52fe4490c3a36847f809d515", "cast_id": 12, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 9}, {"name": "Abraham Verduzco", "character": "Ni\u00f1o", "id": 53765, "credit_id": "52fe4490c3a36847f809d519", "cast_id": 13, "profile_path": "/9yxvXER6Eof82FUIMVNSTfhvf8J.jpg", "order": 10}, {"name": "Carlos Gallardo", "character": "Campa", "id": 20498, "credit_id": "52fe4490c3a36847f809d51d", "cast_id": 14, "profile_path": "/4ZT5vkGvOdmC8dLHciGN8emkkpj.jpg", "order": 11}, {"name": "Albert Michel Jr.", "character": "Quino", "id": 53766, "credit_id": "52fe4490c3a36847f809d521", "cast_id": 15, "profile_path": null, "order": 12}, {"name": "David Alvarado", "character": "Buddy", "id": 6897, "credit_id": "52fe4490c3a36847f809d525", "cast_id": 16, "profile_path": null, "order": 13}, {"name": "Angela Lanza", "character": "Tourist Girl", "id": 4666, "credit_id": "52fe4490c3a36847f809d529", "cast_id": 17, "profile_path": null, "order": 14}, {"name": "Elizabeth Rodriguez", "character": "Mariachi Fan", "id": 65421, "credit_id": "550e0da5c3a3683f0a0002cb", "cast_id": 22, "profile_path": "/lwJXQ7DDRY9W4pdzQzJKdeKuCFl.jpg", "order": 15}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe4490c3a36847f809d4e7", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 6.5, "runtime": 104}, "8077": {"poster_path": "/vz1vBw17F0x42bhziHdYRJC9uCv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 159773545, "overview": "After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.", "video": false, "id": 8077, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Alien\u00b3", "tagline": "The bitch is back.", "vote_count": 478, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0103644", "adult": false, "backdrop_path": "/oVV6z4Tqbklvy2uQAPAKZGokqzS.jpg", "production_companies": [{"name": "Twentieth Century Fox Film Corporation", "id": 306}, {"name": "Brandywine Productions", "id": 19747}], "release_date": "1992-05-22", "popularity": 1.50577098616456, "original_title": "Alien\u00b3", "budget": 50000000, "cast": [{"name": "Sigourney Weaver", "character": "Ripley", "id": 10205, "credit_id": "52fe4491c3a36847f809d8a7", "cast_id": 1, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Charles S. Dutton", "character": "Dillon", "id": 17764, "credit_id": "52fe4491c3a36847f809d8b1", "cast_id": 3, "profile_path": "/ajXBoMz8xGgDDcn8xpRi8LmXKKa.jpg", "order": 1}, {"name": "Charles Dance", "character": "Clemens", "id": 4391, "credit_id": "52fe4491c3a36847f809d8b5", "cast_id": 4, "profile_path": "/bLT03rnI29YmbYWjA1JJCl4xVXw.jpg", "order": 2}, {"name": "Pete Postlethwaite", "character": "David", "id": 4935, "credit_id": "52fe4491c3a36847f809d8b9", "cast_id": 5, "profile_path": "/5nbSzrwyDcLhC15buncGdrQqJ8e.jpg", "order": 3}, {"name": "Ralph Brown", "character": "Aaron", "id": 53916, "credit_id": "52fe4491c3a36847f809d8bd", "cast_id": 6, "profile_path": "/ksIVhmaAB5oRiOkm9mDKALVkaJk.jpg", "order": 4}, {"name": "Paul McGann", "character": "Golic", "id": 47654, "credit_id": "52fe4491c3a36847f809d8c1", "cast_id": 7, "profile_path": "/vtp1wTbuxO9JfKP52xo0pjCOkh9.jpg", "order": 5}, {"name": "Danny Webb", "character": "Morse", "id": 53917, "credit_id": "52fe4491c3a36847f809d8c5", "cast_id": 8, "profile_path": "/dEAZ46qwZWF9CGxzaijoE0qnFMb.jpg", "order": 6}, {"name": "Lance Henriksen", "character": "Bishop II", "id": 2714, "credit_id": "52fe4491c3a36847f809d8c9", "cast_id": 9, "profile_path": "/wf4Pr9RxsHGd0O9fLPiB3Al8IVC.jpg", "order": 7}, {"name": "Brian Glover", "character": "Andrews", "id": 14468, "credit_id": "52fe4491c3a36847f809d8eb", "cast_id": 15, "profile_path": "/dUqgIdAO8jctUM4ordJ0cbovR4M.jpg", "order": 8}, {"name": "Tom Woodruff Jr.", "character": "Alien", "id": 109870, "credit_id": "52fe4491c3a36847f809d8ef", "cast_id": 16, "profile_path": null, "order": 9}, {"name": "Deobia Oparei", "character": "Arthur", "id": 58758, "credit_id": "52fe4491c3a36847f809d907", "cast_id": 23, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 10}, {"name": "Niall Buggy", "character": "Eric", "id": 40043, "credit_id": "52fe4491c3a36847f809d8f3", "cast_id": 17, "profile_path": "/9TPlvhoblLdowWVSs8olnG0J7CO.jpg", "order": 11}, {"name": "Christopher John Fields", "character": "Rains", "id": 145531, "credit_id": "52fe4491c3a36847f809d8f7", "cast_id": 19, "profile_path": "/jTWw4B74VhrPo8AN6Q9jq31eYDD.jpg", "order": 12}, {"name": "Peter Guinness", "character": "Gregor", "id": 27172, "credit_id": "52fe4491c3a36847f809d8fb", "cast_id": 20, "profile_path": "/lIdWBWDD8bx9pFR9s6aKPjWIR2Y.jpg", "order": 13}, {"name": "Vincenzo Nicoli", "character": "Jude", "id": 24595, "credit_id": "52fe4491c3a36847f809d8ff", "cast_id": 21, "profile_path": "/bTP43izMKRfeULFJ2xONN3mG62c.jpg", "order": 14}, {"name": "Christopher Fairbank", "character": "Murphy", "id": 8399, "credit_id": "52fe4491c3a36847f809d903", "cast_id": 22, "profile_path": "/OtvVhW5zzq2J9eiLC0R1H9sZb2.jpg", "order": 15}, {"name": "Philip Davis", "character": "Kevin", "id": 26854, "credit_id": "52fe4491c3a36847f809d90b", "cast_id": 24, "profile_path": "/znnB0M3mdPiiXZHjl9zUEP9MTiu.jpg", "order": 16}, {"name": "Paul Brennen", "character": "Troy", "id": 145532, "credit_id": "52fe4491c3a36847f809d90f", "cast_id": 25, "profile_path": "/5se1ioESfiqvhfZC8JOrqMouApD.jpg", "order": 17}, {"name": "Clive Mantle", "character": "William", "id": 145533, "credit_id": "52fe4491c3a36847f809d913", "cast_id": 26, "profile_path": "/6r632NEmhKpPzpNHe67uLhIfNJF.jpg", "order": 18}, {"name": "Carl Chase", "character": "Frank", "id": 127166, "credit_id": "52fe4491c3a36847f809d91b", "cast_id": 28, "profile_path": "/3HLdJB6ZQNi3DK4Ix9FXZ0a67K8.jpg", "order": 19}, {"name": "Hi Ching", "character": "Company Man", "id": 145534, "credit_id": "52fe4491c3a36847f809d917", "cast_id": 27, "profile_path": null, "order": 20}, {"name": "Leon Herbert", "character": "Boggs", "id": 145536, "credit_id": "52fe4491c3a36847f809d91f", "cast_id": 29, "profile_path": "/eMGvAyBwsgmHKgmHyHp3fJLfyxy.jpg", "order": 21}, {"name": "Danielle Edmond", "character": "Newt", "id": 145537, "credit_id": "52fe4491c3a36847f809d923", "cast_id": 30, "profile_path": "/aDYSWHp5Mbxl0fFYZ9nyCcdJItP.jpg", "order": 22}, {"name": "Holt McCallany", "character": "Junior", "id": 7497, "credit_id": "52fe4491c3a36847f809d927", "cast_id": 31, "profile_path": "/iNxSjRCtuz3BGaJlAyALiasVSZm.jpg", "order": 23}], "directors": [{"name": "David Fincher", "department": "Directing", "job": "Director", "credit_id": "52fe4491c3a36847f809d8ad", "profile_path": "/dcBHejOsKvzVZVozWJAPzYthb8X.jpg", "id": 7467}], "vote_average": 6.0, "runtime": 114}, "8078": {"poster_path": "/ve2P64a9kzd7M78kfeaEzBEIEOR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 162000000, "overview": "Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises \u2026 as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.", "video": false, "id": 8078, "genres": [{"id": 28, "name": "Action"}, {"id": 27, "name": "Horror"}, {"id": 878, "name": "Science Fiction"}], "title": "Alien: Resurrection", "tagline": "It's already too late.", "vote_count": 393, "homepage": "", "belongs_to_collection": {"backdrop_path": "/52Lhwd7srnktMFDYkfhtMoZdabT.jpg", "poster_path": "/iVzIeC3PbG9BtDAudpwSNdKAgh6.jpg", "id": 8091, "name": "Alien Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0118583", "adult": false, "backdrop_path": "/kFslzsvxOQgjbuDfta3kzbOWQY5.jpg", "production_companies": [{"name": "Brandywine Productions", "id": 19747}, {"name": "Twentieth Century Fox Film Corporation", "id": 306}], "release_date": "1997-11-26", "popularity": 1.31532467553944, "original_title": "Alien: Resurrection", "budget": 70000000, "cast": [{"name": "Sigourney Weaver", "character": "Ripley", "id": 10205, "credit_id": "52fe4492c3a36847f809d98b", "cast_id": 1, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 0}, {"name": "Winona Ryder", "character": "Annalee Call", "id": 1920, "credit_id": "52fe4492c3a36847f809d9a1", "cast_id": 5, "profile_path": "/3Y2e5A0ic6fvHS9YNghfMbOaKaM.jpg", "order": 1}, {"name": "Dominique Pinon", "character": "Vriess", "id": 2413, "credit_id": "52fe4492c3a36847f809d9a5", "cast_id": 6, "profile_path": "/uXS9jinsWVT1ZWAz8rj9ifCy9qS.jpg", "order": 2}, {"name": "Ron Perlman", "character": "Johner", "id": 2372, "credit_id": "52fe4492c3a36847f809d9a9", "cast_id": 7, "profile_path": "/xZyrXT2iEmSOokQRc1hedmxrbTi.jpg", "order": 3}, {"name": "Michael Wincott", "character": "Frank Elgyn", "id": 7486, "credit_id": "52fe4492c3a36847f809d9ad", "cast_id": 8, "profile_path": "/pvKUzexxZT4sRTT1BczzrwX8ghz.jpg", "order": 4}, {"name": "Brad Dourif", "character": "Dr. Jonathan Gediman", "id": 1370, "credit_id": "52fe4492c3a36847f809d9b1", "cast_id": 9, "profile_path": "/6pqeGxtWEdDjYsnQfUkmzXLlDvs.jpg", "order": 5}, {"name": "Gary Dourdan", "character": "Christie", "id": 40276, "credit_id": "52fe4492c3a36847f809d9b5", "cast_id": 10, "profile_path": "/yGNXneJeb4Ug1iJ08lspzJocpN0.jpg", "order": 6}, {"name": "Dan Hedaya", "character": "General Martin Perez", "id": 6486, "credit_id": "52fe4492c3a36847f809d9b9", "cast_id": 11, "profile_path": "/5E4SUVfLMUKNCiP0dMhyOv3XHVZ.jpg", "order": 7}, {"name": "Leland Orser", "character": "Larry Purvis", "id": 2221, "credit_id": "52fe4492c3a36847f809d9bd", "cast_id": 12, "profile_path": "/2XnpH5LOE7Ln0JMhFTT73QscLQh.jpg", "order": 8}, {"name": "Raymond Cruz", "character": "Vincent Distephano", "id": 58650, "credit_id": "52fe4492c3a36847f809d9c1", "cast_id": 13, "profile_path": "/4k0r3xJjgTac5GiJoHDDBVAFYcj.jpg", "order": 9}, {"name": "J.E. Freeman", "character": "Dr. Mason Wren", "id": 5169, "credit_id": "52fe4492c3a36847f809d9e3", "cast_id": 19, "profile_path": "/lGqZh89pfgSNhIItjvn34jPO6HM.jpg", "order": 10}, {"name": "David St. James", "character": "Surgeon", "id": 1598, "credit_id": "548d7d8692514122fc003bd3", "cast_id": 74, "profile_path": "/cOJhnH9pJph2snOgpTMgWcWY5kz.jpg", "order": 11}, {"name": "Marlene Bush", "character": "Scientist", "id": 1398983, "credit_id": "548d7da9925141031b000382", "cast_id": 75, "profile_path": null, "order": 12}], "directors": [{"name": "Jean-Pierre Jeunet", "department": "Directing", "job": "Director", "credit_id": "52fe4492c3a36847f809d991", "profile_path": "/504QzXvAttagp7SvTyzuFXmzt1v.jpg", "id": 2419}], "vote_average": 6.0, "runtime": 109}, "49040": {"poster_path": "/66na1ha5ejYGsNXbd5ShzwdCMwr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 276572938, "overview": "The fourth installment of the highly successful Bourne series sidelines main character Jason Bourne in order to focus on a fellow estranged assassin Aaron Cross (Jeremy Renner). The story centers on new CIA operative, Aaron Cross as he experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne. Edward Norton and Rachel Weisz co-star, with Joan Allen and Albert Finney reprising their roles from the previous films.", "video": false, "id": 49040, "genres": [{"id": 28, "name": "Action"}, {"id": 53, "name": "Thriller"}], "title": "The Bourne Legacy", "tagline": "There Was Never Just One", "vote_count": 1545, "homepage": "http://www.thebournelegacy.com/", "belongs_to_collection": {"backdrop_path": "/vA5xMglyZv7yzDTj1qUTU4OvelV.jpg", "poster_path": "/qsEggVO5RLO9odUxEBFjKy8PV5Q.jpg", "id": 31562, "name": "The Bourne Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "ru", "name": "P\u0443\u0441\u0441\u043a\u0438\u0439"}], "imdb_id": "tt1194173", "adult": false, "backdrop_path": "/gCdJYpX1TXGEZrEJl0mMTTpinMh.jpg", "production_companies": [{"name": "Captivate Entertainment", "id": 25716}, {"name": "Universal Pictures", "id": 33}, {"name": "Relativity Media", "id": 7295}, {"name": "Kennedy/Marshall Company, The", "id": 7383}, {"name": "Dentsu", "id": 6452}], "release_date": "2012-08-10", "popularity": 1.47908351379855, "original_title": "The Bourne Legacy", "budget": 130000000, "cast": [{"name": "Jeremy Renner", "character": "Aaron Cross", "id": 17604, "credit_id": "52fe4782c3a36847f8139c51", "cast_id": 5, "profile_path": "/pFOLCHkbTDzJ79dri1Iyz0cpAi4.jpg", "order": 0}, {"name": "Scott Glenn", "character": "Ezra Kramer", "id": 349, "credit_id": "52fe4782c3a36847f8139c6d", "cast_id": 12, "profile_path": "/5dRSvuksyw4tRlV81QTjsQtOW3S.jpg", "order": 1}, {"name": "Rachel Weisz", "character": "Dr. Marta Shearing", "id": 3293, "credit_id": "52fe4782c3a36847f8139c55", "cast_id": 6, "profile_path": "/fGy8mba2xVY8g0MjqytLqwdbP63.jpg", "order": 2}, {"name": "Edward Norton", "character": "Byer", "id": 819, "credit_id": "52fe4782c3a36847f8139c59", "cast_id": 7, "profile_path": "/iUiePUAQKN4GY6jorH9m23cbVli.jpg", "order": 3}, {"name": "Stacy Keach", "character": "Turso", "id": 825, "credit_id": "52fe4782c3a36847f8139c79", "cast_id": 15, "profile_path": "/9G0urAVBBP9FRX1wrxkdZCj3VCW.jpg", "order": 4}, {"name": "Joan Allen", "character": "Pamela Landy", "id": 11148, "credit_id": "52fe4782c3a36847f8139c5d", "cast_id": 8, "profile_path": "/Atg0mSjK9Dl98YBsFvBuGO8PG5m.jpg", "order": 5}, {"name": "Donna Murphy", "character": "Dita Mandy", "id": 2517, "credit_id": "52fe4782c3a36847f8139c61", "cast_id": 9, "profile_path": "/tUQp54rrkCJ9u9Ygy8IYiq9DvMk.jpg", "order": 6}, {"name": "Albert Finney", "character": "Dr. Albert Hirsch", "id": 3926, "credit_id": "52fe4782c3a36847f8139c65", "cast_id": 10, "profile_path": "/eD1BZEydFYFXi4GFr3GAPpdHcls.jpg", "order": 7}, {"name": "Michael Chernus", "character": "Arthur Ingram", "id": 87070, "credit_id": "52fe4782c3a36847f8139cab", "cast_id": 26, "profile_path": "/z3H7if45AI2bpT98m5geAXdlrSV.jpg", "order": 8}, {"name": "Oscar Isaac", "character": "#3", "id": 25072, "credit_id": "52fe4782c3a36847f8139c69", "cast_id": 11, "profile_path": "/5dAYYV83K3cvsjFqHLbruV3GBmx.jpg", "order": 9}, {"name": "Corey Stoll", "character": "Vendel", "id": 74541, "credit_id": "52fe4782c3a36847f8139c71", "cast_id": 13, "profile_path": "/yhMa3nzOsxQYSLr51OcvCsrovFa.jpg", "order": 10}, {"name": "David Strathairn", "character": "Noah Vosen", "id": 11064, "credit_id": "52fe4782c3a36847f8139c75", "cast_id": 14, "profile_path": "/5P9hWKVBXVD6bNdDO3O7upa1A6S.jpg", "order": 11}, {"name": "Michael Papajohn", "character": "Larry Hooper", "id": 20582, "credit_id": "52fe4782c3a36847f8139c7d", "cast_id": 16, "profile_path": "/t4LF4IJkF5juv9C7DDZQqsMfpLc.jpg", "order": 12}, {"name": "Dennis Boutsikaris", "character": "Ward", "id": 118937, "credit_id": "52fe4782c3a36847f8139c81", "cast_id": 17, "profile_path": "/uq1dmNevTzOw62hbLhE6JMu7p1H.jpg", "order": 13}, {"name": "Sheena Colette", "character": "Candent Woman #2", "id": 1030256, "credit_id": "52fe4782c3a36847f8139c85", "cast_id": 18, "profile_path": "/x9huC1iIlzU0ev9B61So34b9n3X.jpg", "order": 14}, {"name": "Louis Ozawa Changchien", "character": "LARX #3", "id": 113308, "credit_id": "52fe4782c3a36847f8139c89", "cast_id": 19, "profile_path": "/2mQAXKYbqP7Lhhsdz3OBYB6IMCw.jpg", "order": 15}, {"name": "Corey Johnson", "character": "Ray Wills", "id": 17199, "credit_id": "52fe4782c3a36847f8139caf", "cast_id": 27, "profile_path": "/9NHJWAnCfTIFzocGQdHvny6sIet.jpg", "order": 16}, {"name": "Jennifer Kim", "character": "Outcome #4", "id": 1077345, "credit_id": "52fe4782c3a36847f8139cb3", "cast_id": 28, "profile_path": "/nfcO4QPTlPXB4UVX1k0Jqp8nc5H.jpg", "order": 17}, {"name": "Elizabeth Marvel", "character": "Dr. Connie Dowd", "id": 126713, "credit_id": "52fe4782c3a36847f8139cb7", "cast_id": 29, "profile_path": "/3jaEuHmPwmoSpDeZHAgBhum6ZrS.jpg", "order": 18}, {"name": "Shane Jacobson", "character": "Mackie", "id": 74245, "credit_id": "52fe4782c3a36847f8139cbb", "cast_id": 30, "profile_path": "/bVACUQAGeNYOchpzIUkKoiHHJAf.jpg", "order": 19}, {"name": "Page Leong", "character": "Mrs. Yun", "id": 156729, "credit_id": "52fe4782c3a36847f8139cbf", "cast_id": 31, "profile_path": "/2RsStgOBJliUSUrqTaJwio974gV.jpg", "order": 20}, {"name": "Robert Christopher Riley", "character": "Outcome #6", "id": 1089770, "credit_id": "52fe4782c3a36847f8139cc3", "cast_id": 32, "profile_path": "/vnQMhDlZ1BX0BiUikoSo6BXU1Ii.jpg", "order": 21}, {"name": "\u017deljko Ivanek", "character": "Dr. Donald Foite", "id": 6752, "credit_id": "52fe4782c3a36847f8139cc7", "cast_id": 33, "profile_path": "/bQbyb11FgEPwNSfFeb6ChTfkqEM.jpg", "order": 22}, {"name": "Lou Veloso", "character": "boatman", "id": 1156086, "credit_id": "539a8f2a0e0a260fb00013c0", "cast_id": 41, "profile_path": "/phFnSVDugcvpzid3gHAiIkIcNzK.jpg", "order": 23}], "directors": [{"name": "Tony Gilroy", "department": "Directing", "job": "Director", "credit_id": "52fe4782c3a36847f8139c41", "profile_path": "/9HOtDgcO6F4Fa4BaIjt0t3Vbxrj.jpg", "id": 19242}], "vote_average": 5.8, "runtime": 120}, "32657": {"poster_path": "/sfWuWsL4tdYvfzB2RXKaHEmDW7B.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 226497209, "overview": "Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.", "video": false, "id": 32657, "genres": [{"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Percy Jackson & the Olympians: The Lightning Thief", "tagline": "From The Director of Harry Potter & The Philosopher's Stone", "vote_count": 560, "homepage": "http://www.imdb.com/title/tt0814255/?ref_=ttrel_rel_tt", "belongs_to_collection": {"backdrop_path": "/ae7DIULlFVTPp6mjgBLr4hzP59O.jpg", "poster_path": "/fimFFNm5LTSTaYcQEbjrFXT4rgo.jpg", "id": 179919, "name": "Percy Jackson Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0814255", "adult": false, "backdrop_path": "/pVXLoxvvFBwK6DUh677dZhcMGRm.jpg", "production_companies": [{"name": "TCF Vancouver Productions", "id": 28431}, {"name": "Fox 2000 Pictures", "id": 711}, {"name": "1492 Pictures", "id": 436}, {"name": "Sunswept Entertainment", "id": 5219}, {"name": "Dune Entertainment", "id": 444}, {"name": "Big Screen Productions", "id": 10893}, {"name": "Ingenious Film Partners", "id": 289}, {"name": "Dune Entertainment III", "id": 6332}], "release_date": "2010-02-11", "popularity": 1.2960946388373, "original_title": "Percy Jackson & the Olympians: The Lightning Thief", "budget": 95000000, "cast": [{"name": "Logan Lerman", "character": "Percy Jackson", "id": 33235, "credit_id": "52fe44e29251416c910201cf", "cast_id": 1, "profile_path": "/cXdx9wov6TKnCp8u6bNVVuf1Hyj.jpg", "order": 0}, {"name": "Brandon T. Jackson", "character": "Grover", "id": 53336, "credit_id": "52fe44e29251416c910201d3", "cast_id": 2, "profile_path": "/cCLM1Zcz7d6bhLJiM4b52OFgtF3.jpg", "order": 1}, {"name": "Alexandra Daddario", "character": "Annabeth", "id": 109513, "credit_id": "52fe44e29251416c910201d7", "cast_id": 3, "profile_path": "/qWy2rdPK3axHvlLV1IUKr6gWLGy.jpg", "order": 2}, {"name": "Jake Abel", "character": "Luke", "id": 105727, "credit_id": "52fe44e29251416c910201db", "cast_id": 4, "profile_path": "/jlVZEapmkHKC4ibEekJJ3O0vT9y.jpg", "order": 3}, {"name": "Sean Bean", "character": "Zeus", "id": 48, "credit_id": "52fe44e29251416c910201df", "cast_id": 5, "profile_path": "/arkVBI4myH8kvxFc7QIapy2DuT6.jpg", "order": 4}, {"name": "Pierce Brosnan", "character": "Mr. Brunner / Chiron", "id": 517, "credit_id": "52fe44e29251416c910201e3", "cast_id": 6, "profile_path": "/A2VjhqFFGovqet8JKQz13MNbgL3.jpg", "order": 5}, {"name": "Steve Coogan", "character": "Hades", "id": 4581, "credit_id": "52fe44e29251416c910201e7", "cast_id": 7, "profile_path": "/1xeEsE6pq6GTkueRfjzQiTqvyYA.jpg", "order": 6}, {"name": "Rosario Dawson", "character": "Persephone", "id": 5916, "credit_id": "52fe44e29251416c910201eb", "cast_id": 8, "profile_path": "/x4aOj4DYdxtIDpGrxyBD7gljEcf.jpg", "order": 7}, {"name": "Melina Kanakaredes", "character": "Athena", "id": 25972, "credit_id": "52fe44e29251416c910201ef", "cast_id": 9, "profile_path": "/hzDrgAWw3f8tLIsJ2zn8xO8dkmT.jpg", "order": 8}, {"name": "Catherine Keener", "character": "Sally Jackson", "id": 2229, "credit_id": "52fe44e29251416c910201f3", "cast_id": 10, "profile_path": "/tEBdqBUduF3dBcJcBeY5ffZ9MMu.jpg", "order": 9}, {"name": "Kevin McKidd", "character": "Poseidon", "id": 9013, "credit_id": "52fe44e29251416c910201f7", "cast_id": 11, "profile_path": "/vcHsz2rxQxw7AvCKzvaWmyugF1V.jpg", "order": 10}, {"name": "Joe Pantoliano", "character": "Gabe Ugliano", "id": 532, "credit_id": "52fe44e29251416c910201fb", "cast_id": 12, "profile_path": "/zBvDX2HWepvW9im6ikgoyOL2Xj0.jpg", "order": 11}, {"name": "Uma Thurman", "character": "Medusa", "id": 139, "credit_id": "52fe44e29251416c910201ff", "cast_id": 13, "profile_path": "/1syarPILK8IIFvBHhlK8pdBZ2bz.jpg", "order": 12}, {"name": "Julian Richings", "character": "Ferryman", "id": 2320, "credit_id": "52fe44e29251416c91020203", "cast_id": 14, "profile_path": "/bbVRUCBwztY0mUzXdAmMgHocNSU.jpg", "order": 13}, {"name": "Annie Ilonzeh", "character": "Aphrodite Girl", "id": 209196, "credit_id": "52fe44e29251416c91020219", "cast_id": 18, "profile_path": "/pClp0YqYYVjeKOzrjzS5S1Mi7GH.jpg", "order": 14}, {"name": "Alexis Knapp", "character": "Aphrodite Girl", "id": 999790, "credit_id": "52fe44e29251416c9102021d", "cast_id": 19, "profile_path": "/jhQeoRHhCig8dtJxthKChQmAERQ.jpg", "order": 15}, {"name": "Natassia Malthe", "character": "Lotus Land Waitress", "id": 21430, "credit_id": "52fe44e29251416c91020221", "cast_id": 20, "profile_path": "/9LuAHAshJ585iaXBxVpXVJIlC0D.jpg", "order": 16}, {"name": "Erica Cerra", "character": "Hera", "id": 1218928, "credit_id": "52fe44e29251416c91020225", "cast_id": 21, "profile_path": "/4jWKnFDPw7YbqJUuG5TAb9NodDC.jpg", "order": 17}, {"name": "Marie Avgeropoulos", "character": "Aphrodite Girl", "id": 140114, "credit_id": "52fe44e29251416c91020229", "cast_id": 22, "profile_path": "/xSlt8am4RrYGsSGjZO3Oy46ORyE.jpg", "order": 18}, {"name": "Maria Olsen", "character": "Mrs. Dodds / Fury", "id": 142402, "credit_id": "55143e15c3a36803da000a55", "cast_id": 23, "profile_path": "/mJj6g8iRnGIFRjLJiwVR7yGbJJP.jpg", "order": 19}], "directors": [{"name": "Chris Columbus", "department": "Directing", "job": "Director", "credit_id": "52fe44e29251416c91020209", "profile_path": "/2fHN78oumrJRM84UydgfVzj0YEl.jpg", "id": 10965}], "vote_average": 6.0, "runtime": 118}, "49047": {"poster_path": "/2gPjLWIyrWlAn2DgKMOKTBnZYyO.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 716392705, "overview": "Dr. Ryan Stone (Sandra Bullock), a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky (George Clooney) in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expance of space\u2026", "video": false, "id": 49047, "genres": [{"id": 18, "name": "Drama"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Gravity", "tagline": "Don't Let Go", "vote_count": 1866, "homepage": "http://gravitymovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1454468", "adult": false, "backdrop_path": "/9aoWzwOwy9NLuSk9LkBwwrBdPYM.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Esperanto Filmoj", "id": 7470}, {"name": "Heyday Films", "id": 7364}], "release_date": "2013-10-04", "popularity": 3.04355746091431, "original_title": "Gravity", "budget": 105000000, "cast": [{"name": "Sandra Bullock", "character": "Dr. Ryan Stone", "id": 18277, "credit_id": "52fe4783c3a36847f8139d6b", "cast_id": 3, "profile_path": "/pFudVrL9n8L0AHwMpbcfvsrjUQy.jpg", "order": 0}, {"name": "George Clooney", "character": "Matt Kowalski", "id": 1461, "credit_id": "52fe4783c3a36847f8139d6f", "cast_id": 4, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 1}, {"name": "Ed Harris", "character": "Mission Control (voice)", "id": 228, "credit_id": "52fe4783c3a36847f8139dad", "cast_id": 21, "profile_path": "/a9ITc3shCAWjV4qKf3rgR0Opu3y.jpg", "order": 2}, {"name": "Orto Ignatiussen", "character": "Aningaaq (voice)", "id": 1223440, "credit_id": "52fe4783c3a36847f8139db5", "cast_id": 23, "profile_path": "/cIpItbFg6AqAVdAYDgFMlwZlf9p.jpg", "order": 3}, {"name": "Paul Sharma", "character": "Shariff (voice)", "id": 58587, "credit_id": "52fe4783c3a36847f8139db1", "cast_id": 22, "profile_path": "/7JtZRXtmaKdJ2aAPEP1eqmhl7Bt.jpg", "order": 4}, {"name": "Amy Warren", "character": "Explorer Captain (voice)", "id": 1223442, "credit_id": "52fe4783c3a36847f8139db9", "cast_id": 24, "profile_path": "/ipZ0DxKDD66lixcQpku29rGiCxA.jpg", "order": 5}, {"name": "Basher Savage", "character": "Space Station Captain (voice)", "id": 1027852, "credit_id": "52fe4783c3a36847f8139d8b", "cast_id": 14, "profile_path": "/7QSnc4MUJVZ56mz86aLDnZ3mdjN.jpg", "order": 6}], "directors": [{"name": "Alfonso Cuar\u00f3n", "department": "Directing", "job": "Director", "credit_id": "52fe4783c3a36847f8139d67", "profile_path": "/3zYO8I24q4q3cJNohCg63V88uWo.jpg", "id": 11218}], "vote_average": 7.7, "runtime": 91}, "49049": {"poster_path": "/71fkYuMVMtdbREh9Mp3gTFmI8Bv.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "IN", "name": "India"}, {"iso_3166_1": "US", "name": "United States of America"}, {"iso_3166_1": "ZA", "name": "South Africa"}], "revenue": 41037742, "overview": "In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn\u2019t as easy as it seems in this explosive adaptation of the hugely popular comic series.", "video": false, "id": 49049, "genres": [{"id": 28, "name": "Action"}, {"id": 878, "name": "Science Fiction"}], "title": "Dredd", "tagline": "Judgement is coming", "vote_count": 854, "homepage": "http://dreddthemovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1343727", "adult": false, "backdrop_path": "/kqKcID44nGtIxhhzmziAX65abRx.jpg", "production_companies": [{"name": "Rena Film", "id": 46506}, {"name": "DNA Films", "id": 284}, {"name": "Reliance BIG Entertainment", "id": 6733}, {"name": "IM Global", "id": 7437}, {"name": "Peach Trees", "id": 46507}], "release_date": "2012-09-21", "popularity": 1.71167621395385, "original_title": "Dredd", "budget": 50000000, "cast": [{"name": "Karl Urban", "character": "Judge Dredd", "id": 1372, "credit_id": "52fe4783c3a36847f8139e4b", "cast_id": 2, "profile_path": "/tHYOUO33K7iaDw8nXyqRvDIkVuM.jpg", "order": 0}, {"name": "Olivia Thirlby", "character": "Anderson", "id": 52442, "credit_id": "52fe4783c3a36847f8139e4f", "cast_id": 3, "profile_path": "/n3UV7ulkrqbY6BJ0RjrNbEam2cy.jpg", "order": 1}, {"name": "Lena Headey", "character": "Ma-Ma", "id": 17286, "credit_id": "52fe4783c3a36847f8139e61", "cast_id": 8, "profile_path": "/6BZiPycIueJ3t0iEozWCbUZleuj.jpg", "order": 2}, {"name": "Wood Harris", "character": "Kay", "id": 65829, "credit_id": "52fe4783c3a36847f8139e6d", "cast_id": 11, "profile_path": "/u88haG6iG7zwV0PTk9tSG5obaeP.jpg", "order": 3}, {"name": "Jason Cope", "character": "Zwirner", "id": 82193, "credit_id": "52fe4783c3a36847f8139e53", "cast_id": 4, "profile_path": "/scn3r86ekzN1RQpsLc6Rhb7D76x.jpg", "order": 4}, {"name": "Domhnall Gleeson", "character": "Clan Techie", "id": 93210, "credit_id": "52fe4783c3a36847f8139e75", "cast_id": 18, "profile_path": "/8mgGT0ydyBlo0mDX59VMO3e13IW.jpg", "order": 5}, {"name": "Rakie Ayola", "character": "Chief Judge", "id": 195575, "credit_id": "52fe4783c3a36847f8139e65", "cast_id": 9, "profile_path": "/vCdshEaPP8lrClphIMwK65Wv2XA.jpg", "order": 6}, {"name": "Deobia Oparei", "character": "Paramedic TJ", "id": 58758, "credit_id": "52fe4783c3a36847f8139e85", "cast_id": 27, "profile_path": "/w5wk0kp74ZRLCBZmIAh1NHqayGP.jpg", "order": 7}, {"name": "Langley Kirkwood", "character": "Judge Lex", "id": 37093, "credit_id": "52fe4783c3a36847f8139e57", "cast_id": 5, "profile_path": "/tjX3GUBhLujP4s3KCM763V7bQge.jpg", "order": 8}, {"name": "Warrick Grier", "character": "Caleb", "id": 107550, "credit_id": "52fe4783c3a36847f8139e69", "cast_id": 10, "profile_path": "/t12KLQgyB9oC86IvfbLB5J2BlZE.jpg", "order": 9}, {"name": "Scott Sparrow", "character": "Japhet", "id": 1134987, "credit_id": "52fe4783c3a36847f8139e71", "cast_id": 12, "profile_path": "/mfuklIvNtqIR4jovnDpjeQsb8z6.jpg", "order": 10}, {"name": "Porteus Xandau", "character": "Driver", "id": 230822, "credit_id": "52fe4783c3a36847f8139ed7", "cast_id": 41, "profile_path": "/cokfPKuMyrfWYPONUcPaSlHujXj.jpg", "order": 11}, {"name": "Joe Vaz", "character": "Big Joe", "id": 137463, "credit_id": "52fe4783c3a36847f8139e79", "cast_id": 19, "profile_path": "/wNW0XpdWxAe2pzVjbRagqdhBEHk.jpg", "order": 12}, {"name": "Nicole Bailey", "character": "Cathy", "id": 200002, "credit_id": "52fe4783c3a36847f8139e7d", "cast_id": 22, "profile_path": "/3HzCjGQQq68fbAG46ClccMs1SbU.jpg", "order": 13}, {"name": "Karl Thaning", "character": "Judge Chan", "id": 209193, "credit_id": "52fe4783c3a36847f8139e81", "cast_id": 25, "profile_path": "/e08CojIbdPtwL2OrnIDyzl8xLWg.jpg", "order": 14}], "directors": [{"name": "Pete Travis", "department": "Directing", "job": "Director", "credit_id": "52fe4783c3a36847f8139e47", "profile_path": "/xHxcow0RqzkTM2vwgfnpOT2FoSe.jpg", "id": 43141}], "vote_average": 6.3, "runtime": 95}, "8090": {"poster_path": "/XX32uGigY8wVMGESal2BtEf8kU.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 32483410, "overview": "Special Agent Jennifer Marsh (Diane Lane) works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out.", "video": false, "id": 8090, "genres": [{"id": 80, "name": "Crime"}, {"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "Untraceable", "tagline": "A cyber killer has finally found the perfect accomplice: You.", "vote_count": 54, "homepage": "http://www.sonypictures.com/movies/untraceable/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0880578", "adult": false, "backdrop_path": "/eXuIPt9I1xuaVddlgzEQRC2EMnJ.jpg", "production_companies": [{"name": "Screen Gems", "id": 3287}, {"name": "Lakeshore Entertainment", "id": 126}, {"name": "Cohen/Pearl Productions", "id": 2397}], "release_date": "2008-01-22", "popularity": 0.442819577498355, "original_title": "Untraceable", "budget": 35000000, "cast": [{"name": "Diane Lane", "character": "Agent Jennifer Marsh", "id": 2882, "credit_id": "52fe4492c3a36847f809dc0f", "cast_id": 1, "profile_path": "/dMjEMuNXIT3g66qv92DOUVGBFC8.jpg", "order": 0}, {"name": "Billy Burke", "character": "Eric Box", "id": 21029, "credit_id": "52fe4492c3a36847f809dc85", "cast_id": 23, "profile_path": "/ahfYSF0scbqlrtRKnUS5ls4Gowk.jpg", "order": 1}, {"name": "Colin Hanks", "character": "Griffin Dowd", "id": 3492, "credit_id": "52fe4492c3a36847f809dc89", "cast_id": 24, "profile_path": "/dzpMYvr5mc28EHyZTWlZhPdzeN5.jpg", "order": 2}, {"name": "Joseph Cross", "character": "Owen Reilly", "id": 33528, "credit_id": "52fe4492c3a36847f809dc8d", "cast_id": 25, "profile_path": "/gDp1fatISVPchNeSLOwhUANXvQy.jpg", "order": 3}, {"name": "Mary Beth Hurt", "character": "Stella Marsh", "id": 54782, "credit_id": "52fe4492c3a36847f809dc91", "cast_id": 26, "profile_path": "/A1Whvk91g7uMZHjRX5rdxJsofeY.jpg", "order": 4}, {"name": "Peter Lewis", "character": "Richard Brooks", "id": 54783, "credit_id": "52fe4492c3a36847f809dc95", "cast_id": 27, "profile_path": "/mUIoV6iig49oUwF6y6iTGbiY4j9.jpg", "order": 5}, {"name": "Perla Haney-Jardine", "character": "Annie Haskins", "id": 6585, "credit_id": "52fe4492c3a36847f809dc99", "cast_id": 28, "profile_path": "/3G3vIBZgZkTzrmvyNiEzOsb5v38.jpg", "order": 6}], "directors": [{"name": "Gregory Hoblit", "department": "Directing", "job": "Director", "credit_id": "52fe4492c3a36847f809dc15", "profile_path": "/8HyVUTApvgRwz9cl11R7R8TBPqh.jpg", "id": 17812}], "vote_average": 5.8, "runtime": 101}, "49051": {"poster_path": "/h1XjBJoWdOh8aegBoVYKgABQZSL.jpg", "production_countries": [{"iso_3166_1": "NZ", "name": "New Zealand"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 1017003568, "overview": "Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.", "video": false, "id": 49051, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 14, "name": "Fantasy"}], "title": "The Hobbit: An Unexpected Journey", "tagline": "From the smallest beginnings come the greatest legends.", "vote_count": 4971, "homepage": "http://www.thehobbit.com/", "belongs_to_collection": {"backdrop_path": "/7wO7MSnP5UcwR2cTHdJFF1vP4Ie.jpg", "poster_path": "/hQghXOjSS2xfzx9XnMyZqt8brCF.jpg", "id": 121938, "name": "The Hobbit Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0903624", "adult": false, "backdrop_path": "/jjAq3tCezdlQduusgtMhpY2XzW0.jpg", "production_companies": [{"name": "Metro-Goldwyn-Mayer (MGM)", "id": 27894}, {"name": "WingNut Films", "id": 11}, {"name": "New Line Cinema", "id": 12}], "release_date": "2012-12-14", "popularity": 5.94318629549635, "original_title": "The Hobbit: An Unexpected Journey", "budget": 250000000, "cast": [{"name": "Ian McKellen", "character": "Gandalf", "id": 1327, "credit_id": "52fe4783c3a36847f8139f93", "cast_id": 6, "profile_path": "/c51mP46oPgAgFf7bFWVHlScZynM.jpg", "order": 0}, {"name": "Martin Freeman", "character": "Bilbo", "id": 7060, "credit_id": "52fe4783c3a36847f8139f87", "cast_id": 3, "profile_path": "/ashlWz2KDQTbo8NPUbVOwcB3zXJ.jpg", "order": 1}, {"name": "Richard Armitage", "character": "Thorin", "id": 30315, "credit_id": "52fe4783c3a36847f8139fa9", "cast_id": 13, "profile_path": "/nxA9EUBaipqb68ZbD5aGcjlT6zE.jpg", "order": 2}, {"name": "Andy Serkis", "character": "Gollum", "id": 1333, "credit_id": "52fe4783c3a36847f8139f8b", "cast_id": 4, "profile_path": "/nQRsxFveJaUIlZ4GYWDe9uJ6u2f.jpg", "order": 3}, {"name": "Cate Blanchett", "character": "Galadriel", "id": 112, "credit_id": "52fe4783c3a36847f8139f83", "cast_id": 2, "profile_path": "/X3CMrI6lkzLdS5ZQqQWeRJkAGU.jpg", "order": 4}, {"name": "Christopher Lee", "character": "Saruman", "id": 113, "credit_id": "52fe4783c3a36847f8139f9b", "cast_id": 8, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 5}, {"name": "Sylvester McCoy", "character": "Radagast", "id": 80112, "credit_id": "52fe4783c3a36847f8139f9f", "cast_id": 10, "profile_path": "/hgM7jEkkwI0HHx3K44UE48gBbfa.jpg", "order": 6}, {"name": "Ian Holm", "character": "Older Bilbo", "id": 65, "credit_id": "52fe4783c3a36847f8139f97", "cast_id": 7, "profile_path": "/uq6Wx7PaLgaw969avH7tLHnSb0Q.jpg", "order": 7}, {"name": "Elijah Wood", "character": "Frodo", "id": 109, "credit_id": "52fe4783c3a36847f8139f8f", "cast_id": 5, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 8}, {"name": "Hugo Weaving", "character": "Elrond", "id": 1331, "credit_id": "52fe4783c3a36847f8139fad", "cast_id": 16, "profile_path": "/3DKJSeTucd7krnxXkwcir6PgT88.jpg", "order": 9}, {"name": "Lee Pace", "character": "Thranduil", "id": 72095, "credit_id": "52fe4783c3a36847f8139fb1", "cast_id": 19, "profile_path": "/93N1awB9SAUgXTejEFCXUDfi6hP.jpg", "order": 10}, {"name": "Conan Stevens", "character": "Azog", "id": 127453, "credit_id": "52fe4783c3a36847f8139fb5", "cast_id": 20, "profile_path": "/8mlrCTSXDInF15w6CO4IYgbPKg7.jpg", "order": 11}, {"name": "Bret McKenzie", "character": "Lindir", "id": 105584, "credit_id": "52fe4783c3a36847f8139fb9", "cast_id": 21, "profile_path": "/tEP4b5bTpSxJUHOYItg5xrZh43F.jpg", "order": 12}, {"name": "Aidan Turner", "character": "Kili", "id": 207558, "credit_id": "52fe4783c3a36847f8139fbd", "cast_id": 22, "profile_path": "/lJFfJeCKRD1h9cvBK6Dla03B42J.jpg", "order": 13}, {"name": "James Nesbitt", "character": "Bofur", "id": 34715, "credit_id": "52fe4783c3a36847f8139fc1", "cast_id": 23, "profile_path": "/n9NorD6bQfFJlW4IcJ6WoGiAKcR.jpg", "order": 14}, {"name": "Graham McTavish", "character": "Dwalin", "id": 95047, "credit_id": "52fe4783c3a36847f8139fc5", "cast_id": 24, "profile_path": "/eqxR4TGXcY0vLLqR5RkfgVXBgrS.jpg", "order": 15}, {"name": "Barry Humphries", "character": "Great Goblin", "id": 22, "credit_id": "52fe4784c3a36847f8139fc9", "cast_id": 25, "profile_path": "/bBXWmZtFbKy6Wzk1fHOCE8j6KfS.jpg", "order": 16}, {"name": "Ken Stott", "character": "Balin", "id": 25136, "credit_id": "52fe4784c3a36847f8139fcd", "cast_id": 26, "profile_path": "/aS2ZLIOYsmL8UQscHEOOFMERI4F.jpg", "order": 17}, {"name": "Jeffrey Thomas", "character": "King Thror", "id": 218563, "credit_id": "52fe4784c3a36847f8139fd1", "cast_id": 28, "profile_path": "/vLO7WJKnAxDV6IBH8fBAmsTnmzI.jpg", "order": 18}, {"name": "Mark Hadlow", "character": "Dori", "id": 81877, "credit_id": "52fe4784c3a36847f8139fd5", "cast_id": 29, "profile_path": "/qNBpe4BKgKrLF6yZrCtCjFMRFJv.jpg", "order": 19}, {"name": "John Callen", "character": "Oin", "id": 534336, "credit_id": "52fe4784c3a36847f8139fd9", "cast_id": 30, "profile_path": "/k6JoHrkyGMH0b13yZxtLKtW1npz.jpg", "order": 20}, {"name": "William Kircher", "character": "Bifur/Tom Troll", "id": 67123, "credit_id": "52fe4784c3a36847f8139fdd", "cast_id": 31, "profile_path": "/pgSkxH8LeJhNWKwG3D5690ZTLbs.jpg", "order": 21}, {"name": "John Bell", "character": "Bain", "id": 126667, "credit_id": "52fe4784c3a36847f813a071", "cast_id": 58, "profile_path": "/8mU0TgK5z15yXGDatbU9O51Ir5g.jpg", "order": 22}, {"name": "Benedict Cumberbatch", "character": "Necromancer", "id": 71580, "credit_id": "52fe4784c3a36847f813a075", "cast_id": 59, "profile_path": "/u4HDP1pGDV4gQZsBgYHKdgfICZz.jpg", "order": 23}, {"name": "Dean O'Gorman", "character": "Fili", "id": 152566, "credit_id": "52fe4784c3a36847f813a079", "cast_id": 60, "profile_path": "/lSXxMaASqm9TfnKaDNaxolEOW3A.jpg", "order": 24}, {"name": "Manu Bennett", "character": "Azog", "id": 41782, "credit_id": "52fe4784c3a36847f813a07d", "cast_id": 61, "profile_path": "/r9P5l3CgpqpEr4ATbv8AMFqOiF.jpg", "order": 25}, {"name": "Jed Brophy", "character": "Nori", "id": 173451, "credit_id": "534106e4c3a36815170013e3", "cast_id": 64, "profile_path": "/xfEiaREY2RJQosyGnGuGDcWONsX.jpg", "order": 26}], "directors": [{"name": "Peter Jackson", "department": "Directing", "job": "Director", "credit_id": "52fe4783c3a36847f8139f7f", "profile_path": "/hTUqZAjH7SHXb0EXEA1I9EoJFnF.jpg", "id": 108}], "vote_average": 6.8, "runtime": 169}, "24480": {"poster_path": "/5M5bg79OV96Vb4O0fDjX5clxASG.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Everyone knows that the stork delivers babies, but where do the storks get the babies from? The answer lies up in the stratosphere, where cloud people sculpt babies from clouds and bring them to life. Gus, a lonely and insecure grey cloud, is a master at creating \"dangerous\" babies. Crocodiles, porcupines, rams and more - Gus's beloved creations are works of art, but more than a handful for his loyal delivery stork partner, Peck. As Gus's creations become more and more rambunctious, Peck's job gets harder and harder. How will Peck manage to handle both his hazardous cargo and his friend's fiery temperament?", "video": false, "id": 24480, "genres": [{"id": 12, "name": "Adventure"}, {"id": 16, "name": "Animation"}, {"id": 35, "name": "Comedy"}, {"id": 14, "name": "Fantasy"}, {"id": 10751, "name": "Family"}], "title": "Partly Cloudy", "tagline": "", "vote_count": 89, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1425244", "adult": false, "backdrop_path": "/xxAgWR8WVBoXDUIopqHNYFxyla6.jpg", "production_companies": [{"name": "Pixar Animation Studios", "id": 3}], "release_date": "2009-05-28", "popularity": 0.398014078413721, "original_title": "Partly Cloudy", "budget": 0, "cast": [{"name": "Tony Fucile", "character": "Gus / Peck / Other males (voice)", "id": 1260745, "credit_id": "52fe4498c3a368484e02bb71", "cast_id": 5, "profile_path": null, "order": 0}, {"name": "Lori Richardson", "character": "Female Cloud / Human Mom / Other females (voice)", "id": 225986, "credit_id": "52fe4498c3a368484e02bb6d", "cast_id": 4, "profile_path": null, "order": 1}], "directors": [{"name": "Peter Sohn", "department": "Directing", "job": "Director", "credit_id": "52fe4498c3a368484e02bb63", "profile_path": "/ouaPg2hdBBXfq8N7HPatvEq3P81.jpg", "id": 21198}], "vote_average": 8.0, "runtime": 5}, "82650": {"poster_path": "/tev1d0E9hkiloecGi038tvTsm3y.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 77112176, "overview": "School is out and Greg is ready for the days of summer, when all his plans go wrong. What on earth is he going to do all summer?", "video": false, "id": 82650, "genres": [{"id": 35, "name": "Comedy"}, {"id": 10751, "name": "Family"}], "title": "Diary of a Wimpy Kid: Dog Days", "tagline": "School's Out for the summer", "vote_count": 79, "homepage": "", "belongs_to_collection": {"backdrop_path": "/hTbw2nLM44eE5m7ZIIXodcoDR1X.jpg", "poster_path": "/4Miizfzuds4ldROTff9vB0Z3EId.jpg", "id": 86110, "name": "Diary of a Wimpy Kid Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2023453", "adult": false, "backdrop_path": "/4mdRyMSLHxeTIwqNLUgQtNxla20.jpg", "production_companies": [{"name": "Fox 2000 Pictures", "id": 711}], "release_date": "2012-08-02", "popularity": 0.46392901657775, "original_title": "Diary of a Wimpy Kid: Dog Days", "budget": 22000000, "cast": [{"name": "Devon Bostick", "character": "Rodrick Heffley", "id": 90498, "credit_id": "52fe48649251416c9108ab9b", "cast_id": 11, "profile_path": "/iTpSh3PUDI6njjgqdAD5dRTmnqg.jpg", "order": 0}, {"name": "Steve Zahn", "character": "Frank Heffley", "id": 18324, "credit_id": "52fe48649251416c9108ab9f", "cast_id": 12, "profile_path": "/tcRHqtdi4wM8hlZ3MjPDWgePp7L.jpg", "order": 1}, {"name": "Peyton List", "character": "Holly Hills", "id": 1254435, "credit_id": "52fe48649251416c9108abbf", "cast_id": 21, "profile_path": "/sZmv5yEKyguVLPgs3EwD8YoxHRB.jpg", "order": 2}, {"name": "Rachael Harris", "character": "Susan Heffley", "id": 46074, "credit_id": "52fe48649251416c9108aba3", "cast_id": 14, "profile_path": "/wrmz6aTM7aFYmd1I12rGWjDtoaf.jpg", "order": 3}, {"name": "Zachary Gordon", "character": "Greg Heffley", "id": 89819, "credit_id": "52fe48649251416c9108aba7", "cast_id": 15, "profile_path": "/9K49YzK3YkICW0KrB2aTPKQZqMI.jpg", "order": 4}, {"name": "Karan Brar", "character": "Chirag Gupta", "id": 111923, "credit_id": "52fe48649251416c9108abab", "cast_id": 16, "profile_path": "/eelNaGrUz5jRyEk6XlH6C1q5pON.jpg", "order": 5}, {"name": "Robert Capron", "character": "Rowley Jefferson", "id": 111922, "credit_id": "52fe48649251416c9108abaf", "cast_id": 17, "profile_path": "/o5iRcG9tYFH4t5NtgVIeMUItwdk.jpg", "order": 6}, {"name": "Laine MacNeil", "character": "Patty Farrell", "id": 84468, "credit_id": "52fe48649251416c9108abb3", "cast_id": 18, "profile_path": "/1CX7wfCXTttRUVwMnfWmHtl9kz1.jpg", "order": 7}, {"name": "Grayson Russell", "character": "Fregley", "id": 111921, "credit_id": "52fe48649251416c9108abb7", "cast_id": 19, "profile_path": "/mgpxDDI7uqhdPgT0VoMSW28dh4y.jpg", "order": 8}, {"name": "Connor Fielding", "character": "Manny Heffley", "id": 858704, "credit_id": "52fe48649251416c9108abbb", "cast_id": 20, "profile_path": null, "order": 9}], "directors": [{"name": "David Bowers", "department": "Directing", "job": "Director", "credit_id": "52fe48639251416c9108ab61", "profile_path": "/ykmfhG9TzUSSW0cNDrBvDz26svV.jpg", "id": 33183}], "vote_average": 5.9, "runtime": 94}, "81836": {"poster_path": "/zGVAVQufbwE5BjU17OBkXM9PWRS.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "IT", "name": "Italy"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 16684352, "overview": "Set in the romantic city of Rome. The intertwining stories of a worker who wakes up to find himself a celebrity, an architect who takes a trip back to the street he lived on as a student, a young couple on their honeymoon, and a frustrated opera director who has a talent for discovering talented singers.", "video": false, "id": 81836, "genres": [{"id": 35, "name": "Comedy"}], "title": "To Rome with Love", "tagline": "", "vote_count": 125, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "it", "name": "Italiano"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1859650", "adult": false, "backdrop_path": "/sGyUqZQZF5IByJW3V5jivIVtHl1.jpg", "production_companies": [{"name": "Mediapro", "id": 12010}, {"name": "Perdido Productions", "id": 12966}, {"name": "Medusa Film", "id": 6246}, {"name": "Gravier Productions", "id": 1824}], "release_date": "2012-07-04", "popularity": 0.475183502465677, "original_title": "To Rome with Love", "budget": 17000000, "cast": [{"name": "Ellen Page", "character": "Shannon", "id": 27578, "credit_id": "52fe482e9251416c910830e1", "cast_id": 3, "profile_path": "/vDunkYxyQPkzx9EwkfSZVCSzBlO.jpg", "order": 0}, {"name": "Woody Allen", "character": "Mark Lovegood", "id": 1243, "credit_id": "52fe482e9251416c910830e5", "cast_id": 4, "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "order": 1}, {"name": "Jesse Eisenberg", "character": "Tyson", "id": 44735, "credit_id": "52fe482e9251416c910830e9", "cast_id": 5, "profile_path": "/c01G88eCpiLLmT4RIWGkr7nm31o.jpg", "order": 2}, {"name": "Pen\u00e9lope Cruz", "character": "Anna", "id": 955, "credit_id": "52fe482e9251416c910830ed", "cast_id": 6, "profile_path": "/dcPSUfxMa791NZvrFiBc3ReDdpU.jpg", "order": 3}, {"name": "Alec Baldwin", "character": "John", "id": 7447, "credit_id": "52fe482e9251416c910830f1", "cast_id": 7, "profile_path": "/i34dh4LKYlNOF67qSPJgzhddzyw.jpg", "order": 4}, {"name": "Roberto Benigni", "character": "Leopoldo", "id": 4818, "credit_id": "52fe482e9251416c910830f5", "cast_id": 8, "profile_path": "/3PTaBUHrSgculvAFD7xbZqZWMo9.jpg", "order": 5}, {"name": "Alison Pill", "character": "Lillian", "id": 17486, "credit_id": "52fe482e9251416c910830f9", "cast_id": 9, "profile_path": "/1jeDJlSfVFoPMCHLkTqsFKLR9Gu.jpg", "order": 6}, {"name": "Alessandra Mastronardi", "character": "Milly", "id": 145326, "credit_id": "52fe482e9251416c910830fd", "cast_id": 10, "profile_path": "/cRSTrcnazaYECQhzozHWjnvklbB.jpg", "order": 7}, {"name": "Riccardo Scamarcio", "character": "Rapinatore hotel", "id": 59270, "credit_id": "52fe482e9251416c91083101", "cast_id": 11, "profile_path": "/zpphrSmdn2TR0F0kbVG5CAGqfxv.jpg", "order": 8}, {"name": "Judy Davis", "character": "Phyllis", "id": 351, "credit_id": "52fe482e9251416c91083105", "cast_id": 12, "profile_path": "/xQMA72T6yz6ebJXv1pCuZC1fDJo.jpg", "order": 9}, {"name": "Ornella Muti", "character": "Pia Fusari", "id": 27163, "credit_id": "52fe482e9251416c91083109", "cast_id": 13, "profile_path": "/5bwQ4mTsGROX3KHtlvEXkFObpRD.jpg", "order": 10}, {"name": "Greta Gerwig", "character": "Sally", "id": 45400, "credit_id": "52fe482e9251416c9108310d", "cast_id": 14, "profile_path": "/nrs80YYOFhj7DDHvlzO7TnyIX4r.jpg", "order": 11}, {"name": "Flavio Parenti", "character": "Michelangelo", "id": 125488, "credit_id": "52fe482e9251416c91083111", "cast_id": 15, "profile_path": "/dyFHHbWuhiukLyaW5rDsmVUzFYL.jpg", "order": 12}, {"name": "Alessandro Tiberi", "character": "Antonio", "id": 210766, "credit_id": "52fe482e9251416c91083115", "cast_id": 16, "profile_path": "/tQRIe0LF3QI83hG3cILbFvV56Us.jpg", "order": 13}, {"name": "Carol Alt", "character": "Carol", "id": 52087, "credit_id": "52fe482e9251416c91083119", "cast_id": 17, "profile_path": "/9hU7AJO7TWgCo7mJJJWhR0wVjkY.jpg", "order": 14}, {"name": "David Pasquesi", "character": "Tim", "id": 74487, "credit_id": "52fe482e9251416c9108311d", "cast_id": 18, "profile_path": "/gdmc0k64Tz1s7mJRVIWKjJJSn1M.jpg", "order": 15}, {"name": "Lynn Swanson", "character": "Ellen", "id": 553696, "credit_id": "52fe482e9251416c91083121", "cast_id": 19, "profile_path": "/fpRL5fvbLufIO2CfQ4jrV6ofnYR.jpg", "order": 16}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe482e9251416c910830d7", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 5.6, "runtime": 112}, "76649": {"poster_path": "/x1QMhNN6dNghhqltcZKBEMuWQ9g.jpg", "production_countries": [{"iso_3166_1": "CA", "name": "Canada"}, {"iso_3166_1": "DE", "name": "Germany"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 108550407, "overview": "Set in 79 A.D., POMPEII tells the epic story of Milo, a slave turned invincible gladiator who finds himself in a race against time to save his true love Cassia, the beautiful daughter of a wealthy merchant who has been unwillingly betrothed to a corrupt Roman Senator. As Mount Vesuvius erupts in a torrent of blazing lava, Milo must fight his way out of the arena in order to save his beloved as the once magnificent Pompeii crumbles around him.", "video": false, "id": 76649, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}, {"id": 36, "name": "History"}, {"id": 10749, "name": "Romance"}], "title": "Pompeii", "tagline": "No warning. No escape.", "vote_count": 409, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1921064", "adult": false, "backdrop_path": "/6Q4GeMo08AOJJos9BzgnutFiZTG.jpg", "production_companies": [{"name": "Don Carmody Productions", "id": 4253}, {"name": "TriStar Pictures", "id": 559}, {"name": "FilmDistrict", "id": 7263}, {"name": "Constantin Film International", "id": 12162}, {"name": "Impact Pictures", "id": 248}], "release_date": "2014-02-21", "popularity": 1.2442139391904, "original_title": "Pompeii", "budget": 130000000, "cast": [{"name": "Kit Harington", "character": "Milo", "id": 239019, "credit_id": "52fe4946c3a368484e1235a3", "cast_id": 3, "profile_path": "/dwRmvQUkddCx6Xi7vDrdnQL4SJ0.jpg", "order": 0}, {"name": "Carrie-Anne Moss", "character": "Aurelia", "id": 530, "credit_id": "52fe4946c3a368484e1235af", "cast_id": 6, "profile_path": "/8iATAc5z5XOKFFARLsvaawa8MTY.jpg", "order": 1}, {"name": "Emily Browning", "character": "Cassia", "id": 70456, "credit_id": "52fe4946c3a368484e12359f", "cast_id": 2, "profile_path": "/tsomiyf6XXbutkpUrjmC8Yrq5mS.jpg", "order": 2}, {"name": "Adewale Akinnuoye-Agbaje", "character": "Atticus", "id": 31164, "credit_id": "52fe4946c3a368484e1235b3", "cast_id": 7, "profile_path": "/n1cRWfPAODjbrjZEK7uSW4cJcmx.jpg", "order": 3}, {"name": "Jessica Lucas", "character": "Ariadne", "id": 51989, "credit_id": "530c60fcc3a3685c0c000d9d", "cast_id": 17, "profile_path": "/kBNLUKEHhnb1XYIeeg3iwbzSoD2.jpg", "order": 4}, {"name": "Jared Harris", "character": "Lucretius", "id": 15440, "credit_id": "52fe4946c3a368484e1235ab", "cast_id": 5, "profile_path": "/r8ZvwQudTs243EIPU1ARPq2D4I8.jpg", "order": 5}, {"name": "Joe Pingue", "character": "Gracecus", "id": 86237, "credit_id": "53039c74c3a3680a3f64a0b9", "cast_id": 14, "profile_path": "/4ePqYUDKEh0Fxa2s7bfzoCpmsCK.jpg", "order": 6}, {"name": "Kiefer Sutherland", "character": "Corvus", "id": 2628, "credit_id": "52fe4946c3a368484e1235a7", "cast_id": 4, "profile_path": "/4YvDfOfD4TgyzDkLGoq76g5BZNe.jpg", "order": 7}, {"name": "Currie Graham", "character": "Bellator", "id": 156590, "credit_id": "53039c82c3a36809fd5f3f82", "cast_id": 15, "profile_path": "/xpHnxXespnis21JyjUYs4uE7HEZ.jpg", "order": 8}, {"name": "Ron Kennell", "character": "The Weasel", "id": 1224669, "credit_id": "53039c0892514161a23488ba", "cast_id": 12, "profile_path": "/6M41eLlFQ3M0gyOHbKj8iRSmbjY.jpg", "order": 9}, {"name": "Rebecca Eady", "character": "Milo's Mother", "id": 1294155, "credit_id": "53039bed9251411cf006a9c1", "cast_id": 11, "profile_path": "/kytYJuqyZyRfdPkJbPC3fbULGsG.jpg", "order": 10}, {"name": "Sasha Roiz", "character": "Proculus", "id": 6071, "credit_id": "53039c1692514121a161f138", "cast_id": 13, "profile_path": "/rfYj0KUt5uX2pYqtQYTMeH7WbH9.jpg", "order": 11}, {"name": "Jean Frenette", "character": "Boss Slaver", "id": 92234, "credit_id": "53039c8fc3a3680a3f64a28c", "cast_id": 16, "profile_path": "/6hvHdlR9Hjb7RjgbJ2AjmlLmjVN.jpg", "order": 12}], "directors": [{"name": "Paul W.S. Anderson", "department": "Directing", "job": "Director", "credit_id": "52fe4946c3a368484e12359b", "profile_path": "/s0JuUAQtfBha5gqGWto2JcGBtbG.jpg", "id": 4014}], "vote_average": 5.3, "runtime": 105}, "229297": {"poster_path": "/pSakqsaqifEbgY2Q8EhesyFWdGt.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Set in the 1920s French Riviera, a master magician is commissioned to try and expose a psychic as a fraud.", "video": false, "id": 229297, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}, {"id": 10749, "name": "Romance"}], "title": "Magic in the Moonlight", "tagline": "", "vote_count": 156, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt2870756", "adult": false, "backdrop_path": "/4mDvMIGV4x8UKpLFCIoKkfA9Ro0.jpg", "production_companies": [{"name": "Perdido Productions", "id": 12966}, {"name": "Harbor Picture Company", "id": 23716}], "release_date": "2014-07-25", "popularity": 1.06483895842764, "original_title": "Magic in the Moonlight", "budget": 0, "cast": [{"name": "Colin Firth", "character": "Stanley Crawford", "id": 5472, "credit_id": "52fe4eea9251416c75166c91", "cast_id": 2, "profile_path": "/kbs5HzE2KjzbKiGYQw2aXFpdvaX.jpg", "order": 0}, {"name": "Emma Stone", "character": "Sophie Baker", "id": 54693, "credit_id": "52fe4eea9251416c75166c8d", "cast_id": 1, "profile_path": "/lPyR5mKhdqFmgxaCMJK6w3g1OAT.jpg", "order": 1}, {"name": "Hamish Linklater", "character": "Brice", "id": 184581, "credit_id": "52fe4eea9251416c75166c99", "cast_id": 4, "profile_path": "/l6nAyT4ZqNq7fOAfB0I9Qi4xpzH.jpg", "order": 2}, {"name": "Marcia Gay Harden", "character": "Mrs. Baker", "id": 4726, "credit_id": "52fe4eea9251416c75166c95", "cast_id": 3, "profile_path": "/9TYI6LAu4S0vkn47RjLLgFrhtrc.jpg", "order": 3}, {"name": "Jacki Weaver", "character": "Grace", "id": 67837, "credit_id": "52fe4eea9251416c75166c9d", "cast_id": 5, "profile_path": "/8VCKF5s8BFeVhEUjv5qZaZ3B8O9.jpg", "order": 4}, {"name": "Erica Leerhsen", "character": "Caroline", "id": 57514, "credit_id": "538e1748c3a368275300007c", "cast_id": 10, "profile_path": "/qI82zKaMmoSsWmjvbvWuNN0lWJy.jpg", "order": 5}, {"name": "Eileen Atkins", "character": "Aunt Vanessa", "id": 20300, "credit_id": "52fe4eea9251416c75166ca1", "cast_id": 6, "profile_path": "/5deq7HEVtilYGT6FYHWtlIuiXLI.jpg", "order": 6}, {"name": "Simon McBurney", "character": "Howard Burkan", "id": 16358, "credit_id": "538e1741c3a3682760000072", "cast_id": 9, "profile_path": "/uBVByaTw7uea7XkYEULJNEkK4HU.jpg", "order": 7}, {"name": "Catherine McCormack", "character": "Olivia", "id": 2462, "credit_id": "5484dc879251416a63000f61", "cast_id": 17, "profile_path": "/m94A5Jl4NsW58EbONSOOuJjoP9S.jpg", "order": 8}, {"name": "Jeremy Shamos", "character": "George", "id": 155222, "credit_id": "538e1751c3a3682760000074", "cast_id": 11, "profile_path": "/xZSJqN8pBNDX7dwXavI4DUOYBEn.jpg", "order": 9}, {"name": "Antonia Clarke", "character": "Wei Ling Soo's Assistant", "id": 1278555, "credit_id": "54c641e9c3a368789b00a33d", "cast_id": 18, "profile_path": "/pIEcwcJM4izHP4JFOkQcgniJzyK.jpg", "order": 10}, {"name": "Natasha Andrews", "character": "Wei Ling Soo's Assistant", "id": 236622, "credit_id": "54c6446a9251412ece003abf", "cast_id": 19, "profile_path": "/dp5hKPAZY8xWp3eFZYPDSXdGAnV.jpg", "order": 11}, {"name": "Val\u00e9rie Beaulieu", "character": "Wei Ling Soo's Assistant", "id": 1418841, "credit_id": "54c64516c3a368789b00a391", "cast_id": 20, "profile_path": null, "order": 12}, {"name": "Peter Wollasch", "character": "Stage Manager", "id": 1418845, "credit_id": "54c64686c3a368792900a540", "cast_id": 21, "profile_path": "/3dgL49UJoGNfvVTSsSRnfz1iVFi.jpg", "order": 13}, {"name": "J\u00fcrgen Zwingel", "character": "Backstage Fan", "id": 1418852, "credit_id": "54c647bac3a3682c3c0017fb", "cast_id": 22, "profile_path": "/qSROW6xMCc0FMvCaGqnp656YyI5.jpg", "order": 14}, {"name": "Wolfgang Pissors", "character": "Backstage Fan", "id": 1416230, "credit_id": "54c6494e9251414cb200171b", "cast_id": 23, "profile_path": "/4X4xFXuQ3M9RdXBb4CvefholXbE.jpg", "order": 15}, {"name": "S\u00e9bastien Siroux", "character": "Backstage Fan", "id": 1418859, "credit_id": "54c64a04c3a3682c3c00185d", "cast_id": 24, "profile_path": null, "order": 16}, {"name": "Ute Lemper", "character": "Cabaret Singer", "id": 29408, "credit_id": "54c6695f9251414cb2001a9b", "cast_id": 25, "profile_path": "/e8sVrg3B6sGJesrWRnB2i54XvkV.jpg", "order": 17}, {"name": "Didier Muller", "character": "Butler", "id": 1418983, "credit_id": "54c6a445925141679c0000e3", "cast_id": 26, "profile_path": null, "order": 18}, {"name": "Ronald Alphonse", "character": "Jazz Musician", "id": 1418992, "credit_id": "54c6a608925141679100011d", "cast_id": 27, "profile_path": null, "order": 19}, {"name": "Ronald Baker", "character": "Jazz Musician", "id": 1418993, "credit_id": "54c6a647c3a36874ac0000fa", "cast_id": 28, "profile_path": null, "order": 20}, {"name": "Kelly Keto", "character": "Jazz Musician", "id": 1418994, "credit_id": "54c6a67bc3a36874bf000129", "cast_id": 29, "profile_path": null, "order": 21}, {"name": "Olivier Marchevet", "character": "Jazz Musician", "id": 1418995, "credit_id": "54c6a6b5c3a36874bc000107", "cast_id": 30, "profile_path": null, "order": 22}, {"name": "Geroges Edouard Nouel", "character": "Jazz Musician", "id": 1418996, "credit_id": "54c6a6efc3a36874bc00010f", "cast_id": 31, "profile_path": null, "order": 23}, {"name": "Mark Sims", "character": "Jazz Musician", "id": 1418997, "credit_id": "54c6a72b9251416787000113", "cast_id": 32, "profile_path": null, "order": 24}, {"name": "Rudolf Krause", "character": "Reporter", "id": 49702, "credit_id": "54c7cec2925141678e00454e", "cast_id": 33, "profile_path": "/bSQ6HNyzZ2Gx1UgItQBo3Sba63Y.jpg", "order": 25}, {"name": "Patrick Zard", "character": "Reporter", "id": 1351859, "credit_id": "54c7d099c3a368709000048e", "cast_id": 34, "profile_path": "/4ujJamjrTzPZAYNZFQ0Bz3Ufy39.jpg", "order": 26}, {"name": "Pedro Chomnalez", "character": "Reporter", "id": 1419293, "credit_id": "54c7d0c592514167890042e4", "cast_id": 35, "profile_path": null, "order": 27}, {"name": "Jessica Forde", "character": "Reporter", "id": 35918, "credit_id": "54c7d282925141679c0045bb", "cast_id": 36, "profile_path": "/eM2tgKgBXy2orG1NL1J3xdAONTl.jpg", "order": 28}, {"name": "Paul Bandey", "character": "Reporter", "id": 1237652, "credit_id": "54c7d3b1c3a3683f7d003d4a", "cast_id": 37, "profile_path": "/tbIFAXqHo8mXAm51lomBXVIJizR.jpg", "order": 29}, {"name": "Lionel Abelanski", "character": "Doctor", "id": 7278, "credit_id": "54c7d40d925141678900432a", "cast_id": 38, "profile_path": "/kxJtVQFBm7HTaSSM940AMWDZEQC.jpg", "order": 30}], "directors": [{"name": "Woody Allen", "department": "Directing", "job": "Director", "credit_id": "52fe4eea9251416c75166ca7", "profile_path": "/wpcOUlaszvJoVRf1yLbDtu7u4FI.jpg", "id": 1243}], "vote_average": 6.3, "runtime": 97}, "16307": {"poster_path": "/9kHTypiwFGjqa6N4oT8fv3lB3VW.jpg", "production_countries": [{"iso_3166_1": "GB", "name": "United Kingdom"}], "revenue": 0, "overview": "Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.", "video": false, "id": 16307, "genres": [{"id": 27, "name": "Horror"}, {"id": 9648, "name": "Mystery"}, {"id": 53, "name": "Thriller"}], "title": "The Wicker Man", "tagline": "Flesh to touch... Flesh to burn! Don't keep the Wicker Man waiting!", "vote_count": 68, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070917", "adult": false, "backdrop_path": "/pCDHiLbKwvbaJEEtCMSwRSRx7TK.jpg", "production_companies": [{"name": "British Lion Film Corporation", "id": 660}], "release_date": "1973-12-01", "popularity": 0.211538818468829, "original_title": "The Wicker Man", "budget": 0, "cast": [{"name": "Edward Woodward", "character": "Sergeant Howie", "id": 39188, "credit_id": "52fe46c39251416c75082af3", "cast_id": 2, "profile_path": "/7fjj2SwxZ3gev9JPwYfVpgoeUFR.jpg", "order": 0}, {"name": "Christopher Lee", "character": "Lord Summerisle", "id": 113, "credit_id": "52fe46c39251416c75082af7", "cast_id": 3, "profile_path": "/3Pj0Zt1x9fwBrGGLe6DRGj8Ymmx.jpg", "order": 1}, {"name": "Britt Ekland", "character": "Willow", "id": 10341, "credit_id": "52fe46c39251416c75082afb", "cast_id": 4, "profile_path": "/euypp72CwsKq4nOUjoBzDqtvfsI.jpg", "order": 2}, {"name": "Diane Cilento", "character": "Miss Rose", "id": 45467, "credit_id": "52fe46c39251416c75082aff", "cast_id": 5, "profile_path": "/A4Pl3bPh7JltbhXraK0R1JAK6o8.jpg", "order": 3}, {"name": "Ingrid Pitt", "character": "Librarian", "id": 83739, "credit_id": "52fe46c39251416c75082b03", "cast_id": 6, "profile_path": "/dlFxz3UkLq3EjV0WClzbcfEzYXu.jpg", "order": 4}, {"name": "Lindsay Kemp", "character": "Alder MacGreagor", "id": 119942, "credit_id": "52fe46c39251416c75082b07", "cast_id": 7, "profile_path": null, "order": 5}, {"name": "Russell Waters", "character": "Harbour Master", "id": 114837, "credit_id": "52fe46c39251416c75082b0b", "cast_id": 8, "profile_path": null, "order": 6}, {"name": "Robin Hardy", "character": "Minister (uncredited)", "id": 80261, "credit_id": "52fe46c39251416c75082b15", "cast_id": 12, "profile_path": "/qpaluWgurG8TbCT05OW18aum39b.jpg", "order": 7}, {"name": "Aubrey Morris", "character": "Old Gardener / Gravedigger", "id": 2278, "credit_id": "52fe46c39251416c75082b19", "cast_id": 14, "profile_path": null, "order": 8}, {"name": "Irene Sunters", "character": "May Morrison", "id": 206590, "credit_id": "52fe46c39251416c75082b1d", "cast_id": 15, "profile_path": "/85U9xZEJlYsqYFlbxoOdwolnVL1.jpg", "order": 9}, {"name": "Walter Carr", "character": "School Master", "id": 1119550, "credit_id": "52fe46c39251416c75082b21", "cast_id": 16, "profile_path": null, "order": 10}, {"name": "Roy Boyd", "character": "Broome", "id": 156387, "credit_id": "52fe46c39251416c75082b25", "cast_id": 17, "profile_path": null, "order": 11}], "directors": [{"name": "Robin Hardy", "department": "Directing", "job": "Director", "credit_id": "52fe46c39251416c75082aef", "profile_path": "/qpaluWgurG8TbCT05OW18aum39b.jpg", "id": 80261}], "vote_average": 6.7, "runtime": 99}, "41733": {"poster_path": "/88m6HPueDnDnuCGwDa2BtA9sK8m.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 211714982, "overview": "Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the \"no-fly\" list. Peter embarks on a terrifying journey when he accepts a ride from actor Ethan Tremblay.", "video": false, "id": 41733, "genres": [{"id": 35, "name": "Comedy"}, {"id": 18, "name": "Drama"}], "title": "Due Date", "tagline": "Leave Your Comfort Zone", "vote_count": 479, "homepage": "http://duedatemovie.warnerbros.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "es", "name": "Espa\u00f1ol"}], "imdb_id": "tt1231583", "adult": false, "backdrop_path": "/oNeqMgCr8FgH3CqioA420utgdT5.jpg", "production_companies": [{"name": "Warner Bros.", "id": 6194}, {"name": "Legendary Pictures", "id": 923}, {"name": "Green Hat Films", "id": 3527}], "release_date": "2010-11-04", "popularity": 1.09139055140524, "original_title": "Due Date", "budget": 65000000, "cast": [{"name": "Zach Galifianakis", "character": "Ethan Tremblay", "id": 58225, "credit_id": "52fe45dac3a36847f80de231", "cast_id": 6, "profile_path": "/xZo7qB575ssksOhSqfrs6FVqtPR.jpg", "order": 0}, {"name": "Robert Downey Jr.", "character": "Peter Highman", "id": 3223, "credit_id": "52fe45dac3a36847f80de241", "cast_id": 18, "profile_path": "/r7WLn4Kbnqb6oJ8TmSI0e4LkWTj.jpg", "order": 1}, {"name": "Michelle Monaghan", "character": "Sarah Highman", "id": 11705, "credit_id": "52fe45dac3a36847f80de235", "cast_id": 8, "profile_path": "/9W7xBcdBeFjoZVCwP2iROk1jtkV.jpg", "order": 2}, {"name": "Jamie Foxx", "character": "Darryl", "id": 134, "credit_id": "52fe45dac3a36847f80de23d", "cast_id": 10, "profile_path": "/1yr8Pv1tSWnQkCwDLrzUIzZVurM.jpg", "order": 3}, {"name": "Juliette Lewis", "character": "Heidi", "id": 3196, "credit_id": "52fe45dac3a36847f80de239", "cast_id": 9, "profile_path": "/eeEx3v5ElBHvlrJjULlj5I3EpPF.jpg", "order": 4}, {"name": "Danny McBride", "character": "Lonnie", "id": 62862, "credit_id": "52fe45dac3a36847f80de245", "cast_id": 19, "profile_path": "/6lrC5SvqY5hTXH9nYw7veErjrpa.jpg", "order": 5}, {"name": "RZA", "character": "Airport Screener", "id": 150, "credit_id": "52fe45dac3a36847f80de249", "cast_id": 20, "profile_path": "/v5bwcyzUWVqjmczWu4PrdwnL6t6.jpg", "order": 6}, {"name": "Matt Walsh", "character": "TSA Agent", "id": 59841, "credit_id": "52fe45dac3a36847f80de24d", "cast_id": 21, "profile_path": "/jJ7FIH1rjOUr2L7jO41Tzt757O.jpg", "order": 7}, {"name": "Brody Stevens", "character": "Limo Driver", "id": 142373, "credit_id": "52fe45dac3a36847f80de251", "cast_id": 22, "profile_path": "/dzypgW3rNwGImzyKeOlZg8Olhwi.jpg", "order": 8}, {"name": "Jakob Ulrich", "character": "Patrick", "id": 1288866, "credit_id": "52fe45dac3a36847f80de255", "cast_id": 23, "profile_path": null, "order": 9}, {"name": "Naiia Ulrich", "character": "Alex", "id": 1288867, "credit_id": "52fe45dac3a36847f80de259", "cast_id": 24, "profile_path": null, "order": 10}, {"name": "Todd Phillips", "character": "Barry", "id": 57130, "credit_id": "52fe45dac3a36847f80de25d", "cast_id": 25, "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "order": 11}, {"name": "Bobby Tisdale", "character": "Carl", "id": 1241324, "credit_id": "52fe45dac3a36847f80de261", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Nathalie Fay", "character": "Flight Attendant", "id": 142375, "credit_id": "52fe45dac3a36847f80de269", "cast_id": 28, "profile_path": "/iPxcnlMUgfT2bKmVOX4ZtM3WH1u.jpg", "order": 14}, {"name": "Sharon Morris", "character": "Airport X-Ray", "id": 142374, "credit_id": "54ed839e9251413ae8000e6c", "cast_id": 29, "profile_path": "/fC9nUwBut9uLnGwMxHWHhSZcJ4t.jpg", "order": 15}], "directors": [{"name": "Todd Phillips", "department": "Directing", "job": "Director", "credit_id": "52fe45dac3a36847f80de215", "profile_path": "/427q515P1ppOrJrQmQwxj16zZZ6.jpg", "id": 57130}], "vote_average": 6.2, "runtime": 95}, "16320": {"poster_path": "/8KWRN6NhwbYupwky780G2dgD5k3.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 38869464, "overview": "When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything - or anyone - to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But, the greatest danger of all may be on their ship.", "video": false, "id": 16320, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 878, "name": "Science Fiction"}, {"id": 53, "name": "Thriller"}], "title": "Serenity", "tagline": "Can't stop the signal.", "vote_count": 421, "homepage": "http://www.serenitymovie.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}, {"iso_639_1": "zh", "name": "\u4e2d\u56fd"}], "imdb_id": "tt0379786", "adult": false, "backdrop_path": "/424MxHQe5Hfu92hTeRvZb5Giv0X.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Barry Mendel Productions", "id": 17032}], "release_date": "2005-09-30", "popularity": 0.854420967278747, "original_title": "Serenity", "budget": 39000000, "cast": [{"name": "Nathan Fillion", "character": "Mal", "id": 51797, "credit_id": "52fe46c59251416c75082fb7", "cast_id": 3, "profile_path": "/B7VTVtnKyFk0AtYjEbqzBQlPec.jpg", "order": 0}, {"name": "Gina Torres", "character": "Zoe", "id": 9576, "credit_id": "52fe46c59251416c75082fbb", "cast_id": 4, "profile_path": "/z43hy1X1vRD26vNDh0lzxg1rcBl.jpg", "order": 1}, {"name": "Alan Tudyk", "character": "Wash", "id": 21088, "credit_id": "52fe46c59251416c75082fbf", "cast_id": 5, "profile_path": "/6QuMtbD8kmhpwWhFKfNzEvHRLOu.jpg", "order": 2}, {"name": "Morena Baccarin", "character": "Inara", "id": 54882, "credit_id": "52fe46c59251416c75082fe7", "cast_id": 12, "profile_path": "/gUG9fnudV5Ev1MIr3adngn1GuZJ.jpg", "order": 3}, {"name": "Adam Baldwin", "character": "Jayne", "id": 2059, "credit_id": "52fe46c59251416c75082feb", "cast_id": 13, "profile_path": "/w76VLhGjRELFkETeFF0iPMJO9eJ.jpg", "order": 4}, {"name": "Jewel Staite", "character": "Kaylee", "id": 72092, "credit_id": "52fe46c59251416c75082fef", "cast_id": 14, "profile_path": "/cCXbnCH66Sk1ELGs3gSmXKpKnXq.jpg", "order": 5}, {"name": "Sean Maher", "character": "Simon", "id": 55148, "credit_id": "52fe46c59251416c75082ff3", "cast_id": 15, "profile_path": "/aycbrfFLcBTUrP2p26QwRaoFWo3.jpg", "order": 6}, {"name": "Summer Glau", "character": "River", "id": 54881, "credit_id": "52fe46c59251416c75082ff7", "cast_id": 16, "profile_path": "/rjGaep6Y79syXn4lzpRt299BuY9.jpg", "order": 7}, {"name": "Ron Glass", "character": "Shepherd Book", "id": 74570, "credit_id": "52fe46c59251416c75083001", "cast_id": 18, "profile_path": "/4OBVfJUbWo6vhnKkwGu6Qq3r3sf.jpg", "order": 8}, {"name": "Chiwetel Ejiofor", "character": "The Operative", "id": 5294, "credit_id": "52fe46c59251416c75083005", "cast_id": 19, "profile_path": "/fwaEgwYJdzGyBmGcHiH13vobQii.jpg", "order": 9}, {"name": "David Krumholtz", "character": "Mr. Universe", "id": 38582, "credit_id": "52fe46c59251416c75083009", "cast_id": 20, "profile_path": "/5171elOp1qFxf9c8DkpeyhHBB6d.jpg", "order": 10}, {"name": "Michael Hitchcock", "character": "Dr. Mathias", "id": 75463, "credit_id": "52fe46c59251416c7508300d", "cast_id": 21, "profile_path": "/6OuyZXfWMJ82c96VHOOLU1xFPG0.jpg", "order": 11}, {"name": "Sarah Paulson", "character": "Dr. Caron", "id": 34490, "credit_id": "52fe46c59251416c75083011", "cast_id": 22, "profile_path": "/v8NuPMfw0QSSpgeMuJp12Ijd52M.jpg", "order": 12}, {"name": "Yan Feldman", "character": "Mingo", "id": 80426, "credit_id": "52fe46c59251416c75083015", "cast_id": 23, "profile_path": "/v2iA8zjFAKCZ5kEMd3xj4mIOWLm.jpg", "order": 13}, {"name": "Rafael Feldman", "character": "Fanty", "id": 80427, "credit_id": "52fe46c59251416c75083019", "cast_id": 24, "profile_path": null, "order": 14}, {"name": "Nectar Rose", "character": "Lenore", "id": 36137, "credit_id": "52fe46c59251416c7508301d", "cast_id": 25, "profile_path": "/rT6AOnYLiGHA4ln71cWYU1MKKpZ.jpg", "order": 15}, {"name": "Tamara Taylor", "character": "Teacher", "id": 39464, "credit_id": "52fe46c59251416c75083021", "cast_id": 26, "profile_path": "/v1h1XzjYfE1OP9si32ZTf1tCfid.jpg", "order": 16}, {"name": "Glenn Howerton", "character": "Lilac Young Tough", "id": 77870, "credit_id": "52fe46c59251416c75083025", "cast_id": 27, "profile_path": "/jccwzHfPbzv87iZ7YTVphQx7BTg.jpg", "order": 17}, {"name": "Hunter Ansley Wryn", "character": "Young River", "id": 80428, "credit_id": "52fe46c59251416c75083029", "cast_id": 28, "profile_path": "/mPfNoV3BS6kA6VSM0oyqAn67P4a.jpg", "order": 18}, {"name": "Logan O'Brien", "character": "Boy Student", "id": 80429, "credit_id": "52fe46c59251416c7508302d", "cast_id": 29, "profile_path": null, "order": 19}, {"name": "Erik Erotas", "character": "Boy Student", "id": 80430, "credit_id": "52fe46c59251416c75083031", "cast_id": 30, "profile_path": null, "order": 20}, {"name": "Demetra Raven", "character": "Girl Student", "id": 80431, "credit_id": "52fe46c59251416c75083035", "cast_id": 31, "profile_path": null, "order": 21}, {"name": "Jessica Huang", "character": "Girl Student", "id": 80432, "credit_id": "52fe46c59251416c75083039", "cast_id": 32, "profile_path": null, "order": 22}, {"name": "Marley S. McClean", "character": "Girl Student", "id": 80433, "credit_id": "52fe46c59251416c7508303d", "cast_id": 33, "profile_path": null, "order": 23}, {"name": "Scott Kinworthy", "character": "Ensign", "id": 80434, "credit_id": "52fe46c59251416c75083041", "cast_id": 34, "profile_path": null, "order": 24}, {"name": "Erik Weiner", "character": "Helmsman", "id": 80435, "credit_id": "52fe46c59251416c75083045", "cast_id": 35, "profile_path": null, "order": 25}, {"name": "Conor O'Brien", "character": "Lab Technician", "id": 80436, "credit_id": "52fe46c59251416c75083049", "cast_id": 36, "profile_path": null, "order": 26}, {"name": "Peter James Smith", "character": "Lab Technician", "id": 80437, "credit_id": "52fe46c59251416c7508304d", "cast_id": 37, "profile_path": null, "order": 27}, {"name": "Weston Nathanson", "character": "Trade Agent", "id": 80438, "credit_id": "52fe46c59251416c75083051", "cast_id": 38, "profile_path": null, "order": 28}, {"name": "Carrie 'CeCe' Cline", "character": "Young Female Intern", "id": 80439, "credit_id": "52fe46c59251416c75083055", "cast_id": 39, "profile_path": null, "order": 29}, {"name": "Chuck O'Neil", "character": "Vault Guard", "id": 80440, "credit_id": "52fe46c59251416c75083059", "cast_id": 40, "profile_path": null, "order": 30}, {"name": "Amy Wieczorek", "character": "Lilac Mom", "id": 80441, "credit_id": "52fe46c59251416c7508305d", "cast_id": 41, "profile_path": null, "order": 31}, {"name": "Tristan Jarred", "character": "Lilac Son", "id": 80442, "credit_id": "52fe46c59251416c75083061", "cast_id": 42, "profile_path": "/uBzU4KJLTLWBT63Z0GoRx3PIB2o.jpg", "order": 32}, {"name": "Elaine Mani Lee", "character": "Fan Dancer", "id": 80443, "credit_id": "52fe46c59251416c75083065", "cast_id": 43, "profile_path": null, "order": 33}, {"name": "Terrence Hardy Jr.", "character": "Mining Camp Boy", "id": 61305, "credit_id": "52fe46c59251416c75083069", "cast_id": 44, "profile_path": null, "order": 34}, {"name": "Brian O'Hare", "character": "Alliance Pilot", "id": 80444, "credit_id": "52fe46c59251416c7508306d", "cast_id": 45, "profile_path": null, "order": 35}, {"name": "Ryan Tasz", "character": "Black Room Soldier", "id": 80445, "credit_id": "52fe46c59251416c75083071", "cast_id": 46, "profile_path": null, "order": 36}, {"name": "Colin Patrick Lynch", "character": "Black Room Soldier", "id": 56459, "credit_id": "52fe46c59251416c75083075", "cast_id": 47, "profile_path": null, "order": 37}, {"name": "Terrell Tilford", "character": "News Anchor", "id": 80446, "credit_id": "52fe46c59251416c75083079", "cast_id": 48, "profile_path": null, "order": 38}, {"name": "Joshua Michael Kwiat", "character": "Slovenly Beaumonde Man", "id": 80447, "credit_id": "52fe46c59251416c7508307d", "cast_id": 49, "profile_path": null, "order": 39}, {"name": "Antonio Rufino", "character": "Bartender", "id": 80448, "credit_id": "52fe46c59251416c75083081", "cast_id": 50, "profile_path": null, "order": 40}, {"name": "Linda Wang", "character": "Chinese snake dancer", "id": 43470, "credit_id": "52fe46c59251416c75083085", "cast_id": 51, "profile_path": null, "order": 41}, {"name": "Mark Winn", "character": "Futuristic Worker", "id": 80449, "credit_id": "52fe46c59251416c75083089", "cast_id": 52, "profile_path": null, "order": 42}], "directors": [{"name": "Joss Whedon", "department": "Directing", "job": "Director", "credit_id": "52fe46c59251416c75082fad", "profile_path": "/n2x16sVDgj46PabFgJ0jvgjqxWl.jpg", "id": 12891}], "vote_average": 7.3, "runtime": 119}, "12279": {"poster_path": "/tethGDyocmatW6Li1NcUBXQo6Oo.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 0, "overview": "Carmen's caught in a virtual reality game designed by the Kids' new nemesis, the Toymaker (Stallone). It's up to Juni to save his sister, and ultimately the world.", "video": false, "id": 12279, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 35, "name": "Comedy"}, {"id": 878, "name": "Science Fiction"}, {"id": 10751, "name": "Family"}], "title": "Spy Kids 3-D: Game Over", "tagline": "", "vote_count": 114, "homepage": "", "belongs_to_collection": {"backdrop_path": "/oxjNAfQJ1OrySttZSeLayky6T9k.jpg", "poster_path": "/yqpS8N5w7VYo3gmFtHsGwHTV4Td.jpg", "id": 86486, "name": "Spy Kids Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0338459", "adult": false, "backdrop_path": "/7c2JZCf4pYYy5GNtvfFyGBYXLWp.jpg", "production_companies": [{"name": "Dimension Films", "id": 7405}, {"name": "SF Film", "id": 5674}], "release_date": "2003-07-25", "popularity": 0.999842351087652, "original_title": "Spy Kids 3-D: Game Over", "budget": 38000000, "cast": [{"name": "Antonio Banderas", "character": "Gregorio Cortez", "id": 3131, "credit_id": "52fe44d89251416c75042f39", "cast_id": 1, "profile_path": "/85197jARsr06xQ84NhP9YoBL3sR.jpg", "order": 0}, {"name": "Carla Gugino", "character": "Ingrid Cortez", "id": 17832, "credit_id": "52fe44d89251416c75042f3d", "cast_id": 2, "profile_path": "/rEnVfc4Xb0M5T1QvtN1k2xJ8RbX.jpg", "order": 1}, {"name": "Alexa PenaVega", "character": "Carmen Cortez", "id": 57674, "credit_id": "52fe44d89251416c75042f41", "cast_id": 3, "profile_path": "/vPJOYBx5FRsA4YfUjUKNeF7KCNm.jpg", "order": 2}, {"name": "Daryl Sabara", "character": "Juni Cortez", "id": 57675, "credit_id": "52fe44d89251416c75042f45", "cast_id": 4, "profile_path": "/bnCvGSU6v6lt0NDaO68Yb5T59wE.jpg", "order": 3}, {"name": "Sylvester Stallone", "character": "Toymaker", "id": 16483, "credit_id": "52fe44d89251416c75042f49", "cast_id": 5, "profile_path": "/gnmwOa46C2TP35N7ARSzboTdx2u.jpg", "order": 4}, {"name": "Salma Hayek", "character": "Cesca Giggles", "id": 3136, "credit_id": "52fe44d89251416c75042f4d", "cast_id": 6, "profile_path": "/zMmEPWSqpACzsP5TnLdETV8j7eW.jpg", "order": 5}, {"name": "Ricardo Montalban", "character": "Grandfather", "id": 1793, "credit_id": "52fe44d89251416c75042f8d", "cast_id": 17, "profile_path": "/cjVYY35mjqZsno1qECjTr4lzqbS.jpg", "order": 6}, {"name": "Holland Taylor", "character": "Grandmother", "id": 11318, "credit_id": "52fe44d89251416c75042f91", "cast_id": 18, "profile_path": "/o55D8dYKkA7G3w0Zu1c0iVDuxto.jpg", "order": 7}, {"name": "Mike Judge", "character": "Donnagon Giggles", "id": 17403, "credit_id": "52fe44d89251416c75042f95", "cast_id": 19, "profile_path": "/kIgpmk3JFwUAg0PULIsUulg8TEP.jpg", "order": 8}, {"name": "Matt O'Leary", "character": "Gary Giggles", "id": 71467, "credit_id": "52fe44d89251416c75042f99", "cast_id": 20, "profile_path": "/8VIQCPLlkqT5DRVrv5dr1aHt1rX.jpg", "order": 9}, {"name": "Emily Osment", "character": "Gerti Giggles", "id": 82785, "credit_id": "52fe44d89251416c75042f9d", "cast_id": 21, "profile_path": "/7Uhb0bJp7v3sqnSBkxXjya8UeXO.jpg", "order": 10}, {"name": "Ryan Pinkston", "character": "Arnold", "id": 78341, "credit_id": "52fe44d89251416c75042fa1", "cast_id": 22, "profile_path": "/cxQOEi5yv8QVoAZGJcPX99Chk7F.jpg", "order": 11}, {"name": "Robert Vito", "character": "Rez", "id": 64775, "credit_id": "52fe44d89251416c75042fa5", "cast_id": 23, "profile_path": null, "order": 12}, {"name": "Bobby Edner", "character": "Francis", "id": 151385, "credit_id": "52fe44d89251416c75042fa9", "cast_id": 24, "profile_path": "/lNuwv1mcwqCC7VWzTWz3sHNrvYS.jpg", "order": 13}, {"name": "Courtney Jines", "character": "Demetra", "id": 84481, "credit_id": "52fe44d89251416c75042fad", "cast_id": 25, "profile_path": "/pVWtDyaHL3beHkYCrk26zQeLBpP.jpg", "order": 14}, {"name": "Cheech Marin", "character": "Felix Gumm", "id": 11159, "credit_id": "52fe44d89251416c75042fb1", "cast_id": 26, "profile_path": "/lNtiBKQO4QzKjhBXq4fxm5Q4vDg.jpg", "order": 15}, {"name": "Danny Trejo", "character": "Machete", "id": 11160, "credit_id": "52fe44d89251416c75042fb5", "cast_id": 27, "profile_path": "/7b8cDfrmeheQbgryfCm7MeJOxxM.jpg", "order": 16}, {"name": "Alan Cumming", "character": "Fegan Floop", "id": 10697, "credit_id": "52fe44d89251416c75042fb9", "cast_id": 28, "profile_path": "/a72eJn3x1Coxk08H8edgNRMExes.jpg", "order": 17}, {"name": "Tony Shalhoub", "character": "Alexander Minion", "id": 4252, "credit_id": "52fe44d89251416c75042fbd", "cast_id": 29, "profile_path": "/jXzlVxS8u64XEZUoNPiuhGcQXDW.jpg", "order": 18}, {"name": "Steve Buscemi", "character": "Romero", "id": 884, "credit_id": "52fe44d89251416c75042fc1", "cast_id": 30, "profile_path": "/7sDzFRScCv85usSwPG01BTac7UY.jpg", "order": 19}, {"name": "Bill Paxton", "character": "Dinky Winks", "id": 2053, "credit_id": "52fe44d89251416c75042fc5", "cast_id": 31, "profile_path": "/53Ln1wTC0OCLzBF4HNlwhMXYgOU.jpg", "order": 20}, {"name": "George Clooney", "character": "Devlin", "id": 1461, "credit_id": "52fe44d89251416c75042fc9", "cast_id": 32, "profile_path": "/z4SBfpKDThuQY0FsvDbajcooBdA.jpg", "order": 21}, {"name": "Elijah Wood", "character": "The Guy", "id": 109, "credit_id": "52fe44d89251416c75042fcd", "cast_id": 33, "profile_path": "/c4fB3WAS7jN78rihw2kB81v6sez.jpg", "order": 22}], "directors": [{"name": "Robert Rodriguez", "department": "Directing", "job": "Director", "credit_id": "52fe44d89251416c75042f6b", "profile_path": "/wraXPKtHIAuCEeO5i0ACNBL9RcN.jpg", "id": 2294}], "vote_average": 4.8, "runtime": 84}, "270303": {"poster_path": "/4MrwJZr0R9LbyOgZqwLNmtzzxbu.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 13500000, "overview": "For 19-year-old Jay, fall should be about school, boys and weekends out at the lake. But after a seemingly innocent sexual encounter, she finds herself plagued by strange visions and the inescapable sense that someone, or something, is following her. Faced with this burden, Jay and her teenage friends must find a way to escape the horrors that seem to be only a few steps behind.", "video": false, "id": 270303, "genres": [{"id": 27, "name": "Horror"}], "title": "It Follows", "tagline": "", "vote_count": 63, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt3235888", "adult": false, "backdrop_path": "/seXjpUZxEYsRGgQQq5HvwPiu0Sv.jpg", "production_companies": [{"name": "Northern Lights Films", "id": 8714}, {"name": "Animal Kingdom", "id": 26995}], "release_date": "2015-03-27", "popularity": 2.2623259350034, "original_title": "It Follows", "budget": 2000000, "cast": [{"name": "Maika Monroe", "character": "Jay", "id": 1094091, "credit_id": "537770fd0e0a2614190021d7", "cast_id": 1, "profile_path": "/3MyvscK0RoxmwLSIWzxRA2UrC6v.jpg", "order": 1}, {"name": "Keir Gilchrist", "character": "Paul", "id": 132712, "credit_id": "537771140e0a2614250022bc", "cast_id": 2, "profile_path": "/3qD75fzIrNvTAgYQCVczZ0SBsxI.jpg", "order": 2}, {"name": "Olivia Luccardi", "character": "Yara", "id": 1210610, "credit_id": "5377712d0e0a26141c0023aa", "cast_id": 3, "profile_path": null, "order": 3}, {"name": "Lili Sepe", "character": "Kelly", "id": 1361099, "credit_id": "540a684dc3a368799c000886", "cast_id": 6, "profile_path": null, "order": 5}, {"name": "Bailey Spry", "character": "Annie", "id": 1361100, "credit_id": "540a685fc3a368799c00088c", "cast_id": 7, "profile_path": null, "order": 6}, {"name": "Daniel Zovatto", "character": "Greg", "id": 1172147, "credit_id": "540a6871c3a368799c000891", "cast_id": 8, "profile_path": "/hfohvPNLolPSLSsw4jPzHW7if2R.jpg", "order": 7}, {"name": "Jake Weary", "character": "Hugh", "id": 133980, "credit_id": "548507d3c3a36867d500070e", "cast_id": 9, "profile_path": "/jpVMl6LI5J7rVCrocHeUbBtBJBl.jpg", "order": 8}], "directors": [{"name": "David Robert Mitchell", "department": "Directing", "job": "Director", "credit_id": "537770b20e0a261431002299", "profile_path": null, "id": 558929}], "vote_average": 7.5, "runtime": 100}, "9552": {"poster_path": "/eYVZP9CibJg1fyZnZahfFIYqfPr.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 441306145, "overview": "12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter, and ultimately turns to her last hope: Father Damien Karras, a troubled priest who is struggling with his own faith.", "video": false, "id": 9552, "genres": [{"id": 18, "name": "Drama"}, {"id": 27, "name": "Horror"}, {"id": 53, "name": "Thriller"}], "title": "The Exorcist", "tagline": "Something almost beyond comprehension is happening to a girl on this street, in this house... and a man has been sent for as a last resort. This man is The Exorcist.", "vote_count": 514, "homepage": "http://theexorcist.warnerbros.com/", "belongs_to_collection": {"backdrop_path": "/gZnEheMdhKxSZQUEzphCHXldud1.jpg", "poster_path": "/wjMqwHkOuDBSOY5MujL5GSdlBTk.jpg", "id": 12263, "name": "The Exorcist Collection"}, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "de", "name": "Deutsch"}, {"iso_639_1": "fr", "name": "Fran\u00e7ais"}, {"iso_639_1": "la", "name": "Latin"}, {"iso_639_1": "ar", "name": "\u0627\u0644\u0639\u0631\u0628\u064a\u0629"}, {"iso_639_1": "el", "name": "\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"}, {"iso_639_1": "en", "name": "English"}], "imdb_id": "tt0070047", "adult": false, "backdrop_path": "/unBJ0rZsL2kzs11FliadlDyv6ji.jpg", "production_companies": [{"name": "Hoya Productions", "id": 48184}, {"name": "Warner Bros.", "id": 6194}], "release_date": "1973-12-26", "popularity": 1.47301946057541, "original_title": "The Exorcist", "budget": 8000000, "cast": [{"name": "Linda Blair", "character": "Regan", "id": 37366, "credit_id": "52fe4508c3a36847f80b8691", "cast_id": 14, "profile_path": "/tIoU3CSpjnLi79UfBgNjXNQM1GN.jpg", "order": 0}, {"name": "Max von Sydow", "character": "Father Merrin", "id": 2201, "credit_id": "52fe4508c3a36847f80b864f", "cast_id": 2, "profile_path": "/kCdNYfUlswqjDYhnE54kMoDHWTp.jpg", "order": 1}, {"name": "Ellen Burstyn", "character": "Chris MacNeil", "id": 9560, "credit_id": "52fe4508c3a36847f80b864b", "cast_id": 1, "profile_path": "/kxWFljG3JjJMbOMCLm0SkrPQjhf.jpg", "order": 2}, {"name": "Jason Miller", "character": "Father Karras", "id": 21736, "credit_id": "52fe4508c3a36847f80b869d", "cast_id": 17, "profile_path": "/wwExdVTadL0jd8kqEicjK8k6yu8.jpg", "order": 3}, {"name": "Lee J. Cobb", "character": "Lt. Kinderman", "id": 5248, "credit_id": "52fe4508c3a36847f80b8653", "cast_id": 3, "profile_path": "/535dOk8eUI97esLMunIXdG58jUu.jpg", "order": 4}, {"name": "Kitty Winn", "character": "Sharon", "id": 57921, "credit_id": "52fe4508c3a36847f80b8657", "cast_id": 4, "profile_path": "/4rDAmxWgAdiFA7qd9LJT0ehIbjI.jpg", "order": 5}, {"name": "William O'Malley", "character": "Father Dyer", "id": 65433, "credit_id": "52fe4508c3a36847f80b8695", "cast_id": 15, "profile_path": null, "order": 6}, {"name": "Jack MacGowran", "character": "Burke Dennings", "id": 14016, "credit_id": "52fe4508c3a36847f80b8699", "cast_id": 16, "profile_path": "/kzh0Gmhp0MG57kfXsqkTPH8LyTr.jpg", "order": 7}, {"name": "Barton Heyman", "character": "Dr. Klein", "id": 79732, "credit_id": "52fe4508c3a36847f80b86a1", "cast_id": 18, "profile_path": null, "order": 8}, {"name": "Peter Masterson", "character": "Dr. Barringer - Clinic Director (as Pete Masterson)", "id": 71732, "credit_id": "52fe4508c3a36847f80b86a5", "cast_id": 19, "profile_path": null, "order": 9}, {"name": "Rudolf Sch\u00fcndler", "character": "Karl", "id": 26600, "credit_id": "52fe4508c3a36847f80b86a9", "cast_id": 20, "profile_path": "/8R3yeMw89PbstuKw10U2f47sVqi.jpg", "order": 10}, {"name": "Robert Symonds", "character": "Dr. Taney", "id": 119716, "credit_id": "52fe4508c3a36847f80b86ad", "cast_id": 22, "profile_path": null, "order": 11}, {"name": "Titos Vandis", "character": "Karras' Uncle", "id": 140177, "credit_id": "52fe4508c3a36847f80b86b1", "cast_id": 26, "profile_path": null, "order": 12}, {"name": "Donna Mitchell", "character": "Mary Jo Perrin", "id": 56694, "credit_id": "52fe4508c3a36847f80b86b5", "cast_id": 29, "profile_path": null, "order": 13}, {"name": "Robert Gerringer", "character": "Senator at Party", "id": 129664, "credit_id": "52fe4508c3a36847f80b86b9", "cast_id": 31, "profile_path": null, "order": 14}, {"name": "Mercedes McCambridge", "character": "Demon (voice)", "id": 18737, "credit_id": "52fe4508c3a36847f80b86bd", "cast_id": 32, "profile_path": "/aZXQHJKuCirvwqJprMwBqGqfTRz.jpg", "order": 15}, {"name": "Eileen Dietz", "character": "Captain Howdy / Regan Double", "id": 108700, "credit_id": "53fe8aed0e0a262de2002f64", "cast_id": 37, "profile_path": "/jg2P2xUJfgMElcMCufbdVBvpwnv.jpg", "order": 16}], "directors": [{"name": "William Friedkin", "department": "Directing", "job": "Director", "credit_id": "52fe4508c3a36847f80b865d", "profile_path": "/egUtSz4yBSvTTv7GJMk4MykWswt.jpg", "id": 15175}], "vote_average": 6.9, "runtime": 122}, "147441": {"poster_path": "/f7SEuLjl2Ur2AX4YO5lxIP2IEVv.jpg", "production_countries": [{"iso_3166_1": "ES", "name": "Spain"}, {"iso_3166_1": "GB", "name": "United Kingdom"}, {"iso_3166_1": "US", "name": "United States of America"}], "revenue": 75888368, "overview": "The defiant leader Moses rises up against the Egyptian Pharaoh Ramses, setting 600,000 slaves on a monumental journey of escape from Egypt and its terrifying cycle of deadly plagues.", "video": false, "id": 147441, "genres": [{"id": 28, "name": "Action"}, {"id": 12, "name": "Adventure"}, {"id": 18, "name": "Drama"}], "title": "Exodus: Gods and Kings", "tagline": "Once brothers, now enemies.", "vote_count": 469, "homepage": "http://www.exodusgodsandkings.com/", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1528100", "adult": false, "backdrop_path": "/hOOgtrByGgWfqGTTn5VL7jkLYXJ.jpg", "production_companies": [{"name": "Scott Free Productions", "id": 1645}, {"name": "Chernin Entertainment", "id": 7076}, {"name": "Babieka", "id": 20656}], "release_date": "2014-12-12", "popularity": 11.8617918248396, "original_title": "Exodus: Gods and Kings", "budget": 140000000, "cast": [{"name": "Christian Bale", "character": "Moses", "id": 3894, "credit_id": "52fe4ba69251416c75109a73", "cast_id": 1, "profile_path": "/pPXnqoGD91znz4FwQ6aKuxi6Pcy.jpg", "order": 0}, {"name": "Joel Edgerton", "character": "Rhamses", "id": 33192, "credit_id": "52fe4ba69251416c75109a77", "cast_id": 2, "profile_path": "/lkOkaMKSRRGLMgkLaCzR9sYgTgx.jpg", "order": 1}, {"name": "John Turturro", "character": "Seti", "id": 1241, "credit_id": "52fe4ba69251416c75109a89", "cast_id": 6, "profile_path": "/yyvj3z2IC9AG1sv6kuk5d7oQFJs.jpg", "order": 2}, {"name": "Aaron Paul", "character": "Joshua", "id": 84497, "credit_id": "52fe4ba69251416c75109a85", "cast_id": 5, "profile_path": "/pAa8H7DjgXENBhyvJy0hVLKvVT6.jpg", "order": 3}, {"name": "Ben Mendelsohn", "character": "Viceroy Hegep", "id": 77335, "credit_id": "5319c01592514177b100269d", "cast_id": 28, "profile_path": "/aeg6k7NlRsDIcNKXA62uGDRSZyX.jpg", "order": 4}, {"name": "Mar\u00eda Valverde", "character": "S\u00e9fora", "id": 77122, "credit_id": "52fe4ba69251416c75109a91", "cast_id": 8, "profile_path": "/43htKmIzJGfRUJ95a0d7ZVLQFnR.jpg", "order": 5}, {"name": "Sigourney Weaver", "character": "Tuya", "id": 10205, "credit_id": "52fe4ba69251416c75109a7b", "cast_id": 3, "profile_path": "/pYtEkU8VOP0pS2gC1iD2Vuesgyj.jpg", "order": 6}, {"name": "Ben Kingsley", "character": "Nun", "id": 2282, "credit_id": "5319c02c92514177ab00267d", "cast_id": 29, "profile_path": "/2Eu3j31JDJek70ZXLY6xfeUaJoR.jpg", "order": 7}, {"name": "Hiam Abbass", "character": "Bithia", "id": 765, "credit_id": "54b945c3c3a3686c6b005536", "cast_id": 30, "profile_path": "/sAOmSXEudaIoBuM8eilfIBMQuXg.jpg", "order": 8}, {"name": "Isaac Andrews", "character": "Malak", "id": 1264233, "credit_id": "54b945e6c3a36814450019cb", "cast_id": 31, "profile_path": "/5R8RheJGkn7lY6qgiHvQ5YhRLpY.jpg", "order": 9}, {"name": "Ewen Bremner", "character": "Expert", "id": 1125, "credit_id": "54b94627c3a3686c6b005545", "cast_id": 32, "profile_path": "/7CQBnBHSNDcbY2LucqWqEpKWsCH.jpg", "order": 10}, {"name": "Indira Varma", "character": "Miriam", "id": 30430, "credit_id": "52fe4ba69251416c75109a8d", "cast_id": 7, "profile_path": "/o3f68XjdnWdbbOMDHHxOHnxqs5P.jpg", "order": 11}, {"name": "Golshifteh Farahani", "character": "Nefertari", "id": 229932, "credit_id": "52fe4ba69251416c75109a99", "cast_id": 10, "profile_path": "/jEVJQviEvXkaPZMum7wFFtBxzFC.jpg", "order": 12}, {"name": "Ghassan Massoud", "character": "Ramses' Grand Vizier", "id": 70577, "credit_id": "54b9463ec3a3686c6f00457c", "cast_id": 33, "profile_path": "/zJxirBFZ1Yn31qxAHCK6I34p8FQ.jpg", "order": 13}, {"name": "Tara Fitzgerald", "character": "Miriam", "id": 47615, "credit_id": "54b94655c3a368145e001d2b", "cast_id": 34, "profile_path": "/8ofvBAnrK9R6IkKz2cQAuS6L0Sm.jpg", "order": 14}, {"name": "Dar Salim", "character": "Commander Khyan", "id": 234907, "credit_id": "5506e929c3a368262e00471c", "cast_id": 35, "profile_path": "/3CrPTwZJ0hsWzX7oi7sKFfzDo82.jpg", "order": 15}, {"name": "Andrew Tarbet", "character": "Aaron", "id": 104040, "credit_id": "5506eaccc3a36805810035fb", "cast_id": 36, "profile_path": "/dAWnjk5mNFcMZvTU524oMawhKyU.jpg", "order": 16}, {"name": "Ken Bones", "character": "Ramses' Scribe", "id": 91662, "credit_id": "5506ecb5c3a3686b75002078", "cast_id": 37, "profile_path": "/3T5Dibtk4LzPWfdDXTXzW81Xgut.jpg", "order": 17}, {"name": "Philip Arditti", "character": "Viceroy Hegep's Aide", "id": 1235294, "credit_id": "5506ee0492514179fb00205c", "cast_id": 38, "profile_path": "/j7kpt6uVToEDRF8Cz7CXSBq7u0o.jpg", "order": 18}, {"name": "Hal Hewetson", "character": "Gershom", "id": 1440869, "credit_id": "5506eeefc3a368262e00478b", "cast_id": 39, "profile_path": "/yTplEjSzSWZUs54xndFPnTIo3xU.jpg", "order": 19}, {"name": "Christopher Sciueref", "character": "Stonework Guard", "id": 1440871, "credit_id": "5506f00292514174b00049f7", "cast_id": 40, "profile_path": "/vR2vDOdqVSHwpI7Vpq6ZDyYsVdk.jpg", "order": 20}, {"name": "Emun Elliott", "character": "Abiram", "id": 228968, "credit_id": "52fe4ba69251416c75109a95", "cast_id": 9, "profile_path": "/fLZV8d7F1XTbpunBUBbzzEXg136.jpg", "order": 21}], "directors": [{"name": "Ridley Scott", "department": "Directing", "job": "Director", "credit_id": "52fe4ba69251416c75109a81", "profile_path": "/bG5Oa1H6Fevil5QzzpzYF21NIQq.jpg", "id": 578}], "vote_average": 5.7, "runtime": 153}, "73723": {"poster_path": "/6FuYtjegxaUv7n7C733hUEOQytR.jpg", "production_countries": [{"iso_3166_1": "US", "name": "United States of America"}], "revenue": 348840316, "overview": "A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax, the grumpy yet charming creature who fights to protect his world.", "video": false, "id": 73723, "genres": [{"id": 16, "name": "Animation"}, {"id": 10751, "name": "Family"}], "title": "The Lorax", "tagline": "Meet The Original Force Of Nature", "vote_count": 466, "homepage": "", "belongs_to_collection": null, "original_language": "en", "status": "Released", "spoken_languages": [{"iso_639_1": "en", "name": "English"}], "imdb_id": "tt1482459", "adult": false, "backdrop_path": "/7CuXAFUWcOlR5kt07ln1fZDxdHX.jpg", "production_companies": [{"name": "Universal Pictures", "id": 33}, {"name": "Illumination Entertainment", "id": 6704}], "release_date": "2012-03-01", "popularity": 1.22605164588029, "original_title": "The Lorax", "budget": 70000000, "cast": [{"name": "Zac Efron", "character": "Ted (voice)", "id": 29222, "credit_id": "52fe48a9c3a368484e1045eb", "cast_id": 8, "profile_path": "/l0nzNkwTTT4a7QDC3HzYQSYsyXY.jpg", "order": 0}, {"name": "Danny DeVito", "character": "The Lorax (voice)", "id": 518, "credit_id": "52fe48a9c3a368484e1045ef", "cast_id": 9, "profile_path": "/zKuyzmKzPLG7RJo7lbbHjx6CCZc.jpg", "order": 1}, {"name": "Taylor Swift", "character": "Audrey (voice)", "id": 212208, "credit_id": "52fe48a9c3a368484e1045f3", "cast_id": 10, "profile_path": "/2DQkuKRb6SQCcnnr66w7nL2jl2I.jpg", "order": 2}, {"name": "Ed Helms", "character": "Once-ler (voice)", "id": 27105, "credit_id": "52fe48a9c3a368484e1045f7", "cast_id": 11, "profile_path": "/cxE76QqiI6LQh3kRAAEDtH39DQd.jpg", "order": 3}, {"name": "Willow Smith", "character": "Marta (voice)", "id": 49920, "credit_id": "52fe48a9c3a368484e1045fb", "cast_id": 12, "profile_path": "/1wd5w9wYSwMBOvMSzGYrf2Ilk9H.jpg", "order": 4}, {"name": "Rob Riggle", "character": "O'Hare", "id": 71403, "credit_id": "52fe48a9c3a368484e1045ff", "cast_id": 14, "profile_path": "/tWh7aVLl82jxX6U0f7tRTN7Sw3S.jpg", "order": 5}, {"name": "Betty White", "character": "Grammy Norma (voice)", "id": 71727, "credit_id": "52fe48a9c3a368484e104603", "cast_id": 15, "profile_path": "/4cPsS3xppS2EKPwf6j4VJMzIBZ8.jpg", "order": 6}, {"name": "Jenny Slate", "character": "Ted's Mom (voice)", "id": 213001, "credit_id": "52fe48a9c3a368484e104607", "cast_id": 16, "profile_path": "/bKyUz4N566bXBEhj1TkFfMiNFyT.jpg", "order": 7}, {"name": "Nasim Pedrad", "character": "Once-ler's Mom (voice)", "id": 476163, "credit_id": "52fe48a9c3a368484e10460b", "cast_id": 17, "profile_path": "/kA12uJDhiLW6xhTYJEwhMFjJBjb.jpg", "order": 8}, {"name": "Joel Swetow", "character": "1st Marketing Guy (voice)", "id": 156136, "credit_id": "52fe48a9c3a368484e10460f", "cast_id": 18, "profile_path": "/grAzwmiFh08MRfzutbsiQZfoCFZ.jpg", "order": 9}, {"name": "Michael Beattie", "character": "2nd Marketing Guy (voice)", "id": 73476, "credit_id": "52fe48a9c3a368484e104613", "cast_id": 19, "profile_path": "/cdW4ZWXmAaykyv6NF1sg7eHXrJe.jpg", "order": 10}, {"name": "Dave B. Mitchell", "character": "1st Commercial Guy (voice)", "id": 1082094, "credit_id": "52fe48a9c3a368484e104617", "cast_id": 20, "profile_path": null, "order": 11}, {"name": "Dempsey Pappion", "character": "2nd Commercial Guy (voice)", "id": 167756, "credit_id": "52fe48a9c3a368484e10461b", "cast_id": 21, "profile_path": null, "order": 12}, {"name": "Elmarie Wendel", "character": "Aunt Grizelda (voice)", "id": 159729, "credit_id": "52fe48a9c3a368484e10461f", "cast_id": 22, "profile_path": "/uooGeF8hIRzBAVhcSJrWyXr4qGd.jpg", "order": 13}, {"name": "Danny Cooksey", "character": "Brett / Chet (voice)", "id": 3980, "credit_id": "52fe48a9c3a368484e104623", "cast_id": 23, "profile_path": "/4jrP2XHLUOx4l2RWunuhp3mfBCW.jpg", "order": 14}, {"name": "Stephen Tobolowsky", "character": "Uncle Ubb (voice)", "id": 537, "credit_id": "52fe48a9c3a368484e104627", "cast_id": 24, "profile_path": "/nznn5jQkPtY8JHZPo1Zme7Bn3Ez.jpg", "order": 15}, {"name": "Chris Renaud", "character": "Forest Animals (voice)", "id": 124748, "credit_id": "52fe48a9c3a368484e10462b", "cast_id": 25, "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "order": 16}], "directors": [{"name": "Chris Renaud", "department": "Directing", "job": "Director", "credit_id": "52fe48a9c3a368484e1045c3", "profile_path": "/yK3RxNsIEBljUe9jPG0iz53Iz6t.jpg", "id": 124748}, {"name": "Kyle Balda", "department": "Directing", "job": "Director", "credit_id": "52fe48a9c3a368484e1045c9", "profile_path": null, "id": 8023}], "vote_average": 6.3, "runtime": 86}} diff --git "a/part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/README.md" "b/part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/README.md" similarity index 100% rename from "part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/README.md" rename to "part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/README.md" diff --git "a/part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/logstash-stackoverflow-survey.conf" "b/part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/logstash-stackoverflow-survey.conf" similarity index 100% rename from "part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/logstash-stackoverflow-survey.conf" rename to "part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/logstash-stackoverflow-survey.conf" diff --git "a/part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/mapping.json" "b/part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/mapping.json" similarity index 100% rename from "part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/mapping.json" rename to "part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/mapping.json" diff --git "a/part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/pipeline.json" "b/part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/pipeline.json" similarity index 100% rename from "part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/pipeline.json" rename to "part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/pipeline.json" diff --git "a/part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/reindex.json" "b/part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/reindex.json" similarity index 100% rename from "part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/reindex.json" rename to "part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/reindex.json" diff --git "a/part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/survey-mapping.json" "b/part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/survey-mapping.json" similarity index 100% rename from "part-5/\345\256\236\346\210\2302-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/survey-mapping.json" rename to "part-5/part-2-stackoverflow\347\224\250\346\210\267\350\260\203\346\237\245\351\227\256\345\215\267\345\210\206\346\236\220/survey-mapping.json" diff --git "a/part-5/\345\272\224\347\224\250\345\256\236\346\210\230\345\267\245\344\275\234\345\235\212.pdf" "b/part-5/\345\272\224\347\224\250\345\256\236\346\210\230\345\267\245\344\275\234\345\235\212.pdf" new file mode 100644 index 0000000..b32f363 Binary files /dev/null and "b/part-5/\345\272\224\347\224\250\345\256\236\346\210\230\345\267\245\344\275\234\345\235\212.pdf" differ